diff --git a/.gitignore b/.gitignore index 308fcab..870024d 100644 --- a/.gitignore +++ b/.gitignore @@ -38,3 +38,8 @@ dist/ *.tar.gz *.tgz *.zip + +# Build artifacts +parser.exp +parser.lib +bindings/* \ No newline at end of file diff --git a/grammar.js b/grammar.js index 69b085f..f98cc8f 100644 --- a/grammar.js +++ b/grammar.js @@ -265,7 +265,7 @@ module.exports = grammar({ class_declaration: $ => seq( $._class_declaration_initializer, - $._optional_semi, + $._declaration_list_body, ), _class_declaration_initializer: $ => seq( @@ -275,13 +275,11 @@ module.exports = grammar({ field('name', $.identifier), repeat(choice($.type_parameter_list, $.parameter_list, $.base_list)), repeat($.type_parameter_constraints_clause), - field('body', $.declaration_list), ), struct_declaration: $ => seq( $._struct_declaration_initializer, - field('body', $.declaration_list), - $._optional_semi, + $._declaration_list_body, ), _struct_declaration_initializer: $ => seq( @@ -295,13 +293,19 @@ module.exports = grammar({ ), enum_declaration: $ => seq( + $._enum_declaration_initializer, + choice( + seq(field('body', $.enum_member_declaration_list), $._optional_semi), + ';', + ), + ), + + _enum_declaration_initializer: $ => seq( repeat($._attribute_list), repeat($.modifier), 'enum', field('name', $.identifier), optional($.base_list), - field('body', $.enum_member_declaration_list), - $._optional_semi, ), enum_member_declaration_list: $ => seq( @@ -322,8 +326,7 @@ module.exports = grammar({ interface_declaration: $ => seq( $._interface_declaration_initializer, - field('body', $.declaration_list), - $._optional_semi, + $._declaration_list_body, ), _interface_declaration_initializer: $ => seq( @@ -354,8 +357,7 @@ module.exports = grammar({ record_declaration: $ => seq( $._record_declaration_initializer, - choice(field('body', $.declaration_list), ';'), - $._optional_semi, + $._declaration_list_body, ), _record_declaration_initializer: $ => seq( @@ -374,6 +376,11 @@ module.exports = grammar({ seq(':', $.primary_constructor_base_type, optional(seq(',', commaSep1($._name)))), ), + _declaration_list_body: $ => choice( + seq(field('body', $.declaration_list), $._optional_semi), + ';', + ), + primary_constructor_base_type: $ => seq( field('type', $._name), $.argument_list, diff --git a/package.json b/package.json index 2c5f22b..b0b1e87 100644 --- a/package.json +++ b/package.json @@ -39,8 +39,8 @@ "devDependencies": { "eslint": "^9.14.0", "eslint-config-treesitter": "^1.0.2", - "tree-sitter-cli": "^0.24.4", - "prebuildify": "^6.0.1" + "prebuildify": "^6.0.1", + "tree-sitter-cli": "^0.24.4" }, "peerDependencies": { "tree-sitter": "^0.21.1" @@ -55,6 +55,13 @@ "lint": "eslint grammar.js", "prestart": "tree-sitter build --wasm", "start": "tree-sitter playground", - "test": "node --test bindings/node/*_test.js" - } + "test": "node --test bindings/node/*_test.js", + "prebuildify": "prebuildify --napi --strip" + }, + "tree-sitter": [ + { + "scope": "source.c_sharp", + "injection-regex": "^c_sharp$" + } + ] } diff --git a/src/grammar.json b/src/grammar.json index fc88e6f..4cedfae 100644 --- a/src/grammar.json +++ b/src/grammar.json @@ -602,7 +602,7 @@ }, { "type": "SYMBOL", - "name": "_optional_semi" + "name": "_declaration_list_body" } ] }, @@ -661,14 +661,6 @@ "type": "SYMBOL", "name": "type_parameter_constraints_clause" } - }, - { - "type": "FIELD", - "name": "body", - "content": { - "type": "SYMBOL", - "name": "declaration_list" - } } ] }, @@ -679,17 +671,9 @@ "type": "SYMBOL", "name": "_struct_declaration_initializer" }, - { - "type": "FIELD", - "name": "body", - "content": { - "type": "SYMBOL", - "name": "declaration_list" - } - }, { "type": "SYMBOL", - "name": "_optional_semi" + "name": "_declaration_list_body" } ] }, @@ -764,6 +748,41 @@ ] }, "enum_declaration": { + "type": "SEQ", + "members": [ + { + "type": "SYMBOL", + "name": "_enum_declaration_initializer" + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "body", + "content": { + "type": "SYMBOL", + "name": "enum_member_declaration_list" + } + }, + { + "type": "SYMBOL", + "name": "_optional_semi" + } + ] + }, + { + "type": "STRING", + "value": ";" + } + ] + } + ] + }, + "_enum_declaration_initializer": { "type": "SEQ", "members": [ { @@ -803,18 +822,6 @@ "type": "BLANK" } ] - }, - { - "type": "FIELD", - "name": "body", - "content": { - "type": "SYMBOL", - "name": "enum_member_declaration_list" - } - }, - { - "type": "SYMBOL", - "name": "_optional_semi" } ] }, @@ -956,17 +963,9 @@ "type": "SYMBOL", "name": "_interface_declaration_initializer" }, - { - "type": "FIELD", - "name": "body", - "content": { - "type": "SYMBOL", - "name": "declaration_list" - } - }, { "type": "SYMBOL", - "name": "_optional_semi" + "name": "_declaration_list_body" } ] }, @@ -1126,26 +1125,9 @@ "type": "SYMBOL", "name": "_record_declaration_initializer" }, - { - "type": "CHOICE", - "members": [ - { - "type": "FIELD", - "name": "body", - "content": { - "type": "SYMBOL", - "name": "declaration_list" - } - }, - { - "type": "STRING", - "value": ";" - } - ] - }, { "type": "SYMBOL", - "name": "_optional_semi" + "name": "_declaration_list_body" } ] }, @@ -1335,6 +1317,32 @@ } ] }, + "_declaration_list_body": { + "type": "CHOICE", + "members": [ + { + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "body", + "content": { + "type": "SYMBOL", + "name": "declaration_list" + } + }, + { + "type": "SYMBOL", + "name": "_optional_semi" + } + ] + }, + { + "type": "STRING", + "value": ";" + } + ] + }, "primary_constructor_base_type": { "type": "SEQ", "members": [ diff --git a/src/node-types.json b/src/node-types.json index f3f2b57..cf5e942 100644 --- a/src/node-types.json +++ b/src/node-types.json @@ -1627,7 +1627,7 @@ "fields": { "body": { "multiple": false, - "required": true, + "required": false, "types": [ { "type": "declaration_list", @@ -2312,7 +2312,7 @@ "fields": { "body": { "multiple": false, - "required": true, + "required": false, "types": [ { "type": "enum_member_declaration_list", @@ -3171,7 +3171,7 @@ "fields": { "body": { "multiple": false, - "required": true, + "required": false, "types": [ { "type": "declaration_list", @@ -5481,7 +5481,7 @@ "fields": { "body": { "multiple": false, - "required": true, + "required": false, "types": [ { "type": "declaration_list", diff --git a/src/parser.c b/src/parser.c index bdf751b..fe10389 100644 --- a/src/parser.c +++ b/src/parser.c @@ -13,15 +13,15 @@ #endif #define LANGUAGE_VERSION 14 -#define STATE_COUNT 7793 -#define LARGE_STATE_COUNT 3900 -#define SYMBOL_COUNT 521 +#define STATE_COUNT 7734 +#define LARGE_STATE_COUNT 3889 +#define SYMBOL_COUNT 523 #define ALIAS_COUNT 3 #define TOKEN_COUNT 217 #define EXTERNAL_TOKEN_COUNT 12 #define FIELD_COUNT 26 #define MAX_ALIAS_SEQUENCE_LENGTH 15 -#define PRODUCTION_ID_COUNT 206 +#define PRODUCTION_ID_COUNT 198 enum ts_symbol_identifiers { sym__identifier_token = 1, @@ -260,293 +260,295 @@ enum ts_symbol_identifiers { sym_struct_declaration = 234, sym__struct_declaration_initializer = 235, sym_enum_declaration = 236, - sym_enum_member_declaration_list = 237, - sym_enum_member_declaration = 238, - sym_interface_declaration = 239, - sym__interface_declaration_initializer = 240, - sym_delegate_declaration = 241, - sym__delegate_declaration_initializer = 242, - sym_record_declaration = 243, - sym__record_declaration_initializer = 244, - sym_record_base = 245, - sym_primary_constructor_base_type = 246, - sym_modifier = 247, - sym_type_parameter_list = 248, - sym_type_parameter = 249, - sym_base_list = 250, - sym_type_parameter_constraints_clause = 251, - sym_type_parameter_constraint = 252, - sym_constructor_constraint = 253, - sym_operator_declaration = 254, - sym_conversion_operator_declaration = 255, - sym_declaration_list = 256, - sym_declaration = 257, - sym_field_declaration = 258, - sym_constructor_declaration = 259, - sym__constructor_declaration_initializer = 260, - sym_destructor_declaration = 261, - sym_method_declaration = 262, - sym_event_declaration = 263, - sym_event_field_declaration = 264, - sym_accessor_list = 265, - sym_accessor_declaration = 266, - sym_indexer_declaration = 267, - sym_bracketed_parameter_list = 268, - sym_property_declaration = 269, - sym_explicit_interface_specifier = 270, - sym_parameter_list = 271, - sym_parameter = 272, - sym__parameter_array = 273, - sym_constructor_initializer = 274, - sym_argument_list = 275, - sym_tuple_pattern = 276, - sym_argument = 277, - sym_block = 278, - sym_arrow_expression_clause = 279, - sym__function_body = 280, - sym_variable_declaration = 281, - sym_using_variable_declaration = 282, - sym_variable_declarator = 283, - sym_using_variable_declarator = 284, - sym_bracketed_argument_list = 285, - sym__name = 286, - sym_alias_qualified_name = 287, - sym__simple_name = 288, - sym_qualified_name = 289, - sym_generic_name = 290, - sym_type_argument_list = 291, - sym_type = 292, - sym_implicit_type = 293, - sym_array_type = 294, - sym__array_base_type = 295, - sym_array_rank_specifier = 296, - sym_nullable_type = 297, - sym_pointer_type = 298, - sym__pointer_base_type = 299, - sym_function_pointer_type = 300, - sym_calling_convention = 301, - sym_function_pointer_parameter = 302, - sym_ref_type = 303, - sym__ref_base_type = 304, - sym_scoped_type = 305, - sym__scoped_base_type = 306, - sym_tuple_type = 307, - sym_tuple_element = 308, - sym_statement = 309, - sym_break_statement = 310, - sym_checked_statement = 311, - sym_continue_statement = 312, - sym_do_statement = 313, - sym_empty_statement = 314, - sym_expression_statement = 315, - sym_fixed_statement = 316, - sym_for_statement = 317, - sym__for_statement_conditions = 318, - sym_return_statement = 319, - sym_lock_statement = 320, - sym_yield_statement = 321, - sym_switch_statement = 322, - sym_switch_body = 323, - sym_switch_section = 324, - sym_throw_statement = 325, - sym_try_statement = 326, - sym_catch_clause = 327, - sym_catch_declaration = 328, - sym_catch_filter_clause = 329, - sym_finally_clause = 330, - sym_unsafe_statement = 331, - sym_using_statement = 332, - sym_foreach_statement = 333, - sym__foreach_statement_initializer = 334, - sym_goto_statement = 335, - sym_labeled_statement = 336, - sym_if_statement = 337, - sym_while_statement = 338, - sym_local_declaration_statement = 339, - sym_local_function_statement = 340, - sym__local_function_declaration = 341, - sym_pattern = 342, - sym_constant_pattern = 343, - sym_parenthesized_pattern = 344, - sym_var_pattern = 345, - sym_type_pattern = 346, - sym_list_pattern = 347, - sym_recursive_pattern = 348, - sym_positional_pattern_clause = 349, - sym_property_pattern_clause = 350, - sym_subpattern = 351, - sym_relational_pattern = 352, - sym_negated_pattern = 353, - sym_and_pattern = 354, - sym_or_pattern = 355, - sym_declaration_pattern = 356, - sym__variable_designation = 357, - sym_parenthesized_variable_designation = 358, - sym_expression = 359, - sym_non_lvalue_expression = 360, - sym_lvalue_expression = 361, - sym__expression_statement_expression = 362, - sym_assignment_expression = 363, - sym_binary_expression = 364, - sym_postfix_unary_expression = 365, - sym_prefix_unary_expression = 366, - sym__pointer_indirection_expression = 367, - sym_query_expression = 368, - sym_from_clause = 369, - sym__query_body = 370, - sym__query_clause = 371, - sym_join_clause = 372, - sym__join_header = 373, - sym__join_body = 374, - sym_join_into_clause = 375, - sym_let_clause = 376, - sym_order_by_clause = 377, - sym__ordering = 378, - sym_where_clause = 379, - sym__select_or_group_clause = 380, - sym_group_clause = 381, - sym_select_clause = 382, - sym_conditional_expression = 383, - sym_conditional_access_expression = 384, - sym_as_expression = 385, - sym_is_expression = 386, - sym_is_pattern_expression = 387, - sym_cast_expression = 388, - sym_checked_expression = 389, - sym_invocation_expression = 390, - sym_switch_expression = 391, - sym__switch_expression_body = 392, - sym_switch_expression_arm = 393, - sym_when_clause = 394, - sym_await_expression = 395, - sym_throw_expression = 396, - sym_element_access_expression = 397, - sym_interpolated_string_expression = 398, - sym__interpolated_string_content = 399, - sym__interpolated_verbatim_string_content = 400, - sym__interpolated_raw_string_content = 401, - sym_interpolation = 402, - sym_interpolation_alignment_clause = 403, - sym_interpolation_format_clause = 404, - sym_member_access_expression = 405, - sym_member_binding_expression = 406, - sym_object_creation_expression = 407, - sym_parenthesized_expression = 408, - sym__parenthesized_lvalue_expression = 409, - sym_lambda_expression = 410, - sym__lambda_expression_init = 411, - sym__lambda_parameters = 412, - sym_array_creation_expression = 413, - sym_anonymous_method_expression = 414, - sym_anonymous_object_creation_expression = 415, - sym__anonymous_object_member_declarator = 416, - sym_implicit_array_creation_expression = 417, - sym_implicit_object_creation_expression = 418, - sym_implicit_stackalloc_expression = 419, - sym_initializer_expression = 420, - sym_declaration_expression = 421, - sym_default_expression = 422, - sym_with_expression = 423, - sym__with_body = 424, - sym_with_initializer = 425, - sym_sizeof_expression = 426, - sym_typeof_expression = 427, - sym_makeref_expression = 428, - sym_ref_expression = 429, - sym_reftype_expression = 430, - sym_refvalue_expression = 431, - sym_stackalloc_expression = 432, - sym_range_expression = 433, - sym_tuple_expression = 434, - sym_literal = 435, - sym_character_literal = 436, - sym_string_literal = 437, - sym_string_literal_content = 438, - sym_raw_string_literal = 439, - sym_boolean_literal = 440, - sym_identifier = 441, - sym__reserved_identifier = 442, - sym_preproc_if = 443, - sym_preproc_else = 444, - sym_preproc_elif = 445, - sym_preproc_if_in_top_level = 446, - sym_preproc_else_in_top_level = 447, - sym_preproc_elif_in_top_level = 448, - sym_preproc_if_in_expression = 449, - sym_preproc_else_in_expression = 450, - sym_preproc_elif_in_expression = 451, - sym_preproc_if_in_enum_member_declaration = 452, - sym_preproc_else_in_enum_member_declaration = 453, - sym_preproc_elif_in_enum_member_declaration = 454, - sym_preproc_if_in_attribute_list = 455, - sym_preproc_else_in_attribute_list = 456, - sym_preproc_elif_in_attribute_list = 457, - sym__preproc_expression = 458, - sym_preproc_parenthesized_expression = 459, - sym_preproc_unary_expression = 460, - sym_preproc_binary_expression = 461, - sym_preproc_region = 462, - sym_preproc_endregion = 463, - sym_preproc_line = 464, - sym_preproc_pragma = 465, - sym_preproc_nullable = 466, - sym_preproc_error = 467, - sym_preproc_warning = 468, - sym_preproc_define = 469, - sym_preproc_undef = 470, - aux_sym_compilation_unit_repeat1 = 471, - aux_sym_using_directive_repeat1 = 472, - aux_sym_global_attribute_repeat1 = 473, - aux_sym_attribute_argument_list_repeat1 = 474, - aux_sym__class_declaration_initializer_repeat1 = 475, - aux_sym__class_declaration_initializer_repeat2 = 476, - aux_sym__class_declaration_initializer_repeat3 = 477, - aux_sym__class_declaration_initializer_repeat4 = 478, - aux_sym_enum_member_declaration_list_repeat1 = 479, - aux_sym__record_declaration_initializer_repeat1 = 480, - aux_sym_record_base_repeat1 = 481, - aux_sym_type_parameter_list_repeat1 = 482, - aux_sym_base_list_repeat1 = 483, - aux_sym_type_parameter_constraints_clause_repeat1 = 484, - aux_sym_conversion_operator_declaration_repeat1 = 485, - aux_sym_declaration_list_repeat1 = 486, - aux_sym_accessor_list_repeat1 = 487, - aux_sym_bracketed_parameter_list_repeat1 = 488, - aux_sym__parameter_type_with_modifiers_repeat1 = 489, - aux_sym_argument_list_repeat1 = 490, - aux_sym_tuple_pattern_repeat1 = 491, - aux_sym_block_repeat1 = 492, - aux_sym_variable_declaration_repeat1 = 493, - aux_sym_using_variable_declaration_repeat1 = 494, - aux_sym_type_argument_list_repeat1 = 495, - aux_sym_type_argument_list_repeat2 = 496, - aux_sym_array_rank_specifier_repeat1 = 497, - aux_sym_function_pointer_type_repeat1 = 498, - aux_sym_calling_convention_repeat1 = 499, - aux_sym_tuple_type_repeat1 = 500, - aux_sym__for_statement_conditions_repeat1 = 501, - aux_sym_switch_body_repeat1 = 502, - aux_sym_try_statement_repeat1 = 503, - aux_sym_catch_clause_repeat1 = 504, - aux_sym_list_pattern_repeat1 = 505, - aux_sym_positional_pattern_clause_repeat1 = 506, - aux_sym_parenthesized_variable_designation_repeat1 = 507, - aux_sym__query_body_repeat1 = 508, - aux_sym__query_body_repeat2 = 509, - aux_sym_order_by_clause_repeat1 = 510, - aux_sym__switch_expression_body_repeat1 = 511, - aux_sym_interpolated_string_expression_repeat1 = 512, - aux_sym_interpolated_string_expression_repeat2 = 513, - aux_sym_interpolated_string_expression_repeat3 = 514, - aux_sym__lambda_expression_init_repeat1 = 515, - aux_sym_anonymous_object_creation_expression_repeat1 = 516, - aux_sym__with_body_repeat1 = 517, - aux_sym_string_literal_repeat1 = 518, - aux_sym_preproc_if_in_top_level_repeat1 = 519, - aux_sym_preproc_pragma_repeat1 = 520, - alias_sym_element_binding_expression = 521, - alias_sym_implicit_parameter = 522, - alias_sym_interpolation_quote = 523, + 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, }; static const char * const ts_symbol_names[] = { @@ -787,6 +789,7 @@ static const char * const ts_symbol_names[] = { [sym_struct_declaration] = "struct_declaration", [sym__struct_declaration_initializer] = "_struct_declaration_initializer", [sym_enum_declaration] = "enum_declaration", + [sym__enum_declaration_initializer] = "_enum_declaration_initializer", [sym_enum_member_declaration_list] = "enum_member_declaration_list", [sym_enum_member_declaration] = "enum_member_declaration", [sym_interface_declaration] = "interface_declaration", @@ -796,6 +799,7 @@ static const char * const ts_symbol_names[] = { [sym_record_declaration] = "record_declaration", [sym__record_declaration_initializer] = "_record_declaration_initializer", [sym_record_base] = "base_list", + [sym__declaration_list_body] = "_declaration_list_body", [sym_primary_constructor_base_type] = "primary_constructor_base_type", [sym_modifier] = "modifier", [sym_type_parameter_list] = "type_parameter_list", @@ -1314,6 +1318,7 @@ static const TSSymbol ts_symbol_map[] = { [sym_struct_declaration] = sym_struct_declaration, [sym__struct_declaration_initializer] = sym__struct_declaration_initializer, [sym_enum_declaration] = sym_enum_declaration, + [sym__enum_declaration_initializer] = sym__enum_declaration_initializer, [sym_enum_member_declaration_list] = sym_enum_member_declaration_list, [sym_enum_member_declaration] = sym_enum_member_declaration, [sym_interface_declaration] = sym_interface_declaration, @@ -1323,6 +1328,7 @@ static const TSSymbol ts_symbol_map[] = { [sym_record_declaration] = sym_record_declaration, [sym__record_declaration_initializer] = sym__record_declaration_initializer, [sym_record_base] = sym_base_list, + [sym__declaration_list_body] = sym__declaration_list_body, [sym_primary_constructor_base_type] = sym_primary_constructor_base_type, [sym_modifier] = sym_modifier, [sym_type_parameter_list] = sym_type_parameter_list, @@ -2553,6 +2559,10 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = true, }, + [sym__enum_declaration_initializer] = { + .visible = false, + .named = true, + }, [sym_enum_member_declaration_list] = { .visible = true, .named = true, @@ -2589,6 +2599,10 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = true, }, + [sym__declaration_list_body] = { + .visible = false, + .named = true, + }, [sym_primary_constructor_base_type] = { .visible = true, .named = true, @@ -3778,199 +3792,191 @@ static const TSFieldMapSlice ts_field_map_slices[PRODUCTION_ID_COUNT] = { [8] = {.index = 4, .length = 1}, [9] = {.index = 5, .length = 1}, [10] = {.index = 6, .length = 2}, - [11] = {.index = 8, .length = 4}, - [12] = {.index = 12, .length = 2}, - [13] = {.index = 14, .length = 2}, - [14] = {.index = 16, .length = 4}, - [15] = {.index = 20, .length = 1}, - [16] = {.index = 21, .length = 5}, - [17] = {.index = 26, .length = 2}, - [18] = {.index = 28, .length = 2}, - [19] = {.index = 30, .length = 1}, - [20] = {.index = 31, .length = 1}, - [22] = {.index = 32, .length = 2}, - [23] = {.index = 34, .length = 2}, + [11] = {.index = 8, .length = 1}, + [12] = {.index = 9, .length = 3}, + [13] = {.index = 12, .length = 4}, + [14] = {.index = 16, .length = 2}, + [15] = {.index = 18, .length = 2}, + [16] = {.index = 20, .length = 4}, + [17] = {.index = 24, .length = 1}, + [18] = {.index = 25, .length = 5}, + [19] = {.index = 30, .length = 2}, + [20] = {.index = 32, .length = 2}, + [21] = {.index = 34, .length = 1}, + [22] = {.index = 35, .length = 1}, [24] = {.index = 36, .length = 2}, - [25] = {.index = 38, .length = 1}, - [26] = {.index = 39, .length = 1}, - [27] = {.index = 40, .length = 2}, + [25] = {.index = 38, .length = 2}, + [26] = {.index = 40, .length = 1}, + [27] = {.index = 41, .length = 1}, [28] = {.index = 42, .length = 2}, [29] = {.index = 44, .length = 2}, [30] = {.index = 46, .length = 2}, - [31] = {.index = 48, .length = 4}, - [32] = {.index = 52, .length = 2}, + [31] = {.index = 48, .length = 2}, + [32] = {.index = 50, .length = 4}, [33] = {.index = 54, .length = 2}, [34] = {.index = 56, .length = 2}, - [35] = {.index = 58, .length = 3}, - [36] = {.index = 61, .length = 1}, - [37] = {.index = 62, .length = 2}, - [38] = {.index = 64, .length = 3}, - [39] = {.index = 67, .length = 5}, - [40] = {.index = 72, .length = 3}, - [41] = {.index = 75, .length = 1}, - [42] = {.index = 75, .length = 1}, - [43] = {.index = 76, .length = 2}, - [44] = {.index = 78, .length = 3}, + [35] = {.index = 58, .length = 2}, + [36] = {.index = 60, .length = 2}, + [37] = {.index = 62, .length = 3}, + [38] = {.index = 65, .length = 5}, + [39] = {.index = 70, .length = 3}, + [40] = {.index = 73, .length = 1}, + [41] = {.index = 73, .length = 1}, + [42] = {.index = 74, .length = 2}, + [43] = {.index = 76, .length = 3}, + [44] = {.index = 79, .length = 2}, [45] = {.index = 81, .length = 2}, - [46] = {.index = 83, .length = 2}, - [47] = {.index = 85, .length = 1}, + [46] = {.index = 83, .length = 1}, + [48] = {.index = 84, .length = 2}, [49] = {.index = 86, .length = 2}, - [50] = {.index = 88, .length = 2}, - [51] = {.index = 90, .length = 4}, - [52] = {.index = 94, .length = 4}, + [50] = {.index = 88, .length = 4}, + [51] = {.index = 92, .length = 4}, + [52] = {.index = 96, .length = 2}, [53] = {.index = 98, .length = 2}, - [54] = {.index = 100, .length = 2}, - [55] = {.index = 102, .length = 3}, - [56] = {.index = 105, .length = 3}, - [57] = {.index = 108, .length = 1}, - [58] = {.index = 109, .length = 3}, - [59] = {.index = 112, .length = 2}, - [60] = {.index = 114, .length = 4}, - [61] = {.index = 118, .length = 1}, - [62] = {.index = 119, .length = 2}, - [63] = {.index = 121, .length = 1}, - [64] = {.index = 122, .length = 2}, - [65] = {.index = 124, .length = 1}, - [66] = {.index = 125, .length = 2}, - [67] = {.index = 127, .length = 2}, - [68] = {.index = 129, .length = 1}, - [69] = {.index = 130, .length = 2}, - [70] = {.index = 132, .length = 2}, - [71] = {.index = 134, .length = 1}, - [72] = {.index = 135, .length = 4}, - [73] = {.index = 139, .length = 2}, - [74] = {.index = 141, .length = 2}, - [75] = {.index = 143, .length = 1}, - [76] = {.index = 144, .length = 2}, - [77] = {.index = 146, .length = 2}, - [78] = {.index = 148, .length = 3}, - [79] = {.index = 151, .length = 2}, - [80] = {.index = 153, .length = 1}, - [81] = {.index = 154, .length = 2}, - [82] = {.index = 156, .length = 2}, - [83] = {.index = 158, .length = 3}, - [84] = {.index = 161, .length = 2}, + [54] = {.index = 100, .length = 3}, + [55] = {.index = 103, .length = 3}, + [56] = {.index = 106, .length = 1}, + [57] = {.index = 107, .length = 3}, + [58] = {.index = 110, .length = 2}, + [59] = {.index = 112, .length = 4}, + [60] = {.index = 116, .length = 1}, + [61] = {.index = 117, .length = 2}, + [62] = {.index = 119, .length = 1}, + [63] = {.index = 120, .length = 1}, + [64] = {.index = 121, .length = 2}, + [65] = {.index = 123, .length = 2}, + [66] = {.index = 125, .length = 1}, + [67] = {.index = 126, .length = 2}, + [68] = {.index = 128, .length = 1}, + [69] = {.index = 129, .length = 4}, + [70] = {.index = 133, .length = 2}, + [71] = {.index = 135, .length = 2}, + [72] = {.index = 137, .length = 1}, + [73] = {.index = 138, .length = 2}, + [74] = {.index = 140, .length = 2}, + [75] = {.index = 142, .length = 3}, + [76] = {.index = 145, .length = 2}, + [77] = {.index = 147, .length = 2}, + [78] = {.index = 149, .length = 1}, + [79] = {.index = 150, .length = 2}, + [80] = {.index = 152, .length = 2}, + [81] = {.index = 154, .length = 3}, + [82] = {.index = 157, .length = 2}, + [83] = {.index = 159, .length = 3}, + [84] = {.index = 162, .length = 1}, [85] = {.index = 163, .length = 2}, - [86] = {.index = 165, .length = 3}, - [87] = {.index = 168, .length = 2}, - [88] = {.index = 170, .length = 1}, - [89] = {.index = 171, .length = 2}, - [90] = {.index = 173, .length = 2}, - [91] = {.index = 175, .length = 1}, - [92] = {.index = 176, .length = 1}, - [93] = {.index = 177, .length = 1}, - [94] = {.index = 178, .length = 1}, - [95] = {.index = 179, .length = 1}, - [96] = {.index = 180, .length = 2}, - [97] = {.index = 182, .length = 2}, - [98] = {.index = 184, .length = 2}, - [99] = {.index = 186, .length = 3}, - [100] = {.index = 189, .length = 3}, - [101] = {.index = 192, .length = 3}, - [102] = {.index = 195, .length = 3}, - [103] = {.index = 198, .length = 4}, - [104] = {.index = 202, .length = 3}, - [105] = {.index = 205, .length = 2}, - [106] = {.index = 207, .length = 2}, - [107] = {.index = 209, .length = 2}, - [108] = {.index = 211, .length = 4}, + [86] = {.index = 165, .length = 1}, + [87] = {.index = 166, .length = 1}, + [88] = {.index = 167, .length = 1}, + [89] = {.index = 168, .length = 1}, + [90] = {.index = 169, .length = 1}, + [91] = {.index = 170, .length = 2}, + [92] = {.index = 172, .length = 2}, + [93] = {.index = 174, .length = 2}, + [94] = {.index = 176, .length = 3}, + [95] = {.index = 179, .length = 3}, + [96] = {.index = 182, .length = 3}, + [97] = {.index = 185, .length = 3}, + [98] = {.index = 188, .length = 4}, + [99] = {.index = 192, .length = 3}, + [100] = {.index = 195, .length = 2}, + [101] = {.index = 197, .length = 2}, + [102] = {.index = 199, .length = 2}, + [103] = {.index = 201, .length = 4}, + [104] = {.index = 205, .length = 3}, + [105] = {.index = 208, .length = 1}, + [106] = {.index = 209, .length = 2}, + [107] = {.index = 211, .length = 2}, + [108] = {.index = 213, .length = 2}, [109] = {.index = 215, .length = 2}, - [110] = {.index = 217, .length = 3}, - [111] = {.index = 220, .length = 2}, - [112] = {.index = 222, .length = 1}, - [113] = {.index = 223, .length = 2}, - [114] = {.index = 225, .length = 2}, - [115] = {.index = 227, .length = 2}, - [116] = {.index = 229, .length = 2}, - [117] = {.index = 231, .length = 2}, - [118] = {.index = 233, .length = 2}, - [119] = {.index = 235, .length = 2}, - [120] = {.index = 237, .length = 3}, - [121] = {.index = 240, .length = 3}, - [122] = {.index = 243, .length = 3}, - [123] = {.index = 246, .length = 2}, - [124] = {.index = 248, .length = 3}, - [125] = {.index = 251, .length = 3}, - [126] = {.index = 254, .length = 4}, - [127] = {.index = 258, .length = 3}, - [128] = {.index = 261, .length = 3}, - [129] = {.index = 264, .length = 4}, - [130] = {.index = 268, .length = 3}, - [131] = {.index = 271, .length = 2}, - [132] = {.index = 273, .length = 5}, - [133] = {.index = 278, .length = 4}, - [134] = {.index = 282, .length = 3}, - [135] = {.index = 285, .length = 3}, - [136] = {.index = 288, .length = 4}, - [137] = {.index = 292, .length = 3}, - [138] = {.index = 295, .length = 2}, - [139] = {.index = 297, .length = 2}, - [140] = {.index = 299, .length = 4}, - [141] = {.index = 303, .length = 3}, - [142] = {.index = 306, .length = 3}, - [143] = {.index = 309, .length = 3}, - [144] = {.index = 312, .length = 3}, - [145] = {.index = 315, .length = 3}, - [146] = {.index = 318, .length = 3}, - [147] = {.index = 321, .length = 4}, - [148] = {.index = 325, .length = 3}, - [149] = {.index = 328, .length = 5}, - [150] = {.index = 333, .length = 4}, - [151] = {.index = 337, .length = 2}, - [152] = {.index = 339, .length = 5}, - [153] = {.index = 344, .length = 4}, - [154] = {.index = 348, .length = 3}, - [155] = {.index = 351, .length = 2}, - [156] = {.index = 353, .length = 3}, - [157] = {.index = 356, .length = 3}, - [158] = {.index = 359, .length = 4}, - [159] = {.index = 363, .length = 3}, - [160] = {.index = 366, .length = 3}, - [161] = {.index = 369, .length = 4}, - [162] = {.index = 373, .length = 3}, - [163] = {.index = 376, .length = 5}, - [164] = {.index = 381, .length = 4}, - [165] = {.index = 385, .length = 2}, - [166] = {.index = 387, .length = 3}, - [167] = {.index = 390, .length = 3}, - [168] = {.index = 393, .length = 4}, - [169] = {.index = 397, .length = 3}, - [170] = {.index = 400, .length = 4}, - [171] = {.index = 404, .length = 4}, - [172] = {.index = 408, .length = 4}, - [173] = {.index = 412, .length = 4}, - [174] = {.index = 416, .length = 5}, - [175] = {.index = 421, .length = 4}, - [176] = {.index = 425, .length = 2}, - [177] = {.index = 427, .length = 4}, - [178] = {.index = 431, .length = 3}, - [179] = {.index = 434, .length = 5}, - [180] = {.index = 439, .length = 4}, - [181] = {.index = 443, .length = 5}, - [182] = {.index = 448, .length = 4}, - [183] = {.index = 452, .length = 2}, - [184] = {.index = 454, .length = 3}, - [185] = {.index = 457, .length = 3}, - [186] = {.index = 460, .length = 4}, - [187] = {.index = 464, .length = 3}, - [188] = {.index = 467, .length = 3}, - [189] = {.index = 470, .length = 4}, - [190] = {.index = 474, .length = 3}, - [191] = {.index = 477, .length = 5}, - [192] = {.index = 482, .length = 4}, - [193] = {.index = 486, .length = 5}, - [194] = {.index = 491, .length = 4}, - [195] = {.index = 495, .length = 5}, - [196] = {.index = 500, .length = 4}, - [197] = {.index = 504, .length = 4}, - [198] = {.index = 508, .length = 3}, - [199] = {.index = 511, .length = 5}, - [200] = {.index = 516, .length = 4}, - [201] = {.index = 520, .length = 5}, - [202] = {.index = 525, .length = 4}, - [203] = {.index = 529, .length = 4}, - [204] = {.index = 533, .length = 5}, - [205] = {.index = 538, .length = 4}, + [110] = {.index = 217, .length = 2}, + [111] = {.index = 219, .length = 2}, + [112] = {.index = 221, .length = 2}, + [113] = {.index = 223, .length = 3}, + [114] = {.index = 226, .length = 3}, + [115] = {.index = 229, .length = 3}, + [116] = {.index = 232, .length = 2}, + [117] = {.index = 234, .length = 3}, + [118] = {.index = 237, .length = 3}, + [119] = {.index = 240, .length = 4}, + [120] = {.index = 244, .length = 3}, + [121] = {.index = 247, .length = 3}, + [122] = {.index = 250, .length = 4}, + [123] = {.index = 254, .length = 3}, + [124] = {.index = 257, .length = 2}, + [125] = {.index = 259, .length = 5}, + [126] = {.index = 264, .length = 4}, + [127] = {.index = 268, .length = 3}, + [128] = {.index = 271, .length = 3}, + [129] = {.index = 274, .length = 4}, + [130] = {.index = 278, .length = 3}, + [131] = {.index = 281, .length = 2}, + [132] = {.index = 283, .length = 4}, + [133] = {.index = 287, .length = 3}, + [134] = {.index = 290, .length = 3}, + [135] = {.index = 293, .length = 3}, + [136] = {.index = 296, .length = 3}, + [137] = {.index = 299, .length = 3}, + [138] = {.index = 302, .length = 3}, + [139] = {.index = 305, .length = 4}, + [140] = {.index = 309, .length = 3}, + [141] = {.index = 312, .length = 5}, + [142] = {.index = 317, .length = 4}, + [143] = {.index = 321, .length = 2}, + [144] = {.index = 323, .length = 5}, + [145] = {.index = 328, .length = 4}, + [146] = {.index = 332, .length = 3}, + [147] = {.index = 335, .length = 2}, + [148] = {.index = 337, .length = 3}, + [149] = {.index = 340, .length = 3}, + [150] = {.index = 343, .length = 4}, + [151] = {.index = 347, .length = 3}, + [152] = {.index = 350, .length = 3}, + [153] = {.index = 353, .length = 4}, + [154] = {.index = 357, .length = 3}, + [155] = {.index = 360, .length = 5}, + [156] = {.index = 365, .length = 4}, + [157] = {.index = 369, .length = 2}, + [158] = {.index = 371, .length = 3}, + [159] = {.index = 374, .length = 3}, + [160] = {.index = 377, .length = 4}, + [161] = {.index = 381, .length = 3}, + [162] = {.index = 384, .length = 4}, + [163] = {.index = 388, .length = 4}, + [164] = {.index = 392, .length = 4}, + [165] = {.index = 396, .length = 4}, + [166] = {.index = 400, .length = 5}, + [167] = {.index = 405, .length = 4}, + [168] = {.index = 409, .length = 2}, + [169] = {.index = 411, .length = 4}, + [170] = {.index = 415, .length = 3}, + [171] = {.index = 418, .length = 5}, + [172] = {.index = 423, .length = 4}, + [173] = {.index = 427, .length = 5}, + [174] = {.index = 432, .length = 4}, + [175] = {.index = 436, .length = 2}, + [176] = {.index = 438, .length = 3}, + [177] = {.index = 441, .length = 3}, + [178] = {.index = 444, .length = 4}, + [179] = {.index = 448, .length = 3}, + [180] = {.index = 451, .length = 3}, + [181] = {.index = 454, .length = 4}, + [182] = {.index = 458, .length = 3}, + [183] = {.index = 461, .length = 5}, + [184] = {.index = 466, .length = 4}, + [185] = {.index = 470, .length = 5}, + [186] = {.index = 475, .length = 4}, + [187] = {.index = 479, .length = 5}, + [188] = {.index = 484, .length = 4}, + [189] = {.index = 488, .length = 4}, + [190] = {.index = 492, .length = 3}, + [191] = {.index = 495, .length = 5}, + [192] = {.index = 500, .length = 4}, + [193] = {.index = 504, .length = 5}, + [194] = {.index = 509, .length = 4}, + [195] = {.index = 513, .length = 4}, + [196] = {.index = 517, .length = 5}, + [197] = {.index = 522, .length = 4}, }; static const TSFieldMapEntry ts_field_map_entries[] = { @@ -3981,736 +3987,712 @@ static const TSFieldMapEntry ts_field_map_entries[] = { [2] = {field_type, 0}, [3] = - {field_type, 1}, - [4] = {field_name, 1}, + [4] = + {field_type, 1}, [5] = {field_body, 1}, [6] = - {field_body, 0, .inherited = true}, + {field_body, 1, .inherited = true}, {field_name, 0, .inherited = true}, [8] = {field_name, 0, .inherited = true}, + [9] = + {field_body, 1, .inherited = true}, + {field_name, 0, .inherited = true}, + {field_type_parameters, 0, .inherited = true}, + [12] = + {field_name, 0, .inherited = true}, {field_parameters, 0, .inherited = true}, {field_type, 0, .inherited = true}, {field_type_parameters, 0, .inherited = true}, - [12] = + [16] = {field_parameters, 1}, {field_type, 0}, - [14] = + [18] = {field_rank, 1}, {field_type, 0}, - [16] = + [20] = {field_body, 1}, {field_left, 0, .inherited = true}, {field_right, 0, .inherited = true}, {field_type, 0, .inherited = true}, - [20] = + [24] = {field_body, 0}, - [21] = + [25] = {field_body, 1, .inherited = true}, {field_name, 0, .inherited = true}, {field_parameters, 0, .inherited = true}, {field_type, 0, .inherited = true}, {field_type_parameters, 0, .inherited = true}, - [26] = + [30] = {field_arguments, 1}, {field_function, 0}, - [28] = + [32] = {field_expression, 0}, {field_subscript, 1}, - [30] = + [34] = {field_parameters, 1}, - [31] = + [35] = {field_content, 1}, - [32] = + [36] = {field_name, 1}, {field_type, 0}, - [34] = + [38] = {field_name, 1, .inherited = true}, {field_type, 1, .inherited = true}, - [36] = - {field_body, 2}, - {field_name, 1}, - [38] = + [40] = {field_name, 2}, - [39] = + [41] = {field_type, 2}, - [40] = + [42] = {field_name, 1}, {field_type_parameters, 2}, - [42] = + [44] = {field_arguments, 2}, {field_type, 1}, - [44] = + [46] = {field_initializer, 2}, {field_type, 1}, - [46] = + [48] = {field_expression, 0}, {field_name, 2}, - [48] = + [50] = {field_body, 2}, {field_condition, 1, .inherited = true}, {field_initializer, 1, .inherited = true}, {field_update, 1, .inherited = true}, - [52] = + [54] = {field_body, 2}, {field_value, 1}, - [54] = + [56] = {field_argument, 1}, {field_operator, 0}, - [56] = - {field_body, 1}, - {field_name, 0, .inherited = true}, [58] = {field_body, 1}, {field_name, 0, .inherited = true}, - {field_type_parameters, 0, .inherited = true}, - [61] = - {field_name, 0, .inherited = true}, - [62] = + [60] = {field_name, 2}, {field_qualifier, 0}, - [64] = + [62] = {field_name, 1}, {field_parameters, 2}, {field_type, 0}, - [67] = + [65] = {field_body, 2, .inherited = true}, {field_name, 0, .inherited = true}, {field_parameters, 0, .inherited = true}, {field_type, 0, .inherited = true}, {field_type_parameters, 0, .inherited = true}, - [72] = + [70] = {field_left, 0}, {field_operator, 1}, {field_right, 2}, - [75] = + [73] = {field_condition, 0}, - [76] = + [74] = {field_expression, 0}, {field_pattern, 2}, - [78] = + [76] = {field_body, 2}, {field_parameters, 0, .inherited = true}, {field_type, 0, .inherited = true}, - [81] = + [79] = {field_alias, 0}, {field_name, 2}, - [83] = + [81] = {field_parameters, 2}, {field_type, 1}, - [85] = + [83] = {field_parameters, 2}, - [86] = + [84] = {field_name, 2}, {field_type, 1}, - [88] = + [86] = {field_name, 2, .inherited = true}, {field_type, 2, .inherited = true}, - [90] = + [88] = {field_name, 0, .inherited = true}, {field_name, 1, .inherited = true}, {field_type, 0, .inherited = true}, {field_type, 1, .inherited = true}, - [94] = + [92] = {field_name, 1, .inherited = true}, {field_name, 2, .inherited = true}, {field_type, 1, .inherited = true}, {field_type, 2, .inherited = true}, - [98] = + [96] = {field_type, 1}, {field_value, 3}, - [100] = - {field_body, 3}, + [98] = + {field_body, 2}, {field_name, 1}, - [102] = + [100] = {field_name, 2}, {field_parameters, 3}, {field_type, 1}, - [105] = + [103] = {field_arguments, 2}, {field_initializer, 3}, {field_type, 1}, - [108] = + [106] = {field_condition, 1}, - [109] = + [107] = {field_body, 1, .inherited = true}, {field_name, 0, .inherited = true}, {field_parameters, 0, .inherited = true}, - [112] = + [110] = {field_name, 0}, {field_parameters, 1}, - [114] = + [112] = {field_name, 1}, {field_parameters, 3}, {field_type, 0}, {field_type_parameters, 2}, - [118] = + [116] = {field_name, 1, .inherited = true}, - [119] = + [117] = {field_name, 1, .inherited = true}, {field_type, 0}, - [121] = + [119] = {field_type, 1, .inherited = true}, - [122] = - {field_body, 3}, - {field_name, 2}, - [124] = + [120] = {field_name, 3}, - [125] = + [121] = {field_name, 2}, {field_type_parameters, 3}, - [127] = + [123] = {field_parameters, 3}, {field_type, 2}, - [129] = + [125] = {field_body, 4}, - [130] = + [126] = {field_name, 3}, {field_type, 2}, - [132] = - {field_body, 4}, - {field_name, 1}, - [134] = + [128] = {field_returns, 3}, - [135] = + [129] = {field_name, 2}, {field_parameters, 4}, {field_type, 1}, {field_type_parameters, 3}, - [139] = + [133] = {field_body, 4}, {field_condition, 2}, - [141] = + [135] = {field_body, 4}, {field_value, 2}, - [143] = + [137] = {field_body, 2}, - [144] = + [138] = {field_condition, 2}, {field_consequence, 4}, - [146] = + [140] = {field_alternative, 3}, {field_condition, 1}, - [148] = + [142] = {field_accessors, 2}, {field_name, 1}, {field_type, 0}, - [151] = + [145] = {field_name, 1}, {field_parameters, 2}, - [153] = + [147] = + {field_name, 0}, + {field_value, 2}, + [149] = {field_name, 2, .inherited = true}, - [154] = + [150] = {field_name, 0, .inherited = true}, {field_name, 1, .inherited = true}, - [156] = + [152] = {field_name, 1}, {field_name, 2, .inherited = true}, - [158] = + [154] = {field_alternative, 4}, {field_condition, 0}, {field_consequence, 2}, - [161] = + [157] = {field_name, 2, .inherited = true}, {field_type, 0}, - [163] = - {field_body, 4}, - {field_name, 2}, - [165] = + [159] = {field_name, 3}, {field_parameters, 4}, {field_type, 2}, - [168] = - {field_body, 4}, - {field_name, 3}, - [170] = + [162] = {field_name, 4}, - [171] = + [163] = {field_name, 3}, {field_type_parameters, 4}, - [173] = - {field_name, 0}, - {field_value, 2}, - [175] = + [165] = {field_returns, 4}, - [176] = + [166] = {field_update, 3}, - [177] = + [167] = {field_condition, 2}, - [178] = + [168] = {field_initializer, 1}, - [179] = + [169] = {field_body, 5}, - [180] = + [170] = {field_left, 2}, {field_right, 4}, - [182] = + [172] = {field_type, 4}, {field_value, 2}, - [184] = + [174] = {field_alternative, 4}, {field_condition, 1}, - [186] = + [176] = {field_accessors, 3}, {field_name, 2}, {field_type, 1}, - [189] = + [179] = {field_body, 3, .inherited = true}, {field_name, 1}, {field_parameters, 2}, - [192] = + [182] = {field_accessors, 3}, {field_parameters, 2}, {field_type, 0}, - [195] = + [185] = {field_accessors, 3}, {field_name, 2}, {field_type, 0}, - [198] = + [188] = {field_body, 3, .inherited = true}, {field_name, 1}, {field_parameters, 2}, {field_returns, 0}, - [202] = + [192] = {field_name, 1}, {field_type, 0}, {field_value, 2}, - [205] = + [195] = {field_name, 2}, {field_parameters, 3}, - [207] = + [197] = + {field_name, 1}, + {field_value, 3}, + [199] = {field_name, 3, .inherited = true}, {field_type, 0}, - [209] = - {field_body, 5}, - {field_name, 2}, - [211] = + [201] = {field_name, 3}, {field_parameters, 5}, {field_type, 2}, {field_type_parameters, 4}, - [215] = - {field_body, 5}, - {field_name, 3}, - [217] = + [205] = {field_name, 4}, {field_parameters, 5}, {field_type, 3}, - [220] = - {field_name, 1}, - {field_value, 3}, - [222] = + [208] = {field_returns, 5}, - [223] = + [209] = {field_body, 1}, {field_condition, 4}, - [225] = + [211] = {field_update, 3}, {field_update, 4}, - [227] = + [213] = {field_condition, 2}, {field_update, 4}, - [229] = + [215] = {field_initializer, 1}, {field_update, 4}, - [231] = + [217] = {field_condition, 3}, {field_initializer, 1}, - [233] = + [219] = {field_initializer, 1}, {field_initializer, 2}, - [235] = + [221] = {field_left, 3}, {field_right, 5}, - [237] = + [223] = {field_left, 3}, {field_right, 5}, {field_type, 2}, - [240] = + [226] = {field_alternative, 6}, {field_condition, 2}, {field_consequence, 4}, - [243] = + [229] = {field_body, 4, .inherited = true}, {field_name, 2}, {field_parameters, 3}, - [246] = + [232] = {field_name, 3}, {field_type, 1}, - [248] = + [234] = {field_accessors, 4}, {field_name, 3}, {field_type, 1}, - [251] = + [237] = {field_body, 4, .inherited = true}, {field_parameters, 3}, {field_type, 2}, - [254] = + [240] = {field_body, 4, .inherited = true}, {field_operator, 2}, {field_parameters, 3}, {field_type, 0}, - [258] = + [244] = {field_parameters, 2}, {field_type, 0}, {field_value, 3}, - [261] = + [247] = {field_accessors, 4}, {field_parameters, 3}, {field_type, 0}, - [264] = + [250] = {field_body, 4, .inherited = true}, {field_name, 2}, {field_parameters, 3}, {field_returns, 0}, - [268] = + [254] = {field_name, 2}, {field_type, 0}, {field_value, 3}, - [271] = + [257] = {field_body, 1, .inherited = true}, {field_name, 0}, - [273] = + [259] = {field_body, 4, .inherited = true}, {field_name, 1}, {field_parameters, 3}, {field_returns, 0}, {field_type_parameters, 2}, - [278] = + [264] = {field_body, 4, .inherited = true}, {field_name, 1}, {field_parameters, 2}, {field_returns, 0}, - [282] = + [268] = {field_accessors, 4}, {field_name, 3}, {field_type, 2}, - [285] = + [271] = {field_accessors, 4}, {field_parameters, 3}, {field_type, 1}, - [288] = + [274] = {field_body, 4, .inherited = true}, {field_name, 2}, {field_parameters, 3}, {field_returns, 1}, - [292] = + [278] = {field_name, 2}, {field_type, 1}, {field_value, 3}, - [295] = + [281] = {field_name, 1, .inherited = true}, {field_name, 2, .inherited = true}, - [297] = - {field_body, 6}, - {field_name, 3}, - [299] = + [283] = {field_name, 4}, {field_parameters, 6}, {field_type, 3}, {field_type_parameters, 5}, - [303] = + [287] = {field_condition, 2}, {field_update, 4}, {field_update, 5}, - [306] = + [290] = {field_initializer, 1}, {field_update, 4}, {field_update, 5}, - [309] = + [293] = {field_condition, 3}, {field_initializer, 1}, {field_update, 5}, - [312] = + [296] = {field_initializer, 1}, {field_initializer, 2}, {field_update, 5}, - [315] = + [299] = {field_condition, 4}, {field_initializer, 1}, {field_initializer, 2}, - [318] = + [302] = {field_left, 4}, {field_right, 6}, {field_type, 3}, - [321] = + [305] = {field_body, 5, .inherited = true}, {field_operator, 3}, {field_parameters, 4}, {field_type, 0}, - [325] = + [309] = {field_parameters, 3}, {field_type, 0}, {field_value, 4}, - [328] = + [312] = {field_body, 5, .inherited = true}, {field_name, 2}, {field_parameters, 4}, {field_returns, 0}, {field_type_parameters, 3}, - [333] = + [317] = {field_body, 5, .inherited = true}, {field_name, 2}, {field_parameters, 3}, {field_returns, 0}, - [337] = + [321] = {field_body, 2, .inherited = true}, {field_name, 1}, - [339] = + [323] = {field_body, 5, .inherited = true}, {field_name, 1}, {field_parameters, 3}, {field_returns, 0}, {field_type_parameters, 2}, - [344] = + [328] = {field_accessors, 2}, {field_name, 1}, {field_type, 0}, {field_value, 4}, - [348] = + [332] = {field_body, 5, .inherited = true}, {field_name, 3}, {field_parameters, 4}, - [351] = + [335] = {field_name, 4}, {field_type, 2}, - [353] = + [337] = {field_accessors, 5}, {field_name, 4}, {field_type, 2}, - [356] = + [340] = {field_body, 5, .inherited = true}, {field_parameters, 4}, {field_type, 3}, - [359] = + [343] = {field_body, 5, .inherited = true}, {field_operator, 3}, {field_parameters, 4}, {field_type, 1}, - [363] = + [347] = {field_parameters, 3}, {field_type, 1}, {field_value, 4}, - [366] = + [350] = {field_accessors, 5}, {field_parameters, 4}, {field_type, 1}, - [369] = + [353] = {field_body, 5, .inherited = true}, {field_name, 3}, {field_parameters, 4}, {field_returns, 1}, - [373] = + [357] = {field_name, 3}, {field_type, 1}, {field_value, 4}, - [376] = + [360] = {field_body, 5, .inherited = true}, {field_name, 2}, {field_parameters, 4}, {field_returns, 1}, {field_type_parameters, 3}, - [381] = + [365] = {field_body, 5, .inherited = true}, {field_name, 2}, {field_parameters, 3}, {field_returns, 1}, - [385] = + [369] = {field_name, 4}, {field_type, 3}, - [387] = + [371] = {field_accessors, 5}, {field_name, 4}, {field_type, 3}, - [390] = + [374] = {field_accessors, 5}, {field_parameters, 4}, {field_type, 2}, - [393] = + [377] = {field_body, 5, .inherited = true}, {field_name, 3}, {field_parameters, 4}, {field_returns, 2}, - [397] = + [381] = {field_name, 3}, {field_type, 2}, {field_value, 4}, - [400] = + [384] = {field_condition, 3}, {field_initializer, 1}, {field_update, 5}, {field_update, 6}, - [404] = + [388] = {field_initializer, 1}, {field_initializer, 2}, {field_update, 5}, {field_update, 6}, - [408] = + [392] = {field_condition, 4}, {field_initializer, 1}, {field_initializer, 2}, {field_update, 6}, - [412] = + [396] = {field_body, 6, .inherited = true}, {field_operator, 4}, {field_parameters, 5}, {field_type, 0}, - [416] = + [400] = {field_body, 6, .inherited = true}, {field_name, 2}, {field_parameters, 4}, {field_returns, 0}, {field_type_parameters, 3}, - [421] = + [405] = {field_accessors, 3}, {field_name, 2}, {field_type, 0}, {field_value, 5}, - [425] = + [409] = {field_body, 3, .inherited = true}, {field_name, 2}, - [427] = + [411] = {field_body, 6, .inherited = true}, {field_operator, 4}, {field_parameters, 5}, {field_type, 1}, - [431] = + [415] = {field_parameters, 4}, {field_type, 1}, {field_value, 5}, - [434] = + [418] = {field_body, 6, .inherited = true}, {field_name, 3}, {field_parameters, 5}, {field_returns, 1}, {field_type_parameters, 4}, - [439] = + [423] = {field_body, 6, .inherited = true}, {field_name, 3}, {field_parameters, 4}, {field_returns, 1}, - [443] = + [427] = {field_body, 6, .inherited = true}, {field_name, 2}, {field_parameters, 4}, {field_returns, 1}, {field_type_parameters, 3}, - [448] = + [432] = {field_accessors, 3}, {field_name, 2}, {field_type, 1}, {field_value, 5}, - [452] = + [436] = {field_name, 5}, {field_type, 3}, - [454] = + [438] = {field_accessors, 6}, {field_name, 5}, {field_type, 3}, - [457] = + [441] = {field_body, 6, .inherited = true}, {field_parameters, 5}, {field_type, 4}, - [460] = + [444] = {field_body, 6, .inherited = true}, {field_operator, 4}, {field_parameters, 5}, {field_type, 2}, - [464] = + [448] = {field_parameters, 4}, {field_type, 2}, {field_value, 5}, - [467] = + [451] = {field_accessors, 6}, {field_parameters, 5}, {field_type, 2}, - [470] = + [454] = {field_body, 6, .inherited = true}, {field_name, 4}, {field_parameters, 5}, {field_returns, 2}, - [474] = + [458] = {field_name, 4}, {field_type, 2}, {field_value, 5}, - [477] = + [461] = {field_body, 6, .inherited = true}, {field_name, 3}, {field_parameters, 5}, {field_returns, 2}, {field_type_parameters, 4}, - [482] = + [466] = {field_body, 6, .inherited = true}, {field_name, 3}, {field_parameters, 4}, {field_returns, 2}, - [486] = + [470] = {field_condition, 4}, {field_initializer, 1}, {field_initializer, 2}, {field_update, 6}, {field_update, 7}, - [491] = + [475] = {field_body, 7, .inherited = true}, {field_operator, 5}, {field_parameters, 6}, {field_type, 1}, - [495] = + [479] = {field_body, 7, .inherited = true}, {field_name, 3}, {field_parameters, 5}, {field_returns, 1}, {field_type_parameters, 4}, - [500] = + [484] = {field_accessors, 4}, {field_name, 3}, {field_type, 1}, {field_value, 6}, - [504] = + [488] = {field_body, 7, .inherited = true}, {field_operator, 5}, {field_parameters, 6}, {field_type, 2}, - [508] = + [492] = {field_parameters, 5}, {field_type, 2}, {field_value, 6}, - [511] = + [495] = {field_body, 7, .inherited = true}, {field_name, 4}, {field_parameters, 6}, {field_returns, 2}, {field_type_parameters, 5}, - [516] = + [500] = {field_body, 7, .inherited = true}, {field_name, 4}, {field_parameters, 5}, {field_returns, 2}, - [520] = + [504] = {field_body, 7, .inherited = true}, {field_name, 3}, {field_parameters, 5}, {field_returns, 2}, {field_type_parameters, 4}, - [525] = + [509] = {field_accessors, 4}, {field_name, 3}, {field_type, 2}, {field_value, 6}, - [529] = + [513] = {field_body, 8, .inherited = true}, {field_operator, 6}, {field_parameters, 7}, {field_type, 2}, - [533] = + [517] = {field_body, 8, .inherited = true}, {field_name, 4}, {field_parameters, 6}, {field_returns, 2}, {field_type_parameters, 5}, - [538] = + [522] = {field_accessors, 5}, {field_name, 4}, {field_type, 2}, @@ -4728,14 +4710,14 @@ static const TSSymbol ts_alias_sequences[PRODUCTION_ID_COUNT][MAX_ALIAS_SEQUENCE [4] = { [0] = alias_sym_implicit_parameter, }, - [21] = { + [23] = { [1] = alias_sym_interpolation_quote, [2] = alias_sym_interpolation_quote, }, - [41] = { + [40] = { [2] = alias_sym_element_binding_expression, }, - [48] = { + [47] = { [1] = alias_sym_interpolation_quote, [3] = alias_sym_interpolation_quote, }, @@ -4763,10 +4745,10 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [8] = 2, [9] = 9, [10] = 10, - [11] = 11, - [12] = 11, - [13] = 11, - [14] = 11, + [11] = 9, + [12] = 12, + [13] = 9, + [14] = 9, [15] = 15, [16] = 16, [17] = 17, @@ -4777,98 +4759,98 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [22] = 22, [23] = 23, [24] = 24, - [25] = 25, + [25] = 23, [26] = 26, [27] = 27, [28] = 28, [29] = 29, - [30] = 29, - [31] = 29, - [32] = 29, - [33] = 29, - [34] = 29, - [35] = 29, - [36] = 29, - [37] = 29, - [38] = 29, - [39] = 39, + [30] = 23, + [31] = 31, + [32] = 23, + [33] = 23, + [34] = 23, + [35] = 35, + [36] = 23, + [37] = 23, + [38] = 23, + [39] = 23, [40] = 40, [41] = 41, - [42] = 40, - [43] = 41, - [44] = 40, - [45] = 41, - [46] = 40, - [47] = 41, - [48] = 40, - [49] = 41, - [50] = 40, - [51] = 41, - [52] = 40, + [42] = 41, + [43] = 40, + [44] = 41, + [45] = 40, + [46] = 41, + [47] = 40, + [48] = 41, + [49] = 40, + [50] = 41, + [51] = 40, + [52] = 41, [53] = 40, [54] = 41, - [55] = 41, - [56] = 40, - [57] = 41, - [58] = 40, - [59] = 41, + [55] = 40, + [56] = 41, + [57] = 40, + [58] = 41, + [59] = 40, [60] = 41, [61] = 40, [62] = 62, [63] = 63, - [64] = 62, + [64] = 64, [65] = 65, - [66] = 62, + [66] = 66, [67] = 67, - [68] = 63, - [69] = 69, - [70] = 70, - [71] = 71, + [68] = 68, + [69] = 63, + [70] = 65, + [71] = 64, [72] = 65, - [73] = 73, + [73] = 66, [74] = 74, - [75] = 70, - [76] = 69, - [77] = 65, - [78] = 71, - [79] = 79, - [80] = 79, - [81] = 81, - [82] = 73, - [83] = 63, - [84] = 81, - [85] = 74, - [86] = 79, - [87] = 67, + [75] = 75, + [76] = 76, + [77] = 62, + [78] = 66, + [79] = 74, + [80] = 80, + [81] = 67, + [82] = 74, + [83] = 68, + [84] = 63, + [85] = 80, + [86] = 68, + [87] = 64, [88] = 63, - [89] = 62, - [90] = 65, - [91] = 70, - [92] = 69, - [93] = 70, - [94] = 81, - [95] = 73, - [96] = 69, - [97] = 81, + [89] = 64, + [90] = 76, + [91] = 65, + [92] = 66, + [93] = 76, + [94] = 76, + [95] = 62, + [96] = 62, + [97] = 67, [98] = 74, - [99] = 79, - [100] = 67, - [101] = 73, - [102] = 74, - [103] = 71, - [104] = 71, - [105] = 67, + [99] = 80, + [100] = 68, + [101] = 67, + [102] = 75, + [103] = 75, + [104] = 75, + [105] = 80, [106] = 106, - [107] = 106, - [108] = 108, - [109] = 108, + [107] = 107, + [108] = 106, + [109] = 107, [110] = 106, [111] = 106, [112] = 106, [113] = 113, [114] = 113, [115] = 113, - [116] = 113, + [116] = 116, [117] = 113, [118] = 113, [119] = 113, @@ -4876,7 +4858,7 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [121] = 113, [122] = 113, [123] = 113, - [124] = 124, + [124] = 113, [125] = 113, [126] = 113, [127] = 113, @@ -4884,7 +4866,7 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [129] = 113, [130] = 113, [131] = 113, - [132] = 113, + [132] = 132, [133] = 113, [134] = 113, [135] = 113, @@ -4896,306 +4878,306 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [141] = 113, [142] = 113, [143] = 113, - [144] = 144, + [144] = 113, [145] = 145, [146] = 145, - [147] = 144, - [148] = 124, - [149] = 144, - [150] = 124, - [151] = 124, - [152] = 124, - [153] = 144, - [154] = 144, - [155] = 124, - [156] = 144, - [157] = 144, - [158] = 124, - [159] = 144, - [160] = 124, - [161] = 144, - [162] = 124, - [163] = 144, - [164] = 144, - [165] = 124, - [166] = 124, - [167] = 124, - [168] = 144, - [169] = 169, - [170] = 124, - [171] = 124, - [172] = 144, - [173] = 124, - [174] = 144, - [175] = 144, - [176] = 144, - [177] = 124, - [178] = 124, - [179] = 124, - [180] = 144, - [181] = 169, - [182] = 144, - [183] = 124, - [184] = 124, - [185] = 144, - [186] = 124, - [187] = 144, - [188] = 124, - [189] = 144, - [190] = 169, - [191] = 169, - [192] = 169, - [193] = 144, - [194] = 124, - [195] = 144, - [196] = 124, - [197] = 144, - [198] = 124, - [199] = 124, - [200] = 124, - [201] = 144, - [202] = 144, - [203] = 144, - [204] = 124, - [205] = 124, - [206] = 144, - [207] = 124, - [208] = 144, - [209] = 124, - [210] = 144, - [211] = 144, - [212] = 212, - [213] = 144, - [214] = 124, - [215] = 124, - [216] = 144, - [217] = 144, - [218] = 144, - [219] = 124, - [220] = 124, - [221] = 221, - [222] = 222, - [223] = 144, + [147] = 132, + [148] = 116, + [149] = 132, + [150] = 116, + [151] = 132, + [152] = 116, + [153] = 132, + [154] = 132, + [155] = 116, + [156] = 116, + [157] = 132, + [158] = 132, + [159] = 116, + [160] = 116, + [161] = 132, + [162] = 116, + [163] = 132, + [164] = 116, + [165] = 132, + [166] = 116, + [167] = 116, + [168] = 132, + [169] = 132, + [170] = 116, + [171] = 132, + [172] = 116, + [173] = 116, + [174] = 132, + [175] = 116, + [176] = 176, + [177] = 116, + [178] = 132, + [179] = 116, + [180] = 132, + [181] = 116, + [182] = 132, + [183] = 132, + [184] = 116, + [185] = 116, + [186] = 116, + [187] = 132, + [188] = 132, + [189] = 116, + [190] = 116, + [191] = 116, + [192] = 176, + [193] = 176, + [194] = 176, + [195] = 132, + [196] = 132, + [197] = 132, + [198] = 132, + [199] = 116, + [200] = 132, + [201] = 116, + [202] = 132, + [203] = 176, + [204] = 132, + [205] = 132, + [206] = 116, + [207] = 132, + [208] = 116, + [209] = 132, + [210] = 116, + [211] = 116, + [212] = 132, + [213] = 116, + [214] = 214, + [215] = 116, + [216] = 132, + [217] = 116, + [218] = 132, + [219] = 116, + [220] = 132, + [221] = 116, + [222] = 132, + [223] = 223, [224] = 224, - [225] = 124, + [225] = 116, [226] = 226, - [227] = 221, + [227] = 116, [228] = 224, [229] = 224, - [230] = 226, - [231] = 221, - [232] = 144, - [233] = 226, - [234] = 226, - [235] = 124, - [236] = 144, - [237] = 124, - [238] = 224, - [239] = 144, - [240] = 226, - [241] = 221, - [242] = 242, - [243] = 124, - [244] = 124, - [245] = 144, - [246] = 124, - [247] = 144, - [248] = 242, - [249] = 124, - [250] = 144, - [251] = 226, + [230] = 230, + [231] = 230, + [232] = 223, + [233] = 223, + [234] = 132, + [235] = 224, + [236] = 132, + [237] = 116, + [238] = 223, + [239] = 132, + [240] = 132, + [241] = 230, + [242] = 132, + [243] = 116, + [244] = 224, + [245] = 132, + [246] = 116, + [247] = 226, + [248] = 224, + [249] = 230, + [250] = 116, + [251] = 251, [252] = 252, [253] = 253, - [254] = 254, - [255] = 253, - [256] = 124, - [257] = 144, - [258] = 124, - [259] = 144, - [260] = 124, - [261] = 254, - [262] = 253, - [263] = 124, - [264] = 144, - [265] = 124, - [266] = 144, - [267] = 267, - [268] = 144, - [269] = 124, - [270] = 144, - [271] = 124, - [272] = 254, - [273] = 144, - [274] = 254, - [275] = 254, - [276] = 267, - [277] = 253, - [278] = 254, - [279] = 252, - [280] = 253, - [281] = 124, - [282] = 144, - [283] = 253, + [254] = 116, + [255] = 255, + [256] = 255, + [257] = 252, + [258] = 132, + [259] = 132, + [260] = 116, + [261] = 253, + [262] = 255, + [263] = 263, + [264] = 252, + [265] = 132, + [266] = 116, + [267] = 132, + [268] = 116, + [269] = 132, + [270] = 255, + [271] = 116, + [272] = 255, + [273] = 252, + [274] = 252, + [275] = 132, + [276] = 116, + [277] = 255, + [278] = 252, + [279] = 263, + [280] = 116, + [281] = 116, + [282] = 132, + [283] = 132, [284] = 284, [285] = 285, - [286] = 285, - [287] = 287, - [288] = 288, - [289] = 284, - [290] = 284, - [291] = 291, - [292] = 291, - [293] = 287, - [294] = 291, - [295] = 287, - [296] = 291, + [286] = 286, + [287] = 286, + [288] = 286, + [289] = 285, + [290] = 290, + [291] = 290, + [292] = 285, + [293] = 290, + [294] = 290, + [295] = 286, + [296] = 290, [297] = 284, - [298] = 287, - [299] = 291, - [300] = 287, - [301] = 284, + [298] = 298, + [299] = 285, + [300] = 286, + [301] = 285, [302] = 302, - [303] = 303, - [304] = 302, + [303] = 302, + [304] = 304, [305] = 305, - [306] = 303, + [306] = 304, [307] = 302, - [308] = 302, - [309] = 302, + [308] = 308, + [309] = 305, [310] = 310, - [311] = 305, - [312] = 303, - [313] = 302, - [314] = 302, + [311] = 304, + [312] = 302, + [313] = 304, + [314] = 305, [315] = 305, - [316] = 303, - [317] = 302, - [318] = 310, - [319] = 305, - [320] = 303, - [321] = 310, - [322] = 305, - [323] = 303, - [324] = 324, - [325] = 310, - [326] = 310, - [327] = 302, - [328] = 305, - [329] = 305, - [330] = 310, - [331] = 305, - [332] = 303, - [333] = 303, - [334] = 302, - [335] = 302, - [336] = 303, - [337] = 337, - [338] = 310, - [339] = 310, - [340] = 305, - [341] = 303, - [342] = 305, - [343] = 303, - [344] = 310, - [345] = 305, - [346] = 302, - [347] = 303, - [348] = 310, - [349] = 305, - [350] = 303, + [316] = 302, + [317] = 308, + [318] = 308, + [319] = 308, + [320] = 302, + [321] = 308, + [322] = 308, + [323] = 302, + [324] = 304, + [325] = 305, + [326] = 326, + [327] = 308, + [328] = 302, + [329] = 308, + [330] = 308, + [331] = 304, + [332] = 304, + [333] = 305, + [334] = 308, + [335] = 305, + [336] = 308, + [337] = 302, + [338] = 304, + [339] = 305, + [340] = 340, + [341] = 302, + [342] = 304, + [343] = 305, + [344] = 302, + [345] = 304, + [346] = 305, + [347] = 302, + [348] = 304, + [349] = 308, + [350] = 305, [351] = 302, - [352] = 310, + [352] = 304, [353] = 305, - [354] = 303, - [355] = 310, - [356] = 305, - [357] = 303, - [358] = 310, - [359] = 302, + [354] = 308, + [355] = 302, + [356] = 304, + [357] = 305, + [358] = 302, + [359] = 304, [360] = 305, - [361] = 310, - [362] = 305, - [363] = 303, - [364] = 302, - [365] = 303, - [366] = 366, - [367] = 302, - [368] = 302, - [369] = 302, - [370] = 302, - [371] = 302, - [372] = 310, - [373] = 302, + [361] = 304, + [362] = 308, + [363] = 302, + [364] = 304, + [365] = 308, + [366] = 302, + [367] = 304, + [368] = 305, + [369] = 308, + [370] = 305, + [371] = 305, + [372] = 308, + [373] = 308, [374] = 302, - [375] = 302, - [376] = 302, - [377] = 302, + [375] = 308, + [376] = 304, + [377] = 305, [378] = 302, - [379] = 302, - [380] = 305, - [381] = 302, - [382] = 302, - [383] = 310, - [384] = 302, - [385] = 302, - [386] = 302, - [387] = 302, - [388] = 310, - [389] = 302, - [390] = 302, - [391] = 302, - [392] = 310, - [393] = 302, - [394] = 324, - [395] = 305, - [396] = 303, - [397] = 310, - [398] = 305, - [399] = 303, - [400] = 310, - [401] = 305, - [402] = 303, - [403] = 302, - [404] = 303, - [405] = 310, - [406] = 305, - [407] = 303, - [408] = 305, - [409] = 303, - [410] = 302, - [411] = 302, + [379] = 308, + [380] = 308, + [381] = 304, + [382] = 305, + [383] = 304, + [384] = 308, + [385] = 305, + [386] = 308, + [387] = 308, + [388] = 302, + [389] = 308, + [390] = 308, + [391] = 304, + [392] = 308, + [393] = 308, + [394] = 305, + [395] = 308, + [396] = 308, + [397] = 308, + [398] = 308, + [399] = 308, + [400] = 308, + [401] = 308, + [402] = 302, + [403] = 304, + [404] = 308, + [405] = 308, + [406] = 308, + [407] = 305, + [408] = 302, + [409] = 326, + [410] = 304, + [411] = 305, [412] = 302, - [413] = 302, - [414] = 302, + [413] = 304, + [414] = 305, [415] = 302, - [416] = 305, - [417] = 310, - [418] = 302, - [419] = 305, - [420] = 303, - [421] = 310, - [422] = 305, - [423] = 303, - [424] = 302, - [425] = 302, - [426] = 303, - [427] = 310, - [428] = 302, - [429] = 305, - [430] = 303, - [431] = 310, - [432] = 310, - [433] = 305, - [434] = 303, - [435] = 310, - [436] = 305, - [437] = 303, + [416] = 304, + [417] = 305, + [418] = 308, + [419] = 302, + [420] = 304, + [421] = 305, + [422] = 302, + [423] = 304, + [424] = 305, + [425] = 308, + [426] = 304, + [427] = 308, + [428] = 308, + [429] = 302, + [430] = 302, + [431] = 304, + [432] = 305, + [433] = 308, + [434] = 302, + [435] = 304, + [436] = 308, + [437] = 305, [438] = 305, - [439] = 310, - [440] = 305, - [441] = 303, - [442] = 310, - [443] = 310, + [439] = 308, + [440] = 308, + [441] = 308, + [442] = 308, + [443] = 302, [444] = 444, [445] = 444, [446] = 446, @@ -5247,7 +5229,7 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [492] = 453, [493] = 453, [494] = 453, - [495] = 495, + [495] = 453, [496] = 453, [497] = 453, [498] = 453, @@ -5262,14 +5244,14 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [507] = 453, [508] = 453, [509] = 453, - [510] = 453, + [510] = 510, [511] = 453, [512] = 512, [513] = 512, [514] = 512, - [515] = 512, + [515] = 515, [516] = 512, - [517] = 517, + [517] = 512, [518] = 512, [519] = 512, [520] = 512, @@ -5283,1380 +5265,1380 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [528] = 523, [529] = 523, [530] = 530, - [531] = 530, - [532] = 532, - [533] = 532, - [534] = 530, + [531] = 531, + [532] = 531, + [533] = 530, + [534] = 531, [535] = 535, - [536] = 535, - [537] = 537, - [538] = 535, - [539] = 532, - [540] = 535, - [541] = 532, - [542] = 530, - [543] = 535, + [536] = 531, + [537] = 535, + [538] = 531, + [539] = 530, + [540] = 540, + [541] = 535, + [542] = 535, + [543] = 531, [544] = 535, [545] = 530, - [546] = 532, - [547] = 532, + [546] = 535, + [547] = 530, [548] = 548, [549] = 549, [550] = 549, - [551] = 548, - [552] = 552, + [551] = 551, + [552] = 551, [553] = 549, - [554] = 548, - [555] = 555, - [556] = 549, - [557] = 548, - [558] = 552, - [559] = 555, - [560] = 548, - [561] = 561, - [562] = 548, + [554] = 554, + [555] = 549, + [556] = 554, + [557] = 557, + [558] = 557, + [559] = 554, + [560] = 554, + [561] = 549, + [562] = 549, [563] = 563, - [564] = 563, - [565] = 565, - [566] = 563, - [567] = 565, - [568] = 565, - [569] = 563, - [570] = 563, - [571] = 565, + [564] = 564, + [565] = 563, + [566] = 564, + [567] = 564, + [568] = 568, + [569] = 564, + [570] = 564, + [571] = 563, [572] = 563, - [573] = 573, + [573] = 563, [574] = 563, [575] = 575, - [576] = 565, + [576] = 564, [577] = 563, - [578] = 565, + [578] = 563, [579] = 579, [580] = 580, [581] = 581, [582] = 582, [583] = 583, - [584] = 584, + [584] = 583, [585] = 585, - [586] = 579, - [587] = 587, - [588] = 588, - [589] = 589, - [590] = 590, + [586] = 581, + [587] = 580, + [588] = 581, + [589] = 583, + [590] = 581, [591] = 591, - [592] = 584, - [593] = 584, - [594] = 585, - [595] = 579, - [596] = 583, - [597] = 588, - [598] = 589, - [599] = 599, - [600] = 588, - [601] = 585, - [602] = 579, - [603] = 588, - [604] = 589, - [605] = 585, - [606] = 579, - [607] = 585, - [608] = 588, - [609] = 589, - [610] = 579, - [611] = 579, - [612] = 579, - [613] = 579, - [614] = 583, - [615] = 579, - [616] = 582, - [617] = 579, - [618] = 587, - [619] = 579, - [620] = 579, - [621] = 579, - [622] = 579, - [623] = 579, - [624] = 579, - [625] = 579, - [626] = 582, - [627] = 579, - [628] = 587, - [629] = 579, - [630] = 579, - [631] = 579, - [632] = 579, - [633] = 579, - [634] = 579, - [635] = 582, - [636] = 587, - [637] = 579, - [638] = 579, - [639] = 579, - [640] = 579, - [641] = 579, - [642] = 579, - [643] = 579, - [644] = 579, - [645] = 579, - [646] = 579, - [647] = 579, - [648] = 589, - [649] = 584, - [650] = 583, - [651] = 585, - [652] = 579, - [653] = 579, - [654] = 579, - [655] = 579, - [656] = 579, - [657] = 579, - [658] = 579, - [659] = 588, - [660] = 579, - [661] = 579, - [662] = 579, - [663] = 579, - [664] = 589, - [665] = 579, - [666] = 579, - [667] = 579, + [592] = 592, + [593] = 581, + [594] = 594, + [595] = 595, + [596] = 596, + [597] = 597, + [598] = 595, + [599] = 595, + [600] = 595, + [601] = 581, + [602] = 581, + [603] = 581, + [604] = 597, + [605] = 581, + [606] = 581, + [607] = 581, + [608] = 581, + [609] = 592, + [610] = 581, + [611] = 594, + [612] = 597, + [613] = 581, + [614] = 581, + [615] = 581, + [616] = 581, + [617] = 581, + [618] = 581, + [619] = 592, + [620] = 583, + [621] = 594, + [622] = 581, + [623] = 581, + [624] = 581, + [625] = 581, + [626] = 581, + [627] = 581, + [628] = 581, + [629] = 581, + [630] = 581, + [631] = 581, + [632] = 581, + [633] = 581, + [634] = 580, + [635] = 595, + [636] = 597, + [637] = 594, + [638] = 582, + [639] = 582, + [640] = 583, + [641] = 592, + [642] = 581, + [643] = 581, + [644] = 581, + [645] = 581, + [646] = 646, + [647] = 581, + [648] = 581, + [649] = 581, + [650] = 597, + [651] = 581, + [652] = 581, + [653] = 581, + [654] = 595, + [655] = 581, + [656] = 581, + [657] = 581, + [658] = 597, + [659] = 581, + [660] = 582, + [661] = 581, + [662] = 580, + [663] = 581, + [664] = 583, + [665] = 581, + [666] = 581, + [667] = 581, [668] = 668, [669] = 669, - [670] = 668, - [671] = 668, - [672] = 669, + [670] = 669, + [671] = 669, + [672] = 668, [673] = 668, - [674] = 669, + [674] = 674, [675] = 669, - [676] = 676, - [677] = 668, - [678] = 678, - [679] = 676, + [676] = 669, + [677] = 669, + [678] = 669, + [679] = 668, [680] = 669, - [681] = 669, - [682] = 668, + [681] = 681, + [682] = 682, [683] = 669, - [684] = 668, - [685] = 669, - [686] = 669, + [684] = 669, + [685] = 668, + [686] = 668, [687] = 668, - [688] = 668, - [689] = 668, - [690] = 678, - [691] = 669, - [692] = 668, + [688] = 688, + [689] = 669, + [690] = 668, + [691] = 691, + [692] = 692, [693] = 669, - [694] = 668, - [695] = 669, - [696] = 669, + [694] = 694, + [695] = 695, + [696] = 696, [697] = 668, - [698] = 668, - [699] = 699, - [700] = 668, - [701] = 669, - [702] = 669, + [698] = 669, + [699] = 669, + [700] = 692, + [701] = 668, + [702] = 692, [703] = 668, - [704] = 669, - [705] = 669, + [704] = 692, + [705] = 668, [706] = 668, - [707] = 668, - [708] = 668, - [709] = 668, - [710] = 669, - [711] = 668, - [712] = 669, - [713] = 668, - [714] = 668, - [715] = 668, + [707] = 669, + [708] = 669, + [709] = 709, + [710] = 668, + [711] = 669, + [712] = 709, + [713] = 692, + [714] = 714, + [715] = 691, [716] = 669, [717] = 669, - [718] = 668, - [719] = 668, - [720] = 669, + [718] = 669, + [719] = 709, + [720] = 668, [721] = 668, - [722] = 668, - [723] = 668, + [722] = 722, + [723] = 682, [724] = 669, [725] = 668, - [726] = 668, - [727] = 676, - [728] = 669, - [729] = 729, - [730] = 669, + [726] = 669, + [727] = 669, + [728] = 668, + [729] = 668, + [730] = 668, [731] = 669, [732] = 669, - [733] = 668, + [733] = 669, [734] = 668, - [735] = 669, - [736] = 669, + [735] = 691, + [736] = 668, [737] = 668, - [738] = 668, - [739] = 739, + [738] = 714, + [739] = 668, [740] = 669, - [741] = 668, - [742] = 668, + [741] = 669, + [742] = 669, [743] = 669, - [744] = 668, - [745] = 668, + [744] = 682, + [745] = 669, [746] = 669, - [747] = 669, + [747] = 747, [748] = 668, - [749] = 668, - [750] = 668, - [751] = 729, - [752] = 668, + [749] = 749, + [750] = 750, + [751] = 682, + [752] = 669, [753] = 669, - [754] = 668, + [754] = 669, [755] = 668, - [756] = 668, - [757] = 757, - [758] = 758, + [756] = 669, + [757] = 669, + [758] = 668, [759] = 669, - [760] = 676, - [761] = 669, - [762] = 757, - [763] = 668, - [764] = 678, - [765] = 765, - [766] = 669, - [767] = 767, - [768] = 668, - [769] = 729, - [770] = 668, - [771] = 771, - [772] = 772, - [773] = 669, - [774] = 668, - [775] = 775, + [760] = 669, + [761] = 668, + [762] = 668, + [763] = 669, + [764] = 669, + [765] = 668, + [766] = 668, + [767] = 668, + [768] = 669, + [769] = 769, + [770] = 669, + [771] = 669, + [772] = 668, + [773] = 709, + [774] = 692, + [775] = 668, [776] = 668, - [777] = 669, + [777] = 709, [778] = 669, - [779] = 678, - [780] = 780, + [779] = 668, + [780] = 669, [781] = 668, - [782] = 782, + [782] = 669, [783] = 783, - [784] = 729, - [785] = 771, - [786] = 668, - [787] = 668, - [788] = 771, - [789] = 789, - [790] = 668, - [791] = 757, - [792] = 771, + [784] = 784, + [785] = 669, + [786] = 669, + [787] = 669, + [788] = 669, + [789] = 669, + [790] = 669, + [791] = 691, + [792] = 668, [793] = 668, - [794] = 669, - [795] = 669, - [796] = 668, - [797] = 669, - [798] = 669, - [799] = 668, - [800] = 668, - [801] = 668, - [802] = 676, + [794] = 668, + [795] = 709, + [796] = 669, + [797] = 668, + [798] = 798, + [799] = 714, + [800] = 669, + [801] = 669, + [802] = 802, [803] = 669, - [804] = 669, - [805] = 668, + [804] = 668, + [805] = 669, [806] = 669, - [807] = 676, - [808] = 808, - [809] = 809, + [807] = 668, + [808] = 669, + [809] = 668, [810] = 810, - [811] = 811, - [812] = 678, - [813] = 813, - [814] = 814, - [815] = 678, - [816] = 668, - [817] = 757, + [811] = 668, + [812] = 669, + [813] = 669, + [814] = 668, + [815] = 669, + [816] = 669, + [817] = 669, [818] = 668, - [819] = 669, - [820] = 668, - [821] = 668, - [822] = 669, + [819] = 819, + [820] = 714, + [821] = 669, + [822] = 714, [823] = 668, - [824] = 669, - [825] = 771, + [824] = 668, + [825] = 668, [826] = 826, - [827] = 826, + [827] = 827, [828] = 828, [829] = 829, - [830] = 829, - [831] = 828, + [830] = 830, + [831] = 831, [832] = 832, [833] = 833, - [834] = 826, + [834] = 834, [835] = 835, [836] = 836, [837] = 837, [838] = 838, - [839] = 832, + [839] = 839, [840] = 840, - [841] = 832, - [842] = 833, + [841] = 841, + [842] = 842, [843] = 843, - [844] = 833, + [844] = 844, [845] = 845, [846] = 846, [847] = 847, - [848] = 838, - [849] = 840, - [850] = 838, + [848] = 848, + [849] = 849, + [850] = 850, [851] = 851, - [852] = 840, - [853] = 843, - [854] = 845, - [855] = 847, - [856] = 851, + [852] = 852, + [853] = 853, + [854] = 854, + [855] = 855, + [856] = 856, [857] = 857, [858] = 858, - [859] = 843, - [860] = 837, + [859] = 859, + [860] = 860, [861] = 861, [862] = 862, - [863] = 845, + [863] = 863, [864] = 864, - [865] = 865, - [866] = 857, - [867] = 847, - [868] = 828, - [869] = 858, - [870] = 851, - [871] = 857, - [872] = 858, + [865] = 836, + [866] = 837, + [867] = 838, + [868] = 839, + [869] = 869, + [870] = 870, + [871] = 860, + [872] = 872, [873] = 873, - [874] = 837, - [875] = 826, - [876] = 861, - [877] = 862, - [878] = 837, - [879] = 861, - [880] = 862, - [881] = 864, - [882] = 829, - [883] = 883, - [884] = 884, - [885] = 864, - [886] = 828, - [887] = 861, - [888] = 838, - [889] = 840, - [890] = 843, - [891] = 845, - [892] = 847, - [893] = 851, - [894] = 857, - [895] = 858, - [896] = 837, - [897] = 861, - [898] = 862, - [899] = 828, - [900] = 832, - [901] = 833, - [902] = 826, - [903] = 828, - [904] = 864, - [905] = 826, - [906] = 826, - [907] = 829, - [908] = 838, - [909] = 840, - [910] = 843, - [911] = 845, - [912] = 847, + [874] = 874, + [875] = 875, + [876] = 876, + [877] = 827, + [878] = 829, + [879] = 830, + [880] = 840, + [881] = 841, + [882] = 842, + [883] = 843, + [884] = 844, + [885] = 845, + [886] = 846, + [887] = 847, + [888] = 848, + [889] = 849, + [890] = 850, + [891] = 854, + [892] = 833, + [893] = 834, + [894] = 894, + [895] = 851, + [896] = 861, + [897] = 839, + [898] = 833, + [899] = 834, + [900] = 840, + [901] = 841, + [902] = 842, + [903] = 843, + [904] = 844, + [905] = 845, + [906] = 846, + [907] = 847, + [908] = 908, + [909] = 848, + [910] = 849, + [911] = 850, + [912] = 912, [913] = 851, - [914] = 857, - [915] = 858, - [916] = 837, - [917] = 861, - [918] = 862, - [919] = 828, - [920] = 832, - [921] = 833, - [922] = 829, - [923] = 864, - [924] = 832, - [925] = 829, - [926] = 832, - [927] = 833, - [928] = 838, - [929] = 840, - [930] = 843, - [931] = 845, - [932] = 847, - [933] = 851, - [934] = 857, - [935] = 858, - [936] = 837, - [937] = 861, - [938] = 862, - [939] = 864, - [940] = 833, - [941] = 828, - [942] = 942, - [943] = 829, - [944] = 944, - [945] = 862, - [946] = 838, - [947] = 840, - [948] = 948, - [949] = 835, - [950] = 836, - [951] = 843, - [952] = 829, - [953] = 845, - [954] = 847, - [955] = 832, - [956] = 833, - [957] = 851, - [958] = 958, - [959] = 959, - [960] = 838, - [961] = 857, - [962] = 840, - [963] = 843, - [964] = 845, - [965] = 847, + [914] = 854, + [915] = 861, + [916] = 839, + [917] = 833, + [918] = 834, + [919] = 840, + [920] = 841, + [921] = 842, + [922] = 843, + [923] = 844, + [924] = 845, + [925] = 846, + [926] = 847, + [927] = 848, + [928] = 849, + [929] = 850, + [930] = 851, + [931] = 854, + [932] = 861, + [933] = 839, + [934] = 833, + [935] = 834, + [936] = 840, + [937] = 841, + [938] = 842, + [939] = 843, + [940] = 844, + [941] = 845, + [942] = 846, + [943] = 847, + [944] = 848, + [945] = 849, + [946] = 850, + [947] = 851, + [948] = 873, + [949] = 854, + [950] = 950, + [951] = 839, + [952] = 874, + [953] = 833, + [954] = 834, + [955] = 840, + [956] = 841, + [957] = 842, + [958] = 843, + [959] = 844, + [960] = 845, + [961] = 846, + [962] = 847, + [963] = 848, + [964] = 849, + [965] = 850, [966] = 851, - [967] = 857, - [968] = 858, - [969] = 837, - [970] = 861, - [971] = 862, + [967] = 854, + [968] = 839, + [969] = 969, + [970] = 970, + [971] = 971, [972] = 972, - [973] = 864, - [974] = 865, - [975] = 858, - [976] = 828, - [977] = 977, - [978] = 826, - [979] = 837, - [980] = 861, - [981] = 862, - [982] = 864, - [983] = 829, - [984] = 832, - [985] = 884, - [986] = 833, - [987] = 828, - [988] = 988, - [989] = 838, - [990] = 840, + [973] = 829, + [974] = 830, + [975] = 840, + [976] = 833, + [977] = 834, + [978] = 978, + [979] = 841, + [980] = 980, + [981] = 981, + [982] = 840, + [983] = 842, + [984] = 841, + [985] = 842, + [986] = 843, + [987] = 844, + [988] = 845, + [989] = 846, + [990] = 847, [991] = 843, - [992] = 845, - [993] = 847, - [994] = 851, - [995] = 857, - [996] = 858, - [997] = 837, - [998] = 861, - [999] = 862, - [1000] = 828, - [1001] = 832, - [1002] = 833, - [1003] = 1003, - [1004] = 864, - [1005] = 829, - [1006] = 826, - [1007] = 829, - [1008] = 838, + [992] = 848, + [993] = 849, + [994] = 850, + [995] = 844, + [996] = 851, + [997] = 852, + [998] = 845, + [999] = 854, + [1000] = 1000, + [1001] = 846, + [1002] = 861, + [1003] = 847, + [1004] = 839, + [1005] = 848, + [1006] = 860, + [1007] = 849, + [1008] = 850, [1009] = 840, - [1010] = 843, - [1011] = 845, - [1012] = 847, - [1013] = 851, - [1014] = 857, - [1015] = 858, - [1016] = 837, - [1017] = 861, - [1018] = 862, - [1019] = 828, - [1020] = 832, - [1021] = 833, - [1022] = 828, - [1023] = 864, - [1024] = 829, - [1025] = 832, - [1026] = 833, - [1027] = 838, - [1028] = 840, - [1029] = 843, - [1030] = 845, - [1031] = 847, - [1032] = 851, - [1033] = 857, - [1034] = 858, - [1035] = 837, - [1036] = 861, - [1037] = 862, - [1038] = 864, - [1039] = 1039, - [1040] = 828, - [1041] = 829, - [1042] = 832, - [1043] = 833, - [1044] = 835, - [1045] = 836, - [1046] = 838, - [1047] = 840, - [1048] = 1048, - [1049] = 832, - [1050] = 833, - [1051] = 838, - [1052] = 843, + [1010] = 841, + [1011] = 842, + [1012] = 843, + [1013] = 844, + [1014] = 845, + [1015] = 846, + [1016] = 847, + [1017] = 848, + [1018] = 849, + [1019] = 850, + [1020] = 854, + [1021] = 1021, + [1022] = 1022, + [1023] = 851, + [1024] = 833, + [1025] = 834, + [1026] = 851, + [1027] = 861, + [1028] = 839, + [1029] = 840, + [1030] = 841, + [1031] = 842, + [1032] = 843, + [1033] = 844, + [1034] = 845, + [1035] = 846, + [1036] = 847, + [1037] = 848, + [1038] = 849, + [1039] = 850, + [1040] = 854, + [1041] = 833, + [1042] = 834, + [1043] = 1043, + [1044] = 851, + [1045] = 839, + [1046] = 833, + [1047] = 834, + [1048] = 840, + [1049] = 841, + [1050] = 842, + [1051] = 843, + [1052] = 844, [1053] = 845, - [1054] = 847, - [1055] = 851, - [1056] = 838, - [1057] = 840, - [1058] = 840, - [1059] = 843, - [1060] = 845, - [1061] = 847, - [1062] = 851, - [1063] = 857, - [1064] = 858, - [1065] = 857, - [1066] = 837, - [1067] = 861, - [1068] = 862, - [1069] = 858, - [1070] = 864, - [1071] = 865, - [1072] = 843, - [1073] = 1073, - [1074] = 828, - [1075] = 845, - [1076] = 837, - [1077] = 861, - [1078] = 826, - [1079] = 862, - [1080] = 847, - [1081] = 851, - [1082] = 857, - [1083] = 829, - [1084] = 864, - [1085] = 884, - [1086] = 858, - [1087] = 837, - [1088] = 838, - [1089] = 840, - [1090] = 843, - [1091] = 845, - [1092] = 847, - [1093] = 851, - [1094] = 857, - [1095] = 858, - [1096] = 837, - [1097] = 861, - [1098] = 862, - [1099] = 828, - [1100] = 828, - [1101] = 832, - [1102] = 833, - [1103] = 864, - [1104] = 861, - [1105] = 826, - [1106] = 829, - [1107] = 838, - [1108] = 840, - [1109] = 843, - [1110] = 845, - [1111] = 847, - [1112] = 851, - [1113] = 857, - [1114] = 858, - [1115] = 837, - [1116] = 861, - [1117] = 862, - [1118] = 828, - [1119] = 832, - [1120] = 833, - [1121] = 862, - [1122] = 864, - [1123] = 864, - [1124] = 829, - [1125] = 832, - [1126] = 833, - [1127] = 838, - [1128] = 840, - [1129] = 843, - [1130] = 845, - [1131] = 847, - [1132] = 851, - [1133] = 857, - [1134] = 858, - [1135] = 837, - [1136] = 861, - [1137] = 862, - [1138] = 864, - [1139] = 832, - [1140] = 828, - [1141] = 829, - [1142] = 828, - [1143] = 1143, - [1144] = 835, - [1145] = 836, - [1146] = 832, - [1147] = 833, - [1148] = 829, - [1149] = 826, - [1150] = 838, - [1151] = 1151, - [1152] = 840, - [1153] = 843, - [1154] = 845, - [1155] = 847, - [1156] = 851, - [1157] = 857, - [1158] = 858, - [1159] = 837, + [1054] = 846, + [1055] = 847, + [1056] = 1056, + [1057] = 848, + [1058] = 849, + [1059] = 850, + [1060] = 851, + [1061] = 1061, + [1062] = 854, + [1063] = 839, + [1064] = 1064, + [1065] = 829, + [1066] = 830, + [1067] = 829, + [1068] = 830, + [1069] = 833, + [1070] = 834, + [1071] = 826, + [1072] = 852, + [1073] = 833, + [1074] = 834, + [1075] = 840, + [1076] = 841, + [1077] = 842, + [1078] = 843, + [1079] = 844, + [1080] = 845, + [1081] = 846, + [1082] = 847, + [1083] = 848, + [1084] = 849, + [1085] = 850, + [1086] = 851, + [1087] = 852, + [1088] = 854, + [1089] = 861, + [1090] = 840, + [1091] = 841, + [1092] = 839, + [1093] = 842, + [1094] = 843, + [1095] = 860, + [1096] = 844, + [1097] = 845, + [1098] = 846, + [1099] = 847, + [1100] = 848, + [1101] = 840, + [1102] = 841, + [1103] = 842, + [1104] = 843, + [1105] = 844, + [1106] = 845, + [1107] = 846, + [1108] = 847, + [1109] = 848, + [1110] = 849, + [1111] = 850, + [1112] = 849, + [1113] = 854, + [1114] = 850, + [1115] = 833, + [1116] = 834, + [1117] = 851, + [1118] = 851, + [1119] = 852, + [1120] = 861, + [1121] = 839, + [1122] = 840, + [1123] = 841, + [1124] = 842, + [1125] = 843, + [1126] = 844, + [1127] = 845, + [1128] = 846, + [1129] = 847, + [1130] = 848, + [1131] = 849, + [1132] = 850, + [1133] = 854, + [1134] = 833, + [1135] = 834, + [1136] = 1136, + [1137] = 851, + [1138] = 854, + [1139] = 839, + [1140] = 833, + [1141] = 834, + [1142] = 840, + [1143] = 841, + [1144] = 842, + [1145] = 843, + [1146] = 844, + [1147] = 845, + [1148] = 846, + [1149] = 847, + [1150] = 848, + [1151] = 849, + [1152] = 850, + [1153] = 851, + [1154] = 854, + [1155] = 839, + [1156] = 829, + [1157] = 830, + [1158] = 833, + [1159] = 834, [1160] = 861, - [1161] = 862, - [1162] = 864, - [1163] = 865, - [1164] = 828, - [1165] = 1165, - [1166] = 826, - [1167] = 829, - [1168] = 1168, - [1169] = 884, - [1170] = 833, - [1171] = 838, - [1172] = 840, - [1173] = 843, - [1174] = 845, - [1175] = 847, - [1176] = 851, - [1177] = 857, - [1178] = 858, - [1179] = 837, - [1180] = 861, - [1181] = 862, - [1182] = 828, - [1183] = 832, - [1184] = 833, - [1185] = 864, - [1186] = 826, - [1187] = 829, - [1188] = 838, - [1189] = 840, - [1190] = 843, - [1191] = 845, - [1192] = 847, - [1193] = 851, - [1194] = 857, - [1195] = 858, - [1196] = 837, - [1197] = 861, - [1198] = 862, - [1199] = 828, - [1200] = 832, - [1201] = 833, - [1202] = 1202, - [1203] = 864, - [1204] = 835, - [1205] = 829, - [1206] = 832, - [1207] = 833, - [1208] = 838, - [1209] = 840, - [1210] = 843, - [1211] = 845, - [1212] = 847, - [1213] = 851, - [1214] = 857, - [1215] = 858, - [1216] = 837, - [1217] = 861, - [1218] = 862, - [1219] = 864, - [1220] = 836, - [1221] = 828, - [1222] = 829, - [1223] = 838, - [1224] = 835, - [1225] = 836, - [1226] = 840, - [1227] = 832, - [1228] = 833, - [1229] = 829, - [1230] = 838, - [1231] = 843, - [1232] = 840, - [1233] = 843, - [1234] = 845, - [1235] = 847, - [1236] = 851, - [1237] = 857, - [1238] = 858, - [1239] = 837, - [1240] = 861, - [1241] = 862, - [1242] = 864, - [1243] = 865, - [1244] = 832, - [1245] = 828, - [1246] = 826, - [1247] = 829, - [1248] = 884, - [1249] = 864, - [1250] = 838, - [1251] = 840, - [1252] = 843, - [1253] = 845, - [1254] = 847, - [1255] = 851, - [1256] = 857, - [1257] = 858, - [1258] = 837, - [1259] = 861, - [1260] = 862, - [1261] = 828, - [1262] = 826, - [1263] = 832, - [1264] = 833, - [1265] = 1265, - [1266] = 864, - [1267] = 833, - [1268] = 829, - [1269] = 832, - [1270] = 833, - [1271] = 838, - [1272] = 840, - [1273] = 843, - [1274] = 845, - [1275] = 847, - [1276] = 851, - [1277] = 857, - [1278] = 858, - [1279] = 837, + [1161] = 840, + [1162] = 841, + [1163] = 842, + [1164] = 843, + [1165] = 844, + [1166] = 845, + [1167] = 846, + [1168] = 847, + [1169] = 848, + [1170] = 849, + [1171] = 850, + [1172] = 851, + [1173] = 852, + [1174] = 854, + [1175] = 829, + [1176] = 861, + [1177] = 833, + [1178] = 839, + [1179] = 839, + [1180] = 834, + [1181] = 860, + [1182] = 854, + [1183] = 860, + [1184] = 840, + [1185] = 841, + [1186] = 842, + [1187] = 843, + [1188] = 844, + [1189] = 845, + [1190] = 846, + [1191] = 847, + [1192] = 848, + [1193] = 849, + [1194] = 850, + [1195] = 854, + [1196] = 833, + [1197] = 834, + [1198] = 851, + [1199] = 861, + [1200] = 839, + [1201] = 840, + [1202] = 841, + [1203] = 842, + [1204] = 843, + [1205] = 844, + [1206] = 845, + [1207] = 846, + [1208] = 847, + [1209] = 848, + [1210] = 849, + [1211] = 850, + [1212] = 854, + [1213] = 1213, + [1214] = 833, + [1215] = 834, + [1216] = 851, + [1217] = 839, + [1218] = 833, + [1219] = 834, + [1220] = 840, + [1221] = 841, + [1222] = 842, + [1223] = 843, + [1224] = 844, + [1225] = 845, + [1226] = 846, + [1227] = 847, + [1228] = 848, + [1229] = 849, + [1230] = 850, + [1231] = 851, + [1232] = 854, + [1233] = 839, + [1234] = 829, + [1235] = 830, + [1236] = 833, + [1237] = 834, + [1238] = 840, + [1239] = 833, + [1240] = 841, + [1241] = 842, + [1242] = 843, + [1243] = 844, + [1244] = 845, + [1245] = 846, + [1246] = 847, + [1247] = 834, + [1248] = 848, + [1249] = 849, + [1250] = 850, + [1251] = 851, + [1252] = 852, + [1253] = 854, + [1254] = 861, + [1255] = 839, + [1256] = 840, + [1257] = 860, + [1258] = 841, + [1259] = 842, + [1260] = 843, + [1261] = 844, + [1262] = 840, + [1263] = 841, + [1264] = 842, + [1265] = 843, + [1266] = 844, + [1267] = 845, + [1268] = 846, + [1269] = 847, + [1270] = 848, + [1271] = 849, + [1272] = 850, + [1273] = 845, + [1274] = 854, + [1275] = 846, + [1276] = 833, + [1277] = 834, + [1278] = 847, + [1279] = 851, [1280] = 861, - [1281] = 862, - [1282] = 864, - [1283] = 835, - [1284] = 828, - [1285] = 829, - [1286] = 836, + [1281] = 839, + [1282] = 840, + [1283] = 841, + [1284] = 842, + [1285] = 843, + [1286] = 844, [1287] = 845, - [1288] = 835, - [1289] = 836, - [1290] = 832, - [1291] = 833, - [1292] = 826, - [1293] = 838, - [1294] = 829, - [1295] = 840, - [1296] = 843, - [1297] = 845, - [1298] = 847, + [1288] = 846, + [1289] = 847, + [1290] = 848, + [1291] = 849, + [1292] = 850, + [1293] = 854, + [1294] = 848, + [1295] = 833, + [1296] = 834, + [1297] = 849, + [1298] = 850, [1299] = 851, - [1300] = 857, - [1301] = 858, - [1302] = 837, - [1303] = 861, - [1304] = 862, - [1305] = 864, - [1306] = 865, - [1307] = 828, - [1308] = 826, - [1309] = 829, - [1310] = 884, + [1300] = 839, + [1301] = 851, + [1302] = 833, + [1303] = 834, + [1304] = 840, + [1305] = 841, + [1306] = 842, + [1307] = 843, + [1308] = 844, + [1309] = 845, + [1310] = 846, [1311] = 847, - [1312] = 838, - [1313] = 840, - [1314] = 843, - [1315] = 845, - [1316] = 847, - [1317] = 851, - [1318] = 857, - [1319] = 858, - [1320] = 837, - [1321] = 861, - [1322] = 862, - [1323] = 828, - [1324] = 1324, - [1325] = 832, - [1326] = 833, - [1327] = 832, - [1328] = 864, - [1329] = 832, - [1330] = 829, - [1331] = 833, - [1332] = 833, - [1333] = 835, - [1334] = 836, - [1335] = 832, - [1336] = 832, - [1337] = 833, - [1338] = 838, - [1339] = 838, - [1340] = 840, - [1341] = 843, - [1342] = 845, - [1343] = 847, - [1344] = 851, - [1345] = 857, - [1346] = 858, - [1347] = 838, - [1348] = 837, - [1349] = 861, - [1350] = 862, - [1351] = 840, - [1352] = 864, - [1353] = 865, - [1354] = 840, - [1355] = 828, - [1356] = 843, - [1357] = 833, - [1358] = 829, - [1359] = 884, - [1360] = 843, - [1361] = 838, - [1362] = 840, - [1363] = 843, - [1364] = 845, + [1312] = 848, + [1313] = 849, + [1314] = 850, + [1315] = 851, + [1316] = 854, + [1317] = 839, + [1318] = 854, + [1319] = 829, + [1320] = 830, + [1321] = 833, + [1322] = 834, + [1323] = 861, + [1324] = 840, + [1325] = 841, + [1326] = 842, + [1327] = 843, + [1328] = 844, + [1329] = 845, + [1330] = 846, + [1331] = 847, + [1332] = 848, + [1333] = 849, + [1334] = 850, + [1335] = 851, + [1336] = 852, + [1337] = 854, + [1338] = 861, + [1339] = 839, + [1340] = 860, + [1341] = 840, + [1342] = 841, + [1343] = 842, + [1344] = 843, + [1345] = 844, + [1346] = 845, + [1347] = 846, + [1348] = 847, + [1349] = 848, + [1350] = 849, + [1351] = 850, + [1352] = 854, + [1353] = 833, + [1354] = 834, + [1355] = 851, + [1356] = 861, + [1357] = 839, + [1358] = 840, + [1359] = 841, + [1360] = 842, + [1361] = 843, + [1362] = 844, + [1363] = 845, + [1364] = 846, [1365] = 847, - [1366] = 851, - [1367] = 857, - [1368] = 858, - [1369] = 837, - [1370] = 861, - [1371] = 862, - [1372] = 845, - [1373] = 828, - [1374] = 847, - [1375] = 832, + [1366] = 848, + [1367] = 849, + [1368] = 850, + [1369] = 854, + [1370] = 839, + [1371] = 833, + [1372] = 834, + [1373] = 851, + [1374] = 1374, + [1375] = 839, [1376] = 833, - [1377] = 851, - [1378] = 864, - [1379] = 845, - [1380] = 829, - [1381] = 847, - [1382] = 835, - [1383] = 836, - [1384] = 857, - [1385] = 858, - [1386] = 1386, - [1387] = 865, - [1388] = 837, - [1389] = 884, - [1390] = 851, - [1391] = 861, - [1392] = 835, - [1393] = 836, - [1394] = 862, - [1395] = 865, - [1396] = 829, - [1397] = 884, - [1398] = 864, - [1399] = 864, - [1400] = 835, - [1401] = 836, - [1402] = 838, - [1403] = 865, - [1404] = 828, - [1405] = 884, - [1406] = 826, - [1407] = 835, - [1408] = 836, - [1409] = 832, - [1410] = 865, - [1411] = 829, - [1412] = 884, - [1413] = 833, - [1414] = 835, - [1415] = 836, - [1416] = 838, - [1417] = 865, - [1418] = 840, - [1419] = 884, - [1420] = 832, - [1421] = 835, - [1422] = 836, - [1423] = 833, - [1424] = 865, - [1425] = 843, - [1426] = 884, - [1427] = 835, - [1428] = 836, - [1429] = 838, - [1430] = 835, - [1431] = 836, - [1432] = 835, - [1433] = 836, - [1434] = 835, - [1435] = 836, - [1436] = 835, - [1437] = 836, - [1438] = 835, - [1439] = 836, - [1440] = 835, - [1441] = 836, - [1442] = 835, - [1443] = 836, - [1444] = 835, - [1445] = 836, - [1446] = 835, - [1447] = 836, - [1448] = 835, - [1449] = 836, - [1450] = 835, - [1451] = 836, - [1452] = 835, - [1453] = 836, - [1454] = 835, - [1455] = 836, - [1456] = 835, - [1457] = 836, - [1458] = 835, - [1459] = 836, - [1460] = 835, - [1461] = 836, - [1462] = 835, - [1463] = 836, - [1464] = 835, - [1465] = 836, - [1466] = 835, - [1467] = 840, - [1468] = 835, - [1469] = 836, - [1470] = 843, - [1471] = 845, + [1377] = 834, + [1378] = 840, + [1379] = 841, + [1380] = 842, + [1381] = 843, + [1382] = 844, + [1383] = 845, + [1384] = 846, + [1385] = 847, + [1386] = 848, + [1387] = 849, + [1388] = 850, + [1389] = 851, + [1390] = 854, + [1391] = 839, + [1392] = 829, + [1393] = 830, + [1394] = 833, + [1395] = 834, + [1396] = 1396, + [1397] = 840, + [1398] = 841, + [1399] = 842, + [1400] = 843, + [1401] = 844, + [1402] = 845, + [1403] = 846, + [1404] = 847, + [1405] = 848, + [1406] = 849, + [1407] = 850, + [1408] = 851, + [1409] = 852, + [1410] = 833, + [1411] = 854, + [1412] = 834, + [1413] = 861, + [1414] = 839, + [1415] = 860, + [1416] = 840, + [1417] = 841, + [1418] = 842, + [1419] = 843, + [1420] = 844, + [1421] = 845, + [1422] = 846, + [1423] = 847, + [1424] = 848, + [1425] = 849, + [1426] = 850, + [1427] = 854, + [1428] = 861, + [1429] = 833, + [1430] = 834, + [1431] = 851, + [1432] = 839, + [1433] = 833, + [1434] = 826, + [1435] = 840, + [1436] = 841, + [1437] = 842, + [1438] = 843, + [1439] = 844, + [1440] = 845, + [1441] = 846, + [1442] = 847, + [1443] = 848, + [1444] = 849, + [1445] = 850, + [1446] = 851, + [1447] = 854, + [1448] = 839, + [1449] = 829, + [1450] = 830, + [1451] = 833, + [1452] = 834, + [1453] = 840, + [1454] = 840, + [1455] = 841, + [1456] = 841, + [1457] = 842, + [1458] = 843, + [1459] = 844, + [1460] = 845, + [1461] = 846, + [1462] = 847, + [1463] = 842, + [1464] = 848, + [1465] = 849, + [1466] = 850, + [1467] = 843, + [1468] = 851, + [1469] = 852, + [1470] = 844, + [1471] = 854, [1472] = 845, - [1473] = 847, - [1474] = 1039, - [1475] = 1475, - [1476] = 1476, - [1477] = 1477, - [1478] = 883, - [1479] = 948, - [1480] = 972, - [1481] = 847, - [1482] = 851, - [1483] = 1483, - [1484] = 851, - [1485] = 857, - [1486] = 858, - [1487] = 826, - [1488] = 840, - [1489] = 837, - [1490] = 861, - [1491] = 862, - [1492] = 832, - [1493] = 833, - [1494] = 838, - [1495] = 840, - [1496] = 843, - [1497] = 845, - [1498] = 847, + [1473] = 861, + [1474] = 839, + [1475] = 860, + [1476] = 846, + [1477] = 840, + [1478] = 841, + [1479] = 842, + [1480] = 843, + [1481] = 844, + [1482] = 845, + [1483] = 846, + [1484] = 847, + [1485] = 848, + [1486] = 849, + [1487] = 850, + [1488] = 847, + [1489] = 854, + [1490] = 833, + [1491] = 834, + [1492] = 848, + [1493] = 851, + [1494] = 849, + [1495] = 839, + [1496] = 850, + [1497] = 829, + [1498] = 830, [1499] = 851, - [1500] = 857, - [1501] = 858, - [1502] = 864, - [1503] = 837, - [1504] = 861, - [1505] = 862, - [1506] = 864, - [1507] = 857, - [1508] = 828, - [1509] = 829, - [1510] = 832, - [1511] = 833, - [1512] = 838, - [1513] = 840, - [1514] = 843, - [1515] = 845, - [1516] = 847, - [1517] = 851, - [1518] = 857, - [1519] = 858, - [1520] = 858, - [1521] = 837, - [1522] = 861, - [1523] = 862, - [1524] = 864, - [1525] = 857, - [1526] = 828, - [1527] = 828, - [1528] = 829, - [1529] = 826, - [1530] = 1530, - [1531] = 837, - [1532] = 838, - [1533] = 840, - [1534] = 843, - [1535] = 845, - [1536] = 847, - [1537] = 851, - [1538] = 857, - [1539] = 858, - [1540] = 837, - [1541] = 861, - [1542] = 862, - [1543] = 828, - [1544] = 832, - [1545] = 833, - [1546] = 861, - [1547] = 829, - [1548] = 864, - [1549] = 862, - [1550] = 829, - [1551] = 1551, - [1552] = 832, - [1553] = 833, - [1554] = 838, - [1555] = 840, - [1556] = 843, - [1557] = 845, - [1558] = 847, - [1559] = 851, - [1560] = 857, - [1561] = 858, - [1562] = 1562, - [1563] = 837, - [1564] = 861, - [1565] = 862, - [1566] = 864, - [1567] = 858, - [1568] = 828, + [1500] = 833, + [1501] = 834, + [1502] = 840, + [1503] = 841, + [1504] = 842, + [1505] = 843, + [1506] = 844, + [1507] = 845, + [1508] = 846, + [1509] = 847, + [1510] = 848, + [1511] = 849, + [1512] = 850, + [1513] = 854, + [1514] = 851, + [1515] = 852, + [1516] = 854, + [1517] = 861, + [1518] = 839, + [1519] = 860, + [1520] = 840, + [1521] = 841, + [1522] = 842, + [1523] = 843, + [1524] = 844, + [1525] = 845, + [1526] = 846, + [1527] = 847, + [1528] = 848, + [1529] = 849, + [1530] = 850, + [1531] = 854, + [1532] = 833, + [1533] = 834, + [1534] = 851, + [1535] = 839, + [1536] = 829, + [1537] = 830, + [1538] = 852, + [1539] = 860, + [1540] = 861, + [1541] = 829, + [1542] = 830, + [1543] = 852, + [1544] = 860, + [1545] = 829, + [1546] = 830, + [1547] = 857, + [1548] = 852, + [1549] = 860, + [1550] = 858, + [1551] = 829, + [1552] = 830, + [1553] = 852, + [1554] = 860, + [1555] = 829, + [1556] = 830, + [1557] = 852, + [1558] = 860, + [1559] = 829, + [1560] = 830, + [1561] = 852, + [1562] = 860, + [1563] = 829, + [1564] = 830, + [1565] = 829, + [1566] = 830, + [1567] = 829, + [1568] = 830, [1569] = 829, - [1570] = 864, - [1571] = 865, - [1572] = 840, - [1573] = 832, - [1574] = 832, - [1575] = 833, - [1576] = 833, - [1577] = 864, - [1578] = 843, + [1570] = 830, + [1571] = 829, + [1572] = 830, + [1573] = 829, + [1574] = 830, + [1575] = 829, + [1576] = 830, + [1577] = 829, + [1578] = 830, [1579] = 829, - [1580] = 838, - [1581] = 840, - [1582] = 843, - [1583] = 845, - [1584] = 847, - [1585] = 851, - [1586] = 857, - [1587] = 858, - [1588] = 837, - [1589] = 861, - [1590] = 862, - [1591] = 828, - [1592] = 832, - [1593] = 833, - [1594] = 828, - [1595] = 845, - [1596] = 864, - [1597] = 837, - [1598] = 829, - [1599] = 838, - [1600] = 840, - [1601] = 843, - [1602] = 845, - [1603] = 847, - [1604] = 851, - [1605] = 857, - [1606] = 858, - [1607] = 837, - [1608] = 861, - [1609] = 862, - [1610] = 828, - [1611] = 861, - [1612] = 832, - [1613] = 833, - [1614] = 862, - [1615] = 864, - [1616] = 835, - [1617] = 1617, - [1618] = 865, - [1619] = 838, - [1620] = 840, - [1621] = 843, - [1622] = 884, - [1623] = 835, - [1624] = 864, - [1625] = 845, - [1626] = 835, - [1627] = 826, - [1628] = 865, - [1629] = 847, - [1630] = 1475, - [1631] = 835, - [1632] = 847, - [1633] = 835, - [1634] = 851, - [1635] = 857, - [1636] = 851, - [1637] = 858, - [1638] = 884, - [1639] = 1039, - [1640] = 1475, - [1641] = 1476, - [1642] = 1477, - [1643] = 883, - [1644] = 948, - [1645] = 972, - [1646] = 857, - [1647] = 837, - [1648] = 828, - [1649] = 861, - [1650] = 862, - [1651] = 829, - [1652] = 826, - [1653] = 884, - [1654] = 858, - [1655] = 1655, - [1656] = 864, - [1657] = 835, - [1658] = 851, - [1659] = 1039, - [1660] = 1475, - [1661] = 1476, - [1662] = 1477, - [1663] = 883, - [1664] = 948, - [1665] = 972, - [1666] = 828, - [1667] = 1667, - [1668] = 837, - [1669] = 838, - [1670] = 840, - [1671] = 829, - [1672] = 1672, - [1673] = 1039, - [1674] = 948, - [1675] = 972, - [1676] = 843, - [1677] = 845, - [1678] = 847, - [1679] = 851, - [1680] = 857, - [1681] = 858, - [1682] = 1682, - [1683] = 1039, - [1684] = 948, - [1685] = 972, - [1686] = 837, - [1687] = 861, - [1688] = 862, - [1689] = 1689, - [1690] = 1690, - [1691] = 828, - [1692] = 1692, - [1693] = 861, - [1694] = 1694, - [1695] = 862, - [1696] = 832, - [1697] = 833, - [1698] = 843, - [1699] = 1699, - [1700] = 845, - [1701] = 829, - [1702] = 1702, - [1703] = 835, - [1704] = 836, - [1705] = 864, - [1706] = 1706, - [1707] = 857, - [1708] = 847, - [1709] = 851, - [1710] = 826, - [1711] = 829, - [1712] = 832, - [1713] = 833, - [1714] = 838, - [1715] = 840, - [1716] = 857, - [1717] = 858, - [1718] = 843, - [1719] = 1719, - [1720] = 1720, - [1721] = 835, - [1722] = 837, - [1723] = 838, - [1724] = 845, - [1725] = 840, - [1726] = 843, - [1727] = 845, - [1728] = 847, - [1729] = 838, - [1730] = 847, - [1731] = 840, - [1732] = 843, - [1733] = 845, - [1734] = 847, - [1735] = 851, - [1736] = 857, - [1737] = 858, - [1738] = 851, - [1739] = 837, - [1740] = 861, - [1741] = 862, - [1742] = 1483, - [1743] = 865, - [1744] = 851, - [1745] = 828, - [1746] = 857, - [1747] = 959, - [1748] = 829, - [1749] = 884, - [1750] = 835, - [1751] = 858, - [1752] = 865, - [1753] = 884, - [1754] = 861, - [1755] = 837, - [1756] = 832, - [1757] = 833, - [1758] = 861, - [1759] = 864, - [1760] = 857, - [1761] = 826, - [1762] = 829, - [1763] = 862, - [1764] = 838, - [1765] = 840, - [1766] = 843, - [1767] = 845, - [1768] = 847, - [1769] = 851, - [1770] = 857, - [1771] = 858, - [1772] = 837, - [1773] = 861, - [1774] = 862, - [1775] = 828, - [1776] = 858, - [1777] = 862, - [1778] = 832, - [1779] = 833, - [1780] = 838, - [1781] = 840, + [1580] = 830, + [1581] = 829, + [1582] = 830, + [1583] = 829, + [1584] = 830, + [1585] = 829, + [1586] = 830, + [1587] = 829, + [1588] = 830, + [1589] = 829, + [1590] = 830, + [1591] = 829, + [1592] = 830, + [1593] = 829, + [1594] = 830, + [1595] = 829, + [1596] = 830, + [1597] = 829, + [1598] = 830, + [1599] = 829, + [1600] = 830, + [1601] = 829, + [1602] = 829, + [1603] = 830, + [1604] = 839, + [1605] = 830, + [1606] = 1606, + [1607] = 1607, + [1608] = 832, + [1609] = 835, + [1610] = 869, + [1611] = 875, + [1612] = 876, + [1613] = 826, + [1614] = 861, + [1615] = 833, + [1616] = 834, + [1617] = 840, + [1618] = 841, + [1619] = 842, + [1620] = 843, + [1621] = 844, + [1622] = 845, + [1623] = 846, + [1624] = 847, + [1625] = 848, + [1626] = 849, + [1627] = 850, + [1628] = 851, + [1629] = 854, + [1630] = 839, + [1631] = 833, + [1632] = 834, + [1633] = 840, + [1634] = 841, + [1635] = 842, + [1636] = 843, + [1637] = 844, + [1638] = 845, + [1639] = 846, + [1640] = 847, + [1641] = 848, + [1642] = 849, + [1643] = 850, + [1644] = 851, + [1645] = 854, + [1646] = 839, + [1647] = 840, + [1648] = 841, + [1649] = 842, + [1650] = 843, + [1651] = 844, + [1652] = 845, + [1653] = 846, + [1654] = 847, + [1655] = 848, + [1656] = 849, + [1657] = 850, + [1658] = 854, + [1659] = 833, + [1660] = 834, + [1661] = 861, + [1662] = 851, + [1663] = 839, + [1664] = 833, + [1665] = 834, + [1666] = 840, + [1667] = 841, + [1668] = 842, + [1669] = 843, + [1670] = 844, + [1671] = 845, + [1672] = 846, + [1673] = 847, + [1674] = 833, + [1675] = 848, + [1676] = 849, + [1677] = 850, + [1678] = 851, + [1679] = 834, + [1680] = 854, + [1681] = 839, + [1682] = 840, + [1683] = 841, + [1684] = 833, + [1685] = 834, + [1686] = 842, + [1687] = 851, + [1688] = 843, + [1689] = 839, + [1690] = 840, + [1691] = 841, + [1692] = 842, + [1693] = 843, + [1694] = 844, + [1695] = 845, + [1696] = 846, + [1697] = 847, + [1698] = 848, + [1699] = 849, + [1700] = 850, + [1701] = 854, + [1702] = 833, + [1703] = 834, + [1704] = 844, + [1705] = 845, + [1706] = 851, + [1707] = 846, + [1708] = 839, + [1709] = 840, + [1710] = 841, + [1711] = 842, + [1712] = 843, + [1713] = 844, + [1714] = 845, + [1715] = 846, + [1716] = 847, + [1717] = 848, + [1718] = 849, + [1719] = 850, + [1720] = 854, + [1721] = 847, + [1722] = 833, + [1723] = 834, + [1724] = 851, + [1725] = 829, + [1726] = 848, + [1727] = 852, + [1728] = 849, + [1729] = 850, + [1730] = 860, + [1731] = 829, + [1732] = 851, + [1733] = 829, + [1734] = 854, + [1735] = 829, + [1736] = 829, + [1737] = 861, + [1738] = 1606, + [1739] = 1607, + [1740] = 832, + [1741] = 835, + [1742] = 869, + [1743] = 875, + [1744] = 876, + [1745] = 839, + [1746] = 829, + [1747] = 833, + [1748] = 834, + [1749] = 1606, + [1750] = 1607, + [1751] = 832, + [1752] = 835, + [1753] = 869, + [1754] = 875, + [1755] = 876, + [1756] = 840, + [1757] = 841, + [1758] = 842, + [1759] = 843, + [1760] = 844, + [1761] = 845, + [1762] = 846, + [1763] = 847, + [1764] = 1606, + [1765] = 875, + [1766] = 876, + [1767] = 848, + [1768] = 849, + [1769] = 850, + [1770] = 851, + [1771] = 1606, + [1772] = 875, + [1773] = 876, + [1774] = 854, + [1775] = 861, + [1776] = 839, + [1777] = 833, + [1778] = 834, + [1779] = 840, + [1780] = 841, + [1781] = 842, [1782] = 843, - [1783] = 845, - [1784] = 847, - [1785] = 851, - [1786] = 857, - [1787] = 858, - [1788] = 864, - [1789] = 837, - [1790] = 861, - [1791] = 862, - [1792] = 864, - [1793] = 837, - [1794] = 828, - [1795] = 865, - [1796] = 829, - [1797] = 861, - [1798] = 836, - [1799] = 862, - [1800] = 864, - [1801] = 864, - [1802] = 828, - [1803] = 835, - [1804] = 828, - [1805] = 1476, - [1806] = 1806, - [1807] = 832, - [1808] = 865, - [1809] = 884, - [1810] = 832, - [1811] = 833, - [1812] = 1690, - [1813] = 864, - [1814] = 833, - [1815] = 829, - [1816] = 838, - [1817] = 840, - [1818] = 843, - [1819] = 845, - [1820] = 847, - [1821] = 851, - [1822] = 857, - [1823] = 858, - [1824] = 837, - [1825] = 861, - [1826] = 862, - [1827] = 828, - [1828] = 858, - [1829] = 884, - [1830] = 1694, - [1831] = 865, - [1832] = 884, - [1833] = 1833, - [1834] = 835, - [1835] = 835, - [1836] = 835, - [1837] = 1483, - [1838] = 1838, - [1839] = 1839, - [1840] = 864, - [1841] = 1841, - [1842] = 826, - [1843] = 828, - [1844] = 829, - [1845] = 832, - [1846] = 1483, - [1847] = 833, - [1848] = 959, - [1849] = 838, - [1850] = 1003, - [1851] = 840, - [1852] = 843, - [1853] = 1483, - [1854] = 1324, - [1855] = 959, - [1856] = 1386, - [1857] = 845, - [1858] = 1483, - [1859] = 829, - [1860] = 1483, - [1861] = 847, - [1862] = 1483, - [1863] = 1863, - [1864] = 865, - [1865] = 851, - [1866] = 1483, - [1867] = 857, - [1868] = 884, - [1869] = 1692, - [1870] = 1483, - [1871] = 858, - [1872] = 1720, - [1873] = 1483, - [1874] = 1483, - [1875] = 1483, - [1876] = 1876, - [1877] = 1483, - [1878] = 1878, - [1879] = 1483, - [1880] = 1483, - [1881] = 1483, - [1882] = 1483, - [1883] = 1483, - [1884] = 1483, - [1885] = 1483, - [1886] = 1841, - [1887] = 1073, - [1888] = 1477, - [1889] = 837, - [1890] = 861, - [1891] = 1073, - [1892] = 1073, - [1893] = 1073, - [1894] = 1073, - [1895] = 1895, - [1896] = 862, - [1897] = 1483, - [1898] = 835, - [1899] = 836, - [1900] = 838, + [1783] = 844, + [1784] = 845, + [1785] = 846, + [1786] = 847, + [1787] = 1606, + [1788] = 848, + [1789] = 849, + [1790] = 850, + [1791] = 851, + [1792] = 1792, + [1793] = 854, + [1794] = 1794, + [1795] = 840, + [1796] = 839, + [1797] = 841, + [1798] = 842, + [1799] = 843, + [1800] = 844, + [1801] = 845, + [1802] = 846, + [1803] = 847, + [1804] = 848, + [1805] = 849, + [1806] = 850, + [1807] = 826, + [1808] = 852, + [1809] = 854, + [1810] = 1810, + [1811] = 839, + [1812] = 860, + [1813] = 829, + [1814] = 852, + [1815] = 860, + [1816] = 833, + [1817] = 834, + [1818] = 851, + [1819] = 861, + [1820] = 839, + [1821] = 840, + [1822] = 841, + [1823] = 842, + [1824] = 843, + [1825] = 844, + [1826] = 845, + [1827] = 846, + [1828] = 847, + [1829] = 848, + [1830] = 849, + [1831] = 850, + [1832] = 854, + [1833] = 833, + [1834] = 834, + [1835] = 840, + [1836] = 841, + [1837] = 842, + [1838] = 843, + [1839] = 844, + [1840] = 845, + [1841] = 846, + [1842] = 847, + [1843] = 848, + [1844] = 849, + [1845] = 850, + [1846] = 851, + [1847] = 854, + [1848] = 839, + [1849] = 1849, + [1850] = 1810, + [1851] = 829, + [1852] = 864, + [1853] = 852, + [1854] = 860, + [1855] = 833, + [1856] = 834, + [1857] = 851, + [1858] = 839, + [1859] = 840, + [1860] = 841, + [1861] = 842, + [1862] = 843, + [1863] = 844, + [1864] = 845, + [1865] = 846, + [1866] = 847, + [1867] = 848, + [1868] = 849, + [1869] = 850, + [1870] = 854, + [1871] = 852, + [1872] = 860, + [1873] = 1607, + [1874] = 829, + [1875] = 829, + [1876] = 829, + [1877] = 826, + [1878] = 826, + [1879] = 1810, + [1880] = 826, + [1881] = 1810, + [1882] = 826, + [1883] = 826, + [1884] = 826, + [1885] = 826, + [1886] = 826, + [1887] = 826, + [1888] = 826, + [1889] = 826, + [1890] = 826, + [1891] = 826, + [1892] = 826, + [1893] = 826, + [1894] = 826, + [1895] = 826, + [1896] = 827, + [1897] = 827, + [1898] = 827, + [1899] = 827, + [1900] = 834, [1901] = 1901, [1902] = 1902, - [1903] = 1902, - [1904] = 1901, + [1903] = 1901, + [1904] = 1902, [1905] = 1902, [1906] = 1901, [1907] = 1907, @@ -6673,18 +6655,18 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1918] = 1918, [1919] = 1919, [1920] = 1920, - [1921] = 1914, - [1922] = 1913, + [1921] = 1913, + [1922] = 1914, [1923] = 1923, [1924] = 1924, [1925] = 1925, - [1926] = 1916, + [1926] = 1920, [1927] = 1927, [1928] = 1928, [1929] = 1929, [1930] = 1930, [1931] = 1931, - [1932] = 1932, + [1932] = 1928, [1933] = 1933, [1934] = 1934, [1935] = 1935, @@ -6696,18 +6678,18 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1941] = 1941, [1942] = 1942, [1943] = 1943, - [1944] = 1927, + [1944] = 1944, [1945] = 1945, [1946] = 1946, - [1947] = 1947, + [1947] = 1927, [1948] = 1948, - [1949] = 1949, - [1950] = 1925, + [1949] = 1924, + [1950] = 1950, [1951] = 1951, [1952] = 1952, [1953] = 1953, [1954] = 1954, - [1955] = 1928, + [1955] = 1955, [1956] = 1956, [1957] = 1957, [1958] = 1958, @@ -6715,11 +6697,11 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1960] = 1960, [1961] = 1961, [1962] = 1962, - [1963] = 1923, - [1964] = 1964, + [1963] = 1963, + [1964] = 1923, [1965] = 1965, [1966] = 1966, - [1967] = 1924, + [1967] = 1967, [1968] = 1968, [1969] = 1969, [1970] = 1970, @@ -6731,7 +6713,7 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1976] = 1976, [1977] = 1977, [1978] = 1978, - [1979] = 1979, + [1979] = 1925, [1980] = 1980, [1981] = 1981, [1982] = 1982, @@ -6757,144 +6739,144 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [2002] = 2002, [2003] = 2003, [2004] = 2004, - [2005] = 2005, - [2006] = 2006, - [2007] = 2007, - [2008] = 1957, - [2009] = 1974, - [2010] = 1978, - [2011] = 1961, - [2012] = 1931, - [2013] = 1934, - [2014] = 1941, - [2015] = 1914, - [2016] = 1913, - [2017] = 2017, - [2018] = 1942, - [2019] = 1929, - [2020] = 1975, - [2021] = 1979, - [2022] = 1953, - [2023] = 1966, - [2024] = 1930, - [2025] = 1947, - [2026] = 1968, - [2027] = 1939, - [2028] = 1959, - [2029] = 1943, - [2030] = 1962, - [2031] = 1956, - [2032] = 1973, - [2033] = 1976, - [2034] = 1977, - [2035] = 1935, - [2036] = 1964, - [2037] = 1970, - [2038] = 1936, - [2039] = 1938, - [2040] = 1949, - [2041] = 1951, - [2042] = 1932, - [2043] = 1971, - [2044] = 1940, - [2045] = 1948, - [2046] = 1960, - [2047] = 1952, - [2048] = 1954, - [2049] = 1937, - [2050] = 1958, - [2051] = 1969, - [2052] = 1965, - [2053] = 1946, - [2054] = 1972, - [2055] = 1933, - [2056] = 1945, - [2057] = 1992, - [2058] = 2003, - [2059] = 2059, - [2060] = 2005, - [2061] = 1981, - [2062] = 2001, - [2063] = 2063, - [2064] = 1984, + [2005] = 1978, + [2006] = 1971, + [2007] = 1968, + [2008] = 1931, + [2009] = 1953, + [2010] = 1960, + [2011] = 1933, + [2012] = 1941, + [2013] = 1965, + [2014] = 1961, + [2015] = 1946, + [2016] = 1959, + [2017] = 1967, + [2018] = 1962, + [2019] = 1973, + [2020] = 1930, + [2021] = 1974, + [2022] = 1939, + [2023] = 1972, + [2024] = 1937, + [2025] = 1938, + [2026] = 1948, + [2027] = 1935, + [2028] = 1914, + [2029] = 1944, + [2030] = 1940, + [2031] = 1942, + [2032] = 1952, + [2033] = 1951, + [2034] = 1929, + [2035] = 1913, + [2036] = 1969, + [2037] = 2037, + [2038] = 1934, + [2039] = 1975, + [2040] = 1936, + [2041] = 1945, + [2042] = 1970, + [2043] = 1956, + [2044] = 1958, + [2045] = 1954, + [2046] = 1955, + [2047] = 1977, + [2048] = 1966, + [2049] = 1976, + [2050] = 1963, + [2051] = 1950, + [2052] = 1943, + [2053] = 1957, + [2054] = 1997, + [2055] = 1986, + [2056] = 1992, + [2057] = 1989, + [2058] = 2002, + [2059] = 1994, + [2060] = 1995, + [2061] = 1999, + [2062] = 1983, + [2063] = 2004, + [2064] = 2064, [2065] = 2065, - [2066] = 1989, - [2067] = 1995, + [2066] = 1981, + [2067] = 1996, [2068] = 1985, - [2069] = 1982, - [2070] = 1990, + [2069] = 1984, + [2070] = 2000, [2071] = 1987, - [2072] = 1916, - [2073] = 1996, - [2074] = 2004, - [2075] = 1986, - [2076] = 1988, - [2077] = 2006, - [2078] = 1997, - [2079] = 2079, - [2080] = 2002, - [2081] = 1998, - [2082] = 1999, - [2083] = 1980, - [2084] = 1991, - [2085] = 2000, - [2086] = 1993, - [2087] = 1983, - [2088] = 1925, - [2089] = 1924, - [2090] = 1928, - [2091] = 1927, - [2092] = 1923, - [2093] = 2093, - [2094] = 1970, - [2095] = 1969, - [2096] = 1975, - [2097] = 1979, - [2098] = 1953, - [2099] = 1930, - [2100] = 1947, - [2101] = 1956, - [2102] = 1973, - [2103] = 1976, - [2104] = 1977, - [2105] = 1935, - [2106] = 1971, - [2107] = 1937, - [2108] = 1946, - [2109] = 1960, - [2110] = 1974, - [2111] = 1978, - [2112] = 1961, - [2113] = 1931, - [2114] = 1934, - [2115] = 1941, - [2116] = 1942, - [2117] = 1933, - [2118] = 1957, - [2119] = 1966, - [2120] = 1968, + [2072] = 1990, + [2073] = 2001, + [2074] = 1993, + [2075] = 2075, + [2076] = 1980, + [2077] = 2077, + [2078] = 2003, + [2079] = 1920, + [2080] = 1982, + [2081] = 1988, + [2082] = 1927, + [2083] = 1925, + [2084] = 1924, + [2085] = 1923, + [2086] = 1928, + [2087] = 2087, + [2088] = 1955, + [2089] = 1967, + [2090] = 1954, + [2091] = 1970, + [2092] = 1972, + [2093] = 1948, + [2094] = 1966, + [2095] = 1929, + [2096] = 1969, + [2097] = 1962, + [2098] = 1963, + [2099] = 1943, + [2100] = 1965, + [2101] = 1958, + [2102] = 1959, + [2103] = 1968, + [2104] = 1961, + [2105] = 1973, + [2106] = 1975, + [2107] = 1950, + [2108] = 1978, + [2109] = 1956, + [2110] = 1951, + [2111] = 1960, + [2112] = 1941, + [2113] = 1971, + [2114] = 1977, + [2115] = 1946, + [2116] = 1957, + [2117] = 1976, + [2118] = 1953, + [2119] = 1934, + [2120] = 1930, [2121] = 1939, - [2122] = 1959, - [2123] = 1972, - [2124] = 1943, - [2125] = 1945, - [2126] = 1962, - [2127] = 1965, - [2128] = 1964, - [2129] = 1936, - [2130] = 1938, - [2131] = 1949, - [2132] = 1951, - [2133] = 1932, - [2134] = 1940, - [2135] = 1948, - [2136] = 1952, - [2137] = 1954, - [2138] = 1958, - [2139] = 1929, - [2140] = 2093, + [2122] = 1931, + [2123] = 1936, + [2124] = 1945, + [2125] = 1933, + [2126] = 1944, + [2127] = 1937, + [2128] = 1938, + [2129] = 1935, + [2130] = 1940, + [2131] = 1952, + [2132] = 1942, + [2133] = 1974, + [2134] = 2134, + [2135] = 2087, + [2136] = 2037, + [2137] = 2137, + [2138] = 2138, + [2139] = 2139, + [2140] = 2140, [2141] = 2141, - [2142] = 2017, + [2142] = 2142, [2143] = 2143, [2144] = 2144, [2145] = 2145, @@ -6913,263 +6895,263 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [2158] = 2158, [2159] = 2159, [2160] = 2160, - [2161] = 2161, - [2162] = 2162, + [2161] = 2160, + [2162] = 2160, [2163] = 2163, - [2164] = 2164, - [2165] = 2165, - [2166] = 2166, - [2167] = 2165, - [2168] = 2165, + [2164] = 2160, + [2165] = 2163, + [2166] = 2160, + [2167] = 2160, + [2168] = 2168, [2169] = 2169, - [2170] = 2165, - [2171] = 2169, - [2172] = 2165, - [2173] = 2165, + [2170] = 2170, + [2171] = 2171, + [2172] = 2160, + [2173] = 2173, [2174] = 2174, [2175] = 2175, - [2176] = 2165, - [2177] = 2177, - [2178] = 2165, + [2176] = 2176, + [2177] = 2160, + [2178] = 2173, [2179] = 2179, [2180] = 2180, [2181] = 2181, - [2182] = 2182, - [2183] = 2183, + [2182] = 2163, + [2183] = 2181, [2184] = 2184, - [2185] = 2185, - [2186] = 2179, + [2185] = 2184, + [2186] = 2181, [2187] = 2187, - [2188] = 2187, - [2189] = 2189, - [2190] = 2190, - [2191] = 2189, - [2192] = 2169, + [2188] = 2181, + [2189] = 2180, + [2190] = 2163, + [2191] = 2181, + [2192] = 2163, [2193] = 2187, - [2194] = 2187, - [2195] = 2185, + [2194] = 2181, + [2195] = 2195, [2196] = 2187, - [2197] = 2190, - [2198] = 2198, - [2199] = 2187, - [2200] = 2169, - [2201] = 2169, - [2202] = 2165, - [2203] = 2165, - [2204] = 2190, - [2205] = 1902, - [2206] = 2206, - [2207] = 2185, - [2208] = 2165, + [2197] = 1902, + [2198] = 2160, + [2199] = 2160, + [2200] = 2163, + [2201] = 2201, + [2202] = 2173, + [2203] = 2163, + [2204] = 2180, + [2205] = 2163, + [2206] = 2160, + [2207] = 2207, + [2208] = 2163, [2209] = 2209, - [2210] = 2169, - [2211] = 2169, - [2212] = 2209, - [2213] = 2169, - [2214] = 2179, - [2215] = 2215, - [2216] = 2216, - [2217] = 2169, - [2218] = 2218, - [2219] = 2169, - [2220] = 2169, - [2221] = 2169, - [2222] = 2222, - [2223] = 2169, - [2224] = 2165, - [2225] = 2190, - [2226] = 2179, - [2227] = 2185, - [2228] = 2187, - [2229] = 2229, - [2230] = 2189, - [2231] = 2231, - [2232] = 2185, - [2233] = 2190, - [2234] = 2189, - [2235] = 2165, - [2236] = 2187, - [2237] = 2237, - [2238] = 2237, - [2239] = 2174, - [2240] = 2175, - [2241] = 2175, - [2242] = 2231, + [2210] = 2210, + [2211] = 2211, + [2212] = 2187, + [2213] = 2213, + [2214] = 2160, + [2215] = 2163, + [2216] = 2180, + [2217] = 2163, + [2218] = 2163, + [2219] = 2173, + [2220] = 2181, + [2221] = 2221, + [2222] = 2163, + [2223] = 2187, + [2224] = 2184, + [2225] = 2184, + [2226] = 2169, + [2227] = 2180, + [2228] = 2228, + [2229] = 2168, + [2230] = 2228, + [2231] = 2181, + [2232] = 2232, + [2233] = 2160, + [2234] = 2168, + [2235] = 2228, + [2236] = 2232, + [2237] = 2173, + [2238] = 2187, + [2239] = 2228, + [2240] = 2240, + [2241] = 2169, + [2242] = 2173, [2243] = 2179, - [2244] = 2244, - [2245] = 2174, - [2246] = 2179, - [2247] = 2190, - [2248] = 2184, - [2249] = 2237, - [2250] = 2237, - [2251] = 2251, - [2252] = 2189, - [2253] = 2174, - [2254] = 2175, - [2255] = 2190, - [2256] = 2189, + [2244] = 2180, + [2245] = 2169, + [2246] = 2174, + [2247] = 2181, + [2248] = 2175, + [2249] = 2249, + [2250] = 2181, + [2251] = 2176, + [2252] = 2168, + [2253] = 2240, + [2254] = 2181, + [2255] = 2181, + [2256] = 2187, [2257] = 2257, - [2258] = 2179, - [2259] = 2187, - [2260] = 2190, - [2261] = 2187, - [2262] = 2190, + [2258] = 2184, + [2259] = 2259, + [2260] = 2173, + [2261] = 2173, + [2262] = 2170, [2263] = 2187, - [2264] = 2264, - [2265] = 2185, - [2266] = 2187, - [2267] = 2179, - [2268] = 2187, - [2269] = 2181, - [2270] = 2183, - [2271] = 2271, - [2272] = 2182, - [2273] = 2180, - [2274] = 2177, - [2275] = 2244, - [2276] = 2251, - [2277] = 2189, - [2278] = 2278, - [2279] = 2189, - [2280] = 2187, - [2281] = 2165, - [2282] = 2264, - [2283] = 2185, - [2284] = 2189, - [2285] = 2271, - [2286] = 2286, - [2287] = 2287, - [2288] = 2185, - [2289] = 2187, - [2290] = 2290, - [2291] = 2291, - [2292] = 2187, - [2293] = 2244, - [2294] = 2294, - [2295] = 2187, - [2296] = 2189, - [2297] = 2185, - [2298] = 2298, - [2299] = 2299, - [2300] = 2189, - [2301] = 2187, - [2302] = 2302, - [2303] = 2190, - [2304] = 2165, - [2305] = 2190, + [2264] = 2181, + [2265] = 2187, + [2266] = 2171, + [2267] = 2267, + [2268] = 2184, + [2269] = 2259, + [2270] = 2184, + [2271] = 2184, + [2272] = 2180, + [2273] = 2273, + [2274] = 2181, + [2275] = 2257, + [2276] = 2180, + [2277] = 2277, + [2278] = 2181, + [2279] = 2279, + [2280] = 2249, + [2281] = 2281, + [2282] = 2282, + [2283] = 2160, + [2284] = 2181, + [2285] = 2184, + [2286] = 2187, + [2287] = 2181, + [2288] = 2184, + [2289] = 2289, + [2290] = 2184, + [2291] = 2184, + [2292] = 2240, + [2293] = 2181, + [2294] = 2187, + [2295] = 2160, + [2296] = 2187, + [2297] = 2297, + [2298] = 2181, + [2299] = 2181, + [2300] = 2300, + [2301] = 2240, + [2302] = 2181, + [2303] = 2181, + [2304] = 2304, + [2305] = 2180, [2306] = 2187, - [2307] = 2244, - [2308] = 2187, - [2309] = 2187, - [2310] = 2187, + [2307] = 2307, + [2308] = 2184, + [2309] = 2309, + [2310] = 2181, [2311] = 2311, - [2312] = 2190, - [2313] = 2190, - [2314] = 2189, - [2315] = 2315, - [2316] = 2190, - [2317] = 2317, - [2318] = 2318, - [2319] = 2190, - [2320] = 2165, + [2312] = 2181, + [2313] = 2259, + [2314] = 2181, + [2315] = 2289, + [2316] = 2316, + [2317] = 2181, + [2318] = 2160, + [2319] = 2184, + [2320] = 2181, [2321] = 2187, - [2322] = 2189, - [2323] = 2187, - [2324] = 2189, - [2325] = 2187, - [2326] = 2187, - [2327] = 2187, - [2328] = 2187, - [2329] = 2187, - [2330] = 2302, - [2331] = 2187, - [2332] = 2187, - [2333] = 2264, - [2334] = 2298, - [2335] = 2189, - [2336] = 2336, - [2337] = 2165, - [2338] = 2189, - [2339] = 2187, - [2340] = 2340, - [2341] = 2341, - [2342] = 2294, - [2343] = 2343, - [2344] = 2344, - [2345] = 2189, - [2346] = 2299, - [2347] = 2347, - [2348] = 2264, - [2349] = 2189, - [2350] = 2189, - [2351] = 2257, - [2352] = 2189, - [2353] = 2165, - [2354] = 2165, - [2355] = 2165, - [2356] = 2356, - [2357] = 2190, - [2358] = 2356, - [2359] = 2359, - [2360] = 2187, - [2361] = 2175, - [2362] = 2190, - [2363] = 2187, - [2364] = 2174, - [2365] = 2365, - [2366] = 2184, - [2367] = 2185, - [2368] = 2237, - [2369] = 2190, - [2370] = 2165, - [2371] = 2165, - [2372] = 2190, + [2322] = 2181, + [2323] = 2184, + [2324] = 2307, + [2325] = 2181, + [2326] = 2304, + [2327] = 2184, + [2328] = 2184, + [2329] = 2160, + [2330] = 2184, + [2331] = 2331, + [2332] = 2259, + [2333] = 2267, + [2334] = 2334, + [2335] = 2181, + [2336] = 2184, + [2337] = 2337, + [2338] = 2300, + [2339] = 2339, + [2340] = 2184, + [2341] = 2181, + [2342] = 2342, + [2343] = 2181, + [2344] = 2187, + [2345] = 2345, + [2346] = 2181, + [2347] = 2179, + [2348] = 2160, + [2349] = 2187, + [2350] = 2169, + [2351] = 2351, + [2352] = 2352, + [2353] = 2181, + [2354] = 2168, + [2355] = 2355, + [2356] = 2352, + [2357] = 2160, + [2358] = 2160, + [2359] = 2187, + [2360] = 2180, + [2361] = 2187, + [2362] = 2187, + [2363] = 2181, + [2364] = 2181, + [2365] = 2176, + [2366] = 2179, + [2367] = 2187, + [2368] = 2181, + [2369] = 2181, + [2370] = 2181, + [2371] = 2371, + [2372] = 2228, [2373] = 2373, [2374] = 2374, - [2375] = 2190, - [2376] = 2190, - [2377] = 2184, - [2378] = 2378, - [2379] = 2379, + [2375] = 2375, + [2376] = 2187, + [2377] = 2377, + [2378] = 2181, + [2379] = 2187, [2380] = 2380, [2381] = 2381, - [2382] = 2187, - [2383] = 2187, - [2384] = 2190, - [2385] = 2187, - [2386] = 2386, + [2382] = 2228, + [2383] = 2383, + [2384] = 2170, + [2385] = 2174, + [2386] = 2187, [2387] = 2187, - [2388] = 2237, - [2389] = 2181, + [2388] = 2388, + [2389] = 2389, [2390] = 2390, - [2391] = 2231, - [2392] = 2231, - [2393] = 2393, - [2394] = 2394, - [2395] = 2190, - [2396] = 2390, - [2397] = 2190, - [2398] = 2187, - [2399] = 2182, - [2400] = 2237, - [2401] = 2180, - [2402] = 2177, - [2403] = 2165, - [2404] = 2190, - [2405] = 2374, - [2406] = 2187, - [2407] = 2407, - [2408] = 2187, - [2409] = 2237, - [2410] = 2187, + [2391] = 2181, + [2392] = 2392, + [2393] = 2160, + [2394] = 2228, + [2395] = 2171, + [2396] = 2228, + [2397] = 2397, + [2398] = 2232, + [2399] = 2175, + [2400] = 2160, + [2401] = 2232, + [2402] = 2402, + [2403] = 2181, + [2404] = 2187, + [2405] = 2160, + [2406] = 2406, + [2407] = 2371, + [2408] = 2408, + [2409] = 2409, + [2410] = 2410, [2411] = 2411, [2412] = 2412, [2413] = 2413, [2414] = 2414, [2415] = 2415, [2416] = 2416, - [2417] = 2183, + [2417] = 2417, [2418] = 2418, [2419] = 2419, [2420] = 2420, @@ -7178,412 +7160,412 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [2423] = 2423, [2424] = 2424, [2425] = 2425, - [2426] = 2421, - [2427] = 2182, - [2428] = 2428, - [2429] = 2429, - [2430] = 2430, - [2431] = 2165, - [2432] = 2432, - [2433] = 2433, - [2434] = 2165, - [2435] = 2177, - [2436] = 2165, - [2437] = 2181, - [2438] = 2165, - [2439] = 2165, - [2440] = 2440, - [2441] = 2165, - [2442] = 2442, - [2443] = 2165, - [2444] = 2183, - [2445] = 2445, + [2426] = 2426, + [2427] = 2427, + [2428] = 2410, + [2429] = 2410, + [2430] = 2160, + [2431] = 2170, + [2432] = 2171, + [2433] = 2174, + [2434] = 2175, + [2435] = 2176, + [2436] = 2436, + [2437] = 2169, + [2438] = 2160, + [2439] = 2168, + [2440] = 2160, + [2441] = 2160, + [2442] = 2160, + [2443] = 2160, + [2444] = 2160, + [2445] = 2160, [2446] = 2446, - [2447] = 2447, - [2448] = 2448, - [2449] = 2174, - [2450] = 2450, - [2451] = 2165, - [2452] = 2421, - [2453] = 2175, - [2454] = 2180, - [2455] = 2445, - [2456] = 2237, - [2457] = 2420, - [2458] = 2237, - [2459] = 2231, - [2460] = 2440, - [2461] = 2237, - [2462] = 2231, - [2463] = 2231, - [2464] = 2237, - [2465] = 2447, - [2466] = 2237, - [2467] = 2237, - [2468] = 2231, - [2469] = 2231, - [2470] = 2231, - [2471] = 2237, - [2472] = 2237, - [2473] = 2237, - [2474] = 2425, - [2475] = 2237, - [2476] = 2424, - [2477] = 2237, - [2478] = 2450, - [2479] = 2231, - [2480] = 2237, - [2481] = 2237, - [2482] = 2231, - [2483] = 2231, - [2484] = 2423, - [2485] = 2433, - [2486] = 2237, - [2487] = 2271, - [2488] = 2251, - [2489] = 2237, - [2490] = 2231, - [2491] = 2491, - [2492] = 2237, - [2493] = 2165, - [2494] = 2231, - [2495] = 2237, - [2496] = 2231, - [2497] = 2237, - [2498] = 2491, - [2499] = 2237, - [2500] = 2237, - [2501] = 2271, - [2502] = 2237, - [2503] = 2165, - [2504] = 2165, - [2505] = 2237, - [2506] = 2237, - [2507] = 2231, - [2508] = 2231, - [2509] = 2237, - [2510] = 2237, - [2511] = 2231, - [2512] = 2165, - [2513] = 2231, - [2514] = 2165, - [2515] = 2237, - [2516] = 2237, - [2517] = 2165, - [2518] = 2237, - [2519] = 2251, - [2520] = 2231, - [2521] = 2237, - [2522] = 2237, - [2523] = 2251, - [2524] = 2524, - [2525] = 2218, - [2526] = 2526, - [2527] = 2251, - [2528] = 2271, - [2529] = 2529, - [2530] = 2530, - [2531] = 2524, - [2532] = 2526, - [2533] = 2365, - [2534] = 2530, - [2535] = 2526, - [2536] = 2529, - [2537] = 2530, - [2538] = 2538, - [2539] = 2529, - [2540] = 2524, - [2541] = 2526, - [2542] = 2530, - [2543] = 2271, - [2544] = 2524, - [2545] = 2538, - [2546] = 2365, - [2547] = 2529, - [2548] = 2291, - [2549] = 2538, - [2550] = 2538, - [2551] = 2298, - [2552] = 2294, - [2553] = 2251, - [2554] = 2299, - [2555] = 2294, - [2556] = 2251, - [2557] = 2298, - [2558] = 2299, - [2559] = 2271, - [2560] = 2560, - [2561] = 2302, - [2562] = 2271, - [2563] = 2302, - [2564] = 2359, - [2565] = 2251, - [2566] = 2271, - [2567] = 2271, - [2568] = 2271, - [2569] = 2184, - [2570] = 2302, - [2571] = 2175, - [2572] = 2271, - [2573] = 2299, - [2574] = 2251, - [2575] = 2271, - [2576] = 2251, - [2577] = 1976, - [2578] = 2174, - [2579] = 2271, - [2580] = 2271, - [2581] = 2359, - [2582] = 2251, - [2583] = 2251, - [2584] = 2251, - [2585] = 2271, - [2586] = 2218, - [2587] = 2251, - [2588] = 2251, - [2589] = 2302, - [2590] = 2299, - [2591] = 2271, - [2592] = 2251, - [2593] = 2442, - [2594] = 2428, - [2595] = 2294, - [2596] = 1942, - [2597] = 2298, - [2598] = 2294, - [2599] = 2298, - [2600] = 1977, - [2601] = 2174, - [2602] = 2602, - [2603] = 2429, - [2604] = 2302, - [2605] = 2418, - [2606] = 2294, - [2607] = 2298, - [2608] = 2299, + [2447] = 2228, + [2448] = 2232, + [2449] = 2228, + [2450] = 2232, + [2451] = 2228, + [2452] = 2232, + [2453] = 2420, + [2454] = 2427, + [2455] = 2228, + [2456] = 2228, + [2457] = 2232, + [2458] = 2421, + [2459] = 2416, + [2460] = 2228, + [2461] = 2228, + [2462] = 2228, + [2463] = 2232, + [2464] = 2232, + [2465] = 2228, + [2466] = 2228, + [2467] = 2419, + [2468] = 2228, + [2469] = 2228, + [2470] = 2228, + [2471] = 2417, + [2472] = 2415, + [2473] = 2232, + [2474] = 2232, + [2475] = 2423, + [2476] = 2228, + [2477] = 2425, + [2478] = 2232, + [2479] = 2160, + [2480] = 2257, + [2481] = 2249, + [2482] = 2228, + [2483] = 2483, + [2484] = 2228, + [2485] = 2232, + [2486] = 2232, + [2487] = 2160, + [2488] = 2228, + [2489] = 2232, + [2490] = 2160, + [2491] = 2160, + [2492] = 2228, + [2493] = 2228, + [2494] = 2228, + [2495] = 2232, + [2496] = 2228, + [2497] = 2228, + [2498] = 2228, + [2499] = 2232, + [2500] = 2160, + [2501] = 2228, + [2502] = 2160, + [2503] = 2232, + [2504] = 2228, + [2505] = 2228, + [2506] = 2257, + [2507] = 2249, + [2508] = 2232, + [2509] = 2232, + [2510] = 2228, + [2511] = 2228, + [2512] = 2228, + [2513] = 2483, + [2514] = 2228, + [2515] = 2515, + [2516] = 2355, + [2517] = 2517, + [2518] = 2518, + [2519] = 2210, + [2520] = 2520, + [2521] = 2521, + [2522] = 2517, + [2523] = 2517, + [2524] = 2520, + [2525] = 2521, + [2526] = 2257, + [2527] = 2249, + [2528] = 2257, + [2529] = 2249, + [2530] = 2520, + [2531] = 2355, + [2532] = 2517, + [2533] = 2518, + [2534] = 2518, + [2535] = 2515, + [2536] = 2515, + [2537] = 2520, + [2538] = 2518, + [2539] = 2279, + [2540] = 2515, + [2541] = 2521, + [2542] = 2521, + [2543] = 2257, + [2544] = 2257, + [2545] = 2307, + [2546] = 2249, + [2547] = 2351, + [2548] = 2249, + [2549] = 2289, + [2550] = 2289, + [2551] = 2551, + [2552] = 2304, + [2553] = 2300, + [2554] = 2307, + [2555] = 2304, + [2556] = 2249, + [2557] = 2300, + [2558] = 2257, + [2559] = 2436, + [2560] = 2304, + [2561] = 2300, + [2562] = 2307, + [2563] = 2179, + [2564] = 2249, + [2565] = 2168, + [2566] = 2257, + [2567] = 2249, + [2568] = 2249, + [2569] = 2412, + [2570] = 1931, + [2571] = 2257, + [2572] = 1933, + [2573] = 2249, + [2574] = 2304, + [2575] = 2257, + [2576] = 2307, + [2577] = 2249, + [2578] = 2257, + [2579] = 2300, + [2580] = 2257, + [2581] = 2210, + [2582] = 2351, + [2583] = 2249, + [2584] = 2249, + [2585] = 2257, + [2586] = 1976, + [2587] = 2257, + [2588] = 2289, + [2589] = 2289, + [2590] = 2249, + [2591] = 2257, + [2592] = 2169, + [2593] = 2427, + [2594] = 2422, + [2595] = 2595, + [2596] = 2289, + [2597] = 2424, + [2598] = 2410, + [2599] = 2304, + [2600] = 2300, + [2601] = 2307, + [2602] = 2415, + [2603] = 2416, + [2604] = 2417, + [2605] = 2419, + [2606] = 2420, + [2607] = 2421, + [2608] = 2608, [2609] = 2423, - [2610] = 2420, - [2611] = 2611, - [2612] = 2447, - [2613] = 2433, - [2614] = 2445, - [2615] = 2424, - [2616] = 2421, - [2617] = 2617, - [2618] = 2440, - [2619] = 2450, - [2620] = 2425, - [2621] = 2421, - [2622] = 2421, - [2623] = 2419, - [2624] = 2184, - [2625] = 2299, - [2626] = 2174, - [2627] = 2175, - [2628] = 2418, - [2629] = 2185, - [2630] = 2630, - [2631] = 2302, - [2632] = 2294, - [2633] = 2298, - [2634] = 2299, - [2635] = 2181, - [2636] = 2183, - [2637] = 2446, - [2638] = 2394, - [2639] = 2182, - [2640] = 2180, - [2641] = 2177, - [2642] = 2393, - [2643] = 2175, - [2644] = 2174, - [2645] = 2175, - [2646] = 2184, - [2647] = 2647, + [2610] = 2425, + [2611] = 2410, + [2612] = 2381, + [2613] = 2389, + [2614] = 2410, + [2615] = 2411, + [2616] = 2616, + [2617] = 2307, + [2618] = 2179, + [2619] = 2169, + [2620] = 2168, + [2621] = 2621, + [2622] = 2180, + [2623] = 2289, + [2624] = 2304, + [2625] = 2300, + [2626] = 2307, + [2627] = 2170, + [2628] = 2171, + [2629] = 2174, + [2630] = 2424, + [2631] = 2175, + [2632] = 2176, + [2633] = 2633, + [2634] = 2426, + [2635] = 2169, + [2636] = 2168, + [2637] = 2637, + [2638] = 2169, + [2639] = 2168, + [2640] = 2640, + [2641] = 2641, + [2642] = 2179, + [2643] = 2289, + [2644] = 2304, + [2645] = 2300, + [2646] = 2646, + [2647] = 2410, [2648] = 2648, [2649] = 2649, - [2650] = 2302, - [2651] = 2294, - [2652] = 2298, + [2650] = 2420, + [2651] = 2651, + [2652] = 2652, [2653] = 2653, [2654] = 2654, [2655] = 2655, [2656] = 2656, [2657] = 2657, - [2658] = 2407, + [2658] = 2658, [2659] = 2659, [2660] = 2660, [2661] = 2661, - [2662] = 2302, - [2663] = 2412, - [2664] = 2413, - [2665] = 2440, + [2662] = 2662, + [2663] = 2663, + [2664] = 2664, + [2665] = 2421, [2666] = 2666, - [2667] = 2415, - [2668] = 2416, - [2669] = 2669, - [2670] = 2182, + [2667] = 1928, + [2668] = 2668, + [2669] = 2427, + [2670] = 2670, [2671] = 2671, - [2672] = 2450, - [2673] = 2411, - [2674] = 2003, - [2675] = 2005, - [2676] = 1985, - [2677] = 1981, - [2678] = 1990, - [2679] = 1987, - [2680] = 2680, - [2681] = 1996, - [2682] = 1984, - [2683] = 2683, - [2684] = 2684, + [2672] = 2672, + [2673] = 2673, + [2674] = 2674, + [2675] = 2289, + [2676] = 2676, + [2677] = 2677, + [2678] = 2678, + [2679] = 2679, + [2680] = 2304, + [2681] = 2681, + [2682] = 2682, + [2683] = 2300, + [2684] = 2307, [2685] = 2685, - [2686] = 2294, - [2687] = 2425, + [2686] = 2608, + [2687] = 2392, [2688] = 2688, - [2689] = 2689, - [2690] = 2690, - [2691] = 2302, + [2689] = 2087, + [2690] = 1984, + [2691] = 2371, [2692] = 2692, - [2693] = 2298, + [2693] = 2693, [2694] = 2694, - [2695] = 2294, - [2696] = 2298, - [2697] = 2180, - [2698] = 2299, - [2699] = 1986, - [2700] = 1988, - [2701] = 2701, - [2702] = 2414, - [2703] = 1980, - [2704] = 1991, - [2705] = 2000, - [2706] = 2336, + [2695] = 2695, + [2696] = 2371, + [2697] = 2697, + [2698] = 2170, + [2699] = 2171, + [2700] = 2170, + [2701] = 2316, + [2702] = 2702, + [2703] = 2703, + [2704] = 2174, + [2705] = 2705, + [2706] = 2410, [2707] = 2707, - [2708] = 2004, - [2709] = 2709, + [2708] = 2175, + [2709] = 2176, [2710] = 2710, [2711] = 2711, - [2712] = 2374, - [2713] = 2713, - [2714] = 2714, - [2715] = 2715, - [2716] = 2299, - [2717] = 2717, - [2718] = 2718, - [2719] = 2617, - [2720] = 2720, - [2721] = 2421, - [2722] = 2181, - [2723] = 2183, - [2724] = 2182, - [2725] = 2180, - [2726] = 2177, + [2712] = 2426, + [2713] = 2331, + [2714] = 2289, + [2715] = 2339, + [2716] = 2309, + [2717] = 2304, + [2718] = 1999, + [2719] = 2300, + [2720] = 2307, + [2721] = 2001, + [2722] = 1980, + [2723] = 1997, + [2724] = 1992, + [2725] = 1989, + [2726] = 1996, [2727] = 2727, [2728] = 2728, - [2729] = 2177, + [2729] = 2289, [2730] = 2730, - [2731] = 2302, - [2732] = 2294, - [2733] = 2733, + [2731] = 2304, + [2732] = 2300, + [2733] = 2307, [2734] = 2734, - [2735] = 2298, - [2736] = 2299, - [2737] = 2318, + [2735] = 2735, + [2736] = 2380, + [2737] = 2311, [2738] = 2738, - [2739] = 2302, - [2740] = 2294, - [2741] = 2741, - [2742] = 2298, - [2743] = 2299, - [2744] = 2744, - [2745] = 2344, - [2746] = 2746, - [2747] = 2423, - [2748] = 2302, - [2749] = 2749, - [2750] = 2750, + [2739] = 2289, + [2740] = 2304, + [2741] = 2300, + [2742] = 2307, + [2743] = 2169, + [2744] = 2390, + [2745] = 2168, + [2746] = 2171, + [2747] = 2397, + [2748] = 2423, + [2749] = 1924, + [2750] = 2000, [2751] = 2751, - [2752] = 2752, - [2753] = 2294, - [2754] = 2298, - [2755] = 2299, - [2756] = 2002, - [2757] = 2174, - [2758] = 1992, - [2759] = 2759, - [2760] = 1998, - [2761] = 2761, - [2762] = 2420, - [2763] = 2421, - [2764] = 2373, + [2752] = 2408, + [2753] = 2345, + [2754] = 2388, + [2755] = 2755, + [2756] = 2756, + [2757] = 2289, + [2758] = 2758, + [2759] = 2419, + [2760] = 2304, + [2761] = 2300, + [2762] = 2425, + [2763] = 2307, + [2764] = 2409, [2765] = 2765, - [2766] = 2429, - [2767] = 2378, - [2768] = 2379, - [2769] = 2380, + [2766] = 2766, + [2767] = 2767, + [2768] = 2768, + [2769] = 2289, [2770] = 2770, - [2771] = 2419, + [2771] = 2174, [2772] = 2772, - [2773] = 2302, - [2774] = 2447, - [2775] = 2294, - [2776] = 2298, - [2777] = 2386, - [2778] = 2299, - [2779] = 1989, - [2780] = 1995, + [2773] = 2773, + [2774] = 2774, + [2775] = 2775, + [2776] = 2776, + [2777] = 2777, + [2778] = 2778, + [2779] = 2779, + [2780] = 2780, [2781] = 2781, - [2782] = 2093, - [2783] = 2783, + [2782] = 2782, + [2783] = 2289, [2784] = 2784, - [2785] = 2374, - [2786] = 2302, - [2787] = 2294, - [2788] = 2298, - [2789] = 2299, - [2790] = 2181, - [2791] = 2347, - [2792] = 2302, - [2793] = 2294, - [2794] = 2298, - [2795] = 2299, - [2796] = 2796, - [2797] = 2797, - [2798] = 2798, - [2799] = 2446, - [2800] = 2317, - [2801] = 2340, - [2802] = 2341, - [2803] = 1997, - [2804] = 2315, + [2785] = 2304, + [2786] = 2300, + [2787] = 2307, + [2788] = 1990, + [2789] = 2374, + [2790] = 2304, + [2791] = 2791, + [2792] = 2289, + [2793] = 2793, + [2794] = 2300, + [2795] = 2304, + [2796] = 2300, + [2797] = 2307, + [2798] = 2175, + [2799] = 2003, + [2800] = 2800, + [2801] = 2801, + [2802] = 2802, + [2803] = 2342, + [2804] = 2804, [2805] = 2805, [2806] = 2806, - [2807] = 2421, - [2808] = 2433, + [2807] = 2807, + [2808] = 2808, [2809] = 2809, - [2810] = 2183, - [2811] = 2811, - [2812] = 2812, - [2813] = 2813, - [2814] = 2814, - [2815] = 2815, - [2816] = 2816, - [2817] = 2817, - [2818] = 2818, - [2819] = 2381, - [2820] = 1928, - [2821] = 2821, - [2822] = 2343, - [2823] = 2823, - [2824] = 2824, - [2825] = 2825, - [2826] = 2826, - [2827] = 2445, - [2828] = 2828, - [2829] = 2829, - [2830] = 2830, - [2831] = 2831, + [2810] = 2307, + [2811] = 2176, + [2812] = 2337, + [2813] = 2002, + [2814] = 2334, + [2815] = 2415, + [2816] = 2416, + [2817] = 2410, + [2818] = 1982, + [2819] = 1985, + [2820] = 1986, + [2821] = 2402, + [2822] = 2373, + [2823] = 2375, + [2824] = 2422, + [2825] = 2377, + [2826] = 1983, + [2827] = 2827, + [2828] = 1988, + [2829] = 2411, + [2830] = 2417, + [2831] = 2406, [2832] = 2832, [2833] = 2833, [2834] = 2834, @@ -7591,3418 +7573,3418 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [2836] = 2836, [2837] = 2837, [2838] = 2838, - [2839] = 2839, - [2840] = 2424, + [2839] = 2436, + [2840] = 2412, [2841] = 2841, - [2842] = 1927, + [2842] = 2413, [2843] = 2843, - [2844] = 2844, - [2845] = 2845, - [2846] = 2846, + [2844] = 2418, + [2845] = 2414, + [2846] = 2446, [2847] = 2847, [2848] = 2848, - [2849] = 2175, - [2850] = 2422, - [2851] = 2428, - [2852] = 2852, - [2853] = 2430, - [2854] = 2448, - [2855] = 2855, - [2856] = 2432, - [2857] = 2857, - [2858] = 2442, - [2859] = 2859, - [2860] = 2421, - [2861] = 2861, - [2862] = 2421, - [2863] = 2374, - [2864] = 2393, - [2865] = 2394, - [2866] = 2421, + [2849] = 2410, + [2850] = 2410, + [2851] = 2371, + [2852] = 2410, + [2853] = 2410, + [2854] = 2854, + [2855] = 2389, + [2856] = 2410, + [2857] = 2410, + [2858] = 2858, + [2859] = 2381, + [2860] = 2860, + [2861] = 2436, + [2862] = 2410, + [2863] = 2410, + [2864] = 2410, + [2865] = 1924, + [2866] = 2420, [2867] = 2867, - [2868] = 2421, - [2869] = 2421, - [2870] = 2421, - [2871] = 2440, - [2872] = 2450, - [2873] = 2428, + [2868] = 2868, + [2869] = 2869, + [2870] = 2412, + [2871] = 2871, + [2872] = 2872, + [2873] = 2410, [2874] = 2874, [2875] = 2875, [2876] = 2876, - [2877] = 2421, - [2878] = 2878, - [2879] = 2879, + [2877] = 2410, + [2878] = 1928, + [2879] = 2423, [2880] = 2880, - [2881] = 2421, - [2882] = 1927, - [2883] = 2425, - [2884] = 2421, - [2885] = 2421, - [2886] = 2442, - [2887] = 2421, - [2888] = 2421, - [2889] = 2421, - [2890] = 2421, - [2891] = 2891, - [2892] = 1928, - [2893] = 2445, - [2894] = 2374, + [2881] = 2371, + [2882] = 2410, + [2883] = 2410, + [2884] = 2427, + [2885] = 2425, + [2886] = 2410, + [2887] = 2424, + [2888] = 2888, + [2889] = 2422, + [2890] = 2890, + [2891] = 2180, + [2892] = 2419, + [2893] = 2893, + [2894] = 2894, [2895] = 2895, - [2896] = 2896, + [2896] = 2608, [2897] = 2897, - [2898] = 2418, - [2899] = 2447, - [2900] = 2184, - [2901] = 2185, - [2902] = 2433, - [2903] = 2174, - [2904] = 2175, - [2905] = 2905, - [2906] = 2906, - [2907] = 2907, + [2898] = 2169, + [2899] = 2179, + [2900] = 2168, + [2901] = 2416, + [2902] = 2902, + [2903] = 2421, + [2904] = 2904, + [2905] = 2417, + [2906] = 2415, + [2907] = 2402, [2908] = 2908, - [2909] = 2909, - [2910] = 2910, - [2911] = 2911, - [2912] = 2424, - [2913] = 2423, - [2914] = 2420, - [2915] = 2915, - [2916] = 2429, - [2917] = 2617, - [2918] = 2177, - [2919] = 2919, - [2920] = 2185, - [2921] = 2373, - [2922] = 2317, - [2923] = 2359, - [2924] = 2340, - [2925] = 2341, - [2926] = 2386, - [2927] = 2315, + [2909] = 2380, + [2910] = 2390, + [2911] = 2334, + [2912] = 2180, + [2913] = 2888, + [2914] = 2175, + [2915] = 2406, + [2916] = 2168, + [2917] = 2894, + [2918] = 2408, + [2919] = 2388, + [2920] = 2920, + [2921] = 2309, + [2922] = 2895, + [2923] = 2331, + [2924] = 2392, + [2925] = 2925, + [2926] = 2316, + [2927] = 2351, [2928] = 2928, - [2929] = 2181, - [2930] = 2183, - [2931] = 2182, - [2932] = 2180, - [2933] = 2915, - [2934] = 2934, - [2935] = 2347, - [2936] = 2381, - [2937] = 2378, - [2938] = 2859, - [2939] = 2343, - [2940] = 2407, - [2941] = 2941, - [2942] = 2909, - [2943] = 2174, - [2944] = 2380, - [2945] = 2175, - [2946] = 2905, - [2947] = 2412, - [2948] = 2413, - [2949] = 2911, - [2950] = 2415, - [2951] = 2416, - [2952] = 2336, - [2953] = 2411, - [2954] = 2954, - [2955] = 2955, + [2929] = 2929, + [2930] = 2169, + [2931] = 2342, + [2932] = 2179, + [2933] = 2171, + [2934] = 2373, + [2935] = 2176, + [2936] = 2936, + [2937] = 2937, + [2938] = 2841, + [2939] = 2409, + [2940] = 2339, + [2941] = 2397, + [2942] = 2375, + [2943] = 2377, + [2944] = 2890, + [2945] = 2311, + [2946] = 2345, + [2947] = 2337, + [2948] = 2174, + [2949] = 2949, + [2950] = 2170, + [2951] = 2951, + [2952] = 2334, + [2953] = 2953, + [2954] = 2409, + [2955] = 2890, [2956] = 2956, - [2957] = 2318, - [2958] = 2184, + [2957] = 2957, + [2958] = 2958, [2959] = 2959, - [2960] = 2344, - [2961] = 2379, + [2960] = 2960, + [2961] = 2961, [2962] = 2962, - [2963] = 2340, - [2964] = 2183, - [2965] = 2336, + [2963] = 2963, + [2964] = 2964, + [2965] = 2171, [2966] = 2966, [2967] = 2967, - [2968] = 2341, - [2969] = 2318, + [2968] = 2968, + [2969] = 2969, [2970] = 2970, [2971] = 2971, [2972] = 2972, [2973] = 2973, [2974] = 2974, [2975] = 2975, - [2976] = 2413, - [2977] = 2977, - [2978] = 2978, - [2979] = 2979, - [2980] = 2980, - [2981] = 2981, + [2976] = 2402, + [2977] = 2316, + [2978] = 2373, + [2979] = 2375, + [2980] = 2377, + [2981] = 1901, [2982] = 2982, [2983] = 2983, - [2984] = 2182, - [2985] = 2181, - [2986] = 2911, + [2984] = 2984, + [2985] = 2890, + [2986] = 2986, [2987] = 2987, [2988] = 2988, - [2989] = 2386, + [2989] = 2989, [2990] = 2990, - [2991] = 2315, - [2992] = 2378, + [2991] = 2991, + [2992] = 2992, [2993] = 2993, - [2994] = 2994, - [2995] = 2995, + [2994] = 1924, + [2995] = 1928, [2996] = 2996, - [2997] = 2180, + [2997] = 2997, [2998] = 2998, - [2999] = 2999, - [3000] = 3000, - [3001] = 3001, - [3002] = 2177, + [2999] = 2174, + [3000] = 2331, + [3001] = 2339, + [3002] = 3002, [3003] = 3003, - [3004] = 1901, + [3004] = 2309, [3005] = 3005, [3006] = 3006, - [3007] = 3007, - [3008] = 2416, + [3007] = 2388, + [3008] = 3008, [3009] = 3009, [3010] = 3010, [3011] = 3011, - [3012] = 2379, - [3013] = 2415, + [3012] = 3012, + [3013] = 3013, [3014] = 3014, - [3015] = 3015, + [3015] = 2406, [3016] = 3016, - [3017] = 1928, - [3018] = 2093, + [3017] = 3017, + [3018] = 2311, [3019] = 3019, - [3020] = 3020, - [3021] = 1927, + [3020] = 2175, + [3021] = 3021, [3022] = 3022, - [3023] = 2911, + [3023] = 3023, [3024] = 3024, [3025] = 3025, - [3026] = 2381, + [3026] = 3026, [3027] = 3027, - [3028] = 2411, - [3029] = 2373, - [3030] = 3030, + [3028] = 2087, + [3029] = 3029, + [3030] = 2170, [3031] = 3031, - [3032] = 3032, + [3032] = 2176, [3033] = 3033, [3034] = 3034, [3035] = 3035, - [3036] = 2407, + [3036] = 3036, [3037] = 3037, - [3038] = 2343, - [3039] = 3039, + [3038] = 2342, + [3039] = 2397, [3040] = 3040, [3041] = 3041, - [3042] = 2412, - [3043] = 2317, + [3042] = 3042, + [3043] = 3043, [3044] = 3044, - [3045] = 3045, - [3046] = 3046, + [3045] = 2345, + [3046] = 2337, [3047] = 3047, [3048] = 3048, - [3049] = 3049, + [3049] = 2392, [3050] = 3050, - [3051] = 3051, - [3052] = 3052, - [3053] = 3053, - [3054] = 2347, + [3051] = 2380, + [3052] = 2390, + [3053] = 2408, + [3054] = 3054, [3055] = 3055, - [3056] = 3056, - [3057] = 3057, - [3058] = 2380, - [3059] = 2344, - [3060] = 3060, - [3061] = 3061, - [3062] = 3062, - [3063] = 3063, - [3064] = 3064, + [3056] = 2970, + [3057] = 2963, + [3058] = 2984, + [3059] = 3019, + [3060] = 3026, + [3061] = 3025, + [3062] = 3016, + [3063] = 2991, + [3064] = 3013, [3065] = 3065, - [3066] = 3066, - [3067] = 3067, - [3068] = 3010, - [3069] = 2617, - [3070] = 3001, - [3071] = 3053, - [3072] = 2419, - [3073] = 3051, - [3074] = 3065, + [3066] = 2608, + [3067] = 3006, + [3068] = 2993, + [3069] = 2996, + [3070] = 3008, + [3071] = 3009, + [3072] = 3040, + [3073] = 2890, + [3074] = 3017, [3075] = 2966, - [3076] = 2967, - [3077] = 3061, - [3078] = 2996, - [3079] = 3062, - [3080] = 3006, - [3081] = 2993, - [3082] = 2999, - [3083] = 3046, - [3084] = 3014, - [3085] = 3019, - [3086] = 2970, - [3087] = 2446, - [3088] = 3000, - [3089] = 1901, - [3090] = 3055, - [3091] = 2973, - [3092] = 2911, - [3093] = 2980, - [3094] = 2981, - [3095] = 3056, - [3096] = 3066, - [3097] = 3045, - [3098] = 2983, - [3099] = 2987, - [3100] = 3100, - [3101] = 3016, - [3102] = 3025, - [3103] = 3064, - [3104] = 3063, - [3105] = 2988, - [3106] = 2962, - [3107] = 3031, - [3108] = 3052, - [3109] = 2911, - [3110] = 3033, - [3111] = 3020, - [3112] = 3037, - [3113] = 2975, - [3114] = 3049, - [3115] = 3057, - [3116] = 3050, - [3117] = 3027, - [3118] = 3022, - [3119] = 2093, - [3120] = 2911, - [3121] = 2617, - [3122] = 2911, - [3123] = 3123, - [3124] = 3124, - [3125] = 2911, - [3126] = 2425, - [3127] = 2891, - [3128] = 3128, - [3129] = 2359, - [3130] = 3130, - [3131] = 2861, - [3132] = 2891, - [3133] = 2185, - [3134] = 2911, - [3135] = 2617, - [3136] = 2911, - [3137] = 3137, - [3138] = 2956, + [3076] = 3055, + [3077] = 3023, + [3078] = 3024, + [3079] = 3043, + [3080] = 2974, + [3081] = 2973, + [3082] = 3048, + [3083] = 3014, + [3084] = 2972, + [3085] = 2990, + [3086] = 2411, + [3087] = 2986, + [3088] = 3021, + [3089] = 2967, + [3090] = 3022, + [3091] = 1901, + [3092] = 2983, + [3093] = 3010, + [3094] = 2968, + [3095] = 2969, + [3096] = 3027, + [3097] = 3011, + [3098] = 2971, + [3099] = 2975, + [3100] = 2890, + [3101] = 2992, + [3102] = 3035, + [3103] = 3002, + [3104] = 3104, + [3105] = 3012, + [3106] = 2960, + [3107] = 2426, + [3108] = 3108, + [3109] = 2890, + [3110] = 2890, + [3111] = 3111, + [3112] = 2608, + [3113] = 2087, + [3114] = 3114, + [3115] = 2890, + [3116] = 2871, + [3117] = 3117, + [3118] = 2427, + [3119] = 2351, + [3120] = 2168, + [3121] = 3121, + [3122] = 2169, + [3123] = 2893, + [3124] = 2179, + [3125] = 2888, + [3126] = 2890, + [3127] = 2608, + [3128] = 2858, + [3129] = 3121, + [3130] = 2871, + [3131] = 2890, + [3132] = 2890, + [3133] = 2904, + [3134] = 2894, + [3135] = 2180, + [3136] = 2902, + [3137] = 2179, + [3138] = 2895, [3139] = 2908, - [3140] = 2911, - [3141] = 2184, - [3142] = 2907, - [3143] = 3137, - [3144] = 2909, - [3145] = 2910, - [3146] = 2915, - [3147] = 2184, - [3148] = 2174, - [3149] = 2175, - [3150] = 2905, - [3151] = 2379, - [3152] = 2412, - [3153] = 2413, - [3154] = 2415, - [3155] = 2416, - [3156] = 2181, - [3157] = 2447, - [3158] = 2183, - [3159] = 2180, - [3160] = 2336, - [3161] = 2183, - [3162] = 2911, - [3163] = 2908, - [3164] = 2381, - [3165] = 2911, - [3166] = 2411, - [3167] = 2359, - [3168] = 2909, - [3169] = 2450, - [3170] = 2341, - [3171] = 2919, - [3172] = 2386, - [3173] = 2433, - [3174] = 2174, - [3175] = 2423, - [3176] = 2184, - [3177] = 2175, - [3178] = 2317, - [3179] = 2941, - [3180] = 2177, - [3181] = 2343, - [3182] = 2318, - [3183] = 2344, - [3184] = 2420, - [3185] = 2407, - [3186] = 2174, - [3187] = 2182, - [3188] = 2440, - [3189] = 2175, - [3190] = 2418, - [3191] = 2446, - [3192] = 2955, - [3193] = 2905, - [3194] = 2907, - [3195] = 2185, - [3196] = 2180, - [3197] = 2617, - [3198] = 2941, - [3199] = 2861, - [3200] = 2373, - [3201] = 2177, - [3202] = 2340, - [3203] = 2928, - [3204] = 2181, - [3205] = 2347, - [3206] = 2378, - [3207] = 2315, - [3208] = 2093, - [3209] = 2380, - [3210] = 2445, - [3211] = 2919, - [3212] = 2182, - [3213] = 2425, - [3214] = 2424, - [3215] = 2959, - [3216] = 2915, - [3217] = 2429, - [3218] = 2910, - [3219] = 2419, - [3220] = 2928, - [3221] = 2174, - [3222] = 2955, - [3223] = 2959, - [3224] = 2911, - [3225] = 2175, - [3226] = 2954, - [3227] = 3049, - [3228] = 3006, - [3229] = 3045, - [3230] = 3064, - [3231] = 2975, - [3232] = 3057, - [3233] = 2970, - [3234] = 3234, - [3235] = 2988, - [3236] = 3236, - [3237] = 2999, - [3238] = 3019, - [3239] = 3025, - [3240] = 1901, - [3241] = 3031, - [3242] = 3033, - [3243] = 3063, - [3244] = 3032, + [3140] = 2179, + [3141] = 2087, + [3142] = 2421, + [3143] = 2402, + [3144] = 2415, + [3145] = 2170, + [3146] = 2316, + [3147] = 2373, + [3148] = 2375, + [3149] = 2377, + [3150] = 2422, + [3151] = 2411, + [3152] = 2426, + [3153] = 2331, + [3154] = 2339, + [3155] = 2309, + [3156] = 2406, + [3157] = 2311, + [3158] = 2171, + [3159] = 2397, + [3160] = 2345, + [3161] = 2392, + [3162] = 2174, + [3163] = 2380, + [3164] = 2390, + [3165] = 2408, + [3166] = 2388, + [3167] = 2175, + [3168] = 2342, + [3169] = 2409, + [3170] = 2176, + [3171] = 2337, + [3172] = 2334, + [3173] = 2169, + [3174] = 2168, + [3175] = 2936, + [3176] = 2937, + [3177] = 2351, + [3178] = 2423, + [3179] = 2424, + [3180] = 2427, + [3181] = 2929, + [3182] = 2416, + [3183] = 2937, + [3184] = 2170, + [3185] = 2171, + [3186] = 2928, + [3187] = 2425, + [3188] = 2419, + [3189] = 2174, + [3190] = 2175, + [3191] = 2176, + [3192] = 2890, + [3193] = 2858, + [3194] = 2895, + [3195] = 2893, + [3196] = 2888, + [3197] = 2890, + [3198] = 2169, + [3199] = 2168, + [3200] = 2949, + [3201] = 2180, + [3202] = 2920, + [3203] = 2894, + [3204] = 2169, + [3205] = 2168, + [3206] = 2417, + [3207] = 2608, + [3208] = 2890, + [3209] = 2920, + [3210] = 2420, + [3211] = 2928, + [3212] = 2902, + [3213] = 2929, + [3214] = 2904, + [3215] = 2936, + [3216] = 2375, + [3217] = 2406, + [3218] = 2311, + [3219] = 3219, + [3220] = 3040, + [3221] = 3043, + [3222] = 2316, + [3223] = 2397, + [3224] = 3224, + [3225] = 3029, + [3226] = 2345, + [3227] = 3227, + [3228] = 2392, + [3229] = 2373, + [3230] = 3048, + [3231] = 2890, + [3232] = 2908, + [3233] = 3233, + [3234] = 2890, + [3235] = 1901, + [3236] = 3035, + [3237] = 3237, + [3238] = 3238, + [3239] = 2960, + [3240] = 2959, + [3241] = 2170, + [3242] = 2171, + [3243] = 1924, + [3244] = 1928, [3245] = 3245, - [3246] = 2181, - [3247] = 2183, - [3248] = 1928, - [3249] = 1927, - [3250] = 3250, - [3251] = 2373, - [3252] = 2182, - [3253] = 2347, - [3254] = 2180, - [3255] = 2378, - [3256] = 2177, - [3257] = 2379, - [3258] = 2380, - [3259] = 3035, - [3260] = 2359, - [3261] = 2317, - [3262] = 2340, - [3263] = 2341, - [3264] = 2386, - [3265] = 2315, - [3266] = 3039, - [3267] = 3040, - [3268] = 2954, - [3269] = 3269, - [3270] = 3037, - [3271] = 3047, - [3272] = 3046, - [3273] = 2381, - [3274] = 2343, - [3275] = 3009, - [3276] = 2407, - [3277] = 3066, - [3278] = 3011, - [3279] = 3050, - [3280] = 2911, - [3281] = 3052, - [3282] = 3053, - [3283] = 3055, - [3284] = 3056, - [3285] = 2412, - [3286] = 2413, - [3287] = 2415, - [3288] = 2416, - [3289] = 3020, - [3290] = 2995, - [3291] = 3061, - [3292] = 2994, - [3293] = 2995, - [3294] = 3294, - [3295] = 3295, - [3296] = 2336, - [3297] = 2411, - [3298] = 2318, - [3299] = 3299, - [3300] = 3300, - [3301] = 2344, - [3302] = 2982, - [3303] = 3062, - [3304] = 2993, - [3305] = 3007, - [3306] = 2962, - [3307] = 3022, - [3308] = 3308, + [3246] = 2963, + [3247] = 3247, + [3248] = 2174, + [3249] = 3249, + [3250] = 2175, + [3251] = 2176, + [3252] = 2966, + [3253] = 2967, + [3254] = 2968, + [3255] = 2969, + [3256] = 3256, + [3257] = 2997, + [3258] = 2970, + [3259] = 2971, + [3260] = 3260, + [3261] = 2972, + [3262] = 3041, + [3263] = 3042, + [3264] = 2957, + [3265] = 3265, + [3266] = 2380, + [3267] = 2973, + [3268] = 2974, + [3269] = 3036, + [3270] = 2975, + [3271] = 2390, + [3272] = 3037, + [3273] = 2408, + [3274] = 2388, + [3275] = 3275, + [3276] = 3276, + [3277] = 2949, + [3278] = 2983, + [3279] = 2984, + [3280] = 3054, + [3281] = 2890, + [3282] = 2956, + [3283] = 2986, + [3284] = 2342, + [3285] = 2990, + [3286] = 2991, + [3287] = 2992, + [3288] = 2309, + [3289] = 2993, + [3290] = 2996, + [3291] = 3002, + [3292] = 2961, + [3293] = 2962, + [3294] = 2409, + [3295] = 3006, + [3296] = 2964, + [3297] = 2337, + [3298] = 3055, + [3299] = 3054, + [3300] = 2334, + [3301] = 3008, + [3302] = 3302, + [3303] = 3303, + [3304] = 2402, + [3305] = 3305, + [3306] = 3009, + [3307] = 3307, + [3308] = 2377, [3309] = 3309, - [3310] = 3310, - [3311] = 3015, - [3312] = 3312, - [3313] = 3030, - [3314] = 2911, - [3315] = 2996, - [3316] = 3014, - [3317] = 3000, - [3318] = 3318, - [3319] = 3044, - [3320] = 3001, - [3321] = 3051, - [3322] = 3065, - [3323] = 3005, - [3324] = 2966, - [3325] = 2971, - [3326] = 2967, - [3327] = 2911, - [3328] = 2974, - [3329] = 2977, - [3330] = 2973, - [3331] = 3331, - [3332] = 2980, - [3333] = 2981, - [3334] = 3044, - [3335] = 3335, - [3336] = 2983, + [3310] = 3010, + [3311] = 3311, + [3312] = 2890, + [3313] = 3011, + [3314] = 3314, + [3315] = 3012, + [3316] = 3316, + [3317] = 2351, + [3318] = 3042, + [3319] = 3013, + [3320] = 2987, + [3321] = 2988, + [3322] = 2989, + [3323] = 3323, + [3324] = 3014, + [3325] = 3016, + [3326] = 3017, + [3327] = 2331, + [3328] = 3019, + [3329] = 3021, + [3330] = 3302, + [3331] = 3022, + [3332] = 3023, + [3333] = 3024, + [3334] = 3025, + [3335] = 3026, + [3336] = 2998, [3337] = 3337, - [3338] = 3338, - [3339] = 2987, - [3340] = 3340, - [3341] = 3341, - [3342] = 3342, + [3338] = 3003, + [3339] = 3005, + [3340] = 2339, + [3341] = 3305, + [3342] = 3027, [3343] = 3343, - [3344] = 3024, + [3344] = 3344, [3345] = 3345, [3346] = 3346, - [3347] = 2911, - [3348] = 3010, - [3349] = 3349, - [3350] = 3350, - [3351] = 3048, - [3352] = 3016, - [3353] = 3300, - [3354] = 3027, - [3355] = 3355, - [3356] = 2956, + [3347] = 3347, + [3348] = 2958, + [3349] = 2890, + [3350] = 1928, + [3351] = 2987, + [3352] = 3344, + [3353] = 3345, + [3354] = 3354, + [3355] = 3346, + [3356] = 2890, [3357] = 3357, [3358] = 3358, - [3359] = 3294, - [3360] = 2962, - [3361] = 3357, - [3362] = 3006, - [3363] = 3363, - [3364] = 3050, - [3365] = 3234, - [3366] = 3366, - [3367] = 3363, - [3368] = 3052, - [3369] = 3019, - [3370] = 3370, - [3371] = 3030, - [3372] = 3372, - [3373] = 3007, - [3374] = 3366, - [3375] = 3370, - [3376] = 3055, - [3377] = 3377, - [3378] = 3056, - [3379] = 2911, - [3380] = 3015, - [3381] = 3381, - [3382] = 3363, - [3383] = 2891, - [3384] = 3061, - [3385] = 3363, - [3386] = 3032, - [3387] = 3372, - [3388] = 3366, - [3389] = 3370, - [3390] = 3377, - [3391] = 2911, - [3392] = 2911, - [3393] = 1942, - [3394] = 3062, - [3395] = 2993, - [3396] = 3363, - [3397] = 3335, - [3398] = 3372, - [3399] = 3366, - [3400] = 3370, - [3401] = 3377, - [3402] = 2911, - [3403] = 3372, - [3404] = 3366, - [3405] = 3370, - [3406] = 3377, - [3407] = 2911, - [3408] = 2911, - [3409] = 3372, - [3410] = 3366, - [3411] = 3370, - [3412] = 3377, - [3413] = 2911, - [3414] = 2994, - [3415] = 1928, - [3416] = 3372, - [3417] = 2988, - [3418] = 3005, - [3419] = 2166, - [3420] = 1927, - [3421] = 3024, - [3422] = 3366, - [3423] = 3370, - [3424] = 3250, - [3425] = 3377, - [3426] = 1976, - [3427] = 3025, - [3428] = 3031, - [3429] = 2996, - [3430] = 3014, - [3431] = 3000, - [3432] = 3236, - [3433] = 3040, - [3434] = 3245, - [3435] = 3039, - [3436] = 1977, - [3437] = 3011, - [3438] = 3066, - [3439] = 2911, - [3440] = 3363, - [3441] = 1928, - [3442] = 2974, - [3443] = 2977, - [3444] = 3358, - [3445] = 1927, - [3446] = 3037, - [3447] = 3338, - [3448] = 3033, - [3449] = 3020, - [3450] = 3001, - [3451] = 3063, - [3452] = 3051, - [3453] = 2419, - [3454] = 2166, - [3455] = 3310, - [3456] = 3065, - [3457] = 2966, - [3458] = 2617, - [3459] = 3459, - [3460] = 2967, - [3461] = 2911, - [3462] = 3337, - [3463] = 3340, - [3464] = 2973, - [3465] = 3009, - [3466] = 2980, - [3467] = 3467, - [3468] = 3046, - [3469] = 3312, - [3470] = 3047, - [3471] = 2981, - [3472] = 2983, - [3473] = 2987, + [3359] = 3359, + [3360] = 3360, + [3361] = 3010, + [3362] = 3237, + [3363] = 1931, + [3364] = 1933, + [3365] = 2988, + [3366] = 3029, + [3367] = 3367, + [3368] = 3024, + [3369] = 2159, + [3370] = 3354, + [3371] = 3357, + [3372] = 3358, + [3373] = 2890, + [3374] = 3360, + [3375] = 3375, + [3376] = 2998, + [3377] = 2890, + [3378] = 3025, + [3379] = 3367, + [3380] = 3358, + [3381] = 2958, + [3382] = 3354, + [3383] = 3357, + [3384] = 3358, + [3385] = 3360, + [3386] = 2890, + [3387] = 3357, + [3388] = 3005, + [3389] = 2159, + [3390] = 3012, + [3391] = 3354, + [3392] = 3357, + [3393] = 3358, + [3394] = 3360, + [3395] = 2890, + [3396] = 2960, + [3397] = 3275, + [3398] = 2890, + [3399] = 3354, + [3400] = 3357, + [3401] = 3358, + [3402] = 3360, + [3403] = 2890, + [3404] = 3276, + [3405] = 3358, + [3406] = 3360, + [3407] = 3260, + [3408] = 2963, + [3409] = 3409, + [3410] = 3245, + [3411] = 3265, + [3412] = 1901, + [3413] = 3256, + [3414] = 2966, + [3415] = 2967, + [3416] = 3316, + [3417] = 2968, + [3418] = 2969, + [3419] = 2964, + [3420] = 2970, + [3421] = 2971, + [3422] = 3347, + [3423] = 2972, + [3424] = 3013, + [3425] = 3303, + [3426] = 3426, + [3427] = 3427, + [3428] = 1924, + [3429] = 3311, + [3430] = 3309, + [3431] = 2608, + [3432] = 2956, + [3433] = 3048, + [3434] = 3014, + [3435] = 3435, + [3436] = 2973, + [3437] = 3354, + [3438] = 2974, + [3439] = 2975, + [3440] = 2989, + [3441] = 3041, + [3442] = 3442, + [3443] = 3443, + [3444] = 3219, + [3445] = 3247, + [3446] = 2608, + [3447] = 3224, + [3448] = 3011, + [3449] = 3227, + [3450] = 3238, + [3451] = 3016, + [3452] = 3452, + [3453] = 2983, + [3454] = 2984, + [3455] = 3367, + [3456] = 2986, + [3457] = 3003, + [3458] = 3021, + [3459] = 3307, + [3460] = 3017, + [3461] = 3314, + [3462] = 3035, + [3463] = 3354, + [3464] = 1924, + [3465] = 1928, + [3466] = 3019, + [3467] = 3026, + [3468] = 2890, + [3469] = 3354, + [3470] = 2990, + [3471] = 3249, + [3472] = 2871, + [3473] = 2991, [3474] = 3343, - [3475] = 3475, - [3476] = 3372, - [3477] = 3308, - [3478] = 3478, - [3479] = 3345, - [3480] = 3309, - [3481] = 3318, - [3482] = 3366, - [3483] = 3370, - [3484] = 2956, + [3475] = 3037, + [3476] = 3357, + [3477] = 3367, + [3478] = 2992, + [3479] = 3358, + [3480] = 3360, + [3481] = 2993, + [3482] = 2996, + [3483] = 3036, + [3484] = 2890, [3485] = 3022, - [3486] = 3295, - [3487] = 3035, - [3488] = 3377, - [3489] = 3489, - [3490] = 3299, - [3491] = 3491, - [3492] = 3346, - [3493] = 3342, - [3494] = 1901, - [3495] = 3349, - [3496] = 3341, - [3497] = 2446, - [3498] = 3498, - [3499] = 3377, - [3500] = 2911, - [3501] = 3372, - [3502] = 3010, - [3503] = 3016, - [3504] = 3027, - [3505] = 3045, - [3506] = 2093, - [3507] = 3350, - [3508] = 2617, - [3509] = 3064, - [3510] = 2911, - [3511] = 3511, - [3512] = 2975, - [3513] = 3057, - [3514] = 3049, - [3515] = 2970, - [3516] = 2999, - [3517] = 3053, - [3518] = 2165, - [3519] = 2910, - [3520] = 2911, - [3521] = 2908, - [3522] = 2446, - [3523] = 2878, - [3524] = 2911, - [3525] = 3525, - [3526] = 2911, - [3527] = 2911, - [3528] = 3034, - [3529] = 2911, - [3530] = 2911, - [3531] = 2979, - [3532] = 3532, - [3533] = 2911, - [3534] = 2419, - [3535] = 2911, - [3536] = 2990, - [3537] = 3537, - [3538] = 2876, - [3539] = 3539, - [3540] = 3540, - [3541] = 3100, - [3542] = 2891, - [3543] = 2907, - [3544] = 3544, - [3545] = 3003, - [3546] = 2879, - [3547] = 2874, - [3548] = 2911, - [3549] = 2972, - [3550] = 2978, + [3486] = 3002, + [3487] = 2961, + [3488] = 2411, + [3489] = 2426, + [3490] = 3006, + [3491] = 3055, + [3492] = 3367, + [3493] = 3357, + [3494] = 3008, + [3495] = 3040, + [3496] = 3009, + [3497] = 3043, + [3498] = 2962, + [3499] = 3360, + [3500] = 2908, + [3501] = 3367, + [3502] = 2890, + [3503] = 2087, + [3504] = 3023, + [3505] = 3027, + [3506] = 1976, + [3507] = 2902, + [3508] = 2160, + [3509] = 2890, + [3510] = 2890, + [3511] = 2411, + [3512] = 2890, + [3513] = 2890, + [3514] = 2890, + [3515] = 2869, + [3516] = 3034, + [3517] = 2426, + [3518] = 2953, + [3519] = 3519, + [3520] = 3520, + [3521] = 2951, + [3522] = 2874, + [3523] = 2904, + [3524] = 2860, + [3525] = 2890, + [3526] = 2890, + [3527] = 2871, + [3528] = 2893, + [3529] = 3033, + [3530] = 2868, + [3531] = 2982, + [3532] = 3065, + [3533] = 3533, + [3534] = 2890, + [3535] = 3535, + [3536] = 3536, + [3537] = 3031, + [3538] = 3538, + [3539] = 2890, + [3540] = 3535, + [3541] = 3541, + [3542] = 3542, + [3543] = 3535, + [3544] = 3541, + [3545] = 3541, + [3546] = 3542, + [3547] = 3541, + [3548] = 2888, + [3549] = 2890, + [3550] = 2868, [3551] = 3551, - [3552] = 2911, - [3553] = 3551, - [3554] = 2911, - [3555] = 2972, - [3556] = 3525, - [3557] = 2911, - [3558] = 3558, - [3559] = 2978, - [3560] = 2876, - [3561] = 2905, - [3562] = 3551, - [3563] = 3551, - [3564] = 3551, + [3552] = 3541, + [3553] = 2908, + [3554] = 2902, + [3555] = 3555, + [3556] = 3541, + [3557] = 3542, + [3558] = 3031, + [3559] = 3559, + [3560] = 2893, + [3561] = 3541, + [3562] = 3541, + [3563] = 3563, + [3564] = 2904, [3565] = 3565, [3566] = 3566, - [3567] = 2908, - [3568] = 3568, - [3569] = 3565, - [3570] = 3565, + [3567] = 3542, + [3568] = 2869, + [3569] = 3541, + [3570] = 2953, [3571] = 3571, - [3572] = 3137, - [3573] = 3565, - [3574] = 2956, - [3575] = 3575, - [3576] = 3551, - [3577] = 3577, - [3578] = 3551, - [3579] = 2909, - [3580] = 2990, + [3572] = 3542, + [3573] = 3541, + [3574] = 3541, + [3575] = 2895, + [3576] = 3576, + [3577] = 2894, + [3578] = 2951, + [3579] = 3542, + [3580] = 3541, [3581] = 3581, - [3582] = 3003, - [3583] = 3565, - [3584] = 2874, - [3585] = 3585, - [3586] = 3551, - [3587] = 3034, - [3588] = 3525, - [3589] = 3551, - [3590] = 3590, - [3591] = 3591, - [3592] = 3592, - [3593] = 3565, - [3594] = 3551, - [3595] = 3525, - [3596] = 3551, - [3597] = 2910, - [3598] = 3598, - [3599] = 3137, - [3600] = 3565, - [3601] = 3565, - [3602] = 2915, - [3603] = 3137, - [3604] = 3604, - [3605] = 3605, - [3606] = 3565, - [3607] = 2907, - [3608] = 3565, - [3609] = 3551, - [3610] = 3525, + [3582] = 3541, + [3583] = 3583, + [3584] = 3584, + [3585] = 3065, + [3586] = 3541, + [3587] = 3587, + [3588] = 2874, + [3589] = 3589, + [3590] = 3542, + [3591] = 3541, + [3592] = 3541, + [3593] = 3541, + [3594] = 3033, + [3595] = 3542, + [3596] = 3542, + [3597] = 3541, + [3598] = 3535, + [3599] = 3599, + [3600] = 2890, + [3601] = 3541, + [3602] = 3535, + [3603] = 3541, + [3604] = 3541, + [3605] = 3535, + [3606] = 3606, + [3607] = 3607, + [3608] = 3608, + [3609] = 3542, + [3610] = 3541, [3611] = 3611, - [3612] = 3551, - [3613] = 3551, - [3614] = 3565, - [3615] = 3551, - [3616] = 3525, - [3617] = 3565, - [3618] = 3618, - [3619] = 3551, - [3620] = 3551, - [3621] = 3551, - [3622] = 3551, - [3623] = 3565, - [3624] = 3624, - [3625] = 3551, + [3612] = 3034, + [3613] = 3613, + [3614] = 3542, + [3615] = 3542, + [3616] = 3535, + [3617] = 2890, + [3618] = 3541, + [3619] = 3619, + [3620] = 3541, + [3621] = 2982, + [3622] = 3541, + [3623] = 3623, + [3624] = 3121, + [3625] = 3541, [3626] = 3626, - [3627] = 3137, - [3628] = 3551, - [3629] = 3629, - [3630] = 3525, - [3631] = 3631, - [3632] = 2911, - [3633] = 3551, - [3634] = 3611, - [3635] = 3565, - [3636] = 3636, - [3637] = 2911, + [3627] = 3121, + [3628] = 3121, + [3629] = 2860, + [3630] = 3587, + [3631] = 2890, + [3632] = 3121, + [3633] = 3633, + [3634] = 2890, + [3635] = 3542, + [3636] = 3541, + [3637] = 3542, [3638] = 3638, - [3639] = 3551, - [3640] = 3551, - [3641] = 3551, - [3642] = 2879, - [3643] = 3100, - [3644] = 3551, - [3645] = 2979, - [3646] = 2878, - [3647] = 3551, - [3648] = 3648, - [3649] = 3605, - [3650] = 2954, - [3651] = 2959, - [3652] = 3130, - [3653] = 2911, - [3654] = 3629, - [3655] = 3618, - [3656] = 2911, - [3657] = 3657, - [3658] = 3638, - [3659] = 2955, - [3660] = 2928, - [3661] = 3566, + [3639] = 3639, + [3640] = 2890, + [3641] = 2949, + [3642] = 2936, + [3643] = 2890, + [3644] = 2920, + [3645] = 3571, + [3646] = 3117, + [3647] = 3599, + [3648] = 2928, + [3649] = 3633, + [3650] = 3559, + [3651] = 3651, + [3652] = 2929, + [3653] = 3589, + [3654] = 2168, + [3655] = 3114, + [3656] = 3565, + [3657] = 3309, + [3658] = 3606, + [3659] = 3659, + [3660] = 2890, + [3661] = 2890, [3662] = 3662, - [3663] = 2919, - [3664] = 2911, - [3665] = 3128, - [3666] = 2174, - [3667] = 2941, - [3668] = 3668, - [3669] = 3648, - [3670] = 3670, - [3671] = 3568, - [3672] = 3571, - [3673] = 3575, - [3674] = 3590, - [3675] = 3585, - [3676] = 3592, - [3677] = 2911, - [3678] = 3636, - [3679] = 3631, - [3680] = 3626, - [3681] = 2911, - [3682] = 3624, - [3683] = 3683, - [3684] = 3684, - [3685] = 3685, - [3686] = 3558, - [3687] = 2911, - [3688] = 3688, - [3689] = 3342, + [3663] = 3663, + [3664] = 3566, + [3665] = 3665, + [3666] = 3666, + [3667] = 3667, + [3668] = 3608, + [3669] = 3551, + [3670] = 2169, + [3671] = 3581, + [3672] = 2937, + [3673] = 2890, + [3674] = 3607, + [3675] = 3611, + [3676] = 3676, + [3677] = 3583, + [3678] = 3584, + [3679] = 3576, + [3680] = 3623, + [3681] = 3555, + [3682] = 3613, + [3683] = 2890, + [3684] = 2983, + [3685] = 3040, + [3686] = 3623, + [3687] = 3613, + [3688] = 3344, + [3689] = 3043, [3690] = 3690, - [3691] = 2175, - [3692] = 3604, - [3693] = 3577, - [3694] = 3694, + [3691] = 3345, + [3692] = 3346, + [3693] = 3347, + [3694] = 3551, [3695] = 3695, - [3696] = 3061, - [3697] = 3062, - [3698] = 2993, - [3699] = 2962, - [3700] = 2996, - [3701] = 3591, - [3702] = 3014, - [3703] = 3000, - [3704] = 3007, - [3705] = 3015, - [3706] = 3030, - [3707] = 3001, - [3708] = 3051, - [3709] = 3065, - [3710] = 2966, - [3711] = 2967, - [3712] = 3712, - [3713] = 3005, - [3714] = 2973, - [3715] = 2974, - [3716] = 2977, - [3717] = 2980, - [3718] = 2981, - [3719] = 3712, - [3720] = 2983, - [3721] = 2987, - [3722] = 3624, - [3723] = 3577, - [3724] = 3626, - [3725] = 3636, - [3726] = 3638, - [3727] = 3712, - [3728] = 3010, - [3729] = 3016, - [3730] = 3568, - [3731] = 3571, - [3732] = 3575, - [3733] = 3585, - [3734] = 3027, - [3735] = 3045, - [3736] = 3712, - [3737] = 3064, - [3738] = 3738, - [3739] = 3712, - [3740] = 2975, - [3741] = 3057, - [3742] = 2970, - [3743] = 2988, - [3744] = 3598, - [3745] = 2982, - [3746] = 3056, - [3747] = 3747, - [3748] = 2999, - [3749] = 3019, - [3750] = 3025, - [3751] = 3031, - [3752] = 3033, - [3753] = 3048, - [3754] = 3063, - [3755] = 3024, - [3756] = 3712, - [3757] = 3757, - [3758] = 3712, - [3759] = 2165, - [3760] = 3712, - [3761] = 3761, - [3762] = 3712, - [3763] = 3712, - [3764] = 3631, - [3765] = 3558, - [3766] = 3566, - [3767] = 3590, - [3768] = 3592, - [3769] = 3604, - [3770] = 3629, - [3771] = 2994, - [3772] = 2995, - [3773] = 3712, - [3774] = 3295, - [3775] = 3044, - [3776] = 3712, - [3777] = 3337, - [3778] = 3778, - [3779] = 3340, - [3780] = 3343, - [3781] = 3345, - [3782] = 3346, - [3783] = 3712, - [3784] = 3349, - [3785] = 3350, - [3786] = 3357, - [3787] = 3358, - [3788] = 3299, - [3789] = 3341, - [3790] = 3234, - [3791] = 3236, - [3792] = 3245, - [3793] = 3712, - [3794] = 3308, - [3795] = 3309, - [3796] = 3318, - [3797] = 3335, - [3798] = 3338, - [3799] = 3712, - [3800] = 3712, - [3801] = 3712, - [3802] = 3712, - [3803] = 3310, - [3804] = 3312, - [3805] = 3712, - [3806] = 3591, - [3807] = 3055, - [3808] = 3712, - [3809] = 3809, - [3810] = 3712, - [3811] = 3598, - [3812] = 3712, - [3813] = 3712, - [3814] = 3814, - [3815] = 3712, - [3816] = 1928, - [3817] = 3712, - [3818] = 3712, - [3819] = 3712, - [3820] = 3712, - [3821] = 3712, - [3822] = 3712, - [3823] = 3712, - [3824] = 3712, - [3825] = 3712, - [3826] = 1901, - [3827] = 3712, - [3828] = 3618, - [3829] = 1927, - [3830] = 3712, - [3831] = 3695, - [3832] = 3832, - [3833] = 3300, - [3834] = 3648, - [3835] = 3618, - [3836] = 3695, - [3837] = 3250, - [3838] = 3838, - [3839] = 3624, - [3840] = 3568, - [3841] = 3571, - [3842] = 3575, - [3843] = 3631, - [3844] = 2359, - [3845] = 3558, - [3846] = 3566, - [3847] = 3585, - [3848] = 3590, - [3849] = 3577, - [3850] = 3592, - [3851] = 3604, - [3852] = 3629, - [3853] = 3250, - [3854] = 3712, - [3855] = 3626, - [3856] = 3636, - [3857] = 3638, - [3858] = 3858, - [3859] = 3648, - [3860] = 3860, - [3861] = 3832, - [3862] = 3695, - [3863] = 3832, - [3864] = 3832, - [3865] = 3832, - [3866] = 3832, - [3867] = 3832, - [3868] = 3832, - [3869] = 3269, - [3870] = 3128, - [3871] = 3300, - [3872] = 2165, - [3873] = 3006, - [3874] = 3300, - [3875] = 3009, - [3876] = 3712, - [3877] = 3011, - [3878] = 3130, - [3879] = 3712, - [3880] = 3066, - [3881] = 3020, - [3882] = 3712, - [3883] = 3883, - [3884] = 3022, - [3885] = 3032, - [3886] = 3035, - [3887] = 3037, - [3888] = 2971, - [3889] = 3039, - [3890] = 3040, - [3891] = 3300, - [3892] = 3046, - [3893] = 3047, - [3894] = 3049, - [3895] = 3050, - [3896] = 3052, - [3897] = 3053, - [3898] = 3712, - [3899] = 3605, + [3696] = 3224, + [3697] = 3227, + [3698] = 3626, + [3699] = 3599, + [3700] = 3690, + [3701] = 3701, + [3702] = 3613, + [3703] = 3703, + [3704] = 3237, + [3705] = 3690, + [3706] = 3706, + [3707] = 3238, + [3708] = 3013, + [3709] = 3245, + [3710] = 3305, + [3711] = 3599, + [3712] = 3559, + [3713] = 3690, + [3714] = 3048, + [3715] = 3249, + [3716] = 3256, + [3717] = 3260, + [3718] = 3265, + [3719] = 3719, + [3720] = 3551, + [3721] = 3690, + [3722] = 3303, + [3723] = 3690, + [3724] = 3307, + [3725] = 3314, + [3726] = 3014, + [3727] = 3316, + [3728] = 3219, + [3729] = 3703, + [3730] = 3730, + [3731] = 1924, + [3732] = 3247, + [3733] = 3733, + [3734] = 3690, + [3735] = 3735, + [3736] = 3016, + [3737] = 3690, + [3738] = 3690, + [3739] = 3739, + [3740] = 3017, + [3741] = 2351, + [3742] = 3742, + [3743] = 3690, + [3744] = 3690, + [3745] = 3019, + [3746] = 3690, + [3747] = 3706, + [3748] = 3748, + [3749] = 3581, + [3750] = 3690, + [3751] = 3583, + [3752] = 3584, + [3753] = 3589, + [3754] = 3754, + [3755] = 3690, + [3756] = 3690, + [3757] = 2956, + [3758] = 3011, + [3759] = 3690, + [3760] = 3690, + [3761] = 3703, + [3762] = 3706, + [3763] = 3690, + [3764] = 3021, + [3765] = 3626, + [3766] = 1901, + [3767] = 2997, + [3768] = 3703, + [3769] = 3010, + [3770] = 3690, + [3771] = 2958, + [3772] = 3706, + [3773] = 3022, + [3774] = 3559, + [3775] = 3012, + [3776] = 3023, + [3777] = 3024, + [3778] = 3690, + [3779] = 3779, + [3780] = 3025, + [3781] = 3041, + [3782] = 3706, + [3783] = 3042, + [3784] = 2960, + [3785] = 3690, + [3786] = 2959, + [3787] = 1928, + [3788] = 3706, + [3789] = 3706, + [3790] = 3275, + [3791] = 3276, + [3792] = 3706, + [3793] = 3563, + [3794] = 2961, + [3795] = 3690, + [3796] = 3247, + [3797] = 3690, + [3798] = 3690, + [3799] = 2962, + [3800] = 3690, + [3801] = 3311, + [3802] = 3555, + [3803] = 2963, + [3804] = 3690, + [3805] = 3690, + [3806] = 2964, + [3807] = 3026, + [3808] = 2957, + [3809] = 3690, + [3810] = 2966, + [3811] = 2967, + [3812] = 2968, + [3813] = 3305, + [3814] = 2969, + [3815] = 3566, + [3816] = 3633, + [3817] = 3690, + [3818] = 3027, + [3819] = 2970, + [3820] = 3337, + [3821] = 3117, + [3822] = 3690, + [3823] = 3305, + [3824] = 2971, + [3825] = 3690, + [3826] = 3565, + [3827] = 3571, + [3828] = 3576, + [3829] = 3606, + [3830] = 3607, + [3831] = 3608, + [3832] = 3611, + [3833] = 3690, + [3834] = 2972, + [3835] = 2160, + [3836] = 3035, + [3837] = 2973, + [3838] = 3690, + [3839] = 2974, + [3840] = 3036, + [3841] = 2975, + [3842] = 3690, + [3843] = 3037, + [3844] = 3029, + [3845] = 3114, + [3846] = 3563, + [3847] = 2984, + [3848] = 2986, + [3849] = 2987, + [3850] = 2988, + [3851] = 2989, + [3852] = 3054, + [3853] = 3690, + [3854] = 3623, + [3855] = 3555, + [3856] = 3305, + [3857] = 3343, + [3858] = 2990, + [3859] = 2991, + [3860] = 2992, + [3861] = 3690, + [3862] = 2993, + [3863] = 2996, + [3864] = 3581, + [3865] = 3583, + [3866] = 2998, + [3867] = 3584, + [3868] = 3565, + [3869] = 3690, + [3870] = 3571, + [3871] = 3576, + [3872] = 3002, + [3873] = 3690, + [3874] = 3003, + [3875] = 3005, + [3876] = 3006, + [3877] = 3055, + [3878] = 3589, + [3879] = 3008, + [3880] = 3606, + [3881] = 3566, + [3882] = 3607, + [3883] = 3009, + [3884] = 3690, + [3885] = 3608, + [3886] = 3611, + [3887] = 3690, + [3888] = 2160, + [3889] = 3571, + [3890] = 3890, + [3891] = 3665, + [3892] = 3892, + [3893] = 3893, + [3894] = 3666, + [3895] = 3895, + [3896] = 3895, + [3897] = 2179, + [3898] = 3898, + [3899] = 3899, [3900] = 3900, [3901] = 3901, - [3902] = 3900, - [3903] = 3900, - [3904] = 3904, - [3905] = 3900, - [3906] = 3906, - [3907] = 3683, - [3908] = 3900, - [3909] = 3901, - [3910] = 3568, - [3911] = 3571, - [3912] = 3575, - [3913] = 3631, - [3914] = 3558, - [3915] = 3566, - [3916] = 3585, - [3917] = 3590, - [3918] = 3592, - [3919] = 3604, - [3920] = 3629, - [3921] = 3688, - [3922] = 3900, - [3923] = 3684, - [3924] = 3688, - [3925] = 3925, - [3926] = 3900, - [3927] = 3657, - [3928] = 3662, - [3929] = 3901, - [3930] = 3901, - [3931] = 3931, - [3932] = 3900, - [3933] = 3901, - [3934] = 3900, - [3935] = 3900, - [3936] = 3936, - [3937] = 3900, - [3938] = 3901, - [3939] = 3900, - [3940] = 3900, - [3941] = 3941, - [3942] = 3900, - [3943] = 3900, - [3944] = 3901, - [3945] = 3901, - [3946] = 3900, - [3947] = 3941, - [3948] = 3900, - [3949] = 3900, - [3950] = 3901, - [3951] = 3906, - [3952] = 3901, - [3953] = 3900, - [3954] = 3901, - [3955] = 3900, - [3956] = 3901, - [3957] = 3900, - [3958] = 3900, - [3959] = 3901, - [3960] = 3900, - [3961] = 3901, - [3962] = 3900, - [3963] = 3901, - [3964] = 3900, - [3965] = 3900, - [3966] = 2956, - [3967] = 3901, - [3968] = 3901, - [3969] = 3657, - [3970] = 3901, - [3971] = 3901, - [3972] = 3901, - [3973] = 3901, + [3902] = 3651, + [3903] = 3899, + [3904] = 3890, + [3905] = 3899, + [3906] = 3581, + [3907] = 3899, + [3908] = 3583, + [3909] = 3584, + [3910] = 3565, + [3911] = 3895, + [3912] = 3576, + [3913] = 3589, + [3914] = 3606, + [3915] = 3890, + [3916] = 3607, + [3917] = 3608, + [3918] = 3611, + [3919] = 3895, + [3920] = 3895, + [3921] = 3563, + [3922] = 3626, + [3923] = 3599, + [3924] = 3924, + [3925] = 3638, + [3926] = 3662, + [3927] = 3899, + [3928] = 3928, + [3929] = 3566, + [3930] = 3559, + [3931] = 3895, + [3932] = 3899, + [3933] = 3899, + [3934] = 3899, + [3935] = 3899, + [3936] = 3633, + [3937] = 3895, + [3938] = 3895, + [3939] = 3247, + [3940] = 3599, + [3941] = 3899, + [3942] = 3895, + [3943] = 3623, + [3944] = 3899, + [3945] = 3613, + [3946] = 3899, + [3947] = 2160, + [3948] = 3719, + [3949] = 3899, + [3950] = 3890, + [3951] = 3895, + [3952] = 3899, + [3953] = 3899, + [3954] = 3899, + [3955] = 3899, + [3956] = 3899, + [3957] = 3899, + [3958] = 3733, + [3959] = 3895, + [3960] = 3899, + [3961] = 3555, + [3962] = 3623, + [3963] = 3899, + [3964] = 3613, + [3965] = 3551, + [3966] = 3565, + [3967] = 3899, + [3968] = 3571, + [3969] = 3890, + [3970] = 3606, + [3971] = 3607, + [3972] = 3665, + [3973] = 3900, [3974] = 3901, - [3975] = 3901, - [3976] = 3900, - [3977] = 3624, - [3978] = 3900, - [3979] = 2891, - [3980] = 3980, - [3981] = 3662, - [3982] = 3982, - [3983] = 3983, - [3984] = 3925, + [3975] = 3666, + [3976] = 3895, + [3977] = 3608, + [3978] = 3611, + [3979] = 3979, + [3980] = 3899, + [3981] = 3899, + [3982] = 2871, + [3983] = 3899, + [3984] = 3895, [3985] = 3985, - [3986] = 3931, - [3987] = 3904, - [3988] = 3988, - [3989] = 3605, - [3990] = 3747, - [3991] = 2184, - [3992] = 3900, - [3993] = 3577, - [3994] = 3900, - [3995] = 3624, - [3996] = 3626, - [3997] = 3636, - [3998] = 3638, - [3999] = 3631, - [4000] = 3558, - [4001] = 3566, - [4002] = 3590, - [4003] = 3592, - [4004] = 3604, - [4005] = 3629, - [4006] = 3250, - [4007] = 3901, - [4008] = 3980, - [4009] = 3900, - [4010] = 3982, - [4011] = 3983, - [4012] = 3925, - [4013] = 3985, - [4014] = 3931, - [4015] = 3904, - [4016] = 3980, - [4017] = 3982, - [4018] = 3983, - [4019] = 3931, - [4020] = 3980, - [4021] = 3980, - [4022] = 3626, - [4023] = 3982, - [4024] = 3983, - [4025] = 3931, - [4026] = 3636, - [4027] = 3931, - [4028] = 3901, - [4029] = 3591, - [4030] = 3598, - [4031] = 3648, - [4032] = 3900, - [4033] = 2165, - [4034] = 3982, - [4035] = 3983, - [4036] = 4036, - [4037] = 3941, - [4038] = 3900, - [4039] = 3901, - [4040] = 3900, - [4041] = 2185, - [4042] = 3838, - [4043] = 3900, - [4044] = 3900, - [4045] = 3638, - [4046] = 3900, - [4047] = 3648, - [4048] = 3618, - [4049] = 3985, - [4050] = 3577, - [4051] = 3568, - [4052] = 3571, - [4053] = 3575, - [4054] = 3585, - [4055] = 3683, - [4056] = 3684, - [4057] = 3618, - [4058] = 3900, - [4059] = 4059, - [4060] = 3900, - [4061] = 3906, - [4062] = 3900, - [4063] = 2183, - [4064] = 3638, - [4065] = 2907, - [4066] = 3747, - [4067] = 2908, - [4068] = 3648, - [4069] = 2182, - [4070] = 3624, - [4071] = 3568, - [4072] = 3571, - [4073] = 3575, - [4074] = 3631, - [4075] = 3558, - [4076] = 3566, - [4077] = 3585, - [4078] = 3590, - [4079] = 3592, - [4080] = 3604, - [4081] = 3629, - [4082] = 3638, - [4083] = 2165, - [4084] = 3626, - [4085] = 3250, - [4086] = 3838, - [4087] = 2359, - [4088] = 3648, - [4089] = 3618, - [4090] = 3636, - [4091] = 2180, - [4092] = 3624, - [4093] = 3577, - [4094] = 3577, - [4095] = 3598, - [4096] = 2373, - [4097] = 3568, - [4098] = 3571, - [4099] = 3605, - [4100] = 3591, - [4101] = 3585, - [4102] = 3626, - [4103] = 3631, - [4104] = 3558, - [4105] = 3636, - [4106] = 3342, - [4107] = 2412, - [4108] = 2419, - [4109] = 2181, - [4110] = 2446, - [4111] = 3566, - [4112] = 3590, - [4113] = 3684, - [4114] = 3688, - [4115] = 3657, - [4116] = 3662, - [4117] = 3618, - [4118] = 2177, - [4119] = 3592, - [4120] = 3604, - [4121] = 3629, - [4122] = 3683, - [4123] = 2910, - [4124] = 3575, - [4125] = 3638, - [4126] = 3318, - [4127] = 3684, - [4128] = 3688, - [4129] = 3335, - [4130] = 3350, - [4131] = 3309, - [4132] = 3295, - [4133] = 3357, - [4134] = 2165, - [4135] = 3358, - [4136] = 3250, - [4137] = 3308, - [4138] = 3299, - [4139] = 3346, - [4140] = 3683, - [4141] = 3341, - [4142] = 3747, - [4143] = 3234, - [4144] = 3838, - [4145] = 3626, - [4146] = 3636, - [4147] = 3236, - [4148] = 3312, - [4149] = 3337, - [4150] = 2413, - [4151] = 3571, - [4152] = 3245, - [4153] = 3575, - [4154] = 3631, - [4155] = 3558, - [4156] = 3566, - [4157] = 3591, - [4158] = 2165, - [4159] = 3585, - [4160] = 3590, - [4161] = 3349, - [4162] = 3343, - [4163] = 3250, - [4164] = 4164, - [4165] = 3592, - [4166] = 3598, - [4167] = 3577, - [4168] = 3648, - [4169] = 3604, - [4170] = 3657, - [4171] = 3618, - [4172] = 3310, - [4173] = 3340, - [4174] = 3629, - [4175] = 3338, - [4176] = 3662, - [4177] = 3345, - [4178] = 3624, - [4179] = 3568, - [4180] = 3624, - [4181] = 3568, - [4182] = 3571, - [4183] = 3631, - [4184] = 3558, - [4185] = 3566, - [4186] = 3585, - [4187] = 3590, - [4188] = 3592, - [4189] = 3577, - [4190] = 3626, - [4191] = 3636, - [4192] = 3604, - [4193] = 3638, - [4194] = 3629, - [4195] = 3648, - [4196] = 3624, - [4197] = 3568, - [4198] = 3571, - [4199] = 3575, - [4200] = 3631, - [4201] = 3558, - [4202] = 3566, - [4203] = 3585, - [4204] = 3590, - [4205] = 3592, - [4206] = 3604, - [4207] = 3629, - [4208] = 3626, - [4209] = 3636, - [4210] = 3638, - [4211] = 3648, - [4212] = 4212, - [4213] = 3250, - [4214] = 2185, - [4215] = 2359, - [4216] = 3310, - [4217] = 4217, - [4218] = 4218, - [4219] = 3312, - [4220] = 2415, - [4221] = 2891, - [4222] = 3648, - [4223] = 3747, - [4224] = 3636, - [4225] = 3838, - [4226] = 3605, - [4227] = 3575, - [4228] = 3591, - [4229] = 3605, - [4230] = 3598, - [4231] = 3618, - [4232] = 4232, - [4233] = 3577, - [4234] = 3618, - [4235] = 3684, - [4236] = 3688, - [4237] = 3657, - [4238] = 3662, - [4239] = 3618, - [4240] = 3568, - [4241] = 3577, - [4242] = 3571, - [4243] = 3575, - [4244] = 4244, - [4245] = 3631, - [4246] = 3558, - [4247] = 3566, - [4248] = 3585, - [4249] = 3590, - [4250] = 3638, - [4251] = 3592, - [4252] = 3604, - [4253] = 3629, - [4254] = 3683, - [4255] = 3624, - [4256] = 3626, - [4257] = 3626, - [4258] = 3568, - [4259] = 2905, - [4260] = 3605, - [4261] = 3624, - [4262] = 2907, - [4263] = 2956, - [4264] = 2165, - [4265] = 2908, - [4266] = 2909, - [4267] = 3571, - [4268] = 3626, - [4269] = 3624, - [4270] = 3577, - [4271] = 3636, - [4272] = 4272, - [4273] = 3636, - [4274] = 4272, - [4275] = 3638, - [4276] = 3575, - [4277] = 3631, - [4278] = 3638, - [4279] = 2386, - [4280] = 3591, - [4281] = 3558, - [4282] = 3598, - [4283] = 3566, - [4284] = 3648, - [4285] = 2379, - [4286] = 3624, - [4287] = 3631, - [4288] = 3558, - [4289] = 3566, - [4290] = 2165, - [4291] = 3585, - [4292] = 2380, - [4293] = 3590, - [4294] = 2915, - [4295] = 3577, - [4296] = 2174, - [4297] = 2175, - [4298] = 3568, - [4299] = 3571, - [4300] = 3575, - [4301] = 3585, - [4302] = 3590, - [4303] = 3577, - [4304] = 3592, - [4305] = 3605, - [4306] = 3604, - [4307] = 3604, - [4308] = 3629, - [4309] = 3626, - [4310] = 3636, - [4311] = 3618, - [4312] = 2185, - [4313] = 3638, - [4314] = 2184, - [4315] = 3629, - [4316] = 2416, - [4317] = 3648, - [4318] = 3575, - [4319] = 3648, - [4320] = 3618, - [4321] = 2407, - [4322] = 2174, - [4323] = 2175, - [4324] = 3568, - [4325] = 3571, - [4326] = 3605, - [4327] = 2910, - [4328] = 3631, - [4329] = 3558, - [4330] = 2411, - [4331] = 3566, - [4332] = 3585, - [4333] = 4272, - [4334] = 3590, - [4335] = 3618, - [4336] = 4272, - [4337] = 3592, - [4338] = 4272, - [4339] = 2956, - [4340] = 4272, - [4341] = 3683, - [4342] = 3684, - [4343] = 3688, - [4344] = 3657, - [4345] = 3662, - [4346] = 3604, - [4347] = 3629, - [4348] = 3592, - [4349] = 3629, - [4350] = 2928, - [4351] = 2386, - [4352] = 3568, - [4353] = 3571, - [4354] = 3585, - [4355] = 2941, - [4356] = 2407, - [4357] = 4357, - [4358] = 3577, - [4359] = 4359, - [4360] = 2336, - [4361] = 2959, - [4362] = 3747, - [4363] = 2231, - [4364] = 2412, - [4365] = 2413, - [4366] = 2415, - [4367] = 2416, - [4368] = 2411, - [4369] = 2184, - [4370] = 3250, - [4371] = 3648, - [4372] = 4372, - [4373] = 2359, - [4374] = 2347, - [4375] = 3592, - [4376] = 3591, - [4377] = 4357, - [4378] = 3604, - [4379] = 3605, - [4380] = 3629, - [4381] = 3342, - [4382] = 2446, - [4383] = 2317, - [4384] = 3598, - [4385] = 2340, - [4386] = 2341, - [4387] = 4357, - [4388] = 4357, - [4389] = 2315, - [4390] = 2419, - [4391] = 3250, - [4392] = 3591, - [4393] = 3838, - [4394] = 3598, - [4395] = 2359, - [4396] = 2919, - [4397] = 2954, - [4398] = 2381, - [4399] = 4357, - [4400] = 4400, - [4401] = 3648, - [4402] = 3618, - [4403] = 2181, - [4404] = 2378, - [4405] = 3577, - [4406] = 3577, - [4407] = 3838, - [4408] = 2318, - [4409] = 3618, - [4410] = 2183, - [4411] = 3568, - [4412] = 3571, - [4413] = 3575, - [4414] = 3585, - [4415] = 3624, - [4416] = 3747, - [4417] = 2343, - [4418] = 2955, - [4419] = 3310, - [4420] = 3312, - [4421] = 3624, - [4422] = 2182, - [4423] = 3605, - [4424] = 2180, - [4425] = 3577, - [4426] = 2177, - [4427] = 3626, - [4428] = 3631, - [4429] = 3662, - [4430] = 3566, - [4431] = 3636, - [4432] = 3638, - [4433] = 3590, - [4434] = 3626, - [4435] = 3636, - [4436] = 3638, - [4437] = 3631, - [4438] = 3558, - [4439] = 3566, - [4440] = 3590, - [4441] = 3592, - [4442] = 3604, - [4443] = 3629, - [4444] = 3624, - [4445] = 3631, - [4446] = 3558, - [4447] = 3566, - [4448] = 3590, - [4449] = 3592, - [4450] = 3604, - [4451] = 3629, - [4452] = 3626, - [4453] = 3636, - [4454] = 2344, - [4455] = 3638, - [4456] = 3592, - [4457] = 3604, - [4458] = 3648, - [4459] = 2165, - [4460] = 3591, - [4461] = 3598, - [4462] = 2165, - [4463] = 3575, - [4464] = 2373, - [4465] = 2378, - [4466] = 3624, - [4467] = 2379, - [4468] = 4357, - [4469] = 2380, - [4470] = 3618, - [4471] = 3568, - [4472] = 3571, - [4473] = 3575, - [4474] = 3585, - [4475] = 3605, - [4476] = 3626, - [4477] = 3636, - [4478] = 2419, - [4479] = 3638, - [4480] = 3648, - [4481] = 3568, - [4482] = 3571, - [4483] = 3618, - [4484] = 3575, - [4485] = 3631, - [4486] = 3558, - [4487] = 3566, - [4488] = 4488, - [4489] = 3585, - [4490] = 3590, - [4491] = 2861, - [4492] = 3683, - [4493] = 3684, - [4494] = 3688, - [4495] = 3657, - [4496] = 3558, - [4497] = 3585, - [4498] = 3592, - [4499] = 3604, - [4500] = 3629, - [4501] = 3636, - [4502] = 3638, - [4503] = 3636, - [4504] = 3604, - [4505] = 3357, - [4506] = 3358, - [4507] = 3629, - [4508] = 3299, - [4509] = 3626, - [4510] = 3341, - [4511] = 3234, - [4512] = 3236, - [4513] = 3245, - [4514] = 3636, - [4515] = 3308, - [4516] = 3309, - [4517] = 3318, - [4518] = 3335, - [4519] = 3338, - [4520] = 3568, - [4521] = 3571, - [4522] = 3585, - [4523] = 3577, - [4524] = 3638, - [4525] = 3747, - [4526] = 3638, - [4527] = 3648, - [4528] = 3747, - [4529] = 3006, - [4530] = 2980, - [4531] = 3009, - [4532] = 3568, - [4533] = 3571, - [4534] = 3585, - [4535] = 3577, - [4536] = 3011, - [4537] = 2981, - [4538] = 3636, - [4539] = 3566, - [4540] = 3585, - [4541] = 3066, - [4542] = 2975, - [4543] = 3020, - [4544] = 3310, - [4545] = 3312, - [4546] = 3057, - [4547] = 4547, - [4548] = 3022, - [4549] = 3577, - [4550] = 2983, - [4551] = 3590, - [4552] = 2987, - [4553] = 2974, - [4554] = 3577, - [4555] = 4555, - [4556] = 3592, - [4557] = 3604, - [4558] = 3568, - [4559] = 3838, - [4560] = 3571, - [4561] = 3575, - [4562] = 3631, - [4563] = 3558, - [4564] = 3566, - [4565] = 3585, - [4566] = 3590, - [4567] = 3577, - [4568] = 3592, - [4569] = 3604, - [4570] = 3629, - [4571] = 3626, - [4572] = 3636, - [4573] = 2994, - [4574] = 2995, - [4575] = 3638, - [4576] = 3032, - [4577] = 3591, - [4578] = 1928, - [4579] = 3636, - [4580] = 3568, - [4581] = 3648, - [4582] = 3065, - [4583] = 3035, - [4584] = 3037, - [4585] = 3618, - [4586] = 2971, - [4587] = 3568, - [4588] = 3571, - [4589] = 3631, - [4590] = 3624, + [3986] = 2180, + [3987] = 3987, + [3988] = 3551, + [3989] = 3895, + [3990] = 3895, + [3991] = 3899, + [3992] = 3898, + [3993] = 3899, + [3994] = 3895, + [3995] = 3566, + [3996] = 3892, + [3997] = 3895, + [3998] = 3898, + [3999] = 3581, + [4000] = 3583, + [4001] = 3584, + [4002] = 3589, + [4003] = 3638, + [4004] = 3662, + [4005] = 4005, + [4006] = 3900, + [4007] = 3895, + [4008] = 3899, + [4009] = 3899, + [4010] = 3901, + [4011] = 3899, + [4012] = 3559, + [4013] = 3899, + [4014] = 3898, + [4015] = 3893, + [4016] = 3895, + [4017] = 3899, + [4018] = 3900, + [4019] = 4019, + [4020] = 3901, + [4021] = 3893, + [4022] = 3928, + [4023] = 3651, + [4024] = 4005, + [4025] = 3899, + [4026] = 3928, + [4027] = 3890, + [4028] = 3895, + [4029] = 3892, + [4030] = 3895, + [4031] = 3899, + [4032] = 3895, + [4033] = 3924, + [4034] = 3899, + [4035] = 3895, + [4036] = 3924, + [4037] = 2908, + [4038] = 3898, + [4039] = 3895, + [4040] = 3899, + [4041] = 4005, + [4042] = 3900, + [4043] = 3901, + [4044] = 3899, + [4045] = 3895, + [4046] = 3899, + [4047] = 3899, + [4048] = 3555, + [4049] = 3895, + [4050] = 3899, + [4051] = 3576, + [4052] = 3551, + [4053] = 2175, + [4054] = 2171, + [4055] = 3599, + [4056] = 3638, + [4057] = 3662, + [4058] = 3665, + [4059] = 3666, + [4060] = 2411, + [4061] = 3607, + [4062] = 3583, + [4063] = 3566, + [4064] = 3606, + [4065] = 3565, + [4066] = 3599, + [4067] = 2904, + [4068] = 2402, + [4069] = 3571, + [4070] = 3623, + [4071] = 3559, + [4072] = 3608, + [4073] = 2170, + [4074] = 3613, + [4075] = 3584, + [4076] = 2380, + [4077] = 2426, + [4078] = 3626, + [4079] = 3571, + [4080] = 3576, + [4081] = 2351, + [4082] = 3589, + [4083] = 3309, + [4084] = 3606, + [4085] = 3651, + [4086] = 3623, + [4087] = 3581, + [4088] = 3555, + [4089] = 3611, + [4090] = 3559, + [4091] = 3583, + [4092] = 3584, + [4093] = 2176, + [4094] = 3589, + [4095] = 2893, + [4096] = 3563, + [4097] = 3607, + [4098] = 3566, + [4099] = 3581, + [4100] = 3551, + [4101] = 3719, + [4102] = 3555, + [4103] = 3608, + [4104] = 3613, + [4105] = 3611, + [4106] = 2160, + [4107] = 3565, + [4108] = 3247, + [4109] = 3576, + [4110] = 2174, + [4111] = 2902, + [4112] = 3633, + [4113] = 2160, + [4114] = 3733, + [4115] = 3662, + [4116] = 3344, + [4117] = 3571, + [4118] = 3607, + [4119] = 3589, + [4120] = 3608, + [4121] = 3247, + [4122] = 4122, + [4123] = 3719, + [4124] = 3576, + [4125] = 3237, + [4126] = 3238, + [4127] = 3303, + [4128] = 3275, + [4129] = 3276, + [4130] = 3307, + [4131] = 3314, + [4132] = 3247, + [4133] = 3316, + [4134] = 3555, + [4135] = 3566, + [4136] = 3623, + [4137] = 3613, + [4138] = 3665, + [4139] = 3347, + [4140] = 3219, + [4141] = 3551, + [4142] = 3666, + [4143] = 3733, + [4144] = 3606, + [4145] = 3345, + [4146] = 3311, + [4147] = 2390, + [4148] = 3651, + [4149] = 2160, + [4150] = 3245, + [4151] = 3563, + [4152] = 3346, + [4153] = 3224, + [4154] = 3227, + [4155] = 3626, + [4156] = 3599, + [4157] = 3559, + [4158] = 3249, + [4159] = 3256, + [4160] = 3638, + [4161] = 3260, + [4162] = 3265, + [4163] = 3343, + [4164] = 3581, + [4165] = 3583, + [4166] = 3584, + [4167] = 3565, + [4168] = 3611, + [4169] = 3565, + [4170] = 3565, + [4171] = 3606, + [4172] = 3623, + [4173] = 4173, + [4174] = 3566, + [4175] = 3581, + [4176] = 3583, + [4177] = 3607, + [4178] = 3613, + [4179] = 3584, + [4180] = 3608, + [4181] = 3599, + [4182] = 3611, + [4183] = 3608, + [4184] = 3571, + [4185] = 3623, + [4186] = 3613, + [4187] = 4187, + [4188] = 3565, + [4189] = 3611, + [4190] = 3581, + [4191] = 3583, + [4192] = 3551, + [4193] = 3566, + [4194] = 2351, + [4195] = 3599, + [4196] = 4196, + [4197] = 3551, + [4198] = 3584, + [4199] = 3719, + [4200] = 3559, + [4201] = 3247, + [4202] = 3275, + [4203] = 3276, + [4204] = 3576, + [4205] = 3623, + [4206] = 3733, + [4207] = 3613, + [4208] = 3563, + [4209] = 3584, + [4210] = 3571, + [4211] = 3576, + [4212] = 3589, + [4213] = 3571, + [4214] = 3589, + [4215] = 3638, + [4216] = 3662, + [4217] = 3555, + [4218] = 3576, + [4219] = 3589, + [4220] = 4220, + [4221] = 3651, + [4222] = 3606, + [4223] = 3559, + [4224] = 3665, + [4225] = 3666, + [4226] = 3599, + [4227] = 3607, + [4228] = 3606, + [4229] = 2871, + [4230] = 3559, + [4231] = 3607, + [4232] = 3633, + [4233] = 2180, + [4234] = 3608, + [4235] = 3611, + [4236] = 3555, + [4237] = 3581, + [4238] = 3633, + [4239] = 3583, + [4240] = 4240, + [4241] = 3551, + [4242] = 2408, + [4243] = 3626, + [4244] = 3555, + [4245] = 3566, + [4246] = 4246, + [4247] = 3555, + [4248] = 4246, + [4249] = 2375, + [4250] = 3584, + [4251] = 3633, + [4252] = 3581, + [4253] = 3599, + [4254] = 3583, + [4255] = 2160, + [4256] = 3565, + [4257] = 3566, + [4258] = 3571, + [4259] = 3576, + [4260] = 3551, + [4261] = 3589, + [4262] = 3606, + [4263] = 3607, + [4264] = 3608, + [4265] = 3611, + [4266] = 3581, + [4267] = 3583, + [4268] = 3584, + [4269] = 3589, + [4270] = 2893, + [4271] = 2888, + [4272] = 4246, + [4273] = 3599, + [4274] = 3559, + [4275] = 2180, + [4276] = 4246, + [4277] = 3581, + [4278] = 2908, + [4279] = 2409, + [4280] = 3583, + [4281] = 3584, + [4282] = 3565, + [4283] = 3571, + [4284] = 3576, + [4285] = 4246, + [4286] = 3589, + [4287] = 3606, + [4288] = 3607, + [4289] = 3608, + [4290] = 3611, + [4291] = 2908, + [4292] = 2388, + [4293] = 2169, + [4294] = 2904, + [4295] = 2392, + [4296] = 3563, + [4297] = 2894, + [4298] = 4246, + [4299] = 3626, + [4300] = 3555, + [4301] = 3623, + [4302] = 3613, + [4303] = 3551, + [4304] = 3633, + [4305] = 2895, + [4306] = 3623, + [4307] = 2169, + [4308] = 3613, + [4309] = 3651, + [4310] = 3638, + [4311] = 3662, + [4312] = 3665, + [4313] = 3666, + [4314] = 2168, + [4315] = 2179, + [4316] = 3555, + [4317] = 3565, + [4318] = 3571, + [4319] = 3559, + [4320] = 2160, + [4321] = 3576, + [4322] = 3606, + [4323] = 3559, + [4324] = 3566, + [4325] = 2406, + [4326] = 3607, + [4327] = 3608, + [4328] = 2168, + [4329] = 3611, + [4330] = 3623, + [4331] = 3613, + [4332] = 3551, + [4333] = 3633, + [4334] = 2377, + [4335] = 3599, + [4336] = 2902, + [4337] = 3566, + [4338] = 4338, + [4339] = 2331, + [4340] = 2392, + [4341] = 2339, + [4342] = 2388, + [4343] = 3309, + [4344] = 4344, + [4345] = 3608, + [4346] = 4346, + [4347] = 3583, + [4348] = 2406, + [4349] = 3566, + [4350] = 3584, + [4351] = 3584, + [4352] = 3559, + [4353] = 2311, + [4354] = 4354, + [4355] = 2309, + [4356] = 2351, + [4357] = 2929, + [4358] = 3589, + [4359] = 3571, + [4360] = 3555, + [4361] = 3565, + [4362] = 3633, + [4363] = 3555, + [4364] = 3607, + [4365] = 2337, + [4366] = 2920, + [4367] = 3606, + [4368] = 3599, + [4369] = 2411, + [4370] = 2351, + [4371] = 3626, + [4372] = 2174, + [4373] = 2373, + [4374] = 4354, + [4375] = 3607, + [4376] = 3551, + [4377] = 3566, + [4378] = 2175, + [4379] = 3581, + [4380] = 3608, + [4381] = 3589, + [4382] = 2160, + [4383] = 3623, + [4384] = 3613, + [4385] = 2316, + [4386] = 3581, + [4387] = 3583, + [4388] = 3733, + [4389] = 3719, + [4390] = 3583, + [4391] = 3565, + [4392] = 3589, + [4393] = 3606, + [4394] = 2936, + [4395] = 3584, + [4396] = 3589, + [4397] = 3555, + [4398] = 3576, + [4399] = 3606, + [4400] = 3559, + [4401] = 3551, + [4402] = 3599, + [4403] = 3276, + [4404] = 3599, + [4405] = 3559, + [4406] = 2171, + [4407] = 3611, + [4408] = 3559, + [4409] = 2858, + [4410] = 2170, + [4411] = 3623, + [4412] = 3626, + [4413] = 3623, + [4414] = 3576, + [4415] = 3613, + [4416] = 3613, + [4417] = 3565, + [4418] = 3275, + [4419] = 3576, + [4420] = 3606, + [4421] = 4354, + [4422] = 3607, + [4423] = 3611, + [4424] = 3555, + [4425] = 3608, + [4426] = 3566, + [4427] = 3611, + [4428] = 3633, + [4429] = 3551, + [4430] = 2409, + [4431] = 4431, + [4432] = 2334, + [4433] = 3581, + [4434] = 3565, + [4435] = 3599, + [4436] = 2345, + [4437] = 2397, + [4438] = 4354, + [4439] = 2160, + [4440] = 3576, + [4441] = 3551, + [4442] = 3608, + [4443] = 2380, + [4444] = 3563, + [4445] = 3626, + [4446] = 2176, + [4447] = 4354, + [4448] = 2426, + [4449] = 3584, + [4450] = 3633, + [4451] = 2411, + [4452] = 3613, + [4453] = 3571, + [4454] = 3563, + [4455] = 3581, + [4456] = 4354, + [4457] = 2179, + [4458] = 3607, + [4459] = 2342, + [4460] = 2390, + [4461] = 3583, + [4462] = 2402, + [4463] = 3719, + [4464] = 3623, + [4465] = 3651, + [4466] = 3638, + [4467] = 3662, + [4468] = 3665, + [4469] = 3666, + [4470] = 3247, + [4471] = 2928, + [4472] = 2232, + [4473] = 2937, + [4474] = 3563, + [4475] = 3566, + [4476] = 3247, + [4477] = 2373, + [4478] = 3611, + [4479] = 3733, + [4480] = 3571, + [4481] = 2375, + [4482] = 2949, + [4483] = 2408, + [4484] = 2377, + [4485] = 3571, + [4486] = 3581, + [4487] = 3219, + [4488] = 3555, + [4489] = 3565, + [4490] = 3571, + [4491] = 3576, + [4492] = 3606, + [4493] = 3566, + [4494] = 3607, + [4495] = 3608, + [4496] = 3611, + [4497] = 3623, + [4498] = 3613, + [4499] = 3551, + [4500] = 3599, + [4501] = 3565, + [4502] = 3571, + [4503] = 3576, + [4504] = 3606, + [4505] = 3607, + [4506] = 3608, + [4507] = 3611, + [4508] = 4508, + [4509] = 3275, + [4510] = 3276, + [4511] = 4511, + [4512] = 3247, + [4513] = 3623, + [4514] = 4514, + [4515] = 3581, + [4516] = 3583, + [4517] = 3589, + [4518] = 1924, + [4519] = 4511, + [4520] = 3581, + [4521] = 3583, + [4522] = 3565, + [4523] = 3571, + [4524] = 3576, + [4525] = 3589, + [4526] = 3606, + [4527] = 3607, + [4528] = 3608, + [4529] = 3611, + [4530] = 3555, + [4531] = 3566, + [4532] = 3623, + [4533] = 3613, + [4534] = 3551, + [4535] = 3599, + [4536] = 3566, + [4537] = 1901, + [4538] = 4511, + [4539] = 2869, + [4540] = 1928, + [4541] = 2371, + [4542] = 2351, + [4543] = 3581, + [4544] = 3583, + [4545] = 3589, + [4546] = 3566, + [4547] = 2868, + [4548] = 3247, + [4549] = 3581, + [4550] = 3583, + [4551] = 3584, + [4552] = 3565, + [4553] = 3571, + [4554] = 3576, + [4555] = 3589, + [4556] = 3606, + [4557] = 3566, + [4558] = 3607, + [4559] = 3608, + [4560] = 3611, + [4561] = 3613, + [4562] = 3551, + [4563] = 4563, + [4564] = 3733, + [4565] = 2397, + [4566] = 2860, + [4567] = 3581, + [4568] = 3583, + [4569] = 3589, + [4570] = 3566, + [4571] = 3555, + [4572] = 2874, + [4573] = 3035, + [4574] = 3036, + [4575] = 3037, + [4576] = 3581, + [4577] = 3583, + [4578] = 3589, + [4579] = 3566, + [4580] = 3040, + [4581] = 3043, + [4582] = 3048, + [4583] = 2956, + [4584] = 2958, + [4585] = 2960, + [4586] = 2959, + [4587] = 2961, + [4588] = 2962, + [4589] = 2963, + [4590] = 2964, [4591] = 2966, - [4592] = 2970, - [4593] = 3626, - [4594] = 3684, - [4595] = 3688, - [4596] = 3558, - [4597] = 3566, - [4598] = 2967, - [4599] = 3657, - [4600] = 3662, - [4601] = 3585, - [4602] = 3629, - [4603] = 3590, - [4604] = 3592, - [4605] = 3604, - [4606] = 3629, - [4607] = 4607, - [4608] = 3010, - [4609] = 3648, - [4610] = 3618, - [4611] = 3005, - [4612] = 3039, - [4613] = 3040, - [4614] = 2374, - [4615] = 3046, - [4616] = 3568, - [4617] = 2988, - [4618] = 3598, - [4619] = 3568, - [4620] = 3016, - [4621] = 3571, - [4622] = 1901, - [4623] = 3585, - [4624] = 3250, - [4625] = 2982, - [4626] = 3838, - [4627] = 3648, - [4628] = 3027, - [4629] = 2999, - [4630] = 3638, - [4631] = 3295, - [4632] = 2381, - [4633] = 2878, - [4634] = 1927, - [4635] = 3571, - [4636] = 4555, - [4637] = 3045, - [4638] = 2879, - [4639] = 3047, - [4640] = 3049, - [4641] = 3050, - [4642] = 3052, - [4643] = 3053, - [4644] = 3019, - [4645] = 3055, - [4646] = 3056, - [4647] = 3064, - [4648] = 3575, - [4649] = 3025, - [4650] = 3605, - [4651] = 3031, - [4652] = 2977, - [4653] = 3575, - [4654] = 2359, - [4655] = 3624, - [4656] = 3626, - [4657] = 3033, - [4658] = 3048, - [4659] = 3624, - [4660] = 3624, - [4661] = 3626, - [4662] = 3636, - [4663] = 3638, - [4664] = 3648, - [4665] = 2973, - [4666] = 3747, - [4667] = 3624, - [4668] = 3250, - [4669] = 3631, - [4670] = 3648, - [4671] = 3577, - [4672] = 3558, - [4673] = 3618, - [4674] = 3566, - [4675] = 3590, - [4676] = 3577, - [4677] = 3592, - [4678] = 3604, - [4679] = 3063, - [4680] = 3629, - [4681] = 3626, - [4682] = 3605, - [4683] = 3636, - [4684] = 3638, - [4685] = 3575, - [4686] = 3024, - [4687] = 3061, - [4688] = 3648, - [4689] = 3577, - [4690] = 3618, - [4691] = 3624, - [4692] = 3631, - [4693] = 3558, - [4694] = 3566, - [4695] = 3590, - [4696] = 3592, - [4697] = 3604, - [4698] = 3629, - [4699] = 3626, - [4700] = 3636, - [4701] = 3638, - [4702] = 3648, - [4703] = 4555, - [4704] = 3624, - [4705] = 3624, - [4706] = 3568, - [4707] = 3062, - [4708] = 3605, - [4709] = 3571, - [4710] = 3585, - [4711] = 3591, - [4712] = 3605, - [4713] = 3598, - [4714] = 3577, - [4715] = 3044, - [4716] = 3575, - [4717] = 3624, - [4718] = 3631, - [4719] = 3558, - [4720] = 3566, - [4721] = 3590, - [4722] = 3592, - [4723] = 3604, - [4724] = 3629, - [4725] = 3626, - [4726] = 3636, - [4727] = 3638, - [4728] = 3648, - [4729] = 3626, - [4730] = 3337, - [4731] = 3631, - [4732] = 3558, - [4733] = 3575, - [4734] = 3591, - [4735] = 3605, - [4736] = 3598, - [4737] = 3618, - [4738] = 3618, - [4739] = 3575, - [4740] = 3566, - [4741] = 3624, - [4742] = 3250, - [4743] = 3590, - [4744] = 3838, - [4745] = 3591, - [4746] = 3631, - [4747] = 3598, - [4748] = 3618, - [4749] = 3575, - [4750] = 4750, - [4751] = 3648, - [4752] = 3618, - [4753] = 3592, - [4754] = 3604, - [4755] = 3629, - [4756] = 3618, - [4757] = 2874, - [4758] = 3618, - [4759] = 3638, - [4760] = 3250, - [4761] = 3340, - [4762] = 3343, - [4763] = 3626, - [4764] = 3345, - [4765] = 3598, - [4766] = 3571, - [4767] = 3568, - [4768] = 3571, - [4769] = 3683, - [4770] = 3558, - [4771] = 3631, - [4772] = 2993, - [4773] = 3558, - [4774] = 3566, - [4775] = 3585, - [4776] = 3590, - [4777] = 2962, - [4778] = 3592, - [4779] = 3346, - [4780] = 3349, - [4781] = 3683, - [4782] = 3684, - [4783] = 3688, - [4784] = 3657, - [4785] = 3662, - [4786] = 3350, - [4787] = 3566, - [4788] = 3590, - [4789] = 3592, - [4790] = 4790, - [4791] = 3604, - [4792] = 3624, - [4793] = 3568, - [4794] = 3571, - [4795] = 3575, - [4796] = 3631, - [4797] = 3558, - [4798] = 3566, - [4799] = 3585, - [4800] = 3590, - [4801] = 3577, - [4802] = 3592, - [4803] = 3604, - [4804] = 3629, - [4805] = 3626, - [4806] = 3636, - [4807] = 3638, - [4808] = 3648, - [4809] = 2996, - [4810] = 3568, - [4811] = 3591, - [4812] = 3014, - [4813] = 3571, - [4814] = 3000, - [4815] = 3007, - [4816] = 3015, - [4817] = 3030, - [4818] = 4555, - [4819] = 3577, - [4820] = 4555, - [4821] = 3001, - [4822] = 3575, - [4823] = 3629, - [4824] = 3631, - [4825] = 3575, - [4826] = 3683, - [4827] = 3684, - [4828] = 3688, - [4829] = 3657, - [4830] = 3662, - [4831] = 2876, - [4832] = 3558, - [4833] = 3051, - [4834] = 3631, - [4835] = 3558, - [4836] = 3566, - [4837] = 3585, - [4838] = 3590, - [4839] = 3591, - [4840] = 3605, - [4841] = 3598, - [4842] = 3618, - [4843] = 3605, - [4844] = 3684, - [4845] = 3592, - [4846] = 3638, - [4847] = 3577, - [4848] = 3626, - [4849] = 3636, - [4850] = 3568, - [4851] = 3638, - [4852] = 3571, - [4853] = 3648, - [4854] = 4854, - [4855] = 4855, - [4856] = 3648, - [4857] = 3648, - [4858] = 3631, - [4859] = 3558, - [4860] = 3566, - [4861] = 3585, - [4862] = 3568, - [4863] = 3590, - [4864] = 3592, - [4865] = 3604, - [4866] = 3629, - [4867] = 4867, - [4868] = 4868, + [4592] = 2967, + [4593] = 2968, + [4594] = 2969, + [4595] = 2970, + [4596] = 2971, + [4597] = 2972, + [4598] = 2973, + [4599] = 2974, + [4600] = 2975, + [4601] = 2983, + [4602] = 3563, + [4603] = 2984, + [4604] = 2986, + [4605] = 2987, + [4606] = 2988, + [4607] = 2989, + [4608] = 2990, + [4609] = 2991, + [4610] = 2992, + [4611] = 2993, + [4612] = 2996, + [4613] = 2998, + [4614] = 4511, + [4615] = 3599, + [4616] = 3559, + [4617] = 3316, + [4618] = 3623, + [4619] = 3638, + [4620] = 3662, + [4621] = 3002, + [4622] = 3003, + [4623] = 3665, + [4624] = 3666, + [4625] = 3581, + [4626] = 3583, + [4627] = 3584, + [4628] = 3565, + [4629] = 3571, + [4630] = 3576, + [4631] = 3589, + [4632] = 3606, + [4633] = 3005, + [4634] = 3566, + [4635] = 3607, + [4636] = 3608, + [4637] = 3611, + [4638] = 3006, + [4639] = 3055, + [4640] = 4640, + [4641] = 3008, + [4642] = 3009, + [4643] = 3613, + [4644] = 3599, + [4645] = 3559, + [4646] = 3010, + [4647] = 3247, + [4648] = 3733, + [4649] = 3011, + [4650] = 3599, + [4651] = 3551, + [4652] = 3012, + [4653] = 3013, + [4654] = 3014, + [4655] = 3016, + [4656] = 3017, + [4657] = 3019, + [4658] = 3021, + [4659] = 3626, + [4660] = 2997, + [4661] = 3022, + [4662] = 3023, + [4663] = 3024, + [4664] = 3025, + [4665] = 3026, + [4666] = 2957, + [4667] = 3027, + [4668] = 3584, + [4669] = 3719, + [4670] = 3029, + [4671] = 3555, + [4672] = 3623, + [4673] = 3555, + [4674] = 3623, + [4675] = 3613, + [4676] = 3551, + [4677] = 3599, + [4678] = 3719, + [4679] = 3599, + [4680] = 3559, + [4681] = 3555, + [4682] = 3633, + [4683] = 3566, + [4684] = 3623, + [4685] = 3563, + [4686] = 3613, + [4687] = 3584, + [4688] = 3551, + [4689] = 3626, + [4690] = 3633, + [4691] = 3559, + [4692] = 3555, + [4693] = 3565, + [4694] = 3571, + [4695] = 3576, + [4696] = 3606, + [4697] = 3607, + [4698] = 3608, + [4699] = 3611, + [4700] = 3623, + [4701] = 3613, + [4702] = 3551, + [4703] = 3599, + [4704] = 3581, + [4705] = 3583, + [4706] = 3584, + [4707] = 3589, + [4708] = 3041, + [4709] = 3042, + [4710] = 3633, + [4711] = 3563, + [4712] = 3633, + [4713] = 3626, + [4714] = 3584, + [4715] = 3555, + [4716] = 3565, + [4717] = 3571, + [4718] = 3576, + [4719] = 3606, + [4720] = 3607, + [4721] = 3608, + [4722] = 3611, + [4723] = 3623, + [4724] = 3613, + [4725] = 3551, + [4726] = 3599, + [4727] = 3311, + [4728] = 3633, + [4729] = 3584, + [4730] = 3563, + [4731] = 3633, + [4732] = 3626, + [4733] = 3559, + [4734] = 3559, + [4735] = 3584, + [4736] = 3555, + [4737] = 3565, + [4738] = 3571, + [4739] = 3576, + [4740] = 3606, + [4741] = 3607, + [4742] = 3608, + [4743] = 3611, + [4744] = 3623, + [4745] = 3247, + [4746] = 3613, + [4747] = 3733, + [4748] = 3551, + [4749] = 3719, + [4750] = 3563, + [4751] = 3626, + [4752] = 3559, + [4753] = 3584, + [4754] = 3599, + [4755] = 3559, + [4756] = 3559, + [4757] = 3559, + [4758] = 3054, + [4759] = 3343, + [4760] = 3344, + [4761] = 3345, + [4762] = 3651, + [4763] = 3346, + [4764] = 3347, + [4765] = 3224, + [4766] = 3227, + [4767] = 4511, + [4768] = 3651, + [4769] = 3638, + [4770] = 3662, + [4771] = 3665, + [4772] = 3666, + [4773] = 3555, + [4774] = 3581, + [4775] = 3583, + [4776] = 3584, + [4777] = 3565, + [4778] = 3571, + [4779] = 3576, + [4780] = 3589, + [4781] = 3606, + [4782] = 3566, + [4783] = 3607, + [4784] = 3608, + [4785] = 3611, + [4786] = 3623, + [4787] = 3613, + [4788] = 3583, + [4789] = 3584, + [4790] = 3565, + [4791] = 3551, + [4792] = 3599, + [4793] = 3571, + [4794] = 3576, + [4795] = 3589, + [4796] = 3606, + [4797] = 3566, + [4798] = 3607, + [4799] = 3608, + [4800] = 3611, + [4801] = 3613, + [4802] = 3551, + [4803] = 3651, + [4804] = 3638, + [4805] = 3662, + [4806] = 3665, + [4807] = 3666, + [4808] = 3237, + [4809] = 3238, + [4810] = 3245, + [4811] = 3249, + [4812] = 3256, + [4813] = 3260, + [4814] = 3265, + [4815] = 3581, + [4816] = 3583, + [4817] = 3565, + [4818] = 3571, + [4819] = 3576, + [4820] = 3589, + [4821] = 3606, + [4822] = 3563, + [4823] = 3633, + [4824] = 3626, + [4825] = 3607, + [4826] = 3559, + [4827] = 3608, + [4828] = 3611, + [4829] = 3303, + [4830] = 3307, + [4831] = 3314, + [4832] = 3555, + [4833] = 3555, + [4834] = 3611, + [4835] = 4835, + [4836] = 3581, + [4837] = 4835, + [4838] = 4835, + [4839] = 3589, + [4840] = 3665, + [4841] = 3666, + [4842] = 3583, + [4843] = 3581, + [4844] = 3583, + [4845] = 3565, + [4846] = 4846, + [4847] = 3571, + [4848] = 3551, + [4849] = 3576, + [4850] = 4850, + [4851] = 3555, + [4852] = 3589, + [4853] = 3566, + [4854] = 3623, + [4855] = 3613, + [4856] = 3606, + [4857] = 3551, + [4858] = 3599, + [4859] = 3607, + [4860] = 3608, + [4861] = 3611, + [4862] = 3309, + [4863] = 3584, + [4864] = 3565, + [4865] = 3555, + [4866] = 3566, + [4867] = 3623, + [4868] = 3613, [4869] = 4869, - [4870] = 4870, - [4871] = 3648, - [4872] = 3568, + [4870] = 3551, + [4871] = 4871, + [4872] = 3599, [4873] = 4873, - [4874] = 3571, - [4875] = 3631, - [4876] = 3558, - [4877] = 3566, - [4878] = 3624, - [4879] = 3629, - [4880] = 4873, - [4881] = 3585, - [4882] = 3590, - [4883] = 3592, - [4884] = 4884, - [4885] = 3604, - [4886] = 3629, - [4887] = 3571, - [4888] = 3631, - [4889] = 3638, - [4890] = 3624, - [4891] = 3577, - [4892] = 3626, - [4893] = 3636, - [4894] = 3638, - [4895] = 3648, - [4896] = 4896, - [4897] = 3558, - [4898] = 4870, - [4899] = 3566, - [4900] = 3624, - [4901] = 3626, - [4902] = 4873, - [4903] = 3624, - [4904] = 4870, - [4905] = 3577, - [4906] = 4870, + [4874] = 4874, + [4875] = 3571, + [4876] = 3576, + [4877] = 3589, + [4878] = 3606, + [4879] = 3607, + [4880] = 3719, + [4881] = 3608, + [4882] = 4869, + [4883] = 4835, + [4884] = 3581, + [4885] = 4885, + [4886] = 3555, + [4887] = 4887, + [4888] = 3583, + [4889] = 3623, + [4890] = 4835, + [4891] = 3565, + [4892] = 3571, + [4893] = 3576, + [4894] = 3589, + [4895] = 3606, + [4896] = 3607, + [4897] = 3733, + [4898] = 3608, + [4899] = 3611, + [4900] = 3555, + [4901] = 3566, + [4902] = 4902, + [4903] = 4903, + [4904] = 3623, + [4905] = 3613, + [4906] = 3551, [4907] = 4907, - [4908] = 3626, - [4909] = 3636, + [4908] = 3611, + [4909] = 3599, [4910] = 4910, - [4911] = 4870, - [4912] = 3747, - [4913] = 3638, - [4914] = 2956, - [4915] = 3648, - [4916] = 3604, - [4917] = 4907, - [4918] = 4855, - [4919] = 4870, - [4920] = 4920, - [4921] = 4921, - [4922] = 3585, - [4923] = 4870, - [4924] = 4870, - [4925] = 4873, - [4926] = 4926, - [4927] = 4907, - [4928] = 3618, - [4929] = 3568, - [4930] = 3648, - [4931] = 4907, - [4932] = 3571, - [4933] = 3618, - [4934] = 3631, - [4935] = 3558, - [4936] = 4870, - [4937] = 4870, - [4938] = 3566, - [4939] = 3585, - [4940] = 3590, - [4941] = 3592, - [4942] = 3604, - [4943] = 4790, - [4944] = 3568, - [4945] = 3571, - [4946] = 3575, - [4947] = 3631, - [4948] = 3558, - [4949] = 3566, - [4950] = 3585, - [4951] = 3590, - [4952] = 3629, - [4953] = 3747, - [4954] = 3592, - [4955] = 4870, - [4956] = 4870, - [4957] = 3605, - [4958] = 3604, - [4959] = 4907, - [4960] = 3629, - [4961] = 3624, - [4962] = 4962, - [4963] = 3577, - [4964] = 3626, - [4965] = 3683, - [4966] = 3636, - [4967] = 3638, - [4968] = 3638, - [4969] = 3648, - [4970] = 4870, - [4971] = 3605, - [4972] = 3575, - [4973] = 3568, - [4974] = 3626, - [4975] = 3624, - [4976] = 3618, - [4977] = 3838, - [4978] = 3590, - [4979] = 3592, - [4980] = 3604, - [4981] = 3571, - [4982] = 4870, - [4983] = 3605, - [4984] = 3624, - [4985] = 3575, - [4986] = 3577, - [4987] = 3575, - [4988] = 3618, - [4989] = 3631, - [4990] = 3558, - [4991] = 3566, - [4992] = 3585, - [4993] = 3838, - [4994] = 3747, - [4995] = 3590, - [4996] = 4870, - [4997] = 3575, - [4998] = 3618, - [4999] = 3577, - [5000] = 3592, - [5001] = 4870, - [5002] = 3605, - [5003] = 3575, - [5004] = 3604, - [5005] = 3618, - [5006] = 3629, - [5007] = 4870, - [5008] = 3605, - [5009] = 3575, - [5010] = 3618, - [5011] = 3618, - [5012] = 3605, - [5013] = 4870, - [5014] = 3626, - [5015] = 4907, - [5016] = 3636, - [5017] = 3638, - [5018] = 3838, - [5019] = 5019, - [5020] = 5020, - [5021] = 4873, - [5022] = 4870, - [5023] = 2419, - [5024] = 2446, - [5025] = 3577, - [5026] = 3636, - [5027] = 5027, - [5028] = 3575, - [5029] = 4870, - [5030] = 5030, - [5031] = 3568, - [5032] = 3571, - [5033] = 3648, - [5034] = 3631, - [5035] = 3558, - [5036] = 3566, - [5037] = 3585, - [5038] = 3618, - [5039] = 3590, - [5040] = 4873, - [5041] = 3592, - [5042] = 3604, - [5043] = 3629, - [5044] = 4907, - [5045] = 3636, - [5046] = 4870, - [5047] = 5047, - [5048] = 5048, - [5049] = 3629, - [5050] = 3657, - [5051] = 3662, - [5052] = 3342, - [5053] = 4870, - [5054] = 3626, - [5055] = 3636, - [5056] = 3568, - [5057] = 3684, - [5058] = 3688, - [5059] = 4870, - [5060] = 3571, - [5061] = 5061, - [5062] = 4870, - [5063] = 3631, - [5064] = 3558, - [5065] = 5065, - [5066] = 4870, - [5067] = 5067, - [5068] = 3566, - [5069] = 3585, - [5070] = 4907, - [5071] = 3568, - [5072] = 3590, - [5073] = 3571, - [5074] = 3592, - [5075] = 3575, - [5076] = 3604, - [5077] = 3629, - [5078] = 3631, - [5079] = 3683, - [5080] = 3684, - [5081] = 3688, - [5082] = 3657, - [5083] = 3662, - [5084] = 3683, - [5085] = 3684, - [5086] = 3688, - [5087] = 3657, - [5088] = 3662, - [5089] = 3558, - [5090] = 3683, - [5091] = 3684, - [5092] = 3688, - [5093] = 3657, + [4911] = 4911, + [4912] = 4912, + [4913] = 4835, + [4914] = 4914, + [4915] = 4915, + [4916] = 3606, + [4917] = 4871, + [4918] = 4869, + [4919] = 3566, + [4920] = 3599, + [4921] = 3559, + [4922] = 3566, + [4923] = 3599, + [4924] = 4835, + [4925] = 3607, + [4926] = 4835, + [4927] = 3559, + [4928] = 3581, + [4929] = 3583, + [4930] = 3565, + [4931] = 3571, + [4932] = 3576, + [4933] = 3589, + [4934] = 3606, + [4935] = 3607, + [4936] = 3608, + [4937] = 3611, + [4938] = 4938, + [4939] = 3608, + [4940] = 3555, + [4941] = 3566, + [4942] = 3623, + [4943] = 3247, + [4944] = 3559, + [4945] = 3613, + [4946] = 4835, + [4947] = 3633, + [4948] = 3551, + [4949] = 3599, + [4950] = 3611, + [4951] = 3583, + [4952] = 3651, + [4953] = 4953, + [4954] = 4954, + [4955] = 3581, + [4956] = 3623, + [4957] = 4835, + [4958] = 4869, + [4959] = 3581, + [4960] = 3583, + [4961] = 3584, + [4962] = 3565, + [4963] = 3571, + [4964] = 4871, + [4965] = 3581, + [4966] = 4835, + [4967] = 3633, + [4968] = 3583, + [4969] = 3565, + [4970] = 3571, + [4971] = 3584, + [4972] = 3576, + [4973] = 3589, + [4974] = 3559, + [4975] = 3733, + [4976] = 3606, + [4977] = 3607, + [4978] = 3608, + [4979] = 3611, + [4980] = 4835, + [4981] = 3633, + [4982] = 3584, + [4983] = 3559, + [4984] = 3607, + [4985] = 3608, + [4986] = 3584, + [4987] = 3559, + [4988] = 3566, + [4989] = 4835, + [4990] = 3633, + [4991] = 3584, + [4992] = 3559, + [4993] = 4835, + [4994] = 3633, + [4995] = 3584, + [4996] = 3559, + [4997] = 3633, + [4998] = 4871, + [4999] = 3623, + [5000] = 3613, + [5001] = 3551, + [5002] = 3599, + [5003] = 3576, + [5004] = 4835, + [5005] = 3733, + [5006] = 4835, + [5007] = 3589, + [5008] = 3606, + [5009] = 4835, + [5010] = 3584, + [5011] = 5011, + [5012] = 4869, + [5013] = 4835, + [5014] = 4835, + [5015] = 4835, + [5016] = 4835, + [5017] = 3559, + [5018] = 4869, + [5019] = 3613, + [5020] = 3638, + [5021] = 4871, + [5022] = 3662, + [5023] = 3581, + [5024] = 4508, + [5025] = 3583, + [5026] = 3565, + [5027] = 3571, + [5028] = 3576, + [5029] = 3589, + [5030] = 3606, + [5031] = 3607, + [5032] = 3608, + [5033] = 3611, + [5034] = 3566, + [5035] = 3555, + [5036] = 4873, + [5037] = 3555, + [5038] = 3566, + [5039] = 3623, + [5040] = 3613, + [5041] = 3551, + [5042] = 3599, + [5043] = 3599, + [5044] = 3607, + [5045] = 4835, + [5046] = 3608, + [5047] = 4869, + [5048] = 4835, + [5049] = 4835, + [5050] = 3611, + [5051] = 3613, + [5052] = 5052, + [5053] = 3719, + [5054] = 4835, + [5055] = 3719, + [5056] = 3651, + [5057] = 3638, + [5058] = 3662, + [5059] = 3665, + [5060] = 3666, + [5061] = 3651, + [5062] = 3638, + [5063] = 3662, + [5064] = 3665, + [5065] = 3666, + [5066] = 3651, + [5067] = 3638, + [5068] = 3662, + [5069] = 3665, + [5070] = 3666, + [5071] = 5071, + [5072] = 4869, + [5073] = 5073, + [5074] = 3651, + [5075] = 3638, + [5076] = 3662, + [5077] = 3665, + [5078] = 3666, + [5079] = 3551, + [5080] = 2908, + [5081] = 3551, + [5082] = 2411, + [5083] = 5083, + [5084] = 2426, + [5085] = 3613, + [5086] = 3555, + [5087] = 3584, + [5088] = 3565, + [5089] = 3571, + [5090] = 4871, + [5091] = 3651, + [5092] = 3576, + [5093] = 3638, [5094] = 3662, [5095] = 5095, - [5096] = 3566, - [5097] = 3683, - [5098] = 3684, - [5099] = 3688, - [5100] = 3657, - [5101] = 3662, - [5102] = 3585, - [5103] = 3590, - [5104] = 3638, - [5105] = 5105, - [5106] = 3624, - [5107] = 4870, - [5108] = 3683, - [5109] = 3577, - [5110] = 3688, - [5111] = 3626, - [5112] = 3657, - [5113] = 3662, - [5114] = 3624, - [5115] = 3636, - [5116] = 3577, - [5117] = 3250, - [5118] = 3604, + [5096] = 3665, + [5097] = 3666, + [5098] = 3623, + [5099] = 3581, + [5100] = 3583, + [5101] = 3565, + [5102] = 3571, + [5103] = 3576, + [5104] = 3589, + [5105] = 3606, + [5106] = 4835, + [5107] = 5107, + [5108] = 3719, + [5109] = 5109, + [5110] = 3733, + [5111] = 5111, + [5112] = 3247, + [5113] = 5113, + [5114] = 3555, + [5115] = 3566, + [5116] = 3623, + [5117] = 3613, + [5118] = 3551, [5119] = 5119, - [5120] = 3577, - [5121] = 5121, - [5122] = 3312, - [5123] = 3626, - [5124] = 5124, - [5125] = 3636, - [5126] = 3591, - [5127] = 3310, - [5128] = 5128, - [5129] = 3312, - [5130] = 5130, - [5131] = 5131, - [5132] = 5132, - [5133] = 3598, - [5134] = 3575, - [5135] = 5135, - [5136] = 5136, + [5120] = 3581, + [5121] = 3583, + [5122] = 3584, + [5123] = 3565, + [5124] = 3571, + [5125] = 3576, + [5126] = 5126, + [5127] = 5127, + [5128] = 3589, + [5129] = 3606, + [5130] = 2426, + [5131] = 3607, + [5132] = 3608, + [5133] = 3611, + [5134] = 5134, + [5135] = 2257, + [5136] = 5095, [5137] = 5137, - [5138] = 5138, - [5139] = 5139, - [5140] = 3592, - [5141] = 3747, - [5142] = 5138, - [5143] = 3638, - [5144] = 3648, - [5145] = 5132, - [5146] = 3250, - [5147] = 3618, - [5148] = 3577, + [5138] = 3719, + [5139] = 3247, + [5140] = 2411, + [5141] = 2426, + [5142] = 5142, + [5143] = 5143, + [5144] = 4954, + [5145] = 5145, + [5146] = 5146, + [5147] = 4873, + [5148] = 5148, [5149] = 5149, [5150] = 5150, - [5151] = 5151, - [5152] = 4854, - [5153] = 5124, - [5154] = 3838, - [5155] = 3747, - [5156] = 5061, - [5157] = 3250, + [5151] = 3563, + [5152] = 2410, + [5153] = 4846, + [5154] = 2249, + [5155] = 2232, + [5156] = 5148, + [5157] = 5149, [5158] = 5158, [5159] = 5159, - [5160] = 2421, - [5161] = 3585, - [5162] = 2231, - [5163] = 3575, - [5164] = 3624, - [5165] = 3577, - [5166] = 3626, - [5167] = 3598, - [5168] = 5124, - [5169] = 3636, - [5170] = 3626, - [5171] = 3636, - [5172] = 3638, - [5173] = 5173, - [5174] = 5174, - [5175] = 2251, - [5176] = 2231, - [5177] = 3838, - [5178] = 3568, - [5179] = 3571, - [5180] = 3575, - [5181] = 3631, - [5182] = 3558, - [5183] = 3566, - [5184] = 3585, - [5185] = 3590, - [5186] = 3592, - [5187] = 3604, - [5188] = 3629, - [5189] = 5139, - [5190] = 5190, + [5160] = 5160, + [5161] = 3626, + [5162] = 3733, + [5163] = 5163, + [5164] = 3555, + [5165] = 3566, + [5166] = 3623, + [5167] = 3613, + [5168] = 3551, + [5169] = 5169, + [5170] = 3581, + [5171] = 5171, + [5172] = 3583, + [5173] = 3584, + [5174] = 3565, + [5175] = 3571, + [5176] = 3576, + [5177] = 3589, + [5178] = 3606, + [5179] = 3607, + [5180] = 3608, + [5181] = 3611, + [5182] = 2410, + [5183] = 5183, + [5184] = 5184, + [5185] = 5185, + [5186] = 5143, + [5187] = 5143, + [5188] = 3733, + [5189] = 5142, + [5190] = 3555, [5191] = 5191, - [5192] = 3590, - [5193] = 3638, - [5194] = 4868, - [5195] = 3558, + [5192] = 3275, + [5193] = 3276, + [5194] = 5145, + [5195] = 5146, [5196] = 5196, - [5197] = 5136, - [5198] = 5198, - [5199] = 3591, - [5200] = 3566, - [5201] = 3747, - [5202] = 5202, - [5203] = 3571, - [5204] = 3568, - [5205] = 3250, - [5206] = 3598, - [5207] = 3558, - [5208] = 5208, - [5209] = 3568, - [5210] = 3747, - [5211] = 5135, - [5212] = 3250, - [5213] = 5213, - [5214] = 5214, - [5215] = 3648, - [5216] = 5214, - [5217] = 3618, - [5218] = 3624, - [5219] = 3571, - [5220] = 3575, - [5221] = 3575, - [5222] = 5222, - [5223] = 3838, - [5224] = 3577, - [5225] = 3631, - [5226] = 3626, - [5227] = 5227, - [5228] = 3747, - [5229] = 3585, - [5230] = 5173, - [5231] = 2419, - [5232] = 2446, - [5233] = 3838, - [5234] = 5234, - [5235] = 3592, - [5236] = 3591, - [5237] = 3631, - [5238] = 3636, - [5239] = 5135, - [5240] = 5136, - [5241] = 3590, - [5242] = 5149, - [5243] = 5243, - [5244] = 5132, - [5245] = 5213, - [5246] = 3598, - [5247] = 3747, - [5248] = 3624, - [5249] = 3577, - [5250] = 3626, - [5251] = 5135, - [5252] = 5136, - [5253] = 4855, - [5254] = 5132, - [5255] = 3604, - [5256] = 3636, - [5257] = 5257, - [5258] = 3838, - [5259] = 3250, - [5260] = 3638, - [5261] = 3566, - [5262] = 3648, - [5263] = 5135, - [5264] = 5136, - [5265] = 5132, - [5266] = 3618, - [5267] = 5267, - [5268] = 3558, - [5269] = 5124, - [5270] = 5270, - [5271] = 3624, - [5272] = 5136, - [5273] = 3638, - [5274] = 3585, - [5275] = 5275, - [5276] = 5276, - [5277] = 3566, - [5278] = 3631, - [5279] = 2271, - [5280] = 3568, - [5281] = 3747, - [5282] = 3585, - [5283] = 3648, - [5284] = 3590, - [5285] = 3629, - [5286] = 3571, - [5287] = 3618, - [5288] = 3592, - [5289] = 3604, - [5290] = 3624, - [5291] = 5019, - [5292] = 3629, - [5293] = 3568, - [5294] = 3631, - [5295] = 5135, - [5296] = 5136, - [5297] = 3558, - [5298] = 3591, - [5299] = 3598, + [5197] = 2232, + [5198] = 3566, + [5199] = 5143, + [5200] = 3563, + [5201] = 3623, + [5202] = 3613, + [5203] = 3626, + [5204] = 5204, + [5205] = 3599, + [5206] = 3559, + [5207] = 3551, + [5208] = 3733, + [5209] = 3581, + [5210] = 3583, + [5211] = 3584, + [5212] = 3565, + [5213] = 3571, + [5214] = 3576, + [5215] = 3589, + [5216] = 3606, + [5217] = 3607, + [5218] = 3608, + [5219] = 5219, + [5220] = 3555, + [5221] = 5221, + [5222] = 3563, + [5223] = 3626, + [5224] = 3565, + [5225] = 3599, + [5226] = 3559, + [5227] = 3571, + [5228] = 3576, + [5229] = 3606, + [5230] = 3607, + [5231] = 3733, + [5232] = 3608, + [5233] = 3611, + [5234] = 5107, + [5235] = 3563, + [5236] = 3599, + [5237] = 5237, + [5238] = 3275, + [5239] = 3276, + [5240] = 3626, + [5241] = 3623, + [5242] = 3613, + [5243] = 3599, + [5244] = 3559, + [5245] = 3566, + [5246] = 5246, + [5247] = 3551, + [5248] = 3719, + [5249] = 3719, + [5250] = 3559, + [5251] = 3581, + [5252] = 5252, + [5253] = 3583, + [5254] = 3584, + [5255] = 3589, + [5256] = 3733, + [5257] = 3719, + [5258] = 3247, + [5259] = 5219, + [5260] = 4850, + [5261] = 5158, + [5262] = 5262, + [5263] = 5159, + [5264] = 5160, + [5265] = 5107, + [5266] = 5219, + [5267] = 3247, + [5268] = 5150, + [5269] = 3555, + [5270] = 3566, + [5271] = 3623, + [5272] = 3613, + [5273] = 3551, + [5274] = 3581, + [5275] = 3583, + [5276] = 3584, + [5277] = 3565, + [5278] = 3571, + [5279] = 3576, + [5280] = 3589, + [5281] = 3606, + [5282] = 3607, + [5283] = 3608, + [5284] = 3611, + [5285] = 5285, + [5286] = 5119, + [5287] = 3719, + [5288] = 3247, + [5289] = 5289, + [5290] = 3719, + [5291] = 5107, + [5292] = 5219, + [5293] = 5150, + [5294] = 5219, + [5295] = 5150, + [5296] = 5107, + [5297] = 5219, + [5298] = 5150, + [5299] = 5219, [5300] = 5300, - [5301] = 3566, - [5302] = 2446, - [5303] = 3590, - [5304] = 3592, - [5305] = 3648, - [5306] = 3618, - [5307] = 3604, - [5308] = 3591, - [5309] = 5309, - [5310] = 3629, - [5311] = 3571, - [5312] = 2421, - [5313] = 5208, - [5314] = 5131, - [5315] = 3838, - [5316] = 5128, - [5317] = 3310, - [5318] = 5136, - [5319] = 5136, - [5320] = 5136, - [5321] = 3838, - [5322] = 3629, - [5323] = 5323, - [5324] = 5324, - [5325] = 5325, - [5326] = 5326, - [5327] = 5327, - [5328] = 5328, - [5329] = 5329, - [5330] = 3638, - [5331] = 5331, - [5332] = 5332, + [5301] = 5301, + [5302] = 5107, + [5303] = 5219, + [5304] = 3563, + [5305] = 3626, + [5306] = 3599, + [5307] = 3559, + [5308] = 2169, + [5309] = 2168, + [5310] = 3733, + [5311] = 5219, + [5312] = 5219, + [5313] = 3611, + [5314] = 3565, + [5315] = 5315, + [5316] = 5316, + [5317] = 5316, + [5318] = 5316, + [5319] = 3584, + [5320] = 5316, + [5321] = 5321, + [5322] = 5316, + [5323] = 5316, + [5324] = 5316, + [5325] = 5316, + [5326] = 5316, + [5327] = 5316, + [5328] = 3551, + [5329] = 3651, + [5330] = 5316, + [5331] = 5316, + [5332] = 5316, [5333] = 5333, - [5334] = 5324, - [5335] = 5332, - [5336] = 3624, - [5337] = 5337, - [5338] = 5327, - [5339] = 5329, + [5334] = 5334, + [5335] = 5335, + [5336] = 5336, + [5337] = 3719, + [5338] = 5338, + [5339] = 5339, [5340] = 5340, - [5341] = 3568, - [5342] = 5332, + [5341] = 5316, + [5342] = 3565, [5343] = 3571, - [5344] = 3575, - [5345] = 3631, - [5346] = 3747, - [5347] = 3558, - [5348] = 3566, - [5349] = 3585, + [5344] = 3576, + [5345] = 3606, + [5346] = 3607, + [5347] = 3608, + [5348] = 3611, + [5349] = 5349, [5350] = 5350, - [5351] = 3590, - [5352] = 3577, - [5353] = 3592, - [5354] = 3604, - [5355] = 3629, - [5356] = 3626, - [5357] = 5357, - [5358] = 3636, - [5359] = 5325, - [5360] = 5326, - [5361] = 5337, + [5351] = 5351, + [5352] = 3613, + [5353] = 5353, + [5354] = 5354, + [5355] = 5355, + [5356] = 5356, + [5357] = 5350, + [5358] = 5358, + [5359] = 5359, + [5360] = 3551, + [5361] = 5316, [5362] = 5362, - [5363] = 5363, - [5364] = 5327, - [5365] = 5329, - [5366] = 3638, - [5367] = 5367, - [5368] = 5368, - [5369] = 3747, - [5370] = 5324, - [5371] = 5371, - [5372] = 3624, - [5373] = 3626, - [5374] = 5374, - [5375] = 5325, - [5376] = 4790, - [5377] = 3624, - [5378] = 5332, - [5379] = 3626, + [5363] = 3555, + [5364] = 5364, + [5365] = 5336, + [5366] = 5353, + [5367] = 5354, + [5368] = 3623, + [5369] = 3581, + [5370] = 5316, + [5371] = 3583, + [5372] = 3584, + [5373] = 3565, + [5374] = 3247, + [5375] = 3571, + [5376] = 3576, + [5377] = 5351, + [5378] = 3589, + [5379] = 3606, [5380] = 5380, - [5381] = 5337, - [5382] = 5362, - [5383] = 5368, - [5384] = 5324, - [5385] = 5331, - [5386] = 5340, - [5387] = 3747, - [5388] = 5325, - [5389] = 3568, - [5390] = 5332, - [5391] = 3571, - [5392] = 3575, - [5393] = 3631, - [5394] = 3558, - [5395] = 3566, - [5396] = 3585, - [5397] = 3590, - [5398] = 3577, - [5399] = 3592, - [5400] = 5332, - [5401] = 3604, - [5402] = 3629, - [5403] = 5326, - [5404] = 5327, - [5405] = 3636, - [5406] = 5329, - [5407] = 5374, - [5408] = 3638, - [5409] = 5409, - [5410] = 5410, - [5411] = 5332, - [5412] = 3624, - [5413] = 5332, - [5414] = 3626, - [5415] = 5332, - [5416] = 5416, - [5417] = 5326, - [5418] = 5332, - [5419] = 5332, - [5420] = 2855, - [5421] = 3250, - [5422] = 2859, - [5423] = 5327, - [5424] = 5329, - [5425] = 3626, - [5426] = 5426, - [5427] = 5332, - [5428] = 3250, - [5429] = 5323, - [5430] = 5374, - [5431] = 3838, - [5432] = 3003, - [5433] = 5328, - [5434] = 5434, - [5435] = 3568, - [5436] = 5332, - [5437] = 3571, - [5438] = 3575, - [5439] = 3631, - [5440] = 3558, - [5441] = 3566, - [5442] = 3585, - [5443] = 3590, - [5444] = 3577, - [5445] = 3592, - [5446] = 3604, - [5447] = 3629, - [5448] = 3636, - [5449] = 3638, - [5450] = 5323, - [5451] = 3624, - [5452] = 5337, - [5453] = 5327, - [5454] = 5329, + [5381] = 5381, + [5382] = 3566, + [5383] = 3607, + [5384] = 3608, + [5385] = 3611, + [5386] = 3623, + [5387] = 3613, + [5388] = 5364, + [5389] = 2180, + [5390] = 5315, + [5391] = 3733, + [5392] = 5335, + [5393] = 3551, + [5394] = 3719, + [5395] = 5395, + [5396] = 5364, + [5397] = 2351, + [5398] = 4508, + [5399] = 3555, + [5400] = 5316, + [5401] = 3719, + [5402] = 3623, + [5403] = 5353, + [5404] = 5404, + [5405] = 5362, + [5406] = 5354, + [5407] = 3581, + [5408] = 5316, + [5409] = 5316, + [5410] = 3583, + [5411] = 5411, + [5412] = 5412, + [5413] = 5336, + [5414] = 3584, + [5415] = 3581, + [5416] = 3571, + [5417] = 3576, + [5418] = 3589, + [5419] = 3555, + [5420] = 5316, + [5421] = 3623, + [5422] = 5338, + [5423] = 5316, + [5424] = 5316, + [5425] = 5316, + [5426] = 3606, + [5427] = 5427, + [5428] = 3566, + [5429] = 3607, + [5430] = 3608, + [5431] = 3611, + [5432] = 5316, + [5433] = 3247, + [5434] = 5351, + [5435] = 5339, + [5436] = 3733, + [5437] = 5359, + [5438] = 5351, + [5439] = 5439, + [5440] = 5340, + [5441] = 5441, + [5442] = 3613, + [5443] = 4508, + [5444] = 5444, + [5445] = 3551, + [5446] = 3565, + [5447] = 3571, + [5448] = 5448, + [5449] = 5316, + [5450] = 3576, + [5451] = 5451, + [5452] = 5321, + [5453] = 5453, + [5454] = 5454, [5455] = 5455, - [5456] = 3568, - [5457] = 5332, - [5458] = 3571, - [5459] = 3575, - [5460] = 3631, - [5461] = 3558, - [5462] = 3566, - [5463] = 5332, - [5464] = 3250, - [5465] = 5323, - [5466] = 3684, - [5467] = 3688, - [5468] = 5468, - [5469] = 3585, - [5470] = 3590, - [5471] = 3838, - [5472] = 3657, - [5473] = 3662, - [5474] = 5328, - [5475] = 5328, - [5476] = 3577, - [5477] = 3592, - [5478] = 3604, - [5479] = 3629, - [5480] = 3747, - [5481] = 3568, - [5482] = 4790, - [5483] = 5332, - [5484] = 3571, - [5485] = 3575, - [5486] = 3631, - [5487] = 3558, - [5488] = 3566, - [5489] = 3585, - [5490] = 3590, - [5491] = 3577, - [5492] = 3592, - [5493] = 3604, - [5494] = 3629, - [5495] = 3648, - [5496] = 3618, - [5497] = 3636, - [5498] = 3626, - [5499] = 5332, - [5500] = 3250, - [5501] = 5323, - [5502] = 3638, - [5503] = 5503, - [5504] = 3636, - [5505] = 5505, - [5506] = 3838, - [5507] = 5507, - [5508] = 5508, - [5509] = 5509, - [5510] = 5371, - [5511] = 3838, - [5512] = 3638, - [5513] = 5513, - [5514] = 3648, - [5515] = 3618, - [5516] = 3747, - [5517] = 5517, - [5518] = 5332, - [5519] = 5519, - [5520] = 5323, - [5521] = 5521, - [5522] = 5371, - [5523] = 5332, - [5524] = 3747, - [5525] = 5525, - [5526] = 5332, - [5527] = 5332, - [5528] = 3250, - [5529] = 5323, - [5530] = 3838, - [5531] = 2972, - [5532] = 5332, - [5533] = 3648, - [5534] = 3618, - [5535] = 5332, - [5536] = 3250, - [5537] = 5323, - [5538] = 3838, - [5539] = 5332, - [5540] = 5540, - [5541] = 3648, - [5542] = 3618, - [5543] = 5332, - [5544] = 5323, - [5545] = 3648, - [5546] = 3618, - [5547] = 5332, - [5548] = 5323, - [5549] = 2978, - [5550] = 5455, - [5551] = 5323, - [5552] = 5332, - [5553] = 5323, - [5554] = 5323, - [5555] = 5323, - [5556] = 5323, - [5557] = 5323, - [5558] = 5323, - [5559] = 5559, - [5560] = 5333, - [5561] = 5561, - [5562] = 3648, - [5563] = 5323, - [5564] = 5332, - [5565] = 2174, + [5456] = 5456, + [5457] = 5316, + [5458] = 3247, + [5459] = 5351, + [5460] = 5316, + [5461] = 3638, + [5462] = 3662, + [5463] = 5349, + [5464] = 3589, + [5465] = 5316, + [5466] = 3733, + [5467] = 3665, + [5468] = 3666, + [5469] = 5350, + [5470] = 5359, + [5471] = 3606, + [5472] = 3566, + [5473] = 3607, + [5474] = 3608, + [5475] = 5321, + [5476] = 3611, + [5477] = 3613, + [5478] = 3551, + [5479] = 5316, + [5480] = 2841, + [5481] = 3583, + [5482] = 3599, + [5483] = 3559, + [5484] = 5353, + [5485] = 5354, + [5486] = 5316, + [5487] = 3247, + [5488] = 5351, + [5489] = 5489, + [5490] = 3719, + [5491] = 3733, + [5492] = 5359, + [5493] = 5316, + [5494] = 3623, + [5495] = 3613, + [5496] = 5496, + [5497] = 3599, + [5498] = 3559, + [5499] = 5316, + [5500] = 5500, + [5501] = 5351, + [5502] = 5316, + [5503] = 5316, + [5504] = 3719, + [5505] = 5338, + [5506] = 5316, + [5507] = 3247, + [5508] = 5351, + [5509] = 5334, + [5510] = 3733, + [5511] = 5511, + [5512] = 3599, + [5513] = 3559, + [5514] = 5316, + [5515] = 3247, + [5516] = 5351, + [5517] = 3733, + [5518] = 3599, + [5519] = 3559, + [5520] = 5316, + [5521] = 5351, + [5522] = 5316, + [5523] = 5523, + [5524] = 3599, + [5525] = 3559, + [5526] = 5316, + [5527] = 5351, + [5528] = 2410, + [5529] = 5351, + [5530] = 5351, + [5531] = 5351, + [5532] = 5351, + [5533] = 5351, + [5534] = 5351, + [5535] = 5351, + [5536] = 5315, + [5537] = 5335, + [5538] = 5395, + [5539] = 4508, + [5540] = 3599, + [5541] = 5321, + [5542] = 5316, + [5543] = 5315, + [5544] = 5489, + [5545] = 3581, + [5546] = 3583, + [5547] = 3584, + [5548] = 3589, + [5549] = 3566, + [5550] = 2982, + [5551] = 5334, + [5552] = 3555, + [5553] = 3031, + [5554] = 5134, + [5555] = 5336, + [5556] = 5316, + [5557] = 5339, + [5558] = 5338, + [5559] = 5339, + [5560] = 5340, + [5561] = 5349, + [5562] = 5350, + [5563] = 5353, + [5564] = 5354, + [5565] = 2951, [5566] = 5340, - [5567] = 2175, - [5568] = 2359, - [5569] = 5367, - [5570] = 3568, - [5571] = 3571, - [5572] = 3575, - [5573] = 3585, - [5574] = 3577, - [5575] = 5332, - [5576] = 2979, - [5577] = 2990, - [5578] = 5332, - [5579] = 5332, - [5580] = 5580, - [5581] = 5332, - [5582] = 5332, - [5583] = 2185, - [5584] = 5332, - [5585] = 5332, - [5586] = 5332, - [5587] = 5455, - [5588] = 5332, - [5589] = 5323, - [5590] = 5426, - [5591] = 5332, - [5592] = 5332, - [5593] = 5332, - [5594] = 5332, - [5595] = 5332, - [5596] = 5332, - [5597] = 5333, - [5598] = 5332, - [5599] = 3684, - [5600] = 3688, - [5601] = 3657, + [5567] = 3581, + [5568] = 5316, + [5569] = 5316, + [5570] = 3583, + [5571] = 3584, + [5572] = 3565, + [5573] = 3571, + [5574] = 3576, + [5575] = 3589, + [5576] = 3606, + [5577] = 3566, + [5578] = 3607, + [5579] = 5351, + [5580] = 3608, + [5581] = 3611, + [5582] = 3613, + [5583] = 3034, + [5584] = 5584, + [5585] = 3623, + [5586] = 3033, + [5587] = 5316, + [5588] = 3551, + [5589] = 5364, + [5590] = 5316, + [5591] = 5316, + [5592] = 5351, + [5593] = 3638, + [5594] = 3662, + [5595] = 3665, + [5596] = 3666, + [5597] = 5351, + [5598] = 5316, + [5599] = 5349, + [5600] = 5489, + [5601] = 3638, [5602] = 3662, - [5603] = 5323, - [5604] = 5332, - [5605] = 5332, - [5606] = 5367, - [5607] = 5332, - [5608] = 5332, - [5609] = 5337, - [5610] = 3684, - [5611] = 3688, - [5612] = 3657, - [5613] = 3662, - [5614] = 3683, - [5615] = 5367, - [5616] = 5362, - [5617] = 5340, - [5618] = 5618, - [5619] = 3684, - [5620] = 3688, - [5621] = 3657, - [5622] = 3662, - [5623] = 3683, - [5624] = 5367, - [5625] = 3034, - [5626] = 5374, - [5627] = 3683, - [5628] = 5367, - [5629] = 5629, - [5630] = 3683, - [5631] = 4790, - [5632] = 5632, - [5633] = 5371, - [5634] = 2421, - [5635] = 5158, - [5636] = 5333, - [5637] = 3618, - [5638] = 5332, - [5639] = 5323, - [5640] = 3624, - [5641] = 3684, - [5642] = 3688, - [5643] = 3657, - [5644] = 3662, - [5645] = 5332, - [5646] = 3631, - [5647] = 3558, - [5648] = 3566, - [5649] = 3590, - [5650] = 3592, - [5651] = 3604, - [5652] = 3629, - [5653] = 5455, - [5654] = 5337, - [5655] = 5323, - [5656] = 3636, - [5657] = 5362, - [5658] = 5368, - [5659] = 5368, - [5660] = 3683, - [5661] = 5333, - [5662] = 5662, - [5663] = 1901, - [5664] = 5664, - [5665] = 2421, - [5666] = 5662, - [5667] = 5662, - [5668] = 5662, - [5669] = 5662, - [5670] = 2251, - [5671] = 5662, - [5672] = 5662, - [5673] = 2421, - [5674] = 5662, - [5675] = 2302, - [5676] = 2421, - [5677] = 5662, - [5678] = 5662, - [5679] = 5662, - [5680] = 5662, - [5681] = 5662, - [5682] = 2294, - [5683] = 5662, - [5684] = 5662, - [5685] = 5662, - [5686] = 5686, - [5687] = 5662, - [5688] = 5662, - [5689] = 5662, - [5690] = 5662, - [5691] = 2299, - [5692] = 5662, - [5693] = 5662, - [5694] = 2298, - [5695] = 5662, - [5696] = 5662, - [5697] = 5662, - [5698] = 5662, - [5699] = 5662, - [5700] = 5662, - [5701] = 5662, - [5702] = 5662, - [5703] = 2421, - [5704] = 5704, - [5705] = 5662, - [5706] = 2271, - [5707] = 2421, - [5708] = 5662, - [5709] = 2421, - [5710] = 5662, - [5711] = 2421, + [5603] = 3665, + [5604] = 3666, + [5605] = 3651, + [5606] = 5489, + [5607] = 2848, + [5608] = 2953, + [5609] = 3638, + [5610] = 3662, + [5611] = 3665, + [5612] = 3666, + [5613] = 5315, + [5614] = 3651, + [5615] = 5489, + [5616] = 3719, + [5617] = 3555, + [5618] = 5335, + [5619] = 3651, + [5620] = 5489, + [5621] = 3651, + [5622] = 5336, + [5623] = 5353, + [5624] = 5354, + [5625] = 5625, + [5626] = 5334, + [5627] = 3581, + [5628] = 5316, + [5629] = 3583, + [5630] = 3584, + [5631] = 3565, + [5632] = 3571, + [5633] = 3576, + [5634] = 5634, + [5635] = 5316, + [5636] = 3559, + [5637] = 5316, + [5638] = 3589, + [5639] = 5351, + [5640] = 3638, + [5641] = 3662, + [5642] = 3665, + [5643] = 3666, + [5644] = 3606, + [5645] = 3566, + [5646] = 3607, + [5647] = 3608, + [5648] = 3611, + [5649] = 3555, + [5650] = 5336, + [5651] = 5651, + [5652] = 5651, + [5653] = 5651, + [5654] = 5651, + [5655] = 5651, + [5656] = 5651, + [5657] = 5651, + [5658] = 5651, + [5659] = 5651, + [5660] = 5651, + [5661] = 5651, + [5662] = 5651, + [5663] = 2410, + [5664] = 5651, + [5665] = 5651, + [5666] = 2289, + [5667] = 2249, + [5668] = 5651, + [5669] = 5651, + [5670] = 5651, + [5671] = 5651, + [5672] = 2410, + [5673] = 5651, + [5674] = 2307, + [5675] = 2410, + [5676] = 2410, + [5677] = 5651, + [5678] = 5651, + [5679] = 5651, + [5680] = 5651, + [5681] = 5651, + [5682] = 5651, + [5683] = 5651, + [5684] = 5651, + [5685] = 2410, + [5686] = 5651, + [5687] = 5651, + [5688] = 5688, + [5689] = 2257, + [5690] = 5651, + [5691] = 2304, + [5692] = 2300, + [5693] = 5693, + [5694] = 5694, + [5695] = 2410, + [5696] = 5651, + [5697] = 5651, + [5698] = 1901, + [5699] = 5651, + [5700] = 5700, + [5701] = 5701, + [5702] = 5702, + [5703] = 5703, + [5704] = 2410, + [5705] = 5705, + [5706] = 2410, + [5707] = 5707, + [5708] = 5134, + [5709] = 5709, + [5710] = 2410, + [5711] = 5134, [5712] = 5712, [5713] = 5713, [5714] = 5714, [5715] = 5715, [5716] = 5716, - [5717] = 2421, + [5717] = 5717, [5718] = 5718, - [5719] = 5158, + [5719] = 2410, [5720] = 5720, [5721] = 5721, - [5722] = 5722, - [5723] = 2421, + [5722] = 2304, + [5723] = 2289, [5724] = 5724, [5725] = 5725, [5726] = 5726, [5727] = 5727, - [5728] = 5728, - [5729] = 5158, - [5730] = 5730, - [5731] = 5731, - [5732] = 2421, - [5733] = 5733, - [5734] = 2299, - [5735] = 2302, - [5736] = 5736, + [5728] = 5727, + [5729] = 5716, + [5730] = 2307, + [5731] = 5727, + [5732] = 5732, + [5733] = 5725, + [5734] = 5734, + [5735] = 5726, + [5736] = 2411, [5737] = 5737, - [5738] = 2419, - [5739] = 5739, - [5740] = 2257, + [5738] = 2351, + [5739] = 2267, + [5740] = 5732, [5741] = 5741, - [5742] = 2298, + [5742] = 5742, [5743] = 5743, - [5744] = 5736, - [5745] = 5741, - [5746] = 5746, - [5747] = 5747, - [5748] = 5743, - [5749] = 5730, - [5750] = 5737, - [5751] = 2294, - [5752] = 2359, + [5744] = 2300, + [5745] = 5745, + [5746] = 5741, + [5747] = 5725, + [5748] = 5726, + [5749] = 5749, + [5750] = 5749, + [5751] = 5751, + [5752] = 5752, [5753] = 5753, - [5754] = 5736, - [5755] = 5737, - [5756] = 5756, - [5757] = 5743, - [5758] = 5758, - [5759] = 5739, - [5760] = 5760, - [5761] = 5761, - [5762] = 5760, - [5763] = 2179, - [5764] = 5764, - [5765] = 5764, - [5766] = 5766, - [5767] = 5760, - [5768] = 2934, - [5769] = 5766, - [5770] = 5760, - [5771] = 5580, + [5754] = 5752, + [5755] = 5755, + [5756] = 5751, + [5757] = 5749, + [5758] = 5749, + [5759] = 5751, + [5760] = 5755, + [5761] = 5752, + [5762] = 5762, + [5763] = 5356, + [5764] = 2173, + [5765] = 5762, + [5766] = 5751, + [5767] = 5751, + [5768] = 5752, + [5769] = 5752, + [5770] = 2925, + [5771] = 5749, [5772] = 5772, - [5773] = 5766, - [5774] = 5761, - [5775] = 5766, - [5776] = 5760, - [5777] = 5772, - [5778] = 5761, - [5779] = 5766, - [5780] = 5761, - [5781] = 5781, - [5782] = 5761, - [5783] = 2861, - [5784] = 5784, + [5773] = 5773, + [5774] = 5772, + [5775] = 2389, + [5776] = 5776, + [5777] = 5777, + [5778] = 5778, + [5779] = 5777, + [5780] = 5772, + [5781] = 5772, + [5782] = 5782, + [5783] = 5776, + [5784] = 5772, [5785] = 5785, [5786] = 5786, - [5787] = 5787, - [5788] = 2393, + [5787] = 2858, + [5788] = 5788, [5789] = 5789, - [5790] = 5790, - [5791] = 5787, - [5792] = 5787, + [5790] = 5789, + [5791] = 2868, + [5792] = 5789, [5793] = 5793, - [5794] = 5787, - [5795] = 5787, - [5796] = 5796, - [5797] = 5793, - [5798] = 5786, - [5799] = 5799, - [5800] = 5799, - [5801] = 5799, - [5802] = 5799, - [5803] = 5799, - [5804] = 5799, - [5805] = 2859, - [5806] = 5806, - [5807] = 5799, - [5808] = 2878, - [5809] = 5799, - [5810] = 5810, - [5811] = 5799, - [5812] = 2855, - [5813] = 5799, - [5814] = 2876, - [5815] = 5815, - [5816] = 5799, - [5817] = 5799, - [5818] = 5799, - [5819] = 5819, - [5820] = 5799, - [5821] = 5799, - [5822] = 5799, - [5823] = 5799, - [5824] = 5799, - [5825] = 5799, - [5826] = 5799, - [5827] = 5799, - [5828] = 2879, - [5829] = 5799, - [5830] = 5799, - [5831] = 5799, - [5832] = 5799, - [5833] = 5799, - [5834] = 5799, - [5835] = 5799, - [5836] = 5836, - [5837] = 5799, - [5838] = 5815, - [5839] = 2446, - [5840] = 5799, - [5841] = 5799, - [5842] = 5799, - [5843] = 5836, - [5844] = 5799, - [5845] = 5845, - [5846] = 5846, - [5847] = 5815, - [5848] = 5799, - [5849] = 5799, - [5850] = 5799, - [5851] = 2874, - [5852] = 5799, - [5853] = 5815, - [5854] = 5799, - [5855] = 5799, - [5856] = 5799, - [5857] = 5799, - [5858] = 5799, - [5859] = 5799, - [5860] = 5815, - [5861] = 5799, - [5862] = 5799, - [5863] = 5863, - [5864] = 5799, - [5865] = 5799, - [5866] = 5799, - [5867] = 5867, - [5868] = 5799, - [5869] = 5869, - [5870] = 5799, - [5871] = 2421, - [5872] = 2421, - [5873] = 2421, + [5794] = 5789, + [5795] = 5789, + [5796] = 5789, + [5797] = 5797, + [5798] = 5789, + [5799] = 5789, + [5800] = 5789, + [5801] = 5789, + [5802] = 5789, + [5803] = 2841, + [5804] = 5789, + [5805] = 5805, + [5806] = 5789, + [5807] = 5789, + [5808] = 5789, + [5809] = 5789, + [5810] = 5789, + [5811] = 5789, + [5812] = 5789, + [5813] = 5813, + [5814] = 5814, + [5815] = 5789, + [5816] = 5789, + [5817] = 5789, + [5818] = 2426, + [5819] = 5789, + [5820] = 5820, + [5821] = 5813, + [5822] = 5789, + [5823] = 5789, + [5824] = 5789, + [5825] = 2869, + [5826] = 5789, + [5827] = 5789, + [5828] = 5828, + [5829] = 5789, + [5830] = 5789, + [5831] = 2860, + [5832] = 5789, + [5833] = 5833, + [5834] = 5789, + [5835] = 5813, + [5836] = 5789, + [5837] = 5789, + [5838] = 5789, + [5839] = 5789, + [5840] = 5789, + [5841] = 5813, + [5842] = 5789, + [5843] = 5789, + [5844] = 5789, + [5845] = 5789, + [5846] = 5797, + [5847] = 5789, + [5848] = 5789, + [5849] = 5789, + [5850] = 2848, + [5851] = 5789, + [5852] = 2874, + [5853] = 5789, + [5854] = 5813, + [5855] = 5789, + [5856] = 5789, + [5857] = 5789, + [5858] = 5789, + [5859] = 5859, + [5860] = 2410, + [5861] = 2371, + [5862] = 2410, + [5863] = 2371, + [5864] = 5864, + [5865] = 2410, + [5866] = 5866, + [5867] = 2410, + [5868] = 2410, + [5869] = 2410, + [5870] = 2410, + [5871] = 5871, + [5872] = 2410, + [5873] = 2410, [5874] = 5874, - [5875] = 2421, - [5876] = 2421, - [5877] = 5877, - [5878] = 5741, - [5879] = 2421, - [5880] = 2374, - [5881] = 2374, - [5882] = 2374, - [5883] = 2421, + [5875] = 2410, + [5876] = 5876, + [5877] = 2410, + [5878] = 5878, + [5879] = 2410, + [5880] = 2371, + [5881] = 2410, + [5882] = 2410, + [5883] = 2410, [5884] = 5884, - [5885] = 2421, - [5886] = 2421, - [5887] = 2421, - [5888] = 2421, - [5889] = 2421, - [5890] = 2421, - [5891] = 2421, - [5892] = 2421, - [5893] = 2421, - [5894] = 5894, - [5895] = 5895, - [5896] = 2421, - [5897] = 2421, - [5898] = 2421, - [5899] = 5899, - [5900] = 5900, - [5901] = 2374, + [5885] = 2410, + [5886] = 5886, + [5887] = 5864, + [5888] = 2410, + [5889] = 2410, + [5890] = 2410, + [5891] = 2371, + [5892] = 5892, + [5893] = 2410, + [5894] = 2410, + [5895] = 2410, + [5896] = 2410, + [5897] = 2410, + [5898] = 5898, + [5899] = 5741, + [5900] = 2410, + [5901] = 5901, [5902] = 5902, - [5903] = 5903, - [5904] = 2421, - [5905] = 2421, - [5906] = 2421, - [5907] = 2421, + [5903] = 5901, + [5904] = 5904, + [5905] = 5905, + [5906] = 5906, + [5907] = 5907, [5908] = 5908, - [5909] = 5877, - [5910] = 2421, - [5911] = 2421, - [5912] = 5912, + [5909] = 5909, + [5910] = 5910, + [5911] = 5911, + [5912] = 5905, [5913] = 5913, - [5914] = 5914, + [5914] = 3033, [5915] = 5915, - [5916] = 5916, - [5917] = 5917, + [5916] = 5915, + [5917] = 5915, [5918] = 5918, [5919] = 5919, - [5920] = 5920, - [5921] = 5921, - [5922] = 5921, - [5923] = 5923, - [5924] = 5917, + [5920] = 5918, + [5921] = 5918, + [5922] = 5915, + [5923] = 5915, + [5924] = 5915, [5925] = 5925, [5926] = 5926, [5927] = 5927, - [5928] = 5928, - [5929] = 5927, - [5930] = 5930, - [5931] = 5927, - [5932] = 5926, - [5933] = 5926, - [5934] = 2979, - [5935] = 5926, - [5936] = 5930, - [5937] = 5927, - [5938] = 5930, - [5939] = 5926, - [5940] = 5926, - [5941] = 5926, - [5942] = 5926, - [5943] = 5926, - [5944] = 5926, - [5945] = 5925, - [5946] = 5946, - [5947] = 5947, - [5948] = 5948, - [5949] = 5926, - [5950] = 5950, - [5951] = 5926, - [5952] = 5952, - [5953] = 5926, - [5954] = 5926, - [5955] = 5926, - [5956] = 5928, - [5957] = 5925, - [5958] = 5926, - [5959] = 5926, - [5960] = 5926, - [5961] = 5961, - [5962] = 5926, - [5963] = 5926, - [5964] = 5927, + [5928] = 5919, + [5929] = 5929, + [5930] = 5915, + [5931] = 5931, + [5932] = 5915, + [5933] = 5925, + [5934] = 5918, + [5935] = 5925, + [5936] = 5915, + [5937] = 5915, + [5938] = 5915, + [5939] = 5918, + [5940] = 5919, + [5941] = 5919, + [5942] = 5915, + [5943] = 5943, + [5944] = 5925, + [5945] = 5945, + [5946] = 5915, + [5947] = 5915, + [5948] = 5919, + [5949] = 5915, + [5950] = 5915, + [5951] = 5915, + [5952] = 5915, + [5953] = 5925, + [5954] = 5915, + [5955] = 5919, + [5956] = 5926, + [5957] = 5915, + [5958] = 5931, + [5959] = 5918, + [5960] = 5960, + [5961] = 2953, + [5962] = 5915, + [5963] = 5915, + [5964] = 5919, [5965] = 5926, - [5966] = 5930, - [5967] = 5926, - [5968] = 5927, - [5969] = 5926, - [5970] = 5930, - [5971] = 5926, - [5972] = 5926, - [5973] = 5926, - [5974] = 5926, - [5975] = 5926, + [5966] = 5966, + [5967] = 2982, + [5968] = 5926, + [5969] = 5918, + [5970] = 5931, + [5971] = 5915, + [5972] = 5915, + [5973] = 5915, + [5974] = 5915, + [5975] = 5919, [5976] = 5926, - [5977] = 5926, - [5978] = 5928, - [5979] = 5927, + [5977] = 5915, + [5978] = 5978, + [5979] = 3031, [5980] = 5980, - [5981] = 5930, - [5982] = 5926, - [5983] = 5926, - [5984] = 5927, - [5985] = 5930, - [5986] = 3034, - [5987] = 5926, - [5988] = 2972, - [5989] = 5928, + [5981] = 5915, + [5982] = 5915, + [5983] = 5919, + [5984] = 5915, + [5985] = 5915, + [5986] = 5915, + [5987] = 5987, + [5988] = 5988, + [5989] = 5931, [5990] = 5990, - [5991] = 5928, - [5992] = 5927, - [5993] = 5926, - [5994] = 5926, - [5995] = 5995, - [5996] = 5927, - [5997] = 5926, - [5998] = 5926, - [5999] = 5930, - [6000] = 5926, - [6001] = 5927, - [6002] = 6002, - [6003] = 5928, - [6004] = 5926, - [6005] = 5930, - [6006] = 5930, - [6007] = 5926, - [6008] = 5930, - [6009] = 5926, - [6010] = 6010, - [6011] = 5926, - [6012] = 5926, - [6013] = 5926, - [6014] = 5980, - [6015] = 5980, - [6016] = 5926, + [5991] = 5919, + [5992] = 5918, + [5993] = 5915, + [5994] = 5918, + [5995] = 5919, + [5996] = 5915, + [5997] = 5918, + [5998] = 5915, + [5999] = 5915, + [6000] = 5915, + [6001] = 5918, + [6002] = 5915, + [6003] = 5915, + [6004] = 5918, + [6005] = 5915, + [6006] = 5919, + [6007] = 5918, + [6008] = 5919, + [6009] = 5918, + [6010] = 5925, + [6011] = 5931, + [6012] = 5915, + [6013] = 5915, + [6014] = 5915, + [6015] = 6015, + [6016] = 5915, [6017] = 6017, - [6018] = 5926, - [6019] = 5928, - [6020] = 5926, - [6021] = 5927, - [6022] = 5930, - [6023] = 5925, + [6018] = 2951, + [6019] = 5915, + [6020] = 3034, + [6021] = 5919, + [6022] = 5915, + [6023] = 6023, [6024] = 5980, - [6025] = 5926, - [6026] = 5980, - [6027] = 5927, - [6028] = 5925, - [6029] = 5927, - [6030] = 5930, + [6025] = 5931, + [6026] = 5915, + [6027] = 5925, + [6028] = 5915, + [6029] = 5915, + [6030] = 5919, [6031] = 6031, - [6032] = 5930, - [6033] = 5926, - [6034] = 5926, - [6035] = 6035, - [6036] = 5927, - [6037] = 6017, - [6038] = 5927, - [6039] = 5926, - [6040] = 5980, - [6041] = 2978, - [6042] = 5930, - [6043] = 5930, - [6044] = 5927, - [6045] = 5928, - [6046] = 5930, - [6047] = 5926, + [6032] = 5925, + [6033] = 5915, + [6034] = 5915, + [6035] = 5915, + [6036] = 5915, + [6037] = 5915, + [6038] = 5915, + [6039] = 5925, + [6040] = 5918, + [6041] = 5980, + [6042] = 5915, + [6043] = 5919, + [6044] = 5918, + [6045] = 5919, + [6046] = 5918, + [6047] = 6047, [6048] = 6048, - [6049] = 5926, - [6050] = 3003, - [6051] = 2990, - [6052] = 6017, - [6053] = 5926, + [6049] = 6049, + [6050] = 6050, + [6051] = 6051, + [6052] = 2925, + [6053] = 6053, [6054] = 6054, - [6055] = 5926, - [6056] = 5928, - [6057] = 5926, + [6055] = 6055, + [6056] = 6056, + [6057] = 6057, [6058] = 6058, [6059] = 6059, [6060] = 6060, - [6061] = 2934, - [6062] = 6062, + [6061] = 6061, + [6062] = 6056, [6063] = 6063, [6064] = 6064, [6065] = 6065, - [6066] = 6065, - [6067] = 6067, + [6066] = 6066, + [6067] = 6056, [6068] = 6068, - [6069] = 6069, - [6070] = 6068, - [6071] = 6068, - [6072] = 6072, - [6073] = 6073, - [6074] = 6068, - [6075] = 6068, - [6076] = 6068, - [6077] = 6077, + [6069] = 6056, + [6070] = 6070, + [6071] = 6056, + [6072] = 6056, + [6073] = 6056, + [6074] = 6074, + [6075] = 6075, + [6076] = 6076, + [6077] = 6055, [6078] = 6078, - [6079] = 6068, - [6080] = 6080, + [6079] = 6056, + [6080] = 6056, [6081] = 6081, - [6082] = 6068, - [6083] = 6068, - [6084] = 6084, + [6082] = 6082, + [6083] = 6056, + [6084] = 6056, [6085] = 6085, - [6086] = 6068, + [6086] = 6086, [6087] = 6087, [6088] = 6088, - [6089] = 6068, + [6089] = 6056, [6090] = 6090, - [6091] = 6068, - [6092] = 6078, + [6091] = 6091, + [6092] = 6092, [6093] = 6093, - [6094] = 6094, - [6095] = 6087, + [6094] = 6056, + [6095] = 6056, [6096] = 6096, [6097] = 6097, - [6098] = 6078, + [6098] = 6056, [6099] = 6099, - [6100] = 6100, + [6100] = 6056, [6101] = 6101, [6102] = 6102, [6103] = 6103, - [6104] = 6104, - [6105] = 6068, - [6106] = 6106, - [6107] = 6068, - [6108] = 6068, - [6109] = 6109, - [6110] = 6068, - [6111] = 6111, - [6112] = 6112, + [6104] = 6056, + [6105] = 6105, + [6106] = 6056, + [6107] = 6107, + [6108] = 6108, + [6109] = 6056, + [6110] = 6056, + [6111] = 6056, + [6112] = 6056, [6113] = 6113, [6114] = 6114, [6115] = 6115, - [6116] = 6065, + [6116] = 6116, [6117] = 6117, [6118] = 6118, [6119] = 6119, - [6120] = 6112, - [6121] = 6068, - [6122] = 6068, - [6123] = 6068, - [6124] = 6068, - [6125] = 6068, + [6120] = 6120, + [6121] = 6121, + [6122] = 6122, + [6123] = 6123, + [6124] = 6124, + [6125] = 6125, [6126] = 6126, - [6127] = 6112, - [6128] = 6068, - [6129] = 6129, - [6130] = 6130, - [6131] = 6131, - [6132] = 6132, - [6133] = 6133, - [6134] = 6134, - [6135] = 6135, - [6136] = 6136, - [6137] = 6137, - [6138] = 6138, - [6139] = 6139, - [6140] = 6140, - [6141] = 6141, - [6142] = 6142, - [6143] = 6143, - [6144] = 6144, - [6145] = 6145, - [6146] = 6145, - [6147] = 6145, - [6148] = 6145, - [6149] = 6145, - [6150] = 6145, - [6151] = 6145, - [6152] = 6145, - [6153] = 6145, - [6154] = 6145, - [6155] = 6145, - [6156] = 6145, - [6157] = 6145, - [6158] = 6145, - [6159] = 6145, - [6160] = 6145, - [6161] = 6145, - [6162] = 6145, - [6163] = 6145, - [6164] = 6145, - [6165] = 6145, - [6166] = 6145, - [6167] = 6145, - [6168] = 6145, - [6169] = 6145, - [6170] = 6145, - [6171] = 6145, - [6172] = 6145, - [6173] = 6145, - [6174] = 6145, - [6175] = 6145, - [6176] = 6145, - [6177] = 6145, - [6178] = 6145, - [6179] = 6145, - [6180] = 6145, - [6181] = 6145, - [6182] = 6145, - [6183] = 6145, - [6184] = 6145, - [6185] = 6185, - [6186] = 6186, - [6187] = 6185, - [6188] = 6188, - [6189] = 6186, - [6190] = 6186, - [6191] = 6185, - [6192] = 6188, - [6193] = 6185, - [6194] = 6186, - [6195] = 6186, - [6196] = 6185, - [6197] = 6188, - [6198] = 6186, - [6199] = 6186, - [6200] = 6185, - [6201] = 6188, - [6202] = 6185, - [6203] = 6185, - [6204] = 6188, - [6205] = 6186, - [6206] = 6185, - [6207] = 6188, - [6208] = 6188, - [6209] = 6188, - [6210] = 6185, - [6211] = 6186, - [6212] = 6188, - [6213] = 6185, - [6214] = 6185, - [6215] = 6188, - [6216] = 6186, - [6217] = 6185, - [6218] = 6188, - [6219] = 6186, - [6220] = 6185, - [6221] = 6188, - [6222] = 6186, - [6223] = 6188, - [6224] = 6185, - [6225] = 6188, - [6226] = 6186, - [6227] = 6186, - [6228] = 6185, - [6229] = 6188, - [6230] = 6186, - [6231] = 6185, - [6232] = 6188, - [6233] = 6186, - [6234] = 6186, - [6235] = 6188, - [6236] = 6186, - [6237] = 6185, - [6238] = 6188, - [6239] = 6186, - [6240] = 6186, - [6241] = 6185, - [6242] = 6188, - [6243] = 6186, - [6244] = 6185, - [6245] = 6188, - [6246] = 6185, - [6247] = 6186, - [6248] = 6185, - [6249] = 6188, - [6250] = 6188, + [6127] = 6127, + [6128] = 6128, + [6129] = 6128, + [6130] = 6128, + [6131] = 6128, + [6132] = 6128, + [6133] = 6128, + [6134] = 6128, + [6135] = 6128, + [6136] = 6128, + [6137] = 6128, + [6138] = 6128, + [6139] = 6128, + [6140] = 6128, + [6141] = 6128, + [6142] = 6128, + [6143] = 6128, + [6144] = 6128, + [6145] = 6128, + [6146] = 6128, + [6147] = 6128, + [6148] = 6128, + [6149] = 6128, + [6150] = 6128, + [6151] = 6128, + [6152] = 6128, + [6153] = 6128, + [6154] = 6128, + [6155] = 6128, + [6156] = 6128, + [6157] = 6128, + [6158] = 6128, + [6159] = 6128, + [6160] = 6128, + [6161] = 6128, + [6162] = 6128, + [6163] = 6128, + [6164] = 6128, + [6165] = 6128, + [6166] = 6128, + [6167] = 6128, + [6168] = 6168, + [6169] = 6169, + [6170] = 6169, + [6171] = 6171, + [6172] = 6168, + [6173] = 6168, + [6174] = 6169, + [6175] = 6171, + [6176] = 6169, + [6177] = 6171, + [6178] = 6171, + [6179] = 6168, + [6180] = 6169, + [6181] = 6171, + [6182] = 6169, + [6183] = 6169, + [6184] = 6168, + [6185] = 6168, + [6186] = 6171, + [6187] = 6168, + [6188] = 6169, + [6189] = 6171, + [6190] = 6168, + [6191] = 6169, + [6192] = 6171, + [6193] = 6169, + [6194] = 6171, + [6195] = 6168, + [6196] = 6168, + [6197] = 6169, + [6198] = 6171, + [6199] = 6168, + [6200] = 6169, + [6201] = 6171, + [6202] = 6169, + [6203] = 6171, + [6204] = 6168, + [6205] = 6168, + [6206] = 6169, + [6207] = 6171, + [6208] = 6169, + [6209] = 6168, + [6210] = 6171, + [6211] = 6169, + [6212] = 6171, + [6213] = 6168, + [6214] = 6168, + [6215] = 6169, + [6216] = 6169, + [6217] = 6171, + [6218] = 6168, + [6219] = 6168, + [6220] = 6169, + [6221] = 6171, + [6222] = 6169, + [6223] = 6171, + [6224] = 6168, + [6225] = 6169, + [6226] = 6171, + [6227] = 6168, + [6228] = 6169, + [6229] = 6171, + [6230] = 6168, + [6231] = 6168, + [6232] = 6171, + [6233] = 6171, + [6234] = 6234, + [6235] = 6235, + [6236] = 6236, + [6237] = 6237, + [6238] = 2351, + [6239] = 6239, + [6240] = 6240, + [6241] = 6241, + [6242] = 6242, + [6243] = 6243, + [6244] = 6244, + [6245] = 6245, + [6246] = 6246, + [6247] = 6247, + [6248] = 6248, + [6249] = 6249, + [6250] = 6250, [6251] = 6251, [6252] = 6252, [6253] = 6253, @@ -11012,15 +10994,15 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [6257] = 6257, [6258] = 6258, [6259] = 6259, - [6260] = 2359, + [6260] = 2179, [6261] = 6261, - [6262] = 6262, + [6262] = 2180, [6263] = 6263, - [6264] = 6264, + [6264] = 2411, [6265] = 6265, [6266] = 6266, [6267] = 6267, - [6268] = 6268, + [6268] = 2351, [6269] = 6269, [6270] = 6270, [6271] = 6271, @@ -11029,52 +11011,52 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [6274] = 6274, [6275] = 6275, [6276] = 6276, - [6277] = 2185, - [6278] = 2184, + [6277] = 6277, + [6278] = 6278, [6279] = 6279, [6280] = 6280, [6281] = 6281, [6282] = 6282, [6283] = 6283, - [6284] = 2419, + [6284] = 6284, [6285] = 6285, [6286] = 6286, [6287] = 6287, [6288] = 6288, [6289] = 6289, - [6290] = 6290, - [6291] = 6291, + [6290] = 6285, + [6291] = 6287, [6292] = 6292, [6293] = 6293, [6294] = 6294, [6295] = 6295, - [6296] = 6296, + [6296] = 6287, [6297] = 6297, - [6298] = 6293, - [6299] = 6299, + [6298] = 6298, + [6299] = 2179, [6300] = 6300, [6301] = 6301, [6302] = 6302, [6303] = 6303, [6304] = 6304, - [6305] = 6305, + [6305] = 6287, [6306] = 6306, - [6307] = 6300, + [6307] = 6307, [6308] = 6308, [6309] = 6309, - [6310] = 6310, + [6310] = 6285, [6311] = 6311, - [6312] = 6300, - [6313] = 6313, - [6314] = 6300, - [6315] = 6315, + [6312] = 6312, + [6313] = 6285, + [6314] = 6314, + [6315] = 2426, [6316] = 6316, - [6317] = 6293, - [6318] = 2359, + [6317] = 6317, + [6318] = 6318, [6319] = 6319, [6320] = 6320, [6321] = 6321, - [6322] = 6293, + [6322] = 6322, [6323] = 6323, [6324] = 6324, [6325] = 6325, @@ -11083,308 +11065,308 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [6328] = 6328, [6329] = 6329, [6330] = 6330, - [6331] = 2184, + [6331] = 6331, [6332] = 6332, [6333] = 6333, [6334] = 6334, - [6335] = 6335, + [6335] = 1913, [6336] = 6336, - [6337] = 6337, - [6338] = 6338, - [6339] = 6339, - [6340] = 6338, + [6337] = 6332, + [6338] = 6332, + [6339] = 6327, + [6340] = 6340, [6341] = 6341, - [6342] = 6342, + [6342] = 6341, [6343] = 6341, - [6344] = 6339, - [6345] = 6345, - [6346] = 6346, - [6347] = 6347, - [6348] = 6338, - [6349] = 6349, + [6344] = 6344, + [6345] = 6340, + [6346] = 1914, + [6347] = 6327, + [6348] = 6348, + [6349] = 6340, [6350] = 6350, [6351] = 6351, - [6352] = 6339, + [6352] = 6344, [6353] = 6353, - [6354] = 6342, - [6355] = 6355, - [6356] = 2446, - [6357] = 1914, - [6358] = 6338, - [6359] = 6359, - [6360] = 6346, + [6354] = 6341, + [6355] = 6332, + [6356] = 6356, + [6357] = 6332, + [6358] = 6327, + [6359] = 6286, + [6360] = 6344, [6361] = 6361, - [6362] = 6346, + [6362] = 6327, [6363] = 6363, - [6364] = 1913, - [6365] = 6339, - [6366] = 6366, - [6367] = 6367, - [6368] = 6341, - [6369] = 6341, + [6364] = 6344, + [6365] = 6365, + [6366] = 6340, + [6367] = 6341, + [6368] = 6368, + [6369] = 6369, [6370] = 6370, [6371] = 6371, - [6372] = 6372, - [6373] = 6373, - [6374] = 6338, - [6375] = 6342, - [6376] = 6342, - [6377] = 6346, - [6378] = 6341, - [6379] = 6346, + [6372] = 6368, + [6373] = 6369, + [6374] = 6370, + [6375] = 6375, + [6376] = 6370, + [6377] = 6371, + [6378] = 6378, + [6379] = 6371, [6380] = 6380, [6381] = 6381, - [6382] = 6382, + [6382] = 1920, [6383] = 6383, [6384] = 6384, [6385] = 6385, [6386] = 6386, - [6387] = 6384, - [6388] = 6388, + [6387] = 6387, + [6388] = 6319, [6389] = 6389, - [6390] = 6384, - [6391] = 6384, - [6392] = 6380, + [6390] = 6390, + [6391] = 6391, + [6392] = 6392, [6393] = 6393, - [6394] = 6394, - [6395] = 6332, + [6394] = 6370, + [6395] = 6395, [6396] = 6396, - [6397] = 6397, - [6398] = 6398, - [6399] = 6399, - [6400] = 6384, - [6401] = 6401, + [6397] = 6371, + [6398] = 6375, + [6399] = 6384, + [6400] = 2411, + [6401] = 6375, [6402] = 6402, [6403] = 6403, [6404] = 6404, [6405] = 6405, [6406] = 6406, - [6407] = 6397, - [6408] = 6380, - [6409] = 6409, + [6407] = 6407, + [6408] = 6408, + [6409] = 6368, [6410] = 6410, - [6411] = 6411, - [6412] = 6412, + [6411] = 6369, + [6412] = 6368, [6413] = 6413, - [6414] = 6411, - [6415] = 1916, - [6416] = 6416, + [6414] = 6414, + [6415] = 6385, + [6416] = 6384, [6417] = 6417, [6418] = 6418, - [6419] = 6386, - [6420] = 6420, - [6421] = 6421, - [6422] = 6420, - [6423] = 6423, + [6419] = 6286, + [6420] = 6369, + [6421] = 6375, + [6422] = 6422, + [6423] = 6370, [6424] = 6424, - [6425] = 6386, - [6426] = 6393, + [6425] = 6371, + [6426] = 6368, [6427] = 6427, - [6428] = 6428, - [6429] = 6393, + [6428] = 6375, + [6429] = 6429, [6430] = 6430, [6431] = 6431, - [6432] = 2174, - [6433] = 6433, + [6432] = 6432, + [6433] = 6384, [6434] = 6434, [6435] = 6435, - [6436] = 6436, - [6437] = 6437, - [6438] = 6438, + [6436] = 2168, + [6437] = 6384, + [6438] = 6375, [6439] = 6439, - [6440] = 6411, + [6440] = 5732, [6441] = 6441, [6442] = 6442, - [6443] = 6397, + [6443] = 2169, [6444] = 6444, - [6445] = 6386, - [6446] = 6386, - [6447] = 6411, + [6445] = 6385, + [6446] = 6369, + [6447] = 6447, [6448] = 6448, - [6449] = 6397, - [6450] = 2419, - [6451] = 6411, - [6452] = 2175, - [6453] = 6420, + [6449] = 6449, + [6450] = 6369, + [6451] = 6451, + [6452] = 6452, + [6453] = 6453, [6454] = 6454, - [6455] = 6393, + [6455] = 6455, [6456] = 6456, - [6457] = 6411, + [6457] = 6457, [6458] = 6458, - [6459] = 6393, - [6460] = 6384, - [6461] = 6397, - [6462] = 6380, - [6463] = 5739, - [6464] = 6380, - [6465] = 6465, + [6459] = 6459, + [6460] = 6460, + [6461] = 3041, + [6462] = 6462, + [6463] = 6463, + [6464] = 6464, + [6465] = 3029, [6466] = 6466, - [6467] = 6467, + [6467] = 6451, [6468] = 6468, [6469] = 6469, [6470] = 6470, [6471] = 6471, - [6472] = 6472, + [6472] = 6466, [6473] = 6473, [6474] = 6474, - [6475] = 6465, + [6475] = 6475, [6476] = 6476, [6477] = 6477, [6478] = 6478, [6479] = 6479, - [6480] = 6465, + [6480] = 6480, [6481] = 6481, - [6482] = 6476, + [6482] = 6482, [6483] = 6483, [6484] = 6484, - [6485] = 6485, + [6485] = 6466, [6486] = 6486, - [6487] = 6487, + [6487] = 6463, [6488] = 6488, [6489] = 6489, - [6490] = 6470, - [6491] = 6477, - [6492] = 6469, - [6493] = 3838, - [6494] = 6494, - [6495] = 6495, + [6490] = 6456, + [6491] = 6491, + [6492] = 6492, + [6493] = 6493, + [6494] = 6463, + [6495] = 6451, [6496] = 6496, - [6497] = 3747, + [6497] = 6484, [6498] = 6498, - [6499] = 6499, + [6499] = 6466, [6500] = 6500, - [6501] = 6501, - [6502] = 6469, - [6503] = 6487, + [6501] = 6451, + [6502] = 6502, + [6503] = 6503, [6504] = 6504, [6505] = 6505, - [6506] = 6483, - [6507] = 6507, - [6508] = 6508, + [6506] = 6463, + [6507] = 6451, + [6508] = 6466, [6509] = 6509, - [6510] = 6470, - [6511] = 6469, - [6512] = 3024, + [6510] = 6479, + [6511] = 6511, + [6512] = 6451, [6513] = 6513, [6514] = 6514, - [6515] = 6466, - [6516] = 6466, - [6517] = 6517, - [6518] = 6518, + [6515] = 6515, + [6516] = 6516, + [6517] = 6471, + [6518] = 6469, [6519] = 6519, [6520] = 6520, - [6521] = 6486, + [6521] = 6521, [6522] = 6522, [6523] = 6523, - [6524] = 6524, - [6525] = 6509, - [6526] = 6526, + [6524] = 6484, + [6525] = 6525, + [6526] = 6515, [6527] = 6527, - [6528] = 6528, - [6529] = 6529, - [6530] = 6471, - [6531] = 6332, - [6532] = 6470, + [6528] = 6488, + [6529] = 6515, + [6530] = 6530, + [6531] = 6531, + [6532] = 6496, [6533] = 6533, - [6534] = 6534, - [6535] = 6476, - [6536] = 6536, + [6534] = 6498, + [6535] = 6484, + [6536] = 6453, [6537] = 6537, - [6538] = 6538, + [6538] = 6500, [6539] = 6539, - [6540] = 6483, - [6541] = 6466, + [6540] = 6540, + [6541] = 6541, [6542] = 6542, - [6543] = 6542, - [6544] = 6470, - [6545] = 6469, - [6546] = 6546, - [6547] = 6483, - [6548] = 6509, - [6549] = 6476, - [6550] = 2994, - [6551] = 6551, - [6552] = 6552, + [6543] = 6543, + [6544] = 6544, + [6545] = 6463, + [6546] = 6451, + [6547] = 6547, + [6548] = 6548, + [6549] = 6549, + [6550] = 6550, + [6551] = 6484, + [6552] = 6482, [6553] = 6553, [6554] = 6554, - [6555] = 6465, - [6556] = 6556, - [6557] = 6487, + [6555] = 6555, + [6556] = 6521, + [6557] = 6479, [6558] = 6558, - [6559] = 6469, + [6559] = 6559, [6560] = 6560, - [6561] = 6487, - [6562] = 6507, - [6563] = 6487, - [6564] = 6472, + [6561] = 6561, + [6562] = 6562, + [6563] = 6563, + [6564] = 6564, [6565] = 6565, [6566] = 6566, - [6567] = 6469, + [6567] = 6567, [6568] = 6568, - [6569] = 6556, - [6570] = 6570, + [6569] = 6569, + [6570] = 6521, [6571] = 6571, - [6572] = 6349, - [6573] = 6469, + [6572] = 6572, + [6573] = 6463, [6574] = 6574, [6575] = 6575, - [6576] = 6483, - [6577] = 6469, - [6578] = 6470, - [6579] = 2380, - [6580] = 6509, - [6581] = 6581, + [6576] = 6515, + [6577] = 6515, + [6578] = 6504, + [6579] = 3719, + [6580] = 6580, + [6581] = 3733, [6582] = 6582, - [6583] = 6466, - [6584] = 6466, - [6585] = 6465, - [6586] = 6586, - [6587] = 6587, - [6588] = 6507, - [6589] = 6507, + [6583] = 6583, + [6584] = 6584, + [6585] = 6585, + [6586] = 6456, + [6587] = 6316, + [6588] = 6318, + [6589] = 6451, [6590] = 6590, - [6591] = 6591, + [6591] = 6453, [6592] = 6592, - [6593] = 6536, - [6594] = 6594, - [6595] = 6558, - [6596] = 6466, - [6597] = 6560, - [6598] = 6483, - [6599] = 6469, - [6600] = 6600, - [6601] = 6509, - [6602] = 6602, - [6603] = 6603, - [6604] = 6604, - [6605] = 6605, - [6606] = 6606, - [6607] = 6607, - [6608] = 6608, - [6609] = 6609, + [6593] = 6593, + [6594] = 6453, + [6595] = 6451, + [6596] = 6321, + [6597] = 6324, + [6598] = 6598, + [6599] = 6599, + [6600] = 6460, + [6601] = 2377, + [6602] = 6456, + [6603] = 6456, + [6604] = 6451, + [6605] = 6479, + [6606] = 6453, + [6607] = 6521, + [6608] = 6453, + [6609] = 6453, [6610] = 6610, - [6611] = 6611, - [6612] = 3838, + [6611] = 6484, + [6612] = 6612, [6613] = 6613, [6614] = 6614, - [6615] = 2336, + [6615] = 6615, [6616] = 6616, - [6617] = 6607, + [6617] = 6617, [6618] = 6618, [6619] = 6619, [6620] = 6620, - [6621] = 1923, - [6622] = 6607, + [6621] = 6621, + [6622] = 6622, [6623] = 6623, [6624] = 6624, [6625] = 6625, [6626] = 6626, - [6627] = 6627, + [6627] = 2342, [6628] = 6628, - [6629] = 6627, - [6630] = 1925, + [6629] = 6629, + [6630] = 6630, [6631] = 6631, - [6632] = 6632, + [6632] = 3719, [6633] = 6633, [6634] = 6634, [6635] = 6635, @@ -11393,85 +11375,85 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [6638] = 6638, [6639] = 6639, [6640] = 6640, - [6641] = 6641, + [6641] = 6630, [6642] = 6642, [6643] = 6643, - [6644] = 6644, - [6645] = 6645, + [6644] = 6631, + [6645] = 6623, [6646] = 6646, - [6647] = 6647, + [6647] = 3733, [6648] = 6648, - [6649] = 6620, - [6650] = 6650, - [6651] = 3838, + [6649] = 6649, + [6650] = 2309, + [6651] = 6651, [6652] = 6652, - [6653] = 6653, - [6654] = 6635, - [6655] = 6655, - [6656] = 6656, - [6657] = 2318, - [6658] = 6350, - [6659] = 3747, + [6653] = 2334, + [6654] = 6618, + [6655] = 3719, + [6656] = 6649, + [6657] = 6657, + [6658] = 6658, + [6659] = 6659, [6660] = 6660, - [6661] = 6661, - [6662] = 6620, + [6661] = 6316, + [6662] = 6318, [6663] = 6663, - [6664] = 6353, - [6665] = 6626, + [6664] = 6663, + [6665] = 6665, [6666] = 6666, - [6667] = 3838, - [6668] = 2341, - [6669] = 6669, - [6670] = 6670, - [6671] = 6620, + [6667] = 6667, + [6668] = 1923, + [6669] = 6321, + [6670] = 6324, + [6671] = 6671, [6672] = 6672, [6673] = 6673, - [6674] = 6674, - [6675] = 6620, - [6676] = 6623, - [6677] = 6647, - [6678] = 2344, - [6679] = 6679, - [6680] = 6680, - [6681] = 6620, - [6682] = 2315, - [6683] = 6683, - [6684] = 6635, - [6685] = 6685, - [6686] = 6620, - [6687] = 6627, - [6688] = 1924, - [6689] = 6620, - [6690] = 6690, + [6674] = 1925, + [6675] = 6675, + [6676] = 1927, + [6677] = 6677, + [6678] = 6678, + [6679] = 6633, + [6680] = 6623, + [6681] = 6681, + [6682] = 6682, + [6683] = 6634, + [6684] = 6684, + [6685] = 2311, + [6686] = 6635, + [6687] = 6623, + [6688] = 6623, + [6689] = 6689, + [6690] = 6618, [6691] = 6691, - [6692] = 6692, - [6693] = 6619, - [6694] = 2378, - [6695] = 6647, - [6696] = 6696, - [6697] = 6697, - [6698] = 6371, - [6699] = 3747, - [6700] = 6700, - [6701] = 6372, - [6702] = 6702, - [6703] = 6647, - [6704] = 6704, - [6705] = 6623, - [6706] = 6647, - [6707] = 6707, + [6692] = 6618, + [6693] = 3733, + [6694] = 6694, + [6695] = 6618, + [6696] = 6630, + [6697] = 6631, + [6698] = 6649, + [6699] = 6699, + [6700] = 6618, + [6701] = 6633, + [6702] = 6660, + [6703] = 6634, + [6704] = 6635, + [6705] = 6618, + [6706] = 2373, + [6707] = 6618, [6708] = 6708, [6709] = 6709, - [6710] = 6710, - [6711] = 3747, + [6710] = 6684, + [6711] = 3719, [6712] = 6712, [6713] = 6713, [6714] = 6714, - [6715] = 6715, + [6715] = 3733, [6716] = 6716, - [6717] = 6663, + [6717] = 6717, [6718] = 6718, - [6719] = 6619, + [6719] = 2337, [6720] = 6720, [6721] = 6721, [6722] = 6722, @@ -11479,1072 +11461,1013 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [6724] = 6724, [6725] = 6725, [6726] = 6726, - [6727] = 6727, - [6728] = 6674, + [6727] = 6717, + [6728] = 6728, [6729] = 6729, [6730] = 6730, [6731] = 6731, [6732] = 6732, [6733] = 6733, [6734] = 6734, - [6735] = 6656, - [6736] = 6734, + [6735] = 6735, + [6736] = 6736, [6737] = 6737, [6738] = 6738, - [6739] = 6739, - [6740] = 6730, - [6741] = 6741, + [6739] = 6714, + [6740] = 6740, + [6741] = 6729, [6742] = 6742, - [6743] = 6743, - [6744] = 6744, - [6745] = 6742, + [6743] = 6730, + [6744] = 2426, + [6745] = 6745, [6746] = 6746, - [6747] = 6732, - [6748] = 6748, - [6749] = 6749, - [6750] = 6739, + [6747] = 6747, + [6748] = 6735, + [6749] = 6735, + [6750] = 6750, [6751] = 6751, [6752] = 6752, [6753] = 6753, - [6754] = 6730, + [6754] = 6754, [6755] = 6755, [6756] = 6756, - [6757] = 6751, + [6757] = 6757, [6758] = 6758, [6759] = 6759, - [6760] = 6729, + [6760] = 6760, [6761] = 6761, - [6762] = 6756, + [6762] = 6726, [6763] = 6763, - [6764] = 6758, + [6764] = 6764, [6765] = 6765, [6766] = 6766, - [6767] = 6767, - [6768] = 6743, + [6767] = 6730, + [6768] = 6768, [6769] = 6769, - [6770] = 6742, + [6770] = 6737, [6771] = 6771, - [6772] = 6731, + [6772] = 6737, [6773] = 6773, - [6774] = 6744, - [6775] = 6765, - [6776] = 6776, + [6774] = 6774, + [6775] = 6775, + [6776] = 6752, [6777] = 6777, [6778] = 6778, - [6779] = 6746, - [6780] = 6755, - [6781] = 6781, - [6782] = 6763, - [6783] = 6767, + [6779] = 6779, + [6780] = 6780, + [6781] = 6729, + [6782] = 6782, + [6783] = 6783, [6784] = 6784, - [6785] = 6767, - [6786] = 6748, + [6785] = 6785, + [6786] = 6734, [6787] = 6787, - [6788] = 6788, + [6788] = 6751, [6789] = 6789, [6790] = 6790, [6791] = 6791, - [6792] = 6792, - [6793] = 6741, - [6794] = 6751, - [6795] = 6795, - [6796] = 6731, + [6792] = 6764, + [6793] = 6784, + [6794] = 6794, + [6795] = 6760, + [6796] = 6796, [6797] = 6797, [6798] = 6798, - [6799] = 6744, - [6800] = 6763, + [6799] = 6799, + [6800] = 6732, [6801] = 6801, [6802] = 6802, [6803] = 6803, [6804] = 6804, - [6805] = 6769, + [6805] = 6725, [6806] = 6806, - [6807] = 6807, - [6808] = 6791, + [6807] = 6759, + [6808] = 6730, [6809] = 6809, - [6810] = 6810, + [6810] = 6809, [6811] = 6811, - [6812] = 6792, + [6812] = 6812, [6813] = 6813, - [6814] = 6814, - [6815] = 6787, - [6816] = 6816, - [6817] = 6781, - [6818] = 6818, - [6819] = 6741, - [6820] = 6788, - [6821] = 6748, - [6822] = 6789, - [6823] = 6669, - [6824] = 6739, - [6825] = 6371, - [6826] = 6372, - [6827] = 6751, - [6828] = 6828, + [6814] = 6759, + [6815] = 6801, + [6816] = 6761, + [6817] = 6804, + [6818] = 6784, + [6819] = 6732, + [6820] = 6820, + [6821] = 6753, + [6822] = 6822, + [6823] = 6823, + [6824] = 6824, + [6825] = 6825, + [6826] = 6726, + [6827] = 6827, + [6828] = 6737, [6829] = 6829, - [6830] = 6790, - [6831] = 6763, - [6832] = 2446, - [6833] = 6746, - [6834] = 6748, - [6835] = 6739, - [6836] = 6791, - [6837] = 6748, - [6838] = 6838, - [6839] = 6792, - [6840] = 6739, - [6841] = 6814, - [6842] = 6756, - [6843] = 6758, - [6844] = 6765, - [6845] = 6751, - [6846] = 6797, - [6847] = 6818, - [6848] = 6763, - [6849] = 6804, - [6850] = 6767, - [6851] = 6741, - [6852] = 6756, - [6853] = 6758, - [6854] = 6795, - [6855] = 6855, - [6856] = 6729, + [6830] = 6830, + [6831] = 6831, + [6832] = 6832, + [6833] = 6833, + [6834] = 6834, + [6835] = 6735, + [6836] = 6836, + [6837] = 6732, + [6838] = 6771, + [6839] = 6839, + [6840] = 6801, + [6841] = 6725, + [6842] = 6842, + [6843] = 6824, + [6844] = 6729, + [6845] = 6845, + [6846] = 6761, + [6847] = 6847, + [6848] = 6784, + [6849] = 6732, + [6850] = 6850, + [6851] = 6734, + [6852] = 6852, + [6853] = 6751, + [6854] = 6854, + [6855] = 6753, + [6856] = 6830, [6857] = 6857, - [6858] = 6756, - [6859] = 6755, - [6860] = 6743, - [6861] = 6742, - [6862] = 6739, - [6863] = 6863, - [6864] = 6797, - [6865] = 6769, + [6858] = 6858, + [6859] = 6859, + [6860] = 6804, + [6861] = 6831, + [6862] = 6862, + [6863] = 6734, + [6864] = 6735, + [6865] = 6759, [6866] = 6866, - [6867] = 6867, - [6868] = 6758, - [6869] = 6795, - [6870] = 6765, - [6871] = 6871, - [6872] = 6777, - [6873] = 6804, + [6867] = 6825, + [6868] = 6753, + [6869] = 6809, + [6870] = 6737, + [6871] = 6726, + [6872] = 6782, + [6873] = 6823, [6874] = 6874, - [6875] = 6755, - [6876] = 6756, - [6877] = 6767, - [6878] = 6758, - [6879] = 6879, - [6880] = 6880, - [6881] = 6642, - [6882] = 6882, - [6883] = 6883, - [6884] = 6756, - [6885] = 6758, - [6886] = 6886, - [6887] = 6746, - [6888] = 6888, - [6889] = 6767, - [6890] = 6791, - [6891] = 6891, - [6892] = 6742, - [6893] = 6893, - [6894] = 6751, - [6895] = 6895, - [6896] = 6792, - [6897] = 6741, - [6898] = 6898, - [6899] = 6765, - [6900] = 6900, - [6901] = 6901, - [6902] = 6792, - [6903] = 6903, - [6904] = 6777, - [6905] = 6795, - [6906] = 6755, - [6907] = 6907, - [6908] = 6767, - [6909] = 6909, - [6910] = 6791, - [6911] = 6781, - [6912] = 6912, - [6913] = 6913, - [6914] = 6730, - [6915] = 6756, - [6916] = 6795, - [6917] = 6758, - [6918] = 6801, - [6919] = 6919, - [6920] = 6350, - [6921] = 6909, - [6922] = 6353, - [6923] = 6730, - [6924] = 6924, + [6875] = 6830, + [6876] = 6784, + [6877] = 6784, + [6878] = 6732, + [6879] = 6732, + [6880] = 6730, + [6881] = 6758, + [6882] = 6740, + [6883] = 6759, + [6884] = 6729, + [6885] = 6761, + [6886] = 6758, + [6887] = 6887, + [6888] = 6726, + [6889] = 6889, + [6890] = 6825, + [6891] = 6811, + [6892] = 6737, + [6893] = 6832, + [6894] = 6824, + [6895] = 6830, + [6896] = 6729, + [6897] = 6761, + [6898] = 6751, + [6899] = 6812, + [6900] = 6825, + [6901] = 6734, + [6902] = 6902, + [6903] = 6760, + [6904] = 6737, + [6905] = 6760, + [6906] = 6906, + [6907] = 6729, + [6908] = 6799, + [6909] = 6830, + [6910] = 6910, + [6911] = 6734, + [6912] = 6782, + [6913] = 6831, + [6914] = 6726, + [6915] = 6915, + [6916] = 6832, + [6917] = 6832, + [6918] = 6726, + [6919] = 6751, + [6920] = 6920, + [6921] = 6921, + [6922] = 6726, + [6923] = 6813, + [6924] = 6737, [6925] = 6925, - [6926] = 6795, - [6927] = 6801, - [6928] = 6928, - [6929] = 6929, - [6930] = 6930, - [6931] = 6909, - [6932] = 6730, - [6933] = 6767, - [6934] = 6934, - [6935] = 6935, - [6936] = 6936, - [6937] = 6756, - [6938] = 6758, - [6939] = 6767, - [6940] = 6777, - [6941] = 6802, - [6942] = 6797, - [6943] = 6943, - [6944] = 6900, - [6945] = 6945, - [6946] = 6765, - [6947] = 6802, + [6926] = 6784, + [6927] = 6732, + [6928] = 6784, + [6929] = 6732, + [6930] = 6820, + [6931] = 6726, + [6932] = 6758, + [6933] = 6760, + [6934] = 6734, + [6935] = 6809, + [6936] = 6658, + [6937] = 6937, + [6938] = 6938, + [6939] = 6758, + [6940] = 6940, + [6941] = 6753, + [6942] = 6942, + [6943] = 6751, + [6944] = 6831, + [6945] = 6809, + [6946] = 6811, + [6947] = 6820, [6948] = 6948, [6949] = 6949, - [6950] = 6748, + [6950] = 6950, [6951] = 6951, - [6952] = 6871, - [6953] = 6953, - [6954] = 6801, - [6955] = 6955, - [6956] = 6729, - [6957] = 6957, - [6958] = 6731, - [6959] = 6744, - [6960] = 6746, - [6961] = 6781, - [6962] = 6930, - [6963] = 6963, - [6964] = 6964, - [6965] = 6777, - [6966] = 6748, - [6967] = 6797, - [6968] = 6802, - [6969] = 6804, - [6970] = 6804, - [6971] = 6971, - [6972] = 6972, - [6973] = 6973, + [6952] = 6952, + [6953] = 6811, + [6954] = 6954, + [6955] = 6736, + [6956] = 6784, + [6957] = 6732, + [6958] = 6823, + [6959] = 6832, + [6960] = 6782, + [6961] = 6820, + [6962] = 6962, + [6963] = 6726, + [6964] = 6726, + [6965] = 6738, + [6966] = 6726, + [6967] = 6824, + [6968] = 6736, + [6969] = 6969, + [6970] = 6823, + [6971] = 6729, + [6972] = 6734, + [6973] = 6806, [6974] = 6974, - [6975] = 6975, - [6976] = 6732, - [6977] = 6743, - [6978] = 6739, - [6979] = 6739, + [6975] = 6725, + [6976] = 6976, + [6977] = 6801, + [6978] = 6825, + [6979] = 6832, [6980] = 6980, - [6981] = 6756, - [6982] = 6758, - [6983] = 6983, - [6984] = 6767, - [6985] = 6855, - [6986] = 6986, - [6987] = 6987, - [6988] = 6829, - [6989] = 6909, + [6981] = 6981, + [6982] = 6761, + [6983] = 6784, + [6984] = 6784, + [6985] = 6732, + [6986] = 6732, + [6987] = 6784, + [6988] = 6988, + [6989] = 6989, [6990] = 6990, - [6991] = 6991, - [6992] = 6756, - [6993] = 6758, - [6994] = 6801, - [6995] = 6767, - [6996] = 6996, - [6997] = 6997, - [6998] = 6998, - [6999] = 6756, - [7000] = 6758, + [6991] = 6726, + [6992] = 6784, + [6993] = 6804, + [6994] = 6760, + [6995] = 6801, + [6996] = 6758, + [6997] = 6726, + [6998] = 6823, + [6999] = 6784, + [7000] = 6732, [7001] = 7001, - [7002] = 6769, - [7003] = 6729, - [7004] = 7004, - [7005] = 6756, - [7006] = 6758, - [7007] = 6767, - [7008] = 6743, - [7009] = 6742, - [7010] = 7010, - [7011] = 6731, - [7012] = 6744, - [7013] = 6765, - [7014] = 7014, - [7015] = 6746, - [7016] = 6781, - [7017] = 7017, - [7018] = 6777, - [7019] = 6765, - [7020] = 6756, - [7021] = 7021, - [7022] = 6758, - [7023] = 6748, - [7024] = 6767, - [7025] = 7025, - [7026] = 6797, - [7027] = 6802, - [7028] = 6755, + [7002] = 6830, + [7003] = 7003, + [7004] = 6732, + [7005] = 6874, + [7006] = 6809, + [7007] = 7007, + [7008] = 6735, + [7009] = 6752, + [7010] = 6811, + [7011] = 6752, + [7012] = 6820, + [7013] = 6725, + [7014] = 6752, + [7015] = 6753, + [7016] = 7016, + [7017] = 6783, + [7018] = 7018, + [7019] = 6823, + [7020] = 6824, + [7021] = 6804, + [7022] = 6950, + [7023] = 6938, + [7024] = 7024, + [7025] = 6824, + [7026] = 6831, + [7027] = 7027, + [7028] = 7028, [7029] = 7029, - [7030] = 6767, - [7031] = 6804, + [7030] = 7030, + [7031] = 7031, [7032] = 7032, - [7033] = 6763, + [7033] = 7033, [7034] = 7034, - [7035] = 6791, - [7036] = 6909, + [7035] = 2316, + [7036] = 7036, [7037] = 7037, - [7038] = 7038, - [7039] = 7039, + [7038] = 1956, + [7039] = 1948, [7040] = 7040, - [7041] = 1939, + [7041] = 7041, [7042] = 7042, - [7043] = 7043, + [7043] = 1967, [7044] = 7044, [7045] = 7045, - [7046] = 1974, - [7047] = 2317, - [7048] = 2340, - [7049] = 7049, + [7046] = 7046, + [7047] = 1970, + [7048] = 7048, + [7049] = 1972, [7050] = 7050, [7051] = 7051, [7052] = 7052, [7053] = 7053, - [7054] = 1968, - [7055] = 1930, + [7054] = 1952, + [7055] = 7055, [7056] = 7056, - [7057] = 7057, - [7058] = 1947, - [7059] = 7059, - [7060] = 1959, - [7061] = 7038, - [7062] = 7062, + [7057] = 1954, + [7058] = 7037, + [7059] = 7032, + [7060] = 7055, + [7061] = 7056, + [7062] = 1959, [7063] = 7063, [7064] = 7064, - [7065] = 7038, - [7066] = 1964, - [7067] = 7057, - [7068] = 7039, - [7069] = 7069, - [7070] = 1978, + [7065] = 7065, + [7066] = 7066, + [7067] = 7067, + [7068] = 1961, + [7069] = 7037, + [7070] = 7070, [7071] = 7071, - [7072] = 7072, + [7072] = 7027, [7073] = 7073, - [7074] = 7074, + [7074] = 7029, [7075] = 7075, [7076] = 7076, - [7077] = 7077, + [7077] = 1973, [7078] = 7078, - [7079] = 7057, - [7080] = 1936, - [7081] = 7081, + [7079] = 1975, + [7080] = 7080, + [7081] = 7056, [7082] = 7082, - [7083] = 7083, - [7084] = 1938, - [7085] = 7085, - [7086] = 1961, - [7087] = 1931, - [7088] = 1949, - [7089] = 1951, - [7090] = 1932, + [7083] = 7056, + [7084] = 1950, + [7085] = 7076, + [7086] = 1937, + [7087] = 7087, + [7088] = 7088, + [7089] = 7089, + [7090] = 1978, [7091] = 7091, [7092] = 7092, - [7093] = 7093, - [7094] = 7039, - [7095] = 1956, - [7096] = 7083, - [7097] = 7097, - [7098] = 7098, - [7099] = 7099, - [7100] = 7056, + [7093] = 7034, + [7094] = 1938, + [7095] = 7095, + [7096] = 1930, + [7097] = 1935, + [7098] = 7029, + [7099] = 7050, + [7100] = 7100, [7101] = 7101, - [7102] = 7102, - [7103] = 7101, - [7104] = 1940, - [7105] = 1948, - [7106] = 7039, - [7107] = 7107, - [7108] = 7108, - [7109] = 7077, - [7110] = 2343, - [7111] = 7043, - [7112] = 7051, - [7113] = 7051, - [7114] = 1952, - [7115] = 7078, - [7116] = 7081, - [7117] = 7056, - [7118] = 1973, - [7119] = 7062, - [7120] = 7120, - [7121] = 7121, - [7122] = 7101, - [7123] = 7123, + [7102] = 2331, + [7103] = 7103, + [7104] = 7104, + [7105] = 7104, + [7106] = 7106, + [7107] = 2339, + [7108] = 7033, + [7109] = 2345, + [7110] = 7110, + [7111] = 7111, + [7112] = 7029, + [7113] = 7113, + [7114] = 7034, + [7115] = 7115, + [7116] = 7116, + [7117] = 1955, + [7118] = 7037, + [7119] = 7031, + [7120] = 7104, + [7121] = 7034, + [7122] = 7122, + [7123] = 7032, [7124] = 7124, - [7125] = 7125, - [7126] = 1954, - [7127] = 7127, - [7128] = 7128, - [7129] = 1935, - [7130] = 7081, - [7131] = 7077, - [7132] = 7132, - [7133] = 7133, - [7134] = 7134, - [7135] = 1975, - [7136] = 7043, - [7137] = 7137, - [7138] = 7083, + [7125] = 7089, + [7126] = 7126, + [7127] = 7033, + [7128] = 1958, + [7129] = 7129, + [7130] = 7050, + [7131] = 7131, + [7132] = 7046, + [7133] = 7116, + [7134] = 7076, + [7135] = 2937, + [7136] = 7032, + [7137] = 7027, + [7138] = 7138, [7139] = 7139, [7140] = 7140, - [7141] = 1943, - [7142] = 7042, - [7143] = 7143, - [7144] = 1945, + [7141] = 7141, + [7142] = 7142, + [7143] = 7046, + [7144] = 7027, [7145] = 7145, - [7146] = 7039, - [7147] = 7147, - [7148] = 7148, - [7149] = 1958, - [7150] = 7069, + [7146] = 7146, + [7147] = 7140, + [7148] = 7050, + [7149] = 7050, + [7150] = 7150, [7151] = 7151, - [7152] = 7152, - [7153] = 1962, - [7154] = 7154, - [7155] = 7101, + [7152] = 7076, + [7153] = 7031, + [7154] = 7116, + [7155] = 7155, [7156] = 7156, [7157] = 7157, - [7158] = 1934, - [7159] = 1969, + [7158] = 1968, + [7159] = 7076, [7160] = 7160, - [7161] = 7161, - [7162] = 7101, - [7163] = 7163, - [7164] = 7164, - [7165] = 7092, - [7166] = 1941, - [7167] = 7057, + [7161] = 7067, + [7162] = 7162, + [7163] = 7036, + [7164] = 7055, + [7165] = 7056, + [7166] = 7037, + [7167] = 7167, [7168] = 7168, - [7169] = 7169, - [7170] = 1972, - [7171] = 1933, - [7172] = 7050, - [7173] = 7173, - [7174] = 7143, - [7175] = 7044, - [7176] = 7077, + [7169] = 1974, + [7170] = 1951, + [7171] = 1960, + [7172] = 1941, + [7173] = 1946, + [7174] = 7174, + [7175] = 1957, + [7176] = 1940, [7177] = 7177, - [7178] = 7178, - [7179] = 7044, - [7180] = 7073, - [7181] = 7137, - [7182] = 7069, - [7183] = 7092, - [7184] = 7184, - [7185] = 7185, - [7186] = 7040, - [7187] = 7062, - [7188] = 7188, - [7189] = 7143, - [7190] = 7190, - [7191] = 7191, - [7192] = 7039, - [7193] = 2928, + [7178] = 7029, + [7179] = 7070, + [7180] = 7180, + [7181] = 7027, + [7182] = 1942, + [7183] = 7183, + [7184] = 1944, + [7185] = 7032, + [7186] = 7186, + [7187] = 1943, + [7188] = 7031, + [7189] = 7189, + [7190] = 7036, + [7191] = 1953, + [7192] = 7032, + [7193] = 7089, [7194] = 7194, - [7195] = 7078, + [7195] = 7104, [7196] = 7196, - [7197] = 7050, - [7198] = 1971, - [7199] = 7199, - [7200] = 1979, - [7201] = 7201, - [7202] = 7202, + [7197] = 7033, + [7198] = 7027, + [7199] = 7140, + [7200] = 7200, + [7201] = 7116, + [7202] = 7037, [7203] = 7203, [7204] = 7204, - [7205] = 7205, - [7206] = 7038, - [7207] = 7083, - [7208] = 7092, - [7209] = 7045, - [7210] = 7210, - [7211] = 7040, - [7212] = 1957, - [7213] = 7044, - [7214] = 7190, - [7215] = 7042, - [7216] = 7073, + [7205] = 1962, + [7206] = 7206, + [7207] = 7207, + [7208] = 7056, + [7209] = 1934, + [7210] = 7070, + [7211] = 1936, + [7212] = 7031, + [7213] = 7213, + [7214] = 7067, + [7215] = 7215, + [7216] = 7070, [7217] = 7217, - [7218] = 7073, - [7219] = 7057, - [7220] = 7044, - [7221] = 1929, - [7222] = 7190, - [7223] = 7044, + [7218] = 7055, + [7219] = 7219, + [7220] = 7220, + [7221] = 1963, + [7222] = 7222, + [7223] = 7033, [7224] = 7224, - [7225] = 7137, - [7226] = 7190, - [7227] = 7227, + [7225] = 7225, + [7226] = 7226, + [7227] = 7036, [7228] = 7228, - [7229] = 7045, - [7230] = 7230, - [7231] = 1966, - [7232] = 2941, - [7233] = 7137, - [7234] = 7234, - [7235] = 7049, - [7236] = 7137, - [7237] = 7137, - [7238] = 7092, - [7239] = 7239, - [7240] = 7092, - [7241] = 7241, - [7242] = 7239, - [7243] = 7101, - [7244] = 7244, - [7245] = 7245, - [7246] = 7246, - [7247] = 7143, + [7229] = 1965, + [7230] = 1966, + [7231] = 1929, + [7232] = 1969, + [7233] = 7056, + [7234] = 7029, + [7235] = 7235, + [7236] = 7056, + [7237] = 1971, + [7238] = 7055, + [7239] = 7033, + [7240] = 7240, + [7241] = 7140, + [7242] = 1977, + [7243] = 7243, + [7244] = 7116, + [7245] = 7045, + [7246] = 7037, + [7247] = 2928, [7248] = 7248, - [7249] = 1937, - [7250] = 7239, - [7251] = 7077, - [7252] = 1946, + [7249] = 7249, + [7250] = 7067, + [7251] = 7050, + [7252] = 7252, [7253] = 7253, [7254] = 7254, - [7255] = 7039, + [7255] = 1939, [7256] = 7256, - [7257] = 7042, - [7258] = 1970, - [7259] = 7101, - [7260] = 7260, - [7261] = 7083, - [7262] = 7043, - [7263] = 7263, - [7264] = 7051, - [7265] = 7057, - [7266] = 2347, - [7267] = 7101, + [7257] = 7257, + [7258] = 7076, + [7259] = 7259, + [7260] = 1945, + [7261] = 7261, + [7262] = 7055, + [7263] = 7031, + [7264] = 7264, + [7265] = 7265, + [7266] = 7037, + [7267] = 7267, [7268] = 7268, - [7269] = 7083, - [7270] = 1960, + [7269] = 7269, + [7270] = 7270, [7271] = 7271, [7272] = 7272, - [7273] = 7143, - [7274] = 1953, - [7275] = 7050, - [7276] = 7073, + [7273] = 7273, + [7274] = 7274, + [7275] = 7275, + [7276] = 7276, [7277] = 7277, - [7278] = 7073, - [7279] = 7038, - [7280] = 7077, + [7278] = 7275, + [7279] = 7279, + [7280] = 7280, [7281] = 7281, - [7282] = 1965, - [7283] = 7039, + [7282] = 7282, + [7283] = 7283, [7284] = 7284, - [7285] = 7056, - [7286] = 7038, + [7285] = 7285, + [7286] = 7286, [7287] = 7287, [7288] = 7288, [7289] = 7289, [7290] = 7290, [7291] = 7291, [7292] = 7292, - [7293] = 7293, + [7293] = 7277, [7294] = 7294, - [7295] = 7295, + [7295] = 7289, [7296] = 7296, [7297] = 7297, [7298] = 7298, [7299] = 7299, - [7300] = 7293, - [7301] = 7301, + [7300] = 7300, + [7301] = 7268, [7302] = 7302, [7303] = 7303, - [7304] = 7304, + [7304] = 7276, [7305] = 7305, [7306] = 7306, [7307] = 7307, [7308] = 7308, - [7309] = 7309, - [7310] = 7310, - [7311] = 7311, - [7312] = 7312, + [7309] = 7276, + [7310] = 7273, + [7311] = 7287, + [7312] = 7279, [7313] = 7313, - [7314] = 7314, + [7314] = 7288, [7315] = 7315, [7316] = 7316, [7317] = 7317, [7318] = 7318, [7319] = 7319, - [7320] = 7316, + [7320] = 7320, [7321] = 7321, [7322] = 7322, - [7323] = 7316, - [7324] = 7324, - [7325] = 7303, + [7323] = 7276, + [7324] = 7276, + [7325] = 7325, [7326] = 7326, [7327] = 7327, [7328] = 7328, - [7329] = 7293, + [7329] = 7329, [7330] = 7330, - [7331] = 7331, - [7332] = 7332, - [7333] = 7333, - [7334] = 7316, - [7335] = 7335, + [7331] = 7318, + [7332] = 7287, + [7333] = 7290, + [7334] = 7326, + [7335] = 7288, [7336] = 7336, - [7337] = 7316, + [7337] = 7337, [7338] = 7338, [7339] = 7339, [7340] = 7340, - [7341] = 7316, - [7342] = 7335, - [7343] = 7343, + [7341] = 7341, + [7342] = 7317, + [7343] = 7291, [7344] = 7344, - [7345] = 7345, - [7346] = 7335, - [7347] = 7338, + [7345] = 7269, + [7346] = 7346, + [7347] = 7306, [7348] = 7348, - [7349] = 7305, + [7349] = 7336, [7350] = 7350, [7351] = 7351, - [7352] = 7352, - [7353] = 7318, + [7352] = 7271, + [7353] = 7353, [7354] = 7318, - [7355] = 7340, - [7356] = 7294, + [7355] = 7299, + [7356] = 3054, [7357] = 7357, - [7358] = 7358, - [7359] = 7359, - [7360] = 7330, - [7361] = 7291, - [7362] = 7316, - [7363] = 7363, - [7364] = 7364, - [7365] = 7365, - [7366] = 7312, - [7367] = 7363, - [7368] = 7368, - [7369] = 7369, - [7370] = 7370, + [7358] = 7267, + [7359] = 7307, + [7360] = 7320, + [7361] = 7320, + [7362] = 7362, + [7363] = 7276, + [7364] = 7288, + [7365] = 7268, + [7366] = 7366, + [7367] = 7276, + [7368] = 7268, + [7369] = 7353, + [7370] = 7275, [7371] = 7371, - [7372] = 7318, - [7373] = 7373, - [7374] = 7374, - [7375] = 7339, - [7376] = 7294, + [7372] = 7372, + [7373] = 7351, + [7374] = 7276, + [7375] = 7327, + [7376] = 7376, [7377] = 7377, - [7378] = 7328, - [7379] = 7379, + [7378] = 7378, + [7379] = 7297, [7380] = 7380, - [7381] = 7316, - [7382] = 7382, - [7383] = 7383, - [7384] = 7316, + [7381] = 7282, + [7382] = 7319, + [7383] = 7337, + [7384] = 7276, [7385] = 7385, - [7386] = 7365, + [7386] = 7303, [7387] = 7387, [7388] = 7388, - [7389] = 7389, - [7390] = 7380, + [7389] = 7346, + [7390] = 7306, [7391] = 7391, - [7392] = 7315, - [7393] = 7316, - [7394] = 7394, - [7395] = 7330, - [7396] = 7370, - [7397] = 7374, - [7398] = 7398, - [7399] = 7399, - [7400] = 7365, - [7401] = 7401, + [7392] = 7336, + [7393] = 7302, + [7394] = 7288, + [7395] = 7395, + [7396] = 7396, + [7397] = 7397, + [7398] = 7308, + [7399] = 7276, + [7400] = 7357, + [7401] = 7357, [7402] = 7402, [7403] = 7403, - [7404] = 7365, - [7405] = 7399, - [7406] = 7403, - [7407] = 7316, + [7404] = 7276, + [7405] = 7276, + [7406] = 7273, + [7407] = 7274, [7408] = 7408, - [7409] = 7368, - [7410] = 7410, - [7411] = 7308, - [7412] = 7377, - [7413] = 7333, - [7414] = 7351, - [7415] = 7316, - [7416] = 7315, - [7417] = 7417, - [7418] = 7338, - [7419] = 7350, - [7420] = 7420, - [7421] = 7421, + [7409] = 7409, + [7410] = 7325, + [7411] = 7411, + [7412] = 7276, + [7413] = 7413, + [7414] = 7414, + [7415] = 7415, + [7416] = 7276, + [7417] = 7321, + [7418] = 7276, + [7419] = 7325, + [7420] = 7299, + [7421] = 7357, [7422] = 7422, - [7423] = 7350, - [7424] = 7365, - [7425] = 7425, - [7426] = 7377, - [7427] = 7427, - [7428] = 7428, - [7429] = 7429, - [7430] = 7331, + [7423] = 7276, + [7424] = 7297, + [7425] = 7276, + [7426] = 7372, + [7427] = 7276, + [7428] = 7276, + [7429] = 7307, + [7430] = 7430, [7431] = 7431, - [7432] = 7336, - [7433] = 7433, + [7432] = 7432, + [7433] = 7282, [7434] = 7434, - [7435] = 7427, + [7435] = 7435, [7436] = 7436, [7437] = 7437, - [7438] = 7380, - [7439] = 7431, + [7438] = 7436, + [7439] = 7290, [7440] = 7440, - [7441] = 7441, + [7441] = 7277, [7442] = 7442, [7443] = 7443, - [7444] = 7316, - [7445] = 7445, - [7446] = 7333, - [7447] = 7436, - [7448] = 7316, - [7449] = 7344, - [7450] = 7314, - [7451] = 7445, - [7452] = 7316, + [7444] = 7444, + [7445] = 7289, + [7446] = 7276, + [7447] = 7447, + [7448] = 7448, + [7449] = 7432, + [7450] = 7320, + [7451] = 7288, + [7452] = 7282, [7453] = 7453, - [7454] = 7373, - [7455] = 7309, - [7456] = 7456, - [7457] = 7442, - [7458] = 7458, + [7454] = 7315, + [7455] = 7276, + [7456] = 7276, + [7457] = 7457, + [7458] = 7276, [7459] = 7459, - [7460] = 7460, - [7461] = 7380, + [7460] = 7276, + [7461] = 7461, [7462] = 7462, - [7463] = 7463, - [7464] = 7464, - [7465] = 7370, - [7466] = 7466, - [7467] = 7352, - [7468] = 7316, - [7469] = 7331, - [7470] = 7458, - [7471] = 7471, - [7472] = 7472, - [7473] = 7316, - [7474] = 7373, - [7475] = 7475, - [7476] = 7327, - [7477] = 7477, - [7478] = 7316, - [7479] = 7479, - [7480] = 7368, - [7481] = 7481, + [7463] = 7327, + [7464] = 7385, + [7465] = 7465, + [7466] = 7315, + [7467] = 7337, + [7468] = 7275, + [7469] = 7469, + [7470] = 7276, + [7471] = 7268, + [7472] = 7434, + [7473] = 7317, + [7474] = 7346, + [7475] = 7276, + [7476] = 7476, + [7477] = 7319, + [7478] = 7306, + [7479] = 7336, + [7480] = 7480, + [7481] = 7321, [7482] = 7482, - [7483] = 7317, - [7484] = 7458, - [7485] = 7380, - [7486] = 7486, - [7487] = 7466, - [7488] = 7488, + [7483] = 7483, + [7484] = 7459, + [7485] = 7276, + [7486] = 7268, + [7487] = 7276, + [7488] = 7277, [7489] = 7489, - [7490] = 7293, - [7491] = 7399, - [7492] = 7291, - [7493] = 7316, + [7490] = 7403, + [7491] = 7276, + [7492] = 7277, + [7493] = 7493, [7494] = 7494, - [7495] = 7495, - [7496] = 7496, - [7497] = 7488, - [7498] = 7442, - [7499] = 7459, - [7500] = 7365, - [7501] = 7377, - [7502] = 7453, - [7503] = 7338, - [7504] = 7335, + [7495] = 7317, + [7496] = 7276, + [7497] = 7497, + [7498] = 7498, + [7499] = 7321, + [7500] = 7500, + [7501] = 7344, + [7502] = 7411, + [7503] = 7376, + [7504] = 7504, [7505] = 7505, - [7506] = 7348, - [7507] = 7316, - [7508] = 7331, - [7509] = 7317, - [7510] = 7472, - [7511] = 7316, - [7512] = 7512, - [7513] = 7513, - [7514] = 7318, + [7506] = 7506, + [7507] = 7507, + [7508] = 7357, + [7509] = 7509, + [7510] = 7403, + [7511] = 7511, + [7512] = 7294, + [7513] = 7271, + [7514] = 7514, [7515] = 7515, - [7516] = 7316, - [7517] = 7458, - [7518] = 7518, - [7519] = 7293, - [7520] = 7520, - [7521] = 7521, - [7522] = 7316, - [7523] = 7316, - [7524] = 7351, - [7525] = 7363, - [7526] = 7410, - [7527] = 7316, - [7528] = 7472, - [7529] = 7316, - [7530] = 7316, - [7531] = 7316, - [7532] = 7389, - [7533] = 7316, - [7534] = 7534, - [7535] = 7310, - [7536] = 7536, - [7537] = 7351, - [7538] = 7316, - [7539] = 7380, - [7540] = 7540, - [7541] = 7350, - [7542] = 7542, - [7543] = 7472, - [7544] = 7365, - [7545] = 7333, - [7546] = 7333, - [7547] = 7316, - [7548] = 7479, - [7549] = 7316, - [7550] = 7550, - [7551] = 7472, - [7552] = 7316, - [7553] = 7317, - [7554] = 7303, - [7555] = 7304, - [7556] = 7306, - [7557] = 7307, - [7558] = 7308, - [7559] = 7309, + [7516] = 7276, + [7517] = 7291, + [7518] = 7432, + [7519] = 7294, + [7520] = 7276, + [7521] = 7281, + [7522] = 7302, + [7523] = 7440, + [7524] = 7524, + [7525] = 7525, + [7526] = 7434, + [7527] = 7276, + [7528] = 7315, + [7529] = 7303, + [7530] = 7317, + [7531] = 7531, + [7532] = 7287, + [7533] = 7533, + [7534] = 7351, + [7535] = 7319, + [7536] = 7344, + [7537] = 7411, + [7538] = 7376, + [7539] = 7504, + [7540] = 7505, + [7541] = 7506, + [7542] = 7507, + [7543] = 7320, + [7544] = 7509, + [7545] = 7290, + [7546] = 7372, + [7547] = 7321, + [7548] = 7459, + [7549] = 7432, + [7550] = 7435, + [7551] = 7357, + [7552] = 7294, + [7553] = 7436, + [7554] = 7434, + [7555] = 7297, + [7556] = 7269, + [7557] = 7557, + [7558] = 7385, + [7559] = 7303, [7560] = 7560, - [7561] = 7314, - [7562] = 7319, - [7563] = 7316, + [7561] = 7276, + [7562] = 7562, + [7563] = 7563, [7564] = 7564, [7565] = 7565, - [7566] = 3044, - [7567] = 7306, - [7568] = 7568, - [7569] = 7368, - [7570] = 7475, - [7571] = 7340, - [7572] = 7336, - [7573] = 7343, + [7566] = 7504, + [7567] = 7505, + [7568] = 7506, + [7569] = 7507, + [7570] = 7570, + [7571] = 7509, + [7572] = 7572, + [7573] = 7308, [7574] = 7574, - [7575] = 7316, - [7576] = 7576, - [7577] = 7352, - [7578] = 7578, + [7575] = 7288, + [7576] = 7435, + [7577] = 7436, + [7578] = 7294, [7579] = 7579, - [7580] = 7459, - [7581] = 7581, - [7582] = 7343, - [7583] = 7583, + [7580] = 7297, + [7581] = 7346, + [7582] = 7306, + [7583] = 7318, [7584] = 7584, - [7585] = 7327, - [7586] = 7348, - [7587] = 7316, - [7588] = 7588, - [7589] = 7589, - [7590] = 7365, - [7591] = 7302, - [7592] = 7303, - [7593] = 7304, - [7594] = 7306, - [7595] = 7307, - [7596] = 7308, - [7597] = 7309, - [7598] = 7598, - [7599] = 7314, - [7600] = 7441, - [7601] = 7505, - [7602] = 7602, - [7603] = 7603, + [7585] = 7585, + [7586] = 7288, + [7587] = 7506, + [7588] = 7507, + [7589] = 7509, + [7590] = 7282, + [7591] = 7591, + [7592] = 7276, + [7593] = 7281, + [7594] = 7594, + [7595] = 7294, + [7596] = 7315, + [7597] = 7351, + [7598] = 7336, + [7599] = 7599, + [7600] = 7351, + [7601] = 7326, + [7602] = 7505, + [7603] = 7440, [7604] = 7604, - [7605] = 7319, - [7606] = 7606, - [7607] = 7488, - [7608] = 7343, - [7609] = 7331, - [7610] = 7496, - [7611] = 7368, - [7612] = 7612, + [7605] = 7351, + [7606] = 7372, + [7607] = 7397, + [7608] = 7294, + [7609] = 7609, + [7610] = 7397, + [7611] = 3042, + [7612] = 7271, [7613] = 7613, - [7614] = 7315, - [7615] = 7402, - [7616] = 7445, - [7617] = 7310, - [7618] = 7568, - [7619] = 7316, - [7620] = 7620, - [7621] = 7621, - [7622] = 7306, - [7623] = 7307, - [7624] = 7308, - [7625] = 7309, - [7626] = 7626, - [7627] = 7314, - [7628] = 7402, - [7629] = 7370, - [7630] = 7374, - [7631] = 7496, - [7632] = 7453, - [7633] = 7294, - [7634] = 7394, - [7635] = 7343, - [7636] = 7316, - [7637] = 7637, - [7638] = 7568, - [7639] = 7639, - [7640] = 7316, + [7614] = 7276, + [7615] = 7276, + [7616] = 7315, + [7617] = 7432, + [7618] = 7271, + [7619] = 7434, + [7620] = 7294, + [7621] = 7435, + [7622] = 7357, + [7623] = 7436, + [7624] = 7271, + [7625] = 7625, + [7626] = 7282, + [7627] = 7276, + [7628] = 7507, + [7629] = 7315, + [7630] = 7630, + [7631] = 7631, + [7632] = 7276, + [7633] = 7276, + [7634] = 7634, + [7635] = 7635, + [7636] = 7636, + [7637] = 7276, + [7638] = 7638, + [7639] = 7276, + [7640] = 7357, [7641] = 7641, - [7642] = 7642, - [7643] = 7394, - [7644] = 7308, - [7645] = 7309, - [7646] = 7314, - [7647] = 7647, - [7648] = 7648, - [7649] = 7649, - [7650] = 7650, - [7651] = 7343, - [7652] = 7296, - [7653] = 7316, - [7654] = 7399, - [7655] = 7655, - [7656] = 7453, - [7657] = 7475, - [7658] = 7318, - [7659] = 7659, - [7660] = 7403, - [7661] = 7431, - [7662] = 7333, - [7663] = 7290, - [7664] = 7343, - [7665] = 7344, - [7666] = 7331, - [7667] = 7294, - [7668] = 7668, - [7669] = 7402, - [7670] = 7338, - [7671] = 7373, - [7672] = 7505, - [7673] = 7328, - [7674] = 7316, - [7675] = 7302, - [7676] = 7343, - [7677] = 7330, - [7678] = 7436, - [7679] = 7427, + [7642] = 7325, + [7643] = 7643, + [7644] = 7317, + [7645] = 7276, + [7646] = 7646, + [7647] = 7579, + [7648] = 7385, + [7649] = 7397, + [7650] = 7276, + [7651] = 7435, + [7652] = 7344, + [7653] = 7411, + [7654] = 7338, + [7655] = 7277, + [7656] = 7319, + [7657] = 7321, + [7658] = 7276, + [7659] = 7303, + [7660] = 7459, + [7661] = 7376, + [7662] = 7269, + [7663] = 7509, + [7664] = 7308, + [7665] = 7665, + [7666] = 7666, + [7667] = 7326, + [7668] = 7276, + [7669] = 7504, + [7670] = 7315, + [7671] = 7505, + [7672] = 7506, + [7673] = 7507, + [7674] = 7674, + [7675] = 7306, + [7676] = 7630, + [7677] = 7677, + [7678] = 7351, + [7679] = 7274, [7680] = 7680, - [7681] = 7681, - [7682] = 7317, - [7683] = 7291, - [7684] = 7316, - [7685] = 7685, + [7681] = 7276, + [7682] = 7509, + [7683] = 7327, + [7684] = 7403, + [7685] = 7276, [7686] = 7686, - [7687] = 7301, - [7688] = 7331, - [7689] = 7363, - [7690] = 7351, - [7691] = 7301, - [7692] = 7692, - [7693] = 7333, - [7694] = 7350, - [7695] = 7316, - [7696] = 7293, + [7687] = 7579, + [7688] = 7307, + [7689] = 7506, + [7690] = 7338, + [7691] = 7579, + [7692] = 7385, + [7693] = 7320, + [7694] = 7338, + [7695] = 7579, + [7696] = 7504, [7697] = 7697, - [7698] = 7453, - [7699] = 7305, - [7700] = 7700, - [7701] = 7316, - [7702] = 7310, - [7703] = 7316, - [7704] = 7290, - [7705] = 7328, - [7706] = 7307, - [7707] = 7310, - [7708] = 7339, - [7709] = 7475, - [7710] = 7710, - [7711] = 7621, - [7712] = 7712, - [7713] = 7318, - [7714] = 7330, - [7715] = 7319, - [7716] = 2995, - [7717] = 7333, + [7698] = 7579, + [7699] = 7275, + [7700] = 7579, + [7701] = 7579, + [7702] = 7351, + [7703] = 7396, + [7704] = 7409, + [7705] = 7705, + [7706] = 7276, + [7707] = 7707, + [7708] = 7396, + [7709] = 7409, + [7710] = 7396, + [7711] = 7409, + [7712] = 7396, + [7713] = 7396, + [7714] = 7269, + [7715] = 7337, + [7716] = 7276, + [7717] = 7717, [7718] = 7718, - [7719] = 7410, - [7720] = 7410, - [7721] = 7316, - [7722] = 7316, - [7723] = 7331, - [7724] = 7370, - [7725] = 7374, - [7726] = 7316, - [7727] = 7436, - [7728] = 7399, - [7729] = 7368, + [7719] = 7719, + [7720] = 7720, + [7721] = 7721, + [7722] = 7722, + [7723] = 7723, + [7724] = 7724, + [7725] = 7725, + [7726] = 7726, + [7727] = 7727, + [7728] = 7728, + [7729] = 7729, [7730] = 7730, - [7731] = 7403, - [7732] = 7389, - [7733] = 7472, - [7734] = 7344, - [7735] = 7466, - [7736] = 7736, - [7737] = 7318, - [7738] = 7453, - [7739] = 7335, - [7740] = 7374, - [7741] = 7741, - [7742] = 7339, - [7743] = 7743, - [7744] = 7317, - [7745] = 7290, - [7746] = 7294, - [7747] = 7747, - [7748] = 7621, - [7749] = 7290, - [7750] = 7328, - [7751] = 7330, - [7752] = 7621, - [7753] = 7290, - [7754] = 7304, - [7755] = 7403, - [7756] = 7290, - [7757] = 7757, - [7758] = 7290, - [7759] = 7427, - [7760] = 7291, - [7761] = 7692, - [7762] = 7534, - [7763] = 7466, - [7764] = 7764, - [7765] = 7765, - [7766] = 7692, - [7767] = 7534, - [7768] = 7692, - [7769] = 7534, - [7770] = 7692, - [7771] = 7692, - [7772] = 7316, - [7773] = 7316, - [7774] = 7774, - [7775] = 7302, - [7776] = 7776, - [7777] = 7777, - [7778] = 7778, - [7779] = 7779, - [7780] = 7780, - [7781] = 7781, - [7782] = 7782, - [7783] = 7783, - [7784] = 7784, - [7785] = 7785, - [7786] = 7786, - [7787] = 7787, - [7788] = 7788, - [7789] = 7789, - [7790] = 7790, - [7791] = 7791, - [7792] = 7792, + [7731] = 7731, + [7732] = 7732, + [7733] = 7733, }; static TSCharacterRange sym__identifier_token_character_set_2[] = { @@ -17626,7 +17549,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [113] = {.lex_state = 132, .external_lex_state = 2}, [114] = {.lex_state = 132, .external_lex_state = 2}, [115] = {.lex_state = 132, .external_lex_state = 2}, - [116] = {.lex_state = 132, .external_lex_state = 2}, + [116] = {.lex_state = 131, .external_lex_state = 2}, [117] = {.lex_state = 132, .external_lex_state = 2}, [118] = {.lex_state = 132, .external_lex_state = 2}, [119] = {.lex_state = 132, .external_lex_state = 2}, @@ -17634,7 +17557,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [121] = {.lex_state = 132, .external_lex_state = 2}, [122] = {.lex_state = 132, .external_lex_state = 2}, [123] = {.lex_state = 132, .external_lex_state = 2}, - [124] = {.lex_state = 131, .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}, @@ -17642,7 +17565,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [129] = {.lex_state = 132, .external_lex_state = 2}, [130] = {.lex_state = 132, .external_lex_state = 2}, [131] = {.lex_state = 132, .external_lex_state = 2}, - [132] = {.lex_state = 132, .external_lex_state = 2}, + [132] = {.lex_state = 131, .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}, @@ -17654,7 +17577,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [141] = {.lex_state = 132, .external_lex_state = 2}, [142] = {.lex_state = 132, .external_lex_state = 2}, [143] = {.lex_state = 132, .external_lex_state = 2}, - [144] = {.lex_state = 131, .external_lex_state = 2}, + [144] = {.lex_state = 132, .external_lex_state = 2}, [145] = {.lex_state = 132, .external_lex_state = 2}, [146] = {.lex_state = 132, .external_lex_state = 2}, [147] = {.lex_state = 131, .external_lex_state = 2}, @@ -17684,8 +17607,8 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [171] = {.lex_state = 131, .external_lex_state = 2}, [172] = {.lex_state = 131, .external_lex_state = 2}, [173] = {.lex_state = 131, .external_lex_state = 2}, - [174] = {.lex_state = 131, .external_lex_state = 2}, - [175] = {.lex_state = 131, .external_lex_state = 2}, + [174] = {.lex_state = 131, .external_lex_state = 3}, + [175] = {.lex_state = 131, .external_lex_state = 3}, [176] = {.lex_state = 131, .external_lex_state = 2}, [177] = {.lex_state = 131, .external_lex_state = 2}, [178] = {.lex_state = 131, .external_lex_state = 2}, @@ -17698,7 +17621,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [185] = {.lex_state = 131, .external_lex_state = 2}, [186] = {.lex_state = 131, .external_lex_state = 2}, [187] = {.lex_state = 131, .external_lex_state = 2}, - [188] = {.lex_state = 131, .external_lex_state = 3}, + [188] = {.lex_state = 131, .external_lex_state = 2}, [189] = {.lex_state = 131, .external_lex_state = 2}, [190] = {.lex_state = 131, .external_lex_state = 2}, [191] = {.lex_state = 131, .external_lex_state = 2}, @@ -17709,10 +17632,10 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [196] = {.lex_state = 131, .external_lex_state = 2}, [197] = {.lex_state = 131, .external_lex_state = 2}, [198] = {.lex_state = 131, .external_lex_state = 2}, - [199] = {.lex_state = 131, .external_lex_state = 3}, + [199] = {.lex_state = 131, .external_lex_state = 2}, [200] = {.lex_state = 131, .external_lex_state = 2}, - [201] = {.lex_state = 131, .external_lex_state = 2}, - [202] = {.lex_state = 131, .external_lex_state = 3}, + [201] = {.lex_state = 131, .external_lex_state = 3}, + [202] = {.lex_state = 131, .external_lex_state = 2}, [203] = {.lex_state = 131, .external_lex_state = 2}, [204] = {.lex_state = 131, .external_lex_state = 2}, [205] = {.lex_state = 131, .external_lex_state = 2}, @@ -17731,69 +17654,69 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [218] = {.lex_state = 131, .external_lex_state = 2}, [219] = {.lex_state = 131, .external_lex_state = 2}, [220] = {.lex_state = 131, .external_lex_state = 2}, - [221] = {.lex_state = 132, .external_lex_state = 2}, + [221] = {.lex_state = 131, .external_lex_state = 2}, [222] = {.lex_state = 131, .external_lex_state = 2}, - [223] = {.lex_state = 131, .external_lex_state = 2}, - [224] = {.lex_state = 131, .external_lex_state = 2}, + [223] = {.lex_state = 132, .external_lex_state = 2}, + [224] = {.lex_state = 132, .external_lex_state = 2}, [225] = {.lex_state = 131, .external_lex_state = 2}, [226] = {.lex_state = 132, .external_lex_state = 2}, - [227] = {.lex_state = 132, .external_lex_state = 2}, - [228] = {.lex_state = 131, .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}, + [227] = {.lex_state = 131, .external_lex_state = 2}, + [228] = {.lex_state = 132, .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}, + [232] = {.lex_state = 132, .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}, + [234] = {.lex_state = 131, .external_lex_state = 2}, + [235] = {.lex_state = 132, .external_lex_state = 2}, [236] = {.lex_state = 131, .external_lex_state = 2}, [237] = {.lex_state = 131, .external_lex_state = 2}, - [238] = {.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}, - [241] = {.lex_state = 132, .external_lex_state = 2}, - [242] = {.lex_state = 132, .external_lex_state = 2}, + [240] = {.lex_state = 131, .external_lex_state = 2}, + [241] = {.lex_state = 131, .external_lex_state = 2}, + [242] = {.lex_state = 131, .external_lex_state = 2}, [243] = {.lex_state = 131, .external_lex_state = 2}, - [244] = {.lex_state = 131, .external_lex_state = 2}, + [244] = {.lex_state = 132, .external_lex_state = 2}, [245] = {.lex_state = 131, .external_lex_state = 2}, [246] = {.lex_state = 131, .external_lex_state = 2}, - [247] = {.lex_state = 131, .external_lex_state = 2}, + [247] = {.lex_state = 132, .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}, - [251] = {.lex_state = 132, .external_lex_state = 2}, + [251] = {.lex_state = 131, .external_lex_state = 2}, [252] = {.lex_state = 132, .external_lex_state = 2}, [253] = {.lex_state = 132, .external_lex_state = 2}, - [254] = {.lex_state = 132, .external_lex_state = 2}, + [254] = {.lex_state = 131, .external_lex_state = 2}, [255] = {.lex_state = 132, .external_lex_state = 2}, - [256] = {.lex_state = 131, .external_lex_state = 2}, - [257] = {.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 = 131, .external_lex_state = 2}, [260] = {.lex_state = 131, .external_lex_state = 2}, [261] = {.lex_state = 132, .external_lex_state = 2}, [262] = {.lex_state = 132, .external_lex_state = 2}, - [263] = {.lex_state = 131, .external_lex_state = 2}, - [264] = {.lex_state = 131, .external_lex_state = 2}, + [263] = {.lex_state = 132, .external_lex_state = 2}, + [264] = {.lex_state = 132, .external_lex_state = 2}, [265] = {.lex_state = 131, .external_lex_state = 2}, [266] = {.lex_state = 131, .external_lex_state = 2}, - [267] = {.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}, + [270] = {.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}, - [276] = {.lex_state = 132, .external_lex_state = 2}, + [275] = {.lex_state = 131, .external_lex_state = 2}, + [276] = {.lex_state = 131, .external_lex_state = 2}, [277] = {.lex_state = 132, .external_lex_state = 2}, [278] = {.lex_state = 132, .external_lex_state = 2}, [279] = {.lex_state = 132, .external_lex_state = 2}, - [280] = {.lex_state = 132, .external_lex_state = 2}, + [280] = {.lex_state = 131, .external_lex_state = 2}, [281] = {.lex_state = 131, .external_lex_state = 2}, [282] = {.lex_state = 131, .external_lex_state = 2}, - [283] = {.lex_state = 132, .external_lex_state = 2}, + [283] = {.lex_state = 131, .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}, @@ -19426,11 +19349,11 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1913] = {.lex_state = 132, .external_lex_state = 2}, [1914] = {.lex_state = 132, .external_lex_state = 2}, [1915] = {.lex_state = 132}, - [1916] = {.lex_state = 132, .external_lex_state = 2}, + [1916] = {.lex_state = 132}, [1917] = {.lex_state = 132}, [1918] = {.lex_state = 132}, [1919] = {.lex_state = 132}, - [1920] = {.lex_state = 132}, + [1920] = {.lex_state = 132, .external_lex_state = 2}, [1921] = {.lex_state = 132, .external_lex_state = 2}, [1922] = {.lex_state = 132, .external_lex_state = 2}, [1923] = {.lex_state = 132, .external_lex_state = 2}, @@ -19527,7 +19450,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [2014] = {.lex_state = 132, .external_lex_state = 2}, [2015] = {.lex_state = 132, .external_lex_state = 2}, [2016] = {.lex_state = 132, .external_lex_state = 2}, - [2017] = {.lex_state = 4}, + [2017] = {.lex_state = 132, .external_lex_state = 2}, [2018] = {.lex_state = 132, .external_lex_state = 2}, [2019] = {.lex_state = 132, .external_lex_state = 2}, [2020] = {.lex_state = 132, .external_lex_state = 2}, @@ -19547,7 +19470,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [2034] = {.lex_state = 132, .external_lex_state = 2}, [2035] = {.lex_state = 132, .external_lex_state = 2}, [2036] = {.lex_state = 132, .external_lex_state = 2}, - [2037] = {.lex_state = 132, .external_lex_state = 2}, + [2037] = {.lex_state = 4}, [2038] = {.lex_state = 132, .external_lex_state = 2}, [2039] = {.lex_state = 132, .external_lex_state = 2}, [2040] = {.lex_state = 132, .external_lex_state = 2}, @@ -19597,13 +19520,13 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [2084] = {.lex_state = 132, .external_lex_state = 2}, [2085] = {.lex_state = 132, .external_lex_state = 2}, [2086] = {.lex_state = 132, .external_lex_state = 2}, - [2087] = {.lex_state = 132, .external_lex_state = 2}, + [2087] = {.lex_state = 4}, [2088] = {.lex_state = 132, .external_lex_state = 2}, [2089] = {.lex_state = 132, .external_lex_state = 2}, [2090] = {.lex_state = 132, .external_lex_state = 2}, [2091] = {.lex_state = 132, .external_lex_state = 2}, [2092] = {.lex_state = 132, .external_lex_state = 2}, - [2093] = {.lex_state = 4}, + [2093] = {.lex_state = 132, .external_lex_state = 2}, [2094] = {.lex_state = 132, .external_lex_state = 2}, [2095] = {.lex_state = 132, .external_lex_state = 2}, [2096] = {.lex_state = 132, .external_lex_state = 2}, @@ -19645,14 +19568,14 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [2132] = {.lex_state = 132, .external_lex_state = 2}, [2133] = {.lex_state = 132, .external_lex_state = 2}, [2134] = {.lex_state = 132, .external_lex_state = 2}, - [2135] = {.lex_state = 132, .external_lex_state = 2}, - [2136] = {.lex_state = 132, .external_lex_state = 2}, + [2135] = {.lex_state = 4}, + [2136] = {.lex_state = 4, .external_lex_state = 4}, [2137] = {.lex_state = 132, .external_lex_state = 2}, [2138] = {.lex_state = 132, .external_lex_state = 2}, [2139] = {.lex_state = 132, .external_lex_state = 2}, - [2140] = {.lex_state = 4}, + [2140] = {.lex_state = 132, .external_lex_state = 2}, [2141] = {.lex_state = 132, .external_lex_state = 2}, - [2142] = {.lex_state = 4, .external_lex_state = 4}, + [2142] = {.lex_state = 132, .external_lex_state = 2}, [2143] = {.lex_state = 132, .external_lex_state = 2}, [2144] = {.lex_state = 132, .external_lex_state = 2}, [2145] = {.lex_state = 132, .external_lex_state = 2}, @@ -19669,377 +19592,377 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [2156] = {.lex_state = 132, .external_lex_state = 2}, [2157] = {.lex_state = 132, .external_lex_state = 2}, [2158] = {.lex_state = 132, .external_lex_state = 2}, - [2159] = {.lex_state = 132, .external_lex_state = 2}, - [2160] = {.lex_state = 132, .external_lex_state = 2}, - [2161] = {.lex_state = 132, .external_lex_state = 2}, - [2162] = {.lex_state = 132, .external_lex_state = 2}, - [2163] = {.lex_state = 132, .external_lex_state = 2}, - [2164] = {.lex_state = 132, .external_lex_state = 2}, + [2159] = {.lex_state = 4}, + [2160] = {.lex_state = 4}, + [2161] = {.lex_state = 4}, + [2162] = {.lex_state = 4}, + [2163] = {.lex_state = 4}, + [2164] = {.lex_state = 4}, [2165] = {.lex_state = 4}, [2166] = {.lex_state = 4}, - [2167] = {.lex_state = 4}, + [2167] = {.lex_state = 4, .external_lex_state = 4}, [2168] = {.lex_state = 4}, [2169] = {.lex_state = 4}, - [2170] = {.lex_state = 4}, - [2171] = {.lex_state = 4}, + [2170] = {.lex_state = 5}, + [2171] = {.lex_state = 5}, [2172] = {.lex_state = 4}, - [2173] = {.lex_state = 4, .external_lex_state = 4}, - [2174] = {.lex_state = 4}, - [2175] = {.lex_state = 4}, - [2176] = {.lex_state = 4, .external_lex_state = 4}, - [2177] = {.lex_state = 5}, + [2173] = {.lex_state = 4}, + [2174] = {.lex_state = 5}, + [2175] = {.lex_state = 5}, + [2176] = {.lex_state = 5}, + [2177] = {.lex_state = 4, .external_lex_state = 4}, [2178] = {.lex_state = 4}, - [2179] = {.lex_state = 4}, - [2180] = {.lex_state = 5}, + [2179] = {.lex_state = 5}, + [2180] = {.lex_state = 4}, [2181] = {.lex_state = 5}, - [2182] = {.lex_state = 5}, + [2182] = {.lex_state = 4}, [2183] = {.lex_state = 5}, [2184] = {.lex_state = 5}, - [2185] = {.lex_state = 4}, - [2186] = {.lex_state = 4}, + [2185] = {.lex_state = 5}, + [2186] = {.lex_state = 5}, [2187] = {.lex_state = 5}, [2188] = {.lex_state = 5}, - [2189] = {.lex_state = 5}, - [2190] = {.lex_state = 5}, + [2189] = {.lex_state = 4}, + [2190] = {.lex_state = 4, .external_lex_state = 4}, [2191] = {.lex_state = 5}, [2192] = {.lex_state = 4}, [2193] = {.lex_state = 5}, [2194] = {.lex_state = 5}, - [2195] = {.lex_state = 4}, + [2195] = {.lex_state = 132}, [2196] = {.lex_state = 5}, - [2197] = {.lex_state = 5}, - [2198] = {.lex_state = 132}, - [2199] = {.lex_state = 5}, - [2200] = {.lex_state = 4, .external_lex_state = 4}, - [2201] = {.lex_state = 4}, - [2202] = {.lex_state = 6}, - [2203] = {.lex_state = 6}, - [2204] = {.lex_state = 5}, - [2205] = {.lex_state = 131}, - [2206] = {.lex_state = 4}, + [2197] = {.lex_state = 131}, + [2198] = {.lex_state = 6}, + [2199] = {.lex_state = 6}, + [2200] = {.lex_state = 4}, + [2201] = {.lex_state = 132}, + [2202] = {.lex_state = 4}, + [2203] = {.lex_state = 4}, + [2204] = {.lex_state = 4}, + [2205] = {.lex_state = 4}, + [2206] = {.lex_state = 6}, [2207] = {.lex_state = 4}, - [2208] = {.lex_state = 6}, - [2209] = {.lex_state = 132}, - [2210] = {.lex_state = 4}, - [2211] = {.lex_state = 4}, - [2212] = {.lex_state = 132}, + [2208] = {.lex_state = 4}, + [2209] = {.lex_state = 4}, + [2210] = {.lex_state = 131}, + [2211] = {.lex_state = 5}, + [2212] = {.lex_state = 5}, [2213] = {.lex_state = 4}, - [2214] = {.lex_state = 4}, + [2214] = {.lex_state = 6}, [2215] = {.lex_state = 4}, - [2216] = {.lex_state = 5}, + [2216] = {.lex_state = 4}, [2217] = {.lex_state = 4}, - [2218] = {.lex_state = 131}, - [2219] = {.lex_state = 4}, - [2220] = {.lex_state = 4}, + [2218] = {.lex_state = 4}, + [2219] = {.lex_state = 4, .external_lex_state = 4}, + [2220] = {.lex_state = 5}, [2221] = {.lex_state = 4}, [2222] = {.lex_state = 4}, - [2223] = {.lex_state = 4}, - [2224] = {.lex_state = 6}, + [2223] = {.lex_state = 5}, + [2224] = {.lex_state = 5}, [2225] = {.lex_state = 5}, [2226] = {.lex_state = 4, .external_lex_state = 4}, - [2227] = {.lex_state = 4}, - [2228] = {.lex_state = 5}, - [2229] = {.lex_state = 4}, - [2230] = {.lex_state = 5}, - [2231] = {.lex_state = 131}, - [2232] = {.lex_state = 4, .external_lex_state = 4}, - [2233] = {.lex_state = 5}, + [2227] = {.lex_state = 4, .external_lex_state = 4}, + [2228] = {.lex_state = 131}, + [2229] = {.lex_state = 4, .external_lex_state = 4}, + [2230] = {.lex_state = 131}, + [2231] = {.lex_state = 5}, + [2232] = {.lex_state = 131}, + [2233] = {.lex_state = 6}, [2234] = {.lex_state = 5}, - [2235] = {.lex_state = 6}, - [2236] = {.lex_state = 5}, - [2237] = {.lex_state = 131}, - [2238] = {.lex_state = 131}, - [2239] = {.lex_state = 4, .external_lex_state = 4}, - [2240] = {.lex_state = 4, .external_lex_state = 4}, + [2235] = {.lex_state = 131}, + [2236] = {.lex_state = 131}, + [2237] = {.lex_state = 4, .external_lex_state = 4}, + [2238] = {.lex_state = 5}, + [2239] = {.lex_state = 131}, + [2240] = {.lex_state = 4}, [2241] = {.lex_state = 5}, - [2242] = {.lex_state = 131}, - [2243] = {.lex_state = 4}, - [2244] = {.lex_state = 4}, - [2245] = {.lex_state = 5}, - [2246] = {.lex_state = 4, .external_lex_state = 4}, - [2247] = {.lex_state = 5}, + [2242] = {.lex_state = 4}, + [2243] = {.lex_state = 5, .external_lex_state = 4}, + [2244] = {.lex_state = 4, .external_lex_state = 4}, + [2245] = {.lex_state = 5, .external_lex_state = 4}, + [2246] = {.lex_state = 5, .external_lex_state = 4}, + [2247] = {.lex_state = 5, .external_lex_state = 4}, [2248] = {.lex_state = 5, .external_lex_state = 4}, [2249] = {.lex_state = 131}, - [2250] = {.lex_state = 131}, - [2251] = {.lex_state = 131}, + [2250] = {.lex_state = 5}, + [2251] = {.lex_state = 5, .external_lex_state = 4}, [2252] = {.lex_state = 5, .external_lex_state = 4}, - [2253] = {.lex_state = 5, .external_lex_state = 4}, - [2254] = {.lex_state = 5, .external_lex_state = 4}, + [2253] = {.lex_state = 4}, + [2254] = {.lex_state = 5}, [2255] = {.lex_state = 5, .external_lex_state = 4}, - [2256] = {.lex_state = 5, .external_lex_state = 4}, - [2257] = {.lex_state = 4}, - [2258] = {.lex_state = 4}, - [2259] = {.lex_state = 5, .external_lex_state = 4}, - [2260] = {.lex_state = 5}, - [2261] = {.lex_state = 5, .external_lex_state = 4}, - [2262] = {.lex_state = 5}, + [2256] = {.lex_state = 5}, + [2257] = {.lex_state = 131}, + [2258] = {.lex_state = 5, .external_lex_state = 4}, + [2259] = {.lex_state = 4}, + [2260] = {.lex_state = 4}, + [2261] = {.lex_state = 4}, + [2262] = {.lex_state = 5, .external_lex_state = 4}, [2263] = {.lex_state = 5, .external_lex_state = 4}, - [2264] = {.lex_state = 4}, - [2265] = {.lex_state = 4, .external_lex_state = 4}, - [2266] = {.lex_state = 5}, + [2264] = {.lex_state = 5, .external_lex_state = 4}, + [2265] = {.lex_state = 5}, + [2266] = {.lex_state = 5, .external_lex_state = 4}, [2267] = {.lex_state = 4}, - [2268] = {.lex_state = 5}, - [2269] = {.lex_state = 5, .external_lex_state = 4}, - [2270] = {.lex_state = 5, .external_lex_state = 4}, - [2271] = {.lex_state = 131}, - [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 = 4}, - [2276] = {.lex_state = 131}, - [2277] = {.lex_state = 5}, - [2278] = {.lex_state = 132}, - [2279] = {.lex_state = 5}, - [2280] = {.lex_state = 5}, - [2281] = {.lex_state = 6}, - [2282] = {.lex_state = 4}, - [2283] = {.lex_state = 4}, + [2268] = {.lex_state = 5, .external_lex_state = 4}, + [2269] = {.lex_state = 4}, + [2270] = {.lex_state = 5}, + [2271] = {.lex_state = 5}, + [2272] = {.lex_state = 4}, + [2273] = {.lex_state = 132}, + [2274] = {.lex_state = 5}, + [2275] = {.lex_state = 131}, + [2276] = {.lex_state = 4}, + [2277] = {.lex_state = 132}, + [2278] = {.lex_state = 5}, + [2279] = {.lex_state = 131}, + [2280] = {.lex_state = 131}, + [2281] = {.lex_state = 4}, + [2282] = {.lex_state = 132}, + [2283] = {.lex_state = 6}, [2284] = {.lex_state = 5}, - [2285] = {.lex_state = 131}, - [2286] = {.lex_state = 132}, - [2287] = {.lex_state = 4}, + [2285] = {.lex_state = 5}, + [2286] = {.lex_state = 5, .external_lex_state = 4}, + [2287] = {.lex_state = 5, .external_lex_state = 4}, [2288] = {.lex_state = 4}, - [2289] = {.lex_state = 5}, - [2290] = {.lex_state = 132}, - [2291] = {.lex_state = 131}, - [2292] = {.lex_state = 5}, - [2293] = {.lex_state = 4}, - [2294] = {.lex_state = 131}, - [2295] = {.lex_state = 4}, - [2296] = {.lex_state = 4}, + [2289] = {.lex_state = 131}, + [2290] = {.lex_state = 4}, + [2291] = {.lex_state = 5}, + [2292] = {.lex_state = 4}, + [2293] = {.lex_state = 5}, + [2294] = {.lex_state = 5}, + [2295] = {.lex_state = 6, .external_lex_state = 4}, + [2296] = {.lex_state = 5}, [2297] = {.lex_state = 4}, - [2298] = {.lex_state = 131}, - [2299] = {.lex_state = 131}, - [2300] = {.lex_state = 5}, - [2301] = {.lex_state = 5, .external_lex_state = 4}, - [2302] = {.lex_state = 131}, - [2303] = {.lex_state = 5}, - [2304] = {.lex_state = 6, .external_lex_state = 4}, - [2305] = {.lex_state = 5}, - [2306] = {.lex_state = 4}, - [2307] = {.lex_state = 4}, - [2308] = {.lex_state = 5}, - [2309] = {.lex_state = 5}, - [2310] = {.lex_state = 5, .external_lex_state = 4}, - [2311] = {.lex_state = 4}, - [2312] = {.lex_state = 5, .external_lex_state = 4}, - [2313] = {.lex_state = 5, .external_lex_state = 4}, + [2298] = {.lex_state = 4}, + [2299] = {.lex_state = 4}, + [2300] = {.lex_state = 131}, + [2301] = {.lex_state = 4}, + [2302] = {.lex_state = 5}, + [2303] = {.lex_state = 5, .external_lex_state = 4}, + [2304] = {.lex_state = 131}, + [2305] = {.lex_state = 4}, + [2306] = {.lex_state = 5, .external_lex_state = 4}, + [2307] = {.lex_state = 131}, + [2308] = {.lex_state = 4}, + [2309] = {.lex_state = 131}, + [2310] = {.lex_state = 4}, + [2311] = {.lex_state = 131}, + [2312] = {.lex_state = 5}, + [2313] = {.lex_state = 4}, [2314] = {.lex_state = 4}, [2315] = {.lex_state = 131}, - [2316] = {.lex_state = 5}, - [2317] = {.lex_state = 131}, - [2318] = {.lex_state = 131}, - [2319] = {.lex_state = 5}, - [2320] = {.lex_state = 6, .external_lex_state = 4}, - [2321] = {.lex_state = 4}, + [2316] = {.lex_state = 131}, + [2317] = {.lex_state = 4}, + [2318] = {.lex_state = 6, .external_lex_state = 4}, + [2319] = {.lex_state = 4}, + [2320] = {.lex_state = 5}, + [2321] = {.lex_state = 5}, [2322] = {.lex_state = 4}, - [2323] = {.lex_state = 5}, - [2324] = {.lex_state = 4}, + [2323] = {.lex_state = 4}, + [2324] = {.lex_state = 131}, [2325] = {.lex_state = 4}, - [2326] = {.lex_state = 4}, + [2326] = {.lex_state = 131}, [2327] = {.lex_state = 4}, [2328] = {.lex_state = 4}, - [2329] = {.lex_state = 4}, - [2330] = {.lex_state = 131}, - [2331] = {.lex_state = 4}, + [2329] = {.lex_state = 6, .external_lex_state = 4}, + [2330] = {.lex_state = 4}, + [2331] = {.lex_state = 131}, [2332] = {.lex_state = 4}, [2333] = {.lex_state = 4}, [2334] = {.lex_state = 131}, [2335] = {.lex_state = 4}, - [2336] = {.lex_state = 131}, - [2337] = {.lex_state = 6, .external_lex_state = 4}, - [2338] = {.lex_state = 4}, - [2339] = {.lex_state = 5}, - [2340] = {.lex_state = 131}, - [2341] = {.lex_state = 131}, + [2336] = {.lex_state = 4}, + [2337] = {.lex_state = 131}, + [2338] = {.lex_state = 131}, + [2339] = {.lex_state = 131}, + [2340] = {.lex_state = 4}, + [2341] = {.lex_state = 4}, [2342] = {.lex_state = 131}, - [2343] = {.lex_state = 131}, - [2344] = {.lex_state = 131}, - [2345] = {.lex_state = 4}, - [2346] = {.lex_state = 131}, + [2343] = {.lex_state = 4}, + [2344] = {.lex_state = 5}, + [2345] = {.lex_state = 131}, + [2346] = {.lex_state = 4}, [2347] = {.lex_state = 131}, - [2348] = {.lex_state = 4}, + [2348] = {.lex_state = 6}, [2349] = {.lex_state = 4}, - [2350] = {.lex_state = 4}, - [2351] = {.lex_state = 4}, - [2352] = {.lex_state = 4}, - [2353] = {.lex_state = 6}, + [2350] = {.lex_state = 6}, + [2351] = {.lex_state = 6}, + [2352] = {.lex_state = 132}, + [2353] = {.lex_state = 4}, [2354] = {.lex_state = 6}, - [2355] = {.lex_state = 6}, + [2355] = {.lex_state = 132}, [2356] = {.lex_state = 132}, - [2357] = {.lex_state = 4}, - [2358] = {.lex_state = 132}, - [2359] = {.lex_state = 6}, - [2360] = {.lex_state = 4}, - [2361] = {.lex_state = 6}, + [2357] = {.lex_state = 6}, + [2358] = {.lex_state = 6}, + [2359] = {.lex_state = 4}, + [2360] = {.lex_state = 6}, + [2361] = {.lex_state = 4}, [2362] = {.lex_state = 4}, [2363] = {.lex_state = 4}, - [2364] = {.lex_state = 6}, - [2365] = {.lex_state = 132}, - [2366] = {.lex_state = 131}, - [2367] = {.lex_state = 6}, - [2368] = {.lex_state = 131, .external_lex_state = 4}, + [2364] = {.lex_state = 4}, + [2365] = {.lex_state = 131}, + [2366] = {.lex_state = 5}, + [2367] = {.lex_state = 4}, + [2368] = {.lex_state = 4}, [2369] = {.lex_state = 4}, - [2370] = {.lex_state = 6}, - [2371] = {.lex_state = 6}, - [2372] = {.lex_state = 4}, + [2370] = {.lex_state = 4}, + [2371] = {.lex_state = 131}, + [2372] = {.lex_state = 131, .external_lex_state = 4}, [2373] = {.lex_state = 131}, [2374] = {.lex_state = 131}, - [2375] = {.lex_state = 4}, + [2375] = {.lex_state = 131}, [2376] = {.lex_state = 4}, - [2377] = {.lex_state = 5}, - [2378] = {.lex_state = 131}, - [2379] = {.lex_state = 131}, + [2377] = {.lex_state = 131}, + [2378] = {.lex_state = 4}, + [2379] = {.lex_state = 4}, [2380] = {.lex_state = 131}, [2381] = {.lex_state = 131}, - [2382] = {.lex_state = 4}, - [2383] = {.lex_state = 4}, - [2384] = {.lex_state = 4}, - [2385] = {.lex_state = 4}, - [2386] = {.lex_state = 131}, + [2382] = {.lex_state = 131, .external_lex_state = 4}, + [2383] = {.lex_state = 132}, + [2384] = {.lex_state = 131}, + [2385] = {.lex_state = 131}, + [2386] = {.lex_state = 4}, [2387] = {.lex_state = 4}, - [2388] = {.lex_state = 131, .external_lex_state = 4}, + [2388] = {.lex_state = 131}, [2389] = {.lex_state = 131}, - [2390] = {.lex_state = 132}, - [2391] = {.lex_state = 131, .external_lex_state = 4}, - [2392] = {.lex_state = 131, .external_lex_state = 4}, - [2393] = {.lex_state = 131}, - [2394] = {.lex_state = 131}, - [2395] = {.lex_state = 4}, - [2396] = {.lex_state = 132}, - [2397] = {.lex_state = 4}, - [2398] = {.lex_state = 4}, + [2390] = {.lex_state = 131}, + [2391] = {.lex_state = 4}, + [2392] = {.lex_state = 131}, + [2393] = {.lex_state = 6}, + [2394] = {.lex_state = 131, .external_lex_state = 4}, + [2395] = {.lex_state = 131}, + [2396] = {.lex_state = 131, .external_lex_state = 4}, + [2397] = {.lex_state = 131}, + [2398] = {.lex_state = 131, .external_lex_state = 4}, [2399] = {.lex_state = 131}, - [2400] = {.lex_state = 131, .external_lex_state = 4}, - [2401] = {.lex_state = 131}, + [2400] = {.lex_state = 6}, + [2401] = {.lex_state = 131, .external_lex_state = 4}, [2402] = {.lex_state = 131}, - [2403] = {.lex_state = 6}, + [2403] = {.lex_state = 4}, [2404] = {.lex_state = 4}, - [2405] = {.lex_state = 131}, - [2406] = {.lex_state = 4}, + [2405] = {.lex_state = 6}, + [2406] = {.lex_state = 131}, [2407] = {.lex_state = 131}, - [2408] = {.lex_state = 4}, - [2409] = {.lex_state = 131, .external_lex_state = 4}, - [2410] = {.lex_state = 4}, + [2408] = {.lex_state = 131}, + [2409] = {.lex_state = 131}, + [2410] = {.lex_state = 131}, [2411] = {.lex_state = 131}, [2412] = {.lex_state = 131}, [2413] = {.lex_state = 131}, [2414] = {.lex_state = 131}, - [2415] = {.lex_state = 131}, - [2416] = {.lex_state = 131}, - [2417] = {.lex_state = 131}, - [2418] = {.lex_state = 5}, - [2419] = {.lex_state = 131}, + [2415] = {.lex_state = 5}, + [2416] = {.lex_state = 5}, + [2417] = {.lex_state = 5}, + [2418] = {.lex_state = 131}, + [2419] = {.lex_state = 5}, [2420] = {.lex_state = 5}, - [2421] = {.lex_state = 131}, - [2422] = {.lex_state = 131}, + [2421] = {.lex_state = 5}, + [2422] = {.lex_state = 5}, [2423] = {.lex_state = 5}, [2424] = {.lex_state = 5}, [2425] = {.lex_state = 5}, [2426] = {.lex_state = 131}, [2427] = {.lex_state = 5}, [2428] = {.lex_state = 131}, - [2429] = {.lex_state = 5}, - [2430] = {.lex_state = 131}, - [2431] = {.lex_state = 6}, - [2432] = {.lex_state = 131}, + [2429] = {.lex_state = 131}, + [2430] = {.lex_state = 6}, + [2431] = {.lex_state = 5}, + [2432] = {.lex_state = 5}, [2433] = {.lex_state = 5}, - [2434] = {.lex_state = 6}, + [2434] = {.lex_state = 5}, [2435] = {.lex_state = 5}, - [2436] = {.lex_state = 6}, + [2436] = {.lex_state = 131}, [2437] = {.lex_state = 5}, [2438] = {.lex_state = 6}, - [2439] = {.lex_state = 6}, - [2440] = {.lex_state = 5}, + [2439] = {.lex_state = 5}, + [2440] = {.lex_state = 6}, [2441] = {.lex_state = 6}, - [2442] = {.lex_state = 131}, + [2442] = {.lex_state = 6}, [2443] = {.lex_state = 6}, - [2444] = {.lex_state = 5}, - [2445] = {.lex_state = 5}, + [2444] = {.lex_state = 6}, + [2445] = {.lex_state = 6}, [2446] = {.lex_state = 131}, - [2447] = {.lex_state = 5}, + [2447] = {.lex_state = 131}, [2448] = {.lex_state = 131}, - [2449] = {.lex_state = 5}, - [2450] = {.lex_state = 5}, - [2451] = {.lex_state = 6}, + [2449] = {.lex_state = 131}, + [2450] = {.lex_state = 131}, + [2451] = {.lex_state = 131}, [2452] = {.lex_state = 131}, [2453] = {.lex_state = 5}, [2454] = {.lex_state = 5}, - [2455] = {.lex_state = 5}, + [2455] = {.lex_state = 131}, [2456] = {.lex_state = 131}, - [2457] = {.lex_state = 5}, - [2458] = {.lex_state = 131}, - [2459] = {.lex_state = 131}, - [2460] = {.lex_state = 5}, + [2457] = {.lex_state = 131}, + [2458] = {.lex_state = 5}, + [2459] = {.lex_state = 5}, + [2460] = {.lex_state = 131}, [2461] = {.lex_state = 131}, [2462] = {.lex_state = 131}, [2463] = {.lex_state = 131}, [2464] = {.lex_state = 131}, - [2465] = {.lex_state = 5}, + [2465] = {.lex_state = 131}, [2466] = {.lex_state = 131}, - [2467] = {.lex_state = 131}, + [2467] = {.lex_state = 5}, [2468] = {.lex_state = 131}, [2469] = {.lex_state = 131}, [2470] = {.lex_state = 131}, - [2471] = {.lex_state = 131}, - [2472] = {.lex_state = 131}, + [2471] = {.lex_state = 5}, + [2472] = {.lex_state = 5}, [2473] = {.lex_state = 131}, - [2474] = {.lex_state = 5}, - [2475] = {.lex_state = 131}, - [2476] = {.lex_state = 5}, - [2477] = {.lex_state = 131}, - [2478] = {.lex_state = 5}, - [2479] = {.lex_state = 131}, - [2480] = {.lex_state = 131}, - [2481] = {.lex_state = 131}, + [2474] = {.lex_state = 131}, + [2475] = {.lex_state = 5}, + [2476] = {.lex_state = 131}, + [2477] = {.lex_state = 5}, + [2478] = {.lex_state = 131}, + [2479] = {.lex_state = 6}, + [2480] = {.lex_state = 131, .external_lex_state = 4}, + [2481] = {.lex_state = 131, .external_lex_state = 4}, [2482] = {.lex_state = 131}, - [2483] = {.lex_state = 131}, - [2484] = {.lex_state = 5}, - [2485] = {.lex_state = 5}, + [2483] = {.lex_state = 132}, + [2484] = {.lex_state = 131}, + [2485] = {.lex_state = 131}, [2486] = {.lex_state = 131}, - [2487] = {.lex_state = 131, .external_lex_state = 4}, - [2488] = {.lex_state = 131, .external_lex_state = 4}, + [2487] = {.lex_state = 6}, + [2488] = {.lex_state = 131}, [2489] = {.lex_state = 131}, - [2490] = {.lex_state = 131}, - [2491] = {.lex_state = 132}, + [2490] = {.lex_state = 6}, + [2491] = {.lex_state = 6}, [2492] = {.lex_state = 131}, - [2493] = {.lex_state = 6}, + [2493] = {.lex_state = 131}, [2494] = {.lex_state = 131}, [2495] = {.lex_state = 131}, [2496] = {.lex_state = 131}, [2497] = {.lex_state = 131}, - [2498] = {.lex_state = 132}, + [2498] = {.lex_state = 131}, [2499] = {.lex_state = 131}, - [2500] = {.lex_state = 131}, - [2501] = {.lex_state = 131, .external_lex_state = 4}, - [2502] = {.lex_state = 131}, - [2503] = {.lex_state = 6}, - [2504] = {.lex_state = 6}, + [2500] = {.lex_state = 6}, + [2501] = {.lex_state = 131}, + [2502] = {.lex_state = 6}, + [2503] = {.lex_state = 131}, + [2504] = {.lex_state = 131}, [2505] = {.lex_state = 131}, - [2506] = {.lex_state = 131}, - [2507] = {.lex_state = 131}, + [2506] = {.lex_state = 131, .external_lex_state = 4}, + [2507] = {.lex_state = 131, .external_lex_state = 4}, [2508] = {.lex_state = 131}, [2509] = {.lex_state = 131}, [2510] = {.lex_state = 131}, [2511] = {.lex_state = 131}, - [2512] = {.lex_state = 6}, - [2513] = {.lex_state = 131}, - [2514] = {.lex_state = 6}, - [2515] = {.lex_state = 131}, - [2516] = {.lex_state = 131}, - [2517] = {.lex_state = 6}, - [2518] = {.lex_state = 131}, + [2512] = {.lex_state = 131}, + [2513] = {.lex_state = 132}, + [2514] = {.lex_state = 131}, + [2515] = {.lex_state = 132}, + [2516] = {.lex_state = 132}, + [2517] = {.lex_state = 132}, + [2518] = {.lex_state = 132}, [2519] = {.lex_state = 131, .external_lex_state = 4}, - [2520] = {.lex_state = 131}, - [2521] = {.lex_state = 131}, - [2522] = {.lex_state = 131}, - [2523] = {.lex_state = 131}, + [2520] = {.lex_state = 132}, + [2521] = {.lex_state = 132}, + [2522] = {.lex_state = 132}, + [2523] = {.lex_state = 132}, [2524] = {.lex_state = 132}, - [2525] = {.lex_state = 131, .external_lex_state = 4}, - [2526] = {.lex_state = 132}, + [2525] = {.lex_state = 132}, + [2526] = {.lex_state = 131}, [2527] = {.lex_state = 131}, [2528] = {.lex_state = 131}, - [2529] = {.lex_state = 132}, + [2529] = {.lex_state = 131}, [2530] = {.lex_state = 132}, [2531] = {.lex_state = 132}, [2532] = {.lex_state = 132}, @@ -20049,299 +19972,299 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [2536] = {.lex_state = 132}, [2537] = {.lex_state = 132}, [2538] = {.lex_state = 132}, - [2539] = {.lex_state = 132}, + [2539] = {.lex_state = 131, .external_lex_state = 4}, [2540] = {.lex_state = 132}, [2541] = {.lex_state = 132}, [2542] = {.lex_state = 132}, [2543] = {.lex_state = 131}, - [2544] = {.lex_state = 132}, - [2545] = {.lex_state = 132}, - [2546] = {.lex_state = 132}, - [2547] = {.lex_state = 132}, - [2548] = {.lex_state = 131, .external_lex_state = 4}, - [2549] = {.lex_state = 132}, - [2550] = {.lex_state = 132}, - [2551] = {.lex_state = 131, .external_lex_state = 4}, + [2544] = {.lex_state = 131}, + [2545] = {.lex_state = 131, .external_lex_state = 4}, + [2546] = {.lex_state = 131}, + [2547] = {.lex_state = 6}, + [2548] = {.lex_state = 131}, + [2549] = {.lex_state = 131, .external_lex_state = 4}, + [2550] = {.lex_state = 131, .external_lex_state = 4}, + [2551] = {.lex_state = 132}, [2552] = {.lex_state = 131, .external_lex_state = 4}, - [2553] = {.lex_state = 131}, + [2553] = {.lex_state = 131, .external_lex_state = 4}, [2554] = {.lex_state = 131, .external_lex_state = 4}, [2555] = {.lex_state = 131, .external_lex_state = 4}, [2556] = {.lex_state = 131}, [2557] = {.lex_state = 131, .external_lex_state = 4}, - [2558] = {.lex_state = 131, .external_lex_state = 4}, + [2558] = {.lex_state = 131}, [2559] = {.lex_state = 131}, - [2560] = {.lex_state = 132}, - [2561] = {.lex_state = 131, .external_lex_state = 4}, + [2560] = {.lex_state = 131}, + [2561] = {.lex_state = 131}, [2562] = {.lex_state = 131}, - [2563] = {.lex_state = 131, .external_lex_state = 4}, - [2564] = {.lex_state = 6}, - [2565] = {.lex_state = 131}, + [2563] = {.lex_state = 5}, + [2564] = {.lex_state = 131}, + [2565] = {.lex_state = 5}, [2566] = {.lex_state = 131}, [2567] = {.lex_state = 131}, [2568] = {.lex_state = 131}, - [2569] = {.lex_state = 5}, - [2570] = {.lex_state = 131}, - [2571] = {.lex_state = 5}, - [2572] = {.lex_state = 131}, + [2569] = {.lex_state = 131}, + [2570] = {.lex_state = 132}, + [2571] = {.lex_state = 131}, + [2572] = {.lex_state = 132}, [2573] = {.lex_state = 131}, [2574] = {.lex_state = 131}, [2575] = {.lex_state = 131}, [2576] = {.lex_state = 131}, - [2577] = {.lex_state = 132}, - [2578] = {.lex_state = 5}, + [2577] = {.lex_state = 131}, + [2578] = {.lex_state = 131}, [2579] = {.lex_state = 131}, [2580] = {.lex_state = 131}, - [2581] = {.lex_state = 6, .external_lex_state = 4}, - [2582] = {.lex_state = 131}, + [2581] = {.lex_state = 131}, + [2582] = {.lex_state = 6, .external_lex_state = 4}, [2583] = {.lex_state = 131}, [2584] = {.lex_state = 131}, [2585] = {.lex_state = 131}, - [2586] = {.lex_state = 131}, + [2586] = {.lex_state = 132}, [2587] = {.lex_state = 131}, [2588] = {.lex_state = 131}, [2589] = {.lex_state = 131}, [2590] = {.lex_state = 131}, [2591] = {.lex_state = 131}, - [2592] = {.lex_state = 131}, - [2593] = {.lex_state = 131}, - [2594] = {.lex_state = 131}, - [2595] = {.lex_state = 131}, - [2596] = {.lex_state = 132}, - [2597] = {.lex_state = 131}, + [2592] = {.lex_state = 5}, + [2593] = {.lex_state = 5}, + [2594] = {.lex_state = 5}, + [2595] = {.lex_state = 132}, + [2596] = {.lex_state = 131}, + [2597] = {.lex_state = 5}, [2598] = {.lex_state = 131}, [2599] = {.lex_state = 131}, - [2600] = {.lex_state = 132}, + [2600] = {.lex_state = 131}, [2601] = {.lex_state = 131}, - [2602] = {.lex_state = 132}, + [2602] = {.lex_state = 5}, [2603] = {.lex_state = 5}, - [2604] = {.lex_state = 131}, + [2604] = {.lex_state = 5}, [2605] = {.lex_state = 5}, - [2606] = {.lex_state = 131}, - [2607] = {.lex_state = 131}, - [2608] = {.lex_state = 131}, + [2606] = {.lex_state = 5}, + [2607] = {.lex_state = 5}, + [2608] = {.lex_state = 5}, [2609] = {.lex_state = 5}, [2610] = {.lex_state = 5}, - [2611] = {.lex_state = 132}, - [2612] = {.lex_state = 5}, - [2613] = {.lex_state = 5}, - [2614] = {.lex_state = 5}, - [2615] = {.lex_state = 5}, - [2616] = {.lex_state = 131}, - [2617] = {.lex_state = 5}, - [2618] = {.lex_state = 5}, - [2619] = {.lex_state = 5}, - [2620] = {.lex_state = 5}, - [2621] = {.lex_state = 131}, - [2622] = {.lex_state = 131}, + [2611] = {.lex_state = 131}, + [2612] = {.lex_state = 131, .external_lex_state = 4}, + [2613] = {.lex_state = 131, .external_lex_state = 4}, + [2614] = {.lex_state = 131}, + [2615] = {.lex_state = 131}, + [2616] = {.lex_state = 132}, + [2617] = {.lex_state = 131}, + [2618] = {.lex_state = 131, .external_lex_state = 4}, + [2619] = {.lex_state = 6, .external_lex_state = 4}, + [2620] = {.lex_state = 6, .external_lex_state = 4}, + [2621] = {.lex_state = 132}, + [2622] = {.lex_state = 6, .external_lex_state = 4}, [2623] = {.lex_state = 131}, - [2624] = {.lex_state = 131, .external_lex_state = 4}, + [2624] = {.lex_state = 131}, [2625] = {.lex_state = 131}, - [2626] = {.lex_state = 6, .external_lex_state = 4}, - [2627] = {.lex_state = 6, .external_lex_state = 4}, + [2626] = {.lex_state = 131}, + [2627] = {.lex_state = 5}, [2628] = {.lex_state = 5}, - [2629] = {.lex_state = 6, .external_lex_state = 4}, - [2630] = {.lex_state = 132}, - [2631] = {.lex_state = 131}, - [2632] = {.lex_state = 131}, - [2633] = {.lex_state = 131}, + [2629] = {.lex_state = 5}, + [2630] = {.lex_state = 5}, + [2631] = {.lex_state = 5}, + [2632] = {.lex_state = 5}, + [2633] = {.lex_state = 132}, [2634] = {.lex_state = 131}, - [2635] = {.lex_state = 5}, - [2636] = {.lex_state = 5}, - [2637] = {.lex_state = 131}, - [2638] = {.lex_state = 131, .external_lex_state = 4}, + [2635] = {.lex_state = 131}, + [2636] = {.lex_state = 131}, + [2637] = {.lex_state = 132}, + [2638] = {.lex_state = 5}, [2639] = {.lex_state = 5}, - [2640] = {.lex_state = 5}, - [2641] = {.lex_state = 5}, - [2642] = {.lex_state = 131, .external_lex_state = 4}, + [2640] = {.lex_state = 132}, + [2641] = {.lex_state = 132}, + [2642] = {.lex_state = 5}, [2643] = {.lex_state = 131}, - [2644] = {.lex_state = 5}, - [2645] = {.lex_state = 5}, - [2646] = {.lex_state = 5}, - [2647] = {.lex_state = 132}, + [2644] = {.lex_state = 131}, + [2645] = {.lex_state = 131}, + [2646] = {.lex_state = 132}, + [2647] = {.lex_state = 131, .external_lex_state = 4}, [2648] = {.lex_state = 132}, [2649] = {.lex_state = 132}, - [2650] = {.lex_state = 131}, - [2651] = {.lex_state = 131}, - [2652] = {.lex_state = 131}, + [2650] = {.lex_state = 5}, + [2651] = {.lex_state = 132}, + [2652] = {.lex_state = 132}, [2653] = {.lex_state = 132}, [2654] = {.lex_state = 132}, [2655] = {.lex_state = 132}, [2656] = {.lex_state = 132}, [2657] = {.lex_state = 132}, - [2658] = {.lex_state = 131, .external_lex_state = 4}, + [2658] = {.lex_state = 132}, [2659] = {.lex_state = 132}, [2660] = {.lex_state = 132}, [2661] = {.lex_state = 132}, - [2662] = {.lex_state = 131}, - [2663] = {.lex_state = 131, .external_lex_state = 4}, - [2664] = {.lex_state = 131, .external_lex_state = 4}, + [2662] = {.lex_state = 132}, + [2663] = {.lex_state = 132}, + [2664] = {.lex_state = 132}, [2665] = {.lex_state = 5}, [2666] = {.lex_state = 132}, - [2667] = {.lex_state = 131, .external_lex_state = 4}, - [2668] = {.lex_state = 131, .external_lex_state = 4}, - [2669] = {.lex_state = 132}, - [2670] = {.lex_state = 5}, + [2667] = {.lex_state = 132}, + [2668] = {.lex_state = 132}, + [2669] = {.lex_state = 5}, + [2670] = {.lex_state = 132}, [2671] = {.lex_state = 132}, - [2672] = {.lex_state = 5}, - [2673] = {.lex_state = 131, .external_lex_state = 4}, + [2672] = {.lex_state = 132}, + [2673] = {.lex_state = 132}, [2674] = {.lex_state = 132}, - [2675] = {.lex_state = 132}, + [2675] = {.lex_state = 131}, [2676] = {.lex_state = 132}, [2677] = {.lex_state = 132}, [2678] = {.lex_state = 132}, [2679] = {.lex_state = 132}, - [2680] = {.lex_state = 132}, + [2680] = {.lex_state = 131}, [2681] = {.lex_state = 132}, [2682] = {.lex_state = 132}, - [2683] = {.lex_state = 132}, - [2684] = {.lex_state = 132}, + [2683] = {.lex_state = 131}, + [2684] = {.lex_state = 131}, [2685] = {.lex_state = 132}, - [2686] = {.lex_state = 131}, - [2687] = {.lex_state = 5}, + [2686] = {.lex_state = 5}, + [2687] = {.lex_state = 131, .external_lex_state = 4}, [2688] = {.lex_state = 132}, [2689] = {.lex_state = 132}, [2690] = {.lex_state = 132}, - [2691] = {.lex_state = 131}, + [2691] = {.lex_state = 131, .external_lex_state = 4}, [2692] = {.lex_state = 132}, - [2693] = {.lex_state = 131}, + [2693] = {.lex_state = 132}, [2694] = {.lex_state = 132}, - [2695] = {.lex_state = 131}, - [2696] = {.lex_state = 131}, - [2697] = {.lex_state = 5}, - [2698] = {.lex_state = 131}, - [2699] = {.lex_state = 132}, - [2700] = {.lex_state = 132}, - [2701] = {.lex_state = 132}, - [2702] = {.lex_state = 131, .external_lex_state = 4}, + [2695] = {.lex_state = 132}, + [2696] = {.lex_state = 131, .external_lex_state = 4}, + [2697] = {.lex_state = 132}, + [2698] = {.lex_state = 131, .external_lex_state = 4}, + [2699] = {.lex_state = 131, .external_lex_state = 4}, + [2700] = {.lex_state = 5}, + [2701] = {.lex_state = 131, .external_lex_state = 4}, + [2702] = {.lex_state = 132}, [2703] = {.lex_state = 132}, - [2704] = {.lex_state = 132}, + [2704] = {.lex_state = 131, .external_lex_state = 4}, [2705] = {.lex_state = 132}, [2706] = {.lex_state = 131, .external_lex_state = 4}, [2707] = {.lex_state = 132}, - [2708] = {.lex_state = 132}, - [2709] = {.lex_state = 132}, + [2708] = {.lex_state = 131, .external_lex_state = 4}, + [2709] = {.lex_state = 131, .external_lex_state = 4}, [2710] = {.lex_state = 132}, [2711] = {.lex_state = 132}, [2712] = {.lex_state = 131, .external_lex_state = 4}, - [2713] = {.lex_state = 132}, - [2714] = {.lex_state = 132}, - [2715] = {.lex_state = 132}, - [2716] = {.lex_state = 131}, - [2717] = {.lex_state = 132}, + [2713] = {.lex_state = 131, .external_lex_state = 4}, + [2714] = {.lex_state = 131}, + [2715] = {.lex_state = 131, .external_lex_state = 4}, + [2716] = {.lex_state = 131, .external_lex_state = 4}, + [2717] = {.lex_state = 131}, [2718] = {.lex_state = 132}, - [2719] = {.lex_state = 5}, - [2720] = {.lex_state = 132}, - [2721] = {.lex_state = 131, .external_lex_state = 4}, - [2722] = {.lex_state = 131, .external_lex_state = 4}, - [2723] = {.lex_state = 131, .external_lex_state = 4}, - [2724] = {.lex_state = 131, .external_lex_state = 4}, - [2725] = {.lex_state = 131, .external_lex_state = 4}, - [2726] = {.lex_state = 131, .external_lex_state = 4}, + [2719] = {.lex_state = 131}, + [2720] = {.lex_state = 131}, + [2721] = {.lex_state = 132}, + [2722] = {.lex_state = 132}, + [2723] = {.lex_state = 132}, + [2724] = {.lex_state = 132}, + [2725] = {.lex_state = 132}, + [2726] = {.lex_state = 132}, [2727] = {.lex_state = 132}, [2728] = {.lex_state = 132}, - [2729] = {.lex_state = 5}, + [2729] = {.lex_state = 131}, [2730] = {.lex_state = 132}, [2731] = {.lex_state = 131}, [2732] = {.lex_state = 131}, - [2733] = {.lex_state = 132}, + [2733] = {.lex_state = 131}, [2734] = {.lex_state = 132}, - [2735] = {.lex_state = 131}, - [2736] = {.lex_state = 131}, + [2735] = {.lex_state = 132}, + [2736] = {.lex_state = 131, .external_lex_state = 4}, [2737] = {.lex_state = 131, .external_lex_state = 4}, [2738] = {.lex_state = 132}, [2739] = {.lex_state = 131}, [2740] = {.lex_state = 131}, - [2741] = {.lex_state = 132}, + [2741] = {.lex_state = 131}, [2742] = {.lex_state = 131}, - [2743] = {.lex_state = 131}, - [2744] = {.lex_state = 132}, + [2743] = {.lex_state = 131, .external_lex_state = 4}, + [2744] = {.lex_state = 131, .external_lex_state = 4}, [2745] = {.lex_state = 131, .external_lex_state = 4}, - [2746] = {.lex_state = 132}, - [2747] = {.lex_state = 5}, - [2748] = {.lex_state = 131}, + [2746] = {.lex_state = 5}, + [2747] = {.lex_state = 131, .external_lex_state = 4}, + [2748] = {.lex_state = 5}, [2749] = {.lex_state = 132}, [2750] = {.lex_state = 132}, [2751] = {.lex_state = 132}, - [2752] = {.lex_state = 132}, - [2753] = {.lex_state = 131}, - [2754] = {.lex_state = 131}, - [2755] = {.lex_state = 131}, + [2752] = {.lex_state = 131, .external_lex_state = 4}, + [2753] = {.lex_state = 131, .external_lex_state = 4}, + [2754] = {.lex_state = 131, .external_lex_state = 4}, + [2755] = {.lex_state = 132}, [2756] = {.lex_state = 132}, - [2757] = {.lex_state = 131, .external_lex_state = 4}, + [2757] = {.lex_state = 131}, [2758] = {.lex_state = 132}, - [2759] = {.lex_state = 132}, - [2760] = {.lex_state = 132}, - [2761] = {.lex_state = 132}, + [2759] = {.lex_state = 5}, + [2760] = {.lex_state = 131}, + [2761] = {.lex_state = 131}, [2762] = {.lex_state = 5}, - [2763] = {.lex_state = 131, .external_lex_state = 4}, + [2763] = {.lex_state = 131}, [2764] = {.lex_state = 131, .external_lex_state = 4}, [2765] = {.lex_state = 132}, - [2766] = {.lex_state = 5}, - [2767] = {.lex_state = 131, .external_lex_state = 4}, - [2768] = {.lex_state = 131, .external_lex_state = 4}, - [2769] = {.lex_state = 131, .external_lex_state = 4}, + [2766] = {.lex_state = 132}, + [2767] = {.lex_state = 132}, + [2768] = {.lex_state = 132}, + [2769] = {.lex_state = 131}, [2770] = {.lex_state = 132}, - [2771] = {.lex_state = 131, .external_lex_state = 4}, + [2771] = {.lex_state = 5}, [2772] = {.lex_state = 132}, - [2773] = {.lex_state = 131}, - [2774] = {.lex_state = 5}, - [2775] = {.lex_state = 131}, - [2776] = {.lex_state = 131}, - [2777] = {.lex_state = 131, .external_lex_state = 4}, - [2778] = {.lex_state = 131}, + [2773] = {.lex_state = 132}, + [2774] = {.lex_state = 132}, + [2775] = {.lex_state = 132}, + [2776] = {.lex_state = 132}, + [2777] = {.lex_state = 132}, + [2778] = {.lex_state = 132}, [2779] = {.lex_state = 132}, [2780] = {.lex_state = 132}, [2781] = {.lex_state = 132}, [2782] = {.lex_state = 132}, - [2783] = {.lex_state = 132}, + [2783] = {.lex_state = 131}, [2784] = {.lex_state = 132}, - [2785] = {.lex_state = 131, .external_lex_state = 4}, + [2785] = {.lex_state = 131}, [2786] = {.lex_state = 131}, [2787] = {.lex_state = 131}, - [2788] = {.lex_state = 131}, - [2789] = {.lex_state = 131}, - [2790] = {.lex_state = 5}, - [2791] = {.lex_state = 131, .external_lex_state = 4}, + [2788] = {.lex_state = 132}, + [2789] = {.lex_state = 131, .external_lex_state = 4}, + [2790] = {.lex_state = 131}, + [2791] = {.lex_state = 132}, [2792] = {.lex_state = 131}, - [2793] = {.lex_state = 131}, + [2793] = {.lex_state = 132}, [2794] = {.lex_state = 131}, [2795] = {.lex_state = 131}, - [2796] = {.lex_state = 132}, - [2797] = {.lex_state = 132}, - [2798] = {.lex_state = 132}, - [2799] = {.lex_state = 131, .external_lex_state = 4}, - [2800] = {.lex_state = 131, .external_lex_state = 4}, - [2801] = {.lex_state = 131, .external_lex_state = 4}, - [2802] = {.lex_state = 131, .external_lex_state = 4}, - [2803] = {.lex_state = 132}, - [2804] = {.lex_state = 131, .external_lex_state = 4}, + [2796] = {.lex_state = 131}, + [2797] = {.lex_state = 131}, + [2798] = {.lex_state = 5}, + [2799] = {.lex_state = 132}, + [2800] = {.lex_state = 132}, + [2801] = {.lex_state = 132}, + [2802] = {.lex_state = 132}, + [2803] = {.lex_state = 131, .external_lex_state = 4}, + [2804] = {.lex_state = 132}, [2805] = {.lex_state = 132}, [2806] = {.lex_state = 132}, - [2807] = {.lex_state = 131, .external_lex_state = 4}, - [2808] = {.lex_state = 5}, + [2807] = {.lex_state = 132}, + [2808] = {.lex_state = 132}, [2809] = {.lex_state = 132}, - [2810] = {.lex_state = 5}, - [2811] = {.lex_state = 132}, - [2812] = {.lex_state = 132}, + [2810] = {.lex_state = 131}, + [2811] = {.lex_state = 5}, + [2812] = {.lex_state = 131, .external_lex_state = 4}, [2813] = {.lex_state = 132}, - [2814] = {.lex_state = 132}, - [2815] = {.lex_state = 132}, - [2816] = {.lex_state = 132}, - [2817] = {.lex_state = 132}, + [2814] = {.lex_state = 131, .external_lex_state = 4}, + [2815] = {.lex_state = 5}, + [2816] = {.lex_state = 5}, + [2817] = {.lex_state = 131, .external_lex_state = 4}, [2818] = {.lex_state = 132}, - [2819] = {.lex_state = 131, .external_lex_state = 4}, + [2819] = {.lex_state = 132}, [2820] = {.lex_state = 132}, - [2821] = {.lex_state = 132}, + [2821] = {.lex_state = 131, .external_lex_state = 4}, [2822] = {.lex_state = 131, .external_lex_state = 4}, - [2823] = {.lex_state = 132}, - [2824] = {.lex_state = 132}, - [2825] = {.lex_state = 132}, + [2823] = {.lex_state = 131, .external_lex_state = 4}, + [2824] = {.lex_state = 5}, + [2825] = {.lex_state = 131, .external_lex_state = 4}, [2826] = {.lex_state = 132}, - [2827] = {.lex_state = 5}, + [2827] = {.lex_state = 132}, [2828] = {.lex_state = 132}, - [2829] = {.lex_state = 132}, - [2830] = {.lex_state = 132}, - [2831] = {.lex_state = 132}, + [2829] = {.lex_state = 131, .external_lex_state = 4}, + [2830] = {.lex_state = 5}, + [2831] = {.lex_state = 131, .external_lex_state = 4}, [2832] = {.lex_state = 132}, [2833] = {.lex_state = 132}, [2834] = {.lex_state = 132}, @@ -20349,102 +20272,102 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [2836] = {.lex_state = 132}, [2837] = {.lex_state = 132}, [2838] = {.lex_state = 132}, - [2839] = {.lex_state = 132}, - [2840] = {.lex_state = 5}, + [2839] = {.lex_state = 131, .external_lex_state = 4}, + [2840] = {.lex_state = 131, .external_lex_state = 4}, [2841] = {.lex_state = 132}, - [2842] = {.lex_state = 132}, + [2842] = {.lex_state = 131, .external_lex_state = 4}, [2843] = {.lex_state = 132}, - [2844] = {.lex_state = 132}, - [2845] = {.lex_state = 132}, - [2846] = {.lex_state = 132}, + [2844] = {.lex_state = 131, .external_lex_state = 4}, + [2845] = {.lex_state = 131, .external_lex_state = 4}, + [2846] = {.lex_state = 131, .external_lex_state = 4}, [2847] = {.lex_state = 132}, [2848] = {.lex_state = 132}, - [2849] = {.lex_state = 131, .external_lex_state = 4}, - [2850] = {.lex_state = 131, .external_lex_state = 4}, - [2851] = {.lex_state = 131, .external_lex_state = 4}, - [2852] = {.lex_state = 132}, - [2853] = {.lex_state = 131, .external_lex_state = 4}, - [2854] = {.lex_state = 131, .external_lex_state = 4}, - [2855] = {.lex_state = 132}, - [2856] = {.lex_state = 131, .external_lex_state = 4}, - [2857] = {.lex_state = 132}, - [2858] = {.lex_state = 131, .external_lex_state = 4}, - [2859] = {.lex_state = 132}, - [2860] = {.lex_state = 131}, - [2861] = {.lex_state = 132}, + [2849] = {.lex_state = 131}, + [2850] = {.lex_state = 131}, + [2851] = {.lex_state = 131}, + [2852] = {.lex_state = 131}, + [2853] = {.lex_state = 131}, + [2854] = {.lex_state = 132}, + [2855] = {.lex_state = 131}, + [2856] = {.lex_state = 131}, + [2857] = {.lex_state = 131}, + [2858] = {.lex_state = 132}, + [2859] = {.lex_state = 131}, + [2860] = {.lex_state = 132}, + [2861] = {.lex_state = 131}, [2862] = {.lex_state = 131}, [2863] = {.lex_state = 131}, [2864] = {.lex_state = 131}, [2865] = {.lex_state = 131}, - [2866] = {.lex_state = 131}, + [2866] = {.lex_state = 5}, [2867] = {.lex_state = 132}, - [2868] = {.lex_state = 131}, - [2869] = {.lex_state = 131}, + [2868] = {.lex_state = 132}, + [2869] = {.lex_state = 132}, [2870] = {.lex_state = 131}, - [2871] = {.lex_state = 5}, - [2872] = {.lex_state = 5}, + [2871] = {.lex_state = 131}, + [2872] = {.lex_state = 132}, [2873] = {.lex_state = 131}, [2874] = {.lex_state = 132}, [2875] = {.lex_state = 132}, [2876] = {.lex_state = 132}, [2877] = {.lex_state = 131}, - [2878] = {.lex_state = 132}, - [2879] = {.lex_state = 132}, + [2878] = {.lex_state = 131}, + [2879] = {.lex_state = 5}, [2880] = {.lex_state = 132}, [2881] = {.lex_state = 131}, [2882] = {.lex_state = 131}, - [2883] = {.lex_state = 5}, - [2884] = {.lex_state = 131}, - [2885] = {.lex_state = 131}, + [2883] = {.lex_state = 131}, + [2884] = {.lex_state = 5}, + [2885] = {.lex_state = 5}, [2886] = {.lex_state = 131}, - [2887] = {.lex_state = 131}, + [2887] = {.lex_state = 4}, [2888] = {.lex_state = 131}, - [2889] = {.lex_state = 131}, - [2890] = {.lex_state = 131}, - [2891] = {.lex_state = 131}, - [2892] = {.lex_state = 131}, - [2893] = {.lex_state = 5}, + [2889] = {.lex_state = 4}, + [2890] = {.lex_state = 4}, + [2891] = {.lex_state = 6}, + [2892] = {.lex_state = 4}, + [2893] = {.lex_state = 131}, [2894] = {.lex_state = 131}, - [2895] = {.lex_state = 132}, - [2896] = {.lex_state = 132}, + [2895] = {.lex_state = 131}, + [2896] = {.lex_state = 4}, [2897] = {.lex_state = 132}, - [2898] = {.lex_state = 4}, - [2899] = {.lex_state = 4}, - [2900] = {.lex_state = 131}, - [2901] = {.lex_state = 6}, - [2902] = {.lex_state = 4}, - [2903] = {.lex_state = 6}, - [2904] = {.lex_state = 6}, - [2905] = {.lex_state = 131}, - [2906] = {.lex_state = 132}, + [2898] = {.lex_state = 6}, + [2899] = {.lex_state = 131}, + [2900] = {.lex_state = 6}, + [2901] = {.lex_state = 4}, + [2902] = {.lex_state = 131}, + [2903] = {.lex_state = 4}, + [2904] = {.lex_state = 131}, + [2905] = {.lex_state = 4}, + [2906] = {.lex_state = 4}, [2907] = {.lex_state = 131}, [2908] = {.lex_state = 131}, [2909] = {.lex_state = 131}, [2910] = {.lex_state = 131}, - [2911] = {.lex_state = 4}, - [2912] = {.lex_state = 4}, - [2913] = {.lex_state = 4}, - [2914] = {.lex_state = 4}, + [2911] = {.lex_state = 131}, + [2912] = {.lex_state = 6}, + [2913] = {.lex_state = 131}, + [2914] = {.lex_state = 131}, [2915] = {.lex_state = 131}, - [2916] = {.lex_state = 4}, - [2917] = {.lex_state = 4}, + [2916] = {.lex_state = 6}, + [2917] = {.lex_state = 131}, [2918] = {.lex_state = 131}, [2919] = {.lex_state = 131}, - [2920] = {.lex_state = 6}, + [2920] = {.lex_state = 131}, [2921] = {.lex_state = 131}, [2922] = {.lex_state = 131}, - [2923] = {.lex_state = 6}, + [2923] = {.lex_state = 131}, [2924] = {.lex_state = 131}, - [2925] = {.lex_state = 131}, + [2925] = {.lex_state = 132}, [2926] = {.lex_state = 131}, - [2927] = {.lex_state = 131}, + [2927] = {.lex_state = 6}, [2928] = {.lex_state = 131}, [2929] = {.lex_state = 131}, - [2930] = {.lex_state = 131}, + [2930] = {.lex_state = 6}, [2931] = {.lex_state = 131}, [2932] = {.lex_state = 131}, [2933] = {.lex_state = 131}, - [2934] = {.lex_state = 132}, + [2934] = {.lex_state = 131}, [2935] = {.lex_state = 131}, [2936] = {.lex_state = 131}, [2937] = {.lex_state = 131}, @@ -20453,19 +20376,19 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [2940] = {.lex_state = 131}, [2941] = {.lex_state = 131}, [2942] = {.lex_state = 131}, - [2943] = {.lex_state = 6}, - [2944] = {.lex_state = 131}, - [2945] = {.lex_state = 6}, + [2943] = {.lex_state = 131}, + [2944] = {.lex_state = 4}, + [2945] = {.lex_state = 131}, [2946] = {.lex_state = 131}, [2947] = {.lex_state = 131}, [2948] = {.lex_state = 131}, - [2949] = {.lex_state = 4}, + [2949] = {.lex_state = 7}, [2950] = {.lex_state = 131}, - [2951] = {.lex_state = 131}, + [2951] = {.lex_state = 132}, [2952] = {.lex_state = 131}, - [2953] = {.lex_state = 131}, - [2954] = {.lex_state = 7}, - [2955] = {.lex_state = 131}, + [2953] = {.lex_state = 132}, + [2954] = {.lex_state = 131}, + [2955] = {.lex_state = 4}, [2956] = {.lex_state = 131}, [2957] = {.lex_state = 131}, [2958] = {.lex_state = 131}, @@ -20482,25 +20405,25 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [2969] = {.lex_state = 131}, [2970] = {.lex_state = 131}, [2971] = {.lex_state = 131}, - [2972] = {.lex_state = 132}, + [2972] = {.lex_state = 131}, [2973] = {.lex_state = 131}, [2974] = {.lex_state = 131}, [2975] = {.lex_state = 131}, [2976] = {.lex_state = 131}, [2977] = {.lex_state = 131}, - [2978] = {.lex_state = 132}, - [2979] = {.lex_state = 132}, + [2978] = {.lex_state = 131}, + [2979] = {.lex_state = 131}, [2980] = {.lex_state = 131}, [2981] = {.lex_state = 131}, - [2982] = {.lex_state = 131}, + [2982] = {.lex_state = 132}, [2983] = {.lex_state = 131}, [2984] = {.lex_state = 131}, - [2985] = {.lex_state = 131}, - [2986] = {.lex_state = 4}, + [2985] = {.lex_state = 4}, + [2986] = {.lex_state = 131}, [2987] = {.lex_state = 131}, [2988] = {.lex_state = 131}, [2989] = {.lex_state = 131}, - [2990] = {.lex_state = 132}, + [2990] = {.lex_state = 131}, [2991] = {.lex_state = 131}, [2992] = {.lex_state = 131}, [2993] = {.lex_state = 131}, @@ -20508,12 +20431,12 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [2995] = {.lex_state = 131}, [2996] = {.lex_state = 131}, [2997] = {.lex_state = 131}, - [2998] = {.lex_state = 10}, + [2998] = {.lex_state = 131}, [2999] = {.lex_state = 131}, [3000] = {.lex_state = 131}, [3001] = {.lex_state = 131}, [3002] = {.lex_state = 131}, - [3003] = {.lex_state = 132}, + [3003] = {.lex_state = 131}, [3004] = {.lex_state = 131}, [3005] = {.lex_state = 131}, [3006] = {.lex_state = 131}, @@ -20528,22 +20451,22 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [3015] = {.lex_state = 131}, [3016] = {.lex_state = 131}, [3017] = {.lex_state = 131}, - [3018] = {.lex_state = 132}, + [3018] = {.lex_state = 131}, [3019] = {.lex_state = 131}, [3020] = {.lex_state = 131}, [3021] = {.lex_state = 131}, [3022] = {.lex_state = 131}, - [3023] = {.lex_state = 4}, + [3023] = {.lex_state = 131}, [3024] = {.lex_state = 131}, [3025] = {.lex_state = 131}, [3026] = {.lex_state = 131}, [3027] = {.lex_state = 131}, - [3028] = {.lex_state = 131}, + [3028] = {.lex_state = 132}, [3029] = {.lex_state = 131}, [3030] = {.lex_state = 131}, - [3031] = {.lex_state = 131}, + [3031] = {.lex_state = 132}, [3032] = {.lex_state = 131}, - [3033] = {.lex_state = 131}, + [3033] = {.lex_state = 132}, [3034] = {.lex_state = 132}, [3035] = {.lex_state = 131}, [3036] = {.lex_state = 131}, @@ -20551,16 +20474,16 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [3038] = {.lex_state = 131}, [3039] = {.lex_state = 131}, [3040] = {.lex_state = 131}, - [3041] = {.lex_state = 132}, + [3041] = {.lex_state = 131}, [3042] = {.lex_state = 131}, [3043] = {.lex_state = 131}, - [3044] = {.lex_state = 131}, + [3044] = {.lex_state = 132}, [3045] = {.lex_state = 131}, [3046] = {.lex_state = 131}, - [3047] = {.lex_state = 131}, + [3047] = {.lex_state = 132}, [3048] = {.lex_state = 131}, [3049] = {.lex_state = 131}, - [3050] = {.lex_state = 131}, + [3050] = {.lex_state = 10}, [3051] = {.lex_state = 131}, [3052] = {.lex_state = 131}, [3053] = {.lex_state = 131}, @@ -20570,20 +20493,20 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [3057] = {.lex_state = 131}, [3058] = {.lex_state = 131}, [3059] = {.lex_state = 131}, - [3060] = {.lex_state = 132}, + [3060] = {.lex_state = 131}, [3061] = {.lex_state = 131}, [3062] = {.lex_state = 131}, [3063] = {.lex_state = 131}, [3064] = {.lex_state = 131}, - [3065] = {.lex_state = 131}, - [3066] = {.lex_state = 131}, - [3067] = {.lex_state = 132}, + [3065] = {.lex_state = 132}, + [3066] = {.lex_state = 4}, + [3067] = {.lex_state = 131}, [3068] = {.lex_state = 131}, - [3069] = {.lex_state = 4}, + [3069] = {.lex_state = 131}, [3070] = {.lex_state = 131}, [3071] = {.lex_state = 131}, [3072] = {.lex_state = 131}, - [3073] = {.lex_state = 131}, + [3073] = {.lex_state = 4}, [3074] = {.lex_state = 131}, [3075] = {.lex_state = 131}, [3076] = {.lex_state = 131}, @@ -20602,7 +20525,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [3089] = {.lex_state = 131}, [3090] = {.lex_state = 131}, [3091] = {.lex_state = 131}, - [3092] = {.lex_state = 4}, + [3092] = {.lex_state = 131}, [3093] = {.lex_state = 131}, [3094] = {.lex_state = 131}, [3095] = {.lex_state = 131}, @@ -20610,141 +20533,141 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [3097] = {.lex_state = 131}, [3098] = {.lex_state = 131}, [3099] = {.lex_state = 131}, - [3100] = {.lex_state = 132}, + [3100] = {.lex_state = 4}, [3101] = {.lex_state = 131}, [3102] = {.lex_state = 131}, [3103] = {.lex_state = 131}, - [3104] = {.lex_state = 131}, + [3104] = {.lex_state = 132}, [3105] = {.lex_state = 131}, [3106] = {.lex_state = 131}, [3107] = {.lex_state = 131}, - [3108] = {.lex_state = 131}, + [3108] = {.lex_state = 132}, [3109] = {.lex_state = 4}, - [3110] = {.lex_state = 131}, - [3111] = {.lex_state = 131}, - [3112] = {.lex_state = 131}, - [3113] = {.lex_state = 131}, - [3114] = {.lex_state = 131}, - [3115] = {.lex_state = 131}, + [3110] = {.lex_state = 4}, + [3111] = {.lex_state = 132}, + [3112] = {.lex_state = 5}, + [3113] = {.lex_state = 132}, + [3114] = {.lex_state = 132}, + [3115] = {.lex_state = 4}, [3116] = {.lex_state = 131}, - [3117] = {.lex_state = 131}, - [3118] = {.lex_state = 131}, - [3119] = {.lex_state = 132}, - [3120] = {.lex_state = 4}, - [3121] = {.lex_state = 5}, - [3122] = {.lex_state = 4}, - [3123] = {.lex_state = 132}, - [3124] = {.lex_state = 132}, - [3125] = {.lex_state = 4}, + [3117] = {.lex_state = 132}, + [3118] = {.lex_state = 5}, + [3119] = {.lex_state = 6}, + [3120] = {.lex_state = 6}, + [3121] = {.lex_state = 132}, + [3122] = {.lex_state = 6}, + [3123] = {.lex_state = 131}, + [3124] = {.lex_state = 5, .external_lex_state = 4}, + [3125] = {.lex_state = 131}, [3126] = {.lex_state = 5}, - [3127] = {.lex_state = 131}, + [3127] = {.lex_state = 5}, [3128] = {.lex_state = 132}, - [3129] = {.lex_state = 6}, - [3130] = {.lex_state = 132}, - [3131] = {.lex_state = 132}, - [3132] = {.lex_state = 131}, - [3133] = {.lex_state = 6}, - [3134] = {.lex_state = 5}, - [3135] = {.lex_state = 5}, - [3136] = {.lex_state = 4}, - [3137] = {.lex_state = 132}, + [3129] = {.lex_state = 132}, + [3130] = {.lex_state = 131}, + [3131] = {.lex_state = 4}, + [3132] = {.lex_state = 4}, + [3133] = {.lex_state = 131}, + [3134] = {.lex_state = 131}, + [3135] = {.lex_state = 6}, + [3136] = {.lex_state = 131}, + [3137] = {.lex_state = 131}, [3138] = {.lex_state = 131}, [3139] = {.lex_state = 131}, - [3140] = {.lex_state = 4}, - [3141] = {.lex_state = 131}, - [3142] = {.lex_state = 131}, - [3143] = {.lex_state = 132}, - [3144] = {.lex_state = 131}, - [3145] = {.lex_state = 131}, + [3140] = {.lex_state = 131}, + [3141] = {.lex_state = 132}, + [3142] = {.lex_state = 5, .external_lex_state = 4}, + [3143] = {.lex_state = 131}, + [3144] = {.lex_state = 5, .external_lex_state = 4}, + [3145] = {.lex_state = 5, .external_lex_state = 4}, [3146] = {.lex_state = 131}, - [3147] = {.lex_state = 5, .external_lex_state = 4}, - [3148] = {.lex_state = 6}, - [3149] = {.lex_state = 6}, - [3150] = {.lex_state = 131}, + [3147] = {.lex_state = 131}, + [3148] = {.lex_state = 131}, + [3149] = {.lex_state = 131}, + [3150] = {.lex_state = 5, .external_lex_state = 4}, [3151] = {.lex_state = 131}, [3152] = {.lex_state = 131}, [3153] = {.lex_state = 131}, [3154] = {.lex_state = 131}, [3155] = {.lex_state = 131}, [3156] = {.lex_state = 131}, - [3157] = {.lex_state = 5, .external_lex_state = 4}, - [3158] = {.lex_state = 131}, - [3159] = {.lex_state = 5, .external_lex_state = 4}, + [3157] = {.lex_state = 131}, + [3158] = {.lex_state = 5, .external_lex_state = 4}, + [3159] = {.lex_state = 131}, [3160] = {.lex_state = 131}, - [3161] = {.lex_state = 5, .external_lex_state = 4}, - [3162] = {.lex_state = 4}, + [3161] = {.lex_state = 131}, + [3162] = {.lex_state = 5, .external_lex_state = 4}, [3163] = {.lex_state = 131}, [3164] = {.lex_state = 131}, - [3165] = {.lex_state = 5, .external_lex_state = 4}, + [3165] = {.lex_state = 131}, [3166] = {.lex_state = 131}, - [3167] = {.lex_state = 6}, + [3167] = {.lex_state = 5, .external_lex_state = 4}, [3168] = {.lex_state = 131}, - [3169] = {.lex_state = 5, .external_lex_state = 4}, - [3170] = {.lex_state = 131}, + [3169] = {.lex_state = 131}, + [3170] = {.lex_state = 5, .external_lex_state = 4}, [3171] = {.lex_state = 131}, [3172] = {.lex_state = 131}, [3173] = {.lex_state = 5, .external_lex_state = 4}, - [3174] = {.lex_state = 131}, - [3175] = {.lex_state = 5, .external_lex_state = 4}, + [3174] = {.lex_state = 5, .external_lex_state = 4}, + [3175] = {.lex_state = 131}, [3176] = {.lex_state = 131}, - [3177] = {.lex_state = 131}, - [3178] = {.lex_state = 131}, - [3179] = {.lex_state = 131}, + [3177] = {.lex_state = 6}, + [3178] = {.lex_state = 5, .external_lex_state = 4}, + [3179] = {.lex_state = 5, .external_lex_state = 4}, [3180] = {.lex_state = 5, .external_lex_state = 4}, [3181] = {.lex_state = 131}, - [3182] = {.lex_state = 131}, + [3182] = {.lex_state = 5, .external_lex_state = 4}, [3183] = {.lex_state = 131}, - [3184] = {.lex_state = 5, .external_lex_state = 4}, + [3184] = {.lex_state = 131}, [3185] = {.lex_state = 131}, - [3186] = {.lex_state = 5, .external_lex_state = 4}, - [3187] = {.lex_state = 131}, + [3186] = {.lex_state = 131}, + [3187] = {.lex_state = 5, .external_lex_state = 4}, [3188] = {.lex_state = 5, .external_lex_state = 4}, - [3189] = {.lex_state = 5, .external_lex_state = 4}, - [3190] = {.lex_state = 5, .external_lex_state = 4}, + [3189] = {.lex_state = 131}, + [3190] = {.lex_state = 131}, [3191] = {.lex_state = 131}, - [3192] = {.lex_state = 131}, - [3193] = {.lex_state = 131}, + [3192] = {.lex_state = 5, .external_lex_state = 4}, + [3193] = {.lex_state = 132}, [3194] = {.lex_state = 131}, - [3195] = {.lex_state = 6}, + [3195] = {.lex_state = 131}, [3196] = {.lex_state = 131}, - [3197] = {.lex_state = 5, .external_lex_state = 4}, + [3197] = {.lex_state = 5}, [3198] = {.lex_state = 131}, - [3199] = {.lex_state = 132}, - [3200] = {.lex_state = 131}, - [3201] = {.lex_state = 131}, + [3199] = {.lex_state = 131}, + [3200] = {.lex_state = 7}, + [3201] = {.lex_state = 6}, [3202] = {.lex_state = 131}, [3203] = {.lex_state = 131}, - [3204] = {.lex_state = 5, .external_lex_state = 4}, - [3205] = {.lex_state = 131}, - [3206] = {.lex_state = 131}, - [3207] = {.lex_state = 131}, - [3208] = {.lex_state = 132}, + [3204] = {.lex_state = 6}, + [3205] = {.lex_state = 6}, + [3206] = {.lex_state = 5, .external_lex_state = 4}, + [3207] = {.lex_state = 5, .external_lex_state = 4}, + [3208] = {.lex_state = 4}, [3209] = {.lex_state = 131}, [3210] = {.lex_state = 5, .external_lex_state = 4}, [3211] = {.lex_state = 131}, - [3212] = {.lex_state = 5, .external_lex_state = 4}, - [3213] = {.lex_state = 5, .external_lex_state = 4}, - [3214] = {.lex_state = 5, .external_lex_state = 4}, + [3212] = {.lex_state = 131}, + [3213] = {.lex_state = 131}, + [3214] = {.lex_state = 131}, [3215] = {.lex_state = 131}, [3216] = {.lex_state = 131}, - [3217] = {.lex_state = 5, .external_lex_state = 4}, + [3217] = {.lex_state = 131}, [3218] = {.lex_state = 131}, [3219] = {.lex_state = 131}, [3220] = {.lex_state = 131}, - [3221] = {.lex_state = 6}, + [3221] = {.lex_state = 131}, [3222] = {.lex_state = 131}, [3223] = {.lex_state = 131}, - [3224] = {.lex_state = 5}, - [3225] = {.lex_state = 6}, - [3226] = {.lex_state = 7}, + [3224] = {.lex_state = 131}, + [3225] = {.lex_state = 131}, + [3226] = {.lex_state = 131}, [3227] = {.lex_state = 131}, [3228] = {.lex_state = 131}, [3229] = {.lex_state = 131}, [3230] = {.lex_state = 131}, - [3231] = {.lex_state = 131}, + [3231] = {.lex_state = 5}, [3232] = {.lex_state = 131}, - [3233] = {.lex_state = 131}, - [3234] = {.lex_state = 131}, + [3233] = {.lex_state = 132}, + [3234] = {.lex_state = 4}, [3235] = {.lex_state = 131}, [3236] = {.lex_state = 131}, [3237] = {.lex_state = 131}, @@ -20770,7 +20693,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [3257] = {.lex_state = 131}, [3258] = {.lex_state = 131}, [3259] = {.lex_state = 131}, - [3260] = {.lex_state = 6}, + [3260] = {.lex_state = 131}, [3261] = {.lex_state = 131}, [3262] = {.lex_state = 131}, [3263] = {.lex_state = 131}, @@ -20778,8 +20701,8 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [3265] = {.lex_state = 131}, [3266] = {.lex_state = 131}, [3267] = {.lex_state = 131}, - [3268] = {.lex_state = 7}, - [3269] = {.lex_state = 132}, + [3268] = {.lex_state = 131}, + [3269] = {.lex_state = 131}, [3270] = {.lex_state = 131}, [3271] = {.lex_state = 131}, [3272] = {.lex_state = 131}, @@ -20787,11 +20710,11 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [3274] = {.lex_state = 131}, [3275] = {.lex_state = 131}, [3276] = {.lex_state = 131}, - [3277] = {.lex_state = 131}, + [3277] = {.lex_state = 7}, [3278] = {.lex_state = 131}, [3279] = {.lex_state = 131}, - [3280] = {.lex_state = 5}, - [3281] = {.lex_state = 131}, + [3280] = {.lex_state = 131}, + [3281] = {.lex_state = 5}, [3282] = {.lex_state = 131}, [3283] = {.lex_state = 131}, [3284] = {.lex_state = 131}, @@ -20804,471 +20727,471 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [3291] = {.lex_state = 131}, [3292] = {.lex_state = 131}, [3293] = {.lex_state = 131}, - [3294] = {.lex_state = 132}, + [3294] = {.lex_state = 131}, [3295] = {.lex_state = 131}, [3296] = {.lex_state = 131}, [3297] = {.lex_state = 131}, [3298] = {.lex_state = 131}, [3299] = {.lex_state = 131}, - [3300] = {.lex_state = 132}, + [3300] = {.lex_state = 131}, [3301] = {.lex_state = 131}, - [3302] = {.lex_state = 131}, + [3302] = {.lex_state = 132}, [3303] = {.lex_state = 131}, [3304] = {.lex_state = 131}, - [3305] = {.lex_state = 131}, + [3305] = {.lex_state = 132}, [3306] = {.lex_state = 131}, [3307] = {.lex_state = 131}, [3308] = {.lex_state = 131}, [3309] = {.lex_state = 131}, [3310] = {.lex_state = 131}, [3311] = {.lex_state = 131}, - [3312] = {.lex_state = 131}, + [3312] = {.lex_state = 5, .external_lex_state = 4}, [3313] = {.lex_state = 131}, - [3314] = {.lex_state = 5, .external_lex_state = 4}, + [3314] = {.lex_state = 131}, [3315] = {.lex_state = 131}, [3316] = {.lex_state = 131}, - [3317] = {.lex_state = 131}, + [3317] = {.lex_state = 6}, [3318] = {.lex_state = 131}, [3319] = {.lex_state = 131}, [3320] = {.lex_state = 131}, [3321] = {.lex_state = 131}, [3322] = {.lex_state = 131}, - [3323] = {.lex_state = 131}, + [3323] = {.lex_state = 132}, [3324] = {.lex_state = 131}, [3325] = {.lex_state = 131}, [3326] = {.lex_state = 131}, - [3327] = {.lex_state = 5}, + [3327] = {.lex_state = 131}, [3328] = {.lex_state = 131}, [3329] = {.lex_state = 131}, - [3330] = {.lex_state = 131}, - [3331] = {.lex_state = 132}, + [3330] = {.lex_state = 132}, + [3331] = {.lex_state = 131}, [3332] = {.lex_state = 131}, [3333] = {.lex_state = 131}, [3334] = {.lex_state = 131}, [3335] = {.lex_state = 131}, [3336] = {.lex_state = 131}, - [3337] = {.lex_state = 131}, + [3337] = {.lex_state = 132}, [3338] = {.lex_state = 131}, [3339] = {.lex_state = 131}, [3340] = {.lex_state = 131}, - [3341] = {.lex_state = 131}, + [3341] = {.lex_state = 132}, [3342] = {.lex_state = 131}, [3343] = {.lex_state = 131}, [3344] = {.lex_state = 131}, [3345] = {.lex_state = 131}, [3346] = {.lex_state = 131}, - [3347] = {.lex_state = 4}, + [3347] = {.lex_state = 131}, [3348] = {.lex_state = 131}, - [3349] = {.lex_state = 131}, - [3350] = {.lex_state = 131}, + [3349] = {.lex_state = 5}, + [3350] = {.lex_state = 132}, [3351] = {.lex_state = 131}, [3352] = {.lex_state = 131}, - [3353] = {.lex_state = 132}, - [3354] = {.lex_state = 131}, - [3355] = {.lex_state = 132}, - [3356] = {.lex_state = 131}, - [3357] = {.lex_state = 131}, - [3358] = {.lex_state = 131}, + [3353] = {.lex_state = 131}, + [3354] = {.lex_state = 132}, + [3355] = {.lex_state = 131}, + [3356] = {.lex_state = 4}, + [3357] = {.lex_state = 132}, + [3358] = {.lex_state = 132}, [3359] = {.lex_state = 132}, - [3360] = {.lex_state = 131}, + [3360] = {.lex_state = 132}, [3361] = {.lex_state = 131}, [3362] = {.lex_state = 131}, [3363] = {.lex_state = 132}, - [3364] = {.lex_state = 131}, + [3364] = {.lex_state = 132}, [3365] = {.lex_state = 131}, - [3366] = {.lex_state = 132}, + [3366] = {.lex_state = 131}, [3367] = {.lex_state = 132}, [3368] = {.lex_state = 131}, - [3369] = {.lex_state = 131}, + [3369] = {.lex_state = 132}, [3370] = {.lex_state = 132}, - [3371] = {.lex_state = 131}, + [3371] = {.lex_state = 132}, [3372] = {.lex_state = 132}, - [3373] = {.lex_state = 131}, + [3373] = {.lex_state = 5, .external_lex_state = 4}, [3374] = {.lex_state = 132}, [3375] = {.lex_state = 132}, [3376] = {.lex_state = 131}, - [3377] = {.lex_state = 132}, + [3377] = {.lex_state = 4}, [3378] = {.lex_state = 131}, - [3379] = {.lex_state = 4}, - [3380] = {.lex_state = 131}, - [3381] = {.lex_state = 132}, + [3379] = {.lex_state = 132}, + [3380] = {.lex_state = 132}, + [3381] = {.lex_state = 131}, [3382] = {.lex_state = 132}, - [3383] = {.lex_state = 131}, - [3384] = {.lex_state = 131}, + [3383] = {.lex_state = 132}, + [3384] = {.lex_state = 132}, [3385] = {.lex_state = 132}, - [3386] = {.lex_state = 131}, + [3386] = {.lex_state = 4}, [3387] = {.lex_state = 132}, - [3388] = {.lex_state = 132}, + [3388] = {.lex_state = 131}, [3389] = {.lex_state = 132}, - [3390] = {.lex_state = 132}, - [3391] = {.lex_state = 5}, - [3392] = {.lex_state = 4}, + [3390] = {.lex_state = 131}, + [3391] = {.lex_state = 132}, + [3392] = {.lex_state = 132}, [3393] = {.lex_state = 132}, - [3394] = {.lex_state = 131}, - [3395] = {.lex_state = 131}, - [3396] = {.lex_state = 132}, + [3394] = {.lex_state = 132}, + [3395] = {.lex_state = 4}, + [3396] = {.lex_state = 131}, [3397] = {.lex_state = 131}, - [3398] = {.lex_state = 132}, + [3398] = {.lex_state = 5}, [3399] = {.lex_state = 132}, [3400] = {.lex_state = 132}, [3401] = {.lex_state = 132}, - [3402] = {.lex_state = 4}, - [3403] = {.lex_state = 132}, - [3404] = {.lex_state = 132}, + [3402] = {.lex_state = 132}, + [3403] = {.lex_state = 4}, + [3404] = {.lex_state = 131}, [3405] = {.lex_state = 132}, [3406] = {.lex_state = 132}, - [3407] = {.lex_state = 4}, - [3408] = {.lex_state = 5}, + [3407] = {.lex_state = 131}, + [3408] = {.lex_state = 131}, [3409] = {.lex_state = 132}, - [3410] = {.lex_state = 132}, - [3411] = {.lex_state = 132}, - [3412] = {.lex_state = 132}, - [3413] = {.lex_state = 4}, + [3410] = {.lex_state = 131}, + [3411] = {.lex_state = 131}, + [3412] = {.lex_state = 131}, + [3413] = {.lex_state = 131}, [3414] = {.lex_state = 131}, [3415] = {.lex_state = 131}, - [3416] = {.lex_state = 132}, + [3416] = {.lex_state = 131}, [3417] = {.lex_state = 131}, [3418] = {.lex_state = 131}, - [3419] = {.lex_state = 132}, + [3419] = {.lex_state = 131}, [3420] = {.lex_state = 131}, [3421] = {.lex_state = 131}, - [3422] = {.lex_state = 132}, - [3423] = {.lex_state = 132}, + [3422] = {.lex_state = 131}, + [3423] = {.lex_state = 131}, [3424] = {.lex_state = 131}, - [3425] = {.lex_state = 132}, + [3425] = {.lex_state = 131}, [3426] = {.lex_state = 132}, - [3427] = {.lex_state = 131}, - [3428] = {.lex_state = 131}, + [3427] = {.lex_state = 132}, + [3428] = {.lex_state = 132}, [3429] = {.lex_state = 131}, [3430] = {.lex_state = 131}, - [3431] = {.lex_state = 131}, + [3431] = {.lex_state = 5}, [3432] = {.lex_state = 131}, [3433] = {.lex_state = 131}, [3434] = {.lex_state = 131}, - [3435] = {.lex_state = 131}, - [3436] = {.lex_state = 132}, - [3437] = {.lex_state = 131}, + [3435] = {.lex_state = 132}, + [3436] = {.lex_state = 131}, + [3437] = {.lex_state = 132}, [3438] = {.lex_state = 131}, - [3439] = {.lex_state = 5, .external_lex_state = 4}, - [3440] = {.lex_state = 132}, - [3441] = {.lex_state = 132}, - [3442] = {.lex_state = 131}, - [3443] = {.lex_state = 131}, + [3439] = {.lex_state = 131}, + [3440] = {.lex_state = 131}, + [3441] = {.lex_state = 131}, + [3442] = {.lex_state = 132}, + [3443] = {.lex_state = 132}, [3444] = {.lex_state = 131}, - [3445] = {.lex_state = 132}, - [3446] = {.lex_state = 131}, + [3445] = {.lex_state = 131}, + [3446] = {.lex_state = 5}, [3447] = {.lex_state = 131}, [3448] = {.lex_state = 131}, [3449] = {.lex_state = 131}, [3450] = {.lex_state = 131}, [3451] = {.lex_state = 131}, - [3452] = {.lex_state = 131}, + [3452] = {.lex_state = 132}, [3453] = {.lex_state = 131}, - [3454] = {.lex_state = 132}, - [3455] = {.lex_state = 131}, + [3454] = {.lex_state = 131}, + [3455] = {.lex_state = 132}, [3456] = {.lex_state = 131}, [3457] = {.lex_state = 131}, - [3458] = {.lex_state = 5}, - [3459] = {.lex_state = 132}, + [3458] = {.lex_state = 131}, + [3459] = {.lex_state = 131}, [3460] = {.lex_state = 131}, - [3461] = {.lex_state = 4}, + [3461] = {.lex_state = 131}, [3462] = {.lex_state = 131}, - [3463] = {.lex_state = 131}, + [3463] = {.lex_state = 132}, [3464] = {.lex_state = 131}, [3465] = {.lex_state = 131}, [3466] = {.lex_state = 131}, - [3467] = {.lex_state = 132}, - [3468] = {.lex_state = 131}, - [3469] = {.lex_state = 131}, + [3467] = {.lex_state = 131}, + [3468] = {.lex_state = 4}, + [3469] = {.lex_state = 132}, [3470] = {.lex_state = 131}, [3471] = {.lex_state = 131}, [3472] = {.lex_state = 131}, [3473] = {.lex_state = 131}, [3474] = {.lex_state = 131}, - [3475] = {.lex_state = 132}, + [3475] = {.lex_state = 131}, [3476] = {.lex_state = 132}, - [3477] = {.lex_state = 131}, - [3478] = {.lex_state = 132}, - [3479] = {.lex_state = 131}, - [3480] = {.lex_state = 131}, + [3477] = {.lex_state = 132}, + [3478] = {.lex_state = 131}, + [3479] = {.lex_state = 132}, + [3480] = {.lex_state = 132}, [3481] = {.lex_state = 131}, - [3482] = {.lex_state = 132}, - [3483] = {.lex_state = 132}, - [3484] = {.lex_state = 131}, + [3482] = {.lex_state = 131}, + [3483] = {.lex_state = 131}, + [3484] = {.lex_state = 4}, [3485] = {.lex_state = 131}, [3486] = {.lex_state = 131}, [3487] = {.lex_state = 131}, - [3488] = {.lex_state = 132}, - [3489] = {.lex_state = 132}, + [3488] = {.lex_state = 131}, + [3489] = {.lex_state = 131}, [3490] = {.lex_state = 131}, - [3491] = {.lex_state = 132}, - [3492] = {.lex_state = 131}, - [3493] = {.lex_state = 131}, + [3491] = {.lex_state = 131}, + [3492] = {.lex_state = 132}, + [3493] = {.lex_state = 132}, [3494] = {.lex_state = 131}, [3495] = {.lex_state = 131}, [3496] = {.lex_state = 131}, [3497] = {.lex_state = 131}, - [3498] = {.lex_state = 132}, + [3498] = {.lex_state = 131}, [3499] = {.lex_state = 132}, - [3500] = {.lex_state = 4}, + [3500] = {.lex_state = 131}, [3501] = {.lex_state = 132}, - [3502] = {.lex_state = 131}, - [3503] = {.lex_state = 131}, + [3502] = {.lex_state = 4}, + [3503] = {.lex_state = 132}, [3504] = {.lex_state = 131}, [3505] = {.lex_state = 131}, [3506] = {.lex_state = 132}, [3507] = {.lex_state = 131}, - [3508] = {.lex_state = 5}, - [3509] = {.lex_state = 131}, + [3508] = {.lex_state = 132}, + [3509] = {.lex_state = 4}, [3510] = {.lex_state = 4}, - [3511] = {.lex_state = 132}, - [3512] = {.lex_state = 131}, - [3513] = {.lex_state = 131}, - [3514] = {.lex_state = 131}, - [3515] = {.lex_state = 131}, - [3516] = {.lex_state = 131}, + [3511] = {.lex_state = 131}, + [3512] = {.lex_state = 4}, + [3513] = {.lex_state = 4}, + [3514] = {.lex_state = 4}, + [3515] = {.lex_state = 132}, + [3516] = {.lex_state = 132}, [3517] = {.lex_state = 131}, [3518] = {.lex_state = 132}, - [3519] = {.lex_state = 131}, - [3520] = {.lex_state = 4}, - [3521] = {.lex_state = 131}, - [3522] = {.lex_state = 131}, - [3523] = {.lex_state = 132}, - [3524] = {.lex_state = 4}, - [3525] = {.lex_state = 5}, + [3519] = {.lex_state = 132}, + [3520] = {.lex_state = 132}, + [3521] = {.lex_state = 132}, + [3522] = {.lex_state = 132}, + [3523] = {.lex_state = 131}, + [3524] = {.lex_state = 132}, + [3525] = {.lex_state = 4}, [3526] = {.lex_state = 4}, - [3527] = {.lex_state = 5, .external_lex_state = 4}, - [3528] = {.lex_state = 132}, - [3529] = {.lex_state = 4}, - [3530] = {.lex_state = 4}, + [3527] = {.lex_state = 131}, + [3528] = {.lex_state = 131}, + [3529] = {.lex_state = 132}, + [3530] = {.lex_state = 132}, [3531] = {.lex_state = 132}, [3532] = {.lex_state = 132}, - [3533] = {.lex_state = 4}, - [3534] = {.lex_state = 131}, - [3535] = {.lex_state = 4}, + [3533] = {.lex_state = 132}, + [3534] = {.lex_state = 5, .external_lex_state = 4}, + [3535] = {.lex_state = 5}, [3536] = {.lex_state = 132}, [3537] = {.lex_state = 132}, [3538] = {.lex_state = 132}, - [3539] = {.lex_state = 132}, - [3540] = {.lex_state = 132}, + [3539] = {.lex_state = 5}, + [3540] = {.lex_state = 4}, [3541] = {.lex_state = 132}, - [3542] = {.lex_state = 131}, - [3543] = {.lex_state = 131}, + [3542] = {.lex_state = 10}, + [3543] = {.lex_state = 4}, [3544] = {.lex_state = 132}, [3545] = {.lex_state = 132}, - [3546] = {.lex_state = 132}, + [3546] = {.lex_state = 10}, [3547] = {.lex_state = 132}, - [3548] = {.lex_state = 5}, - [3549] = {.lex_state = 132}, + [3548] = {.lex_state = 131}, + [3549] = {.lex_state = 4}, [3550] = {.lex_state = 132}, - [3551] = {.lex_state = 132}, - [3552] = {.lex_state = 4}, - [3553] = {.lex_state = 132}, - [3554] = {.lex_state = 4}, - [3555] = {.lex_state = 132}, - [3556] = {.lex_state = 4}, - [3557] = {.lex_state = 4}, - [3558] = {.lex_state = 131}, - [3559] = {.lex_state = 132}, - [3560] = {.lex_state = 132}, - [3561] = {.lex_state = 131}, + [3551] = {.lex_state = 131}, + [3552] = {.lex_state = 132}, + [3553] = {.lex_state = 131}, + [3554] = {.lex_state = 131}, + [3555] = {.lex_state = 131}, + [3556] = {.lex_state = 132}, + [3557] = {.lex_state = 10}, + [3558] = {.lex_state = 132}, + [3559] = {.lex_state = 131}, + [3560] = {.lex_state = 131}, + [3561] = {.lex_state = 132}, [3562] = {.lex_state = 132}, - [3563] = {.lex_state = 132}, - [3564] = {.lex_state = 132}, - [3565] = {.lex_state = 10}, + [3563] = {.lex_state = 131}, + [3564] = {.lex_state = 131}, + [3565] = {.lex_state = 131}, [3566] = {.lex_state = 131}, - [3567] = {.lex_state = 131}, - [3568] = {.lex_state = 131}, - [3569] = {.lex_state = 10}, - [3570] = {.lex_state = 10}, + [3567] = {.lex_state = 10}, + [3568] = {.lex_state = 132}, + [3569] = {.lex_state = 132}, + [3570] = {.lex_state = 132}, [3571] = {.lex_state = 131}, - [3572] = {.lex_state = 132}, - [3573] = {.lex_state = 10}, - [3574] = {.lex_state = 131}, + [3572] = {.lex_state = 10}, + [3573] = {.lex_state = 132}, + [3574] = {.lex_state = 132}, [3575] = {.lex_state = 131}, - [3576] = {.lex_state = 132}, + [3576] = {.lex_state = 131}, [3577] = {.lex_state = 131}, [3578] = {.lex_state = 132}, - [3579] = {.lex_state = 131}, + [3579] = {.lex_state = 10}, [3580] = {.lex_state = 132}, - [3581] = {.lex_state = 132}, + [3581] = {.lex_state = 131}, [3582] = {.lex_state = 132}, - [3583] = {.lex_state = 10}, - [3584] = {.lex_state = 132}, - [3585] = {.lex_state = 131}, + [3583] = {.lex_state = 131}, + [3584] = {.lex_state = 131}, + [3585] = {.lex_state = 132}, [3586] = {.lex_state = 132}, [3587] = {.lex_state = 132}, - [3588] = {.lex_state = 4}, - [3589] = {.lex_state = 132}, - [3590] = {.lex_state = 131}, - [3591] = {.lex_state = 131}, - [3592] = {.lex_state = 131}, - [3593] = {.lex_state = 10}, + [3588] = {.lex_state = 132}, + [3589] = {.lex_state = 131}, + [3590] = {.lex_state = 10}, + [3591] = {.lex_state = 132}, + [3592] = {.lex_state = 132}, + [3593] = {.lex_state = 132}, [3594] = {.lex_state = 132}, - [3595] = {.lex_state = 4}, - [3596] = {.lex_state = 132}, - [3597] = {.lex_state = 131}, - [3598] = {.lex_state = 131}, - [3599] = {.lex_state = 132}, - [3600] = {.lex_state = 10}, - [3601] = {.lex_state = 10}, - [3602] = {.lex_state = 131}, + [3595] = {.lex_state = 10}, + [3596] = {.lex_state = 10}, + [3597] = {.lex_state = 132}, + [3598] = {.lex_state = 4}, + [3599] = {.lex_state = 131}, + [3600] = {.lex_state = 4}, + [3601] = {.lex_state = 132}, + [3602] = {.lex_state = 4}, [3603] = {.lex_state = 132}, - [3604] = {.lex_state = 131}, - [3605] = {.lex_state = 131}, - [3606] = {.lex_state = 10}, + [3604] = {.lex_state = 132}, + [3605] = {.lex_state = 4}, + [3606] = {.lex_state = 131}, [3607] = {.lex_state = 131}, - [3608] = {.lex_state = 10}, - [3609] = {.lex_state = 132}, - [3610] = {.lex_state = 4}, - [3611] = {.lex_state = 132}, + [3608] = {.lex_state = 131}, + [3609] = {.lex_state = 10}, + [3610] = {.lex_state = 132}, + [3611] = {.lex_state = 131}, [3612] = {.lex_state = 132}, - [3613] = {.lex_state = 132}, + [3613] = {.lex_state = 131}, [3614] = {.lex_state = 10}, - [3615] = {.lex_state = 132}, + [3615] = {.lex_state = 10}, [3616] = {.lex_state = 4}, - [3617] = {.lex_state = 10}, - [3618] = {.lex_state = 131}, + [3617] = {.lex_state = 4}, + [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 = 131}, + [3623] = {.lex_state = 131}, + [3624] = {.lex_state = 132}, [3625] = {.lex_state = 132}, [3626] = {.lex_state = 131}, [3627] = {.lex_state = 132}, [3628] = {.lex_state = 132}, - [3629] = {.lex_state = 131}, - [3630] = {.lex_state = 4}, - [3631] = {.lex_state = 131}, - [3632] = {.lex_state = 4}, - [3633] = {.lex_state = 132}, - [3634] = {.lex_state = 132}, + [3629] = {.lex_state = 132}, + [3630] = {.lex_state = 132}, + [3631] = {.lex_state = 4}, + [3632] = {.lex_state = 132}, + [3633] = {.lex_state = 131}, + [3634] = {.lex_state = 4}, [3635] = {.lex_state = 10}, - [3636] = {.lex_state = 131}, - [3637] = {.lex_state = 4}, + [3636] = {.lex_state = 132}, + [3637] = {.lex_state = 10}, [3638] = {.lex_state = 131}, [3639] = {.lex_state = 132}, - [3640] = {.lex_state = 132}, - [3641] = {.lex_state = 132}, - [3642] = {.lex_state = 132}, - [3643] = {.lex_state = 132}, - [3644] = {.lex_state = 132}, - [3645] = {.lex_state = 132}, + [3640] = {.lex_state = 4}, + [3641] = {.lex_state = 7}, + [3642] = {.lex_state = 131}, + [3643] = {.lex_state = 4}, + [3644] = {.lex_state = 131}, + [3645] = {.lex_state = 131}, [3646] = {.lex_state = 132}, - [3647] = {.lex_state = 132}, + [3647] = {.lex_state = 131}, [3648] = {.lex_state = 131}, [3649] = {.lex_state = 131}, - [3650] = {.lex_state = 7}, + [3650] = {.lex_state = 131}, [3651] = {.lex_state = 131}, - [3652] = {.lex_state = 132}, - [3653] = {.lex_state = 4}, - [3654] = {.lex_state = 131}, - [3655] = {.lex_state = 131}, - [3656] = {.lex_state = 4}, + [3652] = {.lex_state = 131}, + [3653] = {.lex_state = 131}, + [3654] = {.lex_state = 10}, + [3655] = {.lex_state = 132}, + [3656] = {.lex_state = 131}, [3657] = {.lex_state = 131}, [3658] = {.lex_state = 131}, - [3659] = {.lex_state = 131}, - [3660] = {.lex_state = 131}, - [3661] = {.lex_state = 131}, + [3659] = {.lex_state = 132}, + [3660] = {.lex_state = 5}, + [3661] = {.lex_state = 4}, [3662] = {.lex_state = 131}, - [3663] = {.lex_state = 131}, - [3664] = {.lex_state = 5}, - [3665] = {.lex_state = 132}, - [3666] = {.lex_state = 10}, - [3667] = {.lex_state = 131}, - [3668] = {.lex_state = 132}, + [3663] = {.lex_state = 132}, + [3664] = {.lex_state = 131}, + [3665] = {.lex_state = 131}, + [3666] = {.lex_state = 131}, + [3667] = {.lex_state = 132}, + [3668] = {.lex_state = 131}, [3669] = {.lex_state = 131}, - [3670] = {.lex_state = 132}, + [3670] = {.lex_state = 10}, [3671] = {.lex_state = 131}, [3672] = {.lex_state = 131}, - [3673] = {.lex_state = 131}, + [3673] = {.lex_state = 4}, [3674] = {.lex_state = 131}, [3675] = {.lex_state = 131}, - [3676] = {.lex_state = 131}, - [3677] = {.lex_state = 4}, + [3676] = {.lex_state = 132}, + [3677] = {.lex_state = 131}, [3678] = {.lex_state = 131}, [3679] = {.lex_state = 131}, [3680] = {.lex_state = 131}, - [3681] = {.lex_state = 4}, + [3681] = {.lex_state = 131}, [3682] = {.lex_state = 131}, - [3683] = {.lex_state = 131}, + [3683] = {.lex_state = 4}, [3684] = {.lex_state = 131}, - [3685] = {.lex_state = 132}, + [3685] = {.lex_state = 131}, [3686] = {.lex_state = 131}, - [3687] = {.lex_state = 4}, + [3687] = {.lex_state = 131}, [3688] = {.lex_state = 131}, [3689] = {.lex_state = 131}, [3690] = {.lex_state = 132}, - [3691] = {.lex_state = 10}, + [3691] = {.lex_state = 131}, [3692] = {.lex_state = 131}, [3693] = {.lex_state = 131}, - [3694] = {.lex_state = 132}, + [3694] = {.lex_state = 131}, [3695] = {.lex_state = 132}, [3696] = {.lex_state = 131}, [3697] = {.lex_state = 131}, [3698] = {.lex_state = 131}, [3699] = {.lex_state = 131}, - [3700] = {.lex_state = 131}, - [3701] = {.lex_state = 131}, + [3700] = {.lex_state = 132}, + [3701] = {.lex_state = 132}, [3702] = {.lex_state = 131}, - [3703] = {.lex_state = 131}, + [3703] = {.lex_state = 132}, [3704] = {.lex_state = 131}, - [3705] = {.lex_state = 131}, - [3706] = {.lex_state = 131}, + [3705] = {.lex_state = 132}, + [3706] = {.lex_state = 132}, [3707] = {.lex_state = 131}, [3708] = {.lex_state = 131}, [3709] = {.lex_state = 131}, - [3710] = {.lex_state = 131}, + [3710] = {.lex_state = 132}, [3711] = {.lex_state = 131}, - [3712] = {.lex_state = 132}, - [3713] = {.lex_state = 131}, + [3712] = {.lex_state = 131}, + [3713] = {.lex_state = 132}, [3714] = {.lex_state = 131}, [3715] = {.lex_state = 131}, [3716] = {.lex_state = 131}, [3717] = {.lex_state = 131}, [3718] = {.lex_state = 131}, - [3719] = {.lex_state = 132}, + [3719] = {.lex_state = 131}, [3720] = {.lex_state = 131}, - [3721] = {.lex_state = 131}, + [3721] = {.lex_state = 132}, [3722] = {.lex_state = 131}, - [3723] = {.lex_state = 131}, + [3723] = {.lex_state = 132}, [3724] = {.lex_state = 131}, [3725] = {.lex_state = 131}, [3726] = {.lex_state = 131}, - [3727] = {.lex_state = 132}, + [3727] = {.lex_state = 131}, [3728] = {.lex_state = 131}, - [3729] = {.lex_state = 131}, - [3730] = {.lex_state = 131}, + [3729] = {.lex_state = 132}, + [3730] = {.lex_state = 132}, [3731] = {.lex_state = 131}, [3732] = {.lex_state = 131}, [3733] = {.lex_state = 131}, - [3734] = {.lex_state = 131}, - [3735] = {.lex_state = 131}, - [3736] = {.lex_state = 132}, - [3737] = {.lex_state = 131}, + [3734] = {.lex_state = 132}, + [3735] = {.lex_state = 132}, + [3736] = {.lex_state = 131}, + [3737] = {.lex_state = 132}, [3738] = {.lex_state = 132}, [3739] = {.lex_state = 132}, [3740] = {.lex_state = 131}, - [3741] = {.lex_state = 131}, - [3742] = {.lex_state = 131}, - [3743] = {.lex_state = 131}, - [3744] = {.lex_state = 131}, + [3741] = {.lex_state = 6}, + [3742] = {.lex_state = 132}, + [3743] = {.lex_state = 132}, + [3744] = {.lex_state = 132}, [3745] = {.lex_state = 131}, - [3746] = {.lex_state = 131}, - [3747] = {.lex_state = 131}, - [3748] = {.lex_state = 131}, + [3746] = {.lex_state = 132}, + [3747] = {.lex_state = 132}, + [3748] = {.lex_state = 132}, [3749] = {.lex_state = 131}, - [3750] = {.lex_state = 131}, + [3750] = {.lex_state = 132}, [3751] = {.lex_state = 131}, [3752] = {.lex_state = 131}, [3753] = {.lex_state = 131}, - [3754] = {.lex_state = 131}, - [3755] = {.lex_state = 131}, + [3754] = {.lex_state = 132}, + [3755] = {.lex_state = 132}, [3756] = {.lex_state = 132}, - [3757] = {.lex_state = 132}, - [3758] = {.lex_state = 132}, + [3757] = {.lex_state = 131}, + [3758] = {.lex_state = 131}, [3759] = {.lex_state = 132}, [3760] = {.lex_state = 132}, [3761] = {.lex_state = 132}, @@ -21278,84 +21201,84 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [3765] = {.lex_state = 131}, [3766] = {.lex_state = 131}, [3767] = {.lex_state = 131}, - [3768] = {.lex_state = 131}, + [3768] = {.lex_state = 132}, [3769] = {.lex_state = 131}, - [3770] = {.lex_state = 131}, + [3770] = {.lex_state = 132}, [3771] = {.lex_state = 131}, - [3772] = {.lex_state = 131}, - [3773] = {.lex_state = 132}, + [3772] = {.lex_state = 132}, + [3773] = {.lex_state = 131}, [3774] = {.lex_state = 131}, [3775] = {.lex_state = 131}, - [3776] = {.lex_state = 132}, + [3776] = {.lex_state = 131}, [3777] = {.lex_state = 131}, [3778] = {.lex_state = 132}, - [3779] = {.lex_state = 131}, + [3779] = {.lex_state = 132}, [3780] = {.lex_state = 131}, [3781] = {.lex_state = 131}, - [3782] = {.lex_state = 131}, - [3783] = {.lex_state = 132}, + [3782] = {.lex_state = 132}, + [3783] = {.lex_state = 131}, [3784] = {.lex_state = 131}, - [3785] = {.lex_state = 131}, + [3785] = {.lex_state = 132}, [3786] = {.lex_state = 131}, [3787] = {.lex_state = 131}, - [3788] = {.lex_state = 131}, - [3789] = {.lex_state = 131}, + [3788] = {.lex_state = 132}, + [3789] = {.lex_state = 132}, [3790] = {.lex_state = 131}, [3791] = {.lex_state = 131}, - [3792] = {.lex_state = 131}, - [3793] = {.lex_state = 132}, + [3792] = {.lex_state = 132}, + [3793] = {.lex_state = 131}, [3794] = {.lex_state = 131}, - [3795] = {.lex_state = 131}, + [3795] = {.lex_state = 132}, [3796] = {.lex_state = 131}, - [3797] = {.lex_state = 131}, - [3798] = {.lex_state = 131}, - [3799] = {.lex_state = 132}, + [3797] = {.lex_state = 132}, + [3798] = {.lex_state = 132}, + [3799] = {.lex_state = 131}, [3800] = {.lex_state = 132}, - [3801] = {.lex_state = 132}, - [3802] = {.lex_state = 132}, + [3801] = {.lex_state = 131}, + [3802] = {.lex_state = 131}, [3803] = {.lex_state = 131}, - [3804] = {.lex_state = 131}, + [3804] = {.lex_state = 132}, [3805] = {.lex_state = 132}, [3806] = {.lex_state = 131}, [3807] = {.lex_state = 131}, - [3808] = {.lex_state = 132}, + [3808] = {.lex_state = 131}, [3809] = {.lex_state = 132}, - [3810] = {.lex_state = 132}, + [3810] = {.lex_state = 131}, [3811] = {.lex_state = 131}, - [3812] = {.lex_state = 132}, + [3812] = {.lex_state = 131}, [3813] = {.lex_state = 132}, - [3814] = {.lex_state = 132}, - [3815] = {.lex_state = 132}, + [3814] = {.lex_state = 131}, + [3815] = {.lex_state = 131}, [3816] = {.lex_state = 131}, [3817] = {.lex_state = 132}, - [3818] = {.lex_state = 132}, - [3819] = {.lex_state = 132}, + [3818] = {.lex_state = 131}, + [3819] = {.lex_state = 131}, [3820] = {.lex_state = 132}, [3821] = {.lex_state = 132}, [3822] = {.lex_state = 132}, [3823] = {.lex_state = 132}, - [3824] = {.lex_state = 132}, + [3824] = {.lex_state = 131}, [3825] = {.lex_state = 132}, [3826] = {.lex_state = 131}, - [3827] = {.lex_state = 132}, + [3827] = {.lex_state = 131}, [3828] = {.lex_state = 131}, [3829] = {.lex_state = 131}, - [3830] = {.lex_state = 132}, - [3831] = {.lex_state = 132}, - [3832] = {.lex_state = 132}, + [3830] = {.lex_state = 131}, + [3831] = {.lex_state = 131}, + [3832] = {.lex_state = 131}, [3833] = {.lex_state = 132}, [3834] = {.lex_state = 131}, - [3835] = {.lex_state = 131}, - [3836] = {.lex_state = 132}, + [3835] = {.lex_state = 132}, + [3836] = {.lex_state = 131}, [3837] = {.lex_state = 131}, - [3838] = {.lex_state = 131}, + [3838] = {.lex_state = 132}, [3839] = {.lex_state = 131}, [3840] = {.lex_state = 131}, [3841] = {.lex_state = 131}, - [3842] = {.lex_state = 131}, + [3842] = {.lex_state = 132}, [3843] = {.lex_state = 131}, - [3844] = {.lex_state = 6}, - [3845] = {.lex_state = 131}, + [3844] = {.lex_state = 131}, + [3845] = {.lex_state = 132}, [3846] = {.lex_state = 131}, [3847] = {.lex_state = 131}, [3848] = {.lex_state = 131}, @@ -21363,102 +21286,102 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [3850] = {.lex_state = 131}, [3851] = {.lex_state = 131}, [3852] = {.lex_state = 131}, - [3853] = {.lex_state = 131}, - [3854] = {.lex_state = 132}, + [3853] = {.lex_state = 132}, + [3854] = {.lex_state = 131}, [3855] = {.lex_state = 131}, - [3856] = {.lex_state = 131}, + [3856] = {.lex_state = 132}, [3857] = {.lex_state = 131}, - [3858] = {.lex_state = 132}, + [3858] = {.lex_state = 131}, [3859] = {.lex_state = 131}, - [3860] = {.lex_state = 132}, + [3860] = {.lex_state = 131}, [3861] = {.lex_state = 132}, - [3862] = {.lex_state = 132}, - [3863] = {.lex_state = 132}, - [3864] = {.lex_state = 132}, - [3865] = {.lex_state = 132}, - [3866] = {.lex_state = 132}, - [3867] = {.lex_state = 132}, - [3868] = {.lex_state = 132}, + [3862] = {.lex_state = 131}, + [3863] = {.lex_state = 131}, + [3864] = {.lex_state = 131}, + [3865] = {.lex_state = 131}, + [3866] = {.lex_state = 131}, + [3867] = {.lex_state = 131}, + [3868] = {.lex_state = 131}, [3869] = {.lex_state = 132}, - [3870] = {.lex_state = 132}, - [3871] = {.lex_state = 132}, - [3872] = {.lex_state = 132}, - [3873] = {.lex_state = 131}, - [3874] = {.lex_state = 132}, + [3870] = {.lex_state = 131}, + [3871] = {.lex_state = 131}, + [3872] = {.lex_state = 131}, + [3873] = {.lex_state = 132}, + [3874] = {.lex_state = 131}, [3875] = {.lex_state = 131}, - [3876] = {.lex_state = 132}, + [3876] = {.lex_state = 131}, [3877] = {.lex_state = 131}, - [3878] = {.lex_state = 132}, - [3879] = {.lex_state = 132}, + [3878] = {.lex_state = 131}, + [3879] = {.lex_state = 131}, [3880] = {.lex_state = 131}, [3881] = {.lex_state = 131}, - [3882] = {.lex_state = 132}, - [3883] = {.lex_state = 132}, - [3884] = {.lex_state = 131}, + [3882] = {.lex_state = 131}, + [3883] = {.lex_state = 131}, + [3884] = {.lex_state = 132}, [3885] = {.lex_state = 131}, [3886] = {.lex_state = 131}, - [3887] = {.lex_state = 131}, - [3888] = {.lex_state = 131}, + [3887] = {.lex_state = 132}, + [3888] = {.lex_state = 132}, [3889] = {.lex_state = 131}, - [3890] = {.lex_state = 131}, - [3891] = {.lex_state = 132}, - [3892] = {.lex_state = 131}, - [3893] = {.lex_state = 131}, + [3890] = {.lex_state = 132}, + [3891] = {.lex_state = 131}, + [3892] = {.lex_state = 132}, + [3893] = {.lex_state = 132}, [3894] = {.lex_state = 131}, - [3895] = {.lex_state = 131}, - [3896] = {.lex_state = 131}, - [3897] = {.lex_state = 131}, + [3895] = {.lex_state = 132}, + [3896] = {.lex_state = 132}, + [3897] = {.lex_state = 17}, [3898] = {.lex_state = 132}, - [3899] = {.lex_state = 131}, + [3899] = {.lex_state = 132}, [3900] = {.lex_state = 132}, [3901] = {.lex_state = 132}, - [3902] = {.lex_state = 132}, + [3902] = {.lex_state = 131}, [3903] = {.lex_state = 132}, [3904] = {.lex_state = 132}, [3905] = {.lex_state = 132}, - [3906] = {.lex_state = 132}, - [3907] = {.lex_state = 131}, - [3908] = {.lex_state = 132}, - [3909] = {.lex_state = 132}, + [3906] = {.lex_state = 131}, + [3907] = {.lex_state = 132}, + [3908] = {.lex_state = 131}, + [3909] = {.lex_state = 131}, [3910] = {.lex_state = 131}, - [3911] = {.lex_state = 131}, + [3911] = {.lex_state = 132}, [3912] = {.lex_state = 131}, [3913] = {.lex_state = 131}, [3914] = {.lex_state = 131}, - [3915] = {.lex_state = 131}, + [3915] = {.lex_state = 132}, [3916] = {.lex_state = 131}, [3917] = {.lex_state = 131}, [3918] = {.lex_state = 131}, - [3919] = {.lex_state = 131}, - [3920] = {.lex_state = 131}, + [3919] = {.lex_state = 132}, + [3920] = {.lex_state = 132}, [3921] = {.lex_state = 131}, - [3922] = {.lex_state = 132}, + [3922] = {.lex_state = 131}, [3923] = {.lex_state = 131}, - [3924] = {.lex_state = 131}, - [3925] = {.lex_state = 132}, - [3926] = {.lex_state = 132}, - [3927] = {.lex_state = 131}, - [3928] = {.lex_state = 131}, - [3929] = {.lex_state = 132}, - [3930] = {.lex_state = 132}, + [3924] = {.lex_state = 132}, + [3925] = {.lex_state = 131}, + [3926] = {.lex_state = 131}, + [3927] = {.lex_state = 132}, + [3928] = {.lex_state = 132}, + [3929] = {.lex_state = 131}, + [3930] = {.lex_state = 131}, [3931] = {.lex_state = 132}, [3932] = {.lex_state = 132}, [3933] = {.lex_state = 132}, [3934] = {.lex_state = 132}, [3935] = {.lex_state = 132}, - [3936] = {.lex_state = 132}, + [3936] = {.lex_state = 131}, [3937] = {.lex_state = 132}, [3938] = {.lex_state = 132}, - [3939] = {.lex_state = 132}, - [3940] = {.lex_state = 132}, + [3939] = {.lex_state = 131}, + [3940] = {.lex_state = 131}, [3941] = {.lex_state = 132}, [3942] = {.lex_state = 132}, - [3943] = {.lex_state = 132}, + [3943] = {.lex_state = 131}, [3944] = {.lex_state = 132}, - [3945] = {.lex_state = 132}, + [3945] = {.lex_state = 131}, [3946] = {.lex_state = 132}, [3947] = {.lex_state = 132}, - [3948] = {.lex_state = 132}, + [3948] = {.lex_state = 131}, [3949] = {.lex_state = 132}, [3950] = {.lex_state = 132}, [3951] = {.lex_state = 132}, @@ -21468,145 +21391,145 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [3955] = {.lex_state = 132}, [3956] = {.lex_state = 132}, [3957] = {.lex_state = 132}, - [3958] = {.lex_state = 132}, + [3958] = {.lex_state = 131}, [3959] = {.lex_state = 132}, [3960] = {.lex_state = 132}, - [3961] = {.lex_state = 132}, - [3962] = {.lex_state = 132}, + [3961] = {.lex_state = 131}, + [3962] = {.lex_state = 131}, [3963] = {.lex_state = 132}, - [3964] = {.lex_state = 132}, - [3965] = {.lex_state = 132}, + [3964] = {.lex_state = 131}, + [3965] = {.lex_state = 131}, [3966] = {.lex_state = 131}, [3967] = {.lex_state = 132}, - [3968] = {.lex_state = 132}, - [3969] = {.lex_state = 131}, - [3970] = {.lex_state = 132}, - [3971] = {.lex_state = 132}, - [3972] = {.lex_state = 132}, + [3968] = {.lex_state = 131}, + [3969] = {.lex_state = 132}, + [3970] = {.lex_state = 131}, + [3971] = {.lex_state = 131}, + [3972] = {.lex_state = 131}, [3973] = {.lex_state = 132}, [3974] = {.lex_state = 132}, - [3975] = {.lex_state = 132}, + [3975] = {.lex_state = 131}, [3976] = {.lex_state = 132}, [3977] = {.lex_state = 131}, - [3978] = {.lex_state = 132}, - [3979] = {.lex_state = 131}, + [3978] = {.lex_state = 131}, + [3979] = {.lex_state = 132}, [3980] = {.lex_state = 132}, - [3981] = {.lex_state = 131}, - [3982] = {.lex_state = 132}, + [3981] = {.lex_state = 132}, + [3982] = {.lex_state = 131}, [3983] = {.lex_state = 132}, [3984] = {.lex_state = 132}, [3985] = {.lex_state = 132}, - [3986] = {.lex_state = 132}, + [3986] = {.lex_state = 10}, [3987] = {.lex_state = 132}, - [3988] = {.lex_state = 132}, - [3989] = {.lex_state = 131}, - [3990] = {.lex_state = 131}, - [3991] = {.lex_state = 17}, + [3988] = {.lex_state = 131}, + [3989] = {.lex_state = 132}, + [3990] = {.lex_state = 132}, + [3991] = {.lex_state = 132}, [3992] = {.lex_state = 132}, - [3993] = {.lex_state = 131}, + [3993] = {.lex_state = 132}, [3994] = {.lex_state = 132}, [3995] = {.lex_state = 131}, - [3996] = {.lex_state = 131}, - [3997] = {.lex_state = 131}, - [3998] = {.lex_state = 131}, + [3996] = {.lex_state = 132}, + [3997] = {.lex_state = 132}, + [3998] = {.lex_state = 132}, [3999] = {.lex_state = 131}, [4000] = {.lex_state = 131}, [4001] = {.lex_state = 131}, [4002] = {.lex_state = 131}, [4003] = {.lex_state = 131}, [4004] = {.lex_state = 131}, - [4005] = {.lex_state = 131}, - [4006] = {.lex_state = 131}, + [4005] = {.lex_state = 132}, + [4006] = {.lex_state = 132}, [4007] = {.lex_state = 132}, [4008] = {.lex_state = 132}, [4009] = {.lex_state = 132}, [4010] = {.lex_state = 132}, [4011] = {.lex_state = 132}, - [4012] = {.lex_state = 132}, + [4012] = {.lex_state = 131}, [4013] = {.lex_state = 132}, [4014] = {.lex_state = 132}, [4015] = {.lex_state = 132}, [4016] = {.lex_state = 132}, [4017] = {.lex_state = 132}, [4018] = {.lex_state = 132}, - [4019] = {.lex_state = 132}, + [4019] = {.lex_state = 131}, [4020] = {.lex_state = 132}, [4021] = {.lex_state = 132}, - [4022] = {.lex_state = 131}, - [4023] = {.lex_state = 132}, + [4022] = {.lex_state = 132}, + [4023] = {.lex_state = 131}, [4024] = {.lex_state = 132}, [4025] = {.lex_state = 132}, - [4026] = {.lex_state = 131}, + [4026] = {.lex_state = 132}, [4027] = {.lex_state = 132}, [4028] = {.lex_state = 132}, - [4029] = {.lex_state = 131}, - [4030] = {.lex_state = 131}, - [4031] = {.lex_state = 131}, + [4029] = {.lex_state = 132}, + [4030] = {.lex_state = 132}, + [4031] = {.lex_state = 132}, [4032] = {.lex_state = 132}, [4033] = {.lex_state = 132}, [4034] = {.lex_state = 132}, [4035] = {.lex_state = 132}, - [4036] = {.lex_state = 131}, - [4037] = {.lex_state = 132}, + [4036] = {.lex_state = 132}, + [4037] = {.lex_state = 131}, [4038] = {.lex_state = 132}, [4039] = {.lex_state = 132}, [4040] = {.lex_state = 132}, - [4041] = {.lex_state = 10}, - [4042] = {.lex_state = 131}, + [4041] = {.lex_state = 132}, + [4042] = {.lex_state = 132}, [4043] = {.lex_state = 132}, [4044] = {.lex_state = 132}, - [4045] = {.lex_state = 131}, + [4045] = {.lex_state = 132}, [4046] = {.lex_state = 132}, - [4047] = {.lex_state = 131}, + [4047] = {.lex_state = 132}, [4048] = {.lex_state = 131}, [4049] = {.lex_state = 132}, - [4050] = {.lex_state = 131}, + [4050] = {.lex_state = 132}, [4051] = {.lex_state = 131}, [4052] = {.lex_state = 131}, - [4053] = {.lex_state = 131}, - [4054] = {.lex_state = 131}, + [4053] = {.lex_state = 17}, + [4054] = {.lex_state = 17}, [4055] = {.lex_state = 131}, [4056] = {.lex_state = 131}, [4057] = {.lex_state = 131}, - [4058] = {.lex_state = 132}, - [4059] = {.lex_state = 132}, - [4060] = {.lex_state = 132}, - [4061] = {.lex_state = 132}, - [4062] = {.lex_state = 132}, - [4063] = {.lex_state = 17}, + [4058] = {.lex_state = 131}, + [4059] = {.lex_state = 131}, + [4060] = {.lex_state = 131}, + [4061] = {.lex_state = 131}, + [4062] = {.lex_state = 131}, + [4063] = {.lex_state = 131}, [4064] = {.lex_state = 131}, [4065] = {.lex_state = 131}, [4066] = {.lex_state = 131}, [4067] = {.lex_state = 131}, - [4068] = {.lex_state = 131}, - [4069] = {.lex_state = 17}, + [4068] = {.lex_state = 17}, + [4069] = {.lex_state = 131}, [4070] = {.lex_state = 131}, [4071] = {.lex_state = 131}, [4072] = {.lex_state = 131}, - [4073] = {.lex_state = 131}, + [4073] = {.lex_state = 17}, [4074] = {.lex_state = 131}, [4075] = {.lex_state = 131}, - [4076] = {.lex_state = 131}, + [4076] = {.lex_state = 17}, [4077] = {.lex_state = 131}, [4078] = {.lex_state = 131}, [4079] = {.lex_state = 131}, [4080] = {.lex_state = 131}, - [4081] = {.lex_state = 131}, + [4081] = {.lex_state = 10}, [4082] = {.lex_state = 131}, - [4083] = {.lex_state = 132}, + [4083] = {.lex_state = 131}, [4084] = {.lex_state = 131}, [4085] = {.lex_state = 131}, [4086] = {.lex_state = 131}, - [4087] = {.lex_state = 10}, + [4087] = {.lex_state = 131}, [4088] = {.lex_state = 131}, [4089] = {.lex_state = 131}, [4090] = {.lex_state = 131}, - [4091] = {.lex_state = 17}, + [4091] = {.lex_state = 131}, [4092] = {.lex_state = 131}, - [4093] = {.lex_state = 131}, + [4093] = {.lex_state = 17}, [4094] = {.lex_state = 131}, [4095] = {.lex_state = 131}, - [4096] = {.lex_state = 17}, + [4096] = {.lex_state = 131}, [4097] = {.lex_state = 131}, [4098] = {.lex_state = 131}, [4099] = {.lex_state = 131}, @@ -21616,19 +21539,19 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [4103] = {.lex_state = 131}, [4104] = {.lex_state = 131}, [4105] = {.lex_state = 131}, - [4106] = {.lex_state = 131}, - [4107] = {.lex_state = 17}, + [4106] = {.lex_state = 132}, + [4107] = {.lex_state = 131}, [4108] = {.lex_state = 131}, - [4109] = {.lex_state = 17}, - [4110] = {.lex_state = 131}, + [4109] = {.lex_state = 131}, + [4110] = {.lex_state = 17}, [4111] = {.lex_state = 131}, [4112] = {.lex_state = 131}, - [4113] = {.lex_state = 131}, + [4113] = {.lex_state = 132}, [4114] = {.lex_state = 131}, [4115] = {.lex_state = 131}, [4116] = {.lex_state = 131}, [4117] = {.lex_state = 131}, - [4118] = {.lex_state = 17}, + [4118] = {.lex_state = 131}, [4119] = {.lex_state = 131}, [4120] = {.lex_state = 131}, [4121] = {.lex_state = 131}, @@ -21644,7 +21567,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [4131] = {.lex_state = 131}, [4132] = {.lex_state = 131}, [4133] = {.lex_state = 131}, - [4134] = {.lex_state = 132}, + [4134] = {.lex_state = 131}, [4135] = {.lex_state = 131}, [4136] = {.lex_state = 131}, [4137] = {.lex_state = 131}, @@ -21657,10 +21580,10 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [4144] = {.lex_state = 131}, [4145] = {.lex_state = 131}, [4146] = {.lex_state = 131}, - [4147] = {.lex_state = 131}, + [4147] = {.lex_state = 17}, [4148] = {.lex_state = 131}, - [4149] = {.lex_state = 131}, - [4150] = {.lex_state = 17}, + [4149] = {.lex_state = 132}, + [4150] = {.lex_state = 131}, [4151] = {.lex_state = 131}, [4152] = {.lex_state = 131}, [4153] = {.lex_state = 131}, @@ -21668,7 +21591,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [4155] = {.lex_state = 131}, [4156] = {.lex_state = 131}, [4157] = {.lex_state = 131}, - [4158] = {.lex_state = 132}, + [4158] = {.lex_state = 131}, [4159] = {.lex_state = 131}, [4160] = {.lex_state = 131}, [4161] = {.lex_state = 131}, @@ -21697,14 +21620,14 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [4184] = {.lex_state = 131}, [4185] = {.lex_state = 131}, [4186] = {.lex_state = 131}, - [4187] = {.lex_state = 131}, + [4187] = {.lex_state = 132}, [4188] = {.lex_state = 131}, [4189] = {.lex_state = 131}, [4190] = {.lex_state = 131}, [4191] = {.lex_state = 131}, [4192] = {.lex_state = 131}, [4193] = {.lex_state = 131}, - [4194] = {.lex_state = 131}, + [4194] = {.lex_state = 6, .external_lex_state = 4}, [4195] = {.lex_state = 131}, [4196] = {.lex_state = 131}, [4197] = {.lex_state = 131}, @@ -21724,14 +21647,14 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [4211] = {.lex_state = 131}, [4212] = {.lex_state = 131}, [4213] = {.lex_state = 131}, - [4214] = {.lex_state = 10}, - [4215] = {.lex_state = 6, .external_lex_state = 4}, + [4214] = {.lex_state = 131}, + [4215] = {.lex_state = 131}, [4216] = {.lex_state = 131}, [4217] = {.lex_state = 131}, [4218] = {.lex_state = 131}, [4219] = {.lex_state = 131}, - [4220] = {.lex_state = 17}, - [4221] = {.lex_state = 131, .external_lex_state = 4}, + [4220] = {.lex_state = 131}, + [4221] = {.lex_state = 131}, [4222] = {.lex_state = 131}, [4223] = {.lex_state = 131}, [4224] = {.lex_state = 131}, @@ -21739,11 +21662,11 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [4226] = {.lex_state = 131}, [4227] = {.lex_state = 131}, [4228] = {.lex_state = 131}, - [4229] = {.lex_state = 131}, + [4229] = {.lex_state = 131, .external_lex_state = 4}, [4230] = {.lex_state = 131}, [4231] = {.lex_state = 131}, - [4232] = {.lex_state = 132}, - [4233] = {.lex_state = 131}, + [4232] = {.lex_state = 131}, + [4233] = {.lex_state = 10}, [4234] = {.lex_state = 131}, [4235] = {.lex_state = 131}, [4236] = {.lex_state = 131}, @@ -21752,262 +21675,262 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [4239] = {.lex_state = 131}, [4240] = {.lex_state = 131}, [4241] = {.lex_state = 131}, - [4242] = {.lex_state = 131}, + [4242] = {.lex_state = 17}, [4243] = {.lex_state = 131}, [4244] = {.lex_state = 131}, [4245] = {.lex_state = 131}, - [4246] = {.lex_state = 131}, + [4246] = {.lex_state = 132}, [4247] = {.lex_state = 131}, - [4248] = {.lex_state = 131}, - [4249] = {.lex_state = 131}, + [4248] = {.lex_state = 132}, + [4249] = {.lex_state = 17}, [4250] = {.lex_state = 131}, - [4251] = {.lex_state = 131}, + [4251] = {.lex_state = 131, .external_lex_state = 4}, [4252] = {.lex_state = 131}, - [4253] = {.lex_state = 131}, + [4253] = {.lex_state = 131, .external_lex_state = 4}, [4254] = {.lex_state = 131}, - [4255] = {.lex_state = 131}, + [4255] = {.lex_state = 10}, [4256] = {.lex_state = 131}, - [4257] = {.lex_state = 131}, + [4257] = {.lex_state = 131, .external_lex_state = 4}, [4258] = {.lex_state = 131}, - [4259] = {.lex_state = 131, .external_lex_state = 4}, - [4260] = {.lex_state = 131, .external_lex_state = 4}, - [4261] = {.lex_state = 131, .external_lex_state = 4}, - [4262] = {.lex_state = 131, .external_lex_state = 4}, - [4263] = {.lex_state = 131, .external_lex_state = 4}, - [4264] = {.lex_state = 10}, - [4265] = {.lex_state = 131, .external_lex_state = 4}, + [4259] = {.lex_state = 131}, + [4260] = {.lex_state = 131}, + [4261] = {.lex_state = 131}, + [4262] = {.lex_state = 131}, + [4263] = {.lex_state = 131}, + [4264] = {.lex_state = 131}, + [4265] = {.lex_state = 131}, [4266] = {.lex_state = 131, .external_lex_state = 4}, - [4267] = {.lex_state = 131}, + [4267] = {.lex_state = 131, .external_lex_state = 4}, [4268] = {.lex_state = 131, .external_lex_state = 4}, - [4269] = {.lex_state = 131}, - [4270] = {.lex_state = 131}, + [4269] = {.lex_state = 131, .external_lex_state = 4}, + [4270] = {.lex_state = 131, .external_lex_state = 4}, [4271] = {.lex_state = 131, .external_lex_state = 4}, [4272] = {.lex_state = 132}, [4273] = {.lex_state = 131}, - [4274] = {.lex_state = 132}, - [4275] = {.lex_state = 131, .external_lex_state = 4}, - [4276] = {.lex_state = 131}, + [4274] = {.lex_state = 131}, + [4275] = {.lex_state = 6, .external_lex_state = 4}, + [4276] = {.lex_state = 132}, [4277] = {.lex_state = 131}, [4278] = {.lex_state = 131}, [4279] = {.lex_state = 17}, - [4280] = {.lex_state = 131, .external_lex_state = 4}, + [4280] = {.lex_state = 131}, [4281] = {.lex_state = 131}, - [4282] = {.lex_state = 131, .external_lex_state = 4}, + [4282] = {.lex_state = 131}, [4283] = {.lex_state = 131}, [4284] = {.lex_state = 131}, - [4285] = {.lex_state = 17}, + [4285] = {.lex_state = 132}, [4286] = {.lex_state = 131}, - [4287] = {.lex_state = 131, .external_lex_state = 4}, - [4288] = {.lex_state = 131, .external_lex_state = 4}, - [4289] = {.lex_state = 131, .external_lex_state = 4}, - [4290] = {.lex_state = 10}, - [4291] = {.lex_state = 131}, + [4287] = {.lex_state = 131}, + [4288] = {.lex_state = 131}, + [4289] = {.lex_state = 131}, + [4290] = {.lex_state = 131}, + [4291] = {.lex_state = 131, .external_lex_state = 4}, [4292] = {.lex_state = 17}, - [4293] = {.lex_state = 131, .external_lex_state = 4}, + [4293] = {.lex_state = 6, .external_lex_state = 4}, [4294] = {.lex_state = 131, .external_lex_state = 4}, - [4295] = {.lex_state = 131, .external_lex_state = 4}, - [4296] = {.lex_state = 6, .external_lex_state = 4}, - [4297] = {.lex_state = 6, .external_lex_state = 4}, - [4298] = {.lex_state = 131, .external_lex_state = 4}, + [4295] = {.lex_state = 17}, + [4296] = {.lex_state = 131, .external_lex_state = 4}, + [4297] = {.lex_state = 131, .external_lex_state = 4}, + [4298] = {.lex_state = 132}, [4299] = {.lex_state = 131, .external_lex_state = 4}, [4300] = {.lex_state = 131, .external_lex_state = 4}, [4301] = {.lex_state = 131, .external_lex_state = 4}, - [4302] = {.lex_state = 131}, - [4303] = {.lex_state = 131}, - [4304] = {.lex_state = 131, .external_lex_state = 4}, - [4305] = {.lex_state = 131}, + [4302] = {.lex_state = 131, .external_lex_state = 4}, + [4303] = {.lex_state = 131, .external_lex_state = 4}, + [4304] = {.lex_state = 131}, + [4305] = {.lex_state = 131, .external_lex_state = 4}, [4306] = {.lex_state = 131}, [4307] = {.lex_state = 131, .external_lex_state = 4}, - [4308] = {.lex_state = 131, .external_lex_state = 4}, + [4308] = {.lex_state = 131}, [4309] = {.lex_state = 131}, [4310] = {.lex_state = 131}, - [4311] = {.lex_state = 131, .external_lex_state = 4}, - [4312] = {.lex_state = 6, .external_lex_state = 4}, + [4311] = {.lex_state = 131}, + [4312] = {.lex_state = 131}, [4313] = {.lex_state = 131}, - [4314] = {.lex_state = 131, .external_lex_state = 4}, - [4315] = {.lex_state = 131}, - [4316] = {.lex_state = 17}, - [4317] = {.lex_state = 131}, - [4318] = {.lex_state = 131}, - [4319] = {.lex_state = 131, .external_lex_state = 4}, - [4320] = {.lex_state = 131}, - [4321] = {.lex_state = 17}, + [4314] = {.lex_state = 6, .external_lex_state = 4}, + [4315] = {.lex_state = 131, .external_lex_state = 4}, + [4316] = {.lex_state = 131}, + [4317] = {.lex_state = 131, .external_lex_state = 4}, + [4318] = {.lex_state = 131, .external_lex_state = 4}, + [4319] = {.lex_state = 131}, + [4320] = {.lex_state = 10}, + [4321] = {.lex_state = 131, .external_lex_state = 4}, [4322] = {.lex_state = 131, .external_lex_state = 4}, [4323] = {.lex_state = 131, .external_lex_state = 4}, [4324] = {.lex_state = 131}, - [4325] = {.lex_state = 131}, - [4326] = {.lex_state = 131}, + [4325] = {.lex_state = 17}, + [4326] = {.lex_state = 131, .external_lex_state = 4}, [4327] = {.lex_state = 131, .external_lex_state = 4}, - [4328] = {.lex_state = 131}, - [4329] = {.lex_state = 131}, - [4330] = {.lex_state = 17}, + [4328] = {.lex_state = 131, .external_lex_state = 4}, + [4329] = {.lex_state = 131, .external_lex_state = 4}, + [4330] = {.lex_state = 131}, [4331] = {.lex_state = 131}, [4332] = {.lex_state = 131}, - [4333] = {.lex_state = 132}, - [4334] = {.lex_state = 131}, + [4333] = {.lex_state = 131}, + [4334] = {.lex_state = 17}, [4335] = {.lex_state = 131}, - [4336] = {.lex_state = 132}, + [4336] = {.lex_state = 131, .external_lex_state = 4}, [4337] = {.lex_state = 131}, - [4338] = {.lex_state = 132}, - [4339] = {.lex_state = 131}, - [4340] = {.lex_state = 132}, - [4341] = {.lex_state = 131}, - [4342] = {.lex_state = 131}, - [4343] = {.lex_state = 131}, - [4344] = {.lex_state = 131}, + [4338] = {.lex_state = 131, .external_lex_state = 4}, + [4339] = {.lex_state = 131, .external_lex_state = 4}, + [4340] = {.lex_state = 131, .external_lex_state = 4}, + [4341] = {.lex_state = 131, .external_lex_state = 4}, + [4342] = {.lex_state = 131, .external_lex_state = 4}, + [4343] = {.lex_state = 131, .external_lex_state = 4}, + [4344] = {.lex_state = 132}, [4345] = {.lex_state = 131}, [4346] = {.lex_state = 131}, [4347] = {.lex_state = 131}, - [4348] = {.lex_state = 131}, - [4349] = {.lex_state = 131, .external_lex_state = 4}, - [4350] = {.lex_state = 131, .external_lex_state = 4}, - [4351] = {.lex_state = 131, .external_lex_state = 4}, + [4348] = {.lex_state = 131, .external_lex_state = 4}, + [4349] = {.lex_state = 131}, + [4350] = {.lex_state = 131}, + [4351] = {.lex_state = 131}, [4352] = {.lex_state = 131}, - [4353] = {.lex_state = 131}, + [4353] = {.lex_state = 131, .external_lex_state = 4}, [4354] = {.lex_state = 131}, [4355] = {.lex_state = 131, .external_lex_state = 4}, - [4356] = {.lex_state = 131, .external_lex_state = 4}, - [4357] = {.lex_state = 131}, + [4356] = {.lex_state = 6}, + [4357] = {.lex_state = 131, .external_lex_state = 4}, [4358] = {.lex_state = 131}, - [4359] = {.lex_state = 132}, - [4360] = {.lex_state = 131, .external_lex_state = 4}, - [4361] = {.lex_state = 131, .external_lex_state = 4}, + [4359] = {.lex_state = 131, .external_lex_state = 4}, + [4360] = {.lex_state = 131}, + [4361] = {.lex_state = 131}, [4362] = {.lex_state = 131}, - [4363] = {.lex_state = 132}, + [4363] = {.lex_state = 131}, [4364] = {.lex_state = 131, .external_lex_state = 4}, [4365] = {.lex_state = 131, .external_lex_state = 4}, [4366] = {.lex_state = 131, .external_lex_state = 4}, - [4367] = {.lex_state = 131, .external_lex_state = 4}, - [4368] = {.lex_state = 131, .external_lex_state = 4}, - [4369] = {.lex_state = 131}, - [4370] = {.lex_state = 131}, + [4367] = {.lex_state = 131}, + [4368] = {.lex_state = 131}, + [4369] = {.lex_state = 132}, + [4370] = {.lex_state = 132}, [4371] = {.lex_state = 131}, - [4372] = {.lex_state = 132}, - [4373] = {.lex_state = 132}, - [4374] = {.lex_state = 131, .external_lex_state = 4}, + [4372] = {.lex_state = 131, .external_lex_state = 4}, + [4373] = {.lex_state = 17}, + [4374] = {.lex_state = 131}, [4375] = {.lex_state = 131}, [4376] = {.lex_state = 131}, [4377] = {.lex_state = 131}, - [4378] = {.lex_state = 131}, - [4379] = {.lex_state = 131, .external_lex_state = 4}, - [4380] = {.lex_state = 131}, - [4381] = {.lex_state = 131, .external_lex_state = 4}, - [4382] = {.lex_state = 131, .external_lex_state = 4}, - [4383] = {.lex_state = 131, .external_lex_state = 4}, + [4378] = {.lex_state = 131, .external_lex_state = 4}, + [4379] = {.lex_state = 131}, + [4380] = {.lex_state = 131, .external_lex_state = 4}, + [4381] = {.lex_state = 131}, + [4382] = {.lex_state = 132}, + [4383] = {.lex_state = 131}, [4384] = {.lex_state = 131}, [4385] = {.lex_state = 131, .external_lex_state = 4}, [4386] = {.lex_state = 131, .external_lex_state = 4}, - [4387] = {.lex_state = 131}, + [4387] = {.lex_state = 131, .external_lex_state = 4}, [4388] = {.lex_state = 131}, - [4389] = {.lex_state = 131, .external_lex_state = 4}, - [4390] = {.lex_state = 132}, + [4389] = {.lex_state = 131}, + [4390] = {.lex_state = 131}, [4391] = {.lex_state = 131}, [4392] = {.lex_state = 131}, - [4393] = {.lex_state = 131}, - [4394] = {.lex_state = 131}, - [4395] = {.lex_state = 6}, + [4393] = {.lex_state = 131, .external_lex_state = 4}, + [4394] = {.lex_state = 131, .external_lex_state = 4}, + [4395] = {.lex_state = 131, .external_lex_state = 4}, [4396] = {.lex_state = 131, .external_lex_state = 4}, - [4397] = {.lex_state = 7, .external_lex_state = 4}, - [4398] = {.lex_state = 131, .external_lex_state = 4}, + [4397] = {.lex_state = 131}, + [4398] = {.lex_state = 131}, [4399] = {.lex_state = 131}, [4400] = {.lex_state = 131}, [4401] = {.lex_state = 131}, [4402] = {.lex_state = 131}, - [4403] = {.lex_state = 131, .external_lex_state = 4}, - [4404] = {.lex_state = 17}, - [4405] = {.lex_state = 131}, + [4403] = {.lex_state = 131}, + [4404] = {.lex_state = 131}, + [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}, + [4407] = {.lex_state = 131, .external_lex_state = 4}, + [4408] = {.lex_state = 131}, + [4409] = {.lex_state = 132}, [4410] = {.lex_state = 131, .external_lex_state = 4}, [4411] = {.lex_state = 131, .external_lex_state = 4}, - [4412] = {.lex_state = 131, .external_lex_state = 4}, - [4413] = {.lex_state = 131, .external_lex_state = 4}, + [4412] = {.lex_state = 131}, + [4413] = {.lex_state = 131}, [4414] = {.lex_state = 131, .external_lex_state = 4}, [4415] = {.lex_state = 131}, - [4416] = {.lex_state = 131}, - [4417] = {.lex_state = 131, .external_lex_state = 4}, - [4418] = {.lex_state = 131, .external_lex_state = 4}, + [4416] = {.lex_state = 131, .external_lex_state = 4}, + [4417] = {.lex_state = 131}, + [4418] = {.lex_state = 131}, [4419] = {.lex_state = 131}, [4420] = {.lex_state = 131}, - [4421] = {.lex_state = 131, .external_lex_state = 4}, - [4422] = {.lex_state = 131, .external_lex_state = 4}, + [4421] = {.lex_state = 131}, + [4422] = {.lex_state = 131}, [4423] = {.lex_state = 131}, [4424] = {.lex_state = 131, .external_lex_state = 4}, [4425] = {.lex_state = 131}, [4426] = {.lex_state = 131, .external_lex_state = 4}, [4427] = {.lex_state = 131}, [4428] = {.lex_state = 131, .external_lex_state = 4}, - [4429] = {.lex_state = 131, .external_lex_state = 4}, + [4429] = {.lex_state = 131}, [4430] = {.lex_state = 131, .external_lex_state = 4}, - [4431] = {.lex_state = 131}, - [4432] = {.lex_state = 131}, - [4433] = {.lex_state = 131, .external_lex_state = 4}, + [4431] = {.lex_state = 132}, + [4432] = {.lex_state = 131, .external_lex_state = 4}, + [4433] = {.lex_state = 131}, [4434] = {.lex_state = 131, .external_lex_state = 4}, [4435] = {.lex_state = 131, .external_lex_state = 4}, [4436] = {.lex_state = 131, .external_lex_state = 4}, - [4437] = {.lex_state = 131}, + [4437] = {.lex_state = 131, .external_lex_state = 4}, [4438] = {.lex_state = 131}, - [4439] = {.lex_state = 131}, + [4439] = {.lex_state = 132}, [4440] = {.lex_state = 131}, - [4441] = {.lex_state = 131}, + [4441] = {.lex_state = 131, .external_lex_state = 4}, [4442] = {.lex_state = 131}, - [4443] = {.lex_state = 131}, + [4443] = {.lex_state = 131, .external_lex_state = 4}, [4444] = {.lex_state = 131}, [4445] = {.lex_state = 131}, - [4446] = {.lex_state = 131}, + [4446] = {.lex_state = 131, .external_lex_state = 4}, [4447] = {.lex_state = 131}, - [4448] = {.lex_state = 131}, + [4448] = {.lex_state = 131, .external_lex_state = 4}, [4449] = {.lex_state = 131}, [4450] = {.lex_state = 131}, - [4451] = {.lex_state = 131}, + [4451] = {.lex_state = 131, .external_lex_state = 4}, [4452] = {.lex_state = 131}, [4453] = {.lex_state = 131}, - [4454] = {.lex_state = 131, .external_lex_state = 4}, + [4454] = {.lex_state = 131}, [4455] = {.lex_state = 131}, - [4456] = {.lex_state = 131, .external_lex_state = 4}, - [4457] = {.lex_state = 131, .external_lex_state = 4}, - [4458] = {.lex_state = 131, .external_lex_state = 4}, - [4459] = {.lex_state = 132}, - [4460] = {.lex_state = 131}, + [4456] = {.lex_state = 131}, + [4457] = {.lex_state = 131}, + [4458] = {.lex_state = 131}, + [4459] = {.lex_state = 131, .external_lex_state = 4}, + [4460] = {.lex_state = 131, .external_lex_state = 4}, [4461] = {.lex_state = 131}, - [4462] = {.lex_state = 132}, + [4462] = {.lex_state = 131, .external_lex_state = 4}, [4463] = {.lex_state = 131}, - [4464] = {.lex_state = 131, .external_lex_state = 4}, + [4464] = {.lex_state = 131}, [4465] = {.lex_state = 131, .external_lex_state = 4}, - [4466] = {.lex_state = 131}, + [4466] = {.lex_state = 131, .external_lex_state = 4}, [4467] = {.lex_state = 131, .external_lex_state = 4}, - [4468] = {.lex_state = 131}, + [4468] = {.lex_state = 131, .external_lex_state = 4}, [4469] = {.lex_state = 131, .external_lex_state = 4}, [4470] = {.lex_state = 131}, - [4471] = {.lex_state = 131}, - [4472] = {.lex_state = 131}, - [4473] = {.lex_state = 131}, + [4471] = {.lex_state = 131, .external_lex_state = 4}, + [4472] = {.lex_state = 132}, + [4473] = {.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}, + [4477] = {.lex_state = 131, .external_lex_state = 4}, + [4478] = {.lex_state = 131}, [4479] = {.lex_state = 131}, [4480] = {.lex_state = 131}, - [4481] = {.lex_state = 131}, - [4482] = {.lex_state = 131}, + [4481] = {.lex_state = 131, .external_lex_state = 4}, + [4482] = {.lex_state = 7, .external_lex_state = 4}, [4483] = {.lex_state = 131, .external_lex_state = 4}, - [4484] = {.lex_state = 131}, + [4484] = {.lex_state = 131, .external_lex_state = 4}, [4485] = {.lex_state = 131}, [4486] = {.lex_state = 131}, - [4487] = {.lex_state = 131}, - [4488] = {.lex_state = 131, .external_lex_state = 4}, - [4489] = {.lex_state = 131}, - [4490] = {.lex_state = 131}, - [4491] = {.lex_state = 132}, + [4487] = {.lex_state = 131, .external_lex_state = 4}, + [4488] = {.lex_state = 131}, + [4489] = {.lex_state = 131, .external_lex_state = 4}, + [4490] = {.lex_state = 131, .external_lex_state = 4}, + [4491] = {.lex_state = 131, .external_lex_state = 4}, [4492] = {.lex_state = 131, .external_lex_state = 4}, - [4493] = {.lex_state = 131, .external_lex_state = 4}, + [4493] = {.lex_state = 131}, [4494] = {.lex_state = 131, .external_lex_state = 4}, [4495] = {.lex_state = 131, .external_lex_state = 4}, [4496] = {.lex_state = 131, .external_lex_state = 4}, - [4497] = {.lex_state = 131, .external_lex_state = 4}, + [4497] = {.lex_state = 131}, [4498] = {.lex_state = 131}, [4499] = {.lex_state = 131}, [4500] = {.lex_state = 131}, @@ -22015,57 +21938,57 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [4502] = {.lex_state = 131}, [4503] = {.lex_state = 131}, [4504] = {.lex_state = 131}, - [4505] = {.lex_state = 131, .external_lex_state = 4}, - [4506] = {.lex_state = 131, .external_lex_state = 4}, + [4505] = {.lex_state = 131}, + [4506] = {.lex_state = 131}, [4507] = {.lex_state = 131}, - [4508] = {.lex_state = 131, .external_lex_state = 4}, - [4509] = {.lex_state = 131}, + [4508] = {.lex_state = 131}, + [4509] = {.lex_state = 131, .external_lex_state = 4}, [4510] = {.lex_state = 131, .external_lex_state = 4}, - [4511] = {.lex_state = 131, .external_lex_state = 4}, - [4512] = {.lex_state = 131, .external_lex_state = 4}, - [4513] = {.lex_state = 131, .external_lex_state = 4}, - [4514] = {.lex_state = 131}, - [4515] = {.lex_state = 131, .external_lex_state = 4}, - [4516] = {.lex_state = 131, .external_lex_state = 4}, - [4517] = {.lex_state = 131, .external_lex_state = 4}, + [4511] = {.lex_state = 132}, + [4512] = {.lex_state = 131}, + [4513] = {.lex_state = 131}, + [4514] = {.lex_state = 132}, + [4515] = {.lex_state = 131}, + [4516] = {.lex_state = 131}, + [4517] = {.lex_state = 131}, [4518] = {.lex_state = 131, .external_lex_state = 4}, - [4519] = {.lex_state = 131, .external_lex_state = 4}, + [4519] = {.lex_state = 132}, [4520] = {.lex_state = 131}, [4521] = {.lex_state = 131}, [4522] = {.lex_state = 131}, [4523] = {.lex_state = 131}, [4524] = {.lex_state = 131}, - [4525] = {.lex_state = 131, .external_lex_state = 4}, + [4525] = {.lex_state = 131}, [4526] = {.lex_state = 131}, [4527] = {.lex_state = 131}, [4528] = {.lex_state = 131}, - [4529] = {.lex_state = 131, .external_lex_state = 4}, - [4530] = {.lex_state = 131, .external_lex_state = 4}, - [4531] = {.lex_state = 131, .external_lex_state = 4}, + [4529] = {.lex_state = 131}, + [4530] = {.lex_state = 131}, + [4531] = {.lex_state = 131}, [4532] = {.lex_state = 131}, [4533] = {.lex_state = 131}, [4534] = {.lex_state = 131}, [4535] = {.lex_state = 131}, - [4536] = {.lex_state = 131, .external_lex_state = 4}, + [4536] = {.lex_state = 131}, [4537] = {.lex_state = 131, .external_lex_state = 4}, - [4538] = {.lex_state = 131}, - [4539] = {.lex_state = 131}, - [4540] = {.lex_state = 131}, - [4541] = {.lex_state = 131, .external_lex_state = 4}, - [4542] = {.lex_state = 131, .external_lex_state = 4}, - [4543] = {.lex_state = 131, .external_lex_state = 4}, - [4544] = {.lex_state = 131, .external_lex_state = 4}, - [4545] = {.lex_state = 131, .external_lex_state = 4}, - [4546] = {.lex_state = 131, .external_lex_state = 4}, + [4538] = {.lex_state = 132}, + [4539] = {.lex_state = 132}, + [4540] = {.lex_state = 131, .external_lex_state = 4}, + [4541] = {.lex_state = 17}, + [4542] = {.lex_state = 6}, + [4543] = {.lex_state = 131}, + [4544] = {.lex_state = 131}, + [4545] = {.lex_state = 131}, + [4546] = {.lex_state = 131}, [4547] = {.lex_state = 132}, [4548] = {.lex_state = 131, .external_lex_state = 4}, [4549] = {.lex_state = 131}, - [4550] = {.lex_state = 131, .external_lex_state = 4}, + [4550] = {.lex_state = 131}, [4551] = {.lex_state = 131}, - [4552] = {.lex_state = 131, .external_lex_state = 4}, - [4553] = {.lex_state = 131, .external_lex_state = 4}, + [4552] = {.lex_state = 131}, + [4553] = {.lex_state = 131}, [4554] = {.lex_state = 131}, - [4555] = {.lex_state = 132}, + [4555] = {.lex_state = 131}, [4556] = {.lex_state = 131}, [4557] = {.lex_state = 131}, [4558] = {.lex_state = 131}, @@ -22075,85 +21998,85 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [4562] = {.lex_state = 131}, [4563] = {.lex_state = 131}, [4564] = {.lex_state = 131}, - [4565] = {.lex_state = 131}, - [4566] = {.lex_state = 131}, + [4565] = {.lex_state = 17}, + [4566] = {.lex_state = 132}, [4567] = {.lex_state = 131}, [4568] = {.lex_state = 131}, [4569] = {.lex_state = 131}, [4570] = {.lex_state = 131}, - [4571] = {.lex_state = 131, .external_lex_state = 4}, - [4572] = {.lex_state = 131}, + [4571] = {.lex_state = 131}, + [4572] = {.lex_state = 132}, [4573] = {.lex_state = 131, .external_lex_state = 4}, [4574] = {.lex_state = 131, .external_lex_state = 4}, - [4575] = {.lex_state = 131}, - [4576] = {.lex_state = 131, .external_lex_state = 4}, + [4575] = {.lex_state = 131, .external_lex_state = 4}, + [4576] = {.lex_state = 131}, [4577] = {.lex_state = 131}, - [4578] = {.lex_state = 131, .external_lex_state = 4}, - [4579] = {.lex_state = 131, .external_lex_state = 4}, - [4580] = {.lex_state = 131}, - [4581] = {.lex_state = 131}, + [4578] = {.lex_state = 131}, + [4579] = {.lex_state = 131}, + [4580] = {.lex_state = 131, .external_lex_state = 4}, + [4581] = {.lex_state = 131, .external_lex_state = 4}, [4582] = {.lex_state = 131, .external_lex_state = 4}, [4583] = {.lex_state = 131, .external_lex_state = 4}, [4584] = {.lex_state = 131, .external_lex_state = 4}, - [4585] = {.lex_state = 131}, + [4585] = {.lex_state = 131, .external_lex_state = 4}, [4586] = {.lex_state = 131, .external_lex_state = 4}, - [4587] = {.lex_state = 131}, - [4588] = {.lex_state = 131}, - [4589] = {.lex_state = 131}, - [4590] = {.lex_state = 131}, + [4587] = {.lex_state = 131, .external_lex_state = 4}, + [4588] = {.lex_state = 131, .external_lex_state = 4}, + [4589] = {.lex_state = 131, .external_lex_state = 4}, + [4590] = {.lex_state = 131, .external_lex_state = 4}, [4591] = {.lex_state = 131, .external_lex_state = 4}, [4592] = {.lex_state = 131, .external_lex_state = 4}, - [4593] = {.lex_state = 131}, - [4594] = {.lex_state = 131}, - [4595] = {.lex_state = 131}, - [4596] = {.lex_state = 131}, - [4597] = {.lex_state = 131}, + [4593] = {.lex_state = 131, .external_lex_state = 4}, + [4594] = {.lex_state = 131, .external_lex_state = 4}, + [4595] = {.lex_state = 131, .external_lex_state = 4}, + [4596] = {.lex_state = 131, .external_lex_state = 4}, + [4597] = {.lex_state = 131, .external_lex_state = 4}, [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 = 131}, - [4606] = {.lex_state = 131}, - [4607] = {.lex_state = 131}, + [4599] = {.lex_state = 131, .external_lex_state = 4}, + [4600] = {.lex_state = 131, .external_lex_state = 4}, + [4601] = {.lex_state = 131, .external_lex_state = 4}, + [4602] = {.lex_state = 131, .external_lex_state = 4}, + [4603] = {.lex_state = 131, .external_lex_state = 4}, + [4604] = {.lex_state = 131, .external_lex_state = 4}, + [4605] = {.lex_state = 131, .external_lex_state = 4}, + [4606] = {.lex_state = 131, .external_lex_state = 4}, + [4607] = {.lex_state = 131, .external_lex_state = 4}, [4608] = {.lex_state = 131, .external_lex_state = 4}, [4609] = {.lex_state = 131, .external_lex_state = 4}, [4610] = {.lex_state = 131, .external_lex_state = 4}, [4611] = {.lex_state = 131, .external_lex_state = 4}, [4612] = {.lex_state = 131, .external_lex_state = 4}, [4613] = {.lex_state = 131, .external_lex_state = 4}, - [4614] = {.lex_state = 17}, - [4615] = {.lex_state = 131, .external_lex_state = 4}, - [4616] = {.lex_state = 131, .external_lex_state = 4}, + [4614] = {.lex_state = 132}, + [4615] = {.lex_state = 131}, + [4616] = {.lex_state = 131}, [4617] = {.lex_state = 131, .external_lex_state = 4}, - [4618] = {.lex_state = 131, .external_lex_state = 4}, + [4618] = {.lex_state = 131}, [4619] = {.lex_state = 131}, - [4620] = {.lex_state = 131, .external_lex_state = 4}, - [4621] = {.lex_state = 131}, + [4620] = {.lex_state = 131}, + [4621] = {.lex_state = 131, .external_lex_state = 4}, [4622] = {.lex_state = 131, .external_lex_state = 4}, [4623] = {.lex_state = 131}, - [4624] = {.lex_state = 131, .external_lex_state = 4}, - [4625] = {.lex_state = 131, .external_lex_state = 4}, - [4626] = {.lex_state = 131, .external_lex_state = 4}, + [4624] = {.lex_state = 131}, + [4625] = {.lex_state = 131}, + [4626] = {.lex_state = 131}, [4627] = {.lex_state = 131}, - [4628] = {.lex_state = 131, .external_lex_state = 4}, - [4629] = {.lex_state = 131, .external_lex_state = 4}, + [4628] = {.lex_state = 131}, + [4629] = {.lex_state = 131}, [4630] = {.lex_state = 131}, - [4631] = {.lex_state = 131, .external_lex_state = 4}, - [4632] = {.lex_state = 17}, - [4633] = {.lex_state = 132}, - [4634] = {.lex_state = 131, .external_lex_state = 4}, - [4635] = {.lex_state = 131, .external_lex_state = 4}, - [4636] = {.lex_state = 132}, - [4637] = {.lex_state = 131, .external_lex_state = 4}, - [4638] = {.lex_state = 132}, + [4631] = {.lex_state = 131}, + [4632] = {.lex_state = 131}, + [4633] = {.lex_state = 131, .external_lex_state = 4}, + [4634] = {.lex_state = 131}, + [4635] = {.lex_state = 131}, + [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}, + [4640] = {.lex_state = 132}, [4641] = {.lex_state = 131, .external_lex_state = 4}, [4642] = {.lex_state = 131, .external_lex_state = 4}, - [4643] = {.lex_state = 131, .external_lex_state = 4}, + [4643] = {.lex_state = 131}, [4644] = {.lex_state = 131, .external_lex_state = 4}, [4645] = {.lex_state = 131, .external_lex_state = 4}, [4646] = {.lex_state = 131, .external_lex_state = 4}, @@ -22161,44 +22084,44 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [4648] = {.lex_state = 131, .external_lex_state = 4}, [4649] = {.lex_state = 131, .external_lex_state = 4}, [4650] = {.lex_state = 131}, - [4651] = {.lex_state = 131, .external_lex_state = 4}, + [4651] = {.lex_state = 131}, [4652] = {.lex_state = 131, .external_lex_state = 4}, - [4653] = {.lex_state = 131}, - [4654] = {.lex_state = 6}, - [4655] = {.lex_state = 131}, - [4656] = {.lex_state = 131}, + [4653] = {.lex_state = 131, .external_lex_state = 4}, + [4654] = {.lex_state = 131, .external_lex_state = 4}, + [4655] = {.lex_state = 131, .external_lex_state = 4}, + [4656] = {.lex_state = 131, .external_lex_state = 4}, [4657] = {.lex_state = 131, .external_lex_state = 4}, [4658] = {.lex_state = 131, .external_lex_state = 4}, - [4659] = {.lex_state = 131}, - [4660] = {.lex_state = 131}, - [4661] = {.lex_state = 131}, - [4662] = {.lex_state = 131}, - [4663] = {.lex_state = 131}, - [4664] = {.lex_state = 131}, + [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 = 131, .external_lex_state = 4}, + [4663] = {.lex_state = 131, .external_lex_state = 4}, + [4664] = {.lex_state = 131, .external_lex_state = 4}, [4665] = {.lex_state = 131, .external_lex_state = 4}, - [4666] = {.lex_state = 131}, - [4667] = {.lex_state = 131}, - [4668] = {.lex_state = 131, .external_lex_state = 4}, - [4669] = {.lex_state = 131, .external_lex_state = 4}, - [4670] = {.lex_state = 131}, + [4666] = {.lex_state = 131, .external_lex_state = 4}, + [4667] = {.lex_state = 131, .external_lex_state = 4}, + [4668] = {.lex_state = 131}, + [4669] = {.lex_state = 131}, + [4670] = {.lex_state = 131, .external_lex_state = 4}, [4671] = {.lex_state = 131}, - [4672] = {.lex_state = 131, .external_lex_state = 4}, + [4672] = {.lex_state = 131}, [4673] = {.lex_state = 131}, - [4674] = {.lex_state = 131, .external_lex_state = 4}, - [4675] = {.lex_state = 131, .external_lex_state = 4}, + [4674] = {.lex_state = 131}, + [4675] = {.lex_state = 131}, [4676] = {.lex_state = 131}, - [4677] = {.lex_state = 131, .external_lex_state = 4}, - [4678] = {.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}, + [4677] = {.lex_state = 131}, + [4678] = {.lex_state = 131}, + [4679] = {.lex_state = 131}, + [4680] = {.lex_state = 131}, + [4681] = {.lex_state = 131, .external_lex_state = 4}, [4682] = {.lex_state = 131}, - [4683] = {.lex_state = 131}, - [4684] = {.lex_state = 131}, + [4683] = {.lex_state = 131, .external_lex_state = 4}, + [4684] = {.lex_state = 131, .external_lex_state = 4}, [4685] = {.lex_state = 131}, [4686] = {.lex_state = 131, .external_lex_state = 4}, - [4687] = {.lex_state = 131, .external_lex_state = 4}, - [4688] = {.lex_state = 131}, + [4687] = {.lex_state = 131}, + [4688] = {.lex_state = 131, .external_lex_state = 4}, [4689] = {.lex_state = 131}, [4690] = {.lex_state = 131}, [4691] = {.lex_state = 131}, @@ -22213,19 +22136,19 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [4700] = {.lex_state = 131}, [4701] = {.lex_state = 131}, [4702] = {.lex_state = 131}, - [4703] = {.lex_state = 132}, + [4703] = {.lex_state = 131}, [4704] = {.lex_state = 131, .external_lex_state = 4}, - [4705] = {.lex_state = 131}, - [4706] = {.lex_state = 131}, + [4705] = {.lex_state = 131, .external_lex_state = 4}, + [4706] = {.lex_state = 131, .external_lex_state = 4}, [4707] = {.lex_state = 131, .external_lex_state = 4}, - [4708] = {.lex_state = 131}, - [4709] = {.lex_state = 131}, + [4708] = {.lex_state = 131, .external_lex_state = 4}, + [4709] = {.lex_state = 131, .external_lex_state = 4}, [4710] = {.lex_state = 131}, [4711] = {.lex_state = 131}, [4712] = {.lex_state = 131}, [4713] = {.lex_state = 131}, [4714] = {.lex_state = 131}, - [4715] = {.lex_state = 131, .external_lex_state = 4}, + [4715] = {.lex_state = 131}, [4716] = {.lex_state = 131}, [4717] = {.lex_state = 131}, [4718] = {.lex_state = 131}, @@ -22237,10 +22160,10 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [4724] = {.lex_state = 131}, [4725] = {.lex_state = 131}, [4726] = {.lex_state = 131}, - [4727] = {.lex_state = 131}, + [4727] = {.lex_state = 131, .external_lex_state = 4}, [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}, @@ -22259,44 +22182,44 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [4746] = {.lex_state = 131}, [4747] = {.lex_state = 131}, [4748] = {.lex_state = 131}, - [4749] = {.lex_state = 131}, - [4750] = {.lex_state = 132}, + [4749] = {.lex_state = 131, .external_lex_state = 4}, + [4750] = {.lex_state = 131}, [4751] = {.lex_state = 131}, [4752] = {.lex_state = 131}, [4753] = {.lex_state = 131}, [4754] = {.lex_state = 131}, [4755] = {.lex_state = 131}, [4756] = {.lex_state = 131}, - [4757] = {.lex_state = 132}, - [4758] = {.lex_state = 131}, + [4757] = {.lex_state = 131}, + [4758] = {.lex_state = 131, .external_lex_state = 4}, [4759] = {.lex_state = 131, .external_lex_state = 4}, - [4760] = {.lex_state = 131}, + [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}, + [4762] = {.lex_state = 131}, + [4763] = {.lex_state = 131, .external_lex_state = 4}, [4764] = {.lex_state = 131, .external_lex_state = 4}, - [4765] = {.lex_state = 131}, - [4766] = {.lex_state = 131}, - [4767] = {.lex_state = 131}, + [4765] = {.lex_state = 131, .external_lex_state = 4}, + [4766] = {.lex_state = 131, .external_lex_state = 4}, + [4767] = {.lex_state = 132}, [4768] = {.lex_state = 131}, [4769] = {.lex_state = 131}, [4770] = {.lex_state = 131}, [4771] = {.lex_state = 131}, - [4772] = {.lex_state = 131, .external_lex_state = 4}, + [4772] = {.lex_state = 131}, [4773] = {.lex_state = 131}, [4774] = {.lex_state = 131}, [4775] = {.lex_state = 131}, [4776] = {.lex_state = 131}, - [4777] = {.lex_state = 131, .external_lex_state = 4}, + [4777] = {.lex_state = 131}, [4778] = {.lex_state = 131}, - [4779] = {.lex_state = 131, .external_lex_state = 4}, - [4780] = {.lex_state = 131, .external_lex_state = 4}, + [4779] = {.lex_state = 131}, + [4780] = {.lex_state = 131}, [4781] = {.lex_state = 131}, [4782] = {.lex_state = 131}, [4783] = {.lex_state = 131}, [4784] = {.lex_state = 131}, [4785] = {.lex_state = 131}, - [4786] = {.lex_state = 131, .external_lex_state = 4}, + [4786] = {.lex_state = 131}, [4787] = {.lex_state = 131}, [4788] = {.lex_state = 131}, [4789] = {.lex_state = 131}, @@ -22318,20 +22241,20 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [4805] = {.lex_state = 131}, [4806] = {.lex_state = 131}, [4807] = {.lex_state = 131}, - [4808] = {.lex_state = 131}, + [4808] = {.lex_state = 131, .external_lex_state = 4}, [4809] = {.lex_state = 131, .external_lex_state = 4}, - [4810] = {.lex_state = 131}, + [4810] = {.lex_state = 131, .external_lex_state = 4}, [4811] = {.lex_state = 131, .external_lex_state = 4}, [4812] = {.lex_state = 131, .external_lex_state = 4}, - [4813] = {.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 = 132}, - [4819] = {.lex_state = 131, .external_lex_state = 4}, - [4820] = {.lex_state = 132}, - [4821] = {.lex_state = 131, .external_lex_state = 4}, + [4815] = {.lex_state = 131}, + [4816] = {.lex_state = 131}, + [4817] = {.lex_state = 131}, + [4818] = {.lex_state = 131}, + [4819] = {.lex_state = 131}, + [4820] = {.lex_state = 131}, + [4821] = {.lex_state = 131}, [4822] = {.lex_state = 131}, [4823] = {.lex_state = 131}, [4824] = {.lex_state = 131}, @@ -22339,20 +22262,20 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [4826] = {.lex_state = 131}, [4827] = {.lex_state = 131}, [4828] = {.lex_state = 131}, - [4829] = {.lex_state = 131}, - [4830] = {.lex_state = 131}, - [4831] = {.lex_state = 132}, + [4829] = {.lex_state = 131, .external_lex_state = 4}, + [4830] = {.lex_state = 131, .external_lex_state = 4}, + [4831] = {.lex_state = 131, .external_lex_state = 4}, [4832] = {.lex_state = 131}, - [4833] = {.lex_state = 131, .external_lex_state = 4}, + [4833] = {.lex_state = 131}, [4834] = {.lex_state = 131}, - [4835] = {.lex_state = 131}, - [4836] = {.lex_state = 131}, - [4837] = {.lex_state = 131}, - [4838] = {.lex_state = 131}, + [4835] = {.lex_state = 132}, + [4836] = {.lex_state = 131, .external_lex_state = 4}, + [4837] = {.lex_state = 132}, + [4838] = {.lex_state = 132}, [4839] = {.lex_state = 131}, - [4840] = {.lex_state = 131}, - [4841] = {.lex_state = 131}, - [4842] = {.lex_state = 131}, + [4840] = {.lex_state = 131, .external_lex_state = 4}, + [4841] = {.lex_state = 131, .external_lex_state = 4}, + [4842] = {.lex_state = 131, .external_lex_state = 4}, [4843] = {.lex_state = 131}, [4844] = {.lex_state = 131}, [4845] = {.lex_state = 131}, @@ -22367,40 +22290,40 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [4854] = {.lex_state = 131}, [4855] = {.lex_state = 131}, [4856] = {.lex_state = 131}, - [4857] = {.lex_state = 131, .external_lex_state = 4}, + [4857] = {.lex_state = 131}, [4858] = {.lex_state = 131}, [4859] = {.lex_state = 131}, [4860] = {.lex_state = 131}, [4861] = {.lex_state = 131}, [4862] = {.lex_state = 131}, - [4863] = {.lex_state = 131}, - [4864] = {.lex_state = 131}, + [4863] = {.lex_state = 131, .external_lex_state = 4}, + [4864] = {.lex_state = 131, .external_lex_state = 4}, [4865] = {.lex_state = 131}, [4866] = {.lex_state = 131}, [4867] = {.lex_state = 131}, [4868] = {.lex_state = 131}, [4869] = {.lex_state = 131}, - [4870] = {.lex_state = 132}, + [4870] = {.lex_state = 131}, [4871] = {.lex_state = 131}, [4872] = {.lex_state = 131}, [4873] = {.lex_state = 131}, [4874] = {.lex_state = 131}, - [4875] = {.lex_state = 131}, - [4876] = {.lex_state = 131}, - [4877] = {.lex_state = 131}, - [4878] = {.lex_state = 131}, - [4879] = {.lex_state = 131}, + [4875] = {.lex_state = 131, .external_lex_state = 4}, + [4876] = {.lex_state = 131, .external_lex_state = 4}, + [4877] = {.lex_state = 131, .external_lex_state = 4}, + [4878] = {.lex_state = 131, .external_lex_state = 4}, + [4879] = {.lex_state = 131, .external_lex_state = 4}, [4880] = {.lex_state = 131}, - [4881] = {.lex_state = 131}, + [4881] = {.lex_state = 131, .external_lex_state = 4}, [4882] = {.lex_state = 131}, - [4883] = {.lex_state = 131}, + [4883] = {.lex_state = 132}, [4884] = {.lex_state = 131}, [4885] = {.lex_state = 131}, [4886] = {.lex_state = 131}, [4887] = {.lex_state = 131}, [4888] = {.lex_state = 131}, - [4889] = {.lex_state = 131, .external_lex_state = 4}, - [4890] = {.lex_state = 131}, + [4889] = {.lex_state = 131}, + [4890] = {.lex_state = 132}, [4891] = {.lex_state = 131}, [4892] = {.lex_state = 131}, [4893] = {.lex_state = 131}, @@ -22408,37 +22331,37 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [4895] = {.lex_state = 131}, [4896] = {.lex_state = 131}, [4897] = {.lex_state = 131}, - [4898] = {.lex_state = 132}, + [4898] = {.lex_state = 131}, [4899] = {.lex_state = 131}, [4900] = {.lex_state = 131}, [4901] = {.lex_state = 131}, [4902] = {.lex_state = 131}, [4903] = {.lex_state = 131}, - [4904] = {.lex_state = 132}, + [4904] = {.lex_state = 131}, [4905] = {.lex_state = 131}, - [4906] = {.lex_state = 132}, + [4906] = {.lex_state = 131}, [4907] = {.lex_state = 131}, - [4908] = {.lex_state = 131}, + [4908] = {.lex_state = 131, .external_lex_state = 4}, [4909] = {.lex_state = 131}, [4910] = {.lex_state = 131}, - [4911] = {.lex_state = 132}, - [4912] = {.lex_state = 131, .external_lex_state = 4}, - [4913] = {.lex_state = 131}, + [4911] = {.lex_state = 131}, + [4912] = {.lex_state = 131}, + [4913] = {.lex_state = 132}, [4914] = {.lex_state = 131}, [4915] = {.lex_state = 131}, [4916] = {.lex_state = 131}, [4917] = {.lex_state = 131}, [4918] = {.lex_state = 131}, - [4919] = {.lex_state = 132}, + [4919] = {.lex_state = 131, .external_lex_state = 4}, [4920] = {.lex_state = 131}, [4921] = {.lex_state = 131}, [4922] = {.lex_state = 131}, - [4923] = {.lex_state = 132}, + [4923] = {.lex_state = 131, .external_lex_state = 4}, [4924] = {.lex_state = 132}, [4925] = {.lex_state = 131}, - [4926] = {.lex_state = 131}, - [4927] = {.lex_state = 131}, - [4928] = {.lex_state = 131, .external_lex_state = 4}, + [4926] = {.lex_state = 132}, + [4927] = {.lex_state = 131, .external_lex_state = 4}, + [4928] = {.lex_state = 131}, [4929] = {.lex_state = 131}, [4930] = {.lex_state = 131}, [4931] = {.lex_state = 131}, @@ -22446,101 +22369,101 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [4933] = {.lex_state = 131}, [4934] = {.lex_state = 131}, [4935] = {.lex_state = 131}, - [4936] = {.lex_state = 132}, - [4937] = {.lex_state = 132}, + [4936] = {.lex_state = 131}, + [4937] = {.lex_state = 131}, [4938] = {.lex_state = 131}, [4939] = {.lex_state = 131}, [4940] = {.lex_state = 131}, [4941] = {.lex_state = 131}, [4942] = {.lex_state = 131}, - [4943] = {.lex_state = 131}, - [4944] = {.lex_state = 131, .external_lex_state = 4}, - [4945] = {.lex_state = 131, .external_lex_state = 4}, - [4946] = {.lex_state = 131, .external_lex_state = 4}, - [4947] = {.lex_state = 131, .external_lex_state = 4}, - [4948] = {.lex_state = 131, .external_lex_state = 4}, - [4949] = {.lex_state = 131, .external_lex_state = 4}, - [4950] = {.lex_state = 131, .external_lex_state = 4}, - [4951] = {.lex_state = 131, .external_lex_state = 4}, - [4952] = {.lex_state = 131}, + [4943] = {.lex_state = 131, .external_lex_state = 4}, + [4944] = {.lex_state = 131}, + [4945] = {.lex_state = 131}, + [4946] = {.lex_state = 132}, + [4947] = {.lex_state = 131}, + [4948] = {.lex_state = 131}, + [4949] = {.lex_state = 131}, + [4950] = {.lex_state = 131}, + [4951] = {.lex_state = 131}, + [4952] = {.lex_state = 131, .external_lex_state = 4}, [4953] = {.lex_state = 131}, - [4954] = {.lex_state = 131, .external_lex_state = 4}, - [4955] = {.lex_state = 132}, - [4956] = {.lex_state = 132}, - [4957] = {.lex_state = 131}, - [4958] = {.lex_state = 131, .external_lex_state = 4}, + [4954] = {.lex_state = 131}, + [4955] = {.lex_state = 131}, + [4956] = {.lex_state = 131, .external_lex_state = 4}, + [4957] = {.lex_state = 132}, + [4958] = {.lex_state = 131}, [4959] = {.lex_state = 131}, - [4960] = {.lex_state = 131, .external_lex_state = 4}, + [4960] = {.lex_state = 131}, [4961] = {.lex_state = 131}, [4962] = {.lex_state = 131}, [4963] = {.lex_state = 131}, [4964] = {.lex_state = 131}, - [4965] = {.lex_state = 131, .external_lex_state = 4}, - [4966] = {.lex_state = 131}, + [4965] = {.lex_state = 131}, + [4966] = {.lex_state = 132}, [4967] = {.lex_state = 131}, [4968] = {.lex_state = 131}, [4969] = {.lex_state = 131}, - [4970] = {.lex_state = 132}, + [4970] = {.lex_state = 131}, [4971] = {.lex_state = 131}, [4972] = {.lex_state = 131}, [4973] = {.lex_state = 131}, [4974] = {.lex_state = 131}, - [4975] = {.lex_state = 131, .external_lex_state = 4}, + [4975] = {.lex_state = 131}, [4976] = {.lex_state = 131}, [4977] = {.lex_state = 131}, [4978] = {.lex_state = 131}, [4979] = {.lex_state = 131}, - [4980] = {.lex_state = 131}, + [4980] = {.lex_state = 132}, [4981] = {.lex_state = 131}, - [4982] = {.lex_state = 132}, + [4982] = {.lex_state = 131}, [4983] = {.lex_state = 131}, [4984] = {.lex_state = 131}, [4985] = {.lex_state = 131}, [4986] = {.lex_state = 131}, [4987] = {.lex_state = 131}, [4988] = {.lex_state = 131}, - [4989] = {.lex_state = 131}, + [4989] = {.lex_state = 132}, [4990] = {.lex_state = 131}, [4991] = {.lex_state = 131}, [4992] = {.lex_state = 131}, - [4993] = {.lex_state = 131}, + [4993] = {.lex_state = 132}, [4994] = {.lex_state = 131}, [4995] = {.lex_state = 131}, - [4996] = {.lex_state = 132}, + [4996] = {.lex_state = 131}, [4997] = {.lex_state = 131}, [4998] = {.lex_state = 131}, [4999] = {.lex_state = 131}, [5000] = {.lex_state = 131}, - [5001] = {.lex_state = 132}, + [5001] = {.lex_state = 131}, [5002] = {.lex_state = 131}, [5003] = {.lex_state = 131}, - [5004] = {.lex_state = 131}, - [5005] = {.lex_state = 131}, - [5006] = {.lex_state = 131}, - [5007] = {.lex_state = 132}, + [5004] = {.lex_state = 132}, + [5005] = {.lex_state = 131, .external_lex_state = 4}, + [5006] = {.lex_state = 132}, + [5007] = {.lex_state = 131}, [5008] = {.lex_state = 131}, - [5009] = {.lex_state = 131}, + [5009] = {.lex_state = 132}, [5010] = {.lex_state = 131}, - [5011] = {.lex_state = 131}, + [5011] = {.lex_state = 132}, [5012] = {.lex_state = 131}, [5013] = {.lex_state = 132}, - [5014] = {.lex_state = 131}, - [5015] = {.lex_state = 131}, - [5016] = {.lex_state = 131}, + [5014] = {.lex_state = 132}, + [5015] = {.lex_state = 132}, + [5016] = {.lex_state = 132}, [5017] = {.lex_state = 131}, - [5018] = {.lex_state = 131, .external_lex_state = 4}, - [5019] = {.lex_state = 131}, - [5020] = {.lex_state = 131}, + [5018] = {.lex_state = 131}, + [5019] = {.lex_state = 131, .external_lex_state = 4}, + [5020] = {.lex_state = 131, .external_lex_state = 4}, [5021] = {.lex_state = 131}, - [5022] = {.lex_state = 132}, + [5022] = {.lex_state = 131, .external_lex_state = 4}, [5023] = {.lex_state = 131}, [5024] = {.lex_state = 131}, - [5025] = {.lex_state = 131, .external_lex_state = 4}, + [5025] = {.lex_state = 131}, [5026] = {.lex_state = 131}, [5027] = {.lex_state = 131}, [5028] = {.lex_state = 131}, - [5029] = {.lex_state = 132}, - [5030] = {.lex_state = 132}, + [5029] = {.lex_state = 131}, + [5030] = {.lex_state = 131}, [5031] = {.lex_state = 131}, [5032] = {.lex_state = 131}, [5033] = {.lex_state = 131}, @@ -22555,33 +22478,33 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [5042] = {.lex_state = 131}, [5043] = {.lex_state = 131}, [5044] = {.lex_state = 131}, - [5045] = {.lex_state = 131}, - [5046] = {.lex_state = 132}, + [5045] = {.lex_state = 132}, + [5046] = {.lex_state = 131}, [5047] = {.lex_state = 131}, - [5048] = {.lex_state = 131}, - [5049] = {.lex_state = 131}, - [5050] = {.lex_state = 131, .external_lex_state = 4}, - [5051] = {.lex_state = 131, .external_lex_state = 4}, + [5048] = {.lex_state = 132}, + [5049] = {.lex_state = 132}, + [5050] = {.lex_state = 131}, + [5051] = {.lex_state = 131}, [5052] = {.lex_state = 131}, - [5053] = {.lex_state = 132}, - [5054] = {.lex_state = 131, .external_lex_state = 4}, + [5053] = {.lex_state = 131}, + [5054] = {.lex_state = 132}, [5055] = {.lex_state = 131, .external_lex_state = 4}, [5056] = {.lex_state = 131}, - [5057] = {.lex_state = 131, .external_lex_state = 4}, - [5058] = {.lex_state = 131, .external_lex_state = 4}, - [5059] = {.lex_state = 132}, + [5057] = {.lex_state = 131}, + [5058] = {.lex_state = 131}, + [5059] = {.lex_state = 131}, [5060] = {.lex_state = 131}, [5061] = {.lex_state = 131}, - [5062] = {.lex_state = 132}, + [5062] = {.lex_state = 131}, [5063] = {.lex_state = 131}, [5064] = {.lex_state = 131}, - [5065] = {.lex_state = 132}, - [5066] = {.lex_state = 132}, + [5065] = {.lex_state = 131}, + [5066] = {.lex_state = 131}, [5067] = {.lex_state = 131}, [5068] = {.lex_state = 131}, [5069] = {.lex_state = 131}, [5070] = {.lex_state = 131}, - [5071] = {.lex_state = 131}, + [5071] = {.lex_state = 132}, [5072] = {.lex_state = 131}, [5073] = {.lex_state = 131}, [5074] = {.lex_state = 131}, @@ -22591,12 +22514,12 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [5078] = {.lex_state = 131}, [5079] = {.lex_state = 131}, [5080] = {.lex_state = 131}, - [5081] = {.lex_state = 131}, + [5081] = {.lex_state = 131, .external_lex_state = 4}, [5082] = {.lex_state = 131}, [5083] = {.lex_state = 131}, [5084] = {.lex_state = 131}, [5085] = {.lex_state = 131}, - [5086] = {.lex_state = 131}, + [5086] = {.lex_state = 131, .external_lex_state = 4}, [5087] = {.lex_state = 131}, [5088] = {.lex_state = 131}, [5089] = {.lex_state = 131}, @@ -22616,123 +22539,123 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [5103] = {.lex_state = 131}, [5104] = {.lex_state = 131}, [5105] = {.lex_state = 131}, - [5106] = {.lex_state = 131}, - [5107] = {.lex_state = 132}, + [5106] = {.lex_state = 132}, + [5107] = {.lex_state = 10}, [5108] = {.lex_state = 131}, [5109] = {.lex_state = 131}, [5110] = {.lex_state = 131}, - [5111] = {.lex_state = 131}, + [5111] = {.lex_state = 10}, [5112] = {.lex_state = 131}, - [5113] = {.lex_state = 131}, + [5113] = {.lex_state = 10}, [5114] = {.lex_state = 131}, [5115] = {.lex_state = 131}, [5116] = {.lex_state = 131}, - [5117] = {.lex_state = 131, .external_lex_state = 4}, + [5117] = {.lex_state = 131}, [5118] = {.lex_state = 131}, - [5119] = {.lex_state = 131}, + [5119] = {.lex_state = 10}, [5120] = {.lex_state = 131}, - [5121] = {.lex_state = 10}, + [5121] = {.lex_state = 131}, [5122] = {.lex_state = 131}, [5123] = {.lex_state = 131}, [5124] = {.lex_state = 131}, [5125] = {.lex_state = 131}, - [5126] = {.lex_state = 131}, - [5127] = {.lex_state = 131}, + [5126] = {.lex_state = 10}, + [5127] = {.lex_state = 10}, [5128] = {.lex_state = 131}, [5129] = {.lex_state = 131}, [5130] = {.lex_state = 132}, - [5131] = {.lex_state = 10}, - [5132] = {.lex_state = 10}, + [5131] = {.lex_state = 131}, + [5132] = {.lex_state = 131}, [5133] = {.lex_state = 131}, [5134] = {.lex_state = 131}, - [5135] = {.lex_state = 10}, - [5136] = {.lex_state = 10}, + [5135] = {.lex_state = 132}, + [5136] = {.lex_state = 131}, [5137] = {.lex_state = 10}, [5138] = {.lex_state = 131}, [5139] = {.lex_state = 131}, [5140] = {.lex_state = 131}, [5141] = {.lex_state = 131}, - [5142] = {.lex_state = 131}, + [5142] = {.lex_state = 10}, [5143] = {.lex_state = 131}, [5144] = {.lex_state = 131}, - [5145] = {.lex_state = 10}, + [5145] = {.lex_state = 131}, [5146] = {.lex_state = 131}, [5147] = {.lex_state = 131}, [5148] = {.lex_state = 131}, - [5149] = {.lex_state = 10}, - [5150] = {.lex_state = 131}, + [5149] = {.lex_state = 131}, + [5150] = {.lex_state = 10}, [5151] = {.lex_state = 131}, - [5152] = {.lex_state = 131}, + [5152] = {.lex_state = 132}, [5153] = {.lex_state = 131}, - [5154] = {.lex_state = 131}, + [5154] = {.lex_state = 132}, [5155] = {.lex_state = 131}, [5156] = {.lex_state = 131}, [5157] = {.lex_state = 131}, - [5158] = {.lex_state = 131}, + [5158] = {.lex_state = 10}, [5159] = {.lex_state = 10}, - [5160] = {.lex_state = 132}, + [5160] = {.lex_state = 10}, [5161] = {.lex_state = 131}, - [5162] = {.lex_state = 132}, - [5163] = {.lex_state = 131}, + [5162] = {.lex_state = 131}, + [5163] = {.lex_state = 10}, [5164] = {.lex_state = 131}, [5165] = {.lex_state = 131}, [5166] = {.lex_state = 131}, [5167] = {.lex_state = 131}, [5168] = {.lex_state = 131}, - [5169] = {.lex_state = 131}, + [5169] = {.lex_state = 132}, [5170] = {.lex_state = 131}, [5171] = {.lex_state = 131}, [5172] = {.lex_state = 131}, - [5173] = {.lex_state = 10}, - [5174] = {.lex_state = 10}, - [5175] = {.lex_state = 132}, + [5173] = {.lex_state = 131}, + [5174] = {.lex_state = 131}, + [5175] = {.lex_state = 131}, [5176] = {.lex_state = 131}, [5177] = {.lex_state = 131}, [5178] = {.lex_state = 131}, [5179] = {.lex_state = 131}, [5180] = {.lex_state = 131}, [5181] = {.lex_state = 131}, - [5182] = {.lex_state = 131}, - [5183] = {.lex_state = 131}, + [5182] = {.lex_state = 132}, + [5183] = {.lex_state = 131, .external_lex_state = 4}, [5184] = {.lex_state = 131}, [5185] = {.lex_state = 131}, [5186] = {.lex_state = 131}, [5187] = {.lex_state = 131}, [5188] = {.lex_state = 131}, - [5189] = {.lex_state = 131}, + [5189] = {.lex_state = 10}, [5190] = {.lex_state = 131}, [5191] = {.lex_state = 10}, [5192] = {.lex_state = 131}, [5193] = {.lex_state = 131}, [5194] = {.lex_state = 131}, [5195] = {.lex_state = 131}, - [5196] = {.lex_state = 10}, - [5197] = {.lex_state = 10}, - [5198] = {.lex_state = 131, .external_lex_state = 4}, + [5196] = {.lex_state = 131}, + [5197] = {.lex_state = 132}, + [5198] = {.lex_state = 131}, [5199] = {.lex_state = 131}, [5200] = {.lex_state = 131}, [5201] = {.lex_state = 131}, [5202] = {.lex_state = 131}, [5203] = {.lex_state = 131}, - [5204] = {.lex_state = 131}, + [5204] = {.lex_state = 10}, [5205] = {.lex_state = 131}, [5206] = {.lex_state = 131}, [5207] = {.lex_state = 131}, [5208] = {.lex_state = 131}, [5209] = {.lex_state = 131}, [5210] = {.lex_state = 131}, - [5211] = {.lex_state = 10}, + [5211] = {.lex_state = 131}, [5212] = {.lex_state = 131}, - [5213] = {.lex_state = 10}, - [5214] = {.lex_state = 10}, + [5213] = {.lex_state = 131}, + [5214] = {.lex_state = 131}, [5215] = {.lex_state = 131}, - [5216] = {.lex_state = 10}, + [5216] = {.lex_state = 131}, [5217] = {.lex_state = 131}, [5218] = {.lex_state = 131}, - [5219] = {.lex_state = 131}, + [5219] = {.lex_state = 10}, [5220] = {.lex_state = 131}, [5221] = {.lex_state = 131}, - [5222] = {.lex_state = 132}, + [5222] = {.lex_state = 131}, [5223] = {.lex_state = 131}, [5224] = {.lex_state = 131}, [5225] = {.lex_state = 131}, @@ -22740,97 +22663,97 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [5227] = {.lex_state = 131}, [5228] = {.lex_state = 131}, [5229] = {.lex_state = 131}, - [5230] = {.lex_state = 10}, + [5230] = {.lex_state = 131}, [5231] = {.lex_state = 131}, [5232] = {.lex_state = 131}, [5233] = {.lex_state = 131}, - [5234] = {.lex_state = 131}, + [5234] = {.lex_state = 10}, [5235] = {.lex_state = 131}, [5236] = {.lex_state = 131}, - [5237] = {.lex_state = 131}, + [5237] = {.lex_state = 132}, [5238] = {.lex_state = 131}, - [5239] = {.lex_state = 10}, - [5240] = {.lex_state = 10}, + [5239] = {.lex_state = 131}, + [5240] = {.lex_state = 131}, [5241] = {.lex_state = 131}, - [5242] = {.lex_state = 10}, - [5243] = {.lex_state = 10}, - [5244] = {.lex_state = 10}, - [5245] = {.lex_state = 10}, + [5242] = {.lex_state = 131}, + [5243] = {.lex_state = 131}, + [5244] = {.lex_state = 131}, + [5245] = {.lex_state = 131}, [5246] = {.lex_state = 131}, [5247] = {.lex_state = 131}, [5248] = {.lex_state = 131}, [5249] = {.lex_state = 131}, [5250] = {.lex_state = 131}, - [5251] = {.lex_state = 10}, + [5251] = {.lex_state = 131}, [5252] = {.lex_state = 10}, [5253] = {.lex_state = 131}, - [5254] = {.lex_state = 10}, + [5254] = {.lex_state = 131}, [5255] = {.lex_state = 131}, [5256] = {.lex_state = 131}, - [5257] = {.lex_state = 10}, + [5257] = {.lex_state = 131}, [5258] = {.lex_state = 131}, - [5259] = {.lex_state = 131}, + [5259] = {.lex_state = 10}, [5260] = {.lex_state = 131}, - [5261] = {.lex_state = 131}, + [5261] = {.lex_state = 10}, [5262] = {.lex_state = 131}, [5263] = {.lex_state = 10}, [5264] = {.lex_state = 10}, [5265] = {.lex_state = 10}, - [5266] = {.lex_state = 131}, - [5267] = {.lex_state = 10}, - [5268] = {.lex_state = 131}, + [5266] = {.lex_state = 10}, + [5267] = {.lex_state = 131}, + [5268] = {.lex_state = 10}, [5269] = {.lex_state = 131}, [5270] = {.lex_state = 131}, [5271] = {.lex_state = 131}, - [5272] = {.lex_state = 10}, + [5272] = {.lex_state = 131}, [5273] = {.lex_state = 131}, [5274] = {.lex_state = 131}, - [5275] = {.lex_state = 10}, + [5275] = {.lex_state = 131}, [5276] = {.lex_state = 131}, [5277] = {.lex_state = 131}, [5278] = {.lex_state = 131}, - [5279] = {.lex_state = 132}, + [5279] = {.lex_state = 131}, [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 = 131}, + [5285] = {.lex_state = 10}, + [5286] = {.lex_state = 10}, [5287] = {.lex_state = 131}, [5288] = {.lex_state = 131}, [5289] = {.lex_state = 131}, [5290] = {.lex_state = 131}, - [5291] = {.lex_state = 131}, - [5292] = {.lex_state = 131}, - [5293] = {.lex_state = 131}, - [5294] = {.lex_state = 131}, + [5291] = {.lex_state = 10}, + [5292] = {.lex_state = 10}, + [5293] = {.lex_state = 10}, + [5294] = {.lex_state = 10}, [5295] = {.lex_state = 10}, [5296] = {.lex_state = 10}, - [5297] = {.lex_state = 131}, - [5298] = {.lex_state = 131}, - [5299] = {.lex_state = 131}, + [5297] = {.lex_state = 10}, + [5298] = {.lex_state = 10}, + [5299] = {.lex_state = 10}, [5300] = {.lex_state = 131}, - [5301] = {.lex_state = 131}, - [5302] = {.lex_state = 132}, - [5303] = {.lex_state = 131}, + [5301] = {.lex_state = 10}, + [5302] = {.lex_state = 10}, + [5303] = {.lex_state = 10}, [5304] = {.lex_state = 131}, [5305] = {.lex_state = 131}, [5306] = {.lex_state = 131}, [5307] = {.lex_state = 131}, - [5308] = {.lex_state = 131}, - [5309] = {.lex_state = 10}, + [5308] = {.lex_state = 17}, + [5309] = {.lex_state = 17}, [5310] = {.lex_state = 131}, - [5311] = {.lex_state = 131}, - [5312] = {.lex_state = 132}, + [5311] = {.lex_state = 10}, + [5312] = {.lex_state = 10}, [5313] = {.lex_state = 131}, - [5314] = {.lex_state = 10}, + [5314] = {.lex_state = 131}, [5315] = {.lex_state = 131}, [5316] = {.lex_state = 131}, [5317] = {.lex_state = 131}, - [5318] = {.lex_state = 10}, - [5319] = {.lex_state = 10}, - [5320] = {.lex_state = 10}, + [5318] = {.lex_state = 131}, + [5319] = {.lex_state = 131}, + [5320] = {.lex_state = 131}, [5321] = {.lex_state = 131}, [5322] = {.lex_state = 131}, [5323] = {.lex_state = 131}, @@ -22865,15 +22788,15 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [5352] = {.lex_state = 131}, [5353] = {.lex_state = 131}, [5354] = {.lex_state = 131}, - [5355] = {.lex_state = 131}, - [5356] = {.lex_state = 131}, + [5355] = {.lex_state = 132}, + [5356] = {.lex_state = 132}, [5357] = {.lex_state = 131}, [5358] = {.lex_state = 131}, [5359] = {.lex_state = 131}, [5360] = {.lex_state = 131}, [5361] = {.lex_state = 131}, [5362] = {.lex_state = 131}, - [5363] = {.lex_state = 132}, + [5363] = {.lex_state = 131}, [5364] = {.lex_state = 131}, [5365] = {.lex_state = 131}, [5366] = {.lex_state = 131}, @@ -22899,7 +22822,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [5386] = {.lex_state = 131}, [5387] = {.lex_state = 131}, [5388] = {.lex_state = 131}, - [5389] = {.lex_state = 131}, + [5389] = {.lex_state = 132}, [5390] = {.lex_state = 131}, [5391] = {.lex_state = 131}, [5392] = {.lex_state = 131}, @@ -22907,7 +22830,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [5394] = {.lex_state = 131}, [5395] = {.lex_state = 131}, [5396] = {.lex_state = 131}, - [5397] = {.lex_state = 131}, + [5397] = {.lex_state = 132}, [5398] = {.lex_state = 131}, [5399] = {.lex_state = 131}, [5400] = {.lex_state = 131}, @@ -22930,9 +22853,9 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [5417] = {.lex_state = 131}, [5418] = {.lex_state = 131}, [5419] = {.lex_state = 131}, - [5420] = {.lex_state = 132}, + [5420] = {.lex_state = 131}, [5421] = {.lex_state = 131}, - [5422] = {.lex_state = 132}, + [5422] = {.lex_state = 131}, [5423] = {.lex_state = 131}, [5424] = {.lex_state = 131}, [5425] = {.lex_state = 131}, @@ -22942,14 +22865,14 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [5429] = {.lex_state = 131}, [5430] = {.lex_state = 131}, [5431] = {.lex_state = 131}, - [5432] = {.lex_state = 132}, + [5432] = {.lex_state = 131}, [5433] = {.lex_state = 131}, - [5434] = {.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}, @@ -22990,7 +22913,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [5477] = {.lex_state = 131}, [5478] = {.lex_state = 131}, [5479] = {.lex_state = 131}, - [5480] = {.lex_state = 131}, + [5480] = {.lex_state = 132}, [5481] = {.lex_state = 131}, [5482] = {.lex_state = 131}, [5483] = {.lex_state = 131}, @@ -23029,7 +22952,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [5516] = {.lex_state = 131}, [5517] = {.lex_state = 131}, [5518] = {.lex_state = 131}, - [5519] = {.lex_state = 132}, + [5519] = {.lex_state = 131}, [5520] = {.lex_state = 131}, [5521] = {.lex_state = 131}, [5522] = {.lex_state = 131}, @@ -23038,10 +22961,10 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [5525] = {.lex_state = 131}, [5526] = {.lex_state = 131}, [5527] = {.lex_state = 131}, - [5528] = {.lex_state = 131}, + [5528] = {.lex_state = 132}, [5529] = {.lex_state = 131}, [5530] = {.lex_state = 131}, - [5531] = {.lex_state = 132}, + [5531] = {.lex_state = 131}, [5532] = {.lex_state = 131}, [5533] = {.lex_state = 131}, [5534] = {.lex_state = 131}, @@ -23059,11 +22982,11 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [5546] = {.lex_state = 131}, [5547] = {.lex_state = 131}, [5548] = {.lex_state = 131}, - [5549] = {.lex_state = 132}, - [5550] = {.lex_state = 131}, + [5549] = {.lex_state = 131}, + [5550] = {.lex_state = 132}, [5551] = {.lex_state = 131}, [5552] = {.lex_state = 131}, - [5553] = {.lex_state = 131}, + [5553] = {.lex_state = 132}, [5554] = {.lex_state = 131}, [5555] = {.lex_state = 131}, [5556] = {.lex_state = 131}, @@ -23075,10 +22998,10 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [5562] = {.lex_state = 131}, [5563] = {.lex_state = 131}, [5564] = {.lex_state = 131}, - [5565] = {.lex_state = 17}, + [5565] = {.lex_state = 132}, [5566] = {.lex_state = 131}, - [5567] = {.lex_state = 17}, - [5568] = {.lex_state = 132}, + [5567] = {.lex_state = 131}, + [5568] = {.lex_state = 131}, [5569] = {.lex_state = 131}, [5570] = {.lex_state = 131}, [5571] = {.lex_state = 131}, @@ -23086,17 +23009,17 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [5573] = {.lex_state = 131}, [5574] = {.lex_state = 131}, [5575] = {.lex_state = 131}, - [5576] = {.lex_state = 132}, - [5577] = {.lex_state = 132}, + [5576] = {.lex_state = 131}, + [5577] = {.lex_state = 131}, [5578] = {.lex_state = 131}, [5579] = {.lex_state = 131}, - [5580] = {.lex_state = 132}, + [5580] = {.lex_state = 131}, [5581] = {.lex_state = 131}, [5582] = {.lex_state = 131}, [5583] = {.lex_state = 132}, [5584] = {.lex_state = 131}, [5585] = {.lex_state = 131}, - [5586] = {.lex_state = 131}, + [5586] = {.lex_state = 132}, [5587] = {.lex_state = 131}, [5588] = {.lex_state = 131}, [5589] = {.lex_state = 131}, @@ -23117,8 +23040,8 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [5604] = {.lex_state = 131}, [5605] = {.lex_state = 131}, [5606] = {.lex_state = 131}, - [5607] = {.lex_state = 131}, - [5608] = {.lex_state = 131}, + [5607] = {.lex_state = 132}, + [5608] = {.lex_state = 132}, [5609] = {.lex_state = 131}, [5610] = {.lex_state = 131}, [5611] = {.lex_state = 131}, @@ -23135,7 +23058,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [5622] = {.lex_state = 131}, [5623] = {.lex_state = 131}, [5624] = {.lex_state = 131}, - [5625] = {.lex_state = 132}, + [5625] = {.lex_state = 131}, [5626] = {.lex_state = 131}, [5627] = {.lex_state = 131}, [5628] = {.lex_state = 131}, @@ -23173,18 +23096,18 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [5660] = {.lex_state = 131}, [5661] = {.lex_state = 131}, [5662] = {.lex_state = 131}, - [5663] = {.lex_state = 131}, - [5664] = {.lex_state = 132}, - [5665] = {.lex_state = 132}, - [5666] = {.lex_state = 131}, + [5663] = {.lex_state = 132}, + [5664] = {.lex_state = 131}, + [5665] = {.lex_state = 131}, + [5666] = {.lex_state = 132}, [5667] = {.lex_state = 131}, [5668] = {.lex_state = 131}, [5669] = {.lex_state = 131}, [5670] = {.lex_state = 131}, [5671] = {.lex_state = 131}, - [5672] = {.lex_state = 131}, - [5673] = {.lex_state = 132}, - [5674] = {.lex_state = 131}, + [5672] = {.lex_state = 132}, + [5673] = {.lex_state = 131}, + [5674] = {.lex_state = 132}, [5675] = {.lex_state = 132}, [5676] = {.lex_state = 132}, [5677] = {.lex_state = 131}, @@ -23192,76 +23115,76 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [5679] = {.lex_state = 131}, [5680] = {.lex_state = 131}, [5681] = {.lex_state = 131}, - [5682] = {.lex_state = 132}, + [5682] = {.lex_state = 131}, [5683] = {.lex_state = 131}, [5684] = {.lex_state = 131}, - [5685] = {.lex_state = 131}, - [5686] = {.lex_state = 132}, + [5685] = {.lex_state = 132}, + [5686] = {.lex_state = 131}, [5687] = {.lex_state = 131}, - [5688] = {.lex_state = 131}, + [5688] = {.lex_state = 132}, [5689] = {.lex_state = 131}, [5690] = {.lex_state = 131}, [5691] = {.lex_state = 132}, - [5692] = {.lex_state = 131}, - [5693] = {.lex_state = 131}, + [5692] = {.lex_state = 132}, + [5693] = {.lex_state = 132}, [5694] = {.lex_state = 132}, - [5695] = {.lex_state = 131}, + [5695] = {.lex_state = 132}, [5696] = {.lex_state = 131}, [5697] = {.lex_state = 131}, [5698] = {.lex_state = 131}, [5699] = {.lex_state = 131}, - [5700] = {.lex_state = 131}, - [5701] = {.lex_state = 131}, - [5702] = {.lex_state = 131}, + [5700] = {.lex_state = 132}, + [5701] = {.lex_state = 132}, + [5702] = {.lex_state = 132}, [5703] = {.lex_state = 132}, - [5704] = {.lex_state = 132}, - [5705] = {.lex_state = 131}, - [5706] = {.lex_state = 131}, + [5704] = {.lex_state = 17}, + [5705] = {.lex_state = 132}, + [5706] = {.lex_state = 132}, [5707] = {.lex_state = 132}, [5708] = {.lex_state = 131}, [5709] = {.lex_state = 132}, - [5710] = {.lex_state = 131}, - [5711] = {.lex_state = 17}, + [5710] = {.lex_state = 17}, + [5711] = {.lex_state = 131}, [5712] = {.lex_state = 132}, [5713] = {.lex_state = 132}, [5714] = {.lex_state = 132}, [5715] = {.lex_state = 132}, [5716] = {.lex_state = 132}, - [5717] = {.lex_state = 17}, + [5717] = {.lex_state = 132}, [5718] = {.lex_state = 132}, - [5719] = {.lex_state = 131}, + [5719] = {.lex_state = 17}, [5720] = {.lex_state = 132}, [5721] = {.lex_state = 132}, - [5722] = {.lex_state = 132}, - [5723] = {.lex_state = 132}, + [5722] = {.lex_state = 131}, + [5723] = {.lex_state = 131}, [5724] = {.lex_state = 132}, [5725] = {.lex_state = 132}, [5726] = {.lex_state = 132}, [5727] = {.lex_state = 132}, [5728] = {.lex_state = 132}, - [5729] = {.lex_state = 131}, - [5730] = {.lex_state = 132}, + [5729] = {.lex_state = 132}, + [5730] = {.lex_state = 131}, [5731] = {.lex_state = 132}, - [5732] = {.lex_state = 17}, + [5732] = {.lex_state = 132}, [5733] = {.lex_state = 132}, - [5734] = {.lex_state = 131}, - [5735] = {.lex_state = 131}, - [5736] = {.lex_state = 132}, + [5734] = {.lex_state = 132}, + [5735] = {.lex_state = 132}, + [5736] = {.lex_state = 17}, [5737] = {.lex_state = 132}, - [5738] = {.lex_state = 17}, + [5738] = {.lex_state = 132}, [5739] = {.lex_state = 132}, [5740] = {.lex_state = 132}, [5741] = {.lex_state = 132}, - [5742] = {.lex_state = 131}, + [5742] = {.lex_state = 132}, [5743] = {.lex_state = 132}, - [5744] = {.lex_state = 132}, + [5744] = {.lex_state = 131}, [5745] = {.lex_state = 132}, [5746] = {.lex_state = 132}, [5747] = {.lex_state = 132}, [5748] = {.lex_state = 132}, [5749] = {.lex_state = 132}, [5750] = {.lex_state = 132}, - [5751] = {.lex_state = 131}, + [5751] = {.lex_state = 132}, [5752] = {.lex_state = 132}, [5753] = {.lex_state = 132}, [5754] = {.lex_state = 132}, @@ -23328,7 +23251,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [5815] = {.lex_state = 132}, [5816] = {.lex_state = 132}, [5817] = {.lex_state = 132}, - [5818] = {.lex_state = 132}, + [5818] = {.lex_state = 131}, [5819] = {.lex_state = 132}, [5820] = {.lex_state = 132}, [5821] = {.lex_state = 132}, @@ -23349,7 +23272,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [5836] = {.lex_state = 132}, [5837] = {.lex_state = 132}, [5838] = {.lex_state = 132}, - [5839] = {.lex_state = 131}, + [5839] = {.lex_state = 132}, [5840] = {.lex_state = 132}, [5841] = {.lex_state = 132}, [5842] = {.lex_state = 132}, @@ -23488,7 +23411,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [5975] = {.lex_state = 132}, [5976] = {.lex_state = 132}, [5977] = {.lex_state = 132}, - [5978] = {.lex_state = 132}, + [5978] = {.lex_state = 1}, [5979] = {.lex_state = 132}, [5980] = {.lex_state = 132}, [5981] = {.lex_state = 132}, @@ -23512,7 +23435,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [5999] = {.lex_state = 132}, [6000] = {.lex_state = 132}, [6001] = {.lex_state = 132}, - [6002] = {.lex_state = 1}, + [6002] = {.lex_state = 132}, [6003] = {.lex_state = 132}, [6004] = {.lex_state = 132}, [6005] = {.lex_state = 132}, @@ -23560,7 +23483,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [6047] = {.lex_state = 132}, [6048] = {.lex_state = 132}, [6049] = {.lex_state = 132}, - [6050] = {.lex_state = 132}, + [6050] = {.lex_state = 4}, [6051] = {.lex_state = 132}, [6052] = {.lex_state = 132}, [6053] = {.lex_state = 132}, @@ -23573,7 +23496,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [6060] = {.lex_state = 132}, [6061] = {.lex_state = 132}, [6062] = {.lex_state = 132}, - [6063] = {.lex_state = 4}, + [6063] = {.lex_state = 132}, [6064] = {.lex_state = 132}, [6065] = {.lex_state = 132}, [6066] = {.lex_state = 132}, @@ -23625,36 +23548,36 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [6112] = {.lex_state = 132}, [6113] = {.lex_state = 132}, [6114] = {.lex_state = 132}, - [6115] = {.lex_state = 132}, - [6116] = {.lex_state = 132}, - [6117] = {.lex_state = 132}, - [6118] = {.lex_state = 132}, - [6119] = {.lex_state = 132}, - [6120] = {.lex_state = 132}, - [6121] = {.lex_state = 132}, - [6122] = {.lex_state = 132}, - [6123] = {.lex_state = 132}, + [6115] = {.lex_state = 8}, + [6116] = {.lex_state = 8}, + [6117] = {.lex_state = 8}, + [6118] = {.lex_state = 8}, + [6119] = {.lex_state = 8}, + [6120] = {.lex_state = 8}, + [6121] = {.lex_state = 8}, + [6122] = {.lex_state = 8}, + [6123] = {.lex_state = 8}, [6124] = {.lex_state = 132}, - [6125] = {.lex_state = 132}, - [6126] = {.lex_state = 132}, - [6127] = {.lex_state = 132}, + [6125] = {.lex_state = 8}, + [6126] = {.lex_state = 8}, + [6127] = {.lex_state = 8}, [6128] = {.lex_state = 132}, [6129] = {.lex_state = 132}, [6130] = {.lex_state = 132}, [6131] = {.lex_state = 132}, - [6132] = {.lex_state = 8}, - [6133] = {.lex_state = 8}, - [6134] = {.lex_state = 8}, - [6135] = {.lex_state = 8}, - [6136] = {.lex_state = 8}, - [6137] = {.lex_state = 8}, - [6138] = {.lex_state = 8}, - [6139] = {.lex_state = 8}, + [6132] = {.lex_state = 132}, + [6133] = {.lex_state = 132}, + [6134] = {.lex_state = 132}, + [6135] = {.lex_state = 132}, + [6136] = {.lex_state = 132}, + [6137] = {.lex_state = 132}, + [6138] = {.lex_state = 132}, + [6139] = {.lex_state = 132}, [6140] = {.lex_state = 132}, - [6141] = {.lex_state = 8}, - [6142] = {.lex_state = 8}, - [6143] = {.lex_state = 8}, - [6144] = {.lex_state = 8}, + [6141] = {.lex_state = 132}, + [6142] = {.lex_state = 132}, + [6143] = {.lex_state = 132}, + [6144] = {.lex_state = 132}, [6145] = {.lex_state = 132}, [6146] = {.lex_state = 132}, [6147] = {.lex_state = 132}, @@ -23744,59 +23667,59 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [6231] = {.lex_state = 132}, [6232] = {.lex_state = 132}, [6233] = {.lex_state = 132}, - [6234] = {.lex_state = 132}, - [6235] = {.lex_state = 132}, - [6236] = {.lex_state = 132}, + [6234] = {.lex_state = 0}, + [6235] = {.lex_state = 0}, + [6236] = {.lex_state = 0}, [6237] = {.lex_state = 132}, [6238] = {.lex_state = 132}, - [6239] = {.lex_state = 132}, - [6240] = {.lex_state = 132}, - [6241] = {.lex_state = 132}, - [6242] = {.lex_state = 132}, - [6243] = {.lex_state = 132}, - [6244] = {.lex_state = 132}, - [6245] = {.lex_state = 132}, - [6246] = {.lex_state = 132}, - [6247] = {.lex_state = 132}, - [6248] = {.lex_state = 132}, - [6249] = {.lex_state = 132}, - [6250] = {.lex_state = 132}, - [6251] = {.lex_state = 0}, - [6252] = {.lex_state = 0}, - [6253] = {.lex_state = 0}, - [6254] = {.lex_state = 132}, + [6239] = {.lex_state = 131}, + [6240] = {.lex_state = 131}, + [6241] = {.lex_state = 131}, + [6242] = {.lex_state = 131}, + [6243] = {.lex_state = 131}, + [6244] = {.lex_state = 131}, + [6245] = {.lex_state = 131}, + [6246] = {.lex_state = 131}, + [6247] = {.lex_state = 131}, + [6248] = {.lex_state = 131}, + [6249] = {.lex_state = 131}, + [6250] = {.lex_state = 131}, + [6251] = {.lex_state = 131}, + [6252] = {.lex_state = 131}, + [6253] = {.lex_state = 131}, + [6254] = {.lex_state = 131}, [6255] = {.lex_state = 131}, [6256] = {.lex_state = 131}, [6257] = {.lex_state = 131}, [6258] = {.lex_state = 131}, [6259] = {.lex_state = 131}, - [6260] = {.lex_state = 132}, + [6260] = {.lex_state = 17}, [6261] = {.lex_state = 131}, - [6262] = {.lex_state = 131}, - [6263] = {.lex_state = 131}, - [6264] = {.lex_state = 131}, - [6265] = {.lex_state = 131}, - [6266] = {.lex_state = 131}, - [6267] = {.lex_state = 131}, - [6268] = {.lex_state = 131}, + [6262] = {.lex_state = 132}, + [6263] = {.lex_state = 0}, + [6264] = {.lex_state = 17}, + [6265] = {.lex_state = 132}, + [6266] = {.lex_state = 0}, + [6267] = {.lex_state = 0}, + [6268] = {.lex_state = 132}, [6269] = {.lex_state = 131}, [6270] = {.lex_state = 0}, - [6271] = {.lex_state = 0}, - [6272] = {.lex_state = 131}, - [6273] = {.lex_state = 131}, - [6274] = {.lex_state = 0}, - [6275] = {.lex_state = 132}, - [6276] = {.lex_state = 131}, - [6277] = {.lex_state = 132}, - [6278] = {.lex_state = 17}, - [6279] = {.lex_state = 131}, - [6280] = {.lex_state = 131}, - [6281] = {.lex_state = 131}, - [6282] = {.lex_state = 131}, - [6283] = {.lex_state = 131}, - [6284] = {.lex_state = 17}, - [6285] = {.lex_state = 0}, - [6286] = {.lex_state = 132}, + [6271] = {.lex_state = 132}, + [6272] = {.lex_state = 132}, + [6273] = {.lex_state = 132}, + [6274] = {.lex_state = 131}, + [6275] = {.lex_state = 10}, + [6276] = {.lex_state = 132}, + [6277] = {.lex_state = 0}, + [6278] = {.lex_state = 132}, + [6279] = {.lex_state = 132}, + [6280] = {.lex_state = 132}, + [6281] = {.lex_state = 132}, + [6282] = {.lex_state = 132}, + [6283] = {.lex_state = 132}, + [6284] = {.lex_state = 132}, + [6285] = {.lex_state = 132}, + [6286] = {.lex_state = 131}, [6287] = {.lex_state = 132}, [6288] = {.lex_state = 132}, [6289] = {.lex_state = 132}, @@ -23807,10 +23730,10 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [6294] = {.lex_state = 132}, [6295] = {.lex_state = 132}, [6296] = {.lex_state = 132}, - [6297] = {.lex_state = 131}, - [6298] = {.lex_state = 132}, - [6299] = {.lex_state = 132}, - [6300] = {.lex_state = 132}, + [6297] = {.lex_state = 132}, + [6298] = {.lex_state = 131}, + [6299] = {.lex_state = 131}, + [6300] = {.lex_state = 131}, [6301] = {.lex_state = 132}, [6302] = {.lex_state = 132}, [6303] = {.lex_state = 132}, @@ -23818,431 +23741,431 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [6305] = {.lex_state = 132}, [6306] = {.lex_state = 132}, [6307] = {.lex_state = 132}, - [6308] = {.lex_state = 132}, + [6308] = {.lex_state = 131}, [6309] = {.lex_state = 132}, - [6310] = {.lex_state = 0}, + [6310] = {.lex_state = 132}, [6311] = {.lex_state = 132}, [6312] = {.lex_state = 132}, [6313] = {.lex_state = 132}, [6314] = {.lex_state = 132}, - [6315] = {.lex_state = 132}, - [6316] = {.lex_state = 132}, + [6315] = {.lex_state = 131}, + [6316] = {.lex_state = 131}, [6317] = {.lex_state = 132}, - [6318] = {.lex_state = 132}, + [6318] = {.lex_state = 131}, [6319] = {.lex_state = 131}, - [6320] = {.lex_state = 132}, - [6321] = {.lex_state = 132}, - [6322] = {.lex_state = 132}, - [6323] = {.lex_state = 10}, - [6324] = {.lex_state = 132}, - [6325] = {.lex_state = 132}, + [6320] = {.lex_state = 0}, + [6321] = {.lex_state = 131}, + [6322] = {.lex_state = 0}, + [6323] = {.lex_state = 132}, + [6324] = {.lex_state = 131}, + [6325] = {.lex_state = 0}, [6326] = {.lex_state = 132}, - [6327] = {.lex_state = 131}, + [6327] = {.lex_state = 18, .external_lex_state = 5}, [6328] = {.lex_state = 132}, - [6329] = {.lex_state = 132}, + [6329] = {.lex_state = 131}, [6330] = {.lex_state = 131}, - [6331] = {.lex_state = 131}, - [6332] = {.lex_state = 131}, - [6333] = {.lex_state = 0}, + [6331] = {.lex_state = 18, .external_lex_state = 5}, + [6332] = {.lex_state = 0}, + [6333] = {.lex_state = 131}, [6334] = {.lex_state = 131}, [6335] = {.lex_state = 132}, - [6336] = {.lex_state = 0}, + [6336] = {.lex_state = 131}, [6337] = {.lex_state = 0}, - [6338] = {.lex_state = 18, .external_lex_state = 5}, - [6339] = {.lex_state = 132}, - [6340] = {.lex_state = 18, .external_lex_state = 5}, - [6341] = {.lex_state = 0}, - [6342] = {.lex_state = 132}, - [6343] = {.lex_state = 0}, + [6338] = {.lex_state = 0}, + [6339] = {.lex_state = 18, .external_lex_state = 5}, + [6340] = {.lex_state = 132}, + [6341] = {.lex_state = 18, .external_lex_state = 5}, + [6342] = {.lex_state = 18, .external_lex_state = 5}, + [6343] = {.lex_state = 18, .external_lex_state = 5}, [6344] = {.lex_state = 132}, - [6345] = {.lex_state = 131}, - [6346] = {.lex_state = 18, .external_lex_state = 5}, - [6347] = {.lex_state = 0}, - [6348] = {.lex_state = 18, .external_lex_state = 5}, - [6349] = {.lex_state = 131}, - [6350] = {.lex_state = 131}, - [6351] = {.lex_state = 131}, + [6345] = {.lex_state = 132}, + [6346] = {.lex_state = 132}, + [6347] = {.lex_state = 18, .external_lex_state = 5}, + [6348] = {.lex_state = 132}, + [6349] = {.lex_state = 132}, + [6350] = {.lex_state = 132}, + [6351] = {.lex_state = 132}, [6352] = {.lex_state = 132}, [6353] = {.lex_state = 131}, - [6354] = {.lex_state = 132}, - [6355] = {.lex_state = 132}, - [6356] = {.lex_state = 131}, - [6357] = {.lex_state = 132}, + [6354] = {.lex_state = 18, .external_lex_state = 5}, + [6355] = {.lex_state = 0}, + [6356] = {.lex_state = 0}, + [6357] = {.lex_state = 0}, [6358] = {.lex_state = 18, .external_lex_state = 5}, - [6359] = {.lex_state = 18, .external_lex_state = 5}, - [6360] = {.lex_state = 18, .external_lex_state = 5}, + [6359] = {.lex_state = 132}, + [6360] = {.lex_state = 132}, [6361] = {.lex_state = 131}, [6362] = {.lex_state = 18, .external_lex_state = 5}, - [6363] = {.lex_state = 132}, + [6363] = {.lex_state = 131}, [6364] = {.lex_state = 132}, - [6365] = {.lex_state = 132}, - [6366] = {.lex_state = 131}, - [6367] = {.lex_state = 131}, - [6368] = {.lex_state = 0}, - [6369] = {.lex_state = 0}, - [6370] = {.lex_state = 132}, - [6371] = {.lex_state = 131}, - [6372] = {.lex_state = 131}, - [6373] = {.lex_state = 132}, - [6374] = {.lex_state = 18, .external_lex_state = 5}, - [6375] = {.lex_state = 132}, - [6376] = {.lex_state = 132}, - [6377] = {.lex_state = 18, .external_lex_state = 5}, - [6378] = {.lex_state = 0}, - [6379] = {.lex_state = 18, .external_lex_state = 5}, - [6380] = {.lex_state = 0, .external_lex_state = 5}, - [6381] = {.lex_state = 2}, + [6365] = {.lex_state = 131}, + [6366] = {.lex_state = 132}, + [6367] = {.lex_state = 18, .external_lex_state = 5}, + [6368] = {.lex_state = 0, .external_lex_state = 5}, + [6369] = {.lex_state = 2}, + [6370] = {.lex_state = 0, .external_lex_state = 5}, + [6371] = {.lex_state = 0, .external_lex_state = 5}, + [6372] = {.lex_state = 0, .external_lex_state = 5}, + [6373] = {.lex_state = 2}, + [6374] = {.lex_state = 0, .external_lex_state = 5}, + [6375] = {.lex_state = 2}, + [6376] = {.lex_state = 0, .external_lex_state = 5}, + [6377] = {.lex_state = 0, .external_lex_state = 5}, + [6378] = {.lex_state = 131}, + [6379] = {.lex_state = 0, .external_lex_state = 5}, + [6380] = {.lex_state = 132}, + [6381] = {.lex_state = 10}, [6382] = {.lex_state = 132}, - [6383] = {.lex_state = 0}, - [6384] = {.lex_state = 2}, - [6385] = {.lex_state = 132}, - [6386] = {.lex_state = 0, .external_lex_state = 5}, - [6387] = {.lex_state = 2}, + [6383] = {.lex_state = 0, .external_lex_state = 5}, + [6384] = {.lex_state = 0, .external_lex_state = 5}, + [6385] = {.lex_state = 0}, + [6386] = {.lex_state = 0}, + [6387] = {.lex_state = 131}, [6388] = {.lex_state = 132}, [6389] = {.lex_state = 0}, - [6390] = {.lex_state = 2}, - [6391] = {.lex_state = 2}, - [6392] = {.lex_state = 0, .external_lex_state = 5}, - [6393] = {.lex_state = 0, .external_lex_state = 5}, - [6394] = {.lex_state = 0}, - [6395] = {.lex_state = 132}, + [6390] = {.lex_state = 0}, + [6391] = {.lex_state = 132}, + [6392] = {.lex_state = 0}, + [6393] = {.lex_state = 0}, + [6394] = {.lex_state = 0, .external_lex_state = 5}, + [6395] = {.lex_state = 0}, [6396] = {.lex_state = 0}, [6397] = {.lex_state = 0, .external_lex_state = 5}, - [6398] = {.lex_state = 131}, + [6398] = {.lex_state = 2}, [6399] = {.lex_state = 0, .external_lex_state = 5}, - [6400] = {.lex_state = 2}, - [6401] = {.lex_state = 0, .external_lex_state = 5}, + [6400] = {.lex_state = 10}, + [6401] = {.lex_state = 2}, [6402] = {.lex_state = 0}, - [6403] = {.lex_state = 132}, - [6404] = {.lex_state = 0}, - [6405] = {.lex_state = 0}, - [6406] = {.lex_state = 0}, - [6407] = {.lex_state = 0, .external_lex_state = 5}, - [6408] = {.lex_state = 0, .external_lex_state = 5}, - [6409] = {.lex_state = 0}, - [6410] = {.lex_state = 131}, + [6403] = {.lex_state = 0}, + [6404] = {.lex_state = 132}, + [6405] = {.lex_state = 0, .external_lex_state = 5}, + [6406] = {.lex_state = 132}, + [6407] = {.lex_state = 2}, + [6408] = {.lex_state = 0}, + [6409] = {.lex_state = 0, .external_lex_state = 5}, + [6410] = {.lex_state = 0}, [6411] = {.lex_state = 2}, - [6412] = {.lex_state = 132}, - [6413] = {.lex_state = 131}, - [6414] = {.lex_state = 2}, - [6415] = {.lex_state = 132}, - [6416] = {.lex_state = 0}, - [6417] = {.lex_state = 0}, - [6418] = {.lex_state = 131}, - [6419] = {.lex_state = 0, .external_lex_state = 5}, - [6420] = {.lex_state = 0}, - [6421] = {.lex_state = 0}, + [6412] = {.lex_state = 0, .external_lex_state = 5}, + [6413] = {.lex_state = 0}, + [6414] = {.lex_state = 0}, + [6415] = {.lex_state = 0}, + [6416] = {.lex_state = 0, .external_lex_state = 5}, + [6417] = {.lex_state = 132}, + [6418] = {.lex_state = 132}, + [6419] = {.lex_state = 0}, + [6420] = {.lex_state = 2}, + [6421] = {.lex_state = 2}, [6422] = {.lex_state = 0}, - [6423] = {.lex_state = 0}, - [6424] = {.lex_state = 0}, + [6423] = {.lex_state = 0, .external_lex_state = 5}, + [6424] = {.lex_state = 132}, [6425] = {.lex_state = 0, .external_lex_state = 5}, [6426] = {.lex_state = 0, .external_lex_state = 5}, - [6427] = {.lex_state = 132}, - [6428] = {.lex_state = 0}, - [6429] = {.lex_state = 0, .external_lex_state = 5}, - [6430] = {.lex_state = 10}, - [6431] = {.lex_state = 132}, - [6432] = {.lex_state = 1}, - [6433] = {.lex_state = 0}, - [6434] = {.lex_state = 131}, + [6427] = {.lex_state = 0}, + [6428] = {.lex_state = 2}, + [6429] = {.lex_state = 131}, + [6430] = {.lex_state = 132}, + [6431] = {.lex_state = 0}, + [6432] = {.lex_state = 132}, + [6433] = {.lex_state = 0, .external_lex_state = 5}, + [6434] = {.lex_state = 0}, [6435] = {.lex_state = 132}, - [6436] = {.lex_state = 132}, - [6437] = {.lex_state = 132}, - [6438] = {.lex_state = 132}, - [6439] = {.lex_state = 0}, - [6440] = {.lex_state = 2}, - [6441] = {.lex_state = 132}, - [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 = 0, .external_lex_state = 5}, - [6447] = {.lex_state = 2}, + [6436] = {.lex_state = 1}, + [6437] = {.lex_state = 0, .external_lex_state = 5}, + [6438] = {.lex_state = 2}, + [6439] = {.lex_state = 131}, + [6440] = {.lex_state = 0}, + [6441] = {.lex_state = 0}, + [6442] = {.lex_state = 132}, + [6443] = {.lex_state = 1}, + [6444] = {.lex_state = 0}, + [6445] = {.lex_state = 0}, + [6446] = {.lex_state = 2}, + [6447] = {.lex_state = 132}, [6448] = {.lex_state = 132}, - [6449] = {.lex_state = 0, .external_lex_state = 5}, - [6450] = {.lex_state = 10}, - [6451] = {.lex_state = 2}, - [6452] = {.lex_state = 1}, - [6453] = {.lex_state = 0}, - [6454] = {.lex_state = 131}, - [6455] = {.lex_state = 0, .external_lex_state = 5}, + [6449] = {.lex_state = 0}, + [6450] = {.lex_state = 2}, + [6451] = {.lex_state = 1}, + [6452] = {.lex_state = 132}, + [6453] = {.lex_state = 132}, + [6454] = {.lex_state = 132}, + [6455] = {.lex_state = 132}, [6456] = {.lex_state = 0}, - [6457] = {.lex_state = 2}, - [6458] = {.lex_state = 0}, - [6459] = {.lex_state = 0, .external_lex_state = 5}, - [6460] = {.lex_state = 2}, - [6461] = {.lex_state = 0, .external_lex_state = 5}, - [6462] = {.lex_state = 0, .external_lex_state = 5}, - [6463] = {.lex_state = 0}, - [6464] = {.lex_state = 0, .external_lex_state = 5}, - [6465] = {.lex_state = 132}, - [6466] = {.lex_state = 132}, - [6467] = {.lex_state = 132}, + [6457] = {.lex_state = 132}, + [6458] = {.lex_state = 132}, + [6459] = {.lex_state = 132}, + [6460] = {.lex_state = 0}, + [6461] = {.lex_state = 1}, + [6462] = {.lex_state = 1}, + [6463] = {.lex_state = 1}, + [6464] = {.lex_state = 131}, + [6465] = {.lex_state = 1}, + [6466] = {.lex_state = 1}, + [6467] = {.lex_state = 1}, [6468] = {.lex_state = 132}, - [6469] = {.lex_state = 1}, + [6469] = {.lex_state = 0}, [6470] = {.lex_state = 132}, [6471] = {.lex_state = 0}, [6472] = {.lex_state = 1}, [6473] = {.lex_state = 132}, - [6474] = {.lex_state = 10}, + [6474] = {.lex_state = 132}, [6475] = {.lex_state = 132}, [6476] = {.lex_state = 132}, - [6477] = {.lex_state = 0}, - [6478] = {.lex_state = 132}, - [6479] = {.lex_state = 1}, + [6477] = {.lex_state = 132}, + [6478] = {.lex_state = 1}, + [6479] = {.lex_state = 132}, [6480] = {.lex_state = 132}, [6481] = {.lex_state = 132}, - [6482] = {.lex_state = 132}, + [6482] = {.lex_state = 1}, [6483] = {.lex_state = 1}, [6484] = {.lex_state = 132}, - [6485] = {.lex_state = 132}, + [6485] = {.lex_state = 1}, [6486] = {.lex_state = 0}, - [6487] = {.lex_state = 0}, - [6488] = {.lex_state = 132}, + [6487] = {.lex_state = 1}, + [6488] = {.lex_state = 1}, [6489] = {.lex_state = 132}, - [6490] = {.lex_state = 132}, - [6491] = {.lex_state = 0}, + [6490] = {.lex_state = 0}, + [6491] = {.lex_state = 1}, [6492] = {.lex_state = 1}, - [6493] = {.lex_state = 132}, - [6494] = {.lex_state = 132}, - [6495] = {.lex_state = 132}, - [6496] = {.lex_state = 132}, + [6493] = {.lex_state = 1}, + [6494] = {.lex_state = 1}, + [6495] = {.lex_state = 1}, + [6496] = {.lex_state = 1}, [6497] = {.lex_state = 132}, [6498] = {.lex_state = 1}, - [6499] = {.lex_state = 132}, - [6500] = {.lex_state = 0}, - [6501] = {.lex_state = 132}, - [6502] = {.lex_state = 1}, + [6499] = {.lex_state = 1}, + [6500] = {.lex_state = 1}, + [6501] = {.lex_state = 1}, + [6502] = {.lex_state = 131}, [6503] = {.lex_state = 0}, - [6504] = {.lex_state = 132}, - [6505] = {.lex_state = 131}, + [6504] = {.lex_state = 0}, + [6505] = {.lex_state = 132}, [6506] = {.lex_state = 1}, - [6507] = {.lex_state = 132}, + [6507] = {.lex_state = 1}, [6508] = {.lex_state = 1}, [6509] = {.lex_state = 1}, [6510] = {.lex_state = 132}, - [6511] = {.lex_state = 1}, + [6511] = {.lex_state = 132}, [6512] = {.lex_state = 1}, [6513] = {.lex_state = 132}, [6514] = {.lex_state = 132}, [6515] = {.lex_state = 132}, [6516] = {.lex_state = 132}, - [6517] = {.lex_state = 132}, - [6518] = {.lex_state = 132}, - [6519] = {.lex_state = 0}, - [6520] = {.lex_state = 1}, - [6521] = {.lex_state = 0}, + [6517] = {.lex_state = 0}, + [6518] = {.lex_state = 1}, + [6519] = {.lex_state = 132}, + [6520] = {.lex_state = 132}, + [6521] = {.lex_state = 132}, [6522] = {.lex_state = 132}, - [6523] = {.lex_state = 132}, + [6523] = {.lex_state = 131}, [6524] = {.lex_state = 132}, - [6525] = {.lex_state = 1}, + [6525] = {.lex_state = 0}, [6526] = {.lex_state = 132}, - [6527] = {.lex_state = 0}, - [6528] = {.lex_state = 132}, + [6527] = {.lex_state = 132}, + [6528] = {.lex_state = 0}, [6529] = {.lex_state = 132}, - [6530] = {.lex_state = 0}, - [6531] = {.lex_state = 0}, - [6532] = {.lex_state = 132}, - [6533] = {.lex_state = 131}, - [6534] = {.lex_state = 132}, + [6530] = {.lex_state = 132}, + [6531] = {.lex_state = 132}, + [6532] = {.lex_state = 0}, + [6533] = {.lex_state = 132}, + [6534] = {.lex_state = 0}, [6535] = {.lex_state = 132}, - [6536] = {.lex_state = 0}, + [6536] = {.lex_state = 132}, [6537] = {.lex_state = 132}, [6538] = {.lex_state = 0}, [6539] = {.lex_state = 132}, - [6540] = {.lex_state = 1}, + [6540] = {.lex_state = 132}, [6541] = {.lex_state = 132}, - [6542] = {.lex_state = 1}, - [6543] = {.lex_state = 0}, - [6544] = {.lex_state = 132}, + [6542] = {.lex_state = 132}, + [6543] = {.lex_state = 132}, + [6544] = {.lex_state = 1}, [6545] = {.lex_state = 1}, [6546] = {.lex_state = 1}, - [6547] = {.lex_state = 1}, - [6548] = {.lex_state = 1}, + [6547] = {.lex_state = 132}, + [6548] = {.lex_state = 132}, [6549] = {.lex_state = 132}, - [6550] = {.lex_state = 1}, - [6551] = {.lex_state = 1}, - [6552] = {.lex_state = 1}, - [6553] = {.lex_state = 1}, - [6554] = {.lex_state = 131}, + [6550] = {.lex_state = 0}, + [6551] = {.lex_state = 132}, + [6552] = {.lex_state = 0}, + [6553] = {.lex_state = 10}, + [6554] = {.lex_state = 1}, [6555] = {.lex_state = 132}, - [6556] = {.lex_state = 1}, - [6557] = {.lex_state = 0}, - [6558] = {.lex_state = 0}, - [6559] = {.lex_state = 1}, - [6560] = {.lex_state = 0}, - [6561] = {.lex_state = 0}, + [6556] = {.lex_state = 132}, + [6557] = {.lex_state = 132}, + [6558] = {.lex_state = 132}, + [6559] = {.lex_state = 132}, + [6560] = {.lex_state = 132}, + [6561] = {.lex_state = 132}, [6562] = {.lex_state = 132}, - [6563] = {.lex_state = 0}, - [6564] = {.lex_state = 0}, - [6565] = {.lex_state = 0}, + [6563] = {.lex_state = 132}, + [6564] = {.lex_state = 132}, + [6565] = {.lex_state = 132}, [6566] = {.lex_state = 132}, - [6567] = {.lex_state = 1}, - [6568] = {.lex_state = 132}, - [6569] = {.lex_state = 0}, + [6567] = {.lex_state = 132}, + [6568] = {.lex_state = 0}, + [6569] = {.lex_state = 1}, [6570] = {.lex_state = 132}, - [6571] = {.lex_state = 1}, + [6571] = {.lex_state = 132}, [6572] = {.lex_state = 132}, [6573] = {.lex_state = 1}, - [6574] = {.lex_state = 1}, + [6574] = {.lex_state = 132}, [6575] = {.lex_state = 132}, - [6576] = {.lex_state = 1}, - [6577] = {.lex_state = 1}, - [6578] = {.lex_state = 132}, - [6579] = {.lex_state = 10}, - [6580] = {.lex_state = 1}, + [6576] = {.lex_state = 132}, + [6577] = {.lex_state = 132}, + [6578] = {.lex_state = 0}, + [6579] = {.lex_state = 132}, + [6580] = {.lex_state = 132}, [6581] = {.lex_state = 132}, - [6582] = {.lex_state = 131}, + [6582] = {.lex_state = 132}, [6583] = {.lex_state = 132}, [6584] = {.lex_state = 132}, [6585] = {.lex_state = 132}, - [6586] = {.lex_state = 132}, + [6586] = {.lex_state = 0}, [6587] = {.lex_state = 132}, [6588] = {.lex_state = 132}, - [6589] = {.lex_state = 132}, + [6589] = {.lex_state = 1}, [6590] = {.lex_state = 132}, [6591] = {.lex_state = 132}, - [6592] = {.lex_state = 132}, - [6593] = {.lex_state = 1}, - [6594] = {.lex_state = 1}, + [6592] = {.lex_state = 1}, + [6593] = {.lex_state = 132}, + [6594] = {.lex_state = 132}, [6595] = {.lex_state = 1}, [6596] = {.lex_state = 132}, - [6597] = {.lex_state = 1}, - [6598] = {.lex_state = 1}, - [6599] = {.lex_state = 1}, - [6600] = {.lex_state = 131}, - [6601] = {.lex_state = 1}, - [6602] = {.lex_state = 132}, - [6603] = {.lex_state = 132}, - [6604] = {.lex_state = 132}, + [6597] = {.lex_state = 132}, + [6598] = {.lex_state = 132}, + [6599] = {.lex_state = 132}, + [6600] = {.lex_state = 0}, + [6601] = {.lex_state = 10}, + [6602] = {.lex_state = 0}, + [6603] = {.lex_state = 0}, + [6604] = {.lex_state = 1}, [6605] = {.lex_state = 132}, [6606] = {.lex_state = 132}, - [6607] = {.lex_state = 131}, - [6608] = {.lex_state = 0}, + [6607] = {.lex_state = 132}, + [6608] = {.lex_state = 132}, [6609] = {.lex_state = 132}, [6610] = {.lex_state = 132}, [6611] = {.lex_state = 132}, [6612] = {.lex_state = 132}, - [6613] = {.lex_state = 0}, + [6613] = {.lex_state = 132}, [6614] = {.lex_state = 132}, - [6615] = {.lex_state = 10}, - [6616] = {.lex_state = 132}, - [6617] = {.lex_state = 131}, + [6615] = {.lex_state = 132}, + [6616] = {.lex_state = 131}, + [6617] = {.lex_state = 0}, [6618] = {.lex_state = 132}, - [6619] = {.lex_state = 132}, - [6620] = {.lex_state = 132}, - [6621] = {.lex_state = 132}, - [6622] = {.lex_state = 131}, + [6619] = {.lex_state = 0}, + [6620] = {.lex_state = 0}, + [6621] = {.lex_state = 0}, + [6622] = {.lex_state = 0}, [6623] = {.lex_state = 132}, - [6624] = {.lex_state = 0}, - [6625] = {.lex_state = 132}, - [6626] = {.lex_state = 0}, - [6627] = {.lex_state = 131}, + [6624] = {.lex_state = 132}, + [6625] = {.lex_state = 18, .external_lex_state = 5}, + [6626] = {.lex_state = 132}, + [6627] = {.lex_state = 10}, [6628] = {.lex_state = 0}, [6629] = {.lex_state = 131}, - [6630] = {.lex_state = 132}, - [6631] = {.lex_state = 132}, + [6630] = {.lex_state = 0}, + [6631] = {.lex_state = 0}, [6632] = {.lex_state = 132}, - [6633] = {.lex_state = 132}, + [6633] = {.lex_state = 0}, [6634] = {.lex_state = 132}, - [6635] = {.lex_state = 131}, - [6636] = {.lex_state = 0}, + [6635] = {.lex_state = 0}, + [6636] = {.lex_state = 132}, [6637] = {.lex_state = 0}, [6638] = {.lex_state = 18, .external_lex_state = 5}, - [6639] = {.lex_state = 132}, + [6639] = {.lex_state = 0}, [6640] = {.lex_state = 0}, - [6641] = {.lex_state = 132}, - [6642] = {.lex_state = 0}, - [6643] = {.lex_state = 18, .external_lex_state = 5}, - [6644] = {.lex_state = 132}, + [6641] = {.lex_state = 0}, + [6642] = {.lex_state = 132}, + [6643] = {.lex_state = 0}, + [6644] = {.lex_state = 0}, [6645] = {.lex_state = 132}, - [6646] = {.lex_state = 132}, + [6646] = {.lex_state = 0}, [6647] = {.lex_state = 132}, - [6648] = {.lex_state = 10}, + [6648] = {.lex_state = 132}, [6649] = {.lex_state = 132}, [6650] = {.lex_state = 10}, - [6651] = {.lex_state = 131}, - [6652] = {.lex_state = 0}, - [6653] = {.lex_state = 18, .external_lex_state = 5}, - [6654] = {.lex_state = 131}, - [6655] = {.lex_state = 0}, - [6656] = {.lex_state = 0}, - [6657] = {.lex_state = 10}, - [6658] = {.lex_state = 132}, - [6659] = {.lex_state = 131}, + [6651] = {.lex_state = 4}, + [6652] = {.lex_state = 131}, + [6653] = {.lex_state = 10}, + [6654] = {.lex_state = 132}, + [6655] = {.lex_state = 132}, + [6656] = {.lex_state = 132}, + [6657] = {.lex_state = 132}, + [6658] = {.lex_state = 0}, + [6659] = {.lex_state = 0}, [6660] = {.lex_state = 132}, [6661] = {.lex_state = 0}, - [6662] = {.lex_state = 132}, + [6662] = {.lex_state = 0}, [6663] = {.lex_state = 132}, [6664] = {.lex_state = 132}, - [6665] = {.lex_state = 0}, - [6666] = {.lex_state = 0}, - [6667] = {.lex_state = 132}, - [6668] = {.lex_state = 10}, + [6665] = {.lex_state = 132}, + [6666] = {.lex_state = 132}, + [6667] = {.lex_state = 2}, + [6668] = {.lex_state = 132}, [6669] = {.lex_state = 0}, - [6670] = {.lex_state = 132}, - [6671] = {.lex_state = 132}, - [6672] = {.lex_state = 132}, - [6673] = {.lex_state = 132}, + [6670] = {.lex_state = 0}, + [6671] = {.lex_state = 10}, + [6672] = {.lex_state = 10}, + [6673] = {.lex_state = 131}, [6674] = {.lex_state = 132}, [6675] = {.lex_state = 132}, [6676] = {.lex_state = 132}, - [6677] = {.lex_state = 132}, - [6678] = {.lex_state = 10}, - [6679] = {.lex_state = 10}, + [6677] = {.lex_state = 0}, + [6678] = {.lex_state = 0}, + [6679] = {.lex_state = 0}, [6680] = {.lex_state = 132}, - [6681] = {.lex_state = 132}, - [6682] = {.lex_state = 10}, - [6683] = {.lex_state = 0}, - [6684] = {.lex_state = 131}, - [6685] = {.lex_state = 0}, - [6686] = {.lex_state = 132}, - [6687] = {.lex_state = 131}, + [6681] = {.lex_state = 10}, + [6682] = {.lex_state = 2}, + [6683] = {.lex_state = 132}, + [6684] = {.lex_state = 0}, + [6685] = {.lex_state = 10}, + [6686] = {.lex_state = 0}, + [6687] = {.lex_state = 132}, [6688] = {.lex_state = 132}, - [6689] = {.lex_state = 132}, - [6690] = {.lex_state = 0}, - [6691] = {.lex_state = 132}, - [6692] = {.lex_state = 0}, - [6693] = {.lex_state = 132}, - [6694] = {.lex_state = 10}, + [6689] = {.lex_state = 2}, + [6690] = {.lex_state = 132}, + [6691] = {.lex_state = 18, .external_lex_state = 5}, + [6692] = {.lex_state = 132}, + [6693] = {.lex_state = 131}, + [6694] = {.lex_state = 132}, [6695] = {.lex_state = 132}, - [6696] = {.lex_state = 132}, - [6697] = {.lex_state = 18, .external_lex_state = 5}, + [6696] = {.lex_state = 0}, + [6697] = {.lex_state = 0}, [6698] = {.lex_state = 132}, [6699] = {.lex_state = 132}, [6700] = {.lex_state = 132}, - [6701] = {.lex_state = 132}, + [6701] = {.lex_state = 0}, [6702] = {.lex_state = 132}, [6703] = {.lex_state = 132}, - [6704] = {.lex_state = 2}, + [6704] = {.lex_state = 0}, [6705] = {.lex_state = 132}, - [6706] = {.lex_state = 132}, + [6706] = {.lex_state = 10}, [6707] = {.lex_state = 132}, - [6708] = {.lex_state = 4}, + [6708] = {.lex_state = 0}, [6709] = {.lex_state = 132}, - [6710] = {.lex_state = 132}, - [6711] = {.lex_state = 132}, - [6712] = {.lex_state = 132}, + [6710] = {.lex_state = 0}, + [6711] = {.lex_state = 131}, + [6712] = {.lex_state = 18, .external_lex_state = 5}, [6713] = {.lex_state = 132}, - [6714] = {.lex_state = 132}, - [6715] = {.lex_state = 0}, - [6716] = {.lex_state = 132}, - [6717] = {.lex_state = 132}, - [6718] = {.lex_state = 132}, - [6719] = {.lex_state = 132}, - [6720] = {.lex_state = 132}, - [6721] = {.lex_state = 132}, - [6722] = {.lex_state = 2}, + [6714] = {.lex_state = 0}, + [6715] = {.lex_state = 132}, + [6716] = {.lex_state = 0}, + [6717] = {.lex_state = 0}, + [6718] = {.lex_state = 0}, + [6719] = {.lex_state = 10}, + [6720] = {.lex_state = 18, .external_lex_state = 5}, + [6721] = {.lex_state = 0}, + [6722] = {.lex_state = 0}, [6723] = {.lex_state = 0}, - [6724] = {.lex_state = 18, .external_lex_state = 5}, - [6725] = {.lex_state = 132}, - [6726] = {.lex_state = 2}, + [6724] = {.lex_state = 0}, + [6725] = {.lex_state = 0}, + [6726] = {.lex_state = 10}, [6727] = {.lex_state = 0}, - [6728] = {.lex_state = 132}, + [6728] = {.lex_state = 0}, [6729] = {.lex_state = 0}, [6730] = {.lex_state = 0}, - [6731] = {.lex_state = 0}, - [6732] = {.lex_state = 0}, + [6731] = {.lex_state = 132}, + [6732] = {.lex_state = 10}, [6733] = {.lex_state = 0}, [6734] = {.lex_state = 0}, [6735] = {.lex_state = 0}, @@ -24254,48 +24177,48 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [6741] = {.lex_state = 0}, [6742] = {.lex_state = 0}, [6743] = {.lex_state = 0}, - [6744] = {.lex_state = 0}, + [6744] = {.lex_state = 10}, [6745] = {.lex_state = 0}, - [6746] = {.lex_state = 0}, + [6746] = {.lex_state = 0, .external_lex_state = 5}, [6747] = {.lex_state = 0}, [6748] = {.lex_state = 0}, [6749] = {.lex_state = 0}, [6750] = {.lex_state = 0}, [6751] = {.lex_state = 0}, - [6752] = {.lex_state = 132}, + [6752] = {.lex_state = 0}, [6753] = {.lex_state = 0}, - [6754] = {.lex_state = 0}, + [6754] = {.lex_state = 132}, [6755] = {.lex_state = 0}, - [6756] = {.lex_state = 10}, - [6757] = {.lex_state = 0}, - [6758] = {.lex_state = 10}, - [6759] = {.lex_state = 132}, + [6756] = {.lex_state = 1}, + [6757] = {.lex_state = 10}, + [6758] = {.lex_state = 0}, + [6759] = {.lex_state = 0}, [6760] = {.lex_state = 0}, - [6761] = {.lex_state = 0, .external_lex_state = 5}, + [6761] = {.lex_state = 0}, [6762] = {.lex_state = 10}, [6763] = {.lex_state = 0}, - [6764] = {.lex_state = 10}, + [6764] = {.lex_state = 0}, [6765] = {.lex_state = 0}, - [6766] = {.lex_state = 0}, - [6767] = {.lex_state = 10}, + [6766] = {.lex_state = 132}, + [6767] = {.lex_state = 0}, [6768] = {.lex_state = 0}, [6769] = {.lex_state = 0}, [6770] = {.lex_state = 0}, - [6771] = {.lex_state = 1}, + [6771] = {.lex_state = 0}, [6772] = {.lex_state = 0}, - [6773] = {.lex_state = 0}, + [6773] = {.lex_state = 10}, [6774] = {.lex_state = 0}, [6775] = {.lex_state = 0}, [6776] = {.lex_state = 0}, - [6777] = {.lex_state = 0}, - [6778] = {.lex_state = 0, .external_lex_state = 5}, + [6777] = {.lex_state = 132}, + [6778] = {.lex_state = 0}, [6779] = {.lex_state = 0}, [6780] = {.lex_state = 0}, [6781] = {.lex_state = 0}, [6782] = {.lex_state = 0}, - [6783] = {.lex_state = 10}, - [6784] = {.lex_state = 0}, - [6785] = {.lex_state = 10}, + [6783] = {.lex_state = 0}, + [6784] = {.lex_state = 10}, + [6785] = {.lex_state = 0}, [6786] = {.lex_state = 0}, [6787] = {.lex_state = 0}, [6788] = {.lex_state = 0}, @@ -24303,20 +24226,20 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [6790] = {.lex_state = 0}, [6791] = {.lex_state = 0}, [6792] = {.lex_state = 0}, - [6793] = {.lex_state = 0}, + [6793] = {.lex_state = 10}, [6794] = {.lex_state = 0}, [6795] = {.lex_state = 0}, - [6796] = {.lex_state = 0}, + [6796] = {.lex_state = 132}, [6797] = {.lex_state = 0}, [6798] = {.lex_state = 0}, [6799] = {.lex_state = 0}, - [6800] = {.lex_state = 0}, + [6800] = {.lex_state = 10}, [6801] = {.lex_state = 0}, [6802] = {.lex_state = 0}, [6803] = {.lex_state = 0}, [6804] = {.lex_state = 0}, [6805] = {.lex_state = 0}, - [6806] = {.lex_state = 132}, + [6806] = {.lex_state = 0}, [6807] = {.lex_state = 0}, [6808] = {.lex_state = 0}, [6809] = {.lex_state = 0}, @@ -24328,78 +24251,78 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [6815] = {.lex_state = 0}, [6816] = {.lex_state = 0}, [6817] = {.lex_state = 0}, - [6818] = {.lex_state = 0}, - [6819] = {.lex_state = 0}, + [6818] = {.lex_state = 10}, + [6819] = {.lex_state = 10}, [6820] = {.lex_state = 0}, [6821] = {.lex_state = 0}, [6822] = {.lex_state = 0}, [6823] = {.lex_state = 0}, [6824] = {.lex_state = 0}, [6825] = {.lex_state = 0}, - [6826] = {.lex_state = 0}, - [6827] = {.lex_state = 0}, + [6826] = {.lex_state = 10}, + [6827] = {.lex_state = 1}, [6828] = {.lex_state = 0}, [6829] = {.lex_state = 0}, [6830] = {.lex_state = 0}, [6831] = {.lex_state = 0}, - [6832] = {.lex_state = 10}, + [6832] = {.lex_state = 0}, [6833] = {.lex_state = 0}, - [6834] = {.lex_state = 0}, + [6834] = {.lex_state = 132}, [6835] = {.lex_state = 0}, - [6836] = {.lex_state = 0}, - [6837] = {.lex_state = 0}, + [6836] = {.lex_state = 132}, + [6837] = {.lex_state = 10}, [6838] = {.lex_state = 0}, [6839] = {.lex_state = 0}, [6840] = {.lex_state = 0}, [6841] = {.lex_state = 0}, - [6842] = {.lex_state = 10}, - [6843] = {.lex_state = 10}, + [6842] = {.lex_state = 1}, + [6843] = {.lex_state = 0}, [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 = 10}, + [6848] = {.lex_state = 10}, + [6849] = {.lex_state = 10}, + [6850] = {.lex_state = 0}, [6851] = {.lex_state = 0}, - [6852] = {.lex_state = 10}, - [6853] = {.lex_state = 10}, + [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}, + [6857] = {.lex_state = 0, .external_lex_state = 5}, + [6858] = {.lex_state = 0}, [6859] = {.lex_state = 0}, [6860] = {.lex_state = 0}, [6861] = {.lex_state = 0}, [6862] = {.lex_state = 0}, - [6863] = {.lex_state = 10}, + [6863] = {.lex_state = 0}, [6864] = {.lex_state = 0}, [6865] = {.lex_state = 0}, [6866] = {.lex_state = 0}, - [6867] = {.lex_state = 131, .external_lex_state = 4}, - [6868] = {.lex_state = 10}, + [6867] = {.lex_state = 0}, + [6868] = {.lex_state = 0}, [6869] = {.lex_state = 0}, [6870] = {.lex_state = 0}, - [6871] = {.lex_state = 0}, + [6871] = {.lex_state = 10}, [6872] = {.lex_state = 0}, [6873] = {.lex_state = 0}, - [6874] = {.lex_state = 1}, + [6874] = {.lex_state = 0}, [6875] = {.lex_state = 0}, [6876] = {.lex_state = 10}, [6877] = {.lex_state = 10}, [6878] = {.lex_state = 10}, - [6879] = {.lex_state = 0}, + [6879] = {.lex_state = 10}, [6880] = {.lex_state = 0}, [6881] = {.lex_state = 0}, - [6882] = {.lex_state = 132}, - [6883] = {.lex_state = 132}, - [6884] = {.lex_state = 10}, - [6885] = {.lex_state = 10}, + [6882] = {.lex_state = 0}, + [6883] = {.lex_state = 0}, + [6884] = {.lex_state = 0}, + [6885] = {.lex_state = 0}, [6886] = {.lex_state = 0}, - [6887] = {.lex_state = 0}, - [6888] = {.lex_state = 0}, - [6889] = {.lex_state = 10}, + [6887] = {.lex_state = 1}, + [6888] = {.lex_state = 10}, + [6889] = {.lex_state = 0}, [6890] = {.lex_state = 0}, [6891] = {.lex_state = 0}, [6892] = {.lex_state = 0}, @@ -24408,119 +24331,119 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [6895] = {.lex_state = 0}, [6896] = {.lex_state = 0}, [6897] = {.lex_state = 0}, - [6898] = {.lex_state = 4}, + [6898] = {.lex_state = 0}, [6899] = {.lex_state = 0}, [6900] = {.lex_state = 0}, [6901] = {.lex_state = 0}, [6902] = {.lex_state = 0}, - [6903] = {.lex_state = 132}, + [6903] = {.lex_state = 0}, [6904] = {.lex_state = 0}, [6905] = {.lex_state = 0}, [6906] = {.lex_state = 0}, [6907] = {.lex_state = 0}, - [6908] = {.lex_state = 10}, + [6908] = {.lex_state = 0}, [6909] = {.lex_state = 0}, - [6910] = {.lex_state = 0}, + [6910] = {.lex_state = 10}, [6911] = {.lex_state = 0}, - [6912] = {.lex_state = 10}, - [6913] = {.lex_state = 1}, - [6914] = {.lex_state = 0}, - [6915] = {.lex_state = 10}, + [6912] = {.lex_state = 0}, + [6913] = {.lex_state = 0}, + [6914] = {.lex_state = 10}, + [6915] = {.lex_state = 0}, [6916] = {.lex_state = 0}, - [6917] = {.lex_state = 10}, - [6918] = {.lex_state = 0}, + [6917] = {.lex_state = 0}, + [6918] = {.lex_state = 10}, [6919] = {.lex_state = 0}, - [6920] = {.lex_state = 0}, + [6920] = {.lex_state = 1}, [6921] = {.lex_state = 0}, - [6922] = {.lex_state = 0}, + [6922] = {.lex_state = 10}, [6923] = {.lex_state = 0}, [6924] = {.lex_state = 0}, - [6925] = {.lex_state = 0}, - [6926] = {.lex_state = 0}, - [6927] = {.lex_state = 0}, - [6928] = {.lex_state = 0, .external_lex_state = 5}, - [6929] = {.lex_state = 0}, + [6925] = {.lex_state = 0, .external_lex_state = 5}, + [6926] = {.lex_state = 10}, + [6927] = {.lex_state = 10}, + [6928] = {.lex_state = 10}, + [6929] = {.lex_state = 10}, [6930] = {.lex_state = 0}, - [6931] = {.lex_state = 0}, + [6931] = {.lex_state = 10}, [6932] = {.lex_state = 0}, - [6933] = {.lex_state = 10}, + [6933] = {.lex_state = 0}, [6934] = {.lex_state = 0}, - [6935] = {.lex_state = 1}, + [6935] = {.lex_state = 0}, [6936] = {.lex_state = 0}, - [6937] = {.lex_state = 10}, - [6938] = {.lex_state = 10}, - [6939] = {.lex_state = 10}, + [6937] = {.lex_state = 0}, + [6938] = {.lex_state = 0}, + [6939] = {.lex_state = 0}, [6940] = {.lex_state = 0}, [6941] = {.lex_state = 0}, [6942] = {.lex_state = 0}, - [6943] = {.lex_state = 132}, + [6943] = {.lex_state = 0}, [6944] = {.lex_state = 0}, [6945] = {.lex_state = 0}, [6946] = {.lex_state = 0}, [6947] = {.lex_state = 0}, [6948] = {.lex_state = 0}, - [6949] = {.lex_state = 0}, + [6949] = {.lex_state = 131, .external_lex_state = 4}, [6950] = {.lex_state = 0}, - [6951] = {.lex_state = 0}, + [6951] = {.lex_state = 0, .external_lex_state = 5}, [6952] = {.lex_state = 0}, - [6953] = {.lex_state = 1}, + [6953] = {.lex_state = 0}, [6954] = {.lex_state = 0}, [6955] = {.lex_state = 0}, - [6956] = {.lex_state = 0}, - [6957] = {.lex_state = 0}, + [6956] = {.lex_state = 10}, + [6957] = {.lex_state = 10}, [6958] = {.lex_state = 0}, [6959] = {.lex_state = 0}, [6960] = {.lex_state = 0}, [6961] = {.lex_state = 0}, [6962] = {.lex_state = 0}, - [6963] = {.lex_state = 0}, - [6964] = {.lex_state = 0}, + [6963] = {.lex_state = 10}, + [6964] = {.lex_state = 10}, [6965] = {.lex_state = 0}, - [6966] = {.lex_state = 0}, + [6966] = {.lex_state = 10}, [6967] = {.lex_state = 0}, [6968] = {.lex_state = 0}, [6969] = {.lex_state = 0}, [6970] = {.lex_state = 0}, - [6971] = {.lex_state = 10}, + [6971] = {.lex_state = 0}, [6972] = {.lex_state = 0}, [6973] = {.lex_state = 0}, [6974] = {.lex_state = 0}, [6975] = {.lex_state = 0}, - [6976] = {.lex_state = 0}, + [6976] = {.lex_state = 4}, [6977] = {.lex_state = 0}, [6978] = {.lex_state = 0}, [6979] = {.lex_state = 0}, - [6980] = {.lex_state = 10}, - [6981] = {.lex_state = 10}, - [6982] = {.lex_state = 10}, - [6983] = {.lex_state = 0}, + [6980] = {.lex_state = 0}, + [6981] = {.lex_state = 0}, + [6982] = {.lex_state = 0}, + [6983] = {.lex_state = 10}, [6984] = {.lex_state = 10}, - [6985] = {.lex_state = 0}, - [6986] = {.lex_state = 0}, - [6987] = {.lex_state = 0}, + [6985] = {.lex_state = 10}, + [6986] = {.lex_state = 10}, + [6987] = {.lex_state = 10}, [6988] = {.lex_state = 0}, - [6989] = {.lex_state = 0}, + [6989] = {.lex_state = 132}, [6990] = {.lex_state = 0}, - [6991] = {.lex_state = 0}, + [6991] = {.lex_state = 10}, [6992] = {.lex_state = 10}, - [6993] = {.lex_state = 10}, + [6993] = {.lex_state = 0}, [6994] = {.lex_state = 0}, - [6995] = {.lex_state = 10}, + [6995] = {.lex_state = 0}, [6996] = {.lex_state = 0}, - [6997] = {.lex_state = 0}, + [6997] = {.lex_state = 10}, [6998] = {.lex_state = 0}, [6999] = {.lex_state = 10}, [7000] = {.lex_state = 10}, - [7001] = {.lex_state = 0}, + [7001] = {.lex_state = 132}, [7002] = {.lex_state = 0}, [7003] = {.lex_state = 0}, - [7004] = {.lex_state = 0}, - [7005] = {.lex_state = 10}, - [7006] = {.lex_state = 10}, + [7004] = {.lex_state = 10}, + [7005] = {.lex_state = 0}, + [7006] = {.lex_state = 0}, [7007] = {.lex_state = 10}, [7008] = {.lex_state = 0}, [7009] = {.lex_state = 0}, - [7010] = {.lex_state = 132}, + [7010] = {.lex_state = 0}, [7011] = {.lex_state = 0}, [7012] = {.lex_state = 0}, [7013] = {.lex_state = 0}, @@ -24530,288 +24453,288 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [7017] = {.lex_state = 0}, [7018] = {.lex_state = 0}, [7019] = {.lex_state = 0}, - [7020] = {.lex_state = 10}, + [7020] = {.lex_state = 0}, [7021] = {.lex_state = 0}, - [7022] = {.lex_state = 10}, + [7022] = {.lex_state = 0}, [7023] = {.lex_state = 0}, - [7024] = {.lex_state = 10}, + [7024] = {.lex_state = 0}, [7025] = {.lex_state = 0}, [7026] = {.lex_state = 0}, [7027] = {.lex_state = 0}, [7028] = {.lex_state = 0}, - [7029] = {.lex_state = 10}, - [7030] = {.lex_state = 10}, + [7029] = {.lex_state = 0}, + [7030] = {.lex_state = 0}, [7031] = {.lex_state = 0}, [7032] = {.lex_state = 0}, - [7033] = {.lex_state = 0}, - [7034] = {.lex_state = 0, .external_lex_state = 5}, - [7035] = {.lex_state = 0}, + [7033] = {.lex_state = 14}, + [7034] = {.lex_state = 0}, + [7035] = {.lex_state = 10}, [7036] = {.lex_state = 0}, - [7037] = {.lex_state = 132}, - [7038] = {.lex_state = 14}, - [7039] = {.lex_state = 0}, - [7040] = {.lex_state = 0}, - [7041] = {.lex_state = 132}, - [7042] = {.lex_state = 0}, - [7043] = {.lex_state = 0}, - [7044] = {.lex_state = 0}, + [7037] = {.lex_state = 0}, + [7038] = {.lex_state = 132}, + [7039] = {.lex_state = 132}, + [7040] = {.lex_state = 3}, + [7041] = {.lex_state = 0}, + [7042] = {.lex_state = 10}, + [7043] = {.lex_state = 132}, + [7044] = {.lex_state = 3}, [7045] = {.lex_state = 0}, - [7046] = {.lex_state = 132}, - [7047] = {.lex_state = 10}, - [7048] = {.lex_state = 10}, - [7049] = {.lex_state = 0}, + [7046] = {.lex_state = 0}, + [7047] = {.lex_state = 132}, + [7048] = {.lex_state = 0}, + [7049] = {.lex_state = 132}, [7050] = {.lex_state = 0}, [7051] = {.lex_state = 0}, - [7052] = {.lex_state = 132}, + [7052] = {.lex_state = 0}, [7053] = {.lex_state = 0}, [7054] = {.lex_state = 132}, - [7055] = {.lex_state = 132}, + [7055] = {.lex_state = 0}, [7056] = {.lex_state = 0}, - [7057] = {.lex_state = 0}, - [7058] = {.lex_state = 132}, - [7059] = {.lex_state = 132}, - [7060] = {.lex_state = 132}, - [7061] = {.lex_state = 14}, - [7062] = {.lex_state = 0}, + [7057] = {.lex_state = 132}, + [7058] = {.lex_state = 0}, + [7059] = {.lex_state = 0}, + [7060] = {.lex_state = 0}, + [7061] = {.lex_state = 0}, + [7062] = {.lex_state = 132}, [7063] = {.lex_state = 0}, - [7064] = {.lex_state = 0}, - [7065] = {.lex_state = 14}, - [7066] = {.lex_state = 132}, + [7064] = {.lex_state = 132}, + [7065] = {.lex_state = 0}, + [7066] = {.lex_state = 0}, [7067] = {.lex_state = 0}, - [7068] = {.lex_state = 0}, + [7068] = {.lex_state = 132}, [7069] = {.lex_state = 0}, - [7070] = {.lex_state = 132}, - [7071] = {.lex_state = 3}, + [7070] = {.lex_state = 0}, + [7071] = {.lex_state = 10}, [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 = 132}, [7078] = {.lex_state = 0}, - [7079] = {.lex_state = 0}, - [7080] = {.lex_state = 132}, + [7079] = {.lex_state = 132}, + [7080] = {.lex_state = 0}, [7081] = {.lex_state = 0}, - [7082] = {.lex_state = 0}, + [7082] = {.lex_state = 132}, [7083] = {.lex_state = 0}, [7084] = {.lex_state = 132}, - [7085] = {.lex_state = 132}, + [7085] = {.lex_state = 0}, [7086] = {.lex_state = 132}, - [7087] = {.lex_state = 132}, - [7088] = {.lex_state = 132}, - [7089] = {.lex_state = 132}, + [7087] = {.lex_state = 0}, + [7088] = {.lex_state = 0}, + [7089] = {.lex_state = 0}, [7090] = {.lex_state = 132}, [7091] = {.lex_state = 0}, [7092] = {.lex_state = 0}, [7093] = {.lex_state = 0}, - [7094] = {.lex_state = 0}, - [7095] = {.lex_state = 132}, - [7096] = {.lex_state = 0}, - [7097] = {.lex_state = 0}, + [7094] = {.lex_state = 132}, + [7095] = {.lex_state = 0}, + [7096] = {.lex_state = 132}, + [7097] = {.lex_state = 132}, [7098] = {.lex_state = 0}, - [7099] = {.lex_state = 10}, + [7099] = {.lex_state = 0}, [7100] = {.lex_state = 0}, [7101] = {.lex_state = 0}, - [7102] = {.lex_state = 0}, + [7102] = {.lex_state = 10}, [7103] = {.lex_state = 0}, - [7104] = {.lex_state = 132}, - [7105] = {.lex_state = 132}, + [7104] = {.lex_state = 0}, + [7105] = {.lex_state = 0}, [7106] = {.lex_state = 0}, - [7107] = {.lex_state = 0}, - [7108] = {.lex_state = 132}, - [7109] = {.lex_state = 0}, - [7110] = {.lex_state = 10}, - [7111] = {.lex_state = 0}, + [7107] = {.lex_state = 10}, + [7108] = {.lex_state = 14}, + [7109] = {.lex_state = 10}, + [7110] = {.lex_state = 0}, + [7111] = {.lex_state = 10}, [7112] = {.lex_state = 0}, [7113] = {.lex_state = 0}, - [7114] = {.lex_state = 132}, - [7115] = {.lex_state = 0}, + [7114] = {.lex_state = 0}, + [7115] = {.lex_state = 1}, [7116] = {.lex_state = 0}, - [7117] = {.lex_state = 0}, - [7118] = {.lex_state = 132}, + [7117] = {.lex_state = 132}, + [7118] = {.lex_state = 0}, [7119] = {.lex_state = 0}, - [7120] = {.lex_state = 132}, + [7120] = {.lex_state = 0}, [7121] = {.lex_state = 0}, [7122] = {.lex_state = 0}, [7123] = {.lex_state = 0}, - [7124] = {.lex_state = 1}, + [7124] = {.lex_state = 132}, [7125] = {.lex_state = 0}, - [7126] = {.lex_state = 132}, - [7127] = {.lex_state = 0}, - [7128] = {.lex_state = 0}, - [7129] = {.lex_state = 132}, + [7126] = {.lex_state = 0}, + [7127] = {.lex_state = 14}, + [7128] = {.lex_state = 132}, + [7129] = {.lex_state = 0}, [7130] = {.lex_state = 0}, [7131] = {.lex_state = 0}, [7132] = {.lex_state = 0}, [7133] = {.lex_state = 0}, [7134] = {.lex_state = 0}, - [7135] = {.lex_state = 132}, + [7135] = {.lex_state = 1}, [7136] = {.lex_state = 0}, [7137] = {.lex_state = 0}, [7138] = {.lex_state = 0}, - [7139] = {.lex_state = 132}, + [7139] = {.lex_state = 0}, [7140] = {.lex_state = 0}, - [7141] = {.lex_state = 132}, - [7142] = {.lex_state = 0}, + [7141] = {.lex_state = 0}, + [7142] = {.lex_state = 10}, [7143] = {.lex_state = 0}, - [7144] = {.lex_state = 132}, - [7145] = {.lex_state = 132}, + [7144] = {.lex_state = 0}, + [7145] = {.lex_state = 10}, [7146] = {.lex_state = 0}, [7147] = {.lex_state = 0}, [7148] = {.lex_state = 0}, - [7149] = {.lex_state = 132}, + [7149] = {.lex_state = 0}, [7150] = {.lex_state = 0}, [7151] = {.lex_state = 0}, [7152] = {.lex_state = 0}, - [7153] = {.lex_state = 132}, + [7153] = {.lex_state = 0}, [7154] = {.lex_state = 0}, [7155] = {.lex_state = 0}, - [7156] = {.lex_state = 132}, + [7156] = {.lex_state = 10}, [7157] = {.lex_state = 0}, [7158] = {.lex_state = 132}, - [7159] = {.lex_state = 132}, - [7160] = {.lex_state = 10}, - [7161] = {.lex_state = 10}, + [7159] = {.lex_state = 0}, + [7160] = {.lex_state = 0}, + [7161] = {.lex_state = 0}, [7162] = {.lex_state = 0}, - [7163] = {.lex_state = 3}, + [7163] = {.lex_state = 0}, [7164] = {.lex_state = 0}, [7165] = {.lex_state = 0}, - [7166] = {.lex_state = 132}, + [7166] = {.lex_state = 0}, [7167] = {.lex_state = 0}, - [7168] = {.lex_state = 0}, + [7168] = {.lex_state = 132}, [7169] = {.lex_state = 132}, [7170] = {.lex_state = 132}, [7171] = {.lex_state = 132}, - [7172] = {.lex_state = 0}, - [7173] = {.lex_state = 0}, - [7174] = {.lex_state = 0}, - [7175] = {.lex_state = 0}, - [7176] = {.lex_state = 0}, + [7172] = {.lex_state = 132}, + [7173] = {.lex_state = 132}, + [7174] = {.lex_state = 132}, + [7175] = {.lex_state = 132}, + [7176] = {.lex_state = 132}, [7177] = {.lex_state = 0}, [7178] = {.lex_state = 0}, [7179] = {.lex_state = 0}, [7180] = {.lex_state = 0}, [7181] = {.lex_state = 0}, - [7182] = {.lex_state = 0}, - [7183] = {.lex_state = 0}, + [7182] = {.lex_state = 132}, + [7183] = {.lex_state = 132}, [7184] = {.lex_state = 132}, [7185] = {.lex_state = 0}, [7186] = {.lex_state = 0}, - [7187] = {.lex_state = 0}, + [7187] = {.lex_state = 132}, [7188] = {.lex_state = 0}, - [7189] = {.lex_state = 0}, + [7189] = {.lex_state = 132}, [7190] = {.lex_state = 0}, - [7191] = {.lex_state = 0}, + [7191] = {.lex_state = 132}, [7192] = {.lex_state = 0}, - [7193] = {.lex_state = 1}, - [7194] = {.lex_state = 0}, + [7193] = {.lex_state = 0}, + [7194] = {.lex_state = 132}, [7195] = {.lex_state = 0}, - [7196] = {.lex_state = 10}, - [7197] = {.lex_state = 0}, - [7198] = {.lex_state = 132}, - [7199] = {.lex_state = 132}, + [7196] = {.lex_state = 0}, + [7197] = {.lex_state = 14}, + [7198] = {.lex_state = 0}, + [7199] = {.lex_state = 0}, [7200] = {.lex_state = 132}, - [7201] = {.lex_state = 10}, + [7201] = {.lex_state = 0}, [7202] = {.lex_state = 0}, [7203] = {.lex_state = 0}, [7204] = {.lex_state = 0}, - [7205] = {.lex_state = 0}, - [7206] = {.lex_state = 14}, + [7205] = {.lex_state = 132}, + [7206] = {.lex_state = 0}, [7207] = {.lex_state = 0}, [7208] = {.lex_state = 0}, - [7209] = {.lex_state = 0}, + [7209] = {.lex_state = 132}, [7210] = {.lex_state = 0}, - [7211] = {.lex_state = 0}, - [7212] = {.lex_state = 132}, + [7211] = {.lex_state = 132}, + [7212] = {.lex_state = 0}, [7213] = {.lex_state = 0}, [7214] = {.lex_state = 0}, [7215] = {.lex_state = 0}, [7216] = {.lex_state = 0}, - [7217] = {.lex_state = 0}, + [7217] = {.lex_state = 132}, [7218] = {.lex_state = 0}, [7219] = {.lex_state = 0}, [7220] = {.lex_state = 0}, [7221] = {.lex_state = 132}, - [7222] = {.lex_state = 0}, - [7223] = {.lex_state = 0}, - [7224] = {.lex_state = 132}, + [7222] = {.lex_state = 132}, + [7223] = {.lex_state = 14}, + [7224] = {.lex_state = 0}, [7225] = {.lex_state = 0}, - [7226] = {.lex_state = 0}, + [7226] = {.lex_state = 132}, [7227] = {.lex_state = 0}, - [7228] = {.lex_state = 0}, - [7229] = {.lex_state = 0}, - [7230] = {.lex_state = 10}, + [7228] = {.lex_state = 132}, + [7229] = {.lex_state = 132}, + [7230] = {.lex_state = 132}, [7231] = {.lex_state = 132}, - [7232] = {.lex_state = 1}, + [7232] = {.lex_state = 132}, [7233] = {.lex_state = 0}, [7234] = {.lex_state = 0}, [7235] = {.lex_state = 0}, [7236] = {.lex_state = 0}, - [7237] = {.lex_state = 0}, + [7237] = {.lex_state = 132}, [7238] = {.lex_state = 0}, - [7239] = {.lex_state = 0}, + [7239] = {.lex_state = 14}, [7240] = {.lex_state = 0}, [7241] = {.lex_state = 0}, - [7242] = {.lex_state = 0}, + [7242] = {.lex_state = 132}, [7243] = {.lex_state = 0}, [7244] = {.lex_state = 0}, [7245] = {.lex_state = 0}, [7246] = {.lex_state = 0}, - [7247] = {.lex_state = 0}, + [7247] = {.lex_state = 1}, [7248] = {.lex_state = 0}, - [7249] = {.lex_state = 132}, + [7249] = {.lex_state = 0}, [7250] = {.lex_state = 0}, [7251] = {.lex_state = 0}, - [7252] = {.lex_state = 132}, + [7252] = {.lex_state = 0}, [7253] = {.lex_state = 0}, [7254] = {.lex_state = 0}, - [7255] = {.lex_state = 0}, + [7255] = {.lex_state = 132}, [7256] = {.lex_state = 0}, [7257] = {.lex_state = 0}, - [7258] = {.lex_state = 132}, + [7258] = {.lex_state = 0}, [7259] = {.lex_state = 0}, - [7260] = {.lex_state = 0}, + [7260] = {.lex_state = 132}, [7261] = {.lex_state = 0}, [7262] = {.lex_state = 0}, - [7263] = {.lex_state = 132}, + [7263] = {.lex_state = 0}, [7264] = {.lex_state = 0}, [7265] = {.lex_state = 0}, - [7266] = {.lex_state = 10}, + [7266] = {.lex_state = 0}, [7267] = {.lex_state = 0}, [7268] = {.lex_state = 0}, - [7269] = {.lex_state = 0}, - [7270] = {.lex_state = 132}, + [7269] = {.lex_state = 0, .external_lex_state = 6}, + [7270] = {.lex_state = 0, .external_lex_state = 4}, [7271] = {.lex_state = 0}, - [7272] = {.lex_state = 0}, - [7273] = {.lex_state = 0}, - [7274] = {.lex_state = 132}, + [7272] = {.lex_state = 15}, + [7273] = {.lex_state = 0, .external_lex_state = 7}, + [7274] = {.lex_state = 0, .external_lex_state = 7}, [7275] = {.lex_state = 0}, [7276] = {.lex_state = 0}, [7277] = {.lex_state = 0}, [7278] = {.lex_state = 0}, - [7279] = {.lex_state = 14}, - [7280] = {.lex_state = 0}, + [7279] = {.lex_state = 0}, + [7280] = {.lex_state = 0, .external_lex_state = 4}, [7281] = {.lex_state = 0}, - [7282] = {.lex_state = 132}, - [7283] = {.lex_state = 0}, - [7284] = {.lex_state = 0}, + [7282] = {.lex_state = 0}, + [7283] = {.lex_state = 1}, + [7284] = {.lex_state = 1}, [7285] = {.lex_state = 0}, - [7286] = {.lex_state = 14}, + [7286] = {.lex_state = 132}, [7287] = {.lex_state = 0}, - [7288] = {.lex_state = 0}, + [7288] = {.lex_state = 10}, [7289] = {.lex_state = 0}, - [7290] = {.lex_state = 132}, + [7290] = {.lex_state = 0}, [7291] = {.lex_state = 0}, - [7292] = {.lex_state = 4}, + [7292] = {.lex_state = 0}, [7293] = {.lex_state = 0}, [7294] = {.lex_state = 0}, [7295] = {.lex_state = 0}, [7296] = {.lex_state = 0}, [7297] = {.lex_state = 0}, - [7298] = {.lex_state = 0}, - [7299] = {.lex_state = 0}, - [7300] = {.lex_state = 0}, - [7301] = {.lex_state = 0, .external_lex_state = 6}, + [7298] = {.lex_state = 132}, + [7299] = {.lex_state = 0, .external_lex_state = 7}, + [7300] = {.lex_state = 131}, + [7301] = {.lex_state = 0}, [7302] = {.lex_state = 0}, [7303] = {.lex_state = 0}, [7304] = {.lex_state = 0}, @@ -24820,71 +24743,71 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [7307] = {.lex_state = 0}, [7308] = {.lex_state = 0}, [7309] = {.lex_state = 0}, - [7310] = {.lex_state = 0}, + [7310] = {.lex_state = 0, .external_lex_state = 7}, [7311] = {.lex_state = 0}, - [7312] = {.lex_state = 131}, - [7313] = {.lex_state = 0}, - [7314] = {.lex_state = 0}, - [7315] = {.lex_state = 0}, - [7316] = {.lex_state = 0}, + [7312] = {.lex_state = 0}, + [7313] = {.lex_state = 0, .external_lex_state = 7}, + [7314] = {.lex_state = 10}, + [7315] = {.lex_state = 10}, + [7316] = {.lex_state = 0, .external_lex_state = 7}, [7317] = {.lex_state = 0}, - [7318] = {.lex_state = 10}, + [7318] = {.lex_state = 0}, [7319] = {.lex_state = 0}, [7320] = {.lex_state = 0}, - [7321] = {.lex_state = 1}, - [7322] = {.lex_state = 1}, + [7321] = {.lex_state = 0}, + [7322] = {.lex_state = 4}, [7323] = {.lex_state = 0}, [7324] = {.lex_state = 0}, [7325] = {.lex_state = 0}, - [7326] = {.lex_state = 0, .external_lex_state = 6}, - [7327] = {.lex_state = 0, .external_lex_state = 6}, - [7328] = {.lex_state = 0}, + [7326] = {.lex_state = 0}, + [7327] = {.lex_state = 0}, + [7328] = {.lex_state = 1}, [7329] = {.lex_state = 0}, [7330] = {.lex_state = 0}, - [7331] = {.lex_state = 10}, + [7331] = {.lex_state = 0}, [7332] = {.lex_state = 0}, - [7333] = {.lex_state = 132}, + [7333] = {.lex_state = 0}, [7334] = {.lex_state = 0}, - [7335] = {.lex_state = 0, .external_lex_state = 7}, - [7336] = {.lex_state = 0, .external_lex_state = 6}, + [7335] = {.lex_state = 10}, + [7336] = {.lex_state = 0}, [7337] = {.lex_state = 0}, [7338] = {.lex_state = 0}, [7339] = {.lex_state = 0}, [7340] = {.lex_state = 0}, [7341] = {.lex_state = 0}, - [7342] = {.lex_state = 0, .external_lex_state = 7}, + [7342] = {.lex_state = 0}, [7343] = {.lex_state = 0}, [7344] = {.lex_state = 0}, - [7345] = {.lex_state = 0, .external_lex_state = 4}, - [7346] = {.lex_state = 0, .external_lex_state = 7}, + [7345] = {.lex_state = 0, .external_lex_state = 6}, + [7346] = {.lex_state = 0}, [7347] = {.lex_state = 0}, - [7348] = {.lex_state = 0, .external_lex_state = 6}, + [7348] = {.lex_state = 0}, [7349] = {.lex_state = 0}, [7350] = {.lex_state = 0}, - [7351] = {.lex_state = 0}, + [7351] = {.lex_state = 10}, [7352] = {.lex_state = 0}, - [7353] = {.lex_state = 10}, - [7354] = {.lex_state = 10}, - [7355] = {.lex_state = 0}, - [7356] = {.lex_state = 0}, - [7357] = {.lex_state = 0}, + [7353] = {.lex_state = 0}, + [7354] = {.lex_state = 0}, + [7355] = {.lex_state = 0, .external_lex_state = 7}, + [7356] = {.lex_state = 1}, + [7357] = {.lex_state = 132}, [7358] = {.lex_state = 0}, [7359] = {.lex_state = 0}, [7360] = {.lex_state = 0}, [7361] = {.lex_state = 0}, - [7362] = {.lex_state = 0}, + [7362] = {.lex_state = 0, .external_lex_state = 7}, [7363] = {.lex_state = 0}, - [7364] = {.lex_state = 1}, - [7365] = {.lex_state = 10}, - [7366] = {.lex_state = 131}, + [7364] = {.lex_state = 10}, + [7365] = {.lex_state = 0}, + [7366] = {.lex_state = 0}, [7367] = {.lex_state = 0}, [7368] = {.lex_state = 0}, - [7369] = {.lex_state = 0, .external_lex_state = 6}, - [7370] = {.lex_state = 0, .external_lex_state = 8}, - [7371] = {.lex_state = 0}, - [7372] = {.lex_state = 10}, - [7373] = {.lex_state = 0}, - [7374] = {.lex_state = 0, .external_lex_state = 8}, + [7369] = {.lex_state = 0}, + [7370] = {.lex_state = 0}, + [7371] = {.lex_state = 1}, + [7372] = {.lex_state = 0}, + [7373] = {.lex_state = 10}, + [7374] = {.lex_state = 0}, [7375] = {.lex_state = 0}, [7376] = {.lex_state = 0}, [7377] = {.lex_state = 0}, @@ -24895,414 +24818,355 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [7382] = {.lex_state = 0}, [7383] = {.lex_state = 0}, [7384] = {.lex_state = 0}, - [7385] = {.lex_state = 0, .external_lex_state = 6}, - [7386] = {.lex_state = 10}, - [7387] = {.lex_state = 0, .external_lex_state = 6}, - [7388] = {.lex_state = 132}, - [7389] = {.lex_state = 0, .external_lex_state = 6}, + [7385] = {.lex_state = 0}, + [7386] = {.lex_state = 0}, + [7387] = {.lex_state = 0}, + [7388] = {.lex_state = 0}, + [7389] = {.lex_state = 0}, [7390] = {.lex_state = 0}, - [7391] = {.lex_state = 0}, + [7391] = {.lex_state = 1}, [7392] = {.lex_state = 0}, [7393] = {.lex_state = 0}, - [7394] = {.lex_state = 0, .external_lex_state = 6}, - [7395] = {.lex_state = 0}, - [7396] = {.lex_state = 0, .external_lex_state = 8}, - [7397] = {.lex_state = 0, .external_lex_state = 8}, + [7394] = {.lex_state = 10}, + [7395] = {.lex_state = 15}, + [7396] = {.lex_state = 0}, + [7397] = {.lex_state = 0}, [7398] = {.lex_state = 0}, - [7399] = {.lex_state = 0, .external_lex_state = 8}, - [7400] = {.lex_state = 10}, - [7401] = {.lex_state = 0}, - [7402] = {.lex_state = 0}, - [7403] = {.lex_state = 0, .external_lex_state = 9}, - [7404] = {.lex_state = 10}, - [7405] = {.lex_state = 0, .external_lex_state = 8}, - [7406] = {.lex_state = 0, .external_lex_state = 9}, - [7407] = {.lex_state = 0}, - [7408] = {.lex_state = 131}, - [7409] = {.lex_state = 0}, + [7399] = {.lex_state = 0}, + [7400] = {.lex_state = 132}, + [7401] = {.lex_state = 132}, + [7402] = {.lex_state = 15}, + [7403] = {.lex_state = 0}, + [7404] = {.lex_state = 0}, + [7405] = {.lex_state = 0}, + [7406] = {.lex_state = 0, .external_lex_state = 7}, + [7407] = {.lex_state = 0, .external_lex_state = 7}, + [7408] = {.lex_state = 0}, + [7409] = {.lex_state = 132}, [7410] = {.lex_state = 0}, [7411] = {.lex_state = 0}, [7412] = {.lex_state = 0}, - [7413] = {.lex_state = 132}, + [7413] = {.lex_state = 0}, [7414] = {.lex_state = 0}, [7415] = {.lex_state = 0}, [7416] = {.lex_state = 0}, [7417] = {.lex_state = 0}, [7418] = {.lex_state = 0}, [7419] = {.lex_state = 0}, - [7420] = {.lex_state = 1}, - [7421] = {.lex_state = 0}, - [7422] = {.lex_state = 0}, + [7420] = {.lex_state = 0, .external_lex_state = 7}, + [7421] = {.lex_state = 132}, + [7422] = {.lex_state = 0, .external_lex_state = 7}, [7423] = {.lex_state = 0}, - [7424] = {.lex_state = 10}, + [7424] = {.lex_state = 0}, [7425] = {.lex_state = 0}, [7426] = {.lex_state = 0}, [7427] = {.lex_state = 0}, [7428] = {.lex_state = 0}, - [7429] = {.lex_state = 0, .external_lex_state = 6}, - [7430] = {.lex_state = 10}, - [7431] = {.lex_state = 0, .external_lex_state = 6}, - [7432] = {.lex_state = 0, .external_lex_state = 6}, - [7433] = {.lex_state = 1}, - [7434] = {.lex_state = 4}, - [7435] = {.lex_state = 0}, - [7436] = {.lex_state = 0}, - [7437] = {.lex_state = 0}, - [7438] = {.lex_state = 0}, - [7439] = {.lex_state = 0, .external_lex_state = 6}, + [7429] = {.lex_state = 0}, + [7430] = {.lex_state = 0}, + [7431] = {.lex_state = 0, .external_lex_state = 7}, + [7432] = {.lex_state = 0, .external_lex_state = 8}, + [7433] = {.lex_state = 0}, + [7434] = {.lex_state = 0, .external_lex_state = 8}, + [7435] = {.lex_state = 0, .external_lex_state = 8}, + [7436] = {.lex_state = 0, .external_lex_state = 9}, + [7437] = {.lex_state = 131}, + [7438] = {.lex_state = 0, .external_lex_state = 9}, + [7439] = {.lex_state = 0}, [7440] = {.lex_state = 0}, [7441] = {.lex_state = 0}, - [7442] = {.lex_state = 0, .external_lex_state = 6}, + [7442] = {.lex_state = 0}, [7443] = {.lex_state = 0}, [7444] = {.lex_state = 0}, - [7445] = {.lex_state = 0, .external_lex_state = 6}, - [7446] = {.lex_state = 132}, + [7445] = {.lex_state = 0}, + [7446] = {.lex_state = 0}, [7447] = {.lex_state = 0}, [7448] = {.lex_state = 0}, - [7449] = {.lex_state = 0}, + [7449] = {.lex_state = 0, .external_lex_state = 8}, [7450] = {.lex_state = 0}, - [7451] = {.lex_state = 0, .external_lex_state = 6}, + [7451] = {.lex_state = 10}, [7452] = {.lex_state = 0}, [7453] = {.lex_state = 0}, - [7454] = {.lex_state = 0}, + [7454] = {.lex_state = 10}, [7455] = {.lex_state = 0}, [7456] = {.lex_state = 0}, - [7457] = {.lex_state = 0, .external_lex_state = 6}, + [7457] = {.lex_state = 4}, [7458] = {.lex_state = 0}, - [7459] = {.lex_state = 0, .external_lex_state = 6}, - [7460] = {.lex_state = 131}, + [7459] = {.lex_state = 0}, + [7460] = {.lex_state = 0}, [7461] = {.lex_state = 0}, - [7462] = {.lex_state = 0, .external_lex_state = 6}, + [7462] = {.lex_state = 0}, [7463] = {.lex_state = 0}, - [7464] = {.lex_state = 0, .external_lex_state = 6}, - [7465] = {.lex_state = 0, .external_lex_state = 8}, - [7466] = {.lex_state = 0}, + [7464] = {.lex_state = 0}, + [7465] = {.lex_state = 0}, + [7466] = {.lex_state = 10}, [7467] = {.lex_state = 0}, [7468] = {.lex_state = 0}, - [7469] = {.lex_state = 10}, + [7469] = {.lex_state = 0}, [7470] = {.lex_state = 0}, - [7471] = {.lex_state = 132}, - [7472] = {.lex_state = 0}, + [7471] = {.lex_state = 0}, + [7472] = {.lex_state = 0, .external_lex_state = 8}, [7473] = {.lex_state = 0}, [7474] = {.lex_state = 0}, [7475] = {.lex_state = 0}, - [7476] = {.lex_state = 0, .external_lex_state = 6}, - [7477] = {.lex_state = 0, .external_lex_state = 6}, + [7476] = {.lex_state = 15}, + [7477] = {.lex_state = 0}, [7478] = {.lex_state = 0}, [7479] = {.lex_state = 0}, [7480] = {.lex_state = 0}, - [7481] = {.lex_state = 1}, - [7482] = {.lex_state = 0}, + [7481] = {.lex_state = 0}, + [7482] = {.lex_state = 1}, [7483] = {.lex_state = 0}, [7484] = {.lex_state = 0}, [7485] = {.lex_state = 0}, - [7486] = {.lex_state = 131}, + [7486] = {.lex_state = 0}, [7487] = {.lex_state = 0}, [7488] = {.lex_state = 0}, [7489] = {.lex_state = 0}, [7490] = {.lex_state = 0}, - [7491] = {.lex_state = 0, .external_lex_state = 8}, + [7491] = {.lex_state = 0}, [7492] = {.lex_state = 0}, [7493] = {.lex_state = 0}, [7494] = {.lex_state = 0}, - [7495] = {.lex_state = 0, .external_lex_state = 6}, - [7496] = {.lex_state = 0, .external_lex_state = 6}, + [7495] = {.lex_state = 0}, + [7496] = {.lex_state = 0}, [7497] = {.lex_state = 0}, - [7498] = {.lex_state = 0, .external_lex_state = 6}, - [7499] = {.lex_state = 0, .external_lex_state = 6}, - [7500] = {.lex_state = 10}, + [7498] = {.lex_state = 0}, + [7499] = {.lex_state = 0}, + [7500] = {.lex_state = 0}, [7501] = {.lex_state = 0}, [7502] = {.lex_state = 0}, [7503] = {.lex_state = 0}, - [7504] = {.lex_state = 0, .external_lex_state = 7}, - [7505] = {.lex_state = 0, .external_lex_state = 6}, - [7506] = {.lex_state = 0, .external_lex_state = 6}, + [7504] = {.lex_state = 0}, + [7505] = {.lex_state = 0}, + [7506] = {.lex_state = 0}, [7507] = {.lex_state = 0}, - [7508] = {.lex_state = 10}, + [7508] = {.lex_state = 132}, [7509] = {.lex_state = 0}, [7510] = {.lex_state = 0}, - [7511] = {.lex_state = 0}, - [7512] = {.lex_state = 0, .external_lex_state = 6}, - [7513] = {.lex_state = 1}, - [7514] = {.lex_state = 10}, + [7511] = {.lex_state = 1}, + [7512] = {.lex_state = 0}, + [7513] = {.lex_state = 0}, + [7514] = {.lex_state = 4}, [7515] = {.lex_state = 0}, [7516] = {.lex_state = 0}, [7517] = {.lex_state = 0}, - [7518] = {.lex_state = 0}, + [7518] = {.lex_state = 0, .external_lex_state = 8}, [7519] = {.lex_state = 0}, - [7520] = {.lex_state = 1}, + [7520] = {.lex_state = 0}, [7521] = {.lex_state = 0}, [7522] = {.lex_state = 0}, [7523] = {.lex_state = 0}, [7524] = {.lex_state = 0}, - [7525] = {.lex_state = 0}, - [7526] = {.lex_state = 0}, + [7525] = {.lex_state = 132}, + [7526] = {.lex_state = 0, .external_lex_state = 8}, [7527] = {.lex_state = 0}, - [7528] = {.lex_state = 0}, + [7528] = {.lex_state = 10}, [7529] = {.lex_state = 0}, [7530] = {.lex_state = 0}, [7531] = {.lex_state = 0}, - [7532] = {.lex_state = 0, .external_lex_state = 6}, - [7533] = {.lex_state = 0}, - [7534] = {.lex_state = 132}, + [7532] = {.lex_state = 0}, + [7533] = {.lex_state = 1}, + [7534] = {.lex_state = 10}, [7535] = {.lex_state = 0}, [7536] = {.lex_state = 0}, [7537] = {.lex_state = 0}, [7538] = {.lex_state = 0}, [7539] = {.lex_state = 0}, - [7540] = {.lex_state = 0, .external_lex_state = 6}, + [7540] = {.lex_state = 0}, [7541] = {.lex_state = 0}, - [7542] = {.lex_state = 132}, + [7542] = {.lex_state = 0}, [7543] = {.lex_state = 0}, - [7544] = {.lex_state = 10}, - [7545] = {.lex_state = 132}, - [7546] = {.lex_state = 132}, + [7544] = {.lex_state = 0}, + [7545] = {.lex_state = 0}, + [7546] = {.lex_state = 0}, [7547] = {.lex_state = 0}, [7548] = {.lex_state = 0}, - [7549] = {.lex_state = 0}, - [7550] = {.lex_state = 10}, - [7551] = {.lex_state = 0}, + [7549] = {.lex_state = 0, .external_lex_state = 8}, + [7550] = {.lex_state = 0, .external_lex_state = 8}, + [7551] = {.lex_state = 132}, [7552] = {.lex_state = 0}, - [7553] = {.lex_state = 0}, - [7554] = {.lex_state = 0}, + [7553] = {.lex_state = 0, .external_lex_state = 9}, + [7554] = {.lex_state = 0, .external_lex_state = 8}, [7555] = {.lex_state = 0}, - [7556] = {.lex_state = 0}, + [7556] = {.lex_state = 0, .external_lex_state = 6}, [7557] = {.lex_state = 0}, [7558] = {.lex_state = 0}, [7559] = {.lex_state = 0}, - [7560] = {.lex_state = 0}, + [7560] = {.lex_state = 1}, [7561] = {.lex_state = 0}, - [7562] = {.lex_state = 0}, - [7563] = {.lex_state = 0}, - [7564] = {.lex_state = 0}, + [7562] = {.lex_state = 1}, + [7563] = {.lex_state = 0, .external_lex_state = 7}, + [7564] = {.lex_state = 16}, [7565] = {.lex_state = 0}, - [7566] = {.lex_state = 1}, + [7566] = {.lex_state = 0}, [7567] = {.lex_state = 0}, [7568] = {.lex_state = 0}, [7569] = {.lex_state = 0}, - [7570] = {.lex_state = 0}, + [7570] = {.lex_state = 132}, [7571] = {.lex_state = 0}, - [7572] = {.lex_state = 0, .external_lex_state = 6}, + [7572] = {.lex_state = 0}, [7573] = {.lex_state = 0}, [7574] = {.lex_state = 0}, - [7575] = {.lex_state = 0}, - [7576] = {.lex_state = 0, .external_lex_state = 6}, - [7577] = {.lex_state = 0}, - [7578] = {.lex_state = 15}, - [7579] = {.lex_state = 0}, - [7580] = {.lex_state = 0, .external_lex_state = 6}, - [7581] = {.lex_state = 132}, + [7575] = {.lex_state = 10}, + [7576] = {.lex_state = 0, .external_lex_state = 8}, + [7577] = {.lex_state = 0, .external_lex_state = 9}, + [7578] = {.lex_state = 0}, + [7579] = {.lex_state = 132}, + [7580] = {.lex_state = 0}, + [7581] = {.lex_state = 0}, [7582] = {.lex_state = 0}, [7583] = {.lex_state = 0}, - [7584] = {.lex_state = 0, .external_lex_state = 6}, - [7585] = {.lex_state = 0, .external_lex_state = 6}, - [7586] = {.lex_state = 0, .external_lex_state = 6}, + [7584] = {.lex_state = 0}, + [7585] = {.lex_state = 0}, + [7586] = {.lex_state = 10}, [7587] = {.lex_state = 0}, - [7588] = {.lex_state = 15}, + [7588] = {.lex_state = 0}, [7589] = {.lex_state = 0}, - [7590] = {.lex_state = 10}, - [7591] = {.lex_state = 0}, + [7590] = {.lex_state = 0}, + [7591] = {.lex_state = 0, .external_lex_state = 4}, [7592] = {.lex_state = 0}, [7593] = {.lex_state = 0}, [7594] = {.lex_state = 0}, [7595] = {.lex_state = 0}, - [7596] = {.lex_state = 0}, - [7597] = {.lex_state = 0}, + [7596] = {.lex_state = 10}, + [7597] = {.lex_state = 10}, [7598] = {.lex_state = 0}, [7599] = {.lex_state = 0}, - [7600] = {.lex_state = 0}, - [7601] = {.lex_state = 0, .external_lex_state = 6}, - [7602] = {.lex_state = 1}, + [7600] = {.lex_state = 10}, + [7601] = {.lex_state = 0}, + [7602] = {.lex_state = 0}, [7603] = {.lex_state = 0}, [7604] = {.lex_state = 0}, - [7605] = {.lex_state = 0}, - [7606] = {.lex_state = 0, .external_lex_state = 6}, + [7605] = {.lex_state = 10}, + [7606] = {.lex_state = 0}, [7607] = {.lex_state = 0}, [7608] = {.lex_state = 0}, - [7609] = {.lex_state = 10}, - [7610] = {.lex_state = 0, .external_lex_state = 6}, - [7611] = {.lex_state = 0}, + [7609] = {.lex_state = 0}, + [7610] = {.lex_state = 0}, + [7611] = {.lex_state = 1}, [7612] = {.lex_state = 0}, [7613] = {.lex_state = 0}, [7614] = {.lex_state = 0}, [7615] = {.lex_state = 0}, - [7616] = {.lex_state = 0, .external_lex_state = 6}, - [7617] = {.lex_state = 0}, + [7616] = {.lex_state = 10}, + [7617] = {.lex_state = 0, .external_lex_state = 8}, [7618] = {.lex_state = 0}, - [7619] = {.lex_state = 0}, - [7620] = {.lex_state = 0, .external_lex_state = 4}, - [7621] = {.lex_state = 0}, - [7622] = {.lex_state = 0}, - [7623] = {.lex_state = 0}, + [7619] = {.lex_state = 0, .external_lex_state = 8}, + [7620] = {.lex_state = 0}, + [7621] = {.lex_state = 0, .external_lex_state = 8}, + [7622] = {.lex_state = 132}, + [7623] = {.lex_state = 0, .external_lex_state = 9}, [7624] = {.lex_state = 0}, [7625] = {.lex_state = 0}, [7626] = {.lex_state = 0}, [7627] = {.lex_state = 0}, [7628] = {.lex_state = 0}, - [7629] = {.lex_state = 0, .external_lex_state = 8}, - [7630] = {.lex_state = 0, .external_lex_state = 8}, - [7631] = {.lex_state = 0, .external_lex_state = 6}, + [7629] = {.lex_state = 10}, + [7630] = {.lex_state = 131}, + [7631] = {.lex_state = 131}, [7632] = {.lex_state = 0}, [7633] = {.lex_state = 0}, - [7634] = {.lex_state = 0, .external_lex_state = 6}, + [7634] = {.lex_state = 0}, [7635] = {.lex_state = 0}, - [7636] = {.lex_state = 0}, + [7636] = {.lex_state = 1}, [7637] = {.lex_state = 0}, [7638] = {.lex_state = 0}, - [7639] = {.lex_state = 16}, - [7640] = {.lex_state = 0}, - [7641] = {.lex_state = 0}, + [7639] = {.lex_state = 0}, + [7640] = {.lex_state = 132}, + [7641] = {.lex_state = 10}, [7642] = {.lex_state = 0}, - [7643] = {.lex_state = 0, .external_lex_state = 6}, + [7643] = {.lex_state = 0}, [7644] = {.lex_state = 0}, [7645] = {.lex_state = 0}, [7646] = {.lex_state = 0}, - [7647] = {.lex_state = 0}, - [7648] = {.lex_state = 131}, - [7649] = {.lex_state = 1}, + [7647] = {.lex_state = 132}, + [7648] = {.lex_state = 0}, + [7649] = {.lex_state = 0}, [7650] = {.lex_state = 0}, - [7651] = {.lex_state = 0}, + [7651] = {.lex_state = 0, .external_lex_state = 8}, [7652] = {.lex_state = 0}, [7653] = {.lex_state = 0}, - [7654] = {.lex_state = 0, .external_lex_state = 8}, - [7655] = {.lex_state = 15}, + [7654] = {.lex_state = 0}, + [7655] = {.lex_state = 0}, [7656] = {.lex_state = 0}, [7657] = {.lex_state = 0}, - [7658] = {.lex_state = 10}, + [7658] = {.lex_state = 0}, [7659] = {.lex_state = 0}, - [7660] = {.lex_state = 0, .external_lex_state = 9}, - [7661] = {.lex_state = 0, .external_lex_state = 6}, - [7662] = {.lex_state = 132}, - [7663] = {.lex_state = 132}, + [7660] = {.lex_state = 0}, + [7661] = {.lex_state = 0}, + [7662] = {.lex_state = 0, .external_lex_state = 6}, + [7663] = {.lex_state = 0}, [7664] = {.lex_state = 0}, - [7665] = {.lex_state = 0}, - [7666] = {.lex_state = 10}, + [7665] = {.lex_state = 131}, + [7666] = {.lex_state = 0}, [7667] = {.lex_state = 0}, [7668] = {.lex_state = 0}, [7669] = {.lex_state = 0}, - [7670] = {.lex_state = 0}, + [7670] = {.lex_state = 10}, [7671] = {.lex_state = 0}, - [7672] = {.lex_state = 0, .external_lex_state = 6}, + [7672] = {.lex_state = 0}, [7673] = {.lex_state = 0}, - [7674] = {.lex_state = 0}, + [7674] = {.lex_state = 1}, [7675] = {.lex_state = 0}, - [7676] = {.lex_state = 0}, + [7676] = {.lex_state = 131}, [7677] = {.lex_state = 0}, - [7678] = {.lex_state = 0}, - [7679] = {.lex_state = 0}, - [7680] = {.lex_state = 0}, - [7681] = {.lex_state = 15}, + [7678] = {.lex_state = 10}, + [7679] = {.lex_state = 0, .external_lex_state = 7}, + [7680] = {.lex_state = 4}, + [7681] = {.lex_state = 0}, [7682] = {.lex_state = 0}, [7683] = {.lex_state = 0}, [7684] = {.lex_state = 0}, [7685] = {.lex_state = 0}, [7686] = {.lex_state = 0}, - [7687] = {.lex_state = 0, .external_lex_state = 6}, - [7688] = {.lex_state = 10}, + [7687] = {.lex_state = 132}, + [7688] = {.lex_state = 0}, [7689] = {.lex_state = 0}, [7690] = {.lex_state = 0}, - [7691] = {.lex_state = 0, .external_lex_state = 6}, + [7691] = {.lex_state = 132}, [7692] = {.lex_state = 0}, - [7693] = {.lex_state = 132}, + [7693] = {.lex_state = 0}, [7694] = {.lex_state = 0}, - [7695] = {.lex_state = 0}, + [7695] = {.lex_state = 132}, [7696] = {.lex_state = 0}, - [7697] = {.lex_state = 0, .external_lex_state = 4}, - [7698] = {.lex_state = 0}, + [7697] = {.lex_state = 0}, + [7698] = {.lex_state = 132}, [7699] = {.lex_state = 0}, - [7700] = {.lex_state = 0, .external_lex_state = 6}, - [7701] = {.lex_state = 0}, - [7702] = {.lex_state = 0}, + [7700] = {.lex_state = 132}, + [7701] = {.lex_state = 132}, + [7702] = {.lex_state = 10}, [7703] = {.lex_state = 0}, [7704] = {.lex_state = 132}, [7705] = {.lex_state = 0}, [7706] = {.lex_state = 0}, [7707] = {.lex_state = 0}, [7708] = {.lex_state = 0}, - [7709] = {.lex_state = 0}, + [7709] = {.lex_state = 132}, [7710] = {.lex_state = 0}, - [7711] = {.lex_state = 0}, - [7712] = {.lex_state = 4}, - [7713] = {.lex_state = 10}, - [7714] = {.lex_state = 0}, + [7711] = {.lex_state = 132}, + [7712] = {.lex_state = 0}, + [7713] = {.lex_state = 0}, + [7714] = {.lex_state = 0, .external_lex_state = 6}, [7715] = {.lex_state = 0}, - [7716] = {.lex_state = 1}, - [7717] = {.lex_state = 132}, - [7718] = {.lex_state = 0}, - [7719] = {.lex_state = 0}, - [7720] = {.lex_state = 0}, - [7721] = {.lex_state = 0}, - [7722] = {.lex_state = 0}, - [7723] = {.lex_state = 10}, - [7724] = {.lex_state = 0, .external_lex_state = 8}, - [7725] = {.lex_state = 0, .external_lex_state = 8}, - [7726] = {.lex_state = 0}, - [7727] = {.lex_state = 0}, - [7728] = {.lex_state = 0, .external_lex_state = 8}, - [7729] = {.lex_state = 0}, - [7730] = {.lex_state = 0}, - [7731] = {.lex_state = 0, .external_lex_state = 9}, - [7732] = {.lex_state = 0, .external_lex_state = 6}, - [7733] = {.lex_state = 0}, - [7734] = {.lex_state = 0}, - [7735] = {.lex_state = 0}, - [7736] = {.lex_state = 4}, - [7737] = {.lex_state = 10}, - [7738] = {.lex_state = 0}, - [7739] = {.lex_state = 0, .external_lex_state = 7}, - [7740] = {.lex_state = 0, .external_lex_state = 8}, - [7741] = {.lex_state = 0}, - [7742] = {.lex_state = 0}, - [7743] = {.lex_state = 0}, - [7744] = {.lex_state = 0}, - [7745] = {.lex_state = 132}, - [7746] = {.lex_state = 0}, - [7747] = {.lex_state = 0}, - [7748] = {.lex_state = 0}, - [7749] = {.lex_state = 132}, - [7750] = {.lex_state = 0}, - [7751] = {.lex_state = 0}, - [7752] = {.lex_state = 0}, - [7753] = {.lex_state = 132}, - [7754] = {.lex_state = 0}, - [7755] = {.lex_state = 0, .external_lex_state = 9}, - [7756] = {.lex_state = 132}, - [7757] = {.lex_state = 0}, - [7758] = {.lex_state = 132}, - [7759] = {.lex_state = 0}, - [7760] = {.lex_state = 0}, - [7761] = {.lex_state = 0}, - [7762] = {.lex_state = 132}, - [7763] = {.lex_state = 0}, - [7764] = {.lex_state = 1}, - [7765] = {.lex_state = 0}, - [7766] = {.lex_state = 0}, - [7767] = {.lex_state = 132}, - [7768] = {.lex_state = 0}, - [7769] = {.lex_state = 132}, - [7770] = {.lex_state = 0}, - [7771] = {.lex_state = 0}, - [7772] = {.lex_state = 0}, - [7773] = {.lex_state = 0}, - [7774] = {.lex_state = 1}, - [7775] = {.lex_state = 0}, - [7776] = {(TSStateId)(-1)}, - [7777] = {(TSStateId)(-1)}, - [7778] = {(TSStateId)(-1)}, - [7779] = {(TSStateId)(-1)}, - [7780] = {(TSStateId)(-1)}, - [7781] = {(TSStateId)(-1)}, - [7782] = {(TSStateId)(-1)}, - [7783] = {(TSStateId)(-1)}, - [7784] = {(TSStateId)(-1)}, - [7785] = {(TSStateId)(-1)}, - [7786] = {(TSStateId)(-1)}, - [7787] = {(TSStateId)(-1)}, - [7788] = {(TSStateId)(-1)}, - [7789] = {(TSStateId)(-1)}, - [7790] = {(TSStateId)(-1)}, - [7791] = {(TSStateId)(-1)}, - [7792] = {(TSStateId)(-1)}, + [7716] = {.lex_state = 0}, + [7717] = {(TSStateId)(-1)}, + [7718] = {(TSStateId)(-1)}, + [7719] = {(TSStateId)(-1)}, + [7720] = {(TSStateId)(-1)}, + [7721] = {(TSStateId)(-1)}, + [7722] = {(TSStateId)(-1)}, + [7723] = {(TSStateId)(-1)}, + [7724] = {(TSStateId)(-1)}, + [7725] = {(TSStateId)(-1)}, + [7726] = {(TSStateId)(-1)}, + [7727] = {(TSStateId)(-1)}, + [7728] = {(TSStateId)(-1)}, + [7729] = {(TSStateId)(-1)}, + [7730] = {(TSStateId)(-1)}, + [7731] = {(TSStateId)(-1)}, + [7732] = {(TSStateId)(-1)}, + [7733] = {(TSStateId)(-1)}, }; static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { @@ -25530,50 +25394,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_content] = ACTIONS(1), }, [1] = { - [sym_compilation_unit] = STATE(7521), - [sym__top_level_item] = STATE(2063), + [sym_compilation_unit] = STATE(7415), + [sym__top_level_item] = STATE(2064), [sym_global_statement] = STATE(2065), [sym_extern_alias_directive] = STATE(2065), [sym_using_directive] = STATE(2065), [sym_global_attribute] = STATE(2065), - [sym_attribute_list] = STATE(2979), - [sym__attribute_list] = STATE(2990), + [sym_attribute_list] = STATE(3034), + [sym__attribute_list] = STATE(2953), [sym_namespace_declaration] = STATE(2065), [sym_file_scoped_namespace_declaration] = STATE(2065), [sym_type_declaration] = STATE(2065), - [sym_class_declaration] = STATE(2069), - [sym__class_declaration_initializer] = STATE(7691), - [sym_struct_declaration] = STATE(2069), - [sym__struct_declaration_initializer] = STATE(7045), - [sym_enum_declaration] = STATE(2069), - [sym_interface_declaration] = STATE(2069), - [sym__interface_declaration_initializer] = STATE(7186), - [sym_delegate_declaration] = STATE(2069), - [sym__delegate_declaration_initializer] = STATE(6619), - [sym_record_declaration] = STATE(2069), - [sym__record_declaration_initializer] = STATE(6976), - [sym_modifier] = STATE(3130), - [sym_parameter_list] = STATE(7311), + [sym_class_declaration] = STATE(2066), + [sym__class_declaration_initializer] = STATE(6641), + [sym_struct_declaration] = STATE(2066), + [sym__struct_declaration_initializer] = STATE(6644), + [sym_enum_declaration] = STATE(2066), + [sym__enum_declaration_initializer] = STATE(6736), + [sym_interface_declaration] = STATE(2066), + [sym__interface_declaration_initializer] = STATE(6679), + [sym_delegate_declaration] = STATE(2066), + [sym__delegate_declaration_initializer] = STATE(6683), + [sym_record_declaration] = STATE(2066), + [sym__record_declaration_initializer] = STATE(6686), + [sym_modifier] = STATE(3114), + [sym_parameter_list] = STATE(7531), [sym_block] = STATE(2026), - [sym_variable_declaration] = STATE(7363), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(5160), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2204), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5867), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_statement] = STATE(2079), + [sym_variable_declaration] = STATE(7610), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(5152), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2196), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5805), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_statement] = STATE(2077), [sym_break_statement] = STATE(2026), [sym_checked_statement] = STATE(2026), [sym_continue_statement] = STATE(2026), @@ -25591,73 +25456,73 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_unsafe_statement] = STATE(2026), [sym_using_statement] = STATE(2026), [sym_foreach_statement] = STATE(2026), - [sym__foreach_statement_initializer] = STATE(70), + [sym__foreach_statement_initializer] = STATE(90), [sym_goto_statement] = STATE(2026), [sym_labeled_statement] = STATE(2026), [sym_if_statement] = STATE(2026), [sym_while_statement] = STATE(2026), [sym_local_declaration_statement] = STATE(2026), [sym_local_function_statement] = STATE(2026), - [sym__local_function_declaration] = STATE(6317), - [sym_expression] = STATE(5672), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3461), - [sym__expression_statement_expression] = STATE(5719), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3080), - [sym_postfix_unary_expression] = STATE(3111), - [sym_prefix_unary_expression] = STATE(3111), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6154), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3080), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3111), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3080), - [sym_member_access_expression] = STATE(2484), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3111), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7530), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(3080), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3080), - [sym_typeof_expression] = STATE(3080), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2484), - [sym_literal] = STATE(3080), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2348), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_top_level] = STATE(2059), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(2979), + [sym__local_function_declaration] = STATE(6290), + [sym_expression] = STATE(5660), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3356), + [sym__expression_statement_expression] = STATE(5708), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3102), + [sym_postfix_unary_expression] = STATE(3079), + [sym_prefix_unary_expression] = STATE(3079), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6134), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3102), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3079), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3102), + [sym_member_access_expression] = STATE(2472), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3079), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7425), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(3102), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3102), + [sym_typeof_expression] = STATE(3102), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2472), + [sym_literal] = STATE(3102), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2332), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_top_level] = STATE(2075), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(3034), [sym_preproc_region] = STATE(1), [sym_preproc_endregion] = STATE(1), [sym_preproc_line] = STATE(1), @@ -25667,10 +25532,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(18), - [aux_sym__class_declaration_initializer_repeat1] = STATE(2209), + [aux_sym_compilation_unit_repeat1] = STATE(17), + [aux_sym__class_declaration_initializer_repeat1] = STATE(2201), [aux_sym__class_declaration_initializer_repeat2] = STATE(2356), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [ts_builtin_sym_end] = ACTIONS(23), [sym__identifier_token] = ACTIONS(25), [anon_sym_extern] = ACTIONS(27), @@ -25789,137 +25654,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(1994), - [sym_using_directive] = STATE(1994), - [sym_global_attribute] = STATE(1994), - [sym_attribute_list] = STATE(2938), - [sym__attribute_list] = STATE(2990), - [sym_namespace_declaration] = STATE(1994), - [sym_file_scoped_namespace_declaration] = STATE(1994), - [sym_type_declaration] = STATE(1994), - [sym_class_declaration] = STATE(1982), - [sym__class_declaration_initializer] = STATE(7301), - [sym_struct_declaration] = STATE(1982), - [sym__struct_declaration_initializer] = STATE(7209), - [sym_enum_declaration] = STATE(1982), - [sym_interface_declaration] = STATE(1982), - [sym__interface_declaration_initializer] = STATE(7211), - [sym_delegate_declaration] = STATE(1982), - [sym__delegate_declaration_initializer] = STATE(6719), - [sym_record_declaration] = STATE(1982), - [sym__record_declaration_initializer] = STATE(6747), - [sym_modifier] = STATE(3130), - [sym_parameter_list] = STATE(7311), - [sym_block] = STATE(1968), - [sym_variable_declaration] = STATE(7525), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(5160), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2204), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5867), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_statement] = STATE(1994), - [sym_break_statement] = STATE(1968), - [sym_checked_statement] = STATE(1968), - [sym_continue_statement] = STATE(1968), - [sym_do_statement] = STATE(1968), - [sym_empty_statement] = STATE(1968), - [sym_expression_statement] = STATE(1968), - [sym_fixed_statement] = STATE(1968), - [sym_for_statement] = STATE(1968), - [sym_return_statement] = STATE(1968), - [sym_lock_statement] = STATE(1968), - [sym_yield_statement] = STATE(1968), - [sym_switch_statement] = STATE(1968), - [sym_throw_statement] = STATE(1968), - [sym_try_statement] = STATE(1968), - [sym_unsafe_statement] = STATE(1968), - [sym_using_statement] = STATE(1968), - [sym_foreach_statement] = STATE(1968), - [sym__foreach_statement_initializer] = STATE(91), - [sym_goto_statement] = STATE(1968), - [sym_labeled_statement] = STATE(1968), - [sym_if_statement] = STATE(1968), - [sym_while_statement] = STATE(1968), - [sym_local_declaration_statement] = STATE(1968), - [sym_local_function_statement] = STATE(1968), - [sym__local_function_declaration] = STATE(6298), - [sym_expression] = STATE(4377), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3461), - [sym__expression_statement_expression] = STATE(5158), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3080), - [sym_postfix_unary_expression] = STATE(3111), - [sym_prefix_unary_expression] = STATE(3111), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6154), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3080), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3111), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3080), - [sym_member_access_expression] = STATE(2484), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3111), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7530), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(3080), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3080), - [sym_typeof_expression] = STATE(3080), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2484), - [sym_literal] = STATE(3080), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2264), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_top_level] = STATE(2007), - [sym_preproc_else_in_top_level] = STATE(7735), - [sym_preproc_elif_in_top_level] = STATE(7735), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_else_in_expression] = STATE(7744), - [sym_preproc_elif_in_expression] = STATE(7744), - [sym_preproc_if_in_attribute_list] = STATE(2979), - [sym_preproc_else_in_attribute_list] = STATE(7492), - [sym_preproc_elif_in_attribute_list] = STATE(7492), + [sym_extern_alias_directive] = STATE(1991), + [sym_using_directive] = STATE(1991), + [sym_global_attribute] = STATE(1991), + [sym_attribute_list] = STATE(2841), + [sym__attribute_list] = STATE(2953), + [sym_namespace_declaration] = STATE(1991), + [sym_file_scoped_namespace_declaration] = STATE(1991), + [sym_type_declaration] = STATE(1991), + [sym_class_declaration] = STATE(1981), + [sym__class_declaration_initializer] = STATE(6630), + [sym_struct_declaration] = STATE(1981), + [sym__struct_declaration_initializer] = STATE(6631), + [sym_enum_declaration] = STATE(1981), + [sym__enum_declaration_initializer] = STATE(6968), + [sym_interface_declaration] = STATE(1981), + [sym__interface_declaration_initializer] = STATE(6633), + [sym_delegate_declaration] = STATE(1981), + [sym__delegate_declaration_initializer] = STATE(6634), + [sym_record_declaration] = STATE(1981), + [sym__record_declaration_initializer] = STATE(6635), + [sym_modifier] = STATE(3114), + [sym_parameter_list] = STATE(7531), + [sym_block] = STATE(1948), + [sym_variable_declaration] = STATE(7649), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(5152), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2196), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5805), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_statement] = STATE(1991), + [sym_break_statement] = STATE(1948), + [sym_checked_statement] = STATE(1948), + [sym_continue_statement] = STATE(1948), + [sym_do_statement] = STATE(1948), + [sym_empty_statement] = STATE(1948), + [sym_expression_statement] = STATE(1948), + [sym_fixed_statement] = STATE(1948), + [sym_for_statement] = STATE(1948), + [sym_return_statement] = STATE(1948), + [sym_lock_statement] = STATE(1948), + [sym_yield_statement] = STATE(1948), + [sym_switch_statement] = STATE(1948), + [sym_throw_statement] = STATE(1948), + [sym_try_statement] = STATE(1948), + [sym_unsafe_statement] = STATE(1948), + [sym_using_statement] = STATE(1948), + [sym_foreach_statement] = STATE(1948), + [sym__foreach_statement_initializer] = STATE(94), + [sym_goto_statement] = STATE(1948), + [sym_labeled_statement] = STATE(1948), + [sym_if_statement] = STATE(1948), + [sym_while_statement] = STATE(1948), + [sym_local_declaration_statement] = STATE(1948), + [sym_local_function_statement] = STATE(1948), + [sym__local_function_declaration] = STATE(6313), + [sym_expression] = STATE(4374), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3356), + [sym__expression_statement_expression] = STATE(5134), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3102), + [sym_postfix_unary_expression] = STATE(3079), + [sym_prefix_unary_expression] = STATE(3079), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6134), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3102), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3079), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3102), + [sym_member_access_expression] = STATE(2472), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3079), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7425), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(3102), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3102), + [sym_typeof_expression] = STATE(3102), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2472), + [sym_literal] = STATE(3102), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2259), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_top_level] = STATE(1998), + [sym_preproc_else_in_top_level] = STATE(7581), + [sym_preproc_elif_in_top_level] = STATE(7581), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_else_in_expression] = STATE(7582), + [sym_preproc_elif_in_expression] = STATE(7582), + [sym_preproc_if_in_attribute_list] = STATE(3034), + [sym_preproc_else_in_attribute_list] = STATE(7598), + [sym_preproc_elif_in_attribute_list] = STATE(7598), [sym_preproc_region] = STATE(2), [sym_preproc_endregion] = STATE(2), [sym_preproc_line] = STATE(2), @@ -25929,10 +25795,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(2212), - [aux_sym__class_declaration_initializer_repeat2] = STATE(2358), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), - [aux_sym_preproc_if_in_top_level_repeat1] = STATE(14), + [aux_sym__class_declaration_initializer_repeat1] = STATE(2201), + [aux_sym__class_declaration_initializer_repeat2] = STATE(2352), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), + [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), @@ -25948,8 +25814,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_class] = ACTIONS(49), [anon_sym_ref] = ACTIONS(51), [anon_sym_struct] = ACTIONS(53), - [anon_sym_enum] = ACTIONS(175), - [anon_sym_LBRACE] = ACTIONS(177), + [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), @@ -25957,7 +25823,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_async] = ACTIONS(39), [anon_sym_const] = ACTIONS(65), [anon_sym_file] = ACTIONS(67), - [anon_sym_fixed] = ACTIONS(179), + [anon_sym_fixed] = ACTIONS(177), [anon_sym_internal] = ACTIONS(65), [anon_sym_new] = ACTIONS(71), [anon_sym_override] = ACTIONS(65), @@ -25973,7 +25839,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(181), + [anon_sym_checked] = ACTIONS(179), [anon_sym_BANG] = ACTIONS(75), [anon_sym_TILDE] = ACTIONS(75), [anon_sym_PLUS_PLUS] = ACTIONS(75), @@ -25990,23 +25856,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(183), - [anon_sym_unchecked] = ACTIONS(181), - [anon_sym_continue] = ACTIONS(185), - [anon_sym_do] = ACTIONS(187), - [anon_sym_while] = ACTIONS(189), - [anon_sym_for] = ACTIONS(191), - [anon_sym_lock] = ACTIONS(193), - [anon_sym_yield] = ACTIONS(195), - [anon_sym_switch] = ACTIONS(197), + [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(199), - [anon_sym_try] = ACTIONS(201), + [anon_sym_throw] = ACTIONS(197), + [anon_sym_try] = ACTIONS(199), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(203), + [anon_sym_await] = ACTIONS(201), [anon_sym_foreach] = ACTIONS(117), - [anon_sym_goto] = ACTIONS(205), - [anon_sym_if] = ACTIONS(207), + [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), @@ -26032,10 +25898,10 @@ 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(209), - [aux_sym_preproc_if_token3] = ACTIONS(211), - [aux_sym_preproc_else_token1] = ACTIONS(213), - [aux_sym_preproc_elif_token1] = ACTIONS(215), + [aux_sym_preproc_if_token1] = ACTIONS(207), + [aux_sym_preproc_if_token3] = ACTIONS(209), + [aux_sym_preproc_else_token1] = ACTIONS(211), + [aux_sym_preproc_elif_token1] = ACTIONS(213), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -26052,137 +25918,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(1994), - [sym_using_directive] = STATE(1994), - [sym_global_attribute] = STATE(1994), - [sym_attribute_list] = STATE(2855), - [sym__attribute_list] = STATE(2990), - [sym_namespace_declaration] = STATE(1994), - [sym_file_scoped_namespace_declaration] = STATE(1994), - [sym_type_declaration] = STATE(1994), - [sym_class_declaration] = STATE(1982), - [sym__class_declaration_initializer] = STATE(7301), - [sym_struct_declaration] = STATE(1982), - [sym__struct_declaration_initializer] = STATE(7209), - [sym_enum_declaration] = STATE(1982), - [sym_interface_declaration] = STATE(1982), - [sym__interface_declaration_initializer] = STATE(7211), - [sym_delegate_declaration] = STATE(1982), - [sym__delegate_declaration_initializer] = STATE(6719), - [sym_record_declaration] = STATE(1982), - [sym__record_declaration_initializer] = STATE(6747), - [sym_modifier] = STATE(3130), - [sym_parameter_list] = STATE(7311), - [sym_block] = STATE(1968), - [sym_variable_declaration] = STATE(7525), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(5160), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2204), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5867), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_statement] = STATE(1994), - [sym_break_statement] = STATE(1968), - [sym_checked_statement] = STATE(1968), - [sym_continue_statement] = STATE(1968), - [sym_do_statement] = STATE(1968), - [sym_empty_statement] = STATE(1968), - [sym_expression_statement] = STATE(1968), - [sym_fixed_statement] = STATE(1968), - [sym_for_statement] = STATE(1968), - [sym_return_statement] = STATE(1968), - [sym_lock_statement] = STATE(1968), - [sym_yield_statement] = STATE(1968), - [sym_switch_statement] = STATE(1968), - [sym_throw_statement] = STATE(1968), - [sym_try_statement] = STATE(1968), - [sym_unsafe_statement] = STATE(1968), - [sym_using_statement] = STATE(1968), - [sym_foreach_statement] = STATE(1968), - [sym__foreach_statement_initializer] = STATE(91), - [sym_goto_statement] = STATE(1968), - [sym_labeled_statement] = STATE(1968), - [sym_if_statement] = STATE(1968), - [sym_while_statement] = STATE(1968), - [sym_local_declaration_statement] = STATE(1968), - [sym_local_function_statement] = STATE(1968), - [sym__local_function_declaration] = STATE(6298), - [sym_expression] = STATE(4400), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3461), - [sym__expression_statement_expression] = STATE(5158), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3080), - [sym_postfix_unary_expression] = STATE(3111), - [sym_prefix_unary_expression] = STATE(3111), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6154), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3080), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3111), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3080), - [sym_member_access_expression] = STATE(2484), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3111), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7530), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(3080), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3080), - [sym_typeof_expression] = STATE(3080), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2484), - [sym_literal] = STATE(3080), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2264), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_top_level] = STATE(2007), - [sym_preproc_else_in_top_level] = STATE(7357), - [sym_preproc_elif_in_top_level] = STATE(7357), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_else_in_expression] = STATE(7358), - [sym_preproc_elif_in_expression] = STATE(7358), - [sym_preproc_if_in_attribute_list] = STATE(2979), - [sym_preproc_else_in_attribute_list] = STATE(7359), - [sym_preproc_elif_in_attribute_list] = STATE(7359), + [sym_extern_alias_directive] = STATE(1991), + [sym_using_directive] = STATE(1991), + [sym_global_attribute] = STATE(1991), + [sym_attribute_list] = STATE(2848), + [sym__attribute_list] = STATE(2953), + [sym_namespace_declaration] = STATE(1991), + [sym_file_scoped_namespace_declaration] = STATE(1991), + [sym_type_declaration] = STATE(1991), + [sym_class_declaration] = STATE(1981), + [sym__class_declaration_initializer] = STATE(6630), + [sym_struct_declaration] = STATE(1981), + [sym__struct_declaration_initializer] = STATE(6631), + [sym_enum_declaration] = STATE(1981), + [sym__enum_declaration_initializer] = STATE(6968), + [sym_interface_declaration] = STATE(1981), + [sym__interface_declaration_initializer] = STATE(6633), + [sym_delegate_declaration] = STATE(1981), + [sym__delegate_declaration_initializer] = STATE(6634), + [sym_record_declaration] = STATE(1981), + [sym__record_declaration_initializer] = STATE(6635), + [sym_modifier] = STATE(3114), + [sym_parameter_list] = STATE(7531), + [sym_block] = STATE(1948), + [sym_variable_declaration] = STATE(7649), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(5152), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2196), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5805), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_statement] = STATE(1991), + [sym_break_statement] = STATE(1948), + [sym_checked_statement] = STATE(1948), + [sym_continue_statement] = STATE(1948), + [sym_do_statement] = STATE(1948), + [sym_empty_statement] = STATE(1948), + [sym_expression_statement] = STATE(1948), + [sym_fixed_statement] = STATE(1948), + [sym_for_statement] = STATE(1948), + [sym_return_statement] = STATE(1948), + [sym_lock_statement] = STATE(1948), + [sym_yield_statement] = STATE(1948), + [sym_switch_statement] = STATE(1948), + [sym_throw_statement] = STATE(1948), + [sym_try_statement] = STATE(1948), + [sym_unsafe_statement] = STATE(1948), + [sym_using_statement] = STATE(1948), + [sym_foreach_statement] = STATE(1948), + [sym__foreach_statement_initializer] = STATE(94), + [sym_goto_statement] = STATE(1948), + [sym_labeled_statement] = STATE(1948), + [sym_if_statement] = STATE(1948), + [sym_while_statement] = STATE(1948), + [sym_local_declaration_statement] = STATE(1948), + [sym_local_function_statement] = STATE(1948), + [sym__local_function_declaration] = STATE(6313), + [sym_expression] = STATE(4346), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3356), + [sym__expression_statement_expression] = STATE(5134), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3102), + [sym_postfix_unary_expression] = STATE(3079), + [sym_prefix_unary_expression] = STATE(3079), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6134), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3102), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3079), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3102), + [sym_member_access_expression] = STATE(2472), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3079), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7425), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(3102), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3102), + [sym_typeof_expression] = STATE(3102), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2472), + [sym_literal] = STATE(3102), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2259), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_top_level] = STATE(1998), + [sym_preproc_else_in_top_level] = STATE(7613), + [sym_preproc_elif_in_top_level] = STATE(7613), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_else_in_expression] = STATE(7594), + [sym_preproc_elif_in_expression] = STATE(7594), + [sym_preproc_if_in_attribute_list] = STATE(3034), + [sym_preproc_else_in_attribute_list] = STATE(7380), + [sym_preproc_elif_in_attribute_list] = STATE(7380), [sym_preproc_region] = STATE(3), [sym_preproc_endregion] = STATE(3), [sym_preproc_line] = STATE(3), @@ -26192,9 +26059,9 @@ 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(2212), - [aux_sym__class_declaration_initializer_repeat2] = STATE(2358), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [aux_sym__class_declaration_initializer_repeat1] = STATE(2201), + [aux_sym__class_declaration_initializer_repeat2] = STATE(2352), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [aux_sym_preproc_if_in_top_level_repeat1] = STATE(10), [sym__identifier_token] = ACTIONS(25), [anon_sym_extern] = ACTIONS(159), @@ -26211,8 +26078,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_class] = ACTIONS(49), [anon_sym_ref] = ACTIONS(51), [anon_sym_struct] = ACTIONS(53), - [anon_sym_enum] = ACTIONS(175), - [anon_sym_LBRACE] = ACTIONS(177), + [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), @@ -26220,7 +26087,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_async] = ACTIONS(39), [anon_sym_const] = ACTIONS(65), [anon_sym_file] = ACTIONS(67), - [anon_sym_fixed] = ACTIONS(179), + [anon_sym_fixed] = ACTIONS(177), [anon_sym_internal] = ACTIONS(65), [anon_sym_new] = ACTIONS(71), [anon_sym_override] = ACTIONS(65), @@ -26236,7 +26103,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(181), + [anon_sym_checked] = ACTIONS(179), [anon_sym_BANG] = ACTIONS(75), [anon_sym_TILDE] = ACTIONS(75), [anon_sym_PLUS_PLUS] = ACTIONS(75), @@ -26253,23 +26120,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(183), - [anon_sym_unchecked] = ACTIONS(181), - [anon_sym_continue] = ACTIONS(185), - [anon_sym_do] = ACTIONS(187), - [anon_sym_while] = ACTIONS(189), - [anon_sym_for] = ACTIONS(191), - [anon_sym_lock] = ACTIONS(193), - [anon_sym_yield] = ACTIONS(195), - [anon_sym_switch] = ACTIONS(197), + [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(199), - [anon_sym_try] = ACTIONS(201), + [anon_sym_throw] = ACTIONS(197), + [anon_sym_try] = ACTIONS(199), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(203), + [anon_sym_await] = ACTIONS(201), [anon_sym_foreach] = ACTIONS(117), - [anon_sym_goto] = ACTIONS(205), - [anon_sym_if] = ACTIONS(207), + [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), @@ -26295,10 +26162,10 @@ 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(209), - [aux_sym_preproc_if_token3] = ACTIONS(217), - [aux_sym_preproc_else_token1] = ACTIONS(213), - [aux_sym_preproc_elif_token1] = ACTIONS(215), + [aux_sym_preproc_if_token1] = ACTIONS(207), + [aux_sym_preproc_if_token3] = ACTIONS(215), + [aux_sym_preproc_else_token1] = ACTIONS(211), + [aux_sym_preproc_elif_token1] = ACTIONS(213), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -26315,137 +26182,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(1994), - [sym_using_directive] = STATE(1994), - [sym_global_attribute] = STATE(1994), - [sym_attribute_list] = STATE(2859), - [sym__attribute_list] = STATE(2990), - [sym_namespace_declaration] = STATE(1994), - [sym_file_scoped_namespace_declaration] = STATE(1994), - [sym_type_declaration] = STATE(1994), - [sym_class_declaration] = STATE(1982), - [sym__class_declaration_initializer] = STATE(7301), - [sym_struct_declaration] = STATE(1982), - [sym__struct_declaration_initializer] = STATE(7209), - [sym_enum_declaration] = STATE(1982), - [sym_interface_declaration] = STATE(1982), - [sym__interface_declaration_initializer] = STATE(7211), - [sym_delegate_declaration] = STATE(1982), - [sym__delegate_declaration_initializer] = STATE(6719), - [sym_record_declaration] = STATE(1982), - [sym__record_declaration_initializer] = STATE(6747), - [sym_modifier] = STATE(3130), - [sym_parameter_list] = STATE(7311), - [sym_block] = STATE(1968), - [sym_variable_declaration] = STATE(7525), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(5160), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2204), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5867), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_statement] = STATE(1994), - [sym_break_statement] = STATE(1968), - [sym_checked_statement] = STATE(1968), - [sym_continue_statement] = STATE(1968), - [sym_do_statement] = STATE(1968), - [sym_empty_statement] = STATE(1968), - [sym_expression_statement] = STATE(1968), - [sym_fixed_statement] = STATE(1968), - [sym_for_statement] = STATE(1968), - [sym_return_statement] = STATE(1968), - [sym_lock_statement] = STATE(1968), - [sym_yield_statement] = STATE(1968), - [sym_switch_statement] = STATE(1968), - [sym_throw_statement] = STATE(1968), - [sym_try_statement] = STATE(1968), - [sym_unsafe_statement] = STATE(1968), - [sym_using_statement] = STATE(1968), - [sym_foreach_statement] = STATE(1968), - [sym__foreach_statement_initializer] = STATE(91), - [sym_goto_statement] = STATE(1968), - [sym_labeled_statement] = STATE(1968), - [sym_if_statement] = STATE(1968), - [sym_while_statement] = STATE(1968), - [sym_local_declaration_statement] = STATE(1968), - [sym_local_function_statement] = STATE(1968), - [sym__local_function_declaration] = STATE(6298), - [sym_expression] = STATE(4377), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3461), - [sym__expression_statement_expression] = STATE(5158), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3080), - [sym_postfix_unary_expression] = STATE(3111), - [sym_prefix_unary_expression] = STATE(3111), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6154), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3080), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3111), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3080), - [sym_member_access_expression] = STATE(2484), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3111), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7530), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(3080), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3080), - [sym_typeof_expression] = STATE(3080), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2484), - [sym_literal] = STATE(3080), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2264), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_top_level] = STATE(2007), - [sym_preproc_else_in_top_level] = STATE(7735), - [sym_preproc_elif_in_top_level] = STATE(7735), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_else_in_expression] = STATE(7744), - [sym_preproc_elif_in_expression] = STATE(7744), - [sym_preproc_if_in_attribute_list] = STATE(2979), - [sym_preproc_else_in_attribute_list] = STATE(7760), - [sym_preproc_elif_in_attribute_list] = STATE(7760), + [sym_extern_alias_directive] = STATE(1991), + [sym_using_directive] = STATE(1991), + [sym_global_attribute] = STATE(1991), + [sym_attribute_list] = STATE(2938), + [sym__attribute_list] = STATE(2953), + [sym_namespace_declaration] = STATE(1991), + [sym_file_scoped_namespace_declaration] = STATE(1991), + [sym_type_declaration] = STATE(1991), + [sym_class_declaration] = STATE(1981), + [sym__class_declaration_initializer] = STATE(6630), + [sym_struct_declaration] = STATE(1981), + [sym__struct_declaration_initializer] = STATE(6631), + [sym_enum_declaration] = STATE(1981), + [sym__enum_declaration_initializer] = STATE(6968), + [sym_interface_declaration] = STATE(1981), + [sym__interface_declaration_initializer] = STATE(6633), + [sym_delegate_declaration] = STATE(1981), + [sym__delegate_declaration_initializer] = STATE(6634), + [sym_record_declaration] = STATE(1981), + [sym__record_declaration_initializer] = STATE(6635), + [sym_modifier] = STATE(3114), + [sym_parameter_list] = STATE(7531), + [sym_block] = STATE(1948), + [sym_variable_declaration] = STATE(7649), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(5152), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2196), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5805), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_statement] = STATE(1991), + [sym_break_statement] = STATE(1948), + [sym_checked_statement] = STATE(1948), + [sym_continue_statement] = STATE(1948), + [sym_do_statement] = STATE(1948), + [sym_empty_statement] = STATE(1948), + [sym_expression_statement] = STATE(1948), + [sym_fixed_statement] = STATE(1948), + [sym_for_statement] = STATE(1948), + [sym_return_statement] = STATE(1948), + [sym_lock_statement] = STATE(1948), + [sym_yield_statement] = STATE(1948), + [sym_switch_statement] = STATE(1948), + [sym_throw_statement] = STATE(1948), + [sym_try_statement] = STATE(1948), + [sym_unsafe_statement] = STATE(1948), + [sym_using_statement] = STATE(1948), + [sym_foreach_statement] = STATE(1948), + [sym__foreach_statement_initializer] = STATE(94), + [sym_goto_statement] = STATE(1948), + [sym_labeled_statement] = STATE(1948), + [sym_if_statement] = STATE(1948), + [sym_while_statement] = STATE(1948), + [sym_local_declaration_statement] = STATE(1948), + [sym_local_function_statement] = STATE(1948), + [sym__local_function_declaration] = STATE(6313), + [sym_expression] = STATE(4374), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3356), + [sym__expression_statement_expression] = STATE(5134), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3102), + [sym_postfix_unary_expression] = STATE(3079), + [sym_prefix_unary_expression] = STATE(3079), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6134), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3102), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3079), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3102), + [sym_member_access_expression] = STATE(2472), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3079), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7425), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(3102), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3102), + [sym_typeof_expression] = STATE(3102), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2472), + [sym_literal] = STATE(3102), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2259), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_top_level] = STATE(1998), + [sym_preproc_else_in_top_level] = STATE(7474), + [sym_preproc_elif_in_top_level] = STATE(7474), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_else_in_expression] = STATE(7582), + [sym_preproc_elif_in_expression] = STATE(7582), + [sym_preproc_if_in_attribute_list] = STATE(3034), + [sym_preproc_else_in_attribute_list] = STATE(7479), + [sym_preproc_elif_in_attribute_list] = STATE(7479), [sym_preproc_region] = STATE(4), [sym_preproc_endregion] = STATE(4), [sym_preproc_line] = STATE(4), @@ -26455,10 +26323,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(2212), - [aux_sym__class_declaration_initializer_repeat2] = STATE(2358), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), - [aux_sym_preproc_if_in_top_level_repeat1] = STATE(14), + [aux_sym__class_declaration_initializer_repeat1] = STATE(2201), + [aux_sym__class_declaration_initializer_repeat2] = STATE(2352), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), + [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), @@ -26474,8 +26342,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_class] = ACTIONS(49), [anon_sym_ref] = ACTIONS(51), [anon_sym_struct] = ACTIONS(53), - [anon_sym_enum] = ACTIONS(175), - [anon_sym_LBRACE] = ACTIONS(177), + [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), @@ -26483,7 +26351,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_async] = ACTIONS(39), [anon_sym_const] = ACTIONS(65), [anon_sym_file] = ACTIONS(67), - [anon_sym_fixed] = ACTIONS(179), + [anon_sym_fixed] = ACTIONS(177), [anon_sym_internal] = ACTIONS(65), [anon_sym_new] = ACTIONS(71), [anon_sym_override] = ACTIONS(65), @@ -26499,7 +26367,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(181), + [anon_sym_checked] = ACTIONS(179), [anon_sym_BANG] = ACTIONS(75), [anon_sym_TILDE] = ACTIONS(75), [anon_sym_PLUS_PLUS] = ACTIONS(75), @@ -26516,23 +26384,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(183), - [anon_sym_unchecked] = ACTIONS(181), - [anon_sym_continue] = ACTIONS(185), - [anon_sym_do] = ACTIONS(187), - [anon_sym_while] = ACTIONS(189), - [anon_sym_for] = ACTIONS(191), - [anon_sym_lock] = ACTIONS(193), - [anon_sym_yield] = ACTIONS(195), - [anon_sym_switch] = ACTIONS(197), + [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(199), - [anon_sym_try] = ACTIONS(201), + [anon_sym_throw] = ACTIONS(197), + [anon_sym_try] = ACTIONS(199), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(203), + [anon_sym_await] = ACTIONS(201), [anon_sym_foreach] = ACTIONS(117), - [anon_sym_goto] = ACTIONS(205), - [anon_sym_if] = ACTIONS(207), + [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), @@ -26558,10 +26426,10 @@ 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(209), - [aux_sym_preproc_if_token3] = ACTIONS(211), - [aux_sym_preproc_else_token1] = ACTIONS(213), - [aux_sym_preproc_elif_token1] = ACTIONS(215), + [aux_sym_preproc_if_token1] = ACTIONS(207), + [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), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -26578,137 +26446,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(1994), - [sym_using_directive] = STATE(1994), - [sym_global_attribute] = STATE(1994), - [sym_attribute_list] = STATE(2938), - [sym__attribute_list] = STATE(2990), - [sym_namespace_declaration] = STATE(1994), - [sym_file_scoped_namespace_declaration] = STATE(1994), - [sym_type_declaration] = STATE(1994), - [sym_class_declaration] = STATE(1982), - [sym__class_declaration_initializer] = STATE(7301), - [sym_struct_declaration] = STATE(1982), - [sym__struct_declaration_initializer] = STATE(7209), - [sym_enum_declaration] = STATE(1982), - [sym_interface_declaration] = STATE(1982), - [sym__interface_declaration_initializer] = STATE(7211), - [sym_delegate_declaration] = STATE(1982), - [sym__delegate_declaration_initializer] = STATE(6719), - [sym_record_declaration] = STATE(1982), - [sym__record_declaration_initializer] = STATE(6747), - [sym_modifier] = STATE(3130), - [sym_parameter_list] = STATE(7311), - [sym_block] = STATE(1968), - [sym_variable_declaration] = STATE(7525), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(5160), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2204), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5867), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_statement] = STATE(1994), - [sym_break_statement] = STATE(1968), - [sym_checked_statement] = STATE(1968), - [sym_continue_statement] = STATE(1968), - [sym_do_statement] = STATE(1968), - [sym_empty_statement] = STATE(1968), - [sym_expression_statement] = STATE(1968), - [sym_fixed_statement] = STATE(1968), - [sym_for_statement] = STATE(1968), - [sym_return_statement] = STATE(1968), - [sym_lock_statement] = STATE(1968), - [sym_yield_statement] = STATE(1968), - [sym_switch_statement] = STATE(1968), - [sym_throw_statement] = STATE(1968), - [sym_try_statement] = STATE(1968), - [sym_unsafe_statement] = STATE(1968), - [sym_using_statement] = STATE(1968), - [sym_foreach_statement] = STATE(1968), - [sym__foreach_statement_initializer] = STATE(91), - [sym_goto_statement] = STATE(1968), - [sym_labeled_statement] = STATE(1968), - [sym_if_statement] = STATE(1968), - [sym_while_statement] = STATE(1968), - [sym_local_declaration_statement] = STATE(1968), - [sym_local_function_statement] = STATE(1968), - [sym__local_function_declaration] = STATE(6298), - [sym_expression] = STATE(4377), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3461), - [sym__expression_statement_expression] = STATE(5158), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3080), - [sym_postfix_unary_expression] = STATE(3111), - [sym_prefix_unary_expression] = STATE(3111), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6154), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3080), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3111), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3080), - [sym_member_access_expression] = STATE(2484), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3111), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7530), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(3080), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3080), - [sym_typeof_expression] = STATE(3080), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2484), - [sym_literal] = STATE(3080), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2264), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_top_level] = STATE(2007), - [sym_preproc_else_in_top_level] = STATE(7487), - [sym_preproc_elif_in_top_level] = STATE(7487), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_else_in_expression] = STATE(7744), - [sym_preproc_elif_in_expression] = STATE(7744), - [sym_preproc_if_in_attribute_list] = STATE(2979), - [sym_preproc_else_in_attribute_list] = STATE(7492), - [sym_preproc_elif_in_attribute_list] = STATE(7492), + [sym_extern_alias_directive] = STATE(1991), + [sym_using_directive] = STATE(1991), + [sym_global_attribute] = STATE(1991), + [sym_attribute_list] = STATE(2841), + [sym__attribute_list] = STATE(2953), + [sym_namespace_declaration] = STATE(1991), + [sym_file_scoped_namespace_declaration] = STATE(1991), + [sym_type_declaration] = STATE(1991), + [sym_class_declaration] = STATE(1981), + [sym__class_declaration_initializer] = STATE(6630), + [sym_struct_declaration] = STATE(1981), + [sym__struct_declaration_initializer] = STATE(6631), + [sym_enum_declaration] = STATE(1981), + [sym__enum_declaration_initializer] = STATE(6968), + [sym_interface_declaration] = STATE(1981), + [sym__interface_declaration_initializer] = STATE(6633), + [sym_delegate_declaration] = STATE(1981), + [sym__delegate_declaration_initializer] = STATE(6634), + [sym_record_declaration] = STATE(1981), + [sym__record_declaration_initializer] = STATE(6635), + [sym_modifier] = STATE(3114), + [sym_parameter_list] = STATE(7531), + [sym_block] = STATE(1948), + [sym_variable_declaration] = STATE(7649), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(5152), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2196), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5805), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_statement] = STATE(1991), + [sym_break_statement] = STATE(1948), + [sym_checked_statement] = STATE(1948), + [sym_continue_statement] = STATE(1948), + [sym_do_statement] = STATE(1948), + [sym_empty_statement] = STATE(1948), + [sym_expression_statement] = STATE(1948), + [sym_fixed_statement] = STATE(1948), + [sym_for_statement] = STATE(1948), + [sym_return_statement] = STATE(1948), + [sym_lock_statement] = STATE(1948), + [sym_yield_statement] = STATE(1948), + [sym_switch_statement] = STATE(1948), + [sym_throw_statement] = STATE(1948), + [sym_try_statement] = STATE(1948), + [sym_unsafe_statement] = STATE(1948), + [sym_using_statement] = STATE(1948), + [sym_foreach_statement] = STATE(1948), + [sym__foreach_statement_initializer] = STATE(94), + [sym_goto_statement] = STATE(1948), + [sym_labeled_statement] = STATE(1948), + [sym_if_statement] = STATE(1948), + [sym_while_statement] = STATE(1948), + [sym_local_declaration_statement] = STATE(1948), + [sym_local_function_statement] = STATE(1948), + [sym__local_function_declaration] = STATE(6313), + [sym_expression] = STATE(4374), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3356), + [sym__expression_statement_expression] = STATE(5134), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3102), + [sym_postfix_unary_expression] = STATE(3079), + [sym_prefix_unary_expression] = STATE(3079), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6134), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3102), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3079), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3102), + [sym_member_access_expression] = STATE(2472), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3079), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7425), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(3102), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3102), + [sym_typeof_expression] = STATE(3102), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2472), + [sym_literal] = STATE(3102), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2259), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_top_level] = STATE(1998), + [sym_preproc_else_in_top_level] = STATE(7389), + [sym_preproc_elif_in_top_level] = STATE(7389), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_else_in_expression] = STATE(7582), + [sym_preproc_elif_in_expression] = STATE(7582), + [sym_preproc_if_in_attribute_list] = STATE(3034), + [sym_preproc_else_in_attribute_list] = STATE(7598), + [sym_preproc_elif_in_attribute_list] = STATE(7598), [sym_preproc_region] = STATE(5), [sym_preproc_endregion] = STATE(5), [sym_preproc_line] = STATE(5), @@ -26718,10 +26587,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(2212), - [aux_sym__class_declaration_initializer_repeat2] = STATE(2358), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), - [aux_sym_preproc_if_in_top_level_repeat1] = STATE(11), + [aux_sym__class_declaration_initializer_repeat1] = STATE(2201), + [aux_sym__class_declaration_initializer_repeat2] = STATE(2352), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), + [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), @@ -26737,8 +26606,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_class] = ACTIONS(49), [anon_sym_ref] = ACTIONS(51), [anon_sym_struct] = ACTIONS(53), - [anon_sym_enum] = ACTIONS(175), - [anon_sym_LBRACE] = ACTIONS(177), + [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), @@ -26746,7 +26615,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_async] = ACTIONS(39), [anon_sym_const] = ACTIONS(65), [anon_sym_file] = ACTIONS(67), - [anon_sym_fixed] = ACTIONS(179), + [anon_sym_fixed] = ACTIONS(177), [anon_sym_internal] = ACTIONS(65), [anon_sym_new] = ACTIONS(71), [anon_sym_override] = ACTIONS(65), @@ -26762,7 +26631,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(181), + [anon_sym_checked] = ACTIONS(179), [anon_sym_BANG] = ACTIONS(75), [anon_sym_TILDE] = ACTIONS(75), [anon_sym_PLUS_PLUS] = ACTIONS(75), @@ -26779,23 +26648,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(183), - [anon_sym_unchecked] = ACTIONS(181), - [anon_sym_continue] = ACTIONS(185), - [anon_sym_do] = ACTIONS(187), - [anon_sym_while] = ACTIONS(189), - [anon_sym_for] = ACTIONS(191), - [anon_sym_lock] = ACTIONS(193), - [anon_sym_yield] = ACTIONS(195), - [anon_sym_switch] = ACTIONS(197), + [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(199), - [anon_sym_try] = ACTIONS(201), + [anon_sym_throw] = ACTIONS(197), + [anon_sym_try] = ACTIONS(199), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(203), + [anon_sym_await] = ACTIONS(201), [anon_sym_foreach] = ACTIONS(117), - [anon_sym_goto] = ACTIONS(205), - [anon_sym_if] = ACTIONS(207), + [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), @@ -26821,10 +26690,10 @@ 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(209), + [aux_sym_preproc_if_token1] = ACTIONS(207), [aux_sym_preproc_if_token3] = ACTIONS(219), - [aux_sym_preproc_else_token1] = ACTIONS(213), - [aux_sym_preproc_elif_token1] = ACTIONS(215), + [aux_sym_preproc_else_token1] = ACTIONS(211), + [aux_sym_preproc_elif_token1] = ACTIONS(213), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -26841,137 +26710,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(1994), - [sym_using_directive] = STATE(1994), - [sym_global_attribute] = STATE(1994), + [sym_extern_alias_directive] = STATE(1991), + [sym_using_directive] = STATE(1991), + [sym_global_attribute] = STATE(1991), [sym_attribute_list] = STATE(2938), - [sym__attribute_list] = STATE(2990), - [sym_namespace_declaration] = STATE(1994), - [sym_file_scoped_namespace_declaration] = STATE(1994), - [sym_type_declaration] = STATE(1994), - [sym_class_declaration] = STATE(1982), - [sym__class_declaration_initializer] = STATE(7301), - [sym_struct_declaration] = STATE(1982), - [sym__struct_declaration_initializer] = STATE(7209), - [sym_enum_declaration] = STATE(1982), - [sym_interface_declaration] = STATE(1982), - [sym__interface_declaration_initializer] = STATE(7211), - [sym_delegate_declaration] = STATE(1982), - [sym__delegate_declaration_initializer] = STATE(6719), - [sym_record_declaration] = STATE(1982), - [sym__record_declaration_initializer] = STATE(6747), - [sym_modifier] = STATE(3130), - [sym_parameter_list] = STATE(7311), - [sym_block] = STATE(1968), - [sym_variable_declaration] = STATE(7525), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(5160), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2204), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5867), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_statement] = STATE(1994), - [sym_break_statement] = STATE(1968), - [sym_checked_statement] = STATE(1968), - [sym_continue_statement] = STATE(1968), - [sym_do_statement] = STATE(1968), - [sym_empty_statement] = STATE(1968), - [sym_expression_statement] = STATE(1968), - [sym_fixed_statement] = STATE(1968), - [sym_for_statement] = STATE(1968), - [sym_return_statement] = STATE(1968), - [sym_lock_statement] = STATE(1968), - [sym_yield_statement] = STATE(1968), - [sym_switch_statement] = STATE(1968), - [sym_throw_statement] = STATE(1968), - [sym_try_statement] = STATE(1968), - [sym_unsafe_statement] = STATE(1968), - [sym_using_statement] = STATE(1968), - [sym_foreach_statement] = STATE(1968), - [sym__foreach_statement_initializer] = STATE(91), - [sym_goto_statement] = STATE(1968), - [sym_labeled_statement] = STATE(1968), - [sym_if_statement] = STATE(1968), - [sym_while_statement] = STATE(1968), - [sym_local_declaration_statement] = STATE(1968), - [sym_local_function_statement] = STATE(1968), - [sym__local_function_declaration] = STATE(6298), - [sym_expression] = STATE(4377), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3461), - [sym__expression_statement_expression] = STATE(5158), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3080), - [sym_postfix_unary_expression] = STATE(3111), - [sym_prefix_unary_expression] = STATE(3111), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6154), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3080), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3111), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3080), - [sym_member_access_expression] = STATE(2484), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3111), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7530), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(3080), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3080), - [sym_typeof_expression] = STATE(3080), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2484), - [sym_literal] = STATE(3080), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2264), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_top_level] = STATE(2007), - [sym_preproc_else_in_top_level] = STATE(7466), - [sym_preproc_elif_in_top_level] = STATE(7466), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_else_in_expression] = STATE(7744), - [sym_preproc_elif_in_expression] = STATE(7744), - [sym_preproc_if_in_attribute_list] = STATE(2979), - [sym_preproc_else_in_attribute_list] = STATE(7492), - [sym_preproc_elif_in_attribute_list] = STATE(7492), + [sym__attribute_list] = STATE(2953), + [sym_namespace_declaration] = STATE(1991), + [sym_file_scoped_namespace_declaration] = STATE(1991), + [sym_type_declaration] = STATE(1991), + [sym_class_declaration] = STATE(1981), + [sym__class_declaration_initializer] = STATE(6630), + [sym_struct_declaration] = STATE(1981), + [sym__struct_declaration_initializer] = STATE(6631), + [sym_enum_declaration] = STATE(1981), + [sym__enum_declaration_initializer] = STATE(6968), + [sym_interface_declaration] = STATE(1981), + [sym__interface_declaration_initializer] = STATE(6633), + [sym_delegate_declaration] = STATE(1981), + [sym__delegate_declaration_initializer] = STATE(6634), + [sym_record_declaration] = STATE(1981), + [sym__record_declaration_initializer] = STATE(6635), + [sym_modifier] = STATE(3114), + [sym_parameter_list] = STATE(7531), + [sym_block] = STATE(1948), + [sym_variable_declaration] = STATE(7649), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(5152), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2196), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5805), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_statement] = STATE(1991), + [sym_break_statement] = STATE(1948), + [sym_checked_statement] = STATE(1948), + [sym_continue_statement] = STATE(1948), + [sym_do_statement] = STATE(1948), + [sym_empty_statement] = STATE(1948), + [sym_expression_statement] = STATE(1948), + [sym_fixed_statement] = STATE(1948), + [sym_for_statement] = STATE(1948), + [sym_return_statement] = STATE(1948), + [sym_lock_statement] = STATE(1948), + [sym_yield_statement] = STATE(1948), + [sym_switch_statement] = STATE(1948), + [sym_throw_statement] = STATE(1948), + [sym_try_statement] = STATE(1948), + [sym_unsafe_statement] = STATE(1948), + [sym_using_statement] = STATE(1948), + [sym_foreach_statement] = STATE(1948), + [sym__foreach_statement_initializer] = STATE(94), + [sym_goto_statement] = STATE(1948), + [sym_labeled_statement] = STATE(1948), + [sym_if_statement] = STATE(1948), + [sym_while_statement] = STATE(1948), + [sym_local_declaration_statement] = STATE(1948), + [sym_local_function_statement] = STATE(1948), + [sym__local_function_declaration] = STATE(6313), + [sym_expression] = STATE(4374), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3356), + [sym__expression_statement_expression] = STATE(5134), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3102), + [sym_postfix_unary_expression] = STATE(3079), + [sym_prefix_unary_expression] = STATE(3079), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6134), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3102), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3079), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3102), + [sym_member_access_expression] = STATE(2472), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3079), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7425), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(3102), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3102), + [sym_typeof_expression] = STATE(3102), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2472), + [sym_literal] = STATE(3102), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2259), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_top_level] = STATE(1998), + [sym_preproc_else_in_top_level] = STATE(7346), + [sym_preproc_elif_in_top_level] = STATE(7346), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_else_in_expression] = STATE(7582), + [sym_preproc_elif_in_expression] = STATE(7582), + [sym_preproc_if_in_attribute_list] = STATE(3034), + [sym_preproc_else_in_attribute_list] = STATE(7479), + [sym_preproc_elif_in_attribute_list] = STATE(7479), [sym_preproc_region] = STATE(6), [sym_preproc_endregion] = STATE(6), [sym_preproc_line] = STATE(6), @@ -26981,9 +26851,9 @@ 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(2212), - [aux_sym__class_declaration_initializer_repeat2] = STATE(2358), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [aux_sym__class_declaration_initializer_repeat1] = STATE(2201), + [aux_sym__class_declaration_initializer_repeat2] = STATE(2352), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [aux_sym_preproc_if_in_top_level_repeat1] = STATE(13), [sym__identifier_token] = ACTIONS(25), [anon_sym_extern] = ACTIONS(159), @@ -27000,8 +26870,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_class] = ACTIONS(49), [anon_sym_ref] = ACTIONS(51), [anon_sym_struct] = ACTIONS(53), - [anon_sym_enum] = ACTIONS(175), - [anon_sym_LBRACE] = ACTIONS(177), + [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), @@ -27009,7 +26879,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_async] = ACTIONS(39), [anon_sym_const] = ACTIONS(65), [anon_sym_file] = ACTIONS(67), - [anon_sym_fixed] = ACTIONS(179), + [anon_sym_fixed] = ACTIONS(177), [anon_sym_internal] = ACTIONS(65), [anon_sym_new] = ACTIONS(71), [anon_sym_override] = ACTIONS(65), @@ -27025,7 +26895,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(181), + [anon_sym_checked] = ACTIONS(179), [anon_sym_BANG] = ACTIONS(75), [anon_sym_TILDE] = ACTIONS(75), [anon_sym_PLUS_PLUS] = ACTIONS(75), @@ -27042,23 +26912,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(183), - [anon_sym_unchecked] = ACTIONS(181), - [anon_sym_continue] = ACTIONS(185), - [anon_sym_do] = ACTIONS(187), - [anon_sym_while] = ACTIONS(189), - [anon_sym_for] = ACTIONS(191), - [anon_sym_lock] = ACTIONS(193), - [anon_sym_yield] = ACTIONS(195), - [anon_sym_switch] = ACTIONS(197), + [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(199), - [anon_sym_try] = ACTIONS(201), + [anon_sym_throw] = ACTIONS(197), + [anon_sym_try] = ACTIONS(199), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(203), + [anon_sym_await] = ACTIONS(201), [anon_sym_foreach] = ACTIONS(117), - [anon_sym_goto] = ACTIONS(205), - [anon_sym_if] = ACTIONS(207), + [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), @@ -27084,10 +26954,10 @@ 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(209), + [aux_sym_preproc_if_token1] = ACTIONS(207), [aux_sym_preproc_if_token3] = ACTIONS(221), - [aux_sym_preproc_else_token1] = ACTIONS(213), - [aux_sym_preproc_elif_token1] = ACTIONS(215), + [aux_sym_preproc_else_token1] = ACTIONS(211), + [aux_sym_preproc_elif_token1] = ACTIONS(213), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -27104,137 +26974,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(1994), - [sym_using_directive] = STATE(1994), - [sym_global_attribute] = STATE(1994), - [sym_attribute_list] = STATE(2859), - [sym__attribute_list] = STATE(2990), - [sym_namespace_declaration] = STATE(1994), - [sym_file_scoped_namespace_declaration] = STATE(1994), - [sym_type_declaration] = STATE(1994), - [sym_class_declaration] = STATE(1982), - [sym__class_declaration_initializer] = STATE(7301), - [sym_struct_declaration] = STATE(1982), - [sym__struct_declaration_initializer] = STATE(7209), - [sym_enum_declaration] = STATE(1982), - [sym_interface_declaration] = STATE(1982), - [sym__interface_declaration_initializer] = STATE(7211), - [sym_delegate_declaration] = STATE(1982), - [sym__delegate_declaration_initializer] = STATE(6719), - [sym_record_declaration] = STATE(1982), - [sym__record_declaration_initializer] = STATE(6747), - [sym_modifier] = STATE(3130), - [sym_parameter_list] = STATE(7311), - [sym_block] = STATE(1968), - [sym_variable_declaration] = STATE(7525), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(5160), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2204), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5867), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_statement] = STATE(1994), - [sym_break_statement] = STATE(1968), - [sym_checked_statement] = STATE(1968), - [sym_continue_statement] = STATE(1968), - [sym_do_statement] = STATE(1968), - [sym_empty_statement] = STATE(1968), - [sym_expression_statement] = STATE(1968), - [sym_fixed_statement] = STATE(1968), - [sym_for_statement] = STATE(1968), - [sym_return_statement] = STATE(1968), - [sym_lock_statement] = STATE(1968), - [sym_yield_statement] = STATE(1968), - [sym_switch_statement] = STATE(1968), - [sym_throw_statement] = STATE(1968), - [sym_try_statement] = STATE(1968), - [sym_unsafe_statement] = STATE(1968), - [sym_using_statement] = STATE(1968), - [sym_foreach_statement] = STATE(1968), - [sym__foreach_statement_initializer] = STATE(91), - [sym_goto_statement] = STATE(1968), - [sym_labeled_statement] = STATE(1968), - [sym_if_statement] = STATE(1968), - [sym_while_statement] = STATE(1968), - [sym_local_declaration_statement] = STATE(1968), - [sym_local_function_statement] = STATE(1968), - [sym__local_function_declaration] = STATE(6298), - [sym_expression] = STATE(4377), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3461), - [sym__expression_statement_expression] = STATE(5158), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3080), - [sym_postfix_unary_expression] = STATE(3111), - [sym_prefix_unary_expression] = STATE(3111), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6154), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3080), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3111), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3080), - [sym_member_access_expression] = STATE(2484), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3111), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7530), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(3080), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3080), - [sym_typeof_expression] = STATE(3080), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2484), - [sym_literal] = STATE(3080), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2264), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_top_level] = STATE(2007), - [sym_preproc_else_in_top_level] = STATE(7763), - [sym_preproc_elif_in_top_level] = STATE(7763), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_else_in_expression] = STATE(7744), - [sym_preproc_elif_in_expression] = STATE(7744), - [sym_preproc_if_in_attribute_list] = STATE(2979), - [sym_preproc_else_in_attribute_list] = STATE(7760), - [sym_preproc_elif_in_attribute_list] = STATE(7760), + [sym_extern_alias_directive] = STATE(1991), + [sym_using_directive] = STATE(1991), + [sym_global_attribute] = STATE(1991), + [sym_attribute_list] = STATE(2938), + [sym__attribute_list] = STATE(2953), + [sym_namespace_declaration] = STATE(1991), + [sym_file_scoped_namespace_declaration] = STATE(1991), + [sym_type_declaration] = STATE(1991), + [sym_class_declaration] = STATE(1981), + [sym__class_declaration_initializer] = STATE(6630), + [sym_struct_declaration] = STATE(1981), + [sym__struct_declaration_initializer] = STATE(6631), + [sym_enum_declaration] = STATE(1981), + [sym__enum_declaration_initializer] = STATE(6968), + [sym_interface_declaration] = STATE(1981), + [sym__interface_declaration_initializer] = STATE(6633), + [sym_delegate_declaration] = STATE(1981), + [sym__delegate_declaration_initializer] = STATE(6634), + [sym_record_declaration] = STATE(1981), + [sym__record_declaration_initializer] = STATE(6635), + [sym_modifier] = STATE(3114), + [sym_parameter_list] = STATE(7531), + [sym_block] = STATE(1948), + [sym_variable_declaration] = STATE(7649), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(5152), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2196), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5805), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_statement] = STATE(1991), + [sym_break_statement] = STATE(1948), + [sym_checked_statement] = STATE(1948), + [sym_continue_statement] = STATE(1948), + [sym_do_statement] = STATE(1948), + [sym_empty_statement] = STATE(1948), + [sym_expression_statement] = STATE(1948), + [sym_fixed_statement] = STATE(1948), + [sym_for_statement] = STATE(1948), + [sym_return_statement] = STATE(1948), + [sym_lock_statement] = STATE(1948), + [sym_yield_statement] = STATE(1948), + [sym_switch_statement] = STATE(1948), + [sym_throw_statement] = STATE(1948), + [sym_try_statement] = STATE(1948), + [sym_unsafe_statement] = STATE(1948), + [sym_using_statement] = STATE(1948), + [sym_foreach_statement] = STATE(1948), + [sym__foreach_statement_initializer] = STATE(94), + [sym_goto_statement] = STATE(1948), + [sym_labeled_statement] = STATE(1948), + [sym_if_statement] = STATE(1948), + [sym_while_statement] = STATE(1948), + [sym_local_declaration_statement] = STATE(1948), + [sym_local_function_statement] = STATE(1948), + [sym__local_function_declaration] = STATE(6313), + [sym_expression] = STATE(4374), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3356), + [sym__expression_statement_expression] = STATE(5134), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3102), + [sym_postfix_unary_expression] = STATE(3079), + [sym_prefix_unary_expression] = STATE(3079), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6134), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3102), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3079), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3102), + [sym_member_access_expression] = STATE(2472), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3079), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7425), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(3102), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3102), + [sym_typeof_expression] = STATE(3102), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2472), + [sym_literal] = STATE(3102), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2259), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_top_level] = STATE(1998), + [sym_preproc_else_in_top_level] = STATE(7389), + [sym_preproc_elif_in_top_level] = STATE(7389), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_else_in_expression] = STATE(7582), + [sym_preproc_elif_in_expression] = STATE(7582), + [sym_preproc_if_in_attribute_list] = STATE(3034), + [sym_preproc_else_in_attribute_list] = STATE(7479), + [sym_preproc_elif_in_attribute_list] = STATE(7479), [sym_preproc_region] = STATE(7), [sym_preproc_endregion] = STATE(7), [sym_preproc_line] = STATE(7), @@ -27244,10 +27115,10 @@ 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(2212), - [aux_sym__class_declaration_initializer_repeat2] = STATE(2358), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), - [aux_sym_preproc_if_in_top_level_repeat1] = STATE(12), + [aux_sym__class_declaration_initializer_repeat1] = STATE(2201), + [aux_sym__class_declaration_initializer_repeat2] = STATE(2352), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), + [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), @@ -27263,8 +27134,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_class] = ACTIONS(49), [anon_sym_ref] = ACTIONS(51), [anon_sym_struct] = ACTIONS(53), - [anon_sym_enum] = ACTIONS(175), - [anon_sym_LBRACE] = ACTIONS(177), + [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), @@ -27272,7 +27143,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_async] = ACTIONS(39), [anon_sym_const] = ACTIONS(65), [anon_sym_file] = ACTIONS(67), - [anon_sym_fixed] = ACTIONS(179), + [anon_sym_fixed] = ACTIONS(177), [anon_sym_internal] = ACTIONS(65), [anon_sym_new] = ACTIONS(71), [anon_sym_override] = ACTIONS(65), @@ -27288,7 +27159,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(181), + [anon_sym_checked] = ACTIONS(179), [anon_sym_BANG] = ACTIONS(75), [anon_sym_TILDE] = ACTIONS(75), [anon_sym_PLUS_PLUS] = ACTIONS(75), @@ -27305,23 +27176,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(183), - [anon_sym_unchecked] = ACTIONS(181), - [anon_sym_continue] = ACTIONS(185), - [anon_sym_do] = ACTIONS(187), - [anon_sym_while] = ACTIONS(189), - [anon_sym_for] = ACTIONS(191), - [anon_sym_lock] = ACTIONS(193), - [anon_sym_yield] = ACTIONS(195), - [anon_sym_switch] = ACTIONS(197), + [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(199), - [anon_sym_try] = ACTIONS(201), + [anon_sym_throw] = ACTIONS(197), + [anon_sym_try] = ACTIONS(199), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(203), + [anon_sym_await] = ACTIONS(201), [anon_sym_foreach] = ACTIONS(117), - [anon_sym_goto] = ACTIONS(205), - [anon_sym_if] = ACTIONS(207), + [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), @@ -27347,10 +27218,10 @@ 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(209), - [aux_sym_preproc_if_token3] = ACTIONS(223), - [aux_sym_preproc_else_token1] = ACTIONS(213), - [aux_sym_preproc_elif_token1] = ACTIONS(215), + [aux_sym_preproc_if_token1] = ACTIONS(207), + [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), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -27367,137 +27238,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(1994), - [sym_using_directive] = STATE(1994), - [sym_global_attribute] = STATE(1994), + [sym_extern_alias_directive] = STATE(1991), + [sym_using_directive] = STATE(1991), + [sym_global_attribute] = STATE(1991), [sym_attribute_list] = STATE(2938), - [sym__attribute_list] = STATE(2990), - [sym_namespace_declaration] = STATE(1994), - [sym_file_scoped_namespace_declaration] = STATE(1994), - [sym_type_declaration] = STATE(1994), - [sym_class_declaration] = STATE(1982), - [sym__class_declaration_initializer] = STATE(7301), - [sym_struct_declaration] = STATE(1982), - [sym__struct_declaration_initializer] = STATE(7209), - [sym_enum_declaration] = STATE(1982), - [sym_interface_declaration] = STATE(1982), - [sym__interface_declaration_initializer] = STATE(7211), - [sym_delegate_declaration] = STATE(1982), - [sym__delegate_declaration_initializer] = STATE(6719), - [sym_record_declaration] = STATE(1982), - [sym__record_declaration_initializer] = STATE(6747), - [sym_modifier] = STATE(3130), - [sym_parameter_list] = STATE(7311), - [sym_block] = STATE(1968), - [sym_variable_declaration] = STATE(7525), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(5160), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2204), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5867), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_statement] = STATE(1994), - [sym_break_statement] = STATE(1968), - [sym_checked_statement] = STATE(1968), - [sym_continue_statement] = STATE(1968), - [sym_do_statement] = STATE(1968), - [sym_empty_statement] = STATE(1968), - [sym_expression_statement] = STATE(1968), - [sym_fixed_statement] = STATE(1968), - [sym_for_statement] = STATE(1968), - [sym_return_statement] = STATE(1968), - [sym_lock_statement] = STATE(1968), - [sym_yield_statement] = STATE(1968), - [sym_switch_statement] = STATE(1968), - [sym_throw_statement] = STATE(1968), - [sym_try_statement] = STATE(1968), - [sym_unsafe_statement] = STATE(1968), - [sym_using_statement] = STATE(1968), - [sym_foreach_statement] = STATE(1968), - [sym__foreach_statement_initializer] = STATE(91), - [sym_goto_statement] = STATE(1968), - [sym_labeled_statement] = STATE(1968), - [sym_if_statement] = STATE(1968), - [sym_while_statement] = STATE(1968), - [sym_local_declaration_statement] = STATE(1968), - [sym_local_function_statement] = STATE(1968), - [sym__local_function_declaration] = STATE(6298), - [sym_expression] = STATE(4377), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3461), - [sym__expression_statement_expression] = STATE(5158), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3080), - [sym_postfix_unary_expression] = STATE(3111), - [sym_prefix_unary_expression] = STATE(3111), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6154), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3080), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3111), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3080), - [sym_member_access_expression] = STATE(2484), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3111), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7530), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(3080), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3080), - [sym_typeof_expression] = STATE(3080), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2484), - [sym_literal] = STATE(3080), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2264), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_top_level] = STATE(2007), - [sym_preproc_else_in_top_level] = STATE(7763), - [sym_preproc_elif_in_top_level] = STATE(7763), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_else_in_expression] = STATE(7744), - [sym_preproc_elif_in_expression] = STATE(7744), - [sym_preproc_if_in_attribute_list] = STATE(2979), - [sym_preproc_else_in_attribute_list] = STATE(7492), - [sym_preproc_elif_in_attribute_list] = STATE(7492), + [sym__attribute_list] = STATE(2953), + [sym_namespace_declaration] = STATE(1991), + [sym_file_scoped_namespace_declaration] = STATE(1991), + [sym_type_declaration] = STATE(1991), + [sym_class_declaration] = STATE(1981), + [sym__class_declaration_initializer] = STATE(6630), + [sym_struct_declaration] = STATE(1981), + [sym__struct_declaration_initializer] = STATE(6631), + [sym_enum_declaration] = STATE(1981), + [sym__enum_declaration_initializer] = STATE(6968), + [sym_interface_declaration] = STATE(1981), + [sym__interface_declaration_initializer] = STATE(6633), + [sym_delegate_declaration] = STATE(1981), + [sym__delegate_declaration_initializer] = STATE(6634), + [sym_record_declaration] = STATE(1981), + [sym__record_declaration_initializer] = STATE(6635), + [sym_modifier] = STATE(3114), + [sym_parameter_list] = STATE(7531), + [sym_block] = STATE(1948), + [sym_variable_declaration] = STATE(7649), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(5152), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2196), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5805), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_statement] = STATE(1991), + [sym_break_statement] = STATE(1948), + [sym_checked_statement] = STATE(1948), + [sym_continue_statement] = STATE(1948), + [sym_do_statement] = STATE(1948), + [sym_empty_statement] = STATE(1948), + [sym_expression_statement] = STATE(1948), + [sym_fixed_statement] = STATE(1948), + [sym_for_statement] = STATE(1948), + [sym_return_statement] = STATE(1948), + [sym_lock_statement] = STATE(1948), + [sym_yield_statement] = STATE(1948), + [sym_switch_statement] = STATE(1948), + [sym_throw_statement] = STATE(1948), + [sym_try_statement] = STATE(1948), + [sym_unsafe_statement] = STATE(1948), + [sym_using_statement] = STATE(1948), + [sym_foreach_statement] = STATE(1948), + [sym__foreach_statement_initializer] = STATE(94), + [sym_goto_statement] = STATE(1948), + [sym_labeled_statement] = STATE(1948), + [sym_if_statement] = STATE(1948), + [sym_while_statement] = STATE(1948), + [sym_local_declaration_statement] = STATE(1948), + [sym_local_function_statement] = STATE(1948), + [sym__local_function_declaration] = STATE(6313), + [sym_expression] = STATE(4374), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3356), + [sym__expression_statement_expression] = STATE(5134), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3102), + [sym_postfix_unary_expression] = STATE(3079), + [sym_prefix_unary_expression] = STATE(3079), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6134), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3102), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3079), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3102), + [sym_member_access_expression] = STATE(2472), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3079), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7425), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(3102), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3102), + [sym_typeof_expression] = STATE(3102), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2472), + [sym_literal] = STATE(3102), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2259), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_top_level] = STATE(1998), + [sym_preproc_else_in_top_level] = STATE(7581), + [sym_preproc_elif_in_top_level] = STATE(7581), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_else_in_expression] = STATE(7582), + [sym_preproc_elif_in_expression] = STATE(7582), + [sym_preproc_if_in_attribute_list] = STATE(3034), + [sym_preproc_else_in_attribute_list] = STATE(7479), + [sym_preproc_elif_in_attribute_list] = STATE(7479), [sym_preproc_region] = STATE(8), [sym_preproc_endregion] = STATE(8), [sym_preproc_line] = STATE(8), @@ -27507,10 +27379,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(2212), - [aux_sym__class_declaration_initializer_repeat2] = STATE(2358), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), - [aux_sym_preproc_if_in_top_level_repeat1] = STATE(12), + [aux_sym__class_declaration_initializer_repeat1] = STATE(2201), + [aux_sym__class_declaration_initializer_repeat2] = STATE(2352), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), + [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), @@ -27526,8 +27398,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_class] = ACTIONS(49), [anon_sym_ref] = ACTIONS(51), [anon_sym_struct] = ACTIONS(53), - [anon_sym_enum] = ACTIONS(175), - [anon_sym_LBRACE] = ACTIONS(177), + [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), @@ -27535,7 +27407,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_async] = ACTIONS(39), [anon_sym_const] = ACTIONS(65), [anon_sym_file] = ACTIONS(67), - [anon_sym_fixed] = ACTIONS(179), + [anon_sym_fixed] = ACTIONS(177), [anon_sym_internal] = ACTIONS(65), [anon_sym_new] = ACTIONS(71), [anon_sym_override] = ACTIONS(65), @@ -27551,7 +27423,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(181), + [anon_sym_checked] = ACTIONS(179), [anon_sym_BANG] = ACTIONS(75), [anon_sym_TILDE] = ACTIONS(75), [anon_sym_PLUS_PLUS] = ACTIONS(75), @@ -27568,23 +27440,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(183), - [anon_sym_unchecked] = ACTIONS(181), - [anon_sym_continue] = ACTIONS(185), - [anon_sym_do] = ACTIONS(187), - [anon_sym_while] = ACTIONS(189), - [anon_sym_for] = ACTIONS(191), - [anon_sym_lock] = ACTIONS(193), - [anon_sym_yield] = ACTIONS(195), - [anon_sym_switch] = ACTIONS(197), + [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(199), - [anon_sym_try] = ACTIONS(201), + [anon_sym_throw] = ACTIONS(197), + [anon_sym_try] = ACTIONS(199), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(203), + [anon_sym_await] = ACTIONS(201), [anon_sym_foreach] = ACTIONS(117), - [anon_sym_goto] = ACTIONS(205), - [anon_sym_if] = ACTIONS(207), + [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), @@ -27610,10 +27482,10 @@ 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(209), - [aux_sym_preproc_if_token3] = ACTIONS(223), - [aux_sym_preproc_else_token1] = ACTIONS(213), - [aux_sym_preproc_elif_token1] = ACTIONS(215), + [aux_sym_preproc_if_token1] = ACTIONS(207), + [aux_sym_preproc_if_token3] = ACTIONS(209), + [aux_sym_preproc_else_token1] = ACTIONS(211), + [aux_sym_preproc_elif_token1] = ACTIONS(213), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -27630,133 +27502,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(1994), - [sym_using_directive] = STATE(1994), - [sym_global_attribute] = STATE(1994), - [sym_attribute_list] = STATE(2979), - [sym__attribute_list] = STATE(2990), - [sym_namespace_declaration] = STATE(1994), - [sym_file_scoped_namespace_declaration] = STATE(1994), - [sym_type_declaration] = STATE(1994), - [sym_class_declaration] = STATE(1982), - [sym__class_declaration_initializer] = STATE(7301), - [sym_struct_declaration] = STATE(1982), - [sym__struct_declaration_initializer] = STATE(7209), - [sym_enum_declaration] = STATE(1982), - [sym_interface_declaration] = STATE(1982), - [sym__interface_declaration_initializer] = STATE(7211), - [sym_delegate_declaration] = STATE(1982), - [sym__delegate_declaration_initializer] = STATE(6719), - [sym_record_declaration] = STATE(1982), - [sym__record_declaration_initializer] = STATE(6747), - [sym_modifier] = STATE(3130), - [sym_parameter_list] = STATE(7311), - [sym_block] = STATE(1968), - [sym_variable_declaration] = STATE(7525), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(5160), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2204), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5867), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_statement] = STATE(1994), - [sym_break_statement] = STATE(1968), - [sym_checked_statement] = STATE(1968), - [sym_continue_statement] = STATE(1968), - [sym_do_statement] = STATE(1968), - [sym_empty_statement] = STATE(1968), - [sym_expression_statement] = STATE(1968), - [sym_fixed_statement] = STATE(1968), - [sym_for_statement] = STATE(1968), - [sym_return_statement] = STATE(1968), - [sym_lock_statement] = STATE(1968), - [sym_yield_statement] = STATE(1968), - [sym_switch_statement] = STATE(1968), - [sym_throw_statement] = STATE(1968), - [sym_try_statement] = STATE(1968), - [sym_unsafe_statement] = STATE(1968), - [sym_using_statement] = STATE(1968), - [sym_foreach_statement] = STATE(1968), - [sym__foreach_statement_initializer] = STATE(91), - [sym_goto_statement] = STATE(1968), - [sym_labeled_statement] = STATE(1968), - [sym_if_statement] = STATE(1968), - [sym_while_statement] = STATE(1968), - [sym_local_declaration_statement] = STATE(1968), - [sym_local_function_statement] = STATE(1968), - [sym__local_function_declaration] = STATE(6298), - [sym_expression] = STATE(5672), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3461), - [sym__expression_statement_expression] = STATE(5158), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3080), - [sym_postfix_unary_expression] = STATE(3111), - [sym_prefix_unary_expression] = STATE(3111), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6154), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3080), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3111), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3080), - [sym_member_access_expression] = STATE(2484), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3111), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7530), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(3080), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3080), - [sym_typeof_expression] = STATE(3080), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2484), - [sym_literal] = STATE(3080), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2264), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_top_level] = STATE(2007), - [sym_preproc_else_in_top_level] = STATE(7357), - [sym_preproc_elif_in_top_level] = STATE(7357), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(2979), + [sym_extern_alias_directive] = STATE(1991), + [sym_using_directive] = STATE(1991), + [sym_global_attribute] = STATE(1991), + [sym_attribute_list] = STATE(3034), + [sym__attribute_list] = STATE(2953), + [sym_namespace_declaration] = STATE(1991), + [sym_file_scoped_namespace_declaration] = STATE(1991), + [sym_type_declaration] = STATE(1991), + [sym_class_declaration] = STATE(1981), + [sym__class_declaration_initializer] = STATE(6630), + [sym_struct_declaration] = STATE(1981), + [sym__struct_declaration_initializer] = STATE(6631), + [sym_enum_declaration] = STATE(1981), + [sym__enum_declaration_initializer] = STATE(6968), + [sym_interface_declaration] = STATE(1981), + [sym__interface_declaration_initializer] = STATE(6633), + [sym_delegate_declaration] = STATE(1981), + [sym__delegate_declaration_initializer] = STATE(6634), + [sym_record_declaration] = STATE(1981), + [sym__record_declaration_initializer] = STATE(6635), + [sym_modifier] = STATE(3114), + [sym_parameter_list] = STATE(7531), + [sym_block] = STATE(1948), + [sym_variable_declaration] = STATE(7649), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(5152), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2196), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5805), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_statement] = STATE(1991), + [sym_break_statement] = STATE(1948), + [sym_checked_statement] = STATE(1948), + [sym_continue_statement] = STATE(1948), + [sym_do_statement] = STATE(1948), + [sym_empty_statement] = STATE(1948), + [sym_expression_statement] = STATE(1948), + [sym_fixed_statement] = STATE(1948), + [sym_for_statement] = STATE(1948), + [sym_return_statement] = STATE(1948), + [sym_lock_statement] = STATE(1948), + [sym_yield_statement] = STATE(1948), + [sym_switch_statement] = STATE(1948), + [sym_throw_statement] = STATE(1948), + [sym_try_statement] = STATE(1948), + [sym_unsafe_statement] = STATE(1948), + [sym_using_statement] = STATE(1948), + [sym_foreach_statement] = STATE(1948), + [sym__foreach_statement_initializer] = STATE(94), + [sym_goto_statement] = STATE(1948), + [sym_labeled_statement] = STATE(1948), + [sym_if_statement] = STATE(1948), + [sym_while_statement] = STATE(1948), + [sym_local_declaration_statement] = STATE(1948), + [sym_local_function_statement] = STATE(1948), + [sym__local_function_declaration] = STATE(6313), + [sym_expression] = STATE(5660), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3356), + [sym__expression_statement_expression] = STATE(5134), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3102), + [sym_postfix_unary_expression] = STATE(3079), + [sym_prefix_unary_expression] = STATE(3079), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6134), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3102), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3079), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3102), + [sym_member_access_expression] = STATE(2472), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3079), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7425), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(3102), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3102), + [sym_typeof_expression] = STATE(3102), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2472), + [sym_literal] = STATE(3102), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2259), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_top_level] = STATE(1998), + [sym_preproc_else_in_top_level] = STATE(7459), + [sym_preproc_elif_in_top_level] = STATE(7459), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(3034), [sym_preproc_region] = STATE(9), [sym_preproc_endregion] = STATE(9), [sym_preproc_line] = STATE(9), @@ -27766,10 +27639,10 @@ 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(2212), - [aux_sym__class_declaration_initializer_repeat2] = STATE(2358), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), - [aux_sym_preproc_if_in_top_level_repeat1] = STATE(10), + [aux_sym__class_declaration_initializer_repeat1] = STATE(2201), + [aux_sym__class_declaration_initializer_repeat2] = STATE(2352), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), + [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), @@ -27785,8 +27658,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_class] = ACTIONS(49), [anon_sym_ref] = ACTIONS(51), [anon_sym_struct] = ACTIONS(53), - [anon_sym_enum] = ACTIONS(175), - [anon_sym_LBRACE] = ACTIONS(177), + [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), @@ -27794,7 +27667,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_async] = ACTIONS(39), [anon_sym_const] = ACTIONS(65), [anon_sym_file] = ACTIONS(67), - [anon_sym_fixed] = ACTIONS(179), + [anon_sym_fixed] = ACTIONS(177), [anon_sym_internal] = ACTIONS(65), [anon_sym_new] = ACTIONS(71), [anon_sym_override] = ACTIONS(65), @@ -27810,7 +27683,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(181), + [anon_sym_checked] = ACTIONS(179), [anon_sym_BANG] = ACTIONS(75), [anon_sym_TILDE] = ACTIONS(75), [anon_sym_PLUS_PLUS] = ACTIONS(75), @@ -27827,23 +27700,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(183), - [anon_sym_unchecked] = ACTIONS(181), - [anon_sym_continue] = ACTIONS(185), - [anon_sym_do] = ACTIONS(187), - [anon_sym_while] = ACTIONS(189), - [anon_sym_for] = ACTIONS(191), - [anon_sym_lock] = ACTIONS(193), - [anon_sym_yield] = ACTIONS(195), - [anon_sym_switch] = ACTIONS(197), + [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(199), - [anon_sym_try] = ACTIONS(201), + [anon_sym_throw] = ACTIONS(197), + [anon_sym_try] = ACTIONS(199), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(203), + [anon_sym_await] = ACTIONS(201), [anon_sym_foreach] = ACTIONS(117), - [anon_sym_goto] = ACTIONS(205), - [anon_sym_if] = ACTIONS(207), + [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), @@ -27869,8 +27742,8 @@ 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(209), - [aux_sym_preproc_if_token3] = ACTIONS(217), + [aux_sym_preproc_if_token1] = ACTIONS(207), + [aux_sym_preproc_if_token3] = ACTIONS(223), [aux_sym_preproc_else_token1] = ACTIONS(225), [aux_sym_preproc_elif_token1] = ACTIONS(227), [aux_sym_preproc_region_token1] = ACTIONS(3), @@ -27889,133 +27762,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(1994), - [sym_using_directive] = STATE(1994), - [sym_global_attribute] = STATE(1994), - [sym_attribute_list] = STATE(2979), - [sym__attribute_list] = STATE(2990), - [sym_namespace_declaration] = STATE(1994), - [sym_file_scoped_namespace_declaration] = STATE(1994), - [sym_type_declaration] = STATE(1994), - [sym_class_declaration] = STATE(1982), - [sym__class_declaration_initializer] = STATE(7301), - [sym_struct_declaration] = STATE(1982), - [sym__struct_declaration_initializer] = STATE(7209), - [sym_enum_declaration] = STATE(1982), - [sym_interface_declaration] = STATE(1982), - [sym__interface_declaration_initializer] = STATE(7211), - [sym_delegate_declaration] = STATE(1982), - [sym__delegate_declaration_initializer] = STATE(6719), - [sym_record_declaration] = STATE(1982), - [sym__record_declaration_initializer] = STATE(6747), - [sym_modifier] = STATE(3130), - [sym_parameter_list] = STATE(7311), - [sym_block] = STATE(1968), - [sym_variable_declaration] = STATE(7525), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(5160), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2204), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5867), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_statement] = STATE(1994), - [sym_break_statement] = STATE(1968), - [sym_checked_statement] = STATE(1968), - [sym_continue_statement] = STATE(1968), - [sym_do_statement] = STATE(1968), - [sym_empty_statement] = STATE(1968), - [sym_expression_statement] = STATE(1968), - [sym_fixed_statement] = STATE(1968), - [sym_for_statement] = STATE(1968), - [sym_return_statement] = STATE(1968), - [sym_lock_statement] = STATE(1968), - [sym_yield_statement] = STATE(1968), - [sym_switch_statement] = STATE(1968), - [sym_throw_statement] = STATE(1968), - [sym_try_statement] = STATE(1968), - [sym_unsafe_statement] = STATE(1968), - [sym_using_statement] = STATE(1968), - [sym_foreach_statement] = STATE(1968), - [sym__foreach_statement_initializer] = STATE(91), - [sym_goto_statement] = STATE(1968), - [sym_labeled_statement] = STATE(1968), - [sym_if_statement] = STATE(1968), - [sym_while_statement] = STATE(1968), - [sym_local_declaration_statement] = STATE(1968), - [sym_local_function_statement] = STATE(1968), - [sym__local_function_declaration] = STATE(6298), - [sym_expression] = STATE(5672), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3461), - [sym__expression_statement_expression] = STATE(5158), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3080), - [sym_postfix_unary_expression] = STATE(3111), - [sym_prefix_unary_expression] = STATE(3111), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6154), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3080), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3111), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3080), - [sym_member_access_expression] = STATE(2484), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3111), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7530), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(3080), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3080), - [sym_typeof_expression] = STATE(3080), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2484), - [sym_literal] = STATE(3080), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2264), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_top_level] = STATE(2007), - [sym_preproc_else_in_top_level] = STATE(7391), - [sym_preproc_elif_in_top_level] = STATE(7391), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(2979), + [sym_extern_alias_directive] = STATE(1991), + [sym_using_directive] = STATE(1991), + [sym_global_attribute] = STATE(1991), + [sym_attribute_list] = STATE(3034), + [sym__attribute_list] = STATE(2953), + [sym_namespace_declaration] = STATE(1991), + [sym_file_scoped_namespace_declaration] = STATE(1991), + [sym_type_declaration] = STATE(1991), + [sym_class_declaration] = STATE(1981), + [sym__class_declaration_initializer] = STATE(6630), + [sym_struct_declaration] = STATE(1981), + [sym__struct_declaration_initializer] = STATE(6631), + [sym_enum_declaration] = STATE(1981), + [sym__enum_declaration_initializer] = STATE(6968), + [sym_interface_declaration] = STATE(1981), + [sym__interface_declaration_initializer] = STATE(6633), + [sym_delegate_declaration] = STATE(1981), + [sym__delegate_declaration_initializer] = STATE(6634), + [sym_record_declaration] = STATE(1981), + [sym__record_declaration_initializer] = STATE(6635), + [sym_modifier] = STATE(3114), + [sym_parameter_list] = STATE(7531), + [sym_block] = STATE(1948), + [sym_variable_declaration] = STATE(7649), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(5152), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2196), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5805), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_statement] = STATE(1991), + [sym_break_statement] = STATE(1948), + [sym_checked_statement] = STATE(1948), + [sym_continue_statement] = STATE(1948), + [sym_do_statement] = STATE(1948), + [sym_empty_statement] = STATE(1948), + [sym_expression_statement] = STATE(1948), + [sym_fixed_statement] = STATE(1948), + [sym_for_statement] = STATE(1948), + [sym_return_statement] = STATE(1948), + [sym_lock_statement] = STATE(1948), + [sym_yield_statement] = STATE(1948), + [sym_switch_statement] = STATE(1948), + [sym_throw_statement] = STATE(1948), + [sym_try_statement] = STATE(1948), + [sym_unsafe_statement] = STATE(1948), + [sym_using_statement] = STATE(1948), + [sym_foreach_statement] = STATE(1948), + [sym__foreach_statement_initializer] = STATE(94), + [sym_goto_statement] = STATE(1948), + [sym_labeled_statement] = STATE(1948), + [sym_if_statement] = STATE(1948), + [sym_while_statement] = STATE(1948), + [sym_local_declaration_statement] = STATE(1948), + [sym_local_function_statement] = STATE(1948), + [sym__local_function_declaration] = STATE(6313), + [sym_expression] = STATE(5660), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3356), + [sym__expression_statement_expression] = STATE(5134), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3102), + [sym_postfix_unary_expression] = STATE(3079), + [sym_prefix_unary_expression] = STATE(3079), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6134), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3102), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3079), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3102), + [sym_member_access_expression] = STATE(2472), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3079), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7425), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(3102), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3102), + [sym_typeof_expression] = STATE(3102), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2472), + [sym_literal] = STATE(3102), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2259), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_top_level] = STATE(1998), + [sym_preproc_else_in_top_level] = STATE(7413), + [sym_preproc_elif_in_top_level] = STATE(7413), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(3034), [sym_preproc_region] = STATE(10), [sym_preproc_endregion] = STATE(10), [sym_preproc_line] = STATE(10), @@ -28025,10 +27899,10 @@ 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(2212), - [aux_sym__class_declaration_initializer_repeat2] = STATE(2358), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), - [aux_sym_preproc_if_in_top_level_repeat1] = STATE(17), + [aux_sym__class_declaration_initializer_repeat1] = STATE(2201), + [aux_sym__class_declaration_initializer_repeat2] = STATE(2352), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), + [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), @@ -28044,8 +27918,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_class] = ACTIONS(49), [anon_sym_ref] = ACTIONS(51), [anon_sym_struct] = ACTIONS(53), - [anon_sym_enum] = ACTIONS(175), - [anon_sym_LBRACE] = ACTIONS(177), + [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), @@ -28053,7 +27927,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_async] = ACTIONS(39), [anon_sym_const] = ACTIONS(65), [anon_sym_file] = ACTIONS(67), - [anon_sym_fixed] = ACTIONS(179), + [anon_sym_fixed] = ACTIONS(177), [anon_sym_internal] = ACTIONS(65), [anon_sym_new] = ACTIONS(71), [anon_sym_override] = ACTIONS(65), @@ -28069,7 +27943,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(181), + [anon_sym_checked] = ACTIONS(179), [anon_sym_BANG] = ACTIONS(75), [anon_sym_TILDE] = ACTIONS(75), [anon_sym_PLUS_PLUS] = ACTIONS(75), @@ -28086,23 +27960,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(183), - [anon_sym_unchecked] = ACTIONS(181), - [anon_sym_continue] = ACTIONS(185), - [anon_sym_do] = ACTIONS(187), - [anon_sym_while] = ACTIONS(189), - [anon_sym_for] = ACTIONS(191), - [anon_sym_lock] = ACTIONS(193), - [anon_sym_yield] = ACTIONS(195), - [anon_sym_switch] = ACTIONS(197), + [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(199), - [anon_sym_try] = ACTIONS(201), + [anon_sym_throw] = ACTIONS(197), + [anon_sym_try] = ACTIONS(199), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(203), + [anon_sym_await] = ACTIONS(201), [anon_sym_foreach] = ACTIONS(117), - [anon_sym_goto] = ACTIONS(205), - [anon_sym_if] = ACTIONS(207), + [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), @@ -28128,7 +28002,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(209), + [aux_sym_preproc_if_token1] = ACTIONS(207), [aux_sym_preproc_if_token3] = ACTIONS(229), [aux_sym_preproc_else_token1] = ACTIONS(225), [aux_sym_preproc_elif_token1] = ACTIONS(227), @@ -28148,133 +28022,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(1994), - [sym_using_directive] = STATE(1994), - [sym_global_attribute] = STATE(1994), - [sym_attribute_list] = STATE(2979), - [sym__attribute_list] = STATE(2990), - [sym_namespace_declaration] = STATE(1994), - [sym_file_scoped_namespace_declaration] = STATE(1994), - [sym_type_declaration] = STATE(1994), - [sym_class_declaration] = STATE(1982), - [sym__class_declaration_initializer] = STATE(7301), - [sym_struct_declaration] = STATE(1982), - [sym__struct_declaration_initializer] = STATE(7209), - [sym_enum_declaration] = STATE(1982), - [sym_interface_declaration] = STATE(1982), - [sym__interface_declaration_initializer] = STATE(7211), - [sym_delegate_declaration] = STATE(1982), - [sym__delegate_declaration_initializer] = STATE(6719), - [sym_record_declaration] = STATE(1982), - [sym__record_declaration_initializer] = STATE(6747), - [sym_modifier] = STATE(3130), - [sym_parameter_list] = STATE(7311), - [sym_block] = STATE(1968), - [sym_variable_declaration] = STATE(7525), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(5160), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2204), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5867), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_statement] = STATE(1994), - [sym_break_statement] = STATE(1968), - [sym_checked_statement] = STATE(1968), - [sym_continue_statement] = STATE(1968), - [sym_do_statement] = STATE(1968), - [sym_empty_statement] = STATE(1968), - [sym_expression_statement] = STATE(1968), - [sym_fixed_statement] = STATE(1968), - [sym_for_statement] = STATE(1968), - [sym_return_statement] = STATE(1968), - [sym_lock_statement] = STATE(1968), - [sym_yield_statement] = STATE(1968), - [sym_switch_statement] = STATE(1968), - [sym_throw_statement] = STATE(1968), - [sym_try_statement] = STATE(1968), - [sym_unsafe_statement] = STATE(1968), - [sym_using_statement] = STATE(1968), - [sym_foreach_statement] = STATE(1968), - [sym__foreach_statement_initializer] = STATE(91), - [sym_goto_statement] = STATE(1968), - [sym_labeled_statement] = STATE(1968), - [sym_if_statement] = STATE(1968), - [sym_while_statement] = STATE(1968), - [sym_local_declaration_statement] = STATE(1968), - [sym_local_function_statement] = STATE(1968), - [sym__local_function_declaration] = STATE(6298), - [sym_expression] = STATE(5672), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3461), - [sym__expression_statement_expression] = STATE(5158), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3080), - [sym_postfix_unary_expression] = STATE(3111), - [sym_prefix_unary_expression] = STATE(3111), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6154), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3080), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3111), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3080), - [sym_member_access_expression] = STATE(2484), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3111), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7530), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(3080), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3080), - [sym_typeof_expression] = STATE(3080), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2484), - [sym_literal] = STATE(3080), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2264), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_top_level] = STATE(2007), - [sym_preproc_else_in_top_level] = STATE(7447), - [sym_preproc_elif_in_top_level] = STATE(7447), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(2979), + [sym_extern_alias_directive] = STATE(1991), + [sym_using_directive] = STATE(1991), + [sym_global_attribute] = STATE(1991), + [sym_attribute_list] = STATE(3034), + [sym__attribute_list] = STATE(2953), + [sym_namespace_declaration] = STATE(1991), + [sym_file_scoped_namespace_declaration] = STATE(1991), + [sym_type_declaration] = STATE(1991), + [sym_class_declaration] = STATE(1981), + [sym__class_declaration_initializer] = STATE(6630), + [sym_struct_declaration] = STATE(1981), + [sym__struct_declaration_initializer] = STATE(6631), + [sym_enum_declaration] = STATE(1981), + [sym__enum_declaration_initializer] = STATE(6968), + [sym_interface_declaration] = STATE(1981), + [sym__interface_declaration_initializer] = STATE(6633), + [sym_delegate_declaration] = STATE(1981), + [sym__delegate_declaration_initializer] = STATE(6634), + [sym_record_declaration] = STATE(1981), + [sym__record_declaration_initializer] = STATE(6635), + [sym_modifier] = STATE(3114), + [sym_parameter_list] = STATE(7531), + [sym_block] = STATE(1948), + [sym_variable_declaration] = STATE(7649), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(5152), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2196), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5805), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_statement] = STATE(1991), + [sym_break_statement] = STATE(1948), + [sym_checked_statement] = STATE(1948), + [sym_continue_statement] = STATE(1948), + [sym_do_statement] = STATE(1948), + [sym_empty_statement] = STATE(1948), + [sym_expression_statement] = STATE(1948), + [sym_fixed_statement] = STATE(1948), + [sym_for_statement] = STATE(1948), + [sym_return_statement] = STATE(1948), + [sym_lock_statement] = STATE(1948), + [sym_yield_statement] = STATE(1948), + [sym_switch_statement] = STATE(1948), + [sym_throw_statement] = STATE(1948), + [sym_try_statement] = STATE(1948), + [sym_unsafe_statement] = STATE(1948), + [sym_using_statement] = STATE(1948), + [sym_foreach_statement] = STATE(1948), + [sym__foreach_statement_initializer] = STATE(94), + [sym_goto_statement] = STATE(1948), + [sym_labeled_statement] = STATE(1948), + [sym_if_statement] = STATE(1948), + [sym_while_statement] = STATE(1948), + [sym_local_declaration_statement] = STATE(1948), + [sym_local_function_statement] = STATE(1948), + [sym__local_function_declaration] = STATE(6313), + [sym_expression] = STATE(5660), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3356), + [sym__expression_statement_expression] = STATE(5134), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3102), + [sym_postfix_unary_expression] = STATE(3079), + [sym_prefix_unary_expression] = STATE(3079), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6134), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3102), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3079), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3102), + [sym_member_access_expression] = STATE(2472), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3079), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7425), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(3102), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3102), + [sym_typeof_expression] = STATE(3102), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2472), + [sym_literal] = STATE(3102), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2259), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_top_level] = STATE(1998), + [sym_preproc_else_in_top_level] = STATE(7548), + [sym_preproc_elif_in_top_level] = STATE(7548), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(3034), [sym_preproc_region] = STATE(11), [sym_preproc_endregion] = STATE(11), [sym_preproc_line] = STATE(11), @@ -28284,10 +28159,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(2212), - [aux_sym__class_declaration_initializer_repeat2] = STATE(2358), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), - [aux_sym_preproc_if_in_top_level_repeat1] = STATE(17), + [aux_sym__class_declaration_initializer_repeat1] = STATE(2201), + [aux_sym__class_declaration_initializer_repeat2] = STATE(2352), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), + [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), @@ -28303,8 +28178,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_class] = ACTIONS(49), [anon_sym_ref] = ACTIONS(51), [anon_sym_struct] = ACTIONS(53), - [anon_sym_enum] = ACTIONS(175), - [anon_sym_LBRACE] = ACTIONS(177), + [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), @@ -28312,7 +28187,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_async] = ACTIONS(39), [anon_sym_const] = ACTIONS(65), [anon_sym_file] = ACTIONS(67), - [anon_sym_fixed] = ACTIONS(179), + [anon_sym_fixed] = ACTIONS(177), [anon_sym_internal] = ACTIONS(65), [anon_sym_new] = ACTIONS(71), [anon_sym_override] = ACTIONS(65), @@ -28328,7 +28203,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(181), + [anon_sym_checked] = ACTIONS(179), [anon_sym_BANG] = ACTIONS(75), [anon_sym_TILDE] = ACTIONS(75), [anon_sym_PLUS_PLUS] = ACTIONS(75), @@ -28345,23 +28220,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(183), - [anon_sym_unchecked] = ACTIONS(181), - [anon_sym_continue] = ACTIONS(185), - [anon_sym_do] = ACTIONS(187), - [anon_sym_while] = ACTIONS(189), - [anon_sym_for] = ACTIONS(191), - [anon_sym_lock] = ACTIONS(193), - [anon_sym_yield] = ACTIONS(195), - [anon_sym_switch] = ACTIONS(197), + [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(199), - [anon_sym_try] = ACTIONS(201), + [anon_sym_throw] = ACTIONS(197), + [anon_sym_try] = ACTIONS(199), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(203), + [anon_sym_await] = ACTIONS(201), [anon_sym_foreach] = ACTIONS(117), - [anon_sym_goto] = ACTIONS(205), - [anon_sym_if] = ACTIONS(207), + [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), @@ -28387,7 +28262,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(209), + [aux_sym_preproc_if_token1] = ACTIONS(207), [aux_sym_preproc_if_token3] = ACTIONS(231), [aux_sym_preproc_else_token1] = ACTIONS(225), [aux_sym_preproc_elif_token1] = ACTIONS(227), @@ -28407,133 +28282,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(1994), - [sym_using_directive] = STATE(1994), - [sym_global_attribute] = STATE(1994), - [sym_attribute_list] = STATE(2979), - [sym__attribute_list] = STATE(2990), - [sym_namespace_declaration] = STATE(1994), - [sym_file_scoped_namespace_declaration] = STATE(1994), - [sym_type_declaration] = STATE(1994), - [sym_class_declaration] = STATE(1982), - [sym__class_declaration_initializer] = STATE(7301), - [sym_struct_declaration] = STATE(1982), - [sym__struct_declaration_initializer] = STATE(7209), - [sym_enum_declaration] = STATE(1982), - [sym_interface_declaration] = STATE(1982), - [sym__interface_declaration_initializer] = STATE(7211), - [sym_delegate_declaration] = STATE(1982), - [sym__delegate_declaration_initializer] = STATE(6719), - [sym_record_declaration] = STATE(1982), - [sym__record_declaration_initializer] = STATE(6747), - [sym_modifier] = STATE(3130), - [sym_parameter_list] = STATE(7311), - [sym_block] = STATE(1968), - [sym_variable_declaration] = STATE(7525), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(5160), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2204), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5867), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_statement] = STATE(1994), - [sym_break_statement] = STATE(1968), - [sym_checked_statement] = STATE(1968), - [sym_continue_statement] = STATE(1968), - [sym_do_statement] = STATE(1968), - [sym_empty_statement] = STATE(1968), - [sym_expression_statement] = STATE(1968), - [sym_fixed_statement] = STATE(1968), - [sym_for_statement] = STATE(1968), - [sym_return_statement] = STATE(1968), - [sym_lock_statement] = STATE(1968), - [sym_yield_statement] = STATE(1968), - [sym_switch_statement] = STATE(1968), - [sym_throw_statement] = STATE(1968), - [sym_try_statement] = STATE(1968), - [sym_unsafe_statement] = STATE(1968), - [sym_using_statement] = STATE(1968), - [sym_foreach_statement] = STATE(1968), - [sym__foreach_statement_initializer] = STATE(91), - [sym_goto_statement] = STATE(1968), - [sym_labeled_statement] = STATE(1968), - [sym_if_statement] = STATE(1968), - [sym_while_statement] = STATE(1968), - [sym_local_declaration_statement] = STATE(1968), - [sym_local_function_statement] = STATE(1968), - [sym__local_function_declaration] = STATE(6298), - [sym_expression] = STATE(5672), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3461), - [sym__expression_statement_expression] = STATE(5158), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3080), - [sym_postfix_unary_expression] = STATE(3111), - [sym_prefix_unary_expression] = STATE(3111), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6154), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3080), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3111), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3080), - [sym_member_access_expression] = STATE(2484), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3111), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7530), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(3080), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3080), - [sym_typeof_expression] = STATE(3080), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2484), - [sym_literal] = STATE(3080), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2264), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_top_level] = STATE(2007), - [sym_preproc_else_in_top_level] = STATE(7436), - [sym_preproc_elif_in_top_level] = STATE(7436), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(2979), + [sym_extern_alias_directive] = STATE(1991), + [sym_using_directive] = STATE(1991), + [sym_global_attribute] = STATE(1991), + [sym_attribute_list] = STATE(3034), + [sym__attribute_list] = STATE(2953), + [sym_namespace_declaration] = STATE(1991), + [sym_file_scoped_namespace_declaration] = STATE(1991), + [sym_type_declaration] = STATE(1991), + [sym_class_declaration] = STATE(1981), + [sym__class_declaration_initializer] = STATE(6630), + [sym_struct_declaration] = STATE(1981), + [sym__struct_declaration_initializer] = STATE(6631), + [sym_enum_declaration] = STATE(1981), + [sym__enum_declaration_initializer] = STATE(6968), + [sym_interface_declaration] = STATE(1981), + [sym__interface_declaration_initializer] = STATE(6633), + [sym_delegate_declaration] = STATE(1981), + [sym__delegate_declaration_initializer] = STATE(6634), + [sym_record_declaration] = STATE(1981), + [sym__record_declaration_initializer] = STATE(6635), + [sym_modifier] = STATE(3114), + [sym_parameter_list] = STATE(7531), + [sym_block] = STATE(1948), + [sym_variable_declaration] = STATE(7649), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(5152), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2196), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5805), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_statement] = STATE(1991), + [sym_break_statement] = STATE(1948), + [sym_checked_statement] = STATE(1948), + [sym_continue_statement] = STATE(1948), + [sym_do_statement] = STATE(1948), + [sym_empty_statement] = STATE(1948), + [sym_expression_statement] = STATE(1948), + [sym_fixed_statement] = STATE(1948), + [sym_for_statement] = STATE(1948), + [sym_return_statement] = STATE(1948), + [sym_lock_statement] = STATE(1948), + [sym_yield_statement] = STATE(1948), + [sym_switch_statement] = STATE(1948), + [sym_throw_statement] = STATE(1948), + [sym_try_statement] = STATE(1948), + [sym_unsafe_statement] = STATE(1948), + [sym_using_statement] = STATE(1948), + [sym_foreach_statement] = STATE(1948), + [sym__foreach_statement_initializer] = STATE(94), + [sym_goto_statement] = STATE(1948), + [sym_labeled_statement] = STATE(1948), + [sym_if_statement] = STATE(1948), + [sym_while_statement] = STATE(1948), + [sym_local_declaration_statement] = STATE(1948), + [sym_local_function_statement] = STATE(1948), + [sym__local_function_declaration] = STATE(6313), + [sym_expression] = STATE(5660), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3356), + [sym__expression_statement_expression] = STATE(5134), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3102), + [sym_postfix_unary_expression] = STATE(3079), + [sym_prefix_unary_expression] = STATE(3079), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6134), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3102), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3079), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3102), + [sym_member_access_expression] = STATE(2472), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3079), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7425), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(3102), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3102), + [sym_typeof_expression] = STATE(3102), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2472), + [sym_literal] = STATE(3102), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2259), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_top_level] = STATE(1998), + [sym_preproc_else_in_top_level] = STATE(7613), + [sym_preproc_elif_in_top_level] = STATE(7613), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(3034), [sym_preproc_region] = STATE(12), [sym_preproc_endregion] = STATE(12), [sym_preproc_line] = STATE(12), @@ -28543,10 +28419,10 @@ 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(2212), - [aux_sym__class_declaration_initializer_repeat2] = STATE(2358), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), - [aux_sym_preproc_if_in_top_level_repeat1] = STATE(17), + [aux_sym__class_declaration_initializer_repeat1] = STATE(2201), + [aux_sym__class_declaration_initializer_repeat2] = STATE(2352), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), + [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), @@ -28562,8 +28438,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_class] = ACTIONS(49), [anon_sym_ref] = ACTIONS(51), [anon_sym_struct] = ACTIONS(53), - [anon_sym_enum] = ACTIONS(175), - [anon_sym_LBRACE] = ACTIONS(177), + [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), @@ -28571,7 +28447,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_async] = ACTIONS(39), [anon_sym_const] = ACTIONS(65), [anon_sym_file] = ACTIONS(67), - [anon_sym_fixed] = ACTIONS(179), + [anon_sym_fixed] = ACTIONS(177), [anon_sym_internal] = ACTIONS(65), [anon_sym_new] = ACTIONS(71), [anon_sym_override] = ACTIONS(65), @@ -28587,7 +28463,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(181), + [anon_sym_checked] = ACTIONS(179), [anon_sym_BANG] = ACTIONS(75), [anon_sym_TILDE] = ACTIONS(75), [anon_sym_PLUS_PLUS] = ACTIONS(75), @@ -28604,23 +28480,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(183), - [anon_sym_unchecked] = ACTIONS(181), - [anon_sym_continue] = ACTIONS(185), - [anon_sym_do] = ACTIONS(187), - [anon_sym_while] = ACTIONS(189), - [anon_sym_for] = ACTIONS(191), - [anon_sym_lock] = ACTIONS(193), - [anon_sym_yield] = ACTIONS(195), - [anon_sym_switch] = ACTIONS(197), + [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(199), - [anon_sym_try] = ACTIONS(201), + [anon_sym_throw] = ACTIONS(197), + [anon_sym_try] = ACTIONS(199), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(203), + [anon_sym_await] = ACTIONS(201), [anon_sym_foreach] = ACTIONS(117), - [anon_sym_goto] = ACTIONS(205), - [anon_sym_if] = ACTIONS(207), + [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), @@ -28646,8 +28522,8 @@ 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(209), - [aux_sym_preproc_if_token3] = ACTIONS(233), + [aux_sym_preproc_if_token1] = ACTIONS(207), + [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), @@ -28666,133 +28542,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(1994), - [sym_using_directive] = STATE(1994), - [sym_global_attribute] = STATE(1994), - [sym_attribute_list] = STATE(2979), - [sym__attribute_list] = STATE(2990), - [sym_namespace_declaration] = STATE(1994), - [sym_file_scoped_namespace_declaration] = STATE(1994), - [sym_type_declaration] = STATE(1994), - [sym_class_declaration] = STATE(1982), - [sym__class_declaration_initializer] = STATE(7301), - [sym_struct_declaration] = STATE(1982), - [sym__struct_declaration_initializer] = STATE(7209), - [sym_enum_declaration] = STATE(1982), - [sym_interface_declaration] = STATE(1982), - [sym__interface_declaration_initializer] = STATE(7211), - [sym_delegate_declaration] = STATE(1982), - [sym__delegate_declaration_initializer] = STATE(6719), - [sym_record_declaration] = STATE(1982), - [sym__record_declaration_initializer] = STATE(6747), - [sym_modifier] = STATE(3130), - [sym_parameter_list] = STATE(7311), - [sym_block] = STATE(1968), - [sym_variable_declaration] = STATE(7525), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(5160), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2204), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5867), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_statement] = STATE(1994), - [sym_break_statement] = STATE(1968), - [sym_checked_statement] = STATE(1968), - [sym_continue_statement] = STATE(1968), - [sym_do_statement] = STATE(1968), - [sym_empty_statement] = STATE(1968), - [sym_expression_statement] = STATE(1968), - [sym_fixed_statement] = STATE(1968), - [sym_for_statement] = STATE(1968), - [sym_return_statement] = STATE(1968), - [sym_lock_statement] = STATE(1968), - [sym_yield_statement] = STATE(1968), - [sym_switch_statement] = STATE(1968), - [sym_throw_statement] = STATE(1968), - [sym_try_statement] = STATE(1968), - [sym_unsafe_statement] = STATE(1968), - [sym_using_statement] = STATE(1968), - [sym_foreach_statement] = STATE(1968), - [sym__foreach_statement_initializer] = STATE(91), - [sym_goto_statement] = STATE(1968), - [sym_labeled_statement] = STATE(1968), - [sym_if_statement] = STATE(1968), - [sym_while_statement] = STATE(1968), - [sym_local_declaration_statement] = STATE(1968), - [sym_local_function_statement] = STATE(1968), - [sym__local_function_declaration] = STATE(6298), - [sym_expression] = STATE(5672), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3461), - [sym__expression_statement_expression] = STATE(5158), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3080), - [sym_postfix_unary_expression] = STATE(3111), - [sym_prefix_unary_expression] = STATE(3111), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6154), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3080), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3111), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3080), - [sym_member_access_expression] = STATE(2484), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3111), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7530), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(3080), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3080), - [sym_typeof_expression] = STATE(3080), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2484), - [sym_literal] = STATE(3080), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2264), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_top_level] = STATE(2007), - [sym_preproc_else_in_top_level] = STATE(7678), - [sym_preproc_elif_in_top_level] = STATE(7678), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(2979), + [sym_extern_alias_directive] = STATE(1991), + [sym_using_directive] = STATE(1991), + [sym_global_attribute] = STATE(1991), + [sym_attribute_list] = STATE(3034), + [sym__attribute_list] = STATE(2953), + [sym_namespace_declaration] = STATE(1991), + [sym_file_scoped_namespace_declaration] = STATE(1991), + [sym_type_declaration] = STATE(1991), + [sym_class_declaration] = STATE(1981), + [sym__class_declaration_initializer] = STATE(6630), + [sym_struct_declaration] = STATE(1981), + [sym__struct_declaration_initializer] = STATE(6631), + [sym_enum_declaration] = STATE(1981), + [sym__enum_declaration_initializer] = STATE(6968), + [sym_interface_declaration] = STATE(1981), + [sym__interface_declaration_initializer] = STATE(6633), + [sym_delegate_declaration] = STATE(1981), + [sym__delegate_declaration_initializer] = STATE(6634), + [sym_record_declaration] = STATE(1981), + [sym__record_declaration_initializer] = STATE(6635), + [sym_modifier] = STATE(3114), + [sym_parameter_list] = STATE(7531), + [sym_block] = STATE(1948), + [sym_variable_declaration] = STATE(7649), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(5152), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2196), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5805), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_statement] = STATE(1991), + [sym_break_statement] = STATE(1948), + [sym_checked_statement] = STATE(1948), + [sym_continue_statement] = STATE(1948), + [sym_do_statement] = STATE(1948), + [sym_empty_statement] = STATE(1948), + [sym_expression_statement] = STATE(1948), + [sym_fixed_statement] = STATE(1948), + [sym_for_statement] = STATE(1948), + [sym_return_statement] = STATE(1948), + [sym_lock_statement] = STATE(1948), + [sym_yield_statement] = STATE(1948), + [sym_switch_statement] = STATE(1948), + [sym_throw_statement] = STATE(1948), + [sym_try_statement] = STATE(1948), + [sym_unsafe_statement] = STATE(1948), + [sym_using_statement] = STATE(1948), + [sym_foreach_statement] = STATE(1948), + [sym__foreach_statement_initializer] = STATE(94), + [sym_goto_statement] = STATE(1948), + [sym_labeled_statement] = STATE(1948), + [sym_if_statement] = STATE(1948), + [sym_while_statement] = STATE(1948), + [sym_local_declaration_statement] = STATE(1948), + [sym_local_function_statement] = STATE(1948), + [sym__local_function_declaration] = STATE(6313), + [sym_expression] = STATE(5660), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3356), + [sym__expression_statement_expression] = STATE(5134), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3102), + [sym_postfix_unary_expression] = STATE(3079), + [sym_prefix_unary_expression] = STATE(3079), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6134), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3102), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3079), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3102), + [sym_member_access_expression] = STATE(2472), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3079), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7425), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(3102), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3102), + [sym_typeof_expression] = STATE(3102), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2472), + [sym_literal] = STATE(3102), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2259), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_top_level] = STATE(1998), + [sym_preproc_else_in_top_level] = STATE(7484), + [sym_preproc_elif_in_top_level] = STATE(7484), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(3034), [sym_preproc_region] = STATE(13), [sym_preproc_endregion] = STATE(13), [sym_preproc_line] = STATE(13), @@ -28802,10 +28679,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(2212), - [aux_sym__class_declaration_initializer_repeat2] = STATE(2358), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), - [aux_sym_preproc_if_in_top_level_repeat1] = STATE(17), + [aux_sym__class_declaration_initializer_repeat1] = STATE(2201), + [aux_sym__class_declaration_initializer_repeat2] = STATE(2352), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), + [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), @@ -28821,8 +28698,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_class] = ACTIONS(49), [anon_sym_ref] = ACTIONS(51), [anon_sym_struct] = ACTIONS(53), - [anon_sym_enum] = ACTIONS(175), - [anon_sym_LBRACE] = ACTIONS(177), + [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), @@ -28830,7 +28707,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_async] = ACTIONS(39), [anon_sym_const] = ACTIONS(65), [anon_sym_file] = ACTIONS(67), - [anon_sym_fixed] = ACTIONS(179), + [anon_sym_fixed] = ACTIONS(177), [anon_sym_internal] = ACTIONS(65), [anon_sym_new] = ACTIONS(71), [anon_sym_override] = ACTIONS(65), @@ -28846,7 +28723,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(181), + [anon_sym_checked] = ACTIONS(179), [anon_sym_BANG] = ACTIONS(75), [anon_sym_TILDE] = ACTIONS(75), [anon_sym_PLUS_PLUS] = ACTIONS(75), @@ -28863,23 +28740,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(183), - [anon_sym_unchecked] = ACTIONS(181), - [anon_sym_continue] = ACTIONS(185), - [anon_sym_do] = ACTIONS(187), - [anon_sym_while] = ACTIONS(189), - [anon_sym_for] = ACTIONS(191), - [anon_sym_lock] = ACTIONS(193), - [anon_sym_yield] = ACTIONS(195), - [anon_sym_switch] = ACTIONS(197), + [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(199), - [anon_sym_try] = ACTIONS(201), + [anon_sym_throw] = ACTIONS(197), + [anon_sym_try] = ACTIONS(199), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(203), + [anon_sym_await] = ACTIONS(201), [anon_sym_foreach] = ACTIONS(117), - [anon_sym_goto] = ACTIONS(205), - [anon_sym_if] = ACTIONS(207), + [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), @@ -28905,8 +28782,8 @@ 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(209), - [aux_sym_preproc_if_token3] = ACTIONS(235), + [aux_sym_preproc_if_token1] = ACTIONS(207), + [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), @@ -28925,133 +28802,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(1994), - [sym_using_directive] = STATE(1994), - [sym_global_attribute] = STATE(1994), - [sym_attribute_list] = STATE(2979), - [sym__attribute_list] = STATE(2990), - [sym_namespace_declaration] = STATE(1994), - [sym_file_scoped_namespace_declaration] = STATE(1994), - [sym_type_declaration] = STATE(1994), - [sym_class_declaration] = STATE(1982), - [sym__class_declaration_initializer] = STATE(7301), - [sym_struct_declaration] = STATE(1982), - [sym__struct_declaration_initializer] = STATE(7209), - [sym_enum_declaration] = STATE(1982), - [sym_interface_declaration] = STATE(1982), - [sym__interface_declaration_initializer] = STATE(7211), - [sym_delegate_declaration] = STATE(1982), - [sym__delegate_declaration_initializer] = STATE(6719), - [sym_record_declaration] = STATE(1982), - [sym__record_declaration_initializer] = STATE(6747), - [sym_modifier] = STATE(3130), - [sym_parameter_list] = STATE(7311), - [sym_block] = STATE(1968), - [sym_variable_declaration] = STATE(7525), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(5160), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2204), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5867), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_statement] = STATE(1994), - [sym_break_statement] = STATE(1968), - [sym_checked_statement] = STATE(1968), - [sym_continue_statement] = STATE(1968), - [sym_do_statement] = STATE(1968), - [sym_empty_statement] = STATE(1968), - [sym_expression_statement] = STATE(1968), - [sym_fixed_statement] = STATE(1968), - [sym_for_statement] = STATE(1968), - [sym_return_statement] = STATE(1968), - [sym_lock_statement] = STATE(1968), - [sym_yield_statement] = STATE(1968), - [sym_switch_statement] = STATE(1968), - [sym_throw_statement] = STATE(1968), - [sym_try_statement] = STATE(1968), - [sym_unsafe_statement] = STATE(1968), - [sym_using_statement] = STATE(1968), - [sym_foreach_statement] = STATE(1968), - [sym__foreach_statement_initializer] = STATE(91), - [sym_goto_statement] = STATE(1968), - [sym_labeled_statement] = STATE(1968), - [sym_if_statement] = STATE(1968), - [sym_while_statement] = STATE(1968), - [sym_local_declaration_statement] = STATE(1968), - [sym_local_function_statement] = STATE(1968), - [sym__local_function_declaration] = STATE(6298), - [sym_expression] = STATE(5672), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3461), - [sym__expression_statement_expression] = STATE(5158), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3080), - [sym_postfix_unary_expression] = STATE(3111), - [sym_prefix_unary_expression] = STATE(3111), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6154), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3080), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3111), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3080), - [sym_member_access_expression] = STATE(2484), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3111), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7530), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(3080), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3080), - [sym_typeof_expression] = STATE(3080), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2484), - [sym_literal] = STATE(3080), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2264), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_top_level] = STATE(2007), - [sym_preproc_else_in_top_level] = STATE(7727), - [sym_preproc_elif_in_top_level] = STATE(7727), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(2979), + [sym_extern_alias_directive] = STATE(1991), + [sym_using_directive] = STATE(1991), + [sym_global_attribute] = STATE(1991), + [sym_attribute_list] = STATE(3034), + [sym__attribute_list] = STATE(2953), + [sym_namespace_declaration] = STATE(1991), + [sym_file_scoped_namespace_declaration] = STATE(1991), + [sym_type_declaration] = STATE(1991), + [sym_class_declaration] = STATE(1981), + [sym__class_declaration_initializer] = STATE(6630), + [sym_struct_declaration] = STATE(1981), + [sym__struct_declaration_initializer] = STATE(6631), + [sym_enum_declaration] = STATE(1981), + [sym__enum_declaration_initializer] = STATE(6968), + [sym_interface_declaration] = STATE(1981), + [sym__interface_declaration_initializer] = STATE(6633), + [sym_delegate_declaration] = STATE(1981), + [sym__delegate_declaration_initializer] = STATE(6634), + [sym_record_declaration] = STATE(1981), + [sym__record_declaration_initializer] = STATE(6635), + [sym_modifier] = STATE(3114), + [sym_parameter_list] = STATE(7531), + [sym_block] = STATE(1948), + [sym_variable_declaration] = STATE(7649), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(5152), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2196), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5805), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_statement] = STATE(1991), + [sym_break_statement] = STATE(1948), + [sym_checked_statement] = STATE(1948), + [sym_continue_statement] = STATE(1948), + [sym_do_statement] = STATE(1948), + [sym_empty_statement] = STATE(1948), + [sym_expression_statement] = STATE(1948), + [sym_fixed_statement] = STATE(1948), + [sym_for_statement] = STATE(1948), + [sym_return_statement] = STATE(1948), + [sym_lock_statement] = STATE(1948), + [sym_yield_statement] = STATE(1948), + [sym_switch_statement] = STATE(1948), + [sym_throw_statement] = STATE(1948), + [sym_try_statement] = STATE(1948), + [sym_unsafe_statement] = STATE(1948), + [sym_using_statement] = STATE(1948), + [sym_foreach_statement] = STATE(1948), + [sym__foreach_statement_initializer] = STATE(94), + [sym_goto_statement] = STATE(1948), + [sym_labeled_statement] = STATE(1948), + [sym_if_statement] = STATE(1948), + [sym_while_statement] = STATE(1948), + [sym_local_declaration_statement] = STATE(1948), + [sym_local_function_statement] = STATE(1948), + [sym__local_function_declaration] = STATE(6313), + [sym_expression] = STATE(5660), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3356), + [sym__expression_statement_expression] = STATE(5134), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3102), + [sym_postfix_unary_expression] = STATE(3079), + [sym_prefix_unary_expression] = STATE(3079), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6134), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3102), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3079), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3102), + [sym_member_access_expression] = STATE(2472), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3079), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7425), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(3102), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3102), + [sym_typeof_expression] = STATE(3102), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2472), + [sym_literal] = STATE(3102), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2259), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_top_level] = STATE(1998), + [sym_preproc_else_in_top_level] = STATE(7660), + [sym_preproc_elif_in_top_level] = STATE(7660), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(3034), [sym_preproc_region] = STATE(14), [sym_preproc_endregion] = STATE(14), [sym_preproc_line] = STATE(14), @@ -29061,10 +28939,10 @@ 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(2212), - [aux_sym__class_declaration_initializer_repeat2] = STATE(2358), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), - [aux_sym_preproc_if_in_top_level_repeat1] = STATE(17), + [aux_sym__class_declaration_initializer_repeat1] = STATE(2201), + [aux_sym__class_declaration_initializer_repeat2] = STATE(2352), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), + [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), @@ -29080,8 +28958,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_class] = ACTIONS(49), [anon_sym_ref] = ACTIONS(51), [anon_sym_struct] = ACTIONS(53), - [anon_sym_enum] = ACTIONS(175), - [anon_sym_LBRACE] = ACTIONS(177), + [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), @@ -29089,7 +28967,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_async] = ACTIONS(39), [anon_sym_const] = ACTIONS(65), [anon_sym_file] = ACTIONS(67), - [anon_sym_fixed] = ACTIONS(179), + [anon_sym_fixed] = ACTIONS(177), [anon_sym_internal] = ACTIONS(65), [anon_sym_new] = ACTIONS(71), [anon_sym_override] = ACTIONS(65), @@ -29105,7 +28983,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(181), + [anon_sym_checked] = ACTIONS(179), [anon_sym_BANG] = ACTIONS(75), [anon_sym_TILDE] = ACTIONS(75), [anon_sym_PLUS_PLUS] = ACTIONS(75), @@ -29122,23 +29000,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(183), - [anon_sym_unchecked] = ACTIONS(181), - [anon_sym_continue] = ACTIONS(185), - [anon_sym_do] = ACTIONS(187), - [anon_sym_while] = ACTIONS(189), - [anon_sym_for] = ACTIONS(191), - [anon_sym_lock] = ACTIONS(193), - [anon_sym_yield] = ACTIONS(195), - [anon_sym_switch] = ACTIONS(197), + [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(199), - [anon_sym_try] = ACTIONS(201), + [anon_sym_throw] = ACTIONS(197), + [anon_sym_try] = ACTIONS(199), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(203), + [anon_sym_await] = ACTIONS(201), [anon_sym_foreach] = ACTIONS(117), - [anon_sym_goto] = ACTIONS(205), - [anon_sym_if] = ACTIONS(207), + [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), @@ -29164,8 +29042,8 @@ 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(209), - [aux_sym_preproc_if_token3] = ACTIONS(237), + [aux_sym_preproc_if_token1] = ACTIONS(207), + [aux_sym_preproc_if_token3] = ACTIONS(235), [aux_sym_preproc_else_token1] = ACTIONS(225), [aux_sym_preproc_elif_token1] = ACTIONS(227), [aux_sym_preproc_region_token1] = ACTIONS(3), @@ -29184,49 +29062,50 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [15] = { - [sym__top_level_item] = STATE(2063), + [sym__top_level_item] = STATE(2064), [sym_global_statement] = STATE(2065), [sym_extern_alias_directive] = STATE(2065), [sym_using_directive] = STATE(2065), [sym_global_attribute] = STATE(2065), - [sym_attribute_list] = STATE(2979), - [sym__attribute_list] = STATE(2990), + [sym_attribute_list] = STATE(3034), + [sym__attribute_list] = STATE(2953), [sym_namespace_declaration] = STATE(2065), [sym_file_scoped_namespace_declaration] = STATE(2065), [sym_type_declaration] = STATE(2065), - [sym_class_declaration] = STATE(2069), - [sym__class_declaration_initializer] = STATE(7691), - [sym_struct_declaration] = STATE(2069), - [sym__struct_declaration_initializer] = STATE(7045), - [sym_enum_declaration] = STATE(2069), - [sym_interface_declaration] = STATE(2069), - [sym__interface_declaration_initializer] = STATE(7186), - [sym_delegate_declaration] = STATE(2069), - [sym__delegate_declaration_initializer] = STATE(6619), - [sym_record_declaration] = STATE(2069), - [sym__record_declaration_initializer] = STATE(6976), - [sym_modifier] = STATE(3130), - [sym_parameter_list] = STATE(7311), + [sym_class_declaration] = STATE(2066), + [sym__class_declaration_initializer] = STATE(6641), + [sym_struct_declaration] = STATE(2066), + [sym__struct_declaration_initializer] = STATE(6644), + [sym_enum_declaration] = STATE(2066), + [sym__enum_declaration_initializer] = STATE(6736), + [sym_interface_declaration] = STATE(2066), + [sym__interface_declaration_initializer] = STATE(6679), + [sym_delegate_declaration] = STATE(2066), + [sym__delegate_declaration_initializer] = STATE(6683), + [sym_record_declaration] = STATE(2066), + [sym__record_declaration_initializer] = STATE(6686), + [sym_modifier] = STATE(3114), + [sym_parameter_list] = STATE(7531), [sym_block] = STATE(2026), - [sym_variable_declaration] = STATE(7363), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(5160), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2204), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5867), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_statement] = STATE(2079), + [sym_variable_declaration] = STATE(7610), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(5152), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2196), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5805), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_statement] = STATE(2077), [sym_break_statement] = STATE(2026), [sym_checked_statement] = STATE(2026), [sym_continue_statement] = STATE(2026), @@ -29244,73 +29123,73 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_unsafe_statement] = STATE(2026), [sym_using_statement] = STATE(2026), [sym_foreach_statement] = STATE(2026), - [sym__foreach_statement_initializer] = STATE(70), + [sym__foreach_statement_initializer] = STATE(90), [sym_goto_statement] = STATE(2026), [sym_labeled_statement] = STATE(2026), [sym_if_statement] = STATE(2026), [sym_while_statement] = STATE(2026), [sym_local_declaration_statement] = STATE(2026), [sym_local_function_statement] = STATE(2026), - [sym__local_function_declaration] = STATE(6317), - [sym_expression] = STATE(5672), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3461), - [sym__expression_statement_expression] = STATE(5719), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3080), - [sym_postfix_unary_expression] = STATE(3111), - [sym_prefix_unary_expression] = STATE(3111), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6154), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3080), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3111), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3080), - [sym_member_access_expression] = STATE(2484), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3111), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7530), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(3080), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3080), - [sym_typeof_expression] = STATE(3080), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2484), - [sym_literal] = STATE(3080), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2348), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_top_level] = STATE(2059), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(2979), + [sym__local_function_declaration] = STATE(6290), + [sym_expression] = STATE(5660), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3356), + [sym__expression_statement_expression] = STATE(5708), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3102), + [sym_postfix_unary_expression] = STATE(3079), + [sym_prefix_unary_expression] = STATE(3079), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6134), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3102), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3079), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3102), + [sym_member_access_expression] = STATE(2472), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3079), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7425), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(3102), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3102), + [sym_typeof_expression] = STATE(3102), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2472), + [sym_literal] = STATE(3102), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2332), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_top_level] = STATE(2075), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(3034), [sym_preproc_region] = STATE(15), [sym_preproc_endregion] = STATE(15), [sym_preproc_line] = STATE(15), @@ -29320,11 +29199,11 @@ 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(19), - [aux_sym__class_declaration_initializer_repeat1] = STATE(2209), + [aux_sym_compilation_unit_repeat1] = STATE(18), + [aux_sym__class_declaration_initializer_repeat1] = STATE(2201), [aux_sym__class_declaration_initializer_repeat2] = STATE(2356), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), - [ts_builtin_sym_end] = ACTIONS(239), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), + [ts_builtin_sym_end] = ACTIONS(237), [sym__identifier_token] = ACTIONS(25), [anon_sym_extern] = ACTIONS(27), [anon_sym_alias] = ACTIONS(29), @@ -29441,49 +29320,50 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [16] = { - [sym__top_level_item] = STATE(2063), + [sym__top_level_item] = STATE(2064), [sym_global_statement] = STATE(2065), [sym_extern_alias_directive] = STATE(2065), [sym_using_directive] = STATE(2065), [sym_global_attribute] = STATE(2065), - [sym_attribute_list] = STATE(2979), - [sym__attribute_list] = STATE(2990), + [sym_attribute_list] = STATE(3034), + [sym__attribute_list] = STATE(2953), [sym_namespace_declaration] = STATE(2065), [sym_file_scoped_namespace_declaration] = STATE(2065), [sym_type_declaration] = STATE(2065), - [sym_class_declaration] = STATE(2069), - [sym__class_declaration_initializer] = STATE(7691), - [sym_struct_declaration] = STATE(2069), - [sym__struct_declaration_initializer] = STATE(7045), - [sym_enum_declaration] = STATE(2069), - [sym_interface_declaration] = STATE(2069), - [sym__interface_declaration_initializer] = STATE(7186), - [sym_delegate_declaration] = STATE(2069), - [sym__delegate_declaration_initializer] = STATE(6619), - [sym_record_declaration] = STATE(2069), - [sym__record_declaration_initializer] = STATE(6976), - [sym_modifier] = STATE(3130), - [sym_parameter_list] = STATE(7311), + [sym_class_declaration] = STATE(2066), + [sym__class_declaration_initializer] = STATE(6641), + [sym_struct_declaration] = STATE(2066), + [sym__struct_declaration_initializer] = STATE(6644), + [sym_enum_declaration] = STATE(2066), + [sym__enum_declaration_initializer] = STATE(6736), + [sym_interface_declaration] = STATE(2066), + [sym__interface_declaration_initializer] = STATE(6679), + [sym_delegate_declaration] = STATE(2066), + [sym__delegate_declaration_initializer] = STATE(6683), + [sym_record_declaration] = STATE(2066), + [sym__record_declaration_initializer] = STATE(6686), + [sym_modifier] = STATE(3114), + [sym_parameter_list] = STATE(7531), [sym_block] = STATE(2026), - [sym_variable_declaration] = STATE(7363), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(5160), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2204), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5867), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_statement] = STATE(2079), + [sym_variable_declaration] = STATE(7610), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(5152), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2196), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5805), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_statement] = STATE(2077), [sym_break_statement] = STATE(2026), [sym_checked_statement] = STATE(2026), [sym_continue_statement] = STATE(2026), @@ -29501,73 +29381,73 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_unsafe_statement] = STATE(2026), [sym_using_statement] = STATE(2026), [sym_foreach_statement] = STATE(2026), - [sym__foreach_statement_initializer] = STATE(70), + [sym__foreach_statement_initializer] = STATE(90), [sym_goto_statement] = STATE(2026), [sym_labeled_statement] = STATE(2026), [sym_if_statement] = STATE(2026), [sym_while_statement] = STATE(2026), [sym_local_declaration_statement] = STATE(2026), [sym_local_function_statement] = STATE(2026), - [sym__local_function_declaration] = STATE(6317), - [sym_expression] = STATE(5672), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3461), - [sym__expression_statement_expression] = STATE(5719), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3080), - [sym_postfix_unary_expression] = STATE(3111), - [sym_prefix_unary_expression] = STATE(3111), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6154), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3080), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3111), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3080), - [sym_member_access_expression] = STATE(2484), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3111), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7530), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(3080), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3080), - [sym_typeof_expression] = STATE(3080), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2484), - [sym_literal] = STATE(3080), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2348), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_top_level] = STATE(2059), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(2979), + [sym__local_function_declaration] = STATE(6290), + [sym_expression] = STATE(5660), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3356), + [sym__expression_statement_expression] = STATE(5708), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3102), + [sym_postfix_unary_expression] = STATE(3079), + [sym_prefix_unary_expression] = STATE(3079), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6134), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3102), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3079), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3102), + [sym_member_access_expression] = STATE(2472), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3079), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7425), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(3102), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3102), + [sym_typeof_expression] = STATE(3102), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2472), + [sym_literal] = STATE(3102), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2332), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_top_level] = STATE(2075), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(3034), [sym_preproc_region] = STATE(16), [sym_preproc_endregion] = STATE(16), [sym_preproc_line] = STATE(16), @@ -29578,251 +29458,254 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_define] = STATE(16), [sym_preproc_undef] = STATE(16), [aux_sym_compilation_unit_repeat1] = STATE(16), - [aux_sym__class_declaration_initializer_repeat1] = STATE(2209), + [aux_sym__class_declaration_initializer_repeat1] = STATE(2201), [aux_sym__class_declaration_initializer_repeat2] = STATE(2356), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), - [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), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), + [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_extern_alias_directive] = STATE(1994), - [sym_using_directive] = STATE(1994), - [sym_global_attribute] = STATE(1994), - [sym_attribute_list] = STATE(2979), - [sym__attribute_list] = STATE(2990), - [sym_namespace_declaration] = STATE(1994), - [sym_file_scoped_namespace_declaration] = STATE(1994), - [sym_type_declaration] = STATE(1994), - [sym_class_declaration] = STATE(1982), - [sym__class_declaration_initializer] = STATE(7301), - [sym_struct_declaration] = STATE(1982), - [sym__struct_declaration_initializer] = STATE(7209), - [sym_enum_declaration] = STATE(1982), - [sym_interface_declaration] = STATE(1982), - [sym__interface_declaration_initializer] = STATE(7211), - [sym_delegate_declaration] = STATE(1982), - [sym__delegate_declaration_initializer] = STATE(6719), - [sym_record_declaration] = STATE(1982), - [sym__record_declaration_initializer] = STATE(6747), - [sym_modifier] = STATE(3130), - [sym_parameter_list] = STATE(7311), - [sym_block] = STATE(1968), - [sym_variable_declaration] = STATE(7525), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(5160), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2204), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5867), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_statement] = STATE(1994), - [sym_break_statement] = STATE(1968), - [sym_checked_statement] = STATE(1968), - [sym_continue_statement] = STATE(1968), - [sym_do_statement] = STATE(1968), - [sym_empty_statement] = STATE(1968), - [sym_expression_statement] = STATE(1968), - [sym_fixed_statement] = STATE(1968), - [sym_for_statement] = STATE(1968), - [sym_return_statement] = STATE(1968), - [sym_lock_statement] = STATE(1968), - [sym_yield_statement] = STATE(1968), - [sym_switch_statement] = STATE(1968), - [sym_throw_statement] = STATE(1968), - [sym_try_statement] = STATE(1968), - [sym_unsafe_statement] = STATE(1968), - [sym_using_statement] = STATE(1968), - [sym_foreach_statement] = STATE(1968), - [sym__foreach_statement_initializer] = STATE(91), - [sym_goto_statement] = STATE(1968), - [sym_labeled_statement] = STATE(1968), - [sym_if_statement] = STATE(1968), - [sym_while_statement] = STATE(1968), - [sym_local_declaration_statement] = STATE(1968), - [sym_local_function_statement] = STATE(1968), - [sym__local_function_declaration] = STATE(6298), - [sym_expression] = STATE(5672), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3461), - [sym__expression_statement_expression] = STATE(5158), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3080), - [sym_postfix_unary_expression] = STATE(3111), - [sym_prefix_unary_expression] = STATE(3111), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6154), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3080), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3111), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3080), - [sym_member_access_expression] = STATE(2484), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3111), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7530), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(3080), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3080), - [sym_typeof_expression] = STATE(3080), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2484), - [sym_literal] = STATE(3080), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2264), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_top_level] = STATE(2007), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(2979), + [sym__top_level_item] = STATE(2064), + [sym_global_statement] = STATE(2065), + [sym_extern_alias_directive] = STATE(2065), + [sym_using_directive] = STATE(2065), + [sym_global_attribute] = STATE(2065), + [sym_attribute_list] = STATE(3034), + [sym__attribute_list] = STATE(2953), + [sym_namespace_declaration] = STATE(2065), + [sym_file_scoped_namespace_declaration] = STATE(2065), + [sym_type_declaration] = STATE(2065), + [sym_class_declaration] = STATE(2066), + [sym__class_declaration_initializer] = STATE(6641), + [sym_struct_declaration] = STATE(2066), + [sym__struct_declaration_initializer] = STATE(6644), + [sym_enum_declaration] = STATE(2066), + [sym__enum_declaration_initializer] = STATE(6736), + [sym_interface_declaration] = STATE(2066), + [sym__interface_declaration_initializer] = STATE(6679), + [sym_delegate_declaration] = STATE(2066), + [sym__delegate_declaration_initializer] = STATE(6683), + [sym_record_declaration] = STATE(2066), + [sym__record_declaration_initializer] = STATE(6686), + [sym_modifier] = STATE(3114), + [sym_parameter_list] = STATE(7531), + [sym_block] = STATE(2026), + [sym_variable_declaration] = STATE(7610), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(5152), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2196), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5805), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_statement] = STATE(2077), + [sym_break_statement] = STATE(2026), + [sym_checked_statement] = STATE(2026), + [sym_continue_statement] = STATE(2026), + [sym_do_statement] = STATE(2026), + [sym_empty_statement] = STATE(2026), + [sym_expression_statement] = STATE(2026), + [sym_fixed_statement] = STATE(2026), + [sym_for_statement] = STATE(2026), + [sym_return_statement] = STATE(2026), + [sym_lock_statement] = STATE(2026), + [sym_yield_statement] = STATE(2026), + [sym_switch_statement] = STATE(2026), + [sym_throw_statement] = STATE(2026), + [sym_try_statement] = STATE(2026), + [sym_unsafe_statement] = STATE(2026), + [sym_using_statement] = STATE(2026), + [sym_foreach_statement] = STATE(2026), + [sym__foreach_statement_initializer] = STATE(90), + [sym_goto_statement] = STATE(2026), + [sym_labeled_statement] = STATE(2026), + [sym_if_statement] = STATE(2026), + [sym_while_statement] = STATE(2026), + [sym_local_declaration_statement] = STATE(2026), + [sym_local_function_statement] = STATE(2026), + [sym__local_function_declaration] = STATE(6290), + [sym_expression] = STATE(5660), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3356), + [sym__expression_statement_expression] = STATE(5708), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3102), + [sym_postfix_unary_expression] = STATE(3079), + [sym_prefix_unary_expression] = STATE(3079), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6134), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3102), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3079), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3102), + [sym_member_access_expression] = STATE(2472), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3079), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7425), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(3102), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3102), + [sym_typeof_expression] = STATE(3102), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2472), + [sym_literal] = STATE(3102), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2332), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_top_level] = STATE(2075), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(3034), [sym_preproc_region] = STATE(17), [sym_preproc_endregion] = STATE(17), [sym_preproc_line] = STATE(17), @@ -29832,113 +29715,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(17), [sym_preproc_define] = STATE(17), [sym_preproc_undef] = STATE(17), - [aux_sym__class_declaration_initializer_repeat1] = STATE(2212), - [aux_sym__class_declaration_initializer_repeat2] = STATE(2358), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), - [aux_sym_preproc_if_in_top_level_repeat1] = STATE(17), - [sym__identifier_token] = ACTIONS(441), - [anon_sym_extern] = ACTIONS(444), - [anon_sym_alias] = ACTIONS(447), - [anon_sym_SEMI] = ACTIONS(450), - [anon_sym_global] = ACTIONS(453), - [anon_sym_using] = ACTIONS(456), - [anon_sym_unsafe] = ACTIONS(459), - [anon_sym_static] = ACTIONS(462), - [anon_sym_LBRACK] = ACTIONS(465), - [anon_sym_LPAREN] = ACTIONS(468), - [anon_sym_return] = ACTIONS(471), - [anon_sym_namespace] = ACTIONS(474), - [anon_sym_class] = ACTIONS(477), - [anon_sym_ref] = ACTIONS(480), - [anon_sym_struct] = ACTIONS(483), - [anon_sym_enum] = ACTIONS(486), - [anon_sym_LBRACE] = ACTIONS(489), - [anon_sym_interface] = ACTIONS(492), - [anon_sym_delegate] = ACTIONS(495), - [anon_sym_record] = ACTIONS(498), - [anon_sym_abstract] = ACTIONS(501), - [anon_sym_async] = ACTIONS(462), - [anon_sym_const] = ACTIONS(501), - [anon_sym_file] = ACTIONS(504), - [anon_sym_fixed] = ACTIONS(507), - [anon_sym_internal] = ACTIONS(501), - [anon_sym_new] = ACTIONS(510), - [anon_sym_override] = ACTIONS(501), - [anon_sym_partial] = ACTIONS(501), - [anon_sym_private] = ACTIONS(501), - [anon_sym_protected] = ACTIONS(501), - [anon_sym_public] = ACTIONS(501), - [anon_sym_readonly] = ACTIONS(501), - [anon_sym_required] = ACTIONS(501), - [anon_sym_sealed] = ACTIONS(501), - [anon_sym_virtual] = ACTIONS(501), - [anon_sym_volatile] = ACTIONS(501), - [anon_sym_where] = ACTIONS(447), - [anon_sym_notnull] = ACTIONS(447), - [anon_sym_unmanaged] = ACTIONS(447), - [anon_sym_checked] = ACTIONS(513), - [anon_sym_BANG] = ACTIONS(516), - [anon_sym_TILDE] = ACTIONS(516), - [anon_sym_PLUS_PLUS] = ACTIONS(516), - [anon_sym_DASH_DASH] = ACTIONS(516), - [anon_sym_true] = ACTIONS(519), - [anon_sym_false] = ACTIONS(519), - [anon_sym_PLUS] = ACTIONS(522), - [anon_sym_DASH] = ACTIONS(522), - [anon_sym_STAR] = ACTIONS(525), - [anon_sym_CARET] = ACTIONS(516), - [anon_sym_AMP] = ACTIONS(516), - [anon_sym_this] = ACTIONS(528), - [anon_sym_scoped] = ACTIONS(531), - [anon_sym_base] = ACTIONS(534), - [anon_sym_var] = ACTIONS(537), - [sym_predefined_type] = ACTIONS(540), - [anon_sym_break] = ACTIONS(543), - [anon_sym_unchecked] = ACTIONS(513), - [anon_sym_continue] = ACTIONS(546), - [anon_sym_do] = ACTIONS(549), - [anon_sym_while] = ACTIONS(552), - [anon_sym_for] = ACTIONS(555), - [anon_sym_lock] = ACTIONS(558), - [anon_sym_yield] = ACTIONS(561), - [anon_sym_switch] = ACTIONS(564), - [anon_sym_default] = ACTIONS(567), - [anon_sym_throw] = ACTIONS(570), - [anon_sym_try] = ACTIONS(573), - [anon_sym_when] = ACTIONS(447), - [anon_sym_await] = ACTIONS(576), - [anon_sym_foreach] = ACTIONS(579), - [anon_sym_goto] = ACTIONS(582), - [anon_sym_if] = ACTIONS(585), - [anon_sym_DOT_DOT] = ACTIONS(588), - [anon_sym_from] = ACTIONS(591), - [anon_sym_into] = ACTIONS(447), - [anon_sym_join] = ACTIONS(447), - [anon_sym_on] = ACTIONS(447), - [anon_sym_equals] = ACTIONS(447), - [anon_sym_let] = ACTIONS(447), - [anon_sym_orderby] = ACTIONS(447), - [anon_sym_ascending] = ACTIONS(447), - [anon_sym_descending] = ACTIONS(447), - [anon_sym_group] = ACTIONS(447), - [anon_sym_by] = ACTIONS(447), - [anon_sym_select] = ACTIONS(447), - [anon_sym_stackalloc] = ACTIONS(594), - [anon_sym_sizeof] = ACTIONS(597), - [anon_sym_typeof] = ACTIONS(600), - [anon_sym___makeref] = ACTIONS(603), - [anon_sym___reftype] = ACTIONS(606), - [anon_sym___refvalue] = ACTIONS(609), - [sym_null_literal] = ACTIONS(612), - [anon_sym_SQUOTE] = ACTIONS(615), - [sym_integer_literal] = ACTIONS(612), - [sym_real_literal] = ACTIONS(618), - [anon_sym_DQUOTE] = ACTIONS(621), - [sym_verbatim_string_literal] = ACTIONS(618), - [aux_sym_preproc_if_token1] = ACTIONS(624), - [aux_sym_preproc_if_token3] = ACTIONS(627), - [aux_sym_preproc_else_token1] = ACTIONS(627), - [aux_sym_preproc_elif_token1] = ACTIONS(627), + [aux_sym_compilation_unit_repeat1] = STATE(16), + [aux_sym__class_declaration_initializer_repeat1] = STATE(2201), + [aux_sym__class_declaration_initializer_repeat2] = STATE(2356), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), + [ts_builtin_sym_end] = ACTIONS(237), + [sym__identifier_token] = ACTIONS(25), + [anon_sym_extern] = ACTIONS(27), + [anon_sym_alias] = ACTIONS(29), + [anon_sym_SEMI] = ACTIONS(31), + [anon_sym_global] = ACTIONS(33), + [anon_sym_using] = ACTIONS(35), + [anon_sym_unsafe] = ACTIONS(37), + [anon_sym_static] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(41), + [anon_sym_LPAREN] = ACTIONS(43), + [anon_sym_return] = ACTIONS(45), + [anon_sym_namespace] = ACTIONS(47), + [anon_sym_class] = ACTIONS(49), + [anon_sym_ref] = ACTIONS(51), + [anon_sym_struct] = ACTIONS(53), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_LBRACE] = ACTIONS(57), + [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(69), + [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(73), + [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(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(111), + [anon_sym_try] = ACTIONS(113), + [anon_sym_when] = ACTIONS(29), + [anon_sym_await] = ACTIONS(115), + [anon_sym_foreach] = ACTIONS(117), + [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), + [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(147), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -29949,55 +29830,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(629), - [sym_interpolation_verbatim_start] = ACTIONS(632), - [sym_interpolation_raw_start] = ACTIONS(635), - [sym_raw_string_start] = ACTIONS(638), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [sym_interpolation_raw_start] = ACTIONS(155), + [sym_raw_string_start] = ACTIONS(157), }, [18] = { - [sym__top_level_item] = STATE(2063), + [sym__top_level_item] = STATE(2064), [sym_global_statement] = STATE(2065), [sym_extern_alias_directive] = STATE(2065), [sym_using_directive] = STATE(2065), [sym_global_attribute] = STATE(2065), - [sym_attribute_list] = STATE(2979), - [sym__attribute_list] = STATE(2990), + [sym_attribute_list] = STATE(3034), + [sym__attribute_list] = STATE(2953), [sym_namespace_declaration] = STATE(2065), [sym_file_scoped_namespace_declaration] = STATE(2065), [sym_type_declaration] = STATE(2065), - [sym_class_declaration] = STATE(2069), - [sym__class_declaration_initializer] = STATE(7691), - [sym_struct_declaration] = STATE(2069), - [sym__struct_declaration_initializer] = STATE(7045), - [sym_enum_declaration] = STATE(2069), - [sym_interface_declaration] = STATE(2069), - [sym__interface_declaration_initializer] = STATE(7186), - [sym_delegate_declaration] = STATE(2069), - [sym__delegate_declaration_initializer] = STATE(6619), - [sym_record_declaration] = STATE(2069), - [sym__record_declaration_initializer] = STATE(6976), - [sym_modifier] = STATE(3130), - [sym_parameter_list] = STATE(7311), + [sym_class_declaration] = STATE(2066), + [sym__class_declaration_initializer] = STATE(6641), + [sym_struct_declaration] = STATE(2066), + [sym__struct_declaration_initializer] = STATE(6644), + [sym_enum_declaration] = STATE(2066), + [sym__enum_declaration_initializer] = STATE(6736), + [sym_interface_declaration] = STATE(2066), + [sym__interface_declaration_initializer] = STATE(6679), + [sym_delegate_declaration] = STATE(2066), + [sym__delegate_declaration_initializer] = STATE(6683), + [sym_record_declaration] = STATE(2066), + [sym__record_declaration_initializer] = STATE(6686), + [sym_modifier] = STATE(3114), + [sym_parameter_list] = STATE(7531), [sym_block] = STATE(2026), - [sym_variable_declaration] = STATE(7363), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(5160), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2204), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5867), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_statement] = STATE(2079), + [sym_variable_declaration] = STATE(7610), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(5152), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2196), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5805), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_statement] = STATE(2077), [sym_break_statement] = STATE(2026), [sym_checked_statement] = STATE(2026), [sym_continue_statement] = STATE(2026), @@ -30015,73 +29897,73 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_unsafe_statement] = STATE(2026), [sym_using_statement] = STATE(2026), [sym_foreach_statement] = STATE(2026), - [sym__foreach_statement_initializer] = STATE(70), + [sym__foreach_statement_initializer] = STATE(90), [sym_goto_statement] = STATE(2026), [sym_labeled_statement] = STATE(2026), [sym_if_statement] = STATE(2026), [sym_while_statement] = STATE(2026), [sym_local_declaration_statement] = STATE(2026), [sym_local_function_statement] = STATE(2026), - [sym__local_function_declaration] = STATE(6317), - [sym_expression] = STATE(5672), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3461), - [sym__expression_statement_expression] = STATE(5719), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3080), - [sym_postfix_unary_expression] = STATE(3111), - [sym_prefix_unary_expression] = STATE(3111), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6154), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3080), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3111), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3080), - [sym_member_access_expression] = STATE(2484), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3111), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7530), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(3080), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3080), - [sym_typeof_expression] = STATE(3080), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2484), - [sym_literal] = STATE(3080), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2348), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_top_level] = STATE(2059), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(2979), + [sym__local_function_declaration] = STATE(6290), + [sym_expression] = STATE(5660), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3356), + [sym__expression_statement_expression] = STATE(5708), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3102), + [sym_postfix_unary_expression] = STATE(3079), + [sym_prefix_unary_expression] = STATE(3079), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6134), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3102), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3079), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3102), + [sym_member_access_expression] = STATE(2472), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3079), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7425), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(3102), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3102), + [sym_typeof_expression] = STATE(3102), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2472), + [sym_literal] = STATE(3102), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2332), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_top_level] = STATE(2075), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(3034), [sym_preproc_region] = STATE(18), [sym_preproc_endregion] = STATE(18), [sym_preproc_line] = STATE(18), @@ -30092,10 +29974,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_define] = STATE(18), [sym_preproc_undef] = STATE(18), [aux_sym_compilation_unit_repeat1] = STATE(16), - [aux_sym__class_declaration_initializer_repeat1] = STATE(2209), + [aux_sym__class_declaration_initializer_repeat1] = STATE(2201), [aux_sym__class_declaration_initializer_repeat2] = STATE(2356), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), - [ts_builtin_sym_end] = ACTIONS(239), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), + [ts_builtin_sym_end] = ACTIONS(439), [sym__identifier_token] = ACTIONS(25), [anon_sym_extern] = ACTIONS(27), [anon_sym_alias] = ACTIONS(29), @@ -30212,133 +30094,132 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [19] = { - [sym__top_level_item] = STATE(2063), - [sym_global_statement] = STATE(2065), - [sym_extern_alias_directive] = STATE(2065), - [sym_using_directive] = STATE(2065), - [sym_global_attribute] = STATE(2065), - [sym_attribute_list] = STATE(2979), - [sym__attribute_list] = STATE(2990), - [sym_namespace_declaration] = STATE(2065), - [sym_file_scoped_namespace_declaration] = STATE(2065), - [sym_type_declaration] = STATE(2065), - [sym_class_declaration] = STATE(2069), - [sym__class_declaration_initializer] = STATE(7691), - [sym_struct_declaration] = STATE(2069), - [sym__struct_declaration_initializer] = STATE(7045), - [sym_enum_declaration] = STATE(2069), - [sym_interface_declaration] = STATE(2069), - [sym__interface_declaration_initializer] = STATE(7186), - [sym_delegate_declaration] = STATE(2069), - [sym__delegate_declaration_initializer] = STATE(6619), - [sym_record_declaration] = STATE(2069), - [sym__record_declaration_initializer] = STATE(6976), - [sym_modifier] = STATE(3130), - [sym_parameter_list] = STATE(7311), - [sym_block] = STATE(2026), - [sym_variable_declaration] = STATE(7363), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(5160), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2204), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5867), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_statement] = STATE(2079), - [sym_break_statement] = STATE(2026), - [sym_checked_statement] = STATE(2026), - [sym_continue_statement] = STATE(2026), - [sym_do_statement] = STATE(2026), - [sym_empty_statement] = STATE(2026), - [sym_expression_statement] = STATE(2026), - [sym_fixed_statement] = STATE(2026), - [sym_for_statement] = STATE(2026), - [sym_return_statement] = STATE(2026), - [sym_lock_statement] = STATE(2026), - [sym_yield_statement] = STATE(2026), - [sym_switch_statement] = STATE(2026), - [sym_throw_statement] = STATE(2026), - [sym_try_statement] = STATE(2026), - [sym_unsafe_statement] = STATE(2026), - [sym_using_statement] = STATE(2026), - [sym_foreach_statement] = STATE(2026), - [sym__foreach_statement_initializer] = STATE(70), - [sym_goto_statement] = STATE(2026), - [sym_labeled_statement] = STATE(2026), - [sym_if_statement] = STATE(2026), - [sym_while_statement] = STATE(2026), - [sym_local_declaration_statement] = STATE(2026), - [sym_local_function_statement] = STATE(2026), - [sym__local_function_declaration] = STATE(6317), - [sym_expression] = STATE(5672), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3461), - [sym__expression_statement_expression] = STATE(5719), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3080), - [sym_postfix_unary_expression] = STATE(3111), - [sym_prefix_unary_expression] = STATE(3111), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6154), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3080), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3111), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3080), - [sym_member_access_expression] = STATE(2484), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3111), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7530), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(3080), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3080), - [sym_typeof_expression] = STATE(3080), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2484), - [sym_literal] = STATE(3080), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2348), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_top_level] = STATE(2059), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(2979), + [sym_extern_alias_directive] = STATE(1991), + [sym_using_directive] = STATE(1991), + [sym_global_attribute] = STATE(1991), + [sym_attribute_list] = STATE(3034), + [sym__attribute_list] = STATE(2953), + [sym_namespace_declaration] = STATE(1991), + [sym_file_scoped_namespace_declaration] = STATE(1991), + [sym_type_declaration] = STATE(1991), + [sym_class_declaration] = STATE(1981), + [sym__class_declaration_initializer] = STATE(6630), + [sym_struct_declaration] = STATE(1981), + [sym__struct_declaration_initializer] = STATE(6631), + [sym_enum_declaration] = STATE(1981), + [sym__enum_declaration_initializer] = STATE(6968), + [sym_interface_declaration] = STATE(1981), + [sym__interface_declaration_initializer] = STATE(6633), + [sym_delegate_declaration] = STATE(1981), + [sym__delegate_declaration_initializer] = STATE(6634), + [sym_record_declaration] = STATE(1981), + [sym__record_declaration_initializer] = STATE(6635), + [sym_modifier] = STATE(3114), + [sym_parameter_list] = STATE(7531), + [sym_block] = STATE(1948), + [sym_variable_declaration] = STATE(7649), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(5152), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2196), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5805), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_statement] = STATE(1991), + [sym_break_statement] = STATE(1948), + [sym_checked_statement] = STATE(1948), + [sym_continue_statement] = STATE(1948), + [sym_do_statement] = STATE(1948), + [sym_empty_statement] = STATE(1948), + [sym_expression_statement] = STATE(1948), + [sym_fixed_statement] = STATE(1948), + [sym_for_statement] = STATE(1948), + [sym_return_statement] = STATE(1948), + [sym_lock_statement] = STATE(1948), + [sym_yield_statement] = STATE(1948), + [sym_switch_statement] = STATE(1948), + [sym_throw_statement] = STATE(1948), + [sym_try_statement] = STATE(1948), + [sym_unsafe_statement] = STATE(1948), + [sym_using_statement] = STATE(1948), + [sym_foreach_statement] = STATE(1948), + [sym__foreach_statement_initializer] = STATE(94), + [sym_goto_statement] = STATE(1948), + [sym_labeled_statement] = STATE(1948), + [sym_if_statement] = STATE(1948), + [sym_while_statement] = STATE(1948), + [sym_local_declaration_statement] = STATE(1948), + [sym_local_function_statement] = STATE(1948), + [sym__local_function_declaration] = STATE(6313), + [sym_expression] = STATE(5660), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3356), + [sym__expression_statement_expression] = STATE(5134), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3102), + [sym_postfix_unary_expression] = STATE(3079), + [sym_prefix_unary_expression] = STATE(3079), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6134), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3102), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3079), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3102), + [sym_member_access_expression] = STATE(2472), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3079), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7425), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(3102), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3102), + [sym_typeof_expression] = STATE(3102), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2472), + [sym_literal] = STATE(3102), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2259), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_top_level] = STATE(1998), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(3034), [sym_preproc_region] = STATE(19), [sym_preproc_endregion] = STATE(19), [sym_preproc_line] = STATE(19), @@ -30348,111 +30229,113 @@ 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_compilation_unit_repeat1] = STATE(16), - [aux_sym__class_declaration_initializer_repeat1] = STATE(2209), - [aux_sym__class_declaration_initializer_repeat2] = STATE(2356), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), - [ts_builtin_sym_end] = ACTIONS(641), - [sym__identifier_token] = ACTIONS(25), - [anon_sym_extern] = ACTIONS(27), - [anon_sym_alias] = ACTIONS(29), - [anon_sym_SEMI] = ACTIONS(31), - [anon_sym_global] = ACTIONS(33), - [anon_sym_using] = ACTIONS(35), - [anon_sym_unsafe] = ACTIONS(37), - [anon_sym_static] = ACTIONS(39), - [anon_sym_LBRACK] = ACTIONS(41), - [anon_sym_LPAREN] = ACTIONS(43), - [anon_sym_return] = ACTIONS(45), - [anon_sym_namespace] = ACTIONS(47), - [anon_sym_class] = ACTIONS(49), - [anon_sym_ref] = ACTIONS(51), - [anon_sym_struct] = ACTIONS(53), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_LBRACE] = ACTIONS(57), - [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(69), - [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(73), - [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(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(111), - [anon_sym_try] = ACTIONS(113), - [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(115), - [anon_sym_foreach] = ACTIONS(117), - [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), - [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(147), + [aux_sym__class_declaration_initializer_repeat1] = STATE(2201), + [aux_sym__class_declaration_initializer_repeat2] = STATE(2352), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), + [aux_sym_preproc_if_in_top_level_repeat1] = STATE(19), + [sym__identifier_token] = ACTIONS(441), + [anon_sym_extern] = ACTIONS(444), + [anon_sym_alias] = ACTIONS(447), + [anon_sym_SEMI] = ACTIONS(450), + [anon_sym_global] = ACTIONS(453), + [anon_sym_using] = ACTIONS(456), + [anon_sym_unsafe] = ACTIONS(459), + [anon_sym_static] = ACTIONS(462), + [anon_sym_LBRACK] = ACTIONS(465), + [anon_sym_LPAREN] = ACTIONS(468), + [anon_sym_return] = ACTIONS(471), + [anon_sym_namespace] = ACTIONS(474), + [anon_sym_class] = ACTIONS(477), + [anon_sym_ref] = ACTIONS(480), + [anon_sym_struct] = ACTIONS(483), + [anon_sym_enum] = ACTIONS(486), + [anon_sym_LBRACE] = ACTIONS(489), + [anon_sym_interface] = ACTIONS(492), + [anon_sym_delegate] = ACTIONS(495), + [anon_sym_record] = ACTIONS(498), + [anon_sym_abstract] = ACTIONS(501), + [anon_sym_async] = ACTIONS(462), + [anon_sym_const] = ACTIONS(501), + [anon_sym_file] = ACTIONS(504), + [anon_sym_fixed] = ACTIONS(507), + [anon_sym_internal] = ACTIONS(501), + [anon_sym_new] = ACTIONS(510), + [anon_sym_override] = ACTIONS(501), + [anon_sym_partial] = ACTIONS(501), + [anon_sym_private] = ACTIONS(501), + [anon_sym_protected] = ACTIONS(501), + [anon_sym_public] = ACTIONS(501), + [anon_sym_readonly] = ACTIONS(501), + [anon_sym_required] = ACTIONS(501), + [anon_sym_sealed] = ACTIONS(501), + [anon_sym_virtual] = ACTIONS(501), + [anon_sym_volatile] = ACTIONS(501), + [anon_sym_where] = ACTIONS(447), + [anon_sym_notnull] = ACTIONS(447), + [anon_sym_unmanaged] = ACTIONS(447), + [anon_sym_checked] = ACTIONS(513), + [anon_sym_BANG] = ACTIONS(516), + [anon_sym_TILDE] = ACTIONS(516), + [anon_sym_PLUS_PLUS] = ACTIONS(516), + [anon_sym_DASH_DASH] = ACTIONS(516), + [anon_sym_true] = ACTIONS(519), + [anon_sym_false] = ACTIONS(519), + [anon_sym_PLUS] = ACTIONS(522), + [anon_sym_DASH] = ACTIONS(522), + [anon_sym_STAR] = ACTIONS(525), + [anon_sym_CARET] = ACTIONS(516), + [anon_sym_AMP] = ACTIONS(516), + [anon_sym_this] = ACTIONS(528), + [anon_sym_scoped] = ACTIONS(531), + [anon_sym_base] = ACTIONS(534), + [anon_sym_var] = ACTIONS(537), + [sym_predefined_type] = ACTIONS(540), + [anon_sym_break] = ACTIONS(543), + [anon_sym_unchecked] = ACTIONS(513), + [anon_sym_continue] = ACTIONS(546), + [anon_sym_do] = ACTIONS(549), + [anon_sym_while] = ACTIONS(552), + [anon_sym_for] = ACTIONS(555), + [anon_sym_lock] = ACTIONS(558), + [anon_sym_yield] = ACTIONS(561), + [anon_sym_switch] = ACTIONS(564), + [anon_sym_default] = ACTIONS(567), + [anon_sym_throw] = ACTIONS(570), + [anon_sym_try] = ACTIONS(573), + [anon_sym_when] = ACTIONS(447), + [anon_sym_await] = ACTIONS(576), + [anon_sym_foreach] = ACTIONS(579), + [anon_sym_goto] = ACTIONS(582), + [anon_sym_if] = ACTIONS(585), + [anon_sym_DOT_DOT] = ACTIONS(588), + [anon_sym_from] = ACTIONS(591), + [anon_sym_into] = ACTIONS(447), + [anon_sym_join] = ACTIONS(447), + [anon_sym_on] = ACTIONS(447), + [anon_sym_equals] = ACTIONS(447), + [anon_sym_let] = ACTIONS(447), + [anon_sym_orderby] = ACTIONS(447), + [anon_sym_ascending] = ACTIONS(447), + [anon_sym_descending] = ACTIONS(447), + [anon_sym_group] = ACTIONS(447), + [anon_sym_by] = ACTIONS(447), + [anon_sym_select] = ACTIONS(447), + [anon_sym_stackalloc] = ACTIONS(594), + [anon_sym_sizeof] = ACTIONS(597), + [anon_sym_typeof] = ACTIONS(600), + [anon_sym___makeref] = ACTIONS(603), + [anon_sym___reftype] = ACTIONS(606), + [anon_sym___refvalue] = ACTIONS(609), + [sym_null_literal] = ACTIONS(612), + [anon_sym_SQUOTE] = ACTIONS(615), + [sym_integer_literal] = ACTIONS(612), + [sym_real_literal] = ACTIONS(618), + [anon_sym_DQUOTE] = ACTIONS(621), + [sym_verbatim_string_literal] = ACTIONS(618), + [aux_sym_preproc_if_token1] = ACTIONS(624), + [aux_sym_preproc_if_token3] = ACTIONS(627), + [aux_sym_preproc_else_token1] = ACTIONS(627), + [aux_sym_preproc_elif_token1] = ACTIONS(627), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -30463,137 +30346,138 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(151), - [sym_interpolation_verbatim_start] = ACTIONS(153), - [sym_interpolation_raw_start] = ACTIONS(155), - [sym_raw_string_start] = ACTIONS(157), + [sym_interpolation_regular_start] = ACTIONS(629), + [sym_interpolation_verbatim_start] = ACTIONS(632), + [sym_interpolation_raw_start] = ACTIONS(635), + [sym_raw_string_start] = ACTIONS(638), }, [20] = { - [sym_extern_alias_directive] = STATE(1994), - [sym_using_directive] = STATE(1994), - [sym_global_attribute] = STATE(1994), - [sym_attribute_list] = STATE(2979), - [sym__attribute_list] = STATE(2990), - [sym_namespace_declaration] = STATE(1994), - [sym_file_scoped_namespace_declaration] = STATE(1994), - [sym_type_declaration] = STATE(1994), - [sym_class_declaration] = STATE(1982), - [sym__class_declaration_initializer] = STATE(7301), - [sym_struct_declaration] = STATE(1982), - [sym__struct_declaration_initializer] = STATE(7209), - [sym_enum_declaration] = STATE(1982), - [sym_interface_declaration] = STATE(1982), - [sym__interface_declaration_initializer] = STATE(7211), - [sym_delegate_declaration] = STATE(1982), - [sym__delegate_declaration_initializer] = STATE(6719), - [sym_record_declaration] = STATE(1982), - [sym__record_declaration_initializer] = STATE(6747), - [sym_modifier] = STATE(3130), - [sym_parameter_list] = STATE(7311), - [sym_block] = STATE(1968), - [sym_variable_declaration] = STATE(7525), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(5160), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2204), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5867), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_statement] = STATE(1994), - [sym_break_statement] = STATE(1968), - [sym_checked_statement] = STATE(1968), - [sym_continue_statement] = STATE(1968), - [sym_do_statement] = STATE(1968), - [sym_empty_statement] = STATE(1968), - [sym_expression_statement] = STATE(1968), - [sym_fixed_statement] = STATE(1968), - [sym_for_statement] = STATE(1968), - [sym_return_statement] = STATE(1968), - [sym_lock_statement] = STATE(1968), - [sym_yield_statement] = STATE(1968), - [sym_switch_statement] = STATE(1968), - [sym_throw_statement] = STATE(1968), - [sym_try_statement] = STATE(1968), - [sym_unsafe_statement] = STATE(1968), - [sym_using_statement] = STATE(1968), - [sym_foreach_statement] = STATE(1968), - [sym__foreach_statement_initializer] = STATE(91), - [sym_goto_statement] = STATE(1968), - [sym_labeled_statement] = STATE(1968), - [sym_if_statement] = STATE(1968), - [sym_while_statement] = STATE(1968), - [sym_local_declaration_statement] = STATE(1968), - [sym_local_function_statement] = STATE(1968), - [sym__local_function_declaration] = STATE(6298), - [sym_expression] = STATE(5672), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3461), - [sym__expression_statement_expression] = STATE(5158), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3080), - [sym_postfix_unary_expression] = STATE(3111), - [sym_prefix_unary_expression] = STATE(3111), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6154), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3080), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3111), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3080), - [sym_member_access_expression] = STATE(2484), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3111), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7530), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(3080), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3080), - [sym_typeof_expression] = STATE(3080), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2484), - [sym_literal] = STATE(3080), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2264), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_top_level] = STATE(2007), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(2979), + [sym_extern_alias_directive] = STATE(1991), + [sym_using_directive] = STATE(1991), + [sym_global_attribute] = STATE(1991), + [sym_attribute_list] = STATE(2925), + [sym__attribute_list] = STATE(2953), + [sym_namespace_declaration] = STATE(1991), + [sym_file_scoped_namespace_declaration] = STATE(1991), + [sym_type_declaration] = STATE(1991), + [sym_class_declaration] = STATE(1981), + [sym__class_declaration_initializer] = STATE(6630), + [sym_struct_declaration] = STATE(1981), + [sym__struct_declaration_initializer] = STATE(6631), + [sym_enum_declaration] = STATE(1981), + [sym__enum_declaration_initializer] = STATE(6968), + [sym_interface_declaration] = STATE(1981), + [sym__interface_declaration_initializer] = STATE(6633), + [sym_delegate_declaration] = STATE(1981), + [sym__delegate_declaration_initializer] = STATE(6634), + [sym_record_declaration] = STATE(1981), + [sym__record_declaration_initializer] = STATE(6635), + [sym_modifier] = STATE(3114), + [sym_parameter_list] = STATE(7531), + [sym_block] = STATE(1948), + [sym_variable_declaration] = STATE(7649), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(5152), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2196), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5805), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_statement] = STATE(1991), + [sym_break_statement] = STATE(1948), + [sym_checked_statement] = STATE(1948), + [sym_continue_statement] = STATE(1948), + [sym_do_statement] = STATE(1948), + [sym_empty_statement] = STATE(1948), + [sym_expression_statement] = STATE(1948), + [sym_fixed_statement] = STATE(1948), + [sym_for_statement] = STATE(1948), + [sym_return_statement] = STATE(1948), + [sym_lock_statement] = STATE(1948), + [sym_yield_statement] = STATE(1948), + [sym_switch_statement] = STATE(1948), + [sym_throw_statement] = STATE(1948), + [sym_try_statement] = STATE(1948), + [sym_unsafe_statement] = STATE(1948), + [sym_using_statement] = STATE(1948), + [sym_foreach_statement] = STATE(1948), + [sym__foreach_statement_initializer] = STATE(94), + [sym_goto_statement] = STATE(1948), + [sym_labeled_statement] = STATE(1948), + [sym_if_statement] = STATE(1948), + [sym_while_statement] = STATE(1948), + [sym_local_declaration_statement] = STATE(1948), + [sym_local_function_statement] = STATE(1948), + [sym__local_function_declaration] = STATE(6313), + [sym_expression] = STATE(5444), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3356), + [sym__expression_statement_expression] = STATE(5134), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3102), + [sym_postfix_unary_expression] = STATE(3079), + [sym_prefix_unary_expression] = STATE(3079), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6134), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3102), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3079), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3102), + [sym_member_access_expression] = STATE(2472), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3079), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7425), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(3102), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3102), + [sym_typeof_expression] = STATE(3102), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2472), + [sym_literal] = STATE(3102), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2259), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_top_level] = STATE(1998), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(3034), [sym_preproc_region] = STATE(20), [sym_preproc_endregion] = STATE(20), [sym_preproc_line] = STATE(20), @@ -30603,10 +30487,10 @@ 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(2212), - [aux_sym__class_declaration_initializer_repeat2] = STATE(2358), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), - [aux_sym_preproc_if_in_top_level_repeat1] = STATE(17), + [aux_sym__class_declaration_initializer_repeat1] = STATE(2201), + [aux_sym__class_declaration_initializer_repeat2] = STATE(2352), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), + [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), @@ -30622,8 +30506,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_class] = ACTIONS(49), [anon_sym_ref] = ACTIONS(51), [anon_sym_struct] = ACTIONS(53), - [anon_sym_enum] = ACTIONS(175), - [anon_sym_LBRACE] = ACTIONS(177), + [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), @@ -30631,7 +30515,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_async] = ACTIONS(39), [anon_sym_const] = ACTIONS(65), [anon_sym_file] = ACTIONS(67), - [anon_sym_fixed] = ACTIONS(179), + [anon_sym_fixed] = ACTIONS(177), [anon_sym_internal] = ACTIONS(65), [anon_sym_new] = ACTIONS(71), [anon_sym_override] = ACTIONS(65), @@ -30647,7 +30531,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(181), + [anon_sym_checked] = ACTIONS(179), [anon_sym_BANG] = ACTIONS(75), [anon_sym_TILDE] = ACTIONS(75), [anon_sym_PLUS_PLUS] = ACTIONS(75), @@ -30664,23 +30548,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(183), - [anon_sym_unchecked] = ACTIONS(181), - [anon_sym_continue] = ACTIONS(185), - [anon_sym_do] = ACTIONS(187), - [anon_sym_while] = ACTIONS(189), - [anon_sym_for] = ACTIONS(191), - [anon_sym_lock] = ACTIONS(193), - [anon_sym_yield] = ACTIONS(195), - [anon_sym_switch] = ACTIONS(197), + [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(199), - [anon_sym_try] = ACTIONS(201), + [anon_sym_throw] = ACTIONS(197), + [anon_sym_try] = ACTIONS(199), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(203), + [anon_sym_await] = ACTIONS(201), [anon_sym_foreach] = ACTIONS(117), - [anon_sym_goto] = ACTIONS(205), - [anon_sym_if] = ACTIONS(207), + [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), @@ -30706,8 +30590,8 @@ 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(209), - [aux_sym_preproc_if_token3] = ACTIONS(643), + [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), @@ -30724,131 +30608,132 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [21] = { - [sym_extern_alias_directive] = STATE(1994), - [sym_using_directive] = STATE(1994), - [sym_global_attribute] = STATE(1994), - [sym_attribute_list] = STATE(2979), - [sym__attribute_list] = STATE(2990), - [sym_namespace_declaration] = STATE(1994), - [sym_file_scoped_namespace_declaration] = STATE(1994), - [sym_type_declaration] = STATE(1994), - [sym_class_declaration] = STATE(1982), - [sym__class_declaration_initializer] = STATE(7301), - [sym_struct_declaration] = STATE(1982), - [sym__struct_declaration_initializer] = STATE(7209), - [sym_enum_declaration] = STATE(1982), - [sym_interface_declaration] = STATE(1982), - [sym__interface_declaration_initializer] = STATE(7211), - [sym_delegate_declaration] = STATE(1982), - [sym__delegate_declaration_initializer] = STATE(6719), - [sym_record_declaration] = STATE(1982), - [sym__record_declaration_initializer] = STATE(6747), - [sym_modifier] = STATE(3130), - [sym_parameter_list] = STATE(7311), - [sym_block] = STATE(1968), - [sym_variable_declaration] = STATE(7525), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(5160), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2204), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5867), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_statement] = STATE(1994), - [sym_break_statement] = STATE(1968), - [sym_checked_statement] = STATE(1968), - [sym_continue_statement] = STATE(1968), - [sym_do_statement] = STATE(1968), - [sym_empty_statement] = STATE(1968), - [sym_expression_statement] = STATE(1968), - [sym_fixed_statement] = STATE(1968), - [sym_for_statement] = STATE(1968), - [sym_return_statement] = STATE(1968), - [sym_lock_statement] = STATE(1968), - [sym_yield_statement] = STATE(1968), - [sym_switch_statement] = STATE(1968), - [sym_throw_statement] = STATE(1968), - [sym_try_statement] = STATE(1968), - [sym_unsafe_statement] = STATE(1968), - [sym_using_statement] = STATE(1968), - [sym_foreach_statement] = STATE(1968), - [sym__foreach_statement_initializer] = STATE(91), - [sym_goto_statement] = STATE(1968), - [sym_labeled_statement] = STATE(1968), - [sym_if_statement] = STATE(1968), - [sym_while_statement] = STATE(1968), - [sym_local_declaration_statement] = STATE(1968), - [sym_local_function_statement] = STATE(1968), - [sym__local_function_declaration] = STATE(6298), - [sym_expression] = STATE(5672), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3461), - [sym__expression_statement_expression] = STATE(5158), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3080), - [sym_postfix_unary_expression] = STATE(3111), - [sym_prefix_unary_expression] = STATE(3111), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6154), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3080), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3111), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3080), - [sym_member_access_expression] = STATE(2484), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3111), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7530), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(3080), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3080), - [sym_typeof_expression] = STATE(3080), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2484), - [sym_literal] = STATE(3080), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2264), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_top_level] = STATE(2007), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(2979), + [sym_extern_alias_directive] = STATE(1991), + [sym_using_directive] = STATE(1991), + [sym_global_attribute] = STATE(1991), + [sym_attribute_list] = STATE(3034), + [sym__attribute_list] = STATE(2953), + [sym_namespace_declaration] = STATE(1991), + [sym_file_scoped_namespace_declaration] = STATE(1991), + [sym_type_declaration] = STATE(1991), + [sym_class_declaration] = STATE(1981), + [sym__class_declaration_initializer] = STATE(6630), + [sym_struct_declaration] = STATE(1981), + [sym__struct_declaration_initializer] = STATE(6631), + [sym_enum_declaration] = STATE(1981), + [sym__enum_declaration_initializer] = STATE(6968), + [sym_interface_declaration] = STATE(1981), + [sym__interface_declaration_initializer] = STATE(6633), + [sym_delegate_declaration] = STATE(1981), + [sym__delegate_declaration_initializer] = STATE(6634), + [sym_record_declaration] = STATE(1981), + [sym__record_declaration_initializer] = STATE(6635), + [sym_modifier] = STATE(3114), + [sym_parameter_list] = STATE(7531), + [sym_block] = STATE(1948), + [sym_variable_declaration] = STATE(7649), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(5152), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2196), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5805), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_statement] = STATE(1991), + [sym_break_statement] = STATE(1948), + [sym_checked_statement] = STATE(1948), + [sym_continue_statement] = STATE(1948), + [sym_do_statement] = STATE(1948), + [sym_empty_statement] = STATE(1948), + [sym_expression_statement] = STATE(1948), + [sym_fixed_statement] = STATE(1948), + [sym_for_statement] = STATE(1948), + [sym_return_statement] = STATE(1948), + [sym_lock_statement] = STATE(1948), + [sym_yield_statement] = STATE(1948), + [sym_switch_statement] = STATE(1948), + [sym_throw_statement] = STATE(1948), + [sym_try_statement] = STATE(1948), + [sym_unsafe_statement] = STATE(1948), + [sym_using_statement] = STATE(1948), + [sym_foreach_statement] = STATE(1948), + [sym__foreach_statement_initializer] = STATE(94), + [sym_goto_statement] = STATE(1948), + [sym_labeled_statement] = STATE(1948), + [sym_if_statement] = STATE(1948), + [sym_while_statement] = STATE(1948), + [sym_local_declaration_statement] = STATE(1948), + [sym_local_function_statement] = STATE(1948), + [sym__local_function_declaration] = STATE(6313), + [sym_expression] = STATE(5660), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3356), + [sym__expression_statement_expression] = STATE(5134), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3102), + [sym_postfix_unary_expression] = STATE(3079), + [sym_prefix_unary_expression] = STATE(3079), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6134), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3102), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3079), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3102), + [sym_member_access_expression] = STATE(2472), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3079), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7425), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(3102), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3102), + [sym_typeof_expression] = STATE(3102), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2472), + [sym_literal] = STATE(3102), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2259), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_top_level] = STATE(1998), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(3034), [sym_preproc_region] = STATE(21), [sym_preproc_endregion] = STATE(21), [sym_preproc_line] = STATE(21), @@ -30858,10 +30743,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(21), [sym_preproc_define] = STATE(21), [sym_preproc_undef] = STATE(21), - [aux_sym__class_declaration_initializer_repeat1] = STATE(2212), - [aux_sym__class_declaration_initializer_repeat2] = STATE(2358), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), - [aux_sym_preproc_if_in_top_level_repeat1] = STATE(20), + [aux_sym__class_declaration_initializer_repeat1] = STATE(2201), + [aux_sym__class_declaration_initializer_repeat2] = STATE(2352), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), + [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), @@ -30877,8 +30762,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_class] = ACTIONS(49), [anon_sym_ref] = ACTIONS(51), [anon_sym_struct] = ACTIONS(53), - [anon_sym_enum] = ACTIONS(175), - [anon_sym_LBRACE] = ACTIONS(177), + [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), @@ -30886,7 +30771,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_async] = ACTIONS(39), [anon_sym_const] = ACTIONS(65), [anon_sym_file] = ACTIONS(67), - [anon_sym_fixed] = ACTIONS(179), + [anon_sym_fixed] = ACTIONS(177), [anon_sym_internal] = ACTIONS(65), [anon_sym_new] = ACTIONS(71), [anon_sym_override] = ACTIONS(65), @@ -30902,7 +30787,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(181), + [anon_sym_checked] = ACTIONS(179), [anon_sym_BANG] = ACTIONS(75), [anon_sym_TILDE] = ACTIONS(75), [anon_sym_PLUS_PLUS] = ACTIONS(75), @@ -30919,23 +30804,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(183), - [anon_sym_unchecked] = ACTIONS(181), - [anon_sym_continue] = ACTIONS(185), - [anon_sym_do] = ACTIONS(187), - [anon_sym_while] = ACTIONS(189), - [anon_sym_for] = ACTIONS(191), - [anon_sym_lock] = ACTIONS(193), - [anon_sym_yield] = ACTIONS(195), - [anon_sym_switch] = ACTIONS(197), + [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(199), - [anon_sym_try] = ACTIONS(201), + [anon_sym_throw] = ACTIONS(197), + [anon_sym_try] = ACTIONS(199), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(203), + [anon_sym_await] = ACTIONS(201), [anon_sym_foreach] = ACTIONS(117), - [anon_sym_goto] = ACTIONS(205), - [anon_sym_if] = ACTIONS(207), + [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), @@ -30961,8 +30846,8 @@ 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(209), - [aux_sym_preproc_if_token3] = ACTIONS(645), + [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), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -30979,131 +30864,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(1994), - [sym_using_directive] = STATE(1994), - [sym_global_attribute] = STATE(1994), - [sym_attribute_list] = STATE(2934), - [sym__attribute_list] = STATE(2990), - [sym_namespace_declaration] = STATE(1994), - [sym_file_scoped_namespace_declaration] = STATE(1994), - [sym_type_declaration] = STATE(1994), - [sym_class_declaration] = STATE(1982), - [sym__class_declaration_initializer] = STATE(7301), - [sym_struct_declaration] = STATE(1982), - [sym__struct_declaration_initializer] = STATE(7209), - [sym_enum_declaration] = STATE(1982), - [sym_interface_declaration] = STATE(1982), - [sym__interface_declaration_initializer] = STATE(7211), - [sym_delegate_declaration] = STATE(1982), - [sym__delegate_declaration_initializer] = STATE(6719), - [sym_record_declaration] = STATE(1982), - [sym__record_declaration_initializer] = STATE(6747), - [sym_modifier] = STATE(3130), - [sym_parameter_list] = STATE(7311), - [sym_block] = STATE(1968), - [sym_variable_declaration] = STATE(7525), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(5160), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2204), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5867), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_statement] = STATE(1994), - [sym_break_statement] = STATE(1968), - [sym_checked_statement] = STATE(1968), - [sym_continue_statement] = STATE(1968), - [sym_do_statement] = STATE(1968), - [sym_empty_statement] = STATE(1968), - [sym_expression_statement] = STATE(1968), - [sym_fixed_statement] = STATE(1968), - [sym_for_statement] = STATE(1968), - [sym_return_statement] = STATE(1968), - [sym_lock_statement] = STATE(1968), - [sym_yield_statement] = STATE(1968), - [sym_switch_statement] = STATE(1968), - [sym_throw_statement] = STATE(1968), - [sym_try_statement] = STATE(1968), - [sym_unsafe_statement] = STATE(1968), - [sym_using_statement] = STATE(1968), - [sym_foreach_statement] = STATE(1968), - [sym__foreach_statement_initializer] = STATE(91), - [sym_goto_statement] = STATE(1968), - [sym_labeled_statement] = STATE(1968), - [sym_if_statement] = STATE(1968), - [sym_while_statement] = STATE(1968), - [sym_local_declaration_statement] = STATE(1968), - [sym_local_function_statement] = STATE(1968), - [sym__local_function_declaration] = STATE(6298), - [sym_expression] = STATE(5629), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3461), - [sym__expression_statement_expression] = STATE(5158), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3080), - [sym_postfix_unary_expression] = STATE(3111), - [sym_prefix_unary_expression] = STATE(3111), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6154), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3080), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3111), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3080), - [sym_member_access_expression] = STATE(2484), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3111), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7530), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(3080), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3080), - [sym_typeof_expression] = STATE(3080), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2484), - [sym_literal] = STATE(3080), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2264), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_top_level] = STATE(2007), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(2979), + [sym_extern_alias_directive] = STATE(1991), + [sym_using_directive] = STATE(1991), + [sym_global_attribute] = STATE(1991), + [sym_attribute_list] = STATE(3034), + [sym__attribute_list] = STATE(2953), + [sym_namespace_declaration] = STATE(1991), + [sym_file_scoped_namespace_declaration] = STATE(1991), + [sym_type_declaration] = STATE(1991), + [sym_class_declaration] = STATE(1981), + [sym__class_declaration_initializer] = STATE(6630), + [sym_struct_declaration] = STATE(1981), + [sym__struct_declaration_initializer] = STATE(6631), + [sym_enum_declaration] = STATE(1981), + [sym__enum_declaration_initializer] = STATE(6968), + [sym_interface_declaration] = STATE(1981), + [sym__interface_declaration_initializer] = STATE(6633), + [sym_delegate_declaration] = STATE(1981), + [sym__delegate_declaration_initializer] = STATE(6634), + [sym_record_declaration] = STATE(1981), + [sym__record_declaration_initializer] = STATE(6635), + [sym_modifier] = STATE(3114), + [sym_parameter_list] = STATE(7531), + [sym_block] = STATE(1948), + [sym_variable_declaration] = STATE(7649), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(5152), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2196), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5805), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_statement] = STATE(1991), + [sym_break_statement] = STATE(1948), + [sym_checked_statement] = STATE(1948), + [sym_continue_statement] = STATE(1948), + [sym_do_statement] = STATE(1948), + [sym_empty_statement] = STATE(1948), + [sym_expression_statement] = STATE(1948), + [sym_fixed_statement] = STATE(1948), + [sym_for_statement] = STATE(1948), + [sym_return_statement] = STATE(1948), + [sym_lock_statement] = STATE(1948), + [sym_yield_statement] = STATE(1948), + [sym_switch_statement] = STATE(1948), + [sym_throw_statement] = STATE(1948), + [sym_try_statement] = STATE(1948), + [sym_unsafe_statement] = STATE(1948), + [sym_using_statement] = STATE(1948), + [sym_foreach_statement] = STATE(1948), + [sym__foreach_statement_initializer] = STATE(94), + [sym_goto_statement] = STATE(1948), + [sym_labeled_statement] = STATE(1948), + [sym_if_statement] = STATE(1948), + [sym_while_statement] = STATE(1948), + [sym_local_declaration_statement] = STATE(1948), + [sym_local_function_statement] = STATE(1948), + [sym__local_function_declaration] = STATE(6313), + [sym_expression] = STATE(5660), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3356), + [sym__expression_statement_expression] = STATE(5134), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3102), + [sym_postfix_unary_expression] = STATE(3079), + [sym_prefix_unary_expression] = STATE(3079), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6134), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3102), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3079), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3102), + [sym_member_access_expression] = STATE(2472), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3079), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7425), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(3102), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3102), + [sym_typeof_expression] = STATE(3102), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2472), + [sym_literal] = STATE(3102), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2259), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_top_level] = STATE(1998), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(3034), [sym_preproc_region] = STATE(22), [sym_preproc_endregion] = STATE(22), [sym_preproc_line] = STATE(22), @@ -31113,10 +30999,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(2212), - [aux_sym__class_declaration_initializer_repeat2] = STATE(2358), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), - [aux_sym_preproc_if_in_top_level_repeat1] = STATE(20), + [aux_sym__class_declaration_initializer_repeat1] = STATE(2201), + [aux_sym__class_declaration_initializer_repeat2] = STATE(2352), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), + [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), @@ -31132,8 +31018,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_class] = ACTIONS(49), [anon_sym_ref] = ACTIONS(51), [anon_sym_struct] = ACTIONS(53), - [anon_sym_enum] = ACTIONS(175), - [anon_sym_LBRACE] = ACTIONS(177), + [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), @@ -31141,7 +31027,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_async] = ACTIONS(39), [anon_sym_const] = ACTIONS(65), [anon_sym_file] = ACTIONS(67), - [anon_sym_fixed] = ACTIONS(179), + [anon_sym_fixed] = ACTIONS(177), [anon_sym_internal] = ACTIONS(65), [anon_sym_new] = ACTIONS(71), [anon_sym_override] = ACTIONS(65), @@ -31157,7 +31043,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(181), + [anon_sym_checked] = ACTIONS(179), [anon_sym_BANG] = ACTIONS(75), [anon_sym_TILDE] = ACTIONS(75), [anon_sym_PLUS_PLUS] = ACTIONS(75), @@ -31174,23 +31060,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(183), - [anon_sym_unchecked] = ACTIONS(181), - [anon_sym_continue] = ACTIONS(185), - [anon_sym_do] = ACTIONS(187), - [anon_sym_while] = ACTIONS(189), - [anon_sym_for] = ACTIONS(191), - [anon_sym_lock] = ACTIONS(193), - [anon_sym_yield] = ACTIONS(195), - [anon_sym_switch] = ACTIONS(197), + [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(199), - [anon_sym_try] = ACTIONS(201), + [anon_sym_throw] = ACTIONS(197), + [anon_sym_try] = ACTIONS(199), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(203), + [anon_sym_await] = ACTIONS(201), [anon_sym_foreach] = ACTIONS(117), - [anon_sym_goto] = ACTIONS(205), - [anon_sym_if] = ACTIONS(207), + [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), @@ -31216,8 +31102,8 @@ 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(209), - [aux_sym_preproc_if_token3] = ACTIONS(645), + [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), @@ -31234,114 +31120,114 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [23] = { - [sym_attribute_list] = STATE(3645), - [sym__attribute_list] = STATE(3580), - [sym_modifier] = STATE(3878), - [sym_parameter_list] = STATE(7311), - [sym_block] = STATE(2120), - [sym_variable_declaration] = STATE(7689), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(5160), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2204), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5867), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_statement] = STATE(2141), - [sym_break_statement] = STATE(2120), - [sym_checked_statement] = STATE(2120), - [sym_continue_statement] = STATE(2120), - [sym_do_statement] = STATE(2120), - [sym_empty_statement] = STATE(2120), - [sym_expression_statement] = STATE(2120), - [sym_fixed_statement] = STATE(2120), - [sym_for_statement] = STATE(2120), - [sym_return_statement] = STATE(2120), - [sym_lock_statement] = STATE(2120), - [sym_yield_statement] = STATE(2120), - [sym_switch_statement] = STATE(2120), - [sym_throw_statement] = STATE(2120), - [sym_try_statement] = STATE(2120), - [sym_unsafe_statement] = STATE(2120), - [sym_using_statement] = STATE(2120), - [sym_foreach_statement] = STATE(2120), + [sym_attribute_list] = STATE(3612), + [sym__attribute_list] = STATE(3570), + [sym_modifier] = STATE(3845), + [sym_parameter_list] = STATE(7531), + [sym_block] = STATE(2093), + [sym_variable_declaration] = STATE(7607), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(5873), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2238), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5805), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_statement] = STATE(2134), + [sym_break_statement] = STATE(2093), + [sym_checked_statement] = STATE(2093), + [sym_continue_statement] = STATE(2093), + [sym_do_statement] = STATE(2093), + [sym_empty_statement] = STATE(2093), + [sym_expression_statement] = STATE(2093), + [sym_fixed_statement] = STATE(2093), + [sym_for_statement] = STATE(2093), + [sym_return_statement] = STATE(2093), + [sym_lock_statement] = STATE(2093), + [sym_yield_statement] = STATE(2093), + [sym_switch_statement] = STATE(2093), + [sym_throw_statement] = STATE(2093), + [sym_try_statement] = STATE(2093), + [sym_unsafe_statement] = STATE(2093), + [sym_using_statement] = STATE(2093), + [sym_foreach_statement] = STATE(2093), [sym__foreach_statement_initializer] = STATE(93), - [sym_goto_statement] = STATE(2120), - [sym_labeled_statement] = STATE(2120), - [sym_if_statement] = STATE(2120), - [sym_while_statement] = STATE(2120), - [sym_local_declaration_statement] = STATE(2120), - [sym_local_function_statement] = STATE(2120), - [sym__local_function_declaration] = STATE(6322), - [sym_expression] = STATE(5672), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3461), - [sym__expression_statement_expression] = STATE(5635), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3080), - [sym_postfix_unary_expression] = STATE(3111), - [sym_prefix_unary_expression] = STATE(3111), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6154), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3080), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3111), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3080), - [sym_member_access_expression] = STATE(2484), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3111), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7530), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(3080), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3080), - [sym_typeof_expression] = STATE(3080), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2484), - [sym_literal] = STATE(3080), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2282), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_top_level] = STATE(2120), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(3645), + [sym_goto_statement] = STATE(2093), + [sym_labeled_statement] = STATE(2093), + [sym_if_statement] = STATE(2093), + [sym_while_statement] = STATE(2093), + [sym_local_declaration_statement] = STATE(2093), + [sym_local_function_statement] = STATE(2093), + [sym__local_function_declaration] = STATE(6310), + [sym_expression] = STATE(5021), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3526), + [sym__expression_statement_expression] = STATE(5554), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3102), + [sym_postfix_unary_expression] = STATE(3079), + [sym_prefix_unary_expression] = STATE(3079), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6134), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3102), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3079), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3102), + [sym_member_access_expression] = STATE(2472), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3079), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7309), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(3102), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3102), + [sym_typeof_expression] = STATE(3102), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2472), + [sym_literal] = STATE(3102), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2269), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_top_level] = STATE(2093), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(3612), [sym_preproc_region] = STATE(23), [sym_preproc_endregion] = STATE(23), [sym_preproc_line] = STATE(23), @@ -31351,81 +31237,81 @@ 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(2286), - [aux_sym__class_declaration_initializer_repeat2] = STATE(2529), - [aux_sym_block_repeat1] = STATE(26), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), - [sym__identifier_token] = ACTIONS(25), - [anon_sym_extern] = ACTIONS(647), - [anon_sym_alias] = ACTIONS(29), - [anon_sym_SEMI] = ACTIONS(649), - [anon_sym_global] = ACTIONS(29), - [anon_sym_using] = ACTIONS(651), - [anon_sym_unsafe] = ACTIONS(653), - [anon_sym_static] = ACTIONS(655), - [anon_sym_LBRACK] = ACTIONS(657), - [anon_sym_LPAREN] = ACTIONS(43), - [anon_sym_return] = ACTIONS(659), - [anon_sym_ref] = ACTIONS(661), - [anon_sym_LBRACE] = ACTIONS(663), - [anon_sym_RBRACE] = ACTIONS(665), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_abstract] = ACTIONS(647), - [anon_sym_async] = ACTIONS(655), - [anon_sym_const] = ACTIONS(647), - [anon_sym_file] = ACTIONS(669), - [anon_sym_fixed] = ACTIONS(671), - [anon_sym_internal] = ACTIONS(647), - [anon_sym_new] = ACTIONS(673), - [anon_sym_override] = ACTIONS(647), - [anon_sym_partial] = ACTIONS(647), - [anon_sym_private] = ACTIONS(647), - [anon_sym_protected] = ACTIONS(647), - [anon_sym_public] = ACTIONS(647), - [anon_sym_readonly] = ACTIONS(647), - [anon_sym_required] = ACTIONS(647), - [anon_sym_sealed] = ACTIONS(647), - [anon_sym_virtual] = ACTIONS(647), - [anon_sym_volatile] = ACTIONS(647), - [anon_sym_where] = ACTIONS(29), - [anon_sym_notnull] = ACTIONS(29), - [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(675), - [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), + [aux_sym__class_declaration_initializer_repeat1] = STATE(2277), + [aux_sym__class_declaration_initializer_repeat2] = STATE(2540), + [aux_sym_block_repeat1] = STATE(52), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), + [sym__identifier_token] = ACTIONS(25), + [anon_sym_extern] = ACTIONS(645), + [anon_sym_alias] = ACTIONS(29), + [anon_sym_SEMI] = ACTIONS(647), + [anon_sym_global] = ACTIONS(29), + [anon_sym_using] = ACTIONS(649), + [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_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_internal] = ACTIONS(645), + [anon_sym_new] = ACTIONS(675), + [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(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_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_scoped] = ACTIONS(85), [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(91), - [anon_sym_break] = ACTIONS(677), - [anon_sym_unchecked] = ACTIONS(675), - [anon_sym_continue] = ACTIONS(679), - [anon_sym_do] = ACTIONS(681), - [anon_sym_while] = ACTIONS(683), - [anon_sym_for] = ACTIONS(685), - [anon_sym_lock] = ACTIONS(687), - [anon_sym_yield] = ACTIONS(689), - [anon_sym_switch] = ACTIONS(691), - [anon_sym_case] = ACTIONS(693), - [anon_sym_default] = ACTIONS(693), - [anon_sym_throw] = ACTIONS(695), - [anon_sym_try] = ACTIONS(697), + [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_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(699), + [anon_sym_await] = ACTIONS(705), [anon_sym_foreach] = ACTIONS(117), - [anon_sym_goto] = ACTIONS(701), - [anon_sym_if] = ACTIONS(703), - [anon_sym_DOT_DOT] = ACTIONS(123), + [anon_sym_goto] = ACTIONS(707), + [anon_sym_if] = ACTIONS(709), + [anon_sym_DOT_DOT] = ACTIONS(711), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -31450,7 +31336,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(705), + [aux_sym_preproc_if_token1] = ACTIONS(713), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -31467,114 +31353,114 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [24] = { - [sym_attribute_list] = STATE(3645), - [sym__attribute_list] = STATE(3580), - [sym_modifier] = STATE(3878), - [sym_parameter_list] = STATE(7311), - [sym_block] = STATE(2120), - [sym_variable_declaration] = STATE(7689), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(5160), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2204), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5867), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_statement] = STATE(2141), - [sym_break_statement] = STATE(2120), - [sym_checked_statement] = STATE(2120), - [sym_continue_statement] = STATE(2120), - [sym_do_statement] = STATE(2120), - [sym_empty_statement] = STATE(2120), - [sym_expression_statement] = STATE(2120), - [sym_fixed_statement] = STATE(2120), - [sym_for_statement] = STATE(2120), - [sym_return_statement] = STATE(2120), - [sym_lock_statement] = STATE(2120), - [sym_yield_statement] = STATE(2120), - [sym_switch_statement] = STATE(2120), - [sym_throw_statement] = STATE(2120), - [sym_try_statement] = STATE(2120), - [sym_unsafe_statement] = STATE(2120), - [sym_using_statement] = STATE(2120), - [sym_foreach_statement] = STATE(2120), + [sym_attribute_list] = STATE(3612), + [sym__attribute_list] = STATE(3570), + [sym_modifier] = STATE(3845), + [sym_parameter_list] = STATE(7531), + [sym_block] = STATE(2093), + [sym_variable_declaration] = STATE(7607), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(5152), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2196), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5805), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_statement] = STATE(2134), + [sym_break_statement] = STATE(2093), + [sym_checked_statement] = STATE(2093), + [sym_continue_statement] = STATE(2093), + [sym_do_statement] = STATE(2093), + [sym_empty_statement] = STATE(2093), + [sym_expression_statement] = STATE(2093), + [sym_fixed_statement] = STATE(2093), + [sym_for_statement] = STATE(2093), + [sym_return_statement] = STATE(2093), + [sym_lock_statement] = STATE(2093), + [sym_yield_statement] = STATE(2093), + [sym_switch_statement] = STATE(2093), + [sym_throw_statement] = STATE(2093), + [sym_try_statement] = STATE(2093), + [sym_unsafe_statement] = STATE(2093), + [sym_using_statement] = STATE(2093), + [sym_foreach_statement] = STATE(2093), [sym__foreach_statement_initializer] = STATE(93), - [sym_goto_statement] = STATE(2120), - [sym_labeled_statement] = STATE(2120), - [sym_if_statement] = STATE(2120), - [sym_while_statement] = STATE(2120), - [sym_local_declaration_statement] = STATE(2120), - [sym_local_function_statement] = STATE(2120), - [sym__local_function_declaration] = STATE(6322), - [sym_expression] = STATE(5672), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3461), - [sym__expression_statement_expression] = STATE(5635), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3080), - [sym_postfix_unary_expression] = STATE(3111), - [sym_prefix_unary_expression] = STATE(3111), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6154), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3080), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3111), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3080), - [sym_member_access_expression] = STATE(2484), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3111), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7530), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(3080), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3080), - [sym_typeof_expression] = STATE(3080), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2484), - [sym_literal] = STATE(3080), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2282), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_top_level] = STATE(2120), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(3645), + [sym_goto_statement] = STATE(2093), + [sym_labeled_statement] = STATE(2093), + [sym_if_statement] = STATE(2093), + [sym_while_statement] = STATE(2093), + [sym_local_declaration_statement] = STATE(2093), + [sym_local_function_statement] = STATE(2093), + [sym__local_function_declaration] = STATE(6310), + [sym_expression] = STATE(5660), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3356), + [sym__expression_statement_expression] = STATE(5554), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3102), + [sym_postfix_unary_expression] = STATE(3079), + [sym_prefix_unary_expression] = STATE(3079), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6134), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3102), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3079), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3102), + [sym_member_access_expression] = STATE(2472), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3079), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7425), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(3102), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3102), + [sym_typeof_expression] = STATE(3102), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2472), + [sym_literal] = STATE(3102), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2269), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_top_level] = STATE(2093), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(3612), [sym_preproc_region] = STATE(24), [sym_preproc_endregion] = STATE(24), [sym_preproc_line] = STATE(24), @@ -31584,46 +31470,46 @@ 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(2286), - [aux_sym__class_declaration_initializer_repeat2] = STATE(2529), - [aux_sym_block_repeat1] = STATE(27), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [aux_sym__class_declaration_initializer_repeat1] = STATE(2277), + [aux_sym__class_declaration_initializer_repeat2] = STATE(2540), + [aux_sym_block_repeat1] = STATE(35), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), - [anon_sym_extern] = ACTIONS(647), + [anon_sym_extern] = ACTIONS(645), [anon_sym_alias] = ACTIONS(29), - [anon_sym_SEMI] = ACTIONS(649), + [anon_sym_SEMI] = ACTIONS(647), [anon_sym_global] = ACTIONS(29), - [anon_sym_using] = ACTIONS(651), - [anon_sym_unsafe] = ACTIONS(653), - [anon_sym_static] = ACTIONS(655), - [anon_sym_LBRACK] = ACTIONS(657), + [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(659), - [anon_sym_ref] = ACTIONS(661), - [anon_sym_LBRACE] = ACTIONS(663), - [anon_sym_RBRACE] = ACTIONS(665), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_abstract] = ACTIONS(647), - [anon_sym_async] = ACTIONS(655), - [anon_sym_const] = ACTIONS(647), - [anon_sym_file] = ACTIONS(669), - [anon_sym_fixed] = ACTIONS(671), - [anon_sym_internal] = ACTIONS(647), - [anon_sym_new] = ACTIONS(673), - [anon_sym_override] = ACTIONS(647), - [anon_sym_partial] = ACTIONS(647), - [anon_sym_private] = ACTIONS(647), - [anon_sym_protected] = ACTIONS(647), - [anon_sym_public] = ACTIONS(647), - [anon_sym_readonly] = ACTIONS(647), - [anon_sym_required] = ACTIONS(647), - [anon_sym_sealed] = ACTIONS(647), - [anon_sym_virtual] = ACTIONS(647), - [anon_sym_volatile] = ACTIONS(647), - [anon_sym_where] = ACTIONS(29), - [anon_sym_notnull] = ACTIONS(29), - [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(675), + [anon_sym_return] = ACTIONS(661), + [anon_sym_ref] = ACTIONS(715), + [anon_sym_LBRACE] = ACTIONS(665), + [anon_sym_RBRACE] = ACTIONS(717), + [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(673), + [anon_sym_internal] = ACTIONS(645), + [anon_sym_new] = ACTIONS(675), + [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(677), [anon_sym_BANG] = ACTIONS(75), [anon_sym_TILDE] = ACTIONS(75), [anon_sym_PLUS_PLUS] = ACTIONS(75), @@ -31640,24 +31526,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(677), - [anon_sym_unchecked] = ACTIONS(675), - [anon_sym_continue] = ACTIONS(679), - [anon_sym_do] = ACTIONS(681), - [anon_sym_while] = ACTIONS(683), - [anon_sym_for] = ACTIONS(685), - [anon_sym_lock] = ACTIONS(687), - [anon_sym_yield] = ACTIONS(689), - [anon_sym_switch] = ACTIONS(691), - [anon_sym_case] = ACTIONS(693), - [anon_sym_default] = ACTIONS(693), - [anon_sym_throw] = ACTIONS(695), - [anon_sym_try] = ACTIONS(697), + [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(719), + [anon_sym_default] = ACTIONS(719), + [anon_sym_throw] = ACTIONS(721), + [anon_sym_try] = ACTIONS(703), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(699), + [anon_sym_await] = ACTIONS(723), [anon_sym_foreach] = ACTIONS(117), - [anon_sym_goto] = ACTIONS(701), - [anon_sym_if] = ACTIONS(703), + [anon_sym_goto] = ACTIONS(707), + [anon_sym_if] = ACTIONS(709), [anon_sym_DOT_DOT] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), @@ -31683,7 +31569,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(705), + [aux_sym_preproc_if_token1] = ACTIONS(713), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -31700,114 +31586,114 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [25] = { - [sym_attribute_list] = STATE(3645), - [sym__attribute_list] = STATE(3580), - [sym_modifier] = STATE(3878), - [sym_parameter_list] = STATE(7311), - [sym_block] = STATE(2120), - [sym_variable_declaration] = STATE(7689), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(5160), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2204), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5867), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_statement] = STATE(2141), - [sym_break_statement] = STATE(2120), - [sym_checked_statement] = STATE(2120), - [sym_continue_statement] = STATE(2120), - [sym_do_statement] = STATE(2120), - [sym_empty_statement] = STATE(2120), - [sym_expression_statement] = STATE(2120), - [sym_fixed_statement] = STATE(2120), - [sym_for_statement] = STATE(2120), - [sym_return_statement] = STATE(2120), - [sym_lock_statement] = STATE(2120), - [sym_yield_statement] = STATE(2120), - [sym_switch_statement] = STATE(2120), - [sym_throw_statement] = STATE(2120), - [sym_try_statement] = STATE(2120), - [sym_unsafe_statement] = STATE(2120), - [sym_using_statement] = STATE(2120), - [sym_foreach_statement] = STATE(2120), + [sym_attribute_list] = STATE(3612), + [sym__attribute_list] = STATE(3570), + [sym_modifier] = STATE(3845), + [sym_parameter_list] = STATE(7531), + [sym_block] = STATE(2093), + [sym_variable_declaration] = STATE(7607), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(5873), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2238), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5805), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_statement] = STATE(2134), + [sym_break_statement] = STATE(2093), + [sym_checked_statement] = STATE(2093), + [sym_continue_statement] = STATE(2093), + [sym_do_statement] = STATE(2093), + [sym_empty_statement] = STATE(2093), + [sym_expression_statement] = STATE(2093), + [sym_fixed_statement] = STATE(2093), + [sym_for_statement] = STATE(2093), + [sym_return_statement] = STATE(2093), + [sym_lock_statement] = STATE(2093), + [sym_yield_statement] = STATE(2093), + [sym_switch_statement] = STATE(2093), + [sym_throw_statement] = STATE(2093), + [sym_try_statement] = STATE(2093), + [sym_unsafe_statement] = STATE(2093), + [sym_using_statement] = STATE(2093), + [sym_foreach_statement] = STATE(2093), [sym__foreach_statement_initializer] = STATE(93), - [sym_goto_statement] = STATE(2120), - [sym_labeled_statement] = STATE(2120), - [sym_if_statement] = STATE(2120), - [sym_while_statement] = STATE(2120), - [sym_local_declaration_statement] = STATE(2120), - [sym_local_function_statement] = STATE(2120), - [sym__local_function_declaration] = STATE(6322), - [sym_expression] = STATE(5672), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3461), - [sym__expression_statement_expression] = STATE(5635), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3080), - [sym_postfix_unary_expression] = STATE(3111), - [sym_prefix_unary_expression] = STATE(3111), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6154), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3080), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3111), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3080), - [sym_member_access_expression] = STATE(2484), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3111), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7530), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(3080), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3080), - [sym_typeof_expression] = STATE(3080), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2484), - [sym_literal] = STATE(3080), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2282), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_top_level] = STATE(2120), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(3645), + [sym_goto_statement] = STATE(2093), + [sym_labeled_statement] = STATE(2093), + [sym_if_statement] = STATE(2093), + [sym_while_statement] = STATE(2093), + [sym_local_declaration_statement] = STATE(2093), + [sym_local_function_statement] = STATE(2093), + [sym__local_function_declaration] = STATE(6310), + [sym_expression] = STATE(4871), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3526), + [sym__expression_statement_expression] = STATE(5554), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3102), + [sym_postfix_unary_expression] = STATE(3079), + [sym_prefix_unary_expression] = STATE(3079), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6134), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3102), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3079), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3102), + [sym_member_access_expression] = STATE(2472), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3079), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7309), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(3102), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3102), + [sym_typeof_expression] = STATE(3102), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2472), + [sym_literal] = STATE(3102), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2269), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_top_level] = STATE(2093), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(3612), [sym_preproc_region] = STATE(25), [sym_preproc_endregion] = STATE(25), [sym_preproc_line] = STATE(25), @@ -31817,81 +31703,81 @@ 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(2286), - [aux_sym__class_declaration_initializer_repeat2] = STATE(2529), - [aux_sym_block_repeat1] = STATE(28), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), - [sym__identifier_token] = ACTIONS(25), - [anon_sym_extern] = ACTIONS(647), - [anon_sym_alias] = ACTIONS(29), - [anon_sym_SEMI] = ACTIONS(649), - [anon_sym_global] = ACTIONS(29), - [anon_sym_using] = ACTIONS(651), - [anon_sym_unsafe] = ACTIONS(653), - [anon_sym_static] = ACTIONS(655), - [anon_sym_LBRACK] = ACTIONS(657), - [anon_sym_LPAREN] = ACTIONS(43), - [anon_sym_return] = ACTIONS(659), - [anon_sym_ref] = ACTIONS(661), - [anon_sym_LBRACE] = ACTIONS(663), - [anon_sym_RBRACE] = ACTIONS(707), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_abstract] = ACTIONS(647), - [anon_sym_async] = ACTIONS(655), - [anon_sym_const] = ACTIONS(647), - [anon_sym_file] = ACTIONS(669), - [anon_sym_fixed] = ACTIONS(671), - [anon_sym_internal] = ACTIONS(647), - [anon_sym_new] = ACTIONS(673), - [anon_sym_override] = ACTIONS(647), - [anon_sym_partial] = ACTIONS(647), - [anon_sym_private] = ACTIONS(647), - [anon_sym_protected] = ACTIONS(647), - [anon_sym_public] = ACTIONS(647), - [anon_sym_readonly] = ACTIONS(647), - [anon_sym_required] = ACTIONS(647), - [anon_sym_sealed] = ACTIONS(647), - [anon_sym_virtual] = ACTIONS(647), - [anon_sym_volatile] = ACTIONS(647), - [anon_sym_where] = ACTIONS(29), - [anon_sym_notnull] = ACTIONS(29), - [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(675), - [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), + [aux_sym__class_declaration_initializer_repeat1] = STATE(2277), + [aux_sym__class_declaration_initializer_repeat2] = STATE(2540), + [aux_sym_block_repeat1] = STATE(46), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), + [sym__identifier_token] = ACTIONS(25), + [anon_sym_extern] = ACTIONS(645), + [anon_sym_alias] = ACTIONS(29), + [anon_sym_SEMI] = ACTIONS(647), + [anon_sym_global] = ACTIONS(29), + [anon_sym_using] = ACTIONS(649), + [anon_sym_unsafe] = ACTIONS(651), + [anon_sym_static] = ACTIONS(653), + [anon_sym_LBRACK] = ACTIONS(655), + [anon_sym_COMMA] = ACTIONS(725), + [anon_sym_LPAREN] = ACTIONS(659), + [anon_sym_return] = ACTIONS(661), + [anon_sym_ref] = ACTIONS(663), + [anon_sym_LBRACE] = ACTIONS(665), + [anon_sym_RBRACE] = ACTIONS(727), + [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(673), + [anon_sym_internal] = ACTIONS(645), + [anon_sym_new] = ACTIONS(675), + [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(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_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_scoped] = ACTIONS(85), [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(91), - [anon_sym_break] = ACTIONS(677), - [anon_sym_unchecked] = ACTIONS(675), - [anon_sym_continue] = ACTIONS(679), - [anon_sym_do] = ACTIONS(681), - [anon_sym_while] = ACTIONS(683), - [anon_sym_for] = ACTIONS(685), - [anon_sym_lock] = ACTIONS(687), - [anon_sym_yield] = ACTIONS(689), - [anon_sym_switch] = ACTIONS(691), - [anon_sym_case] = ACTIONS(709), - [anon_sym_default] = ACTIONS(709), - [anon_sym_throw] = ACTIONS(695), - [anon_sym_try] = ACTIONS(697), + [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_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(699), + [anon_sym_await] = ACTIONS(705), [anon_sym_foreach] = ACTIONS(117), - [anon_sym_goto] = ACTIONS(701), - [anon_sym_if] = ACTIONS(703), - [anon_sym_DOT_DOT] = ACTIONS(123), + [anon_sym_goto] = ACTIONS(707), + [anon_sym_if] = ACTIONS(709), + [anon_sym_DOT_DOT] = ACTIONS(711), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -31916,7 +31802,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(705), + [aux_sym_preproc_if_token1] = ACTIONS(713), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -31933,114 +31819,114 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [26] = { - [sym_attribute_list] = STATE(3645), - [sym__attribute_list] = STATE(3580), - [sym_modifier] = STATE(3878), - [sym_parameter_list] = STATE(7311), - [sym_block] = STATE(2120), - [sym_variable_declaration] = STATE(7689), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(5160), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2204), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5867), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_statement] = STATE(2141), - [sym_break_statement] = STATE(2120), - [sym_checked_statement] = STATE(2120), - [sym_continue_statement] = STATE(2120), - [sym_do_statement] = STATE(2120), - [sym_empty_statement] = STATE(2120), - [sym_expression_statement] = STATE(2120), - [sym_fixed_statement] = STATE(2120), - [sym_for_statement] = STATE(2120), - [sym_return_statement] = STATE(2120), - [sym_lock_statement] = STATE(2120), - [sym_yield_statement] = STATE(2120), - [sym_switch_statement] = STATE(2120), - [sym_throw_statement] = STATE(2120), - [sym_try_statement] = STATE(2120), - [sym_unsafe_statement] = STATE(2120), - [sym_using_statement] = STATE(2120), - [sym_foreach_statement] = STATE(2120), + [sym_attribute_list] = STATE(3612), + [sym__attribute_list] = STATE(3570), + [sym_modifier] = STATE(3845), + [sym_parameter_list] = STATE(7531), + [sym_block] = STATE(2093), + [sym_variable_declaration] = STATE(7607), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(5152), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2196), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5805), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_statement] = STATE(2134), + [sym_break_statement] = STATE(2093), + [sym_checked_statement] = STATE(2093), + [sym_continue_statement] = STATE(2093), + [sym_do_statement] = STATE(2093), + [sym_empty_statement] = STATE(2093), + [sym_expression_statement] = STATE(2093), + [sym_fixed_statement] = STATE(2093), + [sym_for_statement] = STATE(2093), + [sym_return_statement] = STATE(2093), + [sym_lock_statement] = STATE(2093), + [sym_yield_statement] = STATE(2093), + [sym_switch_statement] = STATE(2093), + [sym_throw_statement] = STATE(2093), + [sym_try_statement] = STATE(2093), + [sym_unsafe_statement] = STATE(2093), + [sym_using_statement] = STATE(2093), + [sym_foreach_statement] = STATE(2093), [sym__foreach_statement_initializer] = STATE(93), - [sym_goto_statement] = STATE(2120), - [sym_labeled_statement] = STATE(2120), - [sym_if_statement] = STATE(2120), - [sym_while_statement] = STATE(2120), - [sym_local_declaration_statement] = STATE(2120), - [sym_local_function_statement] = STATE(2120), - [sym__local_function_declaration] = STATE(6322), - [sym_expression] = STATE(5672), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3461), - [sym__expression_statement_expression] = STATE(5635), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3080), - [sym_postfix_unary_expression] = STATE(3111), - [sym_prefix_unary_expression] = STATE(3111), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6154), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3080), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3111), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3080), - [sym_member_access_expression] = STATE(2484), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3111), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7530), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(3080), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3080), - [sym_typeof_expression] = STATE(3080), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2484), - [sym_literal] = STATE(3080), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2282), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_top_level] = STATE(2120), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(3645), + [sym_goto_statement] = STATE(2093), + [sym_labeled_statement] = STATE(2093), + [sym_if_statement] = STATE(2093), + [sym_while_statement] = STATE(2093), + [sym_local_declaration_statement] = STATE(2093), + [sym_local_function_statement] = STATE(2093), + [sym__local_function_declaration] = STATE(6310), + [sym_expression] = STATE(5660), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3356), + [sym__expression_statement_expression] = STATE(5554), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3102), + [sym_postfix_unary_expression] = STATE(3079), + [sym_prefix_unary_expression] = STATE(3079), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6134), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3102), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3079), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3102), + [sym_member_access_expression] = STATE(2472), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3079), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7425), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(3102), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3102), + [sym_typeof_expression] = STATE(3102), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2472), + [sym_literal] = STATE(3102), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2269), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_top_level] = STATE(2093), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(3612), [sym_preproc_region] = STATE(26), [sym_preproc_endregion] = STATE(26), [sym_preproc_line] = STATE(26), @@ -32050,46 +31936,46 @@ 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(2286), - [aux_sym__class_declaration_initializer_repeat2] = STATE(2529), - [aux_sym_block_repeat1] = STATE(27), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [aux_sym__class_declaration_initializer_repeat1] = STATE(2277), + [aux_sym__class_declaration_initializer_repeat2] = STATE(2540), + [aux_sym_block_repeat1] = STATE(28), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), - [anon_sym_extern] = ACTIONS(647), + [anon_sym_extern] = ACTIONS(645), [anon_sym_alias] = ACTIONS(29), - [anon_sym_SEMI] = ACTIONS(649), + [anon_sym_SEMI] = ACTIONS(647), [anon_sym_global] = ACTIONS(29), - [anon_sym_using] = ACTIONS(651), - [anon_sym_unsafe] = ACTIONS(653), - [anon_sym_static] = ACTIONS(655), - [anon_sym_LBRACK] = ACTIONS(657), + [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(659), - [anon_sym_ref] = ACTIONS(661), - [anon_sym_LBRACE] = ACTIONS(663), - [anon_sym_RBRACE] = ACTIONS(707), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_abstract] = ACTIONS(647), - [anon_sym_async] = ACTIONS(655), - [anon_sym_const] = ACTIONS(647), - [anon_sym_file] = ACTIONS(669), - [anon_sym_fixed] = ACTIONS(671), - [anon_sym_internal] = ACTIONS(647), - [anon_sym_new] = ACTIONS(673), - [anon_sym_override] = ACTIONS(647), - [anon_sym_partial] = ACTIONS(647), - [anon_sym_private] = ACTIONS(647), - [anon_sym_protected] = ACTIONS(647), - [anon_sym_public] = ACTIONS(647), - [anon_sym_readonly] = ACTIONS(647), - [anon_sym_required] = ACTIONS(647), - [anon_sym_sealed] = ACTIONS(647), - [anon_sym_virtual] = ACTIONS(647), - [anon_sym_volatile] = ACTIONS(647), - [anon_sym_where] = ACTIONS(29), - [anon_sym_notnull] = ACTIONS(29), - [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(675), + [anon_sym_return] = ACTIONS(661), + [anon_sym_ref] = ACTIONS(715), + [anon_sym_LBRACE] = ACTIONS(665), + [anon_sym_RBRACE] = ACTIONS(729), + [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(673), + [anon_sym_internal] = ACTIONS(645), + [anon_sym_new] = ACTIONS(675), + [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(677), [anon_sym_BANG] = ACTIONS(75), [anon_sym_TILDE] = ACTIONS(75), [anon_sym_PLUS_PLUS] = ACTIONS(75), @@ -32106,24 +31992,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(677), - [anon_sym_unchecked] = ACTIONS(675), - [anon_sym_continue] = ACTIONS(679), - [anon_sym_do] = ACTIONS(681), - [anon_sym_while] = ACTIONS(683), - [anon_sym_for] = ACTIONS(685), - [anon_sym_lock] = ACTIONS(687), - [anon_sym_yield] = ACTIONS(689), - [anon_sym_switch] = ACTIONS(691), - [anon_sym_case] = ACTIONS(709), - [anon_sym_default] = ACTIONS(709), - [anon_sym_throw] = ACTIONS(695), - [anon_sym_try] = ACTIONS(697), + [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(721), + [anon_sym_try] = ACTIONS(703), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(699), + [anon_sym_await] = ACTIONS(723), [anon_sym_foreach] = ACTIONS(117), - [anon_sym_goto] = ACTIONS(701), - [anon_sym_if] = ACTIONS(703), + [anon_sym_goto] = ACTIONS(707), + [anon_sym_if] = ACTIONS(709), [anon_sym_DOT_DOT] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), @@ -32149,7 +32035,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(705), + [aux_sym_preproc_if_token1] = ACTIONS(713), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -32166,114 +32052,114 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [27] = { - [sym_attribute_list] = STATE(3645), - [sym__attribute_list] = STATE(3580), - [sym_modifier] = STATE(3878), - [sym_parameter_list] = STATE(7311), - [sym_block] = STATE(2120), - [sym_variable_declaration] = STATE(7689), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(5160), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2204), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5867), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_statement] = STATE(2141), - [sym_break_statement] = STATE(2120), - [sym_checked_statement] = STATE(2120), - [sym_continue_statement] = STATE(2120), - [sym_do_statement] = STATE(2120), - [sym_empty_statement] = STATE(2120), - [sym_expression_statement] = STATE(2120), - [sym_fixed_statement] = STATE(2120), - [sym_for_statement] = STATE(2120), - [sym_return_statement] = STATE(2120), - [sym_lock_statement] = STATE(2120), - [sym_yield_statement] = STATE(2120), - [sym_switch_statement] = STATE(2120), - [sym_throw_statement] = STATE(2120), - [sym_try_statement] = STATE(2120), - [sym_unsafe_statement] = STATE(2120), - [sym_using_statement] = STATE(2120), - [sym_foreach_statement] = STATE(2120), + [sym_attribute_list] = STATE(3612), + [sym__attribute_list] = STATE(3570), + [sym_modifier] = STATE(3845), + [sym_parameter_list] = STATE(7531), + [sym_block] = STATE(2093), + [sym_variable_declaration] = STATE(7607), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(5152), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2196), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5805), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_statement] = STATE(2134), + [sym_break_statement] = STATE(2093), + [sym_checked_statement] = STATE(2093), + [sym_continue_statement] = STATE(2093), + [sym_do_statement] = STATE(2093), + [sym_empty_statement] = STATE(2093), + [sym_expression_statement] = STATE(2093), + [sym_fixed_statement] = STATE(2093), + [sym_for_statement] = STATE(2093), + [sym_return_statement] = STATE(2093), + [sym_lock_statement] = STATE(2093), + [sym_yield_statement] = STATE(2093), + [sym_switch_statement] = STATE(2093), + [sym_throw_statement] = STATE(2093), + [sym_try_statement] = STATE(2093), + [sym_unsafe_statement] = STATE(2093), + [sym_using_statement] = STATE(2093), + [sym_foreach_statement] = STATE(2093), [sym__foreach_statement_initializer] = STATE(93), - [sym_goto_statement] = STATE(2120), - [sym_labeled_statement] = STATE(2120), - [sym_if_statement] = STATE(2120), - [sym_while_statement] = STATE(2120), - [sym_local_declaration_statement] = STATE(2120), - [sym_local_function_statement] = STATE(2120), - [sym__local_function_declaration] = STATE(6322), - [sym_expression] = STATE(5672), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3461), - [sym__expression_statement_expression] = STATE(5635), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3080), - [sym_postfix_unary_expression] = STATE(3111), - [sym_prefix_unary_expression] = STATE(3111), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6154), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3080), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3111), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3080), - [sym_member_access_expression] = STATE(2484), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3111), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7530), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(3080), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3080), - [sym_typeof_expression] = STATE(3080), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2484), - [sym_literal] = STATE(3080), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2282), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_top_level] = STATE(2120), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(3645), + [sym_goto_statement] = STATE(2093), + [sym_labeled_statement] = STATE(2093), + [sym_if_statement] = STATE(2093), + [sym_while_statement] = STATE(2093), + [sym_local_declaration_statement] = STATE(2093), + [sym_local_function_statement] = STATE(2093), + [sym__local_function_declaration] = STATE(6310), + [sym_expression] = STATE(5660), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3356), + [sym__expression_statement_expression] = STATE(5554), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3102), + [sym_postfix_unary_expression] = STATE(3079), + [sym_prefix_unary_expression] = STATE(3079), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6134), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3102), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3079), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3102), + [sym_member_access_expression] = STATE(2472), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3079), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7425), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(3102), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3102), + [sym_typeof_expression] = STATE(3102), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2472), + [sym_literal] = STATE(3102), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2269), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_top_level] = STATE(2093), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(3612), [sym_preproc_region] = STATE(27), [sym_preproc_endregion] = STATE(27), [sym_preproc_line] = STATE(27), @@ -32283,279 +32169,46 @@ 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(2286), - [aux_sym__class_declaration_initializer_repeat2] = STATE(2529), - [aux_sym_block_repeat1] = STATE(27), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), - [sym__identifier_token] = ACTIONS(711), - [anon_sym_extern] = ACTIONS(714), - [anon_sym_alias] = ACTIONS(717), - [anon_sym_SEMI] = ACTIONS(720), - [anon_sym_global] = ACTIONS(717), - [anon_sym_using] = ACTIONS(723), - [anon_sym_unsafe] = ACTIONS(726), - [anon_sym_static] = ACTIONS(729), - [anon_sym_LBRACK] = ACTIONS(732), - [anon_sym_LPAREN] = ACTIONS(735), - [anon_sym_return] = ACTIONS(738), - [anon_sym_ref] = ACTIONS(741), - [anon_sym_LBRACE] = ACTIONS(744), - [anon_sym_RBRACE] = ACTIONS(747), - [anon_sym_delegate] = ACTIONS(749), - [anon_sym_abstract] = ACTIONS(714), - [anon_sym_async] = ACTIONS(729), - [anon_sym_const] = ACTIONS(714), - [anon_sym_file] = ACTIONS(752), - [anon_sym_fixed] = ACTIONS(755), - [anon_sym_internal] = ACTIONS(714), - [anon_sym_new] = ACTIONS(758), - [anon_sym_override] = ACTIONS(714), - [anon_sym_partial] = ACTIONS(714), - [anon_sym_private] = ACTIONS(714), - [anon_sym_protected] = ACTIONS(714), - [anon_sym_public] = ACTIONS(714), - [anon_sym_readonly] = ACTIONS(714), - [anon_sym_required] = ACTIONS(714), - [anon_sym_sealed] = ACTIONS(714), - [anon_sym_virtual] = ACTIONS(714), - [anon_sym_volatile] = ACTIONS(714), - [anon_sym_where] = ACTIONS(717), - [anon_sym_notnull] = ACTIONS(717), - [anon_sym_unmanaged] = ACTIONS(717), - [anon_sym_checked] = ACTIONS(761), - [anon_sym_BANG] = ACTIONS(764), - [anon_sym_TILDE] = ACTIONS(764), - [anon_sym_PLUS_PLUS] = ACTIONS(764), - [anon_sym_DASH_DASH] = ACTIONS(764), - [anon_sym_true] = ACTIONS(767), - [anon_sym_false] = ACTIONS(767), - [anon_sym_PLUS] = ACTIONS(770), - [anon_sym_DASH] = ACTIONS(770), - [anon_sym_STAR] = ACTIONS(773), - [anon_sym_CARET] = ACTIONS(764), - [anon_sym_AMP] = ACTIONS(764), - [anon_sym_this] = ACTIONS(776), - [anon_sym_scoped] = ACTIONS(779), - [anon_sym_base] = ACTIONS(782), - [anon_sym_var] = ACTIONS(785), - [sym_predefined_type] = ACTIONS(788), - [anon_sym_break] = ACTIONS(791), - [anon_sym_unchecked] = ACTIONS(761), - [anon_sym_continue] = ACTIONS(794), - [anon_sym_do] = ACTIONS(797), - [anon_sym_while] = ACTIONS(800), - [anon_sym_for] = ACTIONS(803), - [anon_sym_lock] = ACTIONS(806), - [anon_sym_yield] = ACTIONS(809), - [anon_sym_switch] = ACTIONS(812), - [anon_sym_case] = ACTIONS(815), - [anon_sym_default] = ACTIONS(817), - [anon_sym_throw] = ACTIONS(820), - [anon_sym_try] = ACTIONS(823), - [anon_sym_when] = ACTIONS(717), - [anon_sym_await] = ACTIONS(826), - [anon_sym_foreach] = ACTIONS(829), - [anon_sym_goto] = ACTIONS(832), - [anon_sym_if] = ACTIONS(835), - [anon_sym_DOT_DOT] = ACTIONS(838), - [anon_sym_from] = ACTIONS(841), - [anon_sym_into] = ACTIONS(717), - [anon_sym_join] = ACTIONS(717), - [anon_sym_on] = ACTIONS(717), - [anon_sym_equals] = ACTIONS(717), - [anon_sym_let] = ACTIONS(717), - [anon_sym_orderby] = ACTIONS(717), - [anon_sym_ascending] = ACTIONS(717), - [anon_sym_descending] = ACTIONS(717), - [anon_sym_group] = ACTIONS(717), - [anon_sym_by] = ACTIONS(717), - [anon_sym_select] = ACTIONS(717), - [anon_sym_stackalloc] = ACTIONS(844), - [anon_sym_sizeof] = ACTIONS(847), - [anon_sym_typeof] = ACTIONS(850), - [anon_sym___makeref] = ACTIONS(853), - [anon_sym___reftype] = ACTIONS(856), - [anon_sym___refvalue] = ACTIONS(859), - [sym_null_literal] = ACTIONS(862), - [anon_sym_SQUOTE] = ACTIONS(865), - [sym_integer_literal] = ACTIONS(862), - [sym_real_literal] = ACTIONS(868), - [anon_sym_DQUOTE] = ACTIONS(871), - [sym_verbatim_string_literal] = ACTIONS(868), - [aux_sym_preproc_if_token1] = ACTIONS(874), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(877), - [sym_interpolation_verbatim_start] = ACTIONS(880), - [sym_interpolation_raw_start] = ACTIONS(883), - [sym_raw_string_start] = ACTIONS(886), - }, - [28] = { - [sym_attribute_list] = STATE(3645), - [sym__attribute_list] = STATE(3580), - [sym_modifier] = STATE(3878), - [sym_parameter_list] = STATE(7311), - [sym_block] = STATE(2120), - [sym_variable_declaration] = STATE(7689), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(5160), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2204), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5867), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_statement] = STATE(2141), - [sym_break_statement] = STATE(2120), - [sym_checked_statement] = STATE(2120), - [sym_continue_statement] = STATE(2120), - [sym_do_statement] = STATE(2120), - [sym_empty_statement] = STATE(2120), - [sym_expression_statement] = STATE(2120), - [sym_fixed_statement] = STATE(2120), - [sym_for_statement] = STATE(2120), - [sym_return_statement] = STATE(2120), - [sym_lock_statement] = STATE(2120), - [sym_yield_statement] = STATE(2120), - [sym_switch_statement] = STATE(2120), - [sym_throw_statement] = STATE(2120), - [sym_try_statement] = STATE(2120), - [sym_unsafe_statement] = STATE(2120), - [sym_using_statement] = STATE(2120), - [sym_foreach_statement] = STATE(2120), - [sym__foreach_statement_initializer] = STATE(93), - [sym_goto_statement] = STATE(2120), - [sym_labeled_statement] = STATE(2120), - [sym_if_statement] = STATE(2120), - [sym_while_statement] = STATE(2120), - [sym_local_declaration_statement] = STATE(2120), - [sym_local_function_statement] = STATE(2120), - [sym__local_function_declaration] = STATE(6322), - [sym_expression] = STATE(5672), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3461), - [sym__expression_statement_expression] = STATE(5635), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3080), - [sym_postfix_unary_expression] = STATE(3111), - [sym_prefix_unary_expression] = STATE(3111), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6154), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3080), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3111), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3080), - [sym_member_access_expression] = STATE(2484), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3111), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7530), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(3080), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3080), - [sym_typeof_expression] = STATE(3080), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2484), - [sym_literal] = STATE(3080), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2282), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_top_level] = STATE(2120), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(3645), - [sym_preproc_region] = STATE(28), - [sym_preproc_endregion] = STATE(28), - [sym_preproc_line] = STATE(28), - [sym_preproc_pragma] = STATE(28), - [sym_preproc_nullable] = STATE(28), - [sym_preproc_error] = STATE(28), - [sym_preproc_warning] = STATE(28), - [sym_preproc_define] = STATE(28), - [sym_preproc_undef] = STATE(28), - [aux_sym__class_declaration_initializer_repeat1] = STATE(2286), - [aux_sym__class_declaration_initializer_repeat2] = STATE(2529), - [aux_sym_block_repeat1] = STATE(27), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [aux_sym__class_declaration_initializer_repeat1] = STATE(2277), + [aux_sym__class_declaration_initializer_repeat2] = STATE(2540), + [aux_sym_block_repeat1] = STATE(31), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), - [anon_sym_extern] = ACTIONS(647), + [anon_sym_extern] = ACTIONS(645), [anon_sym_alias] = ACTIONS(29), - [anon_sym_SEMI] = ACTIONS(649), + [anon_sym_SEMI] = ACTIONS(647), [anon_sym_global] = ACTIONS(29), - [anon_sym_using] = ACTIONS(651), - [anon_sym_unsafe] = ACTIONS(653), - [anon_sym_static] = ACTIONS(655), - [anon_sym_LBRACK] = ACTIONS(657), + [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(659), - [anon_sym_ref] = ACTIONS(661), - [anon_sym_LBRACE] = ACTIONS(663), - [anon_sym_RBRACE] = ACTIONS(889), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_abstract] = ACTIONS(647), - [anon_sym_async] = ACTIONS(655), - [anon_sym_const] = ACTIONS(647), - [anon_sym_file] = ACTIONS(669), - [anon_sym_fixed] = ACTIONS(671), - [anon_sym_internal] = ACTIONS(647), - [anon_sym_new] = ACTIONS(673), - [anon_sym_override] = ACTIONS(647), - [anon_sym_partial] = ACTIONS(647), - [anon_sym_private] = ACTIONS(647), - [anon_sym_protected] = ACTIONS(647), - [anon_sym_public] = ACTIONS(647), - [anon_sym_readonly] = ACTIONS(647), - [anon_sym_required] = ACTIONS(647), - [anon_sym_sealed] = ACTIONS(647), - [anon_sym_virtual] = ACTIONS(647), - [anon_sym_volatile] = ACTIONS(647), - [anon_sym_where] = ACTIONS(29), - [anon_sym_notnull] = ACTIONS(29), - [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(675), + [anon_sym_return] = ACTIONS(661), + [anon_sym_ref] = ACTIONS(715), + [anon_sym_LBRACE] = ACTIONS(665), + [anon_sym_RBRACE] = ACTIONS(729), + [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(673), + [anon_sym_internal] = ACTIONS(645), + [anon_sym_new] = ACTIONS(675), + [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(677), [anon_sym_BANG] = ACTIONS(75), [anon_sym_TILDE] = ACTIONS(75), [anon_sym_PLUS_PLUS] = ACTIONS(75), @@ -32572,24 +32225,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(677), - [anon_sym_unchecked] = ACTIONS(675), - [anon_sym_continue] = ACTIONS(679), - [anon_sym_do] = ACTIONS(681), - [anon_sym_while] = ACTIONS(683), - [anon_sym_for] = ACTIONS(685), - [anon_sym_lock] = ACTIONS(687), - [anon_sym_yield] = ACTIONS(689), - [anon_sym_switch] = ACTIONS(691), - [anon_sym_case] = ACTIONS(891), - [anon_sym_default] = ACTIONS(891), - [anon_sym_throw] = ACTIONS(695), - [anon_sym_try] = ACTIONS(697), + [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(721), + [anon_sym_try] = ACTIONS(703), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(699), + [anon_sym_await] = ACTIONS(723), [anon_sym_foreach] = ACTIONS(117), - [anon_sym_goto] = ACTIONS(701), - [anon_sym_if] = ACTIONS(703), + [anon_sym_goto] = ACTIONS(707), + [anon_sym_if] = ACTIONS(709), [anon_sym_DOT_DOT] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), @@ -32615,7 +32268,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(705), + [aux_sym_preproc_if_token1] = ACTIONS(713), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -32631,115 +32284,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), }, + [28] = { + [sym_attribute_list] = STATE(3612), + [sym__attribute_list] = STATE(3570), + [sym_modifier] = STATE(3845), + [sym_parameter_list] = STATE(7531), + [sym_block] = STATE(2093), + [sym_variable_declaration] = STATE(7607), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(5152), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2196), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5805), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_statement] = STATE(2134), + [sym_break_statement] = STATE(2093), + [sym_checked_statement] = STATE(2093), + [sym_continue_statement] = STATE(2093), + [sym_do_statement] = STATE(2093), + [sym_empty_statement] = STATE(2093), + [sym_expression_statement] = STATE(2093), + [sym_fixed_statement] = STATE(2093), + [sym_for_statement] = STATE(2093), + [sym_return_statement] = STATE(2093), + [sym_lock_statement] = STATE(2093), + [sym_yield_statement] = STATE(2093), + [sym_switch_statement] = STATE(2093), + [sym_throw_statement] = STATE(2093), + [sym_try_statement] = STATE(2093), + [sym_unsafe_statement] = STATE(2093), + [sym_using_statement] = STATE(2093), + [sym_foreach_statement] = STATE(2093), + [sym__foreach_statement_initializer] = STATE(93), + [sym_goto_statement] = STATE(2093), + [sym_labeled_statement] = STATE(2093), + [sym_if_statement] = STATE(2093), + [sym_while_statement] = STATE(2093), + [sym_local_declaration_statement] = STATE(2093), + [sym_local_function_statement] = STATE(2093), + [sym__local_function_declaration] = STATE(6310), + [sym_expression] = STATE(5660), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3356), + [sym__expression_statement_expression] = STATE(5554), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3102), + [sym_postfix_unary_expression] = STATE(3079), + [sym_prefix_unary_expression] = STATE(3079), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6134), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3102), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3079), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3102), + [sym_member_access_expression] = STATE(2472), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3079), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7425), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(3102), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3102), + [sym_typeof_expression] = STATE(3102), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2472), + [sym_literal] = STATE(3102), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2269), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_top_level] = STATE(2093), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(3612), + [sym_preproc_region] = STATE(28), + [sym_preproc_endregion] = STATE(28), + [sym_preproc_line] = STATE(28), + [sym_preproc_pragma] = STATE(28), + [sym_preproc_nullable] = STATE(28), + [sym_preproc_error] = STATE(28), + [sym_preproc_warning] = STATE(28), + [sym_preproc_define] = STATE(28), + [sym_preproc_undef] = STATE(28), + [aux_sym__class_declaration_initializer_repeat1] = STATE(2277), + [aux_sym__class_declaration_initializer_repeat2] = STATE(2540), + [aux_sym_block_repeat1] = STATE(28), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), + [sym__identifier_token] = ACTIONS(733), + [anon_sym_extern] = ACTIONS(736), + [anon_sym_alias] = ACTIONS(739), + [anon_sym_SEMI] = ACTIONS(742), + [anon_sym_global] = ACTIONS(739), + [anon_sym_using] = ACTIONS(745), + [anon_sym_unsafe] = ACTIONS(748), + [anon_sym_static] = ACTIONS(751), + [anon_sym_LBRACK] = ACTIONS(754), + [anon_sym_LPAREN] = ACTIONS(757), + [anon_sym_return] = ACTIONS(760), + [anon_sym_ref] = ACTIONS(763), + [anon_sym_LBRACE] = ACTIONS(766), + [anon_sym_RBRACE] = ACTIONS(769), + [anon_sym_delegate] = ACTIONS(771), + [anon_sym_abstract] = ACTIONS(736), + [anon_sym_async] = ACTIONS(751), + [anon_sym_const] = ACTIONS(736), + [anon_sym_file] = ACTIONS(774), + [anon_sym_fixed] = ACTIONS(777), + [anon_sym_internal] = ACTIONS(736), + [anon_sym_new] = ACTIONS(780), + [anon_sym_override] = ACTIONS(736), + [anon_sym_partial] = ACTIONS(736), + [anon_sym_private] = ACTIONS(736), + [anon_sym_protected] = ACTIONS(736), + [anon_sym_public] = ACTIONS(736), + [anon_sym_readonly] = ACTIONS(736), + [anon_sym_required] = ACTIONS(736), + [anon_sym_sealed] = ACTIONS(736), + [anon_sym_virtual] = ACTIONS(736), + [anon_sym_volatile] = ACTIONS(736), + [anon_sym_where] = ACTIONS(739), + [anon_sym_notnull] = ACTIONS(739), + [anon_sym_unmanaged] = ACTIONS(739), + [anon_sym_checked] = ACTIONS(783), + [anon_sym_BANG] = ACTIONS(786), + [anon_sym_TILDE] = ACTIONS(786), + [anon_sym_PLUS_PLUS] = ACTIONS(786), + [anon_sym_DASH_DASH] = ACTIONS(786), + [anon_sym_true] = ACTIONS(789), + [anon_sym_false] = ACTIONS(789), + [anon_sym_PLUS] = ACTIONS(792), + [anon_sym_DASH] = ACTIONS(792), + [anon_sym_STAR] = ACTIONS(795), + [anon_sym_CARET] = ACTIONS(786), + [anon_sym_AMP] = ACTIONS(786), + [anon_sym_this] = ACTIONS(798), + [anon_sym_scoped] = ACTIONS(801), + [anon_sym_base] = ACTIONS(804), + [anon_sym_var] = ACTIONS(807), + [sym_predefined_type] = ACTIONS(810), + [anon_sym_break] = ACTIONS(813), + [anon_sym_unchecked] = ACTIONS(783), + [anon_sym_continue] = ACTIONS(816), + [anon_sym_do] = ACTIONS(819), + [anon_sym_while] = ACTIONS(822), + [anon_sym_for] = ACTIONS(825), + [anon_sym_lock] = ACTIONS(828), + [anon_sym_yield] = ACTIONS(831), + [anon_sym_switch] = ACTIONS(834), + [anon_sym_case] = ACTIONS(837), + [anon_sym_default] = ACTIONS(839), + [anon_sym_throw] = ACTIONS(842), + [anon_sym_try] = ACTIONS(845), + [anon_sym_when] = ACTIONS(739), + [anon_sym_await] = ACTIONS(848), + [anon_sym_foreach] = ACTIONS(851), + [anon_sym_goto] = ACTIONS(854), + [anon_sym_if] = ACTIONS(857), + [anon_sym_DOT_DOT] = ACTIONS(860), + [anon_sym_from] = ACTIONS(863), + [anon_sym_into] = ACTIONS(739), + [anon_sym_join] = ACTIONS(739), + [anon_sym_on] = ACTIONS(739), + [anon_sym_equals] = ACTIONS(739), + [anon_sym_let] = ACTIONS(739), + [anon_sym_orderby] = ACTIONS(739), + [anon_sym_ascending] = ACTIONS(739), + [anon_sym_descending] = ACTIONS(739), + [anon_sym_group] = ACTIONS(739), + [anon_sym_by] = ACTIONS(739), + [anon_sym_select] = ACTIONS(739), + [anon_sym_stackalloc] = ACTIONS(866), + [anon_sym_sizeof] = ACTIONS(869), + [anon_sym_typeof] = ACTIONS(872), + [anon_sym___makeref] = ACTIONS(875), + [anon_sym___reftype] = ACTIONS(878), + [anon_sym___refvalue] = ACTIONS(881), + [sym_null_literal] = ACTIONS(884), + [anon_sym_SQUOTE] = ACTIONS(887), + [sym_integer_literal] = ACTIONS(884), + [sym_real_literal] = ACTIONS(890), + [anon_sym_DQUOTE] = ACTIONS(893), + [sym_verbatim_string_literal] = ACTIONS(890), + [aux_sym_preproc_if_token1] = ACTIONS(896), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + [sym_interpolation_regular_start] = ACTIONS(899), + [sym_interpolation_verbatim_start] = ACTIONS(902), + [sym_interpolation_raw_start] = ACTIONS(905), + [sym_raw_string_start] = ACTIONS(908), + }, [29] = { - [sym_attribute_list] = STATE(3645), - [sym__attribute_list] = STATE(3580), - [sym_modifier] = STATE(3878), - [sym_parameter_list] = STATE(7311), - [sym_block] = STATE(2120), - [sym_variable_declaration] = STATE(7689), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(5910), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2247), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5867), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_statement] = STATE(2141), - [sym_break_statement] = STATE(2120), - [sym_checked_statement] = STATE(2120), - [sym_continue_statement] = STATE(2120), - [sym_do_statement] = STATE(2120), - [sym_empty_statement] = STATE(2120), - [sym_expression_statement] = STATE(2120), - [sym_fixed_statement] = STATE(2120), - [sym_for_statement] = STATE(2120), - [sym_return_statement] = STATE(2120), - [sym_lock_statement] = STATE(2120), - [sym_yield_statement] = STATE(2120), - [sym_switch_statement] = STATE(2120), - [sym_throw_statement] = STATE(2120), - [sym_try_statement] = STATE(2120), - [sym_unsafe_statement] = STATE(2120), - [sym_using_statement] = STATE(2120), - [sym_foreach_statement] = STATE(2120), + [sym_attribute_list] = STATE(3612), + [sym__attribute_list] = STATE(3570), + [sym_modifier] = STATE(3845), + [sym_parameter_list] = STATE(7531), + [sym_block] = STATE(2093), + [sym_variable_declaration] = STATE(7607), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(5152), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2196), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5805), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_statement] = STATE(2134), + [sym_break_statement] = STATE(2093), + [sym_checked_statement] = STATE(2093), + [sym_continue_statement] = STATE(2093), + [sym_do_statement] = STATE(2093), + [sym_empty_statement] = STATE(2093), + [sym_expression_statement] = STATE(2093), + [sym_fixed_statement] = STATE(2093), + [sym_for_statement] = STATE(2093), + [sym_return_statement] = STATE(2093), + [sym_lock_statement] = STATE(2093), + [sym_yield_statement] = STATE(2093), + [sym_switch_statement] = STATE(2093), + [sym_throw_statement] = STATE(2093), + [sym_try_statement] = STATE(2093), + [sym_unsafe_statement] = STATE(2093), + [sym_using_statement] = STATE(2093), + [sym_foreach_statement] = STATE(2093), [sym__foreach_statement_initializer] = STATE(93), - [sym_goto_statement] = STATE(2120), - [sym_labeled_statement] = STATE(2120), - [sym_if_statement] = STATE(2120), - [sym_while_statement] = STATE(2120), - [sym_local_declaration_statement] = STATE(2120), - [sym_local_function_statement] = STATE(2120), - [sym__local_function_declaration] = STATE(6322), - [sym_expression] = STATE(4925), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3529), - [sym__expression_statement_expression] = STATE(5635), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3080), - [sym_postfix_unary_expression] = STATE(3111), - [sym_prefix_unary_expression] = STATE(3111), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6154), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3080), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3111), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3080), - [sym_member_access_expression] = STATE(2484), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3111), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7575), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(3080), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3080), - [sym_typeof_expression] = STATE(3080), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2484), - [sym_literal] = STATE(3080), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2282), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_top_level] = STATE(2120), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(3645), + [sym_goto_statement] = STATE(2093), + [sym_labeled_statement] = STATE(2093), + [sym_if_statement] = STATE(2093), + [sym_while_statement] = STATE(2093), + [sym_local_declaration_statement] = STATE(2093), + [sym_local_function_statement] = STATE(2093), + [sym__local_function_declaration] = STATE(6310), + [sym_expression] = STATE(5660), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3356), + [sym__expression_statement_expression] = STATE(5554), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3102), + [sym_postfix_unary_expression] = STATE(3079), + [sym_prefix_unary_expression] = STATE(3079), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6134), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3102), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3079), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3102), + [sym_member_access_expression] = STATE(2472), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3079), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7425), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(3102), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3102), + [sym_typeof_expression] = STATE(3102), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2472), + [sym_literal] = STATE(3102), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2269), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_top_level] = STATE(2093), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(3612), [sym_preproc_region] = STATE(29), [sym_preproc_endregion] = STATE(29), [sym_preproc_line] = STATE(29), @@ -32749,81 +32635,81 @@ 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(2286), - [aux_sym__class_declaration_initializer_repeat2] = STATE(2529), - [aux_sym_block_repeat1] = STATE(43), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [aux_sym__class_declaration_initializer_repeat1] = STATE(2277), + [aux_sym__class_declaration_initializer_repeat2] = STATE(2540), + [aux_sym_block_repeat1] = STATE(26), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), - [anon_sym_extern] = ACTIONS(647), - [anon_sym_alias] = ACTIONS(29), - [anon_sym_SEMI] = ACTIONS(649), - [anon_sym_global] = ACTIONS(29), - [anon_sym_using] = ACTIONS(651), - [anon_sym_unsafe] = ACTIONS(653), - [anon_sym_static] = ACTIONS(655), - [anon_sym_LBRACK] = ACTIONS(657), - [anon_sym_COMMA] = ACTIONS(893), - [anon_sym_LPAREN] = ACTIONS(895), - [anon_sym_return] = ACTIONS(659), - [anon_sym_ref] = ACTIONS(897), - [anon_sym_LBRACE] = ACTIONS(663), - [anon_sym_RBRACE] = ACTIONS(899), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_abstract] = ACTIONS(647), - [anon_sym_async] = ACTIONS(655), - [anon_sym_const] = ACTIONS(647), - [anon_sym_file] = ACTIONS(669), - [anon_sym_fixed] = ACTIONS(671), - [anon_sym_internal] = ACTIONS(647), - [anon_sym_new] = ACTIONS(673), - [anon_sym_override] = ACTIONS(647), - [anon_sym_partial] = ACTIONS(647), - [anon_sym_private] = ACTIONS(647), - [anon_sym_protected] = ACTIONS(647), - [anon_sym_public] = ACTIONS(647), - [anon_sym_readonly] = ACTIONS(647), - [anon_sym_required] = ACTIONS(647), - [anon_sym_sealed] = ACTIONS(647), - [anon_sym_virtual] = ACTIONS(647), - [anon_sym_volatile] = ACTIONS(647), - [anon_sym_where] = ACTIONS(29), - [anon_sym_notnull] = ACTIONS(29), - [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(675), - [anon_sym_BANG] = ACTIONS(901), - [anon_sym_TILDE] = ACTIONS(901), - [anon_sym_PLUS_PLUS] = ACTIONS(901), - [anon_sym_DASH_DASH] = ACTIONS(901), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(903), - [anon_sym_DASH] = ACTIONS(903), - [anon_sym_STAR] = ACTIONS(905), - [anon_sym_CARET] = ACTIONS(901), - [anon_sym_AMP] = ACTIONS(901), + [anon_sym_extern] = ACTIONS(645), + [anon_sym_alias] = ACTIONS(29), + [anon_sym_SEMI] = ACTIONS(647), + [anon_sym_global] = ACTIONS(29), + [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(661), + [anon_sym_ref] = ACTIONS(715), + [anon_sym_LBRACE] = ACTIONS(665), + [anon_sym_RBRACE] = ACTIONS(911), + [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(673), + [anon_sym_internal] = ACTIONS(645), + [anon_sym_new] = ACTIONS(675), + [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(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_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(677), - [anon_sym_unchecked] = ACTIONS(675), - [anon_sym_continue] = ACTIONS(679), - [anon_sym_do] = ACTIONS(681), - [anon_sym_while] = ACTIONS(683), - [anon_sym_for] = ACTIONS(685), - [anon_sym_lock] = ACTIONS(687), - [anon_sym_yield] = ACTIONS(689), - [anon_sym_switch] = ACTIONS(691), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(907), - [anon_sym_try] = ACTIONS(697), + [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(913), + [anon_sym_default] = ACTIONS(913), + [anon_sym_throw] = ACTIONS(721), + [anon_sym_try] = ACTIONS(703), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(909), + [anon_sym_await] = ACTIONS(723), [anon_sym_foreach] = ACTIONS(117), - [anon_sym_goto] = ACTIONS(701), - [anon_sym_if] = ACTIONS(703), - [anon_sym_DOT_DOT] = ACTIONS(911), + [anon_sym_goto] = ACTIONS(707), + [anon_sym_if] = ACTIONS(709), + [anon_sym_DOT_DOT] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -32848,7 +32734,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(705), + [aux_sym_preproc_if_token1] = ACTIONS(713), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -32865,114 +32751,114 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [30] = { - [sym_attribute_list] = STATE(3645), - [sym__attribute_list] = STATE(3580), - [sym_modifier] = STATE(3878), - [sym_parameter_list] = STATE(7311), - [sym_block] = STATE(2120), - [sym_variable_declaration] = STATE(7689), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(5910), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2247), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5867), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_statement] = STATE(2141), - [sym_break_statement] = STATE(2120), - [sym_checked_statement] = STATE(2120), - [sym_continue_statement] = STATE(2120), - [sym_do_statement] = STATE(2120), - [sym_empty_statement] = STATE(2120), - [sym_expression_statement] = STATE(2120), - [sym_fixed_statement] = STATE(2120), - [sym_for_statement] = STATE(2120), - [sym_return_statement] = STATE(2120), - [sym_lock_statement] = STATE(2120), - [sym_yield_statement] = STATE(2120), - [sym_switch_statement] = STATE(2120), - [sym_throw_statement] = STATE(2120), - [sym_try_statement] = STATE(2120), - [sym_unsafe_statement] = STATE(2120), - [sym_using_statement] = STATE(2120), - [sym_foreach_statement] = STATE(2120), + [sym_attribute_list] = STATE(3612), + [sym__attribute_list] = STATE(3570), + [sym_modifier] = STATE(3845), + [sym_parameter_list] = STATE(7531), + [sym_block] = STATE(2093), + [sym_variable_declaration] = STATE(7607), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(5873), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2238), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5805), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_statement] = STATE(2134), + [sym_break_statement] = STATE(2093), + [sym_checked_statement] = STATE(2093), + [sym_continue_statement] = STATE(2093), + [sym_do_statement] = STATE(2093), + [sym_empty_statement] = STATE(2093), + [sym_expression_statement] = STATE(2093), + [sym_fixed_statement] = STATE(2093), + [sym_for_statement] = STATE(2093), + [sym_return_statement] = STATE(2093), + [sym_lock_statement] = STATE(2093), + [sym_yield_statement] = STATE(2093), + [sym_switch_statement] = STATE(2093), + [sym_throw_statement] = STATE(2093), + [sym_try_statement] = STATE(2093), + [sym_unsafe_statement] = STATE(2093), + [sym_using_statement] = STATE(2093), + [sym_foreach_statement] = STATE(2093), [sym__foreach_statement_initializer] = STATE(93), - [sym_goto_statement] = STATE(2120), - [sym_labeled_statement] = STATE(2120), - [sym_if_statement] = STATE(2120), - [sym_while_statement] = STATE(2120), - [sym_local_declaration_statement] = STATE(2120), - [sym_local_function_statement] = STATE(2120), - [sym__local_function_declaration] = STATE(6322), - [sym_expression] = STATE(4925), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3529), - [sym__expression_statement_expression] = STATE(5635), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3080), - [sym_postfix_unary_expression] = STATE(3111), - [sym_prefix_unary_expression] = STATE(3111), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6154), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3080), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3111), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3080), - [sym_member_access_expression] = STATE(2484), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3111), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7575), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(3080), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3080), - [sym_typeof_expression] = STATE(3080), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2484), - [sym_literal] = STATE(3080), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2282), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_top_level] = STATE(2120), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(3645), + [sym_goto_statement] = STATE(2093), + [sym_labeled_statement] = STATE(2093), + [sym_if_statement] = STATE(2093), + [sym_while_statement] = STATE(2093), + [sym_local_declaration_statement] = STATE(2093), + [sym_local_function_statement] = STATE(2093), + [sym__local_function_declaration] = STATE(6310), + [sym_expression] = STATE(4871), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3526), + [sym__expression_statement_expression] = STATE(5554), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3102), + [sym_postfix_unary_expression] = STATE(3079), + [sym_prefix_unary_expression] = STATE(3079), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6134), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3102), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3079), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3102), + [sym_member_access_expression] = STATE(2472), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3079), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7309), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(3102), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3102), + [sym_typeof_expression] = STATE(3102), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2472), + [sym_literal] = STATE(3102), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2269), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_top_level] = STATE(2093), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(3612), [sym_preproc_region] = STATE(30), [sym_preproc_endregion] = STATE(30), [sym_preproc_line] = STATE(30), @@ -32982,81 +32868,81 @@ 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(2286), - [aux_sym__class_declaration_initializer_repeat2] = STATE(2529), - [aux_sym_block_repeat1] = STATE(45), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), - [sym__identifier_token] = ACTIONS(25), - [anon_sym_extern] = ACTIONS(647), - [anon_sym_alias] = ACTIONS(29), - [anon_sym_SEMI] = ACTIONS(649), - [anon_sym_global] = ACTIONS(29), - [anon_sym_using] = ACTIONS(651), - [anon_sym_unsafe] = ACTIONS(653), - [anon_sym_static] = ACTIONS(655), - [anon_sym_LBRACK] = ACTIONS(657), - [anon_sym_COMMA] = ACTIONS(893), - [anon_sym_LPAREN] = ACTIONS(895), - [anon_sym_return] = ACTIONS(659), - [anon_sym_ref] = ACTIONS(897), - [anon_sym_LBRACE] = ACTIONS(663), - [anon_sym_RBRACE] = ACTIONS(913), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_abstract] = ACTIONS(647), - [anon_sym_async] = ACTIONS(655), - [anon_sym_const] = ACTIONS(647), - [anon_sym_file] = ACTIONS(669), - [anon_sym_fixed] = ACTIONS(671), - [anon_sym_internal] = ACTIONS(647), - [anon_sym_new] = ACTIONS(673), - [anon_sym_override] = ACTIONS(647), - [anon_sym_partial] = ACTIONS(647), - [anon_sym_private] = ACTIONS(647), - [anon_sym_protected] = ACTIONS(647), - [anon_sym_public] = ACTIONS(647), - [anon_sym_readonly] = ACTIONS(647), - [anon_sym_required] = ACTIONS(647), - [anon_sym_sealed] = ACTIONS(647), - [anon_sym_virtual] = ACTIONS(647), - [anon_sym_volatile] = ACTIONS(647), - [anon_sym_where] = ACTIONS(29), - [anon_sym_notnull] = ACTIONS(29), - [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(675), - [anon_sym_BANG] = ACTIONS(901), - [anon_sym_TILDE] = ACTIONS(901), - [anon_sym_PLUS_PLUS] = ACTIONS(901), - [anon_sym_DASH_DASH] = ACTIONS(901), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(903), - [anon_sym_DASH] = ACTIONS(903), - [anon_sym_STAR] = ACTIONS(905), - [anon_sym_CARET] = ACTIONS(901), - [anon_sym_AMP] = ACTIONS(901), + [aux_sym__class_declaration_initializer_repeat1] = STATE(2277), + [aux_sym__class_declaration_initializer_repeat2] = STATE(2540), + [aux_sym_block_repeat1] = STATE(46), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), + [sym__identifier_token] = ACTIONS(25), + [anon_sym_extern] = ACTIONS(645), + [anon_sym_alias] = ACTIONS(29), + [anon_sym_SEMI] = ACTIONS(647), + [anon_sym_global] = ACTIONS(29), + [anon_sym_using] = ACTIONS(649), + [anon_sym_unsafe] = ACTIONS(651), + [anon_sym_static] = ACTIONS(653), + [anon_sym_LBRACK] = ACTIONS(655), + [anon_sym_COMMA] = ACTIONS(725), + [anon_sym_LPAREN] = ACTIONS(659), + [anon_sym_return] = ACTIONS(661), + [anon_sym_ref] = ACTIONS(663), + [anon_sym_LBRACE] = ACTIONS(665), + [anon_sym_RBRACE] = ACTIONS(915), + [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(673), + [anon_sym_internal] = ACTIONS(645), + [anon_sym_new] = ACTIONS(675), + [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(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_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_scoped] = ACTIONS(85), [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(91), - [anon_sym_break] = ACTIONS(677), - [anon_sym_unchecked] = ACTIONS(675), - [anon_sym_continue] = ACTIONS(679), - [anon_sym_do] = ACTIONS(681), - [anon_sym_while] = ACTIONS(683), - [anon_sym_for] = ACTIONS(685), - [anon_sym_lock] = ACTIONS(687), - [anon_sym_yield] = ACTIONS(689), - [anon_sym_switch] = ACTIONS(691), + [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(907), - [anon_sym_try] = ACTIONS(697), + [anon_sym_throw] = ACTIONS(701), + [anon_sym_try] = ACTIONS(703), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(909), + [anon_sym_await] = ACTIONS(705), [anon_sym_foreach] = ACTIONS(117), - [anon_sym_goto] = ACTIONS(701), - [anon_sym_if] = ACTIONS(703), - [anon_sym_DOT_DOT] = ACTIONS(911), + [anon_sym_goto] = ACTIONS(707), + [anon_sym_if] = ACTIONS(709), + [anon_sym_DOT_DOT] = ACTIONS(711), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -33081,7 +32967,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(705), + [aux_sym_preproc_if_token1] = ACTIONS(713), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -33098,114 +32984,114 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [31] = { - [sym_attribute_list] = STATE(3645), - [sym__attribute_list] = STATE(3580), - [sym_modifier] = STATE(3878), - [sym_parameter_list] = STATE(7311), - [sym_block] = STATE(2120), - [sym_variable_declaration] = STATE(7689), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(5910), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2247), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5867), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_statement] = STATE(2141), - [sym_break_statement] = STATE(2120), - [sym_checked_statement] = STATE(2120), - [sym_continue_statement] = STATE(2120), - [sym_do_statement] = STATE(2120), - [sym_empty_statement] = STATE(2120), - [sym_expression_statement] = STATE(2120), - [sym_fixed_statement] = STATE(2120), - [sym_for_statement] = STATE(2120), - [sym_return_statement] = STATE(2120), - [sym_lock_statement] = STATE(2120), - [sym_yield_statement] = STATE(2120), - [sym_switch_statement] = STATE(2120), - [sym_throw_statement] = STATE(2120), - [sym_try_statement] = STATE(2120), - [sym_unsafe_statement] = STATE(2120), - [sym_using_statement] = STATE(2120), - [sym_foreach_statement] = STATE(2120), + [sym_attribute_list] = STATE(3612), + [sym__attribute_list] = STATE(3570), + [sym_modifier] = STATE(3845), + [sym_parameter_list] = STATE(7531), + [sym_block] = STATE(2093), + [sym_variable_declaration] = STATE(7607), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(5152), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2196), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5805), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_statement] = STATE(2134), + [sym_break_statement] = STATE(2093), + [sym_checked_statement] = STATE(2093), + [sym_continue_statement] = STATE(2093), + [sym_do_statement] = STATE(2093), + [sym_empty_statement] = STATE(2093), + [sym_expression_statement] = STATE(2093), + [sym_fixed_statement] = STATE(2093), + [sym_for_statement] = STATE(2093), + [sym_return_statement] = STATE(2093), + [sym_lock_statement] = STATE(2093), + [sym_yield_statement] = STATE(2093), + [sym_switch_statement] = STATE(2093), + [sym_throw_statement] = STATE(2093), + [sym_try_statement] = STATE(2093), + [sym_unsafe_statement] = STATE(2093), + [sym_using_statement] = STATE(2093), + [sym_foreach_statement] = STATE(2093), [sym__foreach_statement_initializer] = STATE(93), - [sym_goto_statement] = STATE(2120), - [sym_labeled_statement] = STATE(2120), - [sym_if_statement] = STATE(2120), - [sym_while_statement] = STATE(2120), - [sym_local_declaration_statement] = STATE(2120), - [sym_local_function_statement] = STATE(2120), - [sym__local_function_declaration] = STATE(6322), - [sym_expression] = STATE(4925), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3529), - [sym__expression_statement_expression] = STATE(5635), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3080), - [sym_postfix_unary_expression] = STATE(3111), - [sym_prefix_unary_expression] = STATE(3111), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6154), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3080), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3111), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3080), - [sym_member_access_expression] = STATE(2484), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3111), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7575), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(3080), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3080), - [sym_typeof_expression] = STATE(3080), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2484), - [sym_literal] = STATE(3080), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2282), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_top_level] = STATE(2120), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(3645), + [sym_goto_statement] = STATE(2093), + [sym_labeled_statement] = STATE(2093), + [sym_if_statement] = STATE(2093), + [sym_while_statement] = STATE(2093), + [sym_local_declaration_statement] = STATE(2093), + [sym_local_function_statement] = STATE(2093), + [sym__local_function_declaration] = STATE(6310), + [sym_expression] = STATE(5660), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3356), + [sym__expression_statement_expression] = STATE(5554), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3102), + [sym_postfix_unary_expression] = STATE(3079), + [sym_prefix_unary_expression] = STATE(3079), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6134), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3102), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3079), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3102), + [sym_member_access_expression] = STATE(2472), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3079), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7425), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(3102), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3102), + [sym_typeof_expression] = STATE(3102), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2472), + [sym_literal] = STATE(3102), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2269), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_top_level] = STATE(2093), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(3612), [sym_preproc_region] = STATE(31), [sym_preproc_endregion] = STATE(31), [sym_preproc_line] = STATE(31), @@ -33215,81 +33101,81 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(31), [sym_preproc_define] = STATE(31), [sym_preproc_undef] = STATE(31), - [aux_sym__class_declaration_initializer_repeat1] = STATE(2286), - [aux_sym__class_declaration_initializer_repeat2] = STATE(2529), - [aux_sym_block_repeat1] = STATE(47), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [aux_sym__class_declaration_initializer_repeat1] = STATE(2277), + [aux_sym__class_declaration_initializer_repeat2] = STATE(2540), + [aux_sym_block_repeat1] = STATE(28), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), - [anon_sym_extern] = ACTIONS(647), + [anon_sym_extern] = ACTIONS(645), [anon_sym_alias] = ACTIONS(29), - [anon_sym_SEMI] = ACTIONS(649), + [anon_sym_SEMI] = ACTIONS(647), [anon_sym_global] = ACTIONS(29), - [anon_sym_using] = ACTIONS(651), - [anon_sym_unsafe] = ACTIONS(653), - [anon_sym_static] = ACTIONS(655), - [anon_sym_LBRACK] = ACTIONS(657), - [anon_sym_COMMA] = ACTIONS(893), - [anon_sym_LPAREN] = ACTIONS(895), - [anon_sym_return] = ACTIONS(659), - [anon_sym_ref] = ACTIONS(897), - [anon_sym_LBRACE] = ACTIONS(663), - [anon_sym_RBRACE] = ACTIONS(915), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_abstract] = ACTIONS(647), - [anon_sym_async] = ACTIONS(655), - [anon_sym_const] = ACTIONS(647), - [anon_sym_file] = ACTIONS(669), - [anon_sym_fixed] = ACTIONS(671), - [anon_sym_internal] = ACTIONS(647), - [anon_sym_new] = ACTIONS(673), - [anon_sym_override] = ACTIONS(647), - [anon_sym_partial] = ACTIONS(647), - [anon_sym_private] = ACTIONS(647), - [anon_sym_protected] = ACTIONS(647), - [anon_sym_public] = ACTIONS(647), - [anon_sym_readonly] = ACTIONS(647), - [anon_sym_required] = ACTIONS(647), - [anon_sym_sealed] = ACTIONS(647), - [anon_sym_virtual] = ACTIONS(647), - [anon_sym_volatile] = ACTIONS(647), - [anon_sym_where] = ACTIONS(29), - [anon_sym_notnull] = ACTIONS(29), - [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(675), - [anon_sym_BANG] = ACTIONS(901), - [anon_sym_TILDE] = ACTIONS(901), - [anon_sym_PLUS_PLUS] = ACTIONS(901), - [anon_sym_DASH_DASH] = ACTIONS(901), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(903), - [anon_sym_DASH] = ACTIONS(903), - [anon_sym_STAR] = ACTIONS(905), - [anon_sym_CARET] = ACTIONS(901), - [anon_sym_AMP] = ACTIONS(901), + [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(661), + [anon_sym_ref] = ACTIONS(715), + [anon_sym_LBRACE] = ACTIONS(665), + [anon_sym_RBRACE] = ACTIONS(917), + [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(673), + [anon_sym_internal] = ACTIONS(645), + [anon_sym_new] = ACTIONS(675), + [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(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_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(677), - [anon_sym_unchecked] = ACTIONS(675), - [anon_sym_continue] = ACTIONS(679), - [anon_sym_do] = ACTIONS(681), - [anon_sym_while] = ACTIONS(683), - [anon_sym_for] = ACTIONS(685), - [anon_sym_lock] = ACTIONS(687), - [anon_sym_yield] = ACTIONS(689), - [anon_sym_switch] = ACTIONS(691), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(907), - [anon_sym_try] = ACTIONS(697), + [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(919), + [anon_sym_default] = ACTIONS(919), + [anon_sym_throw] = ACTIONS(721), + [anon_sym_try] = ACTIONS(703), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(909), + [anon_sym_await] = ACTIONS(723), [anon_sym_foreach] = ACTIONS(117), - [anon_sym_goto] = ACTIONS(701), - [anon_sym_if] = ACTIONS(703), - [anon_sym_DOT_DOT] = ACTIONS(911), + [anon_sym_goto] = ACTIONS(707), + [anon_sym_if] = ACTIONS(709), + [anon_sym_DOT_DOT] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -33314,7 +33200,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(705), + [aux_sym_preproc_if_token1] = ACTIONS(713), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -33331,114 +33217,114 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [32] = { - [sym_attribute_list] = STATE(3645), - [sym__attribute_list] = STATE(3580), - [sym_modifier] = STATE(3878), - [sym_parameter_list] = STATE(7311), - [sym_block] = STATE(2120), - [sym_variable_declaration] = STATE(7689), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(5910), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2247), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5867), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_statement] = STATE(2141), - [sym_break_statement] = STATE(2120), - [sym_checked_statement] = STATE(2120), - [sym_continue_statement] = STATE(2120), - [sym_do_statement] = STATE(2120), - [sym_empty_statement] = STATE(2120), - [sym_expression_statement] = STATE(2120), - [sym_fixed_statement] = STATE(2120), - [sym_for_statement] = STATE(2120), - [sym_return_statement] = STATE(2120), - [sym_lock_statement] = STATE(2120), - [sym_yield_statement] = STATE(2120), - [sym_switch_statement] = STATE(2120), - [sym_throw_statement] = STATE(2120), - [sym_try_statement] = STATE(2120), - [sym_unsafe_statement] = STATE(2120), - [sym_using_statement] = STATE(2120), - [sym_foreach_statement] = STATE(2120), + [sym_attribute_list] = STATE(3612), + [sym__attribute_list] = STATE(3570), + [sym_modifier] = STATE(3845), + [sym_parameter_list] = STATE(7531), + [sym_block] = STATE(2093), + [sym_variable_declaration] = STATE(7607), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(5873), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2238), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5805), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_statement] = STATE(2134), + [sym_break_statement] = STATE(2093), + [sym_checked_statement] = STATE(2093), + [sym_continue_statement] = STATE(2093), + [sym_do_statement] = STATE(2093), + [sym_empty_statement] = STATE(2093), + [sym_expression_statement] = STATE(2093), + [sym_fixed_statement] = STATE(2093), + [sym_for_statement] = STATE(2093), + [sym_return_statement] = STATE(2093), + [sym_lock_statement] = STATE(2093), + [sym_yield_statement] = STATE(2093), + [sym_switch_statement] = STATE(2093), + [sym_throw_statement] = STATE(2093), + [sym_try_statement] = STATE(2093), + [sym_unsafe_statement] = STATE(2093), + [sym_using_statement] = STATE(2093), + [sym_foreach_statement] = STATE(2093), [sym__foreach_statement_initializer] = STATE(93), - [sym_goto_statement] = STATE(2120), - [sym_labeled_statement] = STATE(2120), - [sym_if_statement] = STATE(2120), - [sym_while_statement] = STATE(2120), - [sym_local_declaration_statement] = STATE(2120), - [sym_local_function_statement] = STATE(2120), - [sym__local_function_declaration] = STATE(6322), - [sym_expression] = STATE(4925), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3529), - [sym__expression_statement_expression] = STATE(5635), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3080), - [sym_postfix_unary_expression] = STATE(3111), - [sym_prefix_unary_expression] = STATE(3111), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6154), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3080), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3111), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3080), - [sym_member_access_expression] = STATE(2484), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3111), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7575), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(3080), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3080), - [sym_typeof_expression] = STATE(3080), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2484), - [sym_literal] = STATE(3080), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2282), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_top_level] = STATE(2120), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(3645), + [sym_goto_statement] = STATE(2093), + [sym_labeled_statement] = STATE(2093), + [sym_if_statement] = STATE(2093), + [sym_while_statement] = STATE(2093), + [sym_local_declaration_statement] = STATE(2093), + [sym_local_function_statement] = STATE(2093), + [sym__local_function_declaration] = STATE(6310), + [sym_expression] = STATE(4871), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3526), + [sym__expression_statement_expression] = STATE(5554), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3102), + [sym_postfix_unary_expression] = STATE(3079), + [sym_prefix_unary_expression] = STATE(3079), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6134), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3102), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3079), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3102), + [sym_member_access_expression] = STATE(2472), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3079), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7309), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(3102), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3102), + [sym_typeof_expression] = STATE(3102), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2472), + [sym_literal] = STATE(3102), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2269), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_top_level] = STATE(2093), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(3612), [sym_preproc_region] = STATE(32), [sym_preproc_endregion] = STATE(32), [sym_preproc_line] = STATE(32), @@ -33448,81 +33334,81 @@ 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(2286), - [aux_sym__class_declaration_initializer_repeat2] = STATE(2529), - [aux_sym_block_repeat1] = STATE(45), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), - [sym__identifier_token] = ACTIONS(25), - [anon_sym_extern] = ACTIONS(647), - [anon_sym_alias] = ACTIONS(29), - [anon_sym_SEMI] = ACTIONS(649), - [anon_sym_global] = ACTIONS(29), - [anon_sym_using] = ACTIONS(651), - [anon_sym_unsafe] = ACTIONS(653), - [anon_sym_static] = ACTIONS(655), - [anon_sym_LBRACK] = ACTIONS(657), - [anon_sym_COMMA] = ACTIONS(893), - [anon_sym_LPAREN] = ACTIONS(895), - [anon_sym_return] = ACTIONS(659), - [anon_sym_ref] = ACTIONS(897), - [anon_sym_LBRACE] = ACTIONS(663), - [anon_sym_RBRACE] = ACTIONS(917), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_abstract] = ACTIONS(647), - [anon_sym_async] = ACTIONS(655), - [anon_sym_const] = ACTIONS(647), - [anon_sym_file] = ACTIONS(669), - [anon_sym_fixed] = ACTIONS(671), - [anon_sym_internal] = ACTIONS(647), - [anon_sym_new] = ACTIONS(673), - [anon_sym_override] = ACTIONS(647), - [anon_sym_partial] = ACTIONS(647), - [anon_sym_private] = ACTIONS(647), - [anon_sym_protected] = ACTIONS(647), - [anon_sym_public] = ACTIONS(647), - [anon_sym_readonly] = ACTIONS(647), - [anon_sym_required] = ACTIONS(647), - [anon_sym_sealed] = ACTIONS(647), - [anon_sym_virtual] = ACTIONS(647), - [anon_sym_volatile] = ACTIONS(647), - [anon_sym_where] = ACTIONS(29), - [anon_sym_notnull] = ACTIONS(29), - [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(675), - [anon_sym_BANG] = ACTIONS(901), - [anon_sym_TILDE] = ACTIONS(901), - [anon_sym_PLUS_PLUS] = ACTIONS(901), - [anon_sym_DASH_DASH] = ACTIONS(901), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(903), - [anon_sym_DASH] = ACTIONS(903), - [anon_sym_STAR] = ACTIONS(905), - [anon_sym_CARET] = ACTIONS(901), - [anon_sym_AMP] = ACTIONS(901), + [aux_sym__class_declaration_initializer_repeat1] = STATE(2277), + [aux_sym__class_declaration_initializer_repeat2] = STATE(2540), + [aux_sym_block_repeat1] = STATE(42), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), + [sym__identifier_token] = ACTIONS(25), + [anon_sym_extern] = ACTIONS(645), + [anon_sym_alias] = ACTIONS(29), + [anon_sym_SEMI] = ACTIONS(647), + [anon_sym_global] = ACTIONS(29), + [anon_sym_using] = ACTIONS(649), + [anon_sym_unsafe] = ACTIONS(651), + [anon_sym_static] = ACTIONS(653), + [anon_sym_LBRACK] = ACTIONS(655), + [anon_sym_COMMA] = ACTIONS(725), + [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_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_internal] = ACTIONS(645), + [anon_sym_new] = ACTIONS(675), + [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(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_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_scoped] = ACTIONS(85), [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(91), - [anon_sym_break] = ACTIONS(677), - [anon_sym_unchecked] = ACTIONS(675), - [anon_sym_continue] = ACTIONS(679), - [anon_sym_do] = ACTIONS(681), - [anon_sym_while] = ACTIONS(683), - [anon_sym_for] = ACTIONS(685), - [anon_sym_lock] = ACTIONS(687), - [anon_sym_yield] = ACTIONS(689), - [anon_sym_switch] = ACTIONS(691), + [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(907), - [anon_sym_try] = ACTIONS(697), + [anon_sym_throw] = ACTIONS(701), + [anon_sym_try] = ACTIONS(703), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(909), + [anon_sym_await] = ACTIONS(705), [anon_sym_foreach] = ACTIONS(117), - [anon_sym_goto] = ACTIONS(701), - [anon_sym_if] = ACTIONS(703), - [anon_sym_DOT_DOT] = ACTIONS(911), + [anon_sym_goto] = ACTIONS(707), + [anon_sym_if] = ACTIONS(709), + [anon_sym_DOT_DOT] = ACTIONS(711), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -33547,7 +33433,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(705), + [aux_sym_preproc_if_token1] = ACTIONS(713), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -33564,114 +33450,114 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [33] = { - [sym_attribute_list] = STATE(3645), - [sym__attribute_list] = STATE(3580), - [sym_modifier] = STATE(3878), - [sym_parameter_list] = STATE(7311), - [sym_block] = STATE(2120), - [sym_variable_declaration] = STATE(7689), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(5910), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2247), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5867), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_statement] = STATE(2141), - [sym_break_statement] = STATE(2120), - [sym_checked_statement] = STATE(2120), - [sym_continue_statement] = STATE(2120), - [sym_do_statement] = STATE(2120), - [sym_empty_statement] = STATE(2120), - [sym_expression_statement] = STATE(2120), - [sym_fixed_statement] = STATE(2120), - [sym_for_statement] = STATE(2120), - [sym_return_statement] = STATE(2120), - [sym_lock_statement] = STATE(2120), - [sym_yield_statement] = STATE(2120), - [sym_switch_statement] = STATE(2120), - [sym_throw_statement] = STATE(2120), - [sym_try_statement] = STATE(2120), - [sym_unsafe_statement] = STATE(2120), - [sym_using_statement] = STATE(2120), - [sym_foreach_statement] = STATE(2120), + [sym_attribute_list] = STATE(3612), + [sym__attribute_list] = STATE(3570), + [sym_modifier] = STATE(3845), + [sym_parameter_list] = STATE(7531), + [sym_block] = STATE(2093), + [sym_variable_declaration] = STATE(7607), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(5873), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2238), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5805), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_statement] = STATE(2134), + [sym_break_statement] = STATE(2093), + [sym_checked_statement] = STATE(2093), + [sym_continue_statement] = STATE(2093), + [sym_do_statement] = STATE(2093), + [sym_empty_statement] = STATE(2093), + [sym_expression_statement] = STATE(2093), + [sym_fixed_statement] = STATE(2093), + [sym_for_statement] = STATE(2093), + [sym_return_statement] = STATE(2093), + [sym_lock_statement] = STATE(2093), + [sym_yield_statement] = STATE(2093), + [sym_switch_statement] = STATE(2093), + [sym_throw_statement] = STATE(2093), + [sym_try_statement] = STATE(2093), + [sym_unsafe_statement] = STATE(2093), + [sym_using_statement] = STATE(2093), + [sym_foreach_statement] = STATE(2093), [sym__foreach_statement_initializer] = STATE(93), - [sym_goto_statement] = STATE(2120), - [sym_labeled_statement] = STATE(2120), - [sym_if_statement] = STATE(2120), - [sym_while_statement] = STATE(2120), - [sym_local_declaration_statement] = STATE(2120), - [sym_local_function_statement] = STATE(2120), - [sym__local_function_declaration] = STATE(6322), - [sym_expression] = STATE(4880), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3529), - [sym__expression_statement_expression] = STATE(5635), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3080), - [sym_postfix_unary_expression] = STATE(3111), - [sym_prefix_unary_expression] = STATE(3111), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6154), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3080), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3111), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3080), - [sym_member_access_expression] = STATE(2484), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3111), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7575), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(3080), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3080), - [sym_typeof_expression] = STATE(3080), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2484), - [sym_literal] = STATE(3080), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2282), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_top_level] = STATE(2120), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(3645), + [sym_goto_statement] = STATE(2093), + [sym_labeled_statement] = STATE(2093), + [sym_if_statement] = STATE(2093), + [sym_while_statement] = STATE(2093), + [sym_local_declaration_statement] = STATE(2093), + [sym_local_function_statement] = STATE(2093), + [sym__local_function_declaration] = STATE(6310), + [sym_expression] = STATE(4871), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3526), + [sym__expression_statement_expression] = STATE(5554), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3102), + [sym_postfix_unary_expression] = STATE(3079), + [sym_prefix_unary_expression] = STATE(3079), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6134), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3102), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3079), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3102), + [sym_member_access_expression] = STATE(2472), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3079), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7309), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(3102), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3102), + [sym_typeof_expression] = STATE(3102), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2472), + [sym_literal] = STATE(3102), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2269), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_top_level] = STATE(2093), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(3612), [sym_preproc_region] = STATE(33), [sym_preproc_endregion] = STATE(33), [sym_preproc_line] = STATE(33), @@ -33681,81 +33567,81 @@ 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(2286), - [aux_sym__class_declaration_initializer_repeat2] = STATE(2529), - [aux_sym_block_repeat1] = STATE(51), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), - [sym__identifier_token] = ACTIONS(25), - [anon_sym_extern] = ACTIONS(647), - [anon_sym_alias] = ACTIONS(29), - [anon_sym_SEMI] = ACTIONS(649), - [anon_sym_global] = ACTIONS(29), - [anon_sym_using] = ACTIONS(651), - [anon_sym_unsafe] = ACTIONS(653), - [anon_sym_static] = ACTIONS(655), - [anon_sym_LBRACK] = ACTIONS(657), - [anon_sym_COMMA] = ACTIONS(919), - [anon_sym_LPAREN] = ACTIONS(895), - [anon_sym_return] = ACTIONS(659), - [anon_sym_ref] = ACTIONS(897), - [anon_sym_LBRACE] = ACTIONS(663), - [anon_sym_RBRACE] = ACTIONS(921), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_abstract] = ACTIONS(647), - [anon_sym_async] = ACTIONS(655), - [anon_sym_const] = ACTIONS(647), - [anon_sym_file] = ACTIONS(669), - [anon_sym_fixed] = ACTIONS(671), - [anon_sym_internal] = ACTIONS(647), - [anon_sym_new] = ACTIONS(673), - [anon_sym_override] = ACTIONS(647), - [anon_sym_partial] = ACTIONS(647), - [anon_sym_private] = ACTIONS(647), - [anon_sym_protected] = ACTIONS(647), - [anon_sym_public] = ACTIONS(647), - [anon_sym_readonly] = ACTIONS(647), - [anon_sym_required] = ACTIONS(647), - [anon_sym_sealed] = ACTIONS(647), - [anon_sym_virtual] = ACTIONS(647), - [anon_sym_volatile] = ACTIONS(647), - [anon_sym_where] = ACTIONS(29), - [anon_sym_notnull] = ACTIONS(29), - [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(675), - [anon_sym_BANG] = ACTIONS(901), - [anon_sym_TILDE] = ACTIONS(901), - [anon_sym_PLUS_PLUS] = ACTIONS(901), - [anon_sym_DASH_DASH] = ACTIONS(901), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(903), - [anon_sym_DASH] = ACTIONS(903), - [anon_sym_STAR] = ACTIONS(905), - [anon_sym_CARET] = ACTIONS(901), - [anon_sym_AMP] = ACTIONS(901), + [aux_sym__class_declaration_initializer_repeat1] = STATE(2277), + [aux_sym__class_declaration_initializer_repeat2] = STATE(2540), + [aux_sym_block_repeat1] = STATE(48), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), + [sym__identifier_token] = ACTIONS(25), + [anon_sym_extern] = ACTIONS(645), + [anon_sym_alias] = ACTIONS(29), + [anon_sym_SEMI] = ACTIONS(647), + [anon_sym_global] = ACTIONS(29), + [anon_sym_using] = ACTIONS(649), + [anon_sym_unsafe] = ACTIONS(651), + [anon_sym_static] = ACTIONS(653), + [anon_sym_LBRACK] = ACTIONS(655), + [anon_sym_COMMA] = ACTIONS(725), + [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_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_internal] = ACTIONS(645), + [anon_sym_new] = ACTIONS(675), + [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(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_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_scoped] = ACTIONS(85), [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(91), - [anon_sym_break] = ACTIONS(677), - [anon_sym_unchecked] = ACTIONS(675), - [anon_sym_continue] = ACTIONS(679), - [anon_sym_do] = ACTIONS(681), - [anon_sym_while] = ACTIONS(683), - [anon_sym_for] = ACTIONS(685), - [anon_sym_lock] = ACTIONS(687), - [anon_sym_yield] = ACTIONS(689), - [anon_sym_switch] = ACTIONS(691), + [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(907), - [anon_sym_try] = ACTIONS(697), + [anon_sym_throw] = ACTIONS(701), + [anon_sym_try] = ACTIONS(703), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(909), + [anon_sym_await] = ACTIONS(705), [anon_sym_foreach] = ACTIONS(117), - [anon_sym_goto] = ACTIONS(701), - [anon_sym_if] = ACTIONS(703), - [anon_sym_DOT_DOT] = ACTIONS(911), + [anon_sym_goto] = ACTIONS(707), + [anon_sym_if] = ACTIONS(709), + [anon_sym_DOT_DOT] = ACTIONS(711), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -33780,7 +33666,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(705), + [aux_sym_preproc_if_token1] = ACTIONS(713), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -33797,114 +33683,114 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [34] = { - [sym_attribute_list] = STATE(3645), - [sym__attribute_list] = STATE(3580), - [sym_modifier] = STATE(3878), - [sym_parameter_list] = STATE(7311), - [sym_block] = STATE(2120), - [sym_variable_declaration] = STATE(7689), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(5910), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2247), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5867), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_statement] = STATE(2141), - [sym_break_statement] = STATE(2120), - [sym_checked_statement] = STATE(2120), - [sym_continue_statement] = STATE(2120), - [sym_do_statement] = STATE(2120), - [sym_empty_statement] = STATE(2120), - [sym_expression_statement] = STATE(2120), - [sym_fixed_statement] = STATE(2120), - [sym_for_statement] = STATE(2120), - [sym_return_statement] = STATE(2120), - [sym_lock_statement] = STATE(2120), - [sym_yield_statement] = STATE(2120), - [sym_switch_statement] = STATE(2120), - [sym_throw_statement] = STATE(2120), - [sym_try_statement] = STATE(2120), - [sym_unsafe_statement] = STATE(2120), - [sym_using_statement] = STATE(2120), - [sym_foreach_statement] = STATE(2120), + [sym_attribute_list] = STATE(3612), + [sym__attribute_list] = STATE(3570), + [sym_modifier] = STATE(3845), + [sym_parameter_list] = STATE(7531), + [sym_block] = STATE(2093), + [sym_variable_declaration] = STATE(7607), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(5873), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2238), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5805), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_statement] = STATE(2134), + [sym_break_statement] = STATE(2093), + [sym_checked_statement] = STATE(2093), + [sym_continue_statement] = STATE(2093), + [sym_do_statement] = STATE(2093), + [sym_empty_statement] = STATE(2093), + [sym_expression_statement] = STATE(2093), + [sym_fixed_statement] = STATE(2093), + [sym_for_statement] = STATE(2093), + [sym_return_statement] = STATE(2093), + [sym_lock_statement] = STATE(2093), + [sym_yield_statement] = STATE(2093), + [sym_switch_statement] = STATE(2093), + [sym_throw_statement] = STATE(2093), + [sym_try_statement] = STATE(2093), + [sym_unsafe_statement] = STATE(2093), + [sym_using_statement] = STATE(2093), + [sym_foreach_statement] = STATE(2093), [sym__foreach_statement_initializer] = STATE(93), - [sym_goto_statement] = STATE(2120), - [sym_labeled_statement] = STATE(2120), - [sym_if_statement] = STATE(2120), - [sym_while_statement] = STATE(2120), - [sym_local_declaration_statement] = STATE(2120), - [sym_local_function_statement] = STATE(2120), - [sym__local_function_declaration] = STATE(6322), - [sym_expression] = STATE(5021), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3529), - [sym__expression_statement_expression] = STATE(5635), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3080), - [sym_postfix_unary_expression] = STATE(3111), - [sym_prefix_unary_expression] = STATE(3111), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6154), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3080), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3111), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3080), - [sym_member_access_expression] = STATE(2484), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3111), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7575), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(3080), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3080), - [sym_typeof_expression] = STATE(3080), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2484), - [sym_literal] = STATE(3080), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2282), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_top_level] = STATE(2120), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(3645), + [sym_goto_statement] = STATE(2093), + [sym_labeled_statement] = STATE(2093), + [sym_if_statement] = STATE(2093), + [sym_while_statement] = STATE(2093), + [sym_local_declaration_statement] = STATE(2093), + [sym_local_function_statement] = STATE(2093), + [sym__local_function_declaration] = STATE(6310), + [sym_expression] = STATE(4871), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3526), + [sym__expression_statement_expression] = STATE(5554), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3102), + [sym_postfix_unary_expression] = STATE(3079), + [sym_prefix_unary_expression] = STATE(3079), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6134), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3102), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3079), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3102), + [sym_member_access_expression] = STATE(2472), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3079), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7309), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(3102), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3102), + [sym_typeof_expression] = STATE(3102), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2472), + [sym_literal] = STATE(3102), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2269), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_top_level] = STATE(2093), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(3612), [sym_preproc_region] = STATE(34), [sym_preproc_endregion] = STATE(34), [sym_preproc_line] = STATE(34), @@ -33914,81 +33800,81 @@ 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(2286), - [aux_sym__class_declaration_initializer_repeat2] = STATE(2529), - [aux_sym_block_repeat1] = STATE(54), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), - [sym__identifier_token] = ACTIONS(25), - [anon_sym_extern] = ACTIONS(647), - [anon_sym_alias] = ACTIONS(29), - [anon_sym_SEMI] = ACTIONS(649), - [anon_sym_global] = ACTIONS(29), - [anon_sym_using] = ACTIONS(651), - [anon_sym_unsafe] = ACTIONS(653), - [anon_sym_static] = ACTIONS(655), - [anon_sym_LBRACK] = ACTIONS(657), - [anon_sym_COMMA] = ACTIONS(923), - [anon_sym_LPAREN] = ACTIONS(895), - [anon_sym_return] = ACTIONS(659), - [anon_sym_ref] = ACTIONS(897), - [anon_sym_LBRACE] = ACTIONS(663), + [aux_sym__class_declaration_initializer_repeat1] = STATE(2277), + [aux_sym__class_declaration_initializer_repeat2] = STATE(2540), + [aux_sym_block_repeat1] = STATE(44), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), + [sym__identifier_token] = ACTIONS(25), + [anon_sym_extern] = ACTIONS(645), + [anon_sym_alias] = ACTIONS(29), + [anon_sym_SEMI] = ACTIONS(647), + [anon_sym_global] = ACTIONS(29), + [anon_sym_using] = ACTIONS(649), + [anon_sym_unsafe] = ACTIONS(651), + [anon_sym_static] = ACTIONS(653), + [anon_sym_LBRACK] = ACTIONS(655), + [anon_sym_COMMA] = ACTIONS(725), + [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(667), - [anon_sym_abstract] = ACTIONS(647), - [anon_sym_async] = ACTIONS(655), - [anon_sym_const] = ACTIONS(647), - [anon_sym_file] = ACTIONS(669), - [anon_sym_fixed] = ACTIONS(671), - [anon_sym_internal] = ACTIONS(647), - [anon_sym_new] = ACTIONS(673), - [anon_sym_override] = ACTIONS(647), - [anon_sym_partial] = ACTIONS(647), - [anon_sym_private] = ACTIONS(647), - [anon_sym_protected] = ACTIONS(647), - [anon_sym_public] = ACTIONS(647), - [anon_sym_readonly] = ACTIONS(647), - [anon_sym_required] = ACTIONS(647), - [anon_sym_sealed] = ACTIONS(647), - [anon_sym_virtual] = ACTIONS(647), - [anon_sym_volatile] = ACTIONS(647), - [anon_sym_where] = ACTIONS(29), - [anon_sym_notnull] = ACTIONS(29), - [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(675), - [anon_sym_BANG] = ACTIONS(901), - [anon_sym_TILDE] = ACTIONS(901), - [anon_sym_PLUS_PLUS] = ACTIONS(901), - [anon_sym_DASH_DASH] = ACTIONS(901), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(903), - [anon_sym_DASH] = ACTIONS(903), - [anon_sym_STAR] = ACTIONS(905), - [anon_sym_CARET] = ACTIONS(901), - [anon_sym_AMP] = ACTIONS(901), + [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(673), + [anon_sym_internal] = ACTIONS(645), + [anon_sym_new] = ACTIONS(675), + [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(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_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_scoped] = ACTIONS(85), [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(91), - [anon_sym_break] = ACTIONS(677), - [anon_sym_unchecked] = ACTIONS(675), - [anon_sym_continue] = ACTIONS(679), - [anon_sym_do] = ACTIONS(681), - [anon_sym_while] = ACTIONS(683), - [anon_sym_for] = ACTIONS(685), - [anon_sym_lock] = ACTIONS(687), - [anon_sym_yield] = ACTIONS(689), - [anon_sym_switch] = ACTIONS(691), + [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(907), - [anon_sym_try] = ACTIONS(697), + [anon_sym_throw] = ACTIONS(701), + [anon_sym_try] = ACTIONS(703), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(909), + [anon_sym_await] = ACTIONS(705), [anon_sym_foreach] = ACTIONS(117), - [anon_sym_goto] = ACTIONS(701), - [anon_sym_if] = ACTIONS(703), - [anon_sym_DOT_DOT] = ACTIONS(911), + [anon_sym_goto] = ACTIONS(707), + [anon_sym_if] = ACTIONS(709), + [anon_sym_DOT_DOT] = ACTIONS(711), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -34013,7 +33899,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(705), + [aux_sym_preproc_if_token1] = ACTIONS(713), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -34030,114 +33916,114 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [35] = { - [sym_attribute_list] = STATE(3645), - [sym__attribute_list] = STATE(3580), - [sym_modifier] = STATE(3878), - [sym_parameter_list] = STATE(7311), - [sym_block] = STATE(2120), - [sym_variable_declaration] = STATE(7689), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(5910), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2247), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5867), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_statement] = STATE(2141), - [sym_break_statement] = STATE(2120), - [sym_checked_statement] = STATE(2120), - [sym_continue_statement] = STATE(2120), - [sym_do_statement] = STATE(2120), - [sym_empty_statement] = STATE(2120), - [sym_expression_statement] = STATE(2120), - [sym_fixed_statement] = STATE(2120), - [sym_for_statement] = STATE(2120), - [sym_return_statement] = STATE(2120), - [sym_lock_statement] = STATE(2120), - [sym_yield_statement] = STATE(2120), - [sym_switch_statement] = STATE(2120), - [sym_throw_statement] = STATE(2120), - [sym_try_statement] = STATE(2120), - [sym_unsafe_statement] = STATE(2120), - [sym_using_statement] = STATE(2120), - [sym_foreach_statement] = STATE(2120), + [sym_attribute_list] = STATE(3612), + [sym__attribute_list] = STATE(3570), + [sym_modifier] = STATE(3845), + [sym_parameter_list] = STATE(7531), + [sym_block] = STATE(2093), + [sym_variable_declaration] = STATE(7607), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(5152), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2196), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5805), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_statement] = STATE(2134), + [sym_break_statement] = STATE(2093), + [sym_checked_statement] = STATE(2093), + [sym_continue_statement] = STATE(2093), + [sym_do_statement] = STATE(2093), + [sym_empty_statement] = STATE(2093), + [sym_expression_statement] = STATE(2093), + [sym_fixed_statement] = STATE(2093), + [sym_for_statement] = STATE(2093), + [sym_return_statement] = STATE(2093), + [sym_lock_statement] = STATE(2093), + [sym_yield_statement] = STATE(2093), + [sym_switch_statement] = STATE(2093), + [sym_throw_statement] = STATE(2093), + [sym_try_statement] = STATE(2093), + [sym_unsafe_statement] = STATE(2093), + [sym_using_statement] = STATE(2093), + [sym_foreach_statement] = STATE(2093), [sym__foreach_statement_initializer] = STATE(93), - [sym_goto_statement] = STATE(2120), - [sym_labeled_statement] = STATE(2120), - [sym_if_statement] = STATE(2120), - [sym_while_statement] = STATE(2120), - [sym_local_declaration_statement] = STATE(2120), - [sym_local_function_statement] = STATE(2120), - [sym__local_function_declaration] = STATE(6322), - [sym_expression] = STATE(5040), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3529), - [sym__expression_statement_expression] = STATE(5635), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3080), - [sym_postfix_unary_expression] = STATE(3111), - [sym_prefix_unary_expression] = STATE(3111), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6154), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3080), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3111), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3080), - [sym_member_access_expression] = STATE(2484), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3111), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7575), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(3080), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3080), - [sym_typeof_expression] = STATE(3080), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2484), - [sym_literal] = STATE(3080), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2282), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_top_level] = STATE(2120), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(3645), + [sym_goto_statement] = STATE(2093), + [sym_labeled_statement] = STATE(2093), + [sym_if_statement] = STATE(2093), + [sym_while_statement] = STATE(2093), + [sym_local_declaration_statement] = STATE(2093), + [sym_local_function_statement] = STATE(2093), + [sym__local_function_declaration] = STATE(6310), + [sym_expression] = STATE(5660), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3356), + [sym__expression_statement_expression] = STATE(5554), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3102), + [sym_postfix_unary_expression] = STATE(3079), + [sym_prefix_unary_expression] = STATE(3079), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6134), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3102), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3079), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3102), + [sym_member_access_expression] = STATE(2472), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3079), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7425), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(3102), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3102), + [sym_typeof_expression] = STATE(3102), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2472), + [sym_literal] = STATE(3102), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2269), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_top_level] = STATE(2093), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(3612), [sym_preproc_region] = STATE(35), [sym_preproc_endregion] = STATE(35), [sym_preproc_line] = STATE(35), @@ -34147,81 +34033,81 @@ 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(2286), - [aux_sym__class_declaration_initializer_repeat2] = STATE(2529), - [aux_sym_block_repeat1] = STATE(57), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [aux_sym__class_declaration_initializer_repeat1] = STATE(2277), + [aux_sym__class_declaration_initializer_repeat2] = STATE(2540), + [aux_sym_block_repeat1] = STATE(28), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), - [anon_sym_extern] = ACTIONS(647), + [anon_sym_extern] = ACTIONS(645), [anon_sym_alias] = ACTIONS(29), - [anon_sym_SEMI] = ACTIONS(649), + [anon_sym_SEMI] = ACTIONS(647), [anon_sym_global] = ACTIONS(29), - [anon_sym_using] = ACTIONS(651), - [anon_sym_unsafe] = ACTIONS(653), - [anon_sym_static] = ACTIONS(655), - [anon_sym_LBRACK] = ACTIONS(657), - [anon_sym_COMMA] = ACTIONS(927), - [anon_sym_LPAREN] = ACTIONS(895), - [anon_sym_return] = ACTIONS(659), - [anon_sym_ref] = ACTIONS(897), - [anon_sym_LBRACE] = ACTIONS(663), - [anon_sym_RBRACE] = ACTIONS(929), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_abstract] = ACTIONS(647), - [anon_sym_async] = ACTIONS(655), - [anon_sym_const] = ACTIONS(647), - [anon_sym_file] = ACTIONS(669), - [anon_sym_fixed] = ACTIONS(671), - [anon_sym_internal] = ACTIONS(647), - [anon_sym_new] = ACTIONS(673), - [anon_sym_override] = ACTIONS(647), - [anon_sym_partial] = ACTIONS(647), - [anon_sym_private] = ACTIONS(647), - [anon_sym_protected] = ACTIONS(647), - [anon_sym_public] = ACTIONS(647), - [anon_sym_readonly] = ACTIONS(647), - [anon_sym_required] = ACTIONS(647), - [anon_sym_sealed] = ACTIONS(647), - [anon_sym_virtual] = ACTIONS(647), - [anon_sym_volatile] = ACTIONS(647), - [anon_sym_where] = ACTIONS(29), - [anon_sym_notnull] = ACTIONS(29), - [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(675), - [anon_sym_BANG] = ACTIONS(901), - [anon_sym_TILDE] = ACTIONS(901), - [anon_sym_PLUS_PLUS] = ACTIONS(901), - [anon_sym_DASH_DASH] = ACTIONS(901), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(903), - [anon_sym_DASH] = ACTIONS(903), - [anon_sym_STAR] = ACTIONS(905), - [anon_sym_CARET] = ACTIONS(901), - [anon_sym_AMP] = ACTIONS(901), + [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(661), + [anon_sym_ref] = ACTIONS(715), + [anon_sym_LBRACE] = ACTIONS(665), + [anon_sym_RBRACE] = ACTIONS(911), + [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(673), + [anon_sym_internal] = ACTIONS(645), + [anon_sym_new] = ACTIONS(675), + [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(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_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(677), - [anon_sym_unchecked] = ACTIONS(675), - [anon_sym_continue] = ACTIONS(679), - [anon_sym_do] = ACTIONS(681), - [anon_sym_while] = ACTIONS(683), - [anon_sym_for] = ACTIONS(685), - [anon_sym_lock] = ACTIONS(687), - [anon_sym_yield] = ACTIONS(689), - [anon_sym_switch] = ACTIONS(691), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(907), - [anon_sym_try] = ACTIONS(697), + [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(913), + [anon_sym_default] = ACTIONS(913), + [anon_sym_throw] = ACTIONS(721), + [anon_sym_try] = ACTIONS(703), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(909), + [anon_sym_await] = ACTIONS(723), [anon_sym_foreach] = ACTIONS(117), - [anon_sym_goto] = ACTIONS(701), - [anon_sym_if] = ACTIONS(703), - [anon_sym_DOT_DOT] = ACTIONS(911), + [anon_sym_goto] = ACTIONS(707), + [anon_sym_if] = ACTIONS(709), + [anon_sym_DOT_DOT] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -34246,7 +34132,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(705), + [aux_sym_preproc_if_token1] = ACTIONS(713), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -34263,114 +34149,114 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [36] = { - [sym_attribute_list] = STATE(3645), - [sym__attribute_list] = STATE(3580), - [sym_modifier] = STATE(3878), - [sym_parameter_list] = STATE(7311), - [sym_block] = STATE(2120), - [sym_variable_declaration] = STATE(7689), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(5910), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2247), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5867), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_statement] = STATE(2141), - [sym_break_statement] = STATE(2120), - [sym_checked_statement] = STATE(2120), - [sym_continue_statement] = STATE(2120), - [sym_do_statement] = STATE(2120), - [sym_empty_statement] = STATE(2120), - [sym_expression_statement] = STATE(2120), - [sym_fixed_statement] = STATE(2120), - [sym_for_statement] = STATE(2120), - [sym_return_statement] = STATE(2120), - [sym_lock_statement] = STATE(2120), - [sym_yield_statement] = STATE(2120), - [sym_switch_statement] = STATE(2120), - [sym_throw_statement] = STATE(2120), - [sym_try_statement] = STATE(2120), - [sym_unsafe_statement] = STATE(2120), - [sym_using_statement] = STATE(2120), - [sym_foreach_statement] = STATE(2120), + [sym_attribute_list] = STATE(3612), + [sym__attribute_list] = STATE(3570), + [sym_modifier] = STATE(3845), + [sym_parameter_list] = STATE(7531), + [sym_block] = STATE(2093), + [sym_variable_declaration] = STATE(7607), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(5873), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2238), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5805), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_statement] = STATE(2134), + [sym_break_statement] = STATE(2093), + [sym_checked_statement] = STATE(2093), + [sym_continue_statement] = STATE(2093), + [sym_do_statement] = STATE(2093), + [sym_empty_statement] = STATE(2093), + [sym_expression_statement] = STATE(2093), + [sym_fixed_statement] = STATE(2093), + [sym_for_statement] = STATE(2093), + [sym_return_statement] = STATE(2093), + [sym_lock_statement] = STATE(2093), + [sym_yield_statement] = STATE(2093), + [sym_switch_statement] = STATE(2093), + [sym_throw_statement] = STATE(2093), + [sym_try_statement] = STATE(2093), + [sym_unsafe_statement] = STATE(2093), + [sym_using_statement] = STATE(2093), + [sym_foreach_statement] = STATE(2093), [sym__foreach_statement_initializer] = STATE(93), - [sym_goto_statement] = STATE(2120), - [sym_labeled_statement] = STATE(2120), - [sym_if_statement] = STATE(2120), - [sym_while_statement] = STATE(2120), - [sym_local_declaration_statement] = STATE(2120), - [sym_local_function_statement] = STATE(2120), - [sym__local_function_declaration] = STATE(6322), - [sym_expression] = STATE(4873), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3529), - [sym__expression_statement_expression] = STATE(5635), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3080), - [sym_postfix_unary_expression] = STATE(3111), - [sym_prefix_unary_expression] = STATE(3111), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6154), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3080), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3111), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3080), - [sym_member_access_expression] = STATE(2484), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3111), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7575), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(3080), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3080), - [sym_typeof_expression] = STATE(3080), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2484), - [sym_literal] = STATE(3080), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2282), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_top_level] = STATE(2120), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(3645), + [sym_goto_statement] = STATE(2093), + [sym_labeled_statement] = STATE(2093), + [sym_if_statement] = STATE(2093), + [sym_while_statement] = STATE(2093), + [sym_local_declaration_statement] = STATE(2093), + [sym_local_function_statement] = STATE(2093), + [sym__local_function_declaration] = STATE(6310), + [sym_expression] = STATE(4998), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3526), + [sym__expression_statement_expression] = STATE(5554), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3102), + [sym_postfix_unary_expression] = STATE(3079), + [sym_prefix_unary_expression] = STATE(3079), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6134), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3102), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3079), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3102), + [sym_member_access_expression] = STATE(2472), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3079), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7309), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(3102), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3102), + [sym_typeof_expression] = STATE(3102), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2472), + [sym_literal] = STATE(3102), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2269), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_top_level] = STATE(2093), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(3612), [sym_preproc_region] = STATE(36), [sym_preproc_endregion] = STATE(36), [sym_preproc_line] = STATE(36), @@ -34380,81 +34266,81 @@ 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(2286), - [aux_sym__class_declaration_initializer_repeat2] = STATE(2529), - [aux_sym_block_repeat1] = STATE(59), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [aux_sym__class_declaration_initializer_repeat1] = STATE(2277), + [aux_sym__class_declaration_initializer_repeat2] = STATE(2540), + [aux_sym_block_repeat1] = STATE(54), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), - [anon_sym_extern] = ACTIONS(647), + [anon_sym_extern] = ACTIONS(645), [anon_sym_alias] = ACTIONS(29), - [anon_sym_SEMI] = ACTIONS(649), + [anon_sym_SEMI] = ACTIONS(647), [anon_sym_global] = ACTIONS(29), - [anon_sym_using] = ACTIONS(651), - [anon_sym_unsafe] = ACTIONS(653), - [anon_sym_static] = ACTIONS(655), - [anon_sym_LBRACK] = ACTIONS(657), - [anon_sym_COMMA] = ACTIONS(931), - [anon_sym_LPAREN] = ACTIONS(895), - [anon_sym_return] = ACTIONS(659), - [anon_sym_ref] = ACTIONS(897), - [anon_sym_LBRACE] = ACTIONS(663), - [anon_sym_RBRACE] = ACTIONS(933), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_abstract] = ACTIONS(647), - [anon_sym_async] = ACTIONS(655), - [anon_sym_const] = ACTIONS(647), - [anon_sym_file] = ACTIONS(669), - [anon_sym_fixed] = ACTIONS(671), - [anon_sym_internal] = ACTIONS(647), - [anon_sym_new] = ACTIONS(673), - [anon_sym_override] = ACTIONS(647), - [anon_sym_partial] = ACTIONS(647), - [anon_sym_private] = ACTIONS(647), - [anon_sym_protected] = ACTIONS(647), - [anon_sym_public] = ACTIONS(647), - [anon_sym_readonly] = ACTIONS(647), - [anon_sym_required] = ACTIONS(647), - [anon_sym_sealed] = ACTIONS(647), - [anon_sym_virtual] = ACTIONS(647), - [anon_sym_volatile] = ACTIONS(647), - [anon_sym_where] = ACTIONS(29), - [anon_sym_notnull] = ACTIONS(29), - [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(675), - [anon_sym_BANG] = ACTIONS(901), - [anon_sym_TILDE] = ACTIONS(901), - [anon_sym_PLUS_PLUS] = ACTIONS(901), - [anon_sym_DASH_DASH] = ACTIONS(901), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(903), - [anon_sym_DASH] = ACTIONS(903), - [anon_sym_STAR] = ACTIONS(905), - [anon_sym_CARET] = ACTIONS(901), - [anon_sym_AMP] = ACTIONS(901), + [anon_sym_using] = ACTIONS(649), + [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_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_internal] = ACTIONS(645), + [anon_sym_new] = ACTIONS(675), + [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(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_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_scoped] = ACTIONS(85), [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(91), - [anon_sym_break] = ACTIONS(677), - [anon_sym_unchecked] = ACTIONS(675), - [anon_sym_continue] = ACTIONS(679), - [anon_sym_do] = ACTIONS(681), - [anon_sym_while] = ACTIONS(683), - [anon_sym_for] = ACTIONS(685), - [anon_sym_lock] = ACTIONS(687), - [anon_sym_yield] = ACTIONS(689), - [anon_sym_switch] = ACTIONS(691), + [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(907), - [anon_sym_try] = ACTIONS(697), + [anon_sym_throw] = ACTIONS(701), + [anon_sym_try] = ACTIONS(703), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(909), + [anon_sym_await] = ACTIONS(705), [anon_sym_foreach] = ACTIONS(117), - [anon_sym_goto] = ACTIONS(701), - [anon_sym_if] = ACTIONS(703), - [anon_sym_DOT_DOT] = ACTIONS(911), + [anon_sym_goto] = ACTIONS(707), + [anon_sym_if] = ACTIONS(709), + [anon_sym_DOT_DOT] = ACTIONS(711), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -34479,7 +34365,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(705), + [aux_sym_preproc_if_token1] = ACTIONS(713), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -34496,114 +34382,114 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [37] = { - [sym_attribute_list] = STATE(3645), - [sym__attribute_list] = STATE(3580), - [sym_modifier] = STATE(3878), - [sym_parameter_list] = STATE(7311), - [sym_block] = STATE(2120), - [sym_variable_declaration] = STATE(7689), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(5910), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2247), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5867), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_statement] = STATE(2141), - [sym_break_statement] = STATE(2120), - [sym_checked_statement] = STATE(2120), - [sym_continue_statement] = STATE(2120), - [sym_do_statement] = STATE(2120), - [sym_empty_statement] = STATE(2120), - [sym_expression_statement] = STATE(2120), - [sym_fixed_statement] = STATE(2120), - [sym_for_statement] = STATE(2120), - [sym_return_statement] = STATE(2120), - [sym_lock_statement] = STATE(2120), - [sym_yield_statement] = STATE(2120), - [sym_switch_statement] = STATE(2120), - [sym_throw_statement] = STATE(2120), - [sym_try_statement] = STATE(2120), - [sym_unsafe_statement] = STATE(2120), - [sym_using_statement] = STATE(2120), - [sym_foreach_statement] = STATE(2120), + [sym_attribute_list] = STATE(3612), + [sym__attribute_list] = STATE(3570), + [sym_modifier] = STATE(3845), + [sym_parameter_list] = STATE(7531), + [sym_block] = STATE(2093), + [sym_variable_declaration] = STATE(7607), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(5873), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2238), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5805), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_statement] = STATE(2134), + [sym_break_statement] = STATE(2093), + [sym_checked_statement] = STATE(2093), + [sym_continue_statement] = STATE(2093), + [sym_do_statement] = STATE(2093), + [sym_empty_statement] = STATE(2093), + [sym_expression_statement] = STATE(2093), + [sym_fixed_statement] = STATE(2093), + [sym_for_statement] = STATE(2093), + [sym_return_statement] = STATE(2093), + [sym_lock_statement] = STATE(2093), + [sym_yield_statement] = STATE(2093), + [sym_switch_statement] = STATE(2093), + [sym_throw_statement] = STATE(2093), + [sym_try_statement] = STATE(2093), + [sym_unsafe_statement] = STATE(2093), + [sym_using_statement] = STATE(2093), + [sym_foreach_statement] = STATE(2093), [sym__foreach_statement_initializer] = STATE(93), - [sym_goto_statement] = STATE(2120), - [sym_labeled_statement] = STATE(2120), - [sym_if_statement] = STATE(2120), - [sym_while_statement] = STATE(2120), - [sym_local_declaration_statement] = STATE(2120), - [sym_local_function_statement] = STATE(2120), - [sym__local_function_declaration] = STATE(6322), - [sym_expression] = STATE(4902), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3529), - [sym__expression_statement_expression] = STATE(5635), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3080), - [sym_postfix_unary_expression] = STATE(3111), - [sym_prefix_unary_expression] = STATE(3111), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6154), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3080), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3111), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3080), - [sym_member_access_expression] = STATE(2484), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3111), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7575), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(3080), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3080), - [sym_typeof_expression] = STATE(3080), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2484), - [sym_literal] = STATE(3080), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2282), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_top_level] = STATE(2120), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(3645), + [sym_goto_statement] = STATE(2093), + [sym_labeled_statement] = STATE(2093), + [sym_if_statement] = STATE(2093), + [sym_while_statement] = STATE(2093), + [sym_local_declaration_statement] = STATE(2093), + [sym_local_function_statement] = STATE(2093), + [sym__local_function_declaration] = STATE(6310), + [sym_expression] = STATE(4917), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3526), + [sym__expression_statement_expression] = STATE(5554), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3102), + [sym_postfix_unary_expression] = STATE(3079), + [sym_prefix_unary_expression] = STATE(3079), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6134), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3102), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3079), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3102), + [sym_member_access_expression] = STATE(2472), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3079), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7309), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(3102), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3102), + [sym_typeof_expression] = STATE(3102), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2472), + [sym_literal] = STATE(3102), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2269), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_top_level] = STATE(2093), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(3612), [sym_preproc_region] = STATE(37), [sym_preproc_endregion] = STATE(37), [sym_preproc_line] = STATE(37), @@ -34613,81 +34499,81 @@ 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(2286), - [aux_sym__class_declaration_initializer_repeat2] = STATE(2529), - [aux_sym_block_repeat1] = STATE(41), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [aux_sym__class_declaration_initializer_repeat1] = STATE(2277), + [aux_sym__class_declaration_initializer_repeat2] = STATE(2540), + [aux_sym_block_repeat1] = STATE(56), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), - [anon_sym_extern] = ACTIONS(647), + [anon_sym_extern] = ACTIONS(645), [anon_sym_alias] = ACTIONS(29), - [anon_sym_SEMI] = ACTIONS(649), + [anon_sym_SEMI] = ACTIONS(647), [anon_sym_global] = ACTIONS(29), - [anon_sym_using] = ACTIONS(651), - [anon_sym_unsafe] = ACTIONS(653), - [anon_sym_static] = ACTIONS(655), - [anon_sym_LBRACK] = ACTIONS(657), - [anon_sym_COMMA] = ACTIONS(935), - [anon_sym_LPAREN] = ACTIONS(895), - [anon_sym_return] = ACTIONS(659), - [anon_sym_ref] = ACTIONS(897), - [anon_sym_LBRACE] = ACTIONS(663), - [anon_sym_RBRACE] = ACTIONS(937), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_abstract] = ACTIONS(647), - [anon_sym_async] = ACTIONS(655), - [anon_sym_const] = ACTIONS(647), - [anon_sym_file] = ACTIONS(669), - [anon_sym_fixed] = ACTIONS(671), - [anon_sym_internal] = ACTIONS(647), - [anon_sym_new] = ACTIONS(673), - [anon_sym_override] = ACTIONS(647), - [anon_sym_partial] = ACTIONS(647), - [anon_sym_private] = ACTIONS(647), - [anon_sym_protected] = ACTIONS(647), - [anon_sym_public] = ACTIONS(647), - [anon_sym_readonly] = ACTIONS(647), - [anon_sym_required] = ACTIONS(647), - [anon_sym_sealed] = ACTIONS(647), - [anon_sym_virtual] = ACTIONS(647), - [anon_sym_volatile] = ACTIONS(647), - [anon_sym_where] = ACTIONS(29), - [anon_sym_notnull] = ACTIONS(29), - [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(675), - [anon_sym_BANG] = ACTIONS(901), - [anon_sym_TILDE] = ACTIONS(901), - [anon_sym_PLUS_PLUS] = ACTIONS(901), - [anon_sym_DASH_DASH] = ACTIONS(901), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(903), - [anon_sym_DASH] = ACTIONS(903), - [anon_sym_STAR] = ACTIONS(905), - [anon_sym_CARET] = ACTIONS(901), - [anon_sym_AMP] = ACTIONS(901), + [anon_sym_using] = ACTIONS(649), + [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_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_internal] = ACTIONS(645), + [anon_sym_new] = ACTIONS(675), + [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(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_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_scoped] = ACTIONS(85), [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(91), - [anon_sym_break] = ACTIONS(677), - [anon_sym_unchecked] = ACTIONS(675), - [anon_sym_continue] = ACTIONS(679), - [anon_sym_do] = ACTIONS(681), - [anon_sym_while] = ACTIONS(683), - [anon_sym_for] = ACTIONS(685), - [anon_sym_lock] = ACTIONS(687), - [anon_sym_yield] = ACTIONS(689), - [anon_sym_switch] = ACTIONS(691), + [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(907), - [anon_sym_try] = ACTIONS(697), + [anon_sym_throw] = ACTIONS(701), + [anon_sym_try] = ACTIONS(703), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(909), + [anon_sym_await] = ACTIONS(705), [anon_sym_foreach] = ACTIONS(117), - [anon_sym_goto] = ACTIONS(701), - [anon_sym_if] = ACTIONS(703), - [anon_sym_DOT_DOT] = ACTIONS(911), + [anon_sym_goto] = ACTIONS(707), + [anon_sym_if] = ACTIONS(709), + [anon_sym_DOT_DOT] = ACTIONS(711), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -34712,7 +34598,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(705), + [aux_sym_preproc_if_token1] = ACTIONS(713), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -34729,114 +34615,114 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [38] = { - [sym_attribute_list] = STATE(3645), - [sym__attribute_list] = STATE(3580), - [sym_modifier] = STATE(3878), - [sym_parameter_list] = STATE(7311), - [sym_block] = STATE(2120), - [sym_variable_declaration] = STATE(7689), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(5910), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2247), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5867), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_statement] = STATE(2141), - [sym_break_statement] = STATE(2120), - [sym_checked_statement] = STATE(2120), - [sym_continue_statement] = STATE(2120), - [sym_do_statement] = STATE(2120), - [sym_empty_statement] = STATE(2120), - [sym_expression_statement] = STATE(2120), - [sym_fixed_statement] = STATE(2120), - [sym_for_statement] = STATE(2120), - [sym_return_statement] = STATE(2120), - [sym_lock_statement] = STATE(2120), - [sym_yield_statement] = STATE(2120), - [sym_switch_statement] = STATE(2120), - [sym_throw_statement] = STATE(2120), - [sym_try_statement] = STATE(2120), - [sym_unsafe_statement] = STATE(2120), - [sym_using_statement] = STATE(2120), - [sym_foreach_statement] = STATE(2120), + [sym_attribute_list] = STATE(3612), + [sym__attribute_list] = STATE(3570), + [sym_modifier] = STATE(3845), + [sym_parameter_list] = STATE(7531), + [sym_block] = STATE(2093), + [sym_variable_declaration] = STATE(7607), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(5873), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2238), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5805), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_statement] = STATE(2134), + [sym_break_statement] = STATE(2093), + [sym_checked_statement] = STATE(2093), + [sym_continue_statement] = STATE(2093), + [sym_do_statement] = STATE(2093), + [sym_empty_statement] = STATE(2093), + [sym_expression_statement] = STATE(2093), + [sym_fixed_statement] = STATE(2093), + [sym_for_statement] = STATE(2093), + [sym_return_statement] = STATE(2093), + [sym_lock_statement] = STATE(2093), + [sym_yield_statement] = STATE(2093), + [sym_switch_statement] = STATE(2093), + [sym_throw_statement] = STATE(2093), + [sym_try_statement] = STATE(2093), + [sym_unsafe_statement] = STATE(2093), + [sym_using_statement] = STATE(2093), + [sym_foreach_statement] = STATE(2093), [sym__foreach_statement_initializer] = STATE(93), - [sym_goto_statement] = STATE(2120), - [sym_labeled_statement] = STATE(2120), - [sym_if_statement] = STATE(2120), - [sym_while_statement] = STATE(2120), - [sym_local_declaration_statement] = STATE(2120), - [sym_local_function_statement] = STATE(2120), - [sym__local_function_declaration] = STATE(6322), - [sym_expression] = STATE(4925), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3529), - [sym__expression_statement_expression] = STATE(5635), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3080), - [sym_postfix_unary_expression] = STATE(3111), - [sym_prefix_unary_expression] = STATE(3111), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6154), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3080), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3111), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3080), - [sym_member_access_expression] = STATE(2484), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3111), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7575), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(3080), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3080), - [sym_typeof_expression] = STATE(3080), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2484), - [sym_literal] = STATE(3080), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2282), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_top_level] = STATE(2120), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(3645), + [sym_goto_statement] = STATE(2093), + [sym_labeled_statement] = STATE(2093), + [sym_if_statement] = STATE(2093), + [sym_while_statement] = STATE(2093), + [sym_local_declaration_statement] = STATE(2093), + [sym_local_function_statement] = STATE(2093), + [sym__local_function_declaration] = STATE(6310), + [sym_expression] = STATE(5090), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3526), + [sym__expression_statement_expression] = STATE(5554), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3102), + [sym_postfix_unary_expression] = STATE(3079), + [sym_prefix_unary_expression] = STATE(3079), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6134), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3102), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3079), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3102), + [sym_member_access_expression] = STATE(2472), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3079), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7309), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(3102), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3102), + [sym_typeof_expression] = STATE(3102), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2472), + [sym_literal] = STATE(3102), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2269), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_top_level] = STATE(2093), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(3612), [sym_preproc_region] = STATE(38), [sym_preproc_endregion] = STATE(38), [sym_preproc_line] = STATE(38), @@ -34846,314 +34732,81 @@ 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(2286), - [aux_sym__class_declaration_initializer_repeat2] = STATE(2529), - [aux_sym_block_repeat1] = STATE(55), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [aux_sym__class_declaration_initializer_repeat1] = STATE(2277), + [aux_sym__class_declaration_initializer_repeat2] = STATE(2540), + [aux_sym_block_repeat1] = STATE(58), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), - [anon_sym_extern] = ACTIONS(647), - [anon_sym_alias] = ACTIONS(29), - [anon_sym_SEMI] = ACTIONS(649), - [anon_sym_global] = ACTIONS(29), - [anon_sym_using] = ACTIONS(651), - [anon_sym_unsafe] = ACTIONS(653), - [anon_sym_static] = ACTIONS(655), - [anon_sym_LBRACK] = ACTIONS(657), - [anon_sym_COMMA] = ACTIONS(893), - [anon_sym_LPAREN] = ACTIONS(895), - [anon_sym_return] = ACTIONS(659), - [anon_sym_ref] = ACTIONS(897), - [anon_sym_LBRACE] = ACTIONS(663), - [anon_sym_RBRACE] = ACTIONS(939), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_abstract] = ACTIONS(647), - [anon_sym_async] = ACTIONS(655), - [anon_sym_const] = ACTIONS(647), - [anon_sym_file] = ACTIONS(669), - [anon_sym_fixed] = ACTIONS(671), - [anon_sym_internal] = ACTIONS(647), - [anon_sym_new] = ACTIONS(673), - [anon_sym_override] = ACTIONS(647), - [anon_sym_partial] = ACTIONS(647), - [anon_sym_private] = ACTIONS(647), - [anon_sym_protected] = ACTIONS(647), - [anon_sym_public] = ACTIONS(647), - [anon_sym_readonly] = ACTIONS(647), - [anon_sym_required] = ACTIONS(647), - [anon_sym_sealed] = ACTIONS(647), - [anon_sym_virtual] = ACTIONS(647), - [anon_sym_volatile] = ACTIONS(647), - [anon_sym_where] = ACTIONS(29), - [anon_sym_notnull] = ACTIONS(29), - [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(675), - [anon_sym_BANG] = ACTIONS(901), - [anon_sym_TILDE] = ACTIONS(901), - [anon_sym_PLUS_PLUS] = ACTIONS(901), - [anon_sym_DASH_DASH] = ACTIONS(901), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(903), - [anon_sym_DASH] = ACTIONS(903), - [anon_sym_STAR] = ACTIONS(905), - [anon_sym_CARET] = ACTIONS(901), - [anon_sym_AMP] = ACTIONS(901), - [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(677), - [anon_sym_unchecked] = ACTIONS(675), - [anon_sym_continue] = ACTIONS(679), - [anon_sym_do] = ACTIONS(681), - [anon_sym_while] = ACTIONS(683), - [anon_sym_for] = ACTIONS(685), - [anon_sym_lock] = ACTIONS(687), - [anon_sym_yield] = ACTIONS(689), - [anon_sym_switch] = ACTIONS(691), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(907), - [anon_sym_try] = ACTIONS(697), - [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(909), - [anon_sym_foreach] = ACTIONS(117), - [anon_sym_goto] = ACTIONS(701), - [anon_sym_if] = ACTIONS(703), - [anon_sym_DOT_DOT] = ACTIONS(911), - [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(705), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(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), - }, - [39] = { - [sym_attribute_list] = STATE(3645), - [sym__attribute_list] = STATE(3580), - [sym_modifier] = STATE(3878), - [sym_parameter_list] = STATE(7311), - [sym_block] = STATE(2120), - [sym_variable_declaration] = STATE(7689), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(5160), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2204), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5867), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_statement] = STATE(2141), - [sym_break_statement] = STATE(2120), - [sym_checked_statement] = STATE(2120), - [sym_continue_statement] = STATE(2120), - [sym_do_statement] = STATE(2120), - [sym_empty_statement] = STATE(2120), - [sym_expression_statement] = STATE(2120), - [sym_fixed_statement] = STATE(2120), - [sym_for_statement] = STATE(2120), - [sym_return_statement] = STATE(2120), - [sym_lock_statement] = STATE(2120), - [sym_yield_statement] = STATE(2120), - [sym_switch_statement] = STATE(2120), - [sym_throw_statement] = STATE(2120), - [sym_try_statement] = STATE(2120), - [sym_unsafe_statement] = STATE(2120), - [sym_using_statement] = STATE(2120), - [sym_foreach_statement] = STATE(2120), - [sym__foreach_statement_initializer] = STATE(93), - [sym_goto_statement] = STATE(2120), - [sym_labeled_statement] = STATE(2120), - [sym_if_statement] = STATE(2120), - [sym_while_statement] = STATE(2120), - [sym_local_declaration_statement] = STATE(2120), - [sym_local_function_statement] = STATE(2120), - [sym__local_function_declaration] = STATE(6322), - [sym_expression] = STATE(5672), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3461), - [sym__expression_statement_expression] = STATE(5635), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3080), - [sym_postfix_unary_expression] = STATE(3111), - [sym_prefix_unary_expression] = STATE(3111), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6154), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3080), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3111), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3080), - [sym_member_access_expression] = STATE(2484), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3111), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7530), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(3080), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3080), - [sym_typeof_expression] = STATE(3080), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2484), - [sym_literal] = STATE(3080), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2282), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_top_level] = STATE(2120), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(3645), - [sym_preproc_region] = STATE(39), - [sym_preproc_endregion] = STATE(39), - [sym_preproc_line] = STATE(39), - [sym_preproc_pragma] = STATE(39), - [sym_preproc_nullable] = STATE(39), - [sym_preproc_error] = STATE(39), - [sym_preproc_warning] = STATE(39), - [sym_preproc_define] = STATE(39), - [sym_preproc_undef] = STATE(39), - [aux_sym__class_declaration_initializer_repeat1] = STATE(2286), - [aux_sym__class_declaration_initializer_repeat2] = STATE(2529), - [aux_sym_block_repeat1] = STATE(24), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), - [sym__identifier_token] = ACTIONS(25), - [anon_sym_extern] = ACTIONS(647), + [anon_sym_extern] = ACTIONS(645), [anon_sym_alias] = ACTIONS(29), - [anon_sym_SEMI] = ACTIONS(649), + [anon_sym_SEMI] = ACTIONS(647), [anon_sym_global] = ACTIONS(29), - [anon_sym_using] = ACTIONS(651), - [anon_sym_unsafe] = ACTIONS(653), - [anon_sym_static] = ACTIONS(655), - [anon_sym_LBRACK] = ACTIONS(657), - [anon_sym_LPAREN] = ACTIONS(43), - [anon_sym_return] = ACTIONS(659), - [anon_sym_ref] = ACTIONS(661), - [anon_sym_LBRACE] = ACTIONS(663), - [anon_sym_RBRACE] = ACTIONS(941), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_abstract] = ACTIONS(647), - [anon_sym_async] = ACTIONS(655), - [anon_sym_const] = ACTIONS(647), - [anon_sym_file] = ACTIONS(669), - [anon_sym_fixed] = ACTIONS(671), - [anon_sym_internal] = ACTIONS(647), - [anon_sym_new] = ACTIONS(673), - [anon_sym_override] = ACTIONS(647), - [anon_sym_partial] = ACTIONS(647), - [anon_sym_private] = ACTIONS(647), - [anon_sym_protected] = ACTIONS(647), - [anon_sym_public] = ACTIONS(647), - [anon_sym_readonly] = ACTIONS(647), - [anon_sym_required] = ACTIONS(647), - [anon_sym_sealed] = ACTIONS(647), - [anon_sym_virtual] = ACTIONS(647), - [anon_sym_volatile] = ACTIONS(647), - [anon_sym_where] = ACTIONS(29), - [anon_sym_notnull] = ACTIONS(29), - [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(675), - [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_using] = ACTIONS(649), + [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_RBRACE] = ACTIONS(937), + [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(673), + [anon_sym_internal] = ACTIONS(645), + [anon_sym_new] = ACTIONS(675), + [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(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_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_scoped] = ACTIONS(85), [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(91), - [anon_sym_break] = ACTIONS(677), - [anon_sym_unchecked] = ACTIONS(675), - [anon_sym_continue] = ACTIONS(679), - [anon_sym_do] = ACTIONS(681), - [anon_sym_while] = ACTIONS(683), - [anon_sym_for] = ACTIONS(685), - [anon_sym_lock] = ACTIONS(687), - [anon_sym_yield] = ACTIONS(689), - [anon_sym_switch] = ACTIONS(691), - [anon_sym_case] = ACTIONS(943), - [anon_sym_default] = ACTIONS(943), - [anon_sym_throw] = ACTIONS(695), - [anon_sym_try] = ACTIONS(697), + [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_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(699), + [anon_sym_await] = ACTIONS(705), [anon_sym_foreach] = ACTIONS(117), - [anon_sym_goto] = ACTIONS(701), - [anon_sym_if] = ACTIONS(703), - [anon_sym_DOT_DOT] = ACTIONS(123), + [anon_sym_goto] = ACTIONS(707), + [anon_sym_if] = ACTIONS(709), + [anon_sym_DOT_DOT] = ACTIONS(711), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -35178,7 +34831,240 @@ 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(705), + [aux_sym_preproc_if_token1] = ACTIONS(713), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(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), + }, + [39] = { + [sym_attribute_list] = STATE(3612), + [sym__attribute_list] = STATE(3570), + [sym_modifier] = STATE(3845), + [sym_parameter_list] = STATE(7531), + [sym_block] = STATE(2093), + [sym_variable_declaration] = STATE(7607), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(5873), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2238), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5805), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_statement] = STATE(2134), + [sym_break_statement] = STATE(2093), + [sym_checked_statement] = STATE(2093), + [sym_continue_statement] = STATE(2093), + [sym_do_statement] = STATE(2093), + [sym_empty_statement] = STATE(2093), + [sym_expression_statement] = STATE(2093), + [sym_fixed_statement] = STATE(2093), + [sym_for_statement] = STATE(2093), + [sym_return_statement] = STATE(2093), + [sym_lock_statement] = STATE(2093), + [sym_yield_statement] = STATE(2093), + [sym_switch_statement] = STATE(2093), + [sym_throw_statement] = STATE(2093), + [sym_try_statement] = STATE(2093), + [sym_unsafe_statement] = STATE(2093), + [sym_using_statement] = STATE(2093), + [sym_foreach_statement] = STATE(2093), + [sym__foreach_statement_initializer] = STATE(93), + [sym_goto_statement] = STATE(2093), + [sym_labeled_statement] = STATE(2093), + [sym_if_statement] = STATE(2093), + [sym_while_statement] = STATE(2093), + [sym_local_declaration_statement] = STATE(2093), + [sym_local_function_statement] = STATE(2093), + [sym__local_function_declaration] = STATE(6310), + [sym_expression] = STATE(4964), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3526), + [sym__expression_statement_expression] = STATE(5554), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3102), + [sym_postfix_unary_expression] = STATE(3079), + [sym_prefix_unary_expression] = STATE(3079), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6134), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3102), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3079), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3102), + [sym_member_access_expression] = STATE(2472), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3079), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7309), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(3102), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3102), + [sym_typeof_expression] = STATE(3102), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2472), + [sym_literal] = STATE(3102), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2269), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_top_level] = STATE(2093), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(3612), + [sym_preproc_region] = STATE(39), + [sym_preproc_endregion] = STATE(39), + [sym_preproc_line] = STATE(39), + [sym_preproc_pragma] = STATE(39), + [sym_preproc_nullable] = STATE(39), + [sym_preproc_error] = STATE(39), + [sym_preproc_warning] = STATE(39), + [sym_preproc_define] = STATE(39), + [sym_preproc_undef] = STATE(39), + [aux_sym__class_declaration_initializer_repeat1] = STATE(2277), + [aux_sym__class_declaration_initializer_repeat2] = STATE(2540), + [aux_sym_block_repeat1] = STATE(41), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), + [sym__identifier_token] = ACTIONS(25), + [anon_sym_extern] = ACTIONS(645), + [anon_sym_alias] = ACTIONS(29), + [anon_sym_SEMI] = ACTIONS(647), + [anon_sym_global] = ACTIONS(29), + [anon_sym_using] = ACTIONS(649), + [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_RBRACE] = ACTIONS(941), + [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(673), + [anon_sym_internal] = ACTIONS(645), + [anon_sym_new] = ACTIONS(675), + [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(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_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_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_when] = ACTIONS(29), + [anon_sym_await] = ACTIONS(705), + [anon_sym_foreach] = ACTIONS(117), + [anon_sym_goto] = ACTIONS(707), + [anon_sym_if] = ACTIONS(709), + [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(713), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -35195,114 +35081,114 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [40] = { - [sym_attribute_list] = STATE(3645), - [sym__attribute_list] = STATE(3580), - [sym_modifier] = STATE(3878), - [sym_parameter_list] = STATE(7311), - [sym_block] = STATE(2120), - [sym_variable_declaration] = STATE(7689), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(5160), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2204), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5867), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_statement] = STATE(2141), - [sym_break_statement] = STATE(2120), - [sym_checked_statement] = STATE(2120), - [sym_continue_statement] = STATE(2120), - [sym_do_statement] = STATE(2120), - [sym_empty_statement] = STATE(2120), - [sym_expression_statement] = STATE(2120), - [sym_fixed_statement] = STATE(2120), - [sym_for_statement] = STATE(2120), - [sym_return_statement] = STATE(2120), - [sym_lock_statement] = STATE(2120), - [sym_yield_statement] = STATE(2120), - [sym_switch_statement] = STATE(2120), - [sym_throw_statement] = STATE(2120), - [sym_try_statement] = STATE(2120), - [sym_unsafe_statement] = STATE(2120), - [sym_using_statement] = STATE(2120), - [sym_foreach_statement] = STATE(2120), + [sym_attribute_list] = STATE(3612), + [sym__attribute_list] = STATE(3570), + [sym_modifier] = STATE(3845), + [sym_parameter_list] = STATE(7531), + [sym_block] = STATE(2093), + [sym_variable_declaration] = STATE(7607), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(5152), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2196), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5805), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_statement] = STATE(2134), + [sym_break_statement] = STATE(2093), + [sym_checked_statement] = STATE(2093), + [sym_continue_statement] = STATE(2093), + [sym_do_statement] = STATE(2093), + [sym_empty_statement] = STATE(2093), + [sym_expression_statement] = STATE(2093), + [sym_fixed_statement] = STATE(2093), + [sym_for_statement] = STATE(2093), + [sym_return_statement] = STATE(2093), + [sym_lock_statement] = STATE(2093), + [sym_yield_statement] = STATE(2093), + [sym_switch_statement] = STATE(2093), + [sym_throw_statement] = STATE(2093), + [sym_try_statement] = STATE(2093), + [sym_unsafe_statement] = STATE(2093), + [sym_using_statement] = STATE(2093), + [sym_foreach_statement] = STATE(2093), [sym__foreach_statement_initializer] = STATE(93), - [sym_goto_statement] = STATE(2120), - [sym_labeled_statement] = STATE(2120), - [sym_if_statement] = STATE(2120), - [sym_while_statement] = STATE(2120), - [sym_local_declaration_statement] = STATE(2120), - [sym_local_function_statement] = STATE(2120), - [sym__local_function_declaration] = STATE(6322), - [sym_expression] = STATE(5672), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3461), - [sym__expression_statement_expression] = STATE(5635), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3080), - [sym_postfix_unary_expression] = STATE(3111), - [sym_prefix_unary_expression] = STATE(3111), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6154), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3080), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3111), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3080), - [sym_member_access_expression] = STATE(2484), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3111), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7530), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(3080), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3080), - [sym_typeof_expression] = STATE(3080), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2484), - [sym_literal] = STATE(3080), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2282), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_top_level] = STATE(2120), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(3645), + [sym_goto_statement] = STATE(2093), + [sym_labeled_statement] = STATE(2093), + [sym_if_statement] = STATE(2093), + [sym_while_statement] = STATE(2093), + [sym_local_declaration_statement] = STATE(2093), + [sym_local_function_statement] = STATE(2093), + [sym__local_function_declaration] = STATE(6310), + [sym_expression] = STATE(5660), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3356), + [sym__expression_statement_expression] = STATE(5554), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3102), + [sym_postfix_unary_expression] = STATE(3079), + [sym_prefix_unary_expression] = STATE(3079), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6134), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3102), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3079), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3102), + [sym_member_access_expression] = STATE(2472), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3079), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7425), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(3102), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3102), + [sym_typeof_expression] = STATE(3102), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2472), + [sym_literal] = STATE(3102), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2269), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_top_level] = STATE(2093), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(3612), [sym_preproc_region] = STATE(40), [sym_preproc_endregion] = STATE(40), [sym_preproc_line] = STATE(40), @@ -35312,46 +35198,46 @@ 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(2286), - [aux_sym__class_declaration_initializer_repeat2] = STATE(2529), - [aux_sym_block_repeat1] = STATE(60), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [aux_sym__class_declaration_initializer_repeat1] = STATE(2277), + [aux_sym__class_declaration_initializer_repeat2] = STATE(2540), + [aux_sym_block_repeat1] = STATE(46), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), - [anon_sym_extern] = ACTIONS(647), + [anon_sym_extern] = ACTIONS(645), [anon_sym_alias] = ACTIONS(29), - [anon_sym_SEMI] = ACTIONS(649), + [anon_sym_SEMI] = ACTIONS(647), [anon_sym_global] = ACTIONS(29), - [anon_sym_using] = ACTIONS(651), - [anon_sym_unsafe] = ACTIONS(653), - [anon_sym_static] = ACTIONS(655), - [anon_sym_LBRACK] = ACTIONS(657), + [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(659), - [anon_sym_ref] = ACTIONS(661), - [anon_sym_LBRACE] = ACTIONS(663), - [anon_sym_RBRACE] = ACTIONS(945), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_abstract] = ACTIONS(647), - [anon_sym_async] = ACTIONS(655), - [anon_sym_const] = ACTIONS(647), - [anon_sym_file] = ACTIONS(669), - [anon_sym_fixed] = ACTIONS(671), - [anon_sym_internal] = ACTIONS(647), - [anon_sym_new] = ACTIONS(673), - [anon_sym_override] = ACTIONS(647), - [anon_sym_partial] = ACTIONS(647), - [anon_sym_private] = ACTIONS(647), - [anon_sym_protected] = ACTIONS(647), - [anon_sym_public] = ACTIONS(647), - [anon_sym_readonly] = ACTIONS(647), - [anon_sym_required] = ACTIONS(647), - [anon_sym_sealed] = ACTIONS(647), - [anon_sym_virtual] = ACTIONS(647), - [anon_sym_volatile] = ACTIONS(647), - [anon_sym_where] = ACTIONS(29), - [anon_sym_notnull] = ACTIONS(29), - [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(675), + [anon_sym_return] = ACTIONS(661), + [anon_sym_ref] = ACTIONS(715), + [anon_sym_LBRACE] = ACTIONS(665), + [anon_sym_RBRACE] = ACTIONS(943), + [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(673), + [anon_sym_internal] = ACTIONS(645), + [anon_sym_new] = ACTIONS(675), + [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(677), [anon_sym_BANG] = ACTIONS(75), [anon_sym_TILDE] = ACTIONS(75), [anon_sym_PLUS_PLUS] = ACTIONS(75), @@ -35368,23 +35254,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(677), - [anon_sym_unchecked] = ACTIONS(675), - [anon_sym_continue] = ACTIONS(679), - [anon_sym_do] = ACTIONS(681), - [anon_sym_while] = ACTIONS(683), - [anon_sym_for] = ACTIONS(685), - [anon_sym_lock] = ACTIONS(687), - [anon_sym_yield] = ACTIONS(689), - [anon_sym_switch] = ACTIONS(691), + [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(695), - [anon_sym_try] = ACTIONS(697), + [anon_sym_throw] = ACTIONS(721), + [anon_sym_try] = ACTIONS(703), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(699), + [anon_sym_await] = ACTIONS(723), [anon_sym_foreach] = ACTIONS(117), - [anon_sym_goto] = ACTIONS(701), - [anon_sym_if] = ACTIONS(703), + [anon_sym_goto] = ACTIONS(707), + [anon_sym_if] = ACTIONS(709), [anon_sym_DOT_DOT] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), @@ -35410,7 +35296,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(705), + [aux_sym_preproc_if_token1] = ACTIONS(713), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -35427,114 +35313,114 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [41] = { - [sym_attribute_list] = STATE(3645), - [sym__attribute_list] = STATE(3580), - [sym_modifier] = STATE(3878), - [sym_parameter_list] = STATE(7311), - [sym_block] = STATE(2120), - [sym_variable_declaration] = STATE(7689), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(5160), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2204), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5867), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_statement] = STATE(2141), - [sym_break_statement] = STATE(2120), - [sym_checked_statement] = STATE(2120), - [sym_continue_statement] = STATE(2120), - [sym_do_statement] = STATE(2120), - [sym_empty_statement] = STATE(2120), - [sym_expression_statement] = STATE(2120), - [sym_fixed_statement] = STATE(2120), - [sym_for_statement] = STATE(2120), - [sym_return_statement] = STATE(2120), - [sym_lock_statement] = STATE(2120), - [sym_yield_statement] = STATE(2120), - [sym_switch_statement] = STATE(2120), - [sym_throw_statement] = STATE(2120), - [sym_try_statement] = STATE(2120), - [sym_unsafe_statement] = STATE(2120), - [sym_using_statement] = STATE(2120), - [sym_foreach_statement] = STATE(2120), + [sym_attribute_list] = STATE(3612), + [sym__attribute_list] = STATE(3570), + [sym_modifier] = STATE(3845), + [sym_parameter_list] = STATE(7531), + [sym_block] = STATE(2093), + [sym_variable_declaration] = STATE(7607), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(5152), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2196), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5805), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_statement] = STATE(2134), + [sym_break_statement] = STATE(2093), + [sym_checked_statement] = STATE(2093), + [sym_continue_statement] = STATE(2093), + [sym_do_statement] = STATE(2093), + [sym_empty_statement] = STATE(2093), + [sym_expression_statement] = STATE(2093), + [sym_fixed_statement] = STATE(2093), + [sym_for_statement] = STATE(2093), + [sym_return_statement] = STATE(2093), + [sym_lock_statement] = STATE(2093), + [sym_yield_statement] = STATE(2093), + [sym_switch_statement] = STATE(2093), + [sym_throw_statement] = STATE(2093), + [sym_try_statement] = STATE(2093), + [sym_unsafe_statement] = STATE(2093), + [sym_using_statement] = STATE(2093), + [sym_foreach_statement] = STATE(2093), [sym__foreach_statement_initializer] = STATE(93), - [sym_goto_statement] = STATE(2120), - [sym_labeled_statement] = STATE(2120), - [sym_if_statement] = STATE(2120), - [sym_while_statement] = STATE(2120), - [sym_local_declaration_statement] = STATE(2120), - [sym_local_function_statement] = STATE(2120), - [sym__local_function_declaration] = STATE(6322), - [sym_expression] = STATE(5672), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3461), - [sym__expression_statement_expression] = STATE(5635), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3080), - [sym_postfix_unary_expression] = STATE(3111), - [sym_prefix_unary_expression] = STATE(3111), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6154), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3080), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3111), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3080), - [sym_member_access_expression] = STATE(2484), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3111), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7530), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(3080), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3080), - [sym_typeof_expression] = STATE(3080), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2484), - [sym_literal] = STATE(3080), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2282), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_top_level] = STATE(2120), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(3645), + [sym_goto_statement] = STATE(2093), + [sym_labeled_statement] = STATE(2093), + [sym_if_statement] = STATE(2093), + [sym_while_statement] = STATE(2093), + [sym_local_declaration_statement] = STATE(2093), + [sym_local_function_statement] = STATE(2093), + [sym__local_function_declaration] = STATE(6310), + [sym_expression] = STATE(5660), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3356), + [sym__expression_statement_expression] = STATE(5554), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3102), + [sym_postfix_unary_expression] = STATE(3079), + [sym_prefix_unary_expression] = STATE(3079), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6134), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3102), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3079), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3102), + [sym_member_access_expression] = STATE(2472), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3079), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7425), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(3102), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3102), + [sym_typeof_expression] = STATE(3102), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2472), + [sym_literal] = STATE(3102), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2269), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_top_level] = STATE(2093), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(3612), [sym_preproc_region] = STATE(41), [sym_preproc_endregion] = STATE(41), [sym_preproc_line] = STATE(41), @@ -35544,46 +35430,46 @@ 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(2286), - [aux_sym__class_declaration_initializer_repeat2] = STATE(2529), - [aux_sym_block_repeat1] = STATE(27), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [aux_sym__class_declaration_initializer_repeat1] = STATE(2277), + [aux_sym__class_declaration_initializer_repeat2] = STATE(2540), + [aux_sym_block_repeat1] = STATE(28), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), - [anon_sym_extern] = ACTIONS(647), + [anon_sym_extern] = ACTIONS(645), [anon_sym_alias] = ACTIONS(29), - [anon_sym_SEMI] = ACTIONS(649), + [anon_sym_SEMI] = ACTIONS(647), [anon_sym_global] = ACTIONS(29), - [anon_sym_using] = ACTIONS(651), - [anon_sym_unsafe] = ACTIONS(653), - [anon_sym_static] = ACTIONS(655), - [anon_sym_LBRACK] = ACTIONS(657), + [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(659), - [anon_sym_ref] = ACTIONS(661), - [anon_sym_LBRACE] = ACTIONS(663), - [anon_sym_RBRACE] = ACTIONS(947), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_abstract] = ACTIONS(647), - [anon_sym_async] = ACTIONS(655), - [anon_sym_const] = ACTIONS(647), - [anon_sym_file] = ACTIONS(669), - [anon_sym_fixed] = ACTIONS(671), - [anon_sym_internal] = ACTIONS(647), - [anon_sym_new] = ACTIONS(673), - [anon_sym_override] = ACTIONS(647), - [anon_sym_partial] = ACTIONS(647), - [anon_sym_private] = ACTIONS(647), - [anon_sym_protected] = ACTIONS(647), - [anon_sym_public] = ACTIONS(647), - [anon_sym_readonly] = ACTIONS(647), - [anon_sym_required] = ACTIONS(647), - [anon_sym_sealed] = ACTIONS(647), - [anon_sym_virtual] = ACTIONS(647), - [anon_sym_volatile] = ACTIONS(647), - [anon_sym_where] = ACTIONS(29), - [anon_sym_notnull] = ACTIONS(29), - [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(675), + [anon_sym_return] = ACTIONS(661), + [anon_sym_ref] = ACTIONS(715), + [anon_sym_LBRACE] = ACTIONS(665), + [anon_sym_RBRACE] = ACTIONS(945), + [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(673), + [anon_sym_internal] = ACTIONS(645), + [anon_sym_new] = ACTIONS(675), + [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(677), [anon_sym_BANG] = ACTIONS(75), [anon_sym_TILDE] = ACTIONS(75), [anon_sym_PLUS_PLUS] = ACTIONS(75), @@ -35600,23 +35486,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(677), - [anon_sym_unchecked] = ACTIONS(675), - [anon_sym_continue] = ACTIONS(679), - [anon_sym_do] = ACTIONS(681), - [anon_sym_while] = ACTIONS(683), - [anon_sym_for] = ACTIONS(685), - [anon_sym_lock] = ACTIONS(687), - [anon_sym_yield] = ACTIONS(689), - [anon_sym_switch] = ACTIONS(691), + [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(695), - [anon_sym_try] = ACTIONS(697), + [anon_sym_throw] = ACTIONS(721), + [anon_sym_try] = ACTIONS(703), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(699), + [anon_sym_await] = ACTIONS(723), [anon_sym_foreach] = ACTIONS(117), - [anon_sym_goto] = ACTIONS(701), - [anon_sym_if] = ACTIONS(703), + [anon_sym_goto] = ACTIONS(707), + [anon_sym_if] = ACTIONS(709), [anon_sym_DOT_DOT] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), @@ -35642,7 +35528,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(705), + [aux_sym_preproc_if_token1] = ACTIONS(713), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -35659,114 +35545,114 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [42] = { - [sym_attribute_list] = STATE(3645), - [sym__attribute_list] = STATE(3580), - [sym_modifier] = STATE(3878), - [sym_parameter_list] = STATE(7311), - [sym_block] = STATE(2120), - [sym_variable_declaration] = STATE(7689), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(5160), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2204), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5867), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_statement] = STATE(2141), - [sym_break_statement] = STATE(2120), - [sym_checked_statement] = STATE(2120), - [sym_continue_statement] = STATE(2120), - [sym_do_statement] = STATE(2120), - [sym_empty_statement] = STATE(2120), - [sym_expression_statement] = STATE(2120), - [sym_fixed_statement] = STATE(2120), - [sym_for_statement] = STATE(2120), - [sym_return_statement] = STATE(2120), - [sym_lock_statement] = STATE(2120), - [sym_yield_statement] = STATE(2120), - [sym_switch_statement] = STATE(2120), - [sym_throw_statement] = STATE(2120), - [sym_try_statement] = STATE(2120), - [sym_unsafe_statement] = STATE(2120), - [sym_using_statement] = STATE(2120), - [sym_foreach_statement] = STATE(2120), + [sym_attribute_list] = STATE(3612), + [sym__attribute_list] = STATE(3570), + [sym_modifier] = STATE(3845), + [sym_parameter_list] = STATE(7531), + [sym_block] = STATE(2093), + [sym_variable_declaration] = STATE(7607), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(5152), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2196), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5805), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_statement] = STATE(2134), + [sym_break_statement] = STATE(2093), + [sym_checked_statement] = STATE(2093), + [sym_continue_statement] = STATE(2093), + [sym_do_statement] = STATE(2093), + [sym_empty_statement] = STATE(2093), + [sym_expression_statement] = STATE(2093), + [sym_fixed_statement] = STATE(2093), + [sym_for_statement] = STATE(2093), + [sym_return_statement] = STATE(2093), + [sym_lock_statement] = STATE(2093), + [sym_yield_statement] = STATE(2093), + [sym_switch_statement] = STATE(2093), + [sym_throw_statement] = STATE(2093), + [sym_try_statement] = STATE(2093), + [sym_unsafe_statement] = STATE(2093), + [sym_using_statement] = STATE(2093), + [sym_foreach_statement] = STATE(2093), [sym__foreach_statement_initializer] = STATE(93), - [sym_goto_statement] = STATE(2120), - [sym_labeled_statement] = STATE(2120), - [sym_if_statement] = STATE(2120), - [sym_while_statement] = STATE(2120), - [sym_local_declaration_statement] = STATE(2120), - [sym_local_function_statement] = STATE(2120), - [sym__local_function_declaration] = STATE(6322), - [sym_expression] = STATE(5672), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3461), - [sym__expression_statement_expression] = STATE(5635), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3080), - [sym_postfix_unary_expression] = STATE(3111), - [sym_prefix_unary_expression] = STATE(3111), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6154), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3080), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3111), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3080), - [sym_member_access_expression] = STATE(2484), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3111), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7530), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(3080), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3080), - [sym_typeof_expression] = STATE(3080), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2484), - [sym_literal] = STATE(3080), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2282), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_top_level] = STATE(2120), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(3645), + [sym_goto_statement] = STATE(2093), + [sym_labeled_statement] = STATE(2093), + [sym_if_statement] = STATE(2093), + [sym_while_statement] = STATE(2093), + [sym_local_declaration_statement] = STATE(2093), + [sym_local_function_statement] = STATE(2093), + [sym__local_function_declaration] = STATE(6310), + [sym_expression] = STATE(5660), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3356), + [sym__expression_statement_expression] = STATE(5554), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3102), + [sym_postfix_unary_expression] = STATE(3079), + [sym_prefix_unary_expression] = STATE(3079), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6134), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3102), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3079), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3102), + [sym_member_access_expression] = STATE(2472), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3079), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7425), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(3102), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3102), + [sym_typeof_expression] = STATE(3102), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2472), + [sym_literal] = STATE(3102), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2269), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_top_level] = STATE(2093), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(3612), [sym_preproc_region] = STATE(42), [sym_preproc_endregion] = STATE(42), [sym_preproc_line] = STATE(42), @@ -35776,46 +35662,46 @@ 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(2286), - [aux_sym__class_declaration_initializer_repeat2] = STATE(2529), - [aux_sym_block_repeat1] = STATE(45), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [aux_sym__class_declaration_initializer_repeat1] = STATE(2277), + [aux_sym__class_declaration_initializer_repeat2] = STATE(2540), + [aux_sym_block_repeat1] = STATE(28), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), - [anon_sym_extern] = ACTIONS(647), + [anon_sym_extern] = ACTIONS(645), [anon_sym_alias] = ACTIONS(29), - [anon_sym_SEMI] = ACTIONS(649), + [anon_sym_SEMI] = ACTIONS(647), [anon_sym_global] = ACTIONS(29), - [anon_sym_using] = ACTIONS(651), - [anon_sym_unsafe] = ACTIONS(653), - [anon_sym_static] = ACTIONS(655), - [anon_sym_LBRACK] = ACTIONS(657), + [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(659), - [anon_sym_ref] = ACTIONS(661), - [anon_sym_LBRACE] = ACTIONS(663), - [anon_sym_RBRACE] = ACTIONS(949), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_abstract] = ACTIONS(647), - [anon_sym_async] = ACTIONS(655), - [anon_sym_const] = ACTIONS(647), - [anon_sym_file] = ACTIONS(669), - [anon_sym_fixed] = ACTIONS(671), - [anon_sym_internal] = ACTIONS(647), - [anon_sym_new] = ACTIONS(673), - [anon_sym_override] = ACTIONS(647), - [anon_sym_partial] = ACTIONS(647), - [anon_sym_private] = ACTIONS(647), - [anon_sym_protected] = ACTIONS(647), - [anon_sym_public] = ACTIONS(647), - [anon_sym_readonly] = ACTIONS(647), - [anon_sym_required] = ACTIONS(647), - [anon_sym_sealed] = ACTIONS(647), - [anon_sym_virtual] = ACTIONS(647), - [anon_sym_volatile] = ACTIONS(647), - [anon_sym_where] = ACTIONS(29), - [anon_sym_notnull] = ACTIONS(29), - [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(675), + [anon_sym_return] = ACTIONS(661), + [anon_sym_ref] = ACTIONS(715), + [anon_sym_LBRACE] = ACTIONS(665), + [anon_sym_RBRACE] = ACTIONS(947), + [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(673), + [anon_sym_internal] = ACTIONS(645), + [anon_sym_new] = ACTIONS(675), + [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(677), [anon_sym_BANG] = ACTIONS(75), [anon_sym_TILDE] = ACTIONS(75), [anon_sym_PLUS_PLUS] = ACTIONS(75), @@ -35832,23 +35718,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(677), - [anon_sym_unchecked] = ACTIONS(675), - [anon_sym_continue] = ACTIONS(679), - [anon_sym_do] = ACTIONS(681), - [anon_sym_while] = ACTIONS(683), - [anon_sym_for] = ACTIONS(685), - [anon_sym_lock] = ACTIONS(687), - [anon_sym_yield] = ACTIONS(689), - [anon_sym_switch] = ACTIONS(691), + [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(695), - [anon_sym_try] = ACTIONS(697), + [anon_sym_throw] = ACTIONS(721), + [anon_sym_try] = ACTIONS(703), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(699), + [anon_sym_await] = ACTIONS(723), [anon_sym_foreach] = ACTIONS(117), - [anon_sym_goto] = ACTIONS(701), - [anon_sym_if] = ACTIONS(703), + [anon_sym_goto] = ACTIONS(707), + [anon_sym_if] = ACTIONS(709), [anon_sym_DOT_DOT] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), @@ -35874,7 +35760,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(705), + [aux_sym_preproc_if_token1] = ACTIONS(713), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -35891,114 +35777,114 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [43] = { - [sym_attribute_list] = STATE(3645), - [sym__attribute_list] = STATE(3580), - [sym_modifier] = STATE(3878), - [sym_parameter_list] = STATE(7311), - [sym_block] = STATE(2120), - [sym_variable_declaration] = STATE(7689), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(5160), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2204), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5867), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_statement] = STATE(2141), - [sym_break_statement] = STATE(2120), - [sym_checked_statement] = STATE(2120), - [sym_continue_statement] = STATE(2120), - [sym_do_statement] = STATE(2120), - [sym_empty_statement] = STATE(2120), - [sym_expression_statement] = STATE(2120), - [sym_fixed_statement] = STATE(2120), - [sym_for_statement] = STATE(2120), - [sym_return_statement] = STATE(2120), - [sym_lock_statement] = STATE(2120), - [sym_yield_statement] = STATE(2120), - [sym_switch_statement] = STATE(2120), - [sym_throw_statement] = STATE(2120), - [sym_try_statement] = STATE(2120), - [sym_unsafe_statement] = STATE(2120), - [sym_using_statement] = STATE(2120), - [sym_foreach_statement] = STATE(2120), + [sym_attribute_list] = STATE(3612), + [sym__attribute_list] = STATE(3570), + [sym_modifier] = STATE(3845), + [sym_parameter_list] = STATE(7531), + [sym_block] = STATE(2093), + [sym_variable_declaration] = STATE(7607), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(5152), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2196), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5805), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_statement] = STATE(2134), + [sym_break_statement] = STATE(2093), + [sym_checked_statement] = STATE(2093), + [sym_continue_statement] = STATE(2093), + [sym_do_statement] = STATE(2093), + [sym_empty_statement] = STATE(2093), + [sym_expression_statement] = STATE(2093), + [sym_fixed_statement] = STATE(2093), + [sym_for_statement] = STATE(2093), + [sym_return_statement] = STATE(2093), + [sym_lock_statement] = STATE(2093), + [sym_yield_statement] = STATE(2093), + [sym_switch_statement] = STATE(2093), + [sym_throw_statement] = STATE(2093), + [sym_try_statement] = STATE(2093), + [sym_unsafe_statement] = STATE(2093), + [sym_using_statement] = STATE(2093), + [sym_foreach_statement] = STATE(2093), [sym__foreach_statement_initializer] = STATE(93), - [sym_goto_statement] = STATE(2120), - [sym_labeled_statement] = STATE(2120), - [sym_if_statement] = STATE(2120), - [sym_while_statement] = STATE(2120), - [sym_local_declaration_statement] = STATE(2120), - [sym_local_function_statement] = STATE(2120), - [sym__local_function_declaration] = STATE(6322), - [sym_expression] = STATE(5672), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3461), - [sym__expression_statement_expression] = STATE(5635), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3080), - [sym_postfix_unary_expression] = STATE(3111), - [sym_prefix_unary_expression] = STATE(3111), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6154), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3080), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3111), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3080), - [sym_member_access_expression] = STATE(2484), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3111), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7530), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(3080), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3080), - [sym_typeof_expression] = STATE(3080), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2484), - [sym_literal] = STATE(3080), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2282), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_top_level] = STATE(2120), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(3645), + [sym_goto_statement] = STATE(2093), + [sym_labeled_statement] = STATE(2093), + [sym_if_statement] = STATE(2093), + [sym_while_statement] = STATE(2093), + [sym_local_declaration_statement] = STATE(2093), + [sym_local_function_statement] = STATE(2093), + [sym__local_function_declaration] = STATE(6310), + [sym_expression] = STATE(5660), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3356), + [sym__expression_statement_expression] = STATE(5554), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3102), + [sym_postfix_unary_expression] = STATE(3079), + [sym_prefix_unary_expression] = STATE(3079), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6134), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3102), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3079), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3102), + [sym_member_access_expression] = STATE(2472), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3079), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7425), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(3102), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3102), + [sym_typeof_expression] = STATE(3102), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2472), + [sym_literal] = STATE(3102), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2269), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_top_level] = STATE(2093), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(3612), [sym_preproc_region] = STATE(43), [sym_preproc_endregion] = STATE(43), [sym_preproc_line] = STATE(43), @@ -36008,46 +35894,46 @@ 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(2286), - [aux_sym__class_declaration_initializer_repeat2] = STATE(2529), - [aux_sym_block_repeat1] = STATE(27), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [aux_sym__class_declaration_initializer_repeat1] = STATE(2277), + [aux_sym__class_declaration_initializer_repeat2] = STATE(2540), + [aux_sym_block_repeat1] = STATE(44), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), - [anon_sym_extern] = ACTIONS(647), + [anon_sym_extern] = ACTIONS(645), [anon_sym_alias] = ACTIONS(29), - [anon_sym_SEMI] = ACTIONS(649), + [anon_sym_SEMI] = ACTIONS(647), [anon_sym_global] = ACTIONS(29), - [anon_sym_using] = ACTIONS(651), - [anon_sym_unsafe] = ACTIONS(653), - [anon_sym_static] = ACTIONS(655), - [anon_sym_LBRACK] = ACTIONS(657), + [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(659), - [anon_sym_ref] = ACTIONS(661), - [anon_sym_LBRACE] = ACTIONS(663), - [anon_sym_RBRACE] = ACTIONS(951), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_abstract] = ACTIONS(647), - [anon_sym_async] = ACTIONS(655), - [anon_sym_const] = ACTIONS(647), - [anon_sym_file] = ACTIONS(669), - [anon_sym_fixed] = ACTIONS(671), - [anon_sym_internal] = ACTIONS(647), - [anon_sym_new] = ACTIONS(673), - [anon_sym_override] = ACTIONS(647), - [anon_sym_partial] = ACTIONS(647), - [anon_sym_private] = ACTIONS(647), - [anon_sym_protected] = ACTIONS(647), - [anon_sym_public] = ACTIONS(647), - [anon_sym_readonly] = ACTIONS(647), - [anon_sym_required] = ACTIONS(647), - [anon_sym_sealed] = ACTIONS(647), - [anon_sym_virtual] = ACTIONS(647), - [anon_sym_volatile] = ACTIONS(647), - [anon_sym_where] = ACTIONS(29), - [anon_sym_notnull] = ACTIONS(29), - [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(675), + [anon_sym_return] = ACTIONS(661), + [anon_sym_ref] = ACTIONS(715), + [anon_sym_LBRACE] = ACTIONS(665), + [anon_sym_RBRACE] = ACTIONS(949), + [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(673), + [anon_sym_internal] = ACTIONS(645), + [anon_sym_new] = ACTIONS(675), + [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(677), [anon_sym_BANG] = ACTIONS(75), [anon_sym_TILDE] = ACTIONS(75), [anon_sym_PLUS_PLUS] = ACTIONS(75), @@ -36064,23 +35950,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(677), - [anon_sym_unchecked] = ACTIONS(675), - [anon_sym_continue] = ACTIONS(679), - [anon_sym_do] = ACTIONS(681), - [anon_sym_while] = ACTIONS(683), - [anon_sym_for] = ACTIONS(685), - [anon_sym_lock] = ACTIONS(687), - [anon_sym_yield] = ACTIONS(689), - [anon_sym_switch] = ACTIONS(691), + [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(695), - [anon_sym_try] = ACTIONS(697), + [anon_sym_throw] = ACTIONS(721), + [anon_sym_try] = ACTIONS(703), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(699), + [anon_sym_await] = ACTIONS(723), [anon_sym_foreach] = ACTIONS(117), - [anon_sym_goto] = ACTIONS(701), - [anon_sym_if] = ACTIONS(703), + [anon_sym_goto] = ACTIONS(707), + [anon_sym_if] = ACTIONS(709), [anon_sym_DOT_DOT] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), @@ -36106,7 +35992,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(705), + [aux_sym_preproc_if_token1] = ACTIONS(713), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -36123,114 +36009,114 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [44] = { - [sym_attribute_list] = STATE(3645), - [sym__attribute_list] = STATE(3580), - [sym_modifier] = STATE(3878), - [sym_parameter_list] = STATE(7311), - [sym_block] = STATE(2120), - [sym_variable_declaration] = STATE(7689), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(5160), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2204), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5867), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_statement] = STATE(2141), - [sym_break_statement] = STATE(2120), - [sym_checked_statement] = STATE(2120), - [sym_continue_statement] = STATE(2120), - [sym_do_statement] = STATE(2120), - [sym_empty_statement] = STATE(2120), - [sym_expression_statement] = STATE(2120), - [sym_fixed_statement] = STATE(2120), - [sym_for_statement] = STATE(2120), - [sym_return_statement] = STATE(2120), - [sym_lock_statement] = STATE(2120), - [sym_yield_statement] = STATE(2120), - [sym_switch_statement] = STATE(2120), - [sym_throw_statement] = STATE(2120), - [sym_try_statement] = STATE(2120), - [sym_unsafe_statement] = STATE(2120), - [sym_using_statement] = STATE(2120), - [sym_foreach_statement] = STATE(2120), + [sym_attribute_list] = STATE(3612), + [sym__attribute_list] = STATE(3570), + [sym_modifier] = STATE(3845), + [sym_parameter_list] = STATE(7531), + [sym_block] = STATE(2093), + [sym_variable_declaration] = STATE(7607), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(5152), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2196), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5805), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_statement] = STATE(2134), + [sym_break_statement] = STATE(2093), + [sym_checked_statement] = STATE(2093), + [sym_continue_statement] = STATE(2093), + [sym_do_statement] = STATE(2093), + [sym_empty_statement] = STATE(2093), + [sym_expression_statement] = STATE(2093), + [sym_fixed_statement] = STATE(2093), + [sym_for_statement] = STATE(2093), + [sym_return_statement] = STATE(2093), + [sym_lock_statement] = STATE(2093), + [sym_yield_statement] = STATE(2093), + [sym_switch_statement] = STATE(2093), + [sym_throw_statement] = STATE(2093), + [sym_try_statement] = STATE(2093), + [sym_unsafe_statement] = STATE(2093), + [sym_using_statement] = STATE(2093), + [sym_foreach_statement] = STATE(2093), [sym__foreach_statement_initializer] = STATE(93), - [sym_goto_statement] = STATE(2120), - [sym_labeled_statement] = STATE(2120), - [sym_if_statement] = STATE(2120), - [sym_while_statement] = STATE(2120), - [sym_local_declaration_statement] = STATE(2120), - [sym_local_function_statement] = STATE(2120), - [sym__local_function_declaration] = STATE(6322), - [sym_expression] = STATE(5672), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3461), - [sym__expression_statement_expression] = STATE(5635), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3080), - [sym_postfix_unary_expression] = STATE(3111), - [sym_prefix_unary_expression] = STATE(3111), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6154), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3080), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3111), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3080), - [sym_member_access_expression] = STATE(2484), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3111), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7530), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(3080), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3080), - [sym_typeof_expression] = STATE(3080), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2484), - [sym_literal] = STATE(3080), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2282), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_top_level] = STATE(2120), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(3645), + [sym_goto_statement] = STATE(2093), + [sym_labeled_statement] = STATE(2093), + [sym_if_statement] = STATE(2093), + [sym_while_statement] = STATE(2093), + [sym_local_declaration_statement] = STATE(2093), + [sym_local_function_statement] = STATE(2093), + [sym__local_function_declaration] = STATE(6310), + [sym_expression] = STATE(5660), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3356), + [sym__expression_statement_expression] = STATE(5554), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3102), + [sym_postfix_unary_expression] = STATE(3079), + [sym_prefix_unary_expression] = STATE(3079), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6134), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3102), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3079), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3102), + [sym_member_access_expression] = STATE(2472), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3079), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7425), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(3102), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3102), + [sym_typeof_expression] = STATE(3102), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2472), + [sym_literal] = STATE(3102), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2269), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_top_level] = STATE(2093), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(3612), [sym_preproc_region] = STATE(44), [sym_preproc_endregion] = STATE(44), [sym_preproc_line] = STATE(44), @@ -36240,46 +36126,46 @@ 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(2286), - [aux_sym__class_declaration_initializer_repeat2] = STATE(2529), - [aux_sym_block_repeat1] = STATE(43), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [aux_sym__class_declaration_initializer_repeat1] = STATE(2277), + [aux_sym__class_declaration_initializer_repeat2] = STATE(2540), + [aux_sym_block_repeat1] = STATE(28), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), - [anon_sym_extern] = ACTIONS(647), + [anon_sym_extern] = ACTIONS(645), [anon_sym_alias] = ACTIONS(29), - [anon_sym_SEMI] = ACTIONS(649), + [anon_sym_SEMI] = ACTIONS(647), [anon_sym_global] = ACTIONS(29), - [anon_sym_using] = ACTIONS(651), - [anon_sym_unsafe] = ACTIONS(653), - [anon_sym_static] = ACTIONS(655), - [anon_sym_LBRACK] = ACTIONS(657), + [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(659), - [anon_sym_ref] = ACTIONS(661), - [anon_sym_LBRACE] = ACTIONS(663), - [anon_sym_RBRACE] = ACTIONS(953), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_abstract] = ACTIONS(647), - [anon_sym_async] = ACTIONS(655), - [anon_sym_const] = ACTIONS(647), - [anon_sym_file] = ACTIONS(669), - [anon_sym_fixed] = ACTIONS(671), - [anon_sym_internal] = ACTIONS(647), - [anon_sym_new] = ACTIONS(673), - [anon_sym_override] = ACTIONS(647), - [anon_sym_partial] = ACTIONS(647), - [anon_sym_private] = ACTIONS(647), - [anon_sym_protected] = ACTIONS(647), - [anon_sym_public] = ACTIONS(647), - [anon_sym_readonly] = ACTIONS(647), - [anon_sym_required] = ACTIONS(647), - [anon_sym_sealed] = ACTIONS(647), - [anon_sym_virtual] = ACTIONS(647), - [anon_sym_volatile] = ACTIONS(647), - [anon_sym_where] = ACTIONS(29), - [anon_sym_notnull] = ACTIONS(29), - [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(675), + [anon_sym_return] = ACTIONS(661), + [anon_sym_ref] = ACTIONS(715), + [anon_sym_LBRACE] = ACTIONS(665), + [anon_sym_RBRACE] = ACTIONS(951), + [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(673), + [anon_sym_internal] = ACTIONS(645), + [anon_sym_new] = ACTIONS(675), + [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(677), [anon_sym_BANG] = ACTIONS(75), [anon_sym_TILDE] = ACTIONS(75), [anon_sym_PLUS_PLUS] = ACTIONS(75), @@ -36296,23 +36182,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(677), - [anon_sym_unchecked] = ACTIONS(675), - [anon_sym_continue] = ACTIONS(679), - [anon_sym_do] = ACTIONS(681), - [anon_sym_while] = ACTIONS(683), - [anon_sym_for] = ACTIONS(685), - [anon_sym_lock] = ACTIONS(687), - [anon_sym_yield] = ACTIONS(689), - [anon_sym_switch] = ACTIONS(691), + [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(695), - [anon_sym_try] = ACTIONS(697), + [anon_sym_throw] = ACTIONS(721), + [anon_sym_try] = ACTIONS(703), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(699), + [anon_sym_await] = ACTIONS(723), [anon_sym_foreach] = ACTIONS(117), - [anon_sym_goto] = ACTIONS(701), - [anon_sym_if] = ACTIONS(703), + [anon_sym_goto] = ACTIONS(707), + [anon_sym_if] = ACTIONS(709), [anon_sym_DOT_DOT] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), @@ -36338,7 +36224,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(705), + [aux_sym_preproc_if_token1] = ACTIONS(713), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -36355,114 +36241,114 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [45] = { - [sym_attribute_list] = STATE(3645), - [sym__attribute_list] = STATE(3580), - [sym_modifier] = STATE(3878), - [sym_parameter_list] = STATE(7311), - [sym_block] = STATE(2120), - [sym_variable_declaration] = STATE(7689), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(5160), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2204), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5867), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_statement] = STATE(2141), - [sym_break_statement] = STATE(2120), - [sym_checked_statement] = STATE(2120), - [sym_continue_statement] = STATE(2120), - [sym_do_statement] = STATE(2120), - [sym_empty_statement] = STATE(2120), - [sym_expression_statement] = STATE(2120), - [sym_fixed_statement] = STATE(2120), - [sym_for_statement] = STATE(2120), - [sym_return_statement] = STATE(2120), - [sym_lock_statement] = STATE(2120), - [sym_yield_statement] = STATE(2120), - [sym_switch_statement] = STATE(2120), - [sym_throw_statement] = STATE(2120), - [sym_try_statement] = STATE(2120), - [sym_unsafe_statement] = STATE(2120), - [sym_using_statement] = STATE(2120), - [sym_foreach_statement] = STATE(2120), + [sym_attribute_list] = STATE(3612), + [sym__attribute_list] = STATE(3570), + [sym_modifier] = STATE(3845), + [sym_parameter_list] = STATE(7531), + [sym_block] = STATE(2093), + [sym_variable_declaration] = STATE(7607), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(5152), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2196), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5805), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_statement] = STATE(2134), + [sym_break_statement] = STATE(2093), + [sym_checked_statement] = STATE(2093), + [sym_continue_statement] = STATE(2093), + [sym_do_statement] = STATE(2093), + [sym_empty_statement] = STATE(2093), + [sym_expression_statement] = STATE(2093), + [sym_fixed_statement] = STATE(2093), + [sym_for_statement] = STATE(2093), + [sym_return_statement] = STATE(2093), + [sym_lock_statement] = STATE(2093), + [sym_yield_statement] = STATE(2093), + [sym_switch_statement] = STATE(2093), + [sym_throw_statement] = STATE(2093), + [sym_try_statement] = STATE(2093), + [sym_unsafe_statement] = STATE(2093), + [sym_using_statement] = STATE(2093), + [sym_foreach_statement] = STATE(2093), [sym__foreach_statement_initializer] = STATE(93), - [sym_goto_statement] = STATE(2120), - [sym_labeled_statement] = STATE(2120), - [sym_if_statement] = STATE(2120), - [sym_while_statement] = STATE(2120), - [sym_local_declaration_statement] = STATE(2120), - [sym_local_function_statement] = STATE(2120), - [sym__local_function_declaration] = STATE(6322), - [sym_expression] = STATE(5672), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3461), - [sym__expression_statement_expression] = STATE(5635), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3080), - [sym_postfix_unary_expression] = STATE(3111), - [sym_prefix_unary_expression] = STATE(3111), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6154), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3080), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3111), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3080), - [sym_member_access_expression] = STATE(2484), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3111), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7530), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(3080), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3080), - [sym_typeof_expression] = STATE(3080), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2484), - [sym_literal] = STATE(3080), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2282), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_top_level] = STATE(2120), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(3645), + [sym_goto_statement] = STATE(2093), + [sym_labeled_statement] = STATE(2093), + [sym_if_statement] = STATE(2093), + [sym_while_statement] = STATE(2093), + [sym_local_declaration_statement] = STATE(2093), + [sym_local_function_statement] = STATE(2093), + [sym__local_function_declaration] = STATE(6310), + [sym_expression] = STATE(5660), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3356), + [sym__expression_statement_expression] = STATE(5554), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3102), + [sym_postfix_unary_expression] = STATE(3079), + [sym_prefix_unary_expression] = STATE(3079), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6134), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3102), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3079), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3102), + [sym_member_access_expression] = STATE(2472), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3079), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7425), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(3102), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3102), + [sym_typeof_expression] = STATE(3102), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2472), + [sym_literal] = STATE(3102), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2269), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_top_level] = STATE(2093), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(3612), [sym_preproc_region] = STATE(45), [sym_preproc_endregion] = STATE(45), [sym_preproc_line] = STATE(45), @@ -36472,46 +36358,46 @@ 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(2286), - [aux_sym__class_declaration_initializer_repeat2] = STATE(2529), - [aux_sym_block_repeat1] = STATE(27), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [aux_sym__class_declaration_initializer_repeat1] = STATE(2277), + [aux_sym__class_declaration_initializer_repeat2] = STATE(2540), + [aux_sym_block_repeat1] = STATE(42), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), - [anon_sym_extern] = ACTIONS(647), + [anon_sym_extern] = ACTIONS(645), [anon_sym_alias] = ACTIONS(29), - [anon_sym_SEMI] = ACTIONS(649), + [anon_sym_SEMI] = ACTIONS(647), [anon_sym_global] = ACTIONS(29), - [anon_sym_using] = ACTIONS(651), - [anon_sym_unsafe] = ACTIONS(653), - [anon_sym_static] = ACTIONS(655), - [anon_sym_LBRACK] = ACTIONS(657), + [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(659), - [anon_sym_ref] = ACTIONS(661), - [anon_sym_LBRACE] = ACTIONS(663), - [anon_sym_RBRACE] = ACTIONS(955), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_abstract] = ACTIONS(647), - [anon_sym_async] = ACTIONS(655), - [anon_sym_const] = ACTIONS(647), - [anon_sym_file] = ACTIONS(669), - [anon_sym_fixed] = ACTIONS(671), - [anon_sym_internal] = ACTIONS(647), - [anon_sym_new] = ACTIONS(673), - [anon_sym_override] = ACTIONS(647), - [anon_sym_partial] = ACTIONS(647), - [anon_sym_private] = ACTIONS(647), - [anon_sym_protected] = ACTIONS(647), - [anon_sym_public] = ACTIONS(647), - [anon_sym_readonly] = ACTIONS(647), - [anon_sym_required] = ACTIONS(647), - [anon_sym_sealed] = ACTIONS(647), - [anon_sym_virtual] = ACTIONS(647), - [anon_sym_volatile] = ACTIONS(647), - [anon_sym_where] = ACTIONS(29), - [anon_sym_notnull] = ACTIONS(29), - [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(675), + [anon_sym_return] = ACTIONS(661), + [anon_sym_ref] = ACTIONS(715), + [anon_sym_LBRACE] = ACTIONS(665), + [anon_sym_RBRACE] = ACTIONS(953), + [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(673), + [anon_sym_internal] = ACTIONS(645), + [anon_sym_new] = ACTIONS(675), + [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(677), [anon_sym_BANG] = ACTIONS(75), [anon_sym_TILDE] = ACTIONS(75), [anon_sym_PLUS_PLUS] = ACTIONS(75), @@ -36528,23 +36414,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(677), - [anon_sym_unchecked] = ACTIONS(675), - [anon_sym_continue] = ACTIONS(679), - [anon_sym_do] = ACTIONS(681), - [anon_sym_while] = ACTIONS(683), - [anon_sym_for] = ACTIONS(685), - [anon_sym_lock] = ACTIONS(687), - [anon_sym_yield] = ACTIONS(689), - [anon_sym_switch] = ACTIONS(691), + [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(695), - [anon_sym_try] = ACTIONS(697), + [anon_sym_throw] = ACTIONS(721), + [anon_sym_try] = ACTIONS(703), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(699), + [anon_sym_await] = ACTIONS(723), [anon_sym_foreach] = ACTIONS(117), - [anon_sym_goto] = ACTIONS(701), - [anon_sym_if] = ACTIONS(703), + [anon_sym_goto] = ACTIONS(707), + [anon_sym_if] = ACTIONS(709), [anon_sym_DOT_DOT] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), @@ -36570,7 +36456,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(705), + [aux_sym_preproc_if_token1] = ACTIONS(713), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -36587,114 +36473,114 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [46] = { - [sym_attribute_list] = STATE(3645), - [sym__attribute_list] = STATE(3580), - [sym_modifier] = STATE(3878), - [sym_parameter_list] = STATE(7311), - [sym_block] = STATE(2120), - [sym_variable_declaration] = STATE(7689), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(5160), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2204), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5867), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_statement] = STATE(2141), - [sym_break_statement] = STATE(2120), - [sym_checked_statement] = STATE(2120), - [sym_continue_statement] = STATE(2120), - [sym_do_statement] = STATE(2120), - [sym_empty_statement] = STATE(2120), - [sym_expression_statement] = STATE(2120), - [sym_fixed_statement] = STATE(2120), - [sym_for_statement] = STATE(2120), - [sym_return_statement] = STATE(2120), - [sym_lock_statement] = STATE(2120), - [sym_yield_statement] = STATE(2120), - [sym_switch_statement] = STATE(2120), - [sym_throw_statement] = STATE(2120), - [sym_try_statement] = STATE(2120), - [sym_unsafe_statement] = STATE(2120), - [sym_using_statement] = STATE(2120), - [sym_foreach_statement] = STATE(2120), + [sym_attribute_list] = STATE(3612), + [sym__attribute_list] = STATE(3570), + [sym_modifier] = STATE(3845), + [sym_parameter_list] = STATE(7531), + [sym_block] = STATE(2093), + [sym_variable_declaration] = STATE(7607), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(5152), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2196), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5805), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_statement] = STATE(2134), + [sym_break_statement] = STATE(2093), + [sym_checked_statement] = STATE(2093), + [sym_continue_statement] = STATE(2093), + [sym_do_statement] = STATE(2093), + [sym_empty_statement] = STATE(2093), + [sym_expression_statement] = STATE(2093), + [sym_fixed_statement] = STATE(2093), + [sym_for_statement] = STATE(2093), + [sym_return_statement] = STATE(2093), + [sym_lock_statement] = STATE(2093), + [sym_yield_statement] = STATE(2093), + [sym_switch_statement] = STATE(2093), + [sym_throw_statement] = STATE(2093), + [sym_try_statement] = STATE(2093), + [sym_unsafe_statement] = STATE(2093), + [sym_using_statement] = STATE(2093), + [sym_foreach_statement] = STATE(2093), [sym__foreach_statement_initializer] = STATE(93), - [sym_goto_statement] = STATE(2120), - [sym_labeled_statement] = STATE(2120), - [sym_if_statement] = STATE(2120), - [sym_while_statement] = STATE(2120), - [sym_local_declaration_statement] = STATE(2120), - [sym_local_function_statement] = STATE(2120), - [sym__local_function_declaration] = STATE(6322), - [sym_expression] = STATE(5672), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3461), - [sym__expression_statement_expression] = STATE(5635), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3080), - [sym_postfix_unary_expression] = STATE(3111), - [sym_prefix_unary_expression] = STATE(3111), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6154), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3080), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3111), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3080), - [sym_member_access_expression] = STATE(2484), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3111), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7530), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(3080), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3080), - [sym_typeof_expression] = STATE(3080), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2484), - [sym_literal] = STATE(3080), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2282), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_top_level] = STATE(2120), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(3645), + [sym_goto_statement] = STATE(2093), + [sym_labeled_statement] = STATE(2093), + [sym_if_statement] = STATE(2093), + [sym_while_statement] = STATE(2093), + [sym_local_declaration_statement] = STATE(2093), + [sym_local_function_statement] = STATE(2093), + [sym__local_function_declaration] = STATE(6310), + [sym_expression] = STATE(5660), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3356), + [sym__expression_statement_expression] = STATE(5554), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3102), + [sym_postfix_unary_expression] = STATE(3079), + [sym_prefix_unary_expression] = STATE(3079), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6134), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3102), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3079), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3102), + [sym_member_access_expression] = STATE(2472), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3079), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7425), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(3102), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3102), + [sym_typeof_expression] = STATE(3102), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2472), + [sym_literal] = STATE(3102), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2269), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_top_level] = STATE(2093), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(3612), [sym_preproc_region] = STATE(46), [sym_preproc_endregion] = STATE(46), [sym_preproc_line] = STATE(46), @@ -36704,46 +36590,46 @@ 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(2286), - [aux_sym__class_declaration_initializer_repeat2] = STATE(2529), - [aux_sym_block_repeat1] = STATE(49), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [aux_sym__class_declaration_initializer_repeat1] = STATE(2277), + [aux_sym__class_declaration_initializer_repeat2] = STATE(2540), + [aux_sym_block_repeat1] = STATE(28), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), - [anon_sym_extern] = ACTIONS(647), + [anon_sym_extern] = ACTIONS(645), [anon_sym_alias] = ACTIONS(29), - [anon_sym_SEMI] = ACTIONS(649), + [anon_sym_SEMI] = ACTIONS(647), [anon_sym_global] = ACTIONS(29), - [anon_sym_using] = ACTIONS(651), - [anon_sym_unsafe] = ACTIONS(653), - [anon_sym_static] = ACTIONS(655), - [anon_sym_LBRACK] = ACTIONS(657), + [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(659), - [anon_sym_ref] = ACTIONS(661), - [anon_sym_LBRACE] = ACTIONS(663), - [anon_sym_RBRACE] = ACTIONS(957), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_abstract] = ACTIONS(647), - [anon_sym_async] = ACTIONS(655), - [anon_sym_const] = ACTIONS(647), - [anon_sym_file] = ACTIONS(669), - [anon_sym_fixed] = ACTIONS(671), - [anon_sym_internal] = ACTIONS(647), - [anon_sym_new] = ACTIONS(673), - [anon_sym_override] = ACTIONS(647), - [anon_sym_partial] = ACTIONS(647), - [anon_sym_private] = ACTIONS(647), - [anon_sym_protected] = ACTIONS(647), - [anon_sym_public] = ACTIONS(647), - [anon_sym_readonly] = ACTIONS(647), - [anon_sym_required] = ACTIONS(647), - [anon_sym_sealed] = ACTIONS(647), - [anon_sym_virtual] = ACTIONS(647), - [anon_sym_volatile] = ACTIONS(647), - [anon_sym_where] = ACTIONS(29), - [anon_sym_notnull] = ACTIONS(29), - [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(675), + [anon_sym_return] = ACTIONS(661), + [anon_sym_ref] = ACTIONS(715), + [anon_sym_LBRACE] = ACTIONS(665), + [anon_sym_RBRACE] = ACTIONS(955), + [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(673), + [anon_sym_internal] = ACTIONS(645), + [anon_sym_new] = ACTIONS(675), + [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(677), [anon_sym_BANG] = ACTIONS(75), [anon_sym_TILDE] = ACTIONS(75), [anon_sym_PLUS_PLUS] = ACTIONS(75), @@ -36760,23 +36646,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(677), - [anon_sym_unchecked] = ACTIONS(675), - [anon_sym_continue] = ACTIONS(679), - [anon_sym_do] = ACTIONS(681), - [anon_sym_while] = ACTIONS(683), - [anon_sym_for] = ACTIONS(685), - [anon_sym_lock] = ACTIONS(687), - [anon_sym_yield] = ACTIONS(689), - [anon_sym_switch] = ACTIONS(691), + [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(695), - [anon_sym_try] = ACTIONS(697), + [anon_sym_throw] = ACTIONS(721), + [anon_sym_try] = ACTIONS(703), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(699), + [anon_sym_await] = ACTIONS(723), [anon_sym_foreach] = ACTIONS(117), - [anon_sym_goto] = ACTIONS(701), - [anon_sym_if] = ACTIONS(703), + [anon_sym_goto] = ACTIONS(707), + [anon_sym_if] = ACTIONS(709), [anon_sym_DOT_DOT] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), @@ -36802,7 +36688,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(705), + [aux_sym_preproc_if_token1] = ACTIONS(713), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -36819,114 +36705,114 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [47] = { - [sym_attribute_list] = STATE(3645), - [sym__attribute_list] = STATE(3580), - [sym_modifier] = STATE(3878), - [sym_parameter_list] = STATE(7311), - [sym_block] = STATE(2120), - [sym_variable_declaration] = STATE(7689), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(5160), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2204), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5867), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_statement] = STATE(2141), - [sym_break_statement] = STATE(2120), - [sym_checked_statement] = STATE(2120), - [sym_continue_statement] = STATE(2120), - [sym_do_statement] = STATE(2120), - [sym_empty_statement] = STATE(2120), - [sym_expression_statement] = STATE(2120), - [sym_fixed_statement] = STATE(2120), - [sym_for_statement] = STATE(2120), - [sym_return_statement] = STATE(2120), - [sym_lock_statement] = STATE(2120), - [sym_yield_statement] = STATE(2120), - [sym_switch_statement] = STATE(2120), - [sym_throw_statement] = STATE(2120), - [sym_try_statement] = STATE(2120), - [sym_unsafe_statement] = STATE(2120), - [sym_using_statement] = STATE(2120), - [sym_foreach_statement] = STATE(2120), + [sym_attribute_list] = STATE(3612), + [sym__attribute_list] = STATE(3570), + [sym_modifier] = STATE(3845), + [sym_parameter_list] = STATE(7531), + [sym_block] = STATE(2093), + [sym_variable_declaration] = STATE(7607), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(5152), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2196), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5805), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_statement] = STATE(2134), + [sym_break_statement] = STATE(2093), + [sym_checked_statement] = STATE(2093), + [sym_continue_statement] = STATE(2093), + [sym_do_statement] = STATE(2093), + [sym_empty_statement] = STATE(2093), + [sym_expression_statement] = STATE(2093), + [sym_fixed_statement] = STATE(2093), + [sym_for_statement] = STATE(2093), + [sym_return_statement] = STATE(2093), + [sym_lock_statement] = STATE(2093), + [sym_yield_statement] = STATE(2093), + [sym_switch_statement] = STATE(2093), + [sym_throw_statement] = STATE(2093), + [sym_try_statement] = STATE(2093), + [sym_unsafe_statement] = STATE(2093), + [sym_using_statement] = STATE(2093), + [sym_foreach_statement] = STATE(2093), [sym__foreach_statement_initializer] = STATE(93), - [sym_goto_statement] = STATE(2120), - [sym_labeled_statement] = STATE(2120), - [sym_if_statement] = STATE(2120), - [sym_while_statement] = STATE(2120), - [sym_local_declaration_statement] = STATE(2120), - [sym_local_function_statement] = STATE(2120), - [sym__local_function_declaration] = STATE(6322), - [sym_expression] = STATE(5672), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3461), - [sym__expression_statement_expression] = STATE(5635), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3080), - [sym_postfix_unary_expression] = STATE(3111), - [sym_prefix_unary_expression] = STATE(3111), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6154), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3080), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3111), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3080), - [sym_member_access_expression] = STATE(2484), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3111), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7530), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(3080), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3080), - [sym_typeof_expression] = STATE(3080), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2484), - [sym_literal] = STATE(3080), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2282), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_top_level] = STATE(2120), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(3645), + [sym_goto_statement] = STATE(2093), + [sym_labeled_statement] = STATE(2093), + [sym_if_statement] = STATE(2093), + [sym_while_statement] = STATE(2093), + [sym_local_declaration_statement] = STATE(2093), + [sym_local_function_statement] = STATE(2093), + [sym__local_function_declaration] = STATE(6310), + [sym_expression] = STATE(5660), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3356), + [sym__expression_statement_expression] = STATE(5554), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3102), + [sym_postfix_unary_expression] = STATE(3079), + [sym_prefix_unary_expression] = STATE(3079), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6134), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3102), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3079), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3102), + [sym_member_access_expression] = STATE(2472), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3079), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7425), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(3102), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3102), + [sym_typeof_expression] = STATE(3102), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2472), + [sym_literal] = STATE(3102), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2269), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_top_level] = STATE(2093), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(3612), [sym_preproc_region] = STATE(47), [sym_preproc_endregion] = STATE(47), [sym_preproc_line] = STATE(47), @@ -36936,46 +36822,46 @@ 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(2286), - [aux_sym__class_declaration_initializer_repeat2] = STATE(2529), - [aux_sym_block_repeat1] = STATE(27), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [aux_sym__class_declaration_initializer_repeat1] = STATE(2277), + [aux_sym__class_declaration_initializer_repeat2] = STATE(2540), + [aux_sym_block_repeat1] = STATE(50), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), - [anon_sym_extern] = ACTIONS(647), + [anon_sym_extern] = ACTIONS(645), [anon_sym_alias] = ACTIONS(29), - [anon_sym_SEMI] = ACTIONS(649), + [anon_sym_SEMI] = ACTIONS(647), [anon_sym_global] = ACTIONS(29), - [anon_sym_using] = ACTIONS(651), - [anon_sym_unsafe] = ACTIONS(653), - [anon_sym_static] = ACTIONS(655), - [anon_sym_LBRACK] = ACTIONS(657), + [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(659), - [anon_sym_ref] = ACTIONS(661), - [anon_sym_LBRACE] = ACTIONS(663), - [anon_sym_RBRACE] = ACTIONS(959), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_abstract] = ACTIONS(647), - [anon_sym_async] = ACTIONS(655), - [anon_sym_const] = ACTIONS(647), - [anon_sym_file] = ACTIONS(669), - [anon_sym_fixed] = ACTIONS(671), - [anon_sym_internal] = ACTIONS(647), - [anon_sym_new] = ACTIONS(673), - [anon_sym_override] = ACTIONS(647), - [anon_sym_partial] = ACTIONS(647), - [anon_sym_private] = ACTIONS(647), - [anon_sym_protected] = ACTIONS(647), - [anon_sym_public] = ACTIONS(647), - [anon_sym_readonly] = ACTIONS(647), - [anon_sym_required] = ACTIONS(647), - [anon_sym_sealed] = ACTIONS(647), - [anon_sym_virtual] = ACTIONS(647), - [anon_sym_volatile] = ACTIONS(647), - [anon_sym_where] = ACTIONS(29), - [anon_sym_notnull] = ACTIONS(29), - [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(675), + [anon_sym_return] = ACTIONS(661), + [anon_sym_ref] = ACTIONS(715), + [anon_sym_LBRACE] = ACTIONS(665), + [anon_sym_RBRACE] = ACTIONS(957), + [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(673), + [anon_sym_internal] = ACTIONS(645), + [anon_sym_new] = ACTIONS(675), + [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(677), [anon_sym_BANG] = ACTIONS(75), [anon_sym_TILDE] = ACTIONS(75), [anon_sym_PLUS_PLUS] = ACTIONS(75), @@ -36992,23 +36878,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(677), - [anon_sym_unchecked] = ACTIONS(675), - [anon_sym_continue] = ACTIONS(679), - [anon_sym_do] = ACTIONS(681), - [anon_sym_while] = ACTIONS(683), - [anon_sym_for] = ACTIONS(685), - [anon_sym_lock] = ACTIONS(687), - [anon_sym_yield] = ACTIONS(689), - [anon_sym_switch] = ACTIONS(691), + [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(695), - [anon_sym_try] = ACTIONS(697), + [anon_sym_throw] = ACTIONS(721), + [anon_sym_try] = ACTIONS(703), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(699), + [anon_sym_await] = ACTIONS(723), [anon_sym_foreach] = ACTIONS(117), - [anon_sym_goto] = ACTIONS(701), - [anon_sym_if] = ACTIONS(703), + [anon_sym_goto] = ACTIONS(707), + [anon_sym_if] = ACTIONS(709), [anon_sym_DOT_DOT] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), @@ -37034,7 +36920,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(705), + [aux_sym_preproc_if_token1] = ACTIONS(713), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -37051,114 +36937,114 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [48] = { - [sym_attribute_list] = STATE(3645), - [sym__attribute_list] = STATE(3580), - [sym_modifier] = STATE(3878), - [sym_parameter_list] = STATE(7311), - [sym_block] = STATE(2120), - [sym_variable_declaration] = STATE(7689), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(5160), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2204), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5867), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_statement] = STATE(2141), - [sym_break_statement] = STATE(2120), - [sym_checked_statement] = STATE(2120), - [sym_continue_statement] = STATE(2120), - [sym_do_statement] = STATE(2120), - [sym_empty_statement] = STATE(2120), - [sym_expression_statement] = STATE(2120), - [sym_fixed_statement] = STATE(2120), - [sym_for_statement] = STATE(2120), - [sym_return_statement] = STATE(2120), - [sym_lock_statement] = STATE(2120), - [sym_yield_statement] = STATE(2120), - [sym_switch_statement] = STATE(2120), - [sym_throw_statement] = STATE(2120), - [sym_try_statement] = STATE(2120), - [sym_unsafe_statement] = STATE(2120), - [sym_using_statement] = STATE(2120), - [sym_foreach_statement] = STATE(2120), + [sym_attribute_list] = STATE(3612), + [sym__attribute_list] = STATE(3570), + [sym_modifier] = STATE(3845), + [sym_parameter_list] = STATE(7531), + [sym_block] = STATE(2093), + [sym_variable_declaration] = STATE(7607), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(5152), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2196), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5805), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_statement] = STATE(2134), + [sym_break_statement] = STATE(2093), + [sym_checked_statement] = STATE(2093), + [sym_continue_statement] = STATE(2093), + [sym_do_statement] = STATE(2093), + [sym_empty_statement] = STATE(2093), + [sym_expression_statement] = STATE(2093), + [sym_fixed_statement] = STATE(2093), + [sym_for_statement] = STATE(2093), + [sym_return_statement] = STATE(2093), + [sym_lock_statement] = STATE(2093), + [sym_yield_statement] = STATE(2093), + [sym_switch_statement] = STATE(2093), + [sym_throw_statement] = STATE(2093), + [sym_try_statement] = STATE(2093), + [sym_unsafe_statement] = STATE(2093), + [sym_using_statement] = STATE(2093), + [sym_foreach_statement] = STATE(2093), [sym__foreach_statement_initializer] = STATE(93), - [sym_goto_statement] = STATE(2120), - [sym_labeled_statement] = STATE(2120), - [sym_if_statement] = STATE(2120), - [sym_while_statement] = STATE(2120), - [sym_local_declaration_statement] = STATE(2120), - [sym_local_function_statement] = STATE(2120), - [sym__local_function_declaration] = STATE(6322), - [sym_expression] = STATE(5672), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3461), - [sym__expression_statement_expression] = STATE(5635), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3080), - [sym_postfix_unary_expression] = STATE(3111), - [sym_prefix_unary_expression] = STATE(3111), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6154), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3080), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3111), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3080), - [sym_member_access_expression] = STATE(2484), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3111), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7530), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(3080), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3080), - [sym_typeof_expression] = STATE(3080), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2484), - [sym_literal] = STATE(3080), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2282), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_top_level] = STATE(2120), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(3645), + [sym_goto_statement] = STATE(2093), + [sym_labeled_statement] = STATE(2093), + [sym_if_statement] = STATE(2093), + [sym_while_statement] = STATE(2093), + [sym_local_declaration_statement] = STATE(2093), + [sym_local_function_statement] = STATE(2093), + [sym__local_function_declaration] = STATE(6310), + [sym_expression] = STATE(5660), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3356), + [sym__expression_statement_expression] = STATE(5554), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3102), + [sym_postfix_unary_expression] = STATE(3079), + [sym_prefix_unary_expression] = STATE(3079), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6134), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3102), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3079), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3102), + [sym_member_access_expression] = STATE(2472), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3079), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7425), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(3102), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3102), + [sym_typeof_expression] = STATE(3102), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2472), + [sym_literal] = STATE(3102), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2269), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_top_level] = STATE(2093), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(3612), [sym_preproc_region] = STATE(48), [sym_preproc_endregion] = STATE(48), [sym_preproc_line] = STATE(48), @@ -37168,46 +37054,46 @@ 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(2286), - [aux_sym__class_declaration_initializer_repeat2] = STATE(2529), - [aux_sym_block_repeat1] = STATE(51), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [aux_sym__class_declaration_initializer_repeat1] = STATE(2277), + [aux_sym__class_declaration_initializer_repeat2] = STATE(2540), + [aux_sym_block_repeat1] = STATE(28), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), - [anon_sym_extern] = ACTIONS(647), + [anon_sym_extern] = ACTIONS(645), [anon_sym_alias] = ACTIONS(29), - [anon_sym_SEMI] = ACTIONS(649), + [anon_sym_SEMI] = ACTIONS(647), [anon_sym_global] = ACTIONS(29), - [anon_sym_using] = ACTIONS(651), - [anon_sym_unsafe] = ACTIONS(653), - [anon_sym_static] = ACTIONS(655), - [anon_sym_LBRACK] = ACTIONS(657), + [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(659), - [anon_sym_ref] = ACTIONS(661), - [anon_sym_LBRACE] = ACTIONS(663), - [anon_sym_RBRACE] = ACTIONS(961), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_abstract] = ACTIONS(647), - [anon_sym_async] = ACTIONS(655), - [anon_sym_const] = ACTIONS(647), - [anon_sym_file] = ACTIONS(669), - [anon_sym_fixed] = ACTIONS(671), - [anon_sym_internal] = ACTIONS(647), - [anon_sym_new] = ACTIONS(673), - [anon_sym_override] = ACTIONS(647), - [anon_sym_partial] = ACTIONS(647), - [anon_sym_private] = ACTIONS(647), - [anon_sym_protected] = ACTIONS(647), - [anon_sym_public] = ACTIONS(647), - [anon_sym_readonly] = ACTIONS(647), - [anon_sym_required] = ACTIONS(647), - [anon_sym_sealed] = ACTIONS(647), - [anon_sym_virtual] = ACTIONS(647), - [anon_sym_volatile] = ACTIONS(647), - [anon_sym_where] = ACTIONS(29), - [anon_sym_notnull] = ACTIONS(29), - [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(675), + [anon_sym_return] = ACTIONS(661), + [anon_sym_ref] = ACTIONS(715), + [anon_sym_LBRACE] = ACTIONS(665), + [anon_sym_RBRACE] = ACTIONS(959), + [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(673), + [anon_sym_internal] = ACTIONS(645), + [anon_sym_new] = ACTIONS(675), + [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(677), [anon_sym_BANG] = ACTIONS(75), [anon_sym_TILDE] = ACTIONS(75), [anon_sym_PLUS_PLUS] = ACTIONS(75), @@ -37224,23 +37110,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(677), - [anon_sym_unchecked] = ACTIONS(675), - [anon_sym_continue] = ACTIONS(679), - [anon_sym_do] = ACTIONS(681), - [anon_sym_while] = ACTIONS(683), - [anon_sym_for] = ACTIONS(685), - [anon_sym_lock] = ACTIONS(687), - [anon_sym_yield] = ACTIONS(689), - [anon_sym_switch] = ACTIONS(691), + [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(695), - [anon_sym_try] = ACTIONS(697), + [anon_sym_throw] = ACTIONS(721), + [anon_sym_try] = ACTIONS(703), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(699), + [anon_sym_await] = ACTIONS(723), [anon_sym_foreach] = ACTIONS(117), - [anon_sym_goto] = ACTIONS(701), - [anon_sym_if] = ACTIONS(703), + [anon_sym_goto] = ACTIONS(707), + [anon_sym_if] = ACTIONS(709), [anon_sym_DOT_DOT] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), @@ -37266,7 +37152,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(705), + [aux_sym_preproc_if_token1] = ACTIONS(713), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -37283,114 +37169,114 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [49] = { - [sym_attribute_list] = STATE(3645), - [sym__attribute_list] = STATE(3580), - [sym_modifier] = STATE(3878), - [sym_parameter_list] = STATE(7311), - [sym_block] = STATE(2120), - [sym_variable_declaration] = STATE(7689), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(5160), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2204), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5867), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_statement] = STATE(2141), - [sym_break_statement] = STATE(2120), - [sym_checked_statement] = STATE(2120), - [sym_continue_statement] = STATE(2120), - [sym_do_statement] = STATE(2120), - [sym_empty_statement] = STATE(2120), - [sym_expression_statement] = STATE(2120), - [sym_fixed_statement] = STATE(2120), - [sym_for_statement] = STATE(2120), - [sym_return_statement] = STATE(2120), - [sym_lock_statement] = STATE(2120), - [sym_yield_statement] = STATE(2120), - [sym_switch_statement] = STATE(2120), - [sym_throw_statement] = STATE(2120), - [sym_try_statement] = STATE(2120), - [sym_unsafe_statement] = STATE(2120), - [sym_using_statement] = STATE(2120), - [sym_foreach_statement] = STATE(2120), + [sym_attribute_list] = STATE(3612), + [sym__attribute_list] = STATE(3570), + [sym_modifier] = STATE(3845), + [sym_parameter_list] = STATE(7531), + [sym_block] = STATE(2093), + [sym_variable_declaration] = STATE(7607), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(5152), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2196), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5805), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_statement] = STATE(2134), + [sym_break_statement] = STATE(2093), + [sym_checked_statement] = STATE(2093), + [sym_continue_statement] = STATE(2093), + [sym_do_statement] = STATE(2093), + [sym_empty_statement] = STATE(2093), + [sym_expression_statement] = STATE(2093), + [sym_fixed_statement] = STATE(2093), + [sym_for_statement] = STATE(2093), + [sym_return_statement] = STATE(2093), + [sym_lock_statement] = STATE(2093), + [sym_yield_statement] = STATE(2093), + [sym_switch_statement] = STATE(2093), + [sym_throw_statement] = STATE(2093), + [sym_try_statement] = STATE(2093), + [sym_unsafe_statement] = STATE(2093), + [sym_using_statement] = STATE(2093), + [sym_foreach_statement] = STATE(2093), [sym__foreach_statement_initializer] = STATE(93), - [sym_goto_statement] = STATE(2120), - [sym_labeled_statement] = STATE(2120), - [sym_if_statement] = STATE(2120), - [sym_while_statement] = STATE(2120), - [sym_local_declaration_statement] = STATE(2120), - [sym_local_function_statement] = STATE(2120), - [sym__local_function_declaration] = STATE(6322), - [sym_expression] = STATE(5672), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3461), - [sym__expression_statement_expression] = STATE(5635), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3080), - [sym_postfix_unary_expression] = STATE(3111), - [sym_prefix_unary_expression] = STATE(3111), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6154), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3080), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3111), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3080), - [sym_member_access_expression] = STATE(2484), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3111), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7530), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(3080), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3080), - [sym_typeof_expression] = STATE(3080), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2484), - [sym_literal] = STATE(3080), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2282), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_top_level] = STATE(2120), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(3645), + [sym_goto_statement] = STATE(2093), + [sym_labeled_statement] = STATE(2093), + [sym_if_statement] = STATE(2093), + [sym_while_statement] = STATE(2093), + [sym_local_declaration_statement] = STATE(2093), + [sym_local_function_statement] = STATE(2093), + [sym__local_function_declaration] = STATE(6310), + [sym_expression] = STATE(5660), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3356), + [sym__expression_statement_expression] = STATE(5554), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3102), + [sym_postfix_unary_expression] = STATE(3079), + [sym_prefix_unary_expression] = STATE(3079), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6134), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3102), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3079), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3102), + [sym_member_access_expression] = STATE(2472), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3079), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7425), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(3102), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3102), + [sym_typeof_expression] = STATE(3102), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2472), + [sym_literal] = STATE(3102), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2269), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_top_level] = STATE(2093), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(3612), [sym_preproc_region] = STATE(49), [sym_preproc_endregion] = STATE(49), [sym_preproc_line] = STATE(49), @@ -37400,46 +37286,46 @@ 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(2286), - [aux_sym__class_declaration_initializer_repeat2] = STATE(2529), - [aux_sym_block_repeat1] = STATE(27), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [aux_sym__class_declaration_initializer_repeat1] = STATE(2277), + [aux_sym__class_declaration_initializer_repeat2] = STATE(2540), + [aux_sym_block_repeat1] = STATE(52), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), - [anon_sym_extern] = ACTIONS(647), + [anon_sym_extern] = ACTIONS(645), [anon_sym_alias] = ACTIONS(29), - [anon_sym_SEMI] = ACTIONS(649), + [anon_sym_SEMI] = ACTIONS(647), [anon_sym_global] = ACTIONS(29), - [anon_sym_using] = ACTIONS(651), - [anon_sym_unsafe] = ACTIONS(653), - [anon_sym_static] = ACTIONS(655), - [anon_sym_LBRACK] = ACTIONS(657), + [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(659), - [anon_sym_ref] = ACTIONS(661), - [anon_sym_LBRACE] = ACTIONS(663), - [anon_sym_RBRACE] = ACTIONS(963), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_abstract] = ACTIONS(647), - [anon_sym_async] = ACTIONS(655), - [anon_sym_const] = ACTIONS(647), - [anon_sym_file] = ACTIONS(669), - [anon_sym_fixed] = ACTIONS(671), - [anon_sym_internal] = ACTIONS(647), - [anon_sym_new] = ACTIONS(673), - [anon_sym_override] = ACTIONS(647), - [anon_sym_partial] = ACTIONS(647), - [anon_sym_private] = ACTIONS(647), - [anon_sym_protected] = ACTIONS(647), - [anon_sym_public] = ACTIONS(647), - [anon_sym_readonly] = ACTIONS(647), - [anon_sym_required] = ACTIONS(647), - [anon_sym_sealed] = ACTIONS(647), - [anon_sym_virtual] = ACTIONS(647), - [anon_sym_volatile] = ACTIONS(647), - [anon_sym_where] = ACTIONS(29), - [anon_sym_notnull] = ACTIONS(29), - [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(675), + [anon_sym_return] = ACTIONS(661), + [anon_sym_ref] = ACTIONS(715), + [anon_sym_LBRACE] = ACTIONS(665), + [anon_sym_RBRACE] = ACTIONS(961), + [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(673), + [anon_sym_internal] = ACTIONS(645), + [anon_sym_new] = ACTIONS(675), + [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(677), [anon_sym_BANG] = ACTIONS(75), [anon_sym_TILDE] = ACTIONS(75), [anon_sym_PLUS_PLUS] = ACTIONS(75), @@ -37456,23 +37342,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(677), - [anon_sym_unchecked] = ACTIONS(675), - [anon_sym_continue] = ACTIONS(679), - [anon_sym_do] = ACTIONS(681), - [anon_sym_while] = ACTIONS(683), - [anon_sym_for] = ACTIONS(685), - [anon_sym_lock] = ACTIONS(687), - [anon_sym_yield] = ACTIONS(689), - [anon_sym_switch] = ACTIONS(691), + [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(695), - [anon_sym_try] = ACTIONS(697), + [anon_sym_throw] = ACTIONS(721), + [anon_sym_try] = ACTIONS(703), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(699), + [anon_sym_await] = ACTIONS(723), [anon_sym_foreach] = ACTIONS(117), - [anon_sym_goto] = ACTIONS(701), - [anon_sym_if] = ACTIONS(703), + [anon_sym_goto] = ACTIONS(707), + [anon_sym_if] = ACTIONS(709), [anon_sym_DOT_DOT] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), @@ -37498,7 +37384,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(705), + [aux_sym_preproc_if_token1] = ACTIONS(713), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -37515,114 +37401,114 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [50] = { - [sym_attribute_list] = STATE(3645), - [sym__attribute_list] = STATE(3580), - [sym_modifier] = STATE(3878), - [sym_parameter_list] = STATE(7311), - [sym_block] = STATE(2120), - [sym_variable_declaration] = STATE(7689), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(5160), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2204), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5867), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_statement] = STATE(2141), - [sym_break_statement] = STATE(2120), - [sym_checked_statement] = STATE(2120), - [sym_continue_statement] = STATE(2120), - [sym_do_statement] = STATE(2120), - [sym_empty_statement] = STATE(2120), - [sym_expression_statement] = STATE(2120), - [sym_fixed_statement] = STATE(2120), - [sym_for_statement] = STATE(2120), - [sym_return_statement] = STATE(2120), - [sym_lock_statement] = STATE(2120), - [sym_yield_statement] = STATE(2120), - [sym_switch_statement] = STATE(2120), - [sym_throw_statement] = STATE(2120), - [sym_try_statement] = STATE(2120), - [sym_unsafe_statement] = STATE(2120), - [sym_using_statement] = STATE(2120), - [sym_foreach_statement] = STATE(2120), + [sym_attribute_list] = STATE(3612), + [sym__attribute_list] = STATE(3570), + [sym_modifier] = STATE(3845), + [sym_parameter_list] = STATE(7531), + [sym_block] = STATE(2093), + [sym_variable_declaration] = STATE(7607), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(5152), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2196), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5805), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_statement] = STATE(2134), + [sym_break_statement] = STATE(2093), + [sym_checked_statement] = STATE(2093), + [sym_continue_statement] = STATE(2093), + [sym_do_statement] = STATE(2093), + [sym_empty_statement] = STATE(2093), + [sym_expression_statement] = STATE(2093), + [sym_fixed_statement] = STATE(2093), + [sym_for_statement] = STATE(2093), + [sym_return_statement] = STATE(2093), + [sym_lock_statement] = STATE(2093), + [sym_yield_statement] = STATE(2093), + [sym_switch_statement] = STATE(2093), + [sym_throw_statement] = STATE(2093), + [sym_try_statement] = STATE(2093), + [sym_unsafe_statement] = STATE(2093), + [sym_using_statement] = STATE(2093), + [sym_foreach_statement] = STATE(2093), [sym__foreach_statement_initializer] = STATE(93), - [sym_goto_statement] = STATE(2120), - [sym_labeled_statement] = STATE(2120), - [sym_if_statement] = STATE(2120), - [sym_while_statement] = STATE(2120), - [sym_local_declaration_statement] = STATE(2120), - [sym_local_function_statement] = STATE(2120), - [sym__local_function_declaration] = STATE(6322), - [sym_expression] = STATE(5672), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3461), - [sym__expression_statement_expression] = STATE(5635), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3080), - [sym_postfix_unary_expression] = STATE(3111), - [sym_prefix_unary_expression] = STATE(3111), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6154), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3080), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3111), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3080), - [sym_member_access_expression] = STATE(2484), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3111), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7530), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(3080), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3080), - [sym_typeof_expression] = STATE(3080), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2484), - [sym_literal] = STATE(3080), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2282), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_top_level] = STATE(2120), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(3645), + [sym_goto_statement] = STATE(2093), + [sym_labeled_statement] = STATE(2093), + [sym_if_statement] = STATE(2093), + [sym_while_statement] = STATE(2093), + [sym_local_declaration_statement] = STATE(2093), + [sym_local_function_statement] = STATE(2093), + [sym__local_function_declaration] = STATE(6310), + [sym_expression] = STATE(5660), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3356), + [sym__expression_statement_expression] = STATE(5554), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3102), + [sym_postfix_unary_expression] = STATE(3079), + [sym_prefix_unary_expression] = STATE(3079), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6134), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3102), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3079), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3102), + [sym_member_access_expression] = STATE(2472), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3079), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7425), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(3102), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3102), + [sym_typeof_expression] = STATE(3102), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2472), + [sym_literal] = STATE(3102), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2269), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_top_level] = STATE(2093), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(3612), [sym_preproc_region] = STATE(50), [sym_preproc_endregion] = STATE(50), [sym_preproc_line] = STATE(50), @@ -37632,46 +37518,46 @@ 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(2286), - [aux_sym__class_declaration_initializer_repeat2] = STATE(2529), - [aux_sym_block_repeat1] = STATE(54), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [aux_sym__class_declaration_initializer_repeat1] = STATE(2277), + [aux_sym__class_declaration_initializer_repeat2] = STATE(2540), + [aux_sym_block_repeat1] = STATE(28), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), - [anon_sym_extern] = ACTIONS(647), + [anon_sym_extern] = ACTIONS(645), [anon_sym_alias] = ACTIONS(29), - [anon_sym_SEMI] = ACTIONS(649), + [anon_sym_SEMI] = ACTIONS(647), [anon_sym_global] = ACTIONS(29), - [anon_sym_using] = ACTIONS(651), - [anon_sym_unsafe] = ACTIONS(653), - [anon_sym_static] = ACTIONS(655), - [anon_sym_LBRACK] = ACTIONS(657), + [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(659), - [anon_sym_ref] = ACTIONS(661), - [anon_sym_LBRACE] = ACTIONS(663), - [anon_sym_RBRACE] = ACTIONS(965), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_abstract] = ACTIONS(647), - [anon_sym_async] = ACTIONS(655), - [anon_sym_const] = ACTIONS(647), - [anon_sym_file] = ACTIONS(669), - [anon_sym_fixed] = ACTIONS(671), - [anon_sym_internal] = ACTIONS(647), - [anon_sym_new] = ACTIONS(673), - [anon_sym_override] = ACTIONS(647), - [anon_sym_partial] = ACTIONS(647), - [anon_sym_private] = ACTIONS(647), - [anon_sym_protected] = ACTIONS(647), - [anon_sym_public] = ACTIONS(647), - [anon_sym_readonly] = ACTIONS(647), - [anon_sym_required] = ACTIONS(647), - [anon_sym_sealed] = ACTIONS(647), - [anon_sym_virtual] = ACTIONS(647), - [anon_sym_volatile] = ACTIONS(647), - [anon_sym_where] = ACTIONS(29), - [anon_sym_notnull] = ACTIONS(29), - [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(675), + [anon_sym_return] = ACTIONS(661), + [anon_sym_ref] = ACTIONS(715), + [anon_sym_LBRACE] = ACTIONS(665), + [anon_sym_RBRACE] = ACTIONS(963), + [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(673), + [anon_sym_internal] = ACTIONS(645), + [anon_sym_new] = ACTIONS(675), + [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(677), [anon_sym_BANG] = ACTIONS(75), [anon_sym_TILDE] = ACTIONS(75), [anon_sym_PLUS_PLUS] = ACTIONS(75), @@ -37688,23 +37574,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(677), - [anon_sym_unchecked] = ACTIONS(675), - [anon_sym_continue] = ACTIONS(679), - [anon_sym_do] = ACTIONS(681), - [anon_sym_while] = ACTIONS(683), - [anon_sym_for] = ACTIONS(685), - [anon_sym_lock] = ACTIONS(687), - [anon_sym_yield] = ACTIONS(689), - [anon_sym_switch] = ACTIONS(691), + [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(695), - [anon_sym_try] = ACTIONS(697), + [anon_sym_throw] = ACTIONS(721), + [anon_sym_try] = ACTIONS(703), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(699), + [anon_sym_await] = ACTIONS(723), [anon_sym_foreach] = ACTIONS(117), - [anon_sym_goto] = ACTIONS(701), - [anon_sym_if] = ACTIONS(703), + [anon_sym_goto] = ACTIONS(707), + [anon_sym_if] = ACTIONS(709), [anon_sym_DOT_DOT] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), @@ -37730,7 +37616,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(705), + [aux_sym_preproc_if_token1] = ACTIONS(713), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -37747,114 +37633,114 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [51] = { - [sym_attribute_list] = STATE(3645), - [sym__attribute_list] = STATE(3580), - [sym_modifier] = STATE(3878), - [sym_parameter_list] = STATE(7311), - [sym_block] = STATE(2120), - [sym_variable_declaration] = STATE(7689), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(5160), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2204), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5867), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_statement] = STATE(2141), - [sym_break_statement] = STATE(2120), - [sym_checked_statement] = STATE(2120), - [sym_continue_statement] = STATE(2120), - [sym_do_statement] = STATE(2120), - [sym_empty_statement] = STATE(2120), - [sym_expression_statement] = STATE(2120), - [sym_fixed_statement] = STATE(2120), - [sym_for_statement] = STATE(2120), - [sym_return_statement] = STATE(2120), - [sym_lock_statement] = STATE(2120), - [sym_yield_statement] = STATE(2120), - [sym_switch_statement] = STATE(2120), - [sym_throw_statement] = STATE(2120), - [sym_try_statement] = STATE(2120), - [sym_unsafe_statement] = STATE(2120), - [sym_using_statement] = STATE(2120), - [sym_foreach_statement] = STATE(2120), + [sym_attribute_list] = STATE(3612), + [sym__attribute_list] = STATE(3570), + [sym_modifier] = STATE(3845), + [sym_parameter_list] = STATE(7531), + [sym_block] = STATE(2093), + [sym_variable_declaration] = STATE(7607), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(5152), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2196), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5805), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_statement] = STATE(2134), + [sym_break_statement] = STATE(2093), + [sym_checked_statement] = STATE(2093), + [sym_continue_statement] = STATE(2093), + [sym_do_statement] = STATE(2093), + [sym_empty_statement] = STATE(2093), + [sym_expression_statement] = STATE(2093), + [sym_fixed_statement] = STATE(2093), + [sym_for_statement] = STATE(2093), + [sym_return_statement] = STATE(2093), + [sym_lock_statement] = STATE(2093), + [sym_yield_statement] = STATE(2093), + [sym_switch_statement] = STATE(2093), + [sym_throw_statement] = STATE(2093), + [sym_try_statement] = STATE(2093), + [sym_unsafe_statement] = STATE(2093), + [sym_using_statement] = STATE(2093), + [sym_foreach_statement] = STATE(2093), [sym__foreach_statement_initializer] = STATE(93), - [sym_goto_statement] = STATE(2120), - [sym_labeled_statement] = STATE(2120), - [sym_if_statement] = STATE(2120), - [sym_while_statement] = STATE(2120), - [sym_local_declaration_statement] = STATE(2120), - [sym_local_function_statement] = STATE(2120), - [sym__local_function_declaration] = STATE(6322), - [sym_expression] = STATE(5672), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3461), - [sym__expression_statement_expression] = STATE(5635), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3080), - [sym_postfix_unary_expression] = STATE(3111), - [sym_prefix_unary_expression] = STATE(3111), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6154), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3080), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3111), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3080), - [sym_member_access_expression] = STATE(2484), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3111), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7530), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(3080), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3080), - [sym_typeof_expression] = STATE(3080), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2484), - [sym_literal] = STATE(3080), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2282), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_top_level] = STATE(2120), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(3645), + [sym_goto_statement] = STATE(2093), + [sym_labeled_statement] = STATE(2093), + [sym_if_statement] = STATE(2093), + [sym_while_statement] = STATE(2093), + [sym_local_declaration_statement] = STATE(2093), + [sym_local_function_statement] = STATE(2093), + [sym__local_function_declaration] = STATE(6310), + [sym_expression] = STATE(5660), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3356), + [sym__expression_statement_expression] = STATE(5554), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3102), + [sym_postfix_unary_expression] = STATE(3079), + [sym_prefix_unary_expression] = STATE(3079), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6134), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3102), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3079), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3102), + [sym_member_access_expression] = STATE(2472), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3079), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7425), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(3102), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3102), + [sym_typeof_expression] = STATE(3102), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2472), + [sym_literal] = STATE(3102), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2269), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_top_level] = STATE(2093), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(3612), [sym_preproc_region] = STATE(51), [sym_preproc_endregion] = STATE(51), [sym_preproc_line] = STATE(51), @@ -37864,46 +37750,46 @@ 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(2286), - [aux_sym__class_declaration_initializer_repeat2] = STATE(2529), - [aux_sym_block_repeat1] = STATE(27), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [aux_sym__class_declaration_initializer_repeat1] = STATE(2277), + [aux_sym__class_declaration_initializer_repeat2] = STATE(2540), + [aux_sym_block_repeat1] = STATE(54), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), - [anon_sym_extern] = ACTIONS(647), + [anon_sym_extern] = ACTIONS(645), [anon_sym_alias] = ACTIONS(29), - [anon_sym_SEMI] = ACTIONS(649), + [anon_sym_SEMI] = ACTIONS(647), [anon_sym_global] = ACTIONS(29), - [anon_sym_using] = ACTIONS(651), - [anon_sym_unsafe] = ACTIONS(653), - [anon_sym_static] = ACTIONS(655), - [anon_sym_LBRACK] = ACTIONS(657), + [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(659), - [anon_sym_ref] = ACTIONS(661), - [anon_sym_LBRACE] = ACTIONS(663), - [anon_sym_RBRACE] = ACTIONS(967), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_abstract] = ACTIONS(647), - [anon_sym_async] = ACTIONS(655), - [anon_sym_const] = ACTIONS(647), - [anon_sym_file] = ACTIONS(669), - [anon_sym_fixed] = ACTIONS(671), - [anon_sym_internal] = ACTIONS(647), - [anon_sym_new] = ACTIONS(673), - [anon_sym_override] = ACTIONS(647), - [anon_sym_partial] = ACTIONS(647), - [anon_sym_private] = ACTIONS(647), - [anon_sym_protected] = ACTIONS(647), - [anon_sym_public] = ACTIONS(647), - [anon_sym_readonly] = ACTIONS(647), - [anon_sym_required] = ACTIONS(647), - [anon_sym_sealed] = ACTIONS(647), - [anon_sym_virtual] = ACTIONS(647), - [anon_sym_volatile] = ACTIONS(647), - [anon_sym_where] = ACTIONS(29), - [anon_sym_notnull] = ACTIONS(29), - [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(675), + [anon_sym_return] = ACTIONS(661), + [anon_sym_ref] = ACTIONS(715), + [anon_sym_LBRACE] = ACTIONS(665), + [anon_sym_RBRACE] = ACTIONS(965), + [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(673), + [anon_sym_internal] = ACTIONS(645), + [anon_sym_new] = ACTIONS(675), + [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(677), [anon_sym_BANG] = ACTIONS(75), [anon_sym_TILDE] = ACTIONS(75), [anon_sym_PLUS_PLUS] = ACTIONS(75), @@ -37920,23 +37806,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(677), - [anon_sym_unchecked] = ACTIONS(675), - [anon_sym_continue] = ACTIONS(679), - [anon_sym_do] = ACTIONS(681), - [anon_sym_while] = ACTIONS(683), - [anon_sym_for] = ACTIONS(685), - [anon_sym_lock] = ACTIONS(687), - [anon_sym_yield] = ACTIONS(689), - [anon_sym_switch] = ACTIONS(691), + [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(695), - [anon_sym_try] = ACTIONS(697), + [anon_sym_throw] = ACTIONS(721), + [anon_sym_try] = ACTIONS(703), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(699), + [anon_sym_await] = ACTIONS(723), [anon_sym_foreach] = ACTIONS(117), - [anon_sym_goto] = ACTIONS(701), - [anon_sym_if] = ACTIONS(703), + [anon_sym_goto] = ACTIONS(707), + [anon_sym_if] = ACTIONS(709), [anon_sym_DOT_DOT] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), @@ -37962,7 +37848,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(705), + [aux_sym_preproc_if_token1] = ACTIONS(713), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -37979,114 +37865,114 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [52] = { - [sym_attribute_list] = STATE(3645), - [sym__attribute_list] = STATE(3580), - [sym_modifier] = STATE(3878), - [sym_parameter_list] = STATE(7311), - [sym_block] = STATE(2120), - [sym_variable_declaration] = STATE(7689), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(5160), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2204), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5867), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_statement] = STATE(2141), - [sym_break_statement] = STATE(2120), - [sym_checked_statement] = STATE(2120), - [sym_continue_statement] = STATE(2120), - [sym_do_statement] = STATE(2120), - [sym_empty_statement] = STATE(2120), - [sym_expression_statement] = STATE(2120), - [sym_fixed_statement] = STATE(2120), - [sym_for_statement] = STATE(2120), - [sym_return_statement] = STATE(2120), - [sym_lock_statement] = STATE(2120), - [sym_yield_statement] = STATE(2120), - [sym_switch_statement] = STATE(2120), - [sym_throw_statement] = STATE(2120), - [sym_try_statement] = STATE(2120), - [sym_unsafe_statement] = STATE(2120), - [sym_using_statement] = STATE(2120), - [sym_foreach_statement] = STATE(2120), + [sym_attribute_list] = STATE(3612), + [sym__attribute_list] = STATE(3570), + [sym_modifier] = STATE(3845), + [sym_parameter_list] = STATE(7531), + [sym_block] = STATE(2093), + [sym_variable_declaration] = STATE(7607), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(5152), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2196), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5805), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_statement] = STATE(2134), + [sym_break_statement] = STATE(2093), + [sym_checked_statement] = STATE(2093), + [sym_continue_statement] = STATE(2093), + [sym_do_statement] = STATE(2093), + [sym_empty_statement] = STATE(2093), + [sym_expression_statement] = STATE(2093), + [sym_fixed_statement] = STATE(2093), + [sym_for_statement] = STATE(2093), + [sym_return_statement] = STATE(2093), + [sym_lock_statement] = STATE(2093), + [sym_yield_statement] = STATE(2093), + [sym_switch_statement] = STATE(2093), + [sym_throw_statement] = STATE(2093), + [sym_try_statement] = STATE(2093), + [sym_unsafe_statement] = STATE(2093), + [sym_using_statement] = STATE(2093), + [sym_foreach_statement] = STATE(2093), [sym__foreach_statement_initializer] = STATE(93), - [sym_goto_statement] = STATE(2120), - [sym_labeled_statement] = STATE(2120), - [sym_if_statement] = STATE(2120), - [sym_while_statement] = STATE(2120), - [sym_local_declaration_statement] = STATE(2120), - [sym_local_function_statement] = STATE(2120), - [sym__local_function_declaration] = STATE(6322), - [sym_expression] = STATE(5672), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3461), - [sym__expression_statement_expression] = STATE(5635), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3080), - [sym_postfix_unary_expression] = STATE(3111), - [sym_prefix_unary_expression] = STATE(3111), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6154), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3080), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3111), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3080), - [sym_member_access_expression] = STATE(2484), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3111), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7530), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(3080), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3080), - [sym_typeof_expression] = STATE(3080), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2484), - [sym_literal] = STATE(3080), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2282), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_top_level] = STATE(2120), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(3645), + [sym_goto_statement] = STATE(2093), + [sym_labeled_statement] = STATE(2093), + [sym_if_statement] = STATE(2093), + [sym_while_statement] = STATE(2093), + [sym_local_declaration_statement] = STATE(2093), + [sym_local_function_statement] = STATE(2093), + [sym__local_function_declaration] = STATE(6310), + [sym_expression] = STATE(5660), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3356), + [sym__expression_statement_expression] = STATE(5554), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3102), + [sym_postfix_unary_expression] = STATE(3079), + [sym_prefix_unary_expression] = STATE(3079), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6134), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3102), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3079), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3102), + [sym_member_access_expression] = STATE(2472), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3079), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7425), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(3102), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3102), + [sym_typeof_expression] = STATE(3102), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2472), + [sym_literal] = STATE(3102), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2269), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_top_level] = STATE(2093), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(3612), [sym_preproc_region] = STATE(52), [sym_preproc_endregion] = STATE(52), [sym_preproc_line] = STATE(52), @@ -38096,46 +37982,46 @@ 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(2286), - [aux_sym__class_declaration_initializer_repeat2] = STATE(2529), - [aux_sym_block_repeat1] = STATE(55), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [aux_sym__class_declaration_initializer_repeat1] = STATE(2277), + [aux_sym__class_declaration_initializer_repeat2] = STATE(2540), + [aux_sym_block_repeat1] = STATE(28), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), - [anon_sym_extern] = ACTIONS(647), + [anon_sym_extern] = ACTIONS(645), [anon_sym_alias] = ACTIONS(29), - [anon_sym_SEMI] = ACTIONS(649), + [anon_sym_SEMI] = ACTIONS(647), [anon_sym_global] = ACTIONS(29), - [anon_sym_using] = ACTIONS(651), - [anon_sym_unsafe] = ACTIONS(653), - [anon_sym_static] = ACTIONS(655), - [anon_sym_LBRACK] = ACTIONS(657), + [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(659), - [anon_sym_ref] = ACTIONS(661), - [anon_sym_LBRACE] = ACTIONS(663), - [anon_sym_RBRACE] = ACTIONS(969), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_abstract] = ACTIONS(647), - [anon_sym_async] = ACTIONS(655), - [anon_sym_const] = ACTIONS(647), - [anon_sym_file] = ACTIONS(669), - [anon_sym_fixed] = ACTIONS(671), - [anon_sym_internal] = ACTIONS(647), - [anon_sym_new] = ACTIONS(673), - [anon_sym_override] = ACTIONS(647), - [anon_sym_partial] = ACTIONS(647), - [anon_sym_private] = ACTIONS(647), - [anon_sym_protected] = ACTIONS(647), - [anon_sym_public] = ACTIONS(647), - [anon_sym_readonly] = ACTIONS(647), - [anon_sym_required] = ACTIONS(647), - [anon_sym_sealed] = ACTIONS(647), - [anon_sym_virtual] = ACTIONS(647), - [anon_sym_volatile] = ACTIONS(647), - [anon_sym_where] = ACTIONS(29), - [anon_sym_notnull] = ACTIONS(29), - [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(675), + [anon_sym_return] = ACTIONS(661), + [anon_sym_ref] = ACTIONS(715), + [anon_sym_LBRACE] = ACTIONS(665), + [anon_sym_RBRACE] = ACTIONS(967), + [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(673), + [anon_sym_internal] = ACTIONS(645), + [anon_sym_new] = ACTIONS(675), + [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(677), [anon_sym_BANG] = ACTIONS(75), [anon_sym_TILDE] = ACTIONS(75), [anon_sym_PLUS_PLUS] = ACTIONS(75), @@ -38152,23 +38038,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(677), - [anon_sym_unchecked] = ACTIONS(675), - [anon_sym_continue] = ACTIONS(679), - [anon_sym_do] = ACTIONS(681), - [anon_sym_while] = ACTIONS(683), - [anon_sym_for] = ACTIONS(685), - [anon_sym_lock] = ACTIONS(687), - [anon_sym_yield] = ACTIONS(689), - [anon_sym_switch] = ACTIONS(691), + [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(695), - [anon_sym_try] = ACTIONS(697), + [anon_sym_throw] = ACTIONS(721), + [anon_sym_try] = ACTIONS(703), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(699), + [anon_sym_await] = ACTIONS(723), [anon_sym_foreach] = ACTIONS(117), - [anon_sym_goto] = ACTIONS(701), - [anon_sym_if] = ACTIONS(703), + [anon_sym_goto] = ACTIONS(707), + [anon_sym_if] = ACTIONS(709), [anon_sym_DOT_DOT] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), @@ -38194,7 +38080,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(705), + [aux_sym_preproc_if_token1] = ACTIONS(713), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -38211,114 +38097,114 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [53] = { - [sym_attribute_list] = STATE(3645), - [sym__attribute_list] = STATE(3580), - [sym_modifier] = STATE(3878), - [sym_parameter_list] = STATE(7311), - [sym_block] = STATE(2120), - [sym_variable_declaration] = STATE(7689), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(5160), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2204), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5867), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_statement] = STATE(2141), - [sym_break_statement] = STATE(2120), - [sym_checked_statement] = STATE(2120), - [sym_continue_statement] = STATE(2120), - [sym_do_statement] = STATE(2120), - [sym_empty_statement] = STATE(2120), - [sym_expression_statement] = STATE(2120), - [sym_fixed_statement] = STATE(2120), - [sym_for_statement] = STATE(2120), - [sym_return_statement] = STATE(2120), - [sym_lock_statement] = STATE(2120), - [sym_yield_statement] = STATE(2120), - [sym_switch_statement] = STATE(2120), - [sym_throw_statement] = STATE(2120), - [sym_try_statement] = STATE(2120), - [sym_unsafe_statement] = STATE(2120), - [sym_using_statement] = STATE(2120), - [sym_foreach_statement] = STATE(2120), + [sym_attribute_list] = STATE(3612), + [sym__attribute_list] = STATE(3570), + [sym_modifier] = STATE(3845), + [sym_parameter_list] = STATE(7531), + [sym_block] = STATE(2093), + [sym_variable_declaration] = STATE(7607), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(5152), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2196), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5805), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_statement] = STATE(2134), + [sym_break_statement] = STATE(2093), + [sym_checked_statement] = STATE(2093), + [sym_continue_statement] = STATE(2093), + [sym_do_statement] = STATE(2093), + [sym_empty_statement] = STATE(2093), + [sym_expression_statement] = STATE(2093), + [sym_fixed_statement] = STATE(2093), + [sym_for_statement] = STATE(2093), + [sym_return_statement] = STATE(2093), + [sym_lock_statement] = STATE(2093), + [sym_yield_statement] = STATE(2093), + [sym_switch_statement] = STATE(2093), + [sym_throw_statement] = STATE(2093), + [sym_try_statement] = STATE(2093), + [sym_unsafe_statement] = STATE(2093), + [sym_using_statement] = STATE(2093), + [sym_foreach_statement] = STATE(2093), [sym__foreach_statement_initializer] = STATE(93), - [sym_goto_statement] = STATE(2120), - [sym_labeled_statement] = STATE(2120), - [sym_if_statement] = STATE(2120), - [sym_while_statement] = STATE(2120), - [sym_local_declaration_statement] = STATE(2120), - [sym_local_function_statement] = STATE(2120), - [sym__local_function_declaration] = STATE(6322), - [sym_expression] = STATE(5672), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3461), - [sym__expression_statement_expression] = STATE(5635), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3080), - [sym_postfix_unary_expression] = STATE(3111), - [sym_prefix_unary_expression] = STATE(3111), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6154), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3080), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3111), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3080), - [sym_member_access_expression] = STATE(2484), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3111), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7530), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(3080), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3080), - [sym_typeof_expression] = STATE(3080), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2484), - [sym_literal] = STATE(3080), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2282), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_top_level] = STATE(2120), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(3645), + [sym_goto_statement] = STATE(2093), + [sym_labeled_statement] = STATE(2093), + [sym_if_statement] = STATE(2093), + [sym_while_statement] = STATE(2093), + [sym_local_declaration_statement] = STATE(2093), + [sym_local_function_statement] = STATE(2093), + [sym__local_function_declaration] = STATE(6310), + [sym_expression] = STATE(5660), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3356), + [sym__expression_statement_expression] = STATE(5554), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3102), + [sym_postfix_unary_expression] = STATE(3079), + [sym_prefix_unary_expression] = STATE(3079), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6134), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3102), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3079), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3102), + [sym_member_access_expression] = STATE(2472), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3079), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7425), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(3102), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3102), + [sym_typeof_expression] = STATE(3102), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2472), + [sym_literal] = STATE(3102), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2269), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_top_level] = STATE(2093), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(3612), [sym_preproc_region] = STATE(53), [sym_preproc_endregion] = STATE(53), [sym_preproc_line] = STATE(53), @@ -38328,46 +38214,46 @@ 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(2286), - [aux_sym__class_declaration_initializer_repeat2] = STATE(2529), - [aux_sym_block_repeat1] = STATE(57), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [aux_sym__class_declaration_initializer_repeat1] = STATE(2277), + [aux_sym__class_declaration_initializer_repeat2] = STATE(2540), + [aux_sym_block_repeat1] = STATE(56), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), - [anon_sym_extern] = ACTIONS(647), + [anon_sym_extern] = ACTIONS(645), [anon_sym_alias] = ACTIONS(29), - [anon_sym_SEMI] = ACTIONS(649), + [anon_sym_SEMI] = ACTIONS(647), [anon_sym_global] = ACTIONS(29), - [anon_sym_using] = ACTIONS(651), - [anon_sym_unsafe] = ACTIONS(653), - [anon_sym_static] = ACTIONS(655), - [anon_sym_LBRACK] = ACTIONS(657), + [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(659), - [anon_sym_ref] = ACTIONS(661), - [anon_sym_LBRACE] = ACTIONS(663), - [anon_sym_RBRACE] = ACTIONS(971), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_abstract] = ACTIONS(647), - [anon_sym_async] = ACTIONS(655), - [anon_sym_const] = ACTIONS(647), - [anon_sym_file] = ACTIONS(669), - [anon_sym_fixed] = ACTIONS(671), - [anon_sym_internal] = ACTIONS(647), - [anon_sym_new] = ACTIONS(673), - [anon_sym_override] = ACTIONS(647), - [anon_sym_partial] = ACTIONS(647), - [anon_sym_private] = ACTIONS(647), - [anon_sym_protected] = ACTIONS(647), - [anon_sym_public] = ACTIONS(647), - [anon_sym_readonly] = ACTIONS(647), - [anon_sym_required] = ACTIONS(647), - [anon_sym_sealed] = ACTIONS(647), - [anon_sym_virtual] = ACTIONS(647), - [anon_sym_volatile] = ACTIONS(647), - [anon_sym_where] = ACTIONS(29), - [anon_sym_notnull] = ACTIONS(29), - [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(675), + [anon_sym_return] = ACTIONS(661), + [anon_sym_ref] = ACTIONS(715), + [anon_sym_LBRACE] = ACTIONS(665), + [anon_sym_RBRACE] = ACTIONS(969), + [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(673), + [anon_sym_internal] = ACTIONS(645), + [anon_sym_new] = ACTIONS(675), + [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(677), [anon_sym_BANG] = ACTIONS(75), [anon_sym_TILDE] = ACTIONS(75), [anon_sym_PLUS_PLUS] = ACTIONS(75), @@ -38384,23 +38270,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(677), - [anon_sym_unchecked] = ACTIONS(675), - [anon_sym_continue] = ACTIONS(679), - [anon_sym_do] = ACTIONS(681), - [anon_sym_while] = ACTIONS(683), - [anon_sym_for] = ACTIONS(685), - [anon_sym_lock] = ACTIONS(687), - [anon_sym_yield] = ACTIONS(689), - [anon_sym_switch] = ACTIONS(691), + [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(695), - [anon_sym_try] = ACTIONS(697), + [anon_sym_throw] = ACTIONS(721), + [anon_sym_try] = ACTIONS(703), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(699), + [anon_sym_await] = ACTIONS(723), [anon_sym_foreach] = ACTIONS(117), - [anon_sym_goto] = ACTIONS(701), - [anon_sym_if] = ACTIONS(703), + [anon_sym_goto] = ACTIONS(707), + [anon_sym_if] = ACTIONS(709), [anon_sym_DOT_DOT] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), @@ -38426,7 +38312,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(705), + [aux_sym_preproc_if_token1] = ACTIONS(713), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -38443,114 +38329,114 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [54] = { - [sym_attribute_list] = STATE(3645), - [sym__attribute_list] = STATE(3580), - [sym_modifier] = STATE(3878), - [sym_parameter_list] = STATE(7311), - [sym_block] = STATE(2120), - [sym_variable_declaration] = STATE(7689), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(5160), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2204), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5867), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_statement] = STATE(2141), - [sym_break_statement] = STATE(2120), - [sym_checked_statement] = STATE(2120), - [sym_continue_statement] = STATE(2120), - [sym_do_statement] = STATE(2120), - [sym_empty_statement] = STATE(2120), - [sym_expression_statement] = STATE(2120), - [sym_fixed_statement] = STATE(2120), - [sym_for_statement] = STATE(2120), - [sym_return_statement] = STATE(2120), - [sym_lock_statement] = STATE(2120), - [sym_yield_statement] = STATE(2120), - [sym_switch_statement] = STATE(2120), - [sym_throw_statement] = STATE(2120), - [sym_try_statement] = STATE(2120), - [sym_unsafe_statement] = STATE(2120), - [sym_using_statement] = STATE(2120), - [sym_foreach_statement] = STATE(2120), + [sym_attribute_list] = STATE(3612), + [sym__attribute_list] = STATE(3570), + [sym_modifier] = STATE(3845), + [sym_parameter_list] = STATE(7531), + [sym_block] = STATE(2093), + [sym_variable_declaration] = STATE(7607), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(5152), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2196), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5805), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_statement] = STATE(2134), + [sym_break_statement] = STATE(2093), + [sym_checked_statement] = STATE(2093), + [sym_continue_statement] = STATE(2093), + [sym_do_statement] = STATE(2093), + [sym_empty_statement] = STATE(2093), + [sym_expression_statement] = STATE(2093), + [sym_fixed_statement] = STATE(2093), + [sym_for_statement] = STATE(2093), + [sym_return_statement] = STATE(2093), + [sym_lock_statement] = STATE(2093), + [sym_yield_statement] = STATE(2093), + [sym_switch_statement] = STATE(2093), + [sym_throw_statement] = STATE(2093), + [sym_try_statement] = STATE(2093), + [sym_unsafe_statement] = STATE(2093), + [sym_using_statement] = STATE(2093), + [sym_foreach_statement] = STATE(2093), [sym__foreach_statement_initializer] = STATE(93), - [sym_goto_statement] = STATE(2120), - [sym_labeled_statement] = STATE(2120), - [sym_if_statement] = STATE(2120), - [sym_while_statement] = STATE(2120), - [sym_local_declaration_statement] = STATE(2120), - [sym_local_function_statement] = STATE(2120), - [sym__local_function_declaration] = STATE(6322), - [sym_expression] = STATE(5672), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3461), - [sym__expression_statement_expression] = STATE(5635), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3080), - [sym_postfix_unary_expression] = STATE(3111), - [sym_prefix_unary_expression] = STATE(3111), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6154), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3080), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3111), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3080), - [sym_member_access_expression] = STATE(2484), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3111), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7530), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(3080), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3080), - [sym_typeof_expression] = STATE(3080), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2484), - [sym_literal] = STATE(3080), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2282), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_top_level] = STATE(2120), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(3645), + [sym_goto_statement] = STATE(2093), + [sym_labeled_statement] = STATE(2093), + [sym_if_statement] = STATE(2093), + [sym_while_statement] = STATE(2093), + [sym_local_declaration_statement] = STATE(2093), + [sym_local_function_statement] = STATE(2093), + [sym__local_function_declaration] = STATE(6310), + [sym_expression] = STATE(5660), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3356), + [sym__expression_statement_expression] = STATE(5554), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3102), + [sym_postfix_unary_expression] = STATE(3079), + [sym_prefix_unary_expression] = STATE(3079), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6134), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3102), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3079), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3102), + [sym_member_access_expression] = STATE(2472), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3079), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7425), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(3102), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3102), + [sym_typeof_expression] = STATE(3102), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2472), + [sym_literal] = STATE(3102), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2269), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_top_level] = STATE(2093), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(3612), [sym_preproc_region] = STATE(54), [sym_preproc_endregion] = STATE(54), [sym_preproc_line] = STATE(54), @@ -38560,46 +38446,46 @@ 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(2286), - [aux_sym__class_declaration_initializer_repeat2] = STATE(2529), - [aux_sym_block_repeat1] = STATE(27), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [aux_sym__class_declaration_initializer_repeat1] = STATE(2277), + [aux_sym__class_declaration_initializer_repeat2] = STATE(2540), + [aux_sym_block_repeat1] = STATE(28), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), - [anon_sym_extern] = ACTIONS(647), + [anon_sym_extern] = ACTIONS(645), [anon_sym_alias] = ACTIONS(29), - [anon_sym_SEMI] = ACTIONS(649), + [anon_sym_SEMI] = ACTIONS(647), [anon_sym_global] = ACTIONS(29), - [anon_sym_using] = ACTIONS(651), - [anon_sym_unsafe] = ACTIONS(653), - [anon_sym_static] = ACTIONS(655), - [anon_sym_LBRACK] = ACTIONS(657), + [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(659), - [anon_sym_ref] = ACTIONS(661), - [anon_sym_LBRACE] = ACTIONS(663), - [anon_sym_RBRACE] = ACTIONS(973), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_abstract] = ACTIONS(647), - [anon_sym_async] = ACTIONS(655), - [anon_sym_const] = ACTIONS(647), - [anon_sym_file] = ACTIONS(669), - [anon_sym_fixed] = ACTIONS(671), - [anon_sym_internal] = ACTIONS(647), - [anon_sym_new] = ACTIONS(673), - [anon_sym_override] = ACTIONS(647), - [anon_sym_partial] = ACTIONS(647), - [anon_sym_private] = ACTIONS(647), - [anon_sym_protected] = ACTIONS(647), - [anon_sym_public] = ACTIONS(647), - [anon_sym_readonly] = ACTIONS(647), - [anon_sym_required] = ACTIONS(647), - [anon_sym_sealed] = ACTIONS(647), - [anon_sym_virtual] = ACTIONS(647), - [anon_sym_volatile] = ACTIONS(647), - [anon_sym_where] = ACTIONS(29), - [anon_sym_notnull] = ACTIONS(29), - [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(675), + [anon_sym_return] = ACTIONS(661), + [anon_sym_ref] = ACTIONS(715), + [anon_sym_LBRACE] = ACTIONS(665), + [anon_sym_RBRACE] = ACTIONS(971), + [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(673), + [anon_sym_internal] = ACTIONS(645), + [anon_sym_new] = ACTIONS(675), + [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(677), [anon_sym_BANG] = ACTIONS(75), [anon_sym_TILDE] = ACTIONS(75), [anon_sym_PLUS_PLUS] = ACTIONS(75), @@ -38616,23 +38502,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(677), - [anon_sym_unchecked] = ACTIONS(675), - [anon_sym_continue] = ACTIONS(679), - [anon_sym_do] = ACTIONS(681), - [anon_sym_while] = ACTIONS(683), - [anon_sym_for] = ACTIONS(685), - [anon_sym_lock] = ACTIONS(687), - [anon_sym_yield] = ACTIONS(689), - [anon_sym_switch] = ACTIONS(691), + [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(695), - [anon_sym_try] = ACTIONS(697), + [anon_sym_throw] = ACTIONS(721), + [anon_sym_try] = ACTIONS(703), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(699), + [anon_sym_await] = ACTIONS(723), [anon_sym_foreach] = ACTIONS(117), - [anon_sym_goto] = ACTIONS(701), - [anon_sym_if] = ACTIONS(703), + [anon_sym_goto] = ACTIONS(707), + [anon_sym_if] = ACTIONS(709), [anon_sym_DOT_DOT] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), @@ -38658,7 +38544,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(705), + [aux_sym_preproc_if_token1] = ACTIONS(713), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -38675,114 +38561,114 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [55] = { - [sym_attribute_list] = STATE(3645), - [sym__attribute_list] = STATE(3580), - [sym_modifier] = STATE(3878), - [sym_parameter_list] = STATE(7311), - [sym_block] = STATE(2120), - [sym_variable_declaration] = STATE(7689), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(5160), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2204), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5867), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_statement] = STATE(2141), - [sym_break_statement] = STATE(2120), - [sym_checked_statement] = STATE(2120), - [sym_continue_statement] = STATE(2120), - [sym_do_statement] = STATE(2120), - [sym_empty_statement] = STATE(2120), - [sym_expression_statement] = STATE(2120), - [sym_fixed_statement] = STATE(2120), - [sym_for_statement] = STATE(2120), - [sym_return_statement] = STATE(2120), - [sym_lock_statement] = STATE(2120), - [sym_yield_statement] = STATE(2120), - [sym_switch_statement] = STATE(2120), - [sym_throw_statement] = STATE(2120), - [sym_try_statement] = STATE(2120), - [sym_unsafe_statement] = STATE(2120), - [sym_using_statement] = STATE(2120), - [sym_foreach_statement] = STATE(2120), + [sym_attribute_list] = STATE(3612), + [sym__attribute_list] = STATE(3570), + [sym_modifier] = STATE(3845), + [sym_parameter_list] = STATE(7531), + [sym_block] = STATE(2093), + [sym_variable_declaration] = STATE(7607), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(5152), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2196), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5805), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_statement] = STATE(2134), + [sym_break_statement] = STATE(2093), + [sym_checked_statement] = STATE(2093), + [sym_continue_statement] = STATE(2093), + [sym_do_statement] = STATE(2093), + [sym_empty_statement] = STATE(2093), + [sym_expression_statement] = STATE(2093), + [sym_fixed_statement] = STATE(2093), + [sym_for_statement] = STATE(2093), + [sym_return_statement] = STATE(2093), + [sym_lock_statement] = STATE(2093), + [sym_yield_statement] = STATE(2093), + [sym_switch_statement] = STATE(2093), + [sym_throw_statement] = STATE(2093), + [sym_try_statement] = STATE(2093), + [sym_unsafe_statement] = STATE(2093), + [sym_using_statement] = STATE(2093), + [sym_foreach_statement] = STATE(2093), [sym__foreach_statement_initializer] = STATE(93), - [sym_goto_statement] = STATE(2120), - [sym_labeled_statement] = STATE(2120), - [sym_if_statement] = STATE(2120), - [sym_while_statement] = STATE(2120), - [sym_local_declaration_statement] = STATE(2120), - [sym_local_function_statement] = STATE(2120), - [sym__local_function_declaration] = STATE(6322), - [sym_expression] = STATE(5672), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3461), - [sym__expression_statement_expression] = STATE(5635), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3080), - [sym_postfix_unary_expression] = STATE(3111), - [sym_prefix_unary_expression] = STATE(3111), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6154), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3080), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3111), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3080), - [sym_member_access_expression] = STATE(2484), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3111), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7530), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(3080), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3080), - [sym_typeof_expression] = STATE(3080), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2484), - [sym_literal] = STATE(3080), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2282), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_top_level] = STATE(2120), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(3645), + [sym_goto_statement] = STATE(2093), + [sym_labeled_statement] = STATE(2093), + [sym_if_statement] = STATE(2093), + [sym_while_statement] = STATE(2093), + [sym_local_declaration_statement] = STATE(2093), + [sym_local_function_statement] = STATE(2093), + [sym__local_function_declaration] = STATE(6310), + [sym_expression] = STATE(5660), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3356), + [sym__expression_statement_expression] = STATE(5554), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3102), + [sym_postfix_unary_expression] = STATE(3079), + [sym_prefix_unary_expression] = STATE(3079), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6134), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3102), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3079), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3102), + [sym_member_access_expression] = STATE(2472), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3079), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7425), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(3102), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3102), + [sym_typeof_expression] = STATE(3102), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2472), + [sym_literal] = STATE(3102), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2269), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_top_level] = STATE(2093), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(3612), [sym_preproc_region] = STATE(55), [sym_preproc_endregion] = STATE(55), [sym_preproc_line] = STATE(55), @@ -38792,46 +38678,46 @@ 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(2286), - [aux_sym__class_declaration_initializer_repeat2] = STATE(2529), - [aux_sym_block_repeat1] = STATE(27), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [aux_sym__class_declaration_initializer_repeat1] = STATE(2277), + [aux_sym__class_declaration_initializer_repeat2] = STATE(2540), + [aux_sym_block_repeat1] = STATE(48), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), - [anon_sym_extern] = ACTIONS(647), + [anon_sym_extern] = ACTIONS(645), [anon_sym_alias] = ACTIONS(29), - [anon_sym_SEMI] = ACTIONS(649), + [anon_sym_SEMI] = ACTIONS(647), [anon_sym_global] = ACTIONS(29), - [anon_sym_using] = ACTIONS(651), - [anon_sym_unsafe] = ACTIONS(653), - [anon_sym_static] = ACTIONS(655), - [anon_sym_LBRACK] = ACTIONS(657), + [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(659), - [anon_sym_ref] = ACTIONS(661), - [anon_sym_LBRACE] = ACTIONS(663), - [anon_sym_RBRACE] = ACTIONS(975), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_abstract] = ACTIONS(647), - [anon_sym_async] = ACTIONS(655), - [anon_sym_const] = ACTIONS(647), - [anon_sym_file] = ACTIONS(669), - [anon_sym_fixed] = ACTIONS(671), - [anon_sym_internal] = ACTIONS(647), - [anon_sym_new] = ACTIONS(673), - [anon_sym_override] = ACTIONS(647), - [anon_sym_partial] = ACTIONS(647), - [anon_sym_private] = ACTIONS(647), - [anon_sym_protected] = ACTIONS(647), - [anon_sym_public] = ACTIONS(647), - [anon_sym_readonly] = ACTIONS(647), - [anon_sym_required] = ACTIONS(647), - [anon_sym_sealed] = ACTIONS(647), - [anon_sym_virtual] = ACTIONS(647), - [anon_sym_volatile] = ACTIONS(647), - [anon_sym_where] = ACTIONS(29), - [anon_sym_notnull] = ACTIONS(29), - [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(675), + [anon_sym_return] = ACTIONS(661), + [anon_sym_ref] = ACTIONS(715), + [anon_sym_LBRACE] = ACTIONS(665), + [anon_sym_RBRACE] = ACTIONS(973), + [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(673), + [anon_sym_internal] = ACTIONS(645), + [anon_sym_new] = ACTIONS(675), + [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(677), [anon_sym_BANG] = ACTIONS(75), [anon_sym_TILDE] = ACTIONS(75), [anon_sym_PLUS_PLUS] = ACTIONS(75), @@ -38848,23 +38734,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(677), - [anon_sym_unchecked] = ACTIONS(675), - [anon_sym_continue] = ACTIONS(679), - [anon_sym_do] = ACTIONS(681), - [anon_sym_while] = ACTIONS(683), - [anon_sym_for] = ACTIONS(685), - [anon_sym_lock] = ACTIONS(687), - [anon_sym_yield] = ACTIONS(689), - [anon_sym_switch] = ACTIONS(691), + [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(695), - [anon_sym_try] = ACTIONS(697), + [anon_sym_throw] = ACTIONS(721), + [anon_sym_try] = ACTIONS(703), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(699), + [anon_sym_await] = ACTIONS(723), [anon_sym_foreach] = ACTIONS(117), - [anon_sym_goto] = ACTIONS(701), - [anon_sym_if] = ACTIONS(703), + [anon_sym_goto] = ACTIONS(707), + [anon_sym_if] = ACTIONS(709), [anon_sym_DOT_DOT] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), @@ -38890,7 +38776,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(705), + [aux_sym_preproc_if_token1] = ACTIONS(713), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -38907,114 +38793,114 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [56] = { - [sym_attribute_list] = STATE(3645), - [sym__attribute_list] = STATE(3580), - [sym_modifier] = STATE(3878), - [sym_parameter_list] = STATE(7311), - [sym_block] = STATE(2120), - [sym_variable_declaration] = STATE(7689), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(5160), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2204), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5867), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_statement] = STATE(2141), - [sym_break_statement] = STATE(2120), - [sym_checked_statement] = STATE(2120), - [sym_continue_statement] = STATE(2120), - [sym_do_statement] = STATE(2120), - [sym_empty_statement] = STATE(2120), - [sym_expression_statement] = STATE(2120), - [sym_fixed_statement] = STATE(2120), - [sym_for_statement] = STATE(2120), - [sym_return_statement] = STATE(2120), - [sym_lock_statement] = STATE(2120), - [sym_yield_statement] = STATE(2120), - [sym_switch_statement] = STATE(2120), - [sym_throw_statement] = STATE(2120), - [sym_try_statement] = STATE(2120), - [sym_unsafe_statement] = STATE(2120), - [sym_using_statement] = STATE(2120), - [sym_foreach_statement] = STATE(2120), + [sym_attribute_list] = STATE(3612), + [sym__attribute_list] = STATE(3570), + [sym_modifier] = STATE(3845), + [sym_parameter_list] = STATE(7531), + [sym_block] = STATE(2093), + [sym_variable_declaration] = STATE(7607), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(5152), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2196), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5805), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_statement] = STATE(2134), + [sym_break_statement] = STATE(2093), + [sym_checked_statement] = STATE(2093), + [sym_continue_statement] = STATE(2093), + [sym_do_statement] = STATE(2093), + [sym_empty_statement] = STATE(2093), + [sym_expression_statement] = STATE(2093), + [sym_fixed_statement] = STATE(2093), + [sym_for_statement] = STATE(2093), + [sym_return_statement] = STATE(2093), + [sym_lock_statement] = STATE(2093), + [sym_yield_statement] = STATE(2093), + [sym_switch_statement] = STATE(2093), + [sym_throw_statement] = STATE(2093), + [sym_try_statement] = STATE(2093), + [sym_unsafe_statement] = STATE(2093), + [sym_using_statement] = STATE(2093), + [sym_foreach_statement] = STATE(2093), [sym__foreach_statement_initializer] = STATE(93), - [sym_goto_statement] = STATE(2120), - [sym_labeled_statement] = STATE(2120), - [sym_if_statement] = STATE(2120), - [sym_while_statement] = STATE(2120), - [sym_local_declaration_statement] = STATE(2120), - [sym_local_function_statement] = STATE(2120), - [sym__local_function_declaration] = STATE(6322), - [sym_expression] = STATE(5672), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3461), - [sym__expression_statement_expression] = STATE(5635), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3080), - [sym_postfix_unary_expression] = STATE(3111), - [sym_prefix_unary_expression] = STATE(3111), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6154), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3080), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3111), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3080), - [sym_member_access_expression] = STATE(2484), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3111), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7530), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(3080), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3080), - [sym_typeof_expression] = STATE(3080), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2484), - [sym_literal] = STATE(3080), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2282), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_top_level] = STATE(2120), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(3645), + [sym_goto_statement] = STATE(2093), + [sym_labeled_statement] = STATE(2093), + [sym_if_statement] = STATE(2093), + [sym_while_statement] = STATE(2093), + [sym_local_declaration_statement] = STATE(2093), + [sym_local_function_statement] = STATE(2093), + [sym__local_function_declaration] = STATE(6310), + [sym_expression] = STATE(5660), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3356), + [sym__expression_statement_expression] = STATE(5554), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3102), + [sym_postfix_unary_expression] = STATE(3079), + [sym_prefix_unary_expression] = STATE(3079), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6134), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3102), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3079), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3102), + [sym_member_access_expression] = STATE(2472), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3079), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7425), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(3102), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3102), + [sym_typeof_expression] = STATE(3102), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2472), + [sym_literal] = STATE(3102), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2269), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_top_level] = STATE(2093), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(3612), [sym_preproc_region] = STATE(56), [sym_preproc_endregion] = STATE(56), [sym_preproc_line] = STATE(56), @@ -39024,46 +38910,46 @@ 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(2286), - [aux_sym__class_declaration_initializer_repeat2] = STATE(2529), - [aux_sym_block_repeat1] = STATE(47), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [aux_sym__class_declaration_initializer_repeat1] = STATE(2277), + [aux_sym__class_declaration_initializer_repeat2] = STATE(2540), + [aux_sym_block_repeat1] = STATE(28), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), - [anon_sym_extern] = ACTIONS(647), + [anon_sym_extern] = ACTIONS(645), [anon_sym_alias] = ACTIONS(29), - [anon_sym_SEMI] = ACTIONS(649), + [anon_sym_SEMI] = ACTIONS(647), [anon_sym_global] = ACTIONS(29), - [anon_sym_using] = ACTIONS(651), - [anon_sym_unsafe] = ACTIONS(653), - [anon_sym_static] = ACTIONS(655), - [anon_sym_LBRACK] = ACTIONS(657), + [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(659), - [anon_sym_ref] = ACTIONS(661), - [anon_sym_LBRACE] = ACTIONS(663), - [anon_sym_RBRACE] = ACTIONS(977), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_abstract] = ACTIONS(647), - [anon_sym_async] = ACTIONS(655), - [anon_sym_const] = ACTIONS(647), - [anon_sym_file] = ACTIONS(669), - [anon_sym_fixed] = ACTIONS(671), - [anon_sym_internal] = ACTIONS(647), - [anon_sym_new] = ACTIONS(673), - [anon_sym_override] = ACTIONS(647), - [anon_sym_partial] = ACTIONS(647), - [anon_sym_private] = ACTIONS(647), - [anon_sym_protected] = ACTIONS(647), - [anon_sym_public] = ACTIONS(647), - [anon_sym_readonly] = ACTIONS(647), - [anon_sym_required] = ACTIONS(647), - [anon_sym_sealed] = ACTIONS(647), - [anon_sym_virtual] = ACTIONS(647), - [anon_sym_volatile] = ACTIONS(647), - [anon_sym_where] = ACTIONS(29), - [anon_sym_notnull] = ACTIONS(29), - [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(675), + [anon_sym_return] = ACTIONS(661), + [anon_sym_ref] = ACTIONS(715), + [anon_sym_LBRACE] = ACTIONS(665), + [anon_sym_RBRACE] = ACTIONS(975), + [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(673), + [anon_sym_internal] = ACTIONS(645), + [anon_sym_new] = ACTIONS(675), + [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(677), [anon_sym_BANG] = ACTIONS(75), [anon_sym_TILDE] = ACTIONS(75), [anon_sym_PLUS_PLUS] = ACTIONS(75), @@ -39080,23 +38966,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(677), - [anon_sym_unchecked] = ACTIONS(675), - [anon_sym_continue] = ACTIONS(679), - [anon_sym_do] = ACTIONS(681), - [anon_sym_while] = ACTIONS(683), - [anon_sym_for] = ACTIONS(685), - [anon_sym_lock] = ACTIONS(687), - [anon_sym_yield] = ACTIONS(689), - [anon_sym_switch] = ACTIONS(691), + [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(695), - [anon_sym_try] = ACTIONS(697), + [anon_sym_throw] = ACTIONS(721), + [anon_sym_try] = ACTIONS(703), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(699), + [anon_sym_await] = ACTIONS(723), [anon_sym_foreach] = ACTIONS(117), - [anon_sym_goto] = ACTIONS(701), - [anon_sym_if] = ACTIONS(703), + [anon_sym_goto] = ACTIONS(707), + [anon_sym_if] = ACTIONS(709), [anon_sym_DOT_DOT] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), @@ -39122,7 +39008,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(705), + [aux_sym_preproc_if_token1] = ACTIONS(713), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -39139,114 +39025,114 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [57] = { - [sym_attribute_list] = STATE(3645), - [sym__attribute_list] = STATE(3580), - [sym_modifier] = STATE(3878), - [sym_parameter_list] = STATE(7311), - [sym_block] = STATE(2120), - [sym_variable_declaration] = STATE(7689), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(5160), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2204), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5867), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_statement] = STATE(2141), - [sym_break_statement] = STATE(2120), - [sym_checked_statement] = STATE(2120), - [sym_continue_statement] = STATE(2120), - [sym_do_statement] = STATE(2120), - [sym_empty_statement] = STATE(2120), - [sym_expression_statement] = STATE(2120), - [sym_fixed_statement] = STATE(2120), - [sym_for_statement] = STATE(2120), - [sym_return_statement] = STATE(2120), - [sym_lock_statement] = STATE(2120), - [sym_yield_statement] = STATE(2120), - [sym_switch_statement] = STATE(2120), - [sym_throw_statement] = STATE(2120), - [sym_try_statement] = STATE(2120), - [sym_unsafe_statement] = STATE(2120), - [sym_using_statement] = STATE(2120), - [sym_foreach_statement] = STATE(2120), + [sym_attribute_list] = STATE(3612), + [sym__attribute_list] = STATE(3570), + [sym_modifier] = STATE(3845), + [sym_parameter_list] = STATE(7531), + [sym_block] = STATE(2093), + [sym_variable_declaration] = STATE(7607), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(5152), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2196), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5805), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_statement] = STATE(2134), + [sym_break_statement] = STATE(2093), + [sym_checked_statement] = STATE(2093), + [sym_continue_statement] = STATE(2093), + [sym_do_statement] = STATE(2093), + [sym_empty_statement] = STATE(2093), + [sym_expression_statement] = STATE(2093), + [sym_fixed_statement] = STATE(2093), + [sym_for_statement] = STATE(2093), + [sym_return_statement] = STATE(2093), + [sym_lock_statement] = STATE(2093), + [sym_yield_statement] = STATE(2093), + [sym_switch_statement] = STATE(2093), + [sym_throw_statement] = STATE(2093), + [sym_try_statement] = STATE(2093), + [sym_unsafe_statement] = STATE(2093), + [sym_using_statement] = STATE(2093), + [sym_foreach_statement] = STATE(2093), [sym__foreach_statement_initializer] = STATE(93), - [sym_goto_statement] = STATE(2120), - [sym_labeled_statement] = STATE(2120), - [sym_if_statement] = STATE(2120), - [sym_while_statement] = STATE(2120), - [sym_local_declaration_statement] = STATE(2120), - [sym_local_function_statement] = STATE(2120), - [sym__local_function_declaration] = STATE(6322), - [sym_expression] = STATE(5672), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3461), - [sym__expression_statement_expression] = STATE(5635), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3080), - [sym_postfix_unary_expression] = STATE(3111), - [sym_prefix_unary_expression] = STATE(3111), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6154), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3080), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3111), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3080), - [sym_member_access_expression] = STATE(2484), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3111), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7530), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(3080), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3080), - [sym_typeof_expression] = STATE(3080), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2484), - [sym_literal] = STATE(3080), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2282), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_top_level] = STATE(2120), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(3645), + [sym_goto_statement] = STATE(2093), + [sym_labeled_statement] = STATE(2093), + [sym_if_statement] = STATE(2093), + [sym_while_statement] = STATE(2093), + [sym_local_declaration_statement] = STATE(2093), + [sym_local_function_statement] = STATE(2093), + [sym__local_function_declaration] = STATE(6310), + [sym_expression] = STATE(5660), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3356), + [sym__expression_statement_expression] = STATE(5554), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3102), + [sym_postfix_unary_expression] = STATE(3079), + [sym_prefix_unary_expression] = STATE(3079), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6134), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3102), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3079), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3102), + [sym_member_access_expression] = STATE(2472), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3079), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7425), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(3102), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3102), + [sym_typeof_expression] = STATE(3102), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2472), + [sym_literal] = STATE(3102), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2269), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_top_level] = STATE(2093), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(3612), [sym_preproc_region] = STATE(57), [sym_preproc_endregion] = STATE(57), [sym_preproc_line] = STATE(57), @@ -39256,46 +39142,46 @@ 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(2286), - [aux_sym__class_declaration_initializer_repeat2] = STATE(2529), - [aux_sym_block_repeat1] = STATE(27), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [aux_sym__class_declaration_initializer_repeat1] = STATE(2277), + [aux_sym__class_declaration_initializer_repeat2] = STATE(2540), + [aux_sym_block_repeat1] = STATE(58), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), - [anon_sym_extern] = ACTIONS(647), + [anon_sym_extern] = ACTIONS(645), [anon_sym_alias] = ACTIONS(29), - [anon_sym_SEMI] = ACTIONS(649), + [anon_sym_SEMI] = ACTIONS(647), [anon_sym_global] = ACTIONS(29), - [anon_sym_using] = ACTIONS(651), - [anon_sym_unsafe] = ACTIONS(653), - [anon_sym_static] = ACTIONS(655), - [anon_sym_LBRACK] = ACTIONS(657), + [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(659), - [anon_sym_ref] = ACTIONS(661), - [anon_sym_LBRACE] = ACTIONS(663), - [anon_sym_RBRACE] = ACTIONS(979), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_abstract] = ACTIONS(647), - [anon_sym_async] = ACTIONS(655), - [anon_sym_const] = ACTIONS(647), - [anon_sym_file] = ACTIONS(669), - [anon_sym_fixed] = ACTIONS(671), - [anon_sym_internal] = ACTIONS(647), - [anon_sym_new] = ACTIONS(673), - [anon_sym_override] = ACTIONS(647), - [anon_sym_partial] = ACTIONS(647), - [anon_sym_private] = ACTIONS(647), - [anon_sym_protected] = ACTIONS(647), - [anon_sym_public] = ACTIONS(647), - [anon_sym_readonly] = ACTIONS(647), - [anon_sym_required] = ACTIONS(647), - [anon_sym_sealed] = ACTIONS(647), - [anon_sym_virtual] = ACTIONS(647), - [anon_sym_volatile] = ACTIONS(647), - [anon_sym_where] = ACTIONS(29), - [anon_sym_notnull] = ACTIONS(29), - [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(675), + [anon_sym_return] = ACTIONS(661), + [anon_sym_ref] = ACTIONS(715), + [anon_sym_LBRACE] = ACTIONS(665), + [anon_sym_RBRACE] = ACTIONS(977), + [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(673), + [anon_sym_internal] = ACTIONS(645), + [anon_sym_new] = ACTIONS(675), + [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(677), [anon_sym_BANG] = ACTIONS(75), [anon_sym_TILDE] = ACTIONS(75), [anon_sym_PLUS_PLUS] = ACTIONS(75), @@ -39312,23 +39198,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(677), - [anon_sym_unchecked] = ACTIONS(675), - [anon_sym_continue] = ACTIONS(679), - [anon_sym_do] = ACTIONS(681), - [anon_sym_while] = ACTIONS(683), - [anon_sym_for] = ACTIONS(685), - [anon_sym_lock] = ACTIONS(687), - [anon_sym_yield] = ACTIONS(689), - [anon_sym_switch] = ACTIONS(691), + [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(695), - [anon_sym_try] = ACTIONS(697), + [anon_sym_throw] = ACTIONS(721), + [anon_sym_try] = ACTIONS(703), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(699), + [anon_sym_await] = ACTIONS(723), [anon_sym_foreach] = ACTIONS(117), - [anon_sym_goto] = ACTIONS(701), - [anon_sym_if] = ACTIONS(703), + [anon_sym_goto] = ACTIONS(707), + [anon_sym_if] = ACTIONS(709), [anon_sym_DOT_DOT] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), @@ -39354,7 +39240,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(705), + [aux_sym_preproc_if_token1] = ACTIONS(713), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -39371,114 +39257,114 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [58] = { - [sym_attribute_list] = STATE(3645), - [sym__attribute_list] = STATE(3580), - [sym_modifier] = STATE(3878), - [sym_parameter_list] = STATE(7311), - [sym_block] = STATE(2120), - [sym_variable_declaration] = STATE(7689), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(5160), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2204), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5867), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_statement] = STATE(2141), - [sym_break_statement] = STATE(2120), - [sym_checked_statement] = STATE(2120), - [sym_continue_statement] = STATE(2120), - [sym_do_statement] = STATE(2120), - [sym_empty_statement] = STATE(2120), - [sym_expression_statement] = STATE(2120), - [sym_fixed_statement] = STATE(2120), - [sym_for_statement] = STATE(2120), - [sym_return_statement] = STATE(2120), - [sym_lock_statement] = STATE(2120), - [sym_yield_statement] = STATE(2120), - [sym_switch_statement] = STATE(2120), - [sym_throw_statement] = STATE(2120), - [sym_try_statement] = STATE(2120), - [sym_unsafe_statement] = STATE(2120), - [sym_using_statement] = STATE(2120), - [sym_foreach_statement] = STATE(2120), + [sym_attribute_list] = STATE(3612), + [sym__attribute_list] = STATE(3570), + [sym_modifier] = STATE(3845), + [sym_parameter_list] = STATE(7531), + [sym_block] = STATE(2093), + [sym_variable_declaration] = STATE(7607), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(5152), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2196), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5805), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_statement] = STATE(2134), + [sym_break_statement] = STATE(2093), + [sym_checked_statement] = STATE(2093), + [sym_continue_statement] = STATE(2093), + [sym_do_statement] = STATE(2093), + [sym_empty_statement] = STATE(2093), + [sym_expression_statement] = STATE(2093), + [sym_fixed_statement] = STATE(2093), + [sym_for_statement] = STATE(2093), + [sym_return_statement] = STATE(2093), + [sym_lock_statement] = STATE(2093), + [sym_yield_statement] = STATE(2093), + [sym_switch_statement] = STATE(2093), + [sym_throw_statement] = STATE(2093), + [sym_try_statement] = STATE(2093), + [sym_unsafe_statement] = STATE(2093), + [sym_using_statement] = STATE(2093), + [sym_foreach_statement] = STATE(2093), [sym__foreach_statement_initializer] = STATE(93), - [sym_goto_statement] = STATE(2120), - [sym_labeled_statement] = STATE(2120), - [sym_if_statement] = STATE(2120), - [sym_while_statement] = STATE(2120), - [sym_local_declaration_statement] = STATE(2120), - [sym_local_function_statement] = STATE(2120), - [sym__local_function_declaration] = STATE(6322), - [sym_expression] = STATE(5672), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3461), - [sym__expression_statement_expression] = STATE(5635), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3080), - [sym_postfix_unary_expression] = STATE(3111), - [sym_prefix_unary_expression] = STATE(3111), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6154), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3080), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3111), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3080), - [sym_member_access_expression] = STATE(2484), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3111), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7530), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(3080), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3080), - [sym_typeof_expression] = STATE(3080), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2484), - [sym_literal] = STATE(3080), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2282), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_top_level] = STATE(2120), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(3645), + [sym_goto_statement] = STATE(2093), + [sym_labeled_statement] = STATE(2093), + [sym_if_statement] = STATE(2093), + [sym_while_statement] = STATE(2093), + [sym_local_declaration_statement] = STATE(2093), + [sym_local_function_statement] = STATE(2093), + [sym__local_function_declaration] = STATE(6310), + [sym_expression] = STATE(5660), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3356), + [sym__expression_statement_expression] = STATE(5554), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3102), + [sym_postfix_unary_expression] = STATE(3079), + [sym_prefix_unary_expression] = STATE(3079), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6134), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3102), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3079), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3102), + [sym_member_access_expression] = STATE(2472), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3079), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7425), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(3102), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3102), + [sym_typeof_expression] = STATE(3102), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2472), + [sym_literal] = STATE(3102), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2269), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_top_level] = STATE(2093), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(3612), [sym_preproc_region] = STATE(58), [sym_preproc_endregion] = STATE(58), [sym_preproc_line] = STATE(58), @@ -39488,46 +39374,46 @@ 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(2286), - [aux_sym__class_declaration_initializer_repeat2] = STATE(2529), - [aux_sym_block_repeat1] = STATE(59), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [aux_sym__class_declaration_initializer_repeat1] = STATE(2277), + [aux_sym__class_declaration_initializer_repeat2] = STATE(2540), + [aux_sym_block_repeat1] = STATE(28), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), - [anon_sym_extern] = ACTIONS(647), + [anon_sym_extern] = ACTIONS(645), [anon_sym_alias] = ACTIONS(29), - [anon_sym_SEMI] = ACTIONS(649), + [anon_sym_SEMI] = ACTIONS(647), [anon_sym_global] = ACTIONS(29), - [anon_sym_using] = ACTIONS(651), - [anon_sym_unsafe] = ACTIONS(653), - [anon_sym_static] = ACTIONS(655), - [anon_sym_LBRACK] = ACTIONS(657), + [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(659), - [anon_sym_ref] = ACTIONS(661), - [anon_sym_LBRACE] = ACTIONS(663), - [anon_sym_RBRACE] = ACTIONS(981), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_abstract] = ACTIONS(647), - [anon_sym_async] = ACTIONS(655), - [anon_sym_const] = ACTIONS(647), - [anon_sym_file] = ACTIONS(669), - [anon_sym_fixed] = ACTIONS(671), - [anon_sym_internal] = ACTIONS(647), - [anon_sym_new] = ACTIONS(673), - [anon_sym_override] = ACTIONS(647), - [anon_sym_partial] = ACTIONS(647), - [anon_sym_private] = ACTIONS(647), - [anon_sym_protected] = ACTIONS(647), - [anon_sym_public] = ACTIONS(647), - [anon_sym_readonly] = ACTIONS(647), - [anon_sym_required] = ACTIONS(647), - [anon_sym_sealed] = ACTIONS(647), - [anon_sym_virtual] = ACTIONS(647), - [anon_sym_volatile] = ACTIONS(647), - [anon_sym_where] = ACTIONS(29), - [anon_sym_notnull] = ACTIONS(29), - [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(675), + [anon_sym_return] = ACTIONS(661), + [anon_sym_ref] = ACTIONS(715), + [anon_sym_LBRACE] = ACTIONS(665), + [anon_sym_RBRACE] = ACTIONS(979), + [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(673), + [anon_sym_internal] = ACTIONS(645), + [anon_sym_new] = ACTIONS(675), + [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(677), [anon_sym_BANG] = ACTIONS(75), [anon_sym_TILDE] = ACTIONS(75), [anon_sym_PLUS_PLUS] = ACTIONS(75), @@ -39544,23 +39430,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(677), - [anon_sym_unchecked] = ACTIONS(675), - [anon_sym_continue] = ACTIONS(679), - [anon_sym_do] = ACTIONS(681), - [anon_sym_while] = ACTIONS(683), - [anon_sym_for] = ACTIONS(685), - [anon_sym_lock] = ACTIONS(687), - [anon_sym_yield] = ACTIONS(689), - [anon_sym_switch] = ACTIONS(691), + [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(695), - [anon_sym_try] = ACTIONS(697), + [anon_sym_throw] = ACTIONS(721), + [anon_sym_try] = ACTIONS(703), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(699), + [anon_sym_await] = ACTIONS(723), [anon_sym_foreach] = ACTIONS(117), - [anon_sym_goto] = ACTIONS(701), - [anon_sym_if] = ACTIONS(703), + [anon_sym_goto] = ACTIONS(707), + [anon_sym_if] = ACTIONS(709), [anon_sym_DOT_DOT] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), @@ -39586,7 +39472,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(705), + [aux_sym_preproc_if_token1] = ACTIONS(713), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -39603,114 +39489,114 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [59] = { - [sym_attribute_list] = STATE(3645), - [sym__attribute_list] = STATE(3580), - [sym_modifier] = STATE(3878), - [sym_parameter_list] = STATE(7311), - [sym_block] = STATE(2120), - [sym_variable_declaration] = STATE(7689), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(5160), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2204), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5867), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_statement] = STATE(2141), - [sym_break_statement] = STATE(2120), - [sym_checked_statement] = STATE(2120), - [sym_continue_statement] = STATE(2120), - [sym_do_statement] = STATE(2120), - [sym_empty_statement] = STATE(2120), - [sym_expression_statement] = STATE(2120), - [sym_fixed_statement] = STATE(2120), - [sym_for_statement] = STATE(2120), - [sym_return_statement] = STATE(2120), - [sym_lock_statement] = STATE(2120), - [sym_yield_statement] = STATE(2120), - [sym_switch_statement] = STATE(2120), - [sym_throw_statement] = STATE(2120), - [sym_try_statement] = STATE(2120), - [sym_unsafe_statement] = STATE(2120), - [sym_using_statement] = STATE(2120), - [sym_foreach_statement] = STATE(2120), + [sym_attribute_list] = STATE(3612), + [sym__attribute_list] = STATE(3570), + [sym_modifier] = STATE(3845), + [sym_parameter_list] = STATE(7531), + [sym_block] = STATE(2093), + [sym_variable_declaration] = STATE(7607), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(5152), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2196), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5805), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_statement] = STATE(2134), + [sym_break_statement] = STATE(2093), + [sym_checked_statement] = STATE(2093), + [sym_continue_statement] = STATE(2093), + [sym_do_statement] = STATE(2093), + [sym_empty_statement] = STATE(2093), + [sym_expression_statement] = STATE(2093), + [sym_fixed_statement] = STATE(2093), + [sym_for_statement] = STATE(2093), + [sym_return_statement] = STATE(2093), + [sym_lock_statement] = STATE(2093), + [sym_yield_statement] = STATE(2093), + [sym_switch_statement] = STATE(2093), + [sym_throw_statement] = STATE(2093), + [sym_try_statement] = STATE(2093), + [sym_unsafe_statement] = STATE(2093), + [sym_using_statement] = STATE(2093), + [sym_foreach_statement] = STATE(2093), [sym__foreach_statement_initializer] = STATE(93), - [sym_goto_statement] = STATE(2120), - [sym_labeled_statement] = STATE(2120), - [sym_if_statement] = STATE(2120), - [sym_while_statement] = STATE(2120), - [sym_local_declaration_statement] = STATE(2120), - [sym_local_function_statement] = STATE(2120), - [sym__local_function_declaration] = STATE(6322), - [sym_expression] = STATE(5672), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3461), - [sym__expression_statement_expression] = STATE(5635), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3080), - [sym_postfix_unary_expression] = STATE(3111), - [sym_prefix_unary_expression] = STATE(3111), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6154), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3080), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3111), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3080), - [sym_member_access_expression] = STATE(2484), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3111), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7530), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(3080), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3080), - [sym_typeof_expression] = STATE(3080), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2484), - [sym_literal] = STATE(3080), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2282), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_top_level] = STATE(2120), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(3645), + [sym_goto_statement] = STATE(2093), + [sym_labeled_statement] = STATE(2093), + [sym_if_statement] = STATE(2093), + [sym_while_statement] = STATE(2093), + [sym_local_declaration_statement] = STATE(2093), + [sym_local_function_statement] = STATE(2093), + [sym__local_function_declaration] = STATE(6310), + [sym_expression] = STATE(5660), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3356), + [sym__expression_statement_expression] = STATE(5554), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3102), + [sym_postfix_unary_expression] = STATE(3079), + [sym_prefix_unary_expression] = STATE(3079), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6134), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3102), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3079), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3102), + [sym_member_access_expression] = STATE(2472), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3079), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7425), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(3102), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3102), + [sym_typeof_expression] = STATE(3102), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2472), + [sym_literal] = STATE(3102), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2269), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_top_level] = STATE(2093), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(3612), [sym_preproc_region] = STATE(59), [sym_preproc_endregion] = STATE(59), [sym_preproc_line] = STATE(59), @@ -39720,46 +39606,46 @@ 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(2286), - [aux_sym__class_declaration_initializer_repeat2] = STATE(2529), - [aux_sym_block_repeat1] = STATE(27), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [aux_sym__class_declaration_initializer_repeat1] = STATE(2277), + [aux_sym__class_declaration_initializer_repeat2] = STATE(2540), + [aux_sym_block_repeat1] = STATE(60), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), - [anon_sym_extern] = ACTIONS(647), + [anon_sym_extern] = ACTIONS(645), [anon_sym_alias] = ACTIONS(29), - [anon_sym_SEMI] = ACTIONS(649), + [anon_sym_SEMI] = ACTIONS(647), [anon_sym_global] = ACTIONS(29), - [anon_sym_using] = ACTIONS(651), - [anon_sym_unsafe] = ACTIONS(653), - [anon_sym_static] = ACTIONS(655), - [anon_sym_LBRACK] = ACTIONS(657), + [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(659), - [anon_sym_ref] = ACTIONS(661), - [anon_sym_LBRACE] = ACTIONS(663), - [anon_sym_RBRACE] = ACTIONS(983), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_abstract] = ACTIONS(647), - [anon_sym_async] = ACTIONS(655), - [anon_sym_const] = ACTIONS(647), - [anon_sym_file] = ACTIONS(669), - [anon_sym_fixed] = ACTIONS(671), - [anon_sym_internal] = ACTIONS(647), - [anon_sym_new] = ACTIONS(673), - [anon_sym_override] = ACTIONS(647), - [anon_sym_partial] = ACTIONS(647), - [anon_sym_private] = ACTIONS(647), - [anon_sym_protected] = ACTIONS(647), - [anon_sym_public] = ACTIONS(647), - [anon_sym_readonly] = ACTIONS(647), - [anon_sym_required] = ACTIONS(647), - [anon_sym_sealed] = ACTIONS(647), - [anon_sym_virtual] = ACTIONS(647), - [anon_sym_volatile] = ACTIONS(647), - [anon_sym_where] = ACTIONS(29), - [anon_sym_notnull] = ACTIONS(29), - [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(675), + [anon_sym_return] = ACTIONS(661), + [anon_sym_ref] = ACTIONS(715), + [anon_sym_LBRACE] = ACTIONS(665), + [anon_sym_RBRACE] = ACTIONS(981), + [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(673), + [anon_sym_internal] = ACTIONS(645), + [anon_sym_new] = ACTIONS(675), + [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(677), [anon_sym_BANG] = ACTIONS(75), [anon_sym_TILDE] = ACTIONS(75), [anon_sym_PLUS_PLUS] = ACTIONS(75), @@ -39776,23 +39662,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(677), - [anon_sym_unchecked] = ACTIONS(675), - [anon_sym_continue] = ACTIONS(679), - [anon_sym_do] = ACTIONS(681), - [anon_sym_while] = ACTIONS(683), - [anon_sym_for] = ACTIONS(685), - [anon_sym_lock] = ACTIONS(687), - [anon_sym_yield] = ACTIONS(689), - [anon_sym_switch] = ACTIONS(691), + [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(695), - [anon_sym_try] = ACTIONS(697), + [anon_sym_throw] = ACTIONS(721), + [anon_sym_try] = ACTIONS(703), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(699), + [anon_sym_await] = ACTIONS(723), [anon_sym_foreach] = ACTIONS(117), - [anon_sym_goto] = ACTIONS(701), - [anon_sym_if] = ACTIONS(703), + [anon_sym_goto] = ACTIONS(707), + [anon_sym_if] = ACTIONS(709), [anon_sym_DOT_DOT] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), @@ -39818,7 +39704,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(705), + [aux_sym_preproc_if_token1] = ACTIONS(713), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -39835,114 +39721,114 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [60] = { - [sym_attribute_list] = STATE(3645), - [sym__attribute_list] = STATE(3580), - [sym_modifier] = STATE(3878), - [sym_parameter_list] = STATE(7311), - [sym_block] = STATE(2120), - [sym_variable_declaration] = STATE(7689), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(5160), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2204), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5867), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_statement] = STATE(2141), - [sym_break_statement] = STATE(2120), - [sym_checked_statement] = STATE(2120), - [sym_continue_statement] = STATE(2120), - [sym_do_statement] = STATE(2120), - [sym_empty_statement] = STATE(2120), - [sym_expression_statement] = STATE(2120), - [sym_fixed_statement] = STATE(2120), - [sym_for_statement] = STATE(2120), - [sym_return_statement] = STATE(2120), - [sym_lock_statement] = STATE(2120), - [sym_yield_statement] = STATE(2120), - [sym_switch_statement] = STATE(2120), - [sym_throw_statement] = STATE(2120), - [sym_try_statement] = STATE(2120), - [sym_unsafe_statement] = STATE(2120), - [sym_using_statement] = STATE(2120), - [sym_foreach_statement] = STATE(2120), + [sym_attribute_list] = STATE(3612), + [sym__attribute_list] = STATE(3570), + [sym_modifier] = STATE(3845), + [sym_parameter_list] = STATE(7531), + [sym_block] = STATE(2093), + [sym_variable_declaration] = STATE(7607), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(5152), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2196), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5805), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_statement] = STATE(2134), + [sym_break_statement] = STATE(2093), + [sym_checked_statement] = STATE(2093), + [sym_continue_statement] = STATE(2093), + [sym_do_statement] = STATE(2093), + [sym_empty_statement] = STATE(2093), + [sym_expression_statement] = STATE(2093), + [sym_fixed_statement] = STATE(2093), + [sym_for_statement] = STATE(2093), + [sym_return_statement] = STATE(2093), + [sym_lock_statement] = STATE(2093), + [sym_yield_statement] = STATE(2093), + [sym_switch_statement] = STATE(2093), + [sym_throw_statement] = STATE(2093), + [sym_try_statement] = STATE(2093), + [sym_unsafe_statement] = STATE(2093), + [sym_using_statement] = STATE(2093), + [sym_foreach_statement] = STATE(2093), [sym__foreach_statement_initializer] = STATE(93), - [sym_goto_statement] = STATE(2120), - [sym_labeled_statement] = STATE(2120), - [sym_if_statement] = STATE(2120), - [sym_while_statement] = STATE(2120), - [sym_local_declaration_statement] = STATE(2120), - [sym_local_function_statement] = STATE(2120), - [sym__local_function_declaration] = STATE(6322), - [sym_expression] = STATE(5672), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3461), - [sym__expression_statement_expression] = STATE(5635), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3080), - [sym_postfix_unary_expression] = STATE(3111), - [sym_prefix_unary_expression] = STATE(3111), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6154), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3080), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3111), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3080), - [sym_member_access_expression] = STATE(2484), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3111), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7530), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(3080), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3080), - [sym_typeof_expression] = STATE(3080), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2484), - [sym_literal] = STATE(3080), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2282), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_top_level] = STATE(2120), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(3645), + [sym_goto_statement] = STATE(2093), + [sym_labeled_statement] = STATE(2093), + [sym_if_statement] = STATE(2093), + [sym_while_statement] = STATE(2093), + [sym_local_declaration_statement] = STATE(2093), + [sym_local_function_statement] = STATE(2093), + [sym__local_function_declaration] = STATE(6310), + [sym_expression] = STATE(5660), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3356), + [sym__expression_statement_expression] = STATE(5554), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3102), + [sym_postfix_unary_expression] = STATE(3079), + [sym_prefix_unary_expression] = STATE(3079), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6134), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3102), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3079), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3102), + [sym_member_access_expression] = STATE(2472), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3079), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7425), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(3102), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3102), + [sym_typeof_expression] = STATE(3102), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2472), + [sym_literal] = STATE(3102), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2269), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_top_level] = STATE(2093), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(3612), [sym_preproc_region] = STATE(60), [sym_preproc_endregion] = STATE(60), [sym_preproc_line] = STATE(60), @@ -39952,46 +39838,46 @@ 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(2286), - [aux_sym__class_declaration_initializer_repeat2] = STATE(2529), - [aux_sym_block_repeat1] = STATE(27), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [aux_sym__class_declaration_initializer_repeat1] = STATE(2277), + [aux_sym__class_declaration_initializer_repeat2] = STATE(2540), + [aux_sym_block_repeat1] = STATE(28), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), - [anon_sym_extern] = ACTIONS(647), + [anon_sym_extern] = ACTIONS(645), [anon_sym_alias] = ACTIONS(29), - [anon_sym_SEMI] = ACTIONS(649), + [anon_sym_SEMI] = ACTIONS(647), [anon_sym_global] = ACTIONS(29), - [anon_sym_using] = ACTIONS(651), - [anon_sym_unsafe] = ACTIONS(653), - [anon_sym_static] = ACTIONS(655), - [anon_sym_LBRACK] = ACTIONS(657), + [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(659), - [anon_sym_ref] = ACTIONS(661), - [anon_sym_LBRACE] = ACTIONS(663), - [anon_sym_RBRACE] = ACTIONS(985), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_abstract] = ACTIONS(647), - [anon_sym_async] = ACTIONS(655), - [anon_sym_const] = ACTIONS(647), - [anon_sym_file] = ACTIONS(669), - [anon_sym_fixed] = ACTIONS(671), - [anon_sym_internal] = ACTIONS(647), - [anon_sym_new] = ACTIONS(673), - [anon_sym_override] = ACTIONS(647), - [anon_sym_partial] = ACTIONS(647), - [anon_sym_private] = ACTIONS(647), - [anon_sym_protected] = ACTIONS(647), - [anon_sym_public] = ACTIONS(647), - [anon_sym_readonly] = ACTIONS(647), - [anon_sym_required] = ACTIONS(647), - [anon_sym_sealed] = ACTIONS(647), - [anon_sym_virtual] = ACTIONS(647), - [anon_sym_volatile] = ACTIONS(647), - [anon_sym_where] = ACTIONS(29), - [anon_sym_notnull] = ACTIONS(29), - [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(675), + [anon_sym_return] = ACTIONS(661), + [anon_sym_ref] = ACTIONS(715), + [anon_sym_LBRACE] = ACTIONS(665), + [anon_sym_RBRACE] = ACTIONS(983), + [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(673), + [anon_sym_internal] = ACTIONS(645), + [anon_sym_new] = ACTIONS(675), + [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(677), [anon_sym_BANG] = ACTIONS(75), [anon_sym_TILDE] = ACTIONS(75), [anon_sym_PLUS_PLUS] = ACTIONS(75), @@ -40008,23 +39894,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(677), - [anon_sym_unchecked] = ACTIONS(675), - [anon_sym_continue] = ACTIONS(679), - [anon_sym_do] = ACTIONS(681), - [anon_sym_while] = ACTIONS(683), - [anon_sym_for] = ACTIONS(685), - [anon_sym_lock] = ACTIONS(687), - [anon_sym_yield] = ACTIONS(689), - [anon_sym_switch] = ACTIONS(691), + [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(695), - [anon_sym_try] = ACTIONS(697), + [anon_sym_throw] = ACTIONS(721), + [anon_sym_try] = ACTIONS(703), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(699), + [anon_sym_await] = ACTIONS(723), [anon_sym_foreach] = ACTIONS(117), - [anon_sym_goto] = ACTIONS(701), - [anon_sym_if] = ACTIONS(703), + [anon_sym_goto] = ACTIONS(707), + [anon_sym_if] = ACTIONS(709), [anon_sym_DOT_DOT] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), @@ -40050,7 +39936,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(705), + [aux_sym_preproc_if_token1] = ACTIONS(713), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -40067,114 +39953,114 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [61] = { - [sym_attribute_list] = STATE(3645), - [sym__attribute_list] = STATE(3580), - [sym_modifier] = STATE(3878), - [sym_parameter_list] = STATE(7311), - [sym_block] = STATE(2120), - [sym_variable_declaration] = STATE(7689), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(5160), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2204), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5867), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_statement] = STATE(2141), - [sym_break_statement] = STATE(2120), - [sym_checked_statement] = STATE(2120), - [sym_continue_statement] = STATE(2120), - [sym_do_statement] = STATE(2120), - [sym_empty_statement] = STATE(2120), - [sym_expression_statement] = STATE(2120), - [sym_fixed_statement] = STATE(2120), - [sym_for_statement] = STATE(2120), - [sym_return_statement] = STATE(2120), - [sym_lock_statement] = STATE(2120), - [sym_yield_statement] = STATE(2120), - [sym_switch_statement] = STATE(2120), - [sym_throw_statement] = STATE(2120), - [sym_try_statement] = STATE(2120), - [sym_unsafe_statement] = STATE(2120), - [sym_using_statement] = STATE(2120), - [sym_foreach_statement] = STATE(2120), + [sym_attribute_list] = STATE(3612), + [sym__attribute_list] = STATE(3570), + [sym_modifier] = STATE(3845), + [sym_parameter_list] = STATE(7531), + [sym_block] = STATE(2093), + [sym_variable_declaration] = STATE(7607), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(5152), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2196), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5805), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_statement] = STATE(2134), + [sym_break_statement] = STATE(2093), + [sym_checked_statement] = STATE(2093), + [sym_continue_statement] = STATE(2093), + [sym_do_statement] = STATE(2093), + [sym_empty_statement] = STATE(2093), + [sym_expression_statement] = STATE(2093), + [sym_fixed_statement] = STATE(2093), + [sym_for_statement] = STATE(2093), + [sym_return_statement] = STATE(2093), + [sym_lock_statement] = STATE(2093), + [sym_yield_statement] = STATE(2093), + [sym_switch_statement] = STATE(2093), + [sym_throw_statement] = STATE(2093), + [sym_try_statement] = STATE(2093), + [sym_unsafe_statement] = STATE(2093), + [sym_using_statement] = STATE(2093), + [sym_foreach_statement] = STATE(2093), [sym__foreach_statement_initializer] = STATE(93), - [sym_goto_statement] = STATE(2120), - [sym_labeled_statement] = STATE(2120), - [sym_if_statement] = STATE(2120), - [sym_while_statement] = STATE(2120), - [sym_local_declaration_statement] = STATE(2120), - [sym_local_function_statement] = STATE(2120), - [sym__local_function_declaration] = STATE(6322), - [sym_expression] = STATE(5672), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3461), - [sym__expression_statement_expression] = STATE(5635), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3080), - [sym_postfix_unary_expression] = STATE(3111), - [sym_prefix_unary_expression] = STATE(3111), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6154), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3080), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3111), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3080), - [sym_member_access_expression] = STATE(2484), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3111), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7530), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(3080), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3080), - [sym_typeof_expression] = STATE(3080), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2484), - [sym_literal] = STATE(3080), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2282), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_top_level] = STATE(2120), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(3645), + [sym_goto_statement] = STATE(2093), + [sym_labeled_statement] = STATE(2093), + [sym_if_statement] = STATE(2093), + [sym_while_statement] = STATE(2093), + [sym_local_declaration_statement] = STATE(2093), + [sym_local_function_statement] = STATE(2093), + [sym__local_function_declaration] = STATE(6310), + [sym_expression] = STATE(5660), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3356), + [sym__expression_statement_expression] = STATE(5554), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3102), + [sym_postfix_unary_expression] = STATE(3079), + [sym_prefix_unary_expression] = STATE(3079), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6134), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3102), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3079), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3102), + [sym_member_access_expression] = STATE(2472), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3079), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7425), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(3102), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3102), + [sym_typeof_expression] = STATE(3102), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2472), + [sym_literal] = STATE(3102), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2269), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_top_level] = STATE(2093), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(3612), [sym_preproc_region] = STATE(61), [sym_preproc_endregion] = STATE(61), [sym_preproc_line] = STATE(61), @@ -40184,46 +40070,46 @@ 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(2286), - [aux_sym__class_declaration_initializer_repeat2] = STATE(2529), + [aux_sym__class_declaration_initializer_repeat1] = STATE(2277), + [aux_sym__class_declaration_initializer_repeat2] = STATE(2540), [aux_sym_block_repeat1] = STATE(41), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), - [anon_sym_extern] = ACTIONS(647), + [anon_sym_extern] = ACTIONS(645), [anon_sym_alias] = ACTIONS(29), - [anon_sym_SEMI] = ACTIONS(649), + [anon_sym_SEMI] = ACTIONS(647), [anon_sym_global] = ACTIONS(29), - [anon_sym_using] = ACTIONS(651), - [anon_sym_unsafe] = ACTIONS(653), - [anon_sym_static] = ACTIONS(655), - [anon_sym_LBRACK] = ACTIONS(657), + [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(659), - [anon_sym_ref] = ACTIONS(661), - [anon_sym_LBRACE] = ACTIONS(663), - [anon_sym_RBRACE] = ACTIONS(987), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_abstract] = ACTIONS(647), - [anon_sym_async] = ACTIONS(655), - [anon_sym_const] = ACTIONS(647), - [anon_sym_file] = ACTIONS(669), - [anon_sym_fixed] = ACTIONS(671), - [anon_sym_internal] = ACTIONS(647), - [anon_sym_new] = ACTIONS(673), - [anon_sym_override] = ACTIONS(647), - [anon_sym_partial] = ACTIONS(647), - [anon_sym_private] = ACTIONS(647), - [anon_sym_protected] = ACTIONS(647), - [anon_sym_public] = ACTIONS(647), - [anon_sym_readonly] = ACTIONS(647), - [anon_sym_required] = ACTIONS(647), - [anon_sym_sealed] = ACTIONS(647), - [anon_sym_virtual] = ACTIONS(647), - [anon_sym_volatile] = ACTIONS(647), - [anon_sym_where] = ACTIONS(29), - [anon_sym_notnull] = ACTIONS(29), - [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(675), + [anon_sym_return] = ACTIONS(661), + [anon_sym_ref] = ACTIONS(715), + [anon_sym_LBRACE] = ACTIONS(665), + [anon_sym_RBRACE] = ACTIONS(985), + [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(673), + [anon_sym_internal] = ACTIONS(645), + [anon_sym_new] = ACTIONS(675), + [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(677), [anon_sym_BANG] = ACTIONS(75), [anon_sym_TILDE] = ACTIONS(75), [anon_sym_PLUS_PLUS] = ACTIONS(75), @@ -40240,23 +40126,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(677), - [anon_sym_unchecked] = ACTIONS(675), - [anon_sym_continue] = ACTIONS(679), - [anon_sym_do] = ACTIONS(681), - [anon_sym_while] = ACTIONS(683), - [anon_sym_for] = ACTIONS(685), - [anon_sym_lock] = ACTIONS(687), - [anon_sym_yield] = ACTIONS(689), - [anon_sym_switch] = ACTIONS(691), + [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(695), - [anon_sym_try] = ACTIONS(697), + [anon_sym_throw] = ACTIONS(721), + [anon_sym_try] = ACTIONS(703), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(699), + [anon_sym_await] = ACTIONS(723), [anon_sym_foreach] = ACTIONS(117), - [anon_sym_goto] = ACTIONS(701), - [anon_sym_if] = ACTIONS(703), + [anon_sym_goto] = ACTIONS(707), + [anon_sym_if] = ACTIONS(709), [anon_sym_DOT_DOT] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), @@ -40282,7 +40168,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(705), + [aux_sym_preproc_if_token1] = ACTIONS(713), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -40299,114 +40185,114 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [62] = { - [sym_attribute_list] = STATE(3645), - [sym__attribute_list] = STATE(3580), - [sym_modifier] = STATE(3878), - [sym_parameter_list] = STATE(7311), - [sym_block] = STATE(2120), - [sym_variable_declaration] = STATE(7689), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(5160), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2204), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5867), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_statement] = STATE(2138), - [sym_break_statement] = STATE(2120), - [sym_checked_statement] = STATE(2120), - [sym_continue_statement] = STATE(2120), - [sym_do_statement] = STATE(2120), - [sym_empty_statement] = STATE(2120), - [sym_expression_statement] = STATE(2120), - [sym_fixed_statement] = STATE(2120), - [sym_for_statement] = STATE(2120), - [sym_return_statement] = STATE(2120), - [sym_lock_statement] = STATE(2120), - [sym_yield_statement] = STATE(2120), - [sym_switch_statement] = STATE(2120), - [sym_throw_statement] = STATE(2120), - [sym_try_statement] = STATE(2120), - [sym_unsafe_statement] = STATE(2120), - [sym_using_statement] = STATE(2120), - [sym_foreach_statement] = STATE(2120), - [sym__foreach_statement_initializer] = STATE(93), - [sym_goto_statement] = STATE(2120), - [sym_labeled_statement] = STATE(2120), - [sym_if_statement] = STATE(2120), - [sym_while_statement] = STATE(2120), - [sym_local_declaration_statement] = STATE(2120), - [sym_local_function_statement] = STATE(2120), - [sym__local_function_declaration] = STATE(6322), - [sym_expression] = STATE(5672), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3461), - [sym__expression_statement_expression] = STATE(5635), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3080), - [sym_postfix_unary_expression] = STATE(3111), - [sym_prefix_unary_expression] = STATE(3111), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6154), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3080), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3111), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3080), - [sym_member_access_expression] = STATE(2484), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3111), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7530), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(3080), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3080), - [sym_typeof_expression] = STATE(3080), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2484), - [sym_literal] = STATE(3080), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2282), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_top_level] = STATE(2120), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(3645), + [sym_attribute_list] = STATE(3612), + [sym__attribute_list] = STATE(3570), + [sym_modifier] = STATE(3845), + [sym_parameter_list] = STATE(7531), + [sym_block] = STATE(2026), + [sym_variable_declaration] = STATE(7610), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(5152), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2196), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5805), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_statement] = STATE(2021), + [sym_break_statement] = STATE(2026), + [sym_checked_statement] = STATE(2026), + [sym_continue_statement] = STATE(2026), + [sym_do_statement] = STATE(2026), + [sym_empty_statement] = STATE(2026), + [sym_expression_statement] = STATE(2026), + [sym_fixed_statement] = STATE(2026), + [sym_for_statement] = STATE(2026), + [sym_return_statement] = STATE(2026), + [sym_lock_statement] = STATE(2026), + [sym_yield_statement] = STATE(2026), + [sym_switch_statement] = STATE(2026), + [sym_throw_statement] = STATE(2026), + [sym_try_statement] = STATE(2026), + [sym_unsafe_statement] = STATE(2026), + [sym_using_statement] = STATE(2026), + [sym_foreach_statement] = STATE(2026), + [sym__foreach_statement_initializer] = STATE(90), + [sym_goto_statement] = STATE(2026), + [sym_labeled_statement] = STATE(2026), + [sym_if_statement] = STATE(2026), + [sym_while_statement] = STATE(2026), + [sym_local_declaration_statement] = STATE(2026), + [sym_local_function_statement] = STATE(2026), + [sym__local_function_declaration] = STATE(6290), + [sym_expression] = STATE(5660), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3356), + [sym__expression_statement_expression] = STATE(5708), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3102), + [sym_postfix_unary_expression] = STATE(3079), + [sym_prefix_unary_expression] = STATE(3079), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6134), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3102), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3079), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3102), + [sym_member_access_expression] = STATE(2472), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3079), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7425), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(3102), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3102), + [sym_typeof_expression] = STATE(3102), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2472), + [sym_literal] = STATE(3102), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2332), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_top_level] = STATE(2026), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(3612), [sym_preproc_region] = STATE(62), [sym_preproc_endregion] = STATE(62), [sym_preproc_line] = STATE(62), @@ -40416,44 +40302,44 @@ 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(2286), - [aux_sym__class_declaration_initializer_repeat2] = STATE(2529), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [aux_sym__class_declaration_initializer_repeat1] = STATE(2277), + [aux_sym__class_declaration_initializer_repeat2] = STATE(2535), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), - [anon_sym_extern] = ACTIONS(647), + [anon_sym_extern] = ACTIONS(645), [anon_sym_alias] = ACTIONS(29), - [anon_sym_SEMI] = ACTIONS(649), + [anon_sym_SEMI] = ACTIONS(31), [anon_sym_global] = ACTIONS(29), - [anon_sym_using] = ACTIONS(651), - [anon_sym_unsafe] = ACTIONS(653), - [anon_sym_static] = ACTIONS(655), - [anon_sym_LBRACK] = ACTIONS(657), + [anon_sym_using] = ACTIONS(987), + [anon_sym_unsafe] = ACTIONS(989), + [anon_sym_static] = ACTIONS(653), + [anon_sym_LBRACK] = ACTIONS(655), [anon_sym_LPAREN] = ACTIONS(43), - [anon_sym_return] = ACTIONS(659), - [anon_sym_ref] = ACTIONS(661), - [anon_sym_LBRACE] = ACTIONS(663), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_abstract] = ACTIONS(647), - [anon_sym_async] = ACTIONS(655), - [anon_sym_const] = ACTIONS(647), - [anon_sym_file] = ACTIONS(669), - [anon_sym_fixed] = ACTIONS(671), - [anon_sym_internal] = ACTIONS(647), - [anon_sym_new] = ACTIONS(673), - [anon_sym_override] = ACTIONS(647), - [anon_sym_partial] = ACTIONS(647), - [anon_sym_private] = ACTIONS(647), - [anon_sym_protected] = ACTIONS(647), - [anon_sym_public] = ACTIONS(647), - [anon_sym_readonly] = ACTIONS(647), - [anon_sym_required] = ACTIONS(647), - [anon_sym_sealed] = ACTIONS(647), - [anon_sym_virtual] = ACTIONS(647), - [anon_sym_volatile] = ACTIONS(647), - [anon_sym_where] = ACTIONS(29), - [anon_sym_notnull] = ACTIONS(29), - [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(675), + [anon_sym_return] = ACTIONS(45), + [anon_sym_ref] = ACTIONS(715), + [anon_sym_LBRACE] = ACTIONS(57), + [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(991), + [anon_sym_internal] = ACTIONS(645), + [anon_sym_new] = ACTIONS(675), + [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(73), [anon_sym_BANG] = ACTIONS(75), [anon_sym_TILDE] = ACTIONS(75), [anon_sym_PLUS_PLUS] = ACTIONS(75), @@ -40470,23 +40356,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(677), - [anon_sym_unchecked] = ACTIONS(675), - [anon_sym_continue] = ACTIONS(679), - [anon_sym_do] = ACTIONS(681), - [anon_sym_while] = ACTIONS(683), - [anon_sym_for] = ACTIONS(685), - [anon_sym_lock] = ACTIONS(687), - [anon_sym_yield] = ACTIONS(689), - [anon_sym_switch] = ACTIONS(691), + [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(695), - [anon_sym_try] = ACTIONS(697), + [anon_sym_throw] = ACTIONS(111), + [anon_sym_try] = ACTIONS(113), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(699), + [anon_sym_await] = ACTIONS(115), [anon_sym_foreach] = ACTIONS(117), - [anon_sym_goto] = ACTIONS(701), - [anon_sym_if] = ACTIONS(703), + [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), @@ -40512,7 +40398,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(705), + [aux_sym_preproc_if_token1] = ACTIONS(993), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -40529,114 +40415,114 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [63] = { - [sym_attribute_list] = STATE(3645), - [sym__attribute_list] = STATE(3580), - [sym_modifier] = STATE(3878), - [sym_parameter_list] = STATE(7311), - [sym_block] = STATE(1968), - [sym_variable_declaration] = STATE(7525), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(5160), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2204), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5867), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_statement] = STATE(1948), - [sym_break_statement] = STATE(1968), - [sym_checked_statement] = STATE(1968), - [sym_continue_statement] = STATE(1968), - [sym_do_statement] = STATE(1968), - [sym_empty_statement] = STATE(1968), - [sym_expression_statement] = STATE(1968), - [sym_fixed_statement] = STATE(1968), - [sym_for_statement] = STATE(1968), - [sym_return_statement] = STATE(1968), - [sym_lock_statement] = STATE(1968), - [sym_yield_statement] = STATE(1968), - [sym_switch_statement] = STATE(1968), - [sym_throw_statement] = STATE(1968), - [sym_try_statement] = STATE(1968), - [sym_unsafe_statement] = STATE(1968), - [sym_using_statement] = STATE(1968), - [sym_foreach_statement] = STATE(1968), - [sym__foreach_statement_initializer] = STATE(91), - [sym_goto_statement] = STATE(1968), - [sym_labeled_statement] = STATE(1968), - [sym_if_statement] = STATE(1968), - [sym_while_statement] = STATE(1968), - [sym_local_declaration_statement] = STATE(1968), - [sym_local_function_statement] = STATE(1968), - [sym__local_function_declaration] = STATE(6298), - [sym_expression] = STATE(5672), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3461), - [sym__expression_statement_expression] = STATE(5158), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3080), - [sym_postfix_unary_expression] = STATE(3111), - [sym_prefix_unary_expression] = STATE(3111), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6154), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3080), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3111), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3080), - [sym_member_access_expression] = STATE(2484), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3111), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7530), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(3080), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3080), - [sym_typeof_expression] = STATE(3080), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2484), - [sym_literal] = STATE(3080), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2264), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_top_level] = STATE(1968), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(3645), + [sym_attribute_list] = STATE(3612), + [sym__attribute_list] = STATE(3570), + [sym_modifier] = STATE(3845), + [sym_parameter_list] = STATE(7531), + [sym_block] = STATE(1948), + [sym_variable_declaration] = STATE(7649), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(5152), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2196), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5805), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_statement] = STATE(1966), + [sym_break_statement] = STATE(1948), + [sym_checked_statement] = STATE(1948), + [sym_continue_statement] = STATE(1948), + [sym_do_statement] = STATE(1948), + [sym_empty_statement] = STATE(1948), + [sym_expression_statement] = STATE(1948), + [sym_fixed_statement] = STATE(1948), + [sym_for_statement] = STATE(1948), + [sym_return_statement] = STATE(1948), + [sym_lock_statement] = STATE(1948), + [sym_yield_statement] = STATE(1948), + [sym_switch_statement] = STATE(1948), + [sym_throw_statement] = STATE(1948), + [sym_try_statement] = STATE(1948), + [sym_unsafe_statement] = STATE(1948), + [sym_using_statement] = STATE(1948), + [sym_foreach_statement] = STATE(1948), + [sym__foreach_statement_initializer] = STATE(94), + [sym_goto_statement] = STATE(1948), + [sym_labeled_statement] = STATE(1948), + [sym_if_statement] = STATE(1948), + [sym_while_statement] = STATE(1948), + [sym_local_declaration_statement] = STATE(1948), + [sym_local_function_statement] = STATE(1948), + [sym__local_function_declaration] = STATE(6313), + [sym_expression] = STATE(5660), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3356), + [sym__expression_statement_expression] = STATE(5134), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3102), + [sym_postfix_unary_expression] = STATE(3079), + [sym_prefix_unary_expression] = STATE(3079), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6134), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3102), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3079), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3102), + [sym_member_access_expression] = STATE(2472), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3079), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7425), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(3102), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3102), + [sym_typeof_expression] = STATE(3102), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2472), + [sym_literal] = STATE(3102), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2259), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_top_level] = STATE(1948), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(3612), [sym_preproc_region] = STATE(63), [sym_preproc_endregion] = STATE(63), [sym_preproc_line] = STATE(63), @@ -40646,44 +40532,44 @@ 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(2286), - [aux_sym__class_declaration_initializer_repeat2] = STATE(2547), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [aux_sym__class_declaration_initializer_repeat1] = STATE(2277), + [aux_sym__class_declaration_initializer_repeat2] = STATE(2515), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), - [anon_sym_extern] = ACTIONS(647), + [anon_sym_extern] = ACTIONS(645), [anon_sym_alias] = ACTIONS(29), [anon_sym_SEMI] = ACTIONS(161), [anon_sym_global] = ACTIONS(29), - [anon_sym_using] = ACTIONS(989), - [anon_sym_unsafe] = ACTIONS(991), - [anon_sym_static] = ACTIONS(655), - [anon_sym_LBRACK] = ACTIONS(657), + [anon_sym_using] = ACTIONS(995), + [anon_sym_unsafe] = ACTIONS(997), + [anon_sym_static] = ACTIONS(653), + [anon_sym_LBRACK] = ACTIONS(655), [anon_sym_LPAREN] = ACTIONS(43), [anon_sym_return] = ACTIONS(171), - [anon_sym_ref] = ACTIONS(661), - [anon_sym_LBRACE] = ACTIONS(177), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_abstract] = ACTIONS(647), - [anon_sym_async] = ACTIONS(655), - [anon_sym_const] = ACTIONS(647), - [anon_sym_file] = ACTIONS(669), - [anon_sym_fixed] = ACTIONS(993), - [anon_sym_internal] = ACTIONS(647), - [anon_sym_new] = ACTIONS(673), - [anon_sym_override] = ACTIONS(647), - [anon_sym_partial] = ACTIONS(647), - [anon_sym_private] = ACTIONS(647), - [anon_sym_protected] = ACTIONS(647), - [anon_sym_public] = ACTIONS(647), - [anon_sym_readonly] = ACTIONS(647), - [anon_sym_required] = ACTIONS(647), - [anon_sym_sealed] = ACTIONS(647), - [anon_sym_virtual] = ACTIONS(647), - [anon_sym_volatile] = ACTIONS(647), - [anon_sym_where] = ACTIONS(29), - [anon_sym_notnull] = ACTIONS(29), - [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(181), + [anon_sym_ref] = ACTIONS(715), + [anon_sym_LBRACE] = ACTIONS(175), + [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(999), + [anon_sym_internal] = ACTIONS(645), + [anon_sym_new] = ACTIONS(675), + [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(179), [anon_sym_BANG] = ACTIONS(75), [anon_sym_TILDE] = ACTIONS(75), [anon_sym_PLUS_PLUS] = ACTIONS(75), @@ -40700,23 +40586,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(183), - [anon_sym_unchecked] = ACTIONS(181), - [anon_sym_continue] = ACTIONS(185), - [anon_sym_do] = ACTIONS(187), - [anon_sym_while] = ACTIONS(189), - [anon_sym_for] = ACTIONS(191), - [anon_sym_lock] = ACTIONS(193), - [anon_sym_yield] = ACTIONS(195), - [anon_sym_switch] = ACTIONS(197), + [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(199), - [anon_sym_try] = ACTIONS(201), + [anon_sym_throw] = ACTIONS(197), + [anon_sym_try] = ACTIONS(199), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(203), + [anon_sym_await] = ACTIONS(201), [anon_sym_foreach] = ACTIONS(117), - [anon_sym_goto] = ACTIONS(205), - [anon_sym_if] = ACTIONS(207), + [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), @@ -40742,7 +40628,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(995), + [aux_sym_preproc_if_token1] = ACTIONS(1001), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -40759,114 +40645,114 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [64] = { - [sym_attribute_list] = STATE(3645), - [sym__attribute_list] = STATE(3580), - [sym_modifier] = STATE(3878), - [sym_parameter_list] = STATE(7311), - [sym_block] = STATE(1968), - [sym_variable_declaration] = STATE(7525), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(5160), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2204), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5867), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_statement] = STATE(1958), - [sym_break_statement] = STATE(1968), - [sym_checked_statement] = STATE(1968), - [sym_continue_statement] = STATE(1968), - [sym_do_statement] = STATE(1968), - [sym_empty_statement] = STATE(1968), - [sym_expression_statement] = STATE(1968), - [sym_fixed_statement] = STATE(1968), - [sym_for_statement] = STATE(1968), - [sym_return_statement] = STATE(1968), - [sym_lock_statement] = STATE(1968), - [sym_yield_statement] = STATE(1968), - [sym_switch_statement] = STATE(1968), - [sym_throw_statement] = STATE(1968), - [sym_try_statement] = STATE(1968), - [sym_unsafe_statement] = STATE(1968), - [sym_using_statement] = STATE(1968), - [sym_foreach_statement] = STATE(1968), - [sym__foreach_statement_initializer] = STATE(91), - [sym_goto_statement] = STATE(1968), - [sym_labeled_statement] = STATE(1968), - [sym_if_statement] = STATE(1968), - [sym_while_statement] = STATE(1968), - [sym_local_declaration_statement] = STATE(1968), - [sym_local_function_statement] = STATE(1968), - [sym__local_function_declaration] = STATE(6298), - [sym_expression] = STATE(5672), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3461), - [sym__expression_statement_expression] = STATE(5158), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3080), - [sym_postfix_unary_expression] = STATE(3111), - [sym_prefix_unary_expression] = STATE(3111), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6154), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3080), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3111), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3080), - [sym_member_access_expression] = STATE(2484), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3111), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7530), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(3080), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3080), - [sym_typeof_expression] = STATE(3080), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2484), - [sym_literal] = STATE(3080), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2264), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_top_level] = STATE(1968), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(3645), + [sym_attribute_list] = STATE(3612), + [sym__attribute_list] = STATE(3570), + [sym_modifier] = STATE(3845), + [sym_parameter_list] = STATE(7531), + [sym_block] = STATE(1948), + [sym_variable_declaration] = STATE(7649), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(5152), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2196), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5805), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_statement] = STATE(1977), + [sym_break_statement] = STATE(1948), + [sym_checked_statement] = STATE(1948), + [sym_continue_statement] = STATE(1948), + [sym_do_statement] = STATE(1948), + [sym_empty_statement] = STATE(1948), + [sym_expression_statement] = STATE(1948), + [sym_fixed_statement] = STATE(1948), + [sym_for_statement] = STATE(1948), + [sym_return_statement] = STATE(1948), + [sym_lock_statement] = STATE(1948), + [sym_yield_statement] = STATE(1948), + [sym_switch_statement] = STATE(1948), + [sym_throw_statement] = STATE(1948), + [sym_try_statement] = STATE(1948), + [sym_unsafe_statement] = STATE(1948), + [sym_using_statement] = STATE(1948), + [sym_foreach_statement] = STATE(1948), + [sym__foreach_statement_initializer] = STATE(94), + [sym_goto_statement] = STATE(1948), + [sym_labeled_statement] = STATE(1948), + [sym_if_statement] = STATE(1948), + [sym_while_statement] = STATE(1948), + [sym_local_declaration_statement] = STATE(1948), + [sym_local_function_statement] = STATE(1948), + [sym__local_function_declaration] = STATE(6313), + [sym_expression] = STATE(5660), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3356), + [sym__expression_statement_expression] = STATE(5134), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3102), + [sym_postfix_unary_expression] = STATE(3079), + [sym_prefix_unary_expression] = STATE(3079), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6134), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3102), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3079), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3102), + [sym_member_access_expression] = STATE(2472), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3079), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7425), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(3102), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3102), + [sym_typeof_expression] = STATE(3102), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2472), + [sym_literal] = STATE(3102), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2259), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_top_level] = STATE(1948), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(3612), [sym_preproc_region] = STATE(64), [sym_preproc_endregion] = STATE(64), [sym_preproc_line] = STATE(64), @@ -40876,44 +40762,44 @@ 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(2286), - [aux_sym__class_declaration_initializer_repeat2] = STATE(2547), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [aux_sym__class_declaration_initializer_repeat1] = STATE(2277), + [aux_sym__class_declaration_initializer_repeat2] = STATE(2515), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), - [anon_sym_extern] = ACTIONS(647), + [anon_sym_extern] = ACTIONS(645), [anon_sym_alias] = ACTIONS(29), [anon_sym_SEMI] = ACTIONS(161), [anon_sym_global] = ACTIONS(29), - [anon_sym_using] = ACTIONS(989), - [anon_sym_unsafe] = ACTIONS(991), - [anon_sym_static] = ACTIONS(655), - [anon_sym_LBRACK] = ACTIONS(657), + [anon_sym_using] = ACTIONS(995), + [anon_sym_unsafe] = ACTIONS(997), + [anon_sym_static] = ACTIONS(653), + [anon_sym_LBRACK] = ACTIONS(655), [anon_sym_LPAREN] = ACTIONS(43), [anon_sym_return] = ACTIONS(171), - [anon_sym_ref] = ACTIONS(661), - [anon_sym_LBRACE] = ACTIONS(177), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_abstract] = ACTIONS(647), - [anon_sym_async] = ACTIONS(655), - [anon_sym_const] = ACTIONS(647), - [anon_sym_file] = ACTIONS(669), - [anon_sym_fixed] = ACTIONS(993), - [anon_sym_internal] = ACTIONS(647), - [anon_sym_new] = ACTIONS(673), - [anon_sym_override] = ACTIONS(647), - [anon_sym_partial] = ACTIONS(647), - [anon_sym_private] = ACTIONS(647), - [anon_sym_protected] = ACTIONS(647), - [anon_sym_public] = ACTIONS(647), - [anon_sym_readonly] = ACTIONS(647), - [anon_sym_required] = ACTIONS(647), - [anon_sym_sealed] = ACTIONS(647), - [anon_sym_virtual] = ACTIONS(647), - [anon_sym_volatile] = ACTIONS(647), - [anon_sym_where] = ACTIONS(29), - [anon_sym_notnull] = ACTIONS(29), - [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(181), + [anon_sym_ref] = ACTIONS(715), + [anon_sym_LBRACE] = ACTIONS(175), + [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(999), + [anon_sym_internal] = ACTIONS(645), + [anon_sym_new] = ACTIONS(675), + [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(179), [anon_sym_BANG] = ACTIONS(75), [anon_sym_TILDE] = ACTIONS(75), [anon_sym_PLUS_PLUS] = ACTIONS(75), @@ -40930,23 +40816,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(183), - [anon_sym_unchecked] = ACTIONS(181), - [anon_sym_continue] = ACTIONS(185), - [anon_sym_do] = ACTIONS(187), - [anon_sym_while] = ACTIONS(189), - [anon_sym_for] = ACTIONS(191), - [anon_sym_lock] = ACTIONS(193), - [anon_sym_yield] = ACTIONS(195), - [anon_sym_switch] = ACTIONS(197), + [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(199), - [anon_sym_try] = ACTIONS(201), + [anon_sym_throw] = ACTIONS(197), + [anon_sym_try] = ACTIONS(199), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(203), + [anon_sym_await] = ACTIONS(201), [anon_sym_foreach] = ACTIONS(117), - [anon_sym_goto] = ACTIONS(205), - [anon_sym_if] = ACTIONS(207), + [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), @@ -40972,7 +40858,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(995), + [aux_sym_preproc_if_token1] = ACTIONS(1001), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -40989,114 +40875,114 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [65] = { - [sym_attribute_list] = STATE(3645), - [sym__attribute_list] = STATE(3580), - [sym_modifier] = STATE(3878), - [sym_parameter_list] = STATE(7311), - [sym_block] = STATE(1968), - [sym_variable_declaration] = STATE(7525), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(5160), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2204), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5867), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_statement] = STATE(1933), - [sym_break_statement] = STATE(1968), - [sym_checked_statement] = STATE(1968), - [sym_continue_statement] = STATE(1968), - [sym_do_statement] = STATE(1968), - [sym_empty_statement] = STATE(1968), - [sym_expression_statement] = STATE(1968), - [sym_fixed_statement] = STATE(1968), - [sym_for_statement] = STATE(1968), - [sym_return_statement] = STATE(1968), - [sym_lock_statement] = STATE(1968), - [sym_yield_statement] = STATE(1968), - [sym_switch_statement] = STATE(1968), - [sym_throw_statement] = STATE(1968), - [sym_try_statement] = STATE(1968), - [sym_unsafe_statement] = STATE(1968), - [sym_using_statement] = STATE(1968), - [sym_foreach_statement] = STATE(1968), - [sym__foreach_statement_initializer] = STATE(91), - [sym_goto_statement] = STATE(1968), - [sym_labeled_statement] = STATE(1968), - [sym_if_statement] = STATE(1968), - [sym_while_statement] = STATE(1968), - [sym_local_declaration_statement] = STATE(1968), - [sym_local_function_statement] = STATE(1968), - [sym__local_function_declaration] = STATE(6298), - [sym_expression] = STATE(5672), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3461), - [sym__expression_statement_expression] = STATE(5158), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3080), - [sym_postfix_unary_expression] = STATE(3111), - [sym_prefix_unary_expression] = STATE(3111), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6154), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3080), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3111), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3080), - [sym_member_access_expression] = STATE(2484), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3111), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7530), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(3080), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3080), - [sym_typeof_expression] = STATE(3080), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2484), - [sym_literal] = STATE(3080), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2264), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_top_level] = STATE(1968), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(3645), + [sym_attribute_list] = STATE(3612), + [sym__attribute_list] = STATE(3570), + [sym_modifier] = STATE(3845), + [sym_parameter_list] = STATE(7531), + [sym_block] = STATE(1948), + [sym_variable_declaration] = STATE(7649), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(5152), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2196), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5805), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_statement] = STATE(1956), + [sym_break_statement] = STATE(1948), + [sym_checked_statement] = STATE(1948), + [sym_continue_statement] = STATE(1948), + [sym_do_statement] = STATE(1948), + [sym_empty_statement] = STATE(1948), + [sym_expression_statement] = STATE(1948), + [sym_fixed_statement] = STATE(1948), + [sym_for_statement] = STATE(1948), + [sym_return_statement] = STATE(1948), + [sym_lock_statement] = STATE(1948), + [sym_yield_statement] = STATE(1948), + [sym_switch_statement] = STATE(1948), + [sym_throw_statement] = STATE(1948), + [sym_try_statement] = STATE(1948), + [sym_unsafe_statement] = STATE(1948), + [sym_using_statement] = STATE(1948), + [sym_foreach_statement] = STATE(1948), + [sym__foreach_statement_initializer] = STATE(94), + [sym_goto_statement] = STATE(1948), + [sym_labeled_statement] = STATE(1948), + [sym_if_statement] = STATE(1948), + [sym_while_statement] = STATE(1948), + [sym_local_declaration_statement] = STATE(1948), + [sym_local_function_statement] = STATE(1948), + [sym__local_function_declaration] = STATE(6313), + [sym_expression] = STATE(5660), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3356), + [sym__expression_statement_expression] = STATE(5134), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3102), + [sym_postfix_unary_expression] = STATE(3079), + [sym_prefix_unary_expression] = STATE(3079), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6134), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3102), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3079), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3102), + [sym_member_access_expression] = STATE(2472), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3079), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7425), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(3102), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3102), + [sym_typeof_expression] = STATE(3102), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2472), + [sym_literal] = STATE(3102), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2259), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_top_level] = STATE(1948), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(3612), [sym_preproc_region] = STATE(65), [sym_preproc_endregion] = STATE(65), [sym_preproc_line] = STATE(65), @@ -41106,44 +40992,44 @@ 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(2286), - [aux_sym__class_declaration_initializer_repeat2] = STATE(2547), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [aux_sym__class_declaration_initializer_repeat1] = STATE(2277), + [aux_sym__class_declaration_initializer_repeat2] = STATE(2515), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), - [anon_sym_extern] = ACTIONS(647), + [anon_sym_extern] = ACTIONS(645), [anon_sym_alias] = ACTIONS(29), [anon_sym_SEMI] = ACTIONS(161), [anon_sym_global] = ACTIONS(29), - [anon_sym_using] = ACTIONS(989), - [anon_sym_unsafe] = ACTIONS(991), - [anon_sym_static] = ACTIONS(655), - [anon_sym_LBRACK] = ACTIONS(657), + [anon_sym_using] = ACTIONS(995), + [anon_sym_unsafe] = ACTIONS(997), + [anon_sym_static] = ACTIONS(653), + [anon_sym_LBRACK] = ACTIONS(655), [anon_sym_LPAREN] = ACTIONS(43), [anon_sym_return] = ACTIONS(171), - [anon_sym_ref] = ACTIONS(661), - [anon_sym_LBRACE] = ACTIONS(177), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_abstract] = ACTIONS(647), - [anon_sym_async] = ACTIONS(655), - [anon_sym_const] = ACTIONS(647), - [anon_sym_file] = ACTIONS(669), - [anon_sym_fixed] = ACTIONS(993), - [anon_sym_internal] = ACTIONS(647), - [anon_sym_new] = ACTIONS(673), - [anon_sym_override] = ACTIONS(647), - [anon_sym_partial] = ACTIONS(647), - [anon_sym_private] = ACTIONS(647), - [anon_sym_protected] = ACTIONS(647), - [anon_sym_public] = ACTIONS(647), - [anon_sym_readonly] = ACTIONS(647), - [anon_sym_required] = ACTIONS(647), - [anon_sym_sealed] = ACTIONS(647), - [anon_sym_virtual] = ACTIONS(647), - [anon_sym_volatile] = ACTIONS(647), - [anon_sym_where] = ACTIONS(29), - [anon_sym_notnull] = ACTIONS(29), - [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(181), + [anon_sym_ref] = ACTIONS(715), + [anon_sym_LBRACE] = ACTIONS(175), + [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(999), + [anon_sym_internal] = ACTIONS(645), + [anon_sym_new] = ACTIONS(675), + [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(179), [anon_sym_BANG] = ACTIONS(75), [anon_sym_TILDE] = ACTIONS(75), [anon_sym_PLUS_PLUS] = ACTIONS(75), @@ -41160,23 +41046,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(183), - [anon_sym_unchecked] = ACTIONS(181), - [anon_sym_continue] = ACTIONS(185), - [anon_sym_do] = ACTIONS(187), - [anon_sym_while] = ACTIONS(189), - [anon_sym_for] = ACTIONS(191), - [anon_sym_lock] = ACTIONS(193), - [anon_sym_yield] = ACTIONS(195), - [anon_sym_switch] = ACTIONS(197), + [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(199), - [anon_sym_try] = ACTIONS(201), + [anon_sym_throw] = ACTIONS(197), + [anon_sym_try] = ACTIONS(199), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(203), + [anon_sym_await] = ACTIONS(201), [anon_sym_foreach] = ACTIONS(117), - [anon_sym_goto] = ACTIONS(205), - [anon_sym_if] = ACTIONS(207), + [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), @@ -41202,7 +41088,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(995), + [aux_sym_preproc_if_token1] = ACTIONS(1001), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -41219,114 +41105,114 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [66] = { - [sym_attribute_list] = STATE(3645), - [sym__attribute_list] = STATE(3580), - [sym_modifier] = STATE(3878), - [sym_parameter_list] = STATE(7311), - [sym_block] = STATE(2026), - [sym_variable_declaration] = STATE(7363), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(5160), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2204), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5867), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_statement] = STATE(2050), - [sym_break_statement] = STATE(2026), - [sym_checked_statement] = STATE(2026), - [sym_continue_statement] = STATE(2026), - [sym_do_statement] = STATE(2026), - [sym_empty_statement] = STATE(2026), - [sym_expression_statement] = STATE(2026), - [sym_fixed_statement] = STATE(2026), - [sym_for_statement] = STATE(2026), - [sym_return_statement] = STATE(2026), - [sym_lock_statement] = STATE(2026), - [sym_yield_statement] = STATE(2026), - [sym_switch_statement] = STATE(2026), - [sym_throw_statement] = STATE(2026), - [sym_try_statement] = STATE(2026), - [sym_unsafe_statement] = STATE(2026), - [sym_using_statement] = STATE(2026), - [sym_foreach_statement] = STATE(2026), - [sym__foreach_statement_initializer] = STATE(70), - [sym_goto_statement] = STATE(2026), - [sym_labeled_statement] = STATE(2026), - [sym_if_statement] = STATE(2026), - [sym_while_statement] = STATE(2026), - [sym_local_declaration_statement] = STATE(2026), - [sym_local_function_statement] = STATE(2026), - [sym__local_function_declaration] = STATE(6317), - [sym_expression] = STATE(5672), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3461), - [sym__expression_statement_expression] = STATE(5719), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3080), - [sym_postfix_unary_expression] = STATE(3111), - [sym_prefix_unary_expression] = STATE(3111), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6154), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3080), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3111), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3080), - [sym_member_access_expression] = STATE(2484), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3111), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7530), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(3080), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3080), - [sym_typeof_expression] = STATE(3080), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2484), - [sym_literal] = STATE(3080), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2348), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_top_level] = STATE(2026), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(3645), + [sym_attribute_list] = STATE(3612), + [sym__attribute_list] = STATE(3570), + [sym_modifier] = STATE(3845), + [sym_parameter_list] = STATE(7531), + [sym_block] = STATE(1948), + [sym_variable_declaration] = STATE(7649), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(5152), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2196), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5805), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_statement] = STATE(1972), + [sym_break_statement] = STATE(1948), + [sym_checked_statement] = STATE(1948), + [sym_continue_statement] = STATE(1948), + [sym_do_statement] = STATE(1948), + [sym_empty_statement] = STATE(1948), + [sym_expression_statement] = STATE(1948), + [sym_fixed_statement] = STATE(1948), + [sym_for_statement] = STATE(1948), + [sym_return_statement] = STATE(1948), + [sym_lock_statement] = STATE(1948), + [sym_yield_statement] = STATE(1948), + [sym_switch_statement] = STATE(1948), + [sym_throw_statement] = STATE(1948), + [sym_try_statement] = STATE(1948), + [sym_unsafe_statement] = STATE(1948), + [sym_using_statement] = STATE(1948), + [sym_foreach_statement] = STATE(1948), + [sym__foreach_statement_initializer] = STATE(94), + [sym_goto_statement] = STATE(1948), + [sym_labeled_statement] = STATE(1948), + [sym_if_statement] = STATE(1948), + [sym_while_statement] = STATE(1948), + [sym_local_declaration_statement] = STATE(1948), + [sym_local_function_statement] = STATE(1948), + [sym__local_function_declaration] = STATE(6313), + [sym_expression] = STATE(5660), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3356), + [sym__expression_statement_expression] = STATE(5134), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3102), + [sym_postfix_unary_expression] = STATE(3079), + [sym_prefix_unary_expression] = STATE(3079), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6134), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3102), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3079), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3102), + [sym_member_access_expression] = STATE(2472), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3079), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7425), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(3102), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3102), + [sym_typeof_expression] = STATE(3102), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2472), + [sym_literal] = STATE(3102), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2259), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_top_level] = STATE(1948), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(3612), [sym_preproc_region] = STATE(66), [sym_preproc_endregion] = STATE(66), [sym_preproc_line] = STATE(66), @@ -41336,44 +41222,44 @@ 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(2286), - [aux_sym__class_declaration_initializer_repeat2] = STATE(2539), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [aux_sym__class_declaration_initializer_repeat1] = STATE(2277), + [aux_sym__class_declaration_initializer_repeat2] = STATE(2515), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), - [anon_sym_extern] = ACTIONS(647), + [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(997), - [anon_sym_unsafe] = ACTIONS(999), - [anon_sym_static] = ACTIONS(655), - [anon_sym_LBRACK] = ACTIONS(657), + [anon_sym_using] = ACTIONS(995), + [anon_sym_unsafe] = ACTIONS(997), + [anon_sym_static] = ACTIONS(653), + [anon_sym_LBRACK] = ACTIONS(655), [anon_sym_LPAREN] = ACTIONS(43), - [anon_sym_return] = ACTIONS(45), - [anon_sym_ref] = ACTIONS(661), - [anon_sym_LBRACE] = ACTIONS(57), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_abstract] = ACTIONS(647), - [anon_sym_async] = ACTIONS(655), - [anon_sym_const] = ACTIONS(647), - [anon_sym_file] = ACTIONS(669), - [anon_sym_fixed] = ACTIONS(1001), - [anon_sym_internal] = ACTIONS(647), - [anon_sym_new] = ACTIONS(673), - [anon_sym_override] = ACTIONS(647), - [anon_sym_partial] = ACTIONS(647), - [anon_sym_private] = ACTIONS(647), - [anon_sym_protected] = ACTIONS(647), - [anon_sym_public] = ACTIONS(647), - [anon_sym_readonly] = ACTIONS(647), - [anon_sym_required] = ACTIONS(647), - [anon_sym_sealed] = ACTIONS(647), - [anon_sym_virtual] = ACTIONS(647), - [anon_sym_volatile] = ACTIONS(647), - [anon_sym_where] = ACTIONS(29), - [anon_sym_notnull] = ACTIONS(29), - [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(73), + [anon_sym_return] = ACTIONS(171), + [anon_sym_ref] = ACTIONS(715), + [anon_sym_LBRACE] = ACTIONS(175), + [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(999), + [anon_sym_internal] = ACTIONS(645), + [anon_sym_new] = ACTIONS(675), + [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(179), [anon_sym_BANG] = ACTIONS(75), [anon_sym_TILDE] = ACTIONS(75), [anon_sym_PLUS_PLUS] = ACTIONS(75), @@ -41390,23 +41276,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), @@ -41432,7 +41318,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(1003), + [aux_sym_preproc_if_token1] = ACTIONS(1001), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -41449,114 +41335,114 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [67] = { - [sym_attribute_list] = STATE(3645), - [sym__attribute_list] = STATE(3580), - [sym_modifier] = STATE(3878), - [sym_parameter_list] = STATE(7311), - [sym_block] = STATE(2120), - [sym_variable_declaration] = STATE(7689), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(5160), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2204), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5867), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_statement] = STATE(2131), - [sym_break_statement] = STATE(2120), - [sym_checked_statement] = STATE(2120), - [sym_continue_statement] = STATE(2120), - [sym_do_statement] = STATE(2120), - [sym_empty_statement] = STATE(2120), - [sym_expression_statement] = STATE(2120), - [sym_fixed_statement] = STATE(2120), - [sym_for_statement] = STATE(2120), - [sym_return_statement] = STATE(2120), - [sym_lock_statement] = STATE(2120), - [sym_yield_statement] = STATE(2120), - [sym_switch_statement] = STATE(2120), - [sym_throw_statement] = STATE(2120), - [sym_try_statement] = STATE(2120), - [sym_unsafe_statement] = STATE(2120), - [sym_using_statement] = STATE(2120), - [sym_foreach_statement] = STATE(2120), - [sym__foreach_statement_initializer] = STATE(93), - [sym_goto_statement] = STATE(2120), - [sym_labeled_statement] = STATE(2120), - [sym_if_statement] = STATE(2120), - [sym_while_statement] = STATE(2120), - [sym_local_declaration_statement] = STATE(2120), - [sym_local_function_statement] = STATE(2120), - [sym__local_function_declaration] = STATE(6322), - [sym_expression] = STATE(5672), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3461), - [sym__expression_statement_expression] = STATE(5635), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3080), - [sym_postfix_unary_expression] = STATE(3111), - [sym_prefix_unary_expression] = STATE(3111), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6154), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3080), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3111), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3080), - [sym_member_access_expression] = STATE(2484), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3111), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7530), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(3080), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3080), - [sym_typeof_expression] = STATE(3080), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2484), - [sym_literal] = STATE(3080), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2282), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_top_level] = STATE(2120), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(3645), + [sym_attribute_list] = STATE(3612), + [sym__attribute_list] = STATE(3570), + [sym_modifier] = STATE(3845), + [sym_parameter_list] = STATE(7531), + [sym_block] = STATE(2026), + [sym_variable_declaration] = STATE(7610), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(5152), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2196), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5805), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_statement] = STATE(2038), + [sym_break_statement] = STATE(2026), + [sym_checked_statement] = STATE(2026), + [sym_continue_statement] = STATE(2026), + [sym_do_statement] = STATE(2026), + [sym_empty_statement] = STATE(2026), + [sym_expression_statement] = STATE(2026), + [sym_fixed_statement] = STATE(2026), + [sym_for_statement] = STATE(2026), + [sym_return_statement] = STATE(2026), + [sym_lock_statement] = STATE(2026), + [sym_yield_statement] = STATE(2026), + [sym_switch_statement] = STATE(2026), + [sym_throw_statement] = STATE(2026), + [sym_try_statement] = STATE(2026), + [sym_unsafe_statement] = STATE(2026), + [sym_using_statement] = STATE(2026), + [sym_foreach_statement] = STATE(2026), + [sym__foreach_statement_initializer] = STATE(90), + [sym_goto_statement] = STATE(2026), + [sym_labeled_statement] = STATE(2026), + [sym_if_statement] = STATE(2026), + [sym_while_statement] = STATE(2026), + [sym_local_declaration_statement] = STATE(2026), + [sym_local_function_statement] = STATE(2026), + [sym__local_function_declaration] = STATE(6290), + [sym_expression] = STATE(5660), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3356), + [sym__expression_statement_expression] = STATE(5708), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3102), + [sym_postfix_unary_expression] = STATE(3079), + [sym_prefix_unary_expression] = STATE(3079), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6134), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3102), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3079), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3102), + [sym_member_access_expression] = STATE(2472), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3079), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7425), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(3102), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3102), + [sym_typeof_expression] = STATE(3102), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2472), + [sym_literal] = STATE(3102), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2332), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_top_level] = STATE(2026), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(3612), [sym_preproc_region] = STATE(67), [sym_preproc_endregion] = STATE(67), [sym_preproc_line] = STATE(67), @@ -41566,44 +41452,44 @@ 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(2286), - [aux_sym__class_declaration_initializer_repeat2] = STATE(2529), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [aux_sym__class_declaration_initializer_repeat1] = STATE(2277), + [aux_sym__class_declaration_initializer_repeat2] = STATE(2535), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), - [anon_sym_extern] = ACTIONS(647), + [anon_sym_extern] = ACTIONS(645), [anon_sym_alias] = ACTIONS(29), - [anon_sym_SEMI] = ACTIONS(649), + [anon_sym_SEMI] = ACTIONS(31), [anon_sym_global] = ACTIONS(29), - [anon_sym_using] = ACTIONS(651), - [anon_sym_unsafe] = ACTIONS(653), - [anon_sym_static] = ACTIONS(655), - [anon_sym_LBRACK] = ACTIONS(657), + [anon_sym_using] = ACTIONS(987), + [anon_sym_unsafe] = ACTIONS(989), + [anon_sym_static] = ACTIONS(653), + [anon_sym_LBRACK] = ACTIONS(655), [anon_sym_LPAREN] = ACTIONS(43), - [anon_sym_return] = ACTIONS(659), - [anon_sym_ref] = ACTIONS(661), - [anon_sym_LBRACE] = ACTIONS(663), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_abstract] = ACTIONS(647), - [anon_sym_async] = ACTIONS(655), - [anon_sym_const] = ACTIONS(647), - [anon_sym_file] = ACTIONS(669), - [anon_sym_fixed] = ACTIONS(671), - [anon_sym_internal] = ACTIONS(647), - [anon_sym_new] = ACTIONS(673), - [anon_sym_override] = ACTIONS(647), - [anon_sym_partial] = ACTIONS(647), - [anon_sym_private] = ACTIONS(647), - [anon_sym_protected] = ACTIONS(647), - [anon_sym_public] = ACTIONS(647), - [anon_sym_readonly] = ACTIONS(647), - [anon_sym_required] = ACTIONS(647), - [anon_sym_sealed] = ACTIONS(647), - [anon_sym_virtual] = ACTIONS(647), - [anon_sym_volatile] = ACTIONS(647), - [anon_sym_where] = ACTIONS(29), - [anon_sym_notnull] = ACTIONS(29), - [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(675), + [anon_sym_return] = ACTIONS(45), + [anon_sym_ref] = ACTIONS(715), + [anon_sym_LBRACE] = ACTIONS(57), + [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(991), + [anon_sym_internal] = ACTIONS(645), + [anon_sym_new] = ACTIONS(675), + [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(73), [anon_sym_BANG] = ACTIONS(75), [anon_sym_TILDE] = ACTIONS(75), [anon_sym_PLUS_PLUS] = ACTIONS(75), @@ -41620,23 +41506,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(677), - [anon_sym_unchecked] = ACTIONS(675), - [anon_sym_continue] = ACTIONS(679), - [anon_sym_do] = ACTIONS(681), - [anon_sym_while] = ACTIONS(683), - [anon_sym_for] = ACTIONS(685), - [anon_sym_lock] = ACTIONS(687), - [anon_sym_yield] = ACTIONS(689), - [anon_sym_switch] = ACTIONS(691), + [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(695), - [anon_sym_try] = ACTIONS(697), + [anon_sym_throw] = ACTIONS(111), + [anon_sym_try] = ACTIONS(113), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(699), + [anon_sym_await] = ACTIONS(115), [anon_sym_foreach] = ACTIONS(117), - [anon_sym_goto] = ACTIONS(701), - [anon_sym_if] = ACTIONS(703), + [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), @@ -41662,7 +41548,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(705), + [aux_sym_preproc_if_token1] = ACTIONS(993), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -41679,114 +41565,114 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [68] = { - [sym_attribute_list] = STATE(3645), - [sym__attribute_list] = STATE(3580), - [sym_modifier] = STATE(3878), - [sym_parameter_list] = STATE(7311), - [sym_block] = STATE(2120), - [sym_variable_declaration] = STATE(7689), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(5160), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2204), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5867), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_statement] = STATE(2135), - [sym_break_statement] = STATE(2120), - [sym_checked_statement] = STATE(2120), - [sym_continue_statement] = STATE(2120), - [sym_do_statement] = STATE(2120), - [sym_empty_statement] = STATE(2120), - [sym_expression_statement] = STATE(2120), - [sym_fixed_statement] = STATE(2120), - [sym_for_statement] = STATE(2120), - [sym_return_statement] = STATE(2120), - [sym_lock_statement] = STATE(2120), - [sym_yield_statement] = STATE(2120), - [sym_switch_statement] = STATE(2120), - [sym_throw_statement] = STATE(2120), - [sym_try_statement] = STATE(2120), - [sym_unsafe_statement] = STATE(2120), - [sym_using_statement] = STATE(2120), - [sym_foreach_statement] = STATE(2120), + [sym_attribute_list] = STATE(3612), + [sym__attribute_list] = STATE(3570), + [sym_modifier] = STATE(3845), + [sym_parameter_list] = STATE(7531), + [sym_block] = STATE(2093), + [sym_variable_declaration] = STATE(7607), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(5152), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2196), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5805), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_statement] = STATE(2100), + [sym_break_statement] = STATE(2093), + [sym_checked_statement] = STATE(2093), + [sym_continue_statement] = STATE(2093), + [sym_do_statement] = STATE(2093), + [sym_empty_statement] = STATE(2093), + [sym_expression_statement] = STATE(2093), + [sym_fixed_statement] = STATE(2093), + [sym_for_statement] = STATE(2093), + [sym_return_statement] = STATE(2093), + [sym_lock_statement] = STATE(2093), + [sym_yield_statement] = STATE(2093), + [sym_switch_statement] = STATE(2093), + [sym_throw_statement] = STATE(2093), + [sym_try_statement] = STATE(2093), + [sym_unsafe_statement] = STATE(2093), + [sym_using_statement] = STATE(2093), + [sym_foreach_statement] = STATE(2093), [sym__foreach_statement_initializer] = STATE(93), - [sym_goto_statement] = STATE(2120), - [sym_labeled_statement] = STATE(2120), - [sym_if_statement] = STATE(2120), - [sym_while_statement] = STATE(2120), - [sym_local_declaration_statement] = STATE(2120), - [sym_local_function_statement] = STATE(2120), - [sym__local_function_declaration] = STATE(6322), - [sym_expression] = STATE(5672), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3461), - [sym__expression_statement_expression] = STATE(5635), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3080), - [sym_postfix_unary_expression] = STATE(3111), - [sym_prefix_unary_expression] = STATE(3111), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6154), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3080), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3111), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3080), - [sym_member_access_expression] = STATE(2484), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3111), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7530), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(3080), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3080), - [sym_typeof_expression] = STATE(3080), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2484), - [sym_literal] = STATE(3080), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2282), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_top_level] = STATE(2120), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(3645), + [sym_goto_statement] = STATE(2093), + [sym_labeled_statement] = STATE(2093), + [sym_if_statement] = STATE(2093), + [sym_while_statement] = STATE(2093), + [sym_local_declaration_statement] = STATE(2093), + [sym_local_function_statement] = STATE(2093), + [sym__local_function_declaration] = STATE(6310), + [sym_expression] = STATE(5660), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3356), + [sym__expression_statement_expression] = STATE(5554), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3102), + [sym_postfix_unary_expression] = STATE(3079), + [sym_prefix_unary_expression] = STATE(3079), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6134), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3102), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3079), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3102), + [sym_member_access_expression] = STATE(2472), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3079), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7425), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(3102), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3102), + [sym_typeof_expression] = STATE(3102), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2472), + [sym_literal] = STATE(3102), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2269), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_top_level] = STATE(2093), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(3612), [sym_preproc_region] = STATE(68), [sym_preproc_endregion] = STATE(68), [sym_preproc_line] = STATE(68), @@ -41796,44 +41682,44 @@ 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(2286), - [aux_sym__class_declaration_initializer_repeat2] = STATE(2529), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [aux_sym__class_declaration_initializer_repeat1] = STATE(2277), + [aux_sym__class_declaration_initializer_repeat2] = STATE(2540), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), - [anon_sym_extern] = ACTIONS(647), + [anon_sym_extern] = ACTIONS(645), [anon_sym_alias] = ACTIONS(29), - [anon_sym_SEMI] = ACTIONS(649), + [anon_sym_SEMI] = ACTIONS(647), [anon_sym_global] = ACTIONS(29), - [anon_sym_using] = ACTIONS(651), - [anon_sym_unsafe] = ACTIONS(653), - [anon_sym_static] = ACTIONS(655), - [anon_sym_LBRACK] = ACTIONS(657), + [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(659), - [anon_sym_ref] = ACTIONS(661), - [anon_sym_LBRACE] = ACTIONS(663), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_abstract] = ACTIONS(647), - [anon_sym_async] = ACTIONS(655), - [anon_sym_const] = ACTIONS(647), - [anon_sym_file] = ACTIONS(669), - [anon_sym_fixed] = ACTIONS(671), - [anon_sym_internal] = ACTIONS(647), - [anon_sym_new] = ACTIONS(673), - [anon_sym_override] = ACTIONS(647), - [anon_sym_partial] = ACTIONS(647), - [anon_sym_private] = ACTIONS(647), - [anon_sym_protected] = ACTIONS(647), - [anon_sym_public] = ACTIONS(647), - [anon_sym_readonly] = ACTIONS(647), - [anon_sym_required] = ACTIONS(647), - [anon_sym_sealed] = ACTIONS(647), - [anon_sym_virtual] = ACTIONS(647), - [anon_sym_volatile] = ACTIONS(647), - [anon_sym_where] = ACTIONS(29), - [anon_sym_notnull] = ACTIONS(29), - [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(675), + [anon_sym_return] = ACTIONS(661), + [anon_sym_ref] = ACTIONS(715), + [anon_sym_LBRACE] = ACTIONS(665), + [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(673), + [anon_sym_internal] = ACTIONS(645), + [anon_sym_new] = ACTIONS(675), + [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(677), [anon_sym_BANG] = ACTIONS(75), [anon_sym_TILDE] = ACTIONS(75), [anon_sym_PLUS_PLUS] = ACTIONS(75), @@ -41850,23 +41736,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(677), - [anon_sym_unchecked] = ACTIONS(675), - [anon_sym_continue] = ACTIONS(679), - [anon_sym_do] = ACTIONS(681), - [anon_sym_while] = ACTIONS(683), - [anon_sym_for] = ACTIONS(685), - [anon_sym_lock] = ACTIONS(687), - [anon_sym_yield] = ACTIONS(689), - [anon_sym_switch] = ACTIONS(691), + [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(695), - [anon_sym_try] = ACTIONS(697), + [anon_sym_throw] = ACTIONS(721), + [anon_sym_try] = ACTIONS(703), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(699), + [anon_sym_await] = ACTIONS(723), [anon_sym_foreach] = ACTIONS(117), - [anon_sym_goto] = ACTIONS(701), - [anon_sym_if] = ACTIONS(703), + [anon_sym_goto] = ACTIONS(707), + [anon_sym_if] = ACTIONS(709), [anon_sym_DOT_DOT] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), @@ -41892,7 +41778,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(705), + [aux_sym_preproc_if_token1] = ACTIONS(713), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -41909,114 +41795,114 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [69] = { - [sym_attribute_list] = STATE(3645), - [sym__attribute_list] = STATE(3580), - [sym_modifier] = STATE(3878), - [sym_parameter_list] = STATE(7311), - [sym_block] = STATE(2026), - [sym_variable_declaration] = STATE(7363), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(5160), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2204), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5867), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_statement] = STATE(2009), - [sym_break_statement] = STATE(2026), - [sym_checked_statement] = STATE(2026), - [sym_continue_statement] = STATE(2026), - [sym_do_statement] = STATE(2026), - [sym_empty_statement] = STATE(2026), - [sym_expression_statement] = STATE(2026), - [sym_fixed_statement] = STATE(2026), - [sym_for_statement] = STATE(2026), - [sym_return_statement] = STATE(2026), - [sym_lock_statement] = STATE(2026), - [sym_yield_statement] = STATE(2026), - [sym_switch_statement] = STATE(2026), - [sym_throw_statement] = STATE(2026), - [sym_try_statement] = STATE(2026), - [sym_unsafe_statement] = STATE(2026), - [sym_using_statement] = STATE(2026), - [sym_foreach_statement] = STATE(2026), - [sym__foreach_statement_initializer] = STATE(70), - [sym_goto_statement] = STATE(2026), - [sym_labeled_statement] = STATE(2026), - [sym_if_statement] = STATE(2026), - [sym_while_statement] = STATE(2026), - [sym_local_declaration_statement] = STATE(2026), - [sym_local_function_statement] = STATE(2026), - [sym__local_function_declaration] = STATE(6317), - [sym_expression] = STATE(5672), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3461), - [sym__expression_statement_expression] = STATE(5719), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3080), - [sym_postfix_unary_expression] = STATE(3111), - [sym_prefix_unary_expression] = STATE(3111), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6154), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3080), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3111), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3080), - [sym_member_access_expression] = STATE(2484), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3111), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7530), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(3080), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3080), - [sym_typeof_expression] = STATE(3080), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2484), - [sym_literal] = STATE(3080), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2348), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_top_level] = STATE(2026), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(3645), + [sym_attribute_list] = STATE(3612), + [sym__attribute_list] = STATE(3570), + [sym_modifier] = STATE(3845), + [sym_parameter_list] = STATE(7531), + [sym_block] = STATE(2093), + [sym_variable_declaration] = STATE(7607), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(5152), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2196), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5805), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_statement] = STATE(2094), + [sym_break_statement] = STATE(2093), + [sym_checked_statement] = STATE(2093), + [sym_continue_statement] = STATE(2093), + [sym_do_statement] = STATE(2093), + [sym_empty_statement] = STATE(2093), + [sym_expression_statement] = STATE(2093), + [sym_fixed_statement] = STATE(2093), + [sym_for_statement] = STATE(2093), + [sym_return_statement] = STATE(2093), + [sym_lock_statement] = STATE(2093), + [sym_yield_statement] = STATE(2093), + [sym_switch_statement] = STATE(2093), + [sym_throw_statement] = STATE(2093), + [sym_try_statement] = STATE(2093), + [sym_unsafe_statement] = STATE(2093), + [sym_using_statement] = STATE(2093), + [sym_foreach_statement] = STATE(2093), + [sym__foreach_statement_initializer] = STATE(93), + [sym_goto_statement] = STATE(2093), + [sym_labeled_statement] = STATE(2093), + [sym_if_statement] = STATE(2093), + [sym_while_statement] = STATE(2093), + [sym_local_declaration_statement] = STATE(2093), + [sym_local_function_statement] = STATE(2093), + [sym__local_function_declaration] = STATE(6310), + [sym_expression] = STATE(5660), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3356), + [sym__expression_statement_expression] = STATE(5554), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3102), + [sym_postfix_unary_expression] = STATE(3079), + [sym_prefix_unary_expression] = STATE(3079), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6134), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3102), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3079), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3102), + [sym_member_access_expression] = STATE(2472), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3079), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7425), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(3102), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3102), + [sym_typeof_expression] = STATE(3102), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2472), + [sym_literal] = STATE(3102), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2269), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_top_level] = STATE(2093), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(3612), [sym_preproc_region] = STATE(69), [sym_preproc_endregion] = STATE(69), [sym_preproc_line] = STATE(69), @@ -42026,44 +41912,44 @@ 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(2286), - [aux_sym__class_declaration_initializer_repeat2] = STATE(2539), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [aux_sym__class_declaration_initializer_repeat1] = STATE(2277), + [aux_sym__class_declaration_initializer_repeat2] = STATE(2540), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), - [anon_sym_extern] = ACTIONS(647), + [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(997), - [anon_sym_unsafe] = ACTIONS(999), - [anon_sym_static] = ACTIONS(655), - [anon_sym_LBRACK] = ACTIONS(657), + [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(661), - [anon_sym_LBRACE] = ACTIONS(57), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_abstract] = ACTIONS(647), - [anon_sym_async] = ACTIONS(655), - [anon_sym_const] = ACTIONS(647), - [anon_sym_file] = ACTIONS(669), - [anon_sym_fixed] = ACTIONS(1001), - [anon_sym_internal] = ACTIONS(647), - [anon_sym_new] = ACTIONS(673), - [anon_sym_override] = ACTIONS(647), - [anon_sym_partial] = ACTIONS(647), - [anon_sym_private] = ACTIONS(647), - [anon_sym_protected] = ACTIONS(647), - [anon_sym_public] = ACTIONS(647), - [anon_sym_readonly] = ACTIONS(647), - [anon_sym_required] = ACTIONS(647), - [anon_sym_sealed] = ACTIONS(647), - [anon_sym_virtual] = ACTIONS(647), - [anon_sym_volatile] = ACTIONS(647), - [anon_sym_where] = ACTIONS(29), - [anon_sym_notnull] = ACTIONS(29), - [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(73), + [anon_sym_return] = ACTIONS(661), + [anon_sym_ref] = ACTIONS(715), + [anon_sym_LBRACE] = ACTIONS(665), + [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(673), + [anon_sym_internal] = ACTIONS(645), + [anon_sym_new] = ACTIONS(675), + [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(677), [anon_sym_BANG] = ACTIONS(75), [anon_sym_TILDE] = ACTIONS(75), [anon_sym_PLUS_PLUS] = ACTIONS(75), @@ -42080,23 +41966,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(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(111), - [anon_sym_try] = ACTIONS(113), + [anon_sym_throw] = ACTIONS(721), + [anon_sym_try] = ACTIONS(703), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(115), + [anon_sym_await] = ACTIONS(723), [anon_sym_foreach] = ACTIONS(117), - [anon_sym_goto] = ACTIONS(119), - [anon_sym_if] = ACTIONS(121), + [anon_sym_goto] = ACTIONS(707), + [anon_sym_if] = ACTIONS(709), [anon_sym_DOT_DOT] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), @@ -42122,7 +42008,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(1003), + [aux_sym_preproc_if_token1] = ACTIONS(713), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -42139,30 +42025,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [70] = { - [sym_attribute_list] = STATE(3645), - [sym__attribute_list] = STATE(3580), - [sym_modifier] = STATE(3878), - [sym_parameter_list] = STATE(7311), + [sym_attribute_list] = STATE(3612), + [sym__attribute_list] = STATE(3570), + [sym_modifier] = STATE(3845), + [sym_parameter_list] = STATE(7531), [sym_block] = STATE(2026), - [sym_variable_declaration] = STATE(7363), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(5160), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2204), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5867), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_statement] = STATE(2032), + [sym_variable_declaration] = STATE(7610), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(5152), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2196), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5805), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_statement] = STATE(2043), [sym_break_statement] = STATE(2026), [sym_checked_statement] = STATE(2026), [sym_continue_statement] = STATE(2026), @@ -42180,73 +42066,73 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_unsafe_statement] = STATE(2026), [sym_using_statement] = STATE(2026), [sym_foreach_statement] = STATE(2026), - [sym__foreach_statement_initializer] = STATE(70), + [sym__foreach_statement_initializer] = STATE(90), [sym_goto_statement] = STATE(2026), [sym_labeled_statement] = STATE(2026), [sym_if_statement] = STATE(2026), [sym_while_statement] = STATE(2026), [sym_local_declaration_statement] = STATE(2026), [sym_local_function_statement] = STATE(2026), - [sym__local_function_declaration] = STATE(6317), - [sym_expression] = STATE(5672), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3461), - [sym__expression_statement_expression] = STATE(5719), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3080), - [sym_postfix_unary_expression] = STATE(3111), - [sym_prefix_unary_expression] = STATE(3111), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6154), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3080), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3111), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3080), - [sym_member_access_expression] = STATE(2484), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3111), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7530), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(3080), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3080), - [sym_typeof_expression] = STATE(3080), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2484), - [sym_literal] = STATE(3080), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2348), - [sym__reserved_identifier] = STATE(2175), + [sym__local_function_declaration] = STATE(6290), + [sym_expression] = STATE(5660), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3356), + [sym__expression_statement_expression] = STATE(5708), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3102), + [sym_postfix_unary_expression] = STATE(3079), + [sym_prefix_unary_expression] = STATE(3079), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6134), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3102), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3079), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3102), + [sym_member_access_expression] = STATE(2472), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3079), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7425), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(3102), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3102), + [sym_typeof_expression] = STATE(3102), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2472), + [sym_literal] = STATE(3102), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2332), + [sym__reserved_identifier] = STATE(2168), [sym_preproc_if_in_top_level] = STATE(2026), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(3645), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(3612), [sym_preproc_region] = STATE(70), [sym_preproc_endregion] = STATE(70), [sym_preproc_line] = STATE(70), @@ -42256,40 +42142,40 @@ 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(2286), - [aux_sym__class_declaration_initializer_repeat2] = STATE(2539), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [aux_sym__class_declaration_initializer_repeat1] = STATE(2277), + [aux_sym__class_declaration_initializer_repeat2] = STATE(2535), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), - [anon_sym_extern] = ACTIONS(647), + [anon_sym_extern] = ACTIONS(645), [anon_sym_alias] = ACTIONS(29), [anon_sym_SEMI] = ACTIONS(31), [anon_sym_global] = ACTIONS(29), - [anon_sym_using] = ACTIONS(997), - [anon_sym_unsafe] = ACTIONS(999), - [anon_sym_static] = ACTIONS(655), - [anon_sym_LBRACK] = ACTIONS(657), + [anon_sym_using] = ACTIONS(987), + [anon_sym_unsafe] = ACTIONS(989), + [anon_sym_static] = ACTIONS(653), + [anon_sym_LBRACK] = ACTIONS(655), [anon_sym_LPAREN] = ACTIONS(43), [anon_sym_return] = ACTIONS(45), - [anon_sym_ref] = ACTIONS(661), + [anon_sym_ref] = ACTIONS(715), [anon_sym_LBRACE] = ACTIONS(57), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_abstract] = ACTIONS(647), - [anon_sym_async] = ACTIONS(655), - [anon_sym_const] = ACTIONS(647), - [anon_sym_file] = ACTIONS(669), - [anon_sym_fixed] = ACTIONS(1001), - [anon_sym_internal] = ACTIONS(647), - [anon_sym_new] = ACTIONS(673), - [anon_sym_override] = ACTIONS(647), - [anon_sym_partial] = ACTIONS(647), - [anon_sym_private] = ACTIONS(647), - [anon_sym_protected] = ACTIONS(647), - [anon_sym_public] = ACTIONS(647), - [anon_sym_readonly] = ACTIONS(647), - [anon_sym_required] = ACTIONS(647), - [anon_sym_sealed] = ACTIONS(647), - [anon_sym_virtual] = ACTIONS(647), - [anon_sym_volatile] = ACTIONS(647), + [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(991), + [anon_sym_internal] = ACTIONS(645), + [anon_sym_new] = ACTIONS(675), + [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), @@ -42352,7 +42238,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(1003), + [aux_sym_preproc_if_token1] = ACTIONS(993), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -42369,114 +42255,114 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [71] = { - [sym_attribute_list] = STATE(3645), - [sym__attribute_list] = STATE(3580), - [sym_modifier] = STATE(3878), - [sym_parameter_list] = STATE(7311), - [sym_block] = STATE(7054), - [sym_variable_declaration] = STATE(7367), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(5160), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2204), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5867), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_statement] = STATE(7534), - [sym_break_statement] = STATE(7054), - [sym_checked_statement] = STATE(7054), - [sym_continue_statement] = STATE(7054), - [sym_do_statement] = STATE(7054), - [sym_empty_statement] = STATE(7054), - [sym_expression_statement] = STATE(7054), - [sym_fixed_statement] = STATE(7054), - [sym_for_statement] = STATE(7054), - [sym_return_statement] = STATE(7054), - [sym_lock_statement] = STATE(7054), - [sym_yield_statement] = STATE(7054), - [sym_switch_statement] = STATE(7054), - [sym_throw_statement] = STATE(7054), - [sym_try_statement] = STATE(7054), - [sym_unsafe_statement] = STATE(7054), - [sym_using_statement] = STATE(7054), - [sym_foreach_statement] = STATE(7054), - [sym__foreach_statement_initializer] = STATE(75), - [sym_goto_statement] = STATE(7054), - [sym_labeled_statement] = STATE(7054), - [sym_if_statement] = STATE(7054), - [sym_while_statement] = STATE(7054), - [sym_local_declaration_statement] = STATE(7054), - [sym_local_function_statement] = STATE(7054), - [sym__local_function_declaration] = STATE(6293), - [sym_expression] = STATE(5672), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3461), - [sym__expression_statement_expression] = STATE(5729), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3080), - [sym_postfix_unary_expression] = STATE(3111), - [sym_prefix_unary_expression] = STATE(3111), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6154), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3080), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3111), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3080), - [sym_member_access_expression] = STATE(2484), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3111), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7530), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(3080), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3080), - [sym_typeof_expression] = STATE(3080), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2484), - [sym_literal] = STATE(3080), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2333), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_top_level] = STATE(7054), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(3645), + [sym_attribute_list] = STATE(3612), + [sym__attribute_list] = STATE(3570), + [sym_modifier] = STATE(3845), + [sym_parameter_list] = STATE(7531), + [sym_block] = STATE(2093), + [sym_variable_declaration] = STATE(7607), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(5152), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2196), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5805), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_statement] = STATE(2114), + [sym_break_statement] = STATE(2093), + [sym_checked_statement] = STATE(2093), + [sym_continue_statement] = STATE(2093), + [sym_do_statement] = STATE(2093), + [sym_empty_statement] = STATE(2093), + [sym_expression_statement] = STATE(2093), + [sym_fixed_statement] = STATE(2093), + [sym_for_statement] = STATE(2093), + [sym_return_statement] = STATE(2093), + [sym_lock_statement] = STATE(2093), + [sym_yield_statement] = STATE(2093), + [sym_switch_statement] = STATE(2093), + [sym_throw_statement] = STATE(2093), + [sym_try_statement] = STATE(2093), + [sym_unsafe_statement] = STATE(2093), + [sym_using_statement] = STATE(2093), + [sym_foreach_statement] = STATE(2093), + [sym__foreach_statement_initializer] = STATE(93), + [sym_goto_statement] = STATE(2093), + [sym_labeled_statement] = STATE(2093), + [sym_if_statement] = STATE(2093), + [sym_while_statement] = STATE(2093), + [sym_local_declaration_statement] = STATE(2093), + [sym_local_function_statement] = STATE(2093), + [sym__local_function_declaration] = STATE(6310), + [sym_expression] = STATE(5660), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3356), + [sym__expression_statement_expression] = STATE(5554), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3102), + [sym_postfix_unary_expression] = STATE(3079), + [sym_prefix_unary_expression] = STATE(3079), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6134), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3102), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3079), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3102), + [sym_member_access_expression] = STATE(2472), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3079), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7425), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(3102), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3102), + [sym_typeof_expression] = STATE(3102), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2472), + [sym_literal] = STATE(3102), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2269), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_top_level] = STATE(2093), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(3612), [sym_preproc_region] = STATE(71), [sym_preproc_endregion] = STATE(71), [sym_preproc_line] = STATE(71), @@ -42486,44 +42372,44 @@ 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(2286), - [aux_sym__class_declaration_initializer_repeat2] = STATE(2536), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [aux_sym__class_declaration_initializer_repeat1] = STATE(2277), + [aux_sym__class_declaration_initializer_repeat2] = STATE(2540), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), - [anon_sym_extern] = ACTIONS(647), + [anon_sym_extern] = ACTIONS(645), [anon_sym_alias] = ACTIONS(29), - [anon_sym_SEMI] = ACTIONS(1005), + [anon_sym_SEMI] = ACTIONS(647), [anon_sym_global] = ACTIONS(29), - [anon_sym_using] = ACTIONS(1007), - [anon_sym_unsafe] = ACTIONS(1009), - [anon_sym_static] = ACTIONS(655), - [anon_sym_LBRACK] = ACTIONS(657), + [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(1011), - [anon_sym_ref] = ACTIONS(661), - [anon_sym_LBRACE] = ACTIONS(1013), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_abstract] = ACTIONS(647), - [anon_sym_async] = ACTIONS(655), - [anon_sym_const] = ACTIONS(647), - [anon_sym_file] = ACTIONS(669), - [anon_sym_fixed] = ACTIONS(1015), - [anon_sym_internal] = ACTIONS(647), - [anon_sym_new] = ACTIONS(673), - [anon_sym_override] = ACTIONS(647), - [anon_sym_partial] = ACTIONS(647), - [anon_sym_private] = ACTIONS(647), - [anon_sym_protected] = ACTIONS(647), - [anon_sym_public] = ACTIONS(647), - [anon_sym_readonly] = ACTIONS(647), - [anon_sym_required] = ACTIONS(647), - [anon_sym_sealed] = ACTIONS(647), - [anon_sym_virtual] = ACTIONS(647), - [anon_sym_volatile] = ACTIONS(647), - [anon_sym_where] = ACTIONS(29), - [anon_sym_notnull] = ACTIONS(29), - [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1017), + [anon_sym_return] = ACTIONS(661), + [anon_sym_ref] = ACTIONS(715), + [anon_sym_LBRACE] = ACTIONS(665), + [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(673), + [anon_sym_internal] = ACTIONS(645), + [anon_sym_new] = ACTIONS(675), + [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(677), [anon_sym_BANG] = ACTIONS(75), [anon_sym_TILDE] = ACTIONS(75), [anon_sym_PLUS_PLUS] = ACTIONS(75), @@ -42540,23 +42426,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(1019), - [anon_sym_unchecked] = ACTIONS(1017), - [anon_sym_continue] = ACTIONS(1021), - [anon_sym_do] = ACTIONS(1023), - [anon_sym_while] = ACTIONS(1025), - [anon_sym_for] = ACTIONS(1027), - [anon_sym_lock] = ACTIONS(1029), - [anon_sym_yield] = ACTIONS(1031), - [anon_sym_switch] = ACTIONS(1033), + [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(1035), - [anon_sym_try] = ACTIONS(1037), + [anon_sym_throw] = ACTIONS(721), + [anon_sym_try] = ACTIONS(703), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1039), + [anon_sym_await] = ACTIONS(723), [anon_sym_foreach] = ACTIONS(117), - [anon_sym_goto] = ACTIONS(1041), - [anon_sym_if] = ACTIONS(1043), + [anon_sym_goto] = ACTIONS(707), + [anon_sym_if] = ACTIONS(709), [anon_sym_DOT_DOT] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), @@ -42582,7 +42468,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(1045), + [aux_sym_preproc_if_token1] = ACTIONS(713), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -42599,114 +42485,114 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [72] = { - [sym_attribute_list] = STATE(3645), - [sym__attribute_list] = STATE(3580), - [sym_modifier] = STATE(3878), - [sym_parameter_list] = STATE(7311), - [sym_block] = STATE(2120), - [sym_variable_declaration] = STATE(7689), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(5160), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2204), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5867), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_statement] = STATE(2117), - [sym_break_statement] = STATE(2120), - [sym_checked_statement] = STATE(2120), - [sym_continue_statement] = STATE(2120), - [sym_do_statement] = STATE(2120), - [sym_empty_statement] = STATE(2120), - [sym_expression_statement] = STATE(2120), - [sym_fixed_statement] = STATE(2120), - [sym_for_statement] = STATE(2120), - [sym_return_statement] = STATE(2120), - [sym_lock_statement] = STATE(2120), - [sym_yield_statement] = STATE(2120), - [sym_switch_statement] = STATE(2120), - [sym_throw_statement] = STATE(2120), - [sym_try_statement] = STATE(2120), - [sym_unsafe_statement] = STATE(2120), - [sym_using_statement] = STATE(2120), - [sym_foreach_statement] = STATE(2120), + [sym_attribute_list] = STATE(3612), + [sym__attribute_list] = STATE(3570), + [sym_modifier] = STATE(3845), + [sym_parameter_list] = STATE(7531), + [sym_block] = STATE(2093), + [sym_variable_declaration] = STATE(7607), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(5152), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2196), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5805), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_statement] = STATE(2109), + [sym_break_statement] = STATE(2093), + [sym_checked_statement] = STATE(2093), + [sym_continue_statement] = STATE(2093), + [sym_do_statement] = STATE(2093), + [sym_empty_statement] = STATE(2093), + [sym_expression_statement] = STATE(2093), + [sym_fixed_statement] = STATE(2093), + [sym_for_statement] = STATE(2093), + [sym_return_statement] = STATE(2093), + [sym_lock_statement] = STATE(2093), + [sym_yield_statement] = STATE(2093), + [sym_switch_statement] = STATE(2093), + [sym_throw_statement] = STATE(2093), + [sym_try_statement] = STATE(2093), + [sym_unsafe_statement] = STATE(2093), + [sym_using_statement] = STATE(2093), + [sym_foreach_statement] = STATE(2093), [sym__foreach_statement_initializer] = STATE(93), - [sym_goto_statement] = STATE(2120), - [sym_labeled_statement] = STATE(2120), - [sym_if_statement] = STATE(2120), - [sym_while_statement] = STATE(2120), - [sym_local_declaration_statement] = STATE(2120), - [sym_local_function_statement] = STATE(2120), - [sym__local_function_declaration] = STATE(6322), - [sym_expression] = STATE(5672), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3461), - [sym__expression_statement_expression] = STATE(5635), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3080), - [sym_postfix_unary_expression] = STATE(3111), - [sym_prefix_unary_expression] = STATE(3111), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6154), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3080), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3111), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3080), - [sym_member_access_expression] = STATE(2484), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3111), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7530), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(3080), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3080), - [sym_typeof_expression] = STATE(3080), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2484), - [sym_literal] = STATE(3080), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2282), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_top_level] = STATE(2120), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(3645), + [sym_goto_statement] = STATE(2093), + [sym_labeled_statement] = STATE(2093), + [sym_if_statement] = STATE(2093), + [sym_while_statement] = STATE(2093), + [sym_local_declaration_statement] = STATE(2093), + [sym_local_function_statement] = STATE(2093), + [sym__local_function_declaration] = STATE(6310), + [sym_expression] = STATE(5660), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3356), + [sym__expression_statement_expression] = STATE(5554), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3102), + [sym_postfix_unary_expression] = STATE(3079), + [sym_prefix_unary_expression] = STATE(3079), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6134), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3102), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3079), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3102), + [sym_member_access_expression] = STATE(2472), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3079), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7425), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(3102), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3102), + [sym_typeof_expression] = STATE(3102), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2472), + [sym_literal] = STATE(3102), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2269), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_top_level] = STATE(2093), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(3612), [sym_preproc_region] = STATE(72), [sym_preproc_endregion] = STATE(72), [sym_preproc_line] = STATE(72), @@ -42716,44 +42602,44 @@ 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(2286), - [aux_sym__class_declaration_initializer_repeat2] = STATE(2529), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [aux_sym__class_declaration_initializer_repeat1] = STATE(2277), + [aux_sym__class_declaration_initializer_repeat2] = STATE(2540), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), - [anon_sym_extern] = ACTIONS(647), + [anon_sym_extern] = ACTIONS(645), [anon_sym_alias] = ACTIONS(29), - [anon_sym_SEMI] = ACTIONS(649), + [anon_sym_SEMI] = ACTIONS(647), [anon_sym_global] = ACTIONS(29), - [anon_sym_using] = ACTIONS(651), - [anon_sym_unsafe] = ACTIONS(653), - [anon_sym_static] = ACTIONS(655), - [anon_sym_LBRACK] = ACTIONS(657), + [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(659), - [anon_sym_ref] = ACTIONS(661), - [anon_sym_LBRACE] = ACTIONS(663), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_abstract] = ACTIONS(647), - [anon_sym_async] = ACTIONS(655), - [anon_sym_const] = ACTIONS(647), - [anon_sym_file] = ACTIONS(669), - [anon_sym_fixed] = ACTIONS(671), - [anon_sym_internal] = ACTIONS(647), - [anon_sym_new] = ACTIONS(673), - [anon_sym_override] = ACTIONS(647), - [anon_sym_partial] = ACTIONS(647), - [anon_sym_private] = ACTIONS(647), - [anon_sym_protected] = ACTIONS(647), - [anon_sym_public] = ACTIONS(647), - [anon_sym_readonly] = ACTIONS(647), - [anon_sym_required] = ACTIONS(647), - [anon_sym_sealed] = ACTIONS(647), - [anon_sym_virtual] = ACTIONS(647), - [anon_sym_volatile] = ACTIONS(647), - [anon_sym_where] = ACTIONS(29), - [anon_sym_notnull] = ACTIONS(29), - [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(675), + [anon_sym_return] = ACTIONS(661), + [anon_sym_ref] = ACTIONS(715), + [anon_sym_LBRACE] = ACTIONS(665), + [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(673), + [anon_sym_internal] = ACTIONS(645), + [anon_sym_new] = ACTIONS(675), + [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(677), [anon_sym_BANG] = ACTIONS(75), [anon_sym_TILDE] = ACTIONS(75), [anon_sym_PLUS_PLUS] = ACTIONS(75), @@ -42770,23 +42656,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(677), - [anon_sym_unchecked] = ACTIONS(675), - [anon_sym_continue] = ACTIONS(679), - [anon_sym_do] = ACTIONS(681), - [anon_sym_while] = ACTIONS(683), - [anon_sym_for] = ACTIONS(685), - [anon_sym_lock] = ACTIONS(687), - [anon_sym_yield] = ACTIONS(689), - [anon_sym_switch] = ACTIONS(691), + [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(695), - [anon_sym_try] = ACTIONS(697), + [anon_sym_throw] = ACTIONS(721), + [anon_sym_try] = ACTIONS(703), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(699), + [anon_sym_await] = ACTIONS(723), [anon_sym_foreach] = ACTIONS(117), - [anon_sym_goto] = ACTIONS(701), - [anon_sym_if] = ACTIONS(703), + [anon_sym_goto] = ACTIONS(707), + [anon_sym_if] = ACTIONS(709), [anon_sym_DOT_DOT] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), @@ -42812,7 +42698,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(705), + [aux_sym_preproc_if_token1] = ACTIONS(713), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -42829,114 +42715,114 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [73] = { - [sym_attribute_list] = STATE(3645), - [sym__attribute_list] = STATE(3580), - [sym_modifier] = STATE(3878), - [sym_parameter_list] = STATE(7311), - [sym_block] = STATE(2026), - [sym_variable_declaration] = STATE(7363), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(5160), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2204), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5867), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_statement] = STATE(2036), - [sym_break_statement] = STATE(2026), - [sym_checked_statement] = STATE(2026), - [sym_continue_statement] = STATE(2026), - [sym_do_statement] = STATE(2026), - [sym_empty_statement] = STATE(2026), - [sym_expression_statement] = STATE(2026), - [sym_fixed_statement] = STATE(2026), - [sym_for_statement] = STATE(2026), - [sym_return_statement] = STATE(2026), - [sym_lock_statement] = STATE(2026), - [sym_yield_statement] = STATE(2026), - [sym_switch_statement] = STATE(2026), - [sym_throw_statement] = STATE(2026), - [sym_try_statement] = STATE(2026), - [sym_unsafe_statement] = STATE(2026), - [sym_using_statement] = STATE(2026), - [sym_foreach_statement] = STATE(2026), - [sym__foreach_statement_initializer] = STATE(70), - [sym_goto_statement] = STATE(2026), - [sym_labeled_statement] = STATE(2026), - [sym_if_statement] = STATE(2026), - [sym_while_statement] = STATE(2026), - [sym_local_declaration_statement] = STATE(2026), - [sym_local_function_statement] = STATE(2026), - [sym__local_function_declaration] = STATE(6317), - [sym_expression] = STATE(5672), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3461), - [sym__expression_statement_expression] = STATE(5719), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3080), - [sym_postfix_unary_expression] = STATE(3111), - [sym_prefix_unary_expression] = STATE(3111), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6154), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3080), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3111), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3080), - [sym_member_access_expression] = STATE(2484), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3111), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7530), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(3080), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3080), - [sym_typeof_expression] = STATE(3080), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2484), - [sym_literal] = STATE(3080), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2348), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_top_level] = STATE(2026), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(3645), + [sym_attribute_list] = STATE(3612), + [sym__attribute_list] = STATE(3570), + [sym_modifier] = STATE(3845), + [sym_parameter_list] = STATE(7531), + [sym_block] = STATE(2093), + [sym_variable_declaration] = STATE(7607), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(5152), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2196), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5805), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_statement] = STATE(2092), + [sym_break_statement] = STATE(2093), + [sym_checked_statement] = STATE(2093), + [sym_continue_statement] = STATE(2093), + [sym_do_statement] = STATE(2093), + [sym_empty_statement] = STATE(2093), + [sym_expression_statement] = STATE(2093), + [sym_fixed_statement] = STATE(2093), + [sym_for_statement] = STATE(2093), + [sym_return_statement] = STATE(2093), + [sym_lock_statement] = STATE(2093), + [sym_yield_statement] = STATE(2093), + [sym_switch_statement] = STATE(2093), + [sym_throw_statement] = STATE(2093), + [sym_try_statement] = STATE(2093), + [sym_unsafe_statement] = STATE(2093), + [sym_using_statement] = STATE(2093), + [sym_foreach_statement] = STATE(2093), + [sym__foreach_statement_initializer] = STATE(93), + [sym_goto_statement] = STATE(2093), + [sym_labeled_statement] = STATE(2093), + [sym_if_statement] = STATE(2093), + [sym_while_statement] = STATE(2093), + [sym_local_declaration_statement] = STATE(2093), + [sym_local_function_statement] = STATE(2093), + [sym__local_function_declaration] = STATE(6310), + [sym_expression] = STATE(5660), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3356), + [sym__expression_statement_expression] = STATE(5554), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3102), + [sym_postfix_unary_expression] = STATE(3079), + [sym_prefix_unary_expression] = STATE(3079), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6134), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3102), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3079), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3102), + [sym_member_access_expression] = STATE(2472), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3079), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7425), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(3102), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3102), + [sym_typeof_expression] = STATE(3102), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2472), + [sym_literal] = STATE(3102), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2269), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_top_level] = STATE(2093), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(3612), [sym_preproc_region] = STATE(73), [sym_preproc_endregion] = STATE(73), [sym_preproc_line] = STATE(73), @@ -42946,44 +42832,44 @@ 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(2286), - [aux_sym__class_declaration_initializer_repeat2] = STATE(2539), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [aux_sym__class_declaration_initializer_repeat1] = STATE(2277), + [aux_sym__class_declaration_initializer_repeat2] = STATE(2540), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), - [anon_sym_extern] = ACTIONS(647), + [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(997), - [anon_sym_unsafe] = ACTIONS(999), - [anon_sym_static] = ACTIONS(655), - [anon_sym_LBRACK] = ACTIONS(657), + [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(661), - [anon_sym_LBRACE] = ACTIONS(57), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_abstract] = ACTIONS(647), - [anon_sym_async] = ACTIONS(655), - [anon_sym_const] = ACTIONS(647), - [anon_sym_file] = ACTIONS(669), - [anon_sym_fixed] = ACTIONS(1001), - [anon_sym_internal] = ACTIONS(647), - [anon_sym_new] = ACTIONS(673), - [anon_sym_override] = ACTIONS(647), - [anon_sym_partial] = ACTIONS(647), - [anon_sym_private] = ACTIONS(647), - [anon_sym_protected] = ACTIONS(647), - [anon_sym_public] = ACTIONS(647), - [anon_sym_readonly] = ACTIONS(647), - [anon_sym_required] = ACTIONS(647), - [anon_sym_sealed] = ACTIONS(647), - [anon_sym_virtual] = ACTIONS(647), - [anon_sym_volatile] = ACTIONS(647), - [anon_sym_where] = ACTIONS(29), - [anon_sym_notnull] = ACTIONS(29), - [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(73), + [anon_sym_return] = ACTIONS(661), + [anon_sym_ref] = ACTIONS(715), + [anon_sym_LBRACE] = ACTIONS(665), + [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(673), + [anon_sym_internal] = ACTIONS(645), + [anon_sym_new] = ACTIONS(675), + [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(677), [anon_sym_BANG] = ACTIONS(75), [anon_sym_TILDE] = ACTIONS(75), [anon_sym_PLUS_PLUS] = ACTIONS(75), @@ -43000,23 +42886,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(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(111), - [anon_sym_try] = ACTIONS(113), + [anon_sym_throw] = ACTIONS(721), + [anon_sym_try] = ACTIONS(703), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(115), + [anon_sym_await] = ACTIONS(723), [anon_sym_foreach] = ACTIONS(117), - [anon_sym_goto] = ACTIONS(119), - [anon_sym_if] = ACTIONS(121), + [anon_sym_goto] = ACTIONS(707), + [anon_sym_if] = ACTIONS(709), [anon_sym_DOT_DOT] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), @@ -43042,7 +42928,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(1003), + [aux_sym_preproc_if_token1] = ACTIONS(713), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -43059,114 +42945,114 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [74] = { - [sym_attribute_list] = STATE(3645), - [sym__attribute_list] = STATE(3580), - [sym_modifier] = STATE(3878), - [sym_parameter_list] = STATE(7311), - [sym_block] = STATE(2026), - [sym_variable_declaration] = STATE(7363), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(5160), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2204), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5867), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_statement] = STATE(2038), - [sym_break_statement] = STATE(2026), - [sym_checked_statement] = STATE(2026), - [sym_continue_statement] = STATE(2026), - [sym_do_statement] = STATE(2026), - [sym_empty_statement] = STATE(2026), - [sym_expression_statement] = STATE(2026), - [sym_fixed_statement] = STATE(2026), - [sym_for_statement] = STATE(2026), - [sym_return_statement] = STATE(2026), - [sym_lock_statement] = STATE(2026), - [sym_yield_statement] = STATE(2026), - [sym_switch_statement] = STATE(2026), - [sym_throw_statement] = STATE(2026), - [sym_try_statement] = STATE(2026), - [sym_unsafe_statement] = STATE(2026), - [sym_using_statement] = STATE(2026), - [sym_foreach_statement] = STATE(2026), - [sym__foreach_statement_initializer] = STATE(70), - [sym_goto_statement] = STATE(2026), - [sym_labeled_statement] = STATE(2026), - [sym_if_statement] = STATE(2026), - [sym_while_statement] = STATE(2026), - [sym_local_declaration_statement] = STATE(2026), - [sym_local_function_statement] = STATE(2026), - [sym__local_function_declaration] = STATE(6317), - [sym_expression] = STATE(5672), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3461), - [sym__expression_statement_expression] = STATE(5719), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3080), - [sym_postfix_unary_expression] = STATE(3111), - [sym_prefix_unary_expression] = STATE(3111), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6154), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3080), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3111), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3080), - [sym_member_access_expression] = STATE(2484), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3111), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7530), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(3080), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3080), - [sym_typeof_expression] = STATE(3080), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2484), - [sym_literal] = STATE(3080), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2348), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_top_level] = STATE(2026), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(3645), + [sym_attribute_list] = STATE(3612), + [sym__attribute_list] = STATE(3570), + [sym_modifier] = STATE(3845), + [sym_parameter_list] = STATE(7531), + [sym_block] = STATE(2093), + [sym_variable_declaration] = STATE(7607), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(5152), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2196), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5805), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_statement] = STATE(2097), + [sym_break_statement] = STATE(2093), + [sym_checked_statement] = STATE(2093), + [sym_continue_statement] = STATE(2093), + [sym_do_statement] = STATE(2093), + [sym_empty_statement] = STATE(2093), + [sym_expression_statement] = STATE(2093), + [sym_fixed_statement] = STATE(2093), + [sym_for_statement] = STATE(2093), + [sym_return_statement] = STATE(2093), + [sym_lock_statement] = STATE(2093), + [sym_yield_statement] = STATE(2093), + [sym_switch_statement] = STATE(2093), + [sym_throw_statement] = STATE(2093), + [sym_try_statement] = STATE(2093), + [sym_unsafe_statement] = STATE(2093), + [sym_using_statement] = STATE(2093), + [sym_foreach_statement] = STATE(2093), + [sym__foreach_statement_initializer] = STATE(93), + [sym_goto_statement] = STATE(2093), + [sym_labeled_statement] = STATE(2093), + [sym_if_statement] = STATE(2093), + [sym_while_statement] = STATE(2093), + [sym_local_declaration_statement] = STATE(2093), + [sym_local_function_statement] = STATE(2093), + [sym__local_function_declaration] = STATE(6310), + [sym_expression] = STATE(5660), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3356), + [sym__expression_statement_expression] = STATE(5554), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3102), + [sym_postfix_unary_expression] = STATE(3079), + [sym_prefix_unary_expression] = STATE(3079), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6134), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3102), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3079), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3102), + [sym_member_access_expression] = STATE(2472), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3079), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7425), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(3102), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3102), + [sym_typeof_expression] = STATE(3102), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2472), + [sym_literal] = STATE(3102), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2269), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_top_level] = STATE(2093), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(3612), [sym_preproc_region] = STATE(74), [sym_preproc_endregion] = STATE(74), [sym_preproc_line] = STATE(74), @@ -43176,44 +43062,44 @@ 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(2286), - [aux_sym__class_declaration_initializer_repeat2] = STATE(2539), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [aux_sym__class_declaration_initializer_repeat1] = STATE(2277), + [aux_sym__class_declaration_initializer_repeat2] = STATE(2540), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), - [anon_sym_extern] = ACTIONS(647), + [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(997), - [anon_sym_unsafe] = ACTIONS(999), - [anon_sym_static] = ACTIONS(655), - [anon_sym_LBRACK] = ACTIONS(657), + [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(661), - [anon_sym_LBRACE] = ACTIONS(57), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_abstract] = ACTIONS(647), - [anon_sym_async] = ACTIONS(655), - [anon_sym_const] = ACTIONS(647), - [anon_sym_file] = ACTIONS(669), - [anon_sym_fixed] = ACTIONS(1001), - [anon_sym_internal] = ACTIONS(647), - [anon_sym_new] = ACTIONS(673), - [anon_sym_override] = ACTIONS(647), - [anon_sym_partial] = ACTIONS(647), - [anon_sym_private] = ACTIONS(647), - [anon_sym_protected] = ACTIONS(647), - [anon_sym_public] = ACTIONS(647), - [anon_sym_readonly] = ACTIONS(647), - [anon_sym_required] = ACTIONS(647), - [anon_sym_sealed] = ACTIONS(647), - [anon_sym_virtual] = ACTIONS(647), - [anon_sym_volatile] = ACTIONS(647), - [anon_sym_where] = ACTIONS(29), - [anon_sym_notnull] = ACTIONS(29), - [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(73), + [anon_sym_return] = ACTIONS(661), + [anon_sym_ref] = ACTIONS(715), + [anon_sym_LBRACE] = ACTIONS(665), + [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(673), + [anon_sym_internal] = ACTIONS(645), + [anon_sym_new] = ACTIONS(675), + [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(677), [anon_sym_BANG] = ACTIONS(75), [anon_sym_TILDE] = ACTIONS(75), [anon_sym_PLUS_PLUS] = ACTIONS(75), @@ -43230,23 +43116,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(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(111), - [anon_sym_try] = ACTIONS(113), + [anon_sym_throw] = ACTIONS(721), + [anon_sym_try] = ACTIONS(703), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(115), + [anon_sym_await] = ACTIONS(723), [anon_sym_foreach] = ACTIONS(117), - [anon_sym_goto] = ACTIONS(119), - [anon_sym_if] = ACTIONS(121), + [anon_sym_goto] = ACTIONS(707), + [anon_sym_if] = ACTIONS(709), [anon_sym_DOT_DOT] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), @@ -43272,7 +43158,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(1003), + [aux_sym_preproc_if_token1] = ACTIONS(713), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -43289,114 +43175,114 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [75] = { - [sym_attribute_list] = STATE(3645), - [sym__attribute_list] = STATE(3580), - [sym_modifier] = STATE(3878), - [sym_parameter_list] = STATE(7311), - [sym_block] = STATE(7054), - [sym_variable_declaration] = STATE(7367), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(5160), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2204), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5867), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_statement] = STATE(7118), - [sym_break_statement] = STATE(7054), - [sym_checked_statement] = STATE(7054), - [sym_continue_statement] = STATE(7054), - [sym_do_statement] = STATE(7054), - [sym_empty_statement] = STATE(7054), - [sym_expression_statement] = STATE(7054), - [sym_fixed_statement] = STATE(7054), - [sym_for_statement] = STATE(7054), - [sym_return_statement] = STATE(7054), - [sym_lock_statement] = STATE(7054), - [sym_yield_statement] = STATE(7054), - [sym_switch_statement] = STATE(7054), - [sym_throw_statement] = STATE(7054), - [sym_try_statement] = STATE(7054), - [sym_unsafe_statement] = STATE(7054), - [sym_using_statement] = STATE(7054), - [sym_foreach_statement] = STATE(7054), - [sym__foreach_statement_initializer] = STATE(75), - [sym_goto_statement] = STATE(7054), - [sym_labeled_statement] = STATE(7054), - [sym_if_statement] = STATE(7054), - [sym_while_statement] = STATE(7054), - [sym_local_declaration_statement] = STATE(7054), - [sym_local_function_statement] = STATE(7054), - [sym__local_function_declaration] = STATE(6293), - [sym_expression] = STATE(5672), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3461), - [sym__expression_statement_expression] = STATE(5729), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3080), - [sym_postfix_unary_expression] = STATE(3111), - [sym_prefix_unary_expression] = STATE(3111), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6154), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3080), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3111), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3080), - [sym_member_access_expression] = STATE(2484), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3111), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7530), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(3080), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3080), - [sym_typeof_expression] = STATE(3080), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2484), - [sym_literal] = STATE(3080), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2333), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_top_level] = STATE(7054), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(3645), + [sym_attribute_list] = STATE(3612), + [sym__attribute_list] = STATE(3570), + [sym_modifier] = STATE(3845), + [sym_parameter_list] = STATE(7531), + [sym_block] = STATE(7039), + [sym_variable_declaration] = STATE(7397), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(5152), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2196), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5805), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_statement] = STATE(7709), + [sym_break_statement] = STATE(7039), + [sym_checked_statement] = STATE(7039), + [sym_continue_statement] = STATE(7039), + [sym_do_statement] = STATE(7039), + [sym_empty_statement] = STATE(7039), + [sym_expression_statement] = STATE(7039), + [sym_fixed_statement] = STATE(7039), + [sym_for_statement] = STATE(7039), + [sym_return_statement] = STATE(7039), + [sym_lock_statement] = STATE(7039), + [sym_yield_statement] = STATE(7039), + [sym_switch_statement] = STATE(7039), + [sym_throw_statement] = STATE(7039), + [sym_try_statement] = STATE(7039), + [sym_unsafe_statement] = STATE(7039), + [sym_using_statement] = STATE(7039), + [sym_foreach_statement] = STATE(7039), + [sym__foreach_statement_initializer] = STATE(76), + [sym_goto_statement] = STATE(7039), + [sym_labeled_statement] = STATE(7039), + [sym_if_statement] = STATE(7039), + [sym_while_statement] = STATE(7039), + [sym_local_declaration_statement] = STATE(7039), + [sym_local_function_statement] = STATE(7039), + [sym__local_function_declaration] = STATE(6285), + [sym_expression] = STATE(5660), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3356), + [sym__expression_statement_expression] = STATE(5711), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3102), + [sym_postfix_unary_expression] = STATE(3079), + [sym_prefix_unary_expression] = STATE(3079), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6134), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3102), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3079), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3102), + [sym_member_access_expression] = STATE(2472), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3079), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7425), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(3102), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3102), + [sym_typeof_expression] = STATE(3102), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2472), + [sym_literal] = STATE(3102), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2313), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_top_level] = STATE(7039), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(3612), [sym_preproc_region] = STATE(75), [sym_preproc_endregion] = STATE(75), [sym_preproc_line] = STATE(75), @@ -43406,44 +43292,44 @@ 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(2286), + [aux_sym__class_declaration_initializer_repeat1] = STATE(2277), [aux_sym__class_declaration_initializer_repeat2] = STATE(2536), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), - [anon_sym_extern] = ACTIONS(647), + [anon_sym_extern] = ACTIONS(645), [anon_sym_alias] = ACTIONS(29), - [anon_sym_SEMI] = ACTIONS(1005), + [anon_sym_SEMI] = ACTIONS(1003), [anon_sym_global] = ACTIONS(29), - [anon_sym_using] = ACTIONS(1007), - [anon_sym_unsafe] = ACTIONS(1009), - [anon_sym_static] = ACTIONS(655), - [anon_sym_LBRACK] = ACTIONS(657), + [anon_sym_using] = ACTIONS(1005), + [anon_sym_unsafe] = ACTIONS(1007), + [anon_sym_static] = ACTIONS(653), + [anon_sym_LBRACK] = ACTIONS(655), [anon_sym_LPAREN] = ACTIONS(43), - [anon_sym_return] = ACTIONS(1011), - [anon_sym_ref] = ACTIONS(661), - [anon_sym_LBRACE] = ACTIONS(1013), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_abstract] = ACTIONS(647), - [anon_sym_async] = ACTIONS(655), - [anon_sym_const] = ACTIONS(647), - [anon_sym_file] = ACTIONS(669), - [anon_sym_fixed] = ACTIONS(1015), - [anon_sym_internal] = ACTIONS(647), - [anon_sym_new] = ACTIONS(673), - [anon_sym_override] = ACTIONS(647), - [anon_sym_partial] = ACTIONS(647), - [anon_sym_private] = ACTIONS(647), - [anon_sym_protected] = ACTIONS(647), - [anon_sym_public] = ACTIONS(647), - [anon_sym_readonly] = ACTIONS(647), - [anon_sym_required] = ACTIONS(647), - [anon_sym_sealed] = ACTIONS(647), - [anon_sym_virtual] = ACTIONS(647), - [anon_sym_volatile] = ACTIONS(647), - [anon_sym_where] = ACTIONS(29), - [anon_sym_notnull] = ACTIONS(29), - [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1017), + [anon_sym_return] = ACTIONS(1009), + [anon_sym_ref] = ACTIONS(715), + [anon_sym_LBRACE] = ACTIONS(1011), + [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(1013), + [anon_sym_internal] = ACTIONS(645), + [anon_sym_new] = ACTIONS(675), + [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(1015), [anon_sym_BANG] = ACTIONS(75), [anon_sym_TILDE] = ACTIONS(75), [anon_sym_PLUS_PLUS] = ACTIONS(75), @@ -43460,23 +43346,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(1019), - [anon_sym_unchecked] = ACTIONS(1017), - [anon_sym_continue] = ACTIONS(1021), - [anon_sym_do] = ACTIONS(1023), - [anon_sym_while] = ACTIONS(1025), - [anon_sym_for] = ACTIONS(1027), - [anon_sym_lock] = ACTIONS(1029), - [anon_sym_yield] = ACTIONS(1031), - [anon_sym_switch] = ACTIONS(1033), + [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_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1035), - [anon_sym_try] = ACTIONS(1037), + [anon_sym_throw] = ACTIONS(1033), + [anon_sym_try] = ACTIONS(1035), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1039), + [anon_sym_await] = ACTIONS(1037), [anon_sym_foreach] = ACTIONS(117), - [anon_sym_goto] = ACTIONS(1041), - [anon_sym_if] = ACTIONS(1043), + [anon_sym_goto] = ACTIONS(1039), + [anon_sym_if] = ACTIONS(1041), [anon_sym_DOT_DOT] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), @@ -43502,7 +43388,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(1045), + [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), @@ -43519,114 +43405,114 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [76] = { - [sym_attribute_list] = STATE(3645), - [sym__attribute_list] = STATE(3580), - [sym_modifier] = STATE(3878), - [sym_parameter_list] = STATE(7311), - [sym_block] = STATE(7054), - [sym_variable_declaration] = STATE(7367), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(5160), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2204), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5867), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_statement] = STATE(7046), - [sym_break_statement] = STATE(7054), - [sym_checked_statement] = STATE(7054), - [sym_continue_statement] = STATE(7054), - [sym_do_statement] = STATE(7054), - [sym_empty_statement] = STATE(7054), - [sym_expression_statement] = STATE(7054), - [sym_fixed_statement] = STATE(7054), - [sym_for_statement] = STATE(7054), - [sym_return_statement] = STATE(7054), - [sym_lock_statement] = STATE(7054), - [sym_yield_statement] = STATE(7054), - [sym_switch_statement] = STATE(7054), - [sym_throw_statement] = STATE(7054), - [sym_try_statement] = STATE(7054), - [sym_unsafe_statement] = STATE(7054), - [sym_using_statement] = STATE(7054), - [sym_foreach_statement] = STATE(7054), - [sym__foreach_statement_initializer] = STATE(75), - [sym_goto_statement] = STATE(7054), - [sym_labeled_statement] = STATE(7054), - [sym_if_statement] = STATE(7054), - [sym_while_statement] = STATE(7054), - [sym_local_declaration_statement] = STATE(7054), - [sym_local_function_statement] = STATE(7054), - [sym__local_function_declaration] = STATE(6293), - [sym_expression] = STATE(5672), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3461), - [sym__expression_statement_expression] = STATE(5729), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3080), - [sym_postfix_unary_expression] = STATE(3111), - [sym_prefix_unary_expression] = STATE(3111), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6154), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3080), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3111), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3080), - [sym_member_access_expression] = STATE(2484), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3111), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7530), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(3080), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3080), - [sym_typeof_expression] = STATE(3080), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2484), - [sym_literal] = STATE(3080), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2333), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_top_level] = STATE(7054), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(3645), + [sym_attribute_list] = STATE(3612), + [sym__attribute_list] = STATE(3570), + [sym_modifier] = STATE(3845), + [sym_parameter_list] = STATE(7531), + [sym_block] = STATE(7039), + [sym_variable_declaration] = STATE(7397), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(5152), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2196), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5805), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_statement] = STATE(7096), + [sym_break_statement] = STATE(7039), + [sym_checked_statement] = STATE(7039), + [sym_continue_statement] = STATE(7039), + [sym_do_statement] = STATE(7039), + [sym_empty_statement] = STATE(7039), + [sym_expression_statement] = STATE(7039), + [sym_fixed_statement] = STATE(7039), + [sym_for_statement] = STATE(7039), + [sym_return_statement] = STATE(7039), + [sym_lock_statement] = STATE(7039), + [sym_yield_statement] = STATE(7039), + [sym_switch_statement] = STATE(7039), + [sym_throw_statement] = STATE(7039), + [sym_try_statement] = STATE(7039), + [sym_unsafe_statement] = STATE(7039), + [sym_using_statement] = STATE(7039), + [sym_foreach_statement] = STATE(7039), + [sym__foreach_statement_initializer] = STATE(76), + [sym_goto_statement] = STATE(7039), + [sym_labeled_statement] = STATE(7039), + [sym_if_statement] = STATE(7039), + [sym_while_statement] = STATE(7039), + [sym_local_declaration_statement] = STATE(7039), + [sym_local_function_statement] = STATE(7039), + [sym__local_function_declaration] = STATE(6285), + [sym_expression] = STATE(5660), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3356), + [sym__expression_statement_expression] = STATE(5711), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3102), + [sym_postfix_unary_expression] = STATE(3079), + [sym_prefix_unary_expression] = STATE(3079), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6134), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3102), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3079), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3102), + [sym_member_access_expression] = STATE(2472), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3079), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7425), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(3102), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3102), + [sym_typeof_expression] = STATE(3102), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2472), + [sym_literal] = STATE(3102), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2313), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_top_level] = STATE(7039), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(3612), [sym_preproc_region] = STATE(76), [sym_preproc_endregion] = STATE(76), [sym_preproc_line] = STATE(76), @@ -43636,44 +43522,44 @@ 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(2286), + [aux_sym__class_declaration_initializer_repeat1] = STATE(2277), [aux_sym__class_declaration_initializer_repeat2] = STATE(2536), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), - [anon_sym_extern] = ACTIONS(647), + [anon_sym_extern] = ACTIONS(645), [anon_sym_alias] = ACTIONS(29), - [anon_sym_SEMI] = ACTIONS(1005), + [anon_sym_SEMI] = ACTIONS(1003), [anon_sym_global] = ACTIONS(29), - [anon_sym_using] = ACTIONS(1007), - [anon_sym_unsafe] = ACTIONS(1009), - [anon_sym_static] = ACTIONS(655), - [anon_sym_LBRACK] = ACTIONS(657), + [anon_sym_using] = ACTIONS(1005), + [anon_sym_unsafe] = ACTIONS(1007), + [anon_sym_static] = ACTIONS(653), + [anon_sym_LBRACK] = ACTIONS(655), [anon_sym_LPAREN] = ACTIONS(43), - [anon_sym_return] = ACTIONS(1011), - [anon_sym_ref] = ACTIONS(661), - [anon_sym_LBRACE] = ACTIONS(1013), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_abstract] = ACTIONS(647), - [anon_sym_async] = ACTIONS(655), - [anon_sym_const] = ACTIONS(647), - [anon_sym_file] = ACTIONS(669), - [anon_sym_fixed] = ACTIONS(1015), - [anon_sym_internal] = ACTIONS(647), - [anon_sym_new] = ACTIONS(673), - [anon_sym_override] = ACTIONS(647), - [anon_sym_partial] = ACTIONS(647), - [anon_sym_private] = ACTIONS(647), - [anon_sym_protected] = ACTIONS(647), - [anon_sym_public] = ACTIONS(647), - [anon_sym_readonly] = ACTIONS(647), - [anon_sym_required] = ACTIONS(647), - [anon_sym_sealed] = ACTIONS(647), - [anon_sym_virtual] = ACTIONS(647), - [anon_sym_volatile] = ACTIONS(647), - [anon_sym_where] = ACTIONS(29), - [anon_sym_notnull] = ACTIONS(29), - [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1017), + [anon_sym_return] = ACTIONS(1009), + [anon_sym_ref] = ACTIONS(715), + [anon_sym_LBRACE] = ACTIONS(1011), + [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(1013), + [anon_sym_internal] = ACTIONS(645), + [anon_sym_new] = ACTIONS(675), + [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(1015), [anon_sym_BANG] = ACTIONS(75), [anon_sym_TILDE] = ACTIONS(75), [anon_sym_PLUS_PLUS] = ACTIONS(75), @@ -43690,23 +43576,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(1019), - [anon_sym_unchecked] = ACTIONS(1017), - [anon_sym_continue] = ACTIONS(1021), - [anon_sym_do] = ACTIONS(1023), - [anon_sym_while] = ACTIONS(1025), - [anon_sym_for] = ACTIONS(1027), - [anon_sym_lock] = ACTIONS(1029), - [anon_sym_yield] = ACTIONS(1031), - [anon_sym_switch] = ACTIONS(1033), + [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_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1035), - [anon_sym_try] = ACTIONS(1037), + [anon_sym_throw] = ACTIONS(1033), + [anon_sym_try] = ACTIONS(1035), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1039), + [anon_sym_await] = ACTIONS(1037), [anon_sym_foreach] = ACTIONS(117), - [anon_sym_goto] = ACTIONS(1041), - [anon_sym_if] = ACTIONS(1043), + [anon_sym_goto] = ACTIONS(1039), + [anon_sym_if] = ACTIONS(1041), [anon_sym_DOT_DOT] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), @@ -43732,7 +43618,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(1045), + [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), @@ -43749,114 +43635,114 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [77] = { - [sym_attribute_list] = STATE(3645), - [sym__attribute_list] = STATE(3580), - [sym_modifier] = STATE(3878), - [sym_parameter_list] = STATE(7311), - [sym_block] = STATE(2026), - [sym_variable_declaration] = STATE(7363), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(5160), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2204), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5867), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_statement] = STATE(2055), - [sym_break_statement] = STATE(2026), - [sym_checked_statement] = STATE(2026), - [sym_continue_statement] = STATE(2026), - [sym_do_statement] = STATE(2026), - [sym_empty_statement] = STATE(2026), - [sym_expression_statement] = STATE(2026), - [sym_fixed_statement] = STATE(2026), - [sym_for_statement] = STATE(2026), - [sym_return_statement] = STATE(2026), - [sym_lock_statement] = STATE(2026), - [sym_yield_statement] = STATE(2026), - [sym_switch_statement] = STATE(2026), - [sym_throw_statement] = STATE(2026), - [sym_try_statement] = STATE(2026), - [sym_unsafe_statement] = STATE(2026), - [sym_using_statement] = STATE(2026), - [sym_foreach_statement] = STATE(2026), - [sym__foreach_statement_initializer] = STATE(70), - [sym_goto_statement] = STATE(2026), - [sym_labeled_statement] = STATE(2026), - [sym_if_statement] = STATE(2026), - [sym_while_statement] = STATE(2026), - [sym_local_declaration_statement] = STATE(2026), - [sym_local_function_statement] = STATE(2026), - [sym__local_function_declaration] = STATE(6317), - [sym_expression] = STATE(5672), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3461), - [sym__expression_statement_expression] = STATE(5719), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3080), - [sym_postfix_unary_expression] = STATE(3111), - [sym_prefix_unary_expression] = STATE(3111), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6154), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3080), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3111), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3080), - [sym_member_access_expression] = STATE(2484), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3111), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7530), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(3080), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3080), - [sym_typeof_expression] = STATE(3080), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2484), - [sym_literal] = STATE(3080), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2348), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_top_level] = STATE(2026), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(3645), + [sym_attribute_list] = STATE(3612), + [sym__attribute_list] = STATE(3570), + [sym_modifier] = STATE(3845), + [sym_parameter_list] = STATE(7531), + [sym_block] = STATE(7039), + [sym_variable_declaration] = STATE(7397), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(5152), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2196), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5805), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_statement] = STATE(7169), + [sym_break_statement] = STATE(7039), + [sym_checked_statement] = STATE(7039), + [sym_continue_statement] = STATE(7039), + [sym_do_statement] = STATE(7039), + [sym_empty_statement] = STATE(7039), + [sym_expression_statement] = STATE(7039), + [sym_fixed_statement] = STATE(7039), + [sym_for_statement] = STATE(7039), + [sym_return_statement] = STATE(7039), + [sym_lock_statement] = STATE(7039), + [sym_yield_statement] = STATE(7039), + [sym_switch_statement] = STATE(7039), + [sym_throw_statement] = STATE(7039), + [sym_try_statement] = STATE(7039), + [sym_unsafe_statement] = STATE(7039), + [sym_using_statement] = STATE(7039), + [sym_foreach_statement] = STATE(7039), + [sym__foreach_statement_initializer] = STATE(76), + [sym_goto_statement] = STATE(7039), + [sym_labeled_statement] = STATE(7039), + [sym_if_statement] = STATE(7039), + [sym_while_statement] = STATE(7039), + [sym_local_declaration_statement] = STATE(7039), + [sym_local_function_statement] = STATE(7039), + [sym__local_function_declaration] = STATE(6285), + [sym_expression] = STATE(5660), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3356), + [sym__expression_statement_expression] = STATE(5711), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3102), + [sym_postfix_unary_expression] = STATE(3079), + [sym_prefix_unary_expression] = STATE(3079), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6134), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3102), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3079), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3102), + [sym_member_access_expression] = STATE(2472), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3079), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7425), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(3102), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3102), + [sym_typeof_expression] = STATE(3102), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2472), + [sym_literal] = STATE(3102), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2313), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_top_level] = STATE(7039), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(3612), [sym_preproc_region] = STATE(77), [sym_preproc_endregion] = STATE(77), [sym_preproc_line] = STATE(77), @@ -43866,44 +43752,44 @@ 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(2286), - [aux_sym__class_declaration_initializer_repeat2] = STATE(2539), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [aux_sym__class_declaration_initializer_repeat1] = STATE(2277), + [aux_sym__class_declaration_initializer_repeat2] = STATE(2536), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), - [anon_sym_extern] = ACTIONS(647), + [anon_sym_extern] = ACTIONS(645), [anon_sym_alias] = ACTIONS(29), - [anon_sym_SEMI] = ACTIONS(31), + [anon_sym_SEMI] = ACTIONS(1003), [anon_sym_global] = ACTIONS(29), - [anon_sym_using] = ACTIONS(997), - [anon_sym_unsafe] = ACTIONS(999), - [anon_sym_static] = ACTIONS(655), - [anon_sym_LBRACK] = ACTIONS(657), + [anon_sym_using] = ACTIONS(1005), + [anon_sym_unsafe] = ACTIONS(1007), + [anon_sym_static] = ACTIONS(653), + [anon_sym_LBRACK] = ACTIONS(655), [anon_sym_LPAREN] = ACTIONS(43), - [anon_sym_return] = ACTIONS(45), - [anon_sym_ref] = ACTIONS(661), - [anon_sym_LBRACE] = ACTIONS(57), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_abstract] = ACTIONS(647), - [anon_sym_async] = ACTIONS(655), - [anon_sym_const] = ACTIONS(647), - [anon_sym_file] = ACTIONS(669), - [anon_sym_fixed] = ACTIONS(1001), - [anon_sym_internal] = ACTIONS(647), - [anon_sym_new] = ACTIONS(673), - [anon_sym_override] = ACTIONS(647), - [anon_sym_partial] = ACTIONS(647), - [anon_sym_private] = ACTIONS(647), - [anon_sym_protected] = ACTIONS(647), - [anon_sym_public] = ACTIONS(647), - [anon_sym_readonly] = ACTIONS(647), - [anon_sym_required] = ACTIONS(647), - [anon_sym_sealed] = ACTIONS(647), - [anon_sym_virtual] = ACTIONS(647), - [anon_sym_volatile] = ACTIONS(647), - [anon_sym_where] = ACTIONS(29), - [anon_sym_notnull] = ACTIONS(29), - [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(73), + [anon_sym_return] = ACTIONS(1009), + [anon_sym_ref] = ACTIONS(715), + [anon_sym_LBRACE] = ACTIONS(1011), + [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(1013), + [anon_sym_internal] = ACTIONS(645), + [anon_sym_new] = ACTIONS(675), + [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(1015), [anon_sym_BANG] = ACTIONS(75), [anon_sym_TILDE] = ACTIONS(75), [anon_sym_PLUS_PLUS] = ACTIONS(75), @@ -43920,23 +43806,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(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_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(111), - [anon_sym_try] = ACTIONS(113), + [anon_sym_throw] = ACTIONS(1033), + [anon_sym_try] = ACTIONS(1035), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(115), + [anon_sym_await] = ACTIONS(1037), [anon_sym_foreach] = ACTIONS(117), - [anon_sym_goto] = ACTIONS(119), - [anon_sym_if] = ACTIONS(121), + [anon_sym_goto] = ACTIONS(1039), + [anon_sym_if] = ACTIONS(1041), [anon_sym_DOT_DOT] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), @@ -43962,7 +43848,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(1003), + [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), @@ -43979,114 +43865,114 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [78] = { - [sym_attribute_list] = STATE(3645), - [sym__attribute_list] = STATE(3580), - [sym_modifier] = STATE(3878), - [sym_parameter_list] = STATE(7311), - [sym_block] = STATE(7054), - [sym_variable_declaration] = STATE(7367), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(5160), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2204), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5867), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_statement] = STATE(7767), - [sym_break_statement] = STATE(7054), - [sym_checked_statement] = STATE(7054), - [sym_continue_statement] = STATE(7054), - [sym_do_statement] = STATE(7054), - [sym_empty_statement] = STATE(7054), - [sym_expression_statement] = STATE(7054), - [sym_fixed_statement] = STATE(7054), - [sym_for_statement] = STATE(7054), - [sym_return_statement] = STATE(7054), - [sym_lock_statement] = STATE(7054), - [sym_yield_statement] = STATE(7054), - [sym_switch_statement] = STATE(7054), - [sym_throw_statement] = STATE(7054), - [sym_try_statement] = STATE(7054), - [sym_unsafe_statement] = STATE(7054), - [sym_using_statement] = STATE(7054), - [sym_foreach_statement] = STATE(7054), - [sym__foreach_statement_initializer] = STATE(75), - [sym_goto_statement] = STATE(7054), - [sym_labeled_statement] = STATE(7054), - [sym_if_statement] = STATE(7054), - [sym_while_statement] = STATE(7054), - [sym_local_declaration_statement] = STATE(7054), - [sym_local_function_statement] = STATE(7054), - [sym__local_function_declaration] = STATE(6293), - [sym_expression] = STATE(5672), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3461), - [sym__expression_statement_expression] = STATE(5729), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3080), - [sym_postfix_unary_expression] = STATE(3111), - [sym_prefix_unary_expression] = STATE(3111), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6154), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3080), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3111), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3080), - [sym_member_access_expression] = STATE(2484), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3111), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7530), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(3080), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3080), - [sym_typeof_expression] = STATE(3080), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2484), - [sym_literal] = STATE(3080), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2333), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_top_level] = STATE(7054), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(3645), + [sym_attribute_list] = STATE(3612), + [sym__attribute_list] = STATE(3570), + [sym_modifier] = STATE(3845), + [sym_parameter_list] = STATE(7531), + [sym_block] = STATE(2026), + [sym_variable_declaration] = STATE(7610), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(5152), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2196), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5805), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_statement] = STATE(2023), + [sym_break_statement] = STATE(2026), + [sym_checked_statement] = STATE(2026), + [sym_continue_statement] = STATE(2026), + [sym_do_statement] = STATE(2026), + [sym_empty_statement] = STATE(2026), + [sym_expression_statement] = STATE(2026), + [sym_fixed_statement] = STATE(2026), + [sym_for_statement] = STATE(2026), + [sym_return_statement] = STATE(2026), + [sym_lock_statement] = STATE(2026), + [sym_yield_statement] = STATE(2026), + [sym_switch_statement] = STATE(2026), + [sym_throw_statement] = STATE(2026), + [sym_try_statement] = STATE(2026), + [sym_unsafe_statement] = STATE(2026), + [sym_using_statement] = STATE(2026), + [sym_foreach_statement] = STATE(2026), + [sym__foreach_statement_initializer] = STATE(90), + [sym_goto_statement] = STATE(2026), + [sym_labeled_statement] = STATE(2026), + [sym_if_statement] = STATE(2026), + [sym_while_statement] = STATE(2026), + [sym_local_declaration_statement] = STATE(2026), + [sym_local_function_statement] = STATE(2026), + [sym__local_function_declaration] = STATE(6290), + [sym_expression] = STATE(5660), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3356), + [sym__expression_statement_expression] = STATE(5708), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3102), + [sym_postfix_unary_expression] = STATE(3079), + [sym_prefix_unary_expression] = STATE(3079), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6134), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3102), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3079), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3102), + [sym_member_access_expression] = STATE(2472), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3079), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7425), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(3102), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3102), + [sym_typeof_expression] = STATE(3102), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2472), + [sym_literal] = STATE(3102), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2332), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_top_level] = STATE(2026), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(3612), [sym_preproc_region] = STATE(78), [sym_preproc_endregion] = STATE(78), [sym_preproc_line] = STATE(78), @@ -44096,44 +43982,44 @@ 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(2286), - [aux_sym__class_declaration_initializer_repeat2] = STATE(2536), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [aux_sym__class_declaration_initializer_repeat1] = STATE(2277), + [aux_sym__class_declaration_initializer_repeat2] = STATE(2535), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), - [anon_sym_extern] = ACTIONS(647), + [anon_sym_extern] = ACTIONS(645), [anon_sym_alias] = ACTIONS(29), - [anon_sym_SEMI] = ACTIONS(1005), + [anon_sym_SEMI] = ACTIONS(31), [anon_sym_global] = ACTIONS(29), - [anon_sym_using] = ACTIONS(1007), - [anon_sym_unsafe] = ACTIONS(1009), - [anon_sym_static] = ACTIONS(655), - [anon_sym_LBRACK] = ACTIONS(657), + [anon_sym_using] = ACTIONS(987), + [anon_sym_unsafe] = ACTIONS(989), + [anon_sym_static] = ACTIONS(653), + [anon_sym_LBRACK] = ACTIONS(655), [anon_sym_LPAREN] = ACTIONS(43), - [anon_sym_return] = ACTIONS(1011), - [anon_sym_ref] = ACTIONS(661), - [anon_sym_LBRACE] = ACTIONS(1013), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_abstract] = ACTIONS(647), - [anon_sym_async] = ACTIONS(655), - [anon_sym_const] = ACTIONS(647), - [anon_sym_file] = ACTIONS(669), - [anon_sym_fixed] = ACTIONS(1015), - [anon_sym_internal] = ACTIONS(647), - [anon_sym_new] = ACTIONS(673), - [anon_sym_override] = ACTIONS(647), - [anon_sym_partial] = ACTIONS(647), - [anon_sym_private] = ACTIONS(647), - [anon_sym_protected] = ACTIONS(647), - [anon_sym_public] = ACTIONS(647), - [anon_sym_readonly] = ACTIONS(647), - [anon_sym_required] = ACTIONS(647), - [anon_sym_sealed] = ACTIONS(647), - [anon_sym_virtual] = ACTIONS(647), - [anon_sym_volatile] = ACTIONS(647), - [anon_sym_where] = ACTIONS(29), - [anon_sym_notnull] = ACTIONS(29), - [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1017), + [anon_sym_return] = ACTIONS(45), + [anon_sym_ref] = ACTIONS(715), + [anon_sym_LBRACE] = ACTIONS(57), + [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(991), + [anon_sym_internal] = ACTIONS(645), + [anon_sym_new] = ACTIONS(675), + [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(73), [anon_sym_BANG] = ACTIONS(75), [anon_sym_TILDE] = ACTIONS(75), [anon_sym_PLUS_PLUS] = ACTIONS(75), @@ -44150,23 +44036,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(1019), - [anon_sym_unchecked] = ACTIONS(1017), - [anon_sym_continue] = ACTIONS(1021), - [anon_sym_do] = ACTIONS(1023), - [anon_sym_while] = ACTIONS(1025), - [anon_sym_for] = ACTIONS(1027), - [anon_sym_lock] = ACTIONS(1029), - [anon_sym_yield] = ACTIONS(1031), - [anon_sym_switch] = ACTIONS(1033), + [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(1035), - [anon_sym_try] = ACTIONS(1037), + [anon_sym_throw] = ACTIONS(111), + [anon_sym_try] = ACTIONS(113), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1039), + [anon_sym_await] = ACTIONS(115), [anon_sym_foreach] = ACTIONS(117), - [anon_sym_goto] = ACTIONS(1041), - [anon_sym_if] = ACTIONS(1043), + [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), @@ -44192,7 +44078,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(1045), + [aux_sym_preproc_if_token1] = ACTIONS(993), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -44209,30 +44095,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [79] = { - [sym_attribute_list] = STATE(3645), - [sym__attribute_list] = STATE(3580), - [sym_modifier] = STATE(3878), - [sym_parameter_list] = STATE(7311), + [sym_attribute_list] = STATE(3612), + [sym__attribute_list] = STATE(3570), + [sym_modifier] = STATE(3845), + [sym_parameter_list] = STATE(7531), [sym_block] = STATE(2026), - [sym_variable_declaration] = STATE(7363), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(5160), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2204), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5867), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_statement] = STATE(2039), + [sym_variable_declaration] = STATE(7610), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(5152), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2196), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5805), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_statement] = STATE(2018), [sym_break_statement] = STATE(2026), [sym_checked_statement] = STATE(2026), [sym_continue_statement] = STATE(2026), @@ -44250,73 +44136,73 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_unsafe_statement] = STATE(2026), [sym_using_statement] = STATE(2026), [sym_foreach_statement] = STATE(2026), - [sym__foreach_statement_initializer] = STATE(70), + [sym__foreach_statement_initializer] = STATE(90), [sym_goto_statement] = STATE(2026), [sym_labeled_statement] = STATE(2026), [sym_if_statement] = STATE(2026), [sym_while_statement] = STATE(2026), [sym_local_declaration_statement] = STATE(2026), [sym_local_function_statement] = STATE(2026), - [sym__local_function_declaration] = STATE(6317), - [sym_expression] = STATE(5672), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3461), - [sym__expression_statement_expression] = STATE(5719), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3080), - [sym_postfix_unary_expression] = STATE(3111), - [sym_prefix_unary_expression] = STATE(3111), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6154), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3080), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3111), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3080), - [sym_member_access_expression] = STATE(2484), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3111), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7530), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(3080), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3080), - [sym_typeof_expression] = STATE(3080), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2484), - [sym_literal] = STATE(3080), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2348), - [sym__reserved_identifier] = STATE(2175), + [sym__local_function_declaration] = STATE(6290), + [sym_expression] = STATE(5660), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3356), + [sym__expression_statement_expression] = STATE(5708), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3102), + [sym_postfix_unary_expression] = STATE(3079), + [sym_prefix_unary_expression] = STATE(3079), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6134), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3102), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3079), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3102), + [sym_member_access_expression] = STATE(2472), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3079), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7425), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(3102), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3102), + [sym_typeof_expression] = STATE(3102), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2472), + [sym_literal] = STATE(3102), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2332), + [sym__reserved_identifier] = STATE(2168), [sym_preproc_if_in_top_level] = STATE(2026), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(3645), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(3612), [sym_preproc_region] = STATE(79), [sym_preproc_endregion] = STATE(79), [sym_preproc_line] = STATE(79), @@ -44326,40 +44212,40 @@ 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(2286), - [aux_sym__class_declaration_initializer_repeat2] = STATE(2539), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [aux_sym__class_declaration_initializer_repeat1] = STATE(2277), + [aux_sym__class_declaration_initializer_repeat2] = STATE(2535), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), - [anon_sym_extern] = ACTIONS(647), + [anon_sym_extern] = ACTIONS(645), [anon_sym_alias] = ACTIONS(29), [anon_sym_SEMI] = ACTIONS(31), [anon_sym_global] = ACTIONS(29), - [anon_sym_using] = ACTIONS(997), - [anon_sym_unsafe] = ACTIONS(999), - [anon_sym_static] = ACTIONS(655), - [anon_sym_LBRACK] = ACTIONS(657), + [anon_sym_using] = ACTIONS(987), + [anon_sym_unsafe] = ACTIONS(989), + [anon_sym_static] = ACTIONS(653), + [anon_sym_LBRACK] = ACTIONS(655), [anon_sym_LPAREN] = ACTIONS(43), [anon_sym_return] = ACTIONS(45), - [anon_sym_ref] = ACTIONS(661), + [anon_sym_ref] = ACTIONS(715), [anon_sym_LBRACE] = ACTIONS(57), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_abstract] = ACTIONS(647), - [anon_sym_async] = ACTIONS(655), - [anon_sym_const] = ACTIONS(647), - [anon_sym_file] = ACTIONS(669), - [anon_sym_fixed] = ACTIONS(1001), - [anon_sym_internal] = ACTIONS(647), - [anon_sym_new] = ACTIONS(673), - [anon_sym_override] = ACTIONS(647), - [anon_sym_partial] = ACTIONS(647), - [anon_sym_private] = ACTIONS(647), - [anon_sym_protected] = ACTIONS(647), - [anon_sym_public] = ACTIONS(647), - [anon_sym_readonly] = ACTIONS(647), - [anon_sym_required] = ACTIONS(647), - [anon_sym_sealed] = ACTIONS(647), - [anon_sym_virtual] = ACTIONS(647), - [anon_sym_volatile] = ACTIONS(647), + [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(991), + [anon_sym_internal] = ACTIONS(645), + [anon_sym_new] = ACTIONS(675), + [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), @@ -44422,7 +44308,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(1003), + [aux_sym_preproc_if_token1] = ACTIONS(993), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -44439,114 +44325,114 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [80] = { - [sym_attribute_list] = STATE(3645), - [sym__attribute_list] = STATE(3580), - [sym_modifier] = STATE(3878), - [sym_parameter_list] = STATE(7311), - [sym_block] = STATE(2120), - [sym_variable_declaration] = STATE(7689), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(5160), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2204), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5867), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_statement] = STATE(2130), - [sym_break_statement] = STATE(2120), - [sym_checked_statement] = STATE(2120), - [sym_continue_statement] = STATE(2120), - [sym_do_statement] = STATE(2120), - [sym_empty_statement] = STATE(2120), - [sym_expression_statement] = STATE(2120), - [sym_fixed_statement] = STATE(2120), - [sym_for_statement] = STATE(2120), - [sym_return_statement] = STATE(2120), - [sym_lock_statement] = STATE(2120), - [sym_yield_statement] = STATE(2120), - [sym_switch_statement] = STATE(2120), - [sym_throw_statement] = STATE(2120), - [sym_try_statement] = STATE(2120), - [sym_unsafe_statement] = STATE(2120), - [sym_using_statement] = STATE(2120), - [sym_foreach_statement] = STATE(2120), + [sym_attribute_list] = STATE(3612), + [sym__attribute_list] = STATE(3570), + [sym_modifier] = STATE(3845), + [sym_parameter_list] = STATE(7531), + [sym_block] = STATE(2093), + [sym_variable_declaration] = STATE(7607), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(5152), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2196), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5805), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_statement] = STATE(2098), + [sym_break_statement] = STATE(2093), + [sym_checked_statement] = STATE(2093), + [sym_continue_statement] = STATE(2093), + [sym_do_statement] = STATE(2093), + [sym_empty_statement] = STATE(2093), + [sym_expression_statement] = STATE(2093), + [sym_fixed_statement] = STATE(2093), + [sym_for_statement] = STATE(2093), + [sym_return_statement] = STATE(2093), + [sym_lock_statement] = STATE(2093), + [sym_yield_statement] = STATE(2093), + [sym_switch_statement] = STATE(2093), + [sym_throw_statement] = STATE(2093), + [sym_try_statement] = STATE(2093), + [sym_unsafe_statement] = STATE(2093), + [sym_using_statement] = STATE(2093), + [sym_foreach_statement] = STATE(2093), [sym__foreach_statement_initializer] = STATE(93), - [sym_goto_statement] = STATE(2120), - [sym_labeled_statement] = STATE(2120), - [sym_if_statement] = STATE(2120), - [sym_while_statement] = STATE(2120), - [sym_local_declaration_statement] = STATE(2120), - [sym_local_function_statement] = STATE(2120), - [sym__local_function_declaration] = STATE(6322), - [sym_expression] = STATE(5672), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3461), - [sym__expression_statement_expression] = STATE(5635), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3080), - [sym_postfix_unary_expression] = STATE(3111), - [sym_prefix_unary_expression] = STATE(3111), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6154), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3080), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3111), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3080), - [sym_member_access_expression] = STATE(2484), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3111), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7530), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(3080), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3080), - [sym_typeof_expression] = STATE(3080), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2484), - [sym_literal] = STATE(3080), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2282), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_top_level] = STATE(2120), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(3645), + [sym_goto_statement] = STATE(2093), + [sym_labeled_statement] = STATE(2093), + [sym_if_statement] = STATE(2093), + [sym_while_statement] = STATE(2093), + [sym_local_declaration_statement] = STATE(2093), + [sym_local_function_statement] = STATE(2093), + [sym__local_function_declaration] = STATE(6310), + [sym_expression] = STATE(5660), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3356), + [sym__expression_statement_expression] = STATE(5554), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3102), + [sym_postfix_unary_expression] = STATE(3079), + [sym_prefix_unary_expression] = STATE(3079), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6134), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3102), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3079), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3102), + [sym_member_access_expression] = STATE(2472), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3079), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7425), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(3102), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3102), + [sym_typeof_expression] = STATE(3102), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2472), + [sym_literal] = STATE(3102), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2269), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_top_level] = STATE(2093), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(3612), [sym_preproc_region] = STATE(80), [sym_preproc_endregion] = STATE(80), [sym_preproc_line] = STATE(80), @@ -44556,44 +44442,44 @@ 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(2286), - [aux_sym__class_declaration_initializer_repeat2] = STATE(2529), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [aux_sym__class_declaration_initializer_repeat1] = STATE(2277), + [aux_sym__class_declaration_initializer_repeat2] = STATE(2540), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), - [anon_sym_extern] = ACTIONS(647), + [anon_sym_extern] = ACTIONS(645), [anon_sym_alias] = ACTIONS(29), - [anon_sym_SEMI] = ACTIONS(649), + [anon_sym_SEMI] = ACTIONS(647), [anon_sym_global] = ACTIONS(29), - [anon_sym_using] = ACTIONS(651), - [anon_sym_unsafe] = ACTIONS(653), - [anon_sym_static] = ACTIONS(655), - [anon_sym_LBRACK] = ACTIONS(657), + [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(659), - [anon_sym_ref] = ACTIONS(661), - [anon_sym_LBRACE] = ACTIONS(663), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_abstract] = ACTIONS(647), - [anon_sym_async] = ACTIONS(655), - [anon_sym_const] = ACTIONS(647), - [anon_sym_file] = ACTIONS(669), - [anon_sym_fixed] = ACTIONS(671), - [anon_sym_internal] = ACTIONS(647), - [anon_sym_new] = ACTIONS(673), - [anon_sym_override] = ACTIONS(647), - [anon_sym_partial] = ACTIONS(647), - [anon_sym_private] = ACTIONS(647), - [anon_sym_protected] = ACTIONS(647), - [anon_sym_public] = ACTIONS(647), - [anon_sym_readonly] = ACTIONS(647), - [anon_sym_required] = ACTIONS(647), - [anon_sym_sealed] = ACTIONS(647), - [anon_sym_virtual] = ACTIONS(647), - [anon_sym_volatile] = ACTIONS(647), - [anon_sym_where] = ACTIONS(29), - [anon_sym_notnull] = ACTIONS(29), - [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(675), + [anon_sym_return] = ACTIONS(661), + [anon_sym_ref] = ACTIONS(715), + [anon_sym_LBRACE] = ACTIONS(665), + [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(673), + [anon_sym_internal] = ACTIONS(645), + [anon_sym_new] = ACTIONS(675), + [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(677), [anon_sym_BANG] = ACTIONS(75), [anon_sym_TILDE] = ACTIONS(75), [anon_sym_PLUS_PLUS] = ACTIONS(75), @@ -44610,23 +44496,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(677), - [anon_sym_unchecked] = ACTIONS(675), - [anon_sym_continue] = ACTIONS(679), - [anon_sym_do] = ACTIONS(681), - [anon_sym_while] = ACTIONS(683), - [anon_sym_for] = ACTIONS(685), - [anon_sym_lock] = ACTIONS(687), - [anon_sym_yield] = ACTIONS(689), - [anon_sym_switch] = ACTIONS(691), + [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(695), - [anon_sym_try] = ACTIONS(697), + [anon_sym_throw] = ACTIONS(721), + [anon_sym_try] = ACTIONS(703), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(699), + [anon_sym_await] = ACTIONS(723), [anon_sym_foreach] = ACTIONS(117), - [anon_sym_goto] = ACTIONS(701), - [anon_sym_if] = ACTIONS(703), + [anon_sym_goto] = ACTIONS(707), + [anon_sym_if] = ACTIONS(709), [anon_sym_DOT_DOT] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), @@ -44652,7 +44538,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(705), + [aux_sym_preproc_if_token1] = ACTIONS(713), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -44669,114 +44555,114 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [81] = { - [sym_attribute_list] = STATE(3645), - [sym__attribute_list] = STATE(3580), - [sym_modifier] = STATE(3878), - [sym_parameter_list] = STATE(7311), - [sym_block] = STATE(7054), - [sym_variable_declaration] = STATE(7367), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(5160), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2204), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5867), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_statement] = STATE(7212), - [sym_break_statement] = STATE(7054), - [sym_checked_statement] = STATE(7054), - [sym_continue_statement] = STATE(7054), - [sym_do_statement] = STATE(7054), - [sym_empty_statement] = STATE(7054), - [sym_expression_statement] = STATE(7054), - [sym_fixed_statement] = STATE(7054), - [sym_for_statement] = STATE(7054), - [sym_return_statement] = STATE(7054), - [sym_lock_statement] = STATE(7054), - [sym_yield_statement] = STATE(7054), - [sym_switch_statement] = STATE(7054), - [sym_throw_statement] = STATE(7054), - [sym_try_statement] = STATE(7054), - [sym_unsafe_statement] = STATE(7054), - [sym_using_statement] = STATE(7054), - [sym_foreach_statement] = STATE(7054), - [sym__foreach_statement_initializer] = STATE(75), - [sym_goto_statement] = STATE(7054), - [sym_labeled_statement] = STATE(7054), - [sym_if_statement] = STATE(7054), - [sym_while_statement] = STATE(7054), - [sym_local_declaration_statement] = STATE(7054), - [sym_local_function_statement] = STATE(7054), - [sym__local_function_declaration] = STATE(6293), - [sym_expression] = STATE(5672), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3461), - [sym__expression_statement_expression] = STATE(5729), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3080), - [sym_postfix_unary_expression] = STATE(3111), - [sym_prefix_unary_expression] = STATE(3111), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6154), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3080), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3111), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3080), - [sym_member_access_expression] = STATE(2484), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3111), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7530), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(3080), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3080), - [sym_typeof_expression] = STATE(3080), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2484), - [sym_literal] = STATE(3080), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2333), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_top_level] = STATE(7054), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(3645), + [sym_attribute_list] = STATE(3612), + [sym__attribute_list] = STATE(3570), + [sym_modifier] = STATE(3845), + [sym_parameter_list] = STATE(7531), + [sym_block] = STATE(7039), + [sym_variable_declaration] = STATE(7397), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(5152), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2196), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5805), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_statement] = STATE(7209), + [sym_break_statement] = STATE(7039), + [sym_checked_statement] = STATE(7039), + [sym_continue_statement] = STATE(7039), + [sym_do_statement] = STATE(7039), + [sym_empty_statement] = STATE(7039), + [sym_expression_statement] = STATE(7039), + [sym_fixed_statement] = STATE(7039), + [sym_for_statement] = STATE(7039), + [sym_return_statement] = STATE(7039), + [sym_lock_statement] = STATE(7039), + [sym_yield_statement] = STATE(7039), + [sym_switch_statement] = STATE(7039), + [sym_throw_statement] = STATE(7039), + [sym_try_statement] = STATE(7039), + [sym_unsafe_statement] = STATE(7039), + [sym_using_statement] = STATE(7039), + [sym_foreach_statement] = STATE(7039), + [sym__foreach_statement_initializer] = STATE(76), + [sym_goto_statement] = STATE(7039), + [sym_labeled_statement] = STATE(7039), + [sym_if_statement] = STATE(7039), + [sym_while_statement] = STATE(7039), + [sym_local_declaration_statement] = STATE(7039), + [sym_local_function_statement] = STATE(7039), + [sym__local_function_declaration] = STATE(6285), + [sym_expression] = STATE(5660), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3356), + [sym__expression_statement_expression] = STATE(5711), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3102), + [sym_postfix_unary_expression] = STATE(3079), + [sym_prefix_unary_expression] = STATE(3079), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6134), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3102), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3079), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3102), + [sym_member_access_expression] = STATE(2472), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3079), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7425), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(3102), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3102), + [sym_typeof_expression] = STATE(3102), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2472), + [sym_literal] = STATE(3102), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2313), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_top_level] = STATE(7039), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(3612), [sym_preproc_region] = STATE(81), [sym_preproc_endregion] = STATE(81), [sym_preproc_line] = STATE(81), @@ -44786,44 +44672,44 @@ 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(2286), + [aux_sym__class_declaration_initializer_repeat1] = STATE(2277), [aux_sym__class_declaration_initializer_repeat2] = STATE(2536), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), - [anon_sym_extern] = ACTIONS(647), + [anon_sym_extern] = ACTIONS(645), [anon_sym_alias] = ACTIONS(29), - [anon_sym_SEMI] = ACTIONS(1005), + [anon_sym_SEMI] = ACTIONS(1003), [anon_sym_global] = ACTIONS(29), - [anon_sym_using] = ACTIONS(1007), - [anon_sym_unsafe] = ACTIONS(1009), - [anon_sym_static] = ACTIONS(655), - [anon_sym_LBRACK] = ACTIONS(657), + [anon_sym_using] = ACTIONS(1005), + [anon_sym_unsafe] = ACTIONS(1007), + [anon_sym_static] = ACTIONS(653), + [anon_sym_LBRACK] = ACTIONS(655), [anon_sym_LPAREN] = ACTIONS(43), - [anon_sym_return] = ACTIONS(1011), - [anon_sym_ref] = ACTIONS(661), - [anon_sym_LBRACE] = ACTIONS(1013), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_abstract] = ACTIONS(647), - [anon_sym_async] = ACTIONS(655), - [anon_sym_const] = ACTIONS(647), - [anon_sym_file] = ACTIONS(669), - [anon_sym_fixed] = ACTIONS(1015), - [anon_sym_internal] = ACTIONS(647), - [anon_sym_new] = ACTIONS(673), - [anon_sym_override] = ACTIONS(647), - [anon_sym_partial] = ACTIONS(647), - [anon_sym_private] = ACTIONS(647), - [anon_sym_protected] = ACTIONS(647), - [anon_sym_public] = ACTIONS(647), - [anon_sym_readonly] = ACTIONS(647), - [anon_sym_required] = ACTIONS(647), - [anon_sym_sealed] = ACTIONS(647), - [anon_sym_virtual] = ACTIONS(647), - [anon_sym_volatile] = ACTIONS(647), - [anon_sym_where] = ACTIONS(29), - [anon_sym_notnull] = ACTIONS(29), - [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1017), + [anon_sym_return] = ACTIONS(1009), + [anon_sym_ref] = ACTIONS(715), + [anon_sym_LBRACE] = ACTIONS(1011), + [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(1013), + [anon_sym_internal] = ACTIONS(645), + [anon_sym_new] = ACTIONS(675), + [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(1015), [anon_sym_BANG] = ACTIONS(75), [anon_sym_TILDE] = ACTIONS(75), [anon_sym_PLUS_PLUS] = ACTIONS(75), @@ -44840,23 +44726,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(1019), - [anon_sym_unchecked] = ACTIONS(1017), - [anon_sym_continue] = ACTIONS(1021), - [anon_sym_do] = ACTIONS(1023), - [anon_sym_while] = ACTIONS(1025), - [anon_sym_for] = ACTIONS(1027), - [anon_sym_lock] = ACTIONS(1029), - [anon_sym_yield] = ACTIONS(1031), - [anon_sym_switch] = ACTIONS(1033), + [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_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1035), - [anon_sym_try] = ACTIONS(1037), + [anon_sym_throw] = ACTIONS(1033), + [anon_sym_try] = ACTIONS(1035), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1039), + [anon_sym_await] = ACTIONS(1037), [anon_sym_foreach] = ACTIONS(117), - [anon_sym_goto] = ACTIONS(1041), - [anon_sym_if] = ACTIONS(1043), + [anon_sym_goto] = ACTIONS(1039), + [anon_sym_if] = ACTIONS(1041), [anon_sym_DOT_DOT] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), @@ -44882,7 +44768,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(1045), + [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), @@ -44899,114 +44785,114 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [82] = { - [sym_attribute_list] = STATE(3645), - [sym__attribute_list] = STATE(3580), - [sym_modifier] = STATE(3878), - [sym_parameter_list] = STATE(7311), - [sym_block] = STATE(7054), - [sym_variable_declaration] = STATE(7367), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(5160), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2204), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5867), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_statement] = STATE(7066), - [sym_break_statement] = STATE(7054), - [sym_checked_statement] = STATE(7054), - [sym_continue_statement] = STATE(7054), - [sym_do_statement] = STATE(7054), - [sym_empty_statement] = STATE(7054), - [sym_expression_statement] = STATE(7054), - [sym_fixed_statement] = STATE(7054), - [sym_for_statement] = STATE(7054), - [sym_return_statement] = STATE(7054), - [sym_lock_statement] = STATE(7054), - [sym_yield_statement] = STATE(7054), - [sym_switch_statement] = STATE(7054), - [sym_throw_statement] = STATE(7054), - [sym_try_statement] = STATE(7054), - [sym_unsafe_statement] = STATE(7054), - [sym_using_statement] = STATE(7054), - [sym_foreach_statement] = STATE(7054), - [sym__foreach_statement_initializer] = STATE(75), - [sym_goto_statement] = STATE(7054), - [sym_labeled_statement] = STATE(7054), - [sym_if_statement] = STATE(7054), - [sym_while_statement] = STATE(7054), - [sym_local_declaration_statement] = STATE(7054), - [sym_local_function_statement] = STATE(7054), - [sym__local_function_declaration] = STATE(6293), - [sym_expression] = STATE(5672), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3461), - [sym__expression_statement_expression] = STATE(5729), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3080), - [sym_postfix_unary_expression] = STATE(3111), - [sym_prefix_unary_expression] = STATE(3111), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6154), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3080), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3111), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3080), - [sym_member_access_expression] = STATE(2484), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3111), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7530), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(3080), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3080), - [sym_typeof_expression] = STATE(3080), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2484), - [sym_literal] = STATE(3080), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2333), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_top_level] = STATE(7054), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(3645), + [sym_attribute_list] = STATE(3612), + [sym__attribute_list] = STATE(3570), + [sym_modifier] = STATE(3845), + [sym_parameter_list] = STATE(7531), + [sym_block] = STATE(7039), + [sym_variable_declaration] = STATE(7397), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(5152), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2196), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5805), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_statement] = STATE(7205), + [sym_break_statement] = STATE(7039), + [sym_checked_statement] = STATE(7039), + [sym_continue_statement] = STATE(7039), + [sym_do_statement] = STATE(7039), + [sym_empty_statement] = STATE(7039), + [sym_expression_statement] = STATE(7039), + [sym_fixed_statement] = STATE(7039), + [sym_for_statement] = STATE(7039), + [sym_return_statement] = STATE(7039), + [sym_lock_statement] = STATE(7039), + [sym_yield_statement] = STATE(7039), + [sym_switch_statement] = STATE(7039), + [sym_throw_statement] = STATE(7039), + [sym_try_statement] = STATE(7039), + [sym_unsafe_statement] = STATE(7039), + [sym_using_statement] = STATE(7039), + [sym_foreach_statement] = STATE(7039), + [sym__foreach_statement_initializer] = STATE(76), + [sym_goto_statement] = STATE(7039), + [sym_labeled_statement] = STATE(7039), + [sym_if_statement] = STATE(7039), + [sym_while_statement] = STATE(7039), + [sym_local_declaration_statement] = STATE(7039), + [sym_local_function_statement] = STATE(7039), + [sym__local_function_declaration] = STATE(6285), + [sym_expression] = STATE(5660), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3356), + [sym__expression_statement_expression] = STATE(5711), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3102), + [sym_postfix_unary_expression] = STATE(3079), + [sym_prefix_unary_expression] = STATE(3079), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6134), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3102), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3079), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3102), + [sym_member_access_expression] = STATE(2472), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3079), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7425), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(3102), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3102), + [sym_typeof_expression] = STATE(3102), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2472), + [sym_literal] = STATE(3102), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2313), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_top_level] = STATE(7039), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(3612), [sym_preproc_region] = STATE(82), [sym_preproc_endregion] = STATE(82), [sym_preproc_line] = STATE(82), @@ -45016,44 +44902,44 @@ 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(2286), + [aux_sym__class_declaration_initializer_repeat1] = STATE(2277), [aux_sym__class_declaration_initializer_repeat2] = STATE(2536), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), - [anon_sym_extern] = ACTIONS(647), + [anon_sym_extern] = ACTIONS(645), [anon_sym_alias] = ACTIONS(29), - [anon_sym_SEMI] = ACTIONS(1005), + [anon_sym_SEMI] = ACTIONS(1003), [anon_sym_global] = ACTIONS(29), - [anon_sym_using] = ACTIONS(1007), - [anon_sym_unsafe] = ACTIONS(1009), - [anon_sym_static] = ACTIONS(655), - [anon_sym_LBRACK] = ACTIONS(657), + [anon_sym_using] = ACTIONS(1005), + [anon_sym_unsafe] = ACTIONS(1007), + [anon_sym_static] = ACTIONS(653), + [anon_sym_LBRACK] = ACTIONS(655), [anon_sym_LPAREN] = ACTIONS(43), - [anon_sym_return] = ACTIONS(1011), - [anon_sym_ref] = ACTIONS(661), - [anon_sym_LBRACE] = ACTIONS(1013), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_abstract] = ACTIONS(647), - [anon_sym_async] = ACTIONS(655), - [anon_sym_const] = ACTIONS(647), - [anon_sym_file] = ACTIONS(669), - [anon_sym_fixed] = ACTIONS(1015), - [anon_sym_internal] = ACTIONS(647), - [anon_sym_new] = ACTIONS(673), - [anon_sym_override] = ACTIONS(647), - [anon_sym_partial] = ACTIONS(647), - [anon_sym_private] = ACTIONS(647), - [anon_sym_protected] = ACTIONS(647), - [anon_sym_public] = ACTIONS(647), - [anon_sym_readonly] = ACTIONS(647), - [anon_sym_required] = ACTIONS(647), - [anon_sym_sealed] = ACTIONS(647), - [anon_sym_virtual] = ACTIONS(647), - [anon_sym_volatile] = ACTIONS(647), - [anon_sym_where] = ACTIONS(29), - [anon_sym_notnull] = ACTIONS(29), - [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1017), + [anon_sym_return] = ACTIONS(1009), + [anon_sym_ref] = ACTIONS(715), + [anon_sym_LBRACE] = ACTIONS(1011), + [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(1013), + [anon_sym_internal] = ACTIONS(645), + [anon_sym_new] = ACTIONS(675), + [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(1015), [anon_sym_BANG] = ACTIONS(75), [anon_sym_TILDE] = ACTIONS(75), [anon_sym_PLUS_PLUS] = ACTIONS(75), @@ -45070,23 +44956,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(1019), - [anon_sym_unchecked] = ACTIONS(1017), - [anon_sym_continue] = ACTIONS(1021), - [anon_sym_do] = ACTIONS(1023), - [anon_sym_while] = ACTIONS(1025), - [anon_sym_for] = ACTIONS(1027), - [anon_sym_lock] = ACTIONS(1029), - [anon_sym_yield] = ACTIONS(1031), - [anon_sym_switch] = ACTIONS(1033), + [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_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1035), - [anon_sym_try] = ACTIONS(1037), + [anon_sym_throw] = ACTIONS(1033), + [anon_sym_try] = ACTIONS(1035), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1039), + [anon_sym_await] = ACTIONS(1037), [anon_sym_foreach] = ACTIONS(117), - [anon_sym_goto] = ACTIONS(1041), - [anon_sym_if] = ACTIONS(1043), + [anon_sym_goto] = ACTIONS(1039), + [anon_sym_if] = ACTIONS(1041), [anon_sym_DOT_DOT] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), @@ -45112,7 +44998,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(1045), + [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), @@ -45129,30 +45015,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [83] = { - [sym_attribute_list] = STATE(3645), - [sym__attribute_list] = STATE(3580), - [sym_modifier] = STATE(3878), - [sym_parameter_list] = STATE(7311), + [sym_attribute_list] = STATE(3612), + [sym__attribute_list] = STATE(3570), + [sym_modifier] = STATE(3845), + [sym_parameter_list] = STATE(7531), [sym_block] = STATE(2026), - [sym_variable_declaration] = STATE(7363), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(5160), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2204), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5867), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_statement] = STATE(2045), + [sym_variable_declaration] = STATE(7610), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(5152), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2196), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5805), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_statement] = STATE(2013), [sym_break_statement] = STATE(2026), [sym_checked_statement] = STATE(2026), [sym_continue_statement] = STATE(2026), @@ -45170,73 +45056,73 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_unsafe_statement] = STATE(2026), [sym_using_statement] = STATE(2026), [sym_foreach_statement] = STATE(2026), - [sym__foreach_statement_initializer] = STATE(70), + [sym__foreach_statement_initializer] = STATE(90), [sym_goto_statement] = STATE(2026), [sym_labeled_statement] = STATE(2026), [sym_if_statement] = STATE(2026), [sym_while_statement] = STATE(2026), [sym_local_declaration_statement] = STATE(2026), [sym_local_function_statement] = STATE(2026), - [sym__local_function_declaration] = STATE(6317), - [sym_expression] = STATE(5672), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3461), - [sym__expression_statement_expression] = STATE(5719), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3080), - [sym_postfix_unary_expression] = STATE(3111), - [sym_prefix_unary_expression] = STATE(3111), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6154), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3080), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3111), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3080), - [sym_member_access_expression] = STATE(2484), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3111), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7530), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(3080), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3080), - [sym_typeof_expression] = STATE(3080), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2484), - [sym_literal] = STATE(3080), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2348), - [sym__reserved_identifier] = STATE(2175), + [sym__local_function_declaration] = STATE(6290), + [sym_expression] = STATE(5660), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3356), + [sym__expression_statement_expression] = STATE(5708), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3102), + [sym_postfix_unary_expression] = STATE(3079), + [sym_prefix_unary_expression] = STATE(3079), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6134), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3102), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3079), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3102), + [sym_member_access_expression] = STATE(2472), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3079), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7425), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(3102), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3102), + [sym_typeof_expression] = STATE(3102), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2472), + [sym_literal] = STATE(3102), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2332), + [sym__reserved_identifier] = STATE(2168), [sym_preproc_if_in_top_level] = STATE(2026), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(3645), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(3612), [sym_preproc_region] = STATE(83), [sym_preproc_endregion] = STATE(83), [sym_preproc_line] = STATE(83), @@ -45246,40 +45132,40 @@ 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(2286), - [aux_sym__class_declaration_initializer_repeat2] = STATE(2539), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [aux_sym__class_declaration_initializer_repeat1] = STATE(2277), + [aux_sym__class_declaration_initializer_repeat2] = STATE(2535), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), - [anon_sym_extern] = ACTIONS(647), + [anon_sym_extern] = ACTIONS(645), [anon_sym_alias] = ACTIONS(29), [anon_sym_SEMI] = ACTIONS(31), [anon_sym_global] = ACTIONS(29), - [anon_sym_using] = ACTIONS(997), - [anon_sym_unsafe] = ACTIONS(999), - [anon_sym_static] = ACTIONS(655), - [anon_sym_LBRACK] = ACTIONS(657), + [anon_sym_using] = ACTIONS(987), + [anon_sym_unsafe] = ACTIONS(989), + [anon_sym_static] = ACTIONS(653), + [anon_sym_LBRACK] = ACTIONS(655), [anon_sym_LPAREN] = ACTIONS(43), [anon_sym_return] = ACTIONS(45), - [anon_sym_ref] = ACTIONS(661), + [anon_sym_ref] = ACTIONS(715), [anon_sym_LBRACE] = ACTIONS(57), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_abstract] = ACTIONS(647), - [anon_sym_async] = ACTIONS(655), - [anon_sym_const] = ACTIONS(647), - [anon_sym_file] = ACTIONS(669), - [anon_sym_fixed] = ACTIONS(1001), - [anon_sym_internal] = ACTIONS(647), - [anon_sym_new] = ACTIONS(673), - [anon_sym_override] = ACTIONS(647), - [anon_sym_partial] = ACTIONS(647), - [anon_sym_private] = ACTIONS(647), - [anon_sym_protected] = ACTIONS(647), - [anon_sym_public] = ACTIONS(647), - [anon_sym_readonly] = ACTIONS(647), - [anon_sym_required] = ACTIONS(647), - [anon_sym_sealed] = ACTIONS(647), - [anon_sym_virtual] = ACTIONS(647), - [anon_sym_volatile] = ACTIONS(647), + [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(991), + [anon_sym_internal] = ACTIONS(645), + [anon_sym_new] = ACTIONS(675), + [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), @@ -45342,7 +45228,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(1003), + [aux_sym_preproc_if_token1] = ACTIONS(993), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -45359,30 +45245,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [84] = { - [sym_attribute_list] = STATE(3645), - [sym__attribute_list] = STATE(3580), - [sym_modifier] = STATE(3878), - [sym_parameter_list] = STATE(7311), + [sym_attribute_list] = STATE(3612), + [sym__attribute_list] = STATE(3570), + [sym_modifier] = STATE(3845), + [sym_parameter_list] = STATE(7531), [sym_block] = STATE(2026), - [sym_variable_declaration] = STATE(7363), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(5160), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2204), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5867), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_statement] = STATE(2008), + [sym_variable_declaration] = STATE(7610), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(5152), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2196), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5805), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_statement] = STATE(2048), [sym_break_statement] = STATE(2026), [sym_checked_statement] = STATE(2026), [sym_continue_statement] = STATE(2026), @@ -45400,73 +45286,73 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_unsafe_statement] = STATE(2026), [sym_using_statement] = STATE(2026), [sym_foreach_statement] = STATE(2026), - [sym__foreach_statement_initializer] = STATE(70), + [sym__foreach_statement_initializer] = STATE(90), [sym_goto_statement] = STATE(2026), [sym_labeled_statement] = STATE(2026), [sym_if_statement] = STATE(2026), [sym_while_statement] = STATE(2026), [sym_local_declaration_statement] = STATE(2026), [sym_local_function_statement] = STATE(2026), - [sym__local_function_declaration] = STATE(6317), - [sym_expression] = STATE(5672), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3461), - [sym__expression_statement_expression] = STATE(5719), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3080), - [sym_postfix_unary_expression] = STATE(3111), - [sym_prefix_unary_expression] = STATE(3111), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6154), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3080), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3111), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3080), - [sym_member_access_expression] = STATE(2484), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3111), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7530), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(3080), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3080), - [sym_typeof_expression] = STATE(3080), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2484), - [sym_literal] = STATE(3080), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2348), - [sym__reserved_identifier] = STATE(2175), + [sym__local_function_declaration] = STATE(6290), + [sym_expression] = STATE(5660), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3356), + [sym__expression_statement_expression] = STATE(5708), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3102), + [sym_postfix_unary_expression] = STATE(3079), + [sym_prefix_unary_expression] = STATE(3079), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6134), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3102), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3079), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3102), + [sym_member_access_expression] = STATE(2472), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3079), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7425), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(3102), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3102), + [sym_typeof_expression] = STATE(3102), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2472), + [sym_literal] = STATE(3102), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2332), + [sym__reserved_identifier] = STATE(2168), [sym_preproc_if_in_top_level] = STATE(2026), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(3645), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(3612), [sym_preproc_region] = STATE(84), [sym_preproc_endregion] = STATE(84), [sym_preproc_line] = STATE(84), @@ -45476,40 +45362,40 @@ 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(2286), - [aux_sym__class_declaration_initializer_repeat2] = STATE(2539), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [aux_sym__class_declaration_initializer_repeat1] = STATE(2277), + [aux_sym__class_declaration_initializer_repeat2] = STATE(2535), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), - [anon_sym_extern] = ACTIONS(647), + [anon_sym_extern] = ACTIONS(645), [anon_sym_alias] = ACTIONS(29), [anon_sym_SEMI] = ACTIONS(31), [anon_sym_global] = ACTIONS(29), - [anon_sym_using] = ACTIONS(997), - [anon_sym_unsafe] = ACTIONS(999), - [anon_sym_static] = ACTIONS(655), - [anon_sym_LBRACK] = ACTIONS(657), + [anon_sym_using] = ACTIONS(987), + [anon_sym_unsafe] = ACTIONS(989), + [anon_sym_static] = ACTIONS(653), + [anon_sym_LBRACK] = ACTIONS(655), [anon_sym_LPAREN] = ACTIONS(43), [anon_sym_return] = ACTIONS(45), - [anon_sym_ref] = ACTIONS(661), + [anon_sym_ref] = ACTIONS(715), [anon_sym_LBRACE] = ACTIONS(57), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_abstract] = ACTIONS(647), - [anon_sym_async] = ACTIONS(655), - [anon_sym_const] = ACTIONS(647), - [anon_sym_file] = ACTIONS(669), - [anon_sym_fixed] = ACTIONS(1001), - [anon_sym_internal] = ACTIONS(647), - [anon_sym_new] = ACTIONS(673), - [anon_sym_override] = ACTIONS(647), - [anon_sym_partial] = ACTIONS(647), - [anon_sym_private] = ACTIONS(647), - [anon_sym_protected] = ACTIONS(647), - [anon_sym_public] = ACTIONS(647), - [anon_sym_readonly] = ACTIONS(647), - [anon_sym_required] = ACTIONS(647), - [anon_sym_sealed] = ACTIONS(647), - [anon_sym_virtual] = ACTIONS(647), - [anon_sym_volatile] = ACTIONS(647), + [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(991), + [anon_sym_internal] = ACTIONS(645), + [anon_sym_new] = ACTIONS(675), + [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), @@ -45572,7 +45458,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(1003), + [aux_sym_preproc_if_token1] = ACTIONS(993), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -45589,114 +45475,114 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [85] = { - [sym_attribute_list] = STATE(3645), - [sym__attribute_list] = STATE(3580), - [sym_modifier] = STATE(3878), - [sym_parameter_list] = STATE(7311), - [sym_block] = STATE(7054), - [sym_variable_declaration] = STATE(7367), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(5160), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2204), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5867), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_statement] = STATE(7080), - [sym_break_statement] = STATE(7054), - [sym_checked_statement] = STATE(7054), - [sym_continue_statement] = STATE(7054), - [sym_do_statement] = STATE(7054), - [sym_empty_statement] = STATE(7054), - [sym_expression_statement] = STATE(7054), - [sym_fixed_statement] = STATE(7054), - [sym_for_statement] = STATE(7054), - [sym_return_statement] = STATE(7054), - [sym_lock_statement] = STATE(7054), - [sym_yield_statement] = STATE(7054), - [sym_switch_statement] = STATE(7054), - [sym_throw_statement] = STATE(7054), - [sym_try_statement] = STATE(7054), - [sym_unsafe_statement] = STATE(7054), - [sym_using_statement] = STATE(7054), - [sym_foreach_statement] = STATE(7054), - [sym__foreach_statement_initializer] = STATE(75), - [sym_goto_statement] = STATE(7054), - [sym_labeled_statement] = STATE(7054), - [sym_if_statement] = STATE(7054), - [sym_while_statement] = STATE(7054), - [sym_local_declaration_statement] = STATE(7054), - [sym_local_function_statement] = STATE(7054), - [sym__local_function_declaration] = STATE(6293), - [sym_expression] = STATE(5672), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3461), - [sym__expression_statement_expression] = STATE(5729), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3080), - [sym_postfix_unary_expression] = STATE(3111), - [sym_prefix_unary_expression] = STATE(3111), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6154), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3080), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3111), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3080), - [sym_member_access_expression] = STATE(2484), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3111), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7530), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(3080), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3080), - [sym_typeof_expression] = STATE(3080), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2484), - [sym_literal] = STATE(3080), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2333), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_top_level] = STATE(7054), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(3645), + [sym_attribute_list] = STATE(3612), + [sym__attribute_list] = STATE(3570), + [sym_modifier] = STATE(3845), + [sym_parameter_list] = STATE(7531), + [sym_block] = STATE(7039), + [sym_variable_declaration] = STATE(7397), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(5152), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2196), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5805), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_statement] = STATE(7221), + [sym_break_statement] = STATE(7039), + [sym_checked_statement] = STATE(7039), + [sym_continue_statement] = STATE(7039), + [sym_do_statement] = STATE(7039), + [sym_empty_statement] = STATE(7039), + [sym_expression_statement] = STATE(7039), + [sym_fixed_statement] = STATE(7039), + [sym_for_statement] = STATE(7039), + [sym_return_statement] = STATE(7039), + [sym_lock_statement] = STATE(7039), + [sym_yield_statement] = STATE(7039), + [sym_switch_statement] = STATE(7039), + [sym_throw_statement] = STATE(7039), + [sym_try_statement] = STATE(7039), + [sym_unsafe_statement] = STATE(7039), + [sym_using_statement] = STATE(7039), + [sym_foreach_statement] = STATE(7039), + [sym__foreach_statement_initializer] = STATE(76), + [sym_goto_statement] = STATE(7039), + [sym_labeled_statement] = STATE(7039), + [sym_if_statement] = STATE(7039), + [sym_while_statement] = STATE(7039), + [sym_local_declaration_statement] = STATE(7039), + [sym_local_function_statement] = STATE(7039), + [sym__local_function_declaration] = STATE(6285), + [sym_expression] = STATE(5660), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3356), + [sym__expression_statement_expression] = STATE(5711), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3102), + [sym_postfix_unary_expression] = STATE(3079), + [sym_prefix_unary_expression] = STATE(3079), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6134), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3102), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3079), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3102), + [sym_member_access_expression] = STATE(2472), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3079), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7425), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(3102), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3102), + [sym_typeof_expression] = STATE(3102), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2472), + [sym_literal] = STATE(3102), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2313), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_top_level] = STATE(7039), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(3612), [sym_preproc_region] = STATE(85), [sym_preproc_endregion] = STATE(85), [sym_preproc_line] = STATE(85), @@ -45706,44 +45592,44 @@ 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(2286), + [aux_sym__class_declaration_initializer_repeat1] = STATE(2277), [aux_sym__class_declaration_initializer_repeat2] = STATE(2536), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), - [anon_sym_extern] = ACTIONS(647), + [anon_sym_extern] = ACTIONS(645), [anon_sym_alias] = ACTIONS(29), - [anon_sym_SEMI] = ACTIONS(1005), + [anon_sym_SEMI] = ACTIONS(1003), [anon_sym_global] = ACTIONS(29), - [anon_sym_using] = ACTIONS(1007), - [anon_sym_unsafe] = ACTIONS(1009), - [anon_sym_static] = ACTIONS(655), - [anon_sym_LBRACK] = ACTIONS(657), + [anon_sym_using] = ACTIONS(1005), + [anon_sym_unsafe] = ACTIONS(1007), + [anon_sym_static] = ACTIONS(653), + [anon_sym_LBRACK] = ACTIONS(655), [anon_sym_LPAREN] = ACTIONS(43), - [anon_sym_return] = ACTIONS(1011), - [anon_sym_ref] = ACTIONS(661), - [anon_sym_LBRACE] = ACTIONS(1013), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_abstract] = ACTIONS(647), - [anon_sym_async] = ACTIONS(655), - [anon_sym_const] = ACTIONS(647), - [anon_sym_file] = ACTIONS(669), - [anon_sym_fixed] = ACTIONS(1015), - [anon_sym_internal] = ACTIONS(647), - [anon_sym_new] = ACTIONS(673), - [anon_sym_override] = ACTIONS(647), - [anon_sym_partial] = ACTIONS(647), - [anon_sym_private] = ACTIONS(647), - [anon_sym_protected] = ACTIONS(647), - [anon_sym_public] = ACTIONS(647), - [anon_sym_readonly] = ACTIONS(647), - [anon_sym_required] = ACTIONS(647), - [anon_sym_sealed] = ACTIONS(647), - [anon_sym_virtual] = ACTIONS(647), - [anon_sym_volatile] = ACTIONS(647), - [anon_sym_where] = ACTIONS(29), - [anon_sym_notnull] = ACTIONS(29), - [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1017), + [anon_sym_return] = ACTIONS(1009), + [anon_sym_ref] = ACTIONS(715), + [anon_sym_LBRACE] = ACTIONS(1011), + [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(1013), + [anon_sym_internal] = ACTIONS(645), + [anon_sym_new] = ACTIONS(675), + [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(1015), [anon_sym_BANG] = ACTIONS(75), [anon_sym_TILDE] = ACTIONS(75), [anon_sym_PLUS_PLUS] = ACTIONS(75), @@ -45760,23 +45646,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(1019), - [anon_sym_unchecked] = ACTIONS(1017), - [anon_sym_continue] = ACTIONS(1021), - [anon_sym_do] = ACTIONS(1023), - [anon_sym_while] = ACTIONS(1025), - [anon_sym_for] = ACTIONS(1027), - [anon_sym_lock] = ACTIONS(1029), - [anon_sym_yield] = ACTIONS(1031), - [anon_sym_switch] = ACTIONS(1033), + [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_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1035), - [anon_sym_try] = ACTIONS(1037), + [anon_sym_throw] = ACTIONS(1033), + [anon_sym_try] = ACTIONS(1035), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1039), + [anon_sym_await] = ACTIONS(1037), [anon_sym_foreach] = ACTIONS(117), - [anon_sym_goto] = ACTIONS(1041), - [anon_sym_if] = ACTIONS(1043), + [anon_sym_goto] = ACTIONS(1039), + [anon_sym_if] = ACTIONS(1041), [anon_sym_DOT_DOT] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), @@ -45802,7 +45688,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(1045), + [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), @@ -45819,114 +45705,114 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [86] = { - [sym_attribute_list] = STATE(3645), - [sym__attribute_list] = STATE(3580), - [sym_modifier] = STATE(3878), - [sym_parameter_list] = STATE(7311), - [sym_block] = STATE(7054), - [sym_variable_declaration] = STATE(7367), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(5160), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2204), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5867), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_statement] = STATE(7084), - [sym_break_statement] = STATE(7054), - [sym_checked_statement] = STATE(7054), - [sym_continue_statement] = STATE(7054), - [sym_do_statement] = STATE(7054), - [sym_empty_statement] = STATE(7054), - [sym_expression_statement] = STATE(7054), - [sym_fixed_statement] = STATE(7054), - [sym_for_statement] = STATE(7054), - [sym_return_statement] = STATE(7054), - [sym_lock_statement] = STATE(7054), - [sym_yield_statement] = STATE(7054), - [sym_switch_statement] = STATE(7054), - [sym_throw_statement] = STATE(7054), - [sym_try_statement] = STATE(7054), - [sym_unsafe_statement] = STATE(7054), - [sym_using_statement] = STATE(7054), - [sym_foreach_statement] = STATE(7054), - [sym__foreach_statement_initializer] = STATE(75), - [sym_goto_statement] = STATE(7054), - [sym_labeled_statement] = STATE(7054), - [sym_if_statement] = STATE(7054), - [sym_while_statement] = STATE(7054), - [sym_local_declaration_statement] = STATE(7054), - [sym_local_function_statement] = STATE(7054), - [sym__local_function_declaration] = STATE(6293), - [sym_expression] = STATE(5672), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3461), - [sym__expression_statement_expression] = STATE(5729), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3080), - [sym_postfix_unary_expression] = STATE(3111), - [sym_prefix_unary_expression] = STATE(3111), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6154), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3080), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3111), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3080), - [sym_member_access_expression] = STATE(2484), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3111), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7530), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(3080), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3080), - [sym_typeof_expression] = STATE(3080), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2484), - [sym_literal] = STATE(3080), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2333), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_top_level] = STATE(7054), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(3645), + [sym_attribute_list] = STATE(3612), + [sym__attribute_list] = STATE(3570), + [sym_modifier] = STATE(3845), + [sym_parameter_list] = STATE(7531), + [sym_block] = STATE(7039), + [sym_variable_declaration] = STATE(7397), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(5152), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2196), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5805), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_statement] = STATE(7229), + [sym_break_statement] = STATE(7039), + [sym_checked_statement] = STATE(7039), + [sym_continue_statement] = STATE(7039), + [sym_do_statement] = STATE(7039), + [sym_empty_statement] = STATE(7039), + [sym_expression_statement] = STATE(7039), + [sym_fixed_statement] = STATE(7039), + [sym_for_statement] = STATE(7039), + [sym_return_statement] = STATE(7039), + [sym_lock_statement] = STATE(7039), + [sym_yield_statement] = STATE(7039), + [sym_switch_statement] = STATE(7039), + [sym_throw_statement] = STATE(7039), + [sym_try_statement] = STATE(7039), + [sym_unsafe_statement] = STATE(7039), + [sym_using_statement] = STATE(7039), + [sym_foreach_statement] = STATE(7039), + [sym__foreach_statement_initializer] = STATE(76), + [sym_goto_statement] = STATE(7039), + [sym_labeled_statement] = STATE(7039), + [sym_if_statement] = STATE(7039), + [sym_while_statement] = STATE(7039), + [sym_local_declaration_statement] = STATE(7039), + [sym_local_function_statement] = STATE(7039), + [sym__local_function_declaration] = STATE(6285), + [sym_expression] = STATE(5660), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3356), + [sym__expression_statement_expression] = STATE(5711), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3102), + [sym_postfix_unary_expression] = STATE(3079), + [sym_prefix_unary_expression] = STATE(3079), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6134), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3102), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3079), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3102), + [sym_member_access_expression] = STATE(2472), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3079), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7425), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(3102), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3102), + [sym_typeof_expression] = STATE(3102), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2472), + [sym_literal] = STATE(3102), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2313), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_top_level] = STATE(7039), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(3612), [sym_preproc_region] = STATE(86), [sym_preproc_endregion] = STATE(86), [sym_preproc_line] = STATE(86), @@ -45936,44 +45822,44 @@ 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(2286), + [aux_sym__class_declaration_initializer_repeat1] = STATE(2277), [aux_sym__class_declaration_initializer_repeat2] = STATE(2536), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), - [anon_sym_extern] = ACTIONS(647), + [anon_sym_extern] = ACTIONS(645), [anon_sym_alias] = ACTIONS(29), - [anon_sym_SEMI] = ACTIONS(1005), + [anon_sym_SEMI] = ACTIONS(1003), [anon_sym_global] = ACTIONS(29), - [anon_sym_using] = ACTIONS(1007), - [anon_sym_unsafe] = ACTIONS(1009), - [anon_sym_static] = ACTIONS(655), - [anon_sym_LBRACK] = ACTIONS(657), + [anon_sym_using] = ACTIONS(1005), + [anon_sym_unsafe] = ACTIONS(1007), + [anon_sym_static] = ACTIONS(653), + [anon_sym_LBRACK] = ACTIONS(655), [anon_sym_LPAREN] = ACTIONS(43), - [anon_sym_return] = ACTIONS(1011), - [anon_sym_ref] = ACTIONS(661), - [anon_sym_LBRACE] = ACTIONS(1013), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_abstract] = ACTIONS(647), - [anon_sym_async] = ACTIONS(655), - [anon_sym_const] = ACTIONS(647), - [anon_sym_file] = ACTIONS(669), - [anon_sym_fixed] = ACTIONS(1015), - [anon_sym_internal] = ACTIONS(647), - [anon_sym_new] = ACTIONS(673), - [anon_sym_override] = ACTIONS(647), - [anon_sym_partial] = ACTIONS(647), - [anon_sym_private] = ACTIONS(647), - [anon_sym_protected] = ACTIONS(647), - [anon_sym_public] = ACTIONS(647), - [anon_sym_readonly] = ACTIONS(647), - [anon_sym_required] = ACTIONS(647), - [anon_sym_sealed] = ACTIONS(647), - [anon_sym_virtual] = ACTIONS(647), - [anon_sym_volatile] = ACTIONS(647), - [anon_sym_where] = ACTIONS(29), - [anon_sym_notnull] = ACTIONS(29), - [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1017), + [anon_sym_return] = ACTIONS(1009), + [anon_sym_ref] = ACTIONS(715), + [anon_sym_LBRACE] = ACTIONS(1011), + [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(1013), + [anon_sym_internal] = ACTIONS(645), + [anon_sym_new] = ACTIONS(675), + [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(1015), [anon_sym_BANG] = ACTIONS(75), [anon_sym_TILDE] = ACTIONS(75), [anon_sym_PLUS_PLUS] = ACTIONS(75), @@ -45990,23 +45876,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(1019), - [anon_sym_unchecked] = ACTIONS(1017), - [anon_sym_continue] = ACTIONS(1021), - [anon_sym_do] = ACTIONS(1023), - [anon_sym_while] = ACTIONS(1025), - [anon_sym_for] = ACTIONS(1027), - [anon_sym_lock] = ACTIONS(1029), - [anon_sym_yield] = ACTIONS(1031), - [anon_sym_switch] = ACTIONS(1033), + [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_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1035), - [anon_sym_try] = ACTIONS(1037), + [anon_sym_throw] = ACTIONS(1033), + [anon_sym_try] = ACTIONS(1035), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1039), + [anon_sym_await] = ACTIONS(1037), [anon_sym_foreach] = ACTIONS(117), - [anon_sym_goto] = ACTIONS(1041), - [anon_sym_if] = ACTIONS(1043), + [anon_sym_goto] = ACTIONS(1039), + [anon_sym_if] = ACTIONS(1041), [anon_sym_DOT_DOT] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), @@ -46032,7 +45918,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(1045), + [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), @@ -46049,114 +45935,114 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [87] = { - [sym_attribute_list] = STATE(3645), - [sym__attribute_list] = STATE(3580), - [sym_modifier] = STATE(3878), - [sym_parameter_list] = STATE(7311), - [sym_block] = STATE(7054), - [sym_variable_declaration] = STATE(7367), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(5160), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2204), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5867), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_statement] = STATE(7088), - [sym_break_statement] = STATE(7054), - [sym_checked_statement] = STATE(7054), - [sym_continue_statement] = STATE(7054), - [sym_do_statement] = STATE(7054), - [sym_empty_statement] = STATE(7054), - [sym_expression_statement] = STATE(7054), - [sym_fixed_statement] = STATE(7054), - [sym_for_statement] = STATE(7054), - [sym_return_statement] = STATE(7054), - [sym_lock_statement] = STATE(7054), - [sym_yield_statement] = STATE(7054), - [sym_switch_statement] = STATE(7054), - [sym_throw_statement] = STATE(7054), - [sym_try_statement] = STATE(7054), - [sym_unsafe_statement] = STATE(7054), - [sym_using_statement] = STATE(7054), - [sym_foreach_statement] = STATE(7054), - [sym__foreach_statement_initializer] = STATE(75), - [sym_goto_statement] = STATE(7054), - [sym_labeled_statement] = STATE(7054), - [sym_if_statement] = STATE(7054), - [sym_while_statement] = STATE(7054), - [sym_local_declaration_statement] = STATE(7054), - [sym_local_function_statement] = STATE(7054), - [sym__local_function_declaration] = STATE(6293), - [sym_expression] = STATE(5672), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3461), - [sym__expression_statement_expression] = STATE(5729), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3080), - [sym_postfix_unary_expression] = STATE(3111), - [sym_prefix_unary_expression] = STATE(3111), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6154), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3080), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3111), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3080), - [sym_member_access_expression] = STATE(2484), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3111), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7530), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(3080), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3080), - [sym_typeof_expression] = STATE(3080), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2484), - [sym_literal] = STATE(3080), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2333), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_top_level] = STATE(7054), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(3645), + [sym_attribute_list] = STATE(3612), + [sym__attribute_list] = STATE(3570), + [sym_modifier] = STATE(3845), + [sym_parameter_list] = STATE(7531), + [sym_block] = STATE(2026), + [sym_variable_declaration] = STATE(7610), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(5152), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2196), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5805), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_statement] = STATE(2047), + [sym_break_statement] = STATE(2026), + [sym_checked_statement] = STATE(2026), + [sym_continue_statement] = STATE(2026), + [sym_do_statement] = STATE(2026), + [sym_empty_statement] = STATE(2026), + [sym_expression_statement] = STATE(2026), + [sym_fixed_statement] = STATE(2026), + [sym_for_statement] = STATE(2026), + [sym_return_statement] = STATE(2026), + [sym_lock_statement] = STATE(2026), + [sym_yield_statement] = STATE(2026), + [sym_switch_statement] = STATE(2026), + [sym_throw_statement] = STATE(2026), + [sym_try_statement] = STATE(2026), + [sym_unsafe_statement] = STATE(2026), + [sym_using_statement] = STATE(2026), + [sym_foreach_statement] = STATE(2026), + [sym__foreach_statement_initializer] = STATE(90), + [sym_goto_statement] = STATE(2026), + [sym_labeled_statement] = STATE(2026), + [sym_if_statement] = STATE(2026), + [sym_while_statement] = STATE(2026), + [sym_local_declaration_statement] = STATE(2026), + [sym_local_function_statement] = STATE(2026), + [sym__local_function_declaration] = STATE(6290), + [sym_expression] = STATE(5660), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3356), + [sym__expression_statement_expression] = STATE(5708), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3102), + [sym_postfix_unary_expression] = STATE(3079), + [sym_prefix_unary_expression] = STATE(3079), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6134), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3102), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3079), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3102), + [sym_member_access_expression] = STATE(2472), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3079), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7425), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(3102), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3102), + [sym_typeof_expression] = STATE(3102), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2472), + [sym_literal] = STATE(3102), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2332), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_top_level] = STATE(2026), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(3612), [sym_preproc_region] = STATE(87), [sym_preproc_endregion] = STATE(87), [sym_preproc_line] = STATE(87), @@ -46166,44 +46052,44 @@ 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(2286), - [aux_sym__class_declaration_initializer_repeat2] = STATE(2536), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [aux_sym__class_declaration_initializer_repeat1] = STATE(2277), + [aux_sym__class_declaration_initializer_repeat2] = STATE(2535), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), - [anon_sym_extern] = ACTIONS(647), + [anon_sym_extern] = ACTIONS(645), [anon_sym_alias] = ACTIONS(29), - [anon_sym_SEMI] = ACTIONS(1005), + [anon_sym_SEMI] = ACTIONS(31), [anon_sym_global] = ACTIONS(29), - [anon_sym_using] = ACTIONS(1007), - [anon_sym_unsafe] = ACTIONS(1009), - [anon_sym_static] = ACTIONS(655), - [anon_sym_LBRACK] = ACTIONS(657), + [anon_sym_using] = ACTIONS(987), + [anon_sym_unsafe] = ACTIONS(989), + [anon_sym_static] = ACTIONS(653), + [anon_sym_LBRACK] = ACTIONS(655), [anon_sym_LPAREN] = ACTIONS(43), - [anon_sym_return] = ACTIONS(1011), - [anon_sym_ref] = ACTIONS(661), - [anon_sym_LBRACE] = ACTIONS(1013), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_abstract] = ACTIONS(647), - [anon_sym_async] = ACTIONS(655), - [anon_sym_const] = ACTIONS(647), - [anon_sym_file] = ACTIONS(669), - [anon_sym_fixed] = ACTIONS(1015), - [anon_sym_internal] = ACTIONS(647), - [anon_sym_new] = ACTIONS(673), - [anon_sym_override] = ACTIONS(647), - [anon_sym_partial] = ACTIONS(647), - [anon_sym_private] = ACTIONS(647), - [anon_sym_protected] = ACTIONS(647), - [anon_sym_public] = ACTIONS(647), - [anon_sym_readonly] = ACTIONS(647), - [anon_sym_required] = ACTIONS(647), - [anon_sym_sealed] = ACTIONS(647), - [anon_sym_virtual] = ACTIONS(647), - [anon_sym_volatile] = ACTIONS(647), - [anon_sym_where] = ACTIONS(29), - [anon_sym_notnull] = ACTIONS(29), - [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1017), + [anon_sym_return] = ACTIONS(45), + [anon_sym_ref] = ACTIONS(715), + [anon_sym_LBRACE] = ACTIONS(57), + [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(991), + [anon_sym_internal] = ACTIONS(645), + [anon_sym_new] = ACTIONS(675), + [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(73), [anon_sym_BANG] = ACTIONS(75), [anon_sym_TILDE] = ACTIONS(75), [anon_sym_PLUS_PLUS] = ACTIONS(75), @@ -46220,23 +46106,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(1019), - [anon_sym_unchecked] = ACTIONS(1017), - [anon_sym_continue] = ACTIONS(1021), - [anon_sym_do] = ACTIONS(1023), - [anon_sym_while] = ACTIONS(1025), - [anon_sym_for] = ACTIONS(1027), - [anon_sym_lock] = ACTIONS(1029), - [anon_sym_yield] = ACTIONS(1031), - [anon_sym_switch] = ACTIONS(1033), + [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(1035), - [anon_sym_try] = ACTIONS(1037), + [anon_sym_throw] = ACTIONS(111), + [anon_sym_try] = ACTIONS(113), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1039), + [anon_sym_await] = ACTIONS(115), [anon_sym_foreach] = ACTIONS(117), - [anon_sym_goto] = ACTIONS(1041), - [anon_sym_if] = ACTIONS(1043), + [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), @@ -46262,7 +46148,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(1045), + [aux_sym_preproc_if_token1] = ACTIONS(993), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -46279,114 +46165,114 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [88] = { - [sym_attribute_list] = STATE(3645), - [sym__attribute_list] = STATE(3580), - [sym_modifier] = STATE(3878), - [sym_parameter_list] = STATE(7311), - [sym_block] = STATE(7054), - [sym_variable_declaration] = STATE(7367), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(5160), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2204), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5867), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_statement] = STATE(7105), - [sym_break_statement] = STATE(7054), - [sym_checked_statement] = STATE(7054), - [sym_continue_statement] = STATE(7054), - [sym_do_statement] = STATE(7054), - [sym_empty_statement] = STATE(7054), - [sym_expression_statement] = STATE(7054), - [sym_fixed_statement] = STATE(7054), - [sym_for_statement] = STATE(7054), - [sym_return_statement] = STATE(7054), - [sym_lock_statement] = STATE(7054), - [sym_yield_statement] = STATE(7054), - [sym_switch_statement] = STATE(7054), - [sym_throw_statement] = STATE(7054), - [sym_try_statement] = STATE(7054), - [sym_unsafe_statement] = STATE(7054), - [sym_using_statement] = STATE(7054), - [sym_foreach_statement] = STATE(7054), - [sym__foreach_statement_initializer] = STATE(75), - [sym_goto_statement] = STATE(7054), - [sym_labeled_statement] = STATE(7054), - [sym_if_statement] = STATE(7054), - [sym_while_statement] = STATE(7054), - [sym_local_declaration_statement] = STATE(7054), - [sym_local_function_statement] = STATE(7054), - [sym__local_function_declaration] = STATE(6293), - [sym_expression] = STATE(5672), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3461), - [sym__expression_statement_expression] = STATE(5729), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3080), - [sym_postfix_unary_expression] = STATE(3111), - [sym_prefix_unary_expression] = STATE(3111), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6154), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3080), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3111), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3080), - [sym_member_access_expression] = STATE(2484), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3111), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7530), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(3080), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3080), - [sym_typeof_expression] = STATE(3080), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2484), - [sym_literal] = STATE(3080), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2333), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_top_level] = STATE(7054), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(3645), + [sym_attribute_list] = STATE(3612), + [sym__attribute_list] = STATE(3570), + [sym_modifier] = STATE(3845), + [sym_parameter_list] = STATE(7531), + [sym_block] = STATE(7039), + [sym_variable_declaration] = STATE(7397), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(5152), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2196), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5805), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_statement] = STATE(7230), + [sym_break_statement] = STATE(7039), + [sym_checked_statement] = STATE(7039), + [sym_continue_statement] = STATE(7039), + [sym_do_statement] = STATE(7039), + [sym_empty_statement] = STATE(7039), + [sym_expression_statement] = STATE(7039), + [sym_fixed_statement] = STATE(7039), + [sym_for_statement] = STATE(7039), + [sym_return_statement] = STATE(7039), + [sym_lock_statement] = STATE(7039), + [sym_yield_statement] = STATE(7039), + [sym_switch_statement] = STATE(7039), + [sym_throw_statement] = STATE(7039), + [sym_try_statement] = STATE(7039), + [sym_unsafe_statement] = STATE(7039), + [sym_using_statement] = STATE(7039), + [sym_foreach_statement] = STATE(7039), + [sym__foreach_statement_initializer] = STATE(76), + [sym_goto_statement] = STATE(7039), + [sym_labeled_statement] = STATE(7039), + [sym_if_statement] = STATE(7039), + [sym_while_statement] = STATE(7039), + [sym_local_declaration_statement] = STATE(7039), + [sym_local_function_statement] = STATE(7039), + [sym__local_function_declaration] = STATE(6285), + [sym_expression] = STATE(5660), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3356), + [sym__expression_statement_expression] = STATE(5711), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3102), + [sym_postfix_unary_expression] = STATE(3079), + [sym_prefix_unary_expression] = STATE(3079), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6134), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3102), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3079), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3102), + [sym_member_access_expression] = STATE(2472), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3079), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7425), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(3102), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3102), + [sym_typeof_expression] = STATE(3102), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2472), + [sym_literal] = STATE(3102), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2313), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_top_level] = STATE(7039), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(3612), [sym_preproc_region] = STATE(88), [sym_preproc_endregion] = STATE(88), [sym_preproc_line] = STATE(88), @@ -46396,44 +46282,44 @@ 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(2286), + [aux_sym__class_declaration_initializer_repeat1] = STATE(2277), [aux_sym__class_declaration_initializer_repeat2] = STATE(2536), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), - [anon_sym_extern] = ACTIONS(647), + [anon_sym_extern] = ACTIONS(645), [anon_sym_alias] = ACTIONS(29), - [anon_sym_SEMI] = ACTIONS(1005), + [anon_sym_SEMI] = ACTIONS(1003), [anon_sym_global] = ACTIONS(29), - [anon_sym_using] = ACTIONS(1007), - [anon_sym_unsafe] = ACTIONS(1009), - [anon_sym_static] = ACTIONS(655), - [anon_sym_LBRACK] = ACTIONS(657), + [anon_sym_using] = ACTIONS(1005), + [anon_sym_unsafe] = ACTIONS(1007), + [anon_sym_static] = ACTIONS(653), + [anon_sym_LBRACK] = ACTIONS(655), [anon_sym_LPAREN] = ACTIONS(43), - [anon_sym_return] = ACTIONS(1011), - [anon_sym_ref] = ACTIONS(661), - [anon_sym_LBRACE] = ACTIONS(1013), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_abstract] = ACTIONS(647), - [anon_sym_async] = ACTIONS(655), - [anon_sym_const] = ACTIONS(647), - [anon_sym_file] = ACTIONS(669), - [anon_sym_fixed] = ACTIONS(1015), - [anon_sym_internal] = ACTIONS(647), - [anon_sym_new] = ACTIONS(673), - [anon_sym_override] = ACTIONS(647), - [anon_sym_partial] = ACTIONS(647), - [anon_sym_private] = ACTIONS(647), - [anon_sym_protected] = ACTIONS(647), - [anon_sym_public] = ACTIONS(647), - [anon_sym_readonly] = ACTIONS(647), - [anon_sym_required] = ACTIONS(647), - [anon_sym_sealed] = ACTIONS(647), - [anon_sym_virtual] = ACTIONS(647), - [anon_sym_volatile] = ACTIONS(647), - [anon_sym_where] = ACTIONS(29), - [anon_sym_notnull] = ACTIONS(29), - [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1017), + [anon_sym_return] = ACTIONS(1009), + [anon_sym_ref] = ACTIONS(715), + [anon_sym_LBRACE] = ACTIONS(1011), + [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(1013), + [anon_sym_internal] = ACTIONS(645), + [anon_sym_new] = ACTIONS(675), + [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(1015), [anon_sym_BANG] = ACTIONS(75), [anon_sym_TILDE] = ACTIONS(75), [anon_sym_PLUS_PLUS] = ACTIONS(75), @@ -46450,23 +46336,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(1019), - [anon_sym_unchecked] = ACTIONS(1017), - [anon_sym_continue] = ACTIONS(1021), - [anon_sym_do] = ACTIONS(1023), - [anon_sym_while] = ACTIONS(1025), - [anon_sym_for] = ACTIONS(1027), - [anon_sym_lock] = ACTIONS(1029), - [anon_sym_yield] = ACTIONS(1031), - [anon_sym_switch] = ACTIONS(1033), + [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_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1035), - [anon_sym_try] = ACTIONS(1037), + [anon_sym_throw] = ACTIONS(1033), + [anon_sym_try] = ACTIONS(1035), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1039), + [anon_sym_await] = ACTIONS(1037), [anon_sym_foreach] = ACTIONS(117), - [anon_sym_goto] = ACTIONS(1041), - [anon_sym_if] = ACTIONS(1043), + [anon_sym_goto] = ACTIONS(1039), + [anon_sym_if] = ACTIONS(1041), [anon_sym_DOT_DOT] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), @@ -46492,7 +46378,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(1045), + [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), @@ -46509,114 +46395,114 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [89] = { - [sym_attribute_list] = STATE(3645), - [sym__attribute_list] = STATE(3580), - [sym_modifier] = STATE(3878), - [sym_parameter_list] = STATE(7311), - [sym_block] = STATE(7054), - [sym_variable_declaration] = STATE(7367), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(5160), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2204), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5867), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_statement] = STATE(7149), - [sym_break_statement] = STATE(7054), - [sym_checked_statement] = STATE(7054), - [sym_continue_statement] = STATE(7054), - [sym_do_statement] = STATE(7054), - [sym_empty_statement] = STATE(7054), - [sym_expression_statement] = STATE(7054), - [sym_fixed_statement] = STATE(7054), - [sym_for_statement] = STATE(7054), - [sym_return_statement] = STATE(7054), - [sym_lock_statement] = STATE(7054), - [sym_yield_statement] = STATE(7054), - [sym_switch_statement] = STATE(7054), - [sym_throw_statement] = STATE(7054), - [sym_try_statement] = STATE(7054), - [sym_unsafe_statement] = STATE(7054), - [sym_using_statement] = STATE(7054), - [sym_foreach_statement] = STATE(7054), - [sym__foreach_statement_initializer] = STATE(75), - [sym_goto_statement] = STATE(7054), - [sym_labeled_statement] = STATE(7054), - [sym_if_statement] = STATE(7054), - [sym_while_statement] = STATE(7054), - [sym_local_declaration_statement] = STATE(7054), - [sym_local_function_statement] = STATE(7054), - [sym__local_function_declaration] = STATE(6293), - [sym_expression] = STATE(5672), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3461), - [sym__expression_statement_expression] = STATE(5729), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3080), - [sym_postfix_unary_expression] = STATE(3111), - [sym_prefix_unary_expression] = STATE(3111), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6154), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3080), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3111), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3080), - [sym_member_access_expression] = STATE(2484), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3111), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7530), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(3080), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3080), - [sym_typeof_expression] = STATE(3080), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2484), - [sym_literal] = STATE(3080), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2333), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_top_level] = STATE(7054), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(3645), + [sym_attribute_list] = STATE(3612), + [sym__attribute_list] = STATE(3570), + [sym_modifier] = STATE(3845), + [sym_parameter_list] = STATE(7531), + [sym_block] = STATE(7039), + [sym_variable_declaration] = STATE(7397), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(5152), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2196), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5805), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_statement] = STATE(7242), + [sym_break_statement] = STATE(7039), + [sym_checked_statement] = STATE(7039), + [sym_continue_statement] = STATE(7039), + [sym_do_statement] = STATE(7039), + [sym_empty_statement] = STATE(7039), + [sym_expression_statement] = STATE(7039), + [sym_fixed_statement] = STATE(7039), + [sym_for_statement] = STATE(7039), + [sym_return_statement] = STATE(7039), + [sym_lock_statement] = STATE(7039), + [sym_yield_statement] = STATE(7039), + [sym_switch_statement] = STATE(7039), + [sym_throw_statement] = STATE(7039), + [sym_try_statement] = STATE(7039), + [sym_unsafe_statement] = STATE(7039), + [sym_using_statement] = STATE(7039), + [sym_foreach_statement] = STATE(7039), + [sym__foreach_statement_initializer] = STATE(76), + [sym_goto_statement] = STATE(7039), + [sym_labeled_statement] = STATE(7039), + [sym_if_statement] = STATE(7039), + [sym_while_statement] = STATE(7039), + [sym_local_declaration_statement] = STATE(7039), + [sym_local_function_statement] = STATE(7039), + [sym__local_function_declaration] = STATE(6285), + [sym_expression] = STATE(5660), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3356), + [sym__expression_statement_expression] = STATE(5711), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3102), + [sym_postfix_unary_expression] = STATE(3079), + [sym_prefix_unary_expression] = STATE(3079), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6134), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3102), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3079), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3102), + [sym_member_access_expression] = STATE(2472), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3079), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7425), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(3102), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3102), + [sym_typeof_expression] = STATE(3102), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2472), + [sym_literal] = STATE(3102), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2313), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_top_level] = STATE(7039), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(3612), [sym_preproc_region] = STATE(89), [sym_preproc_endregion] = STATE(89), [sym_preproc_line] = STATE(89), @@ -46626,44 +46512,44 @@ 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(2286), + [aux_sym__class_declaration_initializer_repeat1] = STATE(2277), [aux_sym__class_declaration_initializer_repeat2] = STATE(2536), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), - [anon_sym_extern] = ACTIONS(647), + [anon_sym_extern] = ACTIONS(645), [anon_sym_alias] = ACTIONS(29), - [anon_sym_SEMI] = ACTIONS(1005), + [anon_sym_SEMI] = ACTIONS(1003), [anon_sym_global] = ACTIONS(29), - [anon_sym_using] = ACTIONS(1007), - [anon_sym_unsafe] = ACTIONS(1009), - [anon_sym_static] = ACTIONS(655), - [anon_sym_LBRACK] = ACTIONS(657), + [anon_sym_using] = ACTIONS(1005), + [anon_sym_unsafe] = ACTIONS(1007), + [anon_sym_static] = ACTIONS(653), + [anon_sym_LBRACK] = ACTIONS(655), [anon_sym_LPAREN] = ACTIONS(43), - [anon_sym_return] = ACTIONS(1011), - [anon_sym_ref] = ACTIONS(661), - [anon_sym_LBRACE] = ACTIONS(1013), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_abstract] = ACTIONS(647), - [anon_sym_async] = ACTIONS(655), - [anon_sym_const] = ACTIONS(647), - [anon_sym_file] = ACTIONS(669), - [anon_sym_fixed] = ACTIONS(1015), - [anon_sym_internal] = ACTIONS(647), - [anon_sym_new] = ACTIONS(673), - [anon_sym_override] = ACTIONS(647), - [anon_sym_partial] = ACTIONS(647), - [anon_sym_private] = ACTIONS(647), - [anon_sym_protected] = ACTIONS(647), - [anon_sym_public] = ACTIONS(647), - [anon_sym_readonly] = ACTIONS(647), - [anon_sym_required] = ACTIONS(647), - [anon_sym_sealed] = ACTIONS(647), - [anon_sym_virtual] = ACTIONS(647), - [anon_sym_volatile] = ACTIONS(647), - [anon_sym_where] = ACTIONS(29), - [anon_sym_notnull] = ACTIONS(29), - [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1017), + [anon_sym_return] = ACTIONS(1009), + [anon_sym_ref] = ACTIONS(715), + [anon_sym_LBRACE] = ACTIONS(1011), + [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(1013), + [anon_sym_internal] = ACTIONS(645), + [anon_sym_new] = ACTIONS(675), + [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(1015), [anon_sym_BANG] = ACTIONS(75), [anon_sym_TILDE] = ACTIONS(75), [anon_sym_PLUS_PLUS] = ACTIONS(75), @@ -46680,23 +46566,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(1019), - [anon_sym_unchecked] = ACTIONS(1017), - [anon_sym_continue] = ACTIONS(1021), - [anon_sym_do] = ACTIONS(1023), - [anon_sym_while] = ACTIONS(1025), - [anon_sym_for] = ACTIONS(1027), - [anon_sym_lock] = ACTIONS(1029), - [anon_sym_yield] = ACTIONS(1031), - [anon_sym_switch] = ACTIONS(1033), + [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_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1035), - [anon_sym_try] = ACTIONS(1037), + [anon_sym_throw] = ACTIONS(1033), + [anon_sym_try] = ACTIONS(1035), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1039), + [anon_sym_await] = ACTIONS(1037), [anon_sym_foreach] = ACTIONS(117), - [anon_sym_goto] = ACTIONS(1041), - [anon_sym_if] = ACTIONS(1043), + [anon_sym_goto] = ACTIONS(1039), + [anon_sym_if] = ACTIONS(1041), [anon_sym_DOT_DOT] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), @@ -46722,7 +46608,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(1045), + [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), @@ -46739,114 +46625,114 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [90] = { - [sym_attribute_list] = STATE(3645), - [sym__attribute_list] = STATE(3580), - [sym_modifier] = STATE(3878), - [sym_parameter_list] = STATE(7311), - [sym_block] = STATE(7054), - [sym_variable_declaration] = STATE(7367), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(5160), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2204), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5867), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_statement] = STATE(7171), - [sym_break_statement] = STATE(7054), - [sym_checked_statement] = STATE(7054), - [sym_continue_statement] = STATE(7054), - [sym_do_statement] = STATE(7054), - [sym_empty_statement] = STATE(7054), - [sym_expression_statement] = STATE(7054), - [sym_fixed_statement] = STATE(7054), - [sym_for_statement] = STATE(7054), - [sym_return_statement] = STATE(7054), - [sym_lock_statement] = STATE(7054), - [sym_yield_statement] = STATE(7054), - [sym_switch_statement] = STATE(7054), - [sym_throw_statement] = STATE(7054), - [sym_try_statement] = STATE(7054), - [sym_unsafe_statement] = STATE(7054), - [sym_using_statement] = STATE(7054), - [sym_foreach_statement] = STATE(7054), - [sym__foreach_statement_initializer] = STATE(75), - [sym_goto_statement] = STATE(7054), - [sym_labeled_statement] = STATE(7054), - [sym_if_statement] = STATE(7054), - [sym_while_statement] = STATE(7054), - [sym_local_declaration_statement] = STATE(7054), - [sym_local_function_statement] = STATE(7054), - [sym__local_function_declaration] = STATE(6293), - [sym_expression] = STATE(5672), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3461), - [sym__expression_statement_expression] = STATE(5729), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3080), - [sym_postfix_unary_expression] = STATE(3111), - [sym_prefix_unary_expression] = STATE(3111), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6154), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3080), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3111), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3080), - [sym_member_access_expression] = STATE(2484), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3111), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7530), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(3080), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3080), - [sym_typeof_expression] = STATE(3080), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2484), - [sym_literal] = STATE(3080), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2333), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_top_level] = STATE(7054), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(3645), + [sym_attribute_list] = STATE(3612), + [sym__attribute_list] = STATE(3570), + [sym_modifier] = STATE(3845), + [sym_parameter_list] = STATE(7531), + [sym_block] = STATE(2026), + [sym_variable_declaration] = STATE(7610), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(5152), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2196), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5805), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_statement] = STATE(2020), + [sym_break_statement] = STATE(2026), + [sym_checked_statement] = STATE(2026), + [sym_continue_statement] = STATE(2026), + [sym_do_statement] = STATE(2026), + [sym_empty_statement] = STATE(2026), + [sym_expression_statement] = STATE(2026), + [sym_fixed_statement] = STATE(2026), + [sym_for_statement] = STATE(2026), + [sym_return_statement] = STATE(2026), + [sym_lock_statement] = STATE(2026), + [sym_yield_statement] = STATE(2026), + [sym_switch_statement] = STATE(2026), + [sym_throw_statement] = STATE(2026), + [sym_try_statement] = STATE(2026), + [sym_unsafe_statement] = STATE(2026), + [sym_using_statement] = STATE(2026), + [sym_foreach_statement] = STATE(2026), + [sym__foreach_statement_initializer] = STATE(90), + [sym_goto_statement] = STATE(2026), + [sym_labeled_statement] = STATE(2026), + [sym_if_statement] = STATE(2026), + [sym_while_statement] = STATE(2026), + [sym_local_declaration_statement] = STATE(2026), + [sym_local_function_statement] = STATE(2026), + [sym__local_function_declaration] = STATE(6290), + [sym_expression] = STATE(5660), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3356), + [sym__expression_statement_expression] = STATE(5708), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3102), + [sym_postfix_unary_expression] = STATE(3079), + [sym_prefix_unary_expression] = STATE(3079), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6134), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3102), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3079), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3102), + [sym_member_access_expression] = STATE(2472), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3079), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7425), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(3102), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3102), + [sym_typeof_expression] = STATE(3102), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2472), + [sym_literal] = STATE(3102), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2332), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_top_level] = STATE(2026), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(3612), [sym_preproc_region] = STATE(90), [sym_preproc_endregion] = STATE(90), [sym_preproc_line] = STATE(90), @@ -46856,44 +46742,44 @@ 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(2286), - [aux_sym__class_declaration_initializer_repeat2] = STATE(2536), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [aux_sym__class_declaration_initializer_repeat1] = STATE(2277), + [aux_sym__class_declaration_initializer_repeat2] = STATE(2535), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), - [anon_sym_extern] = ACTIONS(647), + [anon_sym_extern] = ACTIONS(645), [anon_sym_alias] = ACTIONS(29), - [anon_sym_SEMI] = ACTIONS(1005), + [anon_sym_SEMI] = ACTIONS(31), [anon_sym_global] = ACTIONS(29), - [anon_sym_using] = ACTIONS(1007), - [anon_sym_unsafe] = ACTIONS(1009), - [anon_sym_static] = ACTIONS(655), - [anon_sym_LBRACK] = ACTIONS(657), + [anon_sym_using] = ACTIONS(987), + [anon_sym_unsafe] = ACTIONS(989), + [anon_sym_static] = ACTIONS(653), + [anon_sym_LBRACK] = ACTIONS(655), [anon_sym_LPAREN] = ACTIONS(43), - [anon_sym_return] = ACTIONS(1011), - [anon_sym_ref] = ACTIONS(661), - [anon_sym_LBRACE] = ACTIONS(1013), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_abstract] = ACTIONS(647), - [anon_sym_async] = ACTIONS(655), - [anon_sym_const] = ACTIONS(647), - [anon_sym_file] = ACTIONS(669), - [anon_sym_fixed] = ACTIONS(1015), - [anon_sym_internal] = ACTIONS(647), - [anon_sym_new] = ACTIONS(673), - [anon_sym_override] = ACTIONS(647), - [anon_sym_partial] = ACTIONS(647), - [anon_sym_private] = ACTIONS(647), - [anon_sym_protected] = ACTIONS(647), - [anon_sym_public] = ACTIONS(647), - [anon_sym_readonly] = ACTIONS(647), - [anon_sym_required] = ACTIONS(647), - [anon_sym_sealed] = ACTIONS(647), - [anon_sym_virtual] = ACTIONS(647), - [anon_sym_volatile] = ACTIONS(647), - [anon_sym_where] = ACTIONS(29), - [anon_sym_notnull] = ACTIONS(29), - [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1017), + [anon_sym_return] = ACTIONS(45), + [anon_sym_ref] = ACTIONS(715), + [anon_sym_LBRACE] = ACTIONS(57), + [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(991), + [anon_sym_internal] = ACTIONS(645), + [anon_sym_new] = ACTIONS(675), + [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(73), [anon_sym_BANG] = ACTIONS(75), [anon_sym_TILDE] = ACTIONS(75), [anon_sym_PLUS_PLUS] = ACTIONS(75), @@ -46910,23 +46796,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(1019), - [anon_sym_unchecked] = ACTIONS(1017), - [anon_sym_continue] = ACTIONS(1021), - [anon_sym_do] = ACTIONS(1023), - [anon_sym_while] = ACTIONS(1025), - [anon_sym_for] = ACTIONS(1027), - [anon_sym_lock] = ACTIONS(1029), - [anon_sym_yield] = ACTIONS(1031), - [anon_sym_switch] = ACTIONS(1033), + [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(1035), - [anon_sym_try] = ACTIONS(1037), + [anon_sym_throw] = ACTIONS(111), + [anon_sym_try] = ACTIONS(113), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1039), + [anon_sym_await] = ACTIONS(115), [anon_sym_foreach] = ACTIONS(117), - [anon_sym_goto] = ACTIONS(1041), - [anon_sym_if] = ACTIONS(1043), + [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), @@ -46952,7 +46838,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(1045), + [aux_sym_preproc_if_token1] = ACTIONS(993), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -46969,114 +46855,114 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [91] = { - [sym_attribute_list] = STATE(3645), - [sym__attribute_list] = STATE(3580), - [sym_modifier] = STATE(3878), - [sym_parameter_list] = STATE(7311), - [sym_block] = STATE(1968), - [sym_variable_declaration] = STATE(7525), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(5160), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2204), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5867), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_statement] = STATE(1973), - [sym_break_statement] = STATE(1968), - [sym_checked_statement] = STATE(1968), - [sym_continue_statement] = STATE(1968), - [sym_do_statement] = STATE(1968), - [sym_empty_statement] = STATE(1968), - [sym_expression_statement] = STATE(1968), - [sym_fixed_statement] = STATE(1968), - [sym_for_statement] = STATE(1968), - [sym_return_statement] = STATE(1968), - [sym_lock_statement] = STATE(1968), - [sym_yield_statement] = STATE(1968), - [sym_switch_statement] = STATE(1968), - [sym_throw_statement] = STATE(1968), - [sym_try_statement] = STATE(1968), - [sym_unsafe_statement] = STATE(1968), - [sym_using_statement] = STATE(1968), - [sym_foreach_statement] = STATE(1968), - [sym__foreach_statement_initializer] = STATE(91), - [sym_goto_statement] = STATE(1968), - [sym_labeled_statement] = STATE(1968), - [sym_if_statement] = STATE(1968), - [sym_while_statement] = STATE(1968), - [sym_local_declaration_statement] = STATE(1968), - [sym_local_function_statement] = STATE(1968), - [sym__local_function_declaration] = STATE(6298), - [sym_expression] = STATE(5672), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3461), - [sym__expression_statement_expression] = STATE(5158), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3080), - [sym_postfix_unary_expression] = STATE(3111), - [sym_prefix_unary_expression] = STATE(3111), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6154), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3080), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3111), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3080), - [sym_member_access_expression] = STATE(2484), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3111), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7530), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(3080), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3080), - [sym_typeof_expression] = STATE(3080), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2484), - [sym_literal] = STATE(3080), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2264), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_top_level] = STATE(1968), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(3645), + [sym_attribute_list] = STATE(3612), + [sym__attribute_list] = STATE(3570), + [sym_modifier] = STATE(3845), + [sym_parameter_list] = STATE(7531), + [sym_block] = STATE(7039), + [sym_variable_declaration] = STATE(7397), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(5152), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2196), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5805), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_statement] = STATE(7038), + [sym_break_statement] = STATE(7039), + [sym_checked_statement] = STATE(7039), + [sym_continue_statement] = STATE(7039), + [sym_do_statement] = STATE(7039), + [sym_empty_statement] = STATE(7039), + [sym_expression_statement] = STATE(7039), + [sym_fixed_statement] = STATE(7039), + [sym_for_statement] = STATE(7039), + [sym_return_statement] = STATE(7039), + [sym_lock_statement] = STATE(7039), + [sym_yield_statement] = STATE(7039), + [sym_switch_statement] = STATE(7039), + [sym_throw_statement] = STATE(7039), + [sym_try_statement] = STATE(7039), + [sym_unsafe_statement] = STATE(7039), + [sym_using_statement] = STATE(7039), + [sym_foreach_statement] = STATE(7039), + [sym__foreach_statement_initializer] = STATE(76), + [sym_goto_statement] = STATE(7039), + [sym_labeled_statement] = STATE(7039), + [sym_if_statement] = STATE(7039), + [sym_while_statement] = STATE(7039), + [sym_local_declaration_statement] = STATE(7039), + [sym_local_function_statement] = STATE(7039), + [sym__local_function_declaration] = STATE(6285), + [sym_expression] = STATE(5660), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3356), + [sym__expression_statement_expression] = STATE(5711), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3102), + [sym_postfix_unary_expression] = STATE(3079), + [sym_prefix_unary_expression] = STATE(3079), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6134), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3102), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3079), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3102), + [sym_member_access_expression] = STATE(2472), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3079), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7425), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(3102), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3102), + [sym_typeof_expression] = STATE(3102), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2472), + [sym_literal] = STATE(3102), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2313), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_top_level] = STATE(7039), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(3612), [sym_preproc_region] = STATE(91), [sym_preproc_endregion] = STATE(91), [sym_preproc_line] = STATE(91), @@ -47086,44 +46972,44 @@ 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(2286), - [aux_sym__class_declaration_initializer_repeat2] = STATE(2547), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [aux_sym__class_declaration_initializer_repeat1] = STATE(2277), + [aux_sym__class_declaration_initializer_repeat2] = STATE(2536), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), - [anon_sym_extern] = ACTIONS(647), + [anon_sym_extern] = ACTIONS(645), [anon_sym_alias] = ACTIONS(29), - [anon_sym_SEMI] = ACTIONS(161), + [anon_sym_SEMI] = ACTIONS(1003), [anon_sym_global] = ACTIONS(29), - [anon_sym_using] = ACTIONS(989), - [anon_sym_unsafe] = ACTIONS(991), - [anon_sym_static] = ACTIONS(655), - [anon_sym_LBRACK] = ACTIONS(657), + [anon_sym_using] = ACTIONS(1005), + [anon_sym_unsafe] = ACTIONS(1007), + [anon_sym_static] = ACTIONS(653), + [anon_sym_LBRACK] = ACTIONS(655), [anon_sym_LPAREN] = ACTIONS(43), - [anon_sym_return] = ACTIONS(171), - [anon_sym_ref] = ACTIONS(661), - [anon_sym_LBRACE] = ACTIONS(177), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_abstract] = ACTIONS(647), - [anon_sym_async] = ACTIONS(655), - [anon_sym_const] = ACTIONS(647), - [anon_sym_file] = ACTIONS(669), - [anon_sym_fixed] = ACTIONS(993), - [anon_sym_internal] = ACTIONS(647), - [anon_sym_new] = ACTIONS(673), - [anon_sym_override] = ACTIONS(647), - [anon_sym_partial] = ACTIONS(647), - [anon_sym_private] = ACTIONS(647), - [anon_sym_protected] = ACTIONS(647), - [anon_sym_public] = ACTIONS(647), - [anon_sym_readonly] = ACTIONS(647), - [anon_sym_required] = ACTIONS(647), - [anon_sym_sealed] = ACTIONS(647), - [anon_sym_virtual] = ACTIONS(647), - [anon_sym_volatile] = ACTIONS(647), - [anon_sym_where] = ACTIONS(29), - [anon_sym_notnull] = ACTIONS(29), - [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(181), + [anon_sym_return] = ACTIONS(1009), + [anon_sym_ref] = ACTIONS(715), + [anon_sym_LBRACE] = ACTIONS(1011), + [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(1013), + [anon_sym_internal] = ACTIONS(645), + [anon_sym_new] = ACTIONS(675), + [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(1015), [anon_sym_BANG] = ACTIONS(75), [anon_sym_TILDE] = ACTIONS(75), [anon_sym_PLUS_PLUS] = ACTIONS(75), @@ -47140,23 +47026,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(183), - [anon_sym_unchecked] = ACTIONS(181), - [anon_sym_continue] = ACTIONS(185), - [anon_sym_do] = ACTIONS(187), - [anon_sym_while] = ACTIONS(189), - [anon_sym_for] = ACTIONS(191), - [anon_sym_lock] = ACTIONS(193), - [anon_sym_yield] = ACTIONS(195), - [anon_sym_switch] = ACTIONS(197), + [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_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(199), - [anon_sym_try] = ACTIONS(201), + [anon_sym_throw] = ACTIONS(1033), + [anon_sym_try] = ACTIONS(1035), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(203), + [anon_sym_await] = ACTIONS(1037), [anon_sym_foreach] = ACTIONS(117), - [anon_sym_goto] = ACTIONS(205), - [anon_sym_if] = ACTIONS(207), + [anon_sym_goto] = ACTIONS(1039), + [anon_sym_if] = ACTIONS(1041), [anon_sym_DOT_DOT] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), @@ -47182,7 +47068,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(995), + [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), @@ -47199,114 +47085,114 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [92] = { - [sym_attribute_list] = STATE(3645), - [sym__attribute_list] = STATE(3580), - [sym_modifier] = STATE(3878), - [sym_parameter_list] = STATE(7311), - [sym_block] = STATE(1968), - [sym_variable_declaration] = STATE(7525), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(5160), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2204), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5867), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_statement] = STATE(1974), - [sym_break_statement] = STATE(1968), - [sym_checked_statement] = STATE(1968), - [sym_continue_statement] = STATE(1968), - [sym_do_statement] = STATE(1968), - [sym_empty_statement] = STATE(1968), - [sym_expression_statement] = STATE(1968), - [sym_fixed_statement] = STATE(1968), - [sym_for_statement] = STATE(1968), - [sym_return_statement] = STATE(1968), - [sym_lock_statement] = STATE(1968), - [sym_yield_statement] = STATE(1968), - [sym_switch_statement] = STATE(1968), - [sym_throw_statement] = STATE(1968), - [sym_try_statement] = STATE(1968), - [sym_unsafe_statement] = STATE(1968), - [sym_using_statement] = STATE(1968), - [sym_foreach_statement] = STATE(1968), - [sym__foreach_statement_initializer] = STATE(91), - [sym_goto_statement] = STATE(1968), - [sym_labeled_statement] = STATE(1968), - [sym_if_statement] = STATE(1968), - [sym_while_statement] = STATE(1968), - [sym_local_declaration_statement] = STATE(1968), - [sym_local_function_statement] = STATE(1968), - [sym__local_function_declaration] = STATE(6298), - [sym_expression] = STATE(5672), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3461), - [sym__expression_statement_expression] = STATE(5158), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3080), - [sym_postfix_unary_expression] = STATE(3111), - [sym_prefix_unary_expression] = STATE(3111), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6154), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3080), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3111), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3080), - [sym_member_access_expression] = STATE(2484), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3111), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7530), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(3080), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3080), - [sym_typeof_expression] = STATE(3080), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2484), - [sym_literal] = STATE(3080), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2264), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_top_level] = STATE(1968), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(3645), + [sym_attribute_list] = STATE(3612), + [sym__attribute_list] = STATE(3570), + [sym_modifier] = STATE(3845), + [sym_parameter_list] = STATE(7531), + [sym_block] = STATE(7039), + [sym_variable_declaration] = STATE(7397), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(5152), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2196), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5805), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_statement] = STATE(7049), + [sym_break_statement] = STATE(7039), + [sym_checked_statement] = STATE(7039), + [sym_continue_statement] = STATE(7039), + [sym_do_statement] = STATE(7039), + [sym_empty_statement] = STATE(7039), + [sym_expression_statement] = STATE(7039), + [sym_fixed_statement] = STATE(7039), + [sym_for_statement] = STATE(7039), + [sym_return_statement] = STATE(7039), + [sym_lock_statement] = STATE(7039), + [sym_yield_statement] = STATE(7039), + [sym_switch_statement] = STATE(7039), + [sym_throw_statement] = STATE(7039), + [sym_try_statement] = STATE(7039), + [sym_unsafe_statement] = STATE(7039), + [sym_using_statement] = STATE(7039), + [sym_foreach_statement] = STATE(7039), + [sym__foreach_statement_initializer] = STATE(76), + [sym_goto_statement] = STATE(7039), + [sym_labeled_statement] = STATE(7039), + [sym_if_statement] = STATE(7039), + [sym_while_statement] = STATE(7039), + [sym_local_declaration_statement] = STATE(7039), + [sym_local_function_statement] = STATE(7039), + [sym__local_function_declaration] = STATE(6285), + [sym_expression] = STATE(5660), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3356), + [sym__expression_statement_expression] = STATE(5711), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3102), + [sym_postfix_unary_expression] = STATE(3079), + [sym_prefix_unary_expression] = STATE(3079), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6134), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3102), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3079), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3102), + [sym_member_access_expression] = STATE(2472), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3079), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7425), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(3102), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3102), + [sym_typeof_expression] = STATE(3102), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2472), + [sym_literal] = STATE(3102), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2313), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_top_level] = STATE(7039), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(3612), [sym_preproc_region] = STATE(92), [sym_preproc_endregion] = STATE(92), [sym_preproc_line] = STATE(92), @@ -47316,44 +47202,44 @@ 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(2286), - [aux_sym__class_declaration_initializer_repeat2] = STATE(2547), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [aux_sym__class_declaration_initializer_repeat1] = STATE(2277), + [aux_sym__class_declaration_initializer_repeat2] = STATE(2536), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), - [anon_sym_extern] = ACTIONS(647), + [anon_sym_extern] = ACTIONS(645), [anon_sym_alias] = ACTIONS(29), - [anon_sym_SEMI] = ACTIONS(161), + [anon_sym_SEMI] = ACTIONS(1003), [anon_sym_global] = ACTIONS(29), - [anon_sym_using] = ACTIONS(989), - [anon_sym_unsafe] = ACTIONS(991), - [anon_sym_static] = ACTIONS(655), - [anon_sym_LBRACK] = ACTIONS(657), + [anon_sym_using] = ACTIONS(1005), + [anon_sym_unsafe] = ACTIONS(1007), + [anon_sym_static] = ACTIONS(653), + [anon_sym_LBRACK] = ACTIONS(655), [anon_sym_LPAREN] = ACTIONS(43), - [anon_sym_return] = ACTIONS(171), - [anon_sym_ref] = ACTIONS(661), - [anon_sym_LBRACE] = ACTIONS(177), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_abstract] = ACTIONS(647), - [anon_sym_async] = ACTIONS(655), - [anon_sym_const] = ACTIONS(647), - [anon_sym_file] = ACTIONS(669), - [anon_sym_fixed] = ACTIONS(993), - [anon_sym_internal] = ACTIONS(647), - [anon_sym_new] = ACTIONS(673), - [anon_sym_override] = ACTIONS(647), - [anon_sym_partial] = ACTIONS(647), - [anon_sym_private] = ACTIONS(647), - [anon_sym_protected] = ACTIONS(647), - [anon_sym_public] = ACTIONS(647), - [anon_sym_readonly] = ACTIONS(647), - [anon_sym_required] = ACTIONS(647), - [anon_sym_sealed] = ACTIONS(647), - [anon_sym_virtual] = ACTIONS(647), - [anon_sym_volatile] = ACTIONS(647), - [anon_sym_where] = ACTIONS(29), - [anon_sym_notnull] = ACTIONS(29), - [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(181), + [anon_sym_return] = ACTIONS(1009), + [anon_sym_ref] = ACTIONS(715), + [anon_sym_LBRACE] = ACTIONS(1011), + [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(1013), + [anon_sym_internal] = ACTIONS(645), + [anon_sym_new] = ACTIONS(675), + [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(1015), [anon_sym_BANG] = ACTIONS(75), [anon_sym_TILDE] = ACTIONS(75), [anon_sym_PLUS_PLUS] = ACTIONS(75), @@ -47370,23 +47256,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(183), - [anon_sym_unchecked] = ACTIONS(181), - [anon_sym_continue] = ACTIONS(185), - [anon_sym_do] = ACTIONS(187), - [anon_sym_while] = ACTIONS(189), - [anon_sym_for] = ACTIONS(191), - [anon_sym_lock] = ACTIONS(193), - [anon_sym_yield] = ACTIONS(195), - [anon_sym_switch] = ACTIONS(197), + [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_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(199), - [anon_sym_try] = ACTIONS(201), + [anon_sym_throw] = ACTIONS(1033), + [anon_sym_try] = ACTIONS(1035), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(203), + [anon_sym_await] = ACTIONS(1037), [anon_sym_foreach] = ACTIONS(117), - [anon_sym_goto] = ACTIONS(205), - [anon_sym_if] = ACTIONS(207), + [anon_sym_goto] = ACTIONS(1039), + [anon_sym_if] = ACTIONS(1041), [anon_sym_DOT_DOT] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), @@ -47412,7 +47298,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(995), + [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), @@ -47429,114 +47315,114 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [93] = { - [sym_attribute_list] = STATE(3645), - [sym__attribute_list] = STATE(3580), - [sym_modifier] = STATE(3878), - [sym_parameter_list] = STATE(7311), - [sym_block] = STATE(2120), - [sym_variable_declaration] = STATE(7689), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(5160), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2204), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5867), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_statement] = STATE(2102), - [sym_break_statement] = STATE(2120), - [sym_checked_statement] = STATE(2120), - [sym_continue_statement] = STATE(2120), - [sym_do_statement] = STATE(2120), - [sym_empty_statement] = STATE(2120), - [sym_expression_statement] = STATE(2120), - [sym_fixed_statement] = STATE(2120), - [sym_for_statement] = STATE(2120), - [sym_return_statement] = STATE(2120), - [sym_lock_statement] = STATE(2120), - [sym_yield_statement] = STATE(2120), - [sym_switch_statement] = STATE(2120), - [sym_throw_statement] = STATE(2120), - [sym_try_statement] = STATE(2120), - [sym_unsafe_statement] = STATE(2120), - [sym_using_statement] = STATE(2120), - [sym_foreach_statement] = STATE(2120), + [sym_attribute_list] = STATE(3612), + [sym__attribute_list] = STATE(3570), + [sym_modifier] = STATE(3845), + [sym_parameter_list] = STATE(7531), + [sym_block] = STATE(2093), + [sym_variable_declaration] = STATE(7607), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(5152), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2196), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5805), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_statement] = STATE(2120), + [sym_break_statement] = STATE(2093), + [sym_checked_statement] = STATE(2093), + [sym_continue_statement] = STATE(2093), + [sym_do_statement] = STATE(2093), + [sym_empty_statement] = STATE(2093), + [sym_expression_statement] = STATE(2093), + [sym_fixed_statement] = STATE(2093), + [sym_for_statement] = STATE(2093), + [sym_return_statement] = STATE(2093), + [sym_lock_statement] = STATE(2093), + [sym_yield_statement] = STATE(2093), + [sym_switch_statement] = STATE(2093), + [sym_throw_statement] = STATE(2093), + [sym_try_statement] = STATE(2093), + [sym_unsafe_statement] = STATE(2093), + [sym_using_statement] = STATE(2093), + [sym_foreach_statement] = STATE(2093), [sym__foreach_statement_initializer] = STATE(93), - [sym_goto_statement] = STATE(2120), - [sym_labeled_statement] = STATE(2120), - [sym_if_statement] = STATE(2120), - [sym_while_statement] = STATE(2120), - [sym_local_declaration_statement] = STATE(2120), - [sym_local_function_statement] = STATE(2120), - [sym__local_function_declaration] = STATE(6322), - [sym_expression] = STATE(5672), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3461), - [sym__expression_statement_expression] = STATE(5635), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3080), - [sym_postfix_unary_expression] = STATE(3111), - [sym_prefix_unary_expression] = STATE(3111), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6154), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3080), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3111), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3080), - [sym_member_access_expression] = STATE(2484), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3111), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7530), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(3080), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3080), - [sym_typeof_expression] = STATE(3080), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2484), - [sym_literal] = STATE(3080), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2282), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_top_level] = STATE(2120), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(3645), + [sym_goto_statement] = STATE(2093), + [sym_labeled_statement] = STATE(2093), + [sym_if_statement] = STATE(2093), + [sym_while_statement] = STATE(2093), + [sym_local_declaration_statement] = STATE(2093), + [sym_local_function_statement] = STATE(2093), + [sym__local_function_declaration] = STATE(6310), + [sym_expression] = STATE(5660), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3356), + [sym__expression_statement_expression] = STATE(5554), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3102), + [sym_postfix_unary_expression] = STATE(3079), + [sym_prefix_unary_expression] = STATE(3079), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6134), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3102), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3079), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3102), + [sym_member_access_expression] = STATE(2472), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3079), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7425), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(3102), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3102), + [sym_typeof_expression] = STATE(3102), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2472), + [sym_literal] = STATE(3102), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2269), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_top_level] = STATE(2093), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(3612), [sym_preproc_region] = STATE(93), [sym_preproc_endregion] = STATE(93), [sym_preproc_line] = STATE(93), @@ -47546,44 +47432,44 @@ 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(2286), - [aux_sym__class_declaration_initializer_repeat2] = STATE(2529), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [aux_sym__class_declaration_initializer_repeat1] = STATE(2277), + [aux_sym__class_declaration_initializer_repeat2] = STATE(2540), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), - [anon_sym_extern] = ACTIONS(647), + [anon_sym_extern] = ACTIONS(645), [anon_sym_alias] = ACTIONS(29), - [anon_sym_SEMI] = ACTIONS(649), + [anon_sym_SEMI] = ACTIONS(647), [anon_sym_global] = ACTIONS(29), - [anon_sym_using] = ACTIONS(651), - [anon_sym_unsafe] = ACTIONS(653), - [anon_sym_static] = ACTIONS(655), - [anon_sym_LBRACK] = ACTIONS(657), + [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(659), - [anon_sym_ref] = ACTIONS(661), - [anon_sym_LBRACE] = ACTIONS(663), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_abstract] = ACTIONS(647), - [anon_sym_async] = ACTIONS(655), - [anon_sym_const] = ACTIONS(647), - [anon_sym_file] = ACTIONS(669), - [anon_sym_fixed] = ACTIONS(671), - [anon_sym_internal] = ACTIONS(647), - [anon_sym_new] = ACTIONS(673), - [anon_sym_override] = ACTIONS(647), - [anon_sym_partial] = ACTIONS(647), - [anon_sym_private] = ACTIONS(647), - [anon_sym_protected] = ACTIONS(647), - [anon_sym_public] = ACTIONS(647), - [anon_sym_readonly] = ACTIONS(647), - [anon_sym_required] = ACTIONS(647), - [anon_sym_sealed] = ACTIONS(647), - [anon_sym_virtual] = ACTIONS(647), - [anon_sym_volatile] = ACTIONS(647), - [anon_sym_where] = ACTIONS(29), - [anon_sym_notnull] = ACTIONS(29), - [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(675), + [anon_sym_return] = ACTIONS(661), + [anon_sym_ref] = ACTIONS(715), + [anon_sym_LBRACE] = ACTIONS(665), + [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(673), + [anon_sym_internal] = ACTIONS(645), + [anon_sym_new] = ACTIONS(675), + [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(677), [anon_sym_BANG] = ACTIONS(75), [anon_sym_TILDE] = ACTIONS(75), [anon_sym_PLUS_PLUS] = ACTIONS(75), @@ -47600,23 +47486,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(677), - [anon_sym_unchecked] = ACTIONS(675), - [anon_sym_continue] = ACTIONS(679), - [anon_sym_do] = ACTIONS(681), - [anon_sym_while] = ACTIONS(683), - [anon_sym_for] = ACTIONS(685), - [anon_sym_lock] = ACTIONS(687), - [anon_sym_yield] = ACTIONS(689), - [anon_sym_switch] = ACTIONS(691), + [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(695), - [anon_sym_try] = ACTIONS(697), + [anon_sym_throw] = ACTIONS(721), + [anon_sym_try] = ACTIONS(703), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(699), + [anon_sym_await] = ACTIONS(723), [anon_sym_foreach] = ACTIONS(117), - [anon_sym_goto] = ACTIONS(701), - [anon_sym_if] = ACTIONS(703), + [anon_sym_goto] = ACTIONS(707), + [anon_sym_if] = ACTIONS(709), [anon_sym_DOT_DOT] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), @@ -47642,7 +47528,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(705), + [aux_sym_preproc_if_token1] = ACTIONS(713), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -47659,114 +47545,114 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [94] = { - [sym_attribute_list] = STATE(3645), - [sym__attribute_list] = STATE(3580), - [sym_modifier] = STATE(3878), - [sym_parameter_list] = STATE(7311), - [sym_block] = STATE(1968), - [sym_variable_declaration] = STATE(7525), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(5160), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2204), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5867), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_statement] = STATE(1957), - [sym_break_statement] = STATE(1968), - [sym_checked_statement] = STATE(1968), - [sym_continue_statement] = STATE(1968), - [sym_do_statement] = STATE(1968), - [sym_empty_statement] = STATE(1968), - [sym_expression_statement] = STATE(1968), - [sym_fixed_statement] = STATE(1968), - [sym_for_statement] = STATE(1968), - [sym_return_statement] = STATE(1968), - [sym_lock_statement] = STATE(1968), - [sym_yield_statement] = STATE(1968), - [sym_switch_statement] = STATE(1968), - [sym_throw_statement] = STATE(1968), - [sym_try_statement] = STATE(1968), - [sym_unsafe_statement] = STATE(1968), - [sym_using_statement] = STATE(1968), - [sym_foreach_statement] = STATE(1968), - [sym__foreach_statement_initializer] = STATE(91), - [sym_goto_statement] = STATE(1968), - [sym_labeled_statement] = STATE(1968), - [sym_if_statement] = STATE(1968), - [sym_while_statement] = STATE(1968), - [sym_local_declaration_statement] = STATE(1968), - [sym_local_function_statement] = STATE(1968), - [sym__local_function_declaration] = STATE(6298), - [sym_expression] = STATE(5672), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3461), - [sym__expression_statement_expression] = STATE(5158), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3080), - [sym_postfix_unary_expression] = STATE(3111), - [sym_prefix_unary_expression] = STATE(3111), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6154), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3080), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3111), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3080), - [sym_member_access_expression] = STATE(2484), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3111), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7530), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(3080), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3080), - [sym_typeof_expression] = STATE(3080), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2484), - [sym_literal] = STATE(3080), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2264), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_top_level] = STATE(1968), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(3645), + [sym_attribute_list] = STATE(3612), + [sym__attribute_list] = STATE(3570), + [sym_modifier] = STATE(3845), + [sym_parameter_list] = STATE(7531), + [sym_block] = STATE(1948), + [sym_variable_declaration] = STATE(7649), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(5152), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2196), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5805), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_statement] = STATE(1930), + [sym_break_statement] = STATE(1948), + [sym_checked_statement] = STATE(1948), + [sym_continue_statement] = STATE(1948), + [sym_do_statement] = STATE(1948), + [sym_empty_statement] = STATE(1948), + [sym_expression_statement] = STATE(1948), + [sym_fixed_statement] = STATE(1948), + [sym_for_statement] = STATE(1948), + [sym_return_statement] = STATE(1948), + [sym_lock_statement] = STATE(1948), + [sym_yield_statement] = STATE(1948), + [sym_switch_statement] = STATE(1948), + [sym_throw_statement] = STATE(1948), + [sym_try_statement] = STATE(1948), + [sym_unsafe_statement] = STATE(1948), + [sym_using_statement] = STATE(1948), + [sym_foreach_statement] = STATE(1948), + [sym__foreach_statement_initializer] = STATE(94), + [sym_goto_statement] = STATE(1948), + [sym_labeled_statement] = STATE(1948), + [sym_if_statement] = STATE(1948), + [sym_while_statement] = STATE(1948), + [sym_local_declaration_statement] = STATE(1948), + [sym_local_function_statement] = STATE(1948), + [sym__local_function_declaration] = STATE(6313), + [sym_expression] = STATE(5660), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3356), + [sym__expression_statement_expression] = STATE(5134), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3102), + [sym_postfix_unary_expression] = STATE(3079), + [sym_prefix_unary_expression] = STATE(3079), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6134), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3102), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3079), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3102), + [sym_member_access_expression] = STATE(2472), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3079), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7425), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(3102), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3102), + [sym_typeof_expression] = STATE(3102), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2472), + [sym_literal] = STATE(3102), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2259), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_top_level] = STATE(1948), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(3612), [sym_preproc_region] = STATE(94), [sym_preproc_endregion] = STATE(94), [sym_preproc_line] = STATE(94), @@ -47776,44 +47662,44 @@ 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(2286), - [aux_sym__class_declaration_initializer_repeat2] = STATE(2547), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [aux_sym__class_declaration_initializer_repeat1] = STATE(2277), + [aux_sym__class_declaration_initializer_repeat2] = STATE(2515), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), - [anon_sym_extern] = ACTIONS(647), + [anon_sym_extern] = ACTIONS(645), [anon_sym_alias] = ACTIONS(29), [anon_sym_SEMI] = ACTIONS(161), [anon_sym_global] = ACTIONS(29), - [anon_sym_using] = ACTIONS(989), - [anon_sym_unsafe] = ACTIONS(991), - [anon_sym_static] = ACTIONS(655), - [anon_sym_LBRACK] = ACTIONS(657), + [anon_sym_using] = ACTIONS(995), + [anon_sym_unsafe] = ACTIONS(997), + [anon_sym_static] = ACTIONS(653), + [anon_sym_LBRACK] = ACTIONS(655), [anon_sym_LPAREN] = ACTIONS(43), [anon_sym_return] = ACTIONS(171), - [anon_sym_ref] = ACTIONS(661), - [anon_sym_LBRACE] = ACTIONS(177), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_abstract] = ACTIONS(647), - [anon_sym_async] = ACTIONS(655), - [anon_sym_const] = ACTIONS(647), - [anon_sym_file] = ACTIONS(669), - [anon_sym_fixed] = ACTIONS(993), - [anon_sym_internal] = ACTIONS(647), - [anon_sym_new] = ACTIONS(673), - [anon_sym_override] = ACTIONS(647), - [anon_sym_partial] = ACTIONS(647), - [anon_sym_private] = ACTIONS(647), - [anon_sym_protected] = ACTIONS(647), - [anon_sym_public] = ACTIONS(647), - [anon_sym_readonly] = ACTIONS(647), - [anon_sym_required] = ACTIONS(647), - [anon_sym_sealed] = ACTIONS(647), - [anon_sym_virtual] = ACTIONS(647), - [anon_sym_volatile] = ACTIONS(647), - [anon_sym_where] = ACTIONS(29), - [anon_sym_notnull] = ACTIONS(29), - [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(181), + [anon_sym_ref] = ACTIONS(715), + [anon_sym_LBRACE] = ACTIONS(175), + [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(999), + [anon_sym_internal] = ACTIONS(645), + [anon_sym_new] = ACTIONS(675), + [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(179), [anon_sym_BANG] = ACTIONS(75), [anon_sym_TILDE] = ACTIONS(75), [anon_sym_PLUS_PLUS] = ACTIONS(75), @@ -47830,23 +47716,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(183), - [anon_sym_unchecked] = ACTIONS(181), - [anon_sym_continue] = ACTIONS(185), - [anon_sym_do] = ACTIONS(187), - [anon_sym_while] = ACTIONS(189), - [anon_sym_for] = ACTIONS(191), - [anon_sym_lock] = ACTIONS(193), - [anon_sym_yield] = ACTIONS(195), - [anon_sym_switch] = ACTIONS(197), + [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(199), - [anon_sym_try] = ACTIONS(201), + [anon_sym_throw] = ACTIONS(197), + [anon_sym_try] = ACTIONS(199), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(203), + [anon_sym_await] = ACTIONS(201), [anon_sym_foreach] = ACTIONS(117), - [anon_sym_goto] = ACTIONS(205), - [anon_sym_if] = ACTIONS(207), + [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), @@ -47872,7 +47758,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(995), + [aux_sym_preproc_if_token1] = ACTIONS(1001), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -47889,114 +47775,114 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [95] = { - [sym_attribute_list] = STATE(3645), - [sym__attribute_list] = STATE(3580), - [sym_modifier] = STATE(3878), - [sym_parameter_list] = STATE(7311), - [sym_block] = STATE(1968), - [sym_variable_declaration] = STATE(7525), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(5160), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2204), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5867), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_statement] = STATE(1964), - [sym_break_statement] = STATE(1968), - [sym_checked_statement] = STATE(1968), - [sym_continue_statement] = STATE(1968), - [sym_do_statement] = STATE(1968), - [sym_empty_statement] = STATE(1968), - [sym_expression_statement] = STATE(1968), - [sym_fixed_statement] = STATE(1968), - [sym_for_statement] = STATE(1968), - [sym_return_statement] = STATE(1968), - [sym_lock_statement] = STATE(1968), - [sym_yield_statement] = STATE(1968), - [sym_switch_statement] = STATE(1968), - [sym_throw_statement] = STATE(1968), - [sym_try_statement] = STATE(1968), - [sym_unsafe_statement] = STATE(1968), - [sym_using_statement] = STATE(1968), - [sym_foreach_statement] = STATE(1968), - [sym__foreach_statement_initializer] = STATE(91), - [sym_goto_statement] = STATE(1968), - [sym_labeled_statement] = STATE(1968), - [sym_if_statement] = STATE(1968), - [sym_while_statement] = STATE(1968), - [sym_local_declaration_statement] = STATE(1968), - [sym_local_function_statement] = STATE(1968), - [sym__local_function_declaration] = STATE(6298), - [sym_expression] = STATE(5672), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3461), - [sym__expression_statement_expression] = STATE(5158), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3080), - [sym_postfix_unary_expression] = STATE(3111), - [sym_prefix_unary_expression] = STATE(3111), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6154), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3080), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3111), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3080), - [sym_member_access_expression] = STATE(2484), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3111), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7530), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(3080), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3080), - [sym_typeof_expression] = STATE(3080), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2484), - [sym_literal] = STATE(3080), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2264), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_top_level] = STATE(1968), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(3645), + [sym_attribute_list] = STATE(3612), + [sym__attribute_list] = STATE(3570), + [sym_modifier] = STATE(3845), + [sym_parameter_list] = STATE(7531), + [sym_block] = STATE(1948), + [sym_variable_declaration] = STATE(7649), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(5152), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2196), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5805), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_statement] = STATE(1974), + [sym_break_statement] = STATE(1948), + [sym_checked_statement] = STATE(1948), + [sym_continue_statement] = STATE(1948), + [sym_do_statement] = STATE(1948), + [sym_empty_statement] = STATE(1948), + [sym_expression_statement] = STATE(1948), + [sym_fixed_statement] = STATE(1948), + [sym_for_statement] = STATE(1948), + [sym_return_statement] = STATE(1948), + [sym_lock_statement] = STATE(1948), + [sym_yield_statement] = STATE(1948), + [sym_switch_statement] = STATE(1948), + [sym_throw_statement] = STATE(1948), + [sym_try_statement] = STATE(1948), + [sym_unsafe_statement] = STATE(1948), + [sym_using_statement] = STATE(1948), + [sym_foreach_statement] = STATE(1948), + [sym__foreach_statement_initializer] = STATE(94), + [sym_goto_statement] = STATE(1948), + [sym_labeled_statement] = STATE(1948), + [sym_if_statement] = STATE(1948), + [sym_while_statement] = STATE(1948), + [sym_local_declaration_statement] = STATE(1948), + [sym_local_function_statement] = STATE(1948), + [sym__local_function_declaration] = STATE(6313), + [sym_expression] = STATE(5660), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3356), + [sym__expression_statement_expression] = STATE(5134), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3102), + [sym_postfix_unary_expression] = STATE(3079), + [sym_prefix_unary_expression] = STATE(3079), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6134), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3102), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3079), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3102), + [sym_member_access_expression] = STATE(2472), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3079), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7425), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(3102), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3102), + [sym_typeof_expression] = STATE(3102), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2472), + [sym_literal] = STATE(3102), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2259), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_top_level] = STATE(1948), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(3612), [sym_preproc_region] = STATE(95), [sym_preproc_endregion] = STATE(95), [sym_preproc_line] = STATE(95), @@ -48006,44 +47892,44 @@ 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(2286), - [aux_sym__class_declaration_initializer_repeat2] = STATE(2547), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [aux_sym__class_declaration_initializer_repeat1] = STATE(2277), + [aux_sym__class_declaration_initializer_repeat2] = STATE(2515), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), - [anon_sym_extern] = ACTIONS(647), + [anon_sym_extern] = ACTIONS(645), [anon_sym_alias] = ACTIONS(29), [anon_sym_SEMI] = ACTIONS(161), [anon_sym_global] = ACTIONS(29), - [anon_sym_using] = ACTIONS(989), - [anon_sym_unsafe] = ACTIONS(991), - [anon_sym_static] = ACTIONS(655), - [anon_sym_LBRACK] = ACTIONS(657), + [anon_sym_using] = ACTIONS(995), + [anon_sym_unsafe] = ACTIONS(997), + [anon_sym_static] = ACTIONS(653), + [anon_sym_LBRACK] = ACTIONS(655), [anon_sym_LPAREN] = ACTIONS(43), [anon_sym_return] = ACTIONS(171), - [anon_sym_ref] = ACTIONS(661), - [anon_sym_LBRACE] = ACTIONS(177), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_abstract] = ACTIONS(647), - [anon_sym_async] = ACTIONS(655), - [anon_sym_const] = ACTIONS(647), - [anon_sym_file] = ACTIONS(669), - [anon_sym_fixed] = ACTIONS(993), - [anon_sym_internal] = ACTIONS(647), - [anon_sym_new] = ACTIONS(673), - [anon_sym_override] = ACTIONS(647), - [anon_sym_partial] = ACTIONS(647), - [anon_sym_private] = ACTIONS(647), - [anon_sym_protected] = ACTIONS(647), - [anon_sym_public] = ACTIONS(647), - [anon_sym_readonly] = ACTIONS(647), - [anon_sym_required] = ACTIONS(647), - [anon_sym_sealed] = ACTIONS(647), - [anon_sym_virtual] = ACTIONS(647), - [anon_sym_volatile] = ACTIONS(647), - [anon_sym_where] = ACTIONS(29), - [anon_sym_notnull] = ACTIONS(29), - [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(181), + [anon_sym_ref] = ACTIONS(715), + [anon_sym_LBRACE] = ACTIONS(175), + [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(999), + [anon_sym_internal] = ACTIONS(645), + [anon_sym_new] = ACTIONS(675), + [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(179), [anon_sym_BANG] = ACTIONS(75), [anon_sym_TILDE] = ACTIONS(75), [anon_sym_PLUS_PLUS] = ACTIONS(75), @@ -48060,23 +47946,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(183), - [anon_sym_unchecked] = ACTIONS(181), - [anon_sym_continue] = ACTIONS(185), - [anon_sym_do] = ACTIONS(187), - [anon_sym_while] = ACTIONS(189), - [anon_sym_for] = ACTIONS(191), - [anon_sym_lock] = ACTIONS(193), - [anon_sym_yield] = ACTIONS(195), - [anon_sym_switch] = ACTIONS(197), + [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(199), - [anon_sym_try] = ACTIONS(201), + [anon_sym_throw] = ACTIONS(197), + [anon_sym_try] = ACTIONS(199), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(203), + [anon_sym_await] = ACTIONS(201), [anon_sym_foreach] = ACTIONS(117), - [anon_sym_goto] = ACTIONS(205), - [anon_sym_if] = ACTIONS(207), + [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), @@ -48102,7 +47988,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(995), + [aux_sym_preproc_if_token1] = ACTIONS(1001), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -48119,114 +48005,114 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [96] = { - [sym_attribute_list] = STATE(3645), - [sym__attribute_list] = STATE(3580), - [sym_modifier] = STATE(3878), - [sym_parameter_list] = STATE(7311), - [sym_block] = STATE(2120), - [sym_variable_declaration] = STATE(7689), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(5160), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2204), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5867), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_statement] = STATE(2110), - [sym_break_statement] = STATE(2120), - [sym_checked_statement] = STATE(2120), - [sym_continue_statement] = STATE(2120), - [sym_do_statement] = STATE(2120), - [sym_empty_statement] = STATE(2120), - [sym_expression_statement] = STATE(2120), - [sym_fixed_statement] = STATE(2120), - [sym_for_statement] = STATE(2120), - [sym_return_statement] = STATE(2120), - [sym_lock_statement] = STATE(2120), - [sym_yield_statement] = STATE(2120), - [sym_switch_statement] = STATE(2120), - [sym_throw_statement] = STATE(2120), - [sym_try_statement] = STATE(2120), - [sym_unsafe_statement] = STATE(2120), - [sym_using_statement] = STATE(2120), - [sym_foreach_statement] = STATE(2120), + [sym_attribute_list] = STATE(3612), + [sym__attribute_list] = STATE(3570), + [sym_modifier] = STATE(3845), + [sym_parameter_list] = STATE(7531), + [sym_block] = STATE(2093), + [sym_variable_declaration] = STATE(7607), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(5152), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2196), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5805), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_statement] = STATE(2133), + [sym_break_statement] = STATE(2093), + [sym_checked_statement] = STATE(2093), + [sym_continue_statement] = STATE(2093), + [sym_do_statement] = STATE(2093), + [sym_empty_statement] = STATE(2093), + [sym_expression_statement] = STATE(2093), + [sym_fixed_statement] = STATE(2093), + [sym_for_statement] = STATE(2093), + [sym_return_statement] = STATE(2093), + [sym_lock_statement] = STATE(2093), + [sym_yield_statement] = STATE(2093), + [sym_switch_statement] = STATE(2093), + [sym_throw_statement] = STATE(2093), + [sym_try_statement] = STATE(2093), + [sym_unsafe_statement] = STATE(2093), + [sym_using_statement] = STATE(2093), + [sym_foreach_statement] = STATE(2093), [sym__foreach_statement_initializer] = STATE(93), - [sym_goto_statement] = STATE(2120), - [sym_labeled_statement] = STATE(2120), - [sym_if_statement] = STATE(2120), - [sym_while_statement] = STATE(2120), - [sym_local_declaration_statement] = STATE(2120), - [sym_local_function_statement] = STATE(2120), - [sym__local_function_declaration] = STATE(6322), - [sym_expression] = STATE(5672), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3461), - [sym__expression_statement_expression] = STATE(5635), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3080), - [sym_postfix_unary_expression] = STATE(3111), - [sym_prefix_unary_expression] = STATE(3111), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6154), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3080), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3111), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3080), - [sym_member_access_expression] = STATE(2484), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3111), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7530), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(3080), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3080), - [sym_typeof_expression] = STATE(3080), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2484), - [sym_literal] = STATE(3080), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2282), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_top_level] = STATE(2120), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(3645), + [sym_goto_statement] = STATE(2093), + [sym_labeled_statement] = STATE(2093), + [sym_if_statement] = STATE(2093), + [sym_while_statement] = STATE(2093), + [sym_local_declaration_statement] = STATE(2093), + [sym_local_function_statement] = STATE(2093), + [sym__local_function_declaration] = STATE(6310), + [sym_expression] = STATE(5660), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3356), + [sym__expression_statement_expression] = STATE(5554), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3102), + [sym_postfix_unary_expression] = STATE(3079), + [sym_prefix_unary_expression] = STATE(3079), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6134), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3102), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3079), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3102), + [sym_member_access_expression] = STATE(2472), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3079), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7425), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(3102), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3102), + [sym_typeof_expression] = STATE(3102), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2472), + [sym_literal] = STATE(3102), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2269), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_top_level] = STATE(2093), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(3612), [sym_preproc_region] = STATE(96), [sym_preproc_endregion] = STATE(96), [sym_preproc_line] = STATE(96), @@ -48236,44 +48122,44 @@ 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(2286), - [aux_sym__class_declaration_initializer_repeat2] = STATE(2529), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [aux_sym__class_declaration_initializer_repeat1] = STATE(2277), + [aux_sym__class_declaration_initializer_repeat2] = STATE(2540), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), - [anon_sym_extern] = ACTIONS(647), + [anon_sym_extern] = ACTIONS(645), [anon_sym_alias] = ACTIONS(29), - [anon_sym_SEMI] = ACTIONS(649), + [anon_sym_SEMI] = ACTIONS(647), [anon_sym_global] = ACTIONS(29), - [anon_sym_using] = ACTIONS(651), - [anon_sym_unsafe] = ACTIONS(653), - [anon_sym_static] = ACTIONS(655), - [anon_sym_LBRACK] = ACTIONS(657), + [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(659), - [anon_sym_ref] = ACTIONS(661), - [anon_sym_LBRACE] = ACTIONS(663), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_abstract] = ACTIONS(647), - [anon_sym_async] = ACTIONS(655), - [anon_sym_const] = ACTIONS(647), - [anon_sym_file] = ACTIONS(669), - [anon_sym_fixed] = ACTIONS(671), - [anon_sym_internal] = ACTIONS(647), - [anon_sym_new] = ACTIONS(673), - [anon_sym_override] = ACTIONS(647), - [anon_sym_partial] = ACTIONS(647), - [anon_sym_private] = ACTIONS(647), - [anon_sym_protected] = ACTIONS(647), - [anon_sym_public] = ACTIONS(647), - [anon_sym_readonly] = ACTIONS(647), - [anon_sym_required] = ACTIONS(647), - [anon_sym_sealed] = ACTIONS(647), - [anon_sym_virtual] = ACTIONS(647), - [anon_sym_volatile] = ACTIONS(647), - [anon_sym_where] = ACTIONS(29), - [anon_sym_notnull] = ACTIONS(29), - [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(675), + [anon_sym_return] = ACTIONS(661), + [anon_sym_ref] = ACTIONS(715), + [anon_sym_LBRACE] = ACTIONS(665), + [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(673), + [anon_sym_internal] = ACTIONS(645), + [anon_sym_new] = ACTIONS(675), + [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(677), [anon_sym_BANG] = ACTIONS(75), [anon_sym_TILDE] = ACTIONS(75), [anon_sym_PLUS_PLUS] = ACTIONS(75), @@ -48290,23 +48176,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(677), - [anon_sym_unchecked] = ACTIONS(675), - [anon_sym_continue] = ACTIONS(679), - [anon_sym_do] = ACTIONS(681), - [anon_sym_while] = ACTIONS(683), - [anon_sym_for] = ACTIONS(685), - [anon_sym_lock] = ACTIONS(687), - [anon_sym_yield] = ACTIONS(689), - [anon_sym_switch] = ACTIONS(691), + [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(695), - [anon_sym_try] = ACTIONS(697), + [anon_sym_throw] = ACTIONS(721), + [anon_sym_try] = ACTIONS(703), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(699), + [anon_sym_await] = ACTIONS(723), [anon_sym_foreach] = ACTIONS(117), - [anon_sym_goto] = ACTIONS(701), - [anon_sym_if] = ACTIONS(703), + [anon_sym_goto] = ACTIONS(707), + [anon_sym_if] = ACTIONS(709), [anon_sym_DOT_DOT] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), @@ -48332,7 +48218,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(705), + [aux_sym_preproc_if_token1] = ACTIONS(713), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -48349,114 +48235,114 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [97] = { - [sym_attribute_list] = STATE(3645), - [sym__attribute_list] = STATE(3580), - [sym_modifier] = STATE(3878), - [sym_parameter_list] = STATE(7311), - [sym_block] = STATE(2120), - [sym_variable_declaration] = STATE(7689), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(5160), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2204), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5867), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_statement] = STATE(2118), - [sym_break_statement] = STATE(2120), - [sym_checked_statement] = STATE(2120), - [sym_continue_statement] = STATE(2120), - [sym_do_statement] = STATE(2120), - [sym_empty_statement] = STATE(2120), - [sym_expression_statement] = STATE(2120), - [sym_fixed_statement] = STATE(2120), - [sym_for_statement] = STATE(2120), - [sym_return_statement] = STATE(2120), - [sym_lock_statement] = STATE(2120), - [sym_yield_statement] = STATE(2120), - [sym_switch_statement] = STATE(2120), - [sym_throw_statement] = STATE(2120), - [sym_try_statement] = STATE(2120), - [sym_unsafe_statement] = STATE(2120), - [sym_using_statement] = STATE(2120), - [sym_foreach_statement] = STATE(2120), - [sym__foreach_statement_initializer] = STATE(93), - [sym_goto_statement] = STATE(2120), - [sym_labeled_statement] = STATE(2120), - [sym_if_statement] = STATE(2120), - [sym_while_statement] = STATE(2120), - [sym_local_declaration_statement] = STATE(2120), - [sym_local_function_statement] = STATE(2120), - [sym__local_function_declaration] = STATE(6322), - [sym_expression] = STATE(5672), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3461), - [sym__expression_statement_expression] = STATE(5635), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3080), - [sym_postfix_unary_expression] = STATE(3111), - [sym_prefix_unary_expression] = STATE(3111), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6154), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3080), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3111), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3080), - [sym_member_access_expression] = STATE(2484), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3111), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7530), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(3080), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3080), - [sym_typeof_expression] = STATE(3080), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2484), - [sym_literal] = STATE(3080), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2282), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_top_level] = STATE(2120), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(3645), + [sym_attribute_list] = STATE(3612), + [sym__attribute_list] = STATE(3570), + [sym_modifier] = STATE(3845), + [sym_parameter_list] = STATE(7531), + [sym_block] = STATE(1948), + [sym_variable_declaration] = STATE(7649), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(5152), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2196), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5805), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_statement] = STATE(1934), + [sym_break_statement] = STATE(1948), + [sym_checked_statement] = STATE(1948), + [sym_continue_statement] = STATE(1948), + [sym_do_statement] = STATE(1948), + [sym_empty_statement] = STATE(1948), + [sym_expression_statement] = STATE(1948), + [sym_fixed_statement] = STATE(1948), + [sym_for_statement] = STATE(1948), + [sym_return_statement] = STATE(1948), + [sym_lock_statement] = STATE(1948), + [sym_yield_statement] = STATE(1948), + [sym_switch_statement] = STATE(1948), + [sym_throw_statement] = STATE(1948), + [sym_try_statement] = STATE(1948), + [sym_unsafe_statement] = STATE(1948), + [sym_using_statement] = STATE(1948), + [sym_foreach_statement] = STATE(1948), + [sym__foreach_statement_initializer] = STATE(94), + [sym_goto_statement] = STATE(1948), + [sym_labeled_statement] = STATE(1948), + [sym_if_statement] = STATE(1948), + [sym_while_statement] = STATE(1948), + [sym_local_declaration_statement] = STATE(1948), + [sym_local_function_statement] = STATE(1948), + [sym__local_function_declaration] = STATE(6313), + [sym_expression] = STATE(5660), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3356), + [sym__expression_statement_expression] = STATE(5134), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3102), + [sym_postfix_unary_expression] = STATE(3079), + [sym_prefix_unary_expression] = STATE(3079), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6134), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3102), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3079), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3102), + [sym_member_access_expression] = STATE(2472), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3079), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7425), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(3102), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3102), + [sym_typeof_expression] = STATE(3102), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2472), + [sym_literal] = STATE(3102), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2259), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_top_level] = STATE(1948), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(3612), [sym_preproc_region] = STATE(97), [sym_preproc_endregion] = STATE(97), [sym_preproc_line] = STATE(97), @@ -48466,44 +48352,44 @@ 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(2286), - [aux_sym__class_declaration_initializer_repeat2] = STATE(2529), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [aux_sym__class_declaration_initializer_repeat1] = STATE(2277), + [aux_sym__class_declaration_initializer_repeat2] = STATE(2515), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), - [anon_sym_extern] = ACTIONS(647), + [anon_sym_extern] = ACTIONS(645), [anon_sym_alias] = ACTIONS(29), - [anon_sym_SEMI] = ACTIONS(649), + [anon_sym_SEMI] = ACTIONS(161), [anon_sym_global] = ACTIONS(29), - [anon_sym_using] = ACTIONS(651), - [anon_sym_unsafe] = ACTIONS(653), - [anon_sym_static] = ACTIONS(655), - [anon_sym_LBRACK] = ACTIONS(657), + [anon_sym_using] = ACTIONS(995), + [anon_sym_unsafe] = ACTIONS(997), + [anon_sym_static] = ACTIONS(653), + [anon_sym_LBRACK] = ACTIONS(655), [anon_sym_LPAREN] = ACTIONS(43), - [anon_sym_return] = ACTIONS(659), - [anon_sym_ref] = ACTIONS(661), - [anon_sym_LBRACE] = ACTIONS(663), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_abstract] = ACTIONS(647), - [anon_sym_async] = ACTIONS(655), - [anon_sym_const] = ACTIONS(647), - [anon_sym_file] = ACTIONS(669), - [anon_sym_fixed] = ACTIONS(671), - [anon_sym_internal] = ACTIONS(647), - [anon_sym_new] = ACTIONS(673), - [anon_sym_override] = ACTIONS(647), - [anon_sym_partial] = ACTIONS(647), - [anon_sym_private] = ACTIONS(647), - [anon_sym_protected] = ACTIONS(647), - [anon_sym_public] = ACTIONS(647), - [anon_sym_readonly] = ACTIONS(647), - [anon_sym_required] = ACTIONS(647), - [anon_sym_sealed] = ACTIONS(647), - [anon_sym_virtual] = ACTIONS(647), - [anon_sym_volatile] = ACTIONS(647), - [anon_sym_where] = ACTIONS(29), - [anon_sym_notnull] = ACTIONS(29), - [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(675), + [anon_sym_return] = ACTIONS(171), + [anon_sym_ref] = ACTIONS(715), + [anon_sym_LBRACE] = ACTIONS(175), + [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(999), + [anon_sym_internal] = ACTIONS(645), + [anon_sym_new] = ACTIONS(675), + [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(179), [anon_sym_BANG] = ACTIONS(75), [anon_sym_TILDE] = ACTIONS(75), [anon_sym_PLUS_PLUS] = ACTIONS(75), @@ -48520,23 +48406,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(677), - [anon_sym_unchecked] = ACTIONS(675), - [anon_sym_continue] = ACTIONS(679), - [anon_sym_do] = ACTIONS(681), - [anon_sym_while] = ACTIONS(683), - [anon_sym_for] = ACTIONS(685), - [anon_sym_lock] = ACTIONS(687), - [anon_sym_yield] = ACTIONS(689), - [anon_sym_switch] = ACTIONS(691), + [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(695), - [anon_sym_try] = ACTIONS(697), + [anon_sym_throw] = ACTIONS(197), + [anon_sym_try] = ACTIONS(199), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(699), + [anon_sym_await] = ACTIONS(201), [anon_sym_foreach] = ACTIONS(117), - [anon_sym_goto] = ACTIONS(701), - [anon_sym_if] = ACTIONS(703), + [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), @@ -48562,7 +48448,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(705), + [aux_sym_preproc_if_token1] = ACTIONS(1001), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -48579,114 +48465,114 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [98] = { - [sym_attribute_list] = STATE(3645), - [sym__attribute_list] = STATE(3580), - [sym_modifier] = STATE(3878), - [sym_parameter_list] = STATE(7311), - [sym_block] = STATE(1968), - [sym_variable_declaration] = STATE(7525), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(5160), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2204), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5867), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_statement] = STATE(1936), - [sym_break_statement] = STATE(1968), - [sym_checked_statement] = STATE(1968), - [sym_continue_statement] = STATE(1968), - [sym_do_statement] = STATE(1968), - [sym_empty_statement] = STATE(1968), - [sym_expression_statement] = STATE(1968), - [sym_fixed_statement] = STATE(1968), - [sym_for_statement] = STATE(1968), - [sym_return_statement] = STATE(1968), - [sym_lock_statement] = STATE(1968), - [sym_yield_statement] = STATE(1968), - [sym_switch_statement] = STATE(1968), - [sym_throw_statement] = STATE(1968), - [sym_try_statement] = STATE(1968), - [sym_unsafe_statement] = STATE(1968), - [sym_using_statement] = STATE(1968), - [sym_foreach_statement] = STATE(1968), - [sym__foreach_statement_initializer] = STATE(91), - [sym_goto_statement] = STATE(1968), - [sym_labeled_statement] = STATE(1968), - [sym_if_statement] = STATE(1968), - [sym_while_statement] = STATE(1968), - [sym_local_declaration_statement] = STATE(1968), - [sym_local_function_statement] = STATE(1968), - [sym__local_function_declaration] = STATE(6298), - [sym_expression] = STATE(5672), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3461), - [sym__expression_statement_expression] = STATE(5158), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3080), - [sym_postfix_unary_expression] = STATE(3111), - [sym_prefix_unary_expression] = STATE(3111), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6154), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3080), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3111), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3080), - [sym_member_access_expression] = STATE(2484), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3111), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7530), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(3080), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3080), - [sym_typeof_expression] = STATE(3080), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2484), - [sym_literal] = STATE(3080), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2264), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_top_level] = STATE(1968), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(3645), + [sym_attribute_list] = STATE(3612), + [sym__attribute_list] = STATE(3570), + [sym_modifier] = STATE(3845), + [sym_parameter_list] = STATE(7531), + [sym_block] = STATE(1948), + [sym_variable_declaration] = STATE(7649), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(5152), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2196), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5805), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_statement] = STATE(1962), + [sym_break_statement] = STATE(1948), + [sym_checked_statement] = STATE(1948), + [sym_continue_statement] = STATE(1948), + [sym_do_statement] = STATE(1948), + [sym_empty_statement] = STATE(1948), + [sym_expression_statement] = STATE(1948), + [sym_fixed_statement] = STATE(1948), + [sym_for_statement] = STATE(1948), + [sym_return_statement] = STATE(1948), + [sym_lock_statement] = STATE(1948), + [sym_yield_statement] = STATE(1948), + [sym_switch_statement] = STATE(1948), + [sym_throw_statement] = STATE(1948), + [sym_try_statement] = STATE(1948), + [sym_unsafe_statement] = STATE(1948), + [sym_using_statement] = STATE(1948), + [sym_foreach_statement] = STATE(1948), + [sym__foreach_statement_initializer] = STATE(94), + [sym_goto_statement] = STATE(1948), + [sym_labeled_statement] = STATE(1948), + [sym_if_statement] = STATE(1948), + [sym_while_statement] = STATE(1948), + [sym_local_declaration_statement] = STATE(1948), + [sym_local_function_statement] = STATE(1948), + [sym__local_function_declaration] = STATE(6313), + [sym_expression] = STATE(5660), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3356), + [sym__expression_statement_expression] = STATE(5134), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3102), + [sym_postfix_unary_expression] = STATE(3079), + [sym_prefix_unary_expression] = STATE(3079), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6134), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3102), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3079), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3102), + [sym_member_access_expression] = STATE(2472), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3079), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7425), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(3102), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3102), + [sym_typeof_expression] = STATE(3102), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2472), + [sym_literal] = STATE(3102), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2259), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_top_level] = STATE(1948), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(3612), [sym_preproc_region] = STATE(98), [sym_preproc_endregion] = STATE(98), [sym_preproc_line] = STATE(98), @@ -48696,44 +48582,44 @@ 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(2286), - [aux_sym__class_declaration_initializer_repeat2] = STATE(2547), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [aux_sym__class_declaration_initializer_repeat1] = STATE(2277), + [aux_sym__class_declaration_initializer_repeat2] = STATE(2515), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), - [anon_sym_extern] = ACTIONS(647), + [anon_sym_extern] = ACTIONS(645), [anon_sym_alias] = ACTIONS(29), [anon_sym_SEMI] = ACTIONS(161), [anon_sym_global] = ACTIONS(29), - [anon_sym_using] = ACTIONS(989), - [anon_sym_unsafe] = ACTIONS(991), - [anon_sym_static] = ACTIONS(655), - [anon_sym_LBRACK] = ACTIONS(657), + [anon_sym_using] = ACTIONS(995), + [anon_sym_unsafe] = ACTIONS(997), + [anon_sym_static] = ACTIONS(653), + [anon_sym_LBRACK] = ACTIONS(655), [anon_sym_LPAREN] = ACTIONS(43), [anon_sym_return] = ACTIONS(171), - [anon_sym_ref] = ACTIONS(661), - [anon_sym_LBRACE] = ACTIONS(177), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_abstract] = ACTIONS(647), - [anon_sym_async] = ACTIONS(655), - [anon_sym_const] = ACTIONS(647), - [anon_sym_file] = ACTIONS(669), - [anon_sym_fixed] = ACTIONS(993), - [anon_sym_internal] = ACTIONS(647), - [anon_sym_new] = ACTIONS(673), - [anon_sym_override] = ACTIONS(647), - [anon_sym_partial] = ACTIONS(647), - [anon_sym_private] = ACTIONS(647), - [anon_sym_protected] = ACTIONS(647), - [anon_sym_public] = ACTIONS(647), - [anon_sym_readonly] = ACTIONS(647), - [anon_sym_required] = ACTIONS(647), - [anon_sym_sealed] = ACTIONS(647), - [anon_sym_virtual] = ACTIONS(647), - [anon_sym_volatile] = ACTIONS(647), - [anon_sym_where] = ACTIONS(29), - [anon_sym_notnull] = ACTIONS(29), - [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(181), + [anon_sym_ref] = ACTIONS(715), + [anon_sym_LBRACE] = ACTIONS(175), + [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(999), + [anon_sym_internal] = ACTIONS(645), + [anon_sym_new] = ACTIONS(675), + [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(179), [anon_sym_BANG] = ACTIONS(75), [anon_sym_TILDE] = ACTIONS(75), [anon_sym_PLUS_PLUS] = ACTIONS(75), @@ -48750,23 +48636,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(183), - [anon_sym_unchecked] = ACTIONS(181), - [anon_sym_continue] = ACTIONS(185), - [anon_sym_do] = ACTIONS(187), - [anon_sym_while] = ACTIONS(189), - [anon_sym_for] = ACTIONS(191), - [anon_sym_lock] = ACTIONS(193), - [anon_sym_yield] = ACTIONS(195), - [anon_sym_switch] = ACTIONS(197), + [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(199), - [anon_sym_try] = ACTIONS(201), + [anon_sym_throw] = ACTIONS(197), + [anon_sym_try] = ACTIONS(199), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(203), + [anon_sym_await] = ACTIONS(201), [anon_sym_foreach] = ACTIONS(117), - [anon_sym_goto] = ACTIONS(205), - [anon_sym_if] = ACTIONS(207), + [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), @@ -48792,7 +48678,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(995), + [aux_sym_preproc_if_token1] = ACTIONS(1001), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -48809,114 +48695,114 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [99] = { - [sym_attribute_list] = STATE(3645), - [sym__attribute_list] = STATE(3580), - [sym_modifier] = STATE(3878), - [sym_parameter_list] = STATE(7311), - [sym_block] = STATE(1968), - [sym_variable_declaration] = STATE(7525), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(5160), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2204), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5867), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_statement] = STATE(1938), - [sym_break_statement] = STATE(1968), - [sym_checked_statement] = STATE(1968), - [sym_continue_statement] = STATE(1968), - [sym_do_statement] = STATE(1968), - [sym_empty_statement] = STATE(1968), - [sym_expression_statement] = STATE(1968), - [sym_fixed_statement] = STATE(1968), - [sym_for_statement] = STATE(1968), - [sym_return_statement] = STATE(1968), - [sym_lock_statement] = STATE(1968), - [sym_yield_statement] = STATE(1968), - [sym_switch_statement] = STATE(1968), - [sym_throw_statement] = STATE(1968), - [sym_try_statement] = STATE(1968), - [sym_unsafe_statement] = STATE(1968), - [sym_using_statement] = STATE(1968), - [sym_foreach_statement] = STATE(1968), - [sym__foreach_statement_initializer] = STATE(91), - [sym_goto_statement] = STATE(1968), - [sym_labeled_statement] = STATE(1968), - [sym_if_statement] = STATE(1968), - [sym_while_statement] = STATE(1968), - [sym_local_declaration_statement] = STATE(1968), - [sym_local_function_statement] = STATE(1968), - [sym__local_function_declaration] = STATE(6298), - [sym_expression] = STATE(5672), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3461), - [sym__expression_statement_expression] = STATE(5158), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3080), - [sym_postfix_unary_expression] = STATE(3111), - [sym_prefix_unary_expression] = STATE(3111), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6154), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3080), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3111), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3080), - [sym_member_access_expression] = STATE(2484), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3111), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7530), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(3080), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3080), - [sym_typeof_expression] = STATE(3080), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2484), - [sym_literal] = STATE(3080), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2264), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_top_level] = STATE(1968), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(3645), + [sym_attribute_list] = STATE(3612), + [sym__attribute_list] = STATE(3570), + [sym_modifier] = STATE(3845), + [sym_parameter_list] = STATE(7531), + [sym_block] = STATE(1948), + [sym_variable_declaration] = STATE(7649), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(5152), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2196), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5805), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_statement] = STATE(1963), + [sym_break_statement] = STATE(1948), + [sym_checked_statement] = STATE(1948), + [sym_continue_statement] = STATE(1948), + [sym_do_statement] = STATE(1948), + [sym_empty_statement] = STATE(1948), + [sym_expression_statement] = STATE(1948), + [sym_fixed_statement] = STATE(1948), + [sym_for_statement] = STATE(1948), + [sym_return_statement] = STATE(1948), + [sym_lock_statement] = STATE(1948), + [sym_yield_statement] = STATE(1948), + [sym_switch_statement] = STATE(1948), + [sym_throw_statement] = STATE(1948), + [sym_try_statement] = STATE(1948), + [sym_unsafe_statement] = STATE(1948), + [sym_using_statement] = STATE(1948), + [sym_foreach_statement] = STATE(1948), + [sym__foreach_statement_initializer] = STATE(94), + [sym_goto_statement] = STATE(1948), + [sym_labeled_statement] = STATE(1948), + [sym_if_statement] = STATE(1948), + [sym_while_statement] = STATE(1948), + [sym_local_declaration_statement] = STATE(1948), + [sym_local_function_statement] = STATE(1948), + [sym__local_function_declaration] = STATE(6313), + [sym_expression] = STATE(5660), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3356), + [sym__expression_statement_expression] = STATE(5134), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3102), + [sym_postfix_unary_expression] = STATE(3079), + [sym_prefix_unary_expression] = STATE(3079), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6134), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3102), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3079), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3102), + [sym_member_access_expression] = STATE(2472), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3079), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7425), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(3102), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3102), + [sym_typeof_expression] = STATE(3102), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2472), + [sym_literal] = STATE(3102), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2259), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_top_level] = STATE(1948), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(3612), [sym_preproc_region] = STATE(99), [sym_preproc_endregion] = STATE(99), [sym_preproc_line] = STATE(99), @@ -48926,44 +48812,44 @@ 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(2286), - [aux_sym__class_declaration_initializer_repeat2] = STATE(2547), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [aux_sym__class_declaration_initializer_repeat1] = STATE(2277), + [aux_sym__class_declaration_initializer_repeat2] = STATE(2515), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), - [anon_sym_extern] = ACTIONS(647), + [anon_sym_extern] = ACTIONS(645), [anon_sym_alias] = ACTIONS(29), [anon_sym_SEMI] = ACTIONS(161), [anon_sym_global] = ACTIONS(29), - [anon_sym_using] = ACTIONS(989), - [anon_sym_unsafe] = ACTIONS(991), - [anon_sym_static] = ACTIONS(655), - [anon_sym_LBRACK] = ACTIONS(657), + [anon_sym_using] = ACTIONS(995), + [anon_sym_unsafe] = ACTIONS(997), + [anon_sym_static] = ACTIONS(653), + [anon_sym_LBRACK] = ACTIONS(655), [anon_sym_LPAREN] = ACTIONS(43), [anon_sym_return] = ACTIONS(171), - [anon_sym_ref] = ACTIONS(661), - [anon_sym_LBRACE] = ACTIONS(177), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_abstract] = ACTIONS(647), - [anon_sym_async] = ACTIONS(655), - [anon_sym_const] = ACTIONS(647), - [anon_sym_file] = ACTIONS(669), - [anon_sym_fixed] = ACTIONS(993), - [anon_sym_internal] = ACTIONS(647), - [anon_sym_new] = ACTIONS(673), - [anon_sym_override] = ACTIONS(647), - [anon_sym_partial] = ACTIONS(647), - [anon_sym_private] = ACTIONS(647), - [anon_sym_protected] = ACTIONS(647), - [anon_sym_public] = ACTIONS(647), - [anon_sym_readonly] = ACTIONS(647), - [anon_sym_required] = ACTIONS(647), - [anon_sym_sealed] = ACTIONS(647), - [anon_sym_virtual] = ACTIONS(647), - [anon_sym_volatile] = ACTIONS(647), - [anon_sym_where] = ACTIONS(29), - [anon_sym_notnull] = ACTIONS(29), - [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(181), + [anon_sym_ref] = ACTIONS(715), + [anon_sym_LBRACE] = ACTIONS(175), + [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(999), + [anon_sym_internal] = ACTIONS(645), + [anon_sym_new] = ACTIONS(675), + [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(179), [anon_sym_BANG] = ACTIONS(75), [anon_sym_TILDE] = ACTIONS(75), [anon_sym_PLUS_PLUS] = ACTIONS(75), @@ -48980,23 +48866,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(183), - [anon_sym_unchecked] = ACTIONS(181), - [anon_sym_continue] = ACTIONS(185), - [anon_sym_do] = ACTIONS(187), - [anon_sym_while] = ACTIONS(189), - [anon_sym_for] = ACTIONS(191), - [anon_sym_lock] = ACTIONS(193), - [anon_sym_yield] = ACTIONS(195), - [anon_sym_switch] = ACTIONS(197), + [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(199), - [anon_sym_try] = ACTIONS(201), + [anon_sym_throw] = ACTIONS(197), + [anon_sym_try] = ACTIONS(199), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(203), + [anon_sym_await] = ACTIONS(201), [anon_sym_foreach] = ACTIONS(117), - [anon_sym_goto] = ACTIONS(205), - [anon_sym_if] = ACTIONS(207), + [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), @@ -49022,7 +48908,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(995), + [aux_sym_preproc_if_token1] = ACTIONS(1001), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -49039,114 +48925,114 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [100] = { - [sym_attribute_list] = STATE(3645), - [sym__attribute_list] = STATE(3580), - [sym_modifier] = STATE(3878), - [sym_parameter_list] = STATE(7311), - [sym_block] = STATE(1968), - [sym_variable_declaration] = STATE(7525), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(5160), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2204), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5867), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_statement] = STATE(1949), - [sym_break_statement] = STATE(1968), - [sym_checked_statement] = STATE(1968), - [sym_continue_statement] = STATE(1968), - [sym_do_statement] = STATE(1968), - [sym_empty_statement] = STATE(1968), - [sym_expression_statement] = STATE(1968), - [sym_fixed_statement] = STATE(1968), - [sym_for_statement] = STATE(1968), - [sym_return_statement] = STATE(1968), - [sym_lock_statement] = STATE(1968), - [sym_yield_statement] = STATE(1968), - [sym_switch_statement] = STATE(1968), - [sym_throw_statement] = STATE(1968), - [sym_try_statement] = STATE(1968), - [sym_unsafe_statement] = STATE(1968), - [sym_using_statement] = STATE(1968), - [sym_foreach_statement] = STATE(1968), - [sym__foreach_statement_initializer] = STATE(91), - [sym_goto_statement] = STATE(1968), - [sym_labeled_statement] = STATE(1968), - [sym_if_statement] = STATE(1968), - [sym_while_statement] = STATE(1968), - [sym_local_declaration_statement] = STATE(1968), - [sym_local_function_statement] = STATE(1968), - [sym__local_function_declaration] = STATE(6298), - [sym_expression] = STATE(5672), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3461), - [sym__expression_statement_expression] = STATE(5158), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3080), - [sym_postfix_unary_expression] = STATE(3111), - [sym_prefix_unary_expression] = STATE(3111), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6154), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3080), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3111), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3080), - [sym_member_access_expression] = STATE(2484), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3111), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7530), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(3080), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3080), - [sym_typeof_expression] = STATE(3080), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2484), - [sym_literal] = STATE(3080), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2264), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_top_level] = STATE(1968), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(3645), + [sym_attribute_list] = STATE(3612), + [sym__attribute_list] = STATE(3570), + [sym_modifier] = STATE(3845), + [sym_parameter_list] = STATE(7531), + [sym_block] = STATE(1948), + [sym_variable_declaration] = STATE(7649), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(5152), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2196), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5805), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_statement] = STATE(1965), + [sym_break_statement] = STATE(1948), + [sym_checked_statement] = STATE(1948), + [sym_continue_statement] = STATE(1948), + [sym_do_statement] = STATE(1948), + [sym_empty_statement] = STATE(1948), + [sym_expression_statement] = STATE(1948), + [sym_fixed_statement] = STATE(1948), + [sym_for_statement] = STATE(1948), + [sym_return_statement] = STATE(1948), + [sym_lock_statement] = STATE(1948), + [sym_yield_statement] = STATE(1948), + [sym_switch_statement] = STATE(1948), + [sym_throw_statement] = STATE(1948), + [sym_try_statement] = STATE(1948), + [sym_unsafe_statement] = STATE(1948), + [sym_using_statement] = STATE(1948), + [sym_foreach_statement] = STATE(1948), + [sym__foreach_statement_initializer] = STATE(94), + [sym_goto_statement] = STATE(1948), + [sym_labeled_statement] = STATE(1948), + [sym_if_statement] = STATE(1948), + [sym_while_statement] = STATE(1948), + [sym_local_declaration_statement] = STATE(1948), + [sym_local_function_statement] = STATE(1948), + [sym__local_function_declaration] = STATE(6313), + [sym_expression] = STATE(5660), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3356), + [sym__expression_statement_expression] = STATE(5134), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3102), + [sym_postfix_unary_expression] = STATE(3079), + [sym_prefix_unary_expression] = STATE(3079), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6134), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3102), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3079), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3102), + [sym_member_access_expression] = STATE(2472), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3079), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7425), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(3102), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3102), + [sym_typeof_expression] = STATE(3102), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2472), + [sym_literal] = STATE(3102), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2259), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_top_level] = STATE(1948), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(3612), [sym_preproc_region] = STATE(100), [sym_preproc_endregion] = STATE(100), [sym_preproc_line] = STATE(100), @@ -49156,44 +49042,44 @@ 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(2286), - [aux_sym__class_declaration_initializer_repeat2] = STATE(2547), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [aux_sym__class_declaration_initializer_repeat1] = STATE(2277), + [aux_sym__class_declaration_initializer_repeat2] = STATE(2515), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), - [anon_sym_extern] = ACTIONS(647), + [anon_sym_extern] = ACTIONS(645), [anon_sym_alias] = ACTIONS(29), [anon_sym_SEMI] = ACTIONS(161), [anon_sym_global] = ACTIONS(29), - [anon_sym_using] = ACTIONS(989), - [anon_sym_unsafe] = ACTIONS(991), - [anon_sym_static] = ACTIONS(655), - [anon_sym_LBRACK] = ACTIONS(657), + [anon_sym_using] = ACTIONS(995), + [anon_sym_unsafe] = ACTIONS(997), + [anon_sym_static] = ACTIONS(653), + [anon_sym_LBRACK] = ACTIONS(655), [anon_sym_LPAREN] = ACTIONS(43), [anon_sym_return] = ACTIONS(171), - [anon_sym_ref] = ACTIONS(661), - [anon_sym_LBRACE] = ACTIONS(177), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_abstract] = ACTIONS(647), - [anon_sym_async] = ACTIONS(655), - [anon_sym_const] = ACTIONS(647), - [anon_sym_file] = ACTIONS(669), - [anon_sym_fixed] = ACTIONS(993), - [anon_sym_internal] = ACTIONS(647), - [anon_sym_new] = ACTIONS(673), - [anon_sym_override] = ACTIONS(647), - [anon_sym_partial] = ACTIONS(647), - [anon_sym_private] = ACTIONS(647), - [anon_sym_protected] = ACTIONS(647), - [anon_sym_public] = ACTIONS(647), - [anon_sym_readonly] = ACTIONS(647), - [anon_sym_required] = ACTIONS(647), - [anon_sym_sealed] = ACTIONS(647), - [anon_sym_virtual] = ACTIONS(647), - [anon_sym_volatile] = ACTIONS(647), - [anon_sym_where] = ACTIONS(29), - [anon_sym_notnull] = ACTIONS(29), - [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(181), + [anon_sym_ref] = ACTIONS(715), + [anon_sym_LBRACE] = ACTIONS(175), + [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(999), + [anon_sym_internal] = ACTIONS(645), + [anon_sym_new] = ACTIONS(675), + [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(179), [anon_sym_BANG] = ACTIONS(75), [anon_sym_TILDE] = ACTIONS(75), [anon_sym_PLUS_PLUS] = ACTIONS(75), @@ -49210,23 +49096,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(183), - [anon_sym_unchecked] = ACTIONS(181), - [anon_sym_continue] = ACTIONS(185), - [anon_sym_do] = ACTIONS(187), - [anon_sym_while] = ACTIONS(189), - [anon_sym_for] = ACTIONS(191), - [anon_sym_lock] = ACTIONS(193), - [anon_sym_yield] = ACTIONS(195), - [anon_sym_switch] = ACTIONS(197), + [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(199), - [anon_sym_try] = ACTIONS(201), + [anon_sym_throw] = ACTIONS(197), + [anon_sym_try] = ACTIONS(199), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(203), + [anon_sym_await] = ACTIONS(201), [anon_sym_foreach] = ACTIONS(117), - [anon_sym_goto] = ACTIONS(205), - [anon_sym_if] = ACTIONS(207), + [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), @@ -49252,7 +49138,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(995), + [aux_sym_preproc_if_token1] = ACTIONS(1001), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -49269,114 +49155,114 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [101] = { - [sym_attribute_list] = STATE(3645), - [sym__attribute_list] = STATE(3580), - [sym_modifier] = STATE(3878), - [sym_parameter_list] = STATE(7311), - [sym_block] = STATE(2120), - [sym_variable_declaration] = STATE(7689), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(5160), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2204), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5867), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_statement] = STATE(2128), - [sym_break_statement] = STATE(2120), - [sym_checked_statement] = STATE(2120), - [sym_continue_statement] = STATE(2120), - [sym_do_statement] = STATE(2120), - [sym_empty_statement] = STATE(2120), - [sym_expression_statement] = STATE(2120), - [sym_fixed_statement] = STATE(2120), - [sym_for_statement] = STATE(2120), - [sym_return_statement] = STATE(2120), - [sym_lock_statement] = STATE(2120), - [sym_yield_statement] = STATE(2120), - [sym_switch_statement] = STATE(2120), - [sym_throw_statement] = STATE(2120), - [sym_try_statement] = STATE(2120), - [sym_unsafe_statement] = STATE(2120), - [sym_using_statement] = STATE(2120), - [sym_foreach_statement] = STATE(2120), + [sym_attribute_list] = STATE(3612), + [sym__attribute_list] = STATE(3570), + [sym_modifier] = STATE(3845), + [sym_parameter_list] = STATE(7531), + [sym_block] = STATE(2093), + [sym_variable_declaration] = STATE(7607), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(5152), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2196), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5805), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_statement] = STATE(2119), + [sym_break_statement] = STATE(2093), + [sym_checked_statement] = STATE(2093), + [sym_continue_statement] = STATE(2093), + [sym_do_statement] = STATE(2093), + [sym_empty_statement] = STATE(2093), + [sym_expression_statement] = STATE(2093), + [sym_fixed_statement] = STATE(2093), + [sym_for_statement] = STATE(2093), + [sym_return_statement] = STATE(2093), + [sym_lock_statement] = STATE(2093), + [sym_yield_statement] = STATE(2093), + [sym_switch_statement] = STATE(2093), + [sym_throw_statement] = STATE(2093), + [sym_try_statement] = STATE(2093), + [sym_unsafe_statement] = STATE(2093), + [sym_using_statement] = STATE(2093), + [sym_foreach_statement] = STATE(2093), [sym__foreach_statement_initializer] = STATE(93), - [sym_goto_statement] = STATE(2120), - [sym_labeled_statement] = STATE(2120), - [sym_if_statement] = STATE(2120), - [sym_while_statement] = STATE(2120), - [sym_local_declaration_statement] = STATE(2120), - [sym_local_function_statement] = STATE(2120), - [sym__local_function_declaration] = STATE(6322), - [sym_expression] = STATE(5672), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3461), - [sym__expression_statement_expression] = STATE(5635), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3080), - [sym_postfix_unary_expression] = STATE(3111), - [sym_prefix_unary_expression] = STATE(3111), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6154), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3080), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3111), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3080), - [sym_member_access_expression] = STATE(2484), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3111), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7530), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(3080), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3080), - [sym_typeof_expression] = STATE(3080), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2484), - [sym_literal] = STATE(3080), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2282), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_top_level] = STATE(2120), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(3645), + [sym_goto_statement] = STATE(2093), + [sym_labeled_statement] = STATE(2093), + [sym_if_statement] = STATE(2093), + [sym_while_statement] = STATE(2093), + [sym_local_declaration_statement] = STATE(2093), + [sym_local_function_statement] = STATE(2093), + [sym__local_function_declaration] = STATE(6310), + [sym_expression] = STATE(5660), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3356), + [sym__expression_statement_expression] = STATE(5554), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3102), + [sym_postfix_unary_expression] = STATE(3079), + [sym_prefix_unary_expression] = STATE(3079), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6134), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3102), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3079), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3102), + [sym_member_access_expression] = STATE(2472), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3079), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7425), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(3102), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3102), + [sym_typeof_expression] = STATE(3102), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2472), + [sym_literal] = STATE(3102), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2269), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_top_level] = STATE(2093), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(3612), [sym_preproc_region] = STATE(101), [sym_preproc_endregion] = STATE(101), [sym_preproc_line] = STATE(101), @@ -49386,44 +49272,44 @@ 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(2286), - [aux_sym__class_declaration_initializer_repeat2] = STATE(2529), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [aux_sym__class_declaration_initializer_repeat1] = STATE(2277), + [aux_sym__class_declaration_initializer_repeat2] = STATE(2540), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), - [anon_sym_extern] = ACTIONS(647), + [anon_sym_extern] = ACTIONS(645), [anon_sym_alias] = ACTIONS(29), - [anon_sym_SEMI] = ACTIONS(649), + [anon_sym_SEMI] = ACTIONS(647), [anon_sym_global] = ACTIONS(29), - [anon_sym_using] = ACTIONS(651), - [anon_sym_unsafe] = ACTIONS(653), - [anon_sym_static] = ACTIONS(655), - [anon_sym_LBRACK] = ACTIONS(657), + [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(659), - [anon_sym_ref] = ACTIONS(661), - [anon_sym_LBRACE] = ACTIONS(663), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_abstract] = ACTIONS(647), - [anon_sym_async] = ACTIONS(655), - [anon_sym_const] = ACTIONS(647), - [anon_sym_file] = ACTIONS(669), - [anon_sym_fixed] = ACTIONS(671), - [anon_sym_internal] = ACTIONS(647), - [anon_sym_new] = ACTIONS(673), - [anon_sym_override] = ACTIONS(647), - [anon_sym_partial] = ACTIONS(647), - [anon_sym_private] = ACTIONS(647), - [anon_sym_protected] = ACTIONS(647), - [anon_sym_public] = ACTIONS(647), - [anon_sym_readonly] = ACTIONS(647), - [anon_sym_required] = ACTIONS(647), - [anon_sym_sealed] = ACTIONS(647), - [anon_sym_virtual] = ACTIONS(647), - [anon_sym_volatile] = ACTIONS(647), - [anon_sym_where] = ACTIONS(29), - [anon_sym_notnull] = ACTIONS(29), - [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(675), + [anon_sym_return] = ACTIONS(661), + [anon_sym_ref] = ACTIONS(715), + [anon_sym_LBRACE] = ACTIONS(665), + [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(673), + [anon_sym_internal] = ACTIONS(645), + [anon_sym_new] = ACTIONS(675), + [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(677), [anon_sym_BANG] = ACTIONS(75), [anon_sym_TILDE] = ACTIONS(75), [anon_sym_PLUS_PLUS] = ACTIONS(75), @@ -49440,23 +49326,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(677), - [anon_sym_unchecked] = ACTIONS(675), - [anon_sym_continue] = ACTIONS(679), - [anon_sym_do] = ACTIONS(681), - [anon_sym_while] = ACTIONS(683), - [anon_sym_for] = ACTIONS(685), - [anon_sym_lock] = ACTIONS(687), - [anon_sym_yield] = ACTIONS(689), - [anon_sym_switch] = ACTIONS(691), + [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(695), - [anon_sym_try] = ACTIONS(697), + [anon_sym_throw] = ACTIONS(721), + [anon_sym_try] = ACTIONS(703), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(699), + [anon_sym_await] = ACTIONS(723), [anon_sym_foreach] = ACTIONS(117), - [anon_sym_goto] = ACTIONS(701), - [anon_sym_if] = ACTIONS(703), + [anon_sym_goto] = ACTIONS(707), + [anon_sym_if] = ACTIONS(709), [anon_sym_DOT_DOT] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), @@ -49482,7 +49368,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(705), + [aux_sym_preproc_if_token1] = ACTIONS(713), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -49499,114 +49385,114 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [102] = { - [sym_attribute_list] = STATE(3645), - [sym__attribute_list] = STATE(3580), - [sym_modifier] = STATE(3878), - [sym_parameter_list] = STATE(7311), - [sym_block] = STATE(2120), - [sym_variable_declaration] = STATE(7689), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(5160), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2204), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5867), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_statement] = STATE(2129), - [sym_break_statement] = STATE(2120), - [sym_checked_statement] = STATE(2120), - [sym_continue_statement] = STATE(2120), - [sym_do_statement] = STATE(2120), - [sym_empty_statement] = STATE(2120), - [sym_expression_statement] = STATE(2120), - [sym_fixed_statement] = STATE(2120), - [sym_for_statement] = STATE(2120), - [sym_return_statement] = STATE(2120), - [sym_lock_statement] = STATE(2120), - [sym_yield_statement] = STATE(2120), - [sym_switch_statement] = STATE(2120), - [sym_throw_statement] = STATE(2120), - [sym_try_statement] = STATE(2120), - [sym_unsafe_statement] = STATE(2120), - [sym_using_statement] = STATE(2120), - [sym_foreach_statement] = STATE(2120), - [sym__foreach_statement_initializer] = STATE(93), - [sym_goto_statement] = STATE(2120), - [sym_labeled_statement] = STATE(2120), - [sym_if_statement] = STATE(2120), - [sym_while_statement] = STATE(2120), - [sym_local_declaration_statement] = STATE(2120), - [sym_local_function_statement] = STATE(2120), - [sym__local_function_declaration] = STATE(6322), - [sym_expression] = STATE(5672), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3461), - [sym__expression_statement_expression] = STATE(5635), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3080), - [sym_postfix_unary_expression] = STATE(3111), - [sym_prefix_unary_expression] = STATE(3111), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6154), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3080), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3111), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3080), - [sym_member_access_expression] = STATE(2484), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3111), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7530), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(3080), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3080), - [sym_typeof_expression] = STATE(3080), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2484), - [sym_literal] = STATE(3080), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2282), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_top_level] = STATE(2120), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(3645), + [sym_attribute_list] = STATE(3612), + [sym__attribute_list] = STATE(3570), + [sym_modifier] = STATE(3845), + [sym_parameter_list] = STATE(7531), + [sym_block] = STATE(7039), + [sym_variable_declaration] = STATE(7397), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(5152), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2196), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5805), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_statement] = STATE(7409), + [sym_break_statement] = STATE(7039), + [sym_checked_statement] = STATE(7039), + [sym_continue_statement] = STATE(7039), + [sym_do_statement] = STATE(7039), + [sym_empty_statement] = STATE(7039), + [sym_expression_statement] = STATE(7039), + [sym_fixed_statement] = STATE(7039), + [sym_for_statement] = STATE(7039), + [sym_return_statement] = STATE(7039), + [sym_lock_statement] = STATE(7039), + [sym_yield_statement] = STATE(7039), + [sym_switch_statement] = STATE(7039), + [sym_throw_statement] = STATE(7039), + [sym_try_statement] = STATE(7039), + [sym_unsafe_statement] = STATE(7039), + [sym_using_statement] = STATE(7039), + [sym_foreach_statement] = STATE(7039), + [sym__foreach_statement_initializer] = STATE(76), + [sym_goto_statement] = STATE(7039), + [sym_labeled_statement] = STATE(7039), + [sym_if_statement] = STATE(7039), + [sym_while_statement] = STATE(7039), + [sym_local_declaration_statement] = STATE(7039), + [sym_local_function_statement] = STATE(7039), + [sym__local_function_declaration] = STATE(6285), + [sym_expression] = STATE(5660), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3356), + [sym__expression_statement_expression] = STATE(5711), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3102), + [sym_postfix_unary_expression] = STATE(3079), + [sym_prefix_unary_expression] = STATE(3079), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6134), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3102), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3079), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3102), + [sym_member_access_expression] = STATE(2472), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3079), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7425), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(3102), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3102), + [sym_typeof_expression] = STATE(3102), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2472), + [sym_literal] = STATE(3102), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2313), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_top_level] = STATE(7039), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(3612), [sym_preproc_region] = STATE(102), [sym_preproc_endregion] = STATE(102), [sym_preproc_line] = STATE(102), @@ -49616,44 +49502,44 @@ 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(2286), - [aux_sym__class_declaration_initializer_repeat2] = STATE(2529), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [aux_sym__class_declaration_initializer_repeat1] = STATE(2277), + [aux_sym__class_declaration_initializer_repeat2] = STATE(2536), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), - [anon_sym_extern] = ACTIONS(647), + [anon_sym_extern] = ACTIONS(645), [anon_sym_alias] = ACTIONS(29), - [anon_sym_SEMI] = ACTIONS(649), + [anon_sym_SEMI] = ACTIONS(1003), [anon_sym_global] = ACTIONS(29), - [anon_sym_using] = ACTIONS(651), - [anon_sym_unsafe] = ACTIONS(653), - [anon_sym_static] = ACTIONS(655), - [anon_sym_LBRACK] = ACTIONS(657), + [anon_sym_using] = ACTIONS(1005), + [anon_sym_unsafe] = ACTIONS(1007), + [anon_sym_static] = ACTIONS(653), + [anon_sym_LBRACK] = ACTIONS(655), [anon_sym_LPAREN] = ACTIONS(43), - [anon_sym_return] = ACTIONS(659), - [anon_sym_ref] = ACTIONS(661), - [anon_sym_LBRACE] = ACTIONS(663), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_abstract] = ACTIONS(647), - [anon_sym_async] = ACTIONS(655), - [anon_sym_const] = ACTIONS(647), - [anon_sym_file] = ACTIONS(669), - [anon_sym_fixed] = ACTIONS(671), - [anon_sym_internal] = ACTIONS(647), - [anon_sym_new] = ACTIONS(673), - [anon_sym_override] = ACTIONS(647), - [anon_sym_partial] = ACTIONS(647), - [anon_sym_private] = ACTIONS(647), - [anon_sym_protected] = ACTIONS(647), - [anon_sym_public] = ACTIONS(647), - [anon_sym_readonly] = ACTIONS(647), - [anon_sym_required] = ACTIONS(647), - [anon_sym_sealed] = ACTIONS(647), - [anon_sym_virtual] = ACTIONS(647), - [anon_sym_volatile] = ACTIONS(647), - [anon_sym_where] = ACTIONS(29), - [anon_sym_notnull] = ACTIONS(29), - [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(675), + [anon_sym_return] = ACTIONS(1009), + [anon_sym_ref] = ACTIONS(715), + [anon_sym_LBRACE] = ACTIONS(1011), + [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(1013), + [anon_sym_internal] = ACTIONS(645), + [anon_sym_new] = ACTIONS(675), + [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(1015), [anon_sym_BANG] = ACTIONS(75), [anon_sym_TILDE] = ACTIONS(75), [anon_sym_PLUS_PLUS] = ACTIONS(75), @@ -49670,23 +49556,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(677), - [anon_sym_unchecked] = ACTIONS(675), - [anon_sym_continue] = ACTIONS(679), - [anon_sym_do] = ACTIONS(681), - [anon_sym_while] = ACTIONS(683), - [anon_sym_for] = ACTIONS(685), - [anon_sym_lock] = ACTIONS(687), - [anon_sym_yield] = ACTIONS(689), - [anon_sym_switch] = ACTIONS(691), + [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_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(695), - [anon_sym_try] = ACTIONS(697), + [anon_sym_throw] = ACTIONS(1033), + [anon_sym_try] = ACTIONS(1035), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(699), + [anon_sym_await] = ACTIONS(1037), [anon_sym_foreach] = ACTIONS(117), - [anon_sym_goto] = ACTIONS(701), - [anon_sym_if] = ACTIONS(703), + [anon_sym_goto] = ACTIONS(1039), + [anon_sym_if] = ACTIONS(1041), [anon_sym_DOT_DOT] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), @@ -49712,7 +49598,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(705), + [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), @@ -49729,114 +49615,114 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [103] = { - [sym_attribute_list] = STATE(3645), - [sym__attribute_list] = STATE(3580), - [sym_modifier] = STATE(3878), - [sym_parameter_list] = STATE(7311), - [sym_block] = STATE(7054), - [sym_variable_declaration] = STATE(7367), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(5160), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2204), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5867), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_statement] = STATE(7769), - [sym_break_statement] = STATE(7054), - [sym_checked_statement] = STATE(7054), - [sym_continue_statement] = STATE(7054), - [sym_do_statement] = STATE(7054), - [sym_empty_statement] = STATE(7054), - [sym_expression_statement] = STATE(7054), - [sym_fixed_statement] = STATE(7054), - [sym_for_statement] = STATE(7054), - [sym_return_statement] = STATE(7054), - [sym_lock_statement] = STATE(7054), - [sym_yield_statement] = STATE(7054), - [sym_switch_statement] = STATE(7054), - [sym_throw_statement] = STATE(7054), - [sym_try_statement] = STATE(7054), - [sym_unsafe_statement] = STATE(7054), - [sym_using_statement] = STATE(7054), - [sym_foreach_statement] = STATE(7054), - [sym__foreach_statement_initializer] = STATE(75), - [sym_goto_statement] = STATE(7054), - [sym_labeled_statement] = STATE(7054), - [sym_if_statement] = STATE(7054), - [sym_while_statement] = STATE(7054), - [sym_local_declaration_statement] = STATE(7054), - [sym_local_function_statement] = STATE(7054), - [sym__local_function_declaration] = STATE(6293), - [sym_expression] = STATE(5672), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3461), - [sym__expression_statement_expression] = STATE(5729), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3080), - [sym_postfix_unary_expression] = STATE(3111), - [sym_prefix_unary_expression] = STATE(3111), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6154), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3080), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3111), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3080), - [sym_member_access_expression] = STATE(2484), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3111), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7530), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(3080), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3080), - [sym_typeof_expression] = STATE(3080), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2484), - [sym_literal] = STATE(3080), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2333), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_top_level] = STATE(7054), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(3645), + [sym_attribute_list] = STATE(3612), + [sym__attribute_list] = STATE(3570), + [sym_modifier] = STATE(3845), + [sym_parameter_list] = STATE(7531), + [sym_block] = STATE(7039), + [sym_variable_declaration] = STATE(7397), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(5152), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2196), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5805), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_statement] = STATE(7704), + [sym_break_statement] = STATE(7039), + [sym_checked_statement] = STATE(7039), + [sym_continue_statement] = STATE(7039), + [sym_do_statement] = STATE(7039), + [sym_empty_statement] = STATE(7039), + [sym_expression_statement] = STATE(7039), + [sym_fixed_statement] = STATE(7039), + [sym_for_statement] = STATE(7039), + [sym_return_statement] = STATE(7039), + [sym_lock_statement] = STATE(7039), + [sym_yield_statement] = STATE(7039), + [sym_switch_statement] = STATE(7039), + [sym_throw_statement] = STATE(7039), + [sym_try_statement] = STATE(7039), + [sym_unsafe_statement] = STATE(7039), + [sym_using_statement] = STATE(7039), + [sym_foreach_statement] = STATE(7039), + [sym__foreach_statement_initializer] = STATE(76), + [sym_goto_statement] = STATE(7039), + [sym_labeled_statement] = STATE(7039), + [sym_if_statement] = STATE(7039), + [sym_while_statement] = STATE(7039), + [sym_local_declaration_statement] = STATE(7039), + [sym_local_function_statement] = STATE(7039), + [sym__local_function_declaration] = STATE(6285), + [sym_expression] = STATE(5660), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3356), + [sym__expression_statement_expression] = STATE(5711), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3102), + [sym_postfix_unary_expression] = STATE(3079), + [sym_prefix_unary_expression] = STATE(3079), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6134), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3102), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3079), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3102), + [sym_member_access_expression] = STATE(2472), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3079), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7425), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(3102), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3102), + [sym_typeof_expression] = STATE(3102), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2472), + [sym_literal] = STATE(3102), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2313), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_top_level] = STATE(7039), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(3612), [sym_preproc_region] = STATE(103), [sym_preproc_endregion] = STATE(103), [sym_preproc_line] = STATE(103), @@ -49846,44 +49732,44 @@ 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(2286), + [aux_sym__class_declaration_initializer_repeat1] = STATE(2277), [aux_sym__class_declaration_initializer_repeat2] = STATE(2536), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), - [anon_sym_extern] = ACTIONS(647), + [anon_sym_extern] = ACTIONS(645), [anon_sym_alias] = ACTIONS(29), - [anon_sym_SEMI] = ACTIONS(1005), + [anon_sym_SEMI] = ACTIONS(1003), [anon_sym_global] = ACTIONS(29), - [anon_sym_using] = ACTIONS(1007), - [anon_sym_unsafe] = ACTIONS(1009), - [anon_sym_static] = ACTIONS(655), - [anon_sym_LBRACK] = ACTIONS(657), + [anon_sym_using] = ACTIONS(1005), + [anon_sym_unsafe] = ACTIONS(1007), + [anon_sym_static] = ACTIONS(653), + [anon_sym_LBRACK] = ACTIONS(655), [anon_sym_LPAREN] = ACTIONS(43), - [anon_sym_return] = ACTIONS(1011), - [anon_sym_ref] = ACTIONS(661), - [anon_sym_LBRACE] = ACTIONS(1013), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_abstract] = ACTIONS(647), - [anon_sym_async] = ACTIONS(655), - [anon_sym_const] = ACTIONS(647), - [anon_sym_file] = ACTIONS(669), - [anon_sym_fixed] = ACTIONS(1015), - [anon_sym_internal] = ACTIONS(647), - [anon_sym_new] = ACTIONS(673), - [anon_sym_override] = ACTIONS(647), - [anon_sym_partial] = ACTIONS(647), - [anon_sym_private] = ACTIONS(647), - [anon_sym_protected] = ACTIONS(647), - [anon_sym_public] = ACTIONS(647), - [anon_sym_readonly] = ACTIONS(647), - [anon_sym_required] = ACTIONS(647), - [anon_sym_sealed] = ACTIONS(647), - [anon_sym_virtual] = ACTIONS(647), - [anon_sym_volatile] = ACTIONS(647), - [anon_sym_where] = ACTIONS(29), - [anon_sym_notnull] = ACTIONS(29), - [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1017), + [anon_sym_return] = ACTIONS(1009), + [anon_sym_ref] = ACTIONS(715), + [anon_sym_LBRACE] = ACTIONS(1011), + [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(1013), + [anon_sym_internal] = ACTIONS(645), + [anon_sym_new] = ACTIONS(675), + [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(1015), [anon_sym_BANG] = ACTIONS(75), [anon_sym_TILDE] = ACTIONS(75), [anon_sym_PLUS_PLUS] = ACTIONS(75), @@ -49900,23 +49786,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(1019), - [anon_sym_unchecked] = ACTIONS(1017), - [anon_sym_continue] = ACTIONS(1021), - [anon_sym_do] = ACTIONS(1023), - [anon_sym_while] = ACTIONS(1025), - [anon_sym_for] = ACTIONS(1027), - [anon_sym_lock] = ACTIONS(1029), - [anon_sym_yield] = ACTIONS(1031), - [anon_sym_switch] = ACTIONS(1033), + [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_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1035), - [anon_sym_try] = ACTIONS(1037), + [anon_sym_throw] = ACTIONS(1033), + [anon_sym_try] = ACTIONS(1035), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1039), + [anon_sym_await] = ACTIONS(1037), [anon_sym_foreach] = ACTIONS(117), - [anon_sym_goto] = ACTIONS(1041), - [anon_sym_if] = ACTIONS(1043), + [anon_sym_goto] = ACTIONS(1039), + [anon_sym_if] = ACTIONS(1041), [anon_sym_DOT_DOT] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), @@ -49942,7 +49828,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(1045), + [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), @@ -49959,114 +49845,114 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [104] = { - [sym_attribute_list] = STATE(3645), - [sym__attribute_list] = STATE(3580), - [sym_modifier] = STATE(3878), - [sym_parameter_list] = STATE(7311), - [sym_block] = STATE(7054), - [sym_variable_declaration] = STATE(7367), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(5160), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2204), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5867), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_statement] = STATE(7762), - [sym_break_statement] = STATE(7054), - [sym_checked_statement] = STATE(7054), - [sym_continue_statement] = STATE(7054), - [sym_do_statement] = STATE(7054), - [sym_empty_statement] = STATE(7054), - [sym_expression_statement] = STATE(7054), - [sym_fixed_statement] = STATE(7054), - [sym_for_statement] = STATE(7054), - [sym_return_statement] = STATE(7054), - [sym_lock_statement] = STATE(7054), - [sym_yield_statement] = STATE(7054), - [sym_switch_statement] = STATE(7054), - [sym_throw_statement] = STATE(7054), - [sym_try_statement] = STATE(7054), - [sym_unsafe_statement] = STATE(7054), - [sym_using_statement] = STATE(7054), - [sym_foreach_statement] = STATE(7054), - [sym__foreach_statement_initializer] = STATE(75), - [sym_goto_statement] = STATE(7054), - [sym_labeled_statement] = STATE(7054), - [sym_if_statement] = STATE(7054), - [sym_while_statement] = STATE(7054), - [sym_local_declaration_statement] = STATE(7054), - [sym_local_function_statement] = STATE(7054), - [sym__local_function_declaration] = STATE(6293), - [sym_expression] = STATE(5672), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3461), - [sym__expression_statement_expression] = STATE(5729), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3080), - [sym_postfix_unary_expression] = STATE(3111), - [sym_prefix_unary_expression] = STATE(3111), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6154), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3080), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3111), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3080), - [sym_member_access_expression] = STATE(2484), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3111), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7530), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(3080), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3080), - [sym_typeof_expression] = STATE(3080), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2484), - [sym_literal] = STATE(3080), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2333), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_top_level] = STATE(7054), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(3645), + [sym_attribute_list] = STATE(3612), + [sym__attribute_list] = STATE(3570), + [sym_modifier] = STATE(3845), + [sym_parameter_list] = STATE(7531), + [sym_block] = STATE(7039), + [sym_variable_declaration] = STATE(7397), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(5152), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2196), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5805), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_statement] = STATE(7711), + [sym_break_statement] = STATE(7039), + [sym_checked_statement] = STATE(7039), + [sym_continue_statement] = STATE(7039), + [sym_do_statement] = STATE(7039), + [sym_empty_statement] = STATE(7039), + [sym_expression_statement] = STATE(7039), + [sym_fixed_statement] = STATE(7039), + [sym_for_statement] = STATE(7039), + [sym_return_statement] = STATE(7039), + [sym_lock_statement] = STATE(7039), + [sym_yield_statement] = STATE(7039), + [sym_switch_statement] = STATE(7039), + [sym_throw_statement] = STATE(7039), + [sym_try_statement] = STATE(7039), + [sym_unsafe_statement] = STATE(7039), + [sym_using_statement] = STATE(7039), + [sym_foreach_statement] = STATE(7039), + [sym__foreach_statement_initializer] = STATE(76), + [sym_goto_statement] = STATE(7039), + [sym_labeled_statement] = STATE(7039), + [sym_if_statement] = STATE(7039), + [sym_while_statement] = STATE(7039), + [sym_local_declaration_statement] = STATE(7039), + [sym_local_function_statement] = STATE(7039), + [sym__local_function_declaration] = STATE(6285), + [sym_expression] = STATE(5660), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3356), + [sym__expression_statement_expression] = STATE(5711), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3102), + [sym_postfix_unary_expression] = STATE(3079), + [sym_prefix_unary_expression] = STATE(3079), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6134), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3102), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3079), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3102), + [sym_member_access_expression] = STATE(2472), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3079), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7425), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(3102), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3102), + [sym_typeof_expression] = STATE(3102), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2472), + [sym_literal] = STATE(3102), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2313), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_top_level] = STATE(7039), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(3612), [sym_preproc_region] = STATE(104), [sym_preproc_endregion] = STATE(104), [sym_preproc_line] = STATE(104), @@ -50076,44 +49962,44 @@ 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(2286), + [aux_sym__class_declaration_initializer_repeat1] = STATE(2277), [aux_sym__class_declaration_initializer_repeat2] = STATE(2536), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), - [anon_sym_extern] = ACTIONS(647), + [anon_sym_extern] = ACTIONS(645), [anon_sym_alias] = ACTIONS(29), - [anon_sym_SEMI] = ACTIONS(1005), + [anon_sym_SEMI] = ACTIONS(1003), [anon_sym_global] = ACTIONS(29), - [anon_sym_using] = ACTIONS(1007), - [anon_sym_unsafe] = ACTIONS(1009), - [anon_sym_static] = ACTIONS(655), - [anon_sym_LBRACK] = ACTIONS(657), + [anon_sym_using] = ACTIONS(1005), + [anon_sym_unsafe] = ACTIONS(1007), + [anon_sym_static] = ACTIONS(653), + [anon_sym_LBRACK] = ACTIONS(655), [anon_sym_LPAREN] = ACTIONS(43), - [anon_sym_return] = ACTIONS(1011), - [anon_sym_ref] = ACTIONS(661), - [anon_sym_LBRACE] = ACTIONS(1013), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_abstract] = ACTIONS(647), - [anon_sym_async] = ACTIONS(655), - [anon_sym_const] = ACTIONS(647), - [anon_sym_file] = ACTIONS(669), - [anon_sym_fixed] = ACTIONS(1015), - [anon_sym_internal] = ACTIONS(647), - [anon_sym_new] = ACTIONS(673), - [anon_sym_override] = ACTIONS(647), - [anon_sym_partial] = ACTIONS(647), - [anon_sym_private] = ACTIONS(647), - [anon_sym_protected] = ACTIONS(647), - [anon_sym_public] = ACTIONS(647), - [anon_sym_readonly] = ACTIONS(647), - [anon_sym_required] = ACTIONS(647), - [anon_sym_sealed] = ACTIONS(647), - [anon_sym_virtual] = ACTIONS(647), - [anon_sym_volatile] = ACTIONS(647), - [anon_sym_where] = ACTIONS(29), - [anon_sym_notnull] = ACTIONS(29), - [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1017), + [anon_sym_return] = ACTIONS(1009), + [anon_sym_ref] = ACTIONS(715), + [anon_sym_LBRACE] = ACTIONS(1011), + [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(1013), + [anon_sym_internal] = ACTIONS(645), + [anon_sym_new] = ACTIONS(675), + [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(1015), [anon_sym_BANG] = ACTIONS(75), [anon_sym_TILDE] = ACTIONS(75), [anon_sym_PLUS_PLUS] = ACTIONS(75), @@ -50130,23 +50016,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(1019), - [anon_sym_unchecked] = ACTIONS(1017), - [anon_sym_continue] = ACTIONS(1021), - [anon_sym_do] = ACTIONS(1023), - [anon_sym_while] = ACTIONS(1025), - [anon_sym_for] = ACTIONS(1027), - [anon_sym_lock] = ACTIONS(1029), - [anon_sym_yield] = ACTIONS(1031), - [anon_sym_switch] = ACTIONS(1033), + [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_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1035), - [anon_sym_try] = ACTIONS(1037), + [anon_sym_throw] = ACTIONS(1033), + [anon_sym_try] = ACTIONS(1035), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1039), + [anon_sym_await] = ACTIONS(1037), [anon_sym_foreach] = ACTIONS(117), - [anon_sym_goto] = ACTIONS(1041), - [anon_sym_if] = ACTIONS(1043), + [anon_sym_goto] = ACTIONS(1039), + [anon_sym_if] = ACTIONS(1041), [anon_sym_DOT_DOT] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), @@ -50172,7 +50058,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(1045), + [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), @@ -50189,30 +50075,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [105] = { - [sym_attribute_list] = STATE(3645), - [sym__attribute_list] = STATE(3580), - [sym_modifier] = STATE(3878), - [sym_parameter_list] = STATE(7311), + [sym_attribute_list] = STATE(3612), + [sym__attribute_list] = STATE(3570), + [sym_modifier] = STATE(3845), + [sym_parameter_list] = STATE(7531), [sym_block] = STATE(2026), - [sym_variable_declaration] = STATE(7363), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(5160), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2204), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5867), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_statement] = STATE(2040), + [sym_variable_declaration] = STATE(7610), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(5152), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2196), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5805), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_statement] = STATE(2050), [sym_break_statement] = STATE(2026), [sym_checked_statement] = STATE(2026), [sym_continue_statement] = STATE(2026), @@ -50230,73 +50116,73 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_unsafe_statement] = STATE(2026), [sym_using_statement] = STATE(2026), [sym_foreach_statement] = STATE(2026), - [sym__foreach_statement_initializer] = STATE(70), + [sym__foreach_statement_initializer] = STATE(90), [sym_goto_statement] = STATE(2026), [sym_labeled_statement] = STATE(2026), [sym_if_statement] = STATE(2026), [sym_while_statement] = STATE(2026), [sym_local_declaration_statement] = STATE(2026), [sym_local_function_statement] = STATE(2026), - [sym__local_function_declaration] = STATE(6317), - [sym_expression] = STATE(5672), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3461), - [sym__expression_statement_expression] = STATE(5719), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3080), - [sym_postfix_unary_expression] = STATE(3111), - [sym_prefix_unary_expression] = STATE(3111), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6154), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3080), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3111), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3080), - [sym_member_access_expression] = STATE(2484), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3111), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7530), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(3080), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3080), - [sym_typeof_expression] = STATE(3080), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2484), - [sym_literal] = STATE(3080), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2348), - [sym__reserved_identifier] = STATE(2175), + [sym__local_function_declaration] = STATE(6290), + [sym_expression] = STATE(5660), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3356), + [sym__expression_statement_expression] = STATE(5708), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3102), + [sym_postfix_unary_expression] = STATE(3079), + [sym_prefix_unary_expression] = STATE(3079), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6134), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3102), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3079), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3102), + [sym_member_access_expression] = STATE(2472), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3079), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7425), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(3102), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3102), + [sym_typeof_expression] = STATE(3102), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2472), + [sym_literal] = STATE(3102), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2332), + [sym__reserved_identifier] = STATE(2168), [sym_preproc_if_in_top_level] = STATE(2026), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(3645), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(3612), [sym_preproc_region] = STATE(105), [sym_preproc_endregion] = STATE(105), [sym_preproc_line] = STATE(105), @@ -50306,40 +50192,40 @@ 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(2286), - [aux_sym__class_declaration_initializer_repeat2] = STATE(2539), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [aux_sym__class_declaration_initializer_repeat1] = STATE(2277), + [aux_sym__class_declaration_initializer_repeat2] = STATE(2535), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), - [anon_sym_extern] = ACTIONS(647), + [anon_sym_extern] = ACTIONS(645), [anon_sym_alias] = ACTIONS(29), [anon_sym_SEMI] = ACTIONS(31), [anon_sym_global] = ACTIONS(29), - [anon_sym_using] = ACTIONS(997), - [anon_sym_unsafe] = ACTIONS(999), - [anon_sym_static] = ACTIONS(655), - [anon_sym_LBRACK] = ACTIONS(657), + [anon_sym_using] = ACTIONS(987), + [anon_sym_unsafe] = ACTIONS(989), + [anon_sym_static] = ACTIONS(653), + [anon_sym_LBRACK] = ACTIONS(655), [anon_sym_LPAREN] = ACTIONS(43), [anon_sym_return] = ACTIONS(45), - [anon_sym_ref] = ACTIONS(661), + [anon_sym_ref] = ACTIONS(715), [anon_sym_LBRACE] = ACTIONS(57), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_abstract] = ACTIONS(647), - [anon_sym_async] = ACTIONS(655), - [anon_sym_const] = ACTIONS(647), - [anon_sym_file] = ACTIONS(669), - [anon_sym_fixed] = ACTIONS(1001), - [anon_sym_internal] = ACTIONS(647), - [anon_sym_new] = ACTIONS(673), - [anon_sym_override] = ACTIONS(647), - [anon_sym_partial] = ACTIONS(647), - [anon_sym_private] = ACTIONS(647), - [anon_sym_protected] = ACTIONS(647), - [anon_sym_public] = ACTIONS(647), - [anon_sym_readonly] = ACTIONS(647), - [anon_sym_required] = ACTIONS(647), - [anon_sym_sealed] = ACTIONS(647), - [anon_sym_virtual] = ACTIONS(647), - [anon_sym_volatile] = ACTIONS(647), + [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(991), + [anon_sym_internal] = ACTIONS(645), + [anon_sym_new] = ACTIONS(675), + [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), @@ -50402,7 +50288,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(1003), + [aux_sym_preproc_if_token1] = ACTIONS(993), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -50419,102 +50305,102 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [106] = { - [sym_attribute] = STATE(7036), - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_attribute_target_specifier] = STATE(5787), - [sym_parameter_list] = STATE(7311), - [sym_argument] = STATE(6740), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(5580), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2234), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5065), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_pattern] = STATE(6475), - [sym_constant_pattern] = STATE(3486), - [sym_parenthesized_pattern] = STATE(3486), - [sym_var_pattern] = STATE(3486), - [sym_type_pattern] = STATE(3486), - [sym_list_pattern] = STATE(3486), - [sym_recursive_pattern] = STATE(3486), - [sym_positional_pattern_clause] = STATE(5175), - [sym_property_pattern_clause] = STATE(5675), - [sym_relational_pattern] = STATE(3486), - [sym_negated_pattern] = STATE(3486), - [sym_and_pattern] = STATE(3486), - [sym_or_pattern] = STATE(3486), - [sym_declaration_pattern] = STATE(3486), - [sym_expression] = STATE(5156), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3379), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(4216), - [sym_postfix_unary_expression] = STATE(4219), - [sym_prefix_unary_expression] = STATE(4219), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6154), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(4216), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(4219), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(4216), - [sym_member_access_expression] = STATE(3121), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(4219), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7575), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_declaration_expression] = STATE(6803), - [sym_default_expression] = STATE(4216), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(4216), - [sym_typeof_expression] = STATE(4216), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(3121), - [sym_literal] = STATE(4216), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2206), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute] = STATE(7014), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_attribute_target_specifier] = STATE(5784), + [sym_parameter_list] = STATE(7531), + [sym_argument] = STATE(6855), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(5356), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2224), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5071), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_pattern] = STATE(6576), + [sym_constant_pattern] = STATE(3429), + [sym_parenthesized_pattern] = STATE(3429), + [sym_var_pattern] = STATE(3429), + [sym_type_pattern] = STATE(3429), + [sym_list_pattern] = STATE(3429), + [sym_recursive_pattern] = STATE(3429), + [sym_positional_pattern_clause] = STATE(5135), + [sym_property_pattern_clause] = STATE(5666), + [sym_relational_pattern] = STATE(3429), + [sym_negated_pattern] = STATE(3429), + [sym_and_pattern] = STATE(3429), + [sym_or_pattern] = STATE(3429), + [sym_declaration_pattern] = STATE(3429), + [sym_expression] = STATE(5136), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3468), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(4202), + [sym_postfix_unary_expression] = STATE(4203), + [sym_prefix_unary_expression] = STATE(4203), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6134), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(4202), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(4203), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(4202), + [sym_member_access_expression] = STATE(3112), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(4203), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7309), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_declaration_expression] = STATE(6902), + [sym_default_expression] = STATE(4202), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(4202), + [sym_typeof_expression] = STATE(4202), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(3112), + [sym_literal] = STATE(4202), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2207), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(106), [sym_preproc_endregion] = STATE(106), [sym_preproc_line] = STATE(106), @@ -50524,63 +50410,63 @@ 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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), - [sym__identifier_token] = ACTIONS(25), - [anon_sym_alias] = ACTIONS(29), - [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1049), - [anon_sym_RBRACK] = ACTIONS(1051), - [anon_sym_LPAREN] = ACTIONS(1053), - [anon_sym_field] = ACTIONS(1055), - [anon_sym_event] = ACTIONS(1055), - [anon_sym_method] = ACTIONS(1055), - [anon_sym_param] = ACTIONS(1055), - [anon_sym_property] = ACTIONS(1055), - [anon_sym_return] = ACTIONS(1055), - [anon_sym_type] = ACTIONS(1055), - [anon_sym_ref] = ACTIONS(1057), - [anon_sym_LBRACE] = ACTIONS(1059), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), - [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1061), - [anon_sym_LT] = ACTIONS(1063), - [anon_sym_GT] = ACTIONS(1063), - [anon_sym_in] = ACTIONS(1065), - [anon_sym_out] = ACTIONS(1065), - [anon_sym_where] = ACTIONS(29), - [anon_sym_notnull] = ACTIONS(29), - [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1067), - [anon_sym_BANG] = ACTIONS(1069), - [anon_sym_TILDE] = ACTIONS(1069), - [anon_sym_PLUS_PLUS] = ACTIONS(1069), - [anon_sym_DASH_DASH] = ACTIONS(1069), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1071), - [anon_sym_DASH] = ACTIONS(1071), - [anon_sym_STAR] = ACTIONS(905), - [anon_sym_CARET] = ACTIONS(1069), - [anon_sym_AMP] = ACTIONS(1069), - [anon_sym_GT_EQ] = ACTIONS(1073), - [anon_sym_LT_EQ] = ACTIONS(1073), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), + [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(1049), + [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_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_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(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(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_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(1075), + [anon_sym_scoped] = ACTIONS(1073), [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(1077), + [anon_sym_var] = ACTIONS(1075), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1067), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1079), + [anon_sym_throw] = ACTIONS(1077), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1081), - [sym_discard] = ACTIONS(1083), - [anon_sym_DOT_DOT] = ACTIONS(1085), - [anon_sym_not] = ACTIONS(1087), + [anon_sym_await] = ACTIONS(1079), + [sym_discard] = ACTIONS(1081), + [anon_sym_DOT_DOT] = ACTIONS(1083), + [anon_sym_not] = ACTIONS(1085), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -50605,7 +50491,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(1089), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -50622,102 +50508,106 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [107] = { - [sym_attribute] = STATE(7036), - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_attribute_target_specifier] = STATE(5787), - [sym_parameter_list] = STATE(7311), - [sym_argument] = STATE(6740), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(5580), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2234), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5065), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_pattern] = STATE(6480), - [sym_constant_pattern] = STATE(3486), - [sym_parenthesized_pattern] = STATE(3486), - [sym_var_pattern] = STATE(3486), - [sym_type_pattern] = STATE(3486), - [sym_list_pattern] = STATE(3486), - [sym_recursive_pattern] = STATE(3486), - [sym_positional_pattern_clause] = STATE(5175), - [sym_property_pattern_clause] = STATE(5675), - [sym_relational_pattern] = STATE(3486), - [sym_negated_pattern] = STATE(3486), - [sym_and_pattern] = STATE(3486), - [sym_or_pattern] = STATE(3486), - [sym_declaration_pattern] = STATE(3486), - [sym_expression] = STATE(5156), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3379), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(4216), - [sym_postfix_unary_expression] = STATE(4219), - [sym_prefix_unary_expression] = STATE(4219), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6154), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(4216), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(4219), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(4216), - [sym_member_access_expression] = STATE(3121), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(4219), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7575), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_declaration_expression] = STATE(6803), - [sym_default_expression] = STATE(4216), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(4216), - [sym_typeof_expression] = STATE(4216), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(3121), - [sym_literal] = STATE(4216), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2206), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_parameter] = STATE(6769), + [sym__parameter_array] = STATE(6785), + [sym_argument] = STATE(7133), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(5528), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2224), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(4924), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_tuple_element] = STATE(7166), + [sym_pattern] = STATE(6680), + [sym_constant_pattern] = STATE(3429), + [sym_parenthesized_pattern] = STATE(3429), + [sym_var_pattern] = STATE(3429), + [sym_type_pattern] = STATE(3429), + [sym_list_pattern] = STATE(3429), + [sym_recursive_pattern] = STATE(3429), + [sym_positional_pattern_clause] = STATE(5135), + [sym_property_pattern_clause] = STATE(5666), + [sym_subpattern] = STATE(7245), + [sym_relational_pattern] = STATE(3429), + [sym_negated_pattern] = STATE(3429), + [sym_and_pattern] = STATE(3429), + [sym_or_pattern] = STATE(3429), + [sym_declaration_pattern] = STATE(3429), + [sym__variable_designation] = STATE(6930), + [sym_parenthesized_variable_designation] = STATE(3352), + [sym_expression] = STATE(5221), + [sym_non_lvalue_expression] = STATE(5315), + [sym_lvalue_expression] = STATE(3535), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(4202), + [sym_postfix_unary_expression] = STATE(4203), + [sym_prefix_unary_expression] = STATE(4203), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6163), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(4202), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(4203), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(4202), + [sym_member_access_expression] = STATE(3112), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(4203), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7496), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_declaration_expression] = STATE(6902), + [sym_default_expression] = STATE(4202), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(4202), + [sym_typeof_expression] = STATE(4202), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(3112), + [sym_literal] = STATE(4202), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2213), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(107), [sym_preproc_endregion] = STATE(107), [sym_preproc_line] = STATE(107), @@ -50727,63 +50617,59 @@ 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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [aux_sym__class_declaration_initializer_repeat1] = STATE(2843), + [aux_sym__parameter_type_with_modifiers_repeat1] = STATE(3452), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1049), - [anon_sym_RBRACK] = ACTIONS(1091), - [anon_sym_LPAREN] = ACTIONS(1053), - [anon_sym_field] = ACTIONS(1055), - [anon_sym_event] = ACTIONS(1055), - [anon_sym_method] = ACTIONS(1055), - [anon_sym_param] = ACTIONS(1055), - [anon_sym_property] = ACTIONS(1055), - [anon_sym_return] = ACTIONS(1055), - [anon_sym_type] = ACTIONS(1055), - [anon_sym_ref] = ACTIONS(1057), - [anon_sym_LBRACE] = ACTIONS(1059), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_LPAREN] = ACTIONS(1089), + [anon_sym_RPAREN] = ACTIONS(1091), + [anon_sym_ref] = ACTIONS(1093), + [anon_sym_LBRACE] = ACTIONS(1057), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1061), - [anon_sym_LT] = ACTIONS(1063), - [anon_sym_GT] = ACTIONS(1063), - [anon_sym_in] = ACTIONS(1065), - [anon_sym_out] = ACTIONS(1065), + [anon_sym_new] = ACTIONS(1095), + [anon_sym_readonly] = ACTIONS(1097), + [anon_sym_LT] = ACTIONS(1061), + [anon_sym_GT] = ACTIONS(1061), + [anon_sym_in] = ACTIONS(1099), + [anon_sym_out] = ACTIONS(1099), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1067), - [anon_sym_BANG] = ACTIONS(1069), - [anon_sym_TILDE] = ACTIONS(1069), - [anon_sym_PLUS_PLUS] = ACTIONS(1069), - [anon_sym_DASH_DASH] = ACTIONS(1069), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(1101), + [anon_sym_TILDE] = ACTIONS(1101), + [anon_sym_PLUS_PLUS] = ACTIONS(1101), + [anon_sym_DASH_DASH] = ACTIONS(1101), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1071), - [anon_sym_DASH] = ACTIONS(1071), - [anon_sym_STAR] = ACTIONS(905), - [anon_sym_CARET] = ACTIONS(1069), - [anon_sym_AMP] = ACTIONS(1069), - [anon_sym_GT_EQ] = ACTIONS(1073), - [anon_sym_LT_EQ] = ACTIONS(1073), - [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(1075), + [anon_sym_PLUS] = ACTIONS(1103), + [anon_sym_DASH] = ACTIONS(1103), + [anon_sym_STAR] = ACTIONS(1105), + [anon_sym_CARET] = ACTIONS(1101), + [anon_sym_AMP] = ACTIONS(1101), + [anon_sym_GT_EQ] = ACTIONS(1071), + [anon_sym_LT_EQ] = ACTIONS(1071), + [anon_sym_this] = ACTIONS(1107), + [anon_sym_scoped] = ACTIONS(1109), + [anon_sym_params] = ACTIONS(1111), [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(1077), + [anon_sym_var] = ACTIONS(1075), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1067), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1079), + [anon_sym_throw] = ACTIONS(1113), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1081), - [sym_discard] = ACTIONS(1083), - [anon_sym_DOT_DOT] = ACTIONS(1093), - [anon_sym_not] = ACTIONS(1087), + [anon_sym_await] = ACTIONS(1115), + [sym_discard] = ACTIONS(1117), + [anon_sym_DOT_DOT] = ACTIONS(1119), + [anon_sym_not] = ACTIONS(1121), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -50808,7 +50694,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(1089), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -50825,106 +50711,102 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [108] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_parameter] = STATE(6948), - [sym__parameter_array] = STATE(6996), - [sym_argument] = STATE(7273), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(5634), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2234), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(4937), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_tuple_element] = STATE(7283), - [sym_pattern] = STATE(6695), - [sym_constant_pattern] = STATE(3486), - [sym_parenthesized_pattern] = STATE(3486), - [sym_var_pattern] = STATE(3486), - [sym_type_pattern] = STATE(3486), - [sym_list_pattern] = STATE(3486), - [sym_recursive_pattern] = STATE(3486), - [sym_positional_pattern_clause] = STATE(5175), - [sym_property_pattern_clause] = STATE(5675), - [sym_subpattern] = STATE(7235), - [sym_relational_pattern] = STATE(3486), - [sym_negated_pattern] = STATE(3486), - [sym_and_pattern] = STATE(3486), - [sym_or_pattern] = STATE(3486), - [sym_declaration_pattern] = STATE(3486), - [sym__variable_designation] = STATE(6819), - [sym_parenthesized_variable_designation] = STATE(3463), - [sym_expression] = STATE(5234), - [sym_non_lvalue_expression] = STATE(5333), - [sym_lvalue_expression] = STATE(3525), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(4216), - [sym_postfix_unary_expression] = STATE(4219), - [sym_prefix_unary_expression] = STATE(4219), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6161), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(4216), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(4219), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(4216), - [sym_member_access_expression] = STATE(3121), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(4219), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7323), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_declaration_expression] = STATE(6803), - [sym_default_expression] = STATE(4216), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(4216), - [sym_typeof_expression] = STATE(4216), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(3121), - [sym_literal] = STATE(4216), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2229), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute] = STATE(7014), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_attribute_target_specifier] = STATE(5784), + [sym_parameter_list] = STATE(7531), + [sym_argument] = STATE(6855), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(5356), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2224), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5071), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_pattern] = STATE(6526), + [sym_constant_pattern] = STATE(3429), + [sym_parenthesized_pattern] = STATE(3429), + [sym_var_pattern] = STATE(3429), + [sym_type_pattern] = STATE(3429), + [sym_list_pattern] = STATE(3429), + [sym_recursive_pattern] = STATE(3429), + [sym_positional_pattern_clause] = STATE(5135), + [sym_property_pattern_clause] = STATE(5666), + [sym_relational_pattern] = STATE(3429), + [sym_negated_pattern] = STATE(3429), + [sym_and_pattern] = STATE(3429), + [sym_or_pattern] = STATE(3429), + [sym_declaration_pattern] = STATE(3429), + [sym_expression] = STATE(5136), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3468), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(4202), + [sym_postfix_unary_expression] = STATE(4203), + [sym_prefix_unary_expression] = STATE(4203), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6134), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(4202), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(4203), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(4202), + [sym_member_access_expression] = STATE(3112), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(4203), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7309), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_declaration_expression] = STATE(6902), + [sym_default_expression] = STATE(4202), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(4202), + [sym_typeof_expression] = STATE(4202), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(3112), + [sym_literal] = STATE(4202), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2207), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(108), [sym_preproc_endregion] = STATE(108), [sym_preproc_line] = STATE(108), @@ -50934,59 +50816,63 @@ 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(2852), - [aux_sym__parameter_type_with_modifiers_repeat1] = STATE(3489), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), - [sym__identifier_token] = ACTIONS(25), - [anon_sym_alias] = ACTIONS(29), - [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1049), - [anon_sym_LPAREN] = ACTIONS(1095), - [anon_sym_RPAREN] = ACTIONS(1097), - [anon_sym_ref] = ACTIONS(1099), - [anon_sym_LBRACE] = ACTIONS(1059), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), - [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1101), - [anon_sym_readonly] = ACTIONS(1103), - [anon_sym_LT] = ACTIONS(1063), - [anon_sym_GT] = ACTIONS(1063), - [anon_sym_in] = ACTIONS(1105), - [anon_sym_out] = ACTIONS(1105), - [anon_sym_where] = ACTIONS(29), - [anon_sym_notnull] = ACTIONS(29), - [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1067), - [anon_sym_BANG] = ACTIONS(1107), - [anon_sym_TILDE] = ACTIONS(1107), - [anon_sym_PLUS_PLUS] = ACTIONS(1107), - [anon_sym_DASH_DASH] = ACTIONS(1107), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1109), - [anon_sym_DASH] = ACTIONS(1109), - [anon_sym_STAR] = ACTIONS(1111), - [anon_sym_CARET] = ACTIONS(1107), - [anon_sym_AMP] = ACTIONS(1107), - [anon_sym_GT_EQ] = ACTIONS(1073), - [anon_sym_LT_EQ] = ACTIONS(1073), - [anon_sym_this] = ACTIONS(1113), - [anon_sym_scoped] = ACTIONS(1115), - [anon_sym_params] = ACTIONS(1117), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), + [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(1123), + [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_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_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(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(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_this] = ACTIONS(83), + [anon_sym_scoped] = ACTIONS(1073), [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(1077), + [anon_sym_var] = ACTIONS(1075), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1067), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1119), + [anon_sym_throw] = ACTIONS(1077), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1121), - [sym_discard] = ACTIONS(1123), + [anon_sym_await] = ACTIONS(1079), + [sym_discard] = ACTIONS(1081), [anon_sym_DOT_DOT] = ACTIONS(1125), - [anon_sym_not] = ACTIONS(1127), + [anon_sym_not] = ACTIONS(1085), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -51011,7 +50897,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(1089), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -51028,106 +50914,106 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [109] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_parameter] = STATE(6948), - [sym__parameter_array] = STATE(6996), - [sym_argument] = STATE(7273), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(5634), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2234), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(4937), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_tuple_element] = STATE(7283), - [sym_pattern] = STATE(6695), - [sym_constant_pattern] = STATE(3486), - [sym_parenthesized_pattern] = STATE(3486), - [sym_var_pattern] = STATE(3486), - [sym_type_pattern] = STATE(3486), - [sym_list_pattern] = STATE(3486), - [sym_recursive_pattern] = STATE(3486), - [sym_positional_pattern_clause] = STATE(5175), - [sym_property_pattern_clause] = STATE(5675), - [sym_subpattern] = STATE(7235), - [sym_relational_pattern] = STATE(3486), - [sym_negated_pattern] = STATE(3486), - [sym_and_pattern] = STATE(3486), - [sym_or_pattern] = STATE(3486), - [sym_declaration_pattern] = STATE(3486), - [sym__variable_designation] = STATE(6819), - [sym_parenthesized_variable_designation] = STATE(3463), - [sym_expression] = STATE(5234), - [sym_non_lvalue_expression] = STATE(5333), - [sym_lvalue_expression] = STATE(3525), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(4216), - [sym_postfix_unary_expression] = STATE(4219), - [sym_prefix_unary_expression] = STATE(4219), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6161), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(4216), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(4219), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(4216), - [sym_member_access_expression] = STATE(3121), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(4219), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7323), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_declaration_expression] = STATE(6803), - [sym_default_expression] = STATE(4216), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(4216), - [sym_typeof_expression] = STATE(4216), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(3121), - [sym_literal] = STATE(4216), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2229), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_parameter] = STATE(6769), + [sym__parameter_array] = STATE(6785), + [sym_argument] = STATE(7133), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(5528), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2224), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(4924), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_tuple_element] = STATE(7166), + [sym_pattern] = STATE(6680), + [sym_constant_pattern] = STATE(3429), + [sym_parenthesized_pattern] = STATE(3429), + [sym_var_pattern] = STATE(3429), + [sym_type_pattern] = STATE(3429), + [sym_list_pattern] = STATE(3429), + [sym_recursive_pattern] = STATE(3429), + [sym_positional_pattern_clause] = STATE(5135), + [sym_property_pattern_clause] = STATE(5666), + [sym_subpattern] = STATE(7245), + [sym_relational_pattern] = STATE(3429), + [sym_negated_pattern] = STATE(3429), + [sym_and_pattern] = STATE(3429), + [sym_or_pattern] = STATE(3429), + [sym_declaration_pattern] = STATE(3429), + [sym__variable_designation] = STATE(6930), + [sym_parenthesized_variable_designation] = STATE(3352), + [sym_expression] = STATE(5221), + [sym_non_lvalue_expression] = STATE(5315), + [sym_lvalue_expression] = STATE(3535), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(4202), + [sym_postfix_unary_expression] = STATE(4203), + [sym_prefix_unary_expression] = STATE(4203), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6163), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(4202), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(4203), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(4202), + [sym_member_access_expression] = STATE(3112), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(4203), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7496), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_declaration_expression] = STATE(6902), + [sym_default_expression] = STATE(4202), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(4202), + [sym_typeof_expression] = STATE(4202), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(3112), + [sym_literal] = STATE(4202), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2213), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(109), [sym_preproc_endregion] = STATE(109), [sym_preproc_line] = STATE(109), @@ -51137,59 +51023,59 @@ 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(2852), - [aux_sym__parameter_type_with_modifiers_repeat1] = STATE(3489), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [aux_sym__class_declaration_initializer_repeat1] = STATE(2843), + [aux_sym__parameter_type_with_modifiers_repeat1] = STATE(3452), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1049), - [anon_sym_LPAREN] = ACTIONS(1095), - [anon_sym_RPAREN] = ACTIONS(1129), - [anon_sym_ref] = ACTIONS(1099), - [anon_sym_LBRACE] = ACTIONS(1059), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_LPAREN] = ACTIONS(1089), + [anon_sym_RPAREN] = ACTIONS(1127), + [anon_sym_ref] = ACTIONS(1093), + [anon_sym_LBRACE] = ACTIONS(1057), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1101), - [anon_sym_readonly] = ACTIONS(1103), - [anon_sym_LT] = ACTIONS(1063), - [anon_sym_GT] = ACTIONS(1063), - [anon_sym_in] = ACTIONS(1105), - [anon_sym_out] = ACTIONS(1105), + [anon_sym_new] = ACTIONS(1095), + [anon_sym_readonly] = ACTIONS(1097), + [anon_sym_LT] = ACTIONS(1061), + [anon_sym_GT] = ACTIONS(1061), + [anon_sym_in] = ACTIONS(1099), + [anon_sym_out] = ACTIONS(1099), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1067), - [anon_sym_BANG] = ACTIONS(1107), - [anon_sym_TILDE] = ACTIONS(1107), - [anon_sym_PLUS_PLUS] = ACTIONS(1107), - [anon_sym_DASH_DASH] = ACTIONS(1107), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(1101), + [anon_sym_TILDE] = ACTIONS(1101), + [anon_sym_PLUS_PLUS] = ACTIONS(1101), + [anon_sym_DASH_DASH] = ACTIONS(1101), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1109), - [anon_sym_DASH] = ACTIONS(1109), - [anon_sym_STAR] = ACTIONS(1111), - [anon_sym_CARET] = ACTIONS(1107), - [anon_sym_AMP] = ACTIONS(1107), - [anon_sym_GT_EQ] = ACTIONS(1073), - [anon_sym_LT_EQ] = ACTIONS(1073), - [anon_sym_this] = ACTIONS(1113), - [anon_sym_scoped] = ACTIONS(1115), - [anon_sym_params] = ACTIONS(1117), + [anon_sym_PLUS] = ACTIONS(1103), + [anon_sym_DASH] = ACTIONS(1103), + [anon_sym_STAR] = ACTIONS(1105), + [anon_sym_CARET] = ACTIONS(1101), + [anon_sym_AMP] = ACTIONS(1101), + [anon_sym_GT_EQ] = ACTIONS(1071), + [anon_sym_LT_EQ] = ACTIONS(1071), + [anon_sym_this] = ACTIONS(1107), + [anon_sym_scoped] = ACTIONS(1109), + [anon_sym_params] = ACTIONS(1111), [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(1077), + [anon_sym_var] = ACTIONS(1075), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1067), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1119), + [anon_sym_throw] = ACTIONS(1113), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1121), - [sym_discard] = ACTIONS(1123), - [anon_sym_DOT_DOT] = ACTIONS(1125), - [anon_sym_not] = ACTIONS(1127), + [anon_sym_await] = ACTIONS(1115), + [sym_discard] = ACTIONS(1117), + [anon_sym_DOT_DOT] = ACTIONS(1119), + [anon_sym_not] = ACTIONS(1121), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -51214,7 +51100,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(1089), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -51231,102 +51117,102 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [110] = { - [sym_attribute] = STATE(7036), - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_attribute_target_specifier] = STATE(5787), - [sym_parameter_list] = STATE(7311), - [sym_argument] = STATE(6740), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(5580), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2234), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5065), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_pattern] = STATE(6465), - [sym_constant_pattern] = STATE(3486), - [sym_parenthesized_pattern] = STATE(3486), - [sym_var_pattern] = STATE(3486), - [sym_type_pattern] = STATE(3486), - [sym_list_pattern] = STATE(3486), - [sym_recursive_pattern] = STATE(3486), - [sym_positional_pattern_clause] = STATE(5175), - [sym_property_pattern_clause] = STATE(5675), - [sym_relational_pattern] = STATE(3486), - [sym_negated_pattern] = STATE(3486), - [sym_and_pattern] = STATE(3486), - [sym_or_pattern] = STATE(3486), - [sym_declaration_pattern] = STATE(3486), - [sym_expression] = STATE(5156), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3379), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(4216), - [sym_postfix_unary_expression] = STATE(4219), - [sym_prefix_unary_expression] = STATE(4219), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6154), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(4216), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(4219), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(4216), - [sym_member_access_expression] = STATE(3121), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(4219), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7575), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_declaration_expression] = STATE(6803), - [sym_default_expression] = STATE(4216), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(4216), - [sym_typeof_expression] = STATE(4216), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(3121), - [sym_literal] = STATE(4216), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2206), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute] = STATE(7014), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_attribute_target_specifier] = STATE(5784), + [sym_parameter_list] = STATE(7531), + [sym_argument] = STATE(6855), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(5356), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2224), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5071), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_pattern] = STATE(6529), + [sym_constant_pattern] = STATE(3429), + [sym_parenthesized_pattern] = STATE(3429), + [sym_var_pattern] = STATE(3429), + [sym_type_pattern] = STATE(3429), + [sym_list_pattern] = STATE(3429), + [sym_recursive_pattern] = STATE(3429), + [sym_positional_pattern_clause] = STATE(5135), + [sym_property_pattern_clause] = STATE(5666), + [sym_relational_pattern] = STATE(3429), + [sym_negated_pattern] = STATE(3429), + [sym_and_pattern] = STATE(3429), + [sym_or_pattern] = STATE(3429), + [sym_declaration_pattern] = STATE(3429), + [sym_expression] = STATE(5136), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3468), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(4202), + [sym_postfix_unary_expression] = STATE(4203), + [sym_prefix_unary_expression] = STATE(4203), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6134), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(4202), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(4203), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(4202), + [sym_member_access_expression] = STATE(3112), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(4203), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7309), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_declaration_expression] = STATE(6902), + [sym_default_expression] = STATE(4202), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(4202), + [sym_typeof_expression] = STATE(4202), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(3112), + [sym_literal] = STATE(4202), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2207), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(110), [sym_preproc_endregion] = STATE(110), [sym_preproc_line] = STATE(110), @@ -51336,63 +51222,63 @@ 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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), - [sym__identifier_token] = ACTIONS(25), - [anon_sym_alias] = ACTIONS(29), - [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1049), - [anon_sym_RBRACK] = ACTIONS(1131), - [anon_sym_LPAREN] = ACTIONS(1053), - [anon_sym_field] = ACTIONS(1055), - [anon_sym_event] = ACTIONS(1055), - [anon_sym_method] = ACTIONS(1055), - [anon_sym_param] = ACTIONS(1055), - [anon_sym_property] = ACTIONS(1055), - [anon_sym_return] = ACTIONS(1055), - [anon_sym_type] = ACTIONS(1055), - [anon_sym_ref] = ACTIONS(1057), - [anon_sym_LBRACE] = ACTIONS(1059), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), - [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1061), - [anon_sym_LT] = ACTIONS(1063), - [anon_sym_GT] = ACTIONS(1063), - [anon_sym_in] = ACTIONS(1065), - [anon_sym_out] = ACTIONS(1065), - [anon_sym_where] = ACTIONS(29), - [anon_sym_notnull] = ACTIONS(29), - [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1067), - [anon_sym_BANG] = ACTIONS(1069), - [anon_sym_TILDE] = ACTIONS(1069), - [anon_sym_PLUS_PLUS] = ACTIONS(1069), - [anon_sym_DASH_DASH] = ACTIONS(1069), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1071), - [anon_sym_DASH] = ACTIONS(1071), - [anon_sym_STAR] = ACTIONS(905), - [anon_sym_CARET] = ACTIONS(1069), - [anon_sym_AMP] = ACTIONS(1069), - [anon_sym_GT_EQ] = ACTIONS(1073), - [anon_sym_LT_EQ] = ACTIONS(1073), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), + [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(1129), + [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_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_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(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(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_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(1075), + [anon_sym_scoped] = ACTIONS(1073), [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(1077), + [anon_sym_var] = ACTIONS(1075), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1067), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1079), + [anon_sym_throw] = ACTIONS(1077), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1081), - [sym_discard] = ACTIONS(1083), - [anon_sym_DOT_DOT] = ACTIONS(1133), - [anon_sym_not] = ACTIONS(1087), + [anon_sym_await] = ACTIONS(1079), + [sym_discard] = ACTIONS(1081), + [anon_sym_DOT_DOT] = ACTIONS(1131), + [anon_sym_not] = ACTIONS(1085), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -51417,7 +51303,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(1089), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -51434,102 +51320,102 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [111] = { - [sym_attribute] = STATE(7036), - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_attribute_target_specifier] = STATE(5787), - [sym_parameter_list] = STATE(7311), - [sym_argument] = STATE(6740), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(5580), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2234), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5065), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_pattern] = STATE(6555), - [sym_constant_pattern] = STATE(3486), - [sym_parenthesized_pattern] = STATE(3486), - [sym_var_pattern] = STATE(3486), - [sym_type_pattern] = STATE(3486), - [sym_list_pattern] = STATE(3486), - [sym_recursive_pattern] = STATE(3486), - [sym_positional_pattern_clause] = STATE(5175), - [sym_property_pattern_clause] = STATE(5675), - [sym_relational_pattern] = STATE(3486), - [sym_negated_pattern] = STATE(3486), - [sym_and_pattern] = STATE(3486), - [sym_or_pattern] = STATE(3486), - [sym_declaration_pattern] = STATE(3486), - [sym_expression] = STATE(5156), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3379), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(4216), - [sym_postfix_unary_expression] = STATE(4219), - [sym_prefix_unary_expression] = STATE(4219), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6154), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(4216), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(4219), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(4216), - [sym_member_access_expression] = STATE(3121), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(4219), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7575), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_declaration_expression] = STATE(6803), - [sym_default_expression] = STATE(4216), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(4216), - [sym_typeof_expression] = STATE(4216), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(3121), - [sym_literal] = STATE(4216), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2206), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute] = STATE(7014), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_attribute_target_specifier] = STATE(5784), + [sym_parameter_list] = STATE(7531), + [sym_argument] = STATE(6855), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(5356), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2224), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5071), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_pattern] = STATE(6577), + [sym_constant_pattern] = STATE(3429), + [sym_parenthesized_pattern] = STATE(3429), + [sym_var_pattern] = STATE(3429), + [sym_type_pattern] = STATE(3429), + [sym_list_pattern] = STATE(3429), + [sym_recursive_pattern] = STATE(3429), + [sym_positional_pattern_clause] = STATE(5135), + [sym_property_pattern_clause] = STATE(5666), + [sym_relational_pattern] = STATE(3429), + [sym_negated_pattern] = STATE(3429), + [sym_and_pattern] = STATE(3429), + [sym_or_pattern] = STATE(3429), + [sym_declaration_pattern] = STATE(3429), + [sym_expression] = STATE(5136), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3468), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(4202), + [sym_postfix_unary_expression] = STATE(4203), + [sym_prefix_unary_expression] = STATE(4203), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6134), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(4202), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(4203), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(4202), + [sym_member_access_expression] = STATE(3112), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(4203), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7309), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_declaration_expression] = STATE(6902), + [sym_default_expression] = STATE(4202), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(4202), + [sym_typeof_expression] = STATE(4202), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(3112), + [sym_literal] = STATE(4202), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2207), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(111), [sym_preproc_endregion] = STATE(111), [sym_preproc_line] = STATE(111), @@ -51539,63 +51425,63 @@ 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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), - [sym__identifier_token] = ACTIONS(25), - [anon_sym_alias] = ACTIONS(29), - [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1049), - [anon_sym_RBRACK] = ACTIONS(1135), - [anon_sym_LPAREN] = ACTIONS(1053), - [anon_sym_field] = ACTIONS(1055), - [anon_sym_event] = ACTIONS(1055), - [anon_sym_method] = ACTIONS(1055), - [anon_sym_param] = ACTIONS(1055), - [anon_sym_property] = ACTIONS(1055), - [anon_sym_return] = ACTIONS(1055), - [anon_sym_type] = ACTIONS(1055), - [anon_sym_ref] = ACTIONS(1057), - [anon_sym_LBRACE] = ACTIONS(1059), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), - [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1061), - [anon_sym_LT] = ACTIONS(1063), - [anon_sym_GT] = ACTIONS(1063), - [anon_sym_in] = ACTIONS(1065), - [anon_sym_out] = ACTIONS(1065), - [anon_sym_where] = ACTIONS(29), - [anon_sym_notnull] = ACTIONS(29), - [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1067), - [anon_sym_BANG] = ACTIONS(1069), - [anon_sym_TILDE] = ACTIONS(1069), - [anon_sym_PLUS_PLUS] = ACTIONS(1069), - [anon_sym_DASH_DASH] = ACTIONS(1069), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1071), - [anon_sym_DASH] = ACTIONS(1071), - [anon_sym_STAR] = ACTIONS(905), - [anon_sym_CARET] = ACTIONS(1069), - [anon_sym_AMP] = ACTIONS(1069), - [anon_sym_GT_EQ] = ACTIONS(1073), - [anon_sym_LT_EQ] = ACTIONS(1073), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), + [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(1133), + [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_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_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(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(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_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(1075), + [anon_sym_scoped] = ACTIONS(1073), [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(1077), + [anon_sym_var] = ACTIONS(1075), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1067), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1079), + [anon_sym_throw] = ACTIONS(1077), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1081), - [sym_discard] = ACTIONS(1083), - [anon_sym_DOT_DOT] = ACTIONS(1137), - [anon_sym_not] = ACTIONS(1087), + [anon_sym_await] = ACTIONS(1079), + [sym_discard] = ACTIONS(1081), + [anon_sym_DOT_DOT] = ACTIONS(1135), + [anon_sym_not] = ACTIONS(1085), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -51620,7 +51506,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(1089), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -51637,102 +51523,102 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [112] = { - [sym_attribute] = STATE(7036), - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_attribute_target_specifier] = STATE(5787), - [sym_parameter_list] = STATE(7311), - [sym_argument] = STATE(6740), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(5580), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2234), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5065), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_pattern] = STATE(6585), - [sym_constant_pattern] = STATE(3486), - [sym_parenthesized_pattern] = STATE(3486), - [sym_var_pattern] = STATE(3486), - [sym_type_pattern] = STATE(3486), - [sym_list_pattern] = STATE(3486), - [sym_recursive_pattern] = STATE(3486), - [sym_positional_pattern_clause] = STATE(5175), - [sym_property_pattern_clause] = STATE(5675), - [sym_relational_pattern] = STATE(3486), - [sym_negated_pattern] = STATE(3486), - [sym_and_pattern] = STATE(3486), - [sym_or_pattern] = STATE(3486), - [sym_declaration_pattern] = STATE(3486), - [sym_expression] = STATE(5156), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3379), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(4216), - [sym_postfix_unary_expression] = STATE(4219), - [sym_prefix_unary_expression] = STATE(4219), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6154), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(4216), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(4219), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(4216), - [sym_member_access_expression] = STATE(3121), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(4219), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7575), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_declaration_expression] = STATE(6803), - [sym_default_expression] = STATE(4216), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(4216), - [sym_typeof_expression] = STATE(4216), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(3121), - [sym_literal] = STATE(4216), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2206), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute] = STATE(7014), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_attribute_target_specifier] = STATE(5784), + [sym_parameter_list] = STATE(7531), + [sym_argument] = STATE(6855), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(5356), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2224), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5071), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_pattern] = STATE(6515), + [sym_constant_pattern] = STATE(3429), + [sym_parenthesized_pattern] = STATE(3429), + [sym_var_pattern] = STATE(3429), + [sym_type_pattern] = STATE(3429), + [sym_list_pattern] = STATE(3429), + [sym_recursive_pattern] = STATE(3429), + [sym_positional_pattern_clause] = STATE(5135), + [sym_property_pattern_clause] = STATE(5666), + [sym_relational_pattern] = STATE(3429), + [sym_negated_pattern] = STATE(3429), + [sym_and_pattern] = STATE(3429), + [sym_or_pattern] = STATE(3429), + [sym_declaration_pattern] = STATE(3429), + [sym_expression] = STATE(5136), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3468), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(4202), + [sym_postfix_unary_expression] = STATE(4203), + [sym_prefix_unary_expression] = STATE(4203), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6134), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(4202), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(4203), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(4202), + [sym_member_access_expression] = STATE(3112), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(4203), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7309), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_declaration_expression] = STATE(6902), + [sym_default_expression] = STATE(4202), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(4202), + [sym_typeof_expression] = STATE(4202), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(3112), + [sym_literal] = STATE(4202), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2207), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(112), [sym_preproc_endregion] = STATE(112), [sym_preproc_line] = STATE(112), @@ -51742,63 +51628,63 @@ 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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), - [sym__identifier_token] = ACTIONS(25), - [anon_sym_alias] = ACTIONS(29), - [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1049), - [anon_sym_RBRACK] = ACTIONS(1139), - [anon_sym_LPAREN] = ACTIONS(1053), - [anon_sym_field] = ACTIONS(1055), - [anon_sym_event] = ACTIONS(1055), - [anon_sym_method] = ACTIONS(1055), - [anon_sym_param] = ACTIONS(1055), - [anon_sym_property] = ACTIONS(1055), - [anon_sym_return] = ACTIONS(1055), - [anon_sym_type] = ACTIONS(1055), - [anon_sym_ref] = ACTIONS(1057), - [anon_sym_LBRACE] = ACTIONS(1059), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), - [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1061), - [anon_sym_LT] = ACTIONS(1063), - [anon_sym_GT] = ACTIONS(1063), - [anon_sym_in] = ACTIONS(1065), - [anon_sym_out] = ACTIONS(1065), - [anon_sym_where] = ACTIONS(29), - [anon_sym_notnull] = ACTIONS(29), - [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1067), - [anon_sym_BANG] = ACTIONS(1069), - [anon_sym_TILDE] = ACTIONS(1069), - [anon_sym_PLUS_PLUS] = ACTIONS(1069), - [anon_sym_DASH_DASH] = ACTIONS(1069), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1071), - [anon_sym_DASH] = ACTIONS(1071), - [anon_sym_STAR] = ACTIONS(905), - [anon_sym_CARET] = ACTIONS(1069), - [anon_sym_AMP] = ACTIONS(1069), - [anon_sym_GT_EQ] = ACTIONS(1073), - [anon_sym_LT_EQ] = ACTIONS(1073), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), + [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(1137), + [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_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_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(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(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_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(1075), + [anon_sym_scoped] = ACTIONS(1073), [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(1077), + [anon_sym_var] = ACTIONS(1075), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1067), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1079), + [anon_sym_throw] = ACTIONS(1077), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1081), - [sym_discard] = ACTIONS(1083), - [anon_sym_DOT_DOT] = ACTIONS(1141), - [anon_sym_not] = ACTIONS(1087), + [anon_sym_await] = ACTIONS(1079), + [sym_discard] = ACTIONS(1081), + [anon_sym_DOT_DOT] = ACTIONS(1139), + [anon_sym_not] = ACTIONS(1085), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -51823,7 +51709,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(1089), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -51840,104 +51726,104 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [113] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_parameter] = STATE(6948), - [sym__parameter_array] = STATE(6996), - [sym_argument] = STATE(7247), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(5634), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2234), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(4936), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_tuple_element] = STATE(7255), - [sym_pattern] = STATE(6677), - [sym_constant_pattern] = STATE(3486), - [sym_parenthesized_pattern] = STATE(3486), - [sym_var_pattern] = STATE(3486), - [sym_type_pattern] = STATE(3486), - [sym_list_pattern] = STATE(3486), - [sym_recursive_pattern] = STATE(3486), - [sym_positional_pattern_clause] = STATE(5175), - [sym_property_pattern_clause] = STATE(5675), - [sym_subpattern] = STATE(7235), - [sym_relational_pattern] = STATE(3486), - [sym_negated_pattern] = STATE(3486), - [sym_and_pattern] = STATE(3486), - [sym_or_pattern] = STATE(3486), - [sym_declaration_pattern] = STATE(3486), - [sym_expression] = STATE(5234), - [sym_non_lvalue_expression] = STATE(5597), - [sym_lvalue_expression] = STATE(3525), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(4216), - [sym_postfix_unary_expression] = STATE(4219), - [sym_prefix_unary_expression] = STATE(4219), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6161), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(4216), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(4219), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(4216), - [sym_member_access_expression] = STATE(3121), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(4219), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7323), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_declaration_expression] = STATE(6803), - [sym_default_expression] = STATE(4216), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(4216), - [sym_typeof_expression] = STATE(4216), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(3121), - [sym_literal] = STATE(4216), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2222), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_parameter] = STATE(6769), + [sym__parameter_array] = STATE(6785), + [sym_argument] = STATE(7133), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(5528), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2224), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5045), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_tuple_element] = STATE(7118), + [sym_pattern] = STATE(6680), + [sym_constant_pattern] = STATE(3429), + [sym_parenthesized_pattern] = STATE(3429), + [sym_var_pattern] = STATE(3429), + [sym_type_pattern] = STATE(3429), + [sym_list_pattern] = STATE(3429), + [sym_recursive_pattern] = STATE(3429), + [sym_positional_pattern_clause] = STATE(5135), + [sym_property_pattern_clause] = STATE(5666), + [sym_subpattern] = STATE(7245), + [sym_relational_pattern] = STATE(3429), + [sym_negated_pattern] = STATE(3429), + [sym_and_pattern] = STATE(3429), + [sym_or_pattern] = STATE(3429), + [sym_declaration_pattern] = STATE(3429), + [sym_expression] = STATE(5221), + [sym_non_lvalue_expression] = STATE(5315), + [sym_lvalue_expression] = STATE(3535), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(4202), + [sym_postfix_unary_expression] = STATE(4203), + [sym_prefix_unary_expression] = STATE(4203), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6163), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(4202), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(4203), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(4202), + [sym_member_access_expression] = STATE(3112), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(4203), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7496), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_declaration_expression] = STATE(6902), + [sym_default_expression] = STATE(4202), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(4202), + [sym_typeof_expression] = STATE(4202), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(3112), + [sym_literal] = STATE(4202), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2221), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(113), [sym_preproc_endregion] = STATE(113), [sym_preproc_line] = STATE(113), @@ -51947,59 +51833,59 @@ 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(2852), - [aux_sym__parameter_type_with_modifiers_repeat1] = STATE(3489), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [aux_sym__class_declaration_initializer_repeat1] = STATE(2843), + [aux_sym__parameter_type_with_modifiers_repeat1] = STATE(3452), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1049), - [anon_sym_LPAREN] = ACTIONS(1143), - [anon_sym_RPAREN] = ACTIONS(1145), - [anon_sym_ref] = ACTIONS(1099), - [anon_sym_LBRACE] = ACTIONS(1059), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_LPAREN] = ACTIONS(1141), + [anon_sym_RPAREN] = ACTIONS(1143), + [anon_sym_ref] = ACTIONS(1093), + [anon_sym_LBRACE] = ACTIONS(1057), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1101), - [anon_sym_readonly] = ACTIONS(1103), - [anon_sym_LT] = ACTIONS(1063), - [anon_sym_GT] = ACTIONS(1063), - [anon_sym_in] = ACTIONS(1105), - [anon_sym_out] = ACTIONS(1105), + [anon_sym_new] = ACTIONS(1095), + [anon_sym_readonly] = ACTIONS(1097), + [anon_sym_LT] = ACTIONS(1061), + [anon_sym_GT] = ACTIONS(1061), + [anon_sym_in] = ACTIONS(1099), + [anon_sym_out] = ACTIONS(1099), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1067), - [anon_sym_BANG] = ACTIONS(1107), - [anon_sym_TILDE] = ACTIONS(1107), - [anon_sym_PLUS_PLUS] = ACTIONS(1107), - [anon_sym_DASH_DASH] = ACTIONS(1107), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(1101), + [anon_sym_TILDE] = ACTIONS(1101), + [anon_sym_PLUS_PLUS] = ACTIONS(1101), + [anon_sym_DASH_DASH] = ACTIONS(1101), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1109), - [anon_sym_DASH] = ACTIONS(1109), - [anon_sym_STAR] = ACTIONS(1111), - [anon_sym_CARET] = ACTIONS(1107), - [anon_sym_AMP] = ACTIONS(1107), - [anon_sym_GT_EQ] = ACTIONS(1073), - [anon_sym_LT_EQ] = ACTIONS(1073), - [anon_sym_this] = ACTIONS(1113), - [anon_sym_scoped] = ACTIONS(1115), - [anon_sym_params] = ACTIONS(1117), + [anon_sym_PLUS] = ACTIONS(1103), + [anon_sym_DASH] = ACTIONS(1103), + [anon_sym_STAR] = ACTIONS(1105), + [anon_sym_CARET] = ACTIONS(1101), + [anon_sym_AMP] = ACTIONS(1101), + [anon_sym_GT_EQ] = ACTIONS(1071), + [anon_sym_LT_EQ] = ACTIONS(1071), + [anon_sym_this] = ACTIONS(1107), + [anon_sym_scoped] = ACTIONS(1109), + [anon_sym_params] = ACTIONS(1111), [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(1077), + [anon_sym_var] = ACTIONS(1075), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1067), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1119), + [anon_sym_throw] = ACTIONS(1113), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1121), - [sym_discard] = ACTIONS(1083), - [anon_sym_DOT_DOT] = ACTIONS(1125), - [anon_sym_not] = ACTIONS(1127), + [anon_sym_await] = ACTIONS(1115), + [sym_discard] = ACTIONS(1081), + [anon_sym_DOT_DOT] = ACTIONS(1119), + [anon_sym_not] = ACTIONS(1121), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -52024,7 +51910,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(1089), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -52041,104 +51927,104 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [114] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_parameter] = STATE(6948), - [sym__parameter_array] = STATE(6996), - [sym_argument] = STATE(7273), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(5634), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2234), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5022), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_tuple_element] = STATE(7255), - [sym_pattern] = STATE(6695), - [sym_constant_pattern] = STATE(3486), - [sym_parenthesized_pattern] = STATE(3486), - [sym_var_pattern] = STATE(3486), - [sym_type_pattern] = STATE(3486), - [sym_list_pattern] = STATE(3486), - [sym_recursive_pattern] = STATE(3486), - [sym_positional_pattern_clause] = STATE(5175), - [sym_property_pattern_clause] = STATE(5675), - [sym_subpattern] = STATE(7235), - [sym_relational_pattern] = STATE(3486), - [sym_negated_pattern] = STATE(3486), - [sym_and_pattern] = STATE(3486), - [sym_or_pattern] = STATE(3486), - [sym_declaration_pattern] = STATE(3486), - [sym_expression] = STATE(5234), - [sym_non_lvalue_expression] = STATE(5333), - [sym_lvalue_expression] = STATE(3525), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(4216), - [sym_postfix_unary_expression] = STATE(4219), - [sym_prefix_unary_expression] = STATE(4219), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6161), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(4216), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(4219), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(4216), - [sym_member_access_expression] = STATE(3121), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(4219), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7323), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_declaration_expression] = STATE(6803), - [sym_default_expression] = STATE(4216), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(4216), - [sym_typeof_expression] = STATE(4216), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(3121), - [sym_literal] = STATE(4216), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2222), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_parameter] = STATE(6769), + [sym__parameter_array] = STATE(6785), + [sym_argument] = STATE(7201), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(5528), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2224), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(4913), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_tuple_element] = STATE(7058), + [sym_pattern] = STATE(6623), + [sym_constant_pattern] = STATE(3429), + [sym_parenthesized_pattern] = STATE(3429), + [sym_var_pattern] = STATE(3429), + [sym_type_pattern] = STATE(3429), + [sym_list_pattern] = STATE(3429), + [sym_recursive_pattern] = STATE(3429), + [sym_positional_pattern_clause] = STATE(5135), + [sym_property_pattern_clause] = STATE(5666), + [sym_subpattern] = STATE(7045), + [sym_relational_pattern] = STATE(3429), + [sym_negated_pattern] = STATE(3429), + [sym_and_pattern] = STATE(3429), + [sym_or_pattern] = STATE(3429), + [sym_declaration_pattern] = STATE(3429), + [sym_expression] = STATE(5221), + [sym_non_lvalue_expression] = STATE(5390), + [sym_lvalue_expression] = STATE(3535), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(4202), + [sym_postfix_unary_expression] = STATE(4203), + [sym_prefix_unary_expression] = STATE(4203), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6163), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(4202), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(4203), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(4202), + [sym_member_access_expression] = STATE(3112), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(4203), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7496), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_declaration_expression] = STATE(6902), + [sym_default_expression] = STATE(4202), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(4202), + [sym_typeof_expression] = STATE(4202), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(3112), + [sym_literal] = STATE(4202), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2221), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(114), [sym_preproc_endregion] = STATE(114), [sym_preproc_line] = STATE(114), @@ -52148,59 +52034,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(2852), - [aux_sym__parameter_type_with_modifiers_repeat1] = STATE(3489), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [aux_sym__class_declaration_initializer_repeat1] = STATE(2843), + [aux_sym__parameter_type_with_modifiers_repeat1] = STATE(3452), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1049), - [anon_sym_LPAREN] = ACTIONS(1143), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_LPAREN] = ACTIONS(1141), [anon_sym_RPAREN] = ACTIONS(1145), - [anon_sym_ref] = ACTIONS(1099), - [anon_sym_LBRACE] = ACTIONS(1059), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_ref] = ACTIONS(1093), + [anon_sym_LBRACE] = ACTIONS(1057), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1101), - [anon_sym_readonly] = ACTIONS(1103), - [anon_sym_LT] = ACTIONS(1063), - [anon_sym_GT] = ACTIONS(1063), - [anon_sym_in] = ACTIONS(1105), - [anon_sym_out] = ACTIONS(1105), + [anon_sym_new] = ACTIONS(1095), + [anon_sym_readonly] = ACTIONS(1097), + [anon_sym_LT] = ACTIONS(1061), + [anon_sym_GT] = ACTIONS(1061), + [anon_sym_in] = ACTIONS(1099), + [anon_sym_out] = ACTIONS(1099), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1067), - [anon_sym_BANG] = ACTIONS(1107), - [anon_sym_TILDE] = ACTIONS(1107), - [anon_sym_PLUS_PLUS] = ACTIONS(1107), - [anon_sym_DASH_DASH] = ACTIONS(1107), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(1101), + [anon_sym_TILDE] = ACTIONS(1101), + [anon_sym_PLUS_PLUS] = ACTIONS(1101), + [anon_sym_DASH_DASH] = ACTIONS(1101), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1109), - [anon_sym_DASH] = ACTIONS(1109), - [anon_sym_STAR] = ACTIONS(1111), - [anon_sym_CARET] = ACTIONS(1107), - [anon_sym_AMP] = ACTIONS(1107), - [anon_sym_GT_EQ] = ACTIONS(1073), - [anon_sym_LT_EQ] = ACTIONS(1073), - [anon_sym_this] = ACTIONS(1113), - [anon_sym_scoped] = ACTIONS(1115), - [anon_sym_params] = ACTIONS(1117), + [anon_sym_PLUS] = ACTIONS(1103), + [anon_sym_DASH] = ACTIONS(1103), + [anon_sym_STAR] = ACTIONS(1105), + [anon_sym_CARET] = ACTIONS(1101), + [anon_sym_AMP] = ACTIONS(1101), + [anon_sym_GT_EQ] = ACTIONS(1071), + [anon_sym_LT_EQ] = ACTIONS(1071), + [anon_sym_this] = ACTIONS(1107), + [anon_sym_scoped] = ACTIONS(1109), + [anon_sym_params] = ACTIONS(1111), [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(1077), + [anon_sym_var] = ACTIONS(1075), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1067), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1119), + [anon_sym_throw] = ACTIONS(1113), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1121), - [sym_discard] = ACTIONS(1083), - [anon_sym_DOT_DOT] = ACTIONS(1125), - [anon_sym_not] = ACTIONS(1127), + [anon_sym_await] = ACTIONS(1115), + [sym_discard] = ACTIONS(1081), + [anon_sym_DOT_DOT] = ACTIONS(1119), + [anon_sym_not] = ACTIONS(1121), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -52225,7 +52111,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(1089), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -52242,104 +52128,104 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [115] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_parameter] = STATE(6948), - [sym__parameter_array] = STATE(6996), - [sym_argument] = STATE(7273), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(5634), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2234), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5066), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_tuple_element] = STATE(7255), - [sym_pattern] = STATE(6695), - [sym_constant_pattern] = STATE(3486), - [sym_parenthesized_pattern] = STATE(3486), - [sym_var_pattern] = STATE(3486), - [sym_type_pattern] = STATE(3486), - [sym_list_pattern] = STATE(3486), - [sym_recursive_pattern] = STATE(3486), - [sym_positional_pattern_clause] = STATE(5175), - [sym_property_pattern_clause] = STATE(5675), - [sym_subpattern] = STATE(7235), - [sym_relational_pattern] = STATE(3486), - [sym_negated_pattern] = STATE(3486), - [sym_and_pattern] = STATE(3486), - [sym_or_pattern] = STATE(3486), - [sym_declaration_pattern] = STATE(3486), - [sym_expression] = STATE(5234), - [sym_non_lvalue_expression] = STATE(5333), - [sym_lvalue_expression] = STATE(3525), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(4216), - [sym_postfix_unary_expression] = STATE(4219), - [sym_prefix_unary_expression] = STATE(4219), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6161), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(4216), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(4219), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(4216), - [sym_member_access_expression] = STATE(3121), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(4219), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7323), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_declaration_expression] = STATE(6803), - [sym_default_expression] = STATE(4216), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(4216), - [sym_typeof_expression] = STATE(4216), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(3121), - [sym_literal] = STATE(4216), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2222), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_parameter] = STATE(6769), + [sym__parameter_array] = STATE(6785), + [sym_argument] = STATE(7133), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(5528), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2224), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(4835), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_tuple_element] = STATE(7118), + [sym_pattern] = STATE(6680), + [sym_constant_pattern] = STATE(3429), + [sym_parenthesized_pattern] = STATE(3429), + [sym_var_pattern] = STATE(3429), + [sym_type_pattern] = STATE(3429), + [sym_list_pattern] = STATE(3429), + [sym_recursive_pattern] = STATE(3429), + [sym_positional_pattern_clause] = STATE(5135), + [sym_property_pattern_clause] = STATE(5666), + [sym_subpattern] = STATE(7245), + [sym_relational_pattern] = STATE(3429), + [sym_negated_pattern] = STATE(3429), + [sym_and_pattern] = STATE(3429), + [sym_or_pattern] = STATE(3429), + [sym_declaration_pattern] = STATE(3429), + [sym_expression] = STATE(5221), + [sym_non_lvalue_expression] = STATE(5315), + [sym_lvalue_expression] = STATE(3535), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(4202), + [sym_postfix_unary_expression] = STATE(4203), + [sym_prefix_unary_expression] = STATE(4203), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6163), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(4202), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(4203), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(4202), + [sym_member_access_expression] = STATE(3112), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(4203), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7496), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_declaration_expression] = STATE(6902), + [sym_default_expression] = STATE(4202), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(4202), + [sym_typeof_expression] = STATE(4202), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(3112), + [sym_literal] = STATE(4202), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2221), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(115), [sym_preproc_endregion] = STATE(115), [sym_preproc_line] = STATE(115), @@ -52349,59 +52235,59 @@ 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(2852), - [aux_sym__parameter_type_with_modifiers_repeat1] = STATE(3489), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [aux_sym__class_declaration_initializer_repeat1] = STATE(2843), + [aux_sym__parameter_type_with_modifiers_repeat1] = STATE(3452), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1049), - [anon_sym_LPAREN] = ACTIONS(1143), - [anon_sym_RPAREN] = ACTIONS(1145), - [anon_sym_ref] = ACTIONS(1099), - [anon_sym_LBRACE] = ACTIONS(1059), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_LPAREN] = ACTIONS(1141), + [anon_sym_RPAREN] = ACTIONS(1143), + [anon_sym_ref] = ACTIONS(1093), + [anon_sym_LBRACE] = ACTIONS(1057), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1101), - [anon_sym_readonly] = ACTIONS(1103), - [anon_sym_LT] = ACTIONS(1063), - [anon_sym_GT] = ACTIONS(1063), - [anon_sym_in] = ACTIONS(1105), - [anon_sym_out] = ACTIONS(1105), + [anon_sym_new] = ACTIONS(1095), + [anon_sym_readonly] = ACTIONS(1097), + [anon_sym_LT] = ACTIONS(1061), + [anon_sym_GT] = ACTIONS(1061), + [anon_sym_in] = ACTIONS(1099), + [anon_sym_out] = ACTIONS(1099), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1067), - [anon_sym_BANG] = ACTIONS(1107), - [anon_sym_TILDE] = ACTIONS(1107), - [anon_sym_PLUS_PLUS] = ACTIONS(1107), - [anon_sym_DASH_DASH] = ACTIONS(1107), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(1101), + [anon_sym_TILDE] = ACTIONS(1101), + [anon_sym_PLUS_PLUS] = ACTIONS(1101), + [anon_sym_DASH_DASH] = ACTIONS(1101), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1109), - [anon_sym_DASH] = ACTIONS(1109), - [anon_sym_STAR] = ACTIONS(1111), - [anon_sym_CARET] = ACTIONS(1107), - [anon_sym_AMP] = ACTIONS(1107), - [anon_sym_GT_EQ] = ACTIONS(1073), - [anon_sym_LT_EQ] = ACTIONS(1073), - [anon_sym_this] = ACTIONS(1113), - [anon_sym_scoped] = ACTIONS(1115), - [anon_sym_params] = ACTIONS(1117), + [anon_sym_PLUS] = ACTIONS(1103), + [anon_sym_DASH] = ACTIONS(1103), + [anon_sym_STAR] = ACTIONS(1105), + [anon_sym_CARET] = ACTIONS(1101), + [anon_sym_AMP] = ACTIONS(1101), + [anon_sym_GT_EQ] = ACTIONS(1071), + [anon_sym_LT_EQ] = ACTIONS(1071), + [anon_sym_this] = ACTIONS(1107), + [anon_sym_scoped] = ACTIONS(1109), + [anon_sym_params] = ACTIONS(1111), [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(1077), + [anon_sym_var] = ACTIONS(1075), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1067), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1119), + [anon_sym_throw] = ACTIONS(1113), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1121), - [sym_discard] = ACTIONS(1083), - [anon_sym_DOT_DOT] = ACTIONS(1125), - [anon_sym_not] = ACTIONS(1127), + [anon_sym_await] = ACTIONS(1115), + [sym_discard] = ACTIONS(1081), + [anon_sym_DOT_DOT] = ACTIONS(1119), + [anon_sym_not] = ACTIONS(1121), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -52426,7 +52312,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(1089), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -52443,104 +52329,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [116] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_parameter] = STATE(6948), - [sym__parameter_array] = STATE(6996), - [sym_argument] = STATE(7273), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(5634), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2234), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(4906), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_tuple_element] = STATE(7283), - [sym_pattern] = STATE(6695), - [sym_constant_pattern] = STATE(3486), - [sym_parenthesized_pattern] = STATE(3486), - [sym_var_pattern] = STATE(3486), - [sym_type_pattern] = STATE(3486), - [sym_list_pattern] = STATE(3486), - [sym_recursive_pattern] = STATE(3486), - [sym_positional_pattern_clause] = STATE(5175), - [sym_property_pattern_clause] = STATE(5675), - [sym_subpattern] = STATE(7235), - [sym_relational_pattern] = STATE(3486), - [sym_negated_pattern] = STATE(3486), - [sym_and_pattern] = STATE(3486), - [sym_or_pattern] = STATE(3486), - [sym_declaration_pattern] = STATE(3486), - [sym_expression] = STATE(5234), - [sym_non_lvalue_expression] = STATE(5333), - [sym_lvalue_expression] = STATE(3525), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(4216), - [sym_postfix_unary_expression] = STATE(4219), - [sym_prefix_unary_expression] = STATE(4219), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6161), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(4216), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(4219), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(4216), - [sym_member_access_expression] = STATE(3121), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(4219), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7323), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_declaration_expression] = STATE(6803), - [sym_default_expression] = STATE(4216), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(4216), - [sym_typeof_expression] = STATE(4216), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(3121), - [sym_literal] = STATE(4216), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2222), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2603), + [sym__name] = STATE(5862), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2193), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(3881), + [sym_non_lvalue_expression] = STATE(3220), + [sym_lvalue_expression] = STATE(2955), + [sym__expression_statement_expression] = STATE(3236), + [sym_assignment_expression] = STATE(3221), + [sym_binary_expression] = STATE(3236), + [sym_postfix_unary_expression] = STATE(3221), + [sym_prefix_unary_expression] = STATE(3221), + [sym__pointer_indirection_expression] = STATE(2602), + [sym_query_expression] = STATE(3236), + [sym_from_clause] = STATE(6143), + [sym_conditional_expression] = STATE(3236), + [sym_conditional_access_expression] = STATE(3236), + [sym_as_expression] = STATE(3236), + [sym_is_expression] = STATE(3236), + [sym_is_pattern_expression] = STATE(3236), + [sym_cast_expression] = STATE(3236), + [sym_checked_expression] = STATE(3236), + [sym_invocation_expression] = STATE(3221), + [sym_switch_expression] = STATE(3236), + [sym_await_expression] = STATE(3221), + [sym_throw_expression] = STATE(3236), + [sym_element_access_expression] = STATE(2602), + [sym_interpolated_string_expression] = STATE(3236), + [sym_member_access_expression] = STATE(2602), + [sym_object_creation_expression] = STATE(3221), + [sym_parenthesized_expression] = STATE(3221), + [sym__parenthesized_lvalue_expression] = STATE(2602), + [sym_lambda_expression] = STATE(3236), + [sym__lambda_expression_init] = STATE(7668), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3236), + [sym_anonymous_method_expression] = STATE(3236), + [sym_anonymous_object_creation_expression] = STATE(3236), + [sym_implicit_array_creation_expression] = STATE(3236), + [sym_implicit_object_creation_expression] = STATE(3236), + [sym_implicit_stackalloc_expression] = STATE(3236), + [sym_initializer_expression] = STATE(3236), + [sym_default_expression] = STATE(3236), + [sym_with_expression] = STATE(3236), + [sym_sizeof_expression] = STATE(3236), + [sym_typeof_expression] = STATE(3236), + [sym_makeref_expression] = STATE(3236), + [sym_ref_expression] = STATE(3236), + [sym_reftype_expression] = STATE(3236), + [sym_refvalue_expression] = STATE(3236), + [sym_stackalloc_expression] = STATE(3236), + [sym_range_expression] = STATE(3236), + [sym_tuple_expression] = STATE(2602), + [sym_literal] = STATE(3236), + [sym_character_literal] = STATE(3272), + [sym_string_literal] = STATE(3272), + [sym_raw_string_literal] = STATE(3272), + [sym_boolean_literal] = STATE(3272), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3236), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(116), [sym_preproc_endregion] = STATE(116), [sym_preproc_line] = STATE(116), @@ -52550,59 +52416,72 @@ 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(2852), - [aux_sym__parameter_type_with_modifiers_repeat1] = STATE(3489), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3379), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), + [anon_sym_SEMI] = ACTIONS(1147), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1049), - [anon_sym_LPAREN] = ACTIONS(1143), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1149), + [anon_sym_COMMA] = ACTIONS(1147), + [anon_sym_RBRACK] = ACTIONS(1147), + [anon_sym_LPAREN] = ACTIONS(1151), [anon_sym_RPAREN] = ACTIONS(1147), - [anon_sym_ref] = ACTIONS(1099), - [anon_sym_LBRACE] = ACTIONS(1059), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_ref] = ACTIONS(1153), + [anon_sym_LBRACE] = ACTIONS(1155), + [anon_sym_RBRACE] = ACTIONS(1147), + [anon_sym_delegate] = ACTIONS(1157), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1101), - [anon_sym_readonly] = ACTIONS(1103), - [anon_sym_LT] = ACTIONS(1063), - [anon_sym_GT] = ACTIONS(1063), - [anon_sym_in] = ACTIONS(1105), - [anon_sym_out] = ACTIONS(1105), + [anon_sym_new] = ACTIONS(1159), + [anon_sym_LT] = ACTIONS(1161), + [anon_sym_GT] = ACTIONS(1161), [anon_sym_where] = ACTIONS(29), + [anon_sym_QMARK] = ACTIONS(1161), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1067), - [anon_sym_BANG] = ACTIONS(1107), - [anon_sym_TILDE] = ACTIONS(1107), - [anon_sym_PLUS_PLUS] = ACTIONS(1107), - [anon_sym_DASH_DASH] = ACTIONS(1107), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1109), - [anon_sym_DASH] = ACTIONS(1109), - [anon_sym_STAR] = ACTIONS(1111), - [anon_sym_CARET] = ACTIONS(1107), - [anon_sym_AMP] = ACTIONS(1107), - [anon_sym_GT_EQ] = ACTIONS(1073), - [anon_sym_LT_EQ] = ACTIONS(1073), - [anon_sym_this] = ACTIONS(1113), - [anon_sym_scoped] = ACTIONS(1115), - [anon_sym_params] = ACTIONS(1117), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(1077), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1067), + [anon_sym_checked] = ACTIONS(1163), + [anon_sym_BANG] = ACTIONS(1165), + [anon_sym_TILDE] = ACTIONS(1167), + [anon_sym_PLUS_PLUS] = ACTIONS(1167), + [anon_sym_DASH_DASH] = ACTIONS(1167), + [anon_sym_true] = ACTIONS(1169), + [anon_sym_false] = ACTIONS(1169), + [anon_sym_PLUS] = ACTIONS(1165), + [anon_sym_DASH] = ACTIONS(1165), + [anon_sym_STAR] = ACTIONS(1171), + [anon_sym_SLASH] = ACTIONS(1161), + [anon_sym_PERCENT] = ACTIONS(1147), + [anon_sym_CARET] = ACTIONS(1167), + [anon_sym_PIPE] = ACTIONS(1161), + [anon_sym_AMP] = ACTIONS(1165), + [anon_sym_LT_LT] = ACTIONS(1147), + [anon_sym_GT_GT] = ACTIONS(1161), + [anon_sym_GT_GT_GT] = ACTIONS(1147), + [anon_sym_EQ_EQ] = ACTIONS(1147), + [anon_sym_BANG_EQ] = ACTIONS(1147), + [anon_sym_GT_EQ] = ACTIONS(1147), + [anon_sym_LT_EQ] = ACTIONS(1147), + [anon_sym_this] = ACTIONS(1173), + [anon_sym_DOT] = ACTIONS(1161), + [anon_sym_scoped] = ACTIONS(85), + [anon_sym_base] = ACTIONS(1175), + [anon_sym_var] = ACTIONS(89), + [sym_predefined_type] = ACTIONS(1177), + [anon_sym_unchecked] = ACTIONS(1163), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1119), + [anon_sym_switch] = ACTIONS(1161), + [anon_sym_default] = ACTIONS(1179), + [anon_sym_throw] = ACTIONS(1181), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1121), - [sym_discard] = ACTIONS(1083), - [anon_sym_DOT_DOT] = ACTIONS(1125), - [anon_sym_not] = ACTIONS(1127), + [anon_sym_await] = ACTIONS(1183), + [anon_sym_DOT_DOT] = ACTIONS(1185), + [anon_sym_and] = ACTIONS(1161), + [anon_sym_or] = ACTIONS(1161), + [anon_sym_AMP_AMP] = ACTIONS(1147), + [anon_sym_PIPE_PIPE] = ACTIONS(1147), + [anon_sym_QMARK_QMARK] = ACTIONS(1147), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -52615,19 +52494,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(1089), + [anon_sym_as] = ACTIONS(1161), + [anon_sym_is] = ACTIONS(1161), + [anon_sym_DASH_GT] = ACTIONS(1147), + [anon_sym_stackalloc] = ACTIONS(1187), + [anon_sym_with] = ACTIONS(1161), + [anon_sym_sizeof] = ACTIONS(1189), + [anon_sym_typeof] = ACTIONS(1191), + [anon_sym___makeref] = ACTIONS(1193), + [anon_sym___reftype] = ACTIONS(1195), + [anon_sym___refvalue] = ACTIONS(1197), + [sym_null_literal] = ACTIONS(1199), + [anon_sym_SQUOTE] = ACTIONS(1201), + [sym_integer_literal] = ACTIONS(1199), + [sym_real_literal] = ACTIONS(1203), + [anon_sym_DQUOTE] = ACTIONS(1205), + [sym_verbatim_string_literal] = ACTIONS(1203), + [aux_sym_preproc_if_token1] = ACTIONS(1207), + [aux_sym_preproc_if_token3] = ACTIONS(1147), + [aux_sym_preproc_else_token1] = ACTIONS(1147), + [aux_sym_preproc_elif_token1] = ACTIONS(1147), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -52638,110 +52524,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(1209), + [sym_interpolation_verbatim_start] = ACTIONS(1211), + [sym_interpolation_raw_start] = ACTIONS(1213), + [sym_raw_string_start] = ACTIONS(1215), }, [117] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_parameter] = STATE(6948), - [sym__parameter_array] = STATE(6996), - [sym_argument] = STATE(7174), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(5634), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2234), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5107), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_tuple_element] = STATE(7255), - [sym_pattern] = STATE(6647), - [sym_constant_pattern] = STATE(3486), - [sym_parenthesized_pattern] = STATE(3486), - [sym_var_pattern] = STATE(3486), - [sym_type_pattern] = STATE(3486), - [sym_list_pattern] = STATE(3486), - [sym_recursive_pattern] = STATE(3486), - [sym_positional_pattern_clause] = STATE(5175), - [sym_property_pattern_clause] = STATE(5675), - [sym_subpattern] = STATE(7235), - [sym_relational_pattern] = STATE(3486), - [sym_negated_pattern] = STATE(3486), - [sym_and_pattern] = STATE(3486), - [sym_or_pattern] = STATE(3486), - [sym_declaration_pattern] = STATE(3486), - [sym_expression] = STATE(5234), - [sym_non_lvalue_expression] = STATE(5636), - [sym_lvalue_expression] = STATE(3525), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(4216), - [sym_postfix_unary_expression] = STATE(4219), - [sym_prefix_unary_expression] = STATE(4219), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6161), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(4216), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(4219), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(4216), - [sym_member_access_expression] = STATE(3121), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(4219), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7323), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_declaration_expression] = STATE(6803), - [sym_default_expression] = STATE(4216), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(4216), - [sym_typeof_expression] = STATE(4216), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(3121), - [sym_literal] = STATE(4216), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2222), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_parameter] = STATE(6769), + [sym__parameter_array] = STATE(6785), + [sym_argument] = STATE(7244), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(5528), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2224), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5016), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_tuple_element] = STATE(7118), + [sym_pattern] = STATE(6688), + [sym_constant_pattern] = STATE(3429), + [sym_parenthesized_pattern] = STATE(3429), + [sym_var_pattern] = STATE(3429), + [sym_type_pattern] = STATE(3429), + [sym_list_pattern] = STATE(3429), + [sym_recursive_pattern] = STATE(3429), + [sym_positional_pattern_clause] = STATE(5135), + [sym_property_pattern_clause] = STATE(5666), + [sym_subpattern] = STATE(7245), + [sym_relational_pattern] = STATE(3429), + [sym_negated_pattern] = STATE(3429), + [sym_and_pattern] = STATE(3429), + [sym_or_pattern] = STATE(3429), + [sym_declaration_pattern] = STATE(3429), + [sym_expression] = STATE(5221), + [sym_non_lvalue_expression] = STATE(5543), + [sym_lvalue_expression] = STATE(3535), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(4202), + [sym_postfix_unary_expression] = STATE(4203), + [sym_prefix_unary_expression] = STATE(4203), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6163), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(4202), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(4203), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(4202), + [sym_member_access_expression] = STATE(3112), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(4203), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7496), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_declaration_expression] = STATE(6902), + [sym_default_expression] = STATE(4202), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(4202), + [sym_typeof_expression] = STATE(4202), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(3112), + [sym_literal] = STATE(4202), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2221), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(117), [sym_preproc_endregion] = STATE(117), [sym_preproc_line] = STATE(117), @@ -52751,59 +52637,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(117), [sym_preproc_define] = STATE(117), [sym_preproc_undef] = STATE(117), - [aux_sym__class_declaration_initializer_repeat1] = STATE(2852), - [aux_sym__parameter_type_with_modifiers_repeat1] = STATE(3489), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [aux_sym__class_declaration_initializer_repeat1] = STATE(2843), + [aux_sym__parameter_type_with_modifiers_repeat1] = STATE(3452), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1049), - [anon_sym_LPAREN] = ACTIONS(1143), - [anon_sym_RPAREN] = ACTIONS(1145), - [anon_sym_ref] = ACTIONS(1099), - [anon_sym_LBRACE] = ACTIONS(1059), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_LPAREN] = ACTIONS(1141), + [anon_sym_RPAREN] = ACTIONS(1143), + [anon_sym_ref] = ACTIONS(1093), + [anon_sym_LBRACE] = ACTIONS(1057), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1101), - [anon_sym_readonly] = ACTIONS(1103), - [anon_sym_LT] = ACTIONS(1063), - [anon_sym_GT] = ACTIONS(1063), - [anon_sym_in] = ACTIONS(1105), - [anon_sym_out] = ACTIONS(1105), + [anon_sym_new] = ACTIONS(1095), + [anon_sym_readonly] = ACTIONS(1097), + [anon_sym_LT] = ACTIONS(1061), + [anon_sym_GT] = ACTIONS(1061), + [anon_sym_in] = ACTIONS(1099), + [anon_sym_out] = ACTIONS(1099), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1067), - [anon_sym_BANG] = ACTIONS(1107), - [anon_sym_TILDE] = ACTIONS(1107), - [anon_sym_PLUS_PLUS] = ACTIONS(1107), - [anon_sym_DASH_DASH] = ACTIONS(1107), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(1101), + [anon_sym_TILDE] = ACTIONS(1101), + [anon_sym_PLUS_PLUS] = ACTIONS(1101), + [anon_sym_DASH_DASH] = ACTIONS(1101), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1109), - [anon_sym_DASH] = ACTIONS(1109), - [anon_sym_STAR] = ACTIONS(1111), - [anon_sym_CARET] = ACTIONS(1107), - [anon_sym_AMP] = ACTIONS(1107), - [anon_sym_GT_EQ] = ACTIONS(1073), - [anon_sym_LT_EQ] = ACTIONS(1073), - [anon_sym_this] = ACTIONS(1113), - [anon_sym_scoped] = ACTIONS(1115), - [anon_sym_params] = ACTIONS(1117), + [anon_sym_PLUS] = ACTIONS(1103), + [anon_sym_DASH] = ACTIONS(1103), + [anon_sym_STAR] = ACTIONS(1105), + [anon_sym_CARET] = ACTIONS(1101), + [anon_sym_AMP] = ACTIONS(1101), + [anon_sym_GT_EQ] = ACTIONS(1071), + [anon_sym_LT_EQ] = ACTIONS(1071), + [anon_sym_this] = ACTIONS(1107), + [anon_sym_scoped] = ACTIONS(1109), + [anon_sym_params] = ACTIONS(1111), [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(1077), + [anon_sym_var] = ACTIONS(1075), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1067), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1119), + [anon_sym_throw] = ACTIONS(1113), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1121), - [sym_discard] = ACTIONS(1083), - [anon_sym_DOT_DOT] = ACTIONS(1125), - [anon_sym_not] = ACTIONS(1127), + [anon_sym_await] = ACTIONS(1115), + [sym_discard] = ACTIONS(1081), + [anon_sym_DOT_DOT] = ACTIONS(1119), + [anon_sym_not] = ACTIONS(1121), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -52828,7 +52714,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(1089), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -52845,104 +52731,104 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [118] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_parameter] = STATE(6948), - [sym__parameter_array] = STATE(6996), - [sym_argument] = STATE(7189), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(5634), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2234), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(4955), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_tuple_element] = STATE(7094), - [sym_pattern] = STATE(6706), - [sym_constant_pattern] = STATE(3486), - [sym_parenthesized_pattern] = STATE(3486), - [sym_var_pattern] = STATE(3486), - [sym_type_pattern] = STATE(3486), - [sym_list_pattern] = STATE(3486), - [sym_recursive_pattern] = STATE(3486), - [sym_positional_pattern_clause] = STATE(5175), - [sym_property_pattern_clause] = STATE(5675), - [sym_subpattern] = STATE(7049), - [sym_relational_pattern] = STATE(3486), - [sym_negated_pattern] = STATE(3486), - [sym_and_pattern] = STATE(3486), - [sym_or_pattern] = STATE(3486), - [sym_declaration_pattern] = STATE(3486), - [sym_expression] = STATE(5234), - [sym_non_lvalue_expression] = STATE(5560), - [sym_lvalue_expression] = STATE(3525), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(4216), - [sym_postfix_unary_expression] = STATE(4219), - [sym_prefix_unary_expression] = STATE(4219), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6161), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(4216), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(4219), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(4216), - [sym_member_access_expression] = STATE(3121), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(4219), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7323), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_declaration_expression] = STATE(6803), - [sym_default_expression] = STATE(4216), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(4216), - [sym_typeof_expression] = STATE(4216), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(3121), - [sym_literal] = STATE(4216), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2222), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_parameter] = STATE(6769), + [sym__parameter_array] = STATE(6785), + [sym_argument] = STATE(7154), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(5528), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2224), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(4837), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_tuple_element] = STATE(7118), + [sym_pattern] = STATE(6645), + [sym_constant_pattern] = STATE(3429), + [sym_parenthesized_pattern] = STATE(3429), + [sym_var_pattern] = STATE(3429), + [sym_type_pattern] = STATE(3429), + [sym_list_pattern] = STATE(3429), + [sym_recursive_pattern] = STATE(3429), + [sym_positional_pattern_clause] = STATE(5135), + [sym_property_pattern_clause] = STATE(5666), + [sym_subpattern] = STATE(7245), + [sym_relational_pattern] = STATE(3429), + [sym_negated_pattern] = STATE(3429), + [sym_and_pattern] = STATE(3429), + [sym_or_pattern] = STATE(3429), + [sym_declaration_pattern] = STATE(3429), + [sym_expression] = STATE(5221), + [sym_non_lvalue_expression] = STATE(5613), + [sym_lvalue_expression] = STATE(3535), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(4202), + [sym_postfix_unary_expression] = STATE(4203), + [sym_prefix_unary_expression] = STATE(4203), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6163), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(4202), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(4203), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(4202), + [sym_member_access_expression] = STATE(3112), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(4203), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7496), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_declaration_expression] = STATE(6902), + [sym_default_expression] = STATE(4202), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(4202), + [sym_typeof_expression] = STATE(4202), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(3112), + [sym_literal] = STATE(4202), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2221), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(118), [sym_preproc_endregion] = STATE(118), [sym_preproc_line] = STATE(118), @@ -52952,59 +52838,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(2852), - [aux_sym__parameter_type_with_modifiers_repeat1] = STATE(3489), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [aux_sym__class_declaration_initializer_repeat1] = STATE(2843), + [aux_sym__parameter_type_with_modifiers_repeat1] = STATE(3452), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1049), - [anon_sym_LPAREN] = ACTIONS(1143), - [anon_sym_RPAREN] = ACTIONS(1149), - [anon_sym_ref] = ACTIONS(1099), - [anon_sym_LBRACE] = ACTIONS(1059), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_LPAREN] = ACTIONS(1141), + [anon_sym_RPAREN] = ACTIONS(1143), + [anon_sym_ref] = ACTIONS(1093), + [anon_sym_LBRACE] = ACTIONS(1057), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1101), - [anon_sym_readonly] = ACTIONS(1103), - [anon_sym_LT] = ACTIONS(1063), - [anon_sym_GT] = ACTIONS(1063), - [anon_sym_in] = ACTIONS(1105), - [anon_sym_out] = ACTIONS(1105), + [anon_sym_new] = ACTIONS(1095), + [anon_sym_readonly] = ACTIONS(1097), + [anon_sym_LT] = ACTIONS(1061), + [anon_sym_GT] = ACTIONS(1061), + [anon_sym_in] = ACTIONS(1099), + [anon_sym_out] = ACTIONS(1099), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1067), - [anon_sym_BANG] = ACTIONS(1107), - [anon_sym_TILDE] = ACTIONS(1107), - [anon_sym_PLUS_PLUS] = ACTIONS(1107), - [anon_sym_DASH_DASH] = ACTIONS(1107), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(1101), + [anon_sym_TILDE] = ACTIONS(1101), + [anon_sym_PLUS_PLUS] = ACTIONS(1101), + [anon_sym_DASH_DASH] = ACTIONS(1101), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1109), - [anon_sym_DASH] = ACTIONS(1109), - [anon_sym_STAR] = ACTIONS(1111), - [anon_sym_CARET] = ACTIONS(1107), - [anon_sym_AMP] = ACTIONS(1107), - [anon_sym_GT_EQ] = ACTIONS(1073), - [anon_sym_LT_EQ] = ACTIONS(1073), - [anon_sym_this] = ACTIONS(1113), - [anon_sym_scoped] = ACTIONS(1115), - [anon_sym_params] = ACTIONS(1117), + [anon_sym_PLUS] = ACTIONS(1103), + [anon_sym_DASH] = ACTIONS(1103), + [anon_sym_STAR] = ACTIONS(1105), + [anon_sym_CARET] = ACTIONS(1101), + [anon_sym_AMP] = ACTIONS(1101), + [anon_sym_GT_EQ] = ACTIONS(1071), + [anon_sym_LT_EQ] = ACTIONS(1071), + [anon_sym_this] = ACTIONS(1107), + [anon_sym_scoped] = ACTIONS(1109), + [anon_sym_params] = ACTIONS(1111), [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(1077), + [anon_sym_var] = ACTIONS(1075), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1067), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1119), + [anon_sym_throw] = ACTIONS(1113), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1121), - [sym_discard] = ACTIONS(1083), - [anon_sym_DOT_DOT] = ACTIONS(1125), - [anon_sym_not] = ACTIONS(1127), + [anon_sym_await] = ACTIONS(1115), + [sym_discard] = ACTIONS(1081), + [anon_sym_DOT_DOT] = ACTIONS(1119), + [anon_sym_not] = ACTIONS(1121), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -53029,7 +52915,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(1089), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -53046,104 +52932,104 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [119] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_parameter] = STATE(6948), - [sym__parameter_array] = STATE(6996), - [sym_argument] = STATE(7174), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(5634), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2234), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5059), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_tuple_element] = STATE(7255), - [sym_pattern] = STATE(6647), - [sym_constant_pattern] = STATE(3486), - [sym_parenthesized_pattern] = STATE(3486), - [sym_var_pattern] = STATE(3486), - [sym_type_pattern] = STATE(3486), - [sym_list_pattern] = STATE(3486), - [sym_recursive_pattern] = STATE(3486), - [sym_positional_pattern_clause] = STATE(5175), - [sym_property_pattern_clause] = STATE(5675), - [sym_subpattern] = STATE(7235), - [sym_relational_pattern] = STATE(3486), - [sym_negated_pattern] = STATE(3486), - [sym_and_pattern] = STATE(3486), - [sym_or_pattern] = STATE(3486), - [sym_declaration_pattern] = STATE(3486), - [sym_expression] = STATE(5234), - [sym_non_lvalue_expression] = STATE(5636), - [sym_lvalue_expression] = STATE(3525), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(4216), - [sym_postfix_unary_expression] = STATE(4219), - [sym_prefix_unary_expression] = STATE(4219), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6161), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(4216), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(4219), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(4216), - [sym_member_access_expression] = STATE(3121), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(4219), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7323), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_declaration_expression] = STATE(6803), - [sym_default_expression] = STATE(4216), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(4216), - [sym_typeof_expression] = STATE(4216), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(3121), - [sym_literal] = STATE(4216), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2222), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_parameter] = STATE(6769), + [sym__parameter_array] = STATE(6785), + [sym_argument] = STATE(7116), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(5528), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2224), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5049), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_tuple_element] = STATE(7118), + [sym_pattern] = STATE(6687), + [sym_constant_pattern] = STATE(3429), + [sym_parenthesized_pattern] = STATE(3429), + [sym_var_pattern] = STATE(3429), + [sym_type_pattern] = STATE(3429), + [sym_list_pattern] = STATE(3429), + [sym_recursive_pattern] = STATE(3429), + [sym_positional_pattern_clause] = STATE(5135), + [sym_property_pattern_clause] = STATE(5666), + [sym_subpattern] = STATE(7245), + [sym_relational_pattern] = STATE(3429), + [sym_negated_pattern] = STATE(3429), + [sym_and_pattern] = STATE(3429), + [sym_or_pattern] = STATE(3429), + [sym_declaration_pattern] = STATE(3429), + [sym_expression] = STATE(5221), + [sym_non_lvalue_expression] = STATE(5536), + [sym_lvalue_expression] = STATE(3535), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(4202), + [sym_postfix_unary_expression] = STATE(4203), + [sym_prefix_unary_expression] = STATE(4203), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6163), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(4202), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(4203), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(4202), + [sym_member_access_expression] = STATE(3112), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(4203), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7496), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_declaration_expression] = STATE(6902), + [sym_default_expression] = STATE(4202), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(4202), + [sym_typeof_expression] = STATE(4202), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(3112), + [sym_literal] = STATE(4202), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2221), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(119), [sym_preproc_endregion] = STATE(119), [sym_preproc_line] = STATE(119), @@ -53153,59 +53039,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(2852), - [aux_sym__parameter_type_with_modifiers_repeat1] = STATE(3489), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [aux_sym__class_declaration_initializer_repeat1] = STATE(2843), + [aux_sym__parameter_type_with_modifiers_repeat1] = STATE(3452), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1049), - [anon_sym_LPAREN] = ACTIONS(1143), - [anon_sym_RPAREN] = ACTIONS(1145), - [anon_sym_ref] = ACTIONS(1099), - [anon_sym_LBRACE] = ACTIONS(1059), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_LPAREN] = ACTIONS(1141), + [anon_sym_RPAREN] = ACTIONS(1143), + [anon_sym_ref] = ACTIONS(1093), + [anon_sym_LBRACE] = ACTIONS(1057), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1101), - [anon_sym_readonly] = ACTIONS(1103), - [anon_sym_LT] = ACTIONS(1063), - [anon_sym_GT] = ACTIONS(1063), - [anon_sym_in] = ACTIONS(1105), - [anon_sym_out] = ACTIONS(1105), + [anon_sym_new] = ACTIONS(1095), + [anon_sym_readonly] = ACTIONS(1097), + [anon_sym_LT] = ACTIONS(1061), + [anon_sym_GT] = ACTIONS(1061), + [anon_sym_in] = ACTIONS(1099), + [anon_sym_out] = ACTIONS(1099), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1067), - [anon_sym_BANG] = ACTIONS(1107), - [anon_sym_TILDE] = ACTIONS(1107), - [anon_sym_PLUS_PLUS] = ACTIONS(1107), - [anon_sym_DASH_DASH] = ACTIONS(1107), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(1101), + [anon_sym_TILDE] = ACTIONS(1101), + [anon_sym_PLUS_PLUS] = ACTIONS(1101), + [anon_sym_DASH_DASH] = ACTIONS(1101), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1109), - [anon_sym_DASH] = ACTIONS(1109), - [anon_sym_STAR] = ACTIONS(1111), - [anon_sym_CARET] = ACTIONS(1107), - [anon_sym_AMP] = ACTIONS(1107), - [anon_sym_GT_EQ] = ACTIONS(1073), - [anon_sym_LT_EQ] = ACTIONS(1073), - [anon_sym_this] = ACTIONS(1113), - [anon_sym_scoped] = ACTIONS(1115), - [anon_sym_params] = ACTIONS(1117), + [anon_sym_PLUS] = ACTIONS(1103), + [anon_sym_DASH] = ACTIONS(1103), + [anon_sym_STAR] = ACTIONS(1105), + [anon_sym_CARET] = ACTIONS(1101), + [anon_sym_AMP] = ACTIONS(1101), + [anon_sym_GT_EQ] = ACTIONS(1071), + [anon_sym_LT_EQ] = ACTIONS(1071), + [anon_sym_this] = ACTIONS(1107), + [anon_sym_scoped] = ACTIONS(1109), + [anon_sym_params] = ACTIONS(1111), [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(1077), + [anon_sym_var] = ACTIONS(1075), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1067), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1119), + [anon_sym_throw] = ACTIONS(1113), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1121), - [sym_discard] = ACTIONS(1083), - [anon_sym_DOT_DOT] = ACTIONS(1125), - [anon_sym_not] = ACTIONS(1127), + [anon_sym_await] = ACTIONS(1115), + [sym_discard] = ACTIONS(1081), + [anon_sym_DOT_DOT] = ACTIONS(1119), + [anon_sym_not] = ACTIONS(1121), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -53230,7 +53116,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(1089), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -53247,104 +53133,104 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [120] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_parameter] = STATE(6948), - [sym__parameter_array] = STATE(6996), - [sym_argument] = STATE(7143), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(5634), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2234), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5053), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_tuple_element] = STATE(7255), - [sym_pattern] = STATE(6703), - [sym_constant_pattern] = STATE(3486), - [sym_parenthesized_pattern] = STATE(3486), - [sym_var_pattern] = STATE(3486), - [sym_type_pattern] = STATE(3486), - [sym_list_pattern] = STATE(3486), - [sym_recursive_pattern] = STATE(3486), - [sym_positional_pattern_clause] = STATE(5175), - [sym_property_pattern_clause] = STATE(5675), - [sym_subpattern] = STATE(7235), - [sym_relational_pattern] = STATE(3486), - [sym_negated_pattern] = STATE(3486), - [sym_and_pattern] = STATE(3486), - [sym_or_pattern] = STATE(3486), - [sym_declaration_pattern] = STATE(3486), - [sym_expression] = STATE(5234), - [sym_non_lvalue_expression] = STATE(5661), - [sym_lvalue_expression] = STATE(3525), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(4216), - [sym_postfix_unary_expression] = STATE(4219), - [sym_prefix_unary_expression] = STATE(4219), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6161), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(4216), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(4219), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(4216), - [sym_member_access_expression] = STATE(3121), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(4219), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7323), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_declaration_expression] = STATE(6803), - [sym_default_expression] = STATE(4216), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(4216), - [sym_typeof_expression] = STATE(4216), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(3121), - [sym_literal] = STATE(4216), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2222), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_parameter] = STATE(6769), + [sym__parameter_array] = STATE(6785), + [sym_argument] = STATE(7116), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(5528), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2224), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(4883), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_tuple_element] = STATE(7118), + [sym_pattern] = STATE(6687), + [sym_constant_pattern] = STATE(3429), + [sym_parenthesized_pattern] = STATE(3429), + [sym_var_pattern] = STATE(3429), + [sym_type_pattern] = STATE(3429), + [sym_list_pattern] = STATE(3429), + [sym_recursive_pattern] = STATE(3429), + [sym_positional_pattern_clause] = STATE(5135), + [sym_property_pattern_clause] = STATE(5666), + [sym_subpattern] = STATE(7245), + [sym_relational_pattern] = STATE(3429), + [sym_negated_pattern] = STATE(3429), + [sym_and_pattern] = STATE(3429), + [sym_or_pattern] = STATE(3429), + [sym_declaration_pattern] = STATE(3429), + [sym_expression] = STATE(5221), + [sym_non_lvalue_expression] = STATE(5536), + [sym_lvalue_expression] = STATE(3535), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(4202), + [sym_postfix_unary_expression] = STATE(4203), + [sym_prefix_unary_expression] = STATE(4203), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6163), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(4202), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(4203), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(4202), + [sym_member_access_expression] = STATE(3112), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(4203), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7496), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_declaration_expression] = STATE(6902), + [sym_default_expression] = STATE(4202), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(4202), + [sym_typeof_expression] = STATE(4202), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(3112), + [sym_literal] = STATE(4202), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2221), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(120), [sym_preproc_endregion] = STATE(120), [sym_preproc_line] = STATE(120), @@ -53354,59 +53240,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(2852), - [aux_sym__parameter_type_with_modifiers_repeat1] = STATE(3489), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [aux_sym__class_declaration_initializer_repeat1] = STATE(2843), + [aux_sym__parameter_type_with_modifiers_repeat1] = STATE(3452), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1049), - [anon_sym_LPAREN] = ACTIONS(1143), - [anon_sym_RPAREN] = ACTIONS(1145), - [anon_sym_ref] = ACTIONS(1099), - [anon_sym_LBRACE] = ACTIONS(1059), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_LPAREN] = ACTIONS(1141), + [anon_sym_RPAREN] = ACTIONS(1143), + [anon_sym_ref] = ACTIONS(1093), + [anon_sym_LBRACE] = ACTIONS(1057), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1101), - [anon_sym_readonly] = ACTIONS(1103), - [anon_sym_LT] = ACTIONS(1063), - [anon_sym_GT] = ACTIONS(1063), - [anon_sym_in] = ACTIONS(1105), - [anon_sym_out] = ACTIONS(1105), + [anon_sym_new] = ACTIONS(1095), + [anon_sym_readonly] = ACTIONS(1097), + [anon_sym_LT] = ACTIONS(1061), + [anon_sym_GT] = ACTIONS(1061), + [anon_sym_in] = ACTIONS(1099), + [anon_sym_out] = ACTIONS(1099), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1067), - [anon_sym_BANG] = ACTIONS(1107), - [anon_sym_TILDE] = ACTIONS(1107), - [anon_sym_PLUS_PLUS] = ACTIONS(1107), - [anon_sym_DASH_DASH] = ACTIONS(1107), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(1101), + [anon_sym_TILDE] = ACTIONS(1101), + [anon_sym_PLUS_PLUS] = ACTIONS(1101), + [anon_sym_DASH_DASH] = ACTIONS(1101), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1109), - [anon_sym_DASH] = ACTIONS(1109), - [anon_sym_STAR] = ACTIONS(1111), - [anon_sym_CARET] = ACTIONS(1107), - [anon_sym_AMP] = ACTIONS(1107), - [anon_sym_GT_EQ] = ACTIONS(1073), - [anon_sym_LT_EQ] = ACTIONS(1073), - [anon_sym_this] = ACTIONS(1113), - [anon_sym_scoped] = ACTIONS(1115), - [anon_sym_params] = ACTIONS(1117), + [anon_sym_PLUS] = ACTIONS(1103), + [anon_sym_DASH] = ACTIONS(1103), + [anon_sym_STAR] = ACTIONS(1105), + [anon_sym_CARET] = ACTIONS(1101), + [anon_sym_AMP] = ACTIONS(1101), + [anon_sym_GT_EQ] = ACTIONS(1071), + [anon_sym_LT_EQ] = ACTIONS(1071), + [anon_sym_this] = ACTIONS(1107), + [anon_sym_scoped] = ACTIONS(1109), + [anon_sym_params] = ACTIONS(1111), [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(1077), + [anon_sym_var] = ACTIONS(1075), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1067), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1119), + [anon_sym_throw] = ACTIONS(1113), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1121), - [sym_discard] = ACTIONS(1083), - [anon_sym_DOT_DOT] = ACTIONS(1125), - [anon_sym_not] = ACTIONS(1127), + [anon_sym_await] = ACTIONS(1115), + [sym_discard] = ACTIONS(1081), + [anon_sym_DOT_DOT] = ACTIONS(1119), + [anon_sym_not] = ACTIONS(1121), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -53431,7 +53317,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(1089), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -53448,104 +53334,104 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [121] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_parameter] = STATE(6948), - [sym__parameter_array] = STATE(6996), - [sym_argument] = STATE(7247), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(5634), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2234), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(4923), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_tuple_element] = STATE(7255), - [sym_pattern] = STATE(6677), - [sym_constant_pattern] = STATE(3486), - [sym_parenthesized_pattern] = STATE(3486), - [sym_var_pattern] = STATE(3486), - [sym_type_pattern] = STATE(3486), - [sym_list_pattern] = STATE(3486), - [sym_recursive_pattern] = STATE(3486), - [sym_positional_pattern_clause] = STATE(5175), - [sym_property_pattern_clause] = STATE(5675), - [sym_subpattern] = STATE(7235), - [sym_relational_pattern] = STATE(3486), - [sym_negated_pattern] = STATE(3486), - [sym_and_pattern] = STATE(3486), - [sym_or_pattern] = STATE(3486), - [sym_declaration_pattern] = STATE(3486), - [sym_expression] = STATE(5234), - [sym_non_lvalue_expression] = STATE(5597), - [sym_lvalue_expression] = STATE(3525), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(4216), - [sym_postfix_unary_expression] = STATE(4219), - [sym_prefix_unary_expression] = STATE(4219), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6161), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(4216), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(4219), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(4216), - [sym_member_access_expression] = STATE(3121), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(4219), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7323), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_declaration_expression] = STATE(6803), - [sym_default_expression] = STATE(4216), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(4216), - [sym_typeof_expression] = STATE(4216), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(3121), - [sym_literal] = STATE(4216), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2222), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_parameter] = STATE(6769), + [sym__parameter_array] = STATE(6785), + [sym_argument] = STATE(7244), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(5528), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2224), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(4926), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_tuple_element] = STATE(7118), + [sym_pattern] = STATE(6688), + [sym_constant_pattern] = STATE(3429), + [sym_parenthesized_pattern] = STATE(3429), + [sym_var_pattern] = STATE(3429), + [sym_type_pattern] = STATE(3429), + [sym_list_pattern] = STATE(3429), + [sym_recursive_pattern] = STATE(3429), + [sym_positional_pattern_clause] = STATE(5135), + [sym_property_pattern_clause] = STATE(5666), + [sym_subpattern] = STATE(7245), + [sym_relational_pattern] = STATE(3429), + [sym_negated_pattern] = STATE(3429), + [sym_and_pattern] = STATE(3429), + [sym_or_pattern] = STATE(3429), + [sym_declaration_pattern] = STATE(3429), + [sym_expression] = STATE(5221), + [sym_non_lvalue_expression] = STATE(5543), + [sym_lvalue_expression] = STATE(3535), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(4202), + [sym_postfix_unary_expression] = STATE(4203), + [sym_prefix_unary_expression] = STATE(4203), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6163), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(4202), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(4203), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(4202), + [sym_member_access_expression] = STATE(3112), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(4203), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7496), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_declaration_expression] = STATE(6902), + [sym_default_expression] = STATE(4202), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(4202), + [sym_typeof_expression] = STATE(4202), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(3112), + [sym_literal] = STATE(4202), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2221), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(121), [sym_preproc_endregion] = STATE(121), [sym_preproc_line] = STATE(121), @@ -53555,59 +53441,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(2852), - [aux_sym__parameter_type_with_modifiers_repeat1] = STATE(3489), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [aux_sym__class_declaration_initializer_repeat1] = STATE(2843), + [aux_sym__parameter_type_with_modifiers_repeat1] = STATE(3452), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1049), - [anon_sym_LPAREN] = ACTIONS(1143), - [anon_sym_RPAREN] = ACTIONS(1145), - [anon_sym_ref] = ACTIONS(1099), - [anon_sym_LBRACE] = ACTIONS(1059), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_LPAREN] = ACTIONS(1141), + [anon_sym_RPAREN] = ACTIONS(1143), + [anon_sym_ref] = ACTIONS(1093), + [anon_sym_LBRACE] = ACTIONS(1057), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1101), - [anon_sym_readonly] = ACTIONS(1103), - [anon_sym_LT] = ACTIONS(1063), - [anon_sym_GT] = ACTIONS(1063), - [anon_sym_in] = ACTIONS(1105), - [anon_sym_out] = ACTIONS(1105), + [anon_sym_new] = ACTIONS(1095), + [anon_sym_readonly] = ACTIONS(1097), + [anon_sym_LT] = ACTIONS(1061), + [anon_sym_GT] = ACTIONS(1061), + [anon_sym_in] = ACTIONS(1099), + [anon_sym_out] = ACTIONS(1099), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1067), - [anon_sym_BANG] = ACTIONS(1107), - [anon_sym_TILDE] = ACTIONS(1107), - [anon_sym_PLUS_PLUS] = ACTIONS(1107), - [anon_sym_DASH_DASH] = ACTIONS(1107), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(1101), + [anon_sym_TILDE] = ACTIONS(1101), + [anon_sym_PLUS_PLUS] = ACTIONS(1101), + [anon_sym_DASH_DASH] = ACTIONS(1101), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1109), - [anon_sym_DASH] = ACTIONS(1109), - [anon_sym_STAR] = ACTIONS(1111), - [anon_sym_CARET] = ACTIONS(1107), - [anon_sym_AMP] = ACTIONS(1107), - [anon_sym_GT_EQ] = ACTIONS(1073), - [anon_sym_LT_EQ] = ACTIONS(1073), - [anon_sym_this] = ACTIONS(1113), - [anon_sym_scoped] = ACTIONS(1115), - [anon_sym_params] = ACTIONS(1117), + [anon_sym_PLUS] = ACTIONS(1103), + [anon_sym_DASH] = ACTIONS(1103), + [anon_sym_STAR] = ACTIONS(1105), + [anon_sym_CARET] = ACTIONS(1101), + [anon_sym_AMP] = ACTIONS(1101), + [anon_sym_GT_EQ] = ACTIONS(1071), + [anon_sym_LT_EQ] = ACTIONS(1071), + [anon_sym_this] = ACTIONS(1107), + [anon_sym_scoped] = ACTIONS(1109), + [anon_sym_params] = ACTIONS(1111), [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(1077), + [anon_sym_var] = ACTIONS(1075), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1067), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1119), + [anon_sym_throw] = ACTIONS(1113), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1121), - [sym_discard] = ACTIONS(1083), - [anon_sym_DOT_DOT] = ACTIONS(1125), - [anon_sym_not] = ACTIONS(1127), + [anon_sym_await] = ACTIONS(1115), + [sym_discard] = ACTIONS(1081), + [anon_sym_DOT_DOT] = ACTIONS(1119), + [anon_sym_not] = ACTIONS(1121), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -53632,7 +53518,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(1089), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -53649,104 +53535,104 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [122] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_parameter] = STATE(6948), - [sym__parameter_array] = STATE(6996), - [sym_argument] = STATE(7174), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(5634), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2234), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5046), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_tuple_element] = STATE(7255), - [sym_pattern] = STATE(6647), - [sym_constant_pattern] = STATE(3486), - [sym_parenthesized_pattern] = STATE(3486), - [sym_var_pattern] = STATE(3486), - [sym_type_pattern] = STATE(3486), - [sym_list_pattern] = STATE(3486), - [sym_recursive_pattern] = STATE(3486), - [sym_positional_pattern_clause] = STATE(5175), - [sym_property_pattern_clause] = STATE(5675), - [sym_subpattern] = STATE(7235), - [sym_relational_pattern] = STATE(3486), - [sym_negated_pattern] = STATE(3486), - [sym_and_pattern] = STATE(3486), - [sym_or_pattern] = STATE(3486), - [sym_declaration_pattern] = STATE(3486), - [sym_expression] = STATE(5234), - [sym_non_lvalue_expression] = STATE(5636), - [sym_lvalue_expression] = STATE(3525), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(4216), - [sym_postfix_unary_expression] = STATE(4219), - [sym_prefix_unary_expression] = STATE(4219), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6161), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(4216), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(4219), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(4216), - [sym_member_access_expression] = STATE(3121), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(4219), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7323), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_declaration_expression] = STATE(6803), - [sym_default_expression] = STATE(4216), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(4216), - [sym_typeof_expression] = STATE(4216), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(3121), - [sym_literal] = STATE(4216), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2222), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_parameter] = STATE(6769), + [sym__parameter_array] = STATE(6785), + [sym_argument] = STATE(7133), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(5528), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2224), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(4890), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_tuple_element] = STATE(7166), + [sym_pattern] = STATE(6680), + [sym_constant_pattern] = STATE(3429), + [sym_parenthesized_pattern] = STATE(3429), + [sym_var_pattern] = STATE(3429), + [sym_type_pattern] = STATE(3429), + [sym_list_pattern] = STATE(3429), + [sym_recursive_pattern] = STATE(3429), + [sym_positional_pattern_clause] = STATE(5135), + [sym_property_pattern_clause] = STATE(5666), + [sym_subpattern] = STATE(7245), + [sym_relational_pattern] = STATE(3429), + [sym_negated_pattern] = STATE(3429), + [sym_and_pattern] = STATE(3429), + [sym_or_pattern] = STATE(3429), + [sym_declaration_pattern] = STATE(3429), + [sym_expression] = STATE(5221), + [sym_non_lvalue_expression] = STATE(5315), + [sym_lvalue_expression] = STATE(3535), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(4202), + [sym_postfix_unary_expression] = STATE(4203), + [sym_prefix_unary_expression] = STATE(4203), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6163), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(4202), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(4203), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(4202), + [sym_member_access_expression] = STATE(3112), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(4203), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7496), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_declaration_expression] = STATE(6902), + [sym_default_expression] = STATE(4202), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(4202), + [sym_typeof_expression] = STATE(4202), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(3112), + [sym_literal] = STATE(4202), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2221), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(122), [sym_preproc_endregion] = STATE(122), [sym_preproc_line] = STATE(122), @@ -53756,59 +53642,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(2852), - [aux_sym__parameter_type_with_modifiers_repeat1] = STATE(3489), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [aux_sym__class_declaration_initializer_repeat1] = STATE(2843), + [aux_sym__parameter_type_with_modifiers_repeat1] = STATE(3452), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1049), - [anon_sym_LPAREN] = ACTIONS(1143), - [anon_sym_RPAREN] = ACTIONS(1145), - [anon_sym_ref] = ACTIONS(1099), - [anon_sym_LBRACE] = ACTIONS(1059), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_LPAREN] = ACTIONS(1141), + [anon_sym_RPAREN] = ACTIONS(1217), + [anon_sym_ref] = ACTIONS(1093), + [anon_sym_LBRACE] = ACTIONS(1057), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1101), - [anon_sym_readonly] = ACTIONS(1103), - [anon_sym_LT] = ACTIONS(1063), - [anon_sym_GT] = ACTIONS(1063), - [anon_sym_in] = ACTIONS(1105), - [anon_sym_out] = ACTIONS(1105), + [anon_sym_new] = ACTIONS(1095), + [anon_sym_readonly] = ACTIONS(1097), + [anon_sym_LT] = ACTIONS(1061), + [anon_sym_GT] = ACTIONS(1061), + [anon_sym_in] = ACTIONS(1099), + [anon_sym_out] = ACTIONS(1099), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1067), - [anon_sym_BANG] = ACTIONS(1107), - [anon_sym_TILDE] = ACTIONS(1107), - [anon_sym_PLUS_PLUS] = ACTIONS(1107), - [anon_sym_DASH_DASH] = ACTIONS(1107), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(1101), + [anon_sym_TILDE] = ACTIONS(1101), + [anon_sym_PLUS_PLUS] = ACTIONS(1101), + [anon_sym_DASH_DASH] = ACTIONS(1101), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1109), - [anon_sym_DASH] = ACTIONS(1109), - [anon_sym_STAR] = ACTIONS(1111), - [anon_sym_CARET] = ACTIONS(1107), - [anon_sym_AMP] = ACTIONS(1107), - [anon_sym_GT_EQ] = ACTIONS(1073), - [anon_sym_LT_EQ] = ACTIONS(1073), - [anon_sym_this] = ACTIONS(1113), - [anon_sym_scoped] = ACTIONS(1115), - [anon_sym_params] = ACTIONS(1117), + [anon_sym_PLUS] = ACTIONS(1103), + [anon_sym_DASH] = ACTIONS(1103), + [anon_sym_STAR] = ACTIONS(1105), + [anon_sym_CARET] = ACTIONS(1101), + [anon_sym_AMP] = ACTIONS(1101), + [anon_sym_GT_EQ] = ACTIONS(1071), + [anon_sym_LT_EQ] = ACTIONS(1071), + [anon_sym_this] = ACTIONS(1107), + [anon_sym_scoped] = ACTIONS(1109), + [anon_sym_params] = ACTIONS(1111), [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(1077), + [anon_sym_var] = ACTIONS(1075), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1067), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1119), + [anon_sym_throw] = ACTIONS(1113), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1121), - [sym_discard] = ACTIONS(1083), - [anon_sym_DOT_DOT] = ACTIONS(1125), - [anon_sym_not] = ACTIONS(1127), + [anon_sym_await] = ACTIONS(1115), + [sym_discard] = ACTIONS(1081), + [anon_sym_DOT_DOT] = ACTIONS(1119), + [anon_sym_not] = ACTIONS(1121), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -53833,7 +53719,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(1089), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -53850,104 +53736,104 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [123] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_parameter] = STATE(6948), - [sym__parameter_array] = STATE(6996), - [sym_argument] = STATE(7143), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(5634), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2234), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5029), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_tuple_element] = STATE(7255), - [sym_pattern] = STATE(6703), - [sym_constant_pattern] = STATE(3486), - [sym_parenthesized_pattern] = STATE(3486), - [sym_var_pattern] = STATE(3486), - [sym_type_pattern] = STATE(3486), - [sym_list_pattern] = STATE(3486), - [sym_recursive_pattern] = STATE(3486), - [sym_positional_pattern_clause] = STATE(5175), - [sym_property_pattern_clause] = STATE(5675), - [sym_subpattern] = STATE(7235), - [sym_relational_pattern] = STATE(3486), - [sym_negated_pattern] = STATE(3486), - [sym_and_pattern] = STATE(3486), - [sym_or_pattern] = STATE(3486), - [sym_declaration_pattern] = STATE(3486), - [sym_expression] = STATE(5234), - [sym_non_lvalue_expression] = STATE(5661), - [sym_lvalue_expression] = STATE(3525), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(4216), - [sym_postfix_unary_expression] = STATE(4219), - [sym_prefix_unary_expression] = STATE(4219), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6161), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(4216), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(4219), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(4216), - [sym_member_access_expression] = STATE(3121), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(4219), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7323), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_declaration_expression] = STATE(6803), - [sym_default_expression] = STATE(4216), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(4216), - [sym_typeof_expression] = STATE(4216), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(3121), - [sym_literal] = STATE(4216), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2222), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_parameter] = STATE(6769), + [sym__parameter_array] = STATE(6785), + [sym_argument] = STATE(7244), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(5528), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2224), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5004), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_tuple_element] = STATE(7118), + [sym_pattern] = STATE(6688), + [sym_constant_pattern] = STATE(3429), + [sym_parenthesized_pattern] = STATE(3429), + [sym_var_pattern] = STATE(3429), + [sym_type_pattern] = STATE(3429), + [sym_list_pattern] = STATE(3429), + [sym_recursive_pattern] = STATE(3429), + [sym_positional_pattern_clause] = STATE(5135), + [sym_property_pattern_clause] = STATE(5666), + [sym_subpattern] = STATE(7245), + [sym_relational_pattern] = STATE(3429), + [sym_negated_pattern] = STATE(3429), + [sym_and_pattern] = STATE(3429), + [sym_or_pattern] = STATE(3429), + [sym_declaration_pattern] = STATE(3429), + [sym_expression] = STATE(5221), + [sym_non_lvalue_expression] = STATE(5543), + [sym_lvalue_expression] = STATE(3535), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(4202), + [sym_postfix_unary_expression] = STATE(4203), + [sym_prefix_unary_expression] = STATE(4203), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6163), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(4202), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(4203), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(4202), + [sym_member_access_expression] = STATE(3112), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(4203), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7496), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_declaration_expression] = STATE(6902), + [sym_default_expression] = STATE(4202), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(4202), + [sym_typeof_expression] = STATE(4202), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(3112), + [sym_literal] = STATE(4202), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2221), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(123), [sym_preproc_endregion] = STATE(123), [sym_preproc_line] = STATE(123), @@ -53957,59 +53843,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(2852), - [aux_sym__parameter_type_with_modifiers_repeat1] = STATE(3489), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [aux_sym__class_declaration_initializer_repeat1] = STATE(2843), + [aux_sym__parameter_type_with_modifiers_repeat1] = STATE(3452), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1049), - [anon_sym_LPAREN] = ACTIONS(1143), - [anon_sym_RPAREN] = ACTIONS(1145), - [anon_sym_ref] = ACTIONS(1099), - [anon_sym_LBRACE] = ACTIONS(1059), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_LPAREN] = ACTIONS(1141), + [anon_sym_RPAREN] = ACTIONS(1217), + [anon_sym_ref] = ACTIONS(1093), + [anon_sym_LBRACE] = ACTIONS(1057), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1101), - [anon_sym_readonly] = ACTIONS(1103), - [anon_sym_LT] = ACTIONS(1063), - [anon_sym_GT] = ACTIONS(1063), - [anon_sym_in] = ACTIONS(1105), - [anon_sym_out] = ACTIONS(1105), + [anon_sym_new] = ACTIONS(1095), + [anon_sym_readonly] = ACTIONS(1097), + [anon_sym_LT] = ACTIONS(1061), + [anon_sym_GT] = ACTIONS(1061), + [anon_sym_in] = ACTIONS(1099), + [anon_sym_out] = ACTIONS(1099), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1067), - [anon_sym_BANG] = ACTIONS(1107), - [anon_sym_TILDE] = ACTIONS(1107), - [anon_sym_PLUS_PLUS] = ACTIONS(1107), - [anon_sym_DASH_DASH] = ACTIONS(1107), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(1101), + [anon_sym_TILDE] = ACTIONS(1101), + [anon_sym_PLUS_PLUS] = ACTIONS(1101), + [anon_sym_DASH_DASH] = ACTIONS(1101), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1109), - [anon_sym_DASH] = ACTIONS(1109), - [anon_sym_STAR] = ACTIONS(1111), - [anon_sym_CARET] = ACTIONS(1107), - [anon_sym_AMP] = ACTIONS(1107), - [anon_sym_GT_EQ] = ACTIONS(1073), - [anon_sym_LT_EQ] = ACTIONS(1073), - [anon_sym_this] = ACTIONS(1113), - [anon_sym_scoped] = ACTIONS(1115), - [anon_sym_params] = ACTIONS(1117), + [anon_sym_PLUS] = ACTIONS(1103), + [anon_sym_DASH] = ACTIONS(1103), + [anon_sym_STAR] = ACTIONS(1105), + [anon_sym_CARET] = ACTIONS(1101), + [anon_sym_AMP] = ACTIONS(1101), + [anon_sym_GT_EQ] = ACTIONS(1071), + [anon_sym_LT_EQ] = ACTIONS(1071), + [anon_sym_this] = ACTIONS(1107), + [anon_sym_scoped] = ACTIONS(1109), + [anon_sym_params] = ACTIONS(1111), [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(1077), + [anon_sym_var] = ACTIONS(1075), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1067), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1119), + [anon_sym_throw] = ACTIONS(1113), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1121), - [sym_discard] = ACTIONS(1083), - [anon_sym_DOT_DOT] = ACTIONS(1125), - [anon_sym_not] = ACTIONS(1127), + [anon_sym_await] = ACTIONS(1115), + [sym_discard] = ACTIONS(1081), + [anon_sym_DOT_DOT] = ACTIONS(1119), + [anon_sym_not] = ACTIONS(1121), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -54034,7 +53920,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(1089), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -54051,84 +53937,104 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [124] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2610), - [sym__name] = STATE(5898), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2197), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(3828), - [sym_non_lvalue_expression] = STATE(3277), - [sym_lvalue_expression] = STATE(3023), - [sym__expression_statement_expression] = STATE(3228), - [sym_assignment_expression] = STATE(3289), - [sym_binary_expression] = STATE(3228), - [sym_postfix_unary_expression] = STATE(3289), - [sym_prefix_unary_expression] = STATE(3289), - [sym__pointer_indirection_expression] = STATE(2609), - [sym_query_expression] = STATE(3228), - [sym_from_clause] = STATE(6172), - [sym_conditional_expression] = STATE(3228), - [sym_conditional_access_expression] = STATE(3228), - [sym_as_expression] = STATE(3228), - [sym_is_expression] = STATE(3228), - [sym_is_pattern_expression] = STATE(3228), - [sym_cast_expression] = STATE(3228), - [sym_checked_expression] = STATE(3228), - [sym_invocation_expression] = STATE(3289), - [sym_switch_expression] = STATE(3228), - [sym_await_expression] = STATE(3289), - [sym_throw_expression] = STATE(3228), - [sym_element_access_expression] = STATE(2609), - [sym_interpolated_string_expression] = STATE(3228), - [sym_member_access_expression] = STATE(2609), - [sym_object_creation_expression] = STATE(3289), - [sym_parenthesized_expression] = STATE(3289), - [sym__parenthesized_lvalue_expression] = STATE(2609), - [sym_lambda_expression] = STATE(3228), - [sym__lambda_expression_init] = STATE(7653), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3228), - [sym_anonymous_method_expression] = STATE(3228), - [sym_anonymous_object_creation_expression] = STATE(3228), - [sym_implicit_array_creation_expression] = STATE(3228), - [sym_implicit_object_creation_expression] = STATE(3228), - [sym_implicit_stackalloc_expression] = STATE(3228), - [sym_initializer_expression] = STATE(3228), - [sym_default_expression] = STATE(3228), - [sym_with_expression] = STATE(3228), - [sym_sizeof_expression] = STATE(3228), - [sym_typeof_expression] = STATE(3228), - [sym_makeref_expression] = STATE(3228), - [sym_ref_expression] = STATE(3228), - [sym_reftype_expression] = STATE(3228), - [sym_refvalue_expression] = STATE(3228), - [sym_stackalloc_expression] = STATE(3228), - [sym_range_expression] = STATE(3228), - [sym_tuple_expression] = STATE(2609), - [sym_literal] = STATE(3228), - [sym_character_literal] = STATE(3278), - [sym_string_literal] = STATE(3278), - [sym_raw_string_literal] = STATE(3278), - [sym_boolean_literal] = STATE(3278), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3228), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_parameter] = STATE(6769), + [sym__parameter_array] = STATE(6785), + [sym_argument] = STATE(7244), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(5528), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2224), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5009), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_tuple_element] = STATE(7118), + [sym_pattern] = STATE(6688), + [sym_constant_pattern] = STATE(3429), + [sym_parenthesized_pattern] = STATE(3429), + [sym_var_pattern] = STATE(3429), + [sym_type_pattern] = STATE(3429), + [sym_list_pattern] = STATE(3429), + [sym_recursive_pattern] = STATE(3429), + [sym_positional_pattern_clause] = STATE(5135), + [sym_property_pattern_clause] = STATE(5666), + [sym_subpattern] = STATE(7245), + [sym_relational_pattern] = STATE(3429), + [sym_negated_pattern] = STATE(3429), + [sym_and_pattern] = STATE(3429), + [sym_or_pattern] = STATE(3429), + [sym_declaration_pattern] = STATE(3429), + [sym_expression] = STATE(5221), + [sym_non_lvalue_expression] = STATE(5543), + [sym_lvalue_expression] = STATE(3535), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(4202), + [sym_postfix_unary_expression] = STATE(4203), + [sym_prefix_unary_expression] = STATE(4203), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6163), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(4202), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(4203), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(4202), + [sym_member_access_expression] = STATE(3112), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(4203), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7496), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_declaration_expression] = STATE(6902), + [sym_default_expression] = STATE(4202), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(4202), + [sym_typeof_expression] = STATE(4202), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(3112), + [sym_literal] = STATE(4202), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2221), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(124), [sym_preproc_endregion] = STATE(124), [sym_preproc_line] = STATE(124), @@ -54138,72 +54044,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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3396), + [aux_sym__class_declaration_initializer_repeat1] = STATE(2843), + [aux_sym__parameter_type_with_modifiers_repeat1] = STATE(3452), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), - [anon_sym_SEMI] = ACTIONS(1151), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1153), - [anon_sym_COMMA] = ACTIONS(1151), - [anon_sym_RBRACK] = ACTIONS(1151), - [anon_sym_LPAREN] = ACTIONS(1155), - [anon_sym_RPAREN] = ACTIONS(1151), - [anon_sym_ref] = ACTIONS(1157), - [anon_sym_LBRACE] = ACTIONS(1159), - [anon_sym_RBRACE] = ACTIONS(1151), - [anon_sym_delegate] = ACTIONS(1161), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_LPAREN] = ACTIONS(1141), + [anon_sym_RPAREN] = ACTIONS(1143), + [anon_sym_ref] = ACTIONS(1093), + [anon_sym_LBRACE] = ACTIONS(1057), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1163), - [anon_sym_LT] = ACTIONS(1165), - [anon_sym_GT] = ACTIONS(1165), + [anon_sym_new] = ACTIONS(1095), + [anon_sym_readonly] = ACTIONS(1097), + [anon_sym_LT] = ACTIONS(1061), + [anon_sym_GT] = ACTIONS(1061), + [anon_sym_in] = ACTIONS(1099), + [anon_sym_out] = ACTIONS(1099), [anon_sym_where] = ACTIONS(29), - [anon_sym_QMARK] = ACTIONS(1165), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1167), - [anon_sym_BANG] = ACTIONS(1169), - [anon_sym_TILDE] = ACTIONS(1171), - [anon_sym_PLUS_PLUS] = ACTIONS(1171), - [anon_sym_DASH_DASH] = ACTIONS(1171), - [anon_sym_true] = ACTIONS(1173), - [anon_sym_false] = ACTIONS(1173), - [anon_sym_PLUS] = ACTIONS(1169), - [anon_sym_DASH] = ACTIONS(1169), - [anon_sym_STAR] = ACTIONS(1175), - [anon_sym_SLASH] = ACTIONS(1165), - [anon_sym_PERCENT] = ACTIONS(1151), - [anon_sym_CARET] = ACTIONS(1171), - [anon_sym_PIPE] = ACTIONS(1165), - [anon_sym_AMP] = ACTIONS(1169), - [anon_sym_LT_LT] = ACTIONS(1151), - [anon_sym_GT_GT] = ACTIONS(1165), - [anon_sym_GT_GT_GT] = ACTIONS(1151), - [anon_sym_EQ_EQ] = ACTIONS(1151), - [anon_sym_BANG_EQ] = ACTIONS(1151), - [anon_sym_GT_EQ] = ACTIONS(1151), - [anon_sym_LT_EQ] = ACTIONS(1151), - [anon_sym_this] = ACTIONS(1177), - [anon_sym_DOT] = ACTIONS(1165), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1179), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1181), - [anon_sym_unchecked] = ACTIONS(1167), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(1101), + [anon_sym_TILDE] = ACTIONS(1101), + [anon_sym_PLUS_PLUS] = ACTIONS(1101), + [anon_sym_DASH_DASH] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(77), + [anon_sym_false] = ACTIONS(77), + [anon_sym_PLUS] = ACTIONS(1103), + [anon_sym_DASH] = ACTIONS(1103), + [anon_sym_STAR] = ACTIONS(1105), + [anon_sym_CARET] = ACTIONS(1101), + [anon_sym_AMP] = ACTIONS(1101), + [anon_sym_GT_EQ] = ACTIONS(1071), + [anon_sym_LT_EQ] = ACTIONS(1071), + [anon_sym_this] = ACTIONS(1107), + [anon_sym_scoped] = ACTIONS(1109), + [anon_sym_params] = ACTIONS(1111), + [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(1165), - [anon_sym_default] = ACTIONS(1183), - [anon_sym_throw] = ACTIONS(1185), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(1113), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1187), - [anon_sym_DOT_DOT] = ACTIONS(1189), - [anon_sym_and] = ACTIONS(1165), - [anon_sym_or] = ACTIONS(1165), - [anon_sym_AMP_AMP] = ACTIONS(1151), - [anon_sym_PIPE_PIPE] = ACTIONS(1151), - [anon_sym_QMARK_QMARK] = ACTIONS(1151), + [anon_sym_await] = ACTIONS(1115), + [sym_discard] = ACTIONS(1081), + [anon_sym_DOT_DOT] = ACTIONS(1119), + [anon_sym_not] = ACTIONS(1121), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -54216,26 +54109,19 @@ static const uint16_t ts_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(1165), - [anon_sym_is] = ACTIONS(1165), - [anon_sym_DASH_GT] = ACTIONS(1151), - [anon_sym_stackalloc] = ACTIONS(1191), - [anon_sym_with] = ACTIONS(1165), - [anon_sym_sizeof] = ACTIONS(1193), - [anon_sym_typeof] = ACTIONS(1195), - [anon_sym___makeref] = ACTIONS(1197), - [anon_sym___reftype] = ACTIONS(1199), - [anon_sym___refvalue] = ACTIONS(1201), - [sym_null_literal] = ACTIONS(1203), - [anon_sym_SQUOTE] = ACTIONS(1205), - [sym_integer_literal] = ACTIONS(1203), - [sym_real_literal] = ACTIONS(1207), - [anon_sym_DQUOTE] = ACTIONS(1209), - [sym_verbatim_string_literal] = ACTIONS(1207), - [aux_sym_preproc_if_token1] = ACTIONS(1211), - [aux_sym_preproc_if_token3] = ACTIONS(1151), - [aux_sym_preproc_else_token1] = ACTIONS(1151), - [aux_sym_preproc_elif_token1] = ACTIONS(1151), + [anon_sym_stackalloc] = ACTIONS(127), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_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), @@ -54246,110 +54132,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(1213), - [sym_interpolation_verbatim_start] = ACTIONS(1215), - [sym_interpolation_raw_start] = ACTIONS(1217), - [sym_raw_string_start] = ACTIONS(1219), + [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(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_parameter] = STATE(6948), - [sym__parameter_array] = STATE(6996), - [sym_argument] = STATE(7189), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(5634), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2234), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(4870), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_tuple_element] = STATE(7094), - [sym_pattern] = STATE(6706), - [sym_constant_pattern] = STATE(3486), - [sym_parenthesized_pattern] = STATE(3486), - [sym_var_pattern] = STATE(3486), - [sym_type_pattern] = STATE(3486), - [sym_list_pattern] = STATE(3486), - [sym_recursive_pattern] = STATE(3486), - [sym_positional_pattern_clause] = STATE(5175), - [sym_property_pattern_clause] = STATE(5675), - [sym_subpattern] = STATE(7049), - [sym_relational_pattern] = STATE(3486), - [sym_negated_pattern] = STATE(3486), - [sym_and_pattern] = STATE(3486), - [sym_or_pattern] = STATE(3486), - [sym_declaration_pattern] = STATE(3486), - [sym_expression] = STATE(5234), - [sym_non_lvalue_expression] = STATE(5560), - [sym_lvalue_expression] = STATE(3525), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(4216), - [sym_postfix_unary_expression] = STATE(4219), - [sym_prefix_unary_expression] = STATE(4219), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6161), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(4216), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(4219), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(4216), - [sym_member_access_expression] = STATE(3121), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(4219), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7323), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_declaration_expression] = STATE(6803), - [sym_default_expression] = STATE(4216), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(4216), - [sym_typeof_expression] = STATE(4216), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(3121), - [sym_literal] = STATE(4216), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2222), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_parameter] = STATE(6769), + [sym__parameter_array] = STATE(6785), + [sym_argument] = STATE(7244), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(5528), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2224), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5013), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_tuple_element] = STATE(7118), + [sym_pattern] = STATE(6688), + [sym_constant_pattern] = STATE(3429), + [sym_parenthesized_pattern] = STATE(3429), + [sym_var_pattern] = STATE(3429), + [sym_type_pattern] = STATE(3429), + [sym_list_pattern] = STATE(3429), + [sym_recursive_pattern] = STATE(3429), + [sym_positional_pattern_clause] = STATE(5135), + [sym_property_pattern_clause] = STATE(5666), + [sym_subpattern] = STATE(7245), + [sym_relational_pattern] = STATE(3429), + [sym_negated_pattern] = STATE(3429), + [sym_and_pattern] = STATE(3429), + [sym_or_pattern] = STATE(3429), + [sym_declaration_pattern] = STATE(3429), + [sym_expression] = STATE(5221), + [sym_non_lvalue_expression] = STATE(5543), + [sym_lvalue_expression] = STATE(3535), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(4202), + [sym_postfix_unary_expression] = STATE(4203), + [sym_prefix_unary_expression] = STATE(4203), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6163), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(4202), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(4203), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(4202), + [sym_member_access_expression] = STATE(3112), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(4203), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7496), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_declaration_expression] = STATE(6902), + [sym_default_expression] = STATE(4202), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(4202), + [sym_typeof_expression] = STATE(4202), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(3112), + [sym_literal] = STATE(4202), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2221), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(125), [sym_preproc_endregion] = STATE(125), [sym_preproc_line] = STATE(125), @@ -54359,59 +54245,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(2852), - [aux_sym__parameter_type_with_modifiers_repeat1] = STATE(3489), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [aux_sym__class_declaration_initializer_repeat1] = STATE(2843), + [aux_sym__parameter_type_with_modifiers_repeat1] = STATE(3452), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1049), - [anon_sym_LPAREN] = ACTIONS(1143), - [anon_sym_RPAREN] = ACTIONS(1149), - [anon_sym_ref] = ACTIONS(1099), - [anon_sym_LBRACE] = ACTIONS(1059), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_LPAREN] = ACTIONS(1141), + [anon_sym_RPAREN] = ACTIONS(1143), + [anon_sym_ref] = ACTIONS(1093), + [anon_sym_LBRACE] = ACTIONS(1057), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1101), - [anon_sym_readonly] = ACTIONS(1103), - [anon_sym_LT] = ACTIONS(1063), - [anon_sym_GT] = ACTIONS(1063), - [anon_sym_in] = ACTIONS(1105), - [anon_sym_out] = ACTIONS(1105), + [anon_sym_new] = ACTIONS(1095), + [anon_sym_readonly] = ACTIONS(1097), + [anon_sym_LT] = ACTIONS(1061), + [anon_sym_GT] = ACTIONS(1061), + [anon_sym_in] = ACTIONS(1099), + [anon_sym_out] = ACTIONS(1099), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1067), - [anon_sym_BANG] = ACTIONS(1107), - [anon_sym_TILDE] = ACTIONS(1107), - [anon_sym_PLUS_PLUS] = ACTIONS(1107), - [anon_sym_DASH_DASH] = ACTIONS(1107), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(1101), + [anon_sym_TILDE] = ACTIONS(1101), + [anon_sym_PLUS_PLUS] = ACTIONS(1101), + [anon_sym_DASH_DASH] = ACTIONS(1101), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1109), - [anon_sym_DASH] = ACTIONS(1109), - [anon_sym_STAR] = ACTIONS(1111), - [anon_sym_CARET] = ACTIONS(1107), - [anon_sym_AMP] = ACTIONS(1107), - [anon_sym_GT_EQ] = ACTIONS(1073), - [anon_sym_LT_EQ] = ACTIONS(1073), - [anon_sym_this] = ACTIONS(1113), - [anon_sym_scoped] = ACTIONS(1115), - [anon_sym_params] = ACTIONS(1117), + [anon_sym_PLUS] = ACTIONS(1103), + [anon_sym_DASH] = ACTIONS(1103), + [anon_sym_STAR] = ACTIONS(1105), + [anon_sym_CARET] = ACTIONS(1101), + [anon_sym_AMP] = ACTIONS(1101), + [anon_sym_GT_EQ] = ACTIONS(1071), + [anon_sym_LT_EQ] = ACTIONS(1071), + [anon_sym_this] = ACTIONS(1107), + [anon_sym_scoped] = ACTIONS(1109), + [anon_sym_params] = ACTIONS(1111), [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(1077), + [anon_sym_var] = ACTIONS(1075), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1067), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1119), + [anon_sym_throw] = ACTIONS(1113), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1121), - [sym_discard] = ACTIONS(1083), - [anon_sym_DOT_DOT] = ACTIONS(1125), - [anon_sym_not] = ACTIONS(1127), + [anon_sym_await] = ACTIONS(1115), + [sym_discard] = ACTIONS(1081), + [anon_sym_DOT_DOT] = ACTIONS(1119), + [anon_sym_not] = ACTIONS(1121), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -54436,7 +54322,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(1089), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -54453,104 +54339,104 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [126] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_parameter] = STATE(6948), - [sym__parameter_array] = STATE(6996), - [sym_argument] = STATE(7174), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(5634), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2234), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(4898), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_tuple_element] = STATE(7255), - [sym_pattern] = STATE(6647), - [sym_constant_pattern] = STATE(3486), - [sym_parenthesized_pattern] = STATE(3486), - [sym_var_pattern] = STATE(3486), - [sym_type_pattern] = STATE(3486), - [sym_list_pattern] = STATE(3486), - [sym_recursive_pattern] = STATE(3486), - [sym_positional_pattern_clause] = STATE(5175), - [sym_property_pattern_clause] = STATE(5675), - [sym_subpattern] = STATE(7235), - [sym_relational_pattern] = STATE(3486), - [sym_negated_pattern] = STATE(3486), - [sym_and_pattern] = STATE(3486), - [sym_or_pattern] = STATE(3486), - [sym_declaration_pattern] = STATE(3486), - [sym_expression] = STATE(5234), - [sym_non_lvalue_expression] = STATE(5636), - [sym_lvalue_expression] = STATE(3525), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(4216), - [sym_postfix_unary_expression] = STATE(4219), - [sym_prefix_unary_expression] = STATE(4219), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6161), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(4216), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(4219), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(4216), - [sym_member_access_expression] = STATE(3121), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(4219), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7323), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_declaration_expression] = STATE(6803), - [sym_default_expression] = STATE(4216), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(4216), - [sym_typeof_expression] = STATE(4216), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(3121), - [sym_literal] = STATE(4216), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2222), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_parameter] = STATE(6769), + [sym__parameter_array] = STATE(6785), + [sym_argument] = STATE(7244), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(5528), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2224), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5014), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_tuple_element] = STATE(7118), + [sym_pattern] = STATE(6688), + [sym_constant_pattern] = STATE(3429), + [sym_parenthesized_pattern] = STATE(3429), + [sym_var_pattern] = STATE(3429), + [sym_type_pattern] = STATE(3429), + [sym_list_pattern] = STATE(3429), + [sym_recursive_pattern] = STATE(3429), + [sym_positional_pattern_clause] = STATE(5135), + [sym_property_pattern_clause] = STATE(5666), + [sym_subpattern] = STATE(7245), + [sym_relational_pattern] = STATE(3429), + [sym_negated_pattern] = STATE(3429), + [sym_and_pattern] = STATE(3429), + [sym_or_pattern] = STATE(3429), + [sym_declaration_pattern] = STATE(3429), + [sym_expression] = STATE(5221), + [sym_non_lvalue_expression] = STATE(5543), + [sym_lvalue_expression] = STATE(3535), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(4202), + [sym_postfix_unary_expression] = STATE(4203), + [sym_prefix_unary_expression] = STATE(4203), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6163), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(4202), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(4203), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(4202), + [sym_member_access_expression] = STATE(3112), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(4203), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7496), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_declaration_expression] = STATE(6902), + [sym_default_expression] = STATE(4202), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(4202), + [sym_typeof_expression] = STATE(4202), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(3112), + [sym_literal] = STATE(4202), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2221), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(126), [sym_preproc_endregion] = STATE(126), [sym_preproc_line] = STATE(126), @@ -54560,59 +54446,59 @@ 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(2852), - [aux_sym__parameter_type_with_modifiers_repeat1] = STATE(3489), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [aux_sym__class_declaration_initializer_repeat1] = STATE(2843), + [aux_sym__parameter_type_with_modifiers_repeat1] = STATE(3452), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1049), - [anon_sym_LPAREN] = ACTIONS(1143), - [anon_sym_RPAREN] = ACTIONS(1147), - [anon_sym_ref] = ACTIONS(1099), - [anon_sym_LBRACE] = ACTIONS(1059), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_LPAREN] = ACTIONS(1141), + [anon_sym_RPAREN] = ACTIONS(1143), + [anon_sym_ref] = ACTIONS(1093), + [anon_sym_LBRACE] = ACTIONS(1057), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1101), - [anon_sym_readonly] = ACTIONS(1103), - [anon_sym_LT] = ACTIONS(1063), - [anon_sym_GT] = ACTIONS(1063), - [anon_sym_in] = ACTIONS(1105), - [anon_sym_out] = ACTIONS(1105), + [anon_sym_new] = ACTIONS(1095), + [anon_sym_readonly] = ACTIONS(1097), + [anon_sym_LT] = ACTIONS(1061), + [anon_sym_GT] = ACTIONS(1061), + [anon_sym_in] = ACTIONS(1099), + [anon_sym_out] = ACTIONS(1099), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1067), - [anon_sym_BANG] = ACTIONS(1107), - [anon_sym_TILDE] = ACTIONS(1107), - [anon_sym_PLUS_PLUS] = ACTIONS(1107), - [anon_sym_DASH_DASH] = ACTIONS(1107), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(1101), + [anon_sym_TILDE] = ACTIONS(1101), + [anon_sym_PLUS_PLUS] = ACTIONS(1101), + [anon_sym_DASH_DASH] = ACTIONS(1101), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1109), - [anon_sym_DASH] = ACTIONS(1109), - [anon_sym_STAR] = ACTIONS(1111), - [anon_sym_CARET] = ACTIONS(1107), - [anon_sym_AMP] = ACTIONS(1107), - [anon_sym_GT_EQ] = ACTIONS(1073), - [anon_sym_LT_EQ] = ACTIONS(1073), - [anon_sym_this] = ACTIONS(1113), - [anon_sym_scoped] = ACTIONS(1115), - [anon_sym_params] = ACTIONS(1117), + [anon_sym_PLUS] = ACTIONS(1103), + [anon_sym_DASH] = ACTIONS(1103), + [anon_sym_STAR] = ACTIONS(1105), + [anon_sym_CARET] = ACTIONS(1101), + [anon_sym_AMP] = ACTIONS(1101), + [anon_sym_GT_EQ] = ACTIONS(1071), + [anon_sym_LT_EQ] = ACTIONS(1071), + [anon_sym_this] = ACTIONS(1107), + [anon_sym_scoped] = ACTIONS(1109), + [anon_sym_params] = ACTIONS(1111), [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(1077), + [anon_sym_var] = ACTIONS(1075), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1067), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1119), + [anon_sym_throw] = ACTIONS(1113), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1121), - [sym_discard] = ACTIONS(1083), - [anon_sym_DOT_DOT] = ACTIONS(1125), - [anon_sym_not] = ACTIONS(1127), + [anon_sym_await] = ACTIONS(1115), + [sym_discard] = ACTIONS(1081), + [anon_sym_DOT_DOT] = ACTIONS(1119), + [anon_sym_not] = ACTIONS(1121), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -54637,7 +54523,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(1089), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -54654,104 +54540,104 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [127] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_parameter] = STATE(6948), - [sym__parameter_array] = STATE(6996), - [sym_argument] = STATE(7174), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(5634), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2234), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(4904), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_tuple_element] = STATE(7255), - [sym_pattern] = STATE(6647), - [sym_constant_pattern] = STATE(3486), - [sym_parenthesized_pattern] = STATE(3486), - [sym_var_pattern] = STATE(3486), - [sym_type_pattern] = STATE(3486), - [sym_list_pattern] = STATE(3486), - [sym_recursive_pattern] = STATE(3486), - [sym_positional_pattern_clause] = STATE(5175), - [sym_property_pattern_clause] = STATE(5675), - [sym_subpattern] = STATE(7235), - [sym_relational_pattern] = STATE(3486), - [sym_negated_pattern] = STATE(3486), - [sym_and_pattern] = STATE(3486), - [sym_or_pattern] = STATE(3486), - [sym_declaration_pattern] = STATE(3486), - [sym_expression] = STATE(5234), - [sym_non_lvalue_expression] = STATE(5636), - [sym_lvalue_expression] = STATE(3525), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(4216), - [sym_postfix_unary_expression] = STATE(4219), - [sym_prefix_unary_expression] = STATE(4219), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6161), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(4216), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(4219), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(4216), - [sym_member_access_expression] = STATE(3121), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(4219), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7323), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_declaration_expression] = STATE(6803), - [sym_default_expression] = STATE(4216), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(4216), - [sym_typeof_expression] = STATE(4216), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(3121), - [sym_literal] = STATE(4216), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2222), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_parameter] = STATE(6769), + [sym__parameter_array] = STATE(6785), + [sym_argument] = STATE(7244), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(5528), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2224), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5015), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_tuple_element] = STATE(7118), + [sym_pattern] = STATE(6688), + [sym_constant_pattern] = STATE(3429), + [sym_parenthesized_pattern] = STATE(3429), + [sym_var_pattern] = STATE(3429), + [sym_type_pattern] = STATE(3429), + [sym_list_pattern] = STATE(3429), + [sym_recursive_pattern] = STATE(3429), + [sym_positional_pattern_clause] = STATE(5135), + [sym_property_pattern_clause] = STATE(5666), + [sym_subpattern] = STATE(7245), + [sym_relational_pattern] = STATE(3429), + [sym_negated_pattern] = STATE(3429), + [sym_and_pattern] = STATE(3429), + [sym_or_pattern] = STATE(3429), + [sym_declaration_pattern] = STATE(3429), + [sym_expression] = STATE(5221), + [sym_non_lvalue_expression] = STATE(5543), + [sym_lvalue_expression] = STATE(3535), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(4202), + [sym_postfix_unary_expression] = STATE(4203), + [sym_prefix_unary_expression] = STATE(4203), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6163), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(4202), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(4203), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(4202), + [sym_member_access_expression] = STATE(3112), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(4203), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7496), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_declaration_expression] = STATE(6902), + [sym_default_expression] = STATE(4202), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(4202), + [sym_typeof_expression] = STATE(4202), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(3112), + [sym_literal] = STATE(4202), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2221), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(127), [sym_preproc_endregion] = STATE(127), [sym_preproc_line] = STATE(127), @@ -54761,59 +54647,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(2852), - [aux_sym__parameter_type_with_modifiers_repeat1] = STATE(3489), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [aux_sym__class_declaration_initializer_repeat1] = STATE(2843), + [aux_sym__parameter_type_with_modifiers_repeat1] = STATE(3452), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1049), - [anon_sym_LPAREN] = ACTIONS(1143), - [anon_sym_RPAREN] = ACTIONS(1145), - [anon_sym_ref] = ACTIONS(1099), - [anon_sym_LBRACE] = ACTIONS(1059), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_LPAREN] = ACTIONS(1141), + [anon_sym_RPAREN] = ACTIONS(1217), + [anon_sym_ref] = ACTIONS(1093), + [anon_sym_LBRACE] = ACTIONS(1057), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1101), - [anon_sym_readonly] = ACTIONS(1103), - [anon_sym_LT] = ACTIONS(1063), - [anon_sym_GT] = ACTIONS(1063), - [anon_sym_in] = ACTIONS(1105), - [anon_sym_out] = ACTIONS(1105), + [anon_sym_new] = ACTIONS(1095), + [anon_sym_readonly] = ACTIONS(1097), + [anon_sym_LT] = ACTIONS(1061), + [anon_sym_GT] = ACTIONS(1061), + [anon_sym_in] = ACTIONS(1099), + [anon_sym_out] = ACTIONS(1099), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1067), - [anon_sym_BANG] = ACTIONS(1107), - [anon_sym_TILDE] = ACTIONS(1107), - [anon_sym_PLUS_PLUS] = ACTIONS(1107), - [anon_sym_DASH_DASH] = ACTIONS(1107), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(1101), + [anon_sym_TILDE] = ACTIONS(1101), + [anon_sym_PLUS_PLUS] = ACTIONS(1101), + [anon_sym_DASH_DASH] = ACTIONS(1101), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1109), - [anon_sym_DASH] = ACTIONS(1109), - [anon_sym_STAR] = ACTIONS(1111), - [anon_sym_CARET] = ACTIONS(1107), - [anon_sym_AMP] = ACTIONS(1107), - [anon_sym_GT_EQ] = ACTIONS(1073), - [anon_sym_LT_EQ] = ACTIONS(1073), - [anon_sym_this] = ACTIONS(1113), - [anon_sym_scoped] = ACTIONS(1115), - [anon_sym_params] = ACTIONS(1117), + [anon_sym_PLUS] = ACTIONS(1103), + [anon_sym_DASH] = ACTIONS(1103), + [anon_sym_STAR] = ACTIONS(1105), + [anon_sym_CARET] = ACTIONS(1101), + [anon_sym_AMP] = ACTIONS(1101), + [anon_sym_GT_EQ] = ACTIONS(1071), + [anon_sym_LT_EQ] = ACTIONS(1071), + [anon_sym_this] = ACTIONS(1107), + [anon_sym_scoped] = ACTIONS(1109), + [anon_sym_params] = ACTIONS(1111), [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(1077), + [anon_sym_var] = ACTIONS(1075), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1067), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1119), + [anon_sym_throw] = ACTIONS(1113), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1121), - [sym_discard] = ACTIONS(1083), - [anon_sym_DOT_DOT] = ACTIONS(1125), - [anon_sym_not] = ACTIONS(1127), + [anon_sym_await] = ACTIONS(1115), + [sym_discard] = ACTIONS(1081), + [anon_sym_DOT_DOT] = ACTIONS(1119), + [anon_sym_not] = ACTIONS(1121), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -54838,7 +54724,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(1089), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -54855,104 +54741,104 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [128] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_parameter] = STATE(6948), - [sym__parameter_array] = STATE(6996), - [sym_argument] = STATE(7174), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(5634), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2234), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(4911), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_tuple_element] = STATE(7255), - [sym_pattern] = STATE(6647), - [sym_constant_pattern] = STATE(3486), - [sym_parenthesized_pattern] = STATE(3486), - [sym_var_pattern] = STATE(3486), - [sym_type_pattern] = STATE(3486), - [sym_list_pattern] = STATE(3486), - [sym_recursive_pattern] = STATE(3486), - [sym_positional_pattern_clause] = STATE(5175), - [sym_property_pattern_clause] = STATE(5675), - [sym_subpattern] = STATE(7235), - [sym_relational_pattern] = STATE(3486), - [sym_negated_pattern] = STATE(3486), - [sym_and_pattern] = STATE(3486), - [sym_or_pattern] = STATE(3486), - [sym_declaration_pattern] = STATE(3486), - [sym_expression] = STATE(5234), - [sym_non_lvalue_expression] = STATE(5636), - [sym_lvalue_expression] = STATE(3525), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(4216), - [sym_postfix_unary_expression] = STATE(4219), - [sym_prefix_unary_expression] = STATE(4219), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6161), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(4216), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(4219), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(4216), - [sym_member_access_expression] = STATE(3121), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(4219), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7323), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_declaration_expression] = STATE(6803), - [sym_default_expression] = STATE(4216), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(4216), - [sym_typeof_expression] = STATE(4216), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(3121), - [sym_literal] = STATE(4216), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2222), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_parameter] = STATE(6769), + [sym__parameter_array] = STATE(6785), + [sym_argument] = STATE(7154), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(5528), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2224), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(4838), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_tuple_element] = STATE(7118), + [sym_pattern] = STATE(6645), + [sym_constant_pattern] = STATE(3429), + [sym_parenthesized_pattern] = STATE(3429), + [sym_var_pattern] = STATE(3429), + [sym_type_pattern] = STATE(3429), + [sym_list_pattern] = STATE(3429), + [sym_recursive_pattern] = STATE(3429), + [sym_positional_pattern_clause] = STATE(5135), + [sym_property_pattern_clause] = STATE(5666), + [sym_subpattern] = STATE(7245), + [sym_relational_pattern] = STATE(3429), + [sym_negated_pattern] = STATE(3429), + [sym_and_pattern] = STATE(3429), + [sym_or_pattern] = STATE(3429), + [sym_declaration_pattern] = STATE(3429), + [sym_expression] = STATE(5221), + [sym_non_lvalue_expression] = STATE(5613), + [sym_lvalue_expression] = STATE(3535), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(4202), + [sym_postfix_unary_expression] = STATE(4203), + [sym_prefix_unary_expression] = STATE(4203), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6163), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(4202), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(4203), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(4202), + [sym_member_access_expression] = STATE(3112), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(4203), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7496), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_declaration_expression] = STATE(6902), + [sym_default_expression] = STATE(4202), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(4202), + [sym_typeof_expression] = STATE(4202), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(3112), + [sym_literal] = STATE(4202), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2221), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(128), [sym_preproc_endregion] = STATE(128), [sym_preproc_line] = STATE(128), @@ -54962,59 +54848,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(2852), - [aux_sym__parameter_type_with_modifiers_repeat1] = STATE(3489), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [aux_sym__class_declaration_initializer_repeat1] = STATE(2843), + [aux_sym__parameter_type_with_modifiers_repeat1] = STATE(3452), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1049), - [anon_sym_LPAREN] = ACTIONS(1143), - [anon_sym_RPAREN] = ACTIONS(1145), - [anon_sym_ref] = ACTIONS(1099), - [anon_sym_LBRACE] = ACTIONS(1059), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_LPAREN] = ACTIONS(1141), + [anon_sym_RPAREN] = ACTIONS(1143), + [anon_sym_ref] = ACTIONS(1093), + [anon_sym_LBRACE] = ACTIONS(1057), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1101), - [anon_sym_readonly] = ACTIONS(1103), - [anon_sym_LT] = ACTIONS(1063), - [anon_sym_GT] = ACTIONS(1063), - [anon_sym_in] = ACTIONS(1105), - [anon_sym_out] = ACTIONS(1105), + [anon_sym_new] = ACTIONS(1095), + [anon_sym_readonly] = ACTIONS(1097), + [anon_sym_LT] = ACTIONS(1061), + [anon_sym_GT] = ACTIONS(1061), + [anon_sym_in] = ACTIONS(1099), + [anon_sym_out] = ACTIONS(1099), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1067), - [anon_sym_BANG] = ACTIONS(1107), - [anon_sym_TILDE] = ACTIONS(1107), - [anon_sym_PLUS_PLUS] = ACTIONS(1107), - [anon_sym_DASH_DASH] = ACTIONS(1107), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(1101), + [anon_sym_TILDE] = ACTIONS(1101), + [anon_sym_PLUS_PLUS] = ACTIONS(1101), + [anon_sym_DASH_DASH] = ACTIONS(1101), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1109), - [anon_sym_DASH] = ACTIONS(1109), - [anon_sym_STAR] = ACTIONS(1111), - [anon_sym_CARET] = ACTIONS(1107), - [anon_sym_AMP] = ACTIONS(1107), - [anon_sym_GT_EQ] = ACTIONS(1073), - [anon_sym_LT_EQ] = ACTIONS(1073), - [anon_sym_this] = ACTIONS(1113), - [anon_sym_scoped] = ACTIONS(1115), - [anon_sym_params] = ACTIONS(1117), + [anon_sym_PLUS] = ACTIONS(1103), + [anon_sym_DASH] = ACTIONS(1103), + [anon_sym_STAR] = ACTIONS(1105), + [anon_sym_CARET] = ACTIONS(1101), + [anon_sym_AMP] = ACTIONS(1101), + [anon_sym_GT_EQ] = ACTIONS(1071), + [anon_sym_LT_EQ] = ACTIONS(1071), + [anon_sym_this] = ACTIONS(1107), + [anon_sym_scoped] = ACTIONS(1109), + [anon_sym_params] = ACTIONS(1111), [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(1077), + [anon_sym_var] = ACTIONS(1075), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1067), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1119), + [anon_sym_throw] = ACTIONS(1113), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1121), - [sym_discard] = ACTIONS(1083), - [anon_sym_DOT_DOT] = ACTIONS(1125), - [anon_sym_not] = ACTIONS(1127), + [anon_sym_await] = ACTIONS(1115), + [sym_discard] = ACTIONS(1081), + [anon_sym_DOT_DOT] = ACTIONS(1119), + [anon_sym_not] = ACTIONS(1121), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -55039,7 +54925,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(1089), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -55056,104 +54942,104 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [129] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_parameter] = STATE(6948), - [sym__parameter_array] = STATE(6996), - [sym_argument] = STATE(7174), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(5634), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2234), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(4919), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_tuple_element] = STATE(7255), - [sym_pattern] = STATE(6647), - [sym_constant_pattern] = STATE(3486), - [sym_parenthesized_pattern] = STATE(3486), - [sym_var_pattern] = STATE(3486), - [sym_type_pattern] = STATE(3486), - [sym_list_pattern] = STATE(3486), - [sym_recursive_pattern] = STATE(3486), - [sym_positional_pattern_clause] = STATE(5175), - [sym_property_pattern_clause] = STATE(5675), - [sym_subpattern] = STATE(7235), - [sym_relational_pattern] = STATE(3486), - [sym_negated_pattern] = STATE(3486), - [sym_and_pattern] = STATE(3486), - [sym_or_pattern] = STATE(3486), - [sym_declaration_pattern] = STATE(3486), - [sym_expression] = STATE(5234), - [sym_non_lvalue_expression] = STATE(5636), - [sym_lvalue_expression] = STATE(3525), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(4216), - [sym_postfix_unary_expression] = STATE(4219), - [sym_prefix_unary_expression] = STATE(4219), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6161), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(4216), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(4219), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(4216), - [sym_member_access_expression] = STATE(3121), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(4219), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7323), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_declaration_expression] = STATE(6803), - [sym_default_expression] = STATE(4216), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(4216), - [sym_typeof_expression] = STATE(4216), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(3121), - [sym_literal] = STATE(4216), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2222), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_parameter] = STATE(6769), + [sym__parameter_array] = STATE(6785), + [sym_argument] = STATE(7133), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(5528), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2224), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5045), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_tuple_element] = STATE(7166), + [sym_pattern] = STATE(6680), + [sym_constant_pattern] = STATE(3429), + [sym_parenthesized_pattern] = STATE(3429), + [sym_var_pattern] = STATE(3429), + [sym_type_pattern] = STATE(3429), + [sym_list_pattern] = STATE(3429), + [sym_recursive_pattern] = STATE(3429), + [sym_positional_pattern_clause] = STATE(5135), + [sym_property_pattern_clause] = STATE(5666), + [sym_subpattern] = STATE(7245), + [sym_relational_pattern] = STATE(3429), + [sym_negated_pattern] = STATE(3429), + [sym_and_pattern] = STATE(3429), + [sym_or_pattern] = STATE(3429), + [sym_declaration_pattern] = STATE(3429), + [sym_expression] = STATE(5221), + [sym_non_lvalue_expression] = STATE(5315), + [sym_lvalue_expression] = STATE(3535), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(4202), + [sym_postfix_unary_expression] = STATE(4203), + [sym_prefix_unary_expression] = STATE(4203), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6163), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(4202), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(4203), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(4202), + [sym_member_access_expression] = STATE(3112), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(4203), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7496), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_declaration_expression] = STATE(6902), + [sym_default_expression] = STATE(4202), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(4202), + [sym_typeof_expression] = STATE(4202), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(3112), + [sym_literal] = STATE(4202), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2221), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(129), [sym_preproc_endregion] = STATE(129), [sym_preproc_line] = STATE(129), @@ -55163,59 +55049,59 @@ 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(2852), - [aux_sym__parameter_type_with_modifiers_repeat1] = STATE(3489), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [aux_sym__class_declaration_initializer_repeat1] = STATE(2843), + [aux_sym__parameter_type_with_modifiers_repeat1] = STATE(3452), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1049), - [anon_sym_LPAREN] = ACTIONS(1143), - [anon_sym_RPAREN] = ACTIONS(1145), - [anon_sym_ref] = ACTIONS(1099), - [anon_sym_LBRACE] = ACTIONS(1059), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_LPAREN] = ACTIONS(1141), + [anon_sym_RPAREN] = ACTIONS(1143), + [anon_sym_ref] = ACTIONS(1093), + [anon_sym_LBRACE] = ACTIONS(1057), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1101), - [anon_sym_readonly] = ACTIONS(1103), - [anon_sym_LT] = ACTIONS(1063), - [anon_sym_GT] = ACTIONS(1063), - [anon_sym_in] = ACTIONS(1105), - [anon_sym_out] = ACTIONS(1105), + [anon_sym_new] = ACTIONS(1095), + [anon_sym_readonly] = ACTIONS(1097), + [anon_sym_LT] = ACTIONS(1061), + [anon_sym_GT] = ACTIONS(1061), + [anon_sym_in] = ACTIONS(1099), + [anon_sym_out] = ACTIONS(1099), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1067), - [anon_sym_BANG] = ACTIONS(1107), - [anon_sym_TILDE] = ACTIONS(1107), - [anon_sym_PLUS_PLUS] = ACTIONS(1107), - [anon_sym_DASH_DASH] = ACTIONS(1107), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(1101), + [anon_sym_TILDE] = ACTIONS(1101), + [anon_sym_PLUS_PLUS] = ACTIONS(1101), + [anon_sym_DASH_DASH] = ACTIONS(1101), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1109), - [anon_sym_DASH] = ACTIONS(1109), - [anon_sym_STAR] = ACTIONS(1111), - [anon_sym_CARET] = ACTIONS(1107), - [anon_sym_AMP] = ACTIONS(1107), - [anon_sym_GT_EQ] = ACTIONS(1073), - [anon_sym_LT_EQ] = ACTIONS(1073), - [anon_sym_this] = ACTIONS(1113), - [anon_sym_scoped] = ACTIONS(1115), - [anon_sym_params] = ACTIONS(1117), + [anon_sym_PLUS] = ACTIONS(1103), + [anon_sym_DASH] = ACTIONS(1103), + [anon_sym_STAR] = ACTIONS(1105), + [anon_sym_CARET] = ACTIONS(1101), + [anon_sym_AMP] = ACTIONS(1101), + [anon_sym_GT_EQ] = ACTIONS(1071), + [anon_sym_LT_EQ] = ACTIONS(1071), + [anon_sym_this] = ACTIONS(1107), + [anon_sym_scoped] = ACTIONS(1109), + [anon_sym_params] = ACTIONS(1111), [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(1077), + [anon_sym_var] = ACTIONS(1075), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1067), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1119), + [anon_sym_throw] = ACTIONS(1113), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1121), - [sym_discard] = ACTIONS(1083), - [anon_sym_DOT_DOT] = ACTIONS(1125), - [anon_sym_not] = ACTIONS(1127), + [anon_sym_await] = ACTIONS(1115), + [sym_discard] = ACTIONS(1081), + [anon_sym_DOT_DOT] = ACTIONS(1119), + [anon_sym_not] = ACTIONS(1121), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -55240,7 +55126,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(1089), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -55257,104 +55143,104 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [130] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_parameter] = STATE(6948), - [sym__parameter_array] = STATE(6996), - [sym_argument] = STATE(7174), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(5634), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2234), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(4924), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_tuple_element] = STATE(7255), - [sym_pattern] = STATE(6647), - [sym_constant_pattern] = STATE(3486), - [sym_parenthesized_pattern] = STATE(3486), - [sym_var_pattern] = STATE(3486), - [sym_type_pattern] = STATE(3486), - [sym_list_pattern] = STATE(3486), - [sym_recursive_pattern] = STATE(3486), - [sym_positional_pattern_clause] = STATE(5175), - [sym_property_pattern_clause] = STATE(5675), - [sym_subpattern] = STATE(7235), - [sym_relational_pattern] = STATE(3486), - [sym_negated_pattern] = STATE(3486), - [sym_and_pattern] = STATE(3486), - [sym_or_pattern] = STATE(3486), - [sym_declaration_pattern] = STATE(3486), - [sym_expression] = STATE(5234), - [sym_non_lvalue_expression] = STATE(5636), - [sym_lvalue_expression] = STATE(3525), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(4216), - [sym_postfix_unary_expression] = STATE(4219), - [sym_prefix_unary_expression] = STATE(4219), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6161), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(4216), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(4219), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(4216), - [sym_member_access_expression] = STATE(3121), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(4219), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7323), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_declaration_expression] = STATE(6803), - [sym_default_expression] = STATE(4216), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(4216), - [sym_typeof_expression] = STATE(4216), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(3121), - [sym_literal] = STATE(4216), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2222), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_parameter] = STATE(6769), + [sym__parameter_array] = STATE(6785), + [sym_argument] = STATE(7133), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(5528), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2224), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(4890), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_tuple_element] = STATE(7118), + [sym_pattern] = STATE(6680), + [sym_constant_pattern] = STATE(3429), + [sym_parenthesized_pattern] = STATE(3429), + [sym_var_pattern] = STATE(3429), + [sym_type_pattern] = STATE(3429), + [sym_list_pattern] = STATE(3429), + [sym_recursive_pattern] = STATE(3429), + [sym_positional_pattern_clause] = STATE(5135), + [sym_property_pattern_clause] = STATE(5666), + [sym_subpattern] = STATE(7245), + [sym_relational_pattern] = STATE(3429), + [sym_negated_pattern] = STATE(3429), + [sym_and_pattern] = STATE(3429), + [sym_or_pattern] = STATE(3429), + [sym_declaration_pattern] = STATE(3429), + [sym_expression] = STATE(5221), + [sym_non_lvalue_expression] = STATE(5315), + [sym_lvalue_expression] = STATE(3535), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(4202), + [sym_postfix_unary_expression] = STATE(4203), + [sym_prefix_unary_expression] = STATE(4203), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6163), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(4202), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(4203), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(4202), + [sym_member_access_expression] = STATE(3112), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(4203), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7496), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_declaration_expression] = STATE(6902), + [sym_default_expression] = STATE(4202), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(4202), + [sym_typeof_expression] = STATE(4202), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(3112), + [sym_literal] = STATE(4202), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2221), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(130), [sym_preproc_endregion] = STATE(130), [sym_preproc_line] = STATE(130), @@ -55364,59 +55250,59 @@ 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(2852), - [aux_sym__parameter_type_with_modifiers_repeat1] = STATE(3489), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [aux_sym__class_declaration_initializer_repeat1] = STATE(2843), + [aux_sym__parameter_type_with_modifiers_repeat1] = STATE(3452), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1049), - [anon_sym_LPAREN] = ACTIONS(1143), - [anon_sym_RPAREN] = ACTIONS(1147), - [anon_sym_ref] = ACTIONS(1099), - [anon_sym_LBRACE] = ACTIONS(1059), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_LPAREN] = ACTIONS(1141), + [anon_sym_RPAREN] = ACTIONS(1217), + [anon_sym_ref] = ACTIONS(1093), + [anon_sym_LBRACE] = ACTIONS(1057), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1101), - [anon_sym_readonly] = ACTIONS(1103), - [anon_sym_LT] = ACTIONS(1063), - [anon_sym_GT] = ACTIONS(1063), - [anon_sym_in] = ACTIONS(1105), - [anon_sym_out] = ACTIONS(1105), + [anon_sym_new] = ACTIONS(1095), + [anon_sym_readonly] = ACTIONS(1097), + [anon_sym_LT] = ACTIONS(1061), + [anon_sym_GT] = ACTIONS(1061), + [anon_sym_in] = ACTIONS(1099), + [anon_sym_out] = ACTIONS(1099), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1067), - [anon_sym_BANG] = ACTIONS(1107), - [anon_sym_TILDE] = ACTIONS(1107), - [anon_sym_PLUS_PLUS] = ACTIONS(1107), - [anon_sym_DASH_DASH] = ACTIONS(1107), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(1101), + [anon_sym_TILDE] = ACTIONS(1101), + [anon_sym_PLUS_PLUS] = ACTIONS(1101), + [anon_sym_DASH_DASH] = ACTIONS(1101), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1109), - [anon_sym_DASH] = ACTIONS(1109), - [anon_sym_STAR] = ACTIONS(1111), - [anon_sym_CARET] = ACTIONS(1107), - [anon_sym_AMP] = ACTIONS(1107), - [anon_sym_GT_EQ] = ACTIONS(1073), - [anon_sym_LT_EQ] = ACTIONS(1073), - [anon_sym_this] = ACTIONS(1113), - [anon_sym_scoped] = ACTIONS(1115), - [anon_sym_params] = ACTIONS(1117), + [anon_sym_PLUS] = ACTIONS(1103), + [anon_sym_DASH] = ACTIONS(1103), + [anon_sym_STAR] = ACTIONS(1105), + [anon_sym_CARET] = ACTIONS(1101), + [anon_sym_AMP] = ACTIONS(1101), + [anon_sym_GT_EQ] = ACTIONS(1071), + [anon_sym_LT_EQ] = ACTIONS(1071), + [anon_sym_this] = ACTIONS(1107), + [anon_sym_scoped] = ACTIONS(1109), + [anon_sym_params] = ACTIONS(1111), [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(1077), + [anon_sym_var] = ACTIONS(1075), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1067), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1119), + [anon_sym_throw] = ACTIONS(1113), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1121), - [sym_discard] = ACTIONS(1083), - [anon_sym_DOT_DOT] = ACTIONS(1125), - [anon_sym_not] = ACTIONS(1127), + [anon_sym_await] = ACTIONS(1115), + [sym_discard] = ACTIONS(1081), + [anon_sym_DOT_DOT] = ACTIONS(1119), + [anon_sym_not] = ACTIONS(1121), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -55441,7 +55327,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(1089), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -55458,104 +55344,104 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [131] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_parameter] = STATE(6948), - [sym__parameter_array] = STATE(6996), - [sym_argument] = STATE(7273), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(5634), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2234), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5013), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_tuple_element] = STATE(7283), - [sym_pattern] = STATE(6695), - [sym_constant_pattern] = STATE(3486), - [sym_parenthesized_pattern] = STATE(3486), - [sym_var_pattern] = STATE(3486), - [sym_type_pattern] = STATE(3486), - [sym_list_pattern] = STATE(3486), - [sym_recursive_pattern] = STATE(3486), - [sym_positional_pattern_clause] = STATE(5175), - [sym_property_pattern_clause] = STATE(5675), - [sym_subpattern] = STATE(7235), - [sym_relational_pattern] = STATE(3486), - [sym_negated_pattern] = STATE(3486), - [sym_and_pattern] = STATE(3486), - [sym_or_pattern] = STATE(3486), - [sym_declaration_pattern] = STATE(3486), - [sym_expression] = STATE(5234), - [sym_non_lvalue_expression] = STATE(5333), - [sym_lvalue_expression] = STATE(3525), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(4216), - [sym_postfix_unary_expression] = STATE(4219), - [sym_prefix_unary_expression] = STATE(4219), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6161), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(4216), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(4219), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(4216), - [sym_member_access_expression] = STATE(3121), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(4219), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7323), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_declaration_expression] = STATE(6803), - [sym_default_expression] = STATE(4216), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(4216), - [sym_typeof_expression] = STATE(4216), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(3121), - [sym_literal] = STATE(4216), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2222), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_parameter] = STATE(6769), + [sym__parameter_array] = STATE(6785), + [sym_argument] = STATE(7244), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(5528), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2224), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5054), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_tuple_element] = STATE(7118), + [sym_pattern] = STATE(6688), + [sym_constant_pattern] = STATE(3429), + [sym_parenthesized_pattern] = STATE(3429), + [sym_var_pattern] = STATE(3429), + [sym_type_pattern] = STATE(3429), + [sym_list_pattern] = STATE(3429), + [sym_recursive_pattern] = STATE(3429), + [sym_positional_pattern_clause] = STATE(5135), + [sym_property_pattern_clause] = STATE(5666), + [sym_subpattern] = STATE(7245), + [sym_relational_pattern] = STATE(3429), + [sym_negated_pattern] = STATE(3429), + [sym_and_pattern] = STATE(3429), + [sym_or_pattern] = STATE(3429), + [sym_declaration_pattern] = STATE(3429), + [sym_expression] = STATE(5221), + [sym_non_lvalue_expression] = STATE(5543), + [sym_lvalue_expression] = STATE(3535), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(4202), + [sym_postfix_unary_expression] = STATE(4203), + [sym_prefix_unary_expression] = STATE(4203), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6163), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(4202), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(4203), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(4202), + [sym_member_access_expression] = STATE(3112), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(4203), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7496), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_declaration_expression] = STATE(6902), + [sym_default_expression] = STATE(4202), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(4202), + [sym_typeof_expression] = STATE(4202), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(3112), + [sym_literal] = STATE(4202), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2221), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(131), [sym_preproc_endregion] = STATE(131), [sym_preproc_line] = STATE(131), @@ -55565,59 +55451,59 @@ 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(2852), - [aux_sym__parameter_type_with_modifiers_repeat1] = STATE(3489), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [aux_sym__class_declaration_initializer_repeat1] = STATE(2843), + [aux_sym__parameter_type_with_modifiers_repeat1] = STATE(3452), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1049), - [anon_sym_LPAREN] = ACTIONS(1143), - [anon_sym_RPAREN] = ACTIONS(1145), - [anon_sym_ref] = ACTIONS(1099), - [anon_sym_LBRACE] = ACTIONS(1059), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_LPAREN] = ACTIONS(1141), + [anon_sym_RPAREN] = ACTIONS(1143), + [anon_sym_ref] = ACTIONS(1093), + [anon_sym_LBRACE] = ACTIONS(1057), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1101), - [anon_sym_readonly] = ACTIONS(1103), - [anon_sym_LT] = ACTIONS(1063), - [anon_sym_GT] = ACTIONS(1063), - [anon_sym_in] = ACTIONS(1105), - [anon_sym_out] = ACTIONS(1105), + [anon_sym_new] = ACTIONS(1095), + [anon_sym_readonly] = ACTIONS(1097), + [anon_sym_LT] = ACTIONS(1061), + [anon_sym_GT] = ACTIONS(1061), + [anon_sym_in] = ACTIONS(1099), + [anon_sym_out] = ACTIONS(1099), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1067), - [anon_sym_BANG] = ACTIONS(1107), - [anon_sym_TILDE] = ACTIONS(1107), - [anon_sym_PLUS_PLUS] = ACTIONS(1107), - [anon_sym_DASH_DASH] = ACTIONS(1107), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(1101), + [anon_sym_TILDE] = ACTIONS(1101), + [anon_sym_PLUS_PLUS] = ACTIONS(1101), + [anon_sym_DASH_DASH] = ACTIONS(1101), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1109), - [anon_sym_DASH] = ACTIONS(1109), - [anon_sym_STAR] = ACTIONS(1111), - [anon_sym_CARET] = ACTIONS(1107), - [anon_sym_AMP] = ACTIONS(1107), - [anon_sym_GT_EQ] = ACTIONS(1073), - [anon_sym_LT_EQ] = ACTIONS(1073), - [anon_sym_this] = ACTIONS(1113), - [anon_sym_scoped] = ACTIONS(1115), - [anon_sym_params] = ACTIONS(1117), + [anon_sym_PLUS] = ACTIONS(1103), + [anon_sym_DASH] = ACTIONS(1103), + [anon_sym_STAR] = ACTIONS(1105), + [anon_sym_CARET] = ACTIONS(1101), + [anon_sym_AMP] = ACTIONS(1101), + [anon_sym_GT_EQ] = ACTIONS(1071), + [anon_sym_LT_EQ] = ACTIONS(1071), + [anon_sym_this] = ACTIONS(1107), + [anon_sym_scoped] = ACTIONS(1109), + [anon_sym_params] = ACTIONS(1111), [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(1077), + [anon_sym_var] = ACTIONS(1075), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1067), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1119), + [anon_sym_throw] = ACTIONS(1113), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1121), - [sym_discard] = ACTIONS(1083), - [anon_sym_DOT_DOT] = ACTIONS(1125), - [anon_sym_not] = ACTIONS(1127), + [anon_sym_await] = ACTIONS(1115), + [sym_discard] = ACTIONS(1081), + [anon_sym_DOT_DOT] = ACTIONS(1119), + [anon_sym_not] = ACTIONS(1121), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -55642,7 +55528,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(1089), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -55659,104 +55545,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [132] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_parameter] = STATE(6948), - [sym__parameter_array] = STATE(6996), - [sym_argument] = STATE(7273), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(5634), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2234), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(4906), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_tuple_element] = STATE(7255), - [sym_pattern] = STATE(6695), - [sym_constant_pattern] = STATE(3486), - [sym_parenthesized_pattern] = STATE(3486), - [sym_var_pattern] = STATE(3486), - [sym_type_pattern] = STATE(3486), - [sym_list_pattern] = STATE(3486), - [sym_recursive_pattern] = STATE(3486), - [sym_positional_pattern_clause] = STATE(5175), - [sym_property_pattern_clause] = STATE(5675), - [sym_subpattern] = STATE(7235), - [sym_relational_pattern] = STATE(3486), - [sym_negated_pattern] = STATE(3486), - [sym_and_pattern] = STATE(3486), - [sym_or_pattern] = STATE(3486), - [sym_declaration_pattern] = STATE(3486), - [sym_expression] = STATE(5234), - [sym_non_lvalue_expression] = STATE(5333), - [sym_lvalue_expression] = STATE(3525), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(4216), - [sym_postfix_unary_expression] = STATE(4219), - [sym_prefix_unary_expression] = STATE(4219), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6161), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(4216), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(4219), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(4216), - [sym_member_access_expression] = STATE(3121), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(4219), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7323), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_declaration_expression] = STATE(6803), - [sym_default_expression] = STATE(4216), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(4216), - [sym_typeof_expression] = STATE(4216), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(3121), - [sym_literal] = STATE(4216), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2222), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2603), + [sym__name] = STATE(5862), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2193), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(3774), + [sym_non_lvalue_expression] = STATE(3220), + [sym_lvalue_expression] = STATE(2955), + [sym__expression_statement_expression] = STATE(3236), + [sym_assignment_expression] = STATE(3221), + [sym_binary_expression] = STATE(3236), + [sym_postfix_unary_expression] = STATE(3221), + [sym_prefix_unary_expression] = STATE(3221), + [sym__pointer_indirection_expression] = STATE(2602), + [sym_query_expression] = STATE(3236), + [sym_from_clause] = STATE(6143), + [sym_conditional_expression] = STATE(3236), + [sym_conditional_access_expression] = STATE(3236), + [sym_as_expression] = STATE(3236), + [sym_is_expression] = STATE(3236), + [sym_is_pattern_expression] = STATE(3236), + [sym_cast_expression] = STATE(3236), + [sym_checked_expression] = STATE(3236), + [sym_invocation_expression] = STATE(3221), + [sym_switch_expression] = STATE(3236), + [sym_await_expression] = STATE(3221), + [sym_throw_expression] = STATE(3236), + [sym_element_access_expression] = STATE(2602), + [sym_interpolated_string_expression] = STATE(3236), + [sym_member_access_expression] = STATE(2602), + [sym_object_creation_expression] = STATE(3221), + [sym_parenthesized_expression] = STATE(3221), + [sym__parenthesized_lvalue_expression] = STATE(2602), + [sym_lambda_expression] = STATE(3236), + [sym__lambda_expression_init] = STATE(7668), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3236), + [sym_anonymous_method_expression] = STATE(3236), + [sym_anonymous_object_creation_expression] = STATE(3236), + [sym_implicit_array_creation_expression] = STATE(3236), + [sym_implicit_object_creation_expression] = STATE(3236), + [sym_implicit_stackalloc_expression] = STATE(3236), + [sym_initializer_expression] = STATE(3236), + [sym_default_expression] = STATE(3236), + [sym_with_expression] = STATE(3236), + [sym_sizeof_expression] = STATE(3236), + [sym_typeof_expression] = STATE(3236), + [sym_makeref_expression] = STATE(3236), + [sym_ref_expression] = STATE(3236), + [sym_reftype_expression] = STATE(3236), + [sym_refvalue_expression] = STATE(3236), + [sym_stackalloc_expression] = STATE(3236), + [sym_range_expression] = STATE(3236), + [sym_tuple_expression] = STATE(2602), + [sym_literal] = STATE(3236), + [sym_character_literal] = STATE(3272), + [sym_string_literal] = STATE(3272), + [sym_raw_string_literal] = STATE(3272), + [sym_boolean_literal] = STATE(3272), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3236), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(132), [sym_preproc_endregion] = STATE(132), [sym_preproc_line] = STATE(132), @@ -55766,59 +55632,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(132), [sym_preproc_define] = STATE(132), [sym_preproc_undef] = STATE(132), - [aux_sym__class_declaration_initializer_repeat1] = STATE(2852), - [aux_sym__parameter_type_with_modifiers_repeat1] = STATE(3489), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), - [sym__identifier_token] = ACTIONS(25), - [anon_sym_alias] = ACTIONS(29), - [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1049), - [anon_sym_LPAREN] = ACTIONS(1143), - [anon_sym_RPAREN] = ACTIONS(1147), - [anon_sym_ref] = ACTIONS(1099), - [anon_sym_LBRACE] = ACTIONS(1059), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), - [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1101), - [anon_sym_readonly] = ACTIONS(1103), - [anon_sym_LT] = ACTIONS(1063), - [anon_sym_GT] = ACTIONS(1063), - [anon_sym_in] = ACTIONS(1105), - [anon_sym_out] = ACTIONS(1105), - [anon_sym_where] = ACTIONS(29), - [anon_sym_notnull] = ACTIONS(29), - [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1067), - [anon_sym_BANG] = ACTIONS(1107), - [anon_sym_TILDE] = ACTIONS(1107), - [anon_sym_PLUS_PLUS] = ACTIONS(1107), - [anon_sym_DASH_DASH] = ACTIONS(1107), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1109), - [anon_sym_DASH] = ACTIONS(1109), - [anon_sym_STAR] = ACTIONS(1111), - [anon_sym_CARET] = ACTIONS(1107), - [anon_sym_AMP] = ACTIONS(1107), - [anon_sym_GT_EQ] = ACTIONS(1073), - [anon_sym_LT_EQ] = ACTIONS(1073), - [anon_sym_this] = ACTIONS(1113), - [anon_sym_scoped] = ACTIONS(1115), - [anon_sym_params] = ACTIONS(1117), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(1077), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1067), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3379), + [sym__identifier_token] = ACTIONS(25), + [anon_sym_alias] = ACTIONS(29), + [anon_sym_SEMI] = ACTIONS(1219), + [anon_sym_global] = ACTIONS(29), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1149), + [anon_sym_COMMA] = ACTIONS(1219), + [anon_sym_RBRACK] = ACTIONS(1219), + [anon_sym_LPAREN] = ACTIONS(1151), + [anon_sym_RPAREN] = ACTIONS(1219), + [anon_sym_ref] = ACTIONS(1153), + [anon_sym_LBRACE] = ACTIONS(1155), + [anon_sym_RBRACE] = ACTIONS(1219), + [anon_sym_delegate] = ACTIONS(1157), + [anon_sym_async] = ACTIONS(1045), + [anon_sym_file] = ACTIONS(29), + [anon_sym_new] = ACTIONS(1159), + [anon_sym_LT] = ACTIONS(1221), + [anon_sym_GT] = ACTIONS(1221), + [anon_sym_where] = ACTIONS(29), + [anon_sym_QMARK] = ACTIONS(1221), + [anon_sym_notnull] = ACTIONS(29), + [anon_sym_unmanaged] = ACTIONS(29), + [anon_sym_checked] = ACTIONS(1163), + [anon_sym_BANG] = ACTIONS(1165), + [anon_sym_TILDE] = ACTIONS(1167), + [anon_sym_PLUS_PLUS] = ACTIONS(1167), + [anon_sym_DASH_DASH] = ACTIONS(1167), + [anon_sym_true] = ACTIONS(1169), + [anon_sym_false] = ACTIONS(1169), + [anon_sym_PLUS] = ACTIONS(1165), + [anon_sym_DASH] = ACTIONS(1165), + [anon_sym_STAR] = ACTIONS(1171), + [anon_sym_SLASH] = ACTIONS(1221), + [anon_sym_PERCENT] = ACTIONS(1219), + [anon_sym_CARET] = ACTIONS(1167), + [anon_sym_PIPE] = ACTIONS(1221), + [anon_sym_AMP] = ACTIONS(1165), + [anon_sym_LT_LT] = ACTIONS(1219), + [anon_sym_GT_GT] = ACTIONS(1221), + [anon_sym_GT_GT_GT] = ACTIONS(1219), + [anon_sym_EQ_EQ] = ACTIONS(1219), + [anon_sym_BANG_EQ] = ACTIONS(1219), + [anon_sym_GT_EQ] = ACTIONS(1219), + [anon_sym_LT_EQ] = ACTIONS(1219), + [anon_sym_this] = ACTIONS(1173), + [anon_sym_DOT] = ACTIONS(1221), + [anon_sym_scoped] = ACTIONS(85), + [anon_sym_base] = ACTIONS(1175), + [anon_sym_var] = ACTIONS(89), + [sym_predefined_type] = ACTIONS(1177), + [anon_sym_unchecked] = ACTIONS(1163), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1119), + [anon_sym_switch] = ACTIONS(1221), + [anon_sym_default] = ACTIONS(1179), + [anon_sym_throw] = ACTIONS(1181), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1121), - [sym_discard] = ACTIONS(1083), - [anon_sym_DOT_DOT] = ACTIONS(1125), - [anon_sym_not] = ACTIONS(1127), + [anon_sym_await] = ACTIONS(1183), + [anon_sym_DOT_DOT] = ACTIONS(1185), + [anon_sym_and] = ACTIONS(1221), + [anon_sym_or] = ACTIONS(1221), + [anon_sym_AMP_AMP] = ACTIONS(1219), + [anon_sym_PIPE_PIPE] = ACTIONS(1219), + [anon_sym_QMARK_QMARK] = ACTIONS(1219), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -55831,19 +55710,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(1089), + [anon_sym_as] = ACTIONS(1221), + [anon_sym_is] = ACTIONS(1221), + [anon_sym_DASH_GT] = ACTIONS(1219), + [anon_sym_stackalloc] = ACTIONS(1187), + [anon_sym_with] = ACTIONS(1221), + [anon_sym_sizeof] = ACTIONS(1189), + [anon_sym_typeof] = ACTIONS(1191), + [anon_sym___makeref] = ACTIONS(1193), + [anon_sym___reftype] = ACTIONS(1195), + [anon_sym___refvalue] = ACTIONS(1197), + [sym_null_literal] = ACTIONS(1199), + [anon_sym_SQUOTE] = ACTIONS(1201), + [sym_integer_literal] = ACTIONS(1199), + [sym_real_literal] = ACTIONS(1203), + [anon_sym_DQUOTE] = ACTIONS(1205), + [sym_verbatim_string_literal] = ACTIONS(1203), + [aux_sym_preproc_if_token1] = ACTIONS(1207), + [aux_sym_preproc_if_token3] = ACTIONS(1219), + [aux_sym_preproc_else_token1] = ACTIONS(1219), + [aux_sym_preproc_elif_token1] = ACTIONS(1219), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -55854,110 +55740,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(1209), + [sym_interpolation_verbatim_start] = ACTIONS(1211), + [sym_interpolation_raw_start] = ACTIONS(1213), + [sym_raw_string_start] = ACTIONS(1215), }, [133] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_parameter] = STATE(6948), - [sym__parameter_array] = STATE(6996), - [sym_argument] = STATE(7273), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(5634), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2234), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5013), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_tuple_element] = STATE(7255), - [sym_pattern] = STATE(6695), - [sym_constant_pattern] = STATE(3486), - [sym_parenthesized_pattern] = STATE(3486), - [sym_var_pattern] = STATE(3486), - [sym_type_pattern] = STATE(3486), - [sym_list_pattern] = STATE(3486), - [sym_recursive_pattern] = STATE(3486), - [sym_positional_pattern_clause] = STATE(5175), - [sym_property_pattern_clause] = STATE(5675), - [sym_subpattern] = STATE(7235), - [sym_relational_pattern] = STATE(3486), - [sym_negated_pattern] = STATE(3486), - [sym_and_pattern] = STATE(3486), - [sym_or_pattern] = STATE(3486), - [sym_declaration_pattern] = STATE(3486), - [sym_expression] = STATE(5234), - [sym_non_lvalue_expression] = STATE(5333), - [sym_lvalue_expression] = STATE(3525), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(4216), - [sym_postfix_unary_expression] = STATE(4219), - [sym_prefix_unary_expression] = STATE(4219), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6161), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(4216), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(4219), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(4216), - [sym_member_access_expression] = STATE(3121), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(4219), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7323), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_declaration_expression] = STATE(6803), - [sym_default_expression] = STATE(4216), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(4216), - [sym_typeof_expression] = STATE(4216), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(3121), - [sym_literal] = STATE(4216), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2222), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_parameter] = STATE(6769), + [sym__parameter_array] = STATE(6785), + [sym_argument] = STATE(7244), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(5528), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2224), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5048), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_tuple_element] = STATE(7118), + [sym_pattern] = STATE(6688), + [sym_constant_pattern] = STATE(3429), + [sym_parenthesized_pattern] = STATE(3429), + [sym_var_pattern] = STATE(3429), + [sym_type_pattern] = STATE(3429), + [sym_list_pattern] = STATE(3429), + [sym_recursive_pattern] = STATE(3429), + [sym_positional_pattern_clause] = STATE(5135), + [sym_property_pattern_clause] = STATE(5666), + [sym_subpattern] = STATE(7245), + [sym_relational_pattern] = STATE(3429), + [sym_negated_pattern] = STATE(3429), + [sym_and_pattern] = STATE(3429), + [sym_or_pattern] = STATE(3429), + [sym_declaration_pattern] = STATE(3429), + [sym_expression] = STATE(5221), + [sym_non_lvalue_expression] = STATE(5543), + [sym_lvalue_expression] = STATE(3535), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(4202), + [sym_postfix_unary_expression] = STATE(4203), + [sym_prefix_unary_expression] = STATE(4203), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6163), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(4202), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(4203), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(4202), + [sym_member_access_expression] = STATE(3112), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(4203), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7496), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_declaration_expression] = STATE(6902), + [sym_default_expression] = STATE(4202), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(4202), + [sym_typeof_expression] = STATE(4202), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(3112), + [sym_literal] = STATE(4202), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2221), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(133), [sym_preproc_endregion] = STATE(133), [sym_preproc_line] = STATE(133), @@ -55967,59 +55853,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(133), [sym_preproc_define] = STATE(133), [sym_preproc_undef] = STATE(133), - [aux_sym__class_declaration_initializer_repeat1] = STATE(2852), - [aux_sym__parameter_type_with_modifiers_repeat1] = STATE(3489), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [aux_sym__class_declaration_initializer_repeat1] = STATE(2843), + [aux_sym__parameter_type_with_modifiers_repeat1] = STATE(3452), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1049), - [anon_sym_LPAREN] = ACTIONS(1143), - [anon_sym_RPAREN] = ACTIONS(1145), - [anon_sym_ref] = ACTIONS(1099), - [anon_sym_LBRACE] = ACTIONS(1059), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_LPAREN] = ACTIONS(1141), + [anon_sym_RPAREN] = ACTIONS(1143), + [anon_sym_ref] = ACTIONS(1093), + [anon_sym_LBRACE] = ACTIONS(1057), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1101), - [anon_sym_readonly] = ACTIONS(1103), - [anon_sym_LT] = ACTIONS(1063), - [anon_sym_GT] = ACTIONS(1063), - [anon_sym_in] = ACTIONS(1105), - [anon_sym_out] = ACTIONS(1105), + [anon_sym_new] = ACTIONS(1095), + [anon_sym_readonly] = ACTIONS(1097), + [anon_sym_LT] = ACTIONS(1061), + [anon_sym_GT] = ACTIONS(1061), + [anon_sym_in] = ACTIONS(1099), + [anon_sym_out] = ACTIONS(1099), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1067), - [anon_sym_BANG] = ACTIONS(1107), - [anon_sym_TILDE] = ACTIONS(1107), - [anon_sym_PLUS_PLUS] = ACTIONS(1107), - [anon_sym_DASH_DASH] = ACTIONS(1107), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(1101), + [anon_sym_TILDE] = ACTIONS(1101), + [anon_sym_PLUS_PLUS] = ACTIONS(1101), + [anon_sym_DASH_DASH] = ACTIONS(1101), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1109), - [anon_sym_DASH] = ACTIONS(1109), - [anon_sym_STAR] = ACTIONS(1111), - [anon_sym_CARET] = ACTIONS(1107), - [anon_sym_AMP] = ACTIONS(1107), - [anon_sym_GT_EQ] = ACTIONS(1073), - [anon_sym_LT_EQ] = ACTIONS(1073), - [anon_sym_this] = ACTIONS(1113), - [anon_sym_scoped] = ACTIONS(1115), - [anon_sym_params] = ACTIONS(1117), + [anon_sym_PLUS] = ACTIONS(1103), + [anon_sym_DASH] = ACTIONS(1103), + [anon_sym_STAR] = ACTIONS(1105), + [anon_sym_CARET] = ACTIONS(1101), + [anon_sym_AMP] = ACTIONS(1101), + [anon_sym_GT_EQ] = ACTIONS(1071), + [anon_sym_LT_EQ] = ACTIONS(1071), + [anon_sym_this] = ACTIONS(1107), + [anon_sym_scoped] = ACTIONS(1109), + [anon_sym_params] = ACTIONS(1111), [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(1077), + [anon_sym_var] = ACTIONS(1075), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1067), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1119), + [anon_sym_throw] = ACTIONS(1113), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1121), - [sym_discard] = ACTIONS(1083), - [anon_sym_DOT_DOT] = ACTIONS(1125), - [anon_sym_not] = ACTIONS(1127), + [anon_sym_await] = ACTIONS(1115), + [sym_discard] = ACTIONS(1081), + [anon_sym_DOT_DOT] = ACTIONS(1119), + [anon_sym_not] = ACTIONS(1121), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -56044,7 +55930,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(1089), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -56061,104 +55947,104 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [134] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_parameter] = STATE(6948), - [sym__parameter_array] = STATE(6996), - [sym_argument] = STATE(7174), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(5634), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2234), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5062), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_tuple_element] = STATE(7255), - [sym_pattern] = STATE(6647), - [sym_constant_pattern] = STATE(3486), - [sym_parenthesized_pattern] = STATE(3486), - [sym_var_pattern] = STATE(3486), - [sym_type_pattern] = STATE(3486), - [sym_list_pattern] = STATE(3486), - [sym_recursive_pattern] = STATE(3486), - [sym_positional_pattern_clause] = STATE(5175), - [sym_property_pattern_clause] = STATE(5675), - [sym_subpattern] = STATE(7235), - [sym_relational_pattern] = STATE(3486), - [sym_negated_pattern] = STATE(3486), - [sym_and_pattern] = STATE(3486), - [sym_or_pattern] = STATE(3486), - [sym_declaration_pattern] = STATE(3486), - [sym_expression] = STATE(5234), - [sym_non_lvalue_expression] = STATE(5636), - [sym_lvalue_expression] = STATE(3525), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(4216), - [sym_postfix_unary_expression] = STATE(4219), - [sym_prefix_unary_expression] = STATE(4219), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6161), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(4216), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(4219), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(4216), - [sym_member_access_expression] = STATE(3121), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(4219), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7323), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_declaration_expression] = STATE(6803), - [sym_default_expression] = STATE(4216), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(4216), - [sym_typeof_expression] = STATE(4216), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(3121), - [sym_literal] = STATE(4216), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2222), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_parameter] = STATE(6769), + [sym__parameter_array] = STATE(6785), + [sym_argument] = STATE(7133), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(5528), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2224), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(4924), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_tuple_element] = STATE(7166), + [sym_pattern] = STATE(6680), + [sym_constant_pattern] = STATE(3429), + [sym_parenthesized_pattern] = STATE(3429), + [sym_var_pattern] = STATE(3429), + [sym_type_pattern] = STATE(3429), + [sym_list_pattern] = STATE(3429), + [sym_recursive_pattern] = STATE(3429), + [sym_positional_pattern_clause] = STATE(5135), + [sym_property_pattern_clause] = STATE(5666), + [sym_subpattern] = STATE(7245), + [sym_relational_pattern] = STATE(3429), + [sym_negated_pattern] = STATE(3429), + [sym_and_pattern] = STATE(3429), + [sym_or_pattern] = STATE(3429), + [sym_declaration_pattern] = STATE(3429), + [sym_expression] = STATE(5221), + [sym_non_lvalue_expression] = STATE(5315), + [sym_lvalue_expression] = STATE(3535), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(4202), + [sym_postfix_unary_expression] = STATE(4203), + [sym_prefix_unary_expression] = STATE(4203), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6163), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(4202), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(4203), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(4202), + [sym_member_access_expression] = STATE(3112), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(4203), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7496), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_declaration_expression] = STATE(6902), + [sym_default_expression] = STATE(4202), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(4202), + [sym_typeof_expression] = STATE(4202), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(3112), + [sym_literal] = STATE(4202), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2221), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(134), [sym_preproc_endregion] = STATE(134), [sym_preproc_line] = STATE(134), @@ -56168,59 +56054,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(134), [sym_preproc_define] = STATE(134), [sym_preproc_undef] = STATE(134), - [aux_sym__class_declaration_initializer_repeat1] = STATE(2852), - [aux_sym__parameter_type_with_modifiers_repeat1] = STATE(3489), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [aux_sym__class_declaration_initializer_repeat1] = STATE(2843), + [aux_sym__parameter_type_with_modifiers_repeat1] = STATE(3452), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1049), - [anon_sym_LPAREN] = ACTIONS(1143), - [anon_sym_RPAREN] = ACTIONS(1145), - [anon_sym_ref] = ACTIONS(1099), - [anon_sym_LBRACE] = ACTIONS(1059), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_LPAREN] = ACTIONS(1141), + [anon_sym_RPAREN] = ACTIONS(1143), + [anon_sym_ref] = ACTIONS(1093), + [anon_sym_LBRACE] = ACTIONS(1057), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1101), - [anon_sym_readonly] = ACTIONS(1103), - [anon_sym_LT] = ACTIONS(1063), - [anon_sym_GT] = ACTIONS(1063), - [anon_sym_in] = ACTIONS(1105), - [anon_sym_out] = ACTIONS(1105), + [anon_sym_new] = ACTIONS(1095), + [anon_sym_readonly] = ACTIONS(1097), + [anon_sym_LT] = ACTIONS(1061), + [anon_sym_GT] = ACTIONS(1061), + [anon_sym_in] = ACTIONS(1099), + [anon_sym_out] = ACTIONS(1099), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1067), - [anon_sym_BANG] = ACTIONS(1107), - [anon_sym_TILDE] = ACTIONS(1107), - [anon_sym_PLUS_PLUS] = ACTIONS(1107), - [anon_sym_DASH_DASH] = ACTIONS(1107), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(1101), + [anon_sym_TILDE] = ACTIONS(1101), + [anon_sym_PLUS_PLUS] = ACTIONS(1101), + [anon_sym_DASH_DASH] = ACTIONS(1101), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1109), - [anon_sym_DASH] = ACTIONS(1109), - [anon_sym_STAR] = ACTIONS(1111), - [anon_sym_CARET] = ACTIONS(1107), - [anon_sym_AMP] = ACTIONS(1107), - [anon_sym_GT_EQ] = ACTIONS(1073), - [anon_sym_LT_EQ] = ACTIONS(1073), - [anon_sym_this] = ACTIONS(1113), - [anon_sym_scoped] = ACTIONS(1115), - [anon_sym_params] = ACTIONS(1117), + [anon_sym_PLUS] = ACTIONS(1103), + [anon_sym_DASH] = ACTIONS(1103), + [anon_sym_STAR] = ACTIONS(1105), + [anon_sym_CARET] = ACTIONS(1101), + [anon_sym_AMP] = ACTIONS(1101), + [anon_sym_GT_EQ] = ACTIONS(1071), + [anon_sym_LT_EQ] = ACTIONS(1071), + [anon_sym_this] = ACTIONS(1107), + [anon_sym_scoped] = ACTIONS(1109), + [anon_sym_params] = ACTIONS(1111), [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(1077), + [anon_sym_var] = ACTIONS(1075), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1067), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1119), + [anon_sym_throw] = ACTIONS(1113), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1121), - [sym_discard] = ACTIONS(1083), - [anon_sym_DOT_DOT] = ACTIONS(1125), - [anon_sym_not] = ACTIONS(1127), + [anon_sym_await] = ACTIONS(1115), + [sym_discard] = ACTIONS(1081), + [anon_sym_DOT_DOT] = ACTIONS(1119), + [anon_sym_not] = ACTIONS(1121), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -56245,7 +56131,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(1089), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -56262,104 +56148,104 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [135] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_parameter] = STATE(6948), - [sym__parameter_array] = STATE(6996), - [sym_argument] = STATE(7273), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(5634), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2234), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(4937), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_tuple_element] = STATE(7283), - [sym_pattern] = STATE(6695), - [sym_constant_pattern] = STATE(3486), - [sym_parenthesized_pattern] = STATE(3486), - [sym_var_pattern] = STATE(3486), - [sym_type_pattern] = STATE(3486), - [sym_list_pattern] = STATE(3486), - [sym_recursive_pattern] = STATE(3486), - [sym_positional_pattern_clause] = STATE(5175), - [sym_property_pattern_clause] = STATE(5675), - [sym_subpattern] = STATE(7235), - [sym_relational_pattern] = STATE(3486), - [sym_negated_pattern] = STATE(3486), - [sym_and_pattern] = STATE(3486), - [sym_or_pattern] = STATE(3486), - [sym_declaration_pattern] = STATE(3486), - [sym_expression] = STATE(5234), - [sym_non_lvalue_expression] = STATE(5333), - [sym_lvalue_expression] = STATE(3525), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(4216), - [sym_postfix_unary_expression] = STATE(4219), - [sym_prefix_unary_expression] = STATE(4219), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6161), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(4216), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(4219), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(4216), - [sym_member_access_expression] = STATE(3121), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(4219), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7323), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_declaration_expression] = STATE(6803), - [sym_default_expression] = STATE(4216), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(4216), - [sym_typeof_expression] = STATE(4216), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(3121), - [sym_literal] = STATE(4216), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2222), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_parameter] = STATE(6769), + [sym__parameter_array] = STATE(6785), + [sym_argument] = STATE(7133), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(5528), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2224), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(4993), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_tuple_element] = STATE(7118), + [sym_pattern] = STATE(6680), + [sym_constant_pattern] = STATE(3429), + [sym_parenthesized_pattern] = STATE(3429), + [sym_var_pattern] = STATE(3429), + [sym_type_pattern] = STATE(3429), + [sym_list_pattern] = STATE(3429), + [sym_recursive_pattern] = STATE(3429), + [sym_positional_pattern_clause] = STATE(5135), + [sym_property_pattern_clause] = STATE(5666), + [sym_subpattern] = STATE(7245), + [sym_relational_pattern] = STATE(3429), + [sym_negated_pattern] = STATE(3429), + [sym_and_pattern] = STATE(3429), + [sym_or_pattern] = STATE(3429), + [sym_declaration_pattern] = STATE(3429), + [sym_expression] = STATE(5221), + [sym_non_lvalue_expression] = STATE(5315), + [sym_lvalue_expression] = STATE(3535), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(4202), + [sym_postfix_unary_expression] = STATE(4203), + [sym_prefix_unary_expression] = STATE(4203), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6163), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(4202), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(4203), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(4202), + [sym_member_access_expression] = STATE(3112), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(4203), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7496), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_declaration_expression] = STATE(6902), + [sym_default_expression] = STATE(4202), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(4202), + [sym_typeof_expression] = STATE(4202), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(3112), + [sym_literal] = STATE(4202), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2221), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(135), [sym_preproc_endregion] = STATE(135), [sym_preproc_line] = STATE(135), @@ -56369,59 +56255,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(135), [sym_preproc_define] = STATE(135), [sym_preproc_undef] = STATE(135), - [aux_sym__class_declaration_initializer_repeat1] = STATE(2852), - [aux_sym__parameter_type_with_modifiers_repeat1] = STATE(3489), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [aux_sym__class_declaration_initializer_repeat1] = STATE(2843), + [aux_sym__parameter_type_with_modifiers_repeat1] = STATE(3452), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1049), - [anon_sym_LPAREN] = ACTIONS(1143), - [anon_sym_RPAREN] = ACTIONS(1145), - [anon_sym_ref] = ACTIONS(1099), - [anon_sym_LBRACE] = ACTIONS(1059), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_LPAREN] = ACTIONS(1141), + [anon_sym_RPAREN] = ACTIONS(1217), + [anon_sym_ref] = ACTIONS(1093), + [anon_sym_LBRACE] = ACTIONS(1057), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1101), - [anon_sym_readonly] = ACTIONS(1103), - [anon_sym_LT] = ACTIONS(1063), - [anon_sym_GT] = ACTIONS(1063), - [anon_sym_in] = ACTIONS(1105), - [anon_sym_out] = ACTIONS(1105), + [anon_sym_new] = ACTIONS(1095), + [anon_sym_readonly] = ACTIONS(1097), + [anon_sym_LT] = ACTIONS(1061), + [anon_sym_GT] = ACTIONS(1061), + [anon_sym_in] = ACTIONS(1099), + [anon_sym_out] = ACTIONS(1099), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1067), - [anon_sym_BANG] = ACTIONS(1107), - [anon_sym_TILDE] = ACTIONS(1107), - [anon_sym_PLUS_PLUS] = ACTIONS(1107), - [anon_sym_DASH_DASH] = ACTIONS(1107), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(1101), + [anon_sym_TILDE] = ACTIONS(1101), + [anon_sym_PLUS_PLUS] = ACTIONS(1101), + [anon_sym_DASH_DASH] = ACTIONS(1101), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1109), - [anon_sym_DASH] = ACTIONS(1109), - [anon_sym_STAR] = ACTIONS(1111), - [anon_sym_CARET] = ACTIONS(1107), - [anon_sym_AMP] = ACTIONS(1107), - [anon_sym_GT_EQ] = ACTIONS(1073), - [anon_sym_LT_EQ] = ACTIONS(1073), - [anon_sym_this] = ACTIONS(1113), - [anon_sym_scoped] = ACTIONS(1115), - [anon_sym_params] = ACTIONS(1117), + [anon_sym_PLUS] = ACTIONS(1103), + [anon_sym_DASH] = ACTIONS(1103), + [anon_sym_STAR] = ACTIONS(1105), + [anon_sym_CARET] = ACTIONS(1101), + [anon_sym_AMP] = ACTIONS(1101), + [anon_sym_GT_EQ] = ACTIONS(1071), + [anon_sym_LT_EQ] = ACTIONS(1071), + [anon_sym_this] = ACTIONS(1107), + [anon_sym_scoped] = ACTIONS(1109), + [anon_sym_params] = ACTIONS(1111), [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(1077), + [anon_sym_var] = ACTIONS(1075), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1067), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1119), + [anon_sym_throw] = ACTIONS(1113), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1121), - [sym_discard] = ACTIONS(1083), - [anon_sym_DOT_DOT] = ACTIONS(1125), - [anon_sym_not] = ACTIONS(1127), + [anon_sym_await] = ACTIONS(1115), + [sym_discard] = ACTIONS(1081), + [anon_sym_DOT_DOT] = ACTIONS(1119), + [anon_sym_not] = ACTIONS(1121), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -56446,7 +56332,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(1089), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -56463,104 +56349,104 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [136] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_parameter] = STATE(6948), - [sym__parameter_array] = STATE(6996), - [sym_argument] = STATE(7273), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(5634), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2234), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5007), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_tuple_element] = STATE(7255), - [sym_pattern] = STATE(6695), - [sym_constant_pattern] = STATE(3486), - [sym_parenthesized_pattern] = STATE(3486), - [sym_var_pattern] = STATE(3486), - [sym_type_pattern] = STATE(3486), - [sym_list_pattern] = STATE(3486), - [sym_recursive_pattern] = STATE(3486), - [sym_positional_pattern_clause] = STATE(5175), - [sym_property_pattern_clause] = STATE(5675), - [sym_subpattern] = STATE(7235), - [sym_relational_pattern] = STATE(3486), - [sym_negated_pattern] = STATE(3486), - [sym_and_pattern] = STATE(3486), - [sym_or_pattern] = STATE(3486), - [sym_declaration_pattern] = STATE(3486), - [sym_expression] = STATE(5234), - [sym_non_lvalue_expression] = STATE(5333), - [sym_lvalue_expression] = STATE(3525), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(4216), - [sym_postfix_unary_expression] = STATE(4219), - [sym_prefix_unary_expression] = STATE(4219), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6161), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(4216), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(4219), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(4216), - [sym_member_access_expression] = STATE(3121), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(4219), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7323), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_declaration_expression] = STATE(6803), - [sym_default_expression] = STATE(4216), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(4216), - [sym_typeof_expression] = STATE(4216), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(3121), - [sym_literal] = STATE(4216), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2222), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_parameter] = STATE(6769), + [sym__parameter_array] = STATE(6785), + [sym_argument] = STATE(7133), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(5528), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2224), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(4966), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_tuple_element] = STATE(7118), + [sym_pattern] = STATE(6680), + [sym_constant_pattern] = STATE(3429), + [sym_parenthesized_pattern] = STATE(3429), + [sym_var_pattern] = STATE(3429), + [sym_type_pattern] = STATE(3429), + [sym_list_pattern] = STATE(3429), + [sym_recursive_pattern] = STATE(3429), + [sym_positional_pattern_clause] = STATE(5135), + [sym_property_pattern_clause] = STATE(5666), + [sym_subpattern] = STATE(7245), + [sym_relational_pattern] = STATE(3429), + [sym_negated_pattern] = STATE(3429), + [sym_and_pattern] = STATE(3429), + [sym_or_pattern] = STATE(3429), + [sym_declaration_pattern] = STATE(3429), + [sym_expression] = STATE(5221), + [sym_non_lvalue_expression] = STATE(5315), + [sym_lvalue_expression] = STATE(3535), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(4202), + [sym_postfix_unary_expression] = STATE(4203), + [sym_prefix_unary_expression] = STATE(4203), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6163), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(4202), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(4203), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(4202), + [sym_member_access_expression] = STATE(3112), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(4203), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7496), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_declaration_expression] = STATE(6902), + [sym_default_expression] = STATE(4202), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(4202), + [sym_typeof_expression] = STATE(4202), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(3112), + [sym_literal] = STATE(4202), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2221), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(136), [sym_preproc_endregion] = STATE(136), [sym_preproc_line] = STATE(136), @@ -56570,59 +56456,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(2852), - [aux_sym__parameter_type_with_modifiers_repeat1] = STATE(3489), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [aux_sym__class_declaration_initializer_repeat1] = STATE(2843), + [aux_sym__parameter_type_with_modifiers_repeat1] = STATE(3452), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1049), - [anon_sym_LPAREN] = ACTIONS(1143), - [anon_sym_RPAREN] = ACTIONS(1147), - [anon_sym_ref] = ACTIONS(1099), - [anon_sym_LBRACE] = ACTIONS(1059), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_LPAREN] = ACTIONS(1141), + [anon_sym_RPAREN] = ACTIONS(1143), + [anon_sym_ref] = ACTIONS(1093), + [anon_sym_LBRACE] = ACTIONS(1057), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1101), - [anon_sym_readonly] = ACTIONS(1103), - [anon_sym_LT] = ACTIONS(1063), - [anon_sym_GT] = ACTIONS(1063), - [anon_sym_in] = ACTIONS(1105), - [anon_sym_out] = ACTIONS(1105), + [anon_sym_new] = ACTIONS(1095), + [anon_sym_readonly] = ACTIONS(1097), + [anon_sym_LT] = ACTIONS(1061), + [anon_sym_GT] = ACTIONS(1061), + [anon_sym_in] = ACTIONS(1099), + [anon_sym_out] = ACTIONS(1099), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1067), - [anon_sym_BANG] = ACTIONS(1107), - [anon_sym_TILDE] = ACTIONS(1107), - [anon_sym_PLUS_PLUS] = ACTIONS(1107), - [anon_sym_DASH_DASH] = ACTIONS(1107), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(1101), + [anon_sym_TILDE] = ACTIONS(1101), + [anon_sym_PLUS_PLUS] = ACTIONS(1101), + [anon_sym_DASH_DASH] = ACTIONS(1101), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1109), - [anon_sym_DASH] = ACTIONS(1109), - [anon_sym_STAR] = ACTIONS(1111), - [anon_sym_CARET] = ACTIONS(1107), - [anon_sym_AMP] = ACTIONS(1107), - [anon_sym_GT_EQ] = ACTIONS(1073), - [anon_sym_LT_EQ] = ACTIONS(1073), - [anon_sym_this] = ACTIONS(1113), - [anon_sym_scoped] = ACTIONS(1115), - [anon_sym_params] = ACTIONS(1117), + [anon_sym_PLUS] = ACTIONS(1103), + [anon_sym_DASH] = ACTIONS(1103), + [anon_sym_STAR] = ACTIONS(1105), + [anon_sym_CARET] = ACTIONS(1101), + [anon_sym_AMP] = ACTIONS(1101), + [anon_sym_GT_EQ] = ACTIONS(1071), + [anon_sym_LT_EQ] = ACTIONS(1071), + [anon_sym_this] = ACTIONS(1107), + [anon_sym_scoped] = ACTIONS(1109), + [anon_sym_params] = ACTIONS(1111), [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(1077), + [anon_sym_var] = ACTIONS(1075), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1067), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1119), + [anon_sym_throw] = ACTIONS(1113), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1121), - [sym_discard] = ACTIONS(1083), - [anon_sym_DOT_DOT] = ACTIONS(1125), - [anon_sym_not] = ACTIONS(1127), + [anon_sym_await] = ACTIONS(1115), + [sym_discard] = ACTIONS(1081), + [anon_sym_DOT_DOT] = ACTIONS(1119), + [anon_sym_not] = ACTIONS(1121), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -56647,7 +56533,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(1089), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -56664,104 +56550,104 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [137] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_parameter] = STATE(6948), - [sym__parameter_array] = STATE(6996), - [sym_argument] = STATE(7273), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(5634), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2234), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(4970), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_tuple_element] = STATE(7255), - [sym_pattern] = STATE(6695), - [sym_constant_pattern] = STATE(3486), - [sym_parenthesized_pattern] = STATE(3486), - [sym_var_pattern] = STATE(3486), - [sym_type_pattern] = STATE(3486), - [sym_list_pattern] = STATE(3486), - [sym_recursive_pattern] = STATE(3486), - [sym_positional_pattern_clause] = STATE(5175), - [sym_property_pattern_clause] = STATE(5675), - [sym_subpattern] = STATE(7235), - [sym_relational_pattern] = STATE(3486), - [sym_negated_pattern] = STATE(3486), - [sym_and_pattern] = STATE(3486), - [sym_or_pattern] = STATE(3486), - [sym_declaration_pattern] = STATE(3486), - [sym_expression] = STATE(5234), - [sym_non_lvalue_expression] = STATE(5333), - [sym_lvalue_expression] = STATE(3525), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(4216), - [sym_postfix_unary_expression] = STATE(4219), - [sym_prefix_unary_expression] = STATE(4219), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6161), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(4216), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(4219), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(4216), - [sym_member_access_expression] = STATE(3121), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(4219), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7323), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_declaration_expression] = STATE(6803), - [sym_default_expression] = STATE(4216), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(4216), - [sym_typeof_expression] = STATE(4216), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(3121), - [sym_literal] = STATE(4216), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2222), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_parameter] = STATE(6769), + [sym__parameter_array] = STATE(6785), + [sym_argument] = STATE(7133), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(5528), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2224), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(4946), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_tuple_element] = STATE(7166), + [sym_pattern] = STATE(6680), + [sym_constant_pattern] = STATE(3429), + [sym_parenthesized_pattern] = STATE(3429), + [sym_var_pattern] = STATE(3429), + [sym_type_pattern] = STATE(3429), + [sym_list_pattern] = STATE(3429), + [sym_recursive_pattern] = STATE(3429), + [sym_positional_pattern_clause] = STATE(5135), + [sym_property_pattern_clause] = STATE(5666), + [sym_subpattern] = STATE(7245), + [sym_relational_pattern] = STATE(3429), + [sym_negated_pattern] = STATE(3429), + [sym_and_pattern] = STATE(3429), + [sym_or_pattern] = STATE(3429), + [sym_declaration_pattern] = STATE(3429), + [sym_expression] = STATE(5221), + [sym_non_lvalue_expression] = STATE(5315), + [sym_lvalue_expression] = STATE(3535), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(4202), + [sym_postfix_unary_expression] = STATE(4203), + [sym_prefix_unary_expression] = STATE(4203), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6163), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(4202), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(4203), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(4202), + [sym_member_access_expression] = STATE(3112), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(4203), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7496), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_declaration_expression] = STATE(6902), + [sym_default_expression] = STATE(4202), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(4202), + [sym_typeof_expression] = STATE(4202), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(3112), + [sym_literal] = STATE(4202), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2221), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(137), [sym_preproc_endregion] = STATE(137), [sym_preproc_line] = STATE(137), @@ -56771,59 +56657,59 @@ 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(2852), - [aux_sym__parameter_type_with_modifiers_repeat1] = STATE(3489), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [aux_sym__class_declaration_initializer_repeat1] = STATE(2843), + [aux_sym__parameter_type_with_modifiers_repeat1] = STATE(3452), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1049), - [anon_sym_LPAREN] = ACTIONS(1143), - [anon_sym_RPAREN] = ACTIONS(1145), - [anon_sym_ref] = ACTIONS(1099), - [anon_sym_LBRACE] = ACTIONS(1059), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_LPAREN] = ACTIONS(1141), + [anon_sym_RPAREN] = ACTIONS(1143), + [anon_sym_ref] = ACTIONS(1093), + [anon_sym_LBRACE] = ACTIONS(1057), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1101), - [anon_sym_readonly] = ACTIONS(1103), - [anon_sym_LT] = ACTIONS(1063), - [anon_sym_GT] = ACTIONS(1063), - [anon_sym_in] = ACTIONS(1105), - [anon_sym_out] = ACTIONS(1105), + [anon_sym_new] = ACTIONS(1095), + [anon_sym_readonly] = ACTIONS(1097), + [anon_sym_LT] = ACTIONS(1061), + [anon_sym_GT] = ACTIONS(1061), + [anon_sym_in] = ACTIONS(1099), + [anon_sym_out] = ACTIONS(1099), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1067), - [anon_sym_BANG] = ACTIONS(1107), - [anon_sym_TILDE] = ACTIONS(1107), - [anon_sym_PLUS_PLUS] = ACTIONS(1107), - [anon_sym_DASH_DASH] = ACTIONS(1107), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(1101), + [anon_sym_TILDE] = ACTIONS(1101), + [anon_sym_PLUS_PLUS] = ACTIONS(1101), + [anon_sym_DASH_DASH] = ACTIONS(1101), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1109), - [anon_sym_DASH] = ACTIONS(1109), - [anon_sym_STAR] = ACTIONS(1111), - [anon_sym_CARET] = ACTIONS(1107), - [anon_sym_AMP] = ACTIONS(1107), - [anon_sym_GT_EQ] = ACTIONS(1073), - [anon_sym_LT_EQ] = ACTIONS(1073), - [anon_sym_this] = ACTIONS(1113), - [anon_sym_scoped] = ACTIONS(1115), - [anon_sym_params] = ACTIONS(1117), + [anon_sym_PLUS] = ACTIONS(1103), + [anon_sym_DASH] = ACTIONS(1103), + [anon_sym_STAR] = ACTIONS(1105), + [anon_sym_CARET] = ACTIONS(1101), + [anon_sym_AMP] = ACTIONS(1101), + [anon_sym_GT_EQ] = ACTIONS(1071), + [anon_sym_LT_EQ] = ACTIONS(1071), + [anon_sym_this] = ACTIONS(1107), + [anon_sym_scoped] = ACTIONS(1109), + [anon_sym_params] = ACTIONS(1111), [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(1077), + [anon_sym_var] = ACTIONS(1075), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1067), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1119), + [anon_sym_throw] = ACTIONS(1113), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1121), - [sym_discard] = ACTIONS(1083), - [anon_sym_DOT_DOT] = ACTIONS(1125), - [anon_sym_not] = ACTIONS(1127), + [anon_sym_await] = ACTIONS(1115), + [sym_discard] = ACTIONS(1081), + [anon_sym_DOT_DOT] = ACTIONS(1119), + [anon_sym_not] = ACTIONS(1121), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -56848,7 +56734,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(1089), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -56865,104 +56751,104 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [138] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_parameter] = STATE(6948), - [sym__parameter_array] = STATE(6996), - [sym_argument] = STATE(7273), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(5634), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2234), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(4956), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_tuple_element] = STATE(7283), - [sym_pattern] = STATE(6695), - [sym_constant_pattern] = STATE(3486), - [sym_parenthesized_pattern] = STATE(3486), - [sym_var_pattern] = STATE(3486), - [sym_type_pattern] = STATE(3486), - [sym_list_pattern] = STATE(3486), - [sym_recursive_pattern] = STATE(3486), - [sym_positional_pattern_clause] = STATE(5175), - [sym_property_pattern_clause] = STATE(5675), - [sym_subpattern] = STATE(7235), - [sym_relational_pattern] = STATE(3486), - [sym_negated_pattern] = STATE(3486), - [sym_and_pattern] = STATE(3486), - [sym_or_pattern] = STATE(3486), - [sym_declaration_pattern] = STATE(3486), - [sym_expression] = STATE(5234), - [sym_non_lvalue_expression] = STATE(5333), - [sym_lvalue_expression] = STATE(3525), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(4216), - [sym_postfix_unary_expression] = STATE(4219), - [sym_prefix_unary_expression] = STATE(4219), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6161), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(4216), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(4219), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(4216), - [sym_member_access_expression] = STATE(3121), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(4219), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7323), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_declaration_expression] = STATE(6803), - [sym_default_expression] = STATE(4216), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(4216), - [sym_typeof_expression] = STATE(4216), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(3121), - [sym_literal] = STATE(4216), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2222), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_parameter] = STATE(6769), + [sym__parameter_array] = STATE(6785), + [sym_argument] = STATE(7133), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(5528), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2224), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(4980), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_tuple_element] = STATE(7118), + [sym_pattern] = STATE(6680), + [sym_constant_pattern] = STATE(3429), + [sym_parenthesized_pattern] = STATE(3429), + [sym_var_pattern] = STATE(3429), + [sym_type_pattern] = STATE(3429), + [sym_list_pattern] = STATE(3429), + [sym_recursive_pattern] = STATE(3429), + [sym_positional_pattern_clause] = STATE(5135), + [sym_property_pattern_clause] = STATE(5666), + [sym_subpattern] = STATE(7245), + [sym_relational_pattern] = STATE(3429), + [sym_negated_pattern] = STATE(3429), + [sym_and_pattern] = STATE(3429), + [sym_or_pattern] = STATE(3429), + [sym_declaration_pattern] = STATE(3429), + [sym_expression] = STATE(5221), + [sym_non_lvalue_expression] = STATE(5315), + [sym_lvalue_expression] = STATE(3535), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(4202), + [sym_postfix_unary_expression] = STATE(4203), + [sym_prefix_unary_expression] = STATE(4203), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6163), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(4202), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(4203), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(4202), + [sym_member_access_expression] = STATE(3112), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(4203), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7496), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_declaration_expression] = STATE(6902), + [sym_default_expression] = STATE(4202), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(4202), + [sym_typeof_expression] = STATE(4202), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(3112), + [sym_literal] = STATE(4202), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2221), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(138), [sym_preproc_endregion] = STATE(138), [sym_preproc_line] = STATE(138), @@ -56972,59 +56858,59 @@ 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(2852), - [aux_sym__parameter_type_with_modifiers_repeat1] = STATE(3489), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [aux_sym__class_declaration_initializer_repeat1] = STATE(2843), + [aux_sym__parameter_type_with_modifiers_repeat1] = STATE(3452), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1049), - [anon_sym_LPAREN] = ACTIONS(1143), - [anon_sym_RPAREN] = ACTIONS(1145), - [anon_sym_ref] = ACTIONS(1099), - [anon_sym_LBRACE] = ACTIONS(1059), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_LPAREN] = ACTIONS(1141), + [anon_sym_RPAREN] = ACTIONS(1143), + [anon_sym_ref] = ACTIONS(1093), + [anon_sym_LBRACE] = ACTIONS(1057), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1101), - [anon_sym_readonly] = ACTIONS(1103), - [anon_sym_LT] = ACTIONS(1063), - [anon_sym_GT] = ACTIONS(1063), - [anon_sym_in] = ACTIONS(1105), - [anon_sym_out] = ACTIONS(1105), + [anon_sym_new] = ACTIONS(1095), + [anon_sym_readonly] = ACTIONS(1097), + [anon_sym_LT] = ACTIONS(1061), + [anon_sym_GT] = ACTIONS(1061), + [anon_sym_in] = ACTIONS(1099), + [anon_sym_out] = ACTIONS(1099), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1067), - [anon_sym_BANG] = ACTIONS(1107), - [anon_sym_TILDE] = ACTIONS(1107), - [anon_sym_PLUS_PLUS] = ACTIONS(1107), - [anon_sym_DASH_DASH] = ACTIONS(1107), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(1101), + [anon_sym_TILDE] = ACTIONS(1101), + [anon_sym_PLUS_PLUS] = ACTIONS(1101), + [anon_sym_DASH_DASH] = ACTIONS(1101), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1109), - [anon_sym_DASH] = ACTIONS(1109), - [anon_sym_STAR] = ACTIONS(1111), - [anon_sym_CARET] = ACTIONS(1107), - [anon_sym_AMP] = ACTIONS(1107), - [anon_sym_GT_EQ] = ACTIONS(1073), - [anon_sym_LT_EQ] = ACTIONS(1073), - [anon_sym_this] = ACTIONS(1113), - [anon_sym_scoped] = ACTIONS(1115), - [anon_sym_params] = ACTIONS(1117), + [anon_sym_PLUS] = ACTIONS(1103), + [anon_sym_DASH] = ACTIONS(1103), + [anon_sym_STAR] = ACTIONS(1105), + [anon_sym_CARET] = ACTIONS(1101), + [anon_sym_AMP] = ACTIONS(1101), + [anon_sym_GT_EQ] = ACTIONS(1071), + [anon_sym_LT_EQ] = ACTIONS(1071), + [anon_sym_this] = ACTIONS(1107), + [anon_sym_scoped] = ACTIONS(1109), + [anon_sym_params] = ACTIONS(1111), [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(1077), + [anon_sym_var] = ACTIONS(1075), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1067), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1119), + [anon_sym_throw] = ACTIONS(1113), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1121), - [sym_discard] = ACTIONS(1083), - [anon_sym_DOT_DOT] = ACTIONS(1125), - [anon_sym_not] = ACTIONS(1127), + [anon_sym_await] = ACTIONS(1115), + [sym_discard] = ACTIONS(1081), + [anon_sym_DOT_DOT] = ACTIONS(1119), + [anon_sym_not] = ACTIONS(1121), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -57049,7 +56935,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(1089), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -57066,104 +56952,104 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [139] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_parameter] = STATE(6948), - [sym__parameter_array] = STATE(6996), - [sym_argument] = STATE(7273), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(5634), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2234), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(4982), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_tuple_element] = STATE(7255), - [sym_pattern] = STATE(6695), - [sym_constant_pattern] = STATE(3486), - [sym_parenthesized_pattern] = STATE(3486), - [sym_var_pattern] = STATE(3486), - [sym_type_pattern] = STATE(3486), - [sym_list_pattern] = STATE(3486), - [sym_recursive_pattern] = STATE(3486), - [sym_positional_pattern_clause] = STATE(5175), - [sym_property_pattern_clause] = STATE(5675), - [sym_subpattern] = STATE(7235), - [sym_relational_pattern] = STATE(3486), - [sym_negated_pattern] = STATE(3486), - [sym_and_pattern] = STATE(3486), - [sym_or_pattern] = STATE(3486), - [sym_declaration_pattern] = STATE(3486), - [sym_expression] = STATE(5234), - [sym_non_lvalue_expression] = STATE(5333), - [sym_lvalue_expression] = STATE(3525), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(4216), - [sym_postfix_unary_expression] = STATE(4219), - [sym_prefix_unary_expression] = STATE(4219), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6161), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(4216), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(4219), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(4216), - [sym_member_access_expression] = STATE(3121), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(4219), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7323), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_declaration_expression] = STATE(6803), - [sym_default_expression] = STATE(4216), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(4216), - [sym_typeof_expression] = STATE(4216), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(3121), - [sym_literal] = STATE(4216), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2222), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_parameter] = STATE(6769), + [sym__parameter_array] = STATE(6785), + [sym_argument] = STATE(7133), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(5528), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2224), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(4924), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_tuple_element] = STATE(7118), + [sym_pattern] = STATE(6680), + [sym_constant_pattern] = STATE(3429), + [sym_parenthesized_pattern] = STATE(3429), + [sym_var_pattern] = STATE(3429), + [sym_type_pattern] = STATE(3429), + [sym_list_pattern] = STATE(3429), + [sym_recursive_pattern] = STATE(3429), + [sym_positional_pattern_clause] = STATE(5135), + [sym_property_pattern_clause] = STATE(5666), + [sym_subpattern] = STATE(7245), + [sym_relational_pattern] = STATE(3429), + [sym_negated_pattern] = STATE(3429), + [sym_and_pattern] = STATE(3429), + [sym_or_pattern] = STATE(3429), + [sym_declaration_pattern] = STATE(3429), + [sym_expression] = STATE(5221), + [sym_non_lvalue_expression] = STATE(5315), + [sym_lvalue_expression] = STATE(3535), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(4202), + [sym_postfix_unary_expression] = STATE(4203), + [sym_prefix_unary_expression] = STATE(4203), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6163), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(4202), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(4203), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(4202), + [sym_member_access_expression] = STATE(3112), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(4203), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7496), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_declaration_expression] = STATE(6902), + [sym_default_expression] = STATE(4202), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(4202), + [sym_typeof_expression] = STATE(4202), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(3112), + [sym_literal] = STATE(4202), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2221), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(139), [sym_preproc_endregion] = STATE(139), [sym_preproc_line] = STATE(139), @@ -57173,59 +57059,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(2852), - [aux_sym__parameter_type_with_modifiers_repeat1] = STATE(3489), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [aux_sym__class_declaration_initializer_repeat1] = STATE(2843), + [aux_sym__parameter_type_with_modifiers_repeat1] = STATE(3452), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1049), - [anon_sym_LPAREN] = ACTIONS(1143), - [anon_sym_RPAREN] = ACTIONS(1145), - [anon_sym_ref] = ACTIONS(1099), - [anon_sym_LBRACE] = ACTIONS(1059), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_LPAREN] = ACTIONS(1141), + [anon_sym_RPAREN] = ACTIONS(1143), + [anon_sym_ref] = ACTIONS(1093), + [anon_sym_LBRACE] = ACTIONS(1057), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1101), - [anon_sym_readonly] = ACTIONS(1103), - [anon_sym_LT] = ACTIONS(1063), - [anon_sym_GT] = ACTIONS(1063), - [anon_sym_in] = ACTIONS(1105), - [anon_sym_out] = ACTIONS(1105), + [anon_sym_new] = ACTIONS(1095), + [anon_sym_readonly] = ACTIONS(1097), + [anon_sym_LT] = ACTIONS(1061), + [anon_sym_GT] = ACTIONS(1061), + [anon_sym_in] = ACTIONS(1099), + [anon_sym_out] = ACTIONS(1099), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1067), - [anon_sym_BANG] = ACTIONS(1107), - [anon_sym_TILDE] = ACTIONS(1107), - [anon_sym_PLUS_PLUS] = ACTIONS(1107), - [anon_sym_DASH_DASH] = ACTIONS(1107), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(1101), + [anon_sym_TILDE] = ACTIONS(1101), + [anon_sym_PLUS_PLUS] = ACTIONS(1101), + [anon_sym_DASH_DASH] = ACTIONS(1101), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1109), - [anon_sym_DASH] = ACTIONS(1109), - [anon_sym_STAR] = ACTIONS(1111), - [anon_sym_CARET] = ACTIONS(1107), - [anon_sym_AMP] = ACTIONS(1107), - [anon_sym_GT_EQ] = ACTIONS(1073), - [anon_sym_LT_EQ] = ACTIONS(1073), - [anon_sym_this] = ACTIONS(1113), - [anon_sym_scoped] = ACTIONS(1115), - [anon_sym_params] = ACTIONS(1117), + [anon_sym_PLUS] = ACTIONS(1103), + [anon_sym_DASH] = ACTIONS(1103), + [anon_sym_STAR] = ACTIONS(1105), + [anon_sym_CARET] = ACTIONS(1101), + [anon_sym_AMP] = ACTIONS(1101), + [anon_sym_GT_EQ] = ACTIONS(1071), + [anon_sym_LT_EQ] = ACTIONS(1071), + [anon_sym_this] = ACTIONS(1107), + [anon_sym_scoped] = ACTIONS(1109), + [anon_sym_params] = ACTIONS(1111), [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(1077), + [anon_sym_var] = ACTIONS(1075), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1067), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1119), + [anon_sym_throw] = ACTIONS(1113), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1121), - [sym_discard] = ACTIONS(1083), - [anon_sym_DOT_DOT] = ACTIONS(1125), - [anon_sym_not] = ACTIONS(1127), + [anon_sym_await] = ACTIONS(1115), + [sym_discard] = ACTIONS(1081), + [anon_sym_DOT_DOT] = ACTIONS(1119), + [anon_sym_not] = ACTIONS(1121), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -57250,7 +57136,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(1089), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -57267,104 +57153,104 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [140] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_parameter] = STATE(6948), - [sym__parameter_array] = STATE(6996), - [sym_argument] = STATE(7273), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(5634), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2234), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(4937), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_tuple_element] = STATE(7255), - [sym_pattern] = STATE(6695), - [sym_constant_pattern] = STATE(3486), - [sym_parenthesized_pattern] = STATE(3486), - [sym_var_pattern] = STATE(3486), - [sym_type_pattern] = STATE(3486), - [sym_list_pattern] = STATE(3486), - [sym_recursive_pattern] = STATE(3486), - [sym_positional_pattern_clause] = STATE(5175), - [sym_property_pattern_clause] = STATE(5675), - [sym_subpattern] = STATE(7235), - [sym_relational_pattern] = STATE(3486), - [sym_negated_pattern] = STATE(3486), - [sym_and_pattern] = STATE(3486), - [sym_or_pattern] = STATE(3486), - [sym_declaration_pattern] = STATE(3486), - [sym_expression] = STATE(5234), - [sym_non_lvalue_expression] = STATE(5333), - [sym_lvalue_expression] = STATE(3525), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(4216), - [sym_postfix_unary_expression] = STATE(4219), - [sym_prefix_unary_expression] = STATE(4219), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6161), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(4216), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(4219), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(4216), - [sym_member_access_expression] = STATE(3121), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(4219), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7323), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_declaration_expression] = STATE(6803), - [sym_default_expression] = STATE(4216), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(4216), - [sym_typeof_expression] = STATE(4216), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(3121), - [sym_literal] = STATE(4216), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2222), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_parameter] = STATE(6769), + [sym__parameter_array] = STATE(6785), + [sym_argument] = STATE(7133), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(5528), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2224), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5106), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_tuple_element] = STATE(7118), + [sym_pattern] = STATE(6680), + [sym_constant_pattern] = STATE(3429), + [sym_parenthesized_pattern] = STATE(3429), + [sym_var_pattern] = STATE(3429), + [sym_type_pattern] = STATE(3429), + [sym_list_pattern] = STATE(3429), + [sym_recursive_pattern] = STATE(3429), + [sym_positional_pattern_clause] = STATE(5135), + [sym_property_pattern_clause] = STATE(5666), + [sym_subpattern] = STATE(7245), + [sym_relational_pattern] = STATE(3429), + [sym_negated_pattern] = STATE(3429), + [sym_and_pattern] = STATE(3429), + [sym_or_pattern] = STATE(3429), + [sym_declaration_pattern] = STATE(3429), + [sym_expression] = STATE(5221), + [sym_non_lvalue_expression] = STATE(5315), + [sym_lvalue_expression] = STATE(3535), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(4202), + [sym_postfix_unary_expression] = STATE(4203), + [sym_prefix_unary_expression] = STATE(4203), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6163), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(4202), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(4203), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(4202), + [sym_member_access_expression] = STATE(3112), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(4203), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7496), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_declaration_expression] = STATE(6902), + [sym_default_expression] = STATE(4202), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(4202), + [sym_typeof_expression] = STATE(4202), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(3112), + [sym_literal] = STATE(4202), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2221), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(140), [sym_preproc_endregion] = STATE(140), [sym_preproc_line] = STATE(140), @@ -57374,59 +57260,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(2852), - [aux_sym__parameter_type_with_modifiers_repeat1] = STATE(3489), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [aux_sym__class_declaration_initializer_repeat1] = STATE(2843), + [aux_sym__parameter_type_with_modifiers_repeat1] = STATE(3452), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1049), - [anon_sym_LPAREN] = ACTIONS(1143), - [anon_sym_RPAREN] = ACTIONS(1145), - [anon_sym_ref] = ACTIONS(1099), - [anon_sym_LBRACE] = ACTIONS(1059), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_LPAREN] = ACTIONS(1141), + [anon_sym_RPAREN] = ACTIONS(1143), + [anon_sym_ref] = ACTIONS(1093), + [anon_sym_LBRACE] = ACTIONS(1057), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1101), - [anon_sym_readonly] = ACTIONS(1103), - [anon_sym_LT] = ACTIONS(1063), - [anon_sym_GT] = ACTIONS(1063), - [anon_sym_in] = ACTIONS(1105), - [anon_sym_out] = ACTIONS(1105), + [anon_sym_new] = ACTIONS(1095), + [anon_sym_readonly] = ACTIONS(1097), + [anon_sym_LT] = ACTIONS(1061), + [anon_sym_GT] = ACTIONS(1061), + [anon_sym_in] = ACTIONS(1099), + [anon_sym_out] = ACTIONS(1099), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1067), - [anon_sym_BANG] = ACTIONS(1107), - [anon_sym_TILDE] = ACTIONS(1107), - [anon_sym_PLUS_PLUS] = ACTIONS(1107), - [anon_sym_DASH_DASH] = ACTIONS(1107), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(1101), + [anon_sym_TILDE] = ACTIONS(1101), + [anon_sym_PLUS_PLUS] = ACTIONS(1101), + [anon_sym_DASH_DASH] = ACTIONS(1101), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1109), - [anon_sym_DASH] = ACTIONS(1109), - [anon_sym_STAR] = ACTIONS(1111), - [anon_sym_CARET] = ACTIONS(1107), - [anon_sym_AMP] = ACTIONS(1107), - [anon_sym_GT_EQ] = ACTIONS(1073), - [anon_sym_LT_EQ] = ACTIONS(1073), - [anon_sym_this] = ACTIONS(1113), - [anon_sym_scoped] = ACTIONS(1115), - [anon_sym_params] = ACTIONS(1117), + [anon_sym_PLUS] = ACTIONS(1103), + [anon_sym_DASH] = ACTIONS(1103), + [anon_sym_STAR] = ACTIONS(1105), + [anon_sym_CARET] = ACTIONS(1101), + [anon_sym_AMP] = ACTIONS(1101), + [anon_sym_GT_EQ] = ACTIONS(1071), + [anon_sym_LT_EQ] = ACTIONS(1071), + [anon_sym_this] = ACTIONS(1107), + [anon_sym_scoped] = ACTIONS(1109), + [anon_sym_params] = ACTIONS(1111), [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(1077), + [anon_sym_var] = ACTIONS(1075), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1067), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1119), + [anon_sym_throw] = ACTIONS(1113), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1121), - [sym_discard] = ACTIONS(1083), - [anon_sym_DOT_DOT] = ACTIONS(1125), - [anon_sym_not] = ACTIONS(1127), + [anon_sym_await] = ACTIONS(1115), + [sym_discard] = ACTIONS(1081), + [anon_sym_DOT_DOT] = ACTIONS(1119), + [anon_sym_not] = ACTIONS(1121), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -57451,7 +57337,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(1089), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -57468,104 +57354,104 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [141] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_parameter] = STATE(6948), - [sym__parameter_array] = STATE(6996), - [sym_argument] = STATE(7273), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(5634), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2234), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(4996), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_tuple_element] = STATE(7255), - [sym_pattern] = STATE(6695), - [sym_constant_pattern] = STATE(3486), - [sym_parenthesized_pattern] = STATE(3486), - [sym_var_pattern] = STATE(3486), - [sym_type_pattern] = STATE(3486), - [sym_list_pattern] = STATE(3486), - [sym_recursive_pattern] = STATE(3486), - [sym_positional_pattern_clause] = STATE(5175), - [sym_property_pattern_clause] = STATE(5675), - [sym_subpattern] = STATE(7235), - [sym_relational_pattern] = STATE(3486), - [sym_negated_pattern] = STATE(3486), - [sym_and_pattern] = STATE(3486), - [sym_or_pattern] = STATE(3486), - [sym_declaration_pattern] = STATE(3486), - [sym_expression] = STATE(5234), - [sym_non_lvalue_expression] = STATE(5333), - [sym_lvalue_expression] = STATE(3525), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(4216), - [sym_postfix_unary_expression] = STATE(4219), - [sym_prefix_unary_expression] = STATE(4219), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6161), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(4216), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(4219), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(4216), - [sym_member_access_expression] = STATE(3121), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(4219), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7323), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_declaration_expression] = STATE(6803), - [sym_default_expression] = STATE(4216), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(4216), - [sym_typeof_expression] = STATE(4216), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(3121), - [sym_literal] = STATE(4216), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2222), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_parameter] = STATE(6769), + [sym__parameter_array] = STATE(6785), + [sym_argument] = STATE(7133), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(5528), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2224), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(4989), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_tuple_element] = STATE(7118), + [sym_pattern] = STATE(6680), + [sym_constant_pattern] = STATE(3429), + [sym_parenthesized_pattern] = STATE(3429), + [sym_var_pattern] = STATE(3429), + [sym_type_pattern] = STATE(3429), + [sym_list_pattern] = STATE(3429), + [sym_recursive_pattern] = STATE(3429), + [sym_positional_pattern_clause] = STATE(5135), + [sym_property_pattern_clause] = STATE(5666), + [sym_subpattern] = STATE(7245), + [sym_relational_pattern] = STATE(3429), + [sym_negated_pattern] = STATE(3429), + [sym_and_pattern] = STATE(3429), + [sym_or_pattern] = STATE(3429), + [sym_declaration_pattern] = STATE(3429), + [sym_expression] = STATE(5221), + [sym_non_lvalue_expression] = STATE(5315), + [sym_lvalue_expression] = STATE(3535), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(4202), + [sym_postfix_unary_expression] = STATE(4203), + [sym_prefix_unary_expression] = STATE(4203), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6163), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(4202), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(4203), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(4202), + [sym_member_access_expression] = STATE(3112), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(4203), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7496), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_declaration_expression] = STATE(6902), + [sym_default_expression] = STATE(4202), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(4202), + [sym_typeof_expression] = STATE(4202), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(3112), + [sym_literal] = STATE(4202), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2221), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(141), [sym_preproc_endregion] = STATE(141), [sym_preproc_line] = STATE(141), @@ -57575,59 +57461,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(2852), - [aux_sym__parameter_type_with_modifiers_repeat1] = STATE(3489), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [aux_sym__class_declaration_initializer_repeat1] = STATE(2843), + [aux_sym__parameter_type_with_modifiers_repeat1] = STATE(3452), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1049), - [anon_sym_LPAREN] = ACTIONS(1143), - [anon_sym_RPAREN] = ACTIONS(1145), - [anon_sym_ref] = ACTIONS(1099), - [anon_sym_LBRACE] = ACTIONS(1059), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_LPAREN] = ACTIONS(1141), + [anon_sym_RPAREN] = ACTIONS(1143), + [anon_sym_ref] = ACTIONS(1093), + [anon_sym_LBRACE] = ACTIONS(1057), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1101), - [anon_sym_readonly] = ACTIONS(1103), - [anon_sym_LT] = ACTIONS(1063), - [anon_sym_GT] = ACTIONS(1063), - [anon_sym_in] = ACTIONS(1105), - [anon_sym_out] = ACTIONS(1105), + [anon_sym_new] = ACTIONS(1095), + [anon_sym_readonly] = ACTIONS(1097), + [anon_sym_LT] = ACTIONS(1061), + [anon_sym_GT] = ACTIONS(1061), + [anon_sym_in] = ACTIONS(1099), + [anon_sym_out] = ACTIONS(1099), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1067), - [anon_sym_BANG] = ACTIONS(1107), - [anon_sym_TILDE] = ACTIONS(1107), - [anon_sym_PLUS_PLUS] = ACTIONS(1107), - [anon_sym_DASH_DASH] = ACTIONS(1107), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(1101), + [anon_sym_TILDE] = ACTIONS(1101), + [anon_sym_PLUS_PLUS] = ACTIONS(1101), + [anon_sym_DASH_DASH] = ACTIONS(1101), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1109), - [anon_sym_DASH] = ACTIONS(1109), - [anon_sym_STAR] = ACTIONS(1111), - [anon_sym_CARET] = ACTIONS(1107), - [anon_sym_AMP] = ACTIONS(1107), - [anon_sym_GT_EQ] = ACTIONS(1073), - [anon_sym_LT_EQ] = ACTIONS(1073), - [anon_sym_this] = ACTIONS(1113), - [anon_sym_scoped] = ACTIONS(1115), - [anon_sym_params] = ACTIONS(1117), + [anon_sym_PLUS] = ACTIONS(1103), + [anon_sym_DASH] = ACTIONS(1103), + [anon_sym_STAR] = ACTIONS(1105), + [anon_sym_CARET] = ACTIONS(1101), + [anon_sym_AMP] = ACTIONS(1101), + [anon_sym_GT_EQ] = ACTIONS(1071), + [anon_sym_LT_EQ] = ACTIONS(1071), + [anon_sym_this] = ACTIONS(1107), + [anon_sym_scoped] = ACTIONS(1109), + [anon_sym_params] = ACTIONS(1111), [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(1077), + [anon_sym_var] = ACTIONS(1075), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1067), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1119), + [anon_sym_throw] = ACTIONS(1113), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1121), - [sym_discard] = ACTIONS(1083), - [anon_sym_DOT_DOT] = ACTIONS(1125), - [anon_sym_not] = ACTIONS(1127), + [anon_sym_await] = ACTIONS(1115), + [sym_discard] = ACTIONS(1081), + [anon_sym_DOT_DOT] = ACTIONS(1119), + [anon_sym_not] = ACTIONS(1121), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -57652,7 +57538,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(1089), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -57669,104 +57555,104 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [142] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_parameter] = STATE(6948), - [sym__parameter_array] = STATE(6996), - [sym_argument] = STATE(7273), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(5634), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2234), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5001), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_tuple_element] = STATE(7255), - [sym_pattern] = STATE(6695), - [sym_constant_pattern] = STATE(3486), - [sym_parenthesized_pattern] = STATE(3486), - [sym_var_pattern] = STATE(3486), - [sym_type_pattern] = STATE(3486), - [sym_list_pattern] = STATE(3486), - [sym_recursive_pattern] = STATE(3486), - [sym_positional_pattern_clause] = STATE(5175), - [sym_property_pattern_clause] = STATE(5675), - [sym_subpattern] = STATE(7235), - [sym_relational_pattern] = STATE(3486), - [sym_negated_pattern] = STATE(3486), - [sym_and_pattern] = STATE(3486), - [sym_or_pattern] = STATE(3486), - [sym_declaration_pattern] = STATE(3486), - [sym_expression] = STATE(5234), - [sym_non_lvalue_expression] = STATE(5333), - [sym_lvalue_expression] = STATE(3525), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(4216), - [sym_postfix_unary_expression] = STATE(4219), - [sym_prefix_unary_expression] = STATE(4219), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6161), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(4216), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(4219), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(4216), - [sym_member_access_expression] = STATE(3121), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(4219), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7323), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_declaration_expression] = STATE(6803), - [sym_default_expression] = STATE(4216), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(4216), - [sym_typeof_expression] = STATE(4216), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(3121), - [sym_literal] = STATE(4216), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2222), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_parameter] = STATE(6769), + [sym__parameter_array] = STATE(6785), + [sym_argument] = STATE(7133), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(5528), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2224), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(4946), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_tuple_element] = STATE(7118), + [sym_pattern] = STATE(6680), + [sym_constant_pattern] = STATE(3429), + [sym_parenthesized_pattern] = STATE(3429), + [sym_var_pattern] = STATE(3429), + [sym_type_pattern] = STATE(3429), + [sym_list_pattern] = STATE(3429), + [sym_recursive_pattern] = STATE(3429), + [sym_positional_pattern_clause] = STATE(5135), + [sym_property_pattern_clause] = STATE(5666), + [sym_subpattern] = STATE(7245), + [sym_relational_pattern] = STATE(3429), + [sym_negated_pattern] = STATE(3429), + [sym_and_pattern] = STATE(3429), + [sym_or_pattern] = STATE(3429), + [sym_declaration_pattern] = STATE(3429), + [sym_expression] = STATE(5221), + [sym_non_lvalue_expression] = STATE(5315), + [sym_lvalue_expression] = STATE(3535), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(4202), + [sym_postfix_unary_expression] = STATE(4203), + [sym_prefix_unary_expression] = STATE(4203), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6163), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(4202), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(4203), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(4202), + [sym_member_access_expression] = STATE(3112), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(4203), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7496), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_declaration_expression] = STATE(6902), + [sym_default_expression] = STATE(4202), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(4202), + [sym_typeof_expression] = STATE(4202), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(3112), + [sym_literal] = STATE(4202), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2221), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(142), [sym_preproc_endregion] = STATE(142), [sym_preproc_line] = STATE(142), @@ -57776,59 +57662,461 @@ 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(2852), - [aux_sym__parameter_type_with_modifiers_repeat1] = STATE(3489), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [aux_sym__class_declaration_initializer_repeat1] = STATE(2843), + [aux_sym__parameter_type_with_modifiers_repeat1] = STATE(3452), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1049), - [anon_sym_LPAREN] = ACTIONS(1143), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_LPAREN] = ACTIONS(1141), + [anon_sym_RPAREN] = ACTIONS(1143), + [anon_sym_ref] = ACTIONS(1093), + [anon_sym_LBRACE] = ACTIONS(1057), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), + [anon_sym_file] = ACTIONS(29), + [anon_sym_new] = ACTIONS(1095), + [anon_sym_readonly] = ACTIONS(1097), + [anon_sym_LT] = ACTIONS(1061), + [anon_sym_GT] = ACTIONS(1061), + [anon_sym_in] = ACTIONS(1099), + [anon_sym_out] = ACTIONS(1099), + [anon_sym_where] = ACTIONS(29), + [anon_sym_notnull] = ACTIONS(29), + [anon_sym_unmanaged] = ACTIONS(29), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(1101), + [anon_sym_TILDE] = ACTIONS(1101), + [anon_sym_PLUS_PLUS] = ACTIONS(1101), + [anon_sym_DASH_DASH] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(77), + [anon_sym_false] = ACTIONS(77), + [anon_sym_PLUS] = ACTIONS(1103), + [anon_sym_DASH] = ACTIONS(1103), + [anon_sym_STAR] = ACTIONS(1105), + [anon_sym_CARET] = ACTIONS(1101), + [anon_sym_AMP] = ACTIONS(1101), + [anon_sym_GT_EQ] = ACTIONS(1071), + [anon_sym_LT_EQ] = ACTIONS(1071), + [anon_sym_this] = ACTIONS(1107), + [anon_sym_scoped] = ACTIONS(1109), + [anon_sym_params] = ACTIONS(1111), + [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(1113), + [anon_sym_when] = ACTIONS(29), + [anon_sym_await] = ACTIONS(1115), + [sym_discard] = ACTIONS(1081), + [anon_sym_DOT_DOT] = ACTIONS(1119), + [anon_sym_not] = ACTIONS(1121), + [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), + }, + [143] = { + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_parameter] = STATE(6769), + [sym__parameter_array] = STATE(6785), + [sym_argument] = STATE(7133), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(5528), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2224), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5006), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_tuple_element] = STATE(7118), + [sym_pattern] = STATE(6680), + [sym_constant_pattern] = STATE(3429), + [sym_parenthesized_pattern] = STATE(3429), + [sym_var_pattern] = STATE(3429), + [sym_type_pattern] = STATE(3429), + [sym_list_pattern] = STATE(3429), + [sym_recursive_pattern] = STATE(3429), + [sym_positional_pattern_clause] = STATE(5135), + [sym_property_pattern_clause] = STATE(5666), + [sym_subpattern] = STATE(7245), + [sym_relational_pattern] = STATE(3429), + [sym_negated_pattern] = STATE(3429), + [sym_and_pattern] = STATE(3429), + [sym_or_pattern] = STATE(3429), + [sym_declaration_pattern] = STATE(3429), + [sym_expression] = STATE(5221), + [sym_non_lvalue_expression] = STATE(5315), + [sym_lvalue_expression] = STATE(3535), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(4202), + [sym_postfix_unary_expression] = STATE(4203), + [sym_prefix_unary_expression] = STATE(4203), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6163), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(4202), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(4203), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(4202), + [sym_member_access_expression] = STATE(3112), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(4203), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7496), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_declaration_expression] = STATE(6902), + [sym_default_expression] = STATE(4202), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(4202), + [sym_typeof_expression] = STATE(4202), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(3112), + [sym_literal] = STATE(4202), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2221), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), + [sym_preproc_region] = STATE(143), + [sym_preproc_endregion] = STATE(143), + [sym_preproc_line] = STATE(143), + [sym_preproc_pragma] = STATE(143), + [sym_preproc_nullable] = STATE(143), + [sym_preproc_error] = STATE(143), + [sym_preproc_warning] = STATE(143), + [sym_preproc_define] = STATE(143), + [sym_preproc_undef] = STATE(143), + [aux_sym__class_declaration_initializer_repeat1] = STATE(2843), + [aux_sym__parameter_type_with_modifiers_repeat1] = STATE(3452), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), + [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(1141), + [anon_sym_RPAREN] = ACTIONS(1143), + [anon_sym_ref] = ACTIONS(1093), + [anon_sym_LBRACE] = ACTIONS(1057), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), + [anon_sym_file] = ACTIONS(29), + [anon_sym_new] = ACTIONS(1095), + [anon_sym_readonly] = ACTIONS(1097), + [anon_sym_LT] = ACTIONS(1061), + [anon_sym_GT] = ACTIONS(1061), + [anon_sym_in] = ACTIONS(1099), + [anon_sym_out] = ACTIONS(1099), + [anon_sym_where] = ACTIONS(29), + [anon_sym_notnull] = ACTIONS(29), + [anon_sym_unmanaged] = ACTIONS(29), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(1101), + [anon_sym_TILDE] = ACTIONS(1101), + [anon_sym_PLUS_PLUS] = ACTIONS(1101), + [anon_sym_DASH_DASH] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(77), + [anon_sym_false] = ACTIONS(77), + [anon_sym_PLUS] = ACTIONS(1103), + [anon_sym_DASH] = ACTIONS(1103), + [anon_sym_STAR] = ACTIONS(1105), + [anon_sym_CARET] = ACTIONS(1101), + [anon_sym_AMP] = ACTIONS(1101), + [anon_sym_GT_EQ] = ACTIONS(1071), + [anon_sym_LT_EQ] = ACTIONS(1071), + [anon_sym_this] = ACTIONS(1107), + [anon_sym_scoped] = ACTIONS(1109), + [anon_sym_params] = ACTIONS(1111), + [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(1113), + [anon_sym_when] = ACTIONS(29), + [anon_sym_await] = ACTIONS(1115), + [sym_discard] = ACTIONS(1081), + [anon_sym_DOT_DOT] = ACTIONS(1119), + [anon_sym_not] = ACTIONS(1121), + [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), + }, + [144] = { + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_parameter] = STATE(6769), + [sym__parameter_array] = STATE(6785), + [sym_argument] = STATE(7201), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(5528), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2224), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(4957), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_tuple_element] = STATE(7058), + [sym_pattern] = STATE(6623), + [sym_constant_pattern] = STATE(3429), + [sym_parenthesized_pattern] = STATE(3429), + [sym_var_pattern] = STATE(3429), + [sym_type_pattern] = STATE(3429), + [sym_list_pattern] = STATE(3429), + [sym_recursive_pattern] = STATE(3429), + [sym_positional_pattern_clause] = STATE(5135), + [sym_property_pattern_clause] = STATE(5666), + [sym_subpattern] = STATE(7045), + [sym_relational_pattern] = STATE(3429), + [sym_negated_pattern] = STATE(3429), + [sym_and_pattern] = STATE(3429), + [sym_or_pattern] = STATE(3429), + [sym_declaration_pattern] = STATE(3429), + [sym_expression] = STATE(5221), + [sym_non_lvalue_expression] = STATE(5390), + [sym_lvalue_expression] = STATE(3535), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(4202), + [sym_postfix_unary_expression] = STATE(4203), + [sym_prefix_unary_expression] = STATE(4203), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6163), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(4202), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(4203), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(4202), + [sym_member_access_expression] = STATE(3112), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(4203), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7496), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_declaration_expression] = STATE(6902), + [sym_default_expression] = STATE(4202), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(4202), + [sym_typeof_expression] = STATE(4202), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(3112), + [sym_literal] = STATE(4202), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2221), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), + [sym_preproc_region] = STATE(144), + [sym_preproc_endregion] = STATE(144), + [sym_preproc_line] = STATE(144), + [sym_preproc_pragma] = STATE(144), + [sym_preproc_nullable] = STATE(144), + [sym_preproc_error] = STATE(144), + [sym_preproc_warning] = STATE(144), + [sym_preproc_define] = STATE(144), + [sym_preproc_undef] = STATE(144), + [aux_sym__class_declaration_initializer_repeat1] = STATE(2843), + [aux_sym__parameter_type_with_modifiers_repeat1] = STATE(3452), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), + [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(1141), [anon_sym_RPAREN] = ACTIONS(1145), - [anon_sym_ref] = ACTIONS(1099), - [anon_sym_LBRACE] = ACTIONS(1059), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_ref] = ACTIONS(1093), + [anon_sym_LBRACE] = ACTIONS(1057), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1101), - [anon_sym_readonly] = ACTIONS(1103), - [anon_sym_LT] = ACTIONS(1063), - [anon_sym_GT] = ACTIONS(1063), - [anon_sym_in] = ACTIONS(1105), - [anon_sym_out] = ACTIONS(1105), + [anon_sym_new] = ACTIONS(1095), + [anon_sym_readonly] = ACTIONS(1097), + [anon_sym_LT] = ACTIONS(1061), + [anon_sym_GT] = ACTIONS(1061), + [anon_sym_in] = ACTIONS(1099), + [anon_sym_out] = ACTIONS(1099), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1067), - [anon_sym_BANG] = ACTIONS(1107), - [anon_sym_TILDE] = ACTIONS(1107), - [anon_sym_PLUS_PLUS] = ACTIONS(1107), - [anon_sym_DASH_DASH] = ACTIONS(1107), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(1101), + [anon_sym_TILDE] = ACTIONS(1101), + [anon_sym_PLUS_PLUS] = ACTIONS(1101), + [anon_sym_DASH_DASH] = ACTIONS(1101), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1109), - [anon_sym_DASH] = ACTIONS(1109), - [anon_sym_STAR] = ACTIONS(1111), - [anon_sym_CARET] = ACTIONS(1107), - [anon_sym_AMP] = ACTIONS(1107), - [anon_sym_GT_EQ] = ACTIONS(1073), - [anon_sym_LT_EQ] = ACTIONS(1073), - [anon_sym_this] = ACTIONS(1113), - [anon_sym_scoped] = ACTIONS(1115), - [anon_sym_params] = ACTIONS(1117), + [anon_sym_PLUS] = ACTIONS(1103), + [anon_sym_DASH] = ACTIONS(1103), + [anon_sym_STAR] = ACTIONS(1105), + [anon_sym_CARET] = ACTIONS(1101), + [anon_sym_AMP] = ACTIONS(1101), + [anon_sym_GT_EQ] = ACTIONS(1071), + [anon_sym_LT_EQ] = ACTIONS(1071), + [anon_sym_this] = ACTIONS(1107), + [anon_sym_scoped] = ACTIONS(1109), + [anon_sym_params] = ACTIONS(1111), [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(1077), + [anon_sym_var] = ACTIONS(1075), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1067), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1119), + [anon_sym_throw] = ACTIONS(1113), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1121), - [sym_discard] = ACTIONS(1083), - [anon_sym_DOT_DOT] = ACTIONS(1125), - [anon_sym_not] = ACTIONS(1127), + [anon_sym_await] = ACTIONS(1115), + [sym_discard] = ACTIONS(1081), + [anon_sym_DOT_DOT] = ACTIONS(1119), + [anon_sym_not] = ACTIONS(1121), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -57853,7 +58141,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(1089), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -57869,506 +58157,104 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_interpolation_raw_start] = ACTIONS(155), [sym_raw_string_start] = ACTIONS(157), }, - [143] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_parameter] = STATE(6948), - [sym__parameter_array] = STATE(6996), - [sym_argument] = STATE(7273), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(5634), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2234), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(4956), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_tuple_element] = STATE(7255), - [sym_pattern] = STATE(6695), - [sym_constant_pattern] = STATE(3486), - [sym_parenthesized_pattern] = STATE(3486), - [sym_var_pattern] = STATE(3486), - [sym_type_pattern] = STATE(3486), - [sym_list_pattern] = STATE(3486), - [sym_recursive_pattern] = STATE(3486), - [sym_positional_pattern_clause] = STATE(5175), - [sym_property_pattern_clause] = STATE(5675), - [sym_subpattern] = STATE(7235), - [sym_relational_pattern] = STATE(3486), - [sym_negated_pattern] = STATE(3486), - [sym_and_pattern] = STATE(3486), - [sym_or_pattern] = STATE(3486), - [sym_declaration_pattern] = STATE(3486), - [sym_expression] = STATE(5234), - [sym_non_lvalue_expression] = STATE(5333), - [sym_lvalue_expression] = STATE(3525), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(4216), - [sym_postfix_unary_expression] = STATE(4219), - [sym_prefix_unary_expression] = STATE(4219), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6161), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(4216), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(4219), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(4216), - [sym_member_access_expression] = STATE(3121), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(4219), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7323), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_declaration_expression] = STATE(6803), - [sym_default_expression] = STATE(4216), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(4216), - [sym_typeof_expression] = STATE(4216), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(3121), - [sym_literal] = STATE(4216), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2222), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), - [sym_preproc_region] = STATE(143), - [sym_preproc_endregion] = STATE(143), - [sym_preproc_line] = STATE(143), - [sym_preproc_pragma] = STATE(143), - [sym_preproc_nullable] = STATE(143), - [sym_preproc_error] = STATE(143), - [sym_preproc_warning] = STATE(143), - [sym_preproc_define] = STATE(143), - [sym_preproc_undef] = STATE(143), - [aux_sym__class_declaration_initializer_repeat1] = STATE(2852), - [aux_sym__parameter_type_with_modifiers_repeat1] = STATE(3489), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), - [sym__identifier_token] = ACTIONS(25), - [anon_sym_alias] = ACTIONS(29), - [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1049), - [anon_sym_LPAREN] = ACTIONS(1143), - [anon_sym_RPAREN] = ACTIONS(1145), - [anon_sym_ref] = ACTIONS(1099), - [anon_sym_LBRACE] = ACTIONS(1059), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), - [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1101), - [anon_sym_readonly] = ACTIONS(1103), - [anon_sym_LT] = ACTIONS(1063), - [anon_sym_GT] = ACTIONS(1063), - [anon_sym_in] = ACTIONS(1105), - [anon_sym_out] = ACTIONS(1105), - [anon_sym_where] = ACTIONS(29), - [anon_sym_notnull] = ACTIONS(29), - [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1067), - [anon_sym_BANG] = ACTIONS(1107), - [anon_sym_TILDE] = ACTIONS(1107), - [anon_sym_PLUS_PLUS] = ACTIONS(1107), - [anon_sym_DASH_DASH] = ACTIONS(1107), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1109), - [anon_sym_DASH] = ACTIONS(1109), - [anon_sym_STAR] = ACTIONS(1111), - [anon_sym_CARET] = ACTIONS(1107), - [anon_sym_AMP] = ACTIONS(1107), - [anon_sym_GT_EQ] = ACTIONS(1073), - [anon_sym_LT_EQ] = ACTIONS(1073), - [anon_sym_this] = ACTIONS(1113), - [anon_sym_scoped] = ACTIONS(1115), - [anon_sym_params] = ACTIONS(1117), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(1077), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1067), - [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1119), - [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1121), - [sym_discard] = ACTIONS(1083), - [anon_sym_DOT_DOT] = ACTIONS(1125), - [anon_sym_not] = ACTIONS(1127), - [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(1089), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(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), - }, - [144] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2610), - [sym__name] = STATE(5898), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2197), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(3849), - [sym_non_lvalue_expression] = STATE(3277), - [sym_lvalue_expression] = STATE(3023), - [sym__expression_statement_expression] = STATE(3228), - [sym_assignment_expression] = STATE(3289), - [sym_binary_expression] = STATE(3228), - [sym_postfix_unary_expression] = STATE(3289), - [sym_prefix_unary_expression] = STATE(3289), - [sym__pointer_indirection_expression] = STATE(2609), - [sym_query_expression] = STATE(3228), - [sym_from_clause] = STATE(6172), - [sym_conditional_expression] = STATE(3228), - [sym_conditional_access_expression] = STATE(3228), - [sym_as_expression] = STATE(3228), - [sym_is_expression] = STATE(3228), - [sym_is_pattern_expression] = STATE(3228), - [sym_cast_expression] = STATE(3228), - [sym_checked_expression] = STATE(3228), - [sym_invocation_expression] = STATE(3289), - [sym_switch_expression] = STATE(3228), - [sym_await_expression] = STATE(3289), - [sym_throw_expression] = STATE(3228), - [sym_element_access_expression] = STATE(2609), - [sym_interpolated_string_expression] = STATE(3228), - [sym_member_access_expression] = STATE(2609), - [sym_object_creation_expression] = STATE(3289), - [sym_parenthesized_expression] = STATE(3289), - [sym__parenthesized_lvalue_expression] = STATE(2609), - [sym_lambda_expression] = STATE(3228), - [sym__lambda_expression_init] = STATE(7653), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3228), - [sym_anonymous_method_expression] = STATE(3228), - [sym_anonymous_object_creation_expression] = STATE(3228), - [sym_implicit_array_creation_expression] = STATE(3228), - [sym_implicit_object_creation_expression] = STATE(3228), - [sym_implicit_stackalloc_expression] = STATE(3228), - [sym_initializer_expression] = STATE(3228), - [sym_default_expression] = STATE(3228), - [sym_with_expression] = STATE(3228), - [sym_sizeof_expression] = STATE(3228), - [sym_typeof_expression] = STATE(3228), - [sym_makeref_expression] = STATE(3228), - [sym_ref_expression] = STATE(3228), - [sym_reftype_expression] = STATE(3228), - [sym_refvalue_expression] = STATE(3228), - [sym_stackalloc_expression] = STATE(3228), - [sym_range_expression] = STATE(3228), - [sym_tuple_expression] = STATE(2609), - [sym_literal] = STATE(3228), - [sym_character_literal] = STATE(3278), - [sym_string_literal] = STATE(3278), - [sym_raw_string_literal] = STATE(3278), - [sym_boolean_literal] = STATE(3278), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3228), - [sym_preproc_if_in_attribute_list] = STATE(5576), - [sym_preproc_region] = STATE(144), - [sym_preproc_endregion] = STATE(144), - [sym_preproc_line] = STATE(144), - [sym_preproc_pragma] = STATE(144), - [sym_preproc_nullable] = STATE(144), - [sym_preproc_error] = STATE(144), - [sym_preproc_warning] = STATE(144), - [sym_preproc_define] = STATE(144), - [sym_preproc_undef] = STATE(144), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3396), - [sym__identifier_token] = ACTIONS(25), - [anon_sym_alias] = ACTIONS(29), - [anon_sym_SEMI] = ACTIONS(1221), - [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1153), - [anon_sym_COMMA] = ACTIONS(1221), - [anon_sym_RBRACK] = ACTIONS(1221), - [anon_sym_LPAREN] = ACTIONS(1155), - [anon_sym_RPAREN] = ACTIONS(1221), - [anon_sym_ref] = ACTIONS(1157), - [anon_sym_LBRACE] = ACTIONS(1159), - [anon_sym_RBRACE] = ACTIONS(1221), - [anon_sym_delegate] = ACTIONS(1161), - [anon_sym_async] = ACTIONS(1047), - [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1163), - [anon_sym_LT] = ACTIONS(1223), - [anon_sym_GT] = ACTIONS(1223), - [anon_sym_where] = ACTIONS(29), - [anon_sym_QMARK] = ACTIONS(1223), - [anon_sym_notnull] = ACTIONS(29), - [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1167), - [anon_sym_BANG] = ACTIONS(1169), - [anon_sym_TILDE] = ACTIONS(1171), - [anon_sym_PLUS_PLUS] = ACTIONS(1171), - [anon_sym_DASH_DASH] = ACTIONS(1171), - [anon_sym_true] = ACTIONS(1173), - [anon_sym_false] = ACTIONS(1173), - [anon_sym_PLUS] = ACTIONS(1169), - [anon_sym_DASH] = ACTIONS(1169), - [anon_sym_STAR] = ACTIONS(1175), - [anon_sym_SLASH] = ACTIONS(1223), - [anon_sym_PERCENT] = ACTIONS(1221), - [anon_sym_CARET] = ACTIONS(1171), - [anon_sym_PIPE] = ACTIONS(1223), - [anon_sym_AMP] = ACTIONS(1169), - [anon_sym_LT_LT] = ACTIONS(1221), - [anon_sym_GT_GT] = ACTIONS(1223), - [anon_sym_GT_GT_GT] = ACTIONS(1221), - [anon_sym_EQ_EQ] = ACTIONS(1221), - [anon_sym_BANG_EQ] = ACTIONS(1221), - [anon_sym_GT_EQ] = ACTIONS(1221), - [anon_sym_LT_EQ] = ACTIONS(1221), - [anon_sym_this] = ACTIONS(1177), - [anon_sym_DOT] = ACTIONS(1223), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1179), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1181), - [anon_sym_unchecked] = ACTIONS(1167), - [anon_sym_yield] = ACTIONS(29), - [anon_sym_switch] = ACTIONS(1223), - [anon_sym_default] = ACTIONS(1183), - [anon_sym_throw] = ACTIONS(1185), - [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1187), - [anon_sym_DOT_DOT] = ACTIONS(1189), - [anon_sym_and] = ACTIONS(1223), - [anon_sym_or] = ACTIONS(1223), - [anon_sym_AMP_AMP] = ACTIONS(1221), - [anon_sym_PIPE_PIPE] = ACTIONS(1221), - [anon_sym_QMARK_QMARK] = ACTIONS(1221), - [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(1223), - [anon_sym_is] = ACTIONS(1223), - [anon_sym_DASH_GT] = ACTIONS(1221), - [anon_sym_stackalloc] = ACTIONS(1191), - [anon_sym_with] = ACTIONS(1223), - [anon_sym_sizeof] = ACTIONS(1193), - [anon_sym_typeof] = ACTIONS(1195), - [anon_sym___makeref] = ACTIONS(1197), - [anon_sym___reftype] = ACTIONS(1199), - [anon_sym___refvalue] = ACTIONS(1201), - [sym_null_literal] = ACTIONS(1203), - [anon_sym_SQUOTE] = ACTIONS(1205), - [sym_integer_literal] = ACTIONS(1203), - [sym_real_literal] = ACTIONS(1207), - [anon_sym_DQUOTE] = ACTIONS(1209), - [sym_verbatim_string_literal] = ACTIONS(1207), - [aux_sym_preproc_if_token1] = ACTIONS(1211), - [aux_sym_preproc_if_token3] = ACTIONS(1221), - [aux_sym_preproc_else_token1] = ACTIONS(1221), - [aux_sym_preproc_elif_token1] = ACTIONS(1221), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1213), - [sym_interpolation_verbatim_start] = ACTIONS(1215), - [sym_interpolation_raw_start] = ACTIONS(1217), - [sym_raw_string_start] = ACTIONS(1219), - }, [145] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_parameter] = STATE(6948), - [sym__parameter_array] = STATE(6996), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(5634), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2230), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5222), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_pattern] = STATE(6717), - [sym_constant_pattern] = STATE(3486), - [sym_parenthesized_pattern] = STATE(3486), - [sym_var_pattern] = STATE(3486), - [sym_type_pattern] = STATE(3486), - [sym_list_pattern] = STATE(3486), - [sym_recursive_pattern] = STATE(3486), - [sym_positional_pattern_clause] = STATE(5175), - [sym_property_pattern_clause] = STATE(5675), - [sym_subpattern] = STATE(7235), - [sym_relational_pattern] = STATE(3486), - [sym_negated_pattern] = STATE(3486), - [sym_and_pattern] = STATE(3486), - [sym_or_pattern] = STATE(3486), - [sym_declaration_pattern] = STATE(3486), - [sym__variable_designation] = STATE(6819), - [sym_parenthesized_variable_designation] = STATE(3463), - [sym_expression] = STATE(5385), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3664), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(4419), - [sym_postfix_unary_expression] = STATE(4420), - [sym_prefix_unary_expression] = STATE(4420), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6161), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(4419), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(4420), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(4419), - [sym_member_access_expression] = STATE(3135), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(4420), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7773), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(4419), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(4419), - [sym_typeof_expression] = STATE(4419), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(3135), - [sym_literal] = STATE(4419), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2215), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_parameter] = STATE(6769), + [sym__parameter_array] = STATE(6785), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(5528), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2225), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5169), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_pattern] = STATE(6702), + [sym_constant_pattern] = STATE(3429), + [sym_parenthesized_pattern] = STATE(3429), + [sym_var_pattern] = STATE(3429), + [sym_type_pattern] = STATE(3429), + [sym_list_pattern] = STATE(3429), + [sym_recursive_pattern] = STATE(3429), + [sym_positional_pattern_clause] = STATE(5135), + [sym_property_pattern_clause] = STATE(5666), + [sym_subpattern] = STATE(7245), + [sym_relational_pattern] = STATE(3429), + [sym_negated_pattern] = STATE(3429), + [sym_and_pattern] = STATE(3429), + [sym_or_pattern] = STATE(3429), + [sym_declaration_pattern] = STATE(3429), + [sym__variable_designation] = STATE(6930), + [sym_parenthesized_variable_designation] = STATE(3352), + [sym_expression] = STATE(5405), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3660), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(4418), + [sym_postfix_unary_expression] = STATE(4403), + [sym_prefix_unary_expression] = STATE(4403), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6163), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(4418), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(4403), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(4418), + [sym_member_access_expression] = STATE(3127), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(4403), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7633), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(4418), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(4418), + [sym_typeof_expression] = STATE(4418), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(3127), + [sym_literal] = STATE(4418), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2209), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(145), [sym_preproc_endregion] = STATE(145), [sym_preproc_line] = STATE(145), @@ -58378,59 +58264,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(2852), - [aux_sym__parameter_type_with_modifiers_repeat1] = STATE(3489), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [aux_sym__class_declaration_initializer_repeat1] = STATE(2843), + [aux_sym__parameter_type_with_modifiers_repeat1] = STATE(3452), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1049), - [anon_sym_LPAREN] = ACTIONS(1225), - [anon_sym_RPAREN] = ACTIONS(1097), - [anon_sym_ref] = ACTIONS(1227), - [anon_sym_LBRACE] = ACTIONS(1059), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_LPAREN] = ACTIONS(1223), + [anon_sym_RPAREN] = ACTIONS(1127), + [anon_sym_ref] = ACTIONS(1225), + [anon_sym_LBRACE] = ACTIONS(1057), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1101), - [anon_sym_readonly] = ACTIONS(1103), - [anon_sym_LT] = ACTIONS(1063), - [anon_sym_GT] = ACTIONS(1063), - [anon_sym_in] = ACTIONS(1103), - [anon_sym_out] = ACTIONS(1103), + [anon_sym_new] = ACTIONS(1095), + [anon_sym_readonly] = ACTIONS(1097), + [anon_sym_LT] = ACTIONS(1061), + [anon_sym_GT] = ACTIONS(1061), + [anon_sym_in] = ACTIONS(1097), + [anon_sym_out] = ACTIONS(1097), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1067), - [anon_sym_BANG] = ACTIONS(1107), - [anon_sym_TILDE] = ACTIONS(1107), - [anon_sym_PLUS_PLUS] = ACTIONS(1107), - [anon_sym_DASH_DASH] = ACTIONS(1107), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(1101), + [anon_sym_TILDE] = ACTIONS(1101), + [anon_sym_PLUS_PLUS] = ACTIONS(1101), + [anon_sym_DASH_DASH] = ACTIONS(1101), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1109), - [anon_sym_DASH] = ACTIONS(1109), - [anon_sym_STAR] = ACTIONS(1229), - [anon_sym_CARET] = ACTIONS(1107), - [anon_sym_AMP] = ACTIONS(1107), - [anon_sym_GT_EQ] = ACTIONS(1073), - [anon_sym_LT_EQ] = ACTIONS(1073), - [anon_sym_this] = ACTIONS(1113), - [anon_sym_scoped] = ACTIONS(1115), - [anon_sym_params] = ACTIONS(1117), + [anon_sym_PLUS] = ACTIONS(1103), + [anon_sym_DASH] = ACTIONS(1103), + [anon_sym_STAR] = ACTIONS(1227), + [anon_sym_CARET] = ACTIONS(1101), + [anon_sym_AMP] = ACTIONS(1101), + [anon_sym_GT_EQ] = ACTIONS(1071), + [anon_sym_LT_EQ] = ACTIONS(1071), + [anon_sym_this] = ACTIONS(1107), + [anon_sym_scoped] = ACTIONS(1109), + [anon_sym_params] = ACTIONS(1111), [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(1231), + [anon_sym_var] = ACTIONS(1229), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1067), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1233), + [anon_sym_throw] = ACTIONS(1231), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1235), - [sym_discard] = ACTIONS(1123), - [anon_sym_DOT_DOT] = ACTIONS(1237), - [anon_sym_not] = ACTIONS(1087), + [anon_sym_await] = ACTIONS(1233), + [sym_discard] = ACTIONS(1117), + [anon_sym_DOT_DOT] = ACTIONS(1235), + [anon_sym_not] = ACTIONS(1085), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -58455,7 +58341,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(1089), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -58472,103 +58358,103 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [146] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_parameter] = STATE(6948), - [sym__parameter_array] = STATE(6996), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(5634), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2230), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5222), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_pattern] = STATE(6717), - [sym_constant_pattern] = STATE(3486), - [sym_parenthesized_pattern] = STATE(3486), - [sym_var_pattern] = STATE(3486), - [sym_type_pattern] = STATE(3486), - [sym_list_pattern] = STATE(3486), - [sym_recursive_pattern] = STATE(3486), - [sym_positional_pattern_clause] = STATE(5175), - [sym_property_pattern_clause] = STATE(5675), - [sym_subpattern] = STATE(7235), - [sym_relational_pattern] = STATE(3486), - [sym_negated_pattern] = STATE(3486), - [sym_and_pattern] = STATE(3486), - [sym_or_pattern] = STATE(3486), - [sym_declaration_pattern] = STATE(3486), - [sym__variable_designation] = STATE(6819), - [sym_parenthesized_variable_designation] = STATE(3463), - [sym_expression] = STATE(5385), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3664), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(4419), - [sym_postfix_unary_expression] = STATE(4420), - [sym_prefix_unary_expression] = STATE(4420), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6161), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(4419), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(4420), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(4419), - [sym_member_access_expression] = STATE(3135), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(4420), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7773), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(4419), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(4419), - [sym_typeof_expression] = STATE(4419), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(3135), - [sym_literal] = STATE(4419), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2215), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_parameter] = STATE(6769), + [sym__parameter_array] = STATE(6785), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(5528), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2225), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5169), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_pattern] = STATE(6702), + [sym_constant_pattern] = STATE(3429), + [sym_parenthesized_pattern] = STATE(3429), + [sym_var_pattern] = STATE(3429), + [sym_type_pattern] = STATE(3429), + [sym_list_pattern] = STATE(3429), + [sym_recursive_pattern] = STATE(3429), + [sym_positional_pattern_clause] = STATE(5135), + [sym_property_pattern_clause] = STATE(5666), + [sym_subpattern] = STATE(7245), + [sym_relational_pattern] = STATE(3429), + [sym_negated_pattern] = STATE(3429), + [sym_and_pattern] = STATE(3429), + [sym_or_pattern] = STATE(3429), + [sym_declaration_pattern] = STATE(3429), + [sym__variable_designation] = STATE(6930), + [sym_parenthesized_variable_designation] = STATE(3352), + [sym_expression] = STATE(5405), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3660), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(4418), + [sym_postfix_unary_expression] = STATE(4403), + [sym_prefix_unary_expression] = STATE(4403), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6163), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(4418), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(4403), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(4418), + [sym_member_access_expression] = STATE(3127), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(4403), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7633), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(4418), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(4418), + [sym_typeof_expression] = STATE(4418), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(3127), + [sym_literal] = STATE(4418), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2209), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(146), [sym_preproc_endregion] = STATE(146), [sym_preproc_line] = STATE(146), @@ -58578,59 +58464,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(2852), - [aux_sym__parameter_type_with_modifiers_repeat1] = STATE(3489), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [aux_sym__class_declaration_initializer_repeat1] = STATE(2843), + [aux_sym__parameter_type_with_modifiers_repeat1] = STATE(3452), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1049), - [anon_sym_LPAREN] = ACTIONS(1225), - [anon_sym_RPAREN] = ACTIONS(1239), - [anon_sym_ref] = ACTIONS(1227), - [anon_sym_LBRACE] = ACTIONS(1059), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_LPAREN] = ACTIONS(1223), + [anon_sym_RPAREN] = ACTIONS(1237), + [anon_sym_ref] = ACTIONS(1225), + [anon_sym_LBRACE] = ACTIONS(1057), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1101), - [anon_sym_readonly] = ACTIONS(1103), - [anon_sym_LT] = ACTIONS(1063), - [anon_sym_GT] = ACTIONS(1063), - [anon_sym_in] = ACTIONS(1103), - [anon_sym_out] = ACTIONS(1103), + [anon_sym_new] = ACTIONS(1095), + [anon_sym_readonly] = ACTIONS(1097), + [anon_sym_LT] = ACTIONS(1061), + [anon_sym_GT] = ACTIONS(1061), + [anon_sym_in] = ACTIONS(1097), + [anon_sym_out] = ACTIONS(1097), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1067), - [anon_sym_BANG] = ACTIONS(1107), - [anon_sym_TILDE] = ACTIONS(1107), - [anon_sym_PLUS_PLUS] = ACTIONS(1107), - [anon_sym_DASH_DASH] = ACTIONS(1107), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(1101), + [anon_sym_TILDE] = ACTIONS(1101), + [anon_sym_PLUS_PLUS] = ACTIONS(1101), + [anon_sym_DASH_DASH] = ACTIONS(1101), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1109), - [anon_sym_DASH] = ACTIONS(1109), - [anon_sym_STAR] = ACTIONS(1229), - [anon_sym_CARET] = ACTIONS(1107), - [anon_sym_AMP] = ACTIONS(1107), - [anon_sym_GT_EQ] = ACTIONS(1073), - [anon_sym_LT_EQ] = ACTIONS(1073), - [anon_sym_this] = ACTIONS(1113), - [anon_sym_scoped] = ACTIONS(1115), - [anon_sym_params] = ACTIONS(1117), + [anon_sym_PLUS] = ACTIONS(1103), + [anon_sym_DASH] = ACTIONS(1103), + [anon_sym_STAR] = ACTIONS(1227), + [anon_sym_CARET] = ACTIONS(1101), + [anon_sym_AMP] = ACTIONS(1101), + [anon_sym_GT_EQ] = ACTIONS(1071), + [anon_sym_LT_EQ] = ACTIONS(1071), + [anon_sym_this] = ACTIONS(1107), + [anon_sym_scoped] = ACTIONS(1109), + [anon_sym_params] = ACTIONS(1111), [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(1231), + [anon_sym_var] = ACTIONS(1229), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1067), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1233), + [anon_sym_throw] = ACTIONS(1231), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1235), - [sym_discard] = ACTIONS(1123), - [anon_sym_DOT_DOT] = ACTIONS(1237), - [anon_sym_not] = ACTIONS(1087), + [anon_sym_await] = ACTIONS(1233), + [sym_discard] = ACTIONS(1117), + [anon_sym_DOT_DOT] = ACTIONS(1235), + [anon_sym_not] = ACTIONS(1085), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -58655,7 +58541,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(1089), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -58672,84 +58558,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [147] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2420), - [sym__name] = STATE(5887), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2197), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(4093), - [sym_non_lvalue_expression] = STATE(3066), - [sym_lvalue_expression] = STATE(3120), - [sym__expression_statement_expression] = STATE(3006), - [sym_assignment_expression] = STATE(3020), - [sym_binary_expression] = STATE(3006), - [sym_postfix_unary_expression] = STATE(3020), - [sym_prefix_unary_expression] = STATE(3020), - [sym__pointer_indirection_expression] = STATE(2423), - [sym_query_expression] = STATE(3006), - [sym_from_clause] = STATE(6152), - [sym_conditional_expression] = STATE(3006), - [sym_conditional_access_expression] = STATE(3006), - [sym_as_expression] = STATE(3006), - [sym_is_expression] = STATE(3006), - [sym_is_pattern_expression] = STATE(3006), - [sym_cast_expression] = STATE(3006), - [sym_checked_expression] = STATE(3006), - [sym_invocation_expression] = STATE(3020), - [sym_switch_expression] = STATE(3006), - [sym_await_expression] = STATE(3020), - [sym_throw_expression] = STATE(3006), - [sym_element_access_expression] = STATE(2423), - [sym_interpolated_string_expression] = STATE(3006), - [sym_member_access_expression] = STATE(2423), - [sym_object_creation_expression] = STATE(3020), - [sym_parenthesized_expression] = STATE(3020), - [sym__parenthesized_lvalue_expression] = STATE(2423), - [sym_lambda_expression] = STATE(3006), - [sym__lambda_expression_init] = STATE(7722), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3006), - [sym_anonymous_method_expression] = STATE(3006), - [sym_anonymous_object_creation_expression] = STATE(3006), - [sym_implicit_array_creation_expression] = STATE(3006), - [sym_implicit_object_creation_expression] = STATE(3006), - [sym_implicit_stackalloc_expression] = STATE(3006), - [sym_initializer_expression] = STATE(3006), - [sym_default_expression] = STATE(3006), - [sym_with_expression] = STATE(3006), - [sym_sizeof_expression] = STATE(3006), - [sym_typeof_expression] = STATE(3006), - [sym_makeref_expression] = STATE(3006), - [sym_ref_expression] = STATE(3006), - [sym_reftype_expression] = STATE(3006), - [sym_refvalue_expression] = STATE(3006), - [sym_stackalloc_expression] = STATE(3006), - [sym_range_expression] = STATE(3006), - [sym_tuple_expression] = STATE(2423), - [sym_literal] = STATE(3006), - [sym_character_literal] = STATE(3011), - [sym_string_literal] = STATE(3011), - [sym_raw_string_literal] = STATE(3011), - [sym_boolean_literal] = STATE(3011), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3006), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2416), + [sym__name] = STATE(5890), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2193), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(4071), + [sym_non_lvalue_expression] = STATE(3040), + [sym_lvalue_expression] = STATE(3109), + [sym__expression_statement_expression] = STATE(3035), + [sym_assignment_expression] = STATE(3043), + [sym_binary_expression] = STATE(3035), + [sym_postfix_unary_expression] = STATE(3043), + [sym_prefix_unary_expression] = STATE(3043), + [sym__pointer_indirection_expression] = STATE(2415), + [sym_query_expression] = STATE(3035), + [sym_from_clause] = STATE(6138), + [sym_conditional_expression] = STATE(3035), + [sym_conditional_access_expression] = STATE(3035), + [sym_as_expression] = STATE(3035), + [sym_is_expression] = STATE(3035), + [sym_is_pattern_expression] = STATE(3035), + [sym_cast_expression] = STATE(3035), + [sym_checked_expression] = STATE(3035), + [sym_invocation_expression] = STATE(3043), + [sym_switch_expression] = STATE(3035), + [sym_await_expression] = STATE(3043), + [sym_throw_expression] = STATE(3035), + [sym_element_access_expression] = STATE(2415), + [sym_interpolated_string_expression] = STATE(3035), + [sym_member_access_expression] = STATE(2415), + [sym_object_creation_expression] = STATE(3043), + [sym_parenthesized_expression] = STATE(3043), + [sym__parenthesized_lvalue_expression] = STATE(2415), + [sym_lambda_expression] = STATE(3035), + [sym__lambda_expression_init] = STATE(7374), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3035), + [sym_anonymous_method_expression] = STATE(3035), + [sym_anonymous_object_creation_expression] = STATE(3035), + [sym_implicit_array_creation_expression] = STATE(3035), + [sym_implicit_object_creation_expression] = STATE(3035), + [sym_implicit_stackalloc_expression] = STATE(3035), + [sym_initializer_expression] = STATE(3035), + [sym_default_expression] = STATE(3035), + [sym_with_expression] = STATE(3035), + [sym_sizeof_expression] = STATE(3035), + [sym_typeof_expression] = STATE(3035), + [sym_makeref_expression] = STATE(3035), + [sym_ref_expression] = STATE(3035), + [sym_reftype_expression] = STATE(3035), + [sym_refvalue_expression] = STATE(3035), + [sym_stackalloc_expression] = STATE(3035), + [sym_range_expression] = STATE(3035), + [sym_tuple_expression] = STATE(2415), + [sym_literal] = STATE(3035), + [sym_character_literal] = STATE(3037), + [sym_string_literal] = STATE(3037), + [sym_raw_string_literal] = STATE(3037), + [sym_boolean_literal] = STATE(3037), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3035), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(147), [sym_preproc_endregion] = STATE(147), [sym_preproc_line] = STATE(147), @@ -58759,70 +58645,70 @@ 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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3440), - [sym__identifier_token] = ACTIONS(25), - [anon_sym_alias] = ACTIONS(29), - [anon_sym_SEMI] = ACTIONS(1221), - [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1241), - [anon_sym_COMMA] = ACTIONS(1221), - [anon_sym_RBRACK] = ACTIONS(1221), - [anon_sym_LPAREN] = ACTIONS(1243), - [anon_sym_RPAREN] = ACTIONS(1221), - [anon_sym_ref] = ACTIONS(1245), - [anon_sym_LBRACE] = ACTIONS(1247), - [anon_sym_RBRACE] = ACTIONS(1221), - [anon_sym_delegate] = ACTIONS(1249), - [anon_sym_async] = ACTIONS(1047), - [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1251), - [anon_sym_LT] = ACTIONS(1223), - [anon_sym_GT] = ACTIONS(1223), - [anon_sym_where] = ACTIONS(29), - [anon_sym_QMARK] = ACTIONS(1223), - [anon_sym_notnull] = ACTIONS(29), - [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1253), - [anon_sym_BANG] = ACTIONS(1255), - [anon_sym_TILDE] = ACTIONS(1257), - [anon_sym_PLUS_PLUS] = ACTIONS(1257), - [anon_sym_DASH_DASH] = ACTIONS(1257), - [anon_sym_true] = ACTIONS(1259), - [anon_sym_false] = ACTIONS(1259), - [anon_sym_PLUS] = ACTIONS(1255), - [anon_sym_DASH] = ACTIONS(1255), - [anon_sym_STAR] = ACTIONS(1261), - [anon_sym_SLASH] = ACTIONS(1223), - [anon_sym_PERCENT] = ACTIONS(1221), - [anon_sym_CARET] = ACTIONS(1257), - [anon_sym_PIPE] = ACTIONS(1223), - [anon_sym_AMP] = ACTIONS(1255), - [anon_sym_LT_LT] = ACTIONS(1221), - [anon_sym_GT_GT] = ACTIONS(1223), - [anon_sym_GT_GT_GT] = ACTIONS(1221), - [anon_sym_EQ_EQ] = ACTIONS(1221), - [anon_sym_BANG_EQ] = ACTIONS(1221), - [anon_sym_GT_EQ] = ACTIONS(1221), - [anon_sym_LT_EQ] = ACTIONS(1221), - [anon_sym_this] = ACTIONS(1263), - [anon_sym_DOT] = ACTIONS(1223), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1265), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1267), - [anon_sym_unchecked] = ACTIONS(1253), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3455), + [sym__identifier_token] = ACTIONS(25), + [anon_sym_alias] = ACTIONS(29), + [anon_sym_SEMI] = ACTIONS(1219), + [anon_sym_global] = ACTIONS(29), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1239), + [anon_sym_COMMA] = ACTIONS(1219), + [anon_sym_RBRACK] = ACTIONS(1219), + [anon_sym_LPAREN] = ACTIONS(1241), + [anon_sym_RPAREN] = ACTIONS(1219), + [anon_sym_ref] = ACTIONS(1243), + [anon_sym_LBRACE] = ACTIONS(1245), + [anon_sym_RBRACE] = ACTIONS(1219), + [anon_sym_delegate] = ACTIONS(1247), + [anon_sym_async] = ACTIONS(1045), + [anon_sym_file] = ACTIONS(29), + [anon_sym_new] = ACTIONS(1249), + [anon_sym_LT] = ACTIONS(1221), + [anon_sym_GT] = ACTIONS(1221), + [anon_sym_where] = ACTIONS(29), + [anon_sym_QMARK] = ACTIONS(1221), + [anon_sym_notnull] = ACTIONS(29), + [anon_sym_unmanaged] = ACTIONS(29), + [anon_sym_checked] = ACTIONS(1251), + [anon_sym_BANG] = ACTIONS(1253), + [anon_sym_TILDE] = ACTIONS(1255), + [anon_sym_PLUS_PLUS] = ACTIONS(1255), + [anon_sym_DASH_DASH] = ACTIONS(1255), + [anon_sym_true] = ACTIONS(1257), + [anon_sym_false] = ACTIONS(1257), + [anon_sym_PLUS] = ACTIONS(1253), + [anon_sym_DASH] = ACTIONS(1253), + [anon_sym_STAR] = ACTIONS(1259), + [anon_sym_SLASH] = ACTIONS(1221), + [anon_sym_PERCENT] = ACTIONS(1219), + [anon_sym_CARET] = ACTIONS(1255), + [anon_sym_PIPE] = ACTIONS(1221), + [anon_sym_AMP] = ACTIONS(1253), + [anon_sym_LT_LT] = ACTIONS(1219), + [anon_sym_GT_GT] = ACTIONS(1221), + [anon_sym_GT_GT_GT] = ACTIONS(1219), + [anon_sym_EQ_EQ] = ACTIONS(1219), + [anon_sym_BANG_EQ] = ACTIONS(1219), + [anon_sym_GT_EQ] = ACTIONS(1219), + [anon_sym_LT_EQ] = ACTIONS(1219), + [anon_sym_this] = ACTIONS(1261), + [anon_sym_DOT] = ACTIONS(1221), + [anon_sym_scoped] = ACTIONS(85), + [anon_sym_base] = ACTIONS(1263), + [anon_sym_var] = ACTIONS(89), + [sym_predefined_type] = ACTIONS(1265), + [anon_sym_unchecked] = ACTIONS(1251), [anon_sym_yield] = ACTIONS(29), - [anon_sym_switch] = ACTIONS(1223), - [anon_sym_default] = ACTIONS(1269), - [anon_sym_throw] = ACTIONS(1271), + [anon_sym_switch] = ACTIONS(1221), + [anon_sym_default] = ACTIONS(1267), + [anon_sym_throw] = ACTIONS(1269), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1273), - [anon_sym_DOT_DOT] = ACTIONS(1275), - [anon_sym_AMP_AMP] = ACTIONS(1221), - [anon_sym_PIPE_PIPE] = ACTIONS(1221), - [anon_sym_QMARK_QMARK] = ACTIONS(1221), + [anon_sym_await] = ACTIONS(1271), + [anon_sym_DOT_DOT] = ACTIONS(1273), + [anon_sym_AMP_AMP] = ACTIONS(1219), + [anon_sym_PIPE_PIPE] = ACTIONS(1219), + [anon_sym_QMARK_QMARK] = ACTIONS(1219), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -58835,26 +58721,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(1223), - [anon_sym_is] = ACTIONS(1223), - [anon_sym_DASH_GT] = ACTIONS(1221), - [anon_sym_stackalloc] = ACTIONS(1277), - [anon_sym_with] = ACTIONS(1223), - [anon_sym_sizeof] = ACTIONS(1279), - [anon_sym_typeof] = ACTIONS(1281), - [anon_sym___makeref] = ACTIONS(1283), - [anon_sym___reftype] = ACTIONS(1285), - [anon_sym___refvalue] = ACTIONS(1287), - [sym_null_literal] = ACTIONS(1289), - [anon_sym_SQUOTE] = ACTIONS(1291), - [sym_integer_literal] = ACTIONS(1289), - [sym_real_literal] = ACTIONS(1293), - [anon_sym_DQUOTE] = ACTIONS(1295), - [sym_verbatim_string_literal] = ACTIONS(1293), - [aux_sym_preproc_if_token1] = ACTIONS(1297), - [aux_sym_preproc_if_token3] = ACTIONS(1221), - [aux_sym_preproc_else_token1] = ACTIONS(1221), - [aux_sym_preproc_elif_token1] = ACTIONS(1221), + [anon_sym_as] = ACTIONS(1221), + [anon_sym_is] = ACTIONS(1221), + [anon_sym_DASH_GT] = ACTIONS(1219), + [anon_sym_stackalloc] = ACTIONS(1275), + [anon_sym_with] = ACTIONS(1221), + [anon_sym_sizeof] = ACTIONS(1277), + [anon_sym_typeof] = ACTIONS(1279), + [anon_sym___makeref] = ACTIONS(1281), + [anon_sym___reftype] = ACTIONS(1283), + [anon_sym___refvalue] = ACTIONS(1285), + [sym_null_literal] = ACTIONS(1287), + [anon_sym_SQUOTE] = ACTIONS(1289), + [sym_integer_literal] = ACTIONS(1287), + [sym_real_literal] = ACTIONS(1291), + [anon_sym_DQUOTE] = ACTIONS(1293), + [sym_verbatim_string_literal] = ACTIONS(1291), + [aux_sym_preproc_if_token1] = ACTIONS(1295), + [aux_sym_preproc_if_token3] = ACTIONS(1219), + [aux_sym_preproc_else_token1] = ACTIONS(1219), + [aux_sym_preproc_elif_token1] = ACTIONS(1219), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -58865,90 +58751,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1299), - [sym_interpolation_verbatim_start] = ACTIONS(1301), - [sym_interpolation_raw_start] = ACTIONS(1303), - [sym_raw_string_start] = ACTIONS(1305), + [sym_interpolation_regular_start] = ACTIONS(1297), + [sym_interpolation_verbatim_start] = ACTIONS(1299), + [sym_interpolation_raw_start] = ACTIONS(1301), + [sym_raw_string_start] = ACTIONS(1303), }, [148] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2420), - [sym__name] = STATE(5887), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2197), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(4089), - [sym_non_lvalue_expression] = STATE(3066), - [sym_lvalue_expression] = STATE(3120), - [sym__expression_statement_expression] = STATE(3006), - [sym_assignment_expression] = STATE(3020), - [sym_binary_expression] = STATE(3006), - [sym_postfix_unary_expression] = STATE(3020), - [sym_prefix_unary_expression] = STATE(3020), - [sym__pointer_indirection_expression] = STATE(2423), - [sym_query_expression] = STATE(3006), - [sym_from_clause] = STATE(6152), - [sym_conditional_expression] = STATE(3006), - [sym_conditional_access_expression] = STATE(3006), - [sym_as_expression] = STATE(3006), - [sym_is_expression] = STATE(3006), - [sym_is_pattern_expression] = STATE(3006), - [sym_cast_expression] = STATE(3006), - [sym_checked_expression] = STATE(3006), - [sym_invocation_expression] = STATE(3020), - [sym_switch_expression] = STATE(3006), - [sym_await_expression] = STATE(3020), - [sym_throw_expression] = STATE(3006), - [sym_element_access_expression] = STATE(2423), - [sym_interpolated_string_expression] = STATE(3006), - [sym_member_access_expression] = STATE(2423), - [sym_object_creation_expression] = STATE(3020), - [sym_parenthesized_expression] = STATE(3020), - [sym__parenthesized_lvalue_expression] = STATE(2423), - [sym_lambda_expression] = STATE(3006), - [sym__lambda_expression_init] = STATE(7722), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3006), - [sym_anonymous_method_expression] = STATE(3006), - [sym_anonymous_object_creation_expression] = STATE(3006), - [sym_implicit_array_creation_expression] = STATE(3006), - [sym_implicit_object_creation_expression] = STATE(3006), - [sym_implicit_stackalloc_expression] = STATE(3006), - [sym_initializer_expression] = STATE(3006), - [sym_default_expression] = STATE(3006), - [sym_with_expression] = STATE(3006), - [sym_sizeof_expression] = STATE(3006), - [sym_typeof_expression] = STATE(3006), - [sym_makeref_expression] = STATE(3006), - [sym_ref_expression] = STATE(3006), - [sym_reftype_expression] = STATE(3006), - [sym_refvalue_expression] = STATE(3006), - [sym_stackalloc_expression] = STATE(3006), - [sym_range_expression] = STATE(3006), - [sym_tuple_expression] = STATE(2423), - [sym_literal] = STATE(3006), - [sym_character_literal] = STATE(3011), - [sym_string_literal] = STATE(3011), - [sym_raw_string_literal] = STATE(3011), - [sym_boolean_literal] = STATE(3011), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3006), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2416), + [sym__name] = STATE(5890), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2193), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(4098), + [sym_non_lvalue_expression] = STATE(3040), + [sym_lvalue_expression] = STATE(3109), + [sym__expression_statement_expression] = STATE(3035), + [sym_assignment_expression] = STATE(3043), + [sym_binary_expression] = STATE(3035), + [sym_postfix_unary_expression] = STATE(3043), + [sym_prefix_unary_expression] = STATE(3043), + [sym__pointer_indirection_expression] = STATE(2415), + [sym_query_expression] = STATE(3035), + [sym_from_clause] = STATE(6138), + [sym_conditional_expression] = STATE(3035), + [sym_conditional_access_expression] = STATE(3035), + [sym_as_expression] = STATE(3035), + [sym_is_expression] = STATE(3035), + [sym_is_pattern_expression] = STATE(3035), + [sym_cast_expression] = STATE(3035), + [sym_checked_expression] = STATE(3035), + [sym_invocation_expression] = STATE(3043), + [sym_switch_expression] = STATE(3035), + [sym_await_expression] = STATE(3043), + [sym_throw_expression] = STATE(3035), + [sym_element_access_expression] = STATE(2415), + [sym_interpolated_string_expression] = STATE(3035), + [sym_member_access_expression] = STATE(2415), + [sym_object_creation_expression] = STATE(3043), + [sym_parenthesized_expression] = STATE(3043), + [sym__parenthesized_lvalue_expression] = STATE(2415), + [sym_lambda_expression] = STATE(3035), + [sym__lambda_expression_init] = STATE(7374), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3035), + [sym_anonymous_method_expression] = STATE(3035), + [sym_anonymous_object_creation_expression] = STATE(3035), + [sym_implicit_array_creation_expression] = STATE(3035), + [sym_implicit_object_creation_expression] = STATE(3035), + [sym_implicit_stackalloc_expression] = STATE(3035), + [sym_initializer_expression] = STATE(3035), + [sym_default_expression] = STATE(3035), + [sym_with_expression] = STATE(3035), + [sym_sizeof_expression] = STATE(3035), + [sym_typeof_expression] = STATE(3035), + [sym_makeref_expression] = STATE(3035), + [sym_ref_expression] = STATE(3035), + [sym_reftype_expression] = STATE(3035), + [sym_refvalue_expression] = STATE(3035), + [sym_stackalloc_expression] = STATE(3035), + [sym_range_expression] = STATE(3035), + [sym_tuple_expression] = STATE(2415), + [sym_literal] = STATE(3035), + [sym_character_literal] = STATE(3037), + [sym_string_literal] = STATE(3037), + [sym_raw_string_literal] = STATE(3037), + [sym_boolean_literal] = STATE(3037), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3035), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(148), [sym_preproc_endregion] = STATE(148), [sym_preproc_line] = STATE(148), @@ -58958,70 +58844,70 @@ 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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3440), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3455), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), - [anon_sym_SEMI] = ACTIONS(1151), + [anon_sym_SEMI] = ACTIONS(1147), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1241), - [anon_sym_COMMA] = ACTIONS(1151), - [anon_sym_RBRACK] = ACTIONS(1151), - [anon_sym_LPAREN] = ACTIONS(1243), - [anon_sym_RPAREN] = ACTIONS(1151), - [anon_sym_ref] = ACTIONS(1245), - [anon_sym_LBRACE] = ACTIONS(1247), - [anon_sym_RBRACE] = ACTIONS(1151), - [anon_sym_delegate] = ACTIONS(1249), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1239), + [anon_sym_COMMA] = ACTIONS(1147), + [anon_sym_RBRACK] = ACTIONS(1147), + [anon_sym_LPAREN] = ACTIONS(1241), + [anon_sym_RPAREN] = ACTIONS(1147), + [anon_sym_ref] = ACTIONS(1243), + [anon_sym_LBRACE] = ACTIONS(1245), + [anon_sym_RBRACE] = ACTIONS(1147), + [anon_sym_delegate] = ACTIONS(1247), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1251), - [anon_sym_LT] = ACTIONS(1165), - [anon_sym_GT] = ACTIONS(1165), + [anon_sym_new] = ACTIONS(1249), + [anon_sym_LT] = ACTIONS(1161), + [anon_sym_GT] = ACTIONS(1161), [anon_sym_where] = ACTIONS(29), - [anon_sym_QMARK] = ACTIONS(1165), + [anon_sym_QMARK] = ACTIONS(1161), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1253), - [anon_sym_BANG] = ACTIONS(1255), - [anon_sym_TILDE] = ACTIONS(1257), - [anon_sym_PLUS_PLUS] = ACTIONS(1257), - [anon_sym_DASH_DASH] = ACTIONS(1257), - [anon_sym_true] = ACTIONS(1259), - [anon_sym_false] = ACTIONS(1259), - [anon_sym_PLUS] = ACTIONS(1255), - [anon_sym_DASH] = ACTIONS(1255), - [anon_sym_STAR] = ACTIONS(1261), - [anon_sym_SLASH] = ACTIONS(1165), - [anon_sym_PERCENT] = ACTIONS(1151), - [anon_sym_CARET] = ACTIONS(1257), - [anon_sym_PIPE] = ACTIONS(1165), - [anon_sym_AMP] = ACTIONS(1255), - [anon_sym_LT_LT] = ACTIONS(1151), - [anon_sym_GT_GT] = ACTIONS(1165), - [anon_sym_GT_GT_GT] = ACTIONS(1151), - [anon_sym_EQ_EQ] = ACTIONS(1151), - [anon_sym_BANG_EQ] = ACTIONS(1151), - [anon_sym_GT_EQ] = ACTIONS(1151), - [anon_sym_LT_EQ] = ACTIONS(1151), - [anon_sym_this] = ACTIONS(1263), - [anon_sym_DOT] = ACTIONS(1165), + [anon_sym_checked] = ACTIONS(1251), + [anon_sym_BANG] = ACTIONS(1253), + [anon_sym_TILDE] = ACTIONS(1255), + [anon_sym_PLUS_PLUS] = ACTIONS(1255), + [anon_sym_DASH_DASH] = ACTIONS(1255), + [anon_sym_true] = ACTIONS(1257), + [anon_sym_false] = ACTIONS(1257), + [anon_sym_PLUS] = ACTIONS(1253), + [anon_sym_DASH] = ACTIONS(1253), + [anon_sym_STAR] = ACTIONS(1259), + [anon_sym_SLASH] = ACTIONS(1161), + [anon_sym_PERCENT] = ACTIONS(1147), + [anon_sym_CARET] = ACTIONS(1255), + [anon_sym_PIPE] = ACTIONS(1161), + [anon_sym_AMP] = ACTIONS(1253), + [anon_sym_LT_LT] = ACTIONS(1147), + [anon_sym_GT_GT] = ACTIONS(1161), + [anon_sym_GT_GT_GT] = ACTIONS(1147), + [anon_sym_EQ_EQ] = ACTIONS(1147), + [anon_sym_BANG_EQ] = ACTIONS(1147), + [anon_sym_GT_EQ] = ACTIONS(1147), + [anon_sym_LT_EQ] = ACTIONS(1147), + [anon_sym_this] = ACTIONS(1261), + [anon_sym_DOT] = ACTIONS(1161), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1265), + [anon_sym_base] = ACTIONS(1263), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1267), - [anon_sym_unchecked] = ACTIONS(1253), + [sym_predefined_type] = ACTIONS(1265), + [anon_sym_unchecked] = ACTIONS(1251), [anon_sym_yield] = ACTIONS(29), - [anon_sym_switch] = ACTIONS(1165), - [anon_sym_default] = ACTIONS(1269), - [anon_sym_throw] = ACTIONS(1271), + [anon_sym_switch] = ACTIONS(1161), + [anon_sym_default] = ACTIONS(1267), + [anon_sym_throw] = ACTIONS(1269), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1273), - [anon_sym_DOT_DOT] = ACTIONS(1275), - [anon_sym_AMP_AMP] = ACTIONS(1151), - [anon_sym_PIPE_PIPE] = ACTIONS(1151), - [anon_sym_QMARK_QMARK] = ACTIONS(1151), + [anon_sym_await] = ACTIONS(1271), + [anon_sym_DOT_DOT] = ACTIONS(1273), + [anon_sym_AMP_AMP] = ACTIONS(1147), + [anon_sym_PIPE_PIPE] = ACTIONS(1147), + [anon_sym_QMARK_QMARK] = ACTIONS(1147), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -59034,26 +58920,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(1165), - [anon_sym_is] = ACTIONS(1165), - [anon_sym_DASH_GT] = ACTIONS(1151), - [anon_sym_stackalloc] = ACTIONS(1277), - [anon_sym_with] = ACTIONS(1165), - [anon_sym_sizeof] = ACTIONS(1279), - [anon_sym_typeof] = ACTIONS(1281), - [anon_sym___makeref] = ACTIONS(1283), - [anon_sym___reftype] = ACTIONS(1285), - [anon_sym___refvalue] = ACTIONS(1287), - [sym_null_literal] = ACTIONS(1289), - [anon_sym_SQUOTE] = ACTIONS(1291), - [sym_integer_literal] = ACTIONS(1289), - [sym_real_literal] = ACTIONS(1293), - [anon_sym_DQUOTE] = ACTIONS(1295), - [sym_verbatim_string_literal] = ACTIONS(1293), - [aux_sym_preproc_if_token1] = ACTIONS(1297), - [aux_sym_preproc_if_token3] = ACTIONS(1151), - [aux_sym_preproc_else_token1] = ACTIONS(1151), - [aux_sym_preproc_elif_token1] = ACTIONS(1151), + [anon_sym_as] = ACTIONS(1161), + [anon_sym_is] = ACTIONS(1161), + [anon_sym_DASH_GT] = ACTIONS(1147), + [anon_sym_stackalloc] = ACTIONS(1275), + [anon_sym_with] = ACTIONS(1161), + [anon_sym_sizeof] = ACTIONS(1277), + [anon_sym_typeof] = ACTIONS(1279), + [anon_sym___makeref] = ACTIONS(1281), + [anon_sym___reftype] = ACTIONS(1283), + [anon_sym___refvalue] = ACTIONS(1285), + [sym_null_literal] = ACTIONS(1287), + [anon_sym_SQUOTE] = ACTIONS(1289), + [sym_integer_literal] = ACTIONS(1287), + [sym_real_literal] = ACTIONS(1291), + [anon_sym_DQUOTE] = ACTIONS(1293), + [sym_verbatim_string_literal] = ACTIONS(1291), + [aux_sym_preproc_if_token1] = ACTIONS(1295), + [aux_sym_preproc_if_token3] = ACTIONS(1147), + [aux_sym_preproc_else_token1] = ACTIONS(1147), + [aux_sym_preproc_elif_token1] = ACTIONS(1147), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -59064,90 +58950,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1299), - [sym_interpolation_verbatim_start] = ACTIONS(1301), - [sym_interpolation_raw_start] = ACTIONS(1303), - [sym_raw_string_start] = ACTIONS(1305), + [sym_interpolation_regular_start] = ACTIONS(1297), + [sym_interpolation_verbatim_start] = ACTIONS(1299), + [sym_interpolation_raw_start] = ACTIONS(1301), + [sym_raw_string_start] = ACTIONS(1303), }, [149] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2762), - [sym__name] = STATE(5910), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2247), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(4189), - [sym_non_lvalue_expression] = STATE(3438), - [sym_lvalue_expression] = STATE(3136), - [sym__expression_statement_expression] = STATE(3362), - [sym_assignment_expression] = STATE(3449), - [sym_binary_expression] = STATE(3362), - [sym_postfix_unary_expression] = STATE(3449), - [sym_prefix_unary_expression] = STATE(3449), - [sym__pointer_indirection_expression] = STATE(2747), - [sym_query_expression] = STATE(3362), - [sym_from_clause] = STATE(6171), - [sym_conditional_expression] = STATE(3362), - [sym_conditional_access_expression] = STATE(3362), - [sym_as_expression] = STATE(3362), - [sym_is_expression] = STATE(3362), - [sym_is_pattern_expression] = STATE(3362), - [sym_cast_expression] = STATE(3362), - [sym_checked_expression] = STATE(3362), - [sym_invocation_expression] = STATE(3449), - [sym_switch_expression] = STATE(3362), - [sym_await_expression] = STATE(3449), - [sym_throw_expression] = STATE(3362), - [sym_element_access_expression] = STATE(2747), - [sym_interpolated_string_expression] = STATE(3362), - [sym_member_access_expression] = STATE(2747), - [sym_object_creation_expression] = STATE(3449), - [sym_parenthesized_expression] = STATE(3449), - [sym__parenthesized_lvalue_expression] = STATE(2747), - [sym_lambda_expression] = STATE(3362), - [sym__lambda_expression_init] = STATE(7452), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3362), - [sym_anonymous_method_expression] = STATE(3362), - [sym_anonymous_object_creation_expression] = STATE(3362), - [sym_implicit_array_creation_expression] = STATE(3362), - [sym_implicit_object_creation_expression] = STATE(3362), - [sym_implicit_stackalloc_expression] = STATE(3362), - [sym_initializer_expression] = STATE(3362), - [sym_default_expression] = STATE(3362), - [sym_with_expression] = STATE(3362), - [sym_sizeof_expression] = STATE(3362), - [sym_typeof_expression] = STATE(3362), - [sym_makeref_expression] = STATE(3362), - [sym_ref_expression] = STATE(3362), - [sym_reftype_expression] = STATE(3362), - [sym_refvalue_expression] = STATE(3362), - [sym_stackalloc_expression] = STATE(3362), - [sym_range_expression] = STATE(3362), - [sym_tuple_expression] = STATE(2747), - [sym_literal] = STATE(3362), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3362), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2816), + [sym__name] = STATE(5873), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2238), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(4223), + [sym_non_lvalue_expression] = STATE(3495), + [sym_lvalue_expression] = STATE(3131), + [sym__expression_statement_expression] = STATE(3462), + [sym_assignment_expression] = STATE(3497), + [sym_binary_expression] = STATE(3462), + [sym_postfix_unary_expression] = STATE(3497), + [sym_prefix_unary_expression] = STATE(3497), + [sym__pointer_indirection_expression] = STATE(2815), + [sym_query_expression] = STATE(3462), + [sym_from_clause] = STATE(6140), + [sym_conditional_expression] = STATE(3462), + [sym_conditional_access_expression] = STATE(3462), + [sym_as_expression] = STATE(3462), + [sym_is_expression] = STATE(3462), + [sym_is_pattern_expression] = STATE(3462), + [sym_cast_expression] = STATE(3462), + [sym_checked_expression] = STATE(3462), + [sym_invocation_expression] = STATE(3497), + [sym_switch_expression] = STATE(3462), + [sym_await_expression] = STATE(3497), + [sym_throw_expression] = STATE(3462), + [sym_element_access_expression] = STATE(2815), + [sym_interpolated_string_expression] = STATE(3462), + [sym_member_access_expression] = STATE(2815), + [sym_object_creation_expression] = STATE(3497), + [sym_parenthesized_expression] = STATE(3497), + [sym__parenthesized_lvalue_expression] = STATE(2815), + [sym_lambda_expression] = STATE(3462), + [sym__lambda_expression_init] = STATE(7423), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3462), + [sym_anonymous_method_expression] = STATE(3462), + [sym_anonymous_object_creation_expression] = STATE(3462), + [sym_implicit_array_creation_expression] = STATE(3462), + [sym_implicit_object_creation_expression] = STATE(3462), + [sym_implicit_stackalloc_expression] = STATE(3462), + [sym_initializer_expression] = STATE(3462), + [sym_default_expression] = STATE(3462), + [sym_with_expression] = STATE(3462), + [sym_sizeof_expression] = STATE(3462), + [sym_typeof_expression] = STATE(3462), + [sym_makeref_expression] = STATE(3462), + [sym_ref_expression] = STATE(3462), + [sym_reftype_expression] = STATE(3462), + [sym_refvalue_expression] = STATE(3462), + [sym_stackalloc_expression] = STATE(3462), + [sym_range_expression] = STATE(3462), + [sym_tuple_expression] = STATE(2815), + [sym_literal] = STATE(3462), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3462), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(149), [sym_preproc_endregion] = STATE(149), [sym_preproc_line] = STATE(149), @@ -59157,72 +59043,72 @@ 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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3385), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3367), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), - [anon_sym_SEMI] = ACTIONS(1221), + [anon_sym_SEMI] = ACTIONS(1219), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1307), - [anon_sym_COMMA] = ACTIONS(1221), - [anon_sym_RBRACK] = ACTIONS(1221), - [anon_sym_LPAREN] = ACTIONS(1309), - [anon_sym_RPAREN] = ACTIONS(1221), - [anon_sym_ref] = ACTIONS(1311), - [anon_sym_LBRACE] = ACTIONS(1313), - [anon_sym_RBRACE] = ACTIONS(1221), - [anon_sym_delegate] = ACTIONS(1315), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1305), + [anon_sym_COMMA] = ACTIONS(1219), + [anon_sym_RBRACK] = ACTIONS(1219), + [anon_sym_LPAREN] = ACTIONS(1307), + [anon_sym_RPAREN] = ACTIONS(1219), + [anon_sym_ref] = ACTIONS(1309), + [anon_sym_LBRACE] = ACTIONS(1311), + [anon_sym_RBRACE] = ACTIONS(1219), + [anon_sym_delegate] = ACTIONS(1313), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1317), - [anon_sym_LT] = ACTIONS(1223), - [anon_sym_GT] = ACTIONS(1223), + [anon_sym_new] = ACTIONS(1315), + [anon_sym_LT] = ACTIONS(1221), + [anon_sym_GT] = ACTIONS(1221), [anon_sym_where] = ACTIONS(29), - [anon_sym_QMARK] = ACTIONS(1223), + [anon_sym_QMARK] = ACTIONS(1221), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1319), - [anon_sym_BANG] = ACTIONS(1071), - [anon_sym_TILDE] = ACTIONS(1069), - [anon_sym_PLUS_PLUS] = ACTIONS(1069), - [anon_sym_DASH_DASH] = ACTIONS(1069), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1071), - [anon_sym_DASH] = ACTIONS(1071), - [anon_sym_STAR] = ACTIONS(1321), - [anon_sym_SLASH] = ACTIONS(1223), - [anon_sym_PERCENT] = ACTIONS(1221), - [anon_sym_CARET] = ACTIONS(1069), - [anon_sym_PIPE] = ACTIONS(1223), - [anon_sym_AMP] = ACTIONS(1071), - [anon_sym_LT_LT] = ACTIONS(1221), - [anon_sym_GT_GT] = ACTIONS(1223), - [anon_sym_GT_GT_GT] = ACTIONS(1221), - [anon_sym_EQ_EQ] = ACTIONS(1221), - [anon_sym_BANG_EQ] = ACTIONS(1221), - [anon_sym_GT_EQ] = ACTIONS(1221), - [anon_sym_LT_EQ] = ACTIONS(1221), - [anon_sym_this] = ACTIONS(1323), - [anon_sym_DOT] = ACTIONS(1223), + [anon_sym_checked] = ACTIONS(1317), + [anon_sym_BANG] = ACTIONS(1069), + [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(1319), + [anon_sym_SLASH] = ACTIONS(1221), + [anon_sym_PERCENT] = ACTIONS(1219), + [anon_sym_CARET] = ACTIONS(1067), + [anon_sym_PIPE] = ACTIONS(1221), + [anon_sym_AMP] = ACTIONS(1069), + [anon_sym_LT_LT] = ACTIONS(1219), + [anon_sym_GT_GT] = ACTIONS(1221), + [anon_sym_GT_GT_GT] = ACTIONS(1219), + [anon_sym_EQ_EQ] = ACTIONS(1219), + [anon_sym_BANG_EQ] = ACTIONS(1219), + [anon_sym_GT_EQ] = ACTIONS(1219), + [anon_sym_LT_EQ] = ACTIONS(1219), + [anon_sym_this] = ACTIONS(1321), + [anon_sym_DOT] = ACTIONS(1221), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1325), + [anon_sym_base] = ACTIONS(1323), [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1319), + [anon_sym_unchecked] = ACTIONS(1317), [anon_sym_yield] = ACTIONS(29), - [anon_sym_switch] = ACTIONS(1223), + [anon_sym_switch] = ACTIONS(1221), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1327), + [anon_sym_throw] = ACTIONS(1325), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1329), - [anon_sym_DOT_DOT] = ACTIONS(1331), - [anon_sym_and] = ACTIONS(1223), - [anon_sym_or] = ACTIONS(1223), - [anon_sym_AMP_AMP] = ACTIONS(1221), - [anon_sym_PIPE_PIPE] = ACTIONS(1221), - [anon_sym_QMARK_QMARK] = ACTIONS(1221), + [anon_sym_await] = ACTIONS(1327), + [anon_sym_DOT_DOT] = ACTIONS(1329), + [anon_sym_and] = ACTIONS(1221), + [anon_sym_or] = ACTIONS(1221), + [anon_sym_AMP_AMP] = ACTIONS(1219), + [anon_sym_PIPE_PIPE] = ACTIONS(1219), + [anon_sym_QMARK_QMARK] = ACTIONS(1219), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -59235,23 +59121,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(1223), - [anon_sym_is] = ACTIONS(1223), - [anon_sym_DASH_GT] = ACTIONS(1221), - [anon_sym_stackalloc] = ACTIONS(1333), - [anon_sym_with] = ACTIONS(1223), + [anon_sym_as] = ACTIONS(1221), + [anon_sym_is] = ACTIONS(1221), + [anon_sym_DASH_GT] = ACTIONS(1219), + [anon_sym_stackalloc] = ACTIONS(1331), + [anon_sym_with] = ACTIONS(1221), [anon_sym_sizeof] = ACTIONS(129), [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(1335), - [anon_sym___reftype] = ACTIONS(1337), - [anon_sym___refvalue] = ACTIONS(1339), + [anon_sym___makeref] = ACTIONS(1333), + [anon_sym___reftype] = ACTIONS(1335), + [anon_sym___refvalue] = ACTIONS(1337), [sym_null_literal] = ACTIONS(139), [anon_sym_SQUOTE] = ACTIONS(141), [sym_integer_literal] = ACTIONS(139), [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1341), + [aux_sym_preproc_if_token1] = ACTIONS(1339), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -59268,84 +59154,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [150] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2762), - [sym__name] = STATE(5910), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2247), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(4231), - [sym_non_lvalue_expression] = STATE(3438), - [sym_lvalue_expression] = STATE(3136), - [sym__expression_statement_expression] = STATE(3362), - [sym_assignment_expression] = STATE(3449), - [sym_binary_expression] = STATE(3362), - [sym_postfix_unary_expression] = STATE(3449), - [sym_prefix_unary_expression] = STATE(3449), - [sym__pointer_indirection_expression] = STATE(2747), - [sym_query_expression] = STATE(3362), - [sym_from_clause] = STATE(6171), - [sym_conditional_expression] = STATE(3362), - [sym_conditional_access_expression] = STATE(3362), - [sym_as_expression] = STATE(3362), - [sym_is_expression] = STATE(3362), - [sym_is_pattern_expression] = STATE(3362), - [sym_cast_expression] = STATE(3362), - [sym_checked_expression] = STATE(3362), - [sym_invocation_expression] = STATE(3449), - [sym_switch_expression] = STATE(3362), - [sym_await_expression] = STATE(3449), - [sym_throw_expression] = STATE(3362), - [sym_element_access_expression] = STATE(2747), - [sym_interpolated_string_expression] = STATE(3362), - [sym_member_access_expression] = STATE(2747), - [sym_object_creation_expression] = STATE(3449), - [sym_parenthesized_expression] = STATE(3449), - [sym__parenthesized_lvalue_expression] = STATE(2747), - [sym_lambda_expression] = STATE(3362), - [sym__lambda_expression_init] = STATE(7452), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3362), - [sym_anonymous_method_expression] = STATE(3362), - [sym_anonymous_object_creation_expression] = STATE(3362), - [sym_implicit_array_creation_expression] = STATE(3362), - [sym_implicit_object_creation_expression] = STATE(3362), - [sym_implicit_stackalloc_expression] = STATE(3362), - [sym_initializer_expression] = STATE(3362), - [sym_default_expression] = STATE(3362), - [sym_with_expression] = STATE(3362), - [sym_sizeof_expression] = STATE(3362), - [sym_typeof_expression] = STATE(3362), - [sym_makeref_expression] = STATE(3362), - [sym_ref_expression] = STATE(3362), - [sym_reftype_expression] = STATE(3362), - [sym_refvalue_expression] = STATE(3362), - [sym_stackalloc_expression] = STATE(3362), - [sym_range_expression] = STATE(3362), - [sym_tuple_expression] = STATE(2747), - [sym_literal] = STATE(3362), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3362), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2816), + [sym__name] = STATE(5873), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2238), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(4174), + [sym_non_lvalue_expression] = STATE(3495), + [sym_lvalue_expression] = STATE(3131), + [sym__expression_statement_expression] = STATE(3462), + [sym_assignment_expression] = STATE(3497), + [sym_binary_expression] = STATE(3462), + [sym_postfix_unary_expression] = STATE(3497), + [sym_prefix_unary_expression] = STATE(3497), + [sym__pointer_indirection_expression] = STATE(2815), + [sym_query_expression] = STATE(3462), + [sym_from_clause] = STATE(6140), + [sym_conditional_expression] = STATE(3462), + [sym_conditional_access_expression] = STATE(3462), + [sym_as_expression] = STATE(3462), + [sym_is_expression] = STATE(3462), + [sym_is_pattern_expression] = STATE(3462), + [sym_cast_expression] = STATE(3462), + [sym_checked_expression] = STATE(3462), + [sym_invocation_expression] = STATE(3497), + [sym_switch_expression] = STATE(3462), + [sym_await_expression] = STATE(3497), + [sym_throw_expression] = STATE(3462), + [sym_element_access_expression] = STATE(2815), + [sym_interpolated_string_expression] = STATE(3462), + [sym_member_access_expression] = STATE(2815), + [sym_object_creation_expression] = STATE(3497), + [sym_parenthesized_expression] = STATE(3497), + [sym__parenthesized_lvalue_expression] = STATE(2815), + [sym_lambda_expression] = STATE(3462), + [sym__lambda_expression_init] = STATE(7423), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3462), + [sym_anonymous_method_expression] = STATE(3462), + [sym_anonymous_object_creation_expression] = STATE(3462), + [sym_implicit_array_creation_expression] = STATE(3462), + [sym_implicit_object_creation_expression] = STATE(3462), + [sym_implicit_stackalloc_expression] = STATE(3462), + [sym_initializer_expression] = STATE(3462), + [sym_default_expression] = STATE(3462), + [sym_with_expression] = STATE(3462), + [sym_sizeof_expression] = STATE(3462), + [sym_typeof_expression] = STATE(3462), + [sym_makeref_expression] = STATE(3462), + [sym_ref_expression] = STATE(3462), + [sym_reftype_expression] = STATE(3462), + [sym_refvalue_expression] = STATE(3462), + [sym_stackalloc_expression] = STATE(3462), + [sym_range_expression] = STATE(3462), + [sym_tuple_expression] = STATE(2815), + [sym_literal] = STATE(3462), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3462), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(150), [sym_preproc_endregion] = STATE(150), [sym_preproc_line] = STATE(150), @@ -59355,72 +59241,72 @@ 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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3385), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3367), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), - [anon_sym_SEMI] = ACTIONS(1151), + [anon_sym_SEMI] = ACTIONS(1147), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1307), - [anon_sym_COMMA] = ACTIONS(1151), - [anon_sym_RBRACK] = ACTIONS(1151), - [anon_sym_LPAREN] = ACTIONS(1309), - [anon_sym_RPAREN] = ACTIONS(1151), - [anon_sym_ref] = ACTIONS(1311), - [anon_sym_LBRACE] = ACTIONS(1313), - [anon_sym_RBRACE] = ACTIONS(1151), - [anon_sym_delegate] = ACTIONS(1315), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1305), + [anon_sym_COMMA] = ACTIONS(1147), + [anon_sym_RBRACK] = ACTIONS(1147), + [anon_sym_LPAREN] = ACTIONS(1307), + [anon_sym_RPAREN] = ACTIONS(1147), + [anon_sym_ref] = ACTIONS(1309), + [anon_sym_LBRACE] = ACTIONS(1311), + [anon_sym_RBRACE] = ACTIONS(1147), + [anon_sym_delegate] = ACTIONS(1313), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1317), - [anon_sym_LT] = ACTIONS(1165), - [anon_sym_GT] = ACTIONS(1165), + [anon_sym_new] = ACTIONS(1315), + [anon_sym_LT] = ACTIONS(1161), + [anon_sym_GT] = ACTIONS(1161), [anon_sym_where] = ACTIONS(29), - [anon_sym_QMARK] = ACTIONS(1165), + [anon_sym_QMARK] = ACTIONS(1161), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1319), - [anon_sym_BANG] = ACTIONS(1071), - [anon_sym_TILDE] = ACTIONS(1069), - [anon_sym_PLUS_PLUS] = ACTIONS(1069), - [anon_sym_DASH_DASH] = ACTIONS(1069), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1071), - [anon_sym_DASH] = ACTIONS(1071), - [anon_sym_STAR] = ACTIONS(1321), - [anon_sym_SLASH] = ACTIONS(1165), - [anon_sym_PERCENT] = ACTIONS(1151), - [anon_sym_CARET] = ACTIONS(1069), - [anon_sym_PIPE] = ACTIONS(1165), - [anon_sym_AMP] = ACTIONS(1071), - [anon_sym_LT_LT] = ACTIONS(1151), - [anon_sym_GT_GT] = ACTIONS(1165), - [anon_sym_GT_GT_GT] = ACTIONS(1151), - [anon_sym_EQ_EQ] = ACTIONS(1151), - [anon_sym_BANG_EQ] = ACTIONS(1151), - [anon_sym_GT_EQ] = ACTIONS(1151), - [anon_sym_LT_EQ] = ACTIONS(1151), - [anon_sym_this] = ACTIONS(1323), - [anon_sym_DOT] = ACTIONS(1165), + [anon_sym_checked] = ACTIONS(1317), + [anon_sym_BANG] = ACTIONS(1069), + [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(1319), + [anon_sym_SLASH] = ACTIONS(1161), + [anon_sym_PERCENT] = ACTIONS(1147), + [anon_sym_CARET] = ACTIONS(1067), + [anon_sym_PIPE] = ACTIONS(1161), + [anon_sym_AMP] = ACTIONS(1069), + [anon_sym_LT_LT] = ACTIONS(1147), + [anon_sym_GT_GT] = ACTIONS(1161), + [anon_sym_GT_GT_GT] = ACTIONS(1147), + [anon_sym_EQ_EQ] = ACTIONS(1147), + [anon_sym_BANG_EQ] = ACTIONS(1147), + [anon_sym_GT_EQ] = ACTIONS(1147), + [anon_sym_LT_EQ] = ACTIONS(1147), + [anon_sym_this] = ACTIONS(1321), + [anon_sym_DOT] = ACTIONS(1161), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1325), + [anon_sym_base] = ACTIONS(1323), [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1319), + [anon_sym_unchecked] = ACTIONS(1317), [anon_sym_yield] = ACTIONS(29), - [anon_sym_switch] = ACTIONS(1165), + [anon_sym_switch] = ACTIONS(1161), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1327), + [anon_sym_throw] = ACTIONS(1325), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1329), - [anon_sym_DOT_DOT] = ACTIONS(1331), - [anon_sym_and] = ACTIONS(1165), - [anon_sym_or] = ACTIONS(1165), - [anon_sym_AMP_AMP] = ACTIONS(1151), - [anon_sym_PIPE_PIPE] = ACTIONS(1151), - [anon_sym_QMARK_QMARK] = ACTIONS(1151), + [anon_sym_await] = ACTIONS(1327), + [anon_sym_DOT_DOT] = ACTIONS(1329), + [anon_sym_and] = ACTIONS(1161), + [anon_sym_or] = ACTIONS(1161), + [anon_sym_AMP_AMP] = ACTIONS(1147), + [anon_sym_PIPE_PIPE] = ACTIONS(1147), + [anon_sym_QMARK_QMARK] = ACTIONS(1147), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -59433,23 +59319,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(1165), - [anon_sym_is] = ACTIONS(1165), - [anon_sym_DASH_GT] = ACTIONS(1151), - [anon_sym_stackalloc] = ACTIONS(1333), - [anon_sym_with] = ACTIONS(1165), + [anon_sym_as] = ACTIONS(1161), + [anon_sym_is] = ACTIONS(1161), + [anon_sym_DASH_GT] = ACTIONS(1147), + [anon_sym_stackalloc] = ACTIONS(1331), + [anon_sym_with] = ACTIONS(1161), [anon_sym_sizeof] = ACTIONS(129), [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(1335), - [anon_sym___reftype] = ACTIONS(1337), - [anon_sym___refvalue] = ACTIONS(1339), + [anon_sym___makeref] = ACTIONS(1333), + [anon_sym___reftype] = ACTIONS(1335), + [anon_sym___refvalue] = ACTIONS(1337), [sym_null_literal] = ACTIONS(139), [anon_sym_SQUOTE] = ACTIONS(141), [sym_integer_literal] = ACTIONS(139), [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1341), + [aux_sym_preproc_if_token1] = ACTIONS(1339), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -59466,84 +59352,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [151] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2762), - [sym__name] = STATE(5910), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2204), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(4335), - [sym_non_lvalue_expression] = STATE(3438), - [sym_lvalue_expression] = STATE(3162), - [sym__expression_statement_expression] = STATE(3362), - [sym_assignment_expression] = STATE(3449), - [sym_binary_expression] = STATE(3362), - [sym_postfix_unary_expression] = STATE(3449), - [sym_prefix_unary_expression] = STATE(3449), - [sym__pointer_indirection_expression] = STATE(2747), - [sym_query_expression] = STATE(3362), - [sym_from_clause] = STATE(6171), - [sym_conditional_expression] = STATE(3362), - [sym_conditional_access_expression] = STATE(3362), - [sym_as_expression] = STATE(3362), - [sym_is_expression] = STATE(3362), - [sym_is_pattern_expression] = STATE(3362), - [sym_cast_expression] = STATE(3362), - [sym_checked_expression] = STATE(3362), - [sym_invocation_expression] = STATE(3449), - [sym_switch_expression] = STATE(3362), - [sym_await_expression] = STATE(3449), - [sym_throw_expression] = STATE(3362), - [sym_element_access_expression] = STATE(2747), - [sym_interpolated_string_expression] = STATE(3362), - [sym_member_access_expression] = STATE(2747), - [sym_object_creation_expression] = STATE(3449), - [sym_parenthesized_expression] = STATE(3449), - [sym__parenthesized_lvalue_expression] = STATE(2747), - [sym_lambda_expression] = STATE(3362), - [sym__lambda_expression_init] = STATE(7320), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3362), - [sym_anonymous_method_expression] = STATE(3362), - [sym_anonymous_object_creation_expression] = STATE(3362), - [sym_implicit_array_creation_expression] = STATE(3362), - [sym_implicit_object_creation_expression] = STATE(3362), - [sym_implicit_stackalloc_expression] = STATE(3362), - [sym_initializer_expression] = STATE(3362), - [sym_default_expression] = STATE(3362), - [sym_with_expression] = STATE(3362), - [sym_sizeof_expression] = STATE(3362), - [sym_typeof_expression] = STATE(3362), - [sym_makeref_expression] = STATE(3362), - [sym_ref_expression] = STATE(3362), - [sym_reftype_expression] = STATE(3362), - [sym_refvalue_expression] = STATE(3362), - [sym_stackalloc_expression] = STATE(3362), - [sym_range_expression] = STATE(3362), - [sym_tuple_expression] = STATE(2747), - [sym_literal] = STATE(3362), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3362), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2603), + [sym__name] = STATE(5894), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2193), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(4230), + [sym_non_lvalue_expression] = STATE(3220), + [sym_lvalue_expression] = STATE(3126), + [sym__expression_statement_expression] = STATE(3236), + [sym_assignment_expression] = STATE(3221), + [sym_binary_expression] = STATE(3236), + [sym_postfix_unary_expression] = STATE(3221), + [sym_prefix_unary_expression] = STATE(3221), + [sym__pointer_indirection_expression] = STATE(2602), + [sym_query_expression] = STATE(3236), + [sym_from_clause] = STATE(6165), + [sym_conditional_expression] = STATE(3236), + [sym_conditional_access_expression] = STATE(3236), + [sym_as_expression] = STATE(3236), + [sym_is_expression] = STATE(3236), + [sym_is_pattern_expression] = STATE(3236), + [sym_cast_expression] = STATE(3236), + [sym_checked_expression] = STATE(3236), + [sym_invocation_expression] = STATE(3221), + [sym_switch_expression] = STATE(3236), + [sym_await_expression] = STATE(3221), + [sym_throw_expression] = STATE(3236), + [sym_element_access_expression] = STATE(2602), + [sym_interpolated_string_expression] = STATE(3236), + [sym_member_access_expression] = STATE(2602), + [sym_object_creation_expression] = STATE(3221), + [sym_parenthesized_expression] = STATE(3221), + [sym__parenthesized_lvalue_expression] = STATE(2602), + [sym_lambda_expression] = STATE(3236), + [sym__lambda_expression_init] = STATE(7487), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3236), + [sym_anonymous_method_expression] = STATE(3236), + [sym_anonymous_object_creation_expression] = STATE(3236), + [sym_implicit_array_creation_expression] = STATE(3236), + [sym_implicit_object_creation_expression] = STATE(3236), + [sym_implicit_stackalloc_expression] = STATE(3236), + [sym_initializer_expression] = STATE(3236), + [sym_default_expression] = STATE(3236), + [sym_with_expression] = STATE(3236), + [sym_sizeof_expression] = STATE(3236), + [sym_typeof_expression] = STATE(3236), + [sym_makeref_expression] = STATE(3236), + [sym_ref_expression] = STATE(3236), + [sym_reftype_expression] = STATE(3236), + [sym_refvalue_expression] = STATE(3236), + [sym_stackalloc_expression] = STATE(3236), + [sym_range_expression] = STATE(3236), + [sym_tuple_expression] = STATE(2602), + [sym_literal] = STATE(3236), + [sym_character_literal] = STATE(3272), + [sym_string_literal] = STATE(3272), + [sym_raw_string_literal] = STATE(3272), + [sym_boolean_literal] = STATE(3272), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3236), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(151), [sym_preproc_endregion] = STATE(151), [sym_preproc_line] = STATE(151), @@ -59553,68 +59439,71 @@ 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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3385), - [sym__identifier_token] = ACTIONS(25), - [anon_sym_alias] = ACTIONS(29), - [anon_sym_SEMI] = ACTIONS(1151), - [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1307), - [anon_sym_LPAREN] = ACTIONS(1343), - [anon_sym_ref] = ACTIONS(1345), - [anon_sym_LBRACE] = ACTIONS(1313), - [anon_sym_delegate] = ACTIONS(1315), - [anon_sym_async] = ACTIONS(1047), - [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1317), - [anon_sym_LT] = ACTIONS(1165), - [anon_sym_GT] = ACTIONS(1165), - [anon_sym_where] = ACTIONS(29), - [anon_sym_QMARK] = ACTIONS(1165), - [anon_sym_notnull] = ACTIONS(29), - [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1319), - [anon_sym_BANG] = ACTIONS(1347), - [anon_sym_TILDE] = ACTIONS(1349), - [anon_sym_PLUS_PLUS] = ACTIONS(1349), - [anon_sym_DASH_DASH] = ACTIONS(1349), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1347), - [anon_sym_DASH] = ACTIONS(1347), - [anon_sym_STAR] = ACTIONS(1351), - [anon_sym_SLASH] = ACTIONS(1165), - [anon_sym_PERCENT] = ACTIONS(1151), - [anon_sym_CARET] = ACTIONS(1349), - [anon_sym_PIPE] = ACTIONS(1165), - [anon_sym_AMP] = ACTIONS(1347), - [anon_sym_LT_LT] = ACTIONS(1151), - [anon_sym_GT_GT] = ACTIONS(1165), - [anon_sym_GT_GT_GT] = ACTIONS(1151), - [anon_sym_EQ_EQ] = ACTIONS(1151), - [anon_sym_BANG_EQ] = ACTIONS(1151), - [anon_sym_GT_EQ] = ACTIONS(1151), - [anon_sym_LT_EQ] = ACTIONS(1151), - [anon_sym_this] = ACTIONS(1323), - [anon_sym_DOT] = ACTIONS(1165), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1325), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1319), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3379), + [sym__identifier_token] = ACTIONS(25), + [anon_sym_alias] = ACTIONS(29), + [anon_sym_global] = ACTIONS(29), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1149), + [anon_sym_COLON] = ACTIONS(1219), + [anon_sym_COMMA] = ACTIONS(1219), + [anon_sym_LPAREN] = ACTIONS(1341), + [anon_sym_RPAREN] = ACTIONS(1219), + [anon_sym_ref] = ACTIONS(1343), + [anon_sym_LBRACE] = ACTIONS(1155), + [anon_sym_RBRACE] = ACTIONS(1219), + [anon_sym_delegate] = ACTIONS(1157), + [anon_sym_async] = ACTIONS(1045), + [anon_sym_file] = ACTIONS(29), + [anon_sym_new] = ACTIONS(1159), + [anon_sym_LT] = ACTIONS(1221), + [anon_sym_GT] = ACTIONS(1221), + [anon_sym_where] = ACTIONS(29), + [anon_sym_QMARK] = ACTIONS(1221), + [anon_sym_notnull] = ACTIONS(29), + [anon_sym_unmanaged] = ACTIONS(29), + [anon_sym_checked] = ACTIONS(1163), + [anon_sym_BANG] = ACTIONS(1345), + [anon_sym_TILDE] = ACTIONS(1347), + [anon_sym_PLUS_PLUS] = ACTIONS(1347), + [anon_sym_DASH_DASH] = ACTIONS(1347), + [anon_sym_true] = ACTIONS(1169), + [anon_sym_false] = ACTIONS(1169), + [anon_sym_PLUS] = ACTIONS(1345), + [anon_sym_DASH] = ACTIONS(1345), + [anon_sym_STAR] = ACTIONS(1349), + [anon_sym_SLASH] = ACTIONS(1221), + [anon_sym_PERCENT] = ACTIONS(1219), + [anon_sym_CARET] = ACTIONS(1347), + [anon_sym_PIPE] = ACTIONS(1221), + [anon_sym_AMP] = ACTIONS(1345), + [anon_sym_LT_LT] = ACTIONS(1219), + [anon_sym_GT_GT] = ACTIONS(1221), + [anon_sym_GT_GT_GT] = ACTIONS(1219), + [anon_sym_EQ_EQ] = ACTIONS(1219), + [anon_sym_BANG_EQ] = ACTIONS(1219), + [anon_sym_GT_EQ] = ACTIONS(1219), + [anon_sym_LT_EQ] = ACTIONS(1219), + [anon_sym_this] = ACTIONS(1173), + [anon_sym_DOT] = ACTIONS(1221), + [anon_sym_scoped] = ACTIONS(85), + [anon_sym_base] = ACTIONS(1175), + [anon_sym_var] = ACTIONS(89), + [sym_predefined_type] = ACTIONS(1177), + [anon_sym_unchecked] = ACTIONS(1163), [anon_sym_yield] = ACTIONS(29), - [anon_sym_switch] = ACTIONS(1165), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1353), + [anon_sym_switch] = ACTIONS(1221), + [anon_sym_default] = ACTIONS(1179), + [anon_sym_throw] = ACTIONS(1351), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1355), - [anon_sym_DOT_DOT] = ACTIONS(1357), - [anon_sym_and] = ACTIONS(1165), - [anon_sym_or] = ACTIONS(1165), - [anon_sym_AMP_AMP] = ACTIONS(1151), - [anon_sym_PIPE_PIPE] = ACTIONS(1151), - [anon_sym_QMARK_QMARK] = ACTIONS(1151), + [anon_sym_await] = ACTIONS(1353), + [anon_sym_DOT_DOT] = ACTIONS(1355), + [anon_sym_and] = ACTIONS(1221), + [anon_sym_or] = ACTIONS(1221), + [anon_sym_AMP_AMP] = ACTIONS(1219), + [anon_sym_PIPE_PIPE] = ACTIONS(1219), + [anon_sym_QMARK_QMARK] = ACTIONS(1219), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -59627,26 +59516,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(1165), - [anon_sym_is] = ACTIONS(1165), - [anon_sym_DASH_GT] = ACTIONS(1151), - [anon_sym_stackalloc] = ACTIONS(1333), - [anon_sym_with] = ACTIONS(1165), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(1335), - [anon_sym___reftype] = ACTIONS(1337), - [anon_sym___refvalue] = ACTIONS(1339), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1341), - [aux_sym_preproc_if_token3] = ACTIONS(1151), - [aux_sym_preproc_else_token1] = ACTIONS(1151), - [aux_sym_preproc_elif_token1] = ACTIONS(1151), + [anon_sym_as] = ACTIONS(1221), + [anon_sym_is] = ACTIONS(1221), + [anon_sym_DASH_GT] = ACTIONS(1219), + [anon_sym_stackalloc] = ACTIONS(1187), + [anon_sym_with] = ACTIONS(1221), + [anon_sym_sizeof] = ACTIONS(1189), + [anon_sym_typeof] = ACTIONS(1191), + [anon_sym___makeref] = ACTIONS(1193), + [anon_sym___reftype] = ACTIONS(1195), + [anon_sym___refvalue] = ACTIONS(1197), + [sym_null_literal] = ACTIONS(1199), + [anon_sym_SQUOTE] = ACTIONS(1201), + [sym_integer_literal] = ACTIONS(1199), + [sym_real_literal] = ACTIONS(1203), + [anon_sym_DQUOTE] = ACTIONS(1205), + [sym_verbatim_string_literal] = ACTIONS(1203), + [aux_sym_preproc_if_token1] = ACTIONS(1207), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -59657,90 +59543,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(151), - [sym_interpolation_verbatim_start] = ACTIONS(153), - [sym_interpolation_raw_start] = ACTIONS(155), - [sym_raw_string_start] = ACTIONS(157), + [sym_interpolation_regular_start] = ACTIONS(1209), + [sym_interpolation_verbatim_start] = ACTIONS(1211), + [sym_interpolation_raw_start] = ACTIONS(1213), + [sym_raw_string_start] = ACTIONS(1215), }, [152] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2762), - [sym__name] = STATE(5889), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2247), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(4320), - [sym_non_lvalue_expression] = STATE(3438), - [sym_lvalue_expression] = STATE(3224), - [sym__expression_statement_expression] = STATE(3362), - [sym_assignment_expression] = STATE(3449), - [sym_binary_expression] = STATE(3362), - [sym_postfix_unary_expression] = STATE(3449), - [sym_prefix_unary_expression] = STATE(3449), - [sym__pointer_indirection_expression] = STATE(2747), - [sym_query_expression] = STATE(3362), - [sym_from_clause] = STATE(6146), - [sym_conditional_expression] = STATE(3362), - [sym_conditional_access_expression] = STATE(3362), - [sym_as_expression] = STATE(3362), - [sym_is_expression] = STATE(3362), - [sym_is_pattern_expression] = STATE(3362), - [sym_cast_expression] = STATE(3362), - [sym_checked_expression] = STATE(3362), - [sym_invocation_expression] = STATE(3449), - [sym_switch_expression] = STATE(3362), - [sym_await_expression] = STATE(3449), - [sym_throw_expression] = STATE(3362), - [sym_element_access_expression] = STATE(2747), - [sym_interpolated_string_expression] = STATE(3362), - [sym_member_access_expression] = STATE(2747), - [sym_object_creation_expression] = STATE(3449), - [sym_parenthesized_expression] = STATE(3449), - [sym__parenthesized_lvalue_expression] = STATE(2747), - [sym_lambda_expression] = STATE(3362), - [sym__lambda_expression_init] = STATE(7381), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3362), - [sym_anonymous_method_expression] = STATE(3362), - [sym_anonymous_object_creation_expression] = STATE(3362), - [sym_implicit_array_creation_expression] = STATE(3362), - [sym_implicit_object_creation_expression] = STATE(3362), - [sym_implicit_stackalloc_expression] = STATE(3362), - [sym_initializer_expression] = STATE(3362), - [sym_default_expression] = STATE(3362), - [sym_with_expression] = STATE(3362), - [sym_sizeof_expression] = STATE(3362), - [sym_typeof_expression] = STATE(3362), - [sym_makeref_expression] = STATE(3362), - [sym_ref_expression] = STATE(3362), - [sym_reftype_expression] = STATE(3362), - [sym_refvalue_expression] = STATE(3362), - [sym_stackalloc_expression] = STATE(3362), - [sym_range_expression] = STATE(3362), - [sym_tuple_expression] = STATE(2747), - [sym_literal] = STATE(3362), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3362), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2816), + [sym__name] = STATE(5879), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2238), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(4324), + [sym_non_lvalue_expression] = STATE(3495), + [sym_lvalue_expression] = STATE(3197), + [sym__expression_statement_expression] = STATE(3462), + [sym_assignment_expression] = STATE(3497), + [sym_binary_expression] = STATE(3462), + [sym_postfix_unary_expression] = STATE(3497), + [sym_prefix_unary_expression] = STATE(3497), + [sym__pointer_indirection_expression] = STATE(2815), + [sym_query_expression] = STATE(3462), + [sym_from_clause] = STATE(6144), + [sym_conditional_expression] = STATE(3462), + [sym_conditional_access_expression] = STATE(3462), + [sym_as_expression] = STATE(3462), + [sym_is_expression] = STATE(3462), + [sym_is_pattern_expression] = STATE(3462), + [sym_cast_expression] = STATE(3462), + [sym_checked_expression] = STATE(3462), + [sym_invocation_expression] = STATE(3497), + [sym_switch_expression] = STATE(3462), + [sym_await_expression] = STATE(3497), + [sym_throw_expression] = STATE(3462), + [sym_element_access_expression] = STATE(2815), + [sym_interpolated_string_expression] = STATE(3462), + [sym_member_access_expression] = STATE(2815), + [sym_object_creation_expression] = STATE(3497), + [sym_parenthesized_expression] = STATE(3497), + [sym__parenthesized_lvalue_expression] = STATE(2815), + [sym_lambda_expression] = STATE(3462), + [sym__lambda_expression_init] = STATE(7615), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3462), + [sym_anonymous_method_expression] = STATE(3462), + [sym_anonymous_object_creation_expression] = STATE(3462), + [sym_implicit_array_creation_expression] = STATE(3462), + [sym_implicit_object_creation_expression] = STATE(3462), + [sym_implicit_stackalloc_expression] = STATE(3462), + [sym_initializer_expression] = STATE(3462), + [sym_default_expression] = STATE(3462), + [sym_with_expression] = STATE(3462), + [sym_sizeof_expression] = STATE(3462), + [sym_typeof_expression] = STATE(3462), + [sym_makeref_expression] = STATE(3462), + [sym_ref_expression] = STATE(3462), + [sym_reftype_expression] = STATE(3462), + [sym_refvalue_expression] = STATE(3462), + [sym_stackalloc_expression] = STATE(3462), + [sym_range_expression] = STATE(3462), + [sym_tuple_expression] = STATE(2815), + [sym_literal] = STATE(3462), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3462), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(152), [sym_preproc_endregion] = STATE(152), [sym_preproc_line] = STATE(152), @@ -59750,71 +59636,71 @@ 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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3385), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3367), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1307), - [anon_sym_COLON] = ACTIONS(1151), - [anon_sym_COMMA] = ACTIONS(1151), - [anon_sym_LPAREN] = ACTIONS(1359), - [anon_sym_RPAREN] = ACTIONS(1151), - [anon_sym_ref] = ACTIONS(1361), - [anon_sym_LBRACE] = ACTIONS(1313), - [anon_sym_RBRACE] = ACTIONS(1151), - [anon_sym_delegate] = ACTIONS(1315), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1305), + [anon_sym_COLON] = ACTIONS(1147), + [anon_sym_COMMA] = ACTIONS(1147), + [anon_sym_LPAREN] = ACTIONS(1357), + [anon_sym_RPAREN] = ACTIONS(1147), + [anon_sym_ref] = ACTIONS(1359), + [anon_sym_LBRACE] = ACTIONS(1311), + [anon_sym_RBRACE] = ACTIONS(1147), + [anon_sym_delegate] = ACTIONS(1313), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1317), - [anon_sym_LT] = ACTIONS(1165), - [anon_sym_GT] = ACTIONS(1165), + [anon_sym_new] = ACTIONS(1315), + [anon_sym_LT] = ACTIONS(1161), + [anon_sym_GT] = ACTIONS(1161), [anon_sym_where] = ACTIONS(29), - [anon_sym_QMARK] = ACTIONS(1165), + [anon_sym_QMARK] = ACTIONS(1161), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1319), - [anon_sym_BANG] = ACTIONS(1109), - [anon_sym_TILDE] = ACTIONS(1107), - [anon_sym_PLUS_PLUS] = ACTIONS(1107), - [anon_sym_DASH_DASH] = ACTIONS(1107), + [anon_sym_checked] = ACTIONS(1317), + [anon_sym_BANG] = ACTIONS(1103), + [anon_sym_TILDE] = ACTIONS(1101), + [anon_sym_PLUS_PLUS] = ACTIONS(1101), + [anon_sym_DASH_DASH] = ACTIONS(1101), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1109), - [anon_sym_DASH] = ACTIONS(1109), - [anon_sym_STAR] = ACTIONS(1363), - [anon_sym_SLASH] = ACTIONS(1165), - [anon_sym_PERCENT] = ACTIONS(1151), - [anon_sym_CARET] = ACTIONS(1107), - [anon_sym_PIPE] = ACTIONS(1165), - [anon_sym_AMP] = ACTIONS(1109), - [anon_sym_LT_LT] = ACTIONS(1151), - [anon_sym_GT_GT] = ACTIONS(1165), - [anon_sym_GT_GT_GT] = ACTIONS(1151), - [anon_sym_EQ_EQ] = ACTIONS(1151), - [anon_sym_BANG_EQ] = ACTIONS(1151), - [anon_sym_GT_EQ] = ACTIONS(1151), - [anon_sym_LT_EQ] = ACTIONS(1151), - [anon_sym_this] = ACTIONS(1323), - [anon_sym_DOT] = ACTIONS(1165), + [anon_sym_PLUS] = ACTIONS(1103), + [anon_sym_DASH] = ACTIONS(1103), + [anon_sym_STAR] = ACTIONS(1361), + [anon_sym_SLASH] = ACTIONS(1161), + [anon_sym_PERCENT] = ACTIONS(1147), + [anon_sym_CARET] = ACTIONS(1101), + [anon_sym_PIPE] = ACTIONS(1161), + [anon_sym_AMP] = ACTIONS(1103), + [anon_sym_LT_LT] = ACTIONS(1147), + [anon_sym_GT_GT] = ACTIONS(1161), + [anon_sym_GT_GT_GT] = ACTIONS(1147), + [anon_sym_EQ_EQ] = ACTIONS(1147), + [anon_sym_BANG_EQ] = ACTIONS(1147), + [anon_sym_GT_EQ] = ACTIONS(1147), + [anon_sym_LT_EQ] = ACTIONS(1147), + [anon_sym_this] = ACTIONS(1321), + [anon_sym_DOT] = ACTIONS(1161), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1325), + [anon_sym_base] = ACTIONS(1323), [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1319), + [anon_sym_unchecked] = ACTIONS(1317), [anon_sym_yield] = ACTIONS(29), - [anon_sym_switch] = ACTIONS(1165), + [anon_sym_switch] = ACTIONS(1161), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1365), + [anon_sym_throw] = ACTIONS(1363), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1367), - [anon_sym_DOT_DOT] = ACTIONS(1369), - [anon_sym_and] = ACTIONS(1165), - [anon_sym_or] = ACTIONS(1165), - [anon_sym_AMP_AMP] = ACTIONS(1151), - [anon_sym_PIPE_PIPE] = ACTIONS(1151), - [anon_sym_QMARK_QMARK] = ACTIONS(1151), + [anon_sym_await] = ACTIONS(1365), + [anon_sym_DOT_DOT] = ACTIONS(1367), + [anon_sym_and] = ACTIONS(1161), + [anon_sym_or] = ACTIONS(1161), + [anon_sym_AMP_AMP] = ACTIONS(1147), + [anon_sym_PIPE_PIPE] = ACTIONS(1147), + [anon_sym_QMARK_QMARK] = ACTIONS(1147), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -59827,23 +59713,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(1165), - [anon_sym_is] = ACTIONS(1165), - [anon_sym_DASH_GT] = ACTIONS(1151), - [anon_sym_stackalloc] = ACTIONS(1333), - [anon_sym_with] = ACTIONS(1165), + [anon_sym_as] = ACTIONS(1161), + [anon_sym_is] = ACTIONS(1161), + [anon_sym_DASH_GT] = ACTIONS(1147), + [anon_sym_stackalloc] = ACTIONS(1331), + [anon_sym_with] = ACTIONS(1161), [anon_sym_sizeof] = ACTIONS(129), [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(1335), - [anon_sym___reftype] = ACTIONS(1337), - [anon_sym___refvalue] = ACTIONS(1339), + [anon_sym___makeref] = ACTIONS(1333), + [anon_sym___reftype] = ACTIONS(1335), + [anon_sym___refvalue] = ACTIONS(1337), [sym_null_literal] = ACTIONS(139), [anon_sym_SQUOTE] = ACTIONS(141), [sym_integer_literal] = ACTIONS(139), [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1341), + [aux_sym_preproc_if_token1] = ACTIONS(1339), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -59860,84 +59746,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [153] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2762), - [sym__name] = STATE(5910), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2204), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(4270), - [sym_non_lvalue_expression] = STATE(3438), - [sym_lvalue_expression] = STATE(3162), - [sym__expression_statement_expression] = STATE(3362), - [sym_assignment_expression] = STATE(3449), - [sym_binary_expression] = STATE(3362), - [sym_postfix_unary_expression] = STATE(3449), - [sym_prefix_unary_expression] = STATE(3449), - [sym__pointer_indirection_expression] = STATE(2747), - [sym_query_expression] = STATE(3362), - [sym_from_clause] = STATE(6171), - [sym_conditional_expression] = STATE(3362), - [sym_conditional_access_expression] = STATE(3362), - [sym_as_expression] = STATE(3362), - [sym_is_expression] = STATE(3362), - [sym_is_pattern_expression] = STATE(3362), - [sym_cast_expression] = STATE(3362), - [sym_checked_expression] = STATE(3362), - [sym_invocation_expression] = STATE(3449), - [sym_switch_expression] = STATE(3362), - [sym_await_expression] = STATE(3449), - [sym_throw_expression] = STATE(3362), - [sym_element_access_expression] = STATE(2747), - [sym_interpolated_string_expression] = STATE(3362), - [sym_member_access_expression] = STATE(2747), - [sym_object_creation_expression] = STATE(3449), - [sym_parenthesized_expression] = STATE(3449), - [sym__parenthesized_lvalue_expression] = STATE(2747), - [sym_lambda_expression] = STATE(3362), - [sym__lambda_expression_init] = STATE(7320), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3362), - [sym_anonymous_method_expression] = STATE(3362), - [sym_anonymous_object_creation_expression] = STATE(3362), - [sym_implicit_array_creation_expression] = STATE(3362), - [sym_implicit_object_creation_expression] = STATE(3362), - [sym_implicit_stackalloc_expression] = STATE(3362), - [sym_initializer_expression] = STATE(3362), - [sym_default_expression] = STATE(3362), - [sym_with_expression] = STATE(3362), - [sym_sizeof_expression] = STATE(3362), - [sym_typeof_expression] = STATE(3362), - [sym_makeref_expression] = STATE(3362), - [sym_ref_expression] = STATE(3362), - [sym_reftype_expression] = STATE(3362), - [sym_refvalue_expression] = STATE(3362), - [sym_stackalloc_expression] = STATE(3362), - [sym_range_expression] = STATE(3362), - [sym_tuple_expression] = STATE(2747), - [sym_literal] = STATE(3362), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3362), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2816), + [sym__name] = STATE(5873), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2196), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(4319), + [sym_non_lvalue_expression] = STATE(3495), + [sym_lvalue_expression] = STATE(3208), + [sym__expression_statement_expression] = STATE(3462), + [sym_assignment_expression] = STATE(3497), + [sym_binary_expression] = STATE(3462), + [sym_postfix_unary_expression] = STATE(3497), + [sym_prefix_unary_expression] = STATE(3497), + [sym__pointer_indirection_expression] = STATE(2815), + [sym_query_expression] = STATE(3462), + [sym_from_clause] = STATE(6140), + [sym_conditional_expression] = STATE(3462), + [sym_conditional_access_expression] = STATE(3462), + [sym_as_expression] = STATE(3462), + [sym_is_expression] = STATE(3462), + [sym_is_pattern_expression] = STATE(3462), + [sym_cast_expression] = STATE(3462), + [sym_checked_expression] = STATE(3462), + [sym_invocation_expression] = STATE(3497), + [sym_switch_expression] = STATE(3462), + [sym_await_expression] = STATE(3497), + [sym_throw_expression] = STATE(3462), + [sym_element_access_expression] = STATE(2815), + [sym_interpolated_string_expression] = STATE(3462), + [sym_member_access_expression] = STATE(2815), + [sym_object_creation_expression] = STATE(3497), + [sym_parenthesized_expression] = STATE(3497), + [sym__parenthesized_lvalue_expression] = STATE(2815), + [sym_lambda_expression] = STATE(3462), + [sym__lambda_expression_init] = STATE(7520), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3462), + [sym_anonymous_method_expression] = STATE(3462), + [sym_anonymous_object_creation_expression] = STATE(3462), + [sym_implicit_array_creation_expression] = STATE(3462), + [sym_implicit_object_creation_expression] = STATE(3462), + [sym_implicit_stackalloc_expression] = STATE(3462), + [sym_initializer_expression] = STATE(3462), + [sym_default_expression] = STATE(3462), + [sym_with_expression] = STATE(3462), + [sym_sizeof_expression] = STATE(3462), + [sym_typeof_expression] = STATE(3462), + [sym_makeref_expression] = STATE(3462), + [sym_ref_expression] = STATE(3462), + [sym_reftype_expression] = STATE(3462), + [sym_refvalue_expression] = STATE(3462), + [sym_stackalloc_expression] = STATE(3462), + [sym_range_expression] = STATE(3462), + [sym_tuple_expression] = STATE(2815), + [sym_literal] = STATE(3462), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3462), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(153), [sym_preproc_endregion] = STATE(153), [sym_preproc_line] = STATE(153), @@ -59947,68 +59833,68 @@ 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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3385), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3367), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), - [anon_sym_SEMI] = ACTIONS(1221), + [anon_sym_SEMI] = ACTIONS(1219), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1307), - [anon_sym_LPAREN] = ACTIONS(1343), - [anon_sym_ref] = ACTIONS(1345), - [anon_sym_LBRACE] = ACTIONS(1313), - [anon_sym_delegate] = ACTIONS(1315), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1305), + [anon_sym_LPAREN] = ACTIONS(1369), + [anon_sym_ref] = ACTIONS(1371), + [anon_sym_LBRACE] = ACTIONS(1311), + [anon_sym_delegate] = ACTIONS(1313), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1317), - [anon_sym_LT] = ACTIONS(1223), - [anon_sym_GT] = ACTIONS(1223), + [anon_sym_new] = ACTIONS(1315), + [anon_sym_LT] = ACTIONS(1221), + [anon_sym_GT] = ACTIONS(1221), [anon_sym_where] = ACTIONS(29), - [anon_sym_QMARK] = ACTIONS(1223), + [anon_sym_QMARK] = ACTIONS(1221), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1319), - [anon_sym_BANG] = ACTIONS(1347), - [anon_sym_TILDE] = ACTIONS(1349), - [anon_sym_PLUS_PLUS] = ACTIONS(1349), - [anon_sym_DASH_DASH] = ACTIONS(1349), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1347), - [anon_sym_DASH] = ACTIONS(1347), - [anon_sym_STAR] = ACTIONS(1351), - [anon_sym_SLASH] = ACTIONS(1223), - [anon_sym_PERCENT] = ACTIONS(1221), - [anon_sym_CARET] = ACTIONS(1349), - [anon_sym_PIPE] = ACTIONS(1223), - [anon_sym_AMP] = ACTIONS(1347), - [anon_sym_LT_LT] = ACTIONS(1221), - [anon_sym_GT_GT] = ACTIONS(1223), - [anon_sym_GT_GT_GT] = ACTIONS(1221), - [anon_sym_EQ_EQ] = ACTIONS(1221), - [anon_sym_BANG_EQ] = ACTIONS(1221), - [anon_sym_GT_EQ] = ACTIONS(1221), - [anon_sym_LT_EQ] = ACTIONS(1221), - [anon_sym_this] = ACTIONS(1323), - [anon_sym_DOT] = ACTIONS(1223), + [anon_sym_checked] = ACTIONS(1317), + [anon_sym_BANG] = ACTIONS(1373), + [anon_sym_TILDE] = ACTIONS(1375), + [anon_sym_PLUS_PLUS] = ACTIONS(1375), + [anon_sym_DASH_DASH] = ACTIONS(1375), + [anon_sym_true] = ACTIONS(77), + [anon_sym_false] = ACTIONS(77), + [anon_sym_PLUS] = ACTIONS(1373), + [anon_sym_DASH] = ACTIONS(1373), + [anon_sym_STAR] = ACTIONS(1377), + [anon_sym_SLASH] = ACTIONS(1221), + [anon_sym_PERCENT] = ACTIONS(1219), + [anon_sym_CARET] = ACTIONS(1375), + [anon_sym_PIPE] = ACTIONS(1221), + [anon_sym_AMP] = ACTIONS(1373), + [anon_sym_LT_LT] = ACTIONS(1219), + [anon_sym_GT_GT] = ACTIONS(1221), + [anon_sym_GT_GT_GT] = ACTIONS(1219), + [anon_sym_EQ_EQ] = ACTIONS(1219), + [anon_sym_BANG_EQ] = ACTIONS(1219), + [anon_sym_GT_EQ] = ACTIONS(1219), + [anon_sym_LT_EQ] = ACTIONS(1219), + [anon_sym_this] = ACTIONS(1321), + [anon_sym_DOT] = ACTIONS(1221), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1325), + [anon_sym_base] = ACTIONS(1323), [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1319), + [anon_sym_unchecked] = ACTIONS(1317), [anon_sym_yield] = ACTIONS(29), - [anon_sym_switch] = ACTIONS(1223), + [anon_sym_switch] = ACTIONS(1221), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1353), + [anon_sym_throw] = ACTIONS(1379), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1355), - [anon_sym_DOT_DOT] = ACTIONS(1357), - [anon_sym_and] = ACTIONS(1223), - [anon_sym_or] = ACTIONS(1223), - [anon_sym_AMP_AMP] = ACTIONS(1221), - [anon_sym_PIPE_PIPE] = ACTIONS(1221), - [anon_sym_QMARK_QMARK] = ACTIONS(1221), + [anon_sym_await] = ACTIONS(1381), + [anon_sym_DOT_DOT] = ACTIONS(1383), + [anon_sym_and] = ACTIONS(1221), + [anon_sym_or] = ACTIONS(1221), + [anon_sym_AMP_AMP] = ACTIONS(1219), + [anon_sym_PIPE_PIPE] = ACTIONS(1219), + [anon_sym_QMARK_QMARK] = ACTIONS(1219), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -60021,26 +59907,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(1223), - [anon_sym_is] = ACTIONS(1223), - [anon_sym_DASH_GT] = ACTIONS(1221), - [anon_sym_stackalloc] = ACTIONS(1333), - [anon_sym_with] = ACTIONS(1223), + [anon_sym_as] = ACTIONS(1221), + [anon_sym_is] = ACTIONS(1221), + [anon_sym_DASH_GT] = ACTIONS(1219), + [anon_sym_stackalloc] = ACTIONS(1331), + [anon_sym_with] = ACTIONS(1221), [anon_sym_sizeof] = ACTIONS(129), [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(1335), - [anon_sym___reftype] = ACTIONS(1337), - [anon_sym___refvalue] = ACTIONS(1339), + [anon_sym___makeref] = ACTIONS(1333), + [anon_sym___reftype] = ACTIONS(1335), + [anon_sym___refvalue] = ACTIONS(1337), [sym_null_literal] = ACTIONS(139), [anon_sym_SQUOTE] = ACTIONS(141), [sym_integer_literal] = ACTIONS(139), [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1341), - [aux_sym_preproc_if_token3] = ACTIONS(1221), - [aux_sym_preproc_else_token1] = ACTIONS(1221), - [aux_sym_preproc_elif_token1] = ACTIONS(1221), + [aux_sym_preproc_if_token1] = ACTIONS(1339), + [aux_sym_preproc_if_token3] = ACTIONS(1219), + [aux_sym_preproc_else_token1] = ACTIONS(1219), + [aux_sym_preproc_elif_token1] = ACTIONS(1219), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -60057,84 +59943,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [154] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2762), - [sym__name] = STATE(5889), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2247), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(4303), - [sym_non_lvalue_expression] = STATE(3438), - [sym_lvalue_expression] = STATE(3224), - [sym__expression_statement_expression] = STATE(3362), - [sym_assignment_expression] = STATE(3449), - [sym_binary_expression] = STATE(3362), - [sym_postfix_unary_expression] = STATE(3449), - [sym_prefix_unary_expression] = STATE(3449), - [sym__pointer_indirection_expression] = STATE(2747), - [sym_query_expression] = STATE(3362), - [sym_from_clause] = STATE(6146), - [sym_conditional_expression] = STATE(3362), - [sym_conditional_access_expression] = STATE(3362), - [sym_as_expression] = STATE(3362), - [sym_is_expression] = STATE(3362), - [sym_is_pattern_expression] = STATE(3362), - [sym_cast_expression] = STATE(3362), - [sym_checked_expression] = STATE(3362), - [sym_invocation_expression] = STATE(3449), - [sym_switch_expression] = STATE(3362), - [sym_await_expression] = STATE(3449), - [sym_throw_expression] = STATE(3362), - [sym_element_access_expression] = STATE(2747), - [sym_interpolated_string_expression] = STATE(3362), - [sym_member_access_expression] = STATE(2747), - [sym_object_creation_expression] = STATE(3449), - [sym_parenthesized_expression] = STATE(3449), - [sym__parenthesized_lvalue_expression] = STATE(2747), - [sym_lambda_expression] = STATE(3362), - [sym__lambda_expression_init] = STATE(7381), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3362), - [sym_anonymous_method_expression] = STATE(3362), - [sym_anonymous_object_creation_expression] = STATE(3362), - [sym_implicit_array_creation_expression] = STATE(3362), - [sym_implicit_object_creation_expression] = STATE(3362), - [sym_implicit_stackalloc_expression] = STATE(3362), - [sym_initializer_expression] = STATE(3362), - [sym_default_expression] = STATE(3362), - [sym_with_expression] = STATE(3362), - [sym_sizeof_expression] = STATE(3362), - [sym_typeof_expression] = STATE(3362), - [sym_makeref_expression] = STATE(3362), - [sym_ref_expression] = STATE(3362), - [sym_reftype_expression] = STATE(3362), - [sym_refvalue_expression] = STATE(3362), - [sym_stackalloc_expression] = STATE(3362), - [sym_range_expression] = STATE(3362), - [sym_tuple_expression] = STATE(2747), - [sym_literal] = STATE(3362), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3362), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2816), + [sym__name] = STATE(5879), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2238), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(4274), + [sym_non_lvalue_expression] = STATE(3495), + [sym_lvalue_expression] = STATE(3197), + [sym__expression_statement_expression] = STATE(3462), + [sym_assignment_expression] = STATE(3497), + [sym_binary_expression] = STATE(3462), + [sym_postfix_unary_expression] = STATE(3497), + [sym_prefix_unary_expression] = STATE(3497), + [sym__pointer_indirection_expression] = STATE(2815), + [sym_query_expression] = STATE(3462), + [sym_from_clause] = STATE(6144), + [sym_conditional_expression] = STATE(3462), + [sym_conditional_access_expression] = STATE(3462), + [sym_as_expression] = STATE(3462), + [sym_is_expression] = STATE(3462), + [sym_is_pattern_expression] = STATE(3462), + [sym_cast_expression] = STATE(3462), + [sym_checked_expression] = STATE(3462), + [sym_invocation_expression] = STATE(3497), + [sym_switch_expression] = STATE(3462), + [sym_await_expression] = STATE(3497), + [sym_throw_expression] = STATE(3462), + [sym_element_access_expression] = STATE(2815), + [sym_interpolated_string_expression] = STATE(3462), + [sym_member_access_expression] = STATE(2815), + [sym_object_creation_expression] = STATE(3497), + [sym_parenthesized_expression] = STATE(3497), + [sym__parenthesized_lvalue_expression] = STATE(2815), + [sym_lambda_expression] = STATE(3462), + [sym__lambda_expression_init] = STATE(7615), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3462), + [sym_anonymous_method_expression] = STATE(3462), + [sym_anonymous_object_creation_expression] = STATE(3462), + [sym_implicit_array_creation_expression] = STATE(3462), + [sym_implicit_object_creation_expression] = STATE(3462), + [sym_implicit_stackalloc_expression] = STATE(3462), + [sym_initializer_expression] = STATE(3462), + [sym_default_expression] = STATE(3462), + [sym_with_expression] = STATE(3462), + [sym_sizeof_expression] = STATE(3462), + [sym_typeof_expression] = STATE(3462), + [sym_makeref_expression] = STATE(3462), + [sym_ref_expression] = STATE(3462), + [sym_reftype_expression] = STATE(3462), + [sym_refvalue_expression] = STATE(3462), + [sym_stackalloc_expression] = STATE(3462), + [sym_range_expression] = STATE(3462), + [sym_tuple_expression] = STATE(2815), + [sym_literal] = STATE(3462), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3462), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(154), [sym_preproc_endregion] = STATE(154), [sym_preproc_line] = STATE(154), @@ -60144,71 +60030,71 @@ 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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3385), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3367), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1307), - [anon_sym_COLON] = ACTIONS(1221), - [anon_sym_COMMA] = ACTIONS(1221), - [anon_sym_LPAREN] = ACTIONS(1359), - [anon_sym_RPAREN] = ACTIONS(1221), - [anon_sym_ref] = ACTIONS(1361), - [anon_sym_LBRACE] = ACTIONS(1313), - [anon_sym_RBRACE] = ACTIONS(1221), - [anon_sym_delegate] = ACTIONS(1315), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1305), + [anon_sym_COLON] = ACTIONS(1219), + [anon_sym_COMMA] = ACTIONS(1219), + [anon_sym_LPAREN] = ACTIONS(1357), + [anon_sym_RPAREN] = ACTIONS(1219), + [anon_sym_ref] = ACTIONS(1359), + [anon_sym_LBRACE] = ACTIONS(1311), + [anon_sym_RBRACE] = ACTIONS(1219), + [anon_sym_delegate] = ACTIONS(1313), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1317), - [anon_sym_LT] = ACTIONS(1223), - [anon_sym_GT] = ACTIONS(1223), + [anon_sym_new] = ACTIONS(1315), + [anon_sym_LT] = ACTIONS(1221), + [anon_sym_GT] = ACTIONS(1221), [anon_sym_where] = ACTIONS(29), - [anon_sym_QMARK] = ACTIONS(1223), + [anon_sym_QMARK] = ACTIONS(1221), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1319), - [anon_sym_BANG] = ACTIONS(1109), - [anon_sym_TILDE] = ACTIONS(1107), - [anon_sym_PLUS_PLUS] = ACTIONS(1107), - [anon_sym_DASH_DASH] = ACTIONS(1107), + [anon_sym_checked] = ACTIONS(1317), + [anon_sym_BANG] = ACTIONS(1103), + [anon_sym_TILDE] = ACTIONS(1101), + [anon_sym_PLUS_PLUS] = ACTIONS(1101), + [anon_sym_DASH_DASH] = ACTIONS(1101), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1109), - [anon_sym_DASH] = ACTIONS(1109), - [anon_sym_STAR] = ACTIONS(1363), - [anon_sym_SLASH] = ACTIONS(1223), - [anon_sym_PERCENT] = ACTIONS(1221), - [anon_sym_CARET] = ACTIONS(1107), - [anon_sym_PIPE] = ACTIONS(1223), - [anon_sym_AMP] = ACTIONS(1109), - [anon_sym_LT_LT] = ACTIONS(1221), - [anon_sym_GT_GT] = ACTIONS(1223), - [anon_sym_GT_GT_GT] = ACTIONS(1221), - [anon_sym_EQ_EQ] = ACTIONS(1221), - [anon_sym_BANG_EQ] = ACTIONS(1221), - [anon_sym_GT_EQ] = ACTIONS(1221), - [anon_sym_LT_EQ] = ACTIONS(1221), - [anon_sym_this] = ACTIONS(1323), - [anon_sym_DOT] = ACTIONS(1223), + [anon_sym_PLUS] = ACTIONS(1103), + [anon_sym_DASH] = ACTIONS(1103), + [anon_sym_STAR] = ACTIONS(1361), + [anon_sym_SLASH] = ACTIONS(1221), + [anon_sym_PERCENT] = ACTIONS(1219), + [anon_sym_CARET] = ACTIONS(1101), + [anon_sym_PIPE] = ACTIONS(1221), + [anon_sym_AMP] = ACTIONS(1103), + [anon_sym_LT_LT] = ACTIONS(1219), + [anon_sym_GT_GT] = ACTIONS(1221), + [anon_sym_GT_GT_GT] = ACTIONS(1219), + [anon_sym_EQ_EQ] = ACTIONS(1219), + [anon_sym_BANG_EQ] = ACTIONS(1219), + [anon_sym_GT_EQ] = ACTIONS(1219), + [anon_sym_LT_EQ] = ACTIONS(1219), + [anon_sym_this] = ACTIONS(1321), + [anon_sym_DOT] = ACTIONS(1221), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1325), + [anon_sym_base] = ACTIONS(1323), [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1319), + [anon_sym_unchecked] = ACTIONS(1317), [anon_sym_yield] = ACTIONS(29), - [anon_sym_switch] = ACTIONS(1223), + [anon_sym_switch] = ACTIONS(1221), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1365), + [anon_sym_throw] = ACTIONS(1363), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1367), - [anon_sym_DOT_DOT] = ACTIONS(1369), - [anon_sym_and] = ACTIONS(1223), - [anon_sym_or] = ACTIONS(1223), - [anon_sym_AMP_AMP] = ACTIONS(1221), - [anon_sym_PIPE_PIPE] = ACTIONS(1221), - [anon_sym_QMARK_QMARK] = ACTIONS(1221), + [anon_sym_await] = ACTIONS(1365), + [anon_sym_DOT_DOT] = ACTIONS(1367), + [anon_sym_and] = ACTIONS(1221), + [anon_sym_or] = ACTIONS(1221), + [anon_sym_AMP_AMP] = ACTIONS(1219), + [anon_sym_PIPE_PIPE] = ACTIONS(1219), + [anon_sym_QMARK_QMARK] = ACTIONS(1219), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -60221,23 +60107,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(1223), - [anon_sym_is] = ACTIONS(1223), - [anon_sym_DASH_GT] = ACTIONS(1221), - [anon_sym_stackalloc] = ACTIONS(1333), - [anon_sym_with] = ACTIONS(1223), + [anon_sym_as] = ACTIONS(1221), + [anon_sym_is] = ACTIONS(1221), + [anon_sym_DASH_GT] = ACTIONS(1219), + [anon_sym_stackalloc] = ACTIONS(1331), + [anon_sym_with] = ACTIONS(1221), [anon_sym_sizeof] = ACTIONS(129), [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(1335), - [anon_sym___reftype] = ACTIONS(1337), - [anon_sym___refvalue] = ACTIONS(1339), + [anon_sym___makeref] = ACTIONS(1333), + [anon_sym___reftype] = ACTIONS(1335), + [anon_sym___refvalue] = ACTIONS(1337), [sym_null_literal] = ACTIONS(139), [anon_sym_SQUOTE] = ACTIONS(141), [sym_integer_literal] = ACTIONS(139), [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1341), + [aux_sym_preproc_if_token1] = ACTIONS(1339), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -60254,84 +60140,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [155] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2610), - [sym__name] = STATE(5879), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2197), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(4239), - [sym_non_lvalue_expression] = STATE(3277), - [sym_lvalue_expression] = STATE(3134), - [sym__expression_statement_expression] = STATE(3228), - [sym_assignment_expression] = STATE(3289), - [sym_binary_expression] = STATE(3228), - [sym_postfix_unary_expression] = STATE(3289), - [sym_prefix_unary_expression] = STATE(3289), - [sym__pointer_indirection_expression] = STATE(2609), - [sym_query_expression] = STATE(3228), - [sym_from_clause] = STATE(6162), - [sym_conditional_expression] = STATE(3228), - [sym_conditional_access_expression] = STATE(3228), - [sym_as_expression] = STATE(3228), - [sym_is_expression] = STATE(3228), - [sym_is_pattern_expression] = STATE(3228), - [sym_cast_expression] = STATE(3228), - [sym_checked_expression] = STATE(3228), - [sym_invocation_expression] = STATE(3289), - [sym_switch_expression] = STATE(3228), - [sym_await_expression] = STATE(3289), - [sym_throw_expression] = STATE(3228), - [sym_element_access_expression] = STATE(2609), - [sym_interpolated_string_expression] = STATE(3228), - [sym_member_access_expression] = STATE(2609), - [sym_object_creation_expression] = STATE(3289), - [sym_parenthesized_expression] = STATE(3289), - [sym__parenthesized_lvalue_expression] = STATE(2609), - [sym_lambda_expression] = STATE(3228), - [sym__lambda_expression_init] = STATE(7695), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3228), - [sym_anonymous_method_expression] = STATE(3228), - [sym_anonymous_object_creation_expression] = STATE(3228), - [sym_implicit_array_creation_expression] = STATE(3228), - [sym_implicit_object_creation_expression] = STATE(3228), - [sym_implicit_stackalloc_expression] = STATE(3228), - [sym_initializer_expression] = STATE(3228), - [sym_default_expression] = STATE(3228), - [sym_with_expression] = STATE(3228), - [sym_sizeof_expression] = STATE(3228), - [sym_typeof_expression] = STATE(3228), - [sym_makeref_expression] = STATE(3228), - [sym_ref_expression] = STATE(3228), - [sym_reftype_expression] = STATE(3228), - [sym_refvalue_expression] = STATE(3228), - [sym_stackalloc_expression] = STATE(3228), - [sym_range_expression] = STATE(3228), - [sym_tuple_expression] = STATE(2609), - [sym_literal] = STATE(3228), - [sym_character_literal] = STATE(3278), - [sym_string_literal] = STATE(3278), - [sym_raw_string_literal] = STATE(3278), - [sym_boolean_literal] = STATE(3278), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3228), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2816), + [sym__name] = STATE(5873), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2196), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(4337), + [sym_non_lvalue_expression] = STATE(3495), + [sym_lvalue_expression] = STATE(3208), + [sym__expression_statement_expression] = STATE(3462), + [sym_assignment_expression] = STATE(3497), + [sym_binary_expression] = STATE(3462), + [sym_postfix_unary_expression] = STATE(3497), + [sym_prefix_unary_expression] = STATE(3497), + [sym__pointer_indirection_expression] = STATE(2815), + [sym_query_expression] = STATE(3462), + [sym_from_clause] = STATE(6140), + [sym_conditional_expression] = STATE(3462), + [sym_conditional_access_expression] = STATE(3462), + [sym_as_expression] = STATE(3462), + [sym_is_expression] = STATE(3462), + [sym_is_pattern_expression] = STATE(3462), + [sym_cast_expression] = STATE(3462), + [sym_checked_expression] = STATE(3462), + [sym_invocation_expression] = STATE(3497), + [sym_switch_expression] = STATE(3462), + [sym_await_expression] = STATE(3497), + [sym_throw_expression] = STATE(3462), + [sym_element_access_expression] = STATE(2815), + [sym_interpolated_string_expression] = STATE(3462), + [sym_member_access_expression] = STATE(2815), + [sym_object_creation_expression] = STATE(3497), + [sym_parenthesized_expression] = STATE(3497), + [sym__parenthesized_lvalue_expression] = STATE(2815), + [sym_lambda_expression] = STATE(3462), + [sym__lambda_expression_init] = STATE(7520), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3462), + [sym_anonymous_method_expression] = STATE(3462), + [sym_anonymous_object_creation_expression] = STATE(3462), + [sym_implicit_array_creation_expression] = STATE(3462), + [sym_implicit_object_creation_expression] = STATE(3462), + [sym_implicit_stackalloc_expression] = STATE(3462), + [sym_initializer_expression] = STATE(3462), + [sym_default_expression] = STATE(3462), + [sym_with_expression] = STATE(3462), + [sym_sizeof_expression] = STATE(3462), + [sym_typeof_expression] = STATE(3462), + [sym_makeref_expression] = STATE(3462), + [sym_ref_expression] = STATE(3462), + [sym_reftype_expression] = STATE(3462), + [sym_refvalue_expression] = STATE(3462), + [sym_stackalloc_expression] = STATE(3462), + [sym_range_expression] = STATE(3462), + [sym_tuple_expression] = STATE(2815), + [sym_literal] = STATE(3462), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3462), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(155), [sym_preproc_endregion] = STATE(155), [sym_preproc_line] = STATE(155), @@ -60341,71 +60227,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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3396), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3367), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), + [anon_sym_SEMI] = ACTIONS(1147), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1153), - [anon_sym_COLON] = ACTIONS(1151), - [anon_sym_COMMA] = ACTIONS(1151), - [anon_sym_LPAREN] = ACTIONS(1371), - [anon_sym_RPAREN] = ACTIONS(1151), - [anon_sym_ref] = ACTIONS(1373), - [anon_sym_LBRACE] = ACTIONS(1159), - [anon_sym_RBRACE] = ACTIONS(1151), - [anon_sym_delegate] = ACTIONS(1161), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1305), + [anon_sym_LPAREN] = ACTIONS(1369), + [anon_sym_ref] = ACTIONS(1371), + [anon_sym_LBRACE] = ACTIONS(1311), + [anon_sym_delegate] = ACTIONS(1313), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1163), - [anon_sym_LT] = ACTIONS(1165), - [anon_sym_GT] = ACTIONS(1165), + [anon_sym_new] = ACTIONS(1315), + [anon_sym_LT] = ACTIONS(1161), + [anon_sym_GT] = ACTIONS(1161), [anon_sym_where] = ACTIONS(29), - [anon_sym_QMARK] = ACTIONS(1165), + [anon_sym_QMARK] = ACTIONS(1161), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1167), - [anon_sym_BANG] = ACTIONS(1375), - [anon_sym_TILDE] = ACTIONS(1377), - [anon_sym_PLUS_PLUS] = ACTIONS(1377), - [anon_sym_DASH_DASH] = ACTIONS(1377), - [anon_sym_true] = ACTIONS(1173), - [anon_sym_false] = ACTIONS(1173), - [anon_sym_PLUS] = ACTIONS(1375), - [anon_sym_DASH] = ACTIONS(1375), - [anon_sym_STAR] = ACTIONS(1379), - [anon_sym_SLASH] = ACTIONS(1165), - [anon_sym_PERCENT] = ACTIONS(1151), - [anon_sym_CARET] = ACTIONS(1377), - [anon_sym_PIPE] = ACTIONS(1165), - [anon_sym_AMP] = ACTIONS(1375), - [anon_sym_LT_LT] = ACTIONS(1151), - [anon_sym_GT_GT] = ACTIONS(1165), - [anon_sym_GT_GT_GT] = ACTIONS(1151), - [anon_sym_EQ_EQ] = ACTIONS(1151), - [anon_sym_BANG_EQ] = ACTIONS(1151), - [anon_sym_GT_EQ] = ACTIONS(1151), - [anon_sym_LT_EQ] = ACTIONS(1151), - [anon_sym_this] = ACTIONS(1177), - [anon_sym_DOT] = ACTIONS(1165), + [anon_sym_checked] = ACTIONS(1317), + [anon_sym_BANG] = ACTIONS(1373), + [anon_sym_TILDE] = ACTIONS(1375), + [anon_sym_PLUS_PLUS] = ACTIONS(1375), + [anon_sym_DASH_DASH] = ACTIONS(1375), + [anon_sym_true] = ACTIONS(77), + [anon_sym_false] = ACTIONS(77), + [anon_sym_PLUS] = ACTIONS(1373), + [anon_sym_DASH] = ACTIONS(1373), + [anon_sym_STAR] = ACTIONS(1377), + [anon_sym_SLASH] = ACTIONS(1161), + [anon_sym_PERCENT] = ACTIONS(1147), + [anon_sym_CARET] = ACTIONS(1375), + [anon_sym_PIPE] = ACTIONS(1161), + [anon_sym_AMP] = ACTIONS(1373), + [anon_sym_LT_LT] = ACTIONS(1147), + [anon_sym_GT_GT] = ACTIONS(1161), + [anon_sym_GT_GT_GT] = ACTIONS(1147), + [anon_sym_EQ_EQ] = ACTIONS(1147), + [anon_sym_BANG_EQ] = ACTIONS(1147), + [anon_sym_GT_EQ] = ACTIONS(1147), + [anon_sym_LT_EQ] = ACTIONS(1147), + [anon_sym_this] = ACTIONS(1321), + [anon_sym_DOT] = ACTIONS(1161), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1179), + [anon_sym_base] = ACTIONS(1323), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1181), - [anon_sym_unchecked] = ACTIONS(1167), + [sym_predefined_type] = ACTIONS(91), + [anon_sym_unchecked] = ACTIONS(1317), [anon_sym_yield] = ACTIONS(29), - [anon_sym_switch] = ACTIONS(1165), - [anon_sym_default] = ACTIONS(1183), - [anon_sym_throw] = ACTIONS(1381), + [anon_sym_switch] = ACTIONS(1161), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(1379), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1383), - [anon_sym_DOT_DOT] = ACTIONS(1385), - [anon_sym_and] = ACTIONS(1165), - [anon_sym_or] = ACTIONS(1165), - [anon_sym_AMP_AMP] = ACTIONS(1151), - [anon_sym_PIPE_PIPE] = ACTIONS(1151), - [anon_sym_QMARK_QMARK] = ACTIONS(1151), + [anon_sym_await] = ACTIONS(1381), + [anon_sym_DOT_DOT] = ACTIONS(1383), + [anon_sym_and] = ACTIONS(1161), + [anon_sym_or] = ACTIONS(1161), + [anon_sym_AMP_AMP] = ACTIONS(1147), + [anon_sym_PIPE_PIPE] = ACTIONS(1147), + [anon_sym_QMARK_QMARK] = ACTIONS(1147), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -60418,23 +60301,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(1165), - [anon_sym_is] = ACTIONS(1165), - [anon_sym_DASH_GT] = ACTIONS(1151), - [anon_sym_stackalloc] = ACTIONS(1191), - [anon_sym_with] = ACTIONS(1165), - [anon_sym_sizeof] = ACTIONS(1193), - [anon_sym_typeof] = ACTIONS(1195), - [anon_sym___makeref] = ACTIONS(1197), - [anon_sym___reftype] = ACTIONS(1199), - [anon_sym___refvalue] = ACTIONS(1201), - [sym_null_literal] = ACTIONS(1203), - [anon_sym_SQUOTE] = ACTIONS(1205), - [sym_integer_literal] = ACTIONS(1203), - [sym_real_literal] = ACTIONS(1207), - [anon_sym_DQUOTE] = ACTIONS(1209), - [sym_verbatim_string_literal] = ACTIONS(1207), - [aux_sym_preproc_if_token1] = ACTIONS(1211), + [anon_sym_as] = ACTIONS(1161), + [anon_sym_is] = ACTIONS(1161), + [anon_sym_DASH_GT] = ACTIONS(1147), + [anon_sym_stackalloc] = ACTIONS(1331), + [anon_sym_with] = ACTIONS(1161), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(1333), + [anon_sym___reftype] = ACTIONS(1335), + [anon_sym___refvalue] = ACTIONS(1337), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_literal] = ACTIONS(143), + [anon_sym_DQUOTE] = ACTIONS(145), + [sym_verbatim_string_literal] = ACTIONS(143), + [aux_sym_preproc_if_token1] = ACTIONS(1339), + [aux_sym_preproc_if_token3] = ACTIONS(1147), + [aux_sym_preproc_else_token1] = ACTIONS(1147), + [aux_sym_preproc_elif_token1] = ACTIONS(1147), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -60445,90 +60331,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1213), - [sym_interpolation_verbatim_start] = ACTIONS(1215), - [sym_interpolation_raw_start] = ACTIONS(1217), - [sym_raw_string_start] = ACTIONS(1219), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [sym_interpolation_raw_start] = ACTIONS(155), + [sym_raw_string_start] = ACTIONS(157), }, [156] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2610), - [sym__name] = STATE(5879), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2197), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(4241), - [sym_non_lvalue_expression] = STATE(3277), - [sym_lvalue_expression] = STATE(3134), - [sym__expression_statement_expression] = STATE(3228), - [sym_assignment_expression] = STATE(3289), - [sym_binary_expression] = STATE(3228), - [sym_postfix_unary_expression] = STATE(3289), - [sym_prefix_unary_expression] = STATE(3289), - [sym__pointer_indirection_expression] = STATE(2609), - [sym_query_expression] = STATE(3228), - [sym_from_clause] = STATE(6162), - [sym_conditional_expression] = STATE(3228), - [sym_conditional_access_expression] = STATE(3228), - [sym_as_expression] = STATE(3228), - [sym_is_expression] = STATE(3228), - [sym_is_pattern_expression] = STATE(3228), - [sym_cast_expression] = STATE(3228), - [sym_checked_expression] = STATE(3228), - [sym_invocation_expression] = STATE(3289), - [sym_switch_expression] = STATE(3228), - [sym_await_expression] = STATE(3289), - [sym_throw_expression] = STATE(3228), - [sym_element_access_expression] = STATE(2609), - [sym_interpolated_string_expression] = STATE(3228), - [sym_member_access_expression] = STATE(2609), - [sym_object_creation_expression] = STATE(3289), - [sym_parenthesized_expression] = STATE(3289), - [sym__parenthesized_lvalue_expression] = STATE(2609), - [sym_lambda_expression] = STATE(3228), - [sym__lambda_expression_init] = STATE(7695), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3228), - [sym_anonymous_method_expression] = STATE(3228), - [sym_anonymous_object_creation_expression] = STATE(3228), - [sym_implicit_array_creation_expression] = STATE(3228), - [sym_implicit_object_creation_expression] = STATE(3228), - [sym_implicit_stackalloc_expression] = STATE(3228), - [sym_initializer_expression] = STATE(3228), - [sym_default_expression] = STATE(3228), - [sym_with_expression] = STATE(3228), - [sym_sizeof_expression] = STATE(3228), - [sym_typeof_expression] = STATE(3228), - [sym_makeref_expression] = STATE(3228), - [sym_ref_expression] = STATE(3228), - [sym_reftype_expression] = STATE(3228), - [sym_refvalue_expression] = STATE(3228), - [sym_stackalloc_expression] = STATE(3228), - [sym_range_expression] = STATE(3228), - [sym_tuple_expression] = STATE(2609), - [sym_literal] = STATE(3228), - [sym_character_literal] = STATE(3278), - [sym_string_literal] = STATE(3278), - [sym_raw_string_literal] = STATE(3278), - [sym_boolean_literal] = STATE(3278), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3228), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2603), + [sym__name] = STATE(5894), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2193), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(4245), + [sym_non_lvalue_expression] = STATE(3220), + [sym_lvalue_expression] = STATE(3126), + [sym__expression_statement_expression] = STATE(3236), + [sym_assignment_expression] = STATE(3221), + [sym_binary_expression] = STATE(3236), + [sym_postfix_unary_expression] = STATE(3221), + [sym_prefix_unary_expression] = STATE(3221), + [sym__pointer_indirection_expression] = STATE(2602), + [sym_query_expression] = STATE(3236), + [sym_from_clause] = STATE(6165), + [sym_conditional_expression] = STATE(3236), + [sym_conditional_access_expression] = STATE(3236), + [sym_as_expression] = STATE(3236), + [sym_is_expression] = STATE(3236), + [sym_is_pattern_expression] = STATE(3236), + [sym_cast_expression] = STATE(3236), + [sym_checked_expression] = STATE(3236), + [sym_invocation_expression] = STATE(3221), + [sym_switch_expression] = STATE(3236), + [sym_await_expression] = STATE(3221), + [sym_throw_expression] = STATE(3236), + [sym_element_access_expression] = STATE(2602), + [sym_interpolated_string_expression] = STATE(3236), + [sym_member_access_expression] = STATE(2602), + [sym_object_creation_expression] = STATE(3221), + [sym_parenthesized_expression] = STATE(3221), + [sym__parenthesized_lvalue_expression] = STATE(2602), + [sym_lambda_expression] = STATE(3236), + [sym__lambda_expression_init] = STATE(7487), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3236), + [sym_anonymous_method_expression] = STATE(3236), + [sym_anonymous_object_creation_expression] = STATE(3236), + [sym_implicit_array_creation_expression] = STATE(3236), + [sym_implicit_object_creation_expression] = STATE(3236), + [sym_implicit_stackalloc_expression] = STATE(3236), + [sym_initializer_expression] = STATE(3236), + [sym_default_expression] = STATE(3236), + [sym_with_expression] = STATE(3236), + [sym_sizeof_expression] = STATE(3236), + [sym_typeof_expression] = STATE(3236), + [sym_makeref_expression] = STATE(3236), + [sym_ref_expression] = STATE(3236), + [sym_reftype_expression] = STATE(3236), + [sym_refvalue_expression] = STATE(3236), + [sym_stackalloc_expression] = STATE(3236), + [sym_range_expression] = STATE(3236), + [sym_tuple_expression] = STATE(2602), + [sym_literal] = STATE(3236), + [sym_character_literal] = STATE(3272), + [sym_string_literal] = STATE(3272), + [sym_raw_string_literal] = STATE(3272), + [sym_boolean_literal] = STATE(3272), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3236), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(156), [sym_preproc_endregion] = STATE(156), [sym_preproc_line] = STATE(156), @@ -60538,71 +60424,71 @@ 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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3396), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3379), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1153), - [anon_sym_COLON] = ACTIONS(1221), - [anon_sym_COMMA] = ACTIONS(1221), - [anon_sym_LPAREN] = ACTIONS(1371), - [anon_sym_RPAREN] = ACTIONS(1221), - [anon_sym_ref] = ACTIONS(1373), - [anon_sym_LBRACE] = ACTIONS(1159), - [anon_sym_RBRACE] = ACTIONS(1221), - [anon_sym_delegate] = ACTIONS(1161), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1149), + [anon_sym_COLON] = ACTIONS(1147), + [anon_sym_COMMA] = ACTIONS(1147), + [anon_sym_LPAREN] = ACTIONS(1341), + [anon_sym_RPAREN] = ACTIONS(1147), + [anon_sym_ref] = ACTIONS(1343), + [anon_sym_LBRACE] = ACTIONS(1155), + [anon_sym_RBRACE] = ACTIONS(1147), + [anon_sym_delegate] = ACTIONS(1157), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1163), - [anon_sym_LT] = ACTIONS(1223), - [anon_sym_GT] = ACTIONS(1223), + [anon_sym_new] = ACTIONS(1159), + [anon_sym_LT] = ACTIONS(1161), + [anon_sym_GT] = ACTIONS(1161), [anon_sym_where] = ACTIONS(29), - [anon_sym_QMARK] = ACTIONS(1223), + [anon_sym_QMARK] = ACTIONS(1161), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1167), - [anon_sym_BANG] = ACTIONS(1375), - [anon_sym_TILDE] = ACTIONS(1377), - [anon_sym_PLUS_PLUS] = ACTIONS(1377), - [anon_sym_DASH_DASH] = ACTIONS(1377), - [anon_sym_true] = ACTIONS(1173), - [anon_sym_false] = ACTIONS(1173), - [anon_sym_PLUS] = ACTIONS(1375), - [anon_sym_DASH] = ACTIONS(1375), - [anon_sym_STAR] = ACTIONS(1379), - [anon_sym_SLASH] = ACTIONS(1223), - [anon_sym_PERCENT] = ACTIONS(1221), - [anon_sym_CARET] = ACTIONS(1377), - [anon_sym_PIPE] = ACTIONS(1223), - [anon_sym_AMP] = ACTIONS(1375), - [anon_sym_LT_LT] = ACTIONS(1221), - [anon_sym_GT_GT] = ACTIONS(1223), - [anon_sym_GT_GT_GT] = ACTIONS(1221), - [anon_sym_EQ_EQ] = ACTIONS(1221), - [anon_sym_BANG_EQ] = ACTIONS(1221), - [anon_sym_GT_EQ] = ACTIONS(1221), - [anon_sym_LT_EQ] = ACTIONS(1221), - [anon_sym_this] = ACTIONS(1177), - [anon_sym_DOT] = ACTIONS(1223), + [anon_sym_checked] = ACTIONS(1163), + [anon_sym_BANG] = ACTIONS(1345), + [anon_sym_TILDE] = ACTIONS(1347), + [anon_sym_PLUS_PLUS] = ACTIONS(1347), + [anon_sym_DASH_DASH] = ACTIONS(1347), + [anon_sym_true] = ACTIONS(1169), + [anon_sym_false] = ACTIONS(1169), + [anon_sym_PLUS] = ACTIONS(1345), + [anon_sym_DASH] = ACTIONS(1345), + [anon_sym_STAR] = ACTIONS(1349), + [anon_sym_SLASH] = ACTIONS(1161), + [anon_sym_PERCENT] = ACTIONS(1147), + [anon_sym_CARET] = ACTIONS(1347), + [anon_sym_PIPE] = ACTIONS(1161), + [anon_sym_AMP] = ACTIONS(1345), + [anon_sym_LT_LT] = ACTIONS(1147), + [anon_sym_GT_GT] = ACTIONS(1161), + [anon_sym_GT_GT_GT] = ACTIONS(1147), + [anon_sym_EQ_EQ] = ACTIONS(1147), + [anon_sym_BANG_EQ] = ACTIONS(1147), + [anon_sym_GT_EQ] = ACTIONS(1147), + [anon_sym_LT_EQ] = ACTIONS(1147), + [anon_sym_this] = ACTIONS(1173), + [anon_sym_DOT] = ACTIONS(1161), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1179), + [anon_sym_base] = ACTIONS(1175), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1181), - [anon_sym_unchecked] = ACTIONS(1167), + [sym_predefined_type] = ACTIONS(1177), + [anon_sym_unchecked] = ACTIONS(1163), [anon_sym_yield] = ACTIONS(29), - [anon_sym_switch] = ACTIONS(1223), - [anon_sym_default] = ACTIONS(1183), - [anon_sym_throw] = ACTIONS(1381), + [anon_sym_switch] = ACTIONS(1161), + [anon_sym_default] = ACTIONS(1179), + [anon_sym_throw] = ACTIONS(1351), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1383), - [anon_sym_DOT_DOT] = ACTIONS(1385), - [anon_sym_and] = ACTIONS(1223), - [anon_sym_or] = ACTIONS(1223), - [anon_sym_AMP_AMP] = ACTIONS(1221), - [anon_sym_PIPE_PIPE] = ACTIONS(1221), - [anon_sym_QMARK_QMARK] = ACTIONS(1221), + [anon_sym_await] = ACTIONS(1353), + [anon_sym_DOT_DOT] = ACTIONS(1355), + [anon_sym_and] = ACTIONS(1161), + [anon_sym_or] = ACTIONS(1161), + [anon_sym_AMP_AMP] = ACTIONS(1147), + [anon_sym_PIPE_PIPE] = ACTIONS(1147), + [anon_sym_QMARK_QMARK] = ACTIONS(1147), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -60615,23 +60501,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(1223), - [anon_sym_is] = ACTIONS(1223), - [anon_sym_DASH_GT] = ACTIONS(1221), - [anon_sym_stackalloc] = ACTIONS(1191), - [anon_sym_with] = ACTIONS(1223), - [anon_sym_sizeof] = ACTIONS(1193), - [anon_sym_typeof] = ACTIONS(1195), - [anon_sym___makeref] = ACTIONS(1197), - [anon_sym___reftype] = ACTIONS(1199), - [anon_sym___refvalue] = ACTIONS(1201), - [sym_null_literal] = ACTIONS(1203), - [anon_sym_SQUOTE] = ACTIONS(1205), - [sym_integer_literal] = ACTIONS(1203), - [sym_real_literal] = ACTIONS(1207), - [anon_sym_DQUOTE] = ACTIONS(1209), - [sym_verbatim_string_literal] = ACTIONS(1207), - [aux_sym_preproc_if_token1] = ACTIONS(1211), + [anon_sym_as] = ACTIONS(1161), + [anon_sym_is] = ACTIONS(1161), + [anon_sym_DASH_GT] = ACTIONS(1147), + [anon_sym_stackalloc] = ACTIONS(1187), + [anon_sym_with] = ACTIONS(1161), + [anon_sym_sizeof] = ACTIONS(1189), + [anon_sym_typeof] = ACTIONS(1191), + [anon_sym___makeref] = ACTIONS(1193), + [anon_sym___reftype] = ACTIONS(1195), + [anon_sym___refvalue] = ACTIONS(1197), + [sym_null_literal] = ACTIONS(1199), + [anon_sym_SQUOTE] = ACTIONS(1201), + [sym_integer_literal] = ACTIONS(1199), + [sym_real_literal] = ACTIONS(1203), + [anon_sym_DQUOTE] = ACTIONS(1205), + [sym_verbatim_string_literal] = ACTIONS(1203), + [aux_sym_preproc_if_token1] = ACTIONS(1207), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -60642,90 +60528,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1213), - [sym_interpolation_verbatim_start] = ACTIONS(1215), - [sym_interpolation_raw_start] = ACTIONS(1217), - [sym_raw_string_start] = ACTIONS(1219), + [sym_interpolation_regular_start] = ACTIONS(1209), + [sym_interpolation_verbatim_start] = ACTIONS(1211), + [sym_interpolation_raw_start] = ACTIONS(1213), + [sym_raw_string_start] = ACTIONS(1215), }, [157] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(3184), - [sym__name] = STATE(5906), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2312), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2269), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(4295), - [sym_non_lvalue_expression] = STATE(4541), - [sym_lvalue_expression] = STATE(3165), - [sym__expression_statement_expression] = STATE(4529), - [sym_assignment_expression] = STATE(4543), - [sym_binary_expression] = STATE(4529), - [sym_postfix_unary_expression] = STATE(4543), - [sym_prefix_unary_expression] = STATE(4543), - [sym__pointer_indirection_expression] = STATE(3175), - [sym_query_expression] = STATE(4529), - [sym_from_clause] = STATE(6156), - [sym_conditional_expression] = STATE(4529), - [sym_conditional_access_expression] = STATE(4529), - [sym_as_expression] = STATE(4529), - [sym_is_expression] = STATE(4529), - [sym_is_pattern_expression] = STATE(4529), - [sym_cast_expression] = STATE(4529), - [sym_checked_expression] = STATE(4529), - [sym_invocation_expression] = STATE(4543), - [sym_switch_expression] = STATE(4529), - [sym_await_expression] = STATE(4543), - [sym_throw_expression] = STATE(4529), - [sym_element_access_expression] = STATE(3175), - [sym_interpolated_string_expression] = STATE(4529), - [sym_member_access_expression] = STATE(3175), - [sym_object_creation_expression] = STATE(4543), - [sym_parenthesized_expression] = STATE(4543), - [sym__parenthesized_lvalue_expression] = STATE(3175), - [sym_lambda_expression] = STATE(4529), - [sym__lambda_expression_init] = STATE(7341), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(4529), - [sym_anonymous_method_expression] = STATE(4529), - [sym_anonymous_object_creation_expression] = STATE(4529), - [sym_implicit_array_creation_expression] = STATE(4529), - [sym_implicit_object_creation_expression] = STATE(4529), - [sym_implicit_stackalloc_expression] = STATE(4529), - [sym_initializer_expression] = STATE(4529), - [sym_default_expression] = STATE(4529), - [sym_with_expression] = STATE(4529), - [sym_sizeof_expression] = STATE(4529), - [sym_typeof_expression] = STATE(4529), - [sym_makeref_expression] = STATE(4529), - [sym_ref_expression] = STATE(4529), - [sym_reftype_expression] = STATE(4529), - [sym_refvalue_expression] = STATE(4529), - [sym_stackalloc_expression] = STATE(4529), - [sym_range_expression] = STATE(4529), - [sym_tuple_expression] = STATE(3175), - [sym_literal] = STATE(4529), - [sym_character_literal] = STATE(4536), - [sym_string_literal] = STATE(4536), - [sym_raw_string_literal] = STATE(4536), - [sym_boolean_literal] = STATE(4536), - [sym_identifier] = STATE(2246), - [sym__reserved_identifier] = STATE(2240), - [sym_preproc_if_in_expression] = STATE(4529), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(3182), + [sym__name] = STATE(5888), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2286), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2262), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(4323), + [sym_non_lvalue_expression] = STATE(4580), + [sym_lvalue_expression] = STATE(3192), + [sym__expression_statement_expression] = STATE(4573), + [sym_assignment_expression] = STATE(4581), + [sym_binary_expression] = STATE(4573), + [sym_postfix_unary_expression] = STATE(4581), + [sym_prefix_unary_expression] = STATE(4581), + [sym__pointer_indirection_expression] = STATE(3144), + [sym_query_expression] = STATE(4573), + [sym_from_clause] = STATE(6160), + [sym_conditional_expression] = STATE(4573), + [sym_conditional_access_expression] = STATE(4573), + [sym_as_expression] = STATE(4573), + [sym_is_expression] = STATE(4573), + [sym_is_pattern_expression] = STATE(4573), + [sym_cast_expression] = STATE(4573), + [sym_checked_expression] = STATE(4573), + [sym_invocation_expression] = STATE(4581), + [sym_switch_expression] = STATE(4573), + [sym_await_expression] = STATE(4581), + [sym_throw_expression] = STATE(4573), + [sym_element_access_expression] = STATE(3144), + [sym_interpolated_string_expression] = STATE(4573), + [sym_member_access_expression] = STATE(3144), + [sym_object_creation_expression] = STATE(4581), + [sym_parenthesized_expression] = STATE(4581), + [sym__parenthesized_lvalue_expression] = STATE(3144), + [sym_lambda_expression] = STATE(4573), + [sym__lambda_expression_init] = STATE(7491), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(4573), + [sym_anonymous_method_expression] = STATE(4573), + [sym_anonymous_object_creation_expression] = STATE(4573), + [sym_implicit_array_creation_expression] = STATE(4573), + [sym_implicit_object_creation_expression] = STATE(4573), + [sym_implicit_stackalloc_expression] = STATE(4573), + [sym_initializer_expression] = STATE(4573), + [sym_default_expression] = STATE(4573), + [sym_with_expression] = STATE(4573), + [sym_sizeof_expression] = STATE(4573), + [sym_typeof_expression] = STATE(4573), + [sym_makeref_expression] = STATE(4573), + [sym_ref_expression] = STATE(4573), + [sym_reftype_expression] = STATE(4573), + [sym_refvalue_expression] = STATE(4573), + [sym_stackalloc_expression] = STATE(4573), + [sym_range_expression] = STATE(4573), + [sym_tuple_expression] = STATE(3144), + [sym_literal] = STATE(4573), + [sym_character_literal] = STATE(4575), + [sym_string_literal] = STATE(4575), + [sym_raw_string_literal] = STATE(4575), + [sym_boolean_literal] = STATE(4575), + [sym_identifier] = STATE(2237), + [sym__reserved_identifier] = STATE(2229), + [sym_preproc_if_in_expression] = STATE(4573), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(157), [sym_preproc_endregion] = STATE(157), [sym_preproc_line] = STATE(157), @@ -60735,193 +60621,193 @@ 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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3363), - [sym__identifier_token] = ACTIONS(1387), - [anon_sym_alias] = ACTIONS(1389), - [anon_sym_global] = ACTIONS(1389), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1391), - [anon_sym_COLON] = ACTIONS(1221), - [anon_sym_COMMA] = ACTIONS(1221), - [anon_sym_LPAREN] = ACTIONS(1393), - [anon_sym_ref] = ACTIONS(1395), - [anon_sym_LBRACE] = ACTIONS(1397), - [anon_sym_delegate] = ACTIONS(1399), - [anon_sym_async] = ACTIONS(1047), - [anon_sym_file] = ACTIONS(1389), - [anon_sym_new] = ACTIONS(1401), - [anon_sym_LT] = ACTIONS(1223), - [anon_sym_GT] = ACTIONS(1223), - [anon_sym_where] = ACTIONS(1389), - [anon_sym_QMARK] = ACTIONS(1223), - [anon_sym_notnull] = ACTIONS(1389), - [anon_sym_unmanaged] = ACTIONS(1389), - [anon_sym_checked] = ACTIONS(1403), - [anon_sym_BANG] = ACTIONS(1405), - [anon_sym_TILDE] = ACTIONS(1407), - [anon_sym_PLUS_PLUS] = ACTIONS(1407), - [anon_sym_DASH_DASH] = ACTIONS(1407), - [anon_sym_true] = ACTIONS(1409), - [anon_sym_false] = ACTIONS(1409), - [anon_sym_PLUS] = ACTIONS(1405), - [anon_sym_DASH] = ACTIONS(1405), - [anon_sym_STAR] = ACTIONS(1411), - [anon_sym_SLASH] = ACTIONS(1223), - [anon_sym_PERCENT] = ACTIONS(1221), - [anon_sym_CARET] = ACTIONS(1407), - [anon_sym_PIPE] = ACTIONS(1223), - [anon_sym_AMP] = ACTIONS(1405), - [anon_sym_LT_LT] = ACTIONS(1221), - [anon_sym_GT_GT] = ACTIONS(1223), - [anon_sym_GT_GT_GT] = ACTIONS(1221), - [anon_sym_EQ_EQ] = ACTIONS(1221), - [anon_sym_BANG_EQ] = ACTIONS(1221), - [anon_sym_GT_EQ] = ACTIONS(1221), - [anon_sym_LT_EQ] = ACTIONS(1221), - [anon_sym_this] = ACTIONS(1413), - [anon_sym_DOT] = ACTIONS(1223), - [anon_sym_scoped] = ACTIONS(1415), - [anon_sym_base] = ACTIONS(1417), - [anon_sym_var] = ACTIONS(1419), - [sym_predefined_type] = ACTIONS(1421), - [anon_sym_unchecked] = ACTIONS(1403), - [anon_sym_yield] = ACTIONS(1389), - [anon_sym_switch] = ACTIONS(1223), - [anon_sym_default] = ACTIONS(1423), - [anon_sym_throw] = ACTIONS(1425), - [anon_sym_when] = ACTIONS(1389), - [anon_sym_await] = ACTIONS(1427), - [anon_sym_DOT_DOT] = ACTIONS(1429), - [anon_sym_and] = ACTIONS(1223), - [anon_sym_or] = ACTIONS(1223), - [anon_sym_AMP_AMP] = ACTIONS(1221), - [anon_sym_PIPE_PIPE] = ACTIONS(1221), - [anon_sym_QMARK_QMARK] = ACTIONS(1221), - [anon_sym_from] = ACTIONS(1431), - [anon_sym_into] = ACTIONS(1389), - [anon_sym_join] = ACTIONS(1389), - [anon_sym_on] = ACTIONS(1389), - [anon_sym_equals] = ACTIONS(1389), - [anon_sym_let] = ACTIONS(1389), - [anon_sym_orderby] = ACTIONS(1389), - [anon_sym_ascending] = ACTIONS(1389), - [anon_sym_descending] = ACTIONS(1389), - [anon_sym_group] = ACTIONS(1389), - [anon_sym_by] = ACTIONS(1389), - [anon_sym_select] = ACTIONS(1389), - [anon_sym_as] = ACTIONS(1223), - [anon_sym_is] = ACTIONS(1223), - [anon_sym_DASH_GT] = ACTIONS(1221), - [anon_sym_stackalloc] = ACTIONS(1433), - [anon_sym_with] = ACTIONS(1223), - [anon_sym_sizeof] = ACTIONS(1435), - [anon_sym_typeof] = ACTIONS(1437), - [anon_sym___makeref] = ACTIONS(1439), - [anon_sym___reftype] = ACTIONS(1441), - [anon_sym___refvalue] = ACTIONS(1443), - [sym_null_literal] = ACTIONS(1445), - [anon_sym_SQUOTE] = ACTIONS(1447), - [sym_integer_literal] = ACTIONS(1445), - [sym_real_literal] = ACTIONS(1449), - [anon_sym_DQUOTE] = ACTIONS(1451), - [sym_verbatim_string_literal] = ACTIONS(1449), - [aux_sym_preproc_if_token1] = ACTIONS(1453), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1455), - [sym_interpolation_verbatim_start] = ACTIONS(1457), - [sym_interpolation_raw_start] = ACTIONS(1459), - [sym_interpolation_close_brace] = ACTIONS(1221), - [sym_raw_string_start] = ACTIONS(1461), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3501), + [sym__identifier_token] = ACTIONS(1385), + [anon_sym_alias] = ACTIONS(1387), + [anon_sym_global] = ACTIONS(1387), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1389), + [anon_sym_COLON] = ACTIONS(1219), + [anon_sym_COMMA] = ACTIONS(1219), + [anon_sym_LPAREN] = ACTIONS(1391), + [anon_sym_ref] = ACTIONS(1393), + [anon_sym_LBRACE] = ACTIONS(1395), + [anon_sym_delegate] = ACTIONS(1397), + [anon_sym_async] = ACTIONS(1045), + [anon_sym_file] = ACTIONS(1387), + [anon_sym_new] = ACTIONS(1399), + [anon_sym_LT] = ACTIONS(1221), + [anon_sym_GT] = ACTIONS(1221), + [anon_sym_where] = ACTIONS(1387), + [anon_sym_QMARK] = ACTIONS(1221), + [anon_sym_notnull] = ACTIONS(1387), + [anon_sym_unmanaged] = ACTIONS(1387), + [anon_sym_checked] = ACTIONS(1401), + [anon_sym_BANG] = ACTIONS(1403), + [anon_sym_TILDE] = ACTIONS(1405), + [anon_sym_PLUS_PLUS] = ACTIONS(1405), + [anon_sym_DASH_DASH] = ACTIONS(1405), + [anon_sym_true] = ACTIONS(1407), + [anon_sym_false] = ACTIONS(1407), + [anon_sym_PLUS] = ACTIONS(1403), + [anon_sym_DASH] = ACTIONS(1403), + [anon_sym_STAR] = ACTIONS(1409), + [anon_sym_SLASH] = ACTIONS(1221), + [anon_sym_PERCENT] = ACTIONS(1219), + [anon_sym_CARET] = ACTIONS(1405), + [anon_sym_PIPE] = ACTIONS(1221), + [anon_sym_AMP] = ACTIONS(1403), + [anon_sym_LT_LT] = ACTIONS(1219), + [anon_sym_GT_GT] = ACTIONS(1221), + [anon_sym_GT_GT_GT] = ACTIONS(1219), + [anon_sym_EQ_EQ] = ACTIONS(1219), + [anon_sym_BANG_EQ] = ACTIONS(1219), + [anon_sym_GT_EQ] = ACTIONS(1219), + [anon_sym_LT_EQ] = ACTIONS(1219), + [anon_sym_this] = ACTIONS(1411), + [anon_sym_DOT] = ACTIONS(1221), + [anon_sym_scoped] = ACTIONS(1413), + [anon_sym_base] = ACTIONS(1415), + [anon_sym_var] = ACTIONS(1417), + [sym_predefined_type] = ACTIONS(1419), + [anon_sym_unchecked] = ACTIONS(1401), + [anon_sym_yield] = ACTIONS(1387), + [anon_sym_switch] = ACTIONS(1221), + [anon_sym_default] = ACTIONS(1421), + [anon_sym_throw] = ACTIONS(1423), + [anon_sym_when] = ACTIONS(1387), + [anon_sym_await] = ACTIONS(1425), + [anon_sym_DOT_DOT] = ACTIONS(1427), + [anon_sym_and] = ACTIONS(1221), + [anon_sym_or] = ACTIONS(1221), + [anon_sym_AMP_AMP] = ACTIONS(1219), + [anon_sym_PIPE_PIPE] = ACTIONS(1219), + [anon_sym_QMARK_QMARK] = ACTIONS(1219), + [anon_sym_from] = ACTIONS(1429), + [anon_sym_into] = ACTIONS(1387), + [anon_sym_join] = ACTIONS(1387), + [anon_sym_on] = ACTIONS(1387), + [anon_sym_equals] = ACTIONS(1387), + [anon_sym_let] = ACTIONS(1387), + [anon_sym_orderby] = ACTIONS(1387), + [anon_sym_ascending] = ACTIONS(1387), + [anon_sym_descending] = ACTIONS(1387), + [anon_sym_group] = ACTIONS(1387), + [anon_sym_by] = ACTIONS(1387), + [anon_sym_select] = ACTIONS(1387), + [anon_sym_as] = ACTIONS(1221), + [anon_sym_is] = ACTIONS(1221), + [anon_sym_DASH_GT] = ACTIONS(1219), + [anon_sym_stackalloc] = ACTIONS(1431), + [anon_sym_with] = ACTIONS(1221), + [anon_sym_sizeof] = ACTIONS(1433), + [anon_sym_typeof] = ACTIONS(1435), + [anon_sym___makeref] = ACTIONS(1437), + [anon_sym___reftype] = ACTIONS(1439), + [anon_sym___refvalue] = ACTIONS(1441), + [sym_null_literal] = ACTIONS(1443), + [anon_sym_SQUOTE] = ACTIONS(1445), + [sym_integer_literal] = ACTIONS(1443), + [sym_real_literal] = ACTIONS(1447), + [anon_sym_DQUOTE] = ACTIONS(1449), + [sym_verbatim_string_literal] = ACTIONS(1447), + [aux_sym_preproc_if_token1] = ACTIONS(1451), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + [sym_interpolation_regular_start] = ACTIONS(1453), + [sym_interpolation_verbatim_start] = ACTIONS(1455), + [sym_interpolation_raw_start] = ACTIONS(1457), + [sym_interpolation_close_brace] = ACTIONS(1219), + [sym_raw_string_start] = ACTIONS(1459), }, [158] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(3184), - [sym__name] = STATE(5883), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2313), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2269), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(4483), - [sym_non_lvalue_expression] = STATE(4541), - [sym_lvalue_expression] = STATE(3314), - [sym__expression_statement_expression] = STATE(4529), - [sym_assignment_expression] = STATE(4543), - [sym_binary_expression] = STATE(4529), - [sym_postfix_unary_expression] = STATE(4543), - [sym_prefix_unary_expression] = STATE(4543), - [sym__pointer_indirection_expression] = STATE(3175), - [sym_query_expression] = STATE(4529), - [sym_from_clause] = STATE(6156), - [sym_conditional_expression] = STATE(4529), - [sym_conditional_access_expression] = STATE(4529), - [sym_as_expression] = STATE(4529), - [sym_is_expression] = STATE(4529), - [sym_is_pattern_expression] = STATE(4529), - [sym_cast_expression] = STATE(4529), - [sym_checked_expression] = STATE(4529), - [sym_invocation_expression] = STATE(4543), - [sym_switch_expression] = STATE(4529), - [sym_await_expression] = STATE(4543), - [sym_throw_expression] = STATE(4529), - [sym_element_access_expression] = STATE(3175), - [sym_interpolated_string_expression] = STATE(4529), - [sym_member_access_expression] = STATE(3175), - [sym_object_creation_expression] = STATE(4543), - [sym_parenthesized_expression] = STATE(4543), - [sym__parenthesized_lvalue_expression] = STATE(3175), - [sym_lambda_expression] = STATE(4529), - [sym__lambda_expression_init] = STATE(7552), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(4529), - [sym_anonymous_method_expression] = STATE(4529), - [sym_anonymous_object_creation_expression] = STATE(4529), - [sym_implicit_array_creation_expression] = STATE(4529), - [sym_implicit_object_creation_expression] = STATE(4529), - [sym_implicit_stackalloc_expression] = STATE(4529), - [sym_initializer_expression] = STATE(4529), - [sym_default_expression] = STATE(4529), - [sym_with_expression] = STATE(4529), - [sym_sizeof_expression] = STATE(4529), - [sym_typeof_expression] = STATE(4529), - [sym_makeref_expression] = STATE(4529), - [sym_ref_expression] = STATE(4529), - [sym_reftype_expression] = STATE(4529), - [sym_refvalue_expression] = STATE(4529), - [sym_stackalloc_expression] = STATE(4529), - [sym_range_expression] = STATE(4529), - [sym_tuple_expression] = STATE(3175), - [sym_literal] = STATE(4529), - [sym_character_literal] = STATE(4536), - [sym_string_literal] = STATE(4536), - [sym_raw_string_literal] = STATE(4536), - [sym_boolean_literal] = STATE(4536), - [sym_identifier] = STATE(2246), - [sym__reserved_identifier] = STATE(2240), - [sym_preproc_if_in_expression] = STATE(4529), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(3182), + [sym__name] = STATE(5882), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2306), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2262), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(4405), + [sym_non_lvalue_expression] = STATE(4580), + [sym_lvalue_expression] = STATE(3312), + [sym__expression_statement_expression] = STATE(4573), + [sym_assignment_expression] = STATE(4581), + [sym_binary_expression] = STATE(4573), + [sym_postfix_unary_expression] = STATE(4581), + [sym_prefix_unary_expression] = STATE(4581), + [sym__pointer_indirection_expression] = STATE(3144), + [sym_query_expression] = STATE(4573), + [sym_from_clause] = STATE(6160), + [sym_conditional_expression] = STATE(4573), + [sym_conditional_access_expression] = STATE(4573), + [sym_as_expression] = STATE(4573), + [sym_is_expression] = STATE(4573), + [sym_is_pattern_expression] = STATE(4573), + [sym_cast_expression] = STATE(4573), + [sym_checked_expression] = STATE(4573), + [sym_invocation_expression] = STATE(4581), + [sym_switch_expression] = STATE(4573), + [sym_await_expression] = STATE(4581), + [sym_throw_expression] = STATE(4573), + [sym_element_access_expression] = STATE(3144), + [sym_interpolated_string_expression] = STATE(4573), + [sym_member_access_expression] = STATE(3144), + [sym_object_creation_expression] = STATE(4581), + [sym_parenthesized_expression] = STATE(4581), + [sym__parenthesized_lvalue_expression] = STATE(3144), + [sym_lambda_expression] = STATE(4573), + [sym__lambda_expression_init] = STATE(7399), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(4573), + [sym_anonymous_method_expression] = STATE(4573), + [sym_anonymous_object_creation_expression] = STATE(4573), + [sym_implicit_array_creation_expression] = STATE(4573), + [sym_implicit_object_creation_expression] = STATE(4573), + [sym_implicit_stackalloc_expression] = STATE(4573), + [sym_initializer_expression] = STATE(4573), + [sym_default_expression] = STATE(4573), + [sym_with_expression] = STATE(4573), + [sym_sizeof_expression] = STATE(4573), + [sym_typeof_expression] = STATE(4573), + [sym_makeref_expression] = STATE(4573), + [sym_ref_expression] = STATE(4573), + [sym_reftype_expression] = STATE(4573), + [sym_refvalue_expression] = STATE(4573), + [sym_stackalloc_expression] = STATE(4573), + [sym_range_expression] = STATE(4573), + [sym_tuple_expression] = STATE(3144), + [sym_literal] = STATE(4573), + [sym_character_literal] = STATE(4575), + [sym_string_literal] = STATE(4575), + [sym_raw_string_literal] = STATE(4575), + [sym_boolean_literal] = STATE(4575), + [sym_identifier] = STATE(2237), + [sym__reserved_identifier] = STATE(2229), + [sym_preproc_if_in_expression] = STATE(4573), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(158), [sym_preproc_endregion] = STATE(158), [sym_preproc_line] = STATE(158), @@ -60931,193 +60817,193 @@ 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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3363), - [sym__identifier_token] = ACTIONS(1387), - [anon_sym_alias] = ACTIONS(1389), - [anon_sym_global] = ACTIONS(1389), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1391), - [anon_sym_COLON] = ACTIONS(1151), - [anon_sym_COMMA] = ACTIONS(1151), - [anon_sym_LPAREN] = ACTIONS(1463), - [anon_sym_ref] = ACTIONS(1465), - [anon_sym_LBRACE] = ACTIONS(1397), - [anon_sym_delegate] = ACTIONS(1399), - [anon_sym_async] = ACTIONS(1047), - [anon_sym_file] = ACTIONS(1389), - [anon_sym_new] = ACTIONS(1467), - [anon_sym_LT] = ACTIONS(1165), - [anon_sym_GT] = ACTIONS(1165), - [anon_sym_where] = ACTIONS(1389), - [anon_sym_QMARK] = ACTIONS(1165), - [anon_sym_notnull] = ACTIONS(1389), - [anon_sym_unmanaged] = ACTIONS(1389), - [anon_sym_checked] = ACTIONS(1403), - [anon_sym_BANG] = ACTIONS(1469), - [anon_sym_TILDE] = ACTIONS(1471), - [anon_sym_PLUS_PLUS] = ACTIONS(1471), - [anon_sym_DASH_DASH] = ACTIONS(1471), - [anon_sym_true] = ACTIONS(1409), - [anon_sym_false] = ACTIONS(1409), - [anon_sym_PLUS] = ACTIONS(1469), - [anon_sym_DASH] = ACTIONS(1469), - [anon_sym_STAR] = ACTIONS(1473), - [anon_sym_SLASH] = ACTIONS(1165), - [anon_sym_PERCENT] = ACTIONS(1151), - [anon_sym_CARET] = ACTIONS(1471), - [anon_sym_PIPE] = ACTIONS(1165), - [anon_sym_AMP] = ACTIONS(1469), - [anon_sym_LT_LT] = ACTIONS(1151), - [anon_sym_GT_GT] = ACTIONS(1165), - [anon_sym_GT_GT_GT] = ACTIONS(1151), - [anon_sym_EQ_EQ] = ACTIONS(1151), - [anon_sym_BANG_EQ] = ACTIONS(1151), - [anon_sym_GT_EQ] = ACTIONS(1151), - [anon_sym_LT_EQ] = ACTIONS(1151), - [anon_sym_this] = ACTIONS(1413), - [anon_sym_DOT] = ACTIONS(1165), - [anon_sym_scoped] = ACTIONS(1415), - [anon_sym_base] = ACTIONS(1417), - [anon_sym_var] = ACTIONS(1419), - [sym_predefined_type] = ACTIONS(1421), - [anon_sym_unchecked] = ACTIONS(1403), - [anon_sym_yield] = ACTIONS(1389), - [anon_sym_switch] = ACTIONS(1165), - [anon_sym_default] = ACTIONS(1423), - [anon_sym_throw] = ACTIONS(1475), - [anon_sym_when] = ACTIONS(1389), - [anon_sym_await] = ACTIONS(1477), - [anon_sym_DOT_DOT] = ACTIONS(1479), - [anon_sym_and] = ACTIONS(1165), - [anon_sym_or] = ACTIONS(1165), - [anon_sym_AMP_AMP] = ACTIONS(1151), - [anon_sym_PIPE_PIPE] = ACTIONS(1151), - [anon_sym_QMARK_QMARK] = ACTIONS(1151), - [anon_sym_from] = ACTIONS(1431), - [anon_sym_into] = ACTIONS(1389), - [anon_sym_join] = ACTIONS(1389), - [anon_sym_on] = ACTIONS(1389), - [anon_sym_equals] = ACTIONS(1389), - [anon_sym_let] = ACTIONS(1389), - [anon_sym_orderby] = ACTIONS(1389), - [anon_sym_ascending] = ACTIONS(1389), - [anon_sym_descending] = ACTIONS(1389), - [anon_sym_group] = ACTIONS(1389), - [anon_sym_by] = ACTIONS(1389), - [anon_sym_select] = ACTIONS(1389), - [anon_sym_as] = ACTIONS(1165), - [anon_sym_is] = ACTIONS(1165), - [anon_sym_DASH_GT] = ACTIONS(1151), - [anon_sym_stackalloc] = ACTIONS(1433), - [anon_sym_with] = ACTIONS(1165), - [anon_sym_sizeof] = ACTIONS(1435), - [anon_sym_typeof] = ACTIONS(1437), - [anon_sym___makeref] = ACTIONS(1439), - [anon_sym___reftype] = ACTIONS(1441), - [anon_sym___refvalue] = ACTIONS(1443), - [sym_null_literal] = ACTIONS(1445), - [anon_sym_SQUOTE] = ACTIONS(1447), - [sym_integer_literal] = ACTIONS(1445), - [sym_real_literal] = ACTIONS(1449), - [anon_sym_DQUOTE] = ACTIONS(1451), - [sym_verbatim_string_literal] = ACTIONS(1449), - [aux_sym_preproc_if_token1] = ACTIONS(1453), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1455), - [sym_interpolation_verbatim_start] = ACTIONS(1457), - [sym_interpolation_raw_start] = ACTIONS(1459), - [sym_interpolation_close_brace] = ACTIONS(1151), - [sym_raw_string_start] = ACTIONS(1461), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3501), + [sym__identifier_token] = ACTIONS(1385), + [anon_sym_alias] = ACTIONS(1387), + [anon_sym_global] = ACTIONS(1387), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1389), + [anon_sym_COLON] = ACTIONS(1219), + [anon_sym_COMMA] = ACTIONS(1219), + [anon_sym_LPAREN] = ACTIONS(1461), + [anon_sym_ref] = ACTIONS(1463), + [anon_sym_LBRACE] = ACTIONS(1395), + [anon_sym_delegate] = ACTIONS(1397), + [anon_sym_async] = ACTIONS(1045), + [anon_sym_file] = ACTIONS(1387), + [anon_sym_new] = ACTIONS(1465), + [anon_sym_LT] = ACTIONS(1221), + [anon_sym_GT] = ACTIONS(1221), + [anon_sym_where] = ACTIONS(1387), + [anon_sym_QMARK] = ACTIONS(1221), + [anon_sym_notnull] = ACTIONS(1387), + [anon_sym_unmanaged] = ACTIONS(1387), + [anon_sym_checked] = ACTIONS(1401), + [anon_sym_BANG] = ACTIONS(1467), + [anon_sym_TILDE] = ACTIONS(1469), + [anon_sym_PLUS_PLUS] = ACTIONS(1469), + [anon_sym_DASH_DASH] = ACTIONS(1469), + [anon_sym_true] = ACTIONS(1407), + [anon_sym_false] = ACTIONS(1407), + [anon_sym_PLUS] = ACTIONS(1467), + [anon_sym_DASH] = ACTIONS(1467), + [anon_sym_STAR] = ACTIONS(1471), + [anon_sym_SLASH] = ACTIONS(1221), + [anon_sym_PERCENT] = ACTIONS(1219), + [anon_sym_CARET] = ACTIONS(1469), + [anon_sym_PIPE] = ACTIONS(1221), + [anon_sym_AMP] = ACTIONS(1467), + [anon_sym_LT_LT] = ACTIONS(1219), + [anon_sym_GT_GT] = ACTIONS(1221), + [anon_sym_GT_GT_GT] = ACTIONS(1219), + [anon_sym_EQ_EQ] = ACTIONS(1219), + [anon_sym_BANG_EQ] = ACTIONS(1219), + [anon_sym_GT_EQ] = ACTIONS(1219), + [anon_sym_LT_EQ] = ACTIONS(1219), + [anon_sym_this] = ACTIONS(1411), + [anon_sym_DOT] = ACTIONS(1221), + [anon_sym_scoped] = ACTIONS(1413), + [anon_sym_base] = ACTIONS(1415), + [anon_sym_var] = ACTIONS(1417), + [sym_predefined_type] = ACTIONS(1419), + [anon_sym_unchecked] = ACTIONS(1401), + [anon_sym_yield] = ACTIONS(1387), + [anon_sym_switch] = ACTIONS(1221), + [anon_sym_default] = ACTIONS(1421), + [anon_sym_throw] = ACTIONS(1473), + [anon_sym_when] = ACTIONS(1387), + [anon_sym_await] = ACTIONS(1475), + [anon_sym_DOT_DOT] = ACTIONS(1477), + [anon_sym_and] = ACTIONS(1221), + [anon_sym_or] = ACTIONS(1221), + [anon_sym_AMP_AMP] = ACTIONS(1219), + [anon_sym_PIPE_PIPE] = ACTIONS(1219), + [anon_sym_QMARK_QMARK] = ACTIONS(1219), + [anon_sym_from] = ACTIONS(1429), + [anon_sym_into] = ACTIONS(1387), + [anon_sym_join] = ACTIONS(1387), + [anon_sym_on] = ACTIONS(1387), + [anon_sym_equals] = ACTIONS(1387), + [anon_sym_let] = ACTIONS(1387), + [anon_sym_orderby] = ACTIONS(1387), + [anon_sym_ascending] = ACTIONS(1387), + [anon_sym_descending] = ACTIONS(1387), + [anon_sym_group] = ACTIONS(1387), + [anon_sym_by] = ACTIONS(1387), + [anon_sym_select] = ACTIONS(1387), + [anon_sym_as] = ACTIONS(1221), + [anon_sym_is] = ACTIONS(1221), + [anon_sym_DASH_GT] = ACTIONS(1219), + [anon_sym_stackalloc] = ACTIONS(1431), + [anon_sym_with] = ACTIONS(1221), + [anon_sym_sizeof] = ACTIONS(1433), + [anon_sym_typeof] = ACTIONS(1435), + [anon_sym___makeref] = ACTIONS(1437), + [anon_sym___reftype] = ACTIONS(1439), + [anon_sym___refvalue] = ACTIONS(1441), + [sym_null_literal] = ACTIONS(1443), + [anon_sym_SQUOTE] = ACTIONS(1445), + [sym_integer_literal] = ACTIONS(1443), + [sym_real_literal] = ACTIONS(1447), + [anon_sym_DQUOTE] = ACTIONS(1449), + [sym_verbatim_string_literal] = ACTIONS(1447), + [aux_sym_preproc_if_token1] = ACTIONS(1451), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + [sym_interpolation_regular_start] = ACTIONS(1453), + [sym_interpolation_verbatim_start] = ACTIONS(1455), + [sym_interpolation_raw_start] = ACTIONS(1457), + [sym_interpolation_close_brace] = ACTIONS(1219), + [sym_raw_string_start] = ACTIONS(1459), }, [159] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(3184), - [sym__name] = STATE(5883), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2313), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2269), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(4406), - [sym_non_lvalue_expression] = STATE(4541), - [sym_lvalue_expression] = STATE(3314), - [sym__expression_statement_expression] = STATE(4529), - [sym_assignment_expression] = STATE(4543), - [sym_binary_expression] = STATE(4529), - [sym_postfix_unary_expression] = STATE(4543), - [sym_prefix_unary_expression] = STATE(4543), - [sym__pointer_indirection_expression] = STATE(3175), - [sym_query_expression] = STATE(4529), - [sym_from_clause] = STATE(6156), - [sym_conditional_expression] = STATE(4529), - [sym_conditional_access_expression] = STATE(4529), - [sym_as_expression] = STATE(4529), - [sym_is_expression] = STATE(4529), - [sym_is_pattern_expression] = STATE(4529), - [sym_cast_expression] = STATE(4529), - [sym_checked_expression] = STATE(4529), - [sym_invocation_expression] = STATE(4543), - [sym_switch_expression] = STATE(4529), - [sym_await_expression] = STATE(4543), - [sym_throw_expression] = STATE(4529), - [sym_element_access_expression] = STATE(3175), - [sym_interpolated_string_expression] = STATE(4529), - [sym_member_access_expression] = STATE(3175), - [sym_object_creation_expression] = STATE(4543), - [sym_parenthesized_expression] = STATE(4543), - [sym__parenthesized_lvalue_expression] = STATE(3175), - [sym_lambda_expression] = STATE(4529), - [sym__lambda_expression_init] = STATE(7552), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(4529), - [sym_anonymous_method_expression] = STATE(4529), - [sym_anonymous_object_creation_expression] = STATE(4529), - [sym_implicit_array_creation_expression] = STATE(4529), - [sym_implicit_object_creation_expression] = STATE(4529), - [sym_implicit_stackalloc_expression] = STATE(4529), - [sym_initializer_expression] = STATE(4529), - [sym_default_expression] = STATE(4529), - [sym_with_expression] = STATE(4529), - [sym_sizeof_expression] = STATE(4529), - [sym_typeof_expression] = STATE(4529), - [sym_makeref_expression] = STATE(4529), - [sym_ref_expression] = STATE(4529), - [sym_reftype_expression] = STATE(4529), - [sym_refvalue_expression] = STATE(4529), - [sym_stackalloc_expression] = STATE(4529), - [sym_range_expression] = STATE(4529), - [sym_tuple_expression] = STATE(3175), - [sym_literal] = STATE(4529), - [sym_character_literal] = STATE(4536), - [sym_string_literal] = STATE(4536), - [sym_raw_string_literal] = STATE(4536), - [sym_boolean_literal] = STATE(4536), - [sym_identifier] = STATE(2246), - [sym__reserved_identifier] = STATE(2240), - [sym_preproc_if_in_expression] = STATE(4529), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(3182), + [sym__name] = STATE(5882), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2306), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2262), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(4426), + [sym_non_lvalue_expression] = STATE(4580), + [sym_lvalue_expression] = STATE(3312), + [sym__expression_statement_expression] = STATE(4573), + [sym_assignment_expression] = STATE(4581), + [sym_binary_expression] = STATE(4573), + [sym_postfix_unary_expression] = STATE(4581), + [sym_prefix_unary_expression] = STATE(4581), + [sym__pointer_indirection_expression] = STATE(3144), + [sym_query_expression] = STATE(4573), + [sym_from_clause] = STATE(6160), + [sym_conditional_expression] = STATE(4573), + [sym_conditional_access_expression] = STATE(4573), + [sym_as_expression] = STATE(4573), + [sym_is_expression] = STATE(4573), + [sym_is_pattern_expression] = STATE(4573), + [sym_cast_expression] = STATE(4573), + [sym_checked_expression] = STATE(4573), + [sym_invocation_expression] = STATE(4581), + [sym_switch_expression] = STATE(4573), + [sym_await_expression] = STATE(4581), + [sym_throw_expression] = STATE(4573), + [sym_element_access_expression] = STATE(3144), + [sym_interpolated_string_expression] = STATE(4573), + [sym_member_access_expression] = STATE(3144), + [sym_object_creation_expression] = STATE(4581), + [sym_parenthesized_expression] = STATE(4581), + [sym__parenthesized_lvalue_expression] = STATE(3144), + [sym_lambda_expression] = STATE(4573), + [sym__lambda_expression_init] = STATE(7399), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(4573), + [sym_anonymous_method_expression] = STATE(4573), + [sym_anonymous_object_creation_expression] = STATE(4573), + [sym_implicit_array_creation_expression] = STATE(4573), + [sym_implicit_object_creation_expression] = STATE(4573), + [sym_implicit_stackalloc_expression] = STATE(4573), + [sym_initializer_expression] = STATE(4573), + [sym_default_expression] = STATE(4573), + [sym_with_expression] = STATE(4573), + [sym_sizeof_expression] = STATE(4573), + [sym_typeof_expression] = STATE(4573), + [sym_makeref_expression] = STATE(4573), + [sym_ref_expression] = STATE(4573), + [sym_reftype_expression] = STATE(4573), + [sym_refvalue_expression] = STATE(4573), + [sym_stackalloc_expression] = STATE(4573), + [sym_range_expression] = STATE(4573), + [sym_tuple_expression] = STATE(3144), + [sym_literal] = STATE(4573), + [sym_character_literal] = STATE(4575), + [sym_string_literal] = STATE(4575), + [sym_raw_string_literal] = STATE(4575), + [sym_boolean_literal] = STATE(4575), + [sym_identifier] = STATE(2237), + [sym__reserved_identifier] = STATE(2229), + [sym_preproc_if_in_expression] = STATE(4573), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(159), [sym_preproc_endregion] = STATE(159), [sym_preproc_line] = STATE(159), @@ -61127,193 +61013,193 @@ 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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3363), - [sym__identifier_token] = ACTIONS(1387), - [anon_sym_alias] = ACTIONS(1389), - [anon_sym_global] = ACTIONS(1389), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1391), - [anon_sym_COLON] = ACTIONS(1221), - [anon_sym_COMMA] = ACTIONS(1221), - [anon_sym_LPAREN] = ACTIONS(1463), - [anon_sym_ref] = ACTIONS(1465), - [anon_sym_LBRACE] = ACTIONS(1397), - [anon_sym_delegate] = ACTIONS(1399), - [anon_sym_async] = ACTIONS(1047), - [anon_sym_file] = ACTIONS(1389), - [anon_sym_new] = ACTIONS(1467), - [anon_sym_LT] = ACTIONS(1223), - [anon_sym_GT] = ACTIONS(1223), - [anon_sym_where] = ACTIONS(1389), - [anon_sym_QMARK] = ACTIONS(1223), - [anon_sym_notnull] = ACTIONS(1389), - [anon_sym_unmanaged] = ACTIONS(1389), - [anon_sym_checked] = ACTIONS(1403), - [anon_sym_BANG] = ACTIONS(1469), - [anon_sym_TILDE] = ACTIONS(1471), - [anon_sym_PLUS_PLUS] = ACTIONS(1471), - [anon_sym_DASH_DASH] = ACTIONS(1471), - [anon_sym_true] = ACTIONS(1409), - [anon_sym_false] = ACTIONS(1409), - [anon_sym_PLUS] = ACTIONS(1469), - [anon_sym_DASH] = ACTIONS(1469), - [anon_sym_STAR] = ACTIONS(1473), - [anon_sym_SLASH] = ACTIONS(1223), - [anon_sym_PERCENT] = ACTIONS(1221), - [anon_sym_CARET] = ACTIONS(1471), - [anon_sym_PIPE] = ACTIONS(1223), - [anon_sym_AMP] = ACTIONS(1469), - [anon_sym_LT_LT] = ACTIONS(1221), - [anon_sym_GT_GT] = ACTIONS(1223), - [anon_sym_GT_GT_GT] = ACTIONS(1221), - [anon_sym_EQ_EQ] = ACTIONS(1221), - [anon_sym_BANG_EQ] = ACTIONS(1221), - [anon_sym_GT_EQ] = ACTIONS(1221), - [anon_sym_LT_EQ] = ACTIONS(1221), - [anon_sym_this] = ACTIONS(1413), - [anon_sym_DOT] = ACTIONS(1223), - [anon_sym_scoped] = ACTIONS(1415), - [anon_sym_base] = ACTIONS(1417), - [anon_sym_var] = ACTIONS(1419), - [sym_predefined_type] = ACTIONS(1421), - [anon_sym_unchecked] = ACTIONS(1403), - [anon_sym_yield] = ACTIONS(1389), - [anon_sym_switch] = ACTIONS(1223), - [anon_sym_default] = ACTIONS(1423), - [anon_sym_throw] = ACTIONS(1475), - [anon_sym_when] = ACTIONS(1389), - [anon_sym_await] = ACTIONS(1477), - [anon_sym_DOT_DOT] = ACTIONS(1479), - [anon_sym_and] = ACTIONS(1223), - [anon_sym_or] = ACTIONS(1223), - [anon_sym_AMP_AMP] = ACTIONS(1221), - [anon_sym_PIPE_PIPE] = ACTIONS(1221), - [anon_sym_QMARK_QMARK] = ACTIONS(1221), - [anon_sym_from] = ACTIONS(1431), - [anon_sym_into] = ACTIONS(1389), - [anon_sym_join] = ACTIONS(1389), - [anon_sym_on] = ACTIONS(1389), - [anon_sym_equals] = ACTIONS(1389), - [anon_sym_let] = ACTIONS(1389), - [anon_sym_orderby] = ACTIONS(1389), - [anon_sym_ascending] = ACTIONS(1389), - [anon_sym_descending] = ACTIONS(1389), - [anon_sym_group] = ACTIONS(1389), - [anon_sym_by] = ACTIONS(1389), - [anon_sym_select] = ACTIONS(1389), - [anon_sym_as] = ACTIONS(1223), - [anon_sym_is] = ACTIONS(1223), - [anon_sym_DASH_GT] = ACTIONS(1221), - [anon_sym_stackalloc] = ACTIONS(1433), - [anon_sym_with] = ACTIONS(1223), - [anon_sym_sizeof] = ACTIONS(1435), - [anon_sym_typeof] = ACTIONS(1437), - [anon_sym___makeref] = ACTIONS(1439), - [anon_sym___reftype] = ACTIONS(1441), - [anon_sym___refvalue] = ACTIONS(1443), - [sym_null_literal] = ACTIONS(1445), - [anon_sym_SQUOTE] = ACTIONS(1447), - [sym_integer_literal] = ACTIONS(1445), - [sym_real_literal] = ACTIONS(1449), - [anon_sym_DQUOTE] = ACTIONS(1451), - [sym_verbatim_string_literal] = ACTIONS(1449), - [aux_sym_preproc_if_token1] = ACTIONS(1453), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1455), - [sym_interpolation_verbatim_start] = ACTIONS(1457), - [sym_interpolation_raw_start] = ACTIONS(1459), - [sym_interpolation_close_brace] = ACTIONS(1221), - [sym_raw_string_start] = ACTIONS(1461), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3501), + [sym__identifier_token] = ACTIONS(1385), + [anon_sym_alias] = ACTIONS(1387), + [anon_sym_global] = ACTIONS(1387), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1389), + [anon_sym_COLON] = ACTIONS(1147), + [anon_sym_COMMA] = ACTIONS(1147), + [anon_sym_LPAREN] = ACTIONS(1461), + [anon_sym_ref] = ACTIONS(1463), + [anon_sym_LBRACE] = ACTIONS(1395), + [anon_sym_delegate] = ACTIONS(1397), + [anon_sym_async] = ACTIONS(1045), + [anon_sym_file] = ACTIONS(1387), + [anon_sym_new] = ACTIONS(1465), + [anon_sym_LT] = ACTIONS(1161), + [anon_sym_GT] = ACTIONS(1161), + [anon_sym_where] = ACTIONS(1387), + [anon_sym_QMARK] = ACTIONS(1161), + [anon_sym_notnull] = ACTIONS(1387), + [anon_sym_unmanaged] = ACTIONS(1387), + [anon_sym_checked] = ACTIONS(1401), + [anon_sym_BANG] = ACTIONS(1467), + [anon_sym_TILDE] = ACTIONS(1469), + [anon_sym_PLUS_PLUS] = ACTIONS(1469), + [anon_sym_DASH_DASH] = ACTIONS(1469), + [anon_sym_true] = ACTIONS(1407), + [anon_sym_false] = ACTIONS(1407), + [anon_sym_PLUS] = ACTIONS(1467), + [anon_sym_DASH] = ACTIONS(1467), + [anon_sym_STAR] = ACTIONS(1471), + [anon_sym_SLASH] = ACTIONS(1161), + [anon_sym_PERCENT] = ACTIONS(1147), + [anon_sym_CARET] = ACTIONS(1469), + [anon_sym_PIPE] = ACTIONS(1161), + [anon_sym_AMP] = ACTIONS(1467), + [anon_sym_LT_LT] = ACTIONS(1147), + [anon_sym_GT_GT] = ACTIONS(1161), + [anon_sym_GT_GT_GT] = ACTIONS(1147), + [anon_sym_EQ_EQ] = ACTIONS(1147), + [anon_sym_BANG_EQ] = ACTIONS(1147), + [anon_sym_GT_EQ] = ACTIONS(1147), + [anon_sym_LT_EQ] = ACTIONS(1147), + [anon_sym_this] = ACTIONS(1411), + [anon_sym_DOT] = ACTIONS(1161), + [anon_sym_scoped] = ACTIONS(1413), + [anon_sym_base] = ACTIONS(1415), + [anon_sym_var] = ACTIONS(1417), + [sym_predefined_type] = ACTIONS(1419), + [anon_sym_unchecked] = ACTIONS(1401), + [anon_sym_yield] = ACTIONS(1387), + [anon_sym_switch] = ACTIONS(1161), + [anon_sym_default] = ACTIONS(1421), + [anon_sym_throw] = ACTIONS(1473), + [anon_sym_when] = ACTIONS(1387), + [anon_sym_await] = ACTIONS(1475), + [anon_sym_DOT_DOT] = ACTIONS(1477), + [anon_sym_and] = ACTIONS(1161), + [anon_sym_or] = ACTIONS(1161), + [anon_sym_AMP_AMP] = ACTIONS(1147), + [anon_sym_PIPE_PIPE] = ACTIONS(1147), + [anon_sym_QMARK_QMARK] = ACTIONS(1147), + [anon_sym_from] = ACTIONS(1429), + [anon_sym_into] = ACTIONS(1387), + [anon_sym_join] = ACTIONS(1387), + [anon_sym_on] = ACTIONS(1387), + [anon_sym_equals] = ACTIONS(1387), + [anon_sym_let] = ACTIONS(1387), + [anon_sym_orderby] = ACTIONS(1387), + [anon_sym_ascending] = ACTIONS(1387), + [anon_sym_descending] = ACTIONS(1387), + [anon_sym_group] = ACTIONS(1387), + [anon_sym_by] = ACTIONS(1387), + [anon_sym_select] = ACTIONS(1387), + [anon_sym_as] = ACTIONS(1161), + [anon_sym_is] = ACTIONS(1161), + [anon_sym_DASH_GT] = ACTIONS(1147), + [anon_sym_stackalloc] = ACTIONS(1431), + [anon_sym_with] = ACTIONS(1161), + [anon_sym_sizeof] = ACTIONS(1433), + [anon_sym_typeof] = ACTIONS(1435), + [anon_sym___makeref] = ACTIONS(1437), + [anon_sym___reftype] = ACTIONS(1439), + [anon_sym___refvalue] = ACTIONS(1441), + [sym_null_literal] = ACTIONS(1443), + [anon_sym_SQUOTE] = ACTIONS(1445), + [sym_integer_literal] = ACTIONS(1443), + [sym_real_literal] = ACTIONS(1447), + [anon_sym_DQUOTE] = ACTIONS(1449), + [sym_verbatim_string_literal] = ACTIONS(1447), + [aux_sym_preproc_if_token1] = ACTIONS(1451), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + [sym_interpolation_regular_start] = ACTIONS(1453), + [sym_interpolation_verbatim_start] = ACTIONS(1455), + [sym_interpolation_raw_start] = ACTIONS(1457), + [sym_interpolation_close_brace] = ACTIONS(1147), + [sym_raw_string_start] = ACTIONS(1459), }, [160] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(3184), - [sym__name] = STATE(5906), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2312), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2269), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(4311), - [sym_non_lvalue_expression] = STATE(4541), - [sym_lvalue_expression] = STATE(3165), - [sym__expression_statement_expression] = STATE(4529), - [sym_assignment_expression] = STATE(4543), - [sym_binary_expression] = STATE(4529), - [sym_postfix_unary_expression] = STATE(4543), - [sym_prefix_unary_expression] = STATE(4543), - [sym__pointer_indirection_expression] = STATE(3175), - [sym_query_expression] = STATE(4529), - [sym_from_clause] = STATE(6156), - [sym_conditional_expression] = STATE(4529), - [sym_conditional_access_expression] = STATE(4529), - [sym_as_expression] = STATE(4529), - [sym_is_expression] = STATE(4529), - [sym_is_pattern_expression] = STATE(4529), - [sym_cast_expression] = STATE(4529), - [sym_checked_expression] = STATE(4529), - [sym_invocation_expression] = STATE(4543), - [sym_switch_expression] = STATE(4529), - [sym_await_expression] = STATE(4543), - [sym_throw_expression] = STATE(4529), - [sym_element_access_expression] = STATE(3175), - [sym_interpolated_string_expression] = STATE(4529), - [sym_member_access_expression] = STATE(3175), - [sym_object_creation_expression] = STATE(4543), - [sym_parenthesized_expression] = STATE(4543), - [sym__parenthesized_lvalue_expression] = STATE(3175), - [sym_lambda_expression] = STATE(4529), - [sym__lambda_expression_init] = STATE(7341), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(4529), - [sym_anonymous_method_expression] = STATE(4529), - [sym_anonymous_object_creation_expression] = STATE(4529), - [sym_implicit_array_creation_expression] = STATE(4529), - [sym_implicit_object_creation_expression] = STATE(4529), - [sym_implicit_stackalloc_expression] = STATE(4529), - [sym_initializer_expression] = STATE(4529), - [sym_default_expression] = STATE(4529), - [sym_with_expression] = STATE(4529), - [sym_sizeof_expression] = STATE(4529), - [sym_typeof_expression] = STATE(4529), - [sym_makeref_expression] = STATE(4529), - [sym_ref_expression] = STATE(4529), - [sym_reftype_expression] = STATE(4529), - [sym_refvalue_expression] = STATE(4529), - [sym_stackalloc_expression] = STATE(4529), - [sym_range_expression] = STATE(4529), - [sym_tuple_expression] = STATE(3175), - [sym_literal] = STATE(4529), - [sym_character_literal] = STATE(4536), - [sym_string_literal] = STATE(4536), - [sym_raw_string_literal] = STATE(4536), - [sym_boolean_literal] = STATE(4536), - [sym_identifier] = STATE(2246), - [sym__reserved_identifier] = STATE(2240), - [sym_preproc_if_in_expression] = STATE(4529), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(3182), + [sym__name] = STATE(5888), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2286), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2262), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(4257), + [sym_non_lvalue_expression] = STATE(4580), + [sym_lvalue_expression] = STATE(3192), + [sym__expression_statement_expression] = STATE(4573), + [sym_assignment_expression] = STATE(4581), + [sym_binary_expression] = STATE(4573), + [sym_postfix_unary_expression] = STATE(4581), + [sym_prefix_unary_expression] = STATE(4581), + [sym__pointer_indirection_expression] = STATE(3144), + [sym_query_expression] = STATE(4573), + [sym_from_clause] = STATE(6160), + [sym_conditional_expression] = STATE(4573), + [sym_conditional_access_expression] = STATE(4573), + [sym_as_expression] = STATE(4573), + [sym_is_expression] = STATE(4573), + [sym_is_pattern_expression] = STATE(4573), + [sym_cast_expression] = STATE(4573), + [sym_checked_expression] = STATE(4573), + [sym_invocation_expression] = STATE(4581), + [sym_switch_expression] = STATE(4573), + [sym_await_expression] = STATE(4581), + [sym_throw_expression] = STATE(4573), + [sym_element_access_expression] = STATE(3144), + [sym_interpolated_string_expression] = STATE(4573), + [sym_member_access_expression] = STATE(3144), + [sym_object_creation_expression] = STATE(4581), + [sym_parenthesized_expression] = STATE(4581), + [sym__parenthesized_lvalue_expression] = STATE(3144), + [sym_lambda_expression] = STATE(4573), + [sym__lambda_expression_init] = STATE(7491), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(4573), + [sym_anonymous_method_expression] = STATE(4573), + [sym_anonymous_object_creation_expression] = STATE(4573), + [sym_implicit_array_creation_expression] = STATE(4573), + [sym_implicit_object_creation_expression] = STATE(4573), + [sym_implicit_stackalloc_expression] = STATE(4573), + [sym_initializer_expression] = STATE(4573), + [sym_default_expression] = STATE(4573), + [sym_with_expression] = STATE(4573), + [sym_sizeof_expression] = STATE(4573), + [sym_typeof_expression] = STATE(4573), + [sym_makeref_expression] = STATE(4573), + [sym_ref_expression] = STATE(4573), + [sym_reftype_expression] = STATE(4573), + [sym_refvalue_expression] = STATE(4573), + [sym_stackalloc_expression] = STATE(4573), + [sym_range_expression] = STATE(4573), + [sym_tuple_expression] = STATE(3144), + [sym_literal] = STATE(4573), + [sym_character_literal] = STATE(4575), + [sym_string_literal] = STATE(4575), + [sym_raw_string_literal] = STATE(4575), + [sym_boolean_literal] = STATE(4575), + [sym_identifier] = STATE(2237), + [sym__reserved_identifier] = STATE(2229), + [sym_preproc_if_in_expression] = STATE(4573), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(160), [sym_preproc_endregion] = STATE(160), [sym_preproc_line] = STATE(160), @@ -61323,193 +61209,193 @@ 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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3363), - [sym__identifier_token] = ACTIONS(1387), - [anon_sym_alias] = ACTIONS(1389), - [anon_sym_global] = ACTIONS(1389), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1391), - [anon_sym_COLON] = ACTIONS(1151), - [anon_sym_COMMA] = ACTIONS(1151), - [anon_sym_LPAREN] = ACTIONS(1393), - [anon_sym_ref] = ACTIONS(1395), - [anon_sym_LBRACE] = ACTIONS(1397), - [anon_sym_delegate] = ACTIONS(1399), - [anon_sym_async] = ACTIONS(1047), - [anon_sym_file] = ACTIONS(1389), - [anon_sym_new] = ACTIONS(1401), - [anon_sym_LT] = ACTIONS(1165), - [anon_sym_GT] = ACTIONS(1165), - [anon_sym_where] = ACTIONS(1389), - [anon_sym_QMARK] = ACTIONS(1165), - [anon_sym_notnull] = ACTIONS(1389), - [anon_sym_unmanaged] = ACTIONS(1389), - [anon_sym_checked] = ACTIONS(1403), - [anon_sym_BANG] = ACTIONS(1405), - [anon_sym_TILDE] = ACTIONS(1407), - [anon_sym_PLUS_PLUS] = ACTIONS(1407), - [anon_sym_DASH_DASH] = ACTIONS(1407), - [anon_sym_true] = ACTIONS(1409), - [anon_sym_false] = ACTIONS(1409), - [anon_sym_PLUS] = ACTIONS(1405), - [anon_sym_DASH] = ACTIONS(1405), - [anon_sym_STAR] = ACTIONS(1411), - [anon_sym_SLASH] = ACTIONS(1165), - [anon_sym_PERCENT] = ACTIONS(1151), - [anon_sym_CARET] = ACTIONS(1407), - [anon_sym_PIPE] = ACTIONS(1165), - [anon_sym_AMP] = ACTIONS(1405), - [anon_sym_LT_LT] = ACTIONS(1151), - [anon_sym_GT_GT] = ACTIONS(1165), - [anon_sym_GT_GT_GT] = ACTIONS(1151), - [anon_sym_EQ_EQ] = ACTIONS(1151), - [anon_sym_BANG_EQ] = ACTIONS(1151), - [anon_sym_GT_EQ] = ACTIONS(1151), - [anon_sym_LT_EQ] = ACTIONS(1151), - [anon_sym_this] = ACTIONS(1413), - [anon_sym_DOT] = ACTIONS(1165), - [anon_sym_scoped] = ACTIONS(1415), - [anon_sym_base] = ACTIONS(1417), - [anon_sym_var] = ACTIONS(1419), - [sym_predefined_type] = ACTIONS(1421), - [anon_sym_unchecked] = ACTIONS(1403), - [anon_sym_yield] = ACTIONS(1389), - [anon_sym_switch] = ACTIONS(1165), - [anon_sym_default] = ACTIONS(1423), - [anon_sym_throw] = ACTIONS(1425), - [anon_sym_when] = ACTIONS(1389), - [anon_sym_await] = ACTIONS(1427), - [anon_sym_DOT_DOT] = ACTIONS(1429), - [anon_sym_and] = ACTIONS(1165), - [anon_sym_or] = ACTIONS(1165), - [anon_sym_AMP_AMP] = ACTIONS(1151), - [anon_sym_PIPE_PIPE] = ACTIONS(1151), - [anon_sym_QMARK_QMARK] = ACTIONS(1151), - [anon_sym_from] = ACTIONS(1431), - [anon_sym_into] = ACTIONS(1389), - [anon_sym_join] = ACTIONS(1389), - [anon_sym_on] = ACTIONS(1389), - [anon_sym_equals] = ACTIONS(1389), - [anon_sym_let] = ACTIONS(1389), - [anon_sym_orderby] = ACTIONS(1389), - [anon_sym_ascending] = ACTIONS(1389), - [anon_sym_descending] = ACTIONS(1389), - [anon_sym_group] = ACTIONS(1389), - [anon_sym_by] = ACTIONS(1389), - [anon_sym_select] = ACTIONS(1389), - [anon_sym_as] = ACTIONS(1165), - [anon_sym_is] = ACTIONS(1165), - [anon_sym_DASH_GT] = ACTIONS(1151), - [anon_sym_stackalloc] = ACTIONS(1433), - [anon_sym_with] = ACTIONS(1165), - [anon_sym_sizeof] = ACTIONS(1435), - [anon_sym_typeof] = ACTIONS(1437), - [anon_sym___makeref] = ACTIONS(1439), - [anon_sym___reftype] = ACTIONS(1441), - [anon_sym___refvalue] = ACTIONS(1443), - [sym_null_literal] = ACTIONS(1445), - [anon_sym_SQUOTE] = ACTIONS(1447), - [sym_integer_literal] = ACTIONS(1445), - [sym_real_literal] = ACTIONS(1449), - [anon_sym_DQUOTE] = ACTIONS(1451), - [sym_verbatim_string_literal] = ACTIONS(1449), - [aux_sym_preproc_if_token1] = ACTIONS(1453), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1455), - [sym_interpolation_verbatim_start] = ACTIONS(1457), - [sym_interpolation_raw_start] = ACTIONS(1459), - [sym_interpolation_close_brace] = ACTIONS(1151), - [sym_raw_string_start] = ACTIONS(1461), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3501), + [sym__identifier_token] = ACTIONS(1385), + [anon_sym_alias] = ACTIONS(1387), + [anon_sym_global] = ACTIONS(1387), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1389), + [anon_sym_COLON] = ACTIONS(1147), + [anon_sym_COMMA] = ACTIONS(1147), + [anon_sym_LPAREN] = ACTIONS(1391), + [anon_sym_ref] = ACTIONS(1393), + [anon_sym_LBRACE] = ACTIONS(1395), + [anon_sym_delegate] = ACTIONS(1397), + [anon_sym_async] = ACTIONS(1045), + [anon_sym_file] = ACTIONS(1387), + [anon_sym_new] = ACTIONS(1399), + [anon_sym_LT] = ACTIONS(1161), + [anon_sym_GT] = ACTIONS(1161), + [anon_sym_where] = ACTIONS(1387), + [anon_sym_QMARK] = ACTIONS(1161), + [anon_sym_notnull] = ACTIONS(1387), + [anon_sym_unmanaged] = ACTIONS(1387), + [anon_sym_checked] = ACTIONS(1401), + [anon_sym_BANG] = ACTIONS(1403), + [anon_sym_TILDE] = ACTIONS(1405), + [anon_sym_PLUS_PLUS] = ACTIONS(1405), + [anon_sym_DASH_DASH] = ACTIONS(1405), + [anon_sym_true] = ACTIONS(1407), + [anon_sym_false] = ACTIONS(1407), + [anon_sym_PLUS] = ACTIONS(1403), + [anon_sym_DASH] = ACTIONS(1403), + [anon_sym_STAR] = ACTIONS(1409), + [anon_sym_SLASH] = ACTIONS(1161), + [anon_sym_PERCENT] = ACTIONS(1147), + [anon_sym_CARET] = ACTIONS(1405), + [anon_sym_PIPE] = ACTIONS(1161), + [anon_sym_AMP] = ACTIONS(1403), + [anon_sym_LT_LT] = ACTIONS(1147), + [anon_sym_GT_GT] = ACTIONS(1161), + [anon_sym_GT_GT_GT] = ACTIONS(1147), + [anon_sym_EQ_EQ] = ACTIONS(1147), + [anon_sym_BANG_EQ] = ACTIONS(1147), + [anon_sym_GT_EQ] = ACTIONS(1147), + [anon_sym_LT_EQ] = ACTIONS(1147), + [anon_sym_this] = ACTIONS(1411), + [anon_sym_DOT] = ACTIONS(1161), + [anon_sym_scoped] = ACTIONS(1413), + [anon_sym_base] = ACTIONS(1415), + [anon_sym_var] = ACTIONS(1417), + [sym_predefined_type] = ACTIONS(1419), + [anon_sym_unchecked] = ACTIONS(1401), + [anon_sym_yield] = ACTIONS(1387), + [anon_sym_switch] = ACTIONS(1161), + [anon_sym_default] = ACTIONS(1421), + [anon_sym_throw] = ACTIONS(1423), + [anon_sym_when] = ACTIONS(1387), + [anon_sym_await] = ACTIONS(1425), + [anon_sym_DOT_DOT] = ACTIONS(1427), + [anon_sym_and] = ACTIONS(1161), + [anon_sym_or] = ACTIONS(1161), + [anon_sym_AMP_AMP] = ACTIONS(1147), + [anon_sym_PIPE_PIPE] = ACTIONS(1147), + [anon_sym_QMARK_QMARK] = ACTIONS(1147), + [anon_sym_from] = ACTIONS(1429), + [anon_sym_into] = ACTIONS(1387), + [anon_sym_join] = ACTIONS(1387), + [anon_sym_on] = ACTIONS(1387), + [anon_sym_equals] = ACTIONS(1387), + [anon_sym_let] = ACTIONS(1387), + [anon_sym_orderby] = ACTIONS(1387), + [anon_sym_ascending] = ACTIONS(1387), + [anon_sym_descending] = ACTIONS(1387), + [anon_sym_group] = ACTIONS(1387), + [anon_sym_by] = ACTIONS(1387), + [anon_sym_select] = ACTIONS(1387), + [anon_sym_as] = ACTIONS(1161), + [anon_sym_is] = ACTIONS(1161), + [anon_sym_DASH_GT] = ACTIONS(1147), + [anon_sym_stackalloc] = ACTIONS(1431), + [anon_sym_with] = ACTIONS(1161), + [anon_sym_sizeof] = ACTIONS(1433), + [anon_sym_typeof] = ACTIONS(1435), + [anon_sym___makeref] = ACTIONS(1437), + [anon_sym___reftype] = ACTIONS(1439), + [anon_sym___refvalue] = ACTIONS(1441), + [sym_null_literal] = ACTIONS(1443), + [anon_sym_SQUOTE] = ACTIONS(1445), + [sym_integer_literal] = ACTIONS(1443), + [sym_real_literal] = ACTIONS(1447), + [anon_sym_DQUOTE] = ACTIONS(1449), + [sym_verbatim_string_literal] = ACTIONS(1447), + [aux_sym_preproc_if_token1] = ACTIONS(1451), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + [sym_interpolation_regular_start] = ACTIONS(1453), + [sym_interpolation_verbatim_start] = ACTIONS(1455), + [sym_interpolation_raw_start] = ACTIONS(1457), + [sym_interpolation_close_brace] = ACTIONS(1147), + [sym_raw_string_start] = ACTIONS(1459), }, [161] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(5889), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2247), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(4689), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3408), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3080), - [sym_postfix_unary_expression] = STATE(3111), - [sym_prefix_unary_expression] = STATE(3111), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6161), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3080), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3111), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3080), - [sym_member_access_expression] = STATE(2484), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3111), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7323), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(3080), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3080), - [sym_typeof_expression] = STATE(3080), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2484), - [sym_literal] = STATE(3080), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(5873), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2238), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(4616), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3468), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3102), + [sym_postfix_unary_expression] = STATE(3079), + [sym_prefix_unary_expression] = STATE(3079), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6134), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3102), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3079), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3102), + [sym_member_access_expression] = STATE(2472), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3079), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7309), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(3102), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3102), + [sym_typeof_expression] = STATE(3102), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2472), + [sym_literal] = STATE(3102), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(161), [sym_preproc_endregion] = STATE(161), [sym_preproc_line] = STATE(161), @@ -61519,69 +61405,69 @@ 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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), - [sym__identifier_token] = ACTIONS(25), - [anon_sym_alias] = ACTIONS(29), - [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1481), - [anon_sym_COLON] = ACTIONS(1221), - [anon_sym_COMMA] = ACTIONS(1221), - [anon_sym_LPAREN] = ACTIONS(1483), - [anon_sym_RPAREN] = ACTIONS(1221), - [anon_sym_ref] = ACTIONS(1485), - [anon_sym_LBRACE] = ACTIONS(1487), - [anon_sym_RBRACE] = ACTIONS(1221), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), - [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1101), - [anon_sym_LT] = ACTIONS(1223), - [anon_sym_GT] = ACTIONS(1223), - [anon_sym_where] = ACTIONS(29), - [anon_sym_QMARK] = ACTIONS(1223), - [anon_sym_notnull] = ACTIONS(29), - [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1067), - [anon_sym_BANG] = ACTIONS(1489), - [anon_sym_TILDE] = ACTIONS(1491), - [anon_sym_PLUS_PLUS] = ACTIONS(1491), - [anon_sym_DASH_DASH] = ACTIONS(1491), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1489), - [anon_sym_DASH] = ACTIONS(1489), - [anon_sym_STAR] = ACTIONS(1111), - [anon_sym_SLASH] = ACTIONS(1223), - [anon_sym_PERCENT] = ACTIONS(1221), - [anon_sym_CARET] = ACTIONS(1491), - [anon_sym_PIPE] = ACTIONS(1223), - [anon_sym_AMP] = ACTIONS(1489), - [anon_sym_LT_LT] = ACTIONS(1221), - [anon_sym_GT_GT] = ACTIONS(1223), - [anon_sym_GT_GT_GT] = ACTIONS(1221), - [anon_sym_EQ_EQ] = ACTIONS(1221), - [anon_sym_BANG_EQ] = ACTIONS(1221), - [anon_sym_GT_EQ] = ACTIONS(1221), - [anon_sym_LT_EQ] = ACTIONS(1221), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), + [sym__identifier_token] = ACTIONS(25), + [anon_sym_alias] = ACTIONS(29), + [anon_sym_global] = ACTIONS(29), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1479), + [anon_sym_COMMA] = ACTIONS(1219), + [anon_sym_RBRACK] = ACTIONS(1219), + [anon_sym_LPAREN] = ACTIONS(659), + [anon_sym_RPAREN] = ACTIONS(1219), + [anon_sym_ref] = ACTIONS(663), + [anon_sym_LBRACE] = ACTIONS(1481), + [anon_sym_RBRACE] = ACTIONS(1219), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), + [anon_sym_file] = ACTIONS(29), + [anon_sym_new] = ACTIONS(1059), + [anon_sym_LT] = ACTIONS(1221), + [anon_sym_GT] = ACTIONS(1221), + [anon_sym_where] = ACTIONS(29), + [anon_sym_QMARK] = ACTIONS(1221), + [anon_sym_notnull] = ACTIONS(29), + [anon_sym_unmanaged] = ACTIONS(29), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(1483), + [anon_sym_TILDE] = ACTIONS(1485), + [anon_sym_PLUS_PLUS] = ACTIONS(1485), + [anon_sym_DASH_DASH] = ACTIONS(1485), + [anon_sym_true] = ACTIONS(77), + [anon_sym_false] = ACTIONS(77), + [anon_sym_PLUS] = ACTIONS(1483), + [anon_sym_DASH] = ACTIONS(1483), + [anon_sym_STAR] = ACTIONS(683), + [anon_sym_SLASH] = ACTIONS(1221), + [anon_sym_PERCENT] = ACTIONS(1219), + [anon_sym_CARET] = ACTIONS(1485), + [anon_sym_PIPE] = ACTIONS(1221), + [anon_sym_AMP] = ACTIONS(1483), + [anon_sym_LT_LT] = ACTIONS(1219), + [anon_sym_GT_GT] = ACTIONS(1221), + [anon_sym_GT_GT_GT] = ACTIONS(1219), + [anon_sym_EQ_EQ] = ACTIONS(1219), + [anon_sym_BANG_EQ] = ACTIONS(1219), + [anon_sym_GT_EQ] = ACTIONS(1219), + [anon_sym_LT_EQ] = ACTIONS(1219), [anon_sym_this] = ACTIONS(83), - [anon_sym_DOT] = ACTIONS(1223), + [anon_sym_DOT] = ACTIONS(1221), [anon_sym_scoped] = ACTIONS(85), [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1067), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), - [anon_sym_switch] = ACTIONS(1223), + [anon_sym_switch] = ACTIONS(1221), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1119), + [anon_sym_throw] = ACTIONS(1077), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1121), - [anon_sym_DOT_DOT] = ACTIONS(1125), - [anon_sym_AMP_AMP] = ACTIONS(1221), - [anon_sym_PIPE_PIPE] = ACTIONS(1221), - [anon_sym_QMARK_QMARK] = ACTIONS(1221), + [anon_sym_await] = ACTIONS(1079), + [anon_sym_DOT_DOT] = ACTIONS(711), + [anon_sym_AMP_AMP] = ACTIONS(1219), + [anon_sym_PIPE_PIPE] = ACTIONS(1219), + [anon_sym_QMARK_QMARK] = ACTIONS(1219), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -61594,11 +61480,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(1223), - [anon_sym_is] = ACTIONS(1223), - [anon_sym_DASH_GT] = ACTIONS(1221), + [anon_sym_as] = ACTIONS(1221), + [anon_sym_is] = ACTIONS(1221), + [anon_sym_DASH_GT] = ACTIONS(1219), [anon_sym_stackalloc] = ACTIONS(127), - [anon_sym_with] = ACTIONS(1223), + [anon_sym_with] = ACTIONS(1221), [anon_sym_sizeof] = ACTIONS(129), [anon_sym_typeof] = ACTIONS(131), [anon_sym___makeref] = ACTIONS(133), @@ -61610,7 +61496,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(1089), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -61627,84 +61513,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [162] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(5910), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2247), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(4585), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3379), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3080), - [sym_postfix_unary_expression] = STATE(3111), - [sym_prefix_unary_expression] = STATE(3111), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6154), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3080), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3111), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3080), - [sym_member_access_expression] = STATE(2484), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3111), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7575), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(3080), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3080), - [sym_typeof_expression] = STATE(3080), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2484), - [sym_literal] = STATE(3080), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(5873), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2238), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(4634), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3468), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3102), + [sym_postfix_unary_expression] = STATE(3079), + [sym_prefix_unary_expression] = STATE(3079), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6134), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3102), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3079), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3102), + [sym_member_access_expression] = STATE(2472), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3079), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7309), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(3102), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3102), + [sym_typeof_expression] = STATE(3102), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2472), + [sym_literal] = STATE(3102), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(162), [sym_preproc_endregion] = STATE(162), [sym_preproc_line] = STATE(162), @@ -61714,69 +61600,69 @@ 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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1481), - [anon_sym_COMMA] = ACTIONS(1151), - [anon_sym_RBRACK] = ACTIONS(1151), - [anon_sym_LPAREN] = ACTIONS(895), - [anon_sym_RPAREN] = ACTIONS(1151), - [anon_sym_ref] = ACTIONS(897), - [anon_sym_LBRACE] = ACTIONS(1487), - [anon_sym_RBRACE] = ACTIONS(1151), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), - [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1061), - [anon_sym_LT] = ACTIONS(1165), - [anon_sym_GT] = ACTIONS(1165), - [anon_sym_where] = ACTIONS(29), - [anon_sym_QMARK] = ACTIONS(1165), - [anon_sym_notnull] = ACTIONS(29), - [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1067), - [anon_sym_BANG] = ACTIONS(1493), - [anon_sym_TILDE] = ACTIONS(1495), - [anon_sym_PLUS_PLUS] = ACTIONS(1495), - [anon_sym_DASH_DASH] = ACTIONS(1495), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1493), - [anon_sym_DASH] = ACTIONS(1493), - [anon_sym_STAR] = ACTIONS(905), - [anon_sym_SLASH] = ACTIONS(1165), - [anon_sym_PERCENT] = ACTIONS(1151), - [anon_sym_CARET] = ACTIONS(1495), - [anon_sym_PIPE] = ACTIONS(1165), - [anon_sym_AMP] = ACTIONS(1493), - [anon_sym_LT_LT] = ACTIONS(1151), - [anon_sym_GT_GT] = ACTIONS(1165), - [anon_sym_GT_GT_GT] = ACTIONS(1151), - [anon_sym_EQ_EQ] = ACTIONS(1151), - [anon_sym_BANG_EQ] = ACTIONS(1151), - [anon_sym_GT_EQ] = ACTIONS(1151), - [anon_sym_LT_EQ] = ACTIONS(1151), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1479), + [anon_sym_COMMA] = ACTIONS(1147), + [anon_sym_RBRACK] = ACTIONS(1147), + [anon_sym_LPAREN] = ACTIONS(659), + [anon_sym_RPAREN] = ACTIONS(1147), + [anon_sym_ref] = ACTIONS(663), + [anon_sym_LBRACE] = ACTIONS(1481), + [anon_sym_RBRACE] = ACTIONS(1147), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), + [anon_sym_file] = ACTIONS(29), + [anon_sym_new] = ACTIONS(1059), + [anon_sym_LT] = ACTIONS(1161), + [anon_sym_GT] = ACTIONS(1161), + [anon_sym_where] = ACTIONS(29), + [anon_sym_QMARK] = ACTIONS(1161), + [anon_sym_notnull] = ACTIONS(29), + [anon_sym_unmanaged] = ACTIONS(29), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(1483), + [anon_sym_TILDE] = ACTIONS(1485), + [anon_sym_PLUS_PLUS] = ACTIONS(1485), + [anon_sym_DASH_DASH] = ACTIONS(1485), + [anon_sym_true] = ACTIONS(77), + [anon_sym_false] = ACTIONS(77), + [anon_sym_PLUS] = ACTIONS(1483), + [anon_sym_DASH] = ACTIONS(1483), + [anon_sym_STAR] = ACTIONS(683), + [anon_sym_SLASH] = ACTIONS(1161), + [anon_sym_PERCENT] = ACTIONS(1147), + [anon_sym_CARET] = ACTIONS(1485), + [anon_sym_PIPE] = ACTIONS(1161), + [anon_sym_AMP] = ACTIONS(1483), + [anon_sym_LT_LT] = ACTIONS(1147), + [anon_sym_GT_GT] = ACTIONS(1161), + [anon_sym_GT_GT_GT] = ACTIONS(1147), + [anon_sym_EQ_EQ] = ACTIONS(1147), + [anon_sym_BANG_EQ] = ACTIONS(1147), + [anon_sym_GT_EQ] = ACTIONS(1147), + [anon_sym_LT_EQ] = ACTIONS(1147), [anon_sym_this] = ACTIONS(83), - [anon_sym_DOT] = ACTIONS(1165), + [anon_sym_DOT] = ACTIONS(1161), [anon_sym_scoped] = ACTIONS(85), [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1067), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), - [anon_sym_switch] = ACTIONS(1165), + [anon_sym_switch] = ACTIONS(1161), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1079), + [anon_sym_throw] = ACTIONS(1077), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1081), - [anon_sym_DOT_DOT] = ACTIONS(911), - [anon_sym_AMP_AMP] = ACTIONS(1151), - [anon_sym_PIPE_PIPE] = ACTIONS(1151), - [anon_sym_QMARK_QMARK] = ACTIONS(1151), + [anon_sym_await] = ACTIONS(1079), + [anon_sym_DOT_DOT] = ACTIONS(711), + [anon_sym_AMP_AMP] = ACTIONS(1147), + [anon_sym_PIPE_PIPE] = ACTIONS(1147), + [anon_sym_QMARK_QMARK] = ACTIONS(1147), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -61789,11 +61675,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(1165), - [anon_sym_is] = ACTIONS(1165), - [anon_sym_DASH_GT] = ACTIONS(1151), + [anon_sym_as] = ACTIONS(1161), + [anon_sym_is] = ACTIONS(1161), + [anon_sym_DASH_GT] = ACTIONS(1147), [anon_sym_stackalloc] = ACTIONS(127), - [anon_sym_with] = ACTIONS(1165), + [anon_sym_with] = ACTIONS(1161), [anon_sym_sizeof] = ACTIONS(129), [anon_sym_typeof] = ACTIONS(131), [anon_sym___makeref] = ACTIONS(133), @@ -61805,7 +61691,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(1089), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -61822,84 +61708,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [163] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(5160), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2204), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(4567), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3461), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3080), - [sym_postfix_unary_expression] = STATE(3111), - [sym_prefix_unary_expression] = STATE(3111), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6154), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3080), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3111), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3080), - [sym_member_access_expression] = STATE(2484), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3111), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7547), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(3080), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3080), - [sym_typeof_expression] = STATE(3080), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2484), - [sym_literal] = STATE(3080), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(5879), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2238), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(4755), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3398), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3102), + [sym_postfix_unary_expression] = STATE(3079), + [sym_prefix_unary_expression] = STATE(3079), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6163), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3102), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3079), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3102), + [sym_member_access_expression] = STATE(2472), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3079), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7496), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(3102), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3102), + [sym_typeof_expression] = STATE(3102), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2472), + [sym_literal] = STATE(3102), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(163), [sym_preproc_endregion] = STATE(163), [sym_preproc_line] = STATE(163), @@ -61909,66 +61795,69 @@ 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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), - [anon_sym_SEMI] = ACTIONS(1221), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1481), - [anon_sym_LPAREN] = ACTIONS(1497), - [anon_sym_ref] = ACTIONS(1499), - [anon_sym_LBRACE] = ACTIONS(1487), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1479), + [anon_sym_COLON] = ACTIONS(1219), + [anon_sym_COMMA] = ACTIONS(1219), + [anon_sym_LPAREN] = ACTIONS(1487), + [anon_sym_RPAREN] = ACTIONS(1219), + [anon_sym_ref] = ACTIONS(1489), + [anon_sym_LBRACE] = ACTIONS(1481), + [anon_sym_RBRACE] = ACTIONS(1219), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1501), - [anon_sym_LT] = ACTIONS(1223), - [anon_sym_GT] = ACTIONS(1223), + [anon_sym_new] = ACTIONS(1095), + [anon_sym_LT] = ACTIONS(1221), + [anon_sym_GT] = ACTIONS(1221), [anon_sym_where] = ACTIONS(29), - [anon_sym_QMARK] = ACTIONS(1223), + [anon_sym_QMARK] = ACTIONS(1221), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = 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(79), - [anon_sym_DASH] = ACTIONS(79), - [anon_sym_STAR] = ACTIONS(81), - [anon_sym_SLASH] = ACTIONS(1223), - [anon_sym_PERCENT] = ACTIONS(1221), - [anon_sym_CARET] = ACTIONS(75), - [anon_sym_PIPE] = ACTIONS(1223), - [anon_sym_AMP] = ACTIONS(79), - [anon_sym_LT_LT] = ACTIONS(1221), - [anon_sym_GT_GT] = ACTIONS(1223), - [anon_sym_GT_GT_GT] = ACTIONS(1221), - [anon_sym_EQ_EQ] = ACTIONS(1221), - [anon_sym_BANG_EQ] = ACTIONS(1221), - [anon_sym_GT_EQ] = ACTIONS(1221), - [anon_sym_LT_EQ] = ACTIONS(1221), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(1491), + [anon_sym_TILDE] = ACTIONS(1493), + [anon_sym_PLUS_PLUS] = ACTIONS(1493), + [anon_sym_DASH_DASH] = ACTIONS(1493), + [anon_sym_true] = ACTIONS(77), + [anon_sym_false] = ACTIONS(77), + [anon_sym_PLUS] = ACTIONS(1491), + [anon_sym_DASH] = ACTIONS(1491), + [anon_sym_STAR] = ACTIONS(1105), + [anon_sym_SLASH] = ACTIONS(1221), + [anon_sym_PERCENT] = ACTIONS(1219), + [anon_sym_CARET] = ACTIONS(1493), + [anon_sym_PIPE] = ACTIONS(1221), + [anon_sym_AMP] = ACTIONS(1491), + [anon_sym_LT_LT] = ACTIONS(1219), + [anon_sym_GT_GT] = ACTIONS(1221), + [anon_sym_GT_GT_GT] = ACTIONS(1219), + [anon_sym_EQ_EQ] = ACTIONS(1219), + [anon_sym_BANG_EQ] = ACTIONS(1219), + [anon_sym_GT_EQ] = ACTIONS(1219), + [anon_sym_LT_EQ] = ACTIONS(1219), [anon_sym_this] = ACTIONS(83), - [anon_sym_DOT] = ACTIONS(1223), + [anon_sym_DOT] = ACTIONS(1221), [anon_sym_scoped] = ACTIONS(85), [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1067), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), - [anon_sym_switch] = ACTIONS(1223), + [anon_sym_switch] = ACTIONS(1221), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1503), + [anon_sym_throw] = ACTIONS(1113), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1505), - [anon_sym_DOT_DOT] = ACTIONS(1507), - [anon_sym_AMP_AMP] = ACTIONS(1221), - [anon_sym_PIPE_PIPE] = ACTIONS(1221), - [anon_sym_QMARK_QMARK] = ACTIONS(1221), + [anon_sym_await] = ACTIONS(1115), + [anon_sym_DOT_DOT] = ACTIONS(1119), + [anon_sym_AMP_AMP] = ACTIONS(1219), + [anon_sym_PIPE_PIPE] = ACTIONS(1219), + [anon_sym_QMARK_QMARK] = ACTIONS(1219), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -61981,11 +61870,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(1223), - [anon_sym_is] = ACTIONS(1223), - [anon_sym_DASH_GT] = ACTIONS(1221), + [anon_sym_as] = ACTIONS(1221), + [anon_sym_is] = ACTIONS(1221), + [anon_sym_DASH_GT] = ACTIONS(1219), [anon_sym_stackalloc] = ACTIONS(127), - [anon_sym_with] = ACTIONS(1223), + [anon_sym_with] = ACTIONS(1221), [anon_sym_sizeof] = ACTIONS(129), [anon_sym_typeof] = ACTIONS(131), [anon_sym___makeref] = ACTIONS(133), @@ -61997,10 +61886,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(1089), - [aux_sym_preproc_if_token3] = ACTIONS(1221), - [aux_sym_preproc_else_token1] = ACTIONS(1221), - [aux_sym_preproc_elif_token1] = ACTIONS(1221), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -62017,84 +61903,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [164] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(5910), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2247), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(4554), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3379), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3080), - [sym_postfix_unary_expression] = STATE(3111), - [sym_prefix_unary_expression] = STATE(3111), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6154), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3080), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3111), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3080), - [sym_member_access_expression] = STATE(2484), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3111), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7575), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(3080), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3080), - [sym_typeof_expression] = STATE(3080), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2484), - [sym_literal] = STATE(3080), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(5879), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2238), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(4557), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3398), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3102), + [sym_postfix_unary_expression] = STATE(3079), + [sym_prefix_unary_expression] = STATE(3079), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6163), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3102), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3079), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3102), + [sym_member_access_expression] = STATE(2472), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3079), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7496), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(3102), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3102), + [sym_typeof_expression] = STATE(3102), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2472), + [sym_literal] = STATE(3102), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(164), [sym_preproc_endregion] = STATE(164), [sym_preproc_line] = STATE(164), @@ -62104,69 +61990,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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1481), - [anon_sym_COMMA] = ACTIONS(1221), - [anon_sym_RBRACK] = ACTIONS(1221), - [anon_sym_LPAREN] = ACTIONS(895), - [anon_sym_RPAREN] = ACTIONS(1221), - [anon_sym_ref] = ACTIONS(897), - [anon_sym_LBRACE] = ACTIONS(1487), - [anon_sym_RBRACE] = ACTIONS(1221), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1479), + [anon_sym_COLON] = ACTIONS(1147), + [anon_sym_COMMA] = ACTIONS(1147), + [anon_sym_LPAREN] = ACTIONS(1487), + [anon_sym_RPAREN] = ACTIONS(1147), + [anon_sym_ref] = ACTIONS(1489), + [anon_sym_LBRACE] = ACTIONS(1481), + [anon_sym_RBRACE] = ACTIONS(1147), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1061), - [anon_sym_LT] = ACTIONS(1223), - [anon_sym_GT] = ACTIONS(1223), + [anon_sym_new] = ACTIONS(1095), + [anon_sym_LT] = ACTIONS(1161), + [anon_sym_GT] = ACTIONS(1161), [anon_sym_where] = ACTIONS(29), - [anon_sym_QMARK] = ACTIONS(1223), + [anon_sym_QMARK] = ACTIONS(1161), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1067), - [anon_sym_BANG] = ACTIONS(1493), - [anon_sym_TILDE] = ACTIONS(1495), - [anon_sym_PLUS_PLUS] = ACTIONS(1495), - [anon_sym_DASH_DASH] = ACTIONS(1495), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1493), - [anon_sym_DASH] = ACTIONS(1493), - [anon_sym_STAR] = ACTIONS(905), - [anon_sym_SLASH] = ACTIONS(1223), - [anon_sym_PERCENT] = ACTIONS(1221), - [anon_sym_CARET] = ACTIONS(1495), - [anon_sym_PIPE] = ACTIONS(1223), - [anon_sym_AMP] = ACTIONS(1493), - [anon_sym_LT_LT] = ACTIONS(1221), - [anon_sym_GT_GT] = ACTIONS(1223), - [anon_sym_GT_GT_GT] = ACTIONS(1221), - [anon_sym_EQ_EQ] = ACTIONS(1221), - [anon_sym_BANG_EQ] = ACTIONS(1221), - [anon_sym_GT_EQ] = ACTIONS(1221), - [anon_sym_LT_EQ] = ACTIONS(1221), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(1491), + [anon_sym_TILDE] = ACTIONS(1493), + [anon_sym_PLUS_PLUS] = ACTIONS(1493), + [anon_sym_DASH_DASH] = ACTIONS(1493), + [anon_sym_true] = ACTIONS(77), + [anon_sym_false] = ACTIONS(77), + [anon_sym_PLUS] = ACTIONS(1491), + [anon_sym_DASH] = ACTIONS(1491), + [anon_sym_STAR] = ACTIONS(1105), + [anon_sym_SLASH] = ACTIONS(1161), + [anon_sym_PERCENT] = ACTIONS(1147), + [anon_sym_CARET] = ACTIONS(1493), + [anon_sym_PIPE] = ACTIONS(1161), + [anon_sym_AMP] = ACTIONS(1491), + [anon_sym_LT_LT] = ACTIONS(1147), + [anon_sym_GT_GT] = ACTIONS(1161), + [anon_sym_GT_GT_GT] = ACTIONS(1147), + [anon_sym_EQ_EQ] = ACTIONS(1147), + [anon_sym_BANG_EQ] = ACTIONS(1147), + [anon_sym_GT_EQ] = ACTIONS(1147), + [anon_sym_LT_EQ] = ACTIONS(1147), [anon_sym_this] = ACTIONS(83), - [anon_sym_DOT] = ACTIONS(1223), + [anon_sym_DOT] = ACTIONS(1161), [anon_sym_scoped] = ACTIONS(85), [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1067), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), - [anon_sym_switch] = ACTIONS(1223), + [anon_sym_switch] = ACTIONS(1161), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1079), + [anon_sym_throw] = ACTIONS(1113), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1081), - [anon_sym_DOT_DOT] = ACTIONS(911), - [anon_sym_AMP_AMP] = ACTIONS(1221), - [anon_sym_PIPE_PIPE] = ACTIONS(1221), - [anon_sym_QMARK_QMARK] = ACTIONS(1221), + [anon_sym_await] = ACTIONS(1115), + [anon_sym_DOT_DOT] = ACTIONS(1119), + [anon_sym_AMP_AMP] = ACTIONS(1147), + [anon_sym_PIPE_PIPE] = ACTIONS(1147), + [anon_sym_QMARK_QMARK] = ACTIONS(1147), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -62179,11 +62065,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(1223), - [anon_sym_is] = ACTIONS(1223), - [anon_sym_DASH_GT] = ACTIONS(1221), + [anon_sym_as] = ACTIONS(1161), + [anon_sym_is] = ACTIONS(1161), + [anon_sym_DASH_GT] = ACTIONS(1147), [anon_sym_stackalloc] = ACTIONS(127), - [anon_sym_with] = ACTIONS(1223), + [anon_sym_with] = ACTIONS(1161), [anon_sym_sizeof] = ACTIONS(129), [anon_sym_typeof] = ACTIONS(131), [anon_sym___makeref] = ACTIONS(133), @@ -62195,7 +62081,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(1089), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -62212,84 +62098,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [165] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(5889), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2247), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(4752), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3408), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3080), - [sym_postfix_unary_expression] = STATE(3111), - [sym_prefix_unary_expression] = STATE(3111), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6161), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3080), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3111), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3080), - [sym_member_access_expression] = STATE(2484), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3111), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7323), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(3080), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3080), - [sym_typeof_expression] = STATE(3080), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2484), - [sym_literal] = STATE(3080), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2416), + [sym__name] = STATE(5900), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2193), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(4408), + [sym_non_lvalue_expression] = STATE(3040), + [sym_lvalue_expression] = STATE(3231), + [sym__expression_statement_expression] = STATE(3035), + [sym_assignment_expression] = STATE(3043), + [sym_binary_expression] = STATE(3035), + [sym_postfix_unary_expression] = STATE(3043), + [sym_prefix_unary_expression] = STATE(3043), + [sym__pointer_indirection_expression] = STATE(2415), + [sym_query_expression] = STATE(3035), + [sym_from_clause] = STATE(6149), + [sym_conditional_expression] = STATE(3035), + [sym_conditional_access_expression] = STATE(3035), + [sym_as_expression] = STATE(3035), + [sym_is_expression] = STATE(3035), + [sym_is_pattern_expression] = STATE(3035), + [sym_cast_expression] = STATE(3035), + [sym_checked_expression] = STATE(3035), + [sym_invocation_expression] = STATE(3043), + [sym_switch_expression] = STATE(3035), + [sym_await_expression] = STATE(3043), + [sym_throw_expression] = STATE(3035), + [sym_element_access_expression] = STATE(2415), + [sym_interpolated_string_expression] = STATE(3035), + [sym_member_access_expression] = STATE(2415), + [sym_object_creation_expression] = STATE(3043), + [sym_parenthesized_expression] = STATE(3043), + [sym__parenthesized_lvalue_expression] = STATE(2415), + [sym_lambda_expression] = STATE(3035), + [sym__lambda_expression_init] = STATE(7405), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3035), + [sym_anonymous_method_expression] = STATE(3035), + [sym_anonymous_object_creation_expression] = STATE(3035), + [sym_implicit_array_creation_expression] = STATE(3035), + [sym_implicit_object_creation_expression] = STATE(3035), + [sym_implicit_stackalloc_expression] = STATE(3035), + [sym_initializer_expression] = STATE(3035), + [sym_default_expression] = STATE(3035), + [sym_with_expression] = STATE(3035), + [sym_sizeof_expression] = STATE(3035), + [sym_typeof_expression] = STATE(3035), + [sym_makeref_expression] = STATE(3035), + [sym_ref_expression] = STATE(3035), + [sym_reftype_expression] = STATE(3035), + [sym_refvalue_expression] = STATE(3035), + [sym_stackalloc_expression] = STATE(3035), + [sym_range_expression] = STATE(3035), + [sym_tuple_expression] = STATE(2415), + [sym_literal] = STATE(3035), + [sym_character_literal] = STATE(3037), + [sym_string_literal] = STATE(3037), + [sym_raw_string_literal] = STATE(3037), + [sym_boolean_literal] = STATE(3037), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3035), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(165), [sym_preproc_endregion] = STATE(165), [sym_preproc_line] = STATE(165), @@ -62299,69 +62185,69 @@ 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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), - [sym__identifier_token] = ACTIONS(25), - [anon_sym_alias] = ACTIONS(29), - [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1481), - [anon_sym_COLON] = ACTIONS(1151), - [anon_sym_COMMA] = ACTIONS(1151), - [anon_sym_LPAREN] = ACTIONS(1483), - [anon_sym_RPAREN] = ACTIONS(1151), - [anon_sym_ref] = ACTIONS(1485), - [anon_sym_LBRACE] = ACTIONS(1487), - [anon_sym_RBRACE] = ACTIONS(1151), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), - [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1101), - [anon_sym_LT] = ACTIONS(1165), - [anon_sym_GT] = ACTIONS(1165), - [anon_sym_where] = ACTIONS(29), - [anon_sym_QMARK] = ACTIONS(1165), - [anon_sym_notnull] = ACTIONS(29), - [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1067), - [anon_sym_BANG] = ACTIONS(1489), - [anon_sym_TILDE] = ACTIONS(1491), - [anon_sym_PLUS_PLUS] = ACTIONS(1491), - [anon_sym_DASH_DASH] = ACTIONS(1491), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1489), - [anon_sym_DASH] = ACTIONS(1489), - [anon_sym_STAR] = ACTIONS(1111), - [anon_sym_SLASH] = ACTIONS(1165), - [anon_sym_PERCENT] = ACTIONS(1151), - [anon_sym_CARET] = ACTIONS(1491), - [anon_sym_PIPE] = ACTIONS(1165), - [anon_sym_AMP] = ACTIONS(1489), - [anon_sym_LT_LT] = ACTIONS(1151), - [anon_sym_GT_GT] = ACTIONS(1165), - [anon_sym_GT_GT_GT] = ACTIONS(1151), - [anon_sym_EQ_EQ] = ACTIONS(1151), - [anon_sym_BANG_EQ] = ACTIONS(1151), - [anon_sym_GT_EQ] = ACTIONS(1151), - [anon_sym_LT_EQ] = ACTIONS(1151), - [anon_sym_this] = ACTIONS(83), - [anon_sym_DOT] = ACTIONS(1165), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1067), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3455), + [sym__identifier_token] = ACTIONS(25), + [anon_sym_alias] = ACTIONS(29), + [anon_sym_global] = ACTIONS(29), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1239), + [anon_sym_COLON] = ACTIONS(1219), + [anon_sym_COMMA] = ACTIONS(1219), + [anon_sym_LPAREN] = ACTIONS(1495), + [anon_sym_RPAREN] = ACTIONS(1219), + [anon_sym_ref] = ACTIONS(1497), + [anon_sym_LBRACE] = ACTIONS(1245), + [anon_sym_RBRACE] = ACTIONS(1219), + [anon_sym_delegate] = ACTIONS(1247), + [anon_sym_async] = ACTIONS(1045), + [anon_sym_file] = ACTIONS(29), + [anon_sym_new] = ACTIONS(1249), + [anon_sym_LT] = ACTIONS(1221), + [anon_sym_GT] = ACTIONS(1221), + [anon_sym_where] = ACTIONS(29), + [anon_sym_QMARK] = ACTIONS(1221), + [anon_sym_notnull] = ACTIONS(29), + [anon_sym_unmanaged] = ACTIONS(29), + [anon_sym_checked] = ACTIONS(1251), + [anon_sym_BANG] = ACTIONS(1499), + [anon_sym_TILDE] = ACTIONS(1501), + [anon_sym_PLUS_PLUS] = ACTIONS(1501), + [anon_sym_DASH_DASH] = ACTIONS(1501), + [anon_sym_true] = ACTIONS(1257), + [anon_sym_false] = ACTIONS(1257), + [anon_sym_PLUS] = ACTIONS(1499), + [anon_sym_DASH] = ACTIONS(1499), + [anon_sym_STAR] = ACTIONS(1503), + [anon_sym_SLASH] = ACTIONS(1221), + [anon_sym_PERCENT] = ACTIONS(1219), + [anon_sym_CARET] = ACTIONS(1501), + [anon_sym_PIPE] = ACTIONS(1221), + [anon_sym_AMP] = ACTIONS(1499), + [anon_sym_LT_LT] = ACTIONS(1219), + [anon_sym_GT_GT] = ACTIONS(1221), + [anon_sym_GT_GT_GT] = ACTIONS(1219), + [anon_sym_EQ_EQ] = ACTIONS(1219), + [anon_sym_BANG_EQ] = ACTIONS(1219), + [anon_sym_GT_EQ] = ACTIONS(1219), + [anon_sym_LT_EQ] = ACTIONS(1219), + [anon_sym_this] = ACTIONS(1261), + [anon_sym_DOT] = ACTIONS(1221), + [anon_sym_scoped] = ACTIONS(85), + [anon_sym_base] = ACTIONS(1263), + [anon_sym_var] = ACTIONS(89), + [sym_predefined_type] = ACTIONS(1265), + [anon_sym_unchecked] = ACTIONS(1251), [anon_sym_yield] = ACTIONS(29), - [anon_sym_switch] = ACTIONS(1165), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1119), + [anon_sym_switch] = ACTIONS(1221), + [anon_sym_default] = ACTIONS(1267), + [anon_sym_throw] = ACTIONS(1505), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1121), - [anon_sym_DOT_DOT] = ACTIONS(1125), - [anon_sym_AMP_AMP] = ACTIONS(1151), - [anon_sym_PIPE_PIPE] = ACTIONS(1151), - [anon_sym_QMARK_QMARK] = ACTIONS(1151), + [anon_sym_await] = ACTIONS(1507), + [anon_sym_DOT_DOT] = ACTIONS(1509), + [anon_sym_AMP_AMP] = ACTIONS(1219), + [anon_sym_PIPE_PIPE] = ACTIONS(1219), + [anon_sym_QMARK_QMARK] = ACTIONS(1219), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -62374,23 +62260,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(1165), - [anon_sym_is] = ACTIONS(1165), - [anon_sym_DASH_GT] = ACTIONS(1151), - [anon_sym_stackalloc] = ACTIONS(127), - [anon_sym_with] = ACTIONS(1165), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(133), - [anon_sym___reftype] = ACTIONS(135), - [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1089), + [anon_sym_as] = ACTIONS(1221), + [anon_sym_is] = ACTIONS(1221), + [anon_sym_DASH_GT] = ACTIONS(1219), + [anon_sym_stackalloc] = ACTIONS(1275), + [anon_sym_with] = ACTIONS(1221), + [anon_sym_sizeof] = ACTIONS(1277), + [anon_sym_typeof] = ACTIONS(1279), + [anon_sym___makeref] = ACTIONS(1281), + [anon_sym___reftype] = ACTIONS(1283), + [anon_sym___refvalue] = ACTIONS(1285), + [sym_null_literal] = ACTIONS(1287), + [anon_sym_SQUOTE] = ACTIONS(1289), + [sym_integer_literal] = ACTIONS(1287), + [sym_real_literal] = ACTIONS(1291), + [anon_sym_DQUOTE] = ACTIONS(1293), + [sym_verbatim_string_literal] = ACTIONS(1291), + [aux_sym_preproc_if_token1] = ACTIONS(1295), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -62401,90 +62287,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(151), - [sym_interpolation_verbatim_start] = ACTIONS(153), - [sym_interpolation_raw_start] = ACTIONS(155), - [sym_raw_string_start] = ACTIONS(157), + [sym_interpolation_regular_start] = ACTIONS(1297), + [sym_interpolation_verbatim_start] = ACTIONS(1299), + [sym_interpolation_raw_start] = ACTIONS(1301), + [sym_raw_string_start] = ACTIONS(1303), }, [166] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(5160), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2204), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(4673), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3461), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3080), - [sym_postfix_unary_expression] = STATE(3111), - [sym_prefix_unary_expression] = STATE(3111), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6154), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3080), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3111), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3080), - [sym_member_access_expression] = STATE(2484), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3111), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7547), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(3080), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3080), - [sym_typeof_expression] = STATE(3080), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2484), - [sym_literal] = STATE(3080), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2416), + [sym__name] = STATE(5900), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2193), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(4349), + [sym_non_lvalue_expression] = STATE(3040), + [sym_lvalue_expression] = STATE(3231), + [sym__expression_statement_expression] = STATE(3035), + [sym_assignment_expression] = STATE(3043), + [sym_binary_expression] = STATE(3035), + [sym_postfix_unary_expression] = STATE(3043), + [sym_prefix_unary_expression] = STATE(3043), + [sym__pointer_indirection_expression] = STATE(2415), + [sym_query_expression] = STATE(3035), + [sym_from_clause] = STATE(6149), + [sym_conditional_expression] = STATE(3035), + [sym_conditional_access_expression] = STATE(3035), + [sym_as_expression] = STATE(3035), + [sym_is_expression] = STATE(3035), + [sym_is_pattern_expression] = STATE(3035), + [sym_cast_expression] = STATE(3035), + [sym_checked_expression] = STATE(3035), + [sym_invocation_expression] = STATE(3043), + [sym_switch_expression] = STATE(3035), + [sym_await_expression] = STATE(3043), + [sym_throw_expression] = STATE(3035), + [sym_element_access_expression] = STATE(2415), + [sym_interpolated_string_expression] = STATE(3035), + [sym_member_access_expression] = STATE(2415), + [sym_object_creation_expression] = STATE(3043), + [sym_parenthesized_expression] = STATE(3043), + [sym__parenthesized_lvalue_expression] = STATE(2415), + [sym_lambda_expression] = STATE(3035), + [sym__lambda_expression_init] = STATE(7405), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3035), + [sym_anonymous_method_expression] = STATE(3035), + [sym_anonymous_object_creation_expression] = STATE(3035), + [sym_implicit_array_creation_expression] = STATE(3035), + [sym_implicit_object_creation_expression] = STATE(3035), + [sym_implicit_stackalloc_expression] = STATE(3035), + [sym_initializer_expression] = STATE(3035), + [sym_default_expression] = STATE(3035), + [sym_with_expression] = STATE(3035), + [sym_sizeof_expression] = STATE(3035), + [sym_typeof_expression] = STATE(3035), + [sym_makeref_expression] = STATE(3035), + [sym_ref_expression] = STATE(3035), + [sym_reftype_expression] = STATE(3035), + [sym_refvalue_expression] = STATE(3035), + [sym_stackalloc_expression] = STATE(3035), + [sym_range_expression] = STATE(3035), + [sym_tuple_expression] = STATE(2415), + [sym_literal] = STATE(3035), + [sym_character_literal] = STATE(3037), + [sym_string_literal] = STATE(3037), + [sym_raw_string_literal] = STATE(3037), + [sym_boolean_literal] = STATE(3037), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3035), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(166), [sym_preproc_endregion] = STATE(166), [sym_preproc_line] = STATE(166), @@ -62494,66 +62380,69 @@ 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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3455), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), - [anon_sym_SEMI] = ACTIONS(1151), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1481), - [anon_sym_LPAREN] = ACTIONS(1497), - [anon_sym_ref] = ACTIONS(1499), - [anon_sym_LBRACE] = ACTIONS(1487), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1239), + [anon_sym_COLON] = ACTIONS(1147), + [anon_sym_COMMA] = ACTIONS(1147), + [anon_sym_LPAREN] = ACTIONS(1495), + [anon_sym_RPAREN] = ACTIONS(1147), + [anon_sym_ref] = ACTIONS(1497), + [anon_sym_LBRACE] = ACTIONS(1245), + [anon_sym_RBRACE] = ACTIONS(1147), + [anon_sym_delegate] = ACTIONS(1247), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1501), - [anon_sym_LT] = ACTIONS(1165), - [anon_sym_GT] = ACTIONS(1165), + [anon_sym_new] = ACTIONS(1249), + [anon_sym_LT] = ACTIONS(1161), + [anon_sym_GT] = ACTIONS(1161), [anon_sym_where] = ACTIONS(29), - [anon_sym_QMARK] = ACTIONS(1165), + [anon_sym_QMARK] = ACTIONS(1161), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = 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(79), - [anon_sym_DASH] = ACTIONS(79), - [anon_sym_STAR] = ACTIONS(81), - [anon_sym_SLASH] = ACTIONS(1165), - [anon_sym_PERCENT] = ACTIONS(1151), - [anon_sym_CARET] = ACTIONS(75), - [anon_sym_PIPE] = ACTIONS(1165), - [anon_sym_AMP] = ACTIONS(79), - [anon_sym_LT_LT] = ACTIONS(1151), - [anon_sym_GT_GT] = ACTIONS(1165), - [anon_sym_GT_GT_GT] = ACTIONS(1151), - [anon_sym_EQ_EQ] = ACTIONS(1151), - [anon_sym_BANG_EQ] = ACTIONS(1151), - [anon_sym_GT_EQ] = ACTIONS(1151), - [anon_sym_LT_EQ] = ACTIONS(1151), - [anon_sym_this] = ACTIONS(83), - [anon_sym_DOT] = ACTIONS(1165), + [anon_sym_checked] = ACTIONS(1251), + [anon_sym_BANG] = ACTIONS(1499), + [anon_sym_TILDE] = ACTIONS(1501), + [anon_sym_PLUS_PLUS] = ACTIONS(1501), + [anon_sym_DASH_DASH] = ACTIONS(1501), + [anon_sym_true] = ACTIONS(1257), + [anon_sym_false] = ACTIONS(1257), + [anon_sym_PLUS] = ACTIONS(1499), + [anon_sym_DASH] = ACTIONS(1499), + [anon_sym_STAR] = ACTIONS(1503), + [anon_sym_SLASH] = ACTIONS(1161), + [anon_sym_PERCENT] = ACTIONS(1147), + [anon_sym_CARET] = ACTIONS(1501), + [anon_sym_PIPE] = ACTIONS(1161), + [anon_sym_AMP] = ACTIONS(1499), + [anon_sym_LT_LT] = ACTIONS(1147), + [anon_sym_GT_GT] = ACTIONS(1161), + [anon_sym_GT_GT_GT] = ACTIONS(1147), + [anon_sym_EQ_EQ] = ACTIONS(1147), + [anon_sym_BANG_EQ] = ACTIONS(1147), + [anon_sym_GT_EQ] = ACTIONS(1147), + [anon_sym_LT_EQ] = ACTIONS(1147), + [anon_sym_this] = ACTIONS(1261), + [anon_sym_DOT] = ACTIONS(1161), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), + [anon_sym_base] = ACTIONS(1263), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1067), + [sym_predefined_type] = ACTIONS(1265), + [anon_sym_unchecked] = ACTIONS(1251), [anon_sym_yield] = ACTIONS(29), - [anon_sym_switch] = ACTIONS(1165), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1503), + [anon_sym_switch] = ACTIONS(1161), + [anon_sym_default] = ACTIONS(1267), + [anon_sym_throw] = ACTIONS(1505), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1505), - [anon_sym_DOT_DOT] = ACTIONS(1507), - [anon_sym_AMP_AMP] = ACTIONS(1151), - [anon_sym_PIPE_PIPE] = ACTIONS(1151), - [anon_sym_QMARK_QMARK] = ACTIONS(1151), + [anon_sym_await] = ACTIONS(1507), + [anon_sym_DOT_DOT] = ACTIONS(1509), + [anon_sym_AMP_AMP] = ACTIONS(1147), + [anon_sym_PIPE_PIPE] = ACTIONS(1147), + [anon_sym_QMARK_QMARK] = ACTIONS(1147), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -62566,26 +62455,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(1165), - [anon_sym_is] = ACTIONS(1165), - [anon_sym_DASH_GT] = ACTIONS(1151), - [anon_sym_stackalloc] = ACTIONS(127), - [anon_sym_with] = ACTIONS(1165), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(133), - [anon_sym___reftype] = ACTIONS(135), - [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1089), - [aux_sym_preproc_if_token3] = ACTIONS(1151), - [aux_sym_preproc_else_token1] = ACTIONS(1151), - [aux_sym_preproc_elif_token1] = ACTIONS(1151), + [anon_sym_as] = ACTIONS(1161), + [anon_sym_is] = ACTIONS(1161), + [anon_sym_DASH_GT] = ACTIONS(1147), + [anon_sym_stackalloc] = ACTIONS(1275), + [anon_sym_with] = ACTIONS(1161), + [anon_sym_sizeof] = ACTIONS(1277), + [anon_sym_typeof] = ACTIONS(1279), + [anon_sym___makeref] = ACTIONS(1281), + [anon_sym___reftype] = ACTIONS(1283), + [anon_sym___refvalue] = ACTIONS(1285), + [sym_null_literal] = ACTIONS(1287), + [anon_sym_SQUOTE] = ACTIONS(1289), + [sym_integer_literal] = ACTIONS(1287), + [sym_real_literal] = ACTIONS(1291), + [anon_sym_DQUOTE] = ACTIONS(1293), + [sym_verbatim_string_literal] = ACTIONS(1291), + [aux_sym_preproc_if_token1] = ACTIONS(1295), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -62596,90 +62482,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(151), - [sym_interpolation_verbatim_start] = ACTIONS(153), - [sym_interpolation_raw_start] = ACTIONS(155), - [sym_raw_string_start] = ACTIONS(157), + [sym_interpolation_regular_start] = ACTIONS(1297), + [sym_interpolation_verbatim_start] = ACTIONS(1299), + [sym_interpolation_raw_start] = ACTIONS(1301), + [sym_raw_string_start] = ACTIONS(1303), }, [167] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2420), - [sym__name] = STATE(5911), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2197), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(4402), - [sym_non_lvalue_expression] = STATE(3066), - [sym_lvalue_expression] = STATE(3327), - [sym__expression_statement_expression] = STATE(3006), - [sym_assignment_expression] = STATE(3020), - [sym_binary_expression] = STATE(3006), - [sym_postfix_unary_expression] = STATE(3020), - [sym_prefix_unary_expression] = STATE(3020), - [sym__pointer_indirection_expression] = STATE(2423), - [sym_query_expression] = STATE(3006), - [sym_from_clause] = STATE(6159), - [sym_conditional_expression] = STATE(3006), - [sym_conditional_access_expression] = STATE(3006), - [sym_as_expression] = STATE(3006), - [sym_is_expression] = STATE(3006), - [sym_is_pattern_expression] = STATE(3006), - [sym_cast_expression] = STATE(3006), - [sym_checked_expression] = STATE(3006), - [sym_invocation_expression] = STATE(3020), - [sym_switch_expression] = STATE(3006), - [sym_await_expression] = STATE(3020), - [sym_throw_expression] = STATE(3006), - [sym_element_access_expression] = STATE(2423), - [sym_interpolated_string_expression] = STATE(3006), - [sym_member_access_expression] = STATE(2423), - [sym_object_creation_expression] = STATE(3020), - [sym_parenthesized_expression] = STATE(3020), - [sym__parenthesized_lvalue_expression] = STATE(2423), - [sym_lambda_expression] = STATE(3006), - [sym__lambda_expression_init] = STATE(7674), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3006), - [sym_anonymous_method_expression] = STATE(3006), - [sym_anonymous_object_creation_expression] = STATE(3006), - [sym_implicit_array_creation_expression] = STATE(3006), - [sym_implicit_object_creation_expression] = STATE(3006), - [sym_implicit_stackalloc_expression] = STATE(3006), - [sym_initializer_expression] = STATE(3006), - [sym_default_expression] = STATE(3006), - [sym_with_expression] = STATE(3006), - [sym_sizeof_expression] = STATE(3006), - [sym_typeof_expression] = STATE(3006), - [sym_makeref_expression] = STATE(3006), - [sym_ref_expression] = STATE(3006), - [sym_reftype_expression] = STATE(3006), - [sym_refvalue_expression] = STATE(3006), - [sym_stackalloc_expression] = STATE(3006), - [sym_range_expression] = STATE(3006), - [sym_tuple_expression] = STATE(2423), - [sym_literal] = STATE(3006), - [sym_character_literal] = STATE(3011), - [sym_string_literal] = STATE(3011), - [sym_raw_string_literal] = STATE(3011), - [sym_boolean_literal] = STATE(3011), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3006), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(5152), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2196), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(4797), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3356), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3102), + [sym_postfix_unary_expression] = STATE(3079), + [sym_prefix_unary_expression] = STATE(3079), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6134), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3102), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3079), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3102), + [sym_member_access_expression] = STATE(2472), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3079), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7627), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(3102), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3102), + [sym_typeof_expression] = STATE(3102), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2472), + [sym_literal] = STATE(3102), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(167), [sym_preproc_endregion] = STATE(167), [sym_preproc_line] = STATE(167), @@ -62689,69 +62575,66 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(167), [sym_preproc_define] = STATE(167), [sym_preproc_undef] = STATE(167), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3440), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), + [anon_sym_SEMI] = ACTIONS(1147), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1241), - [anon_sym_COLON] = ACTIONS(1151), - [anon_sym_COMMA] = ACTIONS(1151), - [anon_sym_LPAREN] = ACTIONS(1509), - [anon_sym_RPAREN] = ACTIONS(1151), - [anon_sym_ref] = ACTIONS(1511), - [anon_sym_LBRACE] = ACTIONS(1247), - [anon_sym_RBRACE] = ACTIONS(1151), - [anon_sym_delegate] = ACTIONS(1249), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1479), + [anon_sym_LPAREN] = ACTIONS(1511), + [anon_sym_ref] = ACTIONS(1513), + [anon_sym_LBRACE] = ACTIONS(1481), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1251), - [anon_sym_LT] = ACTIONS(1165), - [anon_sym_GT] = ACTIONS(1165), + [anon_sym_new] = ACTIONS(1515), + [anon_sym_LT] = ACTIONS(1161), + [anon_sym_GT] = ACTIONS(1161), [anon_sym_where] = ACTIONS(29), - [anon_sym_QMARK] = ACTIONS(1165), + [anon_sym_QMARK] = ACTIONS(1161), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1253), - [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(1259), - [anon_sym_false] = ACTIONS(1259), - [anon_sym_PLUS] = ACTIONS(1513), - [anon_sym_DASH] = ACTIONS(1513), - [anon_sym_STAR] = ACTIONS(1517), - [anon_sym_SLASH] = ACTIONS(1165), - [anon_sym_PERCENT] = ACTIONS(1151), - [anon_sym_CARET] = ACTIONS(1515), - [anon_sym_PIPE] = ACTIONS(1165), - [anon_sym_AMP] = ACTIONS(1513), - [anon_sym_LT_LT] = ACTIONS(1151), - [anon_sym_GT_GT] = ACTIONS(1165), - [anon_sym_GT_GT_GT] = ACTIONS(1151), - [anon_sym_EQ_EQ] = ACTIONS(1151), - [anon_sym_BANG_EQ] = ACTIONS(1151), - [anon_sym_GT_EQ] = ACTIONS(1151), - [anon_sym_LT_EQ] = ACTIONS(1151), - [anon_sym_this] = ACTIONS(1263), - [anon_sym_DOT] = ACTIONS(1165), + [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(1161), + [anon_sym_PERCENT] = ACTIONS(1147), + [anon_sym_CARET] = ACTIONS(75), + [anon_sym_PIPE] = ACTIONS(1161), + [anon_sym_AMP] = ACTIONS(79), + [anon_sym_LT_LT] = ACTIONS(1147), + [anon_sym_GT_GT] = ACTIONS(1161), + [anon_sym_GT_GT_GT] = ACTIONS(1147), + [anon_sym_EQ_EQ] = ACTIONS(1147), + [anon_sym_BANG_EQ] = ACTIONS(1147), + [anon_sym_GT_EQ] = ACTIONS(1147), + [anon_sym_LT_EQ] = ACTIONS(1147), + [anon_sym_this] = ACTIONS(83), + [anon_sym_DOT] = ACTIONS(1161), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1265), + [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1267), - [anon_sym_unchecked] = ACTIONS(1253), + [sym_predefined_type] = ACTIONS(91), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), - [anon_sym_switch] = ACTIONS(1165), - [anon_sym_default] = ACTIONS(1269), - [anon_sym_throw] = ACTIONS(1519), + [anon_sym_switch] = ACTIONS(1161), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(1517), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1521), - [anon_sym_DOT_DOT] = ACTIONS(1523), - [anon_sym_AMP_AMP] = ACTIONS(1151), - [anon_sym_PIPE_PIPE] = ACTIONS(1151), - [anon_sym_QMARK_QMARK] = ACTIONS(1151), + [anon_sym_await] = ACTIONS(1519), + [anon_sym_DOT_DOT] = ACTIONS(1521), + [anon_sym_AMP_AMP] = ACTIONS(1147), + [anon_sym_PIPE_PIPE] = ACTIONS(1147), + [anon_sym_QMARK_QMARK] = ACTIONS(1147), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -62764,23 +62647,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(1165), - [anon_sym_is] = ACTIONS(1165), - [anon_sym_DASH_GT] = ACTIONS(1151), - [anon_sym_stackalloc] = ACTIONS(1277), - [anon_sym_with] = ACTIONS(1165), - [anon_sym_sizeof] = ACTIONS(1279), - [anon_sym_typeof] = ACTIONS(1281), - [anon_sym___makeref] = ACTIONS(1283), - [anon_sym___reftype] = ACTIONS(1285), - [anon_sym___refvalue] = ACTIONS(1287), - [sym_null_literal] = ACTIONS(1289), - [anon_sym_SQUOTE] = ACTIONS(1291), - [sym_integer_literal] = ACTIONS(1289), - [sym_real_literal] = ACTIONS(1293), - [anon_sym_DQUOTE] = ACTIONS(1295), - [sym_verbatim_string_literal] = ACTIONS(1293), - [aux_sym_preproc_if_token1] = ACTIONS(1297), + [anon_sym_as] = ACTIONS(1161), + [anon_sym_is] = ACTIONS(1161), + [anon_sym_DASH_GT] = ACTIONS(1147), + [anon_sym_stackalloc] = ACTIONS(127), + [anon_sym_with] = ACTIONS(1161), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_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(1147), + [aux_sym_preproc_else_token1] = ACTIONS(1147), + [aux_sym_preproc_elif_token1] = ACTIONS(1147), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -62791,90 +62677,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1299), - [sym_interpolation_verbatim_start] = ACTIONS(1301), - [sym_interpolation_raw_start] = ACTIONS(1303), - [sym_raw_string_start] = ACTIONS(1305), + [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(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2420), - [sym__name] = STATE(5911), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2197), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(4425), - [sym_non_lvalue_expression] = STATE(3066), - [sym_lvalue_expression] = STATE(3327), - [sym__expression_statement_expression] = STATE(3006), - [sym_assignment_expression] = STATE(3020), - [sym_binary_expression] = STATE(3006), - [sym_postfix_unary_expression] = STATE(3020), - [sym_prefix_unary_expression] = STATE(3020), - [sym__pointer_indirection_expression] = STATE(2423), - [sym_query_expression] = STATE(3006), - [sym_from_clause] = STATE(6159), - [sym_conditional_expression] = STATE(3006), - [sym_conditional_access_expression] = STATE(3006), - [sym_as_expression] = STATE(3006), - [sym_is_expression] = STATE(3006), - [sym_is_pattern_expression] = STATE(3006), - [sym_cast_expression] = STATE(3006), - [sym_checked_expression] = STATE(3006), - [sym_invocation_expression] = STATE(3020), - [sym_switch_expression] = STATE(3006), - [sym_await_expression] = STATE(3020), - [sym_throw_expression] = STATE(3006), - [sym_element_access_expression] = STATE(2423), - [sym_interpolated_string_expression] = STATE(3006), - [sym_member_access_expression] = STATE(2423), - [sym_object_creation_expression] = STATE(3020), - [sym_parenthesized_expression] = STATE(3020), - [sym__parenthesized_lvalue_expression] = STATE(2423), - [sym_lambda_expression] = STATE(3006), - [sym__lambda_expression_init] = STATE(7674), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3006), - [sym_anonymous_method_expression] = STATE(3006), - [sym_anonymous_object_creation_expression] = STATE(3006), - [sym_implicit_array_creation_expression] = STATE(3006), - [sym_implicit_object_creation_expression] = STATE(3006), - [sym_implicit_stackalloc_expression] = STATE(3006), - [sym_initializer_expression] = STATE(3006), - [sym_default_expression] = STATE(3006), - [sym_with_expression] = STATE(3006), - [sym_sizeof_expression] = STATE(3006), - [sym_typeof_expression] = STATE(3006), - [sym_makeref_expression] = STATE(3006), - [sym_ref_expression] = STATE(3006), - [sym_reftype_expression] = STATE(3006), - [sym_refvalue_expression] = STATE(3006), - [sym_stackalloc_expression] = STATE(3006), - [sym_range_expression] = STATE(3006), - [sym_tuple_expression] = STATE(2423), - [sym_literal] = STATE(3006), - [sym_character_literal] = STATE(3011), - [sym_string_literal] = STATE(3011), - [sym_raw_string_literal] = STATE(3011), - [sym_boolean_literal] = STATE(3011), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3006), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(5152), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2196), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(4680), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3356), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3102), + [sym_postfix_unary_expression] = STATE(3079), + [sym_prefix_unary_expression] = STATE(3079), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6134), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3102), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3079), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3102), + [sym_member_access_expression] = STATE(2472), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3079), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7627), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(3102), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3102), + [sym_typeof_expression] = STATE(3102), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2472), + [sym_literal] = STATE(3102), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(168), [sym_preproc_endregion] = STATE(168), [sym_preproc_line] = STATE(168), @@ -62884,69 +62770,66 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(168), [sym_preproc_define] = STATE(168), [sym_preproc_undef] = STATE(168), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3440), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), + [anon_sym_SEMI] = ACTIONS(1219), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1241), - [anon_sym_COLON] = ACTIONS(1221), - [anon_sym_COMMA] = ACTIONS(1221), - [anon_sym_LPAREN] = ACTIONS(1509), - [anon_sym_RPAREN] = ACTIONS(1221), - [anon_sym_ref] = ACTIONS(1511), - [anon_sym_LBRACE] = ACTIONS(1247), - [anon_sym_RBRACE] = ACTIONS(1221), - [anon_sym_delegate] = ACTIONS(1249), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1479), + [anon_sym_LPAREN] = ACTIONS(1511), + [anon_sym_ref] = ACTIONS(1513), + [anon_sym_LBRACE] = ACTIONS(1481), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1251), - [anon_sym_LT] = ACTIONS(1223), - [anon_sym_GT] = ACTIONS(1223), + [anon_sym_new] = ACTIONS(1515), + [anon_sym_LT] = ACTIONS(1221), + [anon_sym_GT] = ACTIONS(1221), [anon_sym_where] = ACTIONS(29), - [anon_sym_QMARK] = ACTIONS(1223), + [anon_sym_QMARK] = ACTIONS(1221), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1253), - [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(1259), - [anon_sym_false] = ACTIONS(1259), - [anon_sym_PLUS] = ACTIONS(1513), - [anon_sym_DASH] = ACTIONS(1513), - [anon_sym_STAR] = ACTIONS(1517), - [anon_sym_SLASH] = ACTIONS(1223), - [anon_sym_PERCENT] = ACTIONS(1221), - [anon_sym_CARET] = ACTIONS(1515), - [anon_sym_PIPE] = ACTIONS(1223), - [anon_sym_AMP] = ACTIONS(1513), - [anon_sym_LT_LT] = ACTIONS(1221), - [anon_sym_GT_GT] = ACTIONS(1223), - [anon_sym_GT_GT_GT] = ACTIONS(1221), - [anon_sym_EQ_EQ] = ACTIONS(1221), - [anon_sym_BANG_EQ] = ACTIONS(1221), - [anon_sym_GT_EQ] = ACTIONS(1221), - [anon_sym_LT_EQ] = ACTIONS(1221), - [anon_sym_this] = ACTIONS(1263), - [anon_sym_DOT] = ACTIONS(1223), + [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(1221), + [anon_sym_PERCENT] = ACTIONS(1219), + [anon_sym_CARET] = ACTIONS(75), + [anon_sym_PIPE] = ACTIONS(1221), + [anon_sym_AMP] = ACTIONS(79), + [anon_sym_LT_LT] = ACTIONS(1219), + [anon_sym_GT_GT] = ACTIONS(1221), + [anon_sym_GT_GT_GT] = ACTIONS(1219), + [anon_sym_EQ_EQ] = ACTIONS(1219), + [anon_sym_BANG_EQ] = ACTIONS(1219), + [anon_sym_GT_EQ] = ACTIONS(1219), + [anon_sym_LT_EQ] = ACTIONS(1219), + [anon_sym_this] = ACTIONS(83), + [anon_sym_DOT] = ACTIONS(1221), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1265), + [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1267), - [anon_sym_unchecked] = ACTIONS(1253), + [sym_predefined_type] = ACTIONS(91), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), - [anon_sym_switch] = ACTIONS(1223), - [anon_sym_default] = ACTIONS(1269), - [anon_sym_throw] = ACTIONS(1519), + [anon_sym_switch] = ACTIONS(1221), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(1517), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1521), - [anon_sym_DOT_DOT] = ACTIONS(1523), - [anon_sym_AMP_AMP] = ACTIONS(1221), - [anon_sym_PIPE_PIPE] = ACTIONS(1221), - [anon_sym_QMARK_QMARK] = ACTIONS(1221), + [anon_sym_await] = ACTIONS(1519), + [anon_sym_DOT_DOT] = ACTIONS(1521), + [anon_sym_AMP_AMP] = ACTIONS(1219), + [anon_sym_PIPE_PIPE] = ACTIONS(1219), + [anon_sym_QMARK_QMARK] = ACTIONS(1219), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -62959,23 +62842,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(1223), - [anon_sym_is] = ACTIONS(1223), - [anon_sym_DASH_GT] = ACTIONS(1221), - [anon_sym_stackalloc] = ACTIONS(1277), - [anon_sym_with] = ACTIONS(1223), - [anon_sym_sizeof] = ACTIONS(1279), - [anon_sym_typeof] = ACTIONS(1281), - [anon_sym___makeref] = ACTIONS(1283), - [anon_sym___reftype] = ACTIONS(1285), - [anon_sym___refvalue] = ACTIONS(1287), - [sym_null_literal] = ACTIONS(1289), - [anon_sym_SQUOTE] = ACTIONS(1291), - [sym_integer_literal] = ACTIONS(1289), - [sym_real_literal] = ACTIONS(1293), - [anon_sym_DQUOTE] = ACTIONS(1295), - [sym_verbatim_string_literal] = ACTIONS(1293), - [aux_sym_preproc_if_token1] = ACTIONS(1297), + [anon_sym_as] = ACTIONS(1221), + [anon_sym_is] = ACTIONS(1221), + [anon_sym_DASH_GT] = ACTIONS(1219), + [anon_sym_stackalloc] = ACTIONS(127), + [anon_sym_with] = ACTIONS(1221), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_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(1219), + [aux_sym_preproc_else_token1] = ACTIONS(1219), + [aux_sym_preproc_elif_token1] = ACTIONS(1219), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -62986,90 +62872,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1299), - [sym_interpolation_verbatim_start] = ACTIONS(1301), - [sym_interpolation_raw_start] = ACTIONS(1303), - [sym_raw_string_start] = ACTIONS(1305), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [sym_interpolation_raw_start] = ACTIONS(155), + [sym_raw_string_start] = ACTIONS(157), }, [169] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(5910), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2247), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(4585), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3379), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3080), - [sym_postfix_unary_expression] = STATE(3111), - [sym_prefix_unary_expression] = STATE(3111), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6154), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3080), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3111), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3080), - [sym_member_access_expression] = STATE(2484), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3111), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7575), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(3080), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3080), - [sym_typeof_expression] = STATE(3080), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2484), - [sym_literal] = STATE(3080), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(5152), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2196), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(4944), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3510), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3102), + [sym_postfix_unary_expression] = STATE(3079), + [sym_prefix_unary_expression] = STATE(3079), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6134), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3102), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3079), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3102), + [sym_member_access_expression] = STATE(2472), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3079), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7425), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(3102), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3102), + [sym_typeof_expression] = STATE(3102), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2472), + [sym_literal] = STATE(3102), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(169), [sym_preproc_endregion] = STATE(169), [sym_preproc_line] = STATE(169), @@ -63079,68 +62965,65 @@ 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(3067), - [aux_sym_list_pattern_repeat1] = STATE(6812), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1481), - [anon_sym_COMMA] = ACTIONS(1151), - [anon_sym_RBRACK] = ACTIONS(1151), - [anon_sym_LPAREN] = ACTIONS(895), - [anon_sym_ref] = ACTIONS(897), - [anon_sym_LBRACE] = ACTIONS(1487), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1479), + [anon_sym_LPAREN] = ACTIONS(43), + [anon_sym_ref] = ACTIONS(715), + [anon_sym_LBRACE] = ACTIONS(1481), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1061), - [anon_sym_LT] = ACTIONS(1165), - [anon_sym_GT] = ACTIONS(1165), + [anon_sym_new] = ACTIONS(1059), + [anon_sym_LT] = ACTIONS(1221), + [anon_sym_GT] = ACTIONS(1221), [anon_sym_where] = ACTIONS(29), - [anon_sym_QMARK] = ACTIONS(1165), + [anon_sym_QMARK] = ACTIONS(1221), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1067), - [anon_sym_BANG] = ACTIONS(1493), - [anon_sym_TILDE] = ACTIONS(1495), - [anon_sym_PLUS_PLUS] = ACTIONS(1495), - [anon_sym_DASH_DASH] = ACTIONS(1495), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1493), - [anon_sym_DASH] = ACTIONS(1493), - [anon_sym_STAR] = ACTIONS(905), - [anon_sym_SLASH] = ACTIONS(1165), - [anon_sym_PERCENT] = ACTIONS(1151), - [anon_sym_CARET] = ACTIONS(1495), - [anon_sym_PIPE] = ACTIONS(1165), - [anon_sym_AMP] = ACTIONS(1493), - [anon_sym_LT_LT] = ACTIONS(1151), - [anon_sym_GT_GT] = ACTIONS(1165), - [anon_sym_GT_GT_GT] = ACTIONS(1151), - [anon_sym_EQ_EQ] = ACTIONS(1151), - [anon_sym_BANG_EQ] = ACTIONS(1151), - [anon_sym_GT_EQ] = ACTIONS(1151), - [anon_sym_LT_EQ] = ACTIONS(1151), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(1523), + [anon_sym_TILDE] = ACTIONS(1525), + [anon_sym_PLUS_PLUS] = ACTIONS(1525), + [anon_sym_DASH_DASH] = ACTIONS(1525), + [anon_sym_true] = ACTIONS(77), + [anon_sym_false] = ACTIONS(77), + [anon_sym_PLUS] = ACTIONS(1523), + [anon_sym_DASH] = ACTIONS(1523), + [anon_sym_STAR] = ACTIONS(81), + [anon_sym_SLASH] = ACTIONS(1221), + [anon_sym_PERCENT] = ACTIONS(1219), + [anon_sym_CARET] = ACTIONS(1525), + [anon_sym_PIPE] = ACTIONS(1221), + [anon_sym_AMP] = ACTIONS(1523), + [anon_sym_LT_LT] = ACTIONS(1219), + [anon_sym_GT_GT] = ACTIONS(1221), + [anon_sym_GT_GT_GT] = ACTIONS(1219), + [anon_sym_EQ_EQ] = ACTIONS(1219), + [anon_sym_BANG_EQ] = ACTIONS(1219), + [anon_sym_GT_EQ] = ACTIONS(1219), + [anon_sym_LT_EQ] = ACTIONS(1219), [anon_sym_this] = ACTIONS(83), - [anon_sym_DOT] = ACTIONS(1165), + [anon_sym_DOT] = ACTIONS(1221), [anon_sym_scoped] = ACTIONS(85), [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1067), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), - [anon_sym_switch] = ACTIONS(1165), + [anon_sym_switch] = ACTIONS(1221), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1079), + [anon_sym_throw] = ACTIONS(1527), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1081), - [anon_sym_DOT_DOT] = ACTIONS(911), - [anon_sym_AMP_AMP] = ACTIONS(1151), - [anon_sym_PIPE_PIPE] = ACTIONS(1151), - [anon_sym_QMARK_QMARK] = ACTIONS(1151), + [anon_sym_await] = ACTIONS(1529), + [anon_sym_DOT_DOT] = ACTIONS(123), + [anon_sym_AMP_AMP] = ACTIONS(1219), + [anon_sym_PIPE_PIPE] = ACTIONS(1219), + [anon_sym_QMARK_QMARK] = ACTIONS(1219), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -63153,11 +63036,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(1165), - [anon_sym_is] = ACTIONS(1165), - [anon_sym_DASH_GT] = ACTIONS(1151), + [anon_sym_as] = ACTIONS(1221), + [anon_sym_is] = ACTIONS(1221), + [anon_sym_DASH_GT] = ACTIONS(1219), [anon_sym_stackalloc] = ACTIONS(127), - [anon_sym_with] = ACTIONS(1165), + [anon_sym_with] = ACTIONS(1221), [anon_sym_sizeof] = ACTIONS(129), [anon_sym_typeof] = ACTIONS(131), [anon_sym___makeref] = ACTIONS(133), @@ -63169,7 +63052,10 @@ 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(1089), + [aux_sym_preproc_if_token1] = ACTIONS(1087), + [aux_sym_preproc_if_token3] = ACTIONS(1219), + [aux_sym_preproc_else_token1] = ACTIONS(1219), + [aux_sym_preproc_elif_token1] = ACTIONS(1219), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -63186,84 +63072,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [170] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2610), - [sym__name] = STATE(5886), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2319), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(4409), - [sym_non_lvalue_expression] = STATE(3277), - [sym_lvalue_expression] = STATE(3347), - [sym__expression_statement_expression] = STATE(3228), - [sym_assignment_expression] = STATE(3289), - [sym_binary_expression] = STATE(3228), - [sym_postfix_unary_expression] = STATE(3289), - [sym_prefix_unary_expression] = STATE(3289), - [sym__pointer_indirection_expression] = STATE(2609), - [sym_query_expression] = STATE(3228), - [sym_from_clause] = STATE(6150), - [sym_conditional_expression] = STATE(3228), - [sym_conditional_access_expression] = STATE(3228), - [sym_as_expression] = STATE(3228), - [sym_is_expression] = STATE(3228), - [sym_is_pattern_expression] = STATE(3228), - [sym_cast_expression] = STATE(3228), - [sym_checked_expression] = STATE(3228), - [sym_invocation_expression] = STATE(3289), - [sym_switch_expression] = STATE(3228), - [sym_await_expression] = STATE(3289), - [sym_throw_expression] = STATE(3228), - [sym_element_access_expression] = STATE(2609), - [sym_interpolated_string_expression] = STATE(3228), - [sym_member_access_expression] = STATE(2609), - [sym_object_creation_expression] = STATE(3289), - [sym_parenthesized_expression] = STATE(3289), - [sym__parenthesized_lvalue_expression] = STATE(2609), - [sym_lambda_expression] = STATE(3228), - [sym__lambda_expression_init] = STATE(7531), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3228), - [sym_anonymous_method_expression] = STATE(3228), - [sym_anonymous_object_creation_expression] = STATE(3228), - [sym_implicit_array_creation_expression] = STATE(3228), - [sym_implicit_object_creation_expression] = STATE(3228), - [sym_implicit_stackalloc_expression] = STATE(3228), - [sym_initializer_expression] = STATE(3228), - [sym_default_expression] = STATE(3228), - [sym_with_expression] = STATE(3228), - [sym_sizeof_expression] = STATE(3228), - [sym_typeof_expression] = STATE(3228), - [sym_makeref_expression] = STATE(3228), - [sym_ref_expression] = STATE(3228), - [sym_reftype_expression] = STATE(3228), - [sym_refvalue_expression] = STATE(3228), - [sym_stackalloc_expression] = STATE(3228), - [sym_range_expression] = STATE(3228), - [sym_tuple_expression] = STATE(2609), - [sym_literal] = STATE(3228), - [sym_character_literal] = STATE(3278), - [sym_string_literal] = STATE(3278), - [sym_raw_string_literal] = STATE(3278), - [sym_boolean_literal] = STATE(3278), - [sym_identifier] = STATE(2267), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3228), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2603), + [sym__name] = STATE(5877), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2344), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(4377), + [sym_non_lvalue_expression] = STATE(3220), + [sym_lvalue_expression] = STATE(3281), + [sym__expression_statement_expression] = STATE(3236), + [sym_assignment_expression] = STATE(3221), + [sym_binary_expression] = STATE(3236), + [sym_postfix_unary_expression] = STATE(3221), + [sym_prefix_unary_expression] = STATE(3221), + [sym__pointer_indirection_expression] = STATE(2602), + [sym_query_expression] = STATE(3236), + [sym_from_clause] = STATE(6146), + [sym_conditional_expression] = STATE(3236), + [sym_conditional_access_expression] = STATE(3236), + [sym_as_expression] = STATE(3236), + [sym_is_expression] = STATE(3236), + [sym_is_pattern_expression] = STATE(3236), + [sym_cast_expression] = STATE(3236), + [sym_checked_expression] = STATE(3236), + [sym_invocation_expression] = STATE(3221), + [sym_switch_expression] = STATE(3236), + [sym_await_expression] = STATE(3221), + [sym_throw_expression] = STATE(3236), + [sym_element_access_expression] = STATE(2602), + [sym_interpolated_string_expression] = STATE(3236), + [sym_member_access_expression] = STATE(2602), + [sym_object_creation_expression] = STATE(3221), + [sym_parenthesized_expression] = STATE(3221), + [sym__parenthesized_lvalue_expression] = STATE(2602), + [sym_lambda_expression] = STATE(3236), + [sym__lambda_expression_init] = STATE(7323), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3236), + [sym_anonymous_method_expression] = STATE(3236), + [sym_anonymous_object_creation_expression] = STATE(3236), + [sym_implicit_array_creation_expression] = STATE(3236), + [sym_implicit_object_creation_expression] = STATE(3236), + [sym_implicit_stackalloc_expression] = STATE(3236), + [sym_initializer_expression] = STATE(3236), + [sym_default_expression] = STATE(3236), + [sym_with_expression] = STATE(3236), + [sym_sizeof_expression] = STATE(3236), + [sym_typeof_expression] = STATE(3236), + [sym_makeref_expression] = STATE(3236), + [sym_ref_expression] = STATE(3236), + [sym_reftype_expression] = STATE(3236), + [sym_refvalue_expression] = STATE(3236), + [sym_stackalloc_expression] = STATE(3236), + [sym_range_expression] = STATE(3236), + [sym_tuple_expression] = STATE(2602), + [sym_literal] = STATE(3236), + [sym_character_literal] = STATE(3272), + [sym_string_literal] = STATE(3272), + [sym_raw_string_literal] = STATE(3272), + [sym_boolean_literal] = STATE(3272), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3236), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(170), [sym_preproc_endregion] = STATE(170), [sym_preproc_line] = STATE(170), @@ -63273,68 +63159,68 @@ 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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3396), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3379), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1153), - [anon_sym_LPAREN] = ACTIONS(1525), - [anon_sym_ref] = ACTIONS(1527), - [anon_sym_LBRACE] = ACTIONS(1159), - [anon_sym_delegate] = ACTIONS(1161), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1149), + [anon_sym_COLON] = ACTIONS(1147), + [anon_sym_LPAREN] = ACTIONS(1531), + [anon_sym_ref] = ACTIONS(1533), + [anon_sym_LBRACE] = ACTIONS(1155), + [anon_sym_delegate] = ACTIONS(1157), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1529), - [anon_sym_LT] = ACTIONS(1165), - [anon_sym_GT] = ACTIONS(1165), + [anon_sym_new] = ACTIONS(1535), + [anon_sym_LT] = ACTIONS(1161), + [anon_sym_GT] = ACTIONS(1161), [anon_sym_where] = ACTIONS(29), - [anon_sym_QMARK] = ACTIONS(1165), + [anon_sym_QMARK] = ACTIONS(1161), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1167), - [anon_sym_BANG] = ACTIONS(1531), - [anon_sym_TILDE] = ACTIONS(1533), - [anon_sym_PLUS_PLUS] = ACTIONS(1533), - [anon_sym_DASH_DASH] = ACTIONS(1533), - [anon_sym_true] = ACTIONS(1173), - [anon_sym_false] = ACTIONS(1173), - [anon_sym_PLUS] = ACTIONS(1531), - [anon_sym_DASH] = ACTIONS(1531), - [anon_sym_STAR] = ACTIONS(1535), - [anon_sym_SLASH] = ACTIONS(1165), - [anon_sym_PERCENT] = ACTIONS(1151), - [anon_sym_CARET] = ACTIONS(1533), - [anon_sym_PIPE] = ACTIONS(1165), - [anon_sym_AMP] = ACTIONS(1531), - [anon_sym_LT_LT] = ACTIONS(1151), - [anon_sym_GT_GT] = ACTIONS(1165), - [anon_sym_GT_GT_GT] = ACTIONS(1151), - [anon_sym_EQ_EQ] = ACTIONS(1151), - [anon_sym_BANG_EQ] = ACTIONS(1151), - [anon_sym_GT_EQ] = ACTIONS(1151), - [anon_sym_LT_EQ] = ACTIONS(1151), - [anon_sym_this] = ACTIONS(1177), - [anon_sym_DOT] = ACTIONS(1165), + [anon_sym_checked] = ACTIONS(1163), + [anon_sym_BANG] = ACTIONS(1537), + [anon_sym_TILDE] = ACTIONS(1539), + [anon_sym_PLUS_PLUS] = ACTIONS(1539), + [anon_sym_DASH_DASH] = ACTIONS(1539), + [anon_sym_true] = ACTIONS(1169), + [anon_sym_false] = ACTIONS(1169), + [anon_sym_PLUS] = ACTIONS(1537), + [anon_sym_DASH] = ACTIONS(1537), + [anon_sym_STAR] = ACTIONS(1541), + [anon_sym_SLASH] = ACTIONS(1161), + [anon_sym_PERCENT] = ACTIONS(1147), + [anon_sym_CARET] = ACTIONS(1539), + [anon_sym_PIPE] = ACTIONS(1161), + [anon_sym_AMP] = ACTIONS(1537), + [anon_sym_LT_LT] = ACTIONS(1147), + [anon_sym_GT_GT] = ACTIONS(1161), + [anon_sym_GT_GT_GT] = ACTIONS(1147), + [anon_sym_EQ_EQ] = ACTIONS(1147), + [anon_sym_BANG_EQ] = ACTIONS(1147), + [anon_sym_GT_EQ] = ACTIONS(1147), + [anon_sym_LT_EQ] = ACTIONS(1147), + [anon_sym_this] = ACTIONS(1173), + [anon_sym_DOT] = ACTIONS(1161), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1179), - [anon_sym_EQ_GT] = ACTIONS(1151), + [anon_sym_base] = ACTIONS(1175), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1181), - [anon_sym_unchecked] = ACTIONS(1167), + [sym_predefined_type] = ACTIONS(1177), + [anon_sym_unchecked] = ACTIONS(1163), [anon_sym_yield] = ACTIONS(29), - [anon_sym_switch] = ACTIONS(1165), - [anon_sym_default] = ACTIONS(1183), - [anon_sym_throw] = ACTIONS(1537), + [anon_sym_switch] = ACTIONS(1161), + [anon_sym_default] = ACTIONS(1179), + [anon_sym_throw] = ACTIONS(1543), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1539), - [anon_sym_DOT_DOT] = ACTIONS(1541), - [anon_sym_and] = ACTIONS(1165), - [anon_sym_or] = ACTIONS(1165), - [anon_sym_AMP_AMP] = ACTIONS(1151), - [anon_sym_PIPE_PIPE] = ACTIONS(1151), - [anon_sym_QMARK_QMARK] = ACTIONS(1151), + [anon_sym_await] = ACTIONS(1545), + [anon_sym_DOT_DOT] = ACTIONS(1547), + [anon_sym_and] = ACTIONS(1161), + [anon_sym_or] = ACTIONS(1161), + [anon_sym_AMP_AMP] = ACTIONS(1147), + [anon_sym_PIPE_PIPE] = ACTIONS(1147), + [anon_sym_QMARK_QMARK] = ACTIONS(1147), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -63347,23 +63233,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(1165), - [anon_sym_is] = ACTIONS(1165), - [anon_sym_DASH_GT] = ACTIONS(1151), - [anon_sym_stackalloc] = ACTIONS(1191), - [anon_sym_with] = ACTIONS(1165), - [anon_sym_sizeof] = ACTIONS(1193), - [anon_sym_typeof] = ACTIONS(1195), - [anon_sym___makeref] = ACTIONS(1197), - [anon_sym___reftype] = ACTIONS(1199), - [anon_sym___refvalue] = ACTIONS(1201), - [sym_null_literal] = ACTIONS(1203), - [anon_sym_SQUOTE] = ACTIONS(1205), - [sym_integer_literal] = ACTIONS(1203), - [sym_real_literal] = ACTIONS(1207), - [anon_sym_DQUOTE] = ACTIONS(1209), - [sym_verbatim_string_literal] = ACTIONS(1207), - [aux_sym_preproc_if_token1] = ACTIONS(1211), + [anon_sym_as] = ACTIONS(1161), + [anon_sym_is] = ACTIONS(1161), + [anon_sym_DASH_GT] = ACTIONS(1147), + [anon_sym_stackalloc] = ACTIONS(1187), + [anon_sym_with] = ACTIONS(1161), + [anon_sym_sizeof] = ACTIONS(1189), + [anon_sym_typeof] = ACTIONS(1191), + [anon_sym___makeref] = ACTIONS(1193), + [anon_sym___reftype] = ACTIONS(1195), + [anon_sym___refvalue] = ACTIONS(1197), + [sym_null_literal] = ACTIONS(1199), + [anon_sym_SQUOTE] = ACTIONS(1201), + [sym_integer_literal] = ACTIONS(1199), + [sym_real_literal] = ACTIONS(1203), + [anon_sym_DQUOTE] = ACTIONS(1205), + [sym_verbatim_string_literal] = ACTIONS(1203), + [aux_sym_preproc_if_token1] = ACTIONS(1207), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -63374,90 +63260,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1213), - [sym_interpolation_verbatim_start] = ACTIONS(1215), - [sym_interpolation_raw_start] = ACTIONS(1217), - [sym_raw_string_start] = ACTIONS(1219), + [sym_interpolation_regular_start] = ACTIONS(1209), + [sym_interpolation_verbatim_start] = ACTIONS(1211), + [sym_interpolation_raw_start] = ACTIONS(1213), + [sym_raw_string_start] = ACTIONS(1215), }, [171] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2762), - [sym__name] = STATE(5910), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2204), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(5010), - [sym_non_lvalue_expression] = STATE(3438), - [sym_lvalue_expression] = STATE(3535), - [sym__expression_statement_expression] = STATE(3362), - [sym_assignment_expression] = STATE(3449), - [sym_binary_expression] = STATE(3362), - [sym_postfix_unary_expression] = STATE(3449), - [sym_prefix_unary_expression] = STATE(3449), - [sym__pointer_indirection_expression] = STATE(2747), - [sym_query_expression] = STATE(3362), - [sym_from_clause] = STATE(6178), - [sym_conditional_expression] = STATE(3362), - [sym_conditional_access_expression] = STATE(3362), - [sym_as_expression] = STATE(3362), - [sym_is_expression] = STATE(3362), - [sym_is_pattern_expression] = STATE(3362), - [sym_cast_expression] = STATE(3362), - [sym_checked_expression] = STATE(3362), - [sym_invocation_expression] = STATE(3449), - [sym_switch_expression] = STATE(3362), - [sym_await_expression] = STATE(3449), - [sym_throw_expression] = STATE(3362), - [sym_element_access_expression] = STATE(2747), - [sym_interpolated_string_expression] = STATE(3362), - [sym_member_access_expression] = STATE(2747), - [sym_object_creation_expression] = STATE(3449), - [sym_parenthesized_expression] = STATE(3449), - [sym__parenthesized_lvalue_expression] = STATE(2747), - [sym_lambda_expression] = STATE(3362), - [sym__lambda_expression_init] = STATE(7384), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3362), - [sym_anonymous_method_expression] = STATE(3362), - [sym_anonymous_object_creation_expression] = STATE(3362), - [sym_implicit_array_creation_expression] = STATE(3362), - [sym_implicit_object_creation_expression] = STATE(3362), - [sym_implicit_stackalloc_expression] = STATE(3362), - [sym_initializer_expression] = STATE(3362), - [sym_default_expression] = STATE(3362), - [sym_with_expression] = STATE(3362), - [sym_sizeof_expression] = STATE(3362), - [sym_typeof_expression] = STATE(3362), - [sym_makeref_expression] = STATE(3362), - [sym_ref_expression] = STATE(3362), - [sym_reftype_expression] = STATE(3362), - [sym_refvalue_expression] = STATE(3362), - [sym_stackalloc_expression] = STATE(3362), - [sym_range_expression] = STATE(3362), - [sym_tuple_expression] = STATE(2747), - [sym_literal] = STATE(3362), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2267), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3362), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2603), + [sym__name] = STATE(5862), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2193), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(4757), + [sym_non_lvalue_expression] = STATE(3220), + [sym_lvalue_expression] = STATE(3403), + [sym__expression_statement_expression] = STATE(3236), + [sym_assignment_expression] = STATE(3221), + [sym_binary_expression] = STATE(3236), + [sym_postfix_unary_expression] = STATE(3221), + [sym_prefix_unary_expression] = STATE(3221), + [sym__pointer_indirection_expression] = STATE(2602), + [sym_query_expression] = STATE(3236), + [sym_from_clause] = STATE(6145), + [sym_conditional_expression] = STATE(3236), + [sym_conditional_access_expression] = STATE(3236), + [sym_as_expression] = STATE(3236), + [sym_is_expression] = STATE(3236), + [sym_is_pattern_expression] = STATE(3236), + [sym_cast_expression] = STATE(3236), + [sym_checked_expression] = STATE(3236), + [sym_invocation_expression] = STATE(3221), + [sym_switch_expression] = STATE(3236), + [sym_await_expression] = STATE(3221), + [sym_throw_expression] = STATE(3236), + [sym_element_access_expression] = STATE(2602), + [sym_interpolated_string_expression] = STATE(3236), + [sym_member_access_expression] = STATE(2602), + [sym_object_creation_expression] = STATE(3221), + [sym_parenthesized_expression] = STATE(3221), + [sym__parenthesized_lvalue_expression] = STATE(2602), + [sym_lambda_expression] = STATE(3236), + [sym__lambda_expression_init] = STATE(7639), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3236), + [sym_anonymous_method_expression] = STATE(3236), + [sym_anonymous_object_creation_expression] = STATE(3236), + [sym_implicit_array_creation_expression] = STATE(3236), + [sym_implicit_object_creation_expression] = STATE(3236), + [sym_implicit_stackalloc_expression] = STATE(3236), + [sym_initializer_expression] = STATE(3236), + [sym_default_expression] = STATE(3236), + [sym_with_expression] = STATE(3236), + [sym_sizeof_expression] = STATE(3236), + [sym_typeof_expression] = STATE(3236), + [sym_makeref_expression] = STATE(3236), + [sym_ref_expression] = STATE(3236), + [sym_reftype_expression] = STATE(3236), + [sym_refvalue_expression] = STATE(3236), + [sym_stackalloc_expression] = STATE(3236), + [sym_range_expression] = STATE(3236), + [sym_tuple_expression] = STATE(2602), + [sym_literal] = STATE(3236), + [sym_character_literal] = STATE(3272), + [sym_string_literal] = STATE(3272), + [sym_raw_string_literal] = STATE(3272), + [sym_boolean_literal] = STATE(3272), + [sym_identifier] = STATE(2261), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3236), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(171), [sym_preproc_endregion] = STATE(171), [sym_preproc_line] = STATE(171), @@ -63467,68 +63353,68 @@ 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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3385), - [sym__identifier_token] = ACTIONS(25), - [anon_sym_alias] = ACTIONS(29), - [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1307), - [anon_sym_LPAREN] = ACTIONS(1543), - [anon_sym_ref] = ACTIONS(1545), - [anon_sym_LBRACE] = ACTIONS(1313), - [anon_sym_delegate] = ACTIONS(1315), - [anon_sym_async] = ACTIONS(1047), - [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1317), - [anon_sym_LT] = ACTIONS(1165), - [anon_sym_GT] = ACTIONS(1165), - [anon_sym_where] = ACTIONS(29), - [anon_sym_QMARK] = ACTIONS(1165), - [anon_sym_notnull] = ACTIONS(29), - [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1319), - [anon_sym_BANG] = ACTIONS(1547), - [anon_sym_TILDE] = ACTIONS(1549), - [anon_sym_PLUS_PLUS] = ACTIONS(1549), - [anon_sym_DASH_DASH] = ACTIONS(1549), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1547), - [anon_sym_DASH] = ACTIONS(1547), - [anon_sym_STAR] = ACTIONS(1551), - [anon_sym_SLASH] = ACTIONS(1165), - [anon_sym_PERCENT] = ACTIONS(1151), - [anon_sym_CARET] = ACTIONS(1549), - [anon_sym_PIPE] = ACTIONS(1165), - [anon_sym_AMP] = ACTIONS(1547), - [anon_sym_LT_LT] = ACTIONS(1151), - [anon_sym_GT_GT] = ACTIONS(1165), - [anon_sym_GT_GT_GT] = ACTIONS(1151), - [anon_sym_EQ_EQ] = ACTIONS(1151), - [anon_sym_BANG_EQ] = ACTIONS(1151), - [anon_sym_GT_EQ] = ACTIONS(1151), - [anon_sym_LT_EQ] = ACTIONS(1151), - [anon_sym_this] = ACTIONS(1323), - [anon_sym_DOT] = ACTIONS(1165), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1325), - [anon_sym_EQ_GT] = ACTIONS(1151), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1319), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3379), + [sym__identifier_token] = ACTIONS(25), + [anon_sym_alias] = ACTIONS(29), + [anon_sym_global] = ACTIONS(29), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1149), + [anon_sym_LPAREN] = ACTIONS(1549), + [anon_sym_ref] = ACTIONS(1551), + [anon_sym_LBRACE] = ACTIONS(1155), + [anon_sym_delegate] = ACTIONS(1157), + [anon_sym_async] = ACTIONS(1045), + [anon_sym_file] = ACTIONS(29), + [anon_sym_new] = ACTIONS(1159), + [anon_sym_LT] = ACTIONS(1221), + [anon_sym_GT] = ACTIONS(1221), + [anon_sym_where] = ACTIONS(29), + [anon_sym_QMARK] = ACTIONS(1221), + [anon_sym_notnull] = ACTIONS(29), + [anon_sym_unmanaged] = ACTIONS(29), + [anon_sym_checked] = ACTIONS(1163), + [anon_sym_BANG] = ACTIONS(1553), + [anon_sym_TILDE] = ACTIONS(1555), + [anon_sym_PLUS_PLUS] = ACTIONS(1555), + [anon_sym_DASH_DASH] = ACTIONS(1555), + [anon_sym_true] = ACTIONS(1169), + [anon_sym_false] = ACTIONS(1169), + [anon_sym_PLUS] = ACTIONS(1553), + [anon_sym_DASH] = ACTIONS(1553), + [anon_sym_STAR] = ACTIONS(1557), + [anon_sym_SLASH] = ACTIONS(1221), + [anon_sym_PERCENT] = ACTIONS(1219), + [anon_sym_CARET] = ACTIONS(1555), + [anon_sym_PIPE] = ACTIONS(1221), + [anon_sym_AMP] = ACTIONS(1553), + [anon_sym_LT_LT] = ACTIONS(1219), + [anon_sym_GT_GT] = ACTIONS(1221), + [anon_sym_GT_GT_GT] = ACTIONS(1219), + [anon_sym_EQ_EQ] = ACTIONS(1219), + [anon_sym_BANG_EQ] = ACTIONS(1219), + [anon_sym_GT_EQ] = ACTIONS(1219), + [anon_sym_LT_EQ] = ACTIONS(1219), + [anon_sym_this] = ACTIONS(1173), + [anon_sym_DOT] = ACTIONS(1221), + [anon_sym_scoped] = ACTIONS(85), + [anon_sym_base] = ACTIONS(1175), + [anon_sym_EQ_GT] = ACTIONS(1219), + [anon_sym_var] = ACTIONS(89), + [sym_predefined_type] = ACTIONS(1177), + [anon_sym_unchecked] = ACTIONS(1163), [anon_sym_yield] = ACTIONS(29), - [anon_sym_switch] = ACTIONS(1165), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1553), + [anon_sym_switch] = ACTIONS(1221), + [anon_sym_default] = ACTIONS(1179), + [anon_sym_throw] = ACTIONS(1559), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1555), - [anon_sym_DOT_DOT] = ACTIONS(1557), - [anon_sym_and] = ACTIONS(1165), - [anon_sym_or] = ACTIONS(1165), - [anon_sym_AMP_AMP] = ACTIONS(1151), - [anon_sym_PIPE_PIPE] = ACTIONS(1151), - [anon_sym_QMARK_QMARK] = ACTIONS(1151), + [anon_sym_await] = ACTIONS(1561), + [anon_sym_DOT_DOT] = ACTIONS(1563), + [anon_sym_and] = ACTIONS(1221), + [anon_sym_or] = ACTIONS(1221), + [anon_sym_AMP_AMP] = ACTIONS(1219), + [anon_sym_PIPE_PIPE] = ACTIONS(1219), + [anon_sym_QMARK_QMARK] = ACTIONS(1219), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -63541,23 +63427,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(1165), - [anon_sym_is] = ACTIONS(1165), - [anon_sym_DASH_GT] = ACTIONS(1151), - [anon_sym_stackalloc] = ACTIONS(1333), - [anon_sym_with] = ACTIONS(1165), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(1335), - [anon_sym___reftype] = ACTIONS(1337), - [anon_sym___refvalue] = ACTIONS(1339), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1341), + [anon_sym_as] = ACTIONS(1221), + [anon_sym_is] = ACTIONS(1221), + [anon_sym_DASH_GT] = ACTIONS(1219), + [anon_sym_stackalloc] = ACTIONS(1187), + [anon_sym_with] = ACTIONS(1221), + [anon_sym_sizeof] = ACTIONS(1189), + [anon_sym_typeof] = ACTIONS(1191), + [anon_sym___makeref] = ACTIONS(1193), + [anon_sym___reftype] = ACTIONS(1195), + [anon_sym___refvalue] = ACTIONS(1197), + [sym_null_literal] = ACTIONS(1199), + [anon_sym_SQUOTE] = ACTIONS(1201), + [sym_integer_literal] = ACTIONS(1199), + [sym_real_literal] = ACTIONS(1203), + [anon_sym_DQUOTE] = ACTIONS(1205), + [sym_verbatim_string_literal] = ACTIONS(1203), + [aux_sym_preproc_if_token1] = ACTIONS(1207), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -63568,90 +63454,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(151), - [sym_interpolation_verbatim_start] = ACTIONS(153), - [sym_interpolation_raw_start] = ACTIONS(155), - [sym_raw_string_start] = ACTIONS(157), + [sym_interpolation_regular_start] = ACTIONS(1209), + [sym_interpolation_verbatim_start] = ACTIONS(1211), + [sym_interpolation_raw_start] = ACTIONS(1213), + [sym_raw_string_start] = ACTIONS(1215), }, [172] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2762), - [sym__name] = STATE(5910), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2204), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(4891), - [sym_non_lvalue_expression] = STATE(3438), - [sym_lvalue_expression] = STATE(3535), - [sym__expression_statement_expression] = STATE(3362), - [sym_assignment_expression] = STATE(3449), - [sym_binary_expression] = STATE(3362), - [sym_postfix_unary_expression] = STATE(3449), - [sym_prefix_unary_expression] = STATE(3449), - [sym__pointer_indirection_expression] = STATE(2747), - [sym_query_expression] = STATE(3362), - [sym_from_clause] = STATE(6178), - [sym_conditional_expression] = STATE(3362), - [sym_conditional_access_expression] = STATE(3362), - [sym_as_expression] = STATE(3362), - [sym_is_expression] = STATE(3362), - [sym_is_pattern_expression] = STATE(3362), - [sym_cast_expression] = STATE(3362), - [sym_checked_expression] = STATE(3362), - [sym_invocation_expression] = STATE(3449), - [sym_switch_expression] = STATE(3362), - [sym_await_expression] = STATE(3449), - [sym_throw_expression] = STATE(3362), - [sym_element_access_expression] = STATE(2747), - [sym_interpolated_string_expression] = STATE(3362), - [sym_member_access_expression] = STATE(2747), - [sym_object_creation_expression] = STATE(3449), - [sym_parenthesized_expression] = STATE(3449), - [sym__parenthesized_lvalue_expression] = STATE(2747), - [sym_lambda_expression] = STATE(3362), - [sym__lambda_expression_init] = STATE(7384), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3362), - [sym_anonymous_method_expression] = STATE(3362), - [sym_anonymous_object_creation_expression] = STATE(3362), - [sym_implicit_array_creation_expression] = STATE(3362), - [sym_implicit_object_creation_expression] = STATE(3362), - [sym_implicit_stackalloc_expression] = STATE(3362), - [sym_initializer_expression] = STATE(3362), - [sym_default_expression] = STATE(3362), - [sym_with_expression] = STATE(3362), - [sym_sizeof_expression] = STATE(3362), - [sym_typeof_expression] = STATE(3362), - [sym_makeref_expression] = STATE(3362), - [sym_ref_expression] = STATE(3362), - [sym_reftype_expression] = STATE(3362), - [sym_refvalue_expression] = STATE(3362), - [sym_stackalloc_expression] = STATE(3362), - [sym_range_expression] = STATE(3362), - [sym_tuple_expression] = STATE(2747), - [sym_literal] = STATE(3362), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2267), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3362), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2603), + [sym__name] = STATE(5862), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2193), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(4579), + [sym_non_lvalue_expression] = STATE(3220), + [sym_lvalue_expression] = STATE(3403), + [sym__expression_statement_expression] = STATE(3236), + [sym_assignment_expression] = STATE(3221), + [sym_binary_expression] = STATE(3236), + [sym_postfix_unary_expression] = STATE(3221), + [sym_prefix_unary_expression] = STATE(3221), + [sym__pointer_indirection_expression] = STATE(2602), + [sym_query_expression] = STATE(3236), + [sym_from_clause] = STATE(6145), + [sym_conditional_expression] = STATE(3236), + [sym_conditional_access_expression] = STATE(3236), + [sym_as_expression] = STATE(3236), + [sym_is_expression] = STATE(3236), + [sym_is_pattern_expression] = STATE(3236), + [sym_cast_expression] = STATE(3236), + [sym_checked_expression] = STATE(3236), + [sym_invocation_expression] = STATE(3221), + [sym_switch_expression] = STATE(3236), + [sym_await_expression] = STATE(3221), + [sym_throw_expression] = STATE(3236), + [sym_element_access_expression] = STATE(2602), + [sym_interpolated_string_expression] = STATE(3236), + [sym_member_access_expression] = STATE(2602), + [sym_object_creation_expression] = STATE(3221), + [sym_parenthesized_expression] = STATE(3221), + [sym__parenthesized_lvalue_expression] = STATE(2602), + [sym_lambda_expression] = STATE(3236), + [sym__lambda_expression_init] = STATE(7639), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3236), + [sym_anonymous_method_expression] = STATE(3236), + [sym_anonymous_object_creation_expression] = STATE(3236), + [sym_implicit_array_creation_expression] = STATE(3236), + [sym_implicit_object_creation_expression] = STATE(3236), + [sym_implicit_stackalloc_expression] = STATE(3236), + [sym_initializer_expression] = STATE(3236), + [sym_default_expression] = STATE(3236), + [sym_with_expression] = STATE(3236), + [sym_sizeof_expression] = STATE(3236), + [sym_typeof_expression] = STATE(3236), + [sym_makeref_expression] = STATE(3236), + [sym_ref_expression] = STATE(3236), + [sym_reftype_expression] = STATE(3236), + [sym_refvalue_expression] = STATE(3236), + [sym_stackalloc_expression] = STATE(3236), + [sym_range_expression] = STATE(3236), + [sym_tuple_expression] = STATE(2602), + [sym_literal] = STATE(3236), + [sym_character_literal] = STATE(3272), + [sym_string_literal] = STATE(3272), + [sym_raw_string_literal] = STATE(3272), + [sym_boolean_literal] = STATE(3272), + [sym_identifier] = STATE(2261), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3236), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(172), [sym_preproc_endregion] = STATE(172), [sym_preproc_line] = STATE(172), @@ -63661,68 +63547,68 @@ 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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3385), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3379), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1307), - [anon_sym_LPAREN] = ACTIONS(1543), - [anon_sym_ref] = ACTIONS(1545), - [anon_sym_LBRACE] = ACTIONS(1313), - [anon_sym_delegate] = ACTIONS(1315), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1149), + [anon_sym_LPAREN] = ACTIONS(1549), + [anon_sym_ref] = ACTIONS(1551), + [anon_sym_LBRACE] = ACTIONS(1155), + [anon_sym_delegate] = ACTIONS(1157), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1317), - [anon_sym_LT] = ACTIONS(1223), - [anon_sym_GT] = ACTIONS(1223), + [anon_sym_new] = ACTIONS(1159), + [anon_sym_LT] = ACTIONS(1161), + [anon_sym_GT] = ACTIONS(1161), [anon_sym_where] = ACTIONS(29), - [anon_sym_QMARK] = ACTIONS(1223), + [anon_sym_QMARK] = ACTIONS(1161), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1319), - [anon_sym_BANG] = ACTIONS(1547), - [anon_sym_TILDE] = ACTIONS(1549), - [anon_sym_PLUS_PLUS] = ACTIONS(1549), - [anon_sym_DASH_DASH] = ACTIONS(1549), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1547), - [anon_sym_DASH] = ACTIONS(1547), - [anon_sym_STAR] = ACTIONS(1551), - [anon_sym_SLASH] = ACTIONS(1223), - [anon_sym_PERCENT] = ACTIONS(1221), - [anon_sym_CARET] = ACTIONS(1549), - [anon_sym_PIPE] = ACTIONS(1223), - [anon_sym_AMP] = ACTIONS(1547), - [anon_sym_LT_LT] = ACTIONS(1221), - [anon_sym_GT_GT] = ACTIONS(1223), - [anon_sym_GT_GT_GT] = ACTIONS(1221), - [anon_sym_EQ_EQ] = ACTIONS(1221), - [anon_sym_BANG_EQ] = ACTIONS(1221), - [anon_sym_GT_EQ] = ACTIONS(1221), - [anon_sym_LT_EQ] = ACTIONS(1221), - [anon_sym_this] = ACTIONS(1323), - [anon_sym_DOT] = ACTIONS(1223), + [anon_sym_checked] = ACTIONS(1163), + [anon_sym_BANG] = ACTIONS(1553), + [anon_sym_TILDE] = ACTIONS(1555), + [anon_sym_PLUS_PLUS] = ACTIONS(1555), + [anon_sym_DASH_DASH] = ACTIONS(1555), + [anon_sym_true] = ACTIONS(1169), + [anon_sym_false] = ACTIONS(1169), + [anon_sym_PLUS] = ACTIONS(1553), + [anon_sym_DASH] = ACTIONS(1553), + [anon_sym_STAR] = ACTIONS(1557), + [anon_sym_SLASH] = ACTIONS(1161), + [anon_sym_PERCENT] = ACTIONS(1147), + [anon_sym_CARET] = ACTIONS(1555), + [anon_sym_PIPE] = ACTIONS(1161), + [anon_sym_AMP] = ACTIONS(1553), + [anon_sym_LT_LT] = ACTIONS(1147), + [anon_sym_GT_GT] = ACTIONS(1161), + [anon_sym_GT_GT_GT] = ACTIONS(1147), + [anon_sym_EQ_EQ] = ACTIONS(1147), + [anon_sym_BANG_EQ] = ACTIONS(1147), + [anon_sym_GT_EQ] = ACTIONS(1147), + [anon_sym_LT_EQ] = ACTIONS(1147), + [anon_sym_this] = ACTIONS(1173), + [anon_sym_DOT] = ACTIONS(1161), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1325), - [anon_sym_EQ_GT] = ACTIONS(1221), + [anon_sym_base] = ACTIONS(1175), + [anon_sym_EQ_GT] = ACTIONS(1147), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1319), + [sym_predefined_type] = ACTIONS(1177), + [anon_sym_unchecked] = ACTIONS(1163), [anon_sym_yield] = ACTIONS(29), - [anon_sym_switch] = ACTIONS(1223), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1553), + [anon_sym_switch] = ACTIONS(1161), + [anon_sym_default] = ACTIONS(1179), + [anon_sym_throw] = ACTIONS(1559), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1555), - [anon_sym_DOT_DOT] = ACTIONS(1557), - [anon_sym_and] = ACTIONS(1223), - [anon_sym_or] = ACTIONS(1223), - [anon_sym_AMP_AMP] = ACTIONS(1221), - [anon_sym_PIPE_PIPE] = ACTIONS(1221), - [anon_sym_QMARK_QMARK] = ACTIONS(1221), + [anon_sym_await] = ACTIONS(1561), + [anon_sym_DOT_DOT] = ACTIONS(1563), + [anon_sym_and] = ACTIONS(1161), + [anon_sym_or] = ACTIONS(1161), + [anon_sym_AMP_AMP] = ACTIONS(1147), + [anon_sym_PIPE_PIPE] = ACTIONS(1147), + [anon_sym_QMARK_QMARK] = ACTIONS(1147), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -63735,23 +63621,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(1223), - [anon_sym_is] = ACTIONS(1223), - [anon_sym_DASH_GT] = ACTIONS(1221), - [anon_sym_stackalloc] = ACTIONS(1333), - [anon_sym_with] = ACTIONS(1223), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(1335), - [anon_sym___reftype] = ACTIONS(1337), - [anon_sym___refvalue] = ACTIONS(1339), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1341), + [anon_sym_as] = ACTIONS(1161), + [anon_sym_is] = ACTIONS(1161), + [anon_sym_DASH_GT] = ACTIONS(1147), + [anon_sym_stackalloc] = ACTIONS(1187), + [anon_sym_with] = ACTIONS(1161), + [anon_sym_sizeof] = ACTIONS(1189), + [anon_sym_typeof] = ACTIONS(1191), + [anon_sym___makeref] = ACTIONS(1193), + [anon_sym___reftype] = ACTIONS(1195), + [anon_sym___refvalue] = ACTIONS(1197), + [sym_null_literal] = ACTIONS(1199), + [anon_sym_SQUOTE] = ACTIONS(1201), + [sym_integer_literal] = ACTIONS(1199), + [sym_real_literal] = ACTIONS(1203), + [anon_sym_DQUOTE] = ACTIONS(1205), + [sym_verbatim_string_literal] = ACTIONS(1203), + [aux_sym_preproc_if_token1] = ACTIONS(1207), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -63762,90 +63648,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(151), - [sym_interpolation_verbatim_start] = ACTIONS(153), - [sym_interpolation_raw_start] = ACTIONS(155), - [sym_raw_string_start] = ACTIONS(157), + [sym_interpolation_regular_start] = ACTIONS(1209), + [sym_interpolation_verbatim_start] = ACTIONS(1211), + [sym_interpolation_raw_start] = ACTIONS(1213), + [sym_raw_string_start] = ACTIONS(1215), }, [173] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2610), - [sym__name] = STATE(5871), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2319), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(4470), - [sym_non_lvalue_expression] = STATE(3277), - [sym_lvalue_expression] = STATE(3280), - [sym__expression_statement_expression] = STATE(3228), - [sym_assignment_expression] = STATE(3289), - [sym_binary_expression] = STATE(3228), - [sym_postfix_unary_expression] = STATE(3289), - [sym_prefix_unary_expression] = STATE(3289), - [sym__pointer_indirection_expression] = STATE(2609), - [sym_query_expression] = STATE(3228), - [sym_from_clause] = STATE(6177), - [sym_conditional_expression] = STATE(3228), - [sym_conditional_access_expression] = STATE(3228), - [sym_as_expression] = STATE(3228), - [sym_is_expression] = STATE(3228), - [sym_is_pattern_expression] = STATE(3228), - [sym_cast_expression] = STATE(3228), - [sym_checked_expression] = STATE(3228), - [sym_invocation_expression] = STATE(3289), - [sym_switch_expression] = STATE(3228), - [sym_await_expression] = STATE(3289), - [sym_throw_expression] = STATE(3228), - [sym_element_access_expression] = STATE(2609), - [sym_interpolated_string_expression] = STATE(3228), - [sym_member_access_expression] = STATE(2609), - [sym_object_creation_expression] = STATE(3289), - [sym_parenthesized_expression] = STATE(3289), - [sym__parenthesized_lvalue_expression] = STATE(2609), - [sym_lambda_expression] = STATE(3228), - [sym__lambda_expression_init] = STATE(7636), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3228), - [sym_anonymous_method_expression] = STATE(3228), - [sym_anonymous_object_creation_expression] = STATE(3228), - [sym_implicit_array_creation_expression] = STATE(3228), - [sym_implicit_object_creation_expression] = STATE(3228), - [sym_implicit_stackalloc_expression] = STATE(3228), - [sym_initializer_expression] = STATE(3228), - [sym_default_expression] = STATE(3228), - [sym_with_expression] = STATE(3228), - [sym_sizeof_expression] = STATE(3228), - [sym_typeof_expression] = STATE(3228), - [sym_makeref_expression] = STATE(3228), - [sym_ref_expression] = STATE(3228), - [sym_reftype_expression] = STATE(3228), - [sym_refvalue_expression] = STATE(3228), - [sym_stackalloc_expression] = STATE(3228), - [sym_range_expression] = STATE(3228), - [sym_tuple_expression] = STATE(2609), - [sym_literal] = STATE(3228), - [sym_character_literal] = STATE(3278), - [sym_string_literal] = STATE(3278), - [sym_raw_string_literal] = STATE(3278), - [sym_boolean_literal] = STATE(3278), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3228), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(5152), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2196), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(4922), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3510), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3102), + [sym_postfix_unary_expression] = STATE(3079), + [sym_prefix_unary_expression] = STATE(3079), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6134), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3102), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3079), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3102), + [sym_member_access_expression] = STATE(2472), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3079), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7425), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(3102), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3102), + [sym_typeof_expression] = STATE(3102), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2472), + [sym_literal] = STATE(3102), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(173), [sym_preproc_endregion] = STATE(173), [sym_preproc_line] = STATE(173), @@ -63855,68 +63741,65 @@ 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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3396), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1153), - [anon_sym_COLON] = ACTIONS(1151), - [anon_sym_LPAREN] = ACTIONS(1559), - [anon_sym_ref] = ACTIONS(1561), - [anon_sym_LBRACE] = ACTIONS(1159), - [anon_sym_delegate] = ACTIONS(1161), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1479), + [anon_sym_LPAREN] = ACTIONS(43), + [anon_sym_ref] = ACTIONS(715), + [anon_sym_LBRACE] = ACTIONS(1481), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1529), - [anon_sym_LT] = ACTIONS(1165), - [anon_sym_GT] = ACTIONS(1165), + [anon_sym_new] = ACTIONS(1059), + [anon_sym_LT] = ACTIONS(1161), + [anon_sym_GT] = ACTIONS(1161), [anon_sym_where] = ACTIONS(29), - [anon_sym_QMARK] = ACTIONS(1165), + [anon_sym_QMARK] = ACTIONS(1161), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1167), - [anon_sym_BANG] = ACTIONS(1563), - [anon_sym_TILDE] = ACTIONS(1565), - [anon_sym_PLUS_PLUS] = ACTIONS(1565), - [anon_sym_DASH_DASH] = ACTIONS(1565), - [anon_sym_true] = ACTIONS(1173), - [anon_sym_false] = ACTIONS(1173), - [anon_sym_PLUS] = ACTIONS(1563), - [anon_sym_DASH] = ACTIONS(1563), - [anon_sym_STAR] = ACTIONS(1567), - [anon_sym_SLASH] = ACTIONS(1165), - [anon_sym_PERCENT] = ACTIONS(1151), - [anon_sym_CARET] = ACTIONS(1565), - [anon_sym_PIPE] = ACTIONS(1165), - [anon_sym_AMP] = ACTIONS(1563), - [anon_sym_LT_LT] = ACTIONS(1151), - [anon_sym_GT_GT] = ACTIONS(1165), - [anon_sym_GT_GT_GT] = ACTIONS(1151), - [anon_sym_EQ_EQ] = ACTIONS(1151), - [anon_sym_BANG_EQ] = ACTIONS(1151), - [anon_sym_GT_EQ] = ACTIONS(1151), - [anon_sym_LT_EQ] = ACTIONS(1151), - [anon_sym_this] = ACTIONS(1177), - [anon_sym_DOT] = ACTIONS(1165), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(1523), + [anon_sym_TILDE] = ACTIONS(1525), + [anon_sym_PLUS_PLUS] = ACTIONS(1525), + [anon_sym_DASH_DASH] = ACTIONS(1525), + [anon_sym_true] = ACTIONS(77), + [anon_sym_false] = ACTIONS(77), + [anon_sym_PLUS] = ACTIONS(1523), + [anon_sym_DASH] = ACTIONS(1523), + [anon_sym_STAR] = ACTIONS(81), + [anon_sym_SLASH] = ACTIONS(1161), + [anon_sym_PERCENT] = ACTIONS(1147), + [anon_sym_CARET] = ACTIONS(1525), + [anon_sym_PIPE] = ACTIONS(1161), + [anon_sym_AMP] = ACTIONS(1523), + [anon_sym_LT_LT] = ACTIONS(1147), + [anon_sym_GT_GT] = ACTIONS(1161), + [anon_sym_GT_GT_GT] = ACTIONS(1147), + [anon_sym_EQ_EQ] = ACTIONS(1147), + [anon_sym_BANG_EQ] = ACTIONS(1147), + [anon_sym_GT_EQ] = ACTIONS(1147), + [anon_sym_LT_EQ] = ACTIONS(1147), + [anon_sym_this] = ACTIONS(83), + [anon_sym_DOT] = ACTIONS(1161), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1179), + [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1181), - [anon_sym_unchecked] = ACTIONS(1167), + [sym_predefined_type] = ACTIONS(91), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), - [anon_sym_switch] = ACTIONS(1165), - [anon_sym_default] = ACTIONS(1183), - [anon_sym_throw] = ACTIONS(1569), + [anon_sym_switch] = ACTIONS(1161), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(1527), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1571), - [anon_sym_DOT_DOT] = ACTIONS(1573), - [anon_sym_and] = ACTIONS(1165), - [anon_sym_or] = ACTIONS(1165), - [anon_sym_AMP_AMP] = ACTIONS(1151), - [anon_sym_PIPE_PIPE] = ACTIONS(1151), - [anon_sym_QMARK_QMARK] = ACTIONS(1151), + [anon_sym_await] = ACTIONS(1529), + [anon_sym_DOT_DOT] = ACTIONS(123), + [anon_sym_AMP_AMP] = ACTIONS(1147), + [anon_sym_PIPE_PIPE] = ACTIONS(1147), + [anon_sym_QMARK_QMARK] = ACTIONS(1147), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -63929,23 +63812,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(1165), - [anon_sym_is] = ACTIONS(1165), - [anon_sym_DASH_GT] = ACTIONS(1151), - [anon_sym_stackalloc] = ACTIONS(1191), - [anon_sym_with] = ACTIONS(1165), - [anon_sym_sizeof] = ACTIONS(1193), - [anon_sym_typeof] = ACTIONS(1195), - [anon_sym___makeref] = ACTIONS(1197), - [anon_sym___reftype] = ACTIONS(1199), - [anon_sym___refvalue] = ACTIONS(1201), - [sym_null_literal] = ACTIONS(1203), - [anon_sym_SQUOTE] = ACTIONS(1205), - [sym_integer_literal] = ACTIONS(1203), - [sym_real_literal] = ACTIONS(1207), - [anon_sym_DQUOTE] = ACTIONS(1209), - [sym_verbatim_string_literal] = ACTIONS(1207), - [aux_sym_preproc_if_token1] = ACTIONS(1211), + [anon_sym_as] = ACTIONS(1161), + [anon_sym_is] = ACTIONS(1161), + [anon_sym_DASH_GT] = ACTIONS(1147), + [anon_sym_stackalloc] = ACTIONS(127), + [anon_sym_with] = ACTIONS(1161), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_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(1147), + [aux_sym_preproc_else_token1] = ACTIONS(1147), + [aux_sym_preproc_elif_token1] = ACTIONS(1147), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -63956,90 +63842,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1213), - [sym_interpolation_verbatim_start] = ACTIONS(1215), - [sym_interpolation_raw_start] = ACTIONS(1217), - [sym_raw_string_start] = ACTIONS(1219), + [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(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2610), - [sym__name] = STATE(5871), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2319), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(4405), - [sym_non_lvalue_expression] = STATE(3277), - [sym_lvalue_expression] = STATE(3280), - [sym__expression_statement_expression] = STATE(3228), - [sym_assignment_expression] = STATE(3289), - [sym_binary_expression] = STATE(3228), - [sym_postfix_unary_expression] = STATE(3289), - [sym_prefix_unary_expression] = STATE(3289), - [sym__pointer_indirection_expression] = STATE(2609), - [sym_query_expression] = STATE(3228), - [sym_from_clause] = STATE(6177), - [sym_conditional_expression] = STATE(3228), - [sym_conditional_access_expression] = STATE(3228), - [sym_as_expression] = STATE(3228), - [sym_is_expression] = STATE(3228), - [sym_is_pattern_expression] = STATE(3228), - [sym_cast_expression] = STATE(3228), - [sym_checked_expression] = STATE(3228), - [sym_invocation_expression] = STATE(3289), - [sym_switch_expression] = STATE(3228), - [sym_await_expression] = STATE(3289), - [sym_throw_expression] = STATE(3228), - [sym_element_access_expression] = STATE(2609), - [sym_interpolated_string_expression] = STATE(3228), - [sym_member_access_expression] = STATE(2609), - [sym_object_creation_expression] = STATE(3289), - [sym_parenthesized_expression] = STATE(3289), - [sym__parenthesized_lvalue_expression] = STATE(2609), - [sym_lambda_expression] = STATE(3228), - [sym__lambda_expression_init] = STATE(7636), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3228), - [sym_anonymous_method_expression] = STATE(3228), - [sym_anonymous_object_creation_expression] = STATE(3228), - [sym_implicit_array_creation_expression] = STATE(3228), - [sym_implicit_object_creation_expression] = STATE(3228), - [sym_implicit_stackalloc_expression] = STATE(3228), - [sym_initializer_expression] = STATE(3228), - [sym_default_expression] = STATE(3228), - [sym_with_expression] = STATE(3228), - [sym_sizeof_expression] = STATE(3228), - [sym_typeof_expression] = STATE(3228), - [sym_makeref_expression] = STATE(3228), - [sym_ref_expression] = STATE(3228), - [sym_reftype_expression] = STATE(3228), - [sym_refvalue_expression] = STATE(3228), - [sym_stackalloc_expression] = STATE(3228), - [sym_range_expression] = STATE(3228), - [sym_tuple_expression] = STATE(2609), - [sym_literal] = STATE(3228), - [sym_character_literal] = STATE(3278), - [sym_string_literal] = STATE(3278), - [sym_raw_string_literal] = STATE(3278), - [sym_boolean_literal] = STATE(3278), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3228), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(3182), + [sym__name] = STATE(5888), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2286), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2262), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(4645), + [sym_non_lvalue_expression] = STATE(4580), + [sym_lvalue_expression] = STATE(3373), + [sym__expression_statement_expression] = STATE(4573), + [sym_assignment_expression] = STATE(4581), + [sym_binary_expression] = STATE(4573), + [sym_postfix_unary_expression] = STATE(4581), + [sym_prefix_unary_expression] = STATE(4581), + [sym__pointer_indirection_expression] = STATE(3144), + [sym_query_expression] = STATE(4573), + [sym_from_clause] = STATE(6133), + [sym_conditional_expression] = STATE(4573), + [sym_conditional_access_expression] = STATE(4573), + [sym_as_expression] = STATE(4573), + [sym_is_expression] = STATE(4573), + [sym_is_pattern_expression] = STATE(4573), + [sym_cast_expression] = STATE(4573), + [sym_checked_expression] = STATE(4573), + [sym_invocation_expression] = STATE(4581), + [sym_switch_expression] = STATE(4573), + [sym_await_expression] = STATE(4581), + [sym_throw_expression] = STATE(4573), + [sym_element_access_expression] = STATE(3144), + [sym_interpolated_string_expression] = STATE(4573), + [sym_member_access_expression] = STATE(3144), + [sym_object_creation_expression] = STATE(4581), + [sym_parenthesized_expression] = STATE(4581), + [sym__parenthesized_lvalue_expression] = STATE(3144), + [sym_lambda_expression] = STATE(4573), + [sym__lambda_expression_init] = STATE(7614), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(4573), + [sym_anonymous_method_expression] = STATE(4573), + [sym_anonymous_object_creation_expression] = STATE(4573), + [sym_implicit_array_creation_expression] = STATE(4573), + [sym_implicit_object_creation_expression] = STATE(4573), + [sym_implicit_stackalloc_expression] = STATE(4573), + [sym_initializer_expression] = STATE(4573), + [sym_default_expression] = STATE(4573), + [sym_with_expression] = STATE(4573), + [sym_sizeof_expression] = STATE(4573), + [sym_typeof_expression] = STATE(4573), + [sym_makeref_expression] = STATE(4573), + [sym_ref_expression] = STATE(4573), + [sym_reftype_expression] = STATE(4573), + [sym_refvalue_expression] = STATE(4573), + [sym_stackalloc_expression] = STATE(4573), + [sym_range_expression] = STATE(4573), + [sym_tuple_expression] = STATE(3144), + [sym_literal] = STATE(4573), + [sym_character_literal] = STATE(4575), + [sym_string_literal] = STATE(4575), + [sym_raw_string_literal] = STATE(4575), + [sym_boolean_literal] = STATE(4575), + [sym_identifier] = STATE(2237), + [sym__reserved_identifier] = STATE(2229), + [sym_preproc_if_in_expression] = STATE(4573), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(174), [sym_preproc_endregion] = STATE(174), [sym_preproc_line] = STATE(174), @@ -64049,97 +63935,96 @@ 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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3396), - [sym__identifier_token] = ACTIONS(25), - [anon_sym_alias] = ACTIONS(29), - [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1153), - [anon_sym_COLON] = ACTIONS(1221), - [anon_sym_LPAREN] = ACTIONS(1559), - [anon_sym_ref] = ACTIONS(1561), - [anon_sym_LBRACE] = ACTIONS(1159), - [anon_sym_delegate] = ACTIONS(1161), - [anon_sym_async] = ACTIONS(1047), - [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1529), - [anon_sym_LT] = ACTIONS(1223), - [anon_sym_GT] = ACTIONS(1223), - [anon_sym_where] = ACTIONS(29), - [anon_sym_QMARK] = ACTIONS(1223), - [anon_sym_notnull] = ACTIONS(29), - [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1167), - [anon_sym_BANG] = ACTIONS(1563), - [anon_sym_TILDE] = ACTIONS(1565), - [anon_sym_PLUS_PLUS] = ACTIONS(1565), - [anon_sym_DASH_DASH] = ACTIONS(1565), - [anon_sym_true] = ACTIONS(1173), - [anon_sym_false] = ACTIONS(1173), - [anon_sym_PLUS] = ACTIONS(1563), - [anon_sym_DASH] = ACTIONS(1563), - [anon_sym_STAR] = ACTIONS(1567), - [anon_sym_SLASH] = ACTIONS(1223), - [anon_sym_PERCENT] = ACTIONS(1221), - [anon_sym_CARET] = ACTIONS(1565), - [anon_sym_PIPE] = ACTIONS(1223), - [anon_sym_AMP] = ACTIONS(1563), - [anon_sym_LT_LT] = ACTIONS(1221), - [anon_sym_GT_GT] = ACTIONS(1223), - [anon_sym_GT_GT_GT] = ACTIONS(1221), - [anon_sym_EQ_EQ] = ACTIONS(1221), - [anon_sym_BANG_EQ] = ACTIONS(1221), - [anon_sym_GT_EQ] = ACTIONS(1221), - [anon_sym_LT_EQ] = ACTIONS(1221), - [anon_sym_this] = ACTIONS(1177), - [anon_sym_DOT] = ACTIONS(1223), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1179), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1181), - [anon_sym_unchecked] = ACTIONS(1167), - [anon_sym_yield] = ACTIONS(29), - [anon_sym_switch] = ACTIONS(1223), - [anon_sym_default] = ACTIONS(1183), - [anon_sym_throw] = ACTIONS(1569), - [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1571), - [anon_sym_DOT_DOT] = ACTIONS(1573), - [anon_sym_and] = ACTIONS(1223), - [anon_sym_or] = ACTIONS(1223), - [anon_sym_AMP_AMP] = ACTIONS(1221), - [anon_sym_PIPE_PIPE] = ACTIONS(1221), - [anon_sym_QMARK_QMARK] = ACTIONS(1221), - [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(1223), - [anon_sym_is] = ACTIONS(1223), - [anon_sym_DASH_GT] = ACTIONS(1221), - [anon_sym_stackalloc] = ACTIONS(1191), - [anon_sym_with] = ACTIONS(1223), - [anon_sym_sizeof] = ACTIONS(1193), - [anon_sym_typeof] = ACTIONS(1195), - [anon_sym___makeref] = ACTIONS(1197), - [anon_sym___reftype] = ACTIONS(1199), - [anon_sym___refvalue] = ACTIONS(1201), - [sym_null_literal] = ACTIONS(1203), - [anon_sym_SQUOTE] = ACTIONS(1205), - [sym_integer_literal] = ACTIONS(1203), - [sym_real_literal] = ACTIONS(1207), - [anon_sym_DQUOTE] = ACTIONS(1209), - [sym_verbatim_string_literal] = ACTIONS(1207), - [aux_sym_preproc_if_token1] = ACTIONS(1211), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3501), + [sym__identifier_token] = ACTIONS(1385), + [anon_sym_alias] = ACTIONS(1387), + [anon_sym_global] = ACTIONS(1387), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1389), + [anon_sym_COLON] = ACTIONS(1219), + [anon_sym_COMMA] = ACTIONS(1219), + [anon_sym_LPAREN] = ACTIONS(1565), + [anon_sym_ref] = ACTIONS(1567), + [anon_sym_LBRACE] = ACTIONS(1395), + [anon_sym_delegate] = ACTIONS(1397), + [anon_sym_async] = ACTIONS(1045), + [anon_sym_file] = ACTIONS(1387), + [anon_sym_new] = ACTIONS(1399), + [anon_sym_LT] = ACTIONS(1221), + [anon_sym_GT] = ACTIONS(1221), + [anon_sym_where] = ACTIONS(1387), + [anon_sym_QMARK] = ACTIONS(1221), + [anon_sym_notnull] = ACTIONS(1387), + [anon_sym_unmanaged] = ACTIONS(1387), + [anon_sym_checked] = ACTIONS(1401), + [anon_sym_BANG] = ACTIONS(1569), + [anon_sym_TILDE] = ACTIONS(1571), + [anon_sym_PLUS_PLUS] = ACTIONS(1571), + [anon_sym_DASH_DASH] = ACTIONS(1571), + [anon_sym_true] = ACTIONS(1407), + [anon_sym_false] = ACTIONS(1407), + [anon_sym_PLUS] = ACTIONS(1569), + [anon_sym_DASH] = ACTIONS(1569), + [anon_sym_STAR] = ACTIONS(1409), + [anon_sym_SLASH] = ACTIONS(1221), + [anon_sym_PERCENT] = ACTIONS(1219), + [anon_sym_CARET] = ACTIONS(1571), + [anon_sym_PIPE] = ACTIONS(1221), + [anon_sym_AMP] = ACTIONS(1569), + [anon_sym_LT_LT] = ACTIONS(1219), + [anon_sym_GT_GT] = ACTIONS(1221), + [anon_sym_GT_GT_GT] = ACTIONS(1219), + [anon_sym_EQ_EQ] = ACTIONS(1219), + [anon_sym_BANG_EQ] = ACTIONS(1219), + [anon_sym_GT_EQ] = ACTIONS(1219), + [anon_sym_LT_EQ] = ACTIONS(1219), + [anon_sym_this] = ACTIONS(1411), + [anon_sym_DOT] = ACTIONS(1221), + [anon_sym_scoped] = ACTIONS(1413), + [anon_sym_base] = ACTIONS(1415), + [anon_sym_var] = ACTIONS(1417), + [sym_predefined_type] = ACTIONS(1419), + [anon_sym_unchecked] = ACTIONS(1401), + [anon_sym_yield] = ACTIONS(1387), + [anon_sym_switch] = ACTIONS(1221), + [anon_sym_default] = ACTIONS(1421), + [anon_sym_throw] = ACTIONS(1573), + [anon_sym_when] = ACTIONS(1387), + [anon_sym_await] = ACTIONS(1575), + [anon_sym_DOT_DOT] = ACTIONS(1577), + [anon_sym_AMP_AMP] = ACTIONS(1219), + [anon_sym_PIPE_PIPE] = ACTIONS(1219), + [anon_sym_QMARK_QMARK] = ACTIONS(1219), + [anon_sym_from] = ACTIONS(1429), + [anon_sym_into] = ACTIONS(1387), + [anon_sym_join] = ACTIONS(1387), + [anon_sym_on] = ACTIONS(1387), + [anon_sym_equals] = ACTIONS(1387), + [anon_sym_let] = ACTIONS(1387), + [anon_sym_orderby] = ACTIONS(1387), + [anon_sym_ascending] = ACTIONS(1387), + [anon_sym_descending] = ACTIONS(1387), + [anon_sym_group] = ACTIONS(1387), + [anon_sym_by] = ACTIONS(1387), + [anon_sym_select] = ACTIONS(1387), + [anon_sym_as] = ACTIONS(1221), + [anon_sym_is] = ACTIONS(1221), + [anon_sym_DASH_GT] = ACTIONS(1219), + [anon_sym_stackalloc] = ACTIONS(1431), + [anon_sym_with] = ACTIONS(1221), + [anon_sym_sizeof] = ACTIONS(1433), + [anon_sym_typeof] = ACTIONS(1435), + [anon_sym___makeref] = ACTIONS(1437), + [anon_sym___reftype] = ACTIONS(1439), + [anon_sym___refvalue] = ACTIONS(1441), + [sym_null_literal] = ACTIONS(1443), + [anon_sym_SQUOTE] = ACTIONS(1445), + [sym_integer_literal] = ACTIONS(1443), + [sym_real_literal] = ACTIONS(1447), + [anon_sym_DQUOTE] = ACTIONS(1449), + [sym_verbatim_string_literal] = ACTIONS(1447), + [aux_sym_preproc_if_token1] = ACTIONS(1451), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -64150,90 +64035,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(1213), - [sym_interpolation_verbatim_start] = ACTIONS(1215), - [sym_interpolation_raw_start] = ACTIONS(1217), - [sym_raw_string_start] = ACTIONS(1219), + [sym_interpolation_regular_start] = ACTIONS(1453), + [sym_interpolation_verbatim_start] = ACTIONS(1455), + [sym_interpolation_raw_start] = ACTIONS(1457), + [sym_interpolation_close_brace] = ACTIONS(1219), + [sym_raw_string_start] = ACTIONS(1459), }, [175] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(5910), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2247), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(5116), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3529), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3080), - [sym_postfix_unary_expression] = STATE(3111), - [sym_prefix_unary_expression] = STATE(3111), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6154), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3080), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3111), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3080), - [sym_member_access_expression] = STATE(2484), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3111), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7444), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(3080), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3080), - [sym_typeof_expression] = STATE(3080), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2484), - [sym_literal] = STATE(3080), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(3182), + [sym__name] = STATE(5888), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2286), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2262), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(4683), + [sym_non_lvalue_expression] = STATE(4580), + [sym_lvalue_expression] = STATE(3373), + [sym__expression_statement_expression] = STATE(4573), + [sym_assignment_expression] = STATE(4581), + [sym_binary_expression] = STATE(4573), + [sym_postfix_unary_expression] = STATE(4581), + [sym_prefix_unary_expression] = STATE(4581), + [sym__pointer_indirection_expression] = STATE(3144), + [sym_query_expression] = STATE(4573), + [sym_from_clause] = STATE(6133), + [sym_conditional_expression] = STATE(4573), + [sym_conditional_access_expression] = STATE(4573), + [sym_as_expression] = STATE(4573), + [sym_is_expression] = STATE(4573), + [sym_is_pattern_expression] = STATE(4573), + [sym_cast_expression] = STATE(4573), + [sym_checked_expression] = STATE(4573), + [sym_invocation_expression] = STATE(4581), + [sym_switch_expression] = STATE(4573), + [sym_await_expression] = STATE(4581), + [sym_throw_expression] = STATE(4573), + [sym_element_access_expression] = STATE(3144), + [sym_interpolated_string_expression] = STATE(4573), + [sym_member_access_expression] = STATE(3144), + [sym_object_creation_expression] = STATE(4581), + [sym_parenthesized_expression] = STATE(4581), + [sym__parenthesized_lvalue_expression] = STATE(3144), + [sym_lambda_expression] = STATE(4573), + [sym__lambda_expression_init] = STATE(7614), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(4573), + [sym_anonymous_method_expression] = STATE(4573), + [sym_anonymous_object_creation_expression] = STATE(4573), + [sym_implicit_array_creation_expression] = STATE(4573), + [sym_implicit_object_creation_expression] = STATE(4573), + [sym_implicit_stackalloc_expression] = STATE(4573), + [sym_initializer_expression] = STATE(4573), + [sym_default_expression] = STATE(4573), + [sym_with_expression] = STATE(4573), + [sym_sizeof_expression] = STATE(4573), + [sym_typeof_expression] = STATE(4573), + [sym_makeref_expression] = STATE(4573), + [sym_ref_expression] = STATE(4573), + [sym_reftype_expression] = STATE(4573), + [sym_refvalue_expression] = STATE(4573), + [sym_stackalloc_expression] = STATE(4573), + [sym_range_expression] = STATE(4573), + [sym_tuple_expression] = STATE(3144), + [sym_literal] = STATE(4573), + [sym_character_literal] = STATE(4575), + [sym_string_literal] = STATE(4575), + [sym_raw_string_literal] = STATE(4575), + [sym_boolean_literal] = STATE(4575), + [sym_identifier] = STATE(2237), + [sym__reserved_identifier] = STATE(2229), + [sym_preproc_if_in_expression] = STATE(4573), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(175), [sym_preproc_endregion] = STATE(175), [sym_preproc_line] = STATE(175), @@ -64243,191 +64129,191 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(175), [sym_preproc_define] = STATE(175), [sym_preproc_undef] = STATE(175), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), - [sym__identifier_token] = ACTIONS(25), - [anon_sym_alias] = ACTIONS(29), - [anon_sym_SEMI] = ACTIONS(1221), - [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1481), - [anon_sym_COMMA] = ACTIONS(1221), - [anon_sym_LPAREN] = ACTIONS(1575), - [anon_sym_ref] = ACTIONS(1577), - [anon_sym_LBRACE] = ACTIONS(1487), - [anon_sym_RBRACE] = ACTIONS(1221), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), - [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1501), - [anon_sym_LT] = ACTIONS(1223), - [anon_sym_GT] = ACTIONS(1223), - [anon_sym_where] = ACTIONS(29), - [anon_sym_QMARK] = ACTIONS(1223), - [anon_sym_notnull] = ACTIONS(29), - [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1067), - [anon_sym_BANG] = ACTIONS(903), - [anon_sym_TILDE] = ACTIONS(901), - [anon_sym_PLUS_PLUS] = ACTIONS(901), - [anon_sym_DASH_DASH] = ACTIONS(901), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(903), - [anon_sym_DASH] = ACTIONS(903), - [anon_sym_STAR] = ACTIONS(905), - [anon_sym_SLASH] = ACTIONS(1223), - [anon_sym_PERCENT] = ACTIONS(1221), - [anon_sym_CARET] = ACTIONS(901), - [anon_sym_PIPE] = ACTIONS(1223), - [anon_sym_AMP] = ACTIONS(903), - [anon_sym_LT_LT] = ACTIONS(1221), - [anon_sym_GT_GT] = ACTIONS(1223), - [anon_sym_GT_GT_GT] = ACTIONS(1221), - [anon_sym_EQ_EQ] = ACTIONS(1221), - [anon_sym_BANG_EQ] = ACTIONS(1221), - [anon_sym_GT_EQ] = ACTIONS(1221), - [anon_sym_LT_EQ] = ACTIONS(1221), - [anon_sym_this] = ACTIONS(83), - [anon_sym_DOT] = ACTIONS(1223), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1067), - [anon_sym_yield] = ACTIONS(29), - [anon_sym_switch] = ACTIONS(1223), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1579), - [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1581), - [anon_sym_DOT_DOT] = ACTIONS(1583), - [anon_sym_AMP_AMP] = ACTIONS(1221), - [anon_sym_PIPE_PIPE] = ACTIONS(1221), - [anon_sym_QMARK_QMARK] = ACTIONS(1221), - [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(1223), - [anon_sym_is] = ACTIONS(1223), - [anon_sym_DASH_GT] = ACTIONS(1221), - [anon_sym_stackalloc] = ACTIONS(127), - [anon_sym_with] = ACTIONS(1223), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(133), - [anon_sym___reftype] = ACTIONS(135), - [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1089), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(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), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3501), + [sym__identifier_token] = ACTIONS(1385), + [anon_sym_alias] = ACTIONS(1387), + [anon_sym_global] = ACTIONS(1387), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1389), + [anon_sym_COLON] = ACTIONS(1147), + [anon_sym_COMMA] = ACTIONS(1147), + [anon_sym_LPAREN] = ACTIONS(1565), + [anon_sym_ref] = ACTIONS(1567), + [anon_sym_LBRACE] = ACTIONS(1395), + [anon_sym_delegate] = ACTIONS(1397), + [anon_sym_async] = ACTIONS(1045), + [anon_sym_file] = ACTIONS(1387), + [anon_sym_new] = ACTIONS(1399), + [anon_sym_LT] = ACTIONS(1161), + [anon_sym_GT] = ACTIONS(1161), + [anon_sym_where] = ACTIONS(1387), + [anon_sym_QMARK] = ACTIONS(1161), + [anon_sym_notnull] = ACTIONS(1387), + [anon_sym_unmanaged] = ACTIONS(1387), + [anon_sym_checked] = ACTIONS(1401), + [anon_sym_BANG] = ACTIONS(1569), + [anon_sym_TILDE] = ACTIONS(1571), + [anon_sym_PLUS_PLUS] = ACTIONS(1571), + [anon_sym_DASH_DASH] = ACTIONS(1571), + [anon_sym_true] = ACTIONS(1407), + [anon_sym_false] = ACTIONS(1407), + [anon_sym_PLUS] = ACTIONS(1569), + [anon_sym_DASH] = ACTIONS(1569), + [anon_sym_STAR] = ACTIONS(1409), + [anon_sym_SLASH] = ACTIONS(1161), + [anon_sym_PERCENT] = ACTIONS(1147), + [anon_sym_CARET] = ACTIONS(1571), + [anon_sym_PIPE] = ACTIONS(1161), + [anon_sym_AMP] = ACTIONS(1569), + [anon_sym_LT_LT] = ACTIONS(1147), + [anon_sym_GT_GT] = ACTIONS(1161), + [anon_sym_GT_GT_GT] = ACTIONS(1147), + [anon_sym_EQ_EQ] = ACTIONS(1147), + [anon_sym_BANG_EQ] = ACTIONS(1147), + [anon_sym_GT_EQ] = ACTIONS(1147), + [anon_sym_LT_EQ] = ACTIONS(1147), + [anon_sym_this] = ACTIONS(1411), + [anon_sym_DOT] = ACTIONS(1161), + [anon_sym_scoped] = ACTIONS(1413), + [anon_sym_base] = ACTIONS(1415), + [anon_sym_var] = ACTIONS(1417), + [sym_predefined_type] = ACTIONS(1419), + [anon_sym_unchecked] = ACTIONS(1401), + [anon_sym_yield] = ACTIONS(1387), + [anon_sym_switch] = ACTIONS(1161), + [anon_sym_default] = ACTIONS(1421), + [anon_sym_throw] = ACTIONS(1573), + [anon_sym_when] = ACTIONS(1387), + [anon_sym_await] = ACTIONS(1575), + [anon_sym_DOT_DOT] = ACTIONS(1577), + [anon_sym_AMP_AMP] = ACTIONS(1147), + [anon_sym_PIPE_PIPE] = ACTIONS(1147), + [anon_sym_QMARK_QMARK] = ACTIONS(1147), + [anon_sym_from] = ACTIONS(1429), + [anon_sym_into] = ACTIONS(1387), + [anon_sym_join] = ACTIONS(1387), + [anon_sym_on] = ACTIONS(1387), + [anon_sym_equals] = ACTIONS(1387), + [anon_sym_let] = ACTIONS(1387), + [anon_sym_orderby] = ACTIONS(1387), + [anon_sym_ascending] = ACTIONS(1387), + [anon_sym_descending] = ACTIONS(1387), + [anon_sym_group] = ACTIONS(1387), + [anon_sym_by] = ACTIONS(1387), + [anon_sym_select] = ACTIONS(1387), + [anon_sym_as] = ACTIONS(1161), + [anon_sym_is] = ACTIONS(1161), + [anon_sym_DASH_GT] = ACTIONS(1147), + [anon_sym_stackalloc] = ACTIONS(1431), + [anon_sym_with] = ACTIONS(1161), + [anon_sym_sizeof] = ACTIONS(1433), + [anon_sym_typeof] = ACTIONS(1435), + [anon_sym___makeref] = ACTIONS(1437), + [anon_sym___reftype] = ACTIONS(1439), + [anon_sym___refvalue] = ACTIONS(1441), + [sym_null_literal] = ACTIONS(1443), + [anon_sym_SQUOTE] = ACTIONS(1445), + [sym_integer_literal] = ACTIONS(1443), + [sym_real_literal] = ACTIONS(1447), + [anon_sym_DQUOTE] = ACTIONS(1449), + [sym_verbatim_string_literal] = ACTIONS(1447), + [aux_sym_preproc_if_token1] = ACTIONS(1451), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + [sym_interpolation_regular_start] = ACTIONS(1453), + [sym_interpolation_verbatim_start] = ACTIONS(1455), + [sym_interpolation_raw_start] = ACTIONS(1457), + [sym_interpolation_close_brace] = ACTIONS(1147), + [sym_raw_string_start] = ACTIONS(1459), }, [176] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(5160), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2204), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(4999), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3520), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3080), - [sym_postfix_unary_expression] = STATE(3111), - [sym_prefix_unary_expression] = STATE(3111), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6154), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3080), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3111), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3080), - [sym_member_access_expression] = STATE(2484), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3111), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7530), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(3080), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3080), - [sym_typeof_expression] = STATE(3080), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2484), - [sym_literal] = STATE(3080), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(5873), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2238), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(4616), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3468), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3102), + [sym_postfix_unary_expression] = STATE(3079), + [sym_prefix_unary_expression] = STATE(3079), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6134), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3102), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3079), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3102), + [sym_member_access_expression] = STATE(2472), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3079), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7309), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(3102), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3102), + [sym_typeof_expression] = STATE(3102), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2472), + [sym_literal] = STATE(3102), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(176), [sym_preproc_endregion] = STATE(176), [sym_preproc_line] = STATE(176), @@ -64437,65 +64323,68 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(176), [sym_preproc_define] = STATE(176), [sym_preproc_undef] = STATE(176), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), - [sym__identifier_token] = ACTIONS(25), - [anon_sym_alias] = ACTIONS(29), - [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1481), - [anon_sym_LPAREN] = ACTIONS(43), - [anon_sym_ref] = ACTIONS(661), - [anon_sym_LBRACE] = ACTIONS(1487), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), - [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1061), - [anon_sym_LT] = ACTIONS(1223), - [anon_sym_GT] = ACTIONS(1223), - [anon_sym_where] = ACTIONS(29), - [anon_sym_QMARK] = ACTIONS(1223), - [anon_sym_notnull] = ACTIONS(29), - [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1067), - [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(81), - [anon_sym_SLASH] = ACTIONS(1223), - [anon_sym_PERCENT] = ACTIONS(1221), - [anon_sym_CARET] = ACTIONS(1587), - [anon_sym_PIPE] = ACTIONS(1223), - [anon_sym_AMP] = ACTIONS(1585), - [anon_sym_LT_LT] = ACTIONS(1221), - [anon_sym_GT_GT] = ACTIONS(1223), - [anon_sym_GT_GT_GT] = ACTIONS(1221), - [anon_sym_EQ_EQ] = ACTIONS(1221), - [anon_sym_BANG_EQ] = ACTIONS(1221), - [anon_sym_GT_EQ] = ACTIONS(1221), - [anon_sym_LT_EQ] = ACTIONS(1221), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym_list_pattern_repeat1] = STATE(6891), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), + [sym__identifier_token] = ACTIONS(25), + [anon_sym_alias] = ACTIONS(29), + [anon_sym_global] = ACTIONS(29), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1479), + [anon_sym_COMMA] = ACTIONS(1219), + [anon_sym_RBRACK] = ACTIONS(1219), + [anon_sym_LPAREN] = ACTIONS(659), + [anon_sym_ref] = ACTIONS(663), + [anon_sym_LBRACE] = ACTIONS(1481), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), + [anon_sym_file] = ACTIONS(29), + [anon_sym_new] = ACTIONS(1059), + [anon_sym_LT] = ACTIONS(1221), + [anon_sym_GT] = ACTIONS(1221), + [anon_sym_where] = ACTIONS(29), + [anon_sym_QMARK] = ACTIONS(1221), + [anon_sym_notnull] = ACTIONS(29), + [anon_sym_unmanaged] = ACTIONS(29), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(1483), + [anon_sym_TILDE] = ACTIONS(1485), + [anon_sym_PLUS_PLUS] = ACTIONS(1485), + [anon_sym_DASH_DASH] = ACTIONS(1485), + [anon_sym_true] = ACTIONS(77), + [anon_sym_false] = ACTIONS(77), + [anon_sym_PLUS] = ACTIONS(1483), + [anon_sym_DASH] = ACTIONS(1483), + [anon_sym_STAR] = ACTIONS(683), + [anon_sym_SLASH] = ACTIONS(1221), + [anon_sym_PERCENT] = ACTIONS(1219), + [anon_sym_CARET] = ACTIONS(1485), + [anon_sym_PIPE] = ACTIONS(1221), + [anon_sym_AMP] = ACTIONS(1483), + [anon_sym_LT_LT] = ACTIONS(1219), + [anon_sym_GT_GT] = ACTIONS(1221), + [anon_sym_GT_GT_GT] = ACTIONS(1219), + [anon_sym_EQ_EQ] = ACTIONS(1219), + [anon_sym_BANG_EQ] = ACTIONS(1219), + [anon_sym_GT_EQ] = ACTIONS(1219), + [anon_sym_LT_EQ] = ACTIONS(1219), [anon_sym_this] = ACTIONS(83), - [anon_sym_DOT] = ACTIONS(1223), + [anon_sym_DOT] = ACTIONS(1221), [anon_sym_scoped] = ACTIONS(85), [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1067), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), - [anon_sym_switch] = ACTIONS(1223), + [anon_sym_switch] = ACTIONS(1221), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1589), + [anon_sym_throw] = ACTIONS(1077), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1591), - [anon_sym_DOT_DOT] = ACTIONS(123), - [anon_sym_AMP_AMP] = ACTIONS(1221), - [anon_sym_PIPE_PIPE] = ACTIONS(1221), - [anon_sym_QMARK_QMARK] = ACTIONS(1221), + [anon_sym_await] = ACTIONS(1079), + [anon_sym_DOT_DOT] = ACTIONS(711), + [anon_sym_AMP_AMP] = ACTIONS(1219), + [anon_sym_PIPE_PIPE] = ACTIONS(1219), + [anon_sym_QMARK_QMARK] = ACTIONS(1219), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -64508,11 +64397,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(1223), - [anon_sym_is] = ACTIONS(1223), - [anon_sym_DASH_GT] = ACTIONS(1221), + [anon_sym_as] = ACTIONS(1221), + [anon_sym_is] = ACTIONS(1221), + [anon_sym_DASH_GT] = ACTIONS(1219), [anon_sym_stackalloc] = ACTIONS(127), - [anon_sym_with] = ACTIONS(1223), + [anon_sym_with] = ACTIONS(1221), [anon_sym_sizeof] = ACTIONS(129), [anon_sym_typeof] = ACTIONS(131), [anon_sym___makeref] = ACTIONS(133), @@ -64524,10 +64413,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(1089), - [aux_sym_preproc_if_token3] = ACTIONS(1221), - [aux_sym_preproc_else_token1] = ACTIONS(1221), - [aux_sym_preproc_elif_token1] = ACTIONS(1221), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -64544,84 +64430,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [177] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(5160), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2204), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(5011), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3520), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3080), - [sym_postfix_unary_expression] = STATE(3111), - [sym_prefix_unary_expression] = STATE(3111), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6154), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3080), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3111), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3080), - [sym_member_access_expression] = STATE(2484), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3111), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7530), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(3080), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3080), - [sym_typeof_expression] = STATE(3080), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2484), - [sym_literal] = STATE(3080), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2816), + [sym__name] = STATE(5875), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2321), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(4493), + [sym_non_lvalue_expression] = STATE(3495), + [sym_lvalue_expression] = STATE(3484), + [sym__expression_statement_expression] = STATE(3462), + [sym_assignment_expression] = STATE(3497), + [sym_binary_expression] = STATE(3462), + [sym_postfix_unary_expression] = STATE(3497), + [sym_prefix_unary_expression] = STATE(3497), + [sym__pointer_indirection_expression] = STATE(2815), + [sym_query_expression] = STATE(3462), + [sym_from_clause] = STATE(6142), + [sym_conditional_expression] = STATE(3462), + [sym_conditional_access_expression] = STATE(3462), + [sym_as_expression] = STATE(3462), + [sym_is_expression] = STATE(3462), + [sym_is_pattern_expression] = STATE(3462), + [sym_cast_expression] = STATE(3462), + [sym_checked_expression] = STATE(3462), + [sym_invocation_expression] = STATE(3497), + [sym_switch_expression] = STATE(3462), + [sym_await_expression] = STATE(3497), + [sym_throw_expression] = STATE(3462), + [sym_element_access_expression] = STATE(2815), + [sym_interpolated_string_expression] = STATE(3462), + [sym_member_access_expression] = STATE(2815), + [sym_object_creation_expression] = STATE(3497), + [sym_parenthesized_expression] = STATE(3497), + [sym__parenthesized_lvalue_expression] = STATE(2815), + [sym_lambda_expression] = STATE(3462), + [sym__lambda_expression_init] = STATE(7384), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3462), + [sym_anonymous_method_expression] = STATE(3462), + [sym_anonymous_object_creation_expression] = STATE(3462), + [sym_implicit_array_creation_expression] = STATE(3462), + [sym_implicit_object_creation_expression] = STATE(3462), + [sym_implicit_stackalloc_expression] = STATE(3462), + [sym_initializer_expression] = STATE(3462), + [sym_default_expression] = STATE(3462), + [sym_with_expression] = STATE(3462), + [sym_sizeof_expression] = STATE(3462), + [sym_typeof_expression] = STATE(3462), + [sym_makeref_expression] = STATE(3462), + [sym_ref_expression] = STATE(3462), + [sym_reftype_expression] = STATE(3462), + [sym_refvalue_expression] = STATE(3462), + [sym_stackalloc_expression] = STATE(3462), + [sym_range_expression] = STATE(3462), + [sym_tuple_expression] = STATE(2815), + [sym_literal] = STATE(3462), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2261), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3462), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(177), [sym_preproc_endregion] = STATE(177), [sym_preproc_line] = STATE(177), @@ -64631,27 +64517,27 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(177), [sym_preproc_define] = STATE(177), [sym_preproc_undef] = STATE(177), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3067), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), [aux_sym__lambda_expression_init_repeat1] = STATE(3367), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1481), - [anon_sym_LPAREN] = ACTIONS(43), - [anon_sym_ref] = ACTIONS(661), - [anon_sym_LBRACE] = ACTIONS(1487), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1305), + [anon_sym_LPAREN] = ACTIONS(1579), + [anon_sym_ref] = ACTIONS(1581), + [anon_sym_LBRACE] = ACTIONS(1311), + [anon_sym_delegate] = ACTIONS(1313), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1061), - [anon_sym_LT] = ACTIONS(1165), - [anon_sym_GT] = ACTIONS(1165), + [anon_sym_new] = ACTIONS(1583), + [anon_sym_LT] = ACTIONS(1161), + [anon_sym_GT] = ACTIONS(1161), [anon_sym_where] = ACTIONS(29), - [anon_sym_QMARK] = ACTIONS(1165), + [anon_sym_QMARK] = ACTIONS(1161), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1067), + [anon_sym_checked] = ACTIONS(1317), [anon_sym_BANG] = ACTIONS(1585), [anon_sym_TILDE] = ACTIONS(1587), [anon_sym_PLUS_PLUS] = ACTIONS(1587), @@ -64660,36 +64546,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_false] = ACTIONS(77), [anon_sym_PLUS] = ACTIONS(1585), [anon_sym_DASH] = ACTIONS(1585), - [anon_sym_STAR] = ACTIONS(81), - [anon_sym_SLASH] = ACTIONS(1165), - [anon_sym_PERCENT] = ACTIONS(1151), + [anon_sym_STAR] = ACTIONS(1589), + [anon_sym_SLASH] = ACTIONS(1161), + [anon_sym_PERCENT] = ACTIONS(1147), [anon_sym_CARET] = ACTIONS(1587), - [anon_sym_PIPE] = ACTIONS(1165), + [anon_sym_PIPE] = ACTIONS(1161), [anon_sym_AMP] = ACTIONS(1585), - [anon_sym_LT_LT] = ACTIONS(1151), - [anon_sym_GT_GT] = ACTIONS(1165), - [anon_sym_GT_GT_GT] = ACTIONS(1151), - [anon_sym_EQ_EQ] = ACTIONS(1151), - [anon_sym_BANG_EQ] = ACTIONS(1151), - [anon_sym_GT_EQ] = ACTIONS(1151), - [anon_sym_LT_EQ] = ACTIONS(1151), - [anon_sym_this] = ACTIONS(83), - [anon_sym_DOT] = ACTIONS(1165), + [anon_sym_LT_LT] = ACTIONS(1147), + [anon_sym_GT_GT] = ACTIONS(1161), + [anon_sym_GT_GT_GT] = ACTIONS(1147), + [anon_sym_EQ_EQ] = ACTIONS(1147), + [anon_sym_BANG_EQ] = ACTIONS(1147), + [anon_sym_GT_EQ] = ACTIONS(1147), + [anon_sym_LT_EQ] = ACTIONS(1147), + [anon_sym_this] = ACTIONS(1321), + [anon_sym_DOT] = ACTIONS(1161), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), + [anon_sym_base] = ACTIONS(1323), + [anon_sym_EQ_GT] = ACTIONS(1147), [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1067), + [anon_sym_unchecked] = ACTIONS(1317), [anon_sym_yield] = ACTIONS(29), - [anon_sym_switch] = ACTIONS(1165), + [anon_sym_switch] = ACTIONS(1161), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1589), + [anon_sym_throw] = ACTIONS(1591), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1591), - [anon_sym_DOT_DOT] = ACTIONS(123), - [anon_sym_AMP_AMP] = ACTIONS(1151), - [anon_sym_PIPE_PIPE] = ACTIONS(1151), - [anon_sym_QMARK_QMARK] = ACTIONS(1151), + [anon_sym_await] = ACTIONS(1593), + [anon_sym_DOT_DOT] = ACTIONS(1595), + [anon_sym_and] = ACTIONS(1161), + [anon_sym_or] = ACTIONS(1161), + [anon_sym_AMP_AMP] = ACTIONS(1147), + [anon_sym_PIPE_PIPE] = ACTIONS(1147), + [anon_sym_QMARK_QMARK] = ACTIONS(1147), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -64702,26 +64591,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(1165), - [anon_sym_is] = ACTIONS(1165), - [anon_sym_DASH_GT] = ACTIONS(1151), - [anon_sym_stackalloc] = ACTIONS(127), - [anon_sym_with] = ACTIONS(1165), + [anon_sym_as] = ACTIONS(1161), + [anon_sym_is] = ACTIONS(1161), + [anon_sym_DASH_GT] = ACTIONS(1147), + [anon_sym_stackalloc] = ACTIONS(1331), + [anon_sym_with] = ACTIONS(1161), [anon_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(1333), + [anon_sym___reftype] = ACTIONS(1335), + [anon_sym___refvalue] = ACTIONS(1337), [sym_null_literal] = ACTIONS(139), [anon_sym_SQUOTE] = ACTIONS(141), [sym_integer_literal] = ACTIONS(139), [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1089), - [aux_sym_preproc_if_token3] = ACTIONS(1151), - [aux_sym_preproc_else_token1] = ACTIONS(1151), - [aux_sym_preproc_elif_token1] = ACTIONS(1151), + [aux_sym_preproc_if_token1] = ACTIONS(1339), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -64738,84 +64624,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [178] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2610), - [sym__name] = STATE(5898), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2197), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(4758), - [sym_non_lvalue_expression] = STATE(3277), - [sym_lvalue_expression] = STATE(3413), - [sym__expression_statement_expression] = STATE(3228), - [sym_assignment_expression] = STATE(3289), - [sym_binary_expression] = STATE(3228), - [sym_postfix_unary_expression] = STATE(3289), - [sym_prefix_unary_expression] = STATE(3289), - [sym__pointer_indirection_expression] = STATE(2609), - [sym_query_expression] = STATE(3228), - [sym_from_clause] = STATE(6160), - [sym_conditional_expression] = STATE(3228), - [sym_conditional_access_expression] = STATE(3228), - [sym_as_expression] = STATE(3228), - [sym_is_expression] = STATE(3228), - [sym_is_pattern_expression] = STATE(3228), - [sym_cast_expression] = STATE(3228), - [sym_checked_expression] = STATE(3228), - [sym_invocation_expression] = STATE(3289), - [sym_switch_expression] = STATE(3228), - [sym_await_expression] = STATE(3289), - [sym_throw_expression] = STATE(3228), - [sym_element_access_expression] = STATE(2609), - [sym_interpolated_string_expression] = STATE(3228), - [sym_member_access_expression] = STATE(2609), - [sym_object_creation_expression] = STATE(3289), - [sym_parenthesized_expression] = STATE(3289), - [sym__parenthesized_lvalue_expression] = STATE(2609), - [sym_lambda_expression] = STATE(3228), - [sym__lambda_expression_init] = STATE(7523), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3228), - [sym_anonymous_method_expression] = STATE(3228), - [sym_anonymous_object_creation_expression] = STATE(3228), - [sym_implicit_array_creation_expression] = STATE(3228), - [sym_implicit_object_creation_expression] = STATE(3228), - [sym_implicit_stackalloc_expression] = STATE(3228), - [sym_initializer_expression] = STATE(3228), - [sym_default_expression] = STATE(3228), - [sym_with_expression] = STATE(3228), - [sym_sizeof_expression] = STATE(3228), - [sym_typeof_expression] = STATE(3228), - [sym_makeref_expression] = STATE(3228), - [sym_ref_expression] = STATE(3228), - [sym_reftype_expression] = STATE(3228), - [sym_refvalue_expression] = STATE(3228), - [sym_stackalloc_expression] = STATE(3228), - [sym_range_expression] = STATE(3228), - [sym_tuple_expression] = STATE(2609), - [sym_literal] = STATE(3228), - [sym_character_literal] = STATE(3278), - [sym_string_literal] = STATE(3278), - [sym_raw_string_literal] = STATE(3278), - [sym_boolean_literal] = STATE(3278), - [sym_identifier] = STATE(2267), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3228), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2603), + [sym__name] = STATE(5865), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2344), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(4400), + [sym_non_lvalue_expression] = STATE(3220), + [sym_lvalue_expression] = STATE(3234), + [sym__expression_statement_expression] = STATE(3236), + [sym_assignment_expression] = STATE(3221), + [sym_binary_expression] = STATE(3236), + [sym_postfix_unary_expression] = STATE(3221), + [sym_prefix_unary_expression] = STATE(3221), + [sym__pointer_indirection_expression] = STATE(2602), + [sym_query_expression] = STATE(3236), + [sym_from_clause] = STATE(6151), + [sym_conditional_expression] = STATE(3236), + [sym_conditional_access_expression] = STATE(3236), + [sym_as_expression] = STATE(3236), + [sym_is_expression] = STATE(3236), + [sym_is_pattern_expression] = STATE(3236), + [sym_cast_expression] = STATE(3236), + [sym_checked_expression] = STATE(3236), + [sym_invocation_expression] = STATE(3221), + [sym_switch_expression] = STATE(3236), + [sym_await_expression] = STATE(3221), + [sym_throw_expression] = STATE(3236), + [sym_element_access_expression] = STATE(2602), + [sym_interpolated_string_expression] = STATE(3236), + [sym_member_access_expression] = STATE(2602), + [sym_object_creation_expression] = STATE(3221), + [sym_parenthesized_expression] = STATE(3221), + [sym__parenthesized_lvalue_expression] = STATE(2602), + [sym_lambda_expression] = STATE(3236), + [sym__lambda_expression_init] = STATE(7276), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3236), + [sym_anonymous_method_expression] = STATE(3236), + [sym_anonymous_object_creation_expression] = STATE(3236), + [sym_implicit_array_creation_expression] = STATE(3236), + [sym_implicit_object_creation_expression] = STATE(3236), + [sym_implicit_stackalloc_expression] = STATE(3236), + [sym_initializer_expression] = STATE(3236), + [sym_default_expression] = STATE(3236), + [sym_with_expression] = STATE(3236), + [sym_sizeof_expression] = STATE(3236), + [sym_typeof_expression] = STATE(3236), + [sym_makeref_expression] = STATE(3236), + [sym_ref_expression] = STATE(3236), + [sym_reftype_expression] = STATE(3236), + [sym_refvalue_expression] = STATE(3236), + [sym_stackalloc_expression] = STATE(3236), + [sym_range_expression] = STATE(3236), + [sym_tuple_expression] = STATE(2602), + [sym_literal] = STATE(3236), + [sym_character_literal] = STATE(3272), + [sym_string_literal] = STATE(3272), + [sym_raw_string_literal] = STATE(3272), + [sym_boolean_literal] = STATE(3272), + [sym_identifier] = STATE(2261), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3236), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(178), [sym_preproc_endregion] = STATE(178), [sym_preproc_line] = STATE(178), @@ -64825,68 +64711,68 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(178), [sym_preproc_define] = STATE(178), [sym_preproc_undef] = STATE(178), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3396), - [sym__identifier_token] = ACTIONS(25), - [anon_sym_alias] = ACTIONS(29), - [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1153), - [anon_sym_LPAREN] = ACTIONS(1593), - [anon_sym_ref] = ACTIONS(1595), - [anon_sym_LBRACE] = ACTIONS(1159), - [anon_sym_delegate] = ACTIONS(1161), - [anon_sym_async] = ACTIONS(1047), - [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1163), - [anon_sym_LT] = ACTIONS(1165), - [anon_sym_GT] = ACTIONS(1165), - [anon_sym_where] = ACTIONS(29), - [anon_sym_QMARK] = ACTIONS(1165), - [anon_sym_notnull] = ACTIONS(29), - [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1167), - [anon_sym_BANG] = ACTIONS(1597), - [anon_sym_TILDE] = ACTIONS(1599), - [anon_sym_PLUS_PLUS] = ACTIONS(1599), - [anon_sym_DASH_DASH] = ACTIONS(1599), - [anon_sym_true] = ACTIONS(1173), - [anon_sym_false] = ACTIONS(1173), - [anon_sym_PLUS] = ACTIONS(1597), - [anon_sym_DASH] = ACTIONS(1597), - [anon_sym_STAR] = ACTIONS(1601), - [anon_sym_SLASH] = ACTIONS(1165), - [anon_sym_PERCENT] = ACTIONS(1151), - [anon_sym_CARET] = ACTIONS(1599), - [anon_sym_PIPE] = ACTIONS(1165), - [anon_sym_AMP] = ACTIONS(1597), - [anon_sym_LT_LT] = ACTIONS(1151), - [anon_sym_GT_GT] = ACTIONS(1165), - [anon_sym_GT_GT_GT] = ACTIONS(1151), - [anon_sym_EQ_EQ] = ACTIONS(1151), - [anon_sym_BANG_EQ] = ACTIONS(1151), - [anon_sym_GT_EQ] = ACTIONS(1151), - [anon_sym_LT_EQ] = ACTIONS(1151), - [anon_sym_this] = ACTIONS(1177), - [anon_sym_DOT] = ACTIONS(1165), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1179), - [anon_sym_EQ_GT] = ACTIONS(1151), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1181), - [anon_sym_unchecked] = ACTIONS(1167), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3379), + [sym__identifier_token] = ACTIONS(25), + [anon_sym_alias] = ACTIONS(29), + [anon_sym_global] = ACTIONS(29), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1149), + [anon_sym_LPAREN] = ACTIONS(1597), + [anon_sym_ref] = ACTIONS(1599), + [anon_sym_LBRACE] = ACTIONS(1155), + [anon_sym_delegate] = ACTIONS(1157), + [anon_sym_async] = ACTIONS(1045), + [anon_sym_file] = ACTIONS(29), + [anon_sym_new] = ACTIONS(1535), + [anon_sym_LT] = ACTIONS(1221), + [anon_sym_GT] = ACTIONS(1221), + [anon_sym_where] = ACTIONS(29), + [anon_sym_QMARK] = ACTIONS(1221), + [anon_sym_notnull] = ACTIONS(29), + [anon_sym_unmanaged] = ACTIONS(29), + [anon_sym_checked] = ACTIONS(1163), + [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(1169), + [anon_sym_false] = ACTIONS(1169), + [anon_sym_PLUS] = ACTIONS(1601), + [anon_sym_DASH] = ACTIONS(1601), + [anon_sym_STAR] = ACTIONS(1605), + [anon_sym_SLASH] = ACTIONS(1221), + [anon_sym_PERCENT] = ACTIONS(1219), + [anon_sym_CARET] = ACTIONS(1603), + [anon_sym_PIPE] = ACTIONS(1221), + [anon_sym_AMP] = ACTIONS(1601), + [anon_sym_LT_LT] = ACTIONS(1219), + [anon_sym_GT_GT] = ACTIONS(1221), + [anon_sym_GT_GT_GT] = ACTIONS(1219), + [anon_sym_EQ_EQ] = ACTIONS(1219), + [anon_sym_BANG_EQ] = ACTIONS(1219), + [anon_sym_GT_EQ] = ACTIONS(1219), + [anon_sym_LT_EQ] = ACTIONS(1219), + [anon_sym_this] = ACTIONS(1173), + [anon_sym_DOT] = ACTIONS(1221), + [anon_sym_scoped] = ACTIONS(85), + [anon_sym_base] = ACTIONS(1175), + [anon_sym_EQ_GT] = ACTIONS(1219), + [anon_sym_var] = ACTIONS(89), + [sym_predefined_type] = ACTIONS(1177), + [anon_sym_unchecked] = ACTIONS(1163), [anon_sym_yield] = ACTIONS(29), - [anon_sym_switch] = ACTIONS(1165), - [anon_sym_default] = ACTIONS(1183), - [anon_sym_throw] = ACTIONS(1603), + [anon_sym_switch] = ACTIONS(1221), + [anon_sym_default] = ACTIONS(1179), + [anon_sym_throw] = ACTIONS(1607), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1605), - [anon_sym_DOT_DOT] = ACTIONS(1607), - [anon_sym_and] = ACTIONS(1165), - [anon_sym_or] = ACTIONS(1165), - [anon_sym_AMP_AMP] = ACTIONS(1151), - [anon_sym_PIPE_PIPE] = ACTIONS(1151), - [anon_sym_QMARK_QMARK] = ACTIONS(1151), + [anon_sym_await] = ACTIONS(1609), + [anon_sym_DOT_DOT] = ACTIONS(1611), + [anon_sym_and] = ACTIONS(1221), + [anon_sym_or] = ACTIONS(1221), + [anon_sym_AMP_AMP] = ACTIONS(1219), + [anon_sym_PIPE_PIPE] = ACTIONS(1219), + [anon_sym_QMARK_QMARK] = ACTIONS(1219), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -64899,23 +64785,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(1165), - [anon_sym_is] = ACTIONS(1165), - [anon_sym_DASH_GT] = ACTIONS(1151), - [anon_sym_stackalloc] = ACTIONS(1191), - [anon_sym_with] = ACTIONS(1165), - [anon_sym_sizeof] = ACTIONS(1193), - [anon_sym_typeof] = ACTIONS(1195), - [anon_sym___makeref] = ACTIONS(1197), - [anon_sym___reftype] = ACTIONS(1199), - [anon_sym___refvalue] = ACTIONS(1201), - [sym_null_literal] = ACTIONS(1203), - [anon_sym_SQUOTE] = ACTIONS(1205), - [sym_integer_literal] = ACTIONS(1203), - [sym_real_literal] = ACTIONS(1207), - [anon_sym_DQUOTE] = ACTIONS(1209), - [sym_verbatim_string_literal] = ACTIONS(1207), - [aux_sym_preproc_if_token1] = ACTIONS(1211), + [anon_sym_as] = ACTIONS(1221), + [anon_sym_is] = ACTIONS(1221), + [anon_sym_DASH_GT] = ACTIONS(1219), + [anon_sym_stackalloc] = ACTIONS(1187), + [anon_sym_with] = ACTIONS(1221), + [anon_sym_sizeof] = ACTIONS(1189), + [anon_sym_typeof] = ACTIONS(1191), + [anon_sym___makeref] = ACTIONS(1193), + [anon_sym___reftype] = ACTIONS(1195), + [anon_sym___refvalue] = ACTIONS(1197), + [sym_null_literal] = ACTIONS(1199), + [anon_sym_SQUOTE] = ACTIONS(1201), + [sym_integer_literal] = ACTIONS(1199), + [sym_real_literal] = ACTIONS(1203), + [anon_sym_DQUOTE] = ACTIONS(1205), + [sym_verbatim_string_literal] = ACTIONS(1203), + [aux_sym_preproc_if_token1] = ACTIONS(1207), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -64926,90 +64812,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1213), - [sym_interpolation_verbatim_start] = ACTIONS(1215), - [sym_interpolation_raw_start] = ACTIONS(1217), - [sym_raw_string_start] = ACTIONS(1219), + [sym_interpolation_regular_start] = ACTIONS(1209), + [sym_interpolation_verbatim_start] = ACTIONS(1211), + [sym_interpolation_raw_start] = ACTIONS(1213), + [sym_raw_string_start] = ACTIONS(1215), }, [179] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2762), - [sym__name] = STATE(5892), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2316), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(4690), - [sym_non_lvalue_expression] = STATE(3438), - [sym_lvalue_expression] = STATE(3500), - [sym__expression_statement_expression] = STATE(3362), - [sym_assignment_expression] = STATE(3449), - [sym_binary_expression] = STATE(3362), - [sym_postfix_unary_expression] = STATE(3449), - [sym_prefix_unary_expression] = STATE(3449), - [sym__pointer_indirection_expression] = STATE(2747), - [sym_query_expression] = STATE(3362), - [sym_from_clause] = STATE(6147), - [sym_conditional_expression] = STATE(3362), - [sym_conditional_access_expression] = STATE(3362), - [sym_as_expression] = STATE(3362), - [sym_is_expression] = STATE(3362), - [sym_is_pattern_expression] = STATE(3362), - [sym_cast_expression] = STATE(3362), - [sym_checked_expression] = STATE(3362), - [sym_invocation_expression] = STATE(3449), - [sym_switch_expression] = STATE(3362), - [sym_await_expression] = STATE(3449), - [sym_throw_expression] = STATE(3362), - [sym_element_access_expression] = STATE(2747), - [sym_interpolated_string_expression] = STATE(3362), - [sym_member_access_expression] = STATE(2747), - [sym_object_creation_expression] = STATE(3449), - [sym_parenthesized_expression] = STATE(3449), - [sym__parenthesized_lvalue_expression] = STATE(2747), - [sym_lambda_expression] = STATE(3362), - [sym__lambda_expression_init] = STATE(7516), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3362), - [sym_anonymous_method_expression] = STATE(3362), - [sym_anonymous_object_creation_expression] = STATE(3362), - [sym_implicit_array_creation_expression] = STATE(3362), - [sym_implicit_object_creation_expression] = STATE(3362), - [sym_implicit_stackalloc_expression] = STATE(3362), - [sym_initializer_expression] = STATE(3362), - [sym_default_expression] = STATE(3362), - [sym_with_expression] = STATE(3362), - [sym_sizeof_expression] = STATE(3362), - [sym_typeof_expression] = STATE(3362), - [sym_makeref_expression] = STATE(3362), - [sym_ref_expression] = STATE(3362), - [sym_reftype_expression] = STATE(3362), - [sym_refvalue_expression] = STATE(3362), - [sym_stackalloc_expression] = STATE(3362), - [sym_range_expression] = STATE(3362), - [sym_tuple_expression] = STATE(2747), - [sym_literal] = STATE(3362), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2267), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3362), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2603), + [sym__name] = STATE(5865), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2344), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(4475), + [sym_non_lvalue_expression] = STATE(3220), + [sym_lvalue_expression] = STATE(3234), + [sym__expression_statement_expression] = STATE(3236), + [sym_assignment_expression] = STATE(3221), + [sym_binary_expression] = STATE(3236), + [sym_postfix_unary_expression] = STATE(3221), + [sym_prefix_unary_expression] = STATE(3221), + [sym__pointer_indirection_expression] = STATE(2602), + [sym_query_expression] = STATE(3236), + [sym_from_clause] = STATE(6151), + [sym_conditional_expression] = STATE(3236), + [sym_conditional_access_expression] = STATE(3236), + [sym_as_expression] = STATE(3236), + [sym_is_expression] = STATE(3236), + [sym_is_pattern_expression] = STATE(3236), + [sym_cast_expression] = STATE(3236), + [sym_checked_expression] = STATE(3236), + [sym_invocation_expression] = STATE(3221), + [sym_switch_expression] = STATE(3236), + [sym_await_expression] = STATE(3221), + [sym_throw_expression] = STATE(3236), + [sym_element_access_expression] = STATE(2602), + [sym_interpolated_string_expression] = STATE(3236), + [sym_member_access_expression] = STATE(2602), + [sym_object_creation_expression] = STATE(3221), + [sym_parenthesized_expression] = STATE(3221), + [sym__parenthesized_lvalue_expression] = STATE(2602), + [sym_lambda_expression] = STATE(3236), + [sym__lambda_expression_init] = STATE(7276), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3236), + [sym_anonymous_method_expression] = STATE(3236), + [sym_anonymous_object_creation_expression] = STATE(3236), + [sym_implicit_array_creation_expression] = STATE(3236), + [sym_implicit_object_creation_expression] = STATE(3236), + [sym_implicit_stackalloc_expression] = STATE(3236), + [sym_initializer_expression] = STATE(3236), + [sym_default_expression] = STATE(3236), + [sym_with_expression] = STATE(3236), + [sym_sizeof_expression] = STATE(3236), + [sym_typeof_expression] = STATE(3236), + [sym_makeref_expression] = STATE(3236), + [sym_ref_expression] = STATE(3236), + [sym_reftype_expression] = STATE(3236), + [sym_refvalue_expression] = STATE(3236), + [sym_stackalloc_expression] = STATE(3236), + [sym_range_expression] = STATE(3236), + [sym_tuple_expression] = STATE(2602), + [sym_literal] = STATE(3236), + [sym_character_literal] = STATE(3272), + [sym_string_literal] = STATE(3272), + [sym_raw_string_literal] = STATE(3272), + [sym_boolean_literal] = STATE(3272), + [sym_identifier] = STATE(2261), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3236), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(179), [sym_preproc_endregion] = STATE(179), [sym_preproc_line] = STATE(179), @@ -65019,68 +64905,68 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(179), [sym_preproc_define] = STATE(179), [sym_preproc_undef] = STATE(179), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3385), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3379), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1307), - [anon_sym_LPAREN] = ACTIONS(1609), - [anon_sym_ref] = ACTIONS(1611), - [anon_sym_LBRACE] = ACTIONS(1313), - [anon_sym_delegate] = ACTIONS(1315), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1149), + [anon_sym_LPAREN] = ACTIONS(1597), + [anon_sym_ref] = ACTIONS(1599), + [anon_sym_LBRACE] = ACTIONS(1155), + [anon_sym_delegate] = ACTIONS(1157), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1613), - [anon_sym_LT] = ACTIONS(1165), - [anon_sym_GT] = ACTIONS(1165), + [anon_sym_new] = ACTIONS(1535), + [anon_sym_LT] = ACTIONS(1161), + [anon_sym_GT] = ACTIONS(1161), [anon_sym_where] = ACTIONS(29), - [anon_sym_QMARK] = ACTIONS(1165), + [anon_sym_QMARK] = ACTIONS(1161), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1319), - [anon_sym_BANG] = ACTIONS(1615), - [anon_sym_TILDE] = ACTIONS(1617), - [anon_sym_PLUS_PLUS] = ACTIONS(1617), - [anon_sym_DASH_DASH] = ACTIONS(1617), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1615), - [anon_sym_DASH] = ACTIONS(1615), - [anon_sym_STAR] = ACTIONS(1619), - [anon_sym_SLASH] = ACTIONS(1165), - [anon_sym_PERCENT] = ACTIONS(1151), - [anon_sym_CARET] = ACTIONS(1617), - [anon_sym_PIPE] = ACTIONS(1165), - [anon_sym_AMP] = ACTIONS(1615), - [anon_sym_LT_LT] = ACTIONS(1151), - [anon_sym_GT_GT] = ACTIONS(1165), - [anon_sym_GT_GT_GT] = ACTIONS(1151), - [anon_sym_EQ_EQ] = ACTIONS(1151), - [anon_sym_BANG_EQ] = ACTIONS(1151), - [anon_sym_GT_EQ] = ACTIONS(1151), - [anon_sym_LT_EQ] = ACTIONS(1151), - [anon_sym_this] = ACTIONS(1323), - [anon_sym_DOT] = ACTIONS(1165), + [anon_sym_checked] = ACTIONS(1163), + [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(1169), + [anon_sym_false] = ACTIONS(1169), + [anon_sym_PLUS] = ACTIONS(1601), + [anon_sym_DASH] = ACTIONS(1601), + [anon_sym_STAR] = ACTIONS(1605), + [anon_sym_SLASH] = ACTIONS(1161), + [anon_sym_PERCENT] = ACTIONS(1147), + [anon_sym_CARET] = ACTIONS(1603), + [anon_sym_PIPE] = ACTIONS(1161), + [anon_sym_AMP] = ACTIONS(1601), + [anon_sym_LT_LT] = ACTIONS(1147), + [anon_sym_GT_GT] = ACTIONS(1161), + [anon_sym_GT_GT_GT] = ACTIONS(1147), + [anon_sym_EQ_EQ] = ACTIONS(1147), + [anon_sym_BANG_EQ] = ACTIONS(1147), + [anon_sym_GT_EQ] = ACTIONS(1147), + [anon_sym_LT_EQ] = ACTIONS(1147), + [anon_sym_this] = ACTIONS(1173), + [anon_sym_DOT] = ACTIONS(1161), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1325), - [anon_sym_EQ_GT] = ACTIONS(1151), + [anon_sym_base] = ACTIONS(1175), + [anon_sym_EQ_GT] = ACTIONS(1147), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1319), + [sym_predefined_type] = ACTIONS(1177), + [anon_sym_unchecked] = ACTIONS(1163), [anon_sym_yield] = ACTIONS(29), - [anon_sym_switch] = ACTIONS(1165), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1621), + [anon_sym_switch] = ACTIONS(1161), + [anon_sym_default] = ACTIONS(1179), + [anon_sym_throw] = ACTIONS(1607), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1623), - [anon_sym_DOT_DOT] = ACTIONS(1625), - [anon_sym_and] = ACTIONS(1165), - [anon_sym_or] = ACTIONS(1165), - [anon_sym_AMP_AMP] = ACTIONS(1151), - [anon_sym_PIPE_PIPE] = ACTIONS(1151), - [anon_sym_QMARK_QMARK] = ACTIONS(1151), + [anon_sym_await] = ACTIONS(1609), + [anon_sym_DOT_DOT] = ACTIONS(1611), + [anon_sym_and] = ACTIONS(1161), + [anon_sym_or] = ACTIONS(1161), + [anon_sym_AMP_AMP] = ACTIONS(1147), + [anon_sym_PIPE_PIPE] = ACTIONS(1147), + [anon_sym_QMARK_QMARK] = ACTIONS(1147), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -65093,23 +64979,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(1165), - [anon_sym_is] = ACTIONS(1165), - [anon_sym_DASH_GT] = ACTIONS(1151), - [anon_sym_stackalloc] = ACTIONS(1333), - [anon_sym_with] = ACTIONS(1165), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(1335), - [anon_sym___reftype] = ACTIONS(1337), - [anon_sym___refvalue] = ACTIONS(1339), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1341), + [anon_sym_as] = ACTIONS(1161), + [anon_sym_is] = ACTIONS(1161), + [anon_sym_DASH_GT] = ACTIONS(1147), + [anon_sym_stackalloc] = ACTIONS(1187), + [anon_sym_with] = ACTIONS(1161), + [anon_sym_sizeof] = ACTIONS(1189), + [anon_sym_typeof] = ACTIONS(1191), + [anon_sym___makeref] = ACTIONS(1193), + [anon_sym___reftype] = ACTIONS(1195), + [anon_sym___refvalue] = ACTIONS(1197), + [sym_null_literal] = ACTIONS(1199), + [anon_sym_SQUOTE] = ACTIONS(1201), + [sym_integer_literal] = ACTIONS(1199), + [sym_real_literal] = ACTIONS(1203), + [anon_sym_DQUOTE] = ACTIONS(1205), + [sym_verbatim_string_literal] = ACTIONS(1203), + [aux_sym_preproc_if_token1] = ACTIONS(1207), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -65120,90 +65006,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(151), - [sym_interpolation_verbatim_start] = ACTIONS(153), - [sym_interpolation_raw_start] = ACTIONS(155), - [sym_raw_string_start] = ACTIONS(157), + [sym_interpolation_regular_start] = ACTIONS(1209), + [sym_interpolation_verbatim_start] = ACTIONS(1211), + [sym_interpolation_raw_start] = ACTIONS(1213), + [sym_raw_string_start] = ACTIONS(1215), }, [180] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2610), - [sym__name] = STATE(5898), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2197), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(4535), - [sym_non_lvalue_expression] = STATE(3277), - [sym_lvalue_expression] = STATE(3413), - [sym__expression_statement_expression] = STATE(3228), - [sym_assignment_expression] = STATE(3289), - [sym_binary_expression] = STATE(3228), - [sym_postfix_unary_expression] = STATE(3289), - [sym_prefix_unary_expression] = STATE(3289), - [sym__pointer_indirection_expression] = STATE(2609), - [sym_query_expression] = STATE(3228), - [sym_from_clause] = STATE(6160), - [sym_conditional_expression] = STATE(3228), - [sym_conditional_access_expression] = STATE(3228), - [sym_as_expression] = STATE(3228), - [sym_is_expression] = STATE(3228), - [sym_is_pattern_expression] = STATE(3228), - [sym_cast_expression] = STATE(3228), - [sym_checked_expression] = STATE(3228), - [sym_invocation_expression] = STATE(3289), - [sym_switch_expression] = STATE(3228), - [sym_await_expression] = STATE(3289), - [sym_throw_expression] = STATE(3228), - [sym_element_access_expression] = STATE(2609), - [sym_interpolated_string_expression] = STATE(3228), - [sym_member_access_expression] = STATE(2609), - [sym_object_creation_expression] = STATE(3289), - [sym_parenthesized_expression] = STATE(3289), - [sym__parenthesized_lvalue_expression] = STATE(2609), - [sym_lambda_expression] = STATE(3228), - [sym__lambda_expression_init] = STATE(7523), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3228), - [sym_anonymous_method_expression] = STATE(3228), - [sym_anonymous_object_creation_expression] = STATE(3228), - [sym_implicit_array_creation_expression] = STATE(3228), - [sym_implicit_object_creation_expression] = STATE(3228), - [sym_implicit_stackalloc_expression] = STATE(3228), - [sym_initializer_expression] = STATE(3228), - [sym_default_expression] = STATE(3228), - [sym_with_expression] = STATE(3228), - [sym_sizeof_expression] = STATE(3228), - [sym_typeof_expression] = STATE(3228), - [sym_makeref_expression] = STATE(3228), - [sym_ref_expression] = STATE(3228), - [sym_reftype_expression] = STATE(3228), - [sym_refvalue_expression] = STATE(3228), - [sym_stackalloc_expression] = STATE(3228), - [sym_range_expression] = STATE(3228), - [sym_tuple_expression] = STATE(2609), - [sym_literal] = STATE(3228), - [sym_character_literal] = STATE(3278), - [sym_string_literal] = STATE(3278), - [sym_raw_string_literal] = STATE(3278), - [sym_boolean_literal] = STATE(3278), - [sym_identifier] = STATE(2267), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3228), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2816), + [sym__name] = STATE(5873), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2196), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(4996), + [sym_non_lvalue_expression] = STATE(3495), + [sym_lvalue_expression] = STATE(3514), + [sym__expression_statement_expression] = STATE(3462), + [sym_assignment_expression] = STATE(3497), + [sym_binary_expression] = STATE(3462), + [sym_postfix_unary_expression] = STATE(3497), + [sym_prefix_unary_expression] = STATE(3497), + [sym__pointer_indirection_expression] = STATE(2815), + [sym_query_expression] = STATE(3462), + [sym_from_clause] = STATE(6154), + [sym_conditional_expression] = STATE(3462), + [sym_conditional_access_expression] = STATE(3462), + [sym_as_expression] = STATE(3462), + [sym_is_expression] = STATE(3462), + [sym_is_pattern_expression] = STATE(3462), + [sym_cast_expression] = STATE(3462), + [sym_checked_expression] = STATE(3462), + [sym_invocation_expression] = STATE(3497), + [sym_switch_expression] = STATE(3462), + [sym_await_expression] = STATE(3497), + [sym_throw_expression] = STATE(3462), + [sym_element_access_expression] = STATE(2815), + [sym_interpolated_string_expression] = STATE(3462), + [sym_member_access_expression] = STATE(2815), + [sym_object_creation_expression] = STATE(3497), + [sym_parenthesized_expression] = STATE(3497), + [sym__parenthesized_lvalue_expression] = STATE(2815), + [sym_lambda_expression] = STATE(3462), + [sym__lambda_expression_init] = STATE(7685), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3462), + [sym_anonymous_method_expression] = STATE(3462), + [sym_anonymous_object_creation_expression] = STATE(3462), + [sym_implicit_array_creation_expression] = STATE(3462), + [sym_implicit_object_creation_expression] = STATE(3462), + [sym_implicit_stackalloc_expression] = STATE(3462), + [sym_initializer_expression] = STATE(3462), + [sym_default_expression] = STATE(3462), + [sym_with_expression] = STATE(3462), + [sym_sizeof_expression] = STATE(3462), + [sym_typeof_expression] = STATE(3462), + [sym_makeref_expression] = STATE(3462), + [sym_ref_expression] = STATE(3462), + [sym_reftype_expression] = STATE(3462), + [sym_refvalue_expression] = STATE(3462), + [sym_stackalloc_expression] = STATE(3462), + [sym_range_expression] = STATE(3462), + [sym_tuple_expression] = STATE(2815), + [sym_literal] = STATE(3462), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2261), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3462), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(180), [sym_preproc_endregion] = STATE(180), [sym_preproc_line] = STATE(180), @@ -65213,68 +65099,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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3396), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3367), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1153), - [anon_sym_LPAREN] = ACTIONS(1593), - [anon_sym_ref] = ACTIONS(1595), - [anon_sym_LBRACE] = ACTIONS(1159), - [anon_sym_delegate] = ACTIONS(1161), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1305), + [anon_sym_LPAREN] = ACTIONS(1613), + [anon_sym_ref] = ACTIONS(1615), + [anon_sym_LBRACE] = ACTIONS(1311), + [anon_sym_delegate] = ACTIONS(1313), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1163), - [anon_sym_LT] = ACTIONS(1223), - [anon_sym_GT] = ACTIONS(1223), + [anon_sym_new] = ACTIONS(1315), + [anon_sym_LT] = ACTIONS(1221), + [anon_sym_GT] = ACTIONS(1221), [anon_sym_where] = ACTIONS(29), - [anon_sym_QMARK] = ACTIONS(1223), + [anon_sym_QMARK] = ACTIONS(1221), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1167), - [anon_sym_BANG] = ACTIONS(1597), - [anon_sym_TILDE] = ACTIONS(1599), - [anon_sym_PLUS_PLUS] = ACTIONS(1599), - [anon_sym_DASH_DASH] = ACTIONS(1599), - [anon_sym_true] = ACTIONS(1173), - [anon_sym_false] = ACTIONS(1173), - [anon_sym_PLUS] = ACTIONS(1597), - [anon_sym_DASH] = ACTIONS(1597), - [anon_sym_STAR] = ACTIONS(1601), - [anon_sym_SLASH] = ACTIONS(1223), - [anon_sym_PERCENT] = ACTIONS(1221), - [anon_sym_CARET] = ACTIONS(1599), - [anon_sym_PIPE] = ACTIONS(1223), - [anon_sym_AMP] = ACTIONS(1597), - [anon_sym_LT_LT] = ACTIONS(1221), - [anon_sym_GT_GT] = ACTIONS(1223), - [anon_sym_GT_GT_GT] = ACTIONS(1221), - [anon_sym_EQ_EQ] = ACTIONS(1221), - [anon_sym_BANG_EQ] = ACTIONS(1221), - [anon_sym_GT_EQ] = ACTIONS(1221), - [anon_sym_LT_EQ] = ACTIONS(1221), - [anon_sym_this] = ACTIONS(1177), - [anon_sym_DOT] = ACTIONS(1223), + [anon_sym_checked] = ACTIONS(1317), + [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(1617), + [anon_sym_DASH] = ACTIONS(1617), + [anon_sym_STAR] = ACTIONS(1621), + [anon_sym_SLASH] = ACTIONS(1221), + [anon_sym_PERCENT] = ACTIONS(1219), + [anon_sym_CARET] = ACTIONS(1619), + [anon_sym_PIPE] = ACTIONS(1221), + [anon_sym_AMP] = ACTIONS(1617), + [anon_sym_LT_LT] = ACTIONS(1219), + [anon_sym_GT_GT] = ACTIONS(1221), + [anon_sym_GT_GT_GT] = ACTIONS(1219), + [anon_sym_EQ_EQ] = ACTIONS(1219), + [anon_sym_BANG_EQ] = ACTIONS(1219), + [anon_sym_GT_EQ] = ACTIONS(1219), + [anon_sym_LT_EQ] = ACTIONS(1219), + [anon_sym_this] = ACTIONS(1321), + [anon_sym_DOT] = ACTIONS(1221), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1179), - [anon_sym_EQ_GT] = ACTIONS(1221), + [anon_sym_base] = ACTIONS(1323), + [anon_sym_EQ_GT] = ACTIONS(1219), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1181), - [anon_sym_unchecked] = ACTIONS(1167), + [sym_predefined_type] = ACTIONS(91), + [anon_sym_unchecked] = ACTIONS(1317), [anon_sym_yield] = ACTIONS(29), - [anon_sym_switch] = ACTIONS(1223), - [anon_sym_default] = ACTIONS(1183), - [anon_sym_throw] = ACTIONS(1603), + [anon_sym_switch] = ACTIONS(1221), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(1623), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1605), - [anon_sym_DOT_DOT] = ACTIONS(1607), - [anon_sym_and] = ACTIONS(1223), - [anon_sym_or] = ACTIONS(1223), - [anon_sym_AMP_AMP] = ACTIONS(1221), - [anon_sym_PIPE_PIPE] = ACTIONS(1221), - [anon_sym_QMARK_QMARK] = ACTIONS(1221), + [anon_sym_await] = ACTIONS(1625), + [anon_sym_DOT_DOT] = ACTIONS(1627), + [anon_sym_and] = ACTIONS(1221), + [anon_sym_or] = ACTIONS(1221), + [anon_sym_AMP_AMP] = ACTIONS(1219), + [anon_sym_PIPE_PIPE] = ACTIONS(1219), + [anon_sym_QMARK_QMARK] = ACTIONS(1219), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -65287,23 +65173,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(1223), - [anon_sym_is] = ACTIONS(1223), - [anon_sym_DASH_GT] = ACTIONS(1221), - [anon_sym_stackalloc] = ACTIONS(1191), - [anon_sym_with] = ACTIONS(1223), - [anon_sym_sizeof] = ACTIONS(1193), - [anon_sym_typeof] = ACTIONS(1195), - [anon_sym___makeref] = ACTIONS(1197), - [anon_sym___reftype] = ACTIONS(1199), - [anon_sym___refvalue] = ACTIONS(1201), - [sym_null_literal] = ACTIONS(1203), - [anon_sym_SQUOTE] = ACTIONS(1205), - [sym_integer_literal] = ACTIONS(1203), - [sym_real_literal] = ACTIONS(1207), - [anon_sym_DQUOTE] = ACTIONS(1209), - [sym_verbatim_string_literal] = ACTIONS(1207), - [aux_sym_preproc_if_token1] = ACTIONS(1211), + [anon_sym_as] = ACTIONS(1221), + [anon_sym_is] = ACTIONS(1221), + [anon_sym_DASH_GT] = ACTIONS(1219), + [anon_sym_stackalloc] = ACTIONS(1331), + [anon_sym_with] = ACTIONS(1221), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(1333), + [anon_sym___reftype] = ACTIONS(1335), + [anon_sym___refvalue] = ACTIONS(1337), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_literal] = ACTIONS(143), + [anon_sym_DQUOTE] = ACTIONS(145), + [sym_verbatim_string_literal] = ACTIONS(143), + [aux_sym_preproc_if_token1] = ACTIONS(1339), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -65314,90 +65200,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1213), - [sym_interpolation_verbatim_start] = ACTIONS(1215), - [sym_interpolation_raw_start] = ACTIONS(1217), - [sym_raw_string_start] = ACTIONS(1219), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [sym_interpolation_raw_start] = ACTIONS(155), + [sym_raw_string_start] = ACTIONS(157), }, [181] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(5910), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2247), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(4585), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3379), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3080), - [sym_postfix_unary_expression] = STATE(3111), - [sym_prefix_unary_expression] = STATE(3111), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2816), + [sym__name] = STATE(5873), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2196), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(4988), + [sym_non_lvalue_expression] = STATE(3495), + [sym_lvalue_expression] = STATE(3514), + [sym__expression_statement_expression] = STATE(3462), + [sym_assignment_expression] = STATE(3497), + [sym_binary_expression] = STATE(3462), + [sym_postfix_unary_expression] = STATE(3497), + [sym_prefix_unary_expression] = STATE(3497), + [sym__pointer_indirection_expression] = STATE(2815), + [sym_query_expression] = STATE(3462), [sym_from_clause] = STATE(6154), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3080), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3111), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3080), - [sym_member_access_expression] = STATE(2484), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3111), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7575), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(3080), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3080), - [sym_typeof_expression] = STATE(3080), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2484), - [sym_literal] = STATE(3080), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_conditional_expression] = STATE(3462), + [sym_conditional_access_expression] = STATE(3462), + [sym_as_expression] = STATE(3462), + [sym_is_expression] = STATE(3462), + [sym_is_pattern_expression] = STATE(3462), + [sym_cast_expression] = STATE(3462), + [sym_checked_expression] = STATE(3462), + [sym_invocation_expression] = STATE(3497), + [sym_switch_expression] = STATE(3462), + [sym_await_expression] = STATE(3497), + [sym_throw_expression] = STATE(3462), + [sym_element_access_expression] = STATE(2815), + [sym_interpolated_string_expression] = STATE(3462), + [sym_member_access_expression] = STATE(2815), + [sym_object_creation_expression] = STATE(3497), + [sym_parenthesized_expression] = STATE(3497), + [sym__parenthesized_lvalue_expression] = STATE(2815), + [sym_lambda_expression] = STATE(3462), + [sym__lambda_expression_init] = STATE(7685), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3462), + [sym_anonymous_method_expression] = STATE(3462), + [sym_anonymous_object_creation_expression] = STATE(3462), + [sym_implicit_array_creation_expression] = STATE(3462), + [sym_implicit_object_creation_expression] = STATE(3462), + [sym_implicit_stackalloc_expression] = STATE(3462), + [sym_initializer_expression] = STATE(3462), + [sym_default_expression] = STATE(3462), + [sym_with_expression] = STATE(3462), + [sym_sizeof_expression] = STATE(3462), + [sym_typeof_expression] = STATE(3462), + [sym_makeref_expression] = STATE(3462), + [sym_ref_expression] = STATE(3462), + [sym_reftype_expression] = STATE(3462), + [sym_refvalue_expression] = STATE(3462), + [sym_stackalloc_expression] = STATE(3462), + [sym_range_expression] = STATE(3462), + [sym_tuple_expression] = STATE(2815), + [sym_literal] = STATE(3462), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2261), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3462), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(181), [sym_preproc_endregion] = STATE(181), [sym_preproc_line] = STATE(181), @@ -65407,68 +65293,68 @@ 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(3067), - [aux_sym_list_pattern_repeat1] = STATE(6839), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), [aux_sym__lambda_expression_init_repeat1] = STATE(3367), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1481), - [anon_sym_COMMA] = ACTIONS(1151), - [anon_sym_RBRACK] = ACTIONS(1151), - [anon_sym_LPAREN] = ACTIONS(895), - [anon_sym_ref] = ACTIONS(897), - [anon_sym_LBRACE] = ACTIONS(1487), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1305), + [anon_sym_LPAREN] = ACTIONS(1613), + [anon_sym_ref] = ACTIONS(1615), + [anon_sym_LBRACE] = ACTIONS(1311), + [anon_sym_delegate] = ACTIONS(1313), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1061), - [anon_sym_LT] = ACTIONS(1165), - [anon_sym_GT] = ACTIONS(1165), + [anon_sym_new] = ACTIONS(1315), + [anon_sym_LT] = ACTIONS(1161), + [anon_sym_GT] = ACTIONS(1161), [anon_sym_where] = ACTIONS(29), - [anon_sym_QMARK] = ACTIONS(1165), + [anon_sym_QMARK] = ACTIONS(1161), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1067), - [anon_sym_BANG] = ACTIONS(1493), - [anon_sym_TILDE] = ACTIONS(1495), - [anon_sym_PLUS_PLUS] = ACTIONS(1495), - [anon_sym_DASH_DASH] = ACTIONS(1495), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1493), - [anon_sym_DASH] = ACTIONS(1493), - [anon_sym_STAR] = ACTIONS(905), - [anon_sym_SLASH] = ACTIONS(1165), - [anon_sym_PERCENT] = ACTIONS(1151), - [anon_sym_CARET] = ACTIONS(1495), - [anon_sym_PIPE] = ACTIONS(1165), - [anon_sym_AMP] = ACTIONS(1493), - [anon_sym_LT_LT] = ACTIONS(1151), - [anon_sym_GT_GT] = ACTIONS(1165), - [anon_sym_GT_GT_GT] = ACTIONS(1151), - [anon_sym_EQ_EQ] = ACTIONS(1151), - [anon_sym_BANG_EQ] = ACTIONS(1151), - [anon_sym_GT_EQ] = ACTIONS(1151), - [anon_sym_LT_EQ] = ACTIONS(1151), - [anon_sym_this] = ACTIONS(83), - [anon_sym_DOT] = ACTIONS(1165), + [anon_sym_checked] = ACTIONS(1317), + [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(1617), + [anon_sym_DASH] = ACTIONS(1617), + [anon_sym_STAR] = ACTIONS(1621), + [anon_sym_SLASH] = ACTIONS(1161), + [anon_sym_PERCENT] = ACTIONS(1147), + [anon_sym_CARET] = ACTIONS(1619), + [anon_sym_PIPE] = ACTIONS(1161), + [anon_sym_AMP] = ACTIONS(1617), + [anon_sym_LT_LT] = ACTIONS(1147), + [anon_sym_GT_GT] = ACTIONS(1161), + [anon_sym_GT_GT_GT] = ACTIONS(1147), + [anon_sym_EQ_EQ] = ACTIONS(1147), + [anon_sym_BANG_EQ] = ACTIONS(1147), + [anon_sym_GT_EQ] = ACTIONS(1147), + [anon_sym_LT_EQ] = ACTIONS(1147), + [anon_sym_this] = ACTIONS(1321), + [anon_sym_DOT] = ACTIONS(1161), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), + [anon_sym_base] = ACTIONS(1323), + [anon_sym_EQ_GT] = ACTIONS(1147), [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1067), + [anon_sym_unchecked] = ACTIONS(1317), [anon_sym_yield] = ACTIONS(29), - [anon_sym_switch] = ACTIONS(1165), + [anon_sym_switch] = ACTIONS(1161), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1079), + [anon_sym_throw] = ACTIONS(1623), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1081), - [anon_sym_DOT_DOT] = ACTIONS(911), - [anon_sym_AMP_AMP] = ACTIONS(1151), - [anon_sym_PIPE_PIPE] = ACTIONS(1151), - [anon_sym_QMARK_QMARK] = ACTIONS(1151), + [anon_sym_await] = ACTIONS(1625), + [anon_sym_DOT_DOT] = ACTIONS(1627), + [anon_sym_and] = ACTIONS(1161), + [anon_sym_or] = ACTIONS(1161), + [anon_sym_AMP_AMP] = ACTIONS(1147), + [anon_sym_PIPE_PIPE] = ACTIONS(1147), + [anon_sym_QMARK_QMARK] = ACTIONS(1147), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -65481,23 +65367,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(1165), - [anon_sym_is] = ACTIONS(1165), - [anon_sym_DASH_GT] = ACTIONS(1151), - [anon_sym_stackalloc] = ACTIONS(127), - [anon_sym_with] = ACTIONS(1165), + [anon_sym_as] = ACTIONS(1161), + [anon_sym_is] = ACTIONS(1161), + [anon_sym_DASH_GT] = ACTIONS(1147), + [anon_sym_stackalloc] = ACTIONS(1331), + [anon_sym_with] = ACTIONS(1161), [anon_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(1333), + [anon_sym___reftype] = ACTIONS(1335), + [anon_sym___refvalue] = ACTIONS(1337), [sym_null_literal] = ACTIONS(139), [anon_sym_SQUOTE] = ACTIONS(141), [sym_integer_literal] = ACTIONS(139), [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1089), + [aux_sym_preproc_if_token1] = ACTIONS(1339), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -65514,84 +65400,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [182] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2914), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2459), [sym__name] = STATE(5873), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2362), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(3693), - [sym_non_lvalue_expression] = STATE(3880), - [sym_lvalue_expression] = STATE(2949), - [sym__expression_statement_expression] = STATE(3873), - [sym_assignment_expression] = STATE(3881), - [sym_binary_expression] = STATE(3873), - [sym_postfix_unary_expression] = STATE(3881), - [sym_prefix_unary_expression] = STATE(3881), - [sym__pointer_indirection_expression] = STATE(2913), - [sym_query_expression] = STATE(3873), - [sym_from_clause] = STATE(6182), - [sym_conditional_expression] = STATE(3873), - [sym_conditional_access_expression] = STATE(3873), - [sym_as_expression] = STATE(3873), - [sym_is_expression] = STATE(3873), - [sym_is_pattern_expression] = STATE(3873), - [sym_cast_expression] = STATE(3873), - [sym_checked_expression] = STATE(3873), - [sym_invocation_expression] = STATE(3881), - [sym_switch_expression] = STATE(3873), - [sym_await_expression] = STATE(3881), - [sym_throw_expression] = STATE(3873), - [sym_element_access_expression] = STATE(2913), - [sym_interpolated_string_expression] = STATE(3873), - [sym_member_access_expression] = STATE(2913), - [sym_object_creation_expression] = STATE(3881), - [sym_parenthesized_expression] = STATE(3881), - [sym__parenthesized_lvalue_expression] = STATE(2913), - [sym_lambda_expression] = STATE(3873), - [sym__lambda_expression_init] = STATE(7721), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3873), - [sym_anonymous_method_expression] = STATE(3873), - [sym_anonymous_object_creation_expression] = STATE(3873), - [sym_implicit_array_creation_expression] = STATE(3873), - [sym_implicit_object_creation_expression] = STATE(3873), - [sym_implicit_stackalloc_expression] = STATE(3873), - [sym_initializer_expression] = STATE(3873), - [sym_default_expression] = STATE(3873), - [sym_with_expression] = STATE(3873), - [sym_sizeof_expression] = STATE(3873), - [sym_typeof_expression] = STATE(3873), - [sym_makeref_expression] = STATE(3873), - [sym_ref_expression] = STATE(3873), - [sym_reftype_expression] = STATE(3873), - [sym_refvalue_expression] = STATE(3873), - [sym_stackalloc_expression] = STATE(3873), - [sym_range_expression] = STATE(3873), - [sym_tuple_expression] = STATE(2913), - [sym_literal] = STATE(3873), - [sym_character_literal] = STATE(3877), - [sym_string_literal] = STATE(3877), - [sym_raw_string_literal] = STATE(3877), - [sym_boolean_literal] = STATE(3877), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3873), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2238), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(4921), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3526), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3102), + [sym_postfix_unary_expression] = STATE(3079), + [sym_prefix_unary_expression] = STATE(3079), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6134), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3102), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3079), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3102), + [sym_member_access_expression] = STATE(2472), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3079), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7455), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(3102), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3102), + [sym_typeof_expression] = STATE(3102), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2472), + [sym_literal] = STATE(3102), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(182), [sym_preproc_endregion] = STATE(182), [sym_preproc_line] = STATE(182), @@ -65601,68 +65487,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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3382), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), + [anon_sym_SEMI] = ACTIONS(1219), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1627), - [anon_sym_COMMA] = ACTIONS(1221), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1479), + [anon_sym_COMMA] = ACTIONS(1219), [anon_sym_LPAREN] = ACTIONS(1629), [anon_sym_ref] = ACTIONS(1631), - [anon_sym_LBRACE] = ACTIONS(1633), - [anon_sym_delegate] = ACTIONS(1635), - [anon_sym_async] = ACTIONS(1047), - [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1637), - [anon_sym_LT] = ACTIONS(1223), - [anon_sym_GT] = ACTIONS(1223), - [anon_sym_where] = ACTIONS(29), - [anon_sym_QMARK] = ACTIONS(1223), - [anon_sym_notnull] = ACTIONS(29), - [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1639), - [anon_sym_BANG] = ACTIONS(1641), - [anon_sym_TILDE] = ACTIONS(1643), - [anon_sym_PLUS_PLUS] = ACTIONS(1643), - [anon_sym_DASH_DASH] = ACTIONS(1643), - [anon_sym_true] = ACTIONS(1645), - [anon_sym_false] = ACTIONS(1645), - [anon_sym_PLUS] = ACTIONS(1641), - [anon_sym_DASH] = ACTIONS(1641), - [anon_sym_STAR] = ACTIONS(1647), - [anon_sym_SLASH] = ACTIONS(1223), - [anon_sym_PERCENT] = ACTIONS(1221), - [anon_sym_CARET] = ACTIONS(1643), - [anon_sym_PIPE] = ACTIONS(1223), - [anon_sym_AMP] = ACTIONS(1641), - [anon_sym_LT_LT] = ACTIONS(1221), - [anon_sym_GT_GT] = ACTIONS(1223), - [anon_sym_GT_GT_GT] = ACTIONS(1221), - [anon_sym_EQ_EQ] = ACTIONS(1221), - [anon_sym_BANG_EQ] = ACTIONS(1221), - [anon_sym_GT_EQ] = ACTIONS(1221), - [anon_sym_LT_EQ] = ACTIONS(1221), - [anon_sym_this] = ACTIONS(1649), - [anon_sym_DOT] = ACTIONS(1223), + [anon_sym_LBRACE] = ACTIONS(1481), + [anon_sym_RBRACE] = ACTIONS(1219), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), + [anon_sym_file] = ACTIONS(29), + [anon_sym_new] = ACTIONS(1515), + [anon_sym_LT] = ACTIONS(1221), + [anon_sym_GT] = ACTIONS(1221), + [anon_sym_where] = ACTIONS(29), + [anon_sym_QMARK] = ACTIONS(1221), + [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_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_SLASH] = ACTIONS(1221), + [anon_sym_PERCENT] = ACTIONS(1219), + [anon_sym_CARET] = ACTIONS(679), + [anon_sym_PIPE] = ACTIONS(1221), + [anon_sym_AMP] = ACTIONS(681), + [anon_sym_LT_LT] = ACTIONS(1219), + [anon_sym_GT_GT] = ACTIONS(1221), + [anon_sym_GT_GT_GT] = ACTIONS(1219), + [anon_sym_EQ_EQ] = ACTIONS(1219), + [anon_sym_BANG_EQ] = ACTIONS(1219), + [anon_sym_GT_EQ] = ACTIONS(1219), + [anon_sym_LT_EQ] = ACTIONS(1219), + [anon_sym_this] = ACTIONS(83), + [anon_sym_DOT] = ACTIONS(1221), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1651), + [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1653), - [anon_sym_unchecked] = ACTIONS(1639), + [sym_predefined_type] = ACTIONS(91), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), - [anon_sym_switch] = ACTIONS(1223), - [anon_sym_default] = ACTIONS(1655), - [anon_sym_throw] = ACTIONS(1657), + [anon_sym_switch] = ACTIONS(1221), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(1633), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1659), - [anon_sym_DOT_DOT] = ACTIONS(1661), - [anon_sym_and] = ACTIONS(1223), - [anon_sym_or] = ACTIONS(1223), - [anon_sym_AMP_AMP] = ACTIONS(1221), - [anon_sym_PIPE_PIPE] = ACTIONS(1221), - [anon_sym_QMARK_QMARK] = ACTIONS(1221), + [anon_sym_await] = ACTIONS(1635), + [anon_sym_DOT_DOT] = ACTIONS(1637), + [anon_sym_AMP_AMP] = ACTIONS(1219), + [anon_sym_PIPE_PIPE] = ACTIONS(1219), + [anon_sym_QMARK_QMARK] = ACTIONS(1219), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -65675,23 +65561,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(1223), - [anon_sym_is] = ACTIONS(1223), - [anon_sym_DASH_GT] = ACTIONS(1221), - [anon_sym_stackalloc] = ACTIONS(1663), - [anon_sym_with] = ACTIONS(1223), - [anon_sym_sizeof] = ACTIONS(1665), - [anon_sym_typeof] = ACTIONS(1667), - [anon_sym___makeref] = ACTIONS(1669), - [anon_sym___reftype] = ACTIONS(1671), - [anon_sym___refvalue] = ACTIONS(1673), - [sym_null_literal] = ACTIONS(1675), - [anon_sym_SQUOTE] = ACTIONS(1677), - [sym_integer_literal] = ACTIONS(1675), - [sym_real_literal] = ACTIONS(1679), - [anon_sym_DQUOTE] = ACTIONS(1681), - [sym_verbatim_string_literal] = ACTIONS(1679), - [aux_sym_preproc_if_token1] = ACTIONS(1683), + [anon_sym_as] = ACTIONS(1221), + [anon_sym_is] = ACTIONS(1221), + [anon_sym_DASH_GT] = ACTIONS(1219), + [anon_sym_stackalloc] = ACTIONS(127), + [anon_sym_with] = ACTIONS(1221), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_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), @@ -65702,90 +65588,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1685), - [sym_interpolation_verbatim_start] = ACTIONS(1687), - [sym_interpolation_raw_start] = ACTIONS(1689), - [sym_raw_string_start] = ACTIONS(1691), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [sym_interpolation_raw_start] = ACTIONS(155), + [sym_raw_string_start] = ACTIONS(157), }, [183] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(5910), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2247), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(4933), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3529), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3080), - [sym_postfix_unary_expression] = STATE(3111), - [sym_prefix_unary_expression] = STATE(3111), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6154), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3080), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3111), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3080), - [sym_member_access_expression] = STATE(2484), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3111), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7444), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(3080), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3080), - [sym_typeof_expression] = STATE(3080), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2484), - [sym_literal] = STATE(3080), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2816), + [sym__name] = STATE(5860), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2321), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(4733), + [sym_non_lvalue_expression] = STATE(3495), + [sym_lvalue_expression] = STATE(3349), + [sym__expression_statement_expression] = STATE(3462), + [sym_assignment_expression] = STATE(3497), + [sym_binary_expression] = STATE(3462), + [sym_postfix_unary_expression] = STATE(3497), + [sym_prefix_unary_expression] = STATE(3497), + [sym__pointer_indirection_expression] = STATE(2815), + [sym_query_expression] = STATE(3462), + [sym_from_clause] = STATE(6152), + [sym_conditional_expression] = STATE(3462), + [sym_conditional_access_expression] = STATE(3462), + [sym_as_expression] = STATE(3462), + [sym_is_expression] = STATE(3462), + [sym_is_pattern_expression] = STATE(3462), + [sym_cast_expression] = STATE(3462), + [sym_checked_expression] = STATE(3462), + [sym_invocation_expression] = STATE(3497), + [sym_switch_expression] = STATE(3462), + [sym_await_expression] = STATE(3497), + [sym_throw_expression] = STATE(3462), + [sym_element_access_expression] = STATE(2815), + [sym_interpolated_string_expression] = STATE(3462), + [sym_member_access_expression] = STATE(2815), + [sym_object_creation_expression] = STATE(3497), + [sym_parenthesized_expression] = STATE(3497), + [sym__parenthesized_lvalue_expression] = STATE(2815), + [sym_lambda_expression] = STATE(3462), + [sym__lambda_expression_init] = STATE(7658), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3462), + [sym_anonymous_method_expression] = STATE(3462), + [sym_anonymous_object_creation_expression] = STATE(3462), + [sym_implicit_array_creation_expression] = STATE(3462), + [sym_implicit_object_creation_expression] = STATE(3462), + [sym_implicit_stackalloc_expression] = STATE(3462), + [sym_initializer_expression] = STATE(3462), + [sym_default_expression] = STATE(3462), + [sym_with_expression] = STATE(3462), + [sym_sizeof_expression] = STATE(3462), + [sym_typeof_expression] = STATE(3462), + [sym_makeref_expression] = STATE(3462), + [sym_ref_expression] = STATE(3462), + [sym_reftype_expression] = STATE(3462), + [sym_refvalue_expression] = STATE(3462), + [sym_stackalloc_expression] = STATE(3462), + [sym_range_expression] = STATE(3462), + [sym_tuple_expression] = STATE(2815), + [sym_literal] = STATE(3462), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3462), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(183), [sym_preproc_endregion] = STATE(183), [sym_preproc_line] = STATE(183), @@ -65795,68 +65681,68 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(183), [sym_preproc_define] = STATE(183), [sym_preproc_undef] = STATE(183), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3067), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), [aux_sym__lambda_expression_init_repeat1] = STATE(3367), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), - [anon_sym_SEMI] = ACTIONS(1151), - [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1481), - [anon_sym_COMMA] = ACTIONS(1151), - [anon_sym_LPAREN] = ACTIONS(1575), - [anon_sym_ref] = ACTIONS(1577), - [anon_sym_LBRACE] = ACTIONS(1487), - [anon_sym_RBRACE] = ACTIONS(1151), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), - [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1501), - [anon_sym_LT] = ACTIONS(1165), - [anon_sym_GT] = ACTIONS(1165), - [anon_sym_where] = ACTIONS(29), - [anon_sym_QMARK] = ACTIONS(1165), - [anon_sym_notnull] = ACTIONS(29), - [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1067), - [anon_sym_BANG] = ACTIONS(903), - [anon_sym_TILDE] = ACTIONS(901), - [anon_sym_PLUS_PLUS] = ACTIONS(901), - [anon_sym_DASH_DASH] = ACTIONS(901), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(903), - [anon_sym_DASH] = ACTIONS(903), - [anon_sym_STAR] = ACTIONS(905), - [anon_sym_SLASH] = ACTIONS(1165), - [anon_sym_PERCENT] = ACTIONS(1151), - [anon_sym_CARET] = ACTIONS(901), - [anon_sym_PIPE] = ACTIONS(1165), - [anon_sym_AMP] = ACTIONS(903), - [anon_sym_LT_LT] = ACTIONS(1151), - [anon_sym_GT_GT] = ACTIONS(1165), - [anon_sym_GT_GT_GT] = ACTIONS(1151), - [anon_sym_EQ_EQ] = ACTIONS(1151), - [anon_sym_BANG_EQ] = ACTIONS(1151), - [anon_sym_GT_EQ] = ACTIONS(1151), - [anon_sym_LT_EQ] = ACTIONS(1151), - [anon_sym_this] = ACTIONS(83), - [anon_sym_DOT] = ACTIONS(1165), + [anon_sym_global] = ACTIONS(29), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1305), + [anon_sym_COLON] = ACTIONS(1219), + [anon_sym_LPAREN] = ACTIONS(1639), + [anon_sym_ref] = ACTIONS(1641), + [anon_sym_LBRACE] = ACTIONS(1311), + [anon_sym_delegate] = ACTIONS(1313), + [anon_sym_async] = ACTIONS(1045), + [anon_sym_file] = ACTIONS(29), + [anon_sym_new] = ACTIONS(1583), + [anon_sym_LT] = ACTIONS(1221), + [anon_sym_GT] = ACTIONS(1221), + [anon_sym_where] = ACTIONS(29), + [anon_sym_QMARK] = ACTIONS(1221), + [anon_sym_notnull] = ACTIONS(29), + [anon_sym_unmanaged] = ACTIONS(29), + [anon_sym_checked] = ACTIONS(1317), + [anon_sym_BANG] = ACTIONS(1643), + [anon_sym_TILDE] = ACTIONS(1645), + [anon_sym_PLUS_PLUS] = ACTIONS(1645), + [anon_sym_DASH_DASH] = ACTIONS(1645), + [anon_sym_true] = ACTIONS(77), + [anon_sym_false] = ACTIONS(77), + [anon_sym_PLUS] = ACTIONS(1643), + [anon_sym_DASH] = ACTIONS(1643), + [anon_sym_STAR] = ACTIONS(1647), + [anon_sym_SLASH] = ACTIONS(1221), + [anon_sym_PERCENT] = ACTIONS(1219), + [anon_sym_CARET] = ACTIONS(1645), + [anon_sym_PIPE] = ACTIONS(1221), + [anon_sym_AMP] = ACTIONS(1643), + [anon_sym_LT_LT] = ACTIONS(1219), + [anon_sym_GT_GT] = ACTIONS(1221), + [anon_sym_GT_GT_GT] = ACTIONS(1219), + [anon_sym_EQ_EQ] = ACTIONS(1219), + [anon_sym_BANG_EQ] = ACTIONS(1219), + [anon_sym_GT_EQ] = ACTIONS(1219), + [anon_sym_LT_EQ] = ACTIONS(1219), + [anon_sym_this] = ACTIONS(1321), + [anon_sym_DOT] = ACTIONS(1221), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), + [anon_sym_base] = ACTIONS(1323), [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1067), + [anon_sym_unchecked] = ACTIONS(1317), [anon_sym_yield] = ACTIONS(29), - [anon_sym_switch] = ACTIONS(1165), + [anon_sym_switch] = ACTIONS(1221), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1579), + [anon_sym_throw] = ACTIONS(1649), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1581), - [anon_sym_DOT_DOT] = ACTIONS(1583), - [anon_sym_AMP_AMP] = ACTIONS(1151), - [anon_sym_PIPE_PIPE] = ACTIONS(1151), - [anon_sym_QMARK_QMARK] = ACTIONS(1151), + [anon_sym_await] = ACTIONS(1651), + [anon_sym_DOT_DOT] = ACTIONS(1653), + [anon_sym_and] = ACTIONS(1221), + [anon_sym_or] = ACTIONS(1221), + [anon_sym_AMP_AMP] = ACTIONS(1219), + [anon_sym_PIPE_PIPE] = ACTIONS(1219), + [anon_sym_QMARK_QMARK] = ACTIONS(1219), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -65869,23 +65755,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(1165), - [anon_sym_is] = ACTIONS(1165), - [anon_sym_DASH_GT] = ACTIONS(1151), - [anon_sym_stackalloc] = ACTIONS(127), - [anon_sym_with] = ACTIONS(1165), + [anon_sym_as] = ACTIONS(1221), + [anon_sym_is] = ACTIONS(1221), + [anon_sym_DASH_GT] = ACTIONS(1219), + [anon_sym_stackalloc] = ACTIONS(1331), + [anon_sym_with] = ACTIONS(1221), [anon_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(1333), + [anon_sym___reftype] = ACTIONS(1335), + [anon_sym___refvalue] = ACTIONS(1337), [sym_null_literal] = ACTIONS(139), [anon_sym_SQUOTE] = ACTIONS(141), [sym_integer_literal] = ACTIONS(139), [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1089), + [aux_sym_preproc_if_token1] = ACTIONS(1339), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -65902,84 +65788,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [184] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2762), - [sym__name] = STATE(5910), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2204), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(5038), - [sym_non_lvalue_expression] = STATE(3438), - [sym_lvalue_expression] = STATE(3524), - [sym__expression_statement_expression] = STATE(3362), - [sym_assignment_expression] = STATE(3449), - [sym_binary_expression] = STATE(3362), - [sym_postfix_unary_expression] = STATE(3449), - [sym_prefix_unary_expression] = STATE(3449), - [sym__pointer_indirection_expression] = STATE(2747), - [sym_query_expression] = STATE(3362), - [sym_from_clause] = STATE(6174), - [sym_conditional_expression] = STATE(3362), - [sym_conditional_access_expression] = STATE(3362), - [sym_as_expression] = STATE(3362), - [sym_is_expression] = STATE(3362), - [sym_is_pattern_expression] = STATE(3362), - [sym_cast_expression] = STATE(3362), - [sym_checked_expression] = STATE(3362), - [sym_invocation_expression] = STATE(3449), - [sym_switch_expression] = STATE(3362), - [sym_await_expression] = STATE(3449), - [sym_throw_expression] = STATE(3362), - [sym_element_access_expression] = STATE(2747), - [sym_interpolated_string_expression] = STATE(3362), - [sym_member_access_expression] = STATE(2747), - [sym_object_creation_expression] = STATE(3449), - [sym_parenthesized_expression] = STATE(3449), - [sym__parenthesized_lvalue_expression] = STATE(2747), - [sym_lambda_expression] = STATE(3362), - [sym__lambda_expression_init] = STATE(7407), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3362), - [sym_anonymous_method_expression] = STATE(3362), - [sym_anonymous_object_creation_expression] = STATE(3362), - [sym_implicit_array_creation_expression] = STATE(3362), - [sym_implicit_object_creation_expression] = STATE(3362), - [sym_implicit_stackalloc_expression] = STATE(3362), - [sym_initializer_expression] = STATE(3362), - [sym_default_expression] = STATE(3362), - [sym_with_expression] = STATE(3362), - [sym_sizeof_expression] = STATE(3362), - [sym_typeof_expression] = STATE(3362), - [sym_makeref_expression] = STATE(3362), - [sym_ref_expression] = STATE(3362), - [sym_reftype_expression] = STATE(3362), - [sym_refvalue_expression] = STATE(3362), - [sym_stackalloc_expression] = STATE(3362), - [sym_range_expression] = STATE(3362), - [sym_tuple_expression] = STATE(2747), - [sym_literal] = STATE(3362), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3362), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2816), + [sym__name] = STATE(5860), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2321), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(4531), + [sym_non_lvalue_expression] = STATE(3495), + [sym_lvalue_expression] = STATE(3349), + [sym__expression_statement_expression] = STATE(3462), + [sym_assignment_expression] = STATE(3497), + [sym_binary_expression] = STATE(3462), + [sym_postfix_unary_expression] = STATE(3497), + [sym_prefix_unary_expression] = STATE(3497), + [sym__pointer_indirection_expression] = STATE(2815), + [sym_query_expression] = STATE(3462), + [sym_from_clause] = STATE(6152), + [sym_conditional_expression] = STATE(3462), + [sym_conditional_access_expression] = STATE(3462), + [sym_as_expression] = STATE(3462), + [sym_is_expression] = STATE(3462), + [sym_is_pattern_expression] = STATE(3462), + [sym_cast_expression] = STATE(3462), + [sym_checked_expression] = STATE(3462), + [sym_invocation_expression] = STATE(3497), + [sym_switch_expression] = STATE(3462), + [sym_await_expression] = STATE(3497), + [sym_throw_expression] = STATE(3462), + [sym_element_access_expression] = STATE(2815), + [sym_interpolated_string_expression] = STATE(3462), + [sym_member_access_expression] = STATE(2815), + [sym_object_creation_expression] = STATE(3497), + [sym_parenthesized_expression] = STATE(3497), + [sym__parenthesized_lvalue_expression] = STATE(2815), + [sym_lambda_expression] = STATE(3462), + [sym__lambda_expression_init] = STATE(7658), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3462), + [sym_anonymous_method_expression] = STATE(3462), + [sym_anonymous_object_creation_expression] = STATE(3462), + [sym_implicit_array_creation_expression] = STATE(3462), + [sym_implicit_object_creation_expression] = STATE(3462), + [sym_implicit_stackalloc_expression] = STATE(3462), + [sym_initializer_expression] = STATE(3462), + [sym_default_expression] = STATE(3462), + [sym_with_expression] = STATE(3462), + [sym_sizeof_expression] = STATE(3462), + [sym_typeof_expression] = STATE(3462), + [sym_makeref_expression] = STATE(3462), + [sym_ref_expression] = STATE(3462), + [sym_reftype_expression] = STATE(3462), + [sym_refvalue_expression] = STATE(3462), + [sym_stackalloc_expression] = STATE(3462), + [sym_range_expression] = STATE(3462), + [sym_tuple_expression] = STATE(2815), + [sym_literal] = STATE(3462), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3462), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(184), [sym_preproc_endregion] = STATE(184), [sym_preproc_line] = STATE(184), @@ -65989,68 +65875,68 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(184), [sym_preproc_define] = STATE(184), [sym_preproc_undef] = STATE(184), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3385), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3367), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1307), - [anon_sym_LPAREN] = ACTIONS(1693), - [anon_sym_ref] = ACTIONS(1695), - [anon_sym_LBRACE] = ACTIONS(1313), - [anon_sym_delegate] = ACTIONS(1315), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1305), + [anon_sym_COLON] = ACTIONS(1147), + [anon_sym_LPAREN] = ACTIONS(1639), + [anon_sym_ref] = ACTIONS(1641), + [anon_sym_LBRACE] = ACTIONS(1311), + [anon_sym_delegate] = ACTIONS(1313), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1697), - [anon_sym_LT] = ACTIONS(1165), - [anon_sym_GT] = ACTIONS(1165), - [anon_sym_in] = ACTIONS(1165), + [anon_sym_new] = ACTIONS(1583), + [anon_sym_LT] = ACTIONS(1161), + [anon_sym_GT] = ACTIONS(1161), [anon_sym_where] = ACTIONS(29), - [anon_sym_QMARK] = ACTIONS(1165), + [anon_sym_QMARK] = ACTIONS(1161), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1319), - [anon_sym_BANG] = ACTIONS(1699), - [anon_sym_TILDE] = ACTIONS(1701), - [anon_sym_PLUS_PLUS] = ACTIONS(1701), - [anon_sym_DASH_DASH] = ACTIONS(1701), + [anon_sym_checked] = ACTIONS(1317), + [anon_sym_BANG] = ACTIONS(1643), + [anon_sym_TILDE] = ACTIONS(1645), + [anon_sym_PLUS_PLUS] = ACTIONS(1645), + [anon_sym_DASH_DASH] = ACTIONS(1645), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1699), - [anon_sym_DASH] = ACTIONS(1699), - [anon_sym_STAR] = ACTIONS(1351), - [anon_sym_SLASH] = ACTIONS(1165), - [anon_sym_PERCENT] = ACTIONS(1151), - [anon_sym_CARET] = ACTIONS(1701), - [anon_sym_PIPE] = ACTIONS(1165), - [anon_sym_AMP] = ACTIONS(1699), - [anon_sym_LT_LT] = ACTIONS(1151), - [anon_sym_GT_GT] = ACTIONS(1165), - [anon_sym_GT_GT_GT] = ACTIONS(1151), - [anon_sym_EQ_EQ] = ACTIONS(1151), - [anon_sym_BANG_EQ] = ACTIONS(1151), - [anon_sym_GT_EQ] = ACTIONS(1151), - [anon_sym_LT_EQ] = ACTIONS(1151), - [anon_sym_this] = ACTIONS(1323), - [anon_sym_DOT] = ACTIONS(1165), + [anon_sym_PLUS] = ACTIONS(1643), + [anon_sym_DASH] = ACTIONS(1643), + [anon_sym_STAR] = ACTIONS(1647), + [anon_sym_SLASH] = ACTIONS(1161), + [anon_sym_PERCENT] = ACTIONS(1147), + [anon_sym_CARET] = ACTIONS(1645), + [anon_sym_PIPE] = ACTIONS(1161), + [anon_sym_AMP] = ACTIONS(1643), + [anon_sym_LT_LT] = ACTIONS(1147), + [anon_sym_GT_GT] = ACTIONS(1161), + [anon_sym_GT_GT_GT] = ACTIONS(1147), + [anon_sym_EQ_EQ] = ACTIONS(1147), + [anon_sym_BANG_EQ] = ACTIONS(1147), + [anon_sym_GT_EQ] = ACTIONS(1147), + [anon_sym_LT_EQ] = ACTIONS(1147), + [anon_sym_this] = ACTIONS(1321), + [anon_sym_DOT] = ACTIONS(1161), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1325), + [anon_sym_base] = ACTIONS(1323), [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1319), + [anon_sym_unchecked] = ACTIONS(1317), [anon_sym_yield] = ACTIONS(29), - [anon_sym_switch] = ACTIONS(1165), + [anon_sym_switch] = ACTIONS(1161), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1703), + [anon_sym_throw] = ACTIONS(1649), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1705), - [anon_sym_DOT_DOT] = ACTIONS(1707), - [anon_sym_and] = ACTIONS(1165), - [anon_sym_or] = ACTIONS(1165), - [anon_sym_AMP_AMP] = ACTIONS(1151), - [anon_sym_PIPE_PIPE] = ACTIONS(1151), - [anon_sym_QMARK_QMARK] = ACTIONS(1151), + [anon_sym_await] = ACTIONS(1651), + [anon_sym_DOT_DOT] = ACTIONS(1653), + [anon_sym_and] = ACTIONS(1161), + [anon_sym_or] = ACTIONS(1161), + [anon_sym_AMP_AMP] = ACTIONS(1147), + [anon_sym_PIPE_PIPE] = ACTIONS(1147), + [anon_sym_QMARK_QMARK] = ACTIONS(1147), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -66063,23 +65949,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(1165), - [anon_sym_is] = ACTIONS(1165), - [anon_sym_DASH_GT] = ACTIONS(1151), - [anon_sym_stackalloc] = ACTIONS(1333), - [anon_sym_with] = ACTIONS(1165), + [anon_sym_as] = ACTIONS(1161), + [anon_sym_is] = ACTIONS(1161), + [anon_sym_DASH_GT] = ACTIONS(1147), + [anon_sym_stackalloc] = ACTIONS(1331), + [anon_sym_with] = ACTIONS(1161), [anon_sym_sizeof] = ACTIONS(129), [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(1335), - [anon_sym___reftype] = ACTIONS(1337), - [anon_sym___refvalue] = ACTIONS(1339), + [anon_sym___makeref] = ACTIONS(1333), + [anon_sym___reftype] = ACTIONS(1335), + [anon_sym___refvalue] = ACTIONS(1337), [sym_null_literal] = ACTIONS(139), [anon_sym_SQUOTE] = ACTIONS(141), [sym_integer_literal] = ACTIONS(139), [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1709), + [aux_sym_preproc_if_token1] = ACTIONS(1339), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -66096,84 +65982,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [185] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2762), - [sym__name] = STATE(5910), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2204), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(4847), - [sym_non_lvalue_expression] = STATE(3438), - [sym_lvalue_expression] = STATE(3524), - [sym__expression_statement_expression] = STATE(3362), - [sym_assignment_expression] = STATE(3449), - [sym_binary_expression] = STATE(3362), - [sym_postfix_unary_expression] = STATE(3449), - [sym_prefix_unary_expression] = STATE(3449), - [sym__pointer_indirection_expression] = STATE(2747), - [sym_query_expression] = STATE(3362), - [sym_from_clause] = STATE(6174), - [sym_conditional_expression] = STATE(3362), - [sym_conditional_access_expression] = STATE(3362), - [sym_as_expression] = STATE(3362), - [sym_is_expression] = STATE(3362), - [sym_is_pattern_expression] = STATE(3362), - [sym_cast_expression] = STATE(3362), - [sym_checked_expression] = STATE(3362), - [sym_invocation_expression] = STATE(3449), - [sym_switch_expression] = STATE(3362), - [sym_await_expression] = STATE(3449), - [sym_throw_expression] = STATE(3362), - [sym_element_access_expression] = STATE(2747), - [sym_interpolated_string_expression] = STATE(3362), - [sym_member_access_expression] = STATE(2747), - [sym_object_creation_expression] = STATE(3449), - [sym_parenthesized_expression] = STATE(3449), - [sym__parenthesized_lvalue_expression] = STATE(2747), - [sym_lambda_expression] = STATE(3362), - [sym__lambda_expression_init] = STATE(7407), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3362), - [sym_anonymous_method_expression] = STATE(3362), - [sym_anonymous_object_creation_expression] = STATE(3362), - [sym_implicit_array_creation_expression] = STATE(3362), - [sym_implicit_object_creation_expression] = STATE(3362), - [sym_implicit_stackalloc_expression] = STATE(3362), - [sym_initializer_expression] = STATE(3362), - [sym_default_expression] = STATE(3362), - [sym_with_expression] = STATE(3362), - [sym_sizeof_expression] = STATE(3362), - [sym_typeof_expression] = STATE(3362), - [sym_makeref_expression] = STATE(3362), - [sym_ref_expression] = STATE(3362), - [sym_reftype_expression] = STATE(3362), - [sym_refvalue_expression] = STATE(3362), - [sym_stackalloc_expression] = STATE(3362), - [sym_range_expression] = STATE(3362), - [sym_tuple_expression] = STATE(2747), - [sym_literal] = STATE(3362), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3362), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(5873), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2238), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(5034), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3526), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3102), + [sym_postfix_unary_expression] = STATE(3079), + [sym_prefix_unary_expression] = STATE(3079), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6134), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3102), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3079), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3102), + [sym_member_access_expression] = STATE(2472), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3079), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7455), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(3102), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3102), + [sym_typeof_expression] = STATE(3102), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2472), + [sym_literal] = STATE(3102), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(185), [sym_preproc_endregion] = STATE(185), [sym_preproc_line] = STATE(185), @@ -66183,68 +66069,68 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(185), [sym_preproc_define] = STATE(185), [sym_preproc_undef] = STATE(185), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3385), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), + [anon_sym_SEMI] = ACTIONS(1147), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1307), - [anon_sym_LPAREN] = ACTIONS(1693), - [anon_sym_ref] = ACTIONS(1695), - [anon_sym_LBRACE] = ACTIONS(1313), - [anon_sym_delegate] = ACTIONS(1315), - [anon_sym_async] = ACTIONS(1047), - [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1697), - [anon_sym_LT] = ACTIONS(1223), - [anon_sym_GT] = ACTIONS(1223), - [anon_sym_in] = ACTIONS(1223), - [anon_sym_where] = ACTIONS(29), - [anon_sym_QMARK] = ACTIONS(1223), - [anon_sym_notnull] = ACTIONS(29), - [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1319), - [anon_sym_BANG] = ACTIONS(1699), - [anon_sym_TILDE] = ACTIONS(1701), - [anon_sym_PLUS_PLUS] = ACTIONS(1701), - [anon_sym_DASH_DASH] = ACTIONS(1701), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1699), - [anon_sym_DASH] = ACTIONS(1699), - [anon_sym_STAR] = ACTIONS(1351), - [anon_sym_SLASH] = ACTIONS(1223), - [anon_sym_PERCENT] = ACTIONS(1221), - [anon_sym_CARET] = ACTIONS(1701), - [anon_sym_PIPE] = ACTIONS(1223), - [anon_sym_AMP] = ACTIONS(1699), - [anon_sym_LT_LT] = ACTIONS(1221), - [anon_sym_GT_GT] = ACTIONS(1223), - [anon_sym_GT_GT_GT] = ACTIONS(1221), - [anon_sym_EQ_EQ] = ACTIONS(1221), - [anon_sym_BANG_EQ] = ACTIONS(1221), - [anon_sym_GT_EQ] = ACTIONS(1221), - [anon_sym_LT_EQ] = ACTIONS(1221), - [anon_sym_this] = ACTIONS(1323), - [anon_sym_DOT] = ACTIONS(1223), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1479), + [anon_sym_COMMA] = ACTIONS(1147), + [anon_sym_LPAREN] = ACTIONS(1629), + [anon_sym_ref] = ACTIONS(1631), + [anon_sym_LBRACE] = ACTIONS(1481), + [anon_sym_RBRACE] = ACTIONS(1147), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), + [anon_sym_file] = ACTIONS(29), + [anon_sym_new] = ACTIONS(1515), + [anon_sym_LT] = ACTIONS(1161), + [anon_sym_GT] = ACTIONS(1161), + [anon_sym_where] = ACTIONS(29), + [anon_sym_QMARK] = ACTIONS(1161), + [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_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_SLASH] = ACTIONS(1161), + [anon_sym_PERCENT] = ACTIONS(1147), + [anon_sym_CARET] = ACTIONS(679), + [anon_sym_PIPE] = ACTIONS(1161), + [anon_sym_AMP] = ACTIONS(681), + [anon_sym_LT_LT] = ACTIONS(1147), + [anon_sym_GT_GT] = ACTIONS(1161), + [anon_sym_GT_GT_GT] = ACTIONS(1147), + [anon_sym_EQ_EQ] = ACTIONS(1147), + [anon_sym_BANG_EQ] = ACTIONS(1147), + [anon_sym_GT_EQ] = ACTIONS(1147), + [anon_sym_LT_EQ] = ACTIONS(1147), + [anon_sym_this] = ACTIONS(83), + [anon_sym_DOT] = ACTIONS(1161), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1325), + [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1319), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), - [anon_sym_switch] = ACTIONS(1223), + [anon_sym_switch] = ACTIONS(1161), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1703), + [anon_sym_throw] = ACTIONS(1633), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1705), - [anon_sym_DOT_DOT] = ACTIONS(1707), - [anon_sym_and] = ACTIONS(1223), - [anon_sym_or] = ACTIONS(1223), - [anon_sym_AMP_AMP] = ACTIONS(1221), - [anon_sym_PIPE_PIPE] = ACTIONS(1221), - [anon_sym_QMARK_QMARK] = ACTIONS(1221), + [anon_sym_await] = ACTIONS(1635), + [anon_sym_DOT_DOT] = ACTIONS(1637), + [anon_sym_AMP_AMP] = ACTIONS(1147), + [anon_sym_PIPE_PIPE] = ACTIONS(1147), + [anon_sym_QMARK_QMARK] = ACTIONS(1147), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -66257,23 +66143,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(1223), - [anon_sym_is] = ACTIONS(1223), - [anon_sym_DASH_GT] = ACTIONS(1221), - [anon_sym_stackalloc] = ACTIONS(1333), - [anon_sym_with] = ACTIONS(1223), + [anon_sym_as] = ACTIONS(1161), + [anon_sym_is] = ACTIONS(1161), + [anon_sym_DASH_GT] = ACTIONS(1147), + [anon_sym_stackalloc] = ACTIONS(127), + [anon_sym_with] = ACTIONS(1161), [anon_sym_sizeof] = ACTIONS(129), [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(1335), - [anon_sym___reftype] = ACTIONS(1337), - [anon_sym___refvalue] = ACTIONS(1339), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), [sym_null_literal] = ACTIONS(139), [anon_sym_SQUOTE] = ACTIONS(141), [sym_integer_literal] = ACTIONS(139), [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1709), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -66290,84 +66176,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [186] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2762), - [sym__name] = STATE(5893), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2316), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(4737), - [sym_non_lvalue_expression] = STATE(3438), - [sym_lvalue_expression] = STATE(3391), - [sym__expression_statement_expression] = STATE(3362), - [sym_assignment_expression] = STATE(3449), - [sym_binary_expression] = STATE(3362), - [sym_postfix_unary_expression] = STATE(3449), - [sym_prefix_unary_expression] = STATE(3449), - [sym__pointer_indirection_expression] = STATE(2747), - [sym_query_expression] = STATE(3362), - [sym_from_clause] = STATE(6155), - [sym_conditional_expression] = STATE(3362), - [sym_conditional_access_expression] = STATE(3362), - [sym_as_expression] = STATE(3362), - [sym_is_expression] = STATE(3362), - [sym_is_pattern_expression] = STATE(3362), - [sym_cast_expression] = STATE(3362), - [sym_checked_expression] = STATE(3362), - [sym_invocation_expression] = STATE(3449), - [sym_switch_expression] = STATE(3362), - [sym_await_expression] = STATE(3449), - [sym_throw_expression] = STATE(3362), - [sym_element_access_expression] = STATE(2747), - [sym_interpolated_string_expression] = STATE(3362), - [sym_member_access_expression] = STATE(2747), - [sym_object_creation_expression] = STATE(3449), - [sym_parenthesized_expression] = STATE(3449), - [sym__parenthesized_lvalue_expression] = STATE(2747), - [sym_lambda_expression] = STATE(3362), - [sym__lambda_expression_init] = STATE(7726), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3362), - [sym_anonymous_method_expression] = STATE(3362), - [sym_anonymous_object_creation_expression] = STATE(3362), - [sym_implicit_array_creation_expression] = STATE(3362), - [sym_implicit_object_creation_expression] = STATE(3362), - [sym_implicit_stackalloc_expression] = STATE(3362), - [sym_initializer_expression] = STATE(3362), - [sym_default_expression] = STATE(3362), - [sym_with_expression] = STATE(3362), - [sym_sizeof_expression] = STATE(3362), - [sym_typeof_expression] = STATE(3362), - [sym_makeref_expression] = STATE(3362), - [sym_ref_expression] = STATE(3362), - [sym_reftype_expression] = STATE(3362), - [sym_refvalue_expression] = STATE(3362), - [sym_stackalloc_expression] = STATE(3362), - [sym_range_expression] = STATE(3362), - [sym_tuple_expression] = STATE(2747), - [sym_literal] = STATE(3362), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3362), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2901), + [sym__name] = STATE(5883), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2359), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(3664), + [sym_non_lvalue_expression] = STATE(3685), + [sym_lvalue_expression] = STATE(2944), + [sym__expression_statement_expression] = STATE(3836), + [sym_assignment_expression] = STATE(3689), + [sym_binary_expression] = STATE(3836), + [sym_postfix_unary_expression] = STATE(3689), + [sym_prefix_unary_expression] = STATE(3689), + [sym__pointer_indirection_expression] = STATE(2906), + [sym_query_expression] = STATE(3836), + [sym_from_clause] = STATE(6139), + [sym_conditional_expression] = STATE(3836), + [sym_conditional_access_expression] = STATE(3836), + [sym_as_expression] = STATE(3836), + [sym_is_expression] = STATE(3836), + [sym_is_pattern_expression] = STATE(3836), + [sym_cast_expression] = STATE(3836), + [sym_checked_expression] = STATE(3836), + [sym_invocation_expression] = STATE(3689), + [sym_switch_expression] = STATE(3836), + [sym_await_expression] = STATE(3689), + [sym_throw_expression] = STATE(3836), + [sym_element_access_expression] = STATE(2906), + [sym_interpolated_string_expression] = STATE(3836), + [sym_member_access_expression] = STATE(2906), + [sym_object_creation_expression] = STATE(3689), + [sym_parenthesized_expression] = STATE(3689), + [sym__parenthesized_lvalue_expression] = STATE(2906), + [sym_lambda_expression] = STATE(3836), + [sym__lambda_expression_init] = STATE(7516), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3836), + [sym_anonymous_method_expression] = STATE(3836), + [sym_anonymous_object_creation_expression] = STATE(3836), + [sym_implicit_array_creation_expression] = STATE(3836), + [sym_implicit_object_creation_expression] = STATE(3836), + [sym_implicit_stackalloc_expression] = STATE(3836), + [sym_initializer_expression] = STATE(3836), + [sym_default_expression] = STATE(3836), + [sym_with_expression] = STATE(3836), + [sym_sizeof_expression] = STATE(3836), + [sym_typeof_expression] = STATE(3836), + [sym_makeref_expression] = STATE(3836), + [sym_ref_expression] = STATE(3836), + [sym_reftype_expression] = STATE(3836), + [sym_refvalue_expression] = STATE(3836), + [sym_stackalloc_expression] = STATE(3836), + [sym_range_expression] = STATE(3836), + [sym_tuple_expression] = STATE(2906), + [sym_literal] = STATE(3836), + [sym_character_literal] = STATE(3843), + [sym_string_literal] = STATE(3843), + [sym_raw_string_literal] = STATE(3843), + [sym_boolean_literal] = STATE(3843), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3836), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(186), [sym_preproc_endregion] = STATE(186), [sym_preproc_line] = STATE(186), @@ -66377,68 +66263,68 @@ 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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3385), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3477), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1307), - [anon_sym_COLON] = ACTIONS(1151), - [anon_sym_LPAREN] = ACTIONS(1711), - [anon_sym_ref] = ACTIONS(1713), - [anon_sym_LBRACE] = ACTIONS(1313), - [anon_sym_delegate] = ACTIONS(1315), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1655), + [anon_sym_COMMA] = ACTIONS(1147), + [anon_sym_LPAREN] = ACTIONS(1657), + [anon_sym_ref] = ACTIONS(1659), + [anon_sym_LBRACE] = ACTIONS(1661), + [anon_sym_delegate] = ACTIONS(1663), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1613), - [anon_sym_LT] = ACTIONS(1165), - [anon_sym_GT] = ACTIONS(1165), + [anon_sym_new] = ACTIONS(1665), + [anon_sym_LT] = ACTIONS(1161), + [anon_sym_GT] = ACTIONS(1161), [anon_sym_where] = ACTIONS(29), - [anon_sym_QMARK] = ACTIONS(1165), + [anon_sym_QMARK] = ACTIONS(1161), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1319), - [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(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1715), - [anon_sym_DASH] = ACTIONS(1715), - [anon_sym_STAR] = ACTIONS(1719), - [anon_sym_SLASH] = ACTIONS(1165), - [anon_sym_PERCENT] = ACTIONS(1151), - [anon_sym_CARET] = ACTIONS(1717), - [anon_sym_PIPE] = ACTIONS(1165), - [anon_sym_AMP] = ACTIONS(1715), - [anon_sym_LT_LT] = ACTIONS(1151), - [anon_sym_GT_GT] = ACTIONS(1165), - [anon_sym_GT_GT_GT] = ACTIONS(1151), - [anon_sym_EQ_EQ] = ACTIONS(1151), - [anon_sym_BANG_EQ] = ACTIONS(1151), - [anon_sym_GT_EQ] = ACTIONS(1151), - [anon_sym_LT_EQ] = ACTIONS(1151), - [anon_sym_this] = ACTIONS(1323), - [anon_sym_DOT] = ACTIONS(1165), + [anon_sym_checked] = ACTIONS(1667), + [anon_sym_BANG] = ACTIONS(1669), + [anon_sym_TILDE] = ACTIONS(1671), + [anon_sym_PLUS_PLUS] = ACTIONS(1671), + [anon_sym_DASH_DASH] = ACTIONS(1671), + [anon_sym_true] = ACTIONS(1673), + [anon_sym_false] = ACTIONS(1673), + [anon_sym_PLUS] = ACTIONS(1669), + [anon_sym_DASH] = ACTIONS(1669), + [anon_sym_STAR] = ACTIONS(1675), + [anon_sym_SLASH] = ACTIONS(1161), + [anon_sym_PERCENT] = ACTIONS(1147), + [anon_sym_CARET] = ACTIONS(1671), + [anon_sym_PIPE] = ACTIONS(1161), + [anon_sym_AMP] = ACTIONS(1669), + [anon_sym_LT_LT] = ACTIONS(1147), + [anon_sym_GT_GT] = ACTIONS(1161), + [anon_sym_GT_GT_GT] = ACTIONS(1147), + [anon_sym_EQ_EQ] = ACTIONS(1147), + [anon_sym_BANG_EQ] = ACTIONS(1147), + [anon_sym_GT_EQ] = ACTIONS(1147), + [anon_sym_LT_EQ] = ACTIONS(1147), + [anon_sym_this] = ACTIONS(1677), + [anon_sym_DOT] = ACTIONS(1161), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1325), + [anon_sym_base] = ACTIONS(1679), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1319), + [sym_predefined_type] = ACTIONS(1681), + [anon_sym_unchecked] = ACTIONS(1667), [anon_sym_yield] = ACTIONS(29), - [anon_sym_switch] = ACTIONS(1165), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1721), + [anon_sym_switch] = ACTIONS(1161), + [anon_sym_default] = ACTIONS(1683), + [anon_sym_throw] = ACTIONS(1685), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1723), - [anon_sym_DOT_DOT] = ACTIONS(1725), - [anon_sym_and] = ACTIONS(1165), - [anon_sym_or] = ACTIONS(1165), - [anon_sym_AMP_AMP] = ACTIONS(1151), - [anon_sym_PIPE_PIPE] = ACTIONS(1151), - [anon_sym_QMARK_QMARK] = ACTIONS(1151), + [anon_sym_await] = ACTIONS(1687), + [anon_sym_DOT_DOT] = ACTIONS(1689), + [anon_sym_and] = ACTIONS(1161), + [anon_sym_or] = ACTIONS(1161), + [anon_sym_AMP_AMP] = ACTIONS(1147), + [anon_sym_PIPE_PIPE] = ACTIONS(1147), + [anon_sym_QMARK_QMARK] = ACTIONS(1147), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -66451,23 +66337,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(1165), - [anon_sym_is] = ACTIONS(1165), - [anon_sym_DASH_GT] = ACTIONS(1151), - [anon_sym_stackalloc] = ACTIONS(1333), - [anon_sym_with] = ACTIONS(1165), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(1335), - [anon_sym___reftype] = ACTIONS(1337), - [anon_sym___refvalue] = ACTIONS(1339), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1341), + [anon_sym_as] = ACTIONS(1161), + [anon_sym_is] = ACTIONS(1161), + [anon_sym_DASH_GT] = ACTIONS(1147), + [anon_sym_stackalloc] = ACTIONS(1691), + [anon_sym_with] = ACTIONS(1161), + [anon_sym_sizeof] = ACTIONS(1693), + [anon_sym_typeof] = ACTIONS(1695), + [anon_sym___makeref] = ACTIONS(1697), + [anon_sym___reftype] = ACTIONS(1699), + [anon_sym___refvalue] = ACTIONS(1701), + [sym_null_literal] = ACTIONS(1703), + [anon_sym_SQUOTE] = ACTIONS(1705), + [sym_integer_literal] = ACTIONS(1703), + [sym_real_literal] = ACTIONS(1707), + [anon_sym_DQUOTE] = ACTIONS(1709), + [sym_verbatim_string_literal] = ACTIONS(1707), + [aux_sym_preproc_if_token1] = ACTIONS(1711), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -66478,90 +66364,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(151), - [sym_interpolation_verbatim_start] = ACTIONS(153), - [sym_interpolation_raw_start] = ACTIONS(155), - [sym_raw_string_start] = ACTIONS(157), + [sym_interpolation_regular_start] = ACTIONS(1713), + [sym_interpolation_verbatim_start] = ACTIONS(1715), + [sym_interpolation_raw_start] = ACTIONS(1717), + [sym_raw_string_start] = ACTIONS(1719), }, [187] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2914), - [sym__name] = STATE(5885), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2357), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(3577), - [sym_non_lvalue_expression] = STATE(3880), - [sym_lvalue_expression] = STATE(2911), - [sym__expression_statement_expression] = STATE(3873), - [sym_assignment_expression] = STATE(3881), - [sym_binary_expression] = STATE(3873), - [sym_postfix_unary_expression] = STATE(3881), - [sym_prefix_unary_expression] = STATE(3881), - [sym__pointer_indirection_expression] = STATE(2913), - [sym_query_expression] = STATE(3873), - [sym_from_clause] = STATE(6182), - [sym_conditional_expression] = STATE(3873), - [sym_conditional_access_expression] = STATE(3873), - [sym_as_expression] = STATE(3873), - [sym_is_expression] = STATE(3873), - [sym_is_pattern_expression] = STATE(3873), - [sym_cast_expression] = STATE(3873), - [sym_checked_expression] = STATE(3873), - [sym_invocation_expression] = STATE(3881), - [sym_switch_expression] = STATE(3873), - [sym_await_expression] = STATE(3881), - [sym_throw_expression] = STATE(3873), - [sym_element_access_expression] = STATE(2913), - [sym_interpolated_string_expression] = STATE(3873), - [sym_member_access_expression] = STATE(2913), - [sym_object_creation_expression] = STATE(3881), - [sym_parenthesized_expression] = STATE(3881), - [sym__parenthesized_lvalue_expression] = STATE(2913), - [sym_lambda_expression] = STATE(3873), - [sym__lambda_expression_init] = STATE(7316), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3873), - [sym_anonymous_method_expression] = STATE(3873), - [sym_anonymous_object_creation_expression] = STATE(3873), - [sym_implicit_array_creation_expression] = STATE(3873), - [sym_implicit_object_creation_expression] = STATE(3873), - [sym_implicit_stackalloc_expression] = STATE(3873), - [sym_initializer_expression] = STATE(3873), - [sym_default_expression] = STATE(3873), - [sym_with_expression] = STATE(3873), - [sym_sizeof_expression] = STATE(3873), - [sym_typeof_expression] = STATE(3873), - [sym_makeref_expression] = STATE(3873), - [sym_ref_expression] = STATE(3873), - [sym_reftype_expression] = STATE(3873), - [sym_refvalue_expression] = STATE(3873), - [sym_stackalloc_expression] = STATE(3873), - [sym_range_expression] = STATE(3873), - [sym_tuple_expression] = STATE(2913), - [sym_literal] = STATE(3873), - [sym_character_literal] = STATE(3877), - [sym_string_literal] = STATE(3877), - [sym_raw_string_literal] = STATE(3877), - [sym_boolean_literal] = STATE(3877), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3873), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2816), + [sym__name] = STATE(5879), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2196), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(4974), + [sym_non_lvalue_expression] = STATE(3495), + [sym_lvalue_expression] = STATE(3539), + [sym__expression_statement_expression] = STATE(3462), + [sym_assignment_expression] = STATE(3497), + [sym_binary_expression] = STATE(3462), + [sym_postfix_unary_expression] = STATE(3497), + [sym_prefix_unary_expression] = STATE(3497), + [sym__pointer_indirection_expression] = STATE(2815), + [sym_query_expression] = STATE(3462), + [sym_from_clause] = STATE(6144), + [sym_conditional_expression] = STATE(3462), + [sym_conditional_access_expression] = STATE(3462), + [sym_as_expression] = STATE(3462), + [sym_is_expression] = STATE(3462), + [sym_is_pattern_expression] = STATE(3462), + [sym_cast_expression] = STATE(3462), + [sym_checked_expression] = STATE(3462), + [sym_invocation_expression] = STATE(3497), + [sym_switch_expression] = STATE(3462), + [sym_await_expression] = STATE(3497), + [sym_throw_expression] = STATE(3462), + [sym_element_access_expression] = STATE(2815), + [sym_interpolated_string_expression] = STATE(3462), + [sym_member_access_expression] = STATE(2815), + [sym_object_creation_expression] = STATE(3497), + [sym_parenthesized_expression] = STATE(3497), + [sym__parenthesized_lvalue_expression] = STATE(2815), + [sym_lambda_expression] = STATE(3462), + [sym__lambda_expression_init] = STATE(7681), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3462), + [sym_anonymous_method_expression] = STATE(3462), + [sym_anonymous_object_creation_expression] = STATE(3462), + [sym_implicit_array_creation_expression] = STATE(3462), + [sym_implicit_object_creation_expression] = STATE(3462), + [sym_implicit_stackalloc_expression] = STATE(3462), + [sym_initializer_expression] = STATE(3462), + [sym_default_expression] = STATE(3462), + [sym_with_expression] = STATE(3462), + [sym_sizeof_expression] = STATE(3462), + [sym_typeof_expression] = STATE(3462), + [sym_makeref_expression] = STATE(3462), + [sym_ref_expression] = STATE(3462), + [sym_reftype_expression] = STATE(3462), + [sym_refvalue_expression] = STATE(3462), + [sym_stackalloc_expression] = STATE(3462), + [sym_range_expression] = STATE(3462), + [sym_tuple_expression] = STATE(2815), + [sym_literal] = STATE(3462), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3462), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(187), [sym_preproc_endregion] = STATE(187), [sym_preproc_line] = STATE(187), @@ -66571,68 +66457,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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3382), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3367), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1627), - [anon_sym_COMMA] = ACTIONS(1221), - [anon_sym_LPAREN] = ACTIONS(1727), - [anon_sym_ref] = ACTIONS(1729), - [anon_sym_LBRACE] = ACTIONS(1633), - [anon_sym_delegate] = ACTIONS(1635), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1305), + [anon_sym_COLON] = ACTIONS(1219), + [anon_sym_LPAREN] = ACTIONS(1721), + [anon_sym_ref] = ACTIONS(1723), + [anon_sym_LBRACE] = ACTIONS(1311), + [anon_sym_delegate] = ACTIONS(1313), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1731), - [anon_sym_LT] = ACTIONS(1223), - [anon_sym_GT] = ACTIONS(1223), + [anon_sym_new] = ACTIONS(1315), + [anon_sym_LT] = ACTIONS(1221), + [anon_sym_GT] = ACTIONS(1221), [anon_sym_where] = ACTIONS(29), - [anon_sym_QMARK] = ACTIONS(1223), + [anon_sym_QMARK] = ACTIONS(1221), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1639), - [anon_sym_BANG] = ACTIONS(1733), - [anon_sym_TILDE] = ACTIONS(1735), - [anon_sym_PLUS_PLUS] = ACTIONS(1735), - [anon_sym_DASH_DASH] = ACTIONS(1735), - [anon_sym_true] = ACTIONS(1645), - [anon_sym_false] = ACTIONS(1645), - [anon_sym_PLUS] = ACTIONS(1733), - [anon_sym_DASH] = ACTIONS(1733), - [anon_sym_STAR] = ACTIONS(1737), - [anon_sym_SLASH] = ACTIONS(1223), - [anon_sym_PERCENT] = ACTIONS(1221), - [anon_sym_CARET] = ACTIONS(1735), - [anon_sym_PIPE] = ACTIONS(1223), - [anon_sym_AMP] = ACTIONS(1733), - [anon_sym_LT_LT] = ACTIONS(1221), - [anon_sym_GT_GT] = ACTIONS(1223), - [anon_sym_GT_GT_GT] = ACTIONS(1221), - [anon_sym_EQ_EQ] = ACTIONS(1221), - [anon_sym_BANG_EQ] = ACTIONS(1221), - [anon_sym_GT_EQ] = ACTIONS(1221), - [anon_sym_LT_EQ] = ACTIONS(1221), - [anon_sym_this] = ACTIONS(1649), - [anon_sym_DOT] = ACTIONS(1223), + [anon_sym_checked] = ACTIONS(1317), + [anon_sym_BANG] = ACTIONS(1725), + [anon_sym_TILDE] = ACTIONS(1727), + [anon_sym_PLUS_PLUS] = ACTIONS(1727), + [anon_sym_DASH_DASH] = ACTIONS(1727), + [anon_sym_true] = ACTIONS(77), + [anon_sym_false] = ACTIONS(77), + [anon_sym_PLUS] = ACTIONS(1725), + [anon_sym_DASH] = ACTIONS(1725), + [anon_sym_STAR] = ACTIONS(1729), + [anon_sym_SLASH] = ACTIONS(1221), + [anon_sym_PERCENT] = ACTIONS(1219), + [anon_sym_CARET] = ACTIONS(1727), + [anon_sym_PIPE] = ACTIONS(1221), + [anon_sym_AMP] = ACTIONS(1725), + [anon_sym_LT_LT] = ACTIONS(1219), + [anon_sym_GT_GT] = ACTIONS(1221), + [anon_sym_GT_GT_GT] = ACTIONS(1219), + [anon_sym_EQ_EQ] = ACTIONS(1219), + [anon_sym_BANG_EQ] = ACTIONS(1219), + [anon_sym_GT_EQ] = ACTIONS(1219), + [anon_sym_LT_EQ] = ACTIONS(1219), + [anon_sym_this] = ACTIONS(1321), + [anon_sym_DOT] = ACTIONS(1221), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1651), + [anon_sym_base] = ACTIONS(1323), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1653), - [anon_sym_unchecked] = ACTIONS(1639), + [sym_predefined_type] = ACTIONS(91), + [anon_sym_unchecked] = ACTIONS(1317), [anon_sym_yield] = ACTIONS(29), - [anon_sym_switch] = ACTIONS(1223), - [anon_sym_default] = ACTIONS(1655), - [anon_sym_throw] = ACTIONS(1739), + [anon_sym_switch] = ACTIONS(1221), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(1731), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1741), - [anon_sym_DOT_DOT] = ACTIONS(1743), - [anon_sym_and] = ACTIONS(1223), - [anon_sym_or] = ACTIONS(1223), - [anon_sym_AMP_AMP] = ACTIONS(1221), - [anon_sym_PIPE_PIPE] = ACTIONS(1221), - [anon_sym_QMARK_QMARK] = ACTIONS(1221), + [anon_sym_await] = ACTIONS(1733), + [anon_sym_DOT_DOT] = ACTIONS(1735), + [anon_sym_and] = ACTIONS(1221), + [anon_sym_or] = ACTIONS(1221), + [anon_sym_AMP_AMP] = ACTIONS(1219), + [anon_sym_PIPE_PIPE] = ACTIONS(1219), + [anon_sym_QMARK_QMARK] = ACTIONS(1219), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -66645,23 +66531,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(1223), - [anon_sym_is] = ACTIONS(1223), - [anon_sym_DASH_GT] = ACTIONS(1221), - [anon_sym_stackalloc] = ACTIONS(1663), - [anon_sym_with] = ACTIONS(1223), - [anon_sym_sizeof] = ACTIONS(1665), - [anon_sym_typeof] = ACTIONS(1667), - [anon_sym___makeref] = ACTIONS(1669), - [anon_sym___reftype] = ACTIONS(1671), - [anon_sym___refvalue] = ACTIONS(1673), - [sym_null_literal] = ACTIONS(1675), - [anon_sym_SQUOTE] = ACTIONS(1677), - [sym_integer_literal] = ACTIONS(1675), - [sym_real_literal] = ACTIONS(1679), - [anon_sym_DQUOTE] = ACTIONS(1681), - [sym_verbatim_string_literal] = ACTIONS(1679), - [aux_sym_preproc_if_token1] = ACTIONS(1683), + [anon_sym_as] = ACTIONS(1221), + [anon_sym_is] = ACTIONS(1221), + [anon_sym_DASH_GT] = ACTIONS(1219), + [anon_sym_stackalloc] = ACTIONS(1331), + [anon_sym_with] = ACTIONS(1221), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(1333), + [anon_sym___reftype] = ACTIONS(1335), + [anon_sym___refvalue] = ACTIONS(1337), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_literal] = ACTIONS(143), + [anon_sym_DQUOTE] = ACTIONS(145), + [sym_verbatim_string_literal] = ACTIONS(143), + [aux_sym_preproc_if_token1] = ACTIONS(1339), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -66672,90 +66558,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1685), - [sym_interpolation_verbatim_start] = ACTIONS(1687), - [sym_interpolation_raw_start] = ACTIONS(1689), - [sym_raw_string_start] = ACTIONS(1691), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [sym_interpolation_raw_start] = ACTIONS(155), + [sym_raw_string_start] = ACTIONS(157), }, [188] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(3184), - [sym__name] = STATE(5883), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2313), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2269), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(4928), - [sym_non_lvalue_expression] = STATE(4541), - [sym_lvalue_expression] = STATE(3527), - [sym__expression_statement_expression] = STATE(4529), - [sym_assignment_expression] = STATE(4543), - [sym_binary_expression] = STATE(4529), - [sym_postfix_unary_expression] = STATE(4543), - [sym_prefix_unary_expression] = STATE(4543), - [sym__pointer_indirection_expression] = STATE(3175), - [sym_query_expression] = STATE(4529), - [sym_from_clause] = STATE(6169), - [sym_conditional_expression] = STATE(4529), - [sym_conditional_access_expression] = STATE(4529), - [sym_as_expression] = STATE(4529), - [sym_is_expression] = STATE(4529), - [sym_is_pattern_expression] = STATE(4529), - [sym_cast_expression] = STATE(4529), - [sym_checked_expression] = STATE(4529), - [sym_invocation_expression] = STATE(4543), - [sym_switch_expression] = STATE(4529), - [sym_await_expression] = STATE(4543), - [sym_throw_expression] = STATE(4529), - [sym_element_access_expression] = STATE(3175), - [sym_interpolated_string_expression] = STATE(4529), - [sym_member_access_expression] = STATE(3175), - [sym_object_creation_expression] = STATE(4543), - [sym_parenthesized_expression] = STATE(4543), - [sym__parenthesized_lvalue_expression] = STATE(3175), - [sym_lambda_expression] = STATE(4529), - [sym__lambda_expression_init] = STATE(7337), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(4529), - [sym_anonymous_method_expression] = STATE(4529), - [sym_anonymous_object_creation_expression] = STATE(4529), - [sym_implicit_array_creation_expression] = STATE(4529), - [sym_implicit_object_creation_expression] = STATE(4529), - [sym_implicit_stackalloc_expression] = STATE(4529), - [sym_initializer_expression] = STATE(4529), - [sym_default_expression] = STATE(4529), - [sym_with_expression] = STATE(4529), - [sym_sizeof_expression] = STATE(4529), - [sym_typeof_expression] = STATE(4529), - [sym_makeref_expression] = STATE(4529), - [sym_ref_expression] = STATE(4529), - [sym_reftype_expression] = STATE(4529), - [sym_refvalue_expression] = STATE(4529), - [sym_stackalloc_expression] = STATE(4529), - [sym_range_expression] = STATE(4529), - [sym_tuple_expression] = STATE(3175), - [sym_literal] = STATE(4529), - [sym_character_literal] = STATE(4536), - [sym_string_literal] = STATE(4536), - [sym_raw_string_literal] = STATE(4536), - [sym_boolean_literal] = STATE(4536), - [sym_identifier] = STATE(2246), - [sym__reserved_identifier] = STATE(2240), - [sym_preproc_if_in_expression] = STATE(4529), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2816), + [sym__name] = STATE(5873), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2196), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(5017), + [sym_non_lvalue_expression] = STATE(3495), + [sym_lvalue_expression] = STATE(3525), + [sym__expression_statement_expression] = STATE(3462), + [sym_assignment_expression] = STATE(3497), + [sym_binary_expression] = STATE(3462), + [sym_postfix_unary_expression] = STATE(3497), + [sym_prefix_unary_expression] = STATE(3497), + [sym__pointer_indirection_expression] = STATE(2815), + [sym_query_expression] = STATE(3462), + [sym_from_clause] = STATE(6155), + [sym_conditional_expression] = STATE(3462), + [sym_conditional_access_expression] = STATE(3462), + [sym_as_expression] = STATE(3462), + [sym_is_expression] = STATE(3462), + [sym_is_pattern_expression] = STATE(3462), + [sym_cast_expression] = STATE(3462), + [sym_checked_expression] = STATE(3462), + [sym_invocation_expression] = STATE(3497), + [sym_switch_expression] = STATE(3462), + [sym_await_expression] = STATE(3497), + [sym_throw_expression] = STATE(3462), + [sym_element_access_expression] = STATE(2815), + [sym_interpolated_string_expression] = STATE(3462), + [sym_member_access_expression] = STATE(2815), + [sym_object_creation_expression] = STATE(3497), + [sym_parenthesized_expression] = STATE(3497), + [sym__parenthesized_lvalue_expression] = STATE(2815), + [sym_lambda_expression] = STATE(3462), + [sym__lambda_expression_init] = STATE(7427), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3462), + [sym_anonymous_method_expression] = STATE(3462), + [sym_anonymous_object_creation_expression] = STATE(3462), + [sym_implicit_array_creation_expression] = STATE(3462), + [sym_implicit_object_creation_expression] = STATE(3462), + [sym_implicit_stackalloc_expression] = STATE(3462), + [sym_initializer_expression] = STATE(3462), + [sym_default_expression] = STATE(3462), + [sym_with_expression] = STATE(3462), + [sym_sizeof_expression] = STATE(3462), + [sym_typeof_expression] = STATE(3462), + [sym_makeref_expression] = STATE(3462), + [sym_ref_expression] = STATE(3462), + [sym_reftype_expression] = STATE(3462), + [sym_refvalue_expression] = STATE(3462), + [sym_stackalloc_expression] = STATE(3462), + [sym_range_expression] = STATE(3462), + [sym_tuple_expression] = STATE(2815), + [sym_literal] = STATE(3462), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3462), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(188), [sym_preproc_endregion] = STATE(188), [sym_preproc_line] = STATE(188), @@ -66765,262 +66651,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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3363), - [sym__identifier_token] = ACTIONS(1387), - [anon_sym_alias] = ACTIONS(1389), - [anon_sym_global] = ACTIONS(1389), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1391), - [anon_sym_COLON] = ACTIONS(1151), - [anon_sym_COMMA] = ACTIONS(1151), - [anon_sym_LPAREN] = ACTIONS(1745), - [anon_sym_ref] = ACTIONS(1747), - [anon_sym_LBRACE] = ACTIONS(1397), - [anon_sym_delegate] = ACTIONS(1399), - [anon_sym_async] = ACTIONS(1047), - [anon_sym_file] = ACTIONS(1389), - [anon_sym_new] = ACTIONS(1467), - [anon_sym_LT] = ACTIONS(1165), - [anon_sym_GT] = ACTIONS(1165), - [anon_sym_where] = ACTIONS(1389), - [anon_sym_QMARK] = ACTIONS(1165), - [anon_sym_notnull] = ACTIONS(1389), - [anon_sym_unmanaged] = ACTIONS(1389), - [anon_sym_checked] = ACTIONS(1403), - [anon_sym_BANG] = ACTIONS(1749), - [anon_sym_TILDE] = ACTIONS(1751), - [anon_sym_PLUS_PLUS] = ACTIONS(1751), - [anon_sym_DASH_DASH] = ACTIONS(1751), - [anon_sym_true] = ACTIONS(1409), - [anon_sym_false] = ACTIONS(1409), - [anon_sym_PLUS] = ACTIONS(1749), - [anon_sym_DASH] = ACTIONS(1749), - [anon_sym_STAR] = ACTIONS(1473), - [anon_sym_SLASH] = ACTIONS(1165), - [anon_sym_PERCENT] = ACTIONS(1151), - [anon_sym_CARET] = ACTIONS(1751), - [anon_sym_PIPE] = ACTIONS(1165), - [anon_sym_AMP] = ACTIONS(1749), - [anon_sym_LT_LT] = ACTIONS(1151), - [anon_sym_GT_GT] = ACTIONS(1165), - [anon_sym_GT_GT_GT] = ACTIONS(1151), - [anon_sym_EQ_EQ] = ACTIONS(1151), - [anon_sym_BANG_EQ] = ACTIONS(1151), - [anon_sym_GT_EQ] = ACTIONS(1151), - [anon_sym_LT_EQ] = ACTIONS(1151), - [anon_sym_this] = ACTIONS(1413), - [anon_sym_DOT] = ACTIONS(1165), - [anon_sym_scoped] = ACTIONS(1415), - [anon_sym_base] = ACTIONS(1417), - [anon_sym_var] = ACTIONS(1419), - [sym_predefined_type] = ACTIONS(1421), - [anon_sym_unchecked] = ACTIONS(1403), - [anon_sym_yield] = ACTIONS(1389), - [anon_sym_switch] = ACTIONS(1165), - [anon_sym_default] = ACTIONS(1423), - [anon_sym_throw] = ACTIONS(1753), - [anon_sym_when] = ACTIONS(1389), - [anon_sym_await] = ACTIONS(1755), - [anon_sym_DOT_DOT] = ACTIONS(1757), - [anon_sym_AMP_AMP] = ACTIONS(1151), - [anon_sym_PIPE_PIPE] = ACTIONS(1151), - [anon_sym_QMARK_QMARK] = ACTIONS(1151), - [anon_sym_from] = ACTIONS(1431), - [anon_sym_into] = ACTIONS(1389), - [anon_sym_join] = ACTIONS(1389), - [anon_sym_on] = ACTIONS(1389), - [anon_sym_equals] = ACTIONS(1389), - [anon_sym_let] = ACTIONS(1389), - [anon_sym_orderby] = ACTIONS(1389), - [anon_sym_ascending] = ACTIONS(1389), - [anon_sym_descending] = ACTIONS(1389), - [anon_sym_group] = ACTIONS(1389), - [anon_sym_by] = ACTIONS(1389), - [anon_sym_select] = ACTIONS(1389), - [anon_sym_as] = ACTIONS(1165), - [anon_sym_is] = ACTIONS(1165), - [anon_sym_DASH_GT] = ACTIONS(1151), - [anon_sym_stackalloc] = ACTIONS(1433), - [anon_sym_with] = ACTIONS(1165), - [anon_sym_sizeof] = ACTIONS(1435), - [anon_sym_typeof] = ACTIONS(1437), - [anon_sym___makeref] = ACTIONS(1439), - [anon_sym___reftype] = ACTIONS(1441), - [anon_sym___refvalue] = ACTIONS(1443), - [sym_null_literal] = ACTIONS(1445), - [anon_sym_SQUOTE] = ACTIONS(1447), - [sym_integer_literal] = ACTIONS(1445), - [sym_real_literal] = ACTIONS(1449), - [anon_sym_DQUOTE] = ACTIONS(1451), - [sym_verbatim_string_literal] = ACTIONS(1449), - [aux_sym_preproc_if_token1] = ACTIONS(1453), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1455), - [sym_interpolation_verbatim_start] = ACTIONS(1457), - [sym_interpolation_raw_start] = ACTIONS(1459), - [sym_interpolation_close_brace] = ACTIONS(1151), - [sym_raw_string_start] = ACTIONS(1461), - }, - [189] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2762), - [sym__name] = STATE(5892), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2316), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(4676), - [sym_non_lvalue_expression] = STATE(3438), - [sym_lvalue_expression] = STATE(3500), - [sym__expression_statement_expression] = STATE(3362), - [sym_assignment_expression] = STATE(3449), - [sym_binary_expression] = STATE(3362), - [sym_postfix_unary_expression] = STATE(3449), - [sym_prefix_unary_expression] = STATE(3449), - [sym__pointer_indirection_expression] = STATE(2747), - [sym_query_expression] = STATE(3362), - [sym_from_clause] = STATE(6147), - [sym_conditional_expression] = STATE(3362), - [sym_conditional_access_expression] = STATE(3362), - [sym_as_expression] = STATE(3362), - [sym_is_expression] = STATE(3362), - [sym_is_pattern_expression] = STATE(3362), - [sym_cast_expression] = STATE(3362), - [sym_checked_expression] = STATE(3362), - [sym_invocation_expression] = STATE(3449), - [sym_switch_expression] = STATE(3362), - [sym_await_expression] = STATE(3449), - [sym_throw_expression] = STATE(3362), - [sym_element_access_expression] = STATE(2747), - [sym_interpolated_string_expression] = STATE(3362), - [sym_member_access_expression] = STATE(2747), - [sym_object_creation_expression] = STATE(3449), - [sym_parenthesized_expression] = STATE(3449), - [sym__parenthesized_lvalue_expression] = STATE(2747), - [sym_lambda_expression] = STATE(3362), - [sym__lambda_expression_init] = STATE(7516), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3362), - [sym_anonymous_method_expression] = STATE(3362), - [sym_anonymous_object_creation_expression] = STATE(3362), - [sym_implicit_array_creation_expression] = STATE(3362), - [sym_implicit_object_creation_expression] = STATE(3362), - [sym_implicit_stackalloc_expression] = STATE(3362), - [sym_initializer_expression] = STATE(3362), - [sym_default_expression] = STATE(3362), - [sym_with_expression] = STATE(3362), - [sym_sizeof_expression] = STATE(3362), - [sym_typeof_expression] = STATE(3362), - [sym_makeref_expression] = STATE(3362), - [sym_ref_expression] = STATE(3362), - [sym_reftype_expression] = STATE(3362), - [sym_refvalue_expression] = STATE(3362), - [sym_stackalloc_expression] = STATE(3362), - [sym_range_expression] = STATE(3362), - [sym_tuple_expression] = STATE(2747), - [sym_literal] = STATE(3362), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2267), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3362), - [sym_preproc_if_in_attribute_list] = STATE(5576), - [sym_preproc_region] = STATE(189), - [sym_preproc_endregion] = STATE(189), - [sym_preproc_line] = STATE(189), - [sym_preproc_pragma] = STATE(189), - [sym_preproc_nullable] = STATE(189), - [sym_preproc_error] = STATE(189), - [sym_preproc_warning] = STATE(189), - [sym_preproc_define] = STATE(189), - [sym_preproc_undef] = STATE(189), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3385), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3367), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1307), - [anon_sym_LPAREN] = ACTIONS(1609), - [anon_sym_ref] = ACTIONS(1611), - [anon_sym_LBRACE] = ACTIONS(1313), - [anon_sym_delegate] = ACTIONS(1315), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1305), + [anon_sym_LPAREN] = ACTIONS(1737), + [anon_sym_ref] = ACTIONS(1739), + [anon_sym_LBRACE] = ACTIONS(1311), + [anon_sym_delegate] = ACTIONS(1313), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1613), - [anon_sym_LT] = ACTIONS(1223), - [anon_sym_GT] = ACTIONS(1223), + [anon_sym_new] = ACTIONS(1741), + [anon_sym_LT] = ACTIONS(1221), + [anon_sym_GT] = ACTIONS(1221), + [anon_sym_in] = ACTIONS(1221), [anon_sym_where] = ACTIONS(29), - [anon_sym_QMARK] = ACTIONS(1223), + [anon_sym_QMARK] = ACTIONS(1221), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1319), - [anon_sym_BANG] = ACTIONS(1615), - [anon_sym_TILDE] = ACTIONS(1617), - [anon_sym_PLUS_PLUS] = ACTIONS(1617), - [anon_sym_DASH_DASH] = ACTIONS(1617), + [anon_sym_checked] = ACTIONS(1317), + [anon_sym_BANG] = ACTIONS(1743), + [anon_sym_TILDE] = ACTIONS(1745), + [anon_sym_PLUS_PLUS] = ACTIONS(1745), + [anon_sym_DASH_DASH] = ACTIONS(1745), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1615), - [anon_sym_DASH] = ACTIONS(1615), - [anon_sym_STAR] = ACTIONS(1619), - [anon_sym_SLASH] = ACTIONS(1223), - [anon_sym_PERCENT] = ACTIONS(1221), - [anon_sym_CARET] = ACTIONS(1617), - [anon_sym_PIPE] = ACTIONS(1223), - [anon_sym_AMP] = ACTIONS(1615), - [anon_sym_LT_LT] = ACTIONS(1221), - [anon_sym_GT_GT] = ACTIONS(1223), - [anon_sym_GT_GT_GT] = ACTIONS(1221), - [anon_sym_EQ_EQ] = ACTIONS(1221), - [anon_sym_BANG_EQ] = ACTIONS(1221), - [anon_sym_GT_EQ] = ACTIONS(1221), - [anon_sym_LT_EQ] = ACTIONS(1221), - [anon_sym_this] = ACTIONS(1323), - [anon_sym_DOT] = ACTIONS(1223), + [anon_sym_PLUS] = ACTIONS(1743), + [anon_sym_DASH] = ACTIONS(1743), + [anon_sym_STAR] = ACTIONS(1377), + [anon_sym_SLASH] = ACTIONS(1221), + [anon_sym_PERCENT] = ACTIONS(1219), + [anon_sym_CARET] = ACTIONS(1745), + [anon_sym_PIPE] = ACTIONS(1221), + [anon_sym_AMP] = ACTIONS(1743), + [anon_sym_LT_LT] = ACTIONS(1219), + [anon_sym_GT_GT] = ACTIONS(1221), + [anon_sym_GT_GT_GT] = ACTIONS(1219), + [anon_sym_EQ_EQ] = ACTIONS(1219), + [anon_sym_BANG_EQ] = ACTIONS(1219), + [anon_sym_GT_EQ] = ACTIONS(1219), + [anon_sym_LT_EQ] = ACTIONS(1219), + [anon_sym_this] = ACTIONS(1321), + [anon_sym_DOT] = ACTIONS(1221), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1325), - [anon_sym_EQ_GT] = ACTIONS(1221), + [anon_sym_base] = ACTIONS(1323), [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1319), + [anon_sym_unchecked] = ACTIONS(1317), [anon_sym_yield] = ACTIONS(29), - [anon_sym_switch] = ACTIONS(1223), + [anon_sym_switch] = ACTIONS(1221), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1621), + [anon_sym_throw] = ACTIONS(1747), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1623), - [anon_sym_DOT_DOT] = ACTIONS(1625), - [anon_sym_and] = ACTIONS(1223), - [anon_sym_or] = ACTIONS(1223), - [anon_sym_AMP_AMP] = ACTIONS(1221), - [anon_sym_PIPE_PIPE] = ACTIONS(1221), - [anon_sym_QMARK_QMARK] = ACTIONS(1221), + [anon_sym_await] = ACTIONS(1749), + [anon_sym_DOT_DOT] = ACTIONS(1751), + [anon_sym_and] = ACTIONS(1221), + [anon_sym_or] = ACTIONS(1221), + [anon_sym_AMP_AMP] = ACTIONS(1219), + [anon_sym_PIPE_PIPE] = ACTIONS(1219), + [anon_sym_QMARK_QMARK] = ACTIONS(1219), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -67033,23 +66725,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(1223), - [anon_sym_is] = ACTIONS(1223), - [anon_sym_DASH_GT] = ACTIONS(1221), - [anon_sym_stackalloc] = ACTIONS(1333), - [anon_sym_with] = ACTIONS(1223), + [anon_sym_as] = ACTIONS(1221), + [anon_sym_is] = ACTIONS(1221), + [anon_sym_DASH_GT] = ACTIONS(1219), + [anon_sym_stackalloc] = ACTIONS(1331), + [anon_sym_with] = ACTIONS(1221), [anon_sym_sizeof] = ACTIONS(129), [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(1335), - [anon_sym___reftype] = ACTIONS(1337), - [anon_sym___refvalue] = ACTIONS(1339), + [anon_sym___makeref] = ACTIONS(1333), + [anon_sym___reftype] = ACTIONS(1335), + [anon_sym___refvalue] = ACTIONS(1337), [sym_null_literal] = ACTIONS(139), [anon_sym_SQUOTE] = ACTIONS(141), [sym_integer_literal] = ACTIONS(139), [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1341), + [aux_sym_preproc_if_token1] = ACTIONS(1753), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -67065,156 +66757,156 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_interpolation_raw_start] = ACTIONS(155), [sym_raw_string_start] = ACTIONS(157), }, - [190] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(5910), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2247), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(4585), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3379), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3080), - [sym_postfix_unary_expression] = STATE(3111), - [sym_prefix_unary_expression] = STATE(3111), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6154), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3080), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3111), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3080), - [sym_member_access_expression] = STATE(2484), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3111), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7575), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(3080), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3080), - [sym_typeof_expression] = STATE(3080), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2484), - [sym_literal] = STATE(3080), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), - [sym_preproc_region] = STATE(190), - [sym_preproc_endregion] = STATE(190), - [sym_preproc_line] = STATE(190), - [sym_preproc_pragma] = STATE(190), - [sym_preproc_nullable] = STATE(190), - [sym_preproc_error] = STATE(190), - [sym_preproc_warning] = STATE(190), - [sym_preproc_define] = STATE(190), - [sym_preproc_undef] = STATE(190), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3067), - [aux_sym_list_pattern_repeat1] = STATE(6896), + [189] = { + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2816), + [sym__name] = STATE(5873), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2196), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(4853), + [sym_non_lvalue_expression] = STATE(3495), + [sym_lvalue_expression] = STATE(3525), + [sym__expression_statement_expression] = STATE(3462), + [sym_assignment_expression] = STATE(3497), + [sym_binary_expression] = STATE(3462), + [sym_postfix_unary_expression] = STATE(3497), + [sym_prefix_unary_expression] = STATE(3497), + [sym__pointer_indirection_expression] = STATE(2815), + [sym_query_expression] = STATE(3462), + [sym_from_clause] = STATE(6155), + [sym_conditional_expression] = STATE(3462), + [sym_conditional_access_expression] = STATE(3462), + [sym_as_expression] = STATE(3462), + [sym_is_expression] = STATE(3462), + [sym_is_pattern_expression] = STATE(3462), + [sym_cast_expression] = STATE(3462), + [sym_checked_expression] = STATE(3462), + [sym_invocation_expression] = STATE(3497), + [sym_switch_expression] = STATE(3462), + [sym_await_expression] = STATE(3497), + [sym_throw_expression] = STATE(3462), + [sym_element_access_expression] = STATE(2815), + [sym_interpolated_string_expression] = STATE(3462), + [sym_member_access_expression] = STATE(2815), + [sym_object_creation_expression] = STATE(3497), + [sym_parenthesized_expression] = STATE(3497), + [sym__parenthesized_lvalue_expression] = STATE(2815), + [sym_lambda_expression] = STATE(3462), + [sym__lambda_expression_init] = STATE(7427), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3462), + [sym_anonymous_method_expression] = STATE(3462), + [sym_anonymous_object_creation_expression] = STATE(3462), + [sym_implicit_array_creation_expression] = STATE(3462), + [sym_implicit_object_creation_expression] = STATE(3462), + [sym_implicit_stackalloc_expression] = STATE(3462), + [sym_initializer_expression] = STATE(3462), + [sym_default_expression] = STATE(3462), + [sym_with_expression] = STATE(3462), + [sym_sizeof_expression] = STATE(3462), + [sym_typeof_expression] = STATE(3462), + [sym_makeref_expression] = STATE(3462), + [sym_ref_expression] = STATE(3462), + [sym_reftype_expression] = STATE(3462), + [sym_refvalue_expression] = STATE(3462), + [sym_stackalloc_expression] = STATE(3462), + [sym_range_expression] = STATE(3462), + [sym_tuple_expression] = STATE(2815), + [sym_literal] = STATE(3462), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3462), + [sym_preproc_if_in_attribute_list] = STATE(5583), + [sym_preproc_region] = STATE(189), + [sym_preproc_endregion] = STATE(189), + [sym_preproc_line] = STATE(189), + [sym_preproc_pragma] = STATE(189), + [sym_preproc_nullable] = STATE(189), + [sym_preproc_error] = STATE(189), + [sym_preproc_warning] = STATE(189), + [sym_preproc_define] = STATE(189), + [sym_preproc_undef] = STATE(189), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), [aux_sym__lambda_expression_init_repeat1] = STATE(3367), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1481), - [anon_sym_COMMA] = ACTIONS(1151), - [anon_sym_RBRACK] = ACTIONS(1151), - [anon_sym_LPAREN] = ACTIONS(895), - [anon_sym_ref] = ACTIONS(897), - [anon_sym_LBRACE] = ACTIONS(1487), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1305), + [anon_sym_LPAREN] = ACTIONS(1737), + [anon_sym_ref] = ACTIONS(1739), + [anon_sym_LBRACE] = ACTIONS(1311), + [anon_sym_delegate] = ACTIONS(1313), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1061), - [anon_sym_LT] = ACTIONS(1165), - [anon_sym_GT] = ACTIONS(1165), + [anon_sym_new] = ACTIONS(1741), + [anon_sym_LT] = ACTIONS(1161), + [anon_sym_GT] = ACTIONS(1161), + [anon_sym_in] = ACTIONS(1161), [anon_sym_where] = ACTIONS(29), - [anon_sym_QMARK] = ACTIONS(1165), + [anon_sym_QMARK] = ACTIONS(1161), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1067), - [anon_sym_BANG] = ACTIONS(1493), - [anon_sym_TILDE] = ACTIONS(1495), - [anon_sym_PLUS_PLUS] = ACTIONS(1495), - [anon_sym_DASH_DASH] = ACTIONS(1495), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1493), - [anon_sym_DASH] = ACTIONS(1493), - [anon_sym_STAR] = ACTIONS(905), - [anon_sym_SLASH] = ACTIONS(1165), - [anon_sym_PERCENT] = ACTIONS(1151), - [anon_sym_CARET] = ACTIONS(1495), - [anon_sym_PIPE] = ACTIONS(1165), - [anon_sym_AMP] = ACTIONS(1493), - [anon_sym_LT_LT] = ACTIONS(1151), - [anon_sym_GT_GT] = ACTIONS(1165), - [anon_sym_GT_GT_GT] = ACTIONS(1151), - [anon_sym_EQ_EQ] = ACTIONS(1151), - [anon_sym_BANG_EQ] = ACTIONS(1151), - [anon_sym_GT_EQ] = ACTIONS(1151), - [anon_sym_LT_EQ] = ACTIONS(1151), - [anon_sym_this] = ACTIONS(83), - [anon_sym_DOT] = ACTIONS(1165), + [anon_sym_checked] = ACTIONS(1317), + [anon_sym_BANG] = ACTIONS(1743), + [anon_sym_TILDE] = ACTIONS(1745), + [anon_sym_PLUS_PLUS] = ACTIONS(1745), + [anon_sym_DASH_DASH] = ACTIONS(1745), + [anon_sym_true] = ACTIONS(77), + [anon_sym_false] = ACTIONS(77), + [anon_sym_PLUS] = ACTIONS(1743), + [anon_sym_DASH] = ACTIONS(1743), + [anon_sym_STAR] = ACTIONS(1377), + [anon_sym_SLASH] = ACTIONS(1161), + [anon_sym_PERCENT] = ACTIONS(1147), + [anon_sym_CARET] = ACTIONS(1745), + [anon_sym_PIPE] = ACTIONS(1161), + [anon_sym_AMP] = ACTIONS(1743), + [anon_sym_LT_LT] = ACTIONS(1147), + [anon_sym_GT_GT] = ACTIONS(1161), + [anon_sym_GT_GT_GT] = ACTIONS(1147), + [anon_sym_EQ_EQ] = ACTIONS(1147), + [anon_sym_BANG_EQ] = ACTIONS(1147), + [anon_sym_GT_EQ] = ACTIONS(1147), + [anon_sym_LT_EQ] = ACTIONS(1147), + [anon_sym_this] = ACTIONS(1321), + [anon_sym_DOT] = ACTIONS(1161), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), + [anon_sym_base] = ACTIONS(1323), [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1067), + [anon_sym_unchecked] = ACTIONS(1317), [anon_sym_yield] = ACTIONS(29), - [anon_sym_switch] = ACTIONS(1165), + [anon_sym_switch] = ACTIONS(1161), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1079), + [anon_sym_throw] = ACTIONS(1747), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1081), - [anon_sym_DOT_DOT] = ACTIONS(911), - [anon_sym_AMP_AMP] = ACTIONS(1151), - [anon_sym_PIPE_PIPE] = ACTIONS(1151), - [anon_sym_QMARK_QMARK] = ACTIONS(1151), + [anon_sym_await] = ACTIONS(1749), + [anon_sym_DOT_DOT] = ACTIONS(1751), + [anon_sym_and] = ACTIONS(1161), + [anon_sym_or] = ACTIONS(1161), + [anon_sym_AMP_AMP] = ACTIONS(1147), + [anon_sym_PIPE_PIPE] = ACTIONS(1147), + [anon_sym_QMARK_QMARK] = ACTIONS(1147), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -67227,23 +66919,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(1165), - [anon_sym_is] = ACTIONS(1165), - [anon_sym_DASH_GT] = ACTIONS(1151), - [anon_sym_stackalloc] = ACTIONS(127), - [anon_sym_with] = ACTIONS(1165), + [anon_sym_as] = ACTIONS(1161), + [anon_sym_is] = ACTIONS(1161), + [anon_sym_DASH_GT] = ACTIONS(1147), + [anon_sym_stackalloc] = ACTIONS(1331), + [anon_sym_with] = ACTIONS(1161), [anon_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(1333), + [anon_sym___reftype] = ACTIONS(1335), + [anon_sym___refvalue] = ACTIONS(1337), [sym_null_literal] = ACTIONS(139), [anon_sym_SQUOTE] = ACTIONS(141), [sym_integer_literal] = ACTIONS(139), [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1089), + [aux_sym_preproc_if_token1] = ACTIONS(1753), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -67259,85 +66951,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), }, + [190] = { + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2901), + [sym__name] = STATE(5889), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2349), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(3566), + [sym_non_lvalue_expression] = STATE(3685), + [sym_lvalue_expression] = STATE(2890), + [sym__expression_statement_expression] = STATE(3836), + [sym_assignment_expression] = STATE(3689), + [sym_binary_expression] = STATE(3836), + [sym_postfix_unary_expression] = STATE(3689), + [sym_prefix_unary_expression] = STATE(3689), + [sym__pointer_indirection_expression] = STATE(2906), + [sym_query_expression] = STATE(3836), + [sym_from_clause] = STATE(6139), + [sym_conditional_expression] = STATE(3836), + [sym_conditional_access_expression] = STATE(3836), + [sym_as_expression] = STATE(3836), + [sym_is_expression] = STATE(3836), + [sym_is_pattern_expression] = STATE(3836), + [sym_cast_expression] = STATE(3836), + [sym_checked_expression] = STATE(3836), + [sym_invocation_expression] = STATE(3689), + [sym_switch_expression] = STATE(3836), + [sym_await_expression] = STATE(3689), + [sym_throw_expression] = STATE(3836), + [sym_element_access_expression] = STATE(2906), + [sym_interpolated_string_expression] = STATE(3836), + [sym_member_access_expression] = STATE(2906), + [sym_object_creation_expression] = STATE(3689), + [sym_parenthesized_expression] = STATE(3689), + [sym__parenthesized_lvalue_expression] = STATE(2906), + [sym_lambda_expression] = STATE(3836), + [sym__lambda_expression_init] = STATE(7456), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3836), + [sym_anonymous_method_expression] = STATE(3836), + [sym_anonymous_object_creation_expression] = STATE(3836), + [sym_implicit_array_creation_expression] = STATE(3836), + [sym_implicit_object_creation_expression] = STATE(3836), + [sym_implicit_stackalloc_expression] = STATE(3836), + [sym_initializer_expression] = STATE(3836), + [sym_default_expression] = STATE(3836), + [sym_with_expression] = STATE(3836), + [sym_sizeof_expression] = STATE(3836), + [sym_typeof_expression] = STATE(3836), + [sym_makeref_expression] = STATE(3836), + [sym_ref_expression] = STATE(3836), + [sym_reftype_expression] = STATE(3836), + [sym_refvalue_expression] = STATE(3836), + [sym_stackalloc_expression] = STATE(3836), + [sym_range_expression] = STATE(3836), + [sym_tuple_expression] = STATE(2906), + [sym_literal] = STATE(3836), + [sym_character_literal] = STATE(3843), + [sym_string_literal] = STATE(3843), + [sym_raw_string_literal] = STATE(3843), + [sym_boolean_literal] = STATE(3843), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3836), + [sym_preproc_if_in_attribute_list] = STATE(5583), + [sym_preproc_region] = STATE(190), + [sym_preproc_endregion] = STATE(190), + [sym_preproc_line] = STATE(190), + [sym_preproc_pragma] = STATE(190), + [sym_preproc_nullable] = STATE(190), + [sym_preproc_error] = STATE(190), + [sym_preproc_warning] = STATE(190), + [sym_preproc_define] = STATE(190), + [sym_preproc_undef] = STATE(190), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3477), + [sym__identifier_token] = ACTIONS(25), + [anon_sym_alias] = ACTIONS(29), + [anon_sym_global] = ACTIONS(29), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1655), + [anon_sym_COMMA] = ACTIONS(1147), + [anon_sym_LPAREN] = ACTIONS(1755), + [anon_sym_ref] = ACTIONS(1757), + [anon_sym_LBRACE] = ACTIONS(1661), + [anon_sym_delegate] = ACTIONS(1663), + [anon_sym_async] = ACTIONS(1045), + [anon_sym_file] = ACTIONS(29), + [anon_sym_new] = ACTIONS(1759), + [anon_sym_LT] = ACTIONS(1161), + [anon_sym_GT] = ACTIONS(1161), + [anon_sym_where] = ACTIONS(29), + [anon_sym_QMARK] = ACTIONS(1161), + [anon_sym_notnull] = ACTIONS(29), + [anon_sym_unmanaged] = ACTIONS(29), + [anon_sym_checked] = ACTIONS(1667), + [anon_sym_BANG] = ACTIONS(1761), + [anon_sym_TILDE] = ACTIONS(1763), + [anon_sym_PLUS_PLUS] = ACTIONS(1763), + [anon_sym_DASH_DASH] = ACTIONS(1763), + [anon_sym_true] = ACTIONS(1673), + [anon_sym_false] = ACTIONS(1673), + [anon_sym_PLUS] = ACTIONS(1761), + [anon_sym_DASH] = ACTIONS(1761), + [anon_sym_STAR] = ACTIONS(1765), + [anon_sym_SLASH] = ACTIONS(1161), + [anon_sym_PERCENT] = ACTIONS(1147), + [anon_sym_CARET] = ACTIONS(1763), + [anon_sym_PIPE] = ACTIONS(1161), + [anon_sym_AMP] = ACTIONS(1761), + [anon_sym_LT_LT] = ACTIONS(1147), + [anon_sym_GT_GT] = ACTIONS(1161), + [anon_sym_GT_GT_GT] = ACTIONS(1147), + [anon_sym_EQ_EQ] = ACTIONS(1147), + [anon_sym_BANG_EQ] = ACTIONS(1147), + [anon_sym_GT_EQ] = ACTIONS(1147), + [anon_sym_LT_EQ] = ACTIONS(1147), + [anon_sym_this] = ACTIONS(1677), + [anon_sym_DOT] = ACTIONS(1161), + [anon_sym_scoped] = ACTIONS(85), + [anon_sym_base] = ACTIONS(1679), + [anon_sym_var] = ACTIONS(89), + [sym_predefined_type] = ACTIONS(1681), + [anon_sym_unchecked] = ACTIONS(1667), + [anon_sym_yield] = ACTIONS(29), + [anon_sym_switch] = ACTIONS(1161), + [anon_sym_default] = ACTIONS(1683), + [anon_sym_throw] = ACTIONS(1767), + [anon_sym_when] = ACTIONS(29), + [anon_sym_await] = ACTIONS(1769), + [anon_sym_DOT_DOT] = ACTIONS(1771), + [anon_sym_and] = ACTIONS(1161), + [anon_sym_or] = ACTIONS(1161), + [anon_sym_AMP_AMP] = ACTIONS(1147), + [anon_sym_PIPE_PIPE] = ACTIONS(1147), + [anon_sym_QMARK_QMARK] = 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_as] = ACTIONS(1161), + [anon_sym_is] = ACTIONS(1161), + [anon_sym_DASH_GT] = ACTIONS(1147), + [anon_sym_stackalloc] = ACTIONS(1691), + [anon_sym_with] = ACTIONS(1161), + [anon_sym_sizeof] = ACTIONS(1693), + [anon_sym_typeof] = ACTIONS(1695), + [anon_sym___makeref] = ACTIONS(1697), + [anon_sym___reftype] = ACTIONS(1699), + [anon_sym___refvalue] = ACTIONS(1701), + [sym_null_literal] = ACTIONS(1703), + [anon_sym_SQUOTE] = ACTIONS(1705), + [sym_integer_literal] = ACTIONS(1703), + [sym_real_literal] = ACTIONS(1707), + [anon_sym_DQUOTE] = ACTIONS(1709), + [sym_verbatim_string_literal] = ACTIONS(1707), + [aux_sym_preproc_if_token1] = ACTIONS(1711), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + [sym_interpolation_regular_start] = ACTIONS(1713), + [sym_interpolation_verbatim_start] = ACTIONS(1715), + [sym_interpolation_raw_start] = ACTIONS(1717), + [sym_raw_string_start] = ACTIONS(1719), + }, [191] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(5910), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2247), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(4585), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3379), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3080), - [sym_postfix_unary_expression] = STATE(3111), - [sym_prefix_unary_expression] = STATE(3111), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6154), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3080), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3111), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3080), - [sym_member_access_expression] = STATE(2484), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3111), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7575), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(3080), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3080), - [sym_typeof_expression] = STATE(3080), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2484), - [sym_literal] = STATE(3080), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2816), + [sym__name] = STATE(5879), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2196), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(5038), + [sym_non_lvalue_expression] = STATE(3495), + [sym_lvalue_expression] = STATE(3539), + [sym__expression_statement_expression] = STATE(3462), + [sym_assignment_expression] = STATE(3497), + [sym_binary_expression] = STATE(3462), + [sym_postfix_unary_expression] = STATE(3497), + [sym_prefix_unary_expression] = STATE(3497), + [sym__pointer_indirection_expression] = STATE(2815), + [sym_query_expression] = STATE(3462), + [sym_from_clause] = STATE(6144), + [sym_conditional_expression] = STATE(3462), + [sym_conditional_access_expression] = STATE(3462), + [sym_as_expression] = STATE(3462), + [sym_is_expression] = STATE(3462), + [sym_is_pattern_expression] = STATE(3462), + [sym_cast_expression] = STATE(3462), + [sym_checked_expression] = STATE(3462), + [sym_invocation_expression] = STATE(3497), + [sym_switch_expression] = STATE(3462), + [sym_await_expression] = STATE(3497), + [sym_throw_expression] = STATE(3462), + [sym_element_access_expression] = STATE(2815), + [sym_interpolated_string_expression] = STATE(3462), + [sym_member_access_expression] = STATE(2815), + [sym_object_creation_expression] = STATE(3497), + [sym_parenthesized_expression] = STATE(3497), + [sym__parenthesized_lvalue_expression] = STATE(2815), + [sym_lambda_expression] = STATE(3462), + [sym__lambda_expression_init] = STATE(7681), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3462), + [sym_anonymous_method_expression] = STATE(3462), + [sym_anonymous_object_creation_expression] = STATE(3462), + [sym_implicit_array_creation_expression] = STATE(3462), + [sym_implicit_object_creation_expression] = STATE(3462), + [sym_implicit_stackalloc_expression] = STATE(3462), + [sym_initializer_expression] = STATE(3462), + [sym_default_expression] = STATE(3462), + [sym_with_expression] = STATE(3462), + [sym_sizeof_expression] = STATE(3462), + [sym_typeof_expression] = STATE(3462), + [sym_makeref_expression] = STATE(3462), + [sym_ref_expression] = STATE(3462), + [sym_reftype_expression] = STATE(3462), + [sym_refvalue_expression] = STATE(3462), + [sym_stackalloc_expression] = STATE(3462), + [sym_range_expression] = STATE(3462), + [sym_tuple_expression] = STATE(2815), + [sym_literal] = STATE(3462), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3462), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(191), [sym_preproc_endregion] = STATE(191), [sym_preproc_line] = STATE(191), @@ -67347,68 +67233,68 @@ 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(3067), - [aux_sym_list_pattern_repeat1] = STATE(6792), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), [aux_sym__lambda_expression_init_repeat1] = STATE(3367), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1481), - [anon_sym_COMMA] = ACTIONS(1151), - [anon_sym_RBRACK] = ACTIONS(1151), - [anon_sym_LPAREN] = ACTIONS(895), - [anon_sym_ref] = ACTIONS(897), - [anon_sym_LBRACE] = ACTIONS(1487), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1305), + [anon_sym_COLON] = ACTIONS(1147), + [anon_sym_LPAREN] = ACTIONS(1721), + [anon_sym_ref] = ACTIONS(1723), + [anon_sym_LBRACE] = ACTIONS(1311), + [anon_sym_delegate] = ACTIONS(1313), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1061), - [anon_sym_LT] = ACTIONS(1165), - [anon_sym_GT] = ACTIONS(1165), + [anon_sym_new] = ACTIONS(1315), + [anon_sym_LT] = ACTIONS(1161), + [anon_sym_GT] = ACTIONS(1161), [anon_sym_where] = ACTIONS(29), - [anon_sym_QMARK] = ACTIONS(1165), + [anon_sym_QMARK] = ACTIONS(1161), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1067), - [anon_sym_BANG] = ACTIONS(1493), - [anon_sym_TILDE] = ACTIONS(1495), - [anon_sym_PLUS_PLUS] = ACTIONS(1495), - [anon_sym_DASH_DASH] = ACTIONS(1495), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1493), - [anon_sym_DASH] = ACTIONS(1493), - [anon_sym_STAR] = ACTIONS(905), - [anon_sym_SLASH] = ACTIONS(1165), - [anon_sym_PERCENT] = ACTIONS(1151), - [anon_sym_CARET] = ACTIONS(1495), - [anon_sym_PIPE] = ACTIONS(1165), - [anon_sym_AMP] = ACTIONS(1493), - [anon_sym_LT_LT] = ACTIONS(1151), - [anon_sym_GT_GT] = ACTIONS(1165), - [anon_sym_GT_GT_GT] = ACTIONS(1151), - [anon_sym_EQ_EQ] = ACTIONS(1151), - [anon_sym_BANG_EQ] = ACTIONS(1151), - [anon_sym_GT_EQ] = ACTIONS(1151), - [anon_sym_LT_EQ] = ACTIONS(1151), - [anon_sym_this] = ACTIONS(83), - [anon_sym_DOT] = ACTIONS(1165), + [anon_sym_checked] = ACTIONS(1317), + [anon_sym_BANG] = ACTIONS(1725), + [anon_sym_TILDE] = ACTIONS(1727), + [anon_sym_PLUS_PLUS] = ACTIONS(1727), + [anon_sym_DASH_DASH] = ACTIONS(1727), + [anon_sym_true] = ACTIONS(77), + [anon_sym_false] = ACTIONS(77), + [anon_sym_PLUS] = ACTIONS(1725), + [anon_sym_DASH] = ACTIONS(1725), + [anon_sym_STAR] = ACTIONS(1729), + [anon_sym_SLASH] = ACTIONS(1161), + [anon_sym_PERCENT] = ACTIONS(1147), + [anon_sym_CARET] = ACTIONS(1727), + [anon_sym_PIPE] = ACTIONS(1161), + [anon_sym_AMP] = ACTIONS(1725), + [anon_sym_LT_LT] = ACTIONS(1147), + [anon_sym_GT_GT] = ACTIONS(1161), + [anon_sym_GT_GT_GT] = ACTIONS(1147), + [anon_sym_EQ_EQ] = ACTIONS(1147), + [anon_sym_BANG_EQ] = ACTIONS(1147), + [anon_sym_GT_EQ] = ACTIONS(1147), + [anon_sym_LT_EQ] = ACTIONS(1147), + [anon_sym_this] = ACTIONS(1321), + [anon_sym_DOT] = ACTIONS(1161), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), + [anon_sym_base] = ACTIONS(1323), [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1067), + [anon_sym_unchecked] = ACTIONS(1317), [anon_sym_yield] = ACTIONS(29), - [anon_sym_switch] = ACTIONS(1165), + [anon_sym_switch] = ACTIONS(1161), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1079), + [anon_sym_throw] = ACTIONS(1731), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1081), - [anon_sym_DOT_DOT] = ACTIONS(911), - [anon_sym_AMP_AMP] = ACTIONS(1151), - [anon_sym_PIPE_PIPE] = ACTIONS(1151), - [anon_sym_QMARK_QMARK] = ACTIONS(1151), + [anon_sym_await] = ACTIONS(1733), + [anon_sym_DOT_DOT] = ACTIONS(1735), + [anon_sym_and] = ACTIONS(1161), + [anon_sym_or] = ACTIONS(1161), + [anon_sym_AMP_AMP] = ACTIONS(1147), + [anon_sym_PIPE_PIPE] = ACTIONS(1147), + [anon_sym_QMARK_QMARK] = ACTIONS(1147), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -67421,23 +67307,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(1165), - [anon_sym_is] = ACTIONS(1165), - [anon_sym_DASH_GT] = ACTIONS(1151), - [anon_sym_stackalloc] = ACTIONS(127), - [anon_sym_with] = ACTIONS(1165), + [anon_sym_as] = ACTIONS(1161), + [anon_sym_is] = ACTIONS(1161), + [anon_sym_DASH_GT] = ACTIONS(1147), + [anon_sym_stackalloc] = ACTIONS(1331), + [anon_sym_with] = ACTIONS(1161), [anon_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(1333), + [anon_sym___reftype] = ACTIONS(1335), + [anon_sym___refvalue] = ACTIONS(1337), [sym_null_literal] = ACTIONS(139), [anon_sym_SQUOTE] = ACTIONS(141), [sym_integer_literal] = ACTIONS(139), [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1089), + [aux_sym_preproc_if_token1] = ACTIONS(1339), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -67454,84 +67340,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [192] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(5910), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2247), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(4585), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3379), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3080), - [sym_postfix_unary_expression] = STATE(3111), - [sym_prefix_unary_expression] = STATE(3111), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6154), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3080), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3111), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3080), - [sym_member_access_expression] = STATE(2484), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3111), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7575), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(3080), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3080), - [sym_typeof_expression] = STATE(3080), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2484), - [sym_literal] = STATE(3080), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(5873), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2238), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(4616), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3468), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3102), + [sym_postfix_unary_expression] = STATE(3079), + [sym_prefix_unary_expression] = STATE(3079), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6134), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3102), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3079), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3102), + [sym_member_access_expression] = STATE(2472), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3079), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7309), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(3102), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3102), + [sym_typeof_expression] = STATE(3102), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2472), + [sym_literal] = STATE(3102), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(192), [sym_preproc_endregion] = STATE(192), [sym_preproc_line] = STATE(192), @@ -67541,68 +67427,68 @@ 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(3067), - [aux_sym_list_pattern_repeat1] = STATE(6902), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), - [sym__identifier_token] = ACTIONS(25), - [anon_sym_alias] = ACTIONS(29), - [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1481), - [anon_sym_COMMA] = ACTIONS(1151), - [anon_sym_RBRACK] = ACTIONS(1151), - [anon_sym_LPAREN] = ACTIONS(895), - [anon_sym_ref] = ACTIONS(897), - [anon_sym_LBRACE] = ACTIONS(1487), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), - [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1061), - [anon_sym_LT] = ACTIONS(1165), - [anon_sym_GT] = ACTIONS(1165), - [anon_sym_where] = ACTIONS(29), - [anon_sym_QMARK] = ACTIONS(1165), - [anon_sym_notnull] = ACTIONS(29), - [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1067), - [anon_sym_BANG] = ACTIONS(1493), - [anon_sym_TILDE] = ACTIONS(1495), - [anon_sym_PLUS_PLUS] = ACTIONS(1495), - [anon_sym_DASH_DASH] = ACTIONS(1495), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1493), - [anon_sym_DASH] = ACTIONS(1493), - [anon_sym_STAR] = ACTIONS(905), - [anon_sym_SLASH] = ACTIONS(1165), - [anon_sym_PERCENT] = ACTIONS(1151), - [anon_sym_CARET] = ACTIONS(1495), - [anon_sym_PIPE] = ACTIONS(1165), - [anon_sym_AMP] = ACTIONS(1493), - [anon_sym_LT_LT] = ACTIONS(1151), - [anon_sym_GT_GT] = ACTIONS(1165), - [anon_sym_GT_GT_GT] = ACTIONS(1151), - [anon_sym_EQ_EQ] = ACTIONS(1151), - [anon_sym_BANG_EQ] = ACTIONS(1151), - [anon_sym_GT_EQ] = ACTIONS(1151), - [anon_sym_LT_EQ] = ACTIONS(1151), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym_list_pattern_repeat1] = STATE(6946), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), + [sym__identifier_token] = ACTIONS(25), + [anon_sym_alias] = ACTIONS(29), + [anon_sym_global] = ACTIONS(29), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1479), + [anon_sym_COMMA] = ACTIONS(1219), + [anon_sym_RBRACK] = ACTIONS(1219), + [anon_sym_LPAREN] = ACTIONS(659), + [anon_sym_ref] = ACTIONS(663), + [anon_sym_LBRACE] = ACTIONS(1481), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), + [anon_sym_file] = ACTIONS(29), + [anon_sym_new] = ACTIONS(1059), + [anon_sym_LT] = ACTIONS(1221), + [anon_sym_GT] = ACTIONS(1221), + [anon_sym_where] = ACTIONS(29), + [anon_sym_QMARK] = ACTIONS(1221), + [anon_sym_notnull] = ACTIONS(29), + [anon_sym_unmanaged] = ACTIONS(29), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(1483), + [anon_sym_TILDE] = ACTIONS(1485), + [anon_sym_PLUS_PLUS] = ACTIONS(1485), + [anon_sym_DASH_DASH] = ACTIONS(1485), + [anon_sym_true] = ACTIONS(77), + [anon_sym_false] = ACTIONS(77), + [anon_sym_PLUS] = ACTIONS(1483), + [anon_sym_DASH] = ACTIONS(1483), + [anon_sym_STAR] = ACTIONS(683), + [anon_sym_SLASH] = ACTIONS(1221), + [anon_sym_PERCENT] = ACTIONS(1219), + [anon_sym_CARET] = ACTIONS(1485), + [anon_sym_PIPE] = ACTIONS(1221), + [anon_sym_AMP] = ACTIONS(1483), + [anon_sym_LT_LT] = ACTIONS(1219), + [anon_sym_GT_GT] = ACTIONS(1221), + [anon_sym_GT_GT_GT] = ACTIONS(1219), + [anon_sym_EQ_EQ] = ACTIONS(1219), + [anon_sym_BANG_EQ] = ACTIONS(1219), + [anon_sym_GT_EQ] = ACTIONS(1219), + [anon_sym_LT_EQ] = ACTIONS(1219), [anon_sym_this] = ACTIONS(83), - [anon_sym_DOT] = ACTIONS(1165), + [anon_sym_DOT] = ACTIONS(1221), [anon_sym_scoped] = ACTIONS(85), [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1067), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), - [anon_sym_switch] = ACTIONS(1165), + [anon_sym_switch] = ACTIONS(1221), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1079), + [anon_sym_throw] = ACTIONS(1077), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1081), - [anon_sym_DOT_DOT] = ACTIONS(911), - [anon_sym_AMP_AMP] = ACTIONS(1151), - [anon_sym_PIPE_PIPE] = ACTIONS(1151), - [anon_sym_QMARK_QMARK] = ACTIONS(1151), + [anon_sym_await] = ACTIONS(1079), + [anon_sym_DOT_DOT] = ACTIONS(711), + [anon_sym_AMP_AMP] = ACTIONS(1219), + [anon_sym_PIPE_PIPE] = ACTIONS(1219), + [anon_sym_QMARK_QMARK] = ACTIONS(1219), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -67615,11 +67501,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(1165), - [anon_sym_is] = ACTIONS(1165), - [anon_sym_DASH_GT] = ACTIONS(1151), + [anon_sym_as] = ACTIONS(1221), + [anon_sym_is] = ACTIONS(1221), + [anon_sym_DASH_GT] = ACTIONS(1219), [anon_sym_stackalloc] = ACTIONS(127), - [anon_sym_with] = ACTIONS(1165), + [anon_sym_with] = ACTIONS(1221), [anon_sym_sizeof] = ACTIONS(129), [anon_sym_typeof] = ACTIONS(131), [anon_sym___makeref] = ACTIONS(133), @@ -67631,7 +67517,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(1089), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -67648,84 +67534,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [193] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2762), - [sym__name] = STATE(5893), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2316), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(4671), - [sym_non_lvalue_expression] = STATE(3438), - [sym_lvalue_expression] = STATE(3391), - [sym__expression_statement_expression] = STATE(3362), - [sym_assignment_expression] = STATE(3449), - [sym_binary_expression] = STATE(3362), - [sym_postfix_unary_expression] = STATE(3449), - [sym_prefix_unary_expression] = STATE(3449), - [sym__pointer_indirection_expression] = STATE(2747), - [sym_query_expression] = STATE(3362), - [sym_from_clause] = STATE(6155), - [sym_conditional_expression] = STATE(3362), - [sym_conditional_access_expression] = STATE(3362), - [sym_as_expression] = STATE(3362), - [sym_is_expression] = STATE(3362), - [sym_is_pattern_expression] = STATE(3362), - [sym_cast_expression] = STATE(3362), - [sym_checked_expression] = STATE(3362), - [sym_invocation_expression] = STATE(3449), - [sym_switch_expression] = STATE(3362), - [sym_await_expression] = STATE(3449), - [sym_throw_expression] = STATE(3362), - [sym_element_access_expression] = STATE(2747), - [sym_interpolated_string_expression] = STATE(3362), - [sym_member_access_expression] = STATE(2747), - [sym_object_creation_expression] = STATE(3449), - [sym_parenthesized_expression] = STATE(3449), - [sym__parenthesized_lvalue_expression] = STATE(2747), - [sym_lambda_expression] = STATE(3362), - [sym__lambda_expression_init] = STATE(7726), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3362), - [sym_anonymous_method_expression] = STATE(3362), - [sym_anonymous_object_creation_expression] = STATE(3362), - [sym_implicit_array_creation_expression] = STATE(3362), - [sym_implicit_object_creation_expression] = STATE(3362), - [sym_implicit_stackalloc_expression] = STATE(3362), - [sym_initializer_expression] = STATE(3362), - [sym_default_expression] = STATE(3362), - [sym_with_expression] = STATE(3362), - [sym_sizeof_expression] = STATE(3362), - [sym_typeof_expression] = STATE(3362), - [sym_makeref_expression] = STATE(3362), - [sym_ref_expression] = STATE(3362), - [sym_reftype_expression] = STATE(3362), - [sym_refvalue_expression] = STATE(3362), - [sym_stackalloc_expression] = STATE(3362), - [sym_range_expression] = STATE(3362), - [sym_tuple_expression] = STATE(2747), - [sym_literal] = STATE(3362), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3362), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(5873), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2238), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(4616), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3468), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3102), + [sym_postfix_unary_expression] = STATE(3079), + [sym_prefix_unary_expression] = STATE(3079), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6134), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3102), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3079), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3102), + [sym_member_access_expression] = STATE(2472), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3079), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7309), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(3102), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3102), + [sym_typeof_expression] = STATE(3102), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2472), + [sym_literal] = STATE(3102), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(193), [sym_preproc_endregion] = STATE(193), [sym_preproc_line] = STATE(193), @@ -67735,68 +67621,68 @@ 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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3385), - [sym__identifier_token] = ACTIONS(25), - [anon_sym_alias] = ACTIONS(29), - [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1307), - [anon_sym_COLON] = ACTIONS(1221), - [anon_sym_LPAREN] = ACTIONS(1711), - [anon_sym_ref] = ACTIONS(1713), - [anon_sym_LBRACE] = ACTIONS(1313), - [anon_sym_delegate] = ACTIONS(1315), - [anon_sym_async] = ACTIONS(1047), - [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1613), - [anon_sym_LT] = ACTIONS(1223), - [anon_sym_GT] = ACTIONS(1223), - [anon_sym_where] = ACTIONS(29), - [anon_sym_QMARK] = ACTIONS(1223), - [anon_sym_notnull] = ACTIONS(29), - [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1319), - [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(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1715), - [anon_sym_DASH] = ACTIONS(1715), - [anon_sym_STAR] = ACTIONS(1719), - [anon_sym_SLASH] = ACTIONS(1223), - [anon_sym_PERCENT] = ACTIONS(1221), - [anon_sym_CARET] = ACTIONS(1717), - [anon_sym_PIPE] = ACTIONS(1223), - [anon_sym_AMP] = ACTIONS(1715), - [anon_sym_LT_LT] = ACTIONS(1221), - [anon_sym_GT_GT] = ACTIONS(1223), - [anon_sym_GT_GT_GT] = ACTIONS(1221), - [anon_sym_EQ_EQ] = ACTIONS(1221), - [anon_sym_BANG_EQ] = ACTIONS(1221), - [anon_sym_GT_EQ] = ACTIONS(1221), - [anon_sym_LT_EQ] = ACTIONS(1221), - [anon_sym_this] = ACTIONS(1323), - [anon_sym_DOT] = ACTIONS(1223), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym_list_pattern_repeat1] = STATE(7010), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), + [sym__identifier_token] = ACTIONS(25), + [anon_sym_alias] = ACTIONS(29), + [anon_sym_global] = ACTIONS(29), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1479), + [anon_sym_COMMA] = ACTIONS(1219), + [anon_sym_RBRACK] = ACTIONS(1219), + [anon_sym_LPAREN] = ACTIONS(659), + [anon_sym_ref] = ACTIONS(663), + [anon_sym_LBRACE] = ACTIONS(1481), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), + [anon_sym_file] = ACTIONS(29), + [anon_sym_new] = ACTIONS(1059), + [anon_sym_LT] = ACTIONS(1221), + [anon_sym_GT] = ACTIONS(1221), + [anon_sym_where] = ACTIONS(29), + [anon_sym_QMARK] = ACTIONS(1221), + [anon_sym_notnull] = ACTIONS(29), + [anon_sym_unmanaged] = ACTIONS(29), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(1483), + [anon_sym_TILDE] = ACTIONS(1485), + [anon_sym_PLUS_PLUS] = ACTIONS(1485), + [anon_sym_DASH_DASH] = ACTIONS(1485), + [anon_sym_true] = ACTIONS(77), + [anon_sym_false] = ACTIONS(77), + [anon_sym_PLUS] = ACTIONS(1483), + [anon_sym_DASH] = ACTIONS(1483), + [anon_sym_STAR] = ACTIONS(683), + [anon_sym_SLASH] = ACTIONS(1221), + [anon_sym_PERCENT] = ACTIONS(1219), + [anon_sym_CARET] = ACTIONS(1485), + [anon_sym_PIPE] = ACTIONS(1221), + [anon_sym_AMP] = ACTIONS(1483), + [anon_sym_LT_LT] = ACTIONS(1219), + [anon_sym_GT_GT] = ACTIONS(1221), + [anon_sym_GT_GT_GT] = ACTIONS(1219), + [anon_sym_EQ_EQ] = ACTIONS(1219), + [anon_sym_BANG_EQ] = ACTIONS(1219), + [anon_sym_GT_EQ] = ACTIONS(1219), + [anon_sym_LT_EQ] = ACTIONS(1219), + [anon_sym_this] = ACTIONS(83), + [anon_sym_DOT] = ACTIONS(1221), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1325), + [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1319), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), - [anon_sym_switch] = ACTIONS(1223), + [anon_sym_switch] = ACTIONS(1221), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1721), + [anon_sym_throw] = ACTIONS(1077), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1723), - [anon_sym_DOT_DOT] = ACTIONS(1725), - [anon_sym_and] = ACTIONS(1223), - [anon_sym_or] = ACTIONS(1223), - [anon_sym_AMP_AMP] = ACTIONS(1221), - [anon_sym_PIPE_PIPE] = ACTIONS(1221), - [anon_sym_QMARK_QMARK] = ACTIONS(1221), + [anon_sym_await] = ACTIONS(1079), + [anon_sym_DOT_DOT] = ACTIONS(711), + [anon_sym_AMP_AMP] = ACTIONS(1219), + [anon_sym_PIPE_PIPE] = ACTIONS(1219), + [anon_sym_QMARK_QMARK] = ACTIONS(1219), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -67809,23 +67695,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(1223), - [anon_sym_is] = ACTIONS(1223), - [anon_sym_DASH_GT] = ACTIONS(1221), - [anon_sym_stackalloc] = ACTIONS(1333), - [anon_sym_with] = ACTIONS(1223), + [anon_sym_as] = ACTIONS(1221), + [anon_sym_is] = ACTIONS(1221), + [anon_sym_DASH_GT] = ACTIONS(1219), + [anon_sym_stackalloc] = ACTIONS(127), + [anon_sym_with] = ACTIONS(1221), [anon_sym_sizeof] = ACTIONS(129), [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(1335), - [anon_sym___reftype] = ACTIONS(1337), - [anon_sym___refvalue] = ACTIONS(1339), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), [sym_null_literal] = ACTIONS(139), [anon_sym_SQUOTE] = ACTIONS(141), [sym_integer_literal] = ACTIONS(139), [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1341), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -67842,84 +67728,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [194] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2914), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2459), [sym__name] = STATE(5873), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2362), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(3655), - [sym_non_lvalue_expression] = STATE(3880), - [sym_lvalue_expression] = STATE(2949), - [sym__expression_statement_expression] = STATE(3873), - [sym_assignment_expression] = STATE(3881), - [sym_binary_expression] = STATE(3873), - [sym_postfix_unary_expression] = STATE(3881), - [sym_prefix_unary_expression] = STATE(3881), - [sym__pointer_indirection_expression] = STATE(2913), - [sym_query_expression] = STATE(3873), - [sym_from_clause] = STATE(6182), - [sym_conditional_expression] = STATE(3873), - [sym_conditional_access_expression] = STATE(3873), - [sym_as_expression] = STATE(3873), - [sym_is_expression] = STATE(3873), - [sym_is_pattern_expression] = STATE(3873), - [sym_cast_expression] = STATE(3873), - [sym_checked_expression] = STATE(3873), - [sym_invocation_expression] = STATE(3881), - [sym_switch_expression] = STATE(3873), - [sym_await_expression] = STATE(3881), - [sym_throw_expression] = STATE(3873), - [sym_element_access_expression] = STATE(2913), - [sym_interpolated_string_expression] = STATE(3873), - [sym_member_access_expression] = STATE(2913), - [sym_object_creation_expression] = STATE(3881), - [sym_parenthesized_expression] = STATE(3881), - [sym__parenthesized_lvalue_expression] = STATE(2913), - [sym_lambda_expression] = STATE(3873), - [sym__lambda_expression_init] = STATE(7721), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3873), - [sym_anonymous_method_expression] = STATE(3873), - [sym_anonymous_object_creation_expression] = STATE(3873), - [sym_implicit_array_creation_expression] = STATE(3873), - [sym_implicit_object_creation_expression] = STATE(3873), - [sym_implicit_stackalloc_expression] = STATE(3873), - [sym_initializer_expression] = STATE(3873), - [sym_default_expression] = STATE(3873), - [sym_with_expression] = STATE(3873), - [sym_sizeof_expression] = STATE(3873), - [sym_typeof_expression] = STATE(3873), - [sym_makeref_expression] = STATE(3873), - [sym_ref_expression] = STATE(3873), - [sym_reftype_expression] = STATE(3873), - [sym_refvalue_expression] = STATE(3873), - [sym_stackalloc_expression] = STATE(3873), - [sym_range_expression] = STATE(3873), - [sym_tuple_expression] = STATE(2913), - [sym_literal] = STATE(3873), - [sym_character_literal] = STATE(3877), - [sym_string_literal] = STATE(3877), - [sym_raw_string_literal] = STATE(3877), - [sym_boolean_literal] = STATE(3877), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3873), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2238), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(4616), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3468), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3102), + [sym_postfix_unary_expression] = STATE(3079), + [sym_prefix_unary_expression] = STATE(3079), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6134), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3102), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3079), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3102), + [sym_member_access_expression] = STATE(2472), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3079), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7309), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(3102), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3102), + [sym_typeof_expression] = STATE(3102), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2472), + [sym_literal] = STATE(3102), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(194), [sym_preproc_endregion] = STATE(194), [sym_preproc_line] = STATE(194), @@ -67929,68 +67815,68 @@ 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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3382), - [sym__identifier_token] = ACTIONS(25), - [anon_sym_alias] = ACTIONS(29), - [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1627), - [anon_sym_COMMA] = ACTIONS(1151), - [anon_sym_LPAREN] = ACTIONS(1629), - [anon_sym_ref] = ACTIONS(1631), - [anon_sym_LBRACE] = ACTIONS(1633), - [anon_sym_delegate] = ACTIONS(1635), - [anon_sym_async] = ACTIONS(1047), - [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1637), - [anon_sym_LT] = ACTIONS(1165), - [anon_sym_GT] = ACTIONS(1165), - [anon_sym_where] = ACTIONS(29), - [anon_sym_QMARK] = ACTIONS(1165), - [anon_sym_notnull] = ACTIONS(29), - [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1639), - [anon_sym_BANG] = ACTIONS(1641), - [anon_sym_TILDE] = ACTIONS(1643), - [anon_sym_PLUS_PLUS] = ACTIONS(1643), - [anon_sym_DASH_DASH] = ACTIONS(1643), - [anon_sym_true] = ACTIONS(1645), - [anon_sym_false] = ACTIONS(1645), - [anon_sym_PLUS] = ACTIONS(1641), - [anon_sym_DASH] = ACTIONS(1641), - [anon_sym_STAR] = ACTIONS(1647), - [anon_sym_SLASH] = ACTIONS(1165), - [anon_sym_PERCENT] = ACTIONS(1151), - [anon_sym_CARET] = ACTIONS(1643), - [anon_sym_PIPE] = ACTIONS(1165), - [anon_sym_AMP] = ACTIONS(1641), - [anon_sym_LT_LT] = ACTIONS(1151), - [anon_sym_GT_GT] = ACTIONS(1165), - [anon_sym_GT_GT_GT] = ACTIONS(1151), - [anon_sym_EQ_EQ] = ACTIONS(1151), - [anon_sym_BANG_EQ] = ACTIONS(1151), - [anon_sym_GT_EQ] = ACTIONS(1151), - [anon_sym_LT_EQ] = ACTIONS(1151), - [anon_sym_this] = ACTIONS(1649), - [anon_sym_DOT] = ACTIONS(1165), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym_list_pattern_repeat1] = STATE(6953), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), + [sym__identifier_token] = ACTIONS(25), + [anon_sym_alias] = ACTIONS(29), + [anon_sym_global] = ACTIONS(29), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1479), + [anon_sym_COMMA] = ACTIONS(1219), + [anon_sym_RBRACK] = ACTIONS(1219), + [anon_sym_LPAREN] = ACTIONS(659), + [anon_sym_ref] = ACTIONS(663), + [anon_sym_LBRACE] = ACTIONS(1481), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), + [anon_sym_file] = ACTIONS(29), + [anon_sym_new] = ACTIONS(1059), + [anon_sym_LT] = ACTIONS(1221), + [anon_sym_GT] = ACTIONS(1221), + [anon_sym_where] = ACTIONS(29), + [anon_sym_QMARK] = ACTIONS(1221), + [anon_sym_notnull] = ACTIONS(29), + [anon_sym_unmanaged] = ACTIONS(29), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(1483), + [anon_sym_TILDE] = ACTIONS(1485), + [anon_sym_PLUS_PLUS] = ACTIONS(1485), + [anon_sym_DASH_DASH] = ACTIONS(1485), + [anon_sym_true] = ACTIONS(77), + [anon_sym_false] = ACTIONS(77), + [anon_sym_PLUS] = ACTIONS(1483), + [anon_sym_DASH] = ACTIONS(1483), + [anon_sym_STAR] = ACTIONS(683), + [anon_sym_SLASH] = ACTIONS(1221), + [anon_sym_PERCENT] = ACTIONS(1219), + [anon_sym_CARET] = ACTIONS(1485), + [anon_sym_PIPE] = ACTIONS(1221), + [anon_sym_AMP] = ACTIONS(1483), + [anon_sym_LT_LT] = ACTIONS(1219), + [anon_sym_GT_GT] = ACTIONS(1221), + [anon_sym_GT_GT_GT] = ACTIONS(1219), + [anon_sym_EQ_EQ] = ACTIONS(1219), + [anon_sym_BANG_EQ] = ACTIONS(1219), + [anon_sym_GT_EQ] = ACTIONS(1219), + [anon_sym_LT_EQ] = ACTIONS(1219), + [anon_sym_this] = ACTIONS(83), + [anon_sym_DOT] = ACTIONS(1221), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1651), + [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1653), - [anon_sym_unchecked] = ACTIONS(1639), + [sym_predefined_type] = ACTIONS(91), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), - [anon_sym_switch] = ACTIONS(1165), - [anon_sym_default] = ACTIONS(1655), - [anon_sym_throw] = ACTIONS(1657), + [anon_sym_switch] = ACTIONS(1221), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(1077), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1659), - [anon_sym_DOT_DOT] = ACTIONS(1661), - [anon_sym_and] = ACTIONS(1165), - [anon_sym_or] = ACTIONS(1165), - [anon_sym_AMP_AMP] = ACTIONS(1151), - [anon_sym_PIPE_PIPE] = ACTIONS(1151), - [anon_sym_QMARK_QMARK] = ACTIONS(1151), + [anon_sym_await] = ACTIONS(1079), + [anon_sym_DOT_DOT] = ACTIONS(711), + [anon_sym_AMP_AMP] = ACTIONS(1219), + [anon_sym_PIPE_PIPE] = ACTIONS(1219), + [anon_sym_QMARK_QMARK] = ACTIONS(1219), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -68003,23 +67889,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(1165), - [anon_sym_is] = ACTIONS(1165), - [anon_sym_DASH_GT] = ACTIONS(1151), - [anon_sym_stackalloc] = ACTIONS(1663), - [anon_sym_with] = ACTIONS(1165), - [anon_sym_sizeof] = ACTIONS(1665), - [anon_sym_typeof] = ACTIONS(1667), - [anon_sym___makeref] = ACTIONS(1669), - [anon_sym___reftype] = ACTIONS(1671), - [anon_sym___refvalue] = ACTIONS(1673), - [sym_null_literal] = ACTIONS(1675), - [anon_sym_SQUOTE] = ACTIONS(1677), - [sym_integer_literal] = ACTIONS(1675), - [sym_real_literal] = ACTIONS(1679), - [anon_sym_DQUOTE] = ACTIONS(1681), - [sym_verbatim_string_literal] = ACTIONS(1679), - [aux_sym_preproc_if_token1] = ACTIONS(1683), + [anon_sym_as] = ACTIONS(1221), + [anon_sym_is] = ACTIONS(1221), + [anon_sym_DASH_GT] = ACTIONS(1219), + [anon_sym_stackalloc] = ACTIONS(127), + [anon_sym_with] = ACTIONS(1221), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_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), @@ -68030,90 +67916,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1685), - [sym_interpolation_verbatim_start] = ACTIONS(1687), - [sym_interpolation_raw_start] = ACTIONS(1689), - [sym_raw_string_start] = ACTIONS(1691), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [sym_interpolation_raw_start] = ACTIONS(155), + [sym_raw_string_start] = ACTIONS(157), }, [195] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(3184), - [sym__name] = STATE(5883), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2313), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2269), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(5025), - [sym_non_lvalue_expression] = STATE(4541), - [sym_lvalue_expression] = STATE(3527), - [sym__expression_statement_expression] = STATE(4529), - [sym_assignment_expression] = STATE(4543), - [sym_binary_expression] = STATE(4529), - [sym_postfix_unary_expression] = STATE(4543), - [sym_prefix_unary_expression] = STATE(4543), - [sym__pointer_indirection_expression] = STATE(3175), - [sym_query_expression] = STATE(4529), - [sym_from_clause] = STATE(6169), - [sym_conditional_expression] = STATE(4529), - [sym_conditional_access_expression] = STATE(4529), - [sym_as_expression] = STATE(4529), - [sym_is_expression] = STATE(4529), - [sym_is_pattern_expression] = STATE(4529), - [sym_cast_expression] = STATE(4529), - [sym_checked_expression] = STATE(4529), - [sym_invocation_expression] = STATE(4543), - [sym_switch_expression] = STATE(4529), - [sym_await_expression] = STATE(4543), - [sym_throw_expression] = STATE(4529), - [sym_element_access_expression] = STATE(3175), - [sym_interpolated_string_expression] = STATE(4529), - [sym_member_access_expression] = STATE(3175), - [sym_object_creation_expression] = STATE(4543), - [sym_parenthesized_expression] = STATE(4543), - [sym__parenthesized_lvalue_expression] = STATE(3175), - [sym_lambda_expression] = STATE(4529), - [sym__lambda_expression_init] = STATE(7337), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(4529), - [sym_anonymous_method_expression] = STATE(4529), - [sym_anonymous_object_creation_expression] = STATE(4529), - [sym_implicit_array_creation_expression] = STATE(4529), - [sym_implicit_object_creation_expression] = STATE(4529), - [sym_implicit_stackalloc_expression] = STATE(4529), - [sym_initializer_expression] = STATE(4529), - [sym_default_expression] = STATE(4529), - [sym_with_expression] = STATE(4529), - [sym_sizeof_expression] = STATE(4529), - [sym_typeof_expression] = STATE(4529), - [sym_makeref_expression] = STATE(4529), - [sym_ref_expression] = STATE(4529), - [sym_reftype_expression] = STATE(4529), - [sym_refvalue_expression] = STATE(4529), - [sym_stackalloc_expression] = STATE(4529), - [sym_range_expression] = STATE(4529), - [sym_tuple_expression] = STATE(3175), - [sym_literal] = STATE(4529), - [sym_character_literal] = STATE(4536), - [sym_string_literal] = STATE(4536), - [sym_raw_string_literal] = STATE(4536), - [sym_boolean_literal] = STATE(4536), - [sym_identifier] = STATE(2246), - [sym__reserved_identifier] = STATE(2240), - [sym_preproc_if_in_expression] = STATE(4529), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(3182), + [sym__name] = STATE(5882), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2306), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2262), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(4927), + [sym_non_lvalue_expression] = STATE(4580), + [sym_lvalue_expression] = STATE(3534), + [sym__expression_statement_expression] = STATE(4573), + [sym_assignment_expression] = STATE(4581), + [sym_binary_expression] = STATE(4573), + [sym_postfix_unary_expression] = STATE(4581), + [sym_prefix_unary_expression] = STATE(4581), + [sym__pointer_indirection_expression] = STATE(3144), + [sym_query_expression] = STATE(4573), + [sym_from_clause] = STATE(6133), + [sym_conditional_expression] = STATE(4573), + [sym_conditional_access_expression] = STATE(4573), + [sym_as_expression] = STATE(4573), + [sym_is_expression] = STATE(4573), + [sym_is_pattern_expression] = STATE(4573), + [sym_cast_expression] = STATE(4573), + [sym_checked_expression] = STATE(4573), + [sym_invocation_expression] = STATE(4581), + [sym_switch_expression] = STATE(4573), + [sym_await_expression] = STATE(4581), + [sym_throw_expression] = STATE(4573), + [sym_element_access_expression] = STATE(3144), + [sym_interpolated_string_expression] = STATE(4573), + [sym_member_access_expression] = STATE(3144), + [sym_object_creation_expression] = STATE(4581), + [sym_parenthesized_expression] = STATE(4581), + [sym__parenthesized_lvalue_expression] = STATE(3144), + [sym_lambda_expression] = STATE(4573), + [sym__lambda_expression_init] = STATE(7592), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(4573), + [sym_anonymous_method_expression] = STATE(4573), + [sym_anonymous_object_creation_expression] = STATE(4573), + [sym_implicit_array_creation_expression] = STATE(4573), + [sym_implicit_object_creation_expression] = STATE(4573), + [sym_implicit_stackalloc_expression] = STATE(4573), + [sym_initializer_expression] = STATE(4573), + [sym_default_expression] = STATE(4573), + [sym_with_expression] = STATE(4573), + [sym_sizeof_expression] = STATE(4573), + [sym_typeof_expression] = STATE(4573), + [sym_makeref_expression] = STATE(4573), + [sym_ref_expression] = STATE(4573), + [sym_reftype_expression] = STATE(4573), + [sym_refvalue_expression] = STATE(4573), + [sym_stackalloc_expression] = STATE(4573), + [sym_range_expression] = STATE(4573), + [sym_tuple_expression] = STATE(3144), + [sym_literal] = STATE(4573), + [sym_character_literal] = STATE(4575), + [sym_string_literal] = STATE(4575), + [sym_raw_string_literal] = STATE(4575), + [sym_boolean_literal] = STATE(4575), + [sym_identifier] = STATE(2237), + [sym__reserved_identifier] = STATE(2229), + [sym_preproc_if_in_expression] = STATE(4573), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(195), [sym_preproc_endregion] = STATE(195), [sym_preproc_line] = STATE(195), @@ -68123,191 +68009,191 @@ 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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3363), - [sym__identifier_token] = ACTIONS(1387), - [anon_sym_alias] = ACTIONS(1389), - [anon_sym_global] = ACTIONS(1389), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1391), - [anon_sym_COLON] = ACTIONS(1221), - [anon_sym_COMMA] = ACTIONS(1221), - [anon_sym_LPAREN] = ACTIONS(1745), - [anon_sym_ref] = ACTIONS(1747), - [anon_sym_LBRACE] = ACTIONS(1397), - [anon_sym_delegate] = ACTIONS(1399), - [anon_sym_async] = ACTIONS(1047), - [anon_sym_file] = ACTIONS(1389), - [anon_sym_new] = ACTIONS(1467), - [anon_sym_LT] = ACTIONS(1223), - [anon_sym_GT] = ACTIONS(1223), - [anon_sym_where] = ACTIONS(1389), - [anon_sym_QMARK] = ACTIONS(1223), - [anon_sym_notnull] = ACTIONS(1389), - [anon_sym_unmanaged] = ACTIONS(1389), - [anon_sym_checked] = ACTIONS(1403), - [anon_sym_BANG] = ACTIONS(1749), - [anon_sym_TILDE] = ACTIONS(1751), - [anon_sym_PLUS_PLUS] = ACTIONS(1751), - [anon_sym_DASH_DASH] = ACTIONS(1751), - [anon_sym_true] = ACTIONS(1409), - [anon_sym_false] = ACTIONS(1409), - [anon_sym_PLUS] = ACTIONS(1749), - [anon_sym_DASH] = ACTIONS(1749), - [anon_sym_STAR] = ACTIONS(1473), - [anon_sym_SLASH] = ACTIONS(1223), - [anon_sym_PERCENT] = ACTIONS(1221), - [anon_sym_CARET] = ACTIONS(1751), - [anon_sym_PIPE] = ACTIONS(1223), - [anon_sym_AMP] = ACTIONS(1749), - [anon_sym_LT_LT] = ACTIONS(1221), - [anon_sym_GT_GT] = ACTIONS(1223), - [anon_sym_GT_GT_GT] = ACTIONS(1221), - [anon_sym_EQ_EQ] = ACTIONS(1221), - [anon_sym_BANG_EQ] = ACTIONS(1221), - [anon_sym_GT_EQ] = ACTIONS(1221), - [anon_sym_LT_EQ] = ACTIONS(1221), - [anon_sym_this] = ACTIONS(1413), - [anon_sym_DOT] = ACTIONS(1223), - [anon_sym_scoped] = ACTIONS(1415), - [anon_sym_base] = ACTIONS(1417), - [anon_sym_var] = ACTIONS(1419), - [sym_predefined_type] = ACTIONS(1421), - [anon_sym_unchecked] = ACTIONS(1403), - [anon_sym_yield] = ACTIONS(1389), - [anon_sym_switch] = ACTIONS(1223), - [anon_sym_default] = ACTIONS(1423), - [anon_sym_throw] = ACTIONS(1753), - [anon_sym_when] = ACTIONS(1389), - [anon_sym_await] = ACTIONS(1755), - [anon_sym_DOT_DOT] = ACTIONS(1757), - [anon_sym_AMP_AMP] = ACTIONS(1221), - [anon_sym_PIPE_PIPE] = ACTIONS(1221), - [anon_sym_QMARK_QMARK] = ACTIONS(1221), - [anon_sym_from] = ACTIONS(1431), - [anon_sym_into] = ACTIONS(1389), - [anon_sym_join] = ACTIONS(1389), - [anon_sym_on] = ACTIONS(1389), - [anon_sym_equals] = ACTIONS(1389), - [anon_sym_let] = ACTIONS(1389), - [anon_sym_orderby] = ACTIONS(1389), - [anon_sym_ascending] = ACTIONS(1389), - [anon_sym_descending] = ACTIONS(1389), - [anon_sym_group] = ACTIONS(1389), - [anon_sym_by] = ACTIONS(1389), - [anon_sym_select] = ACTIONS(1389), - [anon_sym_as] = ACTIONS(1223), - [anon_sym_is] = ACTIONS(1223), - [anon_sym_DASH_GT] = ACTIONS(1221), - [anon_sym_stackalloc] = ACTIONS(1433), - [anon_sym_with] = ACTIONS(1223), - [anon_sym_sizeof] = ACTIONS(1435), - [anon_sym_typeof] = ACTIONS(1437), - [anon_sym___makeref] = ACTIONS(1439), - [anon_sym___reftype] = ACTIONS(1441), - [anon_sym___refvalue] = ACTIONS(1443), - [sym_null_literal] = ACTIONS(1445), - [anon_sym_SQUOTE] = ACTIONS(1447), - [sym_integer_literal] = ACTIONS(1445), - [sym_real_literal] = ACTIONS(1449), - [anon_sym_DQUOTE] = ACTIONS(1451), - [sym_verbatim_string_literal] = ACTIONS(1449), - [aux_sym_preproc_if_token1] = ACTIONS(1453), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1455), - [sym_interpolation_verbatim_start] = ACTIONS(1457), - [sym_interpolation_raw_start] = ACTIONS(1459), - [sym_interpolation_close_brace] = ACTIONS(1221), - [sym_raw_string_start] = ACTIONS(1461), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3501), + [sym__identifier_token] = ACTIONS(1385), + [anon_sym_alias] = ACTIONS(1387), + [anon_sym_global] = ACTIONS(1387), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1389), + [anon_sym_COLON] = ACTIONS(1219), + [anon_sym_COMMA] = ACTIONS(1219), + [anon_sym_LPAREN] = ACTIONS(1773), + [anon_sym_ref] = ACTIONS(1775), + [anon_sym_LBRACE] = ACTIONS(1395), + [anon_sym_delegate] = ACTIONS(1397), + [anon_sym_async] = ACTIONS(1045), + [anon_sym_file] = ACTIONS(1387), + [anon_sym_new] = ACTIONS(1465), + [anon_sym_LT] = ACTIONS(1221), + [anon_sym_GT] = ACTIONS(1221), + [anon_sym_where] = ACTIONS(1387), + [anon_sym_QMARK] = ACTIONS(1221), + [anon_sym_notnull] = ACTIONS(1387), + [anon_sym_unmanaged] = ACTIONS(1387), + [anon_sym_checked] = ACTIONS(1401), + [anon_sym_BANG] = ACTIONS(1777), + [anon_sym_TILDE] = ACTIONS(1779), + [anon_sym_PLUS_PLUS] = ACTIONS(1779), + [anon_sym_DASH_DASH] = ACTIONS(1779), + [anon_sym_true] = ACTIONS(1407), + [anon_sym_false] = ACTIONS(1407), + [anon_sym_PLUS] = ACTIONS(1777), + [anon_sym_DASH] = ACTIONS(1777), + [anon_sym_STAR] = ACTIONS(1471), + [anon_sym_SLASH] = ACTIONS(1221), + [anon_sym_PERCENT] = ACTIONS(1219), + [anon_sym_CARET] = ACTIONS(1779), + [anon_sym_PIPE] = ACTIONS(1221), + [anon_sym_AMP] = ACTIONS(1777), + [anon_sym_LT_LT] = ACTIONS(1219), + [anon_sym_GT_GT] = ACTIONS(1221), + [anon_sym_GT_GT_GT] = ACTIONS(1219), + [anon_sym_EQ_EQ] = ACTIONS(1219), + [anon_sym_BANG_EQ] = ACTIONS(1219), + [anon_sym_GT_EQ] = ACTIONS(1219), + [anon_sym_LT_EQ] = ACTIONS(1219), + [anon_sym_this] = ACTIONS(1411), + [anon_sym_DOT] = ACTIONS(1221), + [anon_sym_scoped] = ACTIONS(1413), + [anon_sym_base] = ACTIONS(1415), + [anon_sym_var] = ACTIONS(1417), + [sym_predefined_type] = ACTIONS(1419), + [anon_sym_unchecked] = ACTIONS(1401), + [anon_sym_yield] = ACTIONS(1387), + [anon_sym_switch] = ACTIONS(1221), + [anon_sym_default] = ACTIONS(1421), + [anon_sym_throw] = ACTIONS(1781), + [anon_sym_when] = ACTIONS(1387), + [anon_sym_await] = ACTIONS(1783), + [anon_sym_DOT_DOT] = ACTIONS(1785), + [anon_sym_AMP_AMP] = ACTIONS(1219), + [anon_sym_PIPE_PIPE] = ACTIONS(1219), + [anon_sym_QMARK_QMARK] = ACTIONS(1219), + [anon_sym_from] = ACTIONS(1429), + [anon_sym_into] = ACTIONS(1387), + [anon_sym_join] = ACTIONS(1387), + [anon_sym_on] = ACTIONS(1387), + [anon_sym_equals] = ACTIONS(1387), + [anon_sym_let] = ACTIONS(1387), + [anon_sym_orderby] = ACTIONS(1387), + [anon_sym_ascending] = ACTIONS(1387), + [anon_sym_descending] = ACTIONS(1387), + [anon_sym_group] = ACTIONS(1387), + [anon_sym_by] = ACTIONS(1387), + [anon_sym_select] = ACTIONS(1387), + [anon_sym_as] = ACTIONS(1221), + [anon_sym_is] = ACTIONS(1221), + [anon_sym_DASH_GT] = ACTIONS(1219), + [anon_sym_stackalloc] = ACTIONS(1431), + [anon_sym_with] = ACTIONS(1221), + [anon_sym_sizeof] = ACTIONS(1433), + [anon_sym_typeof] = ACTIONS(1435), + [anon_sym___makeref] = ACTIONS(1437), + [anon_sym___reftype] = ACTIONS(1439), + [anon_sym___refvalue] = ACTIONS(1441), + [sym_null_literal] = ACTIONS(1443), + [anon_sym_SQUOTE] = ACTIONS(1445), + [sym_integer_literal] = ACTIONS(1443), + [sym_real_literal] = ACTIONS(1447), + [anon_sym_DQUOTE] = ACTIONS(1449), + [sym_verbatim_string_literal] = ACTIONS(1447), + [aux_sym_preproc_if_token1] = ACTIONS(1451), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + [sym_interpolation_regular_start] = ACTIONS(1453), + [sym_interpolation_verbatim_start] = ACTIONS(1455), + [sym_interpolation_raw_start] = ACTIONS(1457), + [sym_interpolation_close_brace] = ACTIONS(1219), + [sym_raw_string_start] = ACTIONS(1459), }, [196] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2610), - [sym__name] = STATE(5898), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2197), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(4842), - [sym_non_lvalue_expression] = STATE(3277), - [sym_lvalue_expression] = STATE(3510), - [sym__expression_statement_expression] = STATE(3228), - [sym_assignment_expression] = STATE(3289), - [sym_binary_expression] = STATE(3228), - [sym_postfix_unary_expression] = STATE(3289), - [sym_prefix_unary_expression] = STATE(3289), - [sym__pointer_indirection_expression] = STATE(2609), - [sym_query_expression] = STATE(3228), - [sym_from_clause] = STATE(6180), - [sym_conditional_expression] = STATE(3228), - [sym_conditional_access_expression] = STATE(3228), - [sym_as_expression] = STATE(3228), - [sym_is_expression] = STATE(3228), - [sym_is_pattern_expression] = STATE(3228), - [sym_cast_expression] = STATE(3228), - [sym_checked_expression] = STATE(3228), - [sym_invocation_expression] = STATE(3289), - [sym_switch_expression] = STATE(3228), - [sym_await_expression] = STATE(3289), - [sym_throw_expression] = STATE(3228), - [sym_element_access_expression] = STATE(2609), - [sym_interpolated_string_expression] = STATE(3228), - [sym_member_access_expression] = STATE(2609), - [sym_object_creation_expression] = STATE(3289), - [sym_parenthesized_expression] = STATE(3289), - [sym__parenthesized_lvalue_expression] = STATE(2609), - [sym_lambda_expression] = STATE(3228), - [sym__lambda_expression_init] = STATE(7527), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3228), - [sym_anonymous_method_expression] = STATE(3228), - [sym_anonymous_object_creation_expression] = STATE(3228), - [sym_implicit_array_creation_expression] = STATE(3228), - [sym_implicit_object_creation_expression] = STATE(3228), - [sym_implicit_stackalloc_expression] = STATE(3228), - [sym_initializer_expression] = STATE(3228), - [sym_default_expression] = STATE(3228), - [sym_with_expression] = STATE(3228), - [sym_sizeof_expression] = STATE(3228), - [sym_typeof_expression] = STATE(3228), - [sym_makeref_expression] = STATE(3228), - [sym_ref_expression] = STATE(3228), - [sym_reftype_expression] = STATE(3228), - [sym_refvalue_expression] = STATE(3228), - [sym_stackalloc_expression] = STATE(3228), - [sym_range_expression] = STATE(3228), - [sym_tuple_expression] = STATE(2609), - [sym_literal] = STATE(3228), - [sym_character_literal] = STATE(3278), - [sym_string_literal] = STATE(3278), - [sym_raw_string_literal] = STATE(3278), - [sym_boolean_literal] = STATE(3278), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3228), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2901), + [sym__name] = STATE(5883), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2359), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(3650), + [sym_non_lvalue_expression] = STATE(3685), + [sym_lvalue_expression] = STATE(2944), + [sym__expression_statement_expression] = STATE(3836), + [sym_assignment_expression] = STATE(3689), + [sym_binary_expression] = STATE(3836), + [sym_postfix_unary_expression] = STATE(3689), + [sym_prefix_unary_expression] = STATE(3689), + [sym__pointer_indirection_expression] = STATE(2906), + [sym_query_expression] = STATE(3836), + [sym_from_clause] = STATE(6139), + [sym_conditional_expression] = STATE(3836), + [sym_conditional_access_expression] = STATE(3836), + [sym_as_expression] = STATE(3836), + [sym_is_expression] = STATE(3836), + [sym_is_pattern_expression] = STATE(3836), + [sym_cast_expression] = STATE(3836), + [sym_checked_expression] = STATE(3836), + [sym_invocation_expression] = STATE(3689), + [sym_switch_expression] = STATE(3836), + [sym_await_expression] = STATE(3689), + [sym_throw_expression] = STATE(3836), + [sym_element_access_expression] = STATE(2906), + [sym_interpolated_string_expression] = STATE(3836), + [sym_member_access_expression] = STATE(2906), + [sym_object_creation_expression] = STATE(3689), + [sym_parenthesized_expression] = STATE(3689), + [sym__parenthesized_lvalue_expression] = STATE(2906), + [sym_lambda_expression] = STATE(3836), + [sym__lambda_expression_init] = STATE(7516), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3836), + [sym_anonymous_method_expression] = STATE(3836), + [sym_anonymous_object_creation_expression] = STATE(3836), + [sym_implicit_array_creation_expression] = STATE(3836), + [sym_implicit_object_creation_expression] = STATE(3836), + [sym_implicit_stackalloc_expression] = STATE(3836), + [sym_initializer_expression] = STATE(3836), + [sym_default_expression] = STATE(3836), + [sym_with_expression] = STATE(3836), + [sym_sizeof_expression] = STATE(3836), + [sym_typeof_expression] = STATE(3836), + [sym_makeref_expression] = STATE(3836), + [sym_ref_expression] = STATE(3836), + [sym_reftype_expression] = STATE(3836), + [sym_refvalue_expression] = STATE(3836), + [sym_stackalloc_expression] = STATE(3836), + [sym_range_expression] = STATE(3836), + [sym_tuple_expression] = STATE(2906), + [sym_literal] = STATE(3836), + [sym_character_literal] = STATE(3843), + [sym_string_literal] = STATE(3843), + [sym_raw_string_literal] = STATE(3843), + [sym_boolean_literal] = STATE(3843), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3836), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(196), [sym_preproc_endregion] = STATE(196), [sym_preproc_line] = STATE(196), @@ -68317,68 +68203,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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3396), - [sym__identifier_token] = ACTIONS(25), - [anon_sym_alias] = ACTIONS(29), - [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1153), - [anon_sym_LPAREN] = ACTIONS(1759), - [anon_sym_ref] = ACTIONS(1761), - [anon_sym_LBRACE] = ACTIONS(1159), - [anon_sym_delegate] = ACTIONS(1161), - [anon_sym_async] = ACTIONS(1047), - [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1163), - [anon_sym_LT] = ACTIONS(1165), - [anon_sym_GT] = ACTIONS(1165), - [anon_sym_in] = ACTIONS(1165), - [anon_sym_where] = ACTIONS(29), - [anon_sym_QMARK] = ACTIONS(1165), - [anon_sym_notnull] = ACTIONS(29), - [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1167), - [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(1173), - [anon_sym_false] = ACTIONS(1173), - [anon_sym_PLUS] = ACTIONS(1763), - [anon_sym_DASH] = ACTIONS(1763), - [anon_sym_STAR] = ACTIONS(1175), - [anon_sym_SLASH] = ACTIONS(1165), - [anon_sym_PERCENT] = ACTIONS(1151), - [anon_sym_CARET] = ACTIONS(1765), - [anon_sym_PIPE] = ACTIONS(1165), - [anon_sym_AMP] = ACTIONS(1763), - [anon_sym_LT_LT] = ACTIONS(1151), - [anon_sym_GT_GT] = ACTIONS(1165), - [anon_sym_GT_GT_GT] = ACTIONS(1151), - [anon_sym_EQ_EQ] = ACTIONS(1151), - [anon_sym_BANG_EQ] = ACTIONS(1151), - [anon_sym_GT_EQ] = ACTIONS(1151), - [anon_sym_LT_EQ] = ACTIONS(1151), - [anon_sym_this] = ACTIONS(1177), - [anon_sym_DOT] = ACTIONS(1165), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1179), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1181), - [anon_sym_unchecked] = ACTIONS(1167), - [anon_sym_yield] = ACTIONS(29), - [anon_sym_switch] = ACTIONS(1165), - [anon_sym_default] = ACTIONS(1183), - [anon_sym_throw] = ACTIONS(1767), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3477), + [sym__identifier_token] = ACTIONS(25), + [anon_sym_alias] = ACTIONS(29), + [anon_sym_global] = ACTIONS(29), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1655), + [anon_sym_COMMA] = ACTIONS(1219), + [anon_sym_LPAREN] = ACTIONS(1657), + [anon_sym_ref] = ACTIONS(1659), + [anon_sym_LBRACE] = ACTIONS(1661), + [anon_sym_delegate] = ACTIONS(1663), + [anon_sym_async] = ACTIONS(1045), + [anon_sym_file] = ACTIONS(29), + [anon_sym_new] = ACTIONS(1665), + [anon_sym_LT] = ACTIONS(1221), + [anon_sym_GT] = ACTIONS(1221), + [anon_sym_where] = ACTIONS(29), + [anon_sym_QMARK] = ACTIONS(1221), + [anon_sym_notnull] = ACTIONS(29), + [anon_sym_unmanaged] = ACTIONS(29), + [anon_sym_checked] = ACTIONS(1667), + [anon_sym_BANG] = ACTIONS(1669), + [anon_sym_TILDE] = ACTIONS(1671), + [anon_sym_PLUS_PLUS] = ACTIONS(1671), + [anon_sym_DASH_DASH] = ACTIONS(1671), + [anon_sym_true] = ACTIONS(1673), + [anon_sym_false] = ACTIONS(1673), + [anon_sym_PLUS] = ACTIONS(1669), + [anon_sym_DASH] = ACTIONS(1669), + [anon_sym_STAR] = ACTIONS(1675), + [anon_sym_SLASH] = ACTIONS(1221), + [anon_sym_PERCENT] = ACTIONS(1219), + [anon_sym_CARET] = ACTIONS(1671), + [anon_sym_PIPE] = ACTIONS(1221), + [anon_sym_AMP] = ACTIONS(1669), + [anon_sym_LT_LT] = ACTIONS(1219), + [anon_sym_GT_GT] = ACTIONS(1221), + [anon_sym_GT_GT_GT] = ACTIONS(1219), + [anon_sym_EQ_EQ] = ACTIONS(1219), + [anon_sym_BANG_EQ] = ACTIONS(1219), + [anon_sym_GT_EQ] = ACTIONS(1219), + [anon_sym_LT_EQ] = ACTIONS(1219), + [anon_sym_this] = ACTIONS(1677), + [anon_sym_DOT] = ACTIONS(1221), + [anon_sym_scoped] = ACTIONS(85), + [anon_sym_base] = ACTIONS(1679), + [anon_sym_var] = ACTIONS(89), + [sym_predefined_type] = ACTIONS(1681), + [anon_sym_unchecked] = ACTIONS(1667), + [anon_sym_yield] = ACTIONS(29), + [anon_sym_switch] = ACTIONS(1221), + [anon_sym_default] = ACTIONS(1683), + [anon_sym_throw] = ACTIONS(1685), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1769), - [anon_sym_DOT_DOT] = ACTIONS(1771), - [anon_sym_and] = ACTIONS(1165), - [anon_sym_or] = ACTIONS(1165), - [anon_sym_AMP_AMP] = ACTIONS(1151), - [anon_sym_PIPE_PIPE] = ACTIONS(1151), - [anon_sym_QMARK_QMARK] = ACTIONS(1151), + [anon_sym_await] = ACTIONS(1687), + [anon_sym_DOT_DOT] = ACTIONS(1689), + [anon_sym_and] = ACTIONS(1221), + [anon_sym_or] = ACTIONS(1221), + [anon_sym_AMP_AMP] = ACTIONS(1219), + [anon_sym_PIPE_PIPE] = ACTIONS(1219), + [anon_sym_QMARK_QMARK] = ACTIONS(1219), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -68391,23 +68277,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(1165), - [anon_sym_is] = ACTIONS(1165), - [anon_sym_DASH_GT] = ACTIONS(1151), - [anon_sym_stackalloc] = ACTIONS(1191), - [anon_sym_with] = ACTIONS(1165), - [anon_sym_sizeof] = ACTIONS(1193), - [anon_sym_typeof] = ACTIONS(1195), - [anon_sym___makeref] = ACTIONS(1197), - [anon_sym___reftype] = ACTIONS(1199), - [anon_sym___refvalue] = ACTIONS(1201), - [sym_null_literal] = ACTIONS(1203), - [anon_sym_SQUOTE] = ACTIONS(1205), - [sym_integer_literal] = ACTIONS(1203), - [sym_real_literal] = ACTIONS(1207), - [anon_sym_DQUOTE] = ACTIONS(1209), - [sym_verbatim_string_literal] = ACTIONS(1207), - [aux_sym_preproc_if_token1] = ACTIONS(1773), + [anon_sym_as] = ACTIONS(1221), + [anon_sym_is] = ACTIONS(1221), + [anon_sym_DASH_GT] = ACTIONS(1219), + [anon_sym_stackalloc] = ACTIONS(1691), + [anon_sym_with] = ACTIONS(1221), + [anon_sym_sizeof] = ACTIONS(1693), + [anon_sym_typeof] = ACTIONS(1695), + [anon_sym___makeref] = ACTIONS(1697), + [anon_sym___reftype] = ACTIONS(1699), + [anon_sym___refvalue] = ACTIONS(1701), + [sym_null_literal] = ACTIONS(1703), + [anon_sym_SQUOTE] = ACTIONS(1705), + [sym_integer_literal] = ACTIONS(1703), + [sym_real_literal] = ACTIONS(1707), + [anon_sym_DQUOTE] = ACTIONS(1709), + [sym_verbatim_string_literal] = ACTIONS(1707), + [aux_sym_preproc_if_token1] = ACTIONS(1711), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -68418,90 +68304,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1213), - [sym_interpolation_verbatim_start] = ACTIONS(1215), - [sym_interpolation_raw_start] = ACTIONS(1217), - [sym_raw_string_start] = ACTIONS(1219), + [sym_interpolation_regular_start] = ACTIONS(1713), + [sym_interpolation_verbatim_start] = ACTIONS(1715), + [sym_interpolation_raw_start] = ACTIONS(1717), + [sym_raw_string_start] = ACTIONS(1719), }, [197] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2610), - [sym__name] = STATE(5898), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2197), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(4801), - [sym_non_lvalue_expression] = STATE(3277), - [sym_lvalue_expression] = STATE(3510), - [sym__expression_statement_expression] = STATE(3228), - [sym_assignment_expression] = STATE(3289), - [sym_binary_expression] = STATE(3228), - [sym_postfix_unary_expression] = STATE(3289), - [sym_prefix_unary_expression] = STATE(3289), - [sym__pointer_indirection_expression] = STATE(2609), - [sym_query_expression] = STATE(3228), - [sym_from_clause] = STATE(6180), - [sym_conditional_expression] = STATE(3228), - [sym_conditional_access_expression] = STATE(3228), - [sym_as_expression] = STATE(3228), - [sym_is_expression] = STATE(3228), - [sym_is_pattern_expression] = STATE(3228), - [sym_cast_expression] = STATE(3228), - [sym_checked_expression] = STATE(3228), - [sym_invocation_expression] = STATE(3289), - [sym_switch_expression] = STATE(3228), - [sym_await_expression] = STATE(3289), - [sym_throw_expression] = STATE(3228), - [sym_element_access_expression] = STATE(2609), - [sym_interpolated_string_expression] = STATE(3228), - [sym_member_access_expression] = STATE(2609), - [sym_object_creation_expression] = STATE(3289), - [sym_parenthesized_expression] = STATE(3289), - [sym__parenthesized_lvalue_expression] = STATE(2609), - [sym_lambda_expression] = STATE(3228), - [sym__lambda_expression_init] = STATE(7527), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3228), - [sym_anonymous_method_expression] = STATE(3228), - [sym_anonymous_object_creation_expression] = STATE(3228), - [sym_implicit_array_creation_expression] = STATE(3228), - [sym_implicit_object_creation_expression] = STATE(3228), - [sym_implicit_stackalloc_expression] = STATE(3228), - [sym_initializer_expression] = STATE(3228), - [sym_default_expression] = STATE(3228), - [sym_with_expression] = STATE(3228), - [sym_sizeof_expression] = STATE(3228), - [sym_typeof_expression] = STATE(3228), - [sym_makeref_expression] = STATE(3228), - [sym_ref_expression] = STATE(3228), - [sym_reftype_expression] = STATE(3228), - [sym_refvalue_expression] = STATE(3228), - [sym_stackalloc_expression] = STATE(3228), - [sym_range_expression] = STATE(3228), - [sym_tuple_expression] = STATE(2609), - [sym_literal] = STATE(3228), - [sym_character_literal] = STATE(3278), - [sym_string_literal] = STATE(3278), - [sym_raw_string_literal] = STATE(3278), - [sym_boolean_literal] = STATE(3278), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3228), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2603), + [sym__name] = STATE(5877), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2344), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(4352), + [sym_non_lvalue_expression] = STATE(3220), + [sym_lvalue_expression] = STATE(3281), + [sym__expression_statement_expression] = STATE(3236), + [sym_assignment_expression] = STATE(3221), + [sym_binary_expression] = STATE(3236), + [sym_postfix_unary_expression] = STATE(3221), + [sym_prefix_unary_expression] = STATE(3221), + [sym__pointer_indirection_expression] = STATE(2602), + [sym_query_expression] = STATE(3236), + [sym_from_clause] = STATE(6146), + [sym_conditional_expression] = STATE(3236), + [sym_conditional_access_expression] = STATE(3236), + [sym_as_expression] = STATE(3236), + [sym_is_expression] = STATE(3236), + [sym_is_pattern_expression] = STATE(3236), + [sym_cast_expression] = STATE(3236), + [sym_checked_expression] = STATE(3236), + [sym_invocation_expression] = STATE(3221), + [sym_switch_expression] = STATE(3236), + [sym_await_expression] = STATE(3221), + [sym_throw_expression] = STATE(3236), + [sym_element_access_expression] = STATE(2602), + [sym_interpolated_string_expression] = STATE(3236), + [sym_member_access_expression] = STATE(2602), + [sym_object_creation_expression] = STATE(3221), + [sym_parenthesized_expression] = STATE(3221), + [sym__parenthesized_lvalue_expression] = STATE(2602), + [sym_lambda_expression] = STATE(3236), + [sym__lambda_expression_init] = STATE(7323), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3236), + [sym_anonymous_method_expression] = STATE(3236), + [sym_anonymous_object_creation_expression] = STATE(3236), + [sym_implicit_array_creation_expression] = STATE(3236), + [sym_implicit_object_creation_expression] = STATE(3236), + [sym_implicit_stackalloc_expression] = STATE(3236), + [sym_initializer_expression] = STATE(3236), + [sym_default_expression] = STATE(3236), + [sym_with_expression] = STATE(3236), + [sym_sizeof_expression] = STATE(3236), + [sym_typeof_expression] = STATE(3236), + [sym_makeref_expression] = STATE(3236), + [sym_ref_expression] = STATE(3236), + [sym_reftype_expression] = STATE(3236), + [sym_refvalue_expression] = STATE(3236), + [sym_stackalloc_expression] = STATE(3236), + [sym_range_expression] = STATE(3236), + [sym_tuple_expression] = STATE(2602), + [sym_literal] = STATE(3236), + [sym_character_literal] = STATE(3272), + [sym_string_literal] = STATE(3272), + [sym_raw_string_literal] = STATE(3272), + [sym_boolean_literal] = STATE(3272), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3236), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(197), [sym_preproc_endregion] = STATE(197), [sym_preproc_line] = STATE(197), @@ -68511,68 +68397,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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3396), - [sym__identifier_token] = ACTIONS(25), - [anon_sym_alias] = ACTIONS(29), - [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1153), - [anon_sym_LPAREN] = ACTIONS(1759), - [anon_sym_ref] = ACTIONS(1761), - [anon_sym_LBRACE] = ACTIONS(1159), - [anon_sym_delegate] = ACTIONS(1161), - [anon_sym_async] = ACTIONS(1047), - [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1163), - [anon_sym_LT] = ACTIONS(1223), - [anon_sym_GT] = ACTIONS(1223), - [anon_sym_in] = ACTIONS(1223), - [anon_sym_where] = ACTIONS(29), - [anon_sym_QMARK] = ACTIONS(1223), - [anon_sym_notnull] = ACTIONS(29), - [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1167), - [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(1173), - [anon_sym_false] = ACTIONS(1173), - [anon_sym_PLUS] = ACTIONS(1763), - [anon_sym_DASH] = ACTIONS(1763), - [anon_sym_STAR] = ACTIONS(1175), - [anon_sym_SLASH] = ACTIONS(1223), - [anon_sym_PERCENT] = ACTIONS(1221), - [anon_sym_CARET] = ACTIONS(1765), - [anon_sym_PIPE] = ACTIONS(1223), - [anon_sym_AMP] = ACTIONS(1763), - [anon_sym_LT_LT] = ACTIONS(1221), - [anon_sym_GT_GT] = ACTIONS(1223), - [anon_sym_GT_GT_GT] = ACTIONS(1221), - [anon_sym_EQ_EQ] = ACTIONS(1221), - [anon_sym_BANG_EQ] = ACTIONS(1221), - [anon_sym_GT_EQ] = ACTIONS(1221), - [anon_sym_LT_EQ] = ACTIONS(1221), - [anon_sym_this] = ACTIONS(1177), - [anon_sym_DOT] = ACTIONS(1223), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1179), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1181), - [anon_sym_unchecked] = ACTIONS(1167), - [anon_sym_yield] = ACTIONS(29), - [anon_sym_switch] = ACTIONS(1223), - [anon_sym_default] = ACTIONS(1183), - [anon_sym_throw] = ACTIONS(1767), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3379), + [sym__identifier_token] = ACTIONS(25), + [anon_sym_alias] = ACTIONS(29), + [anon_sym_global] = ACTIONS(29), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1149), + [anon_sym_COLON] = ACTIONS(1219), + [anon_sym_LPAREN] = ACTIONS(1531), + [anon_sym_ref] = ACTIONS(1533), + [anon_sym_LBRACE] = ACTIONS(1155), + [anon_sym_delegate] = ACTIONS(1157), + [anon_sym_async] = ACTIONS(1045), + [anon_sym_file] = ACTIONS(29), + [anon_sym_new] = ACTIONS(1535), + [anon_sym_LT] = ACTIONS(1221), + [anon_sym_GT] = ACTIONS(1221), + [anon_sym_where] = ACTIONS(29), + [anon_sym_QMARK] = ACTIONS(1221), + [anon_sym_notnull] = ACTIONS(29), + [anon_sym_unmanaged] = ACTIONS(29), + [anon_sym_checked] = ACTIONS(1163), + [anon_sym_BANG] = ACTIONS(1537), + [anon_sym_TILDE] = ACTIONS(1539), + [anon_sym_PLUS_PLUS] = ACTIONS(1539), + [anon_sym_DASH_DASH] = ACTIONS(1539), + [anon_sym_true] = ACTIONS(1169), + [anon_sym_false] = ACTIONS(1169), + [anon_sym_PLUS] = ACTIONS(1537), + [anon_sym_DASH] = ACTIONS(1537), + [anon_sym_STAR] = ACTIONS(1541), + [anon_sym_SLASH] = ACTIONS(1221), + [anon_sym_PERCENT] = ACTIONS(1219), + [anon_sym_CARET] = ACTIONS(1539), + [anon_sym_PIPE] = ACTIONS(1221), + [anon_sym_AMP] = ACTIONS(1537), + [anon_sym_LT_LT] = ACTIONS(1219), + [anon_sym_GT_GT] = ACTIONS(1221), + [anon_sym_GT_GT_GT] = ACTIONS(1219), + [anon_sym_EQ_EQ] = ACTIONS(1219), + [anon_sym_BANG_EQ] = ACTIONS(1219), + [anon_sym_GT_EQ] = ACTIONS(1219), + [anon_sym_LT_EQ] = ACTIONS(1219), + [anon_sym_this] = ACTIONS(1173), + [anon_sym_DOT] = ACTIONS(1221), + [anon_sym_scoped] = ACTIONS(85), + [anon_sym_base] = ACTIONS(1175), + [anon_sym_var] = ACTIONS(89), + [sym_predefined_type] = ACTIONS(1177), + [anon_sym_unchecked] = ACTIONS(1163), + [anon_sym_yield] = ACTIONS(29), + [anon_sym_switch] = ACTIONS(1221), + [anon_sym_default] = ACTIONS(1179), + [anon_sym_throw] = ACTIONS(1543), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1769), - [anon_sym_DOT_DOT] = ACTIONS(1771), - [anon_sym_and] = ACTIONS(1223), - [anon_sym_or] = ACTIONS(1223), - [anon_sym_AMP_AMP] = ACTIONS(1221), - [anon_sym_PIPE_PIPE] = ACTIONS(1221), - [anon_sym_QMARK_QMARK] = ACTIONS(1221), + [anon_sym_await] = ACTIONS(1545), + [anon_sym_DOT_DOT] = ACTIONS(1547), + [anon_sym_and] = ACTIONS(1221), + [anon_sym_or] = ACTIONS(1221), + [anon_sym_AMP_AMP] = ACTIONS(1219), + [anon_sym_PIPE_PIPE] = ACTIONS(1219), + [anon_sym_QMARK_QMARK] = ACTIONS(1219), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -68585,23 +68471,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(1223), - [anon_sym_is] = ACTIONS(1223), - [anon_sym_DASH_GT] = ACTIONS(1221), - [anon_sym_stackalloc] = ACTIONS(1191), - [anon_sym_with] = ACTIONS(1223), - [anon_sym_sizeof] = ACTIONS(1193), - [anon_sym_typeof] = ACTIONS(1195), - [anon_sym___makeref] = ACTIONS(1197), - [anon_sym___reftype] = ACTIONS(1199), - [anon_sym___refvalue] = ACTIONS(1201), - [sym_null_literal] = ACTIONS(1203), - [anon_sym_SQUOTE] = ACTIONS(1205), - [sym_integer_literal] = ACTIONS(1203), - [sym_real_literal] = ACTIONS(1207), - [anon_sym_DQUOTE] = ACTIONS(1209), - [sym_verbatim_string_literal] = ACTIONS(1207), - [aux_sym_preproc_if_token1] = ACTIONS(1773), + [anon_sym_as] = ACTIONS(1221), + [anon_sym_is] = ACTIONS(1221), + [anon_sym_DASH_GT] = ACTIONS(1219), + [anon_sym_stackalloc] = ACTIONS(1187), + [anon_sym_with] = ACTIONS(1221), + [anon_sym_sizeof] = ACTIONS(1189), + [anon_sym_typeof] = ACTIONS(1191), + [anon_sym___makeref] = ACTIONS(1193), + [anon_sym___reftype] = ACTIONS(1195), + [anon_sym___refvalue] = ACTIONS(1197), + [sym_null_literal] = ACTIONS(1199), + [anon_sym_SQUOTE] = ACTIONS(1201), + [sym_integer_literal] = ACTIONS(1199), + [sym_real_literal] = ACTIONS(1203), + [anon_sym_DQUOTE] = ACTIONS(1205), + [sym_verbatim_string_literal] = ACTIONS(1203), + [aux_sym_preproc_if_token1] = ACTIONS(1207), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -68612,90 +68498,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1213), - [sym_interpolation_verbatim_start] = ACTIONS(1215), - [sym_interpolation_raw_start] = ACTIONS(1217), - [sym_raw_string_start] = ACTIONS(1219), + [sym_interpolation_regular_start] = ACTIONS(1209), + [sym_interpolation_verbatim_start] = ACTIONS(1211), + [sym_interpolation_raw_start] = ACTIONS(1213), + [sym_raw_string_start] = ACTIONS(1215), }, [198] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2914), - [sym__name] = STATE(5885), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2357), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(3618), - [sym_non_lvalue_expression] = STATE(3880), - [sym_lvalue_expression] = STATE(2911), - [sym__expression_statement_expression] = STATE(3873), - [sym_assignment_expression] = STATE(3881), - [sym_binary_expression] = STATE(3873), - [sym_postfix_unary_expression] = STATE(3881), - [sym_prefix_unary_expression] = STATE(3881), - [sym__pointer_indirection_expression] = STATE(2913), - [sym_query_expression] = STATE(3873), - [sym_from_clause] = STATE(6182), - [sym_conditional_expression] = STATE(3873), - [sym_conditional_access_expression] = STATE(3873), - [sym_as_expression] = STATE(3873), - [sym_is_expression] = STATE(3873), - [sym_is_pattern_expression] = STATE(3873), - [sym_cast_expression] = STATE(3873), - [sym_checked_expression] = STATE(3873), - [sym_invocation_expression] = STATE(3881), - [sym_switch_expression] = STATE(3873), - [sym_await_expression] = STATE(3881), - [sym_throw_expression] = STATE(3873), - [sym_element_access_expression] = STATE(2913), - [sym_interpolated_string_expression] = STATE(3873), - [sym_member_access_expression] = STATE(2913), - [sym_object_creation_expression] = STATE(3881), - [sym_parenthesized_expression] = STATE(3881), - [sym__parenthesized_lvalue_expression] = STATE(2913), - [sym_lambda_expression] = STATE(3873), - [sym__lambda_expression_init] = STATE(7316), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3873), - [sym_anonymous_method_expression] = STATE(3873), - [sym_anonymous_object_creation_expression] = STATE(3873), - [sym_implicit_array_creation_expression] = STATE(3873), - [sym_implicit_object_creation_expression] = STATE(3873), - [sym_implicit_stackalloc_expression] = STATE(3873), - [sym_initializer_expression] = STATE(3873), - [sym_default_expression] = STATE(3873), - [sym_with_expression] = STATE(3873), - [sym_sizeof_expression] = STATE(3873), - [sym_typeof_expression] = STATE(3873), - [sym_makeref_expression] = STATE(3873), - [sym_ref_expression] = STATE(3873), - [sym_reftype_expression] = STATE(3873), - [sym_refvalue_expression] = STATE(3873), - [sym_stackalloc_expression] = STATE(3873), - [sym_range_expression] = STATE(3873), - [sym_tuple_expression] = STATE(2913), - [sym_literal] = STATE(3873), - [sym_character_literal] = STATE(3877), - [sym_string_literal] = STATE(3877), - [sym_raw_string_literal] = STATE(3877), - [sym_boolean_literal] = STATE(3877), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3873), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2603), + [sym__name] = STATE(5862), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2193), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(4826), + [sym_non_lvalue_expression] = STATE(3220), + [sym_lvalue_expression] = STATE(3502), + [sym__expression_statement_expression] = STATE(3236), + [sym_assignment_expression] = STATE(3221), + [sym_binary_expression] = STATE(3236), + [sym_postfix_unary_expression] = STATE(3221), + [sym_prefix_unary_expression] = STATE(3221), + [sym__pointer_indirection_expression] = STATE(2602), + [sym_query_expression] = STATE(3236), + [sym_from_clause] = STATE(6136), + [sym_conditional_expression] = STATE(3236), + [sym_conditional_access_expression] = STATE(3236), + [sym_as_expression] = STATE(3236), + [sym_is_expression] = STATE(3236), + [sym_is_pattern_expression] = STATE(3236), + [sym_cast_expression] = STATE(3236), + [sym_checked_expression] = STATE(3236), + [sym_invocation_expression] = STATE(3221), + [sym_switch_expression] = STATE(3236), + [sym_await_expression] = STATE(3221), + [sym_throw_expression] = STATE(3236), + [sym_element_access_expression] = STATE(2602), + [sym_interpolated_string_expression] = STATE(3236), + [sym_member_access_expression] = STATE(2602), + [sym_object_creation_expression] = STATE(3221), + [sym_parenthesized_expression] = STATE(3221), + [sym__parenthesized_lvalue_expression] = STATE(2602), + [sym_lambda_expression] = STATE(3236), + [sym__lambda_expression_init] = STATE(7475), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3236), + [sym_anonymous_method_expression] = STATE(3236), + [sym_anonymous_object_creation_expression] = STATE(3236), + [sym_implicit_array_creation_expression] = STATE(3236), + [sym_implicit_object_creation_expression] = STATE(3236), + [sym_implicit_stackalloc_expression] = STATE(3236), + [sym_initializer_expression] = STATE(3236), + [sym_default_expression] = STATE(3236), + [sym_with_expression] = STATE(3236), + [sym_sizeof_expression] = STATE(3236), + [sym_typeof_expression] = STATE(3236), + [sym_makeref_expression] = STATE(3236), + [sym_ref_expression] = STATE(3236), + [sym_reftype_expression] = STATE(3236), + [sym_refvalue_expression] = STATE(3236), + [sym_stackalloc_expression] = STATE(3236), + [sym_range_expression] = STATE(3236), + [sym_tuple_expression] = STATE(2602), + [sym_literal] = STATE(3236), + [sym_character_literal] = STATE(3272), + [sym_string_literal] = STATE(3272), + [sym_raw_string_literal] = STATE(3272), + [sym_boolean_literal] = STATE(3272), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3236), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(198), [sym_preproc_endregion] = STATE(198), [sym_preproc_line] = STATE(198), @@ -68705,68 +68591,262 @@ 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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3382), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3379), + [sym__identifier_token] = ACTIONS(25), + [anon_sym_alias] = ACTIONS(29), + [anon_sym_global] = ACTIONS(29), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1149), + [anon_sym_LPAREN] = ACTIONS(1787), + [anon_sym_ref] = ACTIONS(1789), + [anon_sym_LBRACE] = ACTIONS(1155), + [anon_sym_delegate] = ACTIONS(1157), + [anon_sym_async] = ACTIONS(1045), + [anon_sym_file] = ACTIONS(29), + [anon_sym_new] = ACTIONS(1159), + [anon_sym_LT] = ACTIONS(1221), + [anon_sym_GT] = ACTIONS(1221), + [anon_sym_in] = ACTIONS(1221), + [anon_sym_where] = ACTIONS(29), + [anon_sym_QMARK] = ACTIONS(1221), + [anon_sym_notnull] = ACTIONS(29), + [anon_sym_unmanaged] = ACTIONS(29), + [anon_sym_checked] = ACTIONS(1163), + [anon_sym_BANG] = ACTIONS(1791), + [anon_sym_TILDE] = ACTIONS(1793), + [anon_sym_PLUS_PLUS] = ACTIONS(1793), + [anon_sym_DASH_DASH] = ACTIONS(1793), + [anon_sym_true] = ACTIONS(1169), + [anon_sym_false] = ACTIONS(1169), + [anon_sym_PLUS] = ACTIONS(1791), + [anon_sym_DASH] = ACTIONS(1791), + [anon_sym_STAR] = ACTIONS(1171), + [anon_sym_SLASH] = ACTIONS(1221), + [anon_sym_PERCENT] = ACTIONS(1219), + [anon_sym_CARET] = ACTIONS(1793), + [anon_sym_PIPE] = ACTIONS(1221), + [anon_sym_AMP] = ACTIONS(1791), + [anon_sym_LT_LT] = ACTIONS(1219), + [anon_sym_GT_GT] = ACTIONS(1221), + [anon_sym_GT_GT_GT] = ACTIONS(1219), + [anon_sym_EQ_EQ] = ACTIONS(1219), + [anon_sym_BANG_EQ] = ACTIONS(1219), + [anon_sym_GT_EQ] = ACTIONS(1219), + [anon_sym_LT_EQ] = ACTIONS(1219), + [anon_sym_this] = ACTIONS(1173), + [anon_sym_DOT] = ACTIONS(1221), + [anon_sym_scoped] = ACTIONS(85), + [anon_sym_base] = ACTIONS(1175), + [anon_sym_var] = ACTIONS(89), + [sym_predefined_type] = ACTIONS(1177), + [anon_sym_unchecked] = ACTIONS(1163), + [anon_sym_yield] = ACTIONS(29), + [anon_sym_switch] = ACTIONS(1221), + [anon_sym_default] = ACTIONS(1179), + [anon_sym_throw] = ACTIONS(1795), + [anon_sym_when] = ACTIONS(29), + [anon_sym_await] = ACTIONS(1797), + [anon_sym_DOT_DOT] = ACTIONS(1799), + [anon_sym_and] = ACTIONS(1221), + [anon_sym_or] = ACTIONS(1221), + [anon_sym_AMP_AMP] = ACTIONS(1219), + [anon_sym_PIPE_PIPE] = ACTIONS(1219), + [anon_sym_QMARK_QMARK] = ACTIONS(1219), + [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(1221), + [anon_sym_is] = ACTIONS(1221), + [anon_sym_DASH_GT] = ACTIONS(1219), + [anon_sym_stackalloc] = ACTIONS(1187), + [anon_sym_with] = ACTIONS(1221), + [anon_sym_sizeof] = ACTIONS(1189), + [anon_sym_typeof] = ACTIONS(1191), + [anon_sym___makeref] = ACTIONS(1193), + [anon_sym___reftype] = ACTIONS(1195), + [anon_sym___refvalue] = ACTIONS(1197), + [sym_null_literal] = ACTIONS(1199), + [anon_sym_SQUOTE] = ACTIONS(1201), + [sym_integer_literal] = ACTIONS(1199), + [sym_real_literal] = ACTIONS(1203), + [anon_sym_DQUOTE] = ACTIONS(1205), + [sym_verbatim_string_literal] = ACTIONS(1203), + [aux_sym_preproc_if_token1] = ACTIONS(1801), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + [sym_interpolation_regular_start] = ACTIONS(1209), + [sym_interpolation_verbatim_start] = ACTIONS(1211), + [sym_interpolation_raw_start] = ACTIONS(1213), + [sym_raw_string_start] = ACTIONS(1215), + }, + [199] = { + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2603), + [sym__name] = STATE(5862), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2193), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(4782), + [sym_non_lvalue_expression] = STATE(3220), + [sym_lvalue_expression] = STATE(3502), + [sym__expression_statement_expression] = STATE(3236), + [sym_assignment_expression] = STATE(3221), + [sym_binary_expression] = STATE(3236), + [sym_postfix_unary_expression] = STATE(3221), + [sym_prefix_unary_expression] = STATE(3221), + [sym__pointer_indirection_expression] = STATE(2602), + [sym_query_expression] = STATE(3236), + [sym_from_clause] = STATE(6136), + [sym_conditional_expression] = STATE(3236), + [sym_conditional_access_expression] = STATE(3236), + [sym_as_expression] = STATE(3236), + [sym_is_expression] = STATE(3236), + [sym_is_pattern_expression] = STATE(3236), + [sym_cast_expression] = STATE(3236), + [sym_checked_expression] = STATE(3236), + [sym_invocation_expression] = STATE(3221), + [sym_switch_expression] = STATE(3236), + [sym_await_expression] = STATE(3221), + [sym_throw_expression] = STATE(3236), + [sym_element_access_expression] = STATE(2602), + [sym_interpolated_string_expression] = STATE(3236), + [sym_member_access_expression] = STATE(2602), + [sym_object_creation_expression] = STATE(3221), + [sym_parenthesized_expression] = STATE(3221), + [sym__parenthesized_lvalue_expression] = STATE(2602), + [sym_lambda_expression] = STATE(3236), + [sym__lambda_expression_init] = STATE(7475), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3236), + [sym_anonymous_method_expression] = STATE(3236), + [sym_anonymous_object_creation_expression] = STATE(3236), + [sym_implicit_array_creation_expression] = STATE(3236), + [sym_implicit_object_creation_expression] = STATE(3236), + [sym_implicit_stackalloc_expression] = STATE(3236), + [sym_initializer_expression] = STATE(3236), + [sym_default_expression] = STATE(3236), + [sym_with_expression] = STATE(3236), + [sym_sizeof_expression] = STATE(3236), + [sym_typeof_expression] = STATE(3236), + [sym_makeref_expression] = STATE(3236), + [sym_ref_expression] = STATE(3236), + [sym_reftype_expression] = STATE(3236), + [sym_refvalue_expression] = STATE(3236), + [sym_stackalloc_expression] = STATE(3236), + [sym_range_expression] = STATE(3236), + [sym_tuple_expression] = STATE(2602), + [sym_literal] = STATE(3236), + [sym_character_literal] = STATE(3272), + [sym_string_literal] = STATE(3272), + [sym_raw_string_literal] = STATE(3272), + [sym_boolean_literal] = STATE(3272), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3236), + [sym_preproc_if_in_attribute_list] = STATE(5583), + [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(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3379), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1627), - [anon_sym_COMMA] = ACTIONS(1151), - [anon_sym_LPAREN] = ACTIONS(1727), - [anon_sym_ref] = ACTIONS(1729), - [anon_sym_LBRACE] = ACTIONS(1633), - [anon_sym_delegate] = ACTIONS(1635), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1149), + [anon_sym_LPAREN] = ACTIONS(1787), + [anon_sym_ref] = ACTIONS(1789), + [anon_sym_LBRACE] = ACTIONS(1155), + [anon_sym_delegate] = ACTIONS(1157), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1731), - [anon_sym_LT] = ACTIONS(1165), - [anon_sym_GT] = ACTIONS(1165), + [anon_sym_new] = ACTIONS(1159), + [anon_sym_LT] = ACTIONS(1161), + [anon_sym_GT] = ACTIONS(1161), + [anon_sym_in] = ACTIONS(1161), [anon_sym_where] = ACTIONS(29), - [anon_sym_QMARK] = ACTIONS(1165), + [anon_sym_QMARK] = ACTIONS(1161), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1639), - [anon_sym_BANG] = ACTIONS(1733), - [anon_sym_TILDE] = ACTIONS(1735), - [anon_sym_PLUS_PLUS] = ACTIONS(1735), - [anon_sym_DASH_DASH] = ACTIONS(1735), - [anon_sym_true] = ACTIONS(1645), - [anon_sym_false] = ACTIONS(1645), - [anon_sym_PLUS] = ACTIONS(1733), - [anon_sym_DASH] = ACTIONS(1733), - [anon_sym_STAR] = ACTIONS(1737), - [anon_sym_SLASH] = ACTIONS(1165), - [anon_sym_PERCENT] = ACTIONS(1151), - [anon_sym_CARET] = ACTIONS(1735), - [anon_sym_PIPE] = ACTIONS(1165), - [anon_sym_AMP] = ACTIONS(1733), - [anon_sym_LT_LT] = ACTIONS(1151), - [anon_sym_GT_GT] = ACTIONS(1165), - [anon_sym_GT_GT_GT] = ACTIONS(1151), - [anon_sym_EQ_EQ] = ACTIONS(1151), - [anon_sym_BANG_EQ] = ACTIONS(1151), - [anon_sym_GT_EQ] = ACTIONS(1151), - [anon_sym_LT_EQ] = ACTIONS(1151), - [anon_sym_this] = ACTIONS(1649), - [anon_sym_DOT] = ACTIONS(1165), + [anon_sym_checked] = ACTIONS(1163), + [anon_sym_BANG] = ACTIONS(1791), + [anon_sym_TILDE] = ACTIONS(1793), + [anon_sym_PLUS_PLUS] = ACTIONS(1793), + [anon_sym_DASH_DASH] = ACTIONS(1793), + [anon_sym_true] = ACTIONS(1169), + [anon_sym_false] = ACTIONS(1169), + [anon_sym_PLUS] = ACTIONS(1791), + [anon_sym_DASH] = ACTIONS(1791), + [anon_sym_STAR] = ACTIONS(1171), + [anon_sym_SLASH] = ACTIONS(1161), + [anon_sym_PERCENT] = ACTIONS(1147), + [anon_sym_CARET] = ACTIONS(1793), + [anon_sym_PIPE] = ACTIONS(1161), + [anon_sym_AMP] = ACTIONS(1791), + [anon_sym_LT_LT] = ACTIONS(1147), + [anon_sym_GT_GT] = ACTIONS(1161), + [anon_sym_GT_GT_GT] = ACTIONS(1147), + [anon_sym_EQ_EQ] = ACTIONS(1147), + [anon_sym_BANG_EQ] = ACTIONS(1147), + [anon_sym_GT_EQ] = ACTIONS(1147), + [anon_sym_LT_EQ] = ACTIONS(1147), + [anon_sym_this] = ACTIONS(1173), + [anon_sym_DOT] = ACTIONS(1161), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1651), + [anon_sym_base] = ACTIONS(1175), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1653), - [anon_sym_unchecked] = ACTIONS(1639), + [sym_predefined_type] = ACTIONS(1177), + [anon_sym_unchecked] = ACTIONS(1163), [anon_sym_yield] = ACTIONS(29), - [anon_sym_switch] = ACTIONS(1165), - [anon_sym_default] = ACTIONS(1655), - [anon_sym_throw] = ACTIONS(1739), + [anon_sym_switch] = ACTIONS(1161), + [anon_sym_default] = ACTIONS(1179), + [anon_sym_throw] = ACTIONS(1795), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1741), - [anon_sym_DOT_DOT] = ACTIONS(1743), - [anon_sym_and] = ACTIONS(1165), - [anon_sym_or] = ACTIONS(1165), - [anon_sym_AMP_AMP] = ACTIONS(1151), - [anon_sym_PIPE_PIPE] = ACTIONS(1151), - [anon_sym_QMARK_QMARK] = ACTIONS(1151), + [anon_sym_await] = ACTIONS(1797), + [anon_sym_DOT_DOT] = ACTIONS(1799), + [anon_sym_and] = ACTIONS(1161), + [anon_sym_or] = ACTIONS(1161), + [anon_sym_AMP_AMP] = ACTIONS(1147), + [anon_sym_PIPE_PIPE] = ACTIONS(1147), + [anon_sym_QMARK_QMARK] = ACTIONS(1147), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -68779,23 +68859,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(1165), - [anon_sym_is] = ACTIONS(1165), - [anon_sym_DASH_GT] = ACTIONS(1151), - [anon_sym_stackalloc] = ACTIONS(1663), - [anon_sym_with] = ACTIONS(1165), - [anon_sym_sizeof] = ACTIONS(1665), - [anon_sym_typeof] = ACTIONS(1667), - [anon_sym___makeref] = ACTIONS(1669), - [anon_sym___reftype] = ACTIONS(1671), - [anon_sym___refvalue] = ACTIONS(1673), - [sym_null_literal] = ACTIONS(1675), - [anon_sym_SQUOTE] = ACTIONS(1677), - [sym_integer_literal] = ACTIONS(1675), - [sym_real_literal] = ACTIONS(1679), - [anon_sym_DQUOTE] = ACTIONS(1681), - [sym_verbatim_string_literal] = ACTIONS(1679), - [aux_sym_preproc_if_token1] = ACTIONS(1683), + [anon_sym_as] = ACTIONS(1161), + [anon_sym_is] = ACTIONS(1161), + [anon_sym_DASH_GT] = ACTIONS(1147), + [anon_sym_stackalloc] = ACTIONS(1187), + [anon_sym_with] = ACTIONS(1161), + [anon_sym_sizeof] = ACTIONS(1189), + [anon_sym_typeof] = ACTIONS(1191), + [anon_sym___makeref] = ACTIONS(1193), + [anon_sym___reftype] = ACTIONS(1195), + [anon_sym___refvalue] = ACTIONS(1197), + [sym_null_literal] = ACTIONS(1199), + [anon_sym_SQUOTE] = ACTIONS(1201), + [sym_integer_literal] = ACTIONS(1199), + [sym_real_literal] = ACTIONS(1203), + [anon_sym_DQUOTE] = ACTIONS(1205), + [sym_verbatim_string_literal] = ACTIONS(1203), + [aux_sym_preproc_if_token1] = ACTIONS(1801), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -68806,284 +68886,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1685), - [sym_interpolation_verbatim_start] = ACTIONS(1687), - [sym_interpolation_raw_start] = ACTIONS(1689), - [sym_raw_string_start] = ACTIONS(1691), - }, - [199] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(3184), - [sym__name] = STATE(5906), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2312), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2269), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(4610), - [sym_non_lvalue_expression] = STATE(4541), - [sym_lvalue_expression] = STATE(3439), - [sym__expression_statement_expression] = STATE(4529), - [sym_assignment_expression] = STATE(4543), - [sym_binary_expression] = STATE(4529), - [sym_postfix_unary_expression] = STATE(4543), - [sym_prefix_unary_expression] = STATE(4543), - [sym__pointer_indirection_expression] = STATE(3175), - [sym_query_expression] = STATE(4529), - [sym_from_clause] = STATE(6169), - [sym_conditional_expression] = STATE(4529), - [sym_conditional_access_expression] = STATE(4529), - [sym_as_expression] = STATE(4529), - [sym_is_expression] = STATE(4529), - [sym_is_pattern_expression] = STATE(4529), - [sym_cast_expression] = STATE(4529), - [sym_checked_expression] = STATE(4529), - [sym_invocation_expression] = STATE(4543), - [sym_switch_expression] = STATE(4529), - [sym_await_expression] = STATE(4543), - [sym_throw_expression] = STATE(4529), - [sym_element_access_expression] = STATE(3175), - [sym_interpolated_string_expression] = STATE(4529), - [sym_member_access_expression] = STATE(3175), - [sym_object_creation_expression] = STATE(4543), - [sym_parenthesized_expression] = STATE(4543), - [sym__parenthesized_lvalue_expression] = STATE(3175), - [sym_lambda_expression] = STATE(4529), - [sym__lambda_expression_init] = STATE(7684), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(4529), - [sym_anonymous_method_expression] = STATE(4529), - [sym_anonymous_object_creation_expression] = STATE(4529), - [sym_implicit_array_creation_expression] = STATE(4529), - [sym_implicit_object_creation_expression] = STATE(4529), - [sym_implicit_stackalloc_expression] = STATE(4529), - [sym_initializer_expression] = STATE(4529), - [sym_default_expression] = STATE(4529), - [sym_with_expression] = STATE(4529), - [sym_sizeof_expression] = STATE(4529), - [sym_typeof_expression] = STATE(4529), - [sym_makeref_expression] = STATE(4529), - [sym_ref_expression] = STATE(4529), - [sym_reftype_expression] = STATE(4529), - [sym_refvalue_expression] = STATE(4529), - [sym_stackalloc_expression] = STATE(4529), - [sym_range_expression] = STATE(4529), - [sym_tuple_expression] = STATE(3175), - [sym_literal] = STATE(4529), - [sym_character_literal] = STATE(4536), - [sym_string_literal] = STATE(4536), - [sym_raw_string_literal] = STATE(4536), - [sym_boolean_literal] = STATE(4536), - [sym_identifier] = STATE(2246), - [sym__reserved_identifier] = STATE(2240), - [sym_preproc_if_in_expression] = STATE(4529), - [sym_preproc_if_in_attribute_list] = STATE(5576), - [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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3363), - [sym__identifier_token] = ACTIONS(1387), - [anon_sym_alias] = ACTIONS(1389), - [anon_sym_global] = ACTIONS(1389), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1391), - [anon_sym_COLON] = ACTIONS(1151), - [anon_sym_COMMA] = ACTIONS(1151), - [anon_sym_LPAREN] = ACTIONS(1775), - [anon_sym_ref] = ACTIONS(1777), - [anon_sym_LBRACE] = ACTIONS(1397), - [anon_sym_delegate] = ACTIONS(1399), - [anon_sym_async] = ACTIONS(1047), - [anon_sym_file] = ACTIONS(1389), - [anon_sym_new] = ACTIONS(1401), - [anon_sym_LT] = ACTIONS(1165), - [anon_sym_GT] = ACTIONS(1165), - [anon_sym_where] = ACTIONS(1389), - [anon_sym_QMARK] = ACTIONS(1165), - [anon_sym_notnull] = ACTIONS(1389), - [anon_sym_unmanaged] = ACTIONS(1389), - [anon_sym_checked] = ACTIONS(1403), - [anon_sym_BANG] = ACTIONS(1779), - [anon_sym_TILDE] = ACTIONS(1781), - [anon_sym_PLUS_PLUS] = ACTIONS(1781), - [anon_sym_DASH_DASH] = ACTIONS(1781), - [anon_sym_true] = ACTIONS(1409), - [anon_sym_false] = ACTIONS(1409), - [anon_sym_PLUS] = ACTIONS(1779), - [anon_sym_DASH] = ACTIONS(1779), - [anon_sym_STAR] = ACTIONS(1411), - [anon_sym_SLASH] = ACTIONS(1165), - [anon_sym_PERCENT] = ACTIONS(1151), - [anon_sym_CARET] = ACTIONS(1781), - [anon_sym_PIPE] = ACTIONS(1165), - [anon_sym_AMP] = ACTIONS(1779), - [anon_sym_LT_LT] = ACTIONS(1151), - [anon_sym_GT_GT] = ACTIONS(1165), - [anon_sym_GT_GT_GT] = ACTIONS(1151), - [anon_sym_EQ_EQ] = ACTIONS(1151), - [anon_sym_BANG_EQ] = ACTIONS(1151), - [anon_sym_GT_EQ] = ACTIONS(1151), - [anon_sym_LT_EQ] = ACTIONS(1151), - [anon_sym_this] = ACTIONS(1413), - [anon_sym_DOT] = ACTIONS(1165), - [anon_sym_scoped] = ACTIONS(1415), - [anon_sym_base] = ACTIONS(1417), - [anon_sym_var] = ACTIONS(1419), - [sym_predefined_type] = ACTIONS(1421), - [anon_sym_unchecked] = ACTIONS(1403), - [anon_sym_yield] = ACTIONS(1389), - [anon_sym_switch] = ACTIONS(1165), - [anon_sym_default] = ACTIONS(1423), - [anon_sym_throw] = ACTIONS(1783), - [anon_sym_when] = ACTIONS(1389), - [anon_sym_await] = ACTIONS(1785), - [anon_sym_DOT_DOT] = ACTIONS(1787), - [anon_sym_AMP_AMP] = ACTIONS(1151), - [anon_sym_PIPE_PIPE] = ACTIONS(1151), - [anon_sym_QMARK_QMARK] = ACTIONS(1151), - [anon_sym_from] = ACTIONS(1431), - [anon_sym_into] = ACTIONS(1389), - [anon_sym_join] = ACTIONS(1389), - [anon_sym_on] = ACTIONS(1389), - [anon_sym_equals] = ACTIONS(1389), - [anon_sym_let] = ACTIONS(1389), - [anon_sym_orderby] = ACTIONS(1389), - [anon_sym_ascending] = ACTIONS(1389), - [anon_sym_descending] = ACTIONS(1389), - [anon_sym_group] = ACTIONS(1389), - [anon_sym_by] = ACTIONS(1389), - [anon_sym_select] = ACTIONS(1389), - [anon_sym_as] = ACTIONS(1165), - [anon_sym_is] = ACTIONS(1165), - [anon_sym_DASH_GT] = ACTIONS(1151), - [anon_sym_stackalloc] = ACTIONS(1433), - [anon_sym_with] = ACTIONS(1165), - [anon_sym_sizeof] = ACTIONS(1435), - [anon_sym_typeof] = ACTIONS(1437), - [anon_sym___makeref] = ACTIONS(1439), - [anon_sym___reftype] = ACTIONS(1441), - [anon_sym___refvalue] = ACTIONS(1443), - [sym_null_literal] = ACTIONS(1445), - [anon_sym_SQUOTE] = ACTIONS(1447), - [sym_integer_literal] = ACTIONS(1445), - [sym_real_literal] = ACTIONS(1449), - [anon_sym_DQUOTE] = ACTIONS(1451), - [sym_verbatim_string_literal] = ACTIONS(1449), - [aux_sym_preproc_if_token1] = ACTIONS(1453), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1455), - [sym_interpolation_verbatim_start] = ACTIONS(1457), - [sym_interpolation_raw_start] = ACTIONS(1459), - [sym_interpolation_close_brace] = ACTIONS(1151), - [sym_raw_string_start] = ACTIONS(1461), + [sym_interpolation_regular_start] = ACTIONS(1209), + [sym_interpolation_verbatim_start] = ACTIONS(1211), + [sym_interpolation_raw_start] = ACTIONS(1213), + [sym_raw_string_start] = ACTIONS(1215), }, [200] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2762), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2901), [sym__name] = STATE(5889), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2204), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(4976), - [sym_non_lvalue_expression] = STATE(3438), - [sym_lvalue_expression] = STATE(3548), - [sym__expression_statement_expression] = STATE(3362), - [sym_assignment_expression] = STATE(3449), - [sym_binary_expression] = STATE(3362), - [sym_postfix_unary_expression] = STATE(3449), - [sym_prefix_unary_expression] = STATE(3449), - [sym__pointer_indirection_expression] = STATE(2747), - [sym_query_expression] = STATE(3362), - [sym_from_clause] = STATE(6146), - [sym_conditional_expression] = STATE(3362), - [sym_conditional_access_expression] = STATE(3362), - [sym_as_expression] = STATE(3362), - [sym_is_expression] = STATE(3362), - [sym_is_pattern_expression] = STATE(3362), - [sym_cast_expression] = STATE(3362), - [sym_checked_expression] = STATE(3362), - [sym_invocation_expression] = STATE(3449), - [sym_switch_expression] = STATE(3362), - [sym_await_expression] = STATE(3449), - [sym_throw_expression] = STATE(3362), - [sym_element_access_expression] = STATE(2747), - [sym_interpolated_string_expression] = STATE(3362), - [sym_member_access_expression] = STATE(2747), - [sym_object_creation_expression] = STATE(3449), - [sym_parenthesized_expression] = STATE(3449), - [sym__parenthesized_lvalue_expression] = STATE(2747), - [sym_lambda_expression] = STATE(3362), - [sym__lambda_expression_init] = STATE(7772), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3362), - [sym_anonymous_method_expression] = STATE(3362), - [sym_anonymous_object_creation_expression] = STATE(3362), - [sym_implicit_array_creation_expression] = STATE(3362), - [sym_implicit_object_creation_expression] = STATE(3362), - [sym_implicit_stackalloc_expression] = STATE(3362), - [sym_initializer_expression] = STATE(3362), - [sym_default_expression] = STATE(3362), - [sym_with_expression] = STATE(3362), - [sym_sizeof_expression] = STATE(3362), - [sym_typeof_expression] = STATE(3362), - [sym_makeref_expression] = STATE(3362), - [sym_ref_expression] = STATE(3362), - [sym_reftype_expression] = STATE(3362), - [sym_refvalue_expression] = STATE(3362), - [sym_stackalloc_expression] = STATE(3362), - [sym_range_expression] = STATE(3362), - [sym_tuple_expression] = STATE(2747), - [sym_literal] = STATE(3362), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3362), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2349), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(3559), + [sym_non_lvalue_expression] = STATE(3685), + [sym_lvalue_expression] = STATE(2890), + [sym__expression_statement_expression] = STATE(3836), + [sym_assignment_expression] = STATE(3689), + [sym_binary_expression] = STATE(3836), + [sym_postfix_unary_expression] = STATE(3689), + [sym_prefix_unary_expression] = STATE(3689), + [sym__pointer_indirection_expression] = STATE(2906), + [sym_query_expression] = STATE(3836), + [sym_from_clause] = STATE(6139), + [sym_conditional_expression] = STATE(3836), + [sym_conditional_access_expression] = STATE(3836), + [sym_as_expression] = STATE(3836), + [sym_is_expression] = STATE(3836), + [sym_is_pattern_expression] = STATE(3836), + [sym_cast_expression] = STATE(3836), + [sym_checked_expression] = STATE(3836), + [sym_invocation_expression] = STATE(3689), + [sym_switch_expression] = STATE(3836), + [sym_await_expression] = STATE(3689), + [sym_throw_expression] = STATE(3836), + [sym_element_access_expression] = STATE(2906), + [sym_interpolated_string_expression] = STATE(3836), + [sym_member_access_expression] = STATE(2906), + [sym_object_creation_expression] = STATE(3689), + [sym_parenthesized_expression] = STATE(3689), + [sym__parenthesized_lvalue_expression] = STATE(2906), + [sym_lambda_expression] = STATE(3836), + [sym__lambda_expression_init] = STATE(7456), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3836), + [sym_anonymous_method_expression] = STATE(3836), + [sym_anonymous_object_creation_expression] = STATE(3836), + [sym_implicit_array_creation_expression] = STATE(3836), + [sym_implicit_object_creation_expression] = STATE(3836), + [sym_implicit_stackalloc_expression] = STATE(3836), + [sym_initializer_expression] = STATE(3836), + [sym_default_expression] = STATE(3836), + [sym_with_expression] = STATE(3836), + [sym_sizeof_expression] = STATE(3836), + [sym_typeof_expression] = STATE(3836), + [sym_makeref_expression] = STATE(3836), + [sym_ref_expression] = STATE(3836), + [sym_reftype_expression] = STATE(3836), + [sym_refvalue_expression] = STATE(3836), + [sym_stackalloc_expression] = STATE(3836), + [sym_range_expression] = STATE(3836), + [sym_tuple_expression] = STATE(2906), + [sym_literal] = STATE(3836), + [sym_character_literal] = STATE(3843), + [sym_string_literal] = STATE(3843), + [sym_raw_string_literal] = STATE(3843), + [sym_boolean_literal] = STATE(3843), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3836), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(200), [sym_preproc_endregion] = STATE(200), [sym_preproc_line] = STATE(200), @@ -69093,68 +68979,68 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(200), [sym_preproc_define] = STATE(200), [sym_preproc_undef] = STATE(200), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3385), - [sym__identifier_token] = ACTIONS(25), - [anon_sym_alias] = ACTIONS(29), - [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1307), - [anon_sym_COLON] = ACTIONS(1151), - [anon_sym_LPAREN] = ACTIONS(1789), - [anon_sym_ref] = ACTIONS(1791), - [anon_sym_LBRACE] = ACTIONS(1313), - [anon_sym_delegate] = ACTIONS(1315), - [anon_sym_async] = ACTIONS(1047), - [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1317), - [anon_sym_LT] = ACTIONS(1165), - [anon_sym_GT] = ACTIONS(1165), - [anon_sym_where] = ACTIONS(29), - [anon_sym_QMARK] = ACTIONS(1165), - [anon_sym_notnull] = ACTIONS(29), - [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1319), - [anon_sym_BANG] = ACTIONS(1793), - [anon_sym_TILDE] = ACTIONS(1795), - [anon_sym_PLUS_PLUS] = ACTIONS(1795), - [anon_sym_DASH_DASH] = ACTIONS(1795), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1793), - [anon_sym_DASH] = ACTIONS(1793), - [anon_sym_STAR] = ACTIONS(1797), - [anon_sym_SLASH] = ACTIONS(1165), - [anon_sym_PERCENT] = ACTIONS(1151), - [anon_sym_CARET] = ACTIONS(1795), - [anon_sym_PIPE] = ACTIONS(1165), - [anon_sym_AMP] = ACTIONS(1793), - [anon_sym_LT_LT] = ACTIONS(1151), - [anon_sym_GT_GT] = ACTIONS(1165), - [anon_sym_GT_GT_GT] = ACTIONS(1151), - [anon_sym_EQ_EQ] = ACTIONS(1151), - [anon_sym_BANG_EQ] = ACTIONS(1151), - [anon_sym_GT_EQ] = ACTIONS(1151), - [anon_sym_LT_EQ] = ACTIONS(1151), - [anon_sym_this] = ACTIONS(1323), - [anon_sym_DOT] = ACTIONS(1165), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1325), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1319), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3477), + [sym__identifier_token] = ACTIONS(25), + [anon_sym_alias] = ACTIONS(29), + [anon_sym_global] = ACTIONS(29), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1655), + [anon_sym_COMMA] = ACTIONS(1219), + [anon_sym_LPAREN] = ACTIONS(1755), + [anon_sym_ref] = ACTIONS(1757), + [anon_sym_LBRACE] = ACTIONS(1661), + [anon_sym_delegate] = ACTIONS(1663), + [anon_sym_async] = ACTIONS(1045), + [anon_sym_file] = ACTIONS(29), + [anon_sym_new] = ACTIONS(1759), + [anon_sym_LT] = ACTIONS(1221), + [anon_sym_GT] = ACTIONS(1221), + [anon_sym_where] = ACTIONS(29), + [anon_sym_QMARK] = ACTIONS(1221), + [anon_sym_notnull] = ACTIONS(29), + [anon_sym_unmanaged] = ACTIONS(29), + [anon_sym_checked] = ACTIONS(1667), + [anon_sym_BANG] = ACTIONS(1761), + [anon_sym_TILDE] = ACTIONS(1763), + [anon_sym_PLUS_PLUS] = ACTIONS(1763), + [anon_sym_DASH_DASH] = ACTIONS(1763), + [anon_sym_true] = ACTIONS(1673), + [anon_sym_false] = ACTIONS(1673), + [anon_sym_PLUS] = ACTIONS(1761), + [anon_sym_DASH] = ACTIONS(1761), + [anon_sym_STAR] = ACTIONS(1765), + [anon_sym_SLASH] = ACTIONS(1221), + [anon_sym_PERCENT] = ACTIONS(1219), + [anon_sym_CARET] = ACTIONS(1763), + [anon_sym_PIPE] = ACTIONS(1221), + [anon_sym_AMP] = ACTIONS(1761), + [anon_sym_LT_LT] = ACTIONS(1219), + [anon_sym_GT_GT] = ACTIONS(1221), + [anon_sym_GT_GT_GT] = ACTIONS(1219), + [anon_sym_EQ_EQ] = ACTIONS(1219), + [anon_sym_BANG_EQ] = ACTIONS(1219), + [anon_sym_GT_EQ] = ACTIONS(1219), + [anon_sym_LT_EQ] = ACTIONS(1219), + [anon_sym_this] = ACTIONS(1677), + [anon_sym_DOT] = ACTIONS(1221), + [anon_sym_scoped] = ACTIONS(85), + [anon_sym_base] = ACTIONS(1679), + [anon_sym_var] = ACTIONS(89), + [sym_predefined_type] = ACTIONS(1681), + [anon_sym_unchecked] = ACTIONS(1667), [anon_sym_yield] = ACTIONS(29), - [anon_sym_switch] = ACTIONS(1165), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1799), + [anon_sym_switch] = ACTIONS(1221), + [anon_sym_default] = ACTIONS(1683), + [anon_sym_throw] = ACTIONS(1767), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1801), - [anon_sym_DOT_DOT] = ACTIONS(1803), - [anon_sym_and] = ACTIONS(1165), - [anon_sym_or] = ACTIONS(1165), - [anon_sym_AMP_AMP] = ACTIONS(1151), - [anon_sym_PIPE_PIPE] = ACTIONS(1151), - [anon_sym_QMARK_QMARK] = ACTIONS(1151), + [anon_sym_await] = ACTIONS(1769), + [anon_sym_DOT_DOT] = ACTIONS(1771), + [anon_sym_and] = ACTIONS(1221), + [anon_sym_or] = ACTIONS(1221), + [anon_sym_AMP_AMP] = ACTIONS(1219), + [anon_sym_PIPE_PIPE] = ACTIONS(1219), + [anon_sym_QMARK_QMARK] = ACTIONS(1219), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -69167,23 +69053,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(1165), - [anon_sym_is] = ACTIONS(1165), - [anon_sym_DASH_GT] = ACTIONS(1151), - [anon_sym_stackalloc] = ACTIONS(1333), - [anon_sym_with] = ACTIONS(1165), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(1335), - [anon_sym___reftype] = ACTIONS(1337), - [anon_sym___refvalue] = ACTIONS(1339), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1341), + [anon_sym_as] = ACTIONS(1221), + [anon_sym_is] = ACTIONS(1221), + [anon_sym_DASH_GT] = ACTIONS(1219), + [anon_sym_stackalloc] = ACTIONS(1691), + [anon_sym_with] = ACTIONS(1221), + [anon_sym_sizeof] = ACTIONS(1693), + [anon_sym_typeof] = ACTIONS(1695), + [anon_sym___makeref] = ACTIONS(1697), + [anon_sym___reftype] = ACTIONS(1699), + [anon_sym___refvalue] = ACTIONS(1701), + [sym_null_literal] = ACTIONS(1703), + [anon_sym_SQUOTE] = ACTIONS(1705), + [sym_integer_literal] = ACTIONS(1703), + [sym_real_literal] = ACTIONS(1707), + [anon_sym_DQUOTE] = ACTIONS(1709), + [sym_verbatim_string_literal] = ACTIONS(1707), + [aux_sym_preproc_if_token1] = ACTIONS(1711), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -69194,90 +69080,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(151), - [sym_interpolation_verbatim_start] = ACTIONS(153), - [sym_interpolation_raw_start] = ACTIONS(155), - [sym_raw_string_start] = ACTIONS(157), + [sym_interpolation_regular_start] = ACTIONS(1713), + [sym_interpolation_verbatim_start] = ACTIONS(1715), + [sym_interpolation_raw_start] = ACTIONS(1717), + [sym_raw_string_start] = ACTIONS(1719), }, [201] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2762), - [sym__name] = STATE(5889), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2204), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(4905), - [sym_non_lvalue_expression] = STATE(3438), - [sym_lvalue_expression] = STATE(3548), - [sym__expression_statement_expression] = STATE(3362), - [sym_assignment_expression] = STATE(3449), - [sym_binary_expression] = STATE(3362), - [sym_postfix_unary_expression] = STATE(3449), - [sym_prefix_unary_expression] = STATE(3449), - [sym__pointer_indirection_expression] = STATE(2747), - [sym_query_expression] = STATE(3362), - [sym_from_clause] = STATE(6146), - [sym_conditional_expression] = STATE(3362), - [sym_conditional_access_expression] = STATE(3362), - [sym_as_expression] = STATE(3362), - [sym_is_expression] = STATE(3362), - [sym_is_pattern_expression] = STATE(3362), - [sym_cast_expression] = STATE(3362), - [sym_checked_expression] = STATE(3362), - [sym_invocation_expression] = STATE(3449), - [sym_switch_expression] = STATE(3362), - [sym_await_expression] = STATE(3449), - [sym_throw_expression] = STATE(3362), - [sym_element_access_expression] = STATE(2747), - [sym_interpolated_string_expression] = STATE(3362), - [sym_member_access_expression] = STATE(2747), - [sym_object_creation_expression] = STATE(3449), - [sym_parenthesized_expression] = STATE(3449), - [sym__parenthesized_lvalue_expression] = STATE(2747), - [sym_lambda_expression] = STATE(3362), - [sym__lambda_expression_init] = STATE(7772), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3362), - [sym_anonymous_method_expression] = STATE(3362), - [sym_anonymous_object_creation_expression] = STATE(3362), - [sym_implicit_array_creation_expression] = STATE(3362), - [sym_implicit_object_creation_expression] = STATE(3362), - [sym_implicit_stackalloc_expression] = STATE(3362), - [sym_initializer_expression] = STATE(3362), - [sym_default_expression] = STATE(3362), - [sym_with_expression] = STATE(3362), - [sym_sizeof_expression] = STATE(3362), - [sym_typeof_expression] = STATE(3362), - [sym_makeref_expression] = STATE(3362), - [sym_ref_expression] = STATE(3362), - [sym_reftype_expression] = STATE(3362), - [sym_refvalue_expression] = STATE(3362), - [sym_stackalloc_expression] = STATE(3362), - [sym_range_expression] = STATE(3362), - [sym_tuple_expression] = STATE(2747), - [sym_literal] = STATE(3362), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3362), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(3182), + [sym__name] = STATE(5882), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2306), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2262), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(4919), + [sym_non_lvalue_expression] = STATE(4580), + [sym_lvalue_expression] = STATE(3534), + [sym__expression_statement_expression] = STATE(4573), + [sym_assignment_expression] = STATE(4581), + [sym_binary_expression] = STATE(4573), + [sym_postfix_unary_expression] = STATE(4581), + [sym_prefix_unary_expression] = STATE(4581), + [sym__pointer_indirection_expression] = STATE(3144), + [sym_query_expression] = STATE(4573), + [sym_from_clause] = STATE(6133), + [sym_conditional_expression] = STATE(4573), + [sym_conditional_access_expression] = STATE(4573), + [sym_as_expression] = STATE(4573), + [sym_is_expression] = STATE(4573), + [sym_is_pattern_expression] = STATE(4573), + [sym_cast_expression] = STATE(4573), + [sym_checked_expression] = STATE(4573), + [sym_invocation_expression] = STATE(4581), + [sym_switch_expression] = STATE(4573), + [sym_await_expression] = STATE(4581), + [sym_throw_expression] = STATE(4573), + [sym_element_access_expression] = STATE(3144), + [sym_interpolated_string_expression] = STATE(4573), + [sym_member_access_expression] = STATE(3144), + [sym_object_creation_expression] = STATE(4581), + [sym_parenthesized_expression] = STATE(4581), + [sym__parenthesized_lvalue_expression] = STATE(3144), + [sym_lambda_expression] = STATE(4573), + [sym__lambda_expression_init] = STATE(7592), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(4573), + [sym_anonymous_method_expression] = STATE(4573), + [sym_anonymous_object_creation_expression] = STATE(4573), + [sym_implicit_array_creation_expression] = STATE(4573), + [sym_implicit_object_creation_expression] = STATE(4573), + [sym_implicit_stackalloc_expression] = STATE(4573), + [sym_initializer_expression] = STATE(4573), + [sym_default_expression] = STATE(4573), + [sym_with_expression] = STATE(4573), + [sym_sizeof_expression] = STATE(4573), + [sym_typeof_expression] = STATE(4573), + [sym_makeref_expression] = STATE(4573), + [sym_ref_expression] = STATE(4573), + [sym_reftype_expression] = STATE(4573), + [sym_refvalue_expression] = STATE(4573), + [sym_stackalloc_expression] = STATE(4573), + [sym_range_expression] = STATE(4573), + [sym_tuple_expression] = STATE(3144), + [sym_literal] = STATE(4573), + [sym_character_literal] = STATE(4575), + [sym_string_literal] = STATE(4575), + [sym_raw_string_literal] = STATE(4575), + [sym_boolean_literal] = STATE(4575), + [sym_identifier] = STATE(2237), + [sym__reserved_identifier] = STATE(2229), + [sym_preproc_if_in_expression] = STATE(4573), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(201), [sym_preproc_endregion] = STATE(201), [sym_preproc_line] = STATE(201), @@ -69287,68 +69173,262 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(201), [sym_preproc_define] = STATE(201), [sym_preproc_undef] = STATE(201), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3385), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3501), + [sym__identifier_token] = ACTIONS(1385), + [anon_sym_alias] = ACTIONS(1387), + [anon_sym_global] = ACTIONS(1387), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1389), + [anon_sym_COLON] = ACTIONS(1147), + [anon_sym_COMMA] = ACTIONS(1147), + [anon_sym_LPAREN] = ACTIONS(1773), + [anon_sym_ref] = ACTIONS(1775), + [anon_sym_LBRACE] = ACTIONS(1395), + [anon_sym_delegate] = ACTIONS(1397), + [anon_sym_async] = ACTIONS(1045), + [anon_sym_file] = ACTIONS(1387), + [anon_sym_new] = ACTIONS(1465), + [anon_sym_LT] = ACTIONS(1161), + [anon_sym_GT] = ACTIONS(1161), + [anon_sym_where] = ACTIONS(1387), + [anon_sym_QMARK] = ACTIONS(1161), + [anon_sym_notnull] = ACTIONS(1387), + [anon_sym_unmanaged] = ACTIONS(1387), + [anon_sym_checked] = ACTIONS(1401), + [anon_sym_BANG] = ACTIONS(1777), + [anon_sym_TILDE] = ACTIONS(1779), + [anon_sym_PLUS_PLUS] = ACTIONS(1779), + [anon_sym_DASH_DASH] = ACTIONS(1779), + [anon_sym_true] = ACTIONS(1407), + [anon_sym_false] = ACTIONS(1407), + [anon_sym_PLUS] = ACTIONS(1777), + [anon_sym_DASH] = ACTIONS(1777), + [anon_sym_STAR] = ACTIONS(1471), + [anon_sym_SLASH] = ACTIONS(1161), + [anon_sym_PERCENT] = ACTIONS(1147), + [anon_sym_CARET] = ACTIONS(1779), + [anon_sym_PIPE] = ACTIONS(1161), + [anon_sym_AMP] = ACTIONS(1777), + [anon_sym_LT_LT] = ACTIONS(1147), + [anon_sym_GT_GT] = ACTIONS(1161), + [anon_sym_GT_GT_GT] = ACTIONS(1147), + [anon_sym_EQ_EQ] = ACTIONS(1147), + [anon_sym_BANG_EQ] = ACTIONS(1147), + [anon_sym_GT_EQ] = ACTIONS(1147), + [anon_sym_LT_EQ] = ACTIONS(1147), + [anon_sym_this] = ACTIONS(1411), + [anon_sym_DOT] = ACTIONS(1161), + [anon_sym_scoped] = ACTIONS(1413), + [anon_sym_base] = ACTIONS(1415), + [anon_sym_var] = ACTIONS(1417), + [sym_predefined_type] = ACTIONS(1419), + [anon_sym_unchecked] = ACTIONS(1401), + [anon_sym_yield] = ACTIONS(1387), + [anon_sym_switch] = ACTIONS(1161), + [anon_sym_default] = ACTIONS(1421), + [anon_sym_throw] = ACTIONS(1781), + [anon_sym_when] = ACTIONS(1387), + [anon_sym_await] = ACTIONS(1783), + [anon_sym_DOT_DOT] = ACTIONS(1785), + [anon_sym_AMP_AMP] = ACTIONS(1147), + [anon_sym_PIPE_PIPE] = ACTIONS(1147), + [anon_sym_QMARK_QMARK] = ACTIONS(1147), + [anon_sym_from] = ACTIONS(1429), + [anon_sym_into] = ACTIONS(1387), + [anon_sym_join] = ACTIONS(1387), + [anon_sym_on] = ACTIONS(1387), + [anon_sym_equals] = ACTIONS(1387), + [anon_sym_let] = ACTIONS(1387), + [anon_sym_orderby] = ACTIONS(1387), + [anon_sym_ascending] = ACTIONS(1387), + [anon_sym_descending] = ACTIONS(1387), + [anon_sym_group] = ACTIONS(1387), + [anon_sym_by] = ACTIONS(1387), + [anon_sym_select] = ACTIONS(1387), + [anon_sym_as] = ACTIONS(1161), + [anon_sym_is] = ACTIONS(1161), + [anon_sym_DASH_GT] = ACTIONS(1147), + [anon_sym_stackalloc] = ACTIONS(1431), + [anon_sym_with] = ACTIONS(1161), + [anon_sym_sizeof] = ACTIONS(1433), + [anon_sym_typeof] = ACTIONS(1435), + [anon_sym___makeref] = ACTIONS(1437), + [anon_sym___reftype] = ACTIONS(1439), + [anon_sym___refvalue] = ACTIONS(1441), + [sym_null_literal] = ACTIONS(1443), + [anon_sym_SQUOTE] = ACTIONS(1445), + [sym_integer_literal] = ACTIONS(1443), + [sym_real_literal] = ACTIONS(1447), + [anon_sym_DQUOTE] = ACTIONS(1449), + [sym_verbatim_string_literal] = ACTIONS(1447), + [aux_sym_preproc_if_token1] = ACTIONS(1451), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + [sym_interpolation_regular_start] = ACTIONS(1453), + [sym_interpolation_verbatim_start] = ACTIONS(1455), + [sym_interpolation_raw_start] = ACTIONS(1457), + [sym_interpolation_close_brace] = ACTIONS(1147), + [sym_raw_string_start] = ACTIONS(1459), + }, + [202] = { + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2816), + [sym__name] = STATE(5875), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2321), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(4691), + [sym_non_lvalue_expression] = STATE(3495), + [sym_lvalue_expression] = STATE(3484), + [sym__expression_statement_expression] = STATE(3462), + [sym_assignment_expression] = STATE(3497), + [sym_binary_expression] = STATE(3462), + [sym_postfix_unary_expression] = STATE(3497), + [sym_prefix_unary_expression] = STATE(3497), + [sym__pointer_indirection_expression] = STATE(2815), + [sym_query_expression] = STATE(3462), + [sym_from_clause] = STATE(6142), + [sym_conditional_expression] = STATE(3462), + [sym_conditional_access_expression] = STATE(3462), + [sym_as_expression] = STATE(3462), + [sym_is_expression] = STATE(3462), + [sym_is_pattern_expression] = STATE(3462), + [sym_cast_expression] = STATE(3462), + [sym_checked_expression] = STATE(3462), + [sym_invocation_expression] = STATE(3497), + [sym_switch_expression] = STATE(3462), + [sym_await_expression] = STATE(3497), + [sym_throw_expression] = STATE(3462), + [sym_element_access_expression] = STATE(2815), + [sym_interpolated_string_expression] = STATE(3462), + [sym_member_access_expression] = STATE(2815), + [sym_object_creation_expression] = STATE(3497), + [sym_parenthesized_expression] = STATE(3497), + [sym__parenthesized_lvalue_expression] = STATE(2815), + [sym_lambda_expression] = STATE(3462), + [sym__lambda_expression_init] = STATE(7384), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3462), + [sym_anonymous_method_expression] = STATE(3462), + [sym_anonymous_object_creation_expression] = STATE(3462), + [sym_implicit_array_creation_expression] = STATE(3462), + [sym_implicit_object_creation_expression] = STATE(3462), + [sym_implicit_stackalloc_expression] = STATE(3462), + [sym_initializer_expression] = STATE(3462), + [sym_default_expression] = STATE(3462), + [sym_with_expression] = STATE(3462), + [sym_sizeof_expression] = STATE(3462), + [sym_typeof_expression] = STATE(3462), + [sym_makeref_expression] = STATE(3462), + [sym_ref_expression] = STATE(3462), + [sym_reftype_expression] = STATE(3462), + [sym_refvalue_expression] = STATE(3462), + [sym_stackalloc_expression] = STATE(3462), + [sym_range_expression] = STATE(3462), + [sym_tuple_expression] = STATE(2815), + [sym_literal] = STATE(3462), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2261), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3462), + [sym_preproc_if_in_attribute_list] = STATE(5583), + [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(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3367), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1307), - [anon_sym_COLON] = ACTIONS(1221), - [anon_sym_LPAREN] = ACTIONS(1789), - [anon_sym_ref] = ACTIONS(1791), - [anon_sym_LBRACE] = ACTIONS(1313), - [anon_sym_delegate] = ACTIONS(1315), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1305), + [anon_sym_LPAREN] = ACTIONS(1579), + [anon_sym_ref] = ACTIONS(1581), + [anon_sym_LBRACE] = ACTIONS(1311), + [anon_sym_delegate] = ACTIONS(1313), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1317), - [anon_sym_LT] = ACTIONS(1223), - [anon_sym_GT] = ACTIONS(1223), + [anon_sym_new] = ACTIONS(1583), + [anon_sym_LT] = ACTIONS(1221), + [anon_sym_GT] = ACTIONS(1221), [anon_sym_where] = ACTIONS(29), - [anon_sym_QMARK] = ACTIONS(1223), + [anon_sym_QMARK] = ACTIONS(1221), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1319), - [anon_sym_BANG] = ACTIONS(1793), - [anon_sym_TILDE] = ACTIONS(1795), - [anon_sym_PLUS_PLUS] = ACTIONS(1795), - [anon_sym_DASH_DASH] = ACTIONS(1795), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1793), - [anon_sym_DASH] = ACTIONS(1793), - [anon_sym_STAR] = ACTIONS(1797), - [anon_sym_SLASH] = ACTIONS(1223), - [anon_sym_PERCENT] = ACTIONS(1221), - [anon_sym_CARET] = ACTIONS(1795), - [anon_sym_PIPE] = ACTIONS(1223), - [anon_sym_AMP] = ACTIONS(1793), - [anon_sym_LT_LT] = ACTIONS(1221), - [anon_sym_GT_GT] = ACTIONS(1223), - [anon_sym_GT_GT_GT] = ACTIONS(1221), - [anon_sym_EQ_EQ] = ACTIONS(1221), - [anon_sym_BANG_EQ] = ACTIONS(1221), - [anon_sym_GT_EQ] = ACTIONS(1221), - [anon_sym_LT_EQ] = ACTIONS(1221), - [anon_sym_this] = ACTIONS(1323), - [anon_sym_DOT] = ACTIONS(1223), + [anon_sym_checked] = ACTIONS(1317), + [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(1221), + [anon_sym_PERCENT] = ACTIONS(1219), + [anon_sym_CARET] = ACTIONS(1587), + [anon_sym_PIPE] = ACTIONS(1221), + [anon_sym_AMP] = ACTIONS(1585), + [anon_sym_LT_LT] = ACTIONS(1219), + [anon_sym_GT_GT] = ACTIONS(1221), + [anon_sym_GT_GT_GT] = ACTIONS(1219), + [anon_sym_EQ_EQ] = ACTIONS(1219), + [anon_sym_BANG_EQ] = ACTIONS(1219), + [anon_sym_GT_EQ] = ACTIONS(1219), + [anon_sym_LT_EQ] = ACTIONS(1219), + [anon_sym_this] = ACTIONS(1321), + [anon_sym_DOT] = ACTIONS(1221), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1325), + [anon_sym_base] = ACTIONS(1323), + [anon_sym_EQ_GT] = ACTIONS(1219), [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1319), + [anon_sym_unchecked] = ACTIONS(1317), [anon_sym_yield] = ACTIONS(29), - [anon_sym_switch] = ACTIONS(1223), + [anon_sym_switch] = ACTIONS(1221), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1799), + [anon_sym_throw] = ACTIONS(1591), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1801), - [anon_sym_DOT_DOT] = ACTIONS(1803), - [anon_sym_and] = ACTIONS(1223), - [anon_sym_or] = ACTIONS(1223), - [anon_sym_AMP_AMP] = ACTIONS(1221), - [anon_sym_PIPE_PIPE] = ACTIONS(1221), - [anon_sym_QMARK_QMARK] = ACTIONS(1221), + [anon_sym_await] = ACTIONS(1593), + [anon_sym_DOT_DOT] = ACTIONS(1595), + [anon_sym_and] = ACTIONS(1221), + [anon_sym_or] = ACTIONS(1221), + [anon_sym_AMP_AMP] = ACTIONS(1219), + [anon_sym_PIPE_PIPE] = ACTIONS(1219), + [anon_sym_QMARK_QMARK] = ACTIONS(1219), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -69361,23 +69441,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(1223), - [anon_sym_is] = ACTIONS(1223), - [anon_sym_DASH_GT] = ACTIONS(1221), - [anon_sym_stackalloc] = ACTIONS(1333), - [anon_sym_with] = ACTIONS(1223), + [anon_sym_as] = ACTIONS(1221), + [anon_sym_is] = ACTIONS(1221), + [anon_sym_DASH_GT] = ACTIONS(1219), + [anon_sym_stackalloc] = ACTIONS(1331), + [anon_sym_with] = ACTIONS(1221), [anon_sym_sizeof] = ACTIONS(129), [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(1335), - [anon_sym___reftype] = ACTIONS(1337), - [anon_sym___refvalue] = ACTIONS(1339), + [anon_sym___makeref] = ACTIONS(1333), + [anon_sym___reftype] = ACTIONS(1335), + [anon_sym___refvalue] = ACTIONS(1337), [sym_null_literal] = ACTIONS(139), [anon_sym_SQUOTE] = ACTIONS(141), [sym_integer_literal] = ACTIONS(139), [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1341), + [aux_sym_preproc_if_token1] = ACTIONS(1339), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -69393,279 +69473,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), }, - [202] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(3184), - [sym__name] = STATE(5906), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2312), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2269), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(4819), - [sym_non_lvalue_expression] = STATE(4541), - [sym_lvalue_expression] = STATE(3439), - [sym__expression_statement_expression] = STATE(4529), - [sym_assignment_expression] = STATE(4543), - [sym_binary_expression] = STATE(4529), - [sym_postfix_unary_expression] = STATE(4543), - [sym_prefix_unary_expression] = STATE(4543), - [sym__pointer_indirection_expression] = STATE(3175), - [sym_query_expression] = STATE(4529), - [sym_from_clause] = STATE(6169), - [sym_conditional_expression] = STATE(4529), - [sym_conditional_access_expression] = STATE(4529), - [sym_as_expression] = STATE(4529), - [sym_is_expression] = STATE(4529), - [sym_is_pattern_expression] = STATE(4529), - [sym_cast_expression] = STATE(4529), - [sym_checked_expression] = STATE(4529), - [sym_invocation_expression] = STATE(4543), - [sym_switch_expression] = STATE(4529), - [sym_await_expression] = STATE(4543), - [sym_throw_expression] = STATE(4529), - [sym_element_access_expression] = STATE(3175), - [sym_interpolated_string_expression] = STATE(4529), - [sym_member_access_expression] = STATE(3175), - [sym_object_creation_expression] = STATE(4543), - [sym_parenthesized_expression] = STATE(4543), - [sym__parenthesized_lvalue_expression] = STATE(3175), - [sym_lambda_expression] = STATE(4529), - [sym__lambda_expression_init] = STATE(7684), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(4529), - [sym_anonymous_method_expression] = STATE(4529), - [sym_anonymous_object_creation_expression] = STATE(4529), - [sym_implicit_array_creation_expression] = STATE(4529), - [sym_implicit_object_creation_expression] = STATE(4529), - [sym_implicit_stackalloc_expression] = STATE(4529), - [sym_initializer_expression] = STATE(4529), - [sym_default_expression] = STATE(4529), - [sym_with_expression] = STATE(4529), - [sym_sizeof_expression] = STATE(4529), - [sym_typeof_expression] = STATE(4529), - [sym_makeref_expression] = STATE(4529), - [sym_ref_expression] = STATE(4529), - [sym_reftype_expression] = STATE(4529), - [sym_refvalue_expression] = STATE(4529), - [sym_stackalloc_expression] = STATE(4529), - [sym_range_expression] = STATE(4529), - [sym_tuple_expression] = STATE(3175), - [sym_literal] = STATE(4529), - [sym_character_literal] = STATE(4536), - [sym_string_literal] = STATE(4536), - [sym_raw_string_literal] = STATE(4536), - [sym_boolean_literal] = STATE(4536), - [sym_identifier] = STATE(2246), - [sym__reserved_identifier] = STATE(2240), - [sym_preproc_if_in_expression] = STATE(4529), - [sym_preproc_if_in_attribute_list] = STATE(5576), - [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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3363), - [sym__identifier_token] = ACTIONS(1387), - [anon_sym_alias] = ACTIONS(1389), - [anon_sym_global] = ACTIONS(1389), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1391), - [anon_sym_COLON] = ACTIONS(1221), - [anon_sym_COMMA] = ACTIONS(1221), - [anon_sym_LPAREN] = ACTIONS(1775), - [anon_sym_ref] = ACTIONS(1777), - [anon_sym_LBRACE] = ACTIONS(1397), - [anon_sym_delegate] = ACTIONS(1399), - [anon_sym_async] = ACTIONS(1047), - [anon_sym_file] = ACTIONS(1389), - [anon_sym_new] = ACTIONS(1401), - [anon_sym_LT] = ACTIONS(1223), - [anon_sym_GT] = ACTIONS(1223), - [anon_sym_where] = ACTIONS(1389), - [anon_sym_QMARK] = ACTIONS(1223), - [anon_sym_notnull] = ACTIONS(1389), - [anon_sym_unmanaged] = ACTIONS(1389), - [anon_sym_checked] = ACTIONS(1403), - [anon_sym_BANG] = ACTIONS(1779), - [anon_sym_TILDE] = ACTIONS(1781), - [anon_sym_PLUS_PLUS] = ACTIONS(1781), - [anon_sym_DASH_DASH] = ACTIONS(1781), - [anon_sym_true] = ACTIONS(1409), - [anon_sym_false] = ACTIONS(1409), - [anon_sym_PLUS] = ACTIONS(1779), - [anon_sym_DASH] = ACTIONS(1779), - [anon_sym_STAR] = ACTIONS(1411), - [anon_sym_SLASH] = ACTIONS(1223), - [anon_sym_PERCENT] = ACTIONS(1221), - [anon_sym_CARET] = ACTIONS(1781), - [anon_sym_PIPE] = ACTIONS(1223), - [anon_sym_AMP] = ACTIONS(1779), - [anon_sym_LT_LT] = ACTIONS(1221), - [anon_sym_GT_GT] = ACTIONS(1223), - [anon_sym_GT_GT_GT] = ACTIONS(1221), - [anon_sym_EQ_EQ] = ACTIONS(1221), - [anon_sym_BANG_EQ] = ACTIONS(1221), - [anon_sym_GT_EQ] = ACTIONS(1221), - [anon_sym_LT_EQ] = ACTIONS(1221), - [anon_sym_this] = ACTIONS(1413), - [anon_sym_DOT] = ACTIONS(1223), - [anon_sym_scoped] = ACTIONS(1415), - [anon_sym_base] = ACTIONS(1417), - [anon_sym_var] = ACTIONS(1419), - [sym_predefined_type] = ACTIONS(1421), - [anon_sym_unchecked] = ACTIONS(1403), - [anon_sym_yield] = ACTIONS(1389), - [anon_sym_switch] = ACTIONS(1223), - [anon_sym_default] = ACTIONS(1423), - [anon_sym_throw] = ACTIONS(1783), - [anon_sym_when] = ACTIONS(1389), - [anon_sym_await] = ACTIONS(1785), - [anon_sym_DOT_DOT] = ACTIONS(1787), - [anon_sym_AMP_AMP] = ACTIONS(1221), - [anon_sym_PIPE_PIPE] = ACTIONS(1221), - [anon_sym_QMARK_QMARK] = ACTIONS(1221), - [anon_sym_from] = ACTIONS(1431), - [anon_sym_into] = ACTIONS(1389), - [anon_sym_join] = ACTIONS(1389), - [anon_sym_on] = ACTIONS(1389), - [anon_sym_equals] = ACTIONS(1389), - [anon_sym_let] = ACTIONS(1389), - [anon_sym_orderby] = ACTIONS(1389), - [anon_sym_ascending] = ACTIONS(1389), - [anon_sym_descending] = ACTIONS(1389), - [anon_sym_group] = ACTIONS(1389), - [anon_sym_by] = ACTIONS(1389), - [anon_sym_select] = ACTIONS(1389), - [anon_sym_as] = ACTIONS(1223), - [anon_sym_is] = ACTIONS(1223), - [anon_sym_DASH_GT] = ACTIONS(1221), - [anon_sym_stackalloc] = ACTIONS(1433), - [anon_sym_with] = ACTIONS(1223), - [anon_sym_sizeof] = ACTIONS(1435), - [anon_sym_typeof] = ACTIONS(1437), - [anon_sym___makeref] = ACTIONS(1439), - [anon_sym___reftype] = ACTIONS(1441), - [anon_sym___refvalue] = ACTIONS(1443), - [sym_null_literal] = ACTIONS(1445), - [anon_sym_SQUOTE] = ACTIONS(1447), - [sym_integer_literal] = ACTIONS(1445), - [sym_real_literal] = ACTIONS(1449), - [anon_sym_DQUOTE] = ACTIONS(1451), - [sym_verbatim_string_literal] = ACTIONS(1449), - [aux_sym_preproc_if_token1] = ACTIONS(1453), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1455), - [sym_interpolation_verbatim_start] = ACTIONS(1457), - [sym_interpolation_raw_start] = ACTIONS(1459), - [sym_interpolation_close_brace] = ACTIONS(1221), - [sym_raw_string_start] = ACTIONS(1461), - }, [203] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2610), - [sym__name] = STATE(5886), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2319), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(4358), - [sym_non_lvalue_expression] = STATE(3277), - [sym_lvalue_expression] = STATE(3347), - [sym__expression_statement_expression] = STATE(3228), - [sym_assignment_expression] = STATE(3289), - [sym_binary_expression] = STATE(3228), - [sym_postfix_unary_expression] = STATE(3289), - [sym_prefix_unary_expression] = STATE(3289), - [sym__pointer_indirection_expression] = STATE(2609), - [sym_query_expression] = STATE(3228), - [sym_from_clause] = STATE(6150), - [sym_conditional_expression] = STATE(3228), - [sym_conditional_access_expression] = STATE(3228), - [sym_as_expression] = STATE(3228), - [sym_is_expression] = STATE(3228), - [sym_is_pattern_expression] = STATE(3228), - [sym_cast_expression] = STATE(3228), - [sym_checked_expression] = STATE(3228), - [sym_invocation_expression] = STATE(3289), - [sym_switch_expression] = STATE(3228), - [sym_await_expression] = STATE(3289), - [sym_throw_expression] = STATE(3228), - [sym_element_access_expression] = STATE(2609), - [sym_interpolated_string_expression] = STATE(3228), - [sym_member_access_expression] = STATE(2609), - [sym_object_creation_expression] = STATE(3289), - [sym_parenthesized_expression] = STATE(3289), - [sym__parenthesized_lvalue_expression] = STATE(2609), - [sym_lambda_expression] = STATE(3228), - [sym__lambda_expression_init] = STATE(7531), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3228), - [sym_anonymous_method_expression] = STATE(3228), - [sym_anonymous_object_creation_expression] = STATE(3228), - [sym_implicit_array_creation_expression] = STATE(3228), - [sym_implicit_object_creation_expression] = STATE(3228), - [sym_implicit_stackalloc_expression] = STATE(3228), - [sym_initializer_expression] = STATE(3228), - [sym_default_expression] = STATE(3228), - [sym_with_expression] = STATE(3228), - [sym_sizeof_expression] = STATE(3228), - [sym_typeof_expression] = STATE(3228), - [sym_makeref_expression] = STATE(3228), - [sym_ref_expression] = STATE(3228), - [sym_reftype_expression] = STATE(3228), - [sym_refvalue_expression] = STATE(3228), - [sym_stackalloc_expression] = STATE(3228), - [sym_range_expression] = STATE(3228), - [sym_tuple_expression] = STATE(2609), - [sym_literal] = STATE(3228), - [sym_character_literal] = STATE(3278), - [sym_string_literal] = STATE(3278), - [sym_raw_string_literal] = STATE(3278), - [sym_boolean_literal] = STATE(3278), - [sym_identifier] = STATE(2267), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3228), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(5873), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2238), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(4616), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3468), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3102), + [sym_postfix_unary_expression] = STATE(3079), + [sym_prefix_unary_expression] = STATE(3079), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6134), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3102), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3079), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3102), + [sym_member_access_expression] = STATE(2472), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3079), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7309), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(3102), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3102), + [sym_typeof_expression] = STATE(3102), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2472), + [sym_literal] = STATE(3102), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(203), [sym_preproc_endregion] = STATE(203), [sym_preproc_line] = STATE(203), @@ -69675,68 +69561,68 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(203), [sym_preproc_define] = STATE(203), [sym_preproc_undef] = STATE(203), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3396), - [sym__identifier_token] = ACTIONS(25), - [anon_sym_alias] = ACTIONS(29), - [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1153), - [anon_sym_LPAREN] = ACTIONS(1525), - [anon_sym_ref] = ACTIONS(1527), - [anon_sym_LBRACE] = ACTIONS(1159), - [anon_sym_delegate] = ACTIONS(1161), - [anon_sym_async] = ACTIONS(1047), - [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1529), - [anon_sym_LT] = ACTIONS(1223), - [anon_sym_GT] = ACTIONS(1223), - [anon_sym_where] = ACTIONS(29), - [anon_sym_QMARK] = ACTIONS(1223), - [anon_sym_notnull] = ACTIONS(29), - [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1167), - [anon_sym_BANG] = ACTIONS(1531), - [anon_sym_TILDE] = ACTIONS(1533), - [anon_sym_PLUS_PLUS] = ACTIONS(1533), - [anon_sym_DASH_DASH] = ACTIONS(1533), - [anon_sym_true] = ACTIONS(1173), - [anon_sym_false] = ACTIONS(1173), - [anon_sym_PLUS] = ACTIONS(1531), - [anon_sym_DASH] = ACTIONS(1531), - [anon_sym_STAR] = ACTIONS(1535), - [anon_sym_SLASH] = ACTIONS(1223), - [anon_sym_PERCENT] = ACTIONS(1221), - [anon_sym_CARET] = ACTIONS(1533), - [anon_sym_PIPE] = ACTIONS(1223), - [anon_sym_AMP] = ACTIONS(1531), - [anon_sym_LT_LT] = ACTIONS(1221), - [anon_sym_GT_GT] = ACTIONS(1223), - [anon_sym_GT_GT_GT] = ACTIONS(1221), - [anon_sym_EQ_EQ] = ACTIONS(1221), - [anon_sym_BANG_EQ] = ACTIONS(1221), - [anon_sym_GT_EQ] = ACTIONS(1221), - [anon_sym_LT_EQ] = ACTIONS(1221), - [anon_sym_this] = ACTIONS(1177), - [anon_sym_DOT] = ACTIONS(1223), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym_list_pattern_repeat1] = STATE(6811), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), + [sym__identifier_token] = ACTIONS(25), + [anon_sym_alias] = ACTIONS(29), + [anon_sym_global] = ACTIONS(29), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1479), + [anon_sym_COMMA] = ACTIONS(1219), + [anon_sym_RBRACK] = ACTIONS(1219), + [anon_sym_LPAREN] = ACTIONS(659), + [anon_sym_ref] = ACTIONS(663), + [anon_sym_LBRACE] = ACTIONS(1481), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), + [anon_sym_file] = ACTIONS(29), + [anon_sym_new] = ACTIONS(1059), + [anon_sym_LT] = ACTIONS(1221), + [anon_sym_GT] = ACTIONS(1221), + [anon_sym_where] = ACTIONS(29), + [anon_sym_QMARK] = ACTIONS(1221), + [anon_sym_notnull] = ACTIONS(29), + [anon_sym_unmanaged] = ACTIONS(29), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(1483), + [anon_sym_TILDE] = ACTIONS(1485), + [anon_sym_PLUS_PLUS] = ACTIONS(1485), + [anon_sym_DASH_DASH] = ACTIONS(1485), + [anon_sym_true] = ACTIONS(77), + [anon_sym_false] = ACTIONS(77), + [anon_sym_PLUS] = ACTIONS(1483), + [anon_sym_DASH] = ACTIONS(1483), + [anon_sym_STAR] = ACTIONS(683), + [anon_sym_SLASH] = ACTIONS(1221), + [anon_sym_PERCENT] = ACTIONS(1219), + [anon_sym_CARET] = ACTIONS(1485), + [anon_sym_PIPE] = ACTIONS(1221), + [anon_sym_AMP] = ACTIONS(1483), + [anon_sym_LT_LT] = ACTIONS(1219), + [anon_sym_GT_GT] = ACTIONS(1221), + [anon_sym_GT_GT_GT] = ACTIONS(1219), + [anon_sym_EQ_EQ] = ACTIONS(1219), + [anon_sym_BANG_EQ] = ACTIONS(1219), + [anon_sym_GT_EQ] = ACTIONS(1219), + [anon_sym_LT_EQ] = ACTIONS(1219), + [anon_sym_this] = ACTIONS(83), + [anon_sym_DOT] = ACTIONS(1221), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1179), - [anon_sym_EQ_GT] = ACTIONS(1221), + [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1181), - [anon_sym_unchecked] = ACTIONS(1167), + [sym_predefined_type] = ACTIONS(91), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), - [anon_sym_switch] = ACTIONS(1223), - [anon_sym_default] = ACTIONS(1183), - [anon_sym_throw] = ACTIONS(1537), + [anon_sym_switch] = ACTIONS(1221), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(1077), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1539), - [anon_sym_DOT_DOT] = ACTIONS(1541), - [anon_sym_and] = ACTIONS(1223), - [anon_sym_or] = ACTIONS(1223), - [anon_sym_AMP_AMP] = ACTIONS(1221), - [anon_sym_PIPE_PIPE] = ACTIONS(1221), - [anon_sym_QMARK_QMARK] = ACTIONS(1221), + [anon_sym_await] = ACTIONS(1079), + [anon_sym_DOT_DOT] = ACTIONS(711), + [anon_sym_AMP_AMP] = ACTIONS(1219), + [anon_sym_PIPE_PIPE] = ACTIONS(1219), + [anon_sym_QMARK_QMARK] = ACTIONS(1219), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -69749,23 +69635,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(1223), - [anon_sym_is] = ACTIONS(1223), - [anon_sym_DASH_GT] = ACTIONS(1221), - [anon_sym_stackalloc] = ACTIONS(1191), - [anon_sym_with] = ACTIONS(1223), - [anon_sym_sizeof] = ACTIONS(1193), - [anon_sym_typeof] = ACTIONS(1195), - [anon_sym___makeref] = ACTIONS(1197), - [anon_sym___reftype] = ACTIONS(1199), - [anon_sym___refvalue] = ACTIONS(1201), - [sym_null_literal] = ACTIONS(1203), - [anon_sym_SQUOTE] = ACTIONS(1205), - [sym_integer_literal] = ACTIONS(1203), - [sym_real_literal] = ACTIONS(1207), - [anon_sym_DQUOTE] = ACTIONS(1209), - [sym_verbatim_string_literal] = ACTIONS(1207), - [aux_sym_preproc_if_token1] = ACTIONS(1211), + [anon_sym_as] = ACTIONS(1221), + [anon_sym_is] = ACTIONS(1221), + [anon_sym_DASH_GT] = ACTIONS(1219), + [anon_sym_stackalloc] = ACTIONS(127), + [anon_sym_with] = ACTIONS(1221), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_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), @@ -69776,90 +69662,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1213), - [sym_interpolation_verbatim_start] = ACTIONS(1215), - [sym_interpolation_raw_start] = ACTIONS(1217), - [sym_raw_string_start] = ACTIONS(1219), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [sym_interpolation_raw_start] = ACTIONS(155), + [sym_raw_string_start] = ACTIONS(157), }, [204] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2762), - [sym__name] = STATE(5890), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2375), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(4988), - [sym_non_lvalue_expression] = STATE(3438), - [sym_lvalue_expression] = STATE(3526), - [sym__expression_statement_expression] = STATE(3362), - [sym_assignment_expression] = STATE(3449), - [sym_binary_expression] = STATE(3362), - [sym_postfix_unary_expression] = STATE(3449), - [sym_prefix_unary_expression] = STATE(3449), - [sym__pointer_indirection_expression] = STATE(2747), - [sym_query_expression] = STATE(3362), - [sym_from_clause] = STATE(6163), - [sym_conditional_expression] = STATE(3362), - [sym_conditional_access_expression] = STATE(3362), - [sym_as_expression] = STATE(3362), - [sym_is_expression] = STATE(3362), - [sym_is_pattern_expression] = STATE(3362), - [sym_cast_expression] = STATE(3362), - [sym_checked_expression] = STATE(3362), - [sym_invocation_expression] = STATE(3449), - [sym_switch_expression] = STATE(3362), - [sym_await_expression] = STATE(3449), - [sym_throw_expression] = STATE(3362), - [sym_element_access_expression] = STATE(2747), - [sym_interpolated_string_expression] = STATE(3362), - [sym_member_access_expression] = STATE(2747), - [sym_object_creation_expression] = STATE(3449), - [sym_parenthesized_expression] = STATE(3449), - [sym__parenthesized_lvalue_expression] = STATE(2747), - [sym_lambda_expression] = STATE(3362), - [sym__lambda_expression_init] = STATE(7529), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3362), - [sym_anonymous_method_expression] = STATE(3362), - [sym_anonymous_object_creation_expression] = STATE(3362), - [sym_implicit_array_creation_expression] = STATE(3362), - [sym_implicit_object_creation_expression] = STATE(3362), - [sym_implicit_stackalloc_expression] = STATE(3362), - [sym_initializer_expression] = STATE(3362), - [sym_default_expression] = STATE(3362), - [sym_with_expression] = STATE(3362), - [sym_sizeof_expression] = STATE(3362), - [sym_typeof_expression] = STATE(3362), - [sym_makeref_expression] = STATE(3362), - [sym_ref_expression] = STATE(3362), - [sym_reftype_expression] = STATE(3362), - [sym_refvalue_expression] = STATE(3362), - [sym_stackalloc_expression] = STATE(3362), - [sym_range_expression] = STATE(3362), - [sym_tuple_expression] = STATE(2747), - [sym_literal] = STATE(3362), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3362), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2816), + [sym__name] = STATE(5895), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2376), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(4987), + [sym_non_lvalue_expression] = STATE(3495), + [sym_lvalue_expression] = STATE(3512), + [sym__expression_statement_expression] = STATE(3462), + [sym_assignment_expression] = STATE(3497), + [sym_binary_expression] = STATE(3462), + [sym_postfix_unary_expression] = STATE(3497), + [sym_prefix_unary_expression] = STATE(3497), + [sym__pointer_indirection_expression] = STATE(2815), + [sym_query_expression] = STATE(3462), + [sym_from_clause] = STATE(6167), + [sym_conditional_expression] = STATE(3462), + [sym_conditional_access_expression] = STATE(3462), + [sym_as_expression] = STATE(3462), + [sym_is_expression] = STATE(3462), + [sym_is_pattern_expression] = STATE(3462), + [sym_cast_expression] = STATE(3462), + [sym_checked_expression] = STATE(3462), + [sym_invocation_expression] = STATE(3497), + [sym_switch_expression] = STATE(3462), + [sym_await_expression] = STATE(3497), + [sym_throw_expression] = STATE(3462), + [sym_element_access_expression] = STATE(2815), + [sym_interpolated_string_expression] = STATE(3462), + [sym_member_access_expression] = STATE(2815), + [sym_object_creation_expression] = STATE(3497), + [sym_parenthesized_expression] = STATE(3497), + [sym__parenthesized_lvalue_expression] = STATE(2815), + [sym_lambda_expression] = STATE(3462), + [sym__lambda_expression_init] = STATE(7716), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3462), + [sym_anonymous_method_expression] = STATE(3462), + [sym_anonymous_object_creation_expression] = STATE(3462), + [sym_implicit_array_creation_expression] = STATE(3462), + [sym_implicit_object_creation_expression] = STATE(3462), + [sym_implicit_stackalloc_expression] = STATE(3462), + [sym_initializer_expression] = STATE(3462), + [sym_default_expression] = STATE(3462), + [sym_with_expression] = STATE(3462), + [sym_sizeof_expression] = STATE(3462), + [sym_typeof_expression] = STATE(3462), + [sym_makeref_expression] = STATE(3462), + [sym_ref_expression] = STATE(3462), + [sym_reftype_expression] = STATE(3462), + [sym_refvalue_expression] = STATE(3462), + [sym_stackalloc_expression] = STATE(3462), + [sym_range_expression] = STATE(3462), + [sym_tuple_expression] = STATE(2815), + [sym_literal] = STATE(3462), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3462), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(204), [sym_preproc_endregion] = STATE(204), [sym_preproc_line] = STATE(204), @@ -69869,67 +69755,67 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(204), [sym_preproc_define] = STATE(204), [sym_preproc_undef] = STATE(204), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3385), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3367), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1307), - [anon_sym_LPAREN] = ACTIONS(1805), - [anon_sym_ref] = ACTIONS(1807), - [anon_sym_LBRACE] = ACTIONS(1313), - [anon_sym_delegate] = ACTIONS(1315), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1305), + [anon_sym_LPAREN] = ACTIONS(1803), + [anon_sym_ref] = ACTIONS(1805), + [anon_sym_LBRACE] = ACTIONS(1311), + [anon_sym_delegate] = ACTIONS(1313), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1809), - [anon_sym_LT] = ACTIONS(1165), - [anon_sym_GT] = ACTIONS(1165), + [anon_sym_new] = ACTIONS(1807), + [anon_sym_LT] = ACTIONS(1221), + [anon_sym_GT] = ACTIONS(1221), [anon_sym_where] = ACTIONS(29), - [anon_sym_QMARK] = ACTIONS(1165), + [anon_sym_QMARK] = ACTIONS(1221), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1319), - [anon_sym_BANG] = ACTIONS(1811), - [anon_sym_TILDE] = ACTIONS(1813), - [anon_sym_PLUS_PLUS] = ACTIONS(1813), - [anon_sym_DASH_DASH] = ACTIONS(1813), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1811), - [anon_sym_DASH] = ACTIONS(1811), - [anon_sym_STAR] = ACTIONS(1815), - [anon_sym_SLASH] = ACTIONS(1165), - [anon_sym_PERCENT] = ACTIONS(1151), - [anon_sym_CARET] = ACTIONS(1813), - [anon_sym_PIPE] = ACTIONS(1165), - [anon_sym_AMP] = ACTIONS(1811), - [anon_sym_LT_LT] = ACTIONS(1151), - [anon_sym_GT_GT] = ACTIONS(1165), - [anon_sym_GT_GT_GT] = ACTIONS(1151), - [anon_sym_EQ_EQ] = ACTIONS(1151), - [anon_sym_BANG_EQ] = ACTIONS(1151), - [anon_sym_GT_EQ] = ACTIONS(1151), - [anon_sym_LT_EQ] = ACTIONS(1151), - [anon_sym_this] = ACTIONS(1323), - [anon_sym_DOT] = ACTIONS(1165), + [anon_sym_checked] = ACTIONS(1317), + [anon_sym_BANG] = ACTIONS(1809), + [anon_sym_TILDE] = ACTIONS(1811), + [anon_sym_PLUS_PLUS] = ACTIONS(1811), + [anon_sym_DASH_DASH] = ACTIONS(1811), + [anon_sym_true] = ACTIONS(77), + [anon_sym_false] = ACTIONS(77), + [anon_sym_PLUS] = ACTIONS(1809), + [anon_sym_DASH] = ACTIONS(1809), + [anon_sym_STAR] = ACTIONS(1813), + [anon_sym_SLASH] = ACTIONS(1221), + [anon_sym_PERCENT] = ACTIONS(1219), + [anon_sym_CARET] = ACTIONS(1811), + [anon_sym_PIPE] = ACTIONS(1221), + [anon_sym_AMP] = ACTIONS(1809), + [anon_sym_LT_LT] = ACTIONS(1219), + [anon_sym_GT_GT] = ACTIONS(1221), + [anon_sym_GT_GT_GT] = ACTIONS(1219), + [anon_sym_EQ_EQ] = ACTIONS(1219), + [anon_sym_BANG_EQ] = ACTIONS(1219), + [anon_sym_GT_EQ] = ACTIONS(1219), + [anon_sym_LT_EQ] = ACTIONS(1219), + [anon_sym_this] = ACTIONS(1321), + [anon_sym_DOT] = ACTIONS(1221), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1325), + [anon_sym_base] = ACTIONS(1323), [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1319), + [anon_sym_unchecked] = ACTIONS(1317), [anon_sym_yield] = ACTIONS(29), - [anon_sym_switch] = ACTIONS(1165), + [anon_sym_switch] = ACTIONS(1221), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1817), + [anon_sym_throw] = ACTIONS(1815), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1819), - [anon_sym_DOT_DOT] = ACTIONS(1821), - [anon_sym_and] = ACTIONS(1165), - [anon_sym_or] = ACTIONS(1165), - [anon_sym_AMP_AMP] = ACTIONS(1151), - [anon_sym_PIPE_PIPE] = ACTIONS(1151), - [anon_sym_QMARK_QMARK] = ACTIONS(1151), + [anon_sym_await] = ACTIONS(1817), + [anon_sym_DOT_DOT] = ACTIONS(1819), + [anon_sym_and] = ACTIONS(1221), + [anon_sym_or] = ACTIONS(1221), + [anon_sym_AMP_AMP] = ACTIONS(1219), + [anon_sym_PIPE_PIPE] = ACTIONS(1219), + [anon_sym_QMARK_QMARK] = ACTIONS(1219), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -69942,23 +69828,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(1165), - [anon_sym_is] = ACTIONS(1165), - [anon_sym_DASH_GT] = ACTIONS(1151), - [anon_sym_stackalloc] = ACTIONS(1333), - [anon_sym_with] = ACTIONS(1165), + [anon_sym_as] = ACTIONS(1221), + [anon_sym_is] = ACTIONS(1221), + [anon_sym_DASH_GT] = ACTIONS(1219), + [anon_sym_stackalloc] = ACTIONS(1331), + [anon_sym_with] = ACTIONS(1221), [anon_sym_sizeof] = ACTIONS(129), [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(1335), - [anon_sym___reftype] = ACTIONS(1337), - [anon_sym___refvalue] = ACTIONS(1339), + [anon_sym___makeref] = ACTIONS(1333), + [anon_sym___reftype] = ACTIONS(1335), + [anon_sym___refvalue] = ACTIONS(1337), [sym_null_literal] = ACTIONS(139), [anon_sym_SQUOTE] = ACTIONS(141), [sym_integer_literal] = ACTIONS(139), [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1341), + [aux_sym_preproc_if_token1] = ACTIONS(1339), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -69975,84 +69861,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [205] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2610), - [sym__name] = STATE(5872), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2397), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(4756), - [sym_non_lvalue_expression] = STATE(3277), - [sym_lvalue_expression] = STATE(3407), - [sym__expression_statement_expression] = STATE(3228), - [sym_assignment_expression] = STATE(3289), - [sym_binary_expression] = STATE(3228), - [sym_postfix_unary_expression] = STATE(3289), - [sym_prefix_unary_expression] = STATE(3289), - [sym__pointer_indirection_expression] = STATE(2609), - [sym_query_expression] = STATE(3228), - [sym_from_clause] = STATE(6165), - [sym_conditional_expression] = STATE(3228), - [sym_conditional_access_expression] = STATE(3228), - [sym_as_expression] = STATE(3228), - [sym_is_expression] = STATE(3228), - [sym_is_pattern_expression] = STATE(3228), - [sym_cast_expression] = STATE(3228), - [sym_checked_expression] = STATE(3228), - [sym_invocation_expression] = STATE(3289), - [sym_switch_expression] = STATE(3228), - [sym_await_expression] = STATE(3289), - [sym_throw_expression] = STATE(3228), - [sym_element_access_expression] = STATE(2609), - [sym_interpolated_string_expression] = STATE(3228), - [sym_member_access_expression] = STATE(2609), - [sym_object_creation_expression] = STATE(3289), - [sym_parenthesized_expression] = STATE(3289), - [sym__parenthesized_lvalue_expression] = STATE(2609), - [sym_lambda_expression] = STATE(3228), - [sym__lambda_expression_init] = STATE(7478), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3228), - [sym_anonymous_method_expression] = STATE(3228), - [sym_anonymous_object_creation_expression] = STATE(3228), - [sym_implicit_array_creation_expression] = STATE(3228), - [sym_implicit_object_creation_expression] = STATE(3228), - [sym_implicit_stackalloc_expression] = STATE(3228), - [sym_initializer_expression] = STATE(3228), - [sym_default_expression] = STATE(3228), - [sym_with_expression] = STATE(3228), - [sym_sizeof_expression] = STATE(3228), - [sym_typeof_expression] = STATE(3228), - [sym_makeref_expression] = STATE(3228), - [sym_ref_expression] = STATE(3228), - [sym_reftype_expression] = STATE(3228), - [sym_refvalue_expression] = STATE(3228), - [sym_stackalloc_expression] = STATE(3228), - [sym_range_expression] = STATE(3228), - [sym_tuple_expression] = STATE(2609), - [sym_literal] = STATE(3228), - [sym_character_literal] = STATE(3278), - [sym_string_literal] = STATE(3278), - [sym_raw_string_literal] = STATE(3278), - [sym_boolean_literal] = STATE(3278), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3228), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2603), + [sym__name] = STATE(5870), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2379), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(4752), + [sym_non_lvalue_expression] = STATE(3220), + [sym_lvalue_expression] = STATE(3386), + [sym__expression_statement_expression] = STATE(3236), + [sym_assignment_expression] = STATE(3221), + [sym_binary_expression] = STATE(3236), + [sym_postfix_unary_expression] = STATE(3221), + [sym_prefix_unary_expression] = STATE(3221), + [sym__pointer_indirection_expression] = STATE(2602), + [sym_query_expression] = STATE(3236), + [sym_from_clause] = STATE(6166), + [sym_conditional_expression] = STATE(3236), + [sym_conditional_access_expression] = STATE(3236), + [sym_as_expression] = STATE(3236), + [sym_is_expression] = STATE(3236), + [sym_is_pattern_expression] = STATE(3236), + [sym_cast_expression] = STATE(3236), + [sym_checked_expression] = STATE(3236), + [sym_invocation_expression] = STATE(3221), + [sym_switch_expression] = STATE(3236), + [sym_await_expression] = STATE(3221), + [sym_throw_expression] = STATE(3236), + [sym_element_access_expression] = STATE(2602), + [sym_interpolated_string_expression] = STATE(3236), + [sym_member_access_expression] = STATE(2602), + [sym_object_creation_expression] = STATE(3221), + [sym_parenthesized_expression] = STATE(3221), + [sym__parenthesized_lvalue_expression] = STATE(2602), + [sym_lambda_expression] = STATE(3236), + [sym__lambda_expression_init] = STATE(7418), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3236), + [sym_anonymous_method_expression] = STATE(3236), + [sym_anonymous_object_creation_expression] = STATE(3236), + [sym_implicit_array_creation_expression] = STATE(3236), + [sym_implicit_object_creation_expression] = STATE(3236), + [sym_implicit_stackalloc_expression] = STATE(3236), + [sym_initializer_expression] = STATE(3236), + [sym_default_expression] = STATE(3236), + [sym_with_expression] = STATE(3236), + [sym_sizeof_expression] = STATE(3236), + [sym_typeof_expression] = STATE(3236), + [sym_makeref_expression] = STATE(3236), + [sym_ref_expression] = STATE(3236), + [sym_reftype_expression] = STATE(3236), + [sym_refvalue_expression] = STATE(3236), + [sym_stackalloc_expression] = STATE(3236), + [sym_range_expression] = STATE(3236), + [sym_tuple_expression] = STATE(2602), + [sym_literal] = STATE(3236), + [sym_character_literal] = STATE(3272), + [sym_string_literal] = STATE(3272), + [sym_raw_string_literal] = STATE(3272), + [sym_boolean_literal] = STATE(3272), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3236), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(205), [sym_preproc_endregion] = STATE(205), [sym_preproc_line] = STATE(205), @@ -70062,67 +69948,67 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(205), [sym_preproc_define] = STATE(205), [sym_preproc_undef] = STATE(205), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3396), - [sym__identifier_token] = ACTIONS(25), - [anon_sym_alias] = ACTIONS(29), - [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1153), - [anon_sym_LPAREN] = ACTIONS(1823), - [anon_sym_ref] = ACTIONS(1825), - [anon_sym_LBRACE] = ACTIONS(1159), - [anon_sym_delegate] = ACTIONS(1161), - [anon_sym_async] = ACTIONS(1047), - [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1827), - [anon_sym_LT] = ACTIONS(1165), - [anon_sym_GT] = ACTIONS(1165), - [anon_sym_where] = ACTIONS(29), - [anon_sym_QMARK] = ACTIONS(1165), - [anon_sym_notnull] = ACTIONS(29), - [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1167), - [anon_sym_BANG] = ACTIONS(1829), - [anon_sym_TILDE] = ACTIONS(1831), - [anon_sym_PLUS_PLUS] = ACTIONS(1831), - [anon_sym_DASH_DASH] = ACTIONS(1831), - [anon_sym_true] = ACTIONS(1173), - [anon_sym_false] = ACTIONS(1173), - [anon_sym_PLUS] = ACTIONS(1829), - [anon_sym_DASH] = ACTIONS(1829), - [anon_sym_STAR] = ACTIONS(1833), - [anon_sym_SLASH] = ACTIONS(1165), - [anon_sym_PERCENT] = ACTIONS(1151), - [anon_sym_CARET] = ACTIONS(1831), - [anon_sym_PIPE] = ACTIONS(1165), - [anon_sym_AMP] = ACTIONS(1829), - [anon_sym_LT_LT] = ACTIONS(1151), - [anon_sym_GT_GT] = ACTIONS(1165), - [anon_sym_GT_GT_GT] = ACTIONS(1151), - [anon_sym_EQ_EQ] = ACTIONS(1151), - [anon_sym_BANG_EQ] = ACTIONS(1151), - [anon_sym_GT_EQ] = ACTIONS(1151), - [anon_sym_LT_EQ] = ACTIONS(1151), - [anon_sym_this] = ACTIONS(1177), - [anon_sym_DOT] = ACTIONS(1165), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1179), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1181), - [anon_sym_unchecked] = ACTIONS(1167), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3379), + [sym__identifier_token] = ACTIONS(25), + [anon_sym_alias] = ACTIONS(29), + [anon_sym_global] = ACTIONS(29), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1149), + [anon_sym_LPAREN] = ACTIONS(1821), + [anon_sym_ref] = ACTIONS(1823), + [anon_sym_LBRACE] = ACTIONS(1155), + [anon_sym_delegate] = ACTIONS(1157), + [anon_sym_async] = ACTIONS(1045), + [anon_sym_file] = ACTIONS(29), + [anon_sym_new] = ACTIONS(1825), + [anon_sym_LT] = ACTIONS(1221), + [anon_sym_GT] = ACTIONS(1221), + [anon_sym_where] = ACTIONS(29), + [anon_sym_QMARK] = ACTIONS(1221), + [anon_sym_notnull] = ACTIONS(29), + [anon_sym_unmanaged] = ACTIONS(29), + [anon_sym_checked] = ACTIONS(1163), + [anon_sym_BANG] = ACTIONS(1827), + [anon_sym_TILDE] = ACTIONS(1829), + [anon_sym_PLUS_PLUS] = ACTIONS(1829), + [anon_sym_DASH_DASH] = ACTIONS(1829), + [anon_sym_true] = ACTIONS(1169), + [anon_sym_false] = ACTIONS(1169), + [anon_sym_PLUS] = ACTIONS(1827), + [anon_sym_DASH] = ACTIONS(1827), + [anon_sym_STAR] = ACTIONS(1831), + [anon_sym_SLASH] = ACTIONS(1221), + [anon_sym_PERCENT] = ACTIONS(1219), + [anon_sym_CARET] = ACTIONS(1829), + [anon_sym_PIPE] = ACTIONS(1221), + [anon_sym_AMP] = ACTIONS(1827), + [anon_sym_LT_LT] = ACTIONS(1219), + [anon_sym_GT_GT] = ACTIONS(1221), + [anon_sym_GT_GT_GT] = ACTIONS(1219), + [anon_sym_EQ_EQ] = ACTIONS(1219), + [anon_sym_BANG_EQ] = ACTIONS(1219), + [anon_sym_GT_EQ] = ACTIONS(1219), + [anon_sym_LT_EQ] = ACTIONS(1219), + [anon_sym_this] = ACTIONS(1173), + [anon_sym_DOT] = ACTIONS(1221), + [anon_sym_scoped] = ACTIONS(85), + [anon_sym_base] = ACTIONS(1175), + [anon_sym_var] = ACTIONS(89), + [sym_predefined_type] = ACTIONS(1177), + [anon_sym_unchecked] = ACTIONS(1163), [anon_sym_yield] = ACTIONS(29), - [anon_sym_switch] = ACTIONS(1165), - [anon_sym_default] = ACTIONS(1183), - [anon_sym_throw] = ACTIONS(1835), + [anon_sym_switch] = ACTIONS(1221), + [anon_sym_default] = ACTIONS(1179), + [anon_sym_throw] = ACTIONS(1833), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1837), - [anon_sym_DOT_DOT] = ACTIONS(1839), - [anon_sym_and] = ACTIONS(1165), - [anon_sym_or] = ACTIONS(1165), - [anon_sym_AMP_AMP] = ACTIONS(1151), - [anon_sym_PIPE_PIPE] = ACTIONS(1151), - [anon_sym_QMARK_QMARK] = ACTIONS(1151), + [anon_sym_await] = ACTIONS(1835), + [anon_sym_DOT_DOT] = ACTIONS(1837), + [anon_sym_and] = ACTIONS(1221), + [anon_sym_or] = ACTIONS(1221), + [anon_sym_AMP_AMP] = ACTIONS(1219), + [anon_sym_PIPE_PIPE] = ACTIONS(1219), + [anon_sym_QMARK_QMARK] = ACTIONS(1219), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -70135,23 +70021,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(1165), - [anon_sym_is] = ACTIONS(1165), - [anon_sym_DASH_GT] = ACTIONS(1151), - [anon_sym_stackalloc] = ACTIONS(1191), - [anon_sym_with] = ACTIONS(1165), - [anon_sym_sizeof] = ACTIONS(1193), - [anon_sym_typeof] = ACTIONS(1195), - [anon_sym___makeref] = ACTIONS(1197), - [anon_sym___reftype] = ACTIONS(1199), - [anon_sym___refvalue] = ACTIONS(1201), - [sym_null_literal] = ACTIONS(1203), - [anon_sym_SQUOTE] = ACTIONS(1205), - [sym_integer_literal] = ACTIONS(1203), - [sym_real_literal] = ACTIONS(1207), - [anon_sym_DQUOTE] = ACTIONS(1209), - [sym_verbatim_string_literal] = ACTIONS(1207), - [aux_sym_preproc_if_token1] = ACTIONS(1211), + [anon_sym_as] = ACTIONS(1221), + [anon_sym_is] = ACTIONS(1221), + [anon_sym_DASH_GT] = ACTIONS(1219), + [anon_sym_stackalloc] = ACTIONS(1187), + [anon_sym_with] = ACTIONS(1221), + [anon_sym_sizeof] = ACTIONS(1189), + [anon_sym_typeof] = ACTIONS(1191), + [anon_sym___makeref] = ACTIONS(1193), + [anon_sym___reftype] = ACTIONS(1195), + [anon_sym___refvalue] = ACTIONS(1197), + [sym_null_literal] = ACTIONS(1199), + [anon_sym_SQUOTE] = ACTIONS(1201), + [sym_integer_literal] = ACTIONS(1199), + [sym_real_literal] = ACTIONS(1203), + [anon_sym_DQUOTE] = ACTIONS(1205), + [sym_verbatim_string_literal] = ACTIONS(1203), + [aux_sym_preproc_if_token1] = ACTIONS(1207), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -70162,90 +70048,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1213), - [sym_interpolation_verbatim_start] = ACTIONS(1215), - [sym_interpolation_raw_start] = ACTIONS(1217), - [sym_raw_string_start] = ACTIONS(1219), + [sym_interpolation_regular_start] = ACTIONS(1209), + [sym_interpolation_verbatim_start] = ACTIONS(1211), + [sym_interpolation_raw_start] = ACTIONS(1213), + [sym_raw_string_start] = ACTIONS(1215), }, [206] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2420), - [sym__name] = STATE(5875), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2369), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(4050), - [sym_non_lvalue_expression] = STATE(3066), - [sym_lvalue_expression] = STATE(3109), - [sym__expression_statement_expression] = STATE(3006), - [sym_assignment_expression] = STATE(3020), - [sym_binary_expression] = STATE(3006), - [sym_postfix_unary_expression] = STATE(3020), - [sym_prefix_unary_expression] = STATE(3020), - [sym__pointer_indirection_expression] = STATE(2423), - [sym_query_expression] = STATE(3006), - [sym_from_clause] = STATE(6179), - [sym_conditional_expression] = STATE(3006), - [sym_conditional_access_expression] = STATE(3006), - [sym_as_expression] = STATE(3006), - [sym_is_expression] = STATE(3006), - [sym_is_pattern_expression] = STATE(3006), - [sym_cast_expression] = STATE(3006), - [sym_checked_expression] = STATE(3006), - [sym_invocation_expression] = STATE(3020), - [sym_switch_expression] = STATE(3006), - [sym_await_expression] = STATE(3020), - [sym_throw_expression] = STATE(3006), - [sym_element_access_expression] = STATE(2423), - [sym_interpolated_string_expression] = STATE(3006), - [sym_member_access_expression] = STATE(2423), - [sym_object_creation_expression] = STATE(3020), - [sym_parenthesized_expression] = STATE(3020), - [sym__parenthesized_lvalue_expression] = STATE(2423), - [sym_lambda_expression] = STATE(3006), - [sym__lambda_expression_init] = STATE(7522), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3006), - [sym_anonymous_method_expression] = STATE(3006), - [sym_anonymous_object_creation_expression] = STATE(3006), - [sym_implicit_array_creation_expression] = STATE(3006), - [sym_implicit_object_creation_expression] = STATE(3006), - [sym_implicit_stackalloc_expression] = STATE(3006), - [sym_initializer_expression] = STATE(3006), - [sym_default_expression] = STATE(3006), - [sym_with_expression] = STATE(3006), - [sym_sizeof_expression] = STATE(3006), - [sym_typeof_expression] = STATE(3006), - [sym_makeref_expression] = STATE(3006), - [sym_ref_expression] = STATE(3006), - [sym_reftype_expression] = STATE(3006), - [sym_refvalue_expression] = STATE(3006), - [sym_stackalloc_expression] = STATE(3006), - [sym_range_expression] = STATE(3006), - [sym_tuple_expression] = STATE(2423), - [sym_literal] = STATE(3006), - [sym_character_literal] = STATE(3011), - [sym_string_literal] = STATE(3011), - [sym_raw_string_literal] = STATE(3011), - [sym_boolean_literal] = STATE(3011), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3006), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2603), + [sym__name] = STATE(5870), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2379), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(4546), + [sym_non_lvalue_expression] = STATE(3220), + [sym_lvalue_expression] = STATE(3386), + [sym__expression_statement_expression] = STATE(3236), + [sym_assignment_expression] = STATE(3221), + [sym_binary_expression] = STATE(3236), + [sym_postfix_unary_expression] = STATE(3221), + [sym_prefix_unary_expression] = STATE(3221), + [sym__pointer_indirection_expression] = STATE(2602), + [sym_query_expression] = STATE(3236), + [sym_from_clause] = STATE(6166), + [sym_conditional_expression] = STATE(3236), + [sym_conditional_access_expression] = STATE(3236), + [sym_as_expression] = STATE(3236), + [sym_is_expression] = STATE(3236), + [sym_is_pattern_expression] = STATE(3236), + [sym_cast_expression] = STATE(3236), + [sym_checked_expression] = STATE(3236), + [sym_invocation_expression] = STATE(3221), + [sym_switch_expression] = STATE(3236), + [sym_await_expression] = STATE(3221), + [sym_throw_expression] = STATE(3236), + [sym_element_access_expression] = STATE(2602), + [sym_interpolated_string_expression] = STATE(3236), + [sym_member_access_expression] = STATE(2602), + [sym_object_creation_expression] = STATE(3221), + [sym_parenthesized_expression] = STATE(3221), + [sym__parenthesized_lvalue_expression] = STATE(2602), + [sym_lambda_expression] = STATE(3236), + [sym__lambda_expression_init] = STATE(7418), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3236), + [sym_anonymous_method_expression] = STATE(3236), + [sym_anonymous_object_creation_expression] = STATE(3236), + [sym_implicit_array_creation_expression] = STATE(3236), + [sym_implicit_object_creation_expression] = STATE(3236), + [sym_implicit_stackalloc_expression] = STATE(3236), + [sym_initializer_expression] = STATE(3236), + [sym_default_expression] = STATE(3236), + [sym_with_expression] = STATE(3236), + [sym_sizeof_expression] = STATE(3236), + [sym_typeof_expression] = STATE(3236), + [sym_makeref_expression] = STATE(3236), + [sym_ref_expression] = STATE(3236), + [sym_reftype_expression] = STATE(3236), + [sym_refvalue_expression] = STATE(3236), + [sym_stackalloc_expression] = STATE(3236), + [sym_range_expression] = STATE(3236), + [sym_tuple_expression] = STATE(2602), + [sym_literal] = STATE(3236), + [sym_character_literal] = STATE(3272), + [sym_string_literal] = STATE(3272), + [sym_raw_string_literal] = STATE(3272), + [sym_boolean_literal] = STATE(3272), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3236), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(206), [sym_preproc_endregion] = STATE(206), [sym_preproc_line] = STATE(206), @@ -70255,67 +70141,67 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(206), [sym_preproc_define] = STATE(206), [sym_preproc_undef] = STATE(206), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3440), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3379), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1241), - [anon_sym_LPAREN] = ACTIONS(1841), - [anon_sym_ref] = ACTIONS(1843), - [anon_sym_LBRACE] = ACTIONS(1247), - [anon_sym_delegate] = ACTIONS(1249), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1149), + [anon_sym_LPAREN] = ACTIONS(1821), + [anon_sym_ref] = ACTIONS(1823), + [anon_sym_LBRACE] = ACTIONS(1155), + [anon_sym_delegate] = ACTIONS(1157), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1845), - [anon_sym_LT] = ACTIONS(1223), - [anon_sym_GT] = ACTIONS(1223), + [anon_sym_new] = ACTIONS(1825), + [anon_sym_LT] = ACTIONS(1161), + [anon_sym_GT] = ACTIONS(1161), [anon_sym_where] = ACTIONS(29), - [anon_sym_QMARK] = ACTIONS(1223), + [anon_sym_QMARK] = ACTIONS(1161), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1253), - [anon_sym_BANG] = ACTIONS(1847), - [anon_sym_TILDE] = ACTIONS(1849), - [anon_sym_PLUS_PLUS] = ACTIONS(1849), - [anon_sym_DASH_DASH] = ACTIONS(1849), - [anon_sym_true] = ACTIONS(1259), - [anon_sym_false] = ACTIONS(1259), - [anon_sym_PLUS] = ACTIONS(1847), - [anon_sym_DASH] = ACTIONS(1847), - [anon_sym_STAR] = ACTIONS(1851), - [anon_sym_SLASH] = ACTIONS(1223), - [anon_sym_PERCENT] = ACTIONS(1221), - [anon_sym_CARET] = ACTIONS(1849), - [anon_sym_PIPE] = ACTIONS(1223), - [anon_sym_AMP] = ACTIONS(1847), - [anon_sym_LT_LT] = ACTIONS(1221), - [anon_sym_GT_GT] = ACTIONS(1223), - [anon_sym_GT_GT_GT] = ACTIONS(1221), - [anon_sym_EQ_EQ] = ACTIONS(1221), - [anon_sym_BANG_EQ] = ACTIONS(1221), - [anon_sym_GT_EQ] = ACTIONS(1221), - [anon_sym_LT_EQ] = ACTIONS(1221), - [anon_sym_this] = ACTIONS(1263), - [anon_sym_DOT] = ACTIONS(1223), + [anon_sym_checked] = ACTIONS(1163), + [anon_sym_BANG] = ACTIONS(1827), + [anon_sym_TILDE] = ACTIONS(1829), + [anon_sym_PLUS_PLUS] = ACTIONS(1829), + [anon_sym_DASH_DASH] = ACTIONS(1829), + [anon_sym_true] = ACTIONS(1169), + [anon_sym_false] = ACTIONS(1169), + [anon_sym_PLUS] = ACTIONS(1827), + [anon_sym_DASH] = ACTIONS(1827), + [anon_sym_STAR] = ACTIONS(1831), + [anon_sym_SLASH] = ACTIONS(1161), + [anon_sym_PERCENT] = ACTIONS(1147), + [anon_sym_CARET] = ACTIONS(1829), + [anon_sym_PIPE] = ACTIONS(1161), + [anon_sym_AMP] = ACTIONS(1827), + [anon_sym_LT_LT] = ACTIONS(1147), + [anon_sym_GT_GT] = ACTIONS(1161), + [anon_sym_GT_GT_GT] = ACTIONS(1147), + [anon_sym_EQ_EQ] = ACTIONS(1147), + [anon_sym_BANG_EQ] = ACTIONS(1147), + [anon_sym_GT_EQ] = ACTIONS(1147), + [anon_sym_LT_EQ] = ACTIONS(1147), + [anon_sym_this] = ACTIONS(1173), + [anon_sym_DOT] = ACTIONS(1161), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1265), + [anon_sym_base] = ACTIONS(1175), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1267), - [anon_sym_unchecked] = ACTIONS(1253), + [sym_predefined_type] = ACTIONS(1177), + [anon_sym_unchecked] = ACTIONS(1163), [anon_sym_yield] = ACTIONS(29), - [anon_sym_switch] = ACTIONS(1223), - [anon_sym_default] = ACTIONS(1269), - [anon_sym_throw] = ACTIONS(1853), + [anon_sym_switch] = ACTIONS(1161), + [anon_sym_default] = ACTIONS(1179), + [anon_sym_throw] = ACTIONS(1833), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1855), - [anon_sym_DOT_DOT] = ACTIONS(1857), - [anon_sym_and] = ACTIONS(1223), - [anon_sym_or] = ACTIONS(1223), - [anon_sym_AMP_AMP] = ACTIONS(1221), - [anon_sym_PIPE_PIPE] = ACTIONS(1221), - [anon_sym_QMARK_QMARK] = ACTIONS(1221), + [anon_sym_await] = ACTIONS(1835), + [anon_sym_DOT_DOT] = ACTIONS(1837), + [anon_sym_and] = ACTIONS(1161), + [anon_sym_or] = ACTIONS(1161), + [anon_sym_AMP_AMP] = ACTIONS(1147), + [anon_sym_PIPE_PIPE] = ACTIONS(1147), + [anon_sym_QMARK_QMARK] = ACTIONS(1147), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -70328,23 +70214,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(1223), - [anon_sym_is] = ACTIONS(1223), - [anon_sym_DASH_GT] = ACTIONS(1221), - [anon_sym_stackalloc] = ACTIONS(1277), - [anon_sym_with] = ACTIONS(1223), - [anon_sym_sizeof] = ACTIONS(1279), - [anon_sym_typeof] = ACTIONS(1281), - [anon_sym___makeref] = ACTIONS(1283), - [anon_sym___reftype] = ACTIONS(1285), - [anon_sym___refvalue] = ACTIONS(1287), - [sym_null_literal] = ACTIONS(1289), - [anon_sym_SQUOTE] = ACTIONS(1291), - [sym_integer_literal] = ACTIONS(1289), - [sym_real_literal] = ACTIONS(1293), - [anon_sym_DQUOTE] = ACTIONS(1295), - [sym_verbatim_string_literal] = ACTIONS(1293), - [aux_sym_preproc_if_token1] = ACTIONS(1297), + [anon_sym_as] = ACTIONS(1161), + [anon_sym_is] = ACTIONS(1161), + [anon_sym_DASH_GT] = ACTIONS(1147), + [anon_sym_stackalloc] = ACTIONS(1187), + [anon_sym_with] = ACTIONS(1161), + [anon_sym_sizeof] = ACTIONS(1189), + [anon_sym_typeof] = ACTIONS(1191), + [anon_sym___makeref] = ACTIONS(1193), + [anon_sym___reftype] = ACTIONS(1195), + [anon_sym___refvalue] = ACTIONS(1197), + [sym_null_literal] = ACTIONS(1199), + [anon_sym_SQUOTE] = ACTIONS(1201), + [sym_integer_literal] = ACTIONS(1199), + [sym_real_literal] = ACTIONS(1203), + [anon_sym_DQUOTE] = ACTIONS(1205), + [sym_verbatim_string_literal] = ACTIONS(1203), + [aux_sym_preproc_if_token1] = ACTIONS(1207), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -70355,90 +70241,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1299), - [sym_interpolation_verbatim_start] = ACTIONS(1301), - [sym_interpolation_raw_start] = ACTIONS(1303), - [sym_raw_string_start] = ACTIONS(1305), + [sym_interpolation_regular_start] = ACTIONS(1209), + [sym_interpolation_verbatim_start] = ACTIONS(1211), + [sym_interpolation_raw_start] = ACTIONS(1213), + [sym_raw_string_start] = ACTIONS(1215), }, [207] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2610), - [sym__name] = STATE(5896), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2384), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(4738), - [sym_non_lvalue_expression] = STATE(3277), - [sym_lvalue_expression] = STATE(3392), - [sym__expression_statement_expression] = STATE(3228), - [sym_assignment_expression] = STATE(3289), - [sym_binary_expression] = STATE(3228), - [sym_postfix_unary_expression] = STATE(3289), - [sym_prefix_unary_expression] = STATE(3289), - [sym__pointer_indirection_expression] = STATE(2609), - [sym_query_expression] = STATE(3228), - [sym_from_clause] = STATE(6173), - [sym_conditional_expression] = STATE(3228), - [sym_conditional_access_expression] = STATE(3228), - [sym_as_expression] = STATE(3228), - [sym_is_expression] = STATE(3228), - [sym_is_pattern_expression] = STATE(3228), - [sym_cast_expression] = STATE(3228), - [sym_checked_expression] = STATE(3228), - [sym_invocation_expression] = STATE(3289), - [sym_switch_expression] = STATE(3228), - [sym_await_expression] = STATE(3289), - [sym_throw_expression] = STATE(3228), - [sym_element_access_expression] = STATE(2609), - [sym_interpolated_string_expression] = STATE(3228), - [sym_member_access_expression] = STATE(2609), - [sym_object_creation_expression] = STATE(3289), - [sym_parenthesized_expression] = STATE(3289), - [sym__parenthesized_lvalue_expression] = STATE(2609), - [sym_lambda_expression] = STATE(3228), - [sym__lambda_expression_init] = STATE(7334), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3228), - [sym_anonymous_method_expression] = STATE(3228), - [sym_anonymous_object_creation_expression] = STATE(3228), - [sym_implicit_array_creation_expression] = STATE(3228), - [sym_implicit_object_creation_expression] = STATE(3228), - [sym_implicit_stackalloc_expression] = STATE(3228), - [sym_initializer_expression] = STATE(3228), - [sym_default_expression] = STATE(3228), - [sym_with_expression] = STATE(3228), - [sym_sizeof_expression] = STATE(3228), - [sym_typeof_expression] = STATE(3228), - [sym_makeref_expression] = STATE(3228), - [sym_ref_expression] = STATE(3228), - [sym_reftype_expression] = STATE(3228), - [sym_refvalue_expression] = STATE(3228), - [sym_stackalloc_expression] = STATE(3228), - [sym_range_expression] = STATE(3228), - [sym_tuple_expression] = STATE(2609), - [sym_literal] = STATE(3228), - [sym_character_literal] = STATE(3278), - [sym_string_literal] = STATE(3278), - [sym_raw_string_literal] = STATE(3278), - [sym_boolean_literal] = STATE(3278), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3228), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2816), + [sym__name] = STATE(5893), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2361), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(4983), + [sym_non_lvalue_expression] = STATE(3495), + [sym_lvalue_expression] = STATE(3509), + [sym__expression_statement_expression] = STATE(3462), + [sym_assignment_expression] = STATE(3497), + [sym_binary_expression] = STATE(3462), + [sym_postfix_unary_expression] = STATE(3497), + [sym_prefix_unary_expression] = STATE(3497), + [sym__pointer_indirection_expression] = STATE(2815), + [sym_query_expression] = STATE(3462), + [sym_from_clause] = STATE(6150), + [sym_conditional_expression] = STATE(3462), + [sym_conditional_access_expression] = STATE(3462), + [sym_as_expression] = STATE(3462), + [sym_is_expression] = STATE(3462), + [sym_is_pattern_expression] = STATE(3462), + [sym_cast_expression] = STATE(3462), + [sym_checked_expression] = STATE(3462), + [sym_invocation_expression] = STATE(3497), + [sym_switch_expression] = STATE(3462), + [sym_await_expression] = STATE(3497), + [sym_throw_expression] = STATE(3462), + [sym_element_access_expression] = STATE(2815), + [sym_interpolated_string_expression] = STATE(3462), + [sym_member_access_expression] = STATE(2815), + [sym_object_creation_expression] = STATE(3497), + [sym_parenthesized_expression] = STATE(3497), + [sym__parenthesized_lvalue_expression] = STATE(2815), + [sym_lambda_expression] = STATE(3462), + [sym__lambda_expression_init] = STATE(7428), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3462), + [sym_anonymous_method_expression] = STATE(3462), + [sym_anonymous_object_creation_expression] = STATE(3462), + [sym_implicit_array_creation_expression] = STATE(3462), + [sym_implicit_object_creation_expression] = STATE(3462), + [sym_implicit_stackalloc_expression] = STATE(3462), + [sym_initializer_expression] = STATE(3462), + [sym_default_expression] = STATE(3462), + [sym_with_expression] = STATE(3462), + [sym_sizeof_expression] = STATE(3462), + [sym_typeof_expression] = STATE(3462), + [sym_makeref_expression] = STATE(3462), + [sym_ref_expression] = STATE(3462), + [sym_reftype_expression] = STATE(3462), + [sym_refvalue_expression] = STATE(3462), + [sym_stackalloc_expression] = STATE(3462), + [sym_range_expression] = STATE(3462), + [sym_tuple_expression] = STATE(2815), + [sym_literal] = STATE(3462), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3462), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(207), [sym_preproc_endregion] = STATE(207), [sym_preproc_line] = STATE(207), @@ -70448,67 +70334,67 @@ 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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3396), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3367), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1153), - [anon_sym_LPAREN] = ACTIONS(1859), - [anon_sym_ref] = ACTIONS(1861), - [anon_sym_LBRACE] = ACTIONS(1159), - [anon_sym_delegate] = ACTIONS(1161), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1305), + [anon_sym_LPAREN] = ACTIONS(1839), + [anon_sym_ref] = ACTIONS(1841), + [anon_sym_LBRACE] = ACTIONS(1311), + [anon_sym_delegate] = ACTIONS(1313), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1863), - [anon_sym_LT] = ACTIONS(1165), - [anon_sym_GT] = ACTIONS(1165), + [anon_sym_new] = ACTIONS(1843), + [anon_sym_LT] = ACTIONS(1221), + [anon_sym_GT] = ACTIONS(1221), [anon_sym_where] = ACTIONS(29), - [anon_sym_QMARK] = ACTIONS(1165), + [anon_sym_QMARK] = ACTIONS(1221), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1167), - [anon_sym_BANG] = ACTIONS(1865), - [anon_sym_TILDE] = ACTIONS(1867), - [anon_sym_PLUS_PLUS] = ACTIONS(1867), - [anon_sym_DASH_DASH] = ACTIONS(1867), - [anon_sym_true] = ACTIONS(1173), - [anon_sym_false] = ACTIONS(1173), - [anon_sym_PLUS] = ACTIONS(1865), - [anon_sym_DASH] = ACTIONS(1865), - [anon_sym_STAR] = ACTIONS(1869), - [anon_sym_SLASH] = ACTIONS(1165), - [anon_sym_PERCENT] = ACTIONS(1151), - [anon_sym_CARET] = ACTIONS(1867), - [anon_sym_PIPE] = ACTIONS(1165), - [anon_sym_AMP] = ACTIONS(1865), - [anon_sym_LT_LT] = ACTIONS(1151), - [anon_sym_GT_GT] = ACTIONS(1165), - [anon_sym_GT_GT_GT] = ACTIONS(1151), - [anon_sym_EQ_EQ] = ACTIONS(1151), - [anon_sym_BANG_EQ] = ACTIONS(1151), - [anon_sym_GT_EQ] = ACTIONS(1151), - [anon_sym_LT_EQ] = ACTIONS(1151), - [anon_sym_this] = ACTIONS(1177), - [anon_sym_DOT] = ACTIONS(1165), + [anon_sym_checked] = ACTIONS(1317), + [anon_sym_BANG] = ACTIONS(1845), + [anon_sym_TILDE] = ACTIONS(1847), + [anon_sym_PLUS_PLUS] = ACTIONS(1847), + [anon_sym_DASH_DASH] = ACTIONS(1847), + [anon_sym_true] = ACTIONS(77), + [anon_sym_false] = ACTIONS(77), + [anon_sym_PLUS] = ACTIONS(1845), + [anon_sym_DASH] = ACTIONS(1845), + [anon_sym_STAR] = ACTIONS(1849), + [anon_sym_SLASH] = ACTIONS(1221), + [anon_sym_PERCENT] = ACTIONS(1219), + [anon_sym_CARET] = ACTIONS(1847), + [anon_sym_PIPE] = ACTIONS(1221), + [anon_sym_AMP] = ACTIONS(1845), + [anon_sym_LT_LT] = ACTIONS(1219), + [anon_sym_GT_GT] = ACTIONS(1221), + [anon_sym_GT_GT_GT] = ACTIONS(1219), + [anon_sym_EQ_EQ] = ACTIONS(1219), + [anon_sym_BANG_EQ] = ACTIONS(1219), + [anon_sym_GT_EQ] = ACTIONS(1219), + [anon_sym_LT_EQ] = ACTIONS(1219), + [anon_sym_this] = ACTIONS(1321), + [anon_sym_DOT] = ACTIONS(1221), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1179), + [anon_sym_base] = ACTIONS(1323), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1181), - [anon_sym_unchecked] = ACTIONS(1167), + [sym_predefined_type] = ACTIONS(91), + [anon_sym_unchecked] = ACTIONS(1317), [anon_sym_yield] = ACTIONS(29), - [anon_sym_switch] = ACTIONS(1165), - [anon_sym_default] = ACTIONS(1183), - [anon_sym_throw] = ACTIONS(1871), + [anon_sym_switch] = ACTIONS(1221), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(1851), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1873), - [anon_sym_DOT_DOT] = ACTIONS(1875), - [anon_sym_and] = ACTIONS(1165), - [anon_sym_or] = ACTIONS(1165), - [anon_sym_AMP_AMP] = ACTIONS(1151), - [anon_sym_PIPE_PIPE] = ACTIONS(1151), - [anon_sym_QMARK_QMARK] = ACTIONS(1151), + [anon_sym_await] = ACTIONS(1853), + [anon_sym_DOT_DOT] = ACTIONS(1855), + [anon_sym_and] = ACTIONS(1221), + [anon_sym_or] = ACTIONS(1221), + [anon_sym_AMP_AMP] = ACTIONS(1219), + [anon_sym_PIPE_PIPE] = ACTIONS(1219), + [anon_sym_QMARK_QMARK] = ACTIONS(1219), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -70521,23 +70407,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(1165), - [anon_sym_is] = ACTIONS(1165), - [anon_sym_DASH_GT] = ACTIONS(1151), - [anon_sym_stackalloc] = ACTIONS(1191), - [anon_sym_with] = ACTIONS(1165), - [anon_sym_sizeof] = ACTIONS(1193), - [anon_sym_typeof] = ACTIONS(1195), - [anon_sym___makeref] = ACTIONS(1197), - [anon_sym___reftype] = ACTIONS(1199), - [anon_sym___refvalue] = ACTIONS(1201), - [sym_null_literal] = ACTIONS(1203), - [anon_sym_SQUOTE] = ACTIONS(1205), - [sym_integer_literal] = ACTIONS(1203), - [sym_real_literal] = ACTIONS(1207), - [anon_sym_DQUOTE] = ACTIONS(1209), - [sym_verbatim_string_literal] = ACTIONS(1207), - [aux_sym_preproc_if_token1] = ACTIONS(1211), + [anon_sym_as] = ACTIONS(1221), + [anon_sym_is] = ACTIONS(1221), + [anon_sym_DASH_GT] = ACTIONS(1219), + [anon_sym_stackalloc] = ACTIONS(1331), + [anon_sym_with] = ACTIONS(1221), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(1333), + [anon_sym___reftype] = ACTIONS(1335), + [anon_sym___refvalue] = ACTIONS(1337), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_literal] = ACTIONS(143), + [anon_sym_DQUOTE] = ACTIONS(145), + [sym_verbatim_string_literal] = ACTIONS(143), + [aux_sym_preproc_if_token1] = ACTIONS(1339), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -70548,90 +70434,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1213), - [sym_interpolation_verbatim_start] = ACTIONS(1215), - [sym_interpolation_raw_start] = ACTIONS(1217), - [sym_raw_string_start] = ACTIONS(1219), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [sym_interpolation_raw_start] = ACTIONS(155), + [sym_raw_string_start] = ACTIONS(157), }, [208] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2610), - [sym__name] = STATE(5896), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2384), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(4549), - [sym_non_lvalue_expression] = STATE(3277), - [sym_lvalue_expression] = STATE(3392), - [sym__expression_statement_expression] = STATE(3228), - [sym_assignment_expression] = STATE(3289), - [sym_binary_expression] = STATE(3228), - [sym_postfix_unary_expression] = STATE(3289), - [sym_prefix_unary_expression] = STATE(3289), - [sym__pointer_indirection_expression] = STATE(2609), - [sym_query_expression] = STATE(3228), - [sym_from_clause] = STATE(6173), - [sym_conditional_expression] = STATE(3228), - [sym_conditional_access_expression] = STATE(3228), - [sym_as_expression] = STATE(3228), - [sym_is_expression] = STATE(3228), - [sym_is_pattern_expression] = STATE(3228), - [sym_cast_expression] = STATE(3228), - [sym_checked_expression] = STATE(3228), - [sym_invocation_expression] = STATE(3289), - [sym_switch_expression] = STATE(3228), - [sym_await_expression] = STATE(3289), - [sym_throw_expression] = STATE(3228), - [sym_element_access_expression] = STATE(2609), - [sym_interpolated_string_expression] = STATE(3228), - [sym_member_access_expression] = STATE(2609), - [sym_object_creation_expression] = STATE(3289), - [sym_parenthesized_expression] = STATE(3289), - [sym__parenthesized_lvalue_expression] = STATE(2609), - [sym_lambda_expression] = STATE(3228), - [sym__lambda_expression_init] = STATE(7334), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3228), - [sym_anonymous_method_expression] = STATE(3228), - [sym_anonymous_object_creation_expression] = STATE(3228), - [sym_implicit_array_creation_expression] = STATE(3228), - [sym_implicit_object_creation_expression] = STATE(3228), - [sym_implicit_stackalloc_expression] = STATE(3228), - [sym_initializer_expression] = STATE(3228), - [sym_default_expression] = STATE(3228), - [sym_with_expression] = STATE(3228), - [sym_sizeof_expression] = STATE(3228), - [sym_typeof_expression] = STATE(3228), - [sym_makeref_expression] = STATE(3228), - [sym_ref_expression] = STATE(3228), - [sym_reftype_expression] = STATE(3228), - [sym_refvalue_expression] = STATE(3228), - [sym_stackalloc_expression] = STATE(3228), - [sym_range_expression] = STATE(3228), - [sym_tuple_expression] = STATE(2609), - [sym_literal] = STATE(3228), - [sym_character_literal] = STATE(3278), - [sym_string_literal] = STATE(3278), - [sym_raw_string_literal] = STATE(3278), - [sym_boolean_literal] = STATE(3278), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3228), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2816), + [sym__name] = STATE(5893), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2361), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(4866), + [sym_non_lvalue_expression] = STATE(3495), + [sym_lvalue_expression] = STATE(3509), + [sym__expression_statement_expression] = STATE(3462), + [sym_assignment_expression] = STATE(3497), + [sym_binary_expression] = STATE(3462), + [sym_postfix_unary_expression] = STATE(3497), + [sym_prefix_unary_expression] = STATE(3497), + [sym__pointer_indirection_expression] = STATE(2815), + [sym_query_expression] = STATE(3462), + [sym_from_clause] = STATE(6150), + [sym_conditional_expression] = STATE(3462), + [sym_conditional_access_expression] = STATE(3462), + [sym_as_expression] = STATE(3462), + [sym_is_expression] = STATE(3462), + [sym_is_pattern_expression] = STATE(3462), + [sym_cast_expression] = STATE(3462), + [sym_checked_expression] = STATE(3462), + [sym_invocation_expression] = STATE(3497), + [sym_switch_expression] = STATE(3462), + [sym_await_expression] = STATE(3497), + [sym_throw_expression] = STATE(3462), + [sym_element_access_expression] = STATE(2815), + [sym_interpolated_string_expression] = STATE(3462), + [sym_member_access_expression] = STATE(2815), + [sym_object_creation_expression] = STATE(3497), + [sym_parenthesized_expression] = STATE(3497), + [sym__parenthesized_lvalue_expression] = STATE(2815), + [sym_lambda_expression] = STATE(3462), + [sym__lambda_expression_init] = STATE(7428), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3462), + [sym_anonymous_method_expression] = STATE(3462), + [sym_anonymous_object_creation_expression] = STATE(3462), + [sym_implicit_array_creation_expression] = STATE(3462), + [sym_implicit_object_creation_expression] = STATE(3462), + [sym_implicit_stackalloc_expression] = STATE(3462), + [sym_initializer_expression] = STATE(3462), + [sym_default_expression] = STATE(3462), + [sym_with_expression] = STATE(3462), + [sym_sizeof_expression] = STATE(3462), + [sym_typeof_expression] = STATE(3462), + [sym_makeref_expression] = STATE(3462), + [sym_ref_expression] = STATE(3462), + [sym_reftype_expression] = STATE(3462), + [sym_refvalue_expression] = STATE(3462), + [sym_stackalloc_expression] = STATE(3462), + [sym_range_expression] = STATE(3462), + [sym_tuple_expression] = STATE(2815), + [sym_literal] = STATE(3462), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3462), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(208), [sym_preproc_endregion] = STATE(208), [sym_preproc_line] = STATE(208), @@ -70641,67 +70527,67 @@ 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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3396), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3367), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1153), - [anon_sym_LPAREN] = ACTIONS(1859), - [anon_sym_ref] = ACTIONS(1861), - [anon_sym_LBRACE] = ACTIONS(1159), - [anon_sym_delegate] = ACTIONS(1161), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1305), + [anon_sym_LPAREN] = ACTIONS(1839), + [anon_sym_ref] = ACTIONS(1841), + [anon_sym_LBRACE] = ACTIONS(1311), + [anon_sym_delegate] = ACTIONS(1313), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1863), - [anon_sym_LT] = ACTIONS(1223), - [anon_sym_GT] = ACTIONS(1223), + [anon_sym_new] = ACTIONS(1843), + [anon_sym_LT] = ACTIONS(1161), + [anon_sym_GT] = ACTIONS(1161), [anon_sym_where] = ACTIONS(29), - [anon_sym_QMARK] = ACTIONS(1223), + [anon_sym_QMARK] = ACTIONS(1161), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1167), - [anon_sym_BANG] = ACTIONS(1865), - [anon_sym_TILDE] = ACTIONS(1867), - [anon_sym_PLUS_PLUS] = ACTIONS(1867), - [anon_sym_DASH_DASH] = ACTIONS(1867), - [anon_sym_true] = ACTIONS(1173), - [anon_sym_false] = ACTIONS(1173), - [anon_sym_PLUS] = ACTIONS(1865), - [anon_sym_DASH] = ACTIONS(1865), - [anon_sym_STAR] = ACTIONS(1869), - [anon_sym_SLASH] = ACTIONS(1223), - [anon_sym_PERCENT] = ACTIONS(1221), - [anon_sym_CARET] = ACTIONS(1867), - [anon_sym_PIPE] = ACTIONS(1223), - [anon_sym_AMP] = ACTIONS(1865), - [anon_sym_LT_LT] = ACTIONS(1221), - [anon_sym_GT_GT] = ACTIONS(1223), - [anon_sym_GT_GT_GT] = ACTIONS(1221), - [anon_sym_EQ_EQ] = ACTIONS(1221), - [anon_sym_BANG_EQ] = ACTIONS(1221), - [anon_sym_GT_EQ] = ACTIONS(1221), - [anon_sym_LT_EQ] = ACTIONS(1221), - [anon_sym_this] = ACTIONS(1177), - [anon_sym_DOT] = ACTIONS(1223), + [anon_sym_checked] = ACTIONS(1317), + [anon_sym_BANG] = ACTIONS(1845), + [anon_sym_TILDE] = ACTIONS(1847), + [anon_sym_PLUS_PLUS] = ACTIONS(1847), + [anon_sym_DASH_DASH] = ACTIONS(1847), + [anon_sym_true] = ACTIONS(77), + [anon_sym_false] = ACTIONS(77), + [anon_sym_PLUS] = ACTIONS(1845), + [anon_sym_DASH] = ACTIONS(1845), + [anon_sym_STAR] = ACTIONS(1849), + [anon_sym_SLASH] = ACTIONS(1161), + [anon_sym_PERCENT] = ACTIONS(1147), + [anon_sym_CARET] = ACTIONS(1847), + [anon_sym_PIPE] = ACTIONS(1161), + [anon_sym_AMP] = ACTIONS(1845), + [anon_sym_LT_LT] = ACTIONS(1147), + [anon_sym_GT_GT] = ACTIONS(1161), + [anon_sym_GT_GT_GT] = ACTIONS(1147), + [anon_sym_EQ_EQ] = ACTIONS(1147), + [anon_sym_BANG_EQ] = ACTIONS(1147), + [anon_sym_GT_EQ] = ACTIONS(1147), + [anon_sym_LT_EQ] = ACTIONS(1147), + [anon_sym_this] = ACTIONS(1321), + [anon_sym_DOT] = ACTIONS(1161), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1179), + [anon_sym_base] = ACTIONS(1323), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1181), - [anon_sym_unchecked] = ACTIONS(1167), + [sym_predefined_type] = ACTIONS(91), + [anon_sym_unchecked] = ACTIONS(1317), [anon_sym_yield] = ACTIONS(29), - [anon_sym_switch] = ACTIONS(1223), - [anon_sym_default] = ACTIONS(1183), - [anon_sym_throw] = ACTIONS(1871), + [anon_sym_switch] = ACTIONS(1161), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(1851), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1873), - [anon_sym_DOT_DOT] = ACTIONS(1875), - [anon_sym_and] = ACTIONS(1223), - [anon_sym_or] = ACTIONS(1223), - [anon_sym_AMP_AMP] = ACTIONS(1221), - [anon_sym_PIPE_PIPE] = ACTIONS(1221), - [anon_sym_QMARK_QMARK] = ACTIONS(1221), + [anon_sym_await] = ACTIONS(1853), + [anon_sym_DOT_DOT] = ACTIONS(1855), + [anon_sym_and] = ACTIONS(1161), + [anon_sym_or] = ACTIONS(1161), + [anon_sym_AMP_AMP] = ACTIONS(1147), + [anon_sym_PIPE_PIPE] = ACTIONS(1147), + [anon_sym_QMARK_QMARK] = ACTIONS(1147), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -70714,23 +70600,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(1223), - [anon_sym_is] = ACTIONS(1223), - [anon_sym_DASH_GT] = ACTIONS(1221), - [anon_sym_stackalloc] = ACTIONS(1191), - [anon_sym_with] = ACTIONS(1223), - [anon_sym_sizeof] = ACTIONS(1193), - [anon_sym_typeof] = ACTIONS(1195), - [anon_sym___makeref] = ACTIONS(1197), - [anon_sym___reftype] = ACTIONS(1199), - [anon_sym___refvalue] = ACTIONS(1201), - [sym_null_literal] = ACTIONS(1203), - [anon_sym_SQUOTE] = ACTIONS(1205), - [sym_integer_literal] = ACTIONS(1203), - [sym_real_literal] = ACTIONS(1207), - [anon_sym_DQUOTE] = ACTIONS(1209), - [sym_verbatim_string_literal] = ACTIONS(1207), - [aux_sym_preproc_if_token1] = ACTIONS(1211), + [anon_sym_as] = ACTIONS(1161), + [anon_sym_is] = ACTIONS(1161), + [anon_sym_DASH_GT] = ACTIONS(1147), + [anon_sym_stackalloc] = ACTIONS(1331), + [anon_sym_with] = ACTIONS(1161), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(1333), + [anon_sym___reftype] = ACTIONS(1335), + [anon_sym___refvalue] = ACTIONS(1337), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_literal] = ACTIONS(143), + [anon_sym_DQUOTE] = ACTIONS(145), + [sym_verbatim_string_literal] = ACTIONS(143), + [aux_sym_preproc_if_token1] = ACTIONS(1339), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -70741,90 +70627,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1213), - [sym_interpolation_verbatim_start] = ACTIONS(1215), - [sym_interpolation_raw_start] = ACTIONS(1217), - [sym_raw_string_start] = ACTIONS(1219), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [sym_interpolation_raw_start] = ACTIONS(155), + [sym_raw_string_start] = ACTIONS(157), }, [209] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2762), - [sym__name] = STATE(5876), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2376), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(5005), - [sym_non_lvalue_expression] = STATE(3438), - [sym_lvalue_expression] = STATE(3533), - [sym__expression_statement_expression] = STATE(3362), - [sym_assignment_expression] = STATE(3449), - [sym_binary_expression] = STATE(3362), - [sym_postfix_unary_expression] = STATE(3449), - [sym_prefix_unary_expression] = STATE(3449), - [sym__pointer_indirection_expression] = STATE(2747), - [sym_query_expression] = STATE(3362), - [sym_from_clause] = STATE(6175), - [sym_conditional_expression] = STATE(3362), - [sym_conditional_access_expression] = STATE(3362), - [sym_as_expression] = STATE(3362), - [sym_is_expression] = STATE(3362), - [sym_is_pattern_expression] = STATE(3362), - [sym_cast_expression] = STATE(3362), - [sym_checked_expression] = STATE(3362), - [sym_invocation_expression] = STATE(3449), - [sym_switch_expression] = STATE(3362), - [sym_await_expression] = STATE(3449), - [sym_throw_expression] = STATE(3362), - [sym_element_access_expression] = STATE(2747), - [sym_interpolated_string_expression] = STATE(3362), - [sym_member_access_expression] = STATE(2747), - [sym_object_creation_expression] = STATE(3449), - [sym_parenthesized_expression] = STATE(3449), - [sym__parenthesized_lvalue_expression] = STATE(2747), - [sym_lambda_expression] = STATE(3362), - [sym__lambda_expression_init] = STATE(7619), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3362), - [sym_anonymous_method_expression] = STATE(3362), - [sym_anonymous_object_creation_expression] = STATE(3362), - [sym_implicit_array_creation_expression] = STATE(3362), - [sym_implicit_object_creation_expression] = STATE(3362), - [sym_implicit_stackalloc_expression] = STATE(3362), - [sym_initializer_expression] = STATE(3362), - [sym_default_expression] = STATE(3362), - [sym_with_expression] = STATE(3362), - [sym_sizeof_expression] = STATE(3362), - [sym_typeof_expression] = STATE(3362), - [sym_makeref_expression] = STATE(3362), - [sym_ref_expression] = STATE(3362), - [sym_reftype_expression] = STATE(3362), - [sym_refvalue_expression] = STATE(3362), - [sym_stackalloc_expression] = STATE(3362), - [sym_range_expression] = STATE(3362), - [sym_tuple_expression] = STATE(2747), - [sym_literal] = STATE(3362), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3362), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2603), + [sym__name] = STATE(5872), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2387), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(4756), + [sym_non_lvalue_expression] = STATE(3220), + [sym_lvalue_expression] = STATE(3395), + [sym__expression_statement_expression] = STATE(3236), + [sym_assignment_expression] = STATE(3221), + [sym_binary_expression] = STATE(3236), + [sym_postfix_unary_expression] = STATE(3221), + [sym_prefix_unary_expression] = STATE(3221), + [sym__pointer_indirection_expression] = STATE(2602), + [sym_query_expression] = STATE(3236), + [sym_from_clause] = STATE(6141), + [sym_conditional_expression] = STATE(3236), + [sym_conditional_access_expression] = STATE(3236), + [sym_as_expression] = STATE(3236), + [sym_is_expression] = STATE(3236), + [sym_is_pattern_expression] = STATE(3236), + [sym_cast_expression] = STATE(3236), + [sym_checked_expression] = STATE(3236), + [sym_invocation_expression] = STATE(3221), + [sym_switch_expression] = STATE(3236), + [sym_await_expression] = STATE(3221), + [sym_throw_expression] = STATE(3236), + [sym_element_access_expression] = STATE(2602), + [sym_interpolated_string_expression] = STATE(3236), + [sym_member_access_expression] = STATE(2602), + [sym_object_creation_expression] = STATE(3221), + [sym_parenthesized_expression] = STATE(3221), + [sym__parenthesized_lvalue_expression] = STATE(2602), + [sym_lambda_expression] = STATE(3236), + [sym__lambda_expression_init] = STATE(7446), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3236), + [sym_anonymous_method_expression] = STATE(3236), + [sym_anonymous_object_creation_expression] = STATE(3236), + [sym_implicit_array_creation_expression] = STATE(3236), + [sym_implicit_object_creation_expression] = STATE(3236), + [sym_implicit_stackalloc_expression] = STATE(3236), + [sym_initializer_expression] = STATE(3236), + [sym_default_expression] = STATE(3236), + [sym_with_expression] = STATE(3236), + [sym_sizeof_expression] = STATE(3236), + [sym_typeof_expression] = STATE(3236), + [sym_makeref_expression] = STATE(3236), + [sym_ref_expression] = STATE(3236), + [sym_reftype_expression] = STATE(3236), + [sym_refvalue_expression] = STATE(3236), + [sym_stackalloc_expression] = STATE(3236), + [sym_range_expression] = STATE(3236), + [sym_tuple_expression] = STATE(2602), + [sym_literal] = STATE(3236), + [sym_character_literal] = STATE(3272), + [sym_string_literal] = STATE(3272), + [sym_raw_string_literal] = STATE(3272), + [sym_boolean_literal] = STATE(3272), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3236), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(209), [sym_preproc_endregion] = STATE(209), [sym_preproc_line] = STATE(209), @@ -70834,67 +70720,67 @@ 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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3385), - [sym__identifier_token] = ACTIONS(25), - [anon_sym_alias] = ACTIONS(29), - [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1307), - [anon_sym_LPAREN] = ACTIONS(1877), - [anon_sym_ref] = ACTIONS(1879), - [anon_sym_LBRACE] = ACTIONS(1313), - [anon_sym_delegate] = ACTIONS(1315), - [anon_sym_async] = ACTIONS(1047), - [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1881), - [anon_sym_LT] = ACTIONS(1165), - [anon_sym_GT] = ACTIONS(1165), - [anon_sym_where] = ACTIONS(29), - [anon_sym_QMARK] = ACTIONS(1165), - [anon_sym_notnull] = ACTIONS(29), - [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1319), - [anon_sym_BANG] = ACTIONS(1883), - [anon_sym_TILDE] = ACTIONS(1885), - [anon_sym_PLUS_PLUS] = ACTIONS(1885), - [anon_sym_DASH_DASH] = ACTIONS(1885), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1883), - [anon_sym_DASH] = ACTIONS(1883), - [anon_sym_STAR] = ACTIONS(1887), - [anon_sym_SLASH] = ACTIONS(1165), - [anon_sym_PERCENT] = ACTIONS(1151), - [anon_sym_CARET] = ACTIONS(1885), - [anon_sym_PIPE] = ACTIONS(1165), - [anon_sym_AMP] = ACTIONS(1883), - [anon_sym_LT_LT] = ACTIONS(1151), - [anon_sym_GT_GT] = ACTIONS(1165), - [anon_sym_GT_GT_GT] = ACTIONS(1151), - [anon_sym_EQ_EQ] = ACTIONS(1151), - [anon_sym_BANG_EQ] = ACTIONS(1151), - [anon_sym_GT_EQ] = ACTIONS(1151), - [anon_sym_LT_EQ] = ACTIONS(1151), - [anon_sym_this] = ACTIONS(1323), - [anon_sym_DOT] = ACTIONS(1165), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1325), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1319), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3379), + [sym__identifier_token] = ACTIONS(25), + [anon_sym_alias] = ACTIONS(29), + [anon_sym_global] = ACTIONS(29), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1149), + [anon_sym_LPAREN] = ACTIONS(1857), + [anon_sym_ref] = ACTIONS(1859), + [anon_sym_LBRACE] = ACTIONS(1155), + [anon_sym_delegate] = ACTIONS(1157), + [anon_sym_async] = ACTIONS(1045), + [anon_sym_file] = ACTIONS(29), + [anon_sym_new] = ACTIONS(1861), + [anon_sym_LT] = ACTIONS(1221), + [anon_sym_GT] = ACTIONS(1221), + [anon_sym_where] = ACTIONS(29), + [anon_sym_QMARK] = ACTIONS(1221), + [anon_sym_notnull] = ACTIONS(29), + [anon_sym_unmanaged] = ACTIONS(29), + [anon_sym_checked] = ACTIONS(1163), + [anon_sym_BANG] = ACTIONS(1863), + [anon_sym_TILDE] = ACTIONS(1865), + [anon_sym_PLUS_PLUS] = ACTIONS(1865), + [anon_sym_DASH_DASH] = ACTIONS(1865), + [anon_sym_true] = ACTIONS(1169), + [anon_sym_false] = ACTIONS(1169), + [anon_sym_PLUS] = ACTIONS(1863), + [anon_sym_DASH] = ACTIONS(1863), + [anon_sym_STAR] = ACTIONS(1867), + [anon_sym_SLASH] = ACTIONS(1221), + [anon_sym_PERCENT] = ACTIONS(1219), + [anon_sym_CARET] = ACTIONS(1865), + [anon_sym_PIPE] = ACTIONS(1221), + [anon_sym_AMP] = ACTIONS(1863), + [anon_sym_LT_LT] = ACTIONS(1219), + [anon_sym_GT_GT] = ACTIONS(1221), + [anon_sym_GT_GT_GT] = ACTIONS(1219), + [anon_sym_EQ_EQ] = ACTIONS(1219), + [anon_sym_BANG_EQ] = ACTIONS(1219), + [anon_sym_GT_EQ] = ACTIONS(1219), + [anon_sym_LT_EQ] = ACTIONS(1219), + [anon_sym_this] = ACTIONS(1173), + [anon_sym_DOT] = ACTIONS(1221), + [anon_sym_scoped] = ACTIONS(85), + [anon_sym_base] = ACTIONS(1175), + [anon_sym_var] = ACTIONS(89), + [sym_predefined_type] = ACTIONS(1177), + [anon_sym_unchecked] = ACTIONS(1163), [anon_sym_yield] = ACTIONS(29), - [anon_sym_switch] = ACTIONS(1165), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1889), + [anon_sym_switch] = ACTIONS(1221), + [anon_sym_default] = ACTIONS(1179), + [anon_sym_throw] = ACTIONS(1869), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1891), - [anon_sym_DOT_DOT] = ACTIONS(1893), - [anon_sym_and] = ACTIONS(1165), - [anon_sym_or] = ACTIONS(1165), - [anon_sym_AMP_AMP] = ACTIONS(1151), - [anon_sym_PIPE_PIPE] = ACTIONS(1151), - [anon_sym_QMARK_QMARK] = ACTIONS(1151), + [anon_sym_await] = ACTIONS(1871), + [anon_sym_DOT_DOT] = ACTIONS(1873), + [anon_sym_and] = ACTIONS(1221), + [anon_sym_or] = ACTIONS(1221), + [anon_sym_AMP_AMP] = ACTIONS(1219), + [anon_sym_PIPE_PIPE] = ACTIONS(1219), + [anon_sym_QMARK_QMARK] = ACTIONS(1219), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -70907,23 +70793,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(1165), - [anon_sym_is] = ACTIONS(1165), - [anon_sym_DASH_GT] = ACTIONS(1151), - [anon_sym_stackalloc] = ACTIONS(1333), - [anon_sym_with] = ACTIONS(1165), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(1335), - [anon_sym___reftype] = ACTIONS(1337), - [anon_sym___refvalue] = ACTIONS(1339), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1341), + [anon_sym_as] = ACTIONS(1221), + [anon_sym_is] = ACTIONS(1221), + [anon_sym_DASH_GT] = ACTIONS(1219), + [anon_sym_stackalloc] = ACTIONS(1187), + [anon_sym_with] = ACTIONS(1221), + [anon_sym_sizeof] = ACTIONS(1189), + [anon_sym_typeof] = ACTIONS(1191), + [anon_sym___makeref] = ACTIONS(1193), + [anon_sym___reftype] = ACTIONS(1195), + [anon_sym___refvalue] = ACTIONS(1197), + [sym_null_literal] = ACTIONS(1199), + [anon_sym_SQUOTE] = ACTIONS(1201), + [sym_integer_literal] = ACTIONS(1199), + [sym_real_literal] = ACTIONS(1203), + [anon_sym_DQUOTE] = ACTIONS(1205), + [sym_verbatim_string_literal] = ACTIONS(1203), + [aux_sym_preproc_if_token1] = ACTIONS(1207), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -70934,90 +70820,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(151), - [sym_interpolation_verbatim_start] = ACTIONS(153), - [sym_interpolation_raw_start] = ACTIONS(155), - [sym_raw_string_start] = ACTIONS(157), + [sym_interpolation_regular_start] = ACTIONS(1209), + [sym_interpolation_verbatim_start] = ACTIONS(1211), + [sym_interpolation_raw_start] = ACTIONS(1213), + [sym_raw_string_start] = ACTIONS(1215), }, [210] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2762), - [sym__name] = STATE(5876), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2376), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(5109), - [sym_non_lvalue_expression] = STATE(3438), - [sym_lvalue_expression] = STATE(3533), - [sym__expression_statement_expression] = STATE(3362), - [sym_assignment_expression] = STATE(3449), - [sym_binary_expression] = STATE(3362), - [sym_postfix_unary_expression] = STATE(3449), - [sym_prefix_unary_expression] = STATE(3449), - [sym__pointer_indirection_expression] = STATE(2747), - [sym_query_expression] = STATE(3362), - [sym_from_clause] = STATE(6175), - [sym_conditional_expression] = STATE(3362), - [sym_conditional_access_expression] = STATE(3362), - [sym_as_expression] = STATE(3362), - [sym_is_expression] = STATE(3362), - [sym_is_pattern_expression] = STATE(3362), - [sym_cast_expression] = STATE(3362), - [sym_checked_expression] = STATE(3362), - [sym_invocation_expression] = STATE(3449), - [sym_switch_expression] = STATE(3362), - [sym_await_expression] = STATE(3449), - [sym_throw_expression] = STATE(3362), - [sym_element_access_expression] = STATE(2747), - [sym_interpolated_string_expression] = STATE(3362), - [sym_member_access_expression] = STATE(2747), - [sym_object_creation_expression] = STATE(3449), - [sym_parenthesized_expression] = STATE(3449), - [sym__parenthesized_lvalue_expression] = STATE(2747), - [sym_lambda_expression] = STATE(3362), - [sym__lambda_expression_init] = STATE(7619), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3362), - [sym_anonymous_method_expression] = STATE(3362), - [sym_anonymous_object_creation_expression] = STATE(3362), - [sym_implicit_array_creation_expression] = STATE(3362), - [sym_implicit_object_creation_expression] = STATE(3362), - [sym_implicit_stackalloc_expression] = STATE(3362), - [sym_initializer_expression] = STATE(3362), - [sym_default_expression] = STATE(3362), - [sym_with_expression] = STATE(3362), - [sym_sizeof_expression] = STATE(3362), - [sym_typeof_expression] = STATE(3362), - [sym_makeref_expression] = STATE(3362), - [sym_ref_expression] = STATE(3362), - [sym_reftype_expression] = STATE(3362), - [sym_refvalue_expression] = STATE(3362), - [sym_stackalloc_expression] = STATE(3362), - [sym_range_expression] = STATE(3362), - [sym_tuple_expression] = STATE(2747), - [sym_literal] = STATE(3362), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3362), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2603), + [sym__name] = STATE(5872), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2387), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(4570), + [sym_non_lvalue_expression] = STATE(3220), + [sym_lvalue_expression] = STATE(3395), + [sym__expression_statement_expression] = STATE(3236), + [sym_assignment_expression] = STATE(3221), + [sym_binary_expression] = STATE(3236), + [sym_postfix_unary_expression] = STATE(3221), + [sym_prefix_unary_expression] = STATE(3221), + [sym__pointer_indirection_expression] = STATE(2602), + [sym_query_expression] = STATE(3236), + [sym_from_clause] = STATE(6141), + [sym_conditional_expression] = STATE(3236), + [sym_conditional_access_expression] = STATE(3236), + [sym_as_expression] = STATE(3236), + [sym_is_expression] = STATE(3236), + [sym_is_pattern_expression] = STATE(3236), + [sym_cast_expression] = STATE(3236), + [sym_checked_expression] = STATE(3236), + [sym_invocation_expression] = STATE(3221), + [sym_switch_expression] = STATE(3236), + [sym_await_expression] = STATE(3221), + [sym_throw_expression] = STATE(3236), + [sym_element_access_expression] = STATE(2602), + [sym_interpolated_string_expression] = STATE(3236), + [sym_member_access_expression] = STATE(2602), + [sym_object_creation_expression] = STATE(3221), + [sym_parenthesized_expression] = STATE(3221), + [sym__parenthesized_lvalue_expression] = STATE(2602), + [sym_lambda_expression] = STATE(3236), + [sym__lambda_expression_init] = STATE(7446), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3236), + [sym_anonymous_method_expression] = STATE(3236), + [sym_anonymous_object_creation_expression] = STATE(3236), + [sym_implicit_array_creation_expression] = STATE(3236), + [sym_implicit_object_creation_expression] = STATE(3236), + [sym_implicit_stackalloc_expression] = STATE(3236), + [sym_initializer_expression] = STATE(3236), + [sym_default_expression] = STATE(3236), + [sym_with_expression] = STATE(3236), + [sym_sizeof_expression] = STATE(3236), + [sym_typeof_expression] = STATE(3236), + [sym_makeref_expression] = STATE(3236), + [sym_ref_expression] = STATE(3236), + [sym_reftype_expression] = STATE(3236), + [sym_refvalue_expression] = STATE(3236), + [sym_stackalloc_expression] = STATE(3236), + [sym_range_expression] = STATE(3236), + [sym_tuple_expression] = STATE(2602), + [sym_literal] = STATE(3236), + [sym_character_literal] = STATE(3272), + [sym_string_literal] = STATE(3272), + [sym_raw_string_literal] = STATE(3272), + [sym_boolean_literal] = STATE(3272), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3236), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(210), [sym_preproc_endregion] = STATE(210), [sym_preproc_line] = STATE(210), @@ -71027,67 +70913,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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3385), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3379), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1307), - [anon_sym_LPAREN] = ACTIONS(1877), - [anon_sym_ref] = ACTIONS(1879), - [anon_sym_LBRACE] = ACTIONS(1313), - [anon_sym_delegate] = ACTIONS(1315), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1149), + [anon_sym_LPAREN] = ACTIONS(1857), + [anon_sym_ref] = ACTIONS(1859), + [anon_sym_LBRACE] = ACTIONS(1155), + [anon_sym_delegate] = ACTIONS(1157), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1881), - [anon_sym_LT] = ACTIONS(1223), - [anon_sym_GT] = ACTIONS(1223), + [anon_sym_new] = ACTIONS(1861), + [anon_sym_LT] = ACTIONS(1161), + [anon_sym_GT] = ACTIONS(1161), [anon_sym_where] = ACTIONS(29), - [anon_sym_QMARK] = ACTIONS(1223), + [anon_sym_QMARK] = ACTIONS(1161), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1319), - [anon_sym_BANG] = ACTIONS(1883), - [anon_sym_TILDE] = ACTIONS(1885), - [anon_sym_PLUS_PLUS] = ACTIONS(1885), - [anon_sym_DASH_DASH] = ACTIONS(1885), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1883), - [anon_sym_DASH] = ACTIONS(1883), - [anon_sym_STAR] = ACTIONS(1887), - [anon_sym_SLASH] = ACTIONS(1223), - [anon_sym_PERCENT] = ACTIONS(1221), - [anon_sym_CARET] = ACTIONS(1885), - [anon_sym_PIPE] = ACTIONS(1223), - [anon_sym_AMP] = ACTIONS(1883), - [anon_sym_LT_LT] = ACTIONS(1221), - [anon_sym_GT_GT] = ACTIONS(1223), - [anon_sym_GT_GT_GT] = ACTIONS(1221), - [anon_sym_EQ_EQ] = ACTIONS(1221), - [anon_sym_BANG_EQ] = ACTIONS(1221), - [anon_sym_GT_EQ] = ACTIONS(1221), - [anon_sym_LT_EQ] = ACTIONS(1221), - [anon_sym_this] = ACTIONS(1323), - [anon_sym_DOT] = ACTIONS(1223), + [anon_sym_checked] = ACTIONS(1163), + [anon_sym_BANG] = ACTIONS(1863), + [anon_sym_TILDE] = ACTIONS(1865), + [anon_sym_PLUS_PLUS] = ACTIONS(1865), + [anon_sym_DASH_DASH] = ACTIONS(1865), + [anon_sym_true] = ACTIONS(1169), + [anon_sym_false] = ACTIONS(1169), + [anon_sym_PLUS] = ACTIONS(1863), + [anon_sym_DASH] = ACTIONS(1863), + [anon_sym_STAR] = ACTIONS(1867), + [anon_sym_SLASH] = ACTIONS(1161), + [anon_sym_PERCENT] = ACTIONS(1147), + [anon_sym_CARET] = ACTIONS(1865), + [anon_sym_PIPE] = ACTIONS(1161), + [anon_sym_AMP] = ACTIONS(1863), + [anon_sym_LT_LT] = ACTIONS(1147), + [anon_sym_GT_GT] = ACTIONS(1161), + [anon_sym_GT_GT_GT] = ACTIONS(1147), + [anon_sym_EQ_EQ] = ACTIONS(1147), + [anon_sym_BANG_EQ] = ACTIONS(1147), + [anon_sym_GT_EQ] = ACTIONS(1147), + [anon_sym_LT_EQ] = ACTIONS(1147), + [anon_sym_this] = ACTIONS(1173), + [anon_sym_DOT] = ACTIONS(1161), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1325), + [anon_sym_base] = ACTIONS(1175), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1319), + [sym_predefined_type] = ACTIONS(1177), + [anon_sym_unchecked] = ACTIONS(1163), [anon_sym_yield] = ACTIONS(29), - [anon_sym_switch] = ACTIONS(1223), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1889), + [anon_sym_switch] = ACTIONS(1161), + [anon_sym_default] = ACTIONS(1179), + [anon_sym_throw] = ACTIONS(1869), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1891), - [anon_sym_DOT_DOT] = ACTIONS(1893), - [anon_sym_and] = ACTIONS(1223), - [anon_sym_or] = ACTIONS(1223), - [anon_sym_AMP_AMP] = ACTIONS(1221), - [anon_sym_PIPE_PIPE] = ACTIONS(1221), - [anon_sym_QMARK_QMARK] = ACTIONS(1221), + [anon_sym_await] = ACTIONS(1871), + [anon_sym_DOT_DOT] = ACTIONS(1873), + [anon_sym_and] = ACTIONS(1161), + [anon_sym_or] = ACTIONS(1161), + [anon_sym_AMP_AMP] = ACTIONS(1147), + [anon_sym_PIPE_PIPE] = ACTIONS(1147), + [anon_sym_QMARK_QMARK] = ACTIONS(1147), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -71100,23 +70986,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(1223), - [anon_sym_is] = ACTIONS(1223), - [anon_sym_DASH_GT] = ACTIONS(1221), - [anon_sym_stackalloc] = ACTIONS(1333), - [anon_sym_with] = ACTIONS(1223), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(1335), - [anon_sym___reftype] = ACTIONS(1337), - [anon_sym___refvalue] = ACTIONS(1339), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1341), + [anon_sym_as] = ACTIONS(1161), + [anon_sym_is] = ACTIONS(1161), + [anon_sym_DASH_GT] = ACTIONS(1147), + [anon_sym_stackalloc] = ACTIONS(1187), + [anon_sym_with] = ACTIONS(1161), + [anon_sym_sizeof] = ACTIONS(1189), + [anon_sym_typeof] = ACTIONS(1191), + [anon_sym___makeref] = ACTIONS(1193), + [anon_sym___reftype] = ACTIONS(1195), + [anon_sym___refvalue] = ACTIONS(1197), + [sym_null_literal] = ACTIONS(1199), + [anon_sym_SQUOTE] = ACTIONS(1201), + [sym_integer_literal] = ACTIONS(1199), + [sym_real_literal] = ACTIONS(1203), + [anon_sym_DQUOTE] = ACTIONS(1205), + [sym_verbatim_string_literal] = ACTIONS(1203), + [aux_sym_preproc_if_token1] = ACTIONS(1207), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -71127,90 +71013,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(151), - [sym_interpolation_verbatim_start] = ACTIONS(153), - [sym_interpolation_raw_start] = ACTIONS(155), - [sym_raw_string_start] = ACTIONS(157), + [sym_interpolation_regular_start] = ACTIONS(1209), + [sym_interpolation_verbatim_start] = ACTIONS(1211), + [sym_interpolation_raw_start] = ACTIONS(1213), + [sym_raw_string_start] = ACTIONS(1215), }, [211] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2762), - [sym__name] = STATE(5891), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2372), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(4963), - [sym_non_lvalue_expression] = STATE(3438), - [sym_lvalue_expression] = STATE(3530), - [sym__expression_statement_expression] = STATE(3362), - [sym_assignment_expression] = STATE(3449), - [sym_binary_expression] = STATE(3362), - [sym_postfix_unary_expression] = STATE(3449), - [sym_prefix_unary_expression] = STATE(3449), - [sym__pointer_indirection_expression] = STATE(2747), - [sym_query_expression] = STATE(3362), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2816), + [sym__name] = STATE(5895), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2376), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(4901), + [sym_non_lvalue_expression] = STATE(3495), + [sym_lvalue_expression] = STATE(3512), + [sym__expression_statement_expression] = STATE(3462), + [sym_assignment_expression] = STATE(3497), + [sym_binary_expression] = STATE(3462), + [sym_postfix_unary_expression] = STATE(3497), + [sym_prefix_unary_expression] = STATE(3497), + [sym__pointer_indirection_expression] = STATE(2815), + [sym_query_expression] = STATE(3462), [sym_from_clause] = STATE(6167), - [sym_conditional_expression] = STATE(3362), - [sym_conditional_access_expression] = STATE(3362), - [sym_as_expression] = STATE(3362), - [sym_is_expression] = STATE(3362), - [sym_is_pattern_expression] = STATE(3362), - [sym_cast_expression] = STATE(3362), - [sym_checked_expression] = STATE(3362), - [sym_invocation_expression] = STATE(3449), - [sym_switch_expression] = STATE(3362), - [sym_await_expression] = STATE(3449), - [sym_throw_expression] = STATE(3362), - [sym_element_access_expression] = STATE(2747), - [sym_interpolated_string_expression] = STATE(3362), - [sym_member_access_expression] = STATE(2747), - [sym_object_creation_expression] = STATE(3449), - [sym_parenthesized_expression] = STATE(3449), - [sym__parenthesized_lvalue_expression] = STATE(2747), - [sym_lambda_expression] = STATE(3362), - [sym__lambda_expression_init] = STATE(7468), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3362), - [sym_anonymous_method_expression] = STATE(3362), - [sym_anonymous_object_creation_expression] = STATE(3362), - [sym_implicit_array_creation_expression] = STATE(3362), - [sym_implicit_object_creation_expression] = STATE(3362), - [sym_implicit_stackalloc_expression] = STATE(3362), - [sym_initializer_expression] = STATE(3362), - [sym_default_expression] = STATE(3362), - [sym_with_expression] = STATE(3362), - [sym_sizeof_expression] = STATE(3362), - [sym_typeof_expression] = STATE(3362), - [sym_makeref_expression] = STATE(3362), - [sym_ref_expression] = STATE(3362), - [sym_reftype_expression] = STATE(3362), - [sym_refvalue_expression] = STATE(3362), - [sym_stackalloc_expression] = STATE(3362), - [sym_range_expression] = STATE(3362), - [sym_tuple_expression] = STATE(2747), - [sym_literal] = STATE(3362), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3362), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_conditional_expression] = STATE(3462), + [sym_conditional_access_expression] = STATE(3462), + [sym_as_expression] = STATE(3462), + [sym_is_expression] = STATE(3462), + [sym_is_pattern_expression] = STATE(3462), + [sym_cast_expression] = STATE(3462), + [sym_checked_expression] = STATE(3462), + [sym_invocation_expression] = STATE(3497), + [sym_switch_expression] = STATE(3462), + [sym_await_expression] = STATE(3497), + [sym_throw_expression] = STATE(3462), + [sym_element_access_expression] = STATE(2815), + [sym_interpolated_string_expression] = STATE(3462), + [sym_member_access_expression] = STATE(2815), + [sym_object_creation_expression] = STATE(3497), + [sym_parenthesized_expression] = STATE(3497), + [sym__parenthesized_lvalue_expression] = STATE(2815), + [sym_lambda_expression] = STATE(3462), + [sym__lambda_expression_init] = STATE(7716), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3462), + [sym_anonymous_method_expression] = STATE(3462), + [sym_anonymous_object_creation_expression] = STATE(3462), + [sym_implicit_array_creation_expression] = STATE(3462), + [sym_implicit_object_creation_expression] = STATE(3462), + [sym_implicit_stackalloc_expression] = STATE(3462), + [sym_initializer_expression] = STATE(3462), + [sym_default_expression] = STATE(3462), + [sym_with_expression] = STATE(3462), + [sym_sizeof_expression] = STATE(3462), + [sym_typeof_expression] = STATE(3462), + [sym_makeref_expression] = STATE(3462), + [sym_ref_expression] = STATE(3462), + [sym_reftype_expression] = STATE(3462), + [sym_refvalue_expression] = STATE(3462), + [sym_stackalloc_expression] = STATE(3462), + [sym_range_expression] = STATE(3462), + [sym_tuple_expression] = STATE(2815), + [sym_literal] = STATE(3462), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3462), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(211), [sym_preproc_endregion] = STATE(211), [sym_preproc_line] = STATE(211), @@ -71220,67 +71106,67 @@ 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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3385), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3367), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1307), - [anon_sym_LPAREN] = ACTIONS(1895), - [anon_sym_ref] = ACTIONS(1897), - [anon_sym_LBRACE] = ACTIONS(1313), - [anon_sym_delegate] = ACTIONS(1315), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1305), + [anon_sym_LPAREN] = ACTIONS(1803), + [anon_sym_ref] = ACTIONS(1805), + [anon_sym_LBRACE] = ACTIONS(1311), + [anon_sym_delegate] = ACTIONS(1313), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1899), - [anon_sym_LT] = ACTIONS(1223), - [anon_sym_GT] = ACTIONS(1223), + [anon_sym_new] = ACTIONS(1807), + [anon_sym_LT] = ACTIONS(1161), + [anon_sym_GT] = ACTIONS(1161), [anon_sym_where] = ACTIONS(29), - [anon_sym_QMARK] = ACTIONS(1223), + [anon_sym_QMARK] = ACTIONS(1161), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1319), - [anon_sym_BANG] = ACTIONS(1901), - [anon_sym_TILDE] = ACTIONS(1903), - [anon_sym_PLUS_PLUS] = ACTIONS(1903), - [anon_sym_DASH_DASH] = ACTIONS(1903), + [anon_sym_checked] = ACTIONS(1317), + [anon_sym_BANG] = ACTIONS(1809), + [anon_sym_TILDE] = ACTIONS(1811), + [anon_sym_PLUS_PLUS] = ACTIONS(1811), + [anon_sym_DASH_DASH] = ACTIONS(1811), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1901), - [anon_sym_DASH] = ACTIONS(1901), - [anon_sym_STAR] = ACTIONS(1905), - [anon_sym_SLASH] = ACTIONS(1223), - [anon_sym_PERCENT] = ACTIONS(1221), - [anon_sym_CARET] = ACTIONS(1903), - [anon_sym_PIPE] = ACTIONS(1223), - [anon_sym_AMP] = ACTIONS(1901), - [anon_sym_LT_LT] = ACTIONS(1221), - [anon_sym_GT_GT] = ACTIONS(1223), - [anon_sym_GT_GT_GT] = ACTIONS(1221), - [anon_sym_EQ_EQ] = ACTIONS(1221), - [anon_sym_BANG_EQ] = ACTIONS(1221), - [anon_sym_GT_EQ] = ACTIONS(1221), - [anon_sym_LT_EQ] = ACTIONS(1221), - [anon_sym_this] = ACTIONS(1323), - [anon_sym_DOT] = ACTIONS(1223), + [anon_sym_PLUS] = ACTIONS(1809), + [anon_sym_DASH] = ACTIONS(1809), + [anon_sym_STAR] = ACTIONS(1813), + [anon_sym_SLASH] = ACTIONS(1161), + [anon_sym_PERCENT] = ACTIONS(1147), + [anon_sym_CARET] = ACTIONS(1811), + [anon_sym_PIPE] = ACTIONS(1161), + [anon_sym_AMP] = ACTIONS(1809), + [anon_sym_LT_LT] = ACTIONS(1147), + [anon_sym_GT_GT] = ACTIONS(1161), + [anon_sym_GT_GT_GT] = ACTIONS(1147), + [anon_sym_EQ_EQ] = ACTIONS(1147), + [anon_sym_BANG_EQ] = ACTIONS(1147), + [anon_sym_GT_EQ] = ACTIONS(1147), + [anon_sym_LT_EQ] = ACTIONS(1147), + [anon_sym_this] = ACTIONS(1321), + [anon_sym_DOT] = ACTIONS(1161), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1325), + [anon_sym_base] = ACTIONS(1323), [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1319), + [anon_sym_unchecked] = ACTIONS(1317), [anon_sym_yield] = ACTIONS(29), - [anon_sym_switch] = ACTIONS(1223), + [anon_sym_switch] = ACTIONS(1161), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1907), + [anon_sym_throw] = ACTIONS(1815), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1909), - [anon_sym_DOT_DOT] = ACTIONS(1911), - [anon_sym_and] = ACTIONS(1223), - [anon_sym_or] = ACTIONS(1223), - [anon_sym_AMP_AMP] = ACTIONS(1221), - [anon_sym_PIPE_PIPE] = ACTIONS(1221), - [anon_sym_QMARK_QMARK] = ACTIONS(1221), + [anon_sym_await] = ACTIONS(1817), + [anon_sym_DOT_DOT] = ACTIONS(1819), + [anon_sym_and] = ACTIONS(1161), + [anon_sym_or] = ACTIONS(1161), + [anon_sym_AMP_AMP] = ACTIONS(1147), + [anon_sym_PIPE_PIPE] = ACTIONS(1147), + [anon_sym_QMARK_QMARK] = ACTIONS(1147), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -71293,23 +71179,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(1223), - [anon_sym_is] = ACTIONS(1223), - [anon_sym_DASH_GT] = ACTIONS(1221), - [anon_sym_stackalloc] = ACTIONS(1333), - [anon_sym_with] = ACTIONS(1223), + [anon_sym_as] = ACTIONS(1161), + [anon_sym_is] = ACTIONS(1161), + [anon_sym_DASH_GT] = ACTIONS(1147), + [anon_sym_stackalloc] = ACTIONS(1331), + [anon_sym_with] = ACTIONS(1161), [anon_sym_sizeof] = ACTIONS(129), [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(1335), - [anon_sym___reftype] = ACTIONS(1337), - [anon_sym___refvalue] = ACTIONS(1339), + [anon_sym___makeref] = ACTIONS(1333), + [anon_sym___reftype] = ACTIONS(1335), + [anon_sym___refvalue] = ACTIONS(1337), [sym_null_literal] = ACTIONS(139), [anon_sym_SQUOTE] = ACTIONS(141), [sym_integer_literal] = ACTIONS(139), [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1341), + [aux_sym_preproc_if_token1] = ACTIONS(1339), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -71326,84 +71212,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [212] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(5160), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2204), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(5011), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3520), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3080), - [sym_postfix_unary_expression] = STATE(3111), - [sym_prefix_unary_expression] = STATE(3111), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6154), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3080), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3111), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3080), - [sym_member_access_expression] = STATE(2484), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3111), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7530), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(3080), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3080), - [sym_typeof_expression] = STATE(3080), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2484), - [sym_literal] = STATE(3080), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2816), + [sym__name] = STATE(5896), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2362), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(4992), + [sym_non_lvalue_expression] = STATE(3495), + [sym_lvalue_expression] = STATE(3513), + [sym__expression_statement_expression] = STATE(3462), + [sym_assignment_expression] = STATE(3497), + [sym_binary_expression] = STATE(3462), + [sym_postfix_unary_expression] = STATE(3497), + [sym_prefix_unary_expression] = STATE(3497), + [sym__pointer_indirection_expression] = STATE(2815), + [sym_query_expression] = STATE(3462), + [sym_from_clause] = STATE(6132), + [sym_conditional_expression] = STATE(3462), + [sym_conditional_access_expression] = STATE(3462), + [sym_as_expression] = STATE(3462), + [sym_is_expression] = STATE(3462), + [sym_is_pattern_expression] = STATE(3462), + [sym_cast_expression] = STATE(3462), + [sym_checked_expression] = STATE(3462), + [sym_invocation_expression] = STATE(3497), + [sym_switch_expression] = STATE(3462), + [sym_await_expression] = STATE(3497), + [sym_throw_expression] = STATE(3462), + [sym_element_access_expression] = STATE(2815), + [sym_interpolated_string_expression] = STATE(3462), + [sym_member_access_expression] = STATE(2815), + [sym_object_creation_expression] = STATE(3497), + [sym_parenthesized_expression] = STATE(3497), + [sym__parenthesized_lvalue_expression] = STATE(2815), + [sym_lambda_expression] = STATE(3462), + [sym__lambda_expression_init] = STATE(7527), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3462), + [sym_anonymous_method_expression] = STATE(3462), + [sym_anonymous_object_creation_expression] = STATE(3462), + [sym_implicit_array_creation_expression] = STATE(3462), + [sym_implicit_object_creation_expression] = STATE(3462), + [sym_implicit_stackalloc_expression] = STATE(3462), + [sym_initializer_expression] = STATE(3462), + [sym_default_expression] = STATE(3462), + [sym_with_expression] = STATE(3462), + [sym_sizeof_expression] = STATE(3462), + [sym_typeof_expression] = STATE(3462), + [sym_makeref_expression] = STATE(3462), + [sym_ref_expression] = STATE(3462), + [sym_reftype_expression] = STATE(3462), + [sym_refvalue_expression] = STATE(3462), + [sym_stackalloc_expression] = STATE(3462), + [sym_range_expression] = STATE(3462), + [sym_tuple_expression] = STATE(2815), + [sym_literal] = STATE(3462), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3462), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(212), [sym_preproc_endregion] = STATE(212), [sym_preproc_line] = STATE(212), @@ -71413,67 +71299,67 @@ 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(3067), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), [aux_sym__lambda_expression_init_repeat1] = STATE(3367), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1481), - [anon_sym_COMMA] = ACTIONS(1913), - [anon_sym_RBRACK] = ACTIONS(1913), - [anon_sym_LPAREN] = ACTIONS(43), - [anon_sym_ref] = ACTIONS(661), - [anon_sym_LBRACE] = ACTIONS(1487), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1305), + [anon_sym_LPAREN] = ACTIONS(1875), + [anon_sym_ref] = ACTIONS(1877), + [anon_sym_LBRACE] = ACTIONS(1311), + [anon_sym_delegate] = ACTIONS(1313), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1061), - [anon_sym_LT] = ACTIONS(1165), - [anon_sym_GT] = ACTIONS(1165), + [anon_sym_new] = ACTIONS(1879), + [anon_sym_LT] = ACTIONS(1221), + [anon_sym_GT] = ACTIONS(1221), [anon_sym_where] = ACTIONS(29), - [anon_sym_QMARK] = ACTIONS(1165), + [anon_sym_QMARK] = ACTIONS(1221), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1067), - [anon_sym_BANG] = ACTIONS(1585), - [anon_sym_TILDE] = ACTIONS(1587), - [anon_sym_PLUS_PLUS] = ACTIONS(1587), - [anon_sym_DASH_DASH] = ACTIONS(1587), + [anon_sym_checked] = ACTIONS(1317), + [anon_sym_BANG] = ACTIONS(1881), + [anon_sym_TILDE] = ACTIONS(1883), + [anon_sym_PLUS_PLUS] = ACTIONS(1883), + [anon_sym_DASH_DASH] = ACTIONS(1883), [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_SLASH] = ACTIONS(1165), - [anon_sym_PERCENT] = ACTIONS(1151), - [anon_sym_CARET] = ACTIONS(1587), - [anon_sym_PIPE] = ACTIONS(1165), - [anon_sym_AMP] = ACTIONS(1585), - [anon_sym_LT_LT] = ACTIONS(1151), - [anon_sym_GT_GT] = ACTIONS(1165), - [anon_sym_GT_GT_GT] = ACTIONS(1151), - [anon_sym_EQ_EQ] = ACTIONS(1151), - [anon_sym_BANG_EQ] = ACTIONS(1151), - [anon_sym_GT_EQ] = ACTIONS(1151), - [anon_sym_LT_EQ] = ACTIONS(1151), - [anon_sym_this] = ACTIONS(83), - [anon_sym_DOT] = ACTIONS(1165), + [anon_sym_PLUS] = ACTIONS(1881), + [anon_sym_DASH] = ACTIONS(1881), + [anon_sym_STAR] = ACTIONS(1885), + [anon_sym_SLASH] = ACTIONS(1221), + [anon_sym_PERCENT] = ACTIONS(1219), + [anon_sym_CARET] = ACTIONS(1883), + [anon_sym_PIPE] = ACTIONS(1221), + [anon_sym_AMP] = ACTIONS(1881), + [anon_sym_LT_LT] = ACTIONS(1219), + [anon_sym_GT_GT] = ACTIONS(1221), + [anon_sym_GT_GT_GT] = ACTIONS(1219), + [anon_sym_EQ_EQ] = ACTIONS(1219), + [anon_sym_BANG_EQ] = ACTIONS(1219), + [anon_sym_GT_EQ] = ACTIONS(1219), + [anon_sym_LT_EQ] = ACTIONS(1219), + [anon_sym_this] = ACTIONS(1321), + [anon_sym_DOT] = ACTIONS(1221), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), + [anon_sym_base] = ACTIONS(1323), [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1067), + [anon_sym_unchecked] = ACTIONS(1317), [anon_sym_yield] = ACTIONS(29), - [anon_sym_switch] = ACTIONS(1165), + [anon_sym_switch] = ACTIONS(1221), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1589), + [anon_sym_throw] = ACTIONS(1887), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1591), - [anon_sym_DOT_DOT] = ACTIONS(123), - [anon_sym_AMP_AMP] = ACTIONS(1151), - [anon_sym_PIPE_PIPE] = ACTIONS(1151), - [anon_sym_QMARK_QMARK] = ACTIONS(1151), + [anon_sym_await] = ACTIONS(1889), + [anon_sym_DOT_DOT] = ACTIONS(1891), + [anon_sym_and] = ACTIONS(1221), + [anon_sym_or] = ACTIONS(1221), + [anon_sym_AMP_AMP] = ACTIONS(1219), + [anon_sym_PIPE_PIPE] = ACTIONS(1219), + [anon_sym_QMARK_QMARK] = ACTIONS(1219), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -71486,23 +71372,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(1165), - [anon_sym_is] = ACTIONS(1165), - [anon_sym_DASH_GT] = ACTIONS(1151), - [anon_sym_stackalloc] = ACTIONS(127), - [anon_sym_with] = ACTIONS(1165), + [anon_sym_as] = ACTIONS(1221), + [anon_sym_is] = ACTIONS(1221), + [anon_sym_DASH_GT] = ACTIONS(1219), + [anon_sym_stackalloc] = ACTIONS(1331), + [anon_sym_with] = ACTIONS(1221), [anon_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(1333), + [anon_sym___reftype] = ACTIONS(1335), + [anon_sym___refvalue] = ACTIONS(1337), [sym_null_literal] = ACTIONS(139), [anon_sym_SQUOTE] = ACTIONS(141), [sym_integer_literal] = ACTIONS(139), [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1089), + [aux_sym_preproc_if_token1] = ACTIONS(1339), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -71519,84 +71405,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [213] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2762), - [sym__name] = STATE(5890), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2375), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(4986), - [sym_non_lvalue_expression] = STATE(3438), - [sym_lvalue_expression] = STATE(3526), - [sym__expression_statement_expression] = STATE(3362), - [sym_assignment_expression] = STATE(3449), - [sym_binary_expression] = STATE(3362), - [sym_postfix_unary_expression] = STATE(3449), - [sym_prefix_unary_expression] = STATE(3449), - [sym__pointer_indirection_expression] = STATE(2747), - [sym_query_expression] = STATE(3362), - [sym_from_clause] = STATE(6163), - [sym_conditional_expression] = STATE(3362), - [sym_conditional_access_expression] = STATE(3362), - [sym_as_expression] = STATE(3362), - [sym_is_expression] = STATE(3362), - [sym_is_pattern_expression] = STATE(3362), - [sym_cast_expression] = STATE(3362), - [sym_checked_expression] = STATE(3362), - [sym_invocation_expression] = STATE(3449), - [sym_switch_expression] = STATE(3362), - [sym_await_expression] = STATE(3449), - [sym_throw_expression] = STATE(3362), - [sym_element_access_expression] = STATE(2747), - [sym_interpolated_string_expression] = STATE(3362), - [sym_member_access_expression] = STATE(2747), - [sym_object_creation_expression] = STATE(3449), - [sym_parenthesized_expression] = STATE(3449), - [sym__parenthesized_lvalue_expression] = STATE(2747), - [sym_lambda_expression] = STATE(3362), - [sym__lambda_expression_init] = STATE(7529), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3362), - [sym_anonymous_method_expression] = STATE(3362), - [sym_anonymous_object_creation_expression] = STATE(3362), - [sym_implicit_array_creation_expression] = STATE(3362), - [sym_implicit_object_creation_expression] = STATE(3362), - [sym_implicit_stackalloc_expression] = STATE(3362), - [sym_initializer_expression] = STATE(3362), - [sym_default_expression] = STATE(3362), - [sym_with_expression] = STATE(3362), - [sym_sizeof_expression] = STATE(3362), - [sym_typeof_expression] = STATE(3362), - [sym_makeref_expression] = STATE(3362), - [sym_ref_expression] = STATE(3362), - [sym_reftype_expression] = STATE(3362), - [sym_refvalue_expression] = STATE(3362), - [sym_stackalloc_expression] = STATE(3362), - [sym_range_expression] = STATE(3362), - [sym_tuple_expression] = STATE(2747), - [sym_literal] = STATE(3362), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3362), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2816), + [sym__name] = STATE(5896), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2362), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(4941), + [sym_non_lvalue_expression] = STATE(3495), + [sym_lvalue_expression] = STATE(3513), + [sym__expression_statement_expression] = STATE(3462), + [sym_assignment_expression] = STATE(3497), + [sym_binary_expression] = STATE(3462), + [sym_postfix_unary_expression] = STATE(3497), + [sym_prefix_unary_expression] = STATE(3497), + [sym__pointer_indirection_expression] = STATE(2815), + [sym_query_expression] = STATE(3462), + [sym_from_clause] = STATE(6132), + [sym_conditional_expression] = STATE(3462), + [sym_conditional_access_expression] = STATE(3462), + [sym_as_expression] = STATE(3462), + [sym_is_expression] = STATE(3462), + [sym_is_pattern_expression] = STATE(3462), + [sym_cast_expression] = STATE(3462), + [sym_checked_expression] = STATE(3462), + [sym_invocation_expression] = STATE(3497), + [sym_switch_expression] = STATE(3462), + [sym_await_expression] = STATE(3497), + [sym_throw_expression] = STATE(3462), + [sym_element_access_expression] = STATE(2815), + [sym_interpolated_string_expression] = STATE(3462), + [sym_member_access_expression] = STATE(2815), + [sym_object_creation_expression] = STATE(3497), + [sym_parenthesized_expression] = STATE(3497), + [sym__parenthesized_lvalue_expression] = STATE(2815), + [sym_lambda_expression] = STATE(3462), + [sym__lambda_expression_init] = STATE(7527), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3462), + [sym_anonymous_method_expression] = STATE(3462), + [sym_anonymous_object_creation_expression] = STATE(3462), + [sym_implicit_array_creation_expression] = STATE(3462), + [sym_implicit_object_creation_expression] = STATE(3462), + [sym_implicit_stackalloc_expression] = STATE(3462), + [sym_initializer_expression] = STATE(3462), + [sym_default_expression] = STATE(3462), + [sym_with_expression] = STATE(3462), + [sym_sizeof_expression] = STATE(3462), + [sym_typeof_expression] = STATE(3462), + [sym_makeref_expression] = STATE(3462), + [sym_ref_expression] = STATE(3462), + [sym_reftype_expression] = STATE(3462), + [sym_refvalue_expression] = STATE(3462), + [sym_stackalloc_expression] = STATE(3462), + [sym_range_expression] = STATE(3462), + [sym_tuple_expression] = STATE(2815), + [sym_literal] = STATE(3462), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3462), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(213), [sym_preproc_endregion] = STATE(213), [sym_preproc_line] = STATE(213), @@ -71606,67 +71492,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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3385), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3367), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1307), - [anon_sym_LPAREN] = ACTIONS(1805), - [anon_sym_ref] = ACTIONS(1807), - [anon_sym_LBRACE] = ACTIONS(1313), - [anon_sym_delegate] = ACTIONS(1315), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1305), + [anon_sym_LPAREN] = ACTIONS(1875), + [anon_sym_ref] = ACTIONS(1877), + [anon_sym_LBRACE] = ACTIONS(1311), + [anon_sym_delegate] = ACTIONS(1313), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1809), - [anon_sym_LT] = ACTIONS(1223), - [anon_sym_GT] = ACTIONS(1223), + [anon_sym_new] = ACTIONS(1879), + [anon_sym_LT] = ACTIONS(1161), + [anon_sym_GT] = ACTIONS(1161), [anon_sym_where] = ACTIONS(29), - [anon_sym_QMARK] = ACTIONS(1223), + [anon_sym_QMARK] = ACTIONS(1161), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1319), - [anon_sym_BANG] = ACTIONS(1811), - [anon_sym_TILDE] = ACTIONS(1813), - [anon_sym_PLUS_PLUS] = ACTIONS(1813), - [anon_sym_DASH_DASH] = ACTIONS(1813), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1811), - [anon_sym_DASH] = ACTIONS(1811), - [anon_sym_STAR] = ACTIONS(1815), - [anon_sym_SLASH] = ACTIONS(1223), - [anon_sym_PERCENT] = ACTIONS(1221), - [anon_sym_CARET] = ACTIONS(1813), - [anon_sym_PIPE] = ACTIONS(1223), - [anon_sym_AMP] = ACTIONS(1811), - [anon_sym_LT_LT] = ACTIONS(1221), - [anon_sym_GT_GT] = ACTIONS(1223), - [anon_sym_GT_GT_GT] = ACTIONS(1221), - [anon_sym_EQ_EQ] = ACTIONS(1221), - [anon_sym_BANG_EQ] = ACTIONS(1221), - [anon_sym_GT_EQ] = ACTIONS(1221), - [anon_sym_LT_EQ] = ACTIONS(1221), - [anon_sym_this] = ACTIONS(1323), - [anon_sym_DOT] = ACTIONS(1223), + [anon_sym_checked] = ACTIONS(1317), + [anon_sym_BANG] = ACTIONS(1881), + [anon_sym_TILDE] = ACTIONS(1883), + [anon_sym_PLUS_PLUS] = ACTIONS(1883), + [anon_sym_DASH_DASH] = ACTIONS(1883), + [anon_sym_true] = ACTIONS(77), + [anon_sym_false] = ACTIONS(77), + [anon_sym_PLUS] = ACTIONS(1881), + [anon_sym_DASH] = ACTIONS(1881), + [anon_sym_STAR] = ACTIONS(1885), + [anon_sym_SLASH] = ACTIONS(1161), + [anon_sym_PERCENT] = ACTIONS(1147), + [anon_sym_CARET] = ACTIONS(1883), + [anon_sym_PIPE] = ACTIONS(1161), + [anon_sym_AMP] = ACTIONS(1881), + [anon_sym_LT_LT] = ACTIONS(1147), + [anon_sym_GT_GT] = ACTIONS(1161), + [anon_sym_GT_GT_GT] = ACTIONS(1147), + [anon_sym_EQ_EQ] = ACTIONS(1147), + [anon_sym_BANG_EQ] = ACTIONS(1147), + [anon_sym_GT_EQ] = ACTIONS(1147), + [anon_sym_LT_EQ] = ACTIONS(1147), + [anon_sym_this] = ACTIONS(1321), + [anon_sym_DOT] = ACTIONS(1161), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1325), + [anon_sym_base] = ACTIONS(1323), [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1319), + [anon_sym_unchecked] = ACTIONS(1317), [anon_sym_yield] = ACTIONS(29), - [anon_sym_switch] = ACTIONS(1223), + [anon_sym_switch] = ACTIONS(1161), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1817), + [anon_sym_throw] = ACTIONS(1887), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1819), - [anon_sym_DOT_DOT] = ACTIONS(1821), - [anon_sym_and] = ACTIONS(1223), - [anon_sym_or] = ACTIONS(1223), - [anon_sym_AMP_AMP] = ACTIONS(1221), - [anon_sym_PIPE_PIPE] = ACTIONS(1221), - [anon_sym_QMARK_QMARK] = ACTIONS(1221), + [anon_sym_await] = ACTIONS(1889), + [anon_sym_DOT_DOT] = ACTIONS(1891), + [anon_sym_and] = ACTIONS(1161), + [anon_sym_or] = ACTIONS(1161), + [anon_sym_AMP_AMP] = ACTIONS(1147), + [anon_sym_PIPE_PIPE] = ACTIONS(1147), + [anon_sym_QMARK_QMARK] = ACTIONS(1147), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -71679,23 +71565,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(1223), - [anon_sym_is] = ACTIONS(1223), - [anon_sym_DASH_GT] = ACTIONS(1221), - [anon_sym_stackalloc] = ACTIONS(1333), - [anon_sym_with] = ACTIONS(1223), + [anon_sym_as] = ACTIONS(1161), + [anon_sym_is] = ACTIONS(1161), + [anon_sym_DASH_GT] = ACTIONS(1147), + [anon_sym_stackalloc] = ACTIONS(1331), + [anon_sym_with] = ACTIONS(1161), [anon_sym_sizeof] = ACTIONS(129), [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(1335), - [anon_sym___reftype] = ACTIONS(1337), - [anon_sym___refvalue] = ACTIONS(1339), + [anon_sym___makeref] = ACTIONS(1333), + [anon_sym___reftype] = ACTIONS(1335), + [anon_sym___refvalue] = ACTIONS(1337), [sym_null_literal] = ACTIONS(139), [anon_sym_SQUOTE] = ACTIONS(141), [sym_integer_literal] = ACTIONS(139), [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1341), + [aux_sym_preproc_if_token1] = ACTIONS(1339), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -71712,84 +71598,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [214] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2762), - [sym__name] = STATE(5891), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2372), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(4998), - [sym_non_lvalue_expression] = STATE(3438), - [sym_lvalue_expression] = STATE(3530), - [sym__expression_statement_expression] = STATE(3362), - [sym_assignment_expression] = STATE(3449), - [sym_binary_expression] = STATE(3362), - [sym_postfix_unary_expression] = STATE(3449), - [sym_prefix_unary_expression] = STATE(3449), - [sym__pointer_indirection_expression] = STATE(2747), - [sym_query_expression] = STATE(3362), - [sym_from_clause] = STATE(6167), - [sym_conditional_expression] = STATE(3362), - [sym_conditional_access_expression] = STATE(3362), - [sym_as_expression] = STATE(3362), - [sym_is_expression] = STATE(3362), - [sym_is_pattern_expression] = STATE(3362), - [sym_cast_expression] = STATE(3362), - [sym_checked_expression] = STATE(3362), - [sym_invocation_expression] = STATE(3449), - [sym_switch_expression] = STATE(3362), - [sym_await_expression] = STATE(3449), - [sym_throw_expression] = STATE(3362), - [sym_element_access_expression] = STATE(2747), - [sym_interpolated_string_expression] = STATE(3362), - [sym_member_access_expression] = STATE(2747), - [sym_object_creation_expression] = STATE(3449), - [sym_parenthesized_expression] = STATE(3449), - [sym__parenthesized_lvalue_expression] = STATE(2747), - [sym_lambda_expression] = STATE(3362), - [sym__lambda_expression_init] = STATE(7468), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3362), - [sym_anonymous_method_expression] = STATE(3362), - [sym_anonymous_object_creation_expression] = STATE(3362), - [sym_implicit_array_creation_expression] = STATE(3362), - [sym_implicit_object_creation_expression] = STATE(3362), - [sym_implicit_stackalloc_expression] = STATE(3362), - [sym_initializer_expression] = STATE(3362), - [sym_default_expression] = STATE(3362), - [sym_with_expression] = STATE(3362), - [sym_sizeof_expression] = STATE(3362), - [sym_typeof_expression] = STATE(3362), - [sym_makeref_expression] = STATE(3362), - [sym_ref_expression] = STATE(3362), - [sym_reftype_expression] = STATE(3362), - [sym_refvalue_expression] = STATE(3362), - [sym_stackalloc_expression] = STATE(3362), - [sym_range_expression] = STATE(3362), - [sym_tuple_expression] = STATE(2747), - [sym_literal] = STATE(3362), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3362), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(5152), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2196), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(4944), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3510), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3102), + [sym_postfix_unary_expression] = STATE(3079), + [sym_prefix_unary_expression] = STATE(3079), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6134), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3102), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3079), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3102), + [sym_member_access_expression] = STATE(2472), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3079), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7425), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(3102), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3102), + [sym_typeof_expression] = STATE(3102), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2472), + [sym_literal] = STATE(3102), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(214), [sym_preproc_endregion] = STATE(214), [sym_preproc_line] = STATE(214), @@ -71799,67 +71685,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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3385), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1307), - [anon_sym_LPAREN] = ACTIONS(1895), - [anon_sym_ref] = ACTIONS(1897), - [anon_sym_LBRACE] = ACTIONS(1313), - [anon_sym_delegate] = ACTIONS(1315), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1479), + [anon_sym_COMMA] = ACTIONS(1893), + [anon_sym_RBRACK] = ACTIONS(1893), + [anon_sym_LPAREN] = ACTIONS(43), + [anon_sym_ref] = ACTIONS(715), + [anon_sym_LBRACE] = ACTIONS(1481), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1899), - [anon_sym_LT] = ACTIONS(1165), - [anon_sym_GT] = ACTIONS(1165), + [anon_sym_new] = ACTIONS(1059), + [anon_sym_LT] = ACTIONS(1221), + [anon_sym_GT] = ACTIONS(1221), [anon_sym_where] = ACTIONS(29), - [anon_sym_QMARK] = ACTIONS(1165), + [anon_sym_QMARK] = ACTIONS(1221), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1319), - [anon_sym_BANG] = ACTIONS(1901), - [anon_sym_TILDE] = ACTIONS(1903), - [anon_sym_PLUS_PLUS] = ACTIONS(1903), - [anon_sym_DASH_DASH] = ACTIONS(1903), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(1523), + [anon_sym_TILDE] = ACTIONS(1525), + [anon_sym_PLUS_PLUS] = ACTIONS(1525), + [anon_sym_DASH_DASH] = ACTIONS(1525), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1901), - [anon_sym_DASH] = ACTIONS(1901), - [anon_sym_STAR] = ACTIONS(1905), - [anon_sym_SLASH] = ACTIONS(1165), - [anon_sym_PERCENT] = ACTIONS(1151), - [anon_sym_CARET] = ACTIONS(1903), - [anon_sym_PIPE] = ACTIONS(1165), - [anon_sym_AMP] = ACTIONS(1901), - [anon_sym_LT_LT] = ACTIONS(1151), - [anon_sym_GT_GT] = ACTIONS(1165), - [anon_sym_GT_GT_GT] = ACTIONS(1151), - [anon_sym_EQ_EQ] = ACTIONS(1151), - [anon_sym_BANG_EQ] = ACTIONS(1151), - [anon_sym_GT_EQ] = ACTIONS(1151), - [anon_sym_LT_EQ] = ACTIONS(1151), - [anon_sym_this] = ACTIONS(1323), - [anon_sym_DOT] = ACTIONS(1165), + [anon_sym_PLUS] = ACTIONS(1523), + [anon_sym_DASH] = ACTIONS(1523), + [anon_sym_STAR] = ACTIONS(81), + [anon_sym_SLASH] = ACTIONS(1221), + [anon_sym_PERCENT] = ACTIONS(1219), + [anon_sym_CARET] = ACTIONS(1525), + [anon_sym_PIPE] = ACTIONS(1221), + [anon_sym_AMP] = ACTIONS(1523), + [anon_sym_LT_LT] = ACTIONS(1219), + [anon_sym_GT_GT] = ACTIONS(1221), + [anon_sym_GT_GT_GT] = ACTIONS(1219), + [anon_sym_EQ_EQ] = ACTIONS(1219), + [anon_sym_BANG_EQ] = ACTIONS(1219), + [anon_sym_GT_EQ] = ACTIONS(1219), + [anon_sym_LT_EQ] = ACTIONS(1219), + [anon_sym_this] = ACTIONS(83), + [anon_sym_DOT] = ACTIONS(1221), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1325), + [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1319), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), - [anon_sym_switch] = ACTIONS(1165), + [anon_sym_switch] = ACTIONS(1221), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1907), + [anon_sym_throw] = ACTIONS(1527), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1909), - [anon_sym_DOT_DOT] = ACTIONS(1911), - [anon_sym_and] = ACTIONS(1165), - [anon_sym_or] = ACTIONS(1165), - [anon_sym_AMP_AMP] = ACTIONS(1151), - [anon_sym_PIPE_PIPE] = ACTIONS(1151), - [anon_sym_QMARK_QMARK] = ACTIONS(1151), + [anon_sym_await] = ACTIONS(1529), + [anon_sym_DOT_DOT] = ACTIONS(123), + [anon_sym_AMP_AMP] = ACTIONS(1219), + [anon_sym_PIPE_PIPE] = ACTIONS(1219), + [anon_sym_QMARK_QMARK] = ACTIONS(1219), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -71872,23 +71758,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(1165), - [anon_sym_is] = ACTIONS(1165), - [anon_sym_DASH_GT] = ACTIONS(1151), - [anon_sym_stackalloc] = ACTIONS(1333), - [anon_sym_with] = ACTIONS(1165), + [anon_sym_as] = ACTIONS(1221), + [anon_sym_is] = ACTIONS(1221), + [anon_sym_DASH_GT] = ACTIONS(1219), + [anon_sym_stackalloc] = ACTIONS(127), + [anon_sym_with] = ACTIONS(1221), [anon_sym_sizeof] = ACTIONS(129), [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(1335), - [anon_sym___reftype] = ACTIONS(1337), - [anon_sym___refvalue] = ACTIONS(1339), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), [sym_null_literal] = ACTIONS(139), [anon_sym_SQUOTE] = ACTIONS(141), [sym_integer_literal] = ACTIONS(139), [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1341), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -71905,84 +71791,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [215] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2610), - [sym__name] = STATE(5905), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2395), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(4748), - [sym_non_lvalue_expression] = STATE(3277), - [sym_lvalue_expression] = STATE(3402), - [sym__expression_statement_expression] = STATE(3228), - [sym_assignment_expression] = STATE(3289), - [sym_binary_expression] = STATE(3228), - [sym_postfix_unary_expression] = STATE(3289), - [sym_prefix_unary_expression] = STATE(3289), - [sym__pointer_indirection_expression] = STATE(2609), - [sym_query_expression] = STATE(3228), - [sym_from_clause] = STATE(6166), - [sym_conditional_expression] = STATE(3228), - [sym_conditional_access_expression] = STATE(3228), - [sym_as_expression] = STATE(3228), - [sym_is_expression] = STATE(3228), - [sym_is_pattern_expression] = STATE(3228), - [sym_cast_expression] = STATE(3228), - [sym_checked_expression] = STATE(3228), - [sym_invocation_expression] = STATE(3289), - [sym_switch_expression] = STATE(3228), - [sym_await_expression] = STATE(3289), - [sym_throw_expression] = STATE(3228), - [sym_element_access_expression] = STATE(2609), - [sym_interpolated_string_expression] = STATE(3228), - [sym_member_access_expression] = STATE(2609), - [sym_object_creation_expression] = STATE(3289), - [sym_parenthesized_expression] = STATE(3289), - [sym__parenthesized_lvalue_expression] = STATE(2609), - [sym_lambda_expression] = STATE(3228), - [sym__lambda_expression_init] = STATE(7415), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3228), - [sym_anonymous_method_expression] = STATE(3228), - [sym_anonymous_object_creation_expression] = STATE(3228), - [sym_implicit_array_creation_expression] = STATE(3228), - [sym_implicit_object_creation_expression] = STATE(3228), - [sym_implicit_stackalloc_expression] = STATE(3228), - [sym_initializer_expression] = STATE(3228), - [sym_default_expression] = STATE(3228), - [sym_with_expression] = STATE(3228), - [sym_sizeof_expression] = STATE(3228), - [sym_typeof_expression] = STATE(3228), - [sym_makeref_expression] = STATE(3228), - [sym_ref_expression] = STATE(3228), - [sym_reftype_expression] = STATE(3228), - [sym_refvalue_expression] = STATE(3228), - [sym_stackalloc_expression] = STATE(3228), - [sym_range_expression] = STATE(3228), - [sym_tuple_expression] = STATE(2609), - [sym_literal] = STATE(3228), - [sym_character_literal] = STATE(3278), - [sym_string_literal] = STATE(3278), - [sym_raw_string_literal] = STATE(3278), - [sym_boolean_literal] = STATE(3278), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3228), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(5881), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2386), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(4063), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3110), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3102), + [sym_postfix_unary_expression] = STATE(3079), + [sym_prefix_unary_expression] = STATE(3079), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6153), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3102), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3079), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3102), + [sym_member_access_expression] = STATE(2472), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3079), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7637), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(3102), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3102), + [sym_typeof_expression] = STATE(3102), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2472), + [sym_literal] = STATE(3102), + [sym_character_literal] = STATE(3037), + [sym_string_literal] = STATE(3037), + [sym_raw_string_literal] = STATE(3037), + [sym_boolean_literal] = STATE(3037), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(215), [sym_preproc_endregion] = STATE(215), [sym_preproc_line] = STATE(215), @@ -71992,67 +71878,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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3396), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1153), - [anon_sym_LPAREN] = ACTIONS(1915), - [anon_sym_ref] = ACTIONS(1917), - [anon_sym_LBRACE] = ACTIONS(1159), - [anon_sym_delegate] = ACTIONS(1161), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1479), + [anon_sym_LPAREN] = ACTIONS(1895), + [anon_sym_ref] = ACTIONS(1897), + [anon_sym_LBRACE] = ACTIONS(1481), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1919), - [anon_sym_LT] = ACTIONS(1165), - [anon_sym_GT] = ACTIONS(1165), + [anon_sym_new] = ACTIONS(1899), + [anon_sym_LT] = ACTIONS(1161), + [anon_sym_GT] = ACTIONS(1161), [anon_sym_where] = ACTIONS(29), - [anon_sym_QMARK] = ACTIONS(1165), + [anon_sym_QMARK] = ACTIONS(1161), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1167), - [anon_sym_BANG] = ACTIONS(1921), - [anon_sym_TILDE] = ACTIONS(1923), - [anon_sym_PLUS_PLUS] = ACTIONS(1923), - [anon_sym_DASH_DASH] = ACTIONS(1923), - [anon_sym_true] = ACTIONS(1173), - [anon_sym_false] = ACTIONS(1173), - [anon_sym_PLUS] = ACTIONS(1921), - [anon_sym_DASH] = ACTIONS(1921), - [anon_sym_STAR] = ACTIONS(1925), - [anon_sym_SLASH] = ACTIONS(1165), - [anon_sym_PERCENT] = ACTIONS(1151), - [anon_sym_CARET] = ACTIONS(1923), - [anon_sym_PIPE] = ACTIONS(1165), - [anon_sym_AMP] = ACTIONS(1921), - [anon_sym_LT_LT] = ACTIONS(1151), - [anon_sym_GT_GT] = ACTIONS(1165), - [anon_sym_GT_GT_GT] = ACTIONS(1151), - [anon_sym_EQ_EQ] = ACTIONS(1151), - [anon_sym_BANG_EQ] = ACTIONS(1151), - [anon_sym_GT_EQ] = ACTIONS(1151), - [anon_sym_LT_EQ] = ACTIONS(1151), - [anon_sym_this] = ACTIONS(1177), - [anon_sym_DOT] = ACTIONS(1165), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(1901), + [anon_sym_TILDE] = ACTIONS(1903), + [anon_sym_PLUS_PLUS] = ACTIONS(1903), + [anon_sym_DASH_DASH] = ACTIONS(1903), + [anon_sym_true] = ACTIONS(1257), + [anon_sym_false] = ACTIONS(1257), + [anon_sym_PLUS] = ACTIONS(1901), + [anon_sym_DASH] = ACTIONS(1901), + [anon_sym_STAR] = ACTIONS(1905), + [anon_sym_SLASH] = ACTIONS(1161), + [anon_sym_PERCENT] = ACTIONS(1147), + [anon_sym_CARET] = ACTIONS(1903), + [anon_sym_PIPE] = ACTIONS(1161), + [anon_sym_AMP] = ACTIONS(1901), + [anon_sym_LT_LT] = ACTIONS(1147), + [anon_sym_GT_GT] = ACTIONS(1161), + [anon_sym_GT_GT_GT] = ACTIONS(1147), + [anon_sym_EQ_EQ] = ACTIONS(1147), + [anon_sym_BANG_EQ] = ACTIONS(1147), + [anon_sym_GT_EQ] = ACTIONS(1147), + [anon_sym_LT_EQ] = ACTIONS(1147), + [anon_sym_this] = ACTIONS(83), + [anon_sym_DOT] = ACTIONS(1161), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1179), + [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1181), - [anon_sym_unchecked] = ACTIONS(1167), + [sym_predefined_type] = ACTIONS(1265), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), - [anon_sym_switch] = ACTIONS(1165), - [anon_sym_default] = ACTIONS(1183), - [anon_sym_throw] = ACTIONS(1927), + [anon_sym_switch] = ACTIONS(1161), + [anon_sym_default] = ACTIONS(1267), + [anon_sym_throw] = ACTIONS(1907), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1929), - [anon_sym_DOT_DOT] = ACTIONS(1931), - [anon_sym_and] = ACTIONS(1165), - [anon_sym_or] = ACTIONS(1165), - [anon_sym_AMP_AMP] = ACTIONS(1151), - [anon_sym_PIPE_PIPE] = ACTIONS(1151), - [anon_sym_QMARK_QMARK] = ACTIONS(1151), + [anon_sym_await] = ACTIONS(1909), + [anon_sym_DOT_DOT] = ACTIONS(1911), + [anon_sym_and] = ACTIONS(1161), + [anon_sym_or] = ACTIONS(1161), + [anon_sym_AMP_AMP] = ACTIONS(1147), + [anon_sym_PIPE_PIPE] = ACTIONS(1147), + [anon_sym_QMARK_QMARK] = ACTIONS(1147), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -72065,23 +71951,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(1165), - [anon_sym_is] = ACTIONS(1165), - [anon_sym_DASH_GT] = ACTIONS(1151), - [anon_sym_stackalloc] = ACTIONS(1191), - [anon_sym_with] = ACTIONS(1165), - [anon_sym_sizeof] = ACTIONS(1193), - [anon_sym_typeof] = ACTIONS(1195), - [anon_sym___makeref] = ACTIONS(1197), - [anon_sym___reftype] = ACTIONS(1199), - [anon_sym___refvalue] = ACTIONS(1201), - [sym_null_literal] = ACTIONS(1203), - [anon_sym_SQUOTE] = ACTIONS(1205), - [sym_integer_literal] = ACTIONS(1203), - [sym_real_literal] = ACTIONS(1207), - [anon_sym_DQUOTE] = ACTIONS(1209), - [sym_verbatim_string_literal] = ACTIONS(1207), - [aux_sym_preproc_if_token1] = ACTIONS(1211), + [anon_sym_as] = ACTIONS(1161), + [anon_sym_is] = ACTIONS(1161), + [anon_sym_DASH_GT] = ACTIONS(1147), + [anon_sym_stackalloc] = ACTIONS(127), + [anon_sym_with] = ACTIONS(1161), + [anon_sym_sizeof] = ACTIONS(1277), + [anon_sym_typeof] = ACTIONS(1279), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), + [sym_null_literal] = ACTIONS(1287), + [anon_sym_SQUOTE] = ACTIONS(1289), + [sym_integer_literal] = ACTIONS(1287), + [sym_real_literal] = ACTIONS(1291), + [anon_sym_DQUOTE] = ACTIONS(1293), + [sym_verbatim_string_literal] = ACTIONS(1291), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -72092,90 +71978,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1213), - [sym_interpolation_verbatim_start] = ACTIONS(1215), - [sym_interpolation_raw_start] = ACTIONS(1217), - [sym_raw_string_start] = ACTIONS(1219), + [sym_interpolation_regular_start] = ACTIONS(1297), + [sym_interpolation_verbatim_start] = ACTIONS(1299), + [sym_interpolation_raw_start] = ACTIONS(1301), + [sym_raw_string_start] = ACTIONS(1303), }, [216] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2610), - [sym__name] = STATE(5872), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2397), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(4523), - [sym_non_lvalue_expression] = STATE(3277), - [sym_lvalue_expression] = STATE(3407), - [sym__expression_statement_expression] = STATE(3228), - [sym_assignment_expression] = STATE(3289), - [sym_binary_expression] = STATE(3228), - [sym_postfix_unary_expression] = STATE(3289), - [sym_prefix_unary_expression] = STATE(3289), - [sym__pointer_indirection_expression] = STATE(2609), - [sym_query_expression] = STATE(3228), - [sym_from_clause] = STATE(6165), - [sym_conditional_expression] = STATE(3228), - [sym_conditional_access_expression] = STATE(3228), - [sym_as_expression] = STATE(3228), - [sym_is_expression] = STATE(3228), - [sym_is_pattern_expression] = STATE(3228), - [sym_cast_expression] = STATE(3228), - [sym_checked_expression] = STATE(3228), - [sym_invocation_expression] = STATE(3289), - [sym_switch_expression] = STATE(3228), - [sym_await_expression] = STATE(3289), - [sym_throw_expression] = STATE(3228), - [sym_element_access_expression] = STATE(2609), - [sym_interpolated_string_expression] = STATE(3228), - [sym_member_access_expression] = STATE(2609), - [sym_object_creation_expression] = STATE(3289), - [sym_parenthesized_expression] = STATE(3289), - [sym__parenthesized_lvalue_expression] = STATE(2609), - [sym_lambda_expression] = STATE(3228), - [sym__lambda_expression_init] = STATE(7478), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3228), - [sym_anonymous_method_expression] = STATE(3228), - [sym_anonymous_object_creation_expression] = STATE(3228), - [sym_implicit_array_creation_expression] = STATE(3228), - [sym_implicit_object_creation_expression] = STATE(3228), - [sym_implicit_stackalloc_expression] = STATE(3228), - [sym_initializer_expression] = STATE(3228), - [sym_default_expression] = STATE(3228), - [sym_with_expression] = STATE(3228), - [sym_sizeof_expression] = STATE(3228), - [sym_typeof_expression] = STATE(3228), - [sym_makeref_expression] = STATE(3228), - [sym_ref_expression] = STATE(3228), - [sym_reftype_expression] = STATE(3228), - [sym_refvalue_expression] = STATE(3228), - [sym_stackalloc_expression] = STATE(3228), - [sym_range_expression] = STATE(3228), - [sym_tuple_expression] = STATE(2609), - [sym_literal] = STATE(3228), - [sym_character_literal] = STATE(3278), - [sym_string_literal] = STATE(3278), - [sym_raw_string_literal] = STATE(3278), - [sym_boolean_literal] = STATE(3278), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3228), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2603), + [sym__name] = STATE(5869), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2367), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(4734), + [sym_non_lvalue_expression] = STATE(3220), + [sym_lvalue_expression] = STATE(3377), + [sym__expression_statement_expression] = STATE(3236), + [sym_assignment_expression] = STATE(3221), + [sym_binary_expression] = STATE(3236), + [sym_postfix_unary_expression] = STATE(3221), + [sym_prefix_unary_expression] = STATE(3221), + [sym__pointer_indirection_expression] = STATE(2602), + [sym_query_expression] = STATE(3236), + [sym_from_clause] = STATE(6128), + [sym_conditional_expression] = STATE(3236), + [sym_conditional_access_expression] = STATE(3236), + [sym_as_expression] = STATE(3236), + [sym_is_expression] = STATE(3236), + [sym_is_pattern_expression] = STATE(3236), + [sym_cast_expression] = STATE(3236), + [sym_checked_expression] = STATE(3236), + [sym_invocation_expression] = STATE(3221), + [sym_switch_expression] = STATE(3236), + [sym_await_expression] = STATE(3221), + [sym_throw_expression] = STATE(3236), + [sym_element_access_expression] = STATE(2602), + [sym_interpolated_string_expression] = STATE(3236), + [sym_member_access_expression] = STATE(2602), + [sym_object_creation_expression] = STATE(3221), + [sym_parenthesized_expression] = STATE(3221), + [sym__parenthesized_lvalue_expression] = STATE(2602), + [sym_lambda_expression] = STATE(3236), + [sym__lambda_expression_init] = STATE(7632), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3236), + [sym_anonymous_method_expression] = STATE(3236), + [sym_anonymous_object_creation_expression] = STATE(3236), + [sym_implicit_array_creation_expression] = STATE(3236), + [sym_implicit_object_creation_expression] = STATE(3236), + [sym_implicit_stackalloc_expression] = STATE(3236), + [sym_initializer_expression] = STATE(3236), + [sym_default_expression] = STATE(3236), + [sym_with_expression] = STATE(3236), + [sym_sizeof_expression] = STATE(3236), + [sym_typeof_expression] = STATE(3236), + [sym_makeref_expression] = STATE(3236), + [sym_ref_expression] = STATE(3236), + [sym_reftype_expression] = STATE(3236), + [sym_refvalue_expression] = STATE(3236), + [sym_stackalloc_expression] = STATE(3236), + [sym_range_expression] = STATE(3236), + [sym_tuple_expression] = STATE(2602), + [sym_literal] = STATE(3236), + [sym_character_literal] = STATE(3272), + [sym_string_literal] = STATE(3272), + [sym_raw_string_literal] = STATE(3272), + [sym_boolean_literal] = STATE(3272), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3236), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(216), [sym_preproc_endregion] = STATE(216), [sym_preproc_line] = STATE(216), @@ -72185,67 +72071,67 @@ 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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3396), - [sym__identifier_token] = ACTIONS(25), - [anon_sym_alias] = ACTIONS(29), - [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1153), - [anon_sym_LPAREN] = ACTIONS(1823), - [anon_sym_ref] = ACTIONS(1825), - [anon_sym_LBRACE] = ACTIONS(1159), - [anon_sym_delegate] = ACTIONS(1161), - [anon_sym_async] = ACTIONS(1047), - [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1827), - [anon_sym_LT] = ACTIONS(1223), - [anon_sym_GT] = ACTIONS(1223), - [anon_sym_where] = ACTIONS(29), - [anon_sym_QMARK] = ACTIONS(1223), - [anon_sym_notnull] = ACTIONS(29), - [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1167), - [anon_sym_BANG] = ACTIONS(1829), - [anon_sym_TILDE] = ACTIONS(1831), - [anon_sym_PLUS_PLUS] = ACTIONS(1831), - [anon_sym_DASH_DASH] = ACTIONS(1831), - [anon_sym_true] = ACTIONS(1173), - [anon_sym_false] = ACTIONS(1173), - [anon_sym_PLUS] = ACTIONS(1829), - [anon_sym_DASH] = ACTIONS(1829), - [anon_sym_STAR] = ACTIONS(1833), - [anon_sym_SLASH] = ACTIONS(1223), - [anon_sym_PERCENT] = ACTIONS(1221), - [anon_sym_CARET] = ACTIONS(1831), - [anon_sym_PIPE] = ACTIONS(1223), - [anon_sym_AMP] = ACTIONS(1829), - [anon_sym_LT_LT] = ACTIONS(1221), - [anon_sym_GT_GT] = ACTIONS(1223), - [anon_sym_GT_GT_GT] = ACTIONS(1221), - [anon_sym_EQ_EQ] = ACTIONS(1221), - [anon_sym_BANG_EQ] = ACTIONS(1221), - [anon_sym_GT_EQ] = ACTIONS(1221), - [anon_sym_LT_EQ] = ACTIONS(1221), - [anon_sym_this] = ACTIONS(1177), - [anon_sym_DOT] = ACTIONS(1223), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1179), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1181), - [anon_sym_unchecked] = ACTIONS(1167), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3379), + [sym__identifier_token] = ACTIONS(25), + [anon_sym_alias] = ACTIONS(29), + [anon_sym_global] = ACTIONS(29), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1149), + [anon_sym_LPAREN] = ACTIONS(1913), + [anon_sym_ref] = ACTIONS(1915), + [anon_sym_LBRACE] = ACTIONS(1155), + [anon_sym_delegate] = ACTIONS(1157), + [anon_sym_async] = ACTIONS(1045), + [anon_sym_file] = ACTIONS(29), + [anon_sym_new] = ACTIONS(1917), + [anon_sym_LT] = ACTIONS(1221), + [anon_sym_GT] = ACTIONS(1221), + [anon_sym_where] = ACTIONS(29), + [anon_sym_QMARK] = ACTIONS(1221), + [anon_sym_notnull] = ACTIONS(29), + [anon_sym_unmanaged] = ACTIONS(29), + [anon_sym_checked] = ACTIONS(1163), + [anon_sym_BANG] = ACTIONS(1919), + [anon_sym_TILDE] = ACTIONS(1921), + [anon_sym_PLUS_PLUS] = ACTIONS(1921), + [anon_sym_DASH_DASH] = ACTIONS(1921), + [anon_sym_true] = ACTIONS(1169), + [anon_sym_false] = ACTIONS(1169), + [anon_sym_PLUS] = ACTIONS(1919), + [anon_sym_DASH] = ACTIONS(1919), + [anon_sym_STAR] = ACTIONS(1923), + [anon_sym_SLASH] = ACTIONS(1221), + [anon_sym_PERCENT] = ACTIONS(1219), + [anon_sym_CARET] = ACTIONS(1921), + [anon_sym_PIPE] = ACTIONS(1221), + [anon_sym_AMP] = ACTIONS(1919), + [anon_sym_LT_LT] = ACTIONS(1219), + [anon_sym_GT_GT] = ACTIONS(1221), + [anon_sym_GT_GT_GT] = ACTIONS(1219), + [anon_sym_EQ_EQ] = ACTIONS(1219), + [anon_sym_BANG_EQ] = ACTIONS(1219), + [anon_sym_GT_EQ] = ACTIONS(1219), + [anon_sym_LT_EQ] = ACTIONS(1219), + [anon_sym_this] = ACTIONS(1173), + [anon_sym_DOT] = ACTIONS(1221), + [anon_sym_scoped] = ACTIONS(85), + [anon_sym_base] = ACTIONS(1175), + [anon_sym_var] = ACTIONS(89), + [sym_predefined_type] = ACTIONS(1177), + [anon_sym_unchecked] = ACTIONS(1163), [anon_sym_yield] = ACTIONS(29), - [anon_sym_switch] = ACTIONS(1223), - [anon_sym_default] = ACTIONS(1183), - [anon_sym_throw] = ACTIONS(1835), + [anon_sym_switch] = ACTIONS(1221), + [anon_sym_default] = ACTIONS(1179), + [anon_sym_throw] = ACTIONS(1925), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1837), - [anon_sym_DOT_DOT] = ACTIONS(1839), - [anon_sym_and] = ACTIONS(1223), - [anon_sym_or] = ACTIONS(1223), - [anon_sym_AMP_AMP] = ACTIONS(1221), - [anon_sym_PIPE_PIPE] = ACTIONS(1221), - [anon_sym_QMARK_QMARK] = ACTIONS(1221), + [anon_sym_await] = ACTIONS(1927), + [anon_sym_DOT_DOT] = ACTIONS(1929), + [anon_sym_and] = ACTIONS(1221), + [anon_sym_or] = ACTIONS(1221), + [anon_sym_AMP_AMP] = ACTIONS(1219), + [anon_sym_PIPE_PIPE] = ACTIONS(1219), + [anon_sym_QMARK_QMARK] = ACTIONS(1219), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -72258,23 +72144,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(1223), - [anon_sym_is] = ACTIONS(1223), - [anon_sym_DASH_GT] = ACTIONS(1221), - [anon_sym_stackalloc] = ACTIONS(1191), - [anon_sym_with] = ACTIONS(1223), - [anon_sym_sizeof] = ACTIONS(1193), - [anon_sym_typeof] = ACTIONS(1195), - [anon_sym___makeref] = ACTIONS(1197), - [anon_sym___reftype] = ACTIONS(1199), - [anon_sym___refvalue] = ACTIONS(1201), - [sym_null_literal] = ACTIONS(1203), - [anon_sym_SQUOTE] = ACTIONS(1205), - [sym_integer_literal] = ACTIONS(1203), - [sym_real_literal] = ACTIONS(1207), - [anon_sym_DQUOTE] = ACTIONS(1209), - [sym_verbatim_string_literal] = ACTIONS(1207), - [aux_sym_preproc_if_token1] = ACTIONS(1211), + [anon_sym_as] = ACTIONS(1221), + [anon_sym_is] = ACTIONS(1221), + [anon_sym_DASH_GT] = ACTIONS(1219), + [anon_sym_stackalloc] = ACTIONS(1187), + [anon_sym_with] = ACTIONS(1221), + [anon_sym_sizeof] = ACTIONS(1189), + [anon_sym_typeof] = ACTIONS(1191), + [anon_sym___makeref] = ACTIONS(1193), + [anon_sym___reftype] = ACTIONS(1195), + [anon_sym___refvalue] = ACTIONS(1197), + [sym_null_literal] = ACTIONS(1199), + [anon_sym_SQUOTE] = ACTIONS(1201), + [sym_integer_literal] = ACTIONS(1199), + [sym_real_literal] = ACTIONS(1203), + [anon_sym_DQUOTE] = ACTIONS(1205), + [sym_verbatim_string_literal] = ACTIONS(1203), + [aux_sym_preproc_if_token1] = ACTIONS(1207), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -72285,90 +72171,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1213), - [sym_interpolation_verbatim_start] = ACTIONS(1215), - [sym_interpolation_raw_start] = ACTIONS(1217), - [sym_raw_string_start] = ACTIONS(1219), + [sym_interpolation_regular_start] = ACTIONS(1209), + [sym_interpolation_verbatim_start] = ACTIONS(1211), + [sym_interpolation_raw_start] = ACTIONS(1213), + [sym_raw_string_start] = ACTIONS(1215), }, [217] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2610), - [sym__name] = STATE(5905), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2395), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(4714), - [sym_non_lvalue_expression] = STATE(3277), - [sym_lvalue_expression] = STATE(3402), - [sym__expression_statement_expression] = STATE(3228), - [sym_assignment_expression] = STATE(3289), - [sym_binary_expression] = STATE(3228), - [sym_postfix_unary_expression] = STATE(3289), - [sym_prefix_unary_expression] = STATE(3289), - [sym__pointer_indirection_expression] = STATE(2609), - [sym_query_expression] = STATE(3228), - [sym_from_clause] = STATE(6166), - [sym_conditional_expression] = STATE(3228), - [sym_conditional_access_expression] = STATE(3228), - [sym_as_expression] = STATE(3228), - [sym_is_expression] = STATE(3228), - [sym_is_pattern_expression] = STATE(3228), - [sym_cast_expression] = STATE(3228), - [sym_checked_expression] = STATE(3228), - [sym_invocation_expression] = STATE(3289), - [sym_switch_expression] = STATE(3228), - [sym_await_expression] = STATE(3289), - [sym_throw_expression] = STATE(3228), - [sym_element_access_expression] = STATE(2609), - [sym_interpolated_string_expression] = STATE(3228), - [sym_member_access_expression] = STATE(2609), - [sym_object_creation_expression] = STATE(3289), - [sym_parenthesized_expression] = STATE(3289), - [sym__parenthesized_lvalue_expression] = STATE(2609), - [sym_lambda_expression] = STATE(3228), - [sym__lambda_expression_init] = STATE(7415), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3228), - [sym_anonymous_method_expression] = STATE(3228), - [sym_anonymous_object_creation_expression] = STATE(3228), - [sym_implicit_array_creation_expression] = STATE(3228), - [sym_implicit_object_creation_expression] = STATE(3228), - [sym_implicit_stackalloc_expression] = STATE(3228), - [sym_initializer_expression] = STATE(3228), - [sym_default_expression] = STATE(3228), - [sym_with_expression] = STATE(3228), - [sym_sizeof_expression] = STATE(3228), - [sym_typeof_expression] = STATE(3228), - [sym_makeref_expression] = STATE(3228), - [sym_ref_expression] = STATE(3228), - [sym_reftype_expression] = STATE(3228), - [sym_refvalue_expression] = STATE(3228), - [sym_stackalloc_expression] = STATE(3228), - [sym_range_expression] = STATE(3228), - [sym_tuple_expression] = STATE(2609), - [sym_literal] = STATE(3228), - [sym_character_literal] = STATE(3278), - [sym_string_literal] = STATE(3278), - [sym_raw_string_literal] = STATE(3278), - [sym_boolean_literal] = STATE(3278), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3228), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2603), + [sym__name] = STATE(5869), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2367), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(4536), + [sym_non_lvalue_expression] = STATE(3220), + [sym_lvalue_expression] = STATE(3377), + [sym__expression_statement_expression] = STATE(3236), + [sym_assignment_expression] = STATE(3221), + [sym_binary_expression] = STATE(3236), + [sym_postfix_unary_expression] = STATE(3221), + [sym_prefix_unary_expression] = STATE(3221), + [sym__pointer_indirection_expression] = STATE(2602), + [sym_query_expression] = STATE(3236), + [sym_from_clause] = STATE(6128), + [sym_conditional_expression] = STATE(3236), + [sym_conditional_access_expression] = STATE(3236), + [sym_as_expression] = STATE(3236), + [sym_is_expression] = STATE(3236), + [sym_is_pattern_expression] = STATE(3236), + [sym_cast_expression] = STATE(3236), + [sym_checked_expression] = STATE(3236), + [sym_invocation_expression] = STATE(3221), + [sym_switch_expression] = STATE(3236), + [sym_await_expression] = STATE(3221), + [sym_throw_expression] = STATE(3236), + [sym_element_access_expression] = STATE(2602), + [sym_interpolated_string_expression] = STATE(3236), + [sym_member_access_expression] = STATE(2602), + [sym_object_creation_expression] = STATE(3221), + [sym_parenthesized_expression] = STATE(3221), + [sym__parenthesized_lvalue_expression] = STATE(2602), + [sym_lambda_expression] = STATE(3236), + [sym__lambda_expression_init] = STATE(7632), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3236), + [sym_anonymous_method_expression] = STATE(3236), + [sym_anonymous_object_creation_expression] = STATE(3236), + [sym_implicit_array_creation_expression] = STATE(3236), + [sym_implicit_object_creation_expression] = STATE(3236), + [sym_implicit_stackalloc_expression] = STATE(3236), + [sym_initializer_expression] = STATE(3236), + [sym_default_expression] = STATE(3236), + [sym_with_expression] = STATE(3236), + [sym_sizeof_expression] = STATE(3236), + [sym_typeof_expression] = STATE(3236), + [sym_makeref_expression] = STATE(3236), + [sym_ref_expression] = STATE(3236), + [sym_reftype_expression] = STATE(3236), + [sym_refvalue_expression] = STATE(3236), + [sym_stackalloc_expression] = STATE(3236), + [sym_range_expression] = STATE(3236), + [sym_tuple_expression] = STATE(2602), + [sym_literal] = STATE(3236), + [sym_character_literal] = STATE(3272), + [sym_string_literal] = STATE(3272), + [sym_raw_string_literal] = STATE(3272), + [sym_boolean_literal] = STATE(3272), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3236), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(217), [sym_preproc_endregion] = STATE(217), [sym_preproc_line] = STATE(217), @@ -72378,67 +72264,67 @@ 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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3396), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3379), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1153), - [anon_sym_LPAREN] = ACTIONS(1915), - [anon_sym_ref] = ACTIONS(1917), - [anon_sym_LBRACE] = ACTIONS(1159), - [anon_sym_delegate] = ACTIONS(1161), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1149), + [anon_sym_LPAREN] = ACTIONS(1913), + [anon_sym_ref] = ACTIONS(1915), + [anon_sym_LBRACE] = ACTIONS(1155), + [anon_sym_delegate] = ACTIONS(1157), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1919), - [anon_sym_LT] = ACTIONS(1223), - [anon_sym_GT] = ACTIONS(1223), + [anon_sym_new] = ACTIONS(1917), + [anon_sym_LT] = ACTIONS(1161), + [anon_sym_GT] = ACTIONS(1161), [anon_sym_where] = ACTIONS(29), - [anon_sym_QMARK] = ACTIONS(1223), + [anon_sym_QMARK] = ACTIONS(1161), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1167), - [anon_sym_BANG] = ACTIONS(1921), - [anon_sym_TILDE] = ACTIONS(1923), - [anon_sym_PLUS_PLUS] = ACTIONS(1923), - [anon_sym_DASH_DASH] = ACTIONS(1923), - [anon_sym_true] = ACTIONS(1173), - [anon_sym_false] = ACTIONS(1173), - [anon_sym_PLUS] = ACTIONS(1921), - [anon_sym_DASH] = ACTIONS(1921), - [anon_sym_STAR] = ACTIONS(1925), - [anon_sym_SLASH] = ACTIONS(1223), - [anon_sym_PERCENT] = ACTIONS(1221), - [anon_sym_CARET] = ACTIONS(1923), - [anon_sym_PIPE] = ACTIONS(1223), - [anon_sym_AMP] = ACTIONS(1921), - [anon_sym_LT_LT] = ACTIONS(1221), - [anon_sym_GT_GT] = ACTIONS(1223), - [anon_sym_GT_GT_GT] = ACTIONS(1221), - [anon_sym_EQ_EQ] = ACTIONS(1221), - [anon_sym_BANG_EQ] = ACTIONS(1221), - [anon_sym_GT_EQ] = ACTIONS(1221), - [anon_sym_LT_EQ] = ACTIONS(1221), - [anon_sym_this] = ACTIONS(1177), - [anon_sym_DOT] = ACTIONS(1223), + [anon_sym_checked] = ACTIONS(1163), + [anon_sym_BANG] = ACTIONS(1919), + [anon_sym_TILDE] = ACTIONS(1921), + [anon_sym_PLUS_PLUS] = ACTIONS(1921), + [anon_sym_DASH_DASH] = ACTIONS(1921), + [anon_sym_true] = ACTIONS(1169), + [anon_sym_false] = ACTIONS(1169), + [anon_sym_PLUS] = ACTIONS(1919), + [anon_sym_DASH] = ACTIONS(1919), + [anon_sym_STAR] = ACTIONS(1923), + [anon_sym_SLASH] = ACTIONS(1161), + [anon_sym_PERCENT] = ACTIONS(1147), + [anon_sym_CARET] = ACTIONS(1921), + [anon_sym_PIPE] = ACTIONS(1161), + [anon_sym_AMP] = ACTIONS(1919), + [anon_sym_LT_LT] = ACTIONS(1147), + [anon_sym_GT_GT] = ACTIONS(1161), + [anon_sym_GT_GT_GT] = ACTIONS(1147), + [anon_sym_EQ_EQ] = ACTIONS(1147), + [anon_sym_BANG_EQ] = ACTIONS(1147), + [anon_sym_GT_EQ] = ACTIONS(1147), + [anon_sym_LT_EQ] = ACTIONS(1147), + [anon_sym_this] = ACTIONS(1173), + [anon_sym_DOT] = ACTIONS(1161), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1179), + [anon_sym_base] = ACTIONS(1175), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1181), - [anon_sym_unchecked] = ACTIONS(1167), + [sym_predefined_type] = ACTIONS(1177), + [anon_sym_unchecked] = ACTIONS(1163), [anon_sym_yield] = ACTIONS(29), - [anon_sym_switch] = ACTIONS(1223), - [anon_sym_default] = ACTIONS(1183), - [anon_sym_throw] = ACTIONS(1927), + [anon_sym_switch] = ACTIONS(1161), + [anon_sym_default] = ACTIONS(1179), + [anon_sym_throw] = ACTIONS(1925), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1929), - [anon_sym_DOT_DOT] = ACTIONS(1931), - [anon_sym_and] = ACTIONS(1223), - [anon_sym_or] = ACTIONS(1223), - [anon_sym_AMP_AMP] = ACTIONS(1221), - [anon_sym_PIPE_PIPE] = ACTIONS(1221), - [anon_sym_QMARK_QMARK] = ACTIONS(1221), + [anon_sym_await] = ACTIONS(1927), + [anon_sym_DOT_DOT] = ACTIONS(1929), + [anon_sym_and] = ACTIONS(1161), + [anon_sym_or] = ACTIONS(1161), + [anon_sym_AMP_AMP] = ACTIONS(1147), + [anon_sym_PIPE_PIPE] = ACTIONS(1147), + [anon_sym_QMARK_QMARK] = ACTIONS(1147), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -72451,23 +72337,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(1223), - [anon_sym_is] = ACTIONS(1223), - [anon_sym_DASH_GT] = ACTIONS(1221), - [anon_sym_stackalloc] = ACTIONS(1191), - [anon_sym_with] = ACTIONS(1223), - [anon_sym_sizeof] = ACTIONS(1193), - [anon_sym_typeof] = ACTIONS(1195), - [anon_sym___makeref] = ACTIONS(1197), - [anon_sym___reftype] = ACTIONS(1199), - [anon_sym___refvalue] = ACTIONS(1201), - [sym_null_literal] = ACTIONS(1203), - [anon_sym_SQUOTE] = ACTIONS(1205), - [sym_integer_literal] = ACTIONS(1203), - [sym_real_literal] = ACTIONS(1207), - [anon_sym_DQUOTE] = ACTIONS(1209), - [sym_verbatim_string_literal] = ACTIONS(1207), - [aux_sym_preproc_if_token1] = ACTIONS(1211), + [anon_sym_as] = ACTIONS(1161), + [anon_sym_is] = ACTIONS(1161), + [anon_sym_DASH_GT] = ACTIONS(1147), + [anon_sym_stackalloc] = ACTIONS(1187), + [anon_sym_with] = ACTIONS(1161), + [anon_sym_sizeof] = ACTIONS(1189), + [anon_sym_typeof] = ACTIONS(1191), + [anon_sym___makeref] = ACTIONS(1193), + [anon_sym___reftype] = ACTIONS(1195), + [anon_sym___refvalue] = ACTIONS(1197), + [sym_null_literal] = ACTIONS(1199), + [anon_sym_SQUOTE] = ACTIONS(1201), + [sym_integer_literal] = ACTIONS(1199), + [sym_real_literal] = ACTIONS(1203), + [anon_sym_DQUOTE] = ACTIONS(1205), + [sym_verbatim_string_literal] = ACTIONS(1203), + [aux_sym_preproc_if_token1] = ACTIONS(1207), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -72478,90 +72364,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1213), - [sym_interpolation_verbatim_start] = ACTIONS(1215), - [sym_interpolation_raw_start] = ACTIONS(1217), - [sym_raw_string_start] = ACTIONS(1219), + [sym_interpolation_regular_start] = ACTIONS(1209), + [sym_interpolation_verbatim_start] = ACTIONS(1211), + [sym_interpolation_raw_start] = ACTIONS(1213), + [sym_raw_string_start] = ACTIONS(1215), }, [218] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(5907), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2404), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(4094), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3122), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3080), - [sym_postfix_unary_expression] = STATE(3111), - [sym_prefix_unary_expression] = STATE(3111), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6149), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3080), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3111), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3080), - [sym_member_access_expression] = STATE(2484), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3111), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7563), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(3080), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3080), - [sym_typeof_expression] = STATE(3080), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2484), - [sym_literal] = STATE(3080), - [sym_character_literal] = STATE(3011), - [sym_string_literal] = STATE(3011), - [sym_raw_string_literal] = STATE(3011), - [sym_boolean_literal] = STATE(3011), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(5881), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2386), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(4090), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3110), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3102), + [sym_postfix_unary_expression] = STATE(3079), + [sym_prefix_unary_expression] = STATE(3079), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6153), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3102), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3079), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3102), + [sym_member_access_expression] = STATE(2472), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3079), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7637), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(3102), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3102), + [sym_typeof_expression] = STATE(3102), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2472), + [sym_literal] = STATE(3102), + [sym_character_literal] = STATE(3037), + [sym_string_literal] = STATE(3037), + [sym_raw_string_literal] = STATE(3037), + [sym_boolean_literal] = STATE(3037), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(218), [sym_preproc_endregion] = STATE(218), [sym_preproc_line] = STATE(218), @@ -72571,67 +72457,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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1481), - [anon_sym_LPAREN] = ACTIONS(1933), - [anon_sym_ref] = ACTIONS(1935), - [anon_sym_LBRACE] = ACTIONS(1487), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1479), + [anon_sym_LPAREN] = ACTIONS(1895), + [anon_sym_ref] = ACTIONS(1897), + [anon_sym_LBRACE] = ACTIONS(1481), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1937), - [anon_sym_LT] = ACTIONS(1223), - [anon_sym_GT] = ACTIONS(1223), + [anon_sym_new] = ACTIONS(1899), + [anon_sym_LT] = ACTIONS(1221), + [anon_sym_GT] = ACTIONS(1221), [anon_sym_where] = ACTIONS(29), - [anon_sym_QMARK] = ACTIONS(1223), + [anon_sym_QMARK] = ACTIONS(1221), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1067), - [anon_sym_BANG] = ACTIONS(1939), - [anon_sym_TILDE] = ACTIONS(1941), - [anon_sym_PLUS_PLUS] = ACTIONS(1941), - [anon_sym_DASH_DASH] = ACTIONS(1941), - [anon_sym_true] = ACTIONS(1259), - [anon_sym_false] = ACTIONS(1259), - [anon_sym_PLUS] = ACTIONS(1939), - [anon_sym_DASH] = ACTIONS(1939), - [anon_sym_STAR] = ACTIONS(1943), - [anon_sym_SLASH] = ACTIONS(1223), - [anon_sym_PERCENT] = ACTIONS(1221), - [anon_sym_CARET] = ACTIONS(1941), - [anon_sym_PIPE] = ACTIONS(1223), - [anon_sym_AMP] = ACTIONS(1939), - [anon_sym_LT_LT] = ACTIONS(1221), - [anon_sym_GT_GT] = ACTIONS(1223), - [anon_sym_GT_GT_GT] = ACTIONS(1221), - [anon_sym_EQ_EQ] = ACTIONS(1221), - [anon_sym_BANG_EQ] = ACTIONS(1221), - [anon_sym_GT_EQ] = ACTIONS(1221), - [anon_sym_LT_EQ] = ACTIONS(1221), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(1901), + [anon_sym_TILDE] = ACTIONS(1903), + [anon_sym_PLUS_PLUS] = ACTIONS(1903), + [anon_sym_DASH_DASH] = ACTIONS(1903), + [anon_sym_true] = ACTIONS(1257), + [anon_sym_false] = ACTIONS(1257), + [anon_sym_PLUS] = ACTIONS(1901), + [anon_sym_DASH] = ACTIONS(1901), + [anon_sym_STAR] = ACTIONS(1905), + [anon_sym_SLASH] = ACTIONS(1221), + [anon_sym_PERCENT] = ACTIONS(1219), + [anon_sym_CARET] = ACTIONS(1903), + [anon_sym_PIPE] = ACTIONS(1221), + [anon_sym_AMP] = ACTIONS(1901), + [anon_sym_LT_LT] = ACTIONS(1219), + [anon_sym_GT_GT] = ACTIONS(1221), + [anon_sym_GT_GT_GT] = ACTIONS(1219), + [anon_sym_EQ_EQ] = ACTIONS(1219), + [anon_sym_BANG_EQ] = ACTIONS(1219), + [anon_sym_GT_EQ] = ACTIONS(1219), + [anon_sym_LT_EQ] = ACTIONS(1219), [anon_sym_this] = ACTIONS(83), - [anon_sym_DOT] = ACTIONS(1223), + [anon_sym_DOT] = ACTIONS(1221), [anon_sym_scoped] = ACTIONS(85), [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1267), - [anon_sym_unchecked] = ACTIONS(1067), + [sym_predefined_type] = ACTIONS(1265), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), - [anon_sym_switch] = ACTIONS(1223), - [anon_sym_default] = ACTIONS(1269), - [anon_sym_throw] = ACTIONS(1945), + [anon_sym_switch] = ACTIONS(1221), + [anon_sym_default] = ACTIONS(1267), + [anon_sym_throw] = ACTIONS(1907), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1947), - [anon_sym_DOT_DOT] = ACTIONS(1949), - [anon_sym_and] = ACTIONS(1223), - [anon_sym_or] = ACTIONS(1223), - [anon_sym_AMP_AMP] = ACTIONS(1221), - [anon_sym_PIPE_PIPE] = ACTIONS(1221), - [anon_sym_QMARK_QMARK] = ACTIONS(1221), + [anon_sym_await] = ACTIONS(1909), + [anon_sym_DOT_DOT] = ACTIONS(1911), + [anon_sym_and] = ACTIONS(1221), + [anon_sym_or] = ACTIONS(1221), + [anon_sym_AMP_AMP] = ACTIONS(1219), + [anon_sym_PIPE_PIPE] = ACTIONS(1219), + [anon_sym_QMARK_QMARK] = ACTIONS(1219), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -72644,23 +72530,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(1223), - [anon_sym_is] = ACTIONS(1223), - [anon_sym_DASH_GT] = ACTIONS(1221), + [anon_sym_as] = ACTIONS(1221), + [anon_sym_is] = ACTIONS(1221), + [anon_sym_DASH_GT] = ACTIONS(1219), [anon_sym_stackalloc] = ACTIONS(127), - [anon_sym_with] = ACTIONS(1223), - [anon_sym_sizeof] = ACTIONS(1279), - [anon_sym_typeof] = ACTIONS(1281), + [anon_sym_with] = ACTIONS(1221), + [anon_sym_sizeof] = ACTIONS(1277), + [anon_sym_typeof] = ACTIONS(1279), [anon_sym___makeref] = ACTIONS(133), [anon_sym___reftype] = ACTIONS(135), [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(1289), - [anon_sym_SQUOTE] = ACTIONS(1291), - [sym_integer_literal] = ACTIONS(1289), - [sym_real_literal] = ACTIONS(1293), - [anon_sym_DQUOTE] = ACTIONS(1295), - [sym_verbatim_string_literal] = ACTIONS(1293), - [aux_sym_preproc_if_token1] = ACTIONS(1089), + [sym_null_literal] = ACTIONS(1287), + [anon_sym_SQUOTE] = ACTIONS(1289), + [sym_integer_literal] = ACTIONS(1287), + [sym_real_literal] = ACTIONS(1291), + [anon_sym_DQUOTE] = ACTIONS(1293), + [sym_verbatim_string_literal] = ACTIONS(1291), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -72671,90 +72557,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1299), - [sym_interpolation_verbatim_start] = ACTIONS(1301), - [sym_interpolation_raw_start] = ACTIONS(1303), - [sym_raw_string_start] = ACTIONS(1305), + [sym_interpolation_regular_start] = ACTIONS(1297), + [sym_interpolation_verbatim_start] = ACTIONS(1299), + [sym_interpolation_raw_start] = ACTIONS(1301), + [sym_raw_string_start] = ACTIONS(1303), }, [219] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2420), - [sym__name] = STATE(5875), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2369), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(4057), - [sym_non_lvalue_expression] = STATE(3066), - [sym_lvalue_expression] = STATE(3109), - [sym__expression_statement_expression] = STATE(3006), - [sym_assignment_expression] = STATE(3020), - [sym_binary_expression] = STATE(3006), - [sym_postfix_unary_expression] = STATE(3020), - [sym_prefix_unary_expression] = STATE(3020), - [sym__pointer_indirection_expression] = STATE(2423), - [sym_query_expression] = STATE(3006), - [sym_from_clause] = STATE(6179), - [sym_conditional_expression] = STATE(3006), - [sym_conditional_access_expression] = STATE(3006), - [sym_as_expression] = STATE(3006), - [sym_is_expression] = STATE(3006), - [sym_is_pattern_expression] = STATE(3006), - [sym_cast_expression] = STATE(3006), - [sym_checked_expression] = STATE(3006), - [sym_invocation_expression] = STATE(3020), - [sym_switch_expression] = STATE(3006), - [sym_await_expression] = STATE(3020), - [sym_throw_expression] = STATE(3006), - [sym_element_access_expression] = STATE(2423), - [sym_interpolated_string_expression] = STATE(3006), - [sym_member_access_expression] = STATE(2423), - [sym_object_creation_expression] = STATE(3020), - [sym_parenthesized_expression] = STATE(3020), - [sym__parenthesized_lvalue_expression] = STATE(2423), - [sym_lambda_expression] = STATE(3006), - [sym__lambda_expression_init] = STATE(7522), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3006), - [sym_anonymous_method_expression] = STATE(3006), - [sym_anonymous_object_creation_expression] = STATE(3006), - [sym_implicit_array_creation_expression] = STATE(3006), - [sym_implicit_object_creation_expression] = STATE(3006), - [sym_implicit_stackalloc_expression] = STATE(3006), - [sym_initializer_expression] = STATE(3006), - [sym_default_expression] = STATE(3006), - [sym_with_expression] = STATE(3006), - [sym_sizeof_expression] = STATE(3006), - [sym_typeof_expression] = STATE(3006), - [sym_makeref_expression] = STATE(3006), - [sym_ref_expression] = STATE(3006), - [sym_reftype_expression] = STATE(3006), - [sym_refvalue_expression] = STATE(3006), - [sym_stackalloc_expression] = STATE(3006), - [sym_range_expression] = STATE(3006), - [sym_tuple_expression] = STATE(2423), - [sym_literal] = STATE(3006), - [sym_character_literal] = STATE(3011), - [sym_string_literal] = STATE(3011), - [sym_raw_string_literal] = STATE(3011), - [sym_boolean_literal] = STATE(3011), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3006), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2416), + [sym__name] = STATE(5885), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2404), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(3995), + [sym_non_lvalue_expression] = STATE(3040), + [sym_lvalue_expression] = STATE(3100), + [sym__expression_statement_expression] = STATE(3035), + [sym_assignment_expression] = STATE(3043), + [sym_binary_expression] = STATE(3035), + [sym_postfix_unary_expression] = STATE(3043), + [sym_prefix_unary_expression] = STATE(3043), + [sym__pointer_indirection_expression] = STATE(2415), + [sym_query_expression] = STATE(3035), + [sym_from_clause] = STATE(6135), + [sym_conditional_expression] = STATE(3035), + [sym_conditional_access_expression] = STATE(3035), + [sym_as_expression] = STATE(3035), + [sym_is_expression] = STATE(3035), + [sym_is_pattern_expression] = STATE(3035), + [sym_cast_expression] = STATE(3035), + [sym_checked_expression] = STATE(3035), + [sym_invocation_expression] = STATE(3043), + [sym_switch_expression] = STATE(3035), + [sym_await_expression] = STATE(3043), + [sym_throw_expression] = STATE(3035), + [sym_element_access_expression] = STATE(2415), + [sym_interpolated_string_expression] = STATE(3035), + [sym_member_access_expression] = STATE(2415), + [sym_object_creation_expression] = STATE(3043), + [sym_parenthesized_expression] = STATE(3043), + [sym__parenthesized_lvalue_expression] = STATE(2415), + [sym_lambda_expression] = STATE(3035), + [sym__lambda_expression_init] = STATE(7470), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3035), + [sym_anonymous_method_expression] = STATE(3035), + [sym_anonymous_object_creation_expression] = STATE(3035), + [sym_implicit_array_creation_expression] = STATE(3035), + [sym_implicit_object_creation_expression] = STATE(3035), + [sym_implicit_stackalloc_expression] = STATE(3035), + [sym_initializer_expression] = STATE(3035), + [sym_default_expression] = STATE(3035), + [sym_with_expression] = STATE(3035), + [sym_sizeof_expression] = STATE(3035), + [sym_typeof_expression] = STATE(3035), + [sym_makeref_expression] = STATE(3035), + [sym_ref_expression] = STATE(3035), + [sym_reftype_expression] = STATE(3035), + [sym_refvalue_expression] = STATE(3035), + [sym_stackalloc_expression] = STATE(3035), + [sym_range_expression] = STATE(3035), + [sym_tuple_expression] = STATE(2415), + [sym_literal] = STATE(3035), + [sym_character_literal] = STATE(3037), + [sym_string_literal] = STATE(3037), + [sym_raw_string_literal] = STATE(3037), + [sym_boolean_literal] = STATE(3037), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3035), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(219), [sym_preproc_endregion] = STATE(219), [sym_preproc_line] = STATE(219), @@ -72764,67 +72650,67 @@ 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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3440), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3455), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1241), - [anon_sym_LPAREN] = ACTIONS(1841), - [anon_sym_ref] = ACTIONS(1843), - [anon_sym_LBRACE] = ACTIONS(1247), - [anon_sym_delegate] = ACTIONS(1249), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1239), + [anon_sym_LPAREN] = ACTIONS(1931), + [anon_sym_ref] = ACTIONS(1933), + [anon_sym_LBRACE] = ACTIONS(1245), + [anon_sym_delegate] = ACTIONS(1247), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1845), - [anon_sym_LT] = ACTIONS(1165), - [anon_sym_GT] = ACTIONS(1165), + [anon_sym_new] = ACTIONS(1935), + [anon_sym_LT] = ACTIONS(1161), + [anon_sym_GT] = ACTIONS(1161), [anon_sym_where] = ACTIONS(29), - [anon_sym_QMARK] = ACTIONS(1165), + [anon_sym_QMARK] = ACTIONS(1161), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1253), - [anon_sym_BANG] = ACTIONS(1847), - [anon_sym_TILDE] = ACTIONS(1849), - [anon_sym_PLUS_PLUS] = ACTIONS(1849), - [anon_sym_DASH_DASH] = ACTIONS(1849), - [anon_sym_true] = ACTIONS(1259), - [anon_sym_false] = ACTIONS(1259), - [anon_sym_PLUS] = ACTIONS(1847), - [anon_sym_DASH] = ACTIONS(1847), - [anon_sym_STAR] = ACTIONS(1851), - [anon_sym_SLASH] = ACTIONS(1165), - [anon_sym_PERCENT] = ACTIONS(1151), - [anon_sym_CARET] = ACTIONS(1849), - [anon_sym_PIPE] = ACTIONS(1165), - [anon_sym_AMP] = ACTIONS(1847), - [anon_sym_LT_LT] = ACTIONS(1151), - [anon_sym_GT_GT] = ACTIONS(1165), - [anon_sym_GT_GT_GT] = ACTIONS(1151), - [anon_sym_EQ_EQ] = ACTIONS(1151), - [anon_sym_BANG_EQ] = ACTIONS(1151), - [anon_sym_GT_EQ] = ACTIONS(1151), - [anon_sym_LT_EQ] = ACTIONS(1151), - [anon_sym_this] = ACTIONS(1263), - [anon_sym_DOT] = ACTIONS(1165), + [anon_sym_checked] = ACTIONS(1251), + [anon_sym_BANG] = ACTIONS(1937), + [anon_sym_TILDE] = ACTIONS(1939), + [anon_sym_PLUS_PLUS] = ACTIONS(1939), + [anon_sym_DASH_DASH] = ACTIONS(1939), + [anon_sym_true] = ACTIONS(1257), + [anon_sym_false] = ACTIONS(1257), + [anon_sym_PLUS] = ACTIONS(1937), + [anon_sym_DASH] = ACTIONS(1937), + [anon_sym_STAR] = ACTIONS(1941), + [anon_sym_SLASH] = ACTIONS(1161), + [anon_sym_PERCENT] = ACTIONS(1147), + [anon_sym_CARET] = ACTIONS(1939), + [anon_sym_PIPE] = ACTIONS(1161), + [anon_sym_AMP] = ACTIONS(1937), + [anon_sym_LT_LT] = ACTIONS(1147), + [anon_sym_GT_GT] = ACTIONS(1161), + [anon_sym_GT_GT_GT] = ACTIONS(1147), + [anon_sym_EQ_EQ] = ACTIONS(1147), + [anon_sym_BANG_EQ] = ACTIONS(1147), + [anon_sym_GT_EQ] = ACTIONS(1147), + [anon_sym_LT_EQ] = ACTIONS(1147), + [anon_sym_this] = ACTIONS(1261), + [anon_sym_DOT] = ACTIONS(1161), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1265), + [anon_sym_base] = ACTIONS(1263), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1267), - [anon_sym_unchecked] = ACTIONS(1253), + [sym_predefined_type] = ACTIONS(1265), + [anon_sym_unchecked] = ACTIONS(1251), [anon_sym_yield] = ACTIONS(29), - [anon_sym_switch] = ACTIONS(1165), - [anon_sym_default] = ACTIONS(1269), - [anon_sym_throw] = ACTIONS(1853), + [anon_sym_switch] = ACTIONS(1161), + [anon_sym_default] = ACTIONS(1267), + [anon_sym_throw] = ACTIONS(1943), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1855), - [anon_sym_DOT_DOT] = ACTIONS(1857), - [anon_sym_and] = ACTIONS(1165), - [anon_sym_or] = ACTIONS(1165), - [anon_sym_AMP_AMP] = ACTIONS(1151), - [anon_sym_PIPE_PIPE] = ACTIONS(1151), - [anon_sym_QMARK_QMARK] = ACTIONS(1151), + [anon_sym_await] = ACTIONS(1945), + [anon_sym_DOT_DOT] = ACTIONS(1947), + [anon_sym_and] = ACTIONS(1161), + [anon_sym_or] = ACTIONS(1161), + [anon_sym_AMP_AMP] = ACTIONS(1147), + [anon_sym_PIPE_PIPE] = ACTIONS(1147), + [anon_sym_QMARK_QMARK] = ACTIONS(1147), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -72837,23 +72723,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(1165), - [anon_sym_is] = ACTIONS(1165), - [anon_sym_DASH_GT] = ACTIONS(1151), - [anon_sym_stackalloc] = ACTIONS(1277), - [anon_sym_with] = ACTIONS(1165), - [anon_sym_sizeof] = ACTIONS(1279), - [anon_sym_typeof] = ACTIONS(1281), - [anon_sym___makeref] = ACTIONS(1283), - [anon_sym___reftype] = ACTIONS(1285), - [anon_sym___refvalue] = ACTIONS(1287), - [sym_null_literal] = ACTIONS(1289), - [anon_sym_SQUOTE] = ACTIONS(1291), - [sym_integer_literal] = ACTIONS(1289), - [sym_real_literal] = ACTIONS(1293), - [anon_sym_DQUOTE] = ACTIONS(1295), - [sym_verbatim_string_literal] = ACTIONS(1293), - [aux_sym_preproc_if_token1] = ACTIONS(1297), + [anon_sym_as] = ACTIONS(1161), + [anon_sym_is] = ACTIONS(1161), + [anon_sym_DASH_GT] = ACTIONS(1147), + [anon_sym_stackalloc] = ACTIONS(1275), + [anon_sym_with] = ACTIONS(1161), + [anon_sym_sizeof] = ACTIONS(1277), + [anon_sym_typeof] = ACTIONS(1279), + [anon_sym___makeref] = ACTIONS(1281), + [anon_sym___reftype] = ACTIONS(1283), + [anon_sym___refvalue] = ACTIONS(1285), + [sym_null_literal] = ACTIONS(1287), + [anon_sym_SQUOTE] = ACTIONS(1289), + [sym_integer_literal] = ACTIONS(1287), + [sym_real_literal] = ACTIONS(1291), + [anon_sym_DQUOTE] = ACTIONS(1293), + [sym_verbatim_string_literal] = ACTIONS(1291), + [aux_sym_preproc_if_token1] = ACTIONS(1295), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -72864,90 +72750,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1299), - [sym_interpolation_verbatim_start] = ACTIONS(1301), - [sym_interpolation_raw_start] = ACTIONS(1303), - [sym_raw_string_start] = ACTIONS(1305), + [sym_interpolation_regular_start] = ACTIONS(1297), + [sym_interpolation_verbatim_start] = ACTIONS(1299), + [sym_interpolation_raw_start] = ACTIONS(1301), + [sym_raw_string_start] = ACTIONS(1303), }, [220] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(5907), - [sym_alias_qualified_name] = STATE(4096), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2416), + [sym__name] = STATE(5885), + [sym_alias_qualified_name] = STATE(4068), [sym__simple_name] = STATE(2404), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(4117), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3122), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3080), - [sym_postfix_unary_expression] = STATE(3111), - [sym_prefix_unary_expression] = STATE(3111), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6149), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3080), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3111), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3080), - [sym_member_access_expression] = STATE(2484), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3111), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7563), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(3080), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3080), - [sym_typeof_expression] = STATE(3080), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2484), - [sym_literal] = STATE(3080), - [sym_character_literal] = STATE(3011), - [sym_string_literal] = STATE(3011), - [sym_raw_string_literal] = STATE(3011), - [sym_boolean_literal] = STATE(3011), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(4012), + [sym_non_lvalue_expression] = STATE(3040), + [sym_lvalue_expression] = STATE(3100), + [sym__expression_statement_expression] = STATE(3035), + [sym_assignment_expression] = STATE(3043), + [sym_binary_expression] = STATE(3035), + [sym_postfix_unary_expression] = STATE(3043), + [sym_prefix_unary_expression] = STATE(3043), + [sym__pointer_indirection_expression] = STATE(2415), + [sym_query_expression] = STATE(3035), + [sym_from_clause] = STATE(6135), + [sym_conditional_expression] = STATE(3035), + [sym_conditional_access_expression] = STATE(3035), + [sym_as_expression] = STATE(3035), + [sym_is_expression] = STATE(3035), + [sym_is_pattern_expression] = STATE(3035), + [sym_cast_expression] = STATE(3035), + [sym_checked_expression] = STATE(3035), + [sym_invocation_expression] = STATE(3043), + [sym_switch_expression] = STATE(3035), + [sym_await_expression] = STATE(3043), + [sym_throw_expression] = STATE(3035), + [sym_element_access_expression] = STATE(2415), + [sym_interpolated_string_expression] = STATE(3035), + [sym_member_access_expression] = STATE(2415), + [sym_object_creation_expression] = STATE(3043), + [sym_parenthesized_expression] = STATE(3043), + [sym__parenthesized_lvalue_expression] = STATE(2415), + [sym_lambda_expression] = STATE(3035), + [sym__lambda_expression_init] = STATE(7470), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3035), + [sym_anonymous_method_expression] = STATE(3035), + [sym_anonymous_object_creation_expression] = STATE(3035), + [sym_implicit_array_creation_expression] = STATE(3035), + [sym_implicit_object_creation_expression] = STATE(3035), + [sym_implicit_stackalloc_expression] = STATE(3035), + [sym_initializer_expression] = STATE(3035), + [sym_default_expression] = STATE(3035), + [sym_with_expression] = STATE(3035), + [sym_sizeof_expression] = STATE(3035), + [sym_typeof_expression] = STATE(3035), + [sym_makeref_expression] = STATE(3035), + [sym_ref_expression] = STATE(3035), + [sym_reftype_expression] = STATE(3035), + [sym_refvalue_expression] = STATE(3035), + [sym_stackalloc_expression] = STATE(3035), + [sym_range_expression] = STATE(3035), + [sym_tuple_expression] = STATE(2415), + [sym_literal] = STATE(3035), + [sym_character_literal] = STATE(3037), + [sym_string_literal] = STATE(3037), + [sym_raw_string_literal] = STATE(3037), + [sym_boolean_literal] = STATE(3037), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3035), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(220), [sym_preproc_endregion] = STATE(220), [sym_preproc_line] = STATE(220), @@ -72957,67 +72843,67 @@ 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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), - [sym__identifier_token] = ACTIONS(25), - [anon_sym_alias] = ACTIONS(29), - [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1481), - [anon_sym_LPAREN] = ACTIONS(1933), - [anon_sym_ref] = ACTIONS(1935), - [anon_sym_LBRACE] = ACTIONS(1487), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), - [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1937), - [anon_sym_LT] = ACTIONS(1165), - [anon_sym_GT] = ACTIONS(1165), - [anon_sym_where] = ACTIONS(29), - [anon_sym_QMARK] = ACTIONS(1165), - [anon_sym_notnull] = ACTIONS(29), - [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1067), - [anon_sym_BANG] = ACTIONS(1939), - [anon_sym_TILDE] = ACTIONS(1941), - [anon_sym_PLUS_PLUS] = ACTIONS(1941), - [anon_sym_DASH_DASH] = ACTIONS(1941), - [anon_sym_true] = ACTIONS(1259), - [anon_sym_false] = ACTIONS(1259), - [anon_sym_PLUS] = ACTIONS(1939), - [anon_sym_DASH] = ACTIONS(1939), - [anon_sym_STAR] = ACTIONS(1943), - [anon_sym_SLASH] = ACTIONS(1165), - [anon_sym_PERCENT] = ACTIONS(1151), - [anon_sym_CARET] = ACTIONS(1941), - [anon_sym_PIPE] = ACTIONS(1165), - [anon_sym_AMP] = ACTIONS(1939), - [anon_sym_LT_LT] = ACTIONS(1151), - [anon_sym_GT_GT] = ACTIONS(1165), - [anon_sym_GT_GT_GT] = ACTIONS(1151), - [anon_sym_EQ_EQ] = ACTIONS(1151), - [anon_sym_BANG_EQ] = ACTIONS(1151), - [anon_sym_GT_EQ] = ACTIONS(1151), - [anon_sym_LT_EQ] = ACTIONS(1151), - [anon_sym_this] = ACTIONS(83), - [anon_sym_DOT] = ACTIONS(1165), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1267), - [anon_sym_unchecked] = ACTIONS(1067), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3455), + [sym__identifier_token] = ACTIONS(25), + [anon_sym_alias] = ACTIONS(29), + [anon_sym_global] = ACTIONS(29), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1239), + [anon_sym_LPAREN] = ACTIONS(1931), + [anon_sym_ref] = ACTIONS(1933), + [anon_sym_LBRACE] = ACTIONS(1245), + [anon_sym_delegate] = ACTIONS(1247), + [anon_sym_async] = ACTIONS(1045), + [anon_sym_file] = ACTIONS(29), + [anon_sym_new] = ACTIONS(1935), + [anon_sym_LT] = ACTIONS(1221), + [anon_sym_GT] = ACTIONS(1221), + [anon_sym_where] = ACTIONS(29), + [anon_sym_QMARK] = ACTIONS(1221), + [anon_sym_notnull] = ACTIONS(29), + [anon_sym_unmanaged] = ACTIONS(29), + [anon_sym_checked] = ACTIONS(1251), + [anon_sym_BANG] = ACTIONS(1937), + [anon_sym_TILDE] = ACTIONS(1939), + [anon_sym_PLUS_PLUS] = ACTIONS(1939), + [anon_sym_DASH_DASH] = ACTIONS(1939), + [anon_sym_true] = ACTIONS(1257), + [anon_sym_false] = ACTIONS(1257), + [anon_sym_PLUS] = ACTIONS(1937), + [anon_sym_DASH] = ACTIONS(1937), + [anon_sym_STAR] = ACTIONS(1941), + [anon_sym_SLASH] = ACTIONS(1221), + [anon_sym_PERCENT] = ACTIONS(1219), + [anon_sym_CARET] = ACTIONS(1939), + [anon_sym_PIPE] = ACTIONS(1221), + [anon_sym_AMP] = ACTIONS(1937), + [anon_sym_LT_LT] = ACTIONS(1219), + [anon_sym_GT_GT] = ACTIONS(1221), + [anon_sym_GT_GT_GT] = ACTIONS(1219), + [anon_sym_EQ_EQ] = ACTIONS(1219), + [anon_sym_BANG_EQ] = ACTIONS(1219), + [anon_sym_GT_EQ] = ACTIONS(1219), + [anon_sym_LT_EQ] = ACTIONS(1219), + [anon_sym_this] = ACTIONS(1261), + [anon_sym_DOT] = ACTIONS(1221), + [anon_sym_scoped] = ACTIONS(85), + [anon_sym_base] = ACTIONS(1263), + [anon_sym_var] = ACTIONS(89), + [sym_predefined_type] = ACTIONS(1265), + [anon_sym_unchecked] = ACTIONS(1251), [anon_sym_yield] = ACTIONS(29), - [anon_sym_switch] = ACTIONS(1165), - [anon_sym_default] = ACTIONS(1269), - [anon_sym_throw] = ACTIONS(1945), + [anon_sym_switch] = ACTIONS(1221), + [anon_sym_default] = ACTIONS(1267), + [anon_sym_throw] = ACTIONS(1943), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1947), - [anon_sym_DOT_DOT] = ACTIONS(1949), - [anon_sym_and] = ACTIONS(1165), - [anon_sym_or] = ACTIONS(1165), - [anon_sym_AMP_AMP] = ACTIONS(1151), - [anon_sym_PIPE_PIPE] = ACTIONS(1151), - [anon_sym_QMARK_QMARK] = ACTIONS(1151), + [anon_sym_await] = ACTIONS(1945), + [anon_sym_DOT_DOT] = ACTIONS(1947), + [anon_sym_and] = ACTIONS(1221), + [anon_sym_or] = ACTIONS(1221), + [anon_sym_AMP_AMP] = ACTIONS(1219), + [anon_sym_PIPE_PIPE] = ACTIONS(1219), + [anon_sym_QMARK_QMARK] = ACTIONS(1219), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -73030,23 +72916,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(1165), - [anon_sym_is] = ACTIONS(1165), - [anon_sym_DASH_GT] = ACTIONS(1151), - [anon_sym_stackalloc] = ACTIONS(127), - [anon_sym_with] = ACTIONS(1165), - [anon_sym_sizeof] = ACTIONS(1279), - [anon_sym_typeof] = ACTIONS(1281), - [anon_sym___makeref] = ACTIONS(133), - [anon_sym___reftype] = ACTIONS(135), - [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(1289), - [anon_sym_SQUOTE] = ACTIONS(1291), - [sym_integer_literal] = ACTIONS(1289), - [sym_real_literal] = ACTIONS(1293), - [anon_sym_DQUOTE] = ACTIONS(1295), - [sym_verbatim_string_literal] = ACTIONS(1293), - [aux_sym_preproc_if_token1] = ACTIONS(1089), + [anon_sym_as] = ACTIONS(1221), + [anon_sym_is] = ACTIONS(1221), + [anon_sym_DASH_GT] = ACTIONS(1219), + [anon_sym_stackalloc] = ACTIONS(1275), + [anon_sym_with] = ACTIONS(1221), + [anon_sym_sizeof] = ACTIONS(1277), + [anon_sym_typeof] = ACTIONS(1279), + [anon_sym___makeref] = ACTIONS(1281), + [anon_sym___reftype] = ACTIONS(1283), + [anon_sym___refvalue] = ACTIONS(1285), + [sym_null_literal] = ACTIONS(1287), + [anon_sym_SQUOTE] = ACTIONS(1289), + [sym_integer_literal] = ACTIONS(1287), + [sym_real_literal] = ACTIONS(1291), + [anon_sym_DQUOTE] = ACTIONS(1293), + [sym_verbatim_string_literal] = ACTIONS(1291), + [aux_sym_preproc_if_token1] = ACTIONS(1295), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -73057,105 +72943,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1299), - [sym_interpolation_verbatim_start] = ACTIONS(1301), - [sym_interpolation_raw_start] = ACTIONS(1303), - [sym_raw_string_start] = ACTIONS(1305), + [sym_interpolation_regular_start] = ACTIONS(1297), + [sym_interpolation_verbatim_start] = ACTIONS(1299), + [sym_interpolation_raw_start] = ACTIONS(1301), + [sym_raw_string_start] = ACTIONS(1303), }, [221] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(5634), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2234), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(4363), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_pattern] = STATE(6717), - [sym_constant_pattern] = STATE(3486), - [sym_parenthesized_pattern] = STATE(3486), - [sym_var_pattern] = STATE(3486), - [sym_type_pattern] = STATE(3486), - [sym_list_pattern] = STATE(3486), - [sym_recursive_pattern] = STATE(3486), - [sym_positional_pattern_clause] = STATE(5175), - [sym_property_pattern_clause] = STATE(5675), - [sym_subpattern] = STATE(6736), - [sym_relational_pattern] = STATE(3486), - [sym_negated_pattern] = STATE(3486), - [sym_and_pattern] = STATE(3486), - [sym_or_pattern] = STATE(3486), - [sym_declaration_pattern] = STATE(3486), - [sym_expression] = STATE(4607), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3408), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(4216), - [sym_postfix_unary_expression] = STATE(4219), - [sym_prefix_unary_expression] = STATE(4219), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6161), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(4216), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(4219), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(4216), - [sym_member_access_expression] = STATE(3121), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(4219), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7323), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(4216), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(4216), - [sym_typeof_expression] = STATE(4216), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(3121), - [sym_literal] = STATE(4216), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2416), + [sym__name] = STATE(5890), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2193), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(5245), + [sym_non_lvalue_expression] = STATE(3040), + [sym_lvalue_expression] = STATE(3549), + [sym__expression_statement_expression] = STATE(3035), + [sym_assignment_expression] = STATE(3043), + [sym_binary_expression] = STATE(3035), + [sym_postfix_unary_expression] = STATE(3043), + [sym_prefix_unary_expression] = STATE(3043), + [sym__pointer_indirection_expression] = STATE(2415), + [sym_query_expression] = STATE(3035), + [sym_from_clause] = STATE(6131), + [sym_conditional_expression] = STATE(3035), + [sym_conditional_access_expression] = STATE(3035), + [sym_as_expression] = STATE(3035), + [sym_is_expression] = STATE(3035), + [sym_is_pattern_expression] = STATE(3035), + [sym_cast_expression] = STATE(3035), + [sym_checked_expression] = STATE(3035), + [sym_invocation_expression] = STATE(3043), + [sym_switch_expression] = STATE(3035), + [sym_await_expression] = STATE(3043), + [sym_throw_expression] = STATE(3035), + [sym_element_access_expression] = STATE(2415), + [sym_interpolated_string_expression] = STATE(3035), + [sym_member_access_expression] = STATE(2415), + [sym_object_creation_expression] = STATE(3043), + [sym_parenthesized_expression] = STATE(3043), + [sym__parenthesized_lvalue_expression] = STATE(2415), + [sym_lambda_expression] = STATE(3035), + [sym__lambda_expression_init] = STATE(7412), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3035), + [sym_anonymous_method_expression] = STATE(3035), + [sym_anonymous_object_creation_expression] = STATE(3035), + [sym_implicit_array_creation_expression] = STATE(3035), + [sym_implicit_object_creation_expression] = STATE(3035), + [sym_implicit_stackalloc_expression] = STATE(3035), + [sym_initializer_expression] = STATE(3035), + [sym_default_expression] = STATE(3035), + [sym_with_expression] = STATE(3035), + [sym_sizeof_expression] = STATE(3035), + [sym_typeof_expression] = STATE(3035), + [sym_makeref_expression] = STATE(3035), + [sym_ref_expression] = STATE(3035), + [sym_reftype_expression] = STATE(3035), + [sym_refvalue_expression] = STATE(3035), + [sym_stackalloc_expression] = STATE(3035), + [sym_range_expression] = STATE(3035), + [sym_tuple_expression] = STATE(2415), + [sym_literal] = STATE(3035), + [sym_character_literal] = STATE(3037), + [sym_string_literal] = STATE(3037), + [sym_raw_string_literal] = STATE(3037), + [sym_boolean_literal] = STATE(3037), + [sym_identifier] = STATE(2261), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3035), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(221), [sym_preproc_endregion] = STATE(221), [sym_preproc_line] = STATE(221), @@ -73165,55 +73036,258 @@ 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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3455), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1049), - [anon_sym_COMMA] = ACTIONS(1951), - [anon_sym_LPAREN] = ACTIONS(1143), - [anon_sym_ref] = ACTIONS(1953), - [anon_sym_LBRACE] = ACTIONS(1059), - [anon_sym_RBRACE] = ACTIONS(1955), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1239), + [anon_sym_LPAREN] = ACTIONS(1949), + [anon_sym_ref] = ACTIONS(1951), + [anon_sym_LBRACE] = ACTIONS(1245), + [anon_sym_delegate] = ACTIONS(1247), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1101), - [anon_sym_LT] = ACTIONS(1063), - [anon_sym_GT] = ACTIONS(1063), + [anon_sym_new] = ACTIONS(1249), + [anon_sym_LT] = ACTIONS(1161), + [anon_sym_GT] = ACTIONS(1161), [anon_sym_where] = ACTIONS(29), + [anon_sym_QMARK] = ACTIONS(1161), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1067), - [anon_sym_BANG] = ACTIONS(1107), - [anon_sym_TILDE] = ACTIONS(1107), - [anon_sym_PLUS_PLUS] = ACTIONS(1107), - [anon_sym_DASH_DASH] = ACTIONS(1107), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1109), - [anon_sym_DASH] = ACTIONS(1109), - [anon_sym_STAR] = ACTIONS(1111), - [anon_sym_CARET] = ACTIONS(1107), - [anon_sym_AMP] = ACTIONS(1107), - [anon_sym_GT_EQ] = ACTIONS(1073), - [anon_sym_LT_EQ] = ACTIONS(1073), + [anon_sym_checked] = ACTIONS(1251), + [anon_sym_BANG] = ACTIONS(1953), + [anon_sym_TILDE] = ACTIONS(1955), + [anon_sym_PLUS_PLUS] = ACTIONS(1955), + [anon_sym_DASH_DASH] = ACTIONS(1955), + [anon_sym_true] = ACTIONS(1257), + [anon_sym_false] = ACTIONS(1257), + [anon_sym_PLUS] = ACTIONS(1953), + [anon_sym_DASH] = ACTIONS(1953), + [anon_sym_STAR] = ACTIONS(1957), + [anon_sym_SLASH] = ACTIONS(1161), + [anon_sym_PERCENT] = ACTIONS(1147), + [anon_sym_CARET] = ACTIONS(1955), + [anon_sym_PIPE] = ACTIONS(1161), + [anon_sym_AMP] = ACTIONS(1953), + [anon_sym_LT_LT] = ACTIONS(1147), + [anon_sym_GT_GT] = ACTIONS(1161), + [anon_sym_GT_GT_GT] = ACTIONS(1147), + [anon_sym_EQ_EQ] = ACTIONS(1147), + [anon_sym_BANG_EQ] = ACTIONS(1147), + [anon_sym_GT_EQ] = ACTIONS(1147), + [anon_sym_LT_EQ] = ACTIONS(1147), + [anon_sym_this] = ACTIONS(1261), + [anon_sym_DOT] = ACTIONS(1161), + [anon_sym_scoped] = ACTIONS(85), + [anon_sym_base] = ACTIONS(1263), + [anon_sym_EQ_GT] = ACTIONS(1147), + [anon_sym_var] = ACTIONS(89), + [sym_predefined_type] = ACTIONS(1265), + [anon_sym_unchecked] = ACTIONS(1251), + [anon_sym_yield] = ACTIONS(29), + [anon_sym_switch] = ACTIONS(1161), + [anon_sym_default] = ACTIONS(1267), + [anon_sym_throw] = ACTIONS(1959), + [anon_sym_when] = ACTIONS(29), + [anon_sym_await] = ACTIONS(1961), + [anon_sym_DOT_DOT] = ACTIONS(1963), + [anon_sym_AMP_AMP] = ACTIONS(1147), + [anon_sym_PIPE_PIPE] = ACTIONS(1147), + [anon_sym_QMARK_QMARK] = 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_as] = ACTIONS(1161), + [anon_sym_is] = ACTIONS(1161), + [anon_sym_DASH_GT] = ACTIONS(1147), + [anon_sym_stackalloc] = ACTIONS(1275), + [anon_sym_with] = ACTIONS(1161), + [anon_sym_sizeof] = ACTIONS(1277), + [anon_sym_typeof] = ACTIONS(1279), + [anon_sym___makeref] = ACTIONS(1281), + [anon_sym___reftype] = ACTIONS(1283), + [anon_sym___refvalue] = ACTIONS(1285), + [sym_null_literal] = ACTIONS(1287), + [anon_sym_SQUOTE] = ACTIONS(1289), + [sym_integer_literal] = ACTIONS(1287), + [sym_real_literal] = ACTIONS(1291), + [anon_sym_DQUOTE] = ACTIONS(1293), + [sym_verbatim_string_literal] = ACTIONS(1291), + [aux_sym_preproc_if_token1] = ACTIONS(1295), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + [sym_interpolation_regular_start] = ACTIONS(1297), + [sym_interpolation_verbatim_start] = ACTIONS(1299), + [sym_interpolation_raw_start] = ACTIONS(1301), + [sym_raw_string_start] = ACTIONS(1303), + }, + [222] = { + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(5152), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2196), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(5525), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3683), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3102), + [sym_postfix_unary_expression] = STATE(3079), + [sym_prefix_unary_expression] = STATE(3079), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6147), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3102), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3079), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3102), + [sym_member_access_expression] = STATE(2472), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3079), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7404), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(3102), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3102), + [sym_typeof_expression] = STATE(3102), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2472), + [sym_literal] = STATE(3102), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2261), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), + [sym_preproc_region] = STATE(222), + [sym_preproc_endregion] = STATE(222), + [sym_preproc_line] = STATE(222), + [sym_preproc_pragma] = STATE(222), + [sym_preproc_nullable] = STATE(222), + [sym_preproc_error] = STATE(222), + [sym_preproc_warning] = STATE(222), + [sym_preproc_define] = STATE(222), + [sym_preproc_undef] = STATE(222), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), + [sym__identifier_token] = ACTIONS(25), + [anon_sym_alias] = ACTIONS(29), + [anon_sym_global] = ACTIONS(29), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1479), + [anon_sym_LPAREN] = ACTIONS(1965), + [anon_sym_ref] = ACTIONS(1967), + [anon_sym_LBRACE] = ACTIONS(1481), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), + [anon_sym_file] = ACTIONS(29), + [anon_sym_new] = ACTIONS(1059), + [anon_sym_LT] = ACTIONS(1221), + [anon_sym_GT] = ACTIONS(1221), + [anon_sym_where] = ACTIONS(29), + [anon_sym_QMARK] = ACTIONS(1221), + [anon_sym_notnull] = ACTIONS(29), + [anon_sym_unmanaged] = ACTIONS(29), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(1969), + [anon_sym_TILDE] = ACTIONS(1971), + [anon_sym_PLUS_PLUS] = ACTIONS(1971), + [anon_sym_DASH_DASH] = ACTIONS(1971), + [anon_sym_true] = ACTIONS(77), + [anon_sym_false] = ACTIONS(77), + [anon_sym_PLUS] = ACTIONS(1969), + [anon_sym_DASH] = ACTIONS(1969), + [anon_sym_STAR] = ACTIONS(1973), + [anon_sym_SLASH] = ACTIONS(1221), + [anon_sym_PERCENT] = ACTIONS(1219), + [anon_sym_CARET] = ACTIONS(1971), + [anon_sym_PIPE] = ACTIONS(1221), + [anon_sym_AMP] = ACTIONS(1969), + [anon_sym_LT_LT] = ACTIONS(1219), + [anon_sym_GT_GT] = ACTIONS(1221), + [anon_sym_GT_GT_GT] = ACTIONS(1219), + [anon_sym_EQ_EQ] = ACTIONS(1219), + [anon_sym_BANG_EQ] = ACTIONS(1219), + [anon_sym_GT_EQ] = ACTIONS(1219), + [anon_sym_LT_EQ] = ACTIONS(1219), [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(1075), + [anon_sym_DOT] = ACTIONS(1221), + [anon_sym_scoped] = ACTIONS(85), [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(1077), + [anon_sym_EQ_GT] = ACTIONS(1219), + [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1067), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), + [anon_sym_switch] = ACTIONS(1221), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1119), + [anon_sym_throw] = ACTIONS(1975), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1121), - [sym_discard] = ACTIONS(1083), - [anon_sym_DOT_DOT] = ACTIONS(1125), - [anon_sym_not] = ACTIONS(1087), + [anon_sym_await] = ACTIONS(1977), + [anon_sym_DOT_DOT] = ACTIONS(1979), + [anon_sym_AMP_AMP] = ACTIONS(1219), + [anon_sym_PIPE_PIPE] = ACTIONS(1219), + [anon_sym_QMARK_QMARK] = ACTIONS(1219), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -73226,7 +73300,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(1221), + [anon_sym_is] = ACTIONS(1221), + [anon_sym_DASH_GT] = ACTIONS(1219), [anon_sym_stackalloc] = ACTIONS(127), + [anon_sym_with] = ACTIONS(1221), [anon_sym_sizeof] = ACTIONS(129), [anon_sym_typeof] = ACTIONS(131), [anon_sym___makeref] = ACTIONS(133), @@ -73238,7 +73316,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(1089), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -73254,154 +73332,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), }, - [222] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(5160), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2204), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(3519), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3461), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3080), - [sym_postfix_unary_expression] = STATE(3111), - [sym_prefix_unary_expression] = STATE(3111), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6154), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3080), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3111), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3080), - [sym_member_access_expression] = STATE(2484), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3111), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7547), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(3080), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3080), - [sym_typeof_expression] = STATE(3080), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2484), - [sym_literal] = STATE(3080), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), - [sym_preproc_region] = STATE(222), - [sym_preproc_endregion] = STATE(222), - [sym_preproc_line] = STATE(222), - [sym_preproc_pragma] = STATE(222), - [sym_preproc_nullable] = STATE(222), - [sym_preproc_error] = STATE(222), - [sym_preproc_warning] = STATE(222), - [sym_preproc_define] = STATE(222), - [sym_preproc_undef] = STATE(222), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [223] = { + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(5528), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2224), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(4472), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_pattern] = STATE(6702), + [sym_constant_pattern] = STATE(3429), + [sym_parenthesized_pattern] = STATE(3429), + [sym_var_pattern] = STATE(3429), + [sym_type_pattern] = STATE(3429), + [sym_list_pattern] = STATE(3429), + [sym_recursive_pattern] = STATE(3429), + [sym_positional_pattern_clause] = STATE(5135), + [sym_property_pattern_clause] = STATE(5666), + [sym_subpattern] = STATE(6738), + [sym_relational_pattern] = STATE(3429), + [sym_negated_pattern] = STATE(3429), + [sym_and_pattern] = STATE(3429), + [sym_or_pattern] = STATE(3429), + [sym_declaration_pattern] = STATE(3429), + [sym_expression] = STATE(4563), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3398), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(4202), + [sym_postfix_unary_expression] = STATE(4203), + [sym_prefix_unary_expression] = STATE(4203), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6163), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(4202), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(4203), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(4202), + [sym_member_access_expression] = STATE(3112), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(4203), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7496), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(4202), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(4202), + [sym_typeof_expression] = STATE(4202), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(3112), + [sym_literal] = STATE(4202), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), + [sym_preproc_region] = STATE(223), + [sym_preproc_endregion] = STATE(223), + [sym_preproc_line] = STATE(223), + [sym_preproc_pragma] = STATE(223), + [sym_preproc_nullable] = STATE(223), + [sym_preproc_error] = STATE(223), + [sym_preproc_warning] = STATE(223), + [sym_preproc_define] = STATE(223), + [sym_preproc_undef] = STATE(223), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), - [anon_sym_SEMI] = ACTIONS(1957), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1481), - [anon_sym_LPAREN] = ACTIONS(1497), - [anon_sym_ref] = ACTIONS(1499), - [anon_sym_LBRACE] = ACTIONS(1487), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_COMMA] = ACTIONS(1981), + [anon_sym_LPAREN] = ACTIONS(1141), + [anon_sym_ref] = ACTIONS(1983), + [anon_sym_LBRACE] = ACTIONS(1057), + [anon_sym_RBRACE] = ACTIONS(1985), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1501), - [anon_sym_LT] = ACTIONS(1959), - [anon_sym_GT] = ACTIONS(1959), + [anon_sym_new] = ACTIONS(1095), + [anon_sym_LT] = ACTIONS(1061), + [anon_sym_GT] = ACTIONS(1061), [anon_sym_where] = ACTIONS(29), - [anon_sym_QMARK] = ACTIONS(1959), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = 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_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(1101), + [anon_sym_TILDE] = ACTIONS(1101), + [anon_sym_PLUS_PLUS] = ACTIONS(1101), + [anon_sym_DASH_DASH] = ACTIONS(1101), [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(1959), - [anon_sym_PERCENT] = ACTIONS(1957), - [anon_sym_CARET] = ACTIONS(75), - [anon_sym_PIPE] = ACTIONS(1959), - [anon_sym_AMP] = ACTIONS(79), - [anon_sym_LT_LT] = ACTIONS(1957), - [anon_sym_GT_GT] = ACTIONS(1959), - [anon_sym_GT_GT_GT] = ACTIONS(1957), - [anon_sym_EQ_EQ] = ACTIONS(1957), - [anon_sym_BANG_EQ] = ACTIONS(1957), - [anon_sym_GT_EQ] = ACTIONS(1957), - [anon_sym_LT_EQ] = ACTIONS(1957), + [anon_sym_PLUS] = ACTIONS(1103), + [anon_sym_DASH] = ACTIONS(1103), + [anon_sym_STAR] = ACTIONS(1105), + [anon_sym_CARET] = ACTIONS(1101), + [anon_sym_AMP] = ACTIONS(1101), + [anon_sym_GT_EQ] = ACTIONS(1071), + [anon_sym_LT_EQ] = ACTIONS(1071), [anon_sym_this] = ACTIONS(83), - [anon_sym_DOT] = ACTIONS(1959), - [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(1067), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), - [anon_sym_switch] = ACTIONS(1959), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1503), + [anon_sym_throw] = ACTIONS(1113), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1505), - [anon_sym_DOT_DOT] = ACTIONS(1507), - [anon_sym_AMP_AMP] = ACTIONS(1957), - [anon_sym_PIPE_PIPE] = ACTIONS(1957), - [anon_sym_QMARK_QMARK] = ACTIONS(1957), + [anon_sym_await] = ACTIONS(1115), + [sym_discard] = ACTIONS(1081), + [anon_sym_DOT_DOT] = ACTIONS(1119), + [anon_sym_not] = ACTIONS(1085), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -73414,11 +73496,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(1959), - [anon_sym_is] = ACTIONS(1959), - [anon_sym_DASH_GT] = ACTIONS(1957), [anon_sym_stackalloc] = ACTIONS(127), - [anon_sym_with] = ACTIONS(1959), [anon_sym_sizeof] = ACTIONS(129), [anon_sym_typeof] = ACTIONS(131), [anon_sym___makeref] = ACTIONS(133), @@ -73430,7 +73508,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(1089), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -73446,277 +73524,100 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_interpolation_raw_start] = ACTIONS(155), [sym_raw_string_start] = ACTIONS(157), }, - [223] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2914), - [sym__name] = STATE(5873), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2362), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(3993), - [sym_non_lvalue_expression] = STATE(3880), - [sym_lvalue_expression] = STATE(3092), - [sym__expression_statement_expression] = STATE(3873), - [sym_assignment_expression] = STATE(3881), - [sym_binary_expression] = STATE(3873), - [sym_postfix_unary_expression] = STATE(3881), - [sym_prefix_unary_expression] = STATE(3881), - [sym__pointer_indirection_expression] = STATE(2913), - [sym_query_expression] = STATE(3873), - [sym_from_clause] = STATE(6168), - [sym_conditional_expression] = STATE(3873), - [sym_conditional_access_expression] = STATE(3873), - [sym_as_expression] = STATE(3873), - [sym_is_expression] = STATE(3873), - [sym_is_pattern_expression] = STATE(3873), - [sym_cast_expression] = STATE(3873), - [sym_checked_expression] = STATE(3873), - [sym_invocation_expression] = STATE(3881), - [sym_switch_expression] = STATE(3873), - [sym_await_expression] = STATE(3881), - [sym_throw_expression] = STATE(3873), - [sym_element_access_expression] = STATE(2913), - [sym_interpolated_string_expression] = STATE(3873), - [sym_member_access_expression] = STATE(2913), - [sym_object_creation_expression] = STATE(3881), - [sym_parenthesized_expression] = STATE(3881), - [sym__parenthesized_lvalue_expression] = STATE(2913), - [sym_lambda_expression] = STATE(3873), - [sym__lambda_expression_init] = STATE(7533), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3873), - [sym_anonymous_method_expression] = STATE(3873), - [sym_anonymous_object_creation_expression] = STATE(3873), - [sym_implicit_array_creation_expression] = STATE(3873), - [sym_implicit_object_creation_expression] = STATE(3873), - [sym_implicit_stackalloc_expression] = STATE(3873), - [sym_initializer_expression] = STATE(3873), - [sym_default_expression] = STATE(3873), - [sym_with_expression] = STATE(3873), - [sym_sizeof_expression] = STATE(3873), - [sym_typeof_expression] = STATE(3873), - [sym_makeref_expression] = STATE(3873), - [sym_ref_expression] = STATE(3873), - [sym_reftype_expression] = STATE(3873), - [sym_refvalue_expression] = STATE(3873), - [sym_stackalloc_expression] = STATE(3873), - [sym_range_expression] = STATE(3873), - [sym_tuple_expression] = STATE(2913), - [sym_literal] = STATE(3873), - [sym_character_literal] = STATE(3877), - [sym_string_literal] = STATE(3877), - [sym_raw_string_literal] = STATE(3877), - [sym_boolean_literal] = STATE(3877), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3873), - [sym_preproc_if_in_attribute_list] = STATE(5576), - [sym_preproc_region] = STATE(223), - [sym_preproc_endregion] = STATE(223), - [sym_preproc_line] = STATE(223), - [sym_preproc_pragma] = STATE(223), - [sym_preproc_nullable] = STATE(223), - [sym_preproc_error] = STATE(223), - [sym_preproc_warning] = STATE(223), - [sym_preproc_define] = STATE(223), - [sym_preproc_undef] = STATE(223), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3382), - [sym__identifier_token] = ACTIONS(25), - [anon_sym_alias] = ACTIONS(29), - [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1627), - [anon_sym_COMMA] = ACTIONS(1221), - [anon_sym_LPAREN] = ACTIONS(1961), - [anon_sym_ref] = ACTIONS(1963), - [anon_sym_LBRACE] = ACTIONS(1633), - [anon_sym_delegate] = ACTIONS(1635), - [anon_sym_async] = ACTIONS(1047), - [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1637), - [anon_sym_LT] = ACTIONS(1223), - [anon_sym_GT] = ACTIONS(1223), - [anon_sym_where] = ACTIONS(29), - [anon_sym_QMARK] = ACTIONS(1223), - [anon_sym_notnull] = ACTIONS(29), - [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1639), - [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(1645), - [anon_sym_false] = ACTIONS(1645), - [anon_sym_PLUS] = ACTIONS(1965), - [anon_sym_DASH] = ACTIONS(1965), - [anon_sym_STAR] = ACTIONS(1647), - [anon_sym_SLASH] = ACTIONS(1223), - [anon_sym_PERCENT] = ACTIONS(1221), - [anon_sym_CARET] = ACTIONS(1967), - [anon_sym_PIPE] = ACTIONS(1223), - [anon_sym_AMP] = ACTIONS(1965), - [anon_sym_LT_LT] = ACTIONS(1221), - [anon_sym_GT_GT] = ACTIONS(1223), - [anon_sym_GT_GT_GT] = ACTIONS(1221), - [anon_sym_EQ_EQ] = ACTIONS(1221), - [anon_sym_BANG_EQ] = ACTIONS(1221), - [anon_sym_GT_EQ] = ACTIONS(1221), - [anon_sym_LT_EQ] = ACTIONS(1221), - [anon_sym_this] = ACTIONS(1649), - [anon_sym_DOT] = ACTIONS(1223), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1651), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1653), - [anon_sym_unchecked] = ACTIONS(1639), - [anon_sym_yield] = ACTIONS(29), - [anon_sym_switch] = ACTIONS(1223), - [anon_sym_default] = ACTIONS(1655), - [anon_sym_throw] = ACTIONS(1969), - [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1971), - [anon_sym_DOT_DOT] = ACTIONS(1973), - [anon_sym_AMP_AMP] = ACTIONS(1221), - [anon_sym_PIPE_PIPE] = ACTIONS(1221), - [anon_sym_QMARK_QMARK] = ACTIONS(1221), - [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(1223), - [anon_sym_is] = ACTIONS(1223), - [anon_sym_DASH_GT] = ACTIONS(1221), - [anon_sym_stackalloc] = ACTIONS(1663), - [anon_sym_with] = ACTIONS(1223), - [anon_sym_sizeof] = ACTIONS(1665), - [anon_sym_typeof] = ACTIONS(1667), - [anon_sym___makeref] = ACTIONS(1669), - [anon_sym___reftype] = ACTIONS(1671), - [anon_sym___refvalue] = ACTIONS(1673), - [sym_null_literal] = ACTIONS(1675), - [anon_sym_SQUOTE] = ACTIONS(1677), - [sym_integer_literal] = ACTIONS(1675), - [sym_real_literal] = ACTIONS(1679), - [anon_sym_DQUOTE] = ACTIONS(1681), - [sym_verbatim_string_literal] = ACTIONS(1679), - [aux_sym_preproc_if_token1] = ACTIONS(1683), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1685), - [sym_interpolation_verbatim_start] = ACTIONS(1687), - [sym_interpolation_raw_start] = ACTIONS(1689), - [sym_raw_string_start] = ACTIONS(1691), - }, [224] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(5160), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2204), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(5388), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3461), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3080), - [sym_postfix_unary_expression] = STATE(3111), - [sym_prefix_unary_expression] = STATE(3111), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6154), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3080), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3111), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3080), - [sym_member_access_expression] = STATE(2484), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3111), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7547), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(3080), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3080), - [sym_typeof_expression] = STATE(3080), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2484), - [sym_literal] = STATE(3080), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(5706), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2270), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5197), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_pattern] = STATE(6511), + [sym_constant_pattern] = STATE(3429), + [sym_parenthesized_pattern] = STATE(3429), + [sym_var_pattern] = STATE(3429), + [sym_type_pattern] = STATE(3429), + [sym_list_pattern] = STATE(3429), + [sym_recursive_pattern] = STATE(3429), + [sym_positional_pattern_clause] = STATE(5689), + [sym_property_pattern_clause] = STATE(5723), + [sym_relational_pattern] = STATE(3429), + [sym_negated_pattern] = STATE(3429), + [sym_and_pattern] = STATE(3429), + [sym_or_pattern] = STATE(3429), + [sym_declaration_pattern] = STATE(3429), + [sym_expression] = STATE(5654), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3510), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(4202), + [sym_postfix_unary_expression] = STATE(4203), + [sym_prefix_unary_expression] = STATE(4203), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6134), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(4202), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(4203), + [sym_switch_expression] = STATE(3102), + [sym_switch_expression_arm] = STATE(6994), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(4202), + [sym_member_access_expression] = STATE(3112), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(4203), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7425), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(4202), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(4202), + [sym_typeof_expression] = STATE(4202), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(3112), + [sym_literal] = STATE(4202), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2261), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(224), [sym_preproc_endregion] = STATE(224), [sym_preproc_line] = STATE(224), @@ -73726,66 +73627,55 @@ 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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), - [anon_sym_SEMI] = ACTIONS(1975), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1481), - [anon_sym_LPAREN] = ACTIONS(1977), - [anon_sym_ref] = ACTIONS(1499), - [anon_sym_LBRACE] = ACTIONS(1487), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_COMMA] = ACTIONS(1987), + [anon_sym_LPAREN] = ACTIONS(1989), + [anon_sym_ref] = ACTIONS(1991), + [anon_sym_LBRACE] = ACTIONS(1057), + [anon_sym_RBRACE] = ACTIONS(1993), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1501), - [anon_sym_LT] = ACTIONS(1979), - [anon_sym_GT] = ACTIONS(1979), + [anon_sym_new] = ACTIONS(1059), + [anon_sym_LT] = ACTIONS(1995), + [anon_sym_GT] = ACTIONS(1995), [anon_sym_where] = ACTIONS(29), - [anon_sym_QMARK] = ACTIONS(1979), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = 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_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(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(1979), - [anon_sym_PERCENT] = ACTIONS(1981), - [anon_sym_CARET] = ACTIONS(75), - [anon_sym_PIPE] = ACTIONS(1979), - [anon_sym_AMP] = ACTIONS(79), - [anon_sym_LT_LT] = ACTIONS(1981), - [anon_sym_GT_GT] = ACTIONS(1979), - [anon_sym_GT_GT_GT] = ACTIONS(1981), - [anon_sym_EQ_EQ] = ACTIONS(1981), - [anon_sym_BANG_EQ] = ACTIONS(1981), - [anon_sym_GT_EQ] = ACTIONS(1981), - [anon_sym_LT_EQ] = ACTIONS(1981), + [anon_sym_CARET] = ACTIONS(1587), + [anon_sym_AMP] = ACTIONS(1587), + [anon_sym_GT_EQ] = ACTIONS(1997), + [anon_sym_LT_EQ] = ACTIONS(1997), [anon_sym_this] = ACTIONS(83), - [anon_sym_DOT] = ACTIONS(1979), - [anon_sym_scoped] = ACTIONS(85), + [anon_sym_scoped] = ACTIONS(1073), [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(89), + [anon_sym_var] = ACTIONS(1999), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1067), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), - [anon_sym_switch] = ACTIONS(1979), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1503), + [anon_sym_throw] = ACTIONS(1527), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1505), - [anon_sym_DOT_DOT] = ACTIONS(1507), - [anon_sym_AMP_AMP] = ACTIONS(1981), - [anon_sym_PIPE_PIPE] = ACTIONS(1981), - [anon_sym_QMARK_QMARK] = ACTIONS(1981), + [anon_sym_await] = ACTIONS(1529), + [sym_discard] = ACTIONS(1081), + [anon_sym_DOT_DOT] = ACTIONS(123), + [anon_sym_not] = ACTIONS(2001), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -73798,11 +73688,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(1979), - [anon_sym_is] = ACTIONS(1979), - [anon_sym_DASH_GT] = ACTIONS(1981), [anon_sym_stackalloc] = ACTIONS(127), - [anon_sym_with] = ACTIONS(1979), [anon_sym_sizeof] = ACTIONS(129), [anon_sym_typeof] = ACTIONS(131), [anon_sym___makeref] = ACTIONS(133), @@ -73814,7 +73700,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(1089), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -73831,84 +73717,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [225] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2914), - [sym__name] = STATE(5873), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2362), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(4048), - [sym_non_lvalue_expression] = STATE(3880), - [sym_lvalue_expression] = STATE(3092), - [sym__expression_statement_expression] = STATE(3873), - [sym_assignment_expression] = STATE(3881), - [sym_binary_expression] = STATE(3873), - [sym_postfix_unary_expression] = STATE(3881), - [sym_prefix_unary_expression] = STATE(3881), - [sym__pointer_indirection_expression] = STATE(2913), - [sym_query_expression] = STATE(3873), - [sym_from_clause] = STATE(6168), - [sym_conditional_expression] = STATE(3873), - [sym_conditional_access_expression] = STATE(3873), - [sym_as_expression] = STATE(3873), - [sym_is_expression] = STATE(3873), - [sym_is_pattern_expression] = STATE(3873), - [sym_cast_expression] = STATE(3873), - [sym_checked_expression] = STATE(3873), - [sym_invocation_expression] = STATE(3881), - [sym_switch_expression] = STATE(3873), - [sym_await_expression] = STATE(3881), - [sym_throw_expression] = STATE(3873), - [sym_element_access_expression] = STATE(2913), - [sym_interpolated_string_expression] = STATE(3873), - [sym_member_access_expression] = STATE(2913), - [sym_object_creation_expression] = STATE(3881), - [sym_parenthesized_expression] = STATE(3881), - [sym__parenthesized_lvalue_expression] = STATE(2913), - [sym_lambda_expression] = STATE(3873), - [sym__lambda_expression_init] = STATE(7533), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3873), - [sym_anonymous_method_expression] = STATE(3873), - [sym_anonymous_object_creation_expression] = STATE(3873), - [sym_implicit_array_creation_expression] = STATE(3873), - [sym_implicit_object_creation_expression] = STATE(3873), - [sym_implicit_stackalloc_expression] = STATE(3873), - [sym_initializer_expression] = STATE(3873), - [sym_default_expression] = STATE(3873), - [sym_with_expression] = STATE(3873), - [sym_sizeof_expression] = STATE(3873), - [sym_typeof_expression] = STATE(3873), - [sym_makeref_expression] = STATE(3873), - [sym_ref_expression] = STATE(3873), - [sym_reftype_expression] = STATE(3873), - [sym_refvalue_expression] = STATE(3873), - [sym_stackalloc_expression] = STATE(3873), - [sym_range_expression] = STATE(3873), - [sym_tuple_expression] = STATE(2913), - [sym_literal] = STATE(3873), - [sym_character_literal] = STATE(3877), - [sym_string_literal] = STATE(3877), - [sym_raw_string_literal] = STATE(3877), - [sym_boolean_literal] = STATE(3877), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3873), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(5152), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2196), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(5428), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3683), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3102), + [sym_postfix_unary_expression] = STATE(3079), + [sym_prefix_unary_expression] = STATE(3079), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6147), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3102), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3079), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3102), + [sym_member_access_expression] = STATE(2472), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3079), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7404), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(3102), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3102), + [sym_typeof_expression] = STATE(3102), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2472), + [sym_literal] = STATE(3102), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2261), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(225), [sym_preproc_endregion] = STATE(225), [sym_preproc_line] = STATE(225), @@ -73918,66 +73804,66 @@ 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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3382), - [sym__identifier_token] = ACTIONS(25), - [anon_sym_alias] = ACTIONS(29), - [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1627), - [anon_sym_COMMA] = ACTIONS(1151), - [anon_sym_LPAREN] = ACTIONS(1961), - [anon_sym_ref] = ACTIONS(1963), - [anon_sym_LBRACE] = ACTIONS(1633), - [anon_sym_delegate] = ACTIONS(1635), - [anon_sym_async] = ACTIONS(1047), - [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1637), - [anon_sym_LT] = ACTIONS(1165), - [anon_sym_GT] = ACTIONS(1165), - [anon_sym_where] = ACTIONS(29), - [anon_sym_QMARK] = ACTIONS(1165), - [anon_sym_notnull] = ACTIONS(29), - [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1639), - [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(1645), - [anon_sym_false] = ACTIONS(1645), - [anon_sym_PLUS] = ACTIONS(1965), - [anon_sym_DASH] = ACTIONS(1965), - [anon_sym_STAR] = ACTIONS(1647), - [anon_sym_SLASH] = ACTIONS(1165), - [anon_sym_PERCENT] = ACTIONS(1151), - [anon_sym_CARET] = ACTIONS(1967), - [anon_sym_PIPE] = ACTIONS(1165), - [anon_sym_AMP] = ACTIONS(1965), - [anon_sym_LT_LT] = ACTIONS(1151), - [anon_sym_GT_GT] = ACTIONS(1165), - [anon_sym_GT_GT_GT] = ACTIONS(1151), - [anon_sym_EQ_EQ] = ACTIONS(1151), - [anon_sym_BANG_EQ] = ACTIONS(1151), - [anon_sym_GT_EQ] = ACTIONS(1151), - [anon_sym_LT_EQ] = ACTIONS(1151), - [anon_sym_this] = ACTIONS(1649), - [anon_sym_DOT] = ACTIONS(1165), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), + [sym__identifier_token] = ACTIONS(25), + [anon_sym_alias] = ACTIONS(29), + [anon_sym_global] = ACTIONS(29), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1479), + [anon_sym_LPAREN] = ACTIONS(1965), + [anon_sym_ref] = ACTIONS(1967), + [anon_sym_LBRACE] = ACTIONS(1481), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), + [anon_sym_file] = ACTIONS(29), + [anon_sym_new] = ACTIONS(1059), + [anon_sym_LT] = ACTIONS(1161), + [anon_sym_GT] = ACTIONS(1161), + [anon_sym_where] = ACTIONS(29), + [anon_sym_QMARK] = ACTIONS(1161), + [anon_sym_notnull] = ACTIONS(29), + [anon_sym_unmanaged] = ACTIONS(29), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(1969), + [anon_sym_TILDE] = ACTIONS(1971), + [anon_sym_PLUS_PLUS] = ACTIONS(1971), + [anon_sym_DASH_DASH] = ACTIONS(1971), + [anon_sym_true] = ACTIONS(77), + [anon_sym_false] = ACTIONS(77), + [anon_sym_PLUS] = ACTIONS(1969), + [anon_sym_DASH] = ACTIONS(1969), + [anon_sym_STAR] = ACTIONS(1973), + [anon_sym_SLASH] = ACTIONS(1161), + [anon_sym_PERCENT] = ACTIONS(1147), + [anon_sym_CARET] = ACTIONS(1971), + [anon_sym_PIPE] = ACTIONS(1161), + [anon_sym_AMP] = ACTIONS(1969), + [anon_sym_LT_LT] = ACTIONS(1147), + [anon_sym_GT_GT] = ACTIONS(1161), + [anon_sym_GT_GT_GT] = ACTIONS(1147), + [anon_sym_EQ_EQ] = ACTIONS(1147), + [anon_sym_BANG_EQ] = ACTIONS(1147), + [anon_sym_GT_EQ] = ACTIONS(1147), + [anon_sym_LT_EQ] = ACTIONS(1147), + [anon_sym_this] = ACTIONS(83), + [anon_sym_DOT] = ACTIONS(1161), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1651), + [anon_sym_base] = ACTIONS(87), + [anon_sym_EQ_GT] = ACTIONS(1147), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1653), - [anon_sym_unchecked] = ACTIONS(1639), + [sym_predefined_type] = ACTIONS(91), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), - [anon_sym_switch] = ACTIONS(1165), - [anon_sym_default] = ACTIONS(1655), - [anon_sym_throw] = ACTIONS(1969), + [anon_sym_switch] = ACTIONS(1161), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(1975), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1971), - [anon_sym_DOT_DOT] = ACTIONS(1973), - [anon_sym_AMP_AMP] = ACTIONS(1151), - [anon_sym_PIPE_PIPE] = ACTIONS(1151), - [anon_sym_QMARK_QMARK] = ACTIONS(1151), + [anon_sym_await] = ACTIONS(1977), + [anon_sym_DOT_DOT] = ACTIONS(1979), + [anon_sym_AMP_AMP] = ACTIONS(1147), + [anon_sym_PIPE_PIPE] = ACTIONS(1147), + [anon_sym_QMARK_QMARK] = ACTIONS(1147), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -73990,23 +73876,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(1165), - [anon_sym_is] = ACTIONS(1165), - [anon_sym_DASH_GT] = ACTIONS(1151), - [anon_sym_stackalloc] = ACTIONS(1663), - [anon_sym_with] = ACTIONS(1165), - [anon_sym_sizeof] = ACTIONS(1665), - [anon_sym_typeof] = ACTIONS(1667), - [anon_sym___makeref] = ACTIONS(1669), - [anon_sym___reftype] = ACTIONS(1671), - [anon_sym___refvalue] = ACTIONS(1673), - [sym_null_literal] = ACTIONS(1675), - [anon_sym_SQUOTE] = ACTIONS(1677), - [sym_integer_literal] = ACTIONS(1675), - [sym_real_literal] = ACTIONS(1679), - [anon_sym_DQUOTE] = ACTIONS(1681), - [sym_verbatim_string_literal] = ACTIONS(1679), - [aux_sym_preproc_if_token1] = ACTIONS(1683), + [anon_sym_as] = ACTIONS(1161), + [anon_sym_is] = ACTIONS(1161), + [anon_sym_DASH_GT] = ACTIONS(1147), + [anon_sym_stackalloc] = ACTIONS(127), + [anon_sym_with] = ACTIONS(1161), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_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), @@ -74017,105 +73903,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(1685), - [sym_interpolation_verbatim_start] = ACTIONS(1687), - [sym_interpolation_raw_start] = ACTIONS(1689), - [sym_raw_string_start] = ACTIONS(1691), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [sym_interpolation_raw_start] = ACTIONS(155), + [sym_raw_string_start] = ACTIONS(157), }, [226] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(5723), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2284), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5162), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_pattern] = STATE(6590), - [sym_constant_pattern] = STATE(3486), - [sym_parenthesized_pattern] = STATE(3486), - [sym_var_pattern] = STATE(3486), - [sym_type_pattern] = STATE(3486), - [sym_list_pattern] = STATE(3486), - [sym_recursive_pattern] = STATE(3486), - [sym_positional_pattern_clause] = STATE(5670), - [sym_property_pattern_clause] = STATE(5735), - [sym_relational_pattern] = STATE(3486), - [sym_negated_pattern] = STATE(3486), - [sym_and_pattern] = STATE(3486), - [sym_or_pattern] = STATE(3486), - [sym_declaration_pattern] = STATE(3486), - [sym_expression] = STATE(5668), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3520), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(4216), - [sym_postfix_unary_expression] = STATE(4219), - [sym_prefix_unary_expression] = STATE(4219), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6154), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(4216), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(4219), - [sym_switch_expression] = STATE(3080), - [sym_switch_expression_arm] = STATE(6940), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(4216), - [sym_member_access_expression] = STATE(3121), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(4219), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7530), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(4216), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(4216), - [sym_typeof_expression] = STATE(4216), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(3121), - [sym_literal] = STATE(4216), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2267), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(5528), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2225), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(4472), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_pattern] = STATE(6702), + [sym_constant_pattern] = STATE(3429), + [sym_parenthesized_pattern] = STATE(3429), + [sym_var_pattern] = STATE(3429), + [sym_type_pattern] = STATE(3429), + [sym_list_pattern] = STATE(3429), + [sym_recursive_pattern] = STATE(3429), + [sym_positional_pattern_clause] = STATE(5135), + [sym_property_pattern_clause] = STATE(5666), + [sym_subpattern] = STATE(6965), + [sym_relational_pattern] = STATE(3429), + [sym_negated_pattern] = STATE(3429), + [sym_and_pattern] = STATE(3429), + [sym_or_pattern] = STATE(3429), + [sym_declaration_pattern] = STATE(3429), + [sym_expression] = STATE(5405), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3660), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(4418), + [sym_postfix_unary_expression] = STATE(4403), + [sym_prefix_unary_expression] = STATE(4403), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6163), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(4418), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(4403), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(4418), + [sym_member_access_expression] = STATE(3127), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(4403), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7633), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(4418), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(4418), + [sym_typeof_expression] = STATE(4418), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(3127), + [sym_literal] = STATE(4418), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(226), [sym_preproc_endregion] = STATE(226), [sym_preproc_line] = STATE(226), @@ -74125,55 +74011,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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1049), - [anon_sym_COMMA] = ACTIONS(1983), - [anon_sym_LPAREN] = ACTIONS(1985), - [anon_sym_ref] = ACTIONS(1987), - [anon_sym_LBRACE] = ACTIONS(1059), - [anon_sym_RBRACE] = ACTIONS(1989), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_COMMA] = ACTIONS(2003), + [anon_sym_LPAREN] = ACTIONS(1141), + [anon_sym_ref] = ACTIONS(2005), + [anon_sym_LBRACE] = ACTIONS(1057), + [anon_sym_RBRACE] = ACTIONS(2007), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1061), - [anon_sym_LT] = ACTIONS(1991), - [anon_sym_GT] = ACTIONS(1991), + [anon_sym_new] = ACTIONS(1095), + [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(1067), - [anon_sym_BANG] = ACTIONS(1617), - [anon_sym_TILDE] = ACTIONS(1617), - [anon_sym_PLUS_PLUS] = ACTIONS(1617), - [anon_sym_DASH_DASH] = ACTIONS(1617), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(1101), + [anon_sym_TILDE] = ACTIONS(1101), + [anon_sym_PLUS_PLUS] = ACTIONS(1101), + [anon_sym_DASH_DASH] = ACTIONS(1101), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1615), - [anon_sym_DASH] = ACTIONS(1615), - [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(1617), - [anon_sym_AMP] = ACTIONS(1617), - [anon_sym_GT_EQ] = ACTIONS(1993), - [anon_sym_LT_EQ] = ACTIONS(1993), + [anon_sym_PLUS] = ACTIONS(1103), + [anon_sym_DASH] = ACTIONS(1103), + [anon_sym_STAR] = ACTIONS(1227), + [anon_sym_CARET] = ACTIONS(1101), + [anon_sym_AMP] = ACTIONS(1101), + [anon_sym_GT_EQ] = ACTIONS(1071), + [anon_sym_LT_EQ] = ACTIONS(1071), [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(1075), + [anon_sym_scoped] = ACTIONS(1073), [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(1995), + [anon_sym_var] = ACTIONS(1075), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1067), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1589), + [anon_sym_throw] = ACTIONS(1231), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1591), - [sym_discard] = ACTIONS(1083), - [anon_sym_DOT_DOT] = ACTIONS(123), - [anon_sym_not] = ACTIONS(1997), + [anon_sym_await] = ACTIONS(1233), + [sym_discard] = ACTIONS(1081), + [anon_sym_DOT_DOT] = ACTIONS(1235), + [anon_sym_not] = ACTIONS(1085), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -74198,7 +74084,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(1089), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -74215,99 +74101,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [227] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(5634), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2234), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(4363), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_pattern] = STATE(6717), - [sym_constant_pattern] = STATE(3486), - [sym_parenthesized_pattern] = STATE(3486), - [sym_var_pattern] = STATE(3486), - [sym_type_pattern] = STATE(3486), - [sym_list_pattern] = STATE(3486), - [sym_recursive_pattern] = STATE(3486), - [sym_positional_pattern_clause] = STATE(5175), - [sym_property_pattern_clause] = STATE(5675), - [sym_subpattern] = STATE(6736), - [sym_relational_pattern] = STATE(3486), - [sym_negated_pattern] = STATE(3486), - [sym_and_pattern] = STATE(3486), - [sym_or_pattern] = STATE(3486), - [sym_declaration_pattern] = STATE(3486), - [sym_expression] = STATE(4607), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3408), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(4216), - [sym_postfix_unary_expression] = STATE(4219), - [sym_prefix_unary_expression] = STATE(4219), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6161), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(4216), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(4219), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(4216), - [sym_member_access_expression] = STATE(3121), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(4219), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7323), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(4216), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(4216), - [sym_typeof_expression] = STATE(4216), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(3121), - [sym_literal] = STATE(4216), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(5528), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2196), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(5645), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3660), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3102), + [sym_postfix_unary_expression] = STATE(3079), + [sym_prefix_unary_expression] = STATE(3079), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6163), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3102), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3079), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3102), + [sym_member_access_expression] = STATE(2472), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3079), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7633), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(3102), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3102), + [sym_typeof_expression] = STATE(3102), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2472), + [sym_literal] = STATE(3102), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(227), [sym_preproc_endregion] = STATE(227), [sym_preproc_line] = STATE(227), @@ -74317,55 +74188,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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), - [sym__identifier_token] = ACTIONS(25), - [anon_sym_alias] = ACTIONS(29), - [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1049), - [anon_sym_COMMA] = ACTIONS(1999), - [anon_sym_LPAREN] = ACTIONS(1143), - [anon_sym_ref] = ACTIONS(1953), - [anon_sym_LBRACE] = ACTIONS(1059), - [anon_sym_RBRACE] = ACTIONS(2001), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), - [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1101), - [anon_sym_LT] = ACTIONS(1063), - [anon_sym_GT] = ACTIONS(1063), - [anon_sym_where] = ACTIONS(29), - [anon_sym_notnull] = ACTIONS(29), - [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1067), - [anon_sym_BANG] = ACTIONS(1107), - [anon_sym_TILDE] = ACTIONS(1107), - [anon_sym_PLUS_PLUS] = ACTIONS(1107), - [anon_sym_DASH_DASH] = ACTIONS(1107), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1109), - [anon_sym_DASH] = ACTIONS(1109), - [anon_sym_STAR] = ACTIONS(1111), - [anon_sym_CARET] = ACTIONS(1107), - [anon_sym_AMP] = ACTIONS(1107), - [anon_sym_GT_EQ] = ACTIONS(1073), - [anon_sym_LT_EQ] = ACTIONS(1073), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), + [sym__identifier_token] = ACTIONS(25), + [anon_sym_alias] = ACTIONS(29), + [anon_sym_global] = ACTIONS(29), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1479), + [anon_sym_COLON] = ACTIONS(1147), + [anon_sym_LPAREN] = ACTIONS(2009), + [anon_sym_ref] = ACTIONS(2011), + [anon_sym_LBRACE] = ACTIONS(1481), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), + [anon_sym_file] = ACTIONS(29), + [anon_sym_new] = ACTIONS(1095), + [anon_sym_LT] = ACTIONS(1161), + [anon_sym_GT] = ACTIONS(1161), + [anon_sym_where] = ACTIONS(29), + [anon_sym_QMARK] = ACTIONS(1161), + [anon_sym_notnull] = ACTIONS(29), + [anon_sym_unmanaged] = ACTIONS(29), + [anon_sym_checked] = ACTIONS(1065), + [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(77), + [anon_sym_false] = ACTIONS(77), + [anon_sym_PLUS] = ACTIONS(2013), + [anon_sym_DASH] = ACTIONS(2013), + [anon_sym_STAR] = ACTIONS(1227), + [anon_sym_SLASH] = ACTIONS(1161), + [anon_sym_PERCENT] = ACTIONS(1147), + [anon_sym_CARET] = ACTIONS(2015), + [anon_sym_PIPE] = ACTIONS(1161), + [anon_sym_AMP] = ACTIONS(2013), + [anon_sym_LT_LT] = ACTIONS(1147), + [anon_sym_GT_GT] = ACTIONS(1161), + [anon_sym_GT_GT_GT] = ACTIONS(1147), + [anon_sym_EQ_EQ] = ACTIONS(1147), + [anon_sym_BANG_EQ] = ACTIONS(1147), + [anon_sym_GT_EQ] = ACTIONS(1147), + [anon_sym_LT_EQ] = ACTIONS(1147), [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(1075), + [anon_sym_DOT] = ACTIONS(1161), + [anon_sym_scoped] = ACTIONS(85), [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(1077), + [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1067), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), + [anon_sym_switch] = ACTIONS(1161), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1119), + [anon_sym_throw] = ACTIONS(1231), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1121), - [sym_discard] = ACTIONS(1083), - [anon_sym_DOT_DOT] = ACTIONS(1125), - [anon_sym_not] = ACTIONS(1087), + [anon_sym_await] = ACTIONS(1233), + [anon_sym_DOT_DOT] = ACTIONS(1235), + [anon_sym_AMP_AMP] = ACTIONS(1147), + [anon_sym_PIPE_PIPE] = ACTIONS(1147), + [anon_sym_QMARK_QMARK] = ACTIONS(1147), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -74378,7 +74260,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(1161), + [anon_sym_is] = ACTIONS(1161), + [anon_sym_DASH_GT] = ACTIONS(1147), [anon_sym_stackalloc] = ACTIONS(127), + [anon_sym_with] = ACTIONS(1161), [anon_sym_sizeof] = ACTIONS(129), [anon_sym_typeof] = ACTIONS(131), [anon_sym___makeref] = ACTIONS(133), @@ -74390,7 +74276,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(1089), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -74407,84 +74293,99 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [228] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(5160), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2204), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(5325), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3461), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3080), - [sym_postfix_unary_expression] = STATE(3111), - [sym_prefix_unary_expression] = STATE(3111), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6154), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3080), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3111), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3080), - [sym_member_access_expression] = STATE(2484), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3111), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7547), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(3080), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3080), - [sym_typeof_expression] = STATE(3080), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2484), - [sym_literal] = STATE(3080), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(5706), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2270), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5197), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_pattern] = STATE(6511), + [sym_constant_pattern] = STATE(3429), + [sym_parenthesized_pattern] = STATE(3429), + [sym_var_pattern] = STATE(3429), + [sym_type_pattern] = STATE(3429), + [sym_list_pattern] = STATE(3429), + [sym_recursive_pattern] = STATE(3429), + [sym_positional_pattern_clause] = STATE(5689), + [sym_property_pattern_clause] = STATE(5723), + [sym_relational_pattern] = STATE(3429), + [sym_negated_pattern] = STATE(3429), + [sym_and_pattern] = STATE(3429), + [sym_or_pattern] = STATE(3429), + [sym_declaration_pattern] = STATE(3429), + [sym_expression] = STATE(5654), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3510), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(4202), + [sym_postfix_unary_expression] = STATE(4203), + [sym_prefix_unary_expression] = STATE(4203), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6134), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(4202), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(4203), + [sym_switch_expression] = STATE(3102), + [sym_switch_expression_arm] = STATE(6795), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(4202), + [sym_member_access_expression] = STATE(3112), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(4203), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7425), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(4202), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(4202), + [sym_typeof_expression] = STATE(4202), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(3112), + [sym_literal] = STATE(4202), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2261), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(228), [sym_preproc_endregion] = STATE(228), [sym_preproc_line] = STATE(228), @@ -74494,66 +74395,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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), - [anon_sym_SEMI] = ACTIONS(2003), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1481), - [anon_sym_LPAREN] = ACTIONS(1977), - [anon_sym_ref] = ACTIONS(1499), - [anon_sym_LBRACE] = ACTIONS(1487), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_COMMA] = ACTIONS(2017), + [anon_sym_LPAREN] = ACTIONS(1989), + [anon_sym_ref] = ACTIONS(1991), + [anon_sym_LBRACE] = ACTIONS(1057), + [anon_sym_RBRACE] = ACTIONS(2019), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1501), - [anon_sym_LT] = ACTIONS(1979), - [anon_sym_GT] = ACTIONS(1979), + [anon_sym_new] = ACTIONS(1059), + [anon_sym_LT] = ACTIONS(1995), + [anon_sym_GT] = ACTIONS(1995), [anon_sym_where] = ACTIONS(29), - [anon_sym_QMARK] = ACTIONS(1979), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = 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_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(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(1979), - [anon_sym_PERCENT] = ACTIONS(1981), - [anon_sym_CARET] = ACTIONS(75), - [anon_sym_PIPE] = ACTIONS(1979), - [anon_sym_AMP] = ACTIONS(79), - [anon_sym_LT_LT] = ACTIONS(1981), - [anon_sym_GT_GT] = ACTIONS(1979), - [anon_sym_GT_GT_GT] = ACTIONS(1981), - [anon_sym_EQ_EQ] = ACTIONS(1981), - [anon_sym_BANG_EQ] = ACTIONS(1981), - [anon_sym_GT_EQ] = ACTIONS(1981), - [anon_sym_LT_EQ] = ACTIONS(1981), + [anon_sym_CARET] = ACTIONS(1587), + [anon_sym_AMP] = ACTIONS(1587), + [anon_sym_GT_EQ] = ACTIONS(1997), + [anon_sym_LT_EQ] = ACTIONS(1997), [anon_sym_this] = ACTIONS(83), - [anon_sym_DOT] = ACTIONS(1979), - [anon_sym_scoped] = ACTIONS(85), + [anon_sym_scoped] = ACTIONS(1073), [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(89), + [anon_sym_var] = ACTIONS(1999), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1067), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), - [anon_sym_switch] = ACTIONS(1979), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1503), + [anon_sym_throw] = ACTIONS(1527), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1505), - [anon_sym_DOT_DOT] = ACTIONS(1507), - [anon_sym_AMP_AMP] = ACTIONS(1981), - [anon_sym_PIPE_PIPE] = ACTIONS(1981), - [anon_sym_QMARK_QMARK] = ACTIONS(1981), + [anon_sym_await] = ACTIONS(1529), + [sym_discard] = ACTIONS(1081), + [anon_sym_DOT_DOT] = ACTIONS(123), + [anon_sym_not] = ACTIONS(2001), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -74566,11 +74456,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(1979), - [anon_sym_is] = ACTIONS(1979), - [anon_sym_DASH_GT] = ACTIONS(1981), [anon_sym_stackalloc] = ACTIONS(127), - [anon_sym_with] = ACTIONS(1979), [anon_sym_sizeof] = ACTIONS(129), [anon_sym_typeof] = ACTIONS(131), [anon_sym___makeref] = ACTIONS(133), @@ -74582,7 +74468,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(1089), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -74599,84 +74485,99 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [229] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(5160), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2204), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(5359), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3461), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3080), - [sym_postfix_unary_expression] = STATE(3111), - [sym_prefix_unary_expression] = STATE(3111), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6154), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3080), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3111), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3080), - [sym_member_access_expression] = STATE(2484), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3111), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7547), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(3080), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3080), - [sym_typeof_expression] = STATE(3080), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2484), - [sym_literal] = STATE(3080), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(5706), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2270), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5197), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_pattern] = STATE(6511), + [sym_constant_pattern] = STATE(3429), + [sym_parenthesized_pattern] = STATE(3429), + [sym_var_pattern] = STATE(3429), + [sym_type_pattern] = STATE(3429), + [sym_list_pattern] = STATE(3429), + [sym_recursive_pattern] = STATE(3429), + [sym_positional_pattern_clause] = STATE(5689), + [sym_property_pattern_clause] = STATE(5723), + [sym_relational_pattern] = STATE(3429), + [sym_negated_pattern] = STATE(3429), + [sym_and_pattern] = STATE(3429), + [sym_or_pattern] = STATE(3429), + [sym_declaration_pattern] = STATE(3429), + [sym_expression] = STATE(5654), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3510), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(4202), + [sym_postfix_unary_expression] = STATE(4203), + [sym_prefix_unary_expression] = STATE(4203), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6134), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(4202), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(4203), + [sym_switch_expression] = STATE(3102), + [sym_switch_expression_arm] = STATE(6760), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(4202), + [sym_member_access_expression] = STATE(3112), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(4203), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7425), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(4202), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(4202), + [sym_typeof_expression] = STATE(4202), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(3112), + [sym_literal] = STATE(4202), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2261), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(229), [sym_preproc_endregion] = STATE(229), [sym_preproc_line] = STATE(229), @@ -74686,66 +74587,55 @@ 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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), - [anon_sym_SEMI] = ACTIONS(2005), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1481), - [anon_sym_LPAREN] = ACTIONS(1977), - [anon_sym_ref] = ACTIONS(1499), - [anon_sym_LBRACE] = ACTIONS(1487), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_COMMA] = ACTIONS(2021), + [anon_sym_LPAREN] = ACTIONS(1989), + [anon_sym_ref] = ACTIONS(1991), + [anon_sym_LBRACE] = ACTIONS(1057), + [anon_sym_RBRACE] = ACTIONS(2023), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1501), - [anon_sym_LT] = ACTIONS(1979), - [anon_sym_GT] = ACTIONS(1979), + [anon_sym_new] = ACTIONS(1059), + [anon_sym_LT] = ACTIONS(1995), + [anon_sym_GT] = ACTIONS(1995), [anon_sym_where] = ACTIONS(29), - [anon_sym_QMARK] = ACTIONS(1979), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = 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_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(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(1979), - [anon_sym_PERCENT] = ACTIONS(1981), - [anon_sym_CARET] = ACTIONS(75), - [anon_sym_PIPE] = ACTIONS(1979), - [anon_sym_AMP] = ACTIONS(79), - [anon_sym_LT_LT] = ACTIONS(1981), - [anon_sym_GT_GT] = ACTIONS(1979), - [anon_sym_GT_GT_GT] = ACTIONS(1981), - [anon_sym_EQ_EQ] = ACTIONS(1981), - [anon_sym_BANG_EQ] = ACTIONS(1981), - [anon_sym_GT_EQ] = ACTIONS(1981), - [anon_sym_LT_EQ] = ACTIONS(1981), + [anon_sym_CARET] = ACTIONS(1587), + [anon_sym_AMP] = ACTIONS(1587), + [anon_sym_GT_EQ] = ACTIONS(1997), + [anon_sym_LT_EQ] = ACTIONS(1997), [anon_sym_this] = ACTIONS(83), - [anon_sym_DOT] = ACTIONS(1979), - [anon_sym_scoped] = ACTIONS(85), + [anon_sym_scoped] = ACTIONS(1073), [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(89), + [anon_sym_var] = ACTIONS(1999), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1067), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), - [anon_sym_switch] = ACTIONS(1979), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1503), + [anon_sym_throw] = ACTIONS(1527), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1505), - [anon_sym_DOT_DOT] = ACTIONS(1507), - [anon_sym_AMP_AMP] = ACTIONS(1981), - [anon_sym_PIPE_PIPE] = ACTIONS(1981), - [anon_sym_QMARK_QMARK] = ACTIONS(1981), + [anon_sym_await] = ACTIONS(1529), + [sym_discard] = ACTIONS(1081), + [anon_sym_DOT_DOT] = ACTIONS(123), + [anon_sym_not] = ACTIONS(2001), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -74758,11 +74648,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(1979), - [anon_sym_is] = ACTIONS(1979), - [anon_sym_DASH_GT] = ACTIONS(1981), [anon_sym_stackalloc] = ACTIONS(127), - [anon_sym_with] = ACTIONS(1979), [anon_sym_sizeof] = ACTIONS(129), [anon_sym_typeof] = ACTIONS(131), [anon_sym___makeref] = ACTIONS(133), @@ -74774,7 +74660,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(1089), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -74791,99 +74677,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [230] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(5723), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2284), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5162), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_pattern] = STATE(6590), - [sym_constant_pattern] = STATE(3486), - [sym_parenthesized_pattern] = STATE(3486), - [sym_var_pattern] = STATE(3486), - [sym_type_pattern] = STATE(3486), - [sym_list_pattern] = STATE(3486), - [sym_recursive_pattern] = STATE(3486), - [sym_positional_pattern_clause] = STATE(5670), - [sym_property_pattern_clause] = STATE(5735), - [sym_relational_pattern] = STATE(3486), - [sym_negated_pattern] = STATE(3486), - [sym_and_pattern] = STATE(3486), - [sym_or_pattern] = STATE(3486), - [sym_declaration_pattern] = STATE(3486), - [sym_expression] = STATE(5668), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3520), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(4216), - [sym_postfix_unary_expression] = STATE(4219), - [sym_prefix_unary_expression] = STATE(4219), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6154), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(4216), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(4219), - [sym_switch_expression] = STATE(3080), - [sym_switch_expression_arm] = STATE(6777), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(4216), - [sym_member_access_expression] = STATE(3121), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(4219), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7530), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(4216), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(4216), - [sym_typeof_expression] = STATE(4216), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(3121), - [sym_literal] = STATE(4216), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2267), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(5152), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2196), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(5463), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3356), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3102), + [sym_postfix_unary_expression] = STATE(3079), + [sym_prefix_unary_expression] = STATE(3079), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6134), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3102), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3079), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3102), + [sym_member_access_expression] = STATE(2472), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3079), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7627), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(3102), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3102), + [sym_typeof_expression] = STATE(3102), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2472), + [sym_literal] = STATE(3102), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(230), [sym_preproc_endregion] = STATE(230), [sym_preproc_line] = STATE(230), @@ -74893,55 +74764,66 @@ 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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), + [anon_sym_SEMI] = ACTIONS(2025), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1049), - [anon_sym_COMMA] = ACTIONS(2007), - [anon_sym_LPAREN] = ACTIONS(1985), - [anon_sym_ref] = ACTIONS(1987), - [anon_sym_LBRACE] = ACTIONS(1059), - [anon_sym_RBRACE] = ACTIONS(2009), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1479), + [anon_sym_LPAREN] = ACTIONS(2027), + [anon_sym_ref] = ACTIONS(1513), + [anon_sym_LBRACE] = ACTIONS(1481), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1061), - [anon_sym_LT] = ACTIONS(1991), - [anon_sym_GT] = ACTIONS(1991), + [anon_sym_new] = ACTIONS(1515), + [anon_sym_LT] = ACTIONS(2029), + [anon_sym_GT] = ACTIONS(2029), [anon_sym_where] = ACTIONS(29), + [anon_sym_QMARK] = ACTIONS(2029), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1067), - [anon_sym_BANG] = ACTIONS(1617), - [anon_sym_TILDE] = ACTIONS(1617), - [anon_sym_PLUS_PLUS] = ACTIONS(1617), - [anon_sym_DASH_DASH] = ACTIONS(1617), + [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(1615), - [anon_sym_DASH] = ACTIONS(1615), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_DASH] = ACTIONS(79), [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(1617), - [anon_sym_AMP] = ACTIONS(1617), - [anon_sym_GT_EQ] = ACTIONS(1993), - [anon_sym_LT_EQ] = ACTIONS(1993), + [anon_sym_SLASH] = ACTIONS(2029), + [anon_sym_PERCENT] = ACTIONS(2031), + [anon_sym_CARET] = ACTIONS(75), + [anon_sym_PIPE] = ACTIONS(2029), + [anon_sym_AMP] = ACTIONS(79), + [anon_sym_LT_LT] = ACTIONS(2031), + [anon_sym_GT_GT] = ACTIONS(2029), + [anon_sym_GT_GT_GT] = ACTIONS(2031), + [anon_sym_EQ_EQ] = ACTIONS(2031), + [anon_sym_BANG_EQ] = ACTIONS(2031), + [anon_sym_GT_EQ] = ACTIONS(2031), + [anon_sym_LT_EQ] = ACTIONS(2031), [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(1075), + [anon_sym_DOT] = ACTIONS(2029), + [anon_sym_scoped] = ACTIONS(85), [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(1995), + [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1067), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), + [anon_sym_switch] = ACTIONS(2029), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1589), + [anon_sym_throw] = ACTIONS(1517), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1591), - [sym_discard] = ACTIONS(1083), - [anon_sym_DOT_DOT] = ACTIONS(123), - [anon_sym_not] = ACTIONS(1997), + [anon_sym_await] = ACTIONS(1519), + [anon_sym_DOT_DOT] = ACTIONS(1521), + [anon_sym_AMP_AMP] = ACTIONS(2031), + [anon_sym_PIPE_PIPE] = ACTIONS(2031), + [anon_sym_QMARK_QMARK] = ACTIONS(2031), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -74954,7 +74836,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(2029), + [anon_sym_is] = ACTIONS(2029), + [anon_sym_DASH_GT] = ACTIONS(2031), [anon_sym_stackalloc] = ACTIONS(127), + [anon_sym_with] = ACTIONS(2029), [anon_sym_sizeof] = ACTIONS(129), [anon_sym_typeof] = ACTIONS(131), [anon_sym___makeref] = ACTIONS(133), @@ -74966,7 +74852,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(1089), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -74983,99 +74869,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [231] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(5634), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2234), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(4363), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_pattern] = STATE(6717), - [sym_constant_pattern] = STATE(3486), - [sym_parenthesized_pattern] = STATE(3486), - [sym_var_pattern] = STATE(3486), - [sym_type_pattern] = STATE(3486), - [sym_list_pattern] = STATE(3486), - [sym_recursive_pattern] = STATE(3486), - [sym_positional_pattern_clause] = STATE(5175), - [sym_property_pattern_clause] = STATE(5675), - [sym_subpattern] = STATE(6734), - [sym_relational_pattern] = STATE(3486), - [sym_negated_pattern] = STATE(3486), - [sym_and_pattern] = STATE(3486), - [sym_or_pattern] = STATE(3486), - [sym_declaration_pattern] = STATE(3486), - [sym_expression] = STATE(4607), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3408), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(4216), - [sym_postfix_unary_expression] = STATE(4219), - [sym_prefix_unary_expression] = STATE(4219), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6161), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(4216), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(4219), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(4216), - [sym_member_access_expression] = STATE(3121), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(4219), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7323), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(4216), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(4216), - [sym_typeof_expression] = STATE(4216), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(3121), - [sym_literal] = STATE(4216), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(5152), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2196), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(5561), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3356), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3102), + [sym_postfix_unary_expression] = STATE(3079), + [sym_prefix_unary_expression] = STATE(3079), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6134), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3102), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3079), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3102), + [sym_member_access_expression] = STATE(2472), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3079), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7627), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(3102), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3102), + [sym_typeof_expression] = STATE(3102), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2472), + [sym_literal] = STATE(3102), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(231), [sym_preproc_endregion] = STATE(231), [sym_preproc_line] = STATE(231), @@ -75085,243 +74956,66 @@ 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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), + [anon_sym_SEMI] = ACTIONS(2033), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1049), - [anon_sym_COMMA] = ACTIONS(2011), - [anon_sym_LPAREN] = ACTIONS(1143), - [anon_sym_ref] = ACTIONS(1953), - [anon_sym_LBRACE] = ACTIONS(1059), - [anon_sym_RBRACE] = ACTIONS(2013), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1479), + [anon_sym_LPAREN] = ACTIONS(2027), + [anon_sym_ref] = ACTIONS(1513), + [anon_sym_LBRACE] = ACTIONS(1481), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1101), - [anon_sym_LT] = ACTIONS(1063), - [anon_sym_GT] = ACTIONS(1063), + [anon_sym_new] = ACTIONS(1515), + [anon_sym_LT] = ACTIONS(2029), + [anon_sym_GT] = ACTIONS(2029), [anon_sym_where] = ACTIONS(29), + [anon_sym_QMARK] = ACTIONS(2029), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1067), - [anon_sym_BANG] = ACTIONS(1107), - [anon_sym_TILDE] = ACTIONS(1107), - [anon_sym_PLUS_PLUS] = ACTIONS(1107), - [anon_sym_DASH_DASH] = ACTIONS(1107), + [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(1109), - [anon_sym_DASH] = ACTIONS(1109), - [anon_sym_STAR] = ACTIONS(1111), - [anon_sym_CARET] = ACTIONS(1107), - [anon_sym_AMP] = ACTIONS(1107), - [anon_sym_GT_EQ] = ACTIONS(1073), - [anon_sym_LT_EQ] = ACTIONS(1073), - [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(1075), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(1077), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1067), - [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1119), - [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1121), - [sym_discard] = ACTIONS(1083), - [anon_sym_DOT_DOT] = ACTIONS(1125), - [anon_sym_not] = ACTIONS(1087), - [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(1089), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(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(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(5634), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2204), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(5352), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3664), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3080), - [sym_postfix_unary_expression] = STATE(3111), - [sym_prefix_unary_expression] = STATE(3111), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6161), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3080), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3111), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3080), - [sym_member_access_expression] = STATE(2484), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3111), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7773), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(3080), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3080), - [sym_typeof_expression] = STATE(3080), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2484), - [sym_literal] = STATE(3080), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), - [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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), - [sym__identifier_token] = ACTIONS(25), - [anon_sym_alias] = ACTIONS(29), - [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1481), - [anon_sym_COLON] = ACTIONS(1221), - [anon_sym_LPAREN] = ACTIONS(2015), - [anon_sym_ref] = ACTIONS(2017), - [anon_sym_LBRACE] = ACTIONS(1487), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), - [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1101), - [anon_sym_LT] = ACTIONS(1223), - [anon_sym_GT] = ACTIONS(1223), - [anon_sym_where] = ACTIONS(29), - [anon_sym_QMARK] = ACTIONS(1223), - [anon_sym_notnull] = ACTIONS(29), - [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1067), - [anon_sym_BANG] = ACTIONS(2019), - [anon_sym_TILDE] = ACTIONS(2021), - [anon_sym_PLUS_PLUS] = ACTIONS(2021), - [anon_sym_DASH_DASH] = ACTIONS(2021), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(2019), - [anon_sym_DASH] = ACTIONS(2019), - [anon_sym_STAR] = ACTIONS(1229), - [anon_sym_SLASH] = ACTIONS(1223), - [anon_sym_PERCENT] = ACTIONS(1221), - [anon_sym_CARET] = ACTIONS(2021), - [anon_sym_PIPE] = ACTIONS(1223), - [anon_sym_AMP] = ACTIONS(2019), - [anon_sym_LT_LT] = ACTIONS(1221), - [anon_sym_GT_GT] = ACTIONS(1223), - [anon_sym_GT_GT_GT] = ACTIONS(1221), - [anon_sym_EQ_EQ] = ACTIONS(1221), - [anon_sym_BANG_EQ] = ACTIONS(1221), - [anon_sym_GT_EQ] = ACTIONS(1221), - [anon_sym_LT_EQ] = ACTIONS(1221), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_STAR] = ACTIONS(81), + [anon_sym_SLASH] = ACTIONS(2029), + [anon_sym_PERCENT] = ACTIONS(2031), + [anon_sym_CARET] = ACTIONS(75), + [anon_sym_PIPE] = ACTIONS(2029), + [anon_sym_AMP] = ACTIONS(79), + [anon_sym_LT_LT] = ACTIONS(2031), + [anon_sym_GT_GT] = ACTIONS(2029), + [anon_sym_GT_GT_GT] = ACTIONS(2031), + [anon_sym_EQ_EQ] = ACTIONS(2031), + [anon_sym_BANG_EQ] = ACTIONS(2031), + [anon_sym_GT_EQ] = ACTIONS(2031), + [anon_sym_LT_EQ] = ACTIONS(2031), [anon_sym_this] = ACTIONS(83), - [anon_sym_DOT] = ACTIONS(1223), + [anon_sym_DOT] = ACTIONS(2029), [anon_sym_scoped] = ACTIONS(85), [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1067), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), - [anon_sym_switch] = ACTIONS(1223), + [anon_sym_switch] = ACTIONS(2029), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1233), + [anon_sym_throw] = ACTIONS(1517), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1235), - [anon_sym_DOT_DOT] = ACTIONS(1237), - [anon_sym_AMP_AMP] = ACTIONS(1221), - [anon_sym_PIPE_PIPE] = ACTIONS(1221), - [anon_sym_QMARK_QMARK] = ACTIONS(1221), + [anon_sym_await] = ACTIONS(1519), + [anon_sym_DOT_DOT] = ACTIONS(1521), + [anon_sym_AMP_AMP] = ACTIONS(2031), + [anon_sym_PIPE_PIPE] = ACTIONS(2031), + [anon_sym_QMARK_QMARK] = ACTIONS(2031), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -75334,11 +75028,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(1223), - [anon_sym_is] = ACTIONS(1223), - [anon_sym_DASH_GT] = ACTIONS(1221), + [anon_sym_as] = ACTIONS(2029), + [anon_sym_is] = ACTIONS(2029), + [anon_sym_DASH_GT] = ACTIONS(2031), [anon_sym_stackalloc] = ACTIONS(127), - [anon_sym_with] = ACTIONS(1223), + [anon_sym_with] = ACTIONS(2029), [anon_sym_sizeof] = ACTIONS(129), [anon_sym_typeof] = ACTIONS(131), [anon_sym___makeref] = ACTIONS(133), @@ -75350,7 +75044,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(1089), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -75366,158 +75060,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(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(5723), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2284), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5162), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_pattern] = STATE(6590), - [sym_constant_pattern] = STATE(3486), - [sym_parenthesized_pattern] = STATE(3486), - [sym_var_pattern] = STATE(3486), - [sym_type_pattern] = STATE(3486), - [sym_list_pattern] = STATE(3486), - [sym_recursive_pattern] = STATE(3486), - [sym_positional_pattern_clause] = STATE(5670), - [sym_property_pattern_clause] = STATE(5735), - [sym_relational_pattern] = STATE(3486), - [sym_negated_pattern] = STATE(3486), - [sym_and_pattern] = STATE(3486), - [sym_or_pattern] = STATE(3486), - [sym_declaration_pattern] = STATE(3486), - [sym_expression] = STATE(5668), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3520), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(4216), - [sym_postfix_unary_expression] = STATE(4219), - [sym_prefix_unary_expression] = STATE(4219), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6154), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(4216), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(4219), - [sym_switch_expression] = STATE(3080), - [sym_switch_expression_arm] = STATE(7018), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(4216), - [sym_member_access_expression] = STATE(3121), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(4219), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7530), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(4216), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(4216), - [sym_typeof_expression] = STATE(4216), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(3121), - [sym_literal] = STATE(4216), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2267), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), - [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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [232] = { + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(5528), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2224), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(4472), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_pattern] = STATE(6702), + [sym_constant_pattern] = STATE(3429), + [sym_parenthesized_pattern] = STATE(3429), + [sym_var_pattern] = STATE(3429), + [sym_type_pattern] = STATE(3429), + [sym_list_pattern] = STATE(3429), + [sym_recursive_pattern] = STATE(3429), + [sym_positional_pattern_clause] = STATE(5135), + [sym_property_pattern_clause] = STATE(5666), + [sym_subpattern] = STATE(6965), + [sym_relational_pattern] = STATE(3429), + [sym_negated_pattern] = STATE(3429), + [sym_and_pattern] = STATE(3429), + [sym_or_pattern] = STATE(3429), + [sym_declaration_pattern] = STATE(3429), + [sym_expression] = STATE(4563), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3398), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(4202), + [sym_postfix_unary_expression] = STATE(4203), + [sym_prefix_unary_expression] = STATE(4203), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6163), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(4202), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(4203), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(4202), + [sym_member_access_expression] = STATE(3112), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(4203), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7496), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(4202), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(4202), + [sym_typeof_expression] = STATE(4202), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(3112), + [sym_literal] = STATE(4202), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), + [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(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1049), - [anon_sym_COMMA] = ACTIONS(2023), - [anon_sym_LPAREN] = ACTIONS(1985), - [anon_sym_ref] = ACTIONS(1987), - [anon_sym_LBRACE] = ACTIONS(1059), - [anon_sym_RBRACE] = ACTIONS(2025), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_COMMA] = ACTIONS(2035), + [anon_sym_LPAREN] = ACTIONS(1141), + [anon_sym_ref] = ACTIONS(1983), + [anon_sym_LBRACE] = ACTIONS(1057), + [anon_sym_RBRACE] = ACTIONS(2037), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1061), - [anon_sym_LT] = ACTIONS(1991), - [anon_sym_GT] = ACTIONS(1991), + [anon_sym_new] = ACTIONS(1095), + [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(1067), - [anon_sym_BANG] = ACTIONS(1617), - [anon_sym_TILDE] = ACTIONS(1617), - [anon_sym_PLUS_PLUS] = ACTIONS(1617), - [anon_sym_DASH_DASH] = ACTIONS(1617), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(1101), + [anon_sym_TILDE] = ACTIONS(1101), + [anon_sym_PLUS_PLUS] = ACTIONS(1101), + [anon_sym_DASH_DASH] = ACTIONS(1101), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1615), - [anon_sym_DASH] = ACTIONS(1615), - [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(1617), - [anon_sym_AMP] = ACTIONS(1617), - [anon_sym_GT_EQ] = ACTIONS(1993), - [anon_sym_LT_EQ] = ACTIONS(1993), + [anon_sym_PLUS] = ACTIONS(1103), + [anon_sym_DASH] = ACTIONS(1103), + [anon_sym_STAR] = ACTIONS(1105), + [anon_sym_CARET] = ACTIONS(1101), + [anon_sym_AMP] = ACTIONS(1101), + [anon_sym_GT_EQ] = ACTIONS(1071), + [anon_sym_LT_EQ] = ACTIONS(1071), [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(1075), + [anon_sym_scoped] = ACTIONS(1073), [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(1995), + [anon_sym_var] = ACTIONS(1075), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1067), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1589), + [anon_sym_throw] = ACTIONS(1113), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1591), - [sym_discard] = ACTIONS(1083), - [anon_sym_DOT_DOT] = ACTIONS(123), - [anon_sym_not] = ACTIONS(1997), + [anon_sym_await] = ACTIONS(1115), + [sym_discard] = ACTIONS(1081), + [anon_sym_DOT_DOT] = ACTIONS(1119), + [anon_sym_not] = ACTIONS(1085), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -75542,7 +75236,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(1089), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -75558,158 +75252,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(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(5723), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2284), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5162), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_pattern] = STATE(6590), - [sym_constant_pattern] = STATE(3486), - [sym_parenthesized_pattern] = STATE(3486), - [sym_var_pattern] = STATE(3486), - [sym_type_pattern] = STATE(3486), - [sym_list_pattern] = STATE(3486), - [sym_recursive_pattern] = STATE(3486), - [sym_positional_pattern_clause] = STATE(5670), - [sym_property_pattern_clause] = STATE(5735), - [sym_relational_pattern] = STATE(3486), - [sym_negated_pattern] = STATE(3486), - [sym_and_pattern] = STATE(3486), - [sym_or_pattern] = STATE(3486), - [sym_declaration_pattern] = STATE(3486), - [sym_expression] = STATE(5668), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3520), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(4216), - [sym_postfix_unary_expression] = STATE(4219), - [sym_prefix_unary_expression] = STATE(4219), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6154), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(4216), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(4219), - [sym_switch_expression] = STATE(3080), - [sym_switch_expression_arm] = STATE(6904), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(4216), - [sym_member_access_expression] = STATE(3121), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(4219), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7530), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(4216), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(4216), - [sym_typeof_expression] = STATE(4216), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(3121), - [sym_literal] = STATE(4216), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2267), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), - [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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [233] = { + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(5528), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2224), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(4472), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_pattern] = STATE(6702), + [sym_constant_pattern] = STATE(3429), + [sym_parenthesized_pattern] = STATE(3429), + [sym_var_pattern] = STATE(3429), + [sym_type_pattern] = STATE(3429), + [sym_list_pattern] = STATE(3429), + [sym_recursive_pattern] = STATE(3429), + [sym_positional_pattern_clause] = STATE(5135), + [sym_property_pattern_clause] = STATE(5666), + [sym_subpattern] = STATE(6965), + [sym_relational_pattern] = STATE(3429), + [sym_negated_pattern] = STATE(3429), + [sym_and_pattern] = STATE(3429), + [sym_or_pattern] = STATE(3429), + [sym_declaration_pattern] = STATE(3429), + [sym_expression] = STATE(4563), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3398), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(4202), + [sym_postfix_unary_expression] = STATE(4203), + [sym_prefix_unary_expression] = STATE(4203), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6163), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(4202), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(4203), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(4202), + [sym_member_access_expression] = STATE(3112), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(4203), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7496), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(4202), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(4202), + [sym_typeof_expression] = STATE(4202), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(3112), + [sym_literal] = STATE(4202), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), + [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(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1049), - [anon_sym_COMMA] = ACTIONS(2027), - [anon_sym_LPAREN] = ACTIONS(1985), - [anon_sym_ref] = ACTIONS(1987), - [anon_sym_LBRACE] = ACTIONS(1059), - [anon_sym_RBRACE] = ACTIONS(2029), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_COMMA] = ACTIONS(2039), + [anon_sym_LPAREN] = ACTIONS(1141), + [anon_sym_ref] = ACTIONS(1983), + [anon_sym_LBRACE] = ACTIONS(1057), + [anon_sym_RBRACE] = ACTIONS(2041), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1061), - [anon_sym_LT] = ACTIONS(1991), - [anon_sym_GT] = ACTIONS(1991), + [anon_sym_new] = ACTIONS(1095), + [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(1067), - [anon_sym_BANG] = ACTIONS(1617), - [anon_sym_TILDE] = ACTIONS(1617), - [anon_sym_PLUS_PLUS] = ACTIONS(1617), - [anon_sym_DASH_DASH] = ACTIONS(1617), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(1101), + [anon_sym_TILDE] = ACTIONS(1101), + [anon_sym_PLUS_PLUS] = ACTIONS(1101), + [anon_sym_DASH_DASH] = ACTIONS(1101), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1615), - [anon_sym_DASH] = ACTIONS(1615), - [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(1617), - [anon_sym_AMP] = ACTIONS(1617), - [anon_sym_GT_EQ] = ACTIONS(1993), - [anon_sym_LT_EQ] = ACTIONS(1993), + [anon_sym_PLUS] = ACTIONS(1103), + [anon_sym_DASH] = ACTIONS(1103), + [anon_sym_STAR] = ACTIONS(1105), + [anon_sym_CARET] = ACTIONS(1101), + [anon_sym_AMP] = ACTIONS(1101), + [anon_sym_GT_EQ] = ACTIONS(1071), + [anon_sym_LT_EQ] = ACTIONS(1071), [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(1075), + [anon_sym_scoped] = ACTIONS(1073), [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(1995), + [anon_sym_var] = ACTIONS(1075), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1067), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1589), + [anon_sym_throw] = ACTIONS(1113), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1591), - [sym_discard] = ACTIONS(1083), - [anon_sym_DOT_DOT] = ACTIONS(123), - [anon_sym_not] = ACTIONS(1997), + [anon_sym_await] = ACTIONS(1115), + [sym_discard] = ACTIONS(1081), + [anon_sym_DOT_DOT] = ACTIONS(1119), + [anon_sym_not] = ACTIONS(1085), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -75734,7 +75428,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(1089), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -75750,85 +75444,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), }, + [234] = { + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2901), + [sym__name] = STATE(5889), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2349), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(3712), + [sym_non_lvalue_expression] = STATE(3685), + [sym_lvalue_expression] = STATE(2985), + [sym__expression_statement_expression] = STATE(3836), + [sym_assignment_expression] = STATE(3689), + [sym_binary_expression] = STATE(3836), + [sym_postfix_unary_expression] = STATE(3689), + [sym_prefix_unary_expression] = STATE(3689), + [sym__pointer_indirection_expression] = STATE(2906), + [sym_query_expression] = STATE(3836), + [sym_from_clause] = STATE(6157), + [sym_conditional_expression] = STATE(3836), + [sym_conditional_access_expression] = STATE(3836), + [sym_as_expression] = STATE(3836), + [sym_is_expression] = STATE(3836), + [sym_is_pattern_expression] = STATE(3836), + [sym_cast_expression] = STATE(3836), + [sym_checked_expression] = STATE(3836), + [sym_invocation_expression] = STATE(3689), + [sym_switch_expression] = STATE(3836), + [sym_await_expression] = STATE(3689), + [sym_throw_expression] = STATE(3836), + [sym_element_access_expression] = STATE(2906), + [sym_interpolated_string_expression] = STATE(3836), + [sym_member_access_expression] = STATE(2906), + [sym_object_creation_expression] = STATE(3689), + [sym_parenthesized_expression] = STATE(3689), + [sym__parenthesized_lvalue_expression] = STATE(2906), + [sym_lambda_expression] = STATE(3836), + [sym__lambda_expression_init] = STATE(7485), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3836), + [sym_anonymous_method_expression] = STATE(3836), + [sym_anonymous_object_creation_expression] = STATE(3836), + [sym_implicit_array_creation_expression] = STATE(3836), + [sym_implicit_object_creation_expression] = STATE(3836), + [sym_implicit_stackalloc_expression] = STATE(3836), + [sym_initializer_expression] = STATE(3836), + [sym_default_expression] = STATE(3836), + [sym_with_expression] = STATE(3836), + [sym_sizeof_expression] = STATE(3836), + [sym_typeof_expression] = STATE(3836), + [sym_makeref_expression] = STATE(3836), + [sym_ref_expression] = STATE(3836), + [sym_reftype_expression] = STATE(3836), + [sym_refvalue_expression] = STATE(3836), + [sym_stackalloc_expression] = STATE(3836), + [sym_range_expression] = STATE(3836), + [sym_tuple_expression] = STATE(2906), + [sym_literal] = STATE(3836), + [sym_character_literal] = STATE(3843), + [sym_string_literal] = STATE(3843), + [sym_raw_string_literal] = STATE(3843), + [sym_boolean_literal] = STATE(3843), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3836), + [sym_preproc_if_in_attribute_list] = STATE(5583), + [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(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3477), + [sym__identifier_token] = ACTIONS(25), + [anon_sym_alias] = ACTIONS(29), + [anon_sym_global] = ACTIONS(29), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1655), + [anon_sym_COMMA] = ACTIONS(1219), + [anon_sym_LPAREN] = ACTIONS(2043), + [anon_sym_ref] = ACTIONS(2045), + [anon_sym_LBRACE] = ACTIONS(1661), + [anon_sym_delegate] = ACTIONS(1663), + [anon_sym_async] = ACTIONS(1045), + [anon_sym_file] = ACTIONS(29), + [anon_sym_new] = ACTIONS(1759), + [anon_sym_LT] = ACTIONS(1221), + [anon_sym_GT] = ACTIONS(1221), + [anon_sym_where] = ACTIONS(29), + [anon_sym_QMARK] = ACTIONS(1221), + [anon_sym_notnull] = ACTIONS(29), + [anon_sym_unmanaged] = ACTIONS(29), + [anon_sym_checked] = ACTIONS(1667), + [anon_sym_BANG] = ACTIONS(2047), + [anon_sym_TILDE] = ACTIONS(2049), + [anon_sym_PLUS_PLUS] = ACTIONS(2049), + [anon_sym_DASH_DASH] = ACTIONS(2049), + [anon_sym_true] = ACTIONS(1673), + [anon_sym_false] = ACTIONS(1673), + [anon_sym_PLUS] = ACTIONS(2047), + [anon_sym_DASH] = ACTIONS(2047), + [anon_sym_STAR] = ACTIONS(1765), + [anon_sym_SLASH] = ACTIONS(1221), + [anon_sym_PERCENT] = ACTIONS(1219), + [anon_sym_CARET] = ACTIONS(2049), + [anon_sym_PIPE] = ACTIONS(1221), + [anon_sym_AMP] = ACTIONS(2047), + [anon_sym_LT_LT] = ACTIONS(1219), + [anon_sym_GT_GT] = ACTIONS(1221), + [anon_sym_GT_GT_GT] = ACTIONS(1219), + [anon_sym_EQ_EQ] = ACTIONS(1219), + [anon_sym_BANG_EQ] = ACTIONS(1219), + [anon_sym_GT_EQ] = ACTIONS(1219), + [anon_sym_LT_EQ] = ACTIONS(1219), + [anon_sym_this] = ACTIONS(1677), + [anon_sym_DOT] = ACTIONS(1221), + [anon_sym_scoped] = ACTIONS(85), + [anon_sym_base] = ACTIONS(1679), + [anon_sym_var] = ACTIONS(89), + [sym_predefined_type] = ACTIONS(1681), + [anon_sym_unchecked] = ACTIONS(1667), + [anon_sym_yield] = ACTIONS(29), + [anon_sym_switch] = ACTIONS(1221), + [anon_sym_default] = ACTIONS(1683), + [anon_sym_throw] = ACTIONS(2051), + [anon_sym_when] = ACTIONS(29), + [anon_sym_await] = ACTIONS(2053), + [anon_sym_DOT_DOT] = ACTIONS(2055), + [anon_sym_AMP_AMP] = ACTIONS(1219), + [anon_sym_PIPE_PIPE] = ACTIONS(1219), + [anon_sym_QMARK_QMARK] = ACTIONS(1219), + [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(1221), + [anon_sym_is] = ACTIONS(1221), + [anon_sym_DASH_GT] = ACTIONS(1219), + [anon_sym_stackalloc] = ACTIONS(1691), + [anon_sym_with] = ACTIONS(1221), + [anon_sym_sizeof] = ACTIONS(1693), + [anon_sym_typeof] = ACTIONS(1695), + [anon_sym___makeref] = ACTIONS(1697), + [anon_sym___reftype] = ACTIONS(1699), + [anon_sym___refvalue] = ACTIONS(1701), + [sym_null_literal] = ACTIONS(1703), + [anon_sym_SQUOTE] = ACTIONS(1705), + [sym_integer_literal] = ACTIONS(1703), + [sym_real_literal] = ACTIONS(1707), + [anon_sym_DQUOTE] = ACTIONS(1709), + [sym_verbatim_string_literal] = ACTIONS(1707), + [aux_sym_preproc_if_token1] = ACTIONS(1711), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + [sym_interpolation_regular_start] = ACTIONS(1713), + [sym_interpolation_verbatim_start] = ACTIONS(1715), + [sym_interpolation_raw_start] = ACTIONS(1717), + [sym_raw_string_start] = ACTIONS(1719), + }, [235] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2420), - [sym__name] = STATE(5887), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2197), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(5287), - [sym_non_lvalue_expression] = STATE(3066), - [sym_lvalue_expression] = STATE(3552), - [sym__expression_statement_expression] = STATE(3006), - [sym_assignment_expression] = STATE(3020), - [sym_binary_expression] = STATE(3006), - [sym_postfix_unary_expression] = STATE(3020), - [sym_prefix_unary_expression] = STATE(3020), - [sym__pointer_indirection_expression] = STATE(2423), - [sym_query_expression] = STATE(3006), - [sym_from_clause] = STATE(6181), - [sym_conditional_expression] = STATE(3006), - [sym_conditional_access_expression] = STATE(3006), - [sym_as_expression] = STATE(3006), - [sym_is_expression] = STATE(3006), - [sym_is_pattern_expression] = STATE(3006), - [sym_cast_expression] = STATE(3006), - [sym_checked_expression] = STATE(3006), - [sym_invocation_expression] = STATE(3020), - [sym_switch_expression] = STATE(3006), - [sym_await_expression] = STATE(3020), - [sym_throw_expression] = STATE(3006), - [sym_element_access_expression] = STATE(2423), - [sym_interpolated_string_expression] = STATE(3006), - [sym_member_access_expression] = STATE(2423), - [sym_object_creation_expression] = STATE(3020), - [sym_parenthesized_expression] = STATE(3020), - [sym__parenthesized_lvalue_expression] = STATE(2423), - [sym_lambda_expression] = STATE(3006), - [sym__lambda_expression_init] = STATE(7493), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3006), - [sym_anonymous_method_expression] = STATE(3006), - [sym_anonymous_object_creation_expression] = STATE(3006), - [sym_implicit_array_creation_expression] = STATE(3006), - [sym_implicit_object_creation_expression] = STATE(3006), - [sym_implicit_stackalloc_expression] = STATE(3006), - [sym_initializer_expression] = STATE(3006), - [sym_default_expression] = STATE(3006), - [sym_with_expression] = STATE(3006), - [sym_sizeof_expression] = STATE(3006), - [sym_typeof_expression] = STATE(3006), - [sym_makeref_expression] = STATE(3006), - [sym_ref_expression] = STATE(3006), - [sym_reftype_expression] = STATE(3006), - [sym_refvalue_expression] = STATE(3006), - [sym_stackalloc_expression] = STATE(3006), - [sym_range_expression] = STATE(3006), - [sym_tuple_expression] = STATE(2423), - [sym_literal] = STATE(3006), - [sym_character_literal] = STATE(3011), - [sym_string_literal] = STATE(3011), - [sym_raw_string_literal] = STATE(3011), - [sym_boolean_literal] = STATE(3011), - [sym_identifier] = STATE(2267), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3006), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(5706), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2270), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5197), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_pattern] = STATE(6511), + [sym_constant_pattern] = STATE(3429), + [sym_parenthesized_pattern] = STATE(3429), + [sym_var_pattern] = STATE(3429), + [sym_type_pattern] = STATE(3429), + [sym_list_pattern] = STATE(3429), + [sym_recursive_pattern] = STATE(3429), + [sym_positional_pattern_clause] = STATE(5689), + [sym_property_pattern_clause] = STATE(5723), + [sym_relational_pattern] = STATE(3429), + [sym_negated_pattern] = STATE(3429), + [sym_and_pattern] = STATE(3429), + [sym_or_pattern] = STATE(3429), + [sym_declaration_pattern] = STATE(3429), + [sym_expression] = STATE(5654), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3510), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(4202), + [sym_postfix_unary_expression] = STATE(4203), + [sym_prefix_unary_expression] = STATE(4203), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6134), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(4202), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(4203), + [sym_switch_expression] = STATE(3102), + [sym_switch_expression_arm] = STATE(6905), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(4202), + [sym_member_access_expression] = STATE(3112), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(4203), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7425), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(4202), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(4202), + [sym_typeof_expression] = STATE(4202), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(3112), + [sym_literal] = STATE(4202), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2261), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(235), [sym_preproc_endregion] = STATE(235), [sym_preproc_line] = STATE(235), @@ -75838,66 +75739,55 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(235), [sym_preproc_define] = STATE(235), [sym_preproc_undef] = STATE(235), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3440), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1241), - [anon_sym_LPAREN] = ACTIONS(2031), - [anon_sym_ref] = ACTIONS(2033), - [anon_sym_LBRACE] = ACTIONS(1247), - [anon_sym_delegate] = ACTIONS(1249), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_COMMA] = ACTIONS(2057), + [anon_sym_LPAREN] = ACTIONS(1989), + [anon_sym_ref] = ACTIONS(1991), + [anon_sym_LBRACE] = ACTIONS(1057), + [anon_sym_RBRACE] = ACTIONS(2059), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1251), - [anon_sym_LT] = ACTIONS(1165), - [anon_sym_GT] = ACTIONS(1165), + [anon_sym_new] = ACTIONS(1059), + [anon_sym_LT] = ACTIONS(1995), + [anon_sym_GT] = ACTIONS(1995), [anon_sym_where] = ACTIONS(29), - [anon_sym_QMARK] = ACTIONS(1165), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1253), - [anon_sym_BANG] = ACTIONS(2035), - [anon_sym_TILDE] = ACTIONS(2037), - [anon_sym_PLUS_PLUS] = ACTIONS(2037), - [anon_sym_DASH_DASH] = ACTIONS(2037), - [anon_sym_true] = ACTIONS(1259), - [anon_sym_false] = ACTIONS(1259), - [anon_sym_PLUS] = ACTIONS(2035), - [anon_sym_DASH] = ACTIONS(2035), - [anon_sym_STAR] = ACTIONS(2039), - [anon_sym_SLASH] = ACTIONS(1165), - [anon_sym_PERCENT] = ACTIONS(1151), - [anon_sym_CARET] = ACTIONS(2037), - [anon_sym_PIPE] = ACTIONS(1165), - [anon_sym_AMP] = ACTIONS(2035), - [anon_sym_LT_LT] = ACTIONS(1151), - [anon_sym_GT_GT] = ACTIONS(1165), - [anon_sym_GT_GT_GT] = ACTIONS(1151), - [anon_sym_EQ_EQ] = ACTIONS(1151), - [anon_sym_BANG_EQ] = ACTIONS(1151), - [anon_sym_GT_EQ] = ACTIONS(1151), - [anon_sym_LT_EQ] = ACTIONS(1151), - [anon_sym_this] = ACTIONS(1263), - [anon_sym_DOT] = ACTIONS(1165), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1265), - [anon_sym_EQ_GT] = ACTIONS(1151), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1267), - [anon_sym_unchecked] = ACTIONS(1253), + [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(1997), + [anon_sym_LT_EQ] = ACTIONS(1997), + [anon_sym_this] = ACTIONS(83), + [anon_sym_scoped] = ACTIONS(1073), + [anon_sym_base] = ACTIONS(87), + [anon_sym_var] = ACTIONS(1999), + [sym_predefined_type] = ACTIONS(91), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), - [anon_sym_switch] = ACTIONS(1165), - [anon_sym_default] = ACTIONS(1269), - [anon_sym_throw] = ACTIONS(2041), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(1527), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2043), - [anon_sym_DOT_DOT] = ACTIONS(2045), - [anon_sym_AMP_AMP] = ACTIONS(1151), - [anon_sym_PIPE_PIPE] = ACTIONS(1151), - [anon_sym_QMARK_QMARK] = ACTIONS(1151), + [anon_sym_await] = ACTIONS(1529), + [sym_discard] = ACTIONS(1081), + [anon_sym_DOT_DOT] = ACTIONS(123), + [anon_sym_not] = ACTIONS(2001), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -75910,23 +75800,19 @@ static const uint16_t ts_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(1165), - [anon_sym_is] = ACTIONS(1165), - [anon_sym_DASH_GT] = ACTIONS(1151), - [anon_sym_stackalloc] = ACTIONS(1277), - [anon_sym_with] = ACTIONS(1165), - [anon_sym_sizeof] = ACTIONS(1279), - [anon_sym_typeof] = ACTIONS(1281), - [anon_sym___makeref] = ACTIONS(1283), - [anon_sym___reftype] = ACTIONS(1285), - [anon_sym___refvalue] = ACTIONS(1287), - [sym_null_literal] = ACTIONS(1289), - [anon_sym_SQUOTE] = ACTIONS(1291), - [sym_integer_literal] = ACTIONS(1289), - [sym_real_literal] = ACTIONS(1293), - [anon_sym_DQUOTE] = ACTIONS(1295), - [sym_verbatim_string_literal] = ACTIONS(1293), - [aux_sym_preproc_if_token1] = ACTIONS(1297), + [anon_sym_stackalloc] = ACTIONS(127), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_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), @@ -75937,90 +75823,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1299), - [sym_interpolation_verbatim_start] = ACTIONS(1301), - [sym_interpolation_raw_start] = ACTIONS(1303), - [sym_raw_string_start] = ACTIONS(1305), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [sym_interpolation_raw_start] = ACTIONS(155), + [sym_raw_string_start] = ACTIONS(157), }, [236] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2420), - [sym__name] = STATE(5887), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2197), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(5148), - [sym_non_lvalue_expression] = STATE(3066), - [sym_lvalue_expression] = STATE(3552), - [sym__expression_statement_expression] = STATE(3006), - [sym_assignment_expression] = STATE(3020), - [sym_binary_expression] = STATE(3006), - [sym_postfix_unary_expression] = STATE(3020), - [sym_prefix_unary_expression] = STATE(3020), - [sym__pointer_indirection_expression] = STATE(2423), - [sym_query_expression] = STATE(3006), - [sym_from_clause] = STATE(6181), - [sym_conditional_expression] = STATE(3006), - [sym_conditional_access_expression] = STATE(3006), - [sym_as_expression] = STATE(3006), - [sym_is_expression] = STATE(3006), - [sym_is_pattern_expression] = STATE(3006), - [sym_cast_expression] = STATE(3006), - [sym_checked_expression] = STATE(3006), - [sym_invocation_expression] = STATE(3020), - [sym_switch_expression] = STATE(3006), - [sym_await_expression] = STATE(3020), - [sym_throw_expression] = STATE(3006), - [sym_element_access_expression] = STATE(2423), - [sym_interpolated_string_expression] = STATE(3006), - [sym_member_access_expression] = STATE(2423), - [sym_object_creation_expression] = STATE(3020), - [sym_parenthesized_expression] = STATE(3020), - [sym__parenthesized_lvalue_expression] = STATE(2423), - [sym_lambda_expression] = STATE(3006), - [sym__lambda_expression_init] = STATE(7493), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3006), - [sym_anonymous_method_expression] = STATE(3006), - [sym_anonymous_object_creation_expression] = STATE(3006), - [sym_implicit_array_creation_expression] = STATE(3006), - [sym_implicit_object_creation_expression] = STATE(3006), - [sym_implicit_stackalloc_expression] = STATE(3006), - [sym_initializer_expression] = STATE(3006), - [sym_default_expression] = STATE(3006), - [sym_with_expression] = STATE(3006), - [sym_sizeof_expression] = STATE(3006), - [sym_typeof_expression] = STATE(3006), - [sym_makeref_expression] = STATE(3006), - [sym_ref_expression] = STATE(3006), - [sym_reftype_expression] = STATE(3006), - [sym_refvalue_expression] = STATE(3006), - [sym_stackalloc_expression] = STATE(3006), - [sym_range_expression] = STATE(3006), - [sym_tuple_expression] = STATE(2423), - [sym_literal] = STATE(3006), - [sym_character_literal] = STATE(3011), - [sym_string_literal] = STATE(3011), - [sym_raw_string_literal] = STATE(3011), - [sym_boolean_literal] = STATE(3011), - [sym_identifier] = STATE(2267), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3006), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2901), + [sym__name] = STATE(5883), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2359), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(3930), + [sym_non_lvalue_expression] = STATE(3685), + [sym_lvalue_expression] = STATE(3073), + [sym__expression_statement_expression] = STATE(3836), + [sym_assignment_expression] = STATE(3689), + [sym_binary_expression] = STATE(3836), + [sym_postfix_unary_expression] = STATE(3689), + [sym_prefix_unary_expression] = STATE(3689), + [sym__pointer_indirection_expression] = STATE(2906), + [sym_query_expression] = STATE(3836), + [sym_from_clause] = STATE(6157), + [sym_conditional_expression] = STATE(3836), + [sym_conditional_access_expression] = STATE(3836), + [sym_as_expression] = STATE(3836), + [sym_is_expression] = STATE(3836), + [sym_is_pattern_expression] = STATE(3836), + [sym_cast_expression] = STATE(3836), + [sym_checked_expression] = STATE(3836), + [sym_invocation_expression] = STATE(3689), + [sym_switch_expression] = STATE(3836), + [sym_await_expression] = STATE(3689), + [sym_throw_expression] = STATE(3836), + [sym_element_access_expression] = STATE(2906), + [sym_interpolated_string_expression] = STATE(3836), + [sym_member_access_expression] = STATE(2906), + [sym_object_creation_expression] = STATE(3689), + [sym_parenthesized_expression] = STATE(3689), + [sym__parenthesized_lvalue_expression] = STATE(2906), + [sym_lambda_expression] = STATE(3836), + [sym__lambda_expression_init] = STATE(7460), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3836), + [sym_anonymous_method_expression] = STATE(3836), + [sym_anonymous_object_creation_expression] = STATE(3836), + [sym_implicit_array_creation_expression] = STATE(3836), + [sym_implicit_object_creation_expression] = STATE(3836), + [sym_implicit_stackalloc_expression] = STATE(3836), + [sym_initializer_expression] = STATE(3836), + [sym_default_expression] = STATE(3836), + [sym_with_expression] = STATE(3836), + [sym_sizeof_expression] = STATE(3836), + [sym_typeof_expression] = STATE(3836), + [sym_makeref_expression] = STATE(3836), + [sym_ref_expression] = STATE(3836), + [sym_reftype_expression] = STATE(3836), + [sym_refvalue_expression] = STATE(3836), + [sym_stackalloc_expression] = STATE(3836), + [sym_range_expression] = STATE(3836), + [sym_tuple_expression] = STATE(2906), + [sym_literal] = STATE(3836), + [sym_character_literal] = STATE(3843), + [sym_string_literal] = STATE(3843), + [sym_raw_string_literal] = STATE(3843), + [sym_boolean_literal] = STATE(3843), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3836), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(236), [sym_preproc_endregion] = STATE(236), [sym_preproc_line] = STATE(236), @@ -76030,66 +75916,66 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(236), [sym_preproc_define] = STATE(236), [sym_preproc_undef] = STATE(236), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3440), - [sym__identifier_token] = ACTIONS(25), - [anon_sym_alias] = ACTIONS(29), - [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1241), - [anon_sym_LPAREN] = ACTIONS(2031), - [anon_sym_ref] = ACTIONS(2033), - [anon_sym_LBRACE] = ACTIONS(1247), - [anon_sym_delegate] = ACTIONS(1249), - [anon_sym_async] = ACTIONS(1047), - [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1251), - [anon_sym_LT] = ACTIONS(1223), - [anon_sym_GT] = ACTIONS(1223), - [anon_sym_where] = ACTIONS(29), - [anon_sym_QMARK] = ACTIONS(1223), - [anon_sym_notnull] = ACTIONS(29), - [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1253), - [anon_sym_BANG] = ACTIONS(2035), - [anon_sym_TILDE] = ACTIONS(2037), - [anon_sym_PLUS_PLUS] = ACTIONS(2037), - [anon_sym_DASH_DASH] = ACTIONS(2037), - [anon_sym_true] = ACTIONS(1259), - [anon_sym_false] = ACTIONS(1259), - [anon_sym_PLUS] = ACTIONS(2035), - [anon_sym_DASH] = ACTIONS(2035), - [anon_sym_STAR] = ACTIONS(2039), - [anon_sym_SLASH] = ACTIONS(1223), - [anon_sym_PERCENT] = ACTIONS(1221), - [anon_sym_CARET] = ACTIONS(2037), - [anon_sym_PIPE] = ACTIONS(1223), - [anon_sym_AMP] = ACTIONS(2035), - [anon_sym_LT_LT] = ACTIONS(1221), - [anon_sym_GT_GT] = ACTIONS(1223), - [anon_sym_GT_GT_GT] = ACTIONS(1221), - [anon_sym_EQ_EQ] = ACTIONS(1221), - [anon_sym_BANG_EQ] = ACTIONS(1221), - [anon_sym_GT_EQ] = ACTIONS(1221), - [anon_sym_LT_EQ] = ACTIONS(1221), - [anon_sym_this] = ACTIONS(1263), - [anon_sym_DOT] = ACTIONS(1223), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1265), - [anon_sym_EQ_GT] = ACTIONS(1221), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1267), - [anon_sym_unchecked] = ACTIONS(1253), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3477), + [sym__identifier_token] = ACTIONS(25), + [anon_sym_alias] = ACTIONS(29), + [anon_sym_global] = ACTIONS(29), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1655), + [anon_sym_COMMA] = ACTIONS(1219), + [anon_sym_LPAREN] = ACTIONS(2061), + [anon_sym_ref] = ACTIONS(2063), + [anon_sym_LBRACE] = ACTIONS(1661), + [anon_sym_delegate] = ACTIONS(1663), + [anon_sym_async] = ACTIONS(1045), + [anon_sym_file] = ACTIONS(29), + [anon_sym_new] = ACTIONS(1665), + [anon_sym_LT] = ACTIONS(1221), + [anon_sym_GT] = ACTIONS(1221), + [anon_sym_where] = ACTIONS(29), + [anon_sym_QMARK] = ACTIONS(1221), + [anon_sym_notnull] = ACTIONS(29), + [anon_sym_unmanaged] = ACTIONS(29), + [anon_sym_checked] = ACTIONS(1667), + [anon_sym_BANG] = ACTIONS(2065), + [anon_sym_TILDE] = ACTIONS(2067), + [anon_sym_PLUS_PLUS] = ACTIONS(2067), + [anon_sym_DASH_DASH] = ACTIONS(2067), + [anon_sym_true] = ACTIONS(1673), + [anon_sym_false] = ACTIONS(1673), + [anon_sym_PLUS] = ACTIONS(2065), + [anon_sym_DASH] = ACTIONS(2065), + [anon_sym_STAR] = ACTIONS(1675), + [anon_sym_SLASH] = ACTIONS(1221), + [anon_sym_PERCENT] = ACTIONS(1219), + [anon_sym_CARET] = ACTIONS(2067), + [anon_sym_PIPE] = ACTIONS(1221), + [anon_sym_AMP] = ACTIONS(2065), + [anon_sym_LT_LT] = ACTIONS(1219), + [anon_sym_GT_GT] = ACTIONS(1221), + [anon_sym_GT_GT_GT] = ACTIONS(1219), + [anon_sym_EQ_EQ] = ACTIONS(1219), + [anon_sym_BANG_EQ] = ACTIONS(1219), + [anon_sym_GT_EQ] = ACTIONS(1219), + [anon_sym_LT_EQ] = ACTIONS(1219), + [anon_sym_this] = ACTIONS(1677), + [anon_sym_DOT] = ACTIONS(1221), + [anon_sym_scoped] = ACTIONS(85), + [anon_sym_base] = ACTIONS(1679), + [anon_sym_var] = ACTIONS(89), + [sym_predefined_type] = ACTIONS(1681), + [anon_sym_unchecked] = ACTIONS(1667), [anon_sym_yield] = ACTIONS(29), - [anon_sym_switch] = ACTIONS(1223), - [anon_sym_default] = ACTIONS(1269), - [anon_sym_throw] = ACTIONS(2041), + [anon_sym_switch] = ACTIONS(1221), + [anon_sym_default] = ACTIONS(1683), + [anon_sym_throw] = ACTIONS(2069), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2043), - [anon_sym_DOT_DOT] = ACTIONS(2045), - [anon_sym_AMP_AMP] = ACTIONS(1221), - [anon_sym_PIPE_PIPE] = ACTIONS(1221), - [anon_sym_QMARK_QMARK] = ACTIONS(1221), + [anon_sym_await] = ACTIONS(2071), + [anon_sym_DOT_DOT] = ACTIONS(2073), + [anon_sym_AMP_AMP] = ACTIONS(1219), + [anon_sym_PIPE_PIPE] = ACTIONS(1219), + [anon_sym_QMARK_QMARK] = ACTIONS(1219), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -76102,23 +75988,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(1223), - [anon_sym_is] = ACTIONS(1223), - [anon_sym_DASH_GT] = ACTIONS(1221), - [anon_sym_stackalloc] = ACTIONS(1277), - [anon_sym_with] = ACTIONS(1223), - [anon_sym_sizeof] = ACTIONS(1279), - [anon_sym_typeof] = ACTIONS(1281), - [anon_sym___makeref] = ACTIONS(1283), - [anon_sym___reftype] = ACTIONS(1285), - [anon_sym___refvalue] = ACTIONS(1287), - [sym_null_literal] = ACTIONS(1289), - [anon_sym_SQUOTE] = ACTIONS(1291), - [sym_integer_literal] = ACTIONS(1289), - [sym_real_literal] = ACTIONS(1293), - [anon_sym_DQUOTE] = ACTIONS(1295), - [sym_verbatim_string_literal] = ACTIONS(1293), - [aux_sym_preproc_if_token1] = ACTIONS(1297), + [anon_sym_as] = ACTIONS(1221), + [anon_sym_is] = ACTIONS(1221), + [anon_sym_DASH_GT] = ACTIONS(1219), + [anon_sym_stackalloc] = ACTIONS(1691), + [anon_sym_with] = ACTIONS(1221), + [anon_sym_sizeof] = ACTIONS(1693), + [anon_sym_typeof] = ACTIONS(1695), + [anon_sym___makeref] = ACTIONS(1697), + [anon_sym___reftype] = ACTIONS(1699), + [anon_sym___refvalue] = ACTIONS(1701), + [sym_null_literal] = ACTIONS(1703), + [anon_sym_SQUOTE] = ACTIONS(1705), + [sym_integer_literal] = ACTIONS(1703), + [sym_real_literal] = ACTIONS(1707), + [anon_sym_DQUOTE] = ACTIONS(1709), + [sym_verbatim_string_literal] = ACTIONS(1707), + [aux_sym_preproc_if_token1] = ACTIONS(1711), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -76129,90 +76015,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1299), - [sym_interpolation_verbatim_start] = ACTIONS(1301), - [sym_interpolation_raw_start] = ACTIONS(1303), - [sym_raw_string_start] = ACTIONS(1305), + [sym_interpolation_regular_start] = ACTIONS(1713), + [sym_interpolation_verbatim_start] = ACTIONS(1715), + [sym_interpolation_raw_start] = ACTIONS(1717), + [sym_raw_string_start] = ACTIONS(1719), }, [237] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(5160), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2204), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(5546), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3677), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3080), - [sym_postfix_unary_expression] = STATE(3111), - [sym_prefix_unary_expression] = STATE(3111), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6153), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3080), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3111), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3080), - [sym_member_access_expression] = STATE(2484), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3111), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7549), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(3080), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3080), - [sym_typeof_expression] = STATE(3080), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2484), - [sym_literal] = STATE(3080), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2267), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2901), + [sym__name] = STATE(5889), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2349), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(3815), + [sym_non_lvalue_expression] = STATE(3685), + [sym_lvalue_expression] = STATE(2985), + [sym__expression_statement_expression] = STATE(3836), + [sym_assignment_expression] = STATE(3689), + [sym_binary_expression] = STATE(3836), + [sym_postfix_unary_expression] = STATE(3689), + [sym_prefix_unary_expression] = STATE(3689), + [sym__pointer_indirection_expression] = STATE(2906), + [sym_query_expression] = STATE(3836), + [sym_from_clause] = STATE(6157), + [sym_conditional_expression] = STATE(3836), + [sym_conditional_access_expression] = STATE(3836), + [sym_as_expression] = STATE(3836), + [sym_is_expression] = STATE(3836), + [sym_is_pattern_expression] = STATE(3836), + [sym_cast_expression] = STATE(3836), + [sym_checked_expression] = STATE(3836), + [sym_invocation_expression] = STATE(3689), + [sym_switch_expression] = STATE(3836), + [sym_await_expression] = STATE(3689), + [sym_throw_expression] = STATE(3836), + [sym_element_access_expression] = STATE(2906), + [sym_interpolated_string_expression] = STATE(3836), + [sym_member_access_expression] = STATE(2906), + [sym_object_creation_expression] = STATE(3689), + [sym_parenthesized_expression] = STATE(3689), + [sym__parenthesized_lvalue_expression] = STATE(2906), + [sym_lambda_expression] = STATE(3836), + [sym__lambda_expression_init] = STATE(7485), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3836), + [sym_anonymous_method_expression] = STATE(3836), + [sym_anonymous_object_creation_expression] = STATE(3836), + [sym_implicit_array_creation_expression] = STATE(3836), + [sym_implicit_object_creation_expression] = STATE(3836), + [sym_implicit_stackalloc_expression] = STATE(3836), + [sym_initializer_expression] = STATE(3836), + [sym_default_expression] = STATE(3836), + [sym_with_expression] = STATE(3836), + [sym_sizeof_expression] = STATE(3836), + [sym_typeof_expression] = STATE(3836), + [sym_makeref_expression] = STATE(3836), + [sym_ref_expression] = STATE(3836), + [sym_reftype_expression] = STATE(3836), + [sym_refvalue_expression] = STATE(3836), + [sym_stackalloc_expression] = STATE(3836), + [sym_range_expression] = STATE(3836), + [sym_tuple_expression] = STATE(2906), + [sym_literal] = STATE(3836), + [sym_character_literal] = STATE(3843), + [sym_string_literal] = STATE(3843), + [sym_raw_string_literal] = STATE(3843), + [sym_boolean_literal] = STATE(3843), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3836), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(237), [sym_preproc_endregion] = STATE(237), [sym_preproc_line] = STATE(237), @@ -76222,66 +76108,66 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(237), [sym_preproc_define] = STATE(237), [sym_preproc_undef] = STATE(237), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3477), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1481), - [anon_sym_LPAREN] = ACTIONS(2047), - [anon_sym_ref] = ACTIONS(2049), - [anon_sym_LBRACE] = ACTIONS(1487), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), - [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1061), - [anon_sym_LT] = ACTIONS(1165), - [anon_sym_GT] = ACTIONS(1165), - [anon_sym_where] = ACTIONS(29), - [anon_sym_QMARK] = ACTIONS(1165), - [anon_sym_notnull] = ACTIONS(29), - [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1067), - [anon_sym_BANG] = ACTIONS(2051), - [anon_sym_TILDE] = ACTIONS(2053), - [anon_sym_PLUS_PLUS] = ACTIONS(2053), - [anon_sym_DASH_DASH] = ACTIONS(2053), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(2051), - [anon_sym_DASH] = ACTIONS(2051), - [anon_sym_STAR] = ACTIONS(2055), - [anon_sym_SLASH] = ACTIONS(1165), - [anon_sym_PERCENT] = ACTIONS(1151), - [anon_sym_CARET] = ACTIONS(2053), - [anon_sym_PIPE] = ACTIONS(1165), - [anon_sym_AMP] = ACTIONS(2051), - [anon_sym_LT_LT] = ACTIONS(1151), - [anon_sym_GT_GT] = ACTIONS(1165), - [anon_sym_GT_GT_GT] = ACTIONS(1151), - [anon_sym_EQ_EQ] = ACTIONS(1151), - [anon_sym_BANG_EQ] = ACTIONS(1151), - [anon_sym_GT_EQ] = ACTIONS(1151), - [anon_sym_LT_EQ] = ACTIONS(1151), - [anon_sym_this] = ACTIONS(83), - [anon_sym_DOT] = ACTIONS(1165), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1655), + [anon_sym_COMMA] = ACTIONS(1147), + [anon_sym_LPAREN] = ACTIONS(2043), + [anon_sym_ref] = ACTIONS(2045), + [anon_sym_LBRACE] = ACTIONS(1661), + [anon_sym_delegate] = ACTIONS(1663), + [anon_sym_async] = ACTIONS(1045), + [anon_sym_file] = ACTIONS(29), + [anon_sym_new] = ACTIONS(1759), + [anon_sym_LT] = ACTIONS(1161), + [anon_sym_GT] = ACTIONS(1161), + [anon_sym_where] = ACTIONS(29), + [anon_sym_QMARK] = ACTIONS(1161), + [anon_sym_notnull] = ACTIONS(29), + [anon_sym_unmanaged] = ACTIONS(29), + [anon_sym_checked] = ACTIONS(1667), + [anon_sym_BANG] = ACTIONS(2047), + [anon_sym_TILDE] = ACTIONS(2049), + [anon_sym_PLUS_PLUS] = ACTIONS(2049), + [anon_sym_DASH_DASH] = ACTIONS(2049), + [anon_sym_true] = ACTIONS(1673), + [anon_sym_false] = ACTIONS(1673), + [anon_sym_PLUS] = ACTIONS(2047), + [anon_sym_DASH] = ACTIONS(2047), + [anon_sym_STAR] = ACTIONS(1765), + [anon_sym_SLASH] = ACTIONS(1161), + [anon_sym_PERCENT] = ACTIONS(1147), + [anon_sym_CARET] = ACTIONS(2049), + [anon_sym_PIPE] = ACTIONS(1161), + [anon_sym_AMP] = ACTIONS(2047), + [anon_sym_LT_LT] = ACTIONS(1147), + [anon_sym_GT_GT] = ACTIONS(1161), + [anon_sym_GT_GT_GT] = ACTIONS(1147), + [anon_sym_EQ_EQ] = ACTIONS(1147), + [anon_sym_BANG_EQ] = ACTIONS(1147), + [anon_sym_GT_EQ] = ACTIONS(1147), + [anon_sym_LT_EQ] = ACTIONS(1147), + [anon_sym_this] = ACTIONS(1677), + [anon_sym_DOT] = ACTIONS(1161), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), - [anon_sym_EQ_GT] = ACTIONS(1151), + [anon_sym_base] = ACTIONS(1679), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1067), + [sym_predefined_type] = ACTIONS(1681), + [anon_sym_unchecked] = ACTIONS(1667), [anon_sym_yield] = ACTIONS(29), - [anon_sym_switch] = ACTIONS(1165), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(2057), + [anon_sym_switch] = ACTIONS(1161), + [anon_sym_default] = ACTIONS(1683), + [anon_sym_throw] = ACTIONS(2051), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2059), - [anon_sym_DOT_DOT] = ACTIONS(2061), - [anon_sym_AMP_AMP] = ACTIONS(1151), - [anon_sym_PIPE_PIPE] = ACTIONS(1151), - [anon_sym_QMARK_QMARK] = ACTIONS(1151), + [anon_sym_await] = ACTIONS(2053), + [anon_sym_DOT_DOT] = ACTIONS(2055), + [anon_sym_AMP_AMP] = ACTIONS(1147), + [anon_sym_PIPE_PIPE] = ACTIONS(1147), + [anon_sym_QMARK_QMARK] = ACTIONS(1147), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -76294,23 +76180,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(1165), - [anon_sym_is] = ACTIONS(1165), - [anon_sym_DASH_GT] = ACTIONS(1151), - [anon_sym_stackalloc] = ACTIONS(127), - [anon_sym_with] = ACTIONS(1165), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(133), - [anon_sym___reftype] = ACTIONS(135), - [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1089), + [anon_sym_as] = ACTIONS(1161), + [anon_sym_is] = ACTIONS(1161), + [anon_sym_DASH_GT] = ACTIONS(1147), + [anon_sym_stackalloc] = ACTIONS(1691), + [anon_sym_with] = ACTIONS(1161), + [anon_sym_sizeof] = ACTIONS(1693), + [anon_sym_typeof] = ACTIONS(1695), + [anon_sym___makeref] = ACTIONS(1697), + [anon_sym___reftype] = ACTIONS(1699), + [anon_sym___refvalue] = ACTIONS(1701), + [sym_null_literal] = ACTIONS(1703), + [anon_sym_SQUOTE] = ACTIONS(1705), + [sym_integer_literal] = ACTIONS(1703), + [sym_real_literal] = ACTIONS(1707), + [anon_sym_DQUOTE] = ACTIONS(1709), + [sym_verbatim_string_literal] = ACTIONS(1707), + [aux_sym_preproc_if_token1] = ACTIONS(1711), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -76321,90 +76207,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(1713), + [sym_interpolation_verbatim_start] = ACTIONS(1715), + [sym_interpolation_raw_start] = ACTIONS(1717), + [sym_raw_string_start] = ACTIONS(1719), }, [238] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(5160), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2204), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(5375), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3461), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3080), - [sym_postfix_unary_expression] = STATE(3111), - [sym_prefix_unary_expression] = STATE(3111), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6154), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3080), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3111), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3080), - [sym_member_access_expression] = STATE(2484), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3111), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7547), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(3080), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3080), - [sym_typeof_expression] = STATE(3080), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2484), - [sym_literal] = STATE(3080), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(5528), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2224), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(4472), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_pattern] = STATE(6702), + [sym_constant_pattern] = STATE(3429), + [sym_parenthesized_pattern] = STATE(3429), + [sym_var_pattern] = STATE(3429), + [sym_type_pattern] = STATE(3429), + [sym_list_pattern] = STATE(3429), + [sym_recursive_pattern] = STATE(3429), + [sym_positional_pattern_clause] = STATE(5135), + [sym_property_pattern_clause] = STATE(5666), + [sym_subpattern] = STATE(6965), + [sym_relational_pattern] = STATE(3429), + [sym_negated_pattern] = STATE(3429), + [sym_and_pattern] = STATE(3429), + [sym_or_pattern] = STATE(3429), + [sym_declaration_pattern] = STATE(3429), + [sym_expression] = STATE(4563), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3398), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(4202), + [sym_postfix_unary_expression] = STATE(4203), + [sym_prefix_unary_expression] = STATE(4203), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6163), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(4202), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(4203), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(4202), + [sym_member_access_expression] = STATE(3112), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(4203), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7496), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(4202), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(4202), + [sym_typeof_expression] = STATE(4202), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(3112), + [sym_literal] = STATE(4202), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(238), [sym_preproc_endregion] = STATE(238), [sym_preproc_line] = STATE(238), @@ -76414,66 +76315,55 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(238), [sym_preproc_define] = STATE(238), [sym_preproc_undef] = STATE(238), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), - [anon_sym_SEMI] = ACTIONS(2063), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1481), - [anon_sym_LPAREN] = ACTIONS(1977), - [anon_sym_ref] = ACTIONS(1499), - [anon_sym_LBRACE] = ACTIONS(1487), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_COMMA] = ACTIONS(2075), + [anon_sym_LPAREN] = ACTIONS(1141), + [anon_sym_ref] = ACTIONS(1983), + [anon_sym_LBRACE] = ACTIONS(1057), + [anon_sym_RBRACE] = ACTIONS(2077), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1501), - [anon_sym_LT] = ACTIONS(1979), - [anon_sym_GT] = ACTIONS(1979), + [anon_sym_new] = ACTIONS(1095), + [anon_sym_LT] = ACTIONS(1061), + [anon_sym_GT] = ACTIONS(1061), [anon_sym_where] = ACTIONS(29), - [anon_sym_QMARK] = ACTIONS(1979), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = 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_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(1101), + [anon_sym_TILDE] = ACTIONS(1101), + [anon_sym_PLUS_PLUS] = ACTIONS(1101), + [anon_sym_DASH_DASH] = ACTIONS(1101), [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(1979), - [anon_sym_PERCENT] = ACTIONS(1981), - [anon_sym_CARET] = ACTIONS(75), - [anon_sym_PIPE] = ACTIONS(1979), - [anon_sym_AMP] = ACTIONS(79), - [anon_sym_LT_LT] = ACTIONS(1981), - [anon_sym_GT_GT] = ACTIONS(1979), - [anon_sym_GT_GT_GT] = ACTIONS(1981), - [anon_sym_EQ_EQ] = ACTIONS(1981), - [anon_sym_BANG_EQ] = ACTIONS(1981), - [anon_sym_GT_EQ] = ACTIONS(1981), - [anon_sym_LT_EQ] = ACTIONS(1981), + [anon_sym_PLUS] = ACTIONS(1103), + [anon_sym_DASH] = ACTIONS(1103), + [anon_sym_STAR] = ACTIONS(1105), + [anon_sym_CARET] = ACTIONS(1101), + [anon_sym_AMP] = ACTIONS(1101), + [anon_sym_GT_EQ] = ACTIONS(1071), + [anon_sym_LT_EQ] = ACTIONS(1071), [anon_sym_this] = ACTIONS(83), - [anon_sym_DOT] = ACTIONS(1979), - [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(1067), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), - [anon_sym_switch] = ACTIONS(1979), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1503), + [anon_sym_throw] = ACTIONS(1113), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1505), - [anon_sym_DOT_DOT] = ACTIONS(1507), - [anon_sym_AMP_AMP] = ACTIONS(1981), - [anon_sym_PIPE_PIPE] = ACTIONS(1981), - [anon_sym_QMARK_QMARK] = ACTIONS(1981), + [anon_sym_await] = ACTIONS(1115), + [sym_discard] = ACTIONS(1081), + [anon_sym_DOT_DOT] = ACTIONS(1119), + [anon_sym_not] = ACTIONS(1085), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -76486,11 +76376,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(1979), - [anon_sym_is] = ACTIONS(1979), - [anon_sym_DASH_GT] = ACTIONS(1981), [anon_sym_stackalloc] = ACTIONS(127), - [anon_sym_with] = ACTIONS(1979), [anon_sym_sizeof] = ACTIONS(129), [anon_sym_typeof] = ACTIONS(131), [anon_sym___makeref] = ACTIONS(133), @@ -76502,7 +76388,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(1089), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -76519,84 +76405,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [239] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(5160), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2204), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(5491), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3677), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3080), - [sym_postfix_unary_expression] = STATE(3111), - [sym_prefix_unary_expression] = STATE(3111), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6153), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3080), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3111), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3080), - [sym_member_access_expression] = STATE(2484), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3111), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7549), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(3080), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3080), - [sym_typeof_expression] = STATE(3080), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2484), - [sym_literal] = STATE(3080), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2267), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(5528), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2196), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(5483), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3660), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3102), + [sym_postfix_unary_expression] = STATE(3079), + [sym_prefix_unary_expression] = STATE(3079), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6163), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3102), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3079), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3102), + [sym_member_access_expression] = STATE(2472), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3079), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7633), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(3102), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3102), + [sym_typeof_expression] = STATE(3102), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2472), + [sym_literal] = STATE(3102), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(239), [sym_preproc_endregion] = STATE(239), [sym_preproc_line] = STATE(239), @@ -76606,66 +76492,66 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(239), [sym_preproc_define] = STATE(239), [sym_preproc_undef] = STATE(239), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), - [sym__identifier_token] = ACTIONS(25), - [anon_sym_alias] = ACTIONS(29), - [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1481), - [anon_sym_LPAREN] = ACTIONS(2047), - [anon_sym_ref] = ACTIONS(2049), - [anon_sym_LBRACE] = ACTIONS(1487), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), - [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1061), - [anon_sym_LT] = ACTIONS(1223), - [anon_sym_GT] = ACTIONS(1223), - [anon_sym_where] = ACTIONS(29), - [anon_sym_QMARK] = ACTIONS(1223), - [anon_sym_notnull] = ACTIONS(29), - [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1067), - [anon_sym_BANG] = ACTIONS(2051), - [anon_sym_TILDE] = ACTIONS(2053), - [anon_sym_PLUS_PLUS] = ACTIONS(2053), - [anon_sym_DASH_DASH] = ACTIONS(2053), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(2051), - [anon_sym_DASH] = ACTIONS(2051), - [anon_sym_STAR] = ACTIONS(2055), - [anon_sym_SLASH] = ACTIONS(1223), - [anon_sym_PERCENT] = ACTIONS(1221), - [anon_sym_CARET] = ACTIONS(2053), - [anon_sym_PIPE] = ACTIONS(1223), - [anon_sym_AMP] = ACTIONS(2051), - [anon_sym_LT_LT] = ACTIONS(1221), - [anon_sym_GT_GT] = ACTIONS(1223), - [anon_sym_GT_GT_GT] = ACTIONS(1221), - [anon_sym_EQ_EQ] = ACTIONS(1221), - [anon_sym_BANG_EQ] = ACTIONS(1221), - [anon_sym_GT_EQ] = ACTIONS(1221), - [anon_sym_LT_EQ] = ACTIONS(1221), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), + [sym__identifier_token] = ACTIONS(25), + [anon_sym_alias] = ACTIONS(29), + [anon_sym_global] = ACTIONS(29), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1479), + [anon_sym_COLON] = ACTIONS(1219), + [anon_sym_LPAREN] = ACTIONS(2009), + [anon_sym_ref] = ACTIONS(2011), + [anon_sym_LBRACE] = ACTIONS(1481), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), + [anon_sym_file] = ACTIONS(29), + [anon_sym_new] = ACTIONS(1095), + [anon_sym_LT] = ACTIONS(1221), + [anon_sym_GT] = ACTIONS(1221), + [anon_sym_where] = ACTIONS(29), + [anon_sym_QMARK] = ACTIONS(1221), + [anon_sym_notnull] = ACTIONS(29), + [anon_sym_unmanaged] = ACTIONS(29), + [anon_sym_checked] = ACTIONS(1065), + [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(77), + [anon_sym_false] = ACTIONS(77), + [anon_sym_PLUS] = ACTIONS(2013), + [anon_sym_DASH] = ACTIONS(2013), + [anon_sym_STAR] = ACTIONS(1227), + [anon_sym_SLASH] = ACTIONS(1221), + [anon_sym_PERCENT] = ACTIONS(1219), + [anon_sym_CARET] = ACTIONS(2015), + [anon_sym_PIPE] = ACTIONS(1221), + [anon_sym_AMP] = ACTIONS(2013), + [anon_sym_LT_LT] = ACTIONS(1219), + [anon_sym_GT_GT] = ACTIONS(1221), + [anon_sym_GT_GT_GT] = ACTIONS(1219), + [anon_sym_EQ_EQ] = ACTIONS(1219), + [anon_sym_BANG_EQ] = ACTIONS(1219), + [anon_sym_GT_EQ] = ACTIONS(1219), + [anon_sym_LT_EQ] = ACTIONS(1219), [anon_sym_this] = ACTIONS(83), - [anon_sym_DOT] = ACTIONS(1223), + [anon_sym_DOT] = ACTIONS(1221), [anon_sym_scoped] = ACTIONS(85), [anon_sym_base] = ACTIONS(87), - [anon_sym_EQ_GT] = ACTIONS(1221), [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1067), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), - [anon_sym_switch] = ACTIONS(1223), + [anon_sym_switch] = ACTIONS(1221), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(2057), + [anon_sym_throw] = ACTIONS(1231), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2059), - [anon_sym_DOT_DOT] = ACTIONS(2061), - [anon_sym_AMP_AMP] = ACTIONS(1221), - [anon_sym_PIPE_PIPE] = ACTIONS(1221), - [anon_sym_QMARK_QMARK] = ACTIONS(1221), + [anon_sym_await] = ACTIONS(1233), + [anon_sym_DOT_DOT] = ACTIONS(1235), + [anon_sym_AMP_AMP] = ACTIONS(1219), + [anon_sym_PIPE_PIPE] = ACTIONS(1219), + [anon_sym_QMARK_QMARK] = ACTIONS(1219), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -76678,11 +76564,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(1223), - [anon_sym_is] = ACTIONS(1223), - [anon_sym_DASH_GT] = ACTIONS(1221), + [anon_sym_as] = ACTIONS(1221), + [anon_sym_is] = ACTIONS(1221), + [anon_sym_DASH_GT] = ACTIONS(1219), [anon_sym_stackalloc] = ACTIONS(127), - [anon_sym_with] = ACTIONS(1223), + [anon_sym_with] = ACTIONS(1221), [anon_sym_sizeof] = ACTIONS(129), [anon_sym_typeof] = ACTIONS(131), [anon_sym___makeref] = ACTIONS(133), @@ -76694,7 +76580,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(1089), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -76711,99 +76597,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [240] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(5723), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2284), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5162), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_pattern] = STATE(6590), - [sym_constant_pattern] = STATE(3486), - [sym_parenthesized_pattern] = STATE(3486), - [sym_var_pattern] = STATE(3486), - [sym_type_pattern] = STATE(3486), - [sym_list_pattern] = STATE(3486), - [sym_recursive_pattern] = STATE(3486), - [sym_positional_pattern_clause] = STATE(5670), - [sym_property_pattern_clause] = STATE(5735), - [sym_relational_pattern] = STATE(3486), - [sym_negated_pattern] = STATE(3486), - [sym_and_pattern] = STATE(3486), - [sym_or_pattern] = STATE(3486), - [sym_declaration_pattern] = STATE(3486), - [sym_expression] = STATE(5668), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3520), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(4216), - [sym_postfix_unary_expression] = STATE(4219), - [sym_prefix_unary_expression] = STATE(4219), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6154), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(4216), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(4219), - [sym_switch_expression] = STATE(3080), - [sym_switch_expression_arm] = STATE(6965), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(4216), - [sym_member_access_expression] = STATE(3121), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(4219), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7530), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(4216), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(4216), - [sym_typeof_expression] = STATE(4216), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(3121), - [sym_literal] = STATE(4216), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2267), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2416), + [sym__name] = STATE(5890), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2193), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(5250), + [sym_non_lvalue_expression] = STATE(3040), + [sym_lvalue_expression] = STATE(3549), + [sym__expression_statement_expression] = STATE(3035), + [sym_assignment_expression] = STATE(3043), + [sym_binary_expression] = STATE(3035), + [sym_postfix_unary_expression] = STATE(3043), + [sym_prefix_unary_expression] = STATE(3043), + [sym__pointer_indirection_expression] = STATE(2415), + [sym_query_expression] = STATE(3035), + [sym_from_clause] = STATE(6131), + [sym_conditional_expression] = STATE(3035), + [sym_conditional_access_expression] = STATE(3035), + [sym_as_expression] = STATE(3035), + [sym_is_expression] = STATE(3035), + [sym_is_pattern_expression] = STATE(3035), + [sym_cast_expression] = STATE(3035), + [sym_checked_expression] = STATE(3035), + [sym_invocation_expression] = STATE(3043), + [sym_switch_expression] = STATE(3035), + [sym_await_expression] = STATE(3043), + [sym_throw_expression] = STATE(3035), + [sym_element_access_expression] = STATE(2415), + [sym_interpolated_string_expression] = STATE(3035), + [sym_member_access_expression] = STATE(2415), + [sym_object_creation_expression] = STATE(3043), + [sym_parenthesized_expression] = STATE(3043), + [sym__parenthesized_lvalue_expression] = STATE(2415), + [sym_lambda_expression] = STATE(3035), + [sym__lambda_expression_init] = STATE(7412), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3035), + [sym_anonymous_method_expression] = STATE(3035), + [sym_anonymous_object_creation_expression] = STATE(3035), + [sym_implicit_array_creation_expression] = STATE(3035), + [sym_implicit_object_creation_expression] = STATE(3035), + [sym_implicit_stackalloc_expression] = STATE(3035), + [sym_initializer_expression] = STATE(3035), + [sym_default_expression] = STATE(3035), + [sym_with_expression] = STATE(3035), + [sym_sizeof_expression] = STATE(3035), + [sym_typeof_expression] = STATE(3035), + [sym_makeref_expression] = STATE(3035), + [sym_ref_expression] = STATE(3035), + [sym_reftype_expression] = STATE(3035), + [sym_refvalue_expression] = STATE(3035), + [sym_stackalloc_expression] = STATE(3035), + [sym_range_expression] = STATE(3035), + [sym_tuple_expression] = STATE(2415), + [sym_literal] = STATE(3035), + [sym_character_literal] = STATE(3037), + [sym_string_literal] = STATE(3037), + [sym_raw_string_literal] = STATE(3037), + [sym_boolean_literal] = STATE(3037), + [sym_identifier] = STATE(2261), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3035), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(240), [sym_preproc_endregion] = STATE(240), [sym_preproc_line] = STATE(240), @@ -76813,55 +76684,66 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(240), [sym_preproc_define] = STATE(240), [sym_preproc_undef] = STATE(240), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3455), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1049), - [anon_sym_COMMA] = ACTIONS(2065), - [anon_sym_LPAREN] = ACTIONS(1985), - [anon_sym_ref] = ACTIONS(1987), - [anon_sym_LBRACE] = ACTIONS(1059), - [anon_sym_RBRACE] = ACTIONS(2067), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1239), + [anon_sym_LPAREN] = ACTIONS(1949), + [anon_sym_ref] = ACTIONS(1951), + [anon_sym_LBRACE] = ACTIONS(1245), + [anon_sym_delegate] = ACTIONS(1247), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1061), - [anon_sym_LT] = ACTIONS(1991), - [anon_sym_GT] = ACTIONS(1991), + [anon_sym_new] = ACTIONS(1249), + [anon_sym_LT] = ACTIONS(1221), + [anon_sym_GT] = ACTIONS(1221), [anon_sym_where] = ACTIONS(29), + [anon_sym_QMARK] = ACTIONS(1221), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1067), - [anon_sym_BANG] = ACTIONS(1617), - [anon_sym_TILDE] = ACTIONS(1617), - [anon_sym_PLUS_PLUS] = ACTIONS(1617), - [anon_sym_DASH_DASH] = ACTIONS(1617), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1615), - [anon_sym_DASH] = ACTIONS(1615), - [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(1617), - [anon_sym_AMP] = ACTIONS(1617), - [anon_sym_GT_EQ] = ACTIONS(1993), - [anon_sym_LT_EQ] = ACTIONS(1993), - [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(1075), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(1995), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1067), + [anon_sym_checked] = ACTIONS(1251), + [anon_sym_BANG] = ACTIONS(1953), + [anon_sym_TILDE] = ACTIONS(1955), + [anon_sym_PLUS_PLUS] = ACTIONS(1955), + [anon_sym_DASH_DASH] = ACTIONS(1955), + [anon_sym_true] = ACTIONS(1257), + [anon_sym_false] = ACTIONS(1257), + [anon_sym_PLUS] = ACTIONS(1953), + [anon_sym_DASH] = ACTIONS(1953), + [anon_sym_STAR] = ACTIONS(1957), + [anon_sym_SLASH] = ACTIONS(1221), + [anon_sym_PERCENT] = ACTIONS(1219), + [anon_sym_CARET] = ACTIONS(1955), + [anon_sym_PIPE] = ACTIONS(1221), + [anon_sym_AMP] = ACTIONS(1953), + [anon_sym_LT_LT] = ACTIONS(1219), + [anon_sym_GT_GT] = ACTIONS(1221), + [anon_sym_GT_GT_GT] = ACTIONS(1219), + [anon_sym_EQ_EQ] = ACTIONS(1219), + [anon_sym_BANG_EQ] = ACTIONS(1219), + [anon_sym_GT_EQ] = ACTIONS(1219), + [anon_sym_LT_EQ] = ACTIONS(1219), + [anon_sym_this] = ACTIONS(1261), + [anon_sym_DOT] = ACTIONS(1221), + [anon_sym_scoped] = ACTIONS(85), + [anon_sym_base] = ACTIONS(1263), + [anon_sym_EQ_GT] = ACTIONS(1219), + [anon_sym_var] = ACTIONS(89), + [sym_predefined_type] = ACTIONS(1265), + [anon_sym_unchecked] = ACTIONS(1251), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1589), + [anon_sym_switch] = ACTIONS(1221), + [anon_sym_default] = ACTIONS(1267), + [anon_sym_throw] = ACTIONS(1959), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1591), - [sym_discard] = ACTIONS(1083), - [anon_sym_DOT_DOT] = ACTIONS(123), - [anon_sym_not] = ACTIONS(1997), + [anon_sym_await] = ACTIONS(1961), + [anon_sym_DOT_DOT] = ACTIONS(1963), + [anon_sym_AMP_AMP] = ACTIONS(1219), + [anon_sym_PIPE_PIPE] = ACTIONS(1219), + [anon_sym_QMARK_QMARK] = ACTIONS(1219), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -76874,19 +76756,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(1089), + [anon_sym_as] = ACTIONS(1221), + [anon_sym_is] = ACTIONS(1221), + [anon_sym_DASH_GT] = ACTIONS(1219), + [anon_sym_stackalloc] = ACTIONS(1275), + [anon_sym_with] = ACTIONS(1221), + [anon_sym_sizeof] = ACTIONS(1277), + [anon_sym_typeof] = ACTIONS(1279), + [anon_sym___makeref] = ACTIONS(1281), + [anon_sym___reftype] = ACTIONS(1283), + [anon_sym___refvalue] = ACTIONS(1285), + [sym_null_literal] = ACTIONS(1287), + [anon_sym_SQUOTE] = ACTIONS(1289), + [sym_integer_literal] = ACTIONS(1287), + [sym_real_literal] = ACTIONS(1291), + [anon_sym_DQUOTE] = ACTIONS(1293), + [sym_verbatim_string_literal] = ACTIONS(1291), + [aux_sym_preproc_if_token1] = ACTIONS(1295), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -76897,105 +76783,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(151), - [sym_interpolation_verbatim_start] = ACTIONS(153), - [sym_interpolation_raw_start] = ACTIONS(155), - [sym_raw_string_start] = ACTIONS(157), + [sym_interpolation_regular_start] = ACTIONS(1297), + [sym_interpolation_verbatim_start] = ACTIONS(1299), + [sym_interpolation_raw_start] = ACTIONS(1301), + [sym_raw_string_start] = ACTIONS(1303), }, [241] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(5634), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2234), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(4363), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_pattern] = STATE(6717), - [sym_constant_pattern] = STATE(3486), - [sym_parenthesized_pattern] = STATE(3486), - [sym_var_pattern] = STATE(3486), - [sym_type_pattern] = STATE(3486), - [sym_list_pattern] = STATE(3486), - [sym_recursive_pattern] = STATE(3486), - [sym_positional_pattern_clause] = STATE(5175), - [sym_property_pattern_clause] = STATE(5675), - [sym_subpattern] = STATE(6736), - [sym_relational_pattern] = STATE(3486), - [sym_negated_pattern] = STATE(3486), - [sym_and_pattern] = STATE(3486), - [sym_or_pattern] = STATE(3486), - [sym_declaration_pattern] = STATE(3486), - [sym_expression] = STATE(4607), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3408), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(4216), - [sym_postfix_unary_expression] = STATE(4219), - [sym_prefix_unary_expression] = STATE(4219), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6161), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(4216), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(4219), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(4216), - [sym_member_access_expression] = STATE(3121), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(4219), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7323), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(4216), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(4216), - [sym_typeof_expression] = STATE(4216), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(3121), - [sym_literal] = STATE(4216), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(5152), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2196), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(5349), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3356), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3102), + [sym_postfix_unary_expression] = STATE(3079), + [sym_prefix_unary_expression] = STATE(3079), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6134), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3102), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3079), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3102), + [sym_member_access_expression] = STATE(2472), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3079), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7627), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(3102), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3102), + [sym_typeof_expression] = STATE(3102), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2472), + [sym_literal] = STATE(3102), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(241), [sym_preproc_endregion] = STATE(241), [sym_preproc_line] = STATE(241), @@ -77005,55 +76876,66 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(241), [sym_preproc_define] = STATE(241), [sym_preproc_undef] = STATE(241), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), + [anon_sym_SEMI] = ACTIONS(2079), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1049), - [anon_sym_COMMA] = ACTIONS(2069), - [anon_sym_LPAREN] = ACTIONS(1143), - [anon_sym_ref] = ACTIONS(1953), - [anon_sym_LBRACE] = ACTIONS(1059), - [anon_sym_RBRACE] = ACTIONS(2071), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1479), + [anon_sym_LPAREN] = ACTIONS(2027), + [anon_sym_ref] = ACTIONS(1513), + [anon_sym_LBRACE] = ACTIONS(1481), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1101), - [anon_sym_LT] = ACTIONS(1063), - [anon_sym_GT] = ACTIONS(1063), + [anon_sym_new] = ACTIONS(1515), + [anon_sym_LT] = ACTIONS(2029), + [anon_sym_GT] = ACTIONS(2029), [anon_sym_where] = ACTIONS(29), + [anon_sym_QMARK] = ACTIONS(2029), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1067), - [anon_sym_BANG] = ACTIONS(1107), - [anon_sym_TILDE] = ACTIONS(1107), - [anon_sym_PLUS_PLUS] = ACTIONS(1107), - [anon_sym_DASH_DASH] = ACTIONS(1107), + [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(1109), - [anon_sym_DASH] = ACTIONS(1109), - [anon_sym_STAR] = ACTIONS(1111), - [anon_sym_CARET] = ACTIONS(1107), - [anon_sym_AMP] = ACTIONS(1107), - [anon_sym_GT_EQ] = ACTIONS(1073), - [anon_sym_LT_EQ] = ACTIONS(1073), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_STAR] = ACTIONS(81), + [anon_sym_SLASH] = ACTIONS(2029), + [anon_sym_PERCENT] = ACTIONS(2031), + [anon_sym_CARET] = ACTIONS(75), + [anon_sym_PIPE] = ACTIONS(2029), + [anon_sym_AMP] = ACTIONS(79), + [anon_sym_LT_LT] = ACTIONS(2031), + [anon_sym_GT_GT] = ACTIONS(2029), + [anon_sym_GT_GT_GT] = ACTIONS(2031), + [anon_sym_EQ_EQ] = ACTIONS(2031), + [anon_sym_BANG_EQ] = ACTIONS(2031), + [anon_sym_GT_EQ] = ACTIONS(2031), + [anon_sym_LT_EQ] = ACTIONS(2031), [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(1075), + [anon_sym_DOT] = ACTIONS(2029), + [anon_sym_scoped] = ACTIONS(85), [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(1077), + [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1067), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), + [anon_sym_switch] = ACTIONS(2029), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1119), + [anon_sym_throw] = ACTIONS(1517), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1121), - [sym_discard] = ACTIONS(1083), - [anon_sym_DOT_DOT] = ACTIONS(1125), - [anon_sym_not] = ACTIONS(1087), + [anon_sym_await] = ACTIONS(1519), + [anon_sym_DOT_DOT] = ACTIONS(1521), + [anon_sym_AMP_AMP] = ACTIONS(2031), + [anon_sym_PIPE_PIPE] = ACTIONS(2031), + [anon_sym_QMARK_QMARK] = ACTIONS(2031), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -77066,7 +76948,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(2029), + [anon_sym_is] = ACTIONS(2029), + [anon_sym_DASH_GT] = ACTIONS(2031), [anon_sym_stackalloc] = ACTIONS(127), + [anon_sym_with] = ACTIONS(2029), [anon_sym_sizeof] = ACTIONS(129), [anon_sym_typeof] = ACTIONS(131), [anon_sym___makeref] = ACTIONS(133), @@ -77078,7 +76964,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(1089), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -77095,99 +76981,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [242] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(5634), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2230), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(4363), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_pattern] = STATE(6717), - [sym_constant_pattern] = STATE(3486), - [sym_parenthesized_pattern] = STATE(3486), - [sym_var_pattern] = STATE(3486), - [sym_type_pattern] = STATE(3486), - [sym_list_pattern] = STATE(3486), - [sym_recursive_pattern] = STATE(3486), - [sym_positional_pattern_clause] = STATE(5175), - [sym_property_pattern_clause] = STATE(5675), - [sym_subpattern] = STATE(6734), - [sym_relational_pattern] = STATE(3486), - [sym_negated_pattern] = STATE(3486), - [sym_and_pattern] = STATE(3486), - [sym_or_pattern] = STATE(3486), - [sym_declaration_pattern] = STATE(3486), - [sym_expression] = STATE(5385), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3664), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(4419), - [sym_postfix_unary_expression] = STATE(4420), - [sym_prefix_unary_expression] = STATE(4420), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6161), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(4419), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(4420), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(4419), - [sym_member_access_expression] = STATE(3135), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(4420), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7773), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(4419), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(4419), - [sym_typeof_expression] = STATE(4419), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(3135), - [sym_literal] = STATE(4419), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(5152), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2196), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(5636), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3640), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3102), + [sym_postfix_unary_expression] = STATE(3079), + [sym_prefix_unary_expression] = STATE(3079), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6137), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3102), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3079), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3102), + [sym_member_access_expression] = STATE(2472), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3079), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7645), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(3102), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3102), + [sym_typeof_expression] = STATE(3102), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2472), + [sym_literal] = STATE(3102), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(242), [sym_preproc_endregion] = STATE(242), [sym_preproc_line] = STATE(242), @@ -77197,55 +77068,66 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(242), [sym_preproc_define] = STATE(242), [sym_preproc_undef] = STATE(242), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1049), - [anon_sym_COMMA] = ACTIONS(2073), - [anon_sym_LPAREN] = ACTIONS(1143), - [anon_sym_ref] = ACTIONS(2075), - [anon_sym_LBRACE] = ACTIONS(1059), - [anon_sym_RBRACE] = ACTIONS(2077), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1479), + [anon_sym_LPAREN] = ACTIONS(2081), + [anon_sym_ref] = ACTIONS(2083), + [anon_sym_LBRACE] = ACTIONS(1481), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1101), - [anon_sym_LT] = ACTIONS(1063), - [anon_sym_GT] = ACTIONS(1063), + [anon_sym_new] = ACTIONS(1059), + [anon_sym_LT] = ACTIONS(1221), + [anon_sym_GT] = ACTIONS(1221), + [anon_sym_in] = ACTIONS(1221), [anon_sym_where] = ACTIONS(29), + [anon_sym_QMARK] = ACTIONS(1221), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1067), - [anon_sym_BANG] = ACTIONS(1107), - [anon_sym_TILDE] = ACTIONS(1107), - [anon_sym_PLUS_PLUS] = ACTIONS(1107), - [anon_sym_DASH_DASH] = ACTIONS(1107), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(2085), + [anon_sym_TILDE] = ACTIONS(2087), + [anon_sym_PLUS_PLUS] = ACTIONS(2087), + [anon_sym_DASH_DASH] = ACTIONS(2087), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1109), - [anon_sym_DASH] = ACTIONS(1109), - [anon_sym_STAR] = ACTIONS(1229), - [anon_sym_CARET] = ACTIONS(1107), - [anon_sym_AMP] = ACTIONS(1107), - [anon_sym_GT_EQ] = ACTIONS(1073), - [anon_sym_LT_EQ] = ACTIONS(1073), + [anon_sym_PLUS] = ACTIONS(2085), + [anon_sym_DASH] = ACTIONS(2085), + [anon_sym_STAR] = ACTIONS(81), + [anon_sym_SLASH] = ACTIONS(1221), + [anon_sym_PERCENT] = ACTIONS(1219), + [anon_sym_CARET] = ACTIONS(2087), + [anon_sym_PIPE] = ACTIONS(1221), + [anon_sym_AMP] = ACTIONS(2085), + [anon_sym_LT_LT] = ACTIONS(1219), + [anon_sym_GT_GT] = ACTIONS(1221), + [anon_sym_GT_GT_GT] = ACTIONS(1219), + [anon_sym_EQ_EQ] = ACTIONS(1219), + [anon_sym_BANG_EQ] = ACTIONS(1219), + [anon_sym_GT_EQ] = ACTIONS(1219), + [anon_sym_LT_EQ] = ACTIONS(1219), [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(1075), + [anon_sym_DOT] = ACTIONS(1221), + [anon_sym_scoped] = ACTIONS(85), [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(1077), + [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1067), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), + [anon_sym_switch] = ACTIONS(1221), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1233), + [anon_sym_throw] = ACTIONS(2089), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1235), - [sym_discard] = ACTIONS(1083), - [anon_sym_DOT_DOT] = ACTIONS(1237), - [anon_sym_not] = ACTIONS(1087), + [anon_sym_await] = ACTIONS(2091), + [anon_sym_DOT_DOT] = ACTIONS(2093), + [anon_sym_AMP_AMP] = ACTIONS(1219), + [anon_sym_PIPE_PIPE] = ACTIONS(1219), + [anon_sym_QMARK_QMARK] = ACTIONS(1219), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -77258,7 +77140,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(1221), + [anon_sym_is] = ACTIONS(1221), + [anon_sym_DASH_GT] = ACTIONS(1219), [anon_sym_stackalloc] = ACTIONS(127), + [anon_sym_with] = ACTIONS(1221), [anon_sym_sizeof] = ACTIONS(129), [anon_sym_typeof] = ACTIONS(131), [anon_sym___makeref] = ACTIONS(133), @@ -77270,7 +77156,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(1089), + [aux_sym_preproc_if_token1] = ACTIONS(2095), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -77287,84 +77173,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [243] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(5634), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2204), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(5496), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3664), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3080), - [sym_postfix_unary_expression] = STATE(3111), - [sym_prefix_unary_expression] = STATE(3111), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6161), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3080), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3111), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3080), - [sym_member_access_expression] = STATE(2484), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3111), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7773), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(3080), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3080), - [sym_typeof_expression] = STATE(3080), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2484), - [sym_literal] = STATE(3080), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(5152), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2196), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(5549), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3640), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3102), + [sym_postfix_unary_expression] = STATE(3079), + [sym_prefix_unary_expression] = STATE(3079), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6137), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3102), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3079), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3102), + [sym_member_access_expression] = STATE(2472), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3079), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7645), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(3102), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3102), + [sym_typeof_expression] = STATE(3102), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2472), + [sym_literal] = STATE(3102), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(243), [sym_preproc_endregion] = STATE(243), [sym_preproc_line] = STATE(243), @@ -77374,66 +77260,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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1481), - [anon_sym_COLON] = ACTIONS(1151), - [anon_sym_LPAREN] = ACTIONS(2015), - [anon_sym_ref] = ACTIONS(2017), - [anon_sym_LBRACE] = ACTIONS(1487), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), - [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1101), - [anon_sym_LT] = ACTIONS(1165), - [anon_sym_GT] = ACTIONS(1165), - [anon_sym_where] = ACTIONS(29), - [anon_sym_QMARK] = ACTIONS(1165), - [anon_sym_notnull] = ACTIONS(29), - [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1067), - [anon_sym_BANG] = ACTIONS(2019), - [anon_sym_TILDE] = ACTIONS(2021), - [anon_sym_PLUS_PLUS] = ACTIONS(2021), - [anon_sym_DASH_DASH] = ACTIONS(2021), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(2019), - [anon_sym_DASH] = ACTIONS(2019), - [anon_sym_STAR] = ACTIONS(1229), - [anon_sym_SLASH] = ACTIONS(1165), - [anon_sym_PERCENT] = ACTIONS(1151), - [anon_sym_CARET] = ACTIONS(2021), - [anon_sym_PIPE] = ACTIONS(1165), - [anon_sym_AMP] = ACTIONS(2019), - [anon_sym_LT_LT] = ACTIONS(1151), - [anon_sym_GT_GT] = ACTIONS(1165), - [anon_sym_GT_GT_GT] = ACTIONS(1151), - [anon_sym_EQ_EQ] = ACTIONS(1151), - [anon_sym_BANG_EQ] = ACTIONS(1151), - [anon_sym_GT_EQ] = ACTIONS(1151), - [anon_sym_LT_EQ] = ACTIONS(1151), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1479), + [anon_sym_LPAREN] = ACTIONS(2081), + [anon_sym_ref] = ACTIONS(2083), + [anon_sym_LBRACE] = ACTIONS(1481), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), + [anon_sym_file] = ACTIONS(29), + [anon_sym_new] = ACTIONS(1059), + [anon_sym_LT] = ACTIONS(1161), + [anon_sym_GT] = ACTIONS(1161), + [anon_sym_in] = ACTIONS(1161), + [anon_sym_where] = ACTIONS(29), + [anon_sym_QMARK] = ACTIONS(1161), + [anon_sym_notnull] = ACTIONS(29), + [anon_sym_unmanaged] = ACTIONS(29), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(2085), + [anon_sym_TILDE] = ACTIONS(2087), + [anon_sym_PLUS_PLUS] = ACTIONS(2087), + [anon_sym_DASH_DASH] = ACTIONS(2087), + [anon_sym_true] = ACTIONS(77), + [anon_sym_false] = ACTIONS(77), + [anon_sym_PLUS] = ACTIONS(2085), + [anon_sym_DASH] = ACTIONS(2085), + [anon_sym_STAR] = ACTIONS(81), + [anon_sym_SLASH] = ACTIONS(1161), + [anon_sym_PERCENT] = ACTIONS(1147), + [anon_sym_CARET] = ACTIONS(2087), + [anon_sym_PIPE] = ACTIONS(1161), + [anon_sym_AMP] = ACTIONS(2085), + [anon_sym_LT_LT] = ACTIONS(1147), + [anon_sym_GT_GT] = ACTIONS(1161), + [anon_sym_GT_GT_GT] = ACTIONS(1147), + [anon_sym_EQ_EQ] = ACTIONS(1147), + [anon_sym_BANG_EQ] = ACTIONS(1147), + [anon_sym_GT_EQ] = ACTIONS(1147), + [anon_sym_LT_EQ] = ACTIONS(1147), [anon_sym_this] = ACTIONS(83), - [anon_sym_DOT] = ACTIONS(1165), + [anon_sym_DOT] = ACTIONS(1161), [anon_sym_scoped] = ACTIONS(85), [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1067), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), - [anon_sym_switch] = ACTIONS(1165), + [anon_sym_switch] = ACTIONS(1161), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1233), + [anon_sym_throw] = ACTIONS(2089), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1235), - [anon_sym_DOT_DOT] = ACTIONS(1237), - [anon_sym_AMP_AMP] = ACTIONS(1151), - [anon_sym_PIPE_PIPE] = ACTIONS(1151), - [anon_sym_QMARK_QMARK] = ACTIONS(1151), + [anon_sym_await] = ACTIONS(2091), + [anon_sym_DOT_DOT] = ACTIONS(2093), + [anon_sym_AMP_AMP] = ACTIONS(1147), + [anon_sym_PIPE_PIPE] = ACTIONS(1147), + [anon_sym_QMARK_QMARK] = ACTIONS(1147), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -77446,11 +77332,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(1165), - [anon_sym_is] = ACTIONS(1165), - [anon_sym_DASH_GT] = ACTIONS(1151), + [anon_sym_as] = ACTIONS(1161), + [anon_sym_is] = ACTIONS(1161), + [anon_sym_DASH_GT] = ACTIONS(1147), [anon_sym_stackalloc] = ACTIONS(127), - [anon_sym_with] = ACTIONS(1165), + [anon_sym_with] = ACTIONS(1161), [anon_sym_sizeof] = ACTIONS(129), [anon_sym_typeof] = ACTIONS(131), [anon_sym___makeref] = ACTIONS(133), @@ -77462,7 +77348,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(1089), + [aux_sym_preproc_if_token1] = ACTIONS(2095), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -77479,84 +77365,99 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [244] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2914), - [sym__name] = STATE(5885), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2357), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(3835), - [sym_non_lvalue_expression] = STATE(3880), - [sym_lvalue_expression] = STATE(2986), - [sym__expression_statement_expression] = STATE(3873), - [sym_assignment_expression] = STATE(3881), - [sym_binary_expression] = STATE(3873), - [sym_postfix_unary_expression] = STATE(3881), - [sym_prefix_unary_expression] = STATE(3881), - [sym__pointer_indirection_expression] = STATE(2913), - [sym_query_expression] = STATE(3873), - [sym_from_clause] = STATE(6168), - [sym_conditional_expression] = STATE(3873), - [sym_conditional_access_expression] = STATE(3873), - [sym_as_expression] = STATE(3873), - [sym_is_expression] = STATE(3873), - [sym_is_pattern_expression] = STATE(3873), - [sym_cast_expression] = STATE(3873), - [sym_checked_expression] = STATE(3873), - [sym_invocation_expression] = STATE(3881), - [sym_switch_expression] = STATE(3873), - [sym_await_expression] = STATE(3881), - [sym_throw_expression] = STATE(3873), - [sym_element_access_expression] = STATE(2913), - [sym_interpolated_string_expression] = STATE(3873), - [sym_member_access_expression] = STATE(2913), - [sym_object_creation_expression] = STATE(3881), - [sym_parenthesized_expression] = STATE(3881), - [sym__parenthesized_lvalue_expression] = STATE(2913), - [sym_lambda_expression] = STATE(3873), - [sym__lambda_expression_init] = STATE(7587), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3873), - [sym_anonymous_method_expression] = STATE(3873), - [sym_anonymous_object_creation_expression] = STATE(3873), - [sym_implicit_array_creation_expression] = STATE(3873), - [sym_implicit_object_creation_expression] = STATE(3873), - [sym_implicit_stackalloc_expression] = STATE(3873), - [sym_initializer_expression] = STATE(3873), - [sym_default_expression] = STATE(3873), - [sym_with_expression] = STATE(3873), - [sym_sizeof_expression] = STATE(3873), - [sym_typeof_expression] = STATE(3873), - [sym_makeref_expression] = STATE(3873), - [sym_ref_expression] = STATE(3873), - [sym_reftype_expression] = STATE(3873), - [sym_refvalue_expression] = STATE(3873), - [sym_stackalloc_expression] = STATE(3873), - [sym_range_expression] = STATE(3873), - [sym_tuple_expression] = STATE(2913), - [sym_literal] = STATE(3873), - [sym_character_literal] = STATE(3877), - [sym_string_literal] = STATE(3877), - [sym_raw_string_literal] = STATE(3877), - [sym_boolean_literal] = STATE(3877), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3873), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(5706), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2270), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5197), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_pattern] = STATE(6511), + [sym_constant_pattern] = STATE(3429), + [sym_parenthesized_pattern] = STATE(3429), + [sym_var_pattern] = STATE(3429), + [sym_type_pattern] = STATE(3429), + [sym_list_pattern] = STATE(3429), + [sym_recursive_pattern] = STATE(3429), + [sym_positional_pattern_clause] = STATE(5689), + [sym_property_pattern_clause] = STATE(5723), + [sym_relational_pattern] = STATE(3429), + [sym_negated_pattern] = STATE(3429), + [sym_and_pattern] = STATE(3429), + [sym_or_pattern] = STATE(3429), + [sym_declaration_pattern] = STATE(3429), + [sym_expression] = STATE(5654), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3510), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(4202), + [sym_postfix_unary_expression] = STATE(4203), + [sym_prefix_unary_expression] = STATE(4203), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6134), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(4202), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(4203), + [sym_switch_expression] = STATE(3102), + [sym_switch_expression_arm] = STATE(6903), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(4202), + [sym_member_access_expression] = STATE(3112), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(4203), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7425), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(4202), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(4202), + [sym_typeof_expression] = STATE(4202), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(3112), + [sym_literal] = STATE(4202), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2261), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(244), [sym_preproc_endregion] = STATE(244), [sym_preproc_line] = STATE(244), @@ -77566,66 +77467,55 @@ 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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3382), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1627), - [anon_sym_COMMA] = ACTIONS(1151), - [anon_sym_LPAREN] = ACTIONS(2079), - [anon_sym_ref] = ACTIONS(2081), - [anon_sym_LBRACE] = ACTIONS(1633), - [anon_sym_delegate] = ACTIONS(1635), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_COMMA] = ACTIONS(2097), + [anon_sym_LPAREN] = ACTIONS(1989), + [anon_sym_ref] = ACTIONS(1991), + [anon_sym_LBRACE] = ACTIONS(1057), + [anon_sym_RBRACE] = ACTIONS(2099), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1731), - [anon_sym_LT] = ACTIONS(1165), - [anon_sym_GT] = ACTIONS(1165), + [anon_sym_new] = ACTIONS(1059), + [anon_sym_LT] = ACTIONS(1995), + [anon_sym_GT] = ACTIONS(1995), [anon_sym_where] = ACTIONS(29), - [anon_sym_QMARK] = ACTIONS(1165), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1639), - [anon_sym_BANG] = ACTIONS(2083), - [anon_sym_TILDE] = ACTIONS(2085), - [anon_sym_PLUS_PLUS] = ACTIONS(2085), - [anon_sym_DASH_DASH] = ACTIONS(2085), - [anon_sym_true] = ACTIONS(1645), - [anon_sym_false] = ACTIONS(1645), - [anon_sym_PLUS] = ACTIONS(2083), - [anon_sym_DASH] = ACTIONS(2083), - [anon_sym_STAR] = ACTIONS(1737), - [anon_sym_SLASH] = ACTIONS(1165), - [anon_sym_PERCENT] = ACTIONS(1151), - [anon_sym_CARET] = ACTIONS(2085), - [anon_sym_PIPE] = ACTIONS(1165), - [anon_sym_AMP] = ACTIONS(2083), - [anon_sym_LT_LT] = ACTIONS(1151), - [anon_sym_GT_GT] = ACTIONS(1165), - [anon_sym_GT_GT_GT] = ACTIONS(1151), - [anon_sym_EQ_EQ] = ACTIONS(1151), - [anon_sym_BANG_EQ] = ACTIONS(1151), - [anon_sym_GT_EQ] = ACTIONS(1151), - [anon_sym_LT_EQ] = ACTIONS(1151), - [anon_sym_this] = ACTIONS(1649), - [anon_sym_DOT] = ACTIONS(1165), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1651), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1653), - [anon_sym_unchecked] = ACTIONS(1639), + [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(1997), + [anon_sym_LT_EQ] = ACTIONS(1997), + [anon_sym_this] = ACTIONS(83), + [anon_sym_scoped] = ACTIONS(1073), + [anon_sym_base] = ACTIONS(87), + [anon_sym_var] = ACTIONS(1999), + [sym_predefined_type] = ACTIONS(91), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), - [anon_sym_switch] = ACTIONS(1165), - [anon_sym_default] = ACTIONS(1655), - [anon_sym_throw] = ACTIONS(2087), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(1527), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2089), - [anon_sym_DOT_DOT] = ACTIONS(2091), - [anon_sym_AMP_AMP] = ACTIONS(1151), - [anon_sym_PIPE_PIPE] = ACTIONS(1151), - [anon_sym_QMARK_QMARK] = ACTIONS(1151), + [anon_sym_await] = ACTIONS(1529), + [sym_discard] = ACTIONS(1081), + [anon_sym_DOT_DOT] = ACTIONS(123), + [anon_sym_not] = ACTIONS(2001), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -77638,23 +77528,19 @@ static const uint16_t ts_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(1165), - [anon_sym_is] = ACTIONS(1165), - [anon_sym_DASH_GT] = ACTIONS(1151), - [anon_sym_stackalloc] = ACTIONS(1663), - [anon_sym_with] = ACTIONS(1165), - [anon_sym_sizeof] = ACTIONS(1665), - [anon_sym_typeof] = ACTIONS(1667), - [anon_sym___makeref] = ACTIONS(1669), - [anon_sym___reftype] = ACTIONS(1671), - [anon_sym___refvalue] = ACTIONS(1673), - [sym_null_literal] = ACTIONS(1675), - [anon_sym_SQUOTE] = ACTIONS(1677), - [sym_integer_literal] = ACTIONS(1675), - [sym_real_literal] = ACTIONS(1679), - [anon_sym_DQUOTE] = ACTIONS(1681), - [sym_verbatim_string_literal] = ACTIONS(1679), - [aux_sym_preproc_if_token1] = ACTIONS(1683), + [anon_sym_stackalloc] = ACTIONS(127), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_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), @@ -77665,90 +77551,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1685), - [sym_interpolation_verbatim_start] = ACTIONS(1687), - [sym_interpolation_raw_start] = ACTIONS(1689), - [sym_raw_string_start] = ACTIONS(1691), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [sym_interpolation_raw_start] = ACTIONS(155), + [sym_raw_string_start] = ACTIONS(157), }, [245] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2914), - [sym__name] = STATE(5885), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2357), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(3723), - [sym_non_lvalue_expression] = STATE(3880), - [sym_lvalue_expression] = STATE(2986), - [sym__expression_statement_expression] = STATE(3873), - [sym_assignment_expression] = STATE(3881), - [sym_binary_expression] = STATE(3873), - [sym_postfix_unary_expression] = STATE(3881), - [sym_prefix_unary_expression] = STATE(3881), - [sym__pointer_indirection_expression] = STATE(2913), - [sym_query_expression] = STATE(3873), - [sym_from_clause] = STATE(6168), - [sym_conditional_expression] = STATE(3873), - [sym_conditional_access_expression] = STATE(3873), - [sym_as_expression] = STATE(3873), - [sym_is_expression] = STATE(3873), - [sym_is_pattern_expression] = STATE(3873), - [sym_cast_expression] = STATE(3873), - [sym_checked_expression] = STATE(3873), - [sym_invocation_expression] = STATE(3881), - [sym_switch_expression] = STATE(3873), - [sym_await_expression] = STATE(3881), - [sym_throw_expression] = STATE(3873), - [sym_element_access_expression] = STATE(2913), - [sym_interpolated_string_expression] = STATE(3873), - [sym_member_access_expression] = STATE(2913), - [sym_object_creation_expression] = STATE(3881), - [sym_parenthesized_expression] = STATE(3881), - [sym__parenthesized_lvalue_expression] = STATE(2913), - [sym_lambda_expression] = STATE(3873), - [sym__lambda_expression_init] = STATE(7587), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3873), - [sym_anonymous_method_expression] = STATE(3873), - [sym_anonymous_object_creation_expression] = STATE(3873), - [sym_implicit_array_creation_expression] = STATE(3873), - [sym_implicit_object_creation_expression] = STATE(3873), - [sym_implicit_stackalloc_expression] = STATE(3873), - [sym_initializer_expression] = STATE(3873), - [sym_default_expression] = STATE(3873), - [sym_with_expression] = STATE(3873), - [sym_sizeof_expression] = STATE(3873), - [sym_typeof_expression] = STATE(3873), - [sym_makeref_expression] = STATE(3873), - [sym_ref_expression] = STATE(3873), - [sym_reftype_expression] = STATE(3873), - [sym_refvalue_expression] = STATE(3873), - [sym_stackalloc_expression] = STATE(3873), - [sym_range_expression] = STATE(3873), - [sym_tuple_expression] = STATE(2913), - [sym_literal] = STATE(3873), - [sym_character_literal] = STATE(3877), - [sym_string_literal] = STATE(3877), - [sym_raw_string_literal] = STATE(3877), - [sym_boolean_literal] = STATE(3877), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3873), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2416), + [sym__name] = STATE(5890), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2193), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(5307), + [sym_non_lvalue_expression] = STATE(3040), + [sym_lvalue_expression] = STATE(3631), + [sym__expression_statement_expression] = STATE(3035), + [sym_assignment_expression] = STATE(3043), + [sym_binary_expression] = STATE(3035), + [sym_postfix_unary_expression] = STATE(3043), + [sym_prefix_unary_expression] = STATE(3043), + [sym__pointer_indirection_expression] = STATE(2415), + [sym_query_expression] = STATE(3035), + [sym_from_clause] = STATE(6164), + [sym_conditional_expression] = STATE(3035), + [sym_conditional_access_expression] = STATE(3035), + [sym_as_expression] = STATE(3035), + [sym_is_expression] = STATE(3035), + [sym_is_pattern_expression] = STATE(3035), + [sym_cast_expression] = STATE(3035), + [sym_checked_expression] = STATE(3035), + [sym_invocation_expression] = STATE(3043), + [sym_switch_expression] = STATE(3035), + [sym_await_expression] = STATE(3043), + [sym_throw_expression] = STATE(3035), + [sym_element_access_expression] = STATE(2415), + [sym_interpolated_string_expression] = STATE(3035), + [sym_member_access_expression] = STATE(2415), + [sym_object_creation_expression] = STATE(3043), + [sym_parenthesized_expression] = STATE(3043), + [sym__parenthesized_lvalue_expression] = STATE(2415), + [sym_lambda_expression] = STATE(3035), + [sym__lambda_expression_init] = STATE(7458), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3035), + [sym_anonymous_method_expression] = STATE(3035), + [sym_anonymous_object_creation_expression] = STATE(3035), + [sym_implicit_array_creation_expression] = STATE(3035), + [sym_implicit_object_creation_expression] = STATE(3035), + [sym_implicit_stackalloc_expression] = STATE(3035), + [sym_initializer_expression] = STATE(3035), + [sym_default_expression] = STATE(3035), + [sym_with_expression] = STATE(3035), + [sym_sizeof_expression] = STATE(3035), + [sym_typeof_expression] = STATE(3035), + [sym_makeref_expression] = STATE(3035), + [sym_ref_expression] = STATE(3035), + [sym_reftype_expression] = STATE(3035), + [sym_refvalue_expression] = STATE(3035), + [sym_stackalloc_expression] = STATE(3035), + [sym_range_expression] = STATE(3035), + [sym_tuple_expression] = STATE(2415), + [sym_literal] = STATE(3035), + [sym_character_literal] = STATE(3037), + [sym_string_literal] = STATE(3037), + [sym_raw_string_literal] = STATE(3037), + [sym_boolean_literal] = STATE(3037), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3035), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(245), [sym_preproc_endregion] = STATE(245), [sym_preproc_line] = STATE(245), @@ -77758,66 +77644,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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3382), - [sym__identifier_token] = ACTIONS(25), - [anon_sym_alias] = ACTIONS(29), - [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1627), - [anon_sym_COMMA] = ACTIONS(1221), - [anon_sym_LPAREN] = ACTIONS(2079), - [anon_sym_ref] = ACTIONS(2081), - [anon_sym_LBRACE] = ACTIONS(1633), - [anon_sym_delegate] = ACTIONS(1635), - [anon_sym_async] = ACTIONS(1047), - [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1731), - [anon_sym_LT] = ACTIONS(1223), - [anon_sym_GT] = ACTIONS(1223), - [anon_sym_where] = ACTIONS(29), - [anon_sym_QMARK] = ACTIONS(1223), - [anon_sym_notnull] = ACTIONS(29), - [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1639), - [anon_sym_BANG] = ACTIONS(2083), - [anon_sym_TILDE] = ACTIONS(2085), - [anon_sym_PLUS_PLUS] = ACTIONS(2085), - [anon_sym_DASH_DASH] = ACTIONS(2085), - [anon_sym_true] = ACTIONS(1645), - [anon_sym_false] = ACTIONS(1645), - [anon_sym_PLUS] = ACTIONS(2083), - [anon_sym_DASH] = ACTIONS(2083), - [anon_sym_STAR] = ACTIONS(1737), - [anon_sym_SLASH] = ACTIONS(1223), - [anon_sym_PERCENT] = ACTIONS(1221), - [anon_sym_CARET] = ACTIONS(2085), - [anon_sym_PIPE] = ACTIONS(1223), - [anon_sym_AMP] = ACTIONS(2083), - [anon_sym_LT_LT] = ACTIONS(1221), - [anon_sym_GT_GT] = ACTIONS(1223), - [anon_sym_GT_GT_GT] = ACTIONS(1221), - [anon_sym_EQ_EQ] = ACTIONS(1221), - [anon_sym_BANG_EQ] = ACTIONS(1221), - [anon_sym_GT_EQ] = ACTIONS(1221), - [anon_sym_LT_EQ] = ACTIONS(1221), - [anon_sym_this] = ACTIONS(1649), - [anon_sym_DOT] = ACTIONS(1223), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1651), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1653), - [anon_sym_unchecked] = ACTIONS(1639), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3455), + [sym__identifier_token] = ACTIONS(25), + [anon_sym_alias] = ACTIONS(29), + [anon_sym_global] = ACTIONS(29), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1239), + [anon_sym_LPAREN] = ACTIONS(2101), + [anon_sym_ref] = ACTIONS(2103), + [anon_sym_LBRACE] = ACTIONS(1245), + [anon_sym_delegate] = ACTIONS(1247), + [anon_sym_async] = ACTIONS(1045), + [anon_sym_file] = ACTIONS(29), + [anon_sym_new] = ACTIONS(1249), + [anon_sym_LT] = ACTIONS(1221), + [anon_sym_GT] = ACTIONS(1221), + [anon_sym_in] = ACTIONS(1221), + [anon_sym_where] = ACTIONS(29), + [anon_sym_QMARK] = ACTIONS(1221), + [anon_sym_notnull] = ACTIONS(29), + [anon_sym_unmanaged] = ACTIONS(29), + [anon_sym_checked] = ACTIONS(1251), + [anon_sym_BANG] = ACTIONS(2105), + [anon_sym_TILDE] = ACTIONS(2107), + [anon_sym_PLUS_PLUS] = ACTIONS(2107), + [anon_sym_DASH_DASH] = ACTIONS(2107), + [anon_sym_true] = ACTIONS(1257), + [anon_sym_false] = ACTIONS(1257), + [anon_sym_PLUS] = ACTIONS(2105), + [anon_sym_DASH] = ACTIONS(2105), + [anon_sym_STAR] = ACTIONS(1259), + [anon_sym_SLASH] = ACTIONS(1221), + [anon_sym_PERCENT] = ACTIONS(1219), + [anon_sym_CARET] = ACTIONS(2107), + [anon_sym_PIPE] = ACTIONS(1221), + [anon_sym_AMP] = ACTIONS(2105), + [anon_sym_LT_LT] = ACTIONS(1219), + [anon_sym_GT_GT] = ACTIONS(1221), + [anon_sym_GT_GT_GT] = ACTIONS(1219), + [anon_sym_EQ_EQ] = ACTIONS(1219), + [anon_sym_BANG_EQ] = ACTIONS(1219), + [anon_sym_GT_EQ] = ACTIONS(1219), + [anon_sym_LT_EQ] = ACTIONS(1219), + [anon_sym_this] = ACTIONS(1261), + [anon_sym_DOT] = ACTIONS(1221), + [anon_sym_scoped] = ACTIONS(85), + [anon_sym_base] = ACTIONS(1263), + [anon_sym_var] = ACTIONS(89), + [sym_predefined_type] = ACTIONS(1265), + [anon_sym_unchecked] = ACTIONS(1251), [anon_sym_yield] = ACTIONS(29), - [anon_sym_switch] = ACTIONS(1223), - [anon_sym_default] = ACTIONS(1655), - [anon_sym_throw] = ACTIONS(2087), + [anon_sym_switch] = ACTIONS(1221), + [anon_sym_default] = ACTIONS(1267), + [anon_sym_throw] = ACTIONS(2109), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2089), - [anon_sym_DOT_DOT] = ACTIONS(2091), - [anon_sym_AMP_AMP] = ACTIONS(1221), - [anon_sym_PIPE_PIPE] = ACTIONS(1221), - [anon_sym_QMARK_QMARK] = ACTIONS(1221), + [anon_sym_await] = ACTIONS(2111), + [anon_sym_DOT_DOT] = ACTIONS(2113), + [anon_sym_AMP_AMP] = ACTIONS(1219), + [anon_sym_PIPE_PIPE] = ACTIONS(1219), + [anon_sym_QMARK_QMARK] = ACTIONS(1219), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -77830,23 +77716,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(1223), - [anon_sym_is] = ACTIONS(1223), - [anon_sym_DASH_GT] = ACTIONS(1221), - [anon_sym_stackalloc] = ACTIONS(1663), - [anon_sym_with] = ACTIONS(1223), - [anon_sym_sizeof] = ACTIONS(1665), - [anon_sym_typeof] = ACTIONS(1667), - [anon_sym___makeref] = ACTIONS(1669), - [anon_sym___reftype] = ACTIONS(1671), - [anon_sym___refvalue] = ACTIONS(1673), - [sym_null_literal] = ACTIONS(1675), - [anon_sym_SQUOTE] = ACTIONS(1677), - [sym_integer_literal] = ACTIONS(1675), - [sym_real_literal] = ACTIONS(1679), - [anon_sym_DQUOTE] = ACTIONS(1681), - [sym_verbatim_string_literal] = ACTIONS(1679), - [aux_sym_preproc_if_token1] = ACTIONS(1683), + [anon_sym_as] = ACTIONS(1221), + [anon_sym_is] = ACTIONS(1221), + [anon_sym_DASH_GT] = ACTIONS(1219), + [anon_sym_stackalloc] = ACTIONS(1275), + [anon_sym_with] = ACTIONS(1221), + [anon_sym_sizeof] = ACTIONS(1277), + [anon_sym_typeof] = ACTIONS(1279), + [anon_sym___makeref] = ACTIONS(1281), + [anon_sym___reftype] = ACTIONS(1283), + [anon_sym___refvalue] = ACTIONS(1285), + [sym_null_literal] = ACTIONS(1287), + [anon_sym_SQUOTE] = ACTIONS(1289), + [sym_integer_literal] = ACTIONS(1287), + [sym_real_literal] = ACTIONS(1291), + [anon_sym_DQUOTE] = ACTIONS(1293), + [sym_verbatim_string_literal] = ACTIONS(1291), + [aux_sym_preproc_if_token1] = ACTIONS(2115), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -77857,90 +77743,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1685), - [sym_interpolation_verbatim_start] = ACTIONS(1687), - [sym_interpolation_raw_start] = ACTIONS(1689), - [sym_raw_string_start] = ACTIONS(1691), + [sym_interpolation_regular_start] = ACTIONS(1297), + [sym_interpolation_verbatim_start] = ACTIONS(1299), + [sym_interpolation_raw_start] = ACTIONS(1301), + [sym_raw_string_start] = ACTIONS(1303), }, [246] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(5160), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2204), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(5637), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3687), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3080), - [sym_postfix_unary_expression] = STATE(3111), - [sym_prefix_unary_expression] = STATE(3111), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2416), + [sym__name] = STATE(5890), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2193), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(5270), + [sym_non_lvalue_expression] = STATE(3040), + [sym_lvalue_expression] = STATE(3631), + [sym__expression_statement_expression] = STATE(3035), + [sym_assignment_expression] = STATE(3043), + [sym_binary_expression] = STATE(3035), + [sym_postfix_unary_expression] = STATE(3043), + [sym_prefix_unary_expression] = STATE(3043), + [sym__pointer_indirection_expression] = STATE(2415), + [sym_query_expression] = STATE(3035), [sym_from_clause] = STATE(6164), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3080), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3111), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3080), - [sym_member_access_expression] = STATE(2484), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3111), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7701), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(3080), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3080), - [sym_typeof_expression] = STATE(3080), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2484), - [sym_literal] = STATE(3080), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_conditional_expression] = STATE(3035), + [sym_conditional_access_expression] = STATE(3035), + [sym_as_expression] = STATE(3035), + [sym_is_expression] = STATE(3035), + [sym_is_pattern_expression] = STATE(3035), + [sym_cast_expression] = STATE(3035), + [sym_checked_expression] = STATE(3035), + [sym_invocation_expression] = STATE(3043), + [sym_switch_expression] = STATE(3035), + [sym_await_expression] = STATE(3043), + [sym_throw_expression] = STATE(3035), + [sym_element_access_expression] = STATE(2415), + [sym_interpolated_string_expression] = STATE(3035), + [sym_member_access_expression] = STATE(2415), + [sym_object_creation_expression] = STATE(3043), + [sym_parenthesized_expression] = STATE(3043), + [sym__parenthesized_lvalue_expression] = STATE(2415), + [sym_lambda_expression] = STATE(3035), + [sym__lambda_expression_init] = STATE(7458), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3035), + [sym_anonymous_method_expression] = STATE(3035), + [sym_anonymous_object_creation_expression] = STATE(3035), + [sym_implicit_array_creation_expression] = STATE(3035), + [sym_implicit_object_creation_expression] = STATE(3035), + [sym_implicit_stackalloc_expression] = STATE(3035), + [sym_initializer_expression] = STATE(3035), + [sym_default_expression] = STATE(3035), + [sym_with_expression] = STATE(3035), + [sym_sizeof_expression] = STATE(3035), + [sym_typeof_expression] = STATE(3035), + [sym_makeref_expression] = STATE(3035), + [sym_ref_expression] = STATE(3035), + [sym_reftype_expression] = STATE(3035), + [sym_refvalue_expression] = STATE(3035), + [sym_stackalloc_expression] = STATE(3035), + [sym_range_expression] = STATE(3035), + [sym_tuple_expression] = STATE(2415), + [sym_literal] = STATE(3035), + [sym_character_literal] = STATE(3037), + [sym_string_literal] = STATE(3037), + [sym_raw_string_literal] = STATE(3037), + [sym_boolean_literal] = STATE(3037), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3035), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(246), [sym_preproc_endregion] = STATE(246), [sym_preproc_line] = STATE(246), @@ -77950,66 +77836,66 @@ 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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3455), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1481), - [anon_sym_LPAREN] = ACTIONS(2093), - [anon_sym_ref] = ACTIONS(2095), - [anon_sym_LBRACE] = ACTIONS(1487), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1239), + [anon_sym_LPAREN] = ACTIONS(2101), + [anon_sym_ref] = ACTIONS(2103), + [anon_sym_LBRACE] = ACTIONS(1245), + [anon_sym_delegate] = ACTIONS(1247), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1061), - [anon_sym_LT] = ACTIONS(1165), - [anon_sym_GT] = ACTIONS(1165), - [anon_sym_in] = ACTIONS(1165), + [anon_sym_new] = ACTIONS(1249), + [anon_sym_LT] = ACTIONS(1161), + [anon_sym_GT] = ACTIONS(1161), + [anon_sym_in] = ACTIONS(1161), [anon_sym_where] = ACTIONS(29), - [anon_sym_QMARK] = ACTIONS(1165), + [anon_sym_QMARK] = ACTIONS(1161), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1067), - [anon_sym_BANG] = ACTIONS(2097), - [anon_sym_TILDE] = ACTIONS(2099), - [anon_sym_PLUS_PLUS] = ACTIONS(2099), - [anon_sym_DASH_DASH] = ACTIONS(2099), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(2097), - [anon_sym_DASH] = ACTIONS(2097), - [anon_sym_STAR] = ACTIONS(81), - [anon_sym_SLASH] = ACTIONS(1165), - [anon_sym_PERCENT] = ACTIONS(1151), - [anon_sym_CARET] = ACTIONS(2099), - [anon_sym_PIPE] = ACTIONS(1165), - [anon_sym_AMP] = ACTIONS(2097), - [anon_sym_LT_LT] = ACTIONS(1151), - [anon_sym_GT_GT] = ACTIONS(1165), - [anon_sym_GT_GT_GT] = ACTIONS(1151), - [anon_sym_EQ_EQ] = ACTIONS(1151), - [anon_sym_BANG_EQ] = ACTIONS(1151), - [anon_sym_GT_EQ] = ACTIONS(1151), - [anon_sym_LT_EQ] = ACTIONS(1151), - [anon_sym_this] = ACTIONS(83), - [anon_sym_DOT] = ACTIONS(1165), + [anon_sym_checked] = ACTIONS(1251), + [anon_sym_BANG] = ACTIONS(2105), + [anon_sym_TILDE] = ACTIONS(2107), + [anon_sym_PLUS_PLUS] = ACTIONS(2107), + [anon_sym_DASH_DASH] = ACTIONS(2107), + [anon_sym_true] = ACTIONS(1257), + [anon_sym_false] = ACTIONS(1257), + [anon_sym_PLUS] = ACTIONS(2105), + [anon_sym_DASH] = ACTIONS(2105), + [anon_sym_STAR] = ACTIONS(1259), + [anon_sym_SLASH] = ACTIONS(1161), + [anon_sym_PERCENT] = ACTIONS(1147), + [anon_sym_CARET] = ACTIONS(2107), + [anon_sym_PIPE] = ACTIONS(1161), + [anon_sym_AMP] = ACTIONS(2105), + [anon_sym_LT_LT] = ACTIONS(1147), + [anon_sym_GT_GT] = ACTIONS(1161), + [anon_sym_GT_GT_GT] = ACTIONS(1147), + [anon_sym_EQ_EQ] = ACTIONS(1147), + [anon_sym_BANG_EQ] = ACTIONS(1147), + [anon_sym_GT_EQ] = ACTIONS(1147), + [anon_sym_LT_EQ] = ACTIONS(1147), + [anon_sym_this] = ACTIONS(1261), + [anon_sym_DOT] = ACTIONS(1161), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), + [anon_sym_base] = ACTIONS(1263), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1067), + [sym_predefined_type] = ACTIONS(1265), + [anon_sym_unchecked] = ACTIONS(1251), [anon_sym_yield] = ACTIONS(29), - [anon_sym_switch] = ACTIONS(1165), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(2101), + [anon_sym_switch] = ACTIONS(1161), + [anon_sym_default] = ACTIONS(1267), + [anon_sym_throw] = ACTIONS(2109), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2103), - [anon_sym_DOT_DOT] = ACTIONS(2105), - [anon_sym_AMP_AMP] = ACTIONS(1151), - [anon_sym_PIPE_PIPE] = ACTIONS(1151), - [anon_sym_QMARK_QMARK] = ACTIONS(1151), + [anon_sym_await] = ACTIONS(2111), + [anon_sym_DOT_DOT] = ACTIONS(2113), + [anon_sym_AMP_AMP] = ACTIONS(1147), + [anon_sym_PIPE_PIPE] = ACTIONS(1147), + [anon_sym_QMARK_QMARK] = ACTIONS(1147), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -78022,23 +77908,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(1165), - [anon_sym_is] = ACTIONS(1165), - [anon_sym_DASH_GT] = ACTIONS(1151), - [anon_sym_stackalloc] = ACTIONS(127), - [anon_sym_with] = ACTIONS(1165), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(133), - [anon_sym___reftype] = ACTIONS(135), - [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(2107), + [anon_sym_as] = ACTIONS(1161), + [anon_sym_is] = ACTIONS(1161), + [anon_sym_DASH_GT] = ACTIONS(1147), + [anon_sym_stackalloc] = ACTIONS(1275), + [anon_sym_with] = ACTIONS(1161), + [anon_sym_sizeof] = ACTIONS(1277), + [anon_sym_typeof] = ACTIONS(1279), + [anon_sym___makeref] = ACTIONS(1281), + [anon_sym___reftype] = ACTIONS(1283), + [anon_sym___refvalue] = ACTIONS(1285), + [sym_null_literal] = ACTIONS(1287), + [anon_sym_SQUOTE] = ACTIONS(1289), + [sym_integer_literal] = ACTIONS(1287), + [sym_real_literal] = ACTIONS(1291), + [anon_sym_DQUOTE] = ACTIONS(1293), + [sym_verbatim_string_literal] = ACTIONS(1291), + [aux_sym_preproc_if_token1] = ACTIONS(2115), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -78049,90 +77935,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(1297), + [sym_interpolation_verbatim_start] = ACTIONS(1299), + [sym_interpolation_raw_start] = ACTIONS(1301), + [sym_raw_string_start] = ACTIONS(1303), }, [247] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(5160), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2204), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(5574), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3687), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3080), - [sym_postfix_unary_expression] = STATE(3111), - [sym_prefix_unary_expression] = STATE(3111), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6164), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3080), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3111), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3080), - [sym_member_access_expression] = STATE(2484), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3111), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7701), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(3080), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3080), - [sym_typeof_expression] = STATE(3080), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2484), - [sym_literal] = STATE(3080), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(5528), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2225), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(4472), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_pattern] = STATE(6702), + [sym_constant_pattern] = STATE(3429), + [sym_parenthesized_pattern] = STATE(3429), + [sym_var_pattern] = STATE(3429), + [sym_type_pattern] = STATE(3429), + [sym_list_pattern] = STATE(3429), + [sym_recursive_pattern] = STATE(3429), + [sym_positional_pattern_clause] = STATE(5135), + [sym_property_pattern_clause] = STATE(5666), + [sym_subpattern] = STATE(6738), + [sym_relational_pattern] = STATE(3429), + [sym_negated_pattern] = STATE(3429), + [sym_and_pattern] = STATE(3429), + [sym_or_pattern] = STATE(3429), + [sym_declaration_pattern] = STATE(3429), + [sym_expression] = STATE(5405), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3660), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(4418), + [sym_postfix_unary_expression] = STATE(4403), + [sym_prefix_unary_expression] = STATE(4403), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6163), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(4418), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(4403), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(4418), + [sym_member_access_expression] = STATE(3127), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(4403), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7633), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(4418), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(4418), + [sym_typeof_expression] = STATE(4418), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(3127), + [sym_literal] = STATE(4418), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(247), [sym_preproc_endregion] = STATE(247), [sym_preproc_line] = STATE(247), @@ -78142,66 +78043,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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1481), - [anon_sym_LPAREN] = ACTIONS(2093), - [anon_sym_ref] = ACTIONS(2095), - [anon_sym_LBRACE] = ACTIONS(1487), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_COMMA] = ACTIONS(2117), + [anon_sym_LPAREN] = ACTIONS(1141), + [anon_sym_ref] = ACTIONS(2005), + [anon_sym_LBRACE] = ACTIONS(1057), + [anon_sym_RBRACE] = ACTIONS(2119), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1061), - [anon_sym_LT] = ACTIONS(1223), - [anon_sym_GT] = ACTIONS(1223), - [anon_sym_in] = ACTIONS(1223), + [anon_sym_new] = ACTIONS(1095), + [anon_sym_LT] = ACTIONS(1061), + [anon_sym_GT] = ACTIONS(1061), [anon_sym_where] = ACTIONS(29), - [anon_sym_QMARK] = ACTIONS(1223), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1067), - [anon_sym_BANG] = ACTIONS(2097), - [anon_sym_TILDE] = ACTIONS(2099), - [anon_sym_PLUS_PLUS] = ACTIONS(2099), - [anon_sym_DASH_DASH] = ACTIONS(2099), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(1101), + [anon_sym_TILDE] = ACTIONS(1101), + [anon_sym_PLUS_PLUS] = ACTIONS(1101), + [anon_sym_DASH_DASH] = ACTIONS(1101), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(2097), - [anon_sym_DASH] = ACTIONS(2097), - [anon_sym_STAR] = ACTIONS(81), - [anon_sym_SLASH] = ACTIONS(1223), - [anon_sym_PERCENT] = ACTIONS(1221), - [anon_sym_CARET] = ACTIONS(2099), - [anon_sym_PIPE] = ACTIONS(1223), - [anon_sym_AMP] = ACTIONS(2097), - [anon_sym_LT_LT] = ACTIONS(1221), - [anon_sym_GT_GT] = ACTIONS(1223), - [anon_sym_GT_GT_GT] = ACTIONS(1221), - [anon_sym_EQ_EQ] = ACTIONS(1221), - [anon_sym_BANG_EQ] = ACTIONS(1221), - [anon_sym_GT_EQ] = ACTIONS(1221), - [anon_sym_LT_EQ] = ACTIONS(1221), + [anon_sym_PLUS] = ACTIONS(1103), + [anon_sym_DASH] = ACTIONS(1103), + [anon_sym_STAR] = ACTIONS(1227), + [anon_sym_CARET] = ACTIONS(1101), + [anon_sym_AMP] = ACTIONS(1101), + [anon_sym_GT_EQ] = ACTIONS(1071), + [anon_sym_LT_EQ] = ACTIONS(1071), [anon_sym_this] = ACTIONS(83), - [anon_sym_DOT] = ACTIONS(1223), - [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(1067), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), - [anon_sym_switch] = ACTIONS(1223), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(2101), + [anon_sym_throw] = ACTIONS(1231), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2103), - [anon_sym_DOT_DOT] = ACTIONS(2105), - [anon_sym_AMP_AMP] = ACTIONS(1221), - [anon_sym_PIPE_PIPE] = ACTIONS(1221), - [anon_sym_QMARK_QMARK] = ACTIONS(1221), + [anon_sym_await] = ACTIONS(1233), + [sym_discard] = ACTIONS(1081), + [anon_sym_DOT_DOT] = ACTIONS(1235), + [anon_sym_not] = ACTIONS(1085), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -78214,11 +78104,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(1223), - [anon_sym_is] = ACTIONS(1223), - [anon_sym_DASH_GT] = ACTIONS(1221), [anon_sym_stackalloc] = ACTIONS(127), - [anon_sym_with] = ACTIONS(1223), [anon_sym_sizeof] = ACTIONS(129), [anon_sym_typeof] = ACTIONS(131), [anon_sym___makeref] = ACTIONS(133), @@ -78230,7 +78116,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(2107), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -78247,99 +78133,99 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [248] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(5634), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2230), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(4363), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_pattern] = STATE(6717), - [sym_constant_pattern] = STATE(3486), - [sym_parenthesized_pattern] = STATE(3486), - [sym_var_pattern] = STATE(3486), - [sym_type_pattern] = STATE(3486), - [sym_list_pattern] = STATE(3486), - [sym_recursive_pattern] = STATE(3486), - [sym_positional_pattern_clause] = STATE(5175), - [sym_property_pattern_clause] = STATE(5675), - [sym_subpattern] = STATE(6736), - [sym_relational_pattern] = STATE(3486), - [sym_negated_pattern] = STATE(3486), - [sym_and_pattern] = STATE(3486), - [sym_or_pattern] = STATE(3486), - [sym_declaration_pattern] = STATE(3486), - [sym_expression] = STATE(5385), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3664), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(4419), - [sym_postfix_unary_expression] = STATE(4420), - [sym_prefix_unary_expression] = STATE(4420), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6161), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(4419), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(4420), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(4419), - [sym_member_access_expression] = STATE(3135), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(4420), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7773), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(4419), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(4419), - [sym_typeof_expression] = STATE(4419), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(3135), - [sym_literal] = STATE(4419), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(5706), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2270), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5197), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_pattern] = STATE(6511), + [sym_constant_pattern] = STATE(3429), + [sym_parenthesized_pattern] = STATE(3429), + [sym_var_pattern] = STATE(3429), + [sym_type_pattern] = STATE(3429), + [sym_list_pattern] = STATE(3429), + [sym_recursive_pattern] = STATE(3429), + [sym_positional_pattern_clause] = STATE(5689), + [sym_property_pattern_clause] = STATE(5723), + [sym_relational_pattern] = STATE(3429), + [sym_negated_pattern] = STATE(3429), + [sym_and_pattern] = STATE(3429), + [sym_or_pattern] = STATE(3429), + [sym_declaration_pattern] = STATE(3429), + [sym_expression] = STATE(5654), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3510), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(4202), + [sym_postfix_unary_expression] = STATE(4203), + [sym_prefix_unary_expression] = STATE(4203), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6134), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(4202), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(4203), + [sym_switch_expression] = STATE(3102), + [sym_switch_expression_arm] = STATE(6933), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(4202), + [sym_member_access_expression] = STATE(3112), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(4203), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7425), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(4202), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(4202), + [sym_typeof_expression] = STATE(4202), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(3112), + [sym_literal] = STATE(4202), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2261), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(248), [sym_preproc_endregion] = STATE(248), [sym_preproc_line] = STATE(248), @@ -78349,55 +78235,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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1049), - [anon_sym_COMMA] = ACTIONS(2109), - [anon_sym_LPAREN] = ACTIONS(1143), - [anon_sym_ref] = ACTIONS(2075), - [anon_sym_LBRACE] = ACTIONS(1059), - [anon_sym_RBRACE] = ACTIONS(2111), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_COMMA] = ACTIONS(2121), + [anon_sym_LPAREN] = ACTIONS(1989), + [anon_sym_ref] = ACTIONS(1991), + [anon_sym_LBRACE] = ACTIONS(1057), + [anon_sym_RBRACE] = ACTIONS(2123), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1101), - [anon_sym_LT] = ACTIONS(1063), - [anon_sym_GT] = ACTIONS(1063), + [anon_sym_new] = ACTIONS(1059), + [anon_sym_LT] = ACTIONS(1995), + [anon_sym_GT] = ACTIONS(1995), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1067), - [anon_sym_BANG] = ACTIONS(1107), - [anon_sym_TILDE] = ACTIONS(1107), - [anon_sym_PLUS_PLUS] = ACTIONS(1107), - [anon_sym_DASH_DASH] = ACTIONS(1107), + [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(1109), - [anon_sym_DASH] = ACTIONS(1109), - [anon_sym_STAR] = ACTIONS(1229), - [anon_sym_CARET] = ACTIONS(1107), - [anon_sym_AMP] = ACTIONS(1107), - [anon_sym_GT_EQ] = ACTIONS(1073), - [anon_sym_LT_EQ] = ACTIONS(1073), + [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(1997), + [anon_sym_LT_EQ] = ACTIONS(1997), [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(1075), + [anon_sym_scoped] = ACTIONS(1073), [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(1077), + [anon_sym_var] = ACTIONS(1999), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1067), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1233), + [anon_sym_throw] = ACTIONS(1527), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1235), - [sym_discard] = ACTIONS(1083), - [anon_sym_DOT_DOT] = ACTIONS(1237), - [anon_sym_not] = ACTIONS(1087), + [anon_sym_await] = ACTIONS(1529), + [sym_discard] = ACTIONS(1081), + [anon_sym_DOT_DOT] = ACTIONS(123), + [anon_sym_not] = ACTIONS(2001), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -78422,7 +78308,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(1089), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -78439,84 +78325,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [249] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2420), - [sym__name] = STATE(5887), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2197), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(5306), - [sym_non_lvalue_expression] = STATE(3066), - [sym_lvalue_expression] = STATE(3637), - [sym__expression_statement_expression] = STATE(3006), - [sym_assignment_expression] = STATE(3020), - [sym_binary_expression] = STATE(3006), - [sym_postfix_unary_expression] = STATE(3020), - [sym_prefix_unary_expression] = STATE(3020), - [sym__pointer_indirection_expression] = STATE(2423), - [sym_query_expression] = STATE(3006), - [sym_from_clause] = STATE(6148), - [sym_conditional_expression] = STATE(3006), - [sym_conditional_access_expression] = STATE(3006), - [sym_as_expression] = STATE(3006), - [sym_is_expression] = STATE(3006), - [sym_is_pattern_expression] = STATE(3006), - [sym_cast_expression] = STATE(3006), - [sym_checked_expression] = STATE(3006), - [sym_invocation_expression] = STATE(3020), - [sym_switch_expression] = STATE(3006), - [sym_await_expression] = STATE(3020), - [sym_throw_expression] = STATE(3006), - [sym_element_access_expression] = STATE(2423), - [sym_interpolated_string_expression] = STATE(3006), - [sym_member_access_expression] = STATE(2423), - [sym_object_creation_expression] = STATE(3020), - [sym_parenthesized_expression] = STATE(3020), - [sym__parenthesized_lvalue_expression] = STATE(2423), - [sym_lambda_expression] = STATE(3006), - [sym__lambda_expression_init] = STATE(7507), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3006), - [sym_anonymous_method_expression] = STATE(3006), - [sym_anonymous_object_creation_expression] = STATE(3006), - [sym_implicit_array_creation_expression] = STATE(3006), - [sym_implicit_object_creation_expression] = STATE(3006), - [sym_implicit_stackalloc_expression] = STATE(3006), - [sym_initializer_expression] = STATE(3006), - [sym_default_expression] = STATE(3006), - [sym_with_expression] = STATE(3006), - [sym_sizeof_expression] = STATE(3006), - [sym_typeof_expression] = STATE(3006), - [sym_makeref_expression] = STATE(3006), - [sym_ref_expression] = STATE(3006), - [sym_reftype_expression] = STATE(3006), - [sym_refvalue_expression] = STATE(3006), - [sym_stackalloc_expression] = STATE(3006), - [sym_range_expression] = STATE(3006), - [sym_tuple_expression] = STATE(2423), - [sym_literal] = STATE(3006), - [sym_character_literal] = STATE(3011), - [sym_string_literal] = STATE(3011), - [sym_raw_string_literal] = STATE(3011), - [sym_boolean_literal] = STATE(3011), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3006), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(5152), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2196), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(5599), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3356), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3102), + [sym_postfix_unary_expression] = STATE(3079), + [sym_prefix_unary_expression] = STATE(3079), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6134), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3102), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3079), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3102), + [sym_member_access_expression] = STATE(2472), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3079), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7627), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(3102), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3102), + [sym_typeof_expression] = STATE(3102), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2472), + [sym_literal] = STATE(3102), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(249), [sym_preproc_endregion] = STATE(249), [sym_preproc_line] = STATE(249), @@ -78526,66 +78412,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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3440), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), + [anon_sym_SEMI] = ACTIONS(2125), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1241), - [anon_sym_LPAREN] = ACTIONS(2113), - [anon_sym_ref] = ACTIONS(2115), - [anon_sym_LBRACE] = ACTIONS(1247), - [anon_sym_delegate] = ACTIONS(1249), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1479), + [anon_sym_LPAREN] = ACTIONS(2027), + [anon_sym_ref] = ACTIONS(1513), + [anon_sym_LBRACE] = ACTIONS(1481), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1251), - [anon_sym_LT] = ACTIONS(1165), - [anon_sym_GT] = ACTIONS(1165), - [anon_sym_in] = ACTIONS(1165), + [anon_sym_new] = ACTIONS(1515), + [anon_sym_LT] = ACTIONS(2029), + [anon_sym_GT] = ACTIONS(2029), [anon_sym_where] = ACTIONS(29), - [anon_sym_QMARK] = ACTIONS(1165), + [anon_sym_QMARK] = ACTIONS(2029), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1253), - [anon_sym_BANG] = ACTIONS(2117), - [anon_sym_TILDE] = ACTIONS(2119), - [anon_sym_PLUS_PLUS] = ACTIONS(2119), - [anon_sym_DASH_DASH] = ACTIONS(2119), - [anon_sym_true] = ACTIONS(1259), - [anon_sym_false] = ACTIONS(1259), - [anon_sym_PLUS] = ACTIONS(2117), - [anon_sym_DASH] = ACTIONS(2117), - [anon_sym_STAR] = ACTIONS(1261), - [anon_sym_SLASH] = ACTIONS(1165), - [anon_sym_PERCENT] = ACTIONS(1151), - [anon_sym_CARET] = ACTIONS(2119), - [anon_sym_PIPE] = ACTIONS(1165), - [anon_sym_AMP] = ACTIONS(2117), - [anon_sym_LT_LT] = ACTIONS(1151), - [anon_sym_GT_GT] = ACTIONS(1165), - [anon_sym_GT_GT_GT] = ACTIONS(1151), - [anon_sym_EQ_EQ] = ACTIONS(1151), - [anon_sym_BANG_EQ] = ACTIONS(1151), - [anon_sym_GT_EQ] = ACTIONS(1151), - [anon_sym_LT_EQ] = ACTIONS(1151), - [anon_sym_this] = ACTIONS(1263), - [anon_sym_DOT] = ACTIONS(1165), + [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(2029), + [anon_sym_PERCENT] = ACTIONS(2031), + [anon_sym_CARET] = ACTIONS(75), + [anon_sym_PIPE] = ACTIONS(2029), + [anon_sym_AMP] = ACTIONS(79), + [anon_sym_LT_LT] = ACTIONS(2031), + [anon_sym_GT_GT] = ACTIONS(2029), + [anon_sym_GT_GT_GT] = ACTIONS(2031), + [anon_sym_EQ_EQ] = ACTIONS(2031), + [anon_sym_BANG_EQ] = ACTIONS(2031), + [anon_sym_GT_EQ] = ACTIONS(2031), + [anon_sym_LT_EQ] = ACTIONS(2031), + [anon_sym_this] = ACTIONS(83), + [anon_sym_DOT] = ACTIONS(2029), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1265), + [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1267), - [anon_sym_unchecked] = ACTIONS(1253), + [sym_predefined_type] = ACTIONS(91), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), - [anon_sym_switch] = ACTIONS(1165), - [anon_sym_default] = ACTIONS(1269), - [anon_sym_throw] = ACTIONS(2121), + [anon_sym_switch] = ACTIONS(2029), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(1517), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2123), - [anon_sym_DOT_DOT] = ACTIONS(2125), - [anon_sym_AMP_AMP] = ACTIONS(1151), - [anon_sym_PIPE_PIPE] = ACTIONS(1151), - [anon_sym_QMARK_QMARK] = ACTIONS(1151), + [anon_sym_await] = ACTIONS(1519), + [anon_sym_DOT_DOT] = ACTIONS(1521), + [anon_sym_AMP_AMP] = ACTIONS(2031), + [anon_sym_PIPE_PIPE] = ACTIONS(2031), + [anon_sym_QMARK_QMARK] = ACTIONS(2031), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -78598,23 +78484,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(1165), - [anon_sym_is] = ACTIONS(1165), - [anon_sym_DASH_GT] = ACTIONS(1151), - [anon_sym_stackalloc] = ACTIONS(1277), - [anon_sym_with] = ACTIONS(1165), - [anon_sym_sizeof] = ACTIONS(1279), - [anon_sym_typeof] = ACTIONS(1281), - [anon_sym___makeref] = ACTIONS(1283), - [anon_sym___reftype] = ACTIONS(1285), - [anon_sym___refvalue] = ACTIONS(1287), - [sym_null_literal] = ACTIONS(1289), - [anon_sym_SQUOTE] = ACTIONS(1291), - [sym_integer_literal] = ACTIONS(1289), - [sym_real_literal] = ACTIONS(1293), - [anon_sym_DQUOTE] = ACTIONS(1295), - [sym_verbatim_string_literal] = ACTIONS(1293), - [aux_sym_preproc_if_token1] = ACTIONS(2127), + [anon_sym_as] = ACTIONS(2029), + [anon_sym_is] = ACTIONS(2029), + [anon_sym_DASH_GT] = ACTIONS(2031), + [anon_sym_stackalloc] = ACTIONS(127), + [anon_sym_with] = ACTIONS(2029), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_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), @@ -78625,90 +78511,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1299), - [sym_interpolation_verbatim_start] = ACTIONS(1301), - [sym_interpolation_raw_start] = ACTIONS(1303), - [sym_raw_string_start] = ACTIONS(1305), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [sym_interpolation_raw_start] = ACTIONS(155), + [sym_raw_string_start] = ACTIONS(157), }, [250] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2420), - [sym__name] = STATE(5887), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2197), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(5165), - [sym_non_lvalue_expression] = STATE(3066), - [sym_lvalue_expression] = STATE(3637), - [sym__expression_statement_expression] = STATE(3006), - [sym_assignment_expression] = STATE(3020), - [sym_binary_expression] = STATE(3006), - [sym_postfix_unary_expression] = STATE(3020), - [sym_prefix_unary_expression] = STATE(3020), - [sym__pointer_indirection_expression] = STATE(2423), - [sym_query_expression] = STATE(3006), - [sym_from_clause] = STATE(6148), - [sym_conditional_expression] = STATE(3006), - [sym_conditional_access_expression] = STATE(3006), - [sym_as_expression] = STATE(3006), - [sym_is_expression] = STATE(3006), - [sym_is_pattern_expression] = STATE(3006), - [sym_cast_expression] = STATE(3006), - [sym_checked_expression] = STATE(3006), - [sym_invocation_expression] = STATE(3020), - [sym_switch_expression] = STATE(3006), - [sym_await_expression] = STATE(3020), - [sym_throw_expression] = STATE(3006), - [sym_element_access_expression] = STATE(2423), - [sym_interpolated_string_expression] = STATE(3006), - [sym_member_access_expression] = STATE(2423), - [sym_object_creation_expression] = STATE(3020), - [sym_parenthesized_expression] = STATE(3020), - [sym__parenthesized_lvalue_expression] = STATE(2423), - [sym_lambda_expression] = STATE(3006), - [sym__lambda_expression_init] = STATE(7507), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3006), - [sym_anonymous_method_expression] = STATE(3006), - [sym_anonymous_object_creation_expression] = STATE(3006), - [sym_implicit_array_creation_expression] = STATE(3006), - [sym_implicit_object_creation_expression] = STATE(3006), - [sym_implicit_stackalloc_expression] = STATE(3006), - [sym_initializer_expression] = STATE(3006), - [sym_default_expression] = STATE(3006), - [sym_with_expression] = STATE(3006), - [sym_sizeof_expression] = STATE(3006), - [sym_typeof_expression] = STATE(3006), - [sym_makeref_expression] = STATE(3006), - [sym_ref_expression] = STATE(3006), - [sym_reftype_expression] = STATE(3006), - [sym_refvalue_expression] = STATE(3006), - [sym_stackalloc_expression] = STATE(3006), - [sym_range_expression] = STATE(3006), - [sym_tuple_expression] = STATE(2423), - [sym_literal] = STATE(3006), - [sym_character_literal] = STATE(3011), - [sym_string_literal] = STATE(3011), - [sym_raw_string_literal] = STATE(3011), - [sym_boolean_literal] = STATE(3011), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3006), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2901), + [sym__name] = STATE(5883), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2359), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(3929), + [sym_non_lvalue_expression] = STATE(3685), + [sym_lvalue_expression] = STATE(3073), + [sym__expression_statement_expression] = STATE(3836), + [sym_assignment_expression] = STATE(3689), + [sym_binary_expression] = STATE(3836), + [sym_postfix_unary_expression] = STATE(3689), + [sym_prefix_unary_expression] = STATE(3689), + [sym__pointer_indirection_expression] = STATE(2906), + [sym_query_expression] = STATE(3836), + [sym_from_clause] = STATE(6157), + [sym_conditional_expression] = STATE(3836), + [sym_conditional_access_expression] = STATE(3836), + [sym_as_expression] = STATE(3836), + [sym_is_expression] = STATE(3836), + [sym_is_pattern_expression] = STATE(3836), + [sym_cast_expression] = STATE(3836), + [sym_checked_expression] = STATE(3836), + [sym_invocation_expression] = STATE(3689), + [sym_switch_expression] = STATE(3836), + [sym_await_expression] = STATE(3689), + [sym_throw_expression] = STATE(3836), + [sym_element_access_expression] = STATE(2906), + [sym_interpolated_string_expression] = STATE(3836), + [sym_member_access_expression] = STATE(2906), + [sym_object_creation_expression] = STATE(3689), + [sym_parenthesized_expression] = STATE(3689), + [sym__parenthesized_lvalue_expression] = STATE(2906), + [sym_lambda_expression] = STATE(3836), + [sym__lambda_expression_init] = STATE(7460), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3836), + [sym_anonymous_method_expression] = STATE(3836), + [sym_anonymous_object_creation_expression] = STATE(3836), + [sym_implicit_array_creation_expression] = STATE(3836), + [sym_implicit_object_creation_expression] = STATE(3836), + [sym_implicit_stackalloc_expression] = STATE(3836), + [sym_initializer_expression] = STATE(3836), + [sym_default_expression] = STATE(3836), + [sym_with_expression] = STATE(3836), + [sym_sizeof_expression] = STATE(3836), + [sym_typeof_expression] = STATE(3836), + [sym_makeref_expression] = STATE(3836), + [sym_ref_expression] = STATE(3836), + [sym_reftype_expression] = STATE(3836), + [sym_refvalue_expression] = STATE(3836), + [sym_stackalloc_expression] = STATE(3836), + [sym_range_expression] = STATE(3836), + [sym_tuple_expression] = STATE(2906), + [sym_literal] = STATE(3836), + [sym_character_literal] = STATE(3843), + [sym_string_literal] = STATE(3843), + [sym_raw_string_literal] = STATE(3843), + [sym_boolean_literal] = STATE(3843), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3836), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(250), [sym_preproc_endregion] = STATE(250), [sym_preproc_line] = STATE(250), @@ -78718,66 +78604,66 @@ 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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3440), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3477), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1241), - [anon_sym_LPAREN] = ACTIONS(2113), - [anon_sym_ref] = ACTIONS(2115), - [anon_sym_LBRACE] = ACTIONS(1247), - [anon_sym_delegate] = ACTIONS(1249), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1655), + [anon_sym_COMMA] = ACTIONS(1147), + [anon_sym_LPAREN] = ACTIONS(2061), + [anon_sym_ref] = ACTIONS(2063), + [anon_sym_LBRACE] = ACTIONS(1661), + [anon_sym_delegate] = ACTIONS(1663), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1251), - [anon_sym_LT] = ACTIONS(1223), - [anon_sym_GT] = ACTIONS(1223), - [anon_sym_in] = ACTIONS(1223), + [anon_sym_new] = ACTIONS(1665), + [anon_sym_LT] = ACTIONS(1161), + [anon_sym_GT] = ACTIONS(1161), [anon_sym_where] = ACTIONS(29), - [anon_sym_QMARK] = ACTIONS(1223), + [anon_sym_QMARK] = ACTIONS(1161), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1253), - [anon_sym_BANG] = ACTIONS(2117), - [anon_sym_TILDE] = ACTIONS(2119), - [anon_sym_PLUS_PLUS] = ACTIONS(2119), - [anon_sym_DASH_DASH] = ACTIONS(2119), - [anon_sym_true] = ACTIONS(1259), - [anon_sym_false] = ACTIONS(1259), - [anon_sym_PLUS] = ACTIONS(2117), - [anon_sym_DASH] = ACTIONS(2117), - [anon_sym_STAR] = ACTIONS(1261), - [anon_sym_SLASH] = ACTIONS(1223), - [anon_sym_PERCENT] = ACTIONS(1221), - [anon_sym_CARET] = ACTIONS(2119), - [anon_sym_PIPE] = ACTIONS(1223), - [anon_sym_AMP] = ACTIONS(2117), - [anon_sym_LT_LT] = ACTIONS(1221), - [anon_sym_GT_GT] = ACTIONS(1223), - [anon_sym_GT_GT_GT] = ACTIONS(1221), - [anon_sym_EQ_EQ] = ACTIONS(1221), - [anon_sym_BANG_EQ] = ACTIONS(1221), - [anon_sym_GT_EQ] = ACTIONS(1221), - [anon_sym_LT_EQ] = ACTIONS(1221), - [anon_sym_this] = ACTIONS(1263), - [anon_sym_DOT] = ACTIONS(1223), + [anon_sym_checked] = ACTIONS(1667), + [anon_sym_BANG] = ACTIONS(2065), + [anon_sym_TILDE] = ACTIONS(2067), + [anon_sym_PLUS_PLUS] = ACTIONS(2067), + [anon_sym_DASH_DASH] = ACTIONS(2067), + [anon_sym_true] = ACTIONS(1673), + [anon_sym_false] = ACTIONS(1673), + [anon_sym_PLUS] = ACTIONS(2065), + [anon_sym_DASH] = ACTIONS(2065), + [anon_sym_STAR] = ACTIONS(1675), + [anon_sym_SLASH] = ACTIONS(1161), + [anon_sym_PERCENT] = ACTIONS(1147), + [anon_sym_CARET] = ACTIONS(2067), + [anon_sym_PIPE] = ACTIONS(1161), + [anon_sym_AMP] = ACTIONS(2065), + [anon_sym_LT_LT] = ACTIONS(1147), + [anon_sym_GT_GT] = ACTIONS(1161), + [anon_sym_GT_GT_GT] = ACTIONS(1147), + [anon_sym_EQ_EQ] = ACTIONS(1147), + [anon_sym_BANG_EQ] = ACTIONS(1147), + [anon_sym_GT_EQ] = ACTIONS(1147), + [anon_sym_LT_EQ] = ACTIONS(1147), + [anon_sym_this] = ACTIONS(1677), + [anon_sym_DOT] = ACTIONS(1161), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1265), + [anon_sym_base] = ACTIONS(1679), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1267), - [anon_sym_unchecked] = ACTIONS(1253), + [sym_predefined_type] = ACTIONS(1681), + [anon_sym_unchecked] = ACTIONS(1667), [anon_sym_yield] = ACTIONS(29), - [anon_sym_switch] = ACTIONS(1223), - [anon_sym_default] = ACTIONS(1269), - [anon_sym_throw] = ACTIONS(2121), + [anon_sym_switch] = ACTIONS(1161), + [anon_sym_default] = ACTIONS(1683), + [anon_sym_throw] = ACTIONS(2069), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2123), - [anon_sym_DOT_DOT] = ACTIONS(2125), - [anon_sym_AMP_AMP] = ACTIONS(1221), - [anon_sym_PIPE_PIPE] = ACTIONS(1221), - [anon_sym_QMARK_QMARK] = ACTIONS(1221), + [anon_sym_await] = ACTIONS(2071), + [anon_sym_DOT_DOT] = ACTIONS(2073), + [anon_sym_AMP_AMP] = ACTIONS(1147), + [anon_sym_PIPE_PIPE] = ACTIONS(1147), + [anon_sym_QMARK_QMARK] = ACTIONS(1147), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -78790,23 +78676,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(1223), - [anon_sym_is] = ACTIONS(1223), - [anon_sym_DASH_GT] = ACTIONS(1221), - [anon_sym_stackalloc] = ACTIONS(1277), - [anon_sym_with] = ACTIONS(1223), - [anon_sym_sizeof] = ACTIONS(1279), - [anon_sym_typeof] = ACTIONS(1281), - [anon_sym___makeref] = ACTIONS(1283), - [anon_sym___reftype] = ACTIONS(1285), - [anon_sym___refvalue] = ACTIONS(1287), - [sym_null_literal] = ACTIONS(1289), - [anon_sym_SQUOTE] = ACTIONS(1291), - [sym_integer_literal] = ACTIONS(1289), - [sym_real_literal] = ACTIONS(1293), - [anon_sym_DQUOTE] = ACTIONS(1295), - [sym_verbatim_string_literal] = ACTIONS(1293), - [aux_sym_preproc_if_token1] = ACTIONS(2127), + [anon_sym_as] = ACTIONS(1161), + [anon_sym_is] = ACTIONS(1161), + [anon_sym_DASH_GT] = ACTIONS(1147), + [anon_sym_stackalloc] = ACTIONS(1691), + [anon_sym_with] = ACTIONS(1161), + [anon_sym_sizeof] = ACTIONS(1693), + [anon_sym_typeof] = ACTIONS(1695), + [anon_sym___makeref] = ACTIONS(1697), + [anon_sym___reftype] = ACTIONS(1699), + [anon_sym___refvalue] = ACTIONS(1701), + [sym_null_literal] = ACTIONS(1703), + [anon_sym_SQUOTE] = ACTIONS(1705), + [sym_integer_literal] = ACTIONS(1703), + [sym_real_literal] = ACTIONS(1707), + [anon_sym_DQUOTE] = ACTIONS(1709), + [sym_verbatim_string_literal] = ACTIONS(1707), + [aux_sym_preproc_if_token1] = ACTIONS(1711), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -78817,105 +78703,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1299), - [sym_interpolation_verbatim_start] = ACTIONS(1301), - [sym_interpolation_raw_start] = ACTIONS(1303), - [sym_raw_string_start] = ACTIONS(1305), + [sym_interpolation_regular_start] = ACTIONS(1713), + [sym_interpolation_verbatim_start] = ACTIONS(1715), + [sym_interpolation_raw_start] = ACTIONS(1717), + [sym_raw_string_start] = ACTIONS(1719), }, [251] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(5723), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2284), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5162), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_pattern] = STATE(6590), - [sym_constant_pattern] = STATE(3486), - [sym_parenthesized_pattern] = STATE(3486), - [sym_var_pattern] = STATE(3486), - [sym_type_pattern] = STATE(3486), - [sym_list_pattern] = STATE(3486), - [sym_recursive_pattern] = STATE(3486), - [sym_positional_pattern_clause] = STATE(5670), - [sym_property_pattern_clause] = STATE(5735), - [sym_relational_pattern] = STATE(3486), - [sym_negated_pattern] = STATE(3486), - [sym_and_pattern] = STATE(3486), - [sym_or_pattern] = STATE(3486), - [sym_declaration_pattern] = STATE(3486), - [sym_expression] = STATE(5668), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3520), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(4216), - [sym_postfix_unary_expression] = STATE(4219), - [sym_prefix_unary_expression] = STATE(4219), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6154), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(4216), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(4219), - [sym_switch_expression] = STATE(3080), - [sym_switch_expression_arm] = STATE(6872), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(4216), - [sym_member_access_expression] = STATE(3121), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(4219), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7530), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(4216), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(4216), - [sym_typeof_expression] = STATE(4216), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(3121), - [sym_literal] = STATE(4216), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2267), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(5152), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2196), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(3523), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3356), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3102), + [sym_postfix_unary_expression] = STATE(3079), + [sym_prefix_unary_expression] = STATE(3079), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6134), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3102), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3079), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3102), + [sym_member_access_expression] = STATE(2472), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3079), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7627), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(3102), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3102), + [sym_typeof_expression] = STATE(3102), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2472), + [sym_literal] = STATE(3102), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(251), [sym_preproc_endregion] = STATE(251), [sym_preproc_line] = STATE(251), @@ -78925,55 +78796,261 @@ 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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), + [anon_sym_SEMI] = ACTIONS(2127), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1049), - [anon_sym_COMMA] = ACTIONS(2129), - [anon_sym_LPAREN] = ACTIONS(1985), - [anon_sym_ref] = ACTIONS(1987), - [anon_sym_LBRACE] = ACTIONS(1059), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1479), + [anon_sym_LPAREN] = ACTIONS(1511), + [anon_sym_ref] = ACTIONS(1513), + [anon_sym_LBRACE] = ACTIONS(1481), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), + [anon_sym_file] = ACTIONS(29), + [anon_sym_new] = ACTIONS(1515), + [anon_sym_LT] = ACTIONS(2129), + [anon_sym_GT] = ACTIONS(2129), + [anon_sym_where] = ACTIONS(29), + [anon_sym_QMARK] = ACTIONS(2129), + [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(2129), + [anon_sym_PERCENT] = ACTIONS(2127), + [anon_sym_CARET] = ACTIONS(75), + [anon_sym_PIPE] = ACTIONS(2129), + [anon_sym_AMP] = ACTIONS(79), + [anon_sym_LT_LT] = ACTIONS(2127), + [anon_sym_GT_GT] = ACTIONS(2129), + [anon_sym_GT_GT_GT] = ACTIONS(2127), + [anon_sym_EQ_EQ] = ACTIONS(2127), + [anon_sym_BANG_EQ] = ACTIONS(2127), + [anon_sym_GT_EQ] = ACTIONS(2127), + [anon_sym_LT_EQ] = ACTIONS(2127), + [anon_sym_this] = ACTIONS(83), + [anon_sym_DOT] = ACTIONS(2129), + [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(2129), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(1517), + [anon_sym_when] = ACTIONS(29), + [anon_sym_await] = ACTIONS(1519), + [anon_sym_DOT_DOT] = ACTIONS(1521), + [anon_sym_AMP_AMP] = ACTIONS(2127), + [anon_sym_PIPE_PIPE] = ACTIONS(2127), + [anon_sym_QMARK_QMARK] = ACTIONS(2127), + [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(2129), + [anon_sym_is] = ACTIONS(2129), + [anon_sym_DASH_GT] = ACTIONS(2127), + [anon_sym_stackalloc] = ACTIONS(127), + [anon_sym_with] = ACTIONS(2129), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_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), + }, + [252] = { + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(5706), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2270), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5197), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_pattern] = STATE(6511), + [sym_constant_pattern] = STATE(3429), + [sym_parenthesized_pattern] = STATE(3429), + [sym_var_pattern] = STATE(3429), + [sym_type_pattern] = STATE(3429), + [sym_list_pattern] = STATE(3429), + [sym_recursive_pattern] = STATE(3429), + [sym_positional_pattern_clause] = STATE(5689), + [sym_property_pattern_clause] = STATE(5723), + [sym_relational_pattern] = STATE(3429), + [sym_negated_pattern] = STATE(3429), + [sym_and_pattern] = STATE(3429), + [sym_or_pattern] = STATE(3429), + [sym_declaration_pattern] = STATE(3429), + [sym_expression] = STATE(5654), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3510), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(4202), + [sym_postfix_unary_expression] = STATE(4203), + [sym_prefix_unary_expression] = STATE(4203), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6134), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(4202), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(4203), + [sym_switch_expression] = STATE(3102), + [sym_switch_expression_arm] = STATE(7113), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(4202), + [sym_member_access_expression] = STATE(3112), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(4203), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7425), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(4202), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(4202), + [sym_typeof_expression] = STATE(4202), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(3112), + [sym_literal] = STATE(4202), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2261), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), + [sym_preproc_region] = STATE(252), + [sym_preproc_endregion] = STATE(252), + [sym_preproc_line] = STATE(252), + [sym_preproc_pragma] = STATE(252), + [sym_preproc_nullable] = STATE(252), + [sym_preproc_error] = STATE(252), + [sym_preproc_warning] = STATE(252), + [sym_preproc_define] = STATE(252), + [sym_preproc_undef] = STATE(252), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), + [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(1989), + [anon_sym_ref] = ACTIONS(1991), + [anon_sym_LBRACE] = ACTIONS(1057), [anon_sym_RBRACE] = ACTIONS(2131), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1061), - [anon_sym_LT] = ACTIONS(1991), - [anon_sym_GT] = ACTIONS(1991), + [anon_sym_new] = ACTIONS(1059), + [anon_sym_LT] = ACTIONS(1995), + [anon_sym_GT] = ACTIONS(1995), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1067), - [anon_sym_BANG] = ACTIONS(1617), - [anon_sym_TILDE] = ACTIONS(1617), - [anon_sym_PLUS_PLUS] = ACTIONS(1617), - [anon_sym_DASH_DASH] = ACTIONS(1617), + [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(1615), - [anon_sym_DASH] = ACTIONS(1615), + [anon_sym_PLUS] = ACTIONS(1585), + [anon_sym_DASH] = ACTIONS(1585), [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(1617), - [anon_sym_AMP] = ACTIONS(1617), - [anon_sym_GT_EQ] = ACTIONS(1993), - [anon_sym_LT_EQ] = ACTIONS(1993), + [anon_sym_CARET] = ACTIONS(1587), + [anon_sym_AMP] = ACTIONS(1587), + [anon_sym_GT_EQ] = ACTIONS(1997), + [anon_sym_LT_EQ] = ACTIONS(1997), [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(1075), + [anon_sym_scoped] = ACTIONS(1073), [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(1995), + [anon_sym_var] = ACTIONS(1999), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1067), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1589), + [anon_sym_throw] = ACTIONS(1527), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1591), - [sym_discard] = ACTIONS(1083), + [anon_sym_await] = ACTIONS(1529), + [sym_discard] = ACTIONS(1081), [anon_sym_DOT_DOT] = ACTIONS(123), - [anon_sym_not] = ACTIONS(1997), + [anon_sym_not] = ACTIONS(2001), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -78998,198 +79075,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(1089), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(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), - }, - [252] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(5634), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2230), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(4363), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_pattern] = STATE(6717), - [sym_constant_pattern] = STATE(3486), - [sym_parenthesized_pattern] = STATE(3486), - [sym_var_pattern] = STATE(3486), - [sym_type_pattern] = STATE(3486), - [sym_list_pattern] = STATE(3486), - [sym_recursive_pattern] = STATE(3486), - [sym_positional_pattern_clause] = STATE(5175), - [sym_property_pattern_clause] = STATE(5675), - [sym_subpattern] = STATE(6964), - [sym_relational_pattern] = STATE(3486), - [sym_negated_pattern] = STATE(3486), - [sym_and_pattern] = STATE(3486), - [sym_or_pattern] = STATE(3486), - [sym_declaration_pattern] = STATE(3486), - [sym_expression] = STATE(5385), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3664), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(4419), - [sym_postfix_unary_expression] = STATE(4420), - [sym_prefix_unary_expression] = STATE(4420), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6161), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(4419), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(4420), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(4419), - [sym_member_access_expression] = STATE(3135), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(4420), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7773), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(4419), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(4419), - [sym_typeof_expression] = STATE(4419), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(3135), - [sym_literal] = STATE(4419), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), - [sym_preproc_region] = STATE(252), - [sym_preproc_endregion] = STATE(252), - [sym_preproc_line] = STATE(252), - [sym_preproc_pragma] = STATE(252), - [sym_preproc_nullable] = STATE(252), - [sym_preproc_error] = STATE(252), - [sym_preproc_warning] = STATE(252), - [sym_preproc_define] = STATE(252), - [sym_preproc_undef] = STATE(252), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), - [sym__identifier_token] = ACTIONS(25), - [anon_sym_alias] = ACTIONS(29), - [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1049), - [anon_sym_LPAREN] = ACTIONS(1143), - [anon_sym_ref] = ACTIONS(2075), - [anon_sym_LBRACE] = ACTIONS(1059), - [anon_sym_RBRACE] = ACTIONS(2133), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), - [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1101), - [anon_sym_LT] = ACTIONS(1063), - [anon_sym_GT] = ACTIONS(1063), - [anon_sym_where] = ACTIONS(29), - [anon_sym_notnull] = ACTIONS(29), - [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1067), - [anon_sym_BANG] = ACTIONS(1107), - [anon_sym_TILDE] = ACTIONS(1107), - [anon_sym_PLUS_PLUS] = ACTIONS(1107), - [anon_sym_DASH_DASH] = ACTIONS(1107), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1109), - [anon_sym_DASH] = ACTIONS(1109), - [anon_sym_STAR] = ACTIONS(1229), - [anon_sym_CARET] = ACTIONS(1107), - [anon_sym_AMP] = ACTIONS(1107), - [anon_sym_GT_EQ] = ACTIONS(1073), - [anon_sym_LT_EQ] = ACTIONS(1073), - [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(1075), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(1077), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1067), - [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1233), - [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1235), - [sym_discard] = ACTIONS(1083), - [anon_sym_DOT_DOT] = ACTIONS(1237), - [anon_sym_not] = ACTIONS(1087), - [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(1089), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -79206,99 +79092,99 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [253] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(5723), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2284), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5162), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_pattern] = STATE(6590), - [sym_constant_pattern] = STATE(3486), - [sym_parenthesized_pattern] = STATE(3486), - [sym_var_pattern] = STATE(3486), - [sym_type_pattern] = STATE(3486), - [sym_list_pattern] = STATE(3486), - [sym_recursive_pattern] = STATE(3486), - [sym_positional_pattern_clause] = STATE(5670), - [sym_property_pattern_clause] = STATE(5735), - [sym_relational_pattern] = STATE(3486), - [sym_negated_pattern] = STATE(3486), - [sym_and_pattern] = STATE(3486), - [sym_or_pattern] = STATE(3486), - [sym_declaration_pattern] = STATE(3486), - [sym_expression] = STATE(5668), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3520), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(4216), - [sym_postfix_unary_expression] = STATE(4219), - [sym_prefix_unary_expression] = STATE(4219), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6154), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(4216), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(4219), - [sym_switch_expression] = STATE(3080), - [sym_switch_expression_arm] = STATE(7123), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(4216), - [sym_member_access_expression] = STATE(3121), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(4219), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7530), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(4216), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(4216), - [sym_typeof_expression] = STATE(4216), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(3121), - [sym_literal] = STATE(4216), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2267), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(5528), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2225), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(4472), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_pattern] = STATE(6702), + [sym_constant_pattern] = STATE(3429), + [sym_parenthesized_pattern] = STATE(3429), + [sym_var_pattern] = STATE(3429), + [sym_type_pattern] = STATE(3429), + [sym_list_pattern] = STATE(3429), + [sym_recursive_pattern] = STATE(3429), + [sym_positional_pattern_clause] = STATE(5135), + [sym_property_pattern_clause] = STATE(5666), + [sym_subpattern] = STATE(6780), + [sym_relational_pattern] = STATE(3429), + [sym_negated_pattern] = STATE(3429), + [sym_and_pattern] = STATE(3429), + [sym_or_pattern] = STATE(3429), + [sym_declaration_pattern] = STATE(3429), + [sym_expression] = STATE(5405), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3660), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(4418), + [sym_postfix_unary_expression] = STATE(4403), + [sym_prefix_unary_expression] = STATE(4403), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6163), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(4418), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(4403), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(4418), + [sym_member_access_expression] = STATE(3127), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(4403), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7633), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(4418), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(4418), + [sym_typeof_expression] = STATE(4418), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(3127), + [sym_literal] = STATE(4418), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(253), [sym_preproc_endregion] = STATE(253), [sym_preproc_line] = STATE(253), @@ -79308,54 +79194,54 @@ 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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1049), - [anon_sym_LPAREN] = ACTIONS(1985), - [anon_sym_ref] = ACTIONS(1987), - [anon_sym_LBRACE] = ACTIONS(1059), - [anon_sym_RBRACE] = ACTIONS(2135), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_LPAREN] = ACTIONS(1141), + [anon_sym_ref] = ACTIONS(2005), + [anon_sym_LBRACE] = ACTIONS(1057), + [anon_sym_RBRACE] = ACTIONS(2133), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1061), - [anon_sym_LT] = ACTIONS(1991), - [anon_sym_GT] = ACTIONS(1991), + [anon_sym_new] = ACTIONS(1095), + [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(1067), - [anon_sym_BANG] = ACTIONS(1617), - [anon_sym_TILDE] = ACTIONS(1617), - [anon_sym_PLUS_PLUS] = ACTIONS(1617), - [anon_sym_DASH_DASH] = ACTIONS(1617), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(1101), + [anon_sym_TILDE] = ACTIONS(1101), + [anon_sym_PLUS_PLUS] = ACTIONS(1101), + [anon_sym_DASH_DASH] = ACTIONS(1101), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1615), - [anon_sym_DASH] = ACTIONS(1615), - [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(1617), - [anon_sym_AMP] = ACTIONS(1617), - [anon_sym_GT_EQ] = ACTIONS(1993), - [anon_sym_LT_EQ] = ACTIONS(1993), + [anon_sym_PLUS] = ACTIONS(1103), + [anon_sym_DASH] = ACTIONS(1103), + [anon_sym_STAR] = ACTIONS(1227), + [anon_sym_CARET] = ACTIONS(1101), + [anon_sym_AMP] = ACTIONS(1101), + [anon_sym_GT_EQ] = ACTIONS(1071), + [anon_sym_LT_EQ] = ACTIONS(1071), [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(1075), + [anon_sym_scoped] = ACTIONS(1073), [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(1995), + [anon_sym_var] = ACTIONS(1075), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1067), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1589), + [anon_sym_throw] = ACTIONS(1231), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1591), - [sym_discard] = ACTIONS(1083), - [anon_sym_DOT_DOT] = ACTIONS(123), - [anon_sym_not] = ACTIONS(1997), + [anon_sym_await] = ACTIONS(1233), + [sym_discard] = ACTIONS(1081), + [anon_sym_DOT_DOT] = ACTIONS(1235), + [anon_sym_not] = ACTIONS(1085), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -79380,7 +79266,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(1089), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -79397,99 +79283,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [254] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(5723), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2284), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5162), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_pattern] = STATE(6590), - [sym_constant_pattern] = STATE(3486), - [sym_parenthesized_pattern] = STATE(3486), - [sym_var_pattern] = STATE(3486), - [sym_type_pattern] = STATE(3486), - [sym_list_pattern] = STATE(3486), - [sym_recursive_pattern] = STATE(3486), - [sym_positional_pattern_clause] = STATE(5670), - [sym_property_pattern_clause] = STATE(5735), - [sym_relational_pattern] = STATE(3486), - [sym_negated_pattern] = STATE(3486), - [sym_and_pattern] = STATE(3486), - [sym_or_pattern] = STATE(3486), - [sym_declaration_pattern] = STATE(3486), - [sym_expression] = STATE(5668), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3520), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(4216), - [sym_postfix_unary_expression] = STATE(4219), - [sym_prefix_unary_expression] = STATE(4219), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6154), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(4216), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(4219), - [sym_switch_expression] = STATE(3080), - [sym_switch_expression_arm] = STATE(7123), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(4216), - [sym_member_access_expression] = STATE(3121), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(4219), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7530), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(4216), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(4216), - [sym_typeof_expression] = STATE(4216), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(3121), - [sym_literal] = STATE(4216), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2267), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(5896), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2362), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(5472), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3661), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3102), + [sym_postfix_unary_expression] = STATE(3079), + [sym_prefix_unary_expression] = STATE(3079), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6129), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3102), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3079), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3102), + [sym_member_access_expression] = STATE(2472), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3079), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7367), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(3102), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3102), + [sym_typeof_expression] = STATE(3102), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2472), + [sym_literal] = STATE(3102), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(254), [sym_preproc_endregion] = STATE(254), [sym_preproc_line] = STATE(254), @@ -79499,54 +79370,65 @@ 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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), - [sym__identifier_token] = ACTIONS(25), - [anon_sym_alias] = ACTIONS(29), - [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1049), - [anon_sym_LPAREN] = ACTIONS(1985), - [anon_sym_ref] = ACTIONS(1987), - [anon_sym_LBRACE] = ACTIONS(1059), - [anon_sym_RBRACE] = ACTIONS(2137), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), - [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1061), - [anon_sym_LT] = ACTIONS(1991), - [anon_sym_GT] = ACTIONS(1991), - [anon_sym_where] = ACTIONS(29), - [anon_sym_notnull] = ACTIONS(29), - [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1067), - [anon_sym_BANG] = ACTIONS(1617), - [anon_sym_TILDE] = ACTIONS(1617), - [anon_sym_PLUS_PLUS] = ACTIONS(1617), - [anon_sym_DASH_DASH] = ACTIONS(1617), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1615), - [anon_sym_DASH] = ACTIONS(1615), - [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(1617), - [anon_sym_AMP] = ACTIONS(1617), - [anon_sym_GT_EQ] = ACTIONS(1993), - [anon_sym_LT_EQ] = ACTIONS(1993), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), + [sym__identifier_token] = ACTIONS(25), + [anon_sym_alias] = ACTIONS(29), + [anon_sym_global] = ACTIONS(29), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1479), + [anon_sym_LPAREN] = ACTIONS(2135), + [anon_sym_ref] = ACTIONS(2137), + [anon_sym_LBRACE] = ACTIONS(1481), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), + [anon_sym_file] = ACTIONS(29), + [anon_sym_new] = ACTIONS(2139), + [anon_sym_LT] = ACTIONS(1161), + [anon_sym_GT] = ACTIONS(1161), + [anon_sym_where] = ACTIONS(29), + [anon_sym_QMARK] = ACTIONS(1161), + [anon_sym_notnull] = ACTIONS(29), + [anon_sym_unmanaged] = ACTIONS(29), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(2141), + [anon_sym_TILDE] = ACTIONS(2143), + [anon_sym_PLUS_PLUS] = ACTIONS(2143), + [anon_sym_DASH_DASH] = ACTIONS(2143), + [anon_sym_true] = ACTIONS(77), + [anon_sym_false] = ACTIONS(77), + [anon_sym_PLUS] = ACTIONS(2141), + [anon_sym_DASH] = ACTIONS(2141), + [anon_sym_STAR] = ACTIONS(2145), + [anon_sym_SLASH] = ACTIONS(1161), + [anon_sym_PERCENT] = ACTIONS(1147), + [anon_sym_CARET] = ACTIONS(2143), + [anon_sym_PIPE] = ACTIONS(1161), + [anon_sym_AMP] = ACTIONS(2141), + [anon_sym_LT_LT] = ACTIONS(1147), + [anon_sym_GT_GT] = ACTIONS(1161), + [anon_sym_GT_GT_GT] = ACTIONS(1147), + [anon_sym_EQ_EQ] = ACTIONS(1147), + [anon_sym_BANG_EQ] = ACTIONS(1147), + [anon_sym_GT_EQ] = ACTIONS(1147), + [anon_sym_LT_EQ] = ACTIONS(1147), [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(1075), + [anon_sym_DOT] = ACTIONS(1161), + [anon_sym_scoped] = ACTIONS(85), [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(1995), + [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1067), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), + [anon_sym_switch] = ACTIONS(1161), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1589), + [anon_sym_throw] = ACTIONS(2147), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1591), - [sym_discard] = ACTIONS(1083), - [anon_sym_DOT_DOT] = ACTIONS(123), - [anon_sym_not] = ACTIONS(1997), + [anon_sym_await] = ACTIONS(2149), + [anon_sym_DOT_DOT] = ACTIONS(2151), + [anon_sym_AMP_AMP] = ACTIONS(1147), + [anon_sym_PIPE_PIPE] = ACTIONS(1147), + [anon_sym_QMARK_QMARK] = ACTIONS(1147), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -79559,7 +79441,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(1161), + [anon_sym_is] = ACTIONS(1161), + [anon_sym_DASH_GT] = ACTIONS(1147), [anon_sym_stackalloc] = ACTIONS(127), + [anon_sym_with] = ACTIONS(1161), [anon_sym_sizeof] = ACTIONS(129), [anon_sym_typeof] = ACTIONS(131), [anon_sym___makeref] = ACTIONS(133), @@ -79571,7 +79457,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(1089), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -79588,99 +79474,99 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [255] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(5723), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2284), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5162), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_pattern] = STATE(6590), - [sym_constant_pattern] = STATE(3486), - [sym_parenthesized_pattern] = STATE(3486), - [sym_var_pattern] = STATE(3486), - [sym_type_pattern] = STATE(3486), - [sym_list_pattern] = STATE(3486), - [sym_recursive_pattern] = STATE(3486), - [sym_positional_pattern_clause] = STATE(5670), - [sym_property_pattern_clause] = STATE(5735), - [sym_relational_pattern] = STATE(3486), - [sym_negated_pattern] = STATE(3486), - [sym_and_pattern] = STATE(3486), - [sym_or_pattern] = STATE(3486), - [sym_declaration_pattern] = STATE(3486), - [sym_expression] = STATE(5668), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3520), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(4216), - [sym_postfix_unary_expression] = STATE(4219), - [sym_prefix_unary_expression] = STATE(4219), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6154), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(4216), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(4219), - [sym_switch_expression] = STATE(3080), - [sym_switch_expression_arm] = STATE(7123), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(4216), - [sym_member_access_expression] = STATE(3121), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(4219), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7530), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(4216), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(4216), - [sym_typeof_expression] = STATE(4216), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(3121), - [sym_literal] = STATE(4216), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2267), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(5706), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2270), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5197), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_pattern] = STATE(6511), + [sym_constant_pattern] = STATE(3429), + [sym_parenthesized_pattern] = STATE(3429), + [sym_var_pattern] = STATE(3429), + [sym_type_pattern] = STATE(3429), + [sym_list_pattern] = STATE(3429), + [sym_recursive_pattern] = STATE(3429), + [sym_positional_pattern_clause] = STATE(5689), + [sym_property_pattern_clause] = STATE(5723), + [sym_relational_pattern] = STATE(3429), + [sym_negated_pattern] = STATE(3429), + [sym_and_pattern] = STATE(3429), + [sym_or_pattern] = STATE(3429), + [sym_declaration_pattern] = STATE(3429), + [sym_expression] = STATE(5654), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3510), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(4202), + [sym_postfix_unary_expression] = STATE(4203), + [sym_prefix_unary_expression] = STATE(4203), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6134), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(4202), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(4203), + [sym_switch_expression] = STATE(3102), + [sym_switch_expression_arm] = STATE(7113), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(4202), + [sym_member_access_expression] = STATE(3112), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(4203), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7425), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(4202), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(4202), + [sym_typeof_expression] = STATE(4202), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(3112), + [sym_literal] = STATE(4202), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2261), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(255), [sym_preproc_endregion] = STATE(255), [sym_preproc_line] = STATE(255), @@ -79690,54 +79576,54 @@ 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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1049), - [anon_sym_LPAREN] = ACTIONS(1985), - [anon_sym_ref] = ACTIONS(1987), - [anon_sym_LBRACE] = ACTIONS(1059), - [anon_sym_RBRACE] = ACTIONS(2139), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_LPAREN] = ACTIONS(1989), + [anon_sym_ref] = ACTIONS(1991), + [anon_sym_LBRACE] = ACTIONS(1057), + [anon_sym_RBRACE] = ACTIONS(2153), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1061), - [anon_sym_LT] = ACTIONS(1991), - [anon_sym_GT] = ACTIONS(1991), + [anon_sym_new] = ACTIONS(1059), + [anon_sym_LT] = ACTIONS(1995), + [anon_sym_GT] = ACTIONS(1995), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1067), - [anon_sym_BANG] = ACTIONS(1617), - [anon_sym_TILDE] = ACTIONS(1617), - [anon_sym_PLUS_PLUS] = ACTIONS(1617), - [anon_sym_DASH_DASH] = ACTIONS(1617), + [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(1615), - [anon_sym_DASH] = ACTIONS(1615), + [anon_sym_PLUS] = ACTIONS(1585), + [anon_sym_DASH] = ACTIONS(1585), [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(1617), - [anon_sym_AMP] = ACTIONS(1617), - [anon_sym_GT_EQ] = ACTIONS(1993), - [anon_sym_LT_EQ] = ACTIONS(1993), + [anon_sym_CARET] = ACTIONS(1587), + [anon_sym_AMP] = ACTIONS(1587), + [anon_sym_GT_EQ] = ACTIONS(1997), + [anon_sym_LT_EQ] = ACTIONS(1997), [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(1075), + [anon_sym_scoped] = ACTIONS(1073), [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(1995), + [anon_sym_var] = ACTIONS(1999), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1067), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1589), + [anon_sym_throw] = ACTIONS(1527), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1591), - [sym_discard] = ACTIONS(1083), + [anon_sym_await] = ACTIONS(1529), + [sym_discard] = ACTIONS(1081), [anon_sym_DOT_DOT] = ACTIONS(123), - [anon_sym_not] = ACTIONS(1997), + [anon_sym_not] = ACTIONS(2001), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -79762,7 +79648,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(1089), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -79779,84 +79665,99 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [256] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2420), - [sym__name] = STATE(5904), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2395), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(5217), - [sym_non_lvalue_expression] = STATE(3066), - [sym_lvalue_expression] = STATE(3557), - [sym__expression_statement_expression] = STATE(3006), - [sym_assignment_expression] = STATE(3020), - [sym_binary_expression] = STATE(3006), - [sym_postfix_unary_expression] = STATE(3020), - [sym_prefix_unary_expression] = STATE(3020), - [sym__pointer_indirection_expression] = STATE(2423), - [sym_query_expression] = STATE(3006), - [sym_from_clause] = STATE(6176), - [sym_conditional_expression] = STATE(3006), - [sym_conditional_access_expression] = STATE(3006), - [sym_as_expression] = STATE(3006), - [sym_is_expression] = STATE(3006), - [sym_is_pattern_expression] = STATE(3006), - [sym_cast_expression] = STATE(3006), - [sym_checked_expression] = STATE(3006), - [sym_invocation_expression] = STATE(3020), - [sym_switch_expression] = STATE(3006), - [sym_await_expression] = STATE(3020), - [sym_throw_expression] = STATE(3006), - [sym_element_access_expression] = STATE(2423), - [sym_interpolated_string_expression] = STATE(3006), - [sym_member_access_expression] = STATE(2423), - [sym_object_creation_expression] = STATE(3020), - [sym_parenthesized_expression] = STATE(3020), - [sym__parenthesized_lvalue_expression] = STATE(2423), - [sym_lambda_expression] = STATE(3006), - [sym__lambda_expression_init] = STATE(7473), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3006), - [sym_anonymous_method_expression] = STATE(3006), - [sym_anonymous_object_creation_expression] = STATE(3006), - [sym_implicit_array_creation_expression] = STATE(3006), - [sym_implicit_object_creation_expression] = STATE(3006), - [sym_implicit_stackalloc_expression] = STATE(3006), - [sym_initializer_expression] = STATE(3006), - [sym_default_expression] = STATE(3006), - [sym_with_expression] = STATE(3006), - [sym_sizeof_expression] = STATE(3006), - [sym_typeof_expression] = STATE(3006), - [sym_makeref_expression] = STATE(3006), - [sym_ref_expression] = STATE(3006), - [sym_reftype_expression] = STATE(3006), - [sym_refvalue_expression] = STATE(3006), - [sym_stackalloc_expression] = STATE(3006), - [sym_range_expression] = STATE(3006), - [sym_tuple_expression] = STATE(2423), - [sym_literal] = STATE(3006), - [sym_character_literal] = STATE(3011), - [sym_string_literal] = STATE(3011), - [sym_raw_string_literal] = STATE(3011), - [sym_boolean_literal] = STATE(3011), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3006), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(5706), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2270), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5197), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_pattern] = STATE(6511), + [sym_constant_pattern] = STATE(3429), + [sym_parenthesized_pattern] = STATE(3429), + [sym_var_pattern] = STATE(3429), + [sym_type_pattern] = STATE(3429), + [sym_list_pattern] = STATE(3429), + [sym_recursive_pattern] = STATE(3429), + [sym_positional_pattern_clause] = STATE(5689), + [sym_property_pattern_clause] = STATE(5723), + [sym_relational_pattern] = STATE(3429), + [sym_negated_pattern] = STATE(3429), + [sym_and_pattern] = STATE(3429), + [sym_or_pattern] = STATE(3429), + [sym_declaration_pattern] = STATE(3429), + [sym_expression] = STATE(5654), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3510), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(4202), + [sym_postfix_unary_expression] = STATE(4203), + [sym_prefix_unary_expression] = STATE(4203), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6134), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(4202), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(4203), + [sym_switch_expression] = STATE(3102), + [sym_switch_expression_arm] = STATE(7113), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(4202), + [sym_member_access_expression] = STATE(3112), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(4203), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7425), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(4202), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(4202), + [sym_typeof_expression] = STATE(4202), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(3112), + [sym_literal] = STATE(4202), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2261), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(256), [sym_preproc_endregion] = STATE(256), [sym_preproc_line] = STATE(256), @@ -79866,65 +79767,54 @@ 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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3440), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1241), - [anon_sym_LPAREN] = ACTIONS(2141), - [anon_sym_ref] = ACTIONS(2143), - [anon_sym_LBRACE] = ACTIONS(1247), - [anon_sym_delegate] = ACTIONS(1249), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_LPAREN] = ACTIONS(1989), + [anon_sym_ref] = ACTIONS(1991), + [anon_sym_LBRACE] = ACTIONS(1057), + [anon_sym_RBRACE] = ACTIONS(2155), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(2145), - [anon_sym_LT] = ACTIONS(1165), - [anon_sym_GT] = ACTIONS(1165), + [anon_sym_new] = ACTIONS(1059), + [anon_sym_LT] = ACTIONS(1995), + [anon_sym_GT] = ACTIONS(1995), [anon_sym_where] = ACTIONS(29), - [anon_sym_QMARK] = ACTIONS(1165), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1253), - [anon_sym_BANG] = ACTIONS(2147), - [anon_sym_TILDE] = ACTIONS(2149), - [anon_sym_PLUS_PLUS] = ACTIONS(2149), - [anon_sym_DASH_DASH] = ACTIONS(2149), - [anon_sym_true] = ACTIONS(1259), - [anon_sym_false] = ACTIONS(1259), - [anon_sym_PLUS] = ACTIONS(2147), - [anon_sym_DASH] = ACTIONS(2147), - [anon_sym_STAR] = ACTIONS(2151), - [anon_sym_SLASH] = ACTIONS(1165), - [anon_sym_PERCENT] = ACTIONS(1151), - [anon_sym_CARET] = ACTIONS(2149), - [anon_sym_PIPE] = ACTIONS(1165), - [anon_sym_AMP] = ACTIONS(2147), - [anon_sym_LT_LT] = ACTIONS(1151), - [anon_sym_GT_GT] = ACTIONS(1165), - [anon_sym_GT_GT_GT] = ACTIONS(1151), - [anon_sym_EQ_EQ] = ACTIONS(1151), - [anon_sym_BANG_EQ] = ACTIONS(1151), - [anon_sym_GT_EQ] = ACTIONS(1151), - [anon_sym_LT_EQ] = ACTIONS(1151), - [anon_sym_this] = ACTIONS(1263), - [anon_sym_DOT] = ACTIONS(1165), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1265), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1267), - [anon_sym_unchecked] = ACTIONS(1253), + [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(1997), + [anon_sym_LT_EQ] = ACTIONS(1997), + [anon_sym_this] = ACTIONS(83), + [anon_sym_scoped] = ACTIONS(1073), + [anon_sym_base] = ACTIONS(87), + [anon_sym_var] = ACTIONS(1999), + [sym_predefined_type] = ACTIONS(91), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), - [anon_sym_switch] = ACTIONS(1165), - [anon_sym_default] = ACTIONS(1269), - [anon_sym_throw] = ACTIONS(2153), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(1527), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2155), - [anon_sym_DOT_DOT] = ACTIONS(2157), - [anon_sym_AMP_AMP] = ACTIONS(1151), - [anon_sym_PIPE_PIPE] = ACTIONS(1151), - [anon_sym_QMARK_QMARK] = ACTIONS(1151), + [anon_sym_await] = ACTIONS(1529), + [sym_discard] = ACTIONS(1081), + [anon_sym_DOT_DOT] = ACTIONS(123), + [anon_sym_not] = ACTIONS(2001), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -79937,23 +79827,19 @@ static const uint16_t ts_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(1165), - [anon_sym_is] = ACTIONS(1165), - [anon_sym_DASH_GT] = ACTIONS(1151), - [anon_sym_stackalloc] = ACTIONS(1277), - [anon_sym_with] = ACTIONS(1165), - [anon_sym_sizeof] = ACTIONS(1279), - [anon_sym_typeof] = ACTIONS(1281), - [anon_sym___makeref] = ACTIONS(1283), - [anon_sym___reftype] = ACTIONS(1285), - [anon_sym___refvalue] = ACTIONS(1287), - [sym_null_literal] = ACTIONS(1289), - [anon_sym_SQUOTE] = ACTIONS(1291), - [sym_integer_literal] = ACTIONS(1289), - [sym_real_literal] = ACTIONS(1293), - [anon_sym_DQUOTE] = ACTIONS(1295), - [sym_verbatim_string_literal] = ACTIONS(1293), - [aux_sym_preproc_if_token1] = ACTIONS(1297), + [anon_sym_stackalloc] = ACTIONS(127), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_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), @@ -79964,90 +79850,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(1299), - [sym_interpolation_verbatim_start] = ACTIONS(1301), - [sym_interpolation_raw_start] = ACTIONS(1303), - [sym_raw_string_start] = ACTIONS(1305), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [sym_interpolation_raw_start] = ACTIONS(155), + [sym_raw_string_start] = ACTIONS(157), }, [257] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2420), - [sym__name] = STATE(5904), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2395), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(5249), - [sym_non_lvalue_expression] = STATE(3066), - [sym_lvalue_expression] = STATE(3557), - [sym__expression_statement_expression] = STATE(3006), - [sym_assignment_expression] = STATE(3020), - [sym_binary_expression] = STATE(3006), - [sym_postfix_unary_expression] = STATE(3020), - [sym_prefix_unary_expression] = STATE(3020), - [sym__pointer_indirection_expression] = STATE(2423), - [sym_query_expression] = STATE(3006), - [sym_from_clause] = STATE(6176), - [sym_conditional_expression] = STATE(3006), - [sym_conditional_access_expression] = STATE(3006), - [sym_as_expression] = STATE(3006), - [sym_is_expression] = STATE(3006), - [sym_is_pattern_expression] = STATE(3006), - [sym_cast_expression] = STATE(3006), - [sym_checked_expression] = STATE(3006), - [sym_invocation_expression] = STATE(3020), - [sym_switch_expression] = STATE(3006), - [sym_await_expression] = STATE(3020), - [sym_throw_expression] = STATE(3006), - [sym_element_access_expression] = STATE(2423), - [sym_interpolated_string_expression] = STATE(3006), - [sym_member_access_expression] = STATE(2423), - [sym_object_creation_expression] = STATE(3020), - [sym_parenthesized_expression] = STATE(3020), - [sym__parenthesized_lvalue_expression] = STATE(2423), - [sym_lambda_expression] = STATE(3006), - [sym__lambda_expression_init] = STATE(7473), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3006), - [sym_anonymous_method_expression] = STATE(3006), - [sym_anonymous_object_creation_expression] = STATE(3006), - [sym_implicit_array_creation_expression] = STATE(3006), - [sym_implicit_object_creation_expression] = STATE(3006), - [sym_implicit_stackalloc_expression] = STATE(3006), - [sym_initializer_expression] = STATE(3006), - [sym_default_expression] = STATE(3006), - [sym_with_expression] = STATE(3006), - [sym_sizeof_expression] = STATE(3006), - [sym_typeof_expression] = STATE(3006), - [sym_makeref_expression] = STATE(3006), - [sym_ref_expression] = STATE(3006), - [sym_reftype_expression] = STATE(3006), - [sym_refvalue_expression] = STATE(3006), - [sym_stackalloc_expression] = STATE(3006), - [sym_range_expression] = STATE(3006), - [sym_tuple_expression] = STATE(2423), - [sym_literal] = STATE(3006), - [sym_character_literal] = STATE(3011), - [sym_string_literal] = STATE(3011), - [sym_raw_string_literal] = STATE(3011), - [sym_boolean_literal] = STATE(3011), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3006), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(5706), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2270), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5197), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_pattern] = STATE(6511), + [sym_constant_pattern] = STATE(3429), + [sym_parenthesized_pattern] = STATE(3429), + [sym_var_pattern] = STATE(3429), + [sym_type_pattern] = STATE(3429), + [sym_list_pattern] = STATE(3429), + [sym_recursive_pattern] = STATE(3429), + [sym_positional_pattern_clause] = STATE(5689), + [sym_property_pattern_clause] = STATE(5723), + [sym_relational_pattern] = STATE(3429), + [sym_negated_pattern] = STATE(3429), + [sym_and_pattern] = STATE(3429), + [sym_or_pattern] = STATE(3429), + [sym_declaration_pattern] = STATE(3429), + [sym_expression] = STATE(5654), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3510), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(4202), + [sym_postfix_unary_expression] = STATE(4203), + [sym_prefix_unary_expression] = STATE(4203), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6134), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(4202), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(4203), + [sym_switch_expression] = STATE(3102), + [sym_switch_expression_arm] = STATE(7113), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(4202), + [sym_member_access_expression] = STATE(3112), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(4203), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7425), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(4202), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(4202), + [sym_typeof_expression] = STATE(4202), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(3112), + [sym_literal] = STATE(4202), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2261), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(257), [sym_preproc_endregion] = STATE(257), [sym_preproc_line] = STATE(257), @@ -80057,65 +79958,54 @@ 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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3440), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1241), - [anon_sym_LPAREN] = ACTIONS(2141), - [anon_sym_ref] = ACTIONS(2143), - [anon_sym_LBRACE] = ACTIONS(1247), - [anon_sym_delegate] = ACTIONS(1249), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_LPAREN] = ACTIONS(1989), + [anon_sym_ref] = ACTIONS(1991), + [anon_sym_LBRACE] = ACTIONS(1057), + [anon_sym_RBRACE] = ACTIONS(2157), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(2145), - [anon_sym_LT] = ACTIONS(1223), - [anon_sym_GT] = ACTIONS(1223), + [anon_sym_new] = ACTIONS(1059), + [anon_sym_LT] = ACTIONS(1995), + [anon_sym_GT] = ACTIONS(1995), [anon_sym_where] = ACTIONS(29), - [anon_sym_QMARK] = ACTIONS(1223), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1253), - [anon_sym_BANG] = ACTIONS(2147), - [anon_sym_TILDE] = ACTIONS(2149), - [anon_sym_PLUS_PLUS] = ACTIONS(2149), - [anon_sym_DASH_DASH] = ACTIONS(2149), - [anon_sym_true] = ACTIONS(1259), - [anon_sym_false] = ACTIONS(1259), - [anon_sym_PLUS] = ACTIONS(2147), - [anon_sym_DASH] = ACTIONS(2147), - [anon_sym_STAR] = ACTIONS(2151), - [anon_sym_SLASH] = ACTIONS(1223), - [anon_sym_PERCENT] = ACTIONS(1221), - [anon_sym_CARET] = ACTIONS(2149), - [anon_sym_PIPE] = ACTIONS(1223), - [anon_sym_AMP] = ACTIONS(2147), - [anon_sym_LT_LT] = ACTIONS(1221), - [anon_sym_GT_GT] = ACTIONS(1223), - [anon_sym_GT_GT_GT] = ACTIONS(1221), - [anon_sym_EQ_EQ] = ACTIONS(1221), - [anon_sym_BANG_EQ] = ACTIONS(1221), - [anon_sym_GT_EQ] = ACTIONS(1221), - [anon_sym_LT_EQ] = ACTIONS(1221), - [anon_sym_this] = ACTIONS(1263), - [anon_sym_DOT] = ACTIONS(1223), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1265), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1267), - [anon_sym_unchecked] = ACTIONS(1253), + [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(1997), + [anon_sym_LT_EQ] = ACTIONS(1997), + [anon_sym_this] = ACTIONS(83), + [anon_sym_scoped] = ACTIONS(1073), + [anon_sym_base] = ACTIONS(87), + [anon_sym_var] = ACTIONS(1999), + [sym_predefined_type] = ACTIONS(91), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), - [anon_sym_switch] = ACTIONS(1223), - [anon_sym_default] = ACTIONS(1269), - [anon_sym_throw] = ACTIONS(2153), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(1527), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2155), - [anon_sym_DOT_DOT] = ACTIONS(2157), - [anon_sym_AMP_AMP] = ACTIONS(1221), - [anon_sym_PIPE_PIPE] = ACTIONS(1221), - [anon_sym_QMARK_QMARK] = ACTIONS(1221), + [anon_sym_await] = ACTIONS(1529), + [sym_discard] = ACTIONS(1081), + [anon_sym_DOT_DOT] = ACTIONS(123), + [anon_sym_not] = ACTIONS(2001), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -80128,23 +80018,19 @@ static const uint16_t ts_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(1223), - [anon_sym_is] = ACTIONS(1223), - [anon_sym_DASH_GT] = ACTIONS(1221), - [anon_sym_stackalloc] = ACTIONS(1277), - [anon_sym_with] = ACTIONS(1223), - [anon_sym_sizeof] = ACTIONS(1279), - [anon_sym_typeof] = ACTIONS(1281), - [anon_sym___makeref] = ACTIONS(1283), - [anon_sym___reftype] = ACTIONS(1285), - [anon_sym___refvalue] = ACTIONS(1287), - [sym_null_literal] = ACTIONS(1289), - [anon_sym_SQUOTE] = ACTIONS(1291), - [sym_integer_literal] = ACTIONS(1289), - [sym_real_literal] = ACTIONS(1293), - [anon_sym_DQUOTE] = ACTIONS(1295), - [sym_verbatim_string_literal] = ACTIONS(1293), - [aux_sym_preproc_if_token1] = ACTIONS(1297), + [anon_sym_stackalloc] = ACTIONS(127), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_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), @@ -80155,90 +80041,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1299), - [sym_interpolation_verbatim_start] = ACTIONS(1301), - [sym_interpolation_raw_start] = ACTIONS(1303), - [sym_raw_string_start] = ACTIONS(1305), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [sym_interpolation_raw_start] = ACTIONS(155), + [sym_raw_string_start] = ACTIONS(157), }, [258] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(5891), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2372), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(5534), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3653), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3080), - [sym_postfix_unary_expression] = STATE(3111), - [sym_prefix_unary_expression] = STATE(3111), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6158), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3080), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3111), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3080), - [sym_member_access_expression] = STATE(2484), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3111), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7448), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(3080), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3080), - [sym_typeof_expression] = STATE(3080), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2484), - [sym_literal] = STATE(3080), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2416), + [sym__name] = STATE(5867), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2379), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(5226), + [sym_non_lvalue_expression] = STATE(3040), + [sym_lvalue_expression] = STATE(3617), + [sym__expression_statement_expression] = STATE(3035), + [sym_assignment_expression] = STATE(3043), + [sym_binary_expression] = STATE(3035), + [sym_postfix_unary_expression] = STATE(3043), + [sym_prefix_unary_expression] = STATE(3043), + [sym__pointer_indirection_expression] = STATE(2415), + [sym_query_expression] = STATE(3035), + [sym_from_clause] = STATE(6161), + [sym_conditional_expression] = STATE(3035), + [sym_conditional_access_expression] = STATE(3035), + [sym_as_expression] = STATE(3035), + [sym_is_expression] = STATE(3035), + [sym_is_pattern_expression] = STATE(3035), + [sym_cast_expression] = STATE(3035), + [sym_checked_expression] = STATE(3035), + [sym_invocation_expression] = STATE(3043), + [sym_switch_expression] = STATE(3035), + [sym_await_expression] = STATE(3043), + [sym_throw_expression] = STATE(3035), + [sym_element_access_expression] = STATE(2415), + [sym_interpolated_string_expression] = STATE(3035), + [sym_member_access_expression] = STATE(2415), + [sym_object_creation_expression] = STATE(3043), + [sym_parenthesized_expression] = STATE(3043), + [sym__parenthesized_lvalue_expression] = STATE(2415), + [sym_lambda_expression] = STATE(3035), + [sym__lambda_expression_init] = STATE(7706), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3035), + [sym_anonymous_method_expression] = STATE(3035), + [sym_anonymous_object_creation_expression] = STATE(3035), + [sym_implicit_array_creation_expression] = STATE(3035), + [sym_implicit_object_creation_expression] = STATE(3035), + [sym_implicit_stackalloc_expression] = STATE(3035), + [sym_initializer_expression] = STATE(3035), + [sym_default_expression] = STATE(3035), + [sym_with_expression] = STATE(3035), + [sym_sizeof_expression] = STATE(3035), + [sym_typeof_expression] = STATE(3035), + [sym_makeref_expression] = STATE(3035), + [sym_ref_expression] = STATE(3035), + [sym_reftype_expression] = STATE(3035), + [sym_refvalue_expression] = STATE(3035), + [sym_stackalloc_expression] = STATE(3035), + [sym_range_expression] = STATE(3035), + [sym_tuple_expression] = STATE(2415), + [sym_literal] = STATE(3035), + [sym_character_literal] = STATE(3037), + [sym_string_literal] = STATE(3037), + [sym_raw_string_literal] = STATE(3037), + [sym_boolean_literal] = STATE(3037), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3035), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(258), [sym_preproc_endregion] = STATE(258), [sym_preproc_line] = STATE(258), @@ -80248,65 +80134,65 @@ 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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3455), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1481), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1239), [anon_sym_LPAREN] = ACTIONS(2159), [anon_sym_ref] = ACTIONS(2161), - [anon_sym_LBRACE] = ACTIONS(1487), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_LBRACE] = ACTIONS(1245), + [anon_sym_delegate] = ACTIONS(1247), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), [anon_sym_new] = ACTIONS(2163), - [anon_sym_LT] = ACTIONS(1165), - [anon_sym_GT] = ACTIONS(1165), + [anon_sym_LT] = ACTIONS(1221), + [anon_sym_GT] = ACTIONS(1221), [anon_sym_where] = ACTIONS(29), - [anon_sym_QMARK] = ACTIONS(1165), + [anon_sym_QMARK] = ACTIONS(1221), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1067), + [anon_sym_checked] = ACTIONS(1251), [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(77), - [anon_sym_false] = ACTIONS(77), + [anon_sym_true] = ACTIONS(1257), + [anon_sym_false] = ACTIONS(1257), [anon_sym_PLUS] = ACTIONS(2165), [anon_sym_DASH] = ACTIONS(2165), [anon_sym_STAR] = ACTIONS(2169), - [anon_sym_SLASH] = ACTIONS(1165), - [anon_sym_PERCENT] = ACTIONS(1151), + [anon_sym_SLASH] = ACTIONS(1221), + [anon_sym_PERCENT] = ACTIONS(1219), [anon_sym_CARET] = ACTIONS(2167), - [anon_sym_PIPE] = ACTIONS(1165), + [anon_sym_PIPE] = ACTIONS(1221), [anon_sym_AMP] = ACTIONS(2165), - [anon_sym_LT_LT] = ACTIONS(1151), - [anon_sym_GT_GT] = ACTIONS(1165), - [anon_sym_GT_GT_GT] = ACTIONS(1151), - [anon_sym_EQ_EQ] = ACTIONS(1151), - [anon_sym_BANG_EQ] = ACTIONS(1151), - [anon_sym_GT_EQ] = ACTIONS(1151), - [anon_sym_LT_EQ] = ACTIONS(1151), - [anon_sym_this] = ACTIONS(83), - [anon_sym_DOT] = ACTIONS(1165), + [anon_sym_LT_LT] = ACTIONS(1219), + [anon_sym_GT_GT] = ACTIONS(1221), + [anon_sym_GT_GT_GT] = ACTIONS(1219), + [anon_sym_EQ_EQ] = ACTIONS(1219), + [anon_sym_BANG_EQ] = ACTIONS(1219), + [anon_sym_GT_EQ] = ACTIONS(1219), + [anon_sym_LT_EQ] = ACTIONS(1219), + [anon_sym_this] = ACTIONS(1261), + [anon_sym_DOT] = ACTIONS(1221), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), + [anon_sym_base] = ACTIONS(1263), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1067), + [sym_predefined_type] = ACTIONS(1265), + [anon_sym_unchecked] = ACTIONS(1251), [anon_sym_yield] = ACTIONS(29), - [anon_sym_switch] = ACTIONS(1165), - [anon_sym_default] = ACTIONS(109), + [anon_sym_switch] = ACTIONS(1221), + [anon_sym_default] = ACTIONS(1267), [anon_sym_throw] = ACTIONS(2171), [anon_sym_when] = ACTIONS(29), [anon_sym_await] = ACTIONS(2173), [anon_sym_DOT_DOT] = ACTIONS(2175), - [anon_sym_AMP_AMP] = ACTIONS(1151), - [anon_sym_PIPE_PIPE] = ACTIONS(1151), - [anon_sym_QMARK_QMARK] = ACTIONS(1151), + [anon_sym_AMP_AMP] = ACTIONS(1219), + [anon_sym_PIPE_PIPE] = ACTIONS(1219), + [anon_sym_QMARK_QMARK] = ACTIONS(1219), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -80319,23 +80205,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(1165), - [anon_sym_is] = ACTIONS(1165), - [anon_sym_DASH_GT] = ACTIONS(1151), - [anon_sym_stackalloc] = ACTIONS(127), - [anon_sym_with] = ACTIONS(1165), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(133), - [anon_sym___reftype] = ACTIONS(135), - [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1089), + [anon_sym_as] = ACTIONS(1221), + [anon_sym_is] = ACTIONS(1221), + [anon_sym_DASH_GT] = ACTIONS(1219), + [anon_sym_stackalloc] = ACTIONS(1275), + [anon_sym_with] = ACTIONS(1221), + [anon_sym_sizeof] = ACTIONS(1277), + [anon_sym_typeof] = ACTIONS(1279), + [anon_sym___makeref] = ACTIONS(1281), + [anon_sym___reftype] = ACTIONS(1283), + [anon_sym___refvalue] = ACTIONS(1285), + [sym_null_literal] = ACTIONS(1287), + [anon_sym_SQUOTE] = ACTIONS(1289), + [sym_integer_literal] = ACTIONS(1287), + [sym_real_literal] = ACTIONS(1291), + [anon_sym_DQUOTE] = ACTIONS(1293), + [sym_verbatim_string_literal] = ACTIONS(1291), + [aux_sym_preproc_if_token1] = ACTIONS(1295), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -80346,90 +80232,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(151), - [sym_interpolation_verbatim_start] = ACTIONS(153), - [sym_interpolation_raw_start] = ACTIONS(155), - [sym_raw_string_start] = ACTIONS(157), + [sym_interpolation_regular_start] = ACTIONS(1297), + [sym_interpolation_verbatim_start] = ACTIONS(1299), + [sym_interpolation_raw_start] = ACTIONS(1301), + [sym_raw_string_start] = ACTIONS(1303), }, [259] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(5890), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2375), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(5476), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3656), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3080), - [sym_postfix_unary_expression] = STATE(3111), - [sym_prefix_unary_expression] = STATE(3111), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6157), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3080), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3111), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3080), - [sym_member_access_expression] = STATE(2484), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3111), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7362), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(3080), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3080), - [sym_typeof_expression] = STATE(3080), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2484), - [sym_literal] = STATE(3080), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(5896), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2362), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(5519), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3661), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3102), + [sym_postfix_unary_expression] = STATE(3079), + [sym_prefix_unary_expression] = STATE(3079), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6129), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3102), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3079), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3102), + [sym_member_access_expression] = STATE(2472), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3079), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7367), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(3102), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3102), + [sym_typeof_expression] = STATE(3102), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2472), + [sym_literal] = STATE(3102), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(259), [sym_preproc_endregion] = STATE(259), [sym_preproc_line] = STATE(259), @@ -80439,65 +80325,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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), - [sym__identifier_token] = ACTIONS(25), - [anon_sym_alias] = ACTIONS(29), - [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1481), - [anon_sym_LPAREN] = ACTIONS(2177), - [anon_sym_ref] = ACTIONS(2179), - [anon_sym_LBRACE] = ACTIONS(1487), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), - [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(2181), - [anon_sym_LT] = ACTIONS(1223), - [anon_sym_GT] = ACTIONS(1223), - [anon_sym_where] = ACTIONS(29), - [anon_sym_QMARK] = ACTIONS(1223), - [anon_sym_notnull] = ACTIONS(29), - [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1067), - [anon_sym_BANG] = ACTIONS(2183), - [anon_sym_TILDE] = ACTIONS(2185), - [anon_sym_PLUS_PLUS] = ACTIONS(2185), - [anon_sym_DASH_DASH] = ACTIONS(2185), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(2183), - [anon_sym_DASH] = ACTIONS(2183), - [anon_sym_STAR] = ACTIONS(2187), - [anon_sym_SLASH] = ACTIONS(1223), - [anon_sym_PERCENT] = ACTIONS(1221), - [anon_sym_CARET] = ACTIONS(2185), - [anon_sym_PIPE] = ACTIONS(1223), - [anon_sym_AMP] = ACTIONS(2183), - [anon_sym_LT_LT] = ACTIONS(1221), - [anon_sym_GT_GT] = ACTIONS(1223), - [anon_sym_GT_GT_GT] = ACTIONS(1221), - [anon_sym_EQ_EQ] = ACTIONS(1221), - [anon_sym_BANG_EQ] = ACTIONS(1221), - [anon_sym_GT_EQ] = ACTIONS(1221), - [anon_sym_LT_EQ] = ACTIONS(1221), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), + [sym__identifier_token] = ACTIONS(25), + [anon_sym_alias] = ACTIONS(29), + [anon_sym_global] = ACTIONS(29), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1479), + [anon_sym_LPAREN] = ACTIONS(2135), + [anon_sym_ref] = ACTIONS(2137), + [anon_sym_LBRACE] = ACTIONS(1481), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), + [anon_sym_file] = ACTIONS(29), + [anon_sym_new] = ACTIONS(2139), + [anon_sym_LT] = ACTIONS(1221), + [anon_sym_GT] = ACTIONS(1221), + [anon_sym_where] = ACTIONS(29), + [anon_sym_QMARK] = ACTIONS(1221), + [anon_sym_notnull] = ACTIONS(29), + [anon_sym_unmanaged] = ACTIONS(29), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(2141), + [anon_sym_TILDE] = ACTIONS(2143), + [anon_sym_PLUS_PLUS] = ACTIONS(2143), + [anon_sym_DASH_DASH] = ACTIONS(2143), + [anon_sym_true] = ACTIONS(77), + [anon_sym_false] = ACTIONS(77), + [anon_sym_PLUS] = ACTIONS(2141), + [anon_sym_DASH] = ACTIONS(2141), + [anon_sym_STAR] = ACTIONS(2145), + [anon_sym_SLASH] = ACTIONS(1221), + [anon_sym_PERCENT] = ACTIONS(1219), + [anon_sym_CARET] = ACTIONS(2143), + [anon_sym_PIPE] = ACTIONS(1221), + [anon_sym_AMP] = ACTIONS(2141), + [anon_sym_LT_LT] = ACTIONS(1219), + [anon_sym_GT_GT] = ACTIONS(1221), + [anon_sym_GT_GT_GT] = ACTIONS(1219), + [anon_sym_EQ_EQ] = ACTIONS(1219), + [anon_sym_BANG_EQ] = ACTIONS(1219), + [anon_sym_GT_EQ] = ACTIONS(1219), + [anon_sym_LT_EQ] = ACTIONS(1219), [anon_sym_this] = ACTIONS(83), - [anon_sym_DOT] = ACTIONS(1223), + [anon_sym_DOT] = ACTIONS(1221), [anon_sym_scoped] = ACTIONS(85), [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1067), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), - [anon_sym_switch] = ACTIONS(1223), + [anon_sym_switch] = ACTIONS(1221), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(2189), + [anon_sym_throw] = ACTIONS(2147), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2191), - [anon_sym_DOT_DOT] = ACTIONS(2193), - [anon_sym_AMP_AMP] = ACTIONS(1221), - [anon_sym_PIPE_PIPE] = ACTIONS(1221), - [anon_sym_QMARK_QMARK] = ACTIONS(1221), + [anon_sym_await] = ACTIONS(2149), + [anon_sym_DOT_DOT] = ACTIONS(2151), + [anon_sym_AMP_AMP] = ACTIONS(1219), + [anon_sym_PIPE_PIPE] = ACTIONS(1219), + [anon_sym_QMARK_QMARK] = ACTIONS(1219), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -80510,11 +80396,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(1223), - [anon_sym_is] = ACTIONS(1223), - [anon_sym_DASH_GT] = ACTIONS(1221), + [anon_sym_as] = ACTIONS(1221), + [anon_sym_is] = ACTIONS(1221), + [anon_sym_DASH_GT] = ACTIONS(1219), [anon_sym_stackalloc] = ACTIONS(127), - [anon_sym_with] = ACTIONS(1223), + [anon_sym_with] = ACTIONS(1221), [anon_sym_sizeof] = ACTIONS(129), [anon_sym_typeof] = ACTIONS(131), [anon_sym___makeref] = ACTIONS(133), @@ -80526,7 +80412,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(1089), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -80543,84 +80429,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [260] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2420), - [sym__name] = STATE(5875), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2369), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(4171), - [sym_non_lvalue_expression] = STATE(3066), - [sym_lvalue_expression] = STATE(3125), - [sym__expression_statement_expression] = STATE(3006), - [sym_assignment_expression] = STATE(3020), - [sym_binary_expression] = STATE(3006), - [sym_postfix_unary_expression] = STATE(3020), - [sym_prefix_unary_expression] = STATE(3020), - [sym__pointer_indirection_expression] = STATE(2423), - [sym_query_expression] = STATE(3006), - [sym_from_clause] = STATE(6145), - [sym_conditional_expression] = STATE(3006), - [sym_conditional_access_expression] = STATE(3006), - [sym_as_expression] = STATE(3006), - [sym_is_expression] = STATE(3006), - [sym_is_pattern_expression] = STATE(3006), - [sym_cast_expression] = STATE(3006), - [sym_checked_expression] = STATE(3006), - [sym_invocation_expression] = STATE(3020), - [sym_switch_expression] = STATE(3006), - [sym_await_expression] = STATE(3020), - [sym_throw_expression] = STATE(3006), - [sym_element_access_expression] = STATE(2423), - [sym_interpolated_string_expression] = STATE(3006), - [sym_member_access_expression] = STATE(2423), - [sym_object_creation_expression] = STATE(3020), - [sym_parenthesized_expression] = STATE(3020), - [sym__parenthesized_lvalue_expression] = STATE(2423), - [sym_lambda_expression] = STATE(3006), - [sym__lambda_expression_init] = STATE(7538), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3006), - [sym_anonymous_method_expression] = STATE(3006), - [sym_anonymous_object_creation_expression] = STATE(3006), - [sym_implicit_array_creation_expression] = STATE(3006), - [sym_implicit_object_creation_expression] = STATE(3006), - [sym_implicit_stackalloc_expression] = STATE(3006), - [sym_initializer_expression] = STATE(3006), - [sym_default_expression] = STATE(3006), - [sym_with_expression] = STATE(3006), - [sym_sizeof_expression] = STATE(3006), - [sym_typeof_expression] = STATE(3006), - [sym_makeref_expression] = STATE(3006), - [sym_ref_expression] = STATE(3006), - [sym_reftype_expression] = STATE(3006), - [sym_refvalue_expression] = STATE(3006), - [sym_stackalloc_expression] = STATE(3006), - [sym_range_expression] = STATE(3006), - [sym_tuple_expression] = STATE(2423), - [sym_literal] = STATE(3006), - [sym_character_literal] = STATE(3011), - [sym_string_literal] = STATE(3011), - [sym_raw_string_literal] = STATE(3011), - [sym_boolean_literal] = STATE(3011), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3006), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2416), + [sym__name] = STATE(5867), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2379), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(5115), + [sym_non_lvalue_expression] = STATE(3040), + [sym_lvalue_expression] = STATE(3617), + [sym__expression_statement_expression] = STATE(3035), + [sym_assignment_expression] = STATE(3043), + [sym_binary_expression] = STATE(3035), + [sym_postfix_unary_expression] = STATE(3043), + [sym_prefix_unary_expression] = STATE(3043), + [sym__pointer_indirection_expression] = STATE(2415), + [sym_query_expression] = STATE(3035), + [sym_from_clause] = STATE(6161), + [sym_conditional_expression] = STATE(3035), + [sym_conditional_access_expression] = STATE(3035), + [sym_as_expression] = STATE(3035), + [sym_is_expression] = STATE(3035), + [sym_is_pattern_expression] = STATE(3035), + [sym_cast_expression] = STATE(3035), + [sym_checked_expression] = STATE(3035), + [sym_invocation_expression] = STATE(3043), + [sym_switch_expression] = STATE(3035), + [sym_await_expression] = STATE(3043), + [sym_throw_expression] = STATE(3035), + [sym_element_access_expression] = STATE(2415), + [sym_interpolated_string_expression] = STATE(3035), + [sym_member_access_expression] = STATE(2415), + [sym_object_creation_expression] = STATE(3043), + [sym_parenthesized_expression] = STATE(3043), + [sym__parenthesized_lvalue_expression] = STATE(2415), + [sym_lambda_expression] = STATE(3035), + [sym__lambda_expression_init] = STATE(7706), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3035), + [sym_anonymous_method_expression] = STATE(3035), + [sym_anonymous_object_creation_expression] = STATE(3035), + [sym_implicit_array_creation_expression] = STATE(3035), + [sym_implicit_object_creation_expression] = STATE(3035), + [sym_implicit_stackalloc_expression] = STATE(3035), + [sym_initializer_expression] = STATE(3035), + [sym_default_expression] = STATE(3035), + [sym_with_expression] = STATE(3035), + [sym_sizeof_expression] = STATE(3035), + [sym_typeof_expression] = STATE(3035), + [sym_makeref_expression] = STATE(3035), + [sym_ref_expression] = STATE(3035), + [sym_reftype_expression] = STATE(3035), + [sym_refvalue_expression] = STATE(3035), + [sym_stackalloc_expression] = STATE(3035), + [sym_range_expression] = STATE(3035), + [sym_tuple_expression] = STATE(2415), + [sym_literal] = STATE(3035), + [sym_character_literal] = STATE(3037), + [sym_string_literal] = STATE(3037), + [sym_raw_string_literal] = STATE(3037), + [sym_boolean_literal] = STATE(3037), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3035), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(260), [sym_preproc_endregion] = STATE(260), [sym_preproc_line] = STATE(260), @@ -80630,65 +80516,65 @@ 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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3440), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3455), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1241), - [anon_sym_LPAREN] = ACTIONS(2195), - [anon_sym_ref] = ACTIONS(2197), - [anon_sym_LBRACE] = ACTIONS(1247), - [anon_sym_delegate] = ACTIONS(1249), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1239), + [anon_sym_LPAREN] = ACTIONS(2159), + [anon_sym_ref] = ACTIONS(2161), + [anon_sym_LBRACE] = ACTIONS(1245), + [anon_sym_delegate] = ACTIONS(1247), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1845), - [anon_sym_LT] = ACTIONS(1165), - [anon_sym_GT] = ACTIONS(1165), + [anon_sym_new] = ACTIONS(2163), + [anon_sym_LT] = ACTIONS(1161), + [anon_sym_GT] = ACTIONS(1161), [anon_sym_where] = ACTIONS(29), - [anon_sym_QMARK] = ACTIONS(1165), + [anon_sym_QMARK] = ACTIONS(1161), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1253), - [anon_sym_BANG] = ACTIONS(2199), - [anon_sym_TILDE] = ACTIONS(2201), - [anon_sym_PLUS_PLUS] = ACTIONS(2201), - [anon_sym_DASH_DASH] = ACTIONS(2201), - [anon_sym_true] = ACTIONS(1259), - [anon_sym_false] = ACTIONS(1259), - [anon_sym_PLUS] = ACTIONS(2199), - [anon_sym_DASH] = ACTIONS(2199), - [anon_sym_STAR] = ACTIONS(1851), - [anon_sym_SLASH] = ACTIONS(1165), - [anon_sym_PERCENT] = ACTIONS(1151), - [anon_sym_CARET] = ACTIONS(2201), - [anon_sym_PIPE] = ACTIONS(1165), - [anon_sym_AMP] = ACTIONS(2199), - [anon_sym_LT_LT] = ACTIONS(1151), - [anon_sym_GT_GT] = ACTIONS(1165), - [anon_sym_GT_GT_GT] = ACTIONS(1151), - [anon_sym_EQ_EQ] = ACTIONS(1151), - [anon_sym_BANG_EQ] = ACTIONS(1151), - [anon_sym_GT_EQ] = ACTIONS(1151), - [anon_sym_LT_EQ] = ACTIONS(1151), - [anon_sym_this] = ACTIONS(1263), - [anon_sym_DOT] = ACTIONS(1165), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1265), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1267), - [anon_sym_unchecked] = ACTIONS(1253), - [anon_sym_yield] = ACTIONS(29), - [anon_sym_switch] = ACTIONS(1165), - [anon_sym_default] = ACTIONS(1269), - [anon_sym_throw] = ACTIONS(2203), + [anon_sym_checked] = ACTIONS(1251), + [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(1257), + [anon_sym_false] = ACTIONS(1257), + [anon_sym_PLUS] = ACTIONS(2165), + [anon_sym_DASH] = ACTIONS(2165), + [anon_sym_STAR] = ACTIONS(2169), + [anon_sym_SLASH] = ACTIONS(1161), + [anon_sym_PERCENT] = ACTIONS(1147), + [anon_sym_CARET] = ACTIONS(2167), + [anon_sym_PIPE] = ACTIONS(1161), + [anon_sym_AMP] = ACTIONS(2165), + [anon_sym_LT_LT] = ACTIONS(1147), + [anon_sym_GT_GT] = ACTIONS(1161), + [anon_sym_GT_GT_GT] = ACTIONS(1147), + [anon_sym_EQ_EQ] = ACTIONS(1147), + [anon_sym_BANG_EQ] = ACTIONS(1147), + [anon_sym_GT_EQ] = ACTIONS(1147), + [anon_sym_LT_EQ] = ACTIONS(1147), + [anon_sym_this] = ACTIONS(1261), + [anon_sym_DOT] = ACTIONS(1161), + [anon_sym_scoped] = ACTIONS(85), + [anon_sym_base] = ACTIONS(1263), + [anon_sym_var] = ACTIONS(89), + [sym_predefined_type] = ACTIONS(1265), + [anon_sym_unchecked] = ACTIONS(1251), + [anon_sym_yield] = ACTIONS(29), + [anon_sym_switch] = ACTIONS(1161), + [anon_sym_default] = ACTIONS(1267), + [anon_sym_throw] = ACTIONS(2171), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2205), - [anon_sym_DOT_DOT] = ACTIONS(2207), - [anon_sym_AMP_AMP] = ACTIONS(1151), - [anon_sym_PIPE_PIPE] = ACTIONS(1151), - [anon_sym_QMARK_QMARK] = ACTIONS(1151), + [anon_sym_await] = ACTIONS(2173), + [anon_sym_DOT_DOT] = ACTIONS(2175), + [anon_sym_AMP_AMP] = ACTIONS(1147), + [anon_sym_PIPE_PIPE] = ACTIONS(1147), + [anon_sym_QMARK_QMARK] = ACTIONS(1147), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -80701,23 +80587,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(1165), - [anon_sym_is] = ACTIONS(1165), - [anon_sym_DASH_GT] = ACTIONS(1151), - [anon_sym_stackalloc] = ACTIONS(1277), - [anon_sym_with] = ACTIONS(1165), - [anon_sym_sizeof] = ACTIONS(1279), - [anon_sym_typeof] = ACTIONS(1281), - [anon_sym___makeref] = ACTIONS(1283), - [anon_sym___reftype] = ACTIONS(1285), - [anon_sym___refvalue] = ACTIONS(1287), - [sym_null_literal] = ACTIONS(1289), - [anon_sym_SQUOTE] = ACTIONS(1291), - [sym_integer_literal] = ACTIONS(1289), - [sym_real_literal] = ACTIONS(1293), - [anon_sym_DQUOTE] = ACTIONS(1295), - [sym_verbatim_string_literal] = ACTIONS(1293), - [aux_sym_preproc_if_token1] = ACTIONS(1297), + [anon_sym_as] = ACTIONS(1161), + [anon_sym_is] = ACTIONS(1161), + [anon_sym_DASH_GT] = ACTIONS(1147), + [anon_sym_stackalloc] = ACTIONS(1275), + [anon_sym_with] = ACTIONS(1161), + [anon_sym_sizeof] = ACTIONS(1277), + [anon_sym_typeof] = ACTIONS(1279), + [anon_sym___makeref] = ACTIONS(1281), + [anon_sym___reftype] = ACTIONS(1283), + [anon_sym___refvalue] = ACTIONS(1285), + [sym_null_literal] = ACTIONS(1287), + [anon_sym_SQUOTE] = ACTIONS(1289), + [sym_integer_literal] = ACTIONS(1287), + [sym_real_literal] = ACTIONS(1291), + [anon_sym_DQUOTE] = ACTIONS(1293), + [sym_verbatim_string_literal] = ACTIONS(1291), + [aux_sym_preproc_if_token1] = ACTIONS(1295), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -80728,105 +80614,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(1299), - [sym_interpolation_verbatim_start] = ACTIONS(1301), - [sym_interpolation_raw_start] = ACTIONS(1303), - [sym_raw_string_start] = ACTIONS(1305), + [sym_interpolation_regular_start] = ACTIONS(1297), + [sym_interpolation_verbatim_start] = ACTIONS(1299), + [sym_interpolation_raw_start] = ACTIONS(1301), + [sym_raw_string_start] = ACTIONS(1303), }, [261] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(5723), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2284), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5162), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_pattern] = STATE(6590), - [sym_constant_pattern] = STATE(3486), - [sym_parenthesized_pattern] = STATE(3486), - [sym_var_pattern] = STATE(3486), - [sym_type_pattern] = STATE(3486), - [sym_list_pattern] = STATE(3486), - [sym_recursive_pattern] = STATE(3486), - [sym_positional_pattern_clause] = STATE(5670), - [sym_property_pattern_clause] = STATE(5735), - [sym_relational_pattern] = STATE(3486), - [sym_negated_pattern] = STATE(3486), - [sym_and_pattern] = STATE(3486), - [sym_or_pattern] = STATE(3486), - [sym_declaration_pattern] = STATE(3486), - [sym_expression] = STATE(5668), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3520), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(4216), - [sym_postfix_unary_expression] = STATE(4219), - [sym_prefix_unary_expression] = STATE(4219), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6154), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(4216), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(4219), - [sym_switch_expression] = STATE(3080), - [sym_switch_expression_arm] = STATE(7123), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(4216), - [sym_member_access_expression] = STATE(3121), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(4219), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7530), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(4216), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(4216), - [sym_typeof_expression] = STATE(4216), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(3121), - [sym_literal] = STATE(4216), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2267), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(5528), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2225), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(4472), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_pattern] = STATE(6702), + [sym_constant_pattern] = STATE(3429), + [sym_parenthesized_pattern] = STATE(3429), + [sym_var_pattern] = STATE(3429), + [sym_type_pattern] = STATE(3429), + [sym_list_pattern] = STATE(3429), + [sym_recursive_pattern] = STATE(3429), + [sym_positional_pattern_clause] = STATE(5135), + [sym_property_pattern_clause] = STATE(5666), + [sym_subpattern] = STATE(6780), + [sym_relational_pattern] = STATE(3429), + [sym_negated_pattern] = STATE(3429), + [sym_and_pattern] = STATE(3429), + [sym_or_pattern] = STATE(3429), + [sym_declaration_pattern] = STATE(3429), + [sym_expression] = STATE(5405), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3660), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(4418), + [sym_postfix_unary_expression] = STATE(4403), + [sym_prefix_unary_expression] = STATE(4403), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6163), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(4418), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(4403), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(4418), + [sym_member_access_expression] = STATE(3127), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(4403), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7633), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(4418), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(4418), + [sym_typeof_expression] = STATE(4418), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(3127), + [sym_literal] = STATE(4418), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(261), [sym_preproc_endregion] = STATE(261), [sym_preproc_line] = STATE(261), @@ -80836,54 +80722,54 @@ 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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1049), - [anon_sym_LPAREN] = ACTIONS(1985), - [anon_sym_ref] = ACTIONS(1987), - [anon_sym_LBRACE] = ACTIONS(1059), - [anon_sym_RBRACE] = ACTIONS(2209), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_LPAREN] = ACTIONS(1141), + [anon_sym_ref] = ACTIONS(2005), + [anon_sym_LBRACE] = ACTIONS(1057), + [anon_sym_RBRACE] = ACTIONS(2177), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1061), - [anon_sym_LT] = ACTIONS(1991), - [anon_sym_GT] = ACTIONS(1991), + [anon_sym_new] = ACTIONS(1095), + [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(1067), - [anon_sym_BANG] = ACTIONS(1617), - [anon_sym_TILDE] = ACTIONS(1617), - [anon_sym_PLUS_PLUS] = ACTIONS(1617), - [anon_sym_DASH_DASH] = ACTIONS(1617), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(1101), + [anon_sym_TILDE] = ACTIONS(1101), + [anon_sym_PLUS_PLUS] = ACTIONS(1101), + [anon_sym_DASH_DASH] = ACTIONS(1101), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1615), - [anon_sym_DASH] = ACTIONS(1615), - [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(1617), - [anon_sym_AMP] = ACTIONS(1617), - [anon_sym_GT_EQ] = ACTIONS(1993), - [anon_sym_LT_EQ] = ACTIONS(1993), + [anon_sym_PLUS] = ACTIONS(1103), + [anon_sym_DASH] = ACTIONS(1103), + [anon_sym_STAR] = ACTIONS(1227), + [anon_sym_CARET] = ACTIONS(1101), + [anon_sym_AMP] = ACTIONS(1101), + [anon_sym_GT_EQ] = ACTIONS(1071), + [anon_sym_LT_EQ] = ACTIONS(1071), [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(1075), + [anon_sym_scoped] = ACTIONS(1073), [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(1995), + [anon_sym_var] = ACTIONS(1075), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1067), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1589), + [anon_sym_throw] = ACTIONS(1231), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1591), - [sym_discard] = ACTIONS(1083), - [anon_sym_DOT_DOT] = ACTIONS(123), - [anon_sym_not] = ACTIONS(1997), + [anon_sym_await] = ACTIONS(1233), + [sym_discard] = ACTIONS(1081), + [anon_sym_DOT_DOT] = ACTIONS(1235), + [anon_sym_not] = ACTIONS(1085), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -80908,7 +80794,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(1089), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -80925,99 +80811,99 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [262] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(5723), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2284), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5162), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_pattern] = STATE(6590), - [sym_constant_pattern] = STATE(3486), - [sym_parenthesized_pattern] = STATE(3486), - [sym_var_pattern] = STATE(3486), - [sym_type_pattern] = STATE(3486), - [sym_list_pattern] = STATE(3486), - [sym_recursive_pattern] = STATE(3486), - [sym_positional_pattern_clause] = STATE(5670), - [sym_property_pattern_clause] = STATE(5735), - [sym_relational_pattern] = STATE(3486), - [sym_negated_pattern] = STATE(3486), - [sym_and_pattern] = STATE(3486), - [sym_or_pattern] = STATE(3486), - [sym_declaration_pattern] = STATE(3486), - [sym_expression] = STATE(5668), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3520), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(4216), - [sym_postfix_unary_expression] = STATE(4219), - [sym_prefix_unary_expression] = STATE(4219), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6154), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(4216), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(4219), - [sym_switch_expression] = STATE(3080), - [sym_switch_expression_arm] = STATE(7123), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(4216), - [sym_member_access_expression] = STATE(3121), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(4219), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7530), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(4216), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(4216), - [sym_typeof_expression] = STATE(4216), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(3121), - [sym_literal] = STATE(4216), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2267), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(5706), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2270), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5197), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_pattern] = STATE(6511), + [sym_constant_pattern] = STATE(3429), + [sym_parenthesized_pattern] = STATE(3429), + [sym_var_pattern] = STATE(3429), + [sym_type_pattern] = STATE(3429), + [sym_list_pattern] = STATE(3429), + [sym_recursive_pattern] = STATE(3429), + [sym_positional_pattern_clause] = STATE(5689), + [sym_property_pattern_clause] = STATE(5723), + [sym_relational_pattern] = STATE(3429), + [sym_negated_pattern] = STATE(3429), + [sym_and_pattern] = STATE(3429), + [sym_or_pattern] = STATE(3429), + [sym_declaration_pattern] = STATE(3429), + [sym_expression] = STATE(5654), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3510), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(4202), + [sym_postfix_unary_expression] = STATE(4203), + [sym_prefix_unary_expression] = STATE(4203), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6134), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(4202), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(4203), + [sym_switch_expression] = STATE(3102), + [sym_switch_expression_arm] = STATE(7113), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(4202), + [sym_member_access_expression] = STATE(3112), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(4203), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7425), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(4202), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(4202), + [sym_typeof_expression] = STATE(4202), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(3112), + [sym_literal] = STATE(4202), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2261), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(262), [sym_preproc_endregion] = STATE(262), [sym_preproc_line] = STATE(262), @@ -81027,54 +80913,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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1049), - [anon_sym_LPAREN] = ACTIONS(1985), - [anon_sym_ref] = ACTIONS(1987), - [anon_sym_LBRACE] = ACTIONS(1059), - [anon_sym_RBRACE] = ACTIONS(2211), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_LPAREN] = ACTIONS(1989), + [anon_sym_ref] = ACTIONS(1991), + [anon_sym_LBRACE] = ACTIONS(1057), + [anon_sym_RBRACE] = ACTIONS(2179), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1061), - [anon_sym_LT] = ACTIONS(1991), - [anon_sym_GT] = ACTIONS(1991), + [anon_sym_new] = ACTIONS(1059), + [anon_sym_LT] = ACTIONS(1995), + [anon_sym_GT] = ACTIONS(1995), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1067), - [anon_sym_BANG] = ACTIONS(1617), - [anon_sym_TILDE] = ACTIONS(1617), - [anon_sym_PLUS_PLUS] = ACTIONS(1617), - [anon_sym_DASH_DASH] = ACTIONS(1617), + [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(1615), - [anon_sym_DASH] = ACTIONS(1615), + [anon_sym_PLUS] = ACTIONS(1585), + [anon_sym_DASH] = ACTIONS(1585), [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(1617), - [anon_sym_AMP] = ACTIONS(1617), - [anon_sym_GT_EQ] = ACTIONS(1993), - [anon_sym_LT_EQ] = ACTIONS(1993), + [anon_sym_CARET] = ACTIONS(1587), + [anon_sym_AMP] = ACTIONS(1587), + [anon_sym_GT_EQ] = ACTIONS(1997), + [anon_sym_LT_EQ] = ACTIONS(1997), [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(1075), + [anon_sym_scoped] = ACTIONS(1073), [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(1995), + [anon_sym_var] = ACTIONS(1999), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1067), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1589), + [anon_sym_throw] = ACTIONS(1527), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1591), - [sym_discard] = ACTIONS(1083), + [anon_sym_await] = ACTIONS(1529), + [sym_discard] = ACTIONS(1081), [anon_sym_DOT_DOT] = ACTIONS(123), - [anon_sym_not] = ACTIONS(1997), + [anon_sym_not] = ACTIONS(2001), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -81099,7 +80985,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(1089), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -81116,84 +81002,99 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [263] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2420), - [sym__name] = STATE(5897), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2397), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(5266), - [sym_non_lvalue_expression] = STATE(3066), - [sym_lvalue_expression] = STATE(3632), - [sym__expression_statement_expression] = STATE(3006), - [sym_assignment_expression] = STATE(3020), - [sym_binary_expression] = STATE(3006), - [sym_postfix_unary_expression] = STATE(3020), - [sym_prefix_unary_expression] = STATE(3020), - [sym__pointer_indirection_expression] = STATE(2423), - [sym_query_expression] = STATE(3006), - [sym_from_clause] = STATE(6184), - [sym_conditional_expression] = STATE(3006), - [sym_conditional_access_expression] = STATE(3006), - [sym_as_expression] = STATE(3006), - [sym_is_expression] = STATE(3006), - [sym_is_pattern_expression] = STATE(3006), - [sym_cast_expression] = STATE(3006), - [sym_checked_expression] = STATE(3006), - [sym_invocation_expression] = STATE(3020), - [sym_switch_expression] = STATE(3006), - [sym_await_expression] = STATE(3020), - [sym_throw_expression] = STATE(3006), - [sym_element_access_expression] = STATE(2423), - [sym_interpolated_string_expression] = STATE(3006), - [sym_member_access_expression] = STATE(2423), - [sym_object_creation_expression] = STATE(3020), - [sym_parenthesized_expression] = STATE(3020), - [sym__parenthesized_lvalue_expression] = STATE(2423), - [sym_lambda_expression] = STATE(3006), - [sym__lambda_expression_init] = STATE(7393), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3006), - [sym_anonymous_method_expression] = STATE(3006), - [sym_anonymous_object_creation_expression] = STATE(3006), - [sym_implicit_array_creation_expression] = STATE(3006), - [sym_implicit_object_creation_expression] = STATE(3006), - [sym_implicit_stackalloc_expression] = STATE(3006), - [sym_initializer_expression] = STATE(3006), - [sym_default_expression] = STATE(3006), - [sym_with_expression] = STATE(3006), - [sym_sizeof_expression] = STATE(3006), - [sym_typeof_expression] = STATE(3006), - [sym_makeref_expression] = STATE(3006), - [sym_ref_expression] = STATE(3006), - [sym_reftype_expression] = STATE(3006), - [sym_refvalue_expression] = STATE(3006), - [sym_stackalloc_expression] = STATE(3006), - [sym_range_expression] = STATE(3006), - [sym_tuple_expression] = STATE(2423), - [sym_literal] = STATE(3006), - [sym_character_literal] = STATE(3011), - [sym_string_literal] = STATE(3011), - [sym_raw_string_literal] = STATE(3011), - [sym_boolean_literal] = STATE(3011), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3006), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(5528), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2225), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(4472), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_pattern] = STATE(6702), + [sym_constant_pattern] = STATE(3429), + [sym_parenthesized_pattern] = STATE(3429), + [sym_var_pattern] = STATE(3429), + [sym_type_pattern] = STATE(3429), + [sym_list_pattern] = STATE(3429), + [sym_recursive_pattern] = STATE(3429), + [sym_positional_pattern_clause] = STATE(5135), + [sym_property_pattern_clause] = STATE(5666), + [sym_subpattern] = STATE(6780), + [sym_relational_pattern] = STATE(3429), + [sym_negated_pattern] = STATE(3429), + [sym_and_pattern] = STATE(3429), + [sym_or_pattern] = STATE(3429), + [sym_declaration_pattern] = STATE(3429), + [sym_expression] = STATE(5405), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3660), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(4418), + [sym_postfix_unary_expression] = STATE(4403), + [sym_prefix_unary_expression] = STATE(4403), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6163), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(4418), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(4403), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(4418), + [sym_member_access_expression] = STATE(3127), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(4403), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7633), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(4418), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(4418), + [sym_typeof_expression] = STATE(4418), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(3127), + [sym_literal] = STATE(4418), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(263), [sym_preproc_endregion] = STATE(263), [sym_preproc_line] = STATE(263), @@ -81203,65 +81104,54 @@ 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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3440), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1241), - [anon_sym_LPAREN] = ACTIONS(2213), - [anon_sym_ref] = ACTIONS(2215), - [anon_sym_LBRACE] = ACTIONS(1247), - [anon_sym_delegate] = ACTIONS(1249), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_LPAREN] = ACTIONS(1141), + [anon_sym_ref] = ACTIONS(2005), + [anon_sym_LBRACE] = ACTIONS(1057), + [anon_sym_RBRACE] = ACTIONS(2181), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(2217), - [anon_sym_LT] = ACTIONS(1165), - [anon_sym_GT] = ACTIONS(1165), + [anon_sym_new] = ACTIONS(1095), + [anon_sym_LT] = ACTIONS(1061), + [anon_sym_GT] = ACTIONS(1061), [anon_sym_where] = ACTIONS(29), - [anon_sym_QMARK] = ACTIONS(1165), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1253), - [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(1259), - [anon_sym_false] = ACTIONS(1259), - [anon_sym_PLUS] = ACTIONS(2219), - [anon_sym_DASH] = ACTIONS(2219), - [anon_sym_STAR] = ACTIONS(2223), - [anon_sym_SLASH] = ACTIONS(1165), - [anon_sym_PERCENT] = ACTIONS(1151), - [anon_sym_CARET] = ACTIONS(2221), - [anon_sym_PIPE] = ACTIONS(1165), - [anon_sym_AMP] = ACTIONS(2219), - [anon_sym_LT_LT] = ACTIONS(1151), - [anon_sym_GT_GT] = ACTIONS(1165), - [anon_sym_GT_GT_GT] = ACTIONS(1151), - [anon_sym_EQ_EQ] = ACTIONS(1151), - [anon_sym_BANG_EQ] = ACTIONS(1151), - [anon_sym_GT_EQ] = ACTIONS(1151), - [anon_sym_LT_EQ] = ACTIONS(1151), - [anon_sym_this] = ACTIONS(1263), - [anon_sym_DOT] = ACTIONS(1165), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1265), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1267), - [anon_sym_unchecked] = ACTIONS(1253), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(1101), + [anon_sym_TILDE] = ACTIONS(1101), + [anon_sym_PLUS_PLUS] = ACTIONS(1101), + [anon_sym_DASH_DASH] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(77), + [anon_sym_false] = ACTIONS(77), + [anon_sym_PLUS] = ACTIONS(1103), + [anon_sym_DASH] = ACTIONS(1103), + [anon_sym_STAR] = ACTIONS(1227), + [anon_sym_CARET] = ACTIONS(1101), + [anon_sym_AMP] = ACTIONS(1101), + [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_switch] = ACTIONS(1165), - [anon_sym_default] = ACTIONS(1269), - [anon_sym_throw] = ACTIONS(2225), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(1231), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2227), - [anon_sym_DOT_DOT] = ACTIONS(2229), - [anon_sym_AMP_AMP] = ACTIONS(1151), - [anon_sym_PIPE_PIPE] = ACTIONS(1151), - [anon_sym_QMARK_QMARK] = ACTIONS(1151), + [anon_sym_await] = ACTIONS(1233), + [sym_discard] = ACTIONS(1081), + [anon_sym_DOT_DOT] = ACTIONS(1235), + [anon_sym_not] = ACTIONS(1085), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -81274,23 +81164,19 @@ static const uint16_t ts_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(1165), - [anon_sym_is] = ACTIONS(1165), - [anon_sym_DASH_GT] = ACTIONS(1151), - [anon_sym_stackalloc] = ACTIONS(1277), - [anon_sym_with] = ACTIONS(1165), - [anon_sym_sizeof] = ACTIONS(1279), - [anon_sym_typeof] = ACTIONS(1281), - [anon_sym___makeref] = ACTIONS(1283), - [anon_sym___reftype] = ACTIONS(1285), - [anon_sym___refvalue] = ACTIONS(1287), - [sym_null_literal] = ACTIONS(1289), - [anon_sym_SQUOTE] = ACTIONS(1291), - [sym_integer_literal] = ACTIONS(1289), - [sym_real_literal] = ACTIONS(1293), - [anon_sym_DQUOTE] = ACTIONS(1295), - [sym_verbatim_string_literal] = ACTIONS(1293), - [aux_sym_preproc_if_token1] = ACTIONS(1297), + [anon_sym_stackalloc] = ACTIONS(127), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_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), @@ -81301,90 +81187,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(1299), - [sym_interpolation_verbatim_start] = ACTIONS(1301), - [sym_interpolation_raw_start] = ACTIONS(1303), - [sym_raw_string_start] = ACTIONS(1305), + [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(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2420), - [sym__name] = STATE(5897), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2397), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(5120), - [sym_non_lvalue_expression] = STATE(3066), - [sym_lvalue_expression] = STATE(3632), - [sym__expression_statement_expression] = STATE(3006), - [sym_assignment_expression] = STATE(3020), - [sym_binary_expression] = STATE(3006), - [sym_postfix_unary_expression] = STATE(3020), - [sym_prefix_unary_expression] = STATE(3020), - [sym__pointer_indirection_expression] = STATE(2423), - [sym_query_expression] = STATE(3006), - [sym_from_clause] = STATE(6184), - [sym_conditional_expression] = STATE(3006), - [sym_conditional_access_expression] = STATE(3006), - [sym_as_expression] = STATE(3006), - [sym_is_expression] = STATE(3006), - [sym_is_pattern_expression] = STATE(3006), - [sym_cast_expression] = STATE(3006), - [sym_checked_expression] = STATE(3006), - [sym_invocation_expression] = STATE(3020), - [sym_switch_expression] = STATE(3006), - [sym_await_expression] = STATE(3020), - [sym_throw_expression] = STATE(3006), - [sym_element_access_expression] = STATE(2423), - [sym_interpolated_string_expression] = STATE(3006), - [sym_member_access_expression] = STATE(2423), - [sym_object_creation_expression] = STATE(3020), - [sym_parenthesized_expression] = STATE(3020), - [sym__parenthesized_lvalue_expression] = STATE(2423), - [sym_lambda_expression] = STATE(3006), - [sym__lambda_expression_init] = STATE(7393), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3006), - [sym_anonymous_method_expression] = STATE(3006), - [sym_anonymous_object_creation_expression] = STATE(3006), - [sym_implicit_array_creation_expression] = STATE(3006), - [sym_implicit_object_creation_expression] = STATE(3006), - [sym_implicit_stackalloc_expression] = STATE(3006), - [sym_initializer_expression] = STATE(3006), - [sym_default_expression] = STATE(3006), - [sym_with_expression] = STATE(3006), - [sym_sizeof_expression] = STATE(3006), - [sym_typeof_expression] = STATE(3006), - [sym_makeref_expression] = STATE(3006), - [sym_ref_expression] = STATE(3006), - [sym_reftype_expression] = STATE(3006), - [sym_refvalue_expression] = STATE(3006), - [sym_stackalloc_expression] = STATE(3006), - [sym_range_expression] = STATE(3006), - [sym_tuple_expression] = STATE(2423), - [sym_literal] = STATE(3006), - [sym_character_literal] = STATE(3011), - [sym_string_literal] = STATE(3011), - [sym_raw_string_literal] = STATE(3011), - [sym_boolean_literal] = STATE(3011), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3006), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(5706), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2270), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5197), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_pattern] = STATE(6511), + [sym_constant_pattern] = STATE(3429), + [sym_parenthesized_pattern] = STATE(3429), + [sym_var_pattern] = STATE(3429), + [sym_type_pattern] = STATE(3429), + [sym_list_pattern] = STATE(3429), + [sym_recursive_pattern] = STATE(3429), + [sym_positional_pattern_clause] = STATE(5689), + [sym_property_pattern_clause] = STATE(5723), + [sym_relational_pattern] = STATE(3429), + [sym_negated_pattern] = STATE(3429), + [sym_and_pattern] = STATE(3429), + [sym_or_pattern] = STATE(3429), + [sym_declaration_pattern] = STATE(3429), + [sym_expression] = STATE(5654), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3510), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(4202), + [sym_postfix_unary_expression] = STATE(4203), + [sym_prefix_unary_expression] = STATE(4203), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6134), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(4202), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(4203), + [sym_switch_expression] = STATE(3102), + [sym_switch_expression_arm] = STATE(7113), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(4202), + [sym_member_access_expression] = STATE(3112), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(4203), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7425), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(4202), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(4202), + [sym_typeof_expression] = STATE(4202), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(3112), + [sym_literal] = STATE(4202), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2261), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(264), [sym_preproc_endregion] = STATE(264), [sym_preproc_line] = STATE(264), @@ -81394,65 +81295,54 @@ 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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3440), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1241), - [anon_sym_LPAREN] = ACTIONS(2213), - [anon_sym_ref] = ACTIONS(2215), - [anon_sym_LBRACE] = ACTIONS(1247), - [anon_sym_delegate] = ACTIONS(1249), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_LPAREN] = ACTIONS(1989), + [anon_sym_ref] = ACTIONS(1991), + [anon_sym_LBRACE] = ACTIONS(1057), + [anon_sym_RBRACE] = ACTIONS(2183), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(2217), - [anon_sym_LT] = ACTIONS(1223), - [anon_sym_GT] = ACTIONS(1223), + [anon_sym_new] = ACTIONS(1059), + [anon_sym_LT] = ACTIONS(1995), + [anon_sym_GT] = ACTIONS(1995), [anon_sym_where] = ACTIONS(29), - [anon_sym_QMARK] = ACTIONS(1223), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1253), - [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(1259), - [anon_sym_false] = ACTIONS(1259), - [anon_sym_PLUS] = ACTIONS(2219), - [anon_sym_DASH] = ACTIONS(2219), - [anon_sym_STAR] = ACTIONS(2223), - [anon_sym_SLASH] = ACTIONS(1223), - [anon_sym_PERCENT] = ACTIONS(1221), - [anon_sym_CARET] = ACTIONS(2221), - [anon_sym_PIPE] = ACTIONS(1223), - [anon_sym_AMP] = ACTIONS(2219), - [anon_sym_LT_LT] = ACTIONS(1221), - [anon_sym_GT_GT] = ACTIONS(1223), - [anon_sym_GT_GT_GT] = ACTIONS(1221), - [anon_sym_EQ_EQ] = ACTIONS(1221), - [anon_sym_BANG_EQ] = ACTIONS(1221), - [anon_sym_GT_EQ] = ACTIONS(1221), - [anon_sym_LT_EQ] = ACTIONS(1221), - [anon_sym_this] = ACTIONS(1263), - [anon_sym_DOT] = ACTIONS(1223), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1265), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1267), - [anon_sym_unchecked] = ACTIONS(1253), + [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(1997), + [anon_sym_LT_EQ] = ACTIONS(1997), + [anon_sym_this] = ACTIONS(83), + [anon_sym_scoped] = ACTIONS(1073), + [anon_sym_base] = ACTIONS(87), + [anon_sym_var] = ACTIONS(1999), + [sym_predefined_type] = ACTIONS(91), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), - [anon_sym_switch] = ACTIONS(1223), - [anon_sym_default] = ACTIONS(1269), - [anon_sym_throw] = ACTIONS(2225), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(1527), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2227), - [anon_sym_DOT_DOT] = ACTIONS(2229), - [anon_sym_AMP_AMP] = ACTIONS(1221), - [anon_sym_PIPE_PIPE] = ACTIONS(1221), - [anon_sym_QMARK_QMARK] = ACTIONS(1221), + [anon_sym_await] = ACTIONS(1529), + [sym_discard] = ACTIONS(1081), + [anon_sym_DOT_DOT] = ACTIONS(123), + [anon_sym_not] = ACTIONS(2001), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -81465,23 +81355,19 @@ static const uint16_t ts_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(1223), - [anon_sym_is] = ACTIONS(1223), - [anon_sym_DASH_GT] = ACTIONS(1221), - [anon_sym_stackalloc] = ACTIONS(1277), - [anon_sym_with] = ACTIONS(1223), - [anon_sym_sizeof] = ACTIONS(1279), - [anon_sym_typeof] = ACTIONS(1281), - [anon_sym___makeref] = ACTIONS(1283), - [anon_sym___reftype] = ACTIONS(1285), - [anon_sym___refvalue] = ACTIONS(1287), - [sym_null_literal] = ACTIONS(1289), - [anon_sym_SQUOTE] = ACTIONS(1291), - [sym_integer_literal] = ACTIONS(1289), - [sym_real_literal] = ACTIONS(1293), - [anon_sym_DQUOTE] = ACTIONS(1295), - [sym_verbatim_string_literal] = ACTIONS(1293), - [aux_sym_preproc_if_token1] = ACTIONS(1297), + [anon_sym_stackalloc] = ACTIONS(127), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_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), @@ -81492,90 +81378,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1299), - [sym_interpolation_verbatim_start] = ACTIONS(1301), - [sym_interpolation_raw_start] = ACTIONS(1303), - [sym_raw_string_start] = ACTIONS(1305), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [sym_interpolation_raw_start] = ACTIONS(155), + [sym_raw_string_start] = ACTIONS(157), }, [265] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(5876), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2376), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(5542), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3681), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3080), - [sym_postfix_unary_expression] = STATE(3111), - [sym_prefix_unary_expression] = STATE(3111), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6170), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3080), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3111), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3080), - [sym_member_access_expression] = STATE(2484), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3111), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7511), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(3080), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3080), - [sym_typeof_expression] = STATE(3080), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2484), - [sym_literal] = STATE(3080), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(5881), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2386), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(4200), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3132), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3102), + [sym_postfix_unary_expression] = STATE(3079), + [sym_prefix_unary_expression] = STATE(3079), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6158), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3102), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3079), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3102), + [sym_member_access_expression] = STATE(2472), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3079), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7650), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(3102), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3102), + [sym_typeof_expression] = STATE(3102), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2472), + [sym_literal] = STATE(3102), + [sym_character_literal] = STATE(3037), + [sym_string_literal] = STATE(3037), + [sym_raw_string_literal] = STATE(3037), + [sym_boolean_literal] = STATE(3037), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(265), [sym_preproc_endregion] = STATE(265), [sym_preproc_line] = STATE(265), @@ -81585,65 +81471,65 @@ 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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1481), - [anon_sym_LPAREN] = ACTIONS(2231), - [anon_sym_ref] = ACTIONS(2233), - [anon_sym_LBRACE] = ACTIONS(1487), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), - [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(2235), - [anon_sym_LT] = ACTIONS(1165), - [anon_sym_GT] = ACTIONS(1165), - [anon_sym_where] = ACTIONS(29), - [anon_sym_QMARK] = ACTIONS(1165), - [anon_sym_notnull] = ACTIONS(29), - [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1067), - [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(2237), - [anon_sym_DASH] = ACTIONS(2237), - [anon_sym_STAR] = ACTIONS(2241), - [anon_sym_SLASH] = ACTIONS(1165), - [anon_sym_PERCENT] = ACTIONS(1151), - [anon_sym_CARET] = ACTIONS(2239), - [anon_sym_PIPE] = ACTIONS(1165), - [anon_sym_AMP] = ACTIONS(2237), - [anon_sym_LT_LT] = ACTIONS(1151), - [anon_sym_GT_GT] = ACTIONS(1165), - [anon_sym_GT_GT_GT] = ACTIONS(1151), - [anon_sym_EQ_EQ] = ACTIONS(1151), - [anon_sym_BANG_EQ] = ACTIONS(1151), - [anon_sym_GT_EQ] = ACTIONS(1151), - [anon_sym_LT_EQ] = ACTIONS(1151), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1479), + [anon_sym_LPAREN] = ACTIONS(2185), + [anon_sym_ref] = ACTIONS(2187), + [anon_sym_LBRACE] = ACTIONS(1481), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), + [anon_sym_file] = ACTIONS(29), + [anon_sym_new] = ACTIONS(1899), + [anon_sym_LT] = ACTIONS(1221), + [anon_sym_GT] = ACTIONS(1221), + [anon_sym_where] = ACTIONS(29), + [anon_sym_QMARK] = ACTIONS(1221), + [anon_sym_notnull] = ACTIONS(29), + [anon_sym_unmanaged] = ACTIONS(29), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(2189), + [anon_sym_TILDE] = ACTIONS(2191), + [anon_sym_PLUS_PLUS] = ACTIONS(2191), + [anon_sym_DASH_DASH] = ACTIONS(2191), + [anon_sym_true] = ACTIONS(1257), + [anon_sym_false] = ACTIONS(1257), + [anon_sym_PLUS] = ACTIONS(2189), + [anon_sym_DASH] = ACTIONS(2189), + [anon_sym_STAR] = ACTIONS(1905), + [anon_sym_SLASH] = ACTIONS(1221), + [anon_sym_PERCENT] = ACTIONS(1219), + [anon_sym_CARET] = ACTIONS(2191), + [anon_sym_PIPE] = ACTIONS(1221), + [anon_sym_AMP] = ACTIONS(2189), + [anon_sym_LT_LT] = ACTIONS(1219), + [anon_sym_GT_GT] = ACTIONS(1221), + [anon_sym_GT_GT_GT] = ACTIONS(1219), + [anon_sym_EQ_EQ] = ACTIONS(1219), + [anon_sym_BANG_EQ] = ACTIONS(1219), + [anon_sym_GT_EQ] = ACTIONS(1219), + [anon_sym_LT_EQ] = ACTIONS(1219), [anon_sym_this] = ACTIONS(83), - [anon_sym_DOT] = ACTIONS(1165), + [anon_sym_DOT] = ACTIONS(1221), [anon_sym_scoped] = ACTIONS(85), [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1067), + [sym_predefined_type] = ACTIONS(1265), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), - [anon_sym_switch] = ACTIONS(1165), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(2243), + [anon_sym_switch] = ACTIONS(1221), + [anon_sym_default] = ACTIONS(1267), + [anon_sym_throw] = ACTIONS(2193), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2245), - [anon_sym_DOT_DOT] = ACTIONS(2247), - [anon_sym_AMP_AMP] = ACTIONS(1151), - [anon_sym_PIPE_PIPE] = ACTIONS(1151), - [anon_sym_QMARK_QMARK] = ACTIONS(1151), + [anon_sym_await] = ACTIONS(2195), + [anon_sym_DOT_DOT] = ACTIONS(2197), + [anon_sym_AMP_AMP] = ACTIONS(1219), + [anon_sym_PIPE_PIPE] = ACTIONS(1219), + [anon_sym_QMARK_QMARK] = ACTIONS(1219), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -81656,23 +81542,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(1165), - [anon_sym_is] = ACTIONS(1165), - [anon_sym_DASH_GT] = ACTIONS(1151), + [anon_sym_as] = ACTIONS(1221), + [anon_sym_is] = ACTIONS(1221), + [anon_sym_DASH_GT] = ACTIONS(1219), [anon_sym_stackalloc] = ACTIONS(127), - [anon_sym_with] = ACTIONS(1165), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), + [anon_sym_with] = ACTIONS(1221), + [anon_sym_sizeof] = ACTIONS(1277), + [anon_sym_typeof] = ACTIONS(1279), [anon_sym___makeref] = ACTIONS(133), [anon_sym___reftype] = ACTIONS(135), [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1089), + [sym_null_literal] = ACTIONS(1287), + [anon_sym_SQUOTE] = ACTIONS(1289), + [sym_integer_literal] = ACTIONS(1287), + [sym_real_literal] = ACTIONS(1291), + [anon_sym_DQUOTE] = ACTIONS(1293), + [sym_verbatim_string_literal] = ACTIONS(1291), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -81683,90 +81569,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(151), - [sym_interpolation_verbatim_start] = ACTIONS(153), - [sym_interpolation_raw_start] = ACTIONS(155), - [sym_raw_string_start] = ACTIONS(157), + [sym_interpolation_regular_start] = ACTIONS(1297), + [sym_interpolation_verbatim_start] = ACTIONS(1299), + [sym_interpolation_raw_start] = ACTIONS(1301), + [sym_raw_string_start] = ACTIONS(1303), }, [266] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2420), - [sym__name] = STATE(5875), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2369), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(4167), - [sym_non_lvalue_expression] = STATE(3066), - [sym_lvalue_expression] = STATE(3125), - [sym__expression_statement_expression] = STATE(3006), - [sym_assignment_expression] = STATE(3020), - [sym_binary_expression] = STATE(3006), - [sym_postfix_unary_expression] = STATE(3020), - [sym_prefix_unary_expression] = STATE(3020), - [sym__pointer_indirection_expression] = STATE(2423), - [sym_query_expression] = STATE(3006), - [sym_from_clause] = STATE(6145), - [sym_conditional_expression] = STATE(3006), - [sym_conditional_access_expression] = STATE(3006), - [sym_as_expression] = STATE(3006), - [sym_is_expression] = STATE(3006), - [sym_is_pattern_expression] = STATE(3006), - [sym_cast_expression] = STATE(3006), - [sym_checked_expression] = STATE(3006), - [sym_invocation_expression] = STATE(3020), - [sym_switch_expression] = STATE(3006), - [sym_await_expression] = STATE(3020), - [sym_throw_expression] = STATE(3006), - [sym_element_access_expression] = STATE(2423), - [sym_interpolated_string_expression] = STATE(3006), - [sym_member_access_expression] = STATE(2423), - [sym_object_creation_expression] = STATE(3020), - [sym_parenthesized_expression] = STATE(3020), - [sym__parenthesized_lvalue_expression] = STATE(2423), - [sym_lambda_expression] = STATE(3006), - [sym__lambda_expression_init] = STATE(7538), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3006), - [sym_anonymous_method_expression] = STATE(3006), - [sym_anonymous_object_creation_expression] = STATE(3006), - [sym_implicit_array_creation_expression] = STATE(3006), - [sym_implicit_object_creation_expression] = STATE(3006), - [sym_implicit_stackalloc_expression] = STATE(3006), - [sym_initializer_expression] = STATE(3006), - [sym_default_expression] = STATE(3006), - [sym_with_expression] = STATE(3006), - [sym_sizeof_expression] = STATE(3006), - [sym_typeof_expression] = STATE(3006), - [sym_makeref_expression] = STATE(3006), - [sym_ref_expression] = STATE(3006), - [sym_reftype_expression] = STATE(3006), - [sym_refvalue_expression] = STATE(3006), - [sym_stackalloc_expression] = STATE(3006), - [sym_range_expression] = STATE(3006), - [sym_tuple_expression] = STATE(2423), - [sym_literal] = STATE(3006), - [sym_character_literal] = STATE(3011), - [sym_string_literal] = STATE(3011), - [sym_raw_string_literal] = STATE(3011), - [sym_boolean_literal] = STATE(3011), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3006), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(5881), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2386), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(4193), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3132), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3102), + [sym_postfix_unary_expression] = STATE(3079), + [sym_prefix_unary_expression] = STATE(3079), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6158), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3102), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3079), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3102), + [sym_member_access_expression] = STATE(2472), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3079), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7650), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(3102), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3102), + [sym_typeof_expression] = STATE(3102), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2472), + [sym_literal] = STATE(3102), + [sym_character_literal] = STATE(3037), + [sym_string_literal] = STATE(3037), + [sym_raw_string_literal] = STATE(3037), + [sym_boolean_literal] = STATE(3037), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(266), [sym_preproc_endregion] = STATE(266), [sym_preproc_line] = STATE(266), @@ -81776,65 +81662,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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3440), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1241), - [anon_sym_LPAREN] = ACTIONS(2195), - [anon_sym_ref] = ACTIONS(2197), - [anon_sym_LBRACE] = ACTIONS(1247), - [anon_sym_delegate] = ACTIONS(1249), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1479), + [anon_sym_LPAREN] = ACTIONS(2185), + [anon_sym_ref] = ACTIONS(2187), + [anon_sym_LBRACE] = ACTIONS(1481), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1845), - [anon_sym_LT] = ACTIONS(1223), - [anon_sym_GT] = ACTIONS(1223), + [anon_sym_new] = ACTIONS(1899), + [anon_sym_LT] = ACTIONS(1161), + [anon_sym_GT] = ACTIONS(1161), [anon_sym_where] = ACTIONS(29), - [anon_sym_QMARK] = ACTIONS(1223), + [anon_sym_QMARK] = ACTIONS(1161), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1253), - [anon_sym_BANG] = ACTIONS(2199), - [anon_sym_TILDE] = ACTIONS(2201), - [anon_sym_PLUS_PLUS] = ACTIONS(2201), - [anon_sym_DASH_DASH] = ACTIONS(2201), - [anon_sym_true] = ACTIONS(1259), - [anon_sym_false] = ACTIONS(1259), - [anon_sym_PLUS] = ACTIONS(2199), - [anon_sym_DASH] = ACTIONS(2199), - [anon_sym_STAR] = ACTIONS(1851), - [anon_sym_SLASH] = ACTIONS(1223), - [anon_sym_PERCENT] = ACTIONS(1221), - [anon_sym_CARET] = ACTIONS(2201), - [anon_sym_PIPE] = ACTIONS(1223), - [anon_sym_AMP] = ACTIONS(2199), - [anon_sym_LT_LT] = ACTIONS(1221), - [anon_sym_GT_GT] = ACTIONS(1223), - [anon_sym_GT_GT_GT] = ACTIONS(1221), - [anon_sym_EQ_EQ] = ACTIONS(1221), - [anon_sym_BANG_EQ] = ACTIONS(1221), - [anon_sym_GT_EQ] = ACTIONS(1221), - [anon_sym_LT_EQ] = ACTIONS(1221), - [anon_sym_this] = ACTIONS(1263), - [anon_sym_DOT] = ACTIONS(1223), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(2189), + [anon_sym_TILDE] = ACTIONS(2191), + [anon_sym_PLUS_PLUS] = ACTIONS(2191), + [anon_sym_DASH_DASH] = ACTIONS(2191), + [anon_sym_true] = ACTIONS(1257), + [anon_sym_false] = ACTIONS(1257), + [anon_sym_PLUS] = ACTIONS(2189), + [anon_sym_DASH] = ACTIONS(2189), + [anon_sym_STAR] = ACTIONS(1905), + [anon_sym_SLASH] = ACTIONS(1161), + [anon_sym_PERCENT] = ACTIONS(1147), + [anon_sym_CARET] = ACTIONS(2191), + [anon_sym_PIPE] = ACTIONS(1161), + [anon_sym_AMP] = ACTIONS(2189), + [anon_sym_LT_LT] = ACTIONS(1147), + [anon_sym_GT_GT] = ACTIONS(1161), + [anon_sym_GT_GT_GT] = ACTIONS(1147), + [anon_sym_EQ_EQ] = ACTIONS(1147), + [anon_sym_BANG_EQ] = ACTIONS(1147), + [anon_sym_GT_EQ] = ACTIONS(1147), + [anon_sym_LT_EQ] = ACTIONS(1147), + [anon_sym_this] = ACTIONS(83), + [anon_sym_DOT] = ACTIONS(1161), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1265), + [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1267), - [anon_sym_unchecked] = ACTIONS(1253), + [sym_predefined_type] = ACTIONS(1265), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), - [anon_sym_switch] = ACTIONS(1223), - [anon_sym_default] = ACTIONS(1269), - [anon_sym_throw] = ACTIONS(2203), + [anon_sym_switch] = ACTIONS(1161), + [anon_sym_default] = ACTIONS(1267), + [anon_sym_throw] = ACTIONS(2193), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2205), - [anon_sym_DOT_DOT] = ACTIONS(2207), - [anon_sym_AMP_AMP] = ACTIONS(1221), - [anon_sym_PIPE_PIPE] = ACTIONS(1221), - [anon_sym_QMARK_QMARK] = ACTIONS(1221), + [anon_sym_await] = ACTIONS(2195), + [anon_sym_DOT_DOT] = ACTIONS(2197), + [anon_sym_AMP_AMP] = ACTIONS(1147), + [anon_sym_PIPE_PIPE] = ACTIONS(1147), + [anon_sym_QMARK_QMARK] = ACTIONS(1147), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -81847,23 +81733,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(1223), - [anon_sym_is] = ACTIONS(1223), - [anon_sym_DASH_GT] = ACTIONS(1221), - [anon_sym_stackalloc] = ACTIONS(1277), - [anon_sym_with] = ACTIONS(1223), - [anon_sym_sizeof] = ACTIONS(1279), - [anon_sym_typeof] = ACTIONS(1281), - [anon_sym___makeref] = ACTIONS(1283), - [anon_sym___reftype] = ACTIONS(1285), - [anon_sym___refvalue] = ACTIONS(1287), - [sym_null_literal] = ACTIONS(1289), - [anon_sym_SQUOTE] = ACTIONS(1291), - [sym_integer_literal] = ACTIONS(1289), - [sym_real_literal] = ACTIONS(1293), - [anon_sym_DQUOTE] = ACTIONS(1295), - [sym_verbatim_string_literal] = ACTIONS(1293), - [aux_sym_preproc_if_token1] = ACTIONS(1297), + [anon_sym_as] = ACTIONS(1161), + [anon_sym_is] = ACTIONS(1161), + [anon_sym_DASH_GT] = ACTIONS(1147), + [anon_sym_stackalloc] = ACTIONS(127), + [anon_sym_with] = ACTIONS(1161), + [anon_sym_sizeof] = ACTIONS(1277), + [anon_sym_typeof] = ACTIONS(1279), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), + [sym_null_literal] = ACTIONS(1287), + [anon_sym_SQUOTE] = ACTIONS(1289), + [sym_integer_literal] = ACTIONS(1287), + [sym_real_literal] = ACTIONS(1291), + [anon_sym_DQUOTE] = ACTIONS(1293), + [sym_verbatim_string_literal] = ACTIONS(1291), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -81874,105 +81760,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1299), - [sym_interpolation_verbatim_start] = ACTIONS(1301), - [sym_interpolation_raw_start] = ACTIONS(1303), - [sym_raw_string_start] = ACTIONS(1305), + [sym_interpolation_regular_start] = ACTIONS(1297), + [sym_interpolation_verbatim_start] = ACTIONS(1299), + [sym_interpolation_raw_start] = ACTIONS(1301), + [sym_raw_string_start] = ACTIONS(1303), }, [267] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(5634), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2230), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(4363), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_pattern] = STATE(6717), - [sym_constant_pattern] = STATE(3486), - [sym_parenthesized_pattern] = STATE(3486), - [sym_var_pattern] = STATE(3486), - [sym_type_pattern] = STATE(3486), - [sym_list_pattern] = STATE(3486), - [sym_recursive_pattern] = STATE(3486), - [sym_positional_pattern_clause] = STATE(5175), - [sym_property_pattern_clause] = STATE(5675), - [sym_subpattern] = STATE(6964), - [sym_relational_pattern] = STATE(3486), - [sym_negated_pattern] = STATE(3486), - [sym_and_pattern] = STATE(3486), - [sym_or_pattern] = STATE(3486), - [sym_declaration_pattern] = STATE(3486), - [sym_expression] = STATE(5385), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3664), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(4419), - [sym_postfix_unary_expression] = STATE(4420), - [sym_prefix_unary_expression] = STATE(4420), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6161), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(4419), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(4420), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(4419), - [sym_member_access_expression] = STATE(3135), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(4420), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7773), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(4419), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(4419), - [sym_typeof_expression] = STATE(4419), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(3135), - [sym_literal] = STATE(4419), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(5895), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2376), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(5513), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3643), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3102), + [sym_postfix_unary_expression] = STATE(3079), + [sym_prefix_unary_expression] = STATE(3079), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6148), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3102), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3079), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3102), + [sym_member_access_expression] = STATE(2472), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3079), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7304), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(3102), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3102), + [sym_typeof_expression] = STATE(3102), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2472), + [sym_literal] = STATE(3102), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(267), [sym_preproc_endregion] = STATE(267), [sym_preproc_line] = STATE(267), @@ -81982,54 +81853,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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), - [sym__identifier_token] = ACTIONS(25), - [anon_sym_alias] = ACTIONS(29), - [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1049), - [anon_sym_LPAREN] = ACTIONS(1143), - [anon_sym_ref] = ACTIONS(2075), - [anon_sym_LBRACE] = ACTIONS(1059), - [anon_sym_RBRACE] = ACTIONS(2249), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), - [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1101), - [anon_sym_LT] = ACTIONS(1063), - [anon_sym_GT] = ACTIONS(1063), - [anon_sym_where] = ACTIONS(29), - [anon_sym_notnull] = ACTIONS(29), - [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1067), - [anon_sym_BANG] = ACTIONS(1107), - [anon_sym_TILDE] = ACTIONS(1107), - [anon_sym_PLUS_PLUS] = ACTIONS(1107), - [anon_sym_DASH_DASH] = ACTIONS(1107), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1109), - [anon_sym_DASH] = ACTIONS(1109), - [anon_sym_STAR] = ACTIONS(1229), - [anon_sym_CARET] = ACTIONS(1107), - [anon_sym_AMP] = ACTIONS(1107), - [anon_sym_GT_EQ] = ACTIONS(1073), - [anon_sym_LT_EQ] = ACTIONS(1073), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), + [sym__identifier_token] = ACTIONS(25), + [anon_sym_alias] = ACTIONS(29), + [anon_sym_global] = ACTIONS(29), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1479), + [anon_sym_LPAREN] = ACTIONS(2199), + [anon_sym_ref] = ACTIONS(2201), + [anon_sym_LBRACE] = ACTIONS(1481), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), + [anon_sym_file] = ACTIONS(29), + [anon_sym_new] = ACTIONS(2203), + [anon_sym_LT] = ACTIONS(1221), + [anon_sym_GT] = ACTIONS(1221), + [anon_sym_where] = ACTIONS(29), + [anon_sym_QMARK] = ACTIONS(1221), + [anon_sym_notnull] = ACTIONS(29), + [anon_sym_unmanaged] = ACTIONS(29), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(2205), + [anon_sym_TILDE] = ACTIONS(2207), + [anon_sym_PLUS_PLUS] = ACTIONS(2207), + [anon_sym_DASH_DASH] = ACTIONS(2207), + [anon_sym_true] = ACTIONS(77), + [anon_sym_false] = ACTIONS(77), + [anon_sym_PLUS] = ACTIONS(2205), + [anon_sym_DASH] = ACTIONS(2205), + [anon_sym_STAR] = ACTIONS(2209), + [anon_sym_SLASH] = ACTIONS(1221), + [anon_sym_PERCENT] = ACTIONS(1219), + [anon_sym_CARET] = ACTIONS(2207), + [anon_sym_PIPE] = ACTIONS(1221), + [anon_sym_AMP] = ACTIONS(2205), + [anon_sym_LT_LT] = ACTIONS(1219), + [anon_sym_GT_GT] = ACTIONS(1221), + [anon_sym_GT_GT_GT] = ACTIONS(1219), + [anon_sym_EQ_EQ] = ACTIONS(1219), + [anon_sym_BANG_EQ] = ACTIONS(1219), + [anon_sym_GT_EQ] = ACTIONS(1219), + [anon_sym_LT_EQ] = ACTIONS(1219), [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(1075), + [anon_sym_DOT] = ACTIONS(1221), + [anon_sym_scoped] = ACTIONS(85), [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(1077), + [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1067), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), + [anon_sym_switch] = ACTIONS(1221), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1233), + [anon_sym_throw] = ACTIONS(2211), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1235), - [sym_discard] = ACTIONS(1083), - [anon_sym_DOT_DOT] = ACTIONS(1237), - [anon_sym_not] = ACTIONS(1087), + [anon_sym_await] = ACTIONS(2213), + [anon_sym_DOT_DOT] = ACTIONS(2215), + [anon_sym_AMP_AMP] = ACTIONS(1219), + [anon_sym_PIPE_PIPE] = ACTIONS(1219), + [anon_sym_QMARK_QMARK] = ACTIONS(1219), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -82042,7 +81924,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(1221), + [anon_sym_is] = ACTIONS(1221), + [anon_sym_DASH_GT] = ACTIONS(1219), [anon_sym_stackalloc] = ACTIONS(127), + [anon_sym_with] = ACTIONS(1221), [anon_sym_sizeof] = ACTIONS(129), [anon_sym_typeof] = ACTIONS(131), [anon_sym___makeref] = ACTIONS(133), @@ -82054,7 +81940,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(1089), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -82071,84 +81957,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [268] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(5891), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2372), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(5398), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3653), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3080), - [sym_postfix_unary_expression] = STATE(3111), - [sym_prefix_unary_expression] = STATE(3111), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6158), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3080), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3111), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3080), - [sym_member_access_expression] = STATE(2484), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3111), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7448), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(3080), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3080), - [sym_typeof_expression] = STATE(3080), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2484), - [sym_literal] = STATE(3080), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(5895), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2376), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(5577), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3643), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3102), + [sym_postfix_unary_expression] = STATE(3079), + [sym_prefix_unary_expression] = STATE(3079), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6148), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3102), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3079), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3102), + [sym_member_access_expression] = STATE(2472), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3079), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7304), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(3102), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3102), + [sym_typeof_expression] = STATE(3102), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2472), + [sym_literal] = STATE(3102), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(268), [sym_preproc_endregion] = STATE(268), [sym_preproc_line] = STATE(268), @@ -82158,65 +82044,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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), - [sym__identifier_token] = ACTIONS(25), - [anon_sym_alias] = ACTIONS(29), - [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1481), - [anon_sym_LPAREN] = ACTIONS(2159), - [anon_sym_ref] = ACTIONS(2161), - [anon_sym_LBRACE] = ACTIONS(1487), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), - [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(2163), - [anon_sym_LT] = ACTIONS(1223), - [anon_sym_GT] = ACTIONS(1223), - [anon_sym_where] = ACTIONS(29), - [anon_sym_QMARK] = ACTIONS(1223), - [anon_sym_notnull] = ACTIONS(29), - [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1067), - [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(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(2165), - [anon_sym_DASH] = ACTIONS(2165), - [anon_sym_STAR] = ACTIONS(2169), - [anon_sym_SLASH] = ACTIONS(1223), - [anon_sym_PERCENT] = ACTIONS(1221), - [anon_sym_CARET] = ACTIONS(2167), - [anon_sym_PIPE] = ACTIONS(1223), - [anon_sym_AMP] = ACTIONS(2165), - [anon_sym_LT_LT] = ACTIONS(1221), - [anon_sym_GT_GT] = ACTIONS(1223), - [anon_sym_GT_GT_GT] = ACTIONS(1221), - [anon_sym_EQ_EQ] = ACTIONS(1221), - [anon_sym_BANG_EQ] = ACTIONS(1221), - [anon_sym_GT_EQ] = ACTIONS(1221), - [anon_sym_LT_EQ] = ACTIONS(1221), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), + [sym__identifier_token] = ACTIONS(25), + [anon_sym_alias] = ACTIONS(29), + [anon_sym_global] = ACTIONS(29), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1479), + [anon_sym_LPAREN] = ACTIONS(2199), + [anon_sym_ref] = ACTIONS(2201), + [anon_sym_LBRACE] = ACTIONS(1481), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), + [anon_sym_file] = ACTIONS(29), + [anon_sym_new] = ACTIONS(2203), + [anon_sym_LT] = ACTIONS(1161), + [anon_sym_GT] = ACTIONS(1161), + [anon_sym_where] = ACTIONS(29), + [anon_sym_QMARK] = ACTIONS(1161), + [anon_sym_notnull] = ACTIONS(29), + [anon_sym_unmanaged] = ACTIONS(29), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(2205), + [anon_sym_TILDE] = ACTIONS(2207), + [anon_sym_PLUS_PLUS] = ACTIONS(2207), + [anon_sym_DASH_DASH] = ACTIONS(2207), + [anon_sym_true] = ACTIONS(77), + [anon_sym_false] = ACTIONS(77), + [anon_sym_PLUS] = ACTIONS(2205), + [anon_sym_DASH] = ACTIONS(2205), + [anon_sym_STAR] = ACTIONS(2209), + [anon_sym_SLASH] = ACTIONS(1161), + [anon_sym_PERCENT] = ACTIONS(1147), + [anon_sym_CARET] = ACTIONS(2207), + [anon_sym_PIPE] = ACTIONS(1161), + [anon_sym_AMP] = ACTIONS(2205), + [anon_sym_LT_LT] = ACTIONS(1147), + [anon_sym_GT_GT] = ACTIONS(1161), + [anon_sym_GT_GT_GT] = ACTIONS(1147), + [anon_sym_EQ_EQ] = ACTIONS(1147), + [anon_sym_BANG_EQ] = ACTIONS(1147), + [anon_sym_GT_EQ] = ACTIONS(1147), + [anon_sym_LT_EQ] = ACTIONS(1147), [anon_sym_this] = ACTIONS(83), - [anon_sym_DOT] = ACTIONS(1223), + [anon_sym_DOT] = ACTIONS(1161), [anon_sym_scoped] = ACTIONS(85), [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1067), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), - [anon_sym_switch] = ACTIONS(1223), + [anon_sym_switch] = ACTIONS(1161), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(2171), + [anon_sym_throw] = ACTIONS(2211), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2173), - [anon_sym_DOT_DOT] = ACTIONS(2175), - [anon_sym_AMP_AMP] = ACTIONS(1221), - [anon_sym_PIPE_PIPE] = ACTIONS(1221), - [anon_sym_QMARK_QMARK] = ACTIONS(1221), + [anon_sym_await] = ACTIONS(2213), + [anon_sym_DOT_DOT] = ACTIONS(2215), + [anon_sym_AMP_AMP] = ACTIONS(1147), + [anon_sym_PIPE_PIPE] = ACTIONS(1147), + [anon_sym_QMARK_QMARK] = ACTIONS(1147), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -82229,11 +82115,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(1223), - [anon_sym_is] = ACTIONS(1223), - [anon_sym_DASH_GT] = ACTIONS(1221), + [anon_sym_as] = ACTIONS(1161), + [anon_sym_is] = ACTIONS(1161), + [anon_sym_DASH_GT] = ACTIONS(1147), [anon_sym_stackalloc] = ACTIONS(127), - [anon_sym_with] = ACTIONS(1223), + [anon_sym_with] = ACTIONS(1161), [anon_sym_sizeof] = ACTIONS(129), [anon_sym_typeof] = ACTIONS(131), [anon_sym___makeref] = ACTIONS(133), @@ -82245,7 +82131,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(1089), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -82262,84 +82148,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [269] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(5907), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2404), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(4234), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3140), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3080), - [sym_postfix_unary_expression] = STATE(3111), - [sym_prefix_unary_expression] = STATE(3111), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6183), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3080), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3111), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3080), - [sym_member_access_expression] = STATE(2484), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3111), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7703), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(3080), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3080), - [sym_typeof_expression] = STATE(3080), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2484), - [sym_literal] = STATE(3080), - [sym_character_literal] = STATE(3011), - [sym_string_literal] = STATE(3011), - [sym_raw_string_literal] = STATE(3011), - [sym_boolean_literal] = STATE(3011), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2416), + [sym__name] = STATE(5897), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2367), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(5206), + [sym_non_lvalue_expression] = STATE(3040), + [sym_lvalue_expression] = STATE(3600), + [sym__expression_statement_expression] = STATE(3035), + [sym_assignment_expression] = STATE(3043), + [sym_binary_expression] = STATE(3035), + [sym_postfix_unary_expression] = STATE(3043), + [sym_prefix_unary_expression] = STATE(3043), + [sym__pointer_indirection_expression] = STATE(2415), + [sym_query_expression] = STATE(3035), + [sym_from_clause] = STATE(6156), + [sym_conditional_expression] = STATE(3035), + [sym_conditional_access_expression] = STATE(3035), + [sym_as_expression] = STATE(3035), + [sym_is_expression] = STATE(3035), + [sym_is_pattern_expression] = STATE(3035), + [sym_cast_expression] = STATE(3035), + [sym_checked_expression] = STATE(3035), + [sym_invocation_expression] = STATE(3043), + [sym_switch_expression] = STATE(3035), + [sym_await_expression] = STATE(3043), + [sym_throw_expression] = STATE(3035), + [sym_element_access_expression] = STATE(2415), + [sym_interpolated_string_expression] = STATE(3035), + [sym_member_access_expression] = STATE(2415), + [sym_object_creation_expression] = STATE(3043), + [sym_parenthesized_expression] = STATE(3043), + [sym__parenthesized_lvalue_expression] = STATE(2415), + [sym_lambda_expression] = STATE(3035), + [sym__lambda_expression_init] = STATE(7561), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3035), + [sym_anonymous_method_expression] = STATE(3035), + [sym_anonymous_object_creation_expression] = STATE(3035), + [sym_implicit_array_creation_expression] = STATE(3035), + [sym_implicit_object_creation_expression] = STATE(3035), + [sym_implicit_stackalloc_expression] = STATE(3035), + [sym_initializer_expression] = STATE(3035), + [sym_default_expression] = STATE(3035), + [sym_with_expression] = STATE(3035), + [sym_sizeof_expression] = STATE(3035), + [sym_typeof_expression] = STATE(3035), + [sym_makeref_expression] = STATE(3035), + [sym_ref_expression] = STATE(3035), + [sym_reftype_expression] = STATE(3035), + [sym_refvalue_expression] = STATE(3035), + [sym_stackalloc_expression] = STATE(3035), + [sym_range_expression] = STATE(3035), + [sym_tuple_expression] = STATE(2415), + [sym_literal] = STATE(3035), + [sym_character_literal] = STATE(3037), + [sym_string_literal] = STATE(3037), + [sym_raw_string_literal] = STATE(3037), + [sym_boolean_literal] = STATE(3037), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3035), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(269), [sym_preproc_endregion] = STATE(269), [sym_preproc_line] = STATE(269), @@ -82349,65 +82235,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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), - [sym__identifier_token] = ACTIONS(25), - [anon_sym_alias] = ACTIONS(29), - [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1481), - [anon_sym_LPAREN] = ACTIONS(2251), - [anon_sym_ref] = ACTIONS(2253), - [anon_sym_LBRACE] = ACTIONS(1487), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), - [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1937), - [anon_sym_LT] = ACTIONS(1165), - [anon_sym_GT] = ACTIONS(1165), - [anon_sym_where] = ACTIONS(29), - [anon_sym_QMARK] = ACTIONS(1165), - [anon_sym_notnull] = ACTIONS(29), - [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1067), - [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(1259), - [anon_sym_false] = ACTIONS(1259), - [anon_sym_PLUS] = ACTIONS(2255), - [anon_sym_DASH] = ACTIONS(2255), - [anon_sym_STAR] = ACTIONS(1943), - [anon_sym_SLASH] = ACTIONS(1165), - [anon_sym_PERCENT] = ACTIONS(1151), - [anon_sym_CARET] = ACTIONS(2257), - [anon_sym_PIPE] = ACTIONS(1165), - [anon_sym_AMP] = ACTIONS(2255), - [anon_sym_LT_LT] = ACTIONS(1151), - [anon_sym_GT_GT] = ACTIONS(1165), - [anon_sym_GT_GT_GT] = ACTIONS(1151), - [anon_sym_EQ_EQ] = ACTIONS(1151), - [anon_sym_BANG_EQ] = ACTIONS(1151), - [anon_sym_GT_EQ] = ACTIONS(1151), - [anon_sym_LT_EQ] = ACTIONS(1151), - [anon_sym_this] = ACTIONS(83), - [anon_sym_DOT] = ACTIONS(1165), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1267), - [anon_sym_unchecked] = ACTIONS(1067), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3455), + [sym__identifier_token] = ACTIONS(25), + [anon_sym_alias] = ACTIONS(29), + [anon_sym_global] = ACTIONS(29), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1239), + [anon_sym_LPAREN] = ACTIONS(2217), + [anon_sym_ref] = ACTIONS(2219), + [anon_sym_LBRACE] = ACTIONS(1245), + [anon_sym_delegate] = ACTIONS(1247), + [anon_sym_async] = ACTIONS(1045), + [anon_sym_file] = ACTIONS(29), + [anon_sym_new] = ACTIONS(2221), + [anon_sym_LT] = ACTIONS(1221), + [anon_sym_GT] = ACTIONS(1221), + [anon_sym_where] = ACTIONS(29), + [anon_sym_QMARK] = ACTIONS(1221), + [anon_sym_notnull] = ACTIONS(29), + [anon_sym_unmanaged] = ACTIONS(29), + [anon_sym_checked] = ACTIONS(1251), + [anon_sym_BANG] = ACTIONS(2223), + [anon_sym_TILDE] = ACTIONS(2225), + [anon_sym_PLUS_PLUS] = ACTIONS(2225), + [anon_sym_DASH_DASH] = ACTIONS(2225), + [anon_sym_true] = ACTIONS(1257), + [anon_sym_false] = ACTIONS(1257), + [anon_sym_PLUS] = ACTIONS(2223), + [anon_sym_DASH] = ACTIONS(2223), + [anon_sym_STAR] = ACTIONS(2227), + [anon_sym_SLASH] = ACTIONS(1221), + [anon_sym_PERCENT] = ACTIONS(1219), + [anon_sym_CARET] = ACTIONS(2225), + [anon_sym_PIPE] = ACTIONS(1221), + [anon_sym_AMP] = ACTIONS(2223), + [anon_sym_LT_LT] = ACTIONS(1219), + [anon_sym_GT_GT] = ACTIONS(1221), + [anon_sym_GT_GT_GT] = ACTIONS(1219), + [anon_sym_EQ_EQ] = ACTIONS(1219), + [anon_sym_BANG_EQ] = ACTIONS(1219), + [anon_sym_GT_EQ] = ACTIONS(1219), + [anon_sym_LT_EQ] = ACTIONS(1219), + [anon_sym_this] = ACTIONS(1261), + [anon_sym_DOT] = ACTIONS(1221), + [anon_sym_scoped] = ACTIONS(85), + [anon_sym_base] = ACTIONS(1263), + [anon_sym_var] = ACTIONS(89), + [sym_predefined_type] = ACTIONS(1265), + [anon_sym_unchecked] = ACTIONS(1251), [anon_sym_yield] = ACTIONS(29), - [anon_sym_switch] = ACTIONS(1165), - [anon_sym_default] = ACTIONS(1269), - [anon_sym_throw] = ACTIONS(2259), + [anon_sym_switch] = ACTIONS(1221), + [anon_sym_default] = ACTIONS(1267), + [anon_sym_throw] = ACTIONS(2229), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2261), - [anon_sym_DOT_DOT] = ACTIONS(2263), - [anon_sym_AMP_AMP] = ACTIONS(1151), - [anon_sym_PIPE_PIPE] = ACTIONS(1151), - [anon_sym_QMARK_QMARK] = ACTIONS(1151), + [anon_sym_await] = ACTIONS(2231), + [anon_sym_DOT_DOT] = ACTIONS(2233), + [anon_sym_AMP_AMP] = ACTIONS(1219), + [anon_sym_PIPE_PIPE] = ACTIONS(1219), + [anon_sym_QMARK_QMARK] = ACTIONS(1219), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -82420,23 +82306,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(1165), - [anon_sym_is] = ACTIONS(1165), - [anon_sym_DASH_GT] = ACTIONS(1151), - [anon_sym_stackalloc] = ACTIONS(127), - [anon_sym_with] = ACTIONS(1165), - [anon_sym_sizeof] = ACTIONS(1279), - [anon_sym_typeof] = ACTIONS(1281), - [anon_sym___makeref] = ACTIONS(133), - [anon_sym___reftype] = ACTIONS(135), - [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(1289), - [anon_sym_SQUOTE] = ACTIONS(1291), - [sym_integer_literal] = ACTIONS(1289), - [sym_real_literal] = ACTIONS(1293), - [anon_sym_DQUOTE] = ACTIONS(1295), - [sym_verbatim_string_literal] = ACTIONS(1293), - [aux_sym_preproc_if_token1] = ACTIONS(1089), + [anon_sym_as] = ACTIONS(1221), + [anon_sym_is] = ACTIONS(1221), + [anon_sym_DASH_GT] = ACTIONS(1219), + [anon_sym_stackalloc] = ACTIONS(1275), + [anon_sym_with] = ACTIONS(1221), + [anon_sym_sizeof] = ACTIONS(1277), + [anon_sym_typeof] = ACTIONS(1279), + [anon_sym___makeref] = ACTIONS(1281), + [anon_sym___reftype] = ACTIONS(1283), + [anon_sym___refvalue] = ACTIONS(1285), + [sym_null_literal] = ACTIONS(1287), + [anon_sym_SQUOTE] = ACTIONS(1289), + [sym_integer_literal] = ACTIONS(1287), + [sym_real_literal] = ACTIONS(1291), + [anon_sym_DQUOTE] = ACTIONS(1293), + [sym_verbatim_string_literal] = ACTIONS(1291), + [aux_sym_preproc_if_token1] = ACTIONS(1295), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -82447,90 +82333,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(1299), - [sym_interpolation_verbatim_start] = ACTIONS(1301), - [sym_interpolation_raw_start] = ACTIONS(1303), - [sym_raw_string_start] = ACTIONS(1305), + [sym_interpolation_regular_start] = ACTIONS(1297), + [sym_interpolation_verbatim_start] = ACTIONS(1299), + [sym_interpolation_raw_start] = ACTIONS(1301), + [sym_raw_string_start] = ACTIONS(1303), }, [270] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(5876), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2376), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(5444), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3681), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3080), - [sym_postfix_unary_expression] = STATE(3111), - [sym_prefix_unary_expression] = STATE(3111), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6170), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3080), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3111), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3080), - [sym_member_access_expression] = STATE(2484), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3111), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7511), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(3080), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3080), - [sym_typeof_expression] = STATE(3080), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2484), - [sym_literal] = STATE(3080), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(5706), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2270), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5197), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_pattern] = STATE(6511), + [sym_constant_pattern] = STATE(3429), + [sym_parenthesized_pattern] = STATE(3429), + [sym_var_pattern] = STATE(3429), + [sym_type_pattern] = STATE(3429), + [sym_list_pattern] = STATE(3429), + [sym_recursive_pattern] = STATE(3429), + [sym_positional_pattern_clause] = STATE(5689), + [sym_property_pattern_clause] = STATE(5723), + [sym_relational_pattern] = STATE(3429), + [sym_negated_pattern] = STATE(3429), + [sym_and_pattern] = STATE(3429), + [sym_or_pattern] = STATE(3429), + [sym_declaration_pattern] = STATE(3429), + [sym_expression] = STATE(5654), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3510), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(4202), + [sym_postfix_unary_expression] = STATE(4203), + [sym_prefix_unary_expression] = STATE(4203), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6134), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(4202), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(4203), + [sym_switch_expression] = STATE(3102), + [sym_switch_expression_arm] = STATE(7113), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(4202), + [sym_member_access_expression] = STATE(3112), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(4203), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7425), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(4202), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(4202), + [sym_typeof_expression] = STATE(4202), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(3112), + [sym_literal] = STATE(4202), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2261), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(270), [sym_preproc_endregion] = STATE(270), [sym_preproc_line] = STATE(270), @@ -82540,65 +82441,54 @@ 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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1481), - [anon_sym_LPAREN] = ACTIONS(2231), - [anon_sym_ref] = ACTIONS(2233), - [anon_sym_LBRACE] = ACTIONS(1487), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), - [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(2235), - [anon_sym_LT] = ACTIONS(1223), - [anon_sym_GT] = ACTIONS(1223), - [anon_sym_where] = ACTIONS(29), - [anon_sym_QMARK] = ACTIONS(1223), - [anon_sym_notnull] = ACTIONS(29), - [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1067), - [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(2237), - [anon_sym_DASH] = ACTIONS(2237), - [anon_sym_STAR] = ACTIONS(2241), - [anon_sym_SLASH] = ACTIONS(1223), - [anon_sym_PERCENT] = ACTIONS(1221), - [anon_sym_CARET] = ACTIONS(2239), - [anon_sym_PIPE] = ACTIONS(1223), - [anon_sym_AMP] = ACTIONS(2237), - [anon_sym_LT_LT] = ACTIONS(1221), - [anon_sym_GT_GT] = ACTIONS(1223), - [anon_sym_GT_GT_GT] = ACTIONS(1221), - [anon_sym_EQ_EQ] = ACTIONS(1221), - [anon_sym_BANG_EQ] = ACTIONS(1221), - [anon_sym_GT_EQ] = ACTIONS(1221), - [anon_sym_LT_EQ] = ACTIONS(1221), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_LPAREN] = ACTIONS(1989), + [anon_sym_ref] = ACTIONS(1991), + [anon_sym_LBRACE] = ACTIONS(1057), + [anon_sym_RBRACE] = ACTIONS(2235), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), + [anon_sym_file] = ACTIONS(29), + [anon_sym_new] = ACTIONS(1059), + [anon_sym_LT] = ACTIONS(1995), + [anon_sym_GT] = ACTIONS(1995), + [anon_sym_where] = ACTIONS(29), + [anon_sym_notnull] = ACTIONS(29), + [anon_sym_unmanaged] = ACTIONS(29), + [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(1997), + [anon_sym_LT_EQ] = ACTIONS(1997), [anon_sym_this] = ACTIONS(83), - [anon_sym_DOT] = ACTIONS(1223), - [anon_sym_scoped] = ACTIONS(85), + [anon_sym_scoped] = ACTIONS(1073), [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(89), + [anon_sym_var] = ACTIONS(1999), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1067), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), - [anon_sym_switch] = ACTIONS(1223), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(2243), + [anon_sym_throw] = ACTIONS(1527), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2245), - [anon_sym_DOT_DOT] = ACTIONS(2247), - [anon_sym_AMP_AMP] = ACTIONS(1221), - [anon_sym_PIPE_PIPE] = ACTIONS(1221), - [anon_sym_QMARK_QMARK] = ACTIONS(1221), + [anon_sym_await] = ACTIONS(1529), + [sym_discard] = ACTIONS(1081), + [anon_sym_DOT_DOT] = ACTIONS(123), + [anon_sym_not] = ACTIONS(2001), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -82611,11 +82501,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(1223), - [anon_sym_is] = ACTIONS(1223), - [anon_sym_DASH_GT] = ACTIONS(1221), [anon_sym_stackalloc] = ACTIONS(127), - [anon_sym_with] = ACTIONS(1223), [anon_sym_sizeof] = ACTIONS(129), [anon_sym_typeof] = ACTIONS(131), [anon_sym___makeref] = ACTIONS(133), @@ -82627,7 +82513,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(1089), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -82644,84 +82530,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [271] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(5890), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2375), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(5515), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3656), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3080), - [sym_postfix_unary_expression] = STATE(3111), - [sym_prefix_unary_expression] = STATE(3111), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6157), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3080), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3111), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3080), - [sym_member_access_expression] = STATE(2484), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3111), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7362), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(3080), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3080), - [sym_typeof_expression] = STATE(3080), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2484), - [sym_literal] = STATE(3080), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(5893), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2361), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(5382), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3673), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3102), + [sym_postfix_unary_expression] = STATE(3079), + [sym_prefix_unary_expression] = STATE(3079), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6159), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3102), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3079), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3102), + [sym_member_access_expression] = STATE(2472), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3079), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7363), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(3102), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3102), + [sym_typeof_expression] = STATE(3102), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2472), + [sym_literal] = STATE(3102), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(271), [sym_preproc_endregion] = STATE(271), [sym_preproc_line] = STATE(271), @@ -82731,65 +82617,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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), - [sym__identifier_token] = ACTIONS(25), - [anon_sym_alias] = ACTIONS(29), - [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1481), - [anon_sym_LPAREN] = ACTIONS(2177), - [anon_sym_ref] = ACTIONS(2179), - [anon_sym_LBRACE] = ACTIONS(1487), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), - [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(2181), - [anon_sym_LT] = ACTIONS(1165), - [anon_sym_GT] = ACTIONS(1165), - [anon_sym_where] = ACTIONS(29), - [anon_sym_QMARK] = ACTIONS(1165), - [anon_sym_notnull] = ACTIONS(29), - [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1067), - [anon_sym_BANG] = ACTIONS(2183), - [anon_sym_TILDE] = ACTIONS(2185), - [anon_sym_PLUS_PLUS] = ACTIONS(2185), - [anon_sym_DASH_DASH] = ACTIONS(2185), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(2183), - [anon_sym_DASH] = ACTIONS(2183), - [anon_sym_STAR] = ACTIONS(2187), - [anon_sym_SLASH] = ACTIONS(1165), - [anon_sym_PERCENT] = ACTIONS(1151), - [anon_sym_CARET] = ACTIONS(2185), - [anon_sym_PIPE] = ACTIONS(1165), - [anon_sym_AMP] = ACTIONS(2183), - [anon_sym_LT_LT] = ACTIONS(1151), - [anon_sym_GT_GT] = ACTIONS(1165), - [anon_sym_GT_GT_GT] = ACTIONS(1151), - [anon_sym_EQ_EQ] = ACTIONS(1151), - [anon_sym_BANG_EQ] = ACTIONS(1151), - [anon_sym_GT_EQ] = ACTIONS(1151), - [anon_sym_LT_EQ] = ACTIONS(1151), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), + [sym__identifier_token] = ACTIONS(25), + [anon_sym_alias] = ACTIONS(29), + [anon_sym_global] = ACTIONS(29), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1479), + [anon_sym_LPAREN] = ACTIONS(2237), + [anon_sym_ref] = ACTIONS(2239), + [anon_sym_LBRACE] = ACTIONS(1481), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), + [anon_sym_file] = ACTIONS(29), + [anon_sym_new] = ACTIONS(2241), + [anon_sym_LT] = ACTIONS(1161), + [anon_sym_GT] = ACTIONS(1161), + [anon_sym_where] = ACTIONS(29), + [anon_sym_QMARK] = ACTIONS(1161), + [anon_sym_notnull] = ACTIONS(29), + [anon_sym_unmanaged] = ACTIONS(29), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(2243), + [anon_sym_TILDE] = ACTIONS(2245), + [anon_sym_PLUS_PLUS] = ACTIONS(2245), + [anon_sym_DASH_DASH] = ACTIONS(2245), + [anon_sym_true] = ACTIONS(77), + [anon_sym_false] = ACTIONS(77), + [anon_sym_PLUS] = ACTIONS(2243), + [anon_sym_DASH] = ACTIONS(2243), + [anon_sym_STAR] = ACTIONS(2247), + [anon_sym_SLASH] = ACTIONS(1161), + [anon_sym_PERCENT] = ACTIONS(1147), + [anon_sym_CARET] = ACTIONS(2245), + [anon_sym_PIPE] = ACTIONS(1161), + [anon_sym_AMP] = ACTIONS(2243), + [anon_sym_LT_LT] = ACTIONS(1147), + [anon_sym_GT_GT] = ACTIONS(1161), + [anon_sym_GT_GT_GT] = ACTIONS(1147), + [anon_sym_EQ_EQ] = ACTIONS(1147), + [anon_sym_BANG_EQ] = ACTIONS(1147), + [anon_sym_GT_EQ] = ACTIONS(1147), + [anon_sym_LT_EQ] = ACTIONS(1147), [anon_sym_this] = ACTIONS(83), - [anon_sym_DOT] = ACTIONS(1165), + [anon_sym_DOT] = ACTIONS(1161), [anon_sym_scoped] = ACTIONS(85), [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1067), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), - [anon_sym_switch] = ACTIONS(1165), + [anon_sym_switch] = ACTIONS(1161), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(2189), + [anon_sym_throw] = ACTIONS(2249), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2191), - [anon_sym_DOT_DOT] = ACTIONS(2193), - [anon_sym_AMP_AMP] = ACTIONS(1151), - [anon_sym_PIPE_PIPE] = ACTIONS(1151), - [anon_sym_QMARK_QMARK] = ACTIONS(1151), + [anon_sym_await] = ACTIONS(2251), + [anon_sym_DOT_DOT] = ACTIONS(2253), + [anon_sym_AMP_AMP] = ACTIONS(1147), + [anon_sym_PIPE_PIPE] = ACTIONS(1147), + [anon_sym_QMARK_QMARK] = ACTIONS(1147), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -82802,11 +82688,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(1165), - [anon_sym_is] = ACTIONS(1165), - [anon_sym_DASH_GT] = ACTIONS(1151), + [anon_sym_as] = ACTIONS(1161), + [anon_sym_is] = ACTIONS(1161), + [anon_sym_DASH_GT] = ACTIONS(1147), [anon_sym_stackalloc] = ACTIONS(127), - [anon_sym_with] = ACTIONS(1165), + [anon_sym_with] = ACTIONS(1161), [anon_sym_sizeof] = ACTIONS(129), [anon_sym_typeof] = ACTIONS(131), [anon_sym___makeref] = ACTIONS(133), @@ -82818,7 +82704,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(1089), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -82835,99 +82721,99 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [272] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(5723), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2284), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5162), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_pattern] = STATE(6590), - [sym_constant_pattern] = STATE(3486), - [sym_parenthesized_pattern] = STATE(3486), - [sym_var_pattern] = STATE(3486), - [sym_type_pattern] = STATE(3486), - [sym_list_pattern] = STATE(3486), - [sym_recursive_pattern] = STATE(3486), - [sym_positional_pattern_clause] = STATE(5670), - [sym_property_pattern_clause] = STATE(5735), - [sym_relational_pattern] = STATE(3486), - [sym_negated_pattern] = STATE(3486), - [sym_and_pattern] = STATE(3486), - [sym_or_pattern] = STATE(3486), - [sym_declaration_pattern] = STATE(3486), - [sym_expression] = STATE(5668), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3520), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(4216), - [sym_postfix_unary_expression] = STATE(4219), - [sym_prefix_unary_expression] = STATE(4219), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6154), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(4216), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(4219), - [sym_switch_expression] = STATE(3080), - [sym_switch_expression_arm] = STATE(7123), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(4216), - [sym_member_access_expression] = STATE(3121), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(4219), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7530), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(4216), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(4216), - [sym_typeof_expression] = STATE(4216), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(3121), - [sym_literal] = STATE(4216), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2267), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(5706), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2270), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5197), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_pattern] = STATE(6511), + [sym_constant_pattern] = STATE(3429), + [sym_parenthesized_pattern] = STATE(3429), + [sym_var_pattern] = STATE(3429), + [sym_type_pattern] = STATE(3429), + [sym_list_pattern] = STATE(3429), + [sym_recursive_pattern] = STATE(3429), + [sym_positional_pattern_clause] = STATE(5689), + [sym_property_pattern_clause] = STATE(5723), + [sym_relational_pattern] = STATE(3429), + [sym_negated_pattern] = STATE(3429), + [sym_and_pattern] = STATE(3429), + [sym_or_pattern] = STATE(3429), + [sym_declaration_pattern] = STATE(3429), + [sym_expression] = STATE(5654), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3510), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(4202), + [sym_postfix_unary_expression] = STATE(4203), + [sym_prefix_unary_expression] = STATE(4203), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6134), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(4202), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(4203), + [sym_switch_expression] = STATE(3102), + [sym_switch_expression_arm] = STATE(7113), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(4202), + [sym_member_access_expression] = STATE(3112), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(4203), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7425), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(4202), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(4202), + [sym_typeof_expression] = STATE(4202), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(3112), + [sym_literal] = STATE(4202), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2261), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(272), [sym_preproc_endregion] = STATE(272), [sym_preproc_line] = STATE(272), @@ -82937,54 +82823,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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1049), - [anon_sym_LPAREN] = ACTIONS(1985), - [anon_sym_ref] = ACTIONS(1987), - [anon_sym_LBRACE] = ACTIONS(1059), - [anon_sym_RBRACE] = ACTIONS(2265), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_LPAREN] = ACTIONS(1989), + [anon_sym_ref] = ACTIONS(1991), + [anon_sym_LBRACE] = ACTIONS(1057), + [anon_sym_RBRACE] = ACTIONS(2255), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1061), - [anon_sym_LT] = ACTIONS(1991), - [anon_sym_GT] = ACTIONS(1991), + [anon_sym_new] = ACTIONS(1059), + [anon_sym_LT] = ACTIONS(1995), + [anon_sym_GT] = ACTIONS(1995), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1067), - [anon_sym_BANG] = ACTIONS(1617), - [anon_sym_TILDE] = ACTIONS(1617), - [anon_sym_PLUS_PLUS] = ACTIONS(1617), - [anon_sym_DASH_DASH] = ACTIONS(1617), + [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(1615), - [anon_sym_DASH] = ACTIONS(1615), + [anon_sym_PLUS] = ACTIONS(1585), + [anon_sym_DASH] = ACTIONS(1585), [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(1617), - [anon_sym_AMP] = ACTIONS(1617), - [anon_sym_GT_EQ] = ACTIONS(1993), - [anon_sym_LT_EQ] = ACTIONS(1993), + [anon_sym_CARET] = ACTIONS(1587), + [anon_sym_AMP] = ACTIONS(1587), + [anon_sym_GT_EQ] = ACTIONS(1997), + [anon_sym_LT_EQ] = ACTIONS(1997), [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(1075), + [anon_sym_scoped] = ACTIONS(1073), [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(1995), + [anon_sym_var] = ACTIONS(1999), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1067), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1589), + [anon_sym_throw] = ACTIONS(1527), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1591), - [sym_discard] = ACTIONS(1083), + [anon_sym_await] = ACTIONS(1529), + [sym_discard] = ACTIONS(1081), [anon_sym_DOT_DOT] = ACTIONS(123), - [anon_sym_not] = ACTIONS(1997), + [anon_sym_not] = ACTIONS(2001), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -83009,7 +82895,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(1089), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -83026,84 +82912,99 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [273] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(5907), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2404), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(4233), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3140), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3080), - [sym_postfix_unary_expression] = STATE(3111), - [sym_prefix_unary_expression] = STATE(3111), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6183), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3080), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3111), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3080), - [sym_member_access_expression] = STATE(2484), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3111), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7703), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(3080), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3080), - [sym_typeof_expression] = STATE(3080), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2484), - [sym_literal] = STATE(3080), - [sym_character_literal] = STATE(3011), - [sym_string_literal] = STATE(3011), - [sym_raw_string_literal] = STATE(3011), - [sym_boolean_literal] = STATE(3011), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(5706), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2270), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5197), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_pattern] = STATE(6511), + [sym_constant_pattern] = STATE(3429), + [sym_parenthesized_pattern] = STATE(3429), + [sym_var_pattern] = STATE(3429), + [sym_type_pattern] = STATE(3429), + [sym_list_pattern] = STATE(3429), + [sym_recursive_pattern] = STATE(3429), + [sym_positional_pattern_clause] = STATE(5689), + [sym_property_pattern_clause] = STATE(5723), + [sym_relational_pattern] = STATE(3429), + [sym_negated_pattern] = STATE(3429), + [sym_and_pattern] = STATE(3429), + [sym_or_pattern] = STATE(3429), + [sym_declaration_pattern] = STATE(3429), + [sym_expression] = STATE(5654), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3510), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(4202), + [sym_postfix_unary_expression] = STATE(4203), + [sym_prefix_unary_expression] = STATE(4203), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6134), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(4202), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(4203), + [sym_switch_expression] = STATE(3102), + [sym_switch_expression_arm] = STATE(7113), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(4202), + [sym_member_access_expression] = STATE(3112), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(4203), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7425), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(4202), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(4202), + [sym_typeof_expression] = STATE(4202), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(3112), + [sym_literal] = STATE(4202), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2261), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(273), [sym_preproc_endregion] = STATE(273), [sym_preproc_line] = STATE(273), @@ -83113,65 +83014,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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1481), - [anon_sym_LPAREN] = ACTIONS(2251), - [anon_sym_ref] = ACTIONS(2253), - [anon_sym_LBRACE] = ACTIONS(1487), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), - [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1937), - [anon_sym_LT] = ACTIONS(1223), - [anon_sym_GT] = ACTIONS(1223), - [anon_sym_where] = ACTIONS(29), - [anon_sym_QMARK] = ACTIONS(1223), - [anon_sym_notnull] = ACTIONS(29), - [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1067), - [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(1259), - [anon_sym_false] = ACTIONS(1259), - [anon_sym_PLUS] = ACTIONS(2255), - [anon_sym_DASH] = ACTIONS(2255), - [anon_sym_STAR] = ACTIONS(1943), - [anon_sym_SLASH] = ACTIONS(1223), - [anon_sym_PERCENT] = ACTIONS(1221), - [anon_sym_CARET] = ACTIONS(2257), - [anon_sym_PIPE] = ACTIONS(1223), - [anon_sym_AMP] = ACTIONS(2255), - [anon_sym_LT_LT] = ACTIONS(1221), - [anon_sym_GT_GT] = ACTIONS(1223), - [anon_sym_GT_GT_GT] = ACTIONS(1221), - [anon_sym_EQ_EQ] = ACTIONS(1221), - [anon_sym_BANG_EQ] = ACTIONS(1221), - [anon_sym_GT_EQ] = ACTIONS(1221), - [anon_sym_LT_EQ] = ACTIONS(1221), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_LPAREN] = ACTIONS(1989), + [anon_sym_ref] = ACTIONS(1991), + [anon_sym_LBRACE] = ACTIONS(1057), + [anon_sym_RBRACE] = ACTIONS(2257), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), + [anon_sym_file] = ACTIONS(29), + [anon_sym_new] = ACTIONS(1059), + [anon_sym_LT] = ACTIONS(1995), + [anon_sym_GT] = ACTIONS(1995), + [anon_sym_where] = ACTIONS(29), + [anon_sym_notnull] = ACTIONS(29), + [anon_sym_unmanaged] = ACTIONS(29), + [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(1997), + [anon_sym_LT_EQ] = ACTIONS(1997), [anon_sym_this] = ACTIONS(83), - [anon_sym_DOT] = ACTIONS(1223), - [anon_sym_scoped] = ACTIONS(85), + [anon_sym_scoped] = ACTIONS(1073), [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1267), - [anon_sym_unchecked] = ACTIONS(1067), + [anon_sym_var] = ACTIONS(1999), + [sym_predefined_type] = ACTIONS(91), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), - [anon_sym_switch] = ACTIONS(1223), - [anon_sym_default] = ACTIONS(1269), - [anon_sym_throw] = ACTIONS(2259), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(1527), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2261), - [anon_sym_DOT_DOT] = ACTIONS(2263), - [anon_sym_AMP_AMP] = ACTIONS(1221), - [anon_sym_PIPE_PIPE] = ACTIONS(1221), - [anon_sym_QMARK_QMARK] = ACTIONS(1221), + [anon_sym_await] = ACTIONS(1529), + [sym_discard] = ACTIONS(1081), + [anon_sym_DOT_DOT] = ACTIONS(123), + [anon_sym_not] = ACTIONS(2001), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -83184,23 +83074,19 @@ static const uint16_t ts_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(1223), - [anon_sym_is] = ACTIONS(1223), - [anon_sym_DASH_GT] = ACTIONS(1221), [anon_sym_stackalloc] = ACTIONS(127), - [anon_sym_with] = ACTIONS(1223), - [anon_sym_sizeof] = ACTIONS(1279), - [anon_sym_typeof] = ACTIONS(1281), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), [anon_sym___makeref] = ACTIONS(133), [anon_sym___reftype] = ACTIONS(135), [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(1289), - [anon_sym_SQUOTE] = ACTIONS(1291), - [sym_integer_literal] = ACTIONS(1289), - [sym_real_literal] = ACTIONS(1293), - [anon_sym_DQUOTE] = ACTIONS(1295), - [sym_verbatim_string_literal] = ACTIONS(1293), - [aux_sym_preproc_if_token1] = ACTIONS(1089), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_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), @@ -83211,105 +83097,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(1299), - [sym_interpolation_verbatim_start] = ACTIONS(1301), - [sym_interpolation_raw_start] = ACTIONS(1303), - [sym_raw_string_start] = ACTIONS(1305), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [sym_interpolation_raw_start] = ACTIONS(155), + [sym_raw_string_start] = ACTIONS(157), }, [274] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(5723), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2284), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5162), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_pattern] = STATE(6590), - [sym_constant_pattern] = STATE(3486), - [sym_parenthesized_pattern] = STATE(3486), - [sym_var_pattern] = STATE(3486), - [sym_type_pattern] = STATE(3486), - [sym_list_pattern] = STATE(3486), - [sym_recursive_pattern] = STATE(3486), - [sym_positional_pattern_clause] = STATE(5670), - [sym_property_pattern_clause] = STATE(5735), - [sym_relational_pattern] = STATE(3486), - [sym_negated_pattern] = STATE(3486), - [sym_and_pattern] = STATE(3486), - [sym_or_pattern] = STATE(3486), - [sym_declaration_pattern] = STATE(3486), - [sym_expression] = STATE(5668), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3520), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(4216), - [sym_postfix_unary_expression] = STATE(4219), - [sym_prefix_unary_expression] = STATE(4219), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6154), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(4216), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(4219), - [sym_switch_expression] = STATE(3080), - [sym_switch_expression_arm] = STATE(7123), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(4216), - [sym_member_access_expression] = STATE(3121), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(4219), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7530), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(4216), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(4216), - [sym_typeof_expression] = STATE(4216), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(3121), - [sym_literal] = STATE(4216), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2267), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(5706), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2270), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5197), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_pattern] = STATE(6511), + [sym_constant_pattern] = STATE(3429), + [sym_parenthesized_pattern] = STATE(3429), + [sym_var_pattern] = STATE(3429), + [sym_type_pattern] = STATE(3429), + [sym_list_pattern] = STATE(3429), + [sym_recursive_pattern] = STATE(3429), + [sym_positional_pattern_clause] = STATE(5689), + [sym_property_pattern_clause] = STATE(5723), + [sym_relational_pattern] = STATE(3429), + [sym_negated_pattern] = STATE(3429), + [sym_and_pattern] = STATE(3429), + [sym_or_pattern] = STATE(3429), + [sym_declaration_pattern] = STATE(3429), + [sym_expression] = STATE(5654), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3510), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(4202), + [sym_postfix_unary_expression] = STATE(4203), + [sym_prefix_unary_expression] = STATE(4203), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6134), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(4202), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(4203), + [sym_switch_expression] = STATE(3102), + [sym_switch_expression_arm] = STATE(7113), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(4202), + [sym_member_access_expression] = STATE(3112), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(4203), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7425), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(4202), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(4202), + [sym_typeof_expression] = STATE(4202), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(3112), + [sym_literal] = STATE(4202), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2261), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(274), [sym_preproc_endregion] = STATE(274), [sym_preproc_line] = STATE(274), @@ -83319,54 +83205,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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1049), - [anon_sym_LPAREN] = ACTIONS(1985), - [anon_sym_ref] = ACTIONS(1987), - [anon_sym_LBRACE] = ACTIONS(1059), - [anon_sym_RBRACE] = ACTIONS(2267), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_LPAREN] = ACTIONS(1989), + [anon_sym_ref] = ACTIONS(1991), + [anon_sym_LBRACE] = ACTIONS(1057), + [anon_sym_RBRACE] = ACTIONS(2259), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1061), - [anon_sym_LT] = ACTIONS(1991), - [anon_sym_GT] = ACTIONS(1991), + [anon_sym_new] = ACTIONS(1059), + [anon_sym_LT] = ACTIONS(1995), + [anon_sym_GT] = ACTIONS(1995), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1067), - [anon_sym_BANG] = ACTIONS(1617), - [anon_sym_TILDE] = ACTIONS(1617), - [anon_sym_PLUS_PLUS] = ACTIONS(1617), - [anon_sym_DASH_DASH] = ACTIONS(1617), + [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(1615), - [anon_sym_DASH] = ACTIONS(1615), + [anon_sym_PLUS] = ACTIONS(1585), + [anon_sym_DASH] = ACTIONS(1585), [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(1617), - [anon_sym_AMP] = ACTIONS(1617), - [anon_sym_GT_EQ] = ACTIONS(1993), - [anon_sym_LT_EQ] = ACTIONS(1993), + [anon_sym_CARET] = ACTIONS(1587), + [anon_sym_AMP] = ACTIONS(1587), + [anon_sym_GT_EQ] = ACTIONS(1997), + [anon_sym_LT_EQ] = ACTIONS(1997), [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(1075), + [anon_sym_scoped] = ACTIONS(1073), [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(1995), + [anon_sym_var] = ACTIONS(1999), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1067), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1589), + [anon_sym_throw] = ACTIONS(1527), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1591), - [sym_discard] = ACTIONS(1083), + [anon_sym_await] = ACTIONS(1529), + [sym_discard] = ACTIONS(1081), [anon_sym_DOT_DOT] = ACTIONS(123), - [anon_sym_not] = ACTIONS(1997), + [anon_sym_not] = ACTIONS(2001), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -83391,7 +83277,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(1089), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -83408,99 +83294,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [275] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(5723), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2284), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5162), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_pattern] = STATE(6590), - [sym_constant_pattern] = STATE(3486), - [sym_parenthesized_pattern] = STATE(3486), - [sym_var_pattern] = STATE(3486), - [sym_type_pattern] = STATE(3486), - [sym_list_pattern] = STATE(3486), - [sym_recursive_pattern] = STATE(3486), - [sym_positional_pattern_clause] = STATE(5670), - [sym_property_pattern_clause] = STATE(5735), - [sym_relational_pattern] = STATE(3486), - [sym_negated_pattern] = STATE(3486), - [sym_and_pattern] = STATE(3486), - [sym_or_pattern] = STATE(3486), - [sym_declaration_pattern] = STATE(3486), - [sym_expression] = STATE(5668), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3520), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(4216), - [sym_postfix_unary_expression] = STATE(4219), - [sym_prefix_unary_expression] = STATE(4219), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6154), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(4216), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(4219), - [sym_switch_expression] = STATE(3080), - [sym_switch_expression_arm] = STATE(7123), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(4216), - [sym_member_access_expression] = STATE(3121), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(4219), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7530), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(4216), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(4216), - [sym_typeof_expression] = STATE(4216), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(3121), - [sym_literal] = STATE(4216), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2267), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2416), + [sym__name] = STATE(5885), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2404), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(4157), + [sym_non_lvalue_expression] = STATE(3040), + [sym_lvalue_expression] = STATE(3115), + [sym__expression_statement_expression] = STATE(3035), + [sym_assignment_expression] = STATE(3043), + [sym_binary_expression] = STATE(3035), + [sym_postfix_unary_expression] = STATE(3043), + [sym_prefix_unary_expression] = STATE(3043), + [sym__pointer_indirection_expression] = STATE(2415), + [sym_query_expression] = STATE(3035), + [sym_from_clause] = STATE(6162), + [sym_conditional_expression] = STATE(3035), + [sym_conditional_access_expression] = STATE(3035), + [sym_as_expression] = STATE(3035), + [sym_is_expression] = STATE(3035), + [sym_is_pattern_expression] = STATE(3035), + [sym_cast_expression] = STATE(3035), + [sym_checked_expression] = STATE(3035), + [sym_invocation_expression] = STATE(3043), + [sym_switch_expression] = STATE(3035), + [sym_await_expression] = STATE(3043), + [sym_throw_expression] = STATE(3035), + [sym_element_access_expression] = STATE(2415), + [sym_interpolated_string_expression] = STATE(3035), + [sym_member_access_expression] = STATE(2415), + [sym_object_creation_expression] = STATE(3043), + [sym_parenthesized_expression] = STATE(3043), + [sym__parenthesized_lvalue_expression] = STATE(2415), + [sym_lambda_expression] = STATE(3035), + [sym__lambda_expression_init] = STATE(7416), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3035), + [sym_anonymous_method_expression] = STATE(3035), + [sym_anonymous_object_creation_expression] = STATE(3035), + [sym_implicit_array_creation_expression] = STATE(3035), + [sym_implicit_object_creation_expression] = STATE(3035), + [sym_implicit_stackalloc_expression] = STATE(3035), + [sym_initializer_expression] = STATE(3035), + [sym_default_expression] = STATE(3035), + [sym_with_expression] = STATE(3035), + [sym_sizeof_expression] = STATE(3035), + [sym_typeof_expression] = STATE(3035), + [sym_makeref_expression] = STATE(3035), + [sym_ref_expression] = STATE(3035), + [sym_reftype_expression] = STATE(3035), + [sym_refvalue_expression] = STATE(3035), + [sym_stackalloc_expression] = STATE(3035), + [sym_range_expression] = STATE(3035), + [sym_tuple_expression] = STATE(2415), + [sym_literal] = STATE(3035), + [sym_character_literal] = STATE(3037), + [sym_string_literal] = STATE(3037), + [sym_raw_string_literal] = STATE(3037), + [sym_boolean_literal] = STATE(3037), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3035), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(275), [sym_preproc_endregion] = STATE(275), [sym_preproc_line] = STATE(275), @@ -83510,54 +83381,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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), - [sym__identifier_token] = ACTIONS(25), - [anon_sym_alias] = ACTIONS(29), - [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1049), - [anon_sym_LPAREN] = ACTIONS(1985), - [anon_sym_ref] = ACTIONS(1987), - [anon_sym_LBRACE] = ACTIONS(1059), - [anon_sym_RBRACE] = ACTIONS(2269), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), - [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1061), - [anon_sym_LT] = ACTIONS(1991), - [anon_sym_GT] = ACTIONS(1991), - [anon_sym_where] = ACTIONS(29), - [anon_sym_notnull] = ACTIONS(29), - [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1067), - [anon_sym_BANG] = ACTIONS(1617), - [anon_sym_TILDE] = ACTIONS(1617), - [anon_sym_PLUS_PLUS] = ACTIONS(1617), - [anon_sym_DASH_DASH] = ACTIONS(1617), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1615), - [anon_sym_DASH] = ACTIONS(1615), - [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(1617), - [anon_sym_AMP] = ACTIONS(1617), - [anon_sym_GT_EQ] = ACTIONS(1993), - [anon_sym_LT_EQ] = ACTIONS(1993), - [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(1075), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(1995), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1067), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3455), + [sym__identifier_token] = ACTIONS(25), + [anon_sym_alias] = ACTIONS(29), + [anon_sym_global] = ACTIONS(29), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1239), + [anon_sym_LPAREN] = ACTIONS(2261), + [anon_sym_ref] = ACTIONS(2263), + [anon_sym_LBRACE] = ACTIONS(1245), + [anon_sym_delegate] = ACTIONS(1247), + [anon_sym_async] = ACTIONS(1045), + [anon_sym_file] = ACTIONS(29), + [anon_sym_new] = ACTIONS(1935), + [anon_sym_LT] = ACTIONS(1221), + [anon_sym_GT] = ACTIONS(1221), + [anon_sym_where] = ACTIONS(29), + [anon_sym_QMARK] = ACTIONS(1221), + [anon_sym_notnull] = ACTIONS(29), + [anon_sym_unmanaged] = ACTIONS(29), + [anon_sym_checked] = ACTIONS(1251), + [anon_sym_BANG] = ACTIONS(2265), + [anon_sym_TILDE] = ACTIONS(2267), + [anon_sym_PLUS_PLUS] = ACTIONS(2267), + [anon_sym_DASH_DASH] = ACTIONS(2267), + [anon_sym_true] = ACTIONS(1257), + [anon_sym_false] = ACTIONS(1257), + [anon_sym_PLUS] = ACTIONS(2265), + [anon_sym_DASH] = ACTIONS(2265), + [anon_sym_STAR] = ACTIONS(1941), + [anon_sym_SLASH] = ACTIONS(1221), + [anon_sym_PERCENT] = ACTIONS(1219), + [anon_sym_CARET] = ACTIONS(2267), + [anon_sym_PIPE] = ACTIONS(1221), + [anon_sym_AMP] = ACTIONS(2265), + [anon_sym_LT_LT] = ACTIONS(1219), + [anon_sym_GT_GT] = ACTIONS(1221), + [anon_sym_GT_GT_GT] = ACTIONS(1219), + [anon_sym_EQ_EQ] = ACTIONS(1219), + [anon_sym_BANG_EQ] = ACTIONS(1219), + [anon_sym_GT_EQ] = ACTIONS(1219), + [anon_sym_LT_EQ] = ACTIONS(1219), + [anon_sym_this] = ACTIONS(1261), + [anon_sym_DOT] = ACTIONS(1221), + [anon_sym_scoped] = ACTIONS(85), + [anon_sym_base] = ACTIONS(1263), + [anon_sym_var] = ACTIONS(89), + [sym_predefined_type] = ACTIONS(1265), + [anon_sym_unchecked] = ACTIONS(1251), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1589), + [anon_sym_switch] = ACTIONS(1221), + [anon_sym_default] = ACTIONS(1267), + [anon_sym_throw] = ACTIONS(2269), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1591), - [sym_discard] = ACTIONS(1083), - [anon_sym_DOT_DOT] = ACTIONS(123), - [anon_sym_not] = ACTIONS(1997), + [anon_sym_await] = ACTIONS(2271), + [anon_sym_DOT_DOT] = ACTIONS(2273), + [anon_sym_AMP_AMP] = ACTIONS(1219), + [anon_sym_PIPE_PIPE] = ACTIONS(1219), + [anon_sym_QMARK_QMARK] = ACTIONS(1219), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -83570,19 +83452,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(1089), + [anon_sym_as] = ACTIONS(1221), + [anon_sym_is] = ACTIONS(1221), + [anon_sym_DASH_GT] = ACTIONS(1219), + [anon_sym_stackalloc] = ACTIONS(1275), + [anon_sym_with] = ACTIONS(1221), + [anon_sym_sizeof] = ACTIONS(1277), + [anon_sym_typeof] = ACTIONS(1279), + [anon_sym___makeref] = ACTIONS(1281), + [anon_sym___reftype] = ACTIONS(1283), + [anon_sym___refvalue] = ACTIONS(1285), + [sym_null_literal] = ACTIONS(1287), + [anon_sym_SQUOTE] = ACTIONS(1289), + [sym_integer_literal] = ACTIONS(1287), + [sym_real_literal] = ACTIONS(1291), + [anon_sym_DQUOTE] = ACTIONS(1293), + [sym_verbatim_string_literal] = ACTIONS(1291), + [aux_sym_preproc_if_token1] = ACTIONS(1295), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -83593,105 +83479,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(151), - [sym_interpolation_verbatim_start] = ACTIONS(153), - [sym_interpolation_raw_start] = ACTIONS(155), - [sym_raw_string_start] = ACTIONS(157), + [sym_interpolation_regular_start] = ACTIONS(1297), + [sym_interpolation_verbatim_start] = ACTIONS(1299), + [sym_interpolation_raw_start] = ACTIONS(1301), + [sym_raw_string_start] = ACTIONS(1303), }, [276] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(5634), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2230), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(4363), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_pattern] = STATE(6717), - [sym_constant_pattern] = STATE(3486), - [sym_parenthesized_pattern] = STATE(3486), - [sym_var_pattern] = STATE(3486), - [sym_type_pattern] = STATE(3486), - [sym_list_pattern] = STATE(3486), - [sym_recursive_pattern] = STATE(3486), - [sym_positional_pattern_clause] = STATE(5175), - [sym_property_pattern_clause] = STATE(5675), - [sym_subpattern] = STATE(6964), - [sym_relational_pattern] = STATE(3486), - [sym_negated_pattern] = STATE(3486), - [sym_and_pattern] = STATE(3486), - [sym_or_pattern] = STATE(3486), - [sym_declaration_pattern] = STATE(3486), - [sym_expression] = STATE(5385), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3664), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(4419), - [sym_postfix_unary_expression] = STATE(4420), - [sym_prefix_unary_expression] = STATE(4420), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6161), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(4419), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(4420), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(4419), - [sym_member_access_expression] = STATE(3135), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(4420), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7773), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(4419), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(4419), - [sym_typeof_expression] = STATE(4419), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(3135), - [sym_literal] = STATE(4419), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2416), + [sym__name] = STATE(5885), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2404), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(4135), + [sym_non_lvalue_expression] = STATE(3040), + [sym_lvalue_expression] = STATE(3115), + [sym__expression_statement_expression] = STATE(3035), + [sym_assignment_expression] = STATE(3043), + [sym_binary_expression] = STATE(3035), + [sym_postfix_unary_expression] = STATE(3043), + [sym_prefix_unary_expression] = STATE(3043), + [sym__pointer_indirection_expression] = STATE(2415), + [sym_query_expression] = STATE(3035), + [sym_from_clause] = STATE(6162), + [sym_conditional_expression] = STATE(3035), + [sym_conditional_access_expression] = STATE(3035), + [sym_as_expression] = STATE(3035), + [sym_is_expression] = STATE(3035), + [sym_is_pattern_expression] = STATE(3035), + [sym_cast_expression] = STATE(3035), + [sym_checked_expression] = STATE(3035), + [sym_invocation_expression] = STATE(3043), + [sym_switch_expression] = STATE(3035), + [sym_await_expression] = STATE(3043), + [sym_throw_expression] = STATE(3035), + [sym_element_access_expression] = STATE(2415), + [sym_interpolated_string_expression] = STATE(3035), + [sym_member_access_expression] = STATE(2415), + [sym_object_creation_expression] = STATE(3043), + [sym_parenthesized_expression] = STATE(3043), + [sym__parenthesized_lvalue_expression] = STATE(2415), + [sym_lambda_expression] = STATE(3035), + [sym__lambda_expression_init] = STATE(7416), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3035), + [sym_anonymous_method_expression] = STATE(3035), + [sym_anonymous_object_creation_expression] = STATE(3035), + [sym_implicit_array_creation_expression] = STATE(3035), + [sym_implicit_object_creation_expression] = STATE(3035), + [sym_implicit_stackalloc_expression] = STATE(3035), + [sym_initializer_expression] = STATE(3035), + [sym_default_expression] = STATE(3035), + [sym_with_expression] = STATE(3035), + [sym_sizeof_expression] = STATE(3035), + [sym_typeof_expression] = STATE(3035), + [sym_makeref_expression] = STATE(3035), + [sym_ref_expression] = STATE(3035), + [sym_reftype_expression] = STATE(3035), + [sym_refvalue_expression] = STATE(3035), + [sym_stackalloc_expression] = STATE(3035), + [sym_range_expression] = STATE(3035), + [sym_tuple_expression] = STATE(2415), + [sym_literal] = STATE(3035), + [sym_character_literal] = STATE(3037), + [sym_string_literal] = STATE(3037), + [sym_raw_string_literal] = STATE(3037), + [sym_boolean_literal] = STATE(3037), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3035), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(276), [sym_preproc_endregion] = STATE(276), [sym_preproc_line] = STATE(276), @@ -83701,54 +83572,65 @@ 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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3455), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1049), - [anon_sym_LPAREN] = ACTIONS(1143), - [anon_sym_ref] = ACTIONS(2075), - [anon_sym_LBRACE] = ACTIONS(1059), - [anon_sym_RBRACE] = ACTIONS(2271), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1239), + [anon_sym_LPAREN] = ACTIONS(2261), + [anon_sym_ref] = ACTIONS(2263), + [anon_sym_LBRACE] = ACTIONS(1245), + [anon_sym_delegate] = ACTIONS(1247), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1101), - [anon_sym_LT] = ACTIONS(1063), - [anon_sym_GT] = ACTIONS(1063), + [anon_sym_new] = ACTIONS(1935), + [anon_sym_LT] = ACTIONS(1161), + [anon_sym_GT] = ACTIONS(1161), [anon_sym_where] = ACTIONS(29), + [anon_sym_QMARK] = ACTIONS(1161), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1067), - [anon_sym_BANG] = ACTIONS(1107), - [anon_sym_TILDE] = ACTIONS(1107), - [anon_sym_PLUS_PLUS] = ACTIONS(1107), - [anon_sym_DASH_DASH] = ACTIONS(1107), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1109), - [anon_sym_DASH] = ACTIONS(1109), - [anon_sym_STAR] = ACTIONS(1229), - [anon_sym_CARET] = ACTIONS(1107), - [anon_sym_AMP] = ACTIONS(1107), - [anon_sym_GT_EQ] = ACTIONS(1073), - [anon_sym_LT_EQ] = ACTIONS(1073), - [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(1075), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(1077), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1067), + [anon_sym_checked] = ACTIONS(1251), + [anon_sym_BANG] = ACTIONS(2265), + [anon_sym_TILDE] = ACTIONS(2267), + [anon_sym_PLUS_PLUS] = ACTIONS(2267), + [anon_sym_DASH_DASH] = ACTIONS(2267), + [anon_sym_true] = ACTIONS(1257), + [anon_sym_false] = ACTIONS(1257), + [anon_sym_PLUS] = ACTIONS(2265), + [anon_sym_DASH] = ACTIONS(2265), + [anon_sym_STAR] = ACTIONS(1941), + [anon_sym_SLASH] = ACTIONS(1161), + [anon_sym_PERCENT] = ACTIONS(1147), + [anon_sym_CARET] = ACTIONS(2267), + [anon_sym_PIPE] = ACTIONS(1161), + [anon_sym_AMP] = ACTIONS(2265), + [anon_sym_LT_LT] = ACTIONS(1147), + [anon_sym_GT_GT] = ACTIONS(1161), + [anon_sym_GT_GT_GT] = ACTIONS(1147), + [anon_sym_EQ_EQ] = ACTIONS(1147), + [anon_sym_BANG_EQ] = ACTIONS(1147), + [anon_sym_GT_EQ] = ACTIONS(1147), + [anon_sym_LT_EQ] = ACTIONS(1147), + [anon_sym_this] = ACTIONS(1261), + [anon_sym_DOT] = ACTIONS(1161), + [anon_sym_scoped] = ACTIONS(85), + [anon_sym_base] = ACTIONS(1263), + [anon_sym_var] = ACTIONS(89), + [sym_predefined_type] = ACTIONS(1265), + [anon_sym_unchecked] = ACTIONS(1251), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1233), + [anon_sym_switch] = ACTIONS(1161), + [anon_sym_default] = ACTIONS(1267), + [anon_sym_throw] = ACTIONS(2269), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1235), - [sym_discard] = ACTIONS(1083), - [anon_sym_DOT_DOT] = ACTIONS(1237), - [anon_sym_not] = ACTIONS(1087), + [anon_sym_await] = ACTIONS(2271), + [anon_sym_DOT_DOT] = ACTIONS(2273), + [anon_sym_AMP_AMP] = ACTIONS(1147), + [anon_sym_PIPE_PIPE] = ACTIONS(1147), + [anon_sym_QMARK_QMARK] = ACTIONS(1147), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -83761,19 +83643,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(1089), + [anon_sym_as] = ACTIONS(1161), + [anon_sym_is] = ACTIONS(1161), + [anon_sym_DASH_GT] = ACTIONS(1147), + [anon_sym_stackalloc] = ACTIONS(1275), + [anon_sym_with] = ACTIONS(1161), + [anon_sym_sizeof] = ACTIONS(1277), + [anon_sym_typeof] = ACTIONS(1279), + [anon_sym___makeref] = ACTIONS(1281), + [anon_sym___reftype] = ACTIONS(1283), + [anon_sym___refvalue] = ACTIONS(1285), + [sym_null_literal] = ACTIONS(1287), + [anon_sym_SQUOTE] = ACTIONS(1289), + [sym_integer_literal] = ACTIONS(1287), + [sym_real_literal] = ACTIONS(1291), + [anon_sym_DQUOTE] = ACTIONS(1293), + [sym_verbatim_string_literal] = ACTIONS(1291), + [aux_sym_preproc_if_token1] = ACTIONS(1295), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -83784,105 +83670,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(1297), + [sym_interpolation_verbatim_start] = ACTIONS(1299), + [sym_interpolation_raw_start] = ACTIONS(1301), + [sym_raw_string_start] = ACTIONS(1303), }, [277] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(5723), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2284), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5162), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_pattern] = STATE(6590), - [sym_constant_pattern] = STATE(3486), - [sym_parenthesized_pattern] = STATE(3486), - [sym_var_pattern] = STATE(3486), - [sym_type_pattern] = STATE(3486), - [sym_list_pattern] = STATE(3486), - [sym_recursive_pattern] = STATE(3486), - [sym_positional_pattern_clause] = STATE(5670), - [sym_property_pattern_clause] = STATE(5735), - [sym_relational_pattern] = STATE(3486), - [sym_negated_pattern] = STATE(3486), - [sym_and_pattern] = STATE(3486), - [sym_or_pattern] = STATE(3486), - [sym_declaration_pattern] = STATE(3486), - [sym_expression] = STATE(5668), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3520), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(4216), - [sym_postfix_unary_expression] = STATE(4219), - [sym_prefix_unary_expression] = STATE(4219), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6154), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(4216), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(4219), - [sym_switch_expression] = STATE(3080), - [sym_switch_expression_arm] = STATE(7123), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(4216), - [sym_member_access_expression] = STATE(3121), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(4219), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7530), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(4216), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(4216), - [sym_typeof_expression] = STATE(4216), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(3121), - [sym_literal] = STATE(4216), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2267), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(5706), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2270), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5197), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_pattern] = STATE(6511), + [sym_constant_pattern] = STATE(3429), + [sym_parenthesized_pattern] = STATE(3429), + [sym_var_pattern] = STATE(3429), + [sym_type_pattern] = STATE(3429), + [sym_list_pattern] = STATE(3429), + [sym_recursive_pattern] = STATE(3429), + [sym_positional_pattern_clause] = STATE(5689), + [sym_property_pattern_clause] = STATE(5723), + [sym_relational_pattern] = STATE(3429), + [sym_negated_pattern] = STATE(3429), + [sym_and_pattern] = STATE(3429), + [sym_or_pattern] = STATE(3429), + [sym_declaration_pattern] = STATE(3429), + [sym_expression] = STATE(5654), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3510), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(4202), + [sym_postfix_unary_expression] = STATE(4203), + [sym_prefix_unary_expression] = STATE(4203), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6134), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(4202), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(4203), + [sym_switch_expression] = STATE(3102), + [sym_switch_expression_arm] = STATE(7113), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(4202), + [sym_member_access_expression] = STATE(3112), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(4203), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7425), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(4202), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(4202), + [sym_typeof_expression] = STATE(4202), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(3112), + [sym_literal] = STATE(4202), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2261), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(277), [sym_preproc_endregion] = STATE(277), [sym_preproc_line] = STATE(277), @@ -83892,54 +83778,54 @@ 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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1049), - [anon_sym_LPAREN] = ACTIONS(1985), - [anon_sym_ref] = ACTIONS(1987), - [anon_sym_LBRACE] = ACTIONS(1059), - [anon_sym_RBRACE] = ACTIONS(2273), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_LPAREN] = ACTIONS(1989), + [anon_sym_ref] = ACTIONS(1991), + [anon_sym_LBRACE] = ACTIONS(1057), + [anon_sym_RBRACE] = ACTIONS(2275), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1061), - [anon_sym_LT] = ACTIONS(1991), - [anon_sym_GT] = ACTIONS(1991), + [anon_sym_new] = ACTIONS(1059), + [anon_sym_LT] = ACTIONS(1995), + [anon_sym_GT] = ACTIONS(1995), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1067), - [anon_sym_BANG] = ACTIONS(1617), - [anon_sym_TILDE] = ACTIONS(1617), - [anon_sym_PLUS_PLUS] = ACTIONS(1617), - [anon_sym_DASH_DASH] = ACTIONS(1617), + [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(1615), - [anon_sym_DASH] = ACTIONS(1615), + [anon_sym_PLUS] = ACTIONS(1585), + [anon_sym_DASH] = ACTIONS(1585), [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(1617), - [anon_sym_AMP] = ACTIONS(1617), - [anon_sym_GT_EQ] = ACTIONS(1993), - [anon_sym_LT_EQ] = ACTIONS(1993), + [anon_sym_CARET] = ACTIONS(1587), + [anon_sym_AMP] = ACTIONS(1587), + [anon_sym_GT_EQ] = ACTIONS(1997), + [anon_sym_LT_EQ] = ACTIONS(1997), [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(1075), + [anon_sym_scoped] = ACTIONS(1073), [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(1995), + [anon_sym_var] = ACTIONS(1999), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1067), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1589), + [anon_sym_throw] = ACTIONS(1527), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1591), - [sym_discard] = ACTIONS(1083), + [anon_sym_await] = ACTIONS(1529), + [sym_discard] = ACTIONS(1081), [anon_sym_DOT_DOT] = ACTIONS(123), - [anon_sym_not] = ACTIONS(1997), + [anon_sym_not] = ACTIONS(2001), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -83964,7 +83850,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(1089), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -83981,99 +83867,99 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [278] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(5723), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2284), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5162), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_pattern] = STATE(6590), - [sym_constant_pattern] = STATE(3486), - [sym_parenthesized_pattern] = STATE(3486), - [sym_var_pattern] = STATE(3486), - [sym_type_pattern] = STATE(3486), - [sym_list_pattern] = STATE(3486), - [sym_recursive_pattern] = STATE(3486), - [sym_positional_pattern_clause] = STATE(5670), - [sym_property_pattern_clause] = STATE(5735), - [sym_relational_pattern] = STATE(3486), - [sym_negated_pattern] = STATE(3486), - [sym_and_pattern] = STATE(3486), - [sym_or_pattern] = STATE(3486), - [sym_declaration_pattern] = STATE(3486), - [sym_expression] = STATE(5668), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3520), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(4216), - [sym_postfix_unary_expression] = STATE(4219), - [sym_prefix_unary_expression] = STATE(4219), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6154), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(4216), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(4219), - [sym_switch_expression] = STATE(3080), - [sym_switch_expression_arm] = STATE(7123), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(4216), - [sym_member_access_expression] = STATE(3121), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(4219), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7530), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(4216), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(4216), - [sym_typeof_expression] = STATE(4216), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(3121), - [sym_literal] = STATE(4216), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2267), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(5706), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2270), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5197), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_pattern] = STATE(6511), + [sym_constant_pattern] = STATE(3429), + [sym_parenthesized_pattern] = STATE(3429), + [sym_var_pattern] = STATE(3429), + [sym_type_pattern] = STATE(3429), + [sym_list_pattern] = STATE(3429), + [sym_recursive_pattern] = STATE(3429), + [sym_positional_pattern_clause] = STATE(5689), + [sym_property_pattern_clause] = STATE(5723), + [sym_relational_pattern] = STATE(3429), + [sym_negated_pattern] = STATE(3429), + [sym_and_pattern] = STATE(3429), + [sym_or_pattern] = STATE(3429), + [sym_declaration_pattern] = STATE(3429), + [sym_expression] = STATE(5654), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3510), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(4202), + [sym_postfix_unary_expression] = STATE(4203), + [sym_prefix_unary_expression] = STATE(4203), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6134), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(4202), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(4203), + [sym_switch_expression] = STATE(3102), + [sym_switch_expression_arm] = STATE(7113), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(4202), + [sym_member_access_expression] = STATE(3112), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(4203), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7425), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(4202), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(4202), + [sym_typeof_expression] = STATE(4202), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(3112), + [sym_literal] = STATE(4202), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2261), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(278), [sym_preproc_endregion] = STATE(278), [sym_preproc_line] = STATE(278), @@ -84083,54 +83969,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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1049), - [anon_sym_LPAREN] = ACTIONS(1985), - [anon_sym_ref] = ACTIONS(1987), - [anon_sym_LBRACE] = ACTIONS(1059), - [anon_sym_RBRACE] = ACTIONS(2275), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_LPAREN] = ACTIONS(1989), + [anon_sym_ref] = ACTIONS(1991), + [anon_sym_LBRACE] = ACTIONS(1057), + [anon_sym_RBRACE] = ACTIONS(2277), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1061), - [anon_sym_LT] = ACTIONS(1991), - [anon_sym_GT] = ACTIONS(1991), + [anon_sym_new] = ACTIONS(1059), + [anon_sym_LT] = ACTIONS(1995), + [anon_sym_GT] = ACTIONS(1995), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1067), - [anon_sym_BANG] = ACTIONS(1617), - [anon_sym_TILDE] = ACTIONS(1617), - [anon_sym_PLUS_PLUS] = ACTIONS(1617), - [anon_sym_DASH_DASH] = ACTIONS(1617), + [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(1615), - [anon_sym_DASH] = ACTIONS(1615), + [anon_sym_PLUS] = ACTIONS(1585), + [anon_sym_DASH] = ACTIONS(1585), [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(1617), - [anon_sym_AMP] = ACTIONS(1617), - [anon_sym_GT_EQ] = ACTIONS(1993), - [anon_sym_LT_EQ] = ACTIONS(1993), + [anon_sym_CARET] = ACTIONS(1587), + [anon_sym_AMP] = ACTIONS(1587), + [anon_sym_GT_EQ] = ACTIONS(1997), + [anon_sym_LT_EQ] = ACTIONS(1997), [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(1075), + [anon_sym_scoped] = ACTIONS(1073), [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(1995), + [anon_sym_var] = ACTIONS(1999), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1067), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1589), + [anon_sym_throw] = ACTIONS(1527), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1591), - [sym_discard] = ACTIONS(1083), + [anon_sym_await] = ACTIONS(1529), + [sym_discard] = ACTIONS(1081), [anon_sym_DOT_DOT] = ACTIONS(123), - [anon_sym_not] = ACTIONS(1997), + [anon_sym_not] = ACTIONS(2001), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -84155,7 +84041,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(1089), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -84172,99 +84058,99 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [279] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(5634), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2230), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(4363), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_pattern] = STATE(6717), - [sym_constant_pattern] = STATE(3486), - [sym_parenthesized_pattern] = STATE(3486), - [sym_var_pattern] = STATE(3486), - [sym_type_pattern] = STATE(3486), - [sym_list_pattern] = STATE(3486), - [sym_recursive_pattern] = STATE(3486), - [sym_positional_pattern_clause] = STATE(5175), - [sym_property_pattern_clause] = STATE(5675), - [sym_subpattern] = STATE(6964), - [sym_relational_pattern] = STATE(3486), - [sym_negated_pattern] = STATE(3486), - [sym_and_pattern] = STATE(3486), - [sym_or_pattern] = STATE(3486), - [sym_declaration_pattern] = STATE(3486), - [sym_expression] = STATE(5385), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3664), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(4419), - [sym_postfix_unary_expression] = STATE(4420), - [sym_prefix_unary_expression] = STATE(4420), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6161), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(4419), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(4420), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(4419), - [sym_member_access_expression] = STATE(3135), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(4420), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7773), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(4419), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(4419), - [sym_typeof_expression] = STATE(4419), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(3135), - [sym_literal] = STATE(4419), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(5528), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2225), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(4472), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_pattern] = STATE(6702), + [sym_constant_pattern] = STATE(3429), + [sym_parenthesized_pattern] = STATE(3429), + [sym_var_pattern] = STATE(3429), + [sym_type_pattern] = STATE(3429), + [sym_list_pattern] = STATE(3429), + [sym_recursive_pattern] = STATE(3429), + [sym_positional_pattern_clause] = STATE(5135), + [sym_property_pattern_clause] = STATE(5666), + [sym_subpattern] = STATE(6780), + [sym_relational_pattern] = STATE(3429), + [sym_negated_pattern] = STATE(3429), + [sym_and_pattern] = STATE(3429), + [sym_or_pattern] = STATE(3429), + [sym_declaration_pattern] = STATE(3429), + [sym_expression] = STATE(5405), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3660), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(4418), + [sym_postfix_unary_expression] = STATE(4403), + [sym_prefix_unary_expression] = STATE(4403), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6163), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(4418), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(4403), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(4418), + [sym_member_access_expression] = STATE(3127), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(4403), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7633), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(4418), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(4418), + [sym_typeof_expression] = STATE(4418), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(3127), + [sym_literal] = STATE(4418), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(279), [sym_preproc_endregion] = STATE(279), [sym_preproc_line] = STATE(279), @@ -84274,54 +84160,54 @@ 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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1049), - [anon_sym_LPAREN] = ACTIONS(1143), - [anon_sym_ref] = ACTIONS(2075), - [anon_sym_LBRACE] = ACTIONS(1059), - [anon_sym_RBRACE] = ACTIONS(2277), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_LPAREN] = ACTIONS(1141), + [anon_sym_ref] = ACTIONS(2005), + [anon_sym_LBRACE] = ACTIONS(1057), + [anon_sym_RBRACE] = ACTIONS(2279), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1101), - [anon_sym_LT] = ACTIONS(1063), - [anon_sym_GT] = ACTIONS(1063), + [anon_sym_new] = ACTIONS(1095), + [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(1067), - [anon_sym_BANG] = ACTIONS(1107), - [anon_sym_TILDE] = ACTIONS(1107), - [anon_sym_PLUS_PLUS] = ACTIONS(1107), - [anon_sym_DASH_DASH] = ACTIONS(1107), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(1101), + [anon_sym_TILDE] = ACTIONS(1101), + [anon_sym_PLUS_PLUS] = ACTIONS(1101), + [anon_sym_DASH_DASH] = ACTIONS(1101), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1109), - [anon_sym_DASH] = ACTIONS(1109), - [anon_sym_STAR] = ACTIONS(1229), - [anon_sym_CARET] = ACTIONS(1107), - [anon_sym_AMP] = ACTIONS(1107), - [anon_sym_GT_EQ] = ACTIONS(1073), - [anon_sym_LT_EQ] = ACTIONS(1073), + [anon_sym_PLUS] = ACTIONS(1103), + [anon_sym_DASH] = ACTIONS(1103), + [anon_sym_STAR] = ACTIONS(1227), + [anon_sym_CARET] = ACTIONS(1101), + [anon_sym_AMP] = ACTIONS(1101), + [anon_sym_GT_EQ] = ACTIONS(1071), + [anon_sym_LT_EQ] = ACTIONS(1071), [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(1075), + [anon_sym_scoped] = ACTIONS(1073), [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(1077), + [anon_sym_var] = ACTIONS(1075), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1067), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1233), + [anon_sym_throw] = ACTIONS(1231), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1235), - [sym_discard] = ACTIONS(1083), - [anon_sym_DOT_DOT] = ACTIONS(1237), - [anon_sym_not] = ACTIONS(1087), + [anon_sym_await] = ACTIONS(1233), + [sym_discard] = ACTIONS(1081), + [anon_sym_DOT_DOT] = ACTIONS(1235), + [anon_sym_not] = ACTIONS(1085), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -84346,7 +84232,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(1089), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -84363,99 +84249,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [280] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(5723), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2284), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5162), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_pattern] = STATE(6590), - [sym_constant_pattern] = STATE(3486), - [sym_parenthesized_pattern] = STATE(3486), - [sym_var_pattern] = STATE(3486), - [sym_type_pattern] = STATE(3486), - [sym_list_pattern] = STATE(3486), - [sym_recursive_pattern] = STATE(3486), - [sym_positional_pattern_clause] = STATE(5670), - [sym_property_pattern_clause] = STATE(5735), - [sym_relational_pattern] = STATE(3486), - [sym_negated_pattern] = STATE(3486), - [sym_and_pattern] = STATE(3486), - [sym_or_pattern] = STATE(3486), - [sym_declaration_pattern] = STATE(3486), - [sym_expression] = STATE(5668), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3520), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(4216), - [sym_postfix_unary_expression] = STATE(4219), - [sym_prefix_unary_expression] = STATE(4219), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6154), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(4216), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(4219), - [sym_switch_expression] = STATE(3080), - [sym_switch_expression_arm] = STATE(7123), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(4216), - [sym_member_access_expression] = STATE(3121), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(4219), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7530), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(4216), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(4216), - [sym_typeof_expression] = STATE(4216), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(3121), - [sym_literal] = STATE(4216), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2267), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2416), + [sym__name] = STATE(5897), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2367), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(5198), + [sym_non_lvalue_expression] = STATE(3040), + [sym_lvalue_expression] = STATE(3600), + [sym__expression_statement_expression] = STATE(3035), + [sym_assignment_expression] = STATE(3043), + [sym_binary_expression] = STATE(3035), + [sym_postfix_unary_expression] = STATE(3043), + [sym_prefix_unary_expression] = STATE(3043), + [sym__pointer_indirection_expression] = STATE(2415), + [sym_query_expression] = STATE(3035), + [sym_from_clause] = STATE(6156), + [sym_conditional_expression] = STATE(3035), + [sym_conditional_access_expression] = STATE(3035), + [sym_as_expression] = STATE(3035), + [sym_is_expression] = STATE(3035), + [sym_is_pattern_expression] = STATE(3035), + [sym_cast_expression] = STATE(3035), + [sym_checked_expression] = STATE(3035), + [sym_invocation_expression] = STATE(3043), + [sym_switch_expression] = STATE(3035), + [sym_await_expression] = STATE(3043), + [sym_throw_expression] = STATE(3035), + [sym_element_access_expression] = STATE(2415), + [sym_interpolated_string_expression] = STATE(3035), + [sym_member_access_expression] = STATE(2415), + [sym_object_creation_expression] = STATE(3043), + [sym_parenthesized_expression] = STATE(3043), + [sym__parenthesized_lvalue_expression] = STATE(2415), + [sym_lambda_expression] = STATE(3035), + [sym__lambda_expression_init] = STATE(7561), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3035), + [sym_anonymous_method_expression] = STATE(3035), + [sym_anonymous_object_creation_expression] = STATE(3035), + [sym_implicit_array_creation_expression] = STATE(3035), + [sym_implicit_object_creation_expression] = STATE(3035), + [sym_implicit_stackalloc_expression] = STATE(3035), + [sym_initializer_expression] = STATE(3035), + [sym_default_expression] = STATE(3035), + [sym_with_expression] = STATE(3035), + [sym_sizeof_expression] = STATE(3035), + [sym_typeof_expression] = STATE(3035), + [sym_makeref_expression] = STATE(3035), + [sym_ref_expression] = STATE(3035), + [sym_reftype_expression] = STATE(3035), + [sym_refvalue_expression] = STATE(3035), + [sym_stackalloc_expression] = STATE(3035), + [sym_range_expression] = STATE(3035), + [sym_tuple_expression] = STATE(2415), + [sym_literal] = STATE(3035), + [sym_character_literal] = STATE(3037), + [sym_string_literal] = STATE(3037), + [sym_raw_string_literal] = STATE(3037), + [sym_boolean_literal] = STATE(3037), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3035), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(280), [sym_preproc_endregion] = STATE(280), [sym_preproc_line] = STATE(280), @@ -84465,54 +84336,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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3455), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1049), - [anon_sym_LPAREN] = ACTIONS(1985), - [anon_sym_ref] = ACTIONS(1987), - [anon_sym_LBRACE] = ACTIONS(1059), - [anon_sym_RBRACE] = ACTIONS(2279), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1239), + [anon_sym_LPAREN] = ACTIONS(2217), + [anon_sym_ref] = ACTIONS(2219), + [anon_sym_LBRACE] = ACTIONS(1245), + [anon_sym_delegate] = ACTIONS(1247), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1061), - [anon_sym_LT] = ACTIONS(1991), - [anon_sym_GT] = ACTIONS(1991), + [anon_sym_new] = ACTIONS(2221), + [anon_sym_LT] = ACTIONS(1161), + [anon_sym_GT] = ACTIONS(1161), [anon_sym_where] = ACTIONS(29), + [anon_sym_QMARK] = ACTIONS(1161), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1067), - [anon_sym_BANG] = ACTIONS(1617), - [anon_sym_TILDE] = ACTIONS(1617), - [anon_sym_PLUS_PLUS] = ACTIONS(1617), - [anon_sym_DASH_DASH] = ACTIONS(1617), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1615), - [anon_sym_DASH] = ACTIONS(1615), - [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(1617), - [anon_sym_AMP] = ACTIONS(1617), - [anon_sym_GT_EQ] = ACTIONS(1993), - [anon_sym_LT_EQ] = ACTIONS(1993), - [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(1075), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(1995), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1067), + [anon_sym_checked] = ACTIONS(1251), + [anon_sym_BANG] = ACTIONS(2223), + [anon_sym_TILDE] = ACTIONS(2225), + [anon_sym_PLUS_PLUS] = ACTIONS(2225), + [anon_sym_DASH_DASH] = ACTIONS(2225), + [anon_sym_true] = ACTIONS(1257), + [anon_sym_false] = ACTIONS(1257), + [anon_sym_PLUS] = ACTIONS(2223), + [anon_sym_DASH] = ACTIONS(2223), + [anon_sym_STAR] = ACTIONS(2227), + [anon_sym_SLASH] = ACTIONS(1161), + [anon_sym_PERCENT] = ACTIONS(1147), + [anon_sym_CARET] = ACTIONS(2225), + [anon_sym_PIPE] = ACTIONS(1161), + [anon_sym_AMP] = ACTIONS(2223), + [anon_sym_LT_LT] = ACTIONS(1147), + [anon_sym_GT_GT] = ACTIONS(1161), + [anon_sym_GT_GT_GT] = ACTIONS(1147), + [anon_sym_EQ_EQ] = ACTIONS(1147), + [anon_sym_BANG_EQ] = ACTIONS(1147), + [anon_sym_GT_EQ] = ACTIONS(1147), + [anon_sym_LT_EQ] = ACTIONS(1147), + [anon_sym_this] = ACTIONS(1261), + [anon_sym_DOT] = ACTIONS(1161), + [anon_sym_scoped] = ACTIONS(85), + [anon_sym_base] = ACTIONS(1263), + [anon_sym_var] = ACTIONS(89), + [sym_predefined_type] = ACTIONS(1265), + [anon_sym_unchecked] = ACTIONS(1251), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1589), + [anon_sym_switch] = ACTIONS(1161), + [anon_sym_default] = ACTIONS(1267), + [anon_sym_throw] = ACTIONS(2229), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1591), - [sym_discard] = ACTIONS(1083), - [anon_sym_DOT_DOT] = ACTIONS(123), - [anon_sym_not] = ACTIONS(1997), + [anon_sym_await] = ACTIONS(2231), + [anon_sym_DOT_DOT] = ACTIONS(2233), + [anon_sym_AMP_AMP] = ACTIONS(1147), + [anon_sym_PIPE_PIPE] = ACTIONS(1147), + [anon_sym_QMARK_QMARK] = ACTIONS(1147), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -84525,19 +84407,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(1089), + [anon_sym_as] = ACTIONS(1161), + [anon_sym_is] = ACTIONS(1161), + [anon_sym_DASH_GT] = ACTIONS(1147), + [anon_sym_stackalloc] = ACTIONS(1275), + [anon_sym_with] = ACTIONS(1161), + [anon_sym_sizeof] = ACTIONS(1277), + [anon_sym_typeof] = ACTIONS(1279), + [anon_sym___makeref] = ACTIONS(1281), + [anon_sym___reftype] = ACTIONS(1283), + [anon_sym___refvalue] = ACTIONS(1285), + [sym_null_literal] = ACTIONS(1287), + [anon_sym_SQUOTE] = ACTIONS(1289), + [sym_integer_literal] = ACTIONS(1287), + [sym_real_literal] = ACTIONS(1291), + [anon_sym_DQUOTE] = ACTIONS(1293), + [sym_verbatim_string_literal] = ACTIONS(1291), + [aux_sym_preproc_if_token1] = ACTIONS(1295), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -84548,90 +84434,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(151), - [sym_interpolation_verbatim_start] = ACTIONS(153), - [sym_interpolation_raw_start] = ACTIONS(155), - [sym_raw_string_start] = ACTIONS(157), + [sym_interpolation_regular_start] = ACTIONS(1297), + [sym_interpolation_verbatim_start] = ACTIONS(1299), + [sym_interpolation_raw_start] = ACTIONS(1301), + [sym_raw_string_start] = ACTIONS(1303), }, [281] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2420), - [sym__name] = STATE(5888), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2384), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(5147), - [sym_non_lvalue_expression] = STATE(3066), - [sym_lvalue_expression] = STATE(3554), - [sym__expression_statement_expression] = STATE(3006), - [sym_assignment_expression] = STATE(3020), - [sym_binary_expression] = STATE(3006), - [sym_postfix_unary_expression] = STATE(3020), - [sym_prefix_unary_expression] = STATE(3020), - [sym__pointer_indirection_expression] = STATE(2423), - [sym_query_expression] = STATE(3006), - [sym_from_clause] = STATE(6151), - [sym_conditional_expression] = STATE(3006), - [sym_conditional_access_expression] = STATE(3006), - [sym_as_expression] = STATE(3006), - [sym_is_expression] = STATE(3006), - [sym_is_pattern_expression] = STATE(3006), - [sym_cast_expression] = STATE(3006), - [sym_checked_expression] = STATE(3006), - [sym_invocation_expression] = STATE(3020), - [sym_switch_expression] = STATE(3006), - [sym_await_expression] = STATE(3020), - [sym_throw_expression] = STATE(3006), - [sym_element_access_expression] = STATE(2423), - [sym_interpolated_string_expression] = STATE(3006), - [sym_member_access_expression] = STATE(2423), - [sym_object_creation_expression] = STATE(3020), - [sym_parenthesized_expression] = STATE(3020), - [sym__parenthesized_lvalue_expression] = STATE(2423), - [sym_lambda_expression] = STATE(3006), - [sym__lambda_expression_init] = STATE(7640), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3006), - [sym_anonymous_method_expression] = STATE(3006), - [sym_anonymous_object_creation_expression] = STATE(3006), - [sym_implicit_array_creation_expression] = STATE(3006), - [sym_implicit_object_creation_expression] = STATE(3006), - [sym_implicit_stackalloc_expression] = STATE(3006), - [sym_initializer_expression] = STATE(3006), - [sym_default_expression] = STATE(3006), - [sym_with_expression] = STATE(3006), - [sym_sizeof_expression] = STATE(3006), - [sym_typeof_expression] = STATE(3006), - [sym_makeref_expression] = STATE(3006), - [sym_ref_expression] = STATE(3006), - [sym_reftype_expression] = STATE(3006), - [sym_refvalue_expression] = STATE(3006), - [sym_stackalloc_expression] = STATE(3006), - [sym_range_expression] = STATE(3006), - [sym_tuple_expression] = STATE(2423), - [sym_literal] = STATE(3006), - [sym_character_literal] = STATE(3011), - [sym_string_literal] = STATE(3011), - [sym_raw_string_literal] = STATE(3011), - [sym_boolean_literal] = STATE(3011), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3006), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2416), + [sym__name] = STATE(5868), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2387), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(5165), + [sym_non_lvalue_expression] = STATE(3040), + [sym_lvalue_expression] = STATE(3634), + [sym__expression_statement_expression] = STATE(3035), + [sym_assignment_expression] = STATE(3043), + [sym_binary_expression] = STATE(3035), + [sym_postfix_unary_expression] = STATE(3043), + [sym_prefix_unary_expression] = STATE(3043), + [sym__pointer_indirection_expression] = STATE(2415), + [sym_query_expression] = STATE(3035), + [sym_from_clause] = STATE(6130), + [sym_conditional_expression] = STATE(3035), + [sym_conditional_access_expression] = STATE(3035), + [sym_as_expression] = STATE(3035), + [sym_is_expression] = STATE(3035), + [sym_is_pattern_expression] = STATE(3035), + [sym_cast_expression] = STATE(3035), + [sym_checked_expression] = STATE(3035), + [sym_invocation_expression] = STATE(3043), + [sym_switch_expression] = STATE(3035), + [sym_await_expression] = STATE(3043), + [sym_throw_expression] = STATE(3035), + [sym_element_access_expression] = STATE(2415), + [sym_interpolated_string_expression] = STATE(3035), + [sym_member_access_expression] = STATE(2415), + [sym_object_creation_expression] = STATE(3043), + [sym_parenthesized_expression] = STATE(3043), + [sym__parenthesized_lvalue_expression] = STATE(2415), + [sym_lambda_expression] = STATE(3035), + [sym__lambda_expression_init] = STATE(7324), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3035), + [sym_anonymous_method_expression] = STATE(3035), + [sym_anonymous_object_creation_expression] = STATE(3035), + [sym_implicit_array_creation_expression] = STATE(3035), + [sym_implicit_object_creation_expression] = STATE(3035), + [sym_implicit_stackalloc_expression] = STATE(3035), + [sym_initializer_expression] = STATE(3035), + [sym_default_expression] = STATE(3035), + [sym_with_expression] = STATE(3035), + [sym_sizeof_expression] = STATE(3035), + [sym_typeof_expression] = STATE(3035), + [sym_makeref_expression] = STATE(3035), + [sym_ref_expression] = STATE(3035), + [sym_reftype_expression] = STATE(3035), + [sym_refvalue_expression] = STATE(3035), + [sym_stackalloc_expression] = STATE(3035), + [sym_range_expression] = STATE(3035), + [sym_tuple_expression] = STATE(2415), + [sym_literal] = STATE(3035), + [sym_character_literal] = STATE(3037), + [sym_string_literal] = STATE(3037), + [sym_raw_string_literal] = STATE(3037), + [sym_boolean_literal] = STATE(3037), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3035), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(281), [sym_preproc_endregion] = STATE(281), [sym_preproc_line] = STATE(281), @@ -84641,65 +84527,65 @@ 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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3440), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3455), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1241), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1239), [anon_sym_LPAREN] = ACTIONS(2281), [anon_sym_ref] = ACTIONS(2283), - [anon_sym_LBRACE] = ACTIONS(1247), - [anon_sym_delegate] = ACTIONS(1249), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_LBRACE] = ACTIONS(1245), + [anon_sym_delegate] = ACTIONS(1247), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), [anon_sym_new] = ACTIONS(2285), - [anon_sym_LT] = ACTIONS(1165), - [anon_sym_GT] = ACTIONS(1165), + [anon_sym_LT] = ACTIONS(1161), + [anon_sym_GT] = ACTIONS(1161), [anon_sym_where] = ACTIONS(29), - [anon_sym_QMARK] = ACTIONS(1165), + [anon_sym_QMARK] = ACTIONS(1161), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1253), + [anon_sym_checked] = ACTIONS(1251), [anon_sym_BANG] = ACTIONS(2287), [anon_sym_TILDE] = ACTIONS(2289), [anon_sym_PLUS_PLUS] = ACTIONS(2289), [anon_sym_DASH_DASH] = ACTIONS(2289), - [anon_sym_true] = ACTIONS(1259), - [anon_sym_false] = ACTIONS(1259), + [anon_sym_true] = ACTIONS(1257), + [anon_sym_false] = ACTIONS(1257), [anon_sym_PLUS] = ACTIONS(2287), [anon_sym_DASH] = ACTIONS(2287), [anon_sym_STAR] = ACTIONS(2291), - [anon_sym_SLASH] = ACTIONS(1165), - [anon_sym_PERCENT] = ACTIONS(1151), + [anon_sym_SLASH] = ACTIONS(1161), + [anon_sym_PERCENT] = ACTIONS(1147), [anon_sym_CARET] = ACTIONS(2289), - [anon_sym_PIPE] = ACTIONS(1165), + [anon_sym_PIPE] = ACTIONS(1161), [anon_sym_AMP] = ACTIONS(2287), - [anon_sym_LT_LT] = ACTIONS(1151), - [anon_sym_GT_GT] = ACTIONS(1165), - [anon_sym_GT_GT_GT] = ACTIONS(1151), - [anon_sym_EQ_EQ] = ACTIONS(1151), - [anon_sym_BANG_EQ] = ACTIONS(1151), - [anon_sym_GT_EQ] = ACTIONS(1151), - [anon_sym_LT_EQ] = ACTIONS(1151), - [anon_sym_this] = ACTIONS(1263), - [anon_sym_DOT] = ACTIONS(1165), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1265), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1267), - [anon_sym_unchecked] = ACTIONS(1253), - [anon_sym_yield] = ACTIONS(29), - [anon_sym_switch] = ACTIONS(1165), - [anon_sym_default] = ACTIONS(1269), + [anon_sym_LT_LT] = ACTIONS(1147), + [anon_sym_GT_GT] = ACTIONS(1161), + [anon_sym_GT_GT_GT] = ACTIONS(1147), + [anon_sym_EQ_EQ] = ACTIONS(1147), + [anon_sym_BANG_EQ] = ACTIONS(1147), + [anon_sym_GT_EQ] = ACTIONS(1147), + [anon_sym_LT_EQ] = ACTIONS(1147), + [anon_sym_this] = ACTIONS(1261), + [anon_sym_DOT] = ACTIONS(1161), + [anon_sym_scoped] = ACTIONS(85), + [anon_sym_base] = ACTIONS(1263), + [anon_sym_var] = ACTIONS(89), + [sym_predefined_type] = ACTIONS(1265), + [anon_sym_unchecked] = ACTIONS(1251), + [anon_sym_yield] = ACTIONS(29), + [anon_sym_switch] = ACTIONS(1161), + [anon_sym_default] = ACTIONS(1267), [anon_sym_throw] = ACTIONS(2293), [anon_sym_when] = ACTIONS(29), [anon_sym_await] = ACTIONS(2295), [anon_sym_DOT_DOT] = ACTIONS(2297), - [anon_sym_AMP_AMP] = ACTIONS(1151), - [anon_sym_PIPE_PIPE] = ACTIONS(1151), - [anon_sym_QMARK_QMARK] = ACTIONS(1151), + [anon_sym_AMP_AMP] = ACTIONS(1147), + [anon_sym_PIPE_PIPE] = ACTIONS(1147), + [anon_sym_QMARK_QMARK] = ACTIONS(1147), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -84712,23 +84598,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(1165), - [anon_sym_is] = ACTIONS(1165), - [anon_sym_DASH_GT] = ACTIONS(1151), - [anon_sym_stackalloc] = ACTIONS(1277), - [anon_sym_with] = ACTIONS(1165), - [anon_sym_sizeof] = ACTIONS(1279), - [anon_sym_typeof] = ACTIONS(1281), - [anon_sym___makeref] = ACTIONS(1283), - [anon_sym___reftype] = ACTIONS(1285), - [anon_sym___refvalue] = ACTIONS(1287), - [sym_null_literal] = ACTIONS(1289), - [anon_sym_SQUOTE] = ACTIONS(1291), - [sym_integer_literal] = ACTIONS(1289), - [sym_real_literal] = ACTIONS(1293), - [anon_sym_DQUOTE] = ACTIONS(1295), - [sym_verbatim_string_literal] = ACTIONS(1293), - [aux_sym_preproc_if_token1] = ACTIONS(1297), + [anon_sym_as] = ACTIONS(1161), + [anon_sym_is] = ACTIONS(1161), + [anon_sym_DASH_GT] = ACTIONS(1147), + [anon_sym_stackalloc] = ACTIONS(1275), + [anon_sym_with] = ACTIONS(1161), + [anon_sym_sizeof] = ACTIONS(1277), + [anon_sym_typeof] = ACTIONS(1279), + [anon_sym___makeref] = ACTIONS(1281), + [anon_sym___reftype] = ACTIONS(1283), + [anon_sym___refvalue] = ACTIONS(1285), + [sym_null_literal] = ACTIONS(1287), + [anon_sym_SQUOTE] = ACTIONS(1289), + [sym_integer_literal] = ACTIONS(1287), + [sym_real_literal] = ACTIONS(1291), + [anon_sym_DQUOTE] = ACTIONS(1293), + [sym_verbatim_string_literal] = ACTIONS(1291), + [aux_sym_preproc_if_token1] = ACTIONS(1295), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -84739,90 +84625,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1299), - [sym_interpolation_verbatim_start] = ACTIONS(1301), - [sym_interpolation_raw_start] = ACTIONS(1303), - [sym_raw_string_start] = ACTIONS(1305), + [sym_interpolation_regular_start] = ACTIONS(1297), + [sym_interpolation_verbatim_start] = ACTIONS(1299), + [sym_interpolation_raw_start] = ACTIONS(1301), + [sym_raw_string_start] = ACTIONS(1303), }, [282] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2420), - [sym__name] = STATE(5888), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2384), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(5224), - [sym_non_lvalue_expression] = STATE(3066), - [sym_lvalue_expression] = STATE(3554), - [sym__expression_statement_expression] = STATE(3006), - [sym_assignment_expression] = STATE(3020), - [sym_binary_expression] = STATE(3006), - [sym_postfix_unary_expression] = STATE(3020), - [sym_prefix_unary_expression] = STATE(3020), - [sym__pointer_indirection_expression] = STATE(2423), - [sym_query_expression] = STATE(3006), - [sym_from_clause] = STATE(6151), - [sym_conditional_expression] = STATE(3006), - [sym_conditional_access_expression] = STATE(3006), - [sym_as_expression] = STATE(3006), - [sym_is_expression] = STATE(3006), - [sym_is_pattern_expression] = STATE(3006), - [sym_cast_expression] = STATE(3006), - [sym_checked_expression] = STATE(3006), - [sym_invocation_expression] = STATE(3020), - [sym_switch_expression] = STATE(3006), - [sym_await_expression] = STATE(3020), - [sym_throw_expression] = STATE(3006), - [sym_element_access_expression] = STATE(2423), - [sym_interpolated_string_expression] = STATE(3006), - [sym_member_access_expression] = STATE(2423), - [sym_object_creation_expression] = STATE(3020), - [sym_parenthesized_expression] = STATE(3020), - [sym__parenthesized_lvalue_expression] = STATE(2423), - [sym_lambda_expression] = STATE(3006), - [sym__lambda_expression_init] = STATE(7640), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3006), - [sym_anonymous_method_expression] = STATE(3006), - [sym_anonymous_object_creation_expression] = STATE(3006), - [sym_implicit_array_creation_expression] = STATE(3006), - [sym_implicit_object_creation_expression] = STATE(3006), - [sym_implicit_stackalloc_expression] = STATE(3006), - [sym_initializer_expression] = STATE(3006), - [sym_default_expression] = STATE(3006), - [sym_with_expression] = STATE(3006), - [sym_sizeof_expression] = STATE(3006), - [sym_typeof_expression] = STATE(3006), - [sym_makeref_expression] = STATE(3006), - [sym_ref_expression] = STATE(3006), - [sym_reftype_expression] = STATE(3006), - [sym_refvalue_expression] = STATE(3006), - [sym_stackalloc_expression] = STATE(3006), - [sym_range_expression] = STATE(3006), - [sym_tuple_expression] = STATE(2423), - [sym_literal] = STATE(3006), - [sym_character_literal] = STATE(3011), - [sym_string_literal] = STATE(3011), - [sym_raw_string_literal] = STATE(3011), - [sym_boolean_literal] = STATE(3011), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3006), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(5893), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2361), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(5498), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3673), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3102), + [sym_postfix_unary_expression] = STATE(3079), + [sym_prefix_unary_expression] = STATE(3079), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6159), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3102), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3079), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3102), + [sym_member_access_expression] = STATE(2472), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3079), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7363), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(3102), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3102), + [sym_typeof_expression] = STATE(3102), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2472), + [sym_literal] = STATE(3102), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(282), [sym_preproc_endregion] = STATE(282), [sym_preproc_line] = STATE(282), @@ -84832,260 +84718,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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3440), - [sym__identifier_token] = ACTIONS(25), - [anon_sym_alias] = ACTIONS(29), - [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1241), - [anon_sym_LPAREN] = ACTIONS(2281), - [anon_sym_ref] = ACTIONS(2283), - [anon_sym_LBRACE] = ACTIONS(1247), - [anon_sym_delegate] = ACTIONS(1249), - [anon_sym_async] = ACTIONS(1047), - [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(2285), - [anon_sym_LT] = ACTIONS(1223), - [anon_sym_GT] = ACTIONS(1223), - [anon_sym_where] = ACTIONS(29), - [anon_sym_QMARK] = ACTIONS(1223), - [anon_sym_notnull] = ACTIONS(29), - [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1253), - [anon_sym_BANG] = ACTIONS(2287), - [anon_sym_TILDE] = ACTIONS(2289), - [anon_sym_PLUS_PLUS] = ACTIONS(2289), - [anon_sym_DASH_DASH] = ACTIONS(2289), - [anon_sym_true] = ACTIONS(1259), - [anon_sym_false] = ACTIONS(1259), - [anon_sym_PLUS] = ACTIONS(2287), - [anon_sym_DASH] = ACTIONS(2287), - [anon_sym_STAR] = ACTIONS(2291), - [anon_sym_SLASH] = ACTIONS(1223), - [anon_sym_PERCENT] = ACTIONS(1221), - [anon_sym_CARET] = ACTIONS(2289), - [anon_sym_PIPE] = ACTIONS(1223), - [anon_sym_AMP] = ACTIONS(2287), - [anon_sym_LT_LT] = ACTIONS(1221), - [anon_sym_GT_GT] = ACTIONS(1223), - [anon_sym_GT_GT_GT] = ACTIONS(1221), - [anon_sym_EQ_EQ] = ACTIONS(1221), - [anon_sym_BANG_EQ] = ACTIONS(1221), - [anon_sym_GT_EQ] = ACTIONS(1221), - [anon_sym_LT_EQ] = ACTIONS(1221), - [anon_sym_this] = ACTIONS(1263), - [anon_sym_DOT] = ACTIONS(1223), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1265), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1267), - [anon_sym_unchecked] = ACTIONS(1253), - [anon_sym_yield] = ACTIONS(29), - [anon_sym_switch] = ACTIONS(1223), - [anon_sym_default] = ACTIONS(1269), - [anon_sym_throw] = ACTIONS(2293), - [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2295), - [anon_sym_DOT_DOT] = ACTIONS(2297), - [anon_sym_AMP_AMP] = ACTIONS(1221), - [anon_sym_PIPE_PIPE] = ACTIONS(1221), - [anon_sym_QMARK_QMARK] = ACTIONS(1221), - [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(1223), - [anon_sym_is] = ACTIONS(1223), - [anon_sym_DASH_GT] = ACTIONS(1221), - [anon_sym_stackalloc] = ACTIONS(1277), - [anon_sym_with] = ACTIONS(1223), - [anon_sym_sizeof] = ACTIONS(1279), - [anon_sym_typeof] = ACTIONS(1281), - [anon_sym___makeref] = ACTIONS(1283), - [anon_sym___reftype] = ACTIONS(1285), - [anon_sym___refvalue] = ACTIONS(1287), - [sym_null_literal] = ACTIONS(1289), - [anon_sym_SQUOTE] = ACTIONS(1291), - [sym_integer_literal] = ACTIONS(1289), - [sym_real_literal] = ACTIONS(1293), - [anon_sym_DQUOTE] = ACTIONS(1295), - [sym_verbatim_string_literal] = ACTIONS(1293), - [aux_sym_preproc_if_token1] = ACTIONS(1297), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1299), - [sym_interpolation_verbatim_start] = ACTIONS(1301), - [sym_interpolation_raw_start] = ACTIONS(1303), - [sym_raw_string_start] = ACTIONS(1305), - }, - [283] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(5723), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2284), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5162), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_pattern] = STATE(6590), - [sym_constant_pattern] = STATE(3486), - [sym_parenthesized_pattern] = STATE(3486), - [sym_var_pattern] = STATE(3486), - [sym_type_pattern] = STATE(3486), - [sym_list_pattern] = STATE(3486), - [sym_recursive_pattern] = STATE(3486), - [sym_positional_pattern_clause] = STATE(5670), - [sym_property_pattern_clause] = STATE(5735), - [sym_relational_pattern] = STATE(3486), - [sym_negated_pattern] = STATE(3486), - [sym_and_pattern] = STATE(3486), - [sym_or_pattern] = STATE(3486), - [sym_declaration_pattern] = STATE(3486), - [sym_expression] = STATE(5668), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3520), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(4216), - [sym_postfix_unary_expression] = STATE(4219), - [sym_prefix_unary_expression] = STATE(4219), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6154), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(4216), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(4219), - [sym_switch_expression] = STATE(3080), - [sym_switch_expression_arm] = STATE(7123), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(4216), - [sym_member_access_expression] = STATE(3121), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(4219), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7530), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(4216), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(4216), - [sym_typeof_expression] = STATE(4216), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(3121), - [sym_literal] = STATE(4216), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2267), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), - [sym_preproc_region] = STATE(283), - [sym_preproc_endregion] = STATE(283), - [sym_preproc_line] = STATE(283), - [sym_preproc_pragma] = STATE(283), - [sym_preproc_nullable] = STATE(283), - [sym_preproc_error] = STATE(283), - [sym_preproc_warning] = STATE(283), - [sym_preproc_define] = STATE(283), - [sym_preproc_undef] = STATE(283), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), - [sym__identifier_token] = ACTIONS(25), - [anon_sym_alias] = ACTIONS(29), - [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1049), - [anon_sym_LPAREN] = ACTIONS(1985), - [anon_sym_ref] = ACTIONS(1987), - [anon_sym_LBRACE] = ACTIONS(1059), - [anon_sym_RBRACE] = ACTIONS(2299), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), - [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1061), - [anon_sym_LT] = ACTIONS(1991), - [anon_sym_GT] = ACTIONS(1991), - [anon_sym_where] = ACTIONS(29), - [anon_sym_notnull] = ACTIONS(29), - [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1067), - [anon_sym_BANG] = ACTIONS(1617), - [anon_sym_TILDE] = ACTIONS(1617), - [anon_sym_PLUS_PLUS] = ACTIONS(1617), - [anon_sym_DASH_DASH] = ACTIONS(1617), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1615), - [anon_sym_DASH] = ACTIONS(1615), - [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(1617), - [anon_sym_AMP] = ACTIONS(1617), - [anon_sym_GT_EQ] = ACTIONS(1993), - [anon_sym_LT_EQ] = ACTIONS(1993), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), + [sym__identifier_token] = ACTIONS(25), + [anon_sym_alias] = ACTIONS(29), + [anon_sym_global] = ACTIONS(29), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1479), + [anon_sym_LPAREN] = ACTIONS(2237), + [anon_sym_ref] = ACTIONS(2239), + [anon_sym_LBRACE] = ACTIONS(1481), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), + [anon_sym_file] = ACTIONS(29), + [anon_sym_new] = ACTIONS(2241), + [anon_sym_LT] = ACTIONS(1221), + [anon_sym_GT] = ACTIONS(1221), + [anon_sym_where] = ACTIONS(29), + [anon_sym_QMARK] = ACTIONS(1221), + [anon_sym_notnull] = ACTIONS(29), + [anon_sym_unmanaged] = ACTIONS(29), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(2243), + [anon_sym_TILDE] = ACTIONS(2245), + [anon_sym_PLUS_PLUS] = ACTIONS(2245), + [anon_sym_DASH_DASH] = ACTIONS(2245), + [anon_sym_true] = ACTIONS(77), + [anon_sym_false] = ACTIONS(77), + [anon_sym_PLUS] = ACTIONS(2243), + [anon_sym_DASH] = ACTIONS(2243), + [anon_sym_STAR] = ACTIONS(2247), + [anon_sym_SLASH] = ACTIONS(1221), + [anon_sym_PERCENT] = ACTIONS(1219), + [anon_sym_CARET] = ACTIONS(2245), + [anon_sym_PIPE] = ACTIONS(1221), + [anon_sym_AMP] = ACTIONS(2243), + [anon_sym_LT_LT] = ACTIONS(1219), + [anon_sym_GT_GT] = ACTIONS(1221), + [anon_sym_GT_GT_GT] = ACTIONS(1219), + [anon_sym_EQ_EQ] = ACTIONS(1219), + [anon_sym_BANG_EQ] = ACTIONS(1219), + [anon_sym_GT_EQ] = ACTIONS(1219), + [anon_sym_LT_EQ] = ACTIONS(1219), [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(1075), + [anon_sym_DOT] = ACTIONS(1221), + [anon_sym_scoped] = ACTIONS(85), [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(1995), + [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1067), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), + [anon_sym_switch] = ACTIONS(1221), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1589), + [anon_sym_throw] = ACTIONS(2249), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1591), - [sym_discard] = ACTIONS(1083), - [anon_sym_DOT_DOT] = ACTIONS(123), - [anon_sym_not] = ACTIONS(1997), + [anon_sym_await] = ACTIONS(2251), + [anon_sym_DOT_DOT] = ACTIONS(2253), + [anon_sym_AMP_AMP] = ACTIONS(1219), + [anon_sym_PIPE_PIPE] = ACTIONS(1219), + [anon_sym_QMARK_QMARK] = ACTIONS(1219), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -85098,7 +84789,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(1221), + [anon_sym_is] = ACTIONS(1221), + [anon_sym_DASH_GT] = ACTIONS(1219), [anon_sym_stackalloc] = ACTIONS(127), + [anon_sym_with] = ACTIONS(1221), [anon_sym_sizeof] = ACTIONS(129), [anon_sym_typeof] = ACTIONS(131), [anon_sym___makeref] = ACTIONS(133), @@ -85110,7 +84805,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(1089), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -85126,99 +84821,291 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_interpolation_raw_start] = ACTIONS(155), [sym_raw_string_start] = ACTIONS(157), }, + [283] = { + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2416), + [sym__name] = STATE(5868), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2387), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(5244), + [sym_non_lvalue_expression] = STATE(3040), + [sym_lvalue_expression] = STATE(3634), + [sym__expression_statement_expression] = STATE(3035), + [sym_assignment_expression] = STATE(3043), + [sym_binary_expression] = STATE(3035), + [sym_postfix_unary_expression] = STATE(3043), + [sym_prefix_unary_expression] = STATE(3043), + [sym__pointer_indirection_expression] = STATE(2415), + [sym_query_expression] = STATE(3035), + [sym_from_clause] = STATE(6130), + [sym_conditional_expression] = STATE(3035), + [sym_conditional_access_expression] = STATE(3035), + [sym_as_expression] = STATE(3035), + [sym_is_expression] = STATE(3035), + [sym_is_pattern_expression] = STATE(3035), + [sym_cast_expression] = STATE(3035), + [sym_checked_expression] = STATE(3035), + [sym_invocation_expression] = STATE(3043), + [sym_switch_expression] = STATE(3035), + [sym_await_expression] = STATE(3043), + [sym_throw_expression] = STATE(3035), + [sym_element_access_expression] = STATE(2415), + [sym_interpolated_string_expression] = STATE(3035), + [sym_member_access_expression] = STATE(2415), + [sym_object_creation_expression] = STATE(3043), + [sym_parenthesized_expression] = STATE(3043), + [sym__parenthesized_lvalue_expression] = STATE(2415), + [sym_lambda_expression] = STATE(3035), + [sym__lambda_expression_init] = STATE(7324), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3035), + [sym_anonymous_method_expression] = STATE(3035), + [sym_anonymous_object_creation_expression] = STATE(3035), + [sym_implicit_array_creation_expression] = STATE(3035), + [sym_implicit_object_creation_expression] = STATE(3035), + [sym_implicit_stackalloc_expression] = STATE(3035), + [sym_initializer_expression] = STATE(3035), + [sym_default_expression] = STATE(3035), + [sym_with_expression] = STATE(3035), + [sym_sizeof_expression] = STATE(3035), + [sym_typeof_expression] = STATE(3035), + [sym_makeref_expression] = STATE(3035), + [sym_ref_expression] = STATE(3035), + [sym_reftype_expression] = STATE(3035), + [sym_refvalue_expression] = STATE(3035), + [sym_stackalloc_expression] = STATE(3035), + [sym_range_expression] = STATE(3035), + [sym_tuple_expression] = STATE(2415), + [sym_literal] = STATE(3035), + [sym_character_literal] = STATE(3037), + [sym_string_literal] = STATE(3037), + [sym_raw_string_literal] = STATE(3037), + [sym_boolean_literal] = STATE(3037), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3035), + [sym_preproc_if_in_attribute_list] = STATE(5583), + [sym_preproc_region] = STATE(283), + [sym_preproc_endregion] = STATE(283), + [sym_preproc_line] = STATE(283), + [sym_preproc_pragma] = STATE(283), + [sym_preproc_nullable] = STATE(283), + [sym_preproc_error] = STATE(283), + [sym_preproc_warning] = STATE(283), + [sym_preproc_define] = STATE(283), + [sym_preproc_undef] = STATE(283), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3455), + [sym__identifier_token] = ACTIONS(25), + [anon_sym_alias] = ACTIONS(29), + [anon_sym_global] = ACTIONS(29), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1239), + [anon_sym_LPAREN] = ACTIONS(2281), + [anon_sym_ref] = ACTIONS(2283), + [anon_sym_LBRACE] = ACTIONS(1245), + [anon_sym_delegate] = ACTIONS(1247), + [anon_sym_async] = ACTIONS(1045), + [anon_sym_file] = ACTIONS(29), + [anon_sym_new] = ACTIONS(2285), + [anon_sym_LT] = ACTIONS(1221), + [anon_sym_GT] = ACTIONS(1221), + [anon_sym_where] = ACTIONS(29), + [anon_sym_QMARK] = ACTIONS(1221), + [anon_sym_notnull] = ACTIONS(29), + [anon_sym_unmanaged] = ACTIONS(29), + [anon_sym_checked] = ACTIONS(1251), + [anon_sym_BANG] = ACTIONS(2287), + [anon_sym_TILDE] = ACTIONS(2289), + [anon_sym_PLUS_PLUS] = ACTIONS(2289), + [anon_sym_DASH_DASH] = ACTIONS(2289), + [anon_sym_true] = ACTIONS(1257), + [anon_sym_false] = ACTIONS(1257), + [anon_sym_PLUS] = ACTIONS(2287), + [anon_sym_DASH] = ACTIONS(2287), + [anon_sym_STAR] = ACTIONS(2291), + [anon_sym_SLASH] = ACTIONS(1221), + [anon_sym_PERCENT] = ACTIONS(1219), + [anon_sym_CARET] = ACTIONS(2289), + [anon_sym_PIPE] = ACTIONS(1221), + [anon_sym_AMP] = ACTIONS(2287), + [anon_sym_LT_LT] = ACTIONS(1219), + [anon_sym_GT_GT] = ACTIONS(1221), + [anon_sym_GT_GT_GT] = ACTIONS(1219), + [anon_sym_EQ_EQ] = ACTIONS(1219), + [anon_sym_BANG_EQ] = ACTIONS(1219), + [anon_sym_GT_EQ] = ACTIONS(1219), + [anon_sym_LT_EQ] = ACTIONS(1219), + [anon_sym_this] = ACTIONS(1261), + [anon_sym_DOT] = ACTIONS(1221), + [anon_sym_scoped] = ACTIONS(85), + [anon_sym_base] = ACTIONS(1263), + [anon_sym_var] = ACTIONS(89), + [sym_predefined_type] = ACTIONS(1265), + [anon_sym_unchecked] = ACTIONS(1251), + [anon_sym_yield] = ACTIONS(29), + [anon_sym_switch] = ACTIONS(1221), + [anon_sym_default] = ACTIONS(1267), + [anon_sym_throw] = ACTIONS(2293), + [anon_sym_when] = ACTIONS(29), + [anon_sym_await] = ACTIONS(2295), + [anon_sym_DOT_DOT] = ACTIONS(2297), + [anon_sym_AMP_AMP] = ACTIONS(1219), + [anon_sym_PIPE_PIPE] = ACTIONS(1219), + [anon_sym_QMARK_QMARK] = ACTIONS(1219), + [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(1221), + [anon_sym_is] = ACTIONS(1221), + [anon_sym_DASH_GT] = ACTIONS(1219), + [anon_sym_stackalloc] = ACTIONS(1275), + [anon_sym_with] = ACTIONS(1221), + [anon_sym_sizeof] = ACTIONS(1277), + [anon_sym_typeof] = ACTIONS(1279), + [anon_sym___makeref] = ACTIONS(1281), + [anon_sym___reftype] = ACTIONS(1283), + [anon_sym___refvalue] = ACTIONS(1285), + [sym_null_literal] = ACTIONS(1287), + [anon_sym_SQUOTE] = ACTIONS(1289), + [sym_integer_literal] = ACTIONS(1287), + [sym_real_literal] = ACTIONS(1291), + [anon_sym_DQUOTE] = ACTIONS(1293), + [sym_verbatim_string_literal] = ACTIONS(1291), + [aux_sym_preproc_if_token1] = ACTIONS(1295), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + [sym_interpolation_regular_start] = ACTIONS(1297), + [sym_interpolation_verbatim_start] = ACTIONS(1299), + [sym_interpolation_raw_start] = ACTIONS(1301), + [sym_raw_string_start] = ACTIONS(1303), + }, [284] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(5160), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2230), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(4363), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_pattern] = STATE(6632), - [sym_constant_pattern] = STATE(3486), - [sym_parenthesized_pattern] = STATE(3486), - [sym_var_pattern] = STATE(3486), - [sym_type_pattern] = STATE(3486), - [sym_list_pattern] = STATE(3486), - [sym_recursive_pattern] = STATE(3486), - [sym_positional_pattern_clause] = STATE(5175), - [sym_property_pattern_clause] = STATE(5675), - [sym_relational_pattern] = STATE(3486), - [sym_negated_pattern] = STATE(3486), - [sym_and_pattern] = STATE(3486), - [sym_or_pattern] = STATE(3486), - [sym_declaration_pattern] = STATE(3486), - [sym_expression] = STATE(5679), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3520), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(4419), - [sym_postfix_unary_expression] = STATE(4420), - [sym_prefix_unary_expression] = STATE(4420), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6154), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(4419), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(4420), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(4419), - [sym_member_access_expression] = STATE(3135), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(4420), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7530), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(4419), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(4419), - [sym_typeof_expression] = STATE(4419), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(3135), - [sym_literal] = STATE(4419), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(5528), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2225), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(4472), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_pattern] = STATE(6660), + [sym_constant_pattern] = STATE(3429), + [sym_parenthesized_pattern] = STATE(3429), + [sym_var_pattern] = STATE(3429), + [sym_type_pattern] = STATE(3429), + [sym_list_pattern] = STATE(3429), + [sym_recursive_pattern] = STATE(3429), + [sym_positional_pattern_clause] = STATE(5135), + [sym_property_pattern_clause] = STATE(5666), + [sym_subpattern] = STATE(6780), + [sym_relational_pattern] = STATE(3429), + [sym_negated_pattern] = STATE(3429), + [sym_and_pattern] = STATE(3429), + [sym_or_pattern] = STATE(3429), + [sym_declaration_pattern] = STATE(3429), + [sym_expression] = STATE(5362), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3660), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(4418), + [sym_postfix_unary_expression] = STATE(4403), + [sym_prefix_unary_expression] = STATE(4403), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6163), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(4418), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(4403), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(4418), + [sym_member_access_expression] = STATE(3127), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(4403), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7633), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(4418), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(4418), + [sym_typeof_expression] = STATE(4418), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(3127), + [sym_literal] = STATE(4418), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(284), [sym_preproc_endregion] = STATE(284), [sym_preproc_line] = STATE(284), @@ -85228,54 +85115,53 @@ 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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1049), - [anon_sym_RBRACK] = ACTIONS(2301), - [anon_sym_LPAREN] = ACTIONS(1053), - [anon_sym_ref] = ACTIONS(2303), - [anon_sym_LBRACE] = ACTIONS(1059), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_LPAREN] = ACTIONS(1141), + [anon_sym_ref] = ACTIONS(2299), + [anon_sym_LBRACE] = ACTIONS(1057), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1061), - [anon_sym_LT] = ACTIONS(1063), - [anon_sym_GT] = ACTIONS(1063), + [anon_sym_new] = ACTIONS(1095), + [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(1067), - [anon_sym_BANG] = ACTIONS(1069), - [anon_sym_TILDE] = ACTIONS(1069), - [anon_sym_PLUS_PLUS] = ACTIONS(1069), - [anon_sym_DASH_DASH] = ACTIONS(1069), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(1101), + [anon_sym_TILDE] = ACTIONS(1101), + [anon_sym_PLUS_PLUS] = ACTIONS(1101), + [anon_sym_DASH_DASH] = ACTIONS(1101), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1071), - [anon_sym_DASH] = ACTIONS(1071), - [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(1069), - [anon_sym_AMP] = ACTIONS(1069), - [anon_sym_GT_EQ] = ACTIONS(1073), - [anon_sym_LT_EQ] = ACTIONS(1073), + [anon_sym_PLUS] = ACTIONS(1103), + [anon_sym_DASH] = ACTIONS(1103), + [anon_sym_STAR] = ACTIONS(1227), + [anon_sym_CARET] = ACTIONS(1101), + [anon_sym_AMP] = ACTIONS(1101), + [anon_sym_GT_EQ] = ACTIONS(1071), + [anon_sym_LT_EQ] = ACTIONS(1071), [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(1075), + [anon_sym_scoped] = ACTIONS(2301), [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(1077), + [anon_sym_var] = ACTIONS(1075), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1067), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1589), + [anon_sym_throw] = ACTIONS(1231), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1591), - [sym_discard] = ACTIONS(1083), - [anon_sym_DOT_DOT] = ACTIONS(2305), - [anon_sym_not] = ACTIONS(1087), + [anon_sym_await] = ACTIONS(1233), + [sym_discard] = ACTIONS(1081), + [anon_sym_DOT_DOT] = ACTIONS(1235), + [anon_sym_not] = ACTIONS(1121), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -85300,7 +85186,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(1089), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -85317,99 +85203,98 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [285] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(5634), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2230), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(4363), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_pattern] = STATE(6717), - [sym_constant_pattern] = STATE(3486), - [sym_parenthesized_pattern] = STATE(3486), - [sym_var_pattern] = STATE(3486), - [sym_type_pattern] = STATE(3486), - [sym_list_pattern] = STATE(3486), - [sym_recursive_pattern] = STATE(3486), - [sym_positional_pattern_clause] = STATE(5175), - [sym_property_pattern_clause] = STATE(5675), - [sym_subpattern] = STATE(6964), - [sym_relational_pattern] = STATE(3486), - [sym_negated_pattern] = STATE(3486), - [sym_and_pattern] = STATE(3486), - [sym_or_pattern] = STATE(3486), - [sym_declaration_pattern] = STATE(3486), - [sym_expression] = STATE(5385), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3664), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(4419), - [sym_postfix_unary_expression] = STATE(4420), - [sym_prefix_unary_expression] = STATE(4420), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6161), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(4419), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(4420), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(4419), - [sym_member_access_expression] = STATE(3135), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(4420), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7773), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(4419), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(4419), - [sym_typeof_expression] = STATE(4419), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(3135), - [sym_literal] = STATE(4419), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(5152), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2225), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(4472), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_pattern] = STATE(6657), + [sym_constant_pattern] = STATE(3429), + [sym_parenthesized_pattern] = STATE(3429), + [sym_var_pattern] = STATE(3429), + [sym_type_pattern] = STATE(3429), + [sym_list_pattern] = STATE(3429), + [sym_recursive_pattern] = STATE(3429), + [sym_positional_pattern_clause] = STATE(5135), + [sym_property_pattern_clause] = STATE(5666), + [sym_relational_pattern] = STATE(3429), + [sym_negated_pattern] = STATE(3429), + [sym_and_pattern] = STATE(3429), + [sym_or_pattern] = STATE(3429), + [sym_declaration_pattern] = STATE(3429), + [sym_expression] = STATE(5682), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3510), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(4418), + [sym_postfix_unary_expression] = STATE(4403), + [sym_prefix_unary_expression] = STATE(4403), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6134), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(4418), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(4403), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(4418), + [sym_member_access_expression] = STATE(3127), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(4403), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7425), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(4418), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(4418), + [sym_typeof_expression] = STATE(4418), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(3127), + [sym_literal] = STATE(4418), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(285), [sym_preproc_endregion] = STATE(285), [sym_preproc_line] = STATE(285), @@ -85419,53 +85304,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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1049), - [anon_sym_LPAREN] = ACTIONS(1143), - [anon_sym_ref] = ACTIONS(2075), - [anon_sym_LBRACE] = ACTIONS(1059), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_RBRACK] = ACTIONS(2303), + [anon_sym_LPAREN] = ACTIONS(1051), + [anon_sym_ref] = ACTIONS(2305), + [anon_sym_LBRACE] = ACTIONS(1057), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1101), - [anon_sym_LT] = ACTIONS(1063), - [anon_sym_GT] = ACTIONS(1063), + [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(1067), - [anon_sym_BANG] = ACTIONS(1107), - [anon_sym_TILDE] = ACTIONS(1107), - [anon_sym_PLUS_PLUS] = ACTIONS(1107), - [anon_sym_DASH_DASH] = ACTIONS(1107), + [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(1109), - [anon_sym_DASH] = ACTIONS(1109), - [anon_sym_STAR] = ACTIONS(1229), - [anon_sym_CARET] = ACTIONS(1107), - [anon_sym_AMP] = ACTIONS(1107), - [anon_sym_GT_EQ] = ACTIONS(1073), - [anon_sym_LT_EQ] = ACTIONS(1073), + [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), - [anon_sym_scoped] = ACTIONS(1075), + [anon_sym_scoped] = ACTIONS(1073), [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(1077), + [anon_sym_var] = ACTIONS(1075), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1067), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1233), + [anon_sym_throw] = ACTIONS(1527), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1235), - [sym_discard] = ACTIONS(1083), - [anon_sym_DOT_DOT] = ACTIONS(1237), - [anon_sym_not] = ACTIONS(1087), + [anon_sym_await] = ACTIONS(1529), + [sym_discard] = ACTIONS(1081), + [anon_sym_DOT_DOT] = ACTIONS(2307), + [anon_sym_not] = ACTIONS(1085), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -85490,7 +85376,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(1089), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -85507,99 +85393,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [286] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(5634), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2230), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(4363), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_pattern] = STATE(6663), - [sym_constant_pattern] = STATE(3486), - [sym_parenthesized_pattern] = STATE(3486), - [sym_var_pattern] = STATE(3486), - [sym_type_pattern] = STATE(3486), - [sym_list_pattern] = STATE(3486), - [sym_recursive_pattern] = STATE(3486), - [sym_positional_pattern_clause] = STATE(5175), - [sym_property_pattern_clause] = STATE(5675), - [sym_subpattern] = STATE(6964), - [sym_relational_pattern] = STATE(3486), - [sym_negated_pattern] = STATE(3486), - [sym_and_pattern] = STATE(3486), - [sym_or_pattern] = STATE(3486), - [sym_declaration_pattern] = STATE(3486), - [sym_expression] = STATE(5331), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3664), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(4419), - [sym_postfix_unary_expression] = STATE(4420), - [sym_prefix_unary_expression] = STATE(4420), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6161), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(4419), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(4420), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(4419), - [sym_member_access_expression] = STATE(3135), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(4420), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7773), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(4419), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(4419), - [sym_typeof_expression] = STATE(4419), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(3135), - [sym_literal] = STATE(4419), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_modifier] = STATE(3845), + [sym_parameter_list] = STATE(7531), + [sym_variable_declaration] = STATE(7398), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(5152), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2196), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5833), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(3528), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3356), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3102), + [sym_postfix_unary_expression] = STATE(3079), + [sym_prefix_unary_expression] = STATE(3079), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6134), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3102), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3079), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3102), + [sym_member_access_expression] = STATE(2472), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3079), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7627), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(3102), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3102), + [sym_typeof_expression] = STATE(3102), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2472), + [sym_literal] = STATE(3102), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(286), [sym_preproc_endregion] = STATE(286), [sym_preproc_line] = STATE(286), @@ -85609,53 +85482,66 @@ 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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), - [sym__identifier_token] = ACTIONS(25), - [anon_sym_alias] = ACTIONS(29), - [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1049), - [anon_sym_LPAREN] = ACTIONS(1143), - [anon_sym_ref] = ACTIONS(2307), - [anon_sym_LBRACE] = ACTIONS(1059), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), - [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1101), - [anon_sym_LT] = ACTIONS(1063), - [anon_sym_GT] = ACTIONS(1063), - [anon_sym_where] = ACTIONS(29), - [anon_sym_notnull] = ACTIONS(29), - [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1067), - [anon_sym_BANG] = ACTIONS(1107), - [anon_sym_TILDE] = ACTIONS(1107), - [anon_sym_PLUS_PLUS] = ACTIONS(1107), - [anon_sym_DASH_DASH] = ACTIONS(1107), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__class_declaration_initializer_repeat2] = STATE(2522), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), + [sym__identifier_token] = ACTIONS(25), + [anon_sym_extern] = ACTIONS(645), + [anon_sym_alias] = ACTIONS(29), + [anon_sym_global] = ACTIONS(29), + [anon_sym_using] = ACTIONS(2309), + [anon_sym_unsafe] = ACTIONS(645), + [anon_sym_static] = ACTIONS(653), + [anon_sym_LBRACK] = ACTIONS(1479), + [anon_sym_LPAREN] = ACTIONS(1511), + [anon_sym_ref] = ACTIONS(1513), + [anon_sym_LBRACE] = ACTIONS(1481), + [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(2311), + [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(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(1109), - [anon_sym_DASH] = ACTIONS(1109), - [anon_sym_STAR] = ACTIONS(1229), - [anon_sym_CARET] = ACTIONS(1107), - [anon_sym_AMP] = ACTIONS(1107), - [anon_sym_GT_EQ] = ACTIONS(1073), - [anon_sym_LT_EQ] = ACTIONS(1073), + [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(2309), + [anon_sym_scoped] = ACTIONS(85), [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(1077), + [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1067), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1233), + [anon_sym_throw] = ACTIONS(1517), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1235), - [sym_discard] = ACTIONS(1083), - [anon_sym_DOT_DOT] = ACTIONS(1237), - [anon_sym_not] = ACTIONS(1127), + [anon_sym_await] = ACTIONS(1519), + [anon_sym_foreach] = ACTIONS(2313), + [anon_sym_DOT_DOT] = ACTIONS(1521), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -85680,7 +85566,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(1089), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -85697,98 +85583,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [287] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(5160), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2230), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(4363), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_pattern] = STATE(6632), - [sym_constant_pattern] = STATE(3486), - [sym_parenthesized_pattern] = STATE(3486), - [sym_var_pattern] = STATE(3486), - [sym_type_pattern] = STATE(3486), - [sym_list_pattern] = STATE(3486), - [sym_recursive_pattern] = STATE(3486), - [sym_positional_pattern_clause] = STATE(5175), - [sym_property_pattern_clause] = STATE(5675), - [sym_relational_pattern] = STATE(3486), - [sym_negated_pattern] = STATE(3486), - [sym_and_pattern] = STATE(3486), - [sym_or_pattern] = STATE(3486), - [sym_declaration_pattern] = STATE(3486), - [sym_expression] = STATE(5679), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3520), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(4419), - [sym_postfix_unary_expression] = STATE(4420), - [sym_prefix_unary_expression] = STATE(4420), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6154), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(4419), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(4420), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(4419), - [sym_member_access_expression] = STATE(3135), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(4420), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7530), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(4419), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(4419), - [sym_typeof_expression] = STATE(4419), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(3135), - [sym_literal] = STATE(4419), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_modifier] = STATE(3845), + [sym_parameter_list] = STATE(7531), + [sym_variable_declaration] = STATE(7308), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(5152), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2196), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5833), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(3528), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3356), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3102), + [sym_postfix_unary_expression] = STATE(3079), + [sym_prefix_unary_expression] = STATE(3079), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6134), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3102), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3079), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3102), + [sym_member_access_expression] = STATE(2472), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3079), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7627), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(3102), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3102), + [sym_typeof_expression] = STATE(3102), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2472), + [sym_literal] = STATE(3102), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(287), [sym_preproc_endregion] = STATE(287), [sym_preproc_line] = STATE(287), @@ -85798,54 +85672,66 @@ 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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), - [sym__identifier_token] = ACTIONS(25), - [anon_sym_alias] = ACTIONS(29), - [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1049), - [anon_sym_RBRACK] = ACTIONS(2311), - [anon_sym_LPAREN] = ACTIONS(1053), - [anon_sym_ref] = ACTIONS(2303), - [anon_sym_LBRACE] = ACTIONS(1059), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), - [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1061), - [anon_sym_LT] = ACTIONS(1063), - [anon_sym_GT] = ACTIONS(1063), - [anon_sym_where] = ACTIONS(29), - [anon_sym_notnull] = ACTIONS(29), - [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1067), - [anon_sym_BANG] = ACTIONS(1069), - [anon_sym_TILDE] = ACTIONS(1069), - [anon_sym_PLUS_PLUS] = ACTIONS(1069), - [anon_sym_DASH_DASH] = ACTIONS(1069), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__class_declaration_initializer_repeat2] = STATE(2523), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), + [sym__identifier_token] = ACTIONS(25), + [anon_sym_extern] = ACTIONS(645), + [anon_sym_alias] = ACTIONS(29), + [anon_sym_global] = ACTIONS(29), + [anon_sym_using] = ACTIONS(2315), + [anon_sym_unsafe] = ACTIONS(645), + [anon_sym_static] = ACTIONS(653), + [anon_sym_LBRACK] = ACTIONS(1479), + [anon_sym_LPAREN] = ACTIONS(1511), + [anon_sym_ref] = ACTIONS(1513), + [anon_sym_LBRACE] = ACTIONS(1481), + [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(2311), + [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(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(1071), - [anon_sym_DASH] = ACTIONS(1071), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_DASH] = ACTIONS(79), [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(1069), - [anon_sym_AMP] = ACTIONS(1069), - [anon_sym_GT_EQ] = ACTIONS(1073), - [anon_sym_LT_EQ] = ACTIONS(1073), + [anon_sym_CARET] = ACTIONS(75), + [anon_sym_AMP] = ACTIONS(75), [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(1075), + [anon_sym_scoped] = ACTIONS(85), [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(1077), + [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1067), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1589), + [anon_sym_throw] = ACTIONS(1517), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1591), - [sym_discard] = ACTIONS(1083), - [anon_sym_DOT_DOT] = ACTIONS(2305), - [anon_sym_not] = ACTIONS(1087), + [anon_sym_await] = ACTIONS(1519), + [anon_sym_foreach] = ACTIONS(2313), + [anon_sym_DOT_DOT] = ACTIONS(1521), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -85870,7 +85756,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(1089), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -85887,99 +85773,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [288] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(5723), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2284), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5162), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_pattern] = STATE(6590), - [sym_constant_pattern] = STATE(3486), - [sym_parenthesized_pattern] = STATE(3486), - [sym_var_pattern] = STATE(3486), - [sym_type_pattern] = STATE(3486), - [sym_list_pattern] = STATE(3486), - [sym_recursive_pattern] = STATE(3486), - [sym_positional_pattern_clause] = STATE(5670), - [sym_property_pattern_clause] = STATE(5735), - [sym_relational_pattern] = STATE(3486), - [sym_negated_pattern] = STATE(3486), - [sym_and_pattern] = STATE(3486), - [sym_or_pattern] = STATE(3486), - [sym_declaration_pattern] = STATE(3486), - [sym_expression] = STATE(5668), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3520), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(4216), - [sym_postfix_unary_expression] = STATE(4219), - [sym_prefix_unary_expression] = STATE(4219), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6154), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(4216), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(4219), - [sym_switch_expression] = STATE(3080), - [sym_switch_expression_arm] = STATE(7123), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(4216), - [sym_member_access_expression] = STATE(3121), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(4219), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7530), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(4216), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(4216), - [sym_typeof_expression] = STATE(4216), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(3121), - [sym_literal] = STATE(4216), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2267), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_modifier] = STATE(3845), + [sym_parameter_list] = STATE(7531), + [sym_variable_declaration] = STATE(7664), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(5873), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2238), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5833), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(3528), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3526), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3102), + [sym_postfix_unary_expression] = STATE(3079), + [sym_prefix_unary_expression] = STATE(3079), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6134), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3102), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3079), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3102), + [sym_member_access_expression] = STATE(2472), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3079), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7455), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(3102), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3102), + [sym_typeof_expression] = STATE(3102), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2472), + [sym_literal] = STATE(3102), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(288), [sym_preproc_endregion] = STATE(288), [sym_preproc_line] = STATE(288), @@ -85989,53 +85862,66 @@ 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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__class_declaration_initializer_repeat2] = STATE(2532), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), + [anon_sym_extern] = ACTIONS(645), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1049), - [anon_sym_LPAREN] = ACTIONS(1985), - [anon_sym_ref] = ACTIONS(1987), - [anon_sym_LBRACE] = ACTIONS(1059), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), - [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1061), - [anon_sym_LT] = ACTIONS(1991), - [anon_sym_GT] = ACTIONS(1991), - [anon_sym_where] = ACTIONS(29), - [anon_sym_notnull] = ACTIONS(29), - [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1067), - [anon_sym_BANG] = ACTIONS(1617), - [anon_sym_TILDE] = ACTIONS(1617), - [anon_sym_PLUS_PLUS] = ACTIONS(1617), - [anon_sym_DASH_DASH] = ACTIONS(1617), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1615), - [anon_sym_DASH] = ACTIONS(1615), - [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(1617), - [anon_sym_AMP] = ACTIONS(1617), - [anon_sym_GT_EQ] = ACTIONS(1993), - [anon_sym_LT_EQ] = ACTIONS(1993), + [anon_sym_using] = ACTIONS(2317), + [anon_sym_unsafe] = ACTIONS(645), + [anon_sym_static] = ACTIONS(653), + [anon_sym_LBRACK] = ACTIONS(1479), + [anon_sym_LPAREN] = ACTIONS(1629), + [anon_sym_ref] = ACTIONS(1631), + [anon_sym_LBRACE] = ACTIONS(1481), + [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(2311), + [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(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_scoped] = ACTIONS(1075), + [anon_sym_scoped] = ACTIONS(85), [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(1995), + [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1067), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1589), + [anon_sym_throw] = ACTIONS(1633), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1591), - [sym_discard] = ACTIONS(1083), - [anon_sym_DOT_DOT] = ACTIONS(123), - [anon_sym_not] = ACTIONS(1997), + [anon_sym_await] = ACTIONS(1635), + [anon_sym_foreach] = ACTIONS(2313), + [anon_sym_DOT_DOT] = ACTIONS(1637), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -86060,7 +85946,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(1089), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -86077,98 +85963,98 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [289] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(5160), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2230), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(4363), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_pattern] = STATE(6632), - [sym_constant_pattern] = STATE(3486), - [sym_parenthesized_pattern] = STATE(3486), - [sym_var_pattern] = STATE(3486), - [sym_type_pattern] = STATE(3486), - [sym_list_pattern] = STATE(3486), - [sym_recursive_pattern] = STATE(3486), - [sym_positional_pattern_clause] = STATE(5175), - [sym_property_pattern_clause] = STATE(5675), - [sym_relational_pattern] = STATE(3486), - [sym_negated_pattern] = STATE(3486), - [sym_and_pattern] = STATE(3486), - [sym_or_pattern] = STATE(3486), - [sym_declaration_pattern] = STATE(3486), - [sym_expression] = STATE(5679), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3520), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(4419), - [sym_postfix_unary_expression] = STATE(4420), - [sym_prefix_unary_expression] = STATE(4420), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6154), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(4419), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(4420), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(4419), - [sym_member_access_expression] = STATE(3135), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(4420), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7530), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(4419), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(4419), - [sym_typeof_expression] = STATE(4419), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(3135), - [sym_literal] = STATE(4419), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(5152), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2225), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(4472), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_pattern] = STATE(6657), + [sym_constant_pattern] = STATE(3429), + [sym_parenthesized_pattern] = STATE(3429), + [sym_var_pattern] = STATE(3429), + [sym_type_pattern] = STATE(3429), + [sym_list_pattern] = STATE(3429), + [sym_recursive_pattern] = STATE(3429), + [sym_positional_pattern_clause] = STATE(5135), + [sym_property_pattern_clause] = STATE(5666), + [sym_relational_pattern] = STATE(3429), + [sym_negated_pattern] = STATE(3429), + [sym_and_pattern] = STATE(3429), + [sym_or_pattern] = STATE(3429), + [sym_declaration_pattern] = STATE(3429), + [sym_expression] = STATE(5682), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3510), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(4418), + [sym_postfix_unary_expression] = STATE(4403), + [sym_prefix_unary_expression] = STATE(4403), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6134), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(4418), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(4403), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(4418), + [sym_member_access_expression] = STATE(3127), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(4403), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7425), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(4418), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(4418), + [sym_typeof_expression] = STATE(4418), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(3127), + [sym_literal] = STATE(4418), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(289), [sym_preproc_endregion] = STATE(289), [sym_preproc_line] = STATE(289), @@ -86178,54 +86064,54 @@ 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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1049), - [anon_sym_RBRACK] = ACTIONS(2313), - [anon_sym_LPAREN] = ACTIONS(1053), - [anon_sym_ref] = ACTIONS(2303), - [anon_sym_LBRACE] = ACTIONS(1059), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_RBRACK] = ACTIONS(2319), + [anon_sym_LPAREN] = ACTIONS(1051), + [anon_sym_ref] = ACTIONS(2305), + [anon_sym_LBRACE] = ACTIONS(1057), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1061), - [anon_sym_LT] = ACTIONS(1063), - [anon_sym_GT] = ACTIONS(1063), + [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(1067), - [anon_sym_BANG] = ACTIONS(1069), - [anon_sym_TILDE] = ACTIONS(1069), - [anon_sym_PLUS_PLUS] = ACTIONS(1069), - [anon_sym_DASH_DASH] = ACTIONS(1069), + [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(1071), - [anon_sym_DASH] = ACTIONS(1071), + [anon_sym_PLUS] = ACTIONS(1069), + [anon_sym_DASH] = ACTIONS(1069), [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(1069), - [anon_sym_AMP] = ACTIONS(1069), - [anon_sym_GT_EQ] = ACTIONS(1073), - [anon_sym_LT_EQ] = ACTIONS(1073), + [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(1075), + [anon_sym_scoped] = ACTIONS(1073), [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(1077), + [anon_sym_var] = ACTIONS(1075), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1067), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1589), + [anon_sym_throw] = ACTIONS(1527), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1591), - [sym_discard] = ACTIONS(1083), - [anon_sym_DOT_DOT] = ACTIONS(2305), - [anon_sym_not] = ACTIONS(1087), + [anon_sym_await] = ACTIONS(1529), + [sym_discard] = ACTIONS(1081), + [anon_sym_DOT_DOT] = ACTIONS(2307), + [anon_sym_not] = ACTIONS(1085), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -86250,7 +86136,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(1089), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -86267,98 +86153,98 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [290] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(5160), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2230), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(4363), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_pattern] = STATE(6632), - [sym_constant_pattern] = STATE(3486), - [sym_parenthesized_pattern] = STATE(3486), - [sym_var_pattern] = STATE(3486), - [sym_type_pattern] = STATE(3486), - [sym_list_pattern] = STATE(3486), - [sym_recursive_pattern] = STATE(3486), - [sym_positional_pattern_clause] = STATE(5175), - [sym_property_pattern_clause] = STATE(5675), - [sym_relational_pattern] = STATE(3486), - [sym_negated_pattern] = STATE(3486), - [sym_and_pattern] = STATE(3486), - [sym_or_pattern] = STATE(3486), - [sym_declaration_pattern] = STATE(3486), - [sym_expression] = STATE(5679), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3520), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(4419), - [sym_postfix_unary_expression] = STATE(4420), - [sym_prefix_unary_expression] = STATE(4420), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6154), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(4419), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(4420), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(4419), - [sym_member_access_expression] = STATE(3135), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(4420), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7530), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(4419), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(4419), - [sym_typeof_expression] = STATE(4419), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(3135), - [sym_literal] = STATE(4419), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(5152), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2225), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(4472), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_pattern] = STATE(6657), + [sym_constant_pattern] = STATE(3429), + [sym_parenthesized_pattern] = STATE(3429), + [sym_var_pattern] = STATE(3429), + [sym_type_pattern] = STATE(3429), + [sym_list_pattern] = STATE(3429), + [sym_recursive_pattern] = STATE(3429), + [sym_positional_pattern_clause] = STATE(5135), + [sym_property_pattern_clause] = STATE(5666), + [sym_relational_pattern] = STATE(3429), + [sym_negated_pattern] = STATE(3429), + [sym_and_pattern] = STATE(3429), + [sym_or_pattern] = STATE(3429), + [sym_declaration_pattern] = STATE(3429), + [sym_expression] = STATE(5682), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3510), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(4418), + [sym_postfix_unary_expression] = STATE(4403), + [sym_prefix_unary_expression] = STATE(4403), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6134), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(4418), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(4403), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(4418), + [sym_member_access_expression] = STATE(3127), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(4403), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7425), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(4418), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(4418), + [sym_typeof_expression] = STATE(4418), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(3127), + [sym_literal] = STATE(4418), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(290), [sym_preproc_endregion] = STATE(290), [sym_preproc_line] = STATE(290), @@ -86368,54 +86254,54 @@ 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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1049), - [anon_sym_RBRACK] = ACTIONS(2315), - [anon_sym_LPAREN] = ACTIONS(1053), - [anon_sym_ref] = ACTIONS(2303), - [anon_sym_LBRACE] = ACTIONS(1059), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_RBRACK] = ACTIONS(2321), + [anon_sym_LPAREN] = ACTIONS(1051), + [anon_sym_ref] = ACTIONS(2305), + [anon_sym_LBRACE] = ACTIONS(1057), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1061), - [anon_sym_LT] = ACTIONS(1063), - [anon_sym_GT] = ACTIONS(1063), + [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(1067), - [anon_sym_BANG] = ACTIONS(1069), - [anon_sym_TILDE] = ACTIONS(1069), - [anon_sym_PLUS_PLUS] = ACTIONS(1069), - [anon_sym_DASH_DASH] = ACTIONS(1069), + [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(1071), - [anon_sym_DASH] = ACTIONS(1071), + [anon_sym_PLUS] = ACTIONS(1069), + [anon_sym_DASH] = ACTIONS(1069), [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(1069), - [anon_sym_AMP] = ACTIONS(1069), - [anon_sym_GT_EQ] = ACTIONS(1073), - [anon_sym_LT_EQ] = ACTIONS(1073), + [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(1075), + [anon_sym_scoped] = ACTIONS(1073), [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(1077), + [anon_sym_var] = ACTIONS(1075), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1067), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1589), + [anon_sym_throw] = ACTIONS(1527), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1591), - [sym_discard] = ACTIONS(1083), - [anon_sym_DOT_DOT] = ACTIONS(2305), - [anon_sym_not] = ACTIONS(1087), + [anon_sym_await] = ACTIONS(1529), + [sym_discard] = ACTIONS(1081), + [anon_sym_DOT_DOT] = ACTIONS(2307), + [anon_sym_not] = ACTIONS(1085), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -86440,7 +86326,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(1089), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -86457,86 +86343,98 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [291] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_modifier] = STATE(3878), - [sym_parameter_list] = STATE(7311), - [sym_variable_declaration] = STATE(7742), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(5160), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2204), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5806), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(3521), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3461), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3080), - [sym_postfix_unary_expression] = STATE(3111), - [sym_prefix_unary_expression] = STATE(3111), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6154), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3080), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3111), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3080), - [sym_member_access_expression] = STATE(2484), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3111), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7547), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(3080), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3080), - [sym_typeof_expression] = STATE(3080), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2484), - [sym_literal] = STATE(3080), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(5152), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2225), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(4472), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_pattern] = STATE(6657), + [sym_constant_pattern] = STATE(3429), + [sym_parenthesized_pattern] = STATE(3429), + [sym_var_pattern] = STATE(3429), + [sym_type_pattern] = STATE(3429), + [sym_list_pattern] = STATE(3429), + [sym_recursive_pattern] = STATE(3429), + [sym_positional_pattern_clause] = STATE(5135), + [sym_property_pattern_clause] = STATE(5666), + [sym_relational_pattern] = STATE(3429), + [sym_negated_pattern] = STATE(3429), + [sym_and_pattern] = STATE(3429), + [sym_or_pattern] = STATE(3429), + [sym_declaration_pattern] = STATE(3429), + [sym_expression] = STATE(5682), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3510), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(4418), + [sym_postfix_unary_expression] = STATE(4403), + [sym_prefix_unary_expression] = STATE(4403), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6134), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(4418), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(4403), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(4418), + [sym_member_access_expression] = STATE(3127), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(4403), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7425), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(4418), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(4418), + [sym_typeof_expression] = STATE(4418), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(3127), + [sym_literal] = STATE(4418), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(291), [sym_preproc_endregion] = STATE(291), [sym_preproc_line] = STATE(291), @@ -86546,66 +86444,54 @@ 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(3067), - [aux_sym__class_declaration_initializer_repeat2] = STATE(2534), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), - [anon_sym_extern] = ACTIONS(647), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_using] = ACTIONS(2317), - [anon_sym_unsafe] = ACTIONS(647), - [anon_sym_static] = ACTIONS(655), - [anon_sym_LBRACK] = ACTIONS(1481), - [anon_sym_LPAREN] = ACTIONS(1497), - [anon_sym_ref] = ACTIONS(1499), - [anon_sym_LBRACE] = ACTIONS(1487), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_abstract] = ACTIONS(647), - [anon_sym_async] = ACTIONS(655), - [anon_sym_const] = ACTIONS(647), - [anon_sym_file] = ACTIONS(669), - [anon_sym_fixed] = ACTIONS(647), - [anon_sym_internal] = ACTIONS(647), - [anon_sym_new] = ACTIONS(2319), - [anon_sym_override] = ACTIONS(647), - [anon_sym_partial] = ACTIONS(647), - [anon_sym_private] = ACTIONS(647), - [anon_sym_protected] = ACTIONS(647), - [anon_sym_public] = ACTIONS(647), - [anon_sym_readonly] = ACTIONS(647), - [anon_sym_required] = ACTIONS(647), - [anon_sym_sealed] = ACTIONS(647), - [anon_sym_virtual] = ACTIONS(647), - [anon_sym_volatile] = ACTIONS(647), - [anon_sym_where] = ACTIONS(29), - [anon_sym_notnull] = ACTIONS(29), - [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = 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_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_RBRACK] = ACTIONS(2323), + [anon_sym_LPAREN] = ACTIONS(1051), + [anon_sym_ref] = ACTIONS(2305), + [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_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(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(1067), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1503), + [anon_sym_throw] = ACTIONS(1527), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1505), - [anon_sym_foreach] = ACTIONS(2321), - [anon_sym_DOT_DOT] = ACTIONS(1507), + [anon_sym_await] = ACTIONS(1529), + [sym_discard] = ACTIONS(1081), + [anon_sym_DOT_DOT] = ACTIONS(2307), + [anon_sym_not] = ACTIONS(1085), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -86630,7 +86516,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(1089), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -86647,86 +86533,98 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [292] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_modifier] = STATE(3878), - [sym_parameter_list] = STATE(7311), - [sym_variable_declaration] = STATE(7742), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(5910), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2247), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5806), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(3521), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3529), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3080), - [sym_postfix_unary_expression] = STATE(3111), - [sym_prefix_unary_expression] = STATE(3111), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6154), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3080), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3111), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3080), - [sym_member_access_expression] = STATE(2484), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3111), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7444), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(3080), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3080), - [sym_typeof_expression] = STATE(3080), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2484), - [sym_literal] = STATE(3080), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(5152), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2225), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(4472), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_pattern] = STATE(6657), + [sym_constant_pattern] = STATE(3429), + [sym_parenthesized_pattern] = STATE(3429), + [sym_var_pattern] = STATE(3429), + [sym_type_pattern] = STATE(3429), + [sym_list_pattern] = STATE(3429), + [sym_recursive_pattern] = STATE(3429), + [sym_positional_pattern_clause] = STATE(5135), + [sym_property_pattern_clause] = STATE(5666), + [sym_relational_pattern] = STATE(3429), + [sym_negated_pattern] = STATE(3429), + [sym_and_pattern] = STATE(3429), + [sym_or_pattern] = STATE(3429), + [sym_declaration_pattern] = STATE(3429), + [sym_expression] = STATE(5682), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3510), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(4418), + [sym_postfix_unary_expression] = STATE(4403), + [sym_prefix_unary_expression] = STATE(4403), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6134), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(4418), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(4403), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(4418), + [sym_member_access_expression] = STATE(3127), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(4403), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7425), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(4418), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(4418), + [sym_typeof_expression] = STATE(4418), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(3127), + [sym_literal] = STATE(4418), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(292), [sym_preproc_endregion] = STATE(292), [sym_preproc_line] = STATE(292), @@ -86736,256 +86634,54 @@ 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(3067), - [aux_sym__class_declaration_initializer_repeat2] = STATE(2534), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), - [anon_sym_extern] = ACTIONS(647), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_using] = ACTIONS(2317), - [anon_sym_unsafe] = ACTIONS(647), - [anon_sym_static] = ACTIONS(655), - [anon_sym_LBRACK] = ACTIONS(1481), - [anon_sym_LPAREN] = ACTIONS(1575), - [anon_sym_ref] = ACTIONS(1577), - [anon_sym_LBRACE] = ACTIONS(1487), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_abstract] = ACTIONS(647), - [anon_sym_async] = ACTIONS(655), - [anon_sym_const] = ACTIONS(647), - [anon_sym_file] = ACTIONS(669), - [anon_sym_fixed] = ACTIONS(647), - [anon_sym_internal] = ACTIONS(647), - [anon_sym_new] = ACTIONS(2319), - [anon_sym_override] = ACTIONS(647), - [anon_sym_partial] = ACTIONS(647), - [anon_sym_private] = ACTIONS(647), - [anon_sym_protected] = ACTIONS(647), - [anon_sym_public] = ACTIONS(647), - [anon_sym_readonly] = ACTIONS(647), - [anon_sym_required] = ACTIONS(647), - [anon_sym_sealed] = ACTIONS(647), - [anon_sym_virtual] = ACTIONS(647), - [anon_sym_volatile] = ACTIONS(647), - [anon_sym_where] = ACTIONS(29), - [anon_sym_notnull] = ACTIONS(29), - [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1067), - [anon_sym_BANG] = ACTIONS(901), - [anon_sym_TILDE] = ACTIONS(901), - [anon_sym_PLUS_PLUS] = ACTIONS(901), - [anon_sym_DASH_DASH] = ACTIONS(901), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(903), - [anon_sym_DASH] = ACTIONS(903), - [anon_sym_STAR] = ACTIONS(905), - [anon_sym_CARET] = ACTIONS(901), - [anon_sym_AMP] = ACTIONS(901), - [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(1067), - [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1579), - [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1581), - [anon_sym_foreach] = ACTIONS(2321), - [anon_sym_DOT_DOT] = ACTIONS(1583), - [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(1089), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(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), - }, - [293] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(5160), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2230), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(4363), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_pattern] = STATE(6632), - [sym_constant_pattern] = STATE(3486), - [sym_parenthesized_pattern] = STATE(3486), - [sym_var_pattern] = STATE(3486), - [sym_type_pattern] = STATE(3486), - [sym_list_pattern] = STATE(3486), - [sym_recursive_pattern] = STATE(3486), - [sym_positional_pattern_clause] = STATE(5175), - [sym_property_pattern_clause] = STATE(5675), - [sym_relational_pattern] = STATE(3486), - [sym_negated_pattern] = STATE(3486), - [sym_and_pattern] = STATE(3486), - [sym_or_pattern] = STATE(3486), - [sym_declaration_pattern] = STATE(3486), - [sym_expression] = STATE(5679), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3520), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(4419), - [sym_postfix_unary_expression] = STATE(4420), - [sym_prefix_unary_expression] = STATE(4420), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6154), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(4419), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(4420), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(4419), - [sym_member_access_expression] = STATE(3135), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(4420), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7530), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(4419), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(4419), - [sym_typeof_expression] = STATE(4419), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(3135), - [sym_literal] = STATE(4419), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), - [sym_preproc_region] = STATE(293), - [sym_preproc_endregion] = STATE(293), - [sym_preproc_line] = STATE(293), - [sym_preproc_pragma] = STATE(293), - [sym_preproc_nullable] = STATE(293), - [sym_preproc_error] = STATE(293), - [sym_preproc_warning] = STATE(293), - [sym_preproc_define] = STATE(293), - [sym_preproc_undef] = STATE(293), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), - [sym__identifier_token] = ACTIONS(25), - [anon_sym_alias] = ACTIONS(29), - [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1049), - [anon_sym_RBRACK] = ACTIONS(2323), - [anon_sym_LPAREN] = ACTIONS(1053), - [anon_sym_ref] = ACTIONS(2303), - [anon_sym_LBRACE] = ACTIONS(1059), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_RBRACK] = ACTIONS(2325), + [anon_sym_LPAREN] = ACTIONS(1051), + [anon_sym_ref] = ACTIONS(2305), + [anon_sym_LBRACE] = ACTIONS(1057), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1061), - [anon_sym_LT] = ACTIONS(1063), - [anon_sym_GT] = ACTIONS(1063), + [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(1067), - [anon_sym_BANG] = ACTIONS(1069), - [anon_sym_TILDE] = ACTIONS(1069), - [anon_sym_PLUS_PLUS] = ACTIONS(1069), - [anon_sym_DASH_DASH] = ACTIONS(1069), + [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(1071), - [anon_sym_DASH] = ACTIONS(1071), + [anon_sym_PLUS] = ACTIONS(1069), + [anon_sym_DASH] = ACTIONS(1069), [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(1069), - [anon_sym_AMP] = ACTIONS(1069), - [anon_sym_GT_EQ] = ACTIONS(1073), - [anon_sym_LT_EQ] = ACTIONS(1073), + [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(1075), + [anon_sym_scoped] = ACTIONS(1073), [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(1077), + [anon_sym_var] = ACTIONS(1075), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1067), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1589), + [anon_sym_throw] = ACTIONS(1527), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1591), - [sym_discard] = ACTIONS(1083), - [anon_sym_DOT_DOT] = ACTIONS(2305), - [anon_sym_not] = ACTIONS(1087), + [anon_sym_await] = ACTIONS(1529), + [sym_discard] = ACTIONS(1081), + [anon_sym_DOT_DOT] = ACTIONS(2307), + [anon_sym_not] = ACTIONS(1085), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -87010,7 +86706,197 @@ 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(1089), + [aux_sym_preproc_if_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), + }, + [293] = { + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(5152), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2225), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(4472), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_pattern] = STATE(6657), + [sym_constant_pattern] = STATE(3429), + [sym_parenthesized_pattern] = STATE(3429), + [sym_var_pattern] = STATE(3429), + [sym_type_pattern] = STATE(3429), + [sym_list_pattern] = STATE(3429), + [sym_recursive_pattern] = STATE(3429), + [sym_positional_pattern_clause] = STATE(5135), + [sym_property_pattern_clause] = STATE(5666), + [sym_relational_pattern] = STATE(3429), + [sym_negated_pattern] = STATE(3429), + [sym_and_pattern] = STATE(3429), + [sym_or_pattern] = STATE(3429), + [sym_declaration_pattern] = STATE(3429), + [sym_expression] = STATE(5682), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3510), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(4418), + [sym_postfix_unary_expression] = STATE(4403), + [sym_prefix_unary_expression] = STATE(4403), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6134), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(4418), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(4403), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(4418), + [sym_member_access_expression] = STATE(3127), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(4403), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7425), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(4418), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(4418), + [sym_typeof_expression] = STATE(4418), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(3127), + [sym_literal] = STATE(4418), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), + [sym_preproc_region] = STATE(293), + [sym_preproc_endregion] = STATE(293), + [sym_preproc_line] = STATE(293), + [sym_preproc_pragma] = STATE(293), + [sym_preproc_nullable] = STATE(293), + [sym_preproc_error] = STATE(293), + [sym_preproc_warning] = STATE(293), + [sym_preproc_define] = STATE(293), + [sym_preproc_undef] = STATE(293), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), + [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(2327), + [anon_sym_LPAREN] = ACTIONS(1051), + [anon_sym_ref] = ACTIONS(2305), + [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_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_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), + [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(1527), + [anon_sym_when] = ACTIONS(29), + [anon_sym_await] = ACTIONS(1529), + [sym_discard] = ACTIONS(1081), + [anon_sym_DOT_DOT] = ACTIONS(2307), + [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), @@ -87027,86 +86913,98 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [294] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_modifier] = STATE(3878), - [sym_parameter_list] = STATE(7311), - [sym_variable_declaration] = STATE(7339), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(5160), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2204), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5806), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(3521), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3461), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3080), - [sym_postfix_unary_expression] = STATE(3111), - [sym_prefix_unary_expression] = STATE(3111), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6154), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3080), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3111), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3080), - [sym_member_access_expression] = STATE(2484), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3111), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7547), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(3080), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3080), - [sym_typeof_expression] = STATE(3080), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2484), - [sym_literal] = STATE(3080), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(5152), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2225), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(4472), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_pattern] = STATE(6657), + [sym_constant_pattern] = STATE(3429), + [sym_parenthesized_pattern] = STATE(3429), + [sym_var_pattern] = STATE(3429), + [sym_type_pattern] = STATE(3429), + [sym_list_pattern] = STATE(3429), + [sym_recursive_pattern] = STATE(3429), + [sym_positional_pattern_clause] = STATE(5135), + [sym_property_pattern_clause] = STATE(5666), + [sym_relational_pattern] = STATE(3429), + [sym_negated_pattern] = STATE(3429), + [sym_and_pattern] = STATE(3429), + [sym_or_pattern] = STATE(3429), + [sym_declaration_pattern] = STATE(3429), + [sym_expression] = STATE(5682), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3510), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(4418), + [sym_postfix_unary_expression] = STATE(4403), + [sym_prefix_unary_expression] = STATE(4403), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6134), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(4418), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(4403), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(4418), + [sym_member_access_expression] = STATE(3127), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(4403), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7425), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(4418), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(4418), + [sym_typeof_expression] = STATE(4418), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(3127), + [sym_literal] = STATE(4418), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(294), [sym_preproc_endregion] = STATE(294), [sym_preproc_line] = STATE(294), @@ -87116,66 +87014,54 @@ 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(3067), - [aux_sym__class_declaration_initializer_repeat2] = STATE(2530), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), - [anon_sym_extern] = ACTIONS(647), - [anon_sym_alias] = ACTIONS(29), - [anon_sym_global] = ACTIONS(29), - [anon_sym_using] = ACTIONS(2325), - [anon_sym_unsafe] = ACTIONS(647), - [anon_sym_static] = ACTIONS(655), - [anon_sym_LBRACK] = ACTIONS(1481), - [anon_sym_LPAREN] = ACTIONS(1497), - [anon_sym_ref] = ACTIONS(1499), - [anon_sym_LBRACE] = ACTIONS(1487), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_abstract] = ACTIONS(647), - [anon_sym_async] = ACTIONS(655), - [anon_sym_const] = ACTIONS(647), - [anon_sym_file] = ACTIONS(669), - [anon_sym_fixed] = ACTIONS(647), - [anon_sym_internal] = ACTIONS(647), - [anon_sym_new] = ACTIONS(2319), - [anon_sym_override] = ACTIONS(647), - [anon_sym_partial] = ACTIONS(647), - [anon_sym_private] = ACTIONS(647), - [anon_sym_protected] = ACTIONS(647), - [anon_sym_public] = ACTIONS(647), - [anon_sym_readonly] = ACTIONS(647), - [anon_sym_required] = ACTIONS(647), - [anon_sym_sealed] = ACTIONS(647), - [anon_sym_virtual] = ACTIONS(647), - [anon_sym_volatile] = ACTIONS(647), - [anon_sym_where] = ACTIONS(29), - [anon_sym_notnull] = ACTIONS(29), - [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = 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_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(2305), + [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_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(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(1067), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1503), + [anon_sym_throw] = ACTIONS(1527), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1505), - [anon_sym_foreach] = ACTIONS(2321), - [anon_sym_DOT_DOT] = ACTIONS(1507), + [anon_sym_await] = ACTIONS(1529), + [sym_discard] = ACTIONS(1081), + [anon_sym_DOT_DOT] = ACTIONS(2307), + [anon_sym_not] = ACTIONS(1085), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -87200,7 +87086,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(1089), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -87217,98 +87103,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [295] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(5160), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2230), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(4363), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_pattern] = STATE(6632), - [sym_constant_pattern] = STATE(3486), - [sym_parenthesized_pattern] = STATE(3486), - [sym_var_pattern] = STATE(3486), - [sym_type_pattern] = STATE(3486), - [sym_list_pattern] = STATE(3486), - [sym_recursive_pattern] = STATE(3486), - [sym_positional_pattern_clause] = STATE(5175), - [sym_property_pattern_clause] = STATE(5675), - [sym_relational_pattern] = STATE(3486), - [sym_negated_pattern] = STATE(3486), - [sym_and_pattern] = STATE(3486), - [sym_or_pattern] = STATE(3486), - [sym_declaration_pattern] = STATE(3486), - [sym_expression] = STATE(5679), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3520), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(4419), - [sym_postfix_unary_expression] = STATE(4420), - [sym_prefix_unary_expression] = STATE(4420), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6154), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(4419), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(4420), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(4419), - [sym_member_access_expression] = STATE(3135), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(4420), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7530), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(4419), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(4419), - [sym_typeof_expression] = STATE(4419), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(3135), - [sym_literal] = STATE(4419), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_modifier] = STATE(3845), + [sym_parameter_list] = STATE(7531), + [sym_variable_declaration] = STATE(7573), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(5152), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2196), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5833), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(3528), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3356), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3102), + [sym_postfix_unary_expression] = STATE(3079), + [sym_prefix_unary_expression] = STATE(3079), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6134), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3102), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3079), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3102), + [sym_member_access_expression] = STATE(2472), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3079), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7627), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(3102), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3102), + [sym_typeof_expression] = STATE(3102), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2472), + [sym_literal] = STATE(3102), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(295), [sym_preproc_endregion] = STATE(295), [sym_preproc_line] = STATE(295), @@ -87318,54 +87192,66 @@ 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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), - [sym__identifier_token] = ACTIONS(25), - [anon_sym_alias] = ACTIONS(29), - [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1049), - [anon_sym_RBRACK] = ACTIONS(2327), - [anon_sym_LPAREN] = ACTIONS(1053), - [anon_sym_ref] = ACTIONS(2303), - [anon_sym_LBRACE] = ACTIONS(1059), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), - [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1061), - [anon_sym_LT] = ACTIONS(1063), - [anon_sym_GT] = ACTIONS(1063), - [anon_sym_where] = ACTIONS(29), - [anon_sym_notnull] = ACTIONS(29), - [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1067), - [anon_sym_BANG] = ACTIONS(1069), - [anon_sym_TILDE] = ACTIONS(1069), - [anon_sym_PLUS_PLUS] = ACTIONS(1069), - [anon_sym_DASH_DASH] = ACTIONS(1069), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__class_declaration_initializer_repeat2] = STATE(2517), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), + [sym__identifier_token] = ACTIONS(25), + [anon_sym_extern] = ACTIONS(645), + [anon_sym_alias] = ACTIONS(29), + [anon_sym_global] = ACTIONS(29), + [anon_sym_using] = ACTIONS(2331), + [anon_sym_unsafe] = ACTIONS(645), + [anon_sym_static] = ACTIONS(653), + [anon_sym_LBRACK] = ACTIONS(1479), + [anon_sym_LPAREN] = ACTIONS(1511), + [anon_sym_ref] = ACTIONS(1513), + [anon_sym_LBRACE] = ACTIONS(1481), + [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(2311), + [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(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(1071), - [anon_sym_DASH] = ACTIONS(1071), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_DASH] = ACTIONS(79), [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(1069), - [anon_sym_AMP] = ACTIONS(1069), - [anon_sym_GT_EQ] = ACTIONS(1073), - [anon_sym_LT_EQ] = ACTIONS(1073), + [anon_sym_CARET] = ACTIONS(75), + [anon_sym_AMP] = ACTIONS(75), [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(1075), + [anon_sym_scoped] = ACTIONS(85), [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(1077), + [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1067), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1589), + [anon_sym_throw] = ACTIONS(1517), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1591), - [sym_discard] = ACTIONS(1083), - [anon_sym_DOT_DOT] = ACTIONS(2305), - [anon_sym_not] = ACTIONS(1087), + [anon_sym_await] = ACTIONS(1519), + [anon_sym_foreach] = ACTIONS(2313), + [anon_sym_DOT_DOT] = ACTIONS(1521), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -87390,7 +87276,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(1089), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -87407,86 +87293,98 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [296] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_modifier] = STATE(3878), - [sym_parameter_list] = STATE(7311), - [sym_variable_declaration] = STATE(7708), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(5160), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2204), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5806), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(3521), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3461), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3080), - [sym_postfix_unary_expression] = STATE(3111), - [sym_prefix_unary_expression] = STATE(3111), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6154), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3080), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3111), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3080), - [sym_member_access_expression] = STATE(2484), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3111), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7547), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(3080), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3080), - [sym_typeof_expression] = STATE(3080), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2484), - [sym_literal] = STATE(3080), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(5152), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2225), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(4472), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_pattern] = STATE(6657), + [sym_constant_pattern] = STATE(3429), + [sym_parenthesized_pattern] = STATE(3429), + [sym_var_pattern] = STATE(3429), + [sym_type_pattern] = STATE(3429), + [sym_list_pattern] = STATE(3429), + [sym_recursive_pattern] = STATE(3429), + [sym_positional_pattern_clause] = STATE(5135), + [sym_property_pattern_clause] = STATE(5666), + [sym_relational_pattern] = STATE(3429), + [sym_negated_pattern] = STATE(3429), + [sym_and_pattern] = STATE(3429), + [sym_or_pattern] = STATE(3429), + [sym_declaration_pattern] = STATE(3429), + [sym_expression] = STATE(5682), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3510), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(4418), + [sym_postfix_unary_expression] = STATE(4403), + [sym_prefix_unary_expression] = STATE(4403), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6134), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(4418), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(4403), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(4418), + [sym_member_access_expression] = STATE(3127), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(4403), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7425), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(4418), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(4418), + [sym_typeof_expression] = STATE(4418), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(3127), + [sym_literal] = STATE(4418), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(296), [sym_preproc_endregion] = STATE(296), [sym_preproc_line] = STATE(296), @@ -87496,66 +87394,54 @@ 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(3067), - [aux_sym__class_declaration_initializer_repeat2] = STATE(2537), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), - [anon_sym_extern] = ACTIONS(647), - [anon_sym_alias] = ACTIONS(29), - [anon_sym_global] = ACTIONS(29), - [anon_sym_using] = ACTIONS(2329), - [anon_sym_unsafe] = ACTIONS(647), - [anon_sym_static] = ACTIONS(655), - [anon_sym_LBRACK] = ACTIONS(1481), - [anon_sym_LPAREN] = ACTIONS(1497), - [anon_sym_ref] = ACTIONS(1499), - [anon_sym_LBRACE] = ACTIONS(1487), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_abstract] = ACTIONS(647), - [anon_sym_async] = ACTIONS(655), - [anon_sym_const] = ACTIONS(647), - [anon_sym_file] = ACTIONS(669), - [anon_sym_fixed] = ACTIONS(647), - [anon_sym_internal] = ACTIONS(647), - [anon_sym_new] = ACTIONS(2319), - [anon_sym_override] = ACTIONS(647), - [anon_sym_partial] = ACTIONS(647), - [anon_sym_private] = ACTIONS(647), - [anon_sym_protected] = ACTIONS(647), - [anon_sym_public] = ACTIONS(647), - [anon_sym_readonly] = ACTIONS(647), - [anon_sym_required] = ACTIONS(647), - [anon_sym_sealed] = ACTIONS(647), - [anon_sym_virtual] = ACTIONS(647), - [anon_sym_volatile] = ACTIONS(647), - [anon_sym_where] = ACTIONS(29), - [anon_sym_notnull] = ACTIONS(29), - [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = 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_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_LPAREN] = ACTIONS(1051), + [anon_sym_ref] = ACTIONS(2305), + [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_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(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(1067), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1503), + [anon_sym_throw] = ACTIONS(1527), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1505), - [anon_sym_foreach] = ACTIONS(2321), - [anon_sym_DOT_DOT] = ACTIONS(1507), + [anon_sym_await] = ACTIONS(1529), + [sym_discard] = ACTIONS(1081), + [anon_sym_DOT_DOT] = ACTIONS(2307), + [anon_sym_not] = ACTIONS(1085), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -87580,7 +87466,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(1089), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -87597,98 +87483,99 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [297] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(5160), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2230), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(4363), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_pattern] = STATE(6632), - [sym_constant_pattern] = STATE(3486), - [sym_parenthesized_pattern] = STATE(3486), - [sym_var_pattern] = STATE(3486), - [sym_type_pattern] = STATE(3486), - [sym_list_pattern] = STATE(3486), - [sym_recursive_pattern] = STATE(3486), - [sym_positional_pattern_clause] = STATE(5175), - [sym_property_pattern_clause] = STATE(5675), - [sym_relational_pattern] = STATE(3486), - [sym_negated_pattern] = STATE(3486), - [sym_and_pattern] = STATE(3486), - [sym_or_pattern] = STATE(3486), - [sym_declaration_pattern] = STATE(3486), - [sym_expression] = STATE(5679), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3520), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(4419), - [sym_postfix_unary_expression] = STATE(4420), - [sym_prefix_unary_expression] = STATE(4420), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6154), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(4419), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(4420), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(4419), - [sym_member_access_expression] = STATE(3135), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(4420), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7530), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(4419), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(4419), - [sym_typeof_expression] = STATE(4419), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(3135), - [sym_literal] = STATE(4419), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(5528), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2225), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(4472), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_pattern] = STATE(6702), + [sym_constant_pattern] = STATE(3429), + [sym_parenthesized_pattern] = STATE(3429), + [sym_var_pattern] = STATE(3429), + [sym_type_pattern] = STATE(3429), + [sym_list_pattern] = STATE(3429), + [sym_recursive_pattern] = STATE(3429), + [sym_positional_pattern_clause] = STATE(5135), + [sym_property_pattern_clause] = STATE(5666), + [sym_subpattern] = STATE(6780), + [sym_relational_pattern] = STATE(3429), + [sym_negated_pattern] = STATE(3429), + [sym_and_pattern] = STATE(3429), + [sym_or_pattern] = STATE(3429), + [sym_declaration_pattern] = STATE(3429), + [sym_expression] = STATE(5405), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3660), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(4418), + [sym_postfix_unary_expression] = STATE(4403), + [sym_prefix_unary_expression] = STATE(4403), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6163), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(4418), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(4403), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(4418), + [sym_member_access_expression] = STATE(3127), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(4403), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7633), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(4418), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(4418), + [sym_typeof_expression] = STATE(4418), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(3127), + [sym_literal] = STATE(4418), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(297), [sym_preproc_endregion] = STATE(297), [sym_preproc_line] = STATE(297), @@ -87698,54 +87585,53 @@ 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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1049), - [anon_sym_RBRACK] = ACTIONS(2331), - [anon_sym_LPAREN] = ACTIONS(1053), - [anon_sym_ref] = ACTIONS(2303), - [anon_sym_LBRACE] = ACTIONS(1059), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_LPAREN] = ACTIONS(1141), + [anon_sym_ref] = ACTIONS(2005), + [anon_sym_LBRACE] = ACTIONS(1057), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1061), - [anon_sym_LT] = ACTIONS(1063), - [anon_sym_GT] = ACTIONS(1063), + [anon_sym_new] = ACTIONS(1095), + [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(1067), - [anon_sym_BANG] = ACTIONS(1069), - [anon_sym_TILDE] = ACTIONS(1069), - [anon_sym_PLUS_PLUS] = ACTIONS(1069), - [anon_sym_DASH_DASH] = ACTIONS(1069), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(1101), + [anon_sym_TILDE] = ACTIONS(1101), + [anon_sym_PLUS_PLUS] = ACTIONS(1101), + [anon_sym_DASH_DASH] = ACTIONS(1101), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1071), - [anon_sym_DASH] = ACTIONS(1071), - [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(1069), - [anon_sym_AMP] = ACTIONS(1069), - [anon_sym_GT_EQ] = ACTIONS(1073), - [anon_sym_LT_EQ] = ACTIONS(1073), + [anon_sym_PLUS] = ACTIONS(1103), + [anon_sym_DASH] = ACTIONS(1103), + [anon_sym_STAR] = ACTIONS(1227), + [anon_sym_CARET] = ACTIONS(1101), + [anon_sym_AMP] = ACTIONS(1101), + [anon_sym_GT_EQ] = ACTIONS(1071), + [anon_sym_LT_EQ] = ACTIONS(1071), [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(1075), + [anon_sym_scoped] = ACTIONS(1073), [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(1077), + [anon_sym_var] = ACTIONS(1075), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1067), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1589), + [anon_sym_throw] = ACTIONS(1231), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1591), - [sym_discard] = ACTIONS(1083), - [anon_sym_DOT_DOT] = ACTIONS(2305), - [anon_sym_not] = ACTIONS(1087), + [anon_sym_await] = ACTIONS(1233), + [sym_discard] = ACTIONS(1081), + [anon_sym_DOT_DOT] = ACTIONS(1235), + [anon_sym_not] = ACTIONS(1085), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -87770,7 +87656,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(1089), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -87787,98 +87673,99 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [298] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(5160), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2230), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(4363), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_pattern] = STATE(6632), - [sym_constant_pattern] = STATE(3486), - [sym_parenthesized_pattern] = STATE(3486), - [sym_var_pattern] = STATE(3486), - [sym_type_pattern] = STATE(3486), - [sym_list_pattern] = STATE(3486), - [sym_recursive_pattern] = STATE(3486), - [sym_positional_pattern_clause] = STATE(5175), - [sym_property_pattern_clause] = STATE(5675), - [sym_relational_pattern] = STATE(3486), - [sym_negated_pattern] = STATE(3486), - [sym_and_pattern] = STATE(3486), - [sym_or_pattern] = STATE(3486), - [sym_declaration_pattern] = STATE(3486), - [sym_expression] = STATE(5679), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3520), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(4419), - [sym_postfix_unary_expression] = STATE(4420), - [sym_prefix_unary_expression] = STATE(4420), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6154), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(4419), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(4420), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(4419), - [sym_member_access_expression] = STATE(3135), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(4420), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7530), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(4419), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(4419), - [sym_typeof_expression] = STATE(4419), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(3135), - [sym_literal] = STATE(4419), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(5706), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2270), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5197), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_pattern] = STATE(6511), + [sym_constant_pattern] = STATE(3429), + [sym_parenthesized_pattern] = STATE(3429), + [sym_var_pattern] = STATE(3429), + [sym_type_pattern] = STATE(3429), + [sym_list_pattern] = STATE(3429), + [sym_recursive_pattern] = STATE(3429), + [sym_positional_pattern_clause] = STATE(5689), + [sym_property_pattern_clause] = STATE(5723), + [sym_relational_pattern] = STATE(3429), + [sym_negated_pattern] = STATE(3429), + [sym_and_pattern] = STATE(3429), + [sym_or_pattern] = STATE(3429), + [sym_declaration_pattern] = STATE(3429), + [sym_expression] = STATE(5654), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3510), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(4202), + [sym_postfix_unary_expression] = STATE(4203), + [sym_prefix_unary_expression] = STATE(4203), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6134), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(4202), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(4203), + [sym_switch_expression] = STATE(3102), + [sym_switch_expression_arm] = STATE(7113), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(4202), + [sym_member_access_expression] = STATE(3112), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(4203), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7425), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(4202), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(4202), + [sym_typeof_expression] = STATE(4202), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(3112), + [sym_literal] = STATE(4202), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2261), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(298), [sym_preproc_endregion] = STATE(298), [sym_preproc_line] = STATE(298), @@ -87888,54 +87775,53 @@ 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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1049), - [anon_sym_RBRACK] = ACTIONS(2333), - [anon_sym_LPAREN] = ACTIONS(1053), - [anon_sym_ref] = ACTIONS(2303), - [anon_sym_LBRACE] = ACTIONS(1059), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_LPAREN] = ACTIONS(1989), + [anon_sym_ref] = ACTIONS(1991), + [anon_sym_LBRACE] = ACTIONS(1057), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1061), - [anon_sym_LT] = ACTIONS(1063), - [anon_sym_GT] = ACTIONS(1063), + [anon_sym_new] = ACTIONS(1059), + [anon_sym_LT] = ACTIONS(1995), + [anon_sym_GT] = ACTIONS(1995), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1067), - [anon_sym_BANG] = ACTIONS(1069), - [anon_sym_TILDE] = ACTIONS(1069), - [anon_sym_PLUS_PLUS] = ACTIONS(1069), - [anon_sym_DASH_DASH] = ACTIONS(1069), + [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(1071), - [anon_sym_DASH] = ACTIONS(1071), + [anon_sym_PLUS] = ACTIONS(1585), + [anon_sym_DASH] = ACTIONS(1585), [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(1069), - [anon_sym_AMP] = ACTIONS(1069), - [anon_sym_GT_EQ] = ACTIONS(1073), - [anon_sym_LT_EQ] = ACTIONS(1073), + [anon_sym_CARET] = ACTIONS(1587), + [anon_sym_AMP] = ACTIONS(1587), + [anon_sym_GT_EQ] = ACTIONS(1997), + [anon_sym_LT_EQ] = ACTIONS(1997), [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(1075), + [anon_sym_scoped] = ACTIONS(1073), [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(1077), + [anon_sym_var] = ACTIONS(1999), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1067), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1589), + [anon_sym_throw] = ACTIONS(1527), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1591), - [sym_discard] = ACTIONS(1083), - [anon_sym_DOT_DOT] = ACTIONS(2305), - [anon_sym_not] = ACTIONS(1087), + [anon_sym_await] = ACTIONS(1529), + [sym_discard] = ACTIONS(1081), + [anon_sym_DOT_DOT] = ACTIONS(123), + [anon_sym_not] = ACTIONS(2001), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -87960,7 +87846,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(1089), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -87977,86 +87863,98 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [299] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_modifier] = STATE(3878), - [sym_parameter_list] = STATE(7311), - [sym_variable_declaration] = STATE(7375), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(5160), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2204), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5806), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(3521), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3461), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3080), - [sym_postfix_unary_expression] = STATE(3111), - [sym_prefix_unary_expression] = STATE(3111), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6154), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3080), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3111), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3080), - [sym_member_access_expression] = STATE(2484), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3111), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7547), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(3080), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3080), - [sym_typeof_expression] = STATE(3080), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2484), - [sym_literal] = STATE(3080), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(5152), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2225), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(4472), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_pattern] = STATE(6657), + [sym_constant_pattern] = STATE(3429), + [sym_parenthesized_pattern] = STATE(3429), + [sym_var_pattern] = STATE(3429), + [sym_type_pattern] = STATE(3429), + [sym_list_pattern] = STATE(3429), + [sym_recursive_pattern] = STATE(3429), + [sym_positional_pattern_clause] = STATE(5135), + [sym_property_pattern_clause] = STATE(5666), + [sym_relational_pattern] = STATE(3429), + [sym_negated_pattern] = STATE(3429), + [sym_and_pattern] = STATE(3429), + [sym_or_pattern] = STATE(3429), + [sym_declaration_pattern] = STATE(3429), + [sym_expression] = STATE(5682), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3510), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(4418), + [sym_postfix_unary_expression] = STATE(4403), + [sym_prefix_unary_expression] = STATE(4403), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6134), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(4418), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(4403), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(4418), + [sym_member_access_expression] = STATE(3127), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(4403), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7425), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(4418), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(4418), + [sym_typeof_expression] = STATE(4418), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(3127), + [sym_literal] = STATE(4418), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(299), [sym_preproc_endregion] = STATE(299), [sym_preproc_line] = STATE(299), @@ -88066,66 +87964,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(3067), - [aux_sym__class_declaration_initializer_repeat2] = STATE(2542), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), - [anon_sym_extern] = ACTIONS(647), - [anon_sym_alias] = ACTIONS(29), - [anon_sym_global] = ACTIONS(29), - [anon_sym_using] = ACTIONS(2335), - [anon_sym_unsafe] = ACTIONS(647), - [anon_sym_static] = ACTIONS(655), - [anon_sym_LBRACK] = ACTIONS(1481), - [anon_sym_LPAREN] = ACTIONS(1497), - [anon_sym_ref] = ACTIONS(1499), - [anon_sym_LBRACE] = ACTIONS(1487), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_abstract] = ACTIONS(647), - [anon_sym_async] = ACTIONS(655), - [anon_sym_const] = ACTIONS(647), - [anon_sym_file] = ACTIONS(669), - [anon_sym_fixed] = ACTIONS(647), - [anon_sym_internal] = ACTIONS(647), - [anon_sym_new] = ACTIONS(2319), - [anon_sym_override] = ACTIONS(647), - [anon_sym_partial] = ACTIONS(647), - [anon_sym_private] = ACTIONS(647), - [anon_sym_protected] = ACTIONS(647), - [anon_sym_public] = ACTIONS(647), - [anon_sym_readonly] = ACTIONS(647), - [anon_sym_required] = ACTIONS(647), - [anon_sym_sealed] = ACTIONS(647), - [anon_sym_virtual] = ACTIONS(647), - [anon_sym_volatile] = ACTIONS(647), - [anon_sym_where] = ACTIONS(29), - [anon_sym_notnull] = ACTIONS(29), - [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = 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_alias] = ACTIONS(29), + [anon_sym_global] = ACTIONS(29), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_RBRACK] = ACTIONS(2335), + [anon_sym_LPAREN] = ACTIONS(1051), + [anon_sym_ref] = ACTIONS(2305), + [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_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(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(1067), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1503), + [anon_sym_throw] = ACTIONS(1527), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1505), - [anon_sym_foreach] = ACTIONS(2321), - [anon_sym_DOT_DOT] = ACTIONS(1507), + [anon_sym_await] = ACTIONS(1529), + [sym_discard] = ACTIONS(1081), + [anon_sym_DOT_DOT] = ACTIONS(2307), + [anon_sym_not] = ACTIONS(1085), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -88150,7 +88036,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(1089), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -88167,98 +88053,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [300] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(5160), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2230), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(4363), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_pattern] = STATE(6632), - [sym_constant_pattern] = STATE(3486), - [sym_parenthesized_pattern] = STATE(3486), - [sym_var_pattern] = STATE(3486), - [sym_type_pattern] = STATE(3486), - [sym_list_pattern] = STATE(3486), - [sym_recursive_pattern] = STATE(3486), - [sym_positional_pattern_clause] = STATE(5175), - [sym_property_pattern_clause] = STATE(5675), - [sym_relational_pattern] = STATE(3486), - [sym_negated_pattern] = STATE(3486), - [sym_and_pattern] = STATE(3486), - [sym_or_pattern] = STATE(3486), - [sym_declaration_pattern] = STATE(3486), - [sym_expression] = STATE(5679), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3520), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(4419), - [sym_postfix_unary_expression] = STATE(4420), - [sym_prefix_unary_expression] = STATE(4420), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6154), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(4419), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(4420), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(4419), - [sym_member_access_expression] = STATE(3135), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(4420), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7530), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(4419), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(4419), - [sym_typeof_expression] = STATE(4419), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(3135), - [sym_literal] = STATE(4419), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_modifier] = STATE(3845), + [sym_parameter_list] = STATE(7531), + [sym_variable_declaration] = STATE(7664), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(5152), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2196), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5833), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(3528), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3356), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3102), + [sym_postfix_unary_expression] = STATE(3079), + [sym_prefix_unary_expression] = STATE(3079), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6134), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3102), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3079), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3102), + [sym_member_access_expression] = STATE(2472), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3079), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7627), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(3102), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3102), + [sym_typeof_expression] = STATE(3102), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2472), + [sym_literal] = STATE(3102), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(300), [sym_preproc_endregion] = STATE(300), [sym_preproc_line] = STATE(300), @@ -88268,54 +88142,66 @@ 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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__class_declaration_initializer_repeat2] = STATE(2532), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), + [anon_sym_extern] = ACTIONS(645), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1049), - [anon_sym_RBRACK] = ACTIONS(2337), - [anon_sym_LPAREN] = ACTIONS(1053), - [anon_sym_ref] = ACTIONS(2303), - [anon_sym_LBRACE] = ACTIONS(1059), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), - [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1061), - [anon_sym_LT] = ACTIONS(1063), - [anon_sym_GT] = ACTIONS(1063), - [anon_sym_where] = ACTIONS(29), - [anon_sym_notnull] = ACTIONS(29), - [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1067), - [anon_sym_BANG] = ACTIONS(1069), - [anon_sym_TILDE] = ACTIONS(1069), - [anon_sym_PLUS_PLUS] = ACTIONS(1069), - [anon_sym_DASH_DASH] = ACTIONS(1069), + [anon_sym_using] = ACTIONS(2317), + [anon_sym_unsafe] = ACTIONS(645), + [anon_sym_static] = ACTIONS(653), + [anon_sym_LBRACK] = ACTIONS(1479), + [anon_sym_LPAREN] = ACTIONS(1511), + [anon_sym_ref] = ACTIONS(1513), + [anon_sym_LBRACE] = ACTIONS(1481), + [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(2311), + [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(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(1071), - [anon_sym_DASH] = ACTIONS(1071), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_DASH] = ACTIONS(79), [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(1069), - [anon_sym_AMP] = ACTIONS(1069), - [anon_sym_GT_EQ] = ACTIONS(1073), - [anon_sym_LT_EQ] = ACTIONS(1073), + [anon_sym_CARET] = ACTIONS(75), + [anon_sym_AMP] = ACTIONS(75), [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(1075), + [anon_sym_scoped] = ACTIONS(85), [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(1077), + [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1067), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1589), + [anon_sym_throw] = ACTIONS(1517), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1591), - [sym_discard] = ACTIONS(1083), - [anon_sym_DOT_DOT] = ACTIONS(2305), - [anon_sym_not] = ACTIONS(1087), + [anon_sym_await] = ACTIONS(1519), + [anon_sym_foreach] = ACTIONS(2313), + [anon_sym_DOT_DOT] = ACTIONS(1521), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -88340,7 +88226,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(1089), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -88357,98 +88243,98 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [301] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(5160), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2230), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(4363), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_pattern] = STATE(6632), - [sym_constant_pattern] = STATE(3486), - [sym_parenthesized_pattern] = STATE(3486), - [sym_var_pattern] = STATE(3486), - [sym_type_pattern] = STATE(3486), - [sym_list_pattern] = STATE(3486), - [sym_recursive_pattern] = STATE(3486), - [sym_positional_pattern_clause] = STATE(5175), - [sym_property_pattern_clause] = STATE(5675), - [sym_relational_pattern] = STATE(3486), - [sym_negated_pattern] = STATE(3486), - [sym_and_pattern] = STATE(3486), - [sym_or_pattern] = STATE(3486), - [sym_declaration_pattern] = STATE(3486), - [sym_expression] = STATE(5679), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3520), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(4419), - [sym_postfix_unary_expression] = STATE(4420), - [sym_prefix_unary_expression] = STATE(4420), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6154), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(4419), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(4420), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(4419), - [sym_member_access_expression] = STATE(3135), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(4420), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7530), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(4419), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(4419), - [sym_typeof_expression] = STATE(4419), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(3135), - [sym_literal] = STATE(4419), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(5152), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2225), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(4472), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_pattern] = STATE(6657), + [sym_constant_pattern] = STATE(3429), + [sym_parenthesized_pattern] = STATE(3429), + [sym_var_pattern] = STATE(3429), + [sym_type_pattern] = STATE(3429), + [sym_list_pattern] = STATE(3429), + [sym_recursive_pattern] = STATE(3429), + [sym_positional_pattern_clause] = STATE(5135), + [sym_property_pattern_clause] = STATE(5666), + [sym_relational_pattern] = STATE(3429), + [sym_negated_pattern] = STATE(3429), + [sym_and_pattern] = STATE(3429), + [sym_or_pattern] = STATE(3429), + [sym_declaration_pattern] = STATE(3429), + [sym_expression] = STATE(5682), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3510), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(4418), + [sym_postfix_unary_expression] = STATE(4403), + [sym_prefix_unary_expression] = STATE(4403), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6134), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(4418), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(4403), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(4418), + [sym_member_access_expression] = STATE(3127), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(4403), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7425), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(4418), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(4418), + [sym_typeof_expression] = STATE(4418), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(3127), + [sym_literal] = STATE(4418), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(301), [sym_preproc_endregion] = STATE(301), [sym_preproc_line] = STATE(301), @@ -88458,54 +88344,54 @@ 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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1049), - [anon_sym_RBRACK] = ACTIONS(2339), - [anon_sym_LPAREN] = ACTIONS(1053), - [anon_sym_ref] = ACTIONS(2303), - [anon_sym_LBRACE] = ACTIONS(1059), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_RBRACK] = ACTIONS(2337), + [anon_sym_LPAREN] = ACTIONS(1051), + [anon_sym_ref] = ACTIONS(2305), + [anon_sym_LBRACE] = ACTIONS(1057), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1061), - [anon_sym_LT] = ACTIONS(1063), - [anon_sym_GT] = ACTIONS(1063), + [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(1067), - [anon_sym_BANG] = ACTIONS(1069), - [anon_sym_TILDE] = ACTIONS(1069), - [anon_sym_PLUS_PLUS] = ACTIONS(1069), - [anon_sym_DASH_DASH] = ACTIONS(1069), + [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(1071), - [anon_sym_DASH] = ACTIONS(1071), + [anon_sym_PLUS] = ACTIONS(1069), + [anon_sym_DASH] = ACTIONS(1069), [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(1069), - [anon_sym_AMP] = ACTIONS(1069), - [anon_sym_GT_EQ] = ACTIONS(1073), - [anon_sym_LT_EQ] = ACTIONS(1073), + [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(1075), + [anon_sym_scoped] = ACTIONS(1073), [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(1077), + [anon_sym_var] = ACTIONS(1075), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1067), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1589), + [anon_sym_throw] = ACTIONS(1527), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1591), - [sym_discard] = ACTIONS(1083), - [anon_sym_DOT_DOT] = ACTIONS(2305), - [anon_sym_not] = ACTIONS(1087), + [anon_sym_await] = ACTIONS(1529), + [sym_discard] = ACTIONS(1081), + [anon_sym_DOT_DOT] = ACTIONS(2307), + [anon_sym_not] = ACTIONS(1085), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -88530,7 +88416,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(1089), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -88547,98 +88433,98 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [302] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(2763), - [sym_alias_qualified_name] = STATE(2764), - [sym__simple_name] = STATE(2252), - [sym_qualified_name] = STATE(2764), - [sym_generic_name] = STATE(2269), - [sym_type] = STATE(2400), - [sym_implicit_type] = STATE(2791), - [sym_array_type] = STATE(2767), - [sym__array_base_type] = STATE(7243), - [sym_nullable_type] = STATE(2768), - [sym_pointer_type] = STATE(2768), - [sym__pointer_base_type] = STATE(7717), - [sym_function_pointer_type] = STATE(2768), - [sym_ref_type] = STATE(2791), - [sym_scoped_type] = STATE(2791), - [sym_tuple_type] = STATE(2769), - [sym_pattern] = STATE(4668), - [sym_constant_pattern] = STATE(4631), - [sym_parenthesized_pattern] = STATE(4631), - [sym_var_pattern] = STATE(4631), - [sym_type_pattern] = STATE(4631), - [sym_list_pattern] = STATE(4631), - [sym_recursive_pattern] = STATE(4631), - [sym_positional_pattern_clause] = STATE(2519), - [sym_property_pattern_clause] = STATE(2563), - [sym_relational_pattern] = STATE(4631), - [sym_negated_pattern] = STATE(4631), - [sym_and_pattern] = STATE(4631), - [sym_or_pattern] = STATE(4631), - [sym_declaration_pattern] = STATE(4631), - [sym_expression] = STATE(5671), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3520), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(4544), - [sym_postfix_unary_expression] = STATE(4545), - [sym_prefix_unary_expression] = STATE(4545), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6154), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(4544), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(4545), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(4544), - [sym_member_access_expression] = STATE(3197), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(4545), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7530), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(4544), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(4544), - [sym_typeof_expression] = STATE(4544), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(3197), - [sym_literal] = STATE(4544), - [sym_character_literal] = STATE(4536), - [sym_string_literal] = STATE(4536), - [sym_raw_string_literal] = STATE(4536), - [sym_boolean_literal] = STATE(4536), - [sym_identifier] = STATE(2226), - [sym__reserved_identifier] = STATE(2240), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(2863), + [sym_alias_qualified_name] = STATE(2402), + [sym__simple_name] = STATE(2328), + [sym_qualified_name] = STATE(2402), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(2499), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(2373), + [sym__array_base_type] = STATE(7083), + [sym_nullable_type] = STATE(2375), + [sym_pointer_type] = STATE(2375), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(2375), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(2377), + [sym_pattern] = STATE(5510), + [sym_constant_pattern] = STATE(3429), + [sym_parenthesized_pattern] = STATE(3429), + [sym_var_pattern] = STATE(3429), + [sym_type_pattern] = STATE(3429), + [sym_list_pattern] = STATE(3429), + [sym_recursive_pattern] = STATE(3429), + [sym_positional_pattern_clause] = STATE(2571), + [sym_property_pattern_clause] = STATE(2729), + [sym_relational_pattern] = STATE(3429), + [sym_negated_pattern] = STATE(3429), + [sym_and_pattern] = STATE(3429), + [sym_or_pattern] = STATE(3429), + [sym_declaration_pattern] = STATE(3429), + [sym_expression] = STATE(5652), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3510), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3397), + [sym_postfix_unary_expression] = STATE(3404), + [sym_prefix_unary_expression] = STATE(3404), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6134), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3397), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3404), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3397), + [sym_member_access_expression] = STATE(2686), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3404), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7425), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(3397), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3397), + [sym_typeof_expression] = STATE(3397), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2686), + [sym_literal] = STATE(3397), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2178), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(302), [sym_preproc_endregion] = STATE(302), [sym_preproc_line] = STATE(302), @@ -88648,78 +88534,78 @@ 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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), - [sym__identifier_token] = ACTIONS(1387), - [anon_sym_alias] = ACTIONS(1389), - [anon_sym_global] = ACTIONS(1389), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(2341), - [anon_sym_LPAREN] = ACTIONS(2343), - [anon_sym_ref] = ACTIONS(2345), - [anon_sym_LBRACE] = ACTIONS(2347), - [anon_sym_delegate] = ACTIONS(2349), - [anon_sym_async] = ACTIONS(1047), - [anon_sym_file] = ACTIONS(1389), - [anon_sym_new] = ACTIONS(1061), - [anon_sym_LT] = ACTIONS(2351), - [anon_sym_GT] = ACTIONS(2351), - [anon_sym_where] = ACTIONS(1389), - [anon_sym_notnull] = ACTIONS(1389), - [anon_sym_unmanaged] = ACTIONS(1389), - [anon_sym_checked] = ACTIONS(1067), - [anon_sym_BANG] = ACTIONS(1471), - [anon_sym_TILDE] = ACTIONS(1471), - [anon_sym_PLUS_PLUS] = ACTIONS(1471), - [anon_sym_DASH_DASH] = ACTIONS(1471), - [anon_sym_true] = ACTIONS(1409), - [anon_sym_false] = ACTIONS(1409), - [anon_sym_PLUS] = ACTIONS(1469), - [anon_sym_DASH] = ACTIONS(1469), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), + [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(2339), + [anon_sym_ref] = ACTIONS(2341), + [anon_sym_LBRACE] = ACTIONS(2343), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), + [anon_sym_file] = ACTIONS(29), + [anon_sym_new] = ACTIONS(1059), + [anon_sym_LT] = ACTIONS(2345), + [anon_sym_GT] = ACTIONS(2345), + [anon_sym_where] = ACTIONS(29), + [anon_sym_notnull] = ACTIONS(29), + [anon_sym_unmanaged] = ACTIONS(29), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(1811), + [anon_sym_TILDE] = ACTIONS(1811), + [anon_sym_PLUS_PLUS] = ACTIONS(1811), + [anon_sym_DASH_DASH] = ACTIONS(1811), + [anon_sym_true] = ACTIONS(77), + [anon_sym_false] = ACTIONS(77), + [anon_sym_PLUS] = ACTIONS(1809), + [anon_sym_DASH] = ACTIONS(1809), [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(1471), - [anon_sym_AMP] = ACTIONS(1471), - [anon_sym_GT_EQ] = ACTIONS(2353), - [anon_sym_LT_EQ] = ACTIONS(2353), + [anon_sym_CARET] = ACTIONS(1811), + [anon_sym_AMP] = ACTIONS(1811), + [anon_sym_GT_EQ] = ACTIONS(2347), + [anon_sym_LT_EQ] = ACTIONS(2347), [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(2355), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(2357), - [sym_predefined_type] = ACTIONS(2359), - [anon_sym_unchecked] = ACTIONS(1067), - [anon_sym_yield] = ACTIONS(1389), - [anon_sym_default] = ACTIONS(1423), - [anon_sym_throw] = ACTIONS(1589), - [anon_sym_when] = ACTIONS(1389), - [anon_sym_await] = ACTIONS(1591), - [sym_discard] = ACTIONS(2361), + [anon_sym_scoped] = ACTIONS(2349), + [anon_sym_base] = ACTIONS(87), + [anon_sym_var] = ACTIONS(2351), + [sym_predefined_type] = ACTIONS(2353), + [anon_sym_unchecked] = ACTIONS(1065), + [anon_sym_yield] = ACTIONS(29), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(1527), + [anon_sym_when] = ACTIONS(29), + [anon_sym_await] = ACTIONS(1529), + [sym_discard] = ACTIONS(1081), [anon_sym_DOT_DOT] = ACTIONS(123), - [anon_sym_not] = ACTIONS(2363), - [anon_sym_from] = ACTIONS(1431), - [anon_sym_into] = ACTIONS(1389), - [anon_sym_join] = ACTIONS(1389), - [anon_sym_on] = ACTIONS(1389), - [anon_sym_equals] = ACTIONS(1389), - [anon_sym_let] = ACTIONS(1389), - [anon_sym_orderby] = ACTIONS(1389), - [anon_sym_ascending] = ACTIONS(1389), - [anon_sym_descending] = ACTIONS(1389), - [anon_sym_group] = ACTIONS(1389), - [anon_sym_by] = ACTIONS(1389), - [anon_sym_select] = ACTIONS(1389), + [anon_sym_not] = ACTIONS(2355), + [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(1435), - [anon_sym_typeof] = ACTIONS(1437), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), [anon_sym___makeref] = ACTIONS(133), [anon_sym___reftype] = ACTIONS(135), [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(1445), - [anon_sym_SQUOTE] = ACTIONS(1447), - [sym_integer_literal] = ACTIONS(1445), - [sym_real_literal] = ACTIONS(1449), - [anon_sym_DQUOTE] = ACTIONS(1451), - [sym_verbatim_string_literal] = ACTIONS(1449), - [aux_sym_preproc_if_token1] = ACTIONS(1089), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_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), @@ -88730,104 +88616,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(1455), - [sym_interpolation_verbatim_start] = ACTIONS(1457), - [sym_interpolation_raw_start] = ACTIONS(1459), - [sym_raw_string_start] = ACTIONS(1461), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [sym_interpolation_raw_start] = ACTIONS(155), + [sym_raw_string_start] = ACTIONS(157), }, [303] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(2887), - [sym_alias_qualified_name] = STATE(2373), - [sym__simple_name] = STATE(2335), - [sym_qualified_name] = STATE(2373), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(2496), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(2378), - [sym__array_base_type] = STATE(7103), - [sym_nullable_type] = STATE(2379), - [sym_pointer_type] = STATE(2379), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(2379), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(2380), - [sym_pattern] = STATE(5247), - [sym_constant_pattern] = STATE(3295), - [sym_parenthesized_pattern] = STATE(3295), - [sym_var_pattern] = STATE(3295), - [sym_type_pattern] = STATE(3295), - [sym_list_pattern] = STATE(3295), - [sym_recursive_pattern] = STATE(3295), - [sym_positional_pattern_clause] = STATE(2588), - [sym_property_pattern_clause] = STATE(2786), - [sym_relational_pattern] = STATE(3295), - [sym_negated_pattern] = STATE(3295), - [sym_and_pattern] = STATE(3295), - [sym_or_pattern] = STATE(3295), - [sym_declaration_pattern] = STATE(3295), - [sym_expression] = STATE(5696), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3520), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3310), - [sym_postfix_unary_expression] = STATE(3312), - [sym_prefix_unary_expression] = STATE(3312), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6154), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3310), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3312), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3310), - [sym_member_access_expression] = STATE(2617), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3312), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7530), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(3310), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3310), - [sym_typeof_expression] = STATE(3310), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2617), - [sym_literal] = STATE(3310), - [sym_character_literal] = STATE(3278), - [sym_string_literal] = STATE(3278), - [sym_raw_string_literal] = STATE(3278), - [sym_boolean_literal] = STATE(3278), - [sym_identifier] = STATE(2186), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(2882), + [sym_alias_qualified_name] = STATE(2402), + [sym__simple_name] = STATE(2319), + [sym_qualified_name] = STATE(2402), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(2485), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(2373), + [sym__array_base_type] = STATE(7083), + [sym_nullable_type] = STATE(2375), + [sym_pointer_type] = STATE(2375), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(2375), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(2377), + [sym_pattern] = STATE(5208), + [sym_constant_pattern] = STATE(3311), + [sym_parenthesized_pattern] = STATE(3311), + [sym_var_pattern] = STATE(3311), + [sym_type_pattern] = STATE(3311), + [sym_list_pattern] = STATE(3311), + [sym_recursive_pattern] = STATE(3311), + [sym_positional_pattern_clause] = STATE(2575), + [sym_property_pattern_clause] = STATE(2783), + [sym_relational_pattern] = STATE(3311), + [sym_negated_pattern] = STATE(3311), + [sym_and_pattern] = STATE(3311), + [sym_or_pattern] = STATE(3311), + [sym_declaration_pattern] = STATE(3311), + [sym_expression] = STATE(5678), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3510), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3275), + [sym_postfix_unary_expression] = STATE(3276), + [sym_prefix_unary_expression] = STATE(3276), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6134), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3275), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3276), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3275), + [sym_member_access_expression] = STATE(2608), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3276), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7425), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(3275), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3275), + [sym_typeof_expression] = STATE(3275), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2608), + [sym_literal] = STATE(3275), + [sym_character_literal] = STATE(3272), + [sym_string_literal] = STATE(3272), + [sym_raw_string_literal] = STATE(3272), + [sym_boolean_literal] = STATE(3272), + [sym_identifier] = STATE(2178), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(303), [sym_preproc_endregion] = STATE(303), [sym_preproc_line] = STATE(303), @@ -88837,53 +88723,53 @@ 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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(2365), - [anon_sym_LPAREN] = ACTIONS(2367), - [anon_sym_ref] = ACTIONS(2369), - [anon_sym_LBRACE] = ACTIONS(2371), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(2357), + [anon_sym_LPAREN] = ACTIONS(2359), + [anon_sym_ref] = ACTIONS(2341), + [anon_sym_LBRACE] = ACTIONS(2343), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1061), - [anon_sym_LT] = ACTIONS(2373), - [anon_sym_GT] = ACTIONS(2373), + [anon_sym_new] = ACTIONS(1059), + [anon_sym_LT] = ACTIONS(2361), + [anon_sym_GT] = ACTIONS(2361), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1067), - [anon_sym_BANG] = ACTIONS(1923), - [anon_sym_TILDE] = ACTIONS(1923), - [anon_sym_PLUS_PLUS] = ACTIONS(1923), - [anon_sym_DASH_DASH] = ACTIONS(1923), - [anon_sym_true] = ACTIONS(1173), - [anon_sym_false] = ACTIONS(1173), - [anon_sym_PLUS] = ACTIONS(1921), - [anon_sym_DASH] = ACTIONS(1921), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(1829), + [anon_sym_TILDE] = ACTIONS(1829), + [anon_sym_PLUS_PLUS] = ACTIONS(1829), + [anon_sym_DASH_DASH] = ACTIONS(1829), + [anon_sym_true] = ACTIONS(1169), + [anon_sym_false] = ACTIONS(1169), + [anon_sym_PLUS] = ACTIONS(1827), + [anon_sym_DASH] = ACTIONS(1827), [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(1923), - [anon_sym_AMP] = ACTIONS(1923), - [anon_sym_GT_EQ] = ACTIONS(2375), - [anon_sym_LT_EQ] = ACTIONS(2375), + [anon_sym_CARET] = ACTIONS(1829), + [anon_sym_AMP] = ACTIONS(1829), + [anon_sym_GT_EQ] = ACTIONS(2363), + [anon_sym_LT_EQ] = ACTIONS(2363), [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(2377), + [anon_sym_scoped] = ACTIONS(2349), [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(2379), - [sym_predefined_type] = ACTIONS(2381), - [anon_sym_unchecked] = ACTIONS(1067), + [anon_sym_var] = ACTIONS(2365), + [sym_predefined_type] = ACTIONS(2367), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1183), - [anon_sym_throw] = ACTIONS(1589), + [anon_sym_default] = ACTIONS(1179), + [anon_sym_throw] = ACTIONS(1527), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1591), - [sym_discard] = ACTIONS(2383), + [anon_sym_await] = ACTIONS(1529), + [sym_discard] = ACTIONS(2369), [anon_sym_DOT_DOT] = ACTIONS(123), - [anon_sym_not] = ACTIONS(2385), + [anon_sym_not] = ACTIONS(2371), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -88897,18 +88783,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(1193), - [anon_sym_typeof] = ACTIONS(1195), + [anon_sym_sizeof] = ACTIONS(1189), + [anon_sym_typeof] = ACTIONS(1191), [anon_sym___makeref] = ACTIONS(133), [anon_sym___reftype] = ACTIONS(135), [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(1203), - [anon_sym_SQUOTE] = ACTIONS(1205), - [sym_integer_literal] = ACTIONS(1203), - [sym_real_literal] = ACTIONS(1207), - [anon_sym_DQUOTE] = ACTIONS(1209), - [sym_verbatim_string_literal] = ACTIONS(1207), - [aux_sym_preproc_if_token1] = ACTIONS(1089), + [sym_null_literal] = ACTIONS(1199), + [anon_sym_SQUOTE] = ACTIONS(1201), + [sym_integer_literal] = ACTIONS(1199), + [sym_real_literal] = ACTIONS(1203), + [anon_sym_DQUOTE] = ACTIONS(1205), + [sym_verbatim_string_literal] = ACTIONS(1203), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -88919,104 +88805,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(1213), - [sym_interpolation_verbatim_start] = ACTIONS(1215), - [sym_interpolation_raw_start] = ACTIONS(1217), - [sym_raw_string_start] = ACTIONS(1219), + [sym_interpolation_regular_start] = ACTIONS(1209), + [sym_interpolation_verbatim_start] = ACTIONS(1211), + [sym_interpolation_raw_start] = ACTIONS(1213), + [sym_raw_string_start] = ACTIONS(1215), }, [304] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(2616), - [sym_alias_qualified_name] = STATE(2373), - [sym__simple_name] = STATE(2189), - [sym_qualified_name] = STATE(2373), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(2238), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(2378), - [sym__array_base_type] = STATE(7103), - [sym_nullable_type] = STATE(2379), - [sym_pointer_type] = STATE(2379), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(2379), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(2380), - [sym_pattern] = STATE(4370), - [sym_constant_pattern] = STATE(3295), - [sym_parenthesized_pattern] = STATE(3295), - [sym_var_pattern] = STATE(3295), - [sym_type_pattern] = STATE(3295), - [sym_list_pattern] = STATE(3295), - [sym_recursive_pattern] = STATE(3295), - [sym_positional_pattern_clause] = STATE(2251), - [sym_property_pattern_clause] = STATE(2302), - [sym_relational_pattern] = STATE(3295), - [sym_negated_pattern] = STATE(3295), - [sym_and_pattern] = STATE(3295), - [sym_or_pattern] = STATE(3295), - [sym_declaration_pattern] = STATE(3295), - [sym_expression] = STATE(5680), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3520), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3310), - [sym_postfix_unary_expression] = STATE(3312), - [sym_prefix_unary_expression] = STATE(3312), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6154), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3310), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3312), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3310), - [sym_member_access_expression] = STATE(2617), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3312), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7530), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(3310), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3310), - [sym_typeof_expression] = STATE(3310), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2617), - [sym_literal] = STATE(3310), - [sym_character_literal] = STATE(3278), - [sym_string_literal] = STATE(3278), - [sym_raw_string_literal] = STATE(3278), - [sym_boolean_literal] = STATE(3278), - [sym_identifier] = STATE(2214), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(2882), + [sym_alias_qualified_name] = STATE(2402), + [sym__simple_name] = STATE(2319), + [sym_qualified_name] = STATE(2402), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(2485), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(2373), + [sym__array_base_type] = STATE(7083), + [sym_nullable_type] = STATE(2375), + [sym_pointer_type] = STATE(2375), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(2375), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(2377), + [sym_pattern] = STATE(3260), + [sym_constant_pattern] = STATE(3311), + [sym_parenthesized_pattern] = STATE(3311), + [sym_var_pattern] = STATE(3311), + [sym_type_pattern] = STATE(3311), + [sym_list_pattern] = STATE(3311), + [sym_recursive_pattern] = STATE(3311), + [sym_positional_pattern_clause] = STATE(2575), + [sym_property_pattern_clause] = STATE(2783), + [sym_relational_pattern] = STATE(3311), + [sym_negated_pattern] = STATE(3311), + [sym_and_pattern] = STATE(3311), + [sym_or_pattern] = STATE(3311), + [sym_declaration_pattern] = STATE(3311), + [sym_expression] = STATE(5678), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3510), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3275), + [sym_postfix_unary_expression] = STATE(3276), + [sym_prefix_unary_expression] = STATE(3276), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6134), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3275), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3276), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3275), + [sym_member_access_expression] = STATE(2608), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3276), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7425), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(3275), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3275), + [sym_typeof_expression] = STATE(3275), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2608), + [sym_literal] = STATE(3275), + [sym_character_literal] = STATE(3272), + [sym_string_literal] = STATE(3272), + [sym_raw_string_literal] = STATE(3272), + [sym_boolean_literal] = STATE(3272), + [sym_identifier] = STATE(2178), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(304), [sym_preproc_endregion] = STATE(304), [sym_preproc_line] = STATE(304), @@ -89026,53 +88912,53 @@ 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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(2365), - [anon_sym_LPAREN] = ACTIONS(2387), - [anon_sym_ref] = ACTIONS(2389), - [anon_sym_LBRACE] = ACTIONS(2371), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(2357), + [anon_sym_LPAREN] = ACTIONS(2359), + [anon_sym_ref] = ACTIONS(2341), + [anon_sym_LBRACE] = ACTIONS(2343), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1061), - [anon_sym_LT] = ACTIONS(2391), - [anon_sym_GT] = ACTIONS(2391), + [anon_sym_new] = ACTIONS(1059), + [anon_sym_LT] = ACTIONS(2361), + [anon_sym_GT] = ACTIONS(2361), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1067), - [anon_sym_BANG] = ACTIONS(1377), - [anon_sym_TILDE] = ACTIONS(1377), - [anon_sym_PLUS_PLUS] = ACTIONS(1377), - [anon_sym_DASH_DASH] = ACTIONS(1377), - [anon_sym_true] = ACTIONS(1173), - [anon_sym_false] = ACTIONS(1173), - [anon_sym_PLUS] = ACTIONS(1375), - [anon_sym_DASH] = ACTIONS(1375), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(1829), + [anon_sym_TILDE] = ACTIONS(1829), + [anon_sym_PLUS_PLUS] = ACTIONS(1829), + [anon_sym_DASH_DASH] = ACTIONS(1829), + [anon_sym_true] = ACTIONS(1169), + [anon_sym_false] = ACTIONS(1169), + [anon_sym_PLUS] = ACTIONS(1827), + [anon_sym_DASH] = ACTIONS(1827), [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(1377), - [anon_sym_AMP] = ACTIONS(1377), - [anon_sym_GT_EQ] = ACTIONS(2393), - [anon_sym_LT_EQ] = ACTIONS(2393), + [anon_sym_CARET] = ACTIONS(1829), + [anon_sym_AMP] = ACTIONS(1829), + [anon_sym_GT_EQ] = ACTIONS(2363), + [anon_sym_LT_EQ] = ACTIONS(2363), [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(2395), + [anon_sym_scoped] = ACTIONS(2349), [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(2379), - [sym_predefined_type] = ACTIONS(2381), - [anon_sym_unchecked] = ACTIONS(1067), + [anon_sym_var] = ACTIONS(2365), + [sym_predefined_type] = ACTIONS(2367), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1183), - [anon_sym_throw] = ACTIONS(1589), + [anon_sym_default] = ACTIONS(1179), + [anon_sym_throw] = ACTIONS(1527), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1591), - [sym_discard] = ACTIONS(2383), + [anon_sym_await] = ACTIONS(1529), + [sym_discard] = ACTIONS(2369), [anon_sym_DOT_DOT] = ACTIONS(123), - [anon_sym_not] = ACTIONS(2397), + [anon_sym_not] = ACTIONS(2371), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -89086,18 +88972,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(1193), - [anon_sym_typeof] = ACTIONS(1195), + [anon_sym_sizeof] = ACTIONS(1189), + [anon_sym_typeof] = ACTIONS(1191), [anon_sym___makeref] = ACTIONS(133), [anon_sym___reftype] = ACTIONS(135), [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(1203), - [anon_sym_SQUOTE] = ACTIONS(1205), - [sym_integer_literal] = ACTIONS(1203), - [sym_real_literal] = ACTIONS(1207), - [anon_sym_DQUOTE] = ACTIONS(1209), - [sym_verbatim_string_literal] = ACTIONS(1207), - [aux_sym_preproc_if_token1] = ACTIONS(1089), + [sym_null_literal] = ACTIONS(1199), + [anon_sym_SQUOTE] = ACTIONS(1201), + [sym_integer_literal] = ACTIONS(1199), + [sym_real_literal] = ACTIONS(1203), + [anon_sym_DQUOTE] = ACTIONS(1205), + [sym_verbatim_string_literal] = ACTIONS(1203), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -89108,104 +88994,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(1213), - [sym_interpolation_verbatim_start] = ACTIONS(1215), - [sym_interpolation_raw_start] = ACTIONS(1217), - [sym_raw_string_start] = ACTIONS(1219), + [sym_interpolation_regular_start] = ACTIONS(1209), + [sym_interpolation_verbatim_start] = ACTIONS(1211), + [sym_interpolation_raw_start] = ACTIONS(1213), + [sym_raw_string_start] = ACTIONS(1215), }, [305] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(5711), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2300), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5176), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_pattern] = STATE(3432), - [sym_constant_pattern] = STATE(3486), - [sym_parenthesized_pattern] = STATE(3486), - [sym_var_pattern] = STATE(3486), - [sym_type_pattern] = STATE(3486), - [sym_list_pattern] = STATE(3486), - [sym_recursive_pattern] = STATE(3486), - [sym_positional_pattern_clause] = STATE(5670), - [sym_property_pattern_clause] = STATE(5735), - [sym_relational_pattern] = STATE(3486), - [sym_negated_pattern] = STATE(3486), - [sym_and_pattern] = STATE(3486), - [sym_or_pattern] = STATE(3486), - [sym_declaration_pattern] = STATE(3486), - [sym_expression] = STATE(5674), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3520), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(5317), - [sym_postfix_unary_expression] = STATE(5122), - [sym_prefix_unary_expression] = STATE(5122), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6154), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(5317), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(5122), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(5317), - [sym_member_access_expression] = STATE(3508), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(5122), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7530), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(5317), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(5317), - [sym_typeof_expression] = STATE(5317), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(3508), - [sym_literal] = STATE(5317), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2243), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(2882), + [sym_alias_qualified_name] = STATE(2402), + [sym__simple_name] = STATE(2319), + [sym_qualified_name] = STATE(2402), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(2485), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(2373), + [sym__array_base_type] = STATE(7083), + [sym_nullable_type] = STATE(2375), + [sym_pointer_type] = STATE(2375), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(2375), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(2377), + [sym_pattern] = STATE(5257), + [sym_constant_pattern] = STATE(3311), + [sym_parenthesized_pattern] = STATE(3311), + [sym_var_pattern] = STATE(3311), + [sym_type_pattern] = STATE(3311), + [sym_list_pattern] = STATE(3311), + [sym_recursive_pattern] = STATE(3311), + [sym_positional_pattern_clause] = STATE(2575), + [sym_property_pattern_clause] = STATE(2783), + [sym_relational_pattern] = STATE(3311), + [sym_negated_pattern] = STATE(3311), + [sym_and_pattern] = STATE(3311), + [sym_or_pattern] = STATE(3311), + [sym_declaration_pattern] = STATE(3311), + [sym_expression] = STATE(5678), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3510), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3275), + [sym_postfix_unary_expression] = STATE(3276), + [sym_prefix_unary_expression] = STATE(3276), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6134), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3275), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3276), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3275), + [sym_member_access_expression] = STATE(2608), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3276), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7425), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(3275), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3275), + [sym_typeof_expression] = STATE(3275), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2608), + [sym_literal] = STATE(3275), + [sym_character_literal] = STATE(3272), + [sym_string_literal] = STATE(3272), + [sym_raw_string_literal] = STATE(3272), + [sym_boolean_literal] = STATE(3272), + [sym_identifier] = STATE(2178), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(305), [sym_preproc_endregion] = STATE(305), [sym_preproc_line] = STATE(305), @@ -89215,53 +89101,53 @@ 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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1049), - [anon_sym_LPAREN] = ACTIONS(2399), - [anon_sym_ref] = ACTIONS(2401), - [anon_sym_LBRACE] = ACTIONS(2403), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(2357), + [anon_sym_LPAREN] = ACTIONS(2359), + [anon_sym_ref] = ACTIONS(2341), + [anon_sym_LBRACE] = ACTIONS(2343), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1061), - [anon_sym_LT] = ACTIONS(2405), - [anon_sym_GT] = ACTIONS(2405), + [anon_sym_new] = ACTIONS(1059), + [anon_sym_LT] = ACTIONS(2361), + [anon_sym_GT] = ACTIONS(2361), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1067), - [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(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1715), - [anon_sym_DASH] = ACTIONS(1715), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(1829), + [anon_sym_TILDE] = ACTIONS(1829), + [anon_sym_PLUS_PLUS] = ACTIONS(1829), + [anon_sym_DASH_DASH] = ACTIONS(1829), + [anon_sym_true] = ACTIONS(1169), + [anon_sym_false] = ACTIONS(1169), + [anon_sym_PLUS] = ACTIONS(1827), + [anon_sym_DASH] = ACTIONS(1827), [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(1717), - [anon_sym_AMP] = ACTIONS(1717), - [anon_sym_GT_EQ] = ACTIONS(2407), - [anon_sym_LT_EQ] = ACTIONS(2407), + [anon_sym_CARET] = ACTIONS(1829), + [anon_sym_AMP] = ACTIONS(1829), + [anon_sym_GT_EQ] = ACTIONS(2363), + [anon_sym_LT_EQ] = ACTIONS(2363), [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(2409), + [anon_sym_scoped] = ACTIONS(2349), [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(2411), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1067), + [anon_sym_var] = ACTIONS(2365), + [sym_predefined_type] = ACTIONS(2367), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1589), + [anon_sym_default] = ACTIONS(1179), + [anon_sym_throw] = ACTIONS(1527), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1591), - [sym_discard] = ACTIONS(1083), + [anon_sym_await] = ACTIONS(1529), + [sym_discard] = ACTIONS(2369), [anon_sym_DOT_DOT] = ACTIONS(123), - [anon_sym_not] = ACTIONS(2413), + [anon_sym_not] = ACTIONS(2371), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -89275,18 +89161,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(129), - [anon_sym_typeof] = ACTIONS(131), + [anon_sym_sizeof] = ACTIONS(1189), + [anon_sym_typeof] = ACTIONS(1191), [anon_sym___makeref] = ACTIONS(133), [anon_sym___reftype] = ACTIONS(135), [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1089), + [sym_null_literal] = ACTIONS(1199), + [anon_sym_SQUOTE] = ACTIONS(1201), + [sym_integer_literal] = ACTIONS(1199), + [sym_real_literal] = ACTIONS(1203), + [anon_sym_DQUOTE] = ACTIONS(1205), + [sym_verbatim_string_literal] = ACTIONS(1203), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -89297,104 +89183,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(1209), + [sym_interpolation_verbatim_start] = ACTIONS(1211), + [sym_interpolation_raw_start] = ACTIONS(1213), + [sym_raw_string_start] = ACTIONS(1215), }, [306] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(5711), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2300), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5176), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_pattern] = STATE(6659), - [sym_constant_pattern] = STATE(3486), - [sym_parenthesized_pattern] = STATE(3486), - [sym_var_pattern] = STATE(3486), - [sym_type_pattern] = STATE(3486), - [sym_list_pattern] = STATE(3486), - [sym_recursive_pattern] = STATE(3486), - [sym_positional_pattern_clause] = STATE(5670), - [sym_property_pattern_clause] = STATE(5735), - [sym_relational_pattern] = STATE(3486), - [sym_negated_pattern] = STATE(3486), - [sym_and_pattern] = STATE(3486), - [sym_or_pattern] = STATE(3486), - [sym_declaration_pattern] = STATE(3486), - [sym_expression] = STATE(5674), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3520), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(5317), - [sym_postfix_unary_expression] = STATE(5122), - [sym_prefix_unary_expression] = STATE(5122), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6154), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(5317), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(5122), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(5317), - [sym_member_access_expression] = STATE(3508), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(5122), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7530), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(5317), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(5317), - [sym_typeof_expression] = STATE(5317), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(3508), - [sym_literal] = STATE(5317), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2243), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(5152), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2225), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(4472), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_pattern] = STATE(3407), + [sym_constant_pattern] = STATE(3429), + [sym_parenthesized_pattern] = STATE(3429), + [sym_var_pattern] = STATE(3429), + [sym_type_pattern] = STATE(3429), + [sym_list_pattern] = STATE(3429), + [sym_recursive_pattern] = STATE(3429), + [sym_positional_pattern_clause] = STATE(5135), + [sym_property_pattern_clause] = STATE(5666), + [sym_relational_pattern] = STATE(3429), + [sym_negated_pattern] = STATE(3429), + [sym_and_pattern] = STATE(3429), + [sym_or_pattern] = STATE(3429), + [sym_declaration_pattern] = STATE(3429), + [sym_expression] = STATE(5682), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3510), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(4418), + [sym_postfix_unary_expression] = STATE(4403), + [sym_prefix_unary_expression] = STATE(4403), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6134), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(4418), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(4403), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(4418), + [sym_member_access_expression] = STATE(3127), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(4403), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7425), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(4418), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(4418), + [sym_typeof_expression] = STATE(4418), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(3127), + [sym_literal] = STATE(4418), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(306), [sym_preproc_endregion] = STATE(306), [sym_preproc_line] = STATE(306), @@ -89404,53 +89290,53 @@ 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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1049), - [anon_sym_LPAREN] = ACTIONS(2399), - [anon_sym_ref] = ACTIONS(2401), - [anon_sym_LBRACE] = ACTIONS(2403), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_LPAREN] = ACTIONS(1051), + [anon_sym_ref] = ACTIONS(2305), + [anon_sym_LBRACE] = ACTIONS(1057), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1061), - [anon_sym_LT] = ACTIONS(2405), - [anon_sym_GT] = ACTIONS(2405), + [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(1067), - [anon_sym_BANG] = ACTIONS(1717), - [anon_sym_TILDE] = ACTIONS(1717), - [anon_sym_PLUS_PLUS] = ACTIONS(1717), - [anon_sym_DASH_DASH] = ACTIONS(1717), + [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(1715), - [anon_sym_DASH] = ACTIONS(1715), + [anon_sym_PLUS] = ACTIONS(1069), + [anon_sym_DASH] = ACTIONS(1069), [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(1717), - [anon_sym_AMP] = ACTIONS(1717), - [anon_sym_GT_EQ] = ACTIONS(2407), - [anon_sym_LT_EQ] = ACTIONS(2407), + [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(2409), + [anon_sym_scoped] = ACTIONS(1073), [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(2411), + [anon_sym_var] = ACTIONS(1075), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1067), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1589), + [anon_sym_throw] = ACTIONS(1527), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1591), - [sym_discard] = ACTIONS(1083), + [anon_sym_await] = ACTIONS(1529), + [sym_discard] = ACTIONS(1081), [anon_sym_DOT_DOT] = ACTIONS(123), - [anon_sym_not] = ACTIONS(2413), + [anon_sym_not] = ACTIONS(1085), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -89475,7 +89361,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(1089), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -89492,98 +89378,98 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [307] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(2870), - [sym_alias_qualified_name] = STATE(2373), - [sym__simple_name] = STATE(2296), - [sym_qualified_name] = STATE(2373), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(2471), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(2378), - [sym__array_base_type] = STATE(7103), - [sym_nullable_type] = STATE(2379), - [sym_pointer_type] = STATE(2379), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(2379), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(2380), - [sym_pattern] = STATE(3853), - [sym_constant_pattern] = STATE(3774), - [sym_parenthesized_pattern] = STATE(3774), - [sym_var_pattern] = STATE(3774), - [sym_type_pattern] = STATE(3774), - [sym_list_pattern] = STATE(3774), - [sym_recursive_pattern] = STATE(3774), - [sym_positional_pattern_clause] = STATE(2553), - [sym_property_pattern_clause] = STATE(2604), - [sym_relational_pattern] = STATE(3774), - [sym_negated_pattern] = STATE(3774), - [sym_and_pattern] = STATE(3774), - [sym_or_pattern] = STATE(3774), - [sym_declaration_pattern] = STATE(3774), - [sym_expression] = STATE(5666), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3520), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3803), - [sym_postfix_unary_expression] = STATE(3804), - [sym_prefix_unary_expression] = STATE(3804), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6154), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3803), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3804), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3803), - [sym_member_access_expression] = STATE(2917), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3804), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7530), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(3803), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3803), - [sym_typeof_expression] = STATE(3803), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2917), - [sym_literal] = STATE(3803), - [sym_character_literal] = STATE(3877), - [sym_string_literal] = STATE(3877), - [sym_raw_string_literal] = STATE(3877), - [sym_boolean_literal] = STATE(3877), - [sym_identifier] = STATE(2186), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(2428), + [sym_alias_qualified_name] = STATE(2402), + [sym__simple_name] = STATE(2184), + [sym_qualified_name] = STATE(2402), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(2236), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(2373), + [sym__array_base_type] = STATE(7083), + [sym_nullable_type] = STATE(2375), + [sym_pointer_type] = STATE(2375), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(2375), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(2377), + [sym_pattern] = STATE(4388), + [sym_constant_pattern] = STATE(3429), + [sym_parenthesized_pattern] = STATE(3429), + [sym_var_pattern] = STATE(3429), + [sym_type_pattern] = STATE(3429), + [sym_list_pattern] = STATE(3429), + [sym_recursive_pattern] = STATE(3429), + [sym_positional_pattern_clause] = STATE(2275), + [sym_property_pattern_clause] = STATE(2315), + [sym_relational_pattern] = STATE(3429), + [sym_negated_pattern] = STATE(3429), + [sym_and_pattern] = STATE(3429), + [sym_or_pattern] = STATE(3429), + [sym_declaration_pattern] = STATE(3429), + [sym_expression] = STATE(5682), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3510), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3397), + [sym_postfix_unary_expression] = STATE(3404), + [sym_prefix_unary_expression] = STATE(3404), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6134), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3397), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3404), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3397), + [sym_member_access_expression] = STATE(2686), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3404), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7425), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(3397), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3397), + [sym_typeof_expression] = STATE(3397), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2686), + [sym_literal] = STATE(3397), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2178), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(307), [sym_preproc_endregion] = STATE(307), [sym_preproc_line] = STATE(307), @@ -89593,53 +89479,53 @@ 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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(2415), - [anon_sym_LPAREN] = ACTIONS(2417), - [anon_sym_ref] = ACTIONS(2369), - [anon_sym_LBRACE] = ACTIONS(2371), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_LPAREN] = ACTIONS(2373), + [anon_sym_ref] = ACTIONS(2341), + [anon_sym_LBRACE] = ACTIONS(2343), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1061), - [anon_sym_LT] = ACTIONS(2419), - [anon_sym_GT] = ACTIONS(2419), + [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(1067), - [anon_sym_BANG] = ACTIONS(1643), - [anon_sym_TILDE] = ACTIONS(1643), - [anon_sym_PLUS_PLUS] = ACTIONS(1643), - [anon_sym_DASH_DASH] = ACTIONS(1643), - [anon_sym_true] = ACTIONS(1645), - [anon_sym_false] = ACTIONS(1645), - [anon_sym_PLUS] = ACTIONS(1641), - [anon_sym_DASH] = ACTIONS(1641), + [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_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(1643), - [anon_sym_AMP] = ACTIONS(1643), - [anon_sym_GT_EQ] = ACTIONS(2421), - [anon_sym_LT_EQ] = ACTIONS(2421), + [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(2377), + [anon_sym_scoped] = ACTIONS(2349), [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(2423), - [sym_predefined_type] = ACTIONS(2425), - [anon_sym_unchecked] = ACTIONS(1067), + [anon_sym_var] = ACTIONS(2351), + [sym_predefined_type] = ACTIONS(2353), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1655), - [anon_sym_throw] = ACTIONS(1589), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(1527), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1591), - [sym_discard] = ACTIONS(2427), + [anon_sym_await] = ACTIONS(1529), + [sym_discard] = ACTIONS(1081), [anon_sym_DOT_DOT] = ACTIONS(123), - [anon_sym_not] = ACTIONS(2429), + [anon_sym_not] = ACTIONS(2375), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -89653,18 +89539,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(1665), - [anon_sym_typeof] = ACTIONS(1667), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), [anon_sym___makeref] = ACTIONS(133), [anon_sym___reftype] = ACTIONS(135), [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(1675), - [anon_sym_SQUOTE] = ACTIONS(1677), - [sym_integer_literal] = ACTIONS(1675), - [sym_real_literal] = ACTIONS(1679), - [anon_sym_DQUOTE] = ACTIONS(1681), - [sym_verbatim_string_literal] = ACTIONS(1679), - [aux_sym_preproc_if_token1] = ACTIONS(1089), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_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), @@ -89675,104 +89561,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(1685), - [sym_interpolation_verbatim_start] = ACTIONS(1687), - [sym_interpolation_raw_start] = ACTIONS(1689), - [sym_raw_string_start] = ACTIONS(1691), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [sym_interpolation_raw_start] = ACTIONS(155), + [sym_raw_string_start] = ACTIONS(157), }, [308] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(2421), - [sym_alias_qualified_name] = STATE(2373), - [sym__simple_name] = STATE(2191), - [sym_qualified_name] = STATE(2373), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(2250), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(2378), - [sym__array_base_type] = STATE(7103), - [sym_nullable_type] = STATE(2379), - [sym_pointer_type] = STATE(2379), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(2379), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(2380), - [sym_pattern] = STATE(3424), - [sym_constant_pattern] = STATE(3486), - [sym_parenthesized_pattern] = STATE(3486), - [sym_var_pattern] = STATE(3486), - [sym_type_pattern] = STATE(3486), - [sym_list_pattern] = STATE(3486), - [sym_recursive_pattern] = STATE(3486), - [sym_positional_pattern_clause] = STATE(2276), - [sym_property_pattern_clause] = STATE(2330), - [sym_relational_pattern] = STATE(3486), - [sym_negated_pattern] = STATE(3486), - [sym_and_pattern] = STATE(3486), - [sym_or_pattern] = STATE(3486), - [sym_declaration_pattern] = STATE(3486), - [sym_expression] = STATE(5679), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3520), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3455), - [sym_postfix_unary_expression] = STATE(3469), - [sym_prefix_unary_expression] = STATE(3469), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6154), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3455), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3469), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3455), - [sym_member_access_expression] = STATE(2719), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3469), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7530), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(3455), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3455), - [sym_typeof_expression] = STATE(3455), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2719), - [sym_literal] = STATE(3455), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2186), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(2428), + [sym_alias_qualified_name] = STATE(2402), + [sym__simple_name] = STATE(2184), + [sym_qualified_name] = STATE(2402), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(2239), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(2373), + [sym__array_base_type] = STATE(7083), + [sym_nullable_type] = STATE(2375), + [sym_pointer_type] = STATE(2375), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(2375), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(2377), + [sym_pattern] = STATE(3445), + [sym_constant_pattern] = STATE(3429), + [sym_parenthesized_pattern] = STATE(3429), + [sym_var_pattern] = STATE(3429), + [sym_type_pattern] = STATE(3429), + [sym_list_pattern] = STATE(3429), + [sym_recursive_pattern] = STATE(3429), + [sym_positional_pattern_clause] = STATE(2275), + [sym_property_pattern_clause] = STATE(2315), + [sym_relational_pattern] = STATE(3429), + [sym_negated_pattern] = STATE(3429), + [sym_and_pattern] = STATE(3429), + [sym_or_pattern] = STATE(3429), + [sym_declaration_pattern] = STATE(3429), + [sym_expression] = STATE(5682), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3510), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3397), + [sym_postfix_unary_expression] = STATE(3404), + [sym_prefix_unary_expression] = STATE(3404), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6134), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3397), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3404), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3397), + [sym_member_access_expression] = STATE(2686), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3404), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7425), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(3397), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3397), + [sym_typeof_expression] = STATE(3397), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2686), + [sym_literal] = STATE(3397), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2178), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(308), [sym_preproc_endregion] = STATE(308), [sym_preproc_line] = STATE(308), @@ -89782,53 +89668,53 @@ 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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1049), - [anon_sym_LPAREN] = ACTIONS(2431), - [anon_sym_ref] = ACTIONS(2369), - [anon_sym_LBRACE] = ACTIONS(2371), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_LPAREN] = ACTIONS(2373), + [anon_sym_ref] = ACTIONS(2341), + [anon_sym_LBRACE] = ACTIONS(2343), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1061), - [anon_sym_LT] = ACTIONS(1063), - [anon_sym_GT] = ACTIONS(1063), + [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(1067), - [anon_sym_BANG] = ACTIONS(1069), - [anon_sym_TILDE] = ACTIONS(1069), - [anon_sym_PLUS_PLUS] = ACTIONS(1069), - [anon_sym_DASH_DASH] = ACTIONS(1069), + [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(1071), - [anon_sym_DASH] = ACTIONS(1071), + [anon_sym_PLUS] = ACTIONS(1069), + [anon_sym_DASH] = ACTIONS(1069), [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(1069), - [anon_sym_AMP] = ACTIONS(1069), - [anon_sym_GT_EQ] = ACTIONS(1073), - [anon_sym_LT_EQ] = ACTIONS(1073), + [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(2377), + [anon_sym_scoped] = ACTIONS(2349), [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(2433), - [sym_predefined_type] = ACTIONS(2435), - [anon_sym_unchecked] = ACTIONS(1067), + [anon_sym_var] = ACTIONS(2351), + [sym_predefined_type] = ACTIONS(2353), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1589), + [anon_sym_throw] = ACTIONS(1527), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1591), - [sym_discard] = ACTIONS(1083), + [anon_sym_await] = ACTIONS(1529), + [sym_discard] = ACTIONS(1081), [anon_sym_DOT_DOT] = ACTIONS(123), - [anon_sym_not] = ACTIONS(2437), + [anon_sym_not] = ACTIONS(2375), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -89853,7 +89739,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(1089), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -89870,98 +89756,98 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [309] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(2884), - [sym_alias_qualified_name] = STATE(2373), - [sym__simple_name] = STATE(2349), - [sym_qualified_name] = STATE(2373), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(2505), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(2378), - [sym__array_base_type] = STATE(7103), - [sym_nullable_type] = STATE(2379), - [sym_pointer_type] = STATE(2379), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(2379), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(2380), - [sym_pattern] = STATE(5500), - [sym_constant_pattern] = STATE(3486), - [sym_parenthesized_pattern] = STATE(3486), - [sym_var_pattern] = STATE(3486), - [sym_type_pattern] = STATE(3486), - [sym_list_pattern] = STATE(3486), - [sym_recursive_pattern] = STATE(3486), - [sym_positional_pattern_clause] = STATE(2583), - [sym_property_pattern_clause] = STATE(2691), - [sym_relational_pattern] = STATE(3486), - [sym_negated_pattern] = STATE(3486), - [sym_and_pattern] = STATE(3486), - [sym_or_pattern] = STATE(3486), - [sym_declaration_pattern] = STATE(3486), - [sym_expression] = STATE(5667), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3520), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3455), - [sym_postfix_unary_expression] = STATE(3469), - [sym_prefix_unary_expression] = STATE(3469), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6154), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3455), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3469), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3455), - [sym_member_access_expression] = STATE(2719), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3469), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7530), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(3455), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3455), - [sym_typeof_expression] = STATE(3455), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2719), - [sym_literal] = STATE(3455), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2186), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(5152), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2225), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(4472), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_pattern] = STATE(6579), + [sym_constant_pattern] = STATE(3429), + [sym_parenthesized_pattern] = STATE(3429), + [sym_var_pattern] = STATE(3429), + [sym_type_pattern] = STATE(3429), + [sym_list_pattern] = STATE(3429), + [sym_recursive_pattern] = STATE(3429), + [sym_positional_pattern_clause] = STATE(5135), + [sym_property_pattern_clause] = STATE(5666), + [sym_relational_pattern] = STATE(3429), + [sym_negated_pattern] = STATE(3429), + [sym_and_pattern] = STATE(3429), + [sym_or_pattern] = STATE(3429), + [sym_declaration_pattern] = STATE(3429), + [sym_expression] = STATE(5682), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3510), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(4418), + [sym_postfix_unary_expression] = STATE(4403), + [sym_prefix_unary_expression] = STATE(4403), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6134), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(4418), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(4403), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(4418), + [sym_member_access_expression] = STATE(3127), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(4403), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7425), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(4418), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(4418), + [sym_typeof_expression] = STATE(4418), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(3127), + [sym_literal] = STATE(4418), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(309), [sym_preproc_endregion] = STATE(309), [sym_preproc_line] = STATE(309), @@ -89971,53 +89857,53 @@ 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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1049), - [anon_sym_LPAREN] = ACTIONS(2439), - [anon_sym_ref] = ACTIONS(2369), - [anon_sym_LBRACE] = ACTIONS(2371), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_LPAREN] = ACTIONS(1051), + [anon_sym_ref] = ACTIONS(2305), + [anon_sym_LBRACE] = ACTIONS(1057), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1061), - [anon_sym_LT] = ACTIONS(2441), - [anon_sym_GT] = ACTIONS(2441), + [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(1067), - [anon_sym_BANG] = ACTIONS(1813), - [anon_sym_TILDE] = ACTIONS(1813), - [anon_sym_PLUS_PLUS] = ACTIONS(1813), - [anon_sym_DASH_DASH] = ACTIONS(1813), + [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(1811), - [anon_sym_DASH] = ACTIONS(1811), + [anon_sym_PLUS] = ACTIONS(1069), + [anon_sym_DASH] = ACTIONS(1069), [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(1813), - [anon_sym_AMP] = ACTIONS(1813), - [anon_sym_GT_EQ] = ACTIONS(2443), - [anon_sym_LT_EQ] = ACTIONS(2443), + [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(2377), + [anon_sym_scoped] = ACTIONS(1073), [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(2433), - [sym_predefined_type] = ACTIONS(2435), - [anon_sym_unchecked] = ACTIONS(1067), + [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(1589), + [anon_sym_throw] = ACTIONS(1527), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1591), - [sym_discard] = ACTIONS(1083), + [anon_sym_await] = ACTIONS(1529), + [sym_discard] = ACTIONS(1081), [anon_sym_DOT_DOT] = ACTIONS(123), - [anon_sym_not] = ACTIONS(2445), + [anon_sym_not] = ACTIONS(1085), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -90042,7 +89928,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(1089), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -90059,98 +89945,98 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [310] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(2884), - [sym_alias_qualified_name] = STATE(2373), - [sym__simple_name] = STATE(2349), - [sym_qualified_name] = STATE(2373), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(2520), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(2378), - [sym__array_base_type] = STATE(7103), - [sym_nullable_type] = STATE(2379), - [sym_pointer_type] = STATE(2379), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(2379), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(2380), - [sym_pattern] = STATE(5506), - [sym_constant_pattern] = STATE(3486), - [sym_parenthesized_pattern] = STATE(3486), - [sym_var_pattern] = STATE(3486), - [sym_type_pattern] = STATE(3486), - [sym_list_pattern] = STATE(3486), - [sym_recursive_pattern] = STATE(3486), - [sym_positional_pattern_clause] = STATE(2583), - [sym_property_pattern_clause] = STATE(2691), - [sym_relational_pattern] = STATE(3486), - [sym_negated_pattern] = STATE(3486), - [sym_and_pattern] = STATE(3486), - [sym_or_pattern] = STATE(3486), - [sym_declaration_pattern] = STATE(3486), - [sym_expression] = STATE(5667), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3520), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3455), - [sym_postfix_unary_expression] = STATE(3469), - [sym_prefix_unary_expression] = STATE(3469), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6154), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3455), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3469), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3455), - [sym_member_access_expression] = STATE(2719), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3469), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7530), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(3455), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3455), - [sym_typeof_expression] = STATE(3455), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2719), - [sym_literal] = STATE(3455), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2186), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(5152), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2225), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(4472), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_pattern] = STATE(6657), + [sym_constant_pattern] = STATE(3429), + [sym_parenthesized_pattern] = STATE(3429), + [sym_var_pattern] = STATE(3429), + [sym_type_pattern] = STATE(3429), + [sym_list_pattern] = STATE(3429), + [sym_recursive_pattern] = STATE(3429), + [sym_positional_pattern_clause] = STATE(5135), + [sym_property_pattern_clause] = STATE(5666), + [sym_relational_pattern] = STATE(3429), + [sym_negated_pattern] = STATE(3429), + [sym_and_pattern] = STATE(3429), + [sym_or_pattern] = STATE(3429), + [sym_declaration_pattern] = STATE(3429), + [sym_expression] = STATE(5682), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3510), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(4418), + [sym_postfix_unary_expression] = STATE(4403), + [sym_prefix_unary_expression] = STATE(4403), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6134), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(4418), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(4403), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(4418), + [sym_member_access_expression] = STATE(3127), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(4403), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7425), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(4418), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(4418), + [sym_typeof_expression] = STATE(4418), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(3127), + [sym_literal] = STATE(4418), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(310), [sym_preproc_endregion] = STATE(310), [sym_preproc_line] = STATE(310), @@ -90160,53 +90046,53 @@ 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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1049), - [anon_sym_LPAREN] = ACTIONS(2439), - [anon_sym_ref] = ACTIONS(2369), - [anon_sym_LBRACE] = ACTIONS(2371), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_LPAREN] = ACTIONS(1051), + [anon_sym_ref] = ACTIONS(2305), + [anon_sym_LBRACE] = ACTIONS(1057), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1061), - [anon_sym_LT] = ACTIONS(2441), - [anon_sym_GT] = ACTIONS(2441), + [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(1067), - [anon_sym_BANG] = ACTIONS(1813), - [anon_sym_TILDE] = ACTIONS(1813), - [anon_sym_PLUS_PLUS] = ACTIONS(1813), - [anon_sym_DASH_DASH] = ACTIONS(1813), + [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(1811), - [anon_sym_DASH] = ACTIONS(1811), + [anon_sym_PLUS] = ACTIONS(1069), + [anon_sym_DASH] = ACTIONS(1069), [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(1813), - [anon_sym_AMP] = ACTIONS(1813), - [anon_sym_GT_EQ] = ACTIONS(2443), - [anon_sym_LT_EQ] = ACTIONS(2443), + [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(2377), + [anon_sym_scoped] = ACTIONS(1073), [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(2433), - [sym_predefined_type] = ACTIONS(2435), - [anon_sym_unchecked] = ACTIONS(1067), + [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(1589), + [anon_sym_throw] = ACTIONS(1527), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1591), - [sym_discard] = ACTIONS(1083), - [anon_sym_DOT_DOT] = ACTIONS(123), - [anon_sym_not] = ACTIONS(2445), + [anon_sym_await] = ACTIONS(1529), + [sym_discard] = ACTIONS(1081), + [anon_sym_DOT_DOT] = ACTIONS(2307), + [anon_sym_not] = ACTIONS(1085), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -90231,7 +90117,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(1089), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -90248,98 +90134,98 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [311] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(2884), - [sym_alias_qualified_name] = STATE(2373), - [sym__simple_name] = STATE(2349), - [sym_qualified_name] = STATE(2373), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(2520), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(2378), - [sym__array_base_type] = STATE(7103), - [sym_nullable_type] = STATE(2379), - [sym_pointer_type] = STATE(2379), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(2379), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(2380), - [sym_pattern] = STATE(3432), - [sym_constant_pattern] = STATE(3486), - [sym_parenthesized_pattern] = STATE(3486), - [sym_var_pattern] = STATE(3486), - [sym_type_pattern] = STATE(3486), - [sym_list_pattern] = STATE(3486), - [sym_recursive_pattern] = STATE(3486), - [sym_positional_pattern_clause] = STATE(2583), - [sym_property_pattern_clause] = STATE(2691), - [sym_relational_pattern] = STATE(3486), - [sym_negated_pattern] = STATE(3486), - [sym_and_pattern] = STATE(3486), - [sym_or_pattern] = STATE(3486), - [sym_declaration_pattern] = STATE(3486), - [sym_expression] = STATE(5667), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3520), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3455), - [sym_postfix_unary_expression] = STATE(3469), - [sym_prefix_unary_expression] = STATE(3469), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6154), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3455), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3469), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3455), - [sym_member_access_expression] = STATE(2719), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3469), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7530), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(3455), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3455), - [sym_typeof_expression] = STATE(3455), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2719), - [sym_literal] = STATE(3455), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2186), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(2428), + [sym_alias_qualified_name] = STATE(2402), + [sym__simple_name] = STATE(2184), + [sym_qualified_name] = STATE(2402), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(2236), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(2373), + [sym__array_base_type] = STATE(7083), + [sym_nullable_type] = STATE(2375), + [sym_pointer_type] = STATE(2375), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(2375), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(2377), + [sym_pattern] = STATE(3407), + [sym_constant_pattern] = STATE(3429), + [sym_parenthesized_pattern] = STATE(3429), + [sym_var_pattern] = STATE(3429), + [sym_type_pattern] = STATE(3429), + [sym_list_pattern] = STATE(3429), + [sym_recursive_pattern] = STATE(3429), + [sym_positional_pattern_clause] = STATE(2275), + [sym_property_pattern_clause] = STATE(2315), + [sym_relational_pattern] = STATE(3429), + [sym_negated_pattern] = STATE(3429), + [sym_and_pattern] = STATE(3429), + [sym_or_pattern] = STATE(3429), + [sym_declaration_pattern] = STATE(3429), + [sym_expression] = STATE(5682), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3510), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3397), + [sym_postfix_unary_expression] = STATE(3404), + [sym_prefix_unary_expression] = STATE(3404), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6134), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3397), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3404), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3397), + [sym_member_access_expression] = STATE(2686), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3404), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7425), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(3397), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3397), + [sym_typeof_expression] = STATE(3397), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2686), + [sym_literal] = STATE(3397), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2178), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(311), [sym_preproc_endregion] = STATE(311), [sym_preproc_line] = STATE(311), @@ -90349,53 +90235,53 @@ 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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1049), - [anon_sym_LPAREN] = ACTIONS(2439), - [anon_sym_ref] = ACTIONS(2369), - [anon_sym_LBRACE] = ACTIONS(2371), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_LPAREN] = ACTIONS(2373), + [anon_sym_ref] = ACTIONS(2341), + [anon_sym_LBRACE] = ACTIONS(2343), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1061), - [anon_sym_LT] = ACTIONS(2441), - [anon_sym_GT] = ACTIONS(2441), + [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(1067), - [anon_sym_BANG] = ACTIONS(1813), - [anon_sym_TILDE] = ACTIONS(1813), - [anon_sym_PLUS_PLUS] = ACTIONS(1813), - [anon_sym_DASH_DASH] = ACTIONS(1813), + [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(1811), - [anon_sym_DASH] = ACTIONS(1811), + [anon_sym_PLUS] = ACTIONS(1069), + [anon_sym_DASH] = ACTIONS(1069), [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(1813), - [anon_sym_AMP] = ACTIONS(1813), - [anon_sym_GT_EQ] = ACTIONS(2443), - [anon_sym_LT_EQ] = ACTIONS(2443), + [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(2377), + [anon_sym_scoped] = ACTIONS(2349), [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(2433), - [sym_predefined_type] = ACTIONS(2435), - [anon_sym_unchecked] = ACTIONS(1067), + [anon_sym_var] = ACTIONS(2351), + [sym_predefined_type] = ACTIONS(2353), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1589), + [anon_sym_throw] = ACTIONS(1527), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1591), - [sym_discard] = ACTIONS(1083), + [anon_sym_await] = ACTIONS(1529), + [sym_discard] = ACTIONS(1081), [anon_sym_DOT_DOT] = ACTIONS(123), - [anon_sym_not] = ACTIONS(2445), + [anon_sym_not] = ACTIONS(2375), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -90420,7 +90306,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(1089), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -90437,98 +90323,98 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [312] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(2884), - [sym_alias_qualified_name] = STATE(2373), - [sym__simple_name] = STATE(2349), - [sym_qualified_name] = STATE(2373), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(2520), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(2378), - [sym__array_base_type] = STATE(7103), - [sym_nullable_type] = STATE(2379), - [sym_pointer_type] = STATE(2379), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(2379), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(2380), - [sym_pattern] = STATE(5369), - [sym_constant_pattern] = STATE(3486), - [sym_parenthesized_pattern] = STATE(3486), - [sym_var_pattern] = STATE(3486), - [sym_type_pattern] = STATE(3486), - [sym_list_pattern] = STATE(3486), - [sym_recursive_pattern] = STATE(3486), - [sym_positional_pattern_clause] = STATE(2583), - [sym_property_pattern_clause] = STATE(2691), - [sym_relational_pattern] = STATE(3486), - [sym_negated_pattern] = STATE(3486), - [sym_and_pattern] = STATE(3486), - [sym_or_pattern] = STATE(3486), - [sym_declaration_pattern] = STATE(3486), - [sym_expression] = STATE(5667), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3520), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3455), - [sym_postfix_unary_expression] = STATE(3469), - [sym_prefix_unary_expression] = STATE(3469), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6154), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3455), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3469), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3455), - [sym_member_access_expression] = STATE(2719), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3469), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7530), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(3455), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3455), - [sym_typeof_expression] = STATE(3455), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2719), - [sym_literal] = STATE(3455), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2186), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(2877), + [sym_alias_qualified_name] = STATE(2402), + [sym__simple_name] = STATE(2308), + [sym_qualified_name] = STATE(2402), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(2503), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(2373), + [sym__array_base_type] = STATE(7083), + [sym_nullable_type] = STATE(2375), + [sym_pointer_type] = STATE(2375), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(2375), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(2377), + [sym_pattern] = STATE(5491), + [sym_constant_pattern] = STATE(3429), + [sym_parenthesized_pattern] = STATE(3429), + [sym_var_pattern] = STATE(3429), + [sym_type_pattern] = STATE(3429), + [sym_list_pattern] = STATE(3429), + [sym_recursive_pattern] = STATE(3429), + [sym_positional_pattern_clause] = STATE(2591), + [sym_property_pattern_clause] = STATE(2675), + [sym_relational_pattern] = STATE(3429), + [sym_negated_pattern] = STATE(3429), + [sym_and_pattern] = STATE(3429), + [sym_or_pattern] = STATE(3429), + [sym_declaration_pattern] = STATE(3429), + [sym_expression] = STATE(5664), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3510), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3397), + [sym_postfix_unary_expression] = STATE(3404), + [sym_prefix_unary_expression] = STATE(3404), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6134), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3397), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3404), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3397), + [sym_member_access_expression] = STATE(2686), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3404), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7425), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(3397), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3397), + [sym_typeof_expression] = STATE(3397), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2686), + [sym_literal] = STATE(3397), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2178), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(312), [sym_preproc_endregion] = STATE(312), [sym_preproc_line] = STATE(312), @@ -90538,53 +90424,53 @@ 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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1049), - [anon_sym_LPAREN] = ACTIONS(2439), - [anon_sym_ref] = ACTIONS(2369), - [anon_sym_LBRACE] = ACTIONS(2371), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_LPAREN] = ACTIONS(2377), + [anon_sym_ref] = ACTIONS(2341), + [anon_sym_LBRACE] = ACTIONS(2343), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1061), - [anon_sym_LT] = ACTIONS(2441), - [anon_sym_GT] = ACTIONS(2441), + [anon_sym_new] = ACTIONS(1059), + [anon_sym_LT] = ACTIONS(2379), + [anon_sym_GT] = ACTIONS(2379), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1067), - [anon_sym_BANG] = ACTIONS(1813), - [anon_sym_TILDE] = ACTIONS(1813), - [anon_sym_PLUS_PLUS] = ACTIONS(1813), - [anon_sym_DASH_DASH] = ACTIONS(1813), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(1847), + [anon_sym_TILDE] = ACTIONS(1847), + [anon_sym_PLUS_PLUS] = ACTIONS(1847), + [anon_sym_DASH_DASH] = ACTIONS(1847), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1811), - [anon_sym_DASH] = ACTIONS(1811), + [anon_sym_PLUS] = ACTIONS(1845), + [anon_sym_DASH] = ACTIONS(1845), [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(1813), - [anon_sym_AMP] = ACTIONS(1813), - [anon_sym_GT_EQ] = ACTIONS(2443), - [anon_sym_LT_EQ] = ACTIONS(2443), + [anon_sym_CARET] = ACTIONS(1847), + [anon_sym_AMP] = ACTIONS(1847), + [anon_sym_GT_EQ] = ACTIONS(2381), + [anon_sym_LT_EQ] = ACTIONS(2381), [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(2377), + [anon_sym_scoped] = ACTIONS(2349), [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(2433), - [sym_predefined_type] = ACTIONS(2435), - [anon_sym_unchecked] = ACTIONS(1067), + [anon_sym_var] = ACTIONS(2351), + [sym_predefined_type] = ACTIONS(2353), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1589), + [anon_sym_throw] = ACTIONS(1527), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1591), - [sym_discard] = ACTIONS(1083), + [anon_sym_await] = ACTIONS(1529), + [sym_discard] = ACTIONS(1081), [anon_sym_DOT_DOT] = ACTIONS(123), - [anon_sym_not] = ACTIONS(2445), + [anon_sym_not] = ACTIONS(2383), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -90609,7 +90495,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(1089), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -90626,98 +90512,98 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [313] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(2426), - [sym_alias_qualified_name] = STATE(2373), - [sym__simple_name] = STATE(2189), - [sym_qualified_name] = STATE(2373), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(2477), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(2378), - [sym__array_base_type] = STATE(7103), - [sym_nullable_type] = STATE(2379), - [sym_pointer_type] = STATE(2379), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(2379), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(2380), - [sym_pattern] = STATE(3250), - [sym_constant_pattern] = STATE(3295), - [sym_parenthesized_pattern] = STATE(3295), - [sym_var_pattern] = STATE(3295), - [sym_type_pattern] = STATE(3295), - [sym_list_pattern] = STATE(3295), - [sym_recursive_pattern] = STATE(3295), - [sym_positional_pattern_clause] = STATE(2251), - [sym_property_pattern_clause] = STATE(2302), - [sym_relational_pattern] = STATE(3295), - [sym_negated_pattern] = STATE(3295), - [sym_and_pattern] = STATE(3295), - [sym_or_pattern] = STATE(3295), - [sym_declaration_pattern] = STATE(3295), - [sym_expression] = STATE(5699), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3520), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3310), - [sym_postfix_unary_expression] = STATE(3312), - [sym_prefix_unary_expression] = STATE(3312), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6154), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3310), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3312), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3310), - [sym_member_access_expression] = STATE(2617), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3312), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7530), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(3310), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3310), - [sym_typeof_expression] = STATE(3310), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2617), - [sym_literal] = STATE(3310), - [sym_character_literal] = STATE(3278), - [sym_string_literal] = STATE(3278), - [sym_raw_string_literal] = STATE(3278), - [sym_boolean_literal] = STATE(3278), - [sym_identifier] = STATE(2258), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(2877), + [sym_alias_qualified_name] = STATE(2402), + [sym__simple_name] = STATE(2308), + [sym_qualified_name] = STATE(2402), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(2503), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(2373), + [sym__array_base_type] = STATE(7083), + [sym_nullable_type] = STATE(2375), + [sym_pointer_type] = STATE(2375), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(2375), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(2377), + [sym_pattern] = STATE(3407), + [sym_constant_pattern] = STATE(3429), + [sym_parenthesized_pattern] = STATE(3429), + [sym_var_pattern] = STATE(3429), + [sym_type_pattern] = STATE(3429), + [sym_list_pattern] = STATE(3429), + [sym_recursive_pattern] = STATE(3429), + [sym_positional_pattern_clause] = STATE(2591), + [sym_property_pattern_clause] = STATE(2675), + [sym_relational_pattern] = STATE(3429), + [sym_negated_pattern] = STATE(3429), + [sym_and_pattern] = STATE(3429), + [sym_or_pattern] = STATE(3429), + [sym_declaration_pattern] = STATE(3429), + [sym_expression] = STATE(5664), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3510), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3397), + [sym_postfix_unary_expression] = STATE(3404), + [sym_prefix_unary_expression] = STATE(3404), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6134), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3397), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3404), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3397), + [sym_member_access_expression] = STATE(2686), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3404), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7425), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(3397), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3397), + [sym_typeof_expression] = STATE(3397), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2686), + [sym_literal] = STATE(3397), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2178), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(313), [sym_preproc_endregion] = STATE(313), [sym_preproc_line] = STATE(313), @@ -90727,53 +90613,53 @@ 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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(2365), - [anon_sym_LPAREN] = ACTIONS(2447), - [anon_sym_ref] = ACTIONS(2449), - [anon_sym_LBRACE] = ACTIONS(2371), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_LPAREN] = ACTIONS(2377), + [anon_sym_ref] = ACTIONS(2341), + [anon_sym_LBRACE] = ACTIONS(2343), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1061), - [anon_sym_LT] = ACTIONS(2451), - [anon_sym_GT] = ACTIONS(2451), + [anon_sym_new] = ACTIONS(1059), + [anon_sym_LT] = ACTIONS(2379), + [anon_sym_GT] = ACTIONS(2379), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1067), - [anon_sym_BANG] = ACTIONS(1599), - [anon_sym_TILDE] = ACTIONS(1599), - [anon_sym_PLUS_PLUS] = ACTIONS(1599), - [anon_sym_DASH_DASH] = ACTIONS(1599), - [anon_sym_true] = ACTIONS(1173), - [anon_sym_false] = ACTIONS(1173), - [anon_sym_PLUS] = ACTIONS(1597), - [anon_sym_DASH] = ACTIONS(1597), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(1847), + [anon_sym_TILDE] = ACTIONS(1847), + [anon_sym_PLUS_PLUS] = ACTIONS(1847), + [anon_sym_DASH_DASH] = ACTIONS(1847), + [anon_sym_true] = ACTIONS(77), + [anon_sym_false] = ACTIONS(77), + [anon_sym_PLUS] = ACTIONS(1845), + [anon_sym_DASH] = ACTIONS(1845), [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(1599), - [anon_sym_AMP] = ACTIONS(1599), - [anon_sym_GT_EQ] = ACTIONS(2453), - [anon_sym_LT_EQ] = ACTIONS(2453), + [anon_sym_CARET] = ACTIONS(1847), + [anon_sym_AMP] = ACTIONS(1847), + [anon_sym_GT_EQ] = ACTIONS(2381), + [anon_sym_LT_EQ] = ACTIONS(2381), [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(2377), + [anon_sym_scoped] = ACTIONS(2349), [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(2455), - [sym_predefined_type] = ACTIONS(2381), - [anon_sym_unchecked] = ACTIONS(1067), + [anon_sym_var] = ACTIONS(2351), + [sym_predefined_type] = ACTIONS(2353), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1183), - [anon_sym_throw] = ACTIONS(1589), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(1527), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1591), - [sym_discard] = ACTIONS(2383), + [anon_sym_await] = ACTIONS(1529), + [sym_discard] = ACTIONS(1081), [anon_sym_DOT_DOT] = ACTIONS(123), - [anon_sym_not] = ACTIONS(2457), + [anon_sym_not] = ACTIONS(2383), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -90787,18 +90673,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(1193), - [anon_sym_typeof] = ACTIONS(1195), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), [anon_sym___makeref] = ACTIONS(133), [anon_sym___reftype] = ACTIONS(135), [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(1203), - [anon_sym_SQUOTE] = ACTIONS(1205), - [sym_integer_literal] = ACTIONS(1203), - [sym_real_literal] = ACTIONS(1207), - [anon_sym_DQUOTE] = ACTIONS(1209), - [sym_verbatim_string_literal] = ACTIONS(1207), - [aux_sym_preproc_if_token1] = ACTIONS(1089), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_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), @@ -90809,104 +90695,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(1213), - [sym_interpolation_verbatim_start] = ACTIONS(1215), - [sym_interpolation_raw_start] = ACTIONS(1217), - [sym_raw_string_start] = ACTIONS(1219), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [sym_interpolation_raw_start] = ACTIONS(155), + [sym_raw_string_start] = ACTIONS(157), }, [314] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(2881), - [sym_alias_qualified_name] = STATE(2373), - [sym__simple_name] = STATE(2324), - [sym_qualified_name] = STATE(2373), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(2515), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(2378), - [sym__array_base_type] = STATE(7103), - [sym_nullable_type] = STATE(2379), - [sym_pointer_type] = STATE(2379), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(2379), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(2380), - [sym_pattern] = STATE(5146), - [sym_constant_pattern] = STATE(3295), - [sym_parenthesized_pattern] = STATE(3295), - [sym_var_pattern] = STATE(3295), - [sym_type_pattern] = STATE(3295), - [sym_list_pattern] = STATE(3295), - [sym_recursive_pattern] = STATE(3295), - [sym_positional_pattern_clause] = STATE(2576), - [sym_property_pattern_clause] = STATE(2773), - [sym_relational_pattern] = STATE(3295), - [sym_negated_pattern] = STATE(3295), - [sym_and_pattern] = STATE(3295), - [sym_or_pattern] = STATE(3295), - [sym_declaration_pattern] = STATE(3295), - [sym_expression] = STATE(5689), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3520), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3310), - [sym_postfix_unary_expression] = STATE(3312), - [sym_prefix_unary_expression] = STATE(3312), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6154), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3310), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3312), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3310), - [sym_member_access_expression] = STATE(2617), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3312), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7530), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(3310), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3310), - [sym_typeof_expression] = STATE(3310), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2617), - [sym_literal] = STATE(3310), - [sym_character_literal] = STATE(3278), - [sym_string_literal] = STATE(3278), - [sym_raw_string_literal] = STATE(3278), - [sym_boolean_literal] = STATE(3278), - [sym_identifier] = STATE(2186), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(2877), + [sym_alias_qualified_name] = STATE(2402), + [sym__simple_name] = STATE(2308), + [sym_qualified_name] = STATE(2402), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(2503), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(2373), + [sym__array_base_type] = STATE(7083), + [sym_nullable_type] = STATE(2375), + [sym_pointer_type] = STATE(2375), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(2375), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(2377), + [sym_pattern] = STATE(5337), + [sym_constant_pattern] = STATE(3429), + [sym_parenthesized_pattern] = STATE(3429), + [sym_var_pattern] = STATE(3429), + [sym_type_pattern] = STATE(3429), + [sym_list_pattern] = STATE(3429), + [sym_recursive_pattern] = STATE(3429), + [sym_positional_pattern_clause] = STATE(2591), + [sym_property_pattern_clause] = STATE(2675), + [sym_relational_pattern] = STATE(3429), + [sym_negated_pattern] = STATE(3429), + [sym_and_pattern] = STATE(3429), + [sym_or_pattern] = STATE(3429), + [sym_declaration_pattern] = STATE(3429), + [sym_expression] = STATE(5664), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3510), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3397), + [sym_postfix_unary_expression] = STATE(3404), + [sym_prefix_unary_expression] = STATE(3404), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6134), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3397), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3404), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3397), + [sym_member_access_expression] = STATE(2686), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3404), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7425), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(3397), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3397), + [sym_typeof_expression] = STATE(3397), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2686), + [sym_literal] = STATE(3397), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2178), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(314), [sym_preproc_endregion] = STATE(314), [sym_preproc_line] = STATE(314), @@ -90916,53 +90802,53 @@ 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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(2365), - [anon_sym_LPAREN] = ACTIONS(2459), - [anon_sym_ref] = ACTIONS(2369), - [anon_sym_LBRACE] = ACTIONS(2371), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_LPAREN] = ACTIONS(2377), + [anon_sym_ref] = ACTIONS(2341), + [anon_sym_LBRACE] = ACTIONS(2343), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1061), - [anon_sym_LT] = ACTIONS(2461), - [anon_sym_GT] = ACTIONS(2461), + [anon_sym_new] = ACTIONS(1059), + [anon_sym_LT] = ACTIONS(2379), + [anon_sym_GT] = ACTIONS(2379), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1067), - [anon_sym_BANG] = ACTIONS(1867), - [anon_sym_TILDE] = ACTIONS(1867), - [anon_sym_PLUS_PLUS] = ACTIONS(1867), - [anon_sym_DASH_DASH] = ACTIONS(1867), - [anon_sym_true] = ACTIONS(1173), - [anon_sym_false] = ACTIONS(1173), - [anon_sym_PLUS] = ACTIONS(1865), - [anon_sym_DASH] = ACTIONS(1865), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(1847), + [anon_sym_TILDE] = ACTIONS(1847), + [anon_sym_PLUS_PLUS] = ACTIONS(1847), + [anon_sym_DASH_DASH] = ACTIONS(1847), + [anon_sym_true] = ACTIONS(77), + [anon_sym_false] = ACTIONS(77), + [anon_sym_PLUS] = ACTIONS(1845), + [anon_sym_DASH] = ACTIONS(1845), [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(1867), - [anon_sym_AMP] = ACTIONS(1867), - [anon_sym_GT_EQ] = ACTIONS(2463), - [anon_sym_LT_EQ] = ACTIONS(2463), + [anon_sym_CARET] = ACTIONS(1847), + [anon_sym_AMP] = ACTIONS(1847), + [anon_sym_GT_EQ] = ACTIONS(2381), + [anon_sym_LT_EQ] = ACTIONS(2381), [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(2377), + [anon_sym_scoped] = ACTIONS(2349), [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(2379), - [sym_predefined_type] = ACTIONS(2381), - [anon_sym_unchecked] = ACTIONS(1067), + [anon_sym_var] = ACTIONS(2351), + [sym_predefined_type] = ACTIONS(2353), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1183), - [anon_sym_throw] = ACTIONS(1589), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(1527), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1591), - [sym_discard] = ACTIONS(2383), + [anon_sym_await] = ACTIONS(1529), + [sym_discard] = ACTIONS(1081), [anon_sym_DOT_DOT] = ACTIONS(123), - [anon_sym_not] = ACTIONS(2465), + [anon_sym_not] = ACTIONS(2383), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -90976,18 +90862,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(1193), - [anon_sym_typeof] = ACTIONS(1195), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), [anon_sym___makeref] = ACTIONS(133), [anon_sym___reftype] = ACTIONS(135), [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(1203), - [anon_sym_SQUOTE] = ACTIONS(1205), - [sym_integer_literal] = ACTIONS(1203), - [sym_real_literal] = ACTIONS(1207), - [anon_sym_DQUOTE] = ACTIONS(1209), - [sym_verbatim_string_literal] = ACTIONS(1207), - [aux_sym_preproc_if_token1] = ACTIONS(1089), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_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), @@ -90998,104 +90884,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(1213), - [sym_interpolation_verbatim_start] = ACTIONS(1215), - [sym_interpolation_raw_start] = ACTIONS(1217), - [sym_raw_string_start] = ACTIONS(1219), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [sym_interpolation_raw_start] = ACTIONS(155), + [sym_raw_string_start] = ACTIONS(157), }, [315] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(5160), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2230), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(4363), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_pattern] = STATE(3432), - [sym_constant_pattern] = STATE(3486), - [sym_parenthesized_pattern] = STATE(3486), - [sym_var_pattern] = STATE(3486), - [sym_type_pattern] = STATE(3486), - [sym_list_pattern] = STATE(3486), - [sym_recursive_pattern] = STATE(3486), - [sym_positional_pattern_clause] = STATE(5175), - [sym_property_pattern_clause] = STATE(5675), - [sym_relational_pattern] = STATE(3486), - [sym_negated_pattern] = STATE(3486), - [sym_and_pattern] = STATE(3486), - [sym_or_pattern] = STATE(3486), - [sym_declaration_pattern] = STATE(3486), - [sym_expression] = STATE(5679), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3520), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(4419), - [sym_postfix_unary_expression] = STATE(4420), - [sym_prefix_unary_expression] = STATE(4420), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6154), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(4419), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(4420), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(4419), - [sym_member_access_expression] = STATE(3135), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(4420), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7530), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(4419), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(4419), - [sym_typeof_expression] = STATE(4419), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(3135), - [sym_literal] = STATE(4419), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(2428), + [sym_alias_qualified_name] = STATE(2402), + [sym__simple_name] = STATE(2184), + [sym_qualified_name] = STATE(2402), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(2236), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(2373), + [sym__array_base_type] = STATE(7083), + [sym_nullable_type] = STATE(2375), + [sym_pointer_type] = STATE(2375), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(2375), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(2377), + [sym_pattern] = STATE(4463), + [sym_constant_pattern] = STATE(3429), + [sym_parenthesized_pattern] = STATE(3429), + [sym_var_pattern] = STATE(3429), + [sym_type_pattern] = STATE(3429), + [sym_list_pattern] = STATE(3429), + [sym_recursive_pattern] = STATE(3429), + [sym_positional_pattern_clause] = STATE(2275), + [sym_property_pattern_clause] = STATE(2315), + [sym_relational_pattern] = STATE(3429), + [sym_negated_pattern] = STATE(3429), + [sym_and_pattern] = STATE(3429), + [sym_or_pattern] = STATE(3429), + [sym_declaration_pattern] = STATE(3429), + [sym_expression] = STATE(5682), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3510), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3397), + [sym_postfix_unary_expression] = STATE(3404), + [sym_prefix_unary_expression] = STATE(3404), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6134), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3397), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3404), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3397), + [sym_member_access_expression] = STATE(2686), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3404), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7425), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(3397), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3397), + [sym_typeof_expression] = STATE(3397), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2686), + [sym_literal] = STATE(3397), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2178), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(315), [sym_preproc_endregion] = STATE(315), [sym_preproc_line] = STATE(315), @@ -91105,53 +90991,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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1049), - [anon_sym_LPAREN] = ACTIONS(1053), - [anon_sym_ref] = ACTIONS(2303), - [anon_sym_LBRACE] = ACTIONS(1059), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_LPAREN] = ACTIONS(2373), + [anon_sym_ref] = ACTIONS(2341), + [anon_sym_LBRACE] = ACTIONS(2343), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1061), - [anon_sym_LT] = ACTIONS(1063), - [anon_sym_GT] = ACTIONS(1063), + [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(1067), - [anon_sym_BANG] = ACTIONS(1069), - [anon_sym_TILDE] = ACTIONS(1069), - [anon_sym_PLUS_PLUS] = ACTIONS(1069), - [anon_sym_DASH_DASH] = ACTIONS(1069), + [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(1071), - [anon_sym_DASH] = ACTIONS(1071), + [anon_sym_PLUS] = ACTIONS(1069), + [anon_sym_DASH] = ACTIONS(1069), [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(1069), - [anon_sym_AMP] = ACTIONS(1069), - [anon_sym_GT_EQ] = ACTIONS(1073), - [anon_sym_LT_EQ] = ACTIONS(1073), + [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(1075), + [anon_sym_scoped] = ACTIONS(2349), [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(1077), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1067), + [anon_sym_var] = ACTIONS(2351), + [sym_predefined_type] = ACTIONS(2353), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1589), + [anon_sym_throw] = ACTIONS(1527), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1591), - [sym_discard] = ACTIONS(1083), + [anon_sym_await] = ACTIONS(1529), + [sym_discard] = ACTIONS(1081), [anon_sym_DOT_DOT] = ACTIONS(123), - [anon_sym_not] = ACTIONS(1087), + [anon_sym_not] = ACTIONS(2375), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -91176,7 +91062,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(1089), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -91193,98 +91079,98 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [316] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(5160), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2230), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(4363), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_pattern] = STATE(6497), - [sym_constant_pattern] = STATE(3486), - [sym_parenthesized_pattern] = STATE(3486), - [sym_var_pattern] = STATE(3486), - [sym_type_pattern] = STATE(3486), - [sym_list_pattern] = STATE(3486), - [sym_recursive_pattern] = STATE(3486), - [sym_positional_pattern_clause] = STATE(5175), - [sym_property_pattern_clause] = STATE(5675), - [sym_relational_pattern] = STATE(3486), - [sym_negated_pattern] = STATE(3486), - [sym_and_pattern] = STATE(3486), - [sym_or_pattern] = STATE(3486), - [sym_declaration_pattern] = STATE(3486), - [sym_expression] = STATE(5679), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3520), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(4419), - [sym_postfix_unary_expression] = STATE(4420), - [sym_prefix_unary_expression] = STATE(4420), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6154), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(4419), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(4420), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(4419), - [sym_member_access_expression] = STATE(3135), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(4420), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7530), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(4419), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(4419), - [sym_typeof_expression] = STATE(4419), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(3135), - [sym_literal] = STATE(4419), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(2428), + [sym_alias_qualified_name] = STATE(2402), + [sym__simple_name] = STATE(2184), + [sym_qualified_name] = STATE(2402), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(2236), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(2373), + [sym__array_base_type] = STATE(7083), + [sym_nullable_type] = STATE(2375), + [sym_pointer_type] = STATE(2375), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(2375), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(2377), + [sym_pattern] = STATE(4564), + [sym_constant_pattern] = STATE(3429), + [sym_parenthesized_pattern] = STATE(3429), + [sym_var_pattern] = STATE(3429), + [sym_type_pattern] = STATE(3429), + [sym_list_pattern] = STATE(3429), + [sym_recursive_pattern] = STATE(3429), + [sym_positional_pattern_clause] = STATE(2275), + [sym_property_pattern_clause] = STATE(2315), + [sym_relational_pattern] = STATE(3429), + [sym_negated_pattern] = STATE(3429), + [sym_and_pattern] = STATE(3429), + [sym_or_pattern] = STATE(3429), + [sym_declaration_pattern] = STATE(3429), + [sym_expression] = STATE(5690), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3510), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3397), + [sym_postfix_unary_expression] = STATE(3404), + [sym_prefix_unary_expression] = STATE(3404), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6134), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3397), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3404), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3397), + [sym_member_access_expression] = STATE(2686), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3404), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7425), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(3397), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3397), + [sym_typeof_expression] = STATE(3397), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2686), + [sym_literal] = STATE(3397), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2178), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(316), [sym_preproc_endregion] = STATE(316), [sym_preproc_line] = STATE(316), @@ -91294,53 +91180,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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1049), - [anon_sym_LPAREN] = ACTIONS(1053), - [anon_sym_ref] = ACTIONS(2303), - [anon_sym_LBRACE] = ACTIONS(1059), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_LPAREN] = ACTIONS(2385), + [anon_sym_ref] = ACTIONS(2341), + [anon_sym_LBRACE] = ACTIONS(2343), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1061), - [anon_sym_LT] = ACTIONS(1063), - [anon_sym_GT] = ACTIONS(1063), + [anon_sym_new] = ACTIONS(1059), + [anon_sym_LT] = ACTIONS(2387), + [anon_sym_GT] = ACTIONS(2387), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1067), - [anon_sym_BANG] = ACTIONS(1069), - [anon_sym_TILDE] = ACTIONS(1069), - [anon_sym_PLUS_PLUS] = ACTIONS(1069), - [anon_sym_DASH_DASH] = ACTIONS(1069), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(1375), + [anon_sym_TILDE] = ACTIONS(1375), + [anon_sym_PLUS_PLUS] = ACTIONS(1375), + [anon_sym_DASH_DASH] = ACTIONS(1375), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1071), - [anon_sym_DASH] = ACTIONS(1071), + [anon_sym_PLUS] = ACTIONS(1373), + [anon_sym_DASH] = ACTIONS(1373), [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(1069), - [anon_sym_AMP] = ACTIONS(1069), - [anon_sym_GT_EQ] = ACTIONS(1073), - [anon_sym_LT_EQ] = ACTIONS(1073), + [anon_sym_CARET] = ACTIONS(1375), + [anon_sym_AMP] = ACTIONS(1375), + [anon_sym_GT_EQ] = ACTIONS(2389), + [anon_sym_LT_EQ] = ACTIONS(2389), [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(1075), + [anon_sym_scoped] = ACTIONS(2349), [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(1077), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1067), + [anon_sym_var] = ACTIONS(2351), + [sym_predefined_type] = ACTIONS(2353), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1589), + [anon_sym_throw] = ACTIONS(1527), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1591), - [sym_discard] = ACTIONS(1083), + [anon_sym_await] = ACTIONS(1529), + [sym_discard] = ACTIONS(1081), [anon_sym_DOT_DOT] = ACTIONS(123), - [anon_sym_not] = ACTIONS(1087), + [anon_sym_not] = ACTIONS(2391), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -91365,7 +91251,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(1089), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -91382,98 +91268,98 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [317] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(2869), - [sym_alias_qualified_name] = STATE(2373), - [sym__simple_name] = STATE(2279), - [sym_qualified_name] = STATE(2373), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(2458), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(2378), - [sym__array_base_type] = STATE(7103), - [sym_nullable_type] = STATE(2379), - [sym_pointer_type] = STATE(2379), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(2379), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(2380), - [sym_pattern] = STATE(3250), - [sym_constant_pattern] = STATE(3295), - [sym_parenthesized_pattern] = STATE(3295), - [sym_var_pattern] = STATE(3295), - [sym_type_pattern] = STATE(3295), - [sym_list_pattern] = STATE(3295), - [sym_recursive_pattern] = STATE(3295), - [sym_positional_pattern_clause] = STATE(2527), - [sym_property_pattern_clause] = STATE(2589), - [sym_relational_pattern] = STATE(3295), - [sym_negated_pattern] = STATE(3295), - [sym_and_pattern] = STATE(3295), - [sym_or_pattern] = STATE(3295), - [sym_declaration_pattern] = STATE(3295), - [sym_expression] = STATE(5693), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3520), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3310), - [sym_postfix_unary_expression] = STATE(3312), - [sym_prefix_unary_expression] = STATE(3312), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6154), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3310), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3312), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3310), - [sym_member_access_expression] = STATE(2617), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3312), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7530), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(3310), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3310), - [sym_typeof_expression] = STATE(3310), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2617), - [sym_literal] = STATE(3310), - [sym_character_literal] = STATE(3278), - [sym_string_literal] = STATE(3278), - [sym_raw_string_literal] = STATE(3278), - [sym_boolean_literal] = STATE(3278), - [sym_identifier] = STATE(2258), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(2428), + [sym_alias_qualified_name] = STATE(2402), + [sym__simple_name] = STATE(2184), + [sym_qualified_name] = STATE(2402), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(2235), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(2373), + [sym__array_base_type] = STATE(7083), + [sym_nullable_type] = STATE(2375), + [sym_pointer_type] = STATE(2375), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(2375), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(2377), + [sym_pattern] = STATE(4512), + [sym_constant_pattern] = STATE(3429), + [sym_parenthesized_pattern] = STATE(3429), + [sym_var_pattern] = STATE(3429), + [sym_type_pattern] = STATE(3429), + [sym_list_pattern] = STATE(3429), + [sym_recursive_pattern] = STATE(3429), + [sym_positional_pattern_clause] = STATE(2275), + [sym_property_pattern_clause] = STATE(2315), + [sym_relational_pattern] = STATE(3429), + [sym_negated_pattern] = STATE(3429), + [sym_and_pattern] = STATE(3429), + [sym_or_pattern] = STATE(3429), + [sym_declaration_pattern] = STATE(3429), + [sym_expression] = STATE(5690), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3510), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3397), + [sym_postfix_unary_expression] = STATE(3404), + [sym_prefix_unary_expression] = STATE(3404), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6134), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3397), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3404), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3397), + [sym_member_access_expression] = STATE(2686), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3404), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7425), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(3397), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3397), + [sym_typeof_expression] = STATE(3397), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2686), + [sym_literal] = STATE(3397), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2178), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(317), [sym_preproc_endregion] = STATE(317), [sym_preproc_line] = STATE(317), @@ -91483,53 +91369,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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(2365), - [anon_sym_LPAREN] = ACTIONS(2467), - [anon_sym_ref] = ACTIONS(2449), - [anon_sym_LBRACE] = ACTIONS(2371), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_LPAREN] = ACTIONS(2385), + [anon_sym_ref] = ACTIONS(2341), + [anon_sym_LBRACE] = ACTIONS(2343), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1061), - [anon_sym_LT] = ACTIONS(2469), - [anon_sym_GT] = ACTIONS(2469), + [anon_sym_new] = ACTIONS(1059), + [anon_sym_LT] = ACTIONS(2387), + [anon_sym_GT] = ACTIONS(2387), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1067), - [anon_sym_BANG] = ACTIONS(1533), - [anon_sym_TILDE] = ACTIONS(1533), - [anon_sym_PLUS_PLUS] = ACTIONS(1533), - [anon_sym_DASH_DASH] = ACTIONS(1533), - [anon_sym_true] = ACTIONS(1173), - [anon_sym_false] = ACTIONS(1173), - [anon_sym_PLUS] = ACTIONS(1531), - [anon_sym_DASH] = ACTIONS(1531), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(1375), + [anon_sym_TILDE] = ACTIONS(1375), + [anon_sym_PLUS_PLUS] = ACTIONS(1375), + [anon_sym_DASH_DASH] = ACTIONS(1375), + [anon_sym_true] = ACTIONS(77), + [anon_sym_false] = ACTIONS(77), + [anon_sym_PLUS] = ACTIONS(1373), + [anon_sym_DASH] = ACTIONS(1373), [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(1533), - [anon_sym_AMP] = ACTIONS(1533), - [anon_sym_GT_EQ] = ACTIONS(2471), - [anon_sym_LT_EQ] = ACTIONS(2471), + [anon_sym_CARET] = ACTIONS(1375), + [anon_sym_AMP] = ACTIONS(1375), + [anon_sym_GT_EQ] = ACTIONS(2389), + [anon_sym_LT_EQ] = ACTIONS(2389), [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(2377), + [anon_sym_scoped] = ACTIONS(2349), [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(2455), - [sym_predefined_type] = ACTIONS(2381), - [anon_sym_unchecked] = ACTIONS(1067), + [anon_sym_var] = ACTIONS(2351), + [sym_predefined_type] = ACTIONS(2353), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1183), - [anon_sym_throw] = ACTIONS(1589), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(1527), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1591), - [sym_discard] = ACTIONS(2383), + [anon_sym_await] = ACTIONS(1529), + [sym_discard] = ACTIONS(1081), [anon_sym_DOT_DOT] = ACTIONS(123), - [anon_sym_not] = ACTIONS(2473), + [anon_sym_not] = ACTIONS(2391), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -91543,18 +91429,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(1193), - [anon_sym_typeof] = ACTIONS(1195), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), [anon_sym___makeref] = ACTIONS(133), [anon_sym___reftype] = ACTIONS(135), [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(1203), - [anon_sym_SQUOTE] = ACTIONS(1205), - [sym_integer_literal] = ACTIONS(1203), - [sym_real_literal] = ACTIONS(1207), - [anon_sym_DQUOTE] = ACTIONS(1209), - [sym_verbatim_string_literal] = ACTIONS(1207), - [aux_sym_preproc_if_token1] = ACTIONS(1089), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_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), @@ -91565,104 +91451,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(1213), - [sym_interpolation_verbatim_start] = ACTIONS(1215), - [sym_interpolation_raw_start] = ACTIONS(1217), - [sym_raw_string_start] = ACTIONS(1219), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [sym_interpolation_raw_start] = ACTIONS(155), + [sym_raw_string_start] = ACTIONS(157), }, [318] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(2885), - [sym_alias_qualified_name] = STATE(2373), - [sym__simple_name] = STATE(2345), - [sym_qualified_name] = STATE(2373), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(2508), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(2378), - [sym__array_base_type] = STATE(7103), - [sym_nullable_type] = STATE(2379), - [sym_pointer_type] = STATE(2379), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(2379), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(2380), - [sym_pattern] = STATE(4225), - [sym_constant_pattern] = STATE(4132), - [sym_parenthesized_pattern] = STATE(4132), - [sym_var_pattern] = STATE(4132), - [sym_type_pattern] = STATE(4132), - [sym_list_pattern] = STATE(4132), - [sym_recursive_pattern] = STATE(4132), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(2862), + [sym_alias_qualified_name] = STATE(2402), + [sym__simple_name] = STATE(2340), + [sym_qualified_name] = STATE(2402), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(2511), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(2373), + [sym__array_base_type] = STATE(7083), + [sym_nullable_type] = STATE(2375), + [sym_pointer_type] = STATE(2375), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(2375), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(2377), + [sym_pattern] = STATE(5112), + [sym_constant_pattern] = STATE(3311), + [sym_parenthesized_pattern] = STATE(3311), + [sym_var_pattern] = STATE(3311), + [sym_type_pattern] = STATE(3311), + [sym_list_pattern] = STATE(3311), + [sym_recursive_pattern] = STATE(3311), [sym_positional_pattern_clause] = STATE(2587), - [sym_property_pattern_clause] = STATE(2662), - [sym_relational_pattern] = STATE(4132), - [sym_negated_pattern] = STATE(4132), - [sym_and_pattern] = STATE(4132), - [sym_or_pattern] = STATE(4132), - [sym_declaration_pattern] = STATE(4132), - [sym_expression] = STATE(5684), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3520), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(4172), - [sym_postfix_unary_expression] = STATE(4148), - [sym_prefix_unary_expression] = STATE(4148), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6154), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(4172), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(4148), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(4172), - [sym_member_access_expression] = STATE(3069), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(4148), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7530), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(4172), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(4172), - [sym_typeof_expression] = STATE(4172), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(3069), - [sym_literal] = STATE(4172), - [sym_character_literal] = STATE(3011), - [sym_string_literal] = STATE(3011), - [sym_raw_string_literal] = STATE(3011), - [sym_boolean_literal] = STATE(3011), - [sym_identifier] = STATE(2186), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_property_pattern_clause] = STATE(2757), + [sym_relational_pattern] = STATE(3311), + [sym_negated_pattern] = STATE(3311), + [sym_and_pattern] = STATE(3311), + [sym_or_pattern] = STATE(3311), + [sym_declaration_pattern] = STATE(3311), + [sym_expression] = STATE(5679), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3510), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3275), + [sym_postfix_unary_expression] = STATE(3276), + [sym_prefix_unary_expression] = STATE(3276), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6134), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3275), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3276), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3275), + [sym_member_access_expression] = STATE(2608), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3276), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7425), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(3275), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3275), + [sym_typeof_expression] = STATE(3275), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2608), + [sym_literal] = STATE(3275), + [sym_character_literal] = STATE(3272), + [sym_string_literal] = STATE(3272), + [sym_raw_string_literal] = STATE(3272), + [sym_boolean_literal] = STATE(3272), + [sym_identifier] = STATE(2178), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(318), [sym_preproc_endregion] = STATE(318), [sym_preproc_line] = STATE(318), @@ -91672,53 +91558,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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(2475), - [anon_sym_LPAREN] = ACTIONS(2477), - [anon_sym_ref] = ACTIONS(2369), - [anon_sym_LBRACE] = ACTIONS(2371), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(2357), + [anon_sym_LPAREN] = ACTIONS(2393), + [anon_sym_ref] = ACTIONS(2341), + [anon_sym_LBRACE] = ACTIONS(2343), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1061), - [anon_sym_LT] = ACTIONS(2479), - [anon_sym_GT] = ACTIONS(2479), + [anon_sym_new] = ACTIONS(1059), + [anon_sym_LT] = ACTIONS(2395), + [anon_sym_GT] = ACTIONS(2395), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1067), - [anon_sym_BANG] = ACTIONS(1941), - [anon_sym_TILDE] = ACTIONS(1941), - [anon_sym_PLUS_PLUS] = ACTIONS(1941), - [anon_sym_DASH_DASH] = ACTIONS(1941), - [anon_sym_true] = ACTIONS(1259), - [anon_sym_false] = ACTIONS(1259), - [anon_sym_PLUS] = ACTIONS(1939), - [anon_sym_DASH] = ACTIONS(1939), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(1921), + [anon_sym_TILDE] = ACTIONS(1921), + [anon_sym_PLUS_PLUS] = ACTIONS(1921), + [anon_sym_DASH_DASH] = ACTIONS(1921), + [anon_sym_true] = ACTIONS(1169), + [anon_sym_false] = ACTIONS(1169), + [anon_sym_PLUS] = ACTIONS(1919), + [anon_sym_DASH] = ACTIONS(1919), [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(1941), - [anon_sym_AMP] = ACTIONS(1941), - [anon_sym_GT_EQ] = ACTIONS(2481), - [anon_sym_LT_EQ] = ACTIONS(2481), + [anon_sym_CARET] = ACTIONS(1921), + [anon_sym_AMP] = ACTIONS(1921), + [anon_sym_GT_EQ] = ACTIONS(2397), + [anon_sym_LT_EQ] = ACTIONS(2397), [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(2377), + [anon_sym_scoped] = ACTIONS(2349), [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(2483), - [sym_predefined_type] = ACTIONS(2485), - [anon_sym_unchecked] = ACTIONS(1067), + [anon_sym_var] = ACTIONS(2365), + [sym_predefined_type] = ACTIONS(2367), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1269), - [anon_sym_throw] = ACTIONS(1589), + [anon_sym_default] = ACTIONS(1179), + [anon_sym_throw] = ACTIONS(1527), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1591), - [sym_discard] = ACTIONS(2487), + [anon_sym_await] = ACTIONS(1529), + [sym_discard] = ACTIONS(2369), [anon_sym_DOT_DOT] = ACTIONS(123), - [anon_sym_not] = ACTIONS(2489), + [anon_sym_not] = ACTIONS(2399), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -91732,18 +91618,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(1279), - [anon_sym_typeof] = ACTIONS(1281), + [anon_sym_sizeof] = ACTIONS(1189), + [anon_sym_typeof] = ACTIONS(1191), [anon_sym___makeref] = ACTIONS(133), [anon_sym___reftype] = ACTIONS(135), [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(1289), - [anon_sym_SQUOTE] = ACTIONS(1291), - [sym_integer_literal] = ACTIONS(1289), - [sym_real_literal] = ACTIONS(1293), - [anon_sym_DQUOTE] = ACTIONS(1295), - [sym_verbatim_string_literal] = ACTIONS(1293), - [aux_sym_preproc_if_token1] = ACTIONS(1089), + [sym_null_literal] = ACTIONS(1199), + [anon_sym_SQUOTE] = ACTIONS(1201), + [sym_integer_literal] = ACTIONS(1199), + [sym_real_literal] = ACTIONS(1203), + [anon_sym_DQUOTE] = ACTIONS(1205), + [sym_verbatim_string_literal] = ACTIONS(1203), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -91754,104 +91640,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(1299), - [sym_interpolation_verbatim_start] = ACTIONS(1301), - [sym_interpolation_raw_start] = ACTIONS(1303), - [sym_raw_string_start] = ACTIONS(1305), + [sym_interpolation_regular_start] = ACTIONS(1209), + [sym_interpolation_verbatim_start] = ACTIONS(1211), + [sym_interpolation_raw_start] = ACTIONS(1213), + [sym_raw_string_start] = ACTIONS(1215), }, [319] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(2885), - [sym_alias_qualified_name] = STATE(2373), - [sym__simple_name] = STATE(2345), - [sym_qualified_name] = STATE(2373), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(2508), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(2378), - [sym__array_base_type] = STATE(7103), - [sym_nullable_type] = STATE(2379), - [sym_pointer_type] = STATE(2379), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(2379), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(2380), - [sym_pattern] = STATE(4147), - [sym_constant_pattern] = STATE(4132), - [sym_parenthesized_pattern] = STATE(4132), - [sym_var_pattern] = STATE(4132), - [sym_type_pattern] = STATE(4132), - [sym_list_pattern] = STATE(4132), - [sym_recursive_pattern] = STATE(4132), - [sym_positional_pattern_clause] = STATE(2587), - [sym_property_pattern_clause] = STATE(2662), - [sym_relational_pattern] = STATE(4132), - [sym_negated_pattern] = STATE(4132), - [sym_and_pattern] = STATE(4132), - [sym_or_pattern] = STATE(4132), - [sym_declaration_pattern] = STATE(4132), - [sym_expression] = STATE(5684), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3520), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(4172), - [sym_postfix_unary_expression] = STATE(4148), - [sym_prefix_unary_expression] = STATE(4148), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6154), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(4172), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(4148), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(4172), - [sym_member_access_expression] = STATE(3069), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(4148), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7530), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(4172), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(4172), - [sym_typeof_expression] = STATE(4172), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(3069), - [sym_literal] = STATE(4172), - [sym_character_literal] = STATE(3011), - [sym_string_literal] = STATE(3011), - [sym_raw_string_literal] = STATE(3011), - [sym_boolean_literal] = STATE(3011), - [sym_identifier] = STATE(2186), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(2817), + [sym_alias_qualified_name] = STATE(2821), + [sym__simple_name] = STATE(2258), + [sym_qualified_name] = STATE(2821), + [sym_generic_name] = STATE(2262), + [sym_type] = STATE(2396), + [sym_implicit_type] = STATE(2701), + [sym_array_type] = STATE(2822), + [sym__array_base_type] = STATE(7081), + [sym_nullable_type] = STATE(2823), + [sym_pointer_type] = STATE(2823), + [sym__pointer_base_type] = STATE(7400), + [sym_function_pointer_type] = STATE(2823), + [sym_ref_type] = STATE(2701), + [sym_scoped_type] = STATE(2701), + [sym_tuple_type] = STATE(2825), + [sym_pattern] = STATE(4943), + [sym_constant_pattern] = STATE(4727), + [sym_parenthesized_pattern] = STATE(4727), + [sym_var_pattern] = STATE(4727), + [sym_type_pattern] = STATE(4727), + [sym_list_pattern] = STATE(4727), + [sym_recursive_pattern] = STATE(4727), + [sym_positional_pattern_clause] = STATE(2506), + [sym_property_pattern_clause] = STATE(2549), + [sym_relational_pattern] = STATE(4727), + [sym_negated_pattern] = STATE(4727), + [sym_and_pattern] = STATE(4727), + [sym_or_pattern] = STATE(4727), + [sym_declaration_pattern] = STATE(4727), + [sym_expression] = STATE(5687), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3510), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(4509), + [sym_postfix_unary_expression] = STATE(4510), + [sym_prefix_unary_expression] = STATE(4510), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6134), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(4509), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(4510), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(4509), + [sym_member_access_expression] = STATE(3207), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(4510), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7425), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(4509), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(4509), + [sym_typeof_expression] = STATE(4509), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(3207), + [sym_literal] = STATE(4509), + [sym_character_literal] = STATE(4575), + [sym_string_literal] = STATE(4575), + [sym_raw_string_literal] = STATE(4575), + [sym_boolean_literal] = STATE(4575), + [sym_identifier] = STATE(2219), + [sym__reserved_identifier] = STATE(2229), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(319), [sym_preproc_endregion] = STATE(319), [sym_preproc_line] = STATE(319), @@ -91861,78 +91747,78 @@ 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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), - [sym__identifier_token] = ACTIONS(25), - [anon_sym_alias] = ACTIONS(29), - [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(2475), - [anon_sym_LPAREN] = ACTIONS(2477), - [anon_sym_ref] = ACTIONS(2369), - [anon_sym_LBRACE] = ACTIONS(2371), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), - [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1061), - [anon_sym_LT] = ACTIONS(2479), - [anon_sym_GT] = ACTIONS(2479), - [anon_sym_where] = ACTIONS(29), - [anon_sym_notnull] = ACTIONS(29), - [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1067), - [anon_sym_BANG] = ACTIONS(1941), - [anon_sym_TILDE] = ACTIONS(1941), - [anon_sym_PLUS_PLUS] = ACTIONS(1941), - [anon_sym_DASH_DASH] = ACTIONS(1941), - [anon_sym_true] = ACTIONS(1259), - [anon_sym_false] = ACTIONS(1259), - [anon_sym_PLUS] = ACTIONS(1939), - [anon_sym_DASH] = ACTIONS(1939), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), + [sym__identifier_token] = ACTIONS(1385), + [anon_sym_alias] = ACTIONS(1387), + [anon_sym_global] = ACTIONS(1387), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(2401), + [anon_sym_LPAREN] = ACTIONS(2403), + [anon_sym_ref] = ACTIONS(2405), + [anon_sym_LBRACE] = ACTIONS(2407), + [anon_sym_delegate] = ACTIONS(2409), + [anon_sym_async] = ACTIONS(1045), + [anon_sym_file] = ACTIONS(1387), + [anon_sym_new] = ACTIONS(1059), + [anon_sym_LT] = ACTIONS(2411), + [anon_sym_GT] = ACTIONS(2411), + [anon_sym_where] = ACTIONS(1387), + [anon_sym_notnull] = ACTIONS(1387), + [anon_sym_unmanaged] = ACTIONS(1387), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(1469), + [anon_sym_TILDE] = ACTIONS(1469), + [anon_sym_PLUS_PLUS] = ACTIONS(1469), + [anon_sym_DASH_DASH] = ACTIONS(1469), + [anon_sym_true] = ACTIONS(1407), + [anon_sym_false] = ACTIONS(1407), + [anon_sym_PLUS] = ACTIONS(1467), + [anon_sym_DASH] = ACTIONS(1467), [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(1941), - [anon_sym_AMP] = ACTIONS(1941), - [anon_sym_GT_EQ] = ACTIONS(2481), - [anon_sym_LT_EQ] = ACTIONS(2481), + [anon_sym_CARET] = ACTIONS(1469), + [anon_sym_AMP] = ACTIONS(1469), + [anon_sym_GT_EQ] = ACTIONS(2413), + [anon_sym_LT_EQ] = ACTIONS(2413), [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(2377), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(2483), - [sym_predefined_type] = ACTIONS(2485), - [anon_sym_unchecked] = ACTIONS(1067), - [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1269), - [anon_sym_throw] = ACTIONS(1589), - [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1591), - [sym_discard] = ACTIONS(2487), + [anon_sym_scoped] = ACTIONS(2415), + [anon_sym_base] = ACTIONS(87), + [anon_sym_var] = ACTIONS(2417), + [sym_predefined_type] = ACTIONS(2419), + [anon_sym_unchecked] = ACTIONS(1065), + [anon_sym_yield] = ACTIONS(1387), + [anon_sym_default] = ACTIONS(1421), + [anon_sym_throw] = ACTIONS(1527), + [anon_sym_when] = ACTIONS(1387), + [anon_sym_await] = ACTIONS(1529), + [sym_discard] = ACTIONS(2421), [anon_sym_DOT_DOT] = ACTIONS(123), - [anon_sym_not] = ACTIONS(2489), - [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(2423), + [anon_sym_from] = ACTIONS(1429), + [anon_sym_into] = ACTIONS(1387), + [anon_sym_join] = ACTIONS(1387), + [anon_sym_on] = ACTIONS(1387), + [anon_sym_equals] = ACTIONS(1387), + [anon_sym_let] = ACTIONS(1387), + [anon_sym_orderby] = ACTIONS(1387), + [anon_sym_ascending] = ACTIONS(1387), + [anon_sym_descending] = ACTIONS(1387), + [anon_sym_group] = ACTIONS(1387), + [anon_sym_by] = ACTIONS(1387), + [anon_sym_select] = ACTIONS(1387), [anon_sym_stackalloc] = ACTIONS(127), - [anon_sym_sizeof] = ACTIONS(1279), - [anon_sym_typeof] = ACTIONS(1281), + [anon_sym_sizeof] = ACTIONS(1433), + [anon_sym_typeof] = ACTIONS(1435), [anon_sym___makeref] = ACTIONS(133), [anon_sym___reftype] = ACTIONS(135), [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(1289), - [anon_sym_SQUOTE] = ACTIONS(1291), - [sym_integer_literal] = ACTIONS(1289), - [sym_real_literal] = ACTIONS(1293), - [anon_sym_DQUOTE] = ACTIONS(1295), - [sym_verbatim_string_literal] = ACTIONS(1293), - [aux_sym_preproc_if_token1] = ACTIONS(1089), + [sym_null_literal] = ACTIONS(1443), + [anon_sym_SQUOTE] = ACTIONS(1445), + [sym_integer_literal] = ACTIONS(1443), + [sym_real_literal] = ACTIONS(1447), + [anon_sym_DQUOTE] = ACTIONS(1449), + [sym_verbatim_string_literal] = ACTIONS(1447), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -91943,104 +91829,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(1299), - [sym_interpolation_verbatim_start] = ACTIONS(1301), - [sym_interpolation_raw_start] = ACTIONS(1303), - [sym_raw_string_start] = ACTIONS(1305), + [sym_interpolation_regular_start] = ACTIONS(1453), + [sym_interpolation_verbatim_start] = ACTIONS(1455), + [sym_interpolation_raw_start] = ACTIONS(1457), + [sym_raw_string_start] = ACTIONS(1459), }, [320] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(2885), - [sym_alias_qualified_name] = STATE(2373), - [sym__simple_name] = STATE(2345), - [sym_qualified_name] = STATE(2373), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(2508), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(2378), - [sym__array_base_type] = STATE(7103), - [sym_nullable_type] = STATE(2379), - [sym_pointer_type] = STATE(2379), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(2379), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(2380), - [sym_pattern] = STATE(4223), - [sym_constant_pattern] = STATE(4132), - [sym_parenthesized_pattern] = STATE(4132), - [sym_var_pattern] = STATE(4132), - [sym_type_pattern] = STATE(4132), - [sym_list_pattern] = STATE(4132), - [sym_recursive_pattern] = STATE(4132), - [sym_positional_pattern_clause] = STATE(2587), - [sym_property_pattern_clause] = STATE(2662), - [sym_relational_pattern] = STATE(4132), - [sym_negated_pattern] = STATE(4132), - [sym_and_pattern] = STATE(4132), - [sym_or_pattern] = STATE(4132), - [sym_declaration_pattern] = STATE(4132), - [sym_expression] = STATE(5684), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3520), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(4172), - [sym_postfix_unary_expression] = STATE(4148), - [sym_prefix_unary_expression] = STATE(4148), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6154), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(4172), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(4148), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(4172), - [sym_member_access_expression] = STATE(3069), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(4148), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7530), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(4172), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(4172), - [sym_typeof_expression] = STATE(4172), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(3069), - [sym_literal] = STATE(4172), - [sym_character_literal] = STATE(3011), - [sym_string_literal] = STATE(3011), - [sym_raw_string_literal] = STATE(3011), - [sym_boolean_literal] = STATE(3011), - [sym_identifier] = STATE(2186), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(5710), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2291), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5155), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_pattern] = STATE(6693), + [sym_constant_pattern] = STATE(3429), + [sym_parenthesized_pattern] = STATE(3429), + [sym_var_pattern] = STATE(3429), + [sym_type_pattern] = STATE(3429), + [sym_list_pattern] = STATE(3429), + [sym_recursive_pattern] = STATE(3429), + [sym_positional_pattern_clause] = STATE(5689), + [sym_property_pattern_clause] = STATE(5723), + [sym_relational_pattern] = STATE(3429), + [sym_negated_pattern] = STATE(3429), + [sym_and_pattern] = STATE(3429), + [sym_or_pattern] = STATE(3429), + [sym_declaration_pattern] = STATE(3429), + [sym_expression] = STATE(5656), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3510), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(5238), + [sym_postfix_unary_expression] = STATE(5239), + [sym_prefix_unary_expression] = STATE(5239), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6134), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(5238), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(5239), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(5238), + [sym_member_access_expression] = STATE(3431), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(5239), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7425), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(5238), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(5238), + [sym_typeof_expression] = STATE(5238), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(3431), + [sym_literal] = STATE(5238), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2242), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(320), [sym_preproc_endregion] = STATE(320), [sym_preproc_line] = STATE(320), @@ -92050,53 +91936,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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(2475), - [anon_sym_LPAREN] = ACTIONS(2477), - [anon_sym_ref] = ACTIONS(2369), - [anon_sym_LBRACE] = ACTIONS(2371), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_LPAREN] = ACTIONS(2425), + [anon_sym_ref] = ACTIONS(2427), + [anon_sym_LBRACE] = ACTIONS(2429), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1061), - [anon_sym_LT] = ACTIONS(2479), - [anon_sym_GT] = ACTIONS(2479), + [anon_sym_new] = ACTIONS(1059), + [anon_sym_LT] = ACTIONS(2431), + [anon_sym_GT] = ACTIONS(2431), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1067), - [anon_sym_BANG] = ACTIONS(1941), - [anon_sym_TILDE] = ACTIONS(1941), - [anon_sym_PLUS_PLUS] = ACTIONS(1941), - [anon_sym_DASH_DASH] = ACTIONS(1941), - [anon_sym_true] = ACTIONS(1259), - [anon_sym_false] = ACTIONS(1259), - [anon_sym_PLUS] = ACTIONS(1939), - [anon_sym_DASH] = ACTIONS(1939), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(1645), + [anon_sym_TILDE] = ACTIONS(1645), + [anon_sym_PLUS_PLUS] = ACTIONS(1645), + [anon_sym_DASH_DASH] = ACTIONS(1645), + [anon_sym_true] = ACTIONS(77), + [anon_sym_false] = ACTIONS(77), + [anon_sym_PLUS] = ACTIONS(1643), + [anon_sym_DASH] = ACTIONS(1643), [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(1941), - [anon_sym_AMP] = ACTIONS(1941), - [anon_sym_GT_EQ] = ACTIONS(2481), - [anon_sym_LT_EQ] = ACTIONS(2481), + [anon_sym_CARET] = ACTIONS(1645), + [anon_sym_AMP] = ACTIONS(1645), + [anon_sym_GT_EQ] = ACTIONS(2433), + [anon_sym_LT_EQ] = ACTIONS(2433), [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(2377), + [anon_sym_scoped] = ACTIONS(2435), [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(2483), - [sym_predefined_type] = ACTIONS(2485), - [anon_sym_unchecked] = ACTIONS(1067), + [anon_sym_var] = ACTIONS(2437), + [sym_predefined_type] = ACTIONS(91), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1269), - [anon_sym_throw] = ACTIONS(1589), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(1527), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1591), - [sym_discard] = ACTIONS(2487), + [anon_sym_await] = ACTIONS(1529), + [sym_discard] = ACTIONS(1081), [anon_sym_DOT_DOT] = ACTIONS(123), - [anon_sym_not] = ACTIONS(2489), + [anon_sym_not] = ACTIONS(2439), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -92110,18 +91996,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(1279), - [anon_sym_typeof] = ACTIONS(1281), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), [anon_sym___makeref] = ACTIONS(133), [anon_sym___reftype] = ACTIONS(135), [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(1289), - [anon_sym_SQUOTE] = ACTIONS(1291), - [sym_integer_literal] = ACTIONS(1289), - [sym_real_literal] = ACTIONS(1293), - [anon_sym_DQUOTE] = ACTIONS(1295), - [sym_verbatim_string_literal] = ACTIONS(1293), - [aux_sym_preproc_if_token1] = ACTIONS(1089), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_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), @@ -92132,104 +92018,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(1299), - [sym_interpolation_verbatim_start] = ACTIONS(1301), - [sym_interpolation_raw_start] = ACTIONS(1303), - [sym_raw_string_start] = ACTIONS(1305), + [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(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(2889), - [sym_alias_qualified_name] = STATE(2373), - [sym__simple_name] = STATE(2350), - [sym_qualified_name] = STATE(2373), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(2511), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(2378), - [sym__array_base_type] = STATE(7103), - [sym_nullable_type] = STATE(2379), - [sym_pointer_type] = STATE(2379), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(2379), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(2380), - [sym_pattern] = STATE(5223), - [sym_constant_pattern] = STATE(3295), - [sym_parenthesized_pattern] = STATE(3295), - [sym_var_pattern] = STATE(3295), - [sym_type_pattern] = STATE(3295), - [sym_list_pattern] = STATE(3295), - [sym_recursive_pattern] = STATE(3295), - [sym_positional_pattern_clause] = STATE(2592), - [sym_property_pattern_clause] = STATE(2792), - [sym_relational_pattern] = STATE(3295), - [sym_negated_pattern] = STATE(3295), - [sym_and_pattern] = STATE(3295), - [sym_or_pattern] = STATE(3295), - [sym_declaration_pattern] = STATE(3295), - [sym_expression] = STATE(5697), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3520), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3310), - [sym_postfix_unary_expression] = STATE(3312), - [sym_prefix_unary_expression] = STATE(3312), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6154), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3310), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3312), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3310), - [sym_member_access_expression] = STATE(2617), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3312), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7530), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(3310), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3310), - [sym_typeof_expression] = STATE(3310), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2617), - [sym_literal] = STATE(3310), - [sym_character_literal] = STATE(3278), - [sym_string_literal] = STATE(3278), - [sym_raw_string_literal] = STATE(3278), - [sym_boolean_literal] = STATE(3278), - [sym_identifier] = STATE(2186), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(2410), + [sym_alias_qualified_name] = STATE(2402), + [sym__simple_name] = STATE(2185), + [sym_qualified_name] = STATE(2402), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(2230), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(2373), + [sym__array_base_type] = STATE(7083), + [sym_nullable_type] = STATE(2375), + [sym_pointer_type] = STATE(2375), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(2375), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(2377), + [sym_pattern] = STATE(4108), + [sym_constant_pattern] = STATE(3311), + [sym_parenthesized_pattern] = STATE(3311), + [sym_var_pattern] = STATE(3311), + [sym_type_pattern] = STATE(3311), + [sym_list_pattern] = STATE(3311), + [sym_recursive_pattern] = STATE(3311), + [sym_positional_pattern_clause] = STATE(2257), + [sym_property_pattern_clause] = STATE(2289), + [sym_relational_pattern] = STATE(3311), + [sym_negated_pattern] = STATE(3311), + [sym_and_pattern] = STATE(3311), + [sym_or_pattern] = STATE(3311), + [sym_declaration_pattern] = STATE(3311), + [sym_expression] = STATE(5671), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3510), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3275), + [sym_postfix_unary_expression] = STATE(3276), + [sym_prefix_unary_expression] = STATE(3276), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6134), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3275), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3276), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3275), + [sym_member_access_expression] = STATE(2608), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3276), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7425), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(3275), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3275), + [sym_typeof_expression] = STATE(3275), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2608), + [sym_literal] = STATE(3275), + [sym_character_literal] = STATE(3272), + [sym_string_literal] = STATE(3272), + [sym_raw_string_literal] = STATE(3272), + [sym_boolean_literal] = STATE(3272), + [sym_identifier] = STATE(2178), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(321), [sym_preproc_endregion] = STATE(321), [sym_preproc_line] = STATE(321), @@ -92239,53 +92125,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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(2365), - [anon_sym_LPAREN] = ACTIONS(2491), - [anon_sym_ref] = ACTIONS(2369), - [anon_sym_LBRACE] = ACTIONS(2371), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(2357), + [anon_sym_LPAREN] = ACTIONS(2441), + [anon_sym_ref] = ACTIONS(2341), + [anon_sym_LBRACE] = ACTIONS(2343), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1061), - [anon_sym_LT] = ACTIONS(2493), - [anon_sym_GT] = ACTIONS(2493), + [anon_sym_new] = ACTIONS(1059), + [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(1067), - [anon_sym_BANG] = ACTIONS(1831), - [anon_sym_TILDE] = ACTIONS(1831), - [anon_sym_PLUS_PLUS] = ACTIONS(1831), - [anon_sym_DASH_DASH] = ACTIONS(1831), - [anon_sym_true] = ACTIONS(1173), - [anon_sym_false] = ACTIONS(1173), - [anon_sym_PLUS] = ACTIONS(1829), - [anon_sym_DASH] = ACTIONS(1829), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(1167), + [anon_sym_TILDE] = ACTIONS(1167), + [anon_sym_PLUS_PLUS] = ACTIONS(1167), + [anon_sym_DASH_DASH] = ACTIONS(1167), + [anon_sym_true] = ACTIONS(1169), + [anon_sym_false] = ACTIONS(1169), + [anon_sym_PLUS] = ACTIONS(1165), + [anon_sym_DASH] = ACTIONS(1165), [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(1831), - [anon_sym_AMP] = ACTIONS(1831), - [anon_sym_GT_EQ] = ACTIONS(2495), - [anon_sym_LT_EQ] = ACTIONS(2495), + [anon_sym_CARET] = ACTIONS(1167), + [anon_sym_AMP] = ACTIONS(1167), + [anon_sym_GT_EQ] = ACTIONS(2445), + [anon_sym_LT_EQ] = ACTIONS(2445), [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(2377), + [anon_sym_scoped] = ACTIONS(2349), [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(2379), - [sym_predefined_type] = ACTIONS(2381), - [anon_sym_unchecked] = ACTIONS(1067), + [anon_sym_var] = ACTIONS(2365), + [sym_predefined_type] = ACTIONS(2367), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1183), - [anon_sym_throw] = ACTIONS(1589), + [anon_sym_default] = ACTIONS(1179), + [anon_sym_throw] = ACTIONS(1527), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1591), - [sym_discard] = ACTIONS(2383), + [anon_sym_await] = ACTIONS(1529), + [sym_discard] = ACTIONS(2369), [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), @@ -92299,18 +92185,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(1193), - [anon_sym_typeof] = ACTIONS(1195), + [anon_sym_sizeof] = ACTIONS(1189), + [anon_sym_typeof] = ACTIONS(1191), [anon_sym___makeref] = ACTIONS(133), [anon_sym___reftype] = ACTIONS(135), [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(1203), - [anon_sym_SQUOTE] = ACTIONS(1205), - [sym_integer_literal] = ACTIONS(1203), - [sym_real_literal] = ACTIONS(1207), - [anon_sym_DQUOTE] = ACTIONS(1209), - [sym_verbatim_string_literal] = ACTIONS(1207), - [aux_sym_preproc_if_token1] = ACTIONS(1089), + [sym_null_literal] = ACTIONS(1199), + [anon_sym_SQUOTE] = ACTIONS(1201), + [sym_integer_literal] = ACTIONS(1199), + [sym_real_literal] = ACTIONS(1203), + [anon_sym_DQUOTE] = ACTIONS(1205), + [sym_verbatim_string_literal] = ACTIONS(1203), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -92321,104 +92207,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(1213), - [sym_interpolation_verbatim_start] = ACTIONS(1215), - [sym_interpolation_raw_start] = ACTIONS(1217), - [sym_raw_string_start] = ACTIONS(1219), + [sym_interpolation_regular_start] = ACTIONS(1209), + [sym_interpolation_verbatim_start] = ACTIONS(1211), + [sym_interpolation_raw_start] = ACTIONS(1213), + [sym_raw_string_start] = ACTIONS(1215), }, [322] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(2889), - [sym_alias_qualified_name] = STATE(2373), - [sym__simple_name] = STATE(2350), - [sym_qualified_name] = STATE(2373), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(2511), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(2378), - [sym__array_base_type] = STATE(7103), - [sym_nullable_type] = STATE(2379), - [sym_pointer_type] = STATE(2379), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(2379), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(2380), - [sym_pattern] = STATE(3236), - [sym_constant_pattern] = STATE(3295), - [sym_parenthesized_pattern] = STATE(3295), - [sym_var_pattern] = STATE(3295), - [sym_type_pattern] = STATE(3295), - [sym_list_pattern] = STATE(3295), - [sym_recursive_pattern] = STATE(3295), - [sym_positional_pattern_clause] = STATE(2592), - [sym_property_pattern_clause] = STATE(2792), - [sym_relational_pattern] = STATE(3295), - [sym_negated_pattern] = STATE(3295), - [sym_and_pattern] = STATE(3295), - [sym_or_pattern] = STATE(3295), - [sym_declaration_pattern] = STATE(3295), - [sym_expression] = STATE(5697), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3520), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3310), - [sym_postfix_unary_expression] = STATE(3312), - [sym_prefix_unary_expression] = STATE(3312), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6154), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3310), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3312), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3310), - [sym_member_access_expression] = STATE(2617), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3312), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7530), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(3310), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3310), - [sym_typeof_expression] = STATE(3310), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2617), - [sym_literal] = STATE(3310), - [sym_character_literal] = STATE(3278), - [sym_string_literal] = STATE(3278), - [sym_raw_string_literal] = STATE(3278), - [sym_boolean_literal] = STATE(3278), - [sym_identifier] = STATE(2186), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(2886), + [sym_alias_qualified_name] = STATE(2402), + [sym__simple_name] = STATE(2336), + [sym_qualified_name] = STATE(2402), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(2510), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(2373), + [sym__array_base_type] = STATE(7083), + [sym_nullable_type] = STATE(2375), + [sym_pointer_type] = STATE(2375), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(2375), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(2377), + [sym_pattern] = STATE(4201), + [sym_constant_pattern] = STATE(4146), + [sym_parenthesized_pattern] = STATE(4146), + [sym_var_pattern] = STATE(4146), + [sym_type_pattern] = STATE(4146), + [sym_list_pattern] = STATE(4146), + [sym_recursive_pattern] = STATE(4146), + [sym_positional_pattern_clause] = STATE(2580), + [sym_property_pattern_clause] = STATE(2769), + [sym_relational_pattern] = STATE(4146), + [sym_negated_pattern] = STATE(4146), + [sym_and_pattern] = STATE(4146), + [sym_or_pattern] = STATE(4146), + [sym_declaration_pattern] = STATE(4146), + [sym_expression] = STATE(5684), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3510), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(4128), + [sym_postfix_unary_expression] = STATE(4129), + [sym_prefix_unary_expression] = STATE(4129), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6134), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(4128), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(4129), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(4128), + [sym_member_access_expression] = STATE(3066), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(4129), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7425), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(4128), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(4128), + [sym_typeof_expression] = STATE(4128), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(3066), + [sym_literal] = STATE(4128), + [sym_character_literal] = STATE(3037), + [sym_string_literal] = STATE(3037), + [sym_raw_string_literal] = STATE(3037), + [sym_boolean_literal] = STATE(3037), + [sym_identifier] = STATE(2178), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(322), [sym_preproc_endregion] = STATE(322), [sym_preproc_line] = STATE(322), @@ -92428,53 +92314,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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(2365), - [anon_sym_LPAREN] = ACTIONS(2491), - [anon_sym_ref] = ACTIONS(2369), - [anon_sym_LBRACE] = ACTIONS(2371), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(2449), + [anon_sym_LPAREN] = ACTIONS(2451), + [anon_sym_ref] = ACTIONS(2341), + [anon_sym_LBRACE] = ACTIONS(2343), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1061), - [anon_sym_LT] = ACTIONS(2493), - [anon_sym_GT] = ACTIONS(2493), + [anon_sym_new] = ACTIONS(1059), + [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(1067), - [anon_sym_BANG] = ACTIONS(1831), - [anon_sym_TILDE] = ACTIONS(1831), - [anon_sym_PLUS_PLUS] = ACTIONS(1831), - [anon_sym_DASH_DASH] = ACTIONS(1831), - [anon_sym_true] = ACTIONS(1173), - [anon_sym_false] = ACTIONS(1173), - [anon_sym_PLUS] = ACTIONS(1829), - [anon_sym_DASH] = ACTIONS(1829), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(1903), + [anon_sym_TILDE] = ACTIONS(1903), + [anon_sym_PLUS_PLUS] = ACTIONS(1903), + [anon_sym_DASH_DASH] = ACTIONS(1903), + [anon_sym_true] = ACTIONS(1257), + [anon_sym_false] = ACTIONS(1257), + [anon_sym_PLUS] = ACTIONS(1901), + [anon_sym_DASH] = ACTIONS(1901), [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(1831), - [anon_sym_AMP] = ACTIONS(1831), - [anon_sym_GT_EQ] = ACTIONS(2495), - [anon_sym_LT_EQ] = ACTIONS(2495), + [anon_sym_CARET] = ACTIONS(1903), + [anon_sym_AMP] = ACTIONS(1903), + [anon_sym_GT_EQ] = ACTIONS(2455), + [anon_sym_LT_EQ] = ACTIONS(2455), [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(2377), + [anon_sym_scoped] = ACTIONS(2349), [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(2379), - [sym_predefined_type] = ACTIONS(2381), - [anon_sym_unchecked] = ACTIONS(1067), + [anon_sym_var] = ACTIONS(2457), + [sym_predefined_type] = ACTIONS(2459), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1183), - [anon_sym_throw] = ACTIONS(1589), + [anon_sym_default] = ACTIONS(1267), + [anon_sym_throw] = ACTIONS(1527), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1591), - [sym_discard] = ACTIONS(2383), + [anon_sym_await] = ACTIONS(1529), + [sym_discard] = ACTIONS(2461), [anon_sym_DOT_DOT] = ACTIONS(123), - [anon_sym_not] = ACTIONS(2497), + [anon_sym_not] = ACTIONS(2463), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -92488,18 +92374,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(1193), - [anon_sym_typeof] = ACTIONS(1195), + [anon_sym_sizeof] = ACTIONS(1277), + [anon_sym_typeof] = ACTIONS(1279), [anon_sym___makeref] = ACTIONS(133), [anon_sym___reftype] = ACTIONS(135), [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(1203), - [anon_sym_SQUOTE] = ACTIONS(1205), - [sym_integer_literal] = ACTIONS(1203), - [sym_real_literal] = ACTIONS(1207), - [anon_sym_DQUOTE] = ACTIONS(1209), - [sym_verbatim_string_literal] = ACTIONS(1207), - [aux_sym_preproc_if_token1] = ACTIONS(1089), + [sym_null_literal] = ACTIONS(1287), + [anon_sym_SQUOTE] = ACTIONS(1289), + [sym_integer_literal] = ACTIONS(1287), + [sym_real_literal] = ACTIONS(1291), + [anon_sym_DQUOTE] = ACTIONS(1293), + [sym_verbatim_string_literal] = ACTIONS(1291), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -92510,104 +92396,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(1213), - [sym_interpolation_verbatim_start] = ACTIONS(1215), - [sym_interpolation_raw_start] = ACTIONS(1217), - [sym_raw_string_start] = ACTIONS(1219), + [sym_interpolation_regular_start] = ACTIONS(1297), + [sym_interpolation_verbatim_start] = ACTIONS(1299), + [sym_interpolation_raw_start] = ACTIONS(1301), + [sym_raw_string_start] = ACTIONS(1303), }, [323] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(2889), - [sym_alias_qualified_name] = STATE(2373), - [sym__simple_name] = STATE(2350), - [sym_qualified_name] = STATE(2373), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(2511), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(2378), - [sym__array_base_type] = STATE(7103), - [sym_nullable_type] = STATE(2379), - [sym_pointer_type] = STATE(2379), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(2379), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(2380), - [sym_pattern] = STATE(5228), - [sym_constant_pattern] = STATE(3295), - [sym_parenthesized_pattern] = STATE(3295), - [sym_var_pattern] = STATE(3295), - [sym_type_pattern] = STATE(3295), - [sym_list_pattern] = STATE(3295), - [sym_recursive_pattern] = STATE(3295), - [sym_positional_pattern_clause] = STATE(2592), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(2864), + [sym_alias_qualified_name] = STATE(2402), + [sym__simple_name] = STATE(2327), + [sym_qualified_name] = STATE(2402), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(2489), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(2373), + [sym__array_base_type] = STATE(7083), + [sym_nullable_type] = STATE(2375), + [sym_pointer_type] = STATE(2375), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(2375), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(2377), + [sym_pattern] = STATE(5231), + [sym_constant_pattern] = STATE(3311), + [sym_parenthesized_pattern] = STATE(3311), + [sym_var_pattern] = STATE(3311), + [sym_type_pattern] = STATE(3311), + [sym_list_pattern] = STATE(3311), + [sym_recursive_pattern] = STATE(3311), + [sym_positional_pattern_clause] = STATE(2585), [sym_property_pattern_clause] = STATE(2792), - [sym_relational_pattern] = STATE(3295), - [sym_negated_pattern] = STATE(3295), - [sym_and_pattern] = STATE(3295), - [sym_or_pattern] = STATE(3295), - [sym_declaration_pattern] = STATE(3295), - [sym_expression] = STATE(5697), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3520), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3310), - [sym_postfix_unary_expression] = STATE(3312), - [sym_prefix_unary_expression] = STATE(3312), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6154), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3310), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3312), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3310), - [sym_member_access_expression] = STATE(2617), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3312), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7530), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(3310), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3310), - [sym_typeof_expression] = STATE(3310), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2617), - [sym_literal] = STATE(3310), - [sym_character_literal] = STATE(3278), - [sym_string_literal] = STATE(3278), - [sym_raw_string_literal] = STATE(3278), - [sym_boolean_literal] = STATE(3278), - [sym_identifier] = STATE(2186), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_relational_pattern] = STATE(3311), + [sym_negated_pattern] = STATE(3311), + [sym_and_pattern] = STATE(3311), + [sym_or_pattern] = STATE(3311), + [sym_declaration_pattern] = STATE(3311), + [sym_expression] = STATE(5680), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3510), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3275), + [sym_postfix_unary_expression] = STATE(3276), + [sym_prefix_unary_expression] = STATE(3276), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6134), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3275), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3276), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3275), + [sym_member_access_expression] = STATE(2608), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3276), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7425), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(3275), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3275), + [sym_typeof_expression] = STATE(3275), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2608), + [sym_literal] = STATE(3275), + [sym_character_literal] = STATE(3272), + [sym_string_literal] = STATE(3272), + [sym_raw_string_literal] = STATE(3272), + [sym_boolean_literal] = STATE(3272), + [sym_identifier] = STATE(2178), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(323), [sym_preproc_endregion] = STATE(323), [sym_preproc_line] = STATE(323), @@ -92617,53 +92503,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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(2365), - [anon_sym_LPAREN] = ACTIONS(2491), - [anon_sym_ref] = ACTIONS(2369), - [anon_sym_LBRACE] = ACTIONS(2371), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(2357), + [anon_sym_LPAREN] = ACTIONS(2465), + [anon_sym_ref] = ACTIONS(2341), + [anon_sym_LBRACE] = ACTIONS(2343), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1061), - [anon_sym_LT] = ACTIONS(2493), - [anon_sym_GT] = ACTIONS(2493), + [anon_sym_new] = ACTIONS(1059), + [anon_sym_LT] = ACTIONS(2467), + [anon_sym_GT] = ACTIONS(2467), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1067), - [anon_sym_BANG] = ACTIONS(1831), - [anon_sym_TILDE] = ACTIONS(1831), - [anon_sym_PLUS_PLUS] = ACTIONS(1831), - [anon_sym_DASH_DASH] = ACTIONS(1831), - [anon_sym_true] = ACTIONS(1173), - [anon_sym_false] = ACTIONS(1173), - [anon_sym_PLUS] = ACTIONS(1829), - [anon_sym_DASH] = ACTIONS(1829), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(1865), + [anon_sym_TILDE] = ACTIONS(1865), + [anon_sym_PLUS_PLUS] = ACTIONS(1865), + [anon_sym_DASH_DASH] = ACTIONS(1865), + [anon_sym_true] = ACTIONS(1169), + [anon_sym_false] = ACTIONS(1169), + [anon_sym_PLUS] = ACTIONS(1863), + [anon_sym_DASH] = ACTIONS(1863), [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(1831), - [anon_sym_AMP] = ACTIONS(1831), - [anon_sym_GT_EQ] = ACTIONS(2495), - [anon_sym_LT_EQ] = ACTIONS(2495), + [anon_sym_CARET] = ACTIONS(1865), + [anon_sym_AMP] = ACTIONS(1865), + [anon_sym_GT_EQ] = ACTIONS(2469), + [anon_sym_LT_EQ] = ACTIONS(2469), [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(2377), + [anon_sym_scoped] = ACTIONS(2349), [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(2379), - [sym_predefined_type] = ACTIONS(2381), - [anon_sym_unchecked] = ACTIONS(1067), + [anon_sym_var] = ACTIONS(2365), + [sym_predefined_type] = ACTIONS(2367), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1183), - [anon_sym_throw] = ACTIONS(1589), + [anon_sym_default] = ACTIONS(1179), + [anon_sym_throw] = ACTIONS(1527), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1591), - [sym_discard] = ACTIONS(2383), + [anon_sym_await] = ACTIONS(1529), + [sym_discard] = ACTIONS(2369), [anon_sym_DOT_DOT] = ACTIONS(123), - [anon_sym_not] = ACTIONS(2497), + [anon_sym_not] = ACTIONS(2471), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -92677,18 +92563,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(1193), - [anon_sym_typeof] = ACTIONS(1195), + [anon_sym_sizeof] = ACTIONS(1189), + [anon_sym_typeof] = ACTIONS(1191), [anon_sym___makeref] = ACTIONS(133), [anon_sym___reftype] = ACTIONS(135), [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(1203), - [anon_sym_SQUOTE] = ACTIONS(1205), - [sym_integer_literal] = ACTIONS(1203), - [sym_real_literal] = ACTIONS(1207), - [anon_sym_DQUOTE] = ACTIONS(1209), - [sym_verbatim_string_literal] = ACTIONS(1207), - [aux_sym_preproc_if_token1] = ACTIONS(1089), + [sym_null_literal] = ACTIONS(1199), + [anon_sym_SQUOTE] = ACTIONS(1201), + [sym_integer_literal] = ACTIONS(1199), + [sym_real_literal] = ACTIONS(1203), + [anon_sym_DQUOTE] = ACTIONS(1205), + [sym_verbatim_string_literal] = ACTIONS(1203), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -92699,104 +92585,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(1213), - [sym_interpolation_verbatim_start] = ACTIONS(1215), - [sym_interpolation_raw_start] = ACTIONS(1217), - [sym_raw_string_start] = ACTIONS(1219), + [sym_interpolation_regular_start] = ACTIONS(1209), + [sym_interpolation_verbatim_start] = ACTIONS(1211), + [sym_interpolation_raw_start] = ACTIONS(1213), + [sym_raw_string_start] = ACTIONS(1215), }, [324] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(5160), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2230), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(4363), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_pattern] = STATE(6674), - [sym_constant_pattern] = STATE(3486), - [sym_parenthesized_pattern] = STATE(3486), - [sym_var_pattern] = STATE(3486), - [sym_type_pattern] = STATE(3486), - [sym_list_pattern] = STATE(3486), - [sym_recursive_pattern] = STATE(3486), - [sym_positional_pattern_clause] = STATE(5175), - [sym_property_pattern_clause] = STATE(5675), - [sym_relational_pattern] = STATE(3486), - [sym_negated_pattern] = STATE(3486), - [sym_and_pattern] = STATE(3486), - [sym_or_pattern] = STATE(3486), - [sym_declaration_pattern] = STATE(3486), - [sym_expression] = STATE(5679), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3520), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(4419), - [sym_postfix_unary_expression] = STATE(4420), - [sym_prefix_unary_expression] = STATE(4420), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6154), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(4419), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(4420), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(4419), - [sym_member_access_expression] = STATE(3135), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(4420), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7530), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(4419), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(4419), - [sym_typeof_expression] = STATE(4419), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(3135), - [sym_literal] = STATE(4419), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(2864), + [sym_alias_qualified_name] = STATE(2402), + [sym__simple_name] = STATE(2327), + [sym_qualified_name] = STATE(2402), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(2489), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(2373), + [sym__array_base_type] = STATE(7083), + [sym_nullable_type] = STATE(2375), + [sym_pointer_type] = STATE(2375), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(2375), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(2377), + [sym_pattern] = STATE(3260), + [sym_constant_pattern] = STATE(3311), + [sym_parenthesized_pattern] = STATE(3311), + [sym_var_pattern] = STATE(3311), + [sym_type_pattern] = STATE(3311), + [sym_list_pattern] = STATE(3311), + [sym_recursive_pattern] = STATE(3311), + [sym_positional_pattern_clause] = STATE(2585), + [sym_property_pattern_clause] = STATE(2792), + [sym_relational_pattern] = STATE(3311), + [sym_negated_pattern] = STATE(3311), + [sym_and_pattern] = STATE(3311), + [sym_or_pattern] = STATE(3311), + [sym_declaration_pattern] = STATE(3311), + [sym_expression] = STATE(5680), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3510), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3275), + [sym_postfix_unary_expression] = STATE(3276), + [sym_prefix_unary_expression] = STATE(3276), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6134), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3275), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3276), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3275), + [sym_member_access_expression] = STATE(2608), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3276), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7425), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(3275), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3275), + [sym_typeof_expression] = STATE(3275), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2608), + [sym_literal] = STATE(3275), + [sym_character_literal] = STATE(3272), + [sym_string_literal] = STATE(3272), + [sym_raw_string_literal] = STATE(3272), + [sym_boolean_literal] = STATE(3272), + [sym_identifier] = STATE(2178), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(324), [sym_preproc_endregion] = STATE(324), [sym_preproc_line] = STATE(324), @@ -92806,53 +92692,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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1049), - [anon_sym_LPAREN] = ACTIONS(1053), - [anon_sym_ref] = ACTIONS(2303), - [anon_sym_LBRACE] = ACTIONS(1059), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(2357), + [anon_sym_LPAREN] = ACTIONS(2465), + [anon_sym_ref] = ACTIONS(2341), + [anon_sym_LBRACE] = ACTIONS(2343), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1061), - [anon_sym_LT] = ACTIONS(1063), - [anon_sym_GT] = ACTIONS(1063), + [anon_sym_new] = ACTIONS(1059), + [anon_sym_LT] = ACTIONS(2467), + [anon_sym_GT] = ACTIONS(2467), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1067), - [anon_sym_BANG] = ACTIONS(1069), - [anon_sym_TILDE] = ACTIONS(1069), - [anon_sym_PLUS_PLUS] = ACTIONS(1069), - [anon_sym_DASH_DASH] = ACTIONS(1069), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1071), - [anon_sym_DASH] = ACTIONS(1071), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(1865), + [anon_sym_TILDE] = ACTIONS(1865), + [anon_sym_PLUS_PLUS] = ACTIONS(1865), + [anon_sym_DASH_DASH] = ACTIONS(1865), + [anon_sym_true] = ACTIONS(1169), + [anon_sym_false] = ACTIONS(1169), + [anon_sym_PLUS] = ACTIONS(1863), + [anon_sym_DASH] = ACTIONS(1863), [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(1069), - [anon_sym_AMP] = ACTIONS(1069), - [anon_sym_GT_EQ] = ACTIONS(1073), - [anon_sym_LT_EQ] = ACTIONS(1073), + [anon_sym_CARET] = ACTIONS(1865), + [anon_sym_AMP] = ACTIONS(1865), + [anon_sym_GT_EQ] = ACTIONS(2469), + [anon_sym_LT_EQ] = ACTIONS(2469), [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(1075), + [anon_sym_scoped] = ACTIONS(2349), [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(1077), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1067), + [anon_sym_var] = ACTIONS(2365), + [sym_predefined_type] = ACTIONS(2367), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1589), + [anon_sym_default] = ACTIONS(1179), + [anon_sym_throw] = ACTIONS(1527), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1591), - [sym_discard] = ACTIONS(1083), + [anon_sym_await] = ACTIONS(1529), + [sym_discard] = ACTIONS(2369), [anon_sym_DOT_DOT] = ACTIONS(123), - [anon_sym_not] = ACTIONS(1087), + [anon_sym_not] = ACTIONS(2471), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -92866,18 +92752,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(129), - [anon_sym_typeof] = ACTIONS(131), + [anon_sym_sizeof] = ACTIONS(1189), + [anon_sym_typeof] = ACTIONS(1191), [anon_sym___makeref] = ACTIONS(133), [anon_sym___reftype] = ACTIONS(135), [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1089), + [sym_null_literal] = ACTIONS(1199), + [anon_sym_SQUOTE] = ACTIONS(1201), + [sym_integer_literal] = ACTIONS(1199), + [sym_real_literal] = ACTIONS(1203), + [anon_sym_DQUOTE] = ACTIONS(1205), + [sym_verbatim_string_literal] = ACTIONS(1203), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -92888,104 +92774,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(1209), + [sym_interpolation_verbatim_start] = ACTIONS(1211), + [sym_interpolation_raw_start] = ACTIONS(1213), + [sym_raw_string_start] = ACTIONS(1215), }, [325] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(2870), - [sym_alias_qualified_name] = STATE(2373), - [sym__simple_name] = STATE(2296), - [sym_qualified_name] = STATE(2373), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(2470), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(2378), - [sym__array_base_type] = STATE(7103), - [sym_nullable_type] = STATE(2379), - [sym_pointer_type] = STATE(2379), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(2379), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(2380), - [sym_pattern] = STATE(4042), - [sym_constant_pattern] = STATE(3774), - [sym_parenthesized_pattern] = STATE(3774), - [sym_var_pattern] = STATE(3774), - [sym_type_pattern] = STATE(3774), - [sym_list_pattern] = STATE(3774), - [sym_recursive_pattern] = STATE(3774), - [sym_positional_pattern_clause] = STATE(2553), - [sym_property_pattern_clause] = STATE(2604), - [sym_relational_pattern] = STATE(3774), - [sym_negated_pattern] = STATE(3774), - [sym_and_pattern] = STATE(3774), - [sym_or_pattern] = STATE(3774), - [sym_declaration_pattern] = STATE(3774), - [sym_expression] = STATE(5666), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3520), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3803), - [sym_postfix_unary_expression] = STATE(3804), - [sym_prefix_unary_expression] = STATE(3804), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6154), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3803), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3804), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3803), - [sym_member_access_expression] = STATE(2917), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3804), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7530), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(3803), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3803), - [sym_typeof_expression] = STATE(3803), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2917), - [sym_literal] = STATE(3803), - [sym_character_literal] = STATE(3877), - [sym_string_literal] = STATE(3877), - [sym_raw_string_literal] = STATE(3877), - [sym_boolean_literal] = STATE(3877), - [sym_identifier] = STATE(2186), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(2864), + [sym_alias_qualified_name] = STATE(2402), + [sym__simple_name] = STATE(2327), + [sym_qualified_name] = STATE(2402), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(2489), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(2373), + [sym__array_base_type] = STATE(7083), + [sym_nullable_type] = STATE(2375), + [sym_pointer_type] = STATE(2375), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(2375), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(2377), + [sym_pattern] = STATE(5138), + [sym_constant_pattern] = STATE(3311), + [sym_parenthesized_pattern] = STATE(3311), + [sym_var_pattern] = STATE(3311), + [sym_type_pattern] = STATE(3311), + [sym_list_pattern] = STATE(3311), + [sym_recursive_pattern] = STATE(3311), + [sym_positional_pattern_clause] = STATE(2585), + [sym_property_pattern_clause] = STATE(2792), + [sym_relational_pattern] = STATE(3311), + [sym_negated_pattern] = STATE(3311), + [sym_and_pattern] = STATE(3311), + [sym_or_pattern] = STATE(3311), + [sym_declaration_pattern] = STATE(3311), + [sym_expression] = STATE(5680), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3510), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3275), + [sym_postfix_unary_expression] = STATE(3276), + [sym_prefix_unary_expression] = STATE(3276), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6134), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3275), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3276), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3275), + [sym_member_access_expression] = STATE(2608), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3276), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7425), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(3275), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3275), + [sym_typeof_expression] = STATE(3275), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2608), + [sym_literal] = STATE(3275), + [sym_character_literal] = STATE(3272), + [sym_string_literal] = STATE(3272), + [sym_raw_string_literal] = STATE(3272), + [sym_boolean_literal] = STATE(3272), + [sym_identifier] = STATE(2178), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(325), [sym_preproc_endregion] = STATE(325), [sym_preproc_line] = STATE(325), @@ -92995,53 +92881,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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(2415), - [anon_sym_LPAREN] = ACTIONS(2417), - [anon_sym_ref] = ACTIONS(2369), - [anon_sym_LBRACE] = ACTIONS(2371), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(2357), + [anon_sym_LPAREN] = ACTIONS(2465), + [anon_sym_ref] = ACTIONS(2341), + [anon_sym_LBRACE] = ACTIONS(2343), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1061), - [anon_sym_LT] = ACTIONS(2419), - [anon_sym_GT] = ACTIONS(2419), + [anon_sym_new] = ACTIONS(1059), + [anon_sym_LT] = ACTIONS(2467), + [anon_sym_GT] = ACTIONS(2467), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1067), - [anon_sym_BANG] = ACTIONS(1643), - [anon_sym_TILDE] = ACTIONS(1643), - [anon_sym_PLUS_PLUS] = ACTIONS(1643), - [anon_sym_DASH_DASH] = ACTIONS(1643), - [anon_sym_true] = ACTIONS(1645), - [anon_sym_false] = ACTIONS(1645), - [anon_sym_PLUS] = ACTIONS(1641), - [anon_sym_DASH] = ACTIONS(1641), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(1865), + [anon_sym_TILDE] = ACTIONS(1865), + [anon_sym_PLUS_PLUS] = ACTIONS(1865), + [anon_sym_DASH_DASH] = ACTIONS(1865), + [anon_sym_true] = ACTIONS(1169), + [anon_sym_false] = ACTIONS(1169), + [anon_sym_PLUS] = ACTIONS(1863), + [anon_sym_DASH] = ACTIONS(1863), [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(1643), - [anon_sym_AMP] = ACTIONS(1643), - [anon_sym_GT_EQ] = ACTIONS(2421), - [anon_sym_LT_EQ] = ACTIONS(2421), + [anon_sym_CARET] = ACTIONS(1865), + [anon_sym_AMP] = ACTIONS(1865), + [anon_sym_GT_EQ] = ACTIONS(2469), + [anon_sym_LT_EQ] = ACTIONS(2469), [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(2377), + [anon_sym_scoped] = ACTIONS(2349), [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(2423), - [sym_predefined_type] = ACTIONS(2425), - [anon_sym_unchecked] = ACTIONS(1067), + [anon_sym_var] = ACTIONS(2365), + [sym_predefined_type] = ACTIONS(2367), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1655), - [anon_sym_throw] = ACTIONS(1589), + [anon_sym_default] = ACTIONS(1179), + [anon_sym_throw] = ACTIONS(1527), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1591), - [sym_discard] = ACTIONS(2427), + [anon_sym_await] = ACTIONS(1529), + [sym_discard] = ACTIONS(2369), [anon_sym_DOT_DOT] = ACTIONS(123), - [anon_sym_not] = ACTIONS(2429), + [anon_sym_not] = ACTIONS(2471), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -93055,18 +92941,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(1665), - [anon_sym_typeof] = ACTIONS(1667), + [anon_sym_sizeof] = ACTIONS(1189), + [anon_sym_typeof] = ACTIONS(1191), [anon_sym___makeref] = ACTIONS(133), [anon_sym___reftype] = ACTIONS(135), [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(1675), - [anon_sym_SQUOTE] = ACTIONS(1677), - [sym_integer_literal] = ACTIONS(1675), - [sym_real_literal] = ACTIONS(1679), - [anon_sym_DQUOTE] = ACTIONS(1681), - [sym_verbatim_string_literal] = ACTIONS(1679), - [aux_sym_preproc_if_token1] = ACTIONS(1089), + [sym_null_literal] = ACTIONS(1199), + [anon_sym_SQUOTE] = ACTIONS(1201), + [sym_integer_literal] = ACTIONS(1199), + [sym_real_literal] = ACTIONS(1203), + [anon_sym_DQUOTE] = ACTIONS(1205), + [sym_verbatim_string_literal] = ACTIONS(1203), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -93077,104 +92963,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(1685), - [sym_interpolation_verbatim_start] = ACTIONS(1687), - [sym_interpolation_raw_start] = ACTIONS(1689), - [sym_raw_string_start] = ACTIONS(1691), + [sym_interpolation_regular_start] = ACTIONS(1209), + [sym_interpolation_verbatim_start] = ACTIONS(1211), + [sym_interpolation_raw_start] = ACTIONS(1213), + [sym_raw_string_start] = ACTIONS(1215), }, [326] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(2881), - [sym_alias_qualified_name] = STATE(2373), - [sym__simple_name] = STATE(2324), - [sym_qualified_name] = STATE(2373), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(2507), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(2378), - [sym__array_base_type] = STATE(7103), - [sym_nullable_type] = STATE(2379), - [sym_pointer_type] = STATE(2379), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(2379), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(2380), - [sym_pattern] = STATE(5258), - [sym_constant_pattern] = STATE(3295), - [sym_parenthesized_pattern] = STATE(3295), - [sym_var_pattern] = STATE(3295), - [sym_type_pattern] = STATE(3295), - [sym_list_pattern] = STATE(3295), - [sym_recursive_pattern] = STATE(3295), - [sym_positional_pattern_clause] = STATE(2576), - [sym_property_pattern_clause] = STATE(2773), - [sym_relational_pattern] = STATE(3295), - [sym_negated_pattern] = STATE(3295), - [sym_and_pattern] = STATE(3295), - [sym_or_pattern] = STATE(3295), - [sym_declaration_pattern] = STATE(3295), - [sym_expression] = STATE(5689), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3520), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3310), - [sym_postfix_unary_expression] = STATE(3312), - [sym_prefix_unary_expression] = STATE(3312), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6154), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3310), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3312), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3310), - [sym_member_access_expression] = STATE(2617), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3312), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7530), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(3310), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3310), - [sym_typeof_expression] = STATE(3310), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2617), - [sym_literal] = STATE(3310), - [sym_character_literal] = STATE(3278), - [sym_string_literal] = STATE(3278), - [sym_raw_string_literal] = STATE(3278), - [sym_boolean_literal] = STATE(3278), - [sym_identifier] = STATE(2186), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(5152), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2225), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(4472), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_pattern] = STATE(6664), + [sym_constant_pattern] = STATE(3429), + [sym_parenthesized_pattern] = STATE(3429), + [sym_var_pattern] = STATE(3429), + [sym_type_pattern] = STATE(3429), + [sym_list_pattern] = STATE(3429), + [sym_recursive_pattern] = STATE(3429), + [sym_positional_pattern_clause] = STATE(5135), + [sym_property_pattern_clause] = STATE(5666), + [sym_relational_pattern] = STATE(3429), + [sym_negated_pattern] = STATE(3429), + [sym_and_pattern] = STATE(3429), + [sym_or_pattern] = STATE(3429), + [sym_declaration_pattern] = STATE(3429), + [sym_expression] = STATE(5682), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3510), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(4418), + [sym_postfix_unary_expression] = STATE(4403), + [sym_prefix_unary_expression] = STATE(4403), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6134), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(4418), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(4403), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(4418), + [sym_member_access_expression] = STATE(3127), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(4403), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7425), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(4418), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(4418), + [sym_typeof_expression] = STATE(4418), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(3127), + [sym_literal] = STATE(4418), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(326), [sym_preproc_endregion] = STATE(326), [sym_preproc_line] = STATE(326), @@ -93184,53 +93070,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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(2365), - [anon_sym_LPAREN] = ACTIONS(2459), - [anon_sym_ref] = ACTIONS(2369), - [anon_sym_LBRACE] = ACTIONS(2371), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_LPAREN] = ACTIONS(1051), + [anon_sym_ref] = ACTIONS(2305), + [anon_sym_LBRACE] = ACTIONS(1057), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1061), - [anon_sym_LT] = ACTIONS(2461), - [anon_sym_GT] = ACTIONS(2461), + [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(1067), - [anon_sym_BANG] = ACTIONS(1867), - [anon_sym_TILDE] = ACTIONS(1867), - [anon_sym_PLUS_PLUS] = ACTIONS(1867), - [anon_sym_DASH_DASH] = ACTIONS(1867), - [anon_sym_true] = ACTIONS(1173), - [anon_sym_false] = ACTIONS(1173), - [anon_sym_PLUS] = ACTIONS(1865), - [anon_sym_DASH] = ACTIONS(1865), + [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_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(1867), - [anon_sym_AMP] = ACTIONS(1867), - [anon_sym_GT_EQ] = ACTIONS(2463), - [anon_sym_LT_EQ] = ACTIONS(2463), + [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(2377), + [anon_sym_scoped] = ACTIONS(1073), [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(2379), - [sym_predefined_type] = ACTIONS(2381), - [anon_sym_unchecked] = ACTIONS(1067), + [anon_sym_var] = ACTIONS(1075), + [sym_predefined_type] = ACTIONS(91), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1183), - [anon_sym_throw] = ACTIONS(1589), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(1527), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1591), - [sym_discard] = ACTIONS(2383), + [anon_sym_await] = ACTIONS(1529), + [sym_discard] = ACTIONS(1081), [anon_sym_DOT_DOT] = ACTIONS(123), - [anon_sym_not] = ACTIONS(2465), + [anon_sym_not] = ACTIONS(1085), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -93244,18 +93130,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(1193), - [anon_sym_typeof] = ACTIONS(1195), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), [anon_sym___makeref] = ACTIONS(133), [anon_sym___reftype] = ACTIONS(135), [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(1203), - [anon_sym_SQUOTE] = ACTIONS(1205), - [sym_integer_literal] = ACTIONS(1203), - [sym_real_literal] = ACTIONS(1207), - [anon_sym_DQUOTE] = ACTIONS(1209), - [sym_verbatim_string_literal] = ACTIONS(1207), - [aux_sym_preproc_if_token1] = ACTIONS(1089), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_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), @@ -93266,104 +93152,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(1213), - [sym_interpolation_verbatim_start] = ACTIONS(1215), - [sym_interpolation_raw_start] = ACTIONS(1217), - [sym_raw_string_start] = ACTIONS(1219), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [sym_interpolation_raw_start] = ACTIONS(155), + [sym_raw_string_start] = ACTIONS(157), }, [327] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(2866), - [sym_alias_qualified_name] = STATE(2373), - [sym__simple_name] = STATE(2277), - [sym_qualified_name] = STATE(2373), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(2486), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(2378), - [sym__array_base_type] = STATE(7103), - [sym_nullable_type] = STATE(2379), - [sym_pointer_type] = STATE(2379), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(2379), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(2380), - [sym_pattern] = STATE(3424), - [sym_constant_pattern] = STATE(3486), - [sym_parenthesized_pattern] = STATE(3486), - [sym_var_pattern] = STATE(3486), - [sym_type_pattern] = STATE(3486), - [sym_list_pattern] = STATE(3486), - [sym_recursive_pattern] = STATE(3486), - [sym_positional_pattern_clause] = STATE(2523), - [sym_property_pattern_clause] = STATE(2570), - [sym_relational_pattern] = STATE(3486), - [sym_negated_pattern] = STATE(3486), - [sym_and_pattern] = STATE(3486), - [sym_or_pattern] = STATE(3486), - [sym_declaration_pattern] = STATE(3486), - [sym_expression] = STATE(5668), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3520), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3455), - [sym_postfix_unary_expression] = STATE(3469), - [sym_prefix_unary_expression] = STATE(3469), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6154), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3455), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3469), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3455), - [sym_member_access_expression] = STATE(2719), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3469), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7530), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(3455), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3455), - [sym_typeof_expression] = STATE(3455), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2719), - [sym_literal] = STATE(3455), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2258), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(2853), + [sym_alias_qualified_name] = STATE(2402), + [sym__simple_name] = STATE(2288), + [sym_qualified_name] = STATE(2402), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(2460), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(2373), + [sym__array_base_type] = STATE(7083), + [sym_nullable_type] = STATE(2375), + [sym_pointer_type] = STATE(2375), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(2375), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(2377), + [sym_pattern] = STATE(3732), + [sym_constant_pattern] = STATE(3801), + [sym_parenthesized_pattern] = STATE(3801), + [sym_var_pattern] = STATE(3801), + [sym_type_pattern] = STATE(3801), + [sym_list_pattern] = STATE(3801), + [sym_recursive_pattern] = STATE(3801), + [sym_positional_pattern_clause] = STATE(2558), + [sym_property_pattern_clause] = STATE(2623), + [sym_relational_pattern] = STATE(3801), + [sym_negated_pattern] = STATE(3801), + [sym_and_pattern] = STATE(3801), + [sym_or_pattern] = STATE(3801), + [sym_declaration_pattern] = STATE(3801), + [sym_expression] = STATE(5661), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3510), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3790), + [sym_postfix_unary_expression] = STATE(3791), + [sym_prefix_unary_expression] = STATE(3791), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6134), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3790), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3791), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3790), + [sym_member_access_expression] = STATE(2896), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3791), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7425), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(3790), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3790), + [sym_typeof_expression] = STATE(3790), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2896), + [sym_literal] = STATE(3790), + [sym_character_literal] = STATE(3843), + [sym_string_literal] = STATE(3843), + [sym_raw_string_literal] = STATE(3843), + [sym_boolean_literal] = STATE(3843), + [sym_identifier] = STATE(2178), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(327), [sym_preproc_endregion] = STATE(327), [sym_preproc_line] = STATE(327), @@ -93373,53 +93259,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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1049), - [anon_sym_LPAREN] = ACTIONS(2499), - [anon_sym_ref] = ACTIONS(2449), - [anon_sym_LBRACE] = ACTIONS(2371), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(2473), + [anon_sym_LPAREN] = ACTIONS(2475), + [anon_sym_ref] = ACTIONS(2341), + [anon_sym_LBRACE] = ACTIONS(2343), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1061), - [anon_sym_LT] = ACTIONS(1991), - [anon_sym_GT] = ACTIONS(1991), + [anon_sym_new] = ACTIONS(1059), + [anon_sym_LT] = ACTIONS(2477), + [anon_sym_GT] = ACTIONS(2477), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1067), - [anon_sym_BANG] = ACTIONS(1617), - [anon_sym_TILDE] = ACTIONS(1617), - [anon_sym_PLUS_PLUS] = ACTIONS(1617), - [anon_sym_DASH_DASH] = ACTIONS(1617), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1615), - [anon_sym_DASH] = ACTIONS(1615), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(1763), + [anon_sym_TILDE] = ACTIONS(1763), + [anon_sym_PLUS_PLUS] = ACTIONS(1763), + [anon_sym_DASH_DASH] = ACTIONS(1763), + [anon_sym_true] = ACTIONS(1673), + [anon_sym_false] = ACTIONS(1673), + [anon_sym_PLUS] = ACTIONS(1761), + [anon_sym_DASH] = ACTIONS(1761), [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(1617), - [anon_sym_AMP] = ACTIONS(1617), - [anon_sym_GT_EQ] = ACTIONS(1993), - [anon_sym_LT_EQ] = ACTIONS(1993), + [anon_sym_CARET] = ACTIONS(1763), + [anon_sym_AMP] = ACTIONS(1763), + [anon_sym_GT_EQ] = ACTIONS(2479), + [anon_sym_LT_EQ] = ACTIONS(2479), [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(2377), + [anon_sym_scoped] = ACTIONS(2349), [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(2501), - [sym_predefined_type] = ACTIONS(2435), - [anon_sym_unchecked] = ACTIONS(1067), + [anon_sym_var] = ACTIONS(2481), + [sym_predefined_type] = ACTIONS(2483), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1589), + [anon_sym_default] = ACTIONS(1683), + [anon_sym_throw] = ACTIONS(1527), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1591), - [sym_discard] = ACTIONS(1083), + [anon_sym_await] = ACTIONS(1529), + [sym_discard] = ACTIONS(2485), [anon_sym_DOT_DOT] = ACTIONS(123), - [anon_sym_not] = ACTIONS(2503), + [anon_sym_not] = ACTIONS(2487), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -93433,18 +93319,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(129), - [anon_sym_typeof] = ACTIONS(131), + [anon_sym_sizeof] = ACTIONS(1693), + [anon_sym_typeof] = ACTIONS(1695), [anon_sym___makeref] = ACTIONS(133), [anon_sym___reftype] = ACTIONS(135), [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1089), + [sym_null_literal] = ACTIONS(1703), + [anon_sym_SQUOTE] = ACTIONS(1705), + [sym_integer_literal] = ACTIONS(1703), + [sym_real_literal] = ACTIONS(1707), + [anon_sym_DQUOTE] = ACTIONS(1709), + [sym_verbatim_string_literal] = ACTIONS(1707), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -93455,104 +93341,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(1713), + [sym_interpolation_verbatim_start] = ACTIONS(1715), + [sym_interpolation_raw_start] = ACTIONS(1717), + [sym_raw_string_start] = ACTIONS(1719), }, [328] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(2881), - [sym_alias_qualified_name] = STATE(2373), - [sym__simple_name] = STATE(2324), - [sym_qualified_name] = STATE(2373), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(2507), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(2378), - [sym__array_base_type] = STATE(7103), - [sym_nullable_type] = STATE(2379), - [sym_pointer_type] = STATE(2379), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(2379), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(2380), - [sym_pattern] = STATE(3236), - [sym_constant_pattern] = STATE(3295), - [sym_parenthesized_pattern] = STATE(3295), - [sym_var_pattern] = STATE(3295), - [sym_type_pattern] = STATE(3295), - [sym_list_pattern] = STATE(3295), - [sym_recursive_pattern] = STATE(3295), - [sym_positional_pattern_clause] = STATE(2576), - [sym_property_pattern_clause] = STATE(2773), - [sym_relational_pattern] = STATE(3295), - [sym_negated_pattern] = STATE(3295), - [sym_and_pattern] = STATE(3295), - [sym_or_pattern] = STATE(3295), - [sym_declaration_pattern] = STATE(3295), - [sym_expression] = STATE(5689), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3520), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3310), - [sym_postfix_unary_expression] = STATE(3312), - [sym_prefix_unary_expression] = STATE(3312), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6154), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3310), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3312), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3310), - [sym_member_access_expression] = STATE(2617), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3312), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7530), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(3310), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3310), - [sym_typeof_expression] = STATE(3310), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2617), - [sym_literal] = STATE(3310), - [sym_character_literal] = STATE(3278), - [sym_string_literal] = STATE(3278), - [sym_raw_string_literal] = STATE(3278), - [sym_boolean_literal] = STATE(3278), - [sym_identifier] = STATE(2186), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(5706), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2270), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5197), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_pattern] = STATE(6647), + [sym_constant_pattern] = STATE(3429), + [sym_parenthesized_pattern] = STATE(3429), + [sym_var_pattern] = STATE(3429), + [sym_type_pattern] = STATE(3429), + [sym_list_pattern] = STATE(3429), + [sym_recursive_pattern] = STATE(3429), + [sym_positional_pattern_clause] = STATE(5689), + [sym_property_pattern_clause] = STATE(5723), + [sym_relational_pattern] = STATE(3429), + [sym_negated_pattern] = STATE(3429), + [sym_and_pattern] = STATE(3429), + [sym_or_pattern] = STATE(3429), + [sym_declaration_pattern] = STATE(3429), + [sym_expression] = STATE(5654), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3510), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(4202), + [sym_postfix_unary_expression] = STATE(4203), + [sym_prefix_unary_expression] = STATE(4203), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6134), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(4202), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(4203), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(4202), + [sym_member_access_expression] = STATE(3112), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(4203), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7425), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(4202), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(4202), + [sym_typeof_expression] = STATE(4202), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(3112), + [sym_literal] = STATE(4202), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2261), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(328), [sym_preproc_endregion] = STATE(328), [sym_preproc_line] = STATE(328), @@ -93562,53 +93448,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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(2365), - [anon_sym_LPAREN] = ACTIONS(2459), - [anon_sym_ref] = ACTIONS(2369), - [anon_sym_LBRACE] = ACTIONS(2371), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_LPAREN] = ACTIONS(1989), + [anon_sym_ref] = ACTIONS(1991), + [anon_sym_LBRACE] = ACTIONS(1057), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1061), - [anon_sym_LT] = ACTIONS(2461), - [anon_sym_GT] = ACTIONS(2461), + [anon_sym_new] = ACTIONS(1059), + [anon_sym_LT] = ACTIONS(1995), + [anon_sym_GT] = ACTIONS(1995), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1067), - [anon_sym_BANG] = ACTIONS(1867), - [anon_sym_TILDE] = ACTIONS(1867), - [anon_sym_PLUS_PLUS] = ACTIONS(1867), - [anon_sym_DASH_DASH] = ACTIONS(1867), - [anon_sym_true] = ACTIONS(1173), - [anon_sym_false] = ACTIONS(1173), - [anon_sym_PLUS] = ACTIONS(1865), - [anon_sym_DASH] = ACTIONS(1865), + [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(1867), - [anon_sym_AMP] = ACTIONS(1867), - [anon_sym_GT_EQ] = ACTIONS(2463), - [anon_sym_LT_EQ] = ACTIONS(2463), + [anon_sym_CARET] = ACTIONS(1587), + [anon_sym_AMP] = ACTIONS(1587), + [anon_sym_GT_EQ] = ACTIONS(1997), + [anon_sym_LT_EQ] = ACTIONS(1997), [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(2377), + [anon_sym_scoped] = ACTIONS(1073), [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(2379), - [sym_predefined_type] = ACTIONS(2381), - [anon_sym_unchecked] = ACTIONS(1067), + [anon_sym_var] = ACTIONS(1999), + [sym_predefined_type] = ACTIONS(91), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1183), - [anon_sym_throw] = ACTIONS(1589), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(1527), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1591), - [sym_discard] = ACTIONS(2383), + [anon_sym_await] = ACTIONS(1529), + [sym_discard] = ACTIONS(1081), [anon_sym_DOT_DOT] = ACTIONS(123), - [anon_sym_not] = ACTIONS(2465), + [anon_sym_not] = ACTIONS(2001), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -93622,18 +93508,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(1193), - [anon_sym_typeof] = ACTIONS(1195), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), [anon_sym___makeref] = ACTIONS(133), [anon_sym___reftype] = ACTIONS(135), [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(1203), - [anon_sym_SQUOTE] = ACTIONS(1205), - [sym_integer_literal] = ACTIONS(1203), - [sym_real_literal] = ACTIONS(1207), - [anon_sym_DQUOTE] = ACTIONS(1209), - [sym_verbatim_string_literal] = ACTIONS(1207), - [aux_sym_preproc_if_token1] = ACTIONS(1089), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_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), @@ -93644,104 +93530,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(1213), - [sym_interpolation_verbatim_start] = ACTIONS(1215), - [sym_interpolation_raw_start] = ACTIONS(1217), - [sym_raw_string_start] = ACTIONS(1219), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [sym_interpolation_raw_start] = ACTIONS(155), + [sym_raw_string_start] = ACTIONS(157), }, [329] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(2870), - [sym_alias_qualified_name] = STATE(2373), - [sym__simple_name] = STATE(2296), - [sym_qualified_name] = STATE(2373), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(2470), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(2378), - [sym__array_base_type] = STATE(7103), - [sym_nullable_type] = STATE(2379), - [sym_pointer_type] = STATE(2379), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(2379), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(2380), - [sym_pattern] = STATE(3791), - [sym_constant_pattern] = STATE(3774), - [sym_parenthesized_pattern] = STATE(3774), - [sym_var_pattern] = STATE(3774), - [sym_type_pattern] = STATE(3774), - [sym_list_pattern] = STATE(3774), - [sym_recursive_pattern] = STATE(3774), - [sym_positional_pattern_clause] = STATE(2553), - [sym_property_pattern_clause] = STATE(2604), - [sym_relational_pattern] = STATE(3774), - [sym_negated_pattern] = STATE(3774), - [sym_and_pattern] = STATE(3774), - [sym_or_pattern] = STATE(3774), - [sym_declaration_pattern] = STATE(3774), - [sym_expression] = STATE(5666), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3520), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3803), - [sym_postfix_unary_expression] = STATE(3804), - [sym_prefix_unary_expression] = STATE(3804), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6154), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3803), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3804), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3803), - [sym_member_access_expression] = STATE(2917), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3804), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7530), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(3803), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3803), - [sym_typeof_expression] = STATE(3803), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2917), - [sym_literal] = STATE(3803), - [sym_character_literal] = STATE(3877), - [sym_string_literal] = STATE(3877), - [sym_raw_string_literal] = STATE(3877), - [sym_boolean_literal] = STATE(3877), - [sym_identifier] = STATE(2186), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(2706), + [sym_alias_qualified_name] = STATE(2821), + [sym__simple_name] = STATE(2268), + [sym_qualified_name] = STATE(2821), + [sym_generic_name] = STATE(2262), + [sym_type] = STATE(2382), + [sym_implicit_type] = STATE(2701), + [sym_array_type] = STATE(2822), + [sym__array_base_type] = STATE(7081), + [sym_nullable_type] = STATE(2823), + [sym_pointer_type] = STATE(2823), + [sym__pointer_base_type] = STATE(7400), + [sym_function_pointer_type] = STATE(2823), + [sym_ref_type] = STATE(2701), + [sym_scoped_type] = STATE(2701), + [sym_tuple_type] = STATE(2825), + [sym_pattern] = STATE(4647), + [sym_constant_pattern] = STATE(4727), + [sym_parenthesized_pattern] = STATE(4727), + [sym_var_pattern] = STATE(4727), + [sym_type_pattern] = STATE(4727), + [sym_list_pattern] = STATE(4727), + [sym_recursive_pattern] = STATE(4727), + [sym_positional_pattern_clause] = STATE(2480), + [sym_property_pattern_clause] = STATE(2550), + [sym_relational_pattern] = STATE(4727), + [sym_negated_pattern] = STATE(4727), + [sym_and_pattern] = STATE(4727), + [sym_or_pattern] = STATE(4727), + [sym_declaration_pattern] = STATE(4727), + [sym_expression] = STATE(5686), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3510), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(4509), + [sym_postfix_unary_expression] = STATE(4510), + [sym_prefix_unary_expression] = STATE(4510), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6134), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(4509), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(4510), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(4509), + [sym_member_access_expression] = STATE(3207), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(4510), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7425), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(4509), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(4509), + [sym_typeof_expression] = STATE(4509), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(3207), + [sym_literal] = STATE(4509), + [sym_character_literal] = STATE(4575), + [sym_string_literal] = STATE(4575), + [sym_raw_string_literal] = STATE(4575), + [sym_boolean_literal] = STATE(4575), + [sym_identifier] = STATE(2219), + [sym__reserved_identifier] = STATE(2229), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(329), [sym_preproc_endregion] = STATE(329), [sym_preproc_line] = STATE(329), @@ -93751,78 +93637,78 @@ 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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), - [sym__identifier_token] = ACTIONS(25), - [anon_sym_alias] = ACTIONS(29), - [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(2415), - [anon_sym_LPAREN] = ACTIONS(2417), - [anon_sym_ref] = ACTIONS(2369), - [anon_sym_LBRACE] = ACTIONS(2371), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), - [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1061), - [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(1067), - [anon_sym_BANG] = ACTIONS(1643), - [anon_sym_TILDE] = ACTIONS(1643), - [anon_sym_PLUS_PLUS] = ACTIONS(1643), - [anon_sym_DASH_DASH] = ACTIONS(1643), - [anon_sym_true] = ACTIONS(1645), - [anon_sym_false] = ACTIONS(1645), - [anon_sym_PLUS] = ACTIONS(1641), - [anon_sym_DASH] = ACTIONS(1641), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), + [sym__identifier_token] = ACTIONS(1385), + [anon_sym_alias] = ACTIONS(1387), + [anon_sym_global] = ACTIONS(1387), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(2401), + [anon_sym_LPAREN] = ACTIONS(2489), + [anon_sym_ref] = ACTIONS(2405), + [anon_sym_LBRACE] = ACTIONS(2407), + [anon_sym_delegate] = ACTIONS(2409), + [anon_sym_async] = ACTIONS(1045), + [anon_sym_file] = ACTIONS(1387), + [anon_sym_new] = ACTIONS(1059), + [anon_sym_LT] = ACTIONS(2491), + [anon_sym_GT] = ACTIONS(2491), + [anon_sym_where] = ACTIONS(1387), + [anon_sym_notnull] = ACTIONS(1387), + [anon_sym_unmanaged] = ACTIONS(1387), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(1405), + [anon_sym_TILDE] = ACTIONS(1405), + [anon_sym_PLUS_PLUS] = ACTIONS(1405), + [anon_sym_DASH_DASH] = ACTIONS(1405), + [anon_sym_true] = ACTIONS(1407), + [anon_sym_false] = ACTIONS(1407), + [anon_sym_PLUS] = ACTIONS(1403), + [anon_sym_DASH] = ACTIONS(1403), [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(1643), - [anon_sym_AMP] = ACTIONS(1643), - [anon_sym_GT_EQ] = ACTIONS(2421), - [anon_sym_LT_EQ] = ACTIONS(2421), + [anon_sym_CARET] = ACTIONS(1405), + [anon_sym_AMP] = ACTIONS(1405), + [anon_sym_GT_EQ] = ACTIONS(2493), + [anon_sym_LT_EQ] = ACTIONS(2493), [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(2377), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(2423), - [sym_predefined_type] = ACTIONS(2425), - [anon_sym_unchecked] = ACTIONS(1067), - [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1655), - [anon_sym_throw] = ACTIONS(1589), - [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1591), - [sym_discard] = ACTIONS(2427), + [anon_sym_scoped] = ACTIONS(2415), + [anon_sym_base] = ACTIONS(87), + [anon_sym_var] = ACTIONS(2417), + [sym_predefined_type] = ACTIONS(2419), + [anon_sym_unchecked] = ACTIONS(1065), + [anon_sym_yield] = ACTIONS(1387), + [anon_sym_default] = ACTIONS(1421), + [anon_sym_throw] = ACTIONS(1527), + [anon_sym_when] = ACTIONS(1387), + [anon_sym_await] = ACTIONS(1529), + [sym_discard] = ACTIONS(2421), [anon_sym_DOT_DOT] = ACTIONS(123), - [anon_sym_not] = ACTIONS(2429), - [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(2495), + [anon_sym_from] = ACTIONS(1429), + [anon_sym_into] = ACTIONS(1387), + [anon_sym_join] = ACTIONS(1387), + [anon_sym_on] = ACTIONS(1387), + [anon_sym_equals] = ACTIONS(1387), + [anon_sym_let] = ACTIONS(1387), + [anon_sym_orderby] = ACTIONS(1387), + [anon_sym_ascending] = ACTIONS(1387), + [anon_sym_descending] = ACTIONS(1387), + [anon_sym_group] = ACTIONS(1387), + [anon_sym_by] = ACTIONS(1387), + [anon_sym_select] = ACTIONS(1387), [anon_sym_stackalloc] = ACTIONS(127), - [anon_sym_sizeof] = ACTIONS(1665), - [anon_sym_typeof] = ACTIONS(1667), + [anon_sym_sizeof] = ACTIONS(1433), + [anon_sym_typeof] = ACTIONS(1435), [anon_sym___makeref] = ACTIONS(133), [anon_sym___reftype] = ACTIONS(135), [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(1675), - [anon_sym_SQUOTE] = ACTIONS(1677), - [sym_integer_literal] = ACTIONS(1675), - [sym_real_literal] = ACTIONS(1679), - [anon_sym_DQUOTE] = ACTIONS(1681), - [sym_verbatim_string_literal] = ACTIONS(1679), - [aux_sym_preproc_if_token1] = ACTIONS(1089), + [sym_null_literal] = ACTIONS(1443), + [anon_sym_SQUOTE] = ACTIONS(1445), + [sym_integer_literal] = ACTIONS(1443), + [sym_real_literal] = ACTIONS(1447), + [anon_sym_DQUOTE] = ACTIONS(1449), + [sym_verbatim_string_literal] = ACTIONS(1447), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -93833,104 +93719,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(1685), - [sym_interpolation_verbatim_start] = ACTIONS(1687), - [sym_interpolation_raw_start] = ACTIONS(1689), - [sym_raw_string_start] = ACTIONS(1691), + [sym_interpolation_regular_start] = ACTIONS(1453), + [sym_interpolation_verbatim_start] = ACTIONS(1455), + [sym_interpolation_raw_start] = ACTIONS(1457), + [sym_raw_string_start] = ACTIONS(1459), }, [330] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(2888), - [sym_alias_qualified_name] = STATE(2373), - [sym__simple_name] = STATE(2352), - [sym_qualified_name] = STATE(2373), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(2494), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(2378), - [sym__array_base_type] = STATE(7103), - [sym_nullable_type] = STATE(2379), - [sym_pointer_type] = STATE(2379), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(2379), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(2380), - [sym_pattern] = STATE(5530), - [sym_constant_pattern] = STATE(3486), - [sym_parenthesized_pattern] = STATE(3486), - [sym_var_pattern] = STATE(3486), - [sym_type_pattern] = STATE(3486), - [sym_list_pattern] = STATE(3486), - [sym_recursive_pattern] = STATE(3486), - [sym_positional_pattern_clause] = STATE(2584), - [sym_property_pattern_clause] = STATE(2739), - [sym_relational_pattern] = STATE(3486), - [sym_negated_pattern] = STATE(3486), - [sym_and_pattern] = STATE(3486), - [sym_or_pattern] = STATE(3486), - [sym_declaration_pattern] = STATE(3486), - [sym_expression] = STATE(5685), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3520), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3455), - [sym_postfix_unary_expression] = STATE(3469), - [sym_prefix_unary_expression] = STATE(3469), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6154), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3455), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3469), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3455), - [sym_member_access_expression] = STATE(2719), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3469), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7530), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(3455), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3455), - [sym_typeof_expression] = STATE(3455), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2719), - [sym_literal] = STATE(3455), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2186), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(2849), + [sym_alias_qualified_name] = STATE(2402), + [sym__simple_name] = STATE(2285), + [sym_qualified_name] = STATE(2402), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(2455), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(2373), + [sym__array_base_type] = STATE(7083), + [sym_nullable_type] = STATE(2375), + [sym_pointer_type] = STATE(2375), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(2375), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(2377), + [sym_pattern] = STATE(3445), + [sym_constant_pattern] = STATE(3429), + [sym_parenthesized_pattern] = STATE(3429), + [sym_var_pattern] = STATE(3429), + [sym_type_pattern] = STATE(3429), + [sym_list_pattern] = STATE(3429), + [sym_recursive_pattern] = STATE(3429), + [sym_positional_pattern_clause] = STATE(2528), + [sym_property_pattern_clause] = STATE(2589), + [sym_relational_pattern] = STATE(3429), + [sym_negated_pattern] = STATE(3429), + [sym_and_pattern] = STATE(3429), + [sym_or_pattern] = STATE(3429), + [sym_declaration_pattern] = STATE(3429), + [sym_expression] = STATE(5654), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3510), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3397), + [sym_postfix_unary_expression] = STATE(3404), + [sym_prefix_unary_expression] = STATE(3404), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6134), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3397), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3404), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3397), + [sym_member_access_expression] = STATE(2686), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3404), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7425), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(3397), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3397), + [sym_typeof_expression] = STATE(3397), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2686), + [sym_literal] = STATE(3397), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2260), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(330), [sym_preproc_endregion] = STATE(330), [sym_preproc_line] = STATE(330), @@ -93940,53 +93826,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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1049), - [anon_sym_LPAREN] = ACTIONS(2505), - [anon_sym_ref] = ACTIONS(2369), - [anon_sym_LBRACE] = ACTIONS(2371), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_LPAREN] = ACTIONS(2497), + [anon_sym_ref] = ACTIONS(2499), + [anon_sym_LBRACE] = ACTIONS(2343), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1061), - [anon_sym_LT] = ACTIONS(2507), - [anon_sym_GT] = ACTIONS(2507), + [anon_sym_new] = ACTIONS(1059), + [anon_sym_LT] = ACTIONS(1995), + [anon_sym_GT] = ACTIONS(1995), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1067), - [anon_sym_BANG] = ACTIONS(1903), - [anon_sym_TILDE] = ACTIONS(1903), - [anon_sym_PLUS_PLUS] = ACTIONS(1903), - [anon_sym_DASH_DASH] = ACTIONS(1903), + [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(1901), - [anon_sym_DASH] = ACTIONS(1901), + [anon_sym_PLUS] = ACTIONS(1585), + [anon_sym_DASH] = ACTIONS(1585), [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(1903), - [anon_sym_AMP] = ACTIONS(1903), - [anon_sym_GT_EQ] = ACTIONS(2509), - [anon_sym_LT_EQ] = ACTIONS(2509), + [anon_sym_CARET] = ACTIONS(1587), + [anon_sym_AMP] = ACTIONS(1587), + [anon_sym_GT_EQ] = ACTIONS(1997), + [anon_sym_LT_EQ] = ACTIONS(1997), [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(2377), + [anon_sym_scoped] = ACTIONS(2349), [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(2433), - [sym_predefined_type] = ACTIONS(2435), - [anon_sym_unchecked] = ACTIONS(1067), + [anon_sym_var] = ACTIONS(2501), + [sym_predefined_type] = ACTIONS(2353), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1589), + [anon_sym_throw] = ACTIONS(1527), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1591), - [sym_discard] = ACTIONS(1083), + [anon_sym_await] = ACTIONS(1529), + [sym_discard] = ACTIONS(1081), [anon_sym_DOT_DOT] = ACTIONS(123), - [anon_sym_not] = ACTIONS(2511), + [anon_sym_not] = ACTIONS(2503), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -94011,7 +93897,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(1089), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -94028,98 +93914,98 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [331] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(2888), - [sym_alias_qualified_name] = STATE(2373), - [sym__simple_name] = STATE(2352), - [sym_qualified_name] = STATE(2373), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(2494), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(2378), - [sym__array_base_type] = STATE(7103), - [sym_nullable_type] = STATE(2379), - [sym_pointer_type] = STATE(2379), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(2379), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(2380), - [sym_pattern] = STATE(3432), - [sym_constant_pattern] = STATE(3486), - [sym_parenthesized_pattern] = STATE(3486), - [sym_var_pattern] = STATE(3486), - [sym_type_pattern] = STATE(3486), - [sym_list_pattern] = STATE(3486), - [sym_recursive_pattern] = STATE(3486), - [sym_positional_pattern_clause] = STATE(2584), - [sym_property_pattern_clause] = STATE(2739), - [sym_relational_pattern] = STATE(3486), - [sym_negated_pattern] = STATE(3486), - [sym_and_pattern] = STATE(3486), - [sym_or_pattern] = STATE(3486), - [sym_declaration_pattern] = STATE(3486), - [sym_expression] = STATE(5685), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3520), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3455), - [sym_postfix_unary_expression] = STATE(3469), - [sym_prefix_unary_expression] = STATE(3469), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6154), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3455), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3469), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3455), - [sym_member_access_expression] = STATE(2719), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3469), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7530), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(3455), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3455), - [sym_typeof_expression] = STATE(3455), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2719), - [sym_literal] = STATE(3455), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2186), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(5710), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2291), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5155), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_pattern] = STATE(3407), + [sym_constant_pattern] = STATE(3429), + [sym_parenthesized_pattern] = STATE(3429), + [sym_var_pattern] = STATE(3429), + [sym_type_pattern] = STATE(3429), + [sym_list_pattern] = STATE(3429), + [sym_recursive_pattern] = STATE(3429), + [sym_positional_pattern_clause] = STATE(5689), + [sym_property_pattern_clause] = STATE(5723), + [sym_relational_pattern] = STATE(3429), + [sym_negated_pattern] = STATE(3429), + [sym_and_pattern] = STATE(3429), + [sym_or_pattern] = STATE(3429), + [sym_declaration_pattern] = STATE(3429), + [sym_expression] = STATE(5656), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3510), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(5238), + [sym_postfix_unary_expression] = STATE(5239), + [sym_prefix_unary_expression] = STATE(5239), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6134), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(5238), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(5239), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(5238), + [sym_member_access_expression] = STATE(3431), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(5239), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7425), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(5238), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(5238), + [sym_typeof_expression] = STATE(5238), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(3431), + [sym_literal] = STATE(5238), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2242), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(331), [sym_preproc_endregion] = STATE(331), [sym_preproc_line] = STATE(331), @@ -94129,53 +94015,53 @@ 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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1049), - [anon_sym_LPAREN] = ACTIONS(2505), - [anon_sym_ref] = ACTIONS(2369), - [anon_sym_LBRACE] = ACTIONS(2371), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_LPAREN] = ACTIONS(2425), + [anon_sym_ref] = ACTIONS(2427), + [anon_sym_LBRACE] = ACTIONS(2429), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1061), - [anon_sym_LT] = ACTIONS(2507), - [anon_sym_GT] = ACTIONS(2507), + [anon_sym_new] = ACTIONS(1059), + [anon_sym_LT] = ACTIONS(2431), + [anon_sym_GT] = ACTIONS(2431), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1067), - [anon_sym_BANG] = ACTIONS(1903), - [anon_sym_TILDE] = ACTIONS(1903), - [anon_sym_PLUS_PLUS] = ACTIONS(1903), - [anon_sym_DASH_DASH] = ACTIONS(1903), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(1645), + [anon_sym_TILDE] = ACTIONS(1645), + [anon_sym_PLUS_PLUS] = ACTIONS(1645), + [anon_sym_DASH_DASH] = ACTIONS(1645), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1901), - [anon_sym_DASH] = ACTIONS(1901), + [anon_sym_PLUS] = ACTIONS(1643), + [anon_sym_DASH] = ACTIONS(1643), [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(1903), - [anon_sym_AMP] = ACTIONS(1903), - [anon_sym_GT_EQ] = ACTIONS(2509), - [anon_sym_LT_EQ] = ACTIONS(2509), + [anon_sym_CARET] = ACTIONS(1645), + [anon_sym_AMP] = ACTIONS(1645), + [anon_sym_GT_EQ] = ACTIONS(2433), + [anon_sym_LT_EQ] = ACTIONS(2433), [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(2377), + [anon_sym_scoped] = ACTIONS(2435), [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(2433), - [sym_predefined_type] = ACTIONS(2435), - [anon_sym_unchecked] = ACTIONS(1067), + [anon_sym_var] = ACTIONS(2437), + [sym_predefined_type] = ACTIONS(91), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1589), + [anon_sym_throw] = ACTIONS(1527), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1591), - [sym_discard] = ACTIONS(1083), + [anon_sym_await] = ACTIONS(1529), + [sym_discard] = ACTIONS(1081), [anon_sym_DOT_DOT] = ACTIONS(123), - [anon_sym_not] = ACTIONS(2511), + [anon_sym_not] = ACTIONS(2439), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -94200,7 +94086,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(1089), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -94217,98 +94103,98 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [332] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(2888), - [sym_alias_qualified_name] = STATE(2373), - [sym__simple_name] = STATE(2352), - [sym_qualified_name] = STATE(2373), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(2494), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(2378), - [sym__array_base_type] = STATE(7103), - [sym_nullable_type] = STATE(2379), - [sym_pointer_type] = STATE(2379), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(2379), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(2380), - [sym_pattern] = STATE(5516), - [sym_constant_pattern] = STATE(3486), - [sym_parenthesized_pattern] = STATE(3486), - [sym_var_pattern] = STATE(3486), - [sym_type_pattern] = STATE(3486), - [sym_list_pattern] = STATE(3486), - [sym_recursive_pattern] = STATE(3486), - [sym_positional_pattern_clause] = STATE(2584), - [sym_property_pattern_clause] = STATE(2739), - [sym_relational_pattern] = STATE(3486), - [sym_negated_pattern] = STATE(3486), - [sym_and_pattern] = STATE(3486), - [sym_or_pattern] = STATE(3486), - [sym_declaration_pattern] = STATE(3486), - [sym_expression] = STATE(5685), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3520), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3455), - [sym_postfix_unary_expression] = STATE(3469), - [sym_prefix_unary_expression] = STATE(3469), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6154), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3455), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3469), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3455), - [sym_member_access_expression] = STATE(2719), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3469), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7530), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(3455), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3455), - [sym_typeof_expression] = STATE(3455), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2719), - [sym_literal] = STATE(3455), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2186), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(2863), + [sym_alias_qualified_name] = STATE(2402), + [sym__simple_name] = STATE(2328), + [sym_qualified_name] = STATE(2402), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(2499), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(2373), + [sym__array_base_type] = STATE(7083), + [sym_nullable_type] = STATE(2375), + [sym_pointer_type] = STATE(2375), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(2375), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(2377), + [sym_pattern] = STATE(3407), + [sym_constant_pattern] = STATE(3429), + [sym_parenthesized_pattern] = STATE(3429), + [sym_var_pattern] = STATE(3429), + [sym_type_pattern] = STATE(3429), + [sym_list_pattern] = STATE(3429), + [sym_recursive_pattern] = STATE(3429), + [sym_positional_pattern_clause] = STATE(2571), + [sym_property_pattern_clause] = STATE(2729), + [sym_relational_pattern] = STATE(3429), + [sym_negated_pattern] = STATE(3429), + [sym_and_pattern] = STATE(3429), + [sym_or_pattern] = STATE(3429), + [sym_declaration_pattern] = STATE(3429), + [sym_expression] = STATE(5652), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3510), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3397), + [sym_postfix_unary_expression] = STATE(3404), + [sym_prefix_unary_expression] = STATE(3404), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6134), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3397), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3404), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3397), + [sym_member_access_expression] = STATE(2686), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3404), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7425), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(3397), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3397), + [sym_typeof_expression] = STATE(3397), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2686), + [sym_literal] = STATE(3397), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2178), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(332), [sym_preproc_endregion] = STATE(332), [sym_preproc_line] = STATE(332), @@ -94318,53 +94204,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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1049), - [anon_sym_LPAREN] = ACTIONS(2505), - [anon_sym_ref] = ACTIONS(2369), - [anon_sym_LBRACE] = ACTIONS(2371), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_LPAREN] = ACTIONS(2339), + [anon_sym_ref] = ACTIONS(2341), + [anon_sym_LBRACE] = ACTIONS(2343), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1061), - [anon_sym_LT] = ACTIONS(2507), - [anon_sym_GT] = ACTIONS(2507), + [anon_sym_new] = ACTIONS(1059), + [anon_sym_LT] = ACTIONS(2345), + [anon_sym_GT] = ACTIONS(2345), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1067), - [anon_sym_BANG] = ACTIONS(1903), - [anon_sym_TILDE] = ACTIONS(1903), - [anon_sym_PLUS_PLUS] = ACTIONS(1903), - [anon_sym_DASH_DASH] = ACTIONS(1903), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(1811), + [anon_sym_TILDE] = ACTIONS(1811), + [anon_sym_PLUS_PLUS] = ACTIONS(1811), + [anon_sym_DASH_DASH] = ACTIONS(1811), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1901), - [anon_sym_DASH] = ACTIONS(1901), + [anon_sym_PLUS] = ACTIONS(1809), + [anon_sym_DASH] = ACTIONS(1809), [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(1903), - [anon_sym_AMP] = ACTIONS(1903), - [anon_sym_GT_EQ] = ACTIONS(2509), - [anon_sym_LT_EQ] = ACTIONS(2509), + [anon_sym_CARET] = ACTIONS(1811), + [anon_sym_AMP] = ACTIONS(1811), + [anon_sym_GT_EQ] = ACTIONS(2347), + [anon_sym_LT_EQ] = ACTIONS(2347), [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(2377), + [anon_sym_scoped] = ACTIONS(2349), [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(2433), - [sym_predefined_type] = ACTIONS(2435), - [anon_sym_unchecked] = ACTIONS(1067), + [anon_sym_var] = ACTIONS(2351), + [sym_predefined_type] = ACTIONS(2353), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1589), + [anon_sym_throw] = ACTIONS(1527), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1591), - [sym_discard] = ACTIONS(1083), + [anon_sym_await] = ACTIONS(1529), + [sym_discard] = ACTIONS(1081), [anon_sym_DOT_DOT] = ACTIONS(123), - [anon_sym_not] = ACTIONS(2511), + [anon_sym_not] = ACTIONS(2355), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -94389,7 +94275,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(1089), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -94406,98 +94292,98 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [333] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(2881), - [sym_alias_qualified_name] = STATE(2373), - [sym__simple_name] = STATE(2324), - [sym_qualified_name] = STATE(2373), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(2507), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(2378), - [sym__array_base_type] = STATE(7103), - [sym_nullable_type] = STATE(2379), - [sym_pointer_type] = STATE(2379), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(2379), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(2380), - [sym_pattern] = STATE(5141), - [sym_constant_pattern] = STATE(3295), - [sym_parenthesized_pattern] = STATE(3295), - [sym_var_pattern] = STATE(3295), - [sym_type_pattern] = STATE(3295), - [sym_list_pattern] = STATE(3295), - [sym_recursive_pattern] = STATE(3295), - [sym_positional_pattern_clause] = STATE(2576), - [sym_property_pattern_clause] = STATE(2773), - [sym_relational_pattern] = STATE(3295), - [sym_negated_pattern] = STATE(3295), - [sym_and_pattern] = STATE(3295), - [sym_or_pattern] = STATE(3295), - [sym_declaration_pattern] = STATE(3295), - [sym_expression] = STATE(5689), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3520), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3310), - [sym_postfix_unary_expression] = STATE(3312), - [sym_prefix_unary_expression] = STATE(3312), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6154), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3310), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3312), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3310), - [sym_member_access_expression] = STATE(2617), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3312), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7530), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(3310), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3310), - [sym_typeof_expression] = STATE(3310), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2617), - [sym_literal] = STATE(3310), - [sym_character_literal] = STATE(3278), - [sym_string_literal] = STATE(3278), - [sym_raw_string_literal] = STATE(3278), - [sym_boolean_literal] = STATE(3278), - [sym_identifier] = STATE(2186), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(2863), + [sym_alias_qualified_name] = STATE(2402), + [sym__simple_name] = STATE(2328), + [sym_qualified_name] = STATE(2402), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(2499), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(2373), + [sym__array_base_type] = STATE(7083), + [sym_nullable_type] = STATE(2375), + [sym_pointer_type] = STATE(2375), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(2375), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(2377), + [sym_pattern] = STATE(5394), + [sym_constant_pattern] = STATE(3429), + [sym_parenthesized_pattern] = STATE(3429), + [sym_var_pattern] = STATE(3429), + [sym_type_pattern] = STATE(3429), + [sym_list_pattern] = STATE(3429), + [sym_recursive_pattern] = STATE(3429), + [sym_positional_pattern_clause] = STATE(2571), + [sym_property_pattern_clause] = STATE(2729), + [sym_relational_pattern] = STATE(3429), + [sym_negated_pattern] = STATE(3429), + [sym_and_pattern] = STATE(3429), + [sym_or_pattern] = STATE(3429), + [sym_declaration_pattern] = STATE(3429), + [sym_expression] = STATE(5652), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3510), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3397), + [sym_postfix_unary_expression] = STATE(3404), + [sym_prefix_unary_expression] = STATE(3404), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6134), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3397), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3404), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3397), + [sym_member_access_expression] = STATE(2686), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3404), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7425), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(3397), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3397), + [sym_typeof_expression] = STATE(3397), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2686), + [sym_literal] = STATE(3397), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2178), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(333), [sym_preproc_endregion] = STATE(333), [sym_preproc_line] = STATE(333), @@ -94507,53 +94393,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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(2365), - [anon_sym_LPAREN] = ACTIONS(2459), - [anon_sym_ref] = ACTIONS(2369), - [anon_sym_LBRACE] = ACTIONS(2371), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_LPAREN] = ACTIONS(2339), + [anon_sym_ref] = ACTIONS(2341), + [anon_sym_LBRACE] = ACTIONS(2343), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1061), - [anon_sym_LT] = ACTIONS(2461), - [anon_sym_GT] = ACTIONS(2461), + [anon_sym_new] = ACTIONS(1059), + [anon_sym_LT] = ACTIONS(2345), + [anon_sym_GT] = ACTIONS(2345), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1067), - [anon_sym_BANG] = ACTIONS(1867), - [anon_sym_TILDE] = ACTIONS(1867), - [anon_sym_PLUS_PLUS] = ACTIONS(1867), - [anon_sym_DASH_DASH] = ACTIONS(1867), - [anon_sym_true] = ACTIONS(1173), - [anon_sym_false] = ACTIONS(1173), - [anon_sym_PLUS] = ACTIONS(1865), - [anon_sym_DASH] = ACTIONS(1865), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(1811), + [anon_sym_TILDE] = ACTIONS(1811), + [anon_sym_PLUS_PLUS] = ACTIONS(1811), + [anon_sym_DASH_DASH] = ACTIONS(1811), + [anon_sym_true] = ACTIONS(77), + [anon_sym_false] = ACTIONS(77), + [anon_sym_PLUS] = ACTIONS(1809), + [anon_sym_DASH] = ACTIONS(1809), [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(1867), - [anon_sym_AMP] = ACTIONS(1867), - [anon_sym_GT_EQ] = ACTIONS(2463), - [anon_sym_LT_EQ] = ACTIONS(2463), + [anon_sym_CARET] = ACTIONS(1811), + [anon_sym_AMP] = ACTIONS(1811), + [anon_sym_GT_EQ] = ACTIONS(2347), + [anon_sym_LT_EQ] = ACTIONS(2347), [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(2377), + [anon_sym_scoped] = ACTIONS(2349), [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(2379), - [sym_predefined_type] = ACTIONS(2381), - [anon_sym_unchecked] = ACTIONS(1067), + [anon_sym_var] = ACTIONS(2351), + [sym_predefined_type] = ACTIONS(2353), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1183), - [anon_sym_throw] = ACTIONS(1589), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(1527), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1591), - [sym_discard] = ACTIONS(2383), + [anon_sym_await] = ACTIONS(1529), + [sym_discard] = ACTIONS(1081), [anon_sym_DOT_DOT] = ACTIONS(123), - [anon_sym_not] = ACTIONS(2465), + [anon_sym_not] = ACTIONS(2355), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -94567,18 +94453,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(1193), - [anon_sym_typeof] = ACTIONS(1195), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), [anon_sym___makeref] = ACTIONS(133), [anon_sym___reftype] = ACTIONS(135), [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(1203), - [anon_sym_SQUOTE] = ACTIONS(1205), - [sym_integer_literal] = ACTIONS(1203), - [sym_real_literal] = ACTIONS(1207), - [anon_sym_DQUOTE] = ACTIONS(1209), - [sym_verbatim_string_literal] = ACTIONS(1207), - [aux_sym_preproc_if_token1] = ACTIONS(1089), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_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), @@ -94589,104 +94475,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(1213), - [sym_interpolation_verbatim_start] = ACTIONS(1215), - [sym_interpolation_raw_start] = ACTIONS(1217), - [sym_raw_string_start] = ACTIONS(1219), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [sym_interpolation_raw_start] = ACTIONS(155), + [sym_raw_string_start] = ACTIONS(157), }, [334] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(2870), - [sym_alias_qualified_name] = STATE(2373), - [sym__simple_name] = STATE(2296), - [sym_qualified_name] = STATE(2373), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(2473), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(2378), - [sym__array_base_type] = STATE(7103), - [sym_nullable_type] = STATE(2379), - [sym_pointer_type] = STATE(2379), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(2379), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(2380), - [sym_pattern] = STATE(4006), - [sym_constant_pattern] = STATE(3774), - [sym_parenthesized_pattern] = STATE(3774), - [sym_var_pattern] = STATE(3774), - [sym_type_pattern] = STATE(3774), - [sym_list_pattern] = STATE(3774), - [sym_recursive_pattern] = STATE(3774), - [sym_positional_pattern_clause] = STATE(2553), - [sym_property_pattern_clause] = STATE(2604), - [sym_relational_pattern] = STATE(3774), - [sym_negated_pattern] = STATE(3774), - [sym_and_pattern] = STATE(3774), - [sym_or_pattern] = STATE(3774), - [sym_declaration_pattern] = STATE(3774), - [sym_expression] = STATE(5666), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3520), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3803), - [sym_postfix_unary_expression] = STATE(3804), - [sym_prefix_unary_expression] = STATE(3804), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6154), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3803), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3804), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3803), - [sym_member_access_expression] = STATE(2917), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3804), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7530), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(3803), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3803), - [sym_typeof_expression] = STATE(3803), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2917), - [sym_literal] = STATE(3803), - [sym_character_literal] = STATE(3877), - [sym_string_literal] = STATE(3877), - [sym_raw_string_literal] = STATE(3877), - [sym_boolean_literal] = STATE(3877), - [sym_identifier] = STATE(2186), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(2410), + [sym_alias_qualified_name] = STATE(2402), + [sym__simple_name] = STATE(2185), + [sym_qualified_name] = STATE(2402), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(2456), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(2373), + [sym__array_base_type] = STATE(7083), + [sym_nullable_type] = STATE(2375), + [sym_pointer_type] = STATE(2375), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(2375), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(2377), + [sym_pattern] = STATE(5267), + [sym_constant_pattern] = STATE(3311), + [sym_parenthesized_pattern] = STATE(3311), + [sym_var_pattern] = STATE(3311), + [sym_type_pattern] = STATE(3311), + [sym_list_pattern] = STATE(3311), + [sym_recursive_pattern] = STATE(3311), + [sym_positional_pattern_clause] = STATE(2257), + [sym_property_pattern_clause] = STATE(2289), + [sym_relational_pattern] = STATE(3311), + [sym_negated_pattern] = STATE(3311), + [sym_and_pattern] = STATE(3311), + [sym_or_pattern] = STATE(3311), + [sym_declaration_pattern] = STATE(3311), + [sym_expression] = STATE(5658), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3510), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3275), + [sym_postfix_unary_expression] = STATE(3276), + [sym_prefix_unary_expression] = STATE(3276), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6134), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3275), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3276), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3275), + [sym_member_access_expression] = STATE(2608), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3276), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7425), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(3275), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3275), + [sym_typeof_expression] = STATE(3275), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2608), + [sym_literal] = STATE(3275), + [sym_character_literal] = STATE(3272), + [sym_string_literal] = STATE(3272), + [sym_raw_string_literal] = STATE(3272), + [sym_boolean_literal] = STATE(3272), + [sym_identifier] = STATE(2260), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(334), [sym_preproc_endregion] = STATE(334), [sym_preproc_line] = STATE(334), @@ -94696,53 +94582,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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(2415), - [anon_sym_LPAREN] = ACTIONS(2417), - [anon_sym_ref] = ACTIONS(2369), - [anon_sym_LBRACE] = ACTIONS(2371), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(2357), + [anon_sym_LPAREN] = ACTIONS(2505), + [anon_sym_ref] = ACTIONS(2499), + [anon_sym_LBRACE] = ACTIONS(2343), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1061), - [anon_sym_LT] = ACTIONS(2419), - [anon_sym_GT] = ACTIONS(2419), + [anon_sym_new] = ACTIONS(1059), + [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(1067), - [anon_sym_BANG] = ACTIONS(1643), - [anon_sym_TILDE] = ACTIONS(1643), - [anon_sym_PLUS_PLUS] = ACTIONS(1643), - [anon_sym_DASH_DASH] = ACTIONS(1643), - [anon_sym_true] = ACTIONS(1645), - [anon_sym_false] = ACTIONS(1645), - [anon_sym_PLUS] = ACTIONS(1641), - [anon_sym_DASH] = ACTIONS(1641), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(1555), + [anon_sym_TILDE] = ACTIONS(1555), + [anon_sym_PLUS_PLUS] = ACTIONS(1555), + [anon_sym_DASH_DASH] = ACTIONS(1555), + [anon_sym_true] = ACTIONS(1169), + [anon_sym_false] = ACTIONS(1169), + [anon_sym_PLUS] = ACTIONS(1553), + [anon_sym_DASH] = ACTIONS(1553), [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(1643), - [anon_sym_AMP] = ACTIONS(1643), - [anon_sym_GT_EQ] = ACTIONS(2421), - [anon_sym_LT_EQ] = ACTIONS(2421), + [anon_sym_CARET] = ACTIONS(1555), + [anon_sym_AMP] = ACTIONS(1555), + [anon_sym_GT_EQ] = ACTIONS(2509), + [anon_sym_LT_EQ] = ACTIONS(2509), [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(2377), + [anon_sym_scoped] = ACTIONS(2349), [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(2423), - [sym_predefined_type] = ACTIONS(2425), - [anon_sym_unchecked] = ACTIONS(1067), + [anon_sym_var] = ACTIONS(2511), + [sym_predefined_type] = ACTIONS(2367), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1655), - [anon_sym_throw] = ACTIONS(1589), + [anon_sym_default] = ACTIONS(1179), + [anon_sym_throw] = ACTIONS(1527), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1591), - [sym_discard] = ACTIONS(2427), + [anon_sym_await] = ACTIONS(1529), + [sym_discard] = ACTIONS(2369), [anon_sym_DOT_DOT] = ACTIONS(123), - [anon_sym_not] = ACTIONS(2429), + [anon_sym_not] = ACTIONS(2513), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -94756,18 +94642,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(1665), - [anon_sym_typeof] = ACTIONS(1667), + [anon_sym_sizeof] = ACTIONS(1189), + [anon_sym_typeof] = ACTIONS(1191), [anon_sym___makeref] = ACTIONS(133), [anon_sym___reftype] = ACTIONS(135), [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(1675), - [anon_sym_SQUOTE] = ACTIONS(1677), - [sym_integer_literal] = ACTIONS(1675), - [sym_real_literal] = ACTIONS(1679), - [anon_sym_DQUOTE] = ACTIONS(1681), - [sym_verbatim_string_literal] = ACTIONS(1679), - [aux_sym_preproc_if_token1] = ACTIONS(1089), + [sym_null_literal] = ACTIONS(1199), + [anon_sym_SQUOTE] = ACTIONS(1201), + [sym_integer_literal] = ACTIONS(1199), + [sym_real_literal] = ACTIONS(1203), + [anon_sym_DQUOTE] = ACTIONS(1205), + [sym_verbatim_string_literal] = ACTIONS(1203), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -94778,104 +94664,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(1685), - [sym_interpolation_verbatim_start] = ACTIONS(1687), - [sym_interpolation_raw_start] = ACTIONS(1689), - [sym_raw_string_start] = ACTIONS(1691), + [sym_interpolation_regular_start] = ACTIONS(1209), + [sym_interpolation_verbatim_start] = ACTIONS(1211), + [sym_interpolation_raw_start] = ACTIONS(1213), + [sym_raw_string_start] = ACTIONS(1215), }, [335] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(2426), - [sym_alias_qualified_name] = STATE(2373), - [sym__simple_name] = STATE(2189), - [sym_qualified_name] = STATE(2373), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(2237), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(2378), - [sym__array_base_type] = STATE(7103), - [sym_nullable_type] = STATE(2379), - [sym_pointer_type] = STATE(2379), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(2379), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(2380), - [sym_pattern] = STATE(3250), - [sym_constant_pattern] = STATE(3295), - [sym_parenthesized_pattern] = STATE(3295), - [sym_var_pattern] = STATE(3295), - [sym_type_pattern] = STATE(3295), - [sym_list_pattern] = STATE(3295), - [sym_recursive_pattern] = STATE(3295), - [sym_positional_pattern_clause] = STATE(2251), - [sym_property_pattern_clause] = STATE(2302), - [sym_relational_pattern] = STATE(3295), - [sym_negated_pattern] = STATE(3295), - [sym_and_pattern] = STATE(3295), - [sym_or_pattern] = STATE(3295), - [sym_declaration_pattern] = STATE(3295), - [sym_expression] = STATE(5669), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3520), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3310), - [sym_postfix_unary_expression] = STATE(3312), - [sym_prefix_unary_expression] = STATE(3312), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6154), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3310), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3312), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3310), - [sym_member_access_expression] = STATE(2617), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3312), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7530), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(3310), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3310), - [sym_typeof_expression] = STATE(3310), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2617), - [sym_literal] = STATE(3310), - [sym_character_literal] = STATE(3278), - [sym_string_literal] = STATE(3278), - [sym_raw_string_literal] = STATE(3278), - [sym_boolean_literal] = STATE(3278), - [sym_identifier] = STATE(2186), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(5710), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2291), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5155), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_pattern] = STATE(6711), + [sym_constant_pattern] = STATE(3429), + [sym_parenthesized_pattern] = STATE(3429), + [sym_var_pattern] = STATE(3429), + [sym_type_pattern] = STATE(3429), + [sym_list_pattern] = STATE(3429), + [sym_recursive_pattern] = STATE(3429), + [sym_positional_pattern_clause] = STATE(5689), + [sym_property_pattern_clause] = STATE(5723), + [sym_relational_pattern] = STATE(3429), + [sym_negated_pattern] = STATE(3429), + [sym_and_pattern] = STATE(3429), + [sym_or_pattern] = STATE(3429), + [sym_declaration_pattern] = STATE(3429), + [sym_expression] = STATE(5656), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3510), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(5238), + [sym_postfix_unary_expression] = STATE(5239), + [sym_prefix_unary_expression] = STATE(5239), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6134), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(5238), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(5239), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(5238), + [sym_member_access_expression] = STATE(3431), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(5239), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7425), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(5238), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(5238), + [sym_typeof_expression] = STATE(5238), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(3431), + [sym_literal] = STATE(5238), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2242), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(335), [sym_preproc_endregion] = STATE(335), [sym_preproc_line] = STATE(335), @@ -94885,53 +94771,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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(2365), - [anon_sym_LPAREN] = ACTIONS(2513), - [anon_sym_ref] = ACTIONS(2369), - [anon_sym_LBRACE] = ACTIONS(2371), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_LPAREN] = ACTIONS(2425), + [anon_sym_ref] = ACTIONS(2427), + [anon_sym_LBRACE] = ACTIONS(2429), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1061), - [anon_sym_LT] = ACTIONS(2515), - [anon_sym_GT] = ACTIONS(2515), + [anon_sym_new] = ACTIONS(1059), + [anon_sym_LT] = ACTIONS(2431), + [anon_sym_GT] = ACTIONS(2431), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1067), - [anon_sym_BANG] = ACTIONS(1171), - [anon_sym_TILDE] = ACTIONS(1171), - [anon_sym_PLUS_PLUS] = ACTIONS(1171), - [anon_sym_DASH_DASH] = ACTIONS(1171), - [anon_sym_true] = ACTIONS(1173), - [anon_sym_false] = ACTIONS(1173), - [anon_sym_PLUS] = ACTIONS(1169), - [anon_sym_DASH] = ACTIONS(1169), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(1645), + [anon_sym_TILDE] = ACTIONS(1645), + [anon_sym_PLUS_PLUS] = ACTIONS(1645), + [anon_sym_DASH_DASH] = ACTIONS(1645), + [anon_sym_true] = ACTIONS(77), + [anon_sym_false] = ACTIONS(77), + [anon_sym_PLUS] = ACTIONS(1643), + [anon_sym_DASH] = ACTIONS(1643), [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(1171), - [anon_sym_AMP] = ACTIONS(1171), - [anon_sym_GT_EQ] = ACTIONS(2517), - [anon_sym_LT_EQ] = ACTIONS(2517), + [anon_sym_CARET] = ACTIONS(1645), + [anon_sym_AMP] = ACTIONS(1645), + [anon_sym_GT_EQ] = ACTIONS(2433), + [anon_sym_LT_EQ] = ACTIONS(2433), [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(2377), + [anon_sym_scoped] = ACTIONS(2435), [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(2379), - [sym_predefined_type] = ACTIONS(2381), - [anon_sym_unchecked] = ACTIONS(1067), + [anon_sym_var] = ACTIONS(2437), + [sym_predefined_type] = ACTIONS(91), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1183), - [anon_sym_throw] = ACTIONS(1589), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(1527), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1591), - [sym_discard] = ACTIONS(2383), + [anon_sym_await] = ACTIONS(1529), + [sym_discard] = ACTIONS(1081), [anon_sym_DOT_DOT] = ACTIONS(123), - [anon_sym_not] = ACTIONS(2519), + [anon_sym_not] = ACTIONS(2439), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -94945,18 +94831,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(1193), - [anon_sym_typeof] = ACTIONS(1195), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), [anon_sym___makeref] = ACTIONS(133), [anon_sym___reftype] = ACTIONS(135), [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(1203), - [anon_sym_SQUOTE] = ACTIONS(1205), - [sym_integer_literal] = ACTIONS(1203), - [sym_real_literal] = ACTIONS(1207), - [anon_sym_DQUOTE] = ACTIONS(1209), - [sym_verbatim_string_literal] = ACTIONS(1207), - [aux_sym_preproc_if_token1] = ACTIONS(1089), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_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), @@ -94967,104 +94853,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(1213), - [sym_interpolation_verbatim_start] = ACTIONS(1215), - [sym_interpolation_raw_start] = ACTIONS(1217), - [sym_raw_string_start] = ACTIONS(1219), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [sym_interpolation_raw_start] = ACTIONS(155), + [sym_raw_string_start] = ACTIONS(157), }, [336] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(2870), - [sym_alias_qualified_name] = STATE(2373), - [sym__simple_name] = STATE(2296), - [sym_qualified_name] = STATE(2373), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(2470), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(2378), - [sym__array_base_type] = STATE(7103), - [sym_nullable_type] = STATE(2379), - [sym_pointer_type] = STATE(2379), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(2379), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(2380), - [sym_pattern] = STATE(3990), - [sym_constant_pattern] = STATE(3774), - [sym_parenthesized_pattern] = STATE(3774), - [sym_var_pattern] = STATE(3774), - [sym_type_pattern] = STATE(3774), - [sym_list_pattern] = STATE(3774), - [sym_recursive_pattern] = STATE(3774), - [sym_positional_pattern_clause] = STATE(2553), - [sym_property_pattern_clause] = STATE(2604), - [sym_relational_pattern] = STATE(3774), - [sym_negated_pattern] = STATE(3774), - [sym_and_pattern] = STATE(3774), - [sym_or_pattern] = STATE(3774), - [sym_declaration_pattern] = STATE(3774), - [sym_expression] = STATE(5666), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3520), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3803), - [sym_postfix_unary_expression] = STATE(3804), - [sym_prefix_unary_expression] = STATE(3804), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6154), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3803), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3804), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3803), - [sym_member_access_expression] = STATE(2917), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3804), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7530), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(3803), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3803), - [sym_typeof_expression] = STATE(3803), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2917), - [sym_literal] = STATE(3803), - [sym_character_literal] = STATE(3877), - [sym_string_literal] = STATE(3877), - [sym_raw_string_literal] = STATE(3877), - [sym_boolean_literal] = STATE(3877), - [sym_identifier] = STATE(2186), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(2410), + [sym_alias_qualified_name] = STATE(2402), + [sym__simple_name] = STATE(2185), + [sym_qualified_name] = STATE(2402), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(2228), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(2373), + [sym__array_base_type] = STATE(7083), + [sym_nullable_type] = STATE(2375), + [sym_pointer_type] = STATE(2375), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(2375), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(2377), + [sym_pattern] = STATE(3247), + [sym_constant_pattern] = STATE(3311), + [sym_parenthesized_pattern] = STATE(3311), + [sym_var_pattern] = STATE(3311), + [sym_type_pattern] = STATE(3311), + [sym_list_pattern] = STATE(3311), + [sym_recursive_pattern] = STATE(3311), + [sym_positional_pattern_clause] = STATE(2257), + [sym_property_pattern_clause] = STATE(2289), + [sym_relational_pattern] = STATE(3311), + [sym_negated_pattern] = STATE(3311), + [sym_and_pattern] = STATE(3311), + [sym_or_pattern] = STATE(3311), + [sym_declaration_pattern] = STATE(3311), + [sym_expression] = STATE(5671), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3510), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3275), + [sym_postfix_unary_expression] = STATE(3276), + [sym_prefix_unary_expression] = STATE(3276), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6134), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3275), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3276), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3275), + [sym_member_access_expression] = STATE(2608), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3276), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7425), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(3275), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3275), + [sym_typeof_expression] = STATE(3275), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2608), + [sym_literal] = STATE(3275), + [sym_character_literal] = STATE(3272), + [sym_string_literal] = STATE(3272), + [sym_raw_string_literal] = STATE(3272), + [sym_boolean_literal] = STATE(3272), + [sym_identifier] = STATE(2178), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(336), [sym_preproc_endregion] = STATE(336), [sym_preproc_line] = STATE(336), @@ -95074,53 +94960,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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(2415), - [anon_sym_LPAREN] = ACTIONS(2417), - [anon_sym_ref] = ACTIONS(2369), - [anon_sym_LBRACE] = ACTIONS(2371), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(2357), + [anon_sym_LPAREN] = ACTIONS(2441), + [anon_sym_ref] = ACTIONS(2341), + [anon_sym_LBRACE] = ACTIONS(2343), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1061), - [anon_sym_LT] = ACTIONS(2419), - [anon_sym_GT] = ACTIONS(2419), + [anon_sym_new] = ACTIONS(1059), + [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(1067), - [anon_sym_BANG] = ACTIONS(1643), - [anon_sym_TILDE] = ACTIONS(1643), - [anon_sym_PLUS_PLUS] = ACTIONS(1643), - [anon_sym_DASH_DASH] = ACTIONS(1643), - [anon_sym_true] = ACTIONS(1645), - [anon_sym_false] = ACTIONS(1645), - [anon_sym_PLUS] = ACTIONS(1641), - [anon_sym_DASH] = ACTIONS(1641), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(1167), + [anon_sym_TILDE] = ACTIONS(1167), + [anon_sym_PLUS_PLUS] = ACTIONS(1167), + [anon_sym_DASH_DASH] = ACTIONS(1167), + [anon_sym_true] = ACTIONS(1169), + [anon_sym_false] = ACTIONS(1169), + [anon_sym_PLUS] = ACTIONS(1165), + [anon_sym_DASH] = ACTIONS(1165), [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(1643), - [anon_sym_AMP] = ACTIONS(1643), - [anon_sym_GT_EQ] = ACTIONS(2421), - [anon_sym_LT_EQ] = ACTIONS(2421), + [anon_sym_CARET] = ACTIONS(1167), + [anon_sym_AMP] = ACTIONS(1167), + [anon_sym_GT_EQ] = ACTIONS(2445), + [anon_sym_LT_EQ] = ACTIONS(2445), [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(2377), + [anon_sym_scoped] = ACTIONS(2349), [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(2423), - [sym_predefined_type] = ACTIONS(2425), - [anon_sym_unchecked] = ACTIONS(1067), + [anon_sym_var] = ACTIONS(2365), + [sym_predefined_type] = ACTIONS(2367), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1655), - [anon_sym_throw] = ACTIONS(1589), + [anon_sym_default] = ACTIONS(1179), + [anon_sym_throw] = ACTIONS(1527), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1591), - [sym_discard] = ACTIONS(2427), + [anon_sym_await] = ACTIONS(1529), + [sym_discard] = ACTIONS(2369), [anon_sym_DOT_DOT] = ACTIONS(123), - [anon_sym_not] = ACTIONS(2429), + [anon_sym_not] = ACTIONS(2447), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -95134,18 +95020,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(1665), - [anon_sym_typeof] = ACTIONS(1667), + [anon_sym_sizeof] = ACTIONS(1189), + [anon_sym_typeof] = ACTIONS(1191), [anon_sym___makeref] = ACTIONS(133), [anon_sym___reftype] = ACTIONS(135), [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(1675), - [anon_sym_SQUOTE] = ACTIONS(1677), - [sym_integer_literal] = ACTIONS(1675), - [sym_real_literal] = ACTIONS(1679), - [anon_sym_DQUOTE] = ACTIONS(1681), - [sym_verbatim_string_literal] = ACTIONS(1679), - [aux_sym_preproc_if_token1] = ACTIONS(1089), + [sym_null_literal] = ACTIONS(1199), + [anon_sym_SQUOTE] = ACTIONS(1201), + [sym_integer_literal] = ACTIONS(1199), + [sym_real_literal] = ACTIONS(1203), + [anon_sym_DQUOTE] = ACTIONS(1205), + [sym_verbatim_string_literal] = ACTIONS(1203), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -95156,104 +95042,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(1685), - [sym_interpolation_verbatim_start] = ACTIONS(1687), - [sym_interpolation_raw_start] = ACTIONS(1689), - [sym_raw_string_start] = ACTIONS(1691), + [sym_interpolation_regular_start] = ACTIONS(1209), + [sym_interpolation_verbatim_start] = ACTIONS(1211), + [sym_interpolation_raw_start] = ACTIONS(1213), + [sym_raw_string_start] = ACTIONS(1215), }, [337] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(5160), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2230), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(4363), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_pattern] = STATE(6632), - [sym_constant_pattern] = STATE(3486), - [sym_parenthesized_pattern] = STATE(3486), - [sym_var_pattern] = STATE(3486), - [sym_type_pattern] = STATE(3486), - [sym_list_pattern] = STATE(3486), - [sym_recursive_pattern] = STATE(3486), - [sym_positional_pattern_clause] = STATE(5175), - [sym_property_pattern_clause] = STATE(5675), - [sym_relational_pattern] = STATE(3486), - [sym_negated_pattern] = STATE(3486), - [sym_and_pattern] = STATE(3486), - [sym_or_pattern] = STATE(3486), - [sym_declaration_pattern] = STATE(3486), - [sym_expression] = STATE(5679), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3520), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(4419), - [sym_postfix_unary_expression] = STATE(4420), - [sym_prefix_unary_expression] = STATE(4420), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6154), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(4419), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(4420), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(4419), - [sym_member_access_expression] = STATE(3135), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(4420), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7530), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(4419), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(4419), - [sym_typeof_expression] = STATE(4419), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(3135), - [sym_literal] = STATE(4419), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(2853), + [sym_alias_qualified_name] = STATE(2402), + [sym__simple_name] = STATE(2288), + [sym_qualified_name] = STATE(2402), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(2463), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(2373), + [sym__array_base_type] = STATE(7083), + [sym_nullable_type] = STATE(2375), + [sym_pointer_type] = STATE(2375), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(2375), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(2377), + [sym_pattern] = STATE(3733), + [sym_constant_pattern] = STATE(3801), + [sym_parenthesized_pattern] = STATE(3801), + [sym_var_pattern] = STATE(3801), + [sym_type_pattern] = STATE(3801), + [sym_list_pattern] = STATE(3801), + [sym_recursive_pattern] = STATE(3801), + [sym_positional_pattern_clause] = STATE(2558), + [sym_property_pattern_clause] = STATE(2623), + [sym_relational_pattern] = STATE(3801), + [sym_negated_pattern] = STATE(3801), + [sym_and_pattern] = STATE(3801), + [sym_or_pattern] = STATE(3801), + [sym_declaration_pattern] = STATE(3801), + [sym_expression] = STATE(5661), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3510), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3790), + [sym_postfix_unary_expression] = STATE(3791), + [sym_prefix_unary_expression] = STATE(3791), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6134), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3790), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3791), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3790), + [sym_member_access_expression] = STATE(2896), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3791), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7425), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(3790), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3790), + [sym_typeof_expression] = STATE(3790), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2896), + [sym_literal] = STATE(3790), + [sym_character_literal] = STATE(3843), + [sym_string_literal] = STATE(3843), + [sym_raw_string_literal] = STATE(3843), + [sym_boolean_literal] = STATE(3843), + [sym_identifier] = STATE(2178), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(337), [sym_preproc_endregion] = STATE(337), [sym_preproc_line] = STATE(337), @@ -95263,53 +95149,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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1049), - [anon_sym_LPAREN] = ACTIONS(1053), - [anon_sym_ref] = ACTIONS(2303), - [anon_sym_LBRACE] = ACTIONS(1059), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(2473), + [anon_sym_LPAREN] = ACTIONS(2475), + [anon_sym_ref] = ACTIONS(2341), + [anon_sym_LBRACE] = ACTIONS(2343), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1061), - [anon_sym_LT] = ACTIONS(1063), - [anon_sym_GT] = ACTIONS(1063), + [anon_sym_new] = ACTIONS(1059), + [anon_sym_LT] = ACTIONS(2477), + [anon_sym_GT] = ACTIONS(2477), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1067), - [anon_sym_BANG] = ACTIONS(1069), - [anon_sym_TILDE] = ACTIONS(1069), - [anon_sym_PLUS_PLUS] = ACTIONS(1069), - [anon_sym_DASH_DASH] = ACTIONS(1069), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1071), - [anon_sym_DASH] = ACTIONS(1071), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(1763), + [anon_sym_TILDE] = ACTIONS(1763), + [anon_sym_PLUS_PLUS] = ACTIONS(1763), + [anon_sym_DASH_DASH] = ACTIONS(1763), + [anon_sym_true] = ACTIONS(1673), + [anon_sym_false] = ACTIONS(1673), + [anon_sym_PLUS] = ACTIONS(1761), + [anon_sym_DASH] = ACTIONS(1761), [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(1069), - [anon_sym_AMP] = ACTIONS(1069), - [anon_sym_GT_EQ] = ACTIONS(1073), - [anon_sym_LT_EQ] = ACTIONS(1073), + [anon_sym_CARET] = ACTIONS(1763), + [anon_sym_AMP] = ACTIONS(1763), + [anon_sym_GT_EQ] = ACTIONS(2479), + [anon_sym_LT_EQ] = ACTIONS(2479), [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(1075), + [anon_sym_scoped] = ACTIONS(2349), [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(1077), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1067), + [anon_sym_var] = ACTIONS(2481), + [sym_predefined_type] = ACTIONS(2483), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1589), + [anon_sym_default] = ACTIONS(1683), + [anon_sym_throw] = ACTIONS(1527), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1591), - [sym_discard] = ACTIONS(1083), - [anon_sym_DOT_DOT] = ACTIONS(2305), - [anon_sym_not] = ACTIONS(1087), + [anon_sym_await] = ACTIONS(1529), + [sym_discard] = ACTIONS(2485), + [anon_sym_DOT_DOT] = ACTIONS(123), + [anon_sym_not] = ACTIONS(2487), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -95323,18 +95209,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(129), - [anon_sym_typeof] = ACTIONS(131), + [anon_sym_sizeof] = ACTIONS(1693), + [anon_sym_typeof] = ACTIONS(1695), [anon_sym___makeref] = ACTIONS(133), [anon_sym___reftype] = ACTIONS(135), [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1089), + [sym_null_literal] = ACTIONS(1703), + [anon_sym_SQUOTE] = ACTIONS(1705), + [sym_integer_literal] = ACTIONS(1703), + [sym_real_literal] = ACTIONS(1707), + [anon_sym_DQUOTE] = ACTIONS(1709), + [sym_verbatim_string_literal] = ACTIONS(1707), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -95345,104 +95231,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(1713), + [sym_interpolation_verbatim_start] = ACTIONS(1715), + [sym_interpolation_raw_start] = ACTIONS(1717), + [sym_raw_string_start] = ACTIONS(1719), }, [338] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(2426), - [sym_alias_qualified_name] = STATE(2373), - [sym__simple_name] = STATE(2189), - [sym_qualified_name] = STATE(2373), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(2231), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(2378), - [sym__array_base_type] = STATE(7103), - [sym_nullable_type] = STATE(2379), - [sym_pointer_type] = STATE(2379), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(2379), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(2380), - [sym_pattern] = STATE(4086), - [sym_constant_pattern] = STATE(3295), - [sym_parenthesized_pattern] = STATE(3295), - [sym_var_pattern] = STATE(3295), - [sym_type_pattern] = STATE(3295), - [sym_list_pattern] = STATE(3295), - [sym_recursive_pattern] = STATE(3295), - [sym_positional_pattern_clause] = STATE(2251), - [sym_property_pattern_clause] = STATE(2302), - [sym_relational_pattern] = STATE(3295), - [sym_negated_pattern] = STATE(3295), - [sym_and_pattern] = STATE(3295), - [sym_or_pattern] = STATE(3295), - [sym_declaration_pattern] = STATE(3295), - [sym_expression] = STATE(5669), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3520), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3310), - [sym_postfix_unary_expression] = STATE(3312), - [sym_prefix_unary_expression] = STATE(3312), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6154), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3310), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3312), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3310), - [sym_member_access_expression] = STATE(2617), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3312), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7530), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(3310), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3310), - [sym_typeof_expression] = STATE(3310), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2617), - [sym_literal] = STATE(3310), - [sym_character_literal] = STATE(3278), - [sym_string_literal] = STATE(3278), - [sym_raw_string_literal] = STATE(3278), - [sym_boolean_literal] = STATE(3278), - [sym_identifier] = STATE(2186), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(2853), + [sym_alias_qualified_name] = STATE(2402), + [sym__simple_name] = STATE(2288), + [sym_qualified_name] = STATE(2402), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(2463), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(2373), + [sym__array_base_type] = STATE(7083), + [sym_nullable_type] = STATE(2375), + [sym_pointer_type] = STATE(2375), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(2375), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(2377), + [sym_pattern] = STATE(3717), + [sym_constant_pattern] = STATE(3801), + [sym_parenthesized_pattern] = STATE(3801), + [sym_var_pattern] = STATE(3801), + [sym_type_pattern] = STATE(3801), + [sym_list_pattern] = STATE(3801), + [sym_recursive_pattern] = STATE(3801), + [sym_positional_pattern_clause] = STATE(2558), + [sym_property_pattern_clause] = STATE(2623), + [sym_relational_pattern] = STATE(3801), + [sym_negated_pattern] = STATE(3801), + [sym_and_pattern] = STATE(3801), + [sym_or_pattern] = STATE(3801), + [sym_declaration_pattern] = STATE(3801), + [sym_expression] = STATE(5661), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3510), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3790), + [sym_postfix_unary_expression] = STATE(3791), + [sym_prefix_unary_expression] = STATE(3791), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6134), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3790), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3791), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3790), + [sym_member_access_expression] = STATE(2896), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3791), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7425), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(3790), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3790), + [sym_typeof_expression] = STATE(3790), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2896), + [sym_literal] = STATE(3790), + [sym_character_literal] = STATE(3843), + [sym_string_literal] = STATE(3843), + [sym_raw_string_literal] = STATE(3843), + [sym_boolean_literal] = STATE(3843), + [sym_identifier] = STATE(2178), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(338), [sym_preproc_endregion] = STATE(338), [sym_preproc_line] = STATE(338), @@ -95452,53 +95338,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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(2365), - [anon_sym_LPAREN] = ACTIONS(2513), - [anon_sym_ref] = ACTIONS(2369), - [anon_sym_LBRACE] = ACTIONS(2371), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(2473), + [anon_sym_LPAREN] = ACTIONS(2475), + [anon_sym_ref] = ACTIONS(2341), + [anon_sym_LBRACE] = ACTIONS(2343), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1061), - [anon_sym_LT] = ACTIONS(2515), - [anon_sym_GT] = ACTIONS(2515), + [anon_sym_new] = ACTIONS(1059), + [anon_sym_LT] = ACTIONS(2477), + [anon_sym_GT] = ACTIONS(2477), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1067), - [anon_sym_BANG] = ACTIONS(1171), - [anon_sym_TILDE] = ACTIONS(1171), - [anon_sym_PLUS_PLUS] = ACTIONS(1171), - [anon_sym_DASH_DASH] = ACTIONS(1171), - [anon_sym_true] = ACTIONS(1173), - [anon_sym_false] = ACTIONS(1173), - [anon_sym_PLUS] = ACTIONS(1169), - [anon_sym_DASH] = ACTIONS(1169), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(1763), + [anon_sym_TILDE] = ACTIONS(1763), + [anon_sym_PLUS_PLUS] = ACTIONS(1763), + [anon_sym_DASH_DASH] = ACTIONS(1763), + [anon_sym_true] = ACTIONS(1673), + [anon_sym_false] = ACTIONS(1673), + [anon_sym_PLUS] = ACTIONS(1761), + [anon_sym_DASH] = ACTIONS(1761), [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(1171), - [anon_sym_AMP] = ACTIONS(1171), - [anon_sym_GT_EQ] = ACTIONS(2517), - [anon_sym_LT_EQ] = ACTIONS(2517), + [anon_sym_CARET] = ACTIONS(1763), + [anon_sym_AMP] = ACTIONS(1763), + [anon_sym_GT_EQ] = ACTIONS(2479), + [anon_sym_LT_EQ] = ACTIONS(2479), [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(2377), + [anon_sym_scoped] = ACTIONS(2349), [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(2379), - [sym_predefined_type] = ACTIONS(2381), - [anon_sym_unchecked] = ACTIONS(1067), + [anon_sym_var] = ACTIONS(2481), + [sym_predefined_type] = ACTIONS(2483), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1183), - [anon_sym_throw] = ACTIONS(1589), + [anon_sym_default] = ACTIONS(1683), + [anon_sym_throw] = ACTIONS(1527), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1591), - [sym_discard] = ACTIONS(2383), + [anon_sym_await] = ACTIONS(1529), + [sym_discard] = ACTIONS(2485), [anon_sym_DOT_DOT] = ACTIONS(123), - [anon_sym_not] = ACTIONS(2519), + [anon_sym_not] = ACTIONS(2487), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -95512,18 +95398,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(1193), - [anon_sym_typeof] = ACTIONS(1195), + [anon_sym_sizeof] = ACTIONS(1693), + [anon_sym_typeof] = ACTIONS(1695), [anon_sym___makeref] = ACTIONS(133), [anon_sym___reftype] = ACTIONS(135), [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(1203), - [anon_sym_SQUOTE] = ACTIONS(1205), - [sym_integer_literal] = ACTIONS(1203), - [sym_real_literal] = ACTIONS(1207), - [anon_sym_DQUOTE] = ACTIONS(1209), - [sym_verbatim_string_literal] = ACTIONS(1207), - [aux_sym_preproc_if_token1] = ACTIONS(1089), + [sym_null_literal] = ACTIONS(1703), + [anon_sym_SQUOTE] = ACTIONS(1705), + [sym_integer_literal] = ACTIONS(1703), + [sym_real_literal] = ACTIONS(1707), + [anon_sym_DQUOTE] = ACTIONS(1709), + [sym_verbatim_string_literal] = ACTIONS(1707), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -95534,104 +95420,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(1213), - [sym_interpolation_verbatim_start] = ACTIONS(1215), - [sym_interpolation_raw_start] = ACTIONS(1217), - [sym_raw_string_start] = ACTIONS(1219), + [sym_interpolation_regular_start] = ACTIONS(1713), + [sym_interpolation_verbatim_start] = ACTIONS(1715), + [sym_interpolation_raw_start] = ACTIONS(1717), + [sym_raw_string_start] = ACTIONS(1719), }, [339] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(2862), - [sym_alias_qualified_name] = STATE(2373), - [sym__simple_name] = STATE(2279), - [sym_qualified_name] = STATE(2373), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(2483), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(2378), - [sym__array_base_type] = STATE(7103), - [sym_nullable_type] = STATE(2379), - [sym_pointer_type] = STATE(2379), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(2379), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(2380), - [sym_pattern] = STATE(4977), - [sym_constant_pattern] = STATE(3295), - [sym_parenthesized_pattern] = STATE(3295), - [sym_var_pattern] = STATE(3295), - [sym_type_pattern] = STATE(3295), - [sym_list_pattern] = STATE(3295), - [sym_recursive_pattern] = STATE(3295), - [sym_positional_pattern_clause] = STATE(2527), - [sym_property_pattern_clause] = STATE(2589), - [sym_relational_pattern] = STATE(3295), - [sym_negated_pattern] = STATE(3295), - [sym_and_pattern] = STATE(3295), - [sym_or_pattern] = STATE(3295), - [sym_declaration_pattern] = STATE(3295), - [sym_expression] = STATE(5698), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3520), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3310), - [sym_postfix_unary_expression] = STATE(3312), - [sym_prefix_unary_expression] = STATE(3312), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6154), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3310), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3312), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3310), - [sym_member_access_expression] = STATE(2617), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3312), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7530), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(3310), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3310), - [sym_typeof_expression] = STATE(3310), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2617), - [sym_literal] = STATE(3310), - [sym_character_literal] = STATE(3278), - [sym_string_literal] = STATE(3278), - [sym_raw_string_literal] = STATE(3278), - [sym_boolean_literal] = STATE(3278), - [sym_identifier] = STATE(2214), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(2853), + [sym_alias_qualified_name] = STATE(2402), + [sym__simple_name] = STATE(2288), + [sym_qualified_name] = STATE(2402), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(2463), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(2373), + [sym__array_base_type] = STATE(7083), + [sym_nullable_type] = STATE(2375), + [sym_pointer_type] = STATE(2375), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(2375), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(2377), + [sym_pattern] = STATE(3719), + [sym_constant_pattern] = STATE(3801), + [sym_parenthesized_pattern] = STATE(3801), + [sym_var_pattern] = STATE(3801), + [sym_type_pattern] = STATE(3801), + [sym_list_pattern] = STATE(3801), + [sym_recursive_pattern] = STATE(3801), + [sym_positional_pattern_clause] = STATE(2558), + [sym_property_pattern_clause] = STATE(2623), + [sym_relational_pattern] = STATE(3801), + [sym_negated_pattern] = STATE(3801), + [sym_and_pattern] = STATE(3801), + [sym_or_pattern] = STATE(3801), + [sym_declaration_pattern] = STATE(3801), + [sym_expression] = STATE(5661), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3510), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3790), + [sym_postfix_unary_expression] = STATE(3791), + [sym_prefix_unary_expression] = STATE(3791), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6134), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3790), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3791), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3790), + [sym_member_access_expression] = STATE(2896), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3791), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7425), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(3790), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3790), + [sym_typeof_expression] = STATE(3790), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2896), + [sym_literal] = STATE(3790), + [sym_character_literal] = STATE(3843), + [sym_string_literal] = STATE(3843), + [sym_raw_string_literal] = STATE(3843), + [sym_boolean_literal] = STATE(3843), + [sym_identifier] = STATE(2178), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(339), [sym_preproc_endregion] = STATE(339), [sym_preproc_line] = STATE(339), @@ -95641,53 +95527,53 @@ 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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(2365), - [anon_sym_LPAREN] = ACTIONS(2521), - [anon_sym_ref] = ACTIONS(2389), - [anon_sym_LBRACE] = ACTIONS(2371), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(2473), + [anon_sym_LPAREN] = ACTIONS(2475), + [anon_sym_ref] = ACTIONS(2341), + [anon_sym_LBRACE] = ACTIONS(2343), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1061), - [anon_sym_LT] = ACTIONS(2523), - [anon_sym_GT] = ACTIONS(2523), + [anon_sym_new] = ACTIONS(1059), + [anon_sym_LT] = ACTIONS(2477), + [anon_sym_GT] = ACTIONS(2477), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1067), - [anon_sym_BANG] = ACTIONS(1565), - [anon_sym_TILDE] = ACTIONS(1565), - [anon_sym_PLUS_PLUS] = ACTIONS(1565), - [anon_sym_DASH_DASH] = ACTIONS(1565), - [anon_sym_true] = ACTIONS(1173), - [anon_sym_false] = ACTIONS(1173), - [anon_sym_PLUS] = ACTIONS(1563), - [anon_sym_DASH] = ACTIONS(1563), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(1763), + [anon_sym_TILDE] = ACTIONS(1763), + [anon_sym_PLUS_PLUS] = ACTIONS(1763), + [anon_sym_DASH_DASH] = ACTIONS(1763), + [anon_sym_true] = ACTIONS(1673), + [anon_sym_false] = ACTIONS(1673), + [anon_sym_PLUS] = ACTIONS(1761), + [anon_sym_DASH] = ACTIONS(1761), [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(1565), - [anon_sym_AMP] = ACTIONS(1565), - [anon_sym_GT_EQ] = ACTIONS(2525), - [anon_sym_LT_EQ] = ACTIONS(2525), + [anon_sym_CARET] = ACTIONS(1763), + [anon_sym_AMP] = ACTIONS(1763), + [anon_sym_GT_EQ] = ACTIONS(2479), + [anon_sym_LT_EQ] = ACTIONS(2479), [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(2395), + [anon_sym_scoped] = ACTIONS(2349), [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(2379), - [sym_predefined_type] = ACTIONS(2381), - [anon_sym_unchecked] = ACTIONS(1067), + [anon_sym_var] = ACTIONS(2481), + [sym_predefined_type] = ACTIONS(2483), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1183), - [anon_sym_throw] = ACTIONS(1589), + [anon_sym_default] = ACTIONS(1683), + [anon_sym_throw] = ACTIONS(1527), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1591), - [sym_discard] = ACTIONS(2383), + [anon_sym_await] = ACTIONS(1529), + [sym_discard] = ACTIONS(2485), [anon_sym_DOT_DOT] = ACTIONS(123), - [anon_sym_not] = ACTIONS(2527), + [anon_sym_not] = ACTIONS(2487), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -95701,18 +95587,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(1193), - [anon_sym_typeof] = ACTIONS(1195), + [anon_sym_sizeof] = ACTIONS(1693), + [anon_sym_typeof] = ACTIONS(1695), [anon_sym___makeref] = ACTIONS(133), [anon_sym___reftype] = ACTIONS(135), [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(1203), - [anon_sym_SQUOTE] = ACTIONS(1205), - [sym_integer_literal] = ACTIONS(1203), - [sym_real_literal] = ACTIONS(1207), - [anon_sym_DQUOTE] = ACTIONS(1209), - [sym_verbatim_string_literal] = ACTIONS(1207), - [aux_sym_preproc_if_token1] = ACTIONS(1089), + [sym_null_literal] = ACTIONS(1703), + [anon_sym_SQUOTE] = ACTIONS(1705), + [sym_integer_literal] = ACTIONS(1703), + [sym_real_literal] = ACTIONS(1707), + [anon_sym_DQUOTE] = ACTIONS(1709), + [sym_verbatim_string_literal] = ACTIONS(1707), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -95723,104 +95609,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(1213), - [sym_interpolation_verbatim_start] = ACTIONS(1215), - [sym_interpolation_raw_start] = ACTIONS(1217), - [sym_raw_string_start] = ACTIONS(1219), + [sym_interpolation_regular_start] = ACTIONS(1713), + [sym_interpolation_verbatim_start] = ACTIONS(1715), + [sym_interpolation_raw_start] = ACTIONS(1717), + [sym_raw_string_start] = ACTIONS(1719), }, [340] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(2862), - [sym_alias_qualified_name] = STATE(2373), - [sym__simple_name] = STATE(2279), - [sym_qualified_name] = STATE(2373), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(2483), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(2378), - [sym__array_base_type] = STATE(7103), - [sym_nullable_type] = STATE(2379), - [sym_pointer_type] = STATE(2379), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(2379), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(2380), - [sym_pattern] = STATE(3236), - [sym_constant_pattern] = STATE(3295), - [sym_parenthesized_pattern] = STATE(3295), - [sym_var_pattern] = STATE(3295), - [sym_type_pattern] = STATE(3295), - [sym_list_pattern] = STATE(3295), - [sym_recursive_pattern] = STATE(3295), - [sym_positional_pattern_clause] = STATE(2527), - [sym_property_pattern_clause] = STATE(2589), - [sym_relational_pattern] = STATE(3295), - [sym_negated_pattern] = STATE(3295), - [sym_and_pattern] = STATE(3295), - [sym_or_pattern] = STATE(3295), - [sym_declaration_pattern] = STATE(3295), - [sym_expression] = STATE(5698), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3520), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3310), - [sym_postfix_unary_expression] = STATE(3312), - [sym_prefix_unary_expression] = STATE(3312), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6154), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3310), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3312), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3310), - [sym_member_access_expression] = STATE(2617), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3312), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7530), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(3310), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3310), - [sym_typeof_expression] = STATE(3310), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2617), - [sym_literal] = STATE(3310), - [sym_character_literal] = STATE(3278), - [sym_string_literal] = STATE(3278), - [sym_raw_string_literal] = STATE(3278), - [sym_boolean_literal] = STATE(3278), - [sym_identifier] = STATE(2214), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(5710), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2270), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5155), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_pattern] = STATE(6616), + [sym_constant_pattern] = STATE(3429), + [sym_parenthesized_pattern] = STATE(3429), + [sym_var_pattern] = STATE(3429), + [sym_type_pattern] = STATE(3429), + [sym_list_pattern] = STATE(3429), + [sym_recursive_pattern] = STATE(3429), + [sym_positional_pattern_clause] = STATE(5689), + [sym_property_pattern_clause] = STATE(5723), + [sym_relational_pattern] = STATE(3429), + [sym_negated_pattern] = STATE(3429), + [sym_and_pattern] = STATE(3429), + [sym_or_pattern] = STATE(3429), + [sym_declaration_pattern] = STATE(3429), + [sym_expression] = STATE(5380), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3660), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(5192), + [sym_postfix_unary_expression] = STATE(5193), + [sym_prefix_unary_expression] = STATE(5193), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6163), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(5192), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(5193), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(5192), + [sym_member_access_expression] = STATE(3446), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(5193), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7633), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(5192), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(5192), + [sym_typeof_expression] = STATE(5192), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(3446), + [sym_literal] = STATE(5192), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2242), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(340), [sym_preproc_endregion] = STATE(340), [sym_preproc_line] = STATE(340), @@ -95830,53 +95716,53 @@ 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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(2365), - [anon_sym_LPAREN] = ACTIONS(2521), - [anon_sym_ref] = ACTIONS(2389), - [anon_sym_LBRACE] = ACTIONS(2371), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_LPAREN] = ACTIONS(2425), + [anon_sym_ref] = ACTIONS(2515), + [anon_sym_LBRACE] = ACTIONS(2429), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1061), - [anon_sym_LT] = ACTIONS(2523), - [anon_sym_GT] = ACTIONS(2523), + [anon_sym_new] = ACTIONS(1095), + [anon_sym_LT] = ACTIONS(2431), + [anon_sym_GT] = ACTIONS(2431), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1067), - [anon_sym_BANG] = ACTIONS(1565), - [anon_sym_TILDE] = ACTIONS(1565), - [anon_sym_PLUS_PLUS] = ACTIONS(1565), - [anon_sym_DASH_DASH] = ACTIONS(1565), - [anon_sym_true] = ACTIONS(1173), - [anon_sym_false] = ACTIONS(1173), - [anon_sym_PLUS] = ACTIONS(1563), - [anon_sym_DASH] = ACTIONS(1563), - [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(1565), - [anon_sym_AMP] = ACTIONS(1565), - [anon_sym_GT_EQ] = ACTIONS(2525), - [anon_sym_LT_EQ] = ACTIONS(2525), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(1645), + [anon_sym_TILDE] = ACTIONS(1645), + [anon_sym_PLUS_PLUS] = ACTIONS(1645), + [anon_sym_DASH_DASH] = ACTIONS(1645), + [anon_sym_true] = ACTIONS(77), + [anon_sym_false] = ACTIONS(77), + [anon_sym_PLUS] = ACTIONS(1643), + [anon_sym_DASH] = ACTIONS(1643), + [anon_sym_STAR] = ACTIONS(1227), + [anon_sym_CARET] = ACTIONS(1645), + [anon_sym_AMP] = ACTIONS(1645), + [anon_sym_GT_EQ] = ACTIONS(2433), + [anon_sym_LT_EQ] = ACTIONS(2433), [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(2395), + [anon_sym_scoped] = ACTIONS(2435), [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(2379), - [sym_predefined_type] = ACTIONS(2381), - [anon_sym_unchecked] = ACTIONS(1067), + [anon_sym_var] = ACTIONS(2437), + [sym_predefined_type] = ACTIONS(91), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1183), - [anon_sym_throw] = ACTIONS(1589), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(1231), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1591), - [sym_discard] = ACTIONS(2383), - [anon_sym_DOT_DOT] = ACTIONS(123), - [anon_sym_not] = ACTIONS(2527), + [anon_sym_await] = ACTIONS(1233), + [sym_discard] = ACTIONS(1081), + [anon_sym_DOT_DOT] = ACTIONS(1235), + [anon_sym_not] = ACTIONS(2439), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -95890,18 +95776,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(1193), - [anon_sym_typeof] = ACTIONS(1195), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), [anon_sym___makeref] = ACTIONS(133), [anon_sym___reftype] = ACTIONS(135), [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(1203), - [anon_sym_SQUOTE] = ACTIONS(1205), - [sym_integer_literal] = ACTIONS(1203), - [sym_real_literal] = ACTIONS(1207), - [anon_sym_DQUOTE] = ACTIONS(1209), - [sym_verbatim_string_literal] = ACTIONS(1207), - [aux_sym_preproc_if_token1] = ACTIONS(1089), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_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), @@ -95912,104 +95798,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(1213), - [sym_interpolation_verbatim_start] = ACTIONS(1215), - [sym_interpolation_raw_start] = ACTIONS(1217), - [sym_raw_string_start] = ACTIONS(1219), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [sym_interpolation_raw_start] = ACTIONS(155), + [sym_raw_string_start] = ACTIONS(157), }, [341] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(2862), - [sym_alias_qualified_name] = STATE(2373), - [sym__simple_name] = STATE(2279), - [sym_qualified_name] = STATE(2373), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(2483), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(2378), - [sym__array_base_type] = STATE(7103), - [sym_nullable_type] = STATE(2379), - [sym_pointer_type] = STATE(2379), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(2379), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(2380), - [sym_pattern] = STATE(4953), - [sym_constant_pattern] = STATE(3295), - [sym_parenthesized_pattern] = STATE(3295), - [sym_var_pattern] = STATE(3295), - [sym_type_pattern] = STATE(3295), - [sym_list_pattern] = STATE(3295), - [sym_recursive_pattern] = STATE(3295), - [sym_positional_pattern_clause] = STATE(2527), - [sym_property_pattern_clause] = STATE(2589), - [sym_relational_pattern] = STATE(3295), - [sym_negated_pattern] = STATE(3295), - [sym_and_pattern] = STATE(3295), - [sym_or_pattern] = STATE(3295), - [sym_declaration_pattern] = STATE(3295), - [sym_expression] = STATE(5698), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3520), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3310), - [sym_postfix_unary_expression] = STATE(3312), - [sym_prefix_unary_expression] = STATE(3312), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6154), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3310), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3312), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3310), - [sym_member_access_expression] = STATE(2617), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3312), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7530), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(3310), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3310), - [sym_typeof_expression] = STATE(3310), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2617), - [sym_literal] = STATE(3310), - [sym_character_literal] = STATE(3278), - [sym_string_literal] = STATE(3278), - [sym_raw_string_literal] = STATE(3278), - [sym_boolean_literal] = STATE(3278), - [sym_identifier] = STATE(2214), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(2850), + [sym_alias_qualified_name] = STATE(2402), + [sym__simple_name] = STATE(2271), + [sym_qualified_name] = STATE(2402), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(2450), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(2373), + [sym__array_base_type] = STATE(7083), + [sym_nullable_type] = STATE(2375), + [sym_pointer_type] = STATE(2375), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(2375), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(2377), + [sym_pattern] = STATE(4975), + [sym_constant_pattern] = STATE(3311), + [sym_parenthesized_pattern] = STATE(3311), + [sym_var_pattern] = STATE(3311), + [sym_type_pattern] = STATE(3311), + [sym_list_pattern] = STATE(3311), + [sym_recursive_pattern] = STATE(3311), + [sym_positional_pattern_clause] = STATE(2526), + [sym_property_pattern_clause] = STATE(2588), + [sym_relational_pattern] = STATE(3311), + [sym_negated_pattern] = STATE(3311), + [sym_and_pattern] = STATE(3311), + [sym_or_pattern] = STATE(3311), + [sym_declaration_pattern] = STATE(3311), + [sym_expression] = STATE(5651), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3510), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3275), + [sym_postfix_unary_expression] = STATE(3276), + [sym_prefix_unary_expression] = STATE(3276), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6134), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3275), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3276), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3275), + [sym_member_access_expression] = STATE(2608), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3276), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7425), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(3275), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3275), + [sym_typeof_expression] = STATE(3275), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2608), + [sym_literal] = STATE(3275), + [sym_character_literal] = STATE(3272), + [sym_string_literal] = STATE(3272), + [sym_raw_string_literal] = STATE(3272), + [sym_boolean_literal] = STATE(3272), + [sym_identifier] = STATE(2202), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(341), [sym_preproc_endregion] = STATE(341), [sym_preproc_line] = STATE(341), @@ -96019,51 +95905,51 @@ 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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(2365), - [anon_sym_LPAREN] = ACTIONS(2521), - [anon_sym_ref] = ACTIONS(2389), - [anon_sym_LBRACE] = ACTIONS(2371), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(2357), + [anon_sym_LPAREN] = ACTIONS(2517), + [anon_sym_ref] = ACTIONS(2519), + [anon_sym_LBRACE] = ACTIONS(2343), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1061), - [anon_sym_LT] = ACTIONS(2523), - [anon_sym_GT] = ACTIONS(2523), + [anon_sym_new] = ACTIONS(1059), + [anon_sym_LT] = ACTIONS(2521), + [anon_sym_GT] = ACTIONS(2521), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1067), - [anon_sym_BANG] = ACTIONS(1565), - [anon_sym_TILDE] = ACTIONS(1565), - [anon_sym_PLUS_PLUS] = ACTIONS(1565), - [anon_sym_DASH_DASH] = ACTIONS(1565), - [anon_sym_true] = ACTIONS(1173), - [anon_sym_false] = ACTIONS(1173), - [anon_sym_PLUS] = ACTIONS(1563), - [anon_sym_DASH] = ACTIONS(1563), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(1539), + [anon_sym_TILDE] = ACTIONS(1539), + [anon_sym_PLUS_PLUS] = ACTIONS(1539), + [anon_sym_DASH_DASH] = ACTIONS(1539), + [anon_sym_true] = ACTIONS(1169), + [anon_sym_false] = ACTIONS(1169), + [anon_sym_PLUS] = ACTIONS(1537), + [anon_sym_DASH] = ACTIONS(1537), [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(1565), - [anon_sym_AMP] = ACTIONS(1565), - [anon_sym_GT_EQ] = ACTIONS(2525), - [anon_sym_LT_EQ] = ACTIONS(2525), + [anon_sym_CARET] = ACTIONS(1539), + [anon_sym_AMP] = ACTIONS(1539), + [anon_sym_GT_EQ] = ACTIONS(2523), + [anon_sym_LT_EQ] = ACTIONS(2523), [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(2395), + [anon_sym_scoped] = ACTIONS(2525), [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(2379), - [sym_predefined_type] = ACTIONS(2381), - [anon_sym_unchecked] = ACTIONS(1067), + [anon_sym_var] = ACTIONS(2365), + [sym_predefined_type] = ACTIONS(2367), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1183), - [anon_sym_throw] = ACTIONS(1589), + [anon_sym_default] = ACTIONS(1179), + [anon_sym_throw] = ACTIONS(1527), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1591), - [sym_discard] = ACTIONS(2383), + [anon_sym_await] = ACTIONS(1529), + [sym_discard] = ACTIONS(2369), [anon_sym_DOT_DOT] = ACTIONS(123), [anon_sym_not] = ACTIONS(2527), [anon_sym_from] = ACTIONS(125), @@ -96079,18 +95965,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(1193), - [anon_sym_typeof] = ACTIONS(1195), + [anon_sym_sizeof] = ACTIONS(1189), + [anon_sym_typeof] = ACTIONS(1191), [anon_sym___makeref] = ACTIONS(133), [anon_sym___reftype] = ACTIONS(135), [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(1203), - [anon_sym_SQUOTE] = ACTIONS(1205), - [sym_integer_literal] = ACTIONS(1203), - [sym_real_literal] = ACTIONS(1207), - [anon_sym_DQUOTE] = ACTIONS(1209), - [sym_verbatim_string_literal] = ACTIONS(1207), - [aux_sym_preproc_if_token1] = ACTIONS(1089), + [sym_null_literal] = ACTIONS(1199), + [anon_sym_SQUOTE] = ACTIONS(1201), + [sym_integer_literal] = ACTIONS(1199), + [sym_real_literal] = ACTIONS(1203), + [anon_sym_DQUOTE] = ACTIONS(1205), + [sym_verbatim_string_literal] = ACTIONS(1203), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -96101,104 +95987,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(1213), - [sym_interpolation_verbatim_start] = ACTIONS(1215), - [sym_interpolation_raw_start] = ACTIONS(1217), - [sym_raw_string_start] = ACTIONS(1219), + [sym_interpolation_regular_start] = ACTIONS(1209), + [sym_interpolation_verbatim_start] = ACTIONS(1211), + [sym_interpolation_raw_start] = ACTIONS(1213), + [sym_raw_string_start] = ACTIONS(1215), }, [342] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(2426), - [sym_alias_qualified_name] = STATE(2373), - [sym__simple_name] = STATE(2189), - [sym_qualified_name] = STATE(2373), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(2231), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(2378), - [sym__array_base_type] = STATE(7103), - [sym_nullable_type] = STATE(2379), - [sym_pointer_type] = STATE(2379), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(2379), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(2380), - [sym_pattern] = STATE(3236), - [sym_constant_pattern] = STATE(3295), - [sym_parenthesized_pattern] = STATE(3295), - [sym_var_pattern] = STATE(3295), - [sym_type_pattern] = STATE(3295), - [sym_list_pattern] = STATE(3295), - [sym_recursive_pattern] = STATE(3295), - [sym_positional_pattern_clause] = STATE(2251), - [sym_property_pattern_clause] = STATE(2302), - [sym_relational_pattern] = STATE(3295), - [sym_negated_pattern] = STATE(3295), - [sym_and_pattern] = STATE(3295), - [sym_or_pattern] = STATE(3295), - [sym_declaration_pattern] = STATE(3295), - [sym_expression] = STATE(5669), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3520), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3310), - [sym_postfix_unary_expression] = STATE(3312), - [sym_prefix_unary_expression] = STATE(3312), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6154), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3310), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3312), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3310), - [sym_member_access_expression] = STATE(2617), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3312), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7530), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(3310), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3310), - [sym_typeof_expression] = STATE(3310), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2617), - [sym_literal] = STATE(3310), - [sym_character_literal] = STATE(3278), - [sym_string_literal] = STATE(3278), - [sym_raw_string_literal] = STATE(3278), - [sym_boolean_literal] = STATE(3278), - [sym_identifier] = STATE(2186), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(2850), + [sym_alias_qualified_name] = STATE(2402), + [sym__simple_name] = STATE(2271), + [sym_qualified_name] = STATE(2402), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(2450), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(2373), + [sym__array_base_type] = STATE(7083), + [sym_nullable_type] = STATE(2375), + [sym_pointer_type] = STATE(2375), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(2375), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(2377), + [sym_pattern] = STATE(3260), + [sym_constant_pattern] = STATE(3311), + [sym_parenthesized_pattern] = STATE(3311), + [sym_var_pattern] = STATE(3311), + [sym_type_pattern] = STATE(3311), + [sym_list_pattern] = STATE(3311), + [sym_recursive_pattern] = STATE(3311), + [sym_positional_pattern_clause] = STATE(2526), + [sym_property_pattern_clause] = STATE(2588), + [sym_relational_pattern] = STATE(3311), + [sym_negated_pattern] = STATE(3311), + [sym_and_pattern] = STATE(3311), + [sym_or_pattern] = STATE(3311), + [sym_declaration_pattern] = STATE(3311), + [sym_expression] = STATE(5651), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3510), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3275), + [sym_postfix_unary_expression] = STATE(3276), + [sym_prefix_unary_expression] = STATE(3276), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6134), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3275), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3276), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3275), + [sym_member_access_expression] = STATE(2608), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3276), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7425), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(3275), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3275), + [sym_typeof_expression] = STATE(3275), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2608), + [sym_literal] = STATE(3275), + [sym_character_literal] = STATE(3272), + [sym_string_literal] = STATE(3272), + [sym_raw_string_literal] = STATE(3272), + [sym_boolean_literal] = STATE(3272), + [sym_identifier] = STATE(2202), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(342), [sym_preproc_endregion] = STATE(342), [sym_preproc_line] = STATE(342), @@ -96208,53 +96094,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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(2365), - [anon_sym_LPAREN] = ACTIONS(2513), - [anon_sym_ref] = ACTIONS(2369), - [anon_sym_LBRACE] = ACTIONS(2371), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(2357), + [anon_sym_LPAREN] = ACTIONS(2517), + [anon_sym_ref] = ACTIONS(2519), + [anon_sym_LBRACE] = ACTIONS(2343), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1061), - [anon_sym_LT] = ACTIONS(2515), - [anon_sym_GT] = ACTIONS(2515), + [anon_sym_new] = ACTIONS(1059), + [anon_sym_LT] = ACTIONS(2521), + [anon_sym_GT] = ACTIONS(2521), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1067), - [anon_sym_BANG] = ACTIONS(1171), - [anon_sym_TILDE] = ACTIONS(1171), - [anon_sym_PLUS_PLUS] = ACTIONS(1171), - [anon_sym_DASH_DASH] = ACTIONS(1171), - [anon_sym_true] = ACTIONS(1173), - [anon_sym_false] = ACTIONS(1173), - [anon_sym_PLUS] = ACTIONS(1169), - [anon_sym_DASH] = ACTIONS(1169), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(1539), + [anon_sym_TILDE] = ACTIONS(1539), + [anon_sym_PLUS_PLUS] = ACTIONS(1539), + [anon_sym_DASH_DASH] = ACTIONS(1539), + [anon_sym_true] = ACTIONS(1169), + [anon_sym_false] = ACTIONS(1169), + [anon_sym_PLUS] = ACTIONS(1537), + [anon_sym_DASH] = ACTIONS(1537), [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(1171), - [anon_sym_AMP] = ACTIONS(1171), - [anon_sym_GT_EQ] = ACTIONS(2517), - [anon_sym_LT_EQ] = ACTIONS(2517), + [anon_sym_CARET] = ACTIONS(1539), + [anon_sym_AMP] = ACTIONS(1539), + [anon_sym_GT_EQ] = ACTIONS(2523), + [anon_sym_LT_EQ] = ACTIONS(2523), [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(2377), + [anon_sym_scoped] = ACTIONS(2525), [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(2379), - [sym_predefined_type] = ACTIONS(2381), - [anon_sym_unchecked] = ACTIONS(1067), + [anon_sym_var] = ACTIONS(2365), + [sym_predefined_type] = ACTIONS(2367), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1183), - [anon_sym_throw] = ACTIONS(1589), + [anon_sym_default] = ACTIONS(1179), + [anon_sym_throw] = ACTIONS(1527), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1591), - [sym_discard] = ACTIONS(2383), + [anon_sym_await] = ACTIONS(1529), + [sym_discard] = ACTIONS(2369), [anon_sym_DOT_DOT] = ACTIONS(123), - [anon_sym_not] = ACTIONS(2519), + [anon_sym_not] = ACTIONS(2527), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -96268,18 +96154,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(1193), - [anon_sym_typeof] = ACTIONS(1195), + [anon_sym_sizeof] = ACTIONS(1189), + [anon_sym_typeof] = ACTIONS(1191), [anon_sym___makeref] = ACTIONS(133), [anon_sym___reftype] = ACTIONS(135), [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(1203), - [anon_sym_SQUOTE] = ACTIONS(1205), - [sym_integer_literal] = ACTIONS(1203), - [sym_real_literal] = ACTIONS(1207), - [anon_sym_DQUOTE] = ACTIONS(1209), - [sym_verbatim_string_literal] = ACTIONS(1207), - [aux_sym_preproc_if_token1] = ACTIONS(1089), + [sym_null_literal] = ACTIONS(1199), + [anon_sym_SQUOTE] = ACTIONS(1201), + [sym_integer_literal] = ACTIONS(1199), + [sym_real_literal] = ACTIONS(1203), + [anon_sym_DQUOTE] = ACTIONS(1205), + [sym_verbatim_string_literal] = ACTIONS(1203), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -96290,104 +96176,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(1213), - [sym_interpolation_verbatim_start] = ACTIONS(1215), - [sym_interpolation_raw_start] = ACTIONS(1217), - [sym_raw_string_start] = ACTIONS(1219), + [sym_interpolation_regular_start] = ACTIONS(1209), + [sym_interpolation_verbatim_start] = ACTIONS(1211), + [sym_interpolation_raw_start] = ACTIONS(1213), + [sym_raw_string_start] = ACTIONS(1215), }, [343] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(2426), - [sym_alias_qualified_name] = STATE(2373), - [sym__simple_name] = STATE(2189), - [sym_qualified_name] = STATE(2373), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(2231), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(2378), - [sym__array_base_type] = STATE(7103), - [sym_nullable_type] = STATE(2379), - [sym_pointer_type] = STATE(2379), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(2379), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(2380), - [sym_pattern] = STATE(4066), - [sym_constant_pattern] = STATE(3295), - [sym_parenthesized_pattern] = STATE(3295), - [sym_var_pattern] = STATE(3295), - [sym_type_pattern] = STATE(3295), - [sym_list_pattern] = STATE(3295), - [sym_recursive_pattern] = STATE(3295), - [sym_positional_pattern_clause] = STATE(2251), - [sym_property_pattern_clause] = STATE(2302), - [sym_relational_pattern] = STATE(3295), - [sym_negated_pattern] = STATE(3295), - [sym_and_pattern] = STATE(3295), - [sym_or_pattern] = STATE(3295), - [sym_declaration_pattern] = STATE(3295), - [sym_expression] = STATE(5669), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3520), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3310), - [sym_postfix_unary_expression] = STATE(3312), - [sym_prefix_unary_expression] = STATE(3312), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6154), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3310), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3312), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3310), - [sym_member_access_expression] = STATE(2617), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3312), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7530), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(3310), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3310), - [sym_typeof_expression] = STATE(3310), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2617), - [sym_literal] = STATE(3310), - [sym_character_literal] = STATE(3278), - [sym_string_literal] = STATE(3278), - [sym_raw_string_literal] = STATE(3278), - [sym_boolean_literal] = STATE(3278), - [sym_identifier] = STATE(2186), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(2850), + [sym_alias_qualified_name] = STATE(2402), + [sym__simple_name] = STATE(2271), + [sym_qualified_name] = STATE(2402), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(2450), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(2373), + [sym__array_base_type] = STATE(7083), + [sym_nullable_type] = STATE(2375), + [sym_pointer_type] = STATE(2375), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(2375), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(2377), + [sym_pattern] = STATE(5053), + [sym_constant_pattern] = STATE(3311), + [sym_parenthesized_pattern] = STATE(3311), + [sym_var_pattern] = STATE(3311), + [sym_type_pattern] = STATE(3311), + [sym_list_pattern] = STATE(3311), + [sym_recursive_pattern] = STATE(3311), + [sym_positional_pattern_clause] = STATE(2526), + [sym_property_pattern_clause] = STATE(2588), + [sym_relational_pattern] = STATE(3311), + [sym_negated_pattern] = STATE(3311), + [sym_and_pattern] = STATE(3311), + [sym_or_pattern] = STATE(3311), + [sym_declaration_pattern] = STATE(3311), + [sym_expression] = STATE(5651), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3510), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3275), + [sym_postfix_unary_expression] = STATE(3276), + [sym_prefix_unary_expression] = STATE(3276), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6134), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3275), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3276), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3275), + [sym_member_access_expression] = STATE(2608), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3276), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7425), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(3275), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3275), + [sym_typeof_expression] = STATE(3275), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2608), + [sym_literal] = STATE(3275), + [sym_character_literal] = STATE(3272), + [sym_string_literal] = STATE(3272), + [sym_raw_string_literal] = STATE(3272), + [sym_boolean_literal] = STATE(3272), + [sym_identifier] = STATE(2202), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(343), [sym_preproc_endregion] = STATE(343), [sym_preproc_line] = STATE(343), @@ -96397,53 +96283,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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(2365), - [anon_sym_LPAREN] = ACTIONS(2513), - [anon_sym_ref] = ACTIONS(2369), - [anon_sym_LBRACE] = ACTIONS(2371), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(2357), + [anon_sym_LPAREN] = ACTIONS(2517), + [anon_sym_ref] = ACTIONS(2519), + [anon_sym_LBRACE] = ACTIONS(2343), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1061), - [anon_sym_LT] = ACTIONS(2515), - [anon_sym_GT] = ACTIONS(2515), + [anon_sym_new] = ACTIONS(1059), + [anon_sym_LT] = ACTIONS(2521), + [anon_sym_GT] = ACTIONS(2521), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1067), - [anon_sym_BANG] = ACTIONS(1171), - [anon_sym_TILDE] = ACTIONS(1171), - [anon_sym_PLUS_PLUS] = ACTIONS(1171), - [anon_sym_DASH_DASH] = ACTIONS(1171), - [anon_sym_true] = ACTIONS(1173), - [anon_sym_false] = ACTIONS(1173), - [anon_sym_PLUS] = ACTIONS(1169), - [anon_sym_DASH] = ACTIONS(1169), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(1539), + [anon_sym_TILDE] = ACTIONS(1539), + [anon_sym_PLUS_PLUS] = ACTIONS(1539), + [anon_sym_DASH_DASH] = ACTIONS(1539), + [anon_sym_true] = ACTIONS(1169), + [anon_sym_false] = ACTIONS(1169), + [anon_sym_PLUS] = ACTIONS(1537), + [anon_sym_DASH] = ACTIONS(1537), [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(1171), - [anon_sym_AMP] = ACTIONS(1171), - [anon_sym_GT_EQ] = ACTIONS(2517), - [anon_sym_LT_EQ] = ACTIONS(2517), + [anon_sym_CARET] = ACTIONS(1539), + [anon_sym_AMP] = ACTIONS(1539), + [anon_sym_GT_EQ] = ACTIONS(2523), + [anon_sym_LT_EQ] = ACTIONS(2523), [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(2377), + [anon_sym_scoped] = ACTIONS(2525), [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(2379), - [sym_predefined_type] = ACTIONS(2381), - [anon_sym_unchecked] = ACTIONS(1067), + [anon_sym_var] = ACTIONS(2365), + [sym_predefined_type] = ACTIONS(2367), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1183), - [anon_sym_throw] = ACTIONS(1589), + [anon_sym_default] = ACTIONS(1179), + [anon_sym_throw] = ACTIONS(1527), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1591), - [sym_discard] = ACTIONS(2383), + [anon_sym_await] = ACTIONS(1529), + [sym_discard] = ACTIONS(2369), [anon_sym_DOT_DOT] = ACTIONS(123), - [anon_sym_not] = ACTIONS(2519), + [anon_sym_not] = ACTIONS(2527), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -96457,18 +96343,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(1193), - [anon_sym_typeof] = ACTIONS(1195), + [anon_sym_sizeof] = ACTIONS(1189), + [anon_sym_typeof] = ACTIONS(1191), [anon_sym___makeref] = ACTIONS(133), [anon_sym___reftype] = ACTIONS(135), [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(1203), - [anon_sym_SQUOTE] = ACTIONS(1205), - [sym_integer_literal] = ACTIONS(1203), - [sym_real_literal] = ACTIONS(1207), - [anon_sym_DQUOTE] = ACTIONS(1209), - [sym_verbatim_string_literal] = ACTIONS(1207), - [aux_sym_preproc_if_token1] = ACTIONS(1089), + [sym_null_literal] = ACTIONS(1199), + [anon_sym_SQUOTE] = ACTIONS(1201), + [sym_integer_literal] = ACTIONS(1199), + [sym_real_literal] = ACTIONS(1203), + [anon_sym_DQUOTE] = ACTIONS(1205), + [sym_verbatim_string_literal] = ACTIONS(1203), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -96479,104 +96365,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(1213), - [sym_interpolation_verbatim_start] = ACTIONS(1215), - [sym_interpolation_raw_start] = ACTIONS(1217), - [sym_raw_string_start] = ACTIONS(1219), + [sym_interpolation_regular_start] = ACTIONS(1209), + [sym_interpolation_verbatim_start] = ACTIONS(1211), + [sym_interpolation_raw_start] = ACTIONS(1213), + [sym_raw_string_start] = ACTIONS(1215), }, [344] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(2763), - [sym_alias_qualified_name] = STATE(2764), - [sym__simple_name] = STATE(2252), - [sym_qualified_name] = STATE(2764), - [sym_generic_name] = STATE(2269), - [sym_type] = STATE(2392), - [sym_implicit_type] = STATE(2791), - [sym_array_type] = STATE(2767), - [sym__array_base_type] = STATE(7243), - [sym_nullable_type] = STATE(2768), - [sym_pointer_type] = STATE(2768), - [sym__pointer_base_type] = STATE(7717), - [sym_function_pointer_type] = STATE(2768), - [sym_ref_type] = STATE(2791), - [sym_scoped_type] = STATE(2791), - [sym_tuple_type] = STATE(2769), - [sym_pattern] = STATE(5018), - [sym_constant_pattern] = STATE(4631), - [sym_parenthesized_pattern] = STATE(4631), - [sym_var_pattern] = STATE(4631), - [sym_type_pattern] = STATE(4631), - [sym_list_pattern] = STATE(4631), - [sym_recursive_pattern] = STATE(4631), - [sym_positional_pattern_clause] = STATE(2519), - [sym_property_pattern_clause] = STATE(2563), - [sym_relational_pattern] = STATE(4631), - [sym_negated_pattern] = STATE(4631), - [sym_and_pattern] = STATE(4631), - [sym_or_pattern] = STATE(4631), - [sym_declaration_pattern] = STATE(4631), - [sym_expression] = STATE(5671), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3520), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(4544), - [sym_postfix_unary_expression] = STATE(4545), - [sym_prefix_unary_expression] = STATE(4545), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6154), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(4544), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(4545), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(4544), - [sym_member_access_expression] = STATE(3197), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(4545), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7530), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(4544), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(4544), - [sym_typeof_expression] = STATE(4544), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(3197), - [sym_literal] = STATE(4544), - [sym_character_literal] = STATE(4536), - [sym_string_literal] = STATE(4536), - [sym_raw_string_literal] = STATE(4536), - [sym_boolean_literal] = STATE(4536), - [sym_identifier] = STATE(2226), - [sym__reserved_identifier] = STATE(2240), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(2598), + [sym_alias_qualified_name] = STATE(2402), + [sym__simple_name] = STATE(2185), + [sym_qualified_name] = STATE(2402), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(2232), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(2373), + [sym__array_base_type] = STATE(7083), + [sym_nullable_type] = STATE(2375), + [sym_pointer_type] = STATE(2375), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(2375), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(2377), + [sym_pattern] = STATE(4479), + [sym_constant_pattern] = STATE(3311), + [sym_parenthesized_pattern] = STATE(3311), + [sym_var_pattern] = STATE(3311), + [sym_type_pattern] = STATE(3311), + [sym_list_pattern] = STATE(3311), + [sym_recursive_pattern] = STATE(3311), + [sym_positional_pattern_clause] = STATE(2257), + [sym_property_pattern_clause] = STATE(2289), + [sym_relational_pattern] = STATE(3311), + [sym_negated_pattern] = STATE(3311), + [sym_and_pattern] = STATE(3311), + [sym_or_pattern] = STATE(3311), + [sym_declaration_pattern] = STATE(3311), + [sym_expression] = STATE(5677), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3510), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3275), + [sym_postfix_unary_expression] = STATE(3276), + [sym_prefix_unary_expression] = STATE(3276), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6134), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3275), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3276), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3275), + [sym_member_access_expression] = STATE(2608), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3276), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7425), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(3275), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3275), + [sym_typeof_expression] = STATE(3275), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2608), + [sym_literal] = STATE(3275), + [sym_character_literal] = STATE(3272), + [sym_string_literal] = STATE(3272), + [sym_raw_string_literal] = STATE(3272), + [sym_boolean_literal] = STATE(3272), + [sym_identifier] = STATE(2202), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(344), [sym_preproc_endregion] = STATE(344), [sym_preproc_line] = STATE(344), @@ -96586,78 +96472,78 @@ 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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), - [sym__identifier_token] = ACTIONS(1387), - [anon_sym_alias] = ACTIONS(1389), - [anon_sym_global] = ACTIONS(1389), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(2341), - [anon_sym_LPAREN] = ACTIONS(2343), - [anon_sym_ref] = ACTIONS(2345), - [anon_sym_LBRACE] = ACTIONS(2347), - [anon_sym_delegate] = ACTIONS(2349), - [anon_sym_async] = ACTIONS(1047), - [anon_sym_file] = ACTIONS(1389), - [anon_sym_new] = ACTIONS(1061), - [anon_sym_LT] = ACTIONS(2351), - [anon_sym_GT] = ACTIONS(2351), - [anon_sym_where] = ACTIONS(1389), - [anon_sym_notnull] = ACTIONS(1389), - [anon_sym_unmanaged] = ACTIONS(1389), - [anon_sym_checked] = ACTIONS(1067), - [anon_sym_BANG] = ACTIONS(1471), - [anon_sym_TILDE] = ACTIONS(1471), - [anon_sym_PLUS_PLUS] = ACTIONS(1471), - [anon_sym_DASH_DASH] = ACTIONS(1471), - [anon_sym_true] = ACTIONS(1409), - [anon_sym_false] = ACTIONS(1409), - [anon_sym_PLUS] = ACTIONS(1469), - [anon_sym_DASH] = ACTIONS(1469), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), + [sym__identifier_token] = ACTIONS(25), + [anon_sym_alias] = ACTIONS(29), + [anon_sym_global] = ACTIONS(29), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(2357), + [anon_sym_LPAREN] = ACTIONS(2529), + [anon_sym_ref] = ACTIONS(2519), + [anon_sym_LBRACE] = ACTIONS(2343), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), + [anon_sym_file] = ACTIONS(29), + [anon_sym_new] = ACTIONS(1059), + [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(1347), + [anon_sym_TILDE] = ACTIONS(1347), + [anon_sym_PLUS_PLUS] = ACTIONS(1347), + [anon_sym_DASH_DASH] = ACTIONS(1347), + [anon_sym_true] = ACTIONS(1169), + [anon_sym_false] = ACTIONS(1169), + [anon_sym_PLUS] = ACTIONS(1345), + [anon_sym_DASH] = ACTIONS(1345), [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(1471), - [anon_sym_AMP] = ACTIONS(1471), - [anon_sym_GT_EQ] = ACTIONS(2353), - [anon_sym_LT_EQ] = ACTIONS(2353), + [anon_sym_CARET] = ACTIONS(1347), + [anon_sym_AMP] = ACTIONS(1347), + [anon_sym_GT_EQ] = ACTIONS(2533), + [anon_sym_LT_EQ] = ACTIONS(2533), [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(2355), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(2357), - [sym_predefined_type] = ACTIONS(2359), - [anon_sym_unchecked] = ACTIONS(1067), - [anon_sym_yield] = ACTIONS(1389), - [anon_sym_default] = ACTIONS(1423), - [anon_sym_throw] = ACTIONS(1589), - [anon_sym_when] = ACTIONS(1389), - [anon_sym_await] = ACTIONS(1591), - [sym_discard] = ACTIONS(2361), + [anon_sym_scoped] = ACTIONS(2525), + [anon_sym_base] = ACTIONS(87), + [anon_sym_var] = ACTIONS(2365), + [sym_predefined_type] = ACTIONS(2367), + [anon_sym_unchecked] = ACTIONS(1065), + [anon_sym_yield] = ACTIONS(29), + [anon_sym_default] = ACTIONS(1179), + [anon_sym_throw] = ACTIONS(1527), + [anon_sym_when] = ACTIONS(29), + [anon_sym_await] = ACTIONS(1529), + [sym_discard] = ACTIONS(2369), [anon_sym_DOT_DOT] = ACTIONS(123), - [anon_sym_not] = ACTIONS(2363), - [anon_sym_from] = ACTIONS(1431), - [anon_sym_into] = ACTIONS(1389), - [anon_sym_join] = ACTIONS(1389), - [anon_sym_on] = ACTIONS(1389), - [anon_sym_equals] = ACTIONS(1389), - [anon_sym_let] = ACTIONS(1389), - [anon_sym_orderby] = ACTIONS(1389), - [anon_sym_ascending] = ACTIONS(1389), - [anon_sym_descending] = ACTIONS(1389), - [anon_sym_group] = ACTIONS(1389), - [anon_sym_by] = ACTIONS(1389), - [anon_sym_select] = ACTIONS(1389), + [anon_sym_not] = ACTIONS(2535), + [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(1435), - [anon_sym_typeof] = ACTIONS(1437), + [anon_sym_sizeof] = ACTIONS(1189), + [anon_sym_typeof] = ACTIONS(1191), [anon_sym___makeref] = ACTIONS(133), [anon_sym___reftype] = ACTIONS(135), [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(1445), - [anon_sym_SQUOTE] = ACTIONS(1447), - [sym_integer_literal] = ACTIONS(1445), - [sym_real_literal] = ACTIONS(1449), - [anon_sym_DQUOTE] = ACTIONS(1451), - [sym_verbatim_string_literal] = ACTIONS(1449), - [aux_sym_preproc_if_token1] = ACTIONS(1089), + [sym_null_literal] = ACTIONS(1199), + [anon_sym_SQUOTE] = ACTIONS(1201), + [sym_integer_literal] = ACTIONS(1199), + [sym_real_literal] = ACTIONS(1203), + [anon_sym_DQUOTE] = ACTIONS(1205), + [sym_verbatim_string_literal] = ACTIONS(1203), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -96668,104 +96554,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(1455), - [sym_interpolation_verbatim_start] = ACTIONS(1457), - [sym_interpolation_raw_start] = ACTIONS(1459), - [sym_raw_string_start] = ACTIONS(1461), + [sym_interpolation_regular_start] = ACTIONS(1209), + [sym_interpolation_verbatim_start] = ACTIONS(1211), + [sym_interpolation_raw_start] = ACTIONS(1213), + [sym_raw_string_start] = ACTIONS(1215), }, [345] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(2763), - [sym_alias_qualified_name] = STATE(2764), - [sym__simple_name] = STATE(2252), - [sym_qualified_name] = STATE(2764), - [sym_generic_name] = STATE(2269), - [sym_type] = STATE(2392), - [sym_implicit_type] = STATE(2791), - [sym_array_type] = STATE(2767), - [sym__array_base_type] = STATE(7243), - [sym_nullable_type] = STATE(2768), - [sym_pointer_type] = STATE(2768), - [sym__pointer_base_type] = STATE(7717), - [sym_function_pointer_type] = STATE(2768), - [sym_ref_type] = STATE(2791), - [sym_scoped_type] = STATE(2791), - [sym_tuple_type] = STATE(2769), - [sym_pattern] = STATE(4512), - [sym_constant_pattern] = STATE(4631), - [sym_parenthesized_pattern] = STATE(4631), - [sym_var_pattern] = STATE(4631), - [sym_type_pattern] = STATE(4631), - [sym_list_pattern] = STATE(4631), - [sym_recursive_pattern] = STATE(4631), - [sym_positional_pattern_clause] = STATE(2519), - [sym_property_pattern_clause] = STATE(2563), - [sym_relational_pattern] = STATE(4631), - [sym_negated_pattern] = STATE(4631), - [sym_and_pattern] = STATE(4631), - [sym_or_pattern] = STATE(4631), - [sym_declaration_pattern] = STATE(4631), - [sym_expression] = STATE(5671), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3520), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(4544), - [sym_postfix_unary_expression] = STATE(4545), - [sym_prefix_unary_expression] = STATE(4545), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6154), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(4544), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(4545), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(4544), - [sym_member_access_expression] = STATE(3197), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(4545), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7530), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(4544), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(4544), - [sym_typeof_expression] = STATE(4544), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(3197), - [sym_literal] = STATE(4544), - [sym_character_literal] = STATE(4536), - [sym_string_literal] = STATE(4536), - [sym_raw_string_literal] = STATE(4536), - [sym_boolean_literal] = STATE(4536), - [sym_identifier] = STATE(2226), - [sym__reserved_identifier] = STATE(2240), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(2598), + [sym_alias_qualified_name] = STATE(2402), + [sym__simple_name] = STATE(2185), + [sym_qualified_name] = STATE(2402), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(2232), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(2373), + [sym__array_base_type] = STATE(7083), + [sym_nullable_type] = STATE(2375), + [sym_pointer_type] = STATE(2375), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(2375), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(2377), + [sym_pattern] = STATE(3260), + [sym_constant_pattern] = STATE(3311), + [sym_parenthesized_pattern] = STATE(3311), + [sym_var_pattern] = STATE(3311), + [sym_type_pattern] = STATE(3311), + [sym_list_pattern] = STATE(3311), + [sym_recursive_pattern] = STATE(3311), + [sym_positional_pattern_clause] = STATE(2257), + [sym_property_pattern_clause] = STATE(2289), + [sym_relational_pattern] = STATE(3311), + [sym_negated_pattern] = STATE(3311), + [sym_and_pattern] = STATE(3311), + [sym_or_pattern] = STATE(3311), + [sym_declaration_pattern] = STATE(3311), + [sym_expression] = STATE(5677), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3510), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3275), + [sym_postfix_unary_expression] = STATE(3276), + [sym_prefix_unary_expression] = STATE(3276), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6134), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3275), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3276), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3275), + [sym_member_access_expression] = STATE(2608), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3276), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7425), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(3275), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3275), + [sym_typeof_expression] = STATE(3275), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2608), + [sym_literal] = STATE(3275), + [sym_character_literal] = STATE(3272), + [sym_string_literal] = STATE(3272), + [sym_raw_string_literal] = STATE(3272), + [sym_boolean_literal] = STATE(3272), + [sym_identifier] = STATE(2202), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(345), [sym_preproc_endregion] = STATE(345), [sym_preproc_line] = STATE(345), @@ -96775,78 +96661,78 @@ 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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), - [sym__identifier_token] = ACTIONS(1387), - [anon_sym_alias] = ACTIONS(1389), - [anon_sym_global] = ACTIONS(1389), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(2341), - [anon_sym_LPAREN] = ACTIONS(2343), - [anon_sym_ref] = ACTIONS(2345), - [anon_sym_LBRACE] = ACTIONS(2347), - [anon_sym_delegate] = ACTIONS(2349), - [anon_sym_async] = ACTIONS(1047), - [anon_sym_file] = ACTIONS(1389), - [anon_sym_new] = ACTIONS(1061), - [anon_sym_LT] = ACTIONS(2351), - [anon_sym_GT] = ACTIONS(2351), - [anon_sym_where] = ACTIONS(1389), - [anon_sym_notnull] = ACTIONS(1389), - [anon_sym_unmanaged] = ACTIONS(1389), - [anon_sym_checked] = ACTIONS(1067), - [anon_sym_BANG] = ACTIONS(1471), - [anon_sym_TILDE] = ACTIONS(1471), - [anon_sym_PLUS_PLUS] = ACTIONS(1471), - [anon_sym_DASH_DASH] = ACTIONS(1471), - [anon_sym_true] = ACTIONS(1409), - [anon_sym_false] = ACTIONS(1409), - [anon_sym_PLUS] = ACTIONS(1469), - [anon_sym_DASH] = ACTIONS(1469), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), + [sym__identifier_token] = ACTIONS(25), + [anon_sym_alias] = ACTIONS(29), + [anon_sym_global] = ACTIONS(29), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(2357), + [anon_sym_LPAREN] = ACTIONS(2529), + [anon_sym_ref] = ACTIONS(2519), + [anon_sym_LBRACE] = ACTIONS(2343), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), + [anon_sym_file] = ACTIONS(29), + [anon_sym_new] = ACTIONS(1059), + [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(1347), + [anon_sym_TILDE] = ACTIONS(1347), + [anon_sym_PLUS_PLUS] = ACTIONS(1347), + [anon_sym_DASH_DASH] = ACTIONS(1347), + [anon_sym_true] = ACTIONS(1169), + [anon_sym_false] = ACTIONS(1169), + [anon_sym_PLUS] = ACTIONS(1345), + [anon_sym_DASH] = ACTIONS(1345), [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(1471), - [anon_sym_AMP] = ACTIONS(1471), - [anon_sym_GT_EQ] = ACTIONS(2353), - [anon_sym_LT_EQ] = ACTIONS(2353), + [anon_sym_CARET] = ACTIONS(1347), + [anon_sym_AMP] = ACTIONS(1347), + [anon_sym_GT_EQ] = ACTIONS(2533), + [anon_sym_LT_EQ] = ACTIONS(2533), [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(2355), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(2357), - [sym_predefined_type] = ACTIONS(2359), - [anon_sym_unchecked] = ACTIONS(1067), - [anon_sym_yield] = ACTIONS(1389), - [anon_sym_default] = ACTIONS(1423), - [anon_sym_throw] = ACTIONS(1589), - [anon_sym_when] = ACTIONS(1389), - [anon_sym_await] = ACTIONS(1591), - [sym_discard] = ACTIONS(2361), + [anon_sym_scoped] = ACTIONS(2525), + [anon_sym_base] = ACTIONS(87), + [anon_sym_var] = ACTIONS(2365), + [sym_predefined_type] = ACTIONS(2367), + [anon_sym_unchecked] = ACTIONS(1065), + [anon_sym_yield] = ACTIONS(29), + [anon_sym_default] = ACTIONS(1179), + [anon_sym_throw] = ACTIONS(1527), + [anon_sym_when] = ACTIONS(29), + [anon_sym_await] = ACTIONS(1529), + [sym_discard] = ACTIONS(2369), [anon_sym_DOT_DOT] = ACTIONS(123), - [anon_sym_not] = ACTIONS(2363), - [anon_sym_from] = ACTIONS(1431), - [anon_sym_into] = ACTIONS(1389), - [anon_sym_join] = ACTIONS(1389), - [anon_sym_on] = ACTIONS(1389), - [anon_sym_equals] = ACTIONS(1389), - [anon_sym_let] = ACTIONS(1389), - [anon_sym_orderby] = ACTIONS(1389), - [anon_sym_ascending] = ACTIONS(1389), - [anon_sym_descending] = ACTIONS(1389), - [anon_sym_group] = ACTIONS(1389), - [anon_sym_by] = ACTIONS(1389), - [anon_sym_select] = ACTIONS(1389), + [anon_sym_not] = ACTIONS(2535), + [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(1435), - [anon_sym_typeof] = ACTIONS(1437), + [anon_sym_sizeof] = ACTIONS(1189), + [anon_sym_typeof] = ACTIONS(1191), [anon_sym___makeref] = ACTIONS(133), [anon_sym___reftype] = ACTIONS(135), [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(1445), - [anon_sym_SQUOTE] = ACTIONS(1447), - [sym_integer_literal] = ACTIONS(1445), - [sym_real_literal] = ACTIONS(1449), - [anon_sym_DQUOTE] = ACTIONS(1451), - [sym_verbatim_string_literal] = ACTIONS(1449), - [aux_sym_preproc_if_token1] = ACTIONS(1089), + [sym_null_literal] = ACTIONS(1199), + [anon_sym_SQUOTE] = ACTIONS(1201), + [sym_integer_literal] = ACTIONS(1199), + [sym_real_literal] = ACTIONS(1203), + [anon_sym_DQUOTE] = ACTIONS(1205), + [sym_verbatim_string_literal] = ACTIONS(1203), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -96857,104 +96743,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(1455), - [sym_interpolation_verbatim_start] = ACTIONS(1457), - [sym_interpolation_raw_start] = ACTIONS(1459), - [sym_raw_string_start] = ACTIONS(1461), + [sym_interpolation_regular_start] = ACTIONS(1209), + [sym_interpolation_verbatim_start] = ACTIONS(1211), + [sym_interpolation_raw_start] = ACTIONS(1213), + [sym_raw_string_start] = ACTIONS(1215), }, [346] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(2621), - [sym_alias_qualified_name] = STATE(2373), - [sym__simple_name] = STATE(2191), - [sym_qualified_name] = STATE(2373), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(2250), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(2378), - [sym__array_base_type] = STATE(7103), - [sym_nullable_type] = STATE(2379), - [sym_pointer_type] = STATE(2379), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(2379), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(2380), - [sym_pattern] = STATE(3424), - [sym_constant_pattern] = STATE(3486), - [sym_parenthesized_pattern] = STATE(3486), - [sym_var_pattern] = STATE(3486), - [sym_type_pattern] = STATE(3486), - [sym_list_pattern] = STATE(3486), - [sym_recursive_pattern] = STATE(3486), - [sym_positional_pattern_clause] = STATE(2276), - [sym_property_pattern_clause] = STATE(2330), - [sym_relational_pattern] = STATE(3486), - [sym_negated_pattern] = STATE(3486), - [sym_and_pattern] = STATE(3486), - [sym_or_pattern] = STATE(3486), - [sym_declaration_pattern] = STATE(3486), - [sym_expression] = STATE(5678), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3520), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3455), - [sym_postfix_unary_expression] = STATE(3469), - [sym_prefix_unary_expression] = STATE(3469), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6154), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3455), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3469), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3455), - [sym_member_access_expression] = STATE(2719), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3469), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7530), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(3455), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3455), - [sym_typeof_expression] = STATE(3455), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2719), - [sym_literal] = STATE(3455), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2214), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(2598), + [sym_alias_qualified_name] = STATE(2402), + [sym__simple_name] = STATE(2185), + [sym_qualified_name] = STATE(2402), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(2232), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(2373), + [sym__array_base_type] = STATE(7083), + [sym_nullable_type] = STATE(2375), + [sym_pointer_type] = STATE(2375), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(2375), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(2377), + [sym_pattern] = STATE(4389), + [sym_constant_pattern] = STATE(3311), + [sym_parenthesized_pattern] = STATE(3311), + [sym_var_pattern] = STATE(3311), + [sym_type_pattern] = STATE(3311), + [sym_list_pattern] = STATE(3311), + [sym_recursive_pattern] = STATE(3311), + [sym_positional_pattern_clause] = STATE(2257), + [sym_property_pattern_clause] = STATE(2289), + [sym_relational_pattern] = STATE(3311), + [sym_negated_pattern] = STATE(3311), + [sym_and_pattern] = STATE(3311), + [sym_or_pattern] = STATE(3311), + [sym_declaration_pattern] = STATE(3311), + [sym_expression] = STATE(5677), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3510), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3275), + [sym_postfix_unary_expression] = STATE(3276), + [sym_prefix_unary_expression] = STATE(3276), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6134), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3275), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3276), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3275), + [sym_member_access_expression] = STATE(2608), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3276), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7425), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(3275), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3275), + [sym_typeof_expression] = STATE(3275), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2608), + [sym_literal] = STATE(3275), + [sym_character_literal] = STATE(3272), + [sym_string_literal] = STATE(3272), + [sym_raw_string_literal] = STATE(3272), + [sym_boolean_literal] = STATE(3272), + [sym_identifier] = STATE(2202), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(346), [sym_preproc_endregion] = STATE(346), [sym_preproc_line] = STATE(346), @@ -96964,51 +96850,51 @@ 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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1049), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(2357), [anon_sym_LPAREN] = ACTIONS(2529), - [anon_sym_ref] = ACTIONS(2389), - [anon_sym_LBRACE] = ACTIONS(2371), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_ref] = ACTIONS(2519), + [anon_sym_LBRACE] = ACTIONS(2343), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1061), + [anon_sym_new] = ACTIONS(1059), [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(1067), - [anon_sym_BANG] = ACTIONS(1107), - [anon_sym_TILDE] = ACTIONS(1107), - [anon_sym_PLUS_PLUS] = ACTIONS(1107), - [anon_sym_DASH_DASH] = ACTIONS(1107), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1109), - [anon_sym_DASH] = ACTIONS(1109), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(1347), + [anon_sym_TILDE] = ACTIONS(1347), + [anon_sym_PLUS_PLUS] = ACTIONS(1347), + [anon_sym_DASH_DASH] = ACTIONS(1347), + [anon_sym_true] = ACTIONS(1169), + [anon_sym_false] = ACTIONS(1169), + [anon_sym_PLUS] = ACTIONS(1345), + [anon_sym_DASH] = ACTIONS(1345), [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(1107), - [anon_sym_AMP] = ACTIONS(1107), + [anon_sym_CARET] = ACTIONS(1347), + [anon_sym_AMP] = ACTIONS(1347), [anon_sym_GT_EQ] = ACTIONS(2533), [anon_sym_LT_EQ] = ACTIONS(2533), [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(2395), + [anon_sym_scoped] = ACTIONS(2525), [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(2433), - [sym_predefined_type] = ACTIONS(2435), - [anon_sym_unchecked] = ACTIONS(1067), + [anon_sym_var] = ACTIONS(2365), + [sym_predefined_type] = ACTIONS(2367), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1589), + [anon_sym_default] = ACTIONS(1179), + [anon_sym_throw] = ACTIONS(1527), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1591), - [sym_discard] = ACTIONS(1083), + [anon_sym_await] = ACTIONS(1529), + [sym_discard] = ACTIONS(2369), [anon_sym_DOT_DOT] = ACTIONS(123), [anon_sym_not] = ACTIONS(2535), [anon_sym_from] = ACTIONS(125), @@ -97024,18 +96910,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(129), - [anon_sym_typeof] = ACTIONS(131), + [anon_sym_sizeof] = ACTIONS(1189), + [anon_sym_typeof] = ACTIONS(1191), [anon_sym___makeref] = ACTIONS(133), [anon_sym___reftype] = ACTIONS(135), [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1089), + [sym_null_literal] = ACTIONS(1199), + [anon_sym_SQUOTE] = ACTIONS(1201), + [sym_integer_literal] = ACTIONS(1199), + [sym_real_literal] = ACTIONS(1203), + [anon_sym_DQUOTE] = ACTIONS(1205), + [sym_verbatim_string_literal] = ACTIONS(1203), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -97046,104 +96932,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(1209), + [sym_interpolation_verbatim_start] = ACTIONS(1211), + [sym_interpolation_raw_start] = ACTIONS(1213), + [sym_raw_string_start] = ACTIONS(1215), }, [347] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(2763), - [sym_alias_qualified_name] = STATE(2764), - [sym__simple_name] = STATE(2252), - [sym_qualified_name] = STATE(2764), - [sym_generic_name] = STATE(2269), - [sym_type] = STATE(2392), - [sym_implicit_type] = STATE(2791), - [sym_array_type] = STATE(2767), - [sym__array_base_type] = STATE(7243), - [sym_nullable_type] = STATE(2768), - [sym_pointer_type] = STATE(2768), - [sym__pointer_base_type] = STATE(7717), - [sym_function_pointer_type] = STATE(2768), - [sym_ref_type] = STATE(2791), - [sym_scoped_type] = STATE(2791), - [sym_tuple_type] = STATE(2769), - [sym_pattern] = STATE(4912), - [sym_constant_pattern] = STATE(4631), - [sym_parenthesized_pattern] = STATE(4631), - [sym_var_pattern] = STATE(4631), - [sym_type_pattern] = STATE(4631), - [sym_list_pattern] = STATE(4631), - [sym_recursive_pattern] = STATE(4631), - [sym_positional_pattern_clause] = STATE(2519), - [sym_property_pattern_clause] = STATE(2563), - [sym_relational_pattern] = STATE(4631), - [sym_negated_pattern] = STATE(4631), - [sym_and_pattern] = STATE(4631), - [sym_or_pattern] = STATE(4631), - [sym_declaration_pattern] = STATE(4631), - [sym_expression] = STATE(5671), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3520), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(4544), - [sym_postfix_unary_expression] = STATE(4545), - [sym_prefix_unary_expression] = STATE(4545), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6154), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(4544), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(4545), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(4544), - [sym_member_access_expression] = STATE(3197), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(4545), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7530), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(4544), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(4544), - [sym_typeof_expression] = STATE(4544), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(3197), - [sym_literal] = STATE(4544), - [sym_character_literal] = STATE(4536), - [sym_string_literal] = STATE(4536), - [sym_raw_string_literal] = STATE(4536), - [sym_boolean_literal] = STATE(4536), - [sym_identifier] = STATE(2226), - [sym__reserved_identifier] = STATE(2240), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(2706), + [sym_alias_qualified_name] = STATE(2821), + [sym__simple_name] = STATE(2268), + [sym_qualified_name] = STATE(2821), + [sym_generic_name] = STATE(2262), + [sym_type] = STATE(2398), + [sym_implicit_type] = STATE(2701), + [sym_array_type] = STATE(2822), + [sym__array_base_type] = STATE(7081), + [sym_nullable_type] = STATE(2823), + [sym_pointer_type] = STATE(2823), + [sym__pointer_base_type] = STATE(7400), + [sym_function_pointer_type] = STATE(2823), + [sym_ref_type] = STATE(2701), + [sym_scoped_type] = STATE(2701), + [sym_tuple_type] = STATE(2825), + [sym_pattern] = STATE(4648), + [sym_constant_pattern] = STATE(4727), + [sym_parenthesized_pattern] = STATE(4727), + [sym_var_pattern] = STATE(4727), + [sym_type_pattern] = STATE(4727), + [sym_list_pattern] = STATE(4727), + [sym_recursive_pattern] = STATE(4727), + [sym_positional_pattern_clause] = STATE(2480), + [sym_property_pattern_clause] = STATE(2550), + [sym_relational_pattern] = STATE(4727), + [sym_negated_pattern] = STATE(4727), + [sym_and_pattern] = STATE(4727), + [sym_or_pattern] = STATE(4727), + [sym_declaration_pattern] = STATE(4727), + [sym_expression] = STATE(5686), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3510), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(4509), + [sym_postfix_unary_expression] = STATE(4510), + [sym_prefix_unary_expression] = STATE(4510), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6134), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(4509), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(4510), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(4509), + [sym_member_access_expression] = STATE(3207), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(4510), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7425), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(4509), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(4509), + [sym_typeof_expression] = STATE(4509), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(3207), + [sym_literal] = STATE(4509), + [sym_character_literal] = STATE(4575), + [sym_string_literal] = STATE(4575), + [sym_raw_string_literal] = STATE(4575), + [sym_boolean_literal] = STATE(4575), + [sym_identifier] = STATE(2219), + [sym__reserved_identifier] = STATE(2229), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(347), [sym_preproc_endregion] = STATE(347), [sym_preproc_line] = STATE(347), @@ -97153,78 +97039,78 @@ 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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), - [sym__identifier_token] = ACTIONS(1387), - [anon_sym_alias] = ACTIONS(1389), - [anon_sym_global] = ACTIONS(1389), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(2341), - [anon_sym_LPAREN] = ACTIONS(2343), - [anon_sym_ref] = ACTIONS(2345), - [anon_sym_LBRACE] = ACTIONS(2347), - [anon_sym_delegate] = ACTIONS(2349), - [anon_sym_async] = ACTIONS(1047), - [anon_sym_file] = ACTIONS(1389), - [anon_sym_new] = ACTIONS(1061), - [anon_sym_LT] = ACTIONS(2351), - [anon_sym_GT] = ACTIONS(2351), - [anon_sym_where] = ACTIONS(1389), - [anon_sym_notnull] = ACTIONS(1389), - [anon_sym_unmanaged] = ACTIONS(1389), - [anon_sym_checked] = ACTIONS(1067), - [anon_sym_BANG] = ACTIONS(1471), - [anon_sym_TILDE] = ACTIONS(1471), - [anon_sym_PLUS_PLUS] = ACTIONS(1471), - [anon_sym_DASH_DASH] = ACTIONS(1471), - [anon_sym_true] = ACTIONS(1409), - [anon_sym_false] = ACTIONS(1409), - [anon_sym_PLUS] = ACTIONS(1469), - [anon_sym_DASH] = ACTIONS(1469), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), + [sym__identifier_token] = ACTIONS(1385), + [anon_sym_alias] = ACTIONS(1387), + [anon_sym_global] = ACTIONS(1387), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(2401), + [anon_sym_LPAREN] = ACTIONS(2489), + [anon_sym_ref] = ACTIONS(2405), + [anon_sym_LBRACE] = ACTIONS(2407), + [anon_sym_delegate] = ACTIONS(2409), + [anon_sym_async] = ACTIONS(1045), + [anon_sym_file] = ACTIONS(1387), + [anon_sym_new] = ACTIONS(1059), + [anon_sym_LT] = ACTIONS(2491), + [anon_sym_GT] = ACTIONS(2491), + [anon_sym_where] = ACTIONS(1387), + [anon_sym_notnull] = ACTIONS(1387), + [anon_sym_unmanaged] = ACTIONS(1387), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(1405), + [anon_sym_TILDE] = ACTIONS(1405), + [anon_sym_PLUS_PLUS] = ACTIONS(1405), + [anon_sym_DASH_DASH] = ACTIONS(1405), + [anon_sym_true] = ACTIONS(1407), + [anon_sym_false] = ACTIONS(1407), + [anon_sym_PLUS] = ACTIONS(1403), + [anon_sym_DASH] = ACTIONS(1403), [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(1471), - [anon_sym_AMP] = ACTIONS(1471), - [anon_sym_GT_EQ] = ACTIONS(2353), - [anon_sym_LT_EQ] = ACTIONS(2353), + [anon_sym_CARET] = ACTIONS(1405), + [anon_sym_AMP] = ACTIONS(1405), + [anon_sym_GT_EQ] = ACTIONS(2493), + [anon_sym_LT_EQ] = ACTIONS(2493), [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(2355), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(2357), - [sym_predefined_type] = ACTIONS(2359), - [anon_sym_unchecked] = ACTIONS(1067), - [anon_sym_yield] = ACTIONS(1389), - [anon_sym_default] = ACTIONS(1423), - [anon_sym_throw] = ACTIONS(1589), - [anon_sym_when] = ACTIONS(1389), - [anon_sym_await] = ACTIONS(1591), - [sym_discard] = ACTIONS(2361), + [anon_sym_scoped] = ACTIONS(2415), + [anon_sym_base] = ACTIONS(87), + [anon_sym_var] = ACTIONS(2417), + [sym_predefined_type] = ACTIONS(2419), + [anon_sym_unchecked] = ACTIONS(1065), + [anon_sym_yield] = ACTIONS(1387), + [anon_sym_default] = ACTIONS(1421), + [anon_sym_throw] = ACTIONS(1527), + [anon_sym_when] = ACTIONS(1387), + [anon_sym_await] = ACTIONS(1529), + [sym_discard] = ACTIONS(2421), [anon_sym_DOT_DOT] = ACTIONS(123), - [anon_sym_not] = ACTIONS(2363), - [anon_sym_from] = ACTIONS(1431), - [anon_sym_into] = ACTIONS(1389), - [anon_sym_join] = ACTIONS(1389), - [anon_sym_on] = ACTIONS(1389), - [anon_sym_equals] = ACTIONS(1389), - [anon_sym_let] = ACTIONS(1389), - [anon_sym_orderby] = ACTIONS(1389), - [anon_sym_ascending] = ACTIONS(1389), - [anon_sym_descending] = ACTIONS(1389), - [anon_sym_group] = ACTIONS(1389), - [anon_sym_by] = ACTIONS(1389), - [anon_sym_select] = ACTIONS(1389), + [anon_sym_not] = ACTIONS(2495), + [anon_sym_from] = ACTIONS(1429), + [anon_sym_into] = ACTIONS(1387), + [anon_sym_join] = ACTIONS(1387), + [anon_sym_on] = ACTIONS(1387), + [anon_sym_equals] = ACTIONS(1387), + [anon_sym_let] = ACTIONS(1387), + [anon_sym_orderby] = ACTIONS(1387), + [anon_sym_ascending] = ACTIONS(1387), + [anon_sym_descending] = ACTIONS(1387), + [anon_sym_group] = ACTIONS(1387), + [anon_sym_by] = ACTIONS(1387), + [anon_sym_select] = ACTIONS(1387), [anon_sym_stackalloc] = ACTIONS(127), - [anon_sym_sizeof] = ACTIONS(1435), - [anon_sym_typeof] = ACTIONS(1437), + [anon_sym_sizeof] = ACTIONS(1433), + [anon_sym_typeof] = ACTIONS(1435), [anon_sym___makeref] = ACTIONS(133), [anon_sym___reftype] = ACTIONS(135), [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(1445), - [anon_sym_SQUOTE] = ACTIONS(1447), - [sym_integer_literal] = ACTIONS(1445), - [sym_real_literal] = ACTIONS(1449), - [anon_sym_DQUOTE] = ACTIONS(1451), - [sym_verbatim_string_literal] = ACTIONS(1449), - [aux_sym_preproc_if_token1] = ACTIONS(1089), + [sym_null_literal] = ACTIONS(1443), + [anon_sym_SQUOTE] = ACTIONS(1445), + [sym_integer_literal] = ACTIONS(1443), + [sym_real_literal] = ACTIONS(1447), + [anon_sym_DQUOTE] = ACTIONS(1449), + [sym_verbatim_string_literal] = ACTIONS(1447), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -97235,104 +97121,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(1455), - [sym_interpolation_verbatim_start] = ACTIONS(1457), - [sym_interpolation_raw_start] = ACTIONS(1459), - [sym_raw_string_start] = ACTIONS(1461), + [sym_interpolation_regular_start] = ACTIONS(1453), + [sym_interpolation_verbatim_start] = ACTIONS(1455), + [sym_interpolation_raw_start] = ACTIONS(1457), + [sym_raw_string_start] = ACTIONS(1459), }, [348] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(2890), - [sym_alias_qualified_name] = STATE(2373), - [sym__simple_name] = STATE(2338), - [sym_qualified_name] = STATE(2373), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(2513), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(2378), - [sym__array_base_type] = STATE(7103), - [sym_nullable_type] = STATE(2379), - [sym_pointer_type] = STATE(2379), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(2379), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(2380), - [sym_pattern] = STATE(5538), - [sym_constant_pattern] = STATE(3486), - [sym_parenthesized_pattern] = STATE(3486), - [sym_var_pattern] = STATE(3486), - [sym_type_pattern] = STATE(3486), - [sym_list_pattern] = STATE(3486), - [sym_recursive_pattern] = STATE(3486), - [sym_positional_pattern_clause] = STATE(2574), - [sym_property_pattern_clause] = STATE(2748), - [sym_relational_pattern] = STATE(3486), - [sym_negated_pattern] = STATE(3486), - [sym_and_pattern] = STATE(3486), - [sym_or_pattern] = STATE(3486), - [sym_declaration_pattern] = STATE(3486), - [sym_expression] = STATE(5710), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3520), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3455), - [sym_postfix_unary_expression] = STATE(3469), - [sym_prefix_unary_expression] = STATE(3469), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6154), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3455), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3469), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3455), - [sym_member_access_expression] = STATE(2719), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3469), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7530), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(3455), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3455), - [sym_typeof_expression] = STATE(3455), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2719), - [sym_literal] = STATE(3455), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2186), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(2706), + [sym_alias_qualified_name] = STATE(2821), + [sym__simple_name] = STATE(2268), + [sym_qualified_name] = STATE(2821), + [sym_generic_name] = STATE(2262), + [sym_type] = STATE(2398), + [sym_implicit_type] = STATE(2701), + [sym_array_type] = STATE(2822), + [sym__array_base_type] = STATE(7081), + [sym_nullable_type] = STATE(2823), + [sym_pointer_type] = STATE(2823), + [sym__pointer_base_type] = STATE(7400), + [sym_function_pointer_type] = STATE(2823), + [sym_ref_type] = STATE(2701), + [sym_scoped_type] = STATE(2701), + [sym_tuple_type] = STATE(2825), + [sym_pattern] = STATE(4813), + [sym_constant_pattern] = STATE(4727), + [sym_parenthesized_pattern] = STATE(4727), + [sym_var_pattern] = STATE(4727), + [sym_type_pattern] = STATE(4727), + [sym_list_pattern] = STATE(4727), + [sym_recursive_pattern] = STATE(4727), + [sym_positional_pattern_clause] = STATE(2480), + [sym_property_pattern_clause] = STATE(2550), + [sym_relational_pattern] = STATE(4727), + [sym_negated_pattern] = STATE(4727), + [sym_and_pattern] = STATE(4727), + [sym_or_pattern] = STATE(4727), + [sym_declaration_pattern] = STATE(4727), + [sym_expression] = STATE(5686), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3510), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(4509), + [sym_postfix_unary_expression] = STATE(4510), + [sym_prefix_unary_expression] = STATE(4510), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6134), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(4509), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(4510), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(4509), + [sym_member_access_expression] = STATE(3207), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(4510), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7425), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(4509), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(4509), + [sym_typeof_expression] = STATE(4509), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(3207), + [sym_literal] = STATE(4509), + [sym_character_literal] = STATE(4575), + [sym_string_literal] = STATE(4575), + [sym_raw_string_literal] = STATE(4575), + [sym_boolean_literal] = STATE(4575), + [sym_identifier] = STATE(2219), + [sym__reserved_identifier] = STATE(2229), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(348), [sym_preproc_endregion] = STATE(348), [sym_preproc_line] = STATE(348), @@ -97342,51 +97228,240 @@ 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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), + [sym__identifier_token] = ACTIONS(1385), + [anon_sym_alias] = ACTIONS(1387), + [anon_sym_global] = ACTIONS(1387), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(2401), + [anon_sym_LPAREN] = ACTIONS(2489), + [anon_sym_ref] = ACTIONS(2405), + [anon_sym_LBRACE] = ACTIONS(2407), + [anon_sym_delegate] = ACTIONS(2409), + [anon_sym_async] = ACTIONS(1045), + [anon_sym_file] = ACTIONS(1387), + [anon_sym_new] = ACTIONS(1059), + [anon_sym_LT] = ACTIONS(2491), + [anon_sym_GT] = ACTIONS(2491), + [anon_sym_where] = ACTIONS(1387), + [anon_sym_notnull] = ACTIONS(1387), + [anon_sym_unmanaged] = ACTIONS(1387), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(1405), + [anon_sym_TILDE] = ACTIONS(1405), + [anon_sym_PLUS_PLUS] = ACTIONS(1405), + [anon_sym_DASH_DASH] = ACTIONS(1405), + [anon_sym_true] = ACTIONS(1407), + [anon_sym_false] = ACTIONS(1407), + [anon_sym_PLUS] = ACTIONS(1403), + [anon_sym_DASH] = ACTIONS(1403), + [anon_sym_STAR] = ACTIONS(81), + [anon_sym_CARET] = ACTIONS(1405), + [anon_sym_AMP] = ACTIONS(1405), + [anon_sym_GT_EQ] = ACTIONS(2493), + [anon_sym_LT_EQ] = ACTIONS(2493), + [anon_sym_this] = ACTIONS(83), + [anon_sym_scoped] = ACTIONS(2415), + [anon_sym_base] = ACTIONS(87), + [anon_sym_var] = ACTIONS(2417), + [sym_predefined_type] = ACTIONS(2419), + [anon_sym_unchecked] = ACTIONS(1065), + [anon_sym_yield] = ACTIONS(1387), + [anon_sym_default] = ACTIONS(1421), + [anon_sym_throw] = ACTIONS(1527), + [anon_sym_when] = ACTIONS(1387), + [anon_sym_await] = ACTIONS(1529), + [sym_discard] = ACTIONS(2421), + [anon_sym_DOT_DOT] = ACTIONS(123), + [anon_sym_not] = ACTIONS(2495), + [anon_sym_from] = ACTIONS(1429), + [anon_sym_into] = ACTIONS(1387), + [anon_sym_join] = ACTIONS(1387), + [anon_sym_on] = ACTIONS(1387), + [anon_sym_equals] = ACTIONS(1387), + [anon_sym_let] = ACTIONS(1387), + [anon_sym_orderby] = ACTIONS(1387), + [anon_sym_ascending] = ACTIONS(1387), + [anon_sym_descending] = ACTIONS(1387), + [anon_sym_group] = ACTIONS(1387), + [anon_sym_by] = ACTIONS(1387), + [anon_sym_select] = ACTIONS(1387), + [anon_sym_stackalloc] = ACTIONS(127), + [anon_sym_sizeof] = ACTIONS(1433), + [anon_sym_typeof] = ACTIONS(1435), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), + [sym_null_literal] = ACTIONS(1443), + [anon_sym_SQUOTE] = ACTIONS(1445), + [sym_integer_literal] = ACTIONS(1443), + [sym_real_literal] = ACTIONS(1447), + [anon_sym_DQUOTE] = ACTIONS(1449), + [sym_verbatim_string_literal] = ACTIONS(1447), + [aux_sym_preproc_if_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(1453), + [sym_interpolation_verbatim_start] = ACTIONS(1455), + [sym_interpolation_raw_start] = ACTIONS(1457), + [sym_raw_string_start] = ACTIONS(1459), + }, + [349] = { + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(2611), + [sym_alias_qualified_name] = STATE(2402), + [sym__simple_name] = STATE(2184), + [sym_qualified_name] = STATE(2402), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(2239), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(2373), + [sym__array_base_type] = STATE(7083), + [sym_nullable_type] = STATE(2375), + [sym_pointer_type] = STATE(2375), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(2375), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(2377), + [sym_pattern] = STATE(3445), + [sym_constant_pattern] = STATE(3429), + [sym_parenthesized_pattern] = STATE(3429), + [sym_var_pattern] = STATE(3429), + [sym_type_pattern] = STATE(3429), + [sym_list_pattern] = STATE(3429), + [sym_recursive_pattern] = STATE(3429), + [sym_positional_pattern_clause] = STATE(2275), + [sym_property_pattern_clause] = STATE(2315), + [sym_relational_pattern] = STATE(3429), + [sym_negated_pattern] = STATE(3429), + [sym_and_pattern] = STATE(3429), + [sym_or_pattern] = STATE(3429), + [sym_declaration_pattern] = STATE(3429), + [sym_expression] = STATE(5657), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3510), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3397), + [sym_postfix_unary_expression] = STATE(3404), + [sym_prefix_unary_expression] = STATE(3404), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6134), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3397), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3404), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3397), + [sym_member_access_expression] = STATE(2686), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3404), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7425), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(3397), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3397), + [sym_typeof_expression] = STATE(3397), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2686), + [sym_literal] = STATE(3397), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2202), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), + [sym_preproc_region] = STATE(349), + [sym_preproc_endregion] = STATE(349), + [sym_preproc_line] = STATE(349), + [sym_preproc_pragma] = STATE(349), + [sym_preproc_nullable] = STATE(349), + [sym_preproc_error] = STATE(349), + [sym_preproc_warning] = STATE(349), + [sym_preproc_define] = STATE(349), + [sym_preproc_undef] = STATE(349), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1049), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1047), [anon_sym_LPAREN] = ACTIONS(2537), - [anon_sym_ref] = ACTIONS(2369), - [anon_sym_LBRACE] = ACTIONS(2371), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_ref] = ACTIONS(2519), + [anon_sym_LBRACE] = ACTIONS(2343), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1061), + [anon_sym_new] = ACTIONS(1059), [anon_sym_LT] = ACTIONS(2539), [anon_sym_GT] = ACTIONS(2539), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1067), - [anon_sym_BANG] = ACTIONS(1885), - [anon_sym_TILDE] = ACTIONS(1885), - [anon_sym_PLUS_PLUS] = ACTIONS(1885), - [anon_sym_DASH_DASH] = ACTIONS(1885), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(1101), + [anon_sym_TILDE] = ACTIONS(1101), + [anon_sym_PLUS_PLUS] = ACTIONS(1101), + [anon_sym_DASH_DASH] = ACTIONS(1101), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1883), - [anon_sym_DASH] = ACTIONS(1883), + [anon_sym_PLUS] = ACTIONS(1103), + [anon_sym_DASH] = ACTIONS(1103), [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(1885), - [anon_sym_AMP] = ACTIONS(1885), + [anon_sym_CARET] = ACTIONS(1101), + [anon_sym_AMP] = ACTIONS(1101), [anon_sym_GT_EQ] = ACTIONS(2541), [anon_sym_LT_EQ] = ACTIONS(2541), [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(2377), + [anon_sym_scoped] = ACTIONS(2525), [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(2433), - [sym_predefined_type] = ACTIONS(2435), - [anon_sym_unchecked] = ACTIONS(1067), + [anon_sym_var] = ACTIONS(2351), + [sym_predefined_type] = ACTIONS(2353), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1589), + [anon_sym_throw] = ACTIONS(1527), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1591), - [sym_discard] = ACTIONS(1083), + [anon_sym_await] = ACTIONS(1529), + [sym_discard] = ACTIONS(1081), [anon_sym_DOT_DOT] = ACTIONS(123), [anon_sym_not] = ACTIONS(2543), [anon_sym_from] = ACTIONS(125), @@ -97413,196 +97488,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(1089), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(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), - }, - [349] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(2890), - [sym_alias_qualified_name] = STATE(2373), - [sym__simple_name] = STATE(2338), - [sym_qualified_name] = STATE(2373), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(2513), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(2378), - [sym__array_base_type] = STATE(7103), - [sym_nullable_type] = STATE(2379), - [sym_pointer_type] = STATE(2379), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(2379), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(2380), - [sym_pattern] = STATE(3432), - [sym_constant_pattern] = STATE(3486), - [sym_parenthesized_pattern] = STATE(3486), - [sym_var_pattern] = STATE(3486), - [sym_type_pattern] = STATE(3486), - [sym_list_pattern] = STATE(3486), - [sym_recursive_pattern] = STATE(3486), - [sym_positional_pattern_clause] = STATE(2574), - [sym_property_pattern_clause] = STATE(2748), - [sym_relational_pattern] = STATE(3486), - [sym_negated_pattern] = STATE(3486), - [sym_and_pattern] = STATE(3486), - [sym_or_pattern] = STATE(3486), - [sym_declaration_pattern] = STATE(3486), - [sym_expression] = STATE(5710), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3520), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3455), - [sym_postfix_unary_expression] = STATE(3469), - [sym_prefix_unary_expression] = STATE(3469), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6154), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3455), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3469), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3455), - [sym_member_access_expression] = STATE(2719), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3469), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7530), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(3455), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3455), - [sym_typeof_expression] = STATE(3455), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2719), - [sym_literal] = STATE(3455), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2186), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), - [sym_preproc_region] = STATE(349), - [sym_preproc_endregion] = STATE(349), - [sym_preproc_line] = STATE(349), - [sym_preproc_pragma] = STATE(349), - [sym_preproc_nullable] = STATE(349), - [sym_preproc_error] = STATE(349), - [sym_preproc_warning] = STATE(349), - [sym_preproc_define] = STATE(349), - [sym_preproc_undef] = STATE(349), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), - [sym__identifier_token] = ACTIONS(25), - [anon_sym_alias] = ACTIONS(29), - [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1049), - [anon_sym_LPAREN] = ACTIONS(2537), - [anon_sym_ref] = ACTIONS(2369), - [anon_sym_LBRACE] = ACTIONS(2371), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), - [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1061), - [anon_sym_LT] = ACTIONS(2539), - [anon_sym_GT] = ACTIONS(2539), - [anon_sym_where] = ACTIONS(29), - [anon_sym_notnull] = ACTIONS(29), - [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1067), - [anon_sym_BANG] = ACTIONS(1885), - [anon_sym_TILDE] = ACTIONS(1885), - [anon_sym_PLUS_PLUS] = ACTIONS(1885), - [anon_sym_DASH_DASH] = ACTIONS(1885), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1883), - [anon_sym_DASH] = ACTIONS(1883), - [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(1885), - [anon_sym_AMP] = ACTIONS(1885), - [anon_sym_GT_EQ] = ACTIONS(2541), - [anon_sym_LT_EQ] = ACTIONS(2541), - [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(2377), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(2433), - [sym_predefined_type] = ACTIONS(2435), - [anon_sym_unchecked] = ACTIONS(1067), - [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1589), - [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1591), - [sym_discard] = ACTIONS(1083), - [anon_sym_DOT_DOT] = ACTIONS(123), - [anon_sym_not] = ACTIONS(2543), - [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(1089), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -97619,98 +97505,98 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [350] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(2890), - [sym_alias_qualified_name] = STATE(2373), - [sym__simple_name] = STATE(2338), - [sym_qualified_name] = STATE(2373), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(2513), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(2378), - [sym__array_base_type] = STATE(7103), - [sym_nullable_type] = STATE(2379), - [sym_pointer_type] = STATE(2379), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(2379), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(2380), - [sym_pattern] = STATE(5346), - [sym_constant_pattern] = STATE(3486), - [sym_parenthesized_pattern] = STATE(3486), - [sym_var_pattern] = STATE(3486), - [sym_type_pattern] = STATE(3486), - [sym_list_pattern] = STATE(3486), - [sym_recursive_pattern] = STATE(3486), - [sym_positional_pattern_clause] = STATE(2574), - [sym_property_pattern_clause] = STATE(2748), - [sym_relational_pattern] = STATE(3486), - [sym_negated_pattern] = STATE(3486), - [sym_and_pattern] = STATE(3486), - [sym_or_pattern] = STATE(3486), - [sym_declaration_pattern] = STATE(3486), - [sym_expression] = STATE(5710), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3520), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3455), - [sym_postfix_unary_expression] = STATE(3469), - [sym_prefix_unary_expression] = STATE(3469), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6154), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3455), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3469), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3455), - [sym_member_access_expression] = STATE(2719), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3469), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7530), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(3455), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3455), - [sym_typeof_expression] = STATE(3455), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2719), - [sym_literal] = STATE(3455), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2186), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(2706), + [sym_alias_qualified_name] = STATE(2821), + [sym__simple_name] = STATE(2268), + [sym_qualified_name] = STATE(2821), + [sym_generic_name] = STATE(2262), + [sym_type] = STATE(2398), + [sym_implicit_type] = STATE(2701), + [sym_array_type] = STATE(2822), + [sym__array_base_type] = STATE(7081), + [sym_nullable_type] = STATE(2823), + [sym_pointer_type] = STATE(2823), + [sym__pointer_base_type] = STATE(7400), + [sym_function_pointer_type] = STATE(2823), + [sym_ref_type] = STATE(2701), + [sym_scoped_type] = STATE(2701), + [sym_tuple_type] = STATE(2825), + [sym_pattern] = STATE(4749), + [sym_constant_pattern] = STATE(4727), + [sym_parenthesized_pattern] = STATE(4727), + [sym_var_pattern] = STATE(4727), + [sym_type_pattern] = STATE(4727), + [sym_list_pattern] = STATE(4727), + [sym_recursive_pattern] = STATE(4727), + [sym_positional_pattern_clause] = STATE(2480), + [sym_property_pattern_clause] = STATE(2550), + [sym_relational_pattern] = STATE(4727), + [sym_negated_pattern] = STATE(4727), + [sym_and_pattern] = STATE(4727), + [sym_or_pattern] = STATE(4727), + [sym_declaration_pattern] = STATE(4727), + [sym_expression] = STATE(5686), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3510), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(4509), + [sym_postfix_unary_expression] = STATE(4510), + [sym_prefix_unary_expression] = STATE(4510), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6134), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(4509), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(4510), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(4509), + [sym_member_access_expression] = STATE(3207), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(4510), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7425), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(4509), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(4509), + [sym_typeof_expression] = STATE(4509), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(3207), + [sym_literal] = STATE(4509), + [sym_character_literal] = STATE(4575), + [sym_string_literal] = STATE(4575), + [sym_raw_string_literal] = STATE(4575), + [sym_boolean_literal] = STATE(4575), + [sym_identifier] = STATE(2219), + [sym__reserved_identifier] = STATE(2229), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(350), [sym_preproc_endregion] = STATE(350), [sym_preproc_line] = STATE(350), @@ -97720,78 +97606,78 @@ 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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), - [sym__identifier_token] = ACTIONS(25), - [anon_sym_alias] = ACTIONS(29), - [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1049), - [anon_sym_LPAREN] = ACTIONS(2537), - [anon_sym_ref] = ACTIONS(2369), - [anon_sym_LBRACE] = ACTIONS(2371), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), - [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1061), - [anon_sym_LT] = ACTIONS(2539), - [anon_sym_GT] = ACTIONS(2539), - [anon_sym_where] = ACTIONS(29), - [anon_sym_notnull] = ACTIONS(29), - [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1067), - [anon_sym_BANG] = ACTIONS(1885), - [anon_sym_TILDE] = ACTIONS(1885), - [anon_sym_PLUS_PLUS] = ACTIONS(1885), - [anon_sym_DASH_DASH] = ACTIONS(1885), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1883), - [anon_sym_DASH] = ACTIONS(1883), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), + [sym__identifier_token] = ACTIONS(1385), + [anon_sym_alias] = ACTIONS(1387), + [anon_sym_global] = ACTIONS(1387), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(2401), + [anon_sym_LPAREN] = ACTIONS(2489), + [anon_sym_ref] = ACTIONS(2405), + [anon_sym_LBRACE] = ACTIONS(2407), + [anon_sym_delegate] = ACTIONS(2409), + [anon_sym_async] = ACTIONS(1045), + [anon_sym_file] = ACTIONS(1387), + [anon_sym_new] = ACTIONS(1059), + [anon_sym_LT] = ACTIONS(2491), + [anon_sym_GT] = ACTIONS(2491), + [anon_sym_where] = ACTIONS(1387), + [anon_sym_notnull] = ACTIONS(1387), + [anon_sym_unmanaged] = ACTIONS(1387), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(1405), + [anon_sym_TILDE] = ACTIONS(1405), + [anon_sym_PLUS_PLUS] = ACTIONS(1405), + [anon_sym_DASH_DASH] = ACTIONS(1405), + [anon_sym_true] = ACTIONS(1407), + [anon_sym_false] = ACTIONS(1407), + [anon_sym_PLUS] = ACTIONS(1403), + [anon_sym_DASH] = ACTIONS(1403), [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(1885), - [anon_sym_AMP] = ACTIONS(1885), - [anon_sym_GT_EQ] = ACTIONS(2541), - [anon_sym_LT_EQ] = ACTIONS(2541), + [anon_sym_CARET] = ACTIONS(1405), + [anon_sym_AMP] = ACTIONS(1405), + [anon_sym_GT_EQ] = ACTIONS(2493), + [anon_sym_LT_EQ] = ACTIONS(2493), [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(2377), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(2433), - [sym_predefined_type] = ACTIONS(2435), - [anon_sym_unchecked] = ACTIONS(1067), - [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1589), - [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1591), - [sym_discard] = ACTIONS(1083), + [anon_sym_scoped] = ACTIONS(2415), + [anon_sym_base] = ACTIONS(87), + [anon_sym_var] = ACTIONS(2417), + [sym_predefined_type] = ACTIONS(2419), + [anon_sym_unchecked] = ACTIONS(1065), + [anon_sym_yield] = ACTIONS(1387), + [anon_sym_default] = ACTIONS(1421), + [anon_sym_throw] = ACTIONS(1527), + [anon_sym_when] = ACTIONS(1387), + [anon_sym_await] = ACTIONS(1529), + [sym_discard] = ACTIONS(2421), [anon_sym_DOT_DOT] = ACTIONS(123), - [anon_sym_not] = ACTIONS(2543), - [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(2495), + [anon_sym_from] = ACTIONS(1429), + [anon_sym_into] = ACTIONS(1387), + [anon_sym_join] = ACTIONS(1387), + [anon_sym_on] = ACTIONS(1387), + [anon_sym_equals] = ACTIONS(1387), + [anon_sym_let] = ACTIONS(1387), + [anon_sym_orderby] = ACTIONS(1387), + [anon_sym_ascending] = ACTIONS(1387), + [anon_sym_descending] = ACTIONS(1387), + [anon_sym_group] = ACTIONS(1387), + [anon_sym_by] = ACTIONS(1387), + [anon_sym_select] = ACTIONS(1387), [anon_sym_stackalloc] = ACTIONS(127), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), + [anon_sym_sizeof] = ACTIONS(1433), + [anon_sym_typeof] = ACTIONS(1435), [anon_sym___makeref] = ACTIONS(133), [anon_sym___reftype] = ACTIONS(135), [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1089), + [sym_null_literal] = ACTIONS(1443), + [anon_sym_SQUOTE] = ACTIONS(1445), + [sym_integer_literal] = ACTIONS(1443), + [sym_real_literal] = ACTIONS(1447), + [anon_sym_DQUOTE] = ACTIONS(1449), + [sym_verbatim_string_literal] = ACTIONS(1447), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -97802,104 +97688,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(1453), + [sym_interpolation_verbatim_start] = ACTIONS(1455), + [sym_interpolation_raw_start] = ACTIONS(1457), + [sym_raw_string_start] = ACTIONS(1459), }, [351] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(2885), - [sym_alias_qualified_name] = STATE(2373), - [sym__simple_name] = STATE(2345), - [sym_qualified_name] = STATE(2373), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(2518), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(2378), - [sym__array_base_type] = STATE(7103), - [sym_nullable_type] = STATE(2379), - [sym_pointer_type] = STATE(2379), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(2379), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(2380), - [sym_pattern] = STATE(4136), - [sym_constant_pattern] = STATE(4132), - [sym_parenthesized_pattern] = STATE(4132), - [sym_var_pattern] = STATE(4132), - [sym_type_pattern] = STATE(4132), - [sym_list_pattern] = STATE(4132), - [sym_recursive_pattern] = STATE(4132), - [sym_positional_pattern_clause] = STATE(2587), - [sym_property_pattern_clause] = STATE(2662), - [sym_relational_pattern] = STATE(4132), - [sym_negated_pattern] = STATE(4132), - [sym_and_pattern] = STATE(4132), - [sym_or_pattern] = STATE(4132), - [sym_declaration_pattern] = STATE(4132), - [sym_expression] = STATE(5684), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3520), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(4172), - [sym_postfix_unary_expression] = STATE(4148), - [sym_prefix_unary_expression] = STATE(4148), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6154), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(4172), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(4148), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(4172), - [sym_member_access_expression] = STATE(3069), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(4148), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7530), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(4172), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(4172), - [sym_typeof_expression] = STATE(4172), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(3069), - [sym_literal] = STATE(4172), - [sym_character_literal] = STATE(3011), - [sym_string_literal] = STATE(3011), - [sym_raw_string_literal] = STATE(3011), - [sym_boolean_literal] = STATE(3011), - [sym_identifier] = STATE(2186), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(2873), + [sym_alias_qualified_name] = STATE(2402), + [sym__simple_name] = STATE(2330), + [sym_qualified_name] = STATE(2402), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(2508), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(2373), + [sym__array_base_type] = STATE(7083), + [sym_nullable_type] = STATE(2375), + [sym_pointer_type] = STATE(2375), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(2375), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(2377), + [sym_pattern] = STATE(5517), + [sym_constant_pattern] = STATE(3429), + [sym_parenthesized_pattern] = STATE(3429), + [sym_var_pattern] = STATE(3429), + [sym_type_pattern] = STATE(3429), + [sym_list_pattern] = STATE(3429), + [sym_recursive_pattern] = STATE(3429), + [sym_positional_pattern_clause] = STATE(2578), + [sym_property_pattern_clause] = STATE(2739), + [sym_relational_pattern] = STATE(3429), + [sym_negated_pattern] = STATE(3429), + [sym_and_pattern] = STATE(3429), + [sym_or_pattern] = STATE(3429), + [sym_declaration_pattern] = STATE(3429), + [sym_expression] = STATE(5683), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3510), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3397), + [sym_postfix_unary_expression] = STATE(3404), + [sym_prefix_unary_expression] = STATE(3404), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6134), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3397), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3404), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3397), + [sym_member_access_expression] = STATE(2686), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3404), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7425), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(3397), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3397), + [sym_typeof_expression] = STATE(3397), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2686), + [sym_literal] = STATE(3397), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2178), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(351), [sym_preproc_endregion] = STATE(351), [sym_preproc_line] = STATE(351), @@ -97909,53 +97795,53 @@ 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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(2475), - [anon_sym_LPAREN] = ACTIONS(2477), - [anon_sym_ref] = ACTIONS(2369), - [anon_sym_LBRACE] = ACTIONS(2371), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_LPAREN] = ACTIONS(2545), + [anon_sym_ref] = ACTIONS(2341), + [anon_sym_LBRACE] = ACTIONS(2343), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1061), - [anon_sym_LT] = ACTIONS(2479), - [anon_sym_GT] = ACTIONS(2479), + [anon_sym_new] = ACTIONS(1059), + [anon_sym_LT] = ACTIONS(2547), + [anon_sym_GT] = ACTIONS(2547), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1067), - [anon_sym_BANG] = ACTIONS(1941), - [anon_sym_TILDE] = ACTIONS(1941), - [anon_sym_PLUS_PLUS] = ACTIONS(1941), - [anon_sym_DASH_DASH] = ACTIONS(1941), - [anon_sym_true] = ACTIONS(1259), - [anon_sym_false] = ACTIONS(1259), - [anon_sym_PLUS] = ACTIONS(1939), - [anon_sym_DASH] = ACTIONS(1939), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(1883), + [anon_sym_TILDE] = ACTIONS(1883), + [anon_sym_PLUS_PLUS] = ACTIONS(1883), + [anon_sym_DASH_DASH] = ACTIONS(1883), + [anon_sym_true] = ACTIONS(77), + [anon_sym_false] = ACTIONS(77), + [anon_sym_PLUS] = ACTIONS(1881), + [anon_sym_DASH] = ACTIONS(1881), [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(1941), - [anon_sym_AMP] = ACTIONS(1941), - [anon_sym_GT_EQ] = ACTIONS(2481), - [anon_sym_LT_EQ] = ACTIONS(2481), + [anon_sym_CARET] = ACTIONS(1883), + [anon_sym_AMP] = ACTIONS(1883), + [anon_sym_GT_EQ] = ACTIONS(2549), + [anon_sym_LT_EQ] = ACTIONS(2549), [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(2377), + [anon_sym_scoped] = ACTIONS(2349), [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(2483), - [sym_predefined_type] = ACTIONS(2485), - [anon_sym_unchecked] = ACTIONS(1067), + [anon_sym_var] = ACTIONS(2351), + [sym_predefined_type] = ACTIONS(2353), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1269), - [anon_sym_throw] = ACTIONS(1589), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(1527), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1591), - [sym_discard] = ACTIONS(2487), + [anon_sym_await] = ACTIONS(1529), + [sym_discard] = ACTIONS(1081), [anon_sym_DOT_DOT] = ACTIONS(123), - [anon_sym_not] = ACTIONS(2489), + [anon_sym_not] = ACTIONS(2551), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -97969,18 +97855,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(1279), - [anon_sym_typeof] = ACTIONS(1281), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), [anon_sym___makeref] = ACTIONS(133), [anon_sym___reftype] = ACTIONS(135), [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(1289), - [anon_sym_SQUOTE] = ACTIONS(1291), - [sym_integer_literal] = ACTIONS(1289), - [sym_real_literal] = ACTIONS(1293), - [anon_sym_DQUOTE] = ACTIONS(1295), - [sym_verbatim_string_literal] = ACTIONS(1293), - [aux_sym_preproc_if_token1] = ACTIONS(1089), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_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), @@ -97991,104 +97877,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(1299), - [sym_interpolation_verbatim_start] = ACTIONS(1301), - [sym_interpolation_raw_start] = ACTIONS(1303), - [sym_raw_string_start] = ACTIONS(1305), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [sym_interpolation_raw_start] = ACTIONS(155), + [sym_raw_string_start] = ACTIONS(157), }, [352] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(2866), - [sym_alias_qualified_name] = STATE(2373), - [sym__simple_name] = STATE(2277), - [sym_qualified_name] = STATE(2373), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(2479), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(2378), - [sym__array_base_type] = STATE(7103), - [sym_nullable_type] = STATE(2379), - [sym_pointer_type] = STATE(2379), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(2379), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(2380), - [sym_pattern] = STATE(5233), - [sym_constant_pattern] = STATE(3486), - [sym_parenthesized_pattern] = STATE(3486), - [sym_var_pattern] = STATE(3486), - [sym_type_pattern] = STATE(3486), - [sym_list_pattern] = STATE(3486), - [sym_recursive_pattern] = STATE(3486), - [sym_positional_pattern_clause] = STATE(2523), - [sym_property_pattern_clause] = STATE(2570), - [sym_relational_pattern] = STATE(3486), - [sym_negated_pattern] = STATE(3486), - [sym_and_pattern] = STATE(3486), - [sym_or_pattern] = STATE(3486), - [sym_declaration_pattern] = STATE(3486), - [sym_expression] = STATE(5668), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3520), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3455), - [sym_postfix_unary_expression] = STATE(3469), - [sym_prefix_unary_expression] = STATE(3469), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6154), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3455), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3469), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3455), - [sym_member_access_expression] = STATE(2719), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3469), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7530), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(3455), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3455), - [sym_typeof_expression] = STATE(3455), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2719), - [sym_literal] = STATE(3455), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2258), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(2873), + [sym_alias_qualified_name] = STATE(2402), + [sym__simple_name] = STATE(2330), + [sym_qualified_name] = STATE(2402), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(2508), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(2373), + [sym__array_base_type] = STATE(7083), + [sym_nullable_type] = STATE(2375), + [sym_pointer_type] = STATE(2375), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(2375), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(2377), + [sym_pattern] = STATE(3407), + [sym_constant_pattern] = STATE(3429), + [sym_parenthesized_pattern] = STATE(3429), + [sym_var_pattern] = STATE(3429), + [sym_type_pattern] = STATE(3429), + [sym_list_pattern] = STATE(3429), + [sym_recursive_pattern] = STATE(3429), + [sym_positional_pattern_clause] = STATE(2578), + [sym_property_pattern_clause] = STATE(2739), + [sym_relational_pattern] = STATE(3429), + [sym_negated_pattern] = STATE(3429), + [sym_and_pattern] = STATE(3429), + [sym_or_pattern] = STATE(3429), + [sym_declaration_pattern] = STATE(3429), + [sym_expression] = STATE(5683), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3510), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3397), + [sym_postfix_unary_expression] = STATE(3404), + [sym_prefix_unary_expression] = STATE(3404), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6134), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3397), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3404), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3397), + [sym_member_access_expression] = STATE(2686), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3404), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7425), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(3397), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3397), + [sym_typeof_expression] = STATE(3397), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2686), + [sym_literal] = STATE(3397), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2178), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(352), [sym_preproc_endregion] = STATE(352), [sym_preproc_line] = STATE(352), @@ -98098,53 +97984,53 @@ 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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1049), - [anon_sym_LPAREN] = ACTIONS(2499), - [anon_sym_ref] = ACTIONS(2449), - [anon_sym_LBRACE] = ACTIONS(2371), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_LPAREN] = ACTIONS(2545), + [anon_sym_ref] = ACTIONS(2341), + [anon_sym_LBRACE] = ACTIONS(2343), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1061), - [anon_sym_LT] = ACTIONS(1991), - [anon_sym_GT] = ACTIONS(1991), + [anon_sym_new] = ACTIONS(1059), + [anon_sym_LT] = ACTIONS(2547), + [anon_sym_GT] = ACTIONS(2547), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1067), - [anon_sym_BANG] = ACTIONS(1617), - [anon_sym_TILDE] = ACTIONS(1617), - [anon_sym_PLUS_PLUS] = ACTIONS(1617), - [anon_sym_DASH_DASH] = ACTIONS(1617), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(1883), + [anon_sym_TILDE] = ACTIONS(1883), + [anon_sym_PLUS_PLUS] = ACTIONS(1883), + [anon_sym_DASH_DASH] = ACTIONS(1883), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1615), - [anon_sym_DASH] = ACTIONS(1615), + [anon_sym_PLUS] = ACTIONS(1881), + [anon_sym_DASH] = ACTIONS(1881), [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(1617), - [anon_sym_AMP] = ACTIONS(1617), - [anon_sym_GT_EQ] = ACTIONS(1993), - [anon_sym_LT_EQ] = ACTIONS(1993), + [anon_sym_CARET] = ACTIONS(1883), + [anon_sym_AMP] = ACTIONS(1883), + [anon_sym_GT_EQ] = ACTIONS(2549), + [anon_sym_LT_EQ] = ACTIONS(2549), [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(2377), + [anon_sym_scoped] = ACTIONS(2349), [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(2501), - [sym_predefined_type] = ACTIONS(2435), - [anon_sym_unchecked] = ACTIONS(1067), + [anon_sym_var] = ACTIONS(2351), + [sym_predefined_type] = ACTIONS(2353), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1589), + [anon_sym_throw] = ACTIONS(1527), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1591), - [sym_discard] = ACTIONS(1083), + [anon_sym_await] = ACTIONS(1529), + [sym_discard] = ACTIONS(1081), [anon_sym_DOT_DOT] = ACTIONS(123), - [anon_sym_not] = ACTIONS(2503), + [anon_sym_not] = ACTIONS(2551), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -98169,7 +98055,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(1089), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -98186,98 +98072,98 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [353] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(2866), - [sym_alias_qualified_name] = STATE(2373), - [sym__simple_name] = STATE(2277), - [sym_qualified_name] = STATE(2373), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(2479), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(2378), - [sym__array_base_type] = STATE(7103), - [sym_nullable_type] = STATE(2379), - [sym_pointer_type] = STATE(2379), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(2379), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(2380), - [sym_pattern] = STATE(3432), - [sym_constant_pattern] = STATE(3486), - [sym_parenthesized_pattern] = STATE(3486), - [sym_var_pattern] = STATE(3486), - [sym_type_pattern] = STATE(3486), - [sym_list_pattern] = STATE(3486), - [sym_recursive_pattern] = STATE(3486), - [sym_positional_pattern_clause] = STATE(2523), - [sym_property_pattern_clause] = STATE(2570), - [sym_relational_pattern] = STATE(3486), - [sym_negated_pattern] = STATE(3486), - [sym_and_pattern] = STATE(3486), - [sym_or_pattern] = STATE(3486), - [sym_declaration_pattern] = STATE(3486), - [sym_expression] = STATE(5668), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3520), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3455), - [sym_postfix_unary_expression] = STATE(3469), - [sym_prefix_unary_expression] = STATE(3469), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6154), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3455), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3469), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3455), - [sym_member_access_expression] = STATE(2719), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3469), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7530), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(3455), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3455), - [sym_typeof_expression] = STATE(3455), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2719), - [sym_literal] = STATE(3455), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2258), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(2873), + [sym_alias_qualified_name] = STATE(2402), + [sym__simple_name] = STATE(2330), + [sym_qualified_name] = STATE(2402), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(2508), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(2373), + [sym__array_base_type] = STATE(7083), + [sym_nullable_type] = STATE(2375), + [sym_pointer_type] = STATE(2375), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(2375), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(2377), + [sym_pattern] = STATE(5490), + [sym_constant_pattern] = STATE(3429), + [sym_parenthesized_pattern] = STATE(3429), + [sym_var_pattern] = STATE(3429), + [sym_type_pattern] = STATE(3429), + [sym_list_pattern] = STATE(3429), + [sym_recursive_pattern] = STATE(3429), + [sym_positional_pattern_clause] = STATE(2578), + [sym_property_pattern_clause] = STATE(2739), + [sym_relational_pattern] = STATE(3429), + [sym_negated_pattern] = STATE(3429), + [sym_and_pattern] = STATE(3429), + [sym_or_pattern] = STATE(3429), + [sym_declaration_pattern] = STATE(3429), + [sym_expression] = STATE(5683), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3510), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3397), + [sym_postfix_unary_expression] = STATE(3404), + [sym_prefix_unary_expression] = STATE(3404), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6134), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3397), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3404), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3397), + [sym_member_access_expression] = STATE(2686), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3404), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7425), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(3397), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3397), + [sym_typeof_expression] = STATE(3397), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2686), + [sym_literal] = STATE(3397), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2178), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(353), [sym_preproc_endregion] = STATE(353), [sym_preproc_line] = STATE(353), @@ -98287,53 +98173,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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1049), - [anon_sym_LPAREN] = ACTIONS(2499), - [anon_sym_ref] = ACTIONS(2449), - [anon_sym_LBRACE] = ACTIONS(2371), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_LPAREN] = ACTIONS(2545), + [anon_sym_ref] = ACTIONS(2341), + [anon_sym_LBRACE] = ACTIONS(2343), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1061), - [anon_sym_LT] = ACTIONS(1991), - [anon_sym_GT] = ACTIONS(1991), + [anon_sym_new] = ACTIONS(1059), + [anon_sym_LT] = ACTIONS(2547), + [anon_sym_GT] = ACTIONS(2547), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1067), - [anon_sym_BANG] = ACTIONS(1617), - [anon_sym_TILDE] = ACTIONS(1617), - [anon_sym_PLUS_PLUS] = ACTIONS(1617), - [anon_sym_DASH_DASH] = ACTIONS(1617), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(1883), + [anon_sym_TILDE] = ACTIONS(1883), + [anon_sym_PLUS_PLUS] = ACTIONS(1883), + [anon_sym_DASH_DASH] = ACTIONS(1883), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1615), - [anon_sym_DASH] = ACTIONS(1615), + [anon_sym_PLUS] = ACTIONS(1881), + [anon_sym_DASH] = ACTIONS(1881), [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(1617), - [anon_sym_AMP] = ACTIONS(1617), - [anon_sym_GT_EQ] = ACTIONS(1993), - [anon_sym_LT_EQ] = ACTIONS(1993), + [anon_sym_CARET] = ACTIONS(1883), + [anon_sym_AMP] = ACTIONS(1883), + [anon_sym_GT_EQ] = ACTIONS(2549), + [anon_sym_LT_EQ] = ACTIONS(2549), [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(2377), + [anon_sym_scoped] = ACTIONS(2349), [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(2501), - [sym_predefined_type] = ACTIONS(2435), - [anon_sym_unchecked] = ACTIONS(1067), + [anon_sym_var] = ACTIONS(2351), + [sym_predefined_type] = ACTIONS(2353), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1589), + [anon_sym_throw] = ACTIONS(1527), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1591), - [sym_discard] = ACTIONS(1083), + [anon_sym_await] = ACTIONS(1529), + [sym_discard] = ACTIONS(1081), [anon_sym_DOT_DOT] = ACTIONS(123), - [anon_sym_not] = ACTIONS(2503), + [anon_sym_not] = ACTIONS(2551), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -98358,7 +98244,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(1089), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -98375,98 +98261,98 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [354] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(2866), - [sym_alias_qualified_name] = STATE(2373), - [sym__simple_name] = STATE(2277), - [sym_qualified_name] = STATE(2373), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(2479), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(2378), - [sym__array_base_type] = STATE(7103), - [sym_nullable_type] = STATE(2379), - [sym_pointer_type] = STATE(2379), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(2379), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(2380), - [sym_pattern] = STATE(5155), - [sym_constant_pattern] = STATE(3486), - [sym_parenthesized_pattern] = STATE(3486), - [sym_var_pattern] = STATE(3486), - [sym_type_pattern] = STATE(3486), - [sym_list_pattern] = STATE(3486), - [sym_recursive_pattern] = STATE(3486), - [sym_positional_pattern_clause] = STATE(2523), - [sym_property_pattern_clause] = STATE(2570), - [sym_relational_pattern] = STATE(3486), - [sym_negated_pattern] = STATE(3486), - [sym_and_pattern] = STATE(3486), - [sym_or_pattern] = STATE(3486), - [sym_declaration_pattern] = STATE(3486), - [sym_expression] = STATE(5668), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3520), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3455), - [sym_postfix_unary_expression] = STATE(3469), - [sym_prefix_unary_expression] = STATE(3469), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6154), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3455), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3469), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3455), - [sym_member_access_expression] = STATE(2719), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3469), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7530), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(3455), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3455), - [sym_typeof_expression] = STATE(3455), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2719), - [sym_literal] = STATE(3455), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2258), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(2886), + [sym_alias_qualified_name] = STATE(2402), + [sym__simple_name] = STATE(2336), + [sym_qualified_name] = STATE(2402), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(2482), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(2373), + [sym__array_base_type] = STATE(7083), + [sym_nullable_type] = STATE(2375), + [sym_pointer_type] = STATE(2375), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(2375), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(2377), + [sym_pattern] = STATE(4121), + [sym_constant_pattern] = STATE(4146), + [sym_parenthesized_pattern] = STATE(4146), + [sym_var_pattern] = STATE(4146), + [sym_type_pattern] = STATE(4146), + [sym_list_pattern] = STATE(4146), + [sym_recursive_pattern] = STATE(4146), + [sym_positional_pattern_clause] = STATE(2580), + [sym_property_pattern_clause] = STATE(2769), + [sym_relational_pattern] = STATE(4146), + [sym_negated_pattern] = STATE(4146), + [sym_and_pattern] = STATE(4146), + [sym_or_pattern] = STATE(4146), + [sym_declaration_pattern] = STATE(4146), + [sym_expression] = STATE(5684), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3510), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(4128), + [sym_postfix_unary_expression] = STATE(4129), + [sym_prefix_unary_expression] = STATE(4129), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6134), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(4128), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(4129), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(4128), + [sym_member_access_expression] = STATE(3066), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(4129), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7425), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(4128), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(4128), + [sym_typeof_expression] = STATE(4128), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(3066), + [sym_literal] = STATE(4128), + [sym_character_literal] = STATE(3037), + [sym_string_literal] = STATE(3037), + [sym_raw_string_literal] = STATE(3037), + [sym_boolean_literal] = STATE(3037), + [sym_identifier] = STATE(2178), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(354), [sym_preproc_endregion] = STATE(354), [sym_preproc_line] = STATE(354), @@ -98476,53 +98362,53 @@ 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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1049), - [anon_sym_LPAREN] = ACTIONS(2499), - [anon_sym_ref] = ACTIONS(2449), - [anon_sym_LBRACE] = ACTIONS(2371), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(2449), + [anon_sym_LPAREN] = ACTIONS(2451), + [anon_sym_ref] = ACTIONS(2341), + [anon_sym_LBRACE] = ACTIONS(2343), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1061), - [anon_sym_LT] = ACTIONS(1991), - [anon_sym_GT] = ACTIONS(1991), + [anon_sym_new] = ACTIONS(1059), + [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(1067), - [anon_sym_BANG] = ACTIONS(1617), - [anon_sym_TILDE] = ACTIONS(1617), - [anon_sym_PLUS_PLUS] = ACTIONS(1617), - [anon_sym_DASH_DASH] = ACTIONS(1617), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1615), - [anon_sym_DASH] = ACTIONS(1615), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(1903), + [anon_sym_TILDE] = ACTIONS(1903), + [anon_sym_PLUS_PLUS] = ACTIONS(1903), + [anon_sym_DASH_DASH] = ACTIONS(1903), + [anon_sym_true] = ACTIONS(1257), + [anon_sym_false] = ACTIONS(1257), + [anon_sym_PLUS] = ACTIONS(1901), + [anon_sym_DASH] = ACTIONS(1901), [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(1617), - [anon_sym_AMP] = ACTIONS(1617), - [anon_sym_GT_EQ] = ACTIONS(1993), - [anon_sym_LT_EQ] = ACTIONS(1993), + [anon_sym_CARET] = ACTIONS(1903), + [anon_sym_AMP] = ACTIONS(1903), + [anon_sym_GT_EQ] = ACTIONS(2455), + [anon_sym_LT_EQ] = ACTIONS(2455), [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(2377), + [anon_sym_scoped] = ACTIONS(2349), [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(2501), - [sym_predefined_type] = ACTIONS(2435), - [anon_sym_unchecked] = ACTIONS(1067), + [anon_sym_var] = ACTIONS(2457), + [sym_predefined_type] = ACTIONS(2459), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1589), + [anon_sym_default] = ACTIONS(1267), + [anon_sym_throw] = ACTIONS(1527), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1591), - [sym_discard] = ACTIONS(1083), + [anon_sym_await] = ACTIONS(1529), + [sym_discard] = ACTIONS(2461), [anon_sym_DOT_DOT] = ACTIONS(123), - [anon_sym_not] = ACTIONS(2503), + [anon_sym_not] = ACTIONS(2463), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -98536,18 +98422,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(129), - [anon_sym_typeof] = ACTIONS(131), + [anon_sym_sizeof] = ACTIONS(1277), + [anon_sym_typeof] = ACTIONS(1279), [anon_sym___makeref] = ACTIONS(133), [anon_sym___reftype] = ACTIONS(135), [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1089), + [sym_null_literal] = ACTIONS(1287), + [anon_sym_SQUOTE] = ACTIONS(1289), + [sym_integer_literal] = ACTIONS(1287), + [sym_real_literal] = ACTIONS(1291), + [anon_sym_DQUOTE] = ACTIONS(1293), + [sym_verbatim_string_literal] = ACTIONS(1291), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -98558,104 +98444,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(1297), + [sym_interpolation_verbatim_start] = ACTIONS(1299), + [sym_interpolation_raw_start] = ACTIONS(1301), + [sym_raw_string_start] = ACTIONS(1303), }, [355] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(2877), - [sym_alias_qualified_name] = STATE(2373), - [sym__simple_name] = STATE(2322), - [sym_qualified_name] = STATE(2373), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(2490), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(2378), - [sym__array_base_type] = STATE(7103), - [sym_nullable_type] = STATE(2379), - [sym_pointer_type] = STATE(2379), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(2379), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(2380), - [sym_pattern] = STATE(4144), - [sym_constant_pattern] = STATE(4132), - [sym_parenthesized_pattern] = STATE(4132), - [sym_var_pattern] = STATE(4132), - [sym_type_pattern] = STATE(4132), - [sym_list_pattern] = STATE(4132), - [sym_recursive_pattern] = STATE(4132), - [sym_positional_pattern_clause] = STATE(2582), - [sym_property_pattern_clause] = STATE(2731), - [sym_relational_pattern] = STATE(4132), - [sym_negated_pattern] = STATE(4132), - [sym_and_pattern] = STATE(4132), - [sym_or_pattern] = STATE(4132), - [sym_declaration_pattern] = STATE(4132), - [sym_expression] = STATE(5683), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3520), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(4172), - [sym_postfix_unary_expression] = STATE(4148), - [sym_prefix_unary_expression] = STATE(4148), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6154), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(4172), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(4148), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(4172), - [sym_member_access_expression] = STATE(3069), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(4148), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7530), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(4172), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(4172), - [sym_typeof_expression] = STATE(4172), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(3069), - [sym_literal] = STATE(4172), - [sym_character_literal] = STATE(3011), - [sym_string_literal] = STATE(3011), - [sym_raw_string_literal] = STATE(3011), - [sym_boolean_literal] = STATE(3011), - [sym_identifier] = STATE(2186), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(2428), + [sym_alias_qualified_name] = STATE(2402), + [sym__simple_name] = STATE(2184), + [sym_qualified_name] = STATE(2402), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(2464), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(2373), + [sym__array_base_type] = STATE(7083), + [sym_nullable_type] = STATE(2375), + [sym_pointer_type] = STATE(2375), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(2375), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(2377), + [sym_pattern] = STATE(5391), + [sym_constant_pattern] = STATE(3429), + [sym_parenthesized_pattern] = STATE(3429), + [sym_var_pattern] = STATE(3429), + [sym_type_pattern] = STATE(3429), + [sym_list_pattern] = STATE(3429), + [sym_recursive_pattern] = STATE(3429), + [sym_positional_pattern_clause] = STATE(2275), + [sym_property_pattern_clause] = STATE(2315), + [sym_relational_pattern] = STATE(3429), + [sym_negated_pattern] = STATE(3429), + [sym_and_pattern] = STATE(3429), + [sym_or_pattern] = STATE(3429), + [sym_declaration_pattern] = STATE(3429), + [sym_expression] = STATE(5653), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3510), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3397), + [sym_postfix_unary_expression] = STATE(3404), + [sym_prefix_unary_expression] = STATE(3404), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6134), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3397), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3404), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3397), + [sym_member_access_expression] = STATE(2686), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3404), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7425), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(3397), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3397), + [sym_typeof_expression] = STATE(3397), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2686), + [sym_literal] = STATE(3397), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2260), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(355), [sym_preproc_endregion] = STATE(355), [sym_preproc_line] = STATE(355), @@ -98665,53 +98551,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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(2475), - [anon_sym_LPAREN] = ACTIONS(2545), - [anon_sym_ref] = ACTIONS(2369), - [anon_sym_LBRACE] = ACTIONS(2371), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_LPAREN] = ACTIONS(2553), + [anon_sym_ref] = ACTIONS(2499), + [anon_sym_LBRACE] = ACTIONS(2343), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1061), - [anon_sym_LT] = ACTIONS(2547), - [anon_sym_GT] = ACTIONS(2547), + [anon_sym_new] = ACTIONS(1059), + [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(1067), - [anon_sym_BANG] = ACTIONS(1849), - [anon_sym_TILDE] = ACTIONS(1849), - [anon_sym_PLUS_PLUS] = ACTIONS(1849), - [anon_sym_DASH_DASH] = ACTIONS(1849), - [anon_sym_true] = ACTIONS(1259), - [anon_sym_false] = ACTIONS(1259), - [anon_sym_PLUS] = ACTIONS(1847), - [anon_sym_DASH] = ACTIONS(1847), + [anon_sym_checked] = ACTIONS(1065), + [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(1849), - [anon_sym_AMP] = ACTIONS(1849), - [anon_sym_GT_EQ] = ACTIONS(2549), - [anon_sym_LT_EQ] = ACTIONS(2549), + [anon_sym_CARET] = ACTIONS(1619), + [anon_sym_AMP] = ACTIONS(1619), + [anon_sym_GT_EQ] = ACTIONS(2557), + [anon_sym_LT_EQ] = ACTIONS(2557), [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(2377), + [anon_sym_scoped] = ACTIONS(2349), [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(2551), - [sym_predefined_type] = ACTIONS(2485), - [anon_sym_unchecked] = ACTIONS(1067), + [anon_sym_var] = ACTIONS(2501), + [sym_predefined_type] = ACTIONS(2353), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1269), - [anon_sym_throw] = ACTIONS(1589), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(1527), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1591), - [sym_discard] = ACTIONS(2487), + [anon_sym_await] = ACTIONS(1529), + [sym_discard] = ACTIONS(1081), [anon_sym_DOT_DOT] = ACTIONS(123), - [anon_sym_not] = ACTIONS(2553), + [anon_sym_not] = ACTIONS(2559), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -98725,18 +98611,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(1279), - [anon_sym_typeof] = ACTIONS(1281), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), [anon_sym___makeref] = ACTIONS(133), [anon_sym___reftype] = ACTIONS(135), [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(1289), - [anon_sym_SQUOTE] = ACTIONS(1291), - [sym_integer_literal] = ACTIONS(1289), - [sym_real_literal] = ACTIONS(1293), - [anon_sym_DQUOTE] = ACTIONS(1295), - [sym_verbatim_string_literal] = ACTIONS(1293), - [aux_sym_preproc_if_token1] = ACTIONS(1089), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_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), @@ -98747,104 +98633,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(1299), - [sym_interpolation_verbatim_start] = ACTIONS(1301), - [sym_interpolation_raw_start] = ACTIONS(1303), - [sym_raw_string_start] = ACTIONS(1305), + [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(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(2877), - [sym_alias_qualified_name] = STATE(2373), - [sym__simple_name] = STATE(2322), - [sym_qualified_name] = STATE(2373), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(2490), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(2378), - [sym__array_base_type] = STATE(7103), - [sym_nullable_type] = STATE(2379), - [sym_pointer_type] = STATE(2379), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(2379), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(2380), - [sym_pattern] = STATE(4147), - [sym_constant_pattern] = STATE(4132), - [sym_parenthesized_pattern] = STATE(4132), - [sym_var_pattern] = STATE(4132), - [sym_type_pattern] = STATE(4132), - [sym_list_pattern] = STATE(4132), - [sym_recursive_pattern] = STATE(4132), - [sym_positional_pattern_clause] = STATE(2582), - [sym_property_pattern_clause] = STATE(2731), - [sym_relational_pattern] = STATE(4132), - [sym_negated_pattern] = STATE(4132), - [sym_and_pattern] = STATE(4132), - [sym_or_pattern] = STATE(4132), - [sym_declaration_pattern] = STATE(4132), - [sym_expression] = STATE(5683), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3520), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(4172), - [sym_postfix_unary_expression] = STATE(4148), - [sym_prefix_unary_expression] = STATE(4148), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6154), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(4172), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(4148), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(4172), - [sym_member_access_expression] = STATE(3069), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(4148), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7530), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(4172), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(4172), - [sym_typeof_expression] = STATE(4172), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(3069), - [sym_literal] = STATE(4172), - [sym_character_literal] = STATE(3011), - [sym_string_literal] = STATE(3011), - [sym_raw_string_literal] = STATE(3011), - [sym_boolean_literal] = STATE(3011), - [sym_identifier] = STATE(2186), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(2428), + [sym_alias_qualified_name] = STATE(2402), + [sym__simple_name] = STATE(2184), + [sym_qualified_name] = STATE(2402), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(2464), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(2373), + [sym__array_base_type] = STATE(7083), + [sym_nullable_type] = STATE(2375), + [sym_pointer_type] = STATE(2375), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(2375), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(2377), + [sym_pattern] = STATE(3407), + [sym_constant_pattern] = STATE(3429), + [sym_parenthesized_pattern] = STATE(3429), + [sym_var_pattern] = STATE(3429), + [sym_type_pattern] = STATE(3429), + [sym_list_pattern] = STATE(3429), + [sym_recursive_pattern] = STATE(3429), + [sym_positional_pattern_clause] = STATE(2275), + [sym_property_pattern_clause] = STATE(2315), + [sym_relational_pattern] = STATE(3429), + [sym_negated_pattern] = STATE(3429), + [sym_and_pattern] = STATE(3429), + [sym_or_pattern] = STATE(3429), + [sym_declaration_pattern] = STATE(3429), + [sym_expression] = STATE(5653), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3510), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3397), + [sym_postfix_unary_expression] = STATE(3404), + [sym_prefix_unary_expression] = STATE(3404), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6134), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3397), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3404), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3397), + [sym_member_access_expression] = STATE(2686), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3404), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7425), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(3397), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3397), + [sym_typeof_expression] = STATE(3397), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2686), + [sym_literal] = STATE(3397), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2260), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(356), [sym_preproc_endregion] = STATE(356), [sym_preproc_line] = STATE(356), @@ -98854,53 +98740,53 @@ 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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(2475), - [anon_sym_LPAREN] = ACTIONS(2545), - [anon_sym_ref] = ACTIONS(2369), - [anon_sym_LBRACE] = ACTIONS(2371), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_LPAREN] = ACTIONS(2553), + [anon_sym_ref] = ACTIONS(2499), + [anon_sym_LBRACE] = ACTIONS(2343), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1061), - [anon_sym_LT] = ACTIONS(2547), - [anon_sym_GT] = ACTIONS(2547), + [anon_sym_new] = ACTIONS(1059), + [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(1067), - [anon_sym_BANG] = ACTIONS(1849), - [anon_sym_TILDE] = ACTIONS(1849), - [anon_sym_PLUS_PLUS] = ACTIONS(1849), - [anon_sym_DASH_DASH] = ACTIONS(1849), - [anon_sym_true] = ACTIONS(1259), - [anon_sym_false] = ACTIONS(1259), - [anon_sym_PLUS] = ACTIONS(1847), - [anon_sym_DASH] = ACTIONS(1847), + [anon_sym_checked] = ACTIONS(1065), + [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(1849), - [anon_sym_AMP] = ACTIONS(1849), - [anon_sym_GT_EQ] = ACTIONS(2549), - [anon_sym_LT_EQ] = ACTIONS(2549), + [anon_sym_CARET] = ACTIONS(1619), + [anon_sym_AMP] = ACTIONS(1619), + [anon_sym_GT_EQ] = ACTIONS(2557), + [anon_sym_LT_EQ] = ACTIONS(2557), [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(2377), + [anon_sym_scoped] = ACTIONS(2349), [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(2551), - [sym_predefined_type] = ACTIONS(2485), - [anon_sym_unchecked] = ACTIONS(1067), + [anon_sym_var] = ACTIONS(2501), + [sym_predefined_type] = ACTIONS(2353), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1269), - [anon_sym_throw] = ACTIONS(1589), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(1527), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1591), - [sym_discard] = ACTIONS(2487), + [anon_sym_await] = ACTIONS(1529), + [sym_discard] = ACTIONS(1081), [anon_sym_DOT_DOT] = ACTIONS(123), - [anon_sym_not] = ACTIONS(2553), + [anon_sym_not] = ACTIONS(2559), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -98914,18 +98800,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(1279), - [anon_sym_typeof] = ACTIONS(1281), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), [anon_sym___makeref] = ACTIONS(133), [anon_sym___reftype] = ACTIONS(135), [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(1289), - [anon_sym_SQUOTE] = ACTIONS(1291), - [sym_integer_literal] = ACTIONS(1289), - [sym_real_literal] = ACTIONS(1293), - [anon_sym_DQUOTE] = ACTIONS(1295), - [sym_verbatim_string_literal] = ACTIONS(1293), - [aux_sym_preproc_if_token1] = ACTIONS(1089), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_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), @@ -98936,104 +98822,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(1299), - [sym_interpolation_verbatim_start] = ACTIONS(1301), - [sym_interpolation_raw_start] = ACTIONS(1303), - [sym_raw_string_start] = ACTIONS(1305), + [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(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(2877), - [sym_alias_qualified_name] = STATE(2373), - [sym__simple_name] = STATE(2322), - [sym_qualified_name] = STATE(2373), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(2490), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(2378), - [sym__array_base_type] = STATE(7103), - [sym_nullable_type] = STATE(2379), - [sym_pointer_type] = STATE(2379), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(2379), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(2380), - [sym_pattern] = STATE(4142), - [sym_constant_pattern] = STATE(4132), - [sym_parenthesized_pattern] = STATE(4132), - [sym_var_pattern] = STATE(4132), - [sym_type_pattern] = STATE(4132), - [sym_list_pattern] = STATE(4132), - [sym_recursive_pattern] = STATE(4132), - [sym_positional_pattern_clause] = STATE(2582), - [sym_property_pattern_clause] = STATE(2731), - [sym_relational_pattern] = STATE(4132), - [sym_negated_pattern] = STATE(4132), - [sym_and_pattern] = STATE(4132), - [sym_or_pattern] = STATE(4132), - [sym_declaration_pattern] = STATE(4132), - [sym_expression] = STATE(5683), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3520), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(4172), - [sym_postfix_unary_expression] = STATE(4148), - [sym_prefix_unary_expression] = STATE(4148), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6154), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(4172), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(4148), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(4172), - [sym_member_access_expression] = STATE(3069), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(4148), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7530), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(4172), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(4172), - [sym_typeof_expression] = STATE(4172), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(3069), - [sym_literal] = STATE(4172), - [sym_character_literal] = STATE(3011), - [sym_string_literal] = STATE(3011), - [sym_raw_string_literal] = STATE(3011), - [sym_boolean_literal] = STATE(3011), - [sym_identifier] = STATE(2186), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(2428), + [sym_alias_qualified_name] = STATE(2402), + [sym__simple_name] = STATE(2184), + [sym_qualified_name] = STATE(2402), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(2464), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(2373), + [sym__array_base_type] = STATE(7083), + [sym_nullable_type] = STATE(2375), + [sym_pointer_type] = STATE(2375), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(2375), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(2377), + [sym_pattern] = STATE(5504), + [sym_constant_pattern] = STATE(3429), + [sym_parenthesized_pattern] = STATE(3429), + [sym_var_pattern] = STATE(3429), + [sym_type_pattern] = STATE(3429), + [sym_list_pattern] = STATE(3429), + [sym_recursive_pattern] = STATE(3429), + [sym_positional_pattern_clause] = STATE(2275), + [sym_property_pattern_clause] = STATE(2315), + [sym_relational_pattern] = STATE(3429), + [sym_negated_pattern] = STATE(3429), + [sym_and_pattern] = STATE(3429), + [sym_or_pattern] = STATE(3429), + [sym_declaration_pattern] = STATE(3429), + [sym_expression] = STATE(5653), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3510), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3397), + [sym_postfix_unary_expression] = STATE(3404), + [sym_prefix_unary_expression] = STATE(3404), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6134), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3397), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3404), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3397), + [sym_member_access_expression] = STATE(2686), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3404), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7425), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(3397), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3397), + [sym_typeof_expression] = STATE(3397), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2686), + [sym_literal] = STATE(3397), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2260), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(357), [sym_preproc_endregion] = STATE(357), [sym_preproc_line] = STATE(357), @@ -99043,53 +98929,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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(2475), - [anon_sym_LPAREN] = ACTIONS(2545), - [anon_sym_ref] = ACTIONS(2369), - [anon_sym_LBRACE] = ACTIONS(2371), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_LPAREN] = ACTIONS(2553), + [anon_sym_ref] = ACTIONS(2499), + [anon_sym_LBRACE] = ACTIONS(2343), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1061), - [anon_sym_LT] = ACTIONS(2547), - [anon_sym_GT] = ACTIONS(2547), + [anon_sym_new] = ACTIONS(1059), + [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(1067), - [anon_sym_BANG] = ACTIONS(1849), - [anon_sym_TILDE] = ACTIONS(1849), - [anon_sym_PLUS_PLUS] = ACTIONS(1849), - [anon_sym_DASH_DASH] = ACTIONS(1849), - [anon_sym_true] = ACTIONS(1259), - [anon_sym_false] = ACTIONS(1259), - [anon_sym_PLUS] = ACTIONS(1847), - [anon_sym_DASH] = ACTIONS(1847), + [anon_sym_checked] = ACTIONS(1065), + [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(1849), - [anon_sym_AMP] = ACTIONS(1849), - [anon_sym_GT_EQ] = ACTIONS(2549), - [anon_sym_LT_EQ] = ACTIONS(2549), + [anon_sym_CARET] = ACTIONS(1619), + [anon_sym_AMP] = ACTIONS(1619), + [anon_sym_GT_EQ] = ACTIONS(2557), + [anon_sym_LT_EQ] = ACTIONS(2557), [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(2377), + [anon_sym_scoped] = ACTIONS(2349), [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(2551), - [sym_predefined_type] = ACTIONS(2485), - [anon_sym_unchecked] = ACTIONS(1067), + [anon_sym_var] = ACTIONS(2501), + [sym_predefined_type] = ACTIONS(2353), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1269), - [anon_sym_throw] = ACTIONS(1589), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(1527), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1591), - [sym_discard] = ACTIONS(2487), + [anon_sym_await] = ACTIONS(1529), + [sym_discard] = ACTIONS(1081), [anon_sym_DOT_DOT] = ACTIONS(123), - [anon_sym_not] = ACTIONS(2553), + [anon_sym_not] = ACTIONS(2559), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -99103,18 +98989,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(1279), - [anon_sym_typeof] = ACTIONS(1281), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), [anon_sym___makeref] = ACTIONS(133), [anon_sym___reftype] = ACTIONS(135), [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(1289), - [anon_sym_SQUOTE] = ACTIONS(1291), - [sym_integer_literal] = ACTIONS(1289), - [sym_real_literal] = ACTIONS(1293), - [anon_sym_DQUOTE] = ACTIONS(1295), - [sym_verbatim_string_literal] = ACTIONS(1293), - [aux_sym_preproc_if_token1] = ACTIONS(1089), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_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), @@ -99125,104 +99011,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(1299), - [sym_interpolation_verbatim_start] = ACTIONS(1301), - [sym_interpolation_raw_start] = ACTIONS(1303), - [sym_raw_string_start] = ACTIONS(1305), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [sym_interpolation_raw_start] = ACTIONS(155), + [sym_raw_string_start] = ACTIONS(157), }, [358] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(2869), - [sym_alias_qualified_name] = STATE(2373), - [sym__simple_name] = STATE(2279), - [sym_qualified_name] = STATE(2373), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(2468), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(2378), - [sym__array_base_type] = STATE(7103), - [sym_nullable_type] = STATE(2379), - [sym_pointer_type] = STATE(2379), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(2379), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(2380), - [sym_pattern] = STATE(4993), - [sym_constant_pattern] = STATE(3295), - [sym_parenthesized_pattern] = STATE(3295), - [sym_var_pattern] = STATE(3295), - [sym_type_pattern] = STATE(3295), - [sym_list_pattern] = STATE(3295), - [sym_recursive_pattern] = STATE(3295), - [sym_positional_pattern_clause] = STATE(2527), - [sym_property_pattern_clause] = STATE(2589), - [sym_relational_pattern] = STATE(3295), - [sym_negated_pattern] = STATE(3295), - [sym_and_pattern] = STATE(3295), - [sym_or_pattern] = STATE(3295), - [sym_declaration_pattern] = STATE(3295), - [sym_expression] = STATE(5693), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3520), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3310), - [sym_postfix_unary_expression] = STATE(3312), - [sym_prefix_unary_expression] = STATE(3312), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6154), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3310), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3312), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3310), - [sym_member_access_expression] = STATE(2617), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3312), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7530), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(3310), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3310), - [sym_typeof_expression] = STATE(3310), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2617), - [sym_literal] = STATE(3310), - [sym_character_literal] = STATE(3278), - [sym_string_literal] = STATE(3278), - [sym_raw_string_literal] = STATE(3278), - [sym_boolean_literal] = STATE(3278), - [sym_identifier] = STATE(2258), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(2410), + [sym_alias_qualified_name] = STATE(2402), + [sym__simple_name] = STATE(2185), + [sym_qualified_name] = STATE(2402), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(2473), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(2373), + [sym__array_base_type] = STATE(7083), + [sym_nullable_type] = STATE(2375), + [sym_pointer_type] = STATE(2375), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(2375), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(2377), + [sym_pattern] = STATE(5162), + [sym_constant_pattern] = STATE(3311), + [sym_parenthesized_pattern] = STATE(3311), + [sym_var_pattern] = STATE(3311), + [sym_type_pattern] = STATE(3311), + [sym_list_pattern] = STATE(3311), + [sym_recursive_pattern] = STATE(3311), + [sym_positional_pattern_clause] = STATE(2257), + [sym_property_pattern_clause] = STATE(2289), + [sym_relational_pattern] = STATE(3311), + [sym_negated_pattern] = STATE(3311), + [sym_and_pattern] = STATE(3311), + [sym_or_pattern] = STATE(3311), + [sym_declaration_pattern] = STATE(3311), + [sym_expression] = STATE(5658), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3510), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3275), + [sym_postfix_unary_expression] = STATE(3276), + [sym_prefix_unary_expression] = STATE(3276), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6134), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3275), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3276), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3275), + [sym_member_access_expression] = STATE(2608), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3276), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7425), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(3275), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3275), + [sym_typeof_expression] = STATE(3275), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2608), + [sym_literal] = STATE(3275), + [sym_character_literal] = STATE(3272), + [sym_string_literal] = STATE(3272), + [sym_raw_string_literal] = STATE(3272), + [sym_boolean_literal] = STATE(3272), + [sym_identifier] = STATE(2260), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(358), [sym_preproc_endregion] = STATE(358), [sym_preproc_line] = STATE(358), @@ -99232,53 +99118,53 @@ 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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(2365), - [anon_sym_LPAREN] = ACTIONS(2467), - [anon_sym_ref] = ACTIONS(2449), - [anon_sym_LBRACE] = ACTIONS(2371), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(2357), + [anon_sym_LPAREN] = ACTIONS(2505), + [anon_sym_ref] = ACTIONS(2499), + [anon_sym_LBRACE] = ACTIONS(2343), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1061), - [anon_sym_LT] = ACTIONS(2469), - [anon_sym_GT] = ACTIONS(2469), + [anon_sym_new] = ACTIONS(1059), + [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(1067), - [anon_sym_BANG] = ACTIONS(1533), - [anon_sym_TILDE] = ACTIONS(1533), - [anon_sym_PLUS_PLUS] = ACTIONS(1533), - [anon_sym_DASH_DASH] = ACTIONS(1533), - [anon_sym_true] = ACTIONS(1173), - [anon_sym_false] = ACTIONS(1173), - [anon_sym_PLUS] = ACTIONS(1531), - [anon_sym_DASH] = ACTIONS(1531), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(1555), + [anon_sym_TILDE] = ACTIONS(1555), + [anon_sym_PLUS_PLUS] = ACTIONS(1555), + [anon_sym_DASH_DASH] = ACTIONS(1555), + [anon_sym_true] = ACTIONS(1169), + [anon_sym_false] = ACTIONS(1169), + [anon_sym_PLUS] = ACTIONS(1553), + [anon_sym_DASH] = ACTIONS(1553), [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(1533), - [anon_sym_AMP] = ACTIONS(1533), - [anon_sym_GT_EQ] = ACTIONS(2471), - [anon_sym_LT_EQ] = ACTIONS(2471), + [anon_sym_CARET] = ACTIONS(1555), + [anon_sym_AMP] = ACTIONS(1555), + [anon_sym_GT_EQ] = ACTIONS(2509), + [anon_sym_LT_EQ] = ACTIONS(2509), [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(2377), + [anon_sym_scoped] = ACTIONS(2349), [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(2455), - [sym_predefined_type] = ACTIONS(2381), - [anon_sym_unchecked] = ACTIONS(1067), + [anon_sym_var] = ACTIONS(2511), + [sym_predefined_type] = ACTIONS(2367), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1183), - [anon_sym_throw] = ACTIONS(1589), + [anon_sym_default] = ACTIONS(1179), + [anon_sym_throw] = ACTIONS(1527), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1591), - [sym_discard] = ACTIONS(2383), + [anon_sym_await] = ACTIONS(1529), + [sym_discard] = ACTIONS(2369), [anon_sym_DOT_DOT] = ACTIONS(123), - [anon_sym_not] = ACTIONS(2473), + [anon_sym_not] = ACTIONS(2513), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -99292,18 +99178,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(1193), - [anon_sym_typeof] = ACTIONS(1195), + [anon_sym_sizeof] = ACTIONS(1189), + [anon_sym_typeof] = ACTIONS(1191), [anon_sym___makeref] = ACTIONS(133), [anon_sym___reftype] = ACTIONS(135), [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(1203), - [anon_sym_SQUOTE] = ACTIONS(1205), - [sym_integer_literal] = ACTIONS(1203), - [sym_real_literal] = ACTIONS(1207), - [anon_sym_DQUOTE] = ACTIONS(1209), - [sym_verbatim_string_literal] = ACTIONS(1207), - [aux_sym_preproc_if_token1] = ACTIONS(1089), + [sym_null_literal] = ACTIONS(1199), + [anon_sym_SQUOTE] = ACTIONS(1201), + [sym_integer_literal] = ACTIONS(1199), + [sym_real_literal] = ACTIONS(1203), + [anon_sym_DQUOTE] = ACTIONS(1205), + [sym_verbatim_string_literal] = ACTIONS(1203), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -99314,104 +99200,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(1213), - [sym_interpolation_verbatim_start] = ACTIONS(1215), - [sym_interpolation_raw_start] = ACTIONS(1217), - [sym_raw_string_start] = ACTIONS(1219), + [sym_interpolation_regular_start] = ACTIONS(1209), + [sym_interpolation_verbatim_start] = ACTIONS(1211), + [sym_interpolation_raw_start] = ACTIONS(1213), + [sym_raw_string_start] = ACTIONS(1215), }, [359] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(2888), - [sym_alias_qualified_name] = STATE(2373), - [sym__simple_name] = STATE(2352), - [sym_qualified_name] = STATE(2373), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(2499), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(2378), - [sym__array_base_type] = STATE(7103), - [sym_nullable_type] = STATE(2379), - [sym_pointer_type] = STATE(2379), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(2379), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(2380), - [sym_pattern] = STATE(5528), - [sym_constant_pattern] = STATE(3486), - [sym_parenthesized_pattern] = STATE(3486), - [sym_var_pattern] = STATE(3486), - [sym_type_pattern] = STATE(3486), - [sym_list_pattern] = STATE(3486), - [sym_recursive_pattern] = STATE(3486), - [sym_positional_pattern_clause] = STATE(2584), - [sym_property_pattern_clause] = STATE(2739), - [sym_relational_pattern] = STATE(3486), - [sym_negated_pattern] = STATE(3486), - [sym_and_pattern] = STATE(3486), - [sym_or_pattern] = STATE(3486), - [sym_declaration_pattern] = STATE(3486), - [sym_expression] = STATE(5685), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3520), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3455), - [sym_postfix_unary_expression] = STATE(3469), - [sym_prefix_unary_expression] = STATE(3469), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6154), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3455), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3469), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3455), - [sym_member_access_expression] = STATE(2719), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3469), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7530), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(3455), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3455), - [sym_typeof_expression] = STATE(3455), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2719), - [sym_literal] = STATE(3455), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2186), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(2410), + [sym_alias_qualified_name] = STATE(2402), + [sym__simple_name] = STATE(2185), + [sym_qualified_name] = STATE(2402), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(2473), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(2373), + [sym__array_base_type] = STATE(7083), + [sym_nullable_type] = STATE(2375), + [sym_pointer_type] = STATE(2375), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(2375), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(2377), + [sym_pattern] = STATE(3260), + [sym_constant_pattern] = STATE(3311), + [sym_parenthesized_pattern] = STATE(3311), + [sym_var_pattern] = STATE(3311), + [sym_type_pattern] = STATE(3311), + [sym_list_pattern] = STATE(3311), + [sym_recursive_pattern] = STATE(3311), + [sym_positional_pattern_clause] = STATE(2257), + [sym_property_pattern_clause] = STATE(2289), + [sym_relational_pattern] = STATE(3311), + [sym_negated_pattern] = STATE(3311), + [sym_and_pattern] = STATE(3311), + [sym_or_pattern] = STATE(3311), + [sym_declaration_pattern] = STATE(3311), + [sym_expression] = STATE(5658), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3510), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3275), + [sym_postfix_unary_expression] = STATE(3276), + [sym_prefix_unary_expression] = STATE(3276), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6134), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3275), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3276), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3275), + [sym_member_access_expression] = STATE(2608), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3276), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7425), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(3275), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3275), + [sym_typeof_expression] = STATE(3275), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2608), + [sym_literal] = STATE(3275), + [sym_character_literal] = STATE(3272), + [sym_string_literal] = STATE(3272), + [sym_raw_string_literal] = STATE(3272), + [sym_boolean_literal] = STATE(3272), + [sym_identifier] = STATE(2260), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(359), [sym_preproc_endregion] = STATE(359), [sym_preproc_line] = STATE(359), @@ -99421,53 +99307,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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1049), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(2357), [anon_sym_LPAREN] = ACTIONS(2505), - [anon_sym_ref] = ACTIONS(2369), - [anon_sym_LBRACE] = ACTIONS(2371), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_ref] = ACTIONS(2499), + [anon_sym_LBRACE] = ACTIONS(2343), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1061), + [anon_sym_new] = ACTIONS(1059), [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(1067), - [anon_sym_BANG] = ACTIONS(1903), - [anon_sym_TILDE] = ACTIONS(1903), - [anon_sym_PLUS_PLUS] = ACTIONS(1903), - [anon_sym_DASH_DASH] = ACTIONS(1903), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1901), - [anon_sym_DASH] = ACTIONS(1901), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(1555), + [anon_sym_TILDE] = ACTIONS(1555), + [anon_sym_PLUS_PLUS] = ACTIONS(1555), + [anon_sym_DASH_DASH] = ACTIONS(1555), + [anon_sym_true] = ACTIONS(1169), + [anon_sym_false] = ACTIONS(1169), + [anon_sym_PLUS] = ACTIONS(1553), + [anon_sym_DASH] = ACTIONS(1553), [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(1903), - [anon_sym_AMP] = ACTIONS(1903), + [anon_sym_CARET] = ACTIONS(1555), + [anon_sym_AMP] = ACTIONS(1555), [anon_sym_GT_EQ] = ACTIONS(2509), [anon_sym_LT_EQ] = ACTIONS(2509), [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(2377), + [anon_sym_scoped] = ACTIONS(2349), [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(2433), - [sym_predefined_type] = ACTIONS(2435), - [anon_sym_unchecked] = ACTIONS(1067), + [anon_sym_var] = ACTIONS(2511), + [sym_predefined_type] = ACTIONS(2367), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1589), + [anon_sym_default] = ACTIONS(1179), + [anon_sym_throw] = ACTIONS(1527), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1591), - [sym_discard] = ACTIONS(1083), + [anon_sym_await] = ACTIONS(1529), + [sym_discard] = ACTIONS(2369), [anon_sym_DOT_DOT] = ACTIONS(123), - [anon_sym_not] = ACTIONS(2511), + [anon_sym_not] = ACTIONS(2513), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -99481,18 +99367,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(129), - [anon_sym_typeof] = ACTIONS(131), + [anon_sym_sizeof] = ACTIONS(1189), + [anon_sym_typeof] = ACTIONS(1191), [anon_sym___makeref] = ACTIONS(133), [anon_sym___reftype] = ACTIONS(135), [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1089), + [sym_null_literal] = ACTIONS(1199), + [anon_sym_SQUOTE] = ACTIONS(1201), + [sym_integer_literal] = ACTIONS(1199), + [sym_real_literal] = ACTIONS(1203), + [anon_sym_DQUOTE] = ACTIONS(1205), + [sym_verbatim_string_literal] = ACTIONS(1203), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -99503,104 +99389,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(1209), + [sym_interpolation_verbatim_start] = ACTIONS(1211), + [sym_interpolation_raw_start] = ACTIONS(1213), + [sym_raw_string_start] = ACTIONS(1215), }, [360] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(2869), - [sym_alias_qualified_name] = STATE(2373), - [sym__simple_name] = STATE(2279), - [sym_qualified_name] = STATE(2373), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(2468), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(2378), - [sym__array_base_type] = STATE(7103), - [sym_nullable_type] = STATE(2379), - [sym_pointer_type] = STATE(2379), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(2379), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(2380), - [sym_pattern] = STATE(3236), - [sym_constant_pattern] = STATE(3295), - [sym_parenthesized_pattern] = STATE(3295), - [sym_var_pattern] = STATE(3295), - [sym_type_pattern] = STATE(3295), - [sym_list_pattern] = STATE(3295), - [sym_recursive_pattern] = STATE(3295), - [sym_positional_pattern_clause] = STATE(2527), - [sym_property_pattern_clause] = STATE(2589), - [sym_relational_pattern] = STATE(3295), - [sym_negated_pattern] = STATE(3295), - [sym_and_pattern] = STATE(3295), - [sym_or_pattern] = STATE(3295), - [sym_declaration_pattern] = STATE(3295), - [sym_expression] = STATE(5693), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3520), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3310), - [sym_postfix_unary_expression] = STATE(3312), - [sym_prefix_unary_expression] = STATE(3312), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6154), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3310), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3312), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3310), - [sym_member_access_expression] = STATE(2617), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3312), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7530), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(3310), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3310), - [sym_typeof_expression] = STATE(3310), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2617), - [sym_literal] = STATE(3310), - [sym_character_literal] = STATE(3278), - [sym_string_literal] = STATE(3278), - [sym_raw_string_literal] = STATE(3278), - [sym_boolean_literal] = STATE(3278), - [sym_identifier] = STATE(2258), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(2410), + [sym_alias_qualified_name] = STATE(2402), + [sym__simple_name] = STATE(2185), + [sym_qualified_name] = STATE(2402), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(2473), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(2373), + [sym__array_base_type] = STATE(7083), + [sym_nullable_type] = STATE(2375), + [sym_pointer_type] = STATE(2375), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(2375), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(2377), + [sym_pattern] = STATE(5248), + [sym_constant_pattern] = STATE(3311), + [sym_parenthesized_pattern] = STATE(3311), + [sym_var_pattern] = STATE(3311), + [sym_type_pattern] = STATE(3311), + [sym_list_pattern] = STATE(3311), + [sym_recursive_pattern] = STATE(3311), + [sym_positional_pattern_clause] = STATE(2257), + [sym_property_pattern_clause] = STATE(2289), + [sym_relational_pattern] = STATE(3311), + [sym_negated_pattern] = STATE(3311), + [sym_and_pattern] = STATE(3311), + [sym_or_pattern] = STATE(3311), + [sym_declaration_pattern] = STATE(3311), + [sym_expression] = STATE(5658), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3510), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3275), + [sym_postfix_unary_expression] = STATE(3276), + [sym_prefix_unary_expression] = STATE(3276), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6134), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3275), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3276), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3275), + [sym_member_access_expression] = STATE(2608), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3276), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7425), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(3275), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3275), + [sym_typeof_expression] = STATE(3275), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2608), + [sym_literal] = STATE(3275), + [sym_character_literal] = STATE(3272), + [sym_string_literal] = STATE(3272), + [sym_raw_string_literal] = STATE(3272), + [sym_boolean_literal] = STATE(3272), + [sym_identifier] = STATE(2260), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(360), [sym_preproc_endregion] = STATE(360), [sym_preproc_line] = STATE(360), @@ -99610,53 +99496,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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(2365), - [anon_sym_LPAREN] = ACTIONS(2467), - [anon_sym_ref] = ACTIONS(2449), - [anon_sym_LBRACE] = ACTIONS(2371), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(2357), + [anon_sym_LPAREN] = ACTIONS(2505), + [anon_sym_ref] = ACTIONS(2499), + [anon_sym_LBRACE] = ACTIONS(2343), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1061), - [anon_sym_LT] = ACTIONS(2469), - [anon_sym_GT] = ACTIONS(2469), + [anon_sym_new] = ACTIONS(1059), + [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(1067), - [anon_sym_BANG] = ACTIONS(1533), - [anon_sym_TILDE] = ACTIONS(1533), - [anon_sym_PLUS_PLUS] = ACTIONS(1533), - [anon_sym_DASH_DASH] = ACTIONS(1533), - [anon_sym_true] = ACTIONS(1173), - [anon_sym_false] = ACTIONS(1173), - [anon_sym_PLUS] = ACTIONS(1531), - [anon_sym_DASH] = ACTIONS(1531), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(1555), + [anon_sym_TILDE] = ACTIONS(1555), + [anon_sym_PLUS_PLUS] = ACTIONS(1555), + [anon_sym_DASH_DASH] = ACTIONS(1555), + [anon_sym_true] = ACTIONS(1169), + [anon_sym_false] = ACTIONS(1169), + [anon_sym_PLUS] = ACTIONS(1553), + [anon_sym_DASH] = ACTIONS(1553), [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(1533), - [anon_sym_AMP] = ACTIONS(1533), - [anon_sym_GT_EQ] = ACTIONS(2471), - [anon_sym_LT_EQ] = ACTIONS(2471), + [anon_sym_CARET] = ACTIONS(1555), + [anon_sym_AMP] = ACTIONS(1555), + [anon_sym_GT_EQ] = ACTIONS(2509), + [anon_sym_LT_EQ] = ACTIONS(2509), [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(2377), + [anon_sym_scoped] = ACTIONS(2349), [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(2455), - [sym_predefined_type] = ACTIONS(2381), - [anon_sym_unchecked] = ACTIONS(1067), + [anon_sym_var] = ACTIONS(2511), + [sym_predefined_type] = ACTIONS(2367), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1183), - [anon_sym_throw] = ACTIONS(1589), + [anon_sym_default] = ACTIONS(1179), + [anon_sym_throw] = ACTIONS(1527), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1591), - [sym_discard] = ACTIONS(2383), + [anon_sym_await] = ACTIONS(1529), + [sym_discard] = ACTIONS(2369), [anon_sym_DOT_DOT] = ACTIONS(123), - [anon_sym_not] = ACTIONS(2473), + [anon_sym_not] = ACTIONS(2513), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -99670,18 +99556,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(1193), - [anon_sym_typeof] = ACTIONS(1195), + [anon_sym_sizeof] = ACTIONS(1189), + [anon_sym_typeof] = ACTIONS(1191), [anon_sym___makeref] = ACTIONS(133), [anon_sym___reftype] = ACTIONS(135), [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(1203), - [anon_sym_SQUOTE] = ACTIONS(1205), - [sym_integer_literal] = ACTIONS(1203), - [sym_real_literal] = ACTIONS(1207), - [anon_sym_DQUOTE] = ACTIONS(1209), - [sym_verbatim_string_literal] = ACTIONS(1207), - [aux_sym_preproc_if_token1] = ACTIONS(1089), + [sym_null_literal] = ACTIONS(1199), + [anon_sym_SQUOTE] = ACTIONS(1201), + [sym_integer_literal] = ACTIONS(1199), + [sym_real_literal] = ACTIONS(1203), + [anon_sym_DQUOTE] = ACTIONS(1205), + [sym_verbatim_string_literal] = ACTIONS(1203), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -99692,104 +99578,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(1213), - [sym_interpolation_verbatim_start] = ACTIONS(1215), - [sym_interpolation_raw_start] = ACTIONS(1217), - [sym_raw_string_start] = ACTIONS(1219), + [sym_interpolation_regular_start] = ACTIONS(1209), + [sym_interpolation_verbatim_start] = ACTIONS(1211), + [sym_interpolation_raw_start] = ACTIONS(1213), + [sym_raw_string_start] = ACTIONS(1215), }, [361] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(2868), - [sym_alias_qualified_name] = STATE(2373), - [sym__simple_name] = STATE(2277), - [sym_qualified_name] = STATE(2373), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(2459), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(2378), - [sym__array_base_type] = STATE(7103), - [sym_nullable_type] = STATE(2379), - [sym_pointer_type] = STATE(2379), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(2379), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(2380), - [sym_pattern] = STATE(5321), - [sym_constant_pattern] = STATE(3486), - [sym_parenthesized_pattern] = STATE(3486), - [sym_var_pattern] = STATE(3486), - [sym_type_pattern] = STATE(3486), - [sym_list_pattern] = STATE(3486), - [sym_recursive_pattern] = STATE(3486), - [sym_positional_pattern_clause] = STATE(2523), - [sym_property_pattern_clause] = STATE(2570), - [sym_relational_pattern] = STATE(3486), - [sym_negated_pattern] = STATE(3486), - [sym_and_pattern] = STATE(3486), - [sym_or_pattern] = STATE(3486), - [sym_declaration_pattern] = STATE(3486), - [sym_expression] = STATE(5674), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3520), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3455), - [sym_postfix_unary_expression] = STATE(3469), - [sym_prefix_unary_expression] = STATE(3469), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6154), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3455), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3469), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3455), - [sym_member_access_expression] = STATE(2719), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3469), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7530), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(3455), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3455), - [sym_typeof_expression] = STATE(3455), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2719), - [sym_literal] = STATE(3455), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2214), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(5706), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2270), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5197), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_pattern] = STATE(3407), + [sym_constant_pattern] = STATE(3429), + [sym_parenthesized_pattern] = STATE(3429), + [sym_var_pattern] = STATE(3429), + [sym_type_pattern] = STATE(3429), + [sym_list_pattern] = STATE(3429), + [sym_recursive_pattern] = STATE(3429), + [sym_positional_pattern_clause] = STATE(5689), + [sym_property_pattern_clause] = STATE(5723), + [sym_relational_pattern] = STATE(3429), + [sym_negated_pattern] = STATE(3429), + [sym_and_pattern] = STATE(3429), + [sym_or_pattern] = STATE(3429), + [sym_declaration_pattern] = STATE(3429), + [sym_expression] = STATE(5654), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3510), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(4202), + [sym_postfix_unary_expression] = STATE(4203), + [sym_prefix_unary_expression] = STATE(4203), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6134), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(4202), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(4203), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(4202), + [sym_member_access_expression] = STATE(3112), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(4203), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7425), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(4202), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(4202), + [sym_typeof_expression] = STATE(4202), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(3112), + [sym_literal] = STATE(4202), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2261), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(361), [sym_preproc_endregion] = STATE(361), [sym_preproc_line] = STATE(361), @@ -99799,53 +99685,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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1049), - [anon_sym_LPAREN] = ACTIONS(2555), - [anon_sym_ref] = ACTIONS(2389), - [anon_sym_LBRACE] = ACTIONS(2371), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_LPAREN] = ACTIONS(1989), + [anon_sym_ref] = ACTIONS(1991), + [anon_sym_LBRACE] = ACTIONS(1057), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1061), - [anon_sym_LT] = ACTIONS(2405), - [anon_sym_GT] = ACTIONS(2405), + [anon_sym_new] = ACTIONS(1059), + [anon_sym_LT] = ACTIONS(1995), + [anon_sym_GT] = ACTIONS(1995), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1067), - [anon_sym_BANG] = ACTIONS(1717), - [anon_sym_TILDE] = ACTIONS(1717), - [anon_sym_PLUS_PLUS] = ACTIONS(1717), - [anon_sym_DASH_DASH] = ACTIONS(1717), + [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(1715), - [anon_sym_DASH] = ACTIONS(1715), + [anon_sym_PLUS] = ACTIONS(1585), + [anon_sym_DASH] = ACTIONS(1585), [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(1717), - [anon_sym_AMP] = ACTIONS(1717), - [anon_sym_GT_EQ] = ACTIONS(2407), - [anon_sym_LT_EQ] = ACTIONS(2407), + [anon_sym_CARET] = ACTIONS(1587), + [anon_sym_AMP] = ACTIONS(1587), + [anon_sym_GT_EQ] = ACTIONS(1997), + [anon_sym_LT_EQ] = ACTIONS(1997), [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(2395), + [anon_sym_scoped] = ACTIONS(1073), [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(2433), - [sym_predefined_type] = ACTIONS(2435), - [anon_sym_unchecked] = ACTIONS(1067), + [anon_sym_var] = ACTIONS(1999), + [sym_predefined_type] = ACTIONS(91), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1589), + [anon_sym_throw] = ACTIONS(1527), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1591), - [sym_discard] = ACTIONS(1083), + [anon_sym_await] = ACTIONS(1529), + [sym_discard] = ACTIONS(1081), [anon_sym_DOT_DOT] = ACTIONS(123), - [anon_sym_not] = ACTIONS(2557), + [anon_sym_not] = ACTIONS(2001), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -99870,7 +99756,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(1089), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -99887,98 +99773,98 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [362] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(2868), - [sym_alias_qualified_name] = STATE(2373), - [sym__simple_name] = STATE(2277), - [sym_qualified_name] = STATE(2373), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(2459), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(2378), - [sym__array_base_type] = STATE(7103), - [sym_nullable_type] = STATE(2379), - [sym_pointer_type] = STATE(2379), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(2379), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(2380), - [sym_pattern] = STATE(3432), - [sym_constant_pattern] = STATE(3486), - [sym_parenthesized_pattern] = STATE(3486), - [sym_var_pattern] = STATE(3486), - [sym_type_pattern] = STATE(3486), - [sym_list_pattern] = STATE(3486), - [sym_recursive_pattern] = STATE(3486), - [sym_positional_pattern_clause] = STATE(2523), - [sym_property_pattern_clause] = STATE(2570), - [sym_relational_pattern] = STATE(3486), - [sym_negated_pattern] = STATE(3486), - [sym_and_pattern] = STATE(3486), - [sym_or_pattern] = STATE(3486), - [sym_declaration_pattern] = STATE(3486), - [sym_expression] = STATE(5674), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3520), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3455), - [sym_postfix_unary_expression] = STATE(3469), - [sym_prefix_unary_expression] = STATE(3469), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6154), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3455), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3469), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3455), - [sym_member_access_expression] = STATE(2719), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3469), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7530), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(3455), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3455), - [sym_typeof_expression] = STATE(3455), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2719), - [sym_literal] = STATE(3455), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2214), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(2856), + [sym_alias_qualified_name] = STATE(2402), + [sym__simple_name] = STATE(2271), + [sym_qualified_name] = STATE(2402), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(2469), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(2373), + [sym__array_base_type] = STATE(7083), + [sym_nullable_type] = STATE(2375), + [sym_pointer_type] = STATE(2375), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(2375), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(2377), + [sym_pattern] = STATE(3247), + [sym_constant_pattern] = STATE(3311), + [sym_parenthesized_pattern] = STATE(3311), + [sym_var_pattern] = STATE(3311), + [sym_type_pattern] = STATE(3311), + [sym_list_pattern] = STATE(3311), + [sym_recursive_pattern] = STATE(3311), + [sym_positional_pattern_clause] = STATE(2526), + [sym_property_pattern_clause] = STATE(2588), + [sym_relational_pattern] = STATE(3311), + [sym_negated_pattern] = STATE(3311), + [sym_and_pattern] = STATE(3311), + [sym_or_pattern] = STATE(3311), + [sym_declaration_pattern] = STATE(3311), + [sym_expression] = STATE(5669), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3510), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3275), + [sym_postfix_unary_expression] = STATE(3276), + [sym_prefix_unary_expression] = STATE(3276), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6134), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3275), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3276), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3275), + [sym_member_access_expression] = STATE(2608), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3276), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7425), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(3275), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3275), + [sym_typeof_expression] = STATE(3275), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2608), + [sym_literal] = STATE(3275), + [sym_character_literal] = STATE(3272), + [sym_string_literal] = STATE(3272), + [sym_raw_string_literal] = STATE(3272), + [sym_boolean_literal] = STATE(3272), + [sym_identifier] = STATE(2260), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(362), [sym_preproc_endregion] = STATE(362), [sym_preproc_line] = STATE(362), @@ -99988,53 +99874,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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1049), - [anon_sym_LPAREN] = ACTIONS(2555), - [anon_sym_ref] = ACTIONS(2389), - [anon_sym_LBRACE] = ACTIONS(2371), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(2357), + [anon_sym_LPAREN] = ACTIONS(2561), + [anon_sym_ref] = ACTIONS(2499), + [anon_sym_LBRACE] = ACTIONS(2343), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1061), - [anon_sym_LT] = ACTIONS(2405), - [anon_sym_GT] = ACTIONS(2405), + [anon_sym_new] = ACTIONS(1059), + [anon_sym_LT] = ACTIONS(2563), + [anon_sym_GT] = ACTIONS(2563), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1067), - [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(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1715), - [anon_sym_DASH] = ACTIONS(1715), + [anon_sym_checked] = ACTIONS(1065), + [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(1169), + [anon_sym_false] = ACTIONS(1169), + [anon_sym_PLUS] = ACTIONS(1601), + [anon_sym_DASH] = ACTIONS(1601), [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(1717), - [anon_sym_AMP] = ACTIONS(1717), - [anon_sym_GT_EQ] = ACTIONS(2407), - [anon_sym_LT_EQ] = ACTIONS(2407), + [anon_sym_CARET] = ACTIONS(1603), + [anon_sym_AMP] = ACTIONS(1603), + [anon_sym_GT_EQ] = ACTIONS(2565), + [anon_sym_LT_EQ] = ACTIONS(2565), [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(2395), + [anon_sym_scoped] = ACTIONS(2349), [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(2433), - [sym_predefined_type] = ACTIONS(2435), - [anon_sym_unchecked] = ACTIONS(1067), + [anon_sym_var] = ACTIONS(2511), + [sym_predefined_type] = ACTIONS(2367), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1589), + [anon_sym_default] = ACTIONS(1179), + [anon_sym_throw] = ACTIONS(1527), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1591), - [sym_discard] = ACTIONS(1083), + [anon_sym_await] = ACTIONS(1529), + [sym_discard] = ACTIONS(2369), [anon_sym_DOT_DOT] = ACTIONS(123), - [anon_sym_not] = ACTIONS(2557), + [anon_sym_not] = ACTIONS(2567), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -100048,18 +99934,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(129), - [anon_sym_typeof] = ACTIONS(131), + [anon_sym_sizeof] = ACTIONS(1189), + [anon_sym_typeof] = ACTIONS(1191), [anon_sym___makeref] = ACTIONS(133), [anon_sym___reftype] = ACTIONS(135), [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1089), + [sym_null_literal] = ACTIONS(1199), + [anon_sym_SQUOTE] = ACTIONS(1201), + [sym_integer_literal] = ACTIONS(1199), + [sym_real_literal] = ACTIONS(1203), + [anon_sym_DQUOTE] = ACTIONS(1205), + [sym_verbatim_string_literal] = ACTIONS(1203), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -100070,104 +99956,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(1209), + [sym_interpolation_verbatim_start] = ACTIONS(1211), + [sym_interpolation_raw_start] = ACTIONS(1213), + [sym_raw_string_start] = ACTIONS(1215), }, [363] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(2868), - [sym_alias_qualified_name] = STATE(2373), - [sym__simple_name] = STATE(2277), - [sym_qualified_name] = STATE(2373), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(2459), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(2378), - [sym__array_base_type] = STATE(7103), - [sym_nullable_type] = STATE(2379), - [sym_pointer_type] = STATE(2379), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(2379), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(2380), - [sym_pattern] = STATE(5281), - [sym_constant_pattern] = STATE(3486), - [sym_parenthesized_pattern] = STATE(3486), - [sym_var_pattern] = STATE(3486), - [sym_type_pattern] = STATE(3486), - [sym_list_pattern] = STATE(3486), - [sym_recursive_pattern] = STATE(3486), - [sym_positional_pattern_clause] = STATE(2523), - [sym_property_pattern_clause] = STATE(2570), - [sym_relational_pattern] = STATE(3486), - [sym_negated_pattern] = STATE(3486), - [sym_and_pattern] = STATE(3486), - [sym_or_pattern] = STATE(3486), - [sym_declaration_pattern] = STATE(3486), - [sym_expression] = STATE(5674), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3520), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3455), - [sym_postfix_unary_expression] = STATE(3469), - [sym_prefix_unary_expression] = STATE(3469), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6154), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3455), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3469), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3455), - [sym_member_access_expression] = STATE(2719), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3469), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7530), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(3455), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3455), - [sym_typeof_expression] = STATE(3455), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2719), - [sym_literal] = STATE(3455), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2214), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(2886), + [sym_alias_qualified_name] = STATE(2402), + [sym__simple_name] = STATE(2336), + [sym_qualified_name] = STATE(2402), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(2509), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(2373), + [sym__array_base_type] = STATE(7083), + [sym_nullable_type] = STATE(2375), + [sym_pointer_type] = STATE(2375), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(2375), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(2377), + [sym_pattern] = STATE(4206), + [sym_constant_pattern] = STATE(4146), + [sym_parenthesized_pattern] = STATE(4146), + [sym_var_pattern] = STATE(4146), + [sym_type_pattern] = STATE(4146), + [sym_list_pattern] = STATE(4146), + [sym_recursive_pattern] = STATE(4146), + [sym_positional_pattern_clause] = STATE(2580), + [sym_property_pattern_clause] = STATE(2769), + [sym_relational_pattern] = STATE(4146), + [sym_negated_pattern] = STATE(4146), + [sym_and_pattern] = STATE(4146), + [sym_or_pattern] = STATE(4146), + [sym_declaration_pattern] = STATE(4146), + [sym_expression] = STATE(5684), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3510), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(4128), + [sym_postfix_unary_expression] = STATE(4129), + [sym_prefix_unary_expression] = STATE(4129), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6134), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(4128), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(4129), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(4128), + [sym_member_access_expression] = STATE(3066), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(4129), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7425), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(4128), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(4128), + [sym_typeof_expression] = STATE(4128), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(3066), + [sym_literal] = STATE(4128), + [sym_character_literal] = STATE(3037), + [sym_string_literal] = STATE(3037), + [sym_raw_string_literal] = STATE(3037), + [sym_boolean_literal] = STATE(3037), + [sym_identifier] = STATE(2178), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(363), [sym_preproc_endregion] = STATE(363), [sym_preproc_line] = STATE(363), @@ -100177,53 +100063,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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1049), - [anon_sym_LPAREN] = ACTIONS(2555), - [anon_sym_ref] = ACTIONS(2389), - [anon_sym_LBRACE] = ACTIONS(2371), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(2449), + [anon_sym_LPAREN] = ACTIONS(2451), + [anon_sym_ref] = ACTIONS(2341), + [anon_sym_LBRACE] = ACTIONS(2343), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1061), - [anon_sym_LT] = ACTIONS(2405), - [anon_sym_GT] = ACTIONS(2405), + [anon_sym_new] = ACTIONS(1059), + [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(1067), - [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(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1715), - [anon_sym_DASH] = ACTIONS(1715), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(1903), + [anon_sym_TILDE] = ACTIONS(1903), + [anon_sym_PLUS_PLUS] = ACTIONS(1903), + [anon_sym_DASH_DASH] = ACTIONS(1903), + [anon_sym_true] = ACTIONS(1257), + [anon_sym_false] = ACTIONS(1257), + [anon_sym_PLUS] = ACTIONS(1901), + [anon_sym_DASH] = ACTIONS(1901), [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(1717), - [anon_sym_AMP] = ACTIONS(1717), - [anon_sym_GT_EQ] = ACTIONS(2407), - [anon_sym_LT_EQ] = ACTIONS(2407), + [anon_sym_CARET] = ACTIONS(1903), + [anon_sym_AMP] = ACTIONS(1903), + [anon_sym_GT_EQ] = ACTIONS(2455), + [anon_sym_LT_EQ] = ACTIONS(2455), [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(2395), + [anon_sym_scoped] = ACTIONS(2349), [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(2433), - [sym_predefined_type] = ACTIONS(2435), - [anon_sym_unchecked] = ACTIONS(1067), + [anon_sym_var] = ACTIONS(2457), + [sym_predefined_type] = ACTIONS(2459), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1589), + [anon_sym_default] = ACTIONS(1267), + [anon_sym_throw] = ACTIONS(1527), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1591), - [sym_discard] = ACTIONS(1083), + [anon_sym_await] = ACTIONS(1529), + [sym_discard] = ACTIONS(2461), [anon_sym_DOT_DOT] = ACTIONS(123), - [anon_sym_not] = ACTIONS(2557), + [anon_sym_not] = ACTIONS(2463), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -100237,18 +100123,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(129), - [anon_sym_typeof] = ACTIONS(131), + [anon_sym_sizeof] = ACTIONS(1277), + [anon_sym_typeof] = ACTIONS(1279), [anon_sym___makeref] = ACTIONS(133), [anon_sym___reftype] = ACTIONS(135), [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1089), + [sym_null_literal] = ACTIONS(1287), + [anon_sym_SQUOTE] = ACTIONS(1289), + [sym_integer_literal] = ACTIONS(1287), + [sym_real_literal] = ACTIONS(1291), + [anon_sym_DQUOTE] = ACTIONS(1293), + [sym_verbatim_string_literal] = ACTIONS(1291), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -100259,104 +100145,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(1297), + [sym_interpolation_verbatim_start] = ACTIONS(1299), + [sym_interpolation_raw_start] = ACTIONS(1301), + [sym_raw_string_start] = ACTIONS(1303), }, [364] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(2616), - [sym_alias_qualified_name] = STATE(2373), - [sym__simple_name] = STATE(2189), - [sym_qualified_name] = STATE(2373), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(2237), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(2378), - [sym__array_base_type] = STATE(7103), - [sym_nullable_type] = STATE(2379), - [sym_pointer_type] = STATE(2379), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(2379), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(2380), - [sym_pattern] = STATE(3250), - [sym_constant_pattern] = STATE(3295), - [sym_parenthesized_pattern] = STATE(3295), - [sym_var_pattern] = STATE(3295), - [sym_type_pattern] = STATE(3295), - [sym_list_pattern] = STATE(3295), - [sym_recursive_pattern] = STATE(3295), - [sym_positional_pattern_clause] = STATE(2251), - [sym_property_pattern_clause] = STATE(2302), - [sym_relational_pattern] = STATE(3295), - [sym_negated_pattern] = STATE(3295), - [sym_and_pattern] = STATE(3295), - [sym_or_pattern] = STATE(3295), - [sym_declaration_pattern] = STATE(3295), - [sym_expression] = STATE(5680), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3520), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3310), - [sym_postfix_unary_expression] = STATE(3312), - [sym_prefix_unary_expression] = STATE(3312), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6154), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3310), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3312), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3310), - [sym_member_access_expression] = STATE(2617), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3312), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7530), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(3310), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3310), - [sym_typeof_expression] = STATE(3310), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2617), - [sym_literal] = STATE(3310), - [sym_character_literal] = STATE(3278), - [sym_string_literal] = STATE(3278), - [sym_raw_string_literal] = STATE(3278), - [sym_boolean_literal] = STATE(3278), - [sym_identifier] = STATE(2214), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(2886), + [sym_alias_qualified_name] = STATE(2402), + [sym__simple_name] = STATE(2336), + [sym_qualified_name] = STATE(2402), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(2509), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(2373), + [sym__array_base_type] = STATE(7083), + [sym_nullable_type] = STATE(2375), + [sym_pointer_type] = STATE(2375), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(2375), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(2377), + [sym_pattern] = STATE(4161), + [sym_constant_pattern] = STATE(4146), + [sym_parenthesized_pattern] = STATE(4146), + [sym_var_pattern] = STATE(4146), + [sym_type_pattern] = STATE(4146), + [sym_list_pattern] = STATE(4146), + [sym_recursive_pattern] = STATE(4146), + [sym_positional_pattern_clause] = STATE(2580), + [sym_property_pattern_clause] = STATE(2769), + [sym_relational_pattern] = STATE(4146), + [sym_negated_pattern] = STATE(4146), + [sym_and_pattern] = STATE(4146), + [sym_or_pattern] = STATE(4146), + [sym_declaration_pattern] = STATE(4146), + [sym_expression] = STATE(5684), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3510), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(4128), + [sym_postfix_unary_expression] = STATE(4129), + [sym_prefix_unary_expression] = STATE(4129), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6134), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(4128), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(4129), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(4128), + [sym_member_access_expression] = STATE(3066), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(4129), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7425), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(4128), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(4128), + [sym_typeof_expression] = STATE(4128), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(3066), + [sym_literal] = STATE(4128), + [sym_character_literal] = STATE(3037), + [sym_string_literal] = STATE(3037), + [sym_raw_string_literal] = STATE(3037), + [sym_boolean_literal] = STATE(3037), + [sym_identifier] = STATE(2178), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(364), [sym_preproc_endregion] = STATE(364), [sym_preproc_line] = STATE(364), @@ -100366,53 +100252,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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(2365), - [anon_sym_LPAREN] = ACTIONS(2387), - [anon_sym_ref] = ACTIONS(2389), - [anon_sym_LBRACE] = ACTIONS(2371), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(2449), + [anon_sym_LPAREN] = ACTIONS(2451), + [anon_sym_ref] = ACTIONS(2341), + [anon_sym_LBRACE] = ACTIONS(2343), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1061), - [anon_sym_LT] = ACTIONS(2391), - [anon_sym_GT] = ACTIONS(2391), + [anon_sym_new] = ACTIONS(1059), + [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(1067), - [anon_sym_BANG] = ACTIONS(1377), - [anon_sym_TILDE] = ACTIONS(1377), - [anon_sym_PLUS_PLUS] = ACTIONS(1377), - [anon_sym_DASH_DASH] = ACTIONS(1377), - [anon_sym_true] = ACTIONS(1173), - [anon_sym_false] = ACTIONS(1173), - [anon_sym_PLUS] = ACTIONS(1375), - [anon_sym_DASH] = ACTIONS(1375), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(1903), + [anon_sym_TILDE] = ACTIONS(1903), + [anon_sym_PLUS_PLUS] = ACTIONS(1903), + [anon_sym_DASH_DASH] = ACTIONS(1903), + [anon_sym_true] = ACTIONS(1257), + [anon_sym_false] = ACTIONS(1257), + [anon_sym_PLUS] = ACTIONS(1901), + [anon_sym_DASH] = ACTIONS(1901), [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(1377), - [anon_sym_AMP] = ACTIONS(1377), - [anon_sym_GT_EQ] = ACTIONS(2393), - [anon_sym_LT_EQ] = ACTIONS(2393), + [anon_sym_CARET] = ACTIONS(1903), + [anon_sym_AMP] = ACTIONS(1903), + [anon_sym_GT_EQ] = ACTIONS(2455), + [anon_sym_LT_EQ] = ACTIONS(2455), [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(2395), + [anon_sym_scoped] = ACTIONS(2349), [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(2379), - [sym_predefined_type] = ACTIONS(2381), - [anon_sym_unchecked] = ACTIONS(1067), + [anon_sym_var] = ACTIONS(2457), + [sym_predefined_type] = ACTIONS(2459), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1183), - [anon_sym_throw] = ACTIONS(1589), + [anon_sym_default] = ACTIONS(1267), + [anon_sym_throw] = ACTIONS(1527), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1591), - [sym_discard] = ACTIONS(2383), + [anon_sym_await] = ACTIONS(1529), + [sym_discard] = ACTIONS(2461), [anon_sym_DOT_DOT] = ACTIONS(123), - [anon_sym_not] = ACTIONS(2397), + [anon_sym_not] = ACTIONS(2463), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -100426,18 +100312,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(1193), - [anon_sym_typeof] = ACTIONS(1195), + [anon_sym_sizeof] = ACTIONS(1277), + [anon_sym_typeof] = ACTIONS(1279), [anon_sym___makeref] = ACTIONS(133), [anon_sym___reftype] = ACTIONS(135), [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(1203), - [anon_sym_SQUOTE] = ACTIONS(1205), - [sym_integer_literal] = ACTIONS(1203), - [sym_real_literal] = ACTIONS(1207), - [anon_sym_DQUOTE] = ACTIONS(1209), - [sym_verbatim_string_literal] = ACTIONS(1207), - [aux_sym_preproc_if_token1] = ACTIONS(1089), + [sym_null_literal] = ACTIONS(1287), + [anon_sym_SQUOTE] = ACTIONS(1289), + [sym_integer_literal] = ACTIONS(1287), + [sym_real_literal] = ACTIONS(1291), + [anon_sym_DQUOTE] = ACTIONS(1293), + [sym_verbatim_string_literal] = ACTIONS(1291), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -100448,104 +100334,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(1213), - [sym_interpolation_verbatim_start] = ACTIONS(1215), - [sym_interpolation_raw_start] = ACTIONS(1217), - [sym_raw_string_start] = ACTIONS(1219), + [sym_interpolation_regular_start] = ACTIONS(1297), + [sym_interpolation_verbatim_start] = ACTIONS(1299), + [sym_interpolation_raw_start] = ACTIONS(1301), + [sym_raw_string_start] = ACTIONS(1303), }, [365] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(2869), - [sym_alias_qualified_name] = STATE(2373), - [sym__simple_name] = STATE(2279), - [sym_qualified_name] = STATE(2373), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(2468), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(2378), - [sym__array_base_type] = STATE(7103), - [sym_nullable_type] = STATE(2379), - [sym_pointer_type] = STATE(2379), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(2379), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(2380), - [sym_pattern] = STATE(4994), - [sym_constant_pattern] = STATE(3295), - [sym_parenthesized_pattern] = STATE(3295), - [sym_var_pattern] = STATE(3295), - [sym_type_pattern] = STATE(3295), - [sym_list_pattern] = STATE(3295), - [sym_recursive_pattern] = STATE(3295), - [sym_positional_pattern_clause] = STATE(2527), - [sym_property_pattern_clause] = STATE(2589), - [sym_relational_pattern] = STATE(3295), - [sym_negated_pattern] = STATE(3295), - [sym_and_pattern] = STATE(3295), - [sym_or_pattern] = STATE(3295), - [sym_declaration_pattern] = STATE(3295), - [sym_expression] = STATE(5693), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3520), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3310), - [sym_postfix_unary_expression] = STATE(3312), - [sym_prefix_unary_expression] = STATE(3312), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6154), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3310), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3312), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3310), - [sym_member_access_expression] = STATE(2617), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3312), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7530), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(3310), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3310), - [sym_typeof_expression] = STATE(3310), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2617), - [sym_literal] = STATE(3310), - [sym_character_literal] = STATE(3278), - [sym_string_literal] = STATE(3278), - [sym_raw_string_literal] = STATE(3278), - [sym_boolean_literal] = STATE(3278), - [sym_identifier] = STATE(2258), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(2863), + [sym_alias_qualified_name] = STATE(2402), + [sym__simple_name] = STATE(2328), + [sym_qualified_name] = STATE(2402), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(2484), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(2373), + [sym__array_base_type] = STATE(7083), + [sym_nullable_type] = STATE(2375), + [sym_pointer_type] = STATE(2375), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(2375), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(2377), + [sym_pattern] = STATE(5507), + [sym_constant_pattern] = STATE(3429), + [sym_parenthesized_pattern] = STATE(3429), + [sym_var_pattern] = STATE(3429), + [sym_type_pattern] = STATE(3429), + [sym_list_pattern] = STATE(3429), + [sym_recursive_pattern] = STATE(3429), + [sym_positional_pattern_clause] = STATE(2571), + [sym_property_pattern_clause] = STATE(2729), + [sym_relational_pattern] = STATE(3429), + [sym_negated_pattern] = STATE(3429), + [sym_and_pattern] = STATE(3429), + [sym_or_pattern] = STATE(3429), + [sym_declaration_pattern] = STATE(3429), + [sym_expression] = STATE(5652), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3510), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3397), + [sym_postfix_unary_expression] = STATE(3404), + [sym_prefix_unary_expression] = STATE(3404), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6134), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3397), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3404), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3397), + [sym_member_access_expression] = STATE(2686), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3404), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7425), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(3397), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3397), + [sym_typeof_expression] = STATE(3397), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2686), + [sym_literal] = STATE(3397), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2178), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(365), [sym_preproc_endregion] = STATE(365), [sym_preproc_line] = STATE(365), @@ -100555,53 +100441,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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(2365), - [anon_sym_LPAREN] = ACTIONS(2467), - [anon_sym_ref] = ACTIONS(2449), - [anon_sym_LBRACE] = ACTIONS(2371), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_LPAREN] = ACTIONS(2339), + [anon_sym_ref] = ACTIONS(2341), + [anon_sym_LBRACE] = ACTIONS(2343), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1061), - [anon_sym_LT] = ACTIONS(2469), - [anon_sym_GT] = ACTIONS(2469), + [anon_sym_new] = ACTIONS(1059), + [anon_sym_LT] = ACTIONS(2345), + [anon_sym_GT] = ACTIONS(2345), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1067), - [anon_sym_BANG] = ACTIONS(1533), - [anon_sym_TILDE] = ACTIONS(1533), - [anon_sym_PLUS_PLUS] = ACTIONS(1533), - [anon_sym_DASH_DASH] = ACTIONS(1533), - [anon_sym_true] = ACTIONS(1173), - [anon_sym_false] = ACTIONS(1173), - [anon_sym_PLUS] = ACTIONS(1531), - [anon_sym_DASH] = ACTIONS(1531), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(1811), + [anon_sym_TILDE] = ACTIONS(1811), + [anon_sym_PLUS_PLUS] = ACTIONS(1811), + [anon_sym_DASH_DASH] = ACTIONS(1811), + [anon_sym_true] = ACTIONS(77), + [anon_sym_false] = ACTIONS(77), + [anon_sym_PLUS] = ACTIONS(1809), + [anon_sym_DASH] = ACTIONS(1809), [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(1533), - [anon_sym_AMP] = ACTIONS(1533), - [anon_sym_GT_EQ] = ACTIONS(2471), - [anon_sym_LT_EQ] = ACTIONS(2471), + [anon_sym_CARET] = ACTIONS(1811), + [anon_sym_AMP] = ACTIONS(1811), + [anon_sym_GT_EQ] = ACTIONS(2347), + [anon_sym_LT_EQ] = ACTIONS(2347), [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(2377), + [anon_sym_scoped] = ACTIONS(2349), [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(2455), - [sym_predefined_type] = ACTIONS(2381), - [anon_sym_unchecked] = ACTIONS(1067), + [anon_sym_var] = ACTIONS(2351), + [sym_predefined_type] = ACTIONS(2353), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1183), - [anon_sym_throw] = ACTIONS(1589), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(1527), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1591), - [sym_discard] = ACTIONS(2383), + [anon_sym_await] = ACTIONS(1529), + [sym_discard] = ACTIONS(1081), [anon_sym_DOT_DOT] = ACTIONS(123), - [anon_sym_not] = ACTIONS(2473), + [anon_sym_not] = ACTIONS(2355), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -100615,18 +100501,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(1193), - [anon_sym_typeof] = ACTIONS(1195), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), [anon_sym___makeref] = ACTIONS(133), [anon_sym___reftype] = ACTIONS(135), [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(1203), - [anon_sym_SQUOTE] = ACTIONS(1205), - [sym_integer_literal] = ACTIONS(1203), - [sym_real_literal] = ACTIONS(1207), - [anon_sym_DQUOTE] = ACTIONS(1209), - [sym_verbatim_string_literal] = ACTIONS(1207), - [aux_sym_preproc_if_token1] = ACTIONS(1089), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_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), @@ -100637,104 +100523,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(1213), - [sym_interpolation_verbatim_start] = ACTIONS(1215), - [sym_interpolation_raw_start] = ACTIONS(1217), - [sym_raw_string_start] = ACTIONS(1219), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [sym_interpolation_raw_start] = ACTIONS(155), + [sym_raw_string_start] = ACTIONS(157), }, [366] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(5711), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2284), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5176), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_pattern] = STATE(6600), - [sym_constant_pattern] = STATE(3486), - [sym_parenthesized_pattern] = STATE(3486), - [sym_var_pattern] = STATE(3486), - [sym_type_pattern] = STATE(3486), - [sym_list_pattern] = STATE(3486), - [sym_recursive_pattern] = STATE(3486), - [sym_positional_pattern_clause] = STATE(5670), - [sym_property_pattern_clause] = STATE(5735), - [sym_relational_pattern] = STATE(3486), - [sym_negated_pattern] = STATE(3486), - [sym_and_pattern] = STATE(3486), - [sym_or_pattern] = STATE(3486), - [sym_declaration_pattern] = STATE(3486), - [sym_expression] = STATE(5525), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3664), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(5127), - [sym_postfix_unary_expression] = STATE(5129), - [sym_prefix_unary_expression] = STATE(5129), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6161), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(5127), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(5129), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(5127), - [sym_member_access_expression] = STATE(3458), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(5129), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7773), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(5127), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(5127), - [sym_typeof_expression] = STATE(5127), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(3458), - [sym_literal] = STATE(5127), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2243), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(2857), + [sym_alias_qualified_name] = STATE(2402), + [sym__simple_name] = STATE(2285), + [sym_qualified_name] = STATE(2402), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(2448), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(2373), + [sym__array_base_type] = STATE(7083), + [sym_nullable_type] = STATE(2375), + [sym_pointer_type] = STATE(2375), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(2375), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(2377), + [sym_pattern] = STATE(5256), + [sym_constant_pattern] = STATE(3429), + [sym_parenthesized_pattern] = STATE(3429), + [sym_var_pattern] = STATE(3429), + [sym_type_pattern] = STATE(3429), + [sym_list_pattern] = STATE(3429), + [sym_recursive_pattern] = STATE(3429), + [sym_positional_pattern_clause] = STATE(2528), + [sym_property_pattern_clause] = STATE(2589), + [sym_relational_pattern] = STATE(3429), + [sym_negated_pattern] = STATE(3429), + [sym_and_pattern] = STATE(3429), + [sym_or_pattern] = STATE(3429), + [sym_declaration_pattern] = STATE(3429), + [sym_expression] = STATE(5656), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3510), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3397), + [sym_postfix_unary_expression] = STATE(3404), + [sym_prefix_unary_expression] = STATE(3404), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6134), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3397), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3404), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3397), + [sym_member_access_expression] = STATE(2686), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3404), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7425), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(3397), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3397), + [sym_typeof_expression] = STATE(3397), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2686), + [sym_literal] = STATE(3397), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2202), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(366), [sym_preproc_endregion] = STATE(366), [sym_preproc_line] = STATE(366), @@ -100744,53 +100630,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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1049), - [anon_sym_LPAREN] = ACTIONS(2399), - [anon_sym_ref] = ACTIONS(2559), - [anon_sym_LBRACE] = ACTIONS(2403), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_LPAREN] = ACTIONS(2569), + [anon_sym_ref] = ACTIONS(2519), + [anon_sym_LBRACE] = ACTIONS(2343), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1101), - [anon_sym_LT] = ACTIONS(2405), - [anon_sym_GT] = ACTIONS(2405), + [anon_sym_new] = ACTIONS(1059), + [anon_sym_LT] = ACTIONS(2431), + [anon_sym_GT] = ACTIONS(2431), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1067), - [anon_sym_BANG] = ACTIONS(1717), - [anon_sym_TILDE] = ACTIONS(1717), - [anon_sym_PLUS_PLUS] = ACTIONS(1717), - [anon_sym_DASH_DASH] = ACTIONS(1717), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(1645), + [anon_sym_TILDE] = ACTIONS(1645), + [anon_sym_PLUS_PLUS] = ACTIONS(1645), + [anon_sym_DASH_DASH] = ACTIONS(1645), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1715), - [anon_sym_DASH] = ACTIONS(1715), - [anon_sym_STAR] = ACTIONS(1229), - [anon_sym_CARET] = ACTIONS(1717), - [anon_sym_AMP] = ACTIONS(1717), - [anon_sym_GT_EQ] = ACTIONS(2407), - [anon_sym_LT_EQ] = ACTIONS(2407), + [anon_sym_PLUS] = ACTIONS(1643), + [anon_sym_DASH] = ACTIONS(1643), + [anon_sym_STAR] = ACTIONS(81), + [anon_sym_CARET] = ACTIONS(1645), + [anon_sym_AMP] = ACTIONS(1645), + [anon_sym_GT_EQ] = ACTIONS(2433), + [anon_sym_LT_EQ] = ACTIONS(2433), [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(2409), + [anon_sym_scoped] = ACTIONS(2525), [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(2411), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1067), + [anon_sym_var] = ACTIONS(2351), + [sym_predefined_type] = ACTIONS(2353), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1233), + [anon_sym_throw] = ACTIONS(1527), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1235), - [sym_discard] = ACTIONS(1083), - [anon_sym_DOT_DOT] = ACTIONS(1237), - [anon_sym_not] = ACTIONS(2413), + [anon_sym_await] = ACTIONS(1529), + [sym_discard] = ACTIONS(1081), + [anon_sym_DOT_DOT] = ACTIONS(123), + [anon_sym_not] = ACTIONS(2571), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -100815,7 +100701,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(1089), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -100832,98 +100718,98 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [367] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(2421), - [sym_alias_qualified_name] = STATE(2373), - [sym__simple_name] = STATE(2191), - [sym_qualified_name] = STATE(2373), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(2249), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(2378), - [sym__array_base_type] = STATE(7103), - [sym_nullable_type] = STATE(2379), - [sym_pointer_type] = STATE(2379), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(2379), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(2380), - [sym_pattern] = STATE(4760), - [sym_constant_pattern] = STATE(3486), - [sym_parenthesized_pattern] = STATE(3486), - [sym_var_pattern] = STATE(3486), - [sym_type_pattern] = STATE(3486), - [sym_list_pattern] = STATE(3486), - [sym_recursive_pattern] = STATE(3486), - [sym_positional_pattern_clause] = STATE(2276), - [sym_property_pattern_clause] = STATE(2330), - [sym_relational_pattern] = STATE(3486), - [sym_negated_pattern] = STATE(3486), - [sym_and_pattern] = STATE(3486), - [sym_or_pattern] = STATE(3486), - [sym_declaration_pattern] = STATE(3486), - [sym_expression] = STATE(5708), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3520), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3455), - [sym_postfix_unary_expression] = STATE(3469), - [sym_prefix_unary_expression] = STATE(3469), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6154), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3455), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3469), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3455), - [sym_member_access_expression] = STATE(2719), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3469), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7530), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(3455), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3455), - [sym_typeof_expression] = STATE(3455), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2719), - [sym_literal] = STATE(3455), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2186), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(2857), + [sym_alias_qualified_name] = STATE(2402), + [sym__simple_name] = STATE(2285), + [sym_qualified_name] = STATE(2402), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(2448), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(2373), + [sym__array_base_type] = STATE(7083), + [sym_nullable_type] = STATE(2375), + [sym_pointer_type] = STATE(2375), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(2375), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(2377), + [sym_pattern] = STATE(3407), + [sym_constant_pattern] = STATE(3429), + [sym_parenthesized_pattern] = STATE(3429), + [sym_var_pattern] = STATE(3429), + [sym_type_pattern] = STATE(3429), + [sym_list_pattern] = STATE(3429), + [sym_recursive_pattern] = STATE(3429), + [sym_positional_pattern_clause] = STATE(2528), + [sym_property_pattern_clause] = STATE(2589), + [sym_relational_pattern] = STATE(3429), + [sym_negated_pattern] = STATE(3429), + [sym_and_pattern] = STATE(3429), + [sym_or_pattern] = STATE(3429), + [sym_declaration_pattern] = STATE(3429), + [sym_expression] = STATE(5656), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3510), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3397), + [sym_postfix_unary_expression] = STATE(3404), + [sym_prefix_unary_expression] = STATE(3404), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6134), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3397), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3404), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3397), + [sym_member_access_expression] = STATE(2686), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3404), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7425), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(3397), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3397), + [sym_typeof_expression] = STATE(3397), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2686), + [sym_literal] = STATE(3397), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2202), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(367), [sym_preproc_endregion] = STATE(367), [sym_preproc_line] = STATE(367), @@ -100933,53 +100819,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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1049), - [anon_sym_LPAREN] = ACTIONS(2561), - [anon_sym_ref] = ACTIONS(2369), - [anon_sym_LBRACE] = ACTIONS(2371), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_LPAREN] = ACTIONS(2569), + [anon_sym_ref] = ACTIONS(2519), + [anon_sym_LBRACE] = ACTIONS(2343), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1061), - [anon_sym_LT] = ACTIONS(2563), - [anon_sym_GT] = ACTIONS(2563), + [anon_sym_new] = ACTIONS(1059), + [anon_sym_LT] = ACTIONS(2431), + [anon_sym_GT] = ACTIONS(2431), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1067), - [anon_sym_BANG] = ACTIONS(1349), - [anon_sym_TILDE] = ACTIONS(1349), - [anon_sym_PLUS_PLUS] = ACTIONS(1349), - [anon_sym_DASH_DASH] = ACTIONS(1349), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(1645), + [anon_sym_TILDE] = ACTIONS(1645), + [anon_sym_PLUS_PLUS] = ACTIONS(1645), + [anon_sym_DASH_DASH] = ACTIONS(1645), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1347), - [anon_sym_DASH] = ACTIONS(1347), + [anon_sym_PLUS] = ACTIONS(1643), + [anon_sym_DASH] = ACTIONS(1643), [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(1349), - [anon_sym_AMP] = ACTIONS(1349), - [anon_sym_GT_EQ] = ACTIONS(2565), - [anon_sym_LT_EQ] = ACTIONS(2565), + [anon_sym_CARET] = ACTIONS(1645), + [anon_sym_AMP] = ACTIONS(1645), + [anon_sym_GT_EQ] = ACTIONS(2433), + [anon_sym_LT_EQ] = ACTIONS(2433), [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(2377), + [anon_sym_scoped] = ACTIONS(2525), [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(2433), - [sym_predefined_type] = ACTIONS(2435), - [anon_sym_unchecked] = ACTIONS(1067), + [anon_sym_var] = ACTIONS(2351), + [sym_predefined_type] = ACTIONS(2353), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1589), + [anon_sym_throw] = ACTIONS(1527), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1591), - [sym_discard] = ACTIONS(1083), + [anon_sym_await] = ACTIONS(1529), + [sym_discard] = ACTIONS(1081), [anon_sym_DOT_DOT] = ACTIONS(123), - [anon_sym_not] = ACTIONS(2567), + [anon_sym_not] = ACTIONS(2571), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -101004,7 +100890,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(1089), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -101021,98 +100907,98 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [368] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(2421), - [sym_alias_qualified_name] = STATE(2373), - [sym__simple_name] = STATE(2191), - [sym_qualified_name] = STATE(2373), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(2250), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(2378), - [sym__array_base_type] = STATE(7103), - [sym_nullable_type] = STATE(2379), - [sym_pointer_type] = STATE(2379), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(2379), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(2380), - [sym_pattern] = STATE(3424), - [sym_constant_pattern] = STATE(3486), - [sym_parenthesized_pattern] = STATE(3486), - [sym_var_pattern] = STATE(3486), - [sym_type_pattern] = STATE(3486), - [sym_list_pattern] = STATE(3486), - [sym_recursive_pattern] = STATE(3486), - [sym_positional_pattern_clause] = STATE(2276), - [sym_property_pattern_clause] = STATE(2330), - [sym_relational_pattern] = STATE(3486), - [sym_negated_pattern] = STATE(3486), - [sym_and_pattern] = STATE(3486), - [sym_or_pattern] = STATE(3486), - [sym_declaration_pattern] = STATE(3486), - [sym_expression] = STATE(5708), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3520), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3455), - [sym_postfix_unary_expression] = STATE(3469), - [sym_prefix_unary_expression] = STATE(3469), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6154), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3455), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3469), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3455), - [sym_member_access_expression] = STATE(2719), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3469), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7530), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(3455), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3455), - [sym_typeof_expression] = STATE(3455), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2719), - [sym_literal] = STATE(3455), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2186), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(2857), + [sym_alias_qualified_name] = STATE(2402), + [sym__simple_name] = STATE(2285), + [sym_qualified_name] = STATE(2402), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(2448), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(2373), + [sym__array_base_type] = STATE(7083), + [sym_nullable_type] = STATE(2375), + [sym_pointer_type] = STATE(2375), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(2375), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(2377), + [sym_pattern] = STATE(5290), + [sym_constant_pattern] = STATE(3429), + [sym_parenthesized_pattern] = STATE(3429), + [sym_var_pattern] = STATE(3429), + [sym_type_pattern] = STATE(3429), + [sym_list_pattern] = STATE(3429), + [sym_recursive_pattern] = STATE(3429), + [sym_positional_pattern_clause] = STATE(2528), + [sym_property_pattern_clause] = STATE(2589), + [sym_relational_pattern] = STATE(3429), + [sym_negated_pattern] = STATE(3429), + [sym_and_pattern] = STATE(3429), + [sym_or_pattern] = STATE(3429), + [sym_declaration_pattern] = STATE(3429), + [sym_expression] = STATE(5656), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3510), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3397), + [sym_postfix_unary_expression] = STATE(3404), + [sym_prefix_unary_expression] = STATE(3404), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6134), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3397), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3404), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3397), + [sym_member_access_expression] = STATE(2686), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3404), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7425), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(3397), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3397), + [sym_typeof_expression] = STATE(3397), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2686), + [sym_literal] = STATE(3397), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2202), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(368), [sym_preproc_endregion] = STATE(368), [sym_preproc_line] = STATE(368), @@ -101122,53 +101008,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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1049), - [anon_sym_LPAREN] = ACTIONS(2561), - [anon_sym_ref] = ACTIONS(2369), - [anon_sym_LBRACE] = ACTIONS(2371), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_LPAREN] = ACTIONS(2569), + [anon_sym_ref] = ACTIONS(2519), + [anon_sym_LBRACE] = ACTIONS(2343), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1061), - [anon_sym_LT] = ACTIONS(2563), - [anon_sym_GT] = ACTIONS(2563), + [anon_sym_new] = ACTIONS(1059), + [anon_sym_LT] = ACTIONS(2431), + [anon_sym_GT] = ACTIONS(2431), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1067), - [anon_sym_BANG] = ACTIONS(1349), - [anon_sym_TILDE] = ACTIONS(1349), - [anon_sym_PLUS_PLUS] = ACTIONS(1349), - [anon_sym_DASH_DASH] = ACTIONS(1349), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(1645), + [anon_sym_TILDE] = ACTIONS(1645), + [anon_sym_PLUS_PLUS] = ACTIONS(1645), + [anon_sym_DASH_DASH] = ACTIONS(1645), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1347), - [anon_sym_DASH] = ACTIONS(1347), + [anon_sym_PLUS] = ACTIONS(1643), + [anon_sym_DASH] = ACTIONS(1643), [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(1349), - [anon_sym_AMP] = ACTIONS(1349), - [anon_sym_GT_EQ] = ACTIONS(2565), - [anon_sym_LT_EQ] = ACTIONS(2565), + [anon_sym_CARET] = ACTIONS(1645), + [anon_sym_AMP] = ACTIONS(1645), + [anon_sym_GT_EQ] = ACTIONS(2433), + [anon_sym_LT_EQ] = ACTIONS(2433), [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(2377), + [anon_sym_scoped] = ACTIONS(2525), [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(2433), - [sym_predefined_type] = ACTIONS(2435), - [anon_sym_unchecked] = ACTIONS(1067), + [anon_sym_var] = ACTIONS(2351), + [sym_predefined_type] = ACTIONS(2353), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1589), + [anon_sym_throw] = ACTIONS(1527), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1591), - [sym_discard] = ACTIONS(1083), + [anon_sym_await] = ACTIONS(1529), + [sym_discard] = ACTIONS(1081), [anon_sym_DOT_DOT] = ACTIONS(123), - [anon_sym_not] = ACTIONS(2567), + [anon_sym_not] = ACTIONS(2571), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -101193,7 +101079,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(1089), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -101210,98 +101096,98 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [369] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(2890), - [sym_alias_qualified_name] = STATE(2373), - [sym__simple_name] = STATE(2338), - [sym_qualified_name] = STATE(2373), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(2510), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(2378), - [sym__array_base_type] = STATE(7103), - [sym_nullable_type] = STATE(2379), - [sym_pointer_type] = STATE(2379), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(2379), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(2380), - [sym_pattern] = STATE(5536), - [sym_constant_pattern] = STATE(3486), - [sym_parenthesized_pattern] = STATE(3486), - [sym_var_pattern] = STATE(3486), - [sym_type_pattern] = STATE(3486), - [sym_list_pattern] = STATE(3486), - [sym_recursive_pattern] = STATE(3486), - [sym_positional_pattern_clause] = STATE(2574), - [sym_property_pattern_clause] = STATE(2748), - [sym_relational_pattern] = STATE(3486), - [sym_negated_pattern] = STATE(3486), - [sym_and_pattern] = STATE(3486), - [sym_or_pattern] = STATE(3486), - [sym_declaration_pattern] = STATE(3486), - [sym_expression] = STATE(5710), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3520), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3455), - [sym_postfix_unary_expression] = STATE(3469), - [sym_prefix_unary_expression] = STATE(3469), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6154), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3455), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3469), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3455), - [sym_member_access_expression] = STATE(2719), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3469), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7530), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(3455), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3455), - [sym_typeof_expression] = STATE(3455), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2719), - [sym_literal] = STATE(3455), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2186), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(2598), + [sym_alias_qualified_name] = STATE(2402), + [sym__simple_name] = STATE(2185), + [sym_qualified_name] = STATE(2402), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(2228), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(2373), + [sym__array_base_type] = STATE(7083), + [sym_nullable_type] = STATE(2375), + [sym_pointer_type] = STATE(2375), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(2375), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(2377), + [sym_pattern] = STATE(3247), + [sym_constant_pattern] = STATE(3311), + [sym_parenthesized_pattern] = STATE(3311), + [sym_var_pattern] = STATE(3311), + [sym_type_pattern] = STATE(3311), + [sym_list_pattern] = STATE(3311), + [sym_recursive_pattern] = STATE(3311), + [sym_positional_pattern_clause] = STATE(2257), + [sym_property_pattern_clause] = STATE(2289), + [sym_relational_pattern] = STATE(3311), + [sym_negated_pattern] = STATE(3311), + [sym_and_pattern] = STATE(3311), + [sym_or_pattern] = STATE(3311), + [sym_declaration_pattern] = STATE(3311), + [sym_expression] = STATE(5677), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3510), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3275), + [sym_postfix_unary_expression] = STATE(3276), + [sym_prefix_unary_expression] = STATE(3276), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6134), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3275), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3276), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3275), + [sym_member_access_expression] = STATE(2608), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3276), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7425), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(3275), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3275), + [sym_typeof_expression] = STATE(3275), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2608), + [sym_literal] = STATE(3275), + [sym_character_literal] = STATE(3272), + [sym_string_literal] = STATE(3272), + [sym_raw_string_literal] = STATE(3272), + [sym_boolean_literal] = STATE(3272), + [sym_identifier] = STATE(2202), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(369), [sym_preproc_endregion] = STATE(369), [sym_preproc_line] = STATE(369), @@ -101311,53 +101197,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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1049), - [anon_sym_LPAREN] = ACTIONS(2537), - [anon_sym_ref] = ACTIONS(2369), - [anon_sym_LBRACE] = ACTIONS(2371), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(2357), + [anon_sym_LPAREN] = ACTIONS(2529), + [anon_sym_ref] = ACTIONS(2519), + [anon_sym_LBRACE] = ACTIONS(2343), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1061), - [anon_sym_LT] = ACTIONS(2539), - [anon_sym_GT] = ACTIONS(2539), + [anon_sym_new] = ACTIONS(1059), + [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(1067), - [anon_sym_BANG] = ACTIONS(1885), - [anon_sym_TILDE] = ACTIONS(1885), - [anon_sym_PLUS_PLUS] = ACTIONS(1885), - [anon_sym_DASH_DASH] = ACTIONS(1885), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1883), - [anon_sym_DASH] = ACTIONS(1883), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(1347), + [anon_sym_TILDE] = ACTIONS(1347), + [anon_sym_PLUS_PLUS] = ACTIONS(1347), + [anon_sym_DASH_DASH] = ACTIONS(1347), + [anon_sym_true] = ACTIONS(1169), + [anon_sym_false] = ACTIONS(1169), + [anon_sym_PLUS] = ACTIONS(1345), + [anon_sym_DASH] = ACTIONS(1345), [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(1885), - [anon_sym_AMP] = ACTIONS(1885), - [anon_sym_GT_EQ] = ACTIONS(2541), - [anon_sym_LT_EQ] = ACTIONS(2541), + [anon_sym_CARET] = ACTIONS(1347), + [anon_sym_AMP] = ACTIONS(1347), + [anon_sym_GT_EQ] = ACTIONS(2533), + [anon_sym_LT_EQ] = ACTIONS(2533), [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(2377), + [anon_sym_scoped] = ACTIONS(2525), [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(2433), - [sym_predefined_type] = ACTIONS(2435), - [anon_sym_unchecked] = ACTIONS(1067), + [anon_sym_var] = ACTIONS(2365), + [sym_predefined_type] = ACTIONS(2367), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1589), + [anon_sym_default] = ACTIONS(1179), + [anon_sym_throw] = ACTIONS(1527), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1591), - [sym_discard] = ACTIONS(1083), + [anon_sym_await] = ACTIONS(1529), + [sym_discard] = ACTIONS(2369), [anon_sym_DOT_DOT] = ACTIONS(123), - [anon_sym_not] = ACTIONS(2543), + [anon_sym_not] = ACTIONS(2535), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -101371,18 +101257,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(129), - [anon_sym_typeof] = ACTIONS(131), + [anon_sym_sizeof] = ACTIONS(1189), + [anon_sym_typeof] = ACTIONS(1191), [anon_sym___makeref] = ACTIONS(133), [anon_sym___reftype] = ACTIONS(135), [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1089), + [sym_null_literal] = ACTIONS(1199), + [anon_sym_SQUOTE] = ACTIONS(1201), + [sym_integer_literal] = ACTIONS(1199), + [sym_real_literal] = ACTIONS(1203), + [anon_sym_DQUOTE] = ACTIONS(1205), + [sym_verbatim_string_literal] = ACTIONS(1203), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -101393,104 +101279,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(1209), + [sym_interpolation_verbatim_start] = ACTIONS(1211), + [sym_interpolation_raw_start] = ACTIONS(1213), + [sym_raw_string_start] = ACTIONS(1215), }, [370] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(2887), - [sym_alias_qualified_name] = STATE(2373), - [sym__simple_name] = STATE(2335), - [sym_qualified_name] = STATE(2373), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(2502), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(2378), - [sym__array_base_type] = STATE(7103), - [sym_nullable_type] = STATE(2379), - [sym_pointer_type] = STATE(2379), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(2379), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(2380), - [sym_pattern] = STATE(5259), - [sym_constant_pattern] = STATE(3295), - [sym_parenthesized_pattern] = STATE(3295), - [sym_var_pattern] = STATE(3295), - [sym_type_pattern] = STATE(3295), - [sym_list_pattern] = STATE(3295), - [sym_recursive_pattern] = STATE(3295), - [sym_positional_pattern_clause] = STATE(2588), - [sym_property_pattern_clause] = STATE(2786), - [sym_relational_pattern] = STATE(3295), - [sym_negated_pattern] = STATE(3295), - [sym_and_pattern] = STATE(3295), - [sym_or_pattern] = STATE(3295), - [sym_declaration_pattern] = STATE(3295), - [sym_expression] = STATE(5696), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3520), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3310), - [sym_postfix_unary_expression] = STATE(3312), - [sym_prefix_unary_expression] = STATE(3312), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6154), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3310), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3312), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3310), - [sym_member_access_expression] = STATE(2617), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3312), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7530), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(3310), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3310), - [sym_typeof_expression] = STATE(3310), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2617), - [sym_literal] = STATE(3310), - [sym_character_literal] = STATE(3278), - [sym_string_literal] = STATE(3278), - [sym_raw_string_literal] = STATE(3278), - [sym_boolean_literal] = STATE(3278), - [sym_identifier] = STATE(2186), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(2886), + [sym_alias_qualified_name] = STATE(2402), + [sym__simple_name] = STATE(2336), + [sym_qualified_name] = STATE(2402), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(2509), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(2373), + [sym__array_base_type] = STATE(7083), + [sym_nullable_type] = STATE(2375), + [sym_pointer_type] = STATE(2375), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(2375), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(2377), + [sym_pattern] = STATE(4199), + [sym_constant_pattern] = STATE(4146), + [sym_parenthesized_pattern] = STATE(4146), + [sym_var_pattern] = STATE(4146), + [sym_type_pattern] = STATE(4146), + [sym_list_pattern] = STATE(4146), + [sym_recursive_pattern] = STATE(4146), + [sym_positional_pattern_clause] = STATE(2580), + [sym_property_pattern_clause] = STATE(2769), + [sym_relational_pattern] = STATE(4146), + [sym_negated_pattern] = STATE(4146), + [sym_and_pattern] = STATE(4146), + [sym_or_pattern] = STATE(4146), + [sym_declaration_pattern] = STATE(4146), + [sym_expression] = STATE(5684), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3510), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(4128), + [sym_postfix_unary_expression] = STATE(4129), + [sym_prefix_unary_expression] = STATE(4129), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6134), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(4128), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(4129), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(4128), + [sym_member_access_expression] = STATE(3066), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(4129), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7425), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(4128), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(4128), + [sym_typeof_expression] = STATE(4128), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(3066), + [sym_literal] = STATE(4128), + [sym_character_literal] = STATE(3037), + [sym_string_literal] = STATE(3037), + [sym_raw_string_literal] = STATE(3037), + [sym_boolean_literal] = STATE(3037), + [sym_identifier] = STATE(2178), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(370), [sym_preproc_endregion] = STATE(370), [sym_preproc_line] = STATE(370), @@ -101500,53 +101386,53 @@ 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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(2365), - [anon_sym_LPAREN] = ACTIONS(2367), - [anon_sym_ref] = ACTIONS(2369), - [anon_sym_LBRACE] = ACTIONS(2371), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(2449), + [anon_sym_LPAREN] = ACTIONS(2451), + [anon_sym_ref] = ACTIONS(2341), + [anon_sym_LBRACE] = ACTIONS(2343), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1061), - [anon_sym_LT] = ACTIONS(2373), - [anon_sym_GT] = ACTIONS(2373), + [anon_sym_new] = ACTIONS(1059), + [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(1067), - [anon_sym_BANG] = ACTIONS(1923), - [anon_sym_TILDE] = ACTIONS(1923), - [anon_sym_PLUS_PLUS] = ACTIONS(1923), - [anon_sym_DASH_DASH] = ACTIONS(1923), - [anon_sym_true] = ACTIONS(1173), - [anon_sym_false] = ACTIONS(1173), - [anon_sym_PLUS] = ACTIONS(1921), - [anon_sym_DASH] = ACTIONS(1921), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(1903), + [anon_sym_TILDE] = ACTIONS(1903), + [anon_sym_PLUS_PLUS] = ACTIONS(1903), + [anon_sym_DASH_DASH] = ACTIONS(1903), + [anon_sym_true] = ACTIONS(1257), + [anon_sym_false] = ACTIONS(1257), + [anon_sym_PLUS] = ACTIONS(1901), + [anon_sym_DASH] = ACTIONS(1901), [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(1923), - [anon_sym_AMP] = ACTIONS(1923), - [anon_sym_GT_EQ] = ACTIONS(2375), - [anon_sym_LT_EQ] = ACTIONS(2375), + [anon_sym_CARET] = ACTIONS(1903), + [anon_sym_AMP] = ACTIONS(1903), + [anon_sym_GT_EQ] = ACTIONS(2455), + [anon_sym_LT_EQ] = ACTIONS(2455), [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(2377), + [anon_sym_scoped] = ACTIONS(2349), [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(2379), - [sym_predefined_type] = ACTIONS(2381), - [anon_sym_unchecked] = ACTIONS(1067), + [anon_sym_var] = ACTIONS(2457), + [sym_predefined_type] = ACTIONS(2459), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1183), - [anon_sym_throw] = ACTIONS(1589), + [anon_sym_default] = ACTIONS(1267), + [anon_sym_throw] = ACTIONS(1527), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1591), - [sym_discard] = ACTIONS(2383), + [anon_sym_await] = ACTIONS(1529), + [sym_discard] = ACTIONS(2461), [anon_sym_DOT_DOT] = ACTIONS(123), - [anon_sym_not] = ACTIONS(2385), + [anon_sym_not] = ACTIONS(2463), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -101560,18 +101446,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(1193), - [anon_sym_typeof] = ACTIONS(1195), + [anon_sym_sizeof] = ACTIONS(1277), + [anon_sym_typeof] = ACTIONS(1279), [anon_sym___makeref] = ACTIONS(133), [anon_sym___reftype] = ACTIONS(135), [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(1203), - [anon_sym_SQUOTE] = ACTIONS(1205), - [sym_integer_literal] = ACTIONS(1203), - [sym_real_literal] = ACTIONS(1207), - [anon_sym_DQUOTE] = ACTIONS(1209), - [sym_verbatim_string_literal] = ACTIONS(1207), - [aux_sym_preproc_if_token1] = ACTIONS(1089), + [sym_null_literal] = ACTIONS(1287), + [anon_sym_SQUOTE] = ACTIONS(1289), + [sym_integer_literal] = ACTIONS(1287), + [sym_real_literal] = ACTIONS(1291), + [anon_sym_DQUOTE] = ACTIONS(1293), + [sym_verbatim_string_literal] = ACTIONS(1291), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -101582,104 +101468,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(1213), - [sym_interpolation_verbatim_start] = ACTIONS(1215), - [sym_interpolation_raw_start] = ACTIONS(1217), - [sym_raw_string_start] = ACTIONS(1219), + [sym_interpolation_regular_start] = ACTIONS(1297), + [sym_interpolation_verbatim_start] = ACTIONS(1299), + [sym_interpolation_raw_start] = ACTIONS(1301), + [sym_raw_string_start] = ACTIONS(1303), }, [371] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(2868), - [sym_alias_qualified_name] = STATE(2373), - [sym__simple_name] = STATE(2277), - [sym_qualified_name] = STATE(2373), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(2472), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(2378), - [sym__array_base_type] = STATE(7103), - [sym_nullable_type] = STATE(2379), - [sym_pointer_type] = STATE(2379), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(2379), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(2380), - [sym_pattern] = STATE(3424), - [sym_constant_pattern] = STATE(3486), - [sym_parenthesized_pattern] = STATE(3486), - [sym_var_pattern] = STATE(3486), - [sym_type_pattern] = STATE(3486), - [sym_list_pattern] = STATE(3486), - [sym_recursive_pattern] = STATE(3486), - [sym_positional_pattern_clause] = STATE(2523), - [sym_property_pattern_clause] = STATE(2570), - [sym_relational_pattern] = STATE(3486), - [sym_negated_pattern] = STATE(3486), - [sym_and_pattern] = STATE(3486), - [sym_or_pattern] = STATE(3486), - [sym_declaration_pattern] = STATE(3486), - [sym_expression] = STATE(5674), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3520), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3455), - [sym_postfix_unary_expression] = STATE(3469), - [sym_prefix_unary_expression] = STATE(3469), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6154), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3455), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3469), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3455), - [sym_member_access_expression] = STATE(2719), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3469), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7530), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(3455), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3455), - [sym_typeof_expression] = STATE(3455), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2719), - [sym_literal] = STATE(3455), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2214), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(5706), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2270), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5197), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_pattern] = STATE(6655), + [sym_constant_pattern] = STATE(3429), + [sym_parenthesized_pattern] = STATE(3429), + [sym_var_pattern] = STATE(3429), + [sym_type_pattern] = STATE(3429), + [sym_list_pattern] = STATE(3429), + [sym_recursive_pattern] = STATE(3429), + [sym_positional_pattern_clause] = STATE(5689), + [sym_property_pattern_clause] = STATE(5723), + [sym_relational_pattern] = STATE(3429), + [sym_negated_pattern] = STATE(3429), + [sym_and_pattern] = STATE(3429), + [sym_or_pattern] = STATE(3429), + [sym_declaration_pattern] = STATE(3429), + [sym_expression] = STATE(5654), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3510), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(4202), + [sym_postfix_unary_expression] = STATE(4203), + [sym_prefix_unary_expression] = STATE(4203), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6134), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(4202), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(4203), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(4202), + [sym_member_access_expression] = STATE(3112), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(4203), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7425), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(4202), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(4202), + [sym_typeof_expression] = STATE(4202), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(3112), + [sym_literal] = STATE(4202), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2261), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(371), [sym_preproc_endregion] = STATE(371), [sym_preproc_line] = STATE(371), @@ -101689,53 +101575,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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1049), - [anon_sym_LPAREN] = ACTIONS(2555), - [anon_sym_ref] = ACTIONS(2389), - [anon_sym_LBRACE] = ACTIONS(2371), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_LPAREN] = ACTIONS(1989), + [anon_sym_ref] = ACTIONS(1991), + [anon_sym_LBRACE] = ACTIONS(1057), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1061), - [anon_sym_LT] = ACTIONS(2405), - [anon_sym_GT] = ACTIONS(2405), + [anon_sym_new] = ACTIONS(1059), + [anon_sym_LT] = ACTIONS(1995), + [anon_sym_GT] = ACTIONS(1995), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1067), - [anon_sym_BANG] = ACTIONS(1717), - [anon_sym_TILDE] = ACTIONS(1717), - [anon_sym_PLUS_PLUS] = ACTIONS(1717), - [anon_sym_DASH_DASH] = ACTIONS(1717), + [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(1715), - [anon_sym_DASH] = ACTIONS(1715), + [anon_sym_PLUS] = ACTIONS(1585), + [anon_sym_DASH] = ACTIONS(1585), [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(1717), - [anon_sym_AMP] = ACTIONS(1717), - [anon_sym_GT_EQ] = ACTIONS(2407), - [anon_sym_LT_EQ] = ACTIONS(2407), + [anon_sym_CARET] = ACTIONS(1587), + [anon_sym_AMP] = ACTIONS(1587), + [anon_sym_GT_EQ] = ACTIONS(1997), + [anon_sym_LT_EQ] = ACTIONS(1997), [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(2395), + [anon_sym_scoped] = ACTIONS(1073), [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(2433), - [sym_predefined_type] = ACTIONS(2435), - [anon_sym_unchecked] = ACTIONS(1067), + [anon_sym_var] = ACTIONS(1999), + [sym_predefined_type] = ACTIONS(91), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1589), + [anon_sym_throw] = ACTIONS(1527), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1591), - [sym_discard] = ACTIONS(1083), + [anon_sym_await] = ACTIONS(1529), + [sym_discard] = ACTIONS(1081), [anon_sym_DOT_DOT] = ACTIONS(123), - [anon_sym_not] = ACTIONS(2557), + [anon_sym_not] = ACTIONS(2001), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -101760,7 +101646,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(1089), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -101777,98 +101663,98 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [372] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(2421), - [sym_alias_qualified_name] = STATE(2373), - [sym__simple_name] = STATE(2191), - [sym_qualified_name] = STATE(2373), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(2463), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(2378), - [sym__array_base_type] = STATE(7103), - [sym_nullable_type] = STATE(2379), - [sym_pointer_type] = STATE(2379), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(2379), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(2380), - [sym_pattern] = STATE(5431), - [sym_constant_pattern] = STATE(3486), - [sym_parenthesized_pattern] = STATE(3486), - [sym_var_pattern] = STATE(3486), - [sym_type_pattern] = STATE(3486), - [sym_list_pattern] = STATE(3486), - [sym_recursive_pattern] = STATE(3486), - [sym_positional_pattern_clause] = STATE(2565), - [sym_property_pattern_clause] = STATE(2650), - [sym_relational_pattern] = STATE(3486), - [sym_negated_pattern] = STATE(3486), - [sym_and_pattern] = STATE(3486), - [sym_or_pattern] = STATE(3486), - [sym_declaration_pattern] = STATE(3486), - [sym_expression] = STATE(5700), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3520), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3455), - [sym_postfix_unary_expression] = STATE(3469), - [sym_prefix_unary_expression] = STATE(3469), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6154), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3455), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3469), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3455), - [sym_member_access_expression] = STATE(2719), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3469), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7530), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(3455), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3455), - [sym_typeof_expression] = STATE(3455), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2719), - [sym_literal] = STATE(3455), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2186), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(2877), + [sym_alias_qualified_name] = STATE(2402), + [sym__simple_name] = STATE(2308), + [sym_qualified_name] = STATE(2402), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(2494), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(2373), + [sym__array_base_type] = STATE(7083), + [sym_nullable_type] = STATE(2375), + [sym_pointer_type] = STATE(2375), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(2375), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(2377), + [sym_pattern] = STATE(5487), + [sym_constant_pattern] = STATE(3429), + [sym_parenthesized_pattern] = STATE(3429), + [sym_var_pattern] = STATE(3429), + [sym_type_pattern] = STATE(3429), + [sym_list_pattern] = STATE(3429), + [sym_recursive_pattern] = STATE(3429), + [sym_positional_pattern_clause] = STATE(2591), + [sym_property_pattern_clause] = STATE(2675), + [sym_relational_pattern] = STATE(3429), + [sym_negated_pattern] = STATE(3429), + [sym_and_pattern] = STATE(3429), + [sym_or_pattern] = STATE(3429), + [sym_declaration_pattern] = STATE(3429), + [sym_expression] = STATE(5664), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3510), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3397), + [sym_postfix_unary_expression] = STATE(3404), + [sym_prefix_unary_expression] = STATE(3404), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6134), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3397), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3404), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3397), + [sym_member_access_expression] = STATE(2686), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3404), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7425), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(3397), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3397), + [sym_typeof_expression] = STATE(3397), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2686), + [sym_literal] = STATE(3397), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2178), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(372), [sym_preproc_endregion] = STATE(372), [sym_preproc_line] = STATE(372), @@ -101878,53 +101764,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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1049), - [anon_sym_LPAREN] = ACTIONS(2569), - [anon_sym_ref] = ACTIONS(2369), - [anon_sym_LBRACE] = ACTIONS(2371), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_LPAREN] = ACTIONS(2377), + [anon_sym_ref] = ACTIONS(2341), + [anon_sym_LBRACE] = ACTIONS(2343), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1061), - [anon_sym_LT] = ACTIONS(2571), - [anon_sym_GT] = ACTIONS(2571), + [anon_sym_new] = ACTIONS(1059), + [anon_sym_LT] = ACTIONS(2379), + [anon_sym_GT] = ACTIONS(2379), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1067), - [anon_sym_BANG] = ACTIONS(1701), - [anon_sym_TILDE] = ACTIONS(1701), - [anon_sym_PLUS_PLUS] = ACTIONS(1701), - [anon_sym_DASH_DASH] = ACTIONS(1701), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(1847), + [anon_sym_TILDE] = ACTIONS(1847), + [anon_sym_PLUS_PLUS] = ACTIONS(1847), + [anon_sym_DASH_DASH] = ACTIONS(1847), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1699), - [anon_sym_DASH] = ACTIONS(1699), + [anon_sym_PLUS] = ACTIONS(1845), + [anon_sym_DASH] = ACTIONS(1845), [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(1701), - [anon_sym_AMP] = ACTIONS(1701), - [anon_sym_GT_EQ] = ACTIONS(2573), - [anon_sym_LT_EQ] = ACTIONS(2573), + [anon_sym_CARET] = ACTIONS(1847), + [anon_sym_AMP] = ACTIONS(1847), + [anon_sym_GT_EQ] = ACTIONS(2381), + [anon_sym_LT_EQ] = ACTIONS(2381), [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(2377), + [anon_sym_scoped] = ACTIONS(2349), [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(2575), - [sym_predefined_type] = ACTIONS(2435), - [anon_sym_unchecked] = ACTIONS(1067), + [anon_sym_var] = ACTIONS(2351), + [sym_predefined_type] = ACTIONS(2353), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1589), + [anon_sym_throw] = ACTIONS(1527), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1591), - [sym_discard] = ACTIONS(1083), + [anon_sym_await] = ACTIONS(1529), + [sym_discard] = ACTIONS(1081), [anon_sym_DOT_DOT] = ACTIONS(123), - [anon_sym_not] = ACTIONS(2577), + [anon_sym_not] = ACTIONS(2383), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -101949,7 +101835,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(1089), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -101966,98 +101852,98 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [373] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(2889), - [sym_alias_qualified_name] = STATE(2373), - [sym__simple_name] = STATE(2350), - [sym_qualified_name] = STATE(2373), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(2521), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(2378), - [sym__array_base_type] = STATE(7103), - [sym_nullable_type] = STATE(2379), - [sym_pointer_type] = STATE(2379), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(2379), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(2380), - [sym_pattern] = STATE(5157), - [sym_constant_pattern] = STATE(3295), - [sym_parenthesized_pattern] = STATE(3295), - [sym_var_pattern] = STATE(3295), - [sym_type_pattern] = STATE(3295), - [sym_list_pattern] = STATE(3295), - [sym_recursive_pattern] = STATE(3295), - [sym_positional_pattern_clause] = STATE(2592), - [sym_property_pattern_clause] = STATE(2792), - [sym_relational_pattern] = STATE(3295), - [sym_negated_pattern] = STATE(3295), - [sym_and_pattern] = STATE(3295), - [sym_or_pattern] = STATE(3295), - [sym_declaration_pattern] = STATE(3295), - [sym_expression] = STATE(5697), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3520), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3310), - [sym_postfix_unary_expression] = STATE(3312), - [sym_prefix_unary_expression] = STATE(3312), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6154), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3310), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3312), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3310), - [sym_member_access_expression] = STATE(2617), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3312), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7530), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(3310), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3310), - [sym_typeof_expression] = STATE(3310), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2617), - [sym_literal] = STATE(3310), - [sym_character_literal] = STATE(3278), - [sym_string_literal] = STATE(3278), - [sym_raw_string_literal] = STATE(3278), - [sym_boolean_literal] = STATE(3278), - [sym_identifier] = STATE(2186), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(2873), + [sym_alias_qualified_name] = STATE(2402), + [sym__simple_name] = STATE(2330), + [sym_qualified_name] = STATE(2402), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(2492), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(2373), + [sym__array_base_type] = STATE(7083), + [sym_nullable_type] = STATE(2375), + [sym_pointer_type] = STATE(2375), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(2375), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(2377), + [sym_pattern] = STATE(5515), + [sym_constant_pattern] = STATE(3429), + [sym_parenthesized_pattern] = STATE(3429), + [sym_var_pattern] = STATE(3429), + [sym_type_pattern] = STATE(3429), + [sym_list_pattern] = STATE(3429), + [sym_recursive_pattern] = STATE(3429), + [sym_positional_pattern_clause] = STATE(2578), + [sym_property_pattern_clause] = STATE(2739), + [sym_relational_pattern] = STATE(3429), + [sym_negated_pattern] = STATE(3429), + [sym_and_pattern] = STATE(3429), + [sym_or_pattern] = STATE(3429), + [sym_declaration_pattern] = STATE(3429), + [sym_expression] = STATE(5683), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3510), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3397), + [sym_postfix_unary_expression] = STATE(3404), + [sym_prefix_unary_expression] = STATE(3404), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6134), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3397), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3404), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3397), + [sym_member_access_expression] = STATE(2686), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3404), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7425), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(3397), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3397), + [sym_typeof_expression] = STATE(3397), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2686), + [sym_literal] = STATE(3397), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2178), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(373), [sym_preproc_endregion] = STATE(373), [sym_preproc_line] = STATE(373), @@ -102067,53 +101953,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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(2365), - [anon_sym_LPAREN] = ACTIONS(2491), - [anon_sym_ref] = ACTIONS(2369), - [anon_sym_LBRACE] = ACTIONS(2371), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_LPAREN] = ACTIONS(2545), + [anon_sym_ref] = ACTIONS(2341), + [anon_sym_LBRACE] = ACTIONS(2343), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1061), - [anon_sym_LT] = ACTIONS(2493), - [anon_sym_GT] = ACTIONS(2493), + [anon_sym_new] = ACTIONS(1059), + [anon_sym_LT] = ACTIONS(2547), + [anon_sym_GT] = ACTIONS(2547), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1067), - [anon_sym_BANG] = ACTIONS(1831), - [anon_sym_TILDE] = ACTIONS(1831), - [anon_sym_PLUS_PLUS] = ACTIONS(1831), - [anon_sym_DASH_DASH] = ACTIONS(1831), - [anon_sym_true] = ACTIONS(1173), - [anon_sym_false] = ACTIONS(1173), - [anon_sym_PLUS] = ACTIONS(1829), - [anon_sym_DASH] = ACTIONS(1829), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(1883), + [anon_sym_TILDE] = ACTIONS(1883), + [anon_sym_PLUS_PLUS] = ACTIONS(1883), + [anon_sym_DASH_DASH] = ACTIONS(1883), + [anon_sym_true] = ACTIONS(77), + [anon_sym_false] = ACTIONS(77), + [anon_sym_PLUS] = ACTIONS(1881), + [anon_sym_DASH] = ACTIONS(1881), [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(1831), - [anon_sym_AMP] = ACTIONS(1831), - [anon_sym_GT_EQ] = ACTIONS(2495), - [anon_sym_LT_EQ] = ACTIONS(2495), + [anon_sym_CARET] = ACTIONS(1883), + [anon_sym_AMP] = ACTIONS(1883), + [anon_sym_GT_EQ] = ACTIONS(2549), + [anon_sym_LT_EQ] = ACTIONS(2549), [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(2377), + [anon_sym_scoped] = ACTIONS(2349), [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(2379), - [sym_predefined_type] = ACTIONS(2381), - [anon_sym_unchecked] = ACTIONS(1067), + [anon_sym_var] = ACTIONS(2351), + [sym_predefined_type] = ACTIONS(2353), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1183), - [anon_sym_throw] = ACTIONS(1589), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(1527), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1591), - [sym_discard] = ACTIONS(2383), + [anon_sym_await] = ACTIONS(1529), + [sym_discard] = ACTIONS(1081), [anon_sym_DOT_DOT] = ACTIONS(123), - [anon_sym_not] = ACTIONS(2497), + [anon_sym_not] = ACTIONS(2551), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -102127,18 +102013,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(1193), - [anon_sym_typeof] = ACTIONS(1195), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), [anon_sym___makeref] = ACTIONS(133), [anon_sym___reftype] = ACTIONS(135), [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(1203), - [anon_sym_SQUOTE] = ACTIONS(1205), - [sym_integer_literal] = ACTIONS(1203), - [sym_real_literal] = ACTIONS(1207), - [anon_sym_DQUOTE] = ACTIONS(1209), - [sym_verbatim_string_literal] = ACTIONS(1207), - [aux_sym_preproc_if_token1] = ACTIONS(1089), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_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), @@ -102149,104 +102035,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(1213), - [sym_interpolation_verbatim_start] = ACTIONS(1215), - [sym_interpolation_raw_start] = ACTIONS(1217), - [sym_raw_string_start] = ACTIONS(1219), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [sym_interpolation_raw_start] = ACTIONS(155), + [sym_raw_string_start] = ACTIONS(157), }, [374] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(2621), - [sym_alias_qualified_name] = STATE(2373), - [sym__simple_name] = STATE(2191), - [sym_qualified_name] = STATE(2373), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(2249), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(2378), - [sym__array_base_type] = STATE(7103), - [sym_nullable_type] = STATE(2379), - [sym_pointer_type] = STATE(2379), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(2379), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(2380), - [sym_pattern] = STATE(5464), - [sym_constant_pattern] = STATE(3486), - [sym_parenthesized_pattern] = STATE(3486), - [sym_var_pattern] = STATE(3486), - [sym_type_pattern] = STATE(3486), - [sym_list_pattern] = STATE(3486), - [sym_recursive_pattern] = STATE(3486), - [sym_positional_pattern_clause] = STATE(2276), - [sym_property_pattern_clause] = STATE(2330), - [sym_relational_pattern] = STATE(3486), - [sym_negated_pattern] = STATE(3486), - [sym_and_pattern] = STATE(3486), - [sym_or_pattern] = STATE(3486), - [sym_declaration_pattern] = STATE(3486), - [sym_expression] = STATE(5701), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3520), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3455), - [sym_postfix_unary_expression] = STATE(3469), - [sym_prefix_unary_expression] = STATE(3469), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6154), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3455), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3469), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3455), - [sym_member_access_expression] = STATE(2719), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3469), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7530), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(3455), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3455), - [sym_typeof_expression] = STATE(3455), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2719), - [sym_literal] = STATE(3455), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2214), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(2852), + [sym_alias_qualified_name] = STATE(2402), + [sym__simple_name] = STATE(2290), + [sym_qualified_name] = STATE(2402), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(2452), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(2373), + [sym__array_base_type] = STATE(7083), + [sym_nullable_type] = STATE(2375), + [sym_pointer_type] = STATE(2375), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(2375), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(2377), + [sym_pattern] = STATE(3958), + [sym_constant_pattern] = STATE(3801), + [sym_parenthesized_pattern] = STATE(3801), + [sym_var_pattern] = STATE(3801), + [sym_type_pattern] = STATE(3801), + [sym_list_pattern] = STATE(3801), + [sym_recursive_pattern] = STATE(3801), + [sym_positional_pattern_clause] = STATE(2544), + [sym_property_pattern_clause] = STATE(2596), + [sym_relational_pattern] = STATE(3801), + [sym_negated_pattern] = STATE(3801), + [sym_and_pattern] = STATE(3801), + [sym_or_pattern] = STATE(3801), + [sym_declaration_pattern] = STATE(3801), + [sym_expression] = STATE(5659), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3510), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3790), + [sym_postfix_unary_expression] = STATE(3791), + [sym_prefix_unary_expression] = STATE(3791), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6134), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3790), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3791), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3790), + [sym_member_access_expression] = STATE(2896), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3791), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7425), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(3790), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3790), + [sym_typeof_expression] = STATE(3790), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2896), + [sym_literal] = STATE(3790), + [sym_character_literal] = STATE(3843), + [sym_string_literal] = STATE(3843), + [sym_raw_string_literal] = STATE(3843), + [sym_boolean_literal] = STATE(3843), + [sym_identifier] = STATE(2178), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(374), [sym_preproc_endregion] = STATE(374), [sym_preproc_line] = STATE(374), @@ -102256,53 +102142,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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1049), - [anon_sym_LPAREN] = ACTIONS(2579), - [anon_sym_ref] = ACTIONS(2389), - [anon_sym_LBRACE] = ACTIONS(2371), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(2473), + [anon_sym_LPAREN] = ACTIONS(2573), + [anon_sym_ref] = ACTIONS(2341), + [anon_sym_LBRACE] = ACTIONS(2343), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1061), - [anon_sym_LT] = ACTIONS(2581), - [anon_sym_GT] = ACTIONS(2581), + [anon_sym_new] = ACTIONS(1059), + [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(1067), - [anon_sym_BANG] = ACTIONS(1795), - [anon_sym_TILDE] = ACTIONS(1795), - [anon_sym_PLUS_PLUS] = ACTIONS(1795), - [anon_sym_DASH_DASH] = ACTIONS(1795), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1793), - [anon_sym_DASH] = ACTIONS(1793), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(1671), + [anon_sym_TILDE] = ACTIONS(1671), + [anon_sym_PLUS_PLUS] = ACTIONS(1671), + [anon_sym_DASH_DASH] = ACTIONS(1671), + [anon_sym_true] = ACTIONS(1673), + [anon_sym_false] = ACTIONS(1673), + [anon_sym_PLUS] = ACTIONS(1669), + [anon_sym_DASH] = ACTIONS(1669), [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(1795), - [anon_sym_AMP] = ACTIONS(1795), - [anon_sym_GT_EQ] = ACTIONS(2583), - [anon_sym_LT_EQ] = ACTIONS(2583), + [anon_sym_CARET] = ACTIONS(1671), + [anon_sym_AMP] = ACTIONS(1671), + [anon_sym_GT_EQ] = ACTIONS(2577), + [anon_sym_LT_EQ] = ACTIONS(2577), [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(2395), + [anon_sym_scoped] = ACTIONS(2349), [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(2433), - [sym_predefined_type] = ACTIONS(2435), - [anon_sym_unchecked] = ACTIONS(1067), + [anon_sym_var] = ACTIONS(2481), + [sym_predefined_type] = ACTIONS(2483), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1589), + [anon_sym_default] = ACTIONS(1683), + [anon_sym_throw] = ACTIONS(1527), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1591), - [sym_discard] = ACTIONS(1083), + [anon_sym_await] = ACTIONS(1529), + [sym_discard] = ACTIONS(2485), [anon_sym_DOT_DOT] = ACTIONS(123), - [anon_sym_not] = ACTIONS(2585), + [anon_sym_not] = ACTIONS(2579), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -102316,18 +102202,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(129), - [anon_sym_typeof] = ACTIONS(131), + [anon_sym_sizeof] = ACTIONS(1693), + [anon_sym_typeof] = ACTIONS(1695), [anon_sym___makeref] = ACTIONS(133), [anon_sym___reftype] = ACTIONS(135), [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1089), + [sym_null_literal] = ACTIONS(1703), + [anon_sym_SQUOTE] = ACTIONS(1705), + [sym_integer_literal] = ACTIONS(1703), + [sym_real_literal] = ACTIONS(1707), + [anon_sym_DQUOTE] = ACTIONS(1709), + [sym_verbatim_string_literal] = ACTIONS(1707), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -102338,104 +102224,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(1713), + [sym_interpolation_verbatim_start] = ACTIONS(1715), + [sym_interpolation_raw_start] = ACTIONS(1717), + [sym_raw_string_start] = ACTIONS(1719), }, [375] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(2885), - [sym_alias_qualified_name] = STATE(2373), - [sym__simple_name] = STATE(2345), - [sym_qualified_name] = STATE(2373), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(2495), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(2378), - [sym__array_base_type] = STATE(7103), - [sym_nullable_type] = STATE(2379), - [sym_pointer_type] = STATE(2379), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(2379), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(2380), - [sym_pattern] = STATE(4213), - [sym_constant_pattern] = STATE(4132), - [sym_parenthesized_pattern] = STATE(4132), - [sym_var_pattern] = STATE(4132), - [sym_type_pattern] = STATE(4132), - [sym_list_pattern] = STATE(4132), - [sym_recursive_pattern] = STATE(4132), - [sym_positional_pattern_clause] = STATE(2587), - [sym_property_pattern_clause] = STATE(2662), - [sym_relational_pattern] = STATE(4132), - [sym_negated_pattern] = STATE(4132), - [sym_and_pattern] = STATE(4132), - [sym_or_pattern] = STATE(4132), - [sym_declaration_pattern] = STATE(4132), - [sym_expression] = STATE(5684), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3520), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(4172), - [sym_postfix_unary_expression] = STATE(4148), - [sym_prefix_unary_expression] = STATE(4148), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6154), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(4172), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(4148), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(4172), - [sym_member_access_expression] = STATE(3069), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(4148), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7530), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(4172), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(4172), - [sym_typeof_expression] = STATE(4172), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(3069), - [sym_literal] = STATE(4172), - [sym_character_literal] = STATE(3011), - [sym_string_literal] = STATE(3011), - [sym_raw_string_literal] = STATE(3011), - [sym_boolean_literal] = STATE(3011), - [sym_identifier] = STATE(2186), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(2882), + [sym_alias_qualified_name] = STATE(2402), + [sym__simple_name] = STATE(2319), + [sym_qualified_name] = STATE(2402), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(2493), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(2373), + [sym__array_base_type] = STATE(7083), + [sym_nullable_type] = STATE(2375), + [sym_pointer_type] = STATE(2375), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(2375), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(2377), + [sym_pattern] = STATE(5258), + [sym_constant_pattern] = STATE(3311), + [sym_parenthesized_pattern] = STATE(3311), + [sym_var_pattern] = STATE(3311), + [sym_type_pattern] = STATE(3311), + [sym_list_pattern] = STATE(3311), + [sym_recursive_pattern] = STATE(3311), + [sym_positional_pattern_clause] = STATE(2575), + [sym_property_pattern_clause] = STATE(2783), + [sym_relational_pattern] = STATE(3311), + [sym_negated_pattern] = STATE(3311), + [sym_and_pattern] = STATE(3311), + [sym_or_pattern] = STATE(3311), + [sym_declaration_pattern] = STATE(3311), + [sym_expression] = STATE(5678), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3510), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3275), + [sym_postfix_unary_expression] = STATE(3276), + [sym_prefix_unary_expression] = STATE(3276), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6134), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3275), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3276), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3275), + [sym_member_access_expression] = STATE(2608), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3276), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7425), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(3275), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3275), + [sym_typeof_expression] = STATE(3275), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2608), + [sym_literal] = STATE(3275), + [sym_character_literal] = STATE(3272), + [sym_string_literal] = STATE(3272), + [sym_raw_string_literal] = STATE(3272), + [sym_boolean_literal] = STATE(3272), + [sym_identifier] = STATE(2178), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(375), [sym_preproc_endregion] = STATE(375), [sym_preproc_line] = STATE(375), @@ -102445,53 +102331,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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(2475), - [anon_sym_LPAREN] = ACTIONS(2477), - [anon_sym_ref] = ACTIONS(2369), - [anon_sym_LBRACE] = ACTIONS(2371), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(2357), + [anon_sym_LPAREN] = ACTIONS(2359), + [anon_sym_ref] = ACTIONS(2341), + [anon_sym_LBRACE] = ACTIONS(2343), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1061), - [anon_sym_LT] = ACTIONS(2479), - [anon_sym_GT] = ACTIONS(2479), + [anon_sym_new] = ACTIONS(1059), + [anon_sym_LT] = ACTIONS(2361), + [anon_sym_GT] = ACTIONS(2361), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1067), - [anon_sym_BANG] = ACTIONS(1941), - [anon_sym_TILDE] = ACTIONS(1941), - [anon_sym_PLUS_PLUS] = ACTIONS(1941), - [anon_sym_DASH_DASH] = ACTIONS(1941), - [anon_sym_true] = ACTIONS(1259), - [anon_sym_false] = ACTIONS(1259), - [anon_sym_PLUS] = ACTIONS(1939), - [anon_sym_DASH] = ACTIONS(1939), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(1829), + [anon_sym_TILDE] = ACTIONS(1829), + [anon_sym_PLUS_PLUS] = ACTIONS(1829), + [anon_sym_DASH_DASH] = ACTIONS(1829), + [anon_sym_true] = ACTIONS(1169), + [anon_sym_false] = ACTIONS(1169), + [anon_sym_PLUS] = ACTIONS(1827), + [anon_sym_DASH] = ACTIONS(1827), [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(1941), - [anon_sym_AMP] = ACTIONS(1941), - [anon_sym_GT_EQ] = ACTIONS(2481), - [anon_sym_LT_EQ] = ACTIONS(2481), + [anon_sym_CARET] = ACTIONS(1829), + [anon_sym_AMP] = ACTIONS(1829), + [anon_sym_GT_EQ] = ACTIONS(2363), + [anon_sym_LT_EQ] = ACTIONS(2363), [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(2377), + [anon_sym_scoped] = ACTIONS(2349), [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(2483), - [sym_predefined_type] = ACTIONS(2485), - [anon_sym_unchecked] = ACTIONS(1067), + [anon_sym_var] = ACTIONS(2365), + [sym_predefined_type] = ACTIONS(2367), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1269), - [anon_sym_throw] = ACTIONS(1589), + [anon_sym_default] = ACTIONS(1179), + [anon_sym_throw] = ACTIONS(1527), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1591), - [sym_discard] = ACTIONS(2487), + [anon_sym_await] = ACTIONS(1529), + [sym_discard] = ACTIONS(2369), [anon_sym_DOT_DOT] = ACTIONS(123), - [anon_sym_not] = ACTIONS(2489), + [anon_sym_not] = ACTIONS(2371), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -102505,18 +102391,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(1279), - [anon_sym_typeof] = ACTIONS(1281), + [anon_sym_sizeof] = ACTIONS(1189), + [anon_sym_typeof] = ACTIONS(1191), [anon_sym___makeref] = ACTIONS(133), [anon_sym___reftype] = ACTIONS(135), [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(1289), - [anon_sym_SQUOTE] = ACTIONS(1291), - [sym_integer_literal] = ACTIONS(1289), - [sym_real_literal] = ACTIONS(1293), - [anon_sym_DQUOTE] = ACTIONS(1295), - [sym_verbatim_string_literal] = ACTIONS(1293), - [aux_sym_preproc_if_token1] = ACTIONS(1089), + [sym_null_literal] = ACTIONS(1199), + [anon_sym_SQUOTE] = ACTIONS(1201), + [sym_integer_literal] = ACTIONS(1199), + [sym_real_literal] = ACTIONS(1203), + [anon_sym_DQUOTE] = ACTIONS(1205), + [sym_verbatim_string_literal] = ACTIONS(1203), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -102527,104 +102413,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(1299), - [sym_interpolation_verbatim_start] = ACTIONS(1301), - [sym_interpolation_raw_start] = ACTIONS(1303), - [sym_raw_string_start] = ACTIONS(1305), + [sym_interpolation_regular_start] = ACTIONS(1209), + [sym_interpolation_verbatim_start] = ACTIONS(1211), + [sym_interpolation_raw_start] = ACTIONS(1213), + [sym_raw_string_start] = ACTIONS(1215), }, [376] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(2421), - [sym_alias_qualified_name] = STATE(2373), - [sym__simple_name] = STATE(2191), - [sym_qualified_name] = STATE(2373), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(2480), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(2378), - [sym__array_base_type] = STATE(7103), - [sym_nullable_type] = STATE(2379), - [sym_pointer_type] = STATE(2379), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(2379), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(2380), - [sym_pattern] = STATE(3424), - [sym_constant_pattern] = STATE(3486), - [sym_parenthesized_pattern] = STATE(3486), - [sym_var_pattern] = STATE(3486), - [sym_type_pattern] = STATE(3486), - [sym_list_pattern] = STATE(3486), - [sym_recursive_pattern] = STATE(3486), - [sym_positional_pattern_clause] = STATE(2565), - [sym_property_pattern_clause] = STATE(2650), - [sym_relational_pattern] = STATE(3486), - [sym_negated_pattern] = STATE(3486), - [sym_and_pattern] = STATE(3486), - [sym_or_pattern] = STATE(3486), - [sym_declaration_pattern] = STATE(3486), - [sym_expression] = STATE(5700), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3520), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3455), - [sym_postfix_unary_expression] = STATE(3469), - [sym_prefix_unary_expression] = STATE(3469), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6154), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3455), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3469), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3455), - [sym_member_access_expression] = STATE(2719), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3469), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7530), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(3455), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3455), - [sym_typeof_expression] = STATE(3455), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2719), - [sym_literal] = STATE(3455), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2186), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(2852), + [sym_alias_qualified_name] = STATE(2402), + [sym__simple_name] = STATE(2290), + [sym_qualified_name] = STATE(2402), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(2452), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(2373), + [sym__array_base_type] = STATE(7083), + [sym_nullable_type] = STATE(2375), + [sym_pointer_type] = STATE(2375), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(2375), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(2377), + [sym_pattern] = STATE(3717), + [sym_constant_pattern] = STATE(3801), + [sym_parenthesized_pattern] = STATE(3801), + [sym_var_pattern] = STATE(3801), + [sym_type_pattern] = STATE(3801), + [sym_list_pattern] = STATE(3801), + [sym_recursive_pattern] = STATE(3801), + [sym_positional_pattern_clause] = STATE(2544), + [sym_property_pattern_clause] = STATE(2596), + [sym_relational_pattern] = STATE(3801), + [sym_negated_pattern] = STATE(3801), + [sym_and_pattern] = STATE(3801), + [sym_or_pattern] = STATE(3801), + [sym_declaration_pattern] = STATE(3801), + [sym_expression] = STATE(5659), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3510), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3790), + [sym_postfix_unary_expression] = STATE(3791), + [sym_prefix_unary_expression] = STATE(3791), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6134), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3790), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3791), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3790), + [sym_member_access_expression] = STATE(2896), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3791), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7425), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(3790), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3790), + [sym_typeof_expression] = STATE(3790), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2896), + [sym_literal] = STATE(3790), + [sym_character_literal] = STATE(3843), + [sym_string_literal] = STATE(3843), + [sym_raw_string_literal] = STATE(3843), + [sym_boolean_literal] = STATE(3843), + [sym_identifier] = STATE(2178), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(376), [sym_preproc_endregion] = STATE(376), [sym_preproc_line] = STATE(376), @@ -102634,53 +102520,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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1049), - [anon_sym_LPAREN] = ACTIONS(2569), - [anon_sym_ref] = ACTIONS(2369), - [anon_sym_LBRACE] = ACTIONS(2371), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(2473), + [anon_sym_LPAREN] = ACTIONS(2573), + [anon_sym_ref] = ACTIONS(2341), + [anon_sym_LBRACE] = ACTIONS(2343), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1061), - [anon_sym_LT] = ACTIONS(2571), - [anon_sym_GT] = ACTIONS(2571), + [anon_sym_new] = ACTIONS(1059), + [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(1067), - [anon_sym_BANG] = ACTIONS(1701), - [anon_sym_TILDE] = ACTIONS(1701), - [anon_sym_PLUS_PLUS] = ACTIONS(1701), - [anon_sym_DASH_DASH] = ACTIONS(1701), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1699), - [anon_sym_DASH] = ACTIONS(1699), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(1671), + [anon_sym_TILDE] = ACTIONS(1671), + [anon_sym_PLUS_PLUS] = ACTIONS(1671), + [anon_sym_DASH_DASH] = ACTIONS(1671), + [anon_sym_true] = ACTIONS(1673), + [anon_sym_false] = ACTIONS(1673), + [anon_sym_PLUS] = ACTIONS(1669), + [anon_sym_DASH] = ACTIONS(1669), [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(1701), - [anon_sym_AMP] = ACTIONS(1701), - [anon_sym_GT_EQ] = ACTIONS(2573), - [anon_sym_LT_EQ] = ACTIONS(2573), + [anon_sym_CARET] = ACTIONS(1671), + [anon_sym_AMP] = ACTIONS(1671), + [anon_sym_GT_EQ] = ACTIONS(2577), + [anon_sym_LT_EQ] = ACTIONS(2577), [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(2377), + [anon_sym_scoped] = ACTIONS(2349), [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(2575), - [sym_predefined_type] = ACTIONS(2435), - [anon_sym_unchecked] = ACTIONS(1067), + [anon_sym_var] = ACTIONS(2481), + [sym_predefined_type] = ACTIONS(2483), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1589), + [anon_sym_default] = ACTIONS(1683), + [anon_sym_throw] = ACTIONS(1527), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1591), - [sym_discard] = ACTIONS(1083), + [anon_sym_await] = ACTIONS(1529), + [sym_discard] = ACTIONS(2485), [anon_sym_DOT_DOT] = ACTIONS(123), - [anon_sym_not] = ACTIONS(2577), + [anon_sym_not] = ACTIONS(2579), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -102694,18 +102580,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(129), - [anon_sym_typeof] = ACTIONS(131), + [anon_sym_sizeof] = ACTIONS(1693), + [anon_sym_typeof] = ACTIONS(1695), [anon_sym___makeref] = ACTIONS(133), [anon_sym___reftype] = ACTIONS(135), [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1089), + [sym_null_literal] = ACTIONS(1703), + [anon_sym_SQUOTE] = ACTIONS(1705), + [sym_integer_literal] = ACTIONS(1703), + [sym_real_literal] = ACTIONS(1707), + [anon_sym_DQUOTE] = ACTIONS(1709), + [sym_verbatim_string_literal] = ACTIONS(1707), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -102716,104 +102602,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(1713), + [sym_interpolation_verbatim_start] = ACTIONS(1715), + [sym_interpolation_raw_start] = ACTIONS(1717), + [sym_raw_string_start] = ACTIONS(1719), }, [377] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(2763), - [sym_alias_qualified_name] = STATE(2764), - [sym__simple_name] = STATE(2252), - [sym_qualified_name] = STATE(2764), - [sym_generic_name] = STATE(2269), - [sym_type] = STATE(2368), - [sym_implicit_type] = STATE(2791), - [sym_array_type] = STATE(2767), - [sym__array_base_type] = STATE(7243), - [sym_nullable_type] = STATE(2768), - [sym_pointer_type] = STATE(2768), - [sym__pointer_base_type] = STATE(7717), - [sym_function_pointer_type] = STATE(2768), - [sym_ref_type] = STATE(2791), - [sym_scoped_type] = STATE(2791), - [sym_tuple_type] = STATE(2769), - [sym_pattern] = STATE(5117), - [sym_constant_pattern] = STATE(4631), - [sym_parenthesized_pattern] = STATE(4631), - [sym_var_pattern] = STATE(4631), - [sym_type_pattern] = STATE(4631), - [sym_list_pattern] = STATE(4631), - [sym_recursive_pattern] = STATE(4631), - [sym_positional_pattern_clause] = STATE(2519), - [sym_property_pattern_clause] = STATE(2563), - [sym_relational_pattern] = STATE(4631), - [sym_negated_pattern] = STATE(4631), - [sym_and_pattern] = STATE(4631), - [sym_or_pattern] = STATE(4631), - [sym_declaration_pattern] = STATE(4631), - [sym_expression] = STATE(5671), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3520), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(4544), - [sym_postfix_unary_expression] = STATE(4545), - [sym_prefix_unary_expression] = STATE(4545), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6154), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(4544), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(4545), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(4544), - [sym_member_access_expression] = STATE(3197), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(4545), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7530), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(4544), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(4544), - [sym_typeof_expression] = STATE(4544), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(3197), - [sym_literal] = STATE(4544), - [sym_character_literal] = STATE(4536), - [sym_string_literal] = STATE(4536), - [sym_raw_string_literal] = STATE(4536), - [sym_boolean_literal] = STATE(4536), - [sym_identifier] = STATE(2226), - [sym__reserved_identifier] = STATE(2240), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(2852), + [sym_alias_qualified_name] = STATE(2402), + [sym__simple_name] = STATE(2290), + [sym_qualified_name] = STATE(2402), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(2452), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(2373), + [sym__array_base_type] = STATE(7083), + [sym_nullable_type] = STATE(2375), + [sym_pointer_type] = STATE(2375), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(2375), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(2377), + [sym_pattern] = STATE(3948), + [sym_constant_pattern] = STATE(3801), + [sym_parenthesized_pattern] = STATE(3801), + [sym_var_pattern] = STATE(3801), + [sym_type_pattern] = STATE(3801), + [sym_list_pattern] = STATE(3801), + [sym_recursive_pattern] = STATE(3801), + [sym_positional_pattern_clause] = STATE(2544), + [sym_property_pattern_clause] = STATE(2596), + [sym_relational_pattern] = STATE(3801), + [sym_negated_pattern] = STATE(3801), + [sym_and_pattern] = STATE(3801), + [sym_or_pattern] = STATE(3801), + [sym_declaration_pattern] = STATE(3801), + [sym_expression] = STATE(5659), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3510), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3790), + [sym_postfix_unary_expression] = STATE(3791), + [sym_prefix_unary_expression] = STATE(3791), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6134), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3790), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3791), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3790), + [sym_member_access_expression] = STATE(2896), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3791), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7425), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(3790), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3790), + [sym_typeof_expression] = STATE(3790), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2896), + [sym_literal] = STATE(3790), + [sym_character_literal] = STATE(3843), + [sym_string_literal] = STATE(3843), + [sym_raw_string_literal] = STATE(3843), + [sym_boolean_literal] = STATE(3843), + [sym_identifier] = STATE(2178), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(377), [sym_preproc_endregion] = STATE(377), [sym_preproc_line] = STATE(377), @@ -102823,78 +102709,78 @@ 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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), - [sym__identifier_token] = ACTIONS(1387), - [anon_sym_alias] = ACTIONS(1389), - [anon_sym_global] = ACTIONS(1389), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(2341), - [anon_sym_LPAREN] = ACTIONS(2343), - [anon_sym_ref] = ACTIONS(2345), - [anon_sym_LBRACE] = ACTIONS(2347), - [anon_sym_delegate] = ACTIONS(2349), - [anon_sym_async] = ACTIONS(1047), - [anon_sym_file] = ACTIONS(1389), - [anon_sym_new] = ACTIONS(1061), - [anon_sym_LT] = ACTIONS(2351), - [anon_sym_GT] = ACTIONS(2351), - [anon_sym_where] = ACTIONS(1389), - [anon_sym_notnull] = ACTIONS(1389), - [anon_sym_unmanaged] = ACTIONS(1389), - [anon_sym_checked] = ACTIONS(1067), - [anon_sym_BANG] = ACTIONS(1471), - [anon_sym_TILDE] = ACTIONS(1471), - [anon_sym_PLUS_PLUS] = ACTIONS(1471), - [anon_sym_DASH_DASH] = ACTIONS(1471), - [anon_sym_true] = ACTIONS(1409), - [anon_sym_false] = ACTIONS(1409), - [anon_sym_PLUS] = ACTIONS(1469), - [anon_sym_DASH] = ACTIONS(1469), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), + [sym__identifier_token] = ACTIONS(25), + [anon_sym_alias] = ACTIONS(29), + [anon_sym_global] = ACTIONS(29), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(2473), + [anon_sym_LPAREN] = ACTIONS(2573), + [anon_sym_ref] = ACTIONS(2341), + [anon_sym_LBRACE] = ACTIONS(2343), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), + [anon_sym_file] = ACTIONS(29), + [anon_sym_new] = ACTIONS(1059), + [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(1671), + [anon_sym_TILDE] = ACTIONS(1671), + [anon_sym_PLUS_PLUS] = ACTIONS(1671), + [anon_sym_DASH_DASH] = ACTIONS(1671), + [anon_sym_true] = ACTIONS(1673), + [anon_sym_false] = ACTIONS(1673), + [anon_sym_PLUS] = ACTIONS(1669), + [anon_sym_DASH] = ACTIONS(1669), [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(1471), - [anon_sym_AMP] = ACTIONS(1471), - [anon_sym_GT_EQ] = ACTIONS(2353), - [anon_sym_LT_EQ] = ACTIONS(2353), + [anon_sym_CARET] = ACTIONS(1671), + [anon_sym_AMP] = ACTIONS(1671), + [anon_sym_GT_EQ] = ACTIONS(2577), + [anon_sym_LT_EQ] = ACTIONS(2577), [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(2355), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(2357), - [sym_predefined_type] = ACTIONS(2359), - [anon_sym_unchecked] = ACTIONS(1067), - [anon_sym_yield] = ACTIONS(1389), - [anon_sym_default] = ACTIONS(1423), - [anon_sym_throw] = ACTIONS(1589), - [anon_sym_when] = ACTIONS(1389), - [anon_sym_await] = ACTIONS(1591), - [sym_discard] = ACTIONS(2361), + [anon_sym_scoped] = ACTIONS(2349), + [anon_sym_base] = ACTIONS(87), + [anon_sym_var] = ACTIONS(2481), + [sym_predefined_type] = ACTIONS(2483), + [anon_sym_unchecked] = ACTIONS(1065), + [anon_sym_yield] = ACTIONS(29), + [anon_sym_default] = ACTIONS(1683), + [anon_sym_throw] = ACTIONS(1527), + [anon_sym_when] = ACTIONS(29), + [anon_sym_await] = ACTIONS(1529), + [sym_discard] = ACTIONS(2485), [anon_sym_DOT_DOT] = ACTIONS(123), - [anon_sym_not] = ACTIONS(2363), - [anon_sym_from] = ACTIONS(1431), - [anon_sym_into] = ACTIONS(1389), - [anon_sym_join] = ACTIONS(1389), - [anon_sym_on] = ACTIONS(1389), - [anon_sym_equals] = ACTIONS(1389), - [anon_sym_let] = ACTIONS(1389), - [anon_sym_orderby] = ACTIONS(1389), - [anon_sym_ascending] = ACTIONS(1389), - [anon_sym_descending] = ACTIONS(1389), - [anon_sym_group] = ACTIONS(1389), - [anon_sym_by] = ACTIONS(1389), - [anon_sym_select] = ACTIONS(1389), + [anon_sym_not] = ACTIONS(2579), + [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(1435), - [anon_sym_typeof] = ACTIONS(1437), + [anon_sym_sizeof] = ACTIONS(1693), + [anon_sym_typeof] = ACTIONS(1695), [anon_sym___makeref] = ACTIONS(133), [anon_sym___reftype] = ACTIONS(135), [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(1445), - [anon_sym_SQUOTE] = ACTIONS(1447), - [sym_integer_literal] = ACTIONS(1445), - [sym_real_literal] = ACTIONS(1449), - [anon_sym_DQUOTE] = ACTIONS(1451), - [sym_verbatim_string_literal] = ACTIONS(1449), - [aux_sym_preproc_if_token1] = ACTIONS(1089), + [sym_null_literal] = ACTIONS(1703), + [anon_sym_SQUOTE] = ACTIONS(1705), + [sym_integer_literal] = ACTIONS(1703), + [sym_real_literal] = ACTIONS(1707), + [anon_sym_DQUOTE] = ACTIONS(1709), + [sym_verbatim_string_literal] = ACTIONS(1707), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -102905,104 +102791,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(1455), - [sym_interpolation_verbatim_start] = ACTIONS(1457), - [sym_interpolation_raw_start] = ACTIONS(1459), - [sym_raw_string_start] = ACTIONS(1461), + [sym_interpolation_regular_start] = ACTIONS(1713), + [sym_interpolation_verbatim_start] = ACTIONS(1715), + [sym_interpolation_raw_start] = ACTIONS(1717), + [sym_raw_string_start] = ACTIONS(1719), }, [378] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(2862), - [sym_alias_qualified_name] = STATE(2373), - [sym__simple_name] = STATE(2279), - [sym_qualified_name] = STATE(2373), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(2466), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(2378), - [sym__array_base_type] = STATE(7103), - [sym_nullable_type] = STATE(2379), - [sym_pointer_type] = STATE(2379), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(2379), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(2380), - [sym_pattern] = STATE(3250), - [sym_constant_pattern] = STATE(3295), - [sym_parenthesized_pattern] = STATE(3295), - [sym_var_pattern] = STATE(3295), - [sym_type_pattern] = STATE(3295), - [sym_list_pattern] = STATE(3295), - [sym_recursive_pattern] = STATE(3295), - [sym_positional_pattern_clause] = STATE(2527), - [sym_property_pattern_clause] = STATE(2589), - [sym_relational_pattern] = STATE(3295), - [sym_negated_pattern] = STATE(3295), - [sym_and_pattern] = STATE(3295), - [sym_or_pattern] = STATE(3295), - [sym_declaration_pattern] = STATE(3295), - [sym_expression] = STATE(5698), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3520), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3310), - [sym_postfix_unary_expression] = STATE(3312), - [sym_prefix_unary_expression] = STATE(3312), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6154), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3310), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3312), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3310), - [sym_member_access_expression] = STATE(2617), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3312), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7530), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(3310), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3310), - [sym_typeof_expression] = STATE(3310), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2617), - [sym_literal] = STATE(3310), - [sym_character_literal] = STATE(3278), - [sym_string_literal] = STATE(3278), - [sym_raw_string_literal] = STATE(3278), - [sym_boolean_literal] = STATE(3278), - [sym_identifier] = STATE(2214), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(2428), + [sym_alias_qualified_name] = STATE(2402), + [sym__simple_name] = STATE(2184), + [sym_qualified_name] = STATE(2402), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(2474), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(2373), + [sym__array_base_type] = STATE(7083), + [sym_nullable_type] = STATE(2375), + [sym_pointer_type] = STATE(2375), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(2375), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(2377), + [sym_pattern] = STATE(5436), + [sym_constant_pattern] = STATE(3429), + [sym_parenthesized_pattern] = STATE(3429), + [sym_var_pattern] = STATE(3429), + [sym_type_pattern] = STATE(3429), + [sym_list_pattern] = STATE(3429), + [sym_recursive_pattern] = STATE(3429), + [sym_positional_pattern_clause] = STATE(2543), + [sym_property_pattern_clause] = STATE(2643), + [sym_relational_pattern] = STATE(3429), + [sym_negated_pattern] = STATE(3429), + [sym_and_pattern] = STATE(3429), + [sym_or_pattern] = STATE(3429), + [sym_declaration_pattern] = STATE(3429), + [sym_expression] = STATE(5665), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3510), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3397), + [sym_postfix_unary_expression] = STATE(3404), + [sym_prefix_unary_expression] = STATE(3404), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6134), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3397), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3404), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3397), + [sym_member_access_expression] = STATE(2686), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3404), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7425), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(3397), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3397), + [sym_typeof_expression] = STATE(3397), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2686), + [sym_literal] = STATE(3397), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2178), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(378), [sym_preproc_endregion] = STATE(378), [sym_preproc_line] = STATE(378), @@ -103012,53 +102898,53 @@ 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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(2365), - [anon_sym_LPAREN] = ACTIONS(2521), - [anon_sym_ref] = ACTIONS(2389), - [anon_sym_LBRACE] = ACTIONS(2371), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_LPAREN] = ACTIONS(2581), + [anon_sym_ref] = ACTIONS(2341), + [anon_sym_LBRACE] = ACTIONS(2343), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1061), - [anon_sym_LT] = ACTIONS(2523), - [anon_sym_GT] = ACTIONS(2523), + [anon_sym_new] = ACTIONS(1059), + [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(1067), - [anon_sym_BANG] = ACTIONS(1565), - [anon_sym_TILDE] = ACTIONS(1565), - [anon_sym_PLUS_PLUS] = ACTIONS(1565), - [anon_sym_DASH_DASH] = ACTIONS(1565), - [anon_sym_true] = ACTIONS(1173), - [anon_sym_false] = ACTIONS(1173), - [anon_sym_PLUS] = ACTIONS(1563), - [anon_sym_DASH] = ACTIONS(1563), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(1745), + [anon_sym_TILDE] = ACTIONS(1745), + [anon_sym_PLUS_PLUS] = ACTIONS(1745), + [anon_sym_DASH_DASH] = ACTIONS(1745), + [anon_sym_true] = ACTIONS(77), + [anon_sym_false] = ACTIONS(77), + [anon_sym_PLUS] = ACTIONS(1743), + [anon_sym_DASH] = ACTIONS(1743), [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(1565), - [anon_sym_AMP] = ACTIONS(1565), - [anon_sym_GT_EQ] = ACTIONS(2525), - [anon_sym_LT_EQ] = ACTIONS(2525), + [anon_sym_CARET] = ACTIONS(1745), + [anon_sym_AMP] = ACTIONS(1745), + [anon_sym_GT_EQ] = ACTIONS(2585), + [anon_sym_LT_EQ] = ACTIONS(2585), [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(2395), + [anon_sym_scoped] = ACTIONS(2349), [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(2379), - [sym_predefined_type] = ACTIONS(2381), - [anon_sym_unchecked] = ACTIONS(1067), + [anon_sym_var] = ACTIONS(2587), + [sym_predefined_type] = ACTIONS(2353), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1183), - [anon_sym_throw] = ACTIONS(1589), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(1527), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1591), - [sym_discard] = ACTIONS(2383), + [anon_sym_await] = ACTIONS(1529), + [sym_discard] = ACTIONS(1081), [anon_sym_DOT_DOT] = ACTIONS(123), - [anon_sym_not] = ACTIONS(2527), + [anon_sym_not] = ACTIONS(2589), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -103072,18 +102958,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(1193), - [anon_sym_typeof] = ACTIONS(1195), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), [anon_sym___makeref] = ACTIONS(133), [anon_sym___reftype] = ACTIONS(135), [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(1203), - [anon_sym_SQUOTE] = ACTIONS(1205), - [sym_integer_literal] = ACTIONS(1203), - [sym_real_literal] = ACTIONS(1207), - [anon_sym_DQUOTE] = ACTIONS(1209), - [sym_verbatim_string_literal] = ACTIONS(1207), - [aux_sym_preproc_if_token1] = ACTIONS(1089), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_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), @@ -103094,104 +102980,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(1213), - [sym_interpolation_verbatim_start] = ACTIONS(1215), - [sym_interpolation_raw_start] = ACTIONS(1217), - [sym_raw_string_start] = ACTIONS(1219), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [sym_interpolation_raw_start] = ACTIONS(155), + [sym_raw_string_start] = ACTIONS(157), }, [379] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(2621), - [sym_alias_qualified_name] = STATE(2373), - [sym__simple_name] = STATE(2191), - [sym_qualified_name] = STATE(2373), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(2250), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(2378), - [sym__array_base_type] = STATE(7103), - [sym_nullable_type] = STATE(2379), - [sym_pointer_type] = STATE(2379), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(2379), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(2380), - [sym_pattern] = STATE(3424), - [sym_constant_pattern] = STATE(3486), - [sym_parenthesized_pattern] = STATE(3486), - [sym_var_pattern] = STATE(3486), - [sym_type_pattern] = STATE(3486), - [sym_list_pattern] = STATE(3486), - [sym_recursive_pattern] = STATE(3486), - [sym_positional_pattern_clause] = STATE(2276), - [sym_property_pattern_clause] = STATE(2330), - [sym_relational_pattern] = STATE(3486), - [sym_negated_pattern] = STATE(3486), - [sym_and_pattern] = STATE(3486), - [sym_or_pattern] = STATE(3486), - [sym_declaration_pattern] = STATE(3486), - [sym_expression] = STATE(5701), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3520), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3455), - [sym_postfix_unary_expression] = STATE(3469), - [sym_prefix_unary_expression] = STATE(3469), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6154), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3455), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3469), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3455), - [sym_member_access_expression] = STATE(2719), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3469), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7530), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(3455), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3455), - [sym_typeof_expression] = STATE(3455), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2719), - [sym_literal] = STATE(3455), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2214), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(2857), + [sym_alias_qualified_name] = STATE(2402), + [sym__simple_name] = STATE(2285), + [sym_qualified_name] = STATE(2402), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(2465), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(2373), + [sym__array_base_type] = STATE(7083), + [sym_nullable_type] = STATE(2375), + [sym_pointer_type] = STATE(2375), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(2375), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(2377), + [sym_pattern] = STATE(3445), + [sym_constant_pattern] = STATE(3429), + [sym_parenthesized_pattern] = STATE(3429), + [sym_var_pattern] = STATE(3429), + [sym_type_pattern] = STATE(3429), + [sym_list_pattern] = STATE(3429), + [sym_recursive_pattern] = STATE(3429), + [sym_positional_pattern_clause] = STATE(2528), + [sym_property_pattern_clause] = STATE(2589), + [sym_relational_pattern] = STATE(3429), + [sym_negated_pattern] = STATE(3429), + [sym_and_pattern] = STATE(3429), + [sym_or_pattern] = STATE(3429), + [sym_declaration_pattern] = STATE(3429), + [sym_expression] = STATE(5656), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3510), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3397), + [sym_postfix_unary_expression] = STATE(3404), + [sym_prefix_unary_expression] = STATE(3404), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6134), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3397), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3404), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3397), + [sym_member_access_expression] = STATE(2686), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3404), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7425), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(3397), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3397), + [sym_typeof_expression] = STATE(3397), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2686), + [sym_literal] = STATE(3397), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2202), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(379), [sym_preproc_endregion] = STATE(379), [sym_preproc_line] = STATE(379), @@ -103201,53 +103087,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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1049), - [anon_sym_LPAREN] = ACTIONS(2579), - [anon_sym_ref] = ACTIONS(2389), - [anon_sym_LBRACE] = ACTIONS(2371), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_LPAREN] = ACTIONS(2569), + [anon_sym_ref] = ACTIONS(2519), + [anon_sym_LBRACE] = ACTIONS(2343), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1061), - [anon_sym_LT] = ACTIONS(2581), - [anon_sym_GT] = ACTIONS(2581), + [anon_sym_new] = ACTIONS(1059), + [anon_sym_LT] = ACTIONS(2431), + [anon_sym_GT] = ACTIONS(2431), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1067), - [anon_sym_BANG] = ACTIONS(1795), - [anon_sym_TILDE] = ACTIONS(1795), - [anon_sym_PLUS_PLUS] = ACTIONS(1795), - [anon_sym_DASH_DASH] = ACTIONS(1795), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(1645), + [anon_sym_TILDE] = ACTIONS(1645), + [anon_sym_PLUS_PLUS] = ACTIONS(1645), + [anon_sym_DASH_DASH] = ACTIONS(1645), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1793), - [anon_sym_DASH] = ACTIONS(1793), + [anon_sym_PLUS] = ACTIONS(1643), + [anon_sym_DASH] = ACTIONS(1643), [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(1795), - [anon_sym_AMP] = ACTIONS(1795), - [anon_sym_GT_EQ] = ACTIONS(2583), - [anon_sym_LT_EQ] = ACTIONS(2583), + [anon_sym_CARET] = ACTIONS(1645), + [anon_sym_AMP] = ACTIONS(1645), + [anon_sym_GT_EQ] = ACTIONS(2433), + [anon_sym_LT_EQ] = ACTIONS(2433), [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(2395), + [anon_sym_scoped] = ACTIONS(2525), [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(2433), - [sym_predefined_type] = ACTIONS(2435), - [anon_sym_unchecked] = ACTIONS(1067), + [anon_sym_var] = ACTIONS(2351), + [sym_predefined_type] = ACTIONS(2353), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1589), + [anon_sym_throw] = ACTIONS(1527), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1591), - [sym_discard] = ACTIONS(1083), + [anon_sym_await] = ACTIONS(1529), + [sym_discard] = ACTIONS(1081), [anon_sym_DOT_DOT] = ACTIONS(123), - [anon_sym_not] = ACTIONS(2585), + [anon_sym_not] = ACTIONS(2571), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -103272,7 +103158,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(1089), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -103289,98 +103175,98 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [380] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(2887), - [sym_alias_qualified_name] = STATE(2373), - [sym__simple_name] = STATE(2335), - [sym_qualified_name] = STATE(2373), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(2496), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(2378), - [sym__array_base_type] = STATE(7103), - [sym_nullable_type] = STATE(2379), - [sym_pointer_type] = STATE(2379), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(2379), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(2380), - [sym_pattern] = STATE(3236), - [sym_constant_pattern] = STATE(3295), - [sym_parenthesized_pattern] = STATE(3295), - [sym_var_pattern] = STATE(3295), - [sym_type_pattern] = STATE(3295), - [sym_list_pattern] = STATE(3295), - [sym_recursive_pattern] = STATE(3295), - [sym_positional_pattern_clause] = STATE(2588), - [sym_property_pattern_clause] = STATE(2786), - [sym_relational_pattern] = STATE(3295), - [sym_negated_pattern] = STATE(3295), - [sym_and_pattern] = STATE(3295), - [sym_or_pattern] = STATE(3295), - [sym_declaration_pattern] = STATE(3295), - [sym_expression] = STATE(5696), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3520), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3310), - [sym_postfix_unary_expression] = STATE(3312), - [sym_prefix_unary_expression] = STATE(3312), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6154), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3310), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3312), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3310), - [sym_member_access_expression] = STATE(2617), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3312), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7530), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(3310), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3310), - [sym_typeof_expression] = STATE(3310), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2617), - [sym_literal] = STATE(3310), - [sym_character_literal] = STATE(3278), - [sym_string_literal] = STATE(3278), - [sym_raw_string_literal] = STATE(3278), - [sym_boolean_literal] = STATE(3278), - [sym_identifier] = STATE(2186), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(2864), + [sym_alias_qualified_name] = STATE(2402), + [sym__simple_name] = STATE(2327), + [sym_qualified_name] = STATE(2402), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(2514), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(2373), + [sym__array_base_type] = STATE(7083), + [sym_nullable_type] = STATE(2375), + [sym_pointer_type] = STATE(2375), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(2375), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(2377), + [sym_pattern] = STATE(5139), + [sym_constant_pattern] = STATE(3311), + [sym_parenthesized_pattern] = STATE(3311), + [sym_var_pattern] = STATE(3311), + [sym_type_pattern] = STATE(3311), + [sym_list_pattern] = STATE(3311), + [sym_recursive_pattern] = STATE(3311), + [sym_positional_pattern_clause] = STATE(2585), + [sym_property_pattern_clause] = STATE(2792), + [sym_relational_pattern] = STATE(3311), + [sym_negated_pattern] = STATE(3311), + [sym_and_pattern] = STATE(3311), + [sym_or_pattern] = STATE(3311), + [sym_declaration_pattern] = STATE(3311), + [sym_expression] = STATE(5680), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3510), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3275), + [sym_postfix_unary_expression] = STATE(3276), + [sym_prefix_unary_expression] = STATE(3276), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6134), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3275), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3276), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3275), + [sym_member_access_expression] = STATE(2608), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3276), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7425), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(3275), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3275), + [sym_typeof_expression] = STATE(3275), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2608), + [sym_literal] = STATE(3275), + [sym_character_literal] = STATE(3272), + [sym_string_literal] = STATE(3272), + [sym_raw_string_literal] = STATE(3272), + [sym_boolean_literal] = STATE(3272), + [sym_identifier] = STATE(2178), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(380), [sym_preproc_endregion] = STATE(380), [sym_preproc_line] = STATE(380), @@ -103390,53 +103276,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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(2365), - [anon_sym_LPAREN] = ACTIONS(2367), - [anon_sym_ref] = ACTIONS(2369), - [anon_sym_LBRACE] = ACTIONS(2371), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(2357), + [anon_sym_LPAREN] = ACTIONS(2465), + [anon_sym_ref] = ACTIONS(2341), + [anon_sym_LBRACE] = ACTIONS(2343), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1061), - [anon_sym_LT] = ACTIONS(2373), - [anon_sym_GT] = ACTIONS(2373), + [anon_sym_new] = ACTIONS(1059), + [anon_sym_LT] = ACTIONS(2467), + [anon_sym_GT] = ACTIONS(2467), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1067), - [anon_sym_BANG] = ACTIONS(1923), - [anon_sym_TILDE] = ACTIONS(1923), - [anon_sym_PLUS_PLUS] = ACTIONS(1923), - [anon_sym_DASH_DASH] = ACTIONS(1923), - [anon_sym_true] = ACTIONS(1173), - [anon_sym_false] = ACTIONS(1173), - [anon_sym_PLUS] = ACTIONS(1921), - [anon_sym_DASH] = ACTIONS(1921), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(1865), + [anon_sym_TILDE] = ACTIONS(1865), + [anon_sym_PLUS_PLUS] = ACTIONS(1865), + [anon_sym_DASH_DASH] = ACTIONS(1865), + [anon_sym_true] = ACTIONS(1169), + [anon_sym_false] = ACTIONS(1169), + [anon_sym_PLUS] = ACTIONS(1863), + [anon_sym_DASH] = ACTIONS(1863), [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(1923), - [anon_sym_AMP] = ACTIONS(1923), - [anon_sym_GT_EQ] = ACTIONS(2375), - [anon_sym_LT_EQ] = ACTIONS(2375), + [anon_sym_CARET] = ACTIONS(1865), + [anon_sym_AMP] = ACTIONS(1865), + [anon_sym_GT_EQ] = ACTIONS(2469), + [anon_sym_LT_EQ] = ACTIONS(2469), [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(2377), + [anon_sym_scoped] = ACTIONS(2349), [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(2379), - [sym_predefined_type] = ACTIONS(2381), - [anon_sym_unchecked] = ACTIONS(1067), + [anon_sym_var] = ACTIONS(2365), + [sym_predefined_type] = ACTIONS(2367), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1183), - [anon_sym_throw] = ACTIONS(1589), + [anon_sym_default] = ACTIONS(1179), + [anon_sym_throw] = ACTIONS(1527), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1591), - [sym_discard] = ACTIONS(2383), + [anon_sym_await] = ACTIONS(1529), + [sym_discard] = ACTIONS(2369), [anon_sym_DOT_DOT] = ACTIONS(123), - [anon_sym_not] = ACTIONS(2385), + [anon_sym_not] = ACTIONS(2471), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -103450,18 +103336,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(1193), - [anon_sym_typeof] = ACTIONS(1195), + [anon_sym_sizeof] = ACTIONS(1189), + [anon_sym_typeof] = ACTIONS(1191), [anon_sym___makeref] = ACTIONS(133), [anon_sym___reftype] = ACTIONS(135), [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(1203), - [anon_sym_SQUOTE] = ACTIONS(1205), - [sym_integer_literal] = ACTIONS(1203), - [sym_real_literal] = ACTIONS(1207), - [anon_sym_DQUOTE] = ACTIONS(1209), - [sym_verbatim_string_literal] = ACTIONS(1207), - [aux_sym_preproc_if_token1] = ACTIONS(1089), + [sym_null_literal] = ACTIONS(1199), + [anon_sym_SQUOTE] = ACTIONS(1201), + [sym_integer_literal] = ACTIONS(1199), + [sym_real_literal] = ACTIONS(1203), + [anon_sym_DQUOTE] = ACTIONS(1205), + [sym_verbatim_string_literal] = ACTIONS(1203), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -103472,104 +103358,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(1213), - [sym_interpolation_verbatim_start] = ACTIONS(1215), - [sym_interpolation_raw_start] = ACTIONS(1217), - [sym_raw_string_start] = ACTIONS(1219), + [sym_interpolation_regular_start] = ACTIONS(1209), + [sym_interpolation_verbatim_start] = ACTIONS(1211), + [sym_interpolation_raw_start] = ACTIONS(1213), + [sym_raw_string_start] = ACTIONS(1215), }, [381] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(2877), - [sym_alias_qualified_name] = STATE(2373), - [sym__simple_name] = STATE(2322), - [sym_qualified_name] = STATE(2373), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(2497), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(2378), - [sym__array_base_type] = STATE(7103), - [sym_nullable_type] = STATE(2379), - [sym_pointer_type] = STATE(2379), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(2379), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(2380), - [sym_pattern] = STATE(4136), - [sym_constant_pattern] = STATE(4132), - [sym_parenthesized_pattern] = STATE(4132), - [sym_var_pattern] = STATE(4132), - [sym_type_pattern] = STATE(4132), - [sym_list_pattern] = STATE(4132), - [sym_recursive_pattern] = STATE(4132), - [sym_positional_pattern_clause] = STATE(2582), - [sym_property_pattern_clause] = STATE(2731), - [sym_relational_pattern] = STATE(4132), - [sym_negated_pattern] = STATE(4132), - [sym_and_pattern] = STATE(4132), - [sym_or_pattern] = STATE(4132), - [sym_declaration_pattern] = STATE(4132), - [sym_expression] = STATE(5683), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3520), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(4172), - [sym_postfix_unary_expression] = STATE(4148), - [sym_prefix_unary_expression] = STATE(4148), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6154), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(4172), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(4148), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(4172), - [sym_member_access_expression] = STATE(3069), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(4148), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7530), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(4172), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(4172), - [sym_typeof_expression] = STATE(4172), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(3069), - [sym_literal] = STATE(4172), - [sym_character_literal] = STATE(3011), - [sym_string_literal] = STATE(3011), - [sym_raw_string_literal] = STATE(3011), - [sym_boolean_literal] = STATE(3011), - [sym_identifier] = STATE(2186), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(2428), + [sym_alias_qualified_name] = STATE(2402), + [sym__simple_name] = STATE(2184), + [sym_qualified_name] = STATE(2402), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(2474), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(2373), + [sym__array_base_type] = STATE(7083), + [sym_nullable_type] = STATE(2375), + [sym_pointer_type] = STATE(2375), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(2375), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(2377), + [sym_pattern] = STATE(3407), + [sym_constant_pattern] = STATE(3429), + [sym_parenthesized_pattern] = STATE(3429), + [sym_var_pattern] = STATE(3429), + [sym_type_pattern] = STATE(3429), + [sym_list_pattern] = STATE(3429), + [sym_recursive_pattern] = STATE(3429), + [sym_positional_pattern_clause] = STATE(2543), + [sym_property_pattern_clause] = STATE(2643), + [sym_relational_pattern] = STATE(3429), + [sym_negated_pattern] = STATE(3429), + [sym_and_pattern] = STATE(3429), + [sym_or_pattern] = STATE(3429), + [sym_declaration_pattern] = STATE(3429), + [sym_expression] = STATE(5665), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3510), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3397), + [sym_postfix_unary_expression] = STATE(3404), + [sym_prefix_unary_expression] = STATE(3404), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6134), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3397), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3404), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3397), + [sym_member_access_expression] = STATE(2686), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3404), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7425), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(3397), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3397), + [sym_typeof_expression] = STATE(3397), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2686), + [sym_literal] = STATE(3397), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2178), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(381), [sym_preproc_endregion] = STATE(381), [sym_preproc_line] = STATE(381), @@ -103579,53 +103465,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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(2475), - [anon_sym_LPAREN] = ACTIONS(2545), - [anon_sym_ref] = ACTIONS(2369), - [anon_sym_LBRACE] = ACTIONS(2371), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_LPAREN] = ACTIONS(2581), + [anon_sym_ref] = ACTIONS(2341), + [anon_sym_LBRACE] = ACTIONS(2343), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1061), - [anon_sym_LT] = ACTIONS(2547), - [anon_sym_GT] = ACTIONS(2547), + [anon_sym_new] = ACTIONS(1059), + [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(1067), - [anon_sym_BANG] = ACTIONS(1849), - [anon_sym_TILDE] = ACTIONS(1849), - [anon_sym_PLUS_PLUS] = ACTIONS(1849), - [anon_sym_DASH_DASH] = ACTIONS(1849), - [anon_sym_true] = ACTIONS(1259), - [anon_sym_false] = ACTIONS(1259), - [anon_sym_PLUS] = ACTIONS(1847), - [anon_sym_DASH] = ACTIONS(1847), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(1745), + [anon_sym_TILDE] = ACTIONS(1745), + [anon_sym_PLUS_PLUS] = ACTIONS(1745), + [anon_sym_DASH_DASH] = ACTIONS(1745), + [anon_sym_true] = ACTIONS(77), + [anon_sym_false] = ACTIONS(77), + [anon_sym_PLUS] = ACTIONS(1743), + [anon_sym_DASH] = ACTIONS(1743), [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(1849), - [anon_sym_AMP] = ACTIONS(1849), - [anon_sym_GT_EQ] = ACTIONS(2549), - [anon_sym_LT_EQ] = ACTIONS(2549), + [anon_sym_CARET] = ACTIONS(1745), + [anon_sym_AMP] = ACTIONS(1745), + [anon_sym_GT_EQ] = ACTIONS(2585), + [anon_sym_LT_EQ] = ACTIONS(2585), [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(2377), + [anon_sym_scoped] = ACTIONS(2349), [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(2551), - [sym_predefined_type] = ACTIONS(2485), - [anon_sym_unchecked] = ACTIONS(1067), + [anon_sym_var] = ACTIONS(2587), + [sym_predefined_type] = ACTIONS(2353), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1269), - [anon_sym_throw] = ACTIONS(1589), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(1527), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1591), - [sym_discard] = ACTIONS(2487), + [anon_sym_await] = ACTIONS(1529), + [sym_discard] = ACTIONS(1081), [anon_sym_DOT_DOT] = ACTIONS(123), - [anon_sym_not] = ACTIONS(2553), + [anon_sym_not] = ACTIONS(2589), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -103639,18 +103525,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(1279), - [anon_sym_typeof] = ACTIONS(1281), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), [anon_sym___makeref] = ACTIONS(133), [anon_sym___reftype] = ACTIONS(135), [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(1289), - [anon_sym_SQUOTE] = ACTIONS(1291), - [sym_integer_literal] = ACTIONS(1289), - [sym_real_literal] = ACTIONS(1293), - [anon_sym_DQUOTE] = ACTIONS(1295), - [sym_verbatim_string_literal] = ACTIONS(1293), - [aux_sym_preproc_if_token1] = ACTIONS(1089), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_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), @@ -103661,104 +103547,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(1299), - [sym_interpolation_verbatim_start] = ACTIONS(1301), - [sym_interpolation_raw_start] = ACTIONS(1303), - [sym_raw_string_start] = ACTIONS(1305), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [sym_interpolation_raw_start] = ACTIONS(155), + [sym_raw_string_start] = ACTIONS(157), }, [382] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(2421), - [sym_alias_qualified_name] = STATE(2373), - [sym__simple_name] = STATE(2191), - [sym_qualified_name] = STATE(2373), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(2464), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(2378), - [sym__array_base_type] = STATE(7103), - [sym_nullable_type] = STATE(2379), - [sym_pointer_type] = STATE(2379), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(2379), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(2380), - [sym_pattern] = STATE(5421), - [sym_constant_pattern] = STATE(3486), - [sym_parenthesized_pattern] = STATE(3486), - [sym_var_pattern] = STATE(3486), - [sym_type_pattern] = STATE(3486), - [sym_list_pattern] = STATE(3486), - [sym_recursive_pattern] = STATE(3486), - [sym_positional_pattern_clause] = STATE(2276), - [sym_property_pattern_clause] = STATE(2330), - [sym_relational_pattern] = STATE(3486), - [sym_negated_pattern] = STATE(3486), - [sym_and_pattern] = STATE(3486), - [sym_or_pattern] = STATE(3486), - [sym_declaration_pattern] = STATE(3486), - [sym_expression] = STATE(5692), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3520), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3455), - [sym_postfix_unary_expression] = STATE(3469), - [sym_prefix_unary_expression] = STATE(3469), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6154), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3455), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3469), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3455), - [sym_member_access_expression] = STATE(2719), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3469), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7530), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(3455), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3455), - [sym_typeof_expression] = STATE(3455), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2719), - [sym_literal] = STATE(3455), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2258), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(2428), + [sym_alias_qualified_name] = STATE(2402), + [sym__simple_name] = STATE(2184), + [sym_qualified_name] = STATE(2402), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(2474), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(2373), + [sym__array_base_type] = STATE(7083), + [sym_nullable_type] = STATE(2375), + [sym_pointer_type] = STATE(2375), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(2375), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(2377), + [sym_pattern] = STATE(5616), + [sym_constant_pattern] = STATE(3429), + [sym_parenthesized_pattern] = STATE(3429), + [sym_var_pattern] = STATE(3429), + [sym_type_pattern] = STATE(3429), + [sym_list_pattern] = STATE(3429), + [sym_recursive_pattern] = STATE(3429), + [sym_positional_pattern_clause] = STATE(2543), + [sym_property_pattern_clause] = STATE(2643), + [sym_relational_pattern] = STATE(3429), + [sym_negated_pattern] = STATE(3429), + [sym_and_pattern] = STATE(3429), + [sym_or_pattern] = STATE(3429), + [sym_declaration_pattern] = STATE(3429), + [sym_expression] = STATE(5665), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3510), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3397), + [sym_postfix_unary_expression] = STATE(3404), + [sym_prefix_unary_expression] = STATE(3404), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6134), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3397), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3404), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3397), + [sym_member_access_expression] = STATE(2686), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3404), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7425), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(3397), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3397), + [sym_typeof_expression] = STATE(3397), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2686), + [sym_literal] = STATE(3397), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2178), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(382), [sym_preproc_endregion] = STATE(382), [sym_preproc_line] = STATE(382), @@ -103768,53 +103654,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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1049), - [anon_sym_LPAREN] = ACTIONS(2587), - [anon_sym_ref] = ACTIONS(2449), - [anon_sym_LBRACE] = ACTIONS(2371), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_LPAREN] = ACTIONS(2581), + [anon_sym_ref] = ACTIONS(2341), + [anon_sym_LBRACE] = ACTIONS(2343), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1061), - [anon_sym_LT] = ACTIONS(2589), - [anon_sym_GT] = ACTIONS(2589), + [anon_sym_new] = ACTIONS(1059), + [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(1067), - [anon_sym_BANG] = ACTIONS(1549), - [anon_sym_TILDE] = ACTIONS(1549), - [anon_sym_PLUS_PLUS] = ACTIONS(1549), - [anon_sym_DASH_DASH] = ACTIONS(1549), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(1745), + [anon_sym_TILDE] = ACTIONS(1745), + [anon_sym_PLUS_PLUS] = ACTIONS(1745), + [anon_sym_DASH_DASH] = ACTIONS(1745), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1547), - [anon_sym_DASH] = ACTIONS(1547), + [anon_sym_PLUS] = ACTIONS(1743), + [anon_sym_DASH] = ACTIONS(1743), [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(1549), - [anon_sym_AMP] = ACTIONS(1549), - [anon_sym_GT_EQ] = ACTIONS(2591), - [anon_sym_LT_EQ] = ACTIONS(2591), + [anon_sym_CARET] = ACTIONS(1745), + [anon_sym_AMP] = ACTIONS(1745), + [anon_sym_GT_EQ] = ACTIONS(2585), + [anon_sym_LT_EQ] = ACTIONS(2585), [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(2377), + [anon_sym_scoped] = ACTIONS(2349), [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(2501), - [sym_predefined_type] = ACTIONS(2435), - [anon_sym_unchecked] = ACTIONS(1067), + [anon_sym_var] = ACTIONS(2587), + [sym_predefined_type] = ACTIONS(2353), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1589), + [anon_sym_throw] = ACTIONS(1527), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1591), - [sym_discard] = ACTIONS(1083), + [anon_sym_await] = ACTIONS(1529), + [sym_discard] = ACTIONS(1081), [anon_sym_DOT_DOT] = ACTIONS(123), - [anon_sym_not] = ACTIONS(2593), + [anon_sym_not] = ACTIONS(2589), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -103839,7 +103725,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(1089), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -103856,98 +103742,98 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [383] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(5723), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2284), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5162), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_pattern] = STATE(6667), - [sym_constant_pattern] = STATE(3486), - [sym_parenthesized_pattern] = STATE(3486), - [sym_var_pattern] = STATE(3486), - [sym_type_pattern] = STATE(3486), - [sym_list_pattern] = STATE(3486), - [sym_recursive_pattern] = STATE(3486), - [sym_positional_pattern_clause] = STATE(5670), - [sym_property_pattern_clause] = STATE(5735), - [sym_relational_pattern] = STATE(3486), - [sym_negated_pattern] = STATE(3486), - [sym_and_pattern] = STATE(3486), - [sym_or_pattern] = STATE(3486), - [sym_declaration_pattern] = STATE(3486), - [sym_expression] = STATE(5668), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3520), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(4216), - [sym_postfix_unary_expression] = STATE(4219), - [sym_prefix_unary_expression] = STATE(4219), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6154), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(4216), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(4219), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(4216), - [sym_member_access_expression] = STATE(3121), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(4219), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7530), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(4216), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(4216), - [sym_typeof_expression] = STATE(4216), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(3121), - [sym_literal] = STATE(4216), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2267), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(2410), + [sym_alias_qualified_name] = STATE(2402), + [sym__simple_name] = STATE(2185), + [sym_qualified_name] = STATE(2402), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(2232), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(2373), + [sym__array_base_type] = STATE(7083), + [sym_nullable_type] = STATE(2375), + [sym_pointer_type] = STATE(2375), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(2375), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(2377), + [sym_pattern] = STATE(3260), + [sym_constant_pattern] = STATE(3311), + [sym_parenthesized_pattern] = STATE(3311), + [sym_var_pattern] = STATE(3311), + [sym_type_pattern] = STATE(3311), + [sym_list_pattern] = STATE(3311), + [sym_recursive_pattern] = STATE(3311), + [sym_positional_pattern_clause] = STATE(2257), + [sym_property_pattern_clause] = STATE(2289), + [sym_relational_pattern] = STATE(3311), + [sym_negated_pattern] = STATE(3311), + [sym_and_pattern] = STATE(3311), + [sym_or_pattern] = STATE(3311), + [sym_declaration_pattern] = STATE(3311), + [sym_expression] = STATE(5671), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3510), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3275), + [sym_postfix_unary_expression] = STATE(3276), + [sym_prefix_unary_expression] = STATE(3276), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6134), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3275), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3276), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3275), + [sym_member_access_expression] = STATE(2608), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3276), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7425), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(3275), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3275), + [sym_typeof_expression] = STATE(3275), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2608), + [sym_literal] = STATE(3275), + [sym_character_literal] = STATE(3272), + [sym_string_literal] = STATE(3272), + [sym_raw_string_literal] = STATE(3272), + [sym_boolean_literal] = STATE(3272), + [sym_identifier] = STATE(2178), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(383), [sym_preproc_endregion] = STATE(383), [sym_preproc_line] = STATE(383), @@ -103957,53 +103843,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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1049), - [anon_sym_LPAREN] = ACTIONS(1985), - [anon_sym_ref] = ACTIONS(1987), - [anon_sym_LBRACE] = ACTIONS(1059), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(2357), + [anon_sym_LPAREN] = ACTIONS(2441), + [anon_sym_ref] = ACTIONS(2341), + [anon_sym_LBRACE] = ACTIONS(2343), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1061), - [anon_sym_LT] = ACTIONS(1991), - [anon_sym_GT] = ACTIONS(1991), + [anon_sym_new] = ACTIONS(1059), + [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(1067), - [anon_sym_BANG] = ACTIONS(1617), - [anon_sym_TILDE] = ACTIONS(1617), - [anon_sym_PLUS_PLUS] = ACTIONS(1617), - [anon_sym_DASH_DASH] = ACTIONS(1617), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1615), - [anon_sym_DASH] = ACTIONS(1615), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(1167), + [anon_sym_TILDE] = ACTIONS(1167), + [anon_sym_PLUS_PLUS] = ACTIONS(1167), + [anon_sym_DASH_DASH] = ACTIONS(1167), + [anon_sym_true] = ACTIONS(1169), + [anon_sym_false] = ACTIONS(1169), + [anon_sym_PLUS] = ACTIONS(1165), + [anon_sym_DASH] = ACTIONS(1165), [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(1617), - [anon_sym_AMP] = ACTIONS(1617), - [anon_sym_GT_EQ] = ACTIONS(1993), - [anon_sym_LT_EQ] = ACTIONS(1993), + [anon_sym_CARET] = ACTIONS(1167), + [anon_sym_AMP] = ACTIONS(1167), + [anon_sym_GT_EQ] = ACTIONS(2445), + [anon_sym_LT_EQ] = ACTIONS(2445), [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(1075), + [anon_sym_scoped] = ACTIONS(2349), [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(1995), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1067), + [anon_sym_var] = ACTIONS(2365), + [sym_predefined_type] = ACTIONS(2367), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1589), + [anon_sym_default] = ACTIONS(1179), + [anon_sym_throw] = ACTIONS(1527), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1591), - [sym_discard] = ACTIONS(1083), + [anon_sym_await] = ACTIONS(1529), + [sym_discard] = ACTIONS(2369), [anon_sym_DOT_DOT] = ACTIONS(123), - [anon_sym_not] = ACTIONS(1997), + [anon_sym_not] = ACTIONS(2447), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -104017,18 +103903,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(129), - [anon_sym_typeof] = ACTIONS(131), + [anon_sym_sizeof] = ACTIONS(1189), + [anon_sym_typeof] = ACTIONS(1191), [anon_sym___makeref] = ACTIONS(133), [anon_sym___reftype] = ACTIONS(135), [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1089), + [sym_null_literal] = ACTIONS(1199), + [anon_sym_SQUOTE] = ACTIONS(1201), + [sym_integer_literal] = ACTIONS(1199), + [sym_real_literal] = ACTIONS(1203), + [anon_sym_DQUOTE] = ACTIONS(1205), + [sym_verbatim_string_literal] = ACTIONS(1203), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -104039,104 +103925,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(1209), + [sym_interpolation_verbatim_start] = ACTIONS(1211), + [sym_interpolation_raw_start] = ACTIONS(1213), + [sym_raw_string_start] = ACTIONS(1215), }, [384] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(2881), - [sym_alias_qualified_name] = STATE(2373), - [sym__simple_name] = STATE(2324), - [sym_qualified_name] = STATE(2373), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(2516), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(2378), - [sym__array_base_type] = STATE(7103), - [sym_nullable_type] = STATE(2379), - [sym_pointer_type] = STATE(2379), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(2379), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(2380), - [sym_pattern] = STATE(3250), - [sym_constant_pattern] = STATE(3295), - [sym_parenthesized_pattern] = STATE(3295), - [sym_var_pattern] = STATE(3295), - [sym_type_pattern] = STATE(3295), - [sym_list_pattern] = STATE(3295), - [sym_recursive_pattern] = STATE(3295), - [sym_positional_pattern_clause] = STATE(2576), - [sym_property_pattern_clause] = STATE(2773), - [sym_relational_pattern] = STATE(3295), - [sym_negated_pattern] = STATE(3295), - [sym_and_pattern] = STATE(3295), - [sym_or_pattern] = STATE(3295), - [sym_declaration_pattern] = STATE(3295), - [sym_expression] = STATE(5689), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3520), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3310), - [sym_postfix_unary_expression] = STATE(3312), - [sym_prefix_unary_expression] = STATE(3312), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6154), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3310), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3312), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3310), - [sym_member_access_expression] = STATE(2617), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3312), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7530), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(3310), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3310), - [sym_typeof_expression] = STATE(3310), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2617), - [sym_literal] = STATE(3310), - [sym_character_literal] = STATE(3278), - [sym_string_literal] = STATE(3278), - [sym_raw_string_literal] = STATE(3278), - [sym_boolean_literal] = STATE(3278), - [sym_identifier] = STATE(2186), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(2428), + [sym_alias_qualified_name] = STATE(2402), + [sym__simple_name] = STATE(2184), + [sym_qualified_name] = STATE(2402), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(2447), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(2373), + [sym__array_base_type] = STATE(7083), + [sym_nullable_type] = STATE(2375), + [sym_pointer_type] = STATE(2375), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(2375), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(2377), + [sym_pattern] = STATE(3445), + [sym_constant_pattern] = STATE(3429), + [sym_parenthesized_pattern] = STATE(3429), + [sym_var_pattern] = STATE(3429), + [sym_type_pattern] = STATE(3429), + [sym_list_pattern] = STATE(3429), + [sym_recursive_pattern] = STATE(3429), + [sym_positional_pattern_clause] = STATE(2543), + [sym_property_pattern_clause] = STATE(2643), + [sym_relational_pattern] = STATE(3429), + [sym_negated_pattern] = STATE(3429), + [sym_and_pattern] = STATE(3429), + [sym_or_pattern] = STATE(3429), + [sym_declaration_pattern] = STATE(3429), + [sym_expression] = STATE(5665), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3510), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3397), + [sym_postfix_unary_expression] = STATE(3404), + [sym_prefix_unary_expression] = STATE(3404), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6134), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3397), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3404), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3397), + [sym_member_access_expression] = STATE(2686), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3404), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7425), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(3397), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3397), + [sym_typeof_expression] = STATE(3397), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2686), + [sym_literal] = STATE(3397), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2178), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(384), [sym_preproc_endregion] = STATE(384), [sym_preproc_line] = STATE(384), @@ -104146,53 +104032,53 @@ 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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(2365), - [anon_sym_LPAREN] = ACTIONS(2459), - [anon_sym_ref] = ACTIONS(2369), - [anon_sym_LBRACE] = ACTIONS(2371), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_LPAREN] = ACTIONS(2581), + [anon_sym_ref] = ACTIONS(2341), + [anon_sym_LBRACE] = ACTIONS(2343), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1061), - [anon_sym_LT] = ACTIONS(2461), - [anon_sym_GT] = ACTIONS(2461), + [anon_sym_new] = ACTIONS(1059), + [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(1067), - [anon_sym_BANG] = ACTIONS(1867), - [anon_sym_TILDE] = ACTIONS(1867), - [anon_sym_PLUS_PLUS] = ACTIONS(1867), - [anon_sym_DASH_DASH] = ACTIONS(1867), - [anon_sym_true] = ACTIONS(1173), - [anon_sym_false] = ACTIONS(1173), - [anon_sym_PLUS] = ACTIONS(1865), - [anon_sym_DASH] = ACTIONS(1865), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(1745), + [anon_sym_TILDE] = ACTIONS(1745), + [anon_sym_PLUS_PLUS] = ACTIONS(1745), + [anon_sym_DASH_DASH] = ACTIONS(1745), + [anon_sym_true] = ACTIONS(77), + [anon_sym_false] = ACTIONS(77), + [anon_sym_PLUS] = ACTIONS(1743), + [anon_sym_DASH] = ACTIONS(1743), [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(1867), - [anon_sym_AMP] = ACTIONS(1867), - [anon_sym_GT_EQ] = ACTIONS(2463), - [anon_sym_LT_EQ] = ACTIONS(2463), + [anon_sym_CARET] = ACTIONS(1745), + [anon_sym_AMP] = ACTIONS(1745), + [anon_sym_GT_EQ] = ACTIONS(2585), + [anon_sym_LT_EQ] = ACTIONS(2585), [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(2377), + [anon_sym_scoped] = ACTIONS(2349), [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(2379), - [sym_predefined_type] = ACTIONS(2381), - [anon_sym_unchecked] = ACTIONS(1067), + [anon_sym_var] = ACTIONS(2587), + [sym_predefined_type] = ACTIONS(2353), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1183), - [anon_sym_throw] = ACTIONS(1589), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(1527), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1591), - [sym_discard] = ACTIONS(2383), + [anon_sym_await] = ACTIONS(1529), + [sym_discard] = ACTIONS(1081), [anon_sym_DOT_DOT] = ACTIONS(123), - [anon_sym_not] = ACTIONS(2465), + [anon_sym_not] = ACTIONS(2589), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -104206,18 +104092,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(1193), - [anon_sym_typeof] = ACTIONS(1195), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), [anon_sym___makeref] = ACTIONS(133), [anon_sym___reftype] = ACTIONS(135), [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(1203), - [anon_sym_SQUOTE] = ACTIONS(1205), - [sym_integer_literal] = ACTIONS(1203), - [sym_real_literal] = ACTIONS(1207), - [anon_sym_DQUOTE] = ACTIONS(1209), - [sym_verbatim_string_literal] = ACTIONS(1207), - [aux_sym_preproc_if_token1] = ACTIONS(1089), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_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), @@ -104228,104 +104114,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(1213), - [sym_interpolation_verbatim_start] = ACTIONS(1215), - [sym_interpolation_raw_start] = ACTIONS(1217), - [sym_raw_string_start] = ACTIONS(1219), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [sym_interpolation_raw_start] = ACTIONS(155), + [sym_raw_string_start] = ACTIONS(157), }, [385] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(2884), - [sym_alias_qualified_name] = STATE(2373), - [sym__simple_name] = STATE(2349), - [sym_qualified_name] = STATE(2373), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(2509), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(2378), - [sym__array_base_type] = STATE(7103), - [sym_nullable_type] = STATE(2379), - [sym_pointer_type] = STATE(2379), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(2379), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(2380), - [sym_pattern] = STATE(3424), - [sym_constant_pattern] = STATE(3486), - [sym_parenthesized_pattern] = STATE(3486), - [sym_var_pattern] = STATE(3486), - [sym_type_pattern] = STATE(3486), - [sym_list_pattern] = STATE(3486), - [sym_recursive_pattern] = STATE(3486), - [sym_positional_pattern_clause] = STATE(2583), - [sym_property_pattern_clause] = STATE(2691), - [sym_relational_pattern] = STATE(3486), - [sym_negated_pattern] = STATE(3486), - [sym_and_pattern] = STATE(3486), - [sym_or_pattern] = STATE(3486), - [sym_declaration_pattern] = STATE(3486), - [sym_expression] = STATE(5667), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3520), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3455), - [sym_postfix_unary_expression] = STATE(3469), - [sym_prefix_unary_expression] = STATE(3469), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6154), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3455), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3469), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3455), - [sym_member_access_expression] = STATE(2719), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3469), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7530), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(3455), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3455), - [sym_typeof_expression] = STATE(3455), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2719), - [sym_literal] = STATE(3455), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2186), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(2410), + [sym_alias_qualified_name] = STATE(2402), + [sym__simple_name] = STATE(2185), + [sym_qualified_name] = STATE(2402), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(2232), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(2373), + [sym__array_base_type] = STATE(7083), + [sym_nullable_type] = STATE(2375), + [sym_pointer_type] = STATE(2375), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(2375), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(2377), + [sym_pattern] = STATE(4101), + [sym_constant_pattern] = STATE(3311), + [sym_parenthesized_pattern] = STATE(3311), + [sym_var_pattern] = STATE(3311), + [sym_type_pattern] = STATE(3311), + [sym_list_pattern] = STATE(3311), + [sym_recursive_pattern] = STATE(3311), + [sym_positional_pattern_clause] = STATE(2257), + [sym_property_pattern_clause] = STATE(2289), + [sym_relational_pattern] = STATE(3311), + [sym_negated_pattern] = STATE(3311), + [sym_and_pattern] = STATE(3311), + [sym_or_pattern] = STATE(3311), + [sym_declaration_pattern] = STATE(3311), + [sym_expression] = STATE(5671), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3510), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3275), + [sym_postfix_unary_expression] = STATE(3276), + [sym_prefix_unary_expression] = STATE(3276), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6134), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3275), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3276), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3275), + [sym_member_access_expression] = STATE(2608), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3276), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7425), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(3275), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3275), + [sym_typeof_expression] = STATE(3275), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2608), + [sym_literal] = STATE(3275), + [sym_character_literal] = STATE(3272), + [sym_string_literal] = STATE(3272), + [sym_raw_string_literal] = STATE(3272), + [sym_boolean_literal] = STATE(3272), + [sym_identifier] = STATE(2178), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(385), [sym_preproc_endregion] = STATE(385), [sym_preproc_line] = STATE(385), @@ -104335,53 +104221,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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1049), - [anon_sym_LPAREN] = ACTIONS(2439), - [anon_sym_ref] = ACTIONS(2369), - [anon_sym_LBRACE] = ACTIONS(2371), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(2357), + [anon_sym_LPAREN] = ACTIONS(2441), + [anon_sym_ref] = ACTIONS(2341), + [anon_sym_LBRACE] = ACTIONS(2343), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1061), - [anon_sym_LT] = ACTIONS(2441), - [anon_sym_GT] = ACTIONS(2441), + [anon_sym_new] = ACTIONS(1059), + [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(1067), - [anon_sym_BANG] = ACTIONS(1813), - [anon_sym_TILDE] = ACTIONS(1813), - [anon_sym_PLUS_PLUS] = ACTIONS(1813), - [anon_sym_DASH_DASH] = ACTIONS(1813), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1811), - [anon_sym_DASH] = ACTIONS(1811), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(1167), + [anon_sym_TILDE] = ACTIONS(1167), + [anon_sym_PLUS_PLUS] = ACTIONS(1167), + [anon_sym_DASH_DASH] = ACTIONS(1167), + [anon_sym_true] = ACTIONS(1169), + [anon_sym_false] = ACTIONS(1169), + [anon_sym_PLUS] = ACTIONS(1165), + [anon_sym_DASH] = ACTIONS(1165), [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(1813), - [anon_sym_AMP] = ACTIONS(1813), - [anon_sym_GT_EQ] = ACTIONS(2443), - [anon_sym_LT_EQ] = ACTIONS(2443), + [anon_sym_CARET] = ACTIONS(1167), + [anon_sym_AMP] = ACTIONS(1167), + [anon_sym_GT_EQ] = ACTIONS(2445), + [anon_sym_LT_EQ] = ACTIONS(2445), [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(2377), + [anon_sym_scoped] = ACTIONS(2349), [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(2433), - [sym_predefined_type] = ACTIONS(2435), - [anon_sym_unchecked] = ACTIONS(1067), + [anon_sym_var] = ACTIONS(2365), + [sym_predefined_type] = ACTIONS(2367), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1589), + [anon_sym_default] = ACTIONS(1179), + [anon_sym_throw] = ACTIONS(1527), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1591), - [sym_discard] = ACTIONS(1083), + [anon_sym_await] = ACTIONS(1529), + [sym_discard] = ACTIONS(2369), [anon_sym_DOT_DOT] = ACTIONS(123), - [anon_sym_not] = ACTIONS(2445), + [anon_sym_not] = ACTIONS(2447), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -104395,18 +104281,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(129), - [anon_sym_typeof] = ACTIONS(131), + [anon_sym_sizeof] = ACTIONS(1189), + [anon_sym_typeof] = ACTIONS(1191), [anon_sym___makeref] = ACTIONS(133), [anon_sym___reftype] = ACTIONS(135), [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1089), + [sym_null_literal] = ACTIONS(1199), + [anon_sym_SQUOTE] = ACTIONS(1201), + [sym_integer_literal] = ACTIONS(1199), + [sym_real_literal] = ACTIONS(1203), + [anon_sym_DQUOTE] = ACTIONS(1205), + [sym_verbatim_string_literal] = ACTIONS(1203), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -104417,104 +104303,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(1209), + [sym_interpolation_verbatim_start] = ACTIONS(1211), + [sym_interpolation_raw_start] = ACTIONS(1213), + [sym_raw_string_start] = ACTIONS(1215), }, [386] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(2887), - [sym_alias_qualified_name] = STATE(2373), - [sym__simple_name] = STATE(2335), - [sym_qualified_name] = STATE(2373), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(2489), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(2378), - [sym__array_base_type] = STATE(7103), - [sym_nullable_type] = STATE(2379), - [sym_pointer_type] = STATE(2379), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(2379), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(2380), - [sym_pattern] = STATE(3250), - [sym_constant_pattern] = STATE(3295), - [sym_parenthesized_pattern] = STATE(3295), - [sym_var_pattern] = STATE(3295), - [sym_type_pattern] = STATE(3295), - [sym_list_pattern] = STATE(3295), - [sym_recursive_pattern] = STATE(3295), - [sym_positional_pattern_clause] = STATE(2588), - [sym_property_pattern_clause] = STATE(2786), - [sym_relational_pattern] = STATE(3295), - [sym_negated_pattern] = STATE(3295), - [sym_and_pattern] = STATE(3295), - [sym_or_pattern] = STATE(3295), - [sym_declaration_pattern] = STATE(3295), - [sym_expression] = STATE(5696), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3520), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3310), - [sym_postfix_unary_expression] = STATE(3312), - [sym_prefix_unary_expression] = STATE(3312), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6154), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3310), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3312), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3310), - [sym_member_access_expression] = STATE(2617), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3312), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7530), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(3310), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3310), - [sym_typeof_expression] = STATE(3310), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2617), - [sym_literal] = STATE(3310), - [sym_character_literal] = STATE(3278), - [sym_string_literal] = STATE(3278), - [sym_raw_string_literal] = STATE(3278), - [sym_boolean_literal] = STATE(3278), - [sym_identifier] = STATE(2186), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(2850), + [sym_alias_qualified_name] = STATE(2402), + [sym__simple_name] = STATE(2271), + [sym_qualified_name] = STATE(2402), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(2451), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(2373), + [sym__array_base_type] = STATE(7083), + [sym_nullable_type] = STATE(2375), + [sym_pointer_type] = STATE(2375), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(2375), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(2377), + [sym_pattern] = STATE(3247), + [sym_constant_pattern] = STATE(3311), + [sym_parenthesized_pattern] = STATE(3311), + [sym_var_pattern] = STATE(3311), + [sym_type_pattern] = STATE(3311), + [sym_list_pattern] = STATE(3311), + [sym_recursive_pattern] = STATE(3311), + [sym_positional_pattern_clause] = STATE(2526), + [sym_property_pattern_clause] = STATE(2588), + [sym_relational_pattern] = STATE(3311), + [sym_negated_pattern] = STATE(3311), + [sym_and_pattern] = STATE(3311), + [sym_or_pattern] = STATE(3311), + [sym_declaration_pattern] = STATE(3311), + [sym_expression] = STATE(5651), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3510), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3275), + [sym_postfix_unary_expression] = STATE(3276), + [sym_prefix_unary_expression] = STATE(3276), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6134), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3275), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3276), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3275), + [sym_member_access_expression] = STATE(2608), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3276), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7425), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(3275), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3275), + [sym_typeof_expression] = STATE(3275), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2608), + [sym_literal] = STATE(3275), + [sym_character_literal] = STATE(3272), + [sym_string_literal] = STATE(3272), + [sym_raw_string_literal] = STATE(3272), + [sym_boolean_literal] = STATE(3272), + [sym_identifier] = STATE(2202), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(386), [sym_preproc_endregion] = STATE(386), [sym_preproc_line] = STATE(386), @@ -104524,53 +104410,53 @@ 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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(2365), - [anon_sym_LPAREN] = ACTIONS(2367), - [anon_sym_ref] = ACTIONS(2369), - [anon_sym_LBRACE] = ACTIONS(2371), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(2357), + [anon_sym_LPAREN] = ACTIONS(2517), + [anon_sym_ref] = ACTIONS(2519), + [anon_sym_LBRACE] = ACTIONS(2343), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1061), - [anon_sym_LT] = ACTIONS(2373), - [anon_sym_GT] = ACTIONS(2373), + [anon_sym_new] = ACTIONS(1059), + [anon_sym_LT] = ACTIONS(2521), + [anon_sym_GT] = ACTIONS(2521), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1067), - [anon_sym_BANG] = ACTIONS(1923), - [anon_sym_TILDE] = ACTIONS(1923), - [anon_sym_PLUS_PLUS] = ACTIONS(1923), - [anon_sym_DASH_DASH] = ACTIONS(1923), - [anon_sym_true] = ACTIONS(1173), - [anon_sym_false] = ACTIONS(1173), - [anon_sym_PLUS] = ACTIONS(1921), - [anon_sym_DASH] = ACTIONS(1921), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(1539), + [anon_sym_TILDE] = ACTIONS(1539), + [anon_sym_PLUS_PLUS] = ACTIONS(1539), + [anon_sym_DASH_DASH] = ACTIONS(1539), + [anon_sym_true] = ACTIONS(1169), + [anon_sym_false] = ACTIONS(1169), + [anon_sym_PLUS] = ACTIONS(1537), + [anon_sym_DASH] = ACTIONS(1537), [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(1923), - [anon_sym_AMP] = ACTIONS(1923), - [anon_sym_GT_EQ] = ACTIONS(2375), - [anon_sym_LT_EQ] = ACTIONS(2375), + [anon_sym_CARET] = ACTIONS(1539), + [anon_sym_AMP] = ACTIONS(1539), + [anon_sym_GT_EQ] = ACTIONS(2523), + [anon_sym_LT_EQ] = ACTIONS(2523), [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(2377), + [anon_sym_scoped] = ACTIONS(2525), [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(2379), - [sym_predefined_type] = ACTIONS(2381), - [anon_sym_unchecked] = ACTIONS(1067), + [anon_sym_var] = ACTIONS(2365), + [sym_predefined_type] = ACTIONS(2367), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1183), - [anon_sym_throw] = ACTIONS(1589), + [anon_sym_default] = ACTIONS(1179), + [anon_sym_throw] = ACTIONS(1527), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1591), - [sym_discard] = ACTIONS(2383), + [anon_sym_await] = ACTIONS(1529), + [sym_discard] = ACTIONS(2369), [anon_sym_DOT_DOT] = ACTIONS(123), - [anon_sym_not] = ACTIONS(2385), + [anon_sym_not] = ACTIONS(2527), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -104584,18 +104470,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(1193), - [anon_sym_typeof] = ACTIONS(1195), + [anon_sym_sizeof] = ACTIONS(1189), + [anon_sym_typeof] = ACTIONS(1191), [anon_sym___makeref] = ACTIONS(133), [anon_sym___reftype] = ACTIONS(135), [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(1203), - [anon_sym_SQUOTE] = ACTIONS(1205), - [sym_integer_literal] = ACTIONS(1203), - [sym_real_literal] = ACTIONS(1207), - [anon_sym_DQUOTE] = ACTIONS(1209), - [sym_verbatim_string_literal] = ACTIONS(1207), - [aux_sym_preproc_if_token1] = ACTIONS(1089), + [sym_null_literal] = ACTIONS(1199), + [anon_sym_SQUOTE] = ACTIONS(1201), + [sym_integer_literal] = ACTIONS(1199), + [sym_real_literal] = ACTIONS(1203), + [anon_sym_DQUOTE] = ACTIONS(1205), + [sym_verbatim_string_literal] = ACTIONS(1203), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -104606,104 +104492,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(1213), - [sym_interpolation_verbatim_start] = ACTIONS(1215), - [sym_interpolation_raw_start] = ACTIONS(1217), - [sym_raw_string_start] = ACTIONS(1219), + [sym_interpolation_regular_start] = ACTIONS(1209), + [sym_interpolation_verbatim_start] = ACTIONS(1211), + [sym_interpolation_raw_start] = ACTIONS(1213), + [sym_raw_string_start] = ACTIONS(1215), }, [387] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(2888), - [sym_alias_qualified_name] = STATE(2373), - [sym__simple_name] = STATE(2352), - [sym_qualified_name] = STATE(2373), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(2522), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(2378), - [sym__array_base_type] = STATE(7103), - [sym_nullable_type] = STATE(2379), - [sym_pointer_type] = STATE(2379), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(2379), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(2380), - [sym_pattern] = STATE(3424), - [sym_constant_pattern] = STATE(3486), - [sym_parenthesized_pattern] = STATE(3486), - [sym_var_pattern] = STATE(3486), - [sym_type_pattern] = STATE(3486), - [sym_list_pattern] = STATE(3486), - [sym_recursive_pattern] = STATE(3486), - [sym_positional_pattern_clause] = STATE(2584), - [sym_property_pattern_clause] = STATE(2739), - [sym_relational_pattern] = STATE(3486), - [sym_negated_pattern] = STATE(3486), - [sym_and_pattern] = STATE(3486), - [sym_or_pattern] = STATE(3486), - [sym_declaration_pattern] = STATE(3486), - [sym_expression] = STATE(5685), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3520), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3455), - [sym_postfix_unary_expression] = STATE(3469), - [sym_prefix_unary_expression] = STATE(3469), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6154), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3455), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3469), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3455), - [sym_member_access_expression] = STATE(2719), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3469), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7530), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(3455), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3455), - [sym_typeof_expression] = STATE(3455), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2719), - [sym_literal] = STATE(3455), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2186), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(2611), + [sym_alias_qualified_name] = STATE(2402), + [sym__simple_name] = STATE(2184), + [sym_qualified_name] = STATE(2402), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(2239), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(2373), + [sym__array_base_type] = STATE(7083), + [sym_nullable_type] = STATE(2375), + [sym_pointer_type] = STATE(2375), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(2375), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(2377), + [sym_pattern] = STATE(3445), + [sym_constant_pattern] = STATE(3429), + [sym_parenthesized_pattern] = STATE(3429), + [sym_var_pattern] = STATE(3429), + [sym_type_pattern] = STATE(3429), + [sym_list_pattern] = STATE(3429), + [sym_recursive_pattern] = STATE(3429), + [sym_positional_pattern_clause] = STATE(2275), + [sym_property_pattern_clause] = STATE(2315), + [sym_relational_pattern] = STATE(3429), + [sym_negated_pattern] = STATE(3429), + [sym_and_pattern] = STATE(3429), + [sym_or_pattern] = STATE(3429), + [sym_declaration_pattern] = STATE(3429), + [sym_expression] = STATE(5655), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3510), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3397), + [sym_postfix_unary_expression] = STATE(3404), + [sym_prefix_unary_expression] = STATE(3404), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6134), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3397), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3404), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3397), + [sym_member_access_expression] = STATE(2686), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3404), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7425), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(3397), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3397), + [sym_typeof_expression] = STATE(3397), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2686), + [sym_literal] = STATE(3397), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2202), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(387), [sym_preproc_endregion] = STATE(387), [sym_preproc_line] = STATE(387), @@ -104713,53 +104599,53 @@ 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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1049), - [anon_sym_LPAREN] = ACTIONS(2505), - [anon_sym_ref] = ACTIONS(2369), - [anon_sym_LBRACE] = ACTIONS(2371), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_LPAREN] = ACTIONS(2591), + [anon_sym_ref] = ACTIONS(2519), + [anon_sym_LBRACE] = ACTIONS(2343), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1061), - [anon_sym_LT] = ACTIONS(2507), - [anon_sym_GT] = ACTIONS(2507), + [anon_sym_new] = ACTIONS(1059), + [anon_sym_LT] = ACTIONS(2593), + [anon_sym_GT] = ACTIONS(2593), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1067), - [anon_sym_BANG] = ACTIONS(1903), - [anon_sym_TILDE] = ACTIONS(1903), - [anon_sym_PLUS_PLUS] = ACTIONS(1903), - [anon_sym_DASH_DASH] = ACTIONS(1903), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(1727), + [anon_sym_TILDE] = ACTIONS(1727), + [anon_sym_PLUS_PLUS] = ACTIONS(1727), + [anon_sym_DASH_DASH] = ACTIONS(1727), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1901), - [anon_sym_DASH] = ACTIONS(1901), + [anon_sym_PLUS] = ACTIONS(1725), + [anon_sym_DASH] = ACTIONS(1725), [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(1903), - [anon_sym_AMP] = ACTIONS(1903), - [anon_sym_GT_EQ] = ACTIONS(2509), - [anon_sym_LT_EQ] = ACTIONS(2509), + [anon_sym_CARET] = ACTIONS(1727), + [anon_sym_AMP] = ACTIONS(1727), + [anon_sym_GT_EQ] = ACTIONS(2595), + [anon_sym_LT_EQ] = ACTIONS(2595), [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(2377), + [anon_sym_scoped] = ACTIONS(2525), [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(2433), - [sym_predefined_type] = ACTIONS(2435), - [anon_sym_unchecked] = ACTIONS(1067), + [anon_sym_var] = ACTIONS(2351), + [sym_predefined_type] = ACTIONS(2353), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1589), + [anon_sym_throw] = ACTIONS(1527), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1591), - [sym_discard] = ACTIONS(1083), + [anon_sym_await] = ACTIONS(1529), + [sym_discard] = ACTIONS(1081), [anon_sym_DOT_DOT] = ACTIONS(123), - [anon_sym_not] = ACTIONS(2511), + [anon_sym_not] = ACTIONS(2597), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -104784,7 +104670,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(1089), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -104801,98 +104687,98 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [388] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(2421), - [sym_alias_qualified_name] = STATE(2373), - [sym__simple_name] = STATE(2191), - [sym_qualified_name] = STATE(2373), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(2242), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(2378), - [sym__array_base_type] = STATE(7103), - [sym_nullable_type] = STATE(2379), - [sym_pointer_type] = STATE(2379), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(2379), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(2380), - [sym_pattern] = STATE(4393), - [sym_constant_pattern] = STATE(3486), - [sym_parenthesized_pattern] = STATE(3486), - [sym_var_pattern] = STATE(3486), - [sym_type_pattern] = STATE(3486), - [sym_list_pattern] = STATE(3486), - [sym_recursive_pattern] = STATE(3486), - [sym_positional_pattern_clause] = STATE(2276), - [sym_property_pattern_clause] = STATE(2330), - [sym_relational_pattern] = STATE(3486), - [sym_negated_pattern] = STATE(3486), - [sym_and_pattern] = STATE(3486), - [sym_or_pattern] = STATE(3486), - [sym_declaration_pattern] = STATE(3486), - [sym_expression] = STATE(5679), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3520), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3455), - [sym_postfix_unary_expression] = STATE(3469), - [sym_prefix_unary_expression] = STATE(3469), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6154), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3455), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3469), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3455), - [sym_member_access_expression] = STATE(2719), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3469), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7530), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(3455), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3455), - [sym_typeof_expression] = STATE(3455), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2719), - [sym_literal] = STATE(3455), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2186), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(2817), + [sym_alias_qualified_name] = STATE(2821), + [sym__simple_name] = STATE(2258), + [sym_qualified_name] = STATE(2821), + [sym_generic_name] = STATE(2262), + [sym_type] = STATE(2401), + [sym_implicit_type] = STATE(2701), + [sym_array_type] = STATE(2822), + [sym__array_base_type] = STATE(7081), + [sym_nullable_type] = STATE(2823), + [sym_pointer_type] = STATE(2823), + [sym__pointer_base_type] = STATE(7400), + [sym_function_pointer_type] = STATE(2823), + [sym_ref_type] = STATE(2701), + [sym_scoped_type] = STATE(2701), + [sym_tuple_type] = STATE(2825), + [sym_pattern] = STATE(5005), + [sym_constant_pattern] = STATE(4727), + [sym_parenthesized_pattern] = STATE(4727), + [sym_var_pattern] = STATE(4727), + [sym_type_pattern] = STATE(4727), + [sym_list_pattern] = STATE(4727), + [sym_recursive_pattern] = STATE(4727), + [sym_positional_pattern_clause] = STATE(2506), + [sym_property_pattern_clause] = STATE(2549), + [sym_relational_pattern] = STATE(4727), + [sym_negated_pattern] = STATE(4727), + [sym_and_pattern] = STATE(4727), + [sym_or_pattern] = STATE(4727), + [sym_declaration_pattern] = STATE(4727), + [sym_expression] = STATE(5687), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3510), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(4509), + [sym_postfix_unary_expression] = STATE(4510), + [sym_prefix_unary_expression] = STATE(4510), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6134), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(4509), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(4510), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(4509), + [sym_member_access_expression] = STATE(3207), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(4510), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7425), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(4509), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(4509), + [sym_typeof_expression] = STATE(4509), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(3207), + [sym_literal] = STATE(4509), + [sym_character_literal] = STATE(4575), + [sym_string_literal] = STATE(4575), + [sym_raw_string_literal] = STATE(4575), + [sym_boolean_literal] = STATE(4575), + [sym_identifier] = STATE(2219), + [sym__reserved_identifier] = STATE(2229), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(388), [sym_preproc_endregion] = STATE(388), [sym_preproc_line] = STATE(388), @@ -104902,78 +104788,78 @@ 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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), - [sym__identifier_token] = ACTIONS(25), - [anon_sym_alias] = ACTIONS(29), - [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1049), - [anon_sym_LPAREN] = ACTIONS(2431), - [anon_sym_ref] = ACTIONS(2369), - [anon_sym_LBRACE] = ACTIONS(2371), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), - [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1061), - [anon_sym_LT] = ACTIONS(1063), - [anon_sym_GT] = ACTIONS(1063), - [anon_sym_where] = ACTIONS(29), - [anon_sym_notnull] = ACTIONS(29), - [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1067), - [anon_sym_BANG] = ACTIONS(1069), - [anon_sym_TILDE] = ACTIONS(1069), - [anon_sym_PLUS_PLUS] = ACTIONS(1069), - [anon_sym_DASH_DASH] = ACTIONS(1069), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1071), - [anon_sym_DASH] = ACTIONS(1071), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), + [sym__identifier_token] = ACTIONS(1385), + [anon_sym_alias] = ACTIONS(1387), + [anon_sym_global] = ACTIONS(1387), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(2401), + [anon_sym_LPAREN] = ACTIONS(2403), + [anon_sym_ref] = ACTIONS(2405), + [anon_sym_LBRACE] = ACTIONS(2407), + [anon_sym_delegate] = ACTIONS(2409), + [anon_sym_async] = ACTIONS(1045), + [anon_sym_file] = ACTIONS(1387), + [anon_sym_new] = ACTIONS(1059), + [anon_sym_LT] = ACTIONS(2411), + [anon_sym_GT] = ACTIONS(2411), + [anon_sym_where] = ACTIONS(1387), + [anon_sym_notnull] = ACTIONS(1387), + [anon_sym_unmanaged] = ACTIONS(1387), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(1469), + [anon_sym_TILDE] = ACTIONS(1469), + [anon_sym_PLUS_PLUS] = ACTIONS(1469), + [anon_sym_DASH_DASH] = ACTIONS(1469), + [anon_sym_true] = ACTIONS(1407), + [anon_sym_false] = ACTIONS(1407), + [anon_sym_PLUS] = ACTIONS(1467), + [anon_sym_DASH] = ACTIONS(1467), [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(1069), - [anon_sym_AMP] = ACTIONS(1069), - [anon_sym_GT_EQ] = ACTIONS(1073), - [anon_sym_LT_EQ] = ACTIONS(1073), + [anon_sym_CARET] = ACTIONS(1469), + [anon_sym_AMP] = ACTIONS(1469), + [anon_sym_GT_EQ] = ACTIONS(2413), + [anon_sym_LT_EQ] = ACTIONS(2413), [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(2377), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(2433), - [sym_predefined_type] = ACTIONS(2435), - [anon_sym_unchecked] = ACTIONS(1067), - [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1589), - [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1591), - [sym_discard] = ACTIONS(1083), + [anon_sym_scoped] = ACTIONS(2415), + [anon_sym_base] = ACTIONS(87), + [anon_sym_var] = ACTIONS(2417), + [sym_predefined_type] = ACTIONS(2419), + [anon_sym_unchecked] = ACTIONS(1065), + [anon_sym_yield] = ACTIONS(1387), + [anon_sym_default] = ACTIONS(1421), + [anon_sym_throw] = ACTIONS(1527), + [anon_sym_when] = ACTIONS(1387), + [anon_sym_await] = ACTIONS(1529), + [sym_discard] = ACTIONS(2421), [anon_sym_DOT_DOT] = ACTIONS(123), - [anon_sym_not] = ACTIONS(2437), - [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(2423), + [anon_sym_from] = ACTIONS(1429), + [anon_sym_into] = ACTIONS(1387), + [anon_sym_join] = ACTIONS(1387), + [anon_sym_on] = ACTIONS(1387), + [anon_sym_equals] = ACTIONS(1387), + [anon_sym_let] = ACTIONS(1387), + [anon_sym_orderby] = ACTIONS(1387), + [anon_sym_ascending] = ACTIONS(1387), + [anon_sym_descending] = ACTIONS(1387), + [anon_sym_group] = ACTIONS(1387), + [anon_sym_by] = ACTIONS(1387), + [anon_sym_select] = ACTIONS(1387), [anon_sym_stackalloc] = ACTIONS(127), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), + [anon_sym_sizeof] = ACTIONS(1433), + [anon_sym_typeof] = ACTIONS(1435), [anon_sym___makeref] = ACTIONS(133), [anon_sym___reftype] = ACTIONS(135), [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1089), + [sym_null_literal] = ACTIONS(1443), + [anon_sym_SQUOTE] = ACTIONS(1445), + [sym_integer_literal] = ACTIONS(1443), + [sym_real_literal] = ACTIONS(1447), + [anon_sym_DQUOTE] = ACTIONS(1449), + [sym_verbatim_string_literal] = ACTIONS(1447), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -104984,104 +104870,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(1453), + [sym_interpolation_verbatim_start] = ACTIONS(1455), + [sym_interpolation_raw_start] = ACTIONS(1457), + [sym_raw_string_start] = ACTIONS(1459), }, [389] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(2889), - [sym_alias_qualified_name] = STATE(2373), - [sym__simple_name] = STATE(2350), - [sym_qualified_name] = STATE(2373), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(2492), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(2378), - [sym__array_base_type] = STATE(7103), - [sym_nullable_type] = STATE(2379), - [sym_pointer_type] = STATE(2379), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(2379), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(2380), - [sym_pattern] = STATE(3250), - [sym_constant_pattern] = STATE(3295), - [sym_parenthesized_pattern] = STATE(3295), - [sym_var_pattern] = STATE(3295), - [sym_type_pattern] = STATE(3295), - [sym_list_pattern] = STATE(3295), - [sym_recursive_pattern] = STATE(3295), - [sym_positional_pattern_clause] = STATE(2592), - [sym_property_pattern_clause] = STATE(2792), - [sym_relational_pattern] = STATE(3295), - [sym_negated_pattern] = STATE(3295), - [sym_and_pattern] = STATE(3295), - [sym_or_pattern] = STATE(3295), - [sym_declaration_pattern] = STATE(3295), - [sym_expression] = STATE(5697), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3520), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3310), - [sym_postfix_unary_expression] = STATE(3312), - [sym_prefix_unary_expression] = STATE(3312), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6154), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3310), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3312), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3310), - [sym_member_access_expression] = STATE(2617), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3312), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7530), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(3310), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3310), - [sym_typeof_expression] = STATE(3310), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2617), - [sym_literal] = STATE(3310), - [sym_character_literal] = STATE(3278), - [sym_string_literal] = STATE(3278), - [sym_raw_string_literal] = STATE(3278), - [sym_boolean_literal] = STATE(3278), - [sym_identifier] = STATE(2186), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(2883), + [sym_alias_qualified_name] = STATE(2402), + [sym__simple_name] = STATE(2323), + [sym_qualified_name] = STATE(2402), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(2496), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(2373), + [sym__array_base_type] = STATE(7083), + [sym_nullable_type] = STATE(2375), + [sym_pointer_type] = STATE(2375), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(2375), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(2377), + [sym_pattern] = STATE(4121), + [sym_constant_pattern] = STATE(4146), + [sym_parenthesized_pattern] = STATE(4146), + [sym_var_pattern] = STATE(4146), + [sym_type_pattern] = STATE(4146), + [sym_list_pattern] = STATE(4146), + [sym_recursive_pattern] = STATE(4146), + [sym_positional_pattern_clause] = STATE(2566), + [sym_property_pattern_clause] = STATE(2714), + [sym_relational_pattern] = STATE(4146), + [sym_negated_pattern] = STATE(4146), + [sym_and_pattern] = STATE(4146), + [sym_or_pattern] = STATE(4146), + [sym_declaration_pattern] = STATE(4146), + [sym_expression] = STATE(5699), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3510), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(4128), + [sym_postfix_unary_expression] = STATE(4129), + [sym_prefix_unary_expression] = STATE(4129), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6134), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(4128), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(4129), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(4128), + [sym_member_access_expression] = STATE(3066), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(4129), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7425), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(4128), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(4128), + [sym_typeof_expression] = STATE(4128), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(3066), + [sym_literal] = STATE(4128), + [sym_character_literal] = STATE(3037), + [sym_string_literal] = STATE(3037), + [sym_raw_string_literal] = STATE(3037), + [sym_boolean_literal] = STATE(3037), + [sym_identifier] = STATE(2178), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(389), [sym_preproc_endregion] = STATE(389), [sym_preproc_line] = STATE(389), @@ -105091,53 +104977,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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(2365), - [anon_sym_LPAREN] = ACTIONS(2491), - [anon_sym_ref] = ACTIONS(2369), - [anon_sym_LBRACE] = ACTIONS(2371), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(2449), + [anon_sym_LPAREN] = ACTIONS(2599), + [anon_sym_ref] = ACTIONS(2341), + [anon_sym_LBRACE] = ACTIONS(2343), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1061), - [anon_sym_LT] = ACTIONS(2493), - [anon_sym_GT] = ACTIONS(2493), + [anon_sym_new] = ACTIONS(1059), + [anon_sym_LT] = ACTIONS(2601), + [anon_sym_GT] = ACTIONS(2601), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1067), - [anon_sym_BANG] = ACTIONS(1831), - [anon_sym_TILDE] = ACTIONS(1831), - [anon_sym_PLUS_PLUS] = ACTIONS(1831), - [anon_sym_DASH_DASH] = ACTIONS(1831), - [anon_sym_true] = ACTIONS(1173), - [anon_sym_false] = ACTIONS(1173), - [anon_sym_PLUS] = ACTIONS(1829), - [anon_sym_DASH] = ACTIONS(1829), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(1939), + [anon_sym_TILDE] = ACTIONS(1939), + [anon_sym_PLUS_PLUS] = ACTIONS(1939), + [anon_sym_DASH_DASH] = ACTIONS(1939), + [anon_sym_true] = ACTIONS(1257), + [anon_sym_false] = ACTIONS(1257), + [anon_sym_PLUS] = ACTIONS(1937), + [anon_sym_DASH] = ACTIONS(1937), [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(1831), - [anon_sym_AMP] = ACTIONS(1831), - [anon_sym_GT_EQ] = ACTIONS(2495), - [anon_sym_LT_EQ] = ACTIONS(2495), + [anon_sym_CARET] = ACTIONS(1939), + [anon_sym_AMP] = ACTIONS(1939), + [anon_sym_GT_EQ] = ACTIONS(2603), + [anon_sym_LT_EQ] = ACTIONS(2603), [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(2377), + [anon_sym_scoped] = ACTIONS(2349), [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(2379), - [sym_predefined_type] = ACTIONS(2381), - [anon_sym_unchecked] = ACTIONS(1067), + [anon_sym_var] = ACTIONS(2605), + [sym_predefined_type] = ACTIONS(2459), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1183), - [anon_sym_throw] = ACTIONS(1589), + [anon_sym_default] = ACTIONS(1267), + [anon_sym_throw] = ACTIONS(1527), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1591), - [sym_discard] = ACTIONS(2383), + [anon_sym_await] = ACTIONS(1529), + [sym_discard] = ACTIONS(2461), [anon_sym_DOT_DOT] = ACTIONS(123), - [anon_sym_not] = ACTIONS(2497), + [anon_sym_not] = ACTIONS(2607), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -105151,18 +105037,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(1193), - [anon_sym_typeof] = ACTIONS(1195), + [anon_sym_sizeof] = ACTIONS(1277), + [anon_sym_typeof] = ACTIONS(1279), [anon_sym___makeref] = ACTIONS(133), [anon_sym___reftype] = ACTIONS(135), [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(1203), - [anon_sym_SQUOTE] = ACTIONS(1205), - [sym_integer_literal] = ACTIONS(1203), - [sym_real_literal] = ACTIONS(1207), - [anon_sym_DQUOTE] = ACTIONS(1209), - [sym_verbatim_string_literal] = ACTIONS(1207), - [aux_sym_preproc_if_token1] = ACTIONS(1089), + [sym_null_literal] = ACTIONS(1287), + [anon_sym_SQUOTE] = ACTIONS(1289), + [sym_integer_literal] = ACTIONS(1287), + [sym_real_literal] = ACTIONS(1291), + [anon_sym_DQUOTE] = ACTIONS(1293), + [sym_verbatim_string_literal] = ACTIONS(1291), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -105173,104 +105059,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(1213), - [sym_interpolation_verbatim_start] = ACTIONS(1215), - [sym_interpolation_raw_start] = ACTIONS(1217), - [sym_raw_string_start] = ACTIONS(1219), + [sym_interpolation_regular_start] = ACTIONS(1297), + [sym_interpolation_verbatim_start] = ACTIONS(1299), + [sym_interpolation_raw_start] = ACTIONS(1301), + [sym_raw_string_start] = ACTIONS(1303), }, [390] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(2890), - [sym_alias_qualified_name] = STATE(2373), - [sym__simple_name] = STATE(2338), - [sym_qualified_name] = STATE(2373), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(2506), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(2378), - [sym__array_base_type] = STATE(7103), - [sym_nullable_type] = STATE(2379), - [sym_pointer_type] = STATE(2379), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(2379), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(2380), - [sym_pattern] = STATE(3424), - [sym_constant_pattern] = STATE(3486), - [sym_parenthesized_pattern] = STATE(3486), - [sym_var_pattern] = STATE(3486), - [sym_type_pattern] = STATE(3486), - [sym_list_pattern] = STATE(3486), - [sym_recursive_pattern] = STATE(3486), - [sym_positional_pattern_clause] = STATE(2574), - [sym_property_pattern_clause] = STATE(2748), - [sym_relational_pattern] = STATE(3486), - [sym_negated_pattern] = STATE(3486), - [sym_and_pattern] = STATE(3486), - [sym_or_pattern] = STATE(3486), - [sym_declaration_pattern] = STATE(3486), - [sym_expression] = STATE(5710), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3520), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3455), - [sym_postfix_unary_expression] = STATE(3469), - [sym_prefix_unary_expression] = STATE(3469), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6154), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3455), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3469), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3455), - [sym_member_access_expression] = STATE(2719), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3469), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7530), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(3455), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3455), - [sym_typeof_expression] = STATE(3455), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2719), - [sym_literal] = STATE(3455), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2186), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(2428), + [sym_alias_qualified_name] = STATE(2402), + [sym__simple_name] = STATE(2184), + [sym_qualified_name] = STATE(2402), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(2461), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(2373), + [sym__array_base_type] = STATE(7083), + [sym_nullable_type] = STATE(2375), + [sym_pointer_type] = STATE(2375), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(2375), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(2377), + [sym_pattern] = STATE(5374), + [sym_constant_pattern] = STATE(3429), + [sym_parenthesized_pattern] = STATE(3429), + [sym_var_pattern] = STATE(3429), + [sym_type_pattern] = STATE(3429), + [sym_list_pattern] = STATE(3429), + [sym_recursive_pattern] = STATE(3429), + [sym_positional_pattern_clause] = STATE(2275), + [sym_property_pattern_clause] = STATE(2315), + [sym_relational_pattern] = STATE(3429), + [sym_negated_pattern] = STATE(3429), + [sym_and_pattern] = STATE(3429), + [sym_or_pattern] = STATE(3429), + [sym_declaration_pattern] = STATE(3429), + [sym_expression] = STATE(5653), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3510), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3397), + [sym_postfix_unary_expression] = STATE(3404), + [sym_prefix_unary_expression] = STATE(3404), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6134), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3397), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3404), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3397), + [sym_member_access_expression] = STATE(2686), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3404), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7425), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(3397), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3397), + [sym_typeof_expression] = STATE(3397), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2686), + [sym_literal] = STATE(3397), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2260), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(390), [sym_preproc_endregion] = STATE(390), [sym_preproc_line] = STATE(390), @@ -105280,53 +105166,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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1049), - [anon_sym_LPAREN] = ACTIONS(2537), - [anon_sym_ref] = ACTIONS(2369), - [anon_sym_LBRACE] = ACTIONS(2371), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_LPAREN] = ACTIONS(2553), + [anon_sym_ref] = ACTIONS(2499), + [anon_sym_LBRACE] = ACTIONS(2343), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1061), - [anon_sym_LT] = ACTIONS(2539), - [anon_sym_GT] = ACTIONS(2539), + [anon_sym_new] = ACTIONS(1059), + [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(1067), - [anon_sym_BANG] = ACTIONS(1885), - [anon_sym_TILDE] = ACTIONS(1885), - [anon_sym_PLUS_PLUS] = ACTIONS(1885), - [anon_sym_DASH_DASH] = ACTIONS(1885), + [anon_sym_checked] = ACTIONS(1065), + [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(1883), - [anon_sym_DASH] = ACTIONS(1883), + [anon_sym_PLUS] = ACTIONS(1617), + [anon_sym_DASH] = ACTIONS(1617), [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(1885), - [anon_sym_AMP] = ACTIONS(1885), - [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(2557), + [anon_sym_LT_EQ] = ACTIONS(2557), [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(2377), + [anon_sym_scoped] = ACTIONS(2349), [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(2433), - [sym_predefined_type] = ACTIONS(2435), - [anon_sym_unchecked] = ACTIONS(1067), + [anon_sym_var] = ACTIONS(2501), + [sym_predefined_type] = ACTIONS(2353), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1589), + [anon_sym_throw] = ACTIONS(1527), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1591), - [sym_discard] = ACTIONS(1083), + [anon_sym_await] = ACTIONS(1529), + [sym_discard] = ACTIONS(1081), [anon_sym_DOT_DOT] = ACTIONS(123), - [anon_sym_not] = ACTIONS(2543), + [anon_sym_not] = ACTIONS(2559), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -105351,7 +105237,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(1089), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -105368,98 +105254,98 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [391] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(2421), - [sym_alias_qualified_name] = STATE(2373), - [sym__simple_name] = STATE(2191), - [sym_qualified_name] = STATE(2373), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(2461), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(2378), - [sym__array_base_type] = STATE(7103), - [sym_nullable_type] = STATE(2379), - [sym_pointer_type] = STATE(2379), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(2379), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(2380), - [sym_pattern] = STATE(3424), - [sym_constant_pattern] = STATE(3486), - [sym_parenthesized_pattern] = STATE(3486), - [sym_var_pattern] = STATE(3486), - [sym_type_pattern] = STATE(3486), - [sym_list_pattern] = STATE(3486), - [sym_recursive_pattern] = STATE(3486), - [sym_positional_pattern_clause] = STATE(2276), - [sym_property_pattern_clause] = STATE(2330), - [sym_relational_pattern] = STATE(3486), - [sym_negated_pattern] = STATE(3486), - [sym_and_pattern] = STATE(3486), - [sym_or_pattern] = STATE(3486), - [sym_declaration_pattern] = STATE(3486), - [sym_expression] = STATE(5692), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3520), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3455), - [sym_postfix_unary_expression] = STATE(3469), - [sym_prefix_unary_expression] = STATE(3469), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6154), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3455), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3469), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3455), - [sym_member_access_expression] = STATE(2719), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3469), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7530), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(3455), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3455), - [sym_typeof_expression] = STATE(3455), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2719), - [sym_literal] = STATE(3455), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2258), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(2817), + [sym_alias_qualified_name] = STATE(2821), + [sym__simple_name] = STATE(2258), + [sym_qualified_name] = STATE(2821), + [sym_generic_name] = STATE(2262), + [sym_type] = STATE(2401), + [sym_implicit_type] = STATE(2701), + [sym_array_type] = STATE(2822), + [sym__array_base_type] = STATE(7081), + [sym_nullable_type] = STATE(2823), + [sym_pointer_type] = STATE(2823), + [sym__pointer_base_type] = STATE(7400), + [sym_function_pointer_type] = STATE(2823), + [sym_ref_type] = STATE(2701), + [sym_scoped_type] = STATE(2701), + [sym_tuple_type] = STATE(2825), + [sym_pattern] = STATE(4813), + [sym_constant_pattern] = STATE(4727), + [sym_parenthesized_pattern] = STATE(4727), + [sym_var_pattern] = STATE(4727), + [sym_type_pattern] = STATE(4727), + [sym_list_pattern] = STATE(4727), + [sym_recursive_pattern] = STATE(4727), + [sym_positional_pattern_clause] = STATE(2506), + [sym_property_pattern_clause] = STATE(2549), + [sym_relational_pattern] = STATE(4727), + [sym_negated_pattern] = STATE(4727), + [sym_and_pattern] = STATE(4727), + [sym_or_pattern] = STATE(4727), + [sym_declaration_pattern] = STATE(4727), + [sym_expression] = STATE(5687), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3510), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(4509), + [sym_postfix_unary_expression] = STATE(4510), + [sym_prefix_unary_expression] = STATE(4510), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6134), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(4509), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(4510), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(4509), + [sym_member_access_expression] = STATE(3207), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(4510), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7425), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(4509), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(4509), + [sym_typeof_expression] = STATE(4509), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(3207), + [sym_literal] = STATE(4509), + [sym_character_literal] = STATE(4575), + [sym_string_literal] = STATE(4575), + [sym_raw_string_literal] = STATE(4575), + [sym_boolean_literal] = STATE(4575), + [sym_identifier] = STATE(2219), + [sym__reserved_identifier] = STATE(2229), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(391), [sym_preproc_endregion] = STATE(391), [sym_preproc_line] = STATE(391), @@ -105469,78 +105355,78 @@ 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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), - [sym__identifier_token] = ACTIONS(25), - [anon_sym_alias] = ACTIONS(29), - [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1049), - [anon_sym_LPAREN] = ACTIONS(2587), - [anon_sym_ref] = ACTIONS(2449), - [anon_sym_LBRACE] = ACTIONS(2371), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), - [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1061), - [anon_sym_LT] = ACTIONS(2589), - [anon_sym_GT] = ACTIONS(2589), - [anon_sym_where] = ACTIONS(29), - [anon_sym_notnull] = ACTIONS(29), - [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1067), - [anon_sym_BANG] = ACTIONS(1549), - [anon_sym_TILDE] = ACTIONS(1549), - [anon_sym_PLUS_PLUS] = ACTIONS(1549), - [anon_sym_DASH_DASH] = ACTIONS(1549), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1547), - [anon_sym_DASH] = ACTIONS(1547), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), + [sym__identifier_token] = ACTIONS(1385), + [anon_sym_alias] = ACTIONS(1387), + [anon_sym_global] = ACTIONS(1387), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(2401), + [anon_sym_LPAREN] = ACTIONS(2403), + [anon_sym_ref] = ACTIONS(2405), + [anon_sym_LBRACE] = ACTIONS(2407), + [anon_sym_delegate] = ACTIONS(2409), + [anon_sym_async] = ACTIONS(1045), + [anon_sym_file] = ACTIONS(1387), + [anon_sym_new] = ACTIONS(1059), + [anon_sym_LT] = ACTIONS(2411), + [anon_sym_GT] = ACTIONS(2411), + [anon_sym_where] = ACTIONS(1387), + [anon_sym_notnull] = ACTIONS(1387), + [anon_sym_unmanaged] = ACTIONS(1387), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(1469), + [anon_sym_TILDE] = ACTIONS(1469), + [anon_sym_PLUS_PLUS] = ACTIONS(1469), + [anon_sym_DASH_DASH] = ACTIONS(1469), + [anon_sym_true] = ACTIONS(1407), + [anon_sym_false] = ACTIONS(1407), + [anon_sym_PLUS] = ACTIONS(1467), + [anon_sym_DASH] = ACTIONS(1467), [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(1549), - [anon_sym_AMP] = ACTIONS(1549), - [anon_sym_GT_EQ] = ACTIONS(2591), - [anon_sym_LT_EQ] = ACTIONS(2591), + [anon_sym_CARET] = ACTIONS(1469), + [anon_sym_AMP] = ACTIONS(1469), + [anon_sym_GT_EQ] = ACTIONS(2413), + [anon_sym_LT_EQ] = ACTIONS(2413), [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(2377), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(2501), - [sym_predefined_type] = ACTIONS(2435), - [anon_sym_unchecked] = ACTIONS(1067), - [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1589), - [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1591), - [sym_discard] = ACTIONS(1083), + [anon_sym_scoped] = ACTIONS(2415), + [anon_sym_base] = ACTIONS(87), + [anon_sym_var] = ACTIONS(2417), + [sym_predefined_type] = ACTIONS(2419), + [anon_sym_unchecked] = ACTIONS(1065), + [anon_sym_yield] = ACTIONS(1387), + [anon_sym_default] = ACTIONS(1421), + [anon_sym_throw] = ACTIONS(1527), + [anon_sym_when] = ACTIONS(1387), + [anon_sym_await] = ACTIONS(1529), + [sym_discard] = ACTIONS(2421), [anon_sym_DOT_DOT] = ACTIONS(123), - [anon_sym_not] = ACTIONS(2593), - [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(2423), + [anon_sym_from] = ACTIONS(1429), + [anon_sym_into] = ACTIONS(1387), + [anon_sym_join] = ACTIONS(1387), + [anon_sym_on] = ACTIONS(1387), + [anon_sym_equals] = ACTIONS(1387), + [anon_sym_let] = ACTIONS(1387), + [anon_sym_orderby] = ACTIONS(1387), + [anon_sym_ascending] = ACTIONS(1387), + [anon_sym_descending] = ACTIONS(1387), + [anon_sym_group] = ACTIONS(1387), + [anon_sym_by] = ACTIONS(1387), + [anon_sym_select] = ACTIONS(1387), [anon_sym_stackalloc] = ACTIONS(127), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), + [anon_sym_sizeof] = ACTIONS(1433), + [anon_sym_typeof] = ACTIONS(1435), [anon_sym___makeref] = ACTIONS(133), [anon_sym___reftype] = ACTIONS(135), [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1089), + [sym_null_literal] = ACTIONS(1443), + [anon_sym_SQUOTE] = ACTIONS(1445), + [sym_integer_literal] = ACTIONS(1443), + [sym_real_literal] = ACTIONS(1447), + [anon_sym_DQUOTE] = ACTIONS(1449), + [sym_verbatim_string_literal] = ACTIONS(1447), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -105551,104 +105437,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(1453), + [sym_interpolation_verbatim_start] = ACTIONS(1455), + [sym_interpolation_raw_start] = ACTIONS(1457), + [sym_raw_string_start] = ACTIONS(1459), }, [392] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(2621), - [sym_alias_qualified_name] = STATE(2373), - [sym__simple_name] = STATE(2191), - [sym_qualified_name] = STATE(2373), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(2242), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(2378), - [sym__array_base_type] = STATE(7103), - [sym_nullable_type] = STATE(2379), - [sym_pointer_type] = STATE(2379), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(2379), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(2380), - [sym_pattern] = STATE(5471), - [sym_constant_pattern] = STATE(3486), - [sym_parenthesized_pattern] = STATE(3486), - [sym_var_pattern] = STATE(3486), - [sym_type_pattern] = STATE(3486), - [sym_list_pattern] = STATE(3486), - [sym_recursive_pattern] = STATE(3486), - [sym_positional_pattern_clause] = STATE(2276), - [sym_property_pattern_clause] = STATE(2330), - [sym_relational_pattern] = STATE(3486), - [sym_negated_pattern] = STATE(3486), - [sym_and_pattern] = STATE(3486), - [sym_or_pattern] = STATE(3486), - [sym_declaration_pattern] = STATE(3486), - [sym_expression] = STATE(5701), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3520), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3455), - [sym_postfix_unary_expression] = STATE(3469), - [sym_prefix_unary_expression] = STATE(3469), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6154), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3455), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3469), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3455), - [sym_member_access_expression] = STATE(2719), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3469), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7530), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(3455), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3455), - [sym_typeof_expression] = STATE(3455), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2719), - [sym_literal] = STATE(3455), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2214), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(2862), + [sym_alias_qualified_name] = STATE(2402), + [sym__simple_name] = STATE(2340), + [sym_qualified_name] = STATE(2402), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(2501), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(2373), + [sym__array_base_type] = STATE(7083), + [sym_nullable_type] = STATE(2375), + [sym_pointer_type] = STATE(2375), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(2375), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(2377), + [sym_pattern] = STATE(3247), + [sym_constant_pattern] = STATE(3311), + [sym_parenthesized_pattern] = STATE(3311), + [sym_var_pattern] = STATE(3311), + [sym_type_pattern] = STATE(3311), + [sym_list_pattern] = STATE(3311), + [sym_recursive_pattern] = STATE(3311), + [sym_positional_pattern_clause] = STATE(2587), + [sym_property_pattern_clause] = STATE(2757), + [sym_relational_pattern] = STATE(3311), + [sym_negated_pattern] = STATE(3311), + [sym_and_pattern] = STATE(3311), + [sym_or_pattern] = STATE(3311), + [sym_declaration_pattern] = STATE(3311), + [sym_expression] = STATE(5679), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3510), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3275), + [sym_postfix_unary_expression] = STATE(3276), + [sym_prefix_unary_expression] = STATE(3276), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6134), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3275), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3276), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3275), + [sym_member_access_expression] = STATE(2608), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3276), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7425), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(3275), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3275), + [sym_typeof_expression] = STATE(3275), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2608), + [sym_literal] = STATE(3275), + [sym_character_literal] = STATE(3272), + [sym_string_literal] = STATE(3272), + [sym_raw_string_literal] = STATE(3272), + [sym_boolean_literal] = STATE(3272), + [sym_identifier] = STATE(2178), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(392), [sym_preproc_endregion] = STATE(392), [sym_preproc_line] = STATE(392), @@ -105658,53 +105544,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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1049), - [anon_sym_LPAREN] = ACTIONS(2579), - [anon_sym_ref] = ACTIONS(2389), - [anon_sym_LBRACE] = ACTIONS(2371), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(2357), + [anon_sym_LPAREN] = ACTIONS(2393), + [anon_sym_ref] = ACTIONS(2341), + [anon_sym_LBRACE] = ACTIONS(2343), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1061), - [anon_sym_LT] = ACTIONS(2581), - [anon_sym_GT] = ACTIONS(2581), + [anon_sym_new] = ACTIONS(1059), + [anon_sym_LT] = ACTIONS(2395), + [anon_sym_GT] = ACTIONS(2395), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1067), - [anon_sym_BANG] = ACTIONS(1795), - [anon_sym_TILDE] = ACTIONS(1795), - [anon_sym_PLUS_PLUS] = ACTIONS(1795), - [anon_sym_DASH_DASH] = ACTIONS(1795), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1793), - [anon_sym_DASH] = ACTIONS(1793), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(1921), + [anon_sym_TILDE] = ACTIONS(1921), + [anon_sym_PLUS_PLUS] = ACTIONS(1921), + [anon_sym_DASH_DASH] = ACTIONS(1921), + [anon_sym_true] = ACTIONS(1169), + [anon_sym_false] = ACTIONS(1169), + [anon_sym_PLUS] = ACTIONS(1919), + [anon_sym_DASH] = ACTIONS(1919), [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(1795), - [anon_sym_AMP] = ACTIONS(1795), - [anon_sym_GT_EQ] = ACTIONS(2583), - [anon_sym_LT_EQ] = ACTIONS(2583), + [anon_sym_CARET] = ACTIONS(1921), + [anon_sym_AMP] = ACTIONS(1921), + [anon_sym_GT_EQ] = ACTIONS(2397), + [anon_sym_LT_EQ] = ACTIONS(2397), [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(2395), + [anon_sym_scoped] = ACTIONS(2349), [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(2433), - [sym_predefined_type] = ACTIONS(2435), - [anon_sym_unchecked] = ACTIONS(1067), + [anon_sym_var] = ACTIONS(2365), + [sym_predefined_type] = ACTIONS(2367), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1589), + [anon_sym_default] = ACTIONS(1179), + [anon_sym_throw] = ACTIONS(1527), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1591), - [sym_discard] = ACTIONS(1083), + [anon_sym_await] = ACTIONS(1529), + [sym_discard] = ACTIONS(2369), [anon_sym_DOT_DOT] = ACTIONS(123), - [anon_sym_not] = ACTIONS(2585), + [anon_sym_not] = ACTIONS(2399), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -105718,18 +105604,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(129), - [anon_sym_typeof] = ACTIONS(131), + [anon_sym_sizeof] = ACTIONS(1189), + [anon_sym_typeof] = ACTIONS(1191), [anon_sym___makeref] = ACTIONS(133), [anon_sym___reftype] = ACTIONS(135), [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1089), + [sym_null_literal] = ACTIONS(1199), + [anon_sym_SQUOTE] = ACTIONS(1201), + [sym_integer_literal] = ACTIONS(1199), + [sym_real_literal] = ACTIONS(1203), + [anon_sym_DQUOTE] = ACTIONS(1205), + [sym_verbatim_string_literal] = ACTIONS(1203), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -105740,104 +105626,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(1209), + [sym_interpolation_verbatim_start] = ACTIONS(1211), + [sym_interpolation_raw_start] = ACTIONS(1213), + [sym_raw_string_start] = ACTIONS(1215), }, [393] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(2421), - [sym_alias_qualified_name] = STATE(2373), - [sym__simple_name] = STATE(2191), - [sym_qualified_name] = STATE(2373), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(2249), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(2378), - [sym__array_base_type] = STATE(7103), - [sym_nullable_type] = STATE(2379), - [sym_pointer_type] = STATE(2379), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(2379), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(2380), - [sym_pattern] = STATE(4391), - [sym_constant_pattern] = STATE(3486), - [sym_parenthesized_pattern] = STATE(3486), - [sym_var_pattern] = STATE(3486), - [sym_type_pattern] = STATE(3486), - [sym_list_pattern] = STATE(3486), - [sym_recursive_pattern] = STATE(3486), - [sym_positional_pattern_clause] = STATE(2276), - [sym_property_pattern_clause] = STATE(2330), - [sym_relational_pattern] = STATE(3486), - [sym_negated_pattern] = STATE(3486), - [sym_and_pattern] = STATE(3486), - [sym_or_pattern] = STATE(3486), - [sym_declaration_pattern] = STATE(3486), - [sym_expression] = STATE(5679), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3520), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3455), - [sym_postfix_unary_expression] = STATE(3469), - [sym_prefix_unary_expression] = STATE(3469), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6154), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3455), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3469), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3455), - [sym_member_access_expression] = STATE(2719), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3469), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7530), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(3455), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3455), - [sym_typeof_expression] = STATE(3455), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2719), - [sym_literal] = STATE(3455), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2186), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(2877), + [sym_alias_qualified_name] = STATE(2402), + [sym__simple_name] = STATE(2308), + [sym_qualified_name] = STATE(2402), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(2488), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(2373), + [sym__array_base_type] = STATE(7083), + [sym_nullable_type] = STATE(2375), + [sym_pointer_type] = STATE(2375), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(2375), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(2377), + [sym_pattern] = STATE(3445), + [sym_constant_pattern] = STATE(3429), + [sym_parenthesized_pattern] = STATE(3429), + [sym_var_pattern] = STATE(3429), + [sym_type_pattern] = STATE(3429), + [sym_list_pattern] = STATE(3429), + [sym_recursive_pattern] = STATE(3429), + [sym_positional_pattern_clause] = STATE(2591), + [sym_property_pattern_clause] = STATE(2675), + [sym_relational_pattern] = STATE(3429), + [sym_negated_pattern] = STATE(3429), + [sym_and_pattern] = STATE(3429), + [sym_or_pattern] = STATE(3429), + [sym_declaration_pattern] = STATE(3429), + [sym_expression] = STATE(5664), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3510), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3397), + [sym_postfix_unary_expression] = STATE(3404), + [sym_prefix_unary_expression] = STATE(3404), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6134), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3397), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3404), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3397), + [sym_member_access_expression] = STATE(2686), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3404), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7425), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(3397), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3397), + [sym_typeof_expression] = STATE(3397), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2686), + [sym_literal] = STATE(3397), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2178), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(393), [sym_preproc_endregion] = STATE(393), [sym_preproc_line] = STATE(393), @@ -105847,53 +105733,53 @@ 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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1049), - [anon_sym_LPAREN] = ACTIONS(2431), - [anon_sym_ref] = ACTIONS(2369), - [anon_sym_LBRACE] = ACTIONS(2371), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_LPAREN] = ACTIONS(2377), + [anon_sym_ref] = ACTIONS(2341), + [anon_sym_LBRACE] = ACTIONS(2343), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1061), - [anon_sym_LT] = ACTIONS(1063), - [anon_sym_GT] = ACTIONS(1063), + [anon_sym_new] = ACTIONS(1059), + [anon_sym_LT] = ACTIONS(2379), + [anon_sym_GT] = ACTIONS(2379), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1067), - [anon_sym_BANG] = ACTIONS(1069), - [anon_sym_TILDE] = ACTIONS(1069), - [anon_sym_PLUS_PLUS] = ACTIONS(1069), - [anon_sym_DASH_DASH] = ACTIONS(1069), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(1847), + [anon_sym_TILDE] = ACTIONS(1847), + [anon_sym_PLUS_PLUS] = ACTIONS(1847), + [anon_sym_DASH_DASH] = ACTIONS(1847), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1071), - [anon_sym_DASH] = ACTIONS(1071), + [anon_sym_PLUS] = ACTIONS(1845), + [anon_sym_DASH] = ACTIONS(1845), [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(1069), - [anon_sym_AMP] = ACTIONS(1069), - [anon_sym_GT_EQ] = ACTIONS(1073), - [anon_sym_LT_EQ] = ACTIONS(1073), + [anon_sym_CARET] = ACTIONS(1847), + [anon_sym_AMP] = ACTIONS(1847), + [anon_sym_GT_EQ] = ACTIONS(2381), + [anon_sym_LT_EQ] = ACTIONS(2381), [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(2377), + [anon_sym_scoped] = ACTIONS(2349), [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(2433), - [sym_predefined_type] = ACTIONS(2435), - [anon_sym_unchecked] = ACTIONS(1067), + [anon_sym_var] = ACTIONS(2351), + [sym_predefined_type] = ACTIONS(2353), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1589), + [anon_sym_throw] = ACTIONS(1527), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1591), - [sym_discard] = ACTIONS(1083), + [anon_sym_await] = ACTIONS(1529), + [sym_discard] = ACTIONS(1081), [anon_sym_DOT_DOT] = ACTIONS(123), - [anon_sym_not] = ACTIONS(2437), + [anon_sym_not] = ACTIONS(2383), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -105918,7 +105804,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(1089), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -105935,98 +105821,98 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [394] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(5160), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2230), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(4363), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_pattern] = STATE(6728), - [sym_constant_pattern] = STATE(3486), - [sym_parenthesized_pattern] = STATE(3486), - [sym_var_pattern] = STATE(3486), - [sym_type_pattern] = STATE(3486), - [sym_list_pattern] = STATE(3486), - [sym_recursive_pattern] = STATE(3486), - [sym_positional_pattern_clause] = STATE(5175), - [sym_property_pattern_clause] = STATE(5675), - [sym_relational_pattern] = STATE(3486), - [sym_negated_pattern] = STATE(3486), - [sym_and_pattern] = STATE(3486), - [sym_or_pattern] = STATE(3486), - [sym_declaration_pattern] = STATE(3486), - [sym_expression] = STATE(5679), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3520), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(4419), - [sym_postfix_unary_expression] = STATE(4420), - [sym_prefix_unary_expression] = STATE(4420), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6154), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(4419), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(4420), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(4419), - [sym_member_access_expression] = STATE(3135), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(4420), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7530), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(4419), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(4419), - [sym_typeof_expression] = STATE(4419), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(3135), - [sym_literal] = STATE(4419), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(2817), + [sym_alias_qualified_name] = STATE(2821), + [sym__simple_name] = STATE(2258), + [sym_qualified_name] = STATE(2821), + [sym_generic_name] = STATE(2262), + [sym_type] = STATE(2401), + [sym_implicit_type] = STATE(2701), + [sym_array_type] = STATE(2822), + [sym__array_base_type] = STATE(7081), + [sym_nullable_type] = STATE(2823), + [sym_pointer_type] = STATE(2823), + [sym__pointer_base_type] = STATE(7400), + [sym_function_pointer_type] = STATE(2823), + [sym_ref_type] = STATE(2701), + [sym_scoped_type] = STATE(2701), + [sym_tuple_type] = STATE(2825), + [sym_pattern] = STATE(5055), + [sym_constant_pattern] = STATE(4727), + [sym_parenthesized_pattern] = STATE(4727), + [sym_var_pattern] = STATE(4727), + [sym_type_pattern] = STATE(4727), + [sym_list_pattern] = STATE(4727), + [sym_recursive_pattern] = STATE(4727), + [sym_positional_pattern_clause] = STATE(2506), + [sym_property_pattern_clause] = STATE(2549), + [sym_relational_pattern] = STATE(4727), + [sym_negated_pattern] = STATE(4727), + [sym_and_pattern] = STATE(4727), + [sym_or_pattern] = STATE(4727), + [sym_declaration_pattern] = STATE(4727), + [sym_expression] = STATE(5687), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3510), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(4509), + [sym_postfix_unary_expression] = STATE(4510), + [sym_prefix_unary_expression] = STATE(4510), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6134), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(4509), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(4510), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(4509), + [sym_member_access_expression] = STATE(3207), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(4510), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7425), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(4509), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(4509), + [sym_typeof_expression] = STATE(4509), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(3207), + [sym_literal] = STATE(4509), + [sym_character_literal] = STATE(4575), + [sym_string_literal] = STATE(4575), + [sym_raw_string_literal] = STATE(4575), + [sym_boolean_literal] = STATE(4575), + [sym_identifier] = STATE(2219), + [sym__reserved_identifier] = STATE(2229), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(394), [sym_preproc_endregion] = STATE(394), [sym_preproc_line] = STATE(394), @@ -106036,78 +105922,78 @@ 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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), - [sym__identifier_token] = ACTIONS(25), - [anon_sym_alias] = ACTIONS(29), - [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1049), - [anon_sym_LPAREN] = ACTIONS(1053), - [anon_sym_ref] = ACTIONS(2595), - [anon_sym_LBRACE] = ACTIONS(1059), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), - [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1061), - [anon_sym_LT] = ACTIONS(1063), - [anon_sym_GT] = ACTIONS(1063), - [anon_sym_where] = ACTIONS(29), - [anon_sym_notnull] = ACTIONS(29), - [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1067), - [anon_sym_BANG] = ACTIONS(1069), - [anon_sym_TILDE] = ACTIONS(1069), - [anon_sym_PLUS_PLUS] = ACTIONS(1069), - [anon_sym_DASH_DASH] = ACTIONS(1069), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1071), - [anon_sym_DASH] = ACTIONS(1071), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), + [sym__identifier_token] = ACTIONS(1385), + [anon_sym_alias] = ACTIONS(1387), + [anon_sym_global] = ACTIONS(1387), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(2401), + [anon_sym_LPAREN] = ACTIONS(2403), + [anon_sym_ref] = ACTIONS(2405), + [anon_sym_LBRACE] = ACTIONS(2407), + [anon_sym_delegate] = ACTIONS(2409), + [anon_sym_async] = ACTIONS(1045), + [anon_sym_file] = ACTIONS(1387), + [anon_sym_new] = ACTIONS(1059), + [anon_sym_LT] = ACTIONS(2411), + [anon_sym_GT] = ACTIONS(2411), + [anon_sym_where] = ACTIONS(1387), + [anon_sym_notnull] = ACTIONS(1387), + [anon_sym_unmanaged] = ACTIONS(1387), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(1469), + [anon_sym_TILDE] = ACTIONS(1469), + [anon_sym_PLUS_PLUS] = ACTIONS(1469), + [anon_sym_DASH_DASH] = ACTIONS(1469), + [anon_sym_true] = ACTIONS(1407), + [anon_sym_false] = ACTIONS(1407), + [anon_sym_PLUS] = ACTIONS(1467), + [anon_sym_DASH] = ACTIONS(1467), [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(1069), - [anon_sym_AMP] = ACTIONS(1069), - [anon_sym_GT_EQ] = ACTIONS(1073), - [anon_sym_LT_EQ] = ACTIONS(1073), + [anon_sym_CARET] = ACTIONS(1469), + [anon_sym_AMP] = ACTIONS(1469), + [anon_sym_GT_EQ] = ACTIONS(2413), + [anon_sym_LT_EQ] = ACTIONS(2413), [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(2309), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(1077), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1067), - [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1589), - [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1591), - [sym_discard] = ACTIONS(1083), + [anon_sym_scoped] = ACTIONS(2415), + [anon_sym_base] = ACTIONS(87), + [anon_sym_var] = ACTIONS(2417), + [sym_predefined_type] = ACTIONS(2419), + [anon_sym_unchecked] = ACTIONS(1065), + [anon_sym_yield] = ACTIONS(1387), + [anon_sym_default] = ACTIONS(1421), + [anon_sym_throw] = ACTIONS(1527), + [anon_sym_when] = ACTIONS(1387), + [anon_sym_await] = ACTIONS(1529), + [sym_discard] = ACTIONS(2421), [anon_sym_DOT_DOT] = ACTIONS(123), - [anon_sym_not] = ACTIONS(1127), - [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(2423), + [anon_sym_from] = ACTIONS(1429), + [anon_sym_into] = ACTIONS(1387), + [anon_sym_join] = ACTIONS(1387), + [anon_sym_on] = ACTIONS(1387), + [anon_sym_equals] = ACTIONS(1387), + [anon_sym_let] = ACTIONS(1387), + [anon_sym_orderby] = ACTIONS(1387), + [anon_sym_ascending] = ACTIONS(1387), + [anon_sym_descending] = ACTIONS(1387), + [anon_sym_group] = ACTIONS(1387), + [anon_sym_by] = ACTIONS(1387), + [anon_sym_select] = ACTIONS(1387), [anon_sym_stackalloc] = ACTIONS(127), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), + [anon_sym_sizeof] = ACTIONS(1433), + [anon_sym_typeof] = ACTIONS(1435), [anon_sym___makeref] = ACTIONS(133), [anon_sym___reftype] = ACTIONS(135), [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1089), + [sym_null_literal] = ACTIONS(1443), + [anon_sym_SQUOTE] = ACTIONS(1445), + [sym_integer_literal] = ACTIONS(1443), + [sym_real_literal] = ACTIONS(1447), + [anon_sym_DQUOTE] = ACTIONS(1449), + [sym_verbatim_string_literal] = ACTIONS(1447), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -106118,104 +106004,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(1453), + [sym_interpolation_verbatim_start] = ACTIONS(1455), + [sym_interpolation_raw_start] = ACTIONS(1457), + [sym_raw_string_start] = ACTIONS(1459), }, [395] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(2421), - [sym_alias_qualified_name] = STATE(2373), - [sym__simple_name] = STATE(2191), - [sym_qualified_name] = STATE(2373), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(2242), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(2378), - [sym__array_base_type] = STATE(7103), - [sym_nullable_type] = STATE(2379), - [sym_pointer_type] = STATE(2379), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(2379), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(2380), - [sym_pattern] = STATE(3432), - [sym_constant_pattern] = STATE(3486), - [sym_parenthesized_pattern] = STATE(3486), - [sym_var_pattern] = STATE(3486), - [sym_type_pattern] = STATE(3486), - [sym_list_pattern] = STATE(3486), - [sym_recursive_pattern] = STATE(3486), - [sym_positional_pattern_clause] = STATE(2276), - [sym_property_pattern_clause] = STATE(2330), - [sym_relational_pattern] = STATE(3486), - [sym_negated_pattern] = STATE(3486), - [sym_and_pattern] = STATE(3486), - [sym_or_pattern] = STATE(3486), - [sym_declaration_pattern] = STATE(3486), - [sym_expression] = STATE(5679), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3520), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3455), - [sym_postfix_unary_expression] = STATE(3469), - [sym_prefix_unary_expression] = STATE(3469), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6154), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3455), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3469), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3455), - [sym_member_access_expression] = STATE(2719), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3469), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7530), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(3455), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3455), - [sym_typeof_expression] = STATE(3455), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2719), - [sym_literal] = STATE(3455), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2186), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(2882), + [sym_alias_qualified_name] = STATE(2402), + [sym__simple_name] = STATE(2319), + [sym_qualified_name] = STATE(2402), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(2504), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(2373), + [sym__array_base_type] = STATE(7083), + [sym_nullable_type] = STATE(2375), + [sym_pointer_type] = STATE(2375), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(2375), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(2377), + [sym_pattern] = STATE(3247), + [sym_constant_pattern] = STATE(3311), + [sym_parenthesized_pattern] = STATE(3311), + [sym_var_pattern] = STATE(3311), + [sym_type_pattern] = STATE(3311), + [sym_list_pattern] = STATE(3311), + [sym_recursive_pattern] = STATE(3311), + [sym_positional_pattern_clause] = STATE(2575), + [sym_property_pattern_clause] = STATE(2783), + [sym_relational_pattern] = STATE(3311), + [sym_negated_pattern] = STATE(3311), + [sym_and_pattern] = STATE(3311), + [sym_or_pattern] = STATE(3311), + [sym_declaration_pattern] = STATE(3311), + [sym_expression] = STATE(5678), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3510), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3275), + [sym_postfix_unary_expression] = STATE(3276), + [sym_prefix_unary_expression] = STATE(3276), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6134), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3275), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3276), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3275), + [sym_member_access_expression] = STATE(2608), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3276), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7425), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(3275), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3275), + [sym_typeof_expression] = STATE(3275), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2608), + [sym_literal] = STATE(3275), + [sym_character_literal] = STATE(3272), + [sym_string_literal] = STATE(3272), + [sym_raw_string_literal] = STATE(3272), + [sym_boolean_literal] = STATE(3272), + [sym_identifier] = STATE(2178), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(395), [sym_preproc_endregion] = STATE(395), [sym_preproc_line] = STATE(395), @@ -106225,53 +106111,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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1049), - [anon_sym_LPAREN] = ACTIONS(2431), - [anon_sym_ref] = ACTIONS(2369), - [anon_sym_LBRACE] = ACTIONS(2371), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(2357), + [anon_sym_LPAREN] = ACTIONS(2359), + [anon_sym_ref] = ACTIONS(2341), + [anon_sym_LBRACE] = ACTIONS(2343), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1061), - [anon_sym_LT] = ACTIONS(1063), - [anon_sym_GT] = ACTIONS(1063), + [anon_sym_new] = ACTIONS(1059), + [anon_sym_LT] = ACTIONS(2361), + [anon_sym_GT] = ACTIONS(2361), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1067), - [anon_sym_BANG] = ACTIONS(1069), - [anon_sym_TILDE] = ACTIONS(1069), - [anon_sym_PLUS_PLUS] = ACTIONS(1069), - [anon_sym_DASH_DASH] = ACTIONS(1069), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1071), - [anon_sym_DASH] = ACTIONS(1071), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(1829), + [anon_sym_TILDE] = ACTIONS(1829), + [anon_sym_PLUS_PLUS] = ACTIONS(1829), + [anon_sym_DASH_DASH] = ACTIONS(1829), + [anon_sym_true] = ACTIONS(1169), + [anon_sym_false] = ACTIONS(1169), + [anon_sym_PLUS] = ACTIONS(1827), + [anon_sym_DASH] = ACTIONS(1827), [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(1069), - [anon_sym_AMP] = ACTIONS(1069), - [anon_sym_GT_EQ] = ACTIONS(1073), - [anon_sym_LT_EQ] = ACTIONS(1073), + [anon_sym_CARET] = ACTIONS(1829), + [anon_sym_AMP] = ACTIONS(1829), + [anon_sym_GT_EQ] = ACTIONS(2363), + [anon_sym_LT_EQ] = ACTIONS(2363), [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(2377), + [anon_sym_scoped] = ACTIONS(2349), [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(2433), - [sym_predefined_type] = ACTIONS(2435), - [anon_sym_unchecked] = ACTIONS(1067), + [anon_sym_var] = ACTIONS(2365), + [sym_predefined_type] = ACTIONS(2367), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1589), + [anon_sym_default] = ACTIONS(1179), + [anon_sym_throw] = ACTIONS(1527), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1591), - [sym_discard] = ACTIONS(1083), + [anon_sym_await] = ACTIONS(1529), + [sym_discard] = ACTIONS(2369), [anon_sym_DOT_DOT] = ACTIONS(123), - [anon_sym_not] = ACTIONS(2437), + [anon_sym_not] = ACTIONS(2371), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -106285,18 +106171,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(129), - [anon_sym_typeof] = ACTIONS(131), + [anon_sym_sizeof] = ACTIONS(1189), + [anon_sym_typeof] = ACTIONS(1191), [anon_sym___makeref] = ACTIONS(133), [anon_sym___reftype] = ACTIONS(135), [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1089), + [sym_null_literal] = ACTIONS(1199), + [anon_sym_SQUOTE] = ACTIONS(1201), + [sym_integer_literal] = ACTIONS(1199), + [sym_real_literal] = ACTIONS(1203), + [anon_sym_DQUOTE] = ACTIONS(1205), + [sym_verbatim_string_literal] = ACTIONS(1203), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -106307,104 +106193,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(1209), + [sym_interpolation_verbatim_start] = ACTIONS(1211), + [sym_interpolation_raw_start] = ACTIONS(1213), + [sym_raw_string_start] = ACTIONS(1215), }, [396] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(2421), - [sym_alias_qualified_name] = STATE(2373), - [sym__simple_name] = STATE(2191), - [sym_qualified_name] = STATE(2373), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(2242), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(2378), - [sym__array_base_type] = STATE(7103), - [sym_nullable_type] = STATE(2379), - [sym_pointer_type] = STATE(2379), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(2379), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(2380), - [sym_pattern] = STATE(4416), - [sym_constant_pattern] = STATE(3486), - [sym_parenthesized_pattern] = STATE(3486), - [sym_var_pattern] = STATE(3486), - [sym_type_pattern] = STATE(3486), - [sym_list_pattern] = STATE(3486), - [sym_recursive_pattern] = STATE(3486), - [sym_positional_pattern_clause] = STATE(2276), - [sym_property_pattern_clause] = STATE(2330), - [sym_relational_pattern] = STATE(3486), - [sym_negated_pattern] = STATE(3486), - [sym_and_pattern] = STATE(3486), - [sym_or_pattern] = STATE(3486), - [sym_declaration_pattern] = STATE(3486), - [sym_expression] = STATE(5679), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3520), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3455), - [sym_postfix_unary_expression] = STATE(3469), - [sym_prefix_unary_expression] = STATE(3469), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6154), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3455), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3469), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3455), - [sym_member_access_expression] = STATE(2719), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3469), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7530), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(3455), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3455), - [sym_typeof_expression] = STATE(3455), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2719), - [sym_literal] = STATE(3455), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2186), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(2863), + [sym_alias_qualified_name] = STATE(2402), + [sym__simple_name] = STATE(2328), + [sym_qualified_name] = STATE(2402), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(2497), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(2373), + [sym__array_base_type] = STATE(7083), + [sym_nullable_type] = STATE(2375), + [sym_pointer_type] = STATE(2375), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(2375), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(2377), + [sym_pattern] = STATE(3445), + [sym_constant_pattern] = STATE(3429), + [sym_parenthesized_pattern] = STATE(3429), + [sym_var_pattern] = STATE(3429), + [sym_type_pattern] = STATE(3429), + [sym_list_pattern] = STATE(3429), + [sym_recursive_pattern] = STATE(3429), + [sym_positional_pattern_clause] = STATE(2571), + [sym_property_pattern_clause] = STATE(2729), + [sym_relational_pattern] = STATE(3429), + [sym_negated_pattern] = STATE(3429), + [sym_and_pattern] = STATE(3429), + [sym_or_pattern] = STATE(3429), + [sym_declaration_pattern] = STATE(3429), + [sym_expression] = STATE(5652), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3510), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3397), + [sym_postfix_unary_expression] = STATE(3404), + [sym_prefix_unary_expression] = STATE(3404), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6134), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3397), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3404), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3397), + [sym_member_access_expression] = STATE(2686), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3404), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7425), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(3397), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3397), + [sym_typeof_expression] = STATE(3397), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2686), + [sym_literal] = STATE(3397), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2178), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(396), [sym_preproc_endregion] = STATE(396), [sym_preproc_line] = STATE(396), @@ -106414,53 +106300,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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1049), - [anon_sym_LPAREN] = ACTIONS(2431), - [anon_sym_ref] = ACTIONS(2369), - [anon_sym_LBRACE] = ACTIONS(2371), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_LPAREN] = ACTIONS(2339), + [anon_sym_ref] = ACTIONS(2341), + [anon_sym_LBRACE] = ACTIONS(2343), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1061), - [anon_sym_LT] = ACTIONS(1063), - [anon_sym_GT] = ACTIONS(1063), + [anon_sym_new] = ACTIONS(1059), + [anon_sym_LT] = ACTIONS(2345), + [anon_sym_GT] = ACTIONS(2345), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1067), - [anon_sym_BANG] = ACTIONS(1069), - [anon_sym_TILDE] = ACTIONS(1069), - [anon_sym_PLUS_PLUS] = ACTIONS(1069), - [anon_sym_DASH_DASH] = ACTIONS(1069), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(1811), + [anon_sym_TILDE] = ACTIONS(1811), + [anon_sym_PLUS_PLUS] = ACTIONS(1811), + [anon_sym_DASH_DASH] = ACTIONS(1811), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1071), - [anon_sym_DASH] = ACTIONS(1071), + [anon_sym_PLUS] = ACTIONS(1809), + [anon_sym_DASH] = ACTIONS(1809), [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(1069), - [anon_sym_AMP] = ACTIONS(1069), - [anon_sym_GT_EQ] = ACTIONS(1073), - [anon_sym_LT_EQ] = ACTIONS(1073), + [anon_sym_CARET] = ACTIONS(1811), + [anon_sym_AMP] = ACTIONS(1811), + [anon_sym_GT_EQ] = ACTIONS(2347), + [anon_sym_LT_EQ] = ACTIONS(2347), [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(2377), + [anon_sym_scoped] = ACTIONS(2349), [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(2433), - [sym_predefined_type] = ACTIONS(2435), - [anon_sym_unchecked] = ACTIONS(1067), + [anon_sym_var] = ACTIONS(2351), + [sym_predefined_type] = ACTIONS(2353), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1589), + [anon_sym_throw] = ACTIONS(1527), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1591), - [sym_discard] = ACTIONS(1083), + [anon_sym_await] = ACTIONS(1529), + [sym_discard] = ACTIONS(1081), [anon_sym_DOT_DOT] = ACTIONS(123), - [anon_sym_not] = ACTIONS(2437), + [anon_sym_not] = ACTIONS(2355), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -106485,7 +106371,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(1089), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -106502,98 +106388,98 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [397] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(5160), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2230), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(4363), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_pattern] = STATE(6612), - [sym_constant_pattern] = STATE(3486), - [sym_parenthesized_pattern] = STATE(3486), - [sym_var_pattern] = STATE(3486), - [sym_type_pattern] = STATE(3486), - [sym_list_pattern] = STATE(3486), - [sym_recursive_pattern] = STATE(3486), - [sym_positional_pattern_clause] = STATE(5175), - [sym_property_pattern_clause] = STATE(5675), - [sym_relational_pattern] = STATE(3486), - [sym_negated_pattern] = STATE(3486), - [sym_and_pattern] = STATE(3486), - [sym_or_pattern] = STATE(3486), - [sym_declaration_pattern] = STATE(3486), - [sym_expression] = STATE(5679), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3520), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(4419), - [sym_postfix_unary_expression] = STATE(4420), - [sym_prefix_unary_expression] = STATE(4420), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6154), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(4419), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(4420), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(4419), - [sym_member_access_expression] = STATE(3135), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(4420), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7530), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(4419), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(4419), - [sym_typeof_expression] = STATE(4419), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(3135), - [sym_literal] = STATE(4419), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(2598), + [sym_alias_qualified_name] = STATE(2402), + [sym__simple_name] = STATE(2185), + [sym_qualified_name] = STATE(2402), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(2230), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(2373), + [sym__array_base_type] = STATE(7083), + [sym_nullable_type] = STATE(2375), + [sym_pointer_type] = STATE(2375), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(2375), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(2377), + [sym_pattern] = STATE(4476), + [sym_constant_pattern] = STATE(3311), + [sym_parenthesized_pattern] = STATE(3311), + [sym_var_pattern] = STATE(3311), + [sym_type_pattern] = STATE(3311), + [sym_list_pattern] = STATE(3311), + [sym_recursive_pattern] = STATE(3311), + [sym_positional_pattern_clause] = STATE(2257), + [sym_property_pattern_clause] = STATE(2289), + [sym_relational_pattern] = STATE(3311), + [sym_negated_pattern] = STATE(3311), + [sym_and_pattern] = STATE(3311), + [sym_or_pattern] = STATE(3311), + [sym_declaration_pattern] = STATE(3311), + [sym_expression] = STATE(5677), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3510), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3275), + [sym_postfix_unary_expression] = STATE(3276), + [sym_prefix_unary_expression] = STATE(3276), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6134), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3275), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3276), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3275), + [sym_member_access_expression] = STATE(2608), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3276), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7425), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(3275), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3275), + [sym_typeof_expression] = STATE(3275), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2608), + [sym_literal] = STATE(3275), + [sym_character_literal] = STATE(3272), + [sym_string_literal] = STATE(3272), + [sym_raw_string_literal] = STATE(3272), + [sym_boolean_literal] = STATE(3272), + [sym_identifier] = STATE(2202), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(397), [sym_preproc_endregion] = STATE(397), [sym_preproc_line] = STATE(397), @@ -106603,53 +106489,53 @@ 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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1049), - [anon_sym_LPAREN] = ACTIONS(1053), - [anon_sym_ref] = ACTIONS(2595), - [anon_sym_LBRACE] = ACTIONS(1059), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(2357), + [anon_sym_LPAREN] = ACTIONS(2529), + [anon_sym_ref] = ACTIONS(2519), + [anon_sym_LBRACE] = ACTIONS(2343), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1061), - [anon_sym_LT] = ACTIONS(1063), - [anon_sym_GT] = ACTIONS(1063), + [anon_sym_new] = ACTIONS(1059), + [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(1067), - [anon_sym_BANG] = ACTIONS(1069), - [anon_sym_TILDE] = ACTIONS(1069), - [anon_sym_PLUS_PLUS] = ACTIONS(1069), - [anon_sym_DASH_DASH] = ACTIONS(1069), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1071), - [anon_sym_DASH] = ACTIONS(1071), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(1347), + [anon_sym_TILDE] = ACTIONS(1347), + [anon_sym_PLUS_PLUS] = ACTIONS(1347), + [anon_sym_DASH_DASH] = ACTIONS(1347), + [anon_sym_true] = ACTIONS(1169), + [anon_sym_false] = ACTIONS(1169), + [anon_sym_PLUS] = ACTIONS(1345), + [anon_sym_DASH] = ACTIONS(1345), [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(1069), - [anon_sym_AMP] = ACTIONS(1069), - [anon_sym_GT_EQ] = ACTIONS(1073), - [anon_sym_LT_EQ] = ACTIONS(1073), + [anon_sym_CARET] = ACTIONS(1347), + [anon_sym_AMP] = ACTIONS(1347), + [anon_sym_GT_EQ] = ACTIONS(2533), + [anon_sym_LT_EQ] = ACTIONS(2533), [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(2309), + [anon_sym_scoped] = ACTIONS(2525), [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(1077), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1067), + [anon_sym_var] = ACTIONS(2365), + [sym_predefined_type] = ACTIONS(2367), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1589), + [anon_sym_default] = ACTIONS(1179), + [anon_sym_throw] = ACTIONS(1527), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1591), - [sym_discard] = ACTIONS(1083), + [anon_sym_await] = ACTIONS(1529), + [sym_discard] = ACTIONS(2369), [anon_sym_DOT_DOT] = ACTIONS(123), - [anon_sym_not] = ACTIONS(1127), + [anon_sym_not] = ACTIONS(2535), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -106663,18 +106549,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(129), - [anon_sym_typeof] = ACTIONS(131), + [anon_sym_sizeof] = ACTIONS(1189), + [anon_sym_typeof] = ACTIONS(1191), [anon_sym___makeref] = ACTIONS(133), [anon_sym___reftype] = ACTIONS(135), [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1089), + [sym_null_literal] = ACTIONS(1199), + [anon_sym_SQUOTE] = ACTIONS(1201), + [sym_integer_literal] = ACTIONS(1199), + [sym_real_literal] = ACTIONS(1203), + [anon_sym_DQUOTE] = ACTIONS(1205), + [sym_verbatim_string_literal] = ACTIONS(1203), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -106685,104 +106571,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(1209), + [sym_interpolation_verbatim_start] = ACTIONS(1211), + [sym_interpolation_raw_start] = ACTIONS(1213), + [sym_raw_string_start] = ACTIONS(1215), }, [398] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(5160), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2230), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(4363), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_pattern] = STATE(3432), - [sym_constant_pattern] = STATE(3486), - [sym_parenthesized_pattern] = STATE(3486), - [sym_var_pattern] = STATE(3486), - [sym_type_pattern] = STATE(3486), - [sym_list_pattern] = STATE(3486), - [sym_recursive_pattern] = STATE(3486), - [sym_positional_pattern_clause] = STATE(5175), - [sym_property_pattern_clause] = STATE(5675), - [sym_relational_pattern] = STATE(3486), - [sym_negated_pattern] = STATE(3486), - [sym_and_pattern] = STATE(3486), - [sym_or_pattern] = STATE(3486), - [sym_declaration_pattern] = STATE(3486), - [sym_expression] = STATE(5679), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3520), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(4419), - [sym_postfix_unary_expression] = STATE(4420), - [sym_prefix_unary_expression] = STATE(4420), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6154), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(4419), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(4420), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(4419), - [sym_member_access_expression] = STATE(3135), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(4420), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7530), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(4419), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(4419), - [sym_typeof_expression] = STATE(4419), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(3135), - [sym_literal] = STATE(4419), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(2864), + [sym_alias_qualified_name] = STATE(2402), + [sym__simple_name] = STATE(2327), + [sym_qualified_name] = STATE(2402), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(2505), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(2373), + [sym__array_base_type] = STATE(7083), + [sym_nullable_type] = STATE(2375), + [sym_pointer_type] = STATE(2375), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(2375), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(2377), + [sym_pattern] = STATE(3247), + [sym_constant_pattern] = STATE(3311), + [sym_parenthesized_pattern] = STATE(3311), + [sym_var_pattern] = STATE(3311), + [sym_type_pattern] = STATE(3311), + [sym_list_pattern] = STATE(3311), + [sym_recursive_pattern] = STATE(3311), + [sym_positional_pattern_clause] = STATE(2585), + [sym_property_pattern_clause] = STATE(2792), + [sym_relational_pattern] = STATE(3311), + [sym_negated_pattern] = STATE(3311), + [sym_and_pattern] = STATE(3311), + [sym_or_pattern] = STATE(3311), + [sym_declaration_pattern] = STATE(3311), + [sym_expression] = STATE(5680), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3510), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3275), + [sym_postfix_unary_expression] = STATE(3276), + [sym_prefix_unary_expression] = STATE(3276), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6134), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3275), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3276), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3275), + [sym_member_access_expression] = STATE(2608), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3276), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7425), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(3275), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3275), + [sym_typeof_expression] = STATE(3275), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2608), + [sym_literal] = STATE(3275), + [sym_character_literal] = STATE(3272), + [sym_string_literal] = STATE(3272), + [sym_raw_string_literal] = STATE(3272), + [sym_boolean_literal] = STATE(3272), + [sym_identifier] = STATE(2178), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(398), [sym_preproc_endregion] = STATE(398), [sym_preproc_line] = STATE(398), @@ -106792,53 +106678,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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1049), - [anon_sym_LPAREN] = ACTIONS(1053), - [anon_sym_ref] = ACTIONS(2595), - [anon_sym_LBRACE] = ACTIONS(1059), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(2357), + [anon_sym_LPAREN] = ACTIONS(2465), + [anon_sym_ref] = ACTIONS(2341), + [anon_sym_LBRACE] = ACTIONS(2343), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1061), - [anon_sym_LT] = ACTIONS(1063), - [anon_sym_GT] = ACTIONS(1063), + [anon_sym_new] = ACTIONS(1059), + [anon_sym_LT] = ACTIONS(2467), + [anon_sym_GT] = ACTIONS(2467), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1067), - [anon_sym_BANG] = ACTIONS(1069), - [anon_sym_TILDE] = ACTIONS(1069), - [anon_sym_PLUS_PLUS] = ACTIONS(1069), - [anon_sym_DASH_DASH] = ACTIONS(1069), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1071), - [anon_sym_DASH] = ACTIONS(1071), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(1865), + [anon_sym_TILDE] = ACTIONS(1865), + [anon_sym_PLUS_PLUS] = ACTIONS(1865), + [anon_sym_DASH_DASH] = ACTIONS(1865), + [anon_sym_true] = ACTIONS(1169), + [anon_sym_false] = ACTIONS(1169), + [anon_sym_PLUS] = ACTIONS(1863), + [anon_sym_DASH] = ACTIONS(1863), [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(1069), - [anon_sym_AMP] = ACTIONS(1069), - [anon_sym_GT_EQ] = ACTIONS(1073), - [anon_sym_LT_EQ] = ACTIONS(1073), + [anon_sym_CARET] = ACTIONS(1865), + [anon_sym_AMP] = ACTIONS(1865), + [anon_sym_GT_EQ] = ACTIONS(2469), + [anon_sym_LT_EQ] = ACTIONS(2469), [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(2309), + [anon_sym_scoped] = ACTIONS(2349), [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(1077), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1067), + [anon_sym_var] = ACTIONS(2365), + [sym_predefined_type] = ACTIONS(2367), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1589), + [anon_sym_default] = ACTIONS(1179), + [anon_sym_throw] = ACTIONS(1527), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1591), - [sym_discard] = ACTIONS(1083), + [anon_sym_await] = ACTIONS(1529), + [sym_discard] = ACTIONS(2369), [anon_sym_DOT_DOT] = ACTIONS(123), - [anon_sym_not] = ACTIONS(1127), + [anon_sym_not] = ACTIONS(2471), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -106852,18 +106738,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(129), - [anon_sym_typeof] = ACTIONS(131), + [anon_sym_sizeof] = ACTIONS(1189), + [anon_sym_typeof] = ACTIONS(1191), [anon_sym___makeref] = ACTIONS(133), [anon_sym___reftype] = ACTIONS(135), [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1089), + [sym_null_literal] = ACTIONS(1199), + [anon_sym_SQUOTE] = ACTIONS(1201), + [sym_integer_literal] = ACTIONS(1199), + [sym_real_literal] = ACTIONS(1203), + [anon_sym_DQUOTE] = ACTIONS(1205), + [sym_verbatim_string_literal] = ACTIONS(1203), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -106874,104 +106760,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(1209), + [sym_interpolation_verbatim_start] = ACTIONS(1211), + [sym_interpolation_raw_start] = ACTIONS(1213), + [sym_raw_string_start] = ACTIONS(1215), }, [399] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(5160), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2230), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(4363), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_pattern] = STATE(6699), - [sym_constant_pattern] = STATE(3486), - [sym_parenthesized_pattern] = STATE(3486), - [sym_var_pattern] = STATE(3486), - [sym_type_pattern] = STATE(3486), - [sym_list_pattern] = STATE(3486), - [sym_recursive_pattern] = STATE(3486), - [sym_positional_pattern_clause] = STATE(5175), - [sym_property_pattern_clause] = STATE(5675), - [sym_relational_pattern] = STATE(3486), - [sym_negated_pattern] = STATE(3486), - [sym_and_pattern] = STATE(3486), - [sym_or_pattern] = STATE(3486), - [sym_declaration_pattern] = STATE(3486), - [sym_expression] = STATE(5679), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3520), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(4419), - [sym_postfix_unary_expression] = STATE(4420), - [sym_prefix_unary_expression] = STATE(4420), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6154), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(4419), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(4420), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(4419), - [sym_member_access_expression] = STATE(3135), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(4420), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7530), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(4419), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(4419), - [sym_typeof_expression] = STATE(4419), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(3135), - [sym_literal] = STATE(4419), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(2873), + [sym_alias_qualified_name] = STATE(2402), + [sym__simple_name] = STATE(2330), + [sym_qualified_name] = STATE(2402), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(2498), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(2373), + [sym__array_base_type] = STATE(7083), + [sym_nullable_type] = STATE(2375), + [sym_pointer_type] = STATE(2375), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(2375), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(2377), + [sym_pattern] = STATE(3445), + [sym_constant_pattern] = STATE(3429), + [sym_parenthesized_pattern] = STATE(3429), + [sym_var_pattern] = STATE(3429), + [sym_type_pattern] = STATE(3429), + [sym_list_pattern] = STATE(3429), + [sym_recursive_pattern] = STATE(3429), + [sym_positional_pattern_clause] = STATE(2578), + [sym_property_pattern_clause] = STATE(2739), + [sym_relational_pattern] = STATE(3429), + [sym_negated_pattern] = STATE(3429), + [sym_and_pattern] = STATE(3429), + [sym_or_pattern] = STATE(3429), + [sym_declaration_pattern] = STATE(3429), + [sym_expression] = STATE(5683), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3510), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3397), + [sym_postfix_unary_expression] = STATE(3404), + [sym_prefix_unary_expression] = STATE(3404), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6134), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3397), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3404), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3397), + [sym_member_access_expression] = STATE(2686), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3404), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7425), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(3397), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3397), + [sym_typeof_expression] = STATE(3397), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2686), + [sym_literal] = STATE(3397), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2178), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(399), [sym_preproc_endregion] = STATE(399), [sym_preproc_line] = STATE(399), @@ -106981,53 +106867,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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1049), - [anon_sym_LPAREN] = ACTIONS(1053), - [anon_sym_ref] = ACTIONS(2595), - [anon_sym_LBRACE] = ACTIONS(1059), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_LPAREN] = ACTIONS(2545), + [anon_sym_ref] = ACTIONS(2341), + [anon_sym_LBRACE] = ACTIONS(2343), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1061), - [anon_sym_LT] = ACTIONS(1063), - [anon_sym_GT] = ACTIONS(1063), + [anon_sym_new] = ACTIONS(1059), + [anon_sym_LT] = ACTIONS(2547), + [anon_sym_GT] = ACTIONS(2547), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1067), - [anon_sym_BANG] = ACTIONS(1069), - [anon_sym_TILDE] = ACTIONS(1069), - [anon_sym_PLUS_PLUS] = ACTIONS(1069), - [anon_sym_DASH_DASH] = ACTIONS(1069), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(1883), + [anon_sym_TILDE] = ACTIONS(1883), + [anon_sym_PLUS_PLUS] = ACTIONS(1883), + [anon_sym_DASH_DASH] = ACTIONS(1883), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1071), - [anon_sym_DASH] = ACTIONS(1071), + [anon_sym_PLUS] = ACTIONS(1881), + [anon_sym_DASH] = ACTIONS(1881), [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(1069), - [anon_sym_AMP] = ACTIONS(1069), - [anon_sym_GT_EQ] = ACTIONS(1073), - [anon_sym_LT_EQ] = ACTIONS(1073), + [anon_sym_CARET] = ACTIONS(1883), + [anon_sym_AMP] = ACTIONS(1883), + [anon_sym_GT_EQ] = ACTIONS(2549), + [anon_sym_LT_EQ] = ACTIONS(2549), [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(2309), + [anon_sym_scoped] = ACTIONS(2349), [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(1077), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1067), + [anon_sym_var] = ACTIONS(2351), + [sym_predefined_type] = ACTIONS(2353), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1589), + [anon_sym_throw] = ACTIONS(1527), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1591), - [sym_discard] = ACTIONS(1083), + [anon_sym_await] = ACTIONS(1529), + [sym_discard] = ACTIONS(1081), [anon_sym_DOT_DOT] = ACTIONS(123), - [anon_sym_not] = ACTIONS(1127), + [anon_sym_not] = ACTIONS(2551), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -107052,7 +106938,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(1089), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -107069,98 +106955,98 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [400] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(5711), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2300), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5176), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_pattern] = STATE(6651), - [sym_constant_pattern] = STATE(3486), - [sym_parenthesized_pattern] = STATE(3486), - [sym_var_pattern] = STATE(3486), - [sym_type_pattern] = STATE(3486), - [sym_list_pattern] = STATE(3486), - [sym_recursive_pattern] = STATE(3486), - [sym_positional_pattern_clause] = STATE(5670), - [sym_property_pattern_clause] = STATE(5735), - [sym_relational_pattern] = STATE(3486), - [sym_negated_pattern] = STATE(3486), - [sym_and_pattern] = STATE(3486), - [sym_or_pattern] = STATE(3486), - [sym_declaration_pattern] = STATE(3486), - [sym_expression] = STATE(5674), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3520), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(5317), - [sym_postfix_unary_expression] = STATE(5122), - [sym_prefix_unary_expression] = STATE(5122), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6154), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(5317), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(5122), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(5317), - [sym_member_access_expression] = STATE(3508), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(5122), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7530), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(5317), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(5317), - [sym_typeof_expression] = STATE(5317), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(3508), - [sym_literal] = STATE(5317), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2243), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(2852), + [sym_alias_qualified_name] = STATE(2402), + [sym__simple_name] = STATE(2290), + [sym_qualified_name] = STATE(2402), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(2466), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(2373), + [sym__array_base_type] = STATE(7083), + [sym_nullable_type] = STATE(2375), + [sym_pointer_type] = STATE(2375), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(2375), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(2377), + [sym_pattern] = STATE(3796), + [sym_constant_pattern] = STATE(3801), + [sym_parenthesized_pattern] = STATE(3801), + [sym_var_pattern] = STATE(3801), + [sym_type_pattern] = STATE(3801), + [sym_list_pattern] = STATE(3801), + [sym_recursive_pattern] = STATE(3801), + [sym_positional_pattern_clause] = STATE(2544), + [sym_property_pattern_clause] = STATE(2596), + [sym_relational_pattern] = STATE(3801), + [sym_negated_pattern] = STATE(3801), + [sym_and_pattern] = STATE(3801), + [sym_or_pattern] = STATE(3801), + [sym_declaration_pattern] = STATE(3801), + [sym_expression] = STATE(5659), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3510), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3790), + [sym_postfix_unary_expression] = STATE(3791), + [sym_prefix_unary_expression] = STATE(3791), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6134), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3790), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3791), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3790), + [sym_member_access_expression] = STATE(2896), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3791), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7425), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(3790), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3790), + [sym_typeof_expression] = STATE(3790), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2896), + [sym_literal] = STATE(3790), + [sym_character_literal] = STATE(3843), + [sym_string_literal] = STATE(3843), + [sym_raw_string_literal] = STATE(3843), + [sym_boolean_literal] = STATE(3843), + [sym_identifier] = STATE(2178), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(400), [sym_preproc_endregion] = STATE(400), [sym_preproc_line] = STATE(400), @@ -107170,53 +107056,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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1049), - [anon_sym_LPAREN] = ACTIONS(2399), - [anon_sym_ref] = ACTIONS(2401), - [anon_sym_LBRACE] = ACTIONS(2403), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(2473), + [anon_sym_LPAREN] = ACTIONS(2573), + [anon_sym_ref] = ACTIONS(2341), + [anon_sym_LBRACE] = ACTIONS(2343), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1061), - [anon_sym_LT] = ACTIONS(2405), - [anon_sym_GT] = ACTIONS(2405), + [anon_sym_new] = ACTIONS(1059), + [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(1067), - [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(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1715), - [anon_sym_DASH] = ACTIONS(1715), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(1671), + [anon_sym_TILDE] = ACTIONS(1671), + [anon_sym_PLUS_PLUS] = ACTIONS(1671), + [anon_sym_DASH_DASH] = ACTIONS(1671), + [anon_sym_true] = ACTIONS(1673), + [anon_sym_false] = ACTIONS(1673), + [anon_sym_PLUS] = ACTIONS(1669), + [anon_sym_DASH] = ACTIONS(1669), [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(1717), - [anon_sym_AMP] = ACTIONS(1717), - [anon_sym_GT_EQ] = ACTIONS(2407), - [anon_sym_LT_EQ] = ACTIONS(2407), + [anon_sym_CARET] = ACTIONS(1671), + [anon_sym_AMP] = ACTIONS(1671), + [anon_sym_GT_EQ] = ACTIONS(2577), + [anon_sym_LT_EQ] = ACTIONS(2577), [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(2409), + [anon_sym_scoped] = ACTIONS(2349), [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(2411), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1067), + [anon_sym_var] = ACTIONS(2481), + [sym_predefined_type] = ACTIONS(2483), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1589), + [anon_sym_default] = ACTIONS(1683), + [anon_sym_throw] = ACTIONS(1527), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1591), - [sym_discard] = ACTIONS(1083), + [anon_sym_await] = ACTIONS(1529), + [sym_discard] = ACTIONS(2485), [anon_sym_DOT_DOT] = ACTIONS(123), - [anon_sym_not] = ACTIONS(2413), + [anon_sym_not] = ACTIONS(2579), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -107230,18 +107116,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(129), - [anon_sym_typeof] = ACTIONS(131), + [anon_sym_sizeof] = ACTIONS(1693), + [anon_sym_typeof] = ACTIONS(1695), [anon_sym___makeref] = ACTIONS(133), [anon_sym___reftype] = ACTIONS(135), [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1089), + [sym_null_literal] = ACTIONS(1703), + [anon_sym_SQUOTE] = ACTIONS(1705), + [sym_integer_literal] = ACTIONS(1703), + [sym_real_literal] = ACTIONS(1707), + [anon_sym_DQUOTE] = ACTIONS(1709), + [sym_verbatim_string_literal] = ACTIONS(1707), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -107252,104 +107138,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(1713), + [sym_interpolation_verbatim_start] = ACTIONS(1715), + [sym_interpolation_raw_start] = ACTIONS(1717), + [sym_raw_string_start] = ACTIONS(1719), }, [401] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(2621), - [sym_alias_qualified_name] = STATE(2373), - [sym__simple_name] = STATE(2191), - [sym_qualified_name] = STATE(2373), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(2242), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(2378), - [sym__array_base_type] = STATE(7103), - [sym_nullable_type] = STATE(2379), - [sym_pointer_type] = STATE(2379), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(2379), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(2380), - [sym_pattern] = STATE(3432), - [sym_constant_pattern] = STATE(3486), - [sym_parenthesized_pattern] = STATE(3486), - [sym_var_pattern] = STATE(3486), - [sym_type_pattern] = STATE(3486), - [sym_list_pattern] = STATE(3486), - [sym_recursive_pattern] = STATE(3486), - [sym_positional_pattern_clause] = STATE(2276), - [sym_property_pattern_clause] = STATE(2330), - [sym_relational_pattern] = STATE(3486), - [sym_negated_pattern] = STATE(3486), - [sym_and_pattern] = STATE(3486), - [sym_or_pattern] = STATE(3486), - [sym_declaration_pattern] = STATE(3486), - [sym_expression] = STATE(5701), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3520), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3455), - [sym_postfix_unary_expression] = STATE(3469), - [sym_prefix_unary_expression] = STATE(3469), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6154), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3455), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3469), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3455), - [sym_member_access_expression] = STATE(2719), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3469), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7530), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(3455), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3455), - [sym_typeof_expression] = STATE(3455), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2719), - [sym_literal] = STATE(3455), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2214), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(2428), + [sym_alias_qualified_name] = STATE(2402), + [sym__simple_name] = STATE(2184), + [sym_qualified_name] = STATE(2402), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(2468), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(2373), + [sym__array_base_type] = STATE(7083), + [sym_nullable_type] = STATE(2375), + [sym_pointer_type] = STATE(2375), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(2375), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(2377), + [sym_pattern] = STATE(3445), + [sym_constant_pattern] = STATE(3429), + [sym_parenthesized_pattern] = STATE(3429), + [sym_var_pattern] = STATE(3429), + [sym_type_pattern] = STATE(3429), + [sym_list_pattern] = STATE(3429), + [sym_recursive_pattern] = STATE(3429), + [sym_positional_pattern_clause] = STATE(2275), + [sym_property_pattern_clause] = STATE(2315), + [sym_relational_pattern] = STATE(3429), + [sym_negated_pattern] = STATE(3429), + [sym_and_pattern] = STATE(3429), + [sym_or_pattern] = STATE(3429), + [sym_declaration_pattern] = STATE(3429), + [sym_expression] = STATE(5653), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3510), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3397), + [sym_postfix_unary_expression] = STATE(3404), + [sym_prefix_unary_expression] = STATE(3404), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6134), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3397), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3404), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3397), + [sym_member_access_expression] = STATE(2686), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3404), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7425), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(3397), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3397), + [sym_typeof_expression] = STATE(3397), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2686), + [sym_literal] = STATE(3397), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2260), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(401), [sym_preproc_endregion] = STATE(401), [sym_preproc_line] = STATE(401), @@ -107359,53 +107245,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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1049), - [anon_sym_LPAREN] = ACTIONS(2579), - [anon_sym_ref] = ACTIONS(2389), - [anon_sym_LBRACE] = ACTIONS(2371), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_LPAREN] = ACTIONS(2553), + [anon_sym_ref] = ACTIONS(2499), + [anon_sym_LBRACE] = ACTIONS(2343), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1061), - [anon_sym_LT] = ACTIONS(2581), - [anon_sym_GT] = ACTIONS(2581), + [anon_sym_new] = ACTIONS(1059), + [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(1067), - [anon_sym_BANG] = ACTIONS(1795), - [anon_sym_TILDE] = ACTIONS(1795), - [anon_sym_PLUS_PLUS] = ACTIONS(1795), - [anon_sym_DASH_DASH] = ACTIONS(1795), + [anon_sym_checked] = ACTIONS(1065), + [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(1793), - [anon_sym_DASH] = ACTIONS(1793), + [anon_sym_PLUS] = ACTIONS(1617), + [anon_sym_DASH] = ACTIONS(1617), [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(1795), - [anon_sym_AMP] = ACTIONS(1795), - [anon_sym_GT_EQ] = ACTIONS(2583), - [anon_sym_LT_EQ] = ACTIONS(2583), + [anon_sym_CARET] = ACTIONS(1619), + [anon_sym_AMP] = ACTIONS(1619), + [anon_sym_GT_EQ] = ACTIONS(2557), + [anon_sym_LT_EQ] = ACTIONS(2557), [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(2395), + [anon_sym_scoped] = ACTIONS(2349), [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(2433), - [sym_predefined_type] = ACTIONS(2435), - [anon_sym_unchecked] = ACTIONS(1067), + [anon_sym_var] = ACTIONS(2501), + [sym_predefined_type] = ACTIONS(2353), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1589), + [anon_sym_throw] = ACTIONS(1527), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1591), - [sym_discard] = ACTIONS(1083), + [anon_sym_await] = ACTIONS(1529), + [sym_discard] = ACTIONS(1081), [anon_sym_DOT_DOT] = ACTIONS(123), - [anon_sym_not] = ACTIONS(2585), + [anon_sym_not] = ACTIONS(2559), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -107430,7 +107316,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(1089), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -107447,98 +107333,98 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [402] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(2621), - [sym_alias_qualified_name] = STATE(2373), - [sym__simple_name] = STATE(2191), - [sym_qualified_name] = STATE(2373), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(2242), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(2378), - [sym__array_base_type] = STATE(7103), - [sym_nullable_type] = STATE(2379), - [sym_pointer_type] = STATE(2379), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(2379), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(2380), - [sym_pattern] = STATE(5387), - [sym_constant_pattern] = STATE(3486), - [sym_parenthesized_pattern] = STATE(3486), - [sym_var_pattern] = STATE(3486), - [sym_type_pattern] = STATE(3486), - [sym_list_pattern] = STATE(3486), - [sym_recursive_pattern] = STATE(3486), - [sym_positional_pattern_clause] = STATE(2276), - [sym_property_pattern_clause] = STATE(2330), - [sym_relational_pattern] = STATE(3486), - [sym_negated_pattern] = STATE(3486), - [sym_and_pattern] = STATE(3486), - [sym_or_pattern] = STATE(3486), - [sym_declaration_pattern] = STATE(3486), - [sym_expression] = STATE(5701), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3520), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3455), - [sym_postfix_unary_expression] = STATE(3469), - [sym_prefix_unary_expression] = STATE(3469), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6154), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3455), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3469), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3455), - [sym_member_access_expression] = STATE(2719), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3469), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7530), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(3455), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3455), - [sym_typeof_expression] = STATE(3455), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2719), - [sym_literal] = STATE(3455), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2214), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(2849), + [sym_alias_qualified_name] = STATE(2402), + [sym__simple_name] = STATE(2285), + [sym_qualified_name] = STATE(2402), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(2457), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(2373), + [sym__array_base_type] = STATE(7083), + [sym_nullable_type] = STATE(2375), + [sym_pointer_type] = STATE(2375), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(2375), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(2377), + [sym_pattern] = STATE(5110), + [sym_constant_pattern] = STATE(3429), + [sym_parenthesized_pattern] = STATE(3429), + [sym_var_pattern] = STATE(3429), + [sym_type_pattern] = STATE(3429), + [sym_list_pattern] = STATE(3429), + [sym_recursive_pattern] = STATE(3429), + [sym_positional_pattern_clause] = STATE(2528), + [sym_property_pattern_clause] = STATE(2589), + [sym_relational_pattern] = STATE(3429), + [sym_negated_pattern] = STATE(3429), + [sym_and_pattern] = STATE(3429), + [sym_or_pattern] = STATE(3429), + [sym_declaration_pattern] = STATE(3429), + [sym_expression] = STATE(5654), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3510), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3397), + [sym_postfix_unary_expression] = STATE(3404), + [sym_prefix_unary_expression] = STATE(3404), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6134), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3397), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3404), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3397), + [sym_member_access_expression] = STATE(2686), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3404), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7425), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(3397), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3397), + [sym_typeof_expression] = STATE(3397), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2686), + [sym_literal] = STATE(3397), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2260), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(402), [sym_preproc_endregion] = STATE(402), [sym_preproc_line] = STATE(402), @@ -107548,53 +107434,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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1049), - [anon_sym_LPAREN] = ACTIONS(2579), - [anon_sym_ref] = ACTIONS(2389), - [anon_sym_LBRACE] = ACTIONS(2371), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_LPAREN] = ACTIONS(2497), + [anon_sym_ref] = ACTIONS(2499), + [anon_sym_LBRACE] = ACTIONS(2343), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1061), - [anon_sym_LT] = ACTIONS(2581), - [anon_sym_GT] = ACTIONS(2581), + [anon_sym_new] = ACTIONS(1059), + [anon_sym_LT] = ACTIONS(1995), + [anon_sym_GT] = ACTIONS(1995), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1067), - [anon_sym_BANG] = ACTIONS(1795), - [anon_sym_TILDE] = ACTIONS(1795), - [anon_sym_PLUS_PLUS] = ACTIONS(1795), - [anon_sym_DASH_DASH] = ACTIONS(1795), + [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(1793), - [anon_sym_DASH] = ACTIONS(1793), + [anon_sym_PLUS] = ACTIONS(1585), + [anon_sym_DASH] = ACTIONS(1585), [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(1795), - [anon_sym_AMP] = ACTIONS(1795), - [anon_sym_GT_EQ] = ACTIONS(2583), - [anon_sym_LT_EQ] = ACTIONS(2583), + [anon_sym_CARET] = ACTIONS(1587), + [anon_sym_AMP] = ACTIONS(1587), + [anon_sym_GT_EQ] = ACTIONS(1997), + [anon_sym_LT_EQ] = ACTIONS(1997), [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(2395), + [anon_sym_scoped] = ACTIONS(2349), [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(2433), - [sym_predefined_type] = ACTIONS(2435), - [anon_sym_unchecked] = ACTIONS(1067), + [anon_sym_var] = ACTIONS(2501), + [sym_predefined_type] = ACTIONS(2353), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1589), + [anon_sym_throw] = ACTIONS(1527), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1591), - [sym_discard] = ACTIONS(1083), + [anon_sym_await] = ACTIONS(1529), + [sym_discard] = ACTIONS(1081), [anon_sym_DOT_DOT] = ACTIONS(123), - [anon_sym_not] = ACTIONS(2585), + [anon_sym_not] = ACTIONS(2503), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -107619,7 +107505,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(1089), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -107636,98 +107522,98 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [403] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(2621), - [sym_alias_qualified_name] = STATE(2373), - [sym__simple_name] = STATE(2191), - [sym_qualified_name] = STATE(2373), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(2249), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(2378), - [sym__array_base_type] = STATE(7103), - [sym_nullable_type] = STATE(2379), - [sym_pointer_type] = STATE(2379), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(2379), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(2380), - [sym_pattern] = STATE(4742), - [sym_constant_pattern] = STATE(3486), - [sym_parenthesized_pattern] = STATE(3486), - [sym_var_pattern] = STATE(3486), - [sym_type_pattern] = STATE(3486), - [sym_list_pattern] = STATE(3486), - [sym_recursive_pattern] = STATE(3486), - [sym_positional_pattern_clause] = STATE(2276), - [sym_property_pattern_clause] = STATE(2330), - [sym_relational_pattern] = STATE(3486), - [sym_negated_pattern] = STATE(3486), - [sym_and_pattern] = STATE(3486), - [sym_or_pattern] = STATE(3486), - [sym_declaration_pattern] = STATE(3486), - [sym_expression] = STATE(5678), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3520), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3455), - [sym_postfix_unary_expression] = STATE(3469), - [sym_prefix_unary_expression] = STATE(3469), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6154), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3455), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3469), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3455), - [sym_member_access_expression] = STATE(2719), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3469), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7530), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(3455), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3455), - [sym_typeof_expression] = STATE(3455), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2719), - [sym_literal] = STATE(3455), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2214), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(2849), + [sym_alias_qualified_name] = STATE(2402), + [sym__simple_name] = STATE(2285), + [sym_qualified_name] = STATE(2402), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(2457), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(2373), + [sym__array_base_type] = STATE(7083), + [sym_nullable_type] = STATE(2375), + [sym_pointer_type] = STATE(2375), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(2375), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(2377), + [sym_pattern] = STATE(3407), + [sym_constant_pattern] = STATE(3429), + [sym_parenthesized_pattern] = STATE(3429), + [sym_var_pattern] = STATE(3429), + [sym_type_pattern] = STATE(3429), + [sym_list_pattern] = STATE(3429), + [sym_recursive_pattern] = STATE(3429), + [sym_positional_pattern_clause] = STATE(2528), + [sym_property_pattern_clause] = STATE(2589), + [sym_relational_pattern] = STATE(3429), + [sym_negated_pattern] = STATE(3429), + [sym_and_pattern] = STATE(3429), + [sym_or_pattern] = STATE(3429), + [sym_declaration_pattern] = STATE(3429), + [sym_expression] = STATE(5654), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3510), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3397), + [sym_postfix_unary_expression] = STATE(3404), + [sym_prefix_unary_expression] = STATE(3404), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6134), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3397), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3404), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3397), + [sym_member_access_expression] = STATE(2686), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3404), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7425), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(3397), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3397), + [sym_typeof_expression] = STATE(3397), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2686), + [sym_literal] = STATE(3397), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2260), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(403), [sym_preproc_endregion] = STATE(403), [sym_preproc_line] = STATE(403), @@ -107737,53 +107623,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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1049), - [anon_sym_LPAREN] = ACTIONS(2529), - [anon_sym_ref] = ACTIONS(2389), - [anon_sym_LBRACE] = ACTIONS(2371), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_LPAREN] = ACTIONS(2497), + [anon_sym_ref] = ACTIONS(2499), + [anon_sym_LBRACE] = ACTIONS(2343), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1061), - [anon_sym_LT] = ACTIONS(2531), - [anon_sym_GT] = ACTIONS(2531), + [anon_sym_new] = ACTIONS(1059), + [anon_sym_LT] = ACTIONS(1995), + [anon_sym_GT] = ACTIONS(1995), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1067), - [anon_sym_BANG] = ACTIONS(1107), - [anon_sym_TILDE] = ACTIONS(1107), - [anon_sym_PLUS_PLUS] = ACTIONS(1107), - [anon_sym_DASH_DASH] = ACTIONS(1107), + [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(1109), - [anon_sym_DASH] = ACTIONS(1109), + [anon_sym_PLUS] = ACTIONS(1585), + [anon_sym_DASH] = ACTIONS(1585), [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(1107), - [anon_sym_AMP] = ACTIONS(1107), - [anon_sym_GT_EQ] = ACTIONS(2533), - [anon_sym_LT_EQ] = ACTIONS(2533), + [anon_sym_CARET] = ACTIONS(1587), + [anon_sym_AMP] = ACTIONS(1587), + [anon_sym_GT_EQ] = ACTIONS(1997), + [anon_sym_LT_EQ] = ACTIONS(1997), [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(2395), + [anon_sym_scoped] = ACTIONS(2349), [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(2433), - [sym_predefined_type] = ACTIONS(2435), - [anon_sym_unchecked] = ACTIONS(1067), + [anon_sym_var] = ACTIONS(2501), + [sym_predefined_type] = ACTIONS(2353), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1589), + [anon_sym_throw] = ACTIONS(1527), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1591), - [sym_discard] = ACTIONS(1083), + [anon_sym_await] = ACTIONS(1529), + [sym_discard] = ACTIONS(1081), [anon_sym_DOT_DOT] = ACTIONS(123), - [anon_sym_not] = ACTIONS(2535), + [anon_sym_not] = ACTIONS(2503), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -107808,7 +107694,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(1089), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -107825,98 +107711,98 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [404] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(2426), - [sym_alias_qualified_name] = STATE(2373), - [sym__simple_name] = STATE(2189), - [sym_qualified_name] = STATE(2373), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(2482), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(2378), - [sym__array_base_type] = STATE(7103), - [sym_nullable_type] = STATE(2379), - [sym_pointer_type] = STATE(2379), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(2379), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(2380), - [sym_pattern] = STATE(5201), - [sym_constant_pattern] = STATE(3295), - [sym_parenthesized_pattern] = STATE(3295), - [sym_var_pattern] = STATE(3295), - [sym_type_pattern] = STATE(3295), - [sym_list_pattern] = STATE(3295), - [sym_recursive_pattern] = STATE(3295), - [sym_positional_pattern_clause] = STATE(2251), - [sym_property_pattern_clause] = STATE(2302), - [sym_relational_pattern] = STATE(3295), - [sym_negated_pattern] = STATE(3295), - [sym_and_pattern] = STATE(3295), - [sym_or_pattern] = STATE(3295), - [sym_declaration_pattern] = STATE(3295), - [sym_expression] = STATE(5699), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3520), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3310), - [sym_postfix_unary_expression] = STATE(3312), - [sym_prefix_unary_expression] = STATE(3312), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6154), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3310), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3312), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3310), - [sym_member_access_expression] = STATE(2617), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3312), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7530), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(3310), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3310), - [sym_typeof_expression] = STATE(3310), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2617), - [sym_literal] = STATE(3310), - [sym_character_literal] = STATE(3278), - [sym_string_literal] = STATE(3278), - [sym_raw_string_literal] = STATE(3278), - [sym_boolean_literal] = STATE(3278), - [sym_identifier] = STATE(2258), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(2428), + [sym_alias_qualified_name] = STATE(2402), + [sym__simple_name] = STATE(2184), + [sym_qualified_name] = STATE(2402), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(2235), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(2373), + [sym__array_base_type] = STATE(7083), + [sym_nullable_type] = STATE(2375), + [sym_pointer_type] = STATE(2375), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(2375), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(2377), + [sym_pattern] = STATE(4470), + [sym_constant_pattern] = STATE(3429), + [sym_parenthesized_pattern] = STATE(3429), + [sym_var_pattern] = STATE(3429), + [sym_type_pattern] = STATE(3429), + [sym_list_pattern] = STATE(3429), + [sym_recursive_pattern] = STATE(3429), + [sym_positional_pattern_clause] = STATE(2275), + [sym_property_pattern_clause] = STATE(2315), + [sym_relational_pattern] = STATE(3429), + [sym_negated_pattern] = STATE(3429), + [sym_and_pattern] = STATE(3429), + [sym_or_pattern] = STATE(3429), + [sym_declaration_pattern] = STATE(3429), + [sym_expression] = STATE(5682), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3510), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3397), + [sym_postfix_unary_expression] = STATE(3404), + [sym_prefix_unary_expression] = STATE(3404), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6134), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3397), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3404), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3397), + [sym_member_access_expression] = STATE(2686), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3404), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7425), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(3397), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3397), + [sym_typeof_expression] = STATE(3397), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2686), + [sym_literal] = STATE(3397), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2178), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(404), [sym_preproc_endregion] = STATE(404), [sym_preproc_line] = STATE(404), @@ -107926,53 +107812,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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(2365), - [anon_sym_LPAREN] = ACTIONS(2447), - [anon_sym_ref] = ACTIONS(2449), - [anon_sym_LBRACE] = ACTIONS(2371), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_LPAREN] = ACTIONS(2373), + [anon_sym_ref] = ACTIONS(2341), + [anon_sym_LBRACE] = ACTIONS(2343), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1061), - [anon_sym_LT] = ACTIONS(2451), - [anon_sym_GT] = ACTIONS(2451), + [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(1067), - [anon_sym_BANG] = ACTIONS(1599), - [anon_sym_TILDE] = ACTIONS(1599), - [anon_sym_PLUS_PLUS] = ACTIONS(1599), - [anon_sym_DASH_DASH] = ACTIONS(1599), - [anon_sym_true] = ACTIONS(1173), - [anon_sym_false] = ACTIONS(1173), - [anon_sym_PLUS] = ACTIONS(1597), - [anon_sym_DASH] = ACTIONS(1597), + [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_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(1599), - [anon_sym_AMP] = ACTIONS(1599), - [anon_sym_GT_EQ] = ACTIONS(2453), - [anon_sym_LT_EQ] = ACTIONS(2453), + [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(2377), + [anon_sym_scoped] = ACTIONS(2349), [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(2455), - [sym_predefined_type] = ACTIONS(2381), - [anon_sym_unchecked] = ACTIONS(1067), + [anon_sym_var] = ACTIONS(2351), + [sym_predefined_type] = ACTIONS(2353), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1183), - [anon_sym_throw] = ACTIONS(1589), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(1527), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1591), - [sym_discard] = ACTIONS(2383), + [anon_sym_await] = ACTIONS(1529), + [sym_discard] = ACTIONS(1081), [anon_sym_DOT_DOT] = ACTIONS(123), - [anon_sym_not] = ACTIONS(2457), + [anon_sym_not] = ACTIONS(2375), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -107986,18 +107872,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(1193), - [anon_sym_typeof] = ACTIONS(1195), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), [anon_sym___makeref] = ACTIONS(133), [anon_sym___reftype] = ACTIONS(135), [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(1203), - [anon_sym_SQUOTE] = ACTIONS(1205), - [sym_integer_literal] = ACTIONS(1203), - [sym_real_literal] = ACTIONS(1207), - [anon_sym_DQUOTE] = ACTIONS(1209), - [sym_verbatim_string_literal] = ACTIONS(1207), - [aux_sym_preproc_if_token1] = ACTIONS(1089), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_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), @@ -108008,104 +107894,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(1213), - [sym_interpolation_verbatim_start] = ACTIONS(1215), - [sym_interpolation_raw_start] = ACTIONS(1217), - [sym_raw_string_start] = ACTIONS(1219), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [sym_interpolation_raw_start] = ACTIONS(155), + [sym_raw_string_start] = ACTIONS(157), }, [405] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(2621), - [sym_alias_qualified_name] = STATE(2373), - [sym__simple_name] = STATE(2191), - [sym_qualified_name] = STATE(2373), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(2242), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(2378), - [sym__array_base_type] = STATE(7103), - [sym_nullable_type] = STATE(2379), - [sym_pointer_type] = STATE(2379), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(2379), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(2380), - [sym_pattern] = STATE(4744), - [sym_constant_pattern] = STATE(3486), - [sym_parenthesized_pattern] = STATE(3486), - [sym_var_pattern] = STATE(3486), - [sym_type_pattern] = STATE(3486), - [sym_list_pattern] = STATE(3486), - [sym_recursive_pattern] = STATE(3486), - [sym_positional_pattern_clause] = STATE(2276), - [sym_property_pattern_clause] = STATE(2330), - [sym_relational_pattern] = STATE(3486), - [sym_negated_pattern] = STATE(3486), - [sym_and_pattern] = STATE(3486), - [sym_or_pattern] = STATE(3486), - [sym_declaration_pattern] = STATE(3486), - [sym_expression] = STATE(5678), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3520), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3455), - [sym_postfix_unary_expression] = STATE(3469), - [sym_prefix_unary_expression] = STATE(3469), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6154), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3455), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3469), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3455), - [sym_member_access_expression] = STATE(2719), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3469), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7530), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(3455), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3455), - [sym_typeof_expression] = STATE(3455), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2719), - [sym_literal] = STATE(3455), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2214), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(2817), + [sym_alias_qualified_name] = STATE(2821), + [sym__simple_name] = STATE(2258), + [sym_qualified_name] = STATE(2821), + [sym_generic_name] = STATE(2262), + [sym_type] = STATE(2372), + [sym_implicit_type] = STATE(2701), + [sym_array_type] = STATE(2822), + [sym__array_base_type] = STATE(7081), + [sym_nullable_type] = STATE(2823), + [sym_pointer_type] = STATE(2823), + [sym__pointer_base_type] = STATE(7400), + [sym_function_pointer_type] = STATE(2823), + [sym_ref_type] = STATE(2701), + [sym_scoped_type] = STATE(2701), + [sym_tuple_type] = STATE(2825), + [sym_pattern] = STATE(4548), + [sym_constant_pattern] = STATE(4727), + [sym_parenthesized_pattern] = STATE(4727), + [sym_var_pattern] = STATE(4727), + [sym_type_pattern] = STATE(4727), + [sym_list_pattern] = STATE(4727), + [sym_recursive_pattern] = STATE(4727), + [sym_positional_pattern_clause] = STATE(2506), + [sym_property_pattern_clause] = STATE(2549), + [sym_relational_pattern] = STATE(4727), + [sym_negated_pattern] = STATE(4727), + [sym_and_pattern] = STATE(4727), + [sym_or_pattern] = STATE(4727), + [sym_declaration_pattern] = STATE(4727), + [sym_expression] = STATE(5687), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3510), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(4509), + [sym_postfix_unary_expression] = STATE(4510), + [sym_prefix_unary_expression] = STATE(4510), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6134), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(4509), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(4510), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(4509), + [sym_member_access_expression] = STATE(3207), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(4510), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7425), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(4509), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(4509), + [sym_typeof_expression] = STATE(4509), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(3207), + [sym_literal] = STATE(4509), + [sym_character_literal] = STATE(4575), + [sym_string_literal] = STATE(4575), + [sym_raw_string_literal] = STATE(4575), + [sym_boolean_literal] = STATE(4575), + [sym_identifier] = STATE(2219), + [sym__reserved_identifier] = STATE(2229), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(405), [sym_preproc_endregion] = STATE(405), [sym_preproc_line] = STATE(405), @@ -108115,78 +108001,78 @@ 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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), - [sym__identifier_token] = ACTIONS(25), - [anon_sym_alias] = ACTIONS(29), - [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1049), - [anon_sym_LPAREN] = ACTIONS(2529), - [anon_sym_ref] = ACTIONS(2389), - [anon_sym_LBRACE] = ACTIONS(2371), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), - [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = 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(1067), - [anon_sym_BANG] = ACTIONS(1107), - [anon_sym_TILDE] = ACTIONS(1107), - [anon_sym_PLUS_PLUS] = ACTIONS(1107), - [anon_sym_DASH_DASH] = ACTIONS(1107), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1109), - [anon_sym_DASH] = ACTIONS(1109), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), + [sym__identifier_token] = ACTIONS(1385), + [anon_sym_alias] = ACTIONS(1387), + [anon_sym_global] = ACTIONS(1387), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(2401), + [anon_sym_LPAREN] = ACTIONS(2403), + [anon_sym_ref] = ACTIONS(2405), + [anon_sym_LBRACE] = ACTIONS(2407), + [anon_sym_delegate] = ACTIONS(2409), + [anon_sym_async] = ACTIONS(1045), + [anon_sym_file] = ACTIONS(1387), + [anon_sym_new] = ACTIONS(1059), + [anon_sym_LT] = ACTIONS(2411), + [anon_sym_GT] = ACTIONS(2411), + [anon_sym_where] = ACTIONS(1387), + [anon_sym_notnull] = ACTIONS(1387), + [anon_sym_unmanaged] = ACTIONS(1387), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(1469), + [anon_sym_TILDE] = ACTIONS(1469), + [anon_sym_PLUS_PLUS] = ACTIONS(1469), + [anon_sym_DASH_DASH] = ACTIONS(1469), + [anon_sym_true] = ACTIONS(1407), + [anon_sym_false] = ACTIONS(1407), + [anon_sym_PLUS] = ACTIONS(1467), + [anon_sym_DASH] = ACTIONS(1467), [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(1107), - [anon_sym_AMP] = ACTIONS(1107), - [anon_sym_GT_EQ] = ACTIONS(2533), - [anon_sym_LT_EQ] = ACTIONS(2533), + [anon_sym_CARET] = ACTIONS(1469), + [anon_sym_AMP] = ACTIONS(1469), + [anon_sym_GT_EQ] = ACTIONS(2413), + [anon_sym_LT_EQ] = ACTIONS(2413), [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(2395), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(2433), - [sym_predefined_type] = ACTIONS(2435), - [anon_sym_unchecked] = ACTIONS(1067), - [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1589), - [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1591), - [sym_discard] = ACTIONS(1083), + [anon_sym_scoped] = ACTIONS(2415), + [anon_sym_base] = ACTIONS(87), + [anon_sym_var] = ACTIONS(2417), + [sym_predefined_type] = ACTIONS(2419), + [anon_sym_unchecked] = ACTIONS(1065), + [anon_sym_yield] = ACTIONS(1387), + [anon_sym_default] = ACTIONS(1421), + [anon_sym_throw] = ACTIONS(1527), + [anon_sym_when] = ACTIONS(1387), + [anon_sym_await] = ACTIONS(1529), + [sym_discard] = ACTIONS(2421), [anon_sym_DOT_DOT] = ACTIONS(123), - [anon_sym_not] = ACTIONS(2535), - [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(2423), + [anon_sym_from] = ACTIONS(1429), + [anon_sym_into] = ACTIONS(1387), + [anon_sym_join] = ACTIONS(1387), + [anon_sym_on] = ACTIONS(1387), + [anon_sym_equals] = ACTIONS(1387), + [anon_sym_let] = ACTIONS(1387), + [anon_sym_orderby] = ACTIONS(1387), + [anon_sym_ascending] = ACTIONS(1387), + [anon_sym_descending] = ACTIONS(1387), + [anon_sym_group] = ACTIONS(1387), + [anon_sym_by] = ACTIONS(1387), + [anon_sym_select] = ACTIONS(1387), [anon_sym_stackalloc] = ACTIONS(127), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), + [anon_sym_sizeof] = ACTIONS(1433), + [anon_sym_typeof] = ACTIONS(1435), [anon_sym___makeref] = ACTIONS(133), [anon_sym___reftype] = ACTIONS(135), [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1089), + [sym_null_literal] = ACTIONS(1443), + [anon_sym_SQUOTE] = ACTIONS(1445), + [sym_integer_literal] = ACTIONS(1443), + [sym_real_literal] = ACTIONS(1447), + [anon_sym_DQUOTE] = ACTIONS(1449), + [sym_verbatim_string_literal] = ACTIONS(1447), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -108197,104 +108083,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(1453), + [sym_interpolation_verbatim_start] = ACTIONS(1455), + [sym_interpolation_raw_start] = ACTIONS(1457), + [sym_raw_string_start] = ACTIONS(1459), }, [406] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(2621), - [sym_alias_qualified_name] = STATE(2373), - [sym__simple_name] = STATE(2191), - [sym_qualified_name] = STATE(2373), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(2242), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(2378), - [sym__array_base_type] = STATE(7103), - [sym_nullable_type] = STATE(2379), - [sym_pointer_type] = STATE(2379), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(2379), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(2380), - [sym_pattern] = STATE(3432), - [sym_constant_pattern] = STATE(3486), - [sym_parenthesized_pattern] = STATE(3486), - [sym_var_pattern] = STATE(3486), - [sym_type_pattern] = STATE(3486), - [sym_list_pattern] = STATE(3486), - [sym_recursive_pattern] = STATE(3486), - [sym_positional_pattern_clause] = STATE(2276), - [sym_property_pattern_clause] = STATE(2330), - [sym_relational_pattern] = STATE(3486), - [sym_negated_pattern] = STATE(3486), - [sym_and_pattern] = STATE(3486), - [sym_or_pattern] = STATE(3486), - [sym_declaration_pattern] = STATE(3486), - [sym_expression] = STATE(5678), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3520), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3455), - [sym_postfix_unary_expression] = STATE(3469), - [sym_prefix_unary_expression] = STATE(3469), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6154), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3455), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3469), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3455), - [sym_member_access_expression] = STATE(2719), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3469), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7530), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(3455), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3455), - [sym_typeof_expression] = STATE(3455), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2719), - [sym_literal] = STATE(3455), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2214), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(2410), + [sym_alias_qualified_name] = STATE(2402), + [sym__simple_name] = STATE(2185), + [sym_qualified_name] = STATE(2402), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(2449), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(2373), + [sym__array_base_type] = STATE(7083), + [sym_nullable_type] = STATE(2375), + [sym_pointer_type] = STATE(2375), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(2375), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(2377), + [sym_pattern] = STATE(3247), + [sym_constant_pattern] = STATE(3311), + [sym_parenthesized_pattern] = STATE(3311), + [sym_var_pattern] = STATE(3311), + [sym_type_pattern] = STATE(3311), + [sym_list_pattern] = STATE(3311), + [sym_recursive_pattern] = STATE(3311), + [sym_positional_pattern_clause] = STATE(2257), + [sym_property_pattern_clause] = STATE(2289), + [sym_relational_pattern] = STATE(3311), + [sym_negated_pattern] = STATE(3311), + [sym_and_pattern] = STATE(3311), + [sym_or_pattern] = STATE(3311), + [sym_declaration_pattern] = STATE(3311), + [sym_expression] = STATE(5658), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3510), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3275), + [sym_postfix_unary_expression] = STATE(3276), + [sym_prefix_unary_expression] = STATE(3276), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6134), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3275), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3276), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3275), + [sym_member_access_expression] = STATE(2608), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3276), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7425), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(3275), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3275), + [sym_typeof_expression] = STATE(3275), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2608), + [sym_literal] = STATE(3275), + [sym_character_literal] = STATE(3272), + [sym_string_literal] = STATE(3272), + [sym_raw_string_literal] = STATE(3272), + [sym_boolean_literal] = STATE(3272), + [sym_identifier] = STATE(2260), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(406), [sym_preproc_endregion] = STATE(406), [sym_preproc_line] = STATE(406), @@ -108304,53 +108190,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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1049), - [anon_sym_LPAREN] = ACTIONS(2529), - [anon_sym_ref] = ACTIONS(2389), - [anon_sym_LBRACE] = ACTIONS(2371), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(2357), + [anon_sym_LPAREN] = ACTIONS(2505), + [anon_sym_ref] = ACTIONS(2499), + [anon_sym_LBRACE] = ACTIONS(2343), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1061), - [anon_sym_LT] = ACTIONS(2531), - [anon_sym_GT] = ACTIONS(2531), + [anon_sym_new] = ACTIONS(1059), + [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(1067), - [anon_sym_BANG] = ACTIONS(1107), - [anon_sym_TILDE] = ACTIONS(1107), - [anon_sym_PLUS_PLUS] = ACTIONS(1107), - [anon_sym_DASH_DASH] = ACTIONS(1107), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1109), - [anon_sym_DASH] = ACTIONS(1109), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(1555), + [anon_sym_TILDE] = ACTIONS(1555), + [anon_sym_PLUS_PLUS] = ACTIONS(1555), + [anon_sym_DASH_DASH] = ACTIONS(1555), + [anon_sym_true] = ACTIONS(1169), + [anon_sym_false] = ACTIONS(1169), + [anon_sym_PLUS] = ACTIONS(1553), + [anon_sym_DASH] = ACTIONS(1553), [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(1107), - [anon_sym_AMP] = ACTIONS(1107), - [anon_sym_GT_EQ] = ACTIONS(2533), - [anon_sym_LT_EQ] = ACTIONS(2533), + [anon_sym_CARET] = ACTIONS(1555), + [anon_sym_AMP] = ACTIONS(1555), + [anon_sym_GT_EQ] = ACTIONS(2509), + [anon_sym_LT_EQ] = ACTIONS(2509), [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(2395), + [anon_sym_scoped] = ACTIONS(2349), [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(2433), - [sym_predefined_type] = ACTIONS(2435), - [anon_sym_unchecked] = ACTIONS(1067), + [anon_sym_var] = ACTIONS(2511), + [sym_predefined_type] = ACTIONS(2367), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1589), + [anon_sym_default] = ACTIONS(1179), + [anon_sym_throw] = ACTIONS(1527), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1591), - [sym_discard] = ACTIONS(1083), + [anon_sym_await] = ACTIONS(1529), + [sym_discard] = ACTIONS(2369), [anon_sym_DOT_DOT] = ACTIONS(123), - [anon_sym_not] = ACTIONS(2535), + [anon_sym_not] = ACTIONS(2513), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -108364,18 +108250,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(129), - [anon_sym_typeof] = ACTIONS(131), + [anon_sym_sizeof] = ACTIONS(1189), + [anon_sym_typeof] = ACTIONS(1191), [anon_sym___makeref] = ACTIONS(133), [anon_sym___reftype] = ACTIONS(135), [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1089), + [sym_null_literal] = ACTIONS(1199), + [anon_sym_SQUOTE] = ACTIONS(1201), + [sym_integer_literal] = ACTIONS(1199), + [sym_real_literal] = ACTIONS(1203), + [anon_sym_DQUOTE] = ACTIONS(1205), + [sym_verbatim_string_literal] = ACTIONS(1203), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -108386,104 +108272,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(1209), + [sym_interpolation_verbatim_start] = ACTIONS(1211), + [sym_interpolation_raw_start] = ACTIONS(1213), + [sym_raw_string_start] = ACTIONS(1215), }, [407] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(2621), - [sym_alias_qualified_name] = STATE(2373), - [sym__simple_name] = STATE(2191), - [sym_qualified_name] = STATE(2373), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(2242), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(2378), - [sym__array_base_type] = STATE(7103), - [sym_nullable_type] = STATE(2379), - [sym_pointer_type] = STATE(2379), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(2379), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(2380), - [sym_pattern] = STATE(4666), - [sym_constant_pattern] = STATE(3486), - [sym_parenthesized_pattern] = STATE(3486), - [sym_var_pattern] = STATE(3486), - [sym_type_pattern] = STATE(3486), - [sym_list_pattern] = STATE(3486), - [sym_recursive_pattern] = STATE(3486), - [sym_positional_pattern_clause] = STATE(2276), - [sym_property_pattern_clause] = STATE(2330), - [sym_relational_pattern] = STATE(3486), - [sym_negated_pattern] = STATE(3486), - [sym_and_pattern] = STATE(3486), - [sym_or_pattern] = STATE(3486), - [sym_declaration_pattern] = STATE(3486), - [sym_expression] = STATE(5678), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3520), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3455), - [sym_postfix_unary_expression] = STATE(3469), - [sym_prefix_unary_expression] = STATE(3469), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6154), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3455), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3469), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3455), - [sym_member_access_expression] = STATE(2719), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3469), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7530), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(3455), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3455), - [sym_typeof_expression] = STATE(3455), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2719), - [sym_literal] = STATE(3455), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2214), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(2849), + [sym_alias_qualified_name] = STATE(2402), + [sym__simple_name] = STATE(2285), + [sym_qualified_name] = STATE(2402), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(2457), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(2373), + [sym__array_base_type] = STATE(7083), + [sym_nullable_type] = STATE(2375), + [sym_pointer_type] = STATE(2375), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(2375), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(2377), + [sym_pattern] = STATE(5249), + [sym_constant_pattern] = STATE(3429), + [sym_parenthesized_pattern] = STATE(3429), + [sym_var_pattern] = STATE(3429), + [sym_type_pattern] = STATE(3429), + [sym_list_pattern] = STATE(3429), + [sym_recursive_pattern] = STATE(3429), + [sym_positional_pattern_clause] = STATE(2528), + [sym_property_pattern_clause] = STATE(2589), + [sym_relational_pattern] = STATE(3429), + [sym_negated_pattern] = STATE(3429), + [sym_and_pattern] = STATE(3429), + [sym_or_pattern] = STATE(3429), + [sym_declaration_pattern] = STATE(3429), + [sym_expression] = STATE(5654), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3510), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3397), + [sym_postfix_unary_expression] = STATE(3404), + [sym_prefix_unary_expression] = STATE(3404), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6134), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3397), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3404), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3397), + [sym_member_access_expression] = STATE(2686), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3404), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7425), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(3397), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3397), + [sym_typeof_expression] = STATE(3397), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2686), + [sym_literal] = STATE(3397), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2260), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(407), [sym_preproc_endregion] = STATE(407), [sym_preproc_line] = STATE(407), @@ -108493,53 +108379,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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1049), - [anon_sym_LPAREN] = ACTIONS(2529), - [anon_sym_ref] = ACTIONS(2389), - [anon_sym_LBRACE] = ACTIONS(2371), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_LPAREN] = ACTIONS(2497), + [anon_sym_ref] = ACTIONS(2499), + [anon_sym_LBRACE] = ACTIONS(2343), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1061), - [anon_sym_LT] = ACTIONS(2531), - [anon_sym_GT] = ACTIONS(2531), + [anon_sym_new] = ACTIONS(1059), + [anon_sym_LT] = ACTIONS(1995), + [anon_sym_GT] = ACTIONS(1995), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1067), - [anon_sym_BANG] = ACTIONS(1107), - [anon_sym_TILDE] = ACTIONS(1107), - [anon_sym_PLUS_PLUS] = ACTIONS(1107), - [anon_sym_DASH_DASH] = ACTIONS(1107), + [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(1109), - [anon_sym_DASH] = ACTIONS(1109), + [anon_sym_PLUS] = ACTIONS(1585), + [anon_sym_DASH] = ACTIONS(1585), [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(1107), - [anon_sym_AMP] = ACTIONS(1107), - [anon_sym_GT_EQ] = ACTIONS(2533), - [anon_sym_LT_EQ] = ACTIONS(2533), + [anon_sym_CARET] = ACTIONS(1587), + [anon_sym_AMP] = ACTIONS(1587), + [anon_sym_GT_EQ] = ACTIONS(1997), + [anon_sym_LT_EQ] = ACTIONS(1997), [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(2395), + [anon_sym_scoped] = ACTIONS(2349), [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(2433), - [sym_predefined_type] = ACTIONS(2435), - [anon_sym_unchecked] = ACTIONS(1067), + [anon_sym_var] = ACTIONS(2501), + [sym_predefined_type] = ACTIONS(2353), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1589), + [anon_sym_throw] = ACTIONS(1527), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1591), - [sym_discard] = ACTIONS(1083), + [anon_sym_await] = ACTIONS(1529), + [sym_discard] = ACTIONS(1081), [anon_sym_DOT_DOT] = ACTIONS(123), - [anon_sym_not] = ACTIONS(2535), + [anon_sym_not] = ACTIONS(2503), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -108564,7 +108450,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(1089), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -108581,98 +108467,98 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [408] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(2421), - [sym_alias_qualified_name] = STATE(2373), - [sym__simple_name] = STATE(2191), - [sym_qualified_name] = STATE(2373), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(2463), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(2378), - [sym__array_base_type] = STATE(7103), - [sym_nullable_type] = STATE(2379), - [sym_pointer_type] = STATE(2379), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(2379), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(2380), - [sym_pattern] = STATE(3432), - [sym_constant_pattern] = STATE(3486), - [sym_parenthesized_pattern] = STATE(3486), - [sym_var_pattern] = STATE(3486), - [sym_type_pattern] = STATE(3486), - [sym_list_pattern] = STATE(3486), - [sym_recursive_pattern] = STATE(3486), - [sym_positional_pattern_clause] = STATE(2565), - [sym_property_pattern_clause] = STATE(2650), - [sym_relational_pattern] = STATE(3486), - [sym_negated_pattern] = STATE(3486), - [sym_and_pattern] = STATE(3486), - [sym_or_pattern] = STATE(3486), - [sym_declaration_pattern] = STATE(3486), - [sym_expression] = STATE(5700), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3520), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3455), - [sym_postfix_unary_expression] = STATE(3469), - [sym_prefix_unary_expression] = STATE(3469), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6154), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3455), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3469), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3455), - [sym_member_access_expression] = STATE(2719), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3469), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7530), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(3455), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3455), - [sym_typeof_expression] = STATE(3455), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2719), - [sym_literal] = STATE(3455), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2186), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(2883), + [sym_alias_qualified_name] = STATE(2402), + [sym__simple_name] = STATE(2323), + [sym_qualified_name] = STATE(2402), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(2486), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(2373), + [sym__array_base_type] = STATE(7083), + [sym_nullable_type] = STATE(2375), + [sym_pointer_type] = STATE(2375), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(2375), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(2377), + [sym_pattern] = STATE(4143), + [sym_constant_pattern] = STATE(4146), + [sym_parenthesized_pattern] = STATE(4146), + [sym_var_pattern] = STATE(4146), + [sym_type_pattern] = STATE(4146), + [sym_list_pattern] = STATE(4146), + [sym_recursive_pattern] = STATE(4146), + [sym_positional_pattern_clause] = STATE(2566), + [sym_property_pattern_clause] = STATE(2714), + [sym_relational_pattern] = STATE(4146), + [sym_negated_pattern] = STATE(4146), + [sym_and_pattern] = STATE(4146), + [sym_or_pattern] = STATE(4146), + [sym_declaration_pattern] = STATE(4146), + [sym_expression] = STATE(5699), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3510), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(4128), + [sym_postfix_unary_expression] = STATE(4129), + [sym_prefix_unary_expression] = STATE(4129), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6134), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(4128), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(4129), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(4128), + [sym_member_access_expression] = STATE(3066), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(4129), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7425), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(4128), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(4128), + [sym_typeof_expression] = STATE(4128), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(3066), + [sym_literal] = STATE(4128), + [sym_character_literal] = STATE(3037), + [sym_string_literal] = STATE(3037), + [sym_raw_string_literal] = STATE(3037), + [sym_boolean_literal] = STATE(3037), + [sym_identifier] = STATE(2178), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(408), [sym_preproc_endregion] = STATE(408), [sym_preproc_line] = STATE(408), @@ -108682,53 +108568,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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1049), - [anon_sym_LPAREN] = ACTIONS(2569), - [anon_sym_ref] = ACTIONS(2369), - [anon_sym_LBRACE] = ACTIONS(2371), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(2449), + [anon_sym_LPAREN] = ACTIONS(2599), + [anon_sym_ref] = ACTIONS(2341), + [anon_sym_LBRACE] = ACTIONS(2343), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1061), - [anon_sym_LT] = ACTIONS(2571), - [anon_sym_GT] = ACTIONS(2571), + [anon_sym_new] = ACTIONS(1059), + [anon_sym_LT] = ACTIONS(2601), + [anon_sym_GT] = ACTIONS(2601), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1067), - [anon_sym_BANG] = ACTIONS(1701), - [anon_sym_TILDE] = ACTIONS(1701), - [anon_sym_PLUS_PLUS] = ACTIONS(1701), - [anon_sym_DASH_DASH] = ACTIONS(1701), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1699), - [anon_sym_DASH] = ACTIONS(1699), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(1939), + [anon_sym_TILDE] = ACTIONS(1939), + [anon_sym_PLUS_PLUS] = ACTIONS(1939), + [anon_sym_DASH_DASH] = ACTIONS(1939), + [anon_sym_true] = ACTIONS(1257), + [anon_sym_false] = ACTIONS(1257), + [anon_sym_PLUS] = ACTIONS(1937), + [anon_sym_DASH] = ACTIONS(1937), [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(1701), - [anon_sym_AMP] = ACTIONS(1701), - [anon_sym_GT_EQ] = ACTIONS(2573), - [anon_sym_LT_EQ] = ACTIONS(2573), + [anon_sym_CARET] = ACTIONS(1939), + [anon_sym_AMP] = ACTIONS(1939), + [anon_sym_GT_EQ] = ACTIONS(2603), + [anon_sym_LT_EQ] = ACTIONS(2603), [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(2377), + [anon_sym_scoped] = ACTIONS(2349), [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(2575), - [sym_predefined_type] = ACTIONS(2435), - [anon_sym_unchecked] = ACTIONS(1067), + [anon_sym_var] = ACTIONS(2605), + [sym_predefined_type] = ACTIONS(2459), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1589), + [anon_sym_default] = ACTIONS(1267), + [anon_sym_throw] = ACTIONS(1527), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1591), - [sym_discard] = ACTIONS(1083), + [anon_sym_await] = ACTIONS(1529), + [sym_discard] = ACTIONS(2461), [anon_sym_DOT_DOT] = ACTIONS(123), - [anon_sym_not] = ACTIONS(2577), + [anon_sym_not] = ACTIONS(2607), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -108742,18 +108628,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(129), - [anon_sym_typeof] = ACTIONS(131), + [anon_sym_sizeof] = ACTIONS(1277), + [anon_sym_typeof] = ACTIONS(1279), [anon_sym___makeref] = ACTIONS(133), [anon_sym___reftype] = ACTIONS(135), [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1089), + [sym_null_literal] = ACTIONS(1287), + [anon_sym_SQUOTE] = ACTIONS(1289), + [sym_integer_literal] = ACTIONS(1287), + [sym_real_literal] = ACTIONS(1291), + [anon_sym_DQUOTE] = ACTIONS(1293), + [sym_verbatim_string_literal] = ACTIONS(1291), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -108764,104 +108650,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(1297), + [sym_interpolation_verbatim_start] = ACTIONS(1299), + [sym_interpolation_raw_start] = ACTIONS(1301), + [sym_raw_string_start] = ACTIONS(1303), }, [409] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(2421), - [sym_alias_qualified_name] = STATE(2373), - [sym__simple_name] = STATE(2191), - [sym_qualified_name] = STATE(2373), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(2463), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(2378), - [sym__array_base_type] = STATE(7103), - [sym_nullable_type] = STATE(2379), - [sym_pointer_type] = STATE(2379), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(2379), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(2380), - [sym_pattern] = STATE(5480), - [sym_constant_pattern] = STATE(3486), - [sym_parenthesized_pattern] = STATE(3486), - [sym_var_pattern] = STATE(3486), - [sym_type_pattern] = STATE(3486), - [sym_list_pattern] = STATE(3486), - [sym_recursive_pattern] = STATE(3486), - [sym_positional_pattern_clause] = STATE(2565), - [sym_property_pattern_clause] = STATE(2650), - [sym_relational_pattern] = STATE(3486), - [sym_negated_pattern] = STATE(3486), - [sym_and_pattern] = STATE(3486), - [sym_or_pattern] = STATE(3486), - [sym_declaration_pattern] = STATE(3486), - [sym_expression] = STATE(5700), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3520), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3455), - [sym_postfix_unary_expression] = STATE(3469), - [sym_prefix_unary_expression] = STATE(3469), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6154), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3455), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3469), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3455), - [sym_member_access_expression] = STATE(2719), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3469), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7530), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(3455), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3455), - [sym_typeof_expression] = STATE(3455), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2719), - [sym_literal] = STATE(3455), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2186), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(5152), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2225), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(4472), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_pattern] = STATE(6663), + [sym_constant_pattern] = STATE(3429), + [sym_parenthesized_pattern] = STATE(3429), + [sym_var_pattern] = STATE(3429), + [sym_type_pattern] = STATE(3429), + [sym_list_pattern] = STATE(3429), + [sym_recursive_pattern] = STATE(3429), + [sym_positional_pattern_clause] = STATE(5135), + [sym_property_pattern_clause] = STATE(5666), + [sym_relational_pattern] = STATE(3429), + [sym_negated_pattern] = STATE(3429), + [sym_and_pattern] = STATE(3429), + [sym_or_pattern] = STATE(3429), + [sym_declaration_pattern] = STATE(3429), + [sym_expression] = STATE(5682), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3510), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(4418), + [sym_postfix_unary_expression] = STATE(4403), + [sym_prefix_unary_expression] = STATE(4403), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6134), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(4418), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(4403), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(4418), + [sym_member_access_expression] = STATE(3127), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(4403), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7425), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(4418), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(4418), + [sym_typeof_expression] = STATE(4418), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(3127), + [sym_literal] = STATE(4418), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(409), [sym_preproc_endregion] = STATE(409), [sym_preproc_line] = STATE(409), @@ -108871,53 +108757,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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1049), - [anon_sym_LPAREN] = ACTIONS(2569), - [anon_sym_ref] = ACTIONS(2369), - [anon_sym_LBRACE] = ACTIONS(2371), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_LPAREN] = ACTIONS(1051), + [anon_sym_ref] = ACTIONS(2609), + [anon_sym_LBRACE] = ACTIONS(1057), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1061), - [anon_sym_LT] = ACTIONS(2571), - [anon_sym_GT] = ACTIONS(2571), + [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(1067), - [anon_sym_BANG] = ACTIONS(1701), - [anon_sym_TILDE] = ACTIONS(1701), - [anon_sym_PLUS_PLUS] = ACTIONS(1701), - [anon_sym_DASH_DASH] = ACTIONS(1701), + [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(1699), - [anon_sym_DASH] = ACTIONS(1699), + [anon_sym_PLUS] = ACTIONS(1069), + [anon_sym_DASH] = ACTIONS(1069), [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(1701), - [anon_sym_AMP] = ACTIONS(1701), - [anon_sym_GT_EQ] = ACTIONS(2573), - [anon_sym_LT_EQ] = ACTIONS(2573), + [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(2377), + [anon_sym_scoped] = ACTIONS(2301), [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(2575), - [sym_predefined_type] = ACTIONS(2435), - [anon_sym_unchecked] = ACTIONS(1067), + [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(1589), + [anon_sym_throw] = ACTIONS(1527), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1591), - [sym_discard] = ACTIONS(1083), + [anon_sym_await] = ACTIONS(1529), + [sym_discard] = ACTIONS(1081), [anon_sym_DOT_DOT] = ACTIONS(123), - [anon_sym_not] = ACTIONS(2577), + [anon_sym_not] = ACTIONS(1121), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -108942,7 +108828,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(1089), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -108959,98 +108845,98 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [410] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(2877), - [sym_alias_qualified_name] = STATE(2373), - [sym__simple_name] = STATE(2322), - [sym_qualified_name] = STATE(2373), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(2500), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(2378), - [sym__array_base_type] = STATE(7103), - [sym_nullable_type] = STATE(2379), - [sym_pointer_type] = STATE(2379), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(2379), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(2380), - [sym_pattern] = STATE(4163), - [sym_constant_pattern] = STATE(4132), - [sym_parenthesized_pattern] = STATE(4132), - [sym_var_pattern] = STATE(4132), - [sym_type_pattern] = STATE(4132), - [sym_list_pattern] = STATE(4132), - [sym_recursive_pattern] = STATE(4132), - [sym_positional_pattern_clause] = STATE(2582), - [sym_property_pattern_clause] = STATE(2731), - [sym_relational_pattern] = STATE(4132), - [sym_negated_pattern] = STATE(4132), - [sym_and_pattern] = STATE(4132), - [sym_or_pattern] = STATE(4132), - [sym_declaration_pattern] = STATE(4132), - [sym_expression] = STATE(5683), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3520), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(4172), - [sym_postfix_unary_expression] = STATE(4148), - [sym_prefix_unary_expression] = STATE(4148), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6154), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(4172), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(4148), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(4172), - [sym_member_access_expression] = STATE(3069), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(4148), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7530), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(4172), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(4172), - [sym_typeof_expression] = STATE(4172), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(3069), - [sym_literal] = STATE(4172), - [sym_character_literal] = STATE(3011), - [sym_string_literal] = STATE(3011), - [sym_raw_string_literal] = STATE(3011), - [sym_boolean_literal] = STATE(3011), - [sym_identifier] = STATE(2186), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(2883), + [sym_alias_qualified_name] = STATE(2402), + [sym__simple_name] = STATE(2323), + [sym_qualified_name] = STATE(2402), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(2486), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(2373), + [sym__array_base_type] = STATE(7083), + [sym_nullable_type] = STATE(2375), + [sym_pointer_type] = STATE(2375), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(2375), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(2377), + [sym_pattern] = STATE(4161), + [sym_constant_pattern] = STATE(4146), + [sym_parenthesized_pattern] = STATE(4146), + [sym_var_pattern] = STATE(4146), + [sym_type_pattern] = STATE(4146), + [sym_list_pattern] = STATE(4146), + [sym_recursive_pattern] = STATE(4146), + [sym_positional_pattern_clause] = STATE(2566), + [sym_property_pattern_clause] = STATE(2714), + [sym_relational_pattern] = STATE(4146), + [sym_negated_pattern] = STATE(4146), + [sym_and_pattern] = STATE(4146), + [sym_or_pattern] = STATE(4146), + [sym_declaration_pattern] = STATE(4146), + [sym_expression] = STATE(5699), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3510), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(4128), + [sym_postfix_unary_expression] = STATE(4129), + [sym_prefix_unary_expression] = STATE(4129), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6134), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(4128), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(4129), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(4128), + [sym_member_access_expression] = STATE(3066), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(4129), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7425), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(4128), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(4128), + [sym_typeof_expression] = STATE(4128), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(3066), + [sym_literal] = STATE(4128), + [sym_character_literal] = STATE(3037), + [sym_string_literal] = STATE(3037), + [sym_raw_string_literal] = STATE(3037), + [sym_boolean_literal] = STATE(3037), + [sym_identifier] = STATE(2178), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(410), [sym_preproc_endregion] = STATE(410), [sym_preproc_line] = STATE(410), @@ -109060,53 +108946,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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(2475), - [anon_sym_LPAREN] = ACTIONS(2545), - [anon_sym_ref] = ACTIONS(2369), - [anon_sym_LBRACE] = ACTIONS(2371), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(2449), + [anon_sym_LPAREN] = ACTIONS(2599), + [anon_sym_ref] = ACTIONS(2341), + [anon_sym_LBRACE] = ACTIONS(2343), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1061), - [anon_sym_LT] = ACTIONS(2547), - [anon_sym_GT] = ACTIONS(2547), + [anon_sym_new] = ACTIONS(1059), + [anon_sym_LT] = ACTIONS(2601), + [anon_sym_GT] = ACTIONS(2601), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1067), - [anon_sym_BANG] = ACTIONS(1849), - [anon_sym_TILDE] = ACTIONS(1849), - [anon_sym_PLUS_PLUS] = ACTIONS(1849), - [anon_sym_DASH_DASH] = ACTIONS(1849), - [anon_sym_true] = ACTIONS(1259), - [anon_sym_false] = ACTIONS(1259), - [anon_sym_PLUS] = ACTIONS(1847), - [anon_sym_DASH] = ACTIONS(1847), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(1939), + [anon_sym_TILDE] = ACTIONS(1939), + [anon_sym_PLUS_PLUS] = ACTIONS(1939), + [anon_sym_DASH_DASH] = ACTIONS(1939), + [anon_sym_true] = ACTIONS(1257), + [anon_sym_false] = ACTIONS(1257), + [anon_sym_PLUS] = ACTIONS(1937), + [anon_sym_DASH] = ACTIONS(1937), [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(1849), - [anon_sym_AMP] = ACTIONS(1849), - [anon_sym_GT_EQ] = ACTIONS(2549), - [anon_sym_LT_EQ] = ACTIONS(2549), + [anon_sym_CARET] = ACTIONS(1939), + [anon_sym_AMP] = ACTIONS(1939), + [anon_sym_GT_EQ] = ACTIONS(2603), + [anon_sym_LT_EQ] = ACTIONS(2603), [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(2377), + [anon_sym_scoped] = ACTIONS(2349), [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(2551), - [sym_predefined_type] = ACTIONS(2485), - [anon_sym_unchecked] = ACTIONS(1067), + [anon_sym_var] = ACTIONS(2605), + [sym_predefined_type] = ACTIONS(2459), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1269), - [anon_sym_throw] = ACTIONS(1589), + [anon_sym_default] = ACTIONS(1267), + [anon_sym_throw] = ACTIONS(1527), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1591), - [sym_discard] = ACTIONS(2487), + [anon_sym_await] = ACTIONS(1529), + [sym_discard] = ACTIONS(2461), [anon_sym_DOT_DOT] = ACTIONS(123), - [anon_sym_not] = ACTIONS(2553), + [anon_sym_not] = ACTIONS(2607), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -109120,18 +109006,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(1279), - [anon_sym_typeof] = ACTIONS(1281), + [anon_sym_sizeof] = ACTIONS(1277), + [anon_sym_typeof] = ACTIONS(1279), [anon_sym___makeref] = ACTIONS(133), [anon_sym___reftype] = ACTIONS(135), [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(1289), - [anon_sym_SQUOTE] = ACTIONS(1291), - [sym_integer_literal] = ACTIONS(1289), - [sym_real_literal] = ACTIONS(1293), - [anon_sym_DQUOTE] = ACTIONS(1295), - [sym_verbatim_string_literal] = ACTIONS(1293), - [aux_sym_preproc_if_token1] = ACTIONS(1089), + [sym_null_literal] = ACTIONS(1287), + [anon_sym_SQUOTE] = ACTIONS(1289), + [sym_integer_literal] = ACTIONS(1287), + [sym_real_literal] = ACTIONS(1291), + [anon_sym_DQUOTE] = ACTIONS(1293), + [sym_verbatim_string_literal] = ACTIONS(1291), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -109142,104 +109028,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(1299), - [sym_interpolation_verbatim_start] = ACTIONS(1301), - [sym_interpolation_raw_start] = ACTIONS(1303), - [sym_raw_string_start] = ACTIONS(1305), + [sym_interpolation_regular_start] = ACTIONS(1297), + [sym_interpolation_verbatim_start] = ACTIONS(1299), + [sym_interpolation_raw_start] = ACTIONS(1301), + [sym_raw_string_start] = ACTIONS(1303), }, [411] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(2421), - [sym_alias_qualified_name] = STATE(2373), - [sym__simple_name] = STATE(2191), - [sym_qualified_name] = STATE(2373), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(2456), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(2378), - [sym__array_base_type] = STATE(7103), - [sym_nullable_type] = STATE(2379), - [sym_pointer_type] = STATE(2379), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(2379), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(2380), - [sym_pattern] = STATE(5428), - [sym_constant_pattern] = STATE(3486), - [sym_parenthesized_pattern] = STATE(3486), - [sym_var_pattern] = STATE(3486), - [sym_type_pattern] = STATE(3486), - [sym_list_pattern] = STATE(3486), - [sym_recursive_pattern] = STATE(3486), - [sym_positional_pattern_clause] = STATE(2565), - [sym_property_pattern_clause] = STATE(2650), - [sym_relational_pattern] = STATE(3486), - [sym_negated_pattern] = STATE(3486), - [sym_and_pattern] = STATE(3486), - [sym_or_pattern] = STATE(3486), - [sym_declaration_pattern] = STATE(3486), - [sym_expression] = STATE(5700), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3520), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3455), - [sym_postfix_unary_expression] = STATE(3469), - [sym_prefix_unary_expression] = STATE(3469), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6154), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3455), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3469), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3455), - [sym_member_access_expression] = STATE(2719), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3469), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7530), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(3455), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3455), - [sym_typeof_expression] = STATE(3455), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2719), - [sym_literal] = STATE(3455), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2186), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(2883), + [sym_alias_qualified_name] = STATE(2402), + [sym__simple_name] = STATE(2323), + [sym_qualified_name] = STATE(2402), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(2486), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(2373), + [sym__array_base_type] = STATE(7083), + [sym_nullable_type] = STATE(2375), + [sym_pointer_type] = STATE(2375), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(2375), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(2377), + [sym_pattern] = STATE(4123), + [sym_constant_pattern] = STATE(4146), + [sym_parenthesized_pattern] = STATE(4146), + [sym_var_pattern] = STATE(4146), + [sym_type_pattern] = STATE(4146), + [sym_list_pattern] = STATE(4146), + [sym_recursive_pattern] = STATE(4146), + [sym_positional_pattern_clause] = STATE(2566), + [sym_property_pattern_clause] = STATE(2714), + [sym_relational_pattern] = STATE(4146), + [sym_negated_pattern] = STATE(4146), + [sym_and_pattern] = STATE(4146), + [sym_or_pattern] = STATE(4146), + [sym_declaration_pattern] = STATE(4146), + [sym_expression] = STATE(5699), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3510), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(4128), + [sym_postfix_unary_expression] = STATE(4129), + [sym_prefix_unary_expression] = STATE(4129), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6134), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(4128), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(4129), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(4128), + [sym_member_access_expression] = STATE(3066), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(4129), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7425), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(4128), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(4128), + [sym_typeof_expression] = STATE(4128), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(3066), + [sym_literal] = STATE(4128), + [sym_character_literal] = STATE(3037), + [sym_string_literal] = STATE(3037), + [sym_raw_string_literal] = STATE(3037), + [sym_boolean_literal] = STATE(3037), + [sym_identifier] = STATE(2178), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(411), [sym_preproc_endregion] = STATE(411), [sym_preproc_line] = STATE(411), @@ -109249,53 +109135,242 @@ 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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1049), - [anon_sym_LPAREN] = ACTIONS(2569), - [anon_sym_ref] = ACTIONS(2369), - [anon_sym_LBRACE] = ACTIONS(2371), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(2449), + [anon_sym_LPAREN] = ACTIONS(2599), + [anon_sym_ref] = ACTIONS(2341), + [anon_sym_LBRACE] = ACTIONS(2343), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1061), - [anon_sym_LT] = ACTIONS(2571), - [anon_sym_GT] = ACTIONS(2571), + [anon_sym_new] = ACTIONS(1059), + [anon_sym_LT] = ACTIONS(2601), + [anon_sym_GT] = ACTIONS(2601), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1067), - [anon_sym_BANG] = ACTIONS(1701), - [anon_sym_TILDE] = ACTIONS(1701), - [anon_sym_PLUS_PLUS] = ACTIONS(1701), - [anon_sym_DASH_DASH] = ACTIONS(1701), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(1939), + [anon_sym_TILDE] = ACTIONS(1939), + [anon_sym_PLUS_PLUS] = ACTIONS(1939), + [anon_sym_DASH_DASH] = ACTIONS(1939), + [anon_sym_true] = ACTIONS(1257), + [anon_sym_false] = ACTIONS(1257), + [anon_sym_PLUS] = ACTIONS(1937), + [anon_sym_DASH] = ACTIONS(1937), + [anon_sym_STAR] = ACTIONS(81), + [anon_sym_CARET] = ACTIONS(1939), + [anon_sym_AMP] = ACTIONS(1939), + [anon_sym_GT_EQ] = ACTIONS(2603), + [anon_sym_LT_EQ] = ACTIONS(2603), + [anon_sym_this] = ACTIONS(83), + [anon_sym_scoped] = ACTIONS(2349), + [anon_sym_base] = ACTIONS(87), + [anon_sym_var] = ACTIONS(2605), + [sym_predefined_type] = ACTIONS(2459), + [anon_sym_unchecked] = ACTIONS(1065), + [anon_sym_yield] = ACTIONS(29), + [anon_sym_default] = ACTIONS(1267), + [anon_sym_throw] = ACTIONS(1527), + [anon_sym_when] = ACTIONS(29), + [anon_sym_await] = ACTIONS(1529), + [sym_discard] = ACTIONS(2461), + [anon_sym_DOT_DOT] = ACTIONS(123), + [anon_sym_not] = ACTIONS(2607), + [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(1277), + [anon_sym_typeof] = ACTIONS(1279), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), + [sym_null_literal] = ACTIONS(1287), + [anon_sym_SQUOTE] = ACTIONS(1289), + [sym_integer_literal] = ACTIONS(1287), + [sym_real_literal] = ACTIONS(1291), + [anon_sym_DQUOTE] = ACTIONS(1293), + [sym_verbatim_string_literal] = ACTIONS(1291), + [aux_sym_preproc_if_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(1297), + [sym_interpolation_verbatim_start] = ACTIONS(1299), + [sym_interpolation_raw_start] = ACTIONS(1301), + [sym_raw_string_start] = ACTIONS(1303), + }, + [412] = { + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(5152), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2225), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(4472), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_pattern] = STATE(6715), + [sym_constant_pattern] = STATE(3429), + [sym_parenthesized_pattern] = STATE(3429), + [sym_var_pattern] = STATE(3429), + [sym_type_pattern] = STATE(3429), + [sym_list_pattern] = STATE(3429), + [sym_recursive_pattern] = STATE(3429), + [sym_positional_pattern_clause] = STATE(5135), + [sym_property_pattern_clause] = STATE(5666), + [sym_relational_pattern] = STATE(3429), + [sym_negated_pattern] = STATE(3429), + [sym_and_pattern] = STATE(3429), + [sym_or_pattern] = STATE(3429), + [sym_declaration_pattern] = STATE(3429), + [sym_expression] = STATE(5682), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3510), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(4418), + [sym_postfix_unary_expression] = STATE(4403), + [sym_prefix_unary_expression] = STATE(4403), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6134), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(4418), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(4403), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(4418), + [sym_member_access_expression] = STATE(3127), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(4403), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7425), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(4418), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(4418), + [sym_typeof_expression] = STATE(4418), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(3127), + [sym_literal] = STATE(4418), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), + [sym_preproc_region] = STATE(412), + [sym_preproc_endregion] = STATE(412), + [sym_preproc_line] = STATE(412), + [sym_preproc_pragma] = STATE(412), + [sym_preproc_nullable] = STATE(412), + [sym_preproc_error] = STATE(412), + [sym_preproc_warning] = STATE(412), + [sym_preproc_define] = STATE(412), + [sym_preproc_undef] = STATE(412), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), + [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(2609), + [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_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(1699), - [anon_sym_DASH] = ACTIONS(1699), + [anon_sym_PLUS] = ACTIONS(1069), + [anon_sym_DASH] = ACTIONS(1069), [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(1701), - [anon_sym_AMP] = ACTIONS(1701), - [anon_sym_GT_EQ] = ACTIONS(2573), - [anon_sym_LT_EQ] = ACTIONS(2573), + [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(2377), + [anon_sym_scoped] = ACTIONS(2301), [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(2575), - [sym_predefined_type] = ACTIONS(2435), - [anon_sym_unchecked] = ACTIONS(1067), + [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(1589), + [anon_sym_throw] = ACTIONS(1527), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1591), - [sym_discard] = ACTIONS(1083), + [anon_sym_await] = ACTIONS(1529), + [sym_discard] = ACTIONS(1081), [anon_sym_DOT_DOT] = ACTIONS(123), - [anon_sym_not] = ACTIONS(2577), + [anon_sym_not] = ACTIONS(1121), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -109320,7 +109395,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(1089), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -109336,155 +109411,155 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_interpolation_raw_start] = ACTIONS(155), [sym_raw_string_start] = ACTIONS(157), }, - [412] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(2426), - [sym_alias_qualified_name] = STATE(2373), - [sym__simple_name] = STATE(2189), - [sym_qualified_name] = STATE(2373), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(2238), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(2378), - [sym__array_base_type] = STATE(7103), - [sym_nullable_type] = STATE(2379), - [sym_pointer_type] = STATE(2379), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(2379), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(2380), - [sym_pattern] = STATE(4085), - [sym_constant_pattern] = STATE(3295), - [sym_parenthesized_pattern] = STATE(3295), - [sym_var_pattern] = STATE(3295), - [sym_type_pattern] = STATE(3295), - [sym_list_pattern] = STATE(3295), - [sym_recursive_pattern] = STATE(3295), - [sym_positional_pattern_clause] = STATE(2251), - [sym_property_pattern_clause] = STATE(2302), - [sym_relational_pattern] = STATE(3295), - [sym_negated_pattern] = STATE(3295), - [sym_and_pattern] = STATE(3295), - [sym_or_pattern] = STATE(3295), - [sym_declaration_pattern] = STATE(3295), - [sym_expression] = STATE(5669), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3520), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3310), - [sym_postfix_unary_expression] = STATE(3312), - [sym_prefix_unary_expression] = STATE(3312), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6154), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3310), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3312), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3310), - [sym_member_access_expression] = STATE(2617), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3312), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7530), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(3310), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3310), - [sym_typeof_expression] = STATE(3310), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2617), - [sym_literal] = STATE(3310), - [sym_character_literal] = STATE(3278), - [sym_string_literal] = STATE(3278), - [sym_raw_string_literal] = STATE(3278), - [sym_boolean_literal] = STATE(3278), - [sym_identifier] = STATE(2186), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), - [sym_preproc_region] = STATE(412), - [sym_preproc_endregion] = STATE(412), - [sym_preproc_line] = STATE(412), - [sym_preproc_pragma] = STATE(412), - [sym_preproc_nullable] = STATE(412), - [sym_preproc_error] = STATE(412), - [sym_preproc_warning] = STATE(412), - [sym_preproc_define] = STATE(412), - [sym_preproc_undef] = STATE(412), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [413] = { + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(5152), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2225), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(4472), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_pattern] = STATE(3407), + [sym_constant_pattern] = STATE(3429), + [sym_parenthesized_pattern] = STATE(3429), + [sym_var_pattern] = STATE(3429), + [sym_type_pattern] = STATE(3429), + [sym_list_pattern] = STATE(3429), + [sym_recursive_pattern] = STATE(3429), + [sym_positional_pattern_clause] = STATE(5135), + [sym_property_pattern_clause] = STATE(5666), + [sym_relational_pattern] = STATE(3429), + [sym_negated_pattern] = STATE(3429), + [sym_and_pattern] = STATE(3429), + [sym_or_pattern] = STATE(3429), + [sym_declaration_pattern] = STATE(3429), + [sym_expression] = STATE(5682), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3510), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(4418), + [sym_postfix_unary_expression] = STATE(4403), + [sym_prefix_unary_expression] = STATE(4403), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6134), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(4418), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(4403), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(4418), + [sym_member_access_expression] = STATE(3127), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(4403), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7425), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(4418), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(4418), + [sym_typeof_expression] = STATE(4418), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(3127), + [sym_literal] = STATE(4418), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), + [sym_preproc_region] = STATE(413), + [sym_preproc_endregion] = STATE(413), + [sym_preproc_line] = STATE(413), + [sym_preproc_pragma] = STATE(413), + [sym_preproc_nullable] = STATE(413), + [sym_preproc_error] = STATE(413), + [sym_preproc_warning] = STATE(413), + [sym_preproc_define] = STATE(413), + [sym_preproc_undef] = STATE(413), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(2365), - [anon_sym_LPAREN] = ACTIONS(2513), - [anon_sym_ref] = ACTIONS(2369), - [anon_sym_LBRACE] = ACTIONS(2371), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_LPAREN] = ACTIONS(1051), + [anon_sym_ref] = ACTIONS(2609), + [anon_sym_LBRACE] = ACTIONS(1057), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1061), - [anon_sym_LT] = ACTIONS(2515), - [anon_sym_GT] = ACTIONS(2515), + [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(1067), - [anon_sym_BANG] = ACTIONS(1171), - [anon_sym_TILDE] = ACTIONS(1171), - [anon_sym_PLUS_PLUS] = ACTIONS(1171), - [anon_sym_DASH_DASH] = ACTIONS(1171), - [anon_sym_true] = ACTIONS(1173), - [anon_sym_false] = ACTIONS(1173), - [anon_sym_PLUS] = ACTIONS(1169), - [anon_sym_DASH] = ACTIONS(1169), + [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_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(1171), - [anon_sym_AMP] = ACTIONS(1171), - [anon_sym_GT_EQ] = ACTIONS(2517), - [anon_sym_LT_EQ] = ACTIONS(2517), + [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(2377), + [anon_sym_scoped] = ACTIONS(2301), [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(2379), - [sym_predefined_type] = ACTIONS(2381), - [anon_sym_unchecked] = ACTIONS(1067), + [anon_sym_var] = ACTIONS(1075), + [sym_predefined_type] = ACTIONS(91), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1183), - [anon_sym_throw] = ACTIONS(1589), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(1527), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1591), - [sym_discard] = ACTIONS(2383), + [anon_sym_await] = ACTIONS(1529), + [sym_discard] = ACTIONS(1081), [anon_sym_DOT_DOT] = ACTIONS(123), - [anon_sym_not] = ACTIONS(2519), + [anon_sym_not] = ACTIONS(1121), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -109498,18 +109573,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(1193), - [anon_sym_typeof] = ACTIONS(1195), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), [anon_sym___makeref] = ACTIONS(133), [anon_sym___reftype] = ACTIONS(135), [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(1203), - [anon_sym_SQUOTE] = ACTIONS(1205), - [sym_integer_literal] = ACTIONS(1203), - [sym_real_literal] = ACTIONS(1207), - [anon_sym_DQUOTE] = ACTIONS(1209), - [sym_verbatim_string_literal] = ACTIONS(1207), - [aux_sym_preproc_if_token1] = ACTIONS(1089), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_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), @@ -109520,160 +109595,160 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1213), - [sym_interpolation_verbatim_start] = ACTIONS(1215), - [sym_interpolation_raw_start] = ACTIONS(1217), - [sym_raw_string_start] = ACTIONS(1219), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [sym_interpolation_raw_start] = ACTIONS(155), + [sym_raw_string_start] = ACTIONS(157), }, - [413] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(2860), - [sym_alias_qualified_name] = STATE(2373), - [sym__simple_name] = STATE(2314), - [sym_qualified_name] = STATE(2373), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(2467), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(2378), - [sym__array_base_type] = STATE(7103), - [sym_nullable_type] = STATE(2379), - [sym_pointer_type] = STATE(2379), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(2379), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(2380), - [sym_pattern] = STATE(3853), - [sym_constant_pattern] = STATE(3774), - [sym_parenthesized_pattern] = STATE(3774), - [sym_var_pattern] = STATE(3774), - [sym_type_pattern] = STATE(3774), - [sym_list_pattern] = STATE(3774), - [sym_recursive_pattern] = STATE(3774), - [sym_positional_pattern_clause] = STATE(2556), - [sym_property_pattern_clause] = STATE(2631), - [sym_relational_pattern] = STATE(3774), - [sym_negated_pattern] = STATE(3774), - [sym_and_pattern] = STATE(3774), - [sym_or_pattern] = STATE(3774), - [sym_declaration_pattern] = STATE(3774), - [sym_expression] = STATE(5687), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3520), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3803), - [sym_postfix_unary_expression] = STATE(3804), - [sym_prefix_unary_expression] = STATE(3804), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6154), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3803), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3804), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3803), - [sym_member_access_expression] = STATE(2917), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3804), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7530), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(3803), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3803), - [sym_typeof_expression] = STATE(3803), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2917), - [sym_literal] = STATE(3803), - [sym_character_literal] = STATE(3877), - [sym_string_literal] = STATE(3877), - [sym_raw_string_literal] = STATE(3877), - [sym_boolean_literal] = STATE(3877), - [sym_identifier] = STATE(2186), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), - [sym_preproc_region] = STATE(413), - [sym_preproc_endregion] = STATE(413), - [sym_preproc_line] = STATE(413), - [sym_preproc_pragma] = STATE(413), - [sym_preproc_nullable] = STATE(413), - [sym_preproc_error] = STATE(413), - [sym_preproc_warning] = STATE(413), - [sym_preproc_define] = STATE(413), - [sym_preproc_undef] = STATE(413), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [414] = { + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(5152), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2225), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(4472), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_pattern] = STATE(6632), + [sym_constant_pattern] = STATE(3429), + [sym_parenthesized_pattern] = STATE(3429), + [sym_var_pattern] = STATE(3429), + [sym_type_pattern] = STATE(3429), + [sym_list_pattern] = STATE(3429), + [sym_recursive_pattern] = STATE(3429), + [sym_positional_pattern_clause] = STATE(5135), + [sym_property_pattern_clause] = STATE(5666), + [sym_relational_pattern] = STATE(3429), + [sym_negated_pattern] = STATE(3429), + [sym_and_pattern] = STATE(3429), + [sym_or_pattern] = STATE(3429), + [sym_declaration_pattern] = STATE(3429), + [sym_expression] = STATE(5682), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3510), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(4418), + [sym_postfix_unary_expression] = STATE(4403), + [sym_prefix_unary_expression] = STATE(4403), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6134), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(4418), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(4403), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(4418), + [sym_member_access_expression] = STATE(3127), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(4403), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7425), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(4418), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(4418), + [sym_typeof_expression] = STATE(4418), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(3127), + [sym_literal] = STATE(4418), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), + [sym_preproc_region] = STATE(414), + [sym_preproc_endregion] = STATE(414), + [sym_preproc_line] = STATE(414), + [sym_preproc_pragma] = STATE(414), + [sym_preproc_nullable] = STATE(414), + [sym_preproc_error] = STATE(414), + [sym_preproc_warning] = STATE(414), + [sym_preproc_define] = STATE(414), + [sym_preproc_undef] = STATE(414), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(2415), - [anon_sym_LPAREN] = ACTIONS(2597), - [anon_sym_ref] = ACTIONS(2369), - [anon_sym_LBRACE] = ACTIONS(2371), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_LPAREN] = ACTIONS(1051), + [anon_sym_ref] = ACTIONS(2609), + [anon_sym_LBRACE] = ACTIONS(1057), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1061), - [anon_sym_LT] = ACTIONS(2599), - [anon_sym_GT] = ACTIONS(2599), + [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(1067), - [anon_sym_BANG] = ACTIONS(1735), - [anon_sym_TILDE] = ACTIONS(1735), - [anon_sym_PLUS_PLUS] = ACTIONS(1735), - [anon_sym_DASH_DASH] = ACTIONS(1735), - [anon_sym_true] = ACTIONS(1645), - [anon_sym_false] = ACTIONS(1645), - [anon_sym_PLUS] = ACTIONS(1733), - [anon_sym_DASH] = ACTIONS(1733), + [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_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(1735), - [anon_sym_AMP] = ACTIONS(1735), - [anon_sym_GT_EQ] = ACTIONS(2601), - [anon_sym_LT_EQ] = ACTIONS(2601), + [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(2377), + [anon_sym_scoped] = ACTIONS(2301), [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(2423), - [sym_predefined_type] = ACTIONS(2425), - [anon_sym_unchecked] = ACTIONS(1067), + [anon_sym_var] = ACTIONS(1075), + [sym_predefined_type] = ACTIONS(91), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1655), - [anon_sym_throw] = ACTIONS(1589), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(1527), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1591), - [sym_discard] = ACTIONS(2427), + [anon_sym_await] = ACTIONS(1529), + [sym_discard] = ACTIONS(1081), [anon_sym_DOT_DOT] = ACTIONS(123), - [anon_sym_not] = ACTIONS(2603), + [anon_sym_not] = ACTIONS(1121), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -109687,207 +109762,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(1665), - [anon_sym_typeof] = ACTIONS(1667), - [anon_sym___makeref] = ACTIONS(133), - [anon_sym___reftype] = ACTIONS(135), - [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(1675), - [anon_sym_SQUOTE] = ACTIONS(1677), - [sym_integer_literal] = ACTIONS(1675), - [sym_real_literal] = ACTIONS(1679), - [anon_sym_DQUOTE] = ACTIONS(1681), - [sym_verbatim_string_literal] = ACTIONS(1679), - [aux_sym_preproc_if_token1] = ACTIONS(1089), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1685), - [sym_interpolation_verbatim_start] = ACTIONS(1687), - [sym_interpolation_raw_start] = ACTIONS(1689), - [sym_raw_string_start] = ACTIONS(1691), - }, - [414] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(2721), - [sym_alias_qualified_name] = STATE(2764), - [sym__simple_name] = STATE(2256), - [sym_qualified_name] = STATE(2764), - [sym_generic_name] = STATE(2269), - [sym_type] = STATE(2409), - [sym_implicit_type] = STATE(2791), - [sym_array_type] = STATE(2767), - [sym__array_base_type] = STATE(7243), - [sym_nullable_type] = STATE(2768), - [sym_pointer_type] = STATE(2768), - [sym__pointer_base_type] = STATE(7717), - [sym_function_pointer_type] = STATE(2768), - [sym_ref_type] = STATE(2791), - [sym_scoped_type] = STATE(2791), - [sym_tuple_type] = STATE(2769), - [sym_pattern] = STATE(4668), - [sym_constant_pattern] = STATE(4631), - [sym_parenthesized_pattern] = STATE(4631), - [sym_var_pattern] = STATE(4631), - [sym_type_pattern] = STATE(4631), - [sym_list_pattern] = STATE(4631), - [sym_recursive_pattern] = STATE(4631), - [sym_positional_pattern_clause] = STATE(2488), - [sym_property_pattern_clause] = STATE(2561), - [sym_relational_pattern] = STATE(4631), - [sym_negated_pattern] = STATE(4631), - [sym_and_pattern] = STATE(4631), - [sym_or_pattern] = STATE(4631), - [sym_declaration_pattern] = STATE(4631), - [sym_expression] = STATE(5690), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3520), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(4544), - [sym_postfix_unary_expression] = STATE(4545), - [sym_prefix_unary_expression] = STATE(4545), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6154), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(4544), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(4545), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(4544), - [sym_member_access_expression] = STATE(3197), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(4545), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7530), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(4544), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(4544), - [sym_typeof_expression] = STATE(4544), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(3197), - [sym_literal] = STATE(4544), - [sym_character_literal] = STATE(4536), - [sym_string_literal] = STATE(4536), - [sym_raw_string_literal] = STATE(4536), - [sym_boolean_literal] = STATE(4536), - [sym_identifier] = STATE(2226), - [sym__reserved_identifier] = STATE(2240), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), - [sym_preproc_region] = STATE(414), - [sym_preproc_endregion] = STATE(414), - [sym_preproc_line] = STATE(414), - [sym_preproc_pragma] = STATE(414), - [sym_preproc_nullable] = STATE(414), - [sym_preproc_error] = STATE(414), - [sym_preproc_warning] = STATE(414), - [sym_preproc_define] = STATE(414), - [sym_preproc_undef] = STATE(414), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), - [sym__identifier_token] = ACTIONS(1387), - [anon_sym_alias] = ACTIONS(1389), - [anon_sym_global] = ACTIONS(1389), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(2341), - [anon_sym_LPAREN] = ACTIONS(2605), - [anon_sym_ref] = ACTIONS(2345), - [anon_sym_LBRACE] = ACTIONS(2347), - [anon_sym_delegate] = ACTIONS(2349), - [anon_sym_async] = ACTIONS(1047), - [anon_sym_file] = ACTIONS(1389), - [anon_sym_new] = ACTIONS(1061), - [anon_sym_LT] = ACTIONS(2607), - [anon_sym_GT] = ACTIONS(2607), - [anon_sym_where] = ACTIONS(1389), - [anon_sym_notnull] = ACTIONS(1389), - [anon_sym_unmanaged] = ACTIONS(1389), - [anon_sym_checked] = ACTIONS(1067), - [anon_sym_BANG] = ACTIONS(1407), - [anon_sym_TILDE] = ACTIONS(1407), - [anon_sym_PLUS_PLUS] = ACTIONS(1407), - [anon_sym_DASH_DASH] = ACTIONS(1407), - [anon_sym_true] = ACTIONS(1409), - [anon_sym_false] = ACTIONS(1409), - [anon_sym_PLUS] = ACTIONS(1405), - [anon_sym_DASH] = ACTIONS(1405), - [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(1407), - [anon_sym_AMP] = ACTIONS(1407), - [anon_sym_GT_EQ] = ACTIONS(2609), - [anon_sym_LT_EQ] = ACTIONS(2609), - [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(2355), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(2357), - [sym_predefined_type] = ACTIONS(2359), - [anon_sym_unchecked] = ACTIONS(1067), - [anon_sym_yield] = ACTIONS(1389), - [anon_sym_default] = ACTIONS(1423), - [anon_sym_throw] = ACTIONS(1589), - [anon_sym_when] = ACTIONS(1389), - [anon_sym_await] = ACTIONS(1591), - [sym_discard] = ACTIONS(2361), - [anon_sym_DOT_DOT] = ACTIONS(123), - [anon_sym_not] = ACTIONS(2611), - [anon_sym_from] = ACTIONS(1431), - [anon_sym_into] = ACTIONS(1389), - [anon_sym_join] = ACTIONS(1389), - [anon_sym_on] = ACTIONS(1389), - [anon_sym_equals] = ACTIONS(1389), - [anon_sym_let] = ACTIONS(1389), - [anon_sym_orderby] = ACTIONS(1389), - [anon_sym_ascending] = ACTIONS(1389), - [anon_sym_descending] = ACTIONS(1389), - [anon_sym_group] = ACTIONS(1389), - [anon_sym_by] = ACTIONS(1389), - [anon_sym_select] = ACTIONS(1389), - [anon_sym_stackalloc] = ACTIONS(127), - [anon_sym_sizeof] = ACTIONS(1435), - [anon_sym_typeof] = ACTIONS(1437), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), [anon_sym___makeref] = ACTIONS(133), [anon_sym___reftype] = ACTIONS(135), [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(1445), - [anon_sym_SQUOTE] = ACTIONS(1447), - [sym_integer_literal] = ACTIONS(1445), - [sym_real_literal] = ACTIONS(1449), - [anon_sym_DQUOTE] = ACTIONS(1451), - [sym_verbatim_string_literal] = ACTIONS(1449), - [aux_sym_preproc_if_token1] = ACTIONS(1089), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_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), @@ -109898,104 +109784,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(1455), - [sym_interpolation_verbatim_start] = ACTIONS(1457), - [sym_interpolation_raw_start] = ACTIONS(1459), - [sym_raw_string_start] = ACTIONS(1461), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [sym_interpolation_raw_start] = ACTIONS(155), + [sym_raw_string_start] = ACTIONS(157), }, [415] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(2860), - [sym_alias_qualified_name] = STATE(2373), - [sym__simple_name] = STATE(2314), - [sym_qualified_name] = STATE(2373), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(2475), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(2378), - [sym__array_base_type] = STATE(7103), - [sym_nullable_type] = STATE(2379), - [sym_pointer_type] = STATE(2379), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(2379), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(2380), - [sym_pattern] = STATE(3837), - [sym_constant_pattern] = STATE(3774), - [sym_parenthesized_pattern] = STATE(3774), - [sym_var_pattern] = STATE(3774), - [sym_type_pattern] = STATE(3774), - [sym_list_pattern] = STATE(3774), - [sym_recursive_pattern] = STATE(3774), - [sym_positional_pattern_clause] = STATE(2556), - [sym_property_pattern_clause] = STATE(2631), - [sym_relational_pattern] = STATE(3774), - [sym_negated_pattern] = STATE(3774), - [sym_and_pattern] = STATE(3774), - [sym_or_pattern] = STATE(3774), - [sym_declaration_pattern] = STATE(3774), - [sym_expression] = STATE(5687), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3520), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3803), - [sym_postfix_unary_expression] = STATE(3804), - [sym_prefix_unary_expression] = STATE(3804), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6154), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3803), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3804), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3803), - [sym_member_access_expression] = STATE(2917), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3804), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7530), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(3803), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3803), - [sym_typeof_expression] = STATE(3803), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2917), - [sym_literal] = STATE(3803), - [sym_character_literal] = STATE(3877), - [sym_string_literal] = STATE(3877), - [sym_raw_string_literal] = STATE(3877), - [sym_boolean_literal] = STATE(3877), - [sym_identifier] = STATE(2186), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(2862), + [sym_alias_qualified_name] = STATE(2402), + [sym__simple_name] = STATE(2340), + [sym_qualified_name] = STATE(2402), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(2495), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(2373), + [sym__array_base_type] = STATE(7083), + [sym_nullable_type] = STATE(2375), + [sym_pointer_type] = STATE(2375), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(2375), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(2377), + [sym_pattern] = STATE(5188), + [sym_constant_pattern] = STATE(3311), + [sym_parenthesized_pattern] = STATE(3311), + [sym_var_pattern] = STATE(3311), + [sym_type_pattern] = STATE(3311), + [sym_list_pattern] = STATE(3311), + [sym_recursive_pattern] = STATE(3311), + [sym_positional_pattern_clause] = STATE(2587), + [sym_property_pattern_clause] = STATE(2757), + [sym_relational_pattern] = STATE(3311), + [sym_negated_pattern] = STATE(3311), + [sym_and_pattern] = STATE(3311), + [sym_or_pattern] = STATE(3311), + [sym_declaration_pattern] = STATE(3311), + [sym_expression] = STATE(5679), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3510), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3275), + [sym_postfix_unary_expression] = STATE(3276), + [sym_prefix_unary_expression] = STATE(3276), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6134), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3275), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3276), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3275), + [sym_member_access_expression] = STATE(2608), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3276), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7425), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(3275), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3275), + [sym_typeof_expression] = STATE(3275), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2608), + [sym_literal] = STATE(3275), + [sym_character_literal] = STATE(3272), + [sym_string_literal] = STATE(3272), + [sym_raw_string_literal] = STATE(3272), + [sym_boolean_literal] = STATE(3272), + [sym_identifier] = STATE(2178), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(415), [sym_preproc_endregion] = STATE(415), [sym_preproc_line] = STATE(415), @@ -110005,53 +109891,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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(2415), - [anon_sym_LPAREN] = ACTIONS(2597), - [anon_sym_ref] = ACTIONS(2369), - [anon_sym_LBRACE] = ACTIONS(2371), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(2357), + [anon_sym_LPAREN] = ACTIONS(2393), + [anon_sym_ref] = ACTIONS(2341), + [anon_sym_LBRACE] = ACTIONS(2343), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1061), - [anon_sym_LT] = ACTIONS(2599), - [anon_sym_GT] = ACTIONS(2599), + [anon_sym_new] = ACTIONS(1059), + [anon_sym_LT] = ACTIONS(2395), + [anon_sym_GT] = ACTIONS(2395), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1067), - [anon_sym_BANG] = ACTIONS(1735), - [anon_sym_TILDE] = ACTIONS(1735), - [anon_sym_PLUS_PLUS] = ACTIONS(1735), - [anon_sym_DASH_DASH] = ACTIONS(1735), - [anon_sym_true] = ACTIONS(1645), - [anon_sym_false] = ACTIONS(1645), - [anon_sym_PLUS] = ACTIONS(1733), - [anon_sym_DASH] = ACTIONS(1733), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(1921), + [anon_sym_TILDE] = ACTIONS(1921), + [anon_sym_PLUS_PLUS] = ACTIONS(1921), + [anon_sym_DASH_DASH] = ACTIONS(1921), + [anon_sym_true] = ACTIONS(1169), + [anon_sym_false] = ACTIONS(1169), + [anon_sym_PLUS] = ACTIONS(1919), + [anon_sym_DASH] = ACTIONS(1919), [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(1735), - [anon_sym_AMP] = ACTIONS(1735), - [anon_sym_GT_EQ] = ACTIONS(2601), - [anon_sym_LT_EQ] = ACTIONS(2601), + [anon_sym_CARET] = ACTIONS(1921), + [anon_sym_AMP] = ACTIONS(1921), + [anon_sym_GT_EQ] = ACTIONS(2397), + [anon_sym_LT_EQ] = ACTIONS(2397), [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(2377), + [anon_sym_scoped] = ACTIONS(2349), [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(2423), - [sym_predefined_type] = ACTIONS(2425), - [anon_sym_unchecked] = ACTIONS(1067), + [anon_sym_var] = ACTIONS(2365), + [sym_predefined_type] = ACTIONS(2367), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1655), - [anon_sym_throw] = ACTIONS(1589), + [anon_sym_default] = ACTIONS(1179), + [anon_sym_throw] = ACTIONS(1527), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1591), - [sym_discard] = ACTIONS(2427), + [anon_sym_await] = ACTIONS(1529), + [sym_discard] = ACTIONS(2369), [anon_sym_DOT_DOT] = ACTIONS(123), - [anon_sym_not] = ACTIONS(2603), + [anon_sym_not] = ACTIONS(2399), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -110065,18 +109951,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(1665), - [anon_sym_typeof] = ACTIONS(1667), + [anon_sym_sizeof] = ACTIONS(1189), + [anon_sym_typeof] = ACTIONS(1191), [anon_sym___makeref] = ACTIONS(133), [anon_sym___reftype] = ACTIONS(135), [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(1675), - [anon_sym_SQUOTE] = ACTIONS(1677), - [sym_integer_literal] = ACTIONS(1675), - [sym_real_literal] = ACTIONS(1679), - [anon_sym_DQUOTE] = ACTIONS(1681), - [sym_verbatim_string_literal] = ACTIONS(1679), - [aux_sym_preproc_if_token1] = ACTIONS(1089), + [sym_null_literal] = ACTIONS(1199), + [anon_sym_SQUOTE] = ACTIONS(1201), + [sym_integer_literal] = ACTIONS(1199), + [sym_real_literal] = ACTIONS(1203), + [anon_sym_DQUOTE] = ACTIONS(1205), + [sym_verbatim_string_literal] = ACTIONS(1203), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -110087,104 +109973,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(1685), - [sym_interpolation_verbatim_start] = ACTIONS(1687), - [sym_interpolation_raw_start] = ACTIONS(1689), - [sym_raw_string_start] = ACTIONS(1691), + [sym_interpolation_regular_start] = ACTIONS(1209), + [sym_interpolation_verbatim_start] = ACTIONS(1211), + [sym_interpolation_raw_start] = ACTIONS(1213), + [sym_raw_string_start] = ACTIONS(1215), }, [416] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(2421), - [sym_alias_qualified_name] = STATE(2373), - [sym__simple_name] = STATE(2191), - [sym_qualified_name] = STATE(2373), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(2242), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(2378), - [sym__array_base_type] = STATE(7103), - [sym_nullable_type] = STATE(2379), - [sym_pointer_type] = STATE(2379), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(2379), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(2380), - [sym_pattern] = STATE(3432), - [sym_constant_pattern] = STATE(3486), - [sym_parenthesized_pattern] = STATE(3486), - [sym_var_pattern] = STATE(3486), - [sym_type_pattern] = STATE(3486), - [sym_list_pattern] = STATE(3486), - [sym_recursive_pattern] = STATE(3486), - [sym_positional_pattern_clause] = STATE(2276), - [sym_property_pattern_clause] = STATE(2330), - [sym_relational_pattern] = STATE(3486), - [sym_negated_pattern] = STATE(3486), - [sym_and_pattern] = STATE(3486), - [sym_or_pattern] = STATE(3486), - [sym_declaration_pattern] = STATE(3486), - [sym_expression] = STATE(5708), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3520), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3455), - [sym_postfix_unary_expression] = STATE(3469), - [sym_prefix_unary_expression] = STATE(3469), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6154), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3455), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3469), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3455), - [sym_member_access_expression] = STATE(2719), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3469), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7530), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(3455), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3455), - [sym_typeof_expression] = STATE(3455), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2719), - [sym_literal] = STATE(3455), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2186), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(2862), + [sym_alias_qualified_name] = STATE(2402), + [sym__simple_name] = STATE(2340), + [sym_qualified_name] = STATE(2402), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(2495), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(2373), + [sym__array_base_type] = STATE(7083), + [sym_nullable_type] = STATE(2375), + [sym_pointer_type] = STATE(2375), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(2375), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(2377), + [sym_pattern] = STATE(3260), + [sym_constant_pattern] = STATE(3311), + [sym_parenthesized_pattern] = STATE(3311), + [sym_var_pattern] = STATE(3311), + [sym_type_pattern] = STATE(3311), + [sym_list_pattern] = STATE(3311), + [sym_recursive_pattern] = STATE(3311), + [sym_positional_pattern_clause] = STATE(2587), + [sym_property_pattern_clause] = STATE(2757), + [sym_relational_pattern] = STATE(3311), + [sym_negated_pattern] = STATE(3311), + [sym_and_pattern] = STATE(3311), + [sym_or_pattern] = STATE(3311), + [sym_declaration_pattern] = STATE(3311), + [sym_expression] = STATE(5679), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3510), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3275), + [sym_postfix_unary_expression] = STATE(3276), + [sym_prefix_unary_expression] = STATE(3276), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6134), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3275), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3276), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3275), + [sym_member_access_expression] = STATE(2608), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3276), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7425), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(3275), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3275), + [sym_typeof_expression] = STATE(3275), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2608), + [sym_literal] = STATE(3275), + [sym_character_literal] = STATE(3272), + [sym_string_literal] = STATE(3272), + [sym_raw_string_literal] = STATE(3272), + [sym_boolean_literal] = STATE(3272), + [sym_identifier] = STATE(2178), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(416), [sym_preproc_endregion] = STATE(416), [sym_preproc_line] = STATE(416), @@ -110194,53 +110080,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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1049), - [anon_sym_LPAREN] = ACTIONS(2561), - [anon_sym_ref] = ACTIONS(2369), - [anon_sym_LBRACE] = ACTIONS(2371), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(2357), + [anon_sym_LPAREN] = ACTIONS(2393), + [anon_sym_ref] = ACTIONS(2341), + [anon_sym_LBRACE] = ACTIONS(2343), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1061), - [anon_sym_LT] = ACTIONS(2563), - [anon_sym_GT] = ACTIONS(2563), + [anon_sym_new] = ACTIONS(1059), + [anon_sym_LT] = ACTIONS(2395), + [anon_sym_GT] = ACTIONS(2395), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1067), - [anon_sym_BANG] = ACTIONS(1349), - [anon_sym_TILDE] = ACTIONS(1349), - [anon_sym_PLUS_PLUS] = ACTIONS(1349), - [anon_sym_DASH_DASH] = ACTIONS(1349), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1347), - [anon_sym_DASH] = ACTIONS(1347), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(1921), + [anon_sym_TILDE] = ACTIONS(1921), + [anon_sym_PLUS_PLUS] = ACTIONS(1921), + [anon_sym_DASH_DASH] = ACTIONS(1921), + [anon_sym_true] = ACTIONS(1169), + [anon_sym_false] = ACTIONS(1169), + [anon_sym_PLUS] = ACTIONS(1919), + [anon_sym_DASH] = ACTIONS(1919), [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(1349), - [anon_sym_AMP] = ACTIONS(1349), - [anon_sym_GT_EQ] = ACTIONS(2565), - [anon_sym_LT_EQ] = ACTIONS(2565), + [anon_sym_CARET] = ACTIONS(1921), + [anon_sym_AMP] = ACTIONS(1921), + [anon_sym_GT_EQ] = ACTIONS(2397), + [anon_sym_LT_EQ] = ACTIONS(2397), [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(2377), + [anon_sym_scoped] = ACTIONS(2349), [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(2433), - [sym_predefined_type] = ACTIONS(2435), - [anon_sym_unchecked] = ACTIONS(1067), + [anon_sym_var] = ACTIONS(2365), + [sym_predefined_type] = ACTIONS(2367), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1589), + [anon_sym_default] = ACTIONS(1179), + [anon_sym_throw] = ACTIONS(1527), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1591), - [sym_discard] = ACTIONS(1083), + [anon_sym_await] = ACTIONS(1529), + [sym_discard] = ACTIONS(2369), [anon_sym_DOT_DOT] = ACTIONS(123), - [anon_sym_not] = ACTIONS(2567), + [anon_sym_not] = ACTIONS(2399), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -110254,18 +110140,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(129), - [anon_sym_typeof] = ACTIONS(131), + [anon_sym_sizeof] = ACTIONS(1189), + [anon_sym_typeof] = ACTIONS(1191), [anon_sym___makeref] = ACTIONS(133), [anon_sym___reftype] = ACTIONS(135), [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1089), + [sym_null_literal] = ACTIONS(1199), + [anon_sym_SQUOTE] = ACTIONS(1201), + [sym_integer_literal] = ACTIONS(1199), + [sym_real_literal] = ACTIONS(1203), + [anon_sym_DQUOTE] = ACTIONS(1205), + [sym_verbatim_string_literal] = ACTIONS(1203), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -110276,104 +110162,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(1209), + [sym_interpolation_verbatim_start] = ACTIONS(1211), + [sym_interpolation_raw_start] = ACTIONS(1213), + [sym_raw_string_start] = ACTIONS(1215), }, [417] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(5160), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2230), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(4363), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_pattern] = STATE(6493), - [sym_constant_pattern] = STATE(3486), - [sym_parenthesized_pattern] = STATE(3486), - [sym_var_pattern] = STATE(3486), - [sym_type_pattern] = STATE(3486), - [sym_list_pattern] = STATE(3486), - [sym_recursive_pattern] = STATE(3486), - [sym_positional_pattern_clause] = STATE(5175), - [sym_property_pattern_clause] = STATE(5675), - [sym_relational_pattern] = STATE(3486), - [sym_negated_pattern] = STATE(3486), - [sym_and_pattern] = STATE(3486), - [sym_or_pattern] = STATE(3486), - [sym_declaration_pattern] = STATE(3486), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(2862), + [sym_alias_qualified_name] = STATE(2402), + [sym__simple_name] = STATE(2340), + [sym_qualified_name] = STATE(2402), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(2495), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(2373), + [sym__array_base_type] = STATE(7083), + [sym_nullable_type] = STATE(2375), + [sym_pointer_type] = STATE(2375), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(2375), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(2377), + [sym_pattern] = STATE(5108), + [sym_constant_pattern] = STATE(3311), + [sym_parenthesized_pattern] = STATE(3311), + [sym_var_pattern] = STATE(3311), + [sym_type_pattern] = STATE(3311), + [sym_list_pattern] = STATE(3311), + [sym_recursive_pattern] = STATE(3311), + [sym_positional_pattern_clause] = STATE(2587), + [sym_property_pattern_clause] = STATE(2757), + [sym_relational_pattern] = STATE(3311), + [sym_negated_pattern] = STATE(3311), + [sym_and_pattern] = STATE(3311), + [sym_or_pattern] = STATE(3311), + [sym_declaration_pattern] = STATE(3311), [sym_expression] = STATE(5679), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3520), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(4419), - [sym_postfix_unary_expression] = STATE(4420), - [sym_prefix_unary_expression] = STATE(4420), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6154), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(4419), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(4420), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(4419), - [sym_member_access_expression] = STATE(3135), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(4420), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7530), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(4419), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(4419), - [sym_typeof_expression] = STATE(4419), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(3135), - [sym_literal] = STATE(4419), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3510), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3275), + [sym_postfix_unary_expression] = STATE(3276), + [sym_prefix_unary_expression] = STATE(3276), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6134), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3275), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3276), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3275), + [sym_member_access_expression] = STATE(2608), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3276), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7425), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(3275), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3275), + [sym_typeof_expression] = STATE(3275), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2608), + [sym_literal] = STATE(3275), + [sym_character_literal] = STATE(3272), + [sym_string_literal] = STATE(3272), + [sym_raw_string_literal] = STATE(3272), + [sym_boolean_literal] = STATE(3272), + [sym_identifier] = STATE(2178), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(417), [sym_preproc_endregion] = STATE(417), [sym_preproc_line] = STATE(417), @@ -110383,53 +110269,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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1049), - [anon_sym_LPAREN] = ACTIONS(1053), - [anon_sym_ref] = ACTIONS(2303), - [anon_sym_LBRACE] = ACTIONS(1059), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(2357), + [anon_sym_LPAREN] = ACTIONS(2393), + [anon_sym_ref] = ACTIONS(2341), + [anon_sym_LBRACE] = ACTIONS(2343), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1061), - [anon_sym_LT] = ACTIONS(1063), - [anon_sym_GT] = ACTIONS(1063), + [anon_sym_new] = ACTIONS(1059), + [anon_sym_LT] = ACTIONS(2395), + [anon_sym_GT] = ACTIONS(2395), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1067), - [anon_sym_BANG] = ACTIONS(1069), - [anon_sym_TILDE] = ACTIONS(1069), - [anon_sym_PLUS_PLUS] = ACTIONS(1069), - [anon_sym_DASH_DASH] = ACTIONS(1069), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1071), - [anon_sym_DASH] = ACTIONS(1071), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(1921), + [anon_sym_TILDE] = ACTIONS(1921), + [anon_sym_PLUS_PLUS] = ACTIONS(1921), + [anon_sym_DASH_DASH] = ACTIONS(1921), + [anon_sym_true] = ACTIONS(1169), + [anon_sym_false] = ACTIONS(1169), + [anon_sym_PLUS] = ACTIONS(1919), + [anon_sym_DASH] = ACTIONS(1919), [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(1069), - [anon_sym_AMP] = ACTIONS(1069), - [anon_sym_GT_EQ] = ACTIONS(1073), - [anon_sym_LT_EQ] = ACTIONS(1073), + [anon_sym_CARET] = ACTIONS(1921), + [anon_sym_AMP] = ACTIONS(1921), + [anon_sym_GT_EQ] = ACTIONS(2397), + [anon_sym_LT_EQ] = ACTIONS(2397), [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(1075), + [anon_sym_scoped] = ACTIONS(2349), [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(1077), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1067), + [anon_sym_var] = ACTIONS(2365), + [sym_predefined_type] = ACTIONS(2367), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1589), + [anon_sym_default] = ACTIONS(1179), + [anon_sym_throw] = ACTIONS(1527), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1591), - [sym_discard] = ACTIONS(1083), + [anon_sym_await] = ACTIONS(1529), + [sym_discard] = ACTIONS(2369), [anon_sym_DOT_DOT] = ACTIONS(123), - [anon_sym_not] = ACTIONS(1087), + [anon_sym_not] = ACTIONS(2399), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -110443,18 +110329,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(129), - [anon_sym_typeof] = ACTIONS(131), + [anon_sym_sizeof] = ACTIONS(1189), + [anon_sym_typeof] = ACTIONS(1191), [anon_sym___makeref] = ACTIONS(133), [anon_sym___reftype] = ACTIONS(135), [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1089), + [sym_null_literal] = ACTIONS(1199), + [anon_sym_SQUOTE] = ACTIONS(1201), + [sym_integer_literal] = ACTIONS(1199), + [sym_real_literal] = ACTIONS(1203), + [anon_sym_DQUOTE] = ACTIONS(1205), + [sym_verbatim_string_literal] = ACTIONS(1203), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -110465,104 +110351,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(1209), + [sym_interpolation_verbatim_start] = ACTIONS(1211), + [sym_interpolation_raw_start] = ACTIONS(1213), + [sym_raw_string_start] = ACTIONS(1215), }, [418] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(2721), - [sym_alias_qualified_name] = STATE(2764), - [sym__simple_name] = STATE(2256), - [sym_qualified_name] = STATE(2764), - [sym_generic_name] = STATE(2269), - [sym_type] = STATE(2388), - [sym_implicit_type] = STATE(2791), - [sym_array_type] = STATE(2767), - [sym__array_base_type] = STATE(7243), - [sym_nullable_type] = STATE(2768), - [sym_pointer_type] = STATE(2768), - [sym__pointer_base_type] = STATE(7717), - [sym_function_pointer_type] = STATE(2768), - [sym_ref_type] = STATE(2791), - [sym_scoped_type] = STATE(2791), - [sym_tuple_type] = STATE(2769), - [sym_pattern] = STATE(4624), - [sym_constant_pattern] = STATE(4631), - [sym_parenthesized_pattern] = STATE(4631), - [sym_var_pattern] = STATE(4631), - [sym_type_pattern] = STATE(4631), - [sym_list_pattern] = STATE(4631), - [sym_recursive_pattern] = STATE(4631), - [sym_positional_pattern_clause] = STATE(2488), - [sym_property_pattern_clause] = STATE(2561), - [sym_relational_pattern] = STATE(4631), - [sym_negated_pattern] = STATE(4631), - [sym_and_pattern] = STATE(4631), - [sym_or_pattern] = STATE(4631), - [sym_declaration_pattern] = STATE(4631), - [sym_expression] = STATE(5690), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3520), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(4544), - [sym_postfix_unary_expression] = STATE(4545), - [sym_prefix_unary_expression] = STATE(4545), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6154), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(4544), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(4545), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(4544), - [sym_member_access_expression] = STATE(3197), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(4545), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7530), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(4544), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(4544), - [sym_typeof_expression] = STATE(4544), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(3197), - [sym_literal] = STATE(4544), - [sym_character_literal] = STATE(4536), - [sym_string_literal] = STATE(4536), - [sym_raw_string_literal] = STATE(4536), - [sym_boolean_literal] = STATE(4536), - [sym_identifier] = STATE(2226), - [sym__reserved_identifier] = STATE(2240), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(2611), + [sym_alias_qualified_name] = STATE(2402), + [sym__simple_name] = STATE(2184), + [sym_qualified_name] = STATE(2402), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(2235), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(2373), + [sym__array_base_type] = STATE(7083), + [sym_nullable_type] = STATE(2375), + [sym_pointer_type] = STATE(2375), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(2375), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(2377), + [sym_pattern] = STATE(4745), + [sym_constant_pattern] = STATE(3429), + [sym_parenthesized_pattern] = STATE(3429), + [sym_var_pattern] = STATE(3429), + [sym_type_pattern] = STATE(3429), + [sym_list_pattern] = STATE(3429), + [sym_recursive_pattern] = STATE(3429), + [sym_positional_pattern_clause] = STATE(2275), + [sym_property_pattern_clause] = STATE(2315), + [sym_relational_pattern] = STATE(3429), + [sym_negated_pattern] = STATE(3429), + [sym_and_pattern] = STATE(3429), + [sym_or_pattern] = STATE(3429), + [sym_declaration_pattern] = STATE(3429), + [sym_expression] = STATE(5657), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3510), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3397), + [sym_postfix_unary_expression] = STATE(3404), + [sym_prefix_unary_expression] = STATE(3404), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6134), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3397), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3404), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3397), + [sym_member_access_expression] = STATE(2686), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3404), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7425), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(3397), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3397), + [sym_typeof_expression] = STATE(3397), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2686), + [sym_literal] = STATE(3397), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2202), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(418), [sym_preproc_endregion] = STATE(418), [sym_preproc_line] = STATE(418), @@ -110572,78 +110458,78 @@ 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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), - [sym__identifier_token] = ACTIONS(1387), - [anon_sym_alias] = ACTIONS(1389), - [anon_sym_global] = ACTIONS(1389), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(2341), - [anon_sym_LPAREN] = ACTIONS(2605), - [anon_sym_ref] = ACTIONS(2345), - [anon_sym_LBRACE] = ACTIONS(2347), - [anon_sym_delegate] = ACTIONS(2349), - [anon_sym_async] = ACTIONS(1047), - [anon_sym_file] = ACTIONS(1389), - [anon_sym_new] = ACTIONS(1061), - [anon_sym_LT] = ACTIONS(2607), - [anon_sym_GT] = ACTIONS(2607), - [anon_sym_where] = ACTIONS(1389), - [anon_sym_notnull] = ACTIONS(1389), - [anon_sym_unmanaged] = ACTIONS(1389), - [anon_sym_checked] = ACTIONS(1067), - [anon_sym_BANG] = ACTIONS(1407), - [anon_sym_TILDE] = ACTIONS(1407), - [anon_sym_PLUS_PLUS] = ACTIONS(1407), - [anon_sym_DASH_DASH] = ACTIONS(1407), - [anon_sym_true] = ACTIONS(1409), - [anon_sym_false] = ACTIONS(1409), - [anon_sym_PLUS] = ACTIONS(1405), - [anon_sym_DASH] = ACTIONS(1405), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), + [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(2537), + [anon_sym_ref] = ACTIONS(2519), + [anon_sym_LBRACE] = ACTIONS(2343), + [anon_sym_delegate] = ACTIONS(669), + [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_where] = ACTIONS(29), + [anon_sym_notnull] = ACTIONS(29), + [anon_sym_unmanaged] = ACTIONS(29), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(1101), + [anon_sym_TILDE] = ACTIONS(1101), + [anon_sym_PLUS_PLUS] = ACTIONS(1101), + [anon_sym_DASH_DASH] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(77), + [anon_sym_false] = ACTIONS(77), + [anon_sym_PLUS] = ACTIONS(1103), + [anon_sym_DASH] = ACTIONS(1103), [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(1407), - [anon_sym_AMP] = ACTIONS(1407), - [anon_sym_GT_EQ] = ACTIONS(2609), - [anon_sym_LT_EQ] = ACTIONS(2609), + [anon_sym_CARET] = ACTIONS(1101), + [anon_sym_AMP] = ACTIONS(1101), + [anon_sym_GT_EQ] = ACTIONS(2541), + [anon_sym_LT_EQ] = ACTIONS(2541), [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(2355), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(2357), - [sym_predefined_type] = ACTIONS(2359), - [anon_sym_unchecked] = ACTIONS(1067), - [anon_sym_yield] = ACTIONS(1389), - [anon_sym_default] = ACTIONS(1423), - [anon_sym_throw] = ACTIONS(1589), - [anon_sym_when] = ACTIONS(1389), - [anon_sym_await] = ACTIONS(1591), - [sym_discard] = ACTIONS(2361), + [anon_sym_scoped] = ACTIONS(2525), + [anon_sym_base] = ACTIONS(87), + [anon_sym_var] = ACTIONS(2351), + [sym_predefined_type] = ACTIONS(2353), + [anon_sym_unchecked] = ACTIONS(1065), + [anon_sym_yield] = ACTIONS(29), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(1527), + [anon_sym_when] = ACTIONS(29), + [anon_sym_await] = ACTIONS(1529), + [sym_discard] = ACTIONS(1081), [anon_sym_DOT_DOT] = ACTIONS(123), - [anon_sym_not] = ACTIONS(2611), - [anon_sym_from] = ACTIONS(1431), - [anon_sym_into] = ACTIONS(1389), - [anon_sym_join] = ACTIONS(1389), - [anon_sym_on] = ACTIONS(1389), - [anon_sym_equals] = ACTIONS(1389), - [anon_sym_let] = ACTIONS(1389), - [anon_sym_orderby] = ACTIONS(1389), - [anon_sym_ascending] = ACTIONS(1389), - [anon_sym_descending] = ACTIONS(1389), - [anon_sym_group] = ACTIONS(1389), - [anon_sym_by] = ACTIONS(1389), - [anon_sym_select] = ACTIONS(1389), + [anon_sym_not] = ACTIONS(2543), + [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(1435), - [anon_sym_typeof] = ACTIONS(1437), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), [anon_sym___makeref] = ACTIONS(133), [anon_sym___reftype] = ACTIONS(135), [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(1445), - [anon_sym_SQUOTE] = ACTIONS(1447), - [sym_integer_literal] = ACTIONS(1445), - [sym_real_literal] = ACTIONS(1449), - [anon_sym_DQUOTE] = ACTIONS(1451), - [sym_verbatim_string_literal] = ACTIONS(1449), - [aux_sym_preproc_if_token1] = ACTIONS(1089), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_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), @@ -110654,104 +110540,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(1455), - [sym_interpolation_verbatim_start] = ACTIONS(1457), - [sym_interpolation_raw_start] = ACTIONS(1459), - [sym_raw_string_start] = ACTIONS(1461), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [sym_interpolation_raw_start] = ACTIONS(155), + [sym_raw_string_start] = ACTIONS(157), }, [419] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(5723), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2284), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5162), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_pattern] = STATE(3432), - [sym_constant_pattern] = STATE(3486), - [sym_parenthesized_pattern] = STATE(3486), - [sym_var_pattern] = STATE(3486), - [sym_type_pattern] = STATE(3486), - [sym_list_pattern] = STATE(3486), - [sym_recursive_pattern] = STATE(3486), - [sym_positional_pattern_clause] = STATE(5670), - [sym_property_pattern_clause] = STATE(5735), - [sym_relational_pattern] = STATE(3486), - [sym_negated_pattern] = STATE(3486), - [sym_and_pattern] = STATE(3486), - [sym_or_pattern] = STATE(3486), - [sym_declaration_pattern] = STATE(3486), - [sym_expression] = STATE(5668), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3520), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(4216), - [sym_postfix_unary_expression] = STATE(4219), - [sym_prefix_unary_expression] = STATE(4219), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6154), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(4216), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(4219), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(4216), - [sym_member_access_expression] = STATE(3121), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(4219), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7530), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(4216), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(4216), - [sym_typeof_expression] = STATE(4216), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(3121), - [sym_literal] = STATE(4216), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2267), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(2856), + [sym_alias_qualified_name] = STATE(2402), + [sym__simple_name] = STATE(2271), + [sym_qualified_name] = STATE(2402), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(2478), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(2373), + [sym__array_base_type] = STATE(7083), + [sym_nullable_type] = STATE(2375), + [sym_pointer_type] = STATE(2375), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(2375), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(2377), + [sym_pattern] = STATE(4897), + [sym_constant_pattern] = STATE(3311), + [sym_parenthesized_pattern] = STATE(3311), + [sym_var_pattern] = STATE(3311), + [sym_type_pattern] = STATE(3311), + [sym_list_pattern] = STATE(3311), + [sym_recursive_pattern] = STATE(3311), + [sym_positional_pattern_clause] = STATE(2526), + [sym_property_pattern_clause] = STATE(2588), + [sym_relational_pattern] = STATE(3311), + [sym_negated_pattern] = STATE(3311), + [sym_and_pattern] = STATE(3311), + [sym_or_pattern] = STATE(3311), + [sym_declaration_pattern] = STATE(3311), + [sym_expression] = STATE(5669), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3510), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3275), + [sym_postfix_unary_expression] = STATE(3276), + [sym_prefix_unary_expression] = STATE(3276), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6134), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3275), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3276), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3275), + [sym_member_access_expression] = STATE(2608), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3276), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7425), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(3275), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3275), + [sym_typeof_expression] = STATE(3275), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2608), + [sym_literal] = STATE(3275), + [sym_character_literal] = STATE(3272), + [sym_string_literal] = STATE(3272), + [sym_raw_string_literal] = STATE(3272), + [sym_boolean_literal] = STATE(3272), + [sym_identifier] = STATE(2260), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(419), [sym_preproc_endregion] = STATE(419), [sym_preproc_line] = STATE(419), @@ -110761,53 +110647,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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1049), - [anon_sym_LPAREN] = ACTIONS(1985), - [anon_sym_ref] = ACTIONS(1987), - [anon_sym_LBRACE] = ACTIONS(1059), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(2357), + [anon_sym_LPAREN] = ACTIONS(2561), + [anon_sym_ref] = ACTIONS(2499), + [anon_sym_LBRACE] = ACTIONS(2343), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1061), - [anon_sym_LT] = ACTIONS(1991), - [anon_sym_GT] = ACTIONS(1991), + [anon_sym_new] = ACTIONS(1059), + [anon_sym_LT] = ACTIONS(2563), + [anon_sym_GT] = ACTIONS(2563), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1067), - [anon_sym_BANG] = ACTIONS(1617), - [anon_sym_TILDE] = ACTIONS(1617), - [anon_sym_PLUS_PLUS] = ACTIONS(1617), - [anon_sym_DASH_DASH] = ACTIONS(1617), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1615), - [anon_sym_DASH] = ACTIONS(1615), + [anon_sym_checked] = ACTIONS(1065), + [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(1169), + [anon_sym_false] = ACTIONS(1169), + [anon_sym_PLUS] = ACTIONS(1601), + [anon_sym_DASH] = ACTIONS(1601), [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(1617), - [anon_sym_AMP] = ACTIONS(1617), - [anon_sym_GT_EQ] = ACTIONS(1993), - [anon_sym_LT_EQ] = ACTIONS(1993), + [anon_sym_CARET] = ACTIONS(1603), + [anon_sym_AMP] = ACTIONS(1603), + [anon_sym_GT_EQ] = ACTIONS(2565), + [anon_sym_LT_EQ] = ACTIONS(2565), [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(1075), + [anon_sym_scoped] = ACTIONS(2349), [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(1995), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1067), + [anon_sym_var] = ACTIONS(2511), + [sym_predefined_type] = ACTIONS(2367), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1589), + [anon_sym_default] = ACTIONS(1179), + [anon_sym_throw] = ACTIONS(1527), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1591), - [sym_discard] = ACTIONS(1083), + [anon_sym_await] = ACTIONS(1529), + [sym_discard] = ACTIONS(2369), [anon_sym_DOT_DOT] = ACTIONS(123), - [anon_sym_not] = ACTIONS(1997), + [anon_sym_not] = ACTIONS(2567), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -110821,18 +110707,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(129), - [anon_sym_typeof] = ACTIONS(131), + [anon_sym_sizeof] = ACTIONS(1189), + [anon_sym_typeof] = ACTIONS(1191), [anon_sym___makeref] = ACTIONS(133), [anon_sym___reftype] = ACTIONS(135), [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1089), + [sym_null_literal] = ACTIONS(1199), + [anon_sym_SQUOTE] = ACTIONS(1201), + [sym_integer_literal] = ACTIONS(1199), + [sym_real_literal] = ACTIONS(1203), + [anon_sym_DQUOTE] = ACTIONS(1205), + [sym_verbatim_string_literal] = ACTIONS(1203), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -110843,104 +110729,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(1209), + [sym_interpolation_verbatim_start] = ACTIONS(1211), + [sym_interpolation_raw_start] = ACTIONS(1213), + [sym_raw_string_start] = ACTIONS(1215), }, [420] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(5723), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2284), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5162), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_pattern] = STATE(6711), - [sym_constant_pattern] = STATE(3486), - [sym_parenthesized_pattern] = STATE(3486), - [sym_var_pattern] = STATE(3486), - [sym_type_pattern] = STATE(3486), - [sym_list_pattern] = STATE(3486), - [sym_recursive_pattern] = STATE(3486), - [sym_positional_pattern_clause] = STATE(5670), - [sym_property_pattern_clause] = STATE(5735), - [sym_relational_pattern] = STATE(3486), - [sym_negated_pattern] = STATE(3486), - [sym_and_pattern] = STATE(3486), - [sym_or_pattern] = STATE(3486), - [sym_declaration_pattern] = STATE(3486), - [sym_expression] = STATE(5668), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3520), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(4216), - [sym_postfix_unary_expression] = STATE(4219), - [sym_prefix_unary_expression] = STATE(4219), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6154), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(4216), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(4219), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(4216), - [sym_member_access_expression] = STATE(3121), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(4219), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7530), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(4216), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(4216), - [sym_typeof_expression] = STATE(4216), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(3121), - [sym_literal] = STATE(4216), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2267), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(2856), + [sym_alias_qualified_name] = STATE(2402), + [sym__simple_name] = STATE(2271), + [sym_qualified_name] = STATE(2402), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(2478), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(2373), + [sym__array_base_type] = STATE(7083), + [sym_nullable_type] = STATE(2375), + [sym_pointer_type] = STATE(2375), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(2375), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(2377), + [sym_pattern] = STATE(3260), + [sym_constant_pattern] = STATE(3311), + [sym_parenthesized_pattern] = STATE(3311), + [sym_var_pattern] = STATE(3311), + [sym_type_pattern] = STATE(3311), + [sym_list_pattern] = STATE(3311), + [sym_recursive_pattern] = STATE(3311), + [sym_positional_pattern_clause] = STATE(2526), + [sym_property_pattern_clause] = STATE(2588), + [sym_relational_pattern] = STATE(3311), + [sym_negated_pattern] = STATE(3311), + [sym_and_pattern] = STATE(3311), + [sym_or_pattern] = STATE(3311), + [sym_declaration_pattern] = STATE(3311), + [sym_expression] = STATE(5669), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3510), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3275), + [sym_postfix_unary_expression] = STATE(3276), + [sym_prefix_unary_expression] = STATE(3276), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6134), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3275), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3276), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3275), + [sym_member_access_expression] = STATE(2608), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3276), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7425), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(3275), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3275), + [sym_typeof_expression] = STATE(3275), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2608), + [sym_literal] = STATE(3275), + [sym_character_literal] = STATE(3272), + [sym_string_literal] = STATE(3272), + [sym_raw_string_literal] = STATE(3272), + [sym_boolean_literal] = STATE(3272), + [sym_identifier] = STATE(2260), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(420), [sym_preproc_endregion] = STATE(420), [sym_preproc_line] = STATE(420), @@ -110950,53 +110836,53 @@ 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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1049), - [anon_sym_LPAREN] = ACTIONS(1985), - [anon_sym_ref] = ACTIONS(1987), - [anon_sym_LBRACE] = ACTIONS(1059), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(2357), + [anon_sym_LPAREN] = ACTIONS(2561), + [anon_sym_ref] = ACTIONS(2499), + [anon_sym_LBRACE] = ACTIONS(2343), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1061), - [anon_sym_LT] = ACTIONS(1991), - [anon_sym_GT] = ACTIONS(1991), + [anon_sym_new] = ACTIONS(1059), + [anon_sym_LT] = ACTIONS(2563), + [anon_sym_GT] = ACTIONS(2563), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1067), - [anon_sym_BANG] = ACTIONS(1617), - [anon_sym_TILDE] = ACTIONS(1617), - [anon_sym_PLUS_PLUS] = ACTIONS(1617), - [anon_sym_DASH_DASH] = ACTIONS(1617), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1615), - [anon_sym_DASH] = ACTIONS(1615), + [anon_sym_checked] = ACTIONS(1065), + [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(1169), + [anon_sym_false] = ACTIONS(1169), + [anon_sym_PLUS] = ACTIONS(1601), + [anon_sym_DASH] = ACTIONS(1601), [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(1617), - [anon_sym_AMP] = ACTIONS(1617), - [anon_sym_GT_EQ] = ACTIONS(1993), - [anon_sym_LT_EQ] = ACTIONS(1993), + [anon_sym_CARET] = ACTIONS(1603), + [anon_sym_AMP] = ACTIONS(1603), + [anon_sym_GT_EQ] = ACTIONS(2565), + [anon_sym_LT_EQ] = ACTIONS(2565), [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(1075), + [anon_sym_scoped] = ACTIONS(2349), [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(1995), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1067), + [anon_sym_var] = ACTIONS(2511), + [sym_predefined_type] = ACTIONS(2367), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1589), + [anon_sym_default] = ACTIONS(1179), + [anon_sym_throw] = ACTIONS(1527), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1591), - [sym_discard] = ACTIONS(1083), + [anon_sym_await] = ACTIONS(1529), + [sym_discard] = ACTIONS(2369), [anon_sym_DOT_DOT] = ACTIONS(123), - [anon_sym_not] = ACTIONS(1997), + [anon_sym_not] = ACTIONS(2567), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -111010,18 +110896,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(129), - [anon_sym_typeof] = ACTIONS(131), + [anon_sym_sizeof] = ACTIONS(1189), + [anon_sym_typeof] = ACTIONS(1191), [anon_sym___makeref] = ACTIONS(133), [anon_sym___reftype] = ACTIONS(135), [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1089), + [sym_null_literal] = ACTIONS(1199), + [anon_sym_SQUOTE] = ACTIONS(1201), + [sym_integer_literal] = ACTIONS(1199), + [sym_real_literal] = ACTIONS(1203), + [anon_sym_DQUOTE] = ACTIONS(1205), + [sym_verbatim_string_literal] = ACTIONS(1203), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -111032,104 +110918,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(1209), + [sym_interpolation_verbatim_start] = ACTIONS(1211), + [sym_interpolation_raw_start] = ACTIONS(1213), + [sym_raw_string_start] = ACTIONS(1215), }, [421] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(2426), - [sym_alias_qualified_name] = STATE(2373), - [sym__simple_name] = STATE(2189), - [sym_qualified_name] = STATE(2373), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(2231), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(2378), - [sym__array_base_type] = STATE(7103), - [sym_nullable_type] = STATE(2379), - [sym_pointer_type] = STATE(2379), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(2379), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(2380), - [sym_pattern] = STATE(5315), - [sym_constant_pattern] = STATE(3295), - [sym_parenthesized_pattern] = STATE(3295), - [sym_var_pattern] = STATE(3295), - [sym_type_pattern] = STATE(3295), - [sym_list_pattern] = STATE(3295), - [sym_recursive_pattern] = STATE(3295), - [sym_positional_pattern_clause] = STATE(2251), - [sym_property_pattern_clause] = STATE(2302), - [sym_relational_pattern] = STATE(3295), - [sym_negated_pattern] = STATE(3295), - [sym_and_pattern] = STATE(3295), - [sym_or_pattern] = STATE(3295), - [sym_declaration_pattern] = STATE(3295), - [sym_expression] = STATE(5695), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3520), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3310), - [sym_postfix_unary_expression] = STATE(3312), - [sym_prefix_unary_expression] = STATE(3312), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6154), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3310), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3312), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3310), - [sym_member_access_expression] = STATE(2617), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3312), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7530), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(3310), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3310), - [sym_typeof_expression] = STATE(3310), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2617), - [sym_literal] = STATE(3310), - [sym_character_literal] = STATE(3278), - [sym_string_literal] = STATE(3278), - [sym_raw_string_literal] = STATE(3278), - [sym_boolean_literal] = STATE(3278), - [sym_identifier] = STATE(2186), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(2856), + [sym_alias_qualified_name] = STATE(2402), + [sym__simple_name] = STATE(2271), + [sym_qualified_name] = STATE(2402), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(2478), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(2373), + [sym__array_base_type] = STATE(7083), + [sym_nullable_type] = STATE(2375), + [sym_pointer_type] = STATE(2375), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(2375), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(2377), + [sym_pattern] = STATE(4880), + [sym_constant_pattern] = STATE(3311), + [sym_parenthesized_pattern] = STATE(3311), + [sym_var_pattern] = STATE(3311), + [sym_type_pattern] = STATE(3311), + [sym_list_pattern] = STATE(3311), + [sym_recursive_pattern] = STATE(3311), + [sym_positional_pattern_clause] = STATE(2526), + [sym_property_pattern_clause] = STATE(2588), + [sym_relational_pattern] = STATE(3311), + [sym_negated_pattern] = STATE(3311), + [sym_and_pattern] = STATE(3311), + [sym_or_pattern] = STATE(3311), + [sym_declaration_pattern] = STATE(3311), + [sym_expression] = STATE(5669), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3510), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3275), + [sym_postfix_unary_expression] = STATE(3276), + [sym_prefix_unary_expression] = STATE(3276), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6134), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3275), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3276), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3275), + [sym_member_access_expression] = STATE(2608), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3276), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7425), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(3275), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3275), + [sym_typeof_expression] = STATE(3275), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2608), + [sym_literal] = STATE(3275), + [sym_character_literal] = STATE(3272), + [sym_string_literal] = STATE(3272), + [sym_raw_string_literal] = STATE(3272), + [sym_boolean_literal] = STATE(3272), + [sym_identifier] = STATE(2260), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(421), [sym_preproc_endregion] = STATE(421), [sym_preproc_line] = STATE(421), @@ -111139,53 +111025,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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(2365), - [anon_sym_LPAREN] = ACTIONS(2613), - [anon_sym_ref] = ACTIONS(2369), - [anon_sym_LBRACE] = ACTIONS(2371), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(2357), + [anon_sym_LPAREN] = ACTIONS(2561), + [anon_sym_ref] = ACTIONS(2499), + [anon_sym_LBRACE] = ACTIONS(2343), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1061), - [anon_sym_LT] = ACTIONS(2615), - [anon_sym_GT] = ACTIONS(2615), + [anon_sym_new] = ACTIONS(1059), + [anon_sym_LT] = ACTIONS(2563), + [anon_sym_GT] = ACTIONS(2563), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = 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(1173), - [anon_sym_false] = ACTIONS(1173), - [anon_sym_PLUS] = ACTIONS(1763), - [anon_sym_DASH] = ACTIONS(1763), + [anon_sym_checked] = ACTIONS(1065), + [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(1169), + [anon_sym_false] = ACTIONS(1169), + [anon_sym_PLUS] = ACTIONS(1601), + [anon_sym_DASH] = ACTIONS(1601), [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(1765), - [anon_sym_AMP] = ACTIONS(1765), - [anon_sym_GT_EQ] = ACTIONS(2617), - [anon_sym_LT_EQ] = ACTIONS(2617), + [anon_sym_CARET] = ACTIONS(1603), + [anon_sym_AMP] = ACTIONS(1603), + [anon_sym_GT_EQ] = ACTIONS(2565), + [anon_sym_LT_EQ] = ACTIONS(2565), [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(2377), + [anon_sym_scoped] = ACTIONS(2349), [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(2379), - [sym_predefined_type] = ACTIONS(2381), - [anon_sym_unchecked] = ACTIONS(1067), + [anon_sym_var] = ACTIONS(2511), + [sym_predefined_type] = ACTIONS(2367), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1183), - [anon_sym_throw] = ACTIONS(1589), + [anon_sym_default] = ACTIONS(1179), + [anon_sym_throw] = ACTIONS(1527), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1591), - [sym_discard] = ACTIONS(2383), + [anon_sym_await] = ACTIONS(1529), + [sym_discard] = ACTIONS(2369), [anon_sym_DOT_DOT] = ACTIONS(123), - [anon_sym_not] = ACTIONS(2619), + [anon_sym_not] = ACTIONS(2567), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -111199,18 +111085,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(1193), - [anon_sym_typeof] = ACTIONS(1195), + [anon_sym_sizeof] = ACTIONS(1189), + [anon_sym_typeof] = ACTIONS(1191), [anon_sym___makeref] = ACTIONS(133), [anon_sym___reftype] = ACTIONS(135), [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(1203), - [anon_sym_SQUOTE] = ACTIONS(1205), - [sym_integer_literal] = ACTIONS(1203), - [sym_real_literal] = ACTIONS(1207), - [anon_sym_DQUOTE] = ACTIONS(1209), - [sym_verbatim_string_literal] = ACTIONS(1207), - [aux_sym_preproc_if_token1] = ACTIONS(1089), + [sym_null_literal] = ACTIONS(1199), + [anon_sym_SQUOTE] = ACTIONS(1201), + [sym_integer_literal] = ACTIONS(1199), + [sym_real_literal] = ACTIONS(1203), + [anon_sym_DQUOTE] = ACTIONS(1205), + [sym_verbatim_string_literal] = ACTIONS(1203), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -111221,104 +111107,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(1213), - [sym_interpolation_verbatim_start] = ACTIONS(1215), - [sym_interpolation_raw_start] = ACTIONS(1217), - [sym_raw_string_start] = ACTIONS(1219), + [sym_interpolation_regular_start] = ACTIONS(1209), + [sym_interpolation_verbatim_start] = ACTIONS(1211), + [sym_interpolation_raw_start] = ACTIONS(1213), + [sym_raw_string_start] = ACTIONS(1215), }, [422] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(2426), - [sym_alias_qualified_name] = STATE(2373), - [sym__simple_name] = STATE(2189), - [sym_qualified_name] = STATE(2373), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(2231), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(2378), - [sym__array_base_type] = STATE(7103), - [sym_nullable_type] = STATE(2379), - [sym_pointer_type] = STATE(2379), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(2379), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(2380), - [sym_pattern] = STATE(3236), - [sym_constant_pattern] = STATE(3295), - [sym_parenthesized_pattern] = STATE(3295), - [sym_var_pattern] = STATE(3295), - [sym_type_pattern] = STATE(3295), - [sym_list_pattern] = STATE(3295), - [sym_recursive_pattern] = STATE(3295), - [sym_positional_pattern_clause] = STATE(2251), - [sym_property_pattern_clause] = STATE(2302), - [sym_relational_pattern] = STATE(3295), - [sym_negated_pattern] = STATE(3295), - [sym_and_pattern] = STATE(3295), - [sym_or_pattern] = STATE(3295), - [sym_declaration_pattern] = STATE(3295), - [sym_expression] = STATE(5695), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3520), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3310), - [sym_postfix_unary_expression] = STATE(3312), - [sym_prefix_unary_expression] = STATE(3312), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6154), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3310), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3312), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3310), - [sym_member_access_expression] = STATE(2617), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3312), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7530), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(3310), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3310), - [sym_typeof_expression] = STATE(3310), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2617), - [sym_literal] = STATE(3310), - [sym_character_literal] = STATE(3278), - [sym_string_literal] = STATE(3278), - [sym_raw_string_literal] = STATE(3278), - [sym_boolean_literal] = STATE(3278), - [sym_identifier] = STATE(2186), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(2611), + [sym_alias_qualified_name] = STATE(2402), + [sym__simple_name] = STATE(2184), + [sym_qualified_name] = STATE(2402), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(2236), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(2373), + [sym__array_base_type] = STATE(7083), + [sym_nullable_type] = STATE(2375), + [sym_pointer_type] = STATE(2375), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(2375), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(2377), + [sym_pattern] = STATE(4747), + [sym_constant_pattern] = STATE(3429), + [sym_parenthesized_pattern] = STATE(3429), + [sym_var_pattern] = STATE(3429), + [sym_type_pattern] = STATE(3429), + [sym_list_pattern] = STATE(3429), + [sym_recursive_pattern] = STATE(3429), + [sym_positional_pattern_clause] = STATE(2275), + [sym_property_pattern_clause] = STATE(2315), + [sym_relational_pattern] = STATE(3429), + [sym_negated_pattern] = STATE(3429), + [sym_and_pattern] = STATE(3429), + [sym_or_pattern] = STATE(3429), + [sym_declaration_pattern] = STATE(3429), + [sym_expression] = STATE(5657), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3510), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3397), + [sym_postfix_unary_expression] = STATE(3404), + [sym_prefix_unary_expression] = STATE(3404), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6134), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3397), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3404), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3397), + [sym_member_access_expression] = STATE(2686), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3404), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7425), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(3397), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3397), + [sym_typeof_expression] = STATE(3397), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2686), + [sym_literal] = STATE(3397), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2202), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(422), [sym_preproc_endregion] = STATE(422), [sym_preproc_line] = STATE(422), @@ -111328,53 +111214,53 @@ 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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(2365), - [anon_sym_LPAREN] = ACTIONS(2613), - [anon_sym_ref] = ACTIONS(2369), - [anon_sym_LBRACE] = ACTIONS(2371), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_LPAREN] = ACTIONS(2537), + [anon_sym_ref] = ACTIONS(2519), + [anon_sym_LBRACE] = ACTIONS(2343), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1061), - [anon_sym_LT] = ACTIONS(2615), - [anon_sym_GT] = ACTIONS(2615), + [anon_sym_new] = ACTIONS(1059), + [anon_sym_LT] = ACTIONS(2539), + [anon_sym_GT] = ACTIONS(2539), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = 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(1173), - [anon_sym_false] = ACTIONS(1173), - [anon_sym_PLUS] = ACTIONS(1763), - [anon_sym_DASH] = ACTIONS(1763), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(1101), + [anon_sym_TILDE] = ACTIONS(1101), + [anon_sym_PLUS_PLUS] = ACTIONS(1101), + [anon_sym_DASH_DASH] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(77), + [anon_sym_false] = ACTIONS(77), + [anon_sym_PLUS] = ACTIONS(1103), + [anon_sym_DASH] = ACTIONS(1103), [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(1765), - [anon_sym_AMP] = ACTIONS(1765), - [anon_sym_GT_EQ] = ACTIONS(2617), - [anon_sym_LT_EQ] = ACTIONS(2617), + [anon_sym_CARET] = ACTIONS(1101), + [anon_sym_AMP] = ACTIONS(1101), + [anon_sym_GT_EQ] = ACTIONS(2541), + [anon_sym_LT_EQ] = ACTIONS(2541), [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(2377), + [anon_sym_scoped] = ACTIONS(2525), [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(2379), - [sym_predefined_type] = ACTIONS(2381), - [anon_sym_unchecked] = ACTIONS(1067), + [anon_sym_var] = ACTIONS(2351), + [sym_predefined_type] = ACTIONS(2353), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1183), - [anon_sym_throw] = ACTIONS(1589), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(1527), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1591), - [sym_discard] = ACTIONS(2383), + [anon_sym_await] = ACTIONS(1529), + [sym_discard] = ACTIONS(1081), [anon_sym_DOT_DOT] = ACTIONS(123), - [anon_sym_not] = ACTIONS(2619), + [anon_sym_not] = ACTIONS(2543), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -111388,18 +111274,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(1193), - [anon_sym_typeof] = ACTIONS(1195), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), [anon_sym___makeref] = ACTIONS(133), [anon_sym___reftype] = ACTIONS(135), [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(1203), - [anon_sym_SQUOTE] = ACTIONS(1205), - [sym_integer_literal] = ACTIONS(1203), - [sym_real_literal] = ACTIONS(1207), - [anon_sym_DQUOTE] = ACTIONS(1209), - [sym_verbatim_string_literal] = ACTIONS(1207), - [aux_sym_preproc_if_token1] = ACTIONS(1089), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_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), @@ -111410,104 +111296,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(1213), - [sym_interpolation_verbatim_start] = ACTIONS(1215), - [sym_interpolation_raw_start] = ACTIONS(1217), - [sym_raw_string_start] = ACTIONS(1219), + [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(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(2426), - [sym_alias_qualified_name] = STATE(2373), - [sym__simple_name] = STATE(2189), - [sym_qualified_name] = STATE(2373), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(2231), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(2378), - [sym__array_base_type] = STATE(7103), - [sym_nullable_type] = STATE(2379), - [sym_pointer_type] = STATE(2379), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(2379), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(2380), - [sym_pattern] = STATE(5210), - [sym_constant_pattern] = STATE(3295), - [sym_parenthesized_pattern] = STATE(3295), - [sym_var_pattern] = STATE(3295), - [sym_type_pattern] = STATE(3295), - [sym_list_pattern] = STATE(3295), - [sym_recursive_pattern] = STATE(3295), - [sym_positional_pattern_clause] = STATE(2251), - [sym_property_pattern_clause] = STATE(2302), - [sym_relational_pattern] = STATE(3295), - [sym_negated_pattern] = STATE(3295), - [sym_and_pattern] = STATE(3295), - [sym_or_pattern] = STATE(3295), - [sym_declaration_pattern] = STATE(3295), - [sym_expression] = STATE(5695), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3520), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3310), - [sym_postfix_unary_expression] = STATE(3312), - [sym_prefix_unary_expression] = STATE(3312), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6154), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3310), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3312), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3310), - [sym_member_access_expression] = STATE(2617), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3312), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7530), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(3310), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3310), - [sym_typeof_expression] = STATE(3310), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2617), - [sym_literal] = STATE(3310), - [sym_character_literal] = STATE(3278), - [sym_string_literal] = STATE(3278), - [sym_raw_string_literal] = STATE(3278), - [sym_boolean_literal] = STATE(3278), - [sym_identifier] = STATE(2186), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(2611), + [sym_alias_qualified_name] = STATE(2402), + [sym__simple_name] = STATE(2184), + [sym_qualified_name] = STATE(2402), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(2236), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(2373), + [sym__array_base_type] = STATE(7083), + [sym_nullable_type] = STATE(2375), + [sym_pointer_type] = STATE(2375), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(2375), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(2377), + [sym_pattern] = STATE(3407), + [sym_constant_pattern] = STATE(3429), + [sym_parenthesized_pattern] = STATE(3429), + [sym_var_pattern] = STATE(3429), + [sym_type_pattern] = STATE(3429), + [sym_list_pattern] = STATE(3429), + [sym_recursive_pattern] = STATE(3429), + [sym_positional_pattern_clause] = STATE(2275), + [sym_property_pattern_clause] = STATE(2315), + [sym_relational_pattern] = STATE(3429), + [sym_negated_pattern] = STATE(3429), + [sym_and_pattern] = STATE(3429), + [sym_or_pattern] = STATE(3429), + [sym_declaration_pattern] = STATE(3429), + [sym_expression] = STATE(5657), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3510), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3397), + [sym_postfix_unary_expression] = STATE(3404), + [sym_prefix_unary_expression] = STATE(3404), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6134), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3397), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3404), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3397), + [sym_member_access_expression] = STATE(2686), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3404), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7425), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(3397), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3397), + [sym_typeof_expression] = STATE(3397), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2686), + [sym_literal] = STATE(3397), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2202), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(423), [sym_preproc_endregion] = STATE(423), [sym_preproc_line] = STATE(423), @@ -111517,53 +111403,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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(2365), - [anon_sym_LPAREN] = ACTIONS(2613), - [anon_sym_ref] = ACTIONS(2369), - [anon_sym_LBRACE] = ACTIONS(2371), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_LPAREN] = ACTIONS(2537), + [anon_sym_ref] = ACTIONS(2519), + [anon_sym_LBRACE] = ACTIONS(2343), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1061), - [anon_sym_LT] = ACTIONS(2615), - [anon_sym_GT] = ACTIONS(2615), + [anon_sym_new] = ACTIONS(1059), + [anon_sym_LT] = ACTIONS(2539), + [anon_sym_GT] = ACTIONS(2539), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = 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(1173), - [anon_sym_false] = ACTIONS(1173), - [anon_sym_PLUS] = ACTIONS(1763), - [anon_sym_DASH] = ACTIONS(1763), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(1101), + [anon_sym_TILDE] = ACTIONS(1101), + [anon_sym_PLUS_PLUS] = ACTIONS(1101), + [anon_sym_DASH_DASH] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(77), + [anon_sym_false] = ACTIONS(77), + [anon_sym_PLUS] = ACTIONS(1103), + [anon_sym_DASH] = ACTIONS(1103), [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(1765), - [anon_sym_AMP] = ACTIONS(1765), - [anon_sym_GT_EQ] = ACTIONS(2617), - [anon_sym_LT_EQ] = ACTIONS(2617), + [anon_sym_CARET] = ACTIONS(1101), + [anon_sym_AMP] = ACTIONS(1101), + [anon_sym_GT_EQ] = ACTIONS(2541), + [anon_sym_LT_EQ] = ACTIONS(2541), [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(2377), + [anon_sym_scoped] = ACTIONS(2525), [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(2379), - [sym_predefined_type] = ACTIONS(2381), - [anon_sym_unchecked] = ACTIONS(1067), + [anon_sym_var] = ACTIONS(2351), + [sym_predefined_type] = ACTIONS(2353), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1183), - [anon_sym_throw] = ACTIONS(1589), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(1527), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1591), - [sym_discard] = ACTIONS(2383), + [anon_sym_await] = ACTIONS(1529), + [sym_discard] = ACTIONS(1081), [anon_sym_DOT_DOT] = ACTIONS(123), - [anon_sym_not] = ACTIONS(2619), + [anon_sym_not] = ACTIONS(2543), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -111577,18 +111463,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(1193), - [anon_sym_typeof] = ACTIONS(1195), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), [anon_sym___makeref] = ACTIONS(133), [anon_sym___reftype] = ACTIONS(135), [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(1203), - [anon_sym_SQUOTE] = ACTIONS(1205), - [sym_integer_literal] = ACTIONS(1203), - [sym_real_literal] = ACTIONS(1207), - [anon_sym_DQUOTE] = ACTIONS(1209), - [sym_verbatim_string_literal] = ACTIONS(1207), - [aux_sym_preproc_if_token1] = ACTIONS(1089), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_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), @@ -111599,104 +111485,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(1213), - [sym_interpolation_verbatim_start] = ACTIONS(1215), - [sym_interpolation_raw_start] = ACTIONS(1217), - [sym_raw_string_start] = ACTIONS(1219), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [sym_interpolation_raw_start] = ACTIONS(155), + [sym_raw_string_start] = ACTIONS(157), }, [424] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(2426), - [sym_alias_qualified_name] = STATE(2373), - [sym__simple_name] = STATE(2189), - [sym_qualified_name] = STATE(2373), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(2238), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(2378), - [sym__array_base_type] = STATE(7103), - [sym_nullable_type] = STATE(2379), - [sym_pointer_type] = STATE(2379), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(2379), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(2380), - [sym_pattern] = STATE(5212), - [sym_constant_pattern] = STATE(3295), - [sym_parenthesized_pattern] = STATE(3295), - [sym_var_pattern] = STATE(3295), - [sym_type_pattern] = STATE(3295), - [sym_list_pattern] = STATE(3295), - [sym_recursive_pattern] = STATE(3295), - [sym_positional_pattern_clause] = STATE(2251), - [sym_property_pattern_clause] = STATE(2302), - [sym_relational_pattern] = STATE(3295), - [sym_negated_pattern] = STATE(3295), - [sym_and_pattern] = STATE(3295), - [sym_or_pattern] = STATE(3295), - [sym_declaration_pattern] = STATE(3295), - [sym_expression] = STATE(5695), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3520), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3310), - [sym_postfix_unary_expression] = STATE(3312), - [sym_prefix_unary_expression] = STATE(3312), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6154), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3310), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3312), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3310), - [sym_member_access_expression] = STATE(2617), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3312), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7530), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(3310), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3310), - [sym_typeof_expression] = STATE(3310), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2617), - [sym_literal] = STATE(3310), - [sym_character_literal] = STATE(3278), - [sym_string_literal] = STATE(3278), - [sym_raw_string_literal] = STATE(3278), - [sym_boolean_literal] = STATE(3278), - [sym_identifier] = STATE(2186), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(2611), + [sym_alias_qualified_name] = STATE(2402), + [sym__simple_name] = STATE(2184), + [sym_qualified_name] = STATE(2402), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(2236), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(2373), + [sym__array_base_type] = STATE(7083), + [sym_nullable_type] = STATE(2375), + [sym_pointer_type] = STATE(2375), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(2375), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(2377), + [sym_pattern] = STATE(4678), + [sym_constant_pattern] = STATE(3429), + [sym_parenthesized_pattern] = STATE(3429), + [sym_var_pattern] = STATE(3429), + [sym_type_pattern] = STATE(3429), + [sym_list_pattern] = STATE(3429), + [sym_recursive_pattern] = STATE(3429), + [sym_positional_pattern_clause] = STATE(2275), + [sym_property_pattern_clause] = STATE(2315), + [sym_relational_pattern] = STATE(3429), + [sym_negated_pattern] = STATE(3429), + [sym_and_pattern] = STATE(3429), + [sym_or_pattern] = STATE(3429), + [sym_declaration_pattern] = STATE(3429), + [sym_expression] = STATE(5657), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3510), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3397), + [sym_postfix_unary_expression] = STATE(3404), + [sym_prefix_unary_expression] = STATE(3404), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6134), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3397), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3404), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3397), + [sym_member_access_expression] = STATE(2686), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3404), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7425), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(3397), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3397), + [sym_typeof_expression] = STATE(3397), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2686), + [sym_literal] = STATE(3397), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2202), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(424), [sym_preproc_endregion] = STATE(424), [sym_preproc_line] = STATE(424), @@ -111706,53 +111592,53 @@ 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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(2365), - [anon_sym_LPAREN] = ACTIONS(2613), - [anon_sym_ref] = ACTIONS(2369), - [anon_sym_LBRACE] = ACTIONS(2371), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_LPAREN] = ACTIONS(2537), + [anon_sym_ref] = ACTIONS(2519), + [anon_sym_LBRACE] = ACTIONS(2343), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1061), - [anon_sym_LT] = ACTIONS(2615), - [anon_sym_GT] = ACTIONS(2615), + [anon_sym_new] = ACTIONS(1059), + [anon_sym_LT] = ACTIONS(2539), + [anon_sym_GT] = ACTIONS(2539), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = 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(1173), - [anon_sym_false] = ACTIONS(1173), - [anon_sym_PLUS] = ACTIONS(1763), - [anon_sym_DASH] = ACTIONS(1763), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(1101), + [anon_sym_TILDE] = ACTIONS(1101), + [anon_sym_PLUS_PLUS] = ACTIONS(1101), + [anon_sym_DASH_DASH] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(77), + [anon_sym_false] = ACTIONS(77), + [anon_sym_PLUS] = ACTIONS(1103), + [anon_sym_DASH] = ACTIONS(1103), [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(1765), - [anon_sym_AMP] = ACTIONS(1765), - [anon_sym_GT_EQ] = ACTIONS(2617), - [anon_sym_LT_EQ] = ACTIONS(2617), + [anon_sym_CARET] = ACTIONS(1101), + [anon_sym_AMP] = ACTIONS(1101), + [anon_sym_GT_EQ] = ACTIONS(2541), + [anon_sym_LT_EQ] = ACTIONS(2541), [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(2377), + [anon_sym_scoped] = ACTIONS(2525), [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(2379), - [sym_predefined_type] = ACTIONS(2381), - [anon_sym_unchecked] = ACTIONS(1067), + [anon_sym_var] = ACTIONS(2351), + [sym_predefined_type] = ACTIONS(2353), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1183), - [anon_sym_throw] = ACTIONS(1589), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(1527), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1591), - [sym_discard] = ACTIONS(2383), + [anon_sym_await] = ACTIONS(1529), + [sym_discard] = ACTIONS(1081), [anon_sym_DOT_DOT] = ACTIONS(123), - [anon_sym_not] = ACTIONS(2619), + [anon_sym_not] = ACTIONS(2543), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -111766,18 +111652,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(1193), - [anon_sym_typeof] = ACTIONS(1195), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), [anon_sym___makeref] = ACTIONS(133), [anon_sym___reftype] = ACTIONS(135), [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(1203), - [anon_sym_SQUOTE] = ACTIONS(1205), - [sym_integer_literal] = ACTIONS(1203), - [sym_real_literal] = ACTIONS(1207), - [anon_sym_DQUOTE] = ACTIONS(1209), - [sym_verbatim_string_literal] = ACTIONS(1207), - [aux_sym_preproc_if_token1] = ACTIONS(1089), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_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), @@ -111788,104 +111674,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(1213), - [sym_interpolation_verbatim_start] = ACTIONS(1215), - [sym_interpolation_raw_start] = ACTIONS(1217), - [sym_raw_string_start] = ACTIONS(1219), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [sym_interpolation_raw_start] = ACTIONS(155), + [sym_raw_string_start] = ACTIONS(157), }, [425] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(2426), - [sym_alias_qualified_name] = STATE(2373), - [sym__simple_name] = STATE(2189), - [sym_qualified_name] = STATE(2373), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(2481), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(2378), - [sym__array_base_type] = STATE(7103), - [sym_nullable_type] = STATE(2379), - [sym_pointer_type] = STATE(2379), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(2379), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(2380), - [sym_pattern] = STATE(5205), - [sym_constant_pattern] = STATE(3295), - [sym_parenthesized_pattern] = STATE(3295), - [sym_var_pattern] = STATE(3295), - [sym_type_pattern] = STATE(3295), - [sym_list_pattern] = STATE(3295), - [sym_recursive_pattern] = STATE(3295), - [sym_positional_pattern_clause] = STATE(2251), - [sym_property_pattern_clause] = STATE(2302), - [sym_relational_pattern] = STATE(3295), - [sym_negated_pattern] = STATE(3295), - [sym_and_pattern] = STATE(3295), - [sym_or_pattern] = STATE(3295), - [sym_declaration_pattern] = STATE(3295), - [sym_expression] = STATE(5699), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3520), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3310), - [sym_postfix_unary_expression] = STATE(3312), - [sym_prefix_unary_expression] = STATE(3312), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6154), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3310), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3312), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3310), - [sym_member_access_expression] = STATE(2617), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3312), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7530), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(3310), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3310), - [sym_typeof_expression] = STATE(3310), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2617), - [sym_literal] = STATE(3310), - [sym_character_literal] = STATE(3278), - [sym_string_literal] = STATE(3278), - [sym_raw_string_literal] = STATE(3278), - [sym_boolean_literal] = STATE(3278), - [sym_identifier] = STATE(2258), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(2428), + [sym_alias_qualified_name] = STATE(2402), + [sym__simple_name] = STATE(2184), + [sym_qualified_name] = STATE(2402), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(2476), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(2373), + [sym__array_base_type] = STATE(7083), + [sym_nullable_type] = STATE(2375), + [sym_pointer_type] = STATE(2375), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(2375), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(2377), + [sym_pattern] = STATE(5433), + [sym_constant_pattern] = STATE(3429), + [sym_parenthesized_pattern] = STATE(3429), + [sym_var_pattern] = STATE(3429), + [sym_type_pattern] = STATE(3429), + [sym_list_pattern] = STATE(3429), + [sym_recursive_pattern] = STATE(3429), + [sym_positional_pattern_clause] = STATE(2543), + [sym_property_pattern_clause] = STATE(2643), + [sym_relational_pattern] = STATE(3429), + [sym_negated_pattern] = STATE(3429), + [sym_and_pattern] = STATE(3429), + [sym_or_pattern] = STATE(3429), + [sym_declaration_pattern] = STATE(3429), + [sym_expression] = STATE(5665), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3510), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3397), + [sym_postfix_unary_expression] = STATE(3404), + [sym_prefix_unary_expression] = STATE(3404), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6134), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3397), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3404), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3397), + [sym_member_access_expression] = STATE(2686), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3404), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7425), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(3397), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3397), + [sym_typeof_expression] = STATE(3397), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2686), + [sym_literal] = STATE(3397), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2178), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(425), [sym_preproc_endregion] = STATE(425), [sym_preproc_line] = STATE(425), @@ -111895,53 +111781,53 @@ 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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(2365), - [anon_sym_LPAREN] = ACTIONS(2447), - [anon_sym_ref] = ACTIONS(2449), - [anon_sym_LBRACE] = ACTIONS(2371), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_LPAREN] = ACTIONS(2581), + [anon_sym_ref] = ACTIONS(2341), + [anon_sym_LBRACE] = ACTIONS(2343), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1061), - [anon_sym_LT] = ACTIONS(2451), - [anon_sym_GT] = ACTIONS(2451), + [anon_sym_new] = ACTIONS(1059), + [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(1067), - [anon_sym_BANG] = ACTIONS(1599), - [anon_sym_TILDE] = ACTIONS(1599), - [anon_sym_PLUS_PLUS] = ACTIONS(1599), - [anon_sym_DASH_DASH] = ACTIONS(1599), - [anon_sym_true] = ACTIONS(1173), - [anon_sym_false] = ACTIONS(1173), - [anon_sym_PLUS] = ACTIONS(1597), - [anon_sym_DASH] = ACTIONS(1597), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(1745), + [anon_sym_TILDE] = ACTIONS(1745), + [anon_sym_PLUS_PLUS] = ACTIONS(1745), + [anon_sym_DASH_DASH] = ACTIONS(1745), + [anon_sym_true] = ACTIONS(77), + [anon_sym_false] = ACTIONS(77), + [anon_sym_PLUS] = ACTIONS(1743), + [anon_sym_DASH] = ACTIONS(1743), [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(1599), - [anon_sym_AMP] = ACTIONS(1599), - [anon_sym_GT_EQ] = ACTIONS(2453), - [anon_sym_LT_EQ] = ACTIONS(2453), + [anon_sym_CARET] = ACTIONS(1745), + [anon_sym_AMP] = ACTIONS(1745), + [anon_sym_GT_EQ] = ACTIONS(2585), + [anon_sym_LT_EQ] = ACTIONS(2585), [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(2377), + [anon_sym_scoped] = ACTIONS(2349), [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(2455), - [sym_predefined_type] = ACTIONS(2381), - [anon_sym_unchecked] = ACTIONS(1067), + [anon_sym_var] = ACTIONS(2587), + [sym_predefined_type] = ACTIONS(2353), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1183), - [anon_sym_throw] = ACTIONS(1589), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(1527), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1591), - [sym_discard] = ACTIONS(2383), + [anon_sym_await] = ACTIONS(1529), + [sym_discard] = ACTIONS(1081), [anon_sym_DOT_DOT] = ACTIONS(123), - [anon_sym_not] = ACTIONS(2457), + [anon_sym_not] = ACTIONS(2589), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -111955,18 +111841,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(1193), - [anon_sym_typeof] = ACTIONS(1195), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), [anon_sym___makeref] = ACTIONS(133), [anon_sym___reftype] = ACTIONS(135), [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(1203), - [anon_sym_SQUOTE] = ACTIONS(1205), - [sym_integer_literal] = ACTIONS(1203), - [sym_real_literal] = ACTIONS(1207), - [anon_sym_DQUOTE] = ACTIONS(1209), - [sym_verbatim_string_literal] = ACTIONS(1207), - [aux_sym_preproc_if_token1] = ACTIONS(1089), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_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), @@ -111977,104 +111863,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(1213), - [sym_interpolation_verbatim_start] = ACTIONS(1215), - [sym_interpolation_raw_start] = ACTIONS(1217), - [sym_raw_string_start] = ACTIONS(1219), + [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(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(2421), - [sym_alias_qualified_name] = STATE(2373), - [sym__simple_name] = STATE(2191), - [sym_qualified_name] = STATE(2373), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(2242), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(2378), - [sym__array_base_type] = STATE(7103), - [sym_nullable_type] = STATE(2379), - [sym_pointer_type] = STATE(2379), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(2379), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(2380), - [sym_pattern] = STATE(4528), - [sym_constant_pattern] = STATE(3486), - [sym_parenthesized_pattern] = STATE(3486), - [sym_var_pattern] = STATE(3486), - [sym_type_pattern] = STATE(3486), - [sym_list_pattern] = STATE(3486), - [sym_recursive_pattern] = STATE(3486), - [sym_positional_pattern_clause] = STATE(2276), - [sym_property_pattern_clause] = STATE(2330), - [sym_relational_pattern] = STATE(3486), - [sym_negated_pattern] = STATE(3486), - [sym_and_pattern] = STATE(3486), - [sym_or_pattern] = STATE(3486), - [sym_declaration_pattern] = STATE(3486), - [sym_expression] = STATE(5708), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3520), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3455), - [sym_postfix_unary_expression] = STATE(3469), - [sym_prefix_unary_expression] = STATE(3469), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6154), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3455), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3469), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3455), - [sym_member_access_expression] = STATE(2719), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3469), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7530), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(3455), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3455), - [sym_typeof_expression] = STATE(3455), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2719), - [sym_literal] = STATE(3455), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2186), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(2428), + [sym_alias_qualified_name] = STATE(2402), + [sym__simple_name] = STATE(2184), + [sym_qualified_name] = STATE(2402), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(2236), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(2373), + [sym__array_base_type] = STATE(7083), + [sym_nullable_type] = STATE(2375), + [sym_pointer_type] = STATE(2375), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(2375), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(2377), + [sym_pattern] = STATE(3407), + [sym_constant_pattern] = STATE(3429), + [sym_parenthesized_pattern] = STATE(3429), + [sym_var_pattern] = STATE(3429), + [sym_type_pattern] = STATE(3429), + [sym_list_pattern] = STATE(3429), + [sym_recursive_pattern] = STATE(3429), + [sym_positional_pattern_clause] = STATE(2275), + [sym_property_pattern_clause] = STATE(2315), + [sym_relational_pattern] = STATE(3429), + [sym_negated_pattern] = STATE(3429), + [sym_and_pattern] = STATE(3429), + [sym_or_pattern] = STATE(3429), + [sym_declaration_pattern] = STATE(3429), + [sym_expression] = STATE(5690), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3510), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3397), + [sym_postfix_unary_expression] = STATE(3404), + [sym_prefix_unary_expression] = STATE(3404), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6134), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3397), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3404), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3397), + [sym_member_access_expression] = STATE(2686), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3404), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7425), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(3397), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3397), + [sym_typeof_expression] = STATE(3397), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2686), + [sym_literal] = STATE(3397), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2178), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(426), [sym_preproc_endregion] = STATE(426), [sym_preproc_line] = STATE(426), @@ -112084,53 +111970,53 @@ 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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1049), - [anon_sym_LPAREN] = ACTIONS(2561), - [anon_sym_ref] = ACTIONS(2369), - [anon_sym_LBRACE] = ACTIONS(2371), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_LPAREN] = ACTIONS(2385), + [anon_sym_ref] = ACTIONS(2341), + [anon_sym_LBRACE] = ACTIONS(2343), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1061), - [anon_sym_LT] = ACTIONS(2563), - [anon_sym_GT] = ACTIONS(2563), + [anon_sym_new] = ACTIONS(1059), + [anon_sym_LT] = ACTIONS(2387), + [anon_sym_GT] = ACTIONS(2387), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1067), - [anon_sym_BANG] = ACTIONS(1349), - [anon_sym_TILDE] = ACTIONS(1349), - [anon_sym_PLUS_PLUS] = ACTIONS(1349), - [anon_sym_DASH_DASH] = ACTIONS(1349), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(1375), + [anon_sym_TILDE] = ACTIONS(1375), + [anon_sym_PLUS_PLUS] = ACTIONS(1375), + [anon_sym_DASH_DASH] = ACTIONS(1375), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1347), - [anon_sym_DASH] = ACTIONS(1347), + [anon_sym_PLUS] = ACTIONS(1373), + [anon_sym_DASH] = ACTIONS(1373), [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(1349), - [anon_sym_AMP] = ACTIONS(1349), - [anon_sym_GT_EQ] = ACTIONS(2565), - [anon_sym_LT_EQ] = ACTIONS(2565), + [anon_sym_CARET] = ACTIONS(1375), + [anon_sym_AMP] = ACTIONS(1375), + [anon_sym_GT_EQ] = ACTIONS(2389), + [anon_sym_LT_EQ] = ACTIONS(2389), [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(2377), + [anon_sym_scoped] = ACTIONS(2349), [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(2433), - [sym_predefined_type] = ACTIONS(2435), - [anon_sym_unchecked] = ACTIONS(1067), + [anon_sym_var] = ACTIONS(2351), + [sym_predefined_type] = ACTIONS(2353), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1589), + [anon_sym_throw] = ACTIONS(1527), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1591), - [sym_discard] = ACTIONS(1083), + [anon_sym_await] = ACTIONS(1529), + [sym_discard] = ACTIONS(1081), [anon_sym_DOT_DOT] = ACTIONS(123), - [anon_sym_not] = ACTIONS(2567), + [anon_sym_not] = ACTIONS(2391), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -112155,7 +112041,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(1089), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -112172,98 +112058,98 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [427] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(2860), - [sym_alias_qualified_name] = STATE(2373), - [sym__simple_name] = STATE(2314), - [sym_qualified_name] = STATE(2373), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(2469), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(2378), - [sym__array_base_type] = STATE(7103), - [sym_nullable_type] = STATE(2379), - [sym_pointer_type] = STATE(2379), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(2379), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(2380), - [sym_pattern] = STATE(3838), - [sym_constant_pattern] = STATE(3774), - [sym_parenthesized_pattern] = STATE(3774), - [sym_var_pattern] = STATE(3774), - [sym_type_pattern] = STATE(3774), - [sym_list_pattern] = STATE(3774), - [sym_recursive_pattern] = STATE(3774), - [sym_positional_pattern_clause] = STATE(2556), - [sym_property_pattern_clause] = STATE(2631), - [sym_relational_pattern] = STATE(3774), - [sym_negated_pattern] = STATE(3774), - [sym_and_pattern] = STATE(3774), - [sym_or_pattern] = STATE(3774), - [sym_declaration_pattern] = STATE(3774), - [sym_expression] = STATE(5687), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3520), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3803), - [sym_postfix_unary_expression] = STATE(3804), - [sym_prefix_unary_expression] = STATE(3804), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6154), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3803), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3804), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3803), - [sym_member_access_expression] = STATE(2917), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3804), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7530), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(3803), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3803), - [sym_typeof_expression] = STATE(3803), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2917), - [sym_literal] = STATE(3803), - [sym_character_literal] = STATE(3877), - [sym_string_literal] = STATE(3877), - [sym_raw_string_literal] = STATE(3877), - [sym_boolean_literal] = STATE(3877), - [sym_identifier] = STATE(2186), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(2428), + [sym_alias_qualified_name] = STATE(2402), + [sym__simple_name] = STATE(2184), + [sym_qualified_name] = STATE(2402), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(2239), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(2373), + [sym__array_base_type] = STATE(7083), + [sym_nullable_type] = STATE(2375), + [sym_pointer_type] = STATE(2375), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(2375), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(2377), + [sym_pattern] = STATE(3445), + [sym_constant_pattern] = STATE(3429), + [sym_parenthesized_pattern] = STATE(3429), + [sym_var_pattern] = STATE(3429), + [sym_type_pattern] = STATE(3429), + [sym_list_pattern] = STATE(3429), + [sym_recursive_pattern] = STATE(3429), + [sym_positional_pattern_clause] = STATE(2275), + [sym_property_pattern_clause] = STATE(2315), + [sym_relational_pattern] = STATE(3429), + [sym_negated_pattern] = STATE(3429), + [sym_and_pattern] = STATE(3429), + [sym_or_pattern] = STATE(3429), + [sym_declaration_pattern] = STATE(3429), + [sym_expression] = STATE(5690), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3510), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3397), + [sym_postfix_unary_expression] = STATE(3404), + [sym_prefix_unary_expression] = STATE(3404), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6134), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3397), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3404), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3397), + [sym_member_access_expression] = STATE(2686), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3404), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7425), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(3397), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3397), + [sym_typeof_expression] = STATE(3397), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2686), + [sym_literal] = STATE(3397), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2178), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(427), [sym_preproc_endregion] = STATE(427), [sym_preproc_line] = STATE(427), @@ -112273,53 +112159,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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(2415), - [anon_sym_LPAREN] = ACTIONS(2597), - [anon_sym_ref] = ACTIONS(2369), - [anon_sym_LBRACE] = ACTIONS(2371), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_LPAREN] = ACTIONS(2385), + [anon_sym_ref] = ACTIONS(2341), + [anon_sym_LBRACE] = ACTIONS(2343), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1061), - [anon_sym_LT] = ACTIONS(2599), - [anon_sym_GT] = ACTIONS(2599), + [anon_sym_new] = ACTIONS(1059), + [anon_sym_LT] = ACTIONS(2387), + [anon_sym_GT] = ACTIONS(2387), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1067), - [anon_sym_BANG] = ACTIONS(1735), - [anon_sym_TILDE] = ACTIONS(1735), - [anon_sym_PLUS_PLUS] = ACTIONS(1735), - [anon_sym_DASH_DASH] = ACTIONS(1735), - [anon_sym_true] = ACTIONS(1645), - [anon_sym_false] = ACTIONS(1645), - [anon_sym_PLUS] = ACTIONS(1733), - [anon_sym_DASH] = ACTIONS(1733), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(1375), + [anon_sym_TILDE] = ACTIONS(1375), + [anon_sym_PLUS_PLUS] = ACTIONS(1375), + [anon_sym_DASH_DASH] = ACTIONS(1375), + [anon_sym_true] = ACTIONS(77), + [anon_sym_false] = ACTIONS(77), + [anon_sym_PLUS] = ACTIONS(1373), + [anon_sym_DASH] = ACTIONS(1373), [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(1735), - [anon_sym_AMP] = ACTIONS(1735), - [anon_sym_GT_EQ] = ACTIONS(2601), - [anon_sym_LT_EQ] = ACTIONS(2601), + [anon_sym_CARET] = ACTIONS(1375), + [anon_sym_AMP] = ACTIONS(1375), + [anon_sym_GT_EQ] = ACTIONS(2389), + [anon_sym_LT_EQ] = ACTIONS(2389), [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(2377), + [anon_sym_scoped] = ACTIONS(2349), [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(2423), - [sym_predefined_type] = ACTIONS(2425), - [anon_sym_unchecked] = ACTIONS(1067), + [anon_sym_var] = ACTIONS(2351), + [sym_predefined_type] = ACTIONS(2353), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1655), - [anon_sym_throw] = ACTIONS(1589), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(1527), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1591), - [sym_discard] = ACTIONS(2427), + [anon_sym_await] = ACTIONS(1529), + [sym_discard] = ACTIONS(1081), [anon_sym_DOT_DOT] = ACTIONS(123), - [anon_sym_not] = ACTIONS(2603), + [anon_sym_not] = ACTIONS(2391), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -112333,18 +112219,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(1665), - [anon_sym_typeof] = ACTIONS(1667), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), [anon_sym___makeref] = ACTIONS(133), [anon_sym___reftype] = ACTIONS(135), [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(1675), - [anon_sym_SQUOTE] = ACTIONS(1677), - [sym_integer_literal] = ACTIONS(1675), - [sym_real_literal] = ACTIONS(1679), - [anon_sym_DQUOTE] = ACTIONS(1681), - [sym_verbatim_string_literal] = ACTIONS(1679), - [aux_sym_preproc_if_token1] = ACTIONS(1089), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_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), @@ -112355,104 +112241,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(1685), - [sym_interpolation_verbatim_start] = ACTIONS(1687), - [sym_interpolation_raw_start] = ACTIONS(1689), - [sym_raw_string_start] = ACTIONS(1691), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [sym_interpolation_raw_start] = ACTIONS(155), + [sym_raw_string_start] = ACTIONS(157), }, [428] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(2426), - [sym_alias_qualified_name] = STATE(2373), - [sym__simple_name] = STATE(2189), - [sym_qualified_name] = STATE(2373), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(2237), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(2378), - [sym__array_base_type] = STATE(7103), - [sym_nullable_type] = STATE(2379), - [sym_pointer_type] = STATE(2379), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(2379), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(2380), - [sym_pattern] = STATE(3250), - [sym_constant_pattern] = STATE(3295), - [sym_parenthesized_pattern] = STATE(3295), - [sym_var_pattern] = STATE(3295), - [sym_type_pattern] = STATE(3295), - [sym_list_pattern] = STATE(3295), - [sym_recursive_pattern] = STATE(3295), - [sym_positional_pattern_clause] = STATE(2251), - [sym_property_pattern_clause] = STATE(2302), - [sym_relational_pattern] = STATE(3295), - [sym_negated_pattern] = STATE(3295), - [sym_and_pattern] = STATE(3295), - [sym_or_pattern] = STATE(3295), - [sym_declaration_pattern] = STATE(3295), - [sym_expression] = STATE(5695), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3520), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3310), - [sym_postfix_unary_expression] = STATE(3312), - [sym_prefix_unary_expression] = STATE(3312), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6154), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3310), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3312), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3310), - [sym_member_access_expression] = STATE(2617), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3312), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7530), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(3310), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3310), - [sym_typeof_expression] = STATE(3310), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2617), - [sym_literal] = STATE(3310), - [sym_character_literal] = STATE(3278), - [sym_string_literal] = STATE(3278), - [sym_raw_string_literal] = STATE(3278), - [sym_boolean_literal] = STATE(3278), - [sym_identifier] = STATE(2186), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(2852), + [sym_alias_qualified_name] = STATE(2402), + [sym__simple_name] = STATE(2290), + [sym_qualified_name] = STATE(2402), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(2462), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(2373), + [sym__array_base_type] = STATE(7083), + [sym_nullable_type] = STATE(2375), + [sym_pointer_type] = STATE(2375), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(2375), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(2377), + [sym_pattern] = STATE(3939), + [sym_constant_pattern] = STATE(3801), + [sym_parenthesized_pattern] = STATE(3801), + [sym_var_pattern] = STATE(3801), + [sym_type_pattern] = STATE(3801), + [sym_list_pattern] = STATE(3801), + [sym_recursive_pattern] = STATE(3801), + [sym_positional_pattern_clause] = STATE(2544), + [sym_property_pattern_clause] = STATE(2596), + [sym_relational_pattern] = STATE(3801), + [sym_negated_pattern] = STATE(3801), + [sym_and_pattern] = STATE(3801), + [sym_or_pattern] = STATE(3801), + [sym_declaration_pattern] = STATE(3801), + [sym_expression] = STATE(5659), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3510), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3790), + [sym_postfix_unary_expression] = STATE(3791), + [sym_prefix_unary_expression] = STATE(3791), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6134), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3790), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3791), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3790), + [sym_member_access_expression] = STATE(2896), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3791), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7425), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(3790), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3790), + [sym_typeof_expression] = STATE(3790), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2896), + [sym_literal] = STATE(3790), + [sym_character_literal] = STATE(3843), + [sym_string_literal] = STATE(3843), + [sym_raw_string_literal] = STATE(3843), + [sym_boolean_literal] = STATE(3843), + [sym_identifier] = STATE(2178), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(428), [sym_preproc_endregion] = STATE(428), [sym_preproc_line] = STATE(428), @@ -112462,53 +112348,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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(2365), - [anon_sym_LPAREN] = ACTIONS(2613), - [anon_sym_ref] = ACTIONS(2369), - [anon_sym_LBRACE] = ACTIONS(2371), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(2473), + [anon_sym_LPAREN] = ACTIONS(2573), + [anon_sym_ref] = ACTIONS(2341), + [anon_sym_LBRACE] = ACTIONS(2343), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1061), - [anon_sym_LT] = ACTIONS(2615), - [anon_sym_GT] = ACTIONS(2615), + [anon_sym_new] = ACTIONS(1059), + [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(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(1173), - [anon_sym_false] = ACTIONS(1173), - [anon_sym_PLUS] = ACTIONS(1763), - [anon_sym_DASH] = ACTIONS(1763), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(1671), + [anon_sym_TILDE] = ACTIONS(1671), + [anon_sym_PLUS_PLUS] = ACTIONS(1671), + [anon_sym_DASH_DASH] = ACTIONS(1671), + [anon_sym_true] = ACTIONS(1673), + [anon_sym_false] = ACTIONS(1673), + [anon_sym_PLUS] = ACTIONS(1669), + [anon_sym_DASH] = ACTIONS(1669), [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(1765), - [anon_sym_AMP] = ACTIONS(1765), - [anon_sym_GT_EQ] = ACTIONS(2617), - [anon_sym_LT_EQ] = ACTIONS(2617), + [anon_sym_CARET] = ACTIONS(1671), + [anon_sym_AMP] = ACTIONS(1671), + [anon_sym_GT_EQ] = ACTIONS(2577), + [anon_sym_LT_EQ] = ACTIONS(2577), [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(2377), + [anon_sym_scoped] = ACTIONS(2349), [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(2379), - [sym_predefined_type] = ACTIONS(2381), - [anon_sym_unchecked] = ACTIONS(1067), + [anon_sym_var] = ACTIONS(2481), + [sym_predefined_type] = ACTIONS(2483), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1183), - [anon_sym_throw] = ACTIONS(1589), + [anon_sym_default] = ACTIONS(1683), + [anon_sym_throw] = ACTIONS(1527), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1591), - [sym_discard] = ACTIONS(2383), + [anon_sym_await] = ACTIONS(1529), + [sym_discard] = ACTIONS(2485), [anon_sym_DOT_DOT] = ACTIONS(123), - [anon_sym_not] = ACTIONS(2619), + [anon_sym_not] = ACTIONS(2579), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -112522,18 +112408,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(1193), - [anon_sym_typeof] = ACTIONS(1195), + [anon_sym_sizeof] = ACTIONS(1693), + [anon_sym_typeof] = ACTIONS(1695), [anon_sym___makeref] = ACTIONS(133), [anon_sym___reftype] = ACTIONS(135), [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(1203), - [anon_sym_SQUOTE] = ACTIONS(1205), - [sym_integer_literal] = ACTIONS(1203), - [sym_real_literal] = ACTIONS(1207), - [anon_sym_DQUOTE] = ACTIONS(1209), - [sym_verbatim_string_literal] = ACTIONS(1207), - [aux_sym_preproc_if_token1] = ACTIONS(1089), + [sym_null_literal] = ACTIONS(1703), + [anon_sym_SQUOTE] = ACTIONS(1705), + [sym_integer_literal] = ACTIONS(1703), + [sym_real_literal] = ACTIONS(1707), + [anon_sym_DQUOTE] = ACTIONS(1709), + [sym_verbatim_string_literal] = ACTIONS(1707), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -112544,104 +112430,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(1213), - [sym_interpolation_verbatim_start] = ACTIONS(1215), - [sym_interpolation_raw_start] = ACTIONS(1217), - [sym_raw_string_start] = ACTIONS(1219), + [sym_interpolation_regular_start] = ACTIONS(1713), + [sym_interpolation_verbatim_start] = ACTIONS(1715), + [sym_interpolation_raw_start] = ACTIONS(1717), + [sym_raw_string_start] = ACTIONS(1719), }, [429] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(2860), - [sym_alias_qualified_name] = STATE(2373), - [sym__simple_name] = STATE(2314), - [sym_qualified_name] = STATE(2373), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(2469), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(2378), - [sym__array_base_type] = STATE(7103), - [sym_nullable_type] = STATE(2379), - [sym_pointer_type] = STATE(2379), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(2379), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(2380), - [sym_pattern] = STATE(3791), - [sym_constant_pattern] = STATE(3774), - [sym_parenthesized_pattern] = STATE(3774), - [sym_var_pattern] = STATE(3774), - [sym_type_pattern] = STATE(3774), - [sym_list_pattern] = STATE(3774), - [sym_recursive_pattern] = STATE(3774), - [sym_positional_pattern_clause] = STATE(2556), - [sym_property_pattern_clause] = STATE(2631), - [sym_relational_pattern] = STATE(3774), - [sym_negated_pattern] = STATE(3774), - [sym_and_pattern] = STATE(3774), - [sym_or_pattern] = STATE(3774), - [sym_declaration_pattern] = STATE(3774), - [sym_expression] = STATE(5687), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3520), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3803), - [sym_postfix_unary_expression] = STATE(3804), - [sym_prefix_unary_expression] = STATE(3804), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6154), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3803), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3804), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3803), - [sym_member_access_expression] = STATE(2917), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3804), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7530), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(3803), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3803), - [sym_typeof_expression] = STATE(3803), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2917), - [sym_literal] = STATE(3803), - [sym_character_literal] = STATE(3877), - [sym_string_literal] = STATE(3877), - [sym_raw_string_literal] = STATE(3877), - [sym_boolean_literal] = STATE(3877), - [sym_identifier] = STATE(2186), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(2611), + [sym_alias_qualified_name] = STATE(2402), + [sym__simple_name] = STATE(2184), + [sym_qualified_name] = STATE(2402), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(2236), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(2373), + [sym__array_base_type] = STATE(7083), + [sym_nullable_type] = STATE(2375), + [sym_pointer_type] = STATE(2375), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(2375), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(2377), + [sym_pattern] = STATE(5466), + [sym_constant_pattern] = STATE(3429), + [sym_parenthesized_pattern] = STATE(3429), + [sym_var_pattern] = STATE(3429), + [sym_type_pattern] = STATE(3429), + [sym_list_pattern] = STATE(3429), + [sym_recursive_pattern] = STATE(3429), + [sym_positional_pattern_clause] = STATE(2275), + [sym_property_pattern_clause] = STATE(2315), + [sym_relational_pattern] = STATE(3429), + [sym_negated_pattern] = STATE(3429), + [sym_and_pattern] = STATE(3429), + [sym_or_pattern] = STATE(3429), + [sym_declaration_pattern] = STATE(3429), + [sym_expression] = STATE(5655), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3510), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3397), + [sym_postfix_unary_expression] = STATE(3404), + [sym_prefix_unary_expression] = STATE(3404), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6134), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3397), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3404), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3397), + [sym_member_access_expression] = STATE(2686), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3404), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7425), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(3397), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3397), + [sym_typeof_expression] = STATE(3397), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2686), + [sym_literal] = STATE(3397), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2202), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(429), [sym_preproc_endregion] = STATE(429), [sym_preproc_line] = STATE(429), @@ -112651,53 +112537,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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(2415), - [anon_sym_LPAREN] = ACTIONS(2597), - [anon_sym_ref] = ACTIONS(2369), - [anon_sym_LBRACE] = ACTIONS(2371), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_LPAREN] = ACTIONS(2591), + [anon_sym_ref] = ACTIONS(2519), + [anon_sym_LBRACE] = ACTIONS(2343), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1061), - [anon_sym_LT] = ACTIONS(2599), - [anon_sym_GT] = ACTIONS(2599), + [anon_sym_new] = ACTIONS(1059), + [anon_sym_LT] = ACTIONS(2593), + [anon_sym_GT] = ACTIONS(2593), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1067), - [anon_sym_BANG] = ACTIONS(1735), - [anon_sym_TILDE] = ACTIONS(1735), - [anon_sym_PLUS_PLUS] = ACTIONS(1735), - [anon_sym_DASH_DASH] = ACTIONS(1735), - [anon_sym_true] = ACTIONS(1645), - [anon_sym_false] = ACTIONS(1645), - [anon_sym_PLUS] = ACTIONS(1733), - [anon_sym_DASH] = ACTIONS(1733), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(1727), + [anon_sym_TILDE] = ACTIONS(1727), + [anon_sym_PLUS_PLUS] = ACTIONS(1727), + [anon_sym_DASH_DASH] = ACTIONS(1727), + [anon_sym_true] = ACTIONS(77), + [anon_sym_false] = ACTIONS(77), + [anon_sym_PLUS] = ACTIONS(1725), + [anon_sym_DASH] = ACTIONS(1725), [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(1735), - [anon_sym_AMP] = ACTIONS(1735), - [anon_sym_GT_EQ] = ACTIONS(2601), - [anon_sym_LT_EQ] = ACTIONS(2601), + [anon_sym_CARET] = ACTIONS(1727), + [anon_sym_AMP] = ACTIONS(1727), + [anon_sym_GT_EQ] = ACTIONS(2595), + [anon_sym_LT_EQ] = ACTIONS(2595), [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(2377), + [anon_sym_scoped] = ACTIONS(2525), [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(2423), - [sym_predefined_type] = ACTIONS(2425), - [anon_sym_unchecked] = ACTIONS(1067), + [anon_sym_var] = ACTIONS(2351), + [sym_predefined_type] = ACTIONS(2353), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1655), - [anon_sym_throw] = ACTIONS(1589), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(1527), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1591), - [sym_discard] = ACTIONS(2427), + [anon_sym_await] = ACTIONS(1529), + [sym_discard] = ACTIONS(1081), [anon_sym_DOT_DOT] = ACTIONS(123), - [anon_sym_not] = ACTIONS(2603), + [anon_sym_not] = ACTIONS(2597), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -112711,18 +112597,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(1665), - [anon_sym_typeof] = ACTIONS(1667), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), [anon_sym___makeref] = ACTIONS(133), [anon_sym___reftype] = ACTIONS(135), [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(1675), - [anon_sym_SQUOTE] = ACTIONS(1677), - [sym_integer_literal] = ACTIONS(1675), - [sym_real_literal] = ACTIONS(1679), - [anon_sym_DQUOTE] = ACTIONS(1681), - [sym_verbatim_string_literal] = ACTIONS(1679), - [aux_sym_preproc_if_token1] = ACTIONS(1089), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_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), @@ -112733,104 +112619,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(1685), - [sym_interpolation_verbatim_start] = ACTIONS(1687), - [sym_interpolation_raw_start] = ACTIONS(1689), - [sym_raw_string_start] = ACTIONS(1691), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [sym_interpolation_raw_start] = ACTIONS(155), + [sym_raw_string_start] = ACTIONS(157), }, [430] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(2860), - [sym_alias_qualified_name] = STATE(2373), - [sym__simple_name] = STATE(2314), - [sym_qualified_name] = STATE(2373), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(2469), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(2378), - [sym__array_base_type] = STATE(7103), - [sym_nullable_type] = STATE(2379), - [sym_pointer_type] = STATE(2379), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(2379), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(2380), - [sym_pattern] = STATE(3747), - [sym_constant_pattern] = STATE(3774), - [sym_parenthesized_pattern] = STATE(3774), - [sym_var_pattern] = STATE(3774), - [sym_type_pattern] = STATE(3774), - [sym_list_pattern] = STATE(3774), - [sym_recursive_pattern] = STATE(3774), - [sym_positional_pattern_clause] = STATE(2556), - [sym_property_pattern_clause] = STATE(2631), - [sym_relational_pattern] = STATE(3774), - [sym_negated_pattern] = STATE(3774), - [sym_and_pattern] = STATE(3774), - [sym_or_pattern] = STATE(3774), - [sym_declaration_pattern] = STATE(3774), - [sym_expression] = STATE(5687), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3520), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3803), - [sym_postfix_unary_expression] = STATE(3804), - [sym_prefix_unary_expression] = STATE(3804), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6154), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3803), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3804), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3803), - [sym_member_access_expression] = STATE(2917), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3804), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7530), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(3803), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3803), - [sym_typeof_expression] = STATE(3803), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2917), - [sym_literal] = STATE(3803), - [sym_character_literal] = STATE(3877), - [sym_string_literal] = STATE(3877), - [sym_raw_string_literal] = STATE(3877), - [sym_boolean_literal] = STATE(3877), - [sym_identifier] = STATE(2186), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(2410), + [sym_alias_qualified_name] = STATE(2402), + [sym__simple_name] = STATE(2185), + [sym_qualified_name] = STATE(2402), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(2232), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(2373), + [sym__array_base_type] = STATE(7083), + [sym_nullable_type] = STATE(2375), + [sym_pointer_type] = STATE(2375), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(2375), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(2377), + [sym_pattern] = STATE(5310), + [sym_constant_pattern] = STATE(3311), + [sym_parenthesized_pattern] = STATE(3311), + [sym_var_pattern] = STATE(3311), + [sym_type_pattern] = STATE(3311), + [sym_list_pattern] = STATE(3311), + [sym_recursive_pattern] = STATE(3311), + [sym_positional_pattern_clause] = STATE(2257), + [sym_property_pattern_clause] = STATE(2289), + [sym_relational_pattern] = STATE(3311), + [sym_negated_pattern] = STATE(3311), + [sym_and_pattern] = STATE(3311), + [sym_or_pattern] = STATE(3311), + [sym_declaration_pattern] = STATE(3311), + [sym_expression] = STATE(5668), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3510), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3275), + [sym_postfix_unary_expression] = STATE(3276), + [sym_prefix_unary_expression] = STATE(3276), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6134), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3275), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3276), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3275), + [sym_member_access_expression] = STATE(2608), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3276), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7425), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(3275), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3275), + [sym_typeof_expression] = STATE(3275), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2608), + [sym_literal] = STATE(3275), + [sym_character_literal] = STATE(3272), + [sym_string_literal] = STATE(3272), + [sym_raw_string_literal] = STATE(3272), + [sym_boolean_literal] = STATE(3272), + [sym_identifier] = STATE(2178), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(430), [sym_preproc_endregion] = STATE(430), [sym_preproc_line] = STATE(430), @@ -112840,53 +112726,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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(2415), - [anon_sym_LPAREN] = ACTIONS(2597), - [anon_sym_ref] = ACTIONS(2369), - [anon_sym_LBRACE] = ACTIONS(2371), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(2357), + [anon_sym_LPAREN] = ACTIONS(2611), + [anon_sym_ref] = ACTIONS(2341), + [anon_sym_LBRACE] = ACTIONS(2343), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1061), - [anon_sym_LT] = ACTIONS(2599), - [anon_sym_GT] = ACTIONS(2599), + [anon_sym_new] = ACTIONS(1059), + [anon_sym_LT] = ACTIONS(2613), + [anon_sym_GT] = ACTIONS(2613), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1067), - [anon_sym_BANG] = ACTIONS(1735), - [anon_sym_TILDE] = ACTIONS(1735), - [anon_sym_PLUS_PLUS] = ACTIONS(1735), - [anon_sym_DASH_DASH] = ACTIONS(1735), - [anon_sym_true] = ACTIONS(1645), - [anon_sym_false] = ACTIONS(1645), - [anon_sym_PLUS] = ACTIONS(1733), - [anon_sym_DASH] = ACTIONS(1733), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(1793), + [anon_sym_TILDE] = ACTIONS(1793), + [anon_sym_PLUS_PLUS] = ACTIONS(1793), + [anon_sym_DASH_DASH] = ACTIONS(1793), + [anon_sym_true] = ACTIONS(1169), + [anon_sym_false] = ACTIONS(1169), + [anon_sym_PLUS] = ACTIONS(1791), + [anon_sym_DASH] = ACTIONS(1791), [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(1735), - [anon_sym_AMP] = ACTIONS(1735), - [anon_sym_GT_EQ] = ACTIONS(2601), - [anon_sym_LT_EQ] = ACTIONS(2601), + [anon_sym_CARET] = ACTIONS(1793), + [anon_sym_AMP] = ACTIONS(1793), + [anon_sym_GT_EQ] = ACTIONS(2615), + [anon_sym_LT_EQ] = ACTIONS(2615), [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(2377), + [anon_sym_scoped] = ACTIONS(2349), [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(2423), - [sym_predefined_type] = ACTIONS(2425), - [anon_sym_unchecked] = ACTIONS(1067), + [anon_sym_var] = ACTIONS(2365), + [sym_predefined_type] = ACTIONS(2367), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1655), - [anon_sym_throw] = ACTIONS(1589), + [anon_sym_default] = ACTIONS(1179), + [anon_sym_throw] = ACTIONS(1527), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1591), - [sym_discard] = ACTIONS(2427), + [anon_sym_await] = ACTIONS(1529), + [sym_discard] = ACTIONS(2369), [anon_sym_DOT_DOT] = ACTIONS(123), - [anon_sym_not] = ACTIONS(2603), + [anon_sym_not] = ACTIONS(2617), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -112900,18 +112786,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(1665), - [anon_sym_typeof] = ACTIONS(1667), + [anon_sym_sizeof] = ACTIONS(1189), + [anon_sym_typeof] = ACTIONS(1191), [anon_sym___makeref] = ACTIONS(133), [anon_sym___reftype] = ACTIONS(135), [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(1675), - [anon_sym_SQUOTE] = ACTIONS(1677), - [sym_integer_literal] = ACTIONS(1675), - [sym_real_literal] = ACTIONS(1679), - [anon_sym_DQUOTE] = ACTIONS(1681), - [sym_verbatim_string_literal] = ACTIONS(1679), - [aux_sym_preproc_if_token1] = ACTIONS(1089), + [sym_null_literal] = ACTIONS(1199), + [anon_sym_SQUOTE] = ACTIONS(1201), + [sym_integer_literal] = ACTIONS(1199), + [sym_real_literal] = ACTIONS(1203), + [anon_sym_DQUOTE] = ACTIONS(1205), + [sym_verbatim_string_literal] = ACTIONS(1203), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -112922,104 +112808,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(1685), - [sym_interpolation_verbatim_start] = ACTIONS(1687), - [sym_interpolation_raw_start] = ACTIONS(1689), - [sym_raw_string_start] = ACTIONS(1691), + [sym_interpolation_regular_start] = ACTIONS(1209), + [sym_interpolation_verbatim_start] = ACTIONS(1211), + [sym_interpolation_raw_start] = ACTIONS(1213), + [sym_raw_string_start] = ACTIONS(1215), }, [431] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(2887), - [sym_alias_qualified_name] = STATE(2373), - [sym__simple_name] = STATE(2335), - [sym_qualified_name] = STATE(2373), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(2496), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(2378), - [sym__array_base_type] = STATE(7103), - [sym_nullable_type] = STATE(2379), - [sym_pointer_type] = STATE(2379), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(2379), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(2380), - [sym_pattern] = STATE(5154), - [sym_constant_pattern] = STATE(3295), - [sym_parenthesized_pattern] = STATE(3295), - [sym_var_pattern] = STATE(3295), - [sym_type_pattern] = STATE(3295), - [sym_list_pattern] = STATE(3295), - [sym_recursive_pattern] = STATE(3295), - [sym_positional_pattern_clause] = STATE(2588), - [sym_property_pattern_clause] = STATE(2786), - [sym_relational_pattern] = STATE(3295), - [sym_negated_pattern] = STATE(3295), - [sym_and_pattern] = STATE(3295), - [sym_or_pattern] = STATE(3295), - [sym_declaration_pattern] = STATE(3295), - [sym_expression] = STATE(5696), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3520), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3310), - [sym_postfix_unary_expression] = STATE(3312), - [sym_prefix_unary_expression] = STATE(3312), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6154), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3310), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3312), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3310), - [sym_member_access_expression] = STATE(2617), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3312), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7530), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(3310), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3310), - [sym_typeof_expression] = STATE(3310), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2617), - [sym_literal] = STATE(3310), - [sym_character_literal] = STATE(3278), - [sym_string_literal] = STATE(3278), - [sym_raw_string_literal] = STATE(3278), - [sym_boolean_literal] = STATE(3278), - [sym_identifier] = STATE(2186), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(2410), + [sym_alias_qualified_name] = STATE(2402), + [sym__simple_name] = STATE(2185), + [sym_qualified_name] = STATE(2402), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(2232), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(2373), + [sym__array_base_type] = STATE(7083), + [sym_nullable_type] = STATE(2375), + [sym_pointer_type] = STATE(2375), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(2375), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(2377), + [sym_pattern] = STATE(3260), + [sym_constant_pattern] = STATE(3311), + [sym_parenthesized_pattern] = STATE(3311), + [sym_var_pattern] = STATE(3311), + [sym_type_pattern] = STATE(3311), + [sym_list_pattern] = STATE(3311), + [sym_recursive_pattern] = STATE(3311), + [sym_positional_pattern_clause] = STATE(2257), + [sym_property_pattern_clause] = STATE(2289), + [sym_relational_pattern] = STATE(3311), + [sym_negated_pattern] = STATE(3311), + [sym_and_pattern] = STATE(3311), + [sym_or_pattern] = STATE(3311), + [sym_declaration_pattern] = STATE(3311), + [sym_expression] = STATE(5668), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3510), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3275), + [sym_postfix_unary_expression] = STATE(3276), + [sym_prefix_unary_expression] = STATE(3276), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6134), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3275), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3276), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3275), + [sym_member_access_expression] = STATE(2608), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3276), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7425), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(3275), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3275), + [sym_typeof_expression] = STATE(3275), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2608), + [sym_literal] = STATE(3275), + [sym_character_literal] = STATE(3272), + [sym_string_literal] = STATE(3272), + [sym_raw_string_literal] = STATE(3272), + [sym_boolean_literal] = STATE(3272), + [sym_identifier] = STATE(2178), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(431), [sym_preproc_endregion] = STATE(431), [sym_preproc_line] = STATE(431), @@ -113029,53 +112915,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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(2365), - [anon_sym_LPAREN] = ACTIONS(2367), - [anon_sym_ref] = ACTIONS(2369), - [anon_sym_LBRACE] = ACTIONS(2371), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(2357), + [anon_sym_LPAREN] = ACTIONS(2611), + [anon_sym_ref] = ACTIONS(2341), + [anon_sym_LBRACE] = ACTIONS(2343), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1061), - [anon_sym_LT] = ACTIONS(2373), - [anon_sym_GT] = ACTIONS(2373), + [anon_sym_new] = ACTIONS(1059), + [anon_sym_LT] = ACTIONS(2613), + [anon_sym_GT] = ACTIONS(2613), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1067), - [anon_sym_BANG] = ACTIONS(1923), - [anon_sym_TILDE] = ACTIONS(1923), - [anon_sym_PLUS_PLUS] = ACTIONS(1923), - [anon_sym_DASH_DASH] = ACTIONS(1923), - [anon_sym_true] = ACTIONS(1173), - [anon_sym_false] = ACTIONS(1173), - [anon_sym_PLUS] = ACTIONS(1921), - [anon_sym_DASH] = ACTIONS(1921), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(1793), + [anon_sym_TILDE] = ACTIONS(1793), + [anon_sym_PLUS_PLUS] = ACTIONS(1793), + [anon_sym_DASH_DASH] = ACTIONS(1793), + [anon_sym_true] = ACTIONS(1169), + [anon_sym_false] = ACTIONS(1169), + [anon_sym_PLUS] = ACTIONS(1791), + [anon_sym_DASH] = ACTIONS(1791), [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(1923), - [anon_sym_AMP] = ACTIONS(1923), - [anon_sym_GT_EQ] = ACTIONS(2375), - [anon_sym_LT_EQ] = ACTIONS(2375), + [anon_sym_CARET] = ACTIONS(1793), + [anon_sym_AMP] = ACTIONS(1793), + [anon_sym_GT_EQ] = ACTIONS(2615), + [anon_sym_LT_EQ] = ACTIONS(2615), [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(2377), + [anon_sym_scoped] = ACTIONS(2349), [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(2379), - [sym_predefined_type] = ACTIONS(2381), - [anon_sym_unchecked] = ACTIONS(1067), + [anon_sym_var] = ACTIONS(2365), + [sym_predefined_type] = ACTIONS(2367), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1183), - [anon_sym_throw] = ACTIONS(1589), + [anon_sym_default] = ACTIONS(1179), + [anon_sym_throw] = ACTIONS(1527), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1591), - [sym_discard] = ACTIONS(2383), + [anon_sym_await] = ACTIONS(1529), + [sym_discard] = ACTIONS(2369), [anon_sym_DOT_DOT] = ACTIONS(123), - [anon_sym_not] = ACTIONS(2385), + [anon_sym_not] = ACTIONS(2617), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -113089,18 +112975,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(1193), - [anon_sym_typeof] = ACTIONS(1195), + [anon_sym_sizeof] = ACTIONS(1189), + [anon_sym_typeof] = ACTIONS(1191), [anon_sym___makeref] = ACTIONS(133), [anon_sym___reftype] = ACTIONS(135), [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(1203), - [anon_sym_SQUOTE] = ACTIONS(1205), - [sym_integer_literal] = ACTIONS(1203), - [sym_real_literal] = ACTIONS(1207), - [anon_sym_DQUOTE] = ACTIONS(1209), - [sym_verbatim_string_literal] = ACTIONS(1207), - [aux_sym_preproc_if_token1] = ACTIONS(1089), + [sym_null_literal] = ACTIONS(1199), + [anon_sym_SQUOTE] = ACTIONS(1201), + [sym_integer_literal] = ACTIONS(1199), + [sym_real_literal] = ACTIONS(1203), + [anon_sym_DQUOTE] = ACTIONS(1205), + [sym_verbatim_string_literal] = ACTIONS(1203), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -113111,104 +112997,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(1213), - [sym_interpolation_verbatim_start] = ACTIONS(1215), - [sym_interpolation_raw_start] = ACTIONS(1217), - [sym_raw_string_start] = ACTIONS(1219), + [sym_interpolation_regular_start] = ACTIONS(1209), + [sym_interpolation_verbatim_start] = ACTIONS(1211), + [sym_interpolation_raw_start] = ACTIONS(1213), + [sym_raw_string_start] = ACTIONS(1215), }, [432] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(2616), - [sym_alias_qualified_name] = STATE(2373), - [sym__simple_name] = STATE(2189), - [sym_qualified_name] = STATE(2373), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(2231), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(2378), - [sym__array_base_type] = STATE(7103), - [sym_nullable_type] = STATE(2379), - [sym_pointer_type] = STATE(2379), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(2379), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(2380), - [sym_pattern] = STATE(4407), - [sym_constant_pattern] = STATE(3295), - [sym_parenthesized_pattern] = STATE(3295), - [sym_var_pattern] = STATE(3295), - [sym_type_pattern] = STATE(3295), - [sym_list_pattern] = STATE(3295), - [sym_recursive_pattern] = STATE(3295), - [sym_positional_pattern_clause] = STATE(2251), - [sym_property_pattern_clause] = STATE(2302), - [sym_relational_pattern] = STATE(3295), - [sym_negated_pattern] = STATE(3295), - [sym_and_pattern] = STATE(3295), - [sym_or_pattern] = STATE(3295), - [sym_declaration_pattern] = STATE(3295), - [sym_expression] = STATE(5680), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3520), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3310), - [sym_postfix_unary_expression] = STATE(3312), - [sym_prefix_unary_expression] = STATE(3312), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6154), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3310), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3312), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3310), - [sym_member_access_expression] = STATE(2617), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3312), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7530), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(3310), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3310), - [sym_typeof_expression] = STATE(3310), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2617), - [sym_literal] = STATE(3310), - [sym_character_literal] = STATE(3278), - [sym_string_literal] = STATE(3278), - [sym_raw_string_literal] = STATE(3278), - [sym_boolean_literal] = STATE(3278), - [sym_identifier] = STATE(2214), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(2410), + [sym_alias_qualified_name] = STATE(2402), + [sym__simple_name] = STATE(2185), + [sym_qualified_name] = STATE(2402), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(2232), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(2373), + [sym__array_base_type] = STATE(7083), + [sym_nullable_type] = STATE(2375), + [sym_pointer_type] = STATE(2375), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(2375), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(2377), + [sym_pattern] = STATE(5287), + [sym_constant_pattern] = STATE(3311), + [sym_parenthesized_pattern] = STATE(3311), + [sym_var_pattern] = STATE(3311), + [sym_type_pattern] = STATE(3311), + [sym_list_pattern] = STATE(3311), + [sym_recursive_pattern] = STATE(3311), + [sym_positional_pattern_clause] = STATE(2257), + [sym_property_pattern_clause] = STATE(2289), + [sym_relational_pattern] = STATE(3311), + [sym_negated_pattern] = STATE(3311), + [sym_and_pattern] = STATE(3311), + [sym_or_pattern] = STATE(3311), + [sym_declaration_pattern] = STATE(3311), + [sym_expression] = STATE(5668), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3510), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3275), + [sym_postfix_unary_expression] = STATE(3276), + [sym_prefix_unary_expression] = STATE(3276), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6134), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3275), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3276), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3275), + [sym_member_access_expression] = STATE(2608), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3276), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7425), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(3275), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3275), + [sym_typeof_expression] = STATE(3275), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2608), + [sym_literal] = STATE(3275), + [sym_character_literal] = STATE(3272), + [sym_string_literal] = STATE(3272), + [sym_raw_string_literal] = STATE(3272), + [sym_boolean_literal] = STATE(3272), + [sym_identifier] = STATE(2178), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(432), [sym_preproc_endregion] = STATE(432), [sym_preproc_line] = STATE(432), @@ -113218,53 +113104,53 @@ 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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(2365), - [anon_sym_LPAREN] = ACTIONS(2387), - [anon_sym_ref] = ACTIONS(2389), - [anon_sym_LBRACE] = ACTIONS(2371), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(2357), + [anon_sym_LPAREN] = ACTIONS(2611), + [anon_sym_ref] = ACTIONS(2341), + [anon_sym_LBRACE] = ACTIONS(2343), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1061), - [anon_sym_LT] = ACTIONS(2391), - [anon_sym_GT] = ACTIONS(2391), + [anon_sym_new] = ACTIONS(1059), + [anon_sym_LT] = ACTIONS(2613), + [anon_sym_GT] = ACTIONS(2613), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1067), - [anon_sym_BANG] = ACTIONS(1377), - [anon_sym_TILDE] = ACTIONS(1377), - [anon_sym_PLUS_PLUS] = ACTIONS(1377), - [anon_sym_DASH_DASH] = ACTIONS(1377), - [anon_sym_true] = ACTIONS(1173), - [anon_sym_false] = ACTIONS(1173), - [anon_sym_PLUS] = ACTIONS(1375), - [anon_sym_DASH] = ACTIONS(1375), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(1793), + [anon_sym_TILDE] = ACTIONS(1793), + [anon_sym_PLUS_PLUS] = ACTIONS(1793), + [anon_sym_DASH_DASH] = ACTIONS(1793), + [anon_sym_true] = ACTIONS(1169), + [anon_sym_false] = ACTIONS(1169), + [anon_sym_PLUS] = ACTIONS(1791), + [anon_sym_DASH] = ACTIONS(1791), [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(1377), - [anon_sym_AMP] = ACTIONS(1377), - [anon_sym_GT_EQ] = ACTIONS(2393), - [anon_sym_LT_EQ] = ACTIONS(2393), + [anon_sym_CARET] = ACTIONS(1793), + [anon_sym_AMP] = ACTIONS(1793), + [anon_sym_GT_EQ] = ACTIONS(2615), + [anon_sym_LT_EQ] = ACTIONS(2615), [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(2395), + [anon_sym_scoped] = ACTIONS(2349), [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(2379), - [sym_predefined_type] = ACTIONS(2381), - [anon_sym_unchecked] = ACTIONS(1067), + [anon_sym_var] = ACTIONS(2365), + [sym_predefined_type] = ACTIONS(2367), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1183), - [anon_sym_throw] = ACTIONS(1589), + [anon_sym_default] = ACTIONS(1179), + [anon_sym_throw] = ACTIONS(1527), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1591), - [sym_discard] = ACTIONS(2383), + [anon_sym_await] = ACTIONS(1529), + [sym_discard] = ACTIONS(2369), [anon_sym_DOT_DOT] = ACTIONS(123), - [anon_sym_not] = ACTIONS(2397), + [anon_sym_not] = ACTIONS(2617), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -113278,18 +113164,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(1193), - [anon_sym_typeof] = ACTIONS(1195), + [anon_sym_sizeof] = ACTIONS(1189), + [anon_sym_typeof] = ACTIONS(1191), [anon_sym___makeref] = ACTIONS(133), [anon_sym___reftype] = ACTIONS(135), [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(1203), - [anon_sym_SQUOTE] = ACTIONS(1205), - [sym_integer_literal] = ACTIONS(1203), - [sym_real_literal] = ACTIONS(1207), - [anon_sym_DQUOTE] = ACTIONS(1209), - [sym_verbatim_string_literal] = ACTIONS(1207), - [aux_sym_preproc_if_token1] = ACTIONS(1089), + [sym_null_literal] = ACTIONS(1199), + [anon_sym_SQUOTE] = ACTIONS(1201), + [sym_integer_literal] = ACTIONS(1199), + [sym_real_literal] = ACTIONS(1203), + [anon_sym_DQUOTE] = ACTIONS(1205), + [sym_verbatim_string_literal] = ACTIONS(1203), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -113300,104 +113186,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(1213), - [sym_interpolation_verbatim_start] = ACTIONS(1215), - [sym_interpolation_raw_start] = ACTIONS(1217), - [sym_raw_string_start] = ACTIONS(1219), + [sym_interpolation_regular_start] = ACTIONS(1209), + [sym_interpolation_verbatim_start] = ACTIONS(1211), + [sym_interpolation_raw_start] = ACTIONS(1213), + [sym_raw_string_start] = ACTIONS(1215), }, [433] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(2616), - [sym_alias_qualified_name] = STATE(2373), - [sym__simple_name] = STATE(2189), - [sym_qualified_name] = STATE(2373), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(2231), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(2378), - [sym__array_base_type] = STATE(7103), - [sym_nullable_type] = STATE(2379), - [sym_pointer_type] = STATE(2379), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(2379), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(2380), - [sym_pattern] = STATE(3236), - [sym_constant_pattern] = STATE(3295), - [sym_parenthesized_pattern] = STATE(3295), - [sym_var_pattern] = STATE(3295), - [sym_type_pattern] = STATE(3295), - [sym_list_pattern] = STATE(3295), - [sym_recursive_pattern] = STATE(3295), - [sym_positional_pattern_clause] = STATE(2251), - [sym_property_pattern_clause] = STATE(2302), - [sym_relational_pattern] = STATE(3295), - [sym_negated_pattern] = STATE(3295), - [sym_and_pattern] = STATE(3295), - [sym_or_pattern] = STATE(3295), - [sym_declaration_pattern] = STATE(3295), - [sym_expression] = STATE(5680), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3520), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3310), - [sym_postfix_unary_expression] = STATE(3312), - [sym_prefix_unary_expression] = STATE(3312), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6154), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3310), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3312), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3310), - [sym_member_access_expression] = STATE(2617), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3312), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7530), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(3310), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3310), - [sym_typeof_expression] = STATE(3310), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2617), - [sym_literal] = STATE(3310), - [sym_character_literal] = STATE(3278), - [sym_string_literal] = STATE(3278), - [sym_raw_string_literal] = STATE(3278), - [sym_boolean_literal] = STATE(3278), - [sym_identifier] = STATE(2214), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(2410), + [sym_alias_qualified_name] = STATE(2402), + [sym__simple_name] = STATE(2185), + [sym_qualified_name] = STATE(2402), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(2230), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(2373), + [sym__array_base_type] = STATE(7083), + [sym_nullable_type] = STATE(2375), + [sym_pointer_type] = STATE(2375), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(2375), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(2377), + [sym_pattern] = STATE(5288), + [sym_constant_pattern] = STATE(3311), + [sym_parenthesized_pattern] = STATE(3311), + [sym_var_pattern] = STATE(3311), + [sym_type_pattern] = STATE(3311), + [sym_list_pattern] = STATE(3311), + [sym_recursive_pattern] = STATE(3311), + [sym_positional_pattern_clause] = STATE(2257), + [sym_property_pattern_clause] = STATE(2289), + [sym_relational_pattern] = STATE(3311), + [sym_negated_pattern] = STATE(3311), + [sym_and_pattern] = STATE(3311), + [sym_or_pattern] = STATE(3311), + [sym_declaration_pattern] = STATE(3311), + [sym_expression] = STATE(5668), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3510), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3275), + [sym_postfix_unary_expression] = STATE(3276), + [sym_prefix_unary_expression] = STATE(3276), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6134), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3275), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3276), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3275), + [sym_member_access_expression] = STATE(2608), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3276), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7425), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(3275), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3275), + [sym_typeof_expression] = STATE(3275), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2608), + [sym_literal] = STATE(3275), + [sym_character_literal] = STATE(3272), + [sym_string_literal] = STATE(3272), + [sym_raw_string_literal] = STATE(3272), + [sym_boolean_literal] = STATE(3272), + [sym_identifier] = STATE(2178), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(433), [sym_preproc_endregion] = STATE(433), [sym_preproc_line] = STATE(433), @@ -113407,53 +113293,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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(2365), - [anon_sym_LPAREN] = ACTIONS(2387), - [anon_sym_ref] = ACTIONS(2389), - [anon_sym_LBRACE] = ACTIONS(2371), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(2357), + [anon_sym_LPAREN] = ACTIONS(2611), + [anon_sym_ref] = ACTIONS(2341), + [anon_sym_LBRACE] = ACTIONS(2343), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1061), - [anon_sym_LT] = ACTIONS(2391), - [anon_sym_GT] = ACTIONS(2391), + [anon_sym_new] = ACTIONS(1059), + [anon_sym_LT] = ACTIONS(2613), + [anon_sym_GT] = ACTIONS(2613), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1067), - [anon_sym_BANG] = ACTIONS(1377), - [anon_sym_TILDE] = ACTIONS(1377), - [anon_sym_PLUS_PLUS] = ACTIONS(1377), - [anon_sym_DASH_DASH] = ACTIONS(1377), - [anon_sym_true] = ACTIONS(1173), - [anon_sym_false] = ACTIONS(1173), - [anon_sym_PLUS] = ACTIONS(1375), - [anon_sym_DASH] = ACTIONS(1375), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(1793), + [anon_sym_TILDE] = ACTIONS(1793), + [anon_sym_PLUS_PLUS] = ACTIONS(1793), + [anon_sym_DASH_DASH] = ACTIONS(1793), + [anon_sym_true] = ACTIONS(1169), + [anon_sym_false] = ACTIONS(1169), + [anon_sym_PLUS] = ACTIONS(1791), + [anon_sym_DASH] = ACTIONS(1791), [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(1377), - [anon_sym_AMP] = ACTIONS(1377), - [anon_sym_GT_EQ] = ACTIONS(2393), - [anon_sym_LT_EQ] = ACTIONS(2393), + [anon_sym_CARET] = ACTIONS(1793), + [anon_sym_AMP] = ACTIONS(1793), + [anon_sym_GT_EQ] = ACTIONS(2615), + [anon_sym_LT_EQ] = ACTIONS(2615), [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(2395), + [anon_sym_scoped] = ACTIONS(2349), [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(2379), - [sym_predefined_type] = ACTIONS(2381), - [anon_sym_unchecked] = ACTIONS(1067), + [anon_sym_var] = ACTIONS(2365), + [sym_predefined_type] = ACTIONS(2367), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1183), - [anon_sym_throw] = ACTIONS(1589), + [anon_sym_default] = ACTIONS(1179), + [anon_sym_throw] = ACTIONS(1527), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1591), - [sym_discard] = ACTIONS(2383), + [anon_sym_await] = ACTIONS(1529), + [sym_discard] = ACTIONS(2369), [anon_sym_DOT_DOT] = ACTIONS(123), - [anon_sym_not] = ACTIONS(2397), + [anon_sym_not] = ACTIONS(2617), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -113467,18 +113353,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(1193), - [anon_sym_typeof] = ACTIONS(1195), + [anon_sym_sizeof] = ACTIONS(1189), + [anon_sym_typeof] = ACTIONS(1191), [anon_sym___makeref] = ACTIONS(133), [anon_sym___reftype] = ACTIONS(135), [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(1203), - [anon_sym_SQUOTE] = ACTIONS(1205), - [sym_integer_literal] = ACTIONS(1203), - [sym_real_literal] = ACTIONS(1207), - [anon_sym_DQUOTE] = ACTIONS(1209), - [sym_verbatim_string_literal] = ACTIONS(1207), - [aux_sym_preproc_if_token1] = ACTIONS(1089), + [sym_null_literal] = ACTIONS(1199), + [anon_sym_SQUOTE] = ACTIONS(1201), + [sym_integer_literal] = ACTIONS(1199), + [sym_real_literal] = ACTIONS(1203), + [anon_sym_DQUOTE] = ACTIONS(1205), + [sym_verbatim_string_literal] = ACTIONS(1203), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -113489,104 +113375,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(1213), - [sym_interpolation_verbatim_start] = ACTIONS(1215), - [sym_interpolation_raw_start] = ACTIONS(1217), - [sym_raw_string_start] = ACTIONS(1219), + [sym_interpolation_regular_start] = ACTIONS(1209), + [sym_interpolation_verbatim_start] = ACTIONS(1211), + [sym_interpolation_raw_start] = ACTIONS(1213), + [sym_raw_string_start] = ACTIONS(1215), }, [434] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(2616), - [sym_alias_qualified_name] = STATE(2373), - [sym__simple_name] = STATE(2189), - [sym_qualified_name] = STATE(2373), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(2231), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(2378), - [sym__array_base_type] = STATE(7103), - [sym_nullable_type] = STATE(2379), - [sym_pointer_type] = STATE(2379), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(2379), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(2380), - [sym_pattern] = STATE(4362), - [sym_constant_pattern] = STATE(3295), - [sym_parenthesized_pattern] = STATE(3295), - [sym_var_pattern] = STATE(3295), - [sym_type_pattern] = STATE(3295), - [sym_list_pattern] = STATE(3295), - [sym_recursive_pattern] = STATE(3295), - [sym_positional_pattern_clause] = STATE(2251), - [sym_property_pattern_clause] = STATE(2302), - [sym_relational_pattern] = STATE(3295), - [sym_negated_pattern] = STATE(3295), - [sym_and_pattern] = STATE(3295), - [sym_or_pattern] = STATE(3295), - [sym_declaration_pattern] = STATE(3295), - [sym_expression] = STATE(5680), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3520), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3310), - [sym_postfix_unary_expression] = STATE(3312), - [sym_prefix_unary_expression] = STATE(3312), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6154), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3310), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3312), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3310), - [sym_member_access_expression] = STATE(2617), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3312), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7530), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(3310), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3310), - [sym_typeof_expression] = STATE(3310), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2617), - [sym_literal] = STATE(3310), - [sym_character_literal] = STATE(3278), - [sym_string_literal] = STATE(3278), - [sym_raw_string_literal] = STATE(3278), - [sym_boolean_literal] = STATE(3278), - [sym_identifier] = STATE(2214), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(5152), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2225), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(4472), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_pattern] = STATE(6581), + [sym_constant_pattern] = STATE(3429), + [sym_parenthesized_pattern] = STATE(3429), + [sym_var_pattern] = STATE(3429), + [sym_type_pattern] = STATE(3429), + [sym_list_pattern] = STATE(3429), + [sym_recursive_pattern] = STATE(3429), + [sym_positional_pattern_clause] = STATE(5135), + [sym_property_pattern_clause] = STATE(5666), + [sym_relational_pattern] = STATE(3429), + [sym_negated_pattern] = STATE(3429), + [sym_and_pattern] = STATE(3429), + [sym_or_pattern] = STATE(3429), + [sym_declaration_pattern] = STATE(3429), + [sym_expression] = STATE(5682), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3510), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(4418), + [sym_postfix_unary_expression] = STATE(4403), + [sym_prefix_unary_expression] = STATE(4403), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6134), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(4418), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(4403), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(4418), + [sym_member_access_expression] = STATE(3127), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(4403), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7425), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(4418), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(4418), + [sym_typeof_expression] = STATE(4418), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(3127), + [sym_literal] = STATE(4418), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(434), [sym_preproc_endregion] = STATE(434), [sym_preproc_line] = STATE(434), @@ -113596,53 +113482,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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(2365), - [anon_sym_LPAREN] = ACTIONS(2387), - [anon_sym_ref] = ACTIONS(2389), - [anon_sym_LBRACE] = ACTIONS(2371), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_LPAREN] = ACTIONS(1051), + [anon_sym_ref] = ACTIONS(2305), + [anon_sym_LBRACE] = ACTIONS(1057), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1061), - [anon_sym_LT] = ACTIONS(2391), - [anon_sym_GT] = ACTIONS(2391), + [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(1067), - [anon_sym_BANG] = ACTIONS(1377), - [anon_sym_TILDE] = ACTIONS(1377), - [anon_sym_PLUS_PLUS] = ACTIONS(1377), - [anon_sym_DASH_DASH] = ACTIONS(1377), - [anon_sym_true] = ACTIONS(1173), - [anon_sym_false] = ACTIONS(1173), - [anon_sym_PLUS] = ACTIONS(1375), - [anon_sym_DASH] = ACTIONS(1375), + [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_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(1377), - [anon_sym_AMP] = ACTIONS(1377), - [anon_sym_GT_EQ] = ACTIONS(2393), - [anon_sym_LT_EQ] = ACTIONS(2393), + [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(2395), + [anon_sym_scoped] = ACTIONS(1073), [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(2379), - [sym_predefined_type] = ACTIONS(2381), - [anon_sym_unchecked] = ACTIONS(1067), + [anon_sym_var] = ACTIONS(1075), + [sym_predefined_type] = ACTIONS(91), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1183), - [anon_sym_throw] = ACTIONS(1589), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(1527), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1591), - [sym_discard] = ACTIONS(2383), + [anon_sym_await] = ACTIONS(1529), + [sym_discard] = ACTIONS(1081), [anon_sym_DOT_DOT] = ACTIONS(123), - [anon_sym_not] = ACTIONS(2397), + [anon_sym_not] = ACTIONS(1085), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -113656,18 +113542,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(1193), - [anon_sym_typeof] = ACTIONS(1195), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), [anon_sym___makeref] = ACTIONS(133), [anon_sym___reftype] = ACTIONS(135), [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(1203), - [anon_sym_SQUOTE] = ACTIONS(1205), - [sym_integer_literal] = ACTIONS(1203), - [sym_real_literal] = ACTIONS(1207), - [anon_sym_DQUOTE] = ACTIONS(1209), - [sym_verbatim_string_literal] = ACTIONS(1207), - [aux_sym_preproc_if_token1] = ACTIONS(1089), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_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), @@ -113678,104 +113564,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(1213), - [sym_interpolation_verbatim_start] = ACTIONS(1215), - [sym_interpolation_raw_start] = ACTIONS(1217), - [sym_raw_string_start] = ACTIONS(1219), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [sym_interpolation_raw_start] = ACTIONS(155), + [sym_raw_string_start] = ACTIONS(157), }, [435] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(2721), - [sym_alias_qualified_name] = STATE(2764), - [sym__simple_name] = STATE(2256), - [sym_qualified_name] = STATE(2764), - [sym_generic_name] = STATE(2269), - [sym_type] = STATE(2391), - [sym_implicit_type] = STATE(2791), - [sym_array_type] = STATE(2767), - [sym__array_base_type] = STATE(7243), - [sym_nullable_type] = STATE(2768), - [sym_pointer_type] = STATE(2768), - [sym__pointer_base_type] = STATE(7717), - [sym_function_pointer_type] = STATE(2768), - [sym_ref_type] = STATE(2791), - [sym_scoped_type] = STATE(2791), - [sym_tuple_type] = STATE(2769), - [sym_pattern] = STATE(4626), - [sym_constant_pattern] = STATE(4631), - [sym_parenthesized_pattern] = STATE(4631), - [sym_var_pattern] = STATE(4631), - [sym_type_pattern] = STATE(4631), - [sym_list_pattern] = STATE(4631), - [sym_recursive_pattern] = STATE(4631), - [sym_positional_pattern_clause] = STATE(2488), - [sym_property_pattern_clause] = STATE(2561), - [sym_relational_pattern] = STATE(4631), - [sym_negated_pattern] = STATE(4631), - [sym_and_pattern] = STATE(4631), - [sym_or_pattern] = STATE(4631), - [sym_declaration_pattern] = STATE(4631), - [sym_expression] = STATE(5690), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3520), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(4544), - [sym_postfix_unary_expression] = STATE(4545), - [sym_prefix_unary_expression] = STATE(4545), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6154), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(4544), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(4545), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(4544), - [sym_member_access_expression] = STATE(3197), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(4545), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7530), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(4544), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(4544), - [sym_typeof_expression] = STATE(4544), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(3197), - [sym_literal] = STATE(4544), - [sym_character_literal] = STATE(4536), - [sym_string_literal] = STATE(4536), - [sym_raw_string_literal] = STATE(4536), - [sym_boolean_literal] = STATE(4536), - [sym_identifier] = STATE(2226), - [sym__reserved_identifier] = STATE(2240), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(2611), + [sym_alias_qualified_name] = STATE(2402), + [sym__simple_name] = STATE(2184), + [sym_qualified_name] = STATE(2402), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(2236), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(2373), + [sym__array_base_type] = STATE(7083), + [sym_nullable_type] = STATE(2375), + [sym_pointer_type] = STATE(2375), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(2375), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(2377), + [sym_pattern] = STATE(3407), + [sym_constant_pattern] = STATE(3429), + [sym_parenthesized_pattern] = STATE(3429), + [sym_var_pattern] = STATE(3429), + [sym_type_pattern] = STATE(3429), + [sym_list_pattern] = STATE(3429), + [sym_recursive_pattern] = STATE(3429), + [sym_positional_pattern_clause] = STATE(2275), + [sym_property_pattern_clause] = STATE(2315), + [sym_relational_pattern] = STATE(3429), + [sym_negated_pattern] = STATE(3429), + [sym_and_pattern] = STATE(3429), + [sym_or_pattern] = STATE(3429), + [sym_declaration_pattern] = STATE(3429), + [sym_expression] = STATE(5655), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3510), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3397), + [sym_postfix_unary_expression] = STATE(3404), + [sym_prefix_unary_expression] = STATE(3404), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6134), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3397), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3404), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3397), + [sym_member_access_expression] = STATE(2686), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3404), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7425), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(3397), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3397), + [sym_typeof_expression] = STATE(3397), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2686), + [sym_literal] = STATE(3397), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2202), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(435), [sym_preproc_endregion] = STATE(435), [sym_preproc_line] = STATE(435), @@ -113785,78 +113671,78 @@ 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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), - [sym__identifier_token] = ACTIONS(1387), - [anon_sym_alias] = ACTIONS(1389), - [anon_sym_global] = ACTIONS(1389), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(2341), - [anon_sym_LPAREN] = ACTIONS(2605), - [anon_sym_ref] = ACTIONS(2345), - [anon_sym_LBRACE] = ACTIONS(2347), - [anon_sym_delegate] = ACTIONS(2349), - [anon_sym_async] = ACTIONS(1047), - [anon_sym_file] = ACTIONS(1389), - [anon_sym_new] = ACTIONS(1061), - [anon_sym_LT] = ACTIONS(2607), - [anon_sym_GT] = ACTIONS(2607), - [anon_sym_where] = ACTIONS(1389), - [anon_sym_notnull] = ACTIONS(1389), - [anon_sym_unmanaged] = ACTIONS(1389), - [anon_sym_checked] = ACTIONS(1067), - [anon_sym_BANG] = ACTIONS(1407), - [anon_sym_TILDE] = ACTIONS(1407), - [anon_sym_PLUS_PLUS] = ACTIONS(1407), - [anon_sym_DASH_DASH] = ACTIONS(1407), - [anon_sym_true] = ACTIONS(1409), - [anon_sym_false] = ACTIONS(1409), - [anon_sym_PLUS] = ACTIONS(1405), - [anon_sym_DASH] = ACTIONS(1405), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), + [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(2591), + [anon_sym_ref] = ACTIONS(2519), + [anon_sym_LBRACE] = ACTIONS(2343), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), + [anon_sym_file] = ACTIONS(29), + [anon_sym_new] = ACTIONS(1059), + [anon_sym_LT] = ACTIONS(2593), + [anon_sym_GT] = ACTIONS(2593), + [anon_sym_where] = ACTIONS(29), + [anon_sym_notnull] = ACTIONS(29), + [anon_sym_unmanaged] = ACTIONS(29), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(1727), + [anon_sym_TILDE] = ACTIONS(1727), + [anon_sym_PLUS_PLUS] = ACTIONS(1727), + [anon_sym_DASH_DASH] = ACTIONS(1727), + [anon_sym_true] = ACTIONS(77), + [anon_sym_false] = ACTIONS(77), + [anon_sym_PLUS] = ACTIONS(1725), + [anon_sym_DASH] = ACTIONS(1725), [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(1407), - [anon_sym_AMP] = ACTIONS(1407), - [anon_sym_GT_EQ] = ACTIONS(2609), - [anon_sym_LT_EQ] = ACTIONS(2609), + [anon_sym_CARET] = ACTIONS(1727), + [anon_sym_AMP] = ACTIONS(1727), + [anon_sym_GT_EQ] = ACTIONS(2595), + [anon_sym_LT_EQ] = ACTIONS(2595), [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(2355), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(2357), - [sym_predefined_type] = ACTIONS(2359), - [anon_sym_unchecked] = ACTIONS(1067), - [anon_sym_yield] = ACTIONS(1389), - [anon_sym_default] = ACTIONS(1423), - [anon_sym_throw] = ACTIONS(1589), - [anon_sym_when] = ACTIONS(1389), - [anon_sym_await] = ACTIONS(1591), - [sym_discard] = ACTIONS(2361), + [anon_sym_scoped] = ACTIONS(2525), + [anon_sym_base] = ACTIONS(87), + [anon_sym_var] = ACTIONS(2351), + [sym_predefined_type] = ACTIONS(2353), + [anon_sym_unchecked] = ACTIONS(1065), + [anon_sym_yield] = ACTIONS(29), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(1527), + [anon_sym_when] = ACTIONS(29), + [anon_sym_await] = ACTIONS(1529), + [sym_discard] = ACTIONS(1081), [anon_sym_DOT_DOT] = ACTIONS(123), - [anon_sym_not] = ACTIONS(2611), - [anon_sym_from] = ACTIONS(1431), - [anon_sym_into] = ACTIONS(1389), - [anon_sym_join] = ACTIONS(1389), - [anon_sym_on] = ACTIONS(1389), - [anon_sym_equals] = ACTIONS(1389), - [anon_sym_let] = ACTIONS(1389), - [anon_sym_orderby] = ACTIONS(1389), - [anon_sym_ascending] = ACTIONS(1389), - [anon_sym_descending] = ACTIONS(1389), - [anon_sym_group] = ACTIONS(1389), - [anon_sym_by] = ACTIONS(1389), - [anon_sym_select] = ACTIONS(1389), + [anon_sym_not] = ACTIONS(2597), + [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(1435), - [anon_sym_typeof] = ACTIONS(1437), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), [anon_sym___makeref] = ACTIONS(133), [anon_sym___reftype] = ACTIONS(135), [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(1445), - [anon_sym_SQUOTE] = ACTIONS(1447), - [sym_integer_literal] = ACTIONS(1445), - [sym_real_literal] = ACTIONS(1449), - [anon_sym_DQUOTE] = ACTIONS(1451), - [sym_verbatim_string_literal] = ACTIONS(1449), - [aux_sym_preproc_if_token1] = ACTIONS(1089), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_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), @@ -113867,104 +113753,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(1455), - [sym_interpolation_verbatim_start] = ACTIONS(1457), - [sym_interpolation_raw_start] = ACTIONS(1459), - [sym_raw_string_start] = ACTIONS(1461), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [sym_interpolation_raw_start] = ACTIONS(155), + [sym_raw_string_start] = ACTIONS(157), }, [436] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(2721), - [sym_alias_qualified_name] = STATE(2764), - [sym__simple_name] = STATE(2256), - [sym_qualified_name] = STATE(2764), - [sym_generic_name] = STATE(2269), - [sym_type] = STATE(2391), - [sym_implicit_type] = STATE(2791), - [sym_array_type] = STATE(2767), - [sym__array_base_type] = STATE(7243), - [sym_nullable_type] = STATE(2768), - [sym_pointer_type] = STATE(2768), - [sym__pointer_base_type] = STATE(7717), - [sym_function_pointer_type] = STATE(2768), - [sym_ref_type] = STATE(2791), - [sym_scoped_type] = STATE(2791), - [sym_tuple_type] = STATE(2769), - [sym_pattern] = STATE(4512), - [sym_constant_pattern] = STATE(4631), - [sym_parenthesized_pattern] = STATE(4631), - [sym_var_pattern] = STATE(4631), - [sym_type_pattern] = STATE(4631), - [sym_list_pattern] = STATE(4631), - [sym_recursive_pattern] = STATE(4631), - [sym_positional_pattern_clause] = STATE(2488), - [sym_property_pattern_clause] = STATE(2561), - [sym_relational_pattern] = STATE(4631), - [sym_negated_pattern] = STATE(4631), - [sym_and_pattern] = STATE(4631), - [sym_or_pattern] = STATE(4631), - [sym_declaration_pattern] = STATE(4631), - [sym_expression] = STATE(5690), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3520), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(4544), - [sym_postfix_unary_expression] = STATE(4545), - [sym_prefix_unary_expression] = STATE(4545), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6154), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(4544), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(4545), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(4544), - [sym_member_access_expression] = STATE(3197), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(4545), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7530), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(4544), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(4544), - [sym_typeof_expression] = STATE(4544), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(3197), - [sym_literal] = STATE(4544), - [sym_character_literal] = STATE(4536), - [sym_string_literal] = STATE(4536), - [sym_raw_string_literal] = STATE(4536), - [sym_boolean_literal] = STATE(4536), - [sym_identifier] = STATE(2226), - [sym__reserved_identifier] = STATE(2240), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(2410), + [sym_alias_qualified_name] = STATE(2402), + [sym__simple_name] = STATE(2185), + [sym_qualified_name] = STATE(2402), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(2228), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(2373), + [sym__array_base_type] = STATE(7083), + [sym_nullable_type] = STATE(2375), + [sym_pointer_type] = STATE(2375), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(2375), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(2377), + [sym_pattern] = STATE(3247), + [sym_constant_pattern] = STATE(3311), + [sym_parenthesized_pattern] = STATE(3311), + [sym_var_pattern] = STATE(3311), + [sym_type_pattern] = STATE(3311), + [sym_list_pattern] = STATE(3311), + [sym_recursive_pattern] = STATE(3311), + [sym_positional_pattern_clause] = STATE(2257), + [sym_property_pattern_clause] = STATE(2289), + [sym_relational_pattern] = STATE(3311), + [sym_negated_pattern] = STATE(3311), + [sym_and_pattern] = STATE(3311), + [sym_or_pattern] = STATE(3311), + [sym_declaration_pattern] = STATE(3311), + [sym_expression] = STATE(5668), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3510), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3275), + [sym_postfix_unary_expression] = STATE(3276), + [sym_prefix_unary_expression] = STATE(3276), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6134), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3275), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3276), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3275), + [sym_member_access_expression] = STATE(2608), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3276), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7425), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(3275), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3275), + [sym_typeof_expression] = STATE(3275), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2608), + [sym_literal] = STATE(3275), + [sym_character_literal] = STATE(3272), + [sym_string_literal] = STATE(3272), + [sym_raw_string_literal] = STATE(3272), + [sym_boolean_literal] = STATE(3272), + [sym_identifier] = STATE(2178), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(436), [sym_preproc_endregion] = STATE(436), [sym_preproc_line] = STATE(436), @@ -113974,78 +113860,78 @@ 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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), - [sym__identifier_token] = ACTIONS(1387), - [anon_sym_alias] = ACTIONS(1389), - [anon_sym_global] = ACTIONS(1389), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(2341), - [anon_sym_LPAREN] = ACTIONS(2605), - [anon_sym_ref] = ACTIONS(2345), - [anon_sym_LBRACE] = ACTIONS(2347), - [anon_sym_delegate] = ACTIONS(2349), - [anon_sym_async] = ACTIONS(1047), - [anon_sym_file] = ACTIONS(1389), - [anon_sym_new] = ACTIONS(1061), - [anon_sym_LT] = ACTIONS(2607), - [anon_sym_GT] = ACTIONS(2607), - [anon_sym_where] = ACTIONS(1389), - [anon_sym_notnull] = ACTIONS(1389), - [anon_sym_unmanaged] = ACTIONS(1389), - [anon_sym_checked] = ACTIONS(1067), - [anon_sym_BANG] = ACTIONS(1407), - [anon_sym_TILDE] = ACTIONS(1407), - [anon_sym_PLUS_PLUS] = ACTIONS(1407), - [anon_sym_DASH_DASH] = ACTIONS(1407), - [anon_sym_true] = ACTIONS(1409), - [anon_sym_false] = ACTIONS(1409), - [anon_sym_PLUS] = ACTIONS(1405), - [anon_sym_DASH] = ACTIONS(1405), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), + [sym__identifier_token] = ACTIONS(25), + [anon_sym_alias] = ACTIONS(29), + [anon_sym_global] = ACTIONS(29), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(2357), + [anon_sym_LPAREN] = ACTIONS(2611), + [anon_sym_ref] = ACTIONS(2341), + [anon_sym_LBRACE] = ACTIONS(2343), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), + [anon_sym_file] = ACTIONS(29), + [anon_sym_new] = ACTIONS(1059), + [anon_sym_LT] = ACTIONS(2613), + [anon_sym_GT] = ACTIONS(2613), + [anon_sym_where] = ACTIONS(29), + [anon_sym_notnull] = ACTIONS(29), + [anon_sym_unmanaged] = ACTIONS(29), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(1793), + [anon_sym_TILDE] = ACTIONS(1793), + [anon_sym_PLUS_PLUS] = ACTIONS(1793), + [anon_sym_DASH_DASH] = ACTIONS(1793), + [anon_sym_true] = ACTIONS(1169), + [anon_sym_false] = ACTIONS(1169), + [anon_sym_PLUS] = ACTIONS(1791), + [anon_sym_DASH] = ACTIONS(1791), [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(1407), - [anon_sym_AMP] = ACTIONS(1407), - [anon_sym_GT_EQ] = ACTIONS(2609), - [anon_sym_LT_EQ] = ACTIONS(2609), + [anon_sym_CARET] = ACTIONS(1793), + [anon_sym_AMP] = ACTIONS(1793), + [anon_sym_GT_EQ] = ACTIONS(2615), + [anon_sym_LT_EQ] = ACTIONS(2615), [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(2355), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(2357), - [sym_predefined_type] = ACTIONS(2359), - [anon_sym_unchecked] = ACTIONS(1067), - [anon_sym_yield] = ACTIONS(1389), - [anon_sym_default] = ACTIONS(1423), - [anon_sym_throw] = ACTIONS(1589), - [anon_sym_when] = ACTIONS(1389), - [anon_sym_await] = ACTIONS(1591), - [sym_discard] = ACTIONS(2361), + [anon_sym_scoped] = ACTIONS(2349), + [anon_sym_base] = ACTIONS(87), + [anon_sym_var] = ACTIONS(2365), + [sym_predefined_type] = ACTIONS(2367), + [anon_sym_unchecked] = ACTIONS(1065), + [anon_sym_yield] = ACTIONS(29), + [anon_sym_default] = ACTIONS(1179), + [anon_sym_throw] = ACTIONS(1527), + [anon_sym_when] = ACTIONS(29), + [anon_sym_await] = ACTIONS(1529), + [sym_discard] = ACTIONS(2369), [anon_sym_DOT_DOT] = ACTIONS(123), - [anon_sym_not] = ACTIONS(2611), - [anon_sym_from] = ACTIONS(1431), - [anon_sym_into] = ACTIONS(1389), - [anon_sym_join] = ACTIONS(1389), - [anon_sym_on] = ACTIONS(1389), - [anon_sym_equals] = ACTIONS(1389), - [anon_sym_let] = ACTIONS(1389), - [anon_sym_orderby] = ACTIONS(1389), - [anon_sym_ascending] = ACTIONS(1389), - [anon_sym_descending] = ACTIONS(1389), - [anon_sym_group] = ACTIONS(1389), - [anon_sym_by] = ACTIONS(1389), - [anon_sym_select] = ACTIONS(1389), + [anon_sym_not] = ACTIONS(2617), + [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(1435), - [anon_sym_typeof] = ACTIONS(1437), + [anon_sym_sizeof] = ACTIONS(1189), + [anon_sym_typeof] = ACTIONS(1191), [anon_sym___makeref] = ACTIONS(133), [anon_sym___reftype] = ACTIONS(135), [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(1445), - [anon_sym_SQUOTE] = ACTIONS(1447), - [sym_integer_literal] = ACTIONS(1445), - [sym_real_literal] = ACTIONS(1449), - [anon_sym_DQUOTE] = ACTIONS(1451), - [sym_verbatim_string_literal] = ACTIONS(1449), - [aux_sym_preproc_if_token1] = ACTIONS(1089), + [sym_null_literal] = ACTIONS(1199), + [anon_sym_SQUOTE] = ACTIONS(1201), + [sym_integer_literal] = ACTIONS(1199), + [sym_real_literal] = ACTIONS(1203), + [anon_sym_DQUOTE] = ACTIONS(1205), + [sym_verbatim_string_literal] = ACTIONS(1203), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -114056,104 +113942,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(1455), - [sym_interpolation_verbatim_start] = ACTIONS(1457), - [sym_interpolation_raw_start] = ACTIONS(1459), - [sym_raw_string_start] = ACTIONS(1461), + [sym_interpolation_regular_start] = ACTIONS(1209), + [sym_interpolation_verbatim_start] = ACTIONS(1211), + [sym_interpolation_raw_start] = ACTIONS(1213), + [sym_raw_string_start] = ACTIONS(1215), }, [437] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(2721), - [sym_alias_qualified_name] = STATE(2764), - [sym__simple_name] = STATE(2256), - [sym_qualified_name] = STATE(2764), - [sym_generic_name] = STATE(2269), - [sym_type] = STATE(2391), - [sym_implicit_type] = STATE(2791), - [sym_array_type] = STATE(2767), - [sym__array_base_type] = STATE(7243), - [sym_nullable_type] = STATE(2768), - [sym_pointer_type] = STATE(2768), - [sym__pointer_base_type] = STATE(7717), - [sym_function_pointer_type] = STATE(2768), - [sym_ref_type] = STATE(2791), - [sym_scoped_type] = STATE(2791), - [sym_tuple_type] = STATE(2769), - [sym_pattern] = STATE(4525), - [sym_constant_pattern] = STATE(4631), - [sym_parenthesized_pattern] = STATE(4631), - [sym_var_pattern] = STATE(4631), - [sym_type_pattern] = STATE(4631), - [sym_list_pattern] = STATE(4631), - [sym_recursive_pattern] = STATE(4631), - [sym_positional_pattern_clause] = STATE(2488), - [sym_property_pattern_clause] = STATE(2561), - [sym_relational_pattern] = STATE(4631), - [sym_negated_pattern] = STATE(4631), - [sym_and_pattern] = STATE(4631), - [sym_or_pattern] = STATE(4631), - [sym_declaration_pattern] = STATE(4631), - [sym_expression] = STATE(5690), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3520), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(4544), - [sym_postfix_unary_expression] = STATE(4545), - [sym_prefix_unary_expression] = STATE(4545), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6154), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(4544), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(4545), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(4544), - [sym_member_access_expression] = STATE(3197), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(4545), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7530), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(4544), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(4544), - [sym_typeof_expression] = STATE(4544), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(3197), - [sym_literal] = STATE(4544), - [sym_character_literal] = STATE(4536), - [sym_string_literal] = STATE(4536), - [sym_raw_string_literal] = STATE(4536), - [sym_boolean_literal] = STATE(4536), - [sym_identifier] = STATE(2226), - [sym__reserved_identifier] = STATE(2240), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(2611), + [sym_alias_qualified_name] = STATE(2402), + [sym__simple_name] = STATE(2184), + [sym_qualified_name] = STATE(2402), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(2236), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(2373), + [sym__array_base_type] = STATE(7083), + [sym_nullable_type] = STATE(2375), + [sym_pointer_type] = STATE(2375), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(2375), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(2377), + [sym_pattern] = STATE(5401), + [sym_constant_pattern] = STATE(3429), + [sym_parenthesized_pattern] = STATE(3429), + [sym_var_pattern] = STATE(3429), + [sym_type_pattern] = STATE(3429), + [sym_list_pattern] = STATE(3429), + [sym_recursive_pattern] = STATE(3429), + [sym_positional_pattern_clause] = STATE(2275), + [sym_property_pattern_clause] = STATE(2315), + [sym_relational_pattern] = STATE(3429), + [sym_negated_pattern] = STATE(3429), + [sym_and_pattern] = STATE(3429), + [sym_or_pattern] = STATE(3429), + [sym_declaration_pattern] = STATE(3429), + [sym_expression] = STATE(5655), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3510), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3397), + [sym_postfix_unary_expression] = STATE(3404), + [sym_prefix_unary_expression] = STATE(3404), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6134), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3397), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3404), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3397), + [sym_member_access_expression] = STATE(2686), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3404), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7425), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(3397), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3397), + [sym_typeof_expression] = STATE(3397), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2686), + [sym_literal] = STATE(3397), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2202), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(437), [sym_preproc_endregion] = STATE(437), [sym_preproc_line] = STATE(437), @@ -114163,242 +114049,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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), - [sym__identifier_token] = ACTIONS(1387), - [anon_sym_alias] = ACTIONS(1389), - [anon_sym_global] = ACTIONS(1389), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(2341), - [anon_sym_LPAREN] = ACTIONS(2605), - [anon_sym_ref] = ACTIONS(2345), - [anon_sym_LBRACE] = ACTIONS(2347), - [anon_sym_delegate] = ACTIONS(2349), - [anon_sym_async] = ACTIONS(1047), - [anon_sym_file] = ACTIONS(1389), - [anon_sym_new] = ACTIONS(1061), - [anon_sym_LT] = ACTIONS(2607), - [anon_sym_GT] = ACTIONS(2607), - [anon_sym_where] = ACTIONS(1389), - [anon_sym_notnull] = ACTIONS(1389), - [anon_sym_unmanaged] = ACTIONS(1389), - [anon_sym_checked] = ACTIONS(1067), - [anon_sym_BANG] = ACTIONS(1407), - [anon_sym_TILDE] = ACTIONS(1407), - [anon_sym_PLUS_PLUS] = ACTIONS(1407), - [anon_sym_DASH_DASH] = ACTIONS(1407), - [anon_sym_true] = ACTIONS(1409), - [anon_sym_false] = ACTIONS(1409), - [anon_sym_PLUS] = ACTIONS(1405), - [anon_sym_DASH] = ACTIONS(1405), - [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(1407), - [anon_sym_AMP] = ACTIONS(1407), - [anon_sym_GT_EQ] = ACTIONS(2609), - [anon_sym_LT_EQ] = ACTIONS(2609), - [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(2355), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(2357), - [sym_predefined_type] = ACTIONS(2359), - [anon_sym_unchecked] = ACTIONS(1067), - [anon_sym_yield] = ACTIONS(1389), - [anon_sym_default] = ACTIONS(1423), - [anon_sym_throw] = ACTIONS(1589), - [anon_sym_when] = ACTIONS(1389), - [anon_sym_await] = ACTIONS(1591), - [sym_discard] = ACTIONS(2361), - [anon_sym_DOT_DOT] = ACTIONS(123), - [anon_sym_not] = ACTIONS(2611), - [anon_sym_from] = ACTIONS(1431), - [anon_sym_into] = ACTIONS(1389), - [anon_sym_join] = ACTIONS(1389), - [anon_sym_on] = ACTIONS(1389), - [anon_sym_equals] = ACTIONS(1389), - [anon_sym_let] = ACTIONS(1389), - [anon_sym_orderby] = ACTIONS(1389), - [anon_sym_ascending] = ACTIONS(1389), - [anon_sym_descending] = ACTIONS(1389), - [anon_sym_group] = ACTIONS(1389), - [anon_sym_by] = ACTIONS(1389), - [anon_sym_select] = ACTIONS(1389), - [anon_sym_stackalloc] = ACTIONS(127), - [anon_sym_sizeof] = ACTIONS(1435), - [anon_sym_typeof] = ACTIONS(1437), - [anon_sym___makeref] = ACTIONS(133), - [anon_sym___reftype] = ACTIONS(135), - [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(1445), - [anon_sym_SQUOTE] = ACTIONS(1447), - [sym_integer_literal] = ACTIONS(1445), - [sym_real_literal] = ACTIONS(1449), - [anon_sym_DQUOTE] = ACTIONS(1451), - [sym_verbatim_string_literal] = ACTIONS(1449), - [aux_sym_preproc_if_token1] = ACTIONS(1089), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1455), - [sym_interpolation_verbatim_start] = ACTIONS(1457), - [sym_interpolation_raw_start] = ACTIONS(1459), - [sym_raw_string_start] = ACTIONS(1461), - }, - [438] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(2426), - [sym_alias_qualified_name] = STATE(2373), - [sym__simple_name] = STATE(2189), - [sym_qualified_name] = STATE(2373), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(2482), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(2378), - [sym__array_base_type] = STATE(7103), - [sym_nullable_type] = STATE(2379), - [sym_pointer_type] = STATE(2379), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(2379), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(2380), - [sym_pattern] = STATE(3236), - [sym_constant_pattern] = STATE(3295), - [sym_parenthesized_pattern] = STATE(3295), - [sym_var_pattern] = STATE(3295), - [sym_type_pattern] = STATE(3295), - [sym_list_pattern] = STATE(3295), - [sym_recursive_pattern] = STATE(3295), - [sym_positional_pattern_clause] = STATE(2251), - [sym_property_pattern_clause] = STATE(2302), - [sym_relational_pattern] = STATE(3295), - [sym_negated_pattern] = STATE(3295), - [sym_and_pattern] = STATE(3295), - [sym_or_pattern] = STATE(3295), - [sym_declaration_pattern] = STATE(3295), - [sym_expression] = STATE(5699), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3520), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3310), - [sym_postfix_unary_expression] = STATE(3312), - [sym_prefix_unary_expression] = STATE(3312), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6154), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3310), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3312), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3310), - [sym_member_access_expression] = STATE(2617), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3312), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7530), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(3310), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3310), - [sym_typeof_expression] = STATE(3310), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2617), - [sym_literal] = STATE(3310), - [sym_character_literal] = STATE(3278), - [sym_string_literal] = STATE(3278), - [sym_raw_string_literal] = STATE(3278), - [sym_boolean_literal] = STATE(3278), - [sym_identifier] = STATE(2258), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), - [sym_preproc_region] = STATE(438), - [sym_preproc_endregion] = STATE(438), - [sym_preproc_line] = STATE(438), - [sym_preproc_pragma] = STATE(438), - [sym_preproc_nullable] = STATE(438), - [sym_preproc_error] = STATE(438), - [sym_preproc_warning] = STATE(438), - [sym_preproc_define] = STATE(438), - [sym_preproc_undef] = STATE(438), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(2365), - [anon_sym_LPAREN] = ACTIONS(2447), - [anon_sym_ref] = ACTIONS(2449), - [anon_sym_LBRACE] = ACTIONS(2371), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_LPAREN] = ACTIONS(2591), + [anon_sym_ref] = ACTIONS(2519), + [anon_sym_LBRACE] = ACTIONS(2343), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1061), - [anon_sym_LT] = ACTIONS(2451), - [anon_sym_GT] = ACTIONS(2451), + [anon_sym_new] = ACTIONS(1059), + [anon_sym_LT] = ACTIONS(2593), + [anon_sym_GT] = ACTIONS(2593), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1067), - [anon_sym_BANG] = ACTIONS(1599), - [anon_sym_TILDE] = ACTIONS(1599), - [anon_sym_PLUS_PLUS] = ACTIONS(1599), - [anon_sym_DASH_DASH] = ACTIONS(1599), - [anon_sym_true] = ACTIONS(1173), - [anon_sym_false] = ACTIONS(1173), - [anon_sym_PLUS] = ACTIONS(1597), - [anon_sym_DASH] = ACTIONS(1597), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(1727), + [anon_sym_TILDE] = ACTIONS(1727), + [anon_sym_PLUS_PLUS] = ACTIONS(1727), + [anon_sym_DASH_DASH] = ACTIONS(1727), + [anon_sym_true] = ACTIONS(77), + [anon_sym_false] = ACTIONS(77), + [anon_sym_PLUS] = ACTIONS(1725), + [anon_sym_DASH] = ACTIONS(1725), [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(1599), - [anon_sym_AMP] = ACTIONS(1599), - [anon_sym_GT_EQ] = ACTIONS(2453), - [anon_sym_LT_EQ] = ACTIONS(2453), + [anon_sym_CARET] = ACTIONS(1727), + [anon_sym_AMP] = ACTIONS(1727), + [anon_sym_GT_EQ] = ACTIONS(2595), + [anon_sym_LT_EQ] = ACTIONS(2595), [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(2377), + [anon_sym_scoped] = ACTIONS(2525), [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(2455), - [sym_predefined_type] = ACTIONS(2381), - [anon_sym_unchecked] = ACTIONS(1067), + [anon_sym_var] = ACTIONS(2351), + [sym_predefined_type] = ACTIONS(2353), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1183), - [anon_sym_throw] = ACTIONS(1589), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(1527), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1591), - [sym_discard] = ACTIONS(2383), + [anon_sym_await] = ACTIONS(1529), + [sym_discard] = ACTIONS(1081), [anon_sym_DOT_DOT] = ACTIONS(123), - [anon_sym_not] = ACTIONS(2457), + [anon_sym_not] = ACTIONS(2597), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -114412,18 +114109,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(1193), - [anon_sym_typeof] = ACTIONS(1195), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), [anon_sym___makeref] = ACTIONS(133), [anon_sym___reftype] = ACTIONS(135), [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(1203), - [anon_sym_SQUOTE] = ACTIONS(1205), - [sym_integer_literal] = ACTIONS(1203), - [sym_real_literal] = ACTIONS(1207), - [anon_sym_DQUOTE] = ACTIONS(1209), - [sym_verbatim_string_literal] = ACTIONS(1207), - [aux_sym_preproc_if_token1] = ACTIONS(1089), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_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), @@ -114434,160 +114131,160 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1213), - [sym_interpolation_verbatim_start] = ACTIONS(1215), - [sym_interpolation_raw_start] = ACTIONS(1217), - [sym_raw_string_start] = ACTIONS(1219), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [sym_interpolation_raw_start] = ACTIONS(155), + [sym_raw_string_start] = ACTIONS(157), }, - [439] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(2421), - [sym_alias_qualified_name] = STATE(2373), - [sym__simple_name] = STATE(2191), - [sym_qualified_name] = STATE(2373), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(2462), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(2378), - [sym__array_base_type] = STATE(7103), - [sym_nullable_type] = STATE(2379), - [sym_pointer_type] = STATE(2379), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(2379), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(2380), - [sym_pattern] = STATE(5511), - [sym_constant_pattern] = STATE(3486), - [sym_parenthesized_pattern] = STATE(3486), - [sym_var_pattern] = STATE(3486), - [sym_type_pattern] = STATE(3486), - [sym_list_pattern] = STATE(3486), - [sym_recursive_pattern] = STATE(3486), - [sym_positional_pattern_clause] = STATE(2276), - [sym_property_pattern_clause] = STATE(2330), - [sym_relational_pattern] = STATE(3486), - [sym_negated_pattern] = STATE(3486), - [sym_and_pattern] = STATE(3486), - [sym_or_pattern] = STATE(3486), - [sym_declaration_pattern] = STATE(3486), - [sym_expression] = STATE(5692), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3520), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3455), - [sym_postfix_unary_expression] = STATE(3469), - [sym_prefix_unary_expression] = STATE(3469), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6154), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3455), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3469), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3455), - [sym_member_access_expression] = STATE(2719), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3469), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7530), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(3455), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3455), - [sym_typeof_expression] = STATE(3455), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2719), - [sym_literal] = STATE(3455), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2258), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), - [sym_preproc_region] = STATE(439), - [sym_preproc_endregion] = STATE(439), - [sym_preproc_line] = STATE(439), - [sym_preproc_pragma] = STATE(439), - [sym_preproc_nullable] = STATE(439), - [sym_preproc_error] = STATE(439), - [sym_preproc_warning] = STATE(439), - [sym_preproc_define] = STATE(439), - [sym_preproc_undef] = STATE(439), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [438] = { + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(2428), + [sym_alias_qualified_name] = STATE(2402), + [sym__simple_name] = STATE(2184), + [sym_qualified_name] = STATE(2402), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(2236), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(2373), + [sym__array_base_type] = STATE(7083), + [sym_nullable_type] = STATE(2375), + [sym_pointer_type] = STATE(2375), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(2375), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(2377), + [sym_pattern] = STATE(4669), + [sym_constant_pattern] = STATE(3429), + [sym_parenthesized_pattern] = STATE(3429), + [sym_var_pattern] = STATE(3429), + [sym_type_pattern] = STATE(3429), + [sym_list_pattern] = STATE(3429), + [sym_recursive_pattern] = STATE(3429), + [sym_positional_pattern_clause] = STATE(2275), + [sym_property_pattern_clause] = STATE(2315), + [sym_relational_pattern] = STATE(3429), + [sym_negated_pattern] = STATE(3429), + [sym_and_pattern] = STATE(3429), + [sym_or_pattern] = STATE(3429), + [sym_declaration_pattern] = STATE(3429), + [sym_expression] = STATE(5690), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3510), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3397), + [sym_postfix_unary_expression] = STATE(3404), + [sym_prefix_unary_expression] = STATE(3404), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6134), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3397), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3404), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3397), + [sym_member_access_expression] = STATE(2686), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3404), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7425), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(3397), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3397), + [sym_typeof_expression] = STATE(3397), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2686), + [sym_literal] = STATE(3397), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2178), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), + [sym_preproc_region] = STATE(438), + [sym_preproc_endregion] = STATE(438), + [sym_preproc_line] = STATE(438), + [sym_preproc_pragma] = STATE(438), + [sym_preproc_nullable] = STATE(438), + [sym_preproc_error] = STATE(438), + [sym_preproc_warning] = STATE(438), + [sym_preproc_define] = STATE(438), + [sym_preproc_undef] = STATE(438), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1049), - [anon_sym_LPAREN] = ACTIONS(2587), - [anon_sym_ref] = ACTIONS(2449), - [anon_sym_LBRACE] = ACTIONS(2371), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_LPAREN] = ACTIONS(2385), + [anon_sym_ref] = ACTIONS(2341), + [anon_sym_LBRACE] = ACTIONS(2343), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1061), - [anon_sym_LT] = ACTIONS(2589), - [anon_sym_GT] = ACTIONS(2589), + [anon_sym_new] = ACTIONS(1059), + [anon_sym_LT] = ACTIONS(2387), + [anon_sym_GT] = ACTIONS(2387), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1067), - [anon_sym_BANG] = ACTIONS(1549), - [anon_sym_TILDE] = ACTIONS(1549), - [anon_sym_PLUS_PLUS] = ACTIONS(1549), - [anon_sym_DASH_DASH] = ACTIONS(1549), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(1375), + [anon_sym_TILDE] = ACTIONS(1375), + [anon_sym_PLUS_PLUS] = ACTIONS(1375), + [anon_sym_DASH_DASH] = ACTIONS(1375), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1547), - [anon_sym_DASH] = ACTIONS(1547), + [anon_sym_PLUS] = ACTIONS(1373), + [anon_sym_DASH] = ACTIONS(1373), [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(1549), - [anon_sym_AMP] = ACTIONS(1549), - [anon_sym_GT_EQ] = ACTIONS(2591), - [anon_sym_LT_EQ] = ACTIONS(2591), + [anon_sym_CARET] = ACTIONS(1375), + [anon_sym_AMP] = ACTIONS(1375), + [anon_sym_GT_EQ] = ACTIONS(2389), + [anon_sym_LT_EQ] = ACTIONS(2389), [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(2377), + [anon_sym_scoped] = ACTIONS(2349), [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(2501), - [sym_predefined_type] = ACTIONS(2435), - [anon_sym_unchecked] = ACTIONS(1067), + [anon_sym_var] = ACTIONS(2351), + [sym_predefined_type] = ACTIONS(2353), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1589), + [anon_sym_throw] = ACTIONS(1527), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1591), - [sym_discard] = ACTIONS(1083), + [anon_sym_await] = ACTIONS(1529), + [sym_discard] = ACTIONS(1081), [anon_sym_DOT_DOT] = ACTIONS(123), - [anon_sym_not] = ACTIONS(2593), + [anon_sym_not] = ACTIONS(2391), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -114612,7 +114309,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(1089), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -114628,99 +114325,288 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_interpolation_raw_start] = ACTIONS(155), [sym_raw_string_start] = ACTIONS(157), }, + [439] = { + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(2883), + [sym_alias_qualified_name] = STATE(2402), + [sym__simple_name] = STATE(2323), + [sym_qualified_name] = STATE(2402), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(2512), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(2373), + [sym__array_base_type] = STATE(7083), + [sym_nullable_type] = STATE(2375), + [sym_pointer_type] = STATE(2375), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(2375), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(2377), + [sym_pattern] = STATE(4132), + [sym_constant_pattern] = STATE(4146), + [sym_parenthesized_pattern] = STATE(4146), + [sym_var_pattern] = STATE(4146), + [sym_type_pattern] = STATE(4146), + [sym_list_pattern] = STATE(4146), + [sym_recursive_pattern] = STATE(4146), + [sym_positional_pattern_clause] = STATE(2566), + [sym_property_pattern_clause] = STATE(2714), + [sym_relational_pattern] = STATE(4146), + [sym_negated_pattern] = STATE(4146), + [sym_and_pattern] = STATE(4146), + [sym_or_pattern] = STATE(4146), + [sym_declaration_pattern] = STATE(4146), + [sym_expression] = STATE(5699), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3510), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(4128), + [sym_postfix_unary_expression] = STATE(4129), + [sym_prefix_unary_expression] = STATE(4129), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6134), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(4128), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(4129), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(4128), + [sym_member_access_expression] = STATE(3066), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(4129), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7425), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(4128), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(4128), + [sym_typeof_expression] = STATE(4128), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(3066), + [sym_literal] = STATE(4128), + [sym_character_literal] = STATE(3037), + [sym_string_literal] = STATE(3037), + [sym_raw_string_literal] = STATE(3037), + [sym_boolean_literal] = STATE(3037), + [sym_identifier] = STATE(2178), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), + [sym_preproc_region] = STATE(439), + [sym_preproc_endregion] = STATE(439), + [sym_preproc_line] = STATE(439), + [sym_preproc_pragma] = STATE(439), + [sym_preproc_nullable] = STATE(439), + [sym_preproc_error] = STATE(439), + [sym_preproc_warning] = STATE(439), + [sym_preproc_define] = STATE(439), + [sym_preproc_undef] = STATE(439), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), + [sym__identifier_token] = ACTIONS(25), + [anon_sym_alias] = ACTIONS(29), + [anon_sym_global] = ACTIONS(29), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(2449), + [anon_sym_LPAREN] = ACTIONS(2599), + [anon_sym_ref] = ACTIONS(2341), + [anon_sym_LBRACE] = ACTIONS(2343), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), + [anon_sym_file] = ACTIONS(29), + [anon_sym_new] = ACTIONS(1059), + [anon_sym_LT] = ACTIONS(2601), + [anon_sym_GT] = ACTIONS(2601), + [anon_sym_where] = ACTIONS(29), + [anon_sym_notnull] = ACTIONS(29), + [anon_sym_unmanaged] = ACTIONS(29), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(1939), + [anon_sym_TILDE] = ACTIONS(1939), + [anon_sym_PLUS_PLUS] = ACTIONS(1939), + [anon_sym_DASH_DASH] = ACTIONS(1939), + [anon_sym_true] = ACTIONS(1257), + [anon_sym_false] = ACTIONS(1257), + [anon_sym_PLUS] = ACTIONS(1937), + [anon_sym_DASH] = ACTIONS(1937), + [anon_sym_STAR] = ACTIONS(81), + [anon_sym_CARET] = ACTIONS(1939), + [anon_sym_AMP] = ACTIONS(1939), + [anon_sym_GT_EQ] = ACTIONS(2603), + [anon_sym_LT_EQ] = ACTIONS(2603), + [anon_sym_this] = ACTIONS(83), + [anon_sym_scoped] = ACTIONS(2349), + [anon_sym_base] = ACTIONS(87), + [anon_sym_var] = ACTIONS(2605), + [sym_predefined_type] = ACTIONS(2459), + [anon_sym_unchecked] = ACTIONS(1065), + [anon_sym_yield] = ACTIONS(29), + [anon_sym_default] = ACTIONS(1267), + [anon_sym_throw] = ACTIONS(1527), + [anon_sym_when] = ACTIONS(29), + [anon_sym_await] = ACTIONS(1529), + [sym_discard] = ACTIONS(2461), + [anon_sym_DOT_DOT] = ACTIONS(123), + [anon_sym_not] = ACTIONS(2607), + [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(1277), + [anon_sym_typeof] = ACTIONS(1279), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), + [sym_null_literal] = ACTIONS(1287), + [anon_sym_SQUOTE] = ACTIONS(1289), + [sym_integer_literal] = ACTIONS(1287), + [sym_real_literal] = ACTIONS(1291), + [anon_sym_DQUOTE] = ACTIONS(1293), + [sym_verbatim_string_literal] = ACTIONS(1291), + [aux_sym_preproc_if_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(1297), + [sym_interpolation_verbatim_start] = ACTIONS(1299), + [sym_interpolation_raw_start] = ACTIONS(1301), + [sym_raw_string_start] = ACTIONS(1303), + }, [440] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(2421), - [sym_alias_qualified_name] = STATE(2373), - [sym__simple_name] = STATE(2191), - [sym_qualified_name] = STATE(2373), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(2462), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(2378), - [sym__array_base_type] = STATE(7103), - [sym_nullable_type] = STATE(2379), - [sym_pointer_type] = STATE(2379), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(2379), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(2380), - [sym_pattern] = STATE(3432), - [sym_constant_pattern] = STATE(3486), - [sym_parenthesized_pattern] = STATE(3486), - [sym_var_pattern] = STATE(3486), - [sym_type_pattern] = STATE(3486), - [sym_list_pattern] = STATE(3486), - [sym_recursive_pattern] = STATE(3486), - [sym_positional_pattern_clause] = STATE(2276), - [sym_property_pattern_clause] = STATE(2330), - [sym_relational_pattern] = STATE(3486), - [sym_negated_pattern] = STATE(3486), - [sym_and_pattern] = STATE(3486), - [sym_or_pattern] = STATE(3486), - [sym_declaration_pattern] = STATE(3486), - [sym_expression] = STATE(5692), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3520), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3455), - [sym_postfix_unary_expression] = STATE(3469), - [sym_prefix_unary_expression] = STATE(3469), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6154), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3455), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3469), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3455), - [sym_member_access_expression] = STATE(2719), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3469), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7530), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(3455), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3455), - [sym_typeof_expression] = STATE(3455), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2719), - [sym_literal] = STATE(3455), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2258), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(2853), + [sym_alias_qualified_name] = STATE(2402), + [sym__simple_name] = STATE(2288), + [sym_qualified_name] = STATE(2402), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(2470), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(2373), + [sym__array_base_type] = STATE(7083), + [sym_nullable_type] = STATE(2375), + [sym_pointer_type] = STATE(2375), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(2375), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(2377), + [sym_pattern] = STATE(3796), + [sym_constant_pattern] = STATE(3801), + [sym_parenthesized_pattern] = STATE(3801), + [sym_var_pattern] = STATE(3801), + [sym_type_pattern] = STATE(3801), + [sym_list_pattern] = STATE(3801), + [sym_recursive_pattern] = STATE(3801), + [sym_positional_pattern_clause] = STATE(2558), + [sym_property_pattern_clause] = STATE(2623), + [sym_relational_pattern] = STATE(3801), + [sym_negated_pattern] = STATE(3801), + [sym_and_pattern] = STATE(3801), + [sym_or_pattern] = STATE(3801), + [sym_declaration_pattern] = STATE(3801), + [sym_expression] = STATE(5661), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3510), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3790), + [sym_postfix_unary_expression] = STATE(3791), + [sym_prefix_unary_expression] = STATE(3791), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6134), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3790), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3791), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3790), + [sym_member_access_expression] = STATE(2896), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3791), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7425), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(3790), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3790), + [sym_typeof_expression] = STATE(3790), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2896), + [sym_literal] = STATE(3790), + [sym_character_literal] = STATE(3843), + [sym_string_literal] = STATE(3843), + [sym_raw_string_literal] = STATE(3843), + [sym_boolean_literal] = STATE(3843), + [sym_identifier] = STATE(2178), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(440), [sym_preproc_endregion] = STATE(440), [sym_preproc_line] = STATE(440), @@ -114730,53 +114616,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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1049), - [anon_sym_LPAREN] = ACTIONS(2587), - [anon_sym_ref] = ACTIONS(2449), - [anon_sym_LBRACE] = ACTIONS(2371), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(2473), + [anon_sym_LPAREN] = ACTIONS(2475), + [anon_sym_ref] = ACTIONS(2341), + [anon_sym_LBRACE] = ACTIONS(2343), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1061), - [anon_sym_LT] = ACTIONS(2589), - [anon_sym_GT] = ACTIONS(2589), + [anon_sym_new] = ACTIONS(1059), + [anon_sym_LT] = ACTIONS(2477), + [anon_sym_GT] = ACTIONS(2477), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1067), - [anon_sym_BANG] = ACTIONS(1549), - [anon_sym_TILDE] = ACTIONS(1549), - [anon_sym_PLUS_PLUS] = ACTIONS(1549), - [anon_sym_DASH_DASH] = ACTIONS(1549), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1547), - [anon_sym_DASH] = ACTIONS(1547), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(1763), + [anon_sym_TILDE] = ACTIONS(1763), + [anon_sym_PLUS_PLUS] = ACTIONS(1763), + [anon_sym_DASH_DASH] = ACTIONS(1763), + [anon_sym_true] = ACTIONS(1673), + [anon_sym_false] = ACTIONS(1673), + [anon_sym_PLUS] = ACTIONS(1761), + [anon_sym_DASH] = ACTIONS(1761), [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(1549), - [anon_sym_AMP] = ACTIONS(1549), - [anon_sym_GT_EQ] = ACTIONS(2591), - [anon_sym_LT_EQ] = ACTIONS(2591), + [anon_sym_CARET] = ACTIONS(1763), + [anon_sym_AMP] = ACTIONS(1763), + [anon_sym_GT_EQ] = ACTIONS(2479), + [anon_sym_LT_EQ] = ACTIONS(2479), [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(2377), + [anon_sym_scoped] = ACTIONS(2349), [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(2501), - [sym_predefined_type] = ACTIONS(2435), - [anon_sym_unchecked] = ACTIONS(1067), + [anon_sym_var] = ACTIONS(2481), + [sym_predefined_type] = ACTIONS(2483), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1589), + [anon_sym_default] = ACTIONS(1683), + [anon_sym_throw] = ACTIONS(1527), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1591), - [sym_discard] = ACTIONS(1083), + [anon_sym_await] = ACTIONS(1529), + [sym_discard] = ACTIONS(2485), [anon_sym_DOT_DOT] = ACTIONS(123), - [anon_sym_not] = ACTIONS(2593), + [anon_sym_not] = ACTIONS(2487), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -114790,18 +114676,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(129), - [anon_sym_typeof] = ACTIONS(131), + [anon_sym_sizeof] = ACTIONS(1693), + [anon_sym_typeof] = ACTIONS(1695), [anon_sym___makeref] = ACTIONS(133), [anon_sym___reftype] = ACTIONS(135), [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1089), + [sym_null_literal] = ACTIONS(1703), + [anon_sym_SQUOTE] = ACTIONS(1705), + [sym_integer_literal] = ACTIONS(1703), + [sym_real_literal] = ACTIONS(1707), + [anon_sym_DQUOTE] = ACTIONS(1709), + [sym_verbatim_string_literal] = ACTIONS(1707), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -114812,104 +114698,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(1713), + [sym_interpolation_verbatim_start] = ACTIONS(1715), + [sym_interpolation_raw_start] = ACTIONS(1717), + [sym_raw_string_start] = ACTIONS(1719), }, [441] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(2421), - [sym_alias_qualified_name] = STATE(2373), - [sym__simple_name] = STATE(2191), - [sym_qualified_name] = STATE(2373), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(2462), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(2378), - [sym__array_base_type] = STATE(7103), - [sym_nullable_type] = STATE(2379), - [sym_pointer_type] = STATE(2379), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(2379), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(2380), - [sym_pattern] = STATE(5524), - [sym_constant_pattern] = STATE(3486), - [sym_parenthesized_pattern] = STATE(3486), - [sym_var_pattern] = STATE(3486), - [sym_type_pattern] = STATE(3486), - [sym_list_pattern] = STATE(3486), - [sym_recursive_pattern] = STATE(3486), - [sym_positional_pattern_clause] = STATE(2276), - [sym_property_pattern_clause] = STATE(2330), - [sym_relational_pattern] = STATE(3486), - [sym_negated_pattern] = STATE(3486), - [sym_and_pattern] = STATE(3486), - [sym_or_pattern] = STATE(3486), - [sym_declaration_pattern] = STATE(3486), - [sym_expression] = STATE(5692), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3520), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3455), - [sym_postfix_unary_expression] = STATE(3469), - [sym_prefix_unary_expression] = STATE(3469), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6154), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3455), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3469), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3455), - [sym_member_access_expression] = STATE(2719), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3469), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7530), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(3455), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3455), - [sym_typeof_expression] = STATE(3455), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2719), - [sym_literal] = STATE(3455), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2258), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(2611), + [sym_alias_qualified_name] = STATE(2402), + [sym__simple_name] = STATE(2184), + [sym_qualified_name] = STATE(2402), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(2235), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(2373), + [sym__array_base_type] = STATE(7083), + [sym_nullable_type] = STATE(2375), + [sym_pointer_type] = STATE(2375), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(2375), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(2377), + [sym_pattern] = STATE(5458), + [sym_constant_pattern] = STATE(3429), + [sym_parenthesized_pattern] = STATE(3429), + [sym_var_pattern] = STATE(3429), + [sym_type_pattern] = STATE(3429), + [sym_list_pattern] = STATE(3429), + [sym_recursive_pattern] = STATE(3429), + [sym_positional_pattern_clause] = STATE(2275), + [sym_property_pattern_clause] = STATE(2315), + [sym_relational_pattern] = STATE(3429), + [sym_negated_pattern] = STATE(3429), + [sym_and_pattern] = STATE(3429), + [sym_or_pattern] = STATE(3429), + [sym_declaration_pattern] = STATE(3429), + [sym_expression] = STATE(5655), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3510), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3397), + [sym_postfix_unary_expression] = STATE(3404), + [sym_prefix_unary_expression] = STATE(3404), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6134), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3397), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3404), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3397), + [sym_member_access_expression] = STATE(2686), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3404), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7425), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(3397), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3397), + [sym_typeof_expression] = STATE(3397), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2686), + [sym_literal] = STATE(3397), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2202), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(441), [sym_preproc_endregion] = STATE(441), [sym_preproc_line] = STATE(441), @@ -114919,53 +114805,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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1049), - [anon_sym_LPAREN] = ACTIONS(2587), - [anon_sym_ref] = ACTIONS(2449), - [anon_sym_LBRACE] = ACTIONS(2371), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_LPAREN] = ACTIONS(2591), + [anon_sym_ref] = ACTIONS(2519), + [anon_sym_LBRACE] = ACTIONS(2343), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1061), - [anon_sym_LT] = ACTIONS(2589), - [anon_sym_GT] = ACTIONS(2589), + [anon_sym_new] = ACTIONS(1059), + [anon_sym_LT] = ACTIONS(2593), + [anon_sym_GT] = ACTIONS(2593), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1067), - [anon_sym_BANG] = ACTIONS(1549), - [anon_sym_TILDE] = ACTIONS(1549), - [anon_sym_PLUS_PLUS] = ACTIONS(1549), - [anon_sym_DASH_DASH] = ACTIONS(1549), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(1727), + [anon_sym_TILDE] = ACTIONS(1727), + [anon_sym_PLUS_PLUS] = ACTIONS(1727), + [anon_sym_DASH_DASH] = ACTIONS(1727), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1547), - [anon_sym_DASH] = ACTIONS(1547), + [anon_sym_PLUS] = ACTIONS(1725), + [anon_sym_DASH] = ACTIONS(1725), [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(1549), - [anon_sym_AMP] = ACTIONS(1549), - [anon_sym_GT_EQ] = ACTIONS(2591), - [anon_sym_LT_EQ] = ACTIONS(2591), + [anon_sym_CARET] = ACTIONS(1727), + [anon_sym_AMP] = ACTIONS(1727), + [anon_sym_GT_EQ] = ACTIONS(2595), + [anon_sym_LT_EQ] = ACTIONS(2595), [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(2377), + [anon_sym_scoped] = ACTIONS(2525), [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(2501), - [sym_predefined_type] = ACTIONS(2435), - [anon_sym_unchecked] = ACTIONS(1067), + [anon_sym_var] = ACTIONS(2351), + [sym_predefined_type] = ACTIONS(2353), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1589), + [anon_sym_throw] = ACTIONS(1527), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1591), - [sym_discard] = ACTIONS(1083), + [anon_sym_await] = ACTIONS(1529), + [sym_discard] = ACTIONS(1081), [anon_sym_DOT_DOT] = ACTIONS(123), - [anon_sym_not] = ACTIONS(2593), + [anon_sym_not] = ACTIONS(2597), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -114990,7 +114876,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(1089), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -115007,98 +114893,98 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [442] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(2426), - [sym_alias_qualified_name] = STATE(2373), - [sym__simple_name] = STATE(2189), - [sym_qualified_name] = STATE(2373), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(2482), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(2378), - [sym__array_base_type] = STATE(7103), - [sym_nullable_type] = STATE(2379), - [sym_pointer_type] = STATE(2379), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(2379), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(2380), - [sym_pattern] = STATE(5177), - [sym_constant_pattern] = STATE(3295), - [sym_parenthesized_pattern] = STATE(3295), - [sym_var_pattern] = STATE(3295), - [sym_type_pattern] = STATE(3295), - [sym_list_pattern] = STATE(3295), - [sym_recursive_pattern] = STATE(3295), - [sym_positional_pattern_clause] = STATE(2251), - [sym_property_pattern_clause] = STATE(2302), - [sym_relational_pattern] = STATE(3295), - [sym_negated_pattern] = STATE(3295), - [sym_and_pattern] = STATE(3295), - [sym_or_pattern] = STATE(3295), - [sym_declaration_pattern] = STATE(3295), - [sym_expression] = STATE(5699), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3520), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3310), - [sym_postfix_unary_expression] = STATE(3312), - [sym_prefix_unary_expression] = STATE(3312), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6154), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3310), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3312), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3310), - [sym_member_access_expression] = STATE(2617), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3312), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7530), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(3310), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3310), - [sym_typeof_expression] = STATE(3310), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2617), - [sym_literal] = STATE(3310), - [sym_character_literal] = STATE(3278), - [sym_string_literal] = STATE(3278), - [sym_raw_string_literal] = STATE(3278), - [sym_boolean_literal] = STATE(3278), - [sym_identifier] = STATE(2258), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(2706), + [sym_alias_qualified_name] = STATE(2821), + [sym__simple_name] = STATE(2268), + [sym_qualified_name] = STATE(2821), + [sym_generic_name] = STATE(2262), + [sym_type] = STATE(2394), + [sym_implicit_type] = STATE(2701), + [sym_array_type] = STATE(2822), + [sym__array_base_type] = STATE(7081), + [sym_nullable_type] = STATE(2823), + [sym_pointer_type] = STATE(2823), + [sym__pointer_base_type] = STATE(7400), + [sym_function_pointer_type] = STATE(2823), + [sym_ref_type] = STATE(2701), + [sym_scoped_type] = STATE(2701), + [sym_tuple_type] = STATE(2825), + [sym_pattern] = STATE(4548), + [sym_constant_pattern] = STATE(4727), + [sym_parenthesized_pattern] = STATE(4727), + [sym_var_pattern] = STATE(4727), + [sym_type_pattern] = STATE(4727), + [sym_list_pattern] = STATE(4727), + [sym_recursive_pattern] = STATE(4727), + [sym_positional_pattern_clause] = STATE(2480), + [sym_property_pattern_clause] = STATE(2550), + [sym_relational_pattern] = STATE(4727), + [sym_negated_pattern] = STATE(4727), + [sym_and_pattern] = STATE(4727), + [sym_or_pattern] = STATE(4727), + [sym_declaration_pattern] = STATE(4727), + [sym_expression] = STATE(5686), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3510), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(4509), + [sym_postfix_unary_expression] = STATE(4510), + [sym_prefix_unary_expression] = STATE(4510), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6134), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(4509), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(4510), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(4509), + [sym_member_access_expression] = STATE(3207), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(4510), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7425), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(4509), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(4509), + [sym_typeof_expression] = STATE(4509), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(3207), + [sym_literal] = STATE(4509), + [sym_character_literal] = STATE(4575), + [sym_string_literal] = STATE(4575), + [sym_raw_string_literal] = STATE(4575), + [sym_boolean_literal] = STATE(4575), + [sym_identifier] = STATE(2219), + [sym__reserved_identifier] = STATE(2229), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(442), [sym_preproc_endregion] = STATE(442), [sym_preproc_line] = STATE(442), @@ -115108,78 +114994,78 @@ 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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), - [sym__identifier_token] = ACTIONS(25), - [anon_sym_alias] = ACTIONS(29), - [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(2365), - [anon_sym_LPAREN] = ACTIONS(2447), - [anon_sym_ref] = ACTIONS(2449), - [anon_sym_LBRACE] = ACTIONS(2371), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), - [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1061), - [anon_sym_LT] = ACTIONS(2451), - [anon_sym_GT] = ACTIONS(2451), - [anon_sym_where] = ACTIONS(29), - [anon_sym_notnull] = ACTIONS(29), - [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1067), - [anon_sym_BANG] = ACTIONS(1599), - [anon_sym_TILDE] = ACTIONS(1599), - [anon_sym_PLUS_PLUS] = ACTIONS(1599), - [anon_sym_DASH_DASH] = ACTIONS(1599), - [anon_sym_true] = ACTIONS(1173), - [anon_sym_false] = ACTIONS(1173), - [anon_sym_PLUS] = ACTIONS(1597), - [anon_sym_DASH] = ACTIONS(1597), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), + [sym__identifier_token] = ACTIONS(1385), + [anon_sym_alias] = ACTIONS(1387), + [anon_sym_global] = ACTIONS(1387), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(2401), + [anon_sym_LPAREN] = ACTIONS(2489), + [anon_sym_ref] = ACTIONS(2405), + [anon_sym_LBRACE] = ACTIONS(2407), + [anon_sym_delegate] = ACTIONS(2409), + [anon_sym_async] = ACTIONS(1045), + [anon_sym_file] = ACTIONS(1387), + [anon_sym_new] = ACTIONS(1059), + [anon_sym_LT] = ACTIONS(2491), + [anon_sym_GT] = ACTIONS(2491), + [anon_sym_where] = ACTIONS(1387), + [anon_sym_notnull] = ACTIONS(1387), + [anon_sym_unmanaged] = ACTIONS(1387), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(1405), + [anon_sym_TILDE] = ACTIONS(1405), + [anon_sym_PLUS_PLUS] = ACTIONS(1405), + [anon_sym_DASH_DASH] = ACTIONS(1405), + [anon_sym_true] = ACTIONS(1407), + [anon_sym_false] = ACTIONS(1407), + [anon_sym_PLUS] = ACTIONS(1403), + [anon_sym_DASH] = ACTIONS(1403), [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(1599), - [anon_sym_AMP] = ACTIONS(1599), - [anon_sym_GT_EQ] = ACTIONS(2453), - [anon_sym_LT_EQ] = ACTIONS(2453), + [anon_sym_CARET] = ACTIONS(1405), + [anon_sym_AMP] = ACTIONS(1405), + [anon_sym_GT_EQ] = ACTIONS(2493), + [anon_sym_LT_EQ] = ACTIONS(2493), [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(2377), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(2455), - [sym_predefined_type] = ACTIONS(2381), - [anon_sym_unchecked] = ACTIONS(1067), - [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1183), - [anon_sym_throw] = ACTIONS(1589), - [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1591), - [sym_discard] = ACTIONS(2383), + [anon_sym_scoped] = ACTIONS(2415), + [anon_sym_base] = ACTIONS(87), + [anon_sym_var] = ACTIONS(2417), + [sym_predefined_type] = ACTIONS(2419), + [anon_sym_unchecked] = ACTIONS(1065), + [anon_sym_yield] = ACTIONS(1387), + [anon_sym_default] = ACTIONS(1421), + [anon_sym_throw] = ACTIONS(1527), + [anon_sym_when] = ACTIONS(1387), + [anon_sym_await] = ACTIONS(1529), + [sym_discard] = ACTIONS(2421), [anon_sym_DOT_DOT] = ACTIONS(123), - [anon_sym_not] = ACTIONS(2457), - [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(2495), + [anon_sym_from] = ACTIONS(1429), + [anon_sym_into] = ACTIONS(1387), + [anon_sym_join] = ACTIONS(1387), + [anon_sym_on] = ACTIONS(1387), + [anon_sym_equals] = ACTIONS(1387), + [anon_sym_let] = ACTIONS(1387), + [anon_sym_orderby] = ACTIONS(1387), + [anon_sym_ascending] = ACTIONS(1387), + [anon_sym_descending] = ACTIONS(1387), + [anon_sym_group] = ACTIONS(1387), + [anon_sym_by] = ACTIONS(1387), + [anon_sym_select] = ACTIONS(1387), [anon_sym_stackalloc] = ACTIONS(127), - [anon_sym_sizeof] = ACTIONS(1193), - [anon_sym_typeof] = ACTIONS(1195), + [anon_sym_sizeof] = ACTIONS(1433), + [anon_sym_typeof] = ACTIONS(1435), [anon_sym___makeref] = ACTIONS(133), [anon_sym___reftype] = ACTIONS(135), [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(1203), - [anon_sym_SQUOTE] = ACTIONS(1205), - [sym_integer_literal] = ACTIONS(1203), - [sym_real_literal] = ACTIONS(1207), - [anon_sym_DQUOTE] = ACTIONS(1209), - [sym_verbatim_string_literal] = ACTIONS(1207), - [aux_sym_preproc_if_token1] = ACTIONS(1089), + [sym_null_literal] = ACTIONS(1443), + [anon_sym_SQUOTE] = ACTIONS(1445), + [sym_integer_literal] = ACTIONS(1443), + [sym_real_literal] = ACTIONS(1447), + [anon_sym_DQUOTE] = ACTIONS(1449), + [sym_verbatim_string_literal] = ACTIONS(1447), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -115190,104 +115076,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(1213), - [sym_interpolation_verbatim_start] = ACTIONS(1215), - [sym_interpolation_raw_start] = ACTIONS(1217), - [sym_raw_string_start] = ACTIONS(1219), + [sym_interpolation_regular_start] = ACTIONS(1453), + [sym_interpolation_verbatim_start] = ACTIONS(1455), + [sym_interpolation_raw_start] = ACTIONS(1457), + [sym_raw_string_start] = ACTIONS(1459), }, [443] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(2421), - [sym_alias_qualified_name] = STATE(2373), - [sym__simple_name] = STATE(2191), - [sym_qualified_name] = STATE(2373), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(2242), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(2378), - [sym__array_base_type] = STATE(7103), - [sym_nullable_type] = STATE(2379), - [sym_pointer_type] = STATE(2379), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(2379), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(2380), - [sym_pattern] = STATE(4559), - [sym_constant_pattern] = STATE(3486), - [sym_parenthesized_pattern] = STATE(3486), - [sym_var_pattern] = STATE(3486), - [sym_type_pattern] = STATE(3486), - [sym_list_pattern] = STATE(3486), - [sym_recursive_pattern] = STATE(3486), - [sym_positional_pattern_clause] = STATE(2276), - [sym_property_pattern_clause] = STATE(2330), - [sym_relational_pattern] = STATE(3486), - [sym_negated_pattern] = STATE(3486), - [sym_and_pattern] = STATE(3486), - [sym_or_pattern] = STATE(3486), - [sym_declaration_pattern] = STATE(3486), - [sym_expression] = STATE(5708), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3520), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3455), - [sym_postfix_unary_expression] = STATE(3469), - [sym_prefix_unary_expression] = STATE(3469), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6154), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3455), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3469), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3455), - [sym_member_access_expression] = STATE(2719), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3469), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7530), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(3455), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3455), - [sym_typeof_expression] = STATE(3455), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2719), - [sym_literal] = STATE(3455), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2186), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(2410), + [sym_alias_qualified_name] = STATE(2402), + [sym__simple_name] = STATE(2185), + [sym_qualified_name] = STATE(2402), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(2232), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(2373), + [sym__array_base_type] = STATE(7083), + [sym_nullable_type] = STATE(2375), + [sym_pointer_type] = STATE(2375), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(2375), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(2377), + [sym_pattern] = STATE(4114), + [sym_constant_pattern] = STATE(3311), + [sym_parenthesized_pattern] = STATE(3311), + [sym_var_pattern] = STATE(3311), + [sym_type_pattern] = STATE(3311), + [sym_list_pattern] = STATE(3311), + [sym_recursive_pattern] = STATE(3311), + [sym_positional_pattern_clause] = STATE(2257), + [sym_property_pattern_clause] = STATE(2289), + [sym_relational_pattern] = STATE(3311), + [sym_negated_pattern] = STATE(3311), + [sym_and_pattern] = STATE(3311), + [sym_or_pattern] = STATE(3311), + [sym_declaration_pattern] = STATE(3311), + [sym_expression] = STATE(5671), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3510), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3275), + [sym_postfix_unary_expression] = STATE(3276), + [sym_prefix_unary_expression] = STATE(3276), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6134), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3275), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3276), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3275), + [sym_member_access_expression] = STATE(2608), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3276), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7425), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(3275), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3275), + [sym_typeof_expression] = STATE(3275), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2608), + [sym_literal] = STATE(3275), + [sym_character_literal] = STATE(3272), + [sym_string_literal] = STATE(3272), + [sym_raw_string_literal] = STATE(3272), + [sym_boolean_literal] = STATE(3272), + [sym_identifier] = STATE(2178), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(443), [sym_preproc_endregion] = STATE(443), [sym_preproc_line] = STATE(443), @@ -115297,53 +115183,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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1049), - [anon_sym_LPAREN] = ACTIONS(2561), - [anon_sym_ref] = ACTIONS(2369), - [anon_sym_LBRACE] = ACTIONS(2371), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(2357), + [anon_sym_LPAREN] = ACTIONS(2441), + [anon_sym_ref] = ACTIONS(2341), + [anon_sym_LBRACE] = ACTIONS(2343), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1061), - [anon_sym_LT] = ACTIONS(2563), - [anon_sym_GT] = ACTIONS(2563), + [anon_sym_new] = ACTIONS(1059), + [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(1067), - [anon_sym_BANG] = ACTIONS(1349), - [anon_sym_TILDE] = ACTIONS(1349), - [anon_sym_PLUS_PLUS] = ACTIONS(1349), - [anon_sym_DASH_DASH] = ACTIONS(1349), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1347), - [anon_sym_DASH] = ACTIONS(1347), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(1167), + [anon_sym_TILDE] = ACTIONS(1167), + [anon_sym_PLUS_PLUS] = ACTIONS(1167), + [anon_sym_DASH_DASH] = ACTIONS(1167), + [anon_sym_true] = ACTIONS(1169), + [anon_sym_false] = ACTIONS(1169), + [anon_sym_PLUS] = ACTIONS(1165), + [anon_sym_DASH] = ACTIONS(1165), [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(1349), - [anon_sym_AMP] = ACTIONS(1349), - [anon_sym_GT_EQ] = ACTIONS(2565), - [anon_sym_LT_EQ] = ACTIONS(2565), + [anon_sym_CARET] = ACTIONS(1167), + [anon_sym_AMP] = ACTIONS(1167), + [anon_sym_GT_EQ] = ACTIONS(2445), + [anon_sym_LT_EQ] = ACTIONS(2445), [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(2377), + [anon_sym_scoped] = ACTIONS(2349), [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(2433), - [sym_predefined_type] = ACTIONS(2435), - [anon_sym_unchecked] = ACTIONS(1067), + [anon_sym_var] = ACTIONS(2365), + [sym_predefined_type] = ACTIONS(2367), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1589), + [anon_sym_default] = ACTIONS(1179), + [anon_sym_throw] = ACTIONS(1527), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1591), - [sym_discard] = ACTIONS(1083), + [anon_sym_await] = ACTIONS(1529), + [sym_discard] = ACTIONS(2369), [anon_sym_DOT_DOT] = ACTIONS(123), - [anon_sym_not] = ACTIONS(2567), + [anon_sym_not] = ACTIONS(2447), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -115357,18 +115243,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(129), - [anon_sym_typeof] = ACTIONS(131), + [anon_sym_sizeof] = ACTIONS(1189), + [anon_sym_typeof] = ACTIONS(1191), [anon_sym___makeref] = ACTIONS(133), [anon_sym___reftype] = ACTIONS(135), [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1089), + [sym_null_literal] = ACTIONS(1199), + [anon_sym_SQUOTE] = ACTIONS(1201), + [sym_integer_literal] = ACTIONS(1199), + [sym_real_literal] = ACTIONS(1203), + [anon_sym_DQUOTE] = ACTIONS(1205), + [sym_verbatim_string_literal] = ACTIONS(1203), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -115379,94 +115265,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(1209), + [sym_interpolation_verbatim_start] = ACTIONS(1211), + [sym_interpolation_raw_start] = ACTIONS(1213), + [sym_raw_string_start] = ACTIONS(1215), }, [444] = { - [sym_attribute] = STATE(6989), - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_attribute_target_specifier] = STATE(5792), - [sym_parameter_list] = STATE(7311), - [sym_argument] = STATE(6740), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(5771), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2204), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5920), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(5061), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3379), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3080), - [sym_postfix_unary_expression] = STATE(3111), - [sym_prefix_unary_expression] = STATE(3111), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6154), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3080), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3111), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3080), - [sym_member_access_expression] = STATE(2484), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3111), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7575), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_declaration_expression] = STATE(6803), - [sym_default_expression] = STATE(3080), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3080), - [sym_typeof_expression] = STATE(3080), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2484), - [sym_literal] = STATE(3080), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2206), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute] = STATE(7009), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_attribute_target_specifier] = STATE(5772), + [sym_parameter_list] = STATE(7531), + [sym_argument] = STATE(6855), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(5763), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2196), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5904), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(5095), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3468), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3102), + [sym_postfix_unary_expression] = STATE(3079), + [sym_prefix_unary_expression] = STATE(3079), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6134), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3102), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3079), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3102), + [sym_member_access_expression] = STATE(2472), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3079), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7309), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_declaration_expression] = STATE(6902), + [sym_default_expression] = STATE(3102), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3102), + [sym_typeof_expression] = STATE(3102), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2472), + [sym_literal] = STATE(3102), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2207), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(444), [sym_preproc_endregion] = STATE(444), [sym_preproc_line] = STATE(444), @@ -115476,58 +115362,58 @@ 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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), - [sym__identifier_token] = ACTIONS(25), - [anon_sym_alias] = ACTIONS(29), - [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1481), - [anon_sym_assembly] = ACTIONS(2621), - [anon_sym_module] = ACTIONS(2621), - [anon_sym_LPAREN] = ACTIONS(895), - [anon_sym_field] = ACTIONS(1055), - [anon_sym_event] = ACTIONS(1055), - [anon_sym_method] = ACTIONS(1055), - [anon_sym_param] = ACTIONS(1055), - [anon_sym_property] = ACTIONS(1055), - [anon_sym_return] = ACTIONS(1055), - [anon_sym_type] = ACTIONS(1055), - [anon_sym_ref] = ACTIONS(2623), - [anon_sym_LBRACE] = ACTIONS(1487), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), - [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1061), - [anon_sym_in] = ACTIONS(1065), - [anon_sym_out] = ACTIONS(1065), - [anon_sym_where] = ACTIONS(29), - [anon_sym_notnull] = ACTIONS(29), - [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1067), - [anon_sym_BANG] = ACTIONS(1495), - [anon_sym_TILDE] = ACTIONS(1495), - [anon_sym_PLUS_PLUS] = ACTIONS(1495), - [anon_sym_DASH_DASH] = ACTIONS(1495), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1493), - [anon_sym_DASH] = ACTIONS(1493), - [anon_sym_STAR] = ACTIONS(905), - [anon_sym_CARET] = ACTIONS(1495), - [anon_sym_AMP] = ACTIONS(1495), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), + [sym__identifier_token] = ACTIONS(25), + [anon_sym_alias] = ACTIONS(29), + [anon_sym_global] = ACTIONS(29), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1479), + [anon_sym_assembly] = ACTIONS(2619), + [anon_sym_module] = ACTIONS(2619), + [anon_sym_LPAREN] = ACTIONS(659), + [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(2621), + [anon_sym_LBRACE] = ACTIONS(1481), + [anon_sym_delegate] = ACTIONS(669), + [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(1485), + [anon_sym_TILDE] = ACTIONS(1485), + [anon_sym_PLUS_PLUS] = ACTIONS(1485), + [anon_sym_DASH_DASH] = ACTIONS(1485), + [anon_sym_true] = ACTIONS(77), + [anon_sym_false] = ACTIONS(77), + [anon_sym_PLUS] = ACTIONS(1483), + [anon_sym_DASH] = ACTIONS(1483), + [anon_sym_STAR] = ACTIONS(683), + [anon_sym_CARET] = ACTIONS(1485), + [anon_sym_AMP] = ACTIONS(1485), [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(1067), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1079), + [anon_sym_throw] = ACTIONS(1077), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1081), - [anon_sym_DOT_DOT] = ACTIONS(911), + [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), @@ -115552,7 +115438,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(1089), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -115569,88 +115455,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [445] = { - [sym_attribute] = STATE(6989), - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_attribute_target_specifier] = STATE(5792), - [sym_parameter_list] = STATE(7311), - [sym_argument] = STATE(6740), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(5771), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2204), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5920), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(5061), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3379), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3080), - [sym_postfix_unary_expression] = STATE(3111), - [sym_prefix_unary_expression] = STATE(3111), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6154), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3080), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3111), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3080), - [sym_member_access_expression] = STATE(2484), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3111), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7575), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_declaration_expression] = STATE(6803), - [sym_default_expression] = STATE(3080), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3080), - [sym_typeof_expression] = STATE(3080), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2484), - [sym_literal] = STATE(3080), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2206), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute] = STATE(7009), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_attribute_target_specifier] = STATE(5772), + [sym_parameter_list] = STATE(7531), + [sym_argument] = STATE(6855), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(5763), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2196), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5904), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(5095), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3468), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3102), + [sym_postfix_unary_expression] = STATE(3079), + [sym_prefix_unary_expression] = STATE(3079), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6134), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3102), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3079), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3102), + [sym_member_access_expression] = STATE(2472), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3079), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7309), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_declaration_expression] = STATE(6902), + [sym_default_expression] = STATE(3102), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3102), + [sym_typeof_expression] = STATE(3102), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2472), + [sym_literal] = STATE(3102), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2207), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(445), [sym_preproc_endregion] = STATE(445), [sym_preproc_line] = STATE(445), @@ -115660,58 +115546,58 @@ 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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), - [sym__identifier_token] = ACTIONS(25), - [anon_sym_alias] = ACTIONS(29), - [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1481), - [anon_sym_assembly] = ACTIONS(2625), - [anon_sym_module] = ACTIONS(2625), - [anon_sym_LPAREN] = ACTIONS(895), - [anon_sym_field] = ACTIONS(1055), - [anon_sym_event] = ACTIONS(1055), - [anon_sym_method] = ACTIONS(1055), - [anon_sym_param] = ACTIONS(1055), - [anon_sym_property] = ACTIONS(1055), - [anon_sym_return] = ACTIONS(1055), - [anon_sym_type] = ACTIONS(1055), - [anon_sym_ref] = ACTIONS(2623), - [anon_sym_LBRACE] = ACTIONS(1487), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), - [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1061), - [anon_sym_in] = ACTIONS(1065), - [anon_sym_out] = ACTIONS(1065), - [anon_sym_where] = ACTIONS(29), - [anon_sym_notnull] = ACTIONS(29), - [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1067), - [anon_sym_BANG] = ACTIONS(1495), - [anon_sym_TILDE] = ACTIONS(1495), - [anon_sym_PLUS_PLUS] = ACTIONS(1495), - [anon_sym_DASH_DASH] = ACTIONS(1495), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1493), - [anon_sym_DASH] = ACTIONS(1493), - [anon_sym_STAR] = ACTIONS(905), - [anon_sym_CARET] = ACTIONS(1495), - [anon_sym_AMP] = ACTIONS(1495), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), + [sym__identifier_token] = ACTIONS(25), + [anon_sym_alias] = ACTIONS(29), + [anon_sym_global] = ACTIONS(29), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1479), + [anon_sym_assembly] = ACTIONS(2623), + [anon_sym_module] = ACTIONS(2623), + [anon_sym_LPAREN] = ACTIONS(659), + [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(2621), + [anon_sym_LBRACE] = ACTIONS(1481), + [anon_sym_delegate] = ACTIONS(669), + [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(1485), + [anon_sym_TILDE] = ACTIONS(1485), + [anon_sym_PLUS_PLUS] = ACTIONS(1485), + [anon_sym_DASH_DASH] = ACTIONS(1485), + [anon_sym_true] = ACTIONS(77), + [anon_sym_false] = ACTIONS(77), + [anon_sym_PLUS] = ACTIONS(1483), + [anon_sym_DASH] = ACTIONS(1483), + [anon_sym_STAR] = ACTIONS(683), + [anon_sym_CARET] = ACTIONS(1485), + [anon_sym_AMP] = ACTIONS(1485), [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(1067), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1079), + [anon_sym_throw] = ACTIONS(1077), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1081), - [anon_sym_DOT_DOT] = ACTIONS(911), + [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), @@ -115736,7 +115622,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(1089), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -115753,88 +115639,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [446] = { - [sym_attribute] = STATE(7036), - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_attribute_target_specifier] = STATE(5787), - [sym_parameter_list] = STATE(7311), - [sym_argument] = STATE(6923), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(5771), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2204), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5920), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(5061), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3379), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3080), - [sym_postfix_unary_expression] = STATE(3111), - [sym_prefix_unary_expression] = STATE(3111), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6154), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3080), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3111), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3080), - [sym_member_access_expression] = STATE(2484), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3111), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7575), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_declaration_expression] = STATE(6803), - [sym_default_expression] = STATE(3080), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3080), - [sym_typeof_expression] = STATE(3080), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2484), - [sym_literal] = STATE(3080), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2206), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute] = STATE(7014), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_attribute_target_specifier] = STATE(5784), + [sym_parameter_list] = STATE(7531), + [sym_argument] = STATE(6941), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(5763), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2196), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5904), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(5095), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3468), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3102), + [sym_postfix_unary_expression] = STATE(3079), + [sym_prefix_unary_expression] = STATE(3079), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6134), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3102), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3079), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3102), + [sym_member_access_expression] = STATE(2472), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3079), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7309), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_declaration_expression] = STATE(6902), + [sym_default_expression] = STATE(3102), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3102), + [sym_typeof_expression] = STATE(3102), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2472), + [sym_literal] = STATE(3102), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2207), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(446), [sym_preproc_endregion] = STATE(446), [sym_preproc_line] = STATE(446), @@ -115844,56 +115730,56 @@ 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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1481), - [anon_sym_LPAREN] = ACTIONS(895), - [anon_sym_field] = ACTIONS(1055), - [anon_sym_event] = ACTIONS(1055), - [anon_sym_method] = ACTIONS(1055), - [anon_sym_param] = ACTIONS(1055), - [anon_sym_property] = ACTIONS(1055), - [anon_sym_return] = ACTIONS(1055), - [anon_sym_type] = ACTIONS(1055), - [anon_sym_ref] = ACTIONS(2623), - [anon_sym_LBRACE] = ACTIONS(1487), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1479), + [anon_sym_LPAREN] = ACTIONS(659), + [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(2621), + [anon_sym_LBRACE] = ACTIONS(1481), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1061), - [anon_sym_in] = ACTIONS(1065), - [anon_sym_out] = ACTIONS(1065), + [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(1067), - [anon_sym_BANG] = ACTIONS(1495), - [anon_sym_TILDE] = ACTIONS(1495), - [anon_sym_PLUS_PLUS] = ACTIONS(1495), - [anon_sym_DASH_DASH] = ACTIONS(1495), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(1485), + [anon_sym_TILDE] = ACTIONS(1485), + [anon_sym_PLUS_PLUS] = ACTIONS(1485), + [anon_sym_DASH_DASH] = ACTIONS(1485), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1493), - [anon_sym_DASH] = ACTIONS(1493), - [anon_sym_STAR] = ACTIONS(905), - [anon_sym_CARET] = ACTIONS(1495), - [anon_sym_AMP] = ACTIONS(1495), + [anon_sym_PLUS] = ACTIONS(1483), + [anon_sym_DASH] = ACTIONS(1483), + [anon_sym_STAR] = ACTIONS(683), + [anon_sym_CARET] = ACTIONS(1485), + [anon_sym_AMP] = ACTIONS(1485), [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(1067), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1079), + [anon_sym_throw] = ACTIONS(1077), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1081), - [anon_sym_DOT_DOT] = ACTIONS(911), + [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), @@ -115918,7 +115804,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(1089), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -115935,88 +115821,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [447] = { - [sym_attribute] = STATE(6931), - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_attribute_target_specifier] = STATE(5795), - [sym_parameter_list] = STATE(7311), - [sym_argument] = STATE(6740), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(5771), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2204), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5920), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(5061), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3379), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3080), - [sym_postfix_unary_expression] = STATE(3111), - [sym_prefix_unary_expression] = STATE(3111), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6154), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3080), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3111), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3080), - [sym_member_access_expression] = STATE(2484), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3111), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7575), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_declaration_expression] = STATE(6803), - [sym_default_expression] = STATE(3080), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3080), - [sym_typeof_expression] = STATE(3080), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2484), - [sym_literal] = STATE(3080), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2206), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute] = STATE(7014), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_attribute_target_specifier] = STATE(5784), + [sym_parameter_list] = STATE(7531), + [sym_argument] = STATE(7015), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(5763), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2196), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5904), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(5095), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3468), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3102), + [sym_postfix_unary_expression] = STATE(3079), + [sym_prefix_unary_expression] = STATE(3079), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6134), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3102), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3079), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3102), + [sym_member_access_expression] = STATE(2472), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3079), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7309), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_declaration_expression] = STATE(6902), + [sym_default_expression] = STATE(3102), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3102), + [sym_typeof_expression] = STATE(3102), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2472), + [sym_literal] = STATE(3102), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2207), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(447), [sym_preproc_endregion] = STATE(447), [sym_preproc_line] = STATE(447), @@ -116026,56 +115912,56 @@ 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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1481), - [anon_sym_LPAREN] = ACTIONS(895), - [anon_sym_field] = ACTIONS(1055), - [anon_sym_event] = ACTIONS(1055), - [anon_sym_method] = ACTIONS(1055), - [anon_sym_param] = ACTIONS(1055), - [anon_sym_property] = ACTIONS(1055), - [anon_sym_return] = ACTIONS(1055), - [anon_sym_type] = ACTIONS(1055), - [anon_sym_ref] = ACTIONS(2623), - [anon_sym_LBRACE] = ACTIONS(1487), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1479), + [anon_sym_LPAREN] = ACTIONS(659), + [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(2621), + [anon_sym_LBRACE] = ACTIONS(1481), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1061), - [anon_sym_in] = ACTIONS(1065), - [anon_sym_out] = ACTIONS(1065), + [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(1067), - [anon_sym_BANG] = ACTIONS(1495), - [anon_sym_TILDE] = ACTIONS(1495), - [anon_sym_PLUS_PLUS] = ACTIONS(1495), - [anon_sym_DASH_DASH] = ACTIONS(1495), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(1485), + [anon_sym_TILDE] = ACTIONS(1485), + [anon_sym_PLUS_PLUS] = ACTIONS(1485), + [anon_sym_DASH_DASH] = ACTIONS(1485), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1493), - [anon_sym_DASH] = ACTIONS(1493), - [anon_sym_STAR] = ACTIONS(905), - [anon_sym_CARET] = ACTIONS(1495), - [anon_sym_AMP] = ACTIONS(1495), + [anon_sym_PLUS] = ACTIONS(1483), + [anon_sym_DASH] = ACTIONS(1483), + [anon_sym_STAR] = ACTIONS(683), + [anon_sym_CARET] = ACTIONS(1485), + [anon_sym_AMP] = ACTIONS(1485), [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(1067), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1079), + [anon_sym_throw] = ACTIONS(1077), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1081), - [anon_sym_DOT_DOT] = ACTIONS(911), + [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), @@ -116100,7 +115986,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(1089), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -116117,88 +116003,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [448] = { - [sym_attribute] = STATE(7036), - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_attribute_target_specifier] = STATE(5787), - [sym_parameter_list] = STATE(7311), - [sym_argument] = STATE(6914), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(5771), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2204), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5920), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(5061), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3379), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3080), - [sym_postfix_unary_expression] = STATE(3111), - [sym_prefix_unary_expression] = STATE(3111), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6154), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3080), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3111), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3080), - [sym_member_access_expression] = STATE(2484), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3111), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7575), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_declaration_expression] = STATE(6803), - [sym_default_expression] = STATE(3080), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3080), - [sym_typeof_expression] = STATE(3080), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2484), - [sym_literal] = STATE(3080), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2206), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute] = STATE(6752), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_attribute_target_specifier] = STATE(5780), + [sym_parameter_list] = STATE(7531), + [sym_argument] = STATE(6855), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(5763), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2196), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5904), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(5095), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3468), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3102), + [sym_postfix_unary_expression] = STATE(3079), + [sym_prefix_unary_expression] = STATE(3079), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6134), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3102), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3079), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3102), + [sym_member_access_expression] = STATE(2472), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3079), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7309), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_declaration_expression] = STATE(6902), + [sym_default_expression] = STATE(3102), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3102), + [sym_typeof_expression] = STATE(3102), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2472), + [sym_literal] = STATE(3102), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2207), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(448), [sym_preproc_endregion] = STATE(448), [sym_preproc_line] = STATE(448), @@ -116208,56 +116094,56 @@ 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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1481), - [anon_sym_LPAREN] = ACTIONS(895), - [anon_sym_field] = ACTIONS(1055), - [anon_sym_event] = ACTIONS(1055), - [anon_sym_method] = ACTIONS(1055), - [anon_sym_param] = ACTIONS(1055), - [anon_sym_property] = ACTIONS(1055), - [anon_sym_return] = ACTIONS(1055), - [anon_sym_type] = ACTIONS(1055), - [anon_sym_ref] = ACTIONS(2623), - [anon_sym_LBRACE] = ACTIONS(1487), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1479), + [anon_sym_LPAREN] = ACTIONS(659), + [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(2621), + [anon_sym_LBRACE] = ACTIONS(1481), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1061), - [anon_sym_in] = ACTIONS(1065), - [anon_sym_out] = ACTIONS(1065), + [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(1067), - [anon_sym_BANG] = ACTIONS(1495), - [anon_sym_TILDE] = ACTIONS(1495), - [anon_sym_PLUS_PLUS] = ACTIONS(1495), - [anon_sym_DASH_DASH] = ACTIONS(1495), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(1485), + [anon_sym_TILDE] = ACTIONS(1485), + [anon_sym_PLUS_PLUS] = ACTIONS(1485), + [anon_sym_DASH_DASH] = ACTIONS(1485), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1493), - [anon_sym_DASH] = ACTIONS(1493), - [anon_sym_STAR] = ACTIONS(905), - [anon_sym_CARET] = ACTIONS(1495), - [anon_sym_AMP] = ACTIONS(1495), + [anon_sym_PLUS] = ACTIONS(1483), + [anon_sym_DASH] = ACTIONS(1483), + [anon_sym_STAR] = ACTIONS(683), + [anon_sym_CARET] = ACTIONS(1485), + [anon_sym_AMP] = ACTIONS(1485), [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(1067), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1079), + [anon_sym_throw] = ACTIONS(1077), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1081), - [anon_sym_DOT_DOT] = ACTIONS(911), + [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), @@ -116282,7 +116168,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(1089), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -116299,88 +116185,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [449] = { - [sym_attribute] = STATE(7036), - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_attribute_target_specifier] = STATE(5787), - [sym_parameter_list] = STATE(7311), - [sym_argument] = STATE(6754), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(5771), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2204), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5920), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(5061), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3379), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3080), - [sym_postfix_unary_expression] = STATE(3111), - [sym_prefix_unary_expression] = STATE(3111), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6154), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3080), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3111), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3080), - [sym_member_access_expression] = STATE(2484), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3111), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7575), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_declaration_expression] = STATE(6803), - [sym_default_expression] = STATE(3080), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3080), - [sym_typeof_expression] = STATE(3080), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2484), - [sym_literal] = STATE(3080), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2206), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute] = STATE(7014), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_attribute_target_specifier] = STATE(5784), + [sym_parameter_list] = STATE(7531), + [sym_argument] = STATE(6855), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(5763), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2196), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5904), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(5095), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3468), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3102), + [sym_postfix_unary_expression] = STATE(3079), + [sym_prefix_unary_expression] = STATE(3079), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6134), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3102), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3079), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3102), + [sym_member_access_expression] = STATE(2472), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3079), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7309), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_declaration_expression] = STATE(6902), + [sym_default_expression] = STATE(3102), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3102), + [sym_typeof_expression] = STATE(3102), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2472), + [sym_literal] = STATE(3102), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2207), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(449), [sym_preproc_endregion] = STATE(449), [sym_preproc_line] = STATE(449), @@ -116390,56 +116276,56 @@ 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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1481), - [anon_sym_LPAREN] = ACTIONS(895), - [anon_sym_field] = ACTIONS(1055), - [anon_sym_event] = ACTIONS(1055), - [anon_sym_method] = ACTIONS(1055), - [anon_sym_param] = ACTIONS(1055), - [anon_sym_property] = ACTIONS(1055), - [anon_sym_return] = ACTIONS(1055), - [anon_sym_type] = ACTIONS(1055), - [anon_sym_ref] = ACTIONS(2623), - [anon_sym_LBRACE] = ACTIONS(1487), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1479), + [anon_sym_LPAREN] = ACTIONS(659), + [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(2621), + [anon_sym_LBRACE] = ACTIONS(1481), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1061), - [anon_sym_in] = ACTIONS(1065), - [anon_sym_out] = ACTIONS(1065), + [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(1067), - [anon_sym_BANG] = ACTIONS(1495), - [anon_sym_TILDE] = ACTIONS(1495), - [anon_sym_PLUS_PLUS] = ACTIONS(1495), - [anon_sym_DASH_DASH] = ACTIONS(1495), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(1485), + [anon_sym_TILDE] = ACTIONS(1485), + [anon_sym_PLUS_PLUS] = ACTIONS(1485), + [anon_sym_DASH_DASH] = ACTIONS(1485), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1493), - [anon_sym_DASH] = ACTIONS(1493), - [anon_sym_STAR] = ACTIONS(905), - [anon_sym_CARET] = ACTIONS(1495), - [anon_sym_AMP] = ACTIONS(1495), + [anon_sym_PLUS] = ACTIONS(1483), + [anon_sym_DASH] = ACTIONS(1483), + [anon_sym_STAR] = ACTIONS(683), + [anon_sym_CARET] = ACTIONS(1485), + [anon_sym_AMP] = ACTIONS(1485), [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(1067), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1079), + [anon_sym_throw] = ACTIONS(1077), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1081), - [anon_sym_DOT_DOT] = ACTIONS(911), + [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), @@ -116464,7 +116350,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(1089), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -116481,88 +116367,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [450] = { - [sym_attribute] = STATE(7036), - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_attribute_target_specifier] = STATE(5787), - [sym_parameter_list] = STATE(7311), - [sym_argument] = STATE(6740), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(5771), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2204), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5920), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(5061), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3379), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3080), - [sym_postfix_unary_expression] = STATE(3111), - [sym_prefix_unary_expression] = STATE(3111), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6154), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3080), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3111), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3080), - [sym_member_access_expression] = STATE(2484), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3111), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7575), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_declaration_expression] = STATE(6803), - [sym_default_expression] = STATE(3080), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3080), - [sym_typeof_expression] = STATE(3080), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2484), - [sym_literal] = STATE(3080), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2206), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute] = STATE(7014), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_attribute_target_specifier] = STATE(5784), + [sym_parameter_list] = STATE(7531), + [sym_argument] = STATE(6753), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(5763), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2196), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5904), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(5095), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3468), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3102), + [sym_postfix_unary_expression] = STATE(3079), + [sym_prefix_unary_expression] = STATE(3079), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6134), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3102), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3079), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3102), + [sym_member_access_expression] = STATE(2472), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3079), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7309), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_declaration_expression] = STATE(6902), + [sym_default_expression] = STATE(3102), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3102), + [sym_typeof_expression] = STATE(3102), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2472), + [sym_literal] = STATE(3102), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2207), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(450), [sym_preproc_endregion] = STATE(450), [sym_preproc_line] = STATE(450), @@ -116572,56 +116458,56 @@ 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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1481), - [anon_sym_LPAREN] = ACTIONS(895), - [anon_sym_field] = ACTIONS(1055), - [anon_sym_event] = ACTIONS(1055), - [anon_sym_method] = ACTIONS(1055), - [anon_sym_param] = ACTIONS(1055), - [anon_sym_property] = ACTIONS(1055), - [anon_sym_return] = ACTIONS(1055), - [anon_sym_type] = ACTIONS(1055), - [anon_sym_ref] = ACTIONS(2623), - [anon_sym_LBRACE] = ACTIONS(1487), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1479), + [anon_sym_LPAREN] = ACTIONS(659), + [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(2621), + [anon_sym_LBRACE] = ACTIONS(1481), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1061), - [anon_sym_in] = ACTIONS(1065), - [anon_sym_out] = ACTIONS(1065), + [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(1067), - [anon_sym_BANG] = ACTIONS(1495), - [anon_sym_TILDE] = ACTIONS(1495), - [anon_sym_PLUS_PLUS] = ACTIONS(1495), - [anon_sym_DASH_DASH] = ACTIONS(1495), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(1485), + [anon_sym_TILDE] = ACTIONS(1485), + [anon_sym_PLUS_PLUS] = ACTIONS(1485), + [anon_sym_DASH_DASH] = ACTIONS(1485), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1493), - [anon_sym_DASH] = ACTIONS(1493), - [anon_sym_STAR] = ACTIONS(905), - [anon_sym_CARET] = ACTIONS(1495), - [anon_sym_AMP] = ACTIONS(1495), + [anon_sym_PLUS] = ACTIONS(1483), + [anon_sym_DASH] = ACTIONS(1483), + [anon_sym_STAR] = ACTIONS(683), + [anon_sym_CARET] = ACTIONS(1485), + [anon_sym_AMP] = ACTIONS(1485), [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(1067), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1079), + [anon_sym_throw] = ACTIONS(1077), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1081), - [anon_sym_DOT_DOT] = ACTIONS(911), + [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), @@ -116646,7 +116532,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(1089), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -116663,88 +116549,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [451] = { - [sym_attribute] = STATE(7036), - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_attribute_target_specifier] = STATE(5787), - [sym_parameter_list] = STATE(7311), - [sym_argument] = STATE(6730), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(5771), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2204), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5920), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(5061), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3379), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3080), - [sym_postfix_unary_expression] = STATE(3111), - [sym_prefix_unary_expression] = STATE(3111), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6154), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3080), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3111), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3080), - [sym_member_access_expression] = STATE(2484), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3111), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7575), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_declaration_expression] = STATE(6803), - [sym_default_expression] = STATE(3080), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3080), - [sym_typeof_expression] = STATE(3080), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2484), - [sym_literal] = STATE(3080), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2206), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute] = STATE(7014), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_attribute_target_specifier] = STATE(5784), + [sym_parameter_list] = STATE(7531), + [sym_argument] = STATE(6868), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(5763), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2196), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5904), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(5095), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3468), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3102), + [sym_postfix_unary_expression] = STATE(3079), + [sym_prefix_unary_expression] = STATE(3079), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6134), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3102), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3079), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3102), + [sym_member_access_expression] = STATE(2472), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3079), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7309), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_declaration_expression] = STATE(6902), + [sym_default_expression] = STATE(3102), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3102), + [sym_typeof_expression] = STATE(3102), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2472), + [sym_literal] = STATE(3102), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2207), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(451), [sym_preproc_endregion] = STATE(451), [sym_preproc_line] = STATE(451), @@ -116754,56 +116640,56 @@ 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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1481), - [anon_sym_LPAREN] = ACTIONS(895), - [anon_sym_field] = ACTIONS(1055), - [anon_sym_event] = ACTIONS(1055), - [anon_sym_method] = ACTIONS(1055), - [anon_sym_param] = ACTIONS(1055), - [anon_sym_property] = ACTIONS(1055), - [anon_sym_return] = ACTIONS(1055), - [anon_sym_type] = ACTIONS(1055), - [anon_sym_ref] = ACTIONS(2623), - [anon_sym_LBRACE] = ACTIONS(1487), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1479), + [anon_sym_LPAREN] = ACTIONS(659), + [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(2621), + [anon_sym_LBRACE] = ACTIONS(1481), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1061), - [anon_sym_in] = ACTIONS(1065), - [anon_sym_out] = ACTIONS(1065), + [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(1067), - [anon_sym_BANG] = ACTIONS(1495), - [anon_sym_TILDE] = ACTIONS(1495), - [anon_sym_PLUS_PLUS] = ACTIONS(1495), - [anon_sym_DASH_DASH] = ACTIONS(1495), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(1485), + [anon_sym_TILDE] = ACTIONS(1485), + [anon_sym_PLUS_PLUS] = ACTIONS(1485), + [anon_sym_DASH_DASH] = ACTIONS(1485), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1493), - [anon_sym_DASH] = ACTIONS(1493), - [anon_sym_STAR] = ACTIONS(905), - [anon_sym_CARET] = ACTIONS(1495), - [anon_sym_AMP] = ACTIONS(1495), + [anon_sym_PLUS] = ACTIONS(1483), + [anon_sym_DASH] = ACTIONS(1483), + [anon_sym_STAR] = ACTIONS(683), + [anon_sym_CARET] = ACTIONS(1485), + [anon_sym_AMP] = ACTIONS(1485), [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(1067), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1079), + [anon_sym_throw] = ACTIONS(1077), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1081), - [anon_sym_DOT_DOT] = ACTIONS(911), + [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), @@ -116828,7 +116714,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(1089), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -116845,88 +116731,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [452] = { - [sym_attribute] = STATE(7036), - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_attribute_target_specifier] = STATE(5787), - [sym_parameter_list] = STATE(7311), - [sym_argument] = STATE(6932), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(5771), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2204), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5920), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(5061), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3379), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3080), - [sym_postfix_unary_expression] = STATE(3111), - [sym_prefix_unary_expression] = STATE(3111), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6154), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3080), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3111), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3080), - [sym_member_access_expression] = STATE(2484), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3111), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7575), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_declaration_expression] = STATE(6803), - [sym_default_expression] = STATE(3080), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3080), - [sym_typeof_expression] = STATE(3080), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2484), - [sym_literal] = STATE(3080), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2206), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute] = STATE(7014), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_attribute_target_specifier] = STATE(5784), + [sym_parameter_list] = STATE(7531), + [sym_argument] = STATE(6821), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(5763), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2196), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5904), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(5095), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3468), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3102), + [sym_postfix_unary_expression] = STATE(3079), + [sym_prefix_unary_expression] = STATE(3079), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6134), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3102), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3079), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3102), + [sym_member_access_expression] = STATE(2472), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3079), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7309), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_declaration_expression] = STATE(6902), + [sym_default_expression] = STATE(3102), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3102), + [sym_typeof_expression] = STATE(3102), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2472), + [sym_literal] = STATE(3102), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2207), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(452), [sym_preproc_endregion] = STATE(452), [sym_preproc_line] = STATE(452), @@ -116936,56 +116822,56 @@ 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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1481), - [anon_sym_LPAREN] = ACTIONS(895), - [anon_sym_field] = ACTIONS(1055), - [anon_sym_event] = ACTIONS(1055), - [anon_sym_method] = ACTIONS(1055), - [anon_sym_param] = ACTIONS(1055), - [anon_sym_property] = ACTIONS(1055), - [anon_sym_return] = ACTIONS(1055), - [anon_sym_type] = ACTIONS(1055), - [anon_sym_ref] = ACTIONS(2623), - [anon_sym_LBRACE] = ACTIONS(1487), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1479), + [anon_sym_LPAREN] = ACTIONS(659), + [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(2621), + [anon_sym_LBRACE] = ACTIONS(1481), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1061), - [anon_sym_in] = ACTIONS(1065), - [anon_sym_out] = ACTIONS(1065), + [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(1067), - [anon_sym_BANG] = ACTIONS(1495), - [anon_sym_TILDE] = ACTIONS(1495), - [anon_sym_PLUS_PLUS] = ACTIONS(1495), - [anon_sym_DASH_DASH] = ACTIONS(1495), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(1485), + [anon_sym_TILDE] = ACTIONS(1485), + [anon_sym_PLUS_PLUS] = ACTIONS(1485), + [anon_sym_DASH_DASH] = ACTIONS(1485), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1493), - [anon_sym_DASH] = ACTIONS(1493), - [anon_sym_STAR] = ACTIONS(905), - [anon_sym_CARET] = ACTIONS(1495), - [anon_sym_AMP] = ACTIONS(1495), + [anon_sym_PLUS] = ACTIONS(1483), + [anon_sym_DASH] = ACTIONS(1483), + [anon_sym_STAR] = ACTIONS(683), + [anon_sym_CARET] = ACTIONS(1485), + [anon_sym_AMP] = ACTIONS(1485), [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(1067), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1079), + [anon_sym_throw] = ACTIONS(1077), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1081), - [anon_sym_DOT_DOT] = ACTIONS(911), + [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), @@ -117010,7 +116896,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(1089), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -117027,89 +116913,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [453] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_parameter] = STATE(6948), - [sym__parameter_array] = STATE(6996), - [sym_argument] = STATE(7273), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(5160), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2204), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5858), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_tuple_element] = STATE(7283), - [sym_expression] = STATE(5061), - [sym_non_lvalue_expression] = STATE(5333), - [sym_lvalue_expression] = STATE(3630), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3080), - [sym_postfix_unary_expression] = STATE(3111), - [sym_prefix_unary_expression] = STATE(3111), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6154), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3080), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3111), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3080), - [sym_member_access_expression] = STATE(2484), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3111), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7575), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_declaration_expression] = STATE(6803), - [sym_default_expression] = STATE(3080), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3080), - [sym_typeof_expression] = STATE(3080), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2484), - [sym_literal] = STATE(3080), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2222), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_parameter] = STATE(6769), + [sym__parameter_array] = STATE(6785), + [sym_argument] = STATE(7133), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(5152), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2196), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5830), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_tuple_element] = STATE(7166), + [sym_expression] = STATE(5095), + [sym_non_lvalue_expression] = STATE(5315), + [sym_lvalue_expression] = STATE(3616), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3102), + [sym_postfix_unary_expression] = STATE(3079), + [sym_prefix_unary_expression] = STATE(3079), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6134), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3102), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3079), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3102), + [sym_member_access_expression] = STATE(2472), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3079), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7309), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_declaration_expression] = STATE(6902), + [sym_default_expression] = STATE(3102), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3102), + [sym_typeof_expression] = STATE(3102), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2472), + [sym_literal] = STATE(3102), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2221), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(453), [sym_preproc_endregion] = STATE(453), [sym_preproc_line] = STATE(453), @@ -117119,53 +117005,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(2852), - [aux_sym__parameter_type_with_modifiers_repeat1] = STATE(3489), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [aux_sym__class_declaration_initializer_repeat1] = STATE(2843), + [aux_sym__parameter_type_with_modifiers_repeat1] = STATE(3452), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1481), - [anon_sym_LPAREN] = ACTIONS(895), - [anon_sym_RPAREN] = ACTIONS(2627), - [anon_sym_ref] = ACTIONS(2629), - [anon_sym_LBRACE] = ACTIONS(1487), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1479), + [anon_sym_LPAREN] = ACTIONS(659), + [anon_sym_RPAREN] = ACTIONS(2625), + [anon_sym_ref] = ACTIONS(2627), + [anon_sym_LBRACE] = ACTIONS(1481), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1061), - [anon_sym_readonly] = ACTIONS(1103), - [anon_sym_in] = ACTIONS(1105), - [anon_sym_out] = ACTIONS(1105), + [anon_sym_new] = ACTIONS(1059), + [anon_sym_readonly] = ACTIONS(1097), + [anon_sym_in] = ACTIONS(1099), + [anon_sym_out] = ACTIONS(1099), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1067), - [anon_sym_BANG] = ACTIONS(1495), - [anon_sym_TILDE] = ACTIONS(1495), - [anon_sym_PLUS_PLUS] = ACTIONS(1495), - [anon_sym_DASH_DASH] = ACTIONS(1495), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(1485), + [anon_sym_TILDE] = ACTIONS(1485), + [anon_sym_PLUS_PLUS] = ACTIONS(1485), + [anon_sym_DASH_DASH] = ACTIONS(1485), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1493), - [anon_sym_DASH] = ACTIONS(1493), - [anon_sym_STAR] = ACTIONS(905), - [anon_sym_CARET] = ACTIONS(1495), - [anon_sym_AMP] = ACTIONS(1495), - [anon_sym_this] = ACTIONS(1113), - [anon_sym_scoped] = ACTIONS(1115), - [anon_sym_params] = ACTIONS(1117), + [anon_sym_PLUS] = ACTIONS(1483), + [anon_sym_DASH] = ACTIONS(1483), + [anon_sym_STAR] = ACTIONS(683), + [anon_sym_CARET] = ACTIONS(1485), + [anon_sym_AMP] = ACTIONS(1485), + [anon_sym_this] = ACTIONS(1107), + [anon_sym_scoped] = ACTIONS(1109), + [anon_sym_params] = ACTIONS(1111), [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(2631), + [anon_sym_var] = ACTIONS(2629), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1067), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1079), + [anon_sym_throw] = ACTIONS(1077), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1081), - [anon_sym_DOT_DOT] = ACTIONS(911), + [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), @@ -117190,7 +117076,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(1089), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -117207,89 +117093,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [454] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_parameter] = STATE(6948), - [sym__parameter_array] = STATE(6996), - [sym_argument] = STATE(7273), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(5160), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2204), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5861), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_tuple_element] = STATE(7283), - [sym_expression] = STATE(5061), - [sym_non_lvalue_expression] = STATE(5333), - [sym_lvalue_expression] = STATE(3630), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3080), - [sym_postfix_unary_expression] = STATE(3111), - [sym_prefix_unary_expression] = STATE(3111), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6154), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3080), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3111), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3080), - [sym_member_access_expression] = STATE(2484), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3111), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7575), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_declaration_expression] = STATE(6803), - [sym_default_expression] = STATE(3080), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3080), - [sym_typeof_expression] = STATE(3080), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2484), - [sym_literal] = STATE(3080), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2222), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_parameter] = STATE(6769), + [sym__parameter_array] = STATE(6785), + [sym_argument] = STATE(7116), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(5152), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2196), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5810), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_tuple_element] = STATE(7166), + [sym_expression] = STATE(5095), + [sym_non_lvalue_expression] = STATE(5536), + [sym_lvalue_expression] = STATE(3598), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3102), + [sym_postfix_unary_expression] = STATE(3079), + [sym_prefix_unary_expression] = STATE(3079), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6134), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3102), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3079), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3102), + [sym_member_access_expression] = STATE(2472), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3079), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7309), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_declaration_expression] = STATE(6902), + [sym_default_expression] = STATE(3102), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3102), + [sym_typeof_expression] = STATE(3102), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2472), + [sym_literal] = STATE(3102), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2221), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(454), [sym_preproc_endregion] = STATE(454), [sym_preproc_line] = STATE(454), @@ -117299,53 +117185,53 @@ 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(2852), - [aux_sym__parameter_type_with_modifiers_repeat1] = STATE(3489), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [aux_sym__class_declaration_initializer_repeat1] = STATE(2843), + [aux_sym__parameter_type_with_modifiers_repeat1] = STATE(3452), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1481), - [anon_sym_LPAREN] = ACTIONS(895), - [anon_sym_RPAREN] = ACTIONS(2627), - [anon_sym_ref] = ACTIONS(2629), - [anon_sym_LBRACE] = ACTIONS(1487), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1479), + [anon_sym_LPAREN] = ACTIONS(659), + [anon_sym_RPAREN] = ACTIONS(2625), + [anon_sym_ref] = ACTIONS(2627), + [anon_sym_LBRACE] = ACTIONS(1481), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1061), - [anon_sym_readonly] = ACTIONS(1103), - [anon_sym_in] = ACTIONS(1105), - [anon_sym_out] = ACTIONS(1105), + [anon_sym_new] = ACTIONS(1059), + [anon_sym_readonly] = ACTIONS(1097), + [anon_sym_in] = ACTIONS(1099), + [anon_sym_out] = ACTIONS(1099), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1067), - [anon_sym_BANG] = ACTIONS(1495), - [anon_sym_TILDE] = ACTIONS(1495), - [anon_sym_PLUS_PLUS] = ACTIONS(1495), - [anon_sym_DASH_DASH] = ACTIONS(1495), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(1485), + [anon_sym_TILDE] = ACTIONS(1485), + [anon_sym_PLUS_PLUS] = ACTIONS(1485), + [anon_sym_DASH_DASH] = ACTIONS(1485), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1493), - [anon_sym_DASH] = ACTIONS(1493), - [anon_sym_STAR] = ACTIONS(905), - [anon_sym_CARET] = ACTIONS(1495), - [anon_sym_AMP] = ACTIONS(1495), - [anon_sym_this] = ACTIONS(1113), - [anon_sym_scoped] = ACTIONS(1115), - [anon_sym_params] = ACTIONS(1117), + [anon_sym_PLUS] = ACTIONS(1483), + [anon_sym_DASH] = ACTIONS(1483), + [anon_sym_STAR] = ACTIONS(683), + [anon_sym_CARET] = ACTIONS(1485), + [anon_sym_AMP] = ACTIONS(1485), + [anon_sym_this] = ACTIONS(1107), + [anon_sym_scoped] = ACTIONS(1109), + [anon_sym_params] = ACTIONS(1111), [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(2631), + [anon_sym_var] = ACTIONS(2629), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1067), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1079), + [anon_sym_throw] = ACTIONS(1077), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1081), - [anon_sym_DOT_DOT] = ACTIONS(911), + [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), @@ -117370,7 +117256,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(1089), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -117387,89 +117273,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [455] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_parameter] = STATE(6948), - [sym__parameter_array] = STATE(6996), - [sym_argument] = STATE(7247), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(5160), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2204), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5823), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_tuple_element] = STATE(7283), - [sym_expression] = STATE(5061), - [sym_non_lvalue_expression] = STATE(5597), - [sym_lvalue_expression] = STATE(3588), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3080), - [sym_postfix_unary_expression] = STATE(3111), - [sym_prefix_unary_expression] = STATE(3111), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6154), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3080), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3111), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3080), - [sym_member_access_expression] = STATE(2484), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3111), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7575), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_declaration_expression] = STATE(6803), - [sym_default_expression] = STATE(3080), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3080), - [sym_typeof_expression] = STATE(3080), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2484), - [sym_literal] = STATE(3080), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2222), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_parameter] = STATE(6769), + [sym__parameter_array] = STATE(6785), + [sym_argument] = STATE(7154), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(5152), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2196), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5829), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_tuple_element] = STATE(7166), + [sym_expression] = STATE(5095), + [sym_non_lvalue_expression] = STATE(5613), + [sym_lvalue_expression] = STATE(3543), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3102), + [sym_postfix_unary_expression] = STATE(3079), + [sym_prefix_unary_expression] = STATE(3079), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6134), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3102), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3079), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3102), + [sym_member_access_expression] = STATE(2472), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3079), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7309), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_declaration_expression] = STATE(6902), + [sym_default_expression] = STATE(3102), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3102), + [sym_typeof_expression] = STATE(3102), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2472), + [sym_literal] = STATE(3102), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2221), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(455), [sym_preproc_endregion] = STATE(455), [sym_preproc_line] = STATE(455), @@ -117479,53 +117365,53 @@ 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(2852), - [aux_sym__parameter_type_with_modifiers_repeat1] = STATE(3489), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [aux_sym__class_declaration_initializer_repeat1] = STATE(2843), + [aux_sym__parameter_type_with_modifiers_repeat1] = STATE(3452), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1481), - [anon_sym_LPAREN] = ACTIONS(895), - [anon_sym_RPAREN] = ACTIONS(2627), - [anon_sym_ref] = ACTIONS(2629), - [anon_sym_LBRACE] = ACTIONS(1487), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1479), + [anon_sym_LPAREN] = ACTIONS(659), + [anon_sym_RPAREN] = ACTIONS(2625), + [anon_sym_ref] = ACTIONS(2627), + [anon_sym_LBRACE] = ACTIONS(1481), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1061), - [anon_sym_readonly] = ACTIONS(1103), - [anon_sym_in] = ACTIONS(1105), - [anon_sym_out] = ACTIONS(1105), + [anon_sym_new] = ACTIONS(1059), + [anon_sym_readonly] = ACTIONS(1097), + [anon_sym_in] = ACTIONS(1099), + [anon_sym_out] = ACTIONS(1099), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1067), - [anon_sym_BANG] = ACTIONS(1495), - [anon_sym_TILDE] = ACTIONS(1495), - [anon_sym_PLUS_PLUS] = ACTIONS(1495), - [anon_sym_DASH_DASH] = ACTIONS(1495), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(1485), + [anon_sym_TILDE] = ACTIONS(1485), + [anon_sym_PLUS_PLUS] = ACTIONS(1485), + [anon_sym_DASH_DASH] = ACTIONS(1485), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1493), - [anon_sym_DASH] = ACTIONS(1493), - [anon_sym_STAR] = ACTIONS(905), - [anon_sym_CARET] = ACTIONS(1495), - [anon_sym_AMP] = ACTIONS(1495), - [anon_sym_this] = ACTIONS(1113), - [anon_sym_scoped] = ACTIONS(1115), - [anon_sym_params] = ACTIONS(1117), + [anon_sym_PLUS] = ACTIONS(1483), + [anon_sym_DASH] = ACTIONS(1483), + [anon_sym_STAR] = ACTIONS(683), + [anon_sym_CARET] = ACTIONS(1485), + [anon_sym_AMP] = ACTIONS(1485), + [anon_sym_this] = ACTIONS(1107), + [anon_sym_scoped] = ACTIONS(1109), + [anon_sym_params] = ACTIONS(1111), [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(2631), + [anon_sym_var] = ACTIONS(2629), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1067), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1079), + [anon_sym_throw] = ACTIONS(1077), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1081), - [anon_sym_DOT_DOT] = ACTIONS(911), + [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), @@ -117550,7 +117436,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(1089), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -117567,89 +117453,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [456] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_parameter] = STATE(6948), - [sym__parameter_array] = STATE(6996), - [sym_argument] = STATE(7143), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(5160), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2204), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5818), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_tuple_element] = STATE(7283), - [sym_expression] = STATE(5061), - [sym_non_lvalue_expression] = STATE(5661), - [sym_lvalue_expression] = STATE(3595), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3080), - [sym_postfix_unary_expression] = STATE(3111), - [sym_prefix_unary_expression] = STATE(3111), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6154), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3080), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3111), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3080), - [sym_member_access_expression] = STATE(2484), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3111), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7575), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_declaration_expression] = STATE(6803), - [sym_default_expression] = STATE(3080), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3080), - [sym_typeof_expression] = STATE(3080), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2484), - [sym_literal] = STATE(3080), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2222), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_parameter] = STATE(6769), + [sym__parameter_array] = STATE(6785), + [sym_argument] = STATE(7201), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(5152), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2196), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5812), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_tuple_element] = STATE(7166), + [sym_expression] = STATE(5095), + [sym_non_lvalue_expression] = STATE(5390), + [sym_lvalue_expression] = STATE(3605), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3102), + [sym_postfix_unary_expression] = STATE(3079), + [sym_prefix_unary_expression] = STATE(3079), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6134), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3102), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3079), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3102), + [sym_member_access_expression] = STATE(2472), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3079), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7309), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_declaration_expression] = STATE(6902), + [sym_default_expression] = STATE(3102), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3102), + [sym_typeof_expression] = STATE(3102), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2472), + [sym_literal] = STATE(3102), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2221), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(456), [sym_preproc_endregion] = STATE(456), [sym_preproc_line] = STATE(456), @@ -117659,53 +117545,53 @@ 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(2852), - [aux_sym__parameter_type_with_modifiers_repeat1] = STATE(3489), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [aux_sym__class_declaration_initializer_repeat1] = STATE(2843), + [aux_sym__parameter_type_with_modifiers_repeat1] = STATE(3452), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1481), - [anon_sym_LPAREN] = ACTIONS(895), - [anon_sym_RPAREN] = ACTIONS(2627), - [anon_sym_ref] = ACTIONS(2629), - [anon_sym_LBRACE] = ACTIONS(1487), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1479), + [anon_sym_LPAREN] = ACTIONS(659), + [anon_sym_RPAREN] = ACTIONS(2625), + [anon_sym_ref] = ACTIONS(2627), + [anon_sym_LBRACE] = ACTIONS(1481), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1061), - [anon_sym_readonly] = ACTIONS(1103), - [anon_sym_in] = ACTIONS(1105), - [anon_sym_out] = ACTIONS(1105), + [anon_sym_new] = ACTIONS(1059), + [anon_sym_readonly] = ACTIONS(1097), + [anon_sym_in] = ACTIONS(1099), + [anon_sym_out] = ACTIONS(1099), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1067), - [anon_sym_BANG] = ACTIONS(1495), - [anon_sym_TILDE] = ACTIONS(1495), - [anon_sym_PLUS_PLUS] = ACTIONS(1495), - [anon_sym_DASH_DASH] = ACTIONS(1495), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(1485), + [anon_sym_TILDE] = ACTIONS(1485), + [anon_sym_PLUS_PLUS] = ACTIONS(1485), + [anon_sym_DASH_DASH] = ACTIONS(1485), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1493), - [anon_sym_DASH] = ACTIONS(1493), - [anon_sym_STAR] = ACTIONS(905), - [anon_sym_CARET] = ACTIONS(1495), - [anon_sym_AMP] = ACTIONS(1495), - [anon_sym_this] = ACTIONS(1113), - [anon_sym_scoped] = ACTIONS(1115), - [anon_sym_params] = ACTIONS(1117), + [anon_sym_PLUS] = ACTIONS(1483), + [anon_sym_DASH] = ACTIONS(1483), + [anon_sym_STAR] = ACTIONS(683), + [anon_sym_CARET] = ACTIONS(1485), + [anon_sym_AMP] = ACTIONS(1485), + [anon_sym_this] = ACTIONS(1107), + [anon_sym_scoped] = ACTIONS(1109), + [anon_sym_params] = ACTIONS(1111), [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(2631), + [anon_sym_var] = ACTIONS(2629), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1067), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1079), + [anon_sym_throw] = ACTIONS(1077), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1081), - [anon_sym_DOT_DOT] = ACTIONS(911), + [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), @@ -117730,7 +117616,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(1089), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -117747,89 +117633,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [457] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_parameter] = STATE(6948), - [sym__parameter_array] = STATE(6996), - [sym_argument] = STATE(7189), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(5160), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2204), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5859), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_tuple_element] = STATE(7283), - [sym_expression] = STATE(5061), - [sym_non_lvalue_expression] = STATE(5560), - [sym_lvalue_expression] = STATE(3610), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3080), - [sym_postfix_unary_expression] = STATE(3111), - [sym_prefix_unary_expression] = STATE(3111), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6154), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3080), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3111), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3080), - [sym_member_access_expression] = STATE(2484), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3111), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7575), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_declaration_expression] = STATE(6803), - [sym_default_expression] = STATE(3080), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3080), - [sym_typeof_expression] = STATE(3080), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2484), - [sym_literal] = STATE(3080), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2222), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_parameter] = STATE(6769), + [sym__parameter_array] = STATE(6785), + [sym_argument] = STATE(7133), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(5152), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2196), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5807), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_tuple_element] = STATE(7166), + [sym_expression] = STATE(5095), + [sym_non_lvalue_expression] = STATE(5315), + [sym_lvalue_expression] = STATE(3602), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3102), + [sym_postfix_unary_expression] = STATE(3079), + [sym_prefix_unary_expression] = STATE(3079), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6134), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3102), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3079), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3102), + [sym_member_access_expression] = STATE(2472), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3079), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7309), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_declaration_expression] = STATE(6902), + [sym_default_expression] = STATE(3102), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3102), + [sym_typeof_expression] = STATE(3102), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2472), + [sym_literal] = STATE(3102), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2221), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(457), [sym_preproc_endregion] = STATE(457), [sym_preproc_line] = STATE(457), @@ -117839,53 +117725,53 @@ 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(2852), - [aux_sym__parameter_type_with_modifiers_repeat1] = STATE(3489), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [aux_sym__class_declaration_initializer_repeat1] = STATE(2843), + [aux_sym__parameter_type_with_modifiers_repeat1] = STATE(3452), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1481), - [anon_sym_LPAREN] = ACTIONS(895), - [anon_sym_RPAREN] = ACTIONS(2627), - [anon_sym_ref] = ACTIONS(2629), - [anon_sym_LBRACE] = ACTIONS(1487), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1479), + [anon_sym_LPAREN] = ACTIONS(659), + [anon_sym_RPAREN] = ACTIONS(2625), + [anon_sym_ref] = ACTIONS(2627), + [anon_sym_LBRACE] = ACTIONS(1481), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1061), - [anon_sym_readonly] = ACTIONS(1103), - [anon_sym_in] = ACTIONS(1105), - [anon_sym_out] = ACTIONS(1105), + [anon_sym_new] = ACTIONS(1059), + [anon_sym_readonly] = ACTIONS(1097), + [anon_sym_in] = ACTIONS(1099), + [anon_sym_out] = ACTIONS(1099), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1067), - [anon_sym_BANG] = ACTIONS(1495), - [anon_sym_TILDE] = ACTIONS(1495), - [anon_sym_PLUS_PLUS] = ACTIONS(1495), - [anon_sym_DASH_DASH] = ACTIONS(1495), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(1485), + [anon_sym_TILDE] = ACTIONS(1485), + [anon_sym_PLUS_PLUS] = ACTIONS(1485), + [anon_sym_DASH_DASH] = ACTIONS(1485), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1493), - [anon_sym_DASH] = ACTIONS(1493), - [anon_sym_STAR] = ACTIONS(905), - [anon_sym_CARET] = ACTIONS(1495), - [anon_sym_AMP] = ACTIONS(1495), - [anon_sym_this] = ACTIONS(1113), - [anon_sym_scoped] = ACTIONS(1115), - [anon_sym_params] = ACTIONS(1117), + [anon_sym_PLUS] = ACTIONS(1483), + [anon_sym_DASH] = ACTIONS(1483), + [anon_sym_STAR] = ACTIONS(683), + [anon_sym_CARET] = ACTIONS(1485), + [anon_sym_AMP] = ACTIONS(1485), + [anon_sym_this] = ACTIONS(1107), + [anon_sym_scoped] = ACTIONS(1109), + [anon_sym_params] = ACTIONS(1111), [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(2631), + [anon_sym_var] = ACTIONS(2629), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1067), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1079), + [anon_sym_throw] = ACTIONS(1077), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1081), - [anon_sym_DOT_DOT] = ACTIONS(911), + [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), @@ -117910,7 +117796,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(1089), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -117927,89 +117813,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [458] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_parameter] = STATE(6948), - [sym__parameter_array] = STATE(6996), - [sym_argument] = STATE(7273), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(5160), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2204), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5816), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_tuple_element] = STATE(7283), - [sym_expression] = STATE(5061), - [sym_non_lvalue_expression] = STATE(5333), - [sym_lvalue_expression] = STATE(3556), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3080), - [sym_postfix_unary_expression] = STATE(3111), - [sym_prefix_unary_expression] = STATE(3111), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6154), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3080), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3111), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3080), - [sym_member_access_expression] = STATE(2484), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3111), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7575), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_declaration_expression] = STATE(6803), - [sym_default_expression] = STATE(3080), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3080), - [sym_typeof_expression] = STATE(3080), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2484), - [sym_literal] = STATE(3080), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2222), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_parameter] = STATE(6769), + [sym__parameter_array] = STATE(6785), + [sym_argument] = STATE(7116), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(5152), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2196), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5843), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_tuple_element] = STATE(7166), + [sym_expression] = STATE(5095), + [sym_non_lvalue_expression] = STATE(5315), + [sym_lvalue_expression] = STATE(3598), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3102), + [sym_postfix_unary_expression] = STATE(3079), + [sym_prefix_unary_expression] = STATE(3079), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6134), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3102), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3079), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3102), + [sym_member_access_expression] = STATE(2472), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3079), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7309), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_declaration_expression] = STATE(6902), + [sym_default_expression] = STATE(3102), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3102), + [sym_typeof_expression] = STATE(3102), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2472), + [sym_literal] = STATE(3102), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2221), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(458), [sym_preproc_endregion] = STATE(458), [sym_preproc_line] = STATE(458), @@ -118019,53 +117905,53 @@ 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(2852), - [aux_sym__parameter_type_with_modifiers_repeat1] = STATE(3489), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [aux_sym__class_declaration_initializer_repeat1] = STATE(2843), + [aux_sym__parameter_type_with_modifiers_repeat1] = STATE(3452), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1481), - [anon_sym_LPAREN] = ACTIONS(895), - [anon_sym_RPAREN] = ACTIONS(2627), - [anon_sym_ref] = ACTIONS(2629), - [anon_sym_LBRACE] = ACTIONS(1487), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1479), + [anon_sym_LPAREN] = ACTIONS(659), + [anon_sym_RPAREN] = ACTIONS(2625), + [anon_sym_ref] = ACTIONS(2627), + [anon_sym_LBRACE] = ACTIONS(1481), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1061), - [anon_sym_readonly] = ACTIONS(1103), - [anon_sym_in] = ACTIONS(1105), - [anon_sym_out] = ACTIONS(1105), + [anon_sym_new] = ACTIONS(1059), + [anon_sym_readonly] = ACTIONS(1097), + [anon_sym_in] = ACTIONS(1099), + [anon_sym_out] = ACTIONS(1099), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1067), - [anon_sym_BANG] = ACTIONS(1495), - [anon_sym_TILDE] = ACTIONS(1495), - [anon_sym_PLUS_PLUS] = ACTIONS(1495), - [anon_sym_DASH_DASH] = ACTIONS(1495), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(1485), + [anon_sym_TILDE] = ACTIONS(1485), + [anon_sym_PLUS_PLUS] = ACTIONS(1485), + [anon_sym_DASH_DASH] = ACTIONS(1485), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1493), - [anon_sym_DASH] = ACTIONS(1493), - [anon_sym_STAR] = ACTIONS(905), - [anon_sym_CARET] = ACTIONS(1495), - [anon_sym_AMP] = ACTIONS(1495), - [anon_sym_this] = ACTIONS(1113), - [anon_sym_scoped] = ACTIONS(1115), - [anon_sym_params] = ACTIONS(1117), + [anon_sym_PLUS] = ACTIONS(1483), + [anon_sym_DASH] = ACTIONS(1483), + [anon_sym_STAR] = ACTIONS(683), + [anon_sym_CARET] = ACTIONS(1485), + [anon_sym_AMP] = ACTIONS(1485), + [anon_sym_this] = ACTIONS(1107), + [anon_sym_scoped] = ACTIONS(1109), + [anon_sym_params] = ACTIONS(1111), [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(2631), + [anon_sym_var] = ACTIONS(2629), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1067), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1079), + [anon_sym_throw] = ACTIONS(1077), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1081), - [anon_sym_DOT_DOT] = ACTIONS(911), + [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), @@ -118090,7 +117976,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(1089), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -118107,89 +117993,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [459] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_parameter] = STATE(6948), - [sym__parameter_array] = STATE(6996), - [sym_argument] = STATE(7247), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(5160), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2204), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5856), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_tuple_element] = STATE(7283), - [sym_expression] = STATE(5061), - [sym_non_lvalue_expression] = STATE(5333), - [sym_lvalue_expression] = STATE(3588), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3080), - [sym_postfix_unary_expression] = STATE(3111), - [sym_prefix_unary_expression] = STATE(3111), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6154), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3080), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3111), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3080), - [sym_member_access_expression] = STATE(2484), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3111), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7575), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_declaration_expression] = STATE(6803), - [sym_default_expression] = STATE(3080), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3080), - [sym_typeof_expression] = STATE(3080), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2484), - [sym_literal] = STATE(3080), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2222), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_parameter] = STATE(6769), + [sym__parameter_array] = STATE(6785), + [sym_argument] = STATE(7154), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(5152), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2196), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5843), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_tuple_element] = STATE(7166), + [sym_expression] = STATE(5095), + [sym_non_lvalue_expression] = STATE(5315), + [sym_lvalue_expression] = STATE(3543), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3102), + [sym_postfix_unary_expression] = STATE(3079), + [sym_prefix_unary_expression] = STATE(3079), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6134), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3102), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3079), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3102), + [sym_member_access_expression] = STATE(2472), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3079), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7309), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_declaration_expression] = STATE(6902), + [sym_default_expression] = STATE(3102), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3102), + [sym_typeof_expression] = STATE(3102), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2472), + [sym_literal] = STATE(3102), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2221), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(459), [sym_preproc_endregion] = STATE(459), [sym_preproc_line] = STATE(459), @@ -118199,53 +118085,53 @@ 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(2852), - [aux_sym__parameter_type_with_modifiers_repeat1] = STATE(3489), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [aux_sym__class_declaration_initializer_repeat1] = STATE(2843), + [aux_sym__parameter_type_with_modifiers_repeat1] = STATE(3452), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1481), - [anon_sym_LPAREN] = ACTIONS(895), - [anon_sym_RPAREN] = ACTIONS(2627), - [anon_sym_ref] = ACTIONS(2629), - [anon_sym_LBRACE] = ACTIONS(1487), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1479), + [anon_sym_LPAREN] = ACTIONS(659), + [anon_sym_RPAREN] = ACTIONS(2625), + [anon_sym_ref] = ACTIONS(2627), + [anon_sym_LBRACE] = ACTIONS(1481), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1061), - [anon_sym_readonly] = ACTIONS(1103), - [anon_sym_in] = ACTIONS(1105), - [anon_sym_out] = ACTIONS(1105), + [anon_sym_new] = ACTIONS(1059), + [anon_sym_readonly] = ACTIONS(1097), + [anon_sym_in] = ACTIONS(1099), + [anon_sym_out] = ACTIONS(1099), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1067), - [anon_sym_BANG] = ACTIONS(1495), - [anon_sym_TILDE] = ACTIONS(1495), - [anon_sym_PLUS_PLUS] = ACTIONS(1495), - [anon_sym_DASH_DASH] = ACTIONS(1495), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(1485), + [anon_sym_TILDE] = ACTIONS(1485), + [anon_sym_PLUS_PLUS] = ACTIONS(1485), + [anon_sym_DASH_DASH] = ACTIONS(1485), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1493), - [anon_sym_DASH] = ACTIONS(1493), - [anon_sym_STAR] = ACTIONS(905), - [anon_sym_CARET] = ACTIONS(1495), - [anon_sym_AMP] = ACTIONS(1495), - [anon_sym_this] = ACTIONS(1113), - [anon_sym_scoped] = ACTIONS(1115), - [anon_sym_params] = ACTIONS(1117), + [anon_sym_PLUS] = ACTIONS(1483), + [anon_sym_DASH] = ACTIONS(1483), + [anon_sym_STAR] = ACTIONS(683), + [anon_sym_CARET] = ACTIONS(1485), + [anon_sym_AMP] = ACTIONS(1485), + [anon_sym_this] = ACTIONS(1107), + [anon_sym_scoped] = ACTIONS(1109), + [anon_sym_params] = ACTIONS(1111), [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(2631), + [anon_sym_var] = ACTIONS(2629), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1067), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1079), + [anon_sym_throw] = ACTIONS(1077), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1081), - [anon_sym_DOT_DOT] = ACTIONS(911), + [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), @@ -118270,7 +118156,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(1089), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -118287,89 +118173,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [460] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_parameter] = STATE(6948), - [sym__parameter_array] = STATE(6996), - [sym_argument] = STATE(7143), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(5160), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2204), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5856), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_tuple_element] = STATE(7283), - [sym_expression] = STATE(5061), - [sym_non_lvalue_expression] = STATE(5333), - [sym_lvalue_expression] = STATE(3595), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3080), - [sym_postfix_unary_expression] = STATE(3111), - [sym_prefix_unary_expression] = STATE(3111), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6154), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3080), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3111), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3080), - [sym_member_access_expression] = STATE(2484), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3111), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7575), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_declaration_expression] = STATE(6803), - [sym_default_expression] = STATE(3080), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3080), - [sym_typeof_expression] = STATE(3080), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2484), - [sym_literal] = STATE(3080), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2222), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_parameter] = STATE(6769), + [sym__parameter_array] = STATE(6785), + [sym_argument] = STATE(7201), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(5152), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2196), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5843), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_tuple_element] = STATE(7166), + [sym_expression] = STATE(5095), + [sym_non_lvalue_expression] = STATE(5315), + [sym_lvalue_expression] = STATE(3605), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3102), + [sym_postfix_unary_expression] = STATE(3079), + [sym_prefix_unary_expression] = STATE(3079), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6134), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3102), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3079), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3102), + [sym_member_access_expression] = STATE(2472), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3079), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7309), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_declaration_expression] = STATE(6902), + [sym_default_expression] = STATE(3102), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3102), + [sym_typeof_expression] = STATE(3102), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2472), + [sym_literal] = STATE(3102), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2221), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(460), [sym_preproc_endregion] = STATE(460), [sym_preproc_line] = STATE(460), @@ -118379,53 +118265,53 @@ 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(2852), - [aux_sym__parameter_type_with_modifiers_repeat1] = STATE(3489), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [aux_sym__class_declaration_initializer_repeat1] = STATE(2843), + [aux_sym__parameter_type_with_modifiers_repeat1] = STATE(3452), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1481), - [anon_sym_LPAREN] = ACTIONS(895), - [anon_sym_RPAREN] = ACTIONS(2627), - [anon_sym_ref] = ACTIONS(2629), - [anon_sym_LBRACE] = ACTIONS(1487), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1479), + [anon_sym_LPAREN] = ACTIONS(659), + [anon_sym_RPAREN] = ACTIONS(2625), + [anon_sym_ref] = ACTIONS(2627), + [anon_sym_LBRACE] = ACTIONS(1481), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1061), - [anon_sym_readonly] = ACTIONS(1103), - [anon_sym_in] = ACTIONS(1105), - [anon_sym_out] = ACTIONS(1105), + [anon_sym_new] = ACTIONS(1059), + [anon_sym_readonly] = ACTIONS(1097), + [anon_sym_in] = ACTIONS(1099), + [anon_sym_out] = ACTIONS(1099), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1067), - [anon_sym_BANG] = ACTIONS(1495), - [anon_sym_TILDE] = ACTIONS(1495), - [anon_sym_PLUS_PLUS] = ACTIONS(1495), - [anon_sym_DASH_DASH] = ACTIONS(1495), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(1485), + [anon_sym_TILDE] = ACTIONS(1485), + [anon_sym_PLUS_PLUS] = ACTIONS(1485), + [anon_sym_DASH_DASH] = ACTIONS(1485), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1493), - [anon_sym_DASH] = ACTIONS(1493), - [anon_sym_STAR] = ACTIONS(905), - [anon_sym_CARET] = ACTIONS(1495), - [anon_sym_AMP] = ACTIONS(1495), - [anon_sym_this] = ACTIONS(1113), - [anon_sym_scoped] = ACTIONS(1115), - [anon_sym_params] = ACTIONS(1117), + [anon_sym_PLUS] = ACTIONS(1483), + [anon_sym_DASH] = ACTIONS(1483), + [anon_sym_STAR] = ACTIONS(683), + [anon_sym_CARET] = ACTIONS(1485), + [anon_sym_AMP] = ACTIONS(1485), + [anon_sym_this] = ACTIONS(1107), + [anon_sym_scoped] = ACTIONS(1109), + [anon_sym_params] = ACTIONS(1111), [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(2631), + [anon_sym_var] = ACTIONS(2629), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1067), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1079), + [anon_sym_throw] = ACTIONS(1077), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1081), - [anon_sym_DOT_DOT] = ACTIONS(911), + [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), @@ -118450,7 +118336,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(1089), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -118467,89 +118353,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [461] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_parameter] = STATE(6948), - [sym__parameter_array] = STATE(6996), - [sym_argument] = STATE(7189), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(5160), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2204), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5856), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_tuple_element] = STATE(7283), - [sym_expression] = STATE(5061), - [sym_non_lvalue_expression] = STATE(5333), - [sym_lvalue_expression] = STATE(3610), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3080), - [sym_postfix_unary_expression] = STATE(3111), - [sym_prefix_unary_expression] = STATE(3111), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6154), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3080), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3111), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3080), - [sym_member_access_expression] = STATE(2484), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3111), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7575), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_declaration_expression] = STATE(6803), - [sym_default_expression] = STATE(3080), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3080), - [sym_typeof_expression] = STATE(3080), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2484), - [sym_literal] = STATE(3080), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2222), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_parameter] = STATE(6769), + [sym__parameter_array] = STATE(6785), + [sym_argument] = STATE(7133), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(5152), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2196), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5824), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_tuple_element] = STATE(7166), + [sym_expression] = STATE(5095), + [sym_non_lvalue_expression] = STATE(5315), + [sym_lvalue_expression] = STATE(3602), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3102), + [sym_postfix_unary_expression] = STATE(3079), + [sym_prefix_unary_expression] = STATE(3079), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6134), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3102), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3079), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3102), + [sym_member_access_expression] = STATE(2472), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3079), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7309), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_declaration_expression] = STATE(6902), + [sym_default_expression] = STATE(3102), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3102), + [sym_typeof_expression] = STATE(3102), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2472), + [sym_literal] = STATE(3102), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2221), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(461), [sym_preproc_endregion] = STATE(461), [sym_preproc_line] = STATE(461), @@ -118559,53 +118445,53 @@ 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(2852), - [aux_sym__parameter_type_with_modifiers_repeat1] = STATE(3489), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [aux_sym__class_declaration_initializer_repeat1] = STATE(2843), + [aux_sym__parameter_type_with_modifiers_repeat1] = STATE(3452), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1481), - [anon_sym_LPAREN] = ACTIONS(895), - [anon_sym_RPAREN] = ACTIONS(2627), - [anon_sym_ref] = ACTIONS(2629), - [anon_sym_LBRACE] = ACTIONS(1487), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1479), + [anon_sym_LPAREN] = ACTIONS(659), + [anon_sym_RPAREN] = ACTIONS(2625), + [anon_sym_ref] = ACTIONS(2627), + [anon_sym_LBRACE] = ACTIONS(1481), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1061), - [anon_sym_readonly] = ACTIONS(1103), - [anon_sym_in] = ACTIONS(1105), - [anon_sym_out] = ACTIONS(1105), + [anon_sym_new] = ACTIONS(1059), + [anon_sym_readonly] = ACTIONS(1097), + [anon_sym_in] = ACTIONS(1099), + [anon_sym_out] = ACTIONS(1099), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1067), - [anon_sym_BANG] = ACTIONS(1495), - [anon_sym_TILDE] = ACTIONS(1495), - [anon_sym_PLUS_PLUS] = ACTIONS(1495), - [anon_sym_DASH_DASH] = ACTIONS(1495), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(1485), + [anon_sym_TILDE] = ACTIONS(1485), + [anon_sym_PLUS_PLUS] = ACTIONS(1485), + [anon_sym_DASH_DASH] = ACTIONS(1485), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1493), - [anon_sym_DASH] = ACTIONS(1493), - [anon_sym_STAR] = ACTIONS(905), - [anon_sym_CARET] = ACTIONS(1495), - [anon_sym_AMP] = ACTIONS(1495), - [anon_sym_this] = ACTIONS(1113), - [anon_sym_scoped] = ACTIONS(1115), - [anon_sym_params] = ACTIONS(1117), + [anon_sym_PLUS] = ACTIONS(1483), + [anon_sym_DASH] = ACTIONS(1483), + [anon_sym_STAR] = ACTIONS(683), + [anon_sym_CARET] = ACTIONS(1485), + [anon_sym_AMP] = ACTIONS(1485), + [anon_sym_this] = ACTIONS(1107), + [anon_sym_scoped] = ACTIONS(1109), + [anon_sym_params] = ACTIONS(1111), [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(2631), + [anon_sym_var] = ACTIONS(2629), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1067), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1079), + [anon_sym_throw] = ACTIONS(1077), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1081), - [anon_sym_DOT_DOT] = ACTIONS(911), + [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), @@ -118630,7 +118516,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(1089), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -118647,89 +118533,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [462] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_parameter] = STATE(6948), - [sym__parameter_array] = STATE(6996), - [sym_argument] = STATE(7273), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(5160), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2204), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5833), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_tuple_element] = STATE(7283), - [sym_expression] = STATE(5061), - [sym_non_lvalue_expression] = STATE(5333), - [sym_lvalue_expression] = STATE(3556), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3080), - [sym_postfix_unary_expression] = STATE(3111), - [sym_prefix_unary_expression] = STATE(3111), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6154), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3080), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3111), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3080), - [sym_member_access_expression] = STATE(2484), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3111), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7575), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_declaration_expression] = STATE(6803), - [sym_default_expression] = STATE(3080), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3080), - [sym_typeof_expression] = STATE(3080), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2484), - [sym_literal] = STATE(3080), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2222), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_parameter] = STATE(6769), + [sym__parameter_array] = STATE(6785), + [sym_argument] = STATE(7154), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(5152), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2196), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5826), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_tuple_element] = STATE(7166), + [sym_expression] = STATE(5095), + [sym_non_lvalue_expression] = STATE(5613), + [sym_lvalue_expression] = STATE(3543), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3102), + [sym_postfix_unary_expression] = STATE(3079), + [sym_prefix_unary_expression] = STATE(3079), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6134), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3102), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3079), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3102), + [sym_member_access_expression] = STATE(2472), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3079), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7309), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_declaration_expression] = STATE(6902), + [sym_default_expression] = STATE(3102), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3102), + [sym_typeof_expression] = STATE(3102), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2472), + [sym_literal] = STATE(3102), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2221), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(462), [sym_preproc_endregion] = STATE(462), [sym_preproc_line] = STATE(462), @@ -118739,53 +118625,53 @@ 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(2852), - [aux_sym__parameter_type_with_modifiers_repeat1] = STATE(3489), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [aux_sym__class_declaration_initializer_repeat1] = STATE(2843), + [aux_sym__parameter_type_with_modifiers_repeat1] = STATE(3452), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1481), - [anon_sym_LPAREN] = ACTIONS(895), - [anon_sym_RPAREN] = ACTIONS(2627), - [anon_sym_ref] = ACTIONS(2629), - [anon_sym_LBRACE] = ACTIONS(1487), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1479), + [anon_sym_LPAREN] = ACTIONS(659), + [anon_sym_RPAREN] = ACTIONS(2625), + [anon_sym_ref] = ACTIONS(2627), + [anon_sym_LBRACE] = ACTIONS(1481), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1061), - [anon_sym_readonly] = ACTIONS(1103), - [anon_sym_in] = ACTIONS(1105), - [anon_sym_out] = ACTIONS(1105), + [anon_sym_new] = ACTIONS(1059), + [anon_sym_readonly] = ACTIONS(1097), + [anon_sym_in] = ACTIONS(1099), + [anon_sym_out] = ACTIONS(1099), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1067), - [anon_sym_BANG] = ACTIONS(1495), - [anon_sym_TILDE] = ACTIONS(1495), - [anon_sym_PLUS_PLUS] = ACTIONS(1495), - [anon_sym_DASH_DASH] = ACTIONS(1495), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(1485), + [anon_sym_TILDE] = ACTIONS(1485), + [anon_sym_PLUS_PLUS] = ACTIONS(1485), + [anon_sym_DASH_DASH] = ACTIONS(1485), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1493), - [anon_sym_DASH] = ACTIONS(1493), - [anon_sym_STAR] = ACTIONS(905), - [anon_sym_CARET] = ACTIONS(1495), - [anon_sym_AMP] = ACTIONS(1495), - [anon_sym_this] = ACTIONS(1113), - [anon_sym_scoped] = ACTIONS(1115), - [anon_sym_params] = ACTIONS(1117), + [anon_sym_PLUS] = ACTIONS(1483), + [anon_sym_DASH] = ACTIONS(1483), + [anon_sym_STAR] = ACTIONS(683), + [anon_sym_CARET] = ACTIONS(1485), + [anon_sym_AMP] = ACTIONS(1485), + [anon_sym_this] = ACTIONS(1107), + [anon_sym_scoped] = ACTIONS(1109), + [anon_sym_params] = ACTIONS(1111), [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(2631), + [anon_sym_var] = ACTIONS(2629), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1067), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1079), + [anon_sym_throw] = ACTIONS(1077), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1081), - [anon_sym_DOT_DOT] = ACTIONS(911), + [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), @@ -118810,7 +118696,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(1089), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -118827,89 +118713,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [463] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_parameter] = STATE(6948), - [sym__parameter_array] = STATE(6996), - [sym_argument] = STATE(7143), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(5160), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2204), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5865), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_tuple_element] = STATE(7283), - [sym_expression] = STATE(5061), - [sym_non_lvalue_expression] = STATE(5661), - [sym_lvalue_expression] = STATE(3595), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3080), - [sym_postfix_unary_expression] = STATE(3111), - [sym_prefix_unary_expression] = STATE(3111), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6154), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3080), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3111), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3080), - [sym_member_access_expression] = STATE(2484), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3111), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7575), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_declaration_expression] = STATE(6803), - [sym_default_expression] = STATE(3080), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3080), - [sym_typeof_expression] = STATE(3080), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2484), - [sym_literal] = STATE(3080), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2222), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_parameter] = STATE(6769), + [sym__parameter_array] = STATE(6785), + [sym_argument] = STATE(7133), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(5152), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2196), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5858), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_tuple_element] = STATE(7166), + [sym_expression] = STATE(5095), + [sym_non_lvalue_expression] = STATE(5315), + [sym_lvalue_expression] = STATE(3602), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3102), + [sym_postfix_unary_expression] = STATE(3079), + [sym_prefix_unary_expression] = STATE(3079), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6134), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3102), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3079), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3102), + [sym_member_access_expression] = STATE(2472), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3079), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7309), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_declaration_expression] = STATE(6902), + [sym_default_expression] = STATE(3102), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3102), + [sym_typeof_expression] = STATE(3102), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2472), + [sym_literal] = STATE(3102), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2221), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(463), [sym_preproc_endregion] = STATE(463), [sym_preproc_line] = STATE(463), @@ -118919,53 +118805,53 @@ 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(2852), - [aux_sym__parameter_type_with_modifiers_repeat1] = STATE(3489), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [aux_sym__class_declaration_initializer_repeat1] = STATE(2843), + [aux_sym__parameter_type_with_modifiers_repeat1] = STATE(3452), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1481), - [anon_sym_LPAREN] = ACTIONS(895), - [anon_sym_RPAREN] = ACTIONS(2627), - [anon_sym_ref] = ACTIONS(2629), - [anon_sym_LBRACE] = ACTIONS(1487), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1479), + [anon_sym_LPAREN] = ACTIONS(659), + [anon_sym_RPAREN] = ACTIONS(2625), + [anon_sym_ref] = ACTIONS(2627), + [anon_sym_LBRACE] = ACTIONS(1481), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1061), - [anon_sym_readonly] = ACTIONS(1103), - [anon_sym_in] = ACTIONS(1105), - [anon_sym_out] = ACTIONS(1105), + [anon_sym_new] = ACTIONS(1059), + [anon_sym_readonly] = ACTIONS(1097), + [anon_sym_in] = ACTIONS(1099), + [anon_sym_out] = ACTIONS(1099), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1067), - [anon_sym_BANG] = ACTIONS(1495), - [anon_sym_TILDE] = ACTIONS(1495), - [anon_sym_PLUS_PLUS] = ACTIONS(1495), - [anon_sym_DASH_DASH] = ACTIONS(1495), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(1485), + [anon_sym_TILDE] = ACTIONS(1485), + [anon_sym_PLUS_PLUS] = ACTIONS(1485), + [anon_sym_DASH_DASH] = ACTIONS(1485), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1493), - [anon_sym_DASH] = ACTIONS(1493), - [anon_sym_STAR] = ACTIONS(905), - [anon_sym_CARET] = ACTIONS(1495), - [anon_sym_AMP] = ACTIONS(1495), - [anon_sym_this] = ACTIONS(1113), - [anon_sym_scoped] = ACTIONS(1115), - [anon_sym_params] = ACTIONS(1117), + [anon_sym_PLUS] = ACTIONS(1483), + [anon_sym_DASH] = ACTIONS(1483), + [anon_sym_STAR] = ACTIONS(683), + [anon_sym_CARET] = ACTIONS(1485), + [anon_sym_AMP] = ACTIONS(1485), + [anon_sym_this] = ACTIONS(1107), + [anon_sym_scoped] = ACTIONS(1109), + [anon_sym_params] = ACTIONS(1111), [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(2631), + [anon_sym_var] = ACTIONS(2629), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1067), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1079), + [anon_sym_throw] = ACTIONS(1077), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1081), - [anon_sym_DOT_DOT] = ACTIONS(911), + [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), @@ -118990,7 +118876,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(1089), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -119007,89 +118893,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [464] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_parameter] = STATE(6948), - [sym__parameter_array] = STATE(6996), - [sym_argument] = STATE(7273), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(5160), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2204), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5849), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_tuple_element] = STATE(7283), - [sym_expression] = STATE(5061), - [sym_non_lvalue_expression] = STATE(5333), - [sym_lvalue_expression] = STATE(3556), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3080), - [sym_postfix_unary_expression] = STATE(3111), - [sym_prefix_unary_expression] = STATE(3111), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6154), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3080), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3111), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3080), - [sym_member_access_expression] = STATE(2484), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3111), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7575), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_declaration_expression] = STATE(6803), - [sym_default_expression] = STATE(3080), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3080), - [sym_typeof_expression] = STATE(3080), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2484), - [sym_literal] = STATE(3080), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2222), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_parameter] = STATE(6769), + [sym__parameter_array] = STATE(6785), + [sym_argument] = STATE(7133), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(5152), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2196), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5819), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_tuple_element] = STATE(7166), + [sym_expression] = STATE(5095), + [sym_non_lvalue_expression] = STATE(5315), + [sym_lvalue_expression] = STATE(3602), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3102), + [sym_postfix_unary_expression] = STATE(3079), + [sym_prefix_unary_expression] = STATE(3079), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6134), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3102), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3079), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3102), + [sym_member_access_expression] = STATE(2472), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3079), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7309), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_declaration_expression] = STATE(6902), + [sym_default_expression] = STATE(3102), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3102), + [sym_typeof_expression] = STATE(3102), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2472), + [sym_literal] = STATE(3102), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2221), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(464), [sym_preproc_endregion] = STATE(464), [sym_preproc_line] = STATE(464), @@ -119099,53 +118985,53 @@ 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(2852), - [aux_sym__parameter_type_with_modifiers_repeat1] = STATE(3489), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [aux_sym__class_declaration_initializer_repeat1] = STATE(2843), + [aux_sym__parameter_type_with_modifiers_repeat1] = STATE(3452), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1481), - [anon_sym_LPAREN] = ACTIONS(895), - [anon_sym_RPAREN] = ACTIONS(2627), - [anon_sym_ref] = ACTIONS(2629), - [anon_sym_LBRACE] = ACTIONS(1487), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1479), + [anon_sym_LPAREN] = ACTIONS(659), + [anon_sym_RPAREN] = ACTIONS(2625), + [anon_sym_ref] = ACTIONS(2627), + [anon_sym_LBRACE] = ACTIONS(1481), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1061), - [anon_sym_readonly] = ACTIONS(1103), - [anon_sym_in] = ACTIONS(1105), - [anon_sym_out] = ACTIONS(1105), + [anon_sym_new] = ACTIONS(1059), + [anon_sym_readonly] = ACTIONS(1097), + [anon_sym_in] = ACTIONS(1099), + [anon_sym_out] = ACTIONS(1099), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1067), - [anon_sym_BANG] = ACTIONS(1495), - [anon_sym_TILDE] = ACTIONS(1495), - [anon_sym_PLUS_PLUS] = ACTIONS(1495), - [anon_sym_DASH_DASH] = ACTIONS(1495), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(1485), + [anon_sym_TILDE] = ACTIONS(1485), + [anon_sym_PLUS_PLUS] = ACTIONS(1485), + [anon_sym_DASH_DASH] = ACTIONS(1485), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1493), - [anon_sym_DASH] = ACTIONS(1493), - [anon_sym_STAR] = ACTIONS(905), - [anon_sym_CARET] = ACTIONS(1495), - [anon_sym_AMP] = ACTIONS(1495), - [anon_sym_this] = ACTIONS(1113), - [anon_sym_scoped] = ACTIONS(1115), - [anon_sym_params] = ACTIONS(1117), + [anon_sym_PLUS] = ACTIONS(1483), + [anon_sym_DASH] = ACTIONS(1483), + [anon_sym_STAR] = ACTIONS(683), + [anon_sym_CARET] = ACTIONS(1485), + [anon_sym_AMP] = ACTIONS(1485), + [anon_sym_this] = ACTIONS(1107), + [anon_sym_scoped] = ACTIONS(1109), + [anon_sym_params] = ACTIONS(1111), [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(2631), + [anon_sym_var] = ACTIONS(2629), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1067), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1079), + [anon_sym_throw] = ACTIONS(1077), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1081), - [anon_sym_DOT_DOT] = ACTIONS(911), + [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), @@ -119170,7 +119056,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(1089), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -119187,89 +119073,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [465] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_parameter] = STATE(6948), - [sym__parameter_array] = STATE(6996), - [sym_argument] = STATE(7273), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(5160), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2204), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5831), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_tuple_element] = STATE(7283), - [sym_expression] = STATE(5061), - [sym_non_lvalue_expression] = STATE(5333), - [sym_lvalue_expression] = STATE(3556), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3080), - [sym_postfix_unary_expression] = STATE(3111), - [sym_prefix_unary_expression] = STATE(3111), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6154), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3080), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3111), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3080), - [sym_member_access_expression] = STATE(2484), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3111), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7575), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_declaration_expression] = STATE(6803), - [sym_default_expression] = STATE(3080), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3080), - [sym_typeof_expression] = STATE(3080), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2484), - [sym_literal] = STATE(3080), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2222), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_parameter] = STATE(6769), + [sym__parameter_array] = STATE(6785), + [sym_argument] = STATE(7133), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(5152), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2196), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5843), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_tuple_element] = STATE(7166), + [sym_expression] = STATE(5095), + [sym_non_lvalue_expression] = STATE(5315), + [sym_lvalue_expression] = STATE(3602), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3102), + [sym_postfix_unary_expression] = STATE(3079), + [sym_prefix_unary_expression] = STATE(3079), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6134), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3102), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3079), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3102), + [sym_member_access_expression] = STATE(2472), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3079), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7309), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_declaration_expression] = STATE(6902), + [sym_default_expression] = STATE(3102), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3102), + [sym_typeof_expression] = STATE(3102), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2472), + [sym_literal] = STATE(3102), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2221), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(465), [sym_preproc_endregion] = STATE(465), [sym_preproc_line] = STATE(465), @@ -119279,53 +119165,53 @@ 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(2852), - [aux_sym__parameter_type_with_modifiers_repeat1] = STATE(3489), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [aux_sym__class_declaration_initializer_repeat1] = STATE(2843), + [aux_sym__parameter_type_with_modifiers_repeat1] = STATE(3452), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1481), - [anon_sym_LPAREN] = ACTIONS(895), - [anon_sym_RPAREN] = ACTIONS(2627), - [anon_sym_ref] = ACTIONS(2629), - [anon_sym_LBRACE] = ACTIONS(1487), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1479), + [anon_sym_LPAREN] = ACTIONS(659), + [anon_sym_RPAREN] = ACTIONS(2625), + [anon_sym_ref] = ACTIONS(2627), + [anon_sym_LBRACE] = ACTIONS(1481), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1061), - [anon_sym_readonly] = ACTIONS(1103), - [anon_sym_in] = ACTIONS(1105), - [anon_sym_out] = ACTIONS(1105), + [anon_sym_new] = ACTIONS(1059), + [anon_sym_readonly] = ACTIONS(1097), + [anon_sym_in] = ACTIONS(1099), + [anon_sym_out] = ACTIONS(1099), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1067), - [anon_sym_BANG] = ACTIONS(1495), - [anon_sym_TILDE] = ACTIONS(1495), - [anon_sym_PLUS_PLUS] = ACTIONS(1495), - [anon_sym_DASH_DASH] = ACTIONS(1495), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(1485), + [anon_sym_TILDE] = ACTIONS(1485), + [anon_sym_PLUS_PLUS] = ACTIONS(1485), + [anon_sym_DASH_DASH] = ACTIONS(1485), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1493), - [anon_sym_DASH] = ACTIONS(1493), - [anon_sym_STAR] = ACTIONS(905), - [anon_sym_CARET] = ACTIONS(1495), - [anon_sym_AMP] = ACTIONS(1495), - [anon_sym_this] = ACTIONS(1113), - [anon_sym_scoped] = ACTIONS(1115), - [anon_sym_params] = ACTIONS(1117), + [anon_sym_PLUS] = ACTIONS(1483), + [anon_sym_DASH] = ACTIONS(1483), + [anon_sym_STAR] = ACTIONS(683), + [anon_sym_CARET] = ACTIONS(1485), + [anon_sym_AMP] = ACTIONS(1485), + [anon_sym_this] = ACTIONS(1107), + [anon_sym_scoped] = ACTIONS(1109), + [anon_sym_params] = ACTIONS(1111), [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(2631), + [anon_sym_var] = ACTIONS(2629), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1067), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1079), + [anon_sym_throw] = ACTIONS(1077), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1081), - [anon_sym_DOT_DOT] = ACTIONS(911), + [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), @@ -119350,7 +119236,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(1089), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -119367,89 +119253,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [466] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_parameter] = STATE(6948), - [sym__parameter_array] = STATE(6996), - [sym_argument] = STATE(7273), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(5160), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2204), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5856), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_tuple_element] = STATE(7283), - [sym_expression] = STATE(5061), - [sym_non_lvalue_expression] = STATE(5333), - [sym_lvalue_expression] = STATE(3556), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3080), - [sym_postfix_unary_expression] = STATE(3111), - [sym_prefix_unary_expression] = STATE(3111), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6154), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3080), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3111), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3080), - [sym_member_access_expression] = STATE(2484), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3111), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7575), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_declaration_expression] = STATE(6803), - [sym_default_expression] = STATE(3080), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3080), - [sym_typeof_expression] = STATE(3080), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2484), - [sym_literal] = STATE(3080), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2222), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_parameter] = STATE(6769), + [sym__parameter_array] = STATE(6785), + [sym_argument] = STATE(7154), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(5152), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2196), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5849), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_tuple_element] = STATE(7166), + [sym_expression] = STATE(5095), + [sym_non_lvalue_expression] = STATE(5613), + [sym_lvalue_expression] = STATE(3543), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3102), + [sym_postfix_unary_expression] = STATE(3079), + [sym_prefix_unary_expression] = STATE(3079), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6134), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3102), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3079), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3102), + [sym_member_access_expression] = STATE(2472), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3079), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7309), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_declaration_expression] = STATE(6902), + [sym_default_expression] = STATE(3102), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3102), + [sym_typeof_expression] = STATE(3102), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2472), + [sym_literal] = STATE(3102), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2221), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(466), [sym_preproc_endregion] = STATE(466), [sym_preproc_line] = STATE(466), @@ -119459,53 +119345,53 @@ 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(2852), - [aux_sym__parameter_type_with_modifiers_repeat1] = STATE(3489), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [aux_sym__class_declaration_initializer_repeat1] = STATE(2843), + [aux_sym__parameter_type_with_modifiers_repeat1] = STATE(3452), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1481), - [anon_sym_LPAREN] = ACTIONS(895), - [anon_sym_RPAREN] = ACTIONS(2627), - [anon_sym_ref] = ACTIONS(2629), - [anon_sym_LBRACE] = ACTIONS(1487), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1479), + [anon_sym_LPAREN] = ACTIONS(659), + [anon_sym_RPAREN] = ACTIONS(2625), + [anon_sym_ref] = ACTIONS(2627), + [anon_sym_LBRACE] = ACTIONS(1481), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1061), - [anon_sym_readonly] = ACTIONS(1103), - [anon_sym_in] = ACTIONS(1105), - [anon_sym_out] = ACTIONS(1105), + [anon_sym_new] = ACTIONS(1059), + [anon_sym_readonly] = ACTIONS(1097), + [anon_sym_in] = ACTIONS(1099), + [anon_sym_out] = ACTIONS(1099), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1067), - [anon_sym_BANG] = ACTIONS(1495), - [anon_sym_TILDE] = ACTIONS(1495), - [anon_sym_PLUS_PLUS] = ACTIONS(1495), - [anon_sym_DASH_DASH] = ACTIONS(1495), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(1485), + [anon_sym_TILDE] = ACTIONS(1485), + [anon_sym_PLUS_PLUS] = ACTIONS(1485), + [anon_sym_DASH_DASH] = ACTIONS(1485), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1493), - [anon_sym_DASH] = ACTIONS(1493), - [anon_sym_STAR] = ACTIONS(905), - [anon_sym_CARET] = ACTIONS(1495), - [anon_sym_AMP] = ACTIONS(1495), - [anon_sym_this] = ACTIONS(1113), - [anon_sym_scoped] = ACTIONS(1115), - [anon_sym_params] = ACTIONS(1117), + [anon_sym_PLUS] = ACTIONS(1483), + [anon_sym_DASH] = ACTIONS(1483), + [anon_sym_STAR] = ACTIONS(683), + [anon_sym_CARET] = ACTIONS(1485), + [anon_sym_AMP] = ACTIONS(1485), + [anon_sym_this] = ACTIONS(1107), + [anon_sym_scoped] = ACTIONS(1109), + [anon_sym_params] = ACTIONS(1111), [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(2631), + [anon_sym_var] = ACTIONS(2629), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1067), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1079), + [anon_sym_throw] = ACTIONS(1077), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1081), - [anon_sym_DOT_DOT] = ACTIONS(911), + [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), @@ -119530,7 +119416,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(1089), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -119547,89 +119433,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [467] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_parameter] = STATE(6948), - [sym__parameter_array] = STATE(6996), - [sym_argument] = STATE(7143), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(5160), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2204), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5817), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_tuple_element] = STATE(7283), - [sym_expression] = STATE(5061), - [sym_non_lvalue_expression] = STATE(5661), - [sym_lvalue_expression] = STATE(3595), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3080), - [sym_postfix_unary_expression] = STATE(3111), - [sym_prefix_unary_expression] = STATE(3111), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6154), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3080), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3111), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3080), - [sym_member_access_expression] = STATE(2484), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3111), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7575), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_declaration_expression] = STATE(6803), - [sym_default_expression] = STATE(3080), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3080), - [sym_typeof_expression] = STATE(3080), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2484), - [sym_literal] = STATE(3080), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2222), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_parameter] = STATE(6769), + [sym__parameter_array] = STATE(6785), + [sym_argument] = STATE(7116), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(5152), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2196), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5789), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_tuple_element] = STATE(7166), + [sym_expression] = STATE(5095), + [sym_non_lvalue_expression] = STATE(5536), + [sym_lvalue_expression] = STATE(3598), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3102), + [sym_postfix_unary_expression] = STATE(3079), + [sym_prefix_unary_expression] = STATE(3079), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6134), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3102), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3079), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3102), + [sym_member_access_expression] = STATE(2472), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3079), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7309), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_declaration_expression] = STATE(6902), + [sym_default_expression] = STATE(3102), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3102), + [sym_typeof_expression] = STATE(3102), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2472), + [sym_literal] = STATE(3102), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2221), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(467), [sym_preproc_endregion] = STATE(467), [sym_preproc_line] = STATE(467), @@ -119639,53 +119525,53 @@ 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(2852), - [aux_sym__parameter_type_with_modifiers_repeat1] = STATE(3489), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [aux_sym__class_declaration_initializer_repeat1] = STATE(2843), + [aux_sym__parameter_type_with_modifiers_repeat1] = STATE(3452), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1481), - [anon_sym_LPAREN] = ACTIONS(895), - [anon_sym_RPAREN] = ACTIONS(2627), - [anon_sym_ref] = ACTIONS(2629), - [anon_sym_LBRACE] = ACTIONS(1487), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1479), + [anon_sym_LPAREN] = ACTIONS(659), + [anon_sym_RPAREN] = ACTIONS(2625), + [anon_sym_ref] = ACTIONS(2627), + [anon_sym_LBRACE] = ACTIONS(1481), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1061), - [anon_sym_readonly] = ACTIONS(1103), - [anon_sym_in] = ACTIONS(1105), - [anon_sym_out] = ACTIONS(1105), + [anon_sym_new] = ACTIONS(1059), + [anon_sym_readonly] = ACTIONS(1097), + [anon_sym_in] = ACTIONS(1099), + [anon_sym_out] = ACTIONS(1099), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1067), - [anon_sym_BANG] = ACTIONS(1495), - [anon_sym_TILDE] = ACTIONS(1495), - [anon_sym_PLUS_PLUS] = ACTIONS(1495), - [anon_sym_DASH_DASH] = ACTIONS(1495), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(1485), + [anon_sym_TILDE] = ACTIONS(1485), + [anon_sym_PLUS_PLUS] = ACTIONS(1485), + [anon_sym_DASH_DASH] = ACTIONS(1485), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1493), - [anon_sym_DASH] = ACTIONS(1493), - [anon_sym_STAR] = ACTIONS(905), - [anon_sym_CARET] = ACTIONS(1495), - [anon_sym_AMP] = ACTIONS(1495), - [anon_sym_this] = ACTIONS(1113), - [anon_sym_scoped] = ACTIONS(1115), - [anon_sym_params] = ACTIONS(1117), + [anon_sym_PLUS] = ACTIONS(1483), + [anon_sym_DASH] = ACTIONS(1483), + [anon_sym_STAR] = ACTIONS(683), + [anon_sym_CARET] = ACTIONS(1485), + [anon_sym_AMP] = ACTIONS(1485), + [anon_sym_this] = ACTIONS(1107), + [anon_sym_scoped] = ACTIONS(1109), + [anon_sym_params] = ACTIONS(1111), [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(2631), + [anon_sym_var] = ACTIONS(2629), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1067), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1079), + [anon_sym_throw] = ACTIONS(1077), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1081), - [anon_sym_DOT_DOT] = ACTIONS(911), + [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), @@ -119710,7 +119596,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(1089), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -119727,89 +119613,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [468] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_parameter] = STATE(6948), - [sym__parameter_array] = STATE(6996), - [sym_argument] = STATE(7247), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(5160), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2204), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5840), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_tuple_element] = STATE(7283), - [sym_expression] = STATE(5061), - [sym_non_lvalue_expression] = STATE(5597), - [sym_lvalue_expression] = STATE(3588), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3080), - [sym_postfix_unary_expression] = STATE(3111), - [sym_prefix_unary_expression] = STATE(3111), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6154), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3080), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3111), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3080), - [sym_member_access_expression] = STATE(2484), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3111), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7575), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_declaration_expression] = STATE(6803), - [sym_default_expression] = STATE(3080), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3080), - [sym_typeof_expression] = STATE(3080), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2484), - [sym_literal] = STATE(3080), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2222), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_parameter] = STATE(6769), + [sym__parameter_array] = STATE(6785), + [sym_argument] = STATE(7154), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(5152), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2196), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5798), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_tuple_element] = STATE(7166), + [sym_expression] = STATE(5095), + [sym_non_lvalue_expression] = STATE(5613), + [sym_lvalue_expression] = STATE(3543), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3102), + [sym_postfix_unary_expression] = STATE(3079), + [sym_prefix_unary_expression] = STATE(3079), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6134), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3102), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3079), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3102), + [sym_member_access_expression] = STATE(2472), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3079), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7309), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_declaration_expression] = STATE(6902), + [sym_default_expression] = STATE(3102), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3102), + [sym_typeof_expression] = STATE(3102), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2472), + [sym_literal] = STATE(3102), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2221), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(468), [sym_preproc_endregion] = STATE(468), [sym_preproc_line] = STATE(468), @@ -119819,53 +119705,53 @@ 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(2852), - [aux_sym__parameter_type_with_modifiers_repeat1] = STATE(3489), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [aux_sym__class_declaration_initializer_repeat1] = STATE(2843), + [aux_sym__parameter_type_with_modifiers_repeat1] = STATE(3452), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1481), - [anon_sym_LPAREN] = ACTIONS(895), - [anon_sym_RPAREN] = ACTIONS(2627), - [anon_sym_ref] = ACTIONS(2629), - [anon_sym_LBRACE] = ACTIONS(1487), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1479), + [anon_sym_LPAREN] = ACTIONS(659), + [anon_sym_RPAREN] = ACTIONS(2625), + [anon_sym_ref] = ACTIONS(2627), + [anon_sym_LBRACE] = ACTIONS(1481), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1061), - [anon_sym_readonly] = ACTIONS(1103), - [anon_sym_in] = ACTIONS(1105), - [anon_sym_out] = ACTIONS(1105), + [anon_sym_new] = ACTIONS(1059), + [anon_sym_readonly] = ACTIONS(1097), + [anon_sym_in] = ACTIONS(1099), + [anon_sym_out] = ACTIONS(1099), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1067), - [anon_sym_BANG] = ACTIONS(1495), - [anon_sym_TILDE] = ACTIONS(1495), - [anon_sym_PLUS_PLUS] = ACTIONS(1495), - [anon_sym_DASH_DASH] = ACTIONS(1495), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(1485), + [anon_sym_TILDE] = ACTIONS(1485), + [anon_sym_PLUS_PLUS] = ACTIONS(1485), + [anon_sym_DASH_DASH] = ACTIONS(1485), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1493), - [anon_sym_DASH] = ACTIONS(1493), - [anon_sym_STAR] = ACTIONS(905), - [anon_sym_CARET] = ACTIONS(1495), - [anon_sym_AMP] = ACTIONS(1495), - [anon_sym_this] = ACTIONS(1113), - [anon_sym_scoped] = ACTIONS(1115), - [anon_sym_params] = ACTIONS(1117), + [anon_sym_PLUS] = ACTIONS(1483), + [anon_sym_DASH] = ACTIONS(1483), + [anon_sym_STAR] = ACTIONS(683), + [anon_sym_CARET] = ACTIONS(1485), + [anon_sym_AMP] = ACTIONS(1485), + [anon_sym_this] = ACTIONS(1107), + [anon_sym_scoped] = ACTIONS(1109), + [anon_sym_params] = ACTIONS(1111), [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(2631), + [anon_sym_var] = ACTIONS(2629), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1067), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1079), + [anon_sym_throw] = ACTIONS(1077), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1081), - [anon_sym_DOT_DOT] = ACTIONS(911), + [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), @@ -119890,7 +119776,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(1089), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -119907,89 +119793,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [469] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_parameter] = STATE(6948), - [sym__parameter_array] = STATE(6996), - [sym_argument] = STATE(7143), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(5160), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2204), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5848), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_tuple_element] = STATE(7283), - [sym_expression] = STATE(5061), - [sym_non_lvalue_expression] = STATE(5661), - [sym_lvalue_expression] = STATE(3595), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3080), - [sym_postfix_unary_expression] = STATE(3111), - [sym_prefix_unary_expression] = STATE(3111), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6154), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3080), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3111), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3080), - [sym_member_access_expression] = STATE(2484), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3111), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7575), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_declaration_expression] = STATE(6803), - [sym_default_expression] = STATE(3080), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3080), - [sym_typeof_expression] = STATE(3080), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2484), - [sym_literal] = STATE(3080), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2222), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_parameter] = STATE(6769), + [sym__parameter_array] = STATE(6785), + [sym_argument] = STATE(7201), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(5152), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2196), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5811), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_tuple_element] = STATE(7166), + [sym_expression] = STATE(5095), + [sym_non_lvalue_expression] = STATE(5390), + [sym_lvalue_expression] = STATE(3605), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3102), + [sym_postfix_unary_expression] = STATE(3079), + [sym_prefix_unary_expression] = STATE(3079), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6134), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3102), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3079), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3102), + [sym_member_access_expression] = STATE(2472), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3079), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7309), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_declaration_expression] = STATE(6902), + [sym_default_expression] = STATE(3102), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3102), + [sym_typeof_expression] = STATE(3102), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2472), + [sym_literal] = STATE(3102), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2221), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(469), [sym_preproc_endregion] = STATE(469), [sym_preproc_line] = STATE(469), @@ -119999,53 +119885,53 @@ 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(2852), - [aux_sym__parameter_type_with_modifiers_repeat1] = STATE(3489), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [aux_sym__class_declaration_initializer_repeat1] = STATE(2843), + [aux_sym__parameter_type_with_modifiers_repeat1] = STATE(3452), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1481), - [anon_sym_LPAREN] = ACTIONS(895), - [anon_sym_RPAREN] = ACTIONS(2627), - [anon_sym_ref] = ACTIONS(2629), - [anon_sym_LBRACE] = ACTIONS(1487), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1479), + [anon_sym_LPAREN] = ACTIONS(659), + [anon_sym_RPAREN] = ACTIONS(2625), + [anon_sym_ref] = ACTIONS(2627), + [anon_sym_LBRACE] = ACTIONS(1481), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1061), - [anon_sym_readonly] = ACTIONS(1103), - [anon_sym_in] = ACTIONS(1105), - [anon_sym_out] = ACTIONS(1105), + [anon_sym_new] = ACTIONS(1059), + [anon_sym_readonly] = ACTIONS(1097), + [anon_sym_in] = ACTIONS(1099), + [anon_sym_out] = ACTIONS(1099), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1067), - [anon_sym_BANG] = ACTIONS(1495), - [anon_sym_TILDE] = ACTIONS(1495), - [anon_sym_PLUS_PLUS] = ACTIONS(1495), - [anon_sym_DASH_DASH] = ACTIONS(1495), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(1485), + [anon_sym_TILDE] = ACTIONS(1485), + [anon_sym_PLUS_PLUS] = ACTIONS(1485), + [anon_sym_DASH_DASH] = ACTIONS(1485), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1493), - [anon_sym_DASH] = ACTIONS(1493), - [anon_sym_STAR] = ACTIONS(905), - [anon_sym_CARET] = ACTIONS(1495), - [anon_sym_AMP] = ACTIONS(1495), - [anon_sym_this] = ACTIONS(1113), - [anon_sym_scoped] = ACTIONS(1115), - [anon_sym_params] = ACTIONS(1117), + [anon_sym_PLUS] = ACTIONS(1483), + [anon_sym_DASH] = ACTIONS(1483), + [anon_sym_STAR] = ACTIONS(683), + [anon_sym_CARET] = ACTIONS(1485), + [anon_sym_AMP] = ACTIONS(1485), + [anon_sym_this] = ACTIONS(1107), + [anon_sym_scoped] = ACTIONS(1109), + [anon_sym_params] = ACTIONS(1111), [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(2631), + [anon_sym_var] = ACTIONS(2629), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1067), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1079), + [anon_sym_throw] = ACTIONS(1077), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1081), - [anon_sym_DOT_DOT] = ACTIONS(911), + [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), @@ -120070,7 +119956,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(1089), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -120087,89 +119973,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [470] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_parameter] = STATE(6948), - [sym__parameter_array] = STATE(6996), - [sym_argument] = STATE(7189), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(5160), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2204), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5842), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_tuple_element] = STATE(7283), - [sym_expression] = STATE(5061), - [sym_non_lvalue_expression] = STATE(5560), - [sym_lvalue_expression] = STATE(3610), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3080), - [sym_postfix_unary_expression] = STATE(3111), - [sym_prefix_unary_expression] = STATE(3111), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6154), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3080), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3111), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3080), - [sym_member_access_expression] = STATE(2484), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3111), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7575), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_declaration_expression] = STATE(6803), - [sym_default_expression] = STATE(3080), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3080), - [sym_typeof_expression] = STATE(3080), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2484), - [sym_literal] = STATE(3080), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2222), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_parameter] = STATE(6769), + [sym__parameter_array] = STATE(6785), + [sym_argument] = STATE(7133), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(5152), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2196), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5827), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_tuple_element] = STATE(7166), + [sym_expression] = STATE(5095), + [sym_non_lvalue_expression] = STATE(5315), + [sym_lvalue_expression] = STATE(3602), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3102), + [sym_postfix_unary_expression] = STATE(3079), + [sym_prefix_unary_expression] = STATE(3079), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6134), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3102), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3079), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3102), + [sym_member_access_expression] = STATE(2472), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3079), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7309), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_declaration_expression] = STATE(6902), + [sym_default_expression] = STATE(3102), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3102), + [sym_typeof_expression] = STATE(3102), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2472), + [sym_literal] = STATE(3102), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2221), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(470), [sym_preproc_endregion] = STATE(470), [sym_preproc_line] = STATE(470), @@ -120179,53 +120065,53 @@ 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(2852), - [aux_sym__parameter_type_with_modifiers_repeat1] = STATE(3489), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [aux_sym__class_declaration_initializer_repeat1] = STATE(2843), + [aux_sym__parameter_type_with_modifiers_repeat1] = STATE(3452), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1481), - [anon_sym_LPAREN] = ACTIONS(895), - [anon_sym_RPAREN] = ACTIONS(2627), - [anon_sym_ref] = ACTIONS(2629), - [anon_sym_LBRACE] = ACTIONS(1487), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1479), + [anon_sym_LPAREN] = ACTIONS(659), + [anon_sym_RPAREN] = ACTIONS(2625), + [anon_sym_ref] = ACTIONS(2627), + [anon_sym_LBRACE] = ACTIONS(1481), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1061), - [anon_sym_readonly] = ACTIONS(1103), - [anon_sym_in] = ACTIONS(1105), - [anon_sym_out] = ACTIONS(1105), + [anon_sym_new] = ACTIONS(1059), + [anon_sym_readonly] = ACTIONS(1097), + [anon_sym_in] = ACTIONS(1099), + [anon_sym_out] = ACTIONS(1099), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1067), - [anon_sym_BANG] = ACTIONS(1495), - [anon_sym_TILDE] = ACTIONS(1495), - [anon_sym_PLUS_PLUS] = ACTIONS(1495), - [anon_sym_DASH_DASH] = ACTIONS(1495), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(1485), + [anon_sym_TILDE] = ACTIONS(1485), + [anon_sym_PLUS_PLUS] = ACTIONS(1485), + [anon_sym_DASH_DASH] = ACTIONS(1485), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1493), - [anon_sym_DASH] = ACTIONS(1493), - [anon_sym_STAR] = ACTIONS(905), - [anon_sym_CARET] = ACTIONS(1495), - [anon_sym_AMP] = ACTIONS(1495), - [anon_sym_this] = ACTIONS(1113), - [anon_sym_scoped] = ACTIONS(1115), - [anon_sym_params] = ACTIONS(1117), + [anon_sym_PLUS] = ACTIONS(1483), + [anon_sym_DASH] = ACTIONS(1483), + [anon_sym_STAR] = ACTIONS(683), + [anon_sym_CARET] = ACTIONS(1485), + [anon_sym_AMP] = ACTIONS(1485), + [anon_sym_this] = ACTIONS(1107), + [anon_sym_scoped] = ACTIONS(1109), + [anon_sym_params] = ACTIONS(1111), [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(2631), + [anon_sym_var] = ACTIONS(2629), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1067), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1079), + [anon_sym_throw] = ACTIONS(1077), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1081), - [anon_sym_DOT_DOT] = ACTIONS(911), + [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), @@ -120250,7 +120136,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(1089), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -120267,89 +120153,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [471] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_parameter] = STATE(6948), - [sym__parameter_array] = STATE(6996), - [sym_argument] = STATE(7273), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(5160), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2204), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5830), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_tuple_element] = STATE(7283), - [sym_expression] = STATE(5061), - [sym_non_lvalue_expression] = STATE(5333), - [sym_lvalue_expression] = STATE(3556), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3080), - [sym_postfix_unary_expression] = STATE(3111), - [sym_prefix_unary_expression] = STATE(3111), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6154), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3080), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3111), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3080), - [sym_member_access_expression] = STATE(2484), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3111), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7575), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_declaration_expression] = STATE(6803), - [sym_default_expression] = STATE(3080), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3080), - [sym_typeof_expression] = STATE(3080), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2484), - [sym_literal] = STATE(3080), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2222), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_parameter] = STATE(6769), + [sym__parameter_array] = STATE(6785), + [sym_argument] = STATE(7133), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(5152), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2196), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5796), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_tuple_element] = STATE(7166), + [sym_expression] = STATE(5095), + [sym_non_lvalue_expression] = STATE(5315), + [sym_lvalue_expression] = STATE(3602), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3102), + [sym_postfix_unary_expression] = STATE(3079), + [sym_prefix_unary_expression] = STATE(3079), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6134), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3102), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3079), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3102), + [sym_member_access_expression] = STATE(2472), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3079), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7309), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_declaration_expression] = STATE(6902), + [sym_default_expression] = STATE(3102), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3102), + [sym_typeof_expression] = STATE(3102), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2472), + [sym_literal] = STATE(3102), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2221), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(471), [sym_preproc_endregion] = STATE(471), [sym_preproc_line] = STATE(471), @@ -120359,53 +120245,53 @@ 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(2852), - [aux_sym__parameter_type_with_modifiers_repeat1] = STATE(3489), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [aux_sym__class_declaration_initializer_repeat1] = STATE(2843), + [aux_sym__parameter_type_with_modifiers_repeat1] = STATE(3452), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1481), - [anon_sym_LPAREN] = ACTIONS(895), - [anon_sym_RPAREN] = ACTIONS(2627), - [anon_sym_ref] = ACTIONS(2629), - [anon_sym_LBRACE] = ACTIONS(1487), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1479), + [anon_sym_LPAREN] = ACTIONS(659), + [anon_sym_RPAREN] = ACTIONS(2625), + [anon_sym_ref] = ACTIONS(2627), + [anon_sym_LBRACE] = ACTIONS(1481), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1061), - [anon_sym_readonly] = ACTIONS(1103), - [anon_sym_in] = ACTIONS(1105), - [anon_sym_out] = ACTIONS(1105), + [anon_sym_new] = ACTIONS(1059), + [anon_sym_readonly] = ACTIONS(1097), + [anon_sym_in] = ACTIONS(1099), + [anon_sym_out] = ACTIONS(1099), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1067), - [anon_sym_BANG] = ACTIONS(1495), - [anon_sym_TILDE] = ACTIONS(1495), - [anon_sym_PLUS_PLUS] = ACTIONS(1495), - [anon_sym_DASH_DASH] = ACTIONS(1495), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(1485), + [anon_sym_TILDE] = ACTIONS(1485), + [anon_sym_PLUS_PLUS] = ACTIONS(1485), + [anon_sym_DASH_DASH] = ACTIONS(1485), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1493), - [anon_sym_DASH] = ACTIONS(1493), - [anon_sym_STAR] = ACTIONS(905), - [anon_sym_CARET] = ACTIONS(1495), - [anon_sym_AMP] = ACTIONS(1495), - [anon_sym_this] = ACTIONS(1113), - [anon_sym_scoped] = ACTIONS(1115), - [anon_sym_params] = ACTIONS(1117), + [anon_sym_PLUS] = ACTIONS(1483), + [anon_sym_DASH] = ACTIONS(1483), + [anon_sym_STAR] = ACTIONS(683), + [anon_sym_CARET] = ACTIONS(1485), + [anon_sym_AMP] = ACTIONS(1485), + [anon_sym_this] = ACTIONS(1107), + [anon_sym_scoped] = ACTIONS(1109), + [anon_sym_params] = ACTIONS(1111), [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(2631), + [anon_sym_var] = ACTIONS(2629), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1067), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1079), + [anon_sym_throw] = ACTIONS(1077), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1081), - [anon_sym_DOT_DOT] = ACTIONS(911), + [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), @@ -120430,7 +120316,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(1089), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -120447,89 +120333,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [472] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_parameter] = STATE(6948), - [sym__parameter_array] = STATE(6996), - [sym_argument] = STATE(7273), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(5160), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2204), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5870), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_tuple_element] = STATE(7283), - [sym_expression] = STATE(5061), - [sym_non_lvalue_expression] = STATE(5333), - [sym_lvalue_expression] = STATE(3556), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3080), - [sym_postfix_unary_expression] = STATE(3111), - [sym_prefix_unary_expression] = STATE(3111), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6154), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3080), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3111), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3080), - [sym_member_access_expression] = STATE(2484), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3111), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7575), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_declaration_expression] = STATE(6803), - [sym_default_expression] = STATE(3080), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3080), - [sym_typeof_expression] = STATE(3080), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2484), - [sym_literal] = STATE(3080), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2222), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_parameter] = STATE(6769), + [sym__parameter_array] = STATE(6785), + [sym_argument] = STATE(7133), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(5152), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2196), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5834), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_tuple_element] = STATE(7166), + [sym_expression] = STATE(5095), + [sym_non_lvalue_expression] = STATE(5315), + [sym_lvalue_expression] = STATE(3602), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3102), + [sym_postfix_unary_expression] = STATE(3079), + [sym_prefix_unary_expression] = STATE(3079), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6134), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3102), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3079), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3102), + [sym_member_access_expression] = STATE(2472), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3079), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7309), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_declaration_expression] = STATE(6902), + [sym_default_expression] = STATE(3102), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3102), + [sym_typeof_expression] = STATE(3102), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2472), + [sym_literal] = STATE(3102), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2221), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(472), [sym_preproc_endregion] = STATE(472), [sym_preproc_line] = STATE(472), @@ -120539,53 +120425,53 @@ 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(2852), - [aux_sym__parameter_type_with_modifiers_repeat1] = STATE(3489), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [aux_sym__class_declaration_initializer_repeat1] = STATE(2843), + [aux_sym__parameter_type_with_modifiers_repeat1] = STATE(3452), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1481), - [anon_sym_LPAREN] = ACTIONS(895), - [anon_sym_RPAREN] = ACTIONS(2627), - [anon_sym_ref] = ACTIONS(2629), - [anon_sym_LBRACE] = ACTIONS(1487), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1479), + [anon_sym_LPAREN] = ACTIONS(659), + [anon_sym_RPAREN] = ACTIONS(2625), + [anon_sym_ref] = ACTIONS(2627), + [anon_sym_LBRACE] = ACTIONS(1481), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1061), - [anon_sym_readonly] = ACTIONS(1103), - [anon_sym_in] = ACTIONS(1105), - [anon_sym_out] = ACTIONS(1105), + [anon_sym_new] = ACTIONS(1059), + [anon_sym_readonly] = ACTIONS(1097), + [anon_sym_in] = ACTIONS(1099), + [anon_sym_out] = ACTIONS(1099), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1067), - [anon_sym_BANG] = ACTIONS(1495), - [anon_sym_TILDE] = ACTIONS(1495), - [anon_sym_PLUS_PLUS] = ACTIONS(1495), - [anon_sym_DASH_DASH] = ACTIONS(1495), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(1485), + [anon_sym_TILDE] = ACTIONS(1485), + [anon_sym_PLUS_PLUS] = ACTIONS(1485), + [anon_sym_DASH_DASH] = ACTIONS(1485), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1493), - [anon_sym_DASH] = ACTIONS(1493), - [anon_sym_STAR] = ACTIONS(905), - [anon_sym_CARET] = ACTIONS(1495), - [anon_sym_AMP] = ACTIONS(1495), - [anon_sym_this] = ACTIONS(1113), - [anon_sym_scoped] = ACTIONS(1115), - [anon_sym_params] = ACTIONS(1117), + [anon_sym_PLUS] = ACTIONS(1483), + [anon_sym_DASH] = ACTIONS(1483), + [anon_sym_STAR] = ACTIONS(683), + [anon_sym_CARET] = ACTIONS(1485), + [anon_sym_AMP] = ACTIONS(1485), + [anon_sym_this] = ACTIONS(1107), + [anon_sym_scoped] = ACTIONS(1109), + [anon_sym_params] = ACTIONS(1111), [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(2631), + [anon_sym_var] = ACTIONS(2629), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1067), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1079), + [anon_sym_throw] = ACTIONS(1077), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1081), - [anon_sym_DOT_DOT] = ACTIONS(911), + [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), @@ -120610,7 +120496,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(1089), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -120627,89 +120513,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [473] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_parameter] = STATE(6948), - [sym__parameter_array] = STATE(6996), - [sym_argument] = STATE(7273), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(5160), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2204), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5857), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_tuple_element] = STATE(7283), - [sym_expression] = STATE(5061), - [sym_non_lvalue_expression] = STATE(5333), - [sym_lvalue_expression] = STATE(3556), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3080), - [sym_postfix_unary_expression] = STATE(3111), - [sym_prefix_unary_expression] = STATE(3111), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6154), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3080), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3111), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3080), - [sym_member_access_expression] = STATE(2484), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3111), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7575), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_declaration_expression] = STATE(6803), - [sym_default_expression] = STATE(3080), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3080), - [sym_typeof_expression] = STATE(3080), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2484), - [sym_literal] = STATE(3080), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2222), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_parameter] = STATE(6769), + [sym__parameter_array] = STATE(6785), + [sym_argument] = STATE(7244), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(5152), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2196), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5851), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_tuple_element] = STATE(7166), + [sym_expression] = STATE(5095), + [sym_non_lvalue_expression] = STATE(5543), + [sym_lvalue_expression] = STATE(3540), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3102), + [sym_postfix_unary_expression] = STATE(3079), + [sym_prefix_unary_expression] = STATE(3079), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6134), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3102), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3079), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3102), + [sym_member_access_expression] = STATE(2472), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3079), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7309), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_declaration_expression] = STATE(6902), + [sym_default_expression] = STATE(3102), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3102), + [sym_typeof_expression] = STATE(3102), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2472), + [sym_literal] = STATE(3102), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2221), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(473), [sym_preproc_endregion] = STATE(473), [sym_preproc_line] = STATE(473), @@ -120719,53 +120605,53 @@ 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(2852), - [aux_sym__parameter_type_with_modifiers_repeat1] = STATE(3489), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [aux_sym__class_declaration_initializer_repeat1] = STATE(2843), + [aux_sym__parameter_type_with_modifiers_repeat1] = STATE(3452), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1481), - [anon_sym_LPAREN] = ACTIONS(895), - [anon_sym_RPAREN] = ACTIONS(2627), - [anon_sym_ref] = ACTIONS(2629), - [anon_sym_LBRACE] = ACTIONS(1487), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1479), + [anon_sym_LPAREN] = ACTIONS(659), + [anon_sym_RPAREN] = ACTIONS(2625), + [anon_sym_ref] = ACTIONS(2627), + [anon_sym_LBRACE] = ACTIONS(1481), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1061), - [anon_sym_readonly] = ACTIONS(1103), - [anon_sym_in] = ACTIONS(1105), - [anon_sym_out] = ACTIONS(1105), + [anon_sym_new] = ACTIONS(1059), + [anon_sym_readonly] = ACTIONS(1097), + [anon_sym_in] = ACTIONS(1099), + [anon_sym_out] = ACTIONS(1099), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1067), - [anon_sym_BANG] = ACTIONS(1495), - [anon_sym_TILDE] = ACTIONS(1495), - [anon_sym_PLUS_PLUS] = ACTIONS(1495), - [anon_sym_DASH_DASH] = ACTIONS(1495), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(1485), + [anon_sym_TILDE] = ACTIONS(1485), + [anon_sym_PLUS_PLUS] = ACTIONS(1485), + [anon_sym_DASH_DASH] = ACTIONS(1485), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1493), - [anon_sym_DASH] = ACTIONS(1493), - [anon_sym_STAR] = ACTIONS(905), - [anon_sym_CARET] = ACTIONS(1495), - [anon_sym_AMP] = ACTIONS(1495), - [anon_sym_this] = ACTIONS(1113), - [anon_sym_scoped] = ACTIONS(1115), - [anon_sym_params] = ACTIONS(1117), + [anon_sym_PLUS] = ACTIONS(1483), + [anon_sym_DASH] = ACTIONS(1483), + [anon_sym_STAR] = ACTIONS(683), + [anon_sym_CARET] = ACTIONS(1485), + [anon_sym_AMP] = ACTIONS(1485), + [anon_sym_this] = ACTIONS(1107), + [anon_sym_scoped] = ACTIONS(1109), + [anon_sym_params] = ACTIONS(1111), [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(2631), + [anon_sym_var] = ACTIONS(2629), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1067), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1079), + [anon_sym_throw] = ACTIONS(1077), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1081), - [anon_sym_DOT_DOT] = ACTIONS(911), + [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), @@ -120790,7 +120676,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(1089), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -120807,89 +120693,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [474] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_parameter] = STATE(6948), - [sym__parameter_array] = STATE(6996), - [sym_argument] = STATE(7174), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(5160), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2204), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5866), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_tuple_element] = STATE(7283), - [sym_expression] = STATE(5061), - [sym_non_lvalue_expression] = STATE(5636), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_parameter] = STATE(6769), + [sym__parameter_array] = STATE(6785), + [sym_argument] = STATE(7154), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(5152), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2196), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5837), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_tuple_element] = STATE(7166), + [sym_expression] = STATE(5095), + [sym_non_lvalue_expression] = STATE(5613), [sym_lvalue_expression] = STATE(3616), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3080), - [sym_postfix_unary_expression] = STATE(3111), - [sym_prefix_unary_expression] = STATE(3111), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6154), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3080), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3111), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3080), - [sym_member_access_expression] = STATE(2484), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3111), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7575), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_declaration_expression] = STATE(6803), - [sym_default_expression] = STATE(3080), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3080), - [sym_typeof_expression] = STATE(3080), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2484), - [sym_literal] = STATE(3080), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2222), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3102), + [sym_postfix_unary_expression] = STATE(3079), + [sym_prefix_unary_expression] = STATE(3079), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6134), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3102), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3079), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3102), + [sym_member_access_expression] = STATE(2472), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3079), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7309), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_declaration_expression] = STATE(6902), + [sym_default_expression] = STATE(3102), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3102), + [sym_typeof_expression] = STATE(3102), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2472), + [sym_literal] = STATE(3102), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2221), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(474), [sym_preproc_endregion] = STATE(474), [sym_preproc_line] = STATE(474), @@ -120899,53 +120785,53 @@ 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(2852), - [aux_sym__parameter_type_with_modifiers_repeat1] = STATE(3489), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [aux_sym__class_declaration_initializer_repeat1] = STATE(2843), + [aux_sym__parameter_type_with_modifiers_repeat1] = STATE(3452), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1481), - [anon_sym_LPAREN] = ACTIONS(895), - [anon_sym_RPAREN] = ACTIONS(2627), - [anon_sym_ref] = ACTIONS(2629), - [anon_sym_LBRACE] = ACTIONS(1487), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1479), + [anon_sym_LPAREN] = ACTIONS(659), + [anon_sym_RPAREN] = ACTIONS(2625), + [anon_sym_ref] = ACTIONS(2627), + [anon_sym_LBRACE] = ACTIONS(1481), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1061), - [anon_sym_readonly] = ACTIONS(1103), - [anon_sym_in] = ACTIONS(1105), - [anon_sym_out] = ACTIONS(1105), + [anon_sym_new] = ACTIONS(1059), + [anon_sym_readonly] = ACTIONS(1097), + [anon_sym_in] = ACTIONS(1099), + [anon_sym_out] = ACTIONS(1099), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1067), - [anon_sym_BANG] = ACTIONS(1495), - [anon_sym_TILDE] = ACTIONS(1495), - [anon_sym_PLUS_PLUS] = ACTIONS(1495), - [anon_sym_DASH_DASH] = ACTIONS(1495), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(1485), + [anon_sym_TILDE] = ACTIONS(1485), + [anon_sym_PLUS_PLUS] = ACTIONS(1485), + [anon_sym_DASH_DASH] = ACTIONS(1485), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1493), - [anon_sym_DASH] = ACTIONS(1493), - [anon_sym_STAR] = ACTIONS(905), - [anon_sym_CARET] = ACTIONS(1495), - [anon_sym_AMP] = ACTIONS(1495), - [anon_sym_this] = ACTIONS(1113), - [anon_sym_scoped] = ACTIONS(1115), - [anon_sym_params] = ACTIONS(1117), + [anon_sym_PLUS] = ACTIONS(1483), + [anon_sym_DASH] = ACTIONS(1483), + [anon_sym_STAR] = ACTIONS(683), + [anon_sym_CARET] = ACTIONS(1485), + [anon_sym_AMP] = ACTIONS(1485), + [anon_sym_this] = ACTIONS(1107), + [anon_sym_scoped] = ACTIONS(1109), + [anon_sym_params] = ACTIONS(1111), [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(2631), + [anon_sym_var] = ACTIONS(2629), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1067), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1079), + [anon_sym_throw] = ACTIONS(1077), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1081), - [anon_sym_DOT_DOT] = ACTIONS(911), + [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), @@ -120970,7 +120856,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(1089), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -120987,89 +120873,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [475] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_parameter] = STATE(6948), - [sym__parameter_array] = STATE(6996), - [sym_argument] = STATE(7143), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(5160), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2204), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5841), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_tuple_element] = STATE(7283), - [sym_expression] = STATE(5061), - [sym_non_lvalue_expression] = STATE(5661), - [sym_lvalue_expression] = STATE(3630), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3080), - [sym_postfix_unary_expression] = STATE(3111), - [sym_prefix_unary_expression] = STATE(3111), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6154), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3080), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3111), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3080), - [sym_member_access_expression] = STATE(2484), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3111), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7575), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_declaration_expression] = STATE(6803), - [sym_default_expression] = STATE(3080), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3080), - [sym_typeof_expression] = STATE(3080), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2484), - [sym_literal] = STATE(3080), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2222), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_parameter] = STATE(6769), + [sym__parameter_array] = STATE(6785), + [sym_argument] = STATE(7116), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(5152), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2196), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5853), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_tuple_element] = STATE(7166), + [sym_expression] = STATE(5095), + [sym_non_lvalue_expression] = STATE(5536), + [sym_lvalue_expression] = STATE(3598), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3102), + [sym_postfix_unary_expression] = STATE(3079), + [sym_prefix_unary_expression] = STATE(3079), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6134), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3102), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3079), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3102), + [sym_member_access_expression] = STATE(2472), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3079), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7309), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_declaration_expression] = STATE(6902), + [sym_default_expression] = STATE(3102), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3102), + [sym_typeof_expression] = STATE(3102), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2472), + [sym_literal] = STATE(3102), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2221), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(475), [sym_preproc_endregion] = STATE(475), [sym_preproc_line] = STATE(475), @@ -121079,53 +120965,53 @@ 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(2852), - [aux_sym__parameter_type_with_modifiers_repeat1] = STATE(3489), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [aux_sym__class_declaration_initializer_repeat1] = STATE(2843), + [aux_sym__parameter_type_with_modifiers_repeat1] = STATE(3452), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1481), - [anon_sym_LPAREN] = ACTIONS(895), - [anon_sym_RPAREN] = ACTIONS(2627), - [anon_sym_ref] = ACTIONS(2629), - [anon_sym_LBRACE] = ACTIONS(1487), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1479), + [anon_sym_LPAREN] = ACTIONS(659), + [anon_sym_RPAREN] = ACTIONS(2625), + [anon_sym_ref] = ACTIONS(2627), + [anon_sym_LBRACE] = ACTIONS(1481), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1061), - [anon_sym_readonly] = ACTIONS(1103), - [anon_sym_in] = ACTIONS(1105), - [anon_sym_out] = ACTIONS(1105), + [anon_sym_new] = ACTIONS(1059), + [anon_sym_readonly] = ACTIONS(1097), + [anon_sym_in] = ACTIONS(1099), + [anon_sym_out] = ACTIONS(1099), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1067), - [anon_sym_BANG] = ACTIONS(1495), - [anon_sym_TILDE] = ACTIONS(1495), - [anon_sym_PLUS_PLUS] = ACTIONS(1495), - [anon_sym_DASH_DASH] = ACTIONS(1495), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(1485), + [anon_sym_TILDE] = ACTIONS(1485), + [anon_sym_PLUS_PLUS] = ACTIONS(1485), + [anon_sym_DASH_DASH] = ACTIONS(1485), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1493), - [anon_sym_DASH] = ACTIONS(1493), - [anon_sym_STAR] = ACTIONS(905), - [anon_sym_CARET] = ACTIONS(1495), - [anon_sym_AMP] = ACTIONS(1495), - [anon_sym_this] = ACTIONS(1113), - [anon_sym_scoped] = ACTIONS(1115), - [anon_sym_params] = ACTIONS(1117), + [anon_sym_PLUS] = ACTIONS(1483), + [anon_sym_DASH] = ACTIONS(1483), + [anon_sym_STAR] = ACTIONS(683), + [anon_sym_CARET] = ACTIONS(1485), + [anon_sym_AMP] = ACTIONS(1485), + [anon_sym_this] = ACTIONS(1107), + [anon_sym_scoped] = ACTIONS(1109), + [anon_sym_params] = ACTIONS(1111), [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(2631), + [anon_sym_var] = ACTIONS(2629), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1067), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1079), + [anon_sym_throw] = ACTIONS(1077), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1081), - [anon_sym_DOT_DOT] = ACTIONS(911), + [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), @@ -121150,7 +121036,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(1089), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -121167,89 +121053,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [476] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_parameter] = STATE(6948), - [sym__parameter_array] = STATE(6996), - [sym_argument] = STATE(7247), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(5160), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2204), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5854), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_tuple_element] = STATE(7283), - [sym_expression] = STATE(5061), - [sym_non_lvalue_expression] = STATE(5597), - [sym_lvalue_expression] = STATE(3588), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3080), - [sym_postfix_unary_expression] = STATE(3111), - [sym_prefix_unary_expression] = STATE(3111), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6154), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3080), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3111), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3080), - [sym_member_access_expression] = STATE(2484), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3111), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7575), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_declaration_expression] = STATE(6803), - [sym_default_expression] = STATE(3080), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3080), - [sym_typeof_expression] = STATE(3080), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2484), - [sym_literal] = STATE(3080), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2222), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_parameter] = STATE(6769), + [sym__parameter_array] = STATE(6785), + [sym_argument] = STATE(7133), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(5152), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2196), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5857), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_tuple_element] = STATE(7166), + [sym_expression] = STATE(5095), + [sym_non_lvalue_expression] = STATE(5315), + [sym_lvalue_expression] = STATE(3602), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3102), + [sym_postfix_unary_expression] = STATE(3079), + [sym_prefix_unary_expression] = STATE(3079), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6134), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3102), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3079), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3102), + [sym_member_access_expression] = STATE(2472), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3079), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7309), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_declaration_expression] = STATE(6902), + [sym_default_expression] = STATE(3102), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3102), + [sym_typeof_expression] = STATE(3102), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2472), + [sym_literal] = STATE(3102), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2221), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(476), [sym_preproc_endregion] = STATE(476), [sym_preproc_line] = STATE(476), @@ -121259,53 +121145,53 @@ 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(2852), - [aux_sym__parameter_type_with_modifiers_repeat1] = STATE(3489), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [aux_sym__class_declaration_initializer_repeat1] = STATE(2843), + [aux_sym__parameter_type_with_modifiers_repeat1] = STATE(3452), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1481), - [anon_sym_LPAREN] = ACTIONS(895), - [anon_sym_RPAREN] = ACTIONS(2627), - [anon_sym_ref] = ACTIONS(2629), - [anon_sym_LBRACE] = ACTIONS(1487), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1479), + [anon_sym_LPAREN] = ACTIONS(659), + [anon_sym_RPAREN] = ACTIONS(2625), + [anon_sym_ref] = ACTIONS(2627), + [anon_sym_LBRACE] = ACTIONS(1481), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1061), - [anon_sym_readonly] = ACTIONS(1103), - [anon_sym_in] = ACTIONS(1105), - [anon_sym_out] = ACTIONS(1105), + [anon_sym_new] = ACTIONS(1059), + [anon_sym_readonly] = ACTIONS(1097), + [anon_sym_in] = ACTIONS(1099), + [anon_sym_out] = ACTIONS(1099), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1067), - [anon_sym_BANG] = ACTIONS(1495), - [anon_sym_TILDE] = ACTIONS(1495), - [anon_sym_PLUS_PLUS] = ACTIONS(1495), - [anon_sym_DASH_DASH] = ACTIONS(1495), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(1485), + [anon_sym_TILDE] = ACTIONS(1485), + [anon_sym_PLUS_PLUS] = ACTIONS(1485), + [anon_sym_DASH_DASH] = ACTIONS(1485), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1493), - [anon_sym_DASH] = ACTIONS(1493), - [anon_sym_STAR] = ACTIONS(905), - [anon_sym_CARET] = ACTIONS(1495), - [anon_sym_AMP] = ACTIONS(1495), - [anon_sym_this] = ACTIONS(1113), - [anon_sym_scoped] = ACTIONS(1115), - [anon_sym_params] = ACTIONS(1117), + [anon_sym_PLUS] = ACTIONS(1483), + [anon_sym_DASH] = ACTIONS(1483), + [anon_sym_STAR] = ACTIONS(683), + [anon_sym_CARET] = ACTIONS(1485), + [anon_sym_AMP] = ACTIONS(1485), + [anon_sym_this] = ACTIONS(1107), + [anon_sym_scoped] = ACTIONS(1109), + [anon_sym_params] = ACTIONS(1111), [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(2631), + [anon_sym_var] = ACTIONS(2629), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1067), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1079), + [anon_sym_throw] = ACTIONS(1077), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1081), - [anon_sym_DOT_DOT] = ACTIONS(911), + [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), @@ -121330,7 +121216,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(1089), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -121347,89 +121233,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [477] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_parameter] = STATE(6948), - [sym__parameter_array] = STATE(6996), - [sym_argument] = STATE(7273), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(5160), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2204), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5800), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_tuple_element] = STATE(7283), - [sym_expression] = STATE(5061), - [sym_non_lvalue_expression] = STATE(5333), - [sym_lvalue_expression] = STATE(3556), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3080), - [sym_postfix_unary_expression] = STATE(3111), - [sym_prefix_unary_expression] = STATE(3111), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6154), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3080), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3111), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3080), - [sym_member_access_expression] = STATE(2484), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3111), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7575), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_declaration_expression] = STATE(6803), - [sym_default_expression] = STATE(3080), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3080), - [sym_typeof_expression] = STATE(3080), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2484), - [sym_literal] = STATE(3080), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2222), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_parameter] = STATE(6769), + [sym__parameter_array] = STATE(6785), + [sym_argument] = STATE(7201), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(5152), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2196), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5794), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_tuple_element] = STATE(7166), + [sym_expression] = STATE(5095), + [sym_non_lvalue_expression] = STATE(5390), + [sym_lvalue_expression] = STATE(3605), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3102), + [sym_postfix_unary_expression] = STATE(3079), + [sym_prefix_unary_expression] = STATE(3079), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6134), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3102), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3079), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3102), + [sym_member_access_expression] = STATE(2472), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3079), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7309), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_declaration_expression] = STATE(6902), + [sym_default_expression] = STATE(3102), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3102), + [sym_typeof_expression] = STATE(3102), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2472), + [sym_literal] = STATE(3102), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2221), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(477), [sym_preproc_endregion] = STATE(477), [sym_preproc_line] = STATE(477), @@ -121439,53 +121325,53 @@ 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(2852), - [aux_sym__parameter_type_with_modifiers_repeat1] = STATE(3489), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [aux_sym__class_declaration_initializer_repeat1] = STATE(2843), + [aux_sym__parameter_type_with_modifiers_repeat1] = STATE(3452), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1481), - [anon_sym_LPAREN] = ACTIONS(895), - [anon_sym_RPAREN] = ACTIONS(2627), - [anon_sym_ref] = ACTIONS(2629), - [anon_sym_LBRACE] = ACTIONS(1487), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1479), + [anon_sym_LPAREN] = ACTIONS(659), + [anon_sym_RPAREN] = ACTIONS(2625), + [anon_sym_ref] = ACTIONS(2627), + [anon_sym_LBRACE] = ACTIONS(1481), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1061), - [anon_sym_readonly] = ACTIONS(1103), - [anon_sym_in] = ACTIONS(1105), - [anon_sym_out] = ACTIONS(1105), + [anon_sym_new] = ACTIONS(1059), + [anon_sym_readonly] = ACTIONS(1097), + [anon_sym_in] = ACTIONS(1099), + [anon_sym_out] = ACTIONS(1099), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1067), - [anon_sym_BANG] = ACTIONS(1495), - [anon_sym_TILDE] = ACTIONS(1495), - [anon_sym_PLUS_PLUS] = ACTIONS(1495), - [anon_sym_DASH_DASH] = ACTIONS(1495), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(1485), + [anon_sym_TILDE] = ACTIONS(1485), + [anon_sym_PLUS_PLUS] = ACTIONS(1485), + [anon_sym_DASH_DASH] = ACTIONS(1485), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1493), - [anon_sym_DASH] = ACTIONS(1493), - [anon_sym_STAR] = ACTIONS(905), - [anon_sym_CARET] = ACTIONS(1495), - [anon_sym_AMP] = ACTIONS(1495), - [anon_sym_this] = ACTIONS(1113), - [anon_sym_scoped] = ACTIONS(1115), - [anon_sym_params] = ACTIONS(1117), + [anon_sym_PLUS] = ACTIONS(1483), + [anon_sym_DASH] = ACTIONS(1483), + [anon_sym_STAR] = ACTIONS(683), + [anon_sym_CARET] = ACTIONS(1485), + [anon_sym_AMP] = ACTIONS(1485), + [anon_sym_this] = ACTIONS(1107), + [anon_sym_scoped] = ACTIONS(1109), + [anon_sym_params] = ACTIONS(1111), [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(2631), + [anon_sym_var] = ACTIONS(2629), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1067), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1079), + [anon_sym_throw] = ACTIONS(1077), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1081), - [anon_sym_DOT_DOT] = ACTIONS(911), + [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), @@ -121510,7 +121396,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(1089), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -121527,89 +121413,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [478] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_parameter] = STATE(6948), - [sym__parameter_array] = STATE(6996), - [sym_argument] = STATE(7189), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(5160), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2204), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5822), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_tuple_element] = STATE(7283), - [sym_expression] = STATE(5061), - [sym_non_lvalue_expression] = STATE(5560), - [sym_lvalue_expression] = STATE(3610), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3080), - [sym_postfix_unary_expression] = STATE(3111), - [sym_prefix_unary_expression] = STATE(3111), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6154), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3080), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3111), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3080), - [sym_member_access_expression] = STATE(2484), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3111), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7575), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_declaration_expression] = STATE(6803), - [sym_default_expression] = STATE(3080), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3080), - [sym_typeof_expression] = STATE(3080), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2484), - [sym_literal] = STATE(3080), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2222), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_parameter] = STATE(6769), + [sym__parameter_array] = STATE(6785), + [sym_argument] = STATE(7244), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(5152), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2196), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5816), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_tuple_element] = STATE(7166), + [sym_expression] = STATE(5095), + [sym_non_lvalue_expression] = STATE(5543), + [sym_lvalue_expression] = STATE(3540), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3102), + [sym_postfix_unary_expression] = STATE(3079), + [sym_prefix_unary_expression] = STATE(3079), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6134), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3102), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3079), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3102), + [sym_member_access_expression] = STATE(2472), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3079), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7309), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_declaration_expression] = STATE(6902), + [sym_default_expression] = STATE(3102), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3102), + [sym_typeof_expression] = STATE(3102), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2472), + [sym_literal] = STATE(3102), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2221), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(478), [sym_preproc_endregion] = STATE(478), [sym_preproc_line] = STATE(478), @@ -121619,53 +121505,53 @@ 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(2852), - [aux_sym__parameter_type_with_modifiers_repeat1] = STATE(3489), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [aux_sym__class_declaration_initializer_repeat1] = STATE(2843), + [aux_sym__parameter_type_with_modifiers_repeat1] = STATE(3452), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1481), - [anon_sym_LPAREN] = ACTIONS(895), - [anon_sym_RPAREN] = ACTIONS(2627), - [anon_sym_ref] = ACTIONS(2629), - [anon_sym_LBRACE] = ACTIONS(1487), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1479), + [anon_sym_LPAREN] = ACTIONS(659), + [anon_sym_RPAREN] = ACTIONS(2625), + [anon_sym_ref] = ACTIONS(2627), + [anon_sym_LBRACE] = ACTIONS(1481), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1061), - [anon_sym_readonly] = ACTIONS(1103), - [anon_sym_in] = ACTIONS(1105), - [anon_sym_out] = ACTIONS(1105), + [anon_sym_new] = ACTIONS(1059), + [anon_sym_readonly] = ACTIONS(1097), + [anon_sym_in] = ACTIONS(1099), + [anon_sym_out] = ACTIONS(1099), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1067), - [anon_sym_BANG] = ACTIONS(1495), - [anon_sym_TILDE] = ACTIONS(1495), - [anon_sym_PLUS_PLUS] = ACTIONS(1495), - [anon_sym_DASH_DASH] = ACTIONS(1495), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(1485), + [anon_sym_TILDE] = ACTIONS(1485), + [anon_sym_PLUS_PLUS] = ACTIONS(1485), + [anon_sym_DASH_DASH] = ACTIONS(1485), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1493), - [anon_sym_DASH] = ACTIONS(1493), - [anon_sym_STAR] = ACTIONS(905), - [anon_sym_CARET] = ACTIONS(1495), - [anon_sym_AMP] = ACTIONS(1495), - [anon_sym_this] = ACTIONS(1113), - [anon_sym_scoped] = ACTIONS(1115), - [anon_sym_params] = ACTIONS(1117), + [anon_sym_PLUS] = ACTIONS(1483), + [anon_sym_DASH] = ACTIONS(1483), + [anon_sym_STAR] = ACTIONS(683), + [anon_sym_CARET] = ACTIONS(1485), + [anon_sym_AMP] = ACTIONS(1485), + [anon_sym_this] = ACTIONS(1107), + [anon_sym_scoped] = ACTIONS(1109), + [anon_sym_params] = ACTIONS(1111), [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(2631), + [anon_sym_var] = ACTIONS(2629), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1067), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1079), + [anon_sym_throw] = ACTIONS(1077), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1081), - [anon_sym_DOT_DOT] = ACTIONS(911), + [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), @@ -121690,7 +121576,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(1089), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -121707,89 +121593,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [479] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_parameter] = STATE(6948), - [sym__parameter_array] = STATE(6996), - [sym_argument] = STATE(7174), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(5160), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2204), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5801), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_tuple_element] = STATE(7283), - [sym_expression] = STATE(5061), - [sym_non_lvalue_expression] = STATE(5636), - [sym_lvalue_expression] = STATE(3616), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3080), - [sym_postfix_unary_expression] = STATE(3111), - [sym_prefix_unary_expression] = STATE(3111), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6154), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3080), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3111), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3080), - [sym_member_access_expression] = STATE(2484), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3111), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7575), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_declaration_expression] = STATE(6803), - [sym_default_expression] = STATE(3080), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3080), - [sym_typeof_expression] = STATE(3080), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2484), - [sym_literal] = STATE(3080), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2222), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_parameter] = STATE(6769), + [sym__parameter_array] = STATE(6785), + [sym_argument] = STATE(7244), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(5152), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2196), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5817), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_tuple_element] = STATE(7166), + [sym_expression] = STATE(5095), + [sym_non_lvalue_expression] = STATE(5543), + [sym_lvalue_expression] = STATE(3540), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3102), + [sym_postfix_unary_expression] = STATE(3079), + [sym_prefix_unary_expression] = STATE(3079), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6134), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3102), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3079), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3102), + [sym_member_access_expression] = STATE(2472), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3079), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7309), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_declaration_expression] = STATE(6902), + [sym_default_expression] = STATE(3102), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3102), + [sym_typeof_expression] = STATE(3102), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2472), + [sym_literal] = STATE(3102), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2221), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(479), [sym_preproc_endregion] = STATE(479), [sym_preproc_line] = STATE(479), @@ -121799,53 +121685,53 @@ 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(2852), - [aux_sym__parameter_type_with_modifiers_repeat1] = STATE(3489), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [aux_sym__class_declaration_initializer_repeat1] = STATE(2843), + [aux_sym__parameter_type_with_modifiers_repeat1] = STATE(3452), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1481), - [anon_sym_LPAREN] = ACTIONS(895), - [anon_sym_RPAREN] = ACTIONS(2627), - [anon_sym_ref] = ACTIONS(2629), - [anon_sym_LBRACE] = ACTIONS(1487), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1479), + [anon_sym_LPAREN] = ACTIONS(659), + [anon_sym_RPAREN] = ACTIONS(2625), + [anon_sym_ref] = ACTIONS(2627), + [anon_sym_LBRACE] = ACTIONS(1481), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1061), - [anon_sym_readonly] = ACTIONS(1103), - [anon_sym_in] = ACTIONS(1105), - [anon_sym_out] = ACTIONS(1105), + [anon_sym_new] = ACTIONS(1059), + [anon_sym_readonly] = ACTIONS(1097), + [anon_sym_in] = ACTIONS(1099), + [anon_sym_out] = ACTIONS(1099), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1067), - [anon_sym_BANG] = ACTIONS(1495), - [anon_sym_TILDE] = ACTIONS(1495), - [anon_sym_PLUS_PLUS] = ACTIONS(1495), - [anon_sym_DASH_DASH] = ACTIONS(1495), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(1485), + [anon_sym_TILDE] = ACTIONS(1485), + [anon_sym_PLUS_PLUS] = ACTIONS(1485), + [anon_sym_DASH_DASH] = ACTIONS(1485), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1493), - [anon_sym_DASH] = ACTIONS(1493), - [anon_sym_STAR] = ACTIONS(905), - [anon_sym_CARET] = ACTIONS(1495), - [anon_sym_AMP] = ACTIONS(1495), - [anon_sym_this] = ACTIONS(1113), - [anon_sym_scoped] = ACTIONS(1115), - [anon_sym_params] = ACTIONS(1117), + [anon_sym_PLUS] = ACTIONS(1483), + [anon_sym_DASH] = ACTIONS(1483), + [anon_sym_STAR] = ACTIONS(683), + [anon_sym_CARET] = ACTIONS(1485), + [anon_sym_AMP] = ACTIONS(1485), + [anon_sym_this] = ACTIONS(1107), + [anon_sym_scoped] = ACTIONS(1109), + [anon_sym_params] = ACTIONS(1111), [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(2631), + [anon_sym_var] = ACTIONS(2629), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1067), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1079), + [anon_sym_throw] = ACTIONS(1077), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1081), - [anon_sym_DOT_DOT] = ACTIONS(911), + [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), @@ -121870,7 +121756,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(1089), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -121887,89 +121773,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [480] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_parameter] = STATE(6948), - [sym__parameter_array] = STATE(6996), - [sym_argument] = STATE(7174), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(5160), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2204), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5804), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_tuple_element] = STATE(7283), - [sym_expression] = STATE(5061), - [sym_non_lvalue_expression] = STATE(5636), - [sym_lvalue_expression] = STATE(3616), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3080), - [sym_postfix_unary_expression] = STATE(3111), - [sym_prefix_unary_expression] = STATE(3111), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6154), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3080), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3111), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3080), - [sym_member_access_expression] = STATE(2484), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3111), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7575), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_declaration_expression] = STATE(6803), - [sym_default_expression] = STATE(3080), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3080), - [sym_typeof_expression] = STATE(3080), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2484), - [sym_literal] = STATE(3080), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2222), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_parameter] = STATE(6769), + [sym__parameter_array] = STATE(6785), + [sym_argument] = STATE(7244), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(5152), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2196), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5843), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_tuple_element] = STATE(7166), + [sym_expression] = STATE(5095), + [sym_non_lvalue_expression] = STATE(5315), + [sym_lvalue_expression] = STATE(3540), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3102), + [sym_postfix_unary_expression] = STATE(3079), + [sym_prefix_unary_expression] = STATE(3079), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6134), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3102), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3079), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3102), + [sym_member_access_expression] = STATE(2472), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3079), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7309), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_declaration_expression] = STATE(6902), + [sym_default_expression] = STATE(3102), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3102), + [sym_typeof_expression] = STATE(3102), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2472), + [sym_literal] = STATE(3102), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2221), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(480), [sym_preproc_endregion] = STATE(480), [sym_preproc_line] = STATE(480), @@ -121979,53 +121865,53 @@ 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(2852), - [aux_sym__parameter_type_with_modifiers_repeat1] = STATE(3489), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [aux_sym__class_declaration_initializer_repeat1] = STATE(2843), + [aux_sym__parameter_type_with_modifiers_repeat1] = STATE(3452), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1481), - [anon_sym_LPAREN] = ACTIONS(895), - [anon_sym_RPAREN] = ACTIONS(2627), - [anon_sym_ref] = ACTIONS(2629), - [anon_sym_LBRACE] = ACTIONS(1487), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1479), + [anon_sym_LPAREN] = ACTIONS(659), + [anon_sym_RPAREN] = ACTIONS(2625), + [anon_sym_ref] = ACTIONS(2627), + [anon_sym_LBRACE] = ACTIONS(1481), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1061), - [anon_sym_readonly] = ACTIONS(1103), - [anon_sym_in] = ACTIONS(1105), - [anon_sym_out] = ACTIONS(1105), + [anon_sym_new] = ACTIONS(1059), + [anon_sym_readonly] = ACTIONS(1097), + [anon_sym_in] = ACTIONS(1099), + [anon_sym_out] = ACTIONS(1099), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1067), - [anon_sym_BANG] = ACTIONS(1495), - [anon_sym_TILDE] = ACTIONS(1495), - [anon_sym_PLUS_PLUS] = ACTIONS(1495), - [anon_sym_DASH_DASH] = ACTIONS(1495), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(1485), + [anon_sym_TILDE] = ACTIONS(1485), + [anon_sym_PLUS_PLUS] = ACTIONS(1485), + [anon_sym_DASH_DASH] = ACTIONS(1485), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1493), - [anon_sym_DASH] = ACTIONS(1493), - [anon_sym_STAR] = ACTIONS(905), - [anon_sym_CARET] = ACTIONS(1495), - [anon_sym_AMP] = ACTIONS(1495), - [anon_sym_this] = ACTIONS(1113), - [anon_sym_scoped] = ACTIONS(1115), - [anon_sym_params] = ACTIONS(1117), + [anon_sym_PLUS] = ACTIONS(1483), + [anon_sym_DASH] = ACTIONS(1483), + [anon_sym_STAR] = ACTIONS(683), + [anon_sym_CARET] = ACTIONS(1485), + [anon_sym_AMP] = ACTIONS(1485), + [anon_sym_this] = ACTIONS(1107), + [anon_sym_scoped] = ACTIONS(1109), + [anon_sym_params] = ACTIONS(1111), [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(2631), + [anon_sym_var] = ACTIONS(2629), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1067), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1079), + [anon_sym_throw] = ACTIONS(1077), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1081), - [anon_sym_DOT_DOT] = ACTIONS(911), + [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), @@ -122050,7 +121936,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(1089), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -122067,89 +121953,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [481] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_parameter] = STATE(6948), - [sym__parameter_array] = STATE(6996), - [sym_argument] = STATE(7174), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(5160), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2204), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5856), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_tuple_element] = STATE(7283), - [sym_expression] = STATE(5061), - [sym_non_lvalue_expression] = STATE(5333), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_parameter] = STATE(6769), + [sym__parameter_array] = STATE(6785), + [sym_argument] = STATE(7133), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(5152), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2196), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5855), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_tuple_element] = STATE(7166), + [sym_expression] = STATE(5095), + [sym_non_lvalue_expression] = STATE(5315), [sym_lvalue_expression] = STATE(3616), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3080), - [sym_postfix_unary_expression] = STATE(3111), - [sym_prefix_unary_expression] = STATE(3111), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6154), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3080), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3111), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3080), - [sym_member_access_expression] = STATE(2484), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3111), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7575), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_declaration_expression] = STATE(6803), - [sym_default_expression] = STATE(3080), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3080), - [sym_typeof_expression] = STATE(3080), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2484), - [sym_literal] = STATE(3080), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2222), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3102), + [sym_postfix_unary_expression] = STATE(3079), + [sym_prefix_unary_expression] = STATE(3079), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6134), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3102), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3079), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3102), + [sym_member_access_expression] = STATE(2472), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3079), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7309), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_declaration_expression] = STATE(6902), + [sym_default_expression] = STATE(3102), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3102), + [sym_typeof_expression] = STATE(3102), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2472), + [sym_literal] = STATE(3102), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2221), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(481), [sym_preproc_endregion] = STATE(481), [sym_preproc_line] = STATE(481), @@ -122159,53 +122045,53 @@ 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(2852), - [aux_sym__parameter_type_with_modifiers_repeat1] = STATE(3489), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [aux_sym__class_declaration_initializer_repeat1] = STATE(2843), + [aux_sym__parameter_type_with_modifiers_repeat1] = STATE(3452), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1481), - [anon_sym_LPAREN] = ACTIONS(895), - [anon_sym_RPAREN] = ACTIONS(2627), - [anon_sym_ref] = ACTIONS(2629), - [anon_sym_LBRACE] = ACTIONS(1487), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1479), + [anon_sym_LPAREN] = ACTIONS(659), + [anon_sym_RPAREN] = ACTIONS(2625), + [anon_sym_ref] = ACTIONS(2627), + [anon_sym_LBRACE] = ACTIONS(1481), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1061), - [anon_sym_readonly] = ACTIONS(1103), - [anon_sym_in] = ACTIONS(1105), - [anon_sym_out] = ACTIONS(1105), + [anon_sym_new] = ACTIONS(1059), + [anon_sym_readonly] = ACTIONS(1097), + [anon_sym_in] = ACTIONS(1099), + [anon_sym_out] = ACTIONS(1099), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1067), - [anon_sym_BANG] = ACTIONS(1495), - [anon_sym_TILDE] = ACTIONS(1495), - [anon_sym_PLUS_PLUS] = ACTIONS(1495), - [anon_sym_DASH_DASH] = ACTIONS(1495), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(1485), + [anon_sym_TILDE] = ACTIONS(1485), + [anon_sym_PLUS_PLUS] = ACTIONS(1485), + [anon_sym_DASH_DASH] = ACTIONS(1485), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1493), - [anon_sym_DASH] = ACTIONS(1493), - [anon_sym_STAR] = ACTIONS(905), - [anon_sym_CARET] = ACTIONS(1495), - [anon_sym_AMP] = ACTIONS(1495), - [anon_sym_this] = ACTIONS(1113), - [anon_sym_scoped] = ACTIONS(1115), - [anon_sym_params] = ACTIONS(1117), + [anon_sym_PLUS] = ACTIONS(1483), + [anon_sym_DASH] = ACTIONS(1483), + [anon_sym_STAR] = ACTIONS(683), + [anon_sym_CARET] = ACTIONS(1485), + [anon_sym_AMP] = ACTIONS(1485), + [anon_sym_this] = ACTIONS(1107), + [anon_sym_scoped] = ACTIONS(1109), + [anon_sym_params] = ACTIONS(1111), [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(2631), + [anon_sym_var] = ACTIONS(2629), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1067), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1079), + [anon_sym_throw] = ACTIONS(1077), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1081), - [anon_sym_DOT_DOT] = ACTIONS(911), + [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), @@ -122230,7 +122116,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(1089), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -122247,89 +122133,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [482] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_parameter] = STATE(6948), - [sym__parameter_array] = STATE(6996), - [sym_argument] = STATE(7143), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(5160), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2204), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5807), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_tuple_element] = STATE(7283), - [sym_expression] = STATE(5061), - [sym_non_lvalue_expression] = STATE(5661), - [sym_lvalue_expression] = STATE(3595), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3080), - [sym_postfix_unary_expression] = STATE(3111), - [sym_prefix_unary_expression] = STATE(3111), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6154), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3080), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3111), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3080), - [sym_member_access_expression] = STATE(2484), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3111), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7575), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_declaration_expression] = STATE(6803), - [sym_default_expression] = STATE(3080), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3080), - [sym_typeof_expression] = STATE(3080), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2484), - [sym_literal] = STATE(3080), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2222), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_parameter] = STATE(6769), + [sym__parameter_array] = STATE(6785), + [sym_argument] = STATE(7154), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(5152), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2196), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5822), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_tuple_element] = STATE(7166), + [sym_expression] = STATE(5095), + [sym_non_lvalue_expression] = STATE(5613), + [sym_lvalue_expression] = STATE(3543), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3102), + [sym_postfix_unary_expression] = STATE(3079), + [sym_prefix_unary_expression] = STATE(3079), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6134), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3102), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3079), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3102), + [sym_member_access_expression] = STATE(2472), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3079), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7309), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_declaration_expression] = STATE(6902), + [sym_default_expression] = STATE(3102), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3102), + [sym_typeof_expression] = STATE(3102), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2472), + [sym_literal] = STATE(3102), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2221), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(482), [sym_preproc_endregion] = STATE(482), [sym_preproc_line] = STATE(482), @@ -122339,53 +122225,53 @@ 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(2852), - [aux_sym__parameter_type_with_modifiers_repeat1] = STATE(3489), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [aux_sym__class_declaration_initializer_repeat1] = STATE(2843), + [aux_sym__parameter_type_with_modifiers_repeat1] = STATE(3452), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1481), - [anon_sym_LPAREN] = ACTIONS(895), - [anon_sym_RPAREN] = ACTIONS(2627), - [anon_sym_ref] = ACTIONS(2629), - [anon_sym_LBRACE] = ACTIONS(1487), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1479), + [anon_sym_LPAREN] = ACTIONS(659), + [anon_sym_RPAREN] = ACTIONS(2625), + [anon_sym_ref] = ACTIONS(2627), + [anon_sym_LBRACE] = ACTIONS(1481), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1061), - [anon_sym_readonly] = ACTIONS(1103), - [anon_sym_in] = ACTIONS(1105), - [anon_sym_out] = ACTIONS(1105), + [anon_sym_new] = ACTIONS(1059), + [anon_sym_readonly] = ACTIONS(1097), + [anon_sym_in] = ACTIONS(1099), + [anon_sym_out] = ACTIONS(1099), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1067), - [anon_sym_BANG] = ACTIONS(1495), - [anon_sym_TILDE] = ACTIONS(1495), - [anon_sym_PLUS_PLUS] = ACTIONS(1495), - [anon_sym_DASH_DASH] = ACTIONS(1495), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(1485), + [anon_sym_TILDE] = ACTIONS(1485), + [anon_sym_PLUS_PLUS] = ACTIONS(1485), + [anon_sym_DASH_DASH] = ACTIONS(1485), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1493), - [anon_sym_DASH] = ACTIONS(1493), - [anon_sym_STAR] = ACTIONS(905), - [anon_sym_CARET] = ACTIONS(1495), - [anon_sym_AMP] = ACTIONS(1495), - [anon_sym_this] = ACTIONS(1113), - [anon_sym_scoped] = ACTIONS(1115), - [anon_sym_params] = ACTIONS(1117), + [anon_sym_PLUS] = ACTIONS(1483), + [anon_sym_DASH] = ACTIONS(1483), + [anon_sym_STAR] = ACTIONS(683), + [anon_sym_CARET] = ACTIONS(1485), + [anon_sym_AMP] = ACTIONS(1485), + [anon_sym_this] = ACTIONS(1107), + [anon_sym_scoped] = ACTIONS(1109), + [anon_sym_params] = ACTIONS(1111), [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(2631), + [anon_sym_var] = ACTIONS(2629), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1067), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1079), + [anon_sym_throw] = ACTIONS(1077), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1081), - [anon_sym_DOT_DOT] = ACTIONS(911), + [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), @@ -122410,7 +122296,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(1089), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -122427,89 +122313,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [483] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_parameter] = STATE(6948), - [sym__parameter_array] = STATE(6996), - [sym_argument] = STATE(7143), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(5160), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2204), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5809), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_tuple_element] = STATE(7283), - [sym_expression] = STATE(5061), - [sym_non_lvalue_expression] = STATE(5661), - [sym_lvalue_expression] = STATE(3595), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3080), - [sym_postfix_unary_expression] = STATE(3111), - [sym_prefix_unary_expression] = STATE(3111), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6154), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3080), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3111), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3080), - [sym_member_access_expression] = STATE(2484), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3111), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7575), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_declaration_expression] = STATE(6803), - [sym_default_expression] = STATE(3080), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3080), - [sym_typeof_expression] = STATE(3080), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2484), - [sym_literal] = STATE(3080), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2222), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_parameter] = STATE(6769), + [sym__parameter_array] = STATE(6785), + [sym_argument] = STATE(7244), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(5152), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2196), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5844), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_tuple_element] = STATE(7166), + [sym_expression] = STATE(5095), + [sym_non_lvalue_expression] = STATE(5543), + [sym_lvalue_expression] = STATE(3540), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3102), + [sym_postfix_unary_expression] = STATE(3079), + [sym_prefix_unary_expression] = STATE(3079), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6134), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3102), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3079), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3102), + [sym_member_access_expression] = STATE(2472), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3079), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7309), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_declaration_expression] = STATE(6902), + [sym_default_expression] = STATE(3102), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3102), + [sym_typeof_expression] = STATE(3102), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2472), + [sym_literal] = STATE(3102), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2221), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(483), [sym_preproc_endregion] = STATE(483), [sym_preproc_line] = STATE(483), @@ -122519,53 +122405,53 @@ 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(2852), - [aux_sym__parameter_type_with_modifiers_repeat1] = STATE(3489), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [aux_sym__class_declaration_initializer_repeat1] = STATE(2843), + [aux_sym__parameter_type_with_modifiers_repeat1] = STATE(3452), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1481), - [anon_sym_LPAREN] = ACTIONS(895), - [anon_sym_RPAREN] = ACTIONS(2627), - [anon_sym_ref] = ACTIONS(2629), - [anon_sym_LBRACE] = ACTIONS(1487), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1479), + [anon_sym_LPAREN] = ACTIONS(659), + [anon_sym_RPAREN] = ACTIONS(2625), + [anon_sym_ref] = ACTIONS(2627), + [anon_sym_LBRACE] = ACTIONS(1481), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1061), - [anon_sym_readonly] = ACTIONS(1103), - [anon_sym_in] = ACTIONS(1105), - [anon_sym_out] = ACTIONS(1105), + [anon_sym_new] = ACTIONS(1059), + [anon_sym_readonly] = ACTIONS(1097), + [anon_sym_in] = ACTIONS(1099), + [anon_sym_out] = ACTIONS(1099), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1067), - [anon_sym_BANG] = ACTIONS(1495), - [anon_sym_TILDE] = ACTIONS(1495), - [anon_sym_PLUS_PLUS] = ACTIONS(1495), - [anon_sym_DASH_DASH] = ACTIONS(1495), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(1485), + [anon_sym_TILDE] = ACTIONS(1485), + [anon_sym_PLUS_PLUS] = ACTIONS(1485), + [anon_sym_DASH_DASH] = ACTIONS(1485), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1493), - [anon_sym_DASH] = ACTIONS(1493), - [anon_sym_STAR] = ACTIONS(905), - [anon_sym_CARET] = ACTIONS(1495), - [anon_sym_AMP] = ACTIONS(1495), - [anon_sym_this] = ACTIONS(1113), - [anon_sym_scoped] = ACTIONS(1115), - [anon_sym_params] = ACTIONS(1117), + [anon_sym_PLUS] = ACTIONS(1483), + [anon_sym_DASH] = ACTIONS(1483), + [anon_sym_STAR] = ACTIONS(683), + [anon_sym_CARET] = ACTIONS(1485), + [anon_sym_AMP] = ACTIONS(1485), + [anon_sym_this] = ACTIONS(1107), + [anon_sym_scoped] = ACTIONS(1109), + [anon_sym_params] = ACTIONS(1111), [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(2631), + [anon_sym_var] = ACTIONS(2629), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1067), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1079), + [anon_sym_throw] = ACTIONS(1077), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1081), - [anon_sym_DOT_DOT] = ACTIONS(911), + [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), @@ -122590,7 +122476,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(1089), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -122607,89 +122493,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [484] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_parameter] = STATE(6948), - [sym__parameter_array] = STATE(6996), - [sym_argument] = STATE(7174), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(5160), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2204), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5811), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_tuple_element] = STATE(7283), - [sym_expression] = STATE(5061), - [sym_non_lvalue_expression] = STATE(5636), - [sym_lvalue_expression] = STATE(3616), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3080), - [sym_postfix_unary_expression] = STATE(3111), - [sym_prefix_unary_expression] = STATE(3111), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6154), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3080), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3111), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3080), - [sym_member_access_expression] = STATE(2484), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3111), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7575), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_declaration_expression] = STATE(6803), - [sym_default_expression] = STATE(3080), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3080), - [sym_typeof_expression] = STATE(3080), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2484), - [sym_literal] = STATE(3080), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2222), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_parameter] = STATE(6769), + [sym__parameter_array] = STATE(6785), + [sym_argument] = STATE(7154), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(5152), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2196), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5795), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_tuple_element] = STATE(7166), + [sym_expression] = STATE(5095), + [sym_non_lvalue_expression] = STATE(5613), + [sym_lvalue_expression] = STATE(3543), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3102), + [sym_postfix_unary_expression] = STATE(3079), + [sym_prefix_unary_expression] = STATE(3079), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6134), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3102), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3079), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3102), + [sym_member_access_expression] = STATE(2472), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3079), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7309), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_declaration_expression] = STATE(6902), + [sym_default_expression] = STATE(3102), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3102), + [sym_typeof_expression] = STATE(3102), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2472), + [sym_literal] = STATE(3102), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2221), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(484), [sym_preproc_endregion] = STATE(484), [sym_preproc_line] = STATE(484), @@ -122699,53 +122585,53 @@ 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(2852), - [aux_sym__parameter_type_with_modifiers_repeat1] = STATE(3489), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [aux_sym__class_declaration_initializer_repeat1] = STATE(2843), + [aux_sym__parameter_type_with_modifiers_repeat1] = STATE(3452), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1481), - [anon_sym_LPAREN] = ACTIONS(895), - [anon_sym_RPAREN] = ACTIONS(2627), - [anon_sym_ref] = ACTIONS(2629), - [anon_sym_LBRACE] = ACTIONS(1487), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1479), + [anon_sym_LPAREN] = ACTIONS(659), + [anon_sym_RPAREN] = ACTIONS(2625), + [anon_sym_ref] = ACTIONS(2627), + [anon_sym_LBRACE] = ACTIONS(1481), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1061), - [anon_sym_readonly] = ACTIONS(1103), - [anon_sym_in] = ACTIONS(1105), - [anon_sym_out] = ACTIONS(1105), + [anon_sym_new] = ACTIONS(1059), + [anon_sym_readonly] = ACTIONS(1097), + [anon_sym_in] = ACTIONS(1099), + [anon_sym_out] = ACTIONS(1099), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1067), - [anon_sym_BANG] = ACTIONS(1495), - [anon_sym_TILDE] = ACTIONS(1495), - [anon_sym_PLUS_PLUS] = ACTIONS(1495), - [anon_sym_DASH_DASH] = ACTIONS(1495), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(1485), + [anon_sym_TILDE] = ACTIONS(1485), + [anon_sym_PLUS_PLUS] = ACTIONS(1485), + [anon_sym_DASH_DASH] = ACTIONS(1485), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1493), - [anon_sym_DASH] = ACTIONS(1493), - [anon_sym_STAR] = ACTIONS(905), - [anon_sym_CARET] = ACTIONS(1495), - [anon_sym_AMP] = ACTIONS(1495), - [anon_sym_this] = ACTIONS(1113), - [anon_sym_scoped] = ACTIONS(1115), - [anon_sym_params] = ACTIONS(1117), + [anon_sym_PLUS] = ACTIONS(1483), + [anon_sym_DASH] = ACTIONS(1483), + [anon_sym_STAR] = ACTIONS(683), + [anon_sym_CARET] = ACTIONS(1485), + [anon_sym_AMP] = ACTIONS(1485), + [anon_sym_this] = ACTIONS(1107), + [anon_sym_scoped] = ACTIONS(1109), + [anon_sym_params] = ACTIONS(1111), [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(2631), + [anon_sym_var] = ACTIONS(2629), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1067), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1079), + [anon_sym_throw] = ACTIONS(1077), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1081), - [anon_sym_DOT_DOT] = ACTIONS(911), + [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), @@ -122770,7 +122656,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(1089), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -122787,89 +122673,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [485] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_parameter] = STATE(6948), - [sym__parameter_array] = STATE(6996), - [sym_argument] = STATE(7143), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(5160), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2204), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5813), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_tuple_element] = STATE(7283), - [sym_expression] = STATE(5061), - [sym_non_lvalue_expression] = STATE(5661), - [sym_lvalue_expression] = STATE(3595), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3080), - [sym_postfix_unary_expression] = STATE(3111), - [sym_prefix_unary_expression] = STATE(3111), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6154), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3080), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3111), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3080), - [sym_member_access_expression] = STATE(2484), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3111), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7575), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_declaration_expression] = STATE(6803), - [sym_default_expression] = STATE(3080), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3080), - [sym_typeof_expression] = STATE(3080), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2484), - [sym_literal] = STATE(3080), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2222), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_parameter] = STATE(6769), + [sym__parameter_array] = STATE(6785), + [sym_argument] = STATE(7133), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(5152), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2196), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5809), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_tuple_element] = STATE(7166), + [sym_expression] = STATE(5095), + [sym_non_lvalue_expression] = STATE(5315), + [sym_lvalue_expression] = STATE(3602), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3102), + [sym_postfix_unary_expression] = STATE(3079), + [sym_prefix_unary_expression] = STATE(3079), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6134), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3102), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3079), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3102), + [sym_member_access_expression] = STATE(2472), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3079), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7309), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_declaration_expression] = STATE(6902), + [sym_default_expression] = STATE(3102), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3102), + [sym_typeof_expression] = STATE(3102), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2472), + [sym_literal] = STATE(3102), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2221), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(485), [sym_preproc_endregion] = STATE(485), [sym_preproc_line] = STATE(485), @@ -122879,53 +122765,53 @@ 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(2852), - [aux_sym__parameter_type_with_modifiers_repeat1] = STATE(3489), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [aux_sym__class_declaration_initializer_repeat1] = STATE(2843), + [aux_sym__parameter_type_with_modifiers_repeat1] = STATE(3452), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1481), - [anon_sym_LPAREN] = ACTIONS(895), - [anon_sym_RPAREN] = ACTIONS(2627), - [anon_sym_ref] = ACTIONS(2629), - [anon_sym_LBRACE] = ACTIONS(1487), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1479), + [anon_sym_LPAREN] = ACTIONS(659), + [anon_sym_RPAREN] = ACTIONS(2625), + [anon_sym_ref] = ACTIONS(2627), + [anon_sym_LBRACE] = ACTIONS(1481), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1061), - [anon_sym_readonly] = ACTIONS(1103), - [anon_sym_in] = ACTIONS(1105), - [anon_sym_out] = ACTIONS(1105), + [anon_sym_new] = ACTIONS(1059), + [anon_sym_readonly] = ACTIONS(1097), + [anon_sym_in] = ACTIONS(1099), + [anon_sym_out] = ACTIONS(1099), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1067), - [anon_sym_BANG] = ACTIONS(1495), - [anon_sym_TILDE] = ACTIONS(1495), - [anon_sym_PLUS_PLUS] = ACTIONS(1495), - [anon_sym_DASH_DASH] = ACTIONS(1495), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(1485), + [anon_sym_TILDE] = ACTIONS(1485), + [anon_sym_PLUS_PLUS] = ACTIONS(1485), + [anon_sym_DASH_DASH] = ACTIONS(1485), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1493), - [anon_sym_DASH] = ACTIONS(1493), - [anon_sym_STAR] = ACTIONS(905), - [anon_sym_CARET] = ACTIONS(1495), - [anon_sym_AMP] = ACTIONS(1495), - [anon_sym_this] = ACTIONS(1113), - [anon_sym_scoped] = ACTIONS(1115), - [anon_sym_params] = ACTIONS(1117), + [anon_sym_PLUS] = ACTIONS(1483), + [anon_sym_DASH] = ACTIONS(1483), + [anon_sym_STAR] = ACTIONS(683), + [anon_sym_CARET] = ACTIONS(1485), + [anon_sym_AMP] = ACTIONS(1485), + [anon_sym_this] = ACTIONS(1107), + [anon_sym_scoped] = ACTIONS(1109), + [anon_sym_params] = ACTIONS(1111), [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(2631), + [anon_sym_var] = ACTIONS(2629), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1067), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1079), + [anon_sym_throw] = ACTIONS(1077), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1081), - [anon_sym_DOT_DOT] = ACTIONS(911), + [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), @@ -122950,7 +122836,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(1089), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -122967,89 +122853,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [486] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_parameter] = STATE(6948), - [sym__parameter_array] = STATE(6996), - [sym_argument] = STATE(7273), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(5160), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2204), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5799), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_tuple_element] = STATE(7283), - [sym_expression] = STATE(5061), - [sym_non_lvalue_expression] = STATE(5333), - [sym_lvalue_expression] = STATE(3556), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3080), - [sym_postfix_unary_expression] = STATE(3111), - [sym_prefix_unary_expression] = STATE(3111), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6154), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3080), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3111), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3080), - [sym_member_access_expression] = STATE(2484), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3111), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7575), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_declaration_expression] = STATE(6803), - [sym_default_expression] = STATE(3080), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3080), - [sym_typeof_expression] = STATE(3080), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2484), - [sym_literal] = STATE(3080), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2222), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_parameter] = STATE(6769), + [sym__parameter_array] = STATE(6785), + [sym_argument] = STATE(7133), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(5152), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2196), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5815), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_tuple_element] = STATE(7166), + [sym_expression] = STATE(5095), + [sym_non_lvalue_expression] = STATE(5315), + [sym_lvalue_expression] = STATE(3602), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3102), + [sym_postfix_unary_expression] = STATE(3079), + [sym_prefix_unary_expression] = STATE(3079), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6134), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3102), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3079), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3102), + [sym_member_access_expression] = STATE(2472), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3079), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7309), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_declaration_expression] = STATE(6902), + [sym_default_expression] = STATE(3102), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3102), + [sym_typeof_expression] = STATE(3102), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2472), + [sym_literal] = STATE(3102), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2221), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(486), [sym_preproc_endregion] = STATE(486), [sym_preproc_line] = STATE(486), @@ -123059,53 +122945,53 @@ 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(2852), - [aux_sym__parameter_type_with_modifiers_repeat1] = STATE(3489), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [aux_sym__class_declaration_initializer_repeat1] = STATE(2843), + [aux_sym__parameter_type_with_modifiers_repeat1] = STATE(3452), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1481), - [anon_sym_LPAREN] = ACTIONS(895), - [anon_sym_RPAREN] = ACTIONS(2627), - [anon_sym_ref] = ACTIONS(2629), - [anon_sym_LBRACE] = ACTIONS(1487), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1479), + [anon_sym_LPAREN] = ACTIONS(659), + [anon_sym_RPAREN] = ACTIONS(2625), + [anon_sym_ref] = ACTIONS(2627), + [anon_sym_LBRACE] = ACTIONS(1481), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1061), - [anon_sym_readonly] = ACTIONS(1103), - [anon_sym_in] = ACTIONS(1105), - [anon_sym_out] = ACTIONS(1105), + [anon_sym_new] = ACTIONS(1059), + [anon_sym_readonly] = ACTIONS(1097), + [anon_sym_in] = ACTIONS(1099), + [anon_sym_out] = ACTIONS(1099), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1067), - [anon_sym_BANG] = ACTIONS(1495), - [anon_sym_TILDE] = ACTIONS(1495), - [anon_sym_PLUS_PLUS] = ACTIONS(1495), - [anon_sym_DASH_DASH] = ACTIONS(1495), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(1485), + [anon_sym_TILDE] = ACTIONS(1485), + [anon_sym_PLUS_PLUS] = ACTIONS(1485), + [anon_sym_DASH_DASH] = ACTIONS(1485), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1493), - [anon_sym_DASH] = ACTIONS(1493), - [anon_sym_STAR] = ACTIONS(905), - [anon_sym_CARET] = ACTIONS(1495), - [anon_sym_AMP] = ACTIONS(1495), - [anon_sym_this] = ACTIONS(1113), - [anon_sym_scoped] = ACTIONS(1115), - [anon_sym_params] = ACTIONS(1117), + [anon_sym_PLUS] = ACTIONS(1483), + [anon_sym_DASH] = ACTIONS(1483), + [anon_sym_STAR] = ACTIONS(683), + [anon_sym_CARET] = ACTIONS(1485), + [anon_sym_AMP] = ACTIONS(1485), + [anon_sym_this] = ACTIONS(1107), + [anon_sym_scoped] = ACTIONS(1109), + [anon_sym_params] = ACTIONS(1111), [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(2631), + [anon_sym_var] = ACTIONS(2629), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1067), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1079), + [anon_sym_throw] = ACTIONS(1077), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1081), - [anon_sym_DOT_DOT] = ACTIONS(911), + [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), @@ -123130,7 +123016,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(1089), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -123147,89 +123033,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [487] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_parameter] = STATE(6948), - [sym__parameter_array] = STATE(6996), - [sym_argument] = STATE(7273), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(5160), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2204), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5820), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_tuple_element] = STATE(7283), - [sym_expression] = STATE(5061), - [sym_non_lvalue_expression] = STATE(5333), - [sym_lvalue_expression] = STATE(3556), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3080), - [sym_postfix_unary_expression] = STATE(3111), - [sym_prefix_unary_expression] = STATE(3111), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6154), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3080), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3111), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3080), - [sym_member_access_expression] = STATE(2484), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3111), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7575), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_declaration_expression] = STATE(6803), - [sym_default_expression] = STATE(3080), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3080), - [sym_typeof_expression] = STATE(3080), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2484), - [sym_literal] = STATE(3080), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2222), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_parameter] = STATE(6769), + [sym__parameter_array] = STATE(6785), + [sym_argument] = STATE(7116), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(5152), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2196), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5800), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_tuple_element] = STATE(7166), + [sym_expression] = STATE(5095), + [sym_non_lvalue_expression] = STATE(5536), + [sym_lvalue_expression] = STATE(3598), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3102), + [sym_postfix_unary_expression] = STATE(3079), + [sym_prefix_unary_expression] = STATE(3079), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6134), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3102), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3079), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3102), + [sym_member_access_expression] = STATE(2472), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3079), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7309), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_declaration_expression] = STATE(6902), + [sym_default_expression] = STATE(3102), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3102), + [sym_typeof_expression] = STATE(3102), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2472), + [sym_literal] = STATE(3102), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2221), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(487), [sym_preproc_endregion] = STATE(487), [sym_preproc_line] = STATE(487), @@ -123239,53 +123125,53 @@ 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(2852), - [aux_sym__parameter_type_with_modifiers_repeat1] = STATE(3489), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [aux_sym__class_declaration_initializer_repeat1] = STATE(2843), + [aux_sym__parameter_type_with_modifiers_repeat1] = STATE(3452), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1481), - [anon_sym_LPAREN] = ACTIONS(895), - [anon_sym_RPAREN] = ACTIONS(2627), - [anon_sym_ref] = ACTIONS(2629), - [anon_sym_LBRACE] = ACTIONS(1487), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1479), + [anon_sym_LPAREN] = ACTIONS(659), + [anon_sym_RPAREN] = ACTIONS(2625), + [anon_sym_ref] = ACTIONS(2627), + [anon_sym_LBRACE] = ACTIONS(1481), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1061), - [anon_sym_readonly] = ACTIONS(1103), - [anon_sym_in] = ACTIONS(1105), - [anon_sym_out] = ACTIONS(1105), + [anon_sym_new] = ACTIONS(1059), + [anon_sym_readonly] = ACTIONS(1097), + [anon_sym_in] = ACTIONS(1099), + [anon_sym_out] = ACTIONS(1099), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1067), - [anon_sym_BANG] = ACTIONS(1495), - [anon_sym_TILDE] = ACTIONS(1495), - [anon_sym_PLUS_PLUS] = ACTIONS(1495), - [anon_sym_DASH_DASH] = ACTIONS(1495), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(1485), + [anon_sym_TILDE] = ACTIONS(1485), + [anon_sym_PLUS_PLUS] = ACTIONS(1485), + [anon_sym_DASH_DASH] = ACTIONS(1485), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1493), - [anon_sym_DASH] = ACTIONS(1493), - [anon_sym_STAR] = ACTIONS(905), - [anon_sym_CARET] = ACTIONS(1495), - [anon_sym_AMP] = ACTIONS(1495), - [anon_sym_this] = ACTIONS(1113), - [anon_sym_scoped] = ACTIONS(1115), - [anon_sym_params] = ACTIONS(1117), + [anon_sym_PLUS] = ACTIONS(1483), + [anon_sym_DASH] = ACTIONS(1483), + [anon_sym_STAR] = ACTIONS(683), + [anon_sym_CARET] = ACTIONS(1485), + [anon_sym_AMP] = ACTIONS(1485), + [anon_sym_this] = ACTIONS(1107), + [anon_sym_scoped] = ACTIONS(1109), + [anon_sym_params] = ACTIONS(1111), [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(2631), + [anon_sym_var] = ACTIONS(2629), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1067), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1079), + [anon_sym_throw] = ACTIONS(1077), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1081), - [anon_sym_DOT_DOT] = ACTIONS(911), + [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), @@ -123310,7 +123196,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(1089), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -123327,89 +123213,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [488] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_parameter] = STATE(6948), - [sym__parameter_array] = STATE(6996), - [sym_argument] = STATE(7247), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(5160), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2204), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5844), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_tuple_element] = STATE(7283), - [sym_expression] = STATE(5061), - [sym_non_lvalue_expression] = STATE(5597), - [sym_lvalue_expression] = STATE(3588), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3080), - [sym_postfix_unary_expression] = STATE(3111), - [sym_prefix_unary_expression] = STATE(3111), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6154), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3080), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3111), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3080), - [sym_member_access_expression] = STATE(2484), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3111), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7575), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_declaration_expression] = STATE(6803), - [sym_default_expression] = STATE(3080), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3080), - [sym_typeof_expression] = STATE(3080), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2484), - [sym_literal] = STATE(3080), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2222), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_parameter] = STATE(6769), + [sym__parameter_array] = STATE(6785), + [sym_argument] = STATE(7244), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(5152), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2196), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5823), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_tuple_element] = STATE(7166), + [sym_expression] = STATE(5095), + [sym_non_lvalue_expression] = STATE(5543), + [sym_lvalue_expression] = STATE(3540), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3102), + [sym_postfix_unary_expression] = STATE(3079), + [sym_prefix_unary_expression] = STATE(3079), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6134), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3102), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3079), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3102), + [sym_member_access_expression] = STATE(2472), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3079), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7309), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_declaration_expression] = STATE(6902), + [sym_default_expression] = STATE(3102), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3102), + [sym_typeof_expression] = STATE(3102), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2472), + [sym_literal] = STATE(3102), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2221), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(488), [sym_preproc_endregion] = STATE(488), [sym_preproc_line] = STATE(488), @@ -123419,53 +123305,53 @@ 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(2852), - [aux_sym__parameter_type_with_modifiers_repeat1] = STATE(3489), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [aux_sym__class_declaration_initializer_repeat1] = STATE(2843), + [aux_sym__parameter_type_with_modifiers_repeat1] = STATE(3452), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1481), - [anon_sym_LPAREN] = ACTIONS(895), - [anon_sym_RPAREN] = ACTIONS(2627), - [anon_sym_ref] = ACTIONS(2629), - [anon_sym_LBRACE] = ACTIONS(1487), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1479), + [anon_sym_LPAREN] = ACTIONS(659), + [anon_sym_RPAREN] = ACTIONS(2625), + [anon_sym_ref] = ACTIONS(2627), + [anon_sym_LBRACE] = ACTIONS(1481), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1061), - [anon_sym_readonly] = ACTIONS(1103), - [anon_sym_in] = ACTIONS(1105), - [anon_sym_out] = ACTIONS(1105), + [anon_sym_new] = ACTIONS(1059), + [anon_sym_readonly] = ACTIONS(1097), + [anon_sym_in] = ACTIONS(1099), + [anon_sym_out] = ACTIONS(1099), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1067), - [anon_sym_BANG] = ACTIONS(1495), - [anon_sym_TILDE] = ACTIONS(1495), - [anon_sym_PLUS_PLUS] = ACTIONS(1495), - [anon_sym_DASH_DASH] = ACTIONS(1495), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(1485), + [anon_sym_TILDE] = ACTIONS(1485), + [anon_sym_PLUS_PLUS] = ACTIONS(1485), + [anon_sym_DASH_DASH] = ACTIONS(1485), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1493), - [anon_sym_DASH] = ACTIONS(1493), - [anon_sym_STAR] = ACTIONS(905), - [anon_sym_CARET] = ACTIONS(1495), - [anon_sym_AMP] = ACTIONS(1495), - [anon_sym_this] = ACTIONS(1113), - [anon_sym_scoped] = ACTIONS(1115), - [anon_sym_params] = ACTIONS(1117), + [anon_sym_PLUS] = ACTIONS(1483), + [anon_sym_DASH] = ACTIONS(1483), + [anon_sym_STAR] = ACTIONS(683), + [anon_sym_CARET] = ACTIONS(1485), + [anon_sym_AMP] = ACTIONS(1485), + [anon_sym_this] = ACTIONS(1107), + [anon_sym_scoped] = ACTIONS(1109), + [anon_sym_params] = ACTIONS(1111), [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(2631), + [anon_sym_var] = ACTIONS(2629), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1067), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1079), + [anon_sym_throw] = ACTIONS(1077), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1081), - [anon_sym_DOT_DOT] = ACTIONS(911), + [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), @@ -123490,7 +123376,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(1089), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -123507,89 +123393,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [489] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_parameter] = STATE(6948), - [sym__parameter_array] = STATE(6996), - [sym_argument] = STATE(7189), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(5160), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2204), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5850), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_tuple_element] = STATE(7283), - [sym_expression] = STATE(5061), - [sym_non_lvalue_expression] = STATE(5560), - [sym_lvalue_expression] = STATE(3610), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3080), - [sym_postfix_unary_expression] = STATE(3111), - [sym_prefix_unary_expression] = STATE(3111), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6154), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3080), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3111), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3080), - [sym_member_access_expression] = STATE(2484), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3111), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7575), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_declaration_expression] = STATE(6803), - [sym_default_expression] = STATE(3080), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3080), - [sym_typeof_expression] = STATE(3080), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2484), - [sym_literal] = STATE(3080), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2222), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_parameter] = STATE(6769), + [sym__parameter_array] = STATE(6785), + [sym_argument] = STATE(7201), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(5152), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2196), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5801), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_tuple_element] = STATE(7166), + [sym_expression] = STATE(5095), + [sym_non_lvalue_expression] = STATE(5390), + [sym_lvalue_expression] = STATE(3605), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3102), + [sym_postfix_unary_expression] = STATE(3079), + [sym_prefix_unary_expression] = STATE(3079), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6134), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3102), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3079), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3102), + [sym_member_access_expression] = STATE(2472), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3079), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7309), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_declaration_expression] = STATE(6902), + [sym_default_expression] = STATE(3102), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3102), + [sym_typeof_expression] = STATE(3102), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2472), + [sym_literal] = STATE(3102), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2221), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(489), [sym_preproc_endregion] = STATE(489), [sym_preproc_line] = STATE(489), @@ -123599,53 +123485,53 @@ 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(2852), - [aux_sym__parameter_type_with_modifiers_repeat1] = STATE(3489), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [aux_sym__class_declaration_initializer_repeat1] = STATE(2843), + [aux_sym__parameter_type_with_modifiers_repeat1] = STATE(3452), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1481), - [anon_sym_LPAREN] = ACTIONS(895), - [anon_sym_RPAREN] = ACTIONS(2627), - [anon_sym_ref] = ACTIONS(2629), - [anon_sym_LBRACE] = ACTIONS(1487), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1479), + [anon_sym_LPAREN] = ACTIONS(659), + [anon_sym_RPAREN] = ACTIONS(2625), + [anon_sym_ref] = ACTIONS(2627), + [anon_sym_LBRACE] = ACTIONS(1481), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1061), - [anon_sym_readonly] = ACTIONS(1103), - [anon_sym_in] = ACTIONS(1105), - [anon_sym_out] = ACTIONS(1105), + [anon_sym_new] = ACTIONS(1059), + [anon_sym_readonly] = ACTIONS(1097), + [anon_sym_in] = ACTIONS(1099), + [anon_sym_out] = ACTIONS(1099), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1067), - [anon_sym_BANG] = ACTIONS(1495), - [anon_sym_TILDE] = ACTIONS(1495), - [anon_sym_PLUS_PLUS] = ACTIONS(1495), - [anon_sym_DASH_DASH] = ACTIONS(1495), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(1485), + [anon_sym_TILDE] = ACTIONS(1485), + [anon_sym_PLUS_PLUS] = ACTIONS(1485), + [anon_sym_DASH_DASH] = ACTIONS(1485), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1493), - [anon_sym_DASH] = ACTIONS(1493), - [anon_sym_STAR] = ACTIONS(905), - [anon_sym_CARET] = ACTIONS(1495), - [anon_sym_AMP] = ACTIONS(1495), - [anon_sym_this] = ACTIONS(1113), - [anon_sym_scoped] = ACTIONS(1115), - [anon_sym_params] = ACTIONS(1117), + [anon_sym_PLUS] = ACTIONS(1483), + [anon_sym_DASH] = ACTIONS(1483), + [anon_sym_STAR] = ACTIONS(683), + [anon_sym_CARET] = ACTIONS(1485), + [anon_sym_AMP] = ACTIONS(1485), + [anon_sym_this] = ACTIONS(1107), + [anon_sym_scoped] = ACTIONS(1109), + [anon_sym_params] = ACTIONS(1111), [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(2631), + [anon_sym_var] = ACTIONS(2629), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1067), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1079), + [anon_sym_throw] = ACTIONS(1077), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1081), - [anon_sym_DOT_DOT] = ACTIONS(911), + [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), @@ -123670,7 +123556,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(1089), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -123687,89 +123573,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [490] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_parameter] = STATE(6948), - [sym__parameter_array] = STATE(6996), - [sym_argument] = STATE(7273), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(5160), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2204), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5829), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_tuple_element] = STATE(7283), - [sym_expression] = STATE(5061), - [sym_non_lvalue_expression] = STATE(5333), - [sym_lvalue_expression] = STATE(3556), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3080), - [sym_postfix_unary_expression] = STATE(3111), - [sym_prefix_unary_expression] = STATE(3111), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6154), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3080), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3111), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3080), - [sym_member_access_expression] = STATE(2484), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3111), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7575), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_declaration_expression] = STATE(6803), - [sym_default_expression] = STATE(3080), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3080), - [sym_typeof_expression] = STATE(3080), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2484), - [sym_literal] = STATE(3080), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2222), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_parameter] = STATE(6769), + [sym__parameter_array] = STATE(6785), + [sym_argument] = STATE(7133), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(5152), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2196), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5832), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_tuple_element] = STATE(7166), + [sym_expression] = STATE(5095), + [sym_non_lvalue_expression] = STATE(5315), + [sym_lvalue_expression] = STATE(3602), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3102), + [sym_postfix_unary_expression] = STATE(3079), + [sym_prefix_unary_expression] = STATE(3079), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6134), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3102), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3079), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3102), + [sym_member_access_expression] = STATE(2472), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3079), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7309), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_declaration_expression] = STATE(6902), + [sym_default_expression] = STATE(3102), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3102), + [sym_typeof_expression] = STATE(3102), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2472), + [sym_literal] = STATE(3102), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2221), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(490), [sym_preproc_endregion] = STATE(490), [sym_preproc_line] = STATE(490), @@ -123779,53 +123665,53 @@ 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(2852), - [aux_sym__parameter_type_with_modifiers_repeat1] = STATE(3489), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [aux_sym__class_declaration_initializer_repeat1] = STATE(2843), + [aux_sym__parameter_type_with_modifiers_repeat1] = STATE(3452), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1481), - [anon_sym_LPAREN] = ACTIONS(895), - [anon_sym_RPAREN] = ACTIONS(2627), - [anon_sym_ref] = ACTIONS(2629), - [anon_sym_LBRACE] = ACTIONS(1487), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1479), + [anon_sym_LPAREN] = ACTIONS(659), + [anon_sym_RPAREN] = ACTIONS(2625), + [anon_sym_ref] = ACTIONS(2627), + [anon_sym_LBRACE] = ACTIONS(1481), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1061), - [anon_sym_readonly] = ACTIONS(1103), - [anon_sym_in] = ACTIONS(1105), - [anon_sym_out] = ACTIONS(1105), + [anon_sym_new] = ACTIONS(1059), + [anon_sym_readonly] = ACTIONS(1097), + [anon_sym_in] = ACTIONS(1099), + [anon_sym_out] = ACTIONS(1099), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1067), - [anon_sym_BANG] = ACTIONS(1495), - [anon_sym_TILDE] = ACTIONS(1495), - [anon_sym_PLUS_PLUS] = ACTIONS(1495), - [anon_sym_DASH_DASH] = ACTIONS(1495), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(1485), + [anon_sym_TILDE] = ACTIONS(1485), + [anon_sym_PLUS_PLUS] = ACTIONS(1485), + [anon_sym_DASH_DASH] = ACTIONS(1485), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1493), - [anon_sym_DASH] = ACTIONS(1493), - [anon_sym_STAR] = ACTIONS(905), - [anon_sym_CARET] = ACTIONS(1495), - [anon_sym_AMP] = ACTIONS(1495), - [anon_sym_this] = ACTIONS(1113), - [anon_sym_scoped] = ACTIONS(1115), - [anon_sym_params] = ACTIONS(1117), + [anon_sym_PLUS] = ACTIONS(1483), + [anon_sym_DASH] = ACTIONS(1483), + [anon_sym_STAR] = ACTIONS(683), + [anon_sym_CARET] = ACTIONS(1485), + [anon_sym_AMP] = ACTIONS(1485), + [anon_sym_this] = ACTIONS(1107), + [anon_sym_scoped] = ACTIONS(1109), + [anon_sym_params] = ACTIONS(1111), [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(2631), + [anon_sym_var] = ACTIONS(2629), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1067), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1079), + [anon_sym_throw] = ACTIONS(1077), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1081), - [anon_sym_DOT_DOT] = ACTIONS(911), + [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), @@ -123850,7 +123736,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(1089), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -123867,89 +123753,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [491] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_parameter] = STATE(6948), - [sym__parameter_array] = STATE(6996), - [sym_argument] = STATE(7174), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(5160), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2204), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5834), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_tuple_element] = STATE(7283), - [sym_expression] = STATE(5061), - [sym_non_lvalue_expression] = STATE(5636), - [sym_lvalue_expression] = STATE(3616), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3080), - [sym_postfix_unary_expression] = STATE(3111), - [sym_prefix_unary_expression] = STATE(3111), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6154), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3080), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3111), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3080), - [sym_member_access_expression] = STATE(2484), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3111), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7575), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_declaration_expression] = STATE(6803), - [sym_default_expression] = STATE(3080), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3080), - [sym_typeof_expression] = STATE(3080), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2484), - [sym_literal] = STATE(3080), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2222), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_parameter] = STATE(6769), + [sym__parameter_array] = STATE(6785), + [sym_argument] = STATE(7244), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(5152), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2196), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5836), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_tuple_element] = STATE(7166), + [sym_expression] = STATE(5095), + [sym_non_lvalue_expression] = STATE(5543), + [sym_lvalue_expression] = STATE(3540), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3102), + [sym_postfix_unary_expression] = STATE(3079), + [sym_prefix_unary_expression] = STATE(3079), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6134), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3102), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3079), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3102), + [sym_member_access_expression] = STATE(2472), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3079), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7309), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_declaration_expression] = STATE(6902), + [sym_default_expression] = STATE(3102), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3102), + [sym_typeof_expression] = STATE(3102), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2472), + [sym_literal] = STATE(3102), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2221), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(491), [sym_preproc_endregion] = STATE(491), [sym_preproc_line] = STATE(491), @@ -123959,53 +123845,53 @@ 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(2852), - [aux_sym__parameter_type_with_modifiers_repeat1] = STATE(3489), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [aux_sym__class_declaration_initializer_repeat1] = STATE(2843), + [aux_sym__parameter_type_with_modifiers_repeat1] = STATE(3452), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1481), - [anon_sym_LPAREN] = ACTIONS(895), - [anon_sym_RPAREN] = ACTIONS(2627), - [anon_sym_ref] = ACTIONS(2629), - [anon_sym_LBRACE] = ACTIONS(1487), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1479), + [anon_sym_LPAREN] = ACTIONS(659), + [anon_sym_RPAREN] = ACTIONS(2625), + [anon_sym_ref] = ACTIONS(2627), + [anon_sym_LBRACE] = ACTIONS(1481), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1061), - [anon_sym_readonly] = ACTIONS(1103), - [anon_sym_in] = ACTIONS(1105), - [anon_sym_out] = ACTIONS(1105), + [anon_sym_new] = ACTIONS(1059), + [anon_sym_readonly] = ACTIONS(1097), + [anon_sym_in] = ACTIONS(1099), + [anon_sym_out] = ACTIONS(1099), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1067), - [anon_sym_BANG] = ACTIONS(1495), - [anon_sym_TILDE] = ACTIONS(1495), - [anon_sym_PLUS_PLUS] = ACTIONS(1495), - [anon_sym_DASH_DASH] = ACTIONS(1495), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(1485), + [anon_sym_TILDE] = ACTIONS(1485), + [anon_sym_PLUS_PLUS] = ACTIONS(1485), + [anon_sym_DASH_DASH] = ACTIONS(1485), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1493), - [anon_sym_DASH] = ACTIONS(1493), - [anon_sym_STAR] = ACTIONS(905), - [anon_sym_CARET] = ACTIONS(1495), - [anon_sym_AMP] = ACTIONS(1495), - [anon_sym_this] = ACTIONS(1113), - [anon_sym_scoped] = ACTIONS(1115), - [anon_sym_params] = ACTIONS(1117), + [anon_sym_PLUS] = ACTIONS(1483), + [anon_sym_DASH] = ACTIONS(1483), + [anon_sym_STAR] = ACTIONS(683), + [anon_sym_CARET] = ACTIONS(1485), + [anon_sym_AMP] = ACTIONS(1485), + [anon_sym_this] = ACTIONS(1107), + [anon_sym_scoped] = ACTIONS(1109), + [anon_sym_params] = ACTIONS(1111), [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(2631), + [anon_sym_var] = ACTIONS(2629), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1067), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1079), + [anon_sym_throw] = ACTIONS(1077), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1081), - [anon_sym_DOT_DOT] = ACTIONS(911), + [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), @@ -124030,7 +123916,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(1089), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -124047,89 +123933,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [492] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_parameter] = STATE(6948), - [sym__parameter_array] = STATE(6996), - [sym_argument] = STATE(7174), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(5160), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2204), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5835), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_tuple_element] = STATE(7283), - [sym_expression] = STATE(5061), - [sym_non_lvalue_expression] = STATE(5636), - [sym_lvalue_expression] = STATE(3616), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3080), - [sym_postfix_unary_expression] = STATE(3111), - [sym_prefix_unary_expression] = STATE(3111), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6154), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3080), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3111), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3080), - [sym_member_access_expression] = STATE(2484), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3111), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7575), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_declaration_expression] = STATE(6803), - [sym_default_expression] = STATE(3080), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3080), - [sym_typeof_expression] = STATE(3080), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2484), - [sym_literal] = STATE(3080), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2222), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_parameter] = STATE(6769), + [sym__parameter_array] = STATE(6785), + [sym_argument] = STATE(7244), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(5152), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2196), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5842), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_tuple_element] = STATE(7166), + [sym_expression] = STATE(5095), + [sym_non_lvalue_expression] = STATE(5543), + [sym_lvalue_expression] = STATE(3540), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3102), + [sym_postfix_unary_expression] = STATE(3079), + [sym_prefix_unary_expression] = STATE(3079), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6134), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3102), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3079), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3102), + [sym_member_access_expression] = STATE(2472), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3079), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7309), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_declaration_expression] = STATE(6902), + [sym_default_expression] = STATE(3102), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3102), + [sym_typeof_expression] = STATE(3102), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2472), + [sym_literal] = STATE(3102), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2221), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(492), [sym_preproc_endregion] = STATE(492), [sym_preproc_line] = STATE(492), @@ -124139,53 +124025,53 @@ 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(2852), - [aux_sym__parameter_type_with_modifiers_repeat1] = STATE(3489), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [aux_sym__class_declaration_initializer_repeat1] = STATE(2843), + [aux_sym__parameter_type_with_modifiers_repeat1] = STATE(3452), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1481), - [anon_sym_LPAREN] = ACTIONS(895), - [anon_sym_RPAREN] = ACTIONS(2627), - [anon_sym_ref] = ACTIONS(2629), - [anon_sym_LBRACE] = ACTIONS(1487), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1479), + [anon_sym_LPAREN] = ACTIONS(659), + [anon_sym_RPAREN] = ACTIONS(2625), + [anon_sym_ref] = ACTIONS(2627), + [anon_sym_LBRACE] = ACTIONS(1481), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1061), - [anon_sym_readonly] = ACTIONS(1103), - [anon_sym_in] = ACTIONS(1105), - [anon_sym_out] = ACTIONS(1105), + [anon_sym_new] = ACTIONS(1059), + [anon_sym_readonly] = ACTIONS(1097), + [anon_sym_in] = ACTIONS(1099), + [anon_sym_out] = ACTIONS(1099), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1067), - [anon_sym_BANG] = ACTIONS(1495), - [anon_sym_TILDE] = ACTIONS(1495), - [anon_sym_PLUS_PLUS] = ACTIONS(1495), - [anon_sym_DASH_DASH] = ACTIONS(1495), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(1485), + [anon_sym_TILDE] = ACTIONS(1485), + [anon_sym_PLUS_PLUS] = ACTIONS(1485), + [anon_sym_DASH_DASH] = ACTIONS(1485), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1493), - [anon_sym_DASH] = ACTIONS(1493), - [anon_sym_STAR] = ACTIONS(905), - [anon_sym_CARET] = ACTIONS(1495), - [anon_sym_AMP] = ACTIONS(1495), - [anon_sym_this] = ACTIONS(1113), - [anon_sym_scoped] = ACTIONS(1115), - [anon_sym_params] = ACTIONS(1117), + [anon_sym_PLUS] = ACTIONS(1483), + [anon_sym_DASH] = ACTIONS(1483), + [anon_sym_STAR] = ACTIONS(683), + [anon_sym_CARET] = ACTIONS(1485), + [anon_sym_AMP] = ACTIONS(1485), + [anon_sym_this] = ACTIONS(1107), + [anon_sym_scoped] = ACTIONS(1109), + [anon_sym_params] = ACTIONS(1111), [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(2631), + [anon_sym_var] = ACTIONS(2629), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1067), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1079), + [anon_sym_throw] = ACTIONS(1077), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1081), - [anon_sym_DOT_DOT] = ACTIONS(911), + [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), @@ -124210,7 +124096,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(1089), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -124227,89 +124113,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [493] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_parameter] = STATE(6948), - [sym__parameter_array] = STATE(6996), - [sym_argument] = STATE(7174), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(5160), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2204), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5837), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_tuple_element] = STATE(7283), - [sym_expression] = STATE(5061), - [sym_non_lvalue_expression] = STATE(5636), - [sym_lvalue_expression] = STATE(3616), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3080), - [sym_postfix_unary_expression] = STATE(3111), - [sym_prefix_unary_expression] = STATE(3111), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6154), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3080), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3111), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3080), - [sym_member_access_expression] = STATE(2484), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3111), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7575), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_declaration_expression] = STATE(6803), - [sym_default_expression] = STATE(3080), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3080), - [sym_typeof_expression] = STATE(3080), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2484), - [sym_literal] = STATE(3080), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2222), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_parameter] = STATE(6769), + [sym__parameter_array] = STATE(6785), + [sym_argument] = STATE(7244), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(5152), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2196), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5848), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_tuple_element] = STATE(7166), + [sym_expression] = STATE(5095), + [sym_non_lvalue_expression] = STATE(5543), + [sym_lvalue_expression] = STATE(3540), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3102), + [sym_postfix_unary_expression] = STATE(3079), + [sym_prefix_unary_expression] = STATE(3079), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6134), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3102), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3079), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3102), + [sym_member_access_expression] = STATE(2472), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3079), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7309), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_declaration_expression] = STATE(6902), + [sym_default_expression] = STATE(3102), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3102), + [sym_typeof_expression] = STATE(3102), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2472), + [sym_literal] = STATE(3102), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2221), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(493), [sym_preproc_endregion] = STATE(493), [sym_preproc_line] = STATE(493), @@ -124319,53 +124205,53 @@ 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(2852), - [aux_sym__parameter_type_with_modifiers_repeat1] = STATE(3489), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [aux_sym__class_declaration_initializer_repeat1] = STATE(2843), + [aux_sym__parameter_type_with_modifiers_repeat1] = STATE(3452), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1481), - [anon_sym_LPAREN] = ACTIONS(895), - [anon_sym_RPAREN] = ACTIONS(2627), - [anon_sym_ref] = ACTIONS(2629), - [anon_sym_LBRACE] = ACTIONS(1487), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1479), + [anon_sym_LPAREN] = ACTIONS(659), + [anon_sym_RPAREN] = ACTIONS(2625), + [anon_sym_ref] = ACTIONS(2627), + [anon_sym_LBRACE] = ACTIONS(1481), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1061), - [anon_sym_readonly] = ACTIONS(1103), - [anon_sym_in] = ACTIONS(1105), - [anon_sym_out] = ACTIONS(1105), + [anon_sym_new] = ACTIONS(1059), + [anon_sym_readonly] = ACTIONS(1097), + [anon_sym_in] = ACTIONS(1099), + [anon_sym_out] = ACTIONS(1099), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1067), - [anon_sym_BANG] = ACTIONS(1495), - [anon_sym_TILDE] = ACTIONS(1495), - [anon_sym_PLUS_PLUS] = ACTIONS(1495), - [anon_sym_DASH_DASH] = ACTIONS(1495), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(1485), + [anon_sym_TILDE] = ACTIONS(1485), + [anon_sym_PLUS_PLUS] = ACTIONS(1485), + [anon_sym_DASH_DASH] = ACTIONS(1485), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1493), - [anon_sym_DASH] = ACTIONS(1493), - [anon_sym_STAR] = ACTIONS(905), - [anon_sym_CARET] = ACTIONS(1495), - [anon_sym_AMP] = ACTIONS(1495), - [anon_sym_this] = ACTIONS(1113), - [anon_sym_scoped] = ACTIONS(1115), - [anon_sym_params] = ACTIONS(1117), + [anon_sym_PLUS] = ACTIONS(1483), + [anon_sym_DASH] = ACTIONS(1483), + [anon_sym_STAR] = ACTIONS(683), + [anon_sym_CARET] = ACTIONS(1485), + [anon_sym_AMP] = ACTIONS(1485), + [anon_sym_this] = ACTIONS(1107), + [anon_sym_scoped] = ACTIONS(1109), + [anon_sym_params] = ACTIONS(1111), [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(2631), + [anon_sym_var] = ACTIONS(2629), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1067), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1079), + [anon_sym_throw] = ACTIONS(1077), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1081), - [anon_sym_DOT_DOT] = ACTIONS(911), + [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), @@ -124390,7 +124276,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(1089), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -124407,89 +124293,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [494] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_parameter] = STATE(6948), - [sym__parameter_array] = STATE(6996), - [sym_argument] = STATE(7273), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(5160), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2204), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5852), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_tuple_element] = STATE(7283), - [sym_expression] = STATE(5061), - [sym_non_lvalue_expression] = STATE(5333), - [sym_lvalue_expression] = STATE(3630), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3080), - [sym_postfix_unary_expression] = STATE(3111), - [sym_prefix_unary_expression] = STATE(3111), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6154), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3080), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3111), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3080), - [sym_member_access_expression] = STATE(2484), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3111), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7575), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_declaration_expression] = STATE(6803), - [sym_default_expression] = STATE(3080), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3080), - [sym_typeof_expression] = STATE(3080), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2484), - [sym_literal] = STATE(3080), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2222), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_parameter] = STATE(6769), + [sym__parameter_array] = STATE(6785), + [sym_argument] = STATE(7133), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(5152), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2196), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5808), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_tuple_element] = STATE(7166), + [sym_expression] = STATE(5095), + [sym_non_lvalue_expression] = STATE(5315), + [sym_lvalue_expression] = STATE(3616), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3102), + [sym_postfix_unary_expression] = STATE(3079), + [sym_prefix_unary_expression] = STATE(3079), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6134), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3102), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3079), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3102), + [sym_member_access_expression] = STATE(2472), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3079), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7309), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_declaration_expression] = STATE(6902), + [sym_default_expression] = STATE(3102), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3102), + [sym_typeof_expression] = STATE(3102), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2472), + [sym_literal] = STATE(3102), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2221), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(494), [sym_preproc_endregion] = STATE(494), [sym_preproc_line] = STATE(494), @@ -124499,53 +124385,53 @@ 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(2852), - [aux_sym__parameter_type_with_modifiers_repeat1] = STATE(3489), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [aux_sym__class_declaration_initializer_repeat1] = STATE(2843), + [aux_sym__parameter_type_with_modifiers_repeat1] = STATE(3452), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1481), - [anon_sym_LPAREN] = ACTIONS(895), - [anon_sym_RPAREN] = ACTIONS(2627), - [anon_sym_ref] = ACTIONS(2629), - [anon_sym_LBRACE] = ACTIONS(1487), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1479), + [anon_sym_LPAREN] = ACTIONS(659), + [anon_sym_RPAREN] = ACTIONS(2625), + [anon_sym_ref] = ACTIONS(2627), + [anon_sym_LBRACE] = ACTIONS(1481), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1061), - [anon_sym_readonly] = ACTIONS(1103), - [anon_sym_in] = ACTIONS(1105), - [anon_sym_out] = ACTIONS(1105), + [anon_sym_new] = ACTIONS(1059), + [anon_sym_readonly] = ACTIONS(1097), + [anon_sym_in] = ACTIONS(1099), + [anon_sym_out] = ACTIONS(1099), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1067), - [anon_sym_BANG] = ACTIONS(1495), - [anon_sym_TILDE] = ACTIONS(1495), - [anon_sym_PLUS_PLUS] = ACTIONS(1495), - [anon_sym_DASH_DASH] = ACTIONS(1495), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(1485), + [anon_sym_TILDE] = ACTIONS(1485), + [anon_sym_PLUS_PLUS] = ACTIONS(1485), + [anon_sym_DASH_DASH] = ACTIONS(1485), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1493), - [anon_sym_DASH] = ACTIONS(1493), - [anon_sym_STAR] = ACTIONS(905), - [anon_sym_CARET] = ACTIONS(1495), - [anon_sym_AMP] = ACTIONS(1495), - [anon_sym_this] = ACTIONS(1113), - [anon_sym_scoped] = ACTIONS(1115), - [anon_sym_params] = ACTIONS(1117), + [anon_sym_PLUS] = ACTIONS(1483), + [anon_sym_DASH] = ACTIONS(1483), + [anon_sym_STAR] = ACTIONS(683), + [anon_sym_CARET] = ACTIONS(1485), + [anon_sym_AMP] = ACTIONS(1485), + [anon_sym_this] = ACTIONS(1107), + [anon_sym_scoped] = ACTIONS(1109), + [anon_sym_params] = ACTIONS(1111), [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(2631), + [anon_sym_var] = ACTIONS(2629), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1067), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1079), + [anon_sym_throw] = ACTIONS(1077), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1081), - [anon_sym_DOT_DOT] = ACTIONS(911), + [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), @@ -124570,7 +124456,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(1089), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -124587,89 +124473,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [495] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_parameter] = STATE(6948), - [sym__parameter_array] = STATE(6996), - [sym_argument] = STATE(7273), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(5160), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2204), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5819), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_tuple_element] = STATE(7283), - [sym_expression] = STATE(5061), - [sym_non_lvalue_expression] = STATE(5333), - [sym_lvalue_expression] = STATE(3630), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3080), - [sym_postfix_unary_expression] = STATE(3111), - [sym_prefix_unary_expression] = STATE(3111), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6154), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3080), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3111), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3080), - [sym_member_access_expression] = STATE(2484), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3111), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7575), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_declaration_expression] = STATE(6803), - [sym_default_expression] = STATE(3080), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3080), - [sym_typeof_expression] = STATE(3080), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2484), - [sym_literal] = STATE(3080), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2222), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_parameter] = STATE(6769), + [sym__parameter_array] = STATE(6785), + [sym_argument] = STATE(7154), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(5152), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2196), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5845), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_tuple_element] = STATE(7166), + [sym_expression] = STATE(5095), + [sym_non_lvalue_expression] = STATE(5613), + [sym_lvalue_expression] = STATE(3616), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3102), + [sym_postfix_unary_expression] = STATE(3079), + [sym_prefix_unary_expression] = STATE(3079), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6134), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3102), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3079), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3102), + [sym_member_access_expression] = STATE(2472), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3079), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7309), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_declaration_expression] = STATE(6902), + [sym_default_expression] = STATE(3102), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3102), + [sym_typeof_expression] = STATE(3102), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2472), + [sym_literal] = STATE(3102), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2221), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(495), [sym_preproc_endregion] = STATE(495), [sym_preproc_line] = STATE(495), @@ -124679,53 +124565,53 @@ 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(2852), - [aux_sym__parameter_type_with_modifiers_repeat1] = STATE(3489), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [aux_sym__class_declaration_initializer_repeat1] = STATE(2843), + [aux_sym__parameter_type_with_modifiers_repeat1] = STATE(3452), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1481), - [anon_sym_LPAREN] = ACTIONS(895), - [anon_sym_RPAREN] = ACTIONS(2627), - [anon_sym_ref] = ACTIONS(2629), - [anon_sym_LBRACE] = ACTIONS(1487), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1479), + [anon_sym_LPAREN] = ACTIONS(659), + [anon_sym_RPAREN] = ACTIONS(2625), + [anon_sym_ref] = ACTIONS(2627), + [anon_sym_LBRACE] = ACTIONS(1481), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1061), - [anon_sym_readonly] = ACTIONS(1103), - [anon_sym_in] = ACTIONS(1105), - [anon_sym_out] = ACTIONS(1105), + [anon_sym_new] = ACTIONS(1059), + [anon_sym_readonly] = ACTIONS(1097), + [anon_sym_in] = ACTIONS(1099), + [anon_sym_out] = ACTIONS(1099), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1067), - [anon_sym_BANG] = ACTIONS(1495), - [anon_sym_TILDE] = ACTIONS(1495), - [anon_sym_PLUS_PLUS] = ACTIONS(1495), - [anon_sym_DASH_DASH] = ACTIONS(1495), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(1485), + [anon_sym_TILDE] = ACTIONS(1485), + [anon_sym_PLUS_PLUS] = ACTIONS(1485), + [anon_sym_DASH_DASH] = ACTIONS(1485), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1493), - [anon_sym_DASH] = ACTIONS(1493), - [anon_sym_STAR] = ACTIONS(905), - [anon_sym_CARET] = ACTIONS(1495), - [anon_sym_AMP] = ACTIONS(1495), - [anon_sym_this] = ACTIONS(1113), - [anon_sym_scoped] = ACTIONS(1115), - [anon_sym_params] = ACTIONS(1117), + [anon_sym_PLUS] = ACTIONS(1483), + [anon_sym_DASH] = ACTIONS(1483), + [anon_sym_STAR] = ACTIONS(683), + [anon_sym_CARET] = ACTIONS(1485), + [anon_sym_AMP] = ACTIONS(1485), + [anon_sym_this] = ACTIONS(1107), + [anon_sym_scoped] = ACTIONS(1109), + [anon_sym_params] = ACTIONS(1111), [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(2631), + [anon_sym_var] = ACTIONS(2629), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1067), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1079), + [anon_sym_throw] = ACTIONS(1077), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1081), - [anon_sym_DOT_DOT] = ACTIONS(911), + [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), @@ -124750,7 +124636,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(1089), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -124767,89 +124653,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [496] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_parameter] = STATE(6948), - [sym__parameter_array] = STATE(6996), - [sym_argument] = STATE(7143), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(5160), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2204), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5821), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_tuple_element] = STATE(7283), - [sym_expression] = STATE(5061), - [sym_non_lvalue_expression] = STATE(5661), - [sym_lvalue_expression] = STATE(3595), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3080), - [sym_postfix_unary_expression] = STATE(3111), - [sym_prefix_unary_expression] = STATE(3111), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6154), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3080), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3111), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3080), - [sym_member_access_expression] = STATE(2484), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3111), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7575), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_declaration_expression] = STATE(6803), - [sym_default_expression] = STATE(3080), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3080), - [sym_typeof_expression] = STATE(3080), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2484), - [sym_literal] = STATE(3080), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2222), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_parameter] = STATE(6769), + [sym__parameter_array] = STATE(6785), + [sym_argument] = STATE(7154), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(5152), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2196), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5838), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_tuple_element] = STATE(7166), + [sym_expression] = STATE(5095), + [sym_non_lvalue_expression] = STATE(5613), + [sym_lvalue_expression] = STATE(3543), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3102), + [sym_postfix_unary_expression] = STATE(3079), + [sym_prefix_unary_expression] = STATE(3079), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6134), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3102), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3079), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3102), + [sym_member_access_expression] = STATE(2472), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3079), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7309), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_declaration_expression] = STATE(6902), + [sym_default_expression] = STATE(3102), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3102), + [sym_typeof_expression] = STATE(3102), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2472), + [sym_literal] = STATE(3102), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2221), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(496), [sym_preproc_endregion] = STATE(496), [sym_preproc_line] = STATE(496), @@ -124859,53 +124745,53 @@ 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(2852), - [aux_sym__parameter_type_with_modifiers_repeat1] = STATE(3489), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [aux_sym__class_declaration_initializer_repeat1] = STATE(2843), + [aux_sym__parameter_type_with_modifiers_repeat1] = STATE(3452), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1481), - [anon_sym_LPAREN] = ACTIONS(895), - [anon_sym_RPAREN] = ACTIONS(2627), - [anon_sym_ref] = ACTIONS(2629), - [anon_sym_LBRACE] = ACTIONS(1487), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1479), + [anon_sym_LPAREN] = ACTIONS(659), + [anon_sym_RPAREN] = ACTIONS(2625), + [anon_sym_ref] = ACTIONS(2627), + [anon_sym_LBRACE] = ACTIONS(1481), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1061), - [anon_sym_readonly] = ACTIONS(1103), - [anon_sym_in] = ACTIONS(1105), - [anon_sym_out] = ACTIONS(1105), + [anon_sym_new] = ACTIONS(1059), + [anon_sym_readonly] = ACTIONS(1097), + [anon_sym_in] = ACTIONS(1099), + [anon_sym_out] = ACTIONS(1099), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1067), - [anon_sym_BANG] = ACTIONS(1495), - [anon_sym_TILDE] = ACTIONS(1495), - [anon_sym_PLUS_PLUS] = ACTIONS(1495), - [anon_sym_DASH_DASH] = ACTIONS(1495), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(1485), + [anon_sym_TILDE] = ACTIONS(1485), + [anon_sym_PLUS_PLUS] = ACTIONS(1485), + [anon_sym_DASH_DASH] = ACTIONS(1485), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1493), - [anon_sym_DASH] = ACTIONS(1493), - [anon_sym_STAR] = ACTIONS(905), - [anon_sym_CARET] = ACTIONS(1495), - [anon_sym_AMP] = ACTIONS(1495), - [anon_sym_this] = ACTIONS(1113), - [anon_sym_scoped] = ACTIONS(1115), - [anon_sym_params] = ACTIONS(1117), + [anon_sym_PLUS] = ACTIONS(1483), + [anon_sym_DASH] = ACTIONS(1483), + [anon_sym_STAR] = ACTIONS(683), + [anon_sym_CARET] = ACTIONS(1485), + [anon_sym_AMP] = ACTIONS(1485), + [anon_sym_this] = ACTIONS(1107), + [anon_sym_scoped] = ACTIONS(1109), + [anon_sym_params] = ACTIONS(1111), [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(2631), + [anon_sym_var] = ACTIONS(2629), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1067), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1079), + [anon_sym_throw] = ACTIONS(1077), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1081), - [anon_sym_DOT_DOT] = ACTIONS(911), + [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), @@ -124930,7 +124816,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(1089), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -124947,89 +124833,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [497] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_parameter] = STATE(6948), - [sym__parameter_array] = STATE(6996), - [sym_argument] = STATE(7143), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(5160), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2204), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5824), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_tuple_element] = STATE(7283), - [sym_expression] = STATE(5061), - [sym_non_lvalue_expression] = STATE(5661), - [sym_lvalue_expression] = STATE(3595), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3080), - [sym_postfix_unary_expression] = STATE(3111), - [sym_prefix_unary_expression] = STATE(3111), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6154), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3080), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3111), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3080), - [sym_member_access_expression] = STATE(2484), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3111), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7575), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_declaration_expression] = STATE(6803), - [sym_default_expression] = STATE(3080), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3080), - [sym_typeof_expression] = STATE(3080), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2484), - [sym_literal] = STATE(3080), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2222), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_parameter] = STATE(6769), + [sym__parameter_array] = STATE(6785), + [sym_argument] = STATE(7154), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(5152), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2196), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5839), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_tuple_element] = STATE(7166), + [sym_expression] = STATE(5095), + [sym_non_lvalue_expression] = STATE(5613), + [sym_lvalue_expression] = STATE(3543), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3102), + [sym_postfix_unary_expression] = STATE(3079), + [sym_prefix_unary_expression] = STATE(3079), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6134), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3102), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3079), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3102), + [sym_member_access_expression] = STATE(2472), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3079), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7309), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_declaration_expression] = STATE(6902), + [sym_default_expression] = STATE(3102), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3102), + [sym_typeof_expression] = STATE(3102), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2472), + [sym_literal] = STATE(3102), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2221), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(497), [sym_preproc_endregion] = STATE(497), [sym_preproc_line] = STATE(497), @@ -125039,53 +124925,53 @@ 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(2852), - [aux_sym__parameter_type_with_modifiers_repeat1] = STATE(3489), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [aux_sym__class_declaration_initializer_repeat1] = STATE(2843), + [aux_sym__parameter_type_with_modifiers_repeat1] = STATE(3452), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1481), - [anon_sym_LPAREN] = ACTIONS(895), - [anon_sym_RPAREN] = ACTIONS(2627), - [anon_sym_ref] = ACTIONS(2629), - [anon_sym_LBRACE] = ACTIONS(1487), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1479), + [anon_sym_LPAREN] = ACTIONS(659), + [anon_sym_RPAREN] = ACTIONS(2625), + [anon_sym_ref] = ACTIONS(2627), + [anon_sym_LBRACE] = ACTIONS(1481), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1061), - [anon_sym_readonly] = ACTIONS(1103), - [anon_sym_in] = ACTIONS(1105), - [anon_sym_out] = ACTIONS(1105), + [anon_sym_new] = ACTIONS(1059), + [anon_sym_readonly] = ACTIONS(1097), + [anon_sym_in] = ACTIONS(1099), + [anon_sym_out] = ACTIONS(1099), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1067), - [anon_sym_BANG] = ACTIONS(1495), - [anon_sym_TILDE] = ACTIONS(1495), - [anon_sym_PLUS_PLUS] = ACTIONS(1495), - [anon_sym_DASH_DASH] = ACTIONS(1495), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(1485), + [anon_sym_TILDE] = ACTIONS(1485), + [anon_sym_PLUS_PLUS] = ACTIONS(1485), + [anon_sym_DASH_DASH] = ACTIONS(1485), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1493), - [anon_sym_DASH] = ACTIONS(1493), - [anon_sym_STAR] = ACTIONS(905), - [anon_sym_CARET] = ACTIONS(1495), - [anon_sym_AMP] = ACTIONS(1495), - [anon_sym_this] = ACTIONS(1113), - [anon_sym_scoped] = ACTIONS(1115), - [anon_sym_params] = ACTIONS(1117), + [anon_sym_PLUS] = ACTIONS(1483), + [anon_sym_DASH] = ACTIONS(1483), + [anon_sym_STAR] = ACTIONS(683), + [anon_sym_CARET] = ACTIONS(1485), + [anon_sym_AMP] = ACTIONS(1485), + [anon_sym_this] = ACTIONS(1107), + [anon_sym_scoped] = ACTIONS(1109), + [anon_sym_params] = ACTIONS(1111), [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(2631), + [anon_sym_var] = ACTIONS(2629), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1067), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1079), + [anon_sym_throw] = ACTIONS(1077), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1081), - [anon_sym_DOT_DOT] = ACTIONS(911), + [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), @@ -125110,7 +124996,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(1089), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -125127,89 +125013,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [498] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_parameter] = STATE(6948), - [sym__parameter_array] = STATE(6996), - [sym_argument] = STATE(7174), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(5160), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2204), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5825), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_tuple_element] = STATE(7283), - [sym_expression] = STATE(5061), - [sym_non_lvalue_expression] = STATE(5636), - [sym_lvalue_expression] = STATE(3616), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3080), - [sym_postfix_unary_expression] = STATE(3111), - [sym_prefix_unary_expression] = STATE(3111), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6154), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3080), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3111), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3080), - [sym_member_access_expression] = STATE(2484), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3111), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7575), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_declaration_expression] = STATE(6803), - [sym_default_expression] = STATE(3080), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3080), - [sym_typeof_expression] = STATE(3080), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2484), - [sym_literal] = STATE(3080), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2222), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_parameter] = STATE(6769), + [sym__parameter_array] = STATE(6785), + [sym_argument] = STATE(7244), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(5152), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2196), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5840), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_tuple_element] = STATE(7166), + [sym_expression] = STATE(5095), + [sym_non_lvalue_expression] = STATE(5543), + [sym_lvalue_expression] = STATE(3540), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3102), + [sym_postfix_unary_expression] = STATE(3079), + [sym_prefix_unary_expression] = STATE(3079), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6134), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3102), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3079), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3102), + [sym_member_access_expression] = STATE(2472), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3079), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7309), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_declaration_expression] = STATE(6902), + [sym_default_expression] = STATE(3102), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3102), + [sym_typeof_expression] = STATE(3102), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2472), + [sym_literal] = STATE(3102), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2221), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(498), [sym_preproc_endregion] = STATE(498), [sym_preproc_line] = STATE(498), @@ -125219,53 +125105,53 @@ 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(2852), - [aux_sym__parameter_type_with_modifiers_repeat1] = STATE(3489), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [aux_sym__class_declaration_initializer_repeat1] = STATE(2843), + [aux_sym__parameter_type_with_modifiers_repeat1] = STATE(3452), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1481), - [anon_sym_LPAREN] = ACTIONS(895), - [anon_sym_RPAREN] = ACTIONS(2627), - [anon_sym_ref] = ACTIONS(2629), - [anon_sym_LBRACE] = ACTIONS(1487), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1479), + [anon_sym_LPAREN] = ACTIONS(659), + [anon_sym_RPAREN] = ACTIONS(2625), + [anon_sym_ref] = ACTIONS(2627), + [anon_sym_LBRACE] = ACTIONS(1481), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1061), - [anon_sym_readonly] = ACTIONS(1103), - [anon_sym_in] = ACTIONS(1105), - [anon_sym_out] = ACTIONS(1105), + [anon_sym_new] = ACTIONS(1059), + [anon_sym_readonly] = ACTIONS(1097), + [anon_sym_in] = ACTIONS(1099), + [anon_sym_out] = ACTIONS(1099), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1067), - [anon_sym_BANG] = ACTIONS(1495), - [anon_sym_TILDE] = ACTIONS(1495), - [anon_sym_PLUS_PLUS] = ACTIONS(1495), - [anon_sym_DASH_DASH] = ACTIONS(1495), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(1485), + [anon_sym_TILDE] = ACTIONS(1485), + [anon_sym_PLUS_PLUS] = ACTIONS(1485), + [anon_sym_DASH_DASH] = ACTIONS(1485), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1493), - [anon_sym_DASH] = ACTIONS(1493), - [anon_sym_STAR] = ACTIONS(905), - [anon_sym_CARET] = ACTIONS(1495), - [anon_sym_AMP] = ACTIONS(1495), - [anon_sym_this] = ACTIONS(1113), - [anon_sym_scoped] = ACTIONS(1115), - [anon_sym_params] = ACTIONS(1117), + [anon_sym_PLUS] = ACTIONS(1483), + [anon_sym_DASH] = ACTIONS(1483), + [anon_sym_STAR] = ACTIONS(683), + [anon_sym_CARET] = ACTIONS(1485), + [anon_sym_AMP] = ACTIONS(1485), + [anon_sym_this] = ACTIONS(1107), + [anon_sym_scoped] = ACTIONS(1109), + [anon_sym_params] = ACTIONS(1111), [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(2631), + [anon_sym_var] = ACTIONS(2629), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1067), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1079), + [anon_sym_throw] = ACTIONS(1077), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1081), - [anon_sym_DOT_DOT] = ACTIONS(911), + [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), @@ -125290,7 +125176,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(1089), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -125307,89 +125193,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [499] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_parameter] = STATE(6948), - [sym__parameter_array] = STATE(6996), - [sym_argument] = STATE(7273), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(5160), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2204), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5862), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_tuple_element] = STATE(7283), - [sym_expression] = STATE(5061), - [sym_non_lvalue_expression] = STATE(5333), - [sym_lvalue_expression] = STATE(3630), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3080), - [sym_postfix_unary_expression] = STATE(3111), - [sym_prefix_unary_expression] = STATE(3111), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6154), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3080), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3111), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3080), - [sym_member_access_expression] = STATE(2484), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3111), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7575), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_declaration_expression] = STATE(6803), - [sym_default_expression] = STATE(3080), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3080), - [sym_typeof_expression] = STATE(3080), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2484), - [sym_literal] = STATE(3080), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2222), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_parameter] = STATE(6769), + [sym__parameter_array] = STATE(6785), + [sym_argument] = STATE(7133), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(5152), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2196), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5804), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_tuple_element] = STATE(7166), + [sym_expression] = STATE(5095), + [sym_non_lvalue_expression] = STATE(5315), + [sym_lvalue_expression] = STATE(3616), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3102), + [sym_postfix_unary_expression] = STATE(3079), + [sym_prefix_unary_expression] = STATE(3079), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6134), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3102), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3079), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3102), + [sym_member_access_expression] = STATE(2472), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3079), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7309), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_declaration_expression] = STATE(6902), + [sym_default_expression] = STATE(3102), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3102), + [sym_typeof_expression] = STATE(3102), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2472), + [sym_literal] = STATE(3102), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2221), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(499), [sym_preproc_endregion] = STATE(499), [sym_preproc_line] = STATE(499), @@ -125399,53 +125285,53 @@ 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(2852), - [aux_sym__parameter_type_with_modifiers_repeat1] = STATE(3489), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [aux_sym__class_declaration_initializer_repeat1] = STATE(2843), + [aux_sym__parameter_type_with_modifiers_repeat1] = STATE(3452), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1481), - [anon_sym_LPAREN] = ACTIONS(895), - [anon_sym_RPAREN] = ACTIONS(2627), - [anon_sym_ref] = ACTIONS(2629), - [anon_sym_LBRACE] = ACTIONS(1487), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1479), + [anon_sym_LPAREN] = ACTIONS(659), + [anon_sym_RPAREN] = ACTIONS(2625), + [anon_sym_ref] = ACTIONS(2627), + [anon_sym_LBRACE] = ACTIONS(1481), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1061), - [anon_sym_readonly] = ACTIONS(1103), - [anon_sym_in] = ACTIONS(1105), - [anon_sym_out] = ACTIONS(1105), + [anon_sym_new] = ACTIONS(1059), + [anon_sym_readonly] = ACTIONS(1097), + [anon_sym_in] = ACTIONS(1099), + [anon_sym_out] = ACTIONS(1099), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1067), - [anon_sym_BANG] = ACTIONS(1495), - [anon_sym_TILDE] = ACTIONS(1495), - [anon_sym_PLUS_PLUS] = ACTIONS(1495), - [anon_sym_DASH_DASH] = ACTIONS(1495), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(1485), + [anon_sym_TILDE] = ACTIONS(1485), + [anon_sym_PLUS_PLUS] = ACTIONS(1485), + [anon_sym_DASH_DASH] = ACTIONS(1485), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1493), - [anon_sym_DASH] = ACTIONS(1493), - [anon_sym_STAR] = ACTIONS(905), - [anon_sym_CARET] = ACTIONS(1495), - [anon_sym_AMP] = ACTIONS(1495), - [anon_sym_this] = ACTIONS(1113), - [anon_sym_scoped] = ACTIONS(1115), - [anon_sym_params] = ACTIONS(1117), + [anon_sym_PLUS] = ACTIONS(1483), + [anon_sym_DASH] = ACTIONS(1483), + [anon_sym_STAR] = ACTIONS(683), + [anon_sym_CARET] = ACTIONS(1485), + [anon_sym_AMP] = ACTIONS(1485), + [anon_sym_this] = ACTIONS(1107), + [anon_sym_scoped] = ACTIONS(1109), + [anon_sym_params] = ACTIONS(1111), [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(2631), + [anon_sym_var] = ACTIONS(2629), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1067), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1079), + [anon_sym_throw] = ACTIONS(1077), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1081), - [anon_sym_DOT_DOT] = ACTIONS(911), + [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), @@ -125470,7 +125356,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(1089), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -125487,89 +125373,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [500] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_parameter] = STATE(6948), - [sym__parameter_array] = STATE(6996), - [sym_argument] = STATE(7143), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(5160), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2204), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5855), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_tuple_element] = STATE(7283), - [sym_expression] = STATE(5061), - [sym_non_lvalue_expression] = STATE(5661), - [sym_lvalue_expression] = STATE(3630), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3080), - [sym_postfix_unary_expression] = STATE(3111), - [sym_prefix_unary_expression] = STATE(3111), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6154), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3080), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3111), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3080), - [sym_member_access_expression] = STATE(2484), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3111), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7575), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_declaration_expression] = STATE(6803), - [sym_default_expression] = STATE(3080), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3080), - [sym_typeof_expression] = STATE(3080), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2484), - [sym_literal] = STATE(3080), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2222), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_parameter] = STATE(6769), + [sym__parameter_array] = STATE(6785), + [sym_argument] = STATE(7133), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(5152), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2196), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5843), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_tuple_element] = STATE(7166), + [sym_expression] = STATE(5095), + [sym_non_lvalue_expression] = STATE(5315), + [sym_lvalue_expression] = STATE(3616), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3102), + [sym_postfix_unary_expression] = STATE(3079), + [sym_prefix_unary_expression] = STATE(3079), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6134), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3102), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3079), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3102), + [sym_member_access_expression] = STATE(2472), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3079), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7309), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_declaration_expression] = STATE(6902), + [sym_default_expression] = STATE(3102), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3102), + [sym_typeof_expression] = STATE(3102), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2472), + [sym_literal] = STATE(3102), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2221), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(500), [sym_preproc_endregion] = STATE(500), [sym_preproc_line] = STATE(500), @@ -125579,53 +125465,53 @@ 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(2852), - [aux_sym__parameter_type_with_modifiers_repeat1] = STATE(3489), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [aux_sym__class_declaration_initializer_repeat1] = STATE(2843), + [aux_sym__parameter_type_with_modifiers_repeat1] = STATE(3452), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1481), - [anon_sym_LPAREN] = ACTIONS(895), - [anon_sym_RPAREN] = ACTIONS(2627), - [anon_sym_ref] = ACTIONS(2629), - [anon_sym_LBRACE] = ACTIONS(1487), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1479), + [anon_sym_LPAREN] = ACTIONS(659), + [anon_sym_RPAREN] = ACTIONS(2625), + [anon_sym_ref] = ACTIONS(2627), + [anon_sym_LBRACE] = ACTIONS(1481), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1061), - [anon_sym_readonly] = ACTIONS(1103), - [anon_sym_in] = ACTIONS(1105), - [anon_sym_out] = ACTIONS(1105), + [anon_sym_new] = ACTIONS(1059), + [anon_sym_readonly] = ACTIONS(1097), + [anon_sym_in] = ACTIONS(1099), + [anon_sym_out] = ACTIONS(1099), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1067), - [anon_sym_BANG] = ACTIONS(1495), - [anon_sym_TILDE] = ACTIONS(1495), - [anon_sym_PLUS_PLUS] = ACTIONS(1495), - [anon_sym_DASH_DASH] = ACTIONS(1495), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(1485), + [anon_sym_TILDE] = ACTIONS(1485), + [anon_sym_PLUS_PLUS] = ACTIONS(1485), + [anon_sym_DASH_DASH] = ACTIONS(1485), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1493), - [anon_sym_DASH] = ACTIONS(1493), - [anon_sym_STAR] = ACTIONS(905), - [anon_sym_CARET] = ACTIONS(1495), - [anon_sym_AMP] = ACTIONS(1495), - [anon_sym_this] = ACTIONS(1113), - [anon_sym_scoped] = ACTIONS(1115), - [anon_sym_params] = ACTIONS(1117), + [anon_sym_PLUS] = ACTIONS(1483), + [anon_sym_DASH] = ACTIONS(1483), + [anon_sym_STAR] = ACTIONS(683), + [anon_sym_CARET] = ACTIONS(1485), + [anon_sym_AMP] = ACTIONS(1485), + [anon_sym_this] = ACTIONS(1107), + [anon_sym_scoped] = ACTIONS(1109), + [anon_sym_params] = ACTIONS(1111), [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(2631), + [anon_sym_var] = ACTIONS(2629), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1067), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1079), + [anon_sym_throw] = ACTIONS(1077), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1081), - [anon_sym_DOT_DOT] = ACTIONS(911), + [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), @@ -125650,7 +125536,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(1089), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -125667,89 +125553,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [501] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_parameter] = STATE(6948), - [sym__parameter_array] = STATE(6996), - [sym_argument] = STATE(7273), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(5160), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2204), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5864), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_tuple_element] = STATE(7283), - [sym_expression] = STATE(5061), - [sym_non_lvalue_expression] = STATE(5333), - [sym_lvalue_expression] = STATE(3630), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3080), - [sym_postfix_unary_expression] = STATE(3111), - [sym_prefix_unary_expression] = STATE(3111), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6154), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3080), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3111), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3080), - [sym_member_access_expression] = STATE(2484), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3111), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7575), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_declaration_expression] = STATE(6803), - [sym_default_expression] = STATE(3080), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3080), - [sym_typeof_expression] = STATE(3080), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2484), - [sym_literal] = STATE(3080), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2222), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_parameter] = STATE(6769), + [sym__parameter_array] = STATE(6785), + [sym_argument] = STATE(7133), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(5152), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2196), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5847), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_tuple_element] = STATE(7166), + [sym_expression] = STATE(5095), + [sym_non_lvalue_expression] = STATE(5315), + [sym_lvalue_expression] = STATE(3616), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3102), + [sym_postfix_unary_expression] = STATE(3079), + [sym_prefix_unary_expression] = STATE(3079), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6134), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3102), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3079), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3102), + [sym_member_access_expression] = STATE(2472), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3079), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7309), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_declaration_expression] = STATE(6902), + [sym_default_expression] = STATE(3102), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3102), + [sym_typeof_expression] = STATE(3102), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2472), + [sym_literal] = STATE(3102), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2221), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(501), [sym_preproc_endregion] = STATE(501), [sym_preproc_line] = STATE(501), @@ -125759,53 +125645,53 @@ 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(2852), - [aux_sym__parameter_type_with_modifiers_repeat1] = STATE(3489), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [aux_sym__class_declaration_initializer_repeat1] = STATE(2843), + [aux_sym__parameter_type_with_modifiers_repeat1] = STATE(3452), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1481), - [anon_sym_LPAREN] = ACTIONS(895), - [anon_sym_RPAREN] = ACTIONS(2627), - [anon_sym_ref] = ACTIONS(2629), - [anon_sym_LBRACE] = ACTIONS(1487), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1479), + [anon_sym_LPAREN] = ACTIONS(659), + [anon_sym_RPAREN] = ACTIONS(2625), + [anon_sym_ref] = ACTIONS(2627), + [anon_sym_LBRACE] = ACTIONS(1481), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1061), - [anon_sym_readonly] = ACTIONS(1103), - [anon_sym_in] = ACTIONS(1105), - [anon_sym_out] = ACTIONS(1105), + [anon_sym_new] = ACTIONS(1059), + [anon_sym_readonly] = ACTIONS(1097), + [anon_sym_in] = ACTIONS(1099), + [anon_sym_out] = ACTIONS(1099), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1067), - [anon_sym_BANG] = ACTIONS(1495), - [anon_sym_TILDE] = ACTIONS(1495), - [anon_sym_PLUS_PLUS] = ACTIONS(1495), - [anon_sym_DASH_DASH] = ACTIONS(1495), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(1485), + [anon_sym_TILDE] = ACTIONS(1485), + [anon_sym_PLUS_PLUS] = ACTIONS(1485), + [anon_sym_DASH_DASH] = ACTIONS(1485), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1493), - [anon_sym_DASH] = ACTIONS(1493), - [anon_sym_STAR] = ACTIONS(905), - [anon_sym_CARET] = ACTIONS(1495), - [anon_sym_AMP] = ACTIONS(1495), - [anon_sym_this] = ACTIONS(1113), - [anon_sym_scoped] = ACTIONS(1115), - [anon_sym_params] = ACTIONS(1117), + [anon_sym_PLUS] = ACTIONS(1483), + [anon_sym_DASH] = ACTIONS(1483), + [anon_sym_STAR] = ACTIONS(683), + [anon_sym_CARET] = ACTIONS(1485), + [anon_sym_AMP] = ACTIONS(1485), + [anon_sym_this] = ACTIONS(1107), + [anon_sym_scoped] = ACTIONS(1109), + [anon_sym_params] = ACTIONS(1111), [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(2631), + [anon_sym_var] = ACTIONS(2629), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1067), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1079), + [anon_sym_throw] = ACTIONS(1077), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1081), - [anon_sym_DOT_DOT] = ACTIONS(911), + [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), @@ -125830,7 +125716,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(1089), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -125847,89 +125733,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [502] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_parameter] = STATE(6948), - [sym__parameter_array] = STATE(6996), - [sym_argument] = STATE(7273), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(5160), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2204), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5868), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_tuple_element] = STATE(7283), - [sym_expression] = STATE(5061), - [sym_non_lvalue_expression] = STATE(5333), - [sym_lvalue_expression] = STATE(3630), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3080), - [sym_postfix_unary_expression] = STATE(3111), - [sym_prefix_unary_expression] = STATE(3111), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6154), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3080), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3111), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3080), - [sym_member_access_expression] = STATE(2484), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3111), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7575), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_declaration_expression] = STATE(6803), - [sym_default_expression] = STATE(3080), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3080), - [sym_typeof_expression] = STATE(3080), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2484), - [sym_literal] = STATE(3080), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2222), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_parameter] = STATE(6769), + [sym__parameter_array] = STATE(6785), + [sym_argument] = STATE(7133), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(5152), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2196), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5856), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_tuple_element] = STATE(7166), + [sym_expression] = STATE(5095), + [sym_non_lvalue_expression] = STATE(5315), + [sym_lvalue_expression] = STATE(3616), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3102), + [sym_postfix_unary_expression] = STATE(3079), + [sym_prefix_unary_expression] = STATE(3079), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6134), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3102), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3079), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3102), + [sym_member_access_expression] = STATE(2472), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3079), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7309), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_declaration_expression] = STATE(6902), + [sym_default_expression] = STATE(3102), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3102), + [sym_typeof_expression] = STATE(3102), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2472), + [sym_literal] = STATE(3102), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2221), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(502), [sym_preproc_endregion] = STATE(502), [sym_preproc_line] = STATE(502), @@ -125939,53 +125825,53 @@ 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(2852), - [aux_sym__parameter_type_with_modifiers_repeat1] = STATE(3489), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [aux_sym__class_declaration_initializer_repeat1] = STATE(2843), + [aux_sym__parameter_type_with_modifiers_repeat1] = STATE(3452), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1481), - [anon_sym_LPAREN] = ACTIONS(895), - [anon_sym_RPAREN] = ACTIONS(2627), - [anon_sym_ref] = ACTIONS(2629), - [anon_sym_LBRACE] = ACTIONS(1487), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1479), + [anon_sym_LPAREN] = ACTIONS(659), + [anon_sym_RPAREN] = ACTIONS(2625), + [anon_sym_ref] = ACTIONS(2627), + [anon_sym_LBRACE] = ACTIONS(1481), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1061), - [anon_sym_readonly] = ACTIONS(1103), - [anon_sym_in] = ACTIONS(1105), - [anon_sym_out] = ACTIONS(1105), + [anon_sym_new] = ACTIONS(1059), + [anon_sym_readonly] = ACTIONS(1097), + [anon_sym_in] = ACTIONS(1099), + [anon_sym_out] = ACTIONS(1099), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1067), - [anon_sym_BANG] = ACTIONS(1495), - [anon_sym_TILDE] = ACTIONS(1495), - [anon_sym_PLUS_PLUS] = ACTIONS(1495), - [anon_sym_DASH_DASH] = ACTIONS(1495), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(1485), + [anon_sym_TILDE] = ACTIONS(1485), + [anon_sym_PLUS_PLUS] = ACTIONS(1485), + [anon_sym_DASH_DASH] = ACTIONS(1485), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1493), - [anon_sym_DASH] = ACTIONS(1493), - [anon_sym_STAR] = ACTIONS(905), - [anon_sym_CARET] = ACTIONS(1495), - [anon_sym_AMP] = ACTIONS(1495), - [anon_sym_this] = ACTIONS(1113), - [anon_sym_scoped] = ACTIONS(1115), - [anon_sym_params] = ACTIONS(1117), + [anon_sym_PLUS] = ACTIONS(1483), + [anon_sym_DASH] = ACTIONS(1483), + [anon_sym_STAR] = ACTIONS(683), + [anon_sym_CARET] = ACTIONS(1485), + [anon_sym_AMP] = ACTIONS(1485), + [anon_sym_this] = ACTIONS(1107), + [anon_sym_scoped] = ACTIONS(1109), + [anon_sym_params] = ACTIONS(1111), [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(2631), + [anon_sym_var] = ACTIONS(2629), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1067), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1079), + [anon_sym_throw] = ACTIONS(1077), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1081), - [anon_sym_DOT_DOT] = ACTIONS(911), + [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), @@ -126010,7 +125896,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(1089), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -126027,89 +125913,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [503] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_parameter] = STATE(6948), - [sym__parameter_array] = STATE(6996), - [sym_argument] = STATE(7273), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(5160), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2204), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5803), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_tuple_element] = STATE(7283), - [sym_expression] = STATE(5061), - [sym_non_lvalue_expression] = STATE(5333), - [sym_lvalue_expression] = STATE(3630), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3080), - [sym_postfix_unary_expression] = STATE(3111), - [sym_prefix_unary_expression] = STATE(3111), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6154), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3080), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3111), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3080), - [sym_member_access_expression] = STATE(2484), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3111), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7575), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_declaration_expression] = STATE(6803), - [sym_default_expression] = STATE(3080), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3080), - [sym_typeof_expression] = STATE(3080), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2484), - [sym_literal] = STATE(3080), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2222), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_parameter] = STATE(6769), + [sym__parameter_array] = STATE(6785), + [sym_argument] = STATE(7133), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(5152), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2196), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5843), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_tuple_element] = STATE(7118), + [sym_expression] = STATE(5095), + [sym_non_lvalue_expression] = STATE(5315), + [sym_lvalue_expression] = STATE(3616), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3102), + [sym_postfix_unary_expression] = STATE(3079), + [sym_prefix_unary_expression] = STATE(3079), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6134), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3102), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3079), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3102), + [sym_member_access_expression] = STATE(2472), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3079), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7309), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_declaration_expression] = STATE(6902), + [sym_default_expression] = STATE(3102), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3102), + [sym_typeof_expression] = STATE(3102), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2472), + [sym_literal] = STATE(3102), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2221), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(503), [sym_preproc_endregion] = STATE(503), [sym_preproc_line] = STATE(503), @@ -126119,53 +126005,53 @@ 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(2852), - [aux_sym__parameter_type_with_modifiers_repeat1] = STATE(3489), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [aux_sym__class_declaration_initializer_repeat1] = STATE(2843), + [aux_sym__parameter_type_with_modifiers_repeat1] = STATE(3452), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1481), - [anon_sym_LPAREN] = ACTIONS(895), - [anon_sym_RPAREN] = ACTIONS(2627), - [anon_sym_ref] = ACTIONS(2629), - [anon_sym_LBRACE] = ACTIONS(1487), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1479), + [anon_sym_LPAREN] = ACTIONS(659), + [anon_sym_RPAREN] = ACTIONS(2625), + [anon_sym_ref] = ACTIONS(2627), + [anon_sym_LBRACE] = ACTIONS(1481), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1061), - [anon_sym_readonly] = ACTIONS(1103), - [anon_sym_in] = ACTIONS(1105), - [anon_sym_out] = ACTIONS(1105), + [anon_sym_new] = ACTIONS(1059), + [anon_sym_readonly] = ACTIONS(1097), + [anon_sym_in] = ACTIONS(1099), + [anon_sym_out] = ACTIONS(1099), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1067), - [anon_sym_BANG] = ACTIONS(1495), - [anon_sym_TILDE] = ACTIONS(1495), - [anon_sym_PLUS_PLUS] = ACTIONS(1495), - [anon_sym_DASH_DASH] = ACTIONS(1495), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(1485), + [anon_sym_TILDE] = ACTIONS(1485), + [anon_sym_PLUS_PLUS] = ACTIONS(1485), + [anon_sym_DASH_DASH] = ACTIONS(1485), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1493), - [anon_sym_DASH] = ACTIONS(1493), - [anon_sym_STAR] = ACTIONS(905), - [anon_sym_CARET] = ACTIONS(1495), - [anon_sym_AMP] = ACTIONS(1495), - [anon_sym_this] = ACTIONS(1113), - [anon_sym_scoped] = ACTIONS(1115), - [anon_sym_params] = ACTIONS(1117), + [anon_sym_PLUS] = ACTIONS(1483), + [anon_sym_DASH] = ACTIONS(1483), + [anon_sym_STAR] = ACTIONS(683), + [anon_sym_CARET] = ACTIONS(1485), + [anon_sym_AMP] = ACTIONS(1485), + [anon_sym_this] = ACTIONS(1107), + [anon_sym_scoped] = ACTIONS(1109), + [anon_sym_params] = ACTIONS(1111), [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(2631), + [anon_sym_var] = ACTIONS(2629), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1067), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1079), + [anon_sym_throw] = ACTIONS(1077), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1081), - [anon_sym_DOT_DOT] = ACTIONS(911), + [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), @@ -126190,7 +126076,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(1089), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -126207,89 +126093,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [504] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_parameter] = STATE(6948), - [sym__parameter_array] = STATE(6996), - [sym_argument] = STATE(7273), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(5160), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2204), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5856), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_tuple_element] = STATE(7255), - [sym_expression] = STATE(5061), - [sym_non_lvalue_expression] = STATE(5333), - [sym_lvalue_expression] = STATE(3630), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3080), - [sym_postfix_unary_expression] = STATE(3111), - [sym_prefix_unary_expression] = STATE(3111), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6154), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3080), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3111), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3080), - [sym_member_access_expression] = STATE(2484), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3111), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7575), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_declaration_expression] = STATE(6803), - [sym_default_expression] = STATE(3080), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3080), - [sym_typeof_expression] = STATE(3080), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2484), - [sym_literal] = STATE(3080), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2222), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_parameter] = STATE(6769), + [sym__parameter_array] = STATE(6785), + [sym_argument] = STATE(7154), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(5152), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2196), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5843), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_tuple_element] = STATE(7166), + [sym_expression] = STATE(5095), + [sym_non_lvalue_expression] = STATE(5315), + [sym_lvalue_expression] = STATE(3616), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3102), + [sym_postfix_unary_expression] = STATE(3079), + [sym_prefix_unary_expression] = STATE(3079), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6134), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3102), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3079), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3102), + [sym_member_access_expression] = STATE(2472), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3079), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7309), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_declaration_expression] = STATE(6902), + [sym_default_expression] = STATE(3102), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3102), + [sym_typeof_expression] = STATE(3102), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2472), + [sym_literal] = STATE(3102), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2221), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(504), [sym_preproc_endregion] = STATE(504), [sym_preproc_line] = STATE(504), @@ -126299,53 +126185,53 @@ 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(2852), - [aux_sym__parameter_type_with_modifiers_repeat1] = STATE(3489), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [aux_sym__class_declaration_initializer_repeat1] = STATE(2843), + [aux_sym__parameter_type_with_modifiers_repeat1] = STATE(3452), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1481), - [anon_sym_LPAREN] = ACTIONS(895), - [anon_sym_RPAREN] = ACTIONS(2627), - [anon_sym_ref] = ACTIONS(2629), - [anon_sym_LBRACE] = ACTIONS(1487), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1479), + [anon_sym_LPAREN] = ACTIONS(659), + [anon_sym_RPAREN] = ACTIONS(2625), + [anon_sym_ref] = ACTIONS(2627), + [anon_sym_LBRACE] = ACTIONS(1481), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1061), - [anon_sym_readonly] = ACTIONS(1103), - [anon_sym_in] = ACTIONS(1105), - [anon_sym_out] = ACTIONS(1105), + [anon_sym_new] = ACTIONS(1059), + [anon_sym_readonly] = ACTIONS(1097), + [anon_sym_in] = ACTIONS(1099), + [anon_sym_out] = ACTIONS(1099), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1067), - [anon_sym_BANG] = ACTIONS(1495), - [anon_sym_TILDE] = ACTIONS(1495), - [anon_sym_PLUS_PLUS] = ACTIONS(1495), - [anon_sym_DASH_DASH] = ACTIONS(1495), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(1485), + [anon_sym_TILDE] = ACTIONS(1485), + [anon_sym_PLUS_PLUS] = ACTIONS(1485), + [anon_sym_DASH_DASH] = ACTIONS(1485), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1493), - [anon_sym_DASH] = ACTIONS(1493), - [anon_sym_STAR] = ACTIONS(905), - [anon_sym_CARET] = ACTIONS(1495), - [anon_sym_AMP] = ACTIONS(1495), - [anon_sym_this] = ACTIONS(1113), - [anon_sym_scoped] = ACTIONS(1115), - [anon_sym_params] = ACTIONS(1117), + [anon_sym_PLUS] = ACTIONS(1483), + [anon_sym_DASH] = ACTIONS(1483), + [anon_sym_STAR] = ACTIONS(683), + [anon_sym_CARET] = ACTIONS(1485), + [anon_sym_AMP] = ACTIONS(1485), + [anon_sym_this] = ACTIONS(1107), + [anon_sym_scoped] = ACTIONS(1109), + [anon_sym_params] = ACTIONS(1111), [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(2631), + [anon_sym_var] = ACTIONS(2629), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1067), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1079), + [anon_sym_throw] = ACTIONS(1077), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1081), - [anon_sym_DOT_DOT] = ACTIONS(911), + [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), @@ -126370,7 +126256,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(1089), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -126387,89 +126273,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [505] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_parameter] = STATE(6948), - [sym__parameter_array] = STATE(6996), - [sym_argument] = STATE(7143), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(5160), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2204), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5856), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_tuple_element] = STATE(7283), - [sym_expression] = STATE(5061), - [sym_non_lvalue_expression] = STATE(5333), - [sym_lvalue_expression] = STATE(3630), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3080), - [sym_postfix_unary_expression] = STATE(3111), - [sym_prefix_unary_expression] = STATE(3111), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6154), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3080), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3111), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3080), - [sym_member_access_expression] = STATE(2484), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3111), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7575), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_declaration_expression] = STATE(6803), - [sym_default_expression] = STATE(3080), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3080), - [sym_typeof_expression] = STATE(3080), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2484), - [sym_literal] = STATE(3080), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2222), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_parameter] = STATE(6769), + [sym__parameter_array] = STATE(6785), + [sym_argument] = STATE(7133), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(5152), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2196), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5792), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_tuple_element] = STATE(7166), + [sym_expression] = STATE(5095), + [sym_non_lvalue_expression] = STATE(5315), + [sym_lvalue_expression] = STATE(3616), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3102), + [sym_postfix_unary_expression] = STATE(3079), + [sym_prefix_unary_expression] = STATE(3079), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6134), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3102), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3079), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3102), + [sym_member_access_expression] = STATE(2472), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3079), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7309), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_declaration_expression] = STATE(6902), + [sym_default_expression] = STATE(3102), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3102), + [sym_typeof_expression] = STATE(3102), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2472), + [sym_literal] = STATE(3102), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2221), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(505), [sym_preproc_endregion] = STATE(505), [sym_preproc_line] = STATE(505), @@ -126479,53 +126365,53 @@ 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(2852), - [aux_sym__parameter_type_with_modifiers_repeat1] = STATE(3489), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [aux_sym__class_declaration_initializer_repeat1] = STATE(2843), + [aux_sym__parameter_type_with_modifiers_repeat1] = STATE(3452), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1481), - [anon_sym_LPAREN] = ACTIONS(895), - [anon_sym_RPAREN] = ACTIONS(2627), - [anon_sym_ref] = ACTIONS(2629), - [anon_sym_LBRACE] = ACTIONS(1487), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1479), + [anon_sym_LPAREN] = ACTIONS(659), + [anon_sym_RPAREN] = ACTIONS(2625), + [anon_sym_ref] = ACTIONS(2627), + [anon_sym_LBRACE] = ACTIONS(1481), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1061), - [anon_sym_readonly] = ACTIONS(1103), - [anon_sym_in] = ACTIONS(1105), - [anon_sym_out] = ACTIONS(1105), + [anon_sym_new] = ACTIONS(1059), + [anon_sym_readonly] = ACTIONS(1097), + [anon_sym_in] = ACTIONS(1099), + [anon_sym_out] = ACTIONS(1099), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1067), - [anon_sym_BANG] = ACTIONS(1495), - [anon_sym_TILDE] = ACTIONS(1495), - [anon_sym_PLUS_PLUS] = ACTIONS(1495), - [anon_sym_DASH_DASH] = ACTIONS(1495), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(1485), + [anon_sym_TILDE] = ACTIONS(1485), + [anon_sym_PLUS_PLUS] = ACTIONS(1485), + [anon_sym_DASH_DASH] = ACTIONS(1485), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1493), - [anon_sym_DASH] = ACTIONS(1493), - [anon_sym_STAR] = ACTIONS(905), - [anon_sym_CARET] = ACTIONS(1495), - [anon_sym_AMP] = ACTIONS(1495), - [anon_sym_this] = ACTIONS(1113), - [anon_sym_scoped] = ACTIONS(1115), - [anon_sym_params] = ACTIONS(1117), + [anon_sym_PLUS] = ACTIONS(1483), + [anon_sym_DASH] = ACTIONS(1483), + [anon_sym_STAR] = ACTIONS(683), + [anon_sym_CARET] = ACTIONS(1485), + [anon_sym_AMP] = ACTIONS(1485), + [anon_sym_this] = ACTIONS(1107), + [anon_sym_scoped] = ACTIONS(1109), + [anon_sym_params] = ACTIONS(1111), [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(2631), + [anon_sym_var] = ACTIONS(2629), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1067), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1079), + [anon_sym_throw] = ACTIONS(1077), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1081), - [anon_sym_DOT_DOT] = ACTIONS(911), + [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), @@ -126550,7 +126436,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(1089), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -126567,89 +126453,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [506] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_parameter] = STATE(6948), - [sym__parameter_array] = STATE(6996), - [sym_argument] = STATE(7273), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(5160), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2204), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5826), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_tuple_element] = STATE(7283), - [sym_expression] = STATE(5061), - [sym_non_lvalue_expression] = STATE(5333), - [sym_lvalue_expression] = STATE(3630), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3080), - [sym_postfix_unary_expression] = STATE(3111), - [sym_prefix_unary_expression] = STATE(3111), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6154), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3080), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3111), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3080), - [sym_member_access_expression] = STATE(2484), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3111), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7575), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_declaration_expression] = STATE(6803), - [sym_default_expression] = STATE(3080), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3080), - [sym_typeof_expression] = STATE(3080), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2484), - [sym_literal] = STATE(3080), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2222), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_parameter] = STATE(6769), + [sym__parameter_array] = STATE(6785), + [sym_argument] = STATE(7133), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(5152), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2196), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5799), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_tuple_element] = STATE(7166), + [sym_expression] = STATE(5095), + [sym_non_lvalue_expression] = STATE(5315), + [sym_lvalue_expression] = STATE(3616), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3102), + [sym_postfix_unary_expression] = STATE(3079), + [sym_prefix_unary_expression] = STATE(3079), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6134), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3102), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3079), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3102), + [sym_member_access_expression] = STATE(2472), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3079), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7309), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_declaration_expression] = STATE(6902), + [sym_default_expression] = STATE(3102), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3102), + [sym_typeof_expression] = STATE(3102), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2472), + [sym_literal] = STATE(3102), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2221), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(506), [sym_preproc_endregion] = STATE(506), [sym_preproc_line] = STATE(506), @@ -126659,53 +126545,53 @@ 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(2852), - [aux_sym__parameter_type_with_modifiers_repeat1] = STATE(3489), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [aux_sym__class_declaration_initializer_repeat1] = STATE(2843), + [aux_sym__parameter_type_with_modifiers_repeat1] = STATE(3452), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1481), - [anon_sym_LPAREN] = ACTIONS(895), - [anon_sym_RPAREN] = ACTIONS(2627), - [anon_sym_ref] = ACTIONS(2629), - [anon_sym_LBRACE] = ACTIONS(1487), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1479), + [anon_sym_LPAREN] = ACTIONS(659), + [anon_sym_RPAREN] = ACTIONS(2625), + [anon_sym_ref] = ACTIONS(2627), + [anon_sym_LBRACE] = ACTIONS(1481), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1061), - [anon_sym_readonly] = ACTIONS(1103), - [anon_sym_in] = ACTIONS(1105), - [anon_sym_out] = ACTIONS(1105), + [anon_sym_new] = ACTIONS(1059), + [anon_sym_readonly] = ACTIONS(1097), + [anon_sym_in] = ACTIONS(1099), + [anon_sym_out] = ACTIONS(1099), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1067), - [anon_sym_BANG] = ACTIONS(1495), - [anon_sym_TILDE] = ACTIONS(1495), - [anon_sym_PLUS_PLUS] = ACTIONS(1495), - [anon_sym_DASH_DASH] = ACTIONS(1495), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(1485), + [anon_sym_TILDE] = ACTIONS(1485), + [anon_sym_PLUS_PLUS] = ACTIONS(1485), + [anon_sym_DASH_DASH] = ACTIONS(1485), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1493), - [anon_sym_DASH] = ACTIONS(1493), - [anon_sym_STAR] = ACTIONS(905), - [anon_sym_CARET] = ACTIONS(1495), - [anon_sym_AMP] = ACTIONS(1495), - [anon_sym_this] = ACTIONS(1113), - [anon_sym_scoped] = ACTIONS(1115), - [anon_sym_params] = ACTIONS(1117), + [anon_sym_PLUS] = ACTIONS(1483), + [anon_sym_DASH] = ACTIONS(1483), + [anon_sym_STAR] = ACTIONS(683), + [anon_sym_CARET] = ACTIONS(1485), + [anon_sym_AMP] = ACTIONS(1485), + [anon_sym_this] = ACTIONS(1107), + [anon_sym_scoped] = ACTIONS(1109), + [anon_sym_params] = ACTIONS(1111), [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(2631), + [anon_sym_var] = ACTIONS(2629), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1067), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1079), + [anon_sym_throw] = ACTIONS(1077), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1081), - [anon_sym_DOT_DOT] = ACTIONS(911), + [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), @@ -126730,7 +126616,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(1089), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -126747,89 +126633,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [507] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_parameter] = STATE(6948), - [sym__parameter_array] = STATE(6996), - [sym_argument] = STATE(7273), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(5160), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2204), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5832), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_tuple_element] = STATE(7283), - [sym_expression] = STATE(5061), - [sym_non_lvalue_expression] = STATE(5333), - [sym_lvalue_expression] = STATE(3630), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3080), - [sym_postfix_unary_expression] = STATE(3111), - [sym_prefix_unary_expression] = STATE(3111), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6154), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3080), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3111), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3080), - [sym_member_access_expression] = STATE(2484), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3111), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7575), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_declaration_expression] = STATE(6803), - [sym_default_expression] = STATE(3080), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3080), - [sym_typeof_expression] = STATE(3080), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2484), - [sym_literal] = STATE(3080), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2222), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_parameter] = STATE(6769), + [sym__parameter_array] = STATE(6785), + [sym_argument] = STATE(7133), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(5152), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2196), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5802), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_tuple_element] = STATE(7166), + [sym_expression] = STATE(5095), + [sym_non_lvalue_expression] = STATE(5315), + [sym_lvalue_expression] = STATE(3616), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3102), + [sym_postfix_unary_expression] = STATE(3079), + [sym_prefix_unary_expression] = STATE(3079), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6134), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3102), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3079), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3102), + [sym_member_access_expression] = STATE(2472), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3079), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7309), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_declaration_expression] = STATE(6902), + [sym_default_expression] = STATE(3102), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3102), + [sym_typeof_expression] = STATE(3102), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2472), + [sym_literal] = STATE(3102), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2221), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(507), [sym_preproc_endregion] = STATE(507), [sym_preproc_line] = STATE(507), @@ -126839,53 +126725,53 @@ 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(2852), - [aux_sym__parameter_type_with_modifiers_repeat1] = STATE(3489), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [aux_sym__class_declaration_initializer_repeat1] = STATE(2843), + [aux_sym__parameter_type_with_modifiers_repeat1] = STATE(3452), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1481), - [anon_sym_LPAREN] = ACTIONS(895), - [anon_sym_RPAREN] = ACTIONS(2627), - [anon_sym_ref] = ACTIONS(2629), - [anon_sym_LBRACE] = ACTIONS(1487), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1479), + [anon_sym_LPAREN] = ACTIONS(659), + [anon_sym_RPAREN] = ACTIONS(2625), + [anon_sym_ref] = ACTIONS(2627), + [anon_sym_LBRACE] = ACTIONS(1481), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1061), - [anon_sym_readonly] = ACTIONS(1103), - [anon_sym_in] = ACTIONS(1105), - [anon_sym_out] = ACTIONS(1105), + [anon_sym_new] = ACTIONS(1059), + [anon_sym_readonly] = ACTIONS(1097), + [anon_sym_in] = ACTIONS(1099), + [anon_sym_out] = ACTIONS(1099), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1067), - [anon_sym_BANG] = ACTIONS(1495), - [anon_sym_TILDE] = ACTIONS(1495), - [anon_sym_PLUS_PLUS] = ACTIONS(1495), - [anon_sym_DASH_DASH] = ACTIONS(1495), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(1485), + [anon_sym_TILDE] = ACTIONS(1485), + [anon_sym_PLUS_PLUS] = ACTIONS(1485), + [anon_sym_DASH_DASH] = ACTIONS(1485), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1493), - [anon_sym_DASH] = ACTIONS(1493), - [anon_sym_STAR] = ACTIONS(905), - [anon_sym_CARET] = ACTIONS(1495), - [anon_sym_AMP] = ACTIONS(1495), - [anon_sym_this] = ACTIONS(1113), - [anon_sym_scoped] = ACTIONS(1115), - [anon_sym_params] = ACTIONS(1117), + [anon_sym_PLUS] = ACTIONS(1483), + [anon_sym_DASH] = ACTIONS(1483), + [anon_sym_STAR] = ACTIONS(683), + [anon_sym_CARET] = ACTIONS(1485), + [anon_sym_AMP] = ACTIONS(1485), + [anon_sym_this] = ACTIONS(1107), + [anon_sym_scoped] = ACTIONS(1109), + [anon_sym_params] = ACTIONS(1111), [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(2631), + [anon_sym_var] = ACTIONS(2629), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1067), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1079), + [anon_sym_throw] = ACTIONS(1077), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1081), - [anon_sym_DOT_DOT] = ACTIONS(911), + [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), @@ -126910,7 +126796,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(1089), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -126927,89 +126813,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [508] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_parameter] = STATE(6948), - [sym__parameter_array] = STATE(6996), - [sym_argument] = STATE(7273), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(5160), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2204), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5802), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_tuple_element] = STATE(7283), - [sym_expression] = STATE(5061), - [sym_non_lvalue_expression] = STATE(5333), - [sym_lvalue_expression] = STATE(3630), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3080), - [sym_postfix_unary_expression] = STATE(3111), - [sym_prefix_unary_expression] = STATE(3111), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6154), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3080), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3111), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3080), - [sym_member_access_expression] = STATE(2484), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3111), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7575), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_declaration_expression] = STATE(6803), - [sym_default_expression] = STATE(3080), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3080), - [sym_typeof_expression] = STATE(3080), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2484), - [sym_literal] = STATE(3080), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2222), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_parameter] = STATE(6769), + [sym__parameter_array] = STATE(6785), + [sym_argument] = STATE(7133), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(5152), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2196), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5806), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_tuple_element] = STATE(7166), + [sym_expression] = STATE(5095), + [sym_non_lvalue_expression] = STATE(5315), + [sym_lvalue_expression] = STATE(3616), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3102), + [sym_postfix_unary_expression] = STATE(3079), + [sym_prefix_unary_expression] = STATE(3079), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6134), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3102), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3079), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3102), + [sym_member_access_expression] = STATE(2472), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3079), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7309), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_declaration_expression] = STATE(6902), + [sym_default_expression] = STATE(3102), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3102), + [sym_typeof_expression] = STATE(3102), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2472), + [sym_literal] = STATE(3102), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2221), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(508), [sym_preproc_endregion] = STATE(508), [sym_preproc_line] = STATE(508), @@ -127019,53 +126905,53 @@ 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(2852), - [aux_sym__parameter_type_with_modifiers_repeat1] = STATE(3489), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [aux_sym__class_declaration_initializer_repeat1] = STATE(2843), + [aux_sym__parameter_type_with_modifiers_repeat1] = STATE(3452), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1481), - [anon_sym_LPAREN] = ACTIONS(895), - [anon_sym_RPAREN] = ACTIONS(2627), - [anon_sym_ref] = ACTIONS(2629), - [anon_sym_LBRACE] = ACTIONS(1487), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1479), + [anon_sym_LPAREN] = ACTIONS(659), + [anon_sym_RPAREN] = ACTIONS(2625), + [anon_sym_ref] = ACTIONS(2627), + [anon_sym_LBRACE] = ACTIONS(1481), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1061), - [anon_sym_readonly] = ACTIONS(1103), - [anon_sym_in] = ACTIONS(1105), - [anon_sym_out] = ACTIONS(1105), + [anon_sym_new] = ACTIONS(1059), + [anon_sym_readonly] = ACTIONS(1097), + [anon_sym_in] = ACTIONS(1099), + [anon_sym_out] = ACTIONS(1099), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1067), - [anon_sym_BANG] = ACTIONS(1495), - [anon_sym_TILDE] = ACTIONS(1495), - [anon_sym_PLUS_PLUS] = ACTIONS(1495), - [anon_sym_DASH_DASH] = ACTIONS(1495), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(1485), + [anon_sym_TILDE] = ACTIONS(1485), + [anon_sym_PLUS_PLUS] = ACTIONS(1485), + [anon_sym_DASH_DASH] = ACTIONS(1485), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1493), - [anon_sym_DASH] = ACTIONS(1493), - [anon_sym_STAR] = ACTIONS(905), - [anon_sym_CARET] = ACTIONS(1495), - [anon_sym_AMP] = ACTIONS(1495), - [anon_sym_this] = ACTIONS(1113), - [anon_sym_scoped] = ACTIONS(1115), - [anon_sym_params] = ACTIONS(1117), + [anon_sym_PLUS] = ACTIONS(1483), + [anon_sym_DASH] = ACTIONS(1483), + [anon_sym_STAR] = ACTIONS(683), + [anon_sym_CARET] = ACTIONS(1485), + [anon_sym_AMP] = ACTIONS(1485), + [anon_sym_this] = ACTIONS(1107), + [anon_sym_scoped] = ACTIONS(1109), + [anon_sym_params] = ACTIONS(1111), [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(2631), + [anon_sym_var] = ACTIONS(2629), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1067), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1079), + [anon_sym_throw] = ACTIONS(1077), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1081), - [anon_sym_DOT_DOT] = ACTIONS(911), + [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), @@ -127090,7 +126976,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(1089), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -127107,89 +126993,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [509] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_parameter] = STATE(6948), - [sym__parameter_array] = STATE(6996), - [sym_argument] = STATE(7273), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(5160), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2204), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5856), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_tuple_element] = STATE(7094), - [sym_expression] = STATE(5061), - [sym_non_lvalue_expression] = STATE(5333), - [sym_lvalue_expression] = STATE(3630), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3080), - [sym_postfix_unary_expression] = STATE(3111), - [sym_prefix_unary_expression] = STATE(3111), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6154), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3080), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3111), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3080), - [sym_member_access_expression] = STATE(2484), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3111), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7575), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_declaration_expression] = STATE(6803), - [sym_default_expression] = STATE(3080), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3080), - [sym_typeof_expression] = STATE(3080), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2484), - [sym_literal] = STATE(3080), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2222), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_parameter] = STATE(6769), + [sym__parameter_array] = STATE(6785), + [sym_argument] = STATE(7133), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(5152), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2196), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5843), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_tuple_element] = STATE(7058), + [sym_expression] = STATE(5095), + [sym_non_lvalue_expression] = STATE(5315), + [sym_lvalue_expression] = STATE(3616), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3102), + [sym_postfix_unary_expression] = STATE(3079), + [sym_prefix_unary_expression] = STATE(3079), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6134), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3102), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3079), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3102), + [sym_member_access_expression] = STATE(2472), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3079), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7309), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_declaration_expression] = STATE(6902), + [sym_default_expression] = STATE(3102), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3102), + [sym_typeof_expression] = STATE(3102), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2472), + [sym_literal] = STATE(3102), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2221), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(509), [sym_preproc_endregion] = STATE(509), [sym_preproc_line] = STATE(509), @@ -127199,53 +127085,53 @@ 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(2852), - [aux_sym__parameter_type_with_modifiers_repeat1] = STATE(3489), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [aux_sym__class_declaration_initializer_repeat1] = STATE(2843), + [aux_sym__parameter_type_with_modifiers_repeat1] = STATE(3452), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1481), - [anon_sym_LPAREN] = ACTIONS(895), - [anon_sym_RPAREN] = ACTIONS(2627), - [anon_sym_ref] = ACTIONS(2629), - [anon_sym_LBRACE] = ACTIONS(1487), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1479), + [anon_sym_LPAREN] = ACTIONS(659), + [anon_sym_RPAREN] = ACTIONS(2625), + [anon_sym_ref] = ACTIONS(2627), + [anon_sym_LBRACE] = ACTIONS(1481), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1061), - [anon_sym_readonly] = ACTIONS(1103), - [anon_sym_in] = ACTIONS(1105), - [anon_sym_out] = ACTIONS(1105), + [anon_sym_new] = ACTIONS(1059), + [anon_sym_readonly] = ACTIONS(1097), + [anon_sym_in] = ACTIONS(1099), + [anon_sym_out] = ACTIONS(1099), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1067), - [anon_sym_BANG] = ACTIONS(1495), - [anon_sym_TILDE] = ACTIONS(1495), - [anon_sym_PLUS_PLUS] = ACTIONS(1495), - [anon_sym_DASH_DASH] = ACTIONS(1495), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(1485), + [anon_sym_TILDE] = ACTIONS(1485), + [anon_sym_PLUS_PLUS] = ACTIONS(1485), + [anon_sym_DASH_DASH] = ACTIONS(1485), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1493), - [anon_sym_DASH] = ACTIONS(1493), - [anon_sym_STAR] = ACTIONS(905), - [anon_sym_CARET] = ACTIONS(1495), - [anon_sym_AMP] = ACTIONS(1495), - [anon_sym_this] = ACTIONS(1113), - [anon_sym_scoped] = ACTIONS(1115), - [anon_sym_params] = ACTIONS(1117), + [anon_sym_PLUS] = ACTIONS(1483), + [anon_sym_DASH] = ACTIONS(1483), + [anon_sym_STAR] = ACTIONS(683), + [anon_sym_CARET] = ACTIONS(1485), + [anon_sym_AMP] = ACTIONS(1485), + [anon_sym_this] = ACTIONS(1107), + [anon_sym_scoped] = ACTIONS(1109), + [anon_sym_params] = ACTIONS(1111), [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(2631), + [anon_sym_var] = ACTIONS(2629), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1067), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1079), + [anon_sym_throw] = ACTIONS(1077), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1081), - [anon_sym_DOT_DOT] = ACTIONS(911), + [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), @@ -127270,7 +127156,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(1089), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -127287,89 +127173,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [510] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_parameter] = STATE(6948), - [sym__parameter_array] = STATE(6996), - [sym_argument] = STATE(7273), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(5160), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2204), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5856), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_tuple_element] = STATE(7283), - [sym_expression] = STATE(5061), - [sym_non_lvalue_expression] = STATE(5333), - [sym_lvalue_expression] = STATE(3630), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3080), - [sym_postfix_unary_expression] = STATE(3111), - [sym_prefix_unary_expression] = STATE(3111), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6154), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3080), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3111), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3080), - [sym_member_access_expression] = STATE(2484), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3111), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7575), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_declaration_expression] = STATE(6803), - [sym_default_expression] = STATE(3080), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3080), - [sym_typeof_expression] = STATE(3080), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2484), - [sym_literal] = STATE(3080), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2222), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_parameter] = STATE(6769), + [sym__parameter_array] = STATE(6785), + [sym_argument] = STATE(7133), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(5152), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2196), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5814), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_tuple_element] = STATE(7166), + [sym_expression] = STATE(5095), + [sym_non_lvalue_expression] = STATE(5315), + [sym_lvalue_expression] = STATE(3616), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3102), + [sym_postfix_unary_expression] = STATE(3079), + [sym_prefix_unary_expression] = STATE(3079), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6134), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3102), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3079), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3102), + [sym_member_access_expression] = STATE(2472), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3079), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7309), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_declaration_expression] = STATE(6902), + [sym_default_expression] = STATE(3102), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3102), + [sym_typeof_expression] = STATE(3102), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2472), + [sym_literal] = STATE(3102), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2221), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(510), [sym_preproc_endregion] = STATE(510), [sym_preproc_line] = STATE(510), @@ -127379,53 +127265,53 @@ 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(2852), - [aux_sym__parameter_type_with_modifiers_repeat1] = STATE(3489), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [aux_sym__class_declaration_initializer_repeat1] = STATE(2843), + [aux_sym__parameter_type_with_modifiers_repeat1] = STATE(3452), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1481), - [anon_sym_LPAREN] = ACTIONS(895), - [anon_sym_RPAREN] = ACTIONS(2627), - [anon_sym_ref] = ACTIONS(2629), - [anon_sym_LBRACE] = ACTIONS(1487), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1479), + [anon_sym_LPAREN] = ACTIONS(659), + [anon_sym_RPAREN] = ACTIONS(2625), + [anon_sym_ref] = ACTIONS(2627), + [anon_sym_LBRACE] = ACTIONS(1481), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1061), - [anon_sym_readonly] = ACTIONS(1103), - [anon_sym_in] = ACTIONS(1105), - [anon_sym_out] = ACTIONS(1105), + [anon_sym_new] = ACTIONS(1059), + [anon_sym_readonly] = ACTIONS(1097), + [anon_sym_in] = ACTIONS(1099), + [anon_sym_out] = ACTIONS(1099), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1067), - [anon_sym_BANG] = ACTIONS(1495), - [anon_sym_TILDE] = ACTIONS(1495), - [anon_sym_PLUS_PLUS] = ACTIONS(1495), - [anon_sym_DASH_DASH] = ACTIONS(1495), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(1485), + [anon_sym_TILDE] = ACTIONS(1485), + [anon_sym_PLUS_PLUS] = ACTIONS(1485), + [anon_sym_DASH_DASH] = ACTIONS(1485), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1493), - [anon_sym_DASH] = ACTIONS(1493), - [anon_sym_STAR] = ACTIONS(905), - [anon_sym_CARET] = ACTIONS(1495), - [anon_sym_AMP] = ACTIONS(1495), - [anon_sym_this] = ACTIONS(1113), - [anon_sym_scoped] = ACTIONS(1115), - [anon_sym_params] = ACTIONS(1117), + [anon_sym_PLUS] = ACTIONS(1483), + [anon_sym_DASH] = ACTIONS(1483), + [anon_sym_STAR] = ACTIONS(683), + [anon_sym_CARET] = ACTIONS(1485), + [anon_sym_AMP] = ACTIONS(1485), + [anon_sym_this] = ACTIONS(1107), + [anon_sym_scoped] = ACTIONS(1109), + [anon_sym_params] = ACTIONS(1111), [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(2631), + [anon_sym_var] = ACTIONS(2629), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1067), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1079), + [anon_sym_throw] = ACTIONS(1077), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1081), - [anon_sym_DOT_DOT] = ACTIONS(911), + [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), @@ -127450,7 +127336,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(1089), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -127467,89 +127353,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [511] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_parameter] = STATE(6948), - [sym__parameter_array] = STATE(6996), - [sym_argument] = STATE(7174), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(5160), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2204), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5827), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_tuple_element] = STATE(7283), - [sym_expression] = STATE(5061), - [sym_non_lvalue_expression] = STATE(5636), - [sym_lvalue_expression] = STATE(3616), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3080), - [sym_postfix_unary_expression] = STATE(3111), - [sym_prefix_unary_expression] = STATE(3111), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6154), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3080), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3111), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3080), - [sym_member_access_expression] = STATE(2484), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3111), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7575), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_declaration_expression] = STATE(6803), - [sym_default_expression] = STATE(3080), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3080), - [sym_typeof_expression] = STATE(3080), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2484), - [sym_literal] = STATE(3080), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2222), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_parameter] = STATE(6769), + [sym__parameter_array] = STATE(6785), + [sym_argument] = STATE(7154), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(5152), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2196), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5790), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_tuple_element] = STATE(7166), + [sym_expression] = STATE(5095), + [sym_non_lvalue_expression] = STATE(5613), + [sym_lvalue_expression] = STATE(3543), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3102), + [sym_postfix_unary_expression] = STATE(3079), + [sym_prefix_unary_expression] = STATE(3079), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6134), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3102), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3079), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3102), + [sym_member_access_expression] = STATE(2472), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3079), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7309), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_declaration_expression] = STATE(6902), + [sym_default_expression] = STATE(3102), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3102), + [sym_typeof_expression] = STATE(3102), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2472), + [sym_literal] = STATE(3102), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2221), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(511), [sym_preproc_endregion] = STATE(511), [sym_preproc_line] = STATE(511), @@ -127559,53 +127445,53 @@ 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(2852), - [aux_sym__parameter_type_with_modifiers_repeat1] = STATE(3489), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [aux_sym__class_declaration_initializer_repeat1] = STATE(2843), + [aux_sym__parameter_type_with_modifiers_repeat1] = STATE(3452), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1481), - [anon_sym_LPAREN] = ACTIONS(895), - [anon_sym_RPAREN] = ACTIONS(2627), - [anon_sym_ref] = ACTIONS(2629), - [anon_sym_LBRACE] = ACTIONS(1487), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1479), + [anon_sym_LPAREN] = ACTIONS(659), + [anon_sym_RPAREN] = ACTIONS(2625), + [anon_sym_ref] = ACTIONS(2627), + [anon_sym_LBRACE] = ACTIONS(1481), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1061), - [anon_sym_readonly] = ACTIONS(1103), - [anon_sym_in] = ACTIONS(1105), - [anon_sym_out] = ACTIONS(1105), + [anon_sym_new] = ACTIONS(1059), + [anon_sym_readonly] = ACTIONS(1097), + [anon_sym_in] = ACTIONS(1099), + [anon_sym_out] = ACTIONS(1099), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1067), - [anon_sym_BANG] = ACTIONS(1495), - [anon_sym_TILDE] = ACTIONS(1495), - [anon_sym_PLUS_PLUS] = ACTIONS(1495), - [anon_sym_DASH_DASH] = ACTIONS(1495), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(1485), + [anon_sym_TILDE] = ACTIONS(1485), + [anon_sym_PLUS_PLUS] = ACTIONS(1485), + [anon_sym_DASH_DASH] = ACTIONS(1485), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1493), - [anon_sym_DASH] = ACTIONS(1493), - [anon_sym_STAR] = ACTIONS(905), - [anon_sym_CARET] = ACTIONS(1495), - [anon_sym_AMP] = ACTIONS(1495), - [anon_sym_this] = ACTIONS(1113), - [anon_sym_scoped] = ACTIONS(1115), - [anon_sym_params] = ACTIONS(1117), + [anon_sym_PLUS] = ACTIONS(1483), + [anon_sym_DASH] = ACTIONS(1483), + [anon_sym_STAR] = ACTIONS(683), + [anon_sym_CARET] = ACTIONS(1485), + [anon_sym_AMP] = ACTIONS(1485), + [anon_sym_this] = ACTIONS(1107), + [anon_sym_scoped] = ACTIONS(1109), + [anon_sym_params] = ACTIONS(1111), [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(2631), + [anon_sym_var] = ACTIONS(2629), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1067), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1079), + [anon_sym_throw] = ACTIONS(1077), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1081), - [anon_sym_DOT_DOT] = ACTIONS(911), + [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), @@ -127630,7 +127516,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(1089), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -127647,88 +127533,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [512] = { - [sym_attribute_list] = STATE(5422), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(5160), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2204), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(4357), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3520), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3080), - [sym_postfix_unary_expression] = STATE(3111), - [sym_prefix_unary_expression] = STATE(3111), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6154), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3080), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3111), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3080), - [sym_member_access_expression] = STATE(2484), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3111), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7530), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(3080), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3080), - [sym_typeof_expression] = STATE(3080), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2484), - [sym_literal] = STATE(3080), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_else_in_expression] = STATE(7317), - [sym_preproc_elif_in_expression] = STATE(7317), - [sym_preproc_if_in_attribute_list] = STATE(5576), - [sym_preproc_else_in_attribute_list] = STATE(7361), - [sym_preproc_elif_in_attribute_list] = STATE(7361), + [sym_attribute_list] = STATE(5480), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(5152), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2196), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(4374), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3510), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3102), + [sym_postfix_unary_expression] = STATE(3079), + [sym_prefix_unary_expression] = STATE(3079), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6134), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3102), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3079), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3102), + [sym_member_access_expression] = STATE(2472), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3079), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7425), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(3102), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3102), + [sym_typeof_expression] = STATE(3102), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2472), + [sym_literal] = STATE(3102), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_else_in_expression] = STATE(7582), + [sym_preproc_elif_in_expression] = STATE(7582), + [sym_preproc_if_in_attribute_list] = STATE(5583), + [sym_preproc_else_in_attribute_list] = STATE(7349), + [sym_preproc_elif_in_attribute_list] = STATE(7349), [sym_preproc_region] = STATE(512), [sym_preproc_endregion] = STATE(512), [sym_preproc_line] = STATE(512), @@ -127738,46 +127624,46 @@ 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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1481), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1479), [anon_sym_LPAREN] = ACTIONS(43), - [anon_sym_ref] = ACTIONS(661), - [anon_sym_LBRACE] = ACTIONS(1487), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_ref] = ACTIONS(715), + [anon_sym_LBRACE] = ACTIONS(1481), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1061), + [anon_sym_new] = ACTIONS(1059), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = 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_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(1525), + [anon_sym_TILDE] = ACTIONS(1525), + [anon_sym_PLUS_PLUS] = ACTIONS(1525), + [anon_sym_DASH_DASH] = ACTIONS(1525), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1585), - [anon_sym_DASH] = ACTIONS(1585), + [anon_sym_PLUS] = ACTIONS(1523), + [anon_sym_DASH] = ACTIONS(1523), [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(1587), - [anon_sym_AMP] = ACTIONS(1587), + [anon_sym_CARET] = ACTIONS(1525), + [anon_sym_AMP] = ACTIONS(1525), [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(1067), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1589), + [anon_sym_throw] = ACTIONS(1527), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1591), + [anon_sym_await] = ACTIONS(1529), [anon_sym_DOT_DOT] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), @@ -127803,10 +127689,10 @@ 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(1089), - [aux_sym_preproc_if_token3] = ACTIONS(2633), - [aux_sym_preproc_else_token1] = ACTIONS(2635), - [aux_sym_preproc_elif_token1] = ACTIONS(2637), + [aux_sym_preproc_if_token1] = ACTIONS(1087), + [aux_sym_preproc_if_token3] = ACTIONS(2631), + [aux_sym_preproc_else_token1] = ACTIONS(2633), + [aux_sym_preproc_elif_token1] = ACTIONS(2635), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -127823,88 +127709,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [513] = { - [sym_attribute_list] = STATE(5422), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(5160), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2204), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(4377), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3520), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3080), - [sym_postfix_unary_expression] = STATE(3111), - [sym_prefix_unary_expression] = STATE(3111), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6154), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3080), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3111), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3080), - [sym_member_access_expression] = STATE(2484), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3111), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7530), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(3080), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3080), - [sym_typeof_expression] = STATE(3080), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2484), - [sym_literal] = STATE(3080), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_else_in_expression] = STATE(7744), - [sym_preproc_elif_in_expression] = STATE(7744), - [sym_preproc_if_in_attribute_list] = STATE(5576), - [sym_preproc_else_in_attribute_list] = STATE(7361), - [sym_preproc_elif_in_attribute_list] = STATE(7361), + [sym_attribute_list] = STATE(5480), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(5152), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2196), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(4421), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3510), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3102), + [sym_postfix_unary_expression] = STATE(3079), + [sym_prefix_unary_expression] = STATE(3079), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6134), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3102), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3079), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3102), + [sym_member_access_expression] = STATE(2472), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3079), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7425), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(3102), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3102), + [sym_typeof_expression] = STATE(3102), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2472), + [sym_literal] = STATE(3102), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_else_in_expression] = STATE(7306), + [sym_preproc_elif_in_expression] = STATE(7306), + [sym_preproc_if_in_attribute_list] = STATE(5583), + [sym_preproc_else_in_attribute_list] = STATE(7349), + [sym_preproc_elif_in_attribute_list] = STATE(7349), [sym_preproc_region] = STATE(513), [sym_preproc_endregion] = STATE(513), [sym_preproc_line] = STATE(513), @@ -127914,46 +127800,46 @@ 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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1481), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1479), [anon_sym_LPAREN] = ACTIONS(43), - [anon_sym_ref] = ACTIONS(661), - [anon_sym_LBRACE] = ACTIONS(1487), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_ref] = ACTIONS(715), + [anon_sym_LBRACE] = ACTIONS(1481), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1061), + [anon_sym_new] = ACTIONS(1059), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = 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_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(1525), + [anon_sym_TILDE] = ACTIONS(1525), + [anon_sym_PLUS_PLUS] = ACTIONS(1525), + [anon_sym_DASH_DASH] = ACTIONS(1525), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1585), - [anon_sym_DASH] = ACTIONS(1585), + [anon_sym_PLUS] = ACTIONS(1523), + [anon_sym_DASH] = ACTIONS(1523), [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(1587), - [anon_sym_AMP] = ACTIONS(1587), + [anon_sym_CARET] = ACTIONS(1525), + [anon_sym_AMP] = ACTIONS(1525), [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(1067), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1589), + [anon_sym_throw] = ACTIONS(1527), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1591), + [anon_sym_await] = ACTIONS(1529), [anon_sym_DOT_DOT] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), @@ -127979,10 +127865,10 @@ 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(1089), - [aux_sym_preproc_if_token3] = ACTIONS(2639), - [aux_sym_preproc_else_token1] = ACTIONS(2635), - [aux_sym_preproc_elif_token1] = ACTIONS(2637), + [aux_sym_preproc_if_token1] = ACTIONS(1087), + [aux_sym_preproc_if_token3] = ACTIONS(2637), + [aux_sym_preproc_else_token1] = ACTIONS(2633), + [aux_sym_preproc_elif_token1] = ACTIONS(2635), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -127999,88 +127885,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [514] = { - [sym_attribute_list] = STATE(5422), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(5160), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2204), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(4357), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3520), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3080), - [sym_postfix_unary_expression] = STATE(3111), - [sym_prefix_unary_expression] = STATE(3111), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6154), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3080), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3111), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3080), - [sym_member_access_expression] = STATE(2484), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3111), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7530), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(3080), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3080), - [sym_typeof_expression] = STATE(3080), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2484), - [sym_literal] = STATE(3080), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_else_in_expression] = STATE(7317), - [sym_preproc_elif_in_expression] = STATE(7317), - [sym_preproc_if_in_attribute_list] = STATE(5576), - [sym_preproc_else_in_attribute_list] = STATE(7361), - [sym_preproc_elif_in_attribute_list] = STATE(7361), + [sym_attribute_list] = STATE(5480), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(5152), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2196), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(4421), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3510), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3102), + [sym_postfix_unary_expression] = STATE(3079), + [sym_prefix_unary_expression] = STATE(3079), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6134), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3102), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3079), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3102), + [sym_member_access_expression] = STATE(2472), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3079), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7425), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(3102), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3102), + [sym_typeof_expression] = STATE(3102), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2472), + [sym_literal] = STATE(3102), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_else_in_expression] = STATE(7306), + [sym_preproc_elif_in_expression] = STATE(7306), + [sym_preproc_if_in_attribute_list] = STATE(5583), + [sym_preproc_else_in_attribute_list] = STATE(7349), + [sym_preproc_elif_in_attribute_list] = STATE(7349), [sym_preproc_region] = STATE(514), [sym_preproc_endregion] = STATE(514), [sym_preproc_line] = STATE(514), @@ -128090,46 +127976,46 @@ 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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1481), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1479), [anon_sym_LPAREN] = ACTIONS(43), - [anon_sym_ref] = ACTIONS(661), - [anon_sym_LBRACE] = ACTIONS(1487), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_ref] = ACTIONS(715), + [anon_sym_LBRACE] = ACTIONS(1481), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1061), + [anon_sym_new] = ACTIONS(1059), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = 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_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(1525), + [anon_sym_TILDE] = ACTIONS(1525), + [anon_sym_PLUS_PLUS] = ACTIONS(1525), + [anon_sym_DASH_DASH] = ACTIONS(1525), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1585), - [anon_sym_DASH] = ACTIONS(1585), + [anon_sym_PLUS] = ACTIONS(1523), + [anon_sym_DASH] = ACTIONS(1523), [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(1587), - [anon_sym_AMP] = ACTIONS(1587), + [anon_sym_CARET] = ACTIONS(1525), + [anon_sym_AMP] = ACTIONS(1525), [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(1067), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1589), + [anon_sym_throw] = ACTIONS(1527), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1591), + [anon_sym_await] = ACTIONS(1529), [anon_sym_DOT_DOT] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), @@ -128155,10 +128041,10 @@ 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(1089), - [aux_sym_preproc_if_token3] = ACTIONS(2639), - [aux_sym_preproc_else_token1] = ACTIONS(2635), - [aux_sym_preproc_elif_token1] = ACTIONS(2637), + [aux_sym_preproc_if_token1] = ACTIONS(1087), + [aux_sym_preproc_if_token3] = ACTIONS(2631), + [aux_sym_preproc_else_token1] = ACTIONS(2633), + [aux_sym_preproc_elif_token1] = ACTIONS(2635), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -128175,88 +128061,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [515] = { - [sym_attribute_list] = STATE(5422), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(5160), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2204), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(4399), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3520), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3080), - [sym_postfix_unary_expression] = STATE(3111), - [sym_prefix_unary_expression] = STATE(3111), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6154), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3080), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3111), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3080), - [sym_member_access_expression] = STATE(2484), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3111), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7530), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(3080), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3080), - [sym_typeof_expression] = STATE(3080), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2484), - [sym_literal] = STATE(3080), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_else_in_expression] = STATE(7553), - [sym_preproc_elif_in_expression] = STATE(7553), - [sym_preproc_if_in_attribute_list] = STATE(5576), - [sym_preproc_else_in_attribute_list] = STATE(7361), - [sym_preproc_elif_in_attribute_list] = STATE(7361), + [sym_attribute_list] = STATE(5607), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(5152), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2196), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(4346), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3510), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3102), + [sym_postfix_unary_expression] = STATE(3079), + [sym_prefix_unary_expression] = STATE(3079), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6134), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3102), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3079), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3102), + [sym_member_access_expression] = STATE(2472), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3079), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7425), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(3102), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3102), + [sym_typeof_expression] = STATE(3102), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2472), + [sym_literal] = STATE(3102), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_else_in_expression] = STATE(7594), + [sym_preproc_elif_in_expression] = STATE(7594), + [sym_preproc_if_in_attribute_list] = STATE(5583), + [sym_preproc_else_in_attribute_list] = STATE(7380), + [sym_preproc_elif_in_attribute_list] = STATE(7380), [sym_preproc_region] = STATE(515), [sym_preproc_endregion] = STATE(515), [sym_preproc_line] = STATE(515), @@ -128266,46 +128152,46 @@ 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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1481), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1479), [anon_sym_LPAREN] = ACTIONS(43), - [anon_sym_ref] = ACTIONS(661), - [anon_sym_LBRACE] = ACTIONS(1487), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_ref] = ACTIONS(715), + [anon_sym_LBRACE] = ACTIONS(1481), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1061), + [anon_sym_new] = ACTIONS(1059), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = 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_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(1525), + [anon_sym_TILDE] = ACTIONS(1525), + [anon_sym_PLUS_PLUS] = ACTIONS(1525), + [anon_sym_DASH_DASH] = ACTIONS(1525), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1585), - [anon_sym_DASH] = ACTIONS(1585), + [anon_sym_PLUS] = ACTIONS(1523), + [anon_sym_DASH] = ACTIONS(1523), [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(1587), - [anon_sym_AMP] = ACTIONS(1587), + [anon_sym_CARET] = ACTIONS(1525), + [anon_sym_AMP] = ACTIONS(1525), [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(1067), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1589), + [anon_sym_throw] = ACTIONS(1527), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1591), + [anon_sym_await] = ACTIONS(1529), [anon_sym_DOT_DOT] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), @@ -128331,10 +128217,10 @@ 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(1089), - [aux_sym_preproc_if_token3] = ACTIONS(2641), - [aux_sym_preproc_else_token1] = ACTIONS(2635), - [aux_sym_preproc_elif_token1] = ACTIONS(2637), + [aux_sym_preproc_if_token1] = ACTIONS(1087), + [aux_sym_preproc_if_token3] = ACTIONS(2639), + [aux_sym_preproc_else_token1] = ACTIONS(2633), + [aux_sym_preproc_elif_token1] = ACTIONS(2635), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -128351,88 +128237,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [516] = { - [sym_attribute_list] = STATE(5422), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(5160), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2204), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(4468), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3520), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3080), - [sym_postfix_unary_expression] = STATE(3111), - [sym_prefix_unary_expression] = STATE(3111), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6154), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3080), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3111), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3080), - [sym_member_access_expression] = STATE(2484), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3111), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7530), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(3080), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3080), - [sym_typeof_expression] = STATE(3080), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2484), - [sym_literal] = STATE(3080), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_else_in_expression] = STATE(7682), - [sym_preproc_elif_in_expression] = STATE(7682), - [sym_preproc_if_in_attribute_list] = STATE(5576), - [sym_preproc_else_in_attribute_list] = STATE(7361), - [sym_preproc_elif_in_attribute_list] = STATE(7361), + [sym_attribute_list] = STATE(5480), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(5152), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2196), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(4456), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3510), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3102), + [sym_postfix_unary_expression] = STATE(3079), + [sym_prefix_unary_expression] = STATE(3079), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6134), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3102), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3079), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3102), + [sym_member_access_expression] = STATE(2472), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3079), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7425), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(3102), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3102), + [sym_typeof_expression] = STATE(3102), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2472), + [sym_literal] = STATE(3102), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_else_in_expression] = STATE(7478), + [sym_preproc_elif_in_expression] = STATE(7478), + [sym_preproc_if_in_attribute_list] = STATE(5583), + [sym_preproc_else_in_attribute_list] = STATE(7349), + [sym_preproc_elif_in_attribute_list] = STATE(7349), [sym_preproc_region] = STATE(516), [sym_preproc_endregion] = STATE(516), [sym_preproc_line] = STATE(516), @@ -128442,46 +128328,46 @@ 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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1481), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1479), [anon_sym_LPAREN] = ACTIONS(43), - [anon_sym_ref] = ACTIONS(661), - [anon_sym_LBRACE] = ACTIONS(1487), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_ref] = ACTIONS(715), + [anon_sym_LBRACE] = ACTIONS(1481), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1061), + [anon_sym_new] = ACTIONS(1059), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = 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_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(1525), + [anon_sym_TILDE] = ACTIONS(1525), + [anon_sym_PLUS_PLUS] = ACTIONS(1525), + [anon_sym_DASH_DASH] = ACTIONS(1525), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1585), - [anon_sym_DASH] = ACTIONS(1585), + [anon_sym_PLUS] = ACTIONS(1523), + [anon_sym_DASH] = ACTIONS(1523), [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(1587), - [anon_sym_AMP] = ACTIONS(1587), + [anon_sym_CARET] = ACTIONS(1525), + [anon_sym_AMP] = ACTIONS(1525), [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(1067), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1589), + [anon_sym_throw] = ACTIONS(1527), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1591), + [anon_sym_await] = ACTIONS(1529), [anon_sym_DOT_DOT] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), @@ -128507,10 +128393,10 @@ 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(1089), - [aux_sym_preproc_if_token3] = ACTIONS(2639), - [aux_sym_preproc_else_token1] = ACTIONS(2635), - [aux_sym_preproc_elif_token1] = ACTIONS(2637), + [aux_sym_preproc_if_token1] = ACTIONS(1087), + [aux_sym_preproc_if_token3] = ACTIONS(2631), + [aux_sym_preproc_else_token1] = ACTIONS(2633), + [aux_sym_preproc_elif_token1] = ACTIONS(2635), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -128527,88 +128413,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [517] = { - [sym_attribute_list] = STATE(5420), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(5160), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2204), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(4400), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3520), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3080), - [sym_postfix_unary_expression] = STATE(3111), - [sym_prefix_unary_expression] = STATE(3111), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6154), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3080), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3111), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3080), - [sym_member_access_expression] = STATE(2484), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3111), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7530), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(3080), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3080), - [sym_typeof_expression] = STATE(3080), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2484), - [sym_literal] = STATE(3080), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_else_in_expression] = STATE(7358), - [sym_preproc_elif_in_expression] = STATE(7358), - [sym_preproc_if_in_attribute_list] = STATE(5576), - [sym_preproc_else_in_attribute_list] = STATE(7359), - [sym_preproc_elif_in_attribute_list] = STATE(7359), + [sym_attribute_list] = STATE(5480), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(5152), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2196), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(4374), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3510), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3102), + [sym_postfix_unary_expression] = STATE(3079), + [sym_prefix_unary_expression] = STATE(3079), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6134), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3102), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3079), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3102), + [sym_member_access_expression] = STATE(2472), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3079), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7425), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(3102), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3102), + [sym_typeof_expression] = STATE(3102), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2472), + [sym_literal] = STATE(3102), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_else_in_expression] = STATE(7582), + [sym_preproc_elif_in_expression] = STATE(7582), + [sym_preproc_if_in_attribute_list] = STATE(5583), + [sym_preproc_else_in_attribute_list] = STATE(7349), + [sym_preproc_elif_in_attribute_list] = STATE(7349), [sym_preproc_region] = STATE(517), [sym_preproc_endregion] = STATE(517), [sym_preproc_line] = STATE(517), @@ -128618,46 +128504,46 @@ 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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1481), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1479), [anon_sym_LPAREN] = ACTIONS(43), - [anon_sym_ref] = ACTIONS(661), - [anon_sym_LBRACE] = ACTIONS(1487), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_ref] = ACTIONS(715), + [anon_sym_LBRACE] = ACTIONS(1481), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1061), + [anon_sym_new] = ACTIONS(1059), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = 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_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(1525), + [anon_sym_TILDE] = ACTIONS(1525), + [anon_sym_PLUS_PLUS] = ACTIONS(1525), + [anon_sym_DASH_DASH] = ACTIONS(1525), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1585), - [anon_sym_DASH] = ACTIONS(1585), + [anon_sym_PLUS] = ACTIONS(1523), + [anon_sym_DASH] = ACTIONS(1523), [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(1587), - [anon_sym_AMP] = ACTIONS(1587), + [anon_sym_CARET] = ACTIONS(1525), + [anon_sym_AMP] = ACTIONS(1525), [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(1067), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1589), + [anon_sym_throw] = ACTIONS(1527), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1591), + [anon_sym_await] = ACTIONS(1529), [anon_sym_DOT_DOT] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), @@ -128683,10 +128569,10 @@ 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(1089), - [aux_sym_preproc_if_token3] = ACTIONS(2643), - [aux_sym_preproc_else_token1] = ACTIONS(2635), - [aux_sym_preproc_elif_token1] = ACTIONS(2637), + [aux_sym_preproc_if_token1] = ACTIONS(1087), + [aux_sym_preproc_if_token3] = ACTIONS(2637), + [aux_sym_preproc_else_token1] = ACTIONS(2633), + [aux_sym_preproc_elif_token1] = ACTIONS(2635), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -128703,88 +128589,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [518] = { - [sym_attribute_list] = STATE(5422), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(5160), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2204), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(4387), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3520), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3080), - [sym_postfix_unary_expression] = STATE(3111), - [sym_prefix_unary_expression] = STATE(3111), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6154), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3080), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3111), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3080), - [sym_member_access_expression] = STATE(2484), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3111), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7530), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(3080), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3080), - [sym_typeof_expression] = STATE(3080), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2484), - [sym_literal] = STATE(3080), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_else_in_expression] = STATE(7509), - [sym_preproc_elif_in_expression] = STATE(7509), - [sym_preproc_if_in_attribute_list] = STATE(5576), - [sym_preproc_else_in_attribute_list] = STATE(7361), - [sym_preproc_elif_in_attribute_list] = STATE(7361), + [sym_attribute_list] = STATE(5480), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(5152), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2196), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(4354), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3510), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3102), + [sym_postfix_unary_expression] = STATE(3079), + [sym_prefix_unary_expression] = STATE(3079), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6134), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3102), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3079), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3102), + [sym_member_access_expression] = STATE(2472), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3079), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7425), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(3102), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3102), + [sym_typeof_expression] = STATE(3102), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2472), + [sym_literal] = STATE(3102), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_else_in_expression] = STATE(7675), + [sym_preproc_elif_in_expression] = STATE(7675), + [sym_preproc_if_in_attribute_list] = STATE(5583), + [sym_preproc_else_in_attribute_list] = STATE(7349), + [sym_preproc_elif_in_attribute_list] = STATE(7349), [sym_preproc_region] = STATE(518), [sym_preproc_endregion] = STATE(518), [sym_preproc_line] = STATE(518), @@ -128794,46 +128680,46 @@ 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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1481), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1479), [anon_sym_LPAREN] = ACTIONS(43), - [anon_sym_ref] = ACTIONS(661), - [anon_sym_LBRACE] = ACTIONS(1487), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_ref] = ACTIONS(715), + [anon_sym_LBRACE] = ACTIONS(1481), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1061), + [anon_sym_new] = ACTIONS(1059), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = 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_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(1525), + [anon_sym_TILDE] = ACTIONS(1525), + [anon_sym_PLUS_PLUS] = ACTIONS(1525), + [anon_sym_DASH_DASH] = ACTIONS(1525), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1585), - [anon_sym_DASH] = ACTIONS(1585), + [anon_sym_PLUS] = ACTIONS(1523), + [anon_sym_DASH] = ACTIONS(1523), [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(1587), - [anon_sym_AMP] = ACTIONS(1587), + [anon_sym_CARET] = ACTIONS(1525), + [anon_sym_AMP] = ACTIONS(1525), [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(1067), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1589), + [anon_sym_throw] = ACTIONS(1527), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1591), + [anon_sym_await] = ACTIONS(1529), [anon_sym_DOT_DOT] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), @@ -128859,10 +128745,10 @@ 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(1089), - [aux_sym_preproc_if_token3] = ACTIONS(2633), - [aux_sym_preproc_else_token1] = ACTIONS(2635), - [aux_sym_preproc_elif_token1] = ACTIONS(2637), + [aux_sym_preproc_if_token1] = ACTIONS(1087), + [aux_sym_preproc_if_token3] = ACTIONS(2631), + [aux_sym_preproc_else_token1] = ACTIONS(2633), + [aux_sym_preproc_elif_token1] = ACTIONS(2635), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -128879,88 +128765,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [519] = { - [sym_attribute_list] = STATE(5422), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(5160), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2204), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(4388), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3520), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3080), - [sym_postfix_unary_expression] = STATE(3111), - [sym_prefix_unary_expression] = STATE(3111), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6154), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3080), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3111), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3080), - [sym_member_access_expression] = STATE(2484), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3111), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7530), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(3080), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3080), - [sym_typeof_expression] = STATE(3080), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2484), - [sym_literal] = STATE(3080), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_else_in_expression] = STATE(7483), - [sym_preproc_elif_in_expression] = STATE(7483), - [sym_preproc_if_in_attribute_list] = STATE(5576), - [sym_preproc_else_in_attribute_list] = STATE(7361), - [sym_preproc_elif_in_attribute_list] = STATE(7361), + [sym_attribute_list] = STATE(5480), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(5152), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2196), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(4447), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3510), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3102), + [sym_postfix_unary_expression] = STATE(3079), + [sym_prefix_unary_expression] = STATE(3079), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6134), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3102), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3079), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3102), + [sym_member_access_expression] = STATE(2472), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3079), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7425), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(3102), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3102), + [sym_typeof_expression] = STATE(3102), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2472), + [sym_literal] = STATE(3102), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_else_in_expression] = STATE(7390), + [sym_preproc_elif_in_expression] = STATE(7390), + [sym_preproc_if_in_attribute_list] = STATE(5583), + [sym_preproc_else_in_attribute_list] = STATE(7349), + [sym_preproc_elif_in_attribute_list] = STATE(7349), [sym_preproc_region] = STATE(519), [sym_preproc_endregion] = STATE(519), [sym_preproc_line] = STATE(519), @@ -128970,46 +128856,46 @@ 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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1481), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1479), [anon_sym_LPAREN] = ACTIONS(43), - [anon_sym_ref] = ACTIONS(661), - [anon_sym_LBRACE] = ACTIONS(1487), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_ref] = ACTIONS(715), + [anon_sym_LBRACE] = ACTIONS(1481), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1061), + [anon_sym_new] = ACTIONS(1059), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = 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_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(1525), + [anon_sym_TILDE] = ACTIONS(1525), + [anon_sym_PLUS_PLUS] = ACTIONS(1525), + [anon_sym_DASH_DASH] = ACTIONS(1525), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1585), - [anon_sym_DASH] = ACTIONS(1585), + [anon_sym_PLUS] = ACTIONS(1523), + [anon_sym_DASH] = ACTIONS(1523), [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(1587), - [anon_sym_AMP] = ACTIONS(1587), + [anon_sym_CARET] = ACTIONS(1525), + [anon_sym_AMP] = ACTIONS(1525), [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(1067), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1589), + [anon_sym_throw] = ACTIONS(1527), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1591), + [anon_sym_await] = ACTIONS(1529), [anon_sym_DOT_DOT] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), @@ -129035,10 +128921,10 @@ 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(1089), - [aux_sym_preproc_if_token3] = ACTIONS(2633), - [aux_sym_preproc_else_token1] = ACTIONS(2635), - [aux_sym_preproc_elif_token1] = ACTIONS(2637), + [aux_sym_preproc_if_token1] = ACTIONS(1087), + [aux_sym_preproc_if_token3] = ACTIONS(2641), + [aux_sym_preproc_else_token1] = ACTIONS(2633), + [aux_sym_preproc_elif_token1] = ACTIONS(2635), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -129055,88 +128941,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [520] = { - [sym_attribute_list] = STATE(5422), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(5160), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2204), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(4388), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3520), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3080), - [sym_postfix_unary_expression] = STATE(3111), - [sym_prefix_unary_expression] = STATE(3111), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6154), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3080), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3111), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3080), - [sym_member_access_expression] = STATE(2484), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3111), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7530), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(3080), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3080), - [sym_typeof_expression] = STATE(3080), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2484), - [sym_literal] = STATE(3080), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_else_in_expression] = STATE(7483), - [sym_preproc_elif_in_expression] = STATE(7483), - [sym_preproc_if_in_attribute_list] = STATE(5576), - [sym_preproc_else_in_attribute_list] = STATE(7361), - [sym_preproc_elif_in_attribute_list] = STATE(7361), + [sym_attribute_list] = STATE(5480), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(5152), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2196), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(4438), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3510), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3102), + [sym_postfix_unary_expression] = STATE(3079), + [sym_prefix_unary_expression] = STATE(3079), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6134), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3102), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3079), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3102), + [sym_member_access_expression] = STATE(2472), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3079), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7425), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(3102), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3102), + [sym_typeof_expression] = STATE(3102), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2472), + [sym_literal] = STATE(3102), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_else_in_expression] = STATE(7347), + [sym_preproc_elif_in_expression] = STATE(7347), + [sym_preproc_if_in_attribute_list] = STATE(5583), + [sym_preproc_else_in_attribute_list] = STATE(7349), + [sym_preproc_elif_in_attribute_list] = STATE(7349), [sym_preproc_region] = STATE(520), [sym_preproc_endregion] = STATE(520), [sym_preproc_line] = STATE(520), @@ -129146,46 +129032,46 @@ 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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1481), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1479), [anon_sym_LPAREN] = ACTIONS(43), - [anon_sym_ref] = ACTIONS(661), - [anon_sym_LBRACE] = ACTIONS(1487), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_ref] = ACTIONS(715), + [anon_sym_LBRACE] = ACTIONS(1481), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1061), + [anon_sym_new] = ACTIONS(1059), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = 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_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(1525), + [anon_sym_TILDE] = ACTIONS(1525), + [anon_sym_PLUS_PLUS] = ACTIONS(1525), + [anon_sym_DASH_DASH] = ACTIONS(1525), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1585), - [anon_sym_DASH] = ACTIONS(1585), + [anon_sym_PLUS] = ACTIONS(1523), + [anon_sym_DASH] = ACTIONS(1523), [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(1587), - [anon_sym_AMP] = ACTIONS(1587), + [anon_sym_CARET] = ACTIONS(1525), + [anon_sym_AMP] = ACTIONS(1525), [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(1067), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1589), + [anon_sym_throw] = ACTIONS(1527), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1591), + [anon_sym_await] = ACTIONS(1529), [anon_sym_DOT_DOT] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), @@ -129211,10 +129097,10 @@ 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(1089), - [aux_sym_preproc_if_token3] = ACTIONS(2639), - [aux_sym_preproc_else_token1] = ACTIONS(2635), - [aux_sym_preproc_elif_token1] = ACTIONS(2637), + [aux_sym_preproc_if_token1] = ACTIONS(1087), + [aux_sym_preproc_if_token3] = ACTIONS(2637), + [aux_sym_preproc_else_token1] = ACTIONS(2633), + [aux_sym_preproc_elif_token1] = ACTIONS(2635), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -129231,88 +129117,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [521] = { - [sym_attribute_list] = STATE(5422), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(5160), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2204), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(4377), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3520), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3080), - [sym_postfix_unary_expression] = STATE(3111), - [sym_prefix_unary_expression] = STATE(3111), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6154), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3080), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3111), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3080), - [sym_member_access_expression] = STATE(2484), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3111), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7530), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(3080), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3080), - [sym_typeof_expression] = STATE(3080), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2484), - [sym_literal] = STATE(3080), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_else_in_expression] = STATE(7744), - [sym_preproc_elif_in_expression] = STATE(7744), - [sym_preproc_if_in_attribute_list] = STATE(5576), - [sym_preproc_else_in_attribute_list] = STATE(7361), - [sym_preproc_elif_in_attribute_list] = STATE(7361), + [sym_attribute_list] = STATE(5480), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(5152), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2196), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(4456), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3510), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3102), + [sym_postfix_unary_expression] = STATE(3079), + [sym_prefix_unary_expression] = STATE(3079), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6134), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3102), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3079), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3102), + [sym_member_access_expression] = STATE(2472), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3079), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7425), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(3102), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3102), + [sym_typeof_expression] = STATE(3102), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2472), + [sym_literal] = STATE(3102), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_else_in_expression] = STATE(7478), + [sym_preproc_elif_in_expression] = STATE(7478), + [sym_preproc_if_in_attribute_list] = STATE(5583), + [sym_preproc_else_in_attribute_list] = STATE(7349), + [sym_preproc_elif_in_attribute_list] = STATE(7349), [sym_preproc_region] = STATE(521), [sym_preproc_endregion] = STATE(521), [sym_preproc_line] = STATE(521), @@ -129322,46 +129208,46 @@ 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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1481), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1479), [anon_sym_LPAREN] = ACTIONS(43), - [anon_sym_ref] = ACTIONS(661), - [anon_sym_LBRACE] = ACTIONS(1487), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_ref] = ACTIONS(715), + [anon_sym_LBRACE] = ACTIONS(1481), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1061), + [anon_sym_new] = ACTIONS(1059), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = 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_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(1525), + [anon_sym_TILDE] = ACTIONS(1525), + [anon_sym_PLUS_PLUS] = ACTIONS(1525), + [anon_sym_DASH_DASH] = ACTIONS(1525), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1585), - [anon_sym_DASH] = ACTIONS(1585), + [anon_sym_PLUS] = ACTIONS(1523), + [anon_sym_DASH] = ACTIONS(1523), [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(1587), - [anon_sym_AMP] = ACTIONS(1587), + [anon_sym_CARET] = ACTIONS(1525), + [anon_sym_AMP] = ACTIONS(1525), [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(1067), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1589), + [anon_sym_throw] = ACTIONS(1527), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1591), + [anon_sym_await] = ACTIONS(1529), [anon_sym_DOT_DOT] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), @@ -129387,10 +129273,10 @@ 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(1089), - [aux_sym_preproc_if_token3] = ACTIONS(2633), - [aux_sym_preproc_else_token1] = ACTIONS(2635), - [aux_sym_preproc_elif_token1] = ACTIONS(2637), + [aux_sym_preproc_if_token1] = ACTIONS(1087), + [aux_sym_preproc_if_token3] = ACTIONS(2637), + [aux_sym_preproc_else_token1] = ACTIONS(2633), + [aux_sym_preproc_elif_token1] = ACTIONS(2635), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -129407,88 +129293,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [522] = { - [sym_attribute_list] = STATE(5422), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(5160), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2204), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(4468), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3520), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3080), - [sym_postfix_unary_expression] = STATE(3111), - [sym_prefix_unary_expression] = STATE(3111), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6154), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3080), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3111), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3080), - [sym_member_access_expression] = STATE(2484), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3111), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7530), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(3080), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3080), - [sym_typeof_expression] = STATE(3080), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2484), - [sym_literal] = STATE(3080), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_else_in_expression] = STATE(7682), - [sym_preproc_elif_in_expression] = STATE(7682), - [sym_preproc_if_in_attribute_list] = STATE(5576), - [sym_preproc_else_in_attribute_list] = STATE(7361), - [sym_preproc_elif_in_attribute_list] = STATE(7361), + [sym_attribute_list] = STATE(5480), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(5152), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2196), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(4354), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3510), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3102), + [sym_postfix_unary_expression] = STATE(3079), + [sym_prefix_unary_expression] = STATE(3079), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6134), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3102), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3079), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3102), + [sym_member_access_expression] = STATE(2472), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3079), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7425), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(3102), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3102), + [sym_typeof_expression] = STATE(3102), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2472), + [sym_literal] = STATE(3102), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_else_in_expression] = STATE(7675), + [sym_preproc_elif_in_expression] = STATE(7675), + [sym_preproc_if_in_attribute_list] = STATE(5583), + [sym_preproc_else_in_attribute_list] = STATE(7349), + [sym_preproc_elif_in_attribute_list] = STATE(7349), [sym_preproc_region] = STATE(522), [sym_preproc_endregion] = STATE(522), [sym_preproc_line] = STATE(522), @@ -129498,46 +129384,46 @@ 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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1481), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1479), [anon_sym_LPAREN] = ACTIONS(43), - [anon_sym_ref] = ACTIONS(661), - [anon_sym_LBRACE] = ACTIONS(1487), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_ref] = ACTIONS(715), + [anon_sym_LBRACE] = ACTIONS(1481), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1061), + [anon_sym_new] = ACTIONS(1059), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = 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_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(1525), + [anon_sym_TILDE] = ACTIONS(1525), + [anon_sym_PLUS_PLUS] = ACTIONS(1525), + [anon_sym_DASH_DASH] = ACTIONS(1525), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1585), - [anon_sym_DASH] = ACTIONS(1585), + [anon_sym_PLUS] = ACTIONS(1523), + [anon_sym_DASH] = ACTIONS(1523), [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(1587), - [anon_sym_AMP] = ACTIONS(1587), + [anon_sym_CARET] = ACTIONS(1525), + [anon_sym_AMP] = ACTIONS(1525), [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(1067), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1589), + [anon_sym_throw] = ACTIONS(1527), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1591), + [anon_sym_await] = ACTIONS(1529), [anon_sym_DOT_DOT] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), @@ -129563,10 +129449,10 @@ 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(1089), - [aux_sym_preproc_if_token3] = ACTIONS(2633), - [aux_sym_preproc_else_token1] = ACTIONS(2635), - [aux_sym_preproc_elif_token1] = ACTIONS(2637), + [aux_sym_preproc_if_token1] = ACTIONS(1087), + [aux_sym_preproc_if_token3] = ACTIONS(2637), + [aux_sym_preproc_else_token1] = ACTIONS(2633), + [aux_sym_preproc_elif_token1] = ACTIONS(2635), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -129583,87 +129469,87 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [523] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_argument] = STATE(6947), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(5707), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2233), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5908), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_tuple_element] = STATE(7146), - [sym_expression] = STATE(5061), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3379), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3080), - [sym_postfix_unary_expression] = STATE(3111), - [sym_prefix_unary_expression] = STATE(3111), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6154), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3080), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3111), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3080), - [sym_member_access_expression] = STATE(2484), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3111), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7575), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_declaration_expression] = STATE(6803), - [sym_default_expression] = STATE(3080), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3080), - [sym_typeof_expression] = STATE(3080), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2484), - [sym_literal] = STATE(3080), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2206), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_argument] = STATE(6913), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(5676), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2223), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5884), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_tuple_element] = STATE(7069), + [sym_expression] = STATE(5095), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3468), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3102), + [sym_postfix_unary_expression] = STATE(3079), + [sym_prefix_unary_expression] = STATE(3079), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6134), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3102), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3079), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3102), + [sym_member_access_expression] = STATE(2472), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3079), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7309), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_declaration_expression] = STATE(6902), + [sym_default_expression] = STATE(3102), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3102), + [sym_typeof_expression] = STATE(3102), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2472), + [sym_literal] = STATE(3102), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2207), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(523), [sym_preproc_endregion] = STATE(523), [sym_preproc_line] = STATE(523), @@ -129673,50 +129559,50 @@ 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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1481), - [anon_sym_LPAREN] = ACTIONS(895), - [anon_sym_RPAREN] = ACTIONS(2645), - [anon_sym_ref] = ACTIONS(2647), - [anon_sym_LBRACE] = ACTIONS(1487), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1479), + [anon_sym_LPAREN] = ACTIONS(659), + [anon_sym_RPAREN] = ACTIONS(2643), + [anon_sym_ref] = ACTIONS(2645), + [anon_sym_LBRACE] = ACTIONS(1481), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1061), - [anon_sym_in] = ACTIONS(1065), - [anon_sym_out] = ACTIONS(1065), + [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(1067), - [anon_sym_BANG] = ACTIONS(1495), - [anon_sym_TILDE] = ACTIONS(1495), - [anon_sym_PLUS_PLUS] = ACTIONS(1495), - [anon_sym_DASH_DASH] = ACTIONS(1495), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(1485), + [anon_sym_TILDE] = ACTIONS(1485), + [anon_sym_PLUS_PLUS] = ACTIONS(1485), + [anon_sym_DASH_DASH] = ACTIONS(1485), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1493), - [anon_sym_DASH] = ACTIONS(1493), - [anon_sym_STAR] = ACTIONS(905), - [anon_sym_CARET] = ACTIONS(1495), - [anon_sym_AMP] = ACTIONS(1495), + [anon_sym_PLUS] = ACTIONS(1483), + [anon_sym_DASH] = ACTIONS(1483), + [anon_sym_STAR] = ACTIONS(683), + [anon_sym_CARET] = ACTIONS(1485), + [anon_sym_AMP] = ACTIONS(1485), [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(1075), + [anon_sym_scoped] = ACTIONS(1073), [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(2649), + [anon_sym_var] = ACTIONS(2647), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1067), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1079), + [anon_sym_throw] = ACTIONS(1077), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1081), - [anon_sym_DOT_DOT] = ACTIONS(911), + [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), @@ -129741,7 +129627,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(1089), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -129758,87 +129644,87 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [524] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_argument] = STATE(6941), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(5707), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2233), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5908), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_tuple_element] = STATE(7068), - [sym_expression] = STATE(5061), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3379), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3080), - [sym_postfix_unary_expression] = STATE(3111), - [sym_prefix_unary_expression] = STATE(3111), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6154), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3080), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3111), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3080), - [sym_member_access_expression] = STATE(2484), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3111), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7575), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_declaration_expression] = STATE(6803), - [sym_default_expression] = STATE(3080), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3080), - [sym_typeof_expression] = STATE(3080), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2484), - [sym_literal] = STATE(3080), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2206), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_argument] = STATE(6944), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(5676), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2223), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5884), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_tuple_element] = STATE(7037), + [sym_expression] = STATE(5095), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3468), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3102), + [sym_postfix_unary_expression] = STATE(3079), + [sym_prefix_unary_expression] = STATE(3079), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6134), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3102), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3079), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3102), + [sym_member_access_expression] = STATE(2472), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3079), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7309), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_declaration_expression] = STATE(6902), + [sym_default_expression] = STATE(3102), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3102), + [sym_typeof_expression] = STATE(3102), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2472), + [sym_literal] = STATE(3102), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2207), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(524), [sym_preproc_endregion] = STATE(524), [sym_preproc_line] = STATE(524), @@ -129848,50 +129734,50 @@ 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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1481), - [anon_sym_LPAREN] = ACTIONS(895), - [anon_sym_RPAREN] = ACTIONS(2651), - [anon_sym_ref] = ACTIONS(2647), - [anon_sym_LBRACE] = ACTIONS(1487), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1479), + [anon_sym_LPAREN] = ACTIONS(659), + [anon_sym_RPAREN] = ACTIONS(2649), + [anon_sym_ref] = ACTIONS(2645), + [anon_sym_LBRACE] = ACTIONS(1481), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1061), - [anon_sym_in] = ACTIONS(1065), - [anon_sym_out] = ACTIONS(1065), + [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(1067), - [anon_sym_BANG] = ACTIONS(1495), - [anon_sym_TILDE] = ACTIONS(1495), - [anon_sym_PLUS_PLUS] = ACTIONS(1495), - [anon_sym_DASH_DASH] = ACTIONS(1495), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(1485), + [anon_sym_TILDE] = ACTIONS(1485), + [anon_sym_PLUS_PLUS] = ACTIONS(1485), + [anon_sym_DASH_DASH] = ACTIONS(1485), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1493), - [anon_sym_DASH] = ACTIONS(1493), - [anon_sym_STAR] = ACTIONS(905), - [anon_sym_CARET] = ACTIONS(1495), - [anon_sym_AMP] = ACTIONS(1495), + [anon_sym_PLUS] = ACTIONS(1483), + [anon_sym_DASH] = ACTIONS(1483), + [anon_sym_STAR] = ACTIONS(683), + [anon_sym_CARET] = ACTIONS(1485), + [anon_sym_AMP] = ACTIONS(1485), [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(1075), + [anon_sym_scoped] = ACTIONS(1073), [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(2649), + [anon_sym_var] = ACTIONS(2647), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1067), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1079), + [anon_sym_throw] = ACTIONS(1077), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1081), - [anon_sym_DOT_DOT] = ACTIONS(911), + [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), @@ -129916,7 +129802,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(1089), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -129933,87 +129819,87 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [525] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_argument] = STATE(6947), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(5707), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2233), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5908), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_tuple_element] = STATE(7192), - [sym_expression] = STATE(5061), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3379), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3080), - [sym_postfix_unary_expression] = STATE(3111), - [sym_prefix_unary_expression] = STATE(3111), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6154), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3080), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3111), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3080), - [sym_member_access_expression] = STATE(2484), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3111), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7575), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_declaration_expression] = STATE(6803), - [sym_default_expression] = STATE(3080), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3080), - [sym_typeof_expression] = STATE(3080), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2484), - [sym_literal] = STATE(3080), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2206), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_argument] = STATE(7026), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(5676), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2223), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5884), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_tuple_element] = STATE(7202), + [sym_expression] = STATE(5095), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3468), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3102), + [sym_postfix_unary_expression] = STATE(3079), + [sym_prefix_unary_expression] = STATE(3079), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6134), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3102), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3079), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3102), + [sym_member_access_expression] = STATE(2472), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3079), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7309), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_declaration_expression] = STATE(6902), + [sym_default_expression] = STATE(3102), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3102), + [sym_typeof_expression] = STATE(3102), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2472), + [sym_literal] = STATE(3102), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2207), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(525), [sym_preproc_endregion] = STATE(525), [sym_preproc_line] = STATE(525), @@ -130023,50 +129909,50 @@ 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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1481), - [anon_sym_LPAREN] = ACTIONS(895), - [anon_sym_RPAREN] = ACTIONS(2645), - [anon_sym_ref] = ACTIONS(2647), - [anon_sym_LBRACE] = ACTIONS(1487), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1479), + [anon_sym_LPAREN] = ACTIONS(659), + [anon_sym_RPAREN] = ACTIONS(2651), + [anon_sym_ref] = ACTIONS(2645), + [anon_sym_LBRACE] = ACTIONS(1481), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1061), - [anon_sym_in] = ACTIONS(1065), - [anon_sym_out] = ACTIONS(1065), + [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(1067), - [anon_sym_BANG] = ACTIONS(1495), - [anon_sym_TILDE] = ACTIONS(1495), - [anon_sym_PLUS_PLUS] = ACTIONS(1495), - [anon_sym_DASH_DASH] = ACTIONS(1495), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(1485), + [anon_sym_TILDE] = ACTIONS(1485), + [anon_sym_PLUS_PLUS] = ACTIONS(1485), + [anon_sym_DASH_DASH] = ACTIONS(1485), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1493), - [anon_sym_DASH] = ACTIONS(1493), - [anon_sym_STAR] = ACTIONS(905), - [anon_sym_CARET] = ACTIONS(1495), - [anon_sym_AMP] = ACTIONS(1495), + [anon_sym_PLUS] = ACTIONS(1483), + [anon_sym_DASH] = ACTIONS(1483), + [anon_sym_STAR] = ACTIONS(683), + [anon_sym_CARET] = ACTIONS(1485), + [anon_sym_AMP] = ACTIONS(1485), [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(1075), + [anon_sym_scoped] = ACTIONS(1073), [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(2649), + [anon_sym_var] = ACTIONS(2647), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1067), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1079), + [anon_sym_throw] = ACTIONS(1077), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1081), - [anon_sym_DOT_DOT] = ACTIONS(911), + [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), @@ -130091,7 +129977,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(1089), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -130108,87 +129994,87 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [526] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_argument] = STATE(6802), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(5707), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2233), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5908), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_tuple_element] = STATE(7255), - [sym_expression] = STATE(5061), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3379), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3080), - [sym_postfix_unary_expression] = STATE(3111), - [sym_prefix_unary_expression] = STATE(3111), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6154), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3080), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3111), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3080), - [sym_member_access_expression] = STATE(2484), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3111), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7575), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_declaration_expression] = STATE(6803), - [sym_default_expression] = STATE(3080), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3080), - [sym_typeof_expression] = STATE(3080), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2484), - [sym_literal] = STATE(3080), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2206), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_argument] = STATE(6861), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(5676), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2223), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5884), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_tuple_element] = STATE(7246), + [sym_expression] = STATE(5095), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3468), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3102), + [sym_postfix_unary_expression] = STATE(3079), + [sym_prefix_unary_expression] = STATE(3079), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6134), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3102), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3079), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3102), + [sym_member_access_expression] = STATE(2472), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3079), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7309), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_declaration_expression] = STATE(6902), + [sym_default_expression] = STATE(3102), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3102), + [sym_typeof_expression] = STATE(3102), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2472), + [sym_literal] = STATE(3102), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2207), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(526), [sym_preproc_endregion] = STATE(526), [sym_preproc_line] = STATE(526), @@ -130198,50 +130084,50 @@ 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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1481), - [anon_sym_LPAREN] = ACTIONS(895), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1479), + [anon_sym_LPAREN] = ACTIONS(659), [anon_sym_RPAREN] = ACTIONS(2653), - [anon_sym_ref] = ACTIONS(2647), - [anon_sym_LBRACE] = ACTIONS(1487), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_ref] = ACTIONS(2645), + [anon_sym_LBRACE] = ACTIONS(1481), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1061), - [anon_sym_in] = ACTIONS(1065), - [anon_sym_out] = ACTIONS(1065), + [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(1067), - [anon_sym_BANG] = ACTIONS(1495), - [anon_sym_TILDE] = ACTIONS(1495), - [anon_sym_PLUS_PLUS] = ACTIONS(1495), - [anon_sym_DASH_DASH] = ACTIONS(1495), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(1485), + [anon_sym_TILDE] = ACTIONS(1485), + [anon_sym_PLUS_PLUS] = ACTIONS(1485), + [anon_sym_DASH_DASH] = ACTIONS(1485), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1493), - [anon_sym_DASH] = ACTIONS(1493), - [anon_sym_STAR] = ACTIONS(905), - [anon_sym_CARET] = ACTIONS(1495), - [anon_sym_AMP] = ACTIONS(1495), + [anon_sym_PLUS] = ACTIONS(1483), + [anon_sym_DASH] = ACTIONS(1483), + [anon_sym_STAR] = ACTIONS(683), + [anon_sym_CARET] = ACTIONS(1485), + [anon_sym_AMP] = ACTIONS(1485), [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(1075), + [anon_sym_scoped] = ACTIONS(1073), [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(2649), + [anon_sym_var] = ACTIONS(2647), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1067), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1079), + [anon_sym_throw] = ACTIONS(1077), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1081), - [anon_sym_DOT_DOT] = ACTIONS(911), + [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), @@ -130266,7 +130152,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(1089), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -130283,87 +130169,87 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [527] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_argument] = STATE(6941), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(5707), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2233), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5908), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_tuple_element] = STATE(7146), - [sym_expression] = STATE(5061), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3379), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3080), - [sym_postfix_unary_expression] = STATE(3111), - [sym_prefix_unary_expression] = STATE(3111), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6154), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3080), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3111), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3080), - [sym_member_access_expression] = STATE(2484), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3111), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7575), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_declaration_expression] = STATE(6803), - [sym_default_expression] = STATE(3080), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3080), - [sym_typeof_expression] = STATE(3080), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2484), - [sym_literal] = STATE(3080), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2206), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_argument] = STATE(7026), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(5676), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2223), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5884), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_tuple_element] = STATE(7266), + [sym_expression] = STATE(5095), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3468), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3102), + [sym_postfix_unary_expression] = STATE(3079), + [sym_prefix_unary_expression] = STATE(3079), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6134), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3102), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3079), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3102), + [sym_member_access_expression] = STATE(2472), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3079), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7309), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_declaration_expression] = STATE(6902), + [sym_default_expression] = STATE(3102), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3102), + [sym_typeof_expression] = STATE(3102), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2472), + [sym_literal] = STATE(3102), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2207), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(527), [sym_preproc_endregion] = STATE(527), [sym_preproc_line] = STATE(527), @@ -130373,50 +130259,50 @@ 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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1481), - [anon_sym_LPAREN] = ACTIONS(895), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1479), + [anon_sym_LPAREN] = ACTIONS(659), [anon_sym_RPAREN] = ACTIONS(2651), - [anon_sym_ref] = ACTIONS(2647), - [anon_sym_LBRACE] = ACTIONS(1487), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_ref] = ACTIONS(2645), + [anon_sym_LBRACE] = ACTIONS(1481), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1061), - [anon_sym_in] = ACTIONS(1065), - [anon_sym_out] = ACTIONS(1065), + [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(1067), - [anon_sym_BANG] = ACTIONS(1495), - [anon_sym_TILDE] = ACTIONS(1495), - [anon_sym_PLUS_PLUS] = ACTIONS(1495), - [anon_sym_DASH_DASH] = ACTIONS(1495), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(1485), + [anon_sym_TILDE] = ACTIONS(1485), + [anon_sym_PLUS_PLUS] = ACTIONS(1485), + [anon_sym_DASH_DASH] = ACTIONS(1485), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1493), - [anon_sym_DASH] = ACTIONS(1493), - [anon_sym_STAR] = ACTIONS(905), - [anon_sym_CARET] = ACTIONS(1495), - [anon_sym_AMP] = ACTIONS(1495), + [anon_sym_PLUS] = ACTIONS(1483), + [anon_sym_DASH] = ACTIONS(1483), + [anon_sym_STAR] = ACTIONS(683), + [anon_sym_CARET] = ACTIONS(1485), + [anon_sym_AMP] = ACTIONS(1485), [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(1075), + [anon_sym_scoped] = ACTIONS(1073), [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(2649), + [anon_sym_var] = ACTIONS(2647), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1067), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1079), + [anon_sym_throw] = ACTIONS(1077), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1081), - [anon_sym_DOT_DOT] = ACTIONS(911), + [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), @@ -130441,7 +130327,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(1089), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -130458,87 +130344,87 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [528] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_argument] = STATE(6968), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(5707), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2233), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5908), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_tuple_element] = STATE(7106), - [sym_expression] = STATE(5061), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3379), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3080), - [sym_postfix_unary_expression] = STATE(3111), - [sym_prefix_unary_expression] = STATE(3111), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6154), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3080), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3111), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3080), - [sym_member_access_expression] = STATE(2484), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3111), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7575), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_declaration_expression] = STATE(6803), - [sym_default_expression] = STATE(3080), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3080), - [sym_typeof_expression] = STATE(3080), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2484), - [sym_literal] = STATE(3080), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2206), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_argument] = STATE(6831), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(5676), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2223), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5884), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_tuple_element] = STATE(7118), + [sym_expression] = STATE(5095), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3468), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3102), + [sym_postfix_unary_expression] = STATE(3079), + [sym_prefix_unary_expression] = STATE(3079), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6134), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3102), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3079), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3102), + [sym_member_access_expression] = STATE(2472), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3079), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7309), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_declaration_expression] = STATE(6902), + [sym_default_expression] = STATE(3102), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3102), + [sym_typeof_expression] = STATE(3102), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2472), + [sym_literal] = STATE(3102), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2207), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(528), [sym_preproc_endregion] = STATE(528), [sym_preproc_line] = STATE(528), @@ -130548,50 +130434,50 @@ 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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1481), - [anon_sym_LPAREN] = ACTIONS(895), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1479), + [anon_sym_LPAREN] = ACTIONS(659), [anon_sym_RPAREN] = ACTIONS(2655), - [anon_sym_ref] = ACTIONS(2647), - [anon_sym_LBRACE] = ACTIONS(1487), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_ref] = ACTIONS(2645), + [anon_sym_LBRACE] = ACTIONS(1481), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1061), - [anon_sym_in] = ACTIONS(1065), - [anon_sym_out] = ACTIONS(1065), + [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(1067), - [anon_sym_BANG] = ACTIONS(1495), - [anon_sym_TILDE] = ACTIONS(1495), - [anon_sym_PLUS_PLUS] = ACTIONS(1495), - [anon_sym_DASH_DASH] = ACTIONS(1495), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(1485), + [anon_sym_TILDE] = ACTIONS(1485), + [anon_sym_PLUS_PLUS] = ACTIONS(1485), + [anon_sym_DASH_DASH] = ACTIONS(1485), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1493), - [anon_sym_DASH] = ACTIONS(1493), - [anon_sym_STAR] = ACTIONS(905), - [anon_sym_CARET] = ACTIONS(1495), - [anon_sym_AMP] = ACTIONS(1495), + [anon_sym_PLUS] = ACTIONS(1483), + [anon_sym_DASH] = ACTIONS(1483), + [anon_sym_STAR] = ACTIONS(683), + [anon_sym_CARET] = ACTIONS(1485), + [anon_sym_AMP] = ACTIONS(1485), [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(1075), + [anon_sym_scoped] = ACTIONS(1073), [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(2649), + [anon_sym_var] = ACTIONS(2647), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1067), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1079), + [anon_sym_throw] = ACTIONS(1077), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1081), - [anon_sym_DOT_DOT] = ACTIONS(911), + [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), @@ -130616,7 +130502,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(1089), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -130633,87 +130519,87 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [529] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_argument] = STATE(7027), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(5707), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2233), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5908), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_tuple_element] = STATE(7039), - [sym_expression] = STATE(5061), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3379), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3080), - [sym_postfix_unary_expression] = STATE(3111), - [sym_prefix_unary_expression] = STATE(3111), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6154), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3080), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3111), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3080), - [sym_member_access_expression] = STATE(2484), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3111), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7575), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_declaration_expression] = STATE(6803), - [sym_default_expression] = STATE(3080), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3080), - [sym_typeof_expression] = STATE(3080), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2484), - [sym_literal] = STATE(3080), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2206), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_argument] = STATE(6944), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(5676), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2223), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5884), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_tuple_element] = STATE(7266), + [sym_expression] = STATE(5095), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3468), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3102), + [sym_postfix_unary_expression] = STATE(3079), + [sym_prefix_unary_expression] = STATE(3079), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6134), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3102), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3079), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3102), + [sym_member_access_expression] = STATE(2472), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3079), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7309), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_declaration_expression] = STATE(6902), + [sym_default_expression] = STATE(3102), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3102), + [sym_typeof_expression] = STATE(3102), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2472), + [sym_literal] = STATE(3102), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2207), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(529), [sym_preproc_endregion] = STATE(529), [sym_preproc_line] = STATE(529), @@ -130723,50 +130609,50 @@ 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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1481), - [anon_sym_LPAREN] = ACTIONS(895), - [anon_sym_RPAREN] = ACTIONS(2657), - [anon_sym_ref] = ACTIONS(2647), - [anon_sym_LBRACE] = ACTIONS(1487), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1479), + [anon_sym_LPAREN] = ACTIONS(659), + [anon_sym_RPAREN] = ACTIONS(2649), + [anon_sym_ref] = ACTIONS(2645), + [anon_sym_LBRACE] = ACTIONS(1481), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1061), - [anon_sym_in] = ACTIONS(1065), - [anon_sym_out] = ACTIONS(1065), + [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(1067), - [anon_sym_BANG] = ACTIONS(1495), - [anon_sym_TILDE] = ACTIONS(1495), - [anon_sym_PLUS_PLUS] = ACTIONS(1495), - [anon_sym_DASH_DASH] = ACTIONS(1495), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(1485), + [anon_sym_TILDE] = ACTIONS(1485), + [anon_sym_PLUS_PLUS] = ACTIONS(1485), + [anon_sym_DASH_DASH] = ACTIONS(1485), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1493), - [anon_sym_DASH] = ACTIONS(1493), - [anon_sym_STAR] = ACTIONS(905), - [anon_sym_CARET] = ACTIONS(1495), - [anon_sym_AMP] = ACTIONS(1495), + [anon_sym_PLUS] = ACTIONS(1483), + [anon_sym_DASH] = ACTIONS(1483), + [anon_sym_STAR] = ACTIONS(683), + [anon_sym_CARET] = ACTIONS(1485), + [anon_sym_AMP] = ACTIONS(1485), [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(1075), + [anon_sym_scoped] = ACTIONS(1073), [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(2649), + [anon_sym_var] = ACTIONS(2647), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1067), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1079), + [anon_sym_throw] = ACTIONS(1077), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1081), - [anon_sym_DOT_DOT] = ACTIONS(911), + [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), @@ -130791,7 +130677,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(1089), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -130808,86 +130694,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [530] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_argument] = STATE(6968), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(5910), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2247), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5920), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(5061), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3379), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3080), - [sym_postfix_unary_expression] = STATE(3111), - [sym_prefix_unary_expression] = STATE(3111), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6154), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3080), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3111), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3080), - [sym_member_access_expression] = STATE(2484), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3111), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7575), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_declaration_expression] = STATE(6803), - [sym_default_expression] = STATE(3080), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3080), - [sym_typeof_expression] = STATE(3080), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2484), - [sym_literal] = STATE(3080), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2206), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_argument] = STATE(6913), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(5873), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2238), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5904), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(5095), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3468), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3102), + [sym_postfix_unary_expression] = STATE(3079), + [sym_prefix_unary_expression] = STATE(3079), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6134), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3102), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3079), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3102), + [sym_member_access_expression] = STATE(2472), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3079), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7309), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_declaration_expression] = STATE(6902), + [sym_default_expression] = STATE(3102), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3102), + [sym_typeof_expression] = STATE(3102), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2472), + [sym_literal] = STATE(3102), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2207), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(530), [sym_preproc_endregion] = STATE(530), [sym_preproc_line] = STATE(530), @@ -130897,50 +130783,50 @@ 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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1481), - [anon_sym_LPAREN] = ACTIONS(895), - [anon_sym_RPAREN] = ACTIONS(2655), - [anon_sym_ref] = ACTIONS(2659), - [anon_sym_LBRACE] = ACTIONS(1487), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1479), + [anon_sym_LPAREN] = ACTIONS(659), + [anon_sym_RPAREN] = ACTIONS(2643), + [anon_sym_ref] = ACTIONS(2657), + [anon_sym_LBRACE] = ACTIONS(1481), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1061), - [anon_sym_in] = ACTIONS(1065), - [anon_sym_out] = ACTIONS(1065), + [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(1067), - [anon_sym_BANG] = ACTIONS(1495), - [anon_sym_TILDE] = ACTIONS(1495), - [anon_sym_PLUS_PLUS] = ACTIONS(1495), - [anon_sym_DASH_DASH] = ACTIONS(1495), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(1485), + [anon_sym_TILDE] = ACTIONS(1485), + [anon_sym_PLUS_PLUS] = ACTIONS(1485), + [anon_sym_DASH_DASH] = ACTIONS(1485), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1493), - [anon_sym_DASH] = ACTIONS(1493), - [anon_sym_STAR] = ACTIONS(905), - [anon_sym_CARET] = ACTIONS(1495), - [anon_sym_AMP] = ACTIONS(1495), + [anon_sym_PLUS] = ACTIONS(1483), + [anon_sym_DASH] = ACTIONS(1483), + [anon_sym_STAR] = ACTIONS(683), + [anon_sym_CARET] = ACTIONS(1485), + [anon_sym_AMP] = ACTIONS(1485), [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(1067), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1079), + [anon_sym_throw] = ACTIONS(1077), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1081), - [anon_sym_DOT_DOT] = ACTIONS(911), + [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), @@ -130965,7 +130851,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(1089), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -130982,86 +130868,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [531] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_argument] = STATE(7027), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(5910), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2247), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5920), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(5061), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3379), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3080), - [sym_postfix_unary_expression] = STATE(3111), - [sym_prefix_unary_expression] = STATE(3111), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6154), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3080), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3111), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3080), - [sym_member_access_expression] = STATE(2484), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3111), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7575), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_declaration_expression] = STATE(6803), - [sym_default_expression] = STATE(3080), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3080), - [sym_typeof_expression] = STATE(3080), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2484), - [sym_literal] = STATE(3080), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2206), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_argument] = STATE(6787), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(5873), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2238), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5904), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(5095), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3468), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3102), + [sym_postfix_unary_expression] = STATE(3079), + [sym_prefix_unary_expression] = STATE(3079), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6134), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3102), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3079), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3102), + [sym_member_access_expression] = STATE(2472), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3079), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7309), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_declaration_expression] = STATE(6902), + [sym_default_expression] = STATE(3102), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3102), + [sym_typeof_expression] = STATE(3102), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2472), + [sym_literal] = STATE(3102), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2207), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(531), [sym_preproc_endregion] = STATE(531), [sym_preproc_line] = STATE(531), @@ -131071,50 +130957,50 @@ 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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1481), - [anon_sym_LPAREN] = ACTIONS(895), - [anon_sym_RPAREN] = ACTIONS(2657), - [anon_sym_ref] = ACTIONS(2659), - [anon_sym_LBRACE] = ACTIONS(1487), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1479), + [anon_sym_RBRACK] = ACTIONS(2659), + [anon_sym_LPAREN] = ACTIONS(659), + [anon_sym_ref] = ACTIONS(2621), + [anon_sym_LBRACE] = ACTIONS(1481), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1061), - [anon_sym_in] = ACTIONS(1065), - [anon_sym_out] = ACTIONS(1065), + [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(1067), - [anon_sym_BANG] = ACTIONS(1495), - [anon_sym_TILDE] = ACTIONS(1495), - [anon_sym_PLUS_PLUS] = ACTIONS(1495), - [anon_sym_DASH_DASH] = ACTIONS(1495), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(1485), + [anon_sym_TILDE] = ACTIONS(1485), + [anon_sym_PLUS_PLUS] = ACTIONS(1485), + [anon_sym_DASH_DASH] = ACTIONS(1485), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1493), - [anon_sym_DASH] = ACTIONS(1493), - [anon_sym_STAR] = ACTIONS(905), - [anon_sym_CARET] = ACTIONS(1495), - [anon_sym_AMP] = ACTIONS(1495), + [anon_sym_PLUS] = ACTIONS(1483), + [anon_sym_DASH] = ACTIONS(1483), + [anon_sym_STAR] = ACTIONS(683), + [anon_sym_CARET] = ACTIONS(1485), + [anon_sym_AMP] = ACTIONS(1485), [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(1067), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1079), + [anon_sym_throw] = ACTIONS(1077), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1081), - [anon_sym_DOT_DOT] = ACTIONS(911), + [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), @@ -131139,7 +131025,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(1089), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -131156,86 +131042,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [532] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_argument] = STATE(6957), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(5910), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2247), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5920), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(5061), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3379), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3080), - [sym_postfix_unary_expression] = STATE(3111), - [sym_prefix_unary_expression] = STATE(3111), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6154), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3080), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3111), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3080), - [sym_member_access_expression] = STATE(2484), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3111), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7575), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_declaration_expression] = STATE(6803), - [sym_default_expression] = STATE(3080), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3080), - [sym_typeof_expression] = STATE(3080), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2484), - [sym_literal] = STATE(3080), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2206), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_argument] = STATE(6787), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(5873), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2238), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5904), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(5095), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3468), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3102), + [sym_postfix_unary_expression] = STATE(3079), + [sym_prefix_unary_expression] = STATE(3079), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6134), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3102), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3079), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3102), + [sym_member_access_expression] = STATE(2472), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3079), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7309), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_declaration_expression] = STATE(6902), + [sym_default_expression] = STATE(3102), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3102), + [sym_typeof_expression] = STATE(3102), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2472), + [sym_literal] = STATE(3102), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2207), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(532), [sym_preproc_endregion] = STATE(532), [sym_preproc_line] = STATE(532), @@ -131245,50 +131131,50 @@ 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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1481), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1479), [anon_sym_RBRACK] = ACTIONS(2661), - [anon_sym_LPAREN] = ACTIONS(895), - [anon_sym_ref] = ACTIONS(2623), - [anon_sym_LBRACE] = ACTIONS(1487), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_LPAREN] = ACTIONS(659), + [anon_sym_ref] = ACTIONS(2621), + [anon_sym_LBRACE] = ACTIONS(1481), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1061), - [anon_sym_in] = ACTIONS(1065), - [anon_sym_out] = ACTIONS(1065), + [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(1067), - [anon_sym_BANG] = ACTIONS(1495), - [anon_sym_TILDE] = ACTIONS(1495), - [anon_sym_PLUS_PLUS] = ACTIONS(1495), - [anon_sym_DASH_DASH] = ACTIONS(1495), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(1485), + [anon_sym_TILDE] = ACTIONS(1485), + [anon_sym_PLUS_PLUS] = ACTIONS(1485), + [anon_sym_DASH_DASH] = ACTIONS(1485), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1493), - [anon_sym_DASH] = ACTIONS(1493), - [anon_sym_STAR] = ACTIONS(905), - [anon_sym_CARET] = ACTIONS(1495), - [anon_sym_AMP] = ACTIONS(1495), + [anon_sym_PLUS] = ACTIONS(1483), + [anon_sym_DASH] = ACTIONS(1483), + [anon_sym_STAR] = ACTIONS(683), + [anon_sym_CARET] = ACTIONS(1485), + [anon_sym_AMP] = ACTIONS(1485), [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(1067), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1079), + [anon_sym_throw] = ACTIONS(1077), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1081), - [anon_sym_DOT_DOT] = ACTIONS(911), + [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), @@ -131313,7 +131199,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(1089), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -131330,86 +131216,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [533] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_argument] = STATE(6957), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(5910), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2247), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5920), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(5061), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3379), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3080), - [sym_postfix_unary_expression] = STATE(3111), - [sym_prefix_unary_expression] = STATE(3111), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6154), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3080), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3111), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3080), - [sym_member_access_expression] = STATE(2484), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3111), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7575), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_declaration_expression] = STATE(6803), - [sym_default_expression] = STATE(3080), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3080), - [sym_typeof_expression] = STATE(3080), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2484), - [sym_literal] = STATE(3080), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2206), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_argument] = STATE(6861), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(5873), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2238), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5904), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(5095), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3468), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3102), + [sym_postfix_unary_expression] = STATE(3079), + [sym_prefix_unary_expression] = STATE(3079), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6134), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3102), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3079), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3102), + [sym_member_access_expression] = STATE(2472), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3079), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7309), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_declaration_expression] = STATE(6902), + [sym_default_expression] = STATE(3102), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3102), + [sym_typeof_expression] = STATE(3102), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2472), + [sym_literal] = STATE(3102), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2207), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(533), [sym_preproc_endregion] = STATE(533), [sym_preproc_line] = STATE(533), @@ -131419,50 +131305,50 @@ 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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1481), - [anon_sym_RBRACK] = ACTIONS(2663), - [anon_sym_LPAREN] = ACTIONS(895), - [anon_sym_ref] = ACTIONS(2623), - [anon_sym_LBRACE] = ACTIONS(1487), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1479), + [anon_sym_LPAREN] = ACTIONS(659), + [anon_sym_RPAREN] = ACTIONS(2653), + [anon_sym_ref] = ACTIONS(2657), + [anon_sym_LBRACE] = ACTIONS(1481), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1061), - [anon_sym_in] = ACTIONS(1065), - [anon_sym_out] = ACTIONS(1065), + [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(1067), - [anon_sym_BANG] = ACTIONS(1495), - [anon_sym_TILDE] = ACTIONS(1495), - [anon_sym_PLUS_PLUS] = ACTIONS(1495), - [anon_sym_DASH_DASH] = ACTIONS(1495), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(1485), + [anon_sym_TILDE] = ACTIONS(1485), + [anon_sym_PLUS_PLUS] = ACTIONS(1485), + [anon_sym_DASH_DASH] = ACTIONS(1485), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1493), - [anon_sym_DASH] = ACTIONS(1493), - [anon_sym_STAR] = ACTIONS(905), - [anon_sym_CARET] = ACTIONS(1495), - [anon_sym_AMP] = ACTIONS(1495), + [anon_sym_PLUS] = ACTIONS(1483), + [anon_sym_DASH] = ACTIONS(1483), + [anon_sym_STAR] = ACTIONS(683), + [anon_sym_CARET] = ACTIONS(1485), + [anon_sym_AMP] = ACTIONS(1485), [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(1067), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1079), + [anon_sym_throw] = ACTIONS(1077), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1081), - [anon_sym_DOT_DOT] = ACTIONS(911), + [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), @@ -131487,7 +131373,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(1089), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -131504,86 +131390,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [534] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_argument] = STATE(6947), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(5910), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2247), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5920), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(5061), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3379), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3080), - [sym_postfix_unary_expression] = STATE(3111), - [sym_prefix_unary_expression] = STATE(3111), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6154), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3080), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3111), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3080), - [sym_member_access_expression] = STATE(2484), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3111), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7575), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_declaration_expression] = STATE(6803), - [sym_default_expression] = STATE(3080), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3080), - [sym_typeof_expression] = STATE(3080), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2484), - [sym_literal] = STATE(3080), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2206), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_argument] = STATE(6787), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(5873), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2238), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5904), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(5095), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3468), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3102), + [sym_postfix_unary_expression] = STATE(3079), + [sym_prefix_unary_expression] = STATE(3079), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6134), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3102), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3079), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3102), + [sym_member_access_expression] = STATE(2472), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3079), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7309), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_declaration_expression] = STATE(6902), + [sym_default_expression] = STATE(3102), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3102), + [sym_typeof_expression] = STATE(3102), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2472), + [sym_literal] = STATE(3102), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2207), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(534), [sym_preproc_endregion] = STATE(534), [sym_preproc_line] = STATE(534), @@ -131593,50 +131479,50 @@ 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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1481), - [anon_sym_LPAREN] = ACTIONS(895), - [anon_sym_RPAREN] = ACTIONS(2645), - [anon_sym_ref] = ACTIONS(2659), - [anon_sym_LBRACE] = ACTIONS(1487), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1479), + [anon_sym_RBRACK] = ACTIONS(2663), + [anon_sym_LPAREN] = ACTIONS(659), + [anon_sym_ref] = ACTIONS(2621), + [anon_sym_LBRACE] = ACTIONS(1481), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1061), - [anon_sym_in] = ACTIONS(1065), - [anon_sym_out] = ACTIONS(1065), + [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(1067), - [anon_sym_BANG] = ACTIONS(1495), - [anon_sym_TILDE] = ACTIONS(1495), - [anon_sym_PLUS_PLUS] = ACTIONS(1495), - [anon_sym_DASH_DASH] = ACTIONS(1495), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(1485), + [anon_sym_TILDE] = ACTIONS(1485), + [anon_sym_PLUS_PLUS] = ACTIONS(1485), + [anon_sym_DASH_DASH] = ACTIONS(1485), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1493), - [anon_sym_DASH] = ACTIONS(1493), - [anon_sym_STAR] = ACTIONS(905), - [anon_sym_CARET] = ACTIONS(1495), - [anon_sym_AMP] = ACTIONS(1495), + [anon_sym_PLUS] = ACTIONS(1483), + [anon_sym_DASH] = ACTIONS(1483), + [anon_sym_STAR] = ACTIONS(683), + [anon_sym_CARET] = ACTIONS(1485), + [anon_sym_AMP] = ACTIONS(1485), [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(1067), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1079), + [anon_sym_throw] = ACTIONS(1077), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1081), - [anon_sym_DOT_DOT] = ACTIONS(911), + [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), @@ -131661,7 +131547,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(1089), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -131678,86 +131564,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [535] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_argument] = STATE(6957), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(5910), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2247), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5920), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(5061), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3379), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3080), - [sym_postfix_unary_expression] = STATE(3111), - [sym_prefix_unary_expression] = STATE(3111), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6154), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3080), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3111), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3080), - [sym_member_access_expression] = STATE(2484), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3111), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7575), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_declaration_expression] = STATE(6803), - [sym_default_expression] = STATE(3080), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3080), - [sym_typeof_expression] = STATE(3080), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2484), - [sym_literal] = STATE(3080), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2206), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_argument] = STATE(6787), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(5873), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2238), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5904), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(5095), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3468), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3102), + [sym_postfix_unary_expression] = STATE(3079), + [sym_prefix_unary_expression] = STATE(3079), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6134), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3102), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3079), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3102), + [sym_member_access_expression] = STATE(2472), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3079), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7309), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_declaration_expression] = STATE(6902), + [sym_default_expression] = STATE(3102), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3102), + [sym_typeof_expression] = STATE(3102), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2472), + [sym_literal] = STATE(3102), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2207), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(535), [sym_preproc_endregion] = STATE(535), [sym_preproc_line] = STATE(535), @@ -131767,50 +131653,50 @@ 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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1481), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1479), [anon_sym_RBRACK] = ACTIONS(2665), - [anon_sym_LPAREN] = ACTIONS(895), - [anon_sym_ref] = ACTIONS(2623), - [anon_sym_LBRACE] = ACTIONS(1487), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_LPAREN] = ACTIONS(659), + [anon_sym_ref] = ACTIONS(2621), + [anon_sym_LBRACE] = ACTIONS(1481), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1061), - [anon_sym_in] = ACTIONS(1065), - [anon_sym_out] = ACTIONS(1065), + [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(1067), - [anon_sym_BANG] = ACTIONS(1495), - [anon_sym_TILDE] = ACTIONS(1495), - [anon_sym_PLUS_PLUS] = ACTIONS(1495), - [anon_sym_DASH_DASH] = ACTIONS(1495), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(1485), + [anon_sym_TILDE] = ACTIONS(1485), + [anon_sym_PLUS_PLUS] = ACTIONS(1485), + [anon_sym_DASH_DASH] = ACTIONS(1485), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1493), - [anon_sym_DASH] = ACTIONS(1493), - [anon_sym_STAR] = ACTIONS(905), - [anon_sym_CARET] = ACTIONS(1495), - [anon_sym_AMP] = ACTIONS(1495), + [anon_sym_PLUS] = ACTIONS(1483), + [anon_sym_DASH] = ACTIONS(1483), + [anon_sym_STAR] = ACTIONS(683), + [anon_sym_CARET] = ACTIONS(1485), + [anon_sym_AMP] = ACTIONS(1485), [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(1067), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1079), + [anon_sym_throw] = ACTIONS(1077), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1081), - [anon_sym_DOT_DOT] = ACTIONS(911), + [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), @@ -131835,7 +131721,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(1089), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -131852,86 +131738,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [536] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_argument] = STATE(6957), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(5910), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2247), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5920), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(5061), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3379), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3080), - [sym_postfix_unary_expression] = STATE(3111), - [sym_prefix_unary_expression] = STATE(3111), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6154), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3080), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3111), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3080), - [sym_member_access_expression] = STATE(2484), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3111), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7575), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_declaration_expression] = STATE(6803), - [sym_default_expression] = STATE(3080), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3080), - [sym_typeof_expression] = STATE(3080), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2484), - [sym_literal] = STATE(3080), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2206), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_argument] = STATE(6787), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(5873), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2238), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5904), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(5095), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3468), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3102), + [sym_postfix_unary_expression] = STATE(3079), + [sym_prefix_unary_expression] = STATE(3079), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6134), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3102), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3079), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3102), + [sym_member_access_expression] = STATE(2472), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3079), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7309), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_declaration_expression] = STATE(6902), + [sym_default_expression] = STATE(3102), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3102), + [sym_typeof_expression] = STATE(3102), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2472), + [sym_literal] = STATE(3102), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2207), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(536), [sym_preproc_endregion] = STATE(536), [sym_preproc_line] = STATE(536), @@ -131941,50 +131827,50 @@ 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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1481), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1479), [anon_sym_RBRACK] = ACTIONS(2667), - [anon_sym_LPAREN] = ACTIONS(895), - [anon_sym_ref] = ACTIONS(2623), - [anon_sym_LBRACE] = ACTIONS(1487), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_LPAREN] = ACTIONS(659), + [anon_sym_ref] = ACTIONS(2621), + [anon_sym_LBRACE] = ACTIONS(1481), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1061), - [anon_sym_in] = ACTIONS(1065), - [anon_sym_out] = ACTIONS(1065), + [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(1067), - [anon_sym_BANG] = ACTIONS(1495), - [anon_sym_TILDE] = ACTIONS(1495), - [anon_sym_PLUS_PLUS] = ACTIONS(1495), - [anon_sym_DASH_DASH] = ACTIONS(1495), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(1485), + [anon_sym_TILDE] = ACTIONS(1485), + [anon_sym_PLUS_PLUS] = ACTIONS(1485), + [anon_sym_DASH_DASH] = ACTIONS(1485), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1493), - [anon_sym_DASH] = ACTIONS(1493), - [anon_sym_STAR] = ACTIONS(905), - [anon_sym_CARET] = ACTIONS(1495), - [anon_sym_AMP] = ACTIONS(1495), + [anon_sym_PLUS] = ACTIONS(1483), + [anon_sym_DASH] = ACTIONS(1483), + [anon_sym_STAR] = ACTIONS(683), + [anon_sym_CARET] = ACTIONS(1485), + [anon_sym_AMP] = ACTIONS(1485), [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(1067), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1079), + [anon_sym_throw] = ACTIONS(1077), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1081), - [anon_sym_DOT_DOT] = ACTIONS(911), + [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), @@ -132009,7 +131895,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(1089), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -132026,86 +131912,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [537] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(5160), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2204), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(4400), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3520), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3080), - [sym_postfix_unary_expression] = STATE(3111), - [sym_prefix_unary_expression] = STATE(3111), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6154), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3080), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3111), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3080), - [sym_member_access_expression] = STATE(2484), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3111), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7530), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(3080), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3080), - [sym_typeof_expression] = STATE(3080), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2484), - [sym_literal] = STATE(3080), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_else_in_expression] = STATE(7358), - [sym_preproc_elif_in_expression] = STATE(7358), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_argument] = STATE(6787), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(5873), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2238), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5904), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(5095), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3468), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3102), + [sym_postfix_unary_expression] = STATE(3079), + [sym_prefix_unary_expression] = STATE(3079), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6134), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3102), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3079), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3102), + [sym_member_access_expression] = STATE(2472), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3079), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7309), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_declaration_expression] = STATE(6902), + [sym_default_expression] = STATE(3102), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3102), + [sym_typeof_expression] = STATE(3102), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2472), + [sym_literal] = STATE(3102), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2207), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(537), [sym_preproc_endregion] = STATE(537), [sym_preproc_line] = STATE(537), @@ -132115,47 +132001,50 @@ 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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1481), - [anon_sym_LPAREN] = ACTIONS(43), - [anon_sym_ref] = ACTIONS(661), - [anon_sym_LBRACE] = ACTIONS(1487), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1479), + [anon_sym_RBRACK] = ACTIONS(2669), + [anon_sym_LPAREN] = ACTIONS(659), + [anon_sym_ref] = ACTIONS(2621), + [anon_sym_LBRACE] = ACTIONS(1481), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1061), + [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(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_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(1485), + [anon_sym_TILDE] = ACTIONS(1485), + [anon_sym_PLUS_PLUS] = ACTIONS(1485), + [anon_sym_DASH_DASH] = ACTIONS(1485), [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_PLUS] = ACTIONS(1483), + [anon_sym_DASH] = ACTIONS(1483), + [anon_sym_STAR] = ACTIONS(683), + [anon_sym_CARET] = ACTIONS(1485), + [anon_sym_AMP] = ACTIONS(1485), [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(1067), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1589), + [anon_sym_throw] = ACTIONS(1077), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1591), - [anon_sym_DOT_DOT] = ACTIONS(123), + [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), @@ -132180,10 +132069,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(1089), - [aux_sym_preproc_if_token3] = ACTIONS(2669), - [aux_sym_preproc_else_token1] = ACTIONS(2671), - [aux_sym_preproc_elif_token1] = ACTIONS(2673), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -132200,86 +132086,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [538] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_argument] = STATE(6957), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(5910), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2247), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5920), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(5061), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3379), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3080), - [sym_postfix_unary_expression] = STATE(3111), - [sym_prefix_unary_expression] = STATE(3111), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6154), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3080), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3111), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3080), - [sym_member_access_expression] = STATE(2484), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3111), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7575), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_declaration_expression] = STATE(6803), - [sym_default_expression] = STATE(3080), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3080), - [sym_typeof_expression] = STATE(3080), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2484), - [sym_literal] = STATE(3080), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2206), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_argument] = STATE(6787), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(5873), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2238), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5904), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(5095), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3468), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3102), + [sym_postfix_unary_expression] = STATE(3079), + [sym_prefix_unary_expression] = STATE(3079), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6134), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3102), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3079), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3102), + [sym_member_access_expression] = STATE(2472), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3079), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7309), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_declaration_expression] = STATE(6902), + [sym_default_expression] = STATE(3102), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3102), + [sym_typeof_expression] = STATE(3102), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2472), + [sym_literal] = STATE(3102), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2207), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(538), [sym_preproc_endregion] = STATE(538), [sym_preproc_line] = STATE(538), @@ -132289,50 +132175,50 @@ 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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1481), - [anon_sym_RBRACK] = ACTIONS(2675), - [anon_sym_LPAREN] = ACTIONS(895), - [anon_sym_ref] = ACTIONS(2623), - [anon_sym_LBRACE] = ACTIONS(1487), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1479), + [anon_sym_RBRACK] = ACTIONS(2671), + [anon_sym_LPAREN] = ACTIONS(659), + [anon_sym_ref] = ACTIONS(2621), + [anon_sym_LBRACE] = ACTIONS(1481), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1061), - [anon_sym_in] = ACTIONS(1065), - [anon_sym_out] = ACTIONS(1065), + [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(1067), - [anon_sym_BANG] = ACTIONS(1495), - [anon_sym_TILDE] = ACTIONS(1495), - [anon_sym_PLUS_PLUS] = ACTIONS(1495), - [anon_sym_DASH_DASH] = ACTIONS(1495), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(1485), + [anon_sym_TILDE] = ACTIONS(1485), + [anon_sym_PLUS_PLUS] = ACTIONS(1485), + [anon_sym_DASH_DASH] = ACTIONS(1485), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1493), - [anon_sym_DASH] = ACTIONS(1493), - [anon_sym_STAR] = ACTIONS(905), - [anon_sym_CARET] = ACTIONS(1495), - [anon_sym_AMP] = ACTIONS(1495), + [anon_sym_PLUS] = ACTIONS(1483), + [anon_sym_DASH] = ACTIONS(1483), + [anon_sym_STAR] = ACTIONS(683), + [anon_sym_CARET] = ACTIONS(1485), + [anon_sym_AMP] = ACTIONS(1485), [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(1067), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1079), + [anon_sym_throw] = ACTIONS(1077), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1081), - [anon_sym_DOT_DOT] = ACTIONS(911), + [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), @@ -132357,7 +132243,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(1089), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -132374,86 +132260,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [539] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_argument] = STATE(6957), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(5910), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2247), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5920), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(5061), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3379), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3080), - [sym_postfix_unary_expression] = STATE(3111), - [sym_prefix_unary_expression] = STATE(3111), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6154), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3080), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3111), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3080), - [sym_member_access_expression] = STATE(2484), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3111), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7575), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_declaration_expression] = STATE(6803), - [sym_default_expression] = STATE(3080), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3080), - [sym_typeof_expression] = STATE(3080), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2484), - [sym_literal] = STATE(3080), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2206), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_argument] = STATE(7026), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(5873), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2238), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5904), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(5095), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3468), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3102), + [sym_postfix_unary_expression] = STATE(3079), + [sym_prefix_unary_expression] = STATE(3079), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6134), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3102), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3079), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3102), + [sym_member_access_expression] = STATE(2472), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3079), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7309), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_declaration_expression] = STATE(6902), + [sym_default_expression] = STATE(3102), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3102), + [sym_typeof_expression] = STATE(3102), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2472), + [sym_literal] = STATE(3102), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2207), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(539), [sym_preproc_endregion] = STATE(539), [sym_preproc_line] = STATE(539), @@ -132463,50 +132349,50 @@ 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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1481), - [anon_sym_RBRACK] = ACTIONS(2677), - [anon_sym_LPAREN] = ACTIONS(895), - [anon_sym_ref] = ACTIONS(2623), - [anon_sym_LBRACE] = ACTIONS(1487), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1479), + [anon_sym_LPAREN] = ACTIONS(659), + [anon_sym_RPAREN] = ACTIONS(2651), + [anon_sym_ref] = ACTIONS(2657), + [anon_sym_LBRACE] = ACTIONS(1481), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1061), - [anon_sym_in] = ACTIONS(1065), - [anon_sym_out] = ACTIONS(1065), + [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(1067), - [anon_sym_BANG] = ACTIONS(1495), - [anon_sym_TILDE] = ACTIONS(1495), - [anon_sym_PLUS_PLUS] = ACTIONS(1495), - [anon_sym_DASH_DASH] = ACTIONS(1495), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(1485), + [anon_sym_TILDE] = ACTIONS(1485), + [anon_sym_PLUS_PLUS] = ACTIONS(1485), + [anon_sym_DASH_DASH] = ACTIONS(1485), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1493), - [anon_sym_DASH] = ACTIONS(1493), - [anon_sym_STAR] = ACTIONS(905), - [anon_sym_CARET] = ACTIONS(1495), - [anon_sym_AMP] = ACTIONS(1495), + [anon_sym_PLUS] = ACTIONS(1483), + [anon_sym_DASH] = ACTIONS(1483), + [anon_sym_STAR] = ACTIONS(683), + [anon_sym_CARET] = ACTIONS(1485), + [anon_sym_AMP] = ACTIONS(1485), [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(1067), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1079), + [anon_sym_throw] = ACTIONS(1077), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1081), - [anon_sym_DOT_DOT] = ACTIONS(911), + [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), @@ -132531,7 +132417,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(1089), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -132548,86 +132434,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [540] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_argument] = STATE(6957), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(5910), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2247), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5920), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(5061), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3379), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3080), - [sym_postfix_unary_expression] = STATE(3111), - [sym_prefix_unary_expression] = STATE(3111), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6154), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3080), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3111), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3080), - [sym_member_access_expression] = STATE(2484), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3111), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7575), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_declaration_expression] = STATE(6803), - [sym_default_expression] = STATE(3080), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3080), - [sym_typeof_expression] = STATE(3080), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2484), - [sym_literal] = STATE(3080), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2206), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(5152), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2196), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(4346), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3510), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3102), + [sym_postfix_unary_expression] = STATE(3079), + [sym_prefix_unary_expression] = STATE(3079), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6134), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3102), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3079), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3102), + [sym_member_access_expression] = STATE(2472), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3079), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7425), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(3102), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3102), + [sym_typeof_expression] = STATE(3102), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2472), + [sym_literal] = STATE(3102), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_else_in_expression] = STATE(7594), + [sym_preproc_elif_in_expression] = STATE(7594), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(540), [sym_preproc_endregion] = STATE(540), [sym_preproc_line] = STATE(540), @@ -132637,50 +132523,47 @@ 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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1481), - [anon_sym_RBRACK] = ACTIONS(2679), - [anon_sym_LPAREN] = ACTIONS(895), - [anon_sym_ref] = ACTIONS(2623), - [anon_sym_LBRACE] = ACTIONS(1487), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1479), + [anon_sym_LPAREN] = ACTIONS(43), + [anon_sym_ref] = ACTIONS(715), + [anon_sym_LBRACE] = ACTIONS(1481), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1061), - [anon_sym_in] = ACTIONS(1065), - [anon_sym_out] = ACTIONS(1065), + [anon_sym_new] = ACTIONS(1059), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1067), - [anon_sym_BANG] = ACTIONS(1495), - [anon_sym_TILDE] = ACTIONS(1495), - [anon_sym_PLUS_PLUS] = ACTIONS(1495), - [anon_sym_DASH_DASH] = ACTIONS(1495), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(1525), + [anon_sym_TILDE] = ACTIONS(1525), + [anon_sym_PLUS_PLUS] = ACTIONS(1525), + [anon_sym_DASH_DASH] = ACTIONS(1525), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1493), - [anon_sym_DASH] = ACTIONS(1493), - [anon_sym_STAR] = ACTIONS(905), - [anon_sym_CARET] = ACTIONS(1495), - [anon_sym_AMP] = ACTIONS(1495), + [anon_sym_PLUS] = ACTIONS(1523), + [anon_sym_DASH] = ACTIONS(1523), + [anon_sym_STAR] = ACTIONS(81), + [anon_sym_CARET] = ACTIONS(1525), + [anon_sym_AMP] = ACTIONS(1525), [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(1067), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1079), + [anon_sym_throw] = ACTIONS(1527), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1081), - [anon_sym_DOT_DOT] = ACTIONS(911), + [anon_sym_await] = ACTIONS(1529), + [anon_sym_DOT_DOT] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -132705,7 +132588,10 @@ 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(1089), + [aux_sym_preproc_if_token1] = ACTIONS(1087), + [aux_sym_preproc_if_token3] = ACTIONS(2673), + [aux_sym_preproc_else_token1] = ACTIONS(2675), + [aux_sym_preproc_elif_token1] = ACTIONS(2677), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -132722,86 +132608,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [541] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_argument] = STATE(6957), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(5910), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2247), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5920), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(5061), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3379), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3080), - [sym_postfix_unary_expression] = STATE(3111), - [sym_prefix_unary_expression] = STATE(3111), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6154), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3080), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3111), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3080), - [sym_member_access_expression] = STATE(2484), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3111), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7575), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_declaration_expression] = STATE(6803), - [sym_default_expression] = STATE(3080), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3080), - [sym_typeof_expression] = STATE(3080), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2484), - [sym_literal] = STATE(3080), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2206), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_argument] = STATE(6787), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(5873), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2238), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5904), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(5095), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3468), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3102), + [sym_postfix_unary_expression] = STATE(3079), + [sym_prefix_unary_expression] = STATE(3079), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6134), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3102), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3079), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3102), + [sym_member_access_expression] = STATE(2472), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3079), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7309), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_declaration_expression] = STATE(6902), + [sym_default_expression] = STATE(3102), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3102), + [sym_typeof_expression] = STATE(3102), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2472), + [sym_literal] = STATE(3102), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2207), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(541), [sym_preproc_endregion] = STATE(541), [sym_preproc_line] = STATE(541), @@ -132811,50 +132697,50 @@ 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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1481), - [anon_sym_RBRACK] = ACTIONS(2681), - [anon_sym_LPAREN] = ACTIONS(895), - [anon_sym_ref] = ACTIONS(2623), - [anon_sym_LBRACE] = ACTIONS(1487), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1479), + [anon_sym_RBRACK] = ACTIONS(2679), + [anon_sym_LPAREN] = ACTIONS(659), + [anon_sym_ref] = ACTIONS(2621), + [anon_sym_LBRACE] = ACTIONS(1481), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1061), - [anon_sym_in] = ACTIONS(1065), - [anon_sym_out] = ACTIONS(1065), + [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(1067), - [anon_sym_BANG] = ACTIONS(1495), - [anon_sym_TILDE] = ACTIONS(1495), - [anon_sym_PLUS_PLUS] = ACTIONS(1495), - [anon_sym_DASH_DASH] = ACTIONS(1495), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(1485), + [anon_sym_TILDE] = ACTIONS(1485), + [anon_sym_PLUS_PLUS] = ACTIONS(1485), + [anon_sym_DASH_DASH] = ACTIONS(1485), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1493), - [anon_sym_DASH] = ACTIONS(1493), - [anon_sym_STAR] = ACTIONS(905), - [anon_sym_CARET] = ACTIONS(1495), - [anon_sym_AMP] = ACTIONS(1495), + [anon_sym_PLUS] = ACTIONS(1483), + [anon_sym_DASH] = ACTIONS(1483), + [anon_sym_STAR] = ACTIONS(683), + [anon_sym_CARET] = ACTIONS(1485), + [anon_sym_AMP] = ACTIONS(1485), [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(1067), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1079), + [anon_sym_throw] = ACTIONS(1077), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1081), - [anon_sym_DOT_DOT] = ACTIONS(911), + [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), @@ -132879,7 +132765,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(1089), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -132896,86 +132782,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [542] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_argument] = STATE(6941), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(5910), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2247), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5920), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(5061), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3379), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3080), - [sym_postfix_unary_expression] = STATE(3111), - [sym_prefix_unary_expression] = STATE(3111), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6154), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3080), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3111), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3080), - [sym_member_access_expression] = STATE(2484), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3111), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7575), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_declaration_expression] = STATE(6803), - [sym_default_expression] = STATE(3080), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3080), - [sym_typeof_expression] = STATE(3080), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2484), - [sym_literal] = STATE(3080), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2206), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_argument] = STATE(6787), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(5873), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2238), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5904), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(5095), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3468), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3102), + [sym_postfix_unary_expression] = STATE(3079), + [sym_prefix_unary_expression] = STATE(3079), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6134), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3102), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3079), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3102), + [sym_member_access_expression] = STATE(2472), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3079), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7309), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_declaration_expression] = STATE(6902), + [sym_default_expression] = STATE(3102), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3102), + [sym_typeof_expression] = STATE(3102), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2472), + [sym_literal] = STATE(3102), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2207), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(542), [sym_preproc_endregion] = STATE(542), [sym_preproc_line] = STATE(542), @@ -132985,50 +132871,50 @@ 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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1481), - [anon_sym_LPAREN] = ACTIONS(895), - [anon_sym_RPAREN] = ACTIONS(2651), - [anon_sym_ref] = ACTIONS(2659), - [anon_sym_LBRACE] = ACTIONS(1487), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1479), + [anon_sym_RBRACK] = ACTIONS(2681), + [anon_sym_LPAREN] = ACTIONS(659), + [anon_sym_ref] = ACTIONS(2621), + [anon_sym_LBRACE] = ACTIONS(1481), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1061), - [anon_sym_in] = ACTIONS(1065), - [anon_sym_out] = ACTIONS(1065), + [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(1067), - [anon_sym_BANG] = ACTIONS(1495), - [anon_sym_TILDE] = ACTIONS(1495), - [anon_sym_PLUS_PLUS] = ACTIONS(1495), - [anon_sym_DASH_DASH] = ACTIONS(1495), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(1485), + [anon_sym_TILDE] = ACTIONS(1485), + [anon_sym_PLUS_PLUS] = ACTIONS(1485), + [anon_sym_DASH_DASH] = ACTIONS(1485), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1493), - [anon_sym_DASH] = ACTIONS(1493), - [anon_sym_STAR] = ACTIONS(905), - [anon_sym_CARET] = ACTIONS(1495), - [anon_sym_AMP] = ACTIONS(1495), + [anon_sym_PLUS] = ACTIONS(1483), + [anon_sym_DASH] = ACTIONS(1483), + [anon_sym_STAR] = ACTIONS(683), + [anon_sym_CARET] = ACTIONS(1485), + [anon_sym_AMP] = ACTIONS(1485), [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(1067), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1079), + [anon_sym_throw] = ACTIONS(1077), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1081), - [anon_sym_DOT_DOT] = ACTIONS(911), + [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), @@ -133053,7 +132939,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(1089), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -133070,86 +132956,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [543] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_argument] = STATE(6957), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(5910), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2247), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5920), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(5061), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3379), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3080), - [sym_postfix_unary_expression] = STATE(3111), - [sym_prefix_unary_expression] = STATE(3111), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6154), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3080), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3111), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3080), - [sym_member_access_expression] = STATE(2484), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3111), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7575), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_declaration_expression] = STATE(6803), - [sym_default_expression] = STATE(3080), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3080), - [sym_typeof_expression] = STATE(3080), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2484), - [sym_literal] = STATE(3080), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2206), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_argument] = STATE(6787), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(5873), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2238), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5904), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(5095), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3468), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3102), + [sym_postfix_unary_expression] = STATE(3079), + [sym_prefix_unary_expression] = STATE(3079), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6134), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3102), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3079), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3102), + [sym_member_access_expression] = STATE(2472), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3079), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7309), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_declaration_expression] = STATE(6902), + [sym_default_expression] = STATE(3102), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3102), + [sym_typeof_expression] = STATE(3102), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2472), + [sym_literal] = STATE(3102), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2207), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(543), [sym_preproc_endregion] = STATE(543), [sym_preproc_line] = STATE(543), @@ -133159,50 +133045,50 @@ 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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1481), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1479), [anon_sym_RBRACK] = ACTIONS(2683), - [anon_sym_LPAREN] = ACTIONS(895), - [anon_sym_ref] = ACTIONS(2623), - [anon_sym_LBRACE] = ACTIONS(1487), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_LPAREN] = ACTIONS(659), + [anon_sym_ref] = ACTIONS(2621), + [anon_sym_LBRACE] = ACTIONS(1481), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1061), - [anon_sym_in] = ACTIONS(1065), - [anon_sym_out] = ACTIONS(1065), + [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(1067), - [anon_sym_BANG] = ACTIONS(1495), - [anon_sym_TILDE] = ACTIONS(1495), - [anon_sym_PLUS_PLUS] = ACTIONS(1495), - [anon_sym_DASH_DASH] = ACTIONS(1495), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(1485), + [anon_sym_TILDE] = ACTIONS(1485), + [anon_sym_PLUS_PLUS] = ACTIONS(1485), + [anon_sym_DASH_DASH] = ACTIONS(1485), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1493), - [anon_sym_DASH] = ACTIONS(1493), - [anon_sym_STAR] = ACTIONS(905), - [anon_sym_CARET] = ACTIONS(1495), - [anon_sym_AMP] = ACTIONS(1495), + [anon_sym_PLUS] = ACTIONS(1483), + [anon_sym_DASH] = ACTIONS(1483), + [anon_sym_STAR] = ACTIONS(683), + [anon_sym_CARET] = ACTIONS(1485), + [anon_sym_AMP] = ACTIONS(1485), [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(1067), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1079), + [anon_sym_throw] = ACTIONS(1077), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1081), - [anon_sym_DOT_DOT] = ACTIONS(911), + [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), @@ -133227,7 +133113,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(1089), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -133244,86 +133130,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [544] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_argument] = STATE(6957), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(5910), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2247), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5920), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(5061), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3379), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3080), - [sym_postfix_unary_expression] = STATE(3111), - [sym_prefix_unary_expression] = STATE(3111), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6154), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3080), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3111), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3080), - [sym_member_access_expression] = STATE(2484), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3111), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7575), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_declaration_expression] = STATE(6803), - [sym_default_expression] = STATE(3080), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3080), - [sym_typeof_expression] = STATE(3080), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2484), - [sym_literal] = STATE(3080), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2206), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_argument] = STATE(6787), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(5873), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2238), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5904), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(5095), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3468), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3102), + [sym_postfix_unary_expression] = STATE(3079), + [sym_prefix_unary_expression] = STATE(3079), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6134), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3102), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3079), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3102), + [sym_member_access_expression] = STATE(2472), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3079), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7309), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_declaration_expression] = STATE(6902), + [sym_default_expression] = STATE(3102), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3102), + [sym_typeof_expression] = STATE(3102), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2472), + [sym_literal] = STATE(3102), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2207), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(544), [sym_preproc_endregion] = STATE(544), [sym_preproc_line] = STATE(544), @@ -133333,50 +133219,50 @@ 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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1481), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1479), [anon_sym_RBRACK] = ACTIONS(2685), - [anon_sym_LPAREN] = ACTIONS(895), - [anon_sym_ref] = ACTIONS(2623), - [anon_sym_LBRACE] = ACTIONS(1487), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_LPAREN] = ACTIONS(659), + [anon_sym_ref] = ACTIONS(2621), + [anon_sym_LBRACE] = ACTIONS(1481), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1061), - [anon_sym_in] = ACTIONS(1065), - [anon_sym_out] = ACTIONS(1065), + [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(1067), - [anon_sym_BANG] = ACTIONS(1495), - [anon_sym_TILDE] = ACTIONS(1495), - [anon_sym_PLUS_PLUS] = ACTIONS(1495), - [anon_sym_DASH_DASH] = ACTIONS(1495), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(1485), + [anon_sym_TILDE] = ACTIONS(1485), + [anon_sym_PLUS_PLUS] = ACTIONS(1485), + [anon_sym_DASH_DASH] = ACTIONS(1485), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1493), - [anon_sym_DASH] = ACTIONS(1493), - [anon_sym_STAR] = ACTIONS(905), - [anon_sym_CARET] = ACTIONS(1495), - [anon_sym_AMP] = ACTIONS(1495), + [anon_sym_PLUS] = ACTIONS(1483), + [anon_sym_DASH] = ACTIONS(1483), + [anon_sym_STAR] = ACTIONS(683), + [anon_sym_CARET] = ACTIONS(1485), + [anon_sym_AMP] = ACTIONS(1485), [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(1067), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1079), + [anon_sym_throw] = ACTIONS(1077), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1081), - [anon_sym_DOT_DOT] = ACTIONS(911), + [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), @@ -133401,7 +133287,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(1089), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -133418,86 +133304,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [545] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_argument] = STATE(6802), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(5910), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2247), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5920), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(5061), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3379), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3080), - [sym_postfix_unary_expression] = STATE(3111), - [sym_prefix_unary_expression] = STATE(3111), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6154), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3080), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3111), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3080), - [sym_member_access_expression] = STATE(2484), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3111), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7575), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_declaration_expression] = STATE(6803), - [sym_default_expression] = STATE(3080), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3080), - [sym_typeof_expression] = STATE(3080), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2484), - [sym_literal] = STATE(3080), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2206), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_argument] = STATE(6831), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(5873), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2238), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5904), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(5095), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3468), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3102), + [sym_postfix_unary_expression] = STATE(3079), + [sym_prefix_unary_expression] = STATE(3079), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6134), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3102), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3079), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3102), + [sym_member_access_expression] = STATE(2472), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3079), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7309), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_declaration_expression] = STATE(6902), + [sym_default_expression] = STATE(3102), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3102), + [sym_typeof_expression] = STATE(3102), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2472), + [sym_literal] = STATE(3102), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2207), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(545), [sym_preproc_endregion] = STATE(545), [sym_preproc_line] = STATE(545), @@ -133507,50 +133393,50 @@ 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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1481), - [anon_sym_LPAREN] = ACTIONS(895), - [anon_sym_RPAREN] = ACTIONS(2653), - [anon_sym_ref] = ACTIONS(2659), - [anon_sym_LBRACE] = ACTIONS(1487), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1479), + [anon_sym_LPAREN] = ACTIONS(659), + [anon_sym_RPAREN] = ACTIONS(2655), + [anon_sym_ref] = ACTIONS(2657), + [anon_sym_LBRACE] = ACTIONS(1481), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1061), - [anon_sym_in] = ACTIONS(1065), - [anon_sym_out] = ACTIONS(1065), + [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(1067), - [anon_sym_BANG] = ACTIONS(1495), - [anon_sym_TILDE] = ACTIONS(1495), - [anon_sym_PLUS_PLUS] = ACTIONS(1495), - [anon_sym_DASH_DASH] = ACTIONS(1495), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(1485), + [anon_sym_TILDE] = ACTIONS(1485), + [anon_sym_PLUS_PLUS] = ACTIONS(1485), + [anon_sym_DASH_DASH] = ACTIONS(1485), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1493), - [anon_sym_DASH] = ACTIONS(1493), - [anon_sym_STAR] = ACTIONS(905), - [anon_sym_CARET] = ACTIONS(1495), - [anon_sym_AMP] = ACTIONS(1495), + [anon_sym_PLUS] = ACTIONS(1483), + [anon_sym_DASH] = ACTIONS(1483), + [anon_sym_STAR] = ACTIONS(683), + [anon_sym_CARET] = ACTIONS(1485), + [anon_sym_AMP] = ACTIONS(1485), [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(1067), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1079), + [anon_sym_throw] = ACTIONS(1077), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1081), - [anon_sym_DOT_DOT] = ACTIONS(911), + [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), @@ -133575,7 +133461,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(1089), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -133592,86 +133478,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [546] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_argument] = STATE(6957), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(5910), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2247), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5920), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(5061), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3379), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3080), - [sym_postfix_unary_expression] = STATE(3111), - [sym_prefix_unary_expression] = STATE(3111), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6154), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3080), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3111), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3080), - [sym_member_access_expression] = STATE(2484), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3111), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7575), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_declaration_expression] = STATE(6803), - [sym_default_expression] = STATE(3080), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3080), - [sym_typeof_expression] = STATE(3080), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2484), - [sym_literal] = STATE(3080), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2206), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_argument] = STATE(6787), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(5873), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2238), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5904), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(5095), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3468), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3102), + [sym_postfix_unary_expression] = STATE(3079), + [sym_prefix_unary_expression] = STATE(3079), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6134), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3102), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3079), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3102), + [sym_member_access_expression] = STATE(2472), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3079), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7309), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_declaration_expression] = STATE(6902), + [sym_default_expression] = STATE(3102), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3102), + [sym_typeof_expression] = STATE(3102), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2472), + [sym_literal] = STATE(3102), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2207), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(546), [sym_preproc_endregion] = STATE(546), [sym_preproc_line] = STATE(546), @@ -133681,50 +133567,50 @@ 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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1481), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1479), [anon_sym_RBRACK] = ACTIONS(2687), - [anon_sym_LPAREN] = ACTIONS(895), - [anon_sym_ref] = ACTIONS(2623), - [anon_sym_LBRACE] = ACTIONS(1487), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_LPAREN] = ACTIONS(659), + [anon_sym_ref] = ACTIONS(2621), + [anon_sym_LBRACE] = ACTIONS(1481), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1061), - [anon_sym_in] = ACTIONS(1065), - [anon_sym_out] = ACTIONS(1065), + [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(1067), - [anon_sym_BANG] = ACTIONS(1495), - [anon_sym_TILDE] = ACTIONS(1495), - [anon_sym_PLUS_PLUS] = ACTIONS(1495), - [anon_sym_DASH_DASH] = ACTIONS(1495), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(1485), + [anon_sym_TILDE] = ACTIONS(1485), + [anon_sym_PLUS_PLUS] = ACTIONS(1485), + [anon_sym_DASH_DASH] = ACTIONS(1485), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1493), - [anon_sym_DASH] = ACTIONS(1493), - [anon_sym_STAR] = ACTIONS(905), - [anon_sym_CARET] = ACTIONS(1495), - [anon_sym_AMP] = ACTIONS(1495), + [anon_sym_PLUS] = ACTIONS(1483), + [anon_sym_DASH] = ACTIONS(1483), + [anon_sym_STAR] = ACTIONS(683), + [anon_sym_CARET] = ACTIONS(1485), + [anon_sym_AMP] = ACTIONS(1485), [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(1067), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1079), + [anon_sym_throw] = ACTIONS(1077), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1081), - [anon_sym_DOT_DOT] = ACTIONS(911), + [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), @@ -133749,7 +133635,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(1089), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -133766,86 +133652,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [547] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_argument] = STATE(6957), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(5910), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2247), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5920), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(5061), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3379), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3080), - [sym_postfix_unary_expression] = STATE(3111), - [sym_prefix_unary_expression] = STATE(3111), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6154), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3080), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3111), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3080), - [sym_member_access_expression] = STATE(2484), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3111), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7575), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_declaration_expression] = STATE(6803), - [sym_default_expression] = STATE(3080), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3080), - [sym_typeof_expression] = STATE(3080), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2484), - [sym_literal] = STATE(3080), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2206), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_argument] = STATE(6944), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(5873), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2238), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5904), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(5095), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3468), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3102), + [sym_postfix_unary_expression] = STATE(3079), + [sym_prefix_unary_expression] = STATE(3079), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6134), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3102), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3079), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3102), + [sym_member_access_expression] = STATE(2472), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3079), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7309), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_declaration_expression] = STATE(6902), + [sym_default_expression] = STATE(3102), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3102), + [sym_typeof_expression] = STATE(3102), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2472), + [sym_literal] = STATE(3102), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2207), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(547), [sym_preproc_endregion] = STATE(547), [sym_preproc_line] = STATE(547), @@ -133855,50 +133741,50 @@ 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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1481), - [anon_sym_RBRACK] = ACTIONS(2689), - [anon_sym_LPAREN] = ACTIONS(895), - [anon_sym_ref] = ACTIONS(2623), - [anon_sym_LBRACE] = ACTIONS(1487), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1479), + [anon_sym_LPAREN] = ACTIONS(659), + [anon_sym_RPAREN] = ACTIONS(2649), + [anon_sym_ref] = ACTIONS(2657), + [anon_sym_LBRACE] = ACTIONS(1481), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1061), - [anon_sym_in] = ACTIONS(1065), - [anon_sym_out] = ACTIONS(1065), + [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(1067), - [anon_sym_BANG] = ACTIONS(1495), - [anon_sym_TILDE] = ACTIONS(1495), - [anon_sym_PLUS_PLUS] = ACTIONS(1495), - [anon_sym_DASH_DASH] = ACTIONS(1495), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(1485), + [anon_sym_TILDE] = ACTIONS(1485), + [anon_sym_PLUS_PLUS] = ACTIONS(1485), + [anon_sym_DASH_DASH] = ACTIONS(1485), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1493), - [anon_sym_DASH] = ACTIONS(1493), - [anon_sym_STAR] = ACTIONS(905), - [anon_sym_CARET] = ACTIONS(1495), - [anon_sym_AMP] = ACTIONS(1495), + [anon_sym_PLUS] = ACTIONS(1483), + [anon_sym_DASH] = ACTIONS(1483), + [anon_sym_STAR] = ACTIONS(683), + [anon_sym_CARET] = ACTIONS(1485), + [anon_sym_AMP] = ACTIONS(1485), [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(1067), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1079), + [anon_sym_throw] = ACTIONS(1077), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1081), - [anon_sym_DOT_DOT] = ACTIONS(911), + [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), @@ -133923,7 +133809,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(1089), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -133940,86 +133826,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [548] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_argument] = STATE(6754), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(5910), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2247), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5920), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(5061), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3379), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3080), - [sym_postfix_unary_expression] = STATE(3111), - [sym_prefix_unary_expression] = STATE(3111), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6154), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3080), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3111), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3080), - [sym_member_access_expression] = STATE(2484), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3111), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7575), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_declaration_expression] = STATE(6803), - [sym_default_expression] = STATE(3080), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3080), - [sym_typeof_expression] = STATE(3080), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2484), - [sym_literal] = STATE(3080), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2206), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(5873), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2238), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5904), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(4874), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3468), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3102), + [sym_postfix_unary_expression] = STATE(3079), + [sym_prefix_unary_expression] = STATE(3079), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6134), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3102), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3079), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3102), + [sym_member_access_expression] = STATE(2472), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3079), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7309), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_declaration_expression] = STATE(6798), + [sym_default_expression] = STATE(3102), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3102), + [sym_typeof_expression] = STATE(3102), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2472), + [sym_literal] = STATE(3102), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(548), [sym_preproc_endregion] = STATE(548), [sym_preproc_line] = STATE(548), @@ -134029,49 +133914,50 @@ 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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1481), - [anon_sym_LPAREN] = ACTIONS(895), - [anon_sym_ref] = ACTIONS(2623), - [anon_sym_LBRACE] = ACTIONS(1487), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1479), + [anon_sym_LPAREN] = ACTIONS(659), + [anon_sym_ref] = ACTIONS(663), + [anon_sym_LBRACE] = ACTIONS(1481), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1061), - [anon_sym_in] = ACTIONS(1065), - [anon_sym_out] = ACTIONS(1065), + [anon_sym_new] = ACTIONS(1059), + [anon_sym_readonly] = ACTIONS(2689), + [anon_sym_in] = ACTIONS(2689), + [anon_sym_out] = ACTIONS(2689), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1067), - [anon_sym_BANG] = ACTIONS(1495), - [anon_sym_TILDE] = ACTIONS(1495), - [anon_sym_PLUS_PLUS] = ACTIONS(1495), - [anon_sym_DASH_DASH] = ACTIONS(1495), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(1485), + [anon_sym_TILDE] = ACTIONS(1485), + [anon_sym_PLUS_PLUS] = ACTIONS(1485), + [anon_sym_DASH_DASH] = ACTIONS(1485), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1493), - [anon_sym_DASH] = ACTIONS(1493), - [anon_sym_STAR] = ACTIONS(905), - [anon_sym_CARET] = ACTIONS(1495), - [anon_sym_AMP] = ACTIONS(1495), + [anon_sym_PLUS] = ACTIONS(1483), + [anon_sym_DASH] = ACTIONS(1483), + [anon_sym_STAR] = ACTIONS(683), + [anon_sym_CARET] = ACTIONS(1485), + [anon_sym_AMP] = ACTIONS(1485), [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(1067), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1079), + [anon_sym_throw] = ACTIONS(1077), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1081), - [anon_sym_DOT_DOT] = ACTIONS(911), + [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), @@ -134096,7 +133982,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(1089), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -134113,86 +133999,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [549] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_argument] = STATE(7273), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(5910), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2247), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5920), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(5168), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3379), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3080), - [sym_postfix_unary_expression] = STATE(3111), - [sym_prefix_unary_expression] = STATE(3111), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6154), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3080), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3111), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3080), - [sym_member_access_expression] = STATE(2484), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3111), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7575), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_declaration_expression] = STATE(6803), - [sym_default_expression] = STATE(3080), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3080), - [sym_typeof_expression] = STATE(3080), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2484), - [sym_literal] = STATE(3080), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2206), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_argument] = STATE(6868), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(5873), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2238), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5904), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(5095), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3468), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3102), + [sym_postfix_unary_expression] = STATE(3079), + [sym_prefix_unary_expression] = STATE(3079), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6134), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3102), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3079), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3102), + [sym_member_access_expression] = STATE(2472), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3079), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7309), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_declaration_expression] = STATE(6902), + [sym_default_expression] = STATE(3102), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3102), + [sym_typeof_expression] = STATE(3102), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2472), + [sym_literal] = STATE(3102), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2207), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(549), [sym_preproc_endregion] = STATE(549), [sym_preproc_line] = STATE(549), @@ -134202,49 +134088,49 @@ 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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1481), - [anon_sym_LPAREN] = ACTIONS(895), - [anon_sym_ref] = ACTIONS(2623), - [anon_sym_LBRACE] = ACTIONS(1487), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1479), + [anon_sym_LPAREN] = ACTIONS(659), + [anon_sym_ref] = ACTIONS(2621), + [anon_sym_LBRACE] = ACTIONS(1481), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1061), - [anon_sym_in] = ACTIONS(1065), - [anon_sym_out] = ACTIONS(1065), + [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(1067), - [anon_sym_BANG] = ACTIONS(1495), - [anon_sym_TILDE] = ACTIONS(1495), - [anon_sym_PLUS_PLUS] = ACTIONS(1495), - [anon_sym_DASH_DASH] = ACTIONS(1495), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(1485), + [anon_sym_TILDE] = ACTIONS(1485), + [anon_sym_PLUS_PLUS] = ACTIONS(1485), + [anon_sym_DASH_DASH] = ACTIONS(1485), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1493), - [anon_sym_DASH] = ACTIONS(1493), - [anon_sym_STAR] = ACTIONS(905), - [anon_sym_CARET] = ACTIONS(1495), - [anon_sym_AMP] = ACTIONS(1495), + [anon_sym_PLUS] = ACTIONS(1483), + [anon_sym_DASH] = ACTIONS(1483), + [anon_sym_STAR] = ACTIONS(683), + [anon_sym_CARET] = ACTIONS(1485), + [anon_sym_AMP] = ACTIONS(1485), [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(1067), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1079), + [anon_sym_throw] = ACTIONS(1077), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1081), - [anon_sym_DOT_DOT] = ACTIONS(911), + [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), @@ -134269,7 +134155,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(1089), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -134286,86 +134172,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [550] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_argument] = STATE(7273), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(5910), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2247), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5920), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(5124), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3379), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3080), - [sym_postfix_unary_expression] = STATE(3111), - [sym_prefix_unary_expression] = STATE(3111), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6154), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3080), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3111), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3080), - [sym_member_access_expression] = STATE(2484), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3111), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7575), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_declaration_expression] = STATE(6803), - [sym_default_expression] = STATE(3080), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3080), - [sym_typeof_expression] = STATE(3080), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2484), - [sym_literal] = STATE(3080), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2206), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_argument] = STATE(6753), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(5873), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2238), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5904), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(5095), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3468), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3102), + [sym_postfix_unary_expression] = STATE(3079), + [sym_prefix_unary_expression] = STATE(3079), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6134), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3102), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3079), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3102), + [sym_member_access_expression] = STATE(2472), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3079), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7309), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_declaration_expression] = STATE(6902), + [sym_default_expression] = STATE(3102), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3102), + [sym_typeof_expression] = STATE(3102), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2472), + [sym_literal] = STATE(3102), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2207), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(550), [sym_preproc_endregion] = STATE(550), [sym_preproc_line] = STATE(550), @@ -134375,49 +134261,49 @@ 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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1481), - [anon_sym_LPAREN] = ACTIONS(895), - [anon_sym_ref] = ACTIONS(2623), - [anon_sym_LBRACE] = ACTIONS(1487), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1479), + [anon_sym_LPAREN] = ACTIONS(659), + [anon_sym_ref] = ACTIONS(2621), + [anon_sym_LBRACE] = ACTIONS(1481), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1061), - [anon_sym_in] = ACTIONS(1065), - [anon_sym_out] = ACTIONS(1065), + [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(1067), - [anon_sym_BANG] = ACTIONS(1495), - [anon_sym_TILDE] = ACTIONS(1495), - [anon_sym_PLUS_PLUS] = ACTIONS(1495), - [anon_sym_DASH_DASH] = ACTIONS(1495), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(1485), + [anon_sym_TILDE] = ACTIONS(1485), + [anon_sym_PLUS_PLUS] = ACTIONS(1485), + [anon_sym_DASH_DASH] = ACTIONS(1485), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1493), - [anon_sym_DASH] = ACTIONS(1493), - [anon_sym_STAR] = ACTIONS(905), - [anon_sym_CARET] = ACTIONS(1495), - [anon_sym_AMP] = ACTIONS(1495), + [anon_sym_PLUS] = ACTIONS(1483), + [anon_sym_DASH] = ACTIONS(1483), + [anon_sym_STAR] = ACTIONS(683), + [anon_sym_CARET] = ACTIONS(1485), + [anon_sym_AMP] = ACTIONS(1485), [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(1067), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1079), + [anon_sym_throw] = ACTIONS(1077), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1081), - [anon_sym_DOT_DOT] = ACTIONS(911), + [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), @@ -134442,7 +134328,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(1089), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -134459,86 +134345,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [551] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_argument] = STATE(6740), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(5910), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2247), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5920), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(5061), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3379), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3080), - [sym_postfix_unary_expression] = STATE(3111), - [sym_prefix_unary_expression] = STATE(3111), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6154), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3080), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3111), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3080), - [sym_member_access_expression] = STATE(2484), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3111), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7575), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_declaration_expression] = STATE(6803), - [sym_default_expression] = STATE(3080), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3080), - [sym_typeof_expression] = STATE(3080), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2484), - [sym_literal] = STATE(3080), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2206), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(5672), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2265), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5693), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(5036), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3398), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3102), + [sym_postfix_unary_expression] = STATE(3079), + [sym_prefix_unary_expression] = STATE(3079), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6163), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3102), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3079), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3102), + [sym_member_access_expression] = STATE(2472), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3079), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7496), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_declaration_expression] = STATE(6798), + [sym_default_expression] = STATE(3102), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3102), + [sym_typeof_expression] = STATE(3102), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2472), + [sym_literal] = STATE(3102), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(551), [sym_preproc_endregion] = STATE(551), [sym_preproc_line] = STATE(551), @@ -134548,49 +134433,50 @@ 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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1481), - [anon_sym_LPAREN] = ACTIONS(895), - [anon_sym_ref] = ACTIONS(2623), - [anon_sym_LBRACE] = ACTIONS(1487), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1479), + [anon_sym_LPAREN] = ACTIONS(1487), + [anon_sym_ref] = ACTIONS(2691), + [anon_sym_LBRACE] = ACTIONS(1481), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1061), - [anon_sym_in] = ACTIONS(1065), - [anon_sym_out] = ACTIONS(1065), + [anon_sym_new] = ACTIONS(1095), + [anon_sym_readonly] = ACTIONS(2689), + [anon_sym_in] = ACTIONS(2689), + [anon_sym_out] = ACTIONS(2689), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1067), - [anon_sym_BANG] = ACTIONS(1495), - [anon_sym_TILDE] = ACTIONS(1495), - [anon_sym_PLUS_PLUS] = ACTIONS(1495), - [anon_sym_DASH_DASH] = ACTIONS(1495), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(1493), + [anon_sym_TILDE] = ACTIONS(1493), + [anon_sym_PLUS_PLUS] = ACTIONS(1493), + [anon_sym_DASH_DASH] = ACTIONS(1493), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1493), - [anon_sym_DASH] = ACTIONS(1493), - [anon_sym_STAR] = ACTIONS(905), - [anon_sym_CARET] = ACTIONS(1495), - [anon_sym_AMP] = ACTIONS(1495), + [anon_sym_PLUS] = ACTIONS(1491), + [anon_sym_DASH] = ACTIONS(1491), + [anon_sym_STAR] = ACTIONS(1105), + [anon_sym_CARET] = ACTIONS(1493), + [anon_sym_AMP] = ACTIONS(1493), [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(85), + [anon_sym_scoped] = ACTIONS(2301), [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(89), + [anon_sym_var] = ACTIONS(2629), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1067), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1079), + [anon_sym_throw] = ACTIONS(1113), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1081), - [anon_sym_DOT_DOT] = ACTIONS(911), + [anon_sym_await] = ACTIONS(1115), + [anon_sym_DOT_DOT] = ACTIONS(1119), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -134615,7 +134501,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(1089), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -134632,85 +134518,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [552] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(5709), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2262), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5704), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(4855), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3408), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3080), - [sym_postfix_unary_expression] = STATE(3111), - [sym_prefix_unary_expression] = STATE(3111), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6161), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3080), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3111), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3080), - [sym_member_access_expression] = STATE(2484), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3111), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7323), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_declaration_expression] = STATE(7021), - [sym_default_expression] = STATE(3080), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3080), - [sym_typeof_expression] = STATE(3080), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2484), - [sym_literal] = STATE(3080), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(5152), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2196), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5693), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(4873), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3468), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3102), + [sym_postfix_unary_expression] = STATE(3079), + [sym_prefix_unary_expression] = STATE(3079), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6134), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3102), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3079), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3102), + [sym_member_access_expression] = STATE(2472), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3079), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7309), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_declaration_expression] = STATE(6798), + [sym_default_expression] = STATE(3102), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3102), + [sym_typeof_expression] = STATE(3102), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2472), + [sym_literal] = STATE(3102), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(552), [sym_preproc_endregion] = STATE(552), [sym_preproc_line] = STATE(552), @@ -134720,50 +134606,50 @@ 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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1481), - [anon_sym_LPAREN] = ACTIONS(1483), - [anon_sym_ref] = ACTIONS(2691), - [anon_sym_LBRACE] = ACTIONS(1487), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1479), + [anon_sym_LPAREN] = ACTIONS(659), + [anon_sym_ref] = ACTIONS(2693), + [anon_sym_LBRACE] = ACTIONS(1481), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1101), - [anon_sym_readonly] = ACTIONS(2693), - [anon_sym_in] = ACTIONS(2693), - [anon_sym_out] = ACTIONS(2693), + [anon_sym_new] = ACTIONS(1059), + [anon_sym_readonly] = ACTIONS(2689), + [anon_sym_in] = ACTIONS(2689), + [anon_sym_out] = ACTIONS(2689), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1067), - [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(1485), + [anon_sym_TILDE] = ACTIONS(1485), + [anon_sym_PLUS_PLUS] = ACTIONS(1485), + [anon_sym_DASH_DASH] = ACTIONS(1485), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1489), - [anon_sym_DASH] = ACTIONS(1489), - [anon_sym_STAR] = ACTIONS(1111), - [anon_sym_CARET] = ACTIONS(1491), - [anon_sym_AMP] = ACTIONS(1491), + [anon_sym_PLUS] = ACTIONS(1483), + [anon_sym_DASH] = ACTIONS(1483), + [anon_sym_STAR] = ACTIONS(683), + [anon_sym_CARET] = ACTIONS(1485), + [anon_sym_AMP] = ACTIONS(1485), [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(2309), + [anon_sym_scoped] = ACTIONS(2301), [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(2631), + [anon_sym_var] = ACTIONS(2629), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1067), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1119), + [anon_sym_throw] = ACTIONS(1077), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1121), - [anon_sym_DOT_DOT] = ACTIONS(1125), + [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), @@ -134788,7 +134674,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(1089), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -134805,86 +134691,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [553] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_argument] = STATE(7273), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(5910), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2247), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5920), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(5153), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3379), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3080), - [sym_postfix_unary_expression] = STATE(3111), - [sym_prefix_unary_expression] = STATE(3111), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6154), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3080), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3111), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3080), - [sym_member_access_expression] = STATE(2484), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3111), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7575), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_declaration_expression] = STATE(6803), - [sym_default_expression] = STATE(3080), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3080), - [sym_typeof_expression] = STATE(3080), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2484), - [sym_literal] = STATE(3080), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2206), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_argument] = STATE(6821), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(5873), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2238), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5904), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(5095), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3468), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3102), + [sym_postfix_unary_expression] = STATE(3079), + [sym_prefix_unary_expression] = STATE(3079), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6134), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3102), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3079), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3102), + [sym_member_access_expression] = STATE(2472), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3079), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7309), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_declaration_expression] = STATE(6902), + [sym_default_expression] = STATE(3102), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3102), + [sym_typeof_expression] = STATE(3102), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2472), + [sym_literal] = STATE(3102), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2207), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(553), [sym_preproc_endregion] = STATE(553), [sym_preproc_line] = STATE(553), @@ -134894,49 +134780,49 @@ 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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1481), - [anon_sym_LPAREN] = ACTIONS(895), - [anon_sym_ref] = ACTIONS(2623), - [anon_sym_LBRACE] = ACTIONS(1487), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1479), + [anon_sym_LPAREN] = ACTIONS(659), + [anon_sym_ref] = ACTIONS(2621), + [anon_sym_LBRACE] = ACTIONS(1481), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1061), - [anon_sym_in] = ACTIONS(1065), - [anon_sym_out] = ACTIONS(1065), + [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(1067), - [anon_sym_BANG] = ACTIONS(1495), - [anon_sym_TILDE] = ACTIONS(1495), - [anon_sym_PLUS_PLUS] = ACTIONS(1495), - [anon_sym_DASH_DASH] = ACTIONS(1495), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(1485), + [anon_sym_TILDE] = ACTIONS(1485), + [anon_sym_PLUS_PLUS] = ACTIONS(1485), + [anon_sym_DASH_DASH] = ACTIONS(1485), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1493), - [anon_sym_DASH] = ACTIONS(1493), - [anon_sym_STAR] = ACTIONS(905), - [anon_sym_CARET] = ACTIONS(1495), - [anon_sym_AMP] = ACTIONS(1495), + [anon_sym_PLUS] = ACTIONS(1483), + [anon_sym_DASH] = ACTIONS(1483), + [anon_sym_STAR] = ACTIONS(683), + [anon_sym_CARET] = ACTIONS(1485), + [anon_sym_AMP] = ACTIONS(1485), [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(1067), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1079), + [anon_sym_throw] = ACTIONS(1077), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1081), - [anon_sym_DOT_DOT] = ACTIONS(911), + [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), @@ -134961,7 +134847,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(1089), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -134978,86 +134864,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [554] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_argument] = STATE(6923), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(5910), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2247), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5920), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(5061), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3379), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3080), - [sym_postfix_unary_expression] = STATE(3111), - [sym_prefix_unary_expression] = STATE(3111), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6154), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3080), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3111), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3080), - [sym_member_access_expression] = STATE(2484), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3111), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7575), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_declaration_expression] = STATE(6803), - [sym_default_expression] = STATE(3080), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3080), - [sym_typeof_expression] = STATE(3080), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2484), - [sym_literal] = STATE(3080), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2206), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_argument] = STATE(7133), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(5873), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2238), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5904), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(5186), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3468), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3102), + [sym_postfix_unary_expression] = STATE(3079), + [sym_prefix_unary_expression] = STATE(3079), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6134), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3102), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3079), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3102), + [sym_member_access_expression] = STATE(2472), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3079), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7309), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_declaration_expression] = STATE(6902), + [sym_default_expression] = STATE(3102), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3102), + [sym_typeof_expression] = STATE(3102), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2472), + [sym_literal] = STATE(3102), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2207), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(554), [sym_preproc_endregion] = STATE(554), [sym_preproc_line] = STATE(554), @@ -135067,49 +134953,49 @@ 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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1481), - [anon_sym_LPAREN] = ACTIONS(895), - [anon_sym_ref] = ACTIONS(2623), - [anon_sym_LBRACE] = ACTIONS(1487), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1479), + [anon_sym_LPAREN] = ACTIONS(659), + [anon_sym_ref] = ACTIONS(2621), + [anon_sym_LBRACE] = ACTIONS(1481), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1061), - [anon_sym_in] = ACTIONS(1065), - [anon_sym_out] = ACTIONS(1065), + [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(1067), - [anon_sym_BANG] = ACTIONS(1495), - [anon_sym_TILDE] = ACTIONS(1495), - [anon_sym_PLUS_PLUS] = ACTIONS(1495), - [anon_sym_DASH_DASH] = ACTIONS(1495), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(1485), + [anon_sym_TILDE] = ACTIONS(1485), + [anon_sym_PLUS_PLUS] = ACTIONS(1485), + [anon_sym_DASH_DASH] = ACTIONS(1485), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1493), - [anon_sym_DASH] = ACTIONS(1493), - [anon_sym_STAR] = ACTIONS(905), - [anon_sym_CARET] = ACTIONS(1495), - [anon_sym_AMP] = ACTIONS(1495), + [anon_sym_PLUS] = ACTIONS(1483), + [anon_sym_DASH] = ACTIONS(1483), + [anon_sym_STAR] = ACTIONS(683), + [anon_sym_CARET] = ACTIONS(1485), + [anon_sym_AMP] = ACTIONS(1485), [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(1067), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1079), + [anon_sym_throw] = ACTIONS(1077), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1081), - [anon_sym_DOT_DOT] = ACTIONS(911), + [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), @@ -135134,7 +135020,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(1089), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -135151,86 +135037,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [555] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_argument] = STATE(6957), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(5910), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2247), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5920), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(5061), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3379), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3080), - [sym_postfix_unary_expression] = STATE(3111), - [sym_prefix_unary_expression] = STATE(3111), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6154), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3080), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3111), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3080), - [sym_member_access_expression] = STATE(2484), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3111), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7575), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_declaration_expression] = STATE(6803), - [sym_default_expression] = STATE(3080), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3080), - [sym_typeof_expression] = STATE(3080), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2484), - [sym_literal] = STATE(3080), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2206), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_argument] = STATE(7015), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(5873), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2238), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5904), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(5095), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3468), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3102), + [sym_postfix_unary_expression] = STATE(3079), + [sym_prefix_unary_expression] = STATE(3079), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6134), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3102), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3079), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3102), + [sym_member_access_expression] = STATE(2472), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3079), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7309), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_declaration_expression] = STATE(6902), + [sym_default_expression] = STATE(3102), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3102), + [sym_typeof_expression] = STATE(3102), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2472), + [sym_literal] = STATE(3102), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2207), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(555), [sym_preproc_endregion] = STATE(555), [sym_preproc_line] = STATE(555), @@ -135240,49 +135126,49 @@ 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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1481), - [anon_sym_LPAREN] = ACTIONS(895), - [anon_sym_ref] = ACTIONS(2659), - [anon_sym_LBRACE] = ACTIONS(1487), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1479), + [anon_sym_LPAREN] = ACTIONS(659), + [anon_sym_ref] = ACTIONS(2621), + [anon_sym_LBRACE] = ACTIONS(1481), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1061), - [anon_sym_in] = ACTIONS(1065), - [anon_sym_out] = ACTIONS(1065), + [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(1067), - [anon_sym_BANG] = ACTIONS(1495), - [anon_sym_TILDE] = ACTIONS(1495), - [anon_sym_PLUS_PLUS] = ACTIONS(1495), - [anon_sym_DASH_DASH] = ACTIONS(1495), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(1485), + [anon_sym_TILDE] = ACTIONS(1485), + [anon_sym_PLUS_PLUS] = ACTIONS(1485), + [anon_sym_DASH_DASH] = ACTIONS(1485), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1493), - [anon_sym_DASH] = ACTIONS(1493), - [anon_sym_STAR] = ACTIONS(905), - [anon_sym_CARET] = ACTIONS(1495), - [anon_sym_AMP] = ACTIONS(1495), + [anon_sym_PLUS] = ACTIONS(1483), + [anon_sym_DASH] = ACTIONS(1483), + [anon_sym_STAR] = ACTIONS(683), + [anon_sym_CARET] = ACTIONS(1485), + [anon_sym_AMP] = ACTIONS(1485), [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(1067), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1079), + [anon_sym_throw] = ACTIONS(1077), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1081), - [anon_sym_DOT_DOT] = ACTIONS(911), + [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), @@ -135307,7 +135193,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(1089), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -135324,86 +135210,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [556] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_argument] = STATE(7273), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(5910), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2247), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5920), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(5269), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3379), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3080), - [sym_postfix_unary_expression] = STATE(3111), - [sym_prefix_unary_expression] = STATE(3111), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6154), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3080), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3111), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3080), - [sym_member_access_expression] = STATE(2484), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3111), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7575), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_declaration_expression] = STATE(6803), - [sym_default_expression] = STATE(3080), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3080), - [sym_typeof_expression] = STATE(3080), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2484), - [sym_literal] = STATE(3080), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2206), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_argument] = STATE(7133), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(5873), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2238), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5904), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(5199), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3468), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3102), + [sym_postfix_unary_expression] = STATE(3079), + [sym_prefix_unary_expression] = STATE(3079), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6134), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3102), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3079), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3102), + [sym_member_access_expression] = STATE(2472), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3079), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7309), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_declaration_expression] = STATE(6902), + [sym_default_expression] = STATE(3102), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3102), + [sym_typeof_expression] = STATE(3102), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2472), + [sym_literal] = STATE(3102), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2207), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(556), [sym_preproc_endregion] = STATE(556), [sym_preproc_line] = STATE(556), @@ -135413,49 +135299,49 @@ 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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1481), - [anon_sym_LPAREN] = ACTIONS(895), - [anon_sym_ref] = ACTIONS(2623), - [anon_sym_LBRACE] = ACTIONS(1487), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1479), + [anon_sym_LPAREN] = ACTIONS(659), + [anon_sym_ref] = ACTIONS(2621), + [anon_sym_LBRACE] = ACTIONS(1481), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1061), - [anon_sym_in] = ACTIONS(1065), - [anon_sym_out] = ACTIONS(1065), + [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(1067), - [anon_sym_BANG] = ACTIONS(1495), - [anon_sym_TILDE] = ACTIONS(1495), - [anon_sym_PLUS_PLUS] = ACTIONS(1495), - [anon_sym_DASH_DASH] = ACTIONS(1495), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(1485), + [anon_sym_TILDE] = ACTIONS(1485), + [anon_sym_PLUS_PLUS] = ACTIONS(1485), + [anon_sym_DASH_DASH] = ACTIONS(1485), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1493), - [anon_sym_DASH] = ACTIONS(1493), - [anon_sym_STAR] = ACTIONS(905), - [anon_sym_CARET] = ACTIONS(1495), - [anon_sym_AMP] = ACTIONS(1495), + [anon_sym_PLUS] = ACTIONS(1483), + [anon_sym_DASH] = ACTIONS(1483), + [anon_sym_STAR] = ACTIONS(683), + [anon_sym_CARET] = ACTIONS(1485), + [anon_sym_AMP] = ACTIONS(1485), [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(1067), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1079), + [anon_sym_throw] = ACTIONS(1077), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1081), - [anon_sym_DOT_DOT] = ACTIONS(911), + [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), @@ -135480,7 +135366,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(1089), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -135497,86 +135383,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [557] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_argument] = STATE(6914), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(5910), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2247), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5920), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(5061), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3379), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3080), - [sym_postfix_unary_expression] = STATE(3111), - [sym_prefix_unary_expression] = STATE(3111), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6154), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3080), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3111), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3080), - [sym_member_access_expression] = STATE(2484), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3111), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7575), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_declaration_expression] = STATE(6803), - [sym_default_expression] = STATE(3080), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3080), - [sym_typeof_expression] = STATE(3080), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2484), - [sym_literal] = STATE(3080), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2206), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_argument] = STATE(6787), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(5873), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2238), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5904), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(5095), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3468), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3102), + [sym_postfix_unary_expression] = STATE(3079), + [sym_prefix_unary_expression] = STATE(3079), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6134), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3102), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3079), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3102), + [sym_member_access_expression] = STATE(2472), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3079), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7309), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_declaration_expression] = STATE(6902), + [sym_default_expression] = STATE(3102), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3102), + [sym_typeof_expression] = STATE(3102), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2472), + [sym_literal] = STATE(3102), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2207), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(557), [sym_preproc_endregion] = STATE(557), [sym_preproc_line] = STATE(557), @@ -135586,49 +135472,49 @@ 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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1481), - [anon_sym_LPAREN] = ACTIONS(895), - [anon_sym_ref] = ACTIONS(2623), - [anon_sym_LBRACE] = ACTIONS(1487), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1479), + [anon_sym_LPAREN] = ACTIONS(659), + [anon_sym_ref] = ACTIONS(2621), + [anon_sym_LBRACE] = ACTIONS(1481), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1061), - [anon_sym_in] = ACTIONS(1065), - [anon_sym_out] = ACTIONS(1065), + [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(1067), - [anon_sym_BANG] = ACTIONS(1495), - [anon_sym_TILDE] = ACTIONS(1495), - [anon_sym_PLUS_PLUS] = ACTIONS(1495), - [anon_sym_DASH_DASH] = ACTIONS(1495), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(1485), + [anon_sym_TILDE] = ACTIONS(1485), + [anon_sym_PLUS_PLUS] = ACTIONS(1485), + [anon_sym_DASH_DASH] = ACTIONS(1485), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1493), - [anon_sym_DASH] = ACTIONS(1493), - [anon_sym_STAR] = ACTIONS(905), - [anon_sym_CARET] = ACTIONS(1495), - [anon_sym_AMP] = ACTIONS(1495), + [anon_sym_PLUS] = ACTIONS(1483), + [anon_sym_DASH] = ACTIONS(1483), + [anon_sym_STAR] = ACTIONS(683), + [anon_sym_CARET] = ACTIONS(1485), + [anon_sym_AMP] = ACTIONS(1485), [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(1067), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1079), + [anon_sym_throw] = ACTIONS(1077), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1081), - [anon_sym_DOT_DOT] = ACTIONS(911), + [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), @@ -135653,7 +135539,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(1089), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -135670,85 +135556,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [558] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(5160), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2204), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5704), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(4918), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3379), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3080), - [sym_postfix_unary_expression] = STATE(3111), - [sym_prefix_unary_expression] = STATE(3111), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6154), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3080), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3111), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3080), - [sym_member_access_expression] = STATE(2484), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3111), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7575), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_declaration_expression] = STATE(7021), - [sym_default_expression] = STATE(3080), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3080), - [sym_typeof_expression] = STATE(3080), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2484), - [sym_literal] = STATE(3080), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_argument] = STATE(6787), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(5873), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2238), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5904), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(5095), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3468), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3102), + [sym_postfix_unary_expression] = STATE(3079), + [sym_prefix_unary_expression] = STATE(3079), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6134), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3102), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3079), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3102), + [sym_member_access_expression] = STATE(2472), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3079), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7309), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_declaration_expression] = STATE(6902), + [sym_default_expression] = STATE(3102), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3102), + [sym_typeof_expression] = STATE(3102), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2472), + [sym_literal] = STATE(3102), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2207), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(558), [sym_preproc_endregion] = STATE(558), [sym_preproc_line] = STATE(558), @@ -135758,50 +135645,49 @@ 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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1481), - [anon_sym_LPAREN] = ACTIONS(895), - [anon_sym_ref] = ACTIONS(2695), - [anon_sym_LBRACE] = ACTIONS(1487), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1479), + [anon_sym_LPAREN] = ACTIONS(659), + [anon_sym_ref] = ACTIONS(2657), + [anon_sym_LBRACE] = ACTIONS(1481), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1061), - [anon_sym_readonly] = ACTIONS(2693), - [anon_sym_in] = ACTIONS(2693), - [anon_sym_out] = ACTIONS(2693), + [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(1067), - [anon_sym_BANG] = ACTIONS(1495), - [anon_sym_TILDE] = ACTIONS(1495), - [anon_sym_PLUS_PLUS] = ACTIONS(1495), - [anon_sym_DASH_DASH] = ACTIONS(1495), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(1485), + [anon_sym_TILDE] = ACTIONS(1485), + [anon_sym_PLUS_PLUS] = ACTIONS(1485), + [anon_sym_DASH_DASH] = ACTIONS(1485), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1493), - [anon_sym_DASH] = ACTIONS(1493), - [anon_sym_STAR] = ACTIONS(905), - [anon_sym_CARET] = ACTIONS(1495), - [anon_sym_AMP] = ACTIONS(1495), + [anon_sym_PLUS] = ACTIONS(1483), + [anon_sym_DASH] = ACTIONS(1483), + [anon_sym_STAR] = ACTIONS(683), + [anon_sym_CARET] = ACTIONS(1485), + [anon_sym_AMP] = ACTIONS(1485), [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(2309), + [anon_sym_scoped] = ACTIONS(85), [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(2631), + [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1067), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1079), + [anon_sym_throw] = ACTIONS(1077), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1081), - [anon_sym_DOT_DOT] = ACTIONS(911), + [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), @@ -135826,7 +135712,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(1089), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -135843,86 +135729,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [559] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_argument] = STATE(6957), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(5910), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2247), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5920), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(5061), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3379), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3080), - [sym_postfix_unary_expression] = STATE(3111), - [sym_prefix_unary_expression] = STATE(3111), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6154), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3080), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3111), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3080), - [sym_member_access_expression] = STATE(2484), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3111), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7575), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_declaration_expression] = STATE(6803), - [sym_default_expression] = STATE(3080), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3080), - [sym_typeof_expression] = STATE(3080), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2484), - [sym_literal] = STATE(3080), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2206), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_argument] = STATE(7133), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(5873), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2238), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5904), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(5187), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3468), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3102), + [sym_postfix_unary_expression] = STATE(3079), + [sym_prefix_unary_expression] = STATE(3079), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6134), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3102), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3079), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3102), + [sym_member_access_expression] = STATE(2472), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3079), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7309), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_declaration_expression] = STATE(6902), + [sym_default_expression] = STATE(3102), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3102), + [sym_typeof_expression] = STATE(3102), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2472), + [sym_literal] = STATE(3102), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2207), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(559), [sym_preproc_endregion] = STATE(559), [sym_preproc_line] = STATE(559), @@ -135932,49 +135818,49 @@ 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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1481), - [anon_sym_LPAREN] = ACTIONS(895), - [anon_sym_ref] = ACTIONS(2623), - [anon_sym_LBRACE] = ACTIONS(1487), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1479), + [anon_sym_LPAREN] = ACTIONS(659), + [anon_sym_ref] = ACTIONS(2621), + [anon_sym_LBRACE] = ACTIONS(1481), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1061), - [anon_sym_in] = ACTIONS(1065), - [anon_sym_out] = ACTIONS(1065), + [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(1067), - [anon_sym_BANG] = ACTIONS(1495), - [anon_sym_TILDE] = ACTIONS(1495), - [anon_sym_PLUS_PLUS] = ACTIONS(1495), - [anon_sym_DASH_DASH] = ACTIONS(1495), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(1485), + [anon_sym_TILDE] = ACTIONS(1485), + [anon_sym_PLUS_PLUS] = ACTIONS(1485), + [anon_sym_DASH_DASH] = ACTIONS(1485), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1493), - [anon_sym_DASH] = ACTIONS(1493), - [anon_sym_STAR] = ACTIONS(905), - [anon_sym_CARET] = ACTIONS(1495), - [anon_sym_AMP] = ACTIONS(1495), + [anon_sym_PLUS] = ACTIONS(1483), + [anon_sym_DASH] = ACTIONS(1483), + [anon_sym_STAR] = ACTIONS(683), + [anon_sym_CARET] = ACTIONS(1485), + [anon_sym_AMP] = ACTIONS(1485), [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(1067), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1079), + [anon_sym_throw] = ACTIONS(1077), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1081), - [anon_sym_DOT_DOT] = ACTIONS(911), + [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), @@ -135999,7 +135885,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(1089), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -136016,86 +135902,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [560] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_argument] = STATE(6932), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(5910), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2247), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5920), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(5061), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3379), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3080), - [sym_postfix_unary_expression] = STATE(3111), - [sym_prefix_unary_expression] = STATE(3111), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6154), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3080), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3111), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3080), - [sym_member_access_expression] = STATE(2484), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3111), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7575), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_declaration_expression] = STATE(6803), - [sym_default_expression] = STATE(3080), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3080), - [sym_typeof_expression] = STATE(3080), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2484), - [sym_literal] = STATE(3080), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2206), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_argument] = STATE(7133), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(5873), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2238), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5904), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(5143), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3468), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3102), + [sym_postfix_unary_expression] = STATE(3079), + [sym_prefix_unary_expression] = STATE(3079), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6134), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3102), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3079), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3102), + [sym_member_access_expression] = STATE(2472), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3079), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7309), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_declaration_expression] = STATE(6902), + [sym_default_expression] = STATE(3102), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3102), + [sym_typeof_expression] = STATE(3102), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2472), + [sym_literal] = STATE(3102), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2207), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(560), [sym_preproc_endregion] = STATE(560), [sym_preproc_line] = STATE(560), @@ -136105,49 +135991,49 @@ 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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1481), - [anon_sym_LPAREN] = ACTIONS(895), - [anon_sym_ref] = ACTIONS(2623), - [anon_sym_LBRACE] = ACTIONS(1487), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1479), + [anon_sym_LPAREN] = ACTIONS(659), + [anon_sym_ref] = ACTIONS(2621), + [anon_sym_LBRACE] = ACTIONS(1481), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1061), - [anon_sym_in] = ACTIONS(1065), - [anon_sym_out] = ACTIONS(1065), + [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(1067), - [anon_sym_BANG] = ACTIONS(1495), - [anon_sym_TILDE] = ACTIONS(1495), - [anon_sym_PLUS_PLUS] = ACTIONS(1495), - [anon_sym_DASH_DASH] = ACTIONS(1495), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(1485), + [anon_sym_TILDE] = ACTIONS(1485), + [anon_sym_PLUS_PLUS] = ACTIONS(1485), + [anon_sym_DASH_DASH] = ACTIONS(1485), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1493), - [anon_sym_DASH] = ACTIONS(1493), - [anon_sym_STAR] = ACTIONS(905), - [anon_sym_CARET] = ACTIONS(1495), - [anon_sym_AMP] = ACTIONS(1495), + [anon_sym_PLUS] = ACTIONS(1483), + [anon_sym_DASH] = ACTIONS(1483), + [anon_sym_STAR] = ACTIONS(683), + [anon_sym_CARET] = ACTIONS(1485), + [anon_sym_AMP] = ACTIONS(1485), [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(1067), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1079), + [anon_sym_throw] = ACTIONS(1077), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1081), - [anon_sym_DOT_DOT] = ACTIONS(911), + [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), @@ -136172,7 +136058,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(1089), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -136189,85 +136075,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [561] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(5910), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2247), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5920), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(4920), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3379), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3080), - [sym_postfix_unary_expression] = STATE(3111), - [sym_prefix_unary_expression] = STATE(3111), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6154), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3080), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3111), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3080), - [sym_member_access_expression] = STATE(2484), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3111), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7575), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_declaration_expression] = STATE(7021), - [sym_default_expression] = STATE(3080), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3080), - [sym_typeof_expression] = STATE(3080), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2484), - [sym_literal] = STATE(3080), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_argument] = STATE(6941), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(5873), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2238), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5904), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(5095), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3468), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3102), + [sym_postfix_unary_expression] = STATE(3079), + [sym_prefix_unary_expression] = STATE(3079), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6134), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3102), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3079), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3102), + [sym_member_access_expression] = STATE(2472), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3079), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7309), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_declaration_expression] = STATE(6902), + [sym_default_expression] = STATE(3102), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3102), + [sym_typeof_expression] = STATE(3102), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2472), + [sym_literal] = STATE(3102), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2207), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(561), [sym_preproc_endregion] = STATE(561), [sym_preproc_line] = STATE(561), @@ -136277,50 +136164,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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1481), - [anon_sym_LPAREN] = ACTIONS(895), - [anon_sym_ref] = ACTIONS(897), - [anon_sym_LBRACE] = ACTIONS(1487), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1479), + [anon_sym_LPAREN] = ACTIONS(659), + [anon_sym_ref] = ACTIONS(2621), + [anon_sym_LBRACE] = ACTIONS(1481), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1061), - [anon_sym_readonly] = ACTIONS(2693), - [anon_sym_in] = ACTIONS(2693), - [anon_sym_out] = ACTIONS(2693), + [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(1067), - [anon_sym_BANG] = ACTIONS(1495), - [anon_sym_TILDE] = ACTIONS(1495), - [anon_sym_PLUS_PLUS] = ACTIONS(1495), - [anon_sym_DASH_DASH] = ACTIONS(1495), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(1485), + [anon_sym_TILDE] = ACTIONS(1485), + [anon_sym_PLUS_PLUS] = ACTIONS(1485), + [anon_sym_DASH_DASH] = ACTIONS(1485), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1493), - [anon_sym_DASH] = ACTIONS(1493), - [anon_sym_STAR] = ACTIONS(905), - [anon_sym_CARET] = ACTIONS(1495), - [anon_sym_AMP] = ACTIONS(1495), + [anon_sym_PLUS] = ACTIONS(1483), + [anon_sym_DASH] = ACTIONS(1483), + [anon_sym_STAR] = ACTIONS(683), + [anon_sym_CARET] = ACTIONS(1485), + [anon_sym_AMP] = ACTIONS(1485), [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(1067), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1079), + [anon_sym_throw] = ACTIONS(1077), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1081), - [anon_sym_DOT_DOT] = ACTIONS(911), + [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), @@ -136345,7 +136231,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(1089), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -136362,86 +136248,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [562] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_argument] = STATE(6730), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(5910), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2247), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5920), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(5061), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3379), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3080), - [sym_postfix_unary_expression] = STATE(3111), - [sym_prefix_unary_expression] = STATE(3111), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6154), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3080), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3111), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3080), - [sym_member_access_expression] = STATE(2484), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3111), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7575), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_declaration_expression] = STATE(6803), - [sym_default_expression] = STATE(3080), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3080), - [sym_typeof_expression] = STATE(3080), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2484), - [sym_literal] = STATE(3080), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2206), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_argument] = STATE(6855), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(5873), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2238), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5904), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(5095), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3468), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3102), + [sym_postfix_unary_expression] = STATE(3079), + [sym_prefix_unary_expression] = STATE(3079), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6134), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3102), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3079), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3102), + [sym_member_access_expression] = STATE(2472), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3079), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7309), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_declaration_expression] = STATE(6902), + [sym_default_expression] = STATE(3102), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3102), + [sym_typeof_expression] = STATE(3102), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2472), + [sym_literal] = STATE(3102), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2207), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(562), [sym_preproc_endregion] = STATE(562), [sym_preproc_line] = STATE(562), @@ -136451,49 +136337,49 @@ 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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1481), - [anon_sym_LPAREN] = ACTIONS(895), - [anon_sym_ref] = ACTIONS(2623), - [anon_sym_LBRACE] = ACTIONS(1487), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1479), + [anon_sym_LPAREN] = ACTIONS(659), + [anon_sym_ref] = ACTIONS(2621), + [anon_sym_LBRACE] = ACTIONS(1481), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1061), - [anon_sym_in] = ACTIONS(1065), - [anon_sym_out] = ACTIONS(1065), + [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(1067), - [anon_sym_BANG] = ACTIONS(1495), - [anon_sym_TILDE] = ACTIONS(1495), - [anon_sym_PLUS_PLUS] = ACTIONS(1495), - [anon_sym_DASH_DASH] = ACTIONS(1495), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(1485), + [anon_sym_TILDE] = ACTIONS(1485), + [anon_sym_PLUS_PLUS] = ACTIONS(1485), + [anon_sym_DASH_DASH] = ACTIONS(1485), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1493), - [anon_sym_DASH] = ACTIONS(1493), - [anon_sym_STAR] = ACTIONS(905), - [anon_sym_CARET] = ACTIONS(1495), - [anon_sym_AMP] = ACTIONS(1495), + [anon_sym_PLUS] = ACTIONS(1483), + [anon_sym_DASH] = ACTIONS(1483), + [anon_sym_STAR] = ACTIONS(683), + [anon_sym_CARET] = ACTIONS(1485), + [anon_sym_AMP] = ACTIONS(1485), [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(1067), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1079), + [anon_sym_throw] = ACTIONS(1077), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1081), - [anon_sym_DOT_DOT] = ACTIONS(911), + [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), @@ -136518,7 +136404,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(1089), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -136535,84 +136421,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [563] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(5910), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2247), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(4927), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3379), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3080), - [sym_postfix_unary_expression] = STATE(3111), - [sym_prefix_unary_expression] = STATE(3111), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6154), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3080), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3111), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3080), - [sym_member_access_expression] = STATE(2484), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3111), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7575), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(3080), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3080), - [sym_typeof_expression] = STATE(3080), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2484), - [sym_literal] = STATE(3080), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(5873), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2238), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(4882), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3468), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3102), + [sym_postfix_unary_expression] = STATE(3079), + [sym_prefix_unary_expression] = STATE(3079), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6134), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3102), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3079), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3102), + [sym_member_access_expression] = STATE(2472), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3079), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7309), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(3102), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3102), + [sym_typeof_expression] = STATE(3102), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2472), + [sym_literal] = STATE(3102), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(563), [sym_preproc_endregion] = STATE(563), [sym_preproc_line] = STATE(563), @@ -136622,50 +136508,50 @@ 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(3067), - [aux_sym_array_rank_specifier_repeat1] = STATE(6979), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym_array_rank_specifier_repeat1] = STATE(6896), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1481), - [anon_sym_COMMA] = ACTIONS(2697), - [anon_sym_RBRACK] = ACTIONS(2699), - [anon_sym_LPAREN] = ACTIONS(895), - [anon_sym_ref] = ACTIONS(897), - [anon_sym_LBRACE] = ACTIONS(1487), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1479), + [anon_sym_COMMA] = ACTIONS(2695), + [anon_sym_RBRACK] = ACTIONS(2697), + [anon_sym_LPAREN] = ACTIONS(659), + [anon_sym_ref] = ACTIONS(663), + [anon_sym_LBRACE] = ACTIONS(1481), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1061), + [anon_sym_new] = ACTIONS(1059), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1067), - [anon_sym_BANG] = ACTIONS(1495), - [anon_sym_TILDE] = ACTIONS(1495), - [anon_sym_PLUS_PLUS] = ACTIONS(1495), - [anon_sym_DASH_DASH] = ACTIONS(1495), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(1485), + [anon_sym_TILDE] = ACTIONS(1485), + [anon_sym_PLUS_PLUS] = ACTIONS(1485), + [anon_sym_DASH_DASH] = ACTIONS(1485), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1493), - [anon_sym_DASH] = ACTIONS(1493), - [anon_sym_STAR] = ACTIONS(905), - [anon_sym_CARET] = ACTIONS(1495), - [anon_sym_AMP] = ACTIONS(1495), + [anon_sym_PLUS] = ACTIONS(1483), + [anon_sym_DASH] = ACTIONS(1483), + [anon_sym_STAR] = ACTIONS(683), + [anon_sym_CARET] = ACTIONS(1485), + [anon_sym_AMP] = ACTIONS(1485), [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(1067), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1079), + [anon_sym_throw] = ACTIONS(1077), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1081), - [anon_sym_DOT_DOT] = ACTIONS(911), + [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), @@ -136690,7 +136576,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(1089), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -136707,84 +136593,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [564] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(5910), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2247), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(5070), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3379), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3080), - [sym_postfix_unary_expression] = STATE(3111), - [sym_prefix_unary_expression] = STATE(3111), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6154), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3080), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3111), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3080), - [sym_member_access_expression] = STATE(2484), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3111), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7575), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(3080), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3080), - [sym_typeof_expression] = STATE(3080), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2484), - [sym_literal] = STATE(3080), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(5873), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2238), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(5171), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3468), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3102), + [sym_postfix_unary_expression] = STATE(3079), + [sym_prefix_unary_expression] = STATE(3079), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6134), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3102), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3079), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3102), + [sym_member_access_expression] = STATE(2472), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3079), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7309), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym__anonymous_object_member_declarator] = STATE(6893), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(3102), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3102), + [sym_typeof_expression] = STATE(3102), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2472), + [sym_literal] = STATE(3102), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2297), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(564), [sym_preproc_endregion] = STATE(564), [sym_preproc_line] = STATE(564), @@ -136794,50 +136681,49 @@ 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(3067), - [aux_sym_array_rank_specifier_repeat1] = STATE(6739), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1481), - [anon_sym_COMMA] = ACTIONS(2697), - [anon_sym_RBRACK] = ACTIONS(2701), - [anon_sym_LPAREN] = ACTIONS(895), - [anon_sym_ref] = ACTIONS(897), - [anon_sym_LBRACE] = ACTIONS(1487), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1479), + [anon_sym_COMMA] = ACTIONS(2699), + [anon_sym_LPAREN] = ACTIONS(659), + [anon_sym_ref] = ACTIONS(663), + [anon_sym_LBRACE] = ACTIONS(1481), + [anon_sym_RBRACE] = ACTIONS(2701), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1061), + [anon_sym_new] = ACTIONS(1059), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1067), - [anon_sym_BANG] = ACTIONS(1495), - [anon_sym_TILDE] = ACTIONS(1495), - [anon_sym_PLUS_PLUS] = ACTIONS(1495), - [anon_sym_DASH_DASH] = ACTIONS(1495), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(1485), + [anon_sym_TILDE] = ACTIONS(1485), + [anon_sym_PLUS_PLUS] = ACTIONS(1485), + [anon_sym_DASH_DASH] = ACTIONS(1485), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1493), - [anon_sym_DASH] = ACTIONS(1493), - [anon_sym_STAR] = ACTIONS(905), - [anon_sym_CARET] = ACTIONS(1495), - [anon_sym_AMP] = ACTIONS(1495), + [anon_sym_PLUS] = ACTIONS(1483), + [anon_sym_DASH] = ACTIONS(1483), + [anon_sym_STAR] = ACTIONS(683), + [anon_sym_CARET] = ACTIONS(1485), + [anon_sym_AMP] = ACTIONS(1485), [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(1067), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1079), + [anon_sym_throw] = ACTIONS(1077), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1081), - [anon_sym_DOT_DOT] = ACTIONS(911), + [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), @@ -136862,7 +136748,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(1089), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -136879,85 +136765,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [565] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(5910), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2247), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(5151), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3379), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3080), - [sym_postfix_unary_expression] = STATE(3111), - [sym_prefix_unary_expression] = STATE(3111), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6154), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3080), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3111), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3080), - [sym_member_access_expression] = STATE(2484), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3111), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7575), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym__anonymous_object_member_declarator] = STATE(6804), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(3080), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3080), - [sym_typeof_expression] = STATE(3080), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2484), - [sym_literal] = STATE(3080), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2311), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(5873), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2238), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(5018), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3468), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3102), + [sym_postfix_unary_expression] = STATE(3079), + [sym_prefix_unary_expression] = STATE(3079), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6134), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3102), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3079), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3102), + [sym_member_access_expression] = STATE(2472), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3079), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7309), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(3102), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3102), + [sym_typeof_expression] = STATE(3102), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2472), + [sym_literal] = STATE(3102), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(565), [sym_preproc_endregion] = STATE(565), [sym_preproc_line] = STATE(565), @@ -136967,49 +136852,50 @@ 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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym_array_rank_specifier_repeat1] = STATE(6844), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1481), - [anon_sym_COMMA] = ACTIONS(2703), - [anon_sym_LPAREN] = ACTIONS(895), - [anon_sym_ref] = ACTIONS(897), - [anon_sym_LBRACE] = ACTIONS(1487), - [anon_sym_RBRACE] = ACTIONS(2705), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1479), + [anon_sym_COMMA] = ACTIONS(2695), + [anon_sym_RBRACK] = ACTIONS(2703), + [anon_sym_LPAREN] = ACTIONS(659), + [anon_sym_ref] = ACTIONS(663), + [anon_sym_LBRACE] = ACTIONS(1481), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1061), + [anon_sym_new] = ACTIONS(1059), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1067), - [anon_sym_BANG] = ACTIONS(1495), - [anon_sym_TILDE] = ACTIONS(1495), - [anon_sym_PLUS_PLUS] = ACTIONS(1495), - [anon_sym_DASH_DASH] = ACTIONS(1495), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(1485), + [anon_sym_TILDE] = ACTIONS(1485), + [anon_sym_PLUS_PLUS] = ACTIONS(1485), + [anon_sym_DASH_DASH] = ACTIONS(1485), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1493), - [anon_sym_DASH] = ACTIONS(1493), - [anon_sym_STAR] = ACTIONS(905), - [anon_sym_CARET] = ACTIONS(1495), - [anon_sym_AMP] = ACTIONS(1495), + [anon_sym_PLUS] = ACTIONS(1483), + [anon_sym_DASH] = ACTIONS(1483), + [anon_sym_STAR] = ACTIONS(683), + [anon_sym_CARET] = ACTIONS(1485), + [anon_sym_AMP] = ACTIONS(1485), [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(1067), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1079), + [anon_sym_throw] = ACTIONS(1077), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1081), - [anon_sym_DOT_DOT] = ACTIONS(911), + [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), @@ -137034,7 +136920,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(1089), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -137051,84 +136937,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [566] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(5910), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2247), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(4959), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3379), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3080), - [sym_postfix_unary_expression] = STATE(3111), - [sym_prefix_unary_expression] = STATE(3111), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6154), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3080), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3111), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3080), - [sym_member_access_expression] = STATE(2484), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3111), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7575), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(3080), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3080), - [sym_typeof_expression] = STATE(3080), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2484), - [sym_literal] = STATE(3080), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(5873), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2238), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(5171), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3468), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3102), + [sym_postfix_unary_expression] = STATE(3079), + [sym_prefix_unary_expression] = STATE(3079), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6134), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3102), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3079), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3102), + [sym_member_access_expression] = STATE(2472), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3079), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7309), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym__anonymous_object_member_declarator] = STATE(6979), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(3102), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3102), + [sym_typeof_expression] = STATE(3102), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2472), + [sym_literal] = STATE(3102), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2297), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(566), [sym_preproc_endregion] = STATE(566), [sym_preproc_line] = STATE(566), @@ -137138,50 +137025,49 @@ 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(3067), - [aux_sym_array_rank_specifier_repeat1] = STATE(6840), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1481), - [anon_sym_COMMA] = ACTIONS(2697), - [anon_sym_RBRACK] = ACTIONS(2707), - [anon_sym_LPAREN] = ACTIONS(895), - [anon_sym_ref] = ACTIONS(897), - [anon_sym_LBRACE] = ACTIONS(1487), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1479), + [anon_sym_COMMA] = ACTIONS(2705), + [anon_sym_LPAREN] = ACTIONS(659), + [anon_sym_ref] = ACTIONS(663), + [anon_sym_LBRACE] = ACTIONS(1481), + [anon_sym_RBRACE] = ACTIONS(2707), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1061), + [anon_sym_new] = ACTIONS(1059), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1067), - [anon_sym_BANG] = ACTIONS(1495), - [anon_sym_TILDE] = ACTIONS(1495), - [anon_sym_PLUS_PLUS] = ACTIONS(1495), - [anon_sym_DASH_DASH] = ACTIONS(1495), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(1485), + [anon_sym_TILDE] = ACTIONS(1485), + [anon_sym_PLUS_PLUS] = ACTIONS(1485), + [anon_sym_DASH_DASH] = ACTIONS(1485), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1493), - [anon_sym_DASH] = ACTIONS(1493), - [anon_sym_STAR] = ACTIONS(905), - [anon_sym_CARET] = ACTIONS(1495), - [anon_sym_AMP] = ACTIONS(1495), + [anon_sym_PLUS] = ACTIONS(1483), + [anon_sym_DASH] = ACTIONS(1483), + [anon_sym_STAR] = ACTIONS(683), + [anon_sym_CARET] = ACTIONS(1485), + [anon_sym_AMP] = ACTIONS(1485), [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(1067), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1079), + [anon_sym_throw] = ACTIONS(1077), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1081), - [anon_sym_DOT_DOT] = ACTIONS(911), + [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), @@ -137206,7 +137092,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(1089), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -137223,85 +137109,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [567] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(5910), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2247), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(5151), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3379), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3080), - [sym_postfix_unary_expression] = STATE(3111), - [sym_prefix_unary_expression] = STATE(3111), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6154), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3080), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3111), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3080), - [sym_member_access_expression] = STATE(2484), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3111), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7575), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym__anonymous_object_member_declarator] = STATE(6873), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(3080), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3080), - [sym_typeof_expression] = STATE(3080), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2484), - [sym_literal] = STATE(3080), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2311), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(5873), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2238), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(5171), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3468), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3102), + [sym_postfix_unary_expression] = STATE(3079), + [sym_prefix_unary_expression] = STATE(3079), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6134), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3102), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3079), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3102), + [sym_member_access_expression] = STATE(2472), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3079), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7309), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym__anonymous_object_member_declarator] = STATE(6917), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(3102), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3102), + [sym_typeof_expression] = STATE(3102), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2472), + [sym_literal] = STATE(3102), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2297), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(567), [sym_preproc_endregion] = STATE(567), [sym_preproc_line] = STATE(567), @@ -137311,49 +137197,49 @@ 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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1481), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1479), [anon_sym_COMMA] = ACTIONS(2709), - [anon_sym_LPAREN] = ACTIONS(895), - [anon_sym_ref] = ACTIONS(897), - [anon_sym_LBRACE] = ACTIONS(1487), + [anon_sym_LPAREN] = ACTIONS(659), + [anon_sym_ref] = ACTIONS(663), + [anon_sym_LBRACE] = ACTIONS(1481), [anon_sym_RBRACE] = ACTIONS(2711), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1061), + [anon_sym_new] = ACTIONS(1059), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1067), - [anon_sym_BANG] = ACTIONS(1495), - [anon_sym_TILDE] = ACTIONS(1495), - [anon_sym_PLUS_PLUS] = ACTIONS(1495), - [anon_sym_DASH_DASH] = ACTIONS(1495), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(1485), + [anon_sym_TILDE] = ACTIONS(1485), + [anon_sym_PLUS_PLUS] = ACTIONS(1485), + [anon_sym_DASH_DASH] = ACTIONS(1485), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1493), - [anon_sym_DASH] = ACTIONS(1493), - [anon_sym_STAR] = ACTIONS(905), - [anon_sym_CARET] = ACTIONS(1495), - [anon_sym_AMP] = ACTIONS(1495), + [anon_sym_PLUS] = ACTIONS(1483), + [anon_sym_DASH] = ACTIONS(1483), + [anon_sym_STAR] = ACTIONS(683), + [anon_sym_CARET] = ACTIONS(1485), + [anon_sym_AMP] = ACTIONS(1485), [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(1067), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1079), + [anon_sym_throw] = ACTIONS(1077), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1081), - [anon_sym_DOT_DOT] = ACTIONS(911), + [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), @@ -137378,7 +137264,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(1089), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -137395,85 +137281,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [568] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(5910), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2247), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(5151), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3379), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3080), - [sym_postfix_unary_expression] = STATE(3111), - [sym_prefix_unary_expression] = STATE(3111), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6154), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3080), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3111), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3080), - [sym_member_access_expression] = STATE(2484), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3111), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7575), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym__anonymous_object_member_declarator] = STATE(6969), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(3080), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3080), - [sym_typeof_expression] = STATE(3080), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2484), - [sym_literal] = STATE(3080), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2311), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(5873), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2238), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5904), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(4911), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3468), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3102), + [sym_postfix_unary_expression] = STATE(3079), + [sym_prefix_unary_expression] = STATE(3079), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6134), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3102), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3079), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3102), + [sym_member_access_expression] = STATE(2472), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3079), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7309), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_declaration_expression] = STATE(6794), + [sym_default_expression] = STATE(3102), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3102), + [sym_typeof_expression] = STATE(3102), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2472), + [sym_literal] = STATE(3102), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(568), [sym_preproc_endregion] = STATE(568), [sym_preproc_line] = STATE(568), @@ -137483,49 +137369,49 @@ 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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1481), - [anon_sym_COMMA] = ACTIONS(2713), - [anon_sym_LPAREN] = ACTIONS(895), - [anon_sym_ref] = ACTIONS(897), - [anon_sym_LBRACE] = ACTIONS(1487), - [anon_sym_RBRACE] = ACTIONS(2715), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1479), + [anon_sym_LPAREN] = ACTIONS(659), + [anon_sym_ref] = ACTIONS(2713), + [anon_sym_LBRACE] = ACTIONS(1481), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1061), + [anon_sym_new] = ACTIONS(1059), + [anon_sym_in] = ACTIONS(2715), + [anon_sym_out] = ACTIONS(2715), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1067), - [anon_sym_BANG] = ACTIONS(1495), - [anon_sym_TILDE] = ACTIONS(1495), - [anon_sym_PLUS_PLUS] = ACTIONS(1495), - [anon_sym_DASH_DASH] = ACTIONS(1495), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(1485), + [anon_sym_TILDE] = ACTIONS(1485), + [anon_sym_PLUS_PLUS] = ACTIONS(1485), + [anon_sym_DASH_DASH] = ACTIONS(1485), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1493), - [anon_sym_DASH] = ACTIONS(1493), - [anon_sym_STAR] = ACTIONS(905), - [anon_sym_CARET] = ACTIONS(1495), - [anon_sym_AMP] = ACTIONS(1495), + [anon_sym_PLUS] = ACTIONS(1483), + [anon_sym_DASH] = ACTIONS(1483), + [anon_sym_STAR] = ACTIONS(683), + [anon_sym_CARET] = ACTIONS(1485), + [anon_sym_AMP] = ACTIONS(1485), [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(1067), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1079), + [anon_sym_throw] = ACTIONS(1077), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1081), - [anon_sym_DOT_DOT] = ACTIONS(911), + [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), @@ -137550,7 +137436,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(1089), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -137567,84 +137453,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [569] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(5910), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2247), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(4931), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3379), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3080), - [sym_postfix_unary_expression] = STATE(3111), - [sym_prefix_unary_expression] = STATE(3111), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6154), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3080), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3111), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3080), - [sym_member_access_expression] = STATE(2484), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3111), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7575), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(3080), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3080), - [sym_typeof_expression] = STATE(3080), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2484), - [sym_literal] = STATE(3080), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(5873), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2238), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(5171), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3468), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3102), + [sym_postfix_unary_expression] = STATE(3079), + [sym_prefix_unary_expression] = STATE(3079), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6134), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3102), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3079), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3102), + [sym_member_access_expression] = STATE(2472), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3079), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7309), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym__anonymous_object_member_declarator] = STATE(6916), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(3102), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3102), + [sym_typeof_expression] = STATE(3102), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2472), + [sym_literal] = STATE(3102), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2297), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(569), [sym_preproc_endregion] = STATE(569), [sym_preproc_line] = STATE(569), @@ -137654,50 +137541,49 @@ 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(3067), - [aux_sym_array_rank_specifier_repeat1] = STATE(6978), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1481), - [anon_sym_COMMA] = ACTIONS(2697), - [anon_sym_RBRACK] = ACTIONS(2717), - [anon_sym_LPAREN] = ACTIONS(895), - [anon_sym_ref] = ACTIONS(897), - [anon_sym_LBRACE] = ACTIONS(1487), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1479), + [anon_sym_COMMA] = ACTIONS(2717), + [anon_sym_LPAREN] = ACTIONS(659), + [anon_sym_ref] = ACTIONS(663), + [anon_sym_LBRACE] = ACTIONS(1481), + [anon_sym_RBRACE] = ACTIONS(2719), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1061), + [anon_sym_new] = ACTIONS(1059), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1067), - [anon_sym_BANG] = ACTIONS(1495), - [anon_sym_TILDE] = ACTIONS(1495), - [anon_sym_PLUS_PLUS] = ACTIONS(1495), - [anon_sym_DASH_DASH] = ACTIONS(1495), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(1485), + [anon_sym_TILDE] = ACTIONS(1485), + [anon_sym_PLUS_PLUS] = ACTIONS(1485), + [anon_sym_DASH_DASH] = ACTIONS(1485), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1493), - [anon_sym_DASH] = ACTIONS(1493), - [anon_sym_STAR] = ACTIONS(905), - [anon_sym_CARET] = ACTIONS(1495), - [anon_sym_AMP] = ACTIONS(1495), + [anon_sym_PLUS] = ACTIONS(1483), + [anon_sym_DASH] = ACTIONS(1483), + [anon_sym_STAR] = ACTIONS(683), + [anon_sym_CARET] = ACTIONS(1485), + [anon_sym_AMP] = ACTIONS(1485), [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(1067), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1079), + [anon_sym_throw] = ACTIONS(1077), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1081), - [anon_sym_DOT_DOT] = ACTIONS(911), + [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), @@ -137722,7 +137608,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(1089), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -137739,84 +137625,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [570] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(5910), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2247), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(5044), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3379), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3080), - [sym_postfix_unary_expression] = STATE(3111), - [sym_prefix_unary_expression] = STATE(3111), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6154), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3080), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3111), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3080), - [sym_member_access_expression] = STATE(2484), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3111), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7575), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(3080), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3080), - [sym_typeof_expression] = STATE(3080), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2484), - [sym_literal] = STATE(3080), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(5873), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2238), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(5171), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3468), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3102), + [sym_postfix_unary_expression] = STATE(3079), + [sym_prefix_unary_expression] = STATE(3079), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6134), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3102), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3079), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3102), + [sym_member_access_expression] = STATE(2472), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3079), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7309), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym__anonymous_object_member_declarator] = STATE(6959), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(3102), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3102), + [sym_typeof_expression] = STATE(3102), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2472), + [sym_literal] = STATE(3102), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2297), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(570), [sym_preproc_endregion] = STATE(570), [sym_preproc_line] = STATE(570), @@ -137826,50 +137713,49 @@ 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(3067), - [aux_sym_array_rank_specifier_repeat1] = STATE(6750), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1481), - [anon_sym_COMMA] = ACTIONS(2697), - [anon_sym_RBRACK] = ACTIONS(2719), - [anon_sym_LPAREN] = ACTIONS(895), - [anon_sym_ref] = ACTIONS(897), - [anon_sym_LBRACE] = ACTIONS(1487), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1479), + [anon_sym_COMMA] = ACTIONS(2721), + [anon_sym_LPAREN] = ACTIONS(659), + [anon_sym_ref] = ACTIONS(663), + [anon_sym_LBRACE] = ACTIONS(1481), + [anon_sym_RBRACE] = ACTIONS(2723), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1061), + [anon_sym_new] = ACTIONS(1059), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1067), - [anon_sym_BANG] = ACTIONS(1495), - [anon_sym_TILDE] = ACTIONS(1495), - [anon_sym_PLUS_PLUS] = ACTIONS(1495), - [anon_sym_DASH_DASH] = ACTIONS(1495), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(1485), + [anon_sym_TILDE] = ACTIONS(1485), + [anon_sym_PLUS_PLUS] = ACTIONS(1485), + [anon_sym_DASH_DASH] = ACTIONS(1485), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1493), - [anon_sym_DASH] = ACTIONS(1493), - [anon_sym_STAR] = ACTIONS(905), - [anon_sym_CARET] = ACTIONS(1495), - [anon_sym_AMP] = ACTIONS(1495), + [anon_sym_PLUS] = ACTIONS(1483), + [anon_sym_DASH] = ACTIONS(1483), + [anon_sym_STAR] = ACTIONS(683), + [anon_sym_CARET] = ACTIONS(1485), + [anon_sym_AMP] = ACTIONS(1485), [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(1067), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1079), + [anon_sym_throw] = ACTIONS(1077), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1081), - [anon_sym_DOT_DOT] = ACTIONS(911), + [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), @@ -137894,7 +137780,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(1089), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -137911,85 +137797,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [571] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(5910), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2247), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(5151), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3379), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3080), - [sym_postfix_unary_expression] = STATE(3111), - [sym_prefix_unary_expression] = STATE(3111), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6154), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3080), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3111), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3080), - [sym_member_access_expression] = STATE(2484), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3111), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7575), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym__anonymous_object_member_declarator] = STATE(7031), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(3080), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3080), - [sym_typeof_expression] = STATE(3080), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2484), - [sym_literal] = STATE(3080), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2311), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(5873), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2238), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(5072), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3468), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3102), + [sym_postfix_unary_expression] = STATE(3079), + [sym_prefix_unary_expression] = STATE(3079), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6134), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3102), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3079), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3102), + [sym_member_access_expression] = STATE(2472), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3079), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7309), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(3102), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3102), + [sym_typeof_expression] = STATE(3102), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2472), + [sym_literal] = STATE(3102), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(571), [sym_preproc_endregion] = STATE(571), [sym_preproc_line] = STATE(571), @@ -137999,49 +137884,50 @@ 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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym_array_rank_specifier_repeat1] = STATE(6781), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1481), - [anon_sym_COMMA] = ACTIONS(2721), - [anon_sym_LPAREN] = ACTIONS(895), - [anon_sym_ref] = ACTIONS(897), - [anon_sym_LBRACE] = ACTIONS(1487), - [anon_sym_RBRACE] = ACTIONS(2723), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1479), + [anon_sym_COMMA] = ACTIONS(2695), + [anon_sym_RBRACK] = ACTIONS(2725), + [anon_sym_LPAREN] = ACTIONS(659), + [anon_sym_ref] = ACTIONS(663), + [anon_sym_LBRACE] = ACTIONS(1481), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1061), + [anon_sym_new] = ACTIONS(1059), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1067), - [anon_sym_BANG] = ACTIONS(1495), - [anon_sym_TILDE] = ACTIONS(1495), - [anon_sym_PLUS_PLUS] = ACTIONS(1495), - [anon_sym_DASH_DASH] = ACTIONS(1495), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(1485), + [anon_sym_TILDE] = ACTIONS(1485), + [anon_sym_PLUS_PLUS] = ACTIONS(1485), + [anon_sym_DASH_DASH] = ACTIONS(1485), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1493), - [anon_sym_DASH] = ACTIONS(1493), - [anon_sym_STAR] = ACTIONS(905), - [anon_sym_CARET] = ACTIONS(1495), - [anon_sym_AMP] = ACTIONS(1495), + [anon_sym_PLUS] = ACTIONS(1483), + [anon_sym_DASH] = ACTIONS(1483), + [anon_sym_STAR] = ACTIONS(683), + [anon_sym_CARET] = ACTIONS(1485), + [anon_sym_AMP] = ACTIONS(1485), [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(1067), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1079), + [anon_sym_throw] = ACTIONS(1077), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1081), - [anon_sym_DOT_DOT] = ACTIONS(911), + [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), @@ -138066,7 +137952,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(1089), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -138083,84 +137969,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [572] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(5910), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2247), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(4917), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3379), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3080), - [sym_postfix_unary_expression] = STATE(3111), - [sym_prefix_unary_expression] = STATE(3111), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6154), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3080), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3111), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3080), - [sym_member_access_expression] = STATE(2484), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3111), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7575), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(3080), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3080), - [sym_typeof_expression] = STATE(3080), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2484), - [sym_literal] = STATE(3080), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(5873), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2238), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(5012), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3468), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3102), + [sym_postfix_unary_expression] = STATE(3079), + [sym_prefix_unary_expression] = STATE(3079), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6134), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3102), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3079), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3102), + [sym_member_access_expression] = STATE(2472), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3079), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7309), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(3102), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3102), + [sym_typeof_expression] = STATE(3102), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2472), + [sym_literal] = STATE(3102), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(572), [sym_preproc_endregion] = STATE(572), [sym_preproc_line] = STATE(572), @@ -138170,50 +138056,50 @@ 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(3067), - [aux_sym_array_rank_specifier_repeat1] = STATE(6835), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym_array_rank_specifier_repeat1] = STATE(6741), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1481), - [anon_sym_COMMA] = ACTIONS(2697), - [anon_sym_RBRACK] = ACTIONS(2725), - [anon_sym_LPAREN] = ACTIONS(895), - [anon_sym_ref] = ACTIONS(897), - [anon_sym_LBRACE] = ACTIONS(1487), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1479), + [anon_sym_COMMA] = ACTIONS(2695), + [anon_sym_RBRACK] = ACTIONS(2727), + [anon_sym_LPAREN] = ACTIONS(659), + [anon_sym_ref] = ACTIONS(663), + [anon_sym_LBRACE] = ACTIONS(1481), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1061), + [anon_sym_new] = ACTIONS(1059), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1067), - [anon_sym_BANG] = ACTIONS(1495), - [anon_sym_TILDE] = ACTIONS(1495), - [anon_sym_PLUS_PLUS] = ACTIONS(1495), - [anon_sym_DASH_DASH] = ACTIONS(1495), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(1485), + [anon_sym_TILDE] = ACTIONS(1485), + [anon_sym_PLUS_PLUS] = ACTIONS(1485), + [anon_sym_DASH_DASH] = ACTIONS(1485), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1493), - [anon_sym_DASH] = ACTIONS(1493), - [anon_sym_STAR] = ACTIONS(905), - [anon_sym_CARET] = ACTIONS(1495), - [anon_sym_AMP] = ACTIONS(1495), + [anon_sym_PLUS] = ACTIONS(1483), + [anon_sym_DASH] = ACTIONS(1483), + [anon_sym_STAR] = ACTIONS(683), + [anon_sym_CARET] = ACTIONS(1485), + [anon_sym_AMP] = ACTIONS(1485), [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(1067), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1079), + [anon_sym_throw] = ACTIONS(1077), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1081), - [anon_sym_DOT_DOT] = ACTIONS(911), + [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), @@ -138238,7 +138124,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(1089), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -138255,85 +138141,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [573] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(5910), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2247), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5920), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(5067), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3379), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3080), - [sym_postfix_unary_expression] = STATE(3111), - [sym_prefix_unary_expression] = STATE(3111), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6154), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3080), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3111), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3080), - [sym_member_access_expression] = STATE(2484), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3111), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7575), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_declaration_expression] = STATE(6974), - [sym_default_expression] = STATE(3080), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3080), - [sym_typeof_expression] = STATE(3080), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2484), - [sym_literal] = STATE(3080), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(5873), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2238), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(4958), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3468), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3102), + [sym_postfix_unary_expression] = STATE(3079), + [sym_prefix_unary_expression] = STATE(3079), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6134), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3102), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3079), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3102), + [sym_member_access_expression] = STATE(2472), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3079), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7309), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(3102), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3102), + [sym_typeof_expression] = STATE(3102), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2472), + [sym_literal] = STATE(3102), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(573), [sym_preproc_endregion] = STATE(573), [sym_preproc_line] = STATE(573), @@ -138343,49 +138228,50 @@ 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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym_array_rank_specifier_repeat1] = STATE(6729), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1481), - [anon_sym_LPAREN] = ACTIONS(895), - [anon_sym_ref] = ACTIONS(2727), - [anon_sym_LBRACE] = ACTIONS(1487), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1479), + [anon_sym_COMMA] = ACTIONS(2695), + [anon_sym_RBRACK] = ACTIONS(2729), + [anon_sym_LPAREN] = ACTIONS(659), + [anon_sym_ref] = ACTIONS(663), + [anon_sym_LBRACE] = ACTIONS(1481), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1061), - [anon_sym_in] = ACTIONS(2729), - [anon_sym_out] = ACTIONS(2729), + [anon_sym_new] = ACTIONS(1059), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1067), - [anon_sym_BANG] = ACTIONS(1495), - [anon_sym_TILDE] = ACTIONS(1495), - [anon_sym_PLUS_PLUS] = ACTIONS(1495), - [anon_sym_DASH_DASH] = ACTIONS(1495), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(1485), + [anon_sym_TILDE] = ACTIONS(1485), + [anon_sym_PLUS_PLUS] = ACTIONS(1485), + [anon_sym_DASH_DASH] = ACTIONS(1485), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1493), - [anon_sym_DASH] = ACTIONS(1493), - [anon_sym_STAR] = ACTIONS(905), - [anon_sym_CARET] = ACTIONS(1495), - [anon_sym_AMP] = ACTIONS(1495), + [anon_sym_PLUS] = ACTIONS(1483), + [anon_sym_DASH] = ACTIONS(1483), + [anon_sym_STAR] = ACTIONS(683), + [anon_sym_CARET] = ACTIONS(1485), + [anon_sym_AMP] = ACTIONS(1485), [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(1067), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1079), + [anon_sym_throw] = ACTIONS(1077), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1081), - [anon_sym_DOT_DOT] = ACTIONS(911), + [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), @@ -138410,7 +138296,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(1089), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -138427,84 +138313,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [574] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(5910), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2247), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(5015), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3379), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3080), - [sym_postfix_unary_expression] = STATE(3111), - [sym_prefix_unary_expression] = STATE(3111), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6154), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3080), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3111), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3080), - [sym_member_access_expression] = STATE(2484), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3111), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7575), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(3080), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3080), - [sym_typeof_expression] = STATE(3080), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2484), - [sym_literal] = STATE(3080), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(5873), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2238), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(4869), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3468), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3102), + [sym_postfix_unary_expression] = STATE(3079), + [sym_prefix_unary_expression] = STATE(3079), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6134), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3102), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3079), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3102), + [sym_member_access_expression] = STATE(2472), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3079), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7309), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(3102), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3102), + [sym_typeof_expression] = STATE(3102), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2472), + [sym_literal] = STATE(3102), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(574), [sym_preproc_endregion] = STATE(574), [sym_preproc_line] = STATE(574), @@ -138514,50 +138400,50 @@ 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(3067), - [aux_sym_array_rank_specifier_repeat1] = STATE(6862), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym_array_rank_specifier_repeat1] = STATE(6971), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1481), - [anon_sym_COMMA] = ACTIONS(2697), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1479), + [anon_sym_COMMA] = ACTIONS(2695), [anon_sym_RBRACK] = ACTIONS(2731), - [anon_sym_LPAREN] = ACTIONS(895), - [anon_sym_ref] = ACTIONS(897), - [anon_sym_LBRACE] = ACTIONS(1487), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_LPAREN] = ACTIONS(659), + [anon_sym_ref] = ACTIONS(663), + [anon_sym_LBRACE] = ACTIONS(1481), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1061), + [anon_sym_new] = ACTIONS(1059), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1067), - [anon_sym_BANG] = ACTIONS(1495), - [anon_sym_TILDE] = ACTIONS(1495), - [anon_sym_PLUS_PLUS] = ACTIONS(1495), - [anon_sym_DASH_DASH] = ACTIONS(1495), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(1485), + [anon_sym_TILDE] = ACTIONS(1485), + [anon_sym_PLUS_PLUS] = ACTIONS(1485), + [anon_sym_DASH_DASH] = ACTIONS(1485), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1493), - [anon_sym_DASH] = ACTIONS(1493), - [anon_sym_STAR] = ACTIONS(905), - [anon_sym_CARET] = ACTIONS(1495), - [anon_sym_AMP] = ACTIONS(1495), + [anon_sym_PLUS] = ACTIONS(1483), + [anon_sym_DASH] = ACTIONS(1483), + [anon_sym_STAR] = ACTIONS(683), + [anon_sym_CARET] = ACTIONS(1485), + [anon_sym_AMP] = ACTIONS(1485), [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(1067), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1079), + [anon_sym_throw] = ACTIONS(1077), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1081), - [anon_sym_DOT_DOT] = ACTIONS(911), + [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), @@ -138582,7 +138468,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(1089), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -138599,84 +138485,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [575] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(5703), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2225), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(2291), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(5495), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3664), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3080), - [sym_postfix_unary_expression] = STATE(3111), - [sym_prefix_unary_expression] = STATE(3111), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6161), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3080), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3111), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3080), - [sym_member_access_expression] = STATE(2484), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3111), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7773), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(3080), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3080), - [sym_typeof_expression] = STATE(3080), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2484), - [sym_literal] = STATE(3080), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(5675), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2212), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(2279), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(5482), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3660), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3102), + [sym_postfix_unary_expression] = STATE(3079), + [sym_prefix_unary_expression] = STATE(3079), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6163), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3102), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3079), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3102), + [sym_member_access_expression] = STATE(2472), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3079), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7633), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(3102), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3102), + [sym_typeof_expression] = STATE(3102), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2472), + [sym_literal] = STATE(3102), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(575), [sym_preproc_endregion] = STATE(575), [sym_preproc_line] = STATE(575), @@ -138686,62 +138572,62 @@ 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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), - [sym__identifier_token] = ACTIONS(2693), - [anon_sym_alias] = ACTIONS(2693), - [anon_sym_global] = ACTIONS(2693), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1481), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), + [sym__identifier_token] = ACTIONS(2689), + [anon_sym_alias] = ACTIONS(2689), + [anon_sym_global] = ACTIONS(2689), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1479), [anon_sym_LPAREN] = ACTIONS(2733), - [anon_sym_ref] = ACTIONS(2693), - [anon_sym_LBRACE] = ACTIONS(1487), - [anon_sym_delegate] = ACTIONS(2693), - [anon_sym_async] = ACTIONS(1047), - [anon_sym_file] = ACTIONS(2693), - [anon_sym_new] = ACTIONS(1101), - [anon_sym_readonly] = ACTIONS(2693), - [anon_sym_in] = ACTIONS(2693), - [anon_sym_out] = ACTIONS(2693), - [anon_sym_where] = ACTIONS(2693), - [anon_sym_notnull] = ACTIONS(2693), - [anon_sym_unmanaged] = ACTIONS(2693), - [anon_sym_checked] = ACTIONS(1067), - [anon_sym_BANG] = ACTIONS(2021), - [anon_sym_TILDE] = ACTIONS(2021), - [anon_sym_PLUS_PLUS] = ACTIONS(2021), - [anon_sym_DASH_DASH] = ACTIONS(2021), + [anon_sym_ref] = ACTIONS(2689), + [anon_sym_LBRACE] = ACTIONS(1481), + [anon_sym_delegate] = ACTIONS(2689), + [anon_sym_async] = ACTIONS(1045), + [anon_sym_file] = ACTIONS(2689), + [anon_sym_new] = ACTIONS(1095), + [anon_sym_readonly] = ACTIONS(2689), + [anon_sym_in] = ACTIONS(2689), + [anon_sym_out] = ACTIONS(2689), + [anon_sym_where] = ACTIONS(2689), + [anon_sym_notnull] = ACTIONS(2689), + [anon_sym_unmanaged] = ACTIONS(2689), + [anon_sym_checked] = ACTIONS(1065), + [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(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(2019), - [anon_sym_DASH] = ACTIONS(2019), - [anon_sym_STAR] = ACTIONS(1229), - [anon_sym_CARET] = ACTIONS(2021), - [anon_sym_AMP] = ACTIONS(2021), - [anon_sym_this] = ACTIONS(2693), - [anon_sym_scoped] = ACTIONS(2693), + [anon_sym_PLUS] = ACTIONS(2013), + [anon_sym_DASH] = ACTIONS(2013), + [anon_sym_STAR] = ACTIONS(1227), + [anon_sym_CARET] = ACTIONS(2015), + [anon_sym_AMP] = ACTIONS(2015), + [anon_sym_this] = ACTIONS(2689), + [anon_sym_scoped] = ACTIONS(2689), [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(2693), - [sym_predefined_type] = ACTIONS(2693), - [anon_sym_unchecked] = ACTIONS(1067), - [anon_sym_yield] = ACTIONS(2693), + [anon_sym_var] = ACTIONS(2689), + [sym_predefined_type] = ACTIONS(2689), + [anon_sym_unchecked] = ACTIONS(1065), + [anon_sym_yield] = ACTIONS(2689), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1233), - [anon_sym_when] = ACTIONS(2693), - [anon_sym_await] = ACTIONS(1235), - [anon_sym_DOT_DOT] = ACTIONS(1237), - [anon_sym_from] = ACTIONS(2693), - [anon_sym_into] = ACTIONS(2693), - [anon_sym_join] = ACTIONS(2693), - [anon_sym_on] = ACTIONS(2693), - [anon_sym_equals] = ACTIONS(2693), - [anon_sym_let] = ACTIONS(2693), - [anon_sym_orderby] = ACTIONS(2693), - [anon_sym_ascending] = ACTIONS(2693), - [anon_sym_descending] = ACTIONS(2693), - [anon_sym_group] = ACTIONS(2693), - [anon_sym_by] = ACTIONS(2693), - [anon_sym_select] = ACTIONS(2693), + [anon_sym_throw] = ACTIONS(1231), + [anon_sym_when] = ACTIONS(2689), + [anon_sym_await] = ACTIONS(1233), + [anon_sym_DOT_DOT] = ACTIONS(1235), + [anon_sym_from] = ACTIONS(2689), + [anon_sym_into] = ACTIONS(2689), + [anon_sym_join] = ACTIONS(2689), + [anon_sym_on] = ACTIONS(2689), + [anon_sym_equals] = ACTIONS(2689), + [anon_sym_let] = ACTIONS(2689), + [anon_sym_orderby] = ACTIONS(2689), + [anon_sym_ascending] = ACTIONS(2689), + [anon_sym_descending] = ACTIONS(2689), + [anon_sym_group] = ACTIONS(2689), + [anon_sym_by] = ACTIONS(2689), + [anon_sym_select] = ACTIONS(2689), [anon_sym_stackalloc] = ACTIONS(127), [anon_sym_sizeof] = ACTIONS(129), [anon_sym_typeof] = ACTIONS(131), @@ -138754,7 +138640,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(1089), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -138771,85 +138657,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [576] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(5910), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2247), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(5151), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3379), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3080), - [sym_postfix_unary_expression] = STATE(3111), - [sym_prefix_unary_expression] = STATE(3111), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6154), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3080), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3111), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3080), - [sym_member_access_expression] = STATE(2484), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3111), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7575), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym__anonymous_object_member_declarator] = STATE(6970), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(3080), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3080), - [sym_typeof_expression] = STATE(3080), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2484), - [sym_literal] = STATE(3080), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2311), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(5873), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2238), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(5171), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3468), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3102), + [sym_postfix_unary_expression] = STATE(3079), + [sym_prefix_unary_expression] = STATE(3079), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6134), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3102), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3079), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3102), + [sym_member_access_expression] = STATE(2472), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3079), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7309), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym__anonymous_object_member_declarator] = STATE(6832), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(3102), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3102), + [sym_typeof_expression] = STATE(3102), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2472), + [sym_literal] = STATE(3102), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2297), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(576), [sym_preproc_endregion] = STATE(576), [sym_preproc_line] = STATE(576), @@ -138859,49 +138745,49 @@ 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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1481), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1479), [anon_sym_COMMA] = ACTIONS(2735), - [anon_sym_LPAREN] = ACTIONS(895), - [anon_sym_ref] = ACTIONS(897), - [anon_sym_LBRACE] = ACTIONS(1487), + [anon_sym_LPAREN] = ACTIONS(659), + [anon_sym_ref] = ACTIONS(663), + [anon_sym_LBRACE] = ACTIONS(1481), [anon_sym_RBRACE] = ACTIONS(2737), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1061), + [anon_sym_new] = ACTIONS(1059), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1067), - [anon_sym_BANG] = ACTIONS(1495), - [anon_sym_TILDE] = ACTIONS(1495), - [anon_sym_PLUS_PLUS] = ACTIONS(1495), - [anon_sym_DASH_DASH] = ACTIONS(1495), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(1485), + [anon_sym_TILDE] = ACTIONS(1485), + [anon_sym_PLUS_PLUS] = ACTIONS(1485), + [anon_sym_DASH_DASH] = ACTIONS(1485), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1493), - [anon_sym_DASH] = ACTIONS(1493), - [anon_sym_STAR] = ACTIONS(905), - [anon_sym_CARET] = ACTIONS(1495), - [anon_sym_AMP] = ACTIONS(1495), + [anon_sym_PLUS] = ACTIONS(1483), + [anon_sym_DASH] = ACTIONS(1483), + [anon_sym_STAR] = ACTIONS(683), + [anon_sym_CARET] = ACTIONS(1485), + [anon_sym_AMP] = ACTIONS(1485), [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(1067), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1079), + [anon_sym_throw] = ACTIONS(1077), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1081), - [anon_sym_DOT_DOT] = ACTIONS(911), + [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), @@ -138926,7 +138812,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(1089), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -138943,84 +138829,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [577] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(5910), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2247), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(4907), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3379), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3080), - [sym_postfix_unary_expression] = STATE(3111), - [sym_prefix_unary_expression] = STATE(3111), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6154), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3080), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3111), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3080), - [sym_member_access_expression] = STATE(2484), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3111), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7575), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(3080), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3080), - [sym_typeof_expression] = STATE(3080), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2484), - [sym_literal] = STATE(3080), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(5873), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2238), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(4918), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3468), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3102), + [sym_postfix_unary_expression] = STATE(3079), + [sym_prefix_unary_expression] = STATE(3079), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6134), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3102), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3079), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3102), + [sym_member_access_expression] = STATE(2472), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3079), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7309), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(3102), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3102), + [sym_typeof_expression] = STATE(3102), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2472), + [sym_literal] = STATE(3102), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(577), [sym_preproc_endregion] = STATE(577), [sym_preproc_line] = STATE(577), @@ -139030,50 +138916,50 @@ 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(3067), - [aux_sym_array_rank_specifier_repeat1] = STATE(6824), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym_array_rank_specifier_repeat1] = STATE(6907), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1481), - [anon_sym_COMMA] = ACTIONS(2697), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1479), + [anon_sym_COMMA] = ACTIONS(2695), [anon_sym_RBRACK] = ACTIONS(2739), - [anon_sym_LPAREN] = ACTIONS(895), - [anon_sym_ref] = ACTIONS(897), - [anon_sym_LBRACE] = ACTIONS(1487), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_LPAREN] = ACTIONS(659), + [anon_sym_ref] = ACTIONS(663), + [anon_sym_LBRACE] = ACTIONS(1481), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1061), + [anon_sym_new] = ACTIONS(1059), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1067), - [anon_sym_BANG] = ACTIONS(1495), - [anon_sym_TILDE] = ACTIONS(1495), - [anon_sym_PLUS_PLUS] = ACTIONS(1495), - [anon_sym_DASH_DASH] = ACTIONS(1495), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(1485), + [anon_sym_TILDE] = ACTIONS(1485), + [anon_sym_PLUS_PLUS] = ACTIONS(1485), + [anon_sym_DASH_DASH] = ACTIONS(1485), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1493), - [anon_sym_DASH] = ACTIONS(1493), - [anon_sym_STAR] = ACTIONS(905), - [anon_sym_CARET] = ACTIONS(1495), - [anon_sym_AMP] = ACTIONS(1495), + [anon_sym_PLUS] = ACTIONS(1483), + [anon_sym_DASH] = ACTIONS(1483), + [anon_sym_STAR] = ACTIONS(683), + [anon_sym_CARET] = ACTIONS(1485), + [anon_sym_AMP] = ACTIONS(1485), [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(1067), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1079), + [anon_sym_throw] = ACTIONS(1077), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1081), - [anon_sym_DOT_DOT] = ACTIONS(911), + [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), @@ -139098,7 +138984,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(1089), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -139115,85 +139001,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [578] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(5910), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2247), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(5151), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3379), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3080), - [sym_postfix_unary_expression] = STATE(3111), - [sym_prefix_unary_expression] = STATE(3111), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6154), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3080), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3111), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3080), - [sym_member_access_expression] = STATE(2484), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3111), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7575), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym__anonymous_object_member_declarator] = STATE(6849), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(3080), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3080), - [sym_typeof_expression] = STATE(3080), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2484), - [sym_literal] = STATE(3080), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2311), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(5873), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2238), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(5047), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3468), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3102), + [sym_postfix_unary_expression] = STATE(3079), + [sym_prefix_unary_expression] = STATE(3079), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6134), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3102), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3079), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3102), + [sym_member_access_expression] = STATE(2472), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3079), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7309), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(3102), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3102), + [sym_typeof_expression] = STATE(3102), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2472), + [sym_literal] = STATE(3102), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(578), [sym_preproc_endregion] = STATE(578), [sym_preproc_line] = STATE(578), @@ -139203,49 +139088,50 @@ 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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym_array_rank_specifier_repeat1] = STATE(6884), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1481), - [anon_sym_COMMA] = ACTIONS(2741), - [anon_sym_LPAREN] = ACTIONS(895), - [anon_sym_ref] = ACTIONS(897), - [anon_sym_LBRACE] = ACTIONS(1487), - [anon_sym_RBRACE] = ACTIONS(2743), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1479), + [anon_sym_COMMA] = ACTIONS(2695), + [anon_sym_RBRACK] = ACTIONS(2741), + [anon_sym_LPAREN] = ACTIONS(659), + [anon_sym_ref] = ACTIONS(663), + [anon_sym_LBRACE] = ACTIONS(1481), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1061), + [anon_sym_new] = ACTIONS(1059), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1067), - [anon_sym_BANG] = ACTIONS(1495), - [anon_sym_TILDE] = ACTIONS(1495), - [anon_sym_PLUS_PLUS] = ACTIONS(1495), - [anon_sym_DASH_DASH] = ACTIONS(1495), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(1485), + [anon_sym_TILDE] = ACTIONS(1485), + [anon_sym_PLUS_PLUS] = ACTIONS(1485), + [anon_sym_DASH_DASH] = ACTIONS(1485), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1493), - [anon_sym_DASH] = ACTIONS(1493), - [anon_sym_STAR] = ACTIONS(905), - [anon_sym_CARET] = ACTIONS(1495), - [anon_sym_AMP] = ACTIONS(1495), + [anon_sym_PLUS] = ACTIONS(1483), + [anon_sym_DASH] = ACTIONS(1483), + [anon_sym_STAR] = ACTIONS(683), + [anon_sym_CARET] = ACTIONS(1485), + [anon_sym_AMP] = ACTIONS(1485), [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(1067), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1079), + [anon_sym_throw] = ACTIONS(1077), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1081), - [anon_sym_DOT_DOT] = ACTIONS(911), + [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), @@ -139270,7 +139156,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(1089), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -139287,85 +139173,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [579] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2474), - [sym__name] = STATE(5634), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2204), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(5547), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3664), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3080), - [sym_postfix_unary_expression] = STATE(3111), - [sym_prefix_unary_expression] = STATE(3111), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6161), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3080), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3111), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3080), - [sym_member_access_expression] = STATE(2484), - [sym_member_binding_expression] = STATE(3079), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3111), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7773), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(3080), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3080), - [sym_typeof_expression] = STATE(3080), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2484), - [sym_literal] = STATE(3080), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(5873), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2238), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(5196), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3468), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3102), + [sym_postfix_unary_expression] = STATE(3079), + [sym_prefix_unary_expression] = STATE(3079), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6134), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3102), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3079), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3102), + [sym_member_access_expression] = STATE(2472), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3079), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7309), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(3102), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3102), + [sym_typeof_expression] = STATE(3102), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2472), + [sym_literal] = STATE(3102), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(579), [sym_preproc_endregion] = STATE(579), [sym_preproc_line] = STATE(579), @@ -139375,48 +139260,49 @@ 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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1481), - [anon_sym_LPAREN] = ACTIONS(2015), - [anon_sym_ref] = ACTIONS(2017), - [anon_sym_LBRACE] = ACTIONS(1487), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1479), + [anon_sym_COMMA] = ACTIONS(2743), + [anon_sym_RBRACK] = ACTIONS(2743), + [anon_sym_LPAREN] = ACTIONS(659), + [anon_sym_ref] = ACTIONS(663), + [anon_sym_LBRACE] = ACTIONS(1481), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1101), + [anon_sym_new] = ACTIONS(1059), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1067), - [anon_sym_BANG] = ACTIONS(2021), - [anon_sym_TILDE] = ACTIONS(2021), - [anon_sym_PLUS_PLUS] = ACTIONS(2021), - [anon_sym_DASH_DASH] = ACTIONS(2021), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(1485), + [anon_sym_TILDE] = ACTIONS(1485), + [anon_sym_PLUS_PLUS] = ACTIONS(1485), + [anon_sym_DASH_DASH] = ACTIONS(1485), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(2019), - [anon_sym_DASH] = ACTIONS(2019), - [anon_sym_STAR] = ACTIONS(1229), - [anon_sym_CARET] = ACTIONS(2021), - [anon_sym_AMP] = ACTIONS(2021), + [anon_sym_PLUS] = ACTIONS(1483), + [anon_sym_DASH] = ACTIONS(1483), + [anon_sym_STAR] = ACTIONS(683), + [anon_sym_CARET] = ACTIONS(1485), + [anon_sym_AMP] = ACTIONS(1485), [anon_sym_this] = ACTIONS(83), - [anon_sym_DOT] = ACTIONS(2745), [anon_sym_scoped] = ACTIONS(85), [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1067), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1233), + [anon_sym_throw] = ACTIONS(1077), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1235), - [anon_sym_DOT_DOT] = ACTIONS(1237), + [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), @@ -139441,7 +139327,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(1089), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -139458,84 +139344,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [580] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(5160), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2204), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(2291), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(4871), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3520), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3080), - [sym_postfix_unary_expression] = STATE(3111), - [sym_prefix_unary_expression] = STATE(3111), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6154), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3080), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3111), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3080), - [sym_member_access_expression] = STATE(2484), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3111), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7530), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(3080), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3080), - [sym_typeof_expression] = STATE(3080), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2484), - [sym_literal] = STATE(3080), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(5676), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2223), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5693), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(5147), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3468), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3102), + [sym_postfix_unary_expression] = STATE(3079), + [sym_prefix_unary_expression] = STATE(3079), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6134), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3102), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3079), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3102), + [sym_member_access_expression] = STATE(2472), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3079), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7309), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_declaration_expression] = STATE(6798), + [sym_default_expression] = STATE(3102), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3102), + [sym_typeof_expression] = STATE(3102), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2472), + [sym_literal] = STATE(3102), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(580), [sym_preproc_endregion] = STATE(580), [sym_preproc_line] = STATE(580), @@ -139545,49 +139432,48 @@ 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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1481), - [anon_sym_LPAREN] = ACTIONS(43), - [anon_sym_ref] = ACTIONS(661), - [anon_sym_struct] = ACTIONS(2747), - [anon_sym_LBRACE] = ACTIONS(1487), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1479), + [anon_sym_LPAREN] = ACTIONS(659), + [anon_sym_ref] = ACTIONS(2745), + [anon_sym_LBRACE] = ACTIONS(1481), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1061), - [anon_sym_readonly] = ACTIONS(2749), + [anon_sym_new] = ACTIONS(1059), + [anon_sym_readonly] = ACTIONS(2747), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = 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_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(1485), + [anon_sym_TILDE] = ACTIONS(1485), + [anon_sym_PLUS_PLUS] = ACTIONS(1485), + [anon_sym_DASH_DASH] = ACTIONS(1485), [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_PLUS] = ACTIONS(1483), + [anon_sym_DASH] = ACTIONS(1483), + [anon_sym_STAR] = ACTIONS(683), + [anon_sym_CARET] = ACTIONS(1485), + [anon_sym_AMP] = ACTIONS(1485), [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(2749), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1067), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1589), + [anon_sym_throw] = ACTIONS(1077), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1591), - [anon_sym_DOT_DOT] = ACTIONS(123), + [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), @@ -139612,7 +139498,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(1089), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -139629,85 +139515,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [581] = { - [sym_attribute_argument] = STATE(6963), - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(5910), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2247), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(5227), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3379), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3080), - [sym_postfix_unary_expression] = STATE(3111), - [sym_prefix_unary_expression] = STATE(3111), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6154), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3080), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3111), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3080), - [sym_member_access_expression] = STATE(2484), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3111), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7575), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(3080), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3080), - [sym_typeof_expression] = STATE(3080), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2484), - [sym_literal] = STATE(3080), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2287), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(3118), + [sym__name] = STATE(5528), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2196), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(5317), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3660), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3102), + [sym_postfix_unary_expression] = STATE(3079), + [sym_prefix_unary_expression] = STATE(3079), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6163), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3102), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3079), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3102), + [sym_member_access_expression] = STATE(2472), + [sym_member_binding_expression] = STATE(3267), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3079), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7633), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(3102), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3102), + [sym_typeof_expression] = STATE(3102), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2472), + [sym_literal] = STATE(3102), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(581), [sym_preproc_endregion] = STATE(581), [sym_preproc_line] = STATE(581), @@ -139717,48 +139603,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(581), [sym_preproc_define] = STATE(581), [sym_preproc_undef] = STATE(581), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1481), - [anon_sym_LPAREN] = ACTIONS(895), - [anon_sym_RPAREN] = ACTIONS(2751), - [anon_sym_ref] = ACTIONS(897), - [anon_sym_LBRACE] = ACTIONS(1487), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1149), + [anon_sym_LPAREN] = ACTIONS(2009), + [anon_sym_ref] = ACTIONS(2011), + [anon_sym_LBRACE] = ACTIONS(1481), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1061), + [anon_sym_new] = ACTIONS(1095), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1067), - [anon_sym_BANG] = ACTIONS(1495), - [anon_sym_TILDE] = ACTIONS(1495), - [anon_sym_PLUS_PLUS] = ACTIONS(1495), - [anon_sym_DASH_DASH] = ACTIONS(1495), + [anon_sym_checked] = ACTIONS(1065), + [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(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1493), - [anon_sym_DASH] = ACTIONS(1493), - [anon_sym_STAR] = ACTIONS(905), - [anon_sym_CARET] = ACTIONS(1495), - [anon_sym_AMP] = ACTIONS(1495), + [anon_sym_PLUS] = ACTIONS(2013), + [anon_sym_DASH] = ACTIONS(2013), + [anon_sym_STAR] = ACTIONS(1227), + [anon_sym_CARET] = ACTIONS(2015), + [anon_sym_AMP] = ACTIONS(2015), [anon_sym_this] = ACTIONS(83), + [anon_sym_DOT] = ACTIONS(2751), [anon_sym_scoped] = ACTIONS(85), [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1067), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1079), + [anon_sym_throw] = ACTIONS(1231), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1081), - [anon_sym_DOT_DOT] = ACTIONS(911), + [anon_sym_await] = ACTIONS(1233), + [anon_sym_DOT_DOT] = ACTIONS(1235), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -139783,7 +139669,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(1089), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -139800,86 +139686,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [582] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_using_variable_declaration] = STATE(7402), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(5312), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2225), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5810), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_tuple_element] = STATE(7283), - [sym_expression] = STATE(5522), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3379), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3080), - [sym_postfix_unary_expression] = STATE(3111), - [sym_prefix_unary_expression] = STATE(3111), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6154), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3080), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3111), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3080), - [sym_member_access_expression] = STATE(2484), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3111), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7575), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(3080), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3080), - [sym_typeof_expression] = STATE(3080), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2484), - [sym_literal] = STATE(3080), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(5152), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2196), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(5541), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3356), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3102), + [sym_postfix_unary_expression] = STATE(3079), + [sym_prefix_unary_expression] = STATE(3079), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6134), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3102), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3079), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3102), + [sym_member_access_expression] = STATE(2472), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3079), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7627), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(3102), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3102), + [sym_typeof_expression] = STATE(3102), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2472), + [sym_literal] = STATE(3102), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(582), [sym_preproc_endregion] = STATE(582), [sym_preproc_line] = STATE(582), @@ -139889,47 +139773,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(582), [sym_preproc_define] = STATE(582), [sym_preproc_undef] = STATE(582), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), + [anon_sym_SEMI] = ACTIONS(2753), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1481), - [anon_sym_LPAREN] = ACTIONS(895), - [anon_sym_ref] = ACTIONS(2753), - [anon_sym_LBRACE] = ACTIONS(1487), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1479), + [anon_sym_LPAREN] = ACTIONS(1511), + [anon_sym_ref] = ACTIONS(1513), + [anon_sym_LBRACE] = ACTIONS(1481), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1061), + [anon_sym_new] = ACTIONS(1515), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1067), - [anon_sym_BANG] = ACTIONS(1495), - [anon_sym_TILDE] = ACTIONS(1495), - [anon_sym_PLUS_PLUS] = ACTIONS(1495), - [anon_sym_DASH_DASH] = ACTIONS(1495), + [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(1493), - [anon_sym_DASH] = ACTIONS(1493), - [anon_sym_STAR] = ACTIONS(905), - [anon_sym_CARET] = ACTIONS(1495), - [anon_sym_AMP] = ACTIONS(1495), + [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(1075), + [anon_sym_scoped] = ACTIONS(85), [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(2755), + [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1067), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1079), + [anon_sym_case] = ACTIONS(2755), + [anon_sym_default] = ACTIONS(2757), + [anon_sym_throw] = ACTIONS(1517), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1081), - [anon_sym_DOT_DOT] = ACTIONS(911), + [anon_sym_await] = ACTIONS(1519), + [anon_sym_DOT_DOT] = ACTIONS(1521), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -139954,7 +139840,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(1089), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -139971,85 +139857,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [583] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(5707), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2233), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5704), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(5253), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3379), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3080), - [sym_postfix_unary_expression] = STATE(3111), - [sym_prefix_unary_expression] = STATE(3111), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6154), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3080), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3111), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3080), - [sym_member_access_expression] = STATE(2484), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3111), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7575), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_declaration_expression] = STATE(7021), - [sym_default_expression] = STATE(3080), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3080), - [sym_typeof_expression] = STATE(3080), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2484), - [sym_literal] = STATE(3080), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(5873), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2238), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(4998), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3468), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3102), + [sym_postfix_unary_expression] = STATE(3079), + [sym_prefix_unary_expression] = STATE(3079), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6134), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3102), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3079), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3102), + [sym_member_access_expression] = STATE(2472), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3079), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7309), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(3102), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3102), + [sym_typeof_expression] = STATE(3102), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2472), + [sym_literal] = STATE(3102), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(583), [sym_preproc_endregion] = STATE(583), [sym_preproc_line] = STATE(583), @@ -140059,219 +139944,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(583), [sym_preproc_define] = STATE(583), [sym_preproc_undef] = STATE(583), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), - [sym__identifier_token] = ACTIONS(25), - [anon_sym_alias] = ACTIONS(29), - [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1481), - [anon_sym_LPAREN] = ACTIONS(895), - [anon_sym_ref] = ACTIONS(2757), - [anon_sym_LBRACE] = ACTIONS(1487), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), - [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1061), - [anon_sym_readonly] = ACTIONS(2759), - [anon_sym_where] = ACTIONS(29), - [anon_sym_notnull] = ACTIONS(29), - [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1067), - [anon_sym_BANG] = ACTIONS(1495), - [anon_sym_TILDE] = ACTIONS(1495), - [anon_sym_PLUS_PLUS] = ACTIONS(1495), - [anon_sym_DASH_DASH] = ACTIONS(1495), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1493), - [anon_sym_DASH] = ACTIONS(1493), - [anon_sym_STAR] = ACTIONS(905), - [anon_sym_CARET] = ACTIONS(1495), - [anon_sym_AMP] = ACTIONS(1495), - [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(1075), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(2755), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1067), - [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1079), - [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1081), - [anon_sym_DOT_DOT] = ACTIONS(911), - [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(1089), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(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(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(5160), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2204), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(5653), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3461), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3080), - [sym_postfix_unary_expression] = STATE(3111), - [sym_prefix_unary_expression] = STATE(3111), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6154), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3080), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3111), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3080), - [sym_member_access_expression] = STATE(2484), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3111), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7547), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(3080), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3080), - [sym_typeof_expression] = STATE(3080), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2484), - [sym_literal] = STATE(3080), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), - [sym_preproc_region] = STATE(584), - [sym_preproc_endregion] = STATE(584), - [sym_preproc_line] = STATE(584), - [sym_preproc_pragma] = STATE(584), - [sym_preproc_nullable] = STATE(584), - [sym_preproc_error] = STATE(584), - [sym_preproc_warning] = STATE(584), - [sym_preproc_define] = STATE(584), - [sym_preproc_undef] = STATE(584), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), - [anon_sym_SEMI] = ACTIONS(2761), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1481), - [anon_sym_LPAREN] = ACTIONS(1497), - [anon_sym_ref] = ACTIONS(1499), - [anon_sym_LBRACE] = ACTIONS(1487), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1479), + [anon_sym_COMMA] = ACTIONS(927), + [anon_sym_LPAREN] = ACTIONS(659), + [anon_sym_ref] = ACTIONS(663), + [anon_sym_LBRACE] = ACTIONS(1481), + [anon_sym_RBRACE] = ACTIONS(2759), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1501), + [anon_sym_new] = ACTIONS(1059), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = 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_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(1485), + [anon_sym_TILDE] = ACTIONS(1485), + [anon_sym_PLUS_PLUS] = ACTIONS(1485), + [anon_sym_DASH_DASH] = ACTIONS(1485), [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(1483), + [anon_sym_DASH] = ACTIONS(1483), + [anon_sym_STAR] = ACTIONS(683), + [anon_sym_CARET] = ACTIONS(1485), + [anon_sym_AMP] = ACTIONS(1485), [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(1067), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), - [anon_sym_case] = ACTIONS(2763), - [anon_sym_default] = ACTIONS(2765), - [anon_sym_throw] = ACTIONS(1503), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(1077), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1505), - [anon_sym_DOT_DOT] = ACTIONS(1507), + [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), @@ -140296,7 +140011,178 @@ 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(1089), + [aux_sym_preproc_if_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(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(5873), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2238), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(5090), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3468), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3102), + [sym_postfix_unary_expression] = STATE(3079), + [sym_prefix_unary_expression] = STATE(3079), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6134), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3102), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3079), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3102), + [sym_member_access_expression] = STATE(2472), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3079), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7309), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(3102), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3102), + [sym_typeof_expression] = STATE(3102), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2472), + [sym_literal] = STATE(3102), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), + [sym_preproc_region] = STATE(584), + [sym_preproc_endregion] = STATE(584), + [sym_preproc_line] = STATE(584), + [sym_preproc_pragma] = STATE(584), + [sym_preproc_nullable] = STATE(584), + [sym_preproc_error] = STATE(584), + [sym_preproc_warning] = STATE(584), + [sym_preproc_define] = STATE(584), + [sym_preproc_undef] = STATE(584), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), + [sym__identifier_token] = ACTIONS(25), + [anon_sym_alias] = ACTIONS(29), + [anon_sym_global] = ACTIONS(29), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1479), + [anon_sym_COMMA] = ACTIONS(935), + [anon_sym_LPAREN] = ACTIONS(659), + [anon_sym_ref] = ACTIONS(663), + [anon_sym_LBRACE] = ACTIONS(1481), + [anon_sym_RBRACE] = ACTIONS(2761), + [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(1485), + [anon_sym_TILDE] = ACTIONS(1485), + [anon_sym_PLUS_PLUS] = ACTIONS(1485), + [anon_sym_DASH_DASH] = ACTIONS(1485), + [anon_sym_true] = ACTIONS(77), + [anon_sym_false] = ACTIONS(77), + [anon_sym_PLUS] = ACTIONS(1483), + [anon_sym_DASH] = ACTIONS(1483), + [anon_sym_STAR] = ACTIONS(683), + [anon_sym_CARET] = ACTIONS(1485), + [anon_sym_AMP] = ACTIONS(1485), + [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), @@ -140313,84 +140199,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [585] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(5910), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2247), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(5021), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3379), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3080), - [sym_postfix_unary_expression] = STATE(3111), - [sym_prefix_unary_expression] = STATE(3111), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6154), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3080), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3111), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3080), - [sym_member_access_expression] = STATE(2484), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3111), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7575), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(3080), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3080), - [sym_typeof_expression] = STATE(3080), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2484), - [sym_literal] = STATE(3080), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_variable_declaration] = STATE(7292), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(5873), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2238), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5833), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(4885), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3526), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3102), + [sym_postfix_unary_expression] = STATE(3079), + [sym_prefix_unary_expression] = STATE(3079), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6134), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3102), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3079), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3102), + [sym_member_access_expression] = STATE(2472), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3079), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7455), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(3102), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3102), + [sym_typeof_expression] = STATE(3102), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2472), + [sym_literal] = STATE(3102), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(585), [sym_preproc_endregion] = STATE(585), [sym_preproc_line] = STATE(585), @@ -140400,49 +140287,48 @@ 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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), + [anon_sym_SEMI] = ACTIONS(2763), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1481), - [anon_sym_COMMA] = ACTIONS(923), - [anon_sym_LPAREN] = ACTIONS(895), - [anon_sym_ref] = ACTIONS(897), - [anon_sym_LBRACE] = ACTIONS(1487), - [anon_sym_RBRACE] = ACTIONS(2767), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1479), + [anon_sym_LPAREN] = ACTIONS(1629), + [anon_sym_ref] = ACTIONS(1631), + [anon_sym_LBRACE] = ACTIONS(1481), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1061), + [anon_sym_new] = ACTIONS(1515), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1067), - [anon_sym_BANG] = ACTIONS(1495), - [anon_sym_TILDE] = ACTIONS(1495), - [anon_sym_PLUS_PLUS] = ACTIONS(1495), - [anon_sym_DASH_DASH] = ACTIONS(1495), + [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(1493), - [anon_sym_DASH] = ACTIONS(1493), - [anon_sym_STAR] = ACTIONS(905), - [anon_sym_CARET] = ACTIONS(1495), - [anon_sym_AMP] = ACTIONS(1495), + [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_scoped] = ACTIONS(85), [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1067), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1079), + [anon_sym_throw] = ACTIONS(1633), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1081), - [anon_sym_DOT_DOT] = ACTIONS(911), + [anon_sym_await] = ACTIONS(1635), + [anon_sym_DOT_DOT] = ACTIONS(1637), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -140467,7 +140353,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(1089), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -140484,85 +140370,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [586] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2883), - [sym__name] = STATE(5634), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2204), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(5411), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3664), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3080), - [sym_postfix_unary_expression] = STATE(3111), - [sym_prefix_unary_expression] = STATE(3111), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6161), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3080), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3111), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3080), - [sym_member_access_expression] = STATE(2484), - [sym_member_binding_expression] = STATE(3697), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3111), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7773), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(3080), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3080), - [sym_typeof_expression] = STATE(3080), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2484), - [sym_literal] = STATE(3080), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(3118), + [sym__name] = STATE(5528), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2196), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(5486), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3660), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3102), + [sym_postfix_unary_expression] = STATE(3079), + [sym_prefix_unary_expression] = STATE(3079), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6163), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3102), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3079), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3102), + [sym_member_access_expression] = STATE(2472), + [sym_member_binding_expression] = STATE(3081), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3079), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7633), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(3102), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3102), + [sym_typeof_expression] = STATE(3102), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2472), + [sym_literal] = STATE(3102), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(586), [sym_preproc_endregion] = STATE(586), [sym_preproc_line] = STATE(586), @@ -140572,48 +140458,48 @@ 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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1627), - [anon_sym_LPAREN] = ACTIONS(2015), - [anon_sym_ref] = ACTIONS(2017), - [anon_sym_LBRACE] = ACTIONS(1487), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1479), + [anon_sym_LPAREN] = ACTIONS(2009), + [anon_sym_ref] = ACTIONS(2011), + [anon_sym_LBRACE] = ACTIONS(1481), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1101), + [anon_sym_new] = ACTIONS(1095), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1067), - [anon_sym_BANG] = ACTIONS(2021), - [anon_sym_TILDE] = ACTIONS(2021), - [anon_sym_PLUS_PLUS] = ACTIONS(2021), - [anon_sym_DASH_DASH] = ACTIONS(2021), + [anon_sym_checked] = ACTIONS(1065), + [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(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(2019), - [anon_sym_DASH] = ACTIONS(2019), - [anon_sym_STAR] = ACTIONS(1229), - [anon_sym_CARET] = ACTIONS(2021), - [anon_sym_AMP] = ACTIONS(2021), + [anon_sym_PLUS] = ACTIONS(2013), + [anon_sym_DASH] = ACTIONS(2013), + [anon_sym_STAR] = ACTIONS(1227), + [anon_sym_CARET] = ACTIONS(2015), + [anon_sym_AMP] = ACTIONS(2015), [anon_sym_this] = ACTIONS(83), - [anon_sym_DOT] = ACTIONS(2769), + [anon_sym_DOT] = ACTIONS(2765), [anon_sym_scoped] = ACTIONS(85), [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1067), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1233), + [anon_sym_throw] = ACTIONS(1231), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1235), - [anon_sym_DOT_DOT] = ACTIONS(1237), + [anon_sym_await] = ACTIONS(1233), + [anon_sym_DOT_DOT] = ACTIONS(1235), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -140638,7 +140524,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(1089), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -140655,86 +140541,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [587] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_using_variable_declaration] = STATE(7392), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(5312), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2225), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5810), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_tuple_element] = STATE(7283), - [sym_expression] = STATE(5407), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3379), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3080), - [sym_postfix_unary_expression] = STATE(3111), - [sym_prefix_unary_expression] = STATE(3111), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6154), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3080), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3111), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3080), - [sym_member_access_expression] = STATE(2484), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3111), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7575), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(3080), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3080), - [sym_typeof_expression] = STATE(3080), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2484), - [sym_literal] = STATE(3080), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(5873), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2238), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5693), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(4873), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3468), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3102), + [sym_postfix_unary_expression] = STATE(3079), + [sym_prefix_unary_expression] = STATE(3079), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6134), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3102), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3079), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3102), + [sym_member_access_expression] = STATE(2472), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3079), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7309), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_declaration_expression] = STATE(6798), + [sym_default_expression] = STATE(3102), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3102), + [sym_typeof_expression] = STATE(3102), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2472), + [sym_literal] = STATE(3102), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(587), [sym_preproc_endregion] = STATE(587), [sym_preproc_line] = STATE(587), @@ -140744,47 +140629,48 @@ 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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1481), - [anon_sym_LPAREN] = ACTIONS(895), - [anon_sym_ref] = ACTIONS(2753), - [anon_sym_LBRACE] = ACTIONS(1487), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1479), + [anon_sym_LPAREN] = ACTIONS(659), + [anon_sym_ref] = ACTIONS(663), + [anon_sym_LBRACE] = ACTIONS(1481), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1061), + [anon_sym_new] = ACTIONS(1059), + [anon_sym_readonly] = ACTIONS(2767), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1067), - [anon_sym_BANG] = ACTIONS(1495), - [anon_sym_TILDE] = ACTIONS(1495), - [anon_sym_PLUS_PLUS] = ACTIONS(1495), - [anon_sym_DASH_DASH] = ACTIONS(1495), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(1485), + [anon_sym_TILDE] = ACTIONS(1485), + [anon_sym_PLUS_PLUS] = ACTIONS(1485), + [anon_sym_DASH_DASH] = ACTIONS(1485), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1493), - [anon_sym_DASH] = ACTIONS(1493), - [anon_sym_STAR] = ACTIONS(905), - [anon_sym_CARET] = ACTIONS(1495), - [anon_sym_AMP] = ACTIONS(1495), + [anon_sym_PLUS] = ACTIONS(1483), + [anon_sym_DASH] = ACTIONS(1483), + [anon_sym_STAR] = ACTIONS(683), + [anon_sym_CARET] = ACTIONS(1485), + [anon_sym_AMP] = ACTIONS(1485), [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(1075), + [anon_sym_scoped] = ACTIONS(85), [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(2755), + [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1067), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1079), + [anon_sym_throw] = ACTIONS(1077), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1081), - [anon_sym_DOT_DOT] = ACTIONS(911), + [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), @@ -140809,7 +140695,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(1089), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -140826,85 +140712,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [588] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(5910), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2247), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(5151), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3379), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3080), - [sym_postfix_unary_expression] = STATE(3111), - [sym_prefix_unary_expression] = STATE(3111), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6154), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3080), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3111), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3080), - [sym_member_access_expression] = STATE(2484), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3111), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7575), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym__anonymous_object_member_declarator] = STATE(7234), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(3080), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3080), - [sym_typeof_expression] = STATE(3080), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2484), - [sym_literal] = STATE(3080), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2311), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(3180), + [sym__name] = STATE(5528), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2196), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(5628), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3660), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3102), + [sym_postfix_unary_expression] = STATE(3079), + [sym_prefix_unary_expression] = STATE(3079), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6163), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3102), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3079), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3102), + [sym_member_access_expression] = STATE(2472), + [sym_member_binding_expression] = STATE(4598), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3079), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7633), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(3102), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3102), + [sym_typeof_expression] = STATE(3102), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2472), + [sym_literal] = STATE(3102), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(588), [sym_preproc_endregion] = STATE(588), [sym_preproc_line] = STATE(588), @@ -140914,48 +140800,48 @@ 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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1481), - [anon_sym_LPAREN] = ACTIONS(895), - [anon_sym_ref] = ACTIONS(897), - [anon_sym_LBRACE] = ACTIONS(1487), - [anon_sym_RBRACE] = ACTIONS(2771), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1389), + [anon_sym_LPAREN] = ACTIONS(2009), + [anon_sym_ref] = ACTIONS(2011), + [anon_sym_LBRACE] = ACTIONS(1481), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1061), + [anon_sym_new] = ACTIONS(1095), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1067), - [anon_sym_BANG] = ACTIONS(1495), - [anon_sym_TILDE] = ACTIONS(1495), - [anon_sym_PLUS_PLUS] = ACTIONS(1495), - [anon_sym_DASH_DASH] = ACTIONS(1495), + [anon_sym_checked] = ACTIONS(1065), + [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(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1493), - [anon_sym_DASH] = ACTIONS(1493), - [anon_sym_STAR] = ACTIONS(905), - [anon_sym_CARET] = ACTIONS(1495), - [anon_sym_AMP] = ACTIONS(1495), + [anon_sym_PLUS] = ACTIONS(2013), + [anon_sym_DASH] = ACTIONS(2013), + [anon_sym_STAR] = ACTIONS(1227), + [anon_sym_CARET] = ACTIONS(2015), + [anon_sym_AMP] = ACTIONS(2015), [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), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1067), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1079), + [anon_sym_throw] = ACTIONS(1231), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1081), - [anon_sym_DOT_DOT] = ACTIONS(911), + [anon_sym_await] = ACTIONS(1233), + [anon_sym_DOT_DOT] = ACTIONS(1235), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -140980,7 +140866,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(1089), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -140997,85 +140883,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [589] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(5910), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2247), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(5151), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3379), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3080), - [sym_postfix_unary_expression] = STATE(3111), - [sym_prefix_unary_expression] = STATE(3111), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6154), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3080), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3111), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3080), - [sym_member_access_expression] = STATE(2484), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3111), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7575), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym__anonymous_object_member_declarator] = STATE(7234), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(3080), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3080), - [sym_typeof_expression] = STATE(3080), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2484), - [sym_literal] = STATE(3080), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2311), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(5873), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2238), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(4871), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3468), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3102), + [sym_postfix_unary_expression] = STATE(3079), + [sym_prefix_unary_expression] = STATE(3079), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6134), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3102), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3079), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3102), + [sym_member_access_expression] = STATE(2472), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3079), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7309), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(3102), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3102), + [sym_typeof_expression] = STATE(3102), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2472), + [sym_literal] = STATE(3102), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(589), [sym_preproc_endregion] = STATE(589), [sym_preproc_line] = STATE(589), @@ -141085,48 +140970,49 @@ 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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1481), - [anon_sym_LPAREN] = ACTIONS(895), - [anon_sym_ref] = ACTIONS(897), - [anon_sym_LBRACE] = ACTIONS(1487), - [anon_sym_RBRACE] = ACTIONS(2773), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1479), + [anon_sym_COMMA] = ACTIONS(725), + [anon_sym_LPAREN] = ACTIONS(659), + [anon_sym_ref] = ACTIONS(663), + [anon_sym_LBRACE] = ACTIONS(1481), + [anon_sym_RBRACE] = ACTIONS(2771), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1061), + [anon_sym_new] = ACTIONS(1059), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1067), - [anon_sym_BANG] = ACTIONS(1495), - [anon_sym_TILDE] = ACTIONS(1495), - [anon_sym_PLUS_PLUS] = ACTIONS(1495), - [anon_sym_DASH_DASH] = ACTIONS(1495), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(1485), + [anon_sym_TILDE] = ACTIONS(1485), + [anon_sym_PLUS_PLUS] = ACTIONS(1485), + [anon_sym_DASH_DASH] = ACTIONS(1485), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1493), - [anon_sym_DASH] = ACTIONS(1493), - [anon_sym_STAR] = ACTIONS(905), - [anon_sym_CARET] = ACTIONS(1495), - [anon_sym_AMP] = ACTIONS(1495), + [anon_sym_PLUS] = ACTIONS(1483), + [anon_sym_DASH] = ACTIONS(1483), + [anon_sym_STAR] = ACTIONS(683), + [anon_sym_CARET] = ACTIONS(1485), + [anon_sym_AMP] = ACTIONS(1485), [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(1067), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1079), + [anon_sym_throw] = ACTIONS(1077), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1081), - [anon_sym_DOT_DOT] = ACTIONS(911), + [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), @@ -141151,7 +141037,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(1089), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -141168,85 +141054,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [590] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_variable_declaration] = STATE(7680), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(5910), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2247), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5806), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(4962), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3529), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3080), - [sym_postfix_unary_expression] = STATE(3111), - [sym_prefix_unary_expression] = STATE(3111), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6154), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3080), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3111), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3080), - [sym_member_access_expression] = STATE(2484), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3111), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7444), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(3080), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3080), - [sym_typeof_expression] = STATE(3080), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2484), - [sym_literal] = STATE(3080), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2884), + [sym__name] = STATE(5528), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2196), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(5568), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3660), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3102), + [sym_postfix_unary_expression] = STATE(3079), + [sym_prefix_unary_expression] = STATE(3079), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6163), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3102), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3079), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3102), + [sym_member_access_expression] = STATE(2472), + [sym_member_binding_expression] = STATE(3837), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3079), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7633), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(3102), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3102), + [sym_typeof_expression] = STATE(3102), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2472), + [sym_literal] = STATE(3102), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(590), [sym_preproc_endregion] = STATE(590), [sym_preproc_line] = STATE(590), @@ -141256,48 +141142,48 @@ 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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), - [anon_sym_SEMI] = ACTIONS(2775), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1481), - [anon_sym_LPAREN] = ACTIONS(1575), - [anon_sym_ref] = ACTIONS(1577), - [anon_sym_LBRACE] = ACTIONS(1487), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1655), + [anon_sym_LPAREN] = ACTIONS(2009), + [anon_sym_ref] = ACTIONS(2011), + [anon_sym_LBRACE] = ACTIONS(1481), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1501), + [anon_sym_new] = ACTIONS(1095), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1067), - [anon_sym_BANG] = ACTIONS(901), - [anon_sym_TILDE] = ACTIONS(901), - [anon_sym_PLUS_PLUS] = ACTIONS(901), - [anon_sym_DASH_DASH] = ACTIONS(901), + [anon_sym_checked] = ACTIONS(1065), + [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(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(903), - [anon_sym_DASH] = ACTIONS(903), - [anon_sym_STAR] = ACTIONS(905), - [anon_sym_CARET] = ACTIONS(901), - [anon_sym_AMP] = ACTIONS(901), + [anon_sym_PLUS] = ACTIONS(2013), + [anon_sym_DASH] = ACTIONS(2013), + [anon_sym_STAR] = ACTIONS(1227), + [anon_sym_CARET] = ACTIONS(2015), + [anon_sym_AMP] = ACTIONS(2015), [anon_sym_this] = ACTIONS(83), + [anon_sym_DOT] = ACTIONS(2773), [anon_sym_scoped] = ACTIONS(85), [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1067), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1579), + [anon_sym_throw] = ACTIONS(1231), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1581), - [anon_sym_DOT_DOT] = ACTIONS(1583), + [anon_sym_await] = ACTIONS(1233), + [anon_sym_DOT_DOT] = ACTIONS(1235), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -141322,7 +141208,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(1089), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -141339,84 +141225,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [591] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(5910), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2247), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(5119), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3379), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3080), - [sym_postfix_unary_expression] = STATE(3111), - [sym_prefix_unary_expression] = STATE(3111), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6154), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3080), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3111), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3080), - [sym_member_access_expression] = STATE(2484), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3111), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7575), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(3080), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3080), - [sym_typeof_expression] = STATE(3080), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2484), - [sym_literal] = STATE(3080), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(5873), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2238), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5693), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(4907), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3468), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3102), + [sym_postfix_unary_expression] = STATE(3079), + [sym_prefix_unary_expression] = STATE(3079), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6134), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3102), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3079), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3102), + [sym_member_access_expression] = STATE(2472), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3079), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7309), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_declaration_expression] = STATE(6723), + [sym_default_expression] = STATE(3102), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3102), + [sym_typeof_expression] = STATE(3102), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2472), + [sym_literal] = STATE(3102), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(591), [sym_preproc_endregion] = STATE(591), [sym_preproc_line] = STATE(591), @@ -141426,49 +141313,48 @@ 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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1481), - [anon_sym_COMMA] = ACTIONS(2777), - [anon_sym_RBRACK] = ACTIONS(2777), - [anon_sym_LPAREN] = ACTIONS(895), - [anon_sym_ref] = ACTIONS(897), - [anon_sym_LBRACE] = ACTIONS(1487), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1479), + [anon_sym_LPAREN] = ACTIONS(659), + [anon_sym_ref] = ACTIONS(663), + [anon_sym_LBRACE] = ACTIONS(1481), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1061), + [anon_sym_new] = ACTIONS(1059), + [anon_sym_readonly] = ACTIONS(2767), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1067), - [anon_sym_BANG] = ACTIONS(1495), - [anon_sym_TILDE] = ACTIONS(1495), - [anon_sym_PLUS_PLUS] = ACTIONS(1495), - [anon_sym_DASH_DASH] = ACTIONS(1495), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(1485), + [anon_sym_TILDE] = ACTIONS(1485), + [anon_sym_PLUS_PLUS] = ACTIONS(1485), + [anon_sym_DASH_DASH] = ACTIONS(1485), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1493), - [anon_sym_DASH] = ACTIONS(1493), - [anon_sym_STAR] = ACTIONS(905), - [anon_sym_CARET] = ACTIONS(1495), - [anon_sym_AMP] = ACTIONS(1495), + [anon_sym_PLUS] = ACTIONS(1483), + [anon_sym_DASH] = ACTIONS(1483), + [anon_sym_STAR] = ACTIONS(683), + [anon_sym_CARET] = ACTIONS(1485), + [anon_sym_AMP] = ACTIONS(1485), [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(1067), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1079), + [anon_sym_throw] = ACTIONS(1077), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1081), - [anon_sym_DOT_DOT] = ACTIONS(911), + [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), @@ -141493,7 +141379,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(1089), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -141510,84 +141396,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [592] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(5160), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2204), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(5550), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3461), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3080), - [sym_postfix_unary_expression] = STATE(3111), - [sym_prefix_unary_expression] = STATE(3111), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6154), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3080), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3111), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3080), - [sym_member_access_expression] = STATE(2484), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3111), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7547), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(3080), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3080), - [sym_typeof_expression] = STATE(3080), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2484), - [sym_literal] = STATE(3080), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_using_variable_declaration] = STATE(7318), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(5182), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2212), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5793), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_tuple_element] = STATE(7166), + [sym_expression] = STATE(5334), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3468), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3102), + [sym_postfix_unary_expression] = STATE(3079), + [sym_prefix_unary_expression] = STATE(3079), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6134), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3102), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3079), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3102), + [sym_member_access_expression] = STATE(2472), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3079), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7309), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(3102), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3102), + [sym_typeof_expression] = STATE(3102), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2472), + [sym_literal] = STATE(3102), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(592), [sym_preproc_endregion] = STATE(592), [sym_preproc_line] = STATE(592), @@ -141597,49 +141485,47 @@ 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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), - [anon_sym_SEMI] = ACTIONS(2779), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1481), - [anon_sym_LPAREN] = ACTIONS(1497), - [anon_sym_ref] = ACTIONS(1499), - [anon_sym_LBRACE] = ACTIONS(1487), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1479), + [anon_sym_LPAREN] = ACTIONS(659), + [anon_sym_ref] = ACTIONS(2775), + [anon_sym_LBRACE] = ACTIONS(1481), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1501), + [anon_sym_new] = ACTIONS(1059), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = 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_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(1485), + [anon_sym_TILDE] = ACTIONS(1485), + [anon_sym_PLUS_PLUS] = ACTIONS(1485), + [anon_sym_DASH_DASH] = ACTIONS(1485), [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(1483), + [anon_sym_DASH] = ACTIONS(1483), + [anon_sym_STAR] = ACTIONS(683), + [anon_sym_CARET] = ACTIONS(1485), + [anon_sym_AMP] = ACTIONS(1485), [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(2749), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1067), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), - [anon_sym_case] = ACTIONS(2781), - [anon_sym_default] = ACTIONS(2783), - [anon_sym_throw] = ACTIONS(1503), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(1077), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1505), - [anon_sym_DOT_DOT] = ACTIONS(1507), + [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), @@ -141664,7 +141550,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(1089), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -141681,84 +141567,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [593] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(5160), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2204), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(5587), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3461), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3080), - [sym_postfix_unary_expression] = STATE(3111), - [sym_prefix_unary_expression] = STATE(3111), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6154), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3080), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3111), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3080), - [sym_member_access_expression] = STATE(2484), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3111), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7547), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(3080), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3080), - [sym_typeof_expression] = STATE(3080), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2484), - [sym_literal] = STATE(3080), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2454), + [sym__name] = STATE(5528), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2196), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(5361), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3660), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3102), + [sym_postfix_unary_expression] = STATE(3079), + [sym_prefix_unary_expression] = STATE(3079), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6163), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3102), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3079), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3102), + [sym_member_access_expression] = STATE(2472), + [sym_member_binding_expression] = STATE(3081), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3079), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7633), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(3102), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3102), + [sym_typeof_expression] = STATE(3102), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2472), + [sym_literal] = STATE(3102), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(593), [sym_preproc_endregion] = STATE(593), [sym_preproc_line] = STATE(593), @@ -141768,49 +141655,48 @@ 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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), - [anon_sym_SEMI] = ACTIONS(2785), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1481), - [anon_sym_LPAREN] = ACTIONS(1497), - [anon_sym_ref] = ACTIONS(1499), - [anon_sym_LBRACE] = ACTIONS(1487), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1479), + [anon_sym_LPAREN] = ACTIONS(2009), + [anon_sym_ref] = ACTIONS(2011), + [anon_sym_LBRACE] = ACTIONS(1481), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1501), + [anon_sym_new] = ACTIONS(1095), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = 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_checked] = ACTIONS(1065), + [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(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(2013), + [anon_sym_DASH] = ACTIONS(2013), + [anon_sym_STAR] = ACTIONS(1227), + [anon_sym_CARET] = ACTIONS(2015), + [anon_sym_AMP] = ACTIONS(2015), [anon_sym_this] = ACTIONS(83), + [anon_sym_DOT] = ACTIONS(2777), [anon_sym_scoped] = ACTIONS(85), [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1067), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), - [anon_sym_case] = ACTIONS(2787), - [anon_sym_default] = ACTIONS(2789), - [anon_sym_throw] = ACTIONS(1503), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(1231), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1505), - [anon_sym_DOT_DOT] = ACTIONS(1507), + [anon_sym_await] = ACTIONS(1233), + [anon_sym_DOT_DOT] = ACTIONS(1235), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -141835,7 +141721,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(1089), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -141852,84 +141738,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [594] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(5910), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2247), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(5040), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3379), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3080), - [sym_postfix_unary_expression] = STATE(3111), - [sym_prefix_unary_expression] = STATE(3111), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6154), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3080), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3111), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3080), - [sym_member_access_expression] = STATE(2484), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3111), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7575), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(3080), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3080), - [sym_typeof_expression] = STATE(3080), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2484), - [sym_literal] = STATE(3080), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_using_variable_declaration] = STATE(7327), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(5182), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2212), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5793), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_tuple_element] = STATE(7166), + [sym_expression] = STATE(5388), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3468), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3102), + [sym_postfix_unary_expression] = STATE(3079), + [sym_prefix_unary_expression] = STATE(3079), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6134), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3102), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3079), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3102), + [sym_member_access_expression] = STATE(2472), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3079), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7309), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(3102), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3102), + [sym_typeof_expression] = STATE(3102), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2472), + [sym_literal] = STATE(3102), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(594), [sym_preproc_endregion] = STATE(594), [sym_preproc_line] = STATE(594), @@ -141939,49 +141827,47 @@ 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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1481), - [anon_sym_COMMA] = ACTIONS(927), - [anon_sym_LPAREN] = ACTIONS(895), - [anon_sym_ref] = ACTIONS(897), - [anon_sym_LBRACE] = ACTIONS(1487), - [anon_sym_RBRACE] = ACTIONS(2791), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1479), + [anon_sym_LPAREN] = ACTIONS(659), + [anon_sym_ref] = ACTIONS(2775), + [anon_sym_LBRACE] = ACTIONS(1481), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1061), + [anon_sym_new] = ACTIONS(1059), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1067), - [anon_sym_BANG] = ACTIONS(1495), - [anon_sym_TILDE] = ACTIONS(1495), - [anon_sym_PLUS_PLUS] = ACTIONS(1495), - [anon_sym_DASH_DASH] = ACTIONS(1495), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(1485), + [anon_sym_TILDE] = ACTIONS(1485), + [anon_sym_PLUS_PLUS] = ACTIONS(1485), + [anon_sym_DASH_DASH] = ACTIONS(1485), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1493), - [anon_sym_DASH] = ACTIONS(1493), - [anon_sym_STAR] = ACTIONS(905), - [anon_sym_CARET] = ACTIONS(1495), - [anon_sym_AMP] = ACTIONS(1495), + [anon_sym_PLUS] = ACTIONS(1483), + [anon_sym_DASH] = ACTIONS(1483), + [anon_sym_STAR] = ACTIONS(683), + [anon_sym_CARET] = ACTIONS(1485), + [anon_sym_AMP] = ACTIONS(1485), [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(2749), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1067), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1079), + [anon_sym_throw] = ACTIONS(1077), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1081), - [anon_sym_DOT_DOT] = ACTIONS(911), + [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), @@ -142006,7 +141892,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(1089), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -142023,85 +141909,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [595] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2425), - [sym__name] = STATE(5634), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2204), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(5332), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3664), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3080), - [sym_postfix_unary_expression] = STATE(3111), - [sym_prefix_unary_expression] = STATE(3111), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6161), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3080), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3111), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3080), - [sym_member_access_expression] = STATE(2484), - [sym_member_binding_expression] = STATE(3062), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3111), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7773), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(3080), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3080), - [sym_typeof_expression] = STATE(3080), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2484), - [sym_literal] = STATE(3080), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(5873), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2238), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(5171), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3468), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3102), + [sym_postfix_unary_expression] = STATE(3079), + [sym_prefix_unary_expression] = STATE(3079), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6134), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3102), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3079), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3102), + [sym_member_access_expression] = STATE(2472), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3079), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7309), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym__anonymous_object_member_declarator] = STATE(7088), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(3102), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3102), + [sym_typeof_expression] = STATE(3102), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2472), + [sym_literal] = STATE(3102), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2297), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(595), [sym_preproc_endregion] = STATE(595), [sym_preproc_line] = STATE(595), @@ -142111,48 +141997,48 @@ 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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1241), - [anon_sym_LPAREN] = ACTIONS(2015), - [anon_sym_ref] = ACTIONS(2017), - [anon_sym_LBRACE] = ACTIONS(1487), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1479), + [anon_sym_LPAREN] = ACTIONS(659), + [anon_sym_ref] = ACTIONS(663), + [anon_sym_LBRACE] = ACTIONS(1481), + [anon_sym_RBRACE] = ACTIONS(2779), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1101), + [anon_sym_new] = ACTIONS(1059), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1067), - [anon_sym_BANG] = ACTIONS(2021), - [anon_sym_TILDE] = ACTIONS(2021), - [anon_sym_PLUS_PLUS] = ACTIONS(2021), - [anon_sym_DASH_DASH] = ACTIONS(2021), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(1485), + [anon_sym_TILDE] = ACTIONS(1485), + [anon_sym_PLUS_PLUS] = ACTIONS(1485), + [anon_sym_DASH_DASH] = ACTIONS(1485), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(2019), - [anon_sym_DASH] = ACTIONS(2019), - [anon_sym_STAR] = ACTIONS(1229), - [anon_sym_CARET] = ACTIONS(2021), - [anon_sym_AMP] = ACTIONS(2021), + [anon_sym_PLUS] = ACTIONS(1483), + [anon_sym_DASH] = ACTIONS(1483), + [anon_sym_STAR] = ACTIONS(683), + [anon_sym_CARET] = ACTIONS(1485), + [anon_sym_AMP] = ACTIONS(1485), [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), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1067), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1233), + [anon_sym_throw] = ACTIONS(1077), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1235), - [anon_sym_DOT_DOT] = ACTIONS(1237), + [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), @@ -142177,7 +142063,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(1089), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -142194,85 +142080,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [596] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(5910), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2247), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5704), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(4918), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3379), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3080), - [sym_postfix_unary_expression] = STATE(3111), - [sym_prefix_unary_expression] = STATE(3111), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6154), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3080), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3111), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3080), - [sym_member_access_expression] = STATE(2484), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3111), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7575), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_declaration_expression] = STATE(7021), - [sym_default_expression] = STATE(3080), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3080), - [sym_typeof_expression] = STATE(3080), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2484), - [sym_literal] = STATE(3080), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_argument] = STATE(6742), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(5873), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2238), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(5300), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3468), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3102), + [sym_postfix_unary_expression] = STATE(3079), + [sym_prefix_unary_expression] = STATE(3079), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6134), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3102), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3079), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3102), + [sym_member_access_expression] = STATE(2472), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3079), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7309), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(3102), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3102), + [sym_typeof_expression] = STATE(3102), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2472), + [sym_literal] = STATE(3102), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2281), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(596), [sym_preproc_endregion] = STATE(596), [sym_preproc_line] = STATE(596), @@ -142282,48 +142168,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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1481), - [anon_sym_LPAREN] = ACTIONS(895), - [anon_sym_ref] = ACTIONS(897), - [anon_sym_LBRACE] = ACTIONS(1487), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1479), + [anon_sym_LPAREN] = ACTIONS(659), + [anon_sym_RPAREN] = ACTIONS(2781), + [anon_sym_ref] = ACTIONS(663), + [anon_sym_LBRACE] = ACTIONS(1481), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1061), - [anon_sym_readonly] = ACTIONS(2749), + [anon_sym_new] = ACTIONS(1059), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1067), - [anon_sym_BANG] = ACTIONS(1495), - [anon_sym_TILDE] = ACTIONS(1495), - [anon_sym_PLUS_PLUS] = ACTIONS(1495), - [anon_sym_DASH_DASH] = ACTIONS(1495), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(1485), + [anon_sym_TILDE] = ACTIONS(1485), + [anon_sym_PLUS_PLUS] = ACTIONS(1485), + [anon_sym_DASH_DASH] = ACTIONS(1485), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1493), - [anon_sym_DASH] = ACTIONS(1493), - [anon_sym_STAR] = ACTIONS(905), - [anon_sym_CARET] = ACTIONS(1495), - [anon_sym_AMP] = ACTIONS(1495), + [anon_sym_PLUS] = ACTIONS(1483), + [anon_sym_DASH] = ACTIONS(1483), + [anon_sym_STAR] = ACTIONS(683), + [anon_sym_CARET] = ACTIONS(1485), + [anon_sym_AMP] = ACTIONS(1485), [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(1067), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1079), + [anon_sym_throw] = ACTIONS(1077), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1081), - [anon_sym_DOT_DOT] = ACTIONS(911), + [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), @@ -142348,7 +142234,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(1089), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -142365,85 +142251,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [597] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(5910), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2247), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(5151), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3379), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3080), - [sym_postfix_unary_expression] = STATE(3111), - [sym_prefix_unary_expression] = STATE(3111), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6154), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3080), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3111), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3080), - [sym_member_access_expression] = STATE(2484), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3111), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7575), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym__anonymous_object_member_declarator] = STATE(7234), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(3080), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3080), - [sym_typeof_expression] = STATE(3080), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2484), - [sym_literal] = STATE(3080), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2311), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(5873), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2238), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(5171), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3468), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3102), + [sym_postfix_unary_expression] = STATE(3079), + [sym_prefix_unary_expression] = STATE(3079), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6134), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3102), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3079), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3102), + [sym_member_access_expression] = STATE(2472), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3079), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7309), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym__anonymous_object_member_declarator] = STATE(7088), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(3102), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3102), + [sym_typeof_expression] = STATE(3102), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2472), + [sym_literal] = STATE(3102), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2297), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(597), [sym_preproc_endregion] = STATE(597), [sym_preproc_line] = STATE(597), @@ -142453,48 +142339,48 @@ 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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1481), - [anon_sym_LPAREN] = ACTIONS(895), - [anon_sym_ref] = ACTIONS(897), - [anon_sym_LBRACE] = ACTIONS(1487), - [anon_sym_RBRACE] = ACTIONS(2795), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1479), + [anon_sym_LPAREN] = ACTIONS(659), + [anon_sym_ref] = ACTIONS(663), + [anon_sym_LBRACE] = ACTIONS(1481), + [anon_sym_RBRACE] = ACTIONS(2783), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1061), + [anon_sym_new] = ACTIONS(1059), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1067), - [anon_sym_BANG] = ACTIONS(1495), - [anon_sym_TILDE] = ACTIONS(1495), - [anon_sym_PLUS_PLUS] = ACTIONS(1495), - [anon_sym_DASH_DASH] = ACTIONS(1495), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(1485), + [anon_sym_TILDE] = ACTIONS(1485), + [anon_sym_PLUS_PLUS] = ACTIONS(1485), + [anon_sym_DASH_DASH] = ACTIONS(1485), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1493), - [anon_sym_DASH] = ACTIONS(1493), - [anon_sym_STAR] = ACTIONS(905), - [anon_sym_CARET] = ACTIONS(1495), - [anon_sym_AMP] = ACTIONS(1495), + [anon_sym_PLUS] = ACTIONS(1483), + [anon_sym_DASH] = ACTIONS(1483), + [anon_sym_STAR] = ACTIONS(683), + [anon_sym_CARET] = ACTIONS(1485), + [anon_sym_AMP] = ACTIONS(1485), [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(1067), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1079), + [anon_sym_throw] = ACTIONS(1077), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1081), - [anon_sym_DOT_DOT] = ACTIONS(911), + [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), @@ -142519,7 +142405,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(1089), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -142536,85 +142422,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [598] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(5910), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2247), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(5151), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3379), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3080), - [sym_postfix_unary_expression] = STATE(3111), - [sym_prefix_unary_expression] = STATE(3111), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6154), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3080), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3111), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3080), - [sym_member_access_expression] = STATE(2484), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3111), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7575), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym__anonymous_object_member_declarator] = STATE(7234), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(3080), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3080), - [sym_typeof_expression] = STATE(3080), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2484), - [sym_literal] = STATE(3080), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2311), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(5873), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2238), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(5171), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3468), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3102), + [sym_postfix_unary_expression] = STATE(3079), + [sym_prefix_unary_expression] = STATE(3079), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6134), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3102), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3079), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3102), + [sym_member_access_expression] = STATE(2472), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3079), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7309), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym__anonymous_object_member_declarator] = STATE(7088), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(3102), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3102), + [sym_typeof_expression] = STATE(3102), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2472), + [sym_literal] = STATE(3102), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2297), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(598), [sym_preproc_endregion] = STATE(598), [sym_preproc_line] = STATE(598), @@ -142624,48 +142510,48 @@ 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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1481), - [anon_sym_LPAREN] = ACTIONS(895), - [anon_sym_ref] = ACTIONS(897), - [anon_sym_LBRACE] = ACTIONS(1487), - [anon_sym_RBRACE] = ACTIONS(2797), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1479), + [anon_sym_LPAREN] = ACTIONS(659), + [anon_sym_ref] = ACTIONS(663), + [anon_sym_LBRACE] = ACTIONS(1481), + [anon_sym_RBRACE] = ACTIONS(2785), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1061), + [anon_sym_new] = ACTIONS(1059), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1067), - [anon_sym_BANG] = ACTIONS(1495), - [anon_sym_TILDE] = ACTIONS(1495), - [anon_sym_PLUS_PLUS] = ACTIONS(1495), - [anon_sym_DASH_DASH] = ACTIONS(1495), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(1485), + [anon_sym_TILDE] = ACTIONS(1485), + [anon_sym_PLUS_PLUS] = ACTIONS(1485), + [anon_sym_DASH_DASH] = ACTIONS(1485), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1493), - [anon_sym_DASH] = ACTIONS(1493), - [anon_sym_STAR] = ACTIONS(905), - [anon_sym_CARET] = ACTIONS(1495), - [anon_sym_AMP] = ACTIONS(1495), + [anon_sym_PLUS] = ACTIONS(1483), + [anon_sym_DASH] = ACTIONS(1483), + [anon_sym_STAR] = ACTIONS(683), + [anon_sym_CARET] = ACTIONS(1485), + [anon_sym_AMP] = ACTIONS(1485), [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(1067), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1079), + [anon_sym_throw] = ACTIONS(1077), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1081), - [anon_sym_DOT_DOT] = ACTIONS(911), + [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), @@ -142690,7 +142576,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(1089), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -142707,85 +142593,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [599] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(5910), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2247), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5704), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(4884), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3379), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3080), - [sym_postfix_unary_expression] = STATE(3111), - [sym_prefix_unary_expression] = STATE(3111), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6154), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3080), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3111), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3080), - [sym_member_access_expression] = STATE(2484), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3111), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7575), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_declaration_expression] = STATE(6901), - [sym_default_expression] = STATE(3080), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3080), - [sym_typeof_expression] = STATE(3080), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2484), - [sym_literal] = STATE(3080), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(5873), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2238), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(5171), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3468), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3102), + [sym_postfix_unary_expression] = STATE(3079), + [sym_prefix_unary_expression] = STATE(3079), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6134), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3102), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3079), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3102), + [sym_member_access_expression] = STATE(2472), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3079), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7309), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym__anonymous_object_member_declarator] = STATE(7088), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(3102), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3102), + [sym_typeof_expression] = STATE(3102), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2472), + [sym_literal] = STATE(3102), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2297), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(599), [sym_preproc_endregion] = STATE(599), [sym_preproc_line] = STATE(599), @@ -142795,48 +142681,48 @@ 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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1481), - [anon_sym_LPAREN] = ACTIONS(895), - [anon_sym_ref] = ACTIONS(897), - [anon_sym_LBRACE] = ACTIONS(1487), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1479), + [anon_sym_LPAREN] = ACTIONS(659), + [anon_sym_ref] = ACTIONS(663), + [anon_sym_LBRACE] = ACTIONS(1481), + [anon_sym_RBRACE] = ACTIONS(2787), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1061), - [anon_sym_readonly] = ACTIONS(2749), + [anon_sym_new] = ACTIONS(1059), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1067), - [anon_sym_BANG] = ACTIONS(1495), - [anon_sym_TILDE] = ACTIONS(1495), - [anon_sym_PLUS_PLUS] = ACTIONS(1495), - [anon_sym_DASH_DASH] = ACTIONS(1495), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(1485), + [anon_sym_TILDE] = ACTIONS(1485), + [anon_sym_PLUS_PLUS] = ACTIONS(1485), + [anon_sym_DASH_DASH] = ACTIONS(1485), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1493), - [anon_sym_DASH] = ACTIONS(1493), - [anon_sym_STAR] = ACTIONS(905), - [anon_sym_CARET] = ACTIONS(1495), - [anon_sym_AMP] = ACTIONS(1495), + [anon_sym_PLUS] = ACTIONS(1483), + [anon_sym_DASH] = ACTIONS(1483), + [anon_sym_STAR] = ACTIONS(683), + [anon_sym_CARET] = ACTIONS(1485), + [anon_sym_AMP] = ACTIONS(1485), [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(1067), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1079), + [anon_sym_throw] = ACTIONS(1077), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1081), - [anon_sym_DOT_DOT] = ACTIONS(911), + [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), @@ -142861,7 +142747,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(1089), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -142878,85 +142764,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [600] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(5910), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2247), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(5151), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3379), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3080), - [sym_postfix_unary_expression] = STATE(3111), - [sym_prefix_unary_expression] = STATE(3111), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6154), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3080), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3111), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3080), - [sym_member_access_expression] = STATE(2484), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3111), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7575), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym__anonymous_object_member_declarator] = STATE(7234), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(3080), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3080), - [sym_typeof_expression] = STATE(3080), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2484), - [sym_literal] = STATE(3080), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2311), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(5873), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2238), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(5171), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3468), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3102), + [sym_postfix_unary_expression] = STATE(3079), + [sym_prefix_unary_expression] = STATE(3079), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6134), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3102), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3079), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3102), + [sym_member_access_expression] = STATE(2472), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3079), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7309), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym__anonymous_object_member_declarator] = STATE(7088), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(3102), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3102), + [sym_typeof_expression] = STATE(3102), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2472), + [sym_literal] = STATE(3102), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2297), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(600), [sym_preproc_endregion] = STATE(600), [sym_preproc_line] = STATE(600), @@ -142966,48 +142852,48 @@ 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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1481), - [anon_sym_LPAREN] = ACTIONS(895), - [anon_sym_ref] = ACTIONS(897), - [anon_sym_LBRACE] = ACTIONS(1487), - [anon_sym_RBRACE] = ACTIONS(2799), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1479), + [anon_sym_LPAREN] = ACTIONS(659), + [anon_sym_ref] = ACTIONS(663), + [anon_sym_LBRACE] = ACTIONS(1481), + [anon_sym_RBRACE] = ACTIONS(2789), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1061), + [anon_sym_new] = ACTIONS(1059), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1067), - [anon_sym_BANG] = ACTIONS(1495), - [anon_sym_TILDE] = ACTIONS(1495), - [anon_sym_PLUS_PLUS] = ACTIONS(1495), - [anon_sym_DASH_DASH] = ACTIONS(1495), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(1485), + [anon_sym_TILDE] = ACTIONS(1485), + [anon_sym_PLUS_PLUS] = ACTIONS(1485), + [anon_sym_DASH_DASH] = ACTIONS(1485), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1493), - [anon_sym_DASH] = ACTIONS(1493), - [anon_sym_STAR] = ACTIONS(905), - [anon_sym_CARET] = ACTIONS(1495), - [anon_sym_AMP] = ACTIONS(1495), + [anon_sym_PLUS] = ACTIONS(1483), + [anon_sym_DASH] = ACTIONS(1483), + [anon_sym_STAR] = ACTIONS(683), + [anon_sym_CARET] = ACTIONS(1485), + [anon_sym_AMP] = ACTIONS(1485), [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(1067), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1079), + [anon_sym_throw] = ACTIONS(1077), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1081), - [anon_sym_DOT_DOT] = ACTIONS(911), + [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), @@ -143032,7 +142918,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(1089), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -143049,84 +142935,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [601] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(5910), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2247), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(4873), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3379), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3080), - [sym_postfix_unary_expression] = STATE(3111), - [sym_prefix_unary_expression] = STATE(3111), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6154), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3080), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3111), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3080), - [sym_member_access_expression] = STATE(2484), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3111), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7575), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(3080), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3080), - [sym_typeof_expression] = STATE(3080), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2484), - [sym_literal] = STATE(3080), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2884), + [sym__name] = STATE(5528), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2196), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(5503), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3660), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3102), + [sym_postfix_unary_expression] = STATE(3079), + [sym_prefix_unary_expression] = STATE(3079), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6163), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3102), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3079), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3102), + [sym_member_access_expression] = STATE(2472), + [sym_member_binding_expression] = STATE(3837), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3079), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7633), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(3102), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3102), + [sym_typeof_expression] = STATE(3102), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2472), + [sym_literal] = STATE(3102), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(601), [sym_preproc_endregion] = STATE(601), [sym_preproc_line] = STATE(601), @@ -143136,49 +143023,48 @@ 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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1481), - [anon_sym_COMMA] = ACTIONS(931), - [anon_sym_LPAREN] = ACTIONS(895), - [anon_sym_ref] = ACTIONS(897), - [anon_sym_LBRACE] = ACTIONS(1487), - [anon_sym_RBRACE] = ACTIONS(2801), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1655), + [anon_sym_LPAREN] = ACTIONS(2009), + [anon_sym_ref] = ACTIONS(2011), + [anon_sym_LBRACE] = ACTIONS(1481), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1061), + [anon_sym_new] = ACTIONS(1095), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1067), - [anon_sym_BANG] = ACTIONS(1495), - [anon_sym_TILDE] = ACTIONS(1495), - [anon_sym_PLUS_PLUS] = ACTIONS(1495), - [anon_sym_DASH_DASH] = ACTIONS(1495), + [anon_sym_checked] = ACTIONS(1065), + [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(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1493), - [anon_sym_DASH] = ACTIONS(1493), - [anon_sym_STAR] = ACTIONS(905), - [anon_sym_CARET] = ACTIONS(1495), - [anon_sym_AMP] = ACTIONS(1495), + [anon_sym_PLUS] = ACTIONS(2013), + [anon_sym_DASH] = ACTIONS(2013), + [anon_sym_STAR] = ACTIONS(1227), + [anon_sym_CARET] = ACTIONS(2015), + [anon_sym_AMP] = ACTIONS(2015), [anon_sym_this] = ACTIONS(83), + [anon_sym_DOT] = ACTIONS(2773), [anon_sym_scoped] = ACTIONS(85), [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1067), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1079), + [anon_sym_throw] = ACTIONS(1231), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1081), - [anon_sym_DOT_DOT] = ACTIONS(911), + [anon_sym_await] = ACTIONS(1233), + [anon_sym_DOT_DOT] = ACTIONS(1235), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -143203,7 +143089,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(1089), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -143220,85 +143106,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [602] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(3213), - [sym__name] = STATE(5634), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2204), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(5342), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3664), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3080), - [sym_postfix_unary_expression] = STATE(3111), - [sym_prefix_unary_expression] = STATE(3111), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6161), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3080), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3111), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3080), - [sym_member_access_expression] = STATE(2484), - [sym_member_binding_expression] = STATE(4707), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3111), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7773), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(3080), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3080), - [sym_typeof_expression] = STATE(3080), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2484), - [sym_literal] = STATE(3080), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2427), + [sym__name] = STATE(5528), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2196), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(5493), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3660), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3102), + [sym_postfix_unary_expression] = STATE(3079), + [sym_prefix_unary_expression] = STATE(3079), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6163), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3102), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3079), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3102), + [sym_member_access_expression] = STATE(2472), + [sym_member_binding_expression] = STATE(2973), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3079), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7633), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(3102), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3102), + [sym_typeof_expression] = STATE(3102), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2472), + [sym_literal] = STATE(3102), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(602), [sym_preproc_endregion] = STATE(602), [sym_preproc_line] = STATE(602), @@ -143308,48 +143194,48 @@ 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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1391), - [anon_sym_LPAREN] = ACTIONS(2015), - [anon_sym_ref] = ACTIONS(2017), - [anon_sym_LBRACE] = ACTIONS(1487), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1239), + [anon_sym_LPAREN] = ACTIONS(2009), + [anon_sym_ref] = ACTIONS(2011), + [anon_sym_LBRACE] = ACTIONS(1481), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1101), + [anon_sym_new] = ACTIONS(1095), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1067), - [anon_sym_BANG] = ACTIONS(2021), - [anon_sym_TILDE] = ACTIONS(2021), - [anon_sym_PLUS_PLUS] = ACTIONS(2021), - [anon_sym_DASH_DASH] = ACTIONS(2021), + [anon_sym_checked] = ACTIONS(1065), + [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(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(2019), - [anon_sym_DASH] = ACTIONS(2019), - [anon_sym_STAR] = ACTIONS(1229), - [anon_sym_CARET] = ACTIONS(2021), - [anon_sym_AMP] = ACTIONS(2021), + [anon_sym_PLUS] = ACTIONS(2013), + [anon_sym_DASH] = ACTIONS(2013), + [anon_sym_STAR] = ACTIONS(1227), + [anon_sym_CARET] = ACTIONS(2015), + [anon_sym_AMP] = ACTIONS(2015), [anon_sym_this] = ACTIONS(83), - [anon_sym_DOT] = ACTIONS(2803), + [anon_sym_DOT] = ACTIONS(2791), [anon_sym_scoped] = ACTIONS(85), [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1067), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1233), + [anon_sym_throw] = ACTIONS(1231), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1235), - [anon_sym_DOT_DOT] = ACTIONS(1237), + [anon_sym_await] = ACTIONS(1233), + [anon_sym_DOT_DOT] = ACTIONS(1235), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -143374,7 +143260,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(1089), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -143391,85 +143277,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [603] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(5910), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2247), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(5151), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3379), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3080), - [sym_postfix_unary_expression] = STATE(3111), - [sym_prefix_unary_expression] = STATE(3111), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6154), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3080), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3111), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3080), - [sym_member_access_expression] = STATE(2484), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3111), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7575), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym__anonymous_object_member_declarator] = STATE(7234), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(3080), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3080), - [sym_typeof_expression] = STATE(3080), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2484), - [sym_literal] = STATE(3080), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2311), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(3180), + [sym__name] = STATE(5528), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2196), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(5542), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3660), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3102), + [sym_postfix_unary_expression] = STATE(3079), + [sym_prefix_unary_expression] = STATE(3079), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6163), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3102), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3079), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3102), + [sym_member_access_expression] = STATE(2472), + [sym_member_binding_expression] = STATE(4598), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3079), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7633), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(3102), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3102), + [sym_typeof_expression] = STATE(3102), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2472), + [sym_literal] = STATE(3102), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(603), [sym_preproc_endregion] = STATE(603), [sym_preproc_line] = STATE(603), @@ -143479,48 +143365,48 @@ 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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1481), - [anon_sym_LPAREN] = ACTIONS(895), - [anon_sym_ref] = ACTIONS(897), - [anon_sym_LBRACE] = ACTIONS(1487), - [anon_sym_RBRACE] = ACTIONS(2805), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1389), + [anon_sym_LPAREN] = ACTIONS(2009), + [anon_sym_ref] = ACTIONS(2011), + [anon_sym_LBRACE] = ACTIONS(1481), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1061), + [anon_sym_new] = ACTIONS(1095), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1067), - [anon_sym_BANG] = ACTIONS(1495), - [anon_sym_TILDE] = ACTIONS(1495), - [anon_sym_PLUS_PLUS] = ACTIONS(1495), - [anon_sym_DASH_DASH] = ACTIONS(1495), + [anon_sym_checked] = ACTIONS(1065), + [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(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1493), - [anon_sym_DASH] = ACTIONS(1493), - [anon_sym_STAR] = ACTIONS(905), - [anon_sym_CARET] = ACTIONS(1495), - [anon_sym_AMP] = ACTIONS(1495), + [anon_sym_PLUS] = ACTIONS(2013), + [anon_sym_DASH] = ACTIONS(2013), + [anon_sym_STAR] = ACTIONS(1227), + [anon_sym_CARET] = ACTIONS(2015), + [anon_sym_AMP] = ACTIONS(2015), [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), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1067), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1079), + [anon_sym_throw] = ACTIONS(1231), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1081), - [anon_sym_DOT_DOT] = ACTIONS(911), + [anon_sym_await] = ACTIONS(1233), + [anon_sym_DOT_DOT] = ACTIONS(1235), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -143545,7 +143431,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(1089), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -143562,85 +143448,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [604] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(5910), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2247), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(5151), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3379), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3080), - [sym_postfix_unary_expression] = STATE(3111), - [sym_prefix_unary_expression] = STATE(3111), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6154), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3080), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3111), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3080), - [sym_member_access_expression] = STATE(2484), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3111), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7575), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym__anonymous_object_member_declarator] = STATE(7234), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(3080), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3080), - [sym_typeof_expression] = STATE(3080), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2484), - [sym_literal] = STATE(3080), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2311), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(5873), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2238), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(5171), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3468), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3102), + [sym_postfix_unary_expression] = STATE(3079), + [sym_prefix_unary_expression] = STATE(3079), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6134), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3102), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3079), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3102), + [sym_member_access_expression] = STATE(2472), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3079), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7309), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym__anonymous_object_member_declarator] = STATE(7088), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(3102), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3102), + [sym_typeof_expression] = STATE(3102), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2472), + [sym_literal] = STATE(3102), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2297), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(604), [sym_preproc_endregion] = STATE(604), [sym_preproc_line] = STATE(604), @@ -143650,48 +143536,48 @@ 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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1481), - [anon_sym_LPAREN] = ACTIONS(895), - [anon_sym_ref] = ACTIONS(897), - [anon_sym_LBRACE] = ACTIONS(1487), - [anon_sym_RBRACE] = ACTIONS(2807), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1479), + [anon_sym_LPAREN] = ACTIONS(659), + [anon_sym_ref] = ACTIONS(663), + [anon_sym_LBRACE] = ACTIONS(1481), + [anon_sym_RBRACE] = ACTIONS(2793), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1061), + [anon_sym_new] = ACTIONS(1059), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1067), - [anon_sym_BANG] = ACTIONS(1495), - [anon_sym_TILDE] = ACTIONS(1495), - [anon_sym_PLUS_PLUS] = ACTIONS(1495), - [anon_sym_DASH_DASH] = ACTIONS(1495), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(1485), + [anon_sym_TILDE] = ACTIONS(1485), + [anon_sym_PLUS_PLUS] = ACTIONS(1485), + [anon_sym_DASH_DASH] = ACTIONS(1485), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1493), - [anon_sym_DASH] = ACTIONS(1493), - [anon_sym_STAR] = ACTIONS(905), - [anon_sym_CARET] = ACTIONS(1495), - [anon_sym_AMP] = ACTIONS(1495), + [anon_sym_PLUS] = ACTIONS(1483), + [anon_sym_DASH] = ACTIONS(1483), + [anon_sym_STAR] = ACTIONS(683), + [anon_sym_CARET] = ACTIONS(1485), + [anon_sym_AMP] = ACTIONS(1485), [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(1067), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1079), + [anon_sym_throw] = ACTIONS(1077), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1081), - [anon_sym_DOT_DOT] = ACTIONS(911), + [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), @@ -143716,7 +143602,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(1089), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -143733,84 +143619,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [605] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(5910), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2247), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(4902), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3379), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3080), - [sym_postfix_unary_expression] = STATE(3111), - [sym_prefix_unary_expression] = STATE(3111), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6154), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3080), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3111), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3080), - [sym_member_access_expression] = STATE(2484), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3111), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7575), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(3080), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3080), - [sym_typeof_expression] = STATE(3080), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2484), - [sym_literal] = STATE(3080), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2669), + [sym__name] = STATE(5528), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2196), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(5465), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3660), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3102), + [sym_postfix_unary_expression] = STATE(3079), + [sym_prefix_unary_expression] = STATE(3079), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6163), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3102), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3079), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3102), + [sym_member_access_expression] = STATE(2472), + [sym_member_binding_expression] = STATE(3436), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3079), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7633), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(3102), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3102), + [sym_typeof_expression] = STATE(3102), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2472), + [sym_literal] = STATE(3102), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(605), [sym_preproc_endregion] = STATE(605), [sym_preproc_line] = STATE(605), @@ -143820,49 +143707,48 @@ 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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1481), - [anon_sym_COMMA] = ACTIONS(935), - [anon_sym_LPAREN] = ACTIONS(895), - [anon_sym_ref] = ACTIONS(897), - [anon_sym_LBRACE] = ACTIONS(1487), - [anon_sym_RBRACE] = ACTIONS(2809), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1305), + [anon_sym_LPAREN] = ACTIONS(2009), + [anon_sym_ref] = ACTIONS(2011), + [anon_sym_LBRACE] = ACTIONS(1481), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1061), + [anon_sym_new] = ACTIONS(1095), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1067), - [anon_sym_BANG] = ACTIONS(1495), - [anon_sym_TILDE] = ACTIONS(1495), - [anon_sym_PLUS_PLUS] = ACTIONS(1495), - [anon_sym_DASH_DASH] = ACTIONS(1495), + [anon_sym_checked] = ACTIONS(1065), + [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(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1493), - [anon_sym_DASH] = ACTIONS(1493), - [anon_sym_STAR] = ACTIONS(905), - [anon_sym_CARET] = ACTIONS(1495), - [anon_sym_AMP] = ACTIONS(1495), + [anon_sym_PLUS] = ACTIONS(2013), + [anon_sym_DASH] = ACTIONS(2013), + [anon_sym_STAR] = ACTIONS(1227), + [anon_sym_CARET] = ACTIONS(2015), + [anon_sym_AMP] = ACTIONS(2015), [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), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1067), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1079), + [anon_sym_throw] = ACTIONS(1231), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1081), - [anon_sym_DOT_DOT] = ACTIONS(911), + [anon_sym_await] = ACTIONS(1233), + [anon_sym_DOT_DOT] = ACTIONS(1235), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -143887,7 +143773,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(1089), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -143904,85 +143790,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [606] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2687), - [sym__name] = STATE(5634), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2204), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(5457), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3664), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3080), - [sym_postfix_unary_expression] = STATE(3111), - [sym_prefix_unary_expression] = STATE(3111), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6161), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3080), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3111), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3080), - [sym_member_access_expression] = STATE(2484), - [sym_member_binding_expression] = STATE(3394), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3111), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7773), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(3080), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3080), - [sym_typeof_expression] = STATE(3080), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2484), - [sym_literal] = STATE(3080), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(3118), + [sym__name] = STATE(5528), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2196), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(5556), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3660), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3102), + [sym_postfix_unary_expression] = STATE(3079), + [sym_prefix_unary_expression] = STATE(3079), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6163), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3102), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3079), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3102), + [sym_member_access_expression] = STATE(2472), + [sym_member_binding_expression] = STATE(3436), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3079), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7633), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(3102), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3102), + [sym_typeof_expression] = STATE(3102), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2472), + [sym_literal] = STATE(3102), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(606), [sym_preproc_endregion] = STATE(606), [sym_preproc_line] = STATE(606), @@ -143992,48 +143878,48 @@ 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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1307), - [anon_sym_LPAREN] = ACTIONS(2015), - [anon_sym_ref] = ACTIONS(2017), - [anon_sym_LBRACE] = ACTIONS(1487), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1305), + [anon_sym_LPAREN] = ACTIONS(2009), + [anon_sym_ref] = ACTIONS(2011), + [anon_sym_LBRACE] = ACTIONS(1481), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1101), + [anon_sym_new] = ACTIONS(1095), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1067), - [anon_sym_BANG] = ACTIONS(2021), - [anon_sym_TILDE] = ACTIONS(2021), - [anon_sym_PLUS_PLUS] = ACTIONS(2021), - [anon_sym_DASH_DASH] = ACTIONS(2021), + [anon_sym_checked] = ACTIONS(1065), + [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(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(2019), - [anon_sym_DASH] = ACTIONS(2019), - [anon_sym_STAR] = ACTIONS(1229), - [anon_sym_CARET] = ACTIONS(2021), - [anon_sym_AMP] = ACTIONS(2021), + [anon_sym_PLUS] = ACTIONS(2013), + [anon_sym_DASH] = ACTIONS(2013), + [anon_sym_STAR] = ACTIONS(1227), + [anon_sym_CARET] = ACTIONS(2015), + [anon_sym_AMP] = ACTIONS(2015), [anon_sym_this] = ACTIONS(83), - [anon_sym_DOT] = ACTIONS(2811), + [anon_sym_DOT] = ACTIONS(2795), [anon_sym_scoped] = ACTIONS(85), [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1067), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1233), + [anon_sym_throw] = ACTIONS(1231), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1235), - [anon_sym_DOT_DOT] = ACTIONS(1237), + [anon_sym_await] = ACTIONS(1233), + [anon_sym_DOT_DOT] = ACTIONS(1235), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -144058,7 +143944,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(1089), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -144075,84 +143961,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [607] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(5910), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2247), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(4925), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3379), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3080), - [sym_postfix_unary_expression] = STATE(3111), - [sym_prefix_unary_expression] = STATE(3111), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6154), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3080), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3111), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3080), - [sym_member_access_expression] = STATE(2484), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3111), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7575), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(3080), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3080), - [sym_typeof_expression] = STATE(3080), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2484), - [sym_literal] = STATE(3080), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2593), + [sym__name] = STATE(5528), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2196), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(5316), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3660), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3102), + [sym_postfix_unary_expression] = STATE(3079), + [sym_prefix_unary_expression] = STATE(3079), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6163), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3102), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3079), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3102), + [sym_member_access_expression] = STATE(2472), + [sym_member_binding_expression] = STATE(3267), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3079), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7633), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(3102), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3102), + [sym_typeof_expression] = STATE(3102), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2472), + [sym_literal] = STATE(3102), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(607), [sym_preproc_endregion] = STATE(607), [sym_preproc_line] = STATE(607), @@ -144162,49 +144049,48 @@ 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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1481), - [anon_sym_COMMA] = ACTIONS(893), - [anon_sym_LPAREN] = ACTIONS(895), - [anon_sym_ref] = ACTIONS(897), - [anon_sym_LBRACE] = ACTIONS(1487), - [anon_sym_RBRACE] = ACTIONS(2813), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1149), + [anon_sym_LPAREN] = ACTIONS(2009), + [anon_sym_ref] = ACTIONS(2011), + [anon_sym_LBRACE] = ACTIONS(1481), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1061), + [anon_sym_new] = ACTIONS(1095), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1067), - [anon_sym_BANG] = ACTIONS(1495), - [anon_sym_TILDE] = ACTIONS(1495), - [anon_sym_PLUS_PLUS] = ACTIONS(1495), - [anon_sym_DASH_DASH] = ACTIONS(1495), + [anon_sym_checked] = ACTIONS(1065), + [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(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1493), - [anon_sym_DASH] = ACTIONS(1493), - [anon_sym_STAR] = ACTIONS(905), - [anon_sym_CARET] = ACTIONS(1495), - [anon_sym_AMP] = ACTIONS(1495), + [anon_sym_PLUS] = ACTIONS(2013), + [anon_sym_DASH] = ACTIONS(2013), + [anon_sym_STAR] = ACTIONS(1227), + [anon_sym_CARET] = ACTIONS(2015), + [anon_sym_AMP] = ACTIONS(2015), [anon_sym_this] = ACTIONS(83), + [anon_sym_DOT] = ACTIONS(2751), [anon_sym_scoped] = ACTIONS(85), [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1067), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1079), + [anon_sym_throw] = ACTIONS(1231), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1081), - [anon_sym_DOT_DOT] = ACTIONS(911), + [anon_sym_await] = ACTIONS(1233), + [anon_sym_DOT_DOT] = ACTIONS(1235), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -144229,7 +144115,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(1089), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -144246,85 +144132,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [608] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(5910), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2247), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(5151), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3379), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3080), - [sym_postfix_unary_expression] = STATE(3111), - [sym_prefix_unary_expression] = STATE(3111), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6154), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3080), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3111), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3080), - [sym_member_access_expression] = STATE(2484), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3111), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7575), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym__anonymous_object_member_declarator] = STATE(7234), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(3080), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3080), - [sym_typeof_expression] = STATE(3080), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2484), - [sym_literal] = STATE(3080), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2311), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(3118), + [sym__name] = STATE(5528), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2196), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(5322), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3660), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3102), + [sym_postfix_unary_expression] = STATE(3079), + [sym_prefix_unary_expression] = STATE(3079), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6163), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3102), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3079), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3102), + [sym_member_access_expression] = STATE(2472), + [sym_member_binding_expression] = STATE(3267), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3079), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7633), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(3102), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3102), + [sym_typeof_expression] = STATE(3102), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2472), + [sym_literal] = STATE(3102), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(608), [sym_preproc_endregion] = STATE(608), [sym_preproc_line] = STATE(608), @@ -144334,48 +144220,48 @@ 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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1481), - [anon_sym_LPAREN] = ACTIONS(895), - [anon_sym_ref] = ACTIONS(897), - [anon_sym_LBRACE] = ACTIONS(1487), - [anon_sym_RBRACE] = ACTIONS(2815), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1149), + [anon_sym_LPAREN] = ACTIONS(2009), + [anon_sym_ref] = ACTIONS(2011), + [anon_sym_LBRACE] = ACTIONS(1481), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1061), + [anon_sym_new] = ACTIONS(1095), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1067), - [anon_sym_BANG] = ACTIONS(1495), - [anon_sym_TILDE] = ACTIONS(1495), - [anon_sym_PLUS_PLUS] = ACTIONS(1495), - [anon_sym_DASH_DASH] = ACTIONS(1495), + [anon_sym_checked] = ACTIONS(1065), + [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(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1493), - [anon_sym_DASH] = ACTIONS(1493), - [anon_sym_STAR] = ACTIONS(905), - [anon_sym_CARET] = ACTIONS(1495), - [anon_sym_AMP] = ACTIONS(1495), + [anon_sym_PLUS] = ACTIONS(2013), + [anon_sym_DASH] = ACTIONS(2013), + [anon_sym_STAR] = ACTIONS(1227), + [anon_sym_CARET] = ACTIONS(2015), + [anon_sym_AMP] = ACTIONS(2015), [anon_sym_this] = ACTIONS(83), + [anon_sym_DOT] = ACTIONS(2751), [anon_sym_scoped] = ACTIONS(85), [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1067), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1079), + [anon_sym_throw] = ACTIONS(1231), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1081), - [anon_sym_DOT_DOT] = ACTIONS(911), + [anon_sym_await] = ACTIONS(1233), + [anon_sym_DOT_DOT] = ACTIONS(1235), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -144400,7 +144286,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(1089), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -144417,85 +144303,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [609] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(5910), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2247), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(5151), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3379), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3080), - [sym_postfix_unary_expression] = STATE(3111), - [sym_prefix_unary_expression] = STATE(3111), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6154), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3080), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3111), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3080), - [sym_member_access_expression] = STATE(2484), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3111), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7575), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym__anonymous_object_member_declarator] = STATE(7234), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(3080), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3080), - [sym_typeof_expression] = STATE(3080), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2484), - [sym_literal] = STATE(3080), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2311), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_using_variable_declaration] = STATE(7331), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(5182), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2212), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5793), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_tuple_element] = STATE(7166), + [sym_expression] = STATE(5551), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3468), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3102), + [sym_postfix_unary_expression] = STATE(3079), + [sym_prefix_unary_expression] = STATE(3079), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6134), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3102), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3079), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3102), + [sym_member_access_expression] = STATE(2472), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3079), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7309), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(3102), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3102), + [sym_typeof_expression] = STATE(3102), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2472), + [sym_literal] = STATE(3102), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(609), [sym_preproc_endregion] = STATE(609), [sym_preproc_line] = STATE(609), @@ -144505,48 +144392,47 @@ 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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1481), - [anon_sym_LPAREN] = ACTIONS(895), - [anon_sym_ref] = ACTIONS(897), - [anon_sym_LBRACE] = ACTIONS(1487), - [anon_sym_RBRACE] = ACTIONS(2817), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1479), + [anon_sym_LPAREN] = ACTIONS(659), + [anon_sym_ref] = ACTIONS(2775), + [anon_sym_LBRACE] = ACTIONS(1481), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1061), + [anon_sym_new] = ACTIONS(1059), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1067), - [anon_sym_BANG] = ACTIONS(1495), - [anon_sym_TILDE] = ACTIONS(1495), - [anon_sym_PLUS_PLUS] = ACTIONS(1495), - [anon_sym_DASH_DASH] = ACTIONS(1495), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(1485), + [anon_sym_TILDE] = ACTIONS(1485), + [anon_sym_PLUS_PLUS] = ACTIONS(1485), + [anon_sym_DASH_DASH] = ACTIONS(1485), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1493), - [anon_sym_DASH] = ACTIONS(1493), - [anon_sym_STAR] = ACTIONS(905), - [anon_sym_CARET] = ACTIONS(1495), - [anon_sym_AMP] = ACTIONS(1495), + [anon_sym_PLUS] = ACTIONS(1483), + [anon_sym_DASH] = ACTIONS(1483), + [anon_sym_STAR] = ACTIONS(683), + [anon_sym_CARET] = ACTIONS(1485), + [anon_sym_AMP] = ACTIONS(1485), [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(2749), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1067), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1079), + [anon_sym_throw] = ACTIONS(1077), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1081), - [anon_sym_DOT_DOT] = ACTIONS(911), + [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), @@ -144571,7 +144457,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(1089), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -144588,85 +144474,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [610] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(3126), - [sym__name] = STATE(5634), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2204), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(5390), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3664), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3080), - [sym_postfix_unary_expression] = STATE(3111), - [sym_prefix_unary_expression] = STATE(3111), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6161), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3080), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3111), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3080), - [sym_member_access_expression] = STATE(2484), - [sym_member_binding_expression] = STATE(3062), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3111), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7773), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(3080), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3080), - [sym_typeof_expression] = STATE(3080), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2484), - [sym_literal] = STATE(3080), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2454), + [sym__name] = STATE(5528), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2196), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(5400), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3660), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3102), + [sym_postfix_unary_expression] = STATE(3079), + [sym_prefix_unary_expression] = STATE(3079), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6163), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3102), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3079), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3102), + [sym_member_access_expression] = STATE(2472), + [sym_member_binding_expression] = STATE(3081), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3079), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7633), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(3102), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3102), + [sym_typeof_expression] = STATE(3102), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2472), + [sym_literal] = STATE(3102), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(610), [sym_preproc_endregion] = STATE(610), [sym_preproc_line] = STATE(610), @@ -144676,48 +144562,48 @@ 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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1241), - [anon_sym_LPAREN] = ACTIONS(2015), - [anon_sym_ref] = ACTIONS(2017), - [anon_sym_LBRACE] = ACTIONS(1487), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1479), + [anon_sym_LPAREN] = ACTIONS(2009), + [anon_sym_ref] = ACTIONS(2011), + [anon_sym_LBRACE] = ACTIONS(1481), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1101), + [anon_sym_new] = ACTIONS(1095), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1067), - [anon_sym_BANG] = ACTIONS(2021), - [anon_sym_TILDE] = ACTIONS(2021), - [anon_sym_PLUS_PLUS] = ACTIONS(2021), - [anon_sym_DASH_DASH] = ACTIONS(2021), + [anon_sym_checked] = ACTIONS(1065), + [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(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(2019), - [anon_sym_DASH] = ACTIONS(2019), - [anon_sym_STAR] = ACTIONS(1229), - [anon_sym_CARET] = ACTIONS(2021), - [anon_sym_AMP] = ACTIONS(2021), + [anon_sym_PLUS] = ACTIONS(2013), + [anon_sym_DASH] = ACTIONS(2013), + [anon_sym_STAR] = ACTIONS(1227), + [anon_sym_CARET] = ACTIONS(2015), + [anon_sym_AMP] = ACTIONS(2015), [anon_sym_this] = ACTIONS(83), - [anon_sym_DOT] = ACTIONS(2793), + [anon_sym_DOT] = ACTIONS(2777), [anon_sym_scoped] = ACTIONS(85), [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1067), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1233), + [anon_sym_throw] = ACTIONS(1231), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1235), - [anon_sym_DOT_DOT] = ACTIONS(1237), + [anon_sym_await] = ACTIONS(1233), + [anon_sym_DOT_DOT] = ACTIONS(1235), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -144742,7 +144628,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(1089), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -144759,85 +144645,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [611] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(3126), - [sym__name] = STATE(5634), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2204), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(5483), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3664), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3080), - [sym_postfix_unary_expression] = STATE(3111), - [sym_prefix_unary_expression] = STATE(3111), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6161), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3080), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3111), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3080), - [sym_member_access_expression] = STATE(2484), - [sym_member_binding_expression] = STATE(3394), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3111), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7773), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(3080), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3080), - [sym_typeof_expression] = STATE(3080), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2484), - [sym_literal] = STATE(3080), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_using_variable_declaration] = STATE(7463), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(5182), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2212), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5793), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_tuple_element] = STATE(7166), + [sym_expression] = STATE(5589), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3468), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3102), + [sym_postfix_unary_expression] = STATE(3079), + [sym_prefix_unary_expression] = STATE(3079), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6134), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3102), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3079), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3102), + [sym_member_access_expression] = STATE(2472), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3079), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7309), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(3102), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3102), + [sym_typeof_expression] = STATE(3102), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2472), + [sym_literal] = STATE(3102), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(611), [sym_preproc_endregion] = STATE(611), [sym_preproc_line] = STATE(611), @@ -144847,48 +144734,47 @@ 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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1307), - [anon_sym_LPAREN] = ACTIONS(2015), - [anon_sym_ref] = ACTIONS(2017), - [anon_sym_LBRACE] = ACTIONS(1487), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1479), + [anon_sym_LPAREN] = ACTIONS(659), + [anon_sym_ref] = ACTIONS(2775), + [anon_sym_LBRACE] = ACTIONS(1481), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1101), + [anon_sym_new] = ACTIONS(1059), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1067), - [anon_sym_BANG] = ACTIONS(2021), - [anon_sym_TILDE] = ACTIONS(2021), - [anon_sym_PLUS_PLUS] = ACTIONS(2021), - [anon_sym_DASH_DASH] = ACTIONS(2021), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(1485), + [anon_sym_TILDE] = ACTIONS(1485), + [anon_sym_PLUS_PLUS] = ACTIONS(1485), + [anon_sym_DASH_DASH] = ACTIONS(1485), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(2019), - [anon_sym_DASH] = ACTIONS(2019), - [anon_sym_STAR] = ACTIONS(1229), - [anon_sym_CARET] = ACTIONS(2021), - [anon_sym_AMP] = ACTIONS(2021), + [anon_sym_PLUS] = ACTIONS(1483), + [anon_sym_DASH] = ACTIONS(1483), + [anon_sym_STAR] = ACTIONS(683), + [anon_sym_CARET] = ACTIONS(1485), + [anon_sym_AMP] = ACTIONS(1485), [anon_sym_this] = ACTIONS(83), - [anon_sym_DOT] = ACTIONS(2811), - [anon_sym_scoped] = ACTIONS(85), + [anon_sym_scoped] = ACTIONS(1073), [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(89), + [anon_sym_var] = ACTIONS(2749), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1067), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1233), + [anon_sym_throw] = ACTIONS(1077), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1235), - [anon_sym_DOT_DOT] = ACTIONS(1237), + [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), @@ -144913,7 +144799,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(1089), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -144930,85 +144816,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [612] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2620), - [sym__name] = STATE(5634), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2204), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(5578), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3664), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3080), - [sym_postfix_unary_expression] = STATE(3111), - [sym_prefix_unary_expression] = STATE(3111), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6161), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3080), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3111), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3080), - [sym_member_access_expression] = STATE(2484), - [sym_member_binding_expression] = STATE(3303), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3111), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7773), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(3080), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3080), - [sym_typeof_expression] = STATE(3080), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2484), - [sym_literal] = STATE(3080), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(5873), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2238), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(5171), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3468), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3102), + [sym_postfix_unary_expression] = STATE(3079), + [sym_prefix_unary_expression] = STATE(3079), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6134), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3102), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3079), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3102), + [sym_member_access_expression] = STATE(2472), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3079), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7309), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym__anonymous_object_member_declarator] = STATE(7088), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(3102), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3102), + [sym_typeof_expression] = STATE(3102), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2472), + [sym_literal] = STATE(3102), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2297), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(612), [sym_preproc_endregion] = STATE(612), [sym_preproc_line] = STATE(612), @@ -145018,48 +144904,48 @@ 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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1153), - [anon_sym_LPAREN] = ACTIONS(2015), - [anon_sym_ref] = ACTIONS(2017), - [anon_sym_LBRACE] = ACTIONS(1487), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1479), + [anon_sym_LPAREN] = ACTIONS(659), + [anon_sym_ref] = ACTIONS(663), + [anon_sym_LBRACE] = ACTIONS(1481), + [anon_sym_RBRACE] = ACTIONS(2797), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1101), + [anon_sym_new] = ACTIONS(1059), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1067), - [anon_sym_BANG] = ACTIONS(2021), - [anon_sym_TILDE] = ACTIONS(2021), - [anon_sym_PLUS_PLUS] = ACTIONS(2021), - [anon_sym_DASH_DASH] = ACTIONS(2021), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(1485), + [anon_sym_TILDE] = ACTIONS(1485), + [anon_sym_PLUS_PLUS] = ACTIONS(1485), + [anon_sym_DASH_DASH] = ACTIONS(1485), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(2019), - [anon_sym_DASH] = ACTIONS(2019), - [anon_sym_STAR] = ACTIONS(1229), - [anon_sym_CARET] = ACTIONS(2021), - [anon_sym_AMP] = ACTIONS(2021), + [anon_sym_PLUS] = ACTIONS(1483), + [anon_sym_DASH] = ACTIONS(1483), + [anon_sym_STAR] = ACTIONS(683), + [anon_sym_CARET] = ACTIONS(1485), + [anon_sym_AMP] = ACTIONS(1485), [anon_sym_this] = ACTIONS(83), - [anon_sym_DOT] = ACTIONS(2819), [anon_sym_scoped] = ACTIONS(85), [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1067), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1233), + [anon_sym_throw] = ACTIONS(1077), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1235), - [anon_sym_DOT_DOT] = ACTIONS(1237), + [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), @@ -145084,7 +144970,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(1089), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -145101,85 +144987,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [613] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(3126), - [sym__name] = STATE(5634), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2204), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(5582), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3664), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3080), - [sym_postfix_unary_expression] = STATE(3111), - [sym_prefix_unary_expression] = STATE(3111), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6161), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3080), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3111), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3080), - [sym_member_access_expression] = STATE(2484), - [sym_member_binding_expression] = STATE(3303), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3111), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7773), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(3080), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3080), - [sym_typeof_expression] = STATE(3080), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2484), - [sym_literal] = STATE(3080), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2884), + [sym__name] = STATE(5528), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2196), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(5424), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3660), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3102), + [sym_postfix_unary_expression] = STATE(3079), + [sym_prefix_unary_expression] = STATE(3079), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6163), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3102), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3079), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3102), + [sym_member_access_expression] = STATE(2472), + [sym_member_binding_expression] = STATE(3837), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3079), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7633), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(3102), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3102), + [sym_typeof_expression] = STATE(3102), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2472), + [sym_literal] = STATE(3102), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(613), [sym_preproc_endregion] = STATE(613), [sym_preproc_line] = STATE(613), @@ -145189,48 +145075,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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1153), - [anon_sym_LPAREN] = ACTIONS(2015), - [anon_sym_ref] = ACTIONS(2017), - [anon_sym_LBRACE] = ACTIONS(1487), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1655), + [anon_sym_LPAREN] = ACTIONS(2009), + [anon_sym_ref] = ACTIONS(2011), + [anon_sym_LBRACE] = ACTIONS(1481), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1101), + [anon_sym_new] = ACTIONS(1095), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1067), - [anon_sym_BANG] = ACTIONS(2021), - [anon_sym_TILDE] = ACTIONS(2021), - [anon_sym_PLUS_PLUS] = ACTIONS(2021), - [anon_sym_DASH_DASH] = ACTIONS(2021), + [anon_sym_checked] = ACTIONS(1065), + [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(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(2019), - [anon_sym_DASH] = ACTIONS(2019), - [anon_sym_STAR] = ACTIONS(1229), - [anon_sym_CARET] = ACTIONS(2021), - [anon_sym_AMP] = ACTIONS(2021), + [anon_sym_PLUS] = ACTIONS(2013), + [anon_sym_DASH] = ACTIONS(2013), + [anon_sym_STAR] = ACTIONS(1227), + [anon_sym_CARET] = ACTIONS(2015), + [anon_sym_AMP] = ACTIONS(2015), [anon_sym_this] = ACTIONS(83), - [anon_sym_DOT] = ACTIONS(2819), + [anon_sym_DOT] = ACTIONS(2773), [anon_sym_scoped] = ACTIONS(85), [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1067), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1233), + [anon_sym_throw] = ACTIONS(1231), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1235), - [anon_sym_DOT_DOT] = ACTIONS(1237), + [anon_sym_await] = ACTIONS(1233), + [anon_sym_DOT_DOT] = ACTIONS(1235), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -145255,7 +145141,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(1089), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -145272,85 +145158,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [614] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(5707), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2233), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5704), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(4918), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3379), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3080), - [sym_postfix_unary_expression] = STATE(3111), - [sym_prefix_unary_expression] = STATE(3111), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6154), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3080), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3111), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3080), - [sym_member_access_expression] = STATE(2484), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3111), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7575), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_declaration_expression] = STATE(7021), - [sym_default_expression] = STATE(3080), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3080), - [sym_typeof_expression] = STATE(3080), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2484), - [sym_literal] = STATE(3080), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2427), + [sym__name] = STATE(5528), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2196), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(5522), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3660), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3102), + [sym_postfix_unary_expression] = STATE(3079), + [sym_prefix_unary_expression] = STATE(3079), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6163), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3102), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3079), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3102), + [sym_member_access_expression] = STATE(2472), + [sym_member_binding_expression] = STATE(2973), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3079), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7633), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(3102), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3102), + [sym_typeof_expression] = STATE(3102), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2472), + [sym_literal] = STATE(3102), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(614), [sym_preproc_endregion] = STATE(614), [sym_preproc_line] = STATE(614), @@ -145360,48 +145246,48 @@ 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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1481), - [anon_sym_LPAREN] = ACTIONS(895), - [anon_sym_ref] = ACTIONS(2757), - [anon_sym_LBRACE] = ACTIONS(1487), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1239), + [anon_sym_LPAREN] = ACTIONS(2009), + [anon_sym_ref] = ACTIONS(2011), + [anon_sym_LBRACE] = ACTIONS(1481), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1061), - [anon_sym_readonly] = ACTIONS(2759), + [anon_sym_new] = ACTIONS(1095), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1067), - [anon_sym_BANG] = ACTIONS(1495), - [anon_sym_TILDE] = ACTIONS(1495), - [anon_sym_PLUS_PLUS] = ACTIONS(1495), - [anon_sym_DASH_DASH] = ACTIONS(1495), + [anon_sym_checked] = ACTIONS(1065), + [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(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1493), - [anon_sym_DASH] = ACTIONS(1493), - [anon_sym_STAR] = ACTIONS(905), - [anon_sym_CARET] = ACTIONS(1495), - [anon_sym_AMP] = ACTIONS(1495), + [anon_sym_PLUS] = ACTIONS(2013), + [anon_sym_DASH] = ACTIONS(2013), + [anon_sym_STAR] = ACTIONS(1227), + [anon_sym_CARET] = ACTIONS(2015), + [anon_sym_AMP] = ACTIONS(2015), [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(1075), + [anon_sym_DOT] = ACTIONS(2799), + [anon_sym_scoped] = ACTIONS(85), [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(2755), + [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1067), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1079), + [anon_sym_throw] = ACTIONS(1231), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1081), - [anon_sym_DOT_DOT] = ACTIONS(911), + [anon_sym_await] = ACTIONS(1233), + [anon_sym_DOT_DOT] = ACTIONS(1235), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -145426,7 +145312,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(1089), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -145443,85 +145329,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [615] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2474), - [sym__name] = STATE(5634), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2204), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(5526), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3664), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3080), - [sym_postfix_unary_expression] = STATE(3111), - [sym_prefix_unary_expression] = STATE(3111), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6161), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3080), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3111), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3080), - [sym_member_access_expression] = STATE(2484), - [sym_member_binding_expression] = STATE(3079), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3111), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7773), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(3080), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3080), - [sym_typeof_expression] = STATE(3080), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2484), - [sym_literal] = STATE(3080), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(3180), + [sym__name] = STATE(5528), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2196), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(5425), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3660), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3102), + [sym_postfix_unary_expression] = STATE(3079), + [sym_prefix_unary_expression] = STATE(3079), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6163), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3102), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3079), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3102), + [sym_member_access_expression] = STATE(2472), + [sym_member_binding_expression] = STATE(4598), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3079), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7633), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(3102), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3102), + [sym_typeof_expression] = STATE(3102), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2472), + [sym_literal] = STATE(3102), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(615), [sym_preproc_endregion] = STATE(615), [sym_preproc_line] = STATE(615), @@ -145531,48 +145417,48 @@ 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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1481), - [anon_sym_LPAREN] = ACTIONS(2015), - [anon_sym_ref] = ACTIONS(2017), - [anon_sym_LBRACE] = ACTIONS(1487), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1389), + [anon_sym_LPAREN] = ACTIONS(2009), + [anon_sym_ref] = ACTIONS(2011), + [anon_sym_LBRACE] = ACTIONS(1481), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1101), + [anon_sym_new] = ACTIONS(1095), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1067), - [anon_sym_BANG] = ACTIONS(2021), - [anon_sym_TILDE] = ACTIONS(2021), - [anon_sym_PLUS_PLUS] = ACTIONS(2021), - [anon_sym_DASH_DASH] = ACTIONS(2021), + [anon_sym_checked] = ACTIONS(1065), + [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(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(2019), - [anon_sym_DASH] = ACTIONS(2019), - [anon_sym_STAR] = ACTIONS(1229), - [anon_sym_CARET] = ACTIONS(2021), - [anon_sym_AMP] = ACTIONS(2021), + [anon_sym_PLUS] = ACTIONS(2013), + [anon_sym_DASH] = ACTIONS(2013), + [anon_sym_STAR] = ACTIONS(1227), + [anon_sym_CARET] = ACTIONS(2015), + [anon_sym_AMP] = ACTIONS(2015), [anon_sym_this] = ACTIONS(83), - [anon_sym_DOT] = ACTIONS(2745), + [anon_sym_DOT] = ACTIONS(2769), [anon_sym_scoped] = ACTIONS(85), [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1067), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1233), + [anon_sym_throw] = ACTIONS(1231), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1235), - [anon_sym_DOT_DOT] = ACTIONS(1237), + [anon_sym_await] = ACTIONS(1233), + [anon_sym_DOT_DOT] = ACTIONS(1235), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -145597,7 +145483,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(1089), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -145614,86 +145500,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [616] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_using_variable_declaration] = STATE(7615), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(5312), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2225), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5810), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_tuple_element] = STATE(7283), - [sym_expression] = STATE(5510), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3379), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3080), - [sym_postfix_unary_expression] = STATE(3111), - [sym_prefix_unary_expression] = STATE(3111), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6154), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3080), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3111), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3080), - [sym_member_access_expression] = STATE(2484), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3111), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7575), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(3080), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3080), - [sym_typeof_expression] = STATE(3080), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2484), - [sym_literal] = STATE(3080), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2669), + [sym__name] = STATE(5528), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2196), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(5479), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3660), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3102), + [sym_postfix_unary_expression] = STATE(3079), + [sym_prefix_unary_expression] = STATE(3079), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6163), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3102), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3079), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3102), + [sym_member_access_expression] = STATE(2472), + [sym_member_binding_expression] = STATE(3436), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3079), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7633), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(3102), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3102), + [sym_typeof_expression] = STATE(3102), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2472), + [sym_literal] = STATE(3102), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(616), [sym_preproc_endregion] = STATE(616), [sym_preproc_line] = STATE(616), @@ -145703,47 +145588,48 @@ 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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1481), - [anon_sym_LPAREN] = ACTIONS(895), - [anon_sym_ref] = ACTIONS(2753), - [anon_sym_LBRACE] = ACTIONS(1487), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1305), + [anon_sym_LPAREN] = ACTIONS(2009), + [anon_sym_ref] = ACTIONS(2011), + [anon_sym_LBRACE] = ACTIONS(1481), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1061), + [anon_sym_new] = ACTIONS(1095), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1067), - [anon_sym_BANG] = ACTIONS(1495), - [anon_sym_TILDE] = ACTIONS(1495), - [anon_sym_PLUS_PLUS] = ACTIONS(1495), - [anon_sym_DASH_DASH] = ACTIONS(1495), + [anon_sym_checked] = ACTIONS(1065), + [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(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1493), - [anon_sym_DASH] = ACTIONS(1493), - [anon_sym_STAR] = ACTIONS(905), - [anon_sym_CARET] = ACTIONS(1495), - [anon_sym_AMP] = ACTIONS(1495), + [anon_sym_PLUS] = ACTIONS(2013), + [anon_sym_DASH] = ACTIONS(2013), + [anon_sym_STAR] = ACTIONS(1227), + [anon_sym_CARET] = ACTIONS(2015), + [anon_sym_AMP] = ACTIONS(2015), [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(1075), + [anon_sym_DOT] = ACTIONS(2795), + [anon_sym_scoped] = ACTIONS(85), [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(2755), + [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1067), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1079), + [anon_sym_throw] = ACTIONS(1231), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1081), - [anon_sym_DOT_DOT] = ACTIONS(911), + [anon_sym_await] = ACTIONS(1233), + [anon_sym_DOT_DOT] = ACTIONS(1235), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -145768,7 +145654,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(1089), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -145785,85 +145671,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [617] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2474), - [sym__name] = STATE(5634), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2204), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(5607), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3664), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3080), - [sym_postfix_unary_expression] = STATE(3111), - [sym_prefix_unary_expression] = STATE(3111), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6161), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3080), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3111), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3080), - [sym_member_access_expression] = STATE(2484), - [sym_member_binding_expression] = STATE(3079), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3111), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7773), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(3080), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3080), - [sym_typeof_expression] = STATE(3080), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2484), - [sym_literal] = STATE(3080), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(3118), + [sym__name] = STATE(5528), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2196), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(5598), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3660), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3102), + [sym_postfix_unary_expression] = STATE(3079), + [sym_prefix_unary_expression] = STATE(3079), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6163), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3102), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3079), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3102), + [sym_member_access_expression] = STATE(2472), + [sym_member_binding_expression] = STATE(3436), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3079), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7633), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(3102), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3102), + [sym_typeof_expression] = STATE(3102), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2472), + [sym_literal] = STATE(3102), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(617), [sym_preproc_endregion] = STATE(617), [sym_preproc_line] = STATE(617), @@ -145873,48 +145759,48 @@ 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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1481), - [anon_sym_LPAREN] = ACTIONS(2015), - [anon_sym_ref] = ACTIONS(2017), - [anon_sym_LBRACE] = ACTIONS(1487), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1305), + [anon_sym_LPAREN] = ACTIONS(2009), + [anon_sym_ref] = ACTIONS(2011), + [anon_sym_LBRACE] = ACTIONS(1481), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1101), + [anon_sym_new] = ACTIONS(1095), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1067), - [anon_sym_BANG] = ACTIONS(2021), - [anon_sym_TILDE] = ACTIONS(2021), - [anon_sym_PLUS_PLUS] = ACTIONS(2021), - [anon_sym_DASH_DASH] = ACTIONS(2021), + [anon_sym_checked] = ACTIONS(1065), + [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(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(2019), - [anon_sym_DASH] = ACTIONS(2019), - [anon_sym_STAR] = ACTIONS(1229), - [anon_sym_CARET] = ACTIONS(2021), - [anon_sym_AMP] = ACTIONS(2021), + [anon_sym_PLUS] = ACTIONS(2013), + [anon_sym_DASH] = ACTIONS(2013), + [anon_sym_STAR] = ACTIONS(1227), + [anon_sym_CARET] = ACTIONS(2015), + [anon_sym_AMP] = ACTIONS(2015), [anon_sym_this] = ACTIONS(83), - [anon_sym_DOT] = ACTIONS(2745), + [anon_sym_DOT] = ACTIONS(2795), [anon_sym_scoped] = ACTIONS(85), [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1067), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1233), + [anon_sym_throw] = ACTIONS(1231), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1235), - [anon_sym_DOT_DOT] = ACTIONS(1237), + [anon_sym_await] = ACTIONS(1233), + [anon_sym_DOT_DOT] = ACTIONS(1235), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -145939,7 +145825,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(1089), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -145956,86 +145842,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [618] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_using_variable_declaration] = STATE(7315), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(5312), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2225), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5810), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_tuple_element] = STATE(7283), - [sym_expression] = STATE(5626), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3379), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3080), - [sym_postfix_unary_expression] = STATE(3111), - [sym_prefix_unary_expression] = STATE(3111), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6154), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3080), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3111), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3080), - [sym_member_access_expression] = STATE(2484), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3111), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7575), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(3080), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3080), - [sym_typeof_expression] = STATE(3080), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2484), - [sym_literal] = STATE(3080), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2593), + [sym__name] = STATE(5528), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2196), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(5326), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3660), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3102), + [sym_postfix_unary_expression] = STATE(3079), + [sym_prefix_unary_expression] = STATE(3079), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6163), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3102), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3079), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3102), + [sym_member_access_expression] = STATE(2472), + [sym_member_binding_expression] = STATE(3267), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3079), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7633), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(3102), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3102), + [sym_typeof_expression] = STATE(3102), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2472), + [sym_literal] = STATE(3102), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(618), [sym_preproc_endregion] = STATE(618), [sym_preproc_line] = STATE(618), @@ -146045,47 +145930,48 @@ 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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1481), - [anon_sym_LPAREN] = ACTIONS(895), - [anon_sym_ref] = ACTIONS(2753), - [anon_sym_LBRACE] = ACTIONS(1487), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1149), + [anon_sym_LPAREN] = ACTIONS(2009), + [anon_sym_ref] = ACTIONS(2011), + [anon_sym_LBRACE] = ACTIONS(1481), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1061), + [anon_sym_new] = ACTIONS(1095), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1067), - [anon_sym_BANG] = ACTIONS(1495), - [anon_sym_TILDE] = ACTIONS(1495), - [anon_sym_PLUS_PLUS] = ACTIONS(1495), - [anon_sym_DASH_DASH] = ACTIONS(1495), + [anon_sym_checked] = ACTIONS(1065), + [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(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1493), - [anon_sym_DASH] = ACTIONS(1493), - [anon_sym_STAR] = ACTIONS(905), - [anon_sym_CARET] = ACTIONS(1495), - [anon_sym_AMP] = ACTIONS(1495), + [anon_sym_PLUS] = ACTIONS(2013), + [anon_sym_DASH] = ACTIONS(2013), + [anon_sym_STAR] = ACTIONS(1227), + [anon_sym_CARET] = ACTIONS(2015), + [anon_sym_AMP] = ACTIONS(2015), [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(1075), + [anon_sym_DOT] = ACTIONS(2751), + [anon_sym_scoped] = ACTIONS(85), [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(2755), + [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1067), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1079), + [anon_sym_throw] = ACTIONS(1231), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1081), - [anon_sym_DOT_DOT] = ACTIONS(911), + [anon_sym_await] = ACTIONS(1233), + [anon_sym_DOT_DOT] = ACTIONS(1235), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -146110,7 +145996,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(1089), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -146127,85 +146013,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [619] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2883), - [sym__name] = STATE(5634), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2204), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(5532), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3664), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3080), - [sym_postfix_unary_expression] = STATE(3111), - [sym_prefix_unary_expression] = STATE(3111), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6161), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3080), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3111), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3080), - [sym_member_access_expression] = STATE(2484), - [sym_member_binding_expression] = STATE(3697), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3111), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7773), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(3080), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3080), - [sym_typeof_expression] = STATE(3080), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2484), - [sym_literal] = STATE(3080), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_using_variable_declaration] = STATE(7583), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(5182), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2212), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5793), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_tuple_element] = STATE(7166), + [sym_expression] = STATE(5626), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3468), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3102), + [sym_postfix_unary_expression] = STATE(3079), + [sym_prefix_unary_expression] = STATE(3079), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6134), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3102), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3079), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3102), + [sym_member_access_expression] = STATE(2472), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3079), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7309), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(3102), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3102), + [sym_typeof_expression] = STATE(3102), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2472), + [sym_literal] = STATE(3102), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(619), [sym_preproc_endregion] = STATE(619), [sym_preproc_line] = STATE(619), @@ -146215,48 +146102,47 @@ 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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1627), - [anon_sym_LPAREN] = ACTIONS(2015), - [anon_sym_ref] = ACTIONS(2017), - [anon_sym_LBRACE] = ACTIONS(1487), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1479), + [anon_sym_LPAREN] = ACTIONS(659), + [anon_sym_ref] = ACTIONS(2775), + [anon_sym_LBRACE] = ACTIONS(1481), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1101), + [anon_sym_new] = ACTIONS(1059), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1067), - [anon_sym_BANG] = ACTIONS(2021), - [anon_sym_TILDE] = ACTIONS(2021), - [anon_sym_PLUS_PLUS] = ACTIONS(2021), - [anon_sym_DASH_DASH] = ACTIONS(2021), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(1485), + [anon_sym_TILDE] = ACTIONS(1485), + [anon_sym_PLUS_PLUS] = ACTIONS(1485), + [anon_sym_DASH_DASH] = ACTIONS(1485), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(2019), - [anon_sym_DASH] = ACTIONS(2019), - [anon_sym_STAR] = ACTIONS(1229), - [anon_sym_CARET] = ACTIONS(2021), - [anon_sym_AMP] = ACTIONS(2021), + [anon_sym_PLUS] = ACTIONS(1483), + [anon_sym_DASH] = ACTIONS(1483), + [anon_sym_STAR] = ACTIONS(683), + [anon_sym_CARET] = ACTIONS(1485), + [anon_sym_AMP] = ACTIONS(1485), [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(2749), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1067), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1233), + [anon_sym_throw] = ACTIONS(1077), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1235), - [anon_sym_DOT_DOT] = ACTIONS(1237), + [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), @@ -146281,7 +146167,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(1089), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -146298,85 +146184,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [620] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2425), - [sym__name] = STATE(5634), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2204), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(5523), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3664), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3080), - [sym_postfix_unary_expression] = STATE(3111), - [sym_prefix_unary_expression] = STATE(3111), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6161), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3080), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3111), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3080), - [sym_member_access_expression] = STATE(2484), - [sym_member_binding_expression] = STATE(3062), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3111), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7773), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(3080), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3080), - [sym_typeof_expression] = STATE(3080), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2484), - [sym_literal] = STATE(3080), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(5873), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2238), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(4964), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3468), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3102), + [sym_postfix_unary_expression] = STATE(3079), + [sym_prefix_unary_expression] = STATE(3079), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6134), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3102), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3079), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3102), + [sym_member_access_expression] = STATE(2472), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3079), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7309), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(3102), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3102), + [sym_typeof_expression] = STATE(3102), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2472), + [sym_literal] = STATE(3102), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(620), [sym_preproc_endregion] = STATE(620), [sym_preproc_line] = STATE(620), @@ -146386,48 +146271,49 @@ 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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1241), - [anon_sym_LPAREN] = ACTIONS(2015), - [anon_sym_ref] = ACTIONS(2017), - [anon_sym_LBRACE] = ACTIONS(1487), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1479), + [anon_sym_COMMA] = ACTIONS(939), + [anon_sym_LPAREN] = ACTIONS(659), + [anon_sym_ref] = ACTIONS(663), + [anon_sym_LBRACE] = ACTIONS(1481), + [anon_sym_RBRACE] = ACTIONS(2801), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1101), + [anon_sym_new] = ACTIONS(1059), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1067), - [anon_sym_BANG] = ACTIONS(2021), - [anon_sym_TILDE] = ACTIONS(2021), - [anon_sym_PLUS_PLUS] = ACTIONS(2021), - [anon_sym_DASH_DASH] = ACTIONS(2021), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(1485), + [anon_sym_TILDE] = ACTIONS(1485), + [anon_sym_PLUS_PLUS] = ACTIONS(1485), + [anon_sym_DASH_DASH] = ACTIONS(1485), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(2019), - [anon_sym_DASH] = ACTIONS(2019), - [anon_sym_STAR] = ACTIONS(1229), - [anon_sym_CARET] = ACTIONS(2021), - [anon_sym_AMP] = ACTIONS(2021), + [anon_sym_PLUS] = ACTIONS(1483), + [anon_sym_DASH] = ACTIONS(1483), + [anon_sym_STAR] = ACTIONS(683), + [anon_sym_CARET] = ACTIONS(1485), + [anon_sym_AMP] = ACTIONS(1485), [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), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1067), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1233), + [anon_sym_throw] = ACTIONS(1077), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1235), - [anon_sym_DOT_DOT] = ACTIONS(1237), + [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), @@ -146452,7 +146338,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(1089), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -146469,85 +146355,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [621] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(3213), - [sym__name] = STATE(5634), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2204), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(5552), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3664), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3080), - [sym_postfix_unary_expression] = STATE(3111), - [sym_prefix_unary_expression] = STATE(3111), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6161), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3080), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3111), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3080), - [sym_member_access_expression] = STATE(2484), - [sym_member_binding_expression] = STATE(4707), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3111), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7773), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(3080), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3080), - [sym_typeof_expression] = STATE(3080), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2484), - [sym_literal] = STATE(3080), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_using_variable_declaration] = STATE(7375), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(5182), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2212), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5793), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_tuple_element] = STATE(7166), + [sym_expression] = STATE(5396), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3468), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3102), + [sym_postfix_unary_expression] = STATE(3079), + [sym_prefix_unary_expression] = STATE(3079), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6134), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3102), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3079), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3102), + [sym_member_access_expression] = STATE(2472), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3079), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7309), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(3102), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3102), + [sym_typeof_expression] = STATE(3102), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2472), + [sym_literal] = STATE(3102), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(621), [sym_preproc_endregion] = STATE(621), [sym_preproc_line] = STATE(621), @@ -146557,48 +146444,47 @@ 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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1391), - [anon_sym_LPAREN] = ACTIONS(2015), - [anon_sym_ref] = ACTIONS(2017), - [anon_sym_LBRACE] = ACTIONS(1487), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1479), + [anon_sym_LPAREN] = ACTIONS(659), + [anon_sym_ref] = ACTIONS(2775), + [anon_sym_LBRACE] = ACTIONS(1481), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1101), + [anon_sym_new] = ACTIONS(1059), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1067), - [anon_sym_BANG] = ACTIONS(2021), - [anon_sym_TILDE] = ACTIONS(2021), - [anon_sym_PLUS_PLUS] = ACTIONS(2021), - [anon_sym_DASH_DASH] = ACTIONS(2021), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(1485), + [anon_sym_TILDE] = ACTIONS(1485), + [anon_sym_PLUS_PLUS] = ACTIONS(1485), + [anon_sym_DASH_DASH] = ACTIONS(1485), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(2019), - [anon_sym_DASH] = ACTIONS(2019), - [anon_sym_STAR] = ACTIONS(1229), - [anon_sym_CARET] = ACTIONS(2021), - [anon_sym_AMP] = ACTIONS(2021), + [anon_sym_PLUS] = ACTIONS(1483), + [anon_sym_DASH] = ACTIONS(1483), + [anon_sym_STAR] = ACTIONS(683), + [anon_sym_CARET] = ACTIONS(1485), + [anon_sym_AMP] = ACTIONS(1485), [anon_sym_this] = ACTIONS(83), - [anon_sym_DOT] = ACTIONS(2803), - [anon_sym_scoped] = ACTIONS(85), + [anon_sym_scoped] = ACTIONS(1073), [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(89), + [anon_sym_var] = ACTIONS(2749), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1067), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1233), + [anon_sym_throw] = ACTIONS(1077), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1235), - [anon_sym_DOT_DOT] = ACTIONS(1237), + [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), @@ -146623,7 +146509,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(1089), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -146640,85 +146526,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [622] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2687), - [sym__name] = STATE(5634), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2204), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(5335), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3664), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3080), - [sym_postfix_unary_expression] = STATE(3111), - [sym_prefix_unary_expression] = STATE(3111), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6161), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3080), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3111), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3080), - [sym_member_access_expression] = STATE(2484), - [sym_member_binding_expression] = STATE(3394), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3111), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7773), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(3080), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3080), - [sym_typeof_expression] = STATE(3080), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2484), - [sym_literal] = STATE(3080), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2427), + [sym__name] = STATE(5528), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2196), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(5318), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3660), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3102), + [sym_postfix_unary_expression] = STATE(3079), + [sym_prefix_unary_expression] = STATE(3079), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6163), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3102), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3079), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3102), + [sym_member_access_expression] = STATE(2472), + [sym_member_binding_expression] = STATE(2973), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3079), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7633), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(3102), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3102), + [sym_typeof_expression] = STATE(3102), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2472), + [sym_literal] = STATE(3102), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(622), [sym_preproc_endregion] = STATE(622), [sym_preproc_line] = STATE(622), @@ -146728,48 +146614,48 @@ 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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1307), - [anon_sym_LPAREN] = ACTIONS(2015), - [anon_sym_ref] = ACTIONS(2017), - [anon_sym_LBRACE] = ACTIONS(1487), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1239), + [anon_sym_LPAREN] = ACTIONS(2009), + [anon_sym_ref] = ACTIONS(2011), + [anon_sym_LBRACE] = ACTIONS(1481), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1101), + [anon_sym_new] = ACTIONS(1095), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1067), - [anon_sym_BANG] = ACTIONS(2021), - [anon_sym_TILDE] = ACTIONS(2021), - [anon_sym_PLUS_PLUS] = ACTIONS(2021), - [anon_sym_DASH_DASH] = ACTIONS(2021), + [anon_sym_checked] = ACTIONS(1065), + [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(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(2019), - [anon_sym_DASH] = ACTIONS(2019), - [anon_sym_STAR] = ACTIONS(1229), - [anon_sym_CARET] = ACTIONS(2021), - [anon_sym_AMP] = ACTIONS(2021), + [anon_sym_PLUS] = ACTIONS(2013), + [anon_sym_DASH] = ACTIONS(2013), + [anon_sym_STAR] = ACTIONS(1227), + [anon_sym_CARET] = ACTIONS(2015), + [anon_sym_AMP] = ACTIONS(2015), [anon_sym_this] = ACTIONS(83), - [anon_sym_DOT] = ACTIONS(2811), + [anon_sym_DOT] = ACTIONS(2799), [anon_sym_scoped] = ACTIONS(85), [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1067), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1233), + [anon_sym_throw] = ACTIONS(1231), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1235), - [anon_sym_DOT_DOT] = ACTIONS(1237), + [anon_sym_await] = ACTIONS(1233), + [anon_sym_DOT_DOT] = ACTIONS(1235), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -146794,7 +146680,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(1089), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -146811,85 +146697,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [623] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(3126), - [sym__name] = STATE(5634), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2204), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(5564), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3664), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3080), - [sym_postfix_unary_expression] = STATE(3111), - [sym_prefix_unary_expression] = STATE(3111), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6161), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3080), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3111), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3080), - [sym_member_access_expression] = STATE(2484), - [sym_member_binding_expression] = STATE(3394), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3111), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7773), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(3080), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3080), - [sym_typeof_expression] = STATE(3080), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2484), - [sym_literal] = STATE(3080), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2669), + [sym__name] = STATE(5528), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2196), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(5423), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3660), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3102), + [sym_postfix_unary_expression] = STATE(3079), + [sym_prefix_unary_expression] = STATE(3079), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6163), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3102), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3079), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3102), + [sym_member_access_expression] = STATE(2472), + [sym_member_binding_expression] = STATE(3436), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3079), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7633), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(3102), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3102), + [sym_typeof_expression] = STATE(3102), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2472), + [sym_literal] = STATE(3102), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(623), [sym_preproc_endregion] = STATE(623), [sym_preproc_line] = STATE(623), @@ -146899,48 +146785,48 @@ 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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1307), - [anon_sym_LPAREN] = ACTIONS(2015), - [anon_sym_ref] = ACTIONS(2017), - [anon_sym_LBRACE] = ACTIONS(1487), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1305), + [anon_sym_LPAREN] = ACTIONS(2009), + [anon_sym_ref] = ACTIONS(2011), + [anon_sym_LBRACE] = ACTIONS(1481), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1101), + [anon_sym_new] = ACTIONS(1095), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1067), - [anon_sym_BANG] = ACTIONS(2021), - [anon_sym_TILDE] = ACTIONS(2021), - [anon_sym_PLUS_PLUS] = ACTIONS(2021), - [anon_sym_DASH_DASH] = ACTIONS(2021), + [anon_sym_checked] = ACTIONS(1065), + [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(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(2019), - [anon_sym_DASH] = ACTIONS(2019), - [anon_sym_STAR] = ACTIONS(1229), - [anon_sym_CARET] = ACTIONS(2021), - [anon_sym_AMP] = ACTIONS(2021), + [anon_sym_PLUS] = ACTIONS(2013), + [anon_sym_DASH] = ACTIONS(2013), + [anon_sym_STAR] = ACTIONS(1227), + [anon_sym_CARET] = ACTIONS(2015), + [anon_sym_AMP] = ACTIONS(2015), [anon_sym_this] = ACTIONS(83), - [anon_sym_DOT] = ACTIONS(2811), + [anon_sym_DOT] = ACTIONS(2803), [anon_sym_scoped] = ACTIONS(85), [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1067), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1233), + [anon_sym_throw] = ACTIONS(1231), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1235), - [anon_sym_DOT_DOT] = ACTIONS(1237), + [anon_sym_await] = ACTIONS(1233), + [anon_sym_DOT_DOT] = ACTIONS(1235), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -146965,7 +146851,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(1089), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -146982,85 +146868,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [624] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2620), - [sym__name] = STATE(5634), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2204), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(5581), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3664), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3080), - [sym_postfix_unary_expression] = STATE(3111), - [sym_prefix_unary_expression] = STATE(3111), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6161), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3080), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3111), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3080), - [sym_member_access_expression] = STATE(2484), - [sym_member_binding_expression] = STATE(3303), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3111), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7773), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(3080), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3080), - [sym_typeof_expression] = STATE(3080), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2484), - [sym_literal] = STATE(3080), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2593), + [sym__name] = STATE(5528), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2196), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(5330), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3660), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3102), + [sym_postfix_unary_expression] = STATE(3079), + [sym_prefix_unary_expression] = STATE(3079), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6163), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3102), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3079), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3102), + [sym_member_access_expression] = STATE(2472), + [sym_member_binding_expression] = STATE(3267), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3079), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7633), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(3102), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3102), + [sym_typeof_expression] = STATE(3102), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2472), + [sym_literal] = STATE(3102), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(624), [sym_preproc_endregion] = STATE(624), [sym_preproc_line] = STATE(624), @@ -147070,48 +146956,48 @@ 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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1153), - [anon_sym_LPAREN] = ACTIONS(2015), - [anon_sym_ref] = ACTIONS(2017), - [anon_sym_LBRACE] = ACTIONS(1487), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1149), + [anon_sym_LPAREN] = ACTIONS(2009), + [anon_sym_ref] = ACTIONS(2011), + [anon_sym_LBRACE] = ACTIONS(1481), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1101), + [anon_sym_new] = ACTIONS(1095), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1067), - [anon_sym_BANG] = ACTIONS(2021), - [anon_sym_TILDE] = ACTIONS(2021), - [anon_sym_PLUS_PLUS] = ACTIONS(2021), - [anon_sym_DASH_DASH] = ACTIONS(2021), + [anon_sym_checked] = ACTIONS(1065), + [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(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(2019), - [anon_sym_DASH] = ACTIONS(2019), - [anon_sym_STAR] = ACTIONS(1229), - [anon_sym_CARET] = ACTIONS(2021), - [anon_sym_AMP] = ACTIONS(2021), + [anon_sym_PLUS] = ACTIONS(2013), + [anon_sym_DASH] = ACTIONS(2013), + [anon_sym_STAR] = ACTIONS(1227), + [anon_sym_CARET] = ACTIONS(2015), + [anon_sym_AMP] = ACTIONS(2015), [anon_sym_this] = ACTIONS(83), - [anon_sym_DOT] = ACTIONS(2819), + [anon_sym_DOT] = ACTIONS(2751), [anon_sym_scoped] = ACTIONS(85), [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1067), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1233), + [anon_sym_throw] = ACTIONS(1231), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1235), - [anon_sym_DOT_DOT] = ACTIONS(1237), + [anon_sym_await] = ACTIONS(1233), + [anon_sym_DOT_DOT] = ACTIONS(1235), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -147136,7 +147022,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(1089), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -147153,85 +147039,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [625] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(3126), - [sym__name] = STATE(5634), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2204), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(5586), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3664), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3080), - [sym_postfix_unary_expression] = STATE(3111), - [sym_prefix_unary_expression] = STATE(3111), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6161), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3080), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3111), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3080), - [sym_member_access_expression] = STATE(2484), - [sym_member_binding_expression] = STATE(3303), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3111), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7773), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(3080), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3080), - [sym_typeof_expression] = STATE(3080), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2484), - [sym_literal] = STATE(3080), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2669), + [sym__name] = STATE(5528), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2196), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(5370), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3660), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3102), + [sym_postfix_unary_expression] = STATE(3079), + [sym_prefix_unary_expression] = STATE(3079), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6163), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3102), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3079), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3102), + [sym_member_access_expression] = STATE(2472), + [sym_member_binding_expression] = STATE(3436), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3079), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7633), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(3102), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3102), + [sym_typeof_expression] = STATE(3102), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2472), + [sym_literal] = STATE(3102), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(625), [sym_preproc_endregion] = STATE(625), [sym_preproc_line] = STATE(625), @@ -147241,48 +147127,48 @@ 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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1153), - [anon_sym_LPAREN] = ACTIONS(2015), - [anon_sym_ref] = ACTIONS(2017), - [anon_sym_LBRACE] = ACTIONS(1487), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1305), + [anon_sym_LPAREN] = ACTIONS(2009), + [anon_sym_ref] = ACTIONS(2011), + [anon_sym_LBRACE] = ACTIONS(1481), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1101), + [anon_sym_new] = ACTIONS(1095), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1067), - [anon_sym_BANG] = ACTIONS(2021), - [anon_sym_TILDE] = ACTIONS(2021), - [anon_sym_PLUS_PLUS] = ACTIONS(2021), - [anon_sym_DASH_DASH] = ACTIONS(2021), + [anon_sym_checked] = ACTIONS(1065), + [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(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(2019), - [anon_sym_DASH] = ACTIONS(2019), - [anon_sym_STAR] = ACTIONS(1229), - [anon_sym_CARET] = ACTIONS(2021), - [anon_sym_AMP] = ACTIONS(2021), + [anon_sym_PLUS] = ACTIONS(2013), + [anon_sym_DASH] = ACTIONS(2013), + [anon_sym_STAR] = ACTIONS(1227), + [anon_sym_CARET] = ACTIONS(2015), + [anon_sym_AMP] = ACTIONS(2015), [anon_sym_this] = ACTIONS(83), - [anon_sym_DOT] = ACTIONS(2819), + [anon_sym_DOT] = ACTIONS(2795), [anon_sym_scoped] = ACTIONS(85), [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1067), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1233), + [anon_sym_throw] = ACTIONS(1231), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1235), - [anon_sym_DOT_DOT] = ACTIONS(1237), + [anon_sym_await] = ACTIONS(1233), + [anon_sym_DOT_DOT] = ACTIONS(1235), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -147307,7 +147193,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(1089), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -147324,86 +147210,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [626] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_using_variable_declaration] = STATE(7669), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(5312), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2225), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5810), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_tuple_element] = STATE(7283), - [sym_expression] = STATE(5371), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3379), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3080), - [sym_postfix_unary_expression] = STATE(3111), - [sym_prefix_unary_expression] = STATE(3111), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6154), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3080), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3111), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3080), - [sym_member_access_expression] = STATE(2484), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3111), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7575), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(3080), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3080), - [sym_typeof_expression] = STATE(3080), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2484), - [sym_literal] = STATE(3080), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2427), + [sym__name] = STATE(5528), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2196), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(5320), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3660), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3102), + [sym_postfix_unary_expression] = STATE(3079), + [sym_prefix_unary_expression] = STATE(3079), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6163), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3102), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3079), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3102), + [sym_member_access_expression] = STATE(2472), + [sym_member_binding_expression] = STATE(2973), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3079), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7633), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(3102), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3102), + [sym_typeof_expression] = STATE(3102), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2472), + [sym_literal] = STATE(3102), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(626), [sym_preproc_endregion] = STATE(626), [sym_preproc_line] = STATE(626), @@ -147413,47 +147298,48 @@ 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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1481), - [anon_sym_LPAREN] = ACTIONS(895), - [anon_sym_ref] = ACTIONS(2753), - [anon_sym_LBRACE] = ACTIONS(1487), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1239), + [anon_sym_LPAREN] = ACTIONS(2009), + [anon_sym_ref] = ACTIONS(2011), + [anon_sym_LBRACE] = ACTIONS(1481), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1061), + [anon_sym_new] = ACTIONS(1095), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1067), - [anon_sym_BANG] = ACTIONS(1495), - [anon_sym_TILDE] = ACTIONS(1495), - [anon_sym_PLUS_PLUS] = ACTIONS(1495), - [anon_sym_DASH_DASH] = ACTIONS(1495), + [anon_sym_checked] = ACTIONS(1065), + [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(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1493), - [anon_sym_DASH] = ACTIONS(1493), - [anon_sym_STAR] = ACTIONS(905), - [anon_sym_CARET] = ACTIONS(1495), - [anon_sym_AMP] = ACTIONS(1495), + [anon_sym_PLUS] = ACTIONS(2013), + [anon_sym_DASH] = ACTIONS(2013), + [anon_sym_STAR] = ACTIONS(1227), + [anon_sym_CARET] = ACTIONS(2015), + [anon_sym_AMP] = ACTIONS(2015), [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(1075), + [anon_sym_DOT] = ACTIONS(2799), + [anon_sym_scoped] = ACTIONS(85), [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(2755), + [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1067), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1079), + [anon_sym_throw] = ACTIONS(1231), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1081), - [anon_sym_DOT_DOT] = ACTIONS(911), + [anon_sym_await] = ACTIONS(1233), + [anon_sym_DOT_DOT] = ACTIONS(1235), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -147478,7 +147364,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(1089), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -147495,85 +147381,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [627] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2474), - [sym__name] = STATE(5634), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2204), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(5638), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3664), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3080), - [sym_postfix_unary_expression] = STATE(3111), - [sym_prefix_unary_expression] = STATE(3111), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6161), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3080), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3111), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3080), - [sym_member_access_expression] = STATE(2484), - [sym_member_binding_expression] = STATE(3079), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3111), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7773), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(3080), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3080), - [sym_typeof_expression] = STATE(3080), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2484), - [sym_literal] = STATE(3080), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2454), + [sym__name] = STATE(5528), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2196), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(5637), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3660), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3102), + [sym_postfix_unary_expression] = STATE(3079), + [sym_prefix_unary_expression] = STATE(3079), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6163), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3102), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3079), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3102), + [sym_member_access_expression] = STATE(2472), + [sym_member_binding_expression] = STATE(3081), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3079), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7633), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(3102), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3102), + [sym_typeof_expression] = STATE(3102), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2472), + [sym_literal] = STATE(3102), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(627), [sym_preproc_endregion] = STATE(627), [sym_preproc_line] = STATE(627), @@ -147583,48 +147469,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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1481), - [anon_sym_LPAREN] = ACTIONS(2015), - [anon_sym_ref] = ACTIONS(2017), - [anon_sym_LBRACE] = ACTIONS(1487), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1479), + [anon_sym_LPAREN] = ACTIONS(2009), + [anon_sym_ref] = ACTIONS(2011), + [anon_sym_LBRACE] = ACTIONS(1481), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1101), + [anon_sym_new] = ACTIONS(1095), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1067), - [anon_sym_BANG] = ACTIONS(2021), - [anon_sym_TILDE] = ACTIONS(2021), - [anon_sym_PLUS_PLUS] = ACTIONS(2021), - [anon_sym_DASH_DASH] = ACTIONS(2021), + [anon_sym_checked] = ACTIONS(1065), + [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(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(2019), - [anon_sym_DASH] = ACTIONS(2019), - [anon_sym_STAR] = ACTIONS(1229), - [anon_sym_CARET] = ACTIONS(2021), - [anon_sym_AMP] = ACTIONS(2021), + [anon_sym_PLUS] = ACTIONS(2013), + [anon_sym_DASH] = ACTIONS(2013), + [anon_sym_STAR] = ACTIONS(1227), + [anon_sym_CARET] = ACTIONS(2015), + [anon_sym_AMP] = ACTIONS(2015), [anon_sym_this] = ACTIONS(83), - [anon_sym_DOT] = ACTIONS(2745), + [anon_sym_DOT] = ACTIONS(2777), [anon_sym_scoped] = ACTIONS(85), [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1067), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1233), + [anon_sym_throw] = ACTIONS(1231), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1235), - [anon_sym_DOT_DOT] = ACTIONS(1237), + [anon_sym_await] = ACTIONS(1233), + [anon_sym_DOT_DOT] = ACTIONS(1235), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -147649,7 +147535,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(1089), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -147666,86 +147552,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [628] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_using_variable_declaration] = STATE(7416), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(5312), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2225), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5810), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_tuple_element] = STATE(7283), - [sym_expression] = STATE(5430), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3379), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3080), - [sym_postfix_unary_expression] = STATE(3111), - [sym_prefix_unary_expression] = STATE(3111), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6154), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3080), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3111), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3080), - [sym_member_access_expression] = STATE(2484), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3111), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7575), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(3080), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3080), - [sym_typeof_expression] = STATE(3080), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2484), - [sym_literal] = STATE(3080), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2593), + [sym__name] = STATE(5528), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2196), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(5331), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3660), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3102), + [sym_postfix_unary_expression] = STATE(3079), + [sym_prefix_unary_expression] = STATE(3079), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6163), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3102), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3079), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3102), + [sym_member_access_expression] = STATE(2472), + [sym_member_binding_expression] = STATE(3267), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3079), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7633), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(3102), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3102), + [sym_typeof_expression] = STATE(3102), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2472), + [sym_literal] = STATE(3102), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(628), [sym_preproc_endregion] = STATE(628), [sym_preproc_line] = STATE(628), @@ -147755,47 +147640,48 @@ 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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1481), - [anon_sym_LPAREN] = ACTIONS(895), - [anon_sym_ref] = ACTIONS(2753), - [anon_sym_LBRACE] = ACTIONS(1487), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1149), + [anon_sym_LPAREN] = ACTIONS(2009), + [anon_sym_ref] = ACTIONS(2011), + [anon_sym_LBRACE] = ACTIONS(1481), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1061), + [anon_sym_new] = ACTIONS(1095), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1067), - [anon_sym_BANG] = ACTIONS(1495), - [anon_sym_TILDE] = ACTIONS(1495), - [anon_sym_PLUS_PLUS] = ACTIONS(1495), - [anon_sym_DASH_DASH] = ACTIONS(1495), + [anon_sym_checked] = ACTIONS(1065), + [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(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1493), - [anon_sym_DASH] = ACTIONS(1493), - [anon_sym_STAR] = ACTIONS(905), - [anon_sym_CARET] = ACTIONS(1495), - [anon_sym_AMP] = ACTIONS(1495), + [anon_sym_PLUS] = ACTIONS(2013), + [anon_sym_DASH] = ACTIONS(2013), + [anon_sym_STAR] = ACTIONS(1227), + [anon_sym_CARET] = ACTIONS(2015), + [anon_sym_AMP] = ACTIONS(2015), [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(1075), + [anon_sym_DOT] = ACTIONS(2751), + [anon_sym_scoped] = ACTIONS(85), [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(2755), + [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1067), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1079), + [anon_sym_throw] = ACTIONS(1231), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1081), - [anon_sym_DOT_DOT] = ACTIONS(911), + [anon_sym_await] = ACTIONS(1233), + [anon_sym_DOT_DOT] = ACTIONS(1235), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -147820,7 +147706,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(1089), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -147837,85 +147723,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [629] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2883), - [sym__name] = STATE(5634), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2204), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(5418), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3664), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3080), - [sym_postfix_unary_expression] = STATE(3111), - [sym_prefix_unary_expression] = STATE(3111), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6161), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3080), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3111), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3080), - [sym_member_access_expression] = STATE(2484), - [sym_member_binding_expression] = STATE(3697), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3111), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7773), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(3080), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3080), - [sym_typeof_expression] = STATE(3080), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2484), - [sym_literal] = STATE(3080), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2427), + [sym__name] = STATE(5528), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2196), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(5323), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3660), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3102), + [sym_postfix_unary_expression] = STATE(3079), + [sym_prefix_unary_expression] = STATE(3079), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6163), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3102), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3079), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3102), + [sym_member_access_expression] = STATE(2472), + [sym_member_binding_expression] = STATE(2973), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3079), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7633), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(3102), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3102), + [sym_typeof_expression] = STATE(3102), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2472), + [sym_literal] = STATE(3102), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(629), [sym_preproc_endregion] = STATE(629), [sym_preproc_line] = STATE(629), @@ -147925,48 +147811,48 @@ 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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1627), - [anon_sym_LPAREN] = ACTIONS(2015), - [anon_sym_ref] = ACTIONS(2017), - [anon_sym_LBRACE] = ACTIONS(1487), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1239), + [anon_sym_LPAREN] = ACTIONS(2009), + [anon_sym_ref] = ACTIONS(2011), + [anon_sym_LBRACE] = ACTIONS(1481), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1101), + [anon_sym_new] = ACTIONS(1095), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1067), - [anon_sym_BANG] = ACTIONS(2021), - [anon_sym_TILDE] = ACTIONS(2021), - [anon_sym_PLUS_PLUS] = ACTIONS(2021), - [anon_sym_DASH_DASH] = ACTIONS(2021), + [anon_sym_checked] = ACTIONS(1065), + [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(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(2019), - [anon_sym_DASH] = ACTIONS(2019), - [anon_sym_STAR] = ACTIONS(1229), - [anon_sym_CARET] = ACTIONS(2021), - [anon_sym_AMP] = ACTIONS(2021), + [anon_sym_PLUS] = ACTIONS(2013), + [anon_sym_DASH] = ACTIONS(2013), + [anon_sym_STAR] = ACTIONS(1227), + [anon_sym_CARET] = ACTIONS(2015), + [anon_sym_AMP] = ACTIONS(2015), [anon_sym_this] = ACTIONS(83), - [anon_sym_DOT] = ACTIONS(2769), + [anon_sym_DOT] = ACTIONS(2799), [anon_sym_scoped] = ACTIONS(85), [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1067), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1233), + [anon_sym_throw] = ACTIONS(1231), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1235), - [anon_sym_DOT_DOT] = ACTIONS(1237), + [anon_sym_await] = ACTIONS(1233), + [anon_sym_DOT_DOT] = ACTIONS(1235), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -147991,7 +147877,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(1089), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -148008,85 +147894,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [630] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2425), - [sym__name] = STATE(5634), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2204), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(5539), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3664), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3080), - [sym_postfix_unary_expression] = STATE(3111), - [sym_prefix_unary_expression] = STATE(3111), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6161), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3080), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3111), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3080), - [sym_member_access_expression] = STATE(2484), - [sym_member_binding_expression] = STATE(3062), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3111), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7773), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(3080), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3080), - [sym_typeof_expression] = STATE(3080), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2484), - [sym_literal] = STATE(3080), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2669), + [sym__name] = STATE(5528), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2196), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(5324), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3660), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3102), + [sym_postfix_unary_expression] = STATE(3079), + [sym_prefix_unary_expression] = STATE(3079), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6163), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3102), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3079), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3102), + [sym_member_access_expression] = STATE(2472), + [sym_member_binding_expression] = STATE(3436), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3079), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7633), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(3102), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3102), + [sym_typeof_expression] = STATE(3102), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2472), + [sym_literal] = STATE(3102), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(630), [sym_preproc_endregion] = STATE(630), [sym_preproc_line] = STATE(630), @@ -148096,48 +147982,48 @@ 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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1241), - [anon_sym_LPAREN] = ACTIONS(2015), - [anon_sym_ref] = ACTIONS(2017), - [anon_sym_LBRACE] = ACTIONS(1487), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1305), + [anon_sym_LPAREN] = ACTIONS(2009), + [anon_sym_ref] = ACTIONS(2011), + [anon_sym_LBRACE] = ACTIONS(1481), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1101), + [anon_sym_new] = ACTIONS(1095), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1067), - [anon_sym_BANG] = ACTIONS(2021), - [anon_sym_TILDE] = ACTIONS(2021), - [anon_sym_PLUS_PLUS] = ACTIONS(2021), - [anon_sym_DASH_DASH] = ACTIONS(2021), + [anon_sym_checked] = ACTIONS(1065), + [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(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(2019), - [anon_sym_DASH] = ACTIONS(2019), - [anon_sym_STAR] = ACTIONS(1229), - [anon_sym_CARET] = ACTIONS(2021), - [anon_sym_AMP] = ACTIONS(2021), + [anon_sym_PLUS] = ACTIONS(2013), + [anon_sym_DASH] = ACTIONS(2013), + [anon_sym_STAR] = ACTIONS(1227), + [anon_sym_CARET] = ACTIONS(2015), + [anon_sym_AMP] = ACTIONS(2015), [anon_sym_this] = ACTIONS(83), - [anon_sym_DOT] = ACTIONS(2793), + [anon_sym_DOT] = ACTIONS(2795), [anon_sym_scoped] = ACTIONS(85), [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1067), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1233), + [anon_sym_throw] = ACTIONS(1231), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1235), - [anon_sym_DOT_DOT] = ACTIONS(1237), + [anon_sym_await] = ACTIONS(1233), + [anon_sym_DOT_DOT] = ACTIONS(1235), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -148162,7 +148048,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(1089), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -148179,85 +148065,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [631] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(3213), - [sym__name] = STATE(5634), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2204), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(5419), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3664), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3080), - [sym_postfix_unary_expression] = STATE(3111), - [sym_prefix_unary_expression] = STATE(3111), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6161), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3080), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3111), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3080), - [sym_member_access_expression] = STATE(2484), - [sym_member_binding_expression] = STATE(4707), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3111), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7773), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(3080), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3080), - [sym_typeof_expression] = STATE(3080), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2484), - [sym_literal] = STATE(3080), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2593), + [sym__name] = STATE(5528), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2196), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(5332), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3660), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3102), + [sym_postfix_unary_expression] = STATE(3079), + [sym_prefix_unary_expression] = STATE(3079), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6163), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3102), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3079), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3102), + [sym_member_access_expression] = STATE(2472), + [sym_member_binding_expression] = STATE(3267), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3079), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7633), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(3102), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3102), + [sym_typeof_expression] = STATE(3102), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2472), + [sym_literal] = STATE(3102), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(631), [sym_preproc_endregion] = STATE(631), [sym_preproc_line] = STATE(631), @@ -148267,48 +148153,48 @@ 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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1391), - [anon_sym_LPAREN] = ACTIONS(2015), - [anon_sym_ref] = ACTIONS(2017), - [anon_sym_LBRACE] = ACTIONS(1487), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1149), + [anon_sym_LPAREN] = ACTIONS(2009), + [anon_sym_ref] = ACTIONS(2011), + [anon_sym_LBRACE] = ACTIONS(1481), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1101), + [anon_sym_new] = ACTIONS(1095), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1067), - [anon_sym_BANG] = ACTIONS(2021), - [anon_sym_TILDE] = ACTIONS(2021), - [anon_sym_PLUS_PLUS] = ACTIONS(2021), - [anon_sym_DASH_DASH] = ACTIONS(2021), + [anon_sym_checked] = ACTIONS(1065), + [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(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(2019), - [anon_sym_DASH] = ACTIONS(2019), - [anon_sym_STAR] = ACTIONS(1229), - [anon_sym_CARET] = ACTIONS(2021), - [anon_sym_AMP] = ACTIONS(2021), + [anon_sym_PLUS] = ACTIONS(2013), + [anon_sym_DASH] = ACTIONS(2013), + [anon_sym_STAR] = ACTIONS(1227), + [anon_sym_CARET] = ACTIONS(2015), + [anon_sym_AMP] = ACTIONS(2015), [anon_sym_this] = ACTIONS(83), - [anon_sym_DOT] = ACTIONS(2803), + [anon_sym_DOT] = ACTIONS(2751), [anon_sym_scoped] = ACTIONS(85), [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1067), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1233), + [anon_sym_throw] = ACTIONS(1231), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1235), - [anon_sym_DOT_DOT] = ACTIONS(1237), + [anon_sym_await] = ACTIONS(1233), + [anon_sym_DOT_DOT] = ACTIONS(1235), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -148333,7 +148219,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(1089), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -148350,85 +148236,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [632] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2687), - [sym__name] = STATE(5634), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2204), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(5436), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3664), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3080), - [sym_postfix_unary_expression] = STATE(3111), - [sym_prefix_unary_expression] = STATE(3111), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6161), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3080), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3111), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3080), - [sym_member_access_expression] = STATE(2484), - [sym_member_binding_expression] = STATE(3394), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3111), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7773), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(3080), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3080), - [sym_typeof_expression] = STATE(3080), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2484), - [sym_literal] = STATE(3080), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2669), + [sym__name] = STATE(5528), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2196), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(5325), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3660), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3102), + [sym_postfix_unary_expression] = STATE(3079), + [sym_prefix_unary_expression] = STATE(3079), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6163), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3102), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3079), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3102), + [sym_member_access_expression] = STATE(2472), + [sym_member_binding_expression] = STATE(3436), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3079), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7633), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(3102), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3102), + [sym_typeof_expression] = STATE(3102), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2472), + [sym_literal] = STATE(3102), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(632), [sym_preproc_endregion] = STATE(632), [sym_preproc_line] = STATE(632), @@ -148438,48 +148324,48 @@ 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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1307), - [anon_sym_LPAREN] = ACTIONS(2015), - [anon_sym_ref] = ACTIONS(2017), - [anon_sym_LBRACE] = ACTIONS(1487), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1305), + [anon_sym_LPAREN] = ACTIONS(2009), + [anon_sym_ref] = ACTIONS(2011), + [anon_sym_LBRACE] = ACTIONS(1481), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1101), + [anon_sym_new] = ACTIONS(1095), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1067), - [anon_sym_BANG] = ACTIONS(2021), - [anon_sym_TILDE] = ACTIONS(2021), - [anon_sym_PLUS_PLUS] = ACTIONS(2021), - [anon_sym_DASH_DASH] = ACTIONS(2021), + [anon_sym_checked] = ACTIONS(1065), + [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(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(2019), - [anon_sym_DASH] = ACTIONS(2019), - [anon_sym_STAR] = ACTIONS(1229), - [anon_sym_CARET] = ACTIONS(2021), - [anon_sym_AMP] = ACTIONS(2021), + [anon_sym_PLUS] = ACTIONS(2013), + [anon_sym_DASH] = ACTIONS(2013), + [anon_sym_STAR] = ACTIONS(1227), + [anon_sym_CARET] = ACTIONS(2015), + [anon_sym_AMP] = ACTIONS(2015), [anon_sym_this] = ACTIONS(83), - [anon_sym_DOT] = ACTIONS(2811), + [anon_sym_DOT] = ACTIONS(2795), [anon_sym_scoped] = ACTIONS(85), [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1067), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1233), + [anon_sym_throw] = ACTIONS(1231), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1235), - [anon_sym_DOT_DOT] = ACTIONS(1237), + [anon_sym_await] = ACTIONS(1233), + [anon_sym_DOT_DOT] = ACTIONS(1235), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -148504,7 +148390,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(1089), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -148521,85 +148407,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [633] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(3126), - [sym__name] = STATE(5634), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2204), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(5575), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3664), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3080), - [sym_postfix_unary_expression] = STATE(3111), - [sym_prefix_unary_expression] = STATE(3111), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6161), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3080), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3111), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3080), - [sym_member_access_expression] = STATE(2484), - [sym_member_binding_expression] = STATE(3394), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3111), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7773), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(3080), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3080), - [sym_typeof_expression] = STATE(3080), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2484), - [sym_literal] = STATE(3080), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2669), + [sym__name] = STATE(5528), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2196), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(5327), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3660), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3102), + [sym_postfix_unary_expression] = STATE(3079), + [sym_prefix_unary_expression] = STATE(3079), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6163), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3102), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3079), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3102), + [sym_member_access_expression] = STATE(2472), + [sym_member_binding_expression] = STATE(3436), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3079), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7633), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(3102), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3102), + [sym_typeof_expression] = STATE(3102), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2472), + [sym_literal] = STATE(3102), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(633), [sym_preproc_endregion] = STATE(633), [sym_preproc_line] = STATE(633), @@ -148609,48 +148495,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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1307), - [anon_sym_LPAREN] = ACTIONS(2015), - [anon_sym_ref] = ACTIONS(2017), - [anon_sym_LBRACE] = ACTIONS(1487), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1305), + [anon_sym_LPAREN] = ACTIONS(2009), + [anon_sym_ref] = ACTIONS(2011), + [anon_sym_LBRACE] = ACTIONS(1481), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1101), + [anon_sym_new] = ACTIONS(1095), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1067), - [anon_sym_BANG] = ACTIONS(2021), - [anon_sym_TILDE] = ACTIONS(2021), - [anon_sym_PLUS_PLUS] = ACTIONS(2021), - [anon_sym_DASH_DASH] = ACTIONS(2021), + [anon_sym_checked] = ACTIONS(1065), + [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(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(2019), - [anon_sym_DASH] = ACTIONS(2019), - [anon_sym_STAR] = ACTIONS(1229), - [anon_sym_CARET] = ACTIONS(2021), - [anon_sym_AMP] = ACTIONS(2021), + [anon_sym_PLUS] = ACTIONS(2013), + [anon_sym_DASH] = ACTIONS(2013), + [anon_sym_STAR] = ACTIONS(1227), + [anon_sym_CARET] = ACTIONS(2015), + [anon_sym_AMP] = ACTIONS(2015), [anon_sym_this] = ACTIONS(83), - [anon_sym_DOT] = ACTIONS(2811), + [anon_sym_DOT] = ACTIONS(2795), [anon_sym_scoped] = ACTIONS(85), [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1067), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1233), + [anon_sym_throw] = ACTIONS(1231), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1235), - [anon_sym_DOT_DOT] = ACTIONS(1237), + [anon_sym_await] = ACTIONS(1233), + [anon_sym_DOT_DOT] = ACTIONS(1235), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -148675,7 +148561,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(1089), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -148692,85 +148578,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [634] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2620), - [sym__name] = STATE(5634), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2204), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(5596), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3664), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3080), - [sym_postfix_unary_expression] = STATE(3111), - [sym_prefix_unary_expression] = STATE(3111), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6161), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3080), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3111), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3080), - [sym_member_access_expression] = STATE(2484), - [sym_member_binding_expression] = STATE(3303), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3111), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7773), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(3080), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3080), - [sym_typeof_expression] = STATE(3080), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2484), - [sym_literal] = STATE(3080), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(5676), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2223), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5693), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(4873), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3468), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3102), + [sym_postfix_unary_expression] = STATE(3079), + [sym_prefix_unary_expression] = STATE(3079), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6134), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3102), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3079), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3102), + [sym_member_access_expression] = STATE(2472), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3079), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7309), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_declaration_expression] = STATE(6798), + [sym_default_expression] = STATE(3102), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3102), + [sym_typeof_expression] = STATE(3102), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2472), + [sym_literal] = STATE(3102), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(634), [sym_preproc_endregion] = STATE(634), [sym_preproc_line] = STATE(634), @@ -148780,48 +148666,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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1153), - [anon_sym_LPAREN] = ACTIONS(2015), - [anon_sym_ref] = ACTIONS(2017), - [anon_sym_LBRACE] = ACTIONS(1487), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1479), + [anon_sym_LPAREN] = ACTIONS(659), + [anon_sym_ref] = ACTIONS(2745), + [anon_sym_LBRACE] = ACTIONS(1481), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1101), + [anon_sym_new] = ACTIONS(1059), + [anon_sym_readonly] = ACTIONS(2747), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1067), - [anon_sym_BANG] = ACTIONS(2021), - [anon_sym_TILDE] = ACTIONS(2021), - [anon_sym_PLUS_PLUS] = ACTIONS(2021), - [anon_sym_DASH_DASH] = ACTIONS(2021), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(1485), + [anon_sym_TILDE] = ACTIONS(1485), + [anon_sym_PLUS_PLUS] = ACTIONS(1485), + [anon_sym_DASH_DASH] = ACTIONS(1485), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(2019), - [anon_sym_DASH] = ACTIONS(2019), - [anon_sym_STAR] = ACTIONS(1229), - [anon_sym_CARET] = ACTIONS(2021), - [anon_sym_AMP] = ACTIONS(2021), + [anon_sym_PLUS] = ACTIONS(1483), + [anon_sym_DASH] = ACTIONS(1483), + [anon_sym_STAR] = ACTIONS(683), + [anon_sym_CARET] = ACTIONS(1485), + [anon_sym_AMP] = ACTIONS(1485), [anon_sym_this] = ACTIONS(83), - [anon_sym_DOT] = ACTIONS(2819), - [anon_sym_scoped] = ACTIONS(85), + [anon_sym_scoped] = ACTIONS(1073), [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(89), + [anon_sym_var] = ACTIONS(2749), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1067), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1233), + [anon_sym_throw] = ACTIONS(1077), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1235), - [anon_sym_DOT_DOT] = ACTIONS(1237), + [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), @@ -148846,7 +148732,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(1089), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -148863,86 +148749,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [635] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_using_variable_declaration] = STATE(7628), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(5312), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2225), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5810), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_tuple_element] = STATE(7283), - [sym_expression] = STATE(5633), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3379), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3080), - [sym_postfix_unary_expression] = STATE(3111), - [sym_prefix_unary_expression] = STATE(3111), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6154), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3080), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3111), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3080), - [sym_member_access_expression] = STATE(2484), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3111), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7575), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(3080), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3080), - [sym_typeof_expression] = STATE(3080), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2484), - [sym_literal] = STATE(3080), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(5873), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2238), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(5171), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3468), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3102), + [sym_postfix_unary_expression] = STATE(3079), + [sym_prefix_unary_expression] = STATE(3079), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6134), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3102), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3079), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3102), + [sym_member_access_expression] = STATE(2472), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3079), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7309), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym__anonymous_object_member_declarator] = STATE(7088), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(3102), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3102), + [sym_typeof_expression] = STATE(3102), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2472), + [sym_literal] = STATE(3102), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2297), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(635), [sym_preproc_endregion] = STATE(635), [sym_preproc_line] = STATE(635), @@ -148952,47 +148837,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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1481), - [anon_sym_LPAREN] = ACTIONS(895), - [anon_sym_ref] = ACTIONS(2753), - [anon_sym_LBRACE] = ACTIONS(1487), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1479), + [anon_sym_LPAREN] = ACTIONS(659), + [anon_sym_ref] = ACTIONS(663), + [anon_sym_LBRACE] = ACTIONS(1481), + [anon_sym_RBRACE] = ACTIONS(2805), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1061), + [anon_sym_new] = ACTIONS(1059), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1067), - [anon_sym_BANG] = ACTIONS(1495), - [anon_sym_TILDE] = ACTIONS(1495), - [anon_sym_PLUS_PLUS] = ACTIONS(1495), - [anon_sym_DASH_DASH] = ACTIONS(1495), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(1485), + [anon_sym_TILDE] = ACTIONS(1485), + [anon_sym_PLUS_PLUS] = ACTIONS(1485), + [anon_sym_DASH_DASH] = ACTIONS(1485), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1493), - [anon_sym_DASH] = ACTIONS(1493), - [anon_sym_STAR] = ACTIONS(905), - [anon_sym_CARET] = ACTIONS(1495), - [anon_sym_AMP] = ACTIONS(1495), + [anon_sym_PLUS] = ACTIONS(1483), + [anon_sym_DASH] = ACTIONS(1483), + [anon_sym_STAR] = ACTIONS(683), + [anon_sym_CARET] = ACTIONS(1485), + [anon_sym_AMP] = ACTIONS(1485), [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(1075), + [anon_sym_scoped] = ACTIONS(85), [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(2755), + [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1067), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1079), + [anon_sym_throw] = ACTIONS(1077), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1081), - [anon_sym_DOT_DOT] = ACTIONS(911), + [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), @@ -149017,7 +148903,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(1089), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -149034,86 +148920,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [636] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_using_variable_declaration] = STATE(7614), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(5312), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2225), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5810), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_tuple_element] = STATE(7283), - [sym_expression] = STATE(5374), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3379), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3080), - [sym_postfix_unary_expression] = STATE(3111), - [sym_prefix_unary_expression] = STATE(3111), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6154), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3080), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3111), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3080), - [sym_member_access_expression] = STATE(2484), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3111), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7575), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(3080), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3080), - [sym_typeof_expression] = STATE(3080), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2484), - [sym_literal] = STATE(3080), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(5873), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2238), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(5171), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3468), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3102), + [sym_postfix_unary_expression] = STATE(3079), + [sym_prefix_unary_expression] = STATE(3079), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6134), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3102), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3079), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3102), + [sym_member_access_expression] = STATE(2472), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3079), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7309), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym__anonymous_object_member_declarator] = STATE(7088), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(3102), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3102), + [sym_typeof_expression] = STATE(3102), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2472), + [sym_literal] = STATE(3102), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2297), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(636), [sym_preproc_endregion] = STATE(636), [sym_preproc_line] = STATE(636), @@ -149123,47 +149008,48 @@ 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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1481), - [anon_sym_LPAREN] = ACTIONS(895), - [anon_sym_ref] = ACTIONS(2753), - [anon_sym_LBRACE] = ACTIONS(1487), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1479), + [anon_sym_LPAREN] = ACTIONS(659), + [anon_sym_ref] = ACTIONS(663), + [anon_sym_LBRACE] = ACTIONS(1481), + [anon_sym_RBRACE] = ACTIONS(2807), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1061), + [anon_sym_new] = ACTIONS(1059), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1067), - [anon_sym_BANG] = ACTIONS(1495), - [anon_sym_TILDE] = ACTIONS(1495), - [anon_sym_PLUS_PLUS] = ACTIONS(1495), - [anon_sym_DASH_DASH] = ACTIONS(1495), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(1485), + [anon_sym_TILDE] = ACTIONS(1485), + [anon_sym_PLUS_PLUS] = ACTIONS(1485), + [anon_sym_DASH_DASH] = ACTIONS(1485), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1493), - [anon_sym_DASH] = ACTIONS(1493), - [anon_sym_STAR] = ACTIONS(905), - [anon_sym_CARET] = ACTIONS(1495), - [anon_sym_AMP] = ACTIONS(1495), + [anon_sym_PLUS] = ACTIONS(1483), + [anon_sym_DASH] = ACTIONS(1483), + [anon_sym_STAR] = ACTIONS(683), + [anon_sym_CARET] = ACTIONS(1485), + [anon_sym_AMP] = ACTIONS(1485), [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(1075), + [anon_sym_scoped] = ACTIONS(85), [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(2755), + [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1067), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1079), + [anon_sym_throw] = ACTIONS(1077), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1081), - [anon_sym_DOT_DOT] = ACTIONS(911), + [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), @@ -149188,7 +149074,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(1089), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -149205,85 +149091,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [637] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2425), - [sym__name] = STATE(5634), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2204), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(5584), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3664), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3080), - [sym_postfix_unary_expression] = STATE(3111), - [sym_prefix_unary_expression] = STATE(3111), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6161), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3080), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3111), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3080), - [sym_member_access_expression] = STATE(2484), - [sym_member_binding_expression] = STATE(3062), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3111), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7773), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(3080), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3080), - [sym_typeof_expression] = STATE(3080), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2484), - [sym_literal] = STATE(3080), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_using_variable_declaration] = STATE(7683), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(5182), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2212), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5793), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_tuple_element] = STATE(7166), + [sym_expression] = STATE(5364), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3468), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3102), + [sym_postfix_unary_expression] = STATE(3079), + [sym_prefix_unary_expression] = STATE(3079), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6134), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3102), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3079), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3102), + [sym_member_access_expression] = STATE(2472), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3079), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7309), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(3102), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3102), + [sym_typeof_expression] = STATE(3102), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2472), + [sym_literal] = STATE(3102), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(637), [sym_preproc_endregion] = STATE(637), [sym_preproc_line] = STATE(637), @@ -149293,48 +149180,47 @@ 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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1241), - [anon_sym_LPAREN] = ACTIONS(2015), - [anon_sym_ref] = ACTIONS(2017), - [anon_sym_LBRACE] = ACTIONS(1487), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1479), + [anon_sym_LPAREN] = ACTIONS(659), + [anon_sym_ref] = ACTIONS(2775), + [anon_sym_LBRACE] = ACTIONS(1481), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1101), + [anon_sym_new] = ACTIONS(1059), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1067), - [anon_sym_BANG] = ACTIONS(2021), - [anon_sym_TILDE] = ACTIONS(2021), - [anon_sym_PLUS_PLUS] = ACTIONS(2021), - [anon_sym_DASH_DASH] = ACTIONS(2021), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(1485), + [anon_sym_TILDE] = ACTIONS(1485), + [anon_sym_PLUS_PLUS] = ACTIONS(1485), + [anon_sym_DASH_DASH] = ACTIONS(1485), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(2019), - [anon_sym_DASH] = ACTIONS(2019), - [anon_sym_STAR] = ACTIONS(1229), - [anon_sym_CARET] = ACTIONS(2021), - [anon_sym_AMP] = ACTIONS(2021), + [anon_sym_PLUS] = ACTIONS(1483), + [anon_sym_DASH] = ACTIONS(1483), + [anon_sym_STAR] = ACTIONS(683), + [anon_sym_CARET] = ACTIONS(1485), + [anon_sym_AMP] = ACTIONS(1485), [anon_sym_this] = ACTIONS(83), - [anon_sym_DOT] = ACTIONS(2793), - [anon_sym_scoped] = ACTIONS(85), + [anon_sym_scoped] = ACTIONS(1073), [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(89), + [anon_sym_var] = ACTIONS(2749), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1067), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1233), + [anon_sym_throw] = ACTIONS(1077), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1235), - [anon_sym_DOT_DOT] = ACTIONS(1237), + [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), @@ -149359,7 +149245,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(1089), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -149376,85 +149262,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [638] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2687), - [sym__name] = STATE(5634), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2204), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(5415), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3664), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3080), - [sym_postfix_unary_expression] = STATE(3111), - [sym_prefix_unary_expression] = STATE(3111), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6161), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3080), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3111), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3080), - [sym_member_access_expression] = STATE(2484), - [sym_member_binding_expression] = STATE(3394), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3111), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7773), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(3080), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3080), - [sym_typeof_expression] = STATE(3080), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2484), - [sym_literal] = STATE(3080), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(5152), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2196), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(5475), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3356), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3102), + [sym_postfix_unary_expression] = STATE(3079), + [sym_prefix_unary_expression] = STATE(3079), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6134), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3102), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3079), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3102), + [sym_member_access_expression] = STATE(2472), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3079), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7627), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(3102), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3102), + [sym_typeof_expression] = STATE(3102), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2472), + [sym_literal] = STATE(3102), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(638), [sym_preproc_endregion] = STATE(638), [sym_preproc_line] = STATE(638), @@ -149464,48 +149349,49 @@ 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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), + [anon_sym_SEMI] = ACTIONS(2809), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1307), - [anon_sym_LPAREN] = ACTIONS(2015), - [anon_sym_ref] = ACTIONS(2017), - [anon_sym_LBRACE] = ACTIONS(1487), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1479), + [anon_sym_LPAREN] = ACTIONS(1511), + [anon_sym_ref] = ACTIONS(1513), + [anon_sym_LBRACE] = ACTIONS(1481), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1101), + [anon_sym_new] = ACTIONS(1515), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1067), - [anon_sym_BANG] = ACTIONS(2021), - [anon_sym_TILDE] = ACTIONS(2021), - [anon_sym_PLUS_PLUS] = ACTIONS(2021), - [anon_sym_DASH_DASH] = ACTIONS(2021), + [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(2019), - [anon_sym_DASH] = ACTIONS(2019), - [anon_sym_STAR] = ACTIONS(1229), - [anon_sym_CARET] = ACTIONS(2021), - [anon_sym_AMP] = ACTIONS(2021), + [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(2823), [anon_sym_scoped] = ACTIONS(85), [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1067), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1233), + [anon_sym_case] = ACTIONS(2811), + [anon_sym_default] = ACTIONS(2813), + [anon_sym_throw] = ACTIONS(1517), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1235), - [anon_sym_DOT_DOT] = ACTIONS(1237), + [anon_sym_await] = ACTIONS(1519), + [anon_sym_DOT_DOT] = ACTIONS(1521), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -149530,7 +149416,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(1089), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -149547,85 +149433,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [639] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2620), - [sym__name] = STATE(5634), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2204), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(5604), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3664), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3080), - [sym_postfix_unary_expression] = STATE(3111), - [sym_prefix_unary_expression] = STATE(3111), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6161), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3080), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3111), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3080), - [sym_member_access_expression] = STATE(2484), - [sym_member_binding_expression] = STATE(3303), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3111), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7773), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(3080), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3080), - [sym_typeof_expression] = STATE(3080), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2484), - [sym_literal] = STATE(3080), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(5152), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2196), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(5452), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3356), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3102), + [sym_postfix_unary_expression] = STATE(3079), + [sym_prefix_unary_expression] = STATE(3079), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6134), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3102), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3079), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3102), + [sym_member_access_expression] = STATE(2472), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3079), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7627), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(3102), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3102), + [sym_typeof_expression] = STATE(3102), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2472), + [sym_literal] = STATE(3102), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(639), [sym_preproc_endregion] = STATE(639), [sym_preproc_line] = STATE(639), @@ -149635,48 +149520,49 @@ 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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), + [anon_sym_SEMI] = ACTIONS(2815), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1153), - [anon_sym_LPAREN] = ACTIONS(2015), - [anon_sym_ref] = ACTIONS(2017), - [anon_sym_LBRACE] = ACTIONS(1487), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1479), + [anon_sym_LPAREN] = ACTIONS(1511), + [anon_sym_ref] = ACTIONS(1513), + [anon_sym_LBRACE] = ACTIONS(1481), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1101), + [anon_sym_new] = ACTIONS(1515), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1067), - [anon_sym_BANG] = ACTIONS(2021), - [anon_sym_TILDE] = ACTIONS(2021), - [anon_sym_PLUS_PLUS] = ACTIONS(2021), - [anon_sym_DASH_DASH] = ACTIONS(2021), + [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(2019), - [anon_sym_DASH] = ACTIONS(2019), - [anon_sym_STAR] = ACTIONS(1229), - [anon_sym_CARET] = ACTIONS(2021), - [anon_sym_AMP] = ACTIONS(2021), + [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(2819), [anon_sym_scoped] = ACTIONS(85), [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1067), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1233), + [anon_sym_case] = ACTIONS(2817), + [anon_sym_default] = ACTIONS(2819), + [anon_sym_throw] = ACTIONS(1517), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1235), - [anon_sym_DOT_DOT] = ACTIONS(1237), + [anon_sym_await] = ACTIONS(1519), + [anon_sym_DOT_DOT] = ACTIONS(1521), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -149701,7 +149587,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(1089), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -149718,85 +149604,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [640] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2425), - [sym__name] = STATE(5634), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2204), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(5585), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3664), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3080), - [sym_postfix_unary_expression] = STATE(3111), - [sym_prefix_unary_expression] = STATE(3111), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6161), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3080), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3111), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3080), - [sym_member_access_expression] = STATE(2484), - [sym_member_binding_expression] = STATE(3062), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3111), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7773), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(3080), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3080), - [sym_typeof_expression] = STATE(3080), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2484), - [sym_literal] = STATE(3080), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(5873), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2238), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(4917), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3468), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3102), + [sym_postfix_unary_expression] = STATE(3079), + [sym_prefix_unary_expression] = STATE(3079), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6134), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3102), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3079), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3102), + [sym_member_access_expression] = STATE(2472), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3079), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7309), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(3102), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3102), + [sym_typeof_expression] = STATE(3102), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2472), + [sym_literal] = STATE(3102), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(640), [sym_preproc_endregion] = STATE(640), [sym_preproc_line] = STATE(640), @@ -149806,48 +149691,49 @@ 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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1241), - [anon_sym_LPAREN] = ACTIONS(2015), - [anon_sym_ref] = ACTIONS(2017), - [anon_sym_LBRACE] = ACTIONS(1487), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1479), + [anon_sym_COMMA] = ACTIONS(931), + [anon_sym_LPAREN] = ACTIONS(659), + [anon_sym_ref] = ACTIONS(663), + [anon_sym_LBRACE] = ACTIONS(1481), + [anon_sym_RBRACE] = ACTIONS(2821), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1101), + [anon_sym_new] = ACTIONS(1059), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1067), - [anon_sym_BANG] = ACTIONS(2021), - [anon_sym_TILDE] = ACTIONS(2021), - [anon_sym_PLUS_PLUS] = ACTIONS(2021), - [anon_sym_DASH_DASH] = ACTIONS(2021), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(1485), + [anon_sym_TILDE] = ACTIONS(1485), + [anon_sym_PLUS_PLUS] = ACTIONS(1485), + [anon_sym_DASH_DASH] = ACTIONS(1485), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(2019), - [anon_sym_DASH] = ACTIONS(2019), - [anon_sym_STAR] = ACTIONS(1229), - [anon_sym_CARET] = ACTIONS(2021), - [anon_sym_AMP] = ACTIONS(2021), + [anon_sym_PLUS] = ACTIONS(1483), + [anon_sym_DASH] = ACTIONS(1483), + [anon_sym_STAR] = ACTIONS(683), + [anon_sym_CARET] = ACTIONS(1485), + [anon_sym_AMP] = ACTIONS(1485), [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), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1067), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1233), + [anon_sym_throw] = ACTIONS(1077), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1235), - [anon_sym_DOT_DOT] = ACTIONS(1237), + [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), @@ -149872,7 +149758,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(1089), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -149889,85 +149775,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [641] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2687), - [sym__name] = STATE(5634), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2204), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(5579), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3664), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3080), - [sym_postfix_unary_expression] = STATE(3111), - [sym_prefix_unary_expression] = STATE(3111), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6161), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3080), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3111), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3080), - [sym_member_access_expression] = STATE(2484), - [sym_member_binding_expression] = STATE(3394), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3111), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7773), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(3080), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3080), - [sym_typeof_expression] = STATE(3080), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2484), - [sym_literal] = STATE(3080), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_using_variable_declaration] = STATE(7354), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(5182), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2212), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5793), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_tuple_element] = STATE(7166), + [sym_expression] = STATE(5509), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3468), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3102), + [sym_postfix_unary_expression] = STATE(3079), + [sym_prefix_unary_expression] = STATE(3079), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6134), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3102), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3079), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3102), + [sym_member_access_expression] = STATE(2472), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3079), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7309), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(3102), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3102), + [sym_typeof_expression] = STATE(3102), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2472), + [sym_literal] = STATE(3102), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(641), [sym_preproc_endregion] = STATE(641), [sym_preproc_line] = STATE(641), @@ -149977,48 +149864,47 @@ 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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1307), - [anon_sym_LPAREN] = ACTIONS(2015), - [anon_sym_ref] = ACTIONS(2017), - [anon_sym_LBRACE] = ACTIONS(1487), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1479), + [anon_sym_LPAREN] = ACTIONS(659), + [anon_sym_ref] = ACTIONS(2775), + [anon_sym_LBRACE] = ACTIONS(1481), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1101), + [anon_sym_new] = ACTIONS(1059), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1067), - [anon_sym_BANG] = ACTIONS(2021), - [anon_sym_TILDE] = ACTIONS(2021), - [anon_sym_PLUS_PLUS] = ACTIONS(2021), - [anon_sym_DASH_DASH] = ACTIONS(2021), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(1485), + [anon_sym_TILDE] = ACTIONS(1485), + [anon_sym_PLUS_PLUS] = ACTIONS(1485), + [anon_sym_DASH_DASH] = ACTIONS(1485), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(2019), - [anon_sym_DASH] = ACTIONS(2019), - [anon_sym_STAR] = ACTIONS(1229), - [anon_sym_CARET] = ACTIONS(2021), - [anon_sym_AMP] = ACTIONS(2021), + [anon_sym_PLUS] = ACTIONS(1483), + [anon_sym_DASH] = ACTIONS(1483), + [anon_sym_STAR] = ACTIONS(683), + [anon_sym_CARET] = ACTIONS(1485), + [anon_sym_AMP] = ACTIONS(1485), [anon_sym_this] = ACTIONS(83), - [anon_sym_DOT] = ACTIONS(2811), - [anon_sym_scoped] = ACTIONS(85), + [anon_sym_scoped] = ACTIONS(1073), [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(89), + [anon_sym_var] = ACTIONS(2749), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1067), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1233), + [anon_sym_throw] = ACTIONS(1077), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1235), - [anon_sym_DOT_DOT] = ACTIONS(1237), + [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), @@ -150043,7 +149929,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(1089), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -150060,85 +149946,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [642] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2620), - [sym__name] = STATE(5634), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2204), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(5605), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3664), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3080), - [sym_postfix_unary_expression] = STATE(3111), - [sym_prefix_unary_expression] = STATE(3111), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6161), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3080), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3111), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3080), - [sym_member_access_expression] = STATE(2484), - [sym_member_binding_expression] = STATE(3303), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3111), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7773), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(3080), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3080), - [sym_typeof_expression] = STATE(3080), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2484), - [sym_literal] = STATE(3080), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(3118), + [sym__name] = STATE(5528), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2196), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(5569), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3660), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3102), + [sym_postfix_unary_expression] = STATE(3079), + [sym_prefix_unary_expression] = STATE(3079), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6163), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3102), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3079), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3102), + [sym_member_access_expression] = STATE(2472), + [sym_member_binding_expression] = STATE(2973), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3079), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7633), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(3102), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3102), + [sym_typeof_expression] = STATE(3102), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2472), + [sym_literal] = STATE(3102), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(642), [sym_preproc_endregion] = STATE(642), [sym_preproc_line] = STATE(642), @@ -150148,48 +150034,48 @@ 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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1153), - [anon_sym_LPAREN] = ACTIONS(2015), - [anon_sym_ref] = ACTIONS(2017), - [anon_sym_LBRACE] = ACTIONS(1487), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1239), + [anon_sym_LPAREN] = ACTIONS(2009), + [anon_sym_ref] = ACTIONS(2011), + [anon_sym_LBRACE] = ACTIONS(1481), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1101), + [anon_sym_new] = ACTIONS(1095), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1067), - [anon_sym_BANG] = ACTIONS(2021), - [anon_sym_TILDE] = ACTIONS(2021), - [anon_sym_PLUS_PLUS] = ACTIONS(2021), - [anon_sym_DASH_DASH] = ACTIONS(2021), + [anon_sym_checked] = ACTIONS(1065), + [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(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(2019), - [anon_sym_DASH] = ACTIONS(2019), - [anon_sym_STAR] = ACTIONS(1229), - [anon_sym_CARET] = ACTIONS(2021), - [anon_sym_AMP] = ACTIONS(2021), + [anon_sym_PLUS] = ACTIONS(2013), + [anon_sym_DASH] = ACTIONS(2013), + [anon_sym_STAR] = ACTIONS(1227), + [anon_sym_CARET] = ACTIONS(2015), + [anon_sym_AMP] = ACTIONS(2015), [anon_sym_this] = ACTIONS(83), - [anon_sym_DOT] = ACTIONS(2819), + [anon_sym_DOT] = ACTIONS(2799), [anon_sym_scoped] = ACTIONS(85), [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1067), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1233), + [anon_sym_throw] = ACTIONS(1231), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1235), - [anon_sym_DOT_DOT] = ACTIONS(1237), + [anon_sym_await] = ACTIONS(1233), + [anon_sym_DOT_DOT] = ACTIONS(1235), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -150214,7 +150100,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(1089), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -150231,85 +150117,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [643] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2425), - [sym__name] = STATE(5634), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2204), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(5588), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3664), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3080), - [sym_postfix_unary_expression] = STATE(3111), - [sym_prefix_unary_expression] = STATE(3111), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6161), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3080), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3111), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3080), - [sym_member_access_expression] = STATE(2484), - [sym_member_binding_expression] = STATE(3062), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3111), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7773), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(3080), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3080), - [sym_typeof_expression] = STATE(3080), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2484), - [sym_literal] = STATE(3080), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2454), + [sym__name] = STATE(5528), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2196), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(5341), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3660), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3102), + [sym_postfix_unary_expression] = STATE(3079), + [sym_prefix_unary_expression] = STATE(3079), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6163), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3102), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3079), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3102), + [sym_member_access_expression] = STATE(2472), + [sym_member_binding_expression] = STATE(3081), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3079), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7633), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(3102), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3102), + [sym_typeof_expression] = STATE(3102), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2472), + [sym_literal] = STATE(3102), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(643), [sym_preproc_endregion] = STATE(643), [sym_preproc_line] = STATE(643), @@ -150319,48 +150205,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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1241), - [anon_sym_LPAREN] = ACTIONS(2015), - [anon_sym_ref] = ACTIONS(2017), - [anon_sym_LBRACE] = ACTIONS(1487), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1479), + [anon_sym_LPAREN] = ACTIONS(2009), + [anon_sym_ref] = ACTIONS(2011), + [anon_sym_LBRACE] = ACTIONS(1481), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1101), + [anon_sym_new] = ACTIONS(1095), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1067), - [anon_sym_BANG] = ACTIONS(2021), - [anon_sym_TILDE] = ACTIONS(2021), - [anon_sym_PLUS_PLUS] = ACTIONS(2021), - [anon_sym_DASH_DASH] = ACTIONS(2021), + [anon_sym_checked] = ACTIONS(1065), + [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(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(2019), - [anon_sym_DASH] = ACTIONS(2019), - [anon_sym_STAR] = ACTIONS(1229), - [anon_sym_CARET] = ACTIONS(2021), - [anon_sym_AMP] = ACTIONS(2021), + [anon_sym_PLUS] = ACTIONS(2013), + [anon_sym_DASH] = ACTIONS(2013), + [anon_sym_STAR] = ACTIONS(1227), + [anon_sym_CARET] = ACTIONS(2015), + [anon_sym_AMP] = ACTIONS(2015), [anon_sym_this] = ACTIONS(83), - [anon_sym_DOT] = ACTIONS(2793), + [anon_sym_DOT] = ACTIONS(2777), [anon_sym_scoped] = ACTIONS(85), [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1067), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1233), + [anon_sym_throw] = ACTIONS(1231), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1235), - [anon_sym_DOT_DOT] = ACTIONS(1237), + [anon_sym_await] = ACTIONS(1233), + [anon_sym_DOT_DOT] = ACTIONS(1235), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -150385,7 +150271,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(1089), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -150402,85 +150288,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [644] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2687), - [sym__name] = STATE(5634), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2204), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(5591), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3664), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3080), - [sym_postfix_unary_expression] = STATE(3111), - [sym_prefix_unary_expression] = STATE(3111), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6161), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3080), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3111), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3080), - [sym_member_access_expression] = STATE(2484), - [sym_member_binding_expression] = STATE(3394), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3111), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7773), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(3080), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3080), - [sym_typeof_expression] = STATE(3080), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2484), - [sym_literal] = STATE(3080), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2454), + [sym__name] = STATE(5528), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2196), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(5460), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3660), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3102), + [sym_postfix_unary_expression] = STATE(3079), + [sym_prefix_unary_expression] = STATE(3079), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6163), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3102), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3079), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3102), + [sym_member_access_expression] = STATE(2472), + [sym_member_binding_expression] = STATE(3081), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3079), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7633), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(3102), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3102), + [sym_typeof_expression] = STATE(3102), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2472), + [sym_literal] = STATE(3102), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(644), [sym_preproc_endregion] = STATE(644), [sym_preproc_line] = STATE(644), @@ -150490,48 +150376,48 @@ 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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1307), - [anon_sym_LPAREN] = ACTIONS(2015), - [anon_sym_ref] = ACTIONS(2017), - [anon_sym_LBRACE] = ACTIONS(1487), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1479), + [anon_sym_LPAREN] = ACTIONS(2009), + [anon_sym_ref] = ACTIONS(2011), + [anon_sym_LBRACE] = ACTIONS(1481), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1101), + [anon_sym_new] = ACTIONS(1095), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1067), - [anon_sym_BANG] = ACTIONS(2021), - [anon_sym_TILDE] = ACTIONS(2021), - [anon_sym_PLUS_PLUS] = ACTIONS(2021), - [anon_sym_DASH_DASH] = ACTIONS(2021), + [anon_sym_checked] = ACTIONS(1065), + [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(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(2019), - [anon_sym_DASH] = ACTIONS(2019), - [anon_sym_STAR] = ACTIONS(1229), - [anon_sym_CARET] = ACTIONS(2021), - [anon_sym_AMP] = ACTIONS(2021), + [anon_sym_PLUS] = ACTIONS(2013), + [anon_sym_DASH] = ACTIONS(2013), + [anon_sym_STAR] = ACTIONS(1227), + [anon_sym_CARET] = ACTIONS(2015), + [anon_sym_AMP] = ACTIONS(2015), [anon_sym_this] = ACTIONS(83), - [anon_sym_DOT] = ACTIONS(2811), + [anon_sym_DOT] = ACTIONS(2777), [anon_sym_scoped] = ACTIONS(85), [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1067), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1233), + [anon_sym_throw] = ACTIONS(1231), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1235), - [anon_sym_DOT_DOT] = ACTIONS(1237), + [anon_sym_await] = ACTIONS(1233), + [anon_sym_DOT_DOT] = ACTIONS(1235), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -150556,7 +150442,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(1089), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -150573,85 +150459,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [645] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2620), - [sym__name] = STATE(5634), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2204), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(5608), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3664), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3080), - [sym_postfix_unary_expression] = STATE(3111), - [sym_prefix_unary_expression] = STATE(3111), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6161), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3080), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3111), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3080), - [sym_member_access_expression] = STATE(2484), - [sym_member_binding_expression] = STATE(3303), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3111), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7773), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(3080), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3080), - [sym_typeof_expression] = STATE(3080), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2484), - [sym_literal] = STATE(3080), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2427), + [sym__name] = STATE(5528), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2196), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(5449), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3660), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3102), + [sym_postfix_unary_expression] = STATE(3079), + [sym_prefix_unary_expression] = STATE(3079), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6163), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3102), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3079), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3102), + [sym_member_access_expression] = STATE(2472), + [sym_member_binding_expression] = STATE(2973), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3079), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7633), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(3102), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3102), + [sym_typeof_expression] = STATE(3102), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2472), + [sym_literal] = STATE(3102), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(645), [sym_preproc_endregion] = STATE(645), [sym_preproc_line] = STATE(645), @@ -150661,48 +150547,48 @@ 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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1153), - [anon_sym_LPAREN] = ACTIONS(2015), - [anon_sym_ref] = ACTIONS(2017), - [anon_sym_LBRACE] = ACTIONS(1487), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1239), + [anon_sym_LPAREN] = ACTIONS(2009), + [anon_sym_ref] = ACTIONS(2011), + [anon_sym_LBRACE] = ACTIONS(1481), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1101), + [anon_sym_new] = ACTIONS(1095), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1067), - [anon_sym_BANG] = ACTIONS(2021), - [anon_sym_TILDE] = ACTIONS(2021), - [anon_sym_PLUS_PLUS] = ACTIONS(2021), - [anon_sym_DASH_DASH] = ACTIONS(2021), + [anon_sym_checked] = ACTIONS(1065), + [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(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(2019), - [anon_sym_DASH] = ACTIONS(2019), - [anon_sym_STAR] = ACTIONS(1229), - [anon_sym_CARET] = ACTIONS(2021), - [anon_sym_AMP] = ACTIONS(2021), + [anon_sym_PLUS] = ACTIONS(2013), + [anon_sym_DASH] = ACTIONS(2013), + [anon_sym_STAR] = ACTIONS(1227), + [anon_sym_CARET] = ACTIONS(2015), + [anon_sym_AMP] = ACTIONS(2015), [anon_sym_this] = ACTIONS(83), - [anon_sym_DOT] = ACTIONS(2819), + [anon_sym_DOT] = ACTIONS(2799), [anon_sym_scoped] = ACTIONS(85), [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1067), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1233), + [anon_sym_throw] = ACTIONS(1231), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1235), - [anon_sym_DOT_DOT] = ACTIONS(1237), + [anon_sym_await] = ACTIONS(1233), + [anon_sym_DOT_DOT] = ACTIONS(1235), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -150727,7 +150613,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(1089), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -150744,85 +150630,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [646] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2687), - [sym__name] = STATE(5634), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2204), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(5593), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3664), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3080), - [sym_postfix_unary_expression] = STATE(3111), - [sym_prefix_unary_expression] = STATE(3111), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6161), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3080), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3111), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3080), - [sym_member_access_expression] = STATE(2484), - [sym_member_binding_expression] = STATE(3394), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3111), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7773), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(3080), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3080), - [sym_typeof_expression] = STATE(3080), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2484), - [sym_literal] = STATE(3080), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(5152), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2196), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(2279), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(5042), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3510), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3102), + [sym_postfix_unary_expression] = STATE(3079), + [sym_prefix_unary_expression] = STATE(3079), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6134), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3102), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3079), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3102), + [sym_member_access_expression] = STATE(2472), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3079), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7425), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(3102), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3102), + [sym_typeof_expression] = STATE(3102), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2472), + [sym_literal] = STATE(3102), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(646), [sym_preproc_endregion] = STATE(646), [sym_preproc_line] = STATE(646), @@ -150832,48 +150717,49 @@ 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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1307), - [anon_sym_LPAREN] = ACTIONS(2015), - [anon_sym_ref] = ACTIONS(2017), - [anon_sym_LBRACE] = ACTIONS(1487), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1479), + [anon_sym_LPAREN] = ACTIONS(43), + [anon_sym_ref] = ACTIONS(715), + [anon_sym_struct] = ACTIONS(2823), + [anon_sym_LBRACE] = ACTIONS(1481), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1101), + [anon_sym_new] = ACTIONS(1059), + [anon_sym_readonly] = ACTIONS(2767), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1067), - [anon_sym_BANG] = ACTIONS(2021), - [anon_sym_TILDE] = ACTIONS(2021), - [anon_sym_PLUS_PLUS] = ACTIONS(2021), - [anon_sym_DASH_DASH] = ACTIONS(2021), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(1525), + [anon_sym_TILDE] = ACTIONS(1525), + [anon_sym_PLUS_PLUS] = ACTIONS(1525), + [anon_sym_DASH_DASH] = ACTIONS(1525), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(2019), - [anon_sym_DASH] = ACTIONS(2019), - [anon_sym_STAR] = ACTIONS(1229), - [anon_sym_CARET] = ACTIONS(2021), - [anon_sym_AMP] = ACTIONS(2021), + [anon_sym_PLUS] = ACTIONS(1523), + [anon_sym_DASH] = ACTIONS(1523), + [anon_sym_STAR] = ACTIONS(81), + [anon_sym_CARET] = ACTIONS(1525), + [anon_sym_AMP] = ACTIONS(1525), [anon_sym_this] = ACTIONS(83), - [anon_sym_DOT] = ACTIONS(2811), [anon_sym_scoped] = ACTIONS(85), [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1067), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1233), + [anon_sym_throw] = ACTIONS(1527), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1235), - [anon_sym_DOT_DOT] = ACTIONS(1237), + [anon_sym_await] = ACTIONS(1529), + [anon_sym_DOT_DOT] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -150898,7 +150784,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(1089), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -150915,85 +150801,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [647] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2687), - [sym__name] = STATE(5634), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2204), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(5598), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3664), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3080), - [sym_postfix_unary_expression] = STATE(3111), - [sym_prefix_unary_expression] = STATE(3111), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6161), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3080), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3111), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3080), - [sym_member_access_expression] = STATE(2484), - [sym_member_binding_expression] = STATE(3394), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3111), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7773), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(3080), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3080), - [sym_typeof_expression] = STATE(3080), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2484), - [sym_literal] = STATE(3080), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(3118), + [sym__name] = STATE(5528), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2196), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(5506), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3660), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3102), + [sym_postfix_unary_expression] = STATE(3079), + [sym_prefix_unary_expression] = STATE(3079), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6163), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3102), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3079), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3102), + [sym_member_access_expression] = STATE(2472), + [sym_member_binding_expression] = STATE(3081), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3079), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7633), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(3102), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3102), + [sym_typeof_expression] = STATE(3102), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2472), + [sym_literal] = STATE(3102), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(647), [sym_preproc_endregion] = STATE(647), [sym_preproc_line] = STATE(647), @@ -151003,48 +150889,48 @@ 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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1307), - [anon_sym_LPAREN] = ACTIONS(2015), - [anon_sym_ref] = ACTIONS(2017), - [anon_sym_LBRACE] = ACTIONS(1487), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1479), + [anon_sym_LPAREN] = ACTIONS(2009), + [anon_sym_ref] = ACTIONS(2011), + [anon_sym_LBRACE] = ACTIONS(1481), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1101), + [anon_sym_new] = ACTIONS(1095), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1067), - [anon_sym_BANG] = ACTIONS(2021), - [anon_sym_TILDE] = ACTIONS(2021), - [anon_sym_PLUS_PLUS] = ACTIONS(2021), - [anon_sym_DASH_DASH] = ACTIONS(2021), + [anon_sym_checked] = ACTIONS(1065), + [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(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(2019), - [anon_sym_DASH] = ACTIONS(2019), - [anon_sym_STAR] = ACTIONS(1229), - [anon_sym_CARET] = ACTIONS(2021), - [anon_sym_AMP] = ACTIONS(2021), + [anon_sym_PLUS] = ACTIONS(2013), + [anon_sym_DASH] = ACTIONS(2013), + [anon_sym_STAR] = ACTIONS(1227), + [anon_sym_CARET] = ACTIONS(2015), + [anon_sym_AMP] = ACTIONS(2015), [anon_sym_this] = ACTIONS(83), - [anon_sym_DOT] = ACTIONS(2811), + [anon_sym_DOT] = ACTIONS(2765), [anon_sym_scoped] = ACTIONS(85), [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1067), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1233), + [anon_sym_throw] = ACTIONS(1231), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1235), - [anon_sym_DOT_DOT] = ACTIONS(1237), + [anon_sym_await] = ACTIONS(1233), + [anon_sym_DOT_DOT] = ACTIONS(1235), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -151069,7 +150955,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(1089), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -151086,85 +150972,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [648] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(5910), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2247), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(5151), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3379), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3080), - [sym_postfix_unary_expression] = STATE(3111), - [sym_prefix_unary_expression] = STATE(3111), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6154), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3080), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3111), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3080), - [sym_member_access_expression] = STATE(2484), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3111), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7575), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym__anonymous_object_member_declarator] = STATE(7234), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(3080), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3080), - [sym_typeof_expression] = STATE(3080), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2484), - [sym_literal] = STATE(3080), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2311), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2884), + [sym__name] = STATE(5528), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2196), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(5409), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3660), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3102), + [sym_postfix_unary_expression] = STATE(3079), + [sym_prefix_unary_expression] = STATE(3079), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6163), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3102), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3079), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3102), + [sym_member_access_expression] = STATE(2472), + [sym_member_binding_expression] = STATE(3837), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3079), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7633), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(3102), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3102), + [sym_typeof_expression] = STATE(3102), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2472), + [sym_literal] = STATE(3102), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(648), [sym_preproc_endregion] = STATE(648), [sym_preproc_line] = STATE(648), @@ -151174,48 +151060,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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1481), - [anon_sym_LPAREN] = ACTIONS(895), - [anon_sym_ref] = ACTIONS(897), - [anon_sym_LBRACE] = ACTIONS(1487), - [anon_sym_RBRACE] = ACTIONS(2825), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1655), + [anon_sym_LPAREN] = ACTIONS(2009), + [anon_sym_ref] = ACTIONS(2011), + [anon_sym_LBRACE] = ACTIONS(1481), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1061), + [anon_sym_new] = ACTIONS(1095), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1067), - [anon_sym_BANG] = ACTIONS(1495), - [anon_sym_TILDE] = ACTIONS(1495), - [anon_sym_PLUS_PLUS] = ACTIONS(1495), - [anon_sym_DASH_DASH] = ACTIONS(1495), + [anon_sym_checked] = ACTIONS(1065), + [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(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1493), - [anon_sym_DASH] = ACTIONS(1493), - [anon_sym_STAR] = ACTIONS(905), - [anon_sym_CARET] = ACTIONS(1495), - [anon_sym_AMP] = ACTIONS(1495), + [anon_sym_PLUS] = ACTIONS(2013), + [anon_sym_DASH] = ACTIONS(2013), + [anon_sym_STAR] = ACTIONS(1227), + [anon_sym_CARET] = ACTIONS(2015), + [anon_sym_AMP] = ACTIONS(2015), [anon_sym_this] = ACTIONS(83), + [anon_sym_DOT] = ACTIONS(2773), [anon_sym_scoped] = ACTIONS(85), [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1067), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1079), + [anon_sym_throw] = ACTIONS(1231), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1081), - [anon_sym_DOT_DOT] = ACTIONS(911), + [anon_sym_await] = ACTIONS(1233), + [anon_sym_DOT_DOT] = ACTIONS(1235), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -151240,7 +151126,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(1089), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -151257,84 +151143,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [649] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(5160), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2204), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(5455), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3461), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3080), - [sym_postfix_unary_expression] = STATE(3111), - [sym_prefix_unary_expression] = STATE(3111), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6154), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3080), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3111), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3080), - [sym_member_access_expression] = STATE(2484), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3111), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7547), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(3080), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3080), - [sym_typeof_expression] = STATE(3080), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2484), - [sym_literal] = STATE(3080), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(3180), + [sym__name] = STATE(5528), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2196), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(5420), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3660), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3102), + [sym_postfix_unary_expression] = STATE(3079), + [sym_prefix_unary_expression] = STATE(3079), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6163), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3102), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3079), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3102), + [sym_member_access_expression] = STATE(2472), + [sym_member_binding_expression] = STATE(4598), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3079), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7633), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(3102), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3102), + [sym_typeof_expression] = STATE(3102), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2472), + [sym_literal] = STATE(3102), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(649), [sym_preproc_endregion] = STATE(649), [sym_preproc_line] = STATE(649), @@ -151344,49 +151231,48 @@ 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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), - [anon_sym_SEMI] = ACTIONS(2827), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1481), - [anon_sym_LPAREN] = ACTIONS(1497), - [anon_sym_ref] = ACTIONS(1499), - [anon_sym_LBRACE] = ACTIONS(1487), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1389), + [anon_sym_LPAREN] = ACTIONS(2009), + [anon_sym_ref] = ACTIONS(2011), + [anon_sym_LBRACE] = ACTIONS(1481), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1501), + [anon_sym_new] = ACTIONS(1095), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = 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_checked] = ACTIONS(1065), + [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(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(2013), + [anon_sym_DASH] = ACTIONS(2013), + [anon_sym_STAR] = ACTIONS(1227), + [anon_sym_CARET] = ACTIONS(2015), + [anon_sym_AMP] = ACTIONS(2015), [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), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1067), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), - [anon_sym_case] = ACTIONS(2829), - [anon_sym_default] = ACTIONS(2831), - [anon_sym_throw] = ACTIONS(1503), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(1231), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1505), - [anon_sym_DOT_DOT] = ACTIONS(1507), + [anon_sym_await] = ACTIONS(1233), + [anon_sym_DOT_DOT] = ACTIONS(1235), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -151411,7 +151297,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(1089), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -151428,85 +151314,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [650] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(5910), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2247), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5704), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(5253), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3379), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3080), - [sym_postfix_unary_expression] = STATE(3111), - [sym_prefix_unary_expression] = STATE(3111), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6154), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3080), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3111), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3080), - [sym_member_access_expression] = STATE(2484), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3111), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7575), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_declaration_expression] = STATE(7021), - [sym_default_expression] = STATE(3080), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3080), - [sym_typeof_expression] = STATE(3080), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2484), - [sym_literal] = STATE(3080), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(5873), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2238), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(5171), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3468), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3102), + [sym_postfix_unary_expression] = STATE(3079), + [sym_prefix_unary_expression] = STATE(3079), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6134), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3102), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3079), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3102), + [sym_member_access_expression] = STATE(2472), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3079), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7309), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym__anonymous_object_member_declarator] = STATE(7088), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(3102), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3102), + [sym_typeof_expression] = STATE(3102), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2472), + [sym_literal] = STATE(3102), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2297), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(650), [sym_preproc_endregion] = STATE(650), [sym_preproc_line] = STATE(650), @@ -151516,48 +151402,48 @@ 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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1481), - [anon_sym_LPAREN] = ACTIONS(895), - [anon_sym_ref] = ACTIONS(897), - [anon_sym_LBRACE] = ACTIONS(1487), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1479), + [anon_sym_LPAREN] = ACTIONS(659), + [anon_sym_ref] = ACTIONS(663), + [anon_sym_LBRACE] = ACTIONS(1481), + [anon_sym_RBRACE] = ACTIONS(2825), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1061), - [anon_sym_readonly] = ACTIONS(2749), + [anon_sym_new] = ACTIONS(1059), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1067), - [anon_sym_BANG] = ACTIONS(1495), - [anon_sym_TILDE] = ACTIONS(1495), - [anon_sym_PLUS_PLUS] = ACTIONS(1495), - [anon_sym_DASH_DASH] = ACTIONS(1495), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(1485), + [anon_sym_TILDE] = ACTIONS(1485), + [anon_sym_PLUS_PLUS] = ACTIONS(1485), + [anon_sym_DASH_DASH] = ACTIONS(1485), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1493), - [anon_sym_DASH] = ACTIONS(1493), - [anon_sym_STAR] = ACTIONS(905), - [anon_sym_CARET] = ACTIONS(1495), - [anon_sym_AMP] = ACTIONS(1495), + [anon_sym_PLUS] = ACTIONS(1483), + [anon_sym_DASH] = ACTIONS(1483), + [anon_sym_STAR] = ACTIONS(683), + [anon_sym_CARET] = ACTIONS(1485), + [anon_sym_AMP] = ACTIONS(1485), [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(1067), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1079), + [anon_sym_throw] = ACTIONS(1077), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1081), - [anon_sym_DOT_DOT] = ACTIONS(911), + [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), @@ -151582,7 +151468,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(1089), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -151599,84 +151485,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [651] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(5910), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2247), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(4880), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3379), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3080), - [sym_postfix_unary_expression] = STATE(3111), - [sym_prefix_unary_expression] = STATE(3111), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6154), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3080), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3111), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3080), - [sym_member_access_expression] = STATE(2484), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3111), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7575), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(3080), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3080), - [sym_typeof_expression] = STATE(3080), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2484), - [sym_literal] = STATE(3080), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2427), + [sym__name] = STATE(5528), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2196), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(5590), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3660), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3102), + [sym_postfix_unary_expression] = STATE(3079), + [sym_prefix_unary_expression] = STATE(3079), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6163), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3102), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3079), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3102), + [sym_member_access_expression] = STATE(2472), + [sym_member_binding_expression] = STATE(2973), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3079), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7633), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(3102), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3102), + [sym_typeof_expression] = STATE(3102), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2472), + [sym_literal] = STATE(3102), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(651), [sym_preproc_endregion] = STATE(651), [sym_preproc_line] = STATE(651), @@ -151686,49 +151573,48 @@ 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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1481), - [anon_sym_COMMA] = ACTIONS(919), - [anon_sym_LPAREN] = ACTIONS(895), - [anon_sym_ref] = ACTIONS(897), - [anon_sym_LBRACE] = ACTIONS(1487), - [anon_sym_RBRACE] = ACTIONS(2833), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1239), + [anon_sym_LPAREN] = ACTIONS(2009), + [anon_sym_ref] = ACTIONS(2011), + [anon_sym_LBRACE] = ACTIONS(1481), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1061), + [anon_sym_new] = ACTIONS(1095), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1067), - [anon_sym_BANG] = ACTIONS(1495), - [anon_sym_TILDE] = ACTIONS(1495), - [anon_sym_PLUS_PLUS] = ACTIONS(1495), - [anon_sym_DASH_DASH] = ACTIONS(1495), + [anon_sym_checked] = ACTIONS(1065), + [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(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1493), - [anon_sym_DASH] = ACTIONS(1493), - [anon_sym_STAR] = ACTIONS(905), - [anon_sym_CARET] = ACTIONS(1495), - [anon_sym_AMP] = ACTIONS(1495), + [anon_sym_PLUS] = ACTIONS(2013), + [anon_sym_DASH] = ACTIONS(2013), + [anon_sym_STAR] = ACTIONS(1227), + [anon_sym_CARET] = ACTIONS(2015), + [anon_sym_AMP] = ACTIONS(2015), [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), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1067), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1079), + [anon_sym_throw] = ACTIONS(1231), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1081), - [anon_sym_DOT_DOT] = ACTIONS(911), + [anon_sym_await] = ACTIONS(1233), + [anon_sym_DOT_DOT] = ACTIONS(1235), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -151753,7 +151639,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(1089), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -151770,85 +151656,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [652] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(3126), - [sym__name] = STATE(5634), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2204), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(5499), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3664), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3080), - [sym_postfix_unary_expression] = STATE(3111), - [sym_prefix_unary_expression] = STATE(3111), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6161), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3080), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3111), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3080), - [sym_member_access_expression] = STATE(2484), - [sym_member_binding_expression] = STATE(3079), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3111), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7773), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(3080), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3080), - [sym_typeof_expression] = STATE(3080), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2484), - [sym_literal] = STATE(3080), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(3118), + [sym__name] = STATE(5528), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2196), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(5408), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3660), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3102), + [sym_postfix_unary_expression] = STATE(3079), + [sym_prefix_unary_expression] = STATE(3079), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6163), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3102), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3079), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3102), + [sym_member_access_expression] = STATE(2472), + [sym_member_binding_expression] = STATE(3436), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3079), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7633), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(3102), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3102), + [sym_typeof_expression] = STATE(3102), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2472), + [sym_literal] = STATE(3102), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(652), [sym_preproc_endregion] = STATE(652), [sym_preproc_line] = STATE(652), @@ -151858,48 +151744,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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1481), - [anon_sym_LPAREN] = ACTIONS(2015), - [anon_sym_ref] = ACTIONS(2017), - [anon_sym_LBRACE] = ACTIONS(1487), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1305), + [anon_sym_LPAREN] = ACTIONS(2009), + [anon_sym_ref] = ACTIONS(2011), + [anon_sym_LBRACE] = ACTIONS(1481), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1101), + [anon_sym_new] = ACTIONS(1095), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1067), - [anon_sym_BANG] = ACTIONS(2021), - [anon_sym_TILDE] = ACTIONS(2021), - [anon_sym_PLUS_PLUS] = ACTIONS(2021), - [anon_sym_DASH_DASH] = ACTIONS(2021), + [anon_sym_checked] = ACTIONS(1065), + [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(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(2019), - [anon_sym_DASH] = ACTIONS(2019), - [anon_sym_STAR] = ACTIONS(1229), - [anon_sym_CARET] = ACTIONS(2021), - [anon_sym_AMP] = ACTIONS(2021), + [anon_sym_PLUS] = ACTIONS(2013), + [anon_sym_DASH] = ACTIONS(2013), + [anon_sym_STAR] = ACTIONS(1227), + [anon_sym_CARET] = ACTIONS(2015), + [anon_sym_AMP] = ACTIONS(2015), [anon_sym_this] = ACTIONS(83), - [anon_sym_DOT] = ACTIONS(2835), + [anon_sym_DOT] = ACTIONS(2795), [anon_sym_scoped] = ACTIONS(85), [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1067), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1233), + [anon_sym_throw] = ACTIONS(1231), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1235), - [anon_sym_DOT_DOT] = ACTIONS(1237), + [anon_sym_await] = ACTIONS(1233), + [anon_sym_DOT_DOT] = ACTIONS(1235), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -151924,7 +151810,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(1089), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -151941,85 +151827,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [653] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2474), - [sym__name] = STATE(5634), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2204), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(5645), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3664), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3080), - [sym_postfix_unary_expression] = STATE(3111), - [sym_prefix_unary_expression] = STATE(3111), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6161), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3080), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3111), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3080), - [sym_member_access_expression] = STATE(2484), - [sym_member_binding_expression] = STATE(3079), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3111), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7773), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(3080), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3080), - [sym_typeof_expression] = STATE(3080), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2484), - [sym_literal] = STATE(3080), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2454), + [sym__name] = STATE(5528), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2196), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(5432), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3660), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3102), + [sym_postfix_unary_expression] = STATE(3079), + [sym_prefix_unary_expression] = STATE(3079), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6163), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3102), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3079), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3102), + [sym_member_access_expression] = STATE(2472), + [sym_member_binding_expression] = STATE(3081), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3079), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7633), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(3102), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3102), + [sym_typeof_expression] = STATE(3102), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2472), + [sym_literal] = STATE(3102), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(653), [sym_preproc_endregion] = STATE(653), [sym_preproc_line] = STATE(653), @@ -152029,48 +151915,48 @@ 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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1481), - [anon_sym_LPAREN] = ACTIONS(2015), - [anon_sym_ref] = ACTIONS(2017), - [anon_sym_LBRACE] = ACTIONS(1487), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1479), + [anon_sym_LPAREN] = ACTIONS(2009), + [anon_sym_ref] = ACTIONS(2011), + [anon_sym_LBRACE] = ACTIONS(1481), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1101), + [anon_sym_new] = ACTIONS(1095), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1067), - [anon_sym_BANG] = ACTIONS(2021), - [anon_sym_TILDE] = ACTIONS(2021), - [anon_sym_PLUS_PLUS] = ACTIONS(2021), - [anon_sym_DASH_DASH] = ACTIONS(2021), + [anon_sym_checked] = ACTIONS(1065), + [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(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(2019), - [anon_sym_DASH] = ACTIONS(2019), - [anon_sym_STAR] = ACTIONS(1229), - [anon_sym_CARET] = ACTIONS(2021), - [anon_sym_AMP] = ACTIONS(2021), + [anon_sym_PLUS] = ACTIONS(2013), + [anon_sym_DASH] = ACTIONS(2013), + [anon_sym_STAR] = ACTIONS(1227), + [anon_sym_CARET] = ACTIONS(2015), + [anon_sym_AMP] = ACTIONS(2015), [anon_sym_this] = ACTIONS(83), - [anon_sym_DOT] = ACTIONS(2745), + [anon_sym_DOT] = ACTIONS(2777), [anon_sym_scoped] = ACTIONS(85), [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1067), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1233), + [anon_sym_throw] = ACTIONS(1231), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1235), - [anon_sym_DOT_DOT] = ACTIONS(1237), + [anon_sym_await] = ACTIONS(1233), + [anon_sym_DOT_DOT] = ACTIONS(1235), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -152095,7 +151981,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(1089), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -152112,85 +151998,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [654] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(3126), - [sym__name] = STATE(5634), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2204), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(5527), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3664), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3080), - [sym_postfix_unary_expression] = STATE(3111), - [sym_prefix_unary_expression] = STATE(3111), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6161), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3080), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3111), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3080), - [sym_member_access_expression] = STATE(2484), - [sym_member_binding_expression] = STATE(3079), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3111), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7773), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(3080), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3080), - [sym_typeof_expression] = STATE(3080), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2484), - [sym_literal] = STATE(3080), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(5873), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2238), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(5171), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3468), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3102), + [sym_postfix_unary_expression] = STATE(3079), + [sym_prefix_unary_expression] = STATE(3079), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6134), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3102), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3079), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3102), + [sym_member_access_expression] = STATE(2472), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3079), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7309), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym__anonymous_object_member_declarator] = STATE(7088), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(3102), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3102), + [sym_typeof_expression] = STATE(3102), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2472), + [sym_literal] = STATE(3102), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2297), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(654), [sym_preproc_endregion] = STATE(654), [sym_preproc_line] = STATE(654), @@ -152200,48 +152086,48 @@ 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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1481), - [anon_sym_LPAREN] = ACTIONS(2015), - [anon_sym_ref] = ACTIONS(2017), - [anon_sym_LBRACE] = ACTIONS(1487), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1479), + [anon_sym_LPAREN] = ACTIONS(659), + [anon_sym_ref] = ACTIONS(663), + [anon_sym_LBRACE] = ACTIONS(1481), + [anon_sym_RBRACE] = ACTIONS(2827), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1101), + [anon_sym_new] = ACTIONS(1059), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1067), - [anon_sym_BANG] = ACTIONS(2021), - [anon_sym_TILDE] = ACTIONS(2021), - [anon_sym_PLUS_PLUS] = ACTIONS(2021), - [anon_sym_DASH_DASH] = ACTIONS(2021), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(1485), + [anon_sym_TILDE] = ACTIONS(1485), + [anon_sym_PLUS_PLUS] = ACTIONS(1485), + [anon_sym_DASH_DASH] = ACTIONS(1485), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(2019), - [anon_sym_DASH] = ACTIONS(2019), - [anon_sym_STAR] = ACTIONS(1229), - [anon_sym_CARET] = ACTIONS(2021), - [anon_sym_AMP] = ACTIONS(2021), + [anon_sym_PLUS] = ACTIONS(1483), + [anon_sym_DASH] = ACTIONS(1483), + [anon_sym_STAR] = ACTIONS(683), + [anon_sym_CARET] = ACTIONS(1485), + [anon_sym_AMP] = ACTIONS(1485), [anon_sym_this] = ACTIONS(83), - [anon_sym_DOT] = ACTIONS(2835), [anon_sym_scoped] = ACTIONS(85), [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1067), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1233), + [anon_sym_throw] = ACTIONS(1077), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1235), - [anon_sym_DOT_DOT] = ACTIONS(1237), + [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), @@ -152266,7 +152152,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(1089), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -152283,85 +152169,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [655] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2883), - [sym__name] = STATE(5634), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2204), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(5400), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3664), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3080), - [sym_postfix_unary_expression] = STATE(3111), - [sym_prefix_unary_expression] = STATE(3111), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6161), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3080), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3111), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3080), - [sym_member_access_expression] = STATE(2484), - [sym_member_binding_expression] = STATE(3697), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3111), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7773), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(3080), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3080), - [sym_typeof_expression] = STATE(3080), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2484), - [sym_literal] = STATE(3080), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2454), + [sym__name] = STATE(5528), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2196), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(5457), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3660), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3102), + [sym_postfix_unary_expression] = STATE(3079), + [sym_prefix_unary_expression] = STATE(3079), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6163), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3102), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3079), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3102), + [sym_member_access_expression] = STATE(2472), + [sym_member_binding_expression] = STATE(3081), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3079), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7633), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(3102), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3102), + [sym_typeof_expression] = STATE(3102), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2472), + [sym_literal] = STATE(3102), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(655), [sym_preproc_endregion] = STATE(655), [sym_preproc_line] = STATE(655), @@ -152371,48 +152257,48 @@ 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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1627), - [anon_sym_LPAREN] = ACTIONS(2015), - [anon_sym_ref] = ACTIONS(2017), - [anon_sym_LBRACE] = ACTIONS(1487), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1479), + [anon_sym_LPAREN] = ACTIONS(2009), + [anon_sym_ref] = ACTIONS(2011), + [anon_sym_LBRACE] = ACTIONS(1481), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1101), + [anon_sym_new] = ACTIONS(1095), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1067), - [anon_sym_BANG] = ACTIONS(2021), - [anon_sym_TILDE] = ACTIONS(2021), - [anon_sym_PLUS_PLUS] = ACTIONS(2021), - [anon_sym_DASH_DASH] = ACTIONS(2021), + [anon_sym_checked] = ACTIONS(1065), + [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(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(2019), - [anon_sym_DASH] = ACTIONS(2019), - [anon_sym_STAR] = ACTIONS(1229), - [anon_sym_CARET] = ACTIONS(2021), - [anon_sym_AMP] = ACTIONS(2021), + [anon_sym_PLUS] = ACTIONS(2013), + [anon_sym_DASH] = ACTIONS(2013), + [anon_sym_STAR] = ACTIONS(1227), + [anon_sym_CARET] = ACTIONS(2015), + [anon_sym_AMP] = ACTIONS(2015), [anon_sym_this] = ACTIONS(83), - [anon_sym_DOT] = ACTIONS(2769), + [anon_sym_DOT] = ACTIONS(2777), [anon_sym_scoped] = ACTIONS(85), [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1067), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1233), + [anon_sym_throw] = ACTIONS(1231), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1235), - [anon_sym_DOT_DOT] = ACTIONS(1237), + [anon_sym_await] = ACTIONS(1233), + [anon_sym_DOT_DOT] = ACTIONS(1235), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -152437,7 +152323,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(1089), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -152454,85 +152340,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [656] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(3213), - [sym__name] = STATE(5634), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2204), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(5413), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3664), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3080), - [sym_postfix_unary_expression] = STATE(3111), - [sym_prefix_unary_expression] = STATE(3111), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6161), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3080), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3111), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3080), - [sym_member_access_expression] = STATE(2484), - [sym_member_binding_expression] = STATE(4707), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3111), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7773), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(3080), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3080), - [sym_typeof_expression] = STATE(3080), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2484), - [sym_literal] = STATE(3080), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2454), + [sym__name] = STATE(5528), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2196), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(5499), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3660), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3102), + [sym_postfix_unary_expression] = STATE(3079), + [sym_prefix_unary_expression] = STATE(3079), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6163), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3102), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3079), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3102), + [sym_member_access_expression] = STATE(2472), + [sym_member_binding_expression] = STATE(3081), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3079), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7633), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(3102), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3102), + [sym_typeof_expression] = STATE(3102), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2472), + [sym_literal] = STATE(3102), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(656), [sym_preproc_endregion] = STATE(656), [sym_preproc_line] = STATE(656), @@ -152542,48 +152428,48 @@ 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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1391), - [anon_sym_LPAREN] = ACTIONS(2015), - [anon_sym_ref] = ACTIONS(2017), - [anon_sym_LBRACE] = ACTIONS(1487), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1479), + [anon_sym_LPAREN] = ACTIONS(2009), + [anon_sym_ref] = ACTIONS(2011), + [anon_sym_LBRACE] = ACTIONS(1481), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1101), + [anon_sym_new] = ACTIONS(1095), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1067), - [anon_sym_BANG] = ACTIONS(2021), - [anon_sym_TILDE] = ACTIONS(2021), - [anon_sym_PLUS_PLUS] = ACTIONS(2021), - [anon_sym_DASH_DASH] = ACTIONS(2021), + [anon_sym_checked] = ACTIONS(1065), + [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(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(2019), - [anon_sym_DASH] = ACTIONS(2019), - [anon_sym_STAR] = ACTIONS(1229), - [anon_sym_CARET] = ACTIONS(2021), - [anon_sym_AMP] = ACTIONS(2021), + [anon_sym_PLUS] = ACTIONS(2013), + [anon_sym_DASH] = ACTIONS(2013), + [anon_sym_STAR] = ACTIONS(1227), + [anon_sym_CARET] = ACTIONS(2015), + [anon_sym_AMP] = ACTIONS(2015), [anon_sym_this] = ACTIONS(83), - [anon_sym_DOT] = ACTIONS(2803), + [anon_sym_DOT] = ACTIONS(2777), [anon_sym_scoped] = ACTIONS(85), [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1067), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1233), + [anon_sym_throw] = ACTIONS(1231), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1235), - [anon_sym_DOT_DOT] = ACTIONS(1237), + [anon_sym_await] = ACTIONS(1233), + [anon_sym_DOT_DOT] = ACTIONS(1235), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -152608,7 +152494,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(1089), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -152625,85 +152511,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [657] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2425), - [sym__name] = STATE(5634), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2204), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(5594), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3664), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3080), - [sym_postfix_unary_expression] = STATE(3111), - [sym_prefix_unary_expression] = STATE(3111), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6161), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3080), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3111), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3080), - [sym_member_access_expression] = STATE(2484), - [sym_member_binding_expression] = STATE(3062), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3111), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7773), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(3080), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3080), - [sym_typeof_expression] = STATE(3080), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2484), - [sym_literal] = STATE(3080), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2454), + [sym__name] = STATE(5528), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2196), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(5514), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3660), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3102), + [sym_postfix_unary_expression] = STATE(3079), + [sym_prefix_unary_expression] = STATE(3079), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6163), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3102), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3079), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3102), + [sym_member_access_expression] = STATE(2472), + [sym_member_binding_expression] = STATE(3081), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3079), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7633), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(3102), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3102), + [sym_typeof_expression] = STATE(3102), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2472), + [sym_literal] = STATE(3102), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(657), [sym_preproc_endregion] = STATE(657), [sym_preproc_line] = STATE(657), @@ -152713,48 +152599,48 @@ 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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1241), - [anon_sym_LPAREN] = ACTIONS(2015), - [anon_sym_ref] = ACTIONS(2017), - [anon_sym_LBRACE] = ACTIONS(1487), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1479), + [anon_sym_LPAREN] = ACTIONS(2009), + [anon_sym_ref] = ACTIONS(2011), + [anon_sym_LBRACE] = ACTIONS(1481), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1101), + [anon_sym_new] = ACTIONS(1095), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1067), - [anon_sym_BANG] = ACTIONS(2021), - [anon_sym_TILDE] = ACTIONS(2021), - [anon_sym_PLUS_PLUS] = ACTIONS(2021), - [anon_sym_DASH_DASH] = ACTIONS(2021), + [anon_sym_checked] = ACTIONS(1065), + [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(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(2019), - [anon_sym_DASH] = ACTIONS(2019), - [anon_sym_STAR] = ACTIONS(1229), - [anon_sym_CARET] = ACTIONS(2021), - [anon_sym_AMP] = ACTIONS(2021), + [anon_sym_PLUS] = ACTIONS(2013), + [anon_sym_DASH] = ACTIONS(2013), + [anon_sym_STAR] = ACTIONS(1227), + [anon_sym_CARET] = ACTIONS(2015), + [anon_sym_AMP] = ACTIONS(2015), [anon_sym_this] = ACTIONS(83), - [anon_sym_DOT] = ACTIONS(2821), + [anon_sym_DOT] = ACTIONS(2777), [anon_sym_scoped] = ACTIONS(85), [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1067), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1233), + [anon_sym_throw] = ACTIONS(1231), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1235), - [anon_sym_DOT_DOT] = ACTIONS(1237), + [anon_sym_await] = ACTIONS(1233), + [anon_sym_DOT_DOT] = ACTIONS(1235), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -152779,7 +152665,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(1089), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -152796,85 +152682,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [658] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2474), - [sym__name] = STATE(5634), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2204), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(5427), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3664), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3080), - [sym_postfix_unary_expression] = STATE(3111), - [sym_prefix_unary_expression] = STATE(3111), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6161), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3080), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3111), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3080), - [sym_member_access_expression] = STATE(2484), - [sym_member_binding_expression] = STATE(3079), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3111), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7773), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(3080), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3080), - [sym_typeof_expression] = STATE(3080), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2484), - [sym_literal] = STATE(3080), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(5873), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2238), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(5171), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3468), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3102), + [sym_postfix_unary_expression] = STATE(3079), + [sym_prefix_unary_expression] = STATE(3079), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6134), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3102), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3079), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3102), + [sym_member_access_expression] = STATE(2472), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3079), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7309), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym__anonymous_object_member_declarator] = STATE(7088), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(3102), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3102), + [sym_typeof_expression] = STATE(3102), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2472), + [sym_literal] = STATE(3102), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2297), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(658), [sym_preproc_endregion] = STATE(658), [sym_preproc_line] = STATE(658), @@ -152884,48 +152770,48 @@ 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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1481), - [anon_sym_LPAREN] = ACTIONS(2015), - [anon_sym_ref] = ACTIONS(2017), - [anon_sym_LBRACE] = ACTIONS(1487), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1479), + [anon_sym_LPAREN] = ACTIONS(659), + [anon_sym_ref] = ACTIONS(663), + [anon_sym_LBRACE] = ACTIONS(1481), + [anon_sym_RBRACE] = ACTIONS(2829), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1101), + [anon_sym_new] = ACTIONS(1059), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1067), - [anon_sym_BANG] = ACTIONS(2021), - [anon_sym_TILDE] = ACTIONS(2021), - [anon_sym_PLUS_PLUS] = ACTIONS(2021), - [anon_sym_DASH_DASH] = ACTIONS(2021), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(1485), + [anon_sym_TILDE] = ACTIONS(1485), + [anon_sym_PLUS_PLUS] = ACTIONS(1485), + [anon_sym_DASH_DASH] = ACTIONS(1485), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(2019), - [anon_sym_DASH] = ACTIONS(2019), - [anon_sym_STAR] = ACTIONS(1229), - [anon_sym_CARET] = ACTIONS(2021), - [anon_sym_AMP] = ACTIONS(2021), + [anon_sym_PLUS] = ACTIONS(1483), + [anon_sym_DASH] = ACTIONS(1483), + [anon_sym_STAR] = ACTIONS(683), + [anon_sym_CARET] = ACTIONS(1485), + [anon_sym_AMP] = ACTIONS(1485), [anon_sym_this] = ACTIONS(83), - [anon_sym_DOT] = ACTIONS(2745), [anon_sym_scoped] = ACTIONS(85), [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1067), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1233), + [anon_sym_throw] = ACTIONS(1077), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1235), - [anon_sym_DOT_DOT] = ACTIONS(1237), + [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), @@ -152950,7 +152836,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(1089), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -152967,85 +152853,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [659] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(5910), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2247), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(5151), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3379), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3080), - [sym_postfix_unary_expression] = STATE(3111), - [sym_prefix_unary_expression] = STATE(3111), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6154), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3080), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3111), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3080), - [sym_member_access_expression] = STATE(2484), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3111), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7575), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym__anonymous_object_member_declarator] = STATE(7234), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(3080), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3080), - [sym_typeof_expression] = STATE(3080), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2484), - [sym_literal] = STATE(3080), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2311), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2454), + [sym__name] = STATE(5528), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2196), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(5520), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3660), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3102), + [sym_postfix_unary_expression] = STATE(3079), + [sym_prefix_unary_expression] = STATE(3079), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6163), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3102), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3079), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3102), + [sym_member_access_expression] = STATE(2472), + [sym_member_binding_expression] = STATE(3081), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3079), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7633), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(3102), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3102), + [sym_typeof_expression] = STATE(3102), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2472), + [sym_literal] = STATE(3102), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(659), [sym_preproc_endregion] = STATE(659), [sym_preproc_line] = STATE(659), @@ -153055,48 +152941,48 @@ 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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1481), - [anon_sym_LPAREN] = ACTIONS(895), - [anon_sym_ref] = ACTIONS(897), - [anon_sym_LBRACE] = ACTIONS(1487), - [anon_sym_RBRACE] = ACTIONS(2837), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1479), + [anon_sym_LPAREN] = ACTIONS(2009), + [anon_sym_ref] = ACTIONS(2011), + [anon_sym_LBRACE] = ACTIONS(1481), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1061), + [anon_sym_new] = ACTIONS(1095), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1067), - [anon_sym_BANG] = ACTIONS(1495), - [anon_sym_TILDE] = ACTIONS(1495), - [anon_sym_PLUS_PLUS] = ACTIONS(1495), - [anon_sym_DASH_DASH] = ACTIONS(1495), + [anon_sym_checked] = ACTIONS(1065), + [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(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1493), - [anon_sym_DASH] = ACTIONS(1493), - [anon_sym_STAR] = ACTIONS(905), - [anon_sym_CARET] = ACTIONS(1495), - [anon_sym_AMP] = ACTIONS(1495), + [anon_sym_PLUS] = ACTIONS(2013), + [anon_sym_DASH] = ACTIONS(2013), + [anon_sym_STAR] = ACTIONS(1227), + [anon_sym_CARET] = ACTIONS(2015), + [anon_sym_AMP] = ACTIONS(2015), [anon_sym_this] = ACTIONS(83), + [anon_sym_DOT] = ACTIONS(2777), [anon_sym_scoped] = ACTIONS(85), [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1067), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1079), + [anon_sym_throw] = ACTIONS(1231), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1081), - [anon_sym_DOT_DOT] = ACTIONS(911), + [anon_sym_await] = ACTIONS(1233), + [anon_sym_DOT_DOT] = ACTIONS(1235), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -153121,7 +153007,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(1089), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -153138,85 +153024,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [660] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2474), - [sym__name] = STATE(5634), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2204), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(5463), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3664), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3080), - [sym_postfix_unary_expression] = STATE(3111), - [sym_prefix_unary_expression] = STATE(3111), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6161), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3080), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3111), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3080), - [sym_member_access_expression] = STATE(2484), - [sym_member_binding_expression] = STATE(3079), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3111), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7773), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(3080), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3080), - [sym_typeof_expression] = STATE(3080), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2484), - [sym_literal] = STATE(3080), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(5152), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2196), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(5321), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3356), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3102), + [sym_postfix_unary_expression] = STATE(3079), + [sym_prefix_unary_expression] = STATE(3079), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6134), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3102), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3079), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3102), + [sym_member_access_expression] = STATE(2472), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3079), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7627), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(3102), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3102), + [sym_typeof_expression] = STATE(3102), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2472), + [sym_literal] = STATE(3102), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(660), [sym_preproc_endregion] = STATE(660), [sym_preproc_line] = STATE(660), @@ -153226,48 +153111,49 @@ 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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), + [anon_sym_SEMI] = ACTIONS(2831), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1481), - [anon_sym_LPAREN] = ACTIONS(2015), - [anon_sym_ref] = ACTIONS(2017), - [anon_sym_LBRACE] = ACTIONS(1487), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1479), + [anon_sym_LPAREN] = ACTIONS(1511), + [anon_sym_ref] = ACTIONS(1513), + [anon_sym_LBRACE] = ACTIONS(1481), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1101), + [anon_sym_new] = ACTIONS(1515), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1067), - [anon_sym_BANG] = ACTIONS(2021), - [anon_sym_TILDE] = ACTIONS(2021), - [anon_sym_PLUS_PLUS] = ACTIONS(2021), - [anon_sym_DASH_DASH] = ACTIONS(2021), + [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(2019), - [anon_sym_DASH] = ACTIONS(2019), - [anon_sym_STAR] = ACTIONS(1229), - [anon_sym_CARET] = ACTIONS(2021), - [anon_sym_AMP] = ACTIONS(2021), + [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(2745), [anon_sym_scoped] = ACTIONS(85), [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1067), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1233), + [anon_sym_case] = ACTIONS(2833), + [anon_sym_default] = ACTIONS(2835), + [anon_sym_throw] = ACTIONS(1517), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1235), - [anon_sym_DOT_DOT] = ACTIONS(1237), + [anon_sym_await] = ACTIONS(1519), + [anon_sym_DOT_DOT] = ACTIONS(1521), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -153292,7 +153178,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(1089), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -153309,85 +153195,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [661] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2474), - [sym__name] = STATE(5634), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2204), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(5518), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3664), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3080), - [sym_postfix_unary_expression] = STATE(3111), - [sym_prefix_unary_expression] = STATE(3111), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6161), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3080), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3111), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3080), - [sym_member_access_expression] = STATE(2484), - [sym_member_binding_expression] = STATE(3079), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3111), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7773), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(3080), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3080), - [sym_typeof_expression] = STATE(3080), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2484), - [sym_literal] = STATE(3080), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2454), + [sym__name] = STATE(5528), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2196), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(5526), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3660), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3102), + [sym_postfix_unary_expression] = STATE(3079), + [sym_prefix_unary_expression] = STATE(3079), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6163), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3102), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3079), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3102), + [sym_member_access_expression] = STATE(2472), + [sym_member_binding_expression] = STATE(3081), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3079), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7633), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(3102), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3102), + [sym_typeof_expression] = STATE(3102), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2472), + [sym_literal] = STATE(3102), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(661), [sym_preproc_endregion] = STATE(661), [sym_preproc_line] = STATE(661), @@ -153397,48 +153283,48 @@ 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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1481), - [anon_sym_LPAREN] = ACTIONS(2015), - [anon_sym_ref] = ACTIONS(2017), - [anon_sym_LBRACE] = ACTIONS(1487), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1479), + [anon_sym_LPAREN] = ACTIONS(2009), + [anon_sym_ref] = ACTIONS(2011), + [anon_sym_LBRACE] = ACTIONS(1481), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1101), + [anon_sym_new] = ACTIONS(1095), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1067), - [anon_sym_BANG] = ACTIONS(2021), - [anon_sym_TILDE] = ACTIONS(2021), - [anon_sym_PLUS_PLUS] = ACTIONS(2021), - [anon_sym_DASH_DASH] = ACTIONS(2021), + [anon_sym_checked] = ACTIONS(1065), + [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(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(2019), - [anon_sym_DASH] = ACTIONS(2019), - [anon_sym_STAR] = ACTIONS(1229), - [anon_sym_CARET] = ACTIONS(2021), - [anon_sym_AMP] = ACTIONS(2021), + [anon_sym_PLUS] = ACTIONS(2013), + [anon_sym_DASH] = ACTIONS(2013), + [anon_sym_STAR] = ACTIONS(1227), + [anon_sym_CARET] = ACTIONS(2015), + [anon_sym_AMP] = ACTIONS(2015), [anon_sym_this] = ACTIONS(83), - [anon_sym_DOT] = ACTIONS(2745), + [anon_sym_DOT] = ACTIONS(2777), [anon_sym_scoped] = ACTIONS(85), [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1067), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1233), + [anon_sym_throw] = ACTIONS(1231), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1235), - [anon_sym_DOT_DOT] = ACTIONS(1237), + [anon_sym_await] = ACTIONS(1233), + [anon_sym_DOT_DOT] = ACTIONS(1235), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -153463,7 +153349,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(1089), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -153480,85 +153366,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [662] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2474), - [sym__name] = STATE(5634), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2204), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(5535), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3664), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3080), - [sym_postfix_unary_expression] = STATE(3111), - [sym_prefix_unary_expression] = STATE(3111), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6161), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3080), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3111), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3080), - [sym_member_access_expression] = STATE(2484), - [sym_member_binding_expression] = STATE(3079), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3111), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7773), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(3080), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3080), - [sym_typeof_expression] = STATE(3080), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2484), - [sym_literal] = STATE(3080), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(5873), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2238), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5693), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(5147), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3468), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3102), + [sym_postfix_unary_expression] = STATE(3079), + [sym_prefix_unary_expression] = STATE(3079), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6134), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3102), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3079), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3102), + [sym_member_access_expression] = STATE(2472), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3079), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7309), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_declaration_expression] = STATE(6798), + [sym_default_expression] = STATE(3102), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3102), + [sym_typeof_expression] = STATE(3102), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2472), + [sym_literal] = STATE(3102), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(662), [sym_preproc_endregion] = STATE(662), [sym_preproc_line] = STATE(662), @@ -153568,48 +153454,48 @@ 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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1481), - [anon_sym_LPAREN] = ACTIONS(2015), - [anon_sym_ref] = ACTIONS(2017), - [anon_sym_LBRACE] = ACTIONS(1487), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1479), + [anon_sym_LPAREN] = ACTIONS(659), + [anon_sym_ref] = ACTIONS(663), + [anon_sym_LBRACE] = ACTIONS(1481), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1101), + [anon_sym_new] = ACTIONS(1059), + [anon_sym_readonly] = ACTIONS(2767), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1067), - [anon_sym_BANG] = ACTIONS(2021), - [anon_sym_TILDE] = ACTIONS(2021), - [anon_sym_PLUS_PLUS] = ACTIONS(2021), - [anon_sym_DASH_DASH] = ACTIONS(2021), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(1485), + [anon_sym_TILDE] = ACTIONS(1485), + [anon_sym_PLUS_PLUS] = ACTIONS(1485), + [anon_sym_DASH_DASH] = ACTIONS(1485), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(2019), - [anon_sym_DASH] = ACTIONS(2019), - [anon_sym_STAR] = ACTIONS(1229), - [anon_sym_CARET] = ACTIONS(2021), - [anon_sym_AMP] = ACTIONS(2021), + [anon_sym_PLUS] = ACTIONS(1483), + [anon_sym_DASH] = ACTIONS(1483), + [anon_sym_STAR] = ACTIONS(683), + [anon_sym_CARET] = ACTIONS(1485), + [anon_sym_AMP] = ACTIONS(1485), [anon_sym_this] = ACTIONS(83), - [anon_sym_DOT] = ACTIONS(2745), [anon_sym_scoped] = ACTIONS(85), [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1067), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1233), + [anon_sym_throw] = ACTIONS(1077), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1235), - [anon_sym_DOT_DOT] = ACTIONS(1237), + [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), @@ -153634,7 +153520,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(1089), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -153651,85 +153537,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [663] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2474), - [sym__name] = STATE(5634), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2204), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(5543), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3664), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3080), - [sym_postfix_unary_expression] = STATE(3111), - [sym_prefix_unary_expression] = STATE(3111), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6161), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3080), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3111), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3080), - [sym_member_access_expression] = STATE(2484), - [sym_member_binding_expression] = STATE(3079), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3111), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7773), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(3080), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3080), - [sym_typeof_expression] = STATE(3080), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2484), - [sym_literal] = STATE(3080), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2593), + [sym__name] = STATE(5528), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2196), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(5635), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3660), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3102), + [sym_postfix_unary_expression] = STATE(3079), + [sym_prefix_unary_expression] = STATE(3079), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6163), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3102), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3079), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3102), + [sym_member_access_expression] = STATE(2472), + [sym_member_binding_expression] = STATE(3267), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3079), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7633), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(3102), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3102), + [sym_typeof_expression] = STATE(3102), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2472), + [sym_literal] = STATE(3102), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(663), [sym_preproc_endregion] = STATE(663), [sym_preproc_line] = STATE(663), @@ -153739,48 +153625,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(663), [sym_preproc_define] = STATE(663), [sym_preproc_undef] = STATE(663), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1481), - [anon_sym_LPAREN] = ACTIONS(2015), - [anon_sym_ref] = ACTIONS(2017), - [anon_sym_LBRACE] = ACTIONS(1487), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1149), + [anon_sym_LPAREN] = ACTIONS(2009), + [anon_sym_ref] = ACTIONS(2011), + [anon_sym_LBRACE] = ACTIONS(1481), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1101), + [anon_sym_new] = ACTIONS(1095), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1067), - [anon_sym_BANG] = ACTIONS(2021), - [anon_sym_TILDE] = ACTIONS(2021), - [anon_sym_PLUS_PLUS] = ACTIONS(2021), - [anon_sym_DASH_DASH] = ACTIONS(2021), + [anon_sym_checked] = ACTIONS(1065), + [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(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(2019), - [anon_sym_DASH] = ACTIONS(2019), - [anon_sym_STAR] = ACTIONS(1229), - [anon_sym_CARET] = ACTIONS(2021), - [anon_sym_AMP] = ACTIONS(2021), + [anon_sym_PLUS] = ACTIONS(2013), + [anon_sym_DASH] = ACTIONS(2013), + [anon_sym_STAR] = ACTIONS(1227), + [anon_sym_CARET] = ACTIONS(2015), + [anon_sym_AMP] = ACTIONS(2015), [anon_sym_this] = ACTIONS(83), - [anon_sym_DOT] = ACTIONS(2745), + [anon_sym_DOT] = ACTIONS(2751), [anon_sym_scoped] = ACTIONS(85), [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1067), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1233), + [anon_sym_throw] = ACTIONS(1231), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1235), - [anon_sym_DOT_DOT] = ACTIONS(1237), + [anon_sym_await] = ACTIONS(1233), + [anon_sym_DOT_DOT] = ACTIONS(1235), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -153805,7 +153691,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(1089), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -153822,85 +153708,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [664] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(5910), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2247), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(5151), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3379), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3080), - [sym_postfix_unary_expression] = STATE(3111), - [sym_prefix_unary_expression] = STATE(3111), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6154), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3080), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3111), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3080), - [sym_member_access_expression] = STATE(2484), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3111), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7575), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym__anonymous_object_member_declarator] = STATE(7234), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(3080), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3080), - [sym_typeof_expression] = STATE(3080), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2484), - [sym_literal] = STATE(3080), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2311), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(5873), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2238), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(5021), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3468), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3102), + [sym_postfix_unary_expression] = STATE(3079), + [sym_prefix_unary_expression] = STATE(3079), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6134), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3102), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3079), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3102), + [sym_member_access_expression] = STATE(2472), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3079), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7309), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(3102), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3102), + [sym_typeof_expression] = STATE(3102), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2472), + [sym_literal] = STATE(3102), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(664), [sym_preproc_endregion] = STATE(664), [sym_preproc_line] = STATE(664), @@ -153910,48 +153795,49 @@ 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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1481), - [anon_sym_LPAREN] = ACTIONS(895), - [anon_sym_ref] = ACTIONS(897), - [anon_sym_LBRACE] = ACTIONS(1487), - [anon_sym_RBRACE] = ACTIONS(2839), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1479), + [anon_sym_COMMA] = ACTIONS(657), + [anon_sym_LPAREN] = ACTIONS(659), + [anon_sym_ref] = ACTIONS(663), + [anon_sym_LBRACE] = ACTIONS(1481), + [anon_sym_RBRACE] = ACTIONS(2837), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1061), + [anon_sym_new] = ACTIONS(1059), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1067), - [anon_sym_BANG] = ACTIONS(1495), - [anon_sym_TILDE] = ACTIONS(1495), - [anon_sym_PLUS_PLUS] = ACTIONS(1495), - [anon_sym_DASH_DASH] = ACTIONS(1495), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(1485), + [anon_sym_TILDE] = ACTIONS(1485), + [anon_sym_PLUS_PLUS] = ACTIONS(1485), + [anon_sym_DASH_DASH] = ACTIONS(1485), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1493), - [anon_sym_DASH] = ACTIONS(1493), - [anon_sym_STAR] = ACTIONS(905), - [anon_sym_CARET] = ACTIONS(1495), - [anon_sym_AMP] = ACTIONS(1495), + [anon_sym_PLUS] = ACTIONS(1483), + [anon_sym_DASH] = ACTIONS(1483), + [anon_sym_STAR] = ACTIONS(683), + [anon_sym_CARET] = ACTIONS(1485), + [anon_sym_AMP] = ACTIONS(1485), [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(1067), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1079), + [anon_sym_throw] = ACTIONS(1077), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1081), - [anon_sym_DOT_DOT] = ACTIONS(911), + [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), @@ -153976,7 +153862,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(1089), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -153993,85 +153879,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [665] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2425), - [sym__name] = STATE(5634), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2204), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(5592), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3664), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3080), - [sym_postfix_unary_expression] = STATE(3111), - [sym_prefix_unary_expression] = STATE(3111), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6161), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3080), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3111), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3080), - [sym_member_access_expression] = STATE(2484), - [sym_member_binding_expression] = STATE(3062), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3111), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7773), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(3080), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3080), - [sym_typeof_expression] = STATE(3080), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2484), - [sym_literal] = STATE(3080), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2427), + [sym__name] = STATE(5528), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2196), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(5587), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3660), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3102), + [sym_postfix_unary_expression] = STATE(3079), + [sym_prefix_unary_expression] = STATE(3079), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6163), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3102), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3079), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3102), + [sym_member_access_expression] = STATE(2472), + [sym_member_binding_expression] = STATE(2973), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3079), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7633), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(3102), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3102), + [sym_typeof_expression] = STATE(3102), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2472), + [sym_literal] = STATE(3102), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(665), [sym_preproc_endregion] = STATE(665), [sym_preproc_line] = STATE(665), @@ -154081,48 +153967,48 @@ 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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1241), - [anon_sym_LPAREN] = ACTIONS(2015), - [anon_sym_ref] = ACTIONS(2017), - [anon_sym_LBRACE] = ACTIONS(1487), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1239), + [anon_sym_LPAREN] = ACTIONS(2009), + [anon_sym_ref] = ACTIONS(2011), + [anon_sym_LBRACE] = ACTIONS(1481), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1101), + [anon_sym_new] = ACTIONS(1095), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1067), - [anon_sym_BANG] = ACTIONS(2021), - [anon_sym_TILDE] = ACTIONS(2021), - [anon_sym_PLUS_PLUS] = ACTIONS(2021), - [anon_sym_DASH_DASH] = ACTIONS(2021), + [anon_sym_checked] = ACTIONS(1065), + [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(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(2019), - [anon_sym_DASH] = ACTIONS(2019), - [anon_sym_STAR] = ACTIONS(1229), - [anon_sym_CARET] = ACTIONS(2021), - [anon_sym_AMP] = ACTIONS(2021), + [anon_sym_PLUS] = ACTIONS(2013), + [anon_sym_DASH] = ACTIONS(2013), + [anon_sym_STAR] = ACTIONS(1227), + [anon_sym_CARET] = ACTIONS(2015), + [anon_sym_AMP] = ACTIONS(2015), [anon_sym_this] = ACTIONS(83), - [anon_sym_DOT] = ACTIONS(2793), + [anon_sym_DOT] = ACTIONS(2799), [anon_sym_scoped] = ACTIONS(85), [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1067), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1233), + [anon_sym_throw] = ACTIONS(1231), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1235), - [anon_sym_DOT_DOT] = ACTIONS(1237), + [anon_sym_await] = ACTIONS(1233), + [anon_sym_DOT_DOT] = ACTIONS(1235), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -154147,7 +154033,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(1089), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -154164,85 +154050,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [666] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2620), - [sym__name] = STATE(5634), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2204), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(5595), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3664), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3080), - [sym_postfix_unary_expression] = STATE(3111), - [sym_prefix_unary_expression] = STATE(3111), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6161), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3080), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3111), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3080), - [sym_member_access_expression] = STATE(2484), - [sym_member_binding_expression] = STATE(3303), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3111), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7773), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(3080), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3080), - [sym_typeof_expression] = STATE(3080), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2484), - [sym_literal] = STATE(3080), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2593), + [sym__name] = STATE(5528), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2196), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(5591), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3660), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3102), + [sym_postfix_unary_expression] = STATE(3079), + [sym_prefix_unary_expression] = STATE(3079), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6163), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3102), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3079), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3102), + [sym_member_access_expression] = STATE(2472), + [sym_member_binding_expression] = STATE(3267), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3079), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7633), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(3102), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3102), + [sym_typeof_expression] = STATE(3102), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2472), + [sym_literal] = STATE(3102), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(666), [sym_preproc_endregion] = STATE(666), [sym_preproc_line] = STATE(666), @@ -154252,48 +154138,48 @@ 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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1153), - [anon_sym_LPAREN] = ACTIONS(2015), - [anon_sym_ref] = ACTIONS(2017), - [anon_sym_LBRACE] = ACTIONS(1487), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1149), + [anon_sym_LPAREN] = ACTIONS(2009), + [anon_sym_ref] = ACTIONS(2011), + [anon_sym_LBRACE] = ACTIONS(1481), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1101), + [anon_sym_new] = ACTIONS(1095), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1067), - [anon_sym_BANG] = ACTIONS(2021), - [anon_sym_TILDE] = ACTIONS(2021), - [anon_sym_PLUS_PLUS] = ACTIONS(2021), - [anon_sym_DASH_DASH] = ACTIONS(2021), + [anon_sym_checked] = ACTIONS(1065), + [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(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(2019), - [anon_sym_DASH] = ACTIONS(2019), - [anon_sym_STAR] = ACTIONS(1229), - [anon_sym_CARET] = ACTIONS(2021), - [anon_sym_AMP] = ACTIONS(2021), + [anon_sym_PLUS] = ACTIONS(2013), + [anon_sym_DASH] = ACTIONS(2013), + [anon_sym_STAR] = ACTIONS(1227), + [anon_sym_CARET] = ACTIONS(2015), + [anon_sym_AMP] = ACTIONS(2015), [anon_sym_this] = ACTIONS(83), - [anon_sym_DOT] = ACTIONS(2819), + [anon_sym_DOT] = ACTIONS(2751), [anon_sym_scoped] = ACTIONS(85), [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1067), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1233), + [anon_sym_throw] = ACTIONS(1231), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1235), - [anon_sym_DOT_DOT] = ACTIONS(1237), + [anon_sym_await] = ACTIONS(1233), + [anon_sym_DOT_DOT] = ACTIONS(1235), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -154318,7 +154204,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(1089), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -154335,85 +154221,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [667] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2474), - [sym__name] = STATE(5634), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2204), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(5378), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3664), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3080), - [sym_postfix_unary_expression] = STATE(3111), - [sym_prefix_unary_expression] = STATE(3111), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6161), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3080), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3111), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3080), - [sym_member_access_expression] = STATE(2484), - [sym_member_binding_expression] = STATE(3079), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3111), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7773), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(3080), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3080), - [sym_typeof_expression] = STATE(3080), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2484), - [sym_literal] = STATE(3080), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2669), + [sym__name] = STATE(5528), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2196), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(5502), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3660), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3102), + [sym_postfix_unary_expression] = STATE(3079), + [sym_prefix_unary_expression] = STATE(3079), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6163), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3102), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3079), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3102), + [sym_member_access_expression] = STATE(2472), + [sym_member_binding_expression] = STATE(3436), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3079), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7633), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(3102), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3102), + [sym_typeof_expression] = STATE(3102), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2472), + [sym_literal] = STATE(3102), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(667), [sym_preproc_endregion] = STATE(667), [sym_preproc_line] = STATE(667), @@ -154423,48 +154309,48 @@ 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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1481), - [anon_sym_LPAREN] = ACTIONS(2015), - [anon_sym_ref] = ACTIONS(2017), - [anon_sym_LBRACE] = ACTIONS(1487), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1305), + [anon_sym_LPAREN] = ACTIONS(2009), + [anon_sym_ref] = ACTIONS(2011), + [anon_sym_LBRACE] = ACTIONS(1481), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1101), + [anon_sym_new] = ACTIONS(1095), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1067), - [anon_sym_BANG] = ACTIONS(2021), - [anon_sym_TILDE] = ACTIONS(2021), - [anon_sym_PLUS_PLUS] = ACTIONS(2021), - [anon_sym_DASH_DASH] = ACTIONS(2021), + [anon_sym_checked] = ACTIONS(1065), + [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(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(2019), - [anon_sym_DASH] = ACTIONS(2019), - [anon_sym_STAR] = ACTIONS(1229), - [anon_sym_CARET] = ACTIONS(2021), - [anon_sym_AMP] = ACTIONS(2021), + [anon_sym_PLUS] = ACTIONS(2013), + [anon_sym_DASH] = ACTIONS(2013), + [anon_sym_STAR] = ACTIONS(1227), + [anon_sym_CARET] = ACTIONS(2015), + [anon_sym_AMP] = ACTIONS(2015), [anon_sym_this] = ACTIONS(83), - [anon_sym_DOT] = ACTIONS(2745), + [anon_sym_DOT] = ACTIONS(2795), [anon_sym_scoped] = ACTIONS(85), [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1067), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1233), + [anon_sym_throw] = ACTIONS(1231), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1235), - [anon_sym_DOT_DOT] = ACTIONS(1237), + [anon_sym_await] = ACTIONS(1233), + [anon_sym_DOT_DOT] = ACTIONS(1235), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -154489,7 +154375,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(1089), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -154506,84 +154392,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [668] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(5673), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2260), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(2291), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(4871), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3520), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3080), - [sym_postfix_unary_expression] = STATE(3111), - [sym_prefix_unary_expression] = STATE(3111), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6154), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3080), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3111), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3080), - [sym_member_access_expression] = STATE(2484), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3111), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7530), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(3080), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3080), - [sym_typeof_expression] = STATE(3080), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2484), - [sym_literal] = STATE(3080), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_block] = STATE(2984), + [sym_bracketed_argument_list] = STATE(2416), + [sym__name] = STATE(5885), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2404), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(4137), + [sym_non_lvalue_expression] = STATE(3040), + [sym_lvalue_expression] = STATE(3115), + [sym__expression_statement_expression] = STATE(3035), + [sym_assignment_expression] = STATE(3043), + [sym_binary_expression] = STATE(3035), + [sym_postfix_unary_expression] = STATE(3043), + [sym_prefix_unary_expression] = STATE(3043), + [sym__pointer_indirection_expression] = STATE(2415), + [sym_query_expression] = STATE(3035), + [sym_from_clause] = STATE(6162), + [sym_conditional_expression] = STATE(3035), + [sym_conditional_access_expression] = STATE(3035), + [sym_as_expression] = STATE(3035), + [sym_is_expression] = STATE(3035), + [sym_is_pattern_expression] = STATE(3035), + [sym_cast_expression] = STATE(3035), + [sym_checked_expression] = STATE(3035), + [sym_invocation_expression] = STATE(3043), + [sym_switch_expression] = STATE(3035), + [sym_await_expression] = STATE(3043), + [sym_throw_expression] = STATE(3035), + [sym_element_access_expression] = STATE(2415), + [sym_interpolated_string_expression] = STATE(3035), + [sym_member_access_expression] = STATE(2415), + [sym_object_creation_expression] = STATE(3043), + [sym_parenthesized_expression] = STATE(3043), + [sym__parenthesized_lvalue_expression] = STATE(2415), + [sym_lambda_expression] = STATE(3035), + [sym__lambda_expression_init] = STATE(7416), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3035), + [sym_anonymous_method_expression] = STATE(3035), + [sym_anonymous_object_creation_expression] = STATE(3035), + [sym_implicit_array_creation_expression] = STATE(3035), + [sym_implicit_object_creation_expression] = STATE(3035), + [sym_implicit_stackalloc_expression] = STATE(3035), + [sym_initializer_expression] = STATE(3035), + [sym_default_expression] = STATE(3035), + [sym_with_expression] = STATE(3035), + [sym_sizeof_expression] = STATE(3035), + [sym_typeof_expression] = STATE(3035), + [sym_makeref_expression] = STATE(3035), + [sym_ref_expression] = STATE(3035), + [sym_reftype_expression] = STATE(3035), + [sym_refvalue_expression] = STATE(3035), + [sym_stackalloc_expression] = STATE(3035), + [sym_range_expression] = STATE(3035), + [sym_tuple_expression] = STATE(2415), + [sym_literal] = STATE(3035), + [sym_character_literal] = STATE(3037), + [sym_string_literal] = STATE(3037), + [sym_raw_string_literal] = STATE(3037), + [sym_boolean_literal] = STATE(3037), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3035), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(668), [sym_preproc_endregion] = STATE(668), [sym_preproc_line] = STATE(668), @@ -154593,48 +154480,47 @@ 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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3455), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1481), - [anon_sym_LPAREN] = ACTIONS(43), - [anon_sym_ref] = ACTIONS(2595), - [anon_sym_LBRACE] = ACTIONS(1487), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1239), + [anon_sym_LPAREN] = ACTIONS(2261), + [anon_sym_ref] = ACTIONS(2263), + [anon_sym_LBRACE] = ACTIONS(2839), + [anon_sym_delegate] = ACTIONS(1247), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1061), - [anon_sym_readonly] = ACTIONS(2841), + [anon_sym_new] = ACTIONS(1935), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = 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(1585), - [anon_sym_DASH] = ACTIONS(1585), - [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(1587), - [anon_sym_AMP] = ACTIONS(1587), - [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(2309), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(2631), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1067), + [anon_sym_checked] = ACTIONS(1251), + [anon_sym_BANG] = ACTIONS(2267), + [anon_sym_TILDE] = ACTIONS(2267), + [anon_sym_PLUS_PLUS] = ACTIONS(2267), + [anon_sym_DASH_DASH] = ACTIONS(2267), + [anon_sym_true] = ACTIONS(1257), + [anon_sym_false] = ACTIONS(1257), + [anon_sym_PLUS] = ACTIONS(2265), + [anon_sym_DASH] = ACTIONS(2265), + [anon_sym_STAR] = ACTIONS(1941), + [anon_sym_CARET] = ACTIONS(2267), + [anon_sym_AMP] = ACTIONS(2267), + [anon_sym_this] = ACTIONS(1261), + [anon_sym_scoped] = ACTIONS(85), + [anon_sym_base] = ACTIONS(1263), + [anon_sym_var] = ACTIONS(89), + [sym_predefined_type] = ACTIONS(1265), + [anon_sym_unchecked] = ACTIONS(1251), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1589), + [anon_sym_default] = ACTIONS(1267), + [anon_sym_throw] = ACTIONS(2269), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1591), - [anon_sym_DOT_DOT] = ACTIONS(123), + [anon_sym_await] = ACTIONS(2271), + [anon_sym_DOT_DOT] = ACTIONS(2273), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -154647,19 +154533,19 @@ static const uint16_t ts_parse_table[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(1089), + [anon_sym_stackalloc] = ACTIONS(1275), + [anon_sym_sizeof] = ACTIONS(1277), + [anon_sym_typeof] = ACTIONS(1279), + [anon_sym___makeref] = ACTIONS(1281), + [anon_sym___reftype] = ACTIONS(1283), + [anon_sym___refvalue] = ACTIONS(1285), + [sym_null_literal] = ACTIONS(1287), + [anon_sym_SQUOTE] = ACTIONS(1289), + [sym_integer_literal] = ACTIONS(1287), + [sym_real_literal] = ACTIONS(1291), + [anon_sym_DQUOTE] = ACTIONS(1293), + [sym_verbatim_string_literal] = ACTIONS(1291), + [aux_sym_preproc_if_token1] = ACTIONS(1295), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -154670,91 +154556,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(151), - [sym_interpolation_verbatim_start] = ACTIONS(153), - [sym_interpolation_raw_start] = ACTIONS(155), - [sym_raw_string_start] = ACTIONS(157), + [sym_interpolation_regular_start] = ACTIONS(1297), + [sym_interpolation_verbatim_start] = ACTIONS(1299), + [sym_interpolation_raw_start] = ACTIONS(1301), + [sym_raw_string_start] = ACTIONS(1303), }, [669] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_block] = STATE(3316), - [sym_bracketed_argument_list] = STATE(2610), - [sym__name] = STATE(5896), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2384), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(4662), - [sym_non_lvalue_expression] = STATE(3277), - [sym_lvalue_expression] = STATE(3392), - [sym__expression_statement_expression] = STATE(3228), - [sym_assignment_expression] = STATE(3289), - [sym_binary_expression] = STATE(3228), - [sym_postfix_unary_expression] = STATE(3289), - [sym_prefix_unary_expression] = STATE(3289), - [sym__pointer_indirection_expression] = STATE(2609), - [sym_query_expression] = STATE(3228), - [sym_from_clause] = STATE(6173), - [sym_conditional_expression] = STATE(3228), - [sym_conditional_access_expression] = STATE(3228), - [sym_as_expression] = STATE(3228), - [sym_is_expression] = STATE(3228), - [sym_is_pattern_expression] = STATE(3228), - [sym_cast_expression] = STATE(3228), - [sym_checked_expression] = STATE(3228), - [sym_invocation_expression] = STATE(3289), - [sym_switch_expression] = STATE(3228), - [sym_await_expression] = STATE(3289), - [sym_throw_expression] = STATE(3228), - [sym_element_access_expression] = STATE(2609), - [sym_interpolated_string_expression] = STATE(3228), - [sym_member_access_expression] = STATE(2609), - [sym_object_creation_expression] = STATE(3289), - [sym_parenthesized_expression] = STATE(3289), - [sym__parenthesized_lvalue_expression] = STATE(2609), - [sym_lambda_expression] = STATE(3228), - [sym__lambda_expression_init] = STATE(7334), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3228), - [sym_anonymous_method_expression] = STATE(3228), - [sym_anonymous_object_creation_expression] = STATE(3228), - [sym_implicit_array_creation_expression] = STATE(3228), - [sym_implicit_object_creation_expression] = STATE(3228), - [sym_implicit_stackalloc_expression] = STATE(3228), - [sym_initializer_expression] = STATE(3228), - [sym_default_expression] = STATE(3228), - [sym_with_expression] = STATE(3228), - [sym_sizeof_expression] = STATE(3228), - [sym_typeof_expression] = STATE(3228), - [sym_makeref_expression] = STATE(3228), - [sym_ref_expression] = STATE(3228), - [sym_reftype_expression] = STATE(3228), - [sym_refvalue_expression] = STATE(3228), - [sym_stackalloc_expression] = STATE(3228), - [sym_range_expression] = STATE(3228), - [sym_tuple_expression] = STATE(2609), - [sym_literal] = STATE(3228), - [sym_character_literal] = STATE(3278), - [sym_string_literal] = STATE(3278), - [sym_raw_string_literal] = STATE(3278), - [sym_boolean_literal] = STATE(3278), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3228), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(5873), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2238), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(2279), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(4679), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3468), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3102), + [sym_postfix_unary_expression] = STATE(3079), + [sym_prefix_unary_expression] = STATE(3079), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6134), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3102), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3079), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3102), + [sym_member_access_expression] = STATE(2472), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3079), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7309), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(3102), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3102), + [sym_typeof_expression] = STATE(3102), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2472), + [sym_literal] = STATE(3102), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(669), [sym_preproc_endregion] = STATE(669), [sym_preproc_line] = STATE(669), @@ -154764,47 +154649,48 @@ 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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3396), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1153), - [anon_sym_LPAREN] = ACTIONS(1859), - [anon_sym_ref] = ACTIONS(1861), - [anon_sym_LBRACE] = ACTIONS(2843), - [anon_sym_delegate] = ACTIONS(1161), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1479), + [anon_sym_LPAREN] = ACTIONS(659), + [anon_sym_ref] = ACTIONS(663), + [anon_sym_LBRACE] = ACTIONS(1481), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1863), + [anon_sym_new] = ACTIONS(1059), + [anon_sym_readonly] = ACTIONS(2767), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1167), - [anon_sym_BANG] = ACTIONS(1867), - [anon_sym_TILDE] = ACTIONS(1867), - [anon_sym_PLUS_PLUS] = ACTIONS(1867), - [anon_sym_DASH_DASH] = ACTIONS(1867), - [anon_sym_true] = ACTIONS(1173), - [anon_sym_false] = ACTIONS(1173), - [anon_sym_PLUS] = ACTIONS(1865), - [anon_sym_DASH] = ACTIONS(1865), - [anon_sym_STAR] = ACTIONS(1869), - [anon_sym_CARET] = ACTIONS(1867), - [anon_sym_AMP] = ACTIONS(1867), - [anon_sym_this] = ACTIONS(1177), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(1485), + [anon_sym_TILDE] = ACTIONS(1485), + [anon_sym_PLUS_PLUS] = ACTIONS(1485), + [anon_sym_DASH_DASH] = ACTIONS(1485), + [anon_sym_true] = ACTIONS(77), + [anon_sym_false] = ACTIONS(77), + [anon_sym_PLUS] = ACTIONS(1483), + [anon_sym_DASH] = ACTIONS(1483), + [anon_sym_STAR] = ACTIONS(683), + [anon_sym_CARET] = ACTIONS(1485), + [anon_sym_AMP] = ACTIONS(1485), + [anon_sym_this] = ACTIONS(83), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1179), + [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1181), - [anon_sym_unchecked] = ACTIONS(1167), + [sym_predefined_type] = ACTIONS(91), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1183), - [anon_sym_throw] = ACTIONS(1871), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(1077), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1873), - [anon_sym_DOT_DOT] = ACTIONS(1875), + [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), @@ -154817,19 +154703,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1191), - [anon_sym_sizeof] = ACTIONS(1193), - [anon_sym_typeof] = ACTIONS(1195), - [anon_sym___makeref] = ACTIONS(1197), - [anon_sym___reftype] = ACTIONS(1199), - [anon_sym___refvalue] = ACTIONS(1201), - [sym_null_literal] = ACTIONS(1203), - [anon_sym_SQUOTE] = ACTIONS(1205), - [sym_integer_literal] = ACTIONS(1203), - [sym_real_literal] = ACTIONS(1207), - [anon_sym_DQUOTE] = ACTIONS(1209), - [sym_verbatim_string_literal] = ACTIONS(1207), - [aux_sym_preproc_if_token1] = ACTIONS(1211), + [anon_sym_stackalloc] = ACTIONS(127), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_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), @@ -154840,90 +154726,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1213), - [sym_interpolation_verbatim_start] = ACTIONS(1215), - [sym_interpolation_raw_start] = ACTIONS(1217), - [sym_raw_string_start] = ACTIONS(1219), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [sym_interpolation_raw_start] = ACTIONS(155), + [sym_raw_string_start] = ACTIONS(157), }, [670] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2762), - [sym__name] = STATE(5893), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2316), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(2291), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(4527), - [sym_non_lvalue_expression] = STATE(3438), - [sym_lvalue_expression] = STATE(3391), - [sym__expression_statement_expression] = STATE(3362), - [sym_assignment_expression] = STATE(3449), - [sym_binary_expression] = STATE(3362), - [sym_postfix_unary_expression] = STATE(3449), - [sym_prefix_unary_expression] = STATE(3449), - [sym__pointer_indirection_expression] = STATE(2747), - [sym_query_expression] = STATE(3362), - [sym_from_clause] = STATE(6155), - [sym_conditional_expression] = STATE(3362), - [sym_conditional_access_expression] = STATE(3362), - [sym_as_expression] = STATE(3362), - [sym_is_expression] = STATE(3362), - [sym_is_pattern_expression] = STATE(3362), - [sym_cast_expression] = STATE(3362), - [sym_checked_expression] = STATE(3362), - [sym_invocation_expression] = STATE(3449), - [sym_switch_expression] = STATE(3362), - [sym_await_expression] = STATE(3449), - [sym_throw_expression] = STATE(3362), - [sym_element_access_expression] = STATE(2747), - [sym_interpolated_string_expression] = STATE(3362), - [sym_member_access_expression] = STATE(2747), - [sym_object_creation_expression] = STATE(3449), - [sym_parenthesized_expression] = STATE(3449), - [sym__parenthesized_lvalue_expression] = STATE(2747), - [sym_lambda_expression] = STATE(3362), - [sym__lambda_expression_init] = STATE(7726), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3362), - [sym_anonymous_method_expression] = STATE(3362), - [sym_anonymous_object_creation_expression] = STATE(3362), - [sym_implicit_array_creation_expression] = STATE(3362), - [sym_implicit_object_creation_expression] = STATE(3362), - [sym_implicit_stackalloc_expression] = STATE(3362), - [sym_initializer_expression] = STATE(3362), - [sym_default_expression] = STATE(3362), - [sym_with_expression] = STATE(3362), - [sym_sizeof_expression] = STATE(3362), - [sym_typeof_expression] = STATE(3362), - [sym_makeref_expression] = STATE(3362), - [sym_ref_expression] = STATE(3362), - [sym_reftype_expression] = STATE(3362), - [sym_refvalue_expression] = STATE(3362), - [sym_stackalloc_expression] = STATE(3362), - [sym_range_expression] = STATE(3362), - [sym_tuple_expression] = STATE(2747), - [sym_literal] = STATE(3362), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3362), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2816), + [sym__name] = STATE(5896), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2362), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(2279), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(4949), + [sym_non_lvalue_expression] = STATE(3495), + [sym_lvalue_expression] = STATE(3513), + [sym__expression_statement_expression] = STATE(3462), + [sym_assignment_expression] = STATE(3497), + [sym_binary_expression] = STATE(3462), + [sym_postfix_unary_expression] = STATE(3497), + [sym_prefix_unary_expression] = STATE(3497), + [sym__pointer_indirection_expression] = STATE(2815), + [sym_query_expression] = STATE(3462), + [sym_from_clause] = STATE(6132), + [sym_conditional_expression] = STATE(3462), + [sym_conditional_access_expression] = STATE(3462), + [sym_as_expression] = STATE(3462), + [sym_is_expression] = STATE(3462), + [sym_is_pattern_expression] = STATE(3462), + [sym_cast_expression] = STATE(3462), + [sym_checked_expression] = STATE(3462), + [sym_invocation_expression] = STATE(3497), + [sym_switch_expression] = STATE(3462), + [sym_await_expression] = STATE(3497), + [sym_throw_expression] = STATE(3462), + [sym_element_access_expression] = STATE(2815), + [sym_interpolated_string_expression] = STATE(3462), + [sym_member_access_expression] = STATE(2815), + [sym_object_creation_expression] = STATE(3497), + [sym_parenthesized_expression] = STATE(3497), + [sym__parenthesized_lvalue_expression] = STATE(2815), + [sym_lambda_expression] = STATE(3462), + [sym__lambda_expression_init] = STATE(7527), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3462), + [sym_anonymous_method_expression] = STATE(3462), + [sym_anonymous_object_creation_expression] = STATE(3462), + [sym_implicit_array_creation_expression] = STATE(3462), + [sym_implicit_object_creation_expression] = STATE(3462), + [sym_implicit_stackalloc_expression] = STATE(3462), + [sym_initializer_expression] = STATE(3462), + [sym_default_expression] = STATE(3462), + [sym_with_expression] = STATE(3462), + [sym_sizeof_expression] = STATE(3462), + [sym_typeof_expression] = STATE(3462), + [sym_makeref_expression] = STATE(3462), + [sym_ref_expression] = STATE(3462), + [sym_reftype_expression] = STATE(3462), + [sym_refvalue_expression] = STATE(3462), + [sym_stackalloc_expression] = STATE(3462), + [sym_range_expression] = STATE(3462), + [sym_tuple_expression] = STATE(2815), + [sym_literal] = STATE(3462), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3462), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(670), [sym_preproc_endregion] = STATE(670), [sym_preproc_line] = STATE(670), @@ -154933,48 +154819,48 @@ 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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3385), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3367), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1307), - [anon_sym_LPAREN] = ACTIONS(1711), - [anon_sym_ref] = ACTIONS(1713), - [anon_sym_LBRACE] = ACTIONS(1313), - [anon_sym_delegate] = ACTIONS(1315), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1305), + [anon_sym_LPAREN] = ACTIONS(1875), + [anon_sym_ref] = ACTIONS(1877), + [anon_sym_LBRACE] = ACTIONS(1311), + [anon_sym_delegate] = ACTIONS(1313), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1613), - [anon_sym_readonly] = ACTIONS(2749), + [anon_sym_new] = ACTIONS(1879), + [anon_sym_readonly] = ACTIONS(2767), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1319), - [anon_sym_BANG] = ACTIONS(1717), - [anon_sym_TILDE] = ACTIONS(1717), - [anon_sym_PLUS_PLUS] = ACTIONS(1717), - [anon_sym_DASH_DASH] = ACTIONS(1717), + [anon_sym_checked] = ACTIONS(1317), + [anon_sym_BANG] = ACTIONS(1883), + [anon_sym_TILDE] = ACTIONS(1883), + [anon_sym_PLUS_PLUS] = ACTIONS(1883), + [anon_sym_DASH_DASH] = ACTIONS(1883), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [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(1323), + [anon_sym_PLUS] = ACTIONS(1881), + [anon_sym_DASH] = ACTIONS(1881), + [anon_sym_STAR] = ACTIONS(1885), + [anon_sym_CARET] = ACTIONS(1883), + [anon_sym_AMP] = ACTIONS(1883), + [anon_sym_this] = ACTIONS(1321), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1325), + [anon_sym_base] = ACTIONS(1323), [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1319), + [anon_sym_unchecked] = ACTIONS(1317), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1721), + [anon_sym_throw] = ACTIONS(1887), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1723), - [anon_sym_DOT_DOT] = ACTIONS(1725), + [anon_sym_await] = ACTIONS(1889), + [anon_sym_DOT_DOT] = ACTIONS(1891), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -154987,19 +154873,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1333), + [anon_sym_stackalloc] = ACTIONS(1331), [anon_sym_sizeof] = ACTIONS(129), [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(1335), - [anon_sym___reftype] = ACTIONS(1337), - [anon_sym___refvalue] = ACTIONS(1339), + [anon_sym___makeref] = ACTIONS(1333), + [anon_sym___reftype] = ACTIONS(1335), + [anon_sym___refvalue] = ACTIONS(1337), [sym_null_literal] = ACTIONS(139), [anon_sym_SQUOTE] = ACTIONS(141), [sym_integer_literal] = ACTIONS(139), [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1341), + [aux_sym_preproc_if_token1] = ACTIONS(1339), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -155016,84 +154902,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [671] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2610), - [sym__name] = STATE(5896), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2384), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(2291), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(4664), - [sym_non_lvalue_expression] = STATE(3277), - [sym_lvalue_expression] = STATE(3392), - [sym__expression_statement_expression] = STATE(3228), - [sym_assignment_expression] = STATE(3289), - [sym_binary_expression] = STATE(3228), - [sym_postfix_unary_expression] = STATE(3289), - [sym_prefix_unary_expression] = STATE(3289), - [sym__pointer_indirection_expression] = STATE(2609), - [sym_query_expression] = STATE(3228), - [sym_from_clause] = STATE(6173), - [sym_conditional_expression] = STATE(3228), - [sym_conditional_access_expression] = STATE(3228), - [sym_as_expression] = STATE(3228), - [sym_is_expression] = STATE(3228), - [sym_is_pattern_expression] = STATE(3228), - [sym_cast_expression] = STATE(3228), - [sym_checked_expression] = STATE(3228), - [sym_invocation_expression] = STATE(3289), - [sym_switch_expression] = STATE(3228), - [sym_await_expression] = STATE(3289), - [sym_throw_expression] = STATE(3228), - [sym_element_access_expression] = STATE(2609), - [sym_interpolated_string_expression] = STATE(3228), - [sym_member_access_expression] = STATE(2609), - [sym_object_creation_expression] = STATE(3289), - [sym_parenthesized_expression] = STATE(3289), - [sym__parenthesized_lvalue_expression] = STATE(2609), - [sym_lambda_expression] = STATE(3228), - [sym__lambda_expression_init] = STATE(7334), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3228), - [sym_anonymous_method_expression] = STATE(3228), - [sym_anonymous_object_creation_expression] = STATE(3228), - [sym_implicit_array_creation_expression] = STATE(3228), - [sym_implicit_object_creation_expression] = STATE(3228), - [sym_implicit_stackalloc_expression] = STATE(3228), - [sym_initializer_expression] = STATE(3228), - [sym_default_expression] = STATE(3228), - [sym_with_expression] = STATE(3228), - [sym_sizeof_expression] = STATE(3228), - [sym_typeof_expression] = STATE(3228), - [sym_makeref_expression] = STATE(3228), - [sym_ref_expression] = STATE(3228), - [sym_reftype_expression] = STATE(3228), - [sym_refvalue_expression] = STATE(3228), - [sym_stackalloc_expression] = STATE(3228), - [sym_range_expression] = STATE(3228), - [sym_tuple_expression] = STATE(2609), - [sym_literal] = STATE(3228), - [sym_character_literal] = STATE(3278), - [sym_string_literal] = STATE(3278), - [sym_raw_string_literal] = STATE(3278), - [sym_boolean_literal] = STATE(3278), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3228), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(5663), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2256), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(2279), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(5482), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3660), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3102), + [sym_postfix_unary_expression] = STATE(3079), + [sym_prefix_unary_expression] = STATE(3079), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6163), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3102), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3079), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3102), + [sym_member_access_expression] = STATE(2472), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3079), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7633), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(3102), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3102), + [sym_typeof_expression] = STATE(3102), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2472), + [sym_literal] = STATE(3102), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(671), [sym_preproc_endregion] = STATE(671), [sym_preproc_line] = STATE(671), @@ -155103,48 +154989,48 @@ 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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3396), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1153), - [anon_sym_LPAREN] = ACTIONS(1859), - [anon_sym_ref] = ACTIONS(1861), - [anon_sym_LBRACE] = ACTIONS(1159), - [anon_sym_delegate] = ACTIONS(1161), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1479), + [anon_sym_LPAREN] = ACTIONS(2009), + [anon_sym_ref] = ACTIONS(2299), + [anon_sym_LBRACE] = ACTIONS(1481), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1863), - [anon_sym_readonly] = ACTIONS(2749), + [anon_sym_new] = ACTIONS(1095), + [anon_sym_readonly] = ACTIONS(2841), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1167), - [anon_sym_BANG] = ACTIONS(1867), - [anon_sym_TILDE] = ACTIONS(1867), - [anon_sym_PLUS_PLUS] = ACTIONS(1867), - [anon_sym_DASH_DASH] = ACTIONS(1867), - [anon_sym_true] = ACTIONS(1173), - [anon_sym_false] = ACTIONS(1173), - [anon_sym_PLUS] = ACTIONS(1865), - [anon_sym_DASH] = ACTIONS(1865), - [anon_sym_STAR] = ACTIONS(1869), - [anon_sym_CARET] = ACTIONS(1867), - [anon_sym_AMP] = ACTIONS(1867), - [anon_sym_this] = ACTIONS(1177), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1179), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1181), - [anon_sym_unchecked] = ACTIONS(1167), + [anon_sym_checked] = ACTIONS(1065), + [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(77), + [anon_sym_false] = ACTIONS(77), + [anon_sym_PLUS] = ACTIONS(2013), + [anon_sym_DASH] = ACTIONS(2013), + [anon_sym_STAR] = ACTIONS(1227), + [anon_sym_CARET] = ACTIONS(2015), + [anon_sym_AMP] = ACTIONS(2015), + [anon_sym_this] = ACTIONS(83), + [anon_sym_scoped] = ACTIONS(2301), + [anon_sym_base] = ACTIONS(87), + [anon_sym_var] = ACTIONS(2629), + [sym_predefined_type] = ACTIONS(91), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1183), - [anon_sym_throw] = ACTIONS(1871), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(1231), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1873), - [anon_sym_DOT_DOT] = ACTIONS(1875), + [anon_sym_await] = ACTIONS(1233), + [anon_sym_DOT_DOT] = ACTIONS(1235), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -155157,19 +155043,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1191), - [anon_sym_sizeof] = ACTIONS(1193), - [anon_sym_typeof] = ACTIONS(1195), - [anon_sym___makeref] = ACTIONS(1197), - [anon_sym___reftype] = ACTIONS(1199), - [anon_sym___refvalue] = ACTIONS(1201), - [sym_null_literal] = ACTIONS(1203), - [anon_sym_SQUOTE] = ACTIONS(1205), - [sym_integer_literal] = ACTIONS(1203), - [sym_real_literal] = ACTIONS(1207), - [anon_sym_DQUOTE] = ACTIONS(1209), - [sym_verbatim_string_literal] = ACTIONS(1207), - [aux_sym_preproc_if_token1] = ACTIONS(1211), + [anon_sym_stackalloc] = ACTIONS(127), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_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), @@ -155180,91 +155066,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(1213), - [sym_interpolation_verbatim_start] = ACTIONS(1215), - [sym_interpolation_raw_start] = ACTIONS(1217), - [sym_raw_string_start] = ACTIONS(1219), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [sym_interpolation_raw_start] = ACTIONS(155), + [sym_raw_string_start] = ACTIONS(157), }, [672] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_block] = STATE(3014), - [sym_bracketed_argument_list] = STATE(2420), - [sym__name] = STATE(5911), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2197), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(4431), - [sym_non_lvalue_expression] = STATE(3066), - [sym_lvalue_expression] = STATE(3327), - [sym__expression_statement_expression] = STATE(3006), - [sym_assignment_expression] = STATE(3020), - [sym_binary_expression] = STATE(3006), - [sym_postfix_unary_expression] = STATE(3020), - [sym_prefix_unary_expression] = STATE(3020), - [sym__pointer_indirection_expression] = STATE(2423), - [sym_query_expression] = STATE(3006), - [sym_from_clause] = STATE(6159), - [sym_conditional_expression] = STATE(3006), - [sym_conditional_access_expression] = STATE(3006), - [sym_as_expression] = STATE(3006), - [sym_is_expression] = STATE(3006), - [sym_is_pattern_expression] = STATE(3006), - [sym_cast_expression] = STATE(3006), - [sym_checked_expression] = STATE(3006), - [sym_invocation_expression] = STATE(3020), - [sym_switch_expression] = STATE(3006), - [sym_await_expression] = STATE(3020), - [sym_throw_expression] = STATE(3006), - [sym_element_access_expression] = STATE(2423), - [sym_interpolated_string_expression] = STATE(3006), - [sym_member_access_expression] = STATE(2423), - [sym_object_creation_expression] = STATE(3020), - [sym_parenthesized_expression] = STATE(3020), - [sym__parenthesized_lvalue_expression] = STATE(2423), - [sym_lambda_expression] = STATE(3006), - [sym__lambda_expression_init] = STATE(7674), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3006), - [sym_anonymous_method_expression] = STATE(3006), - [sym_anonymous_object_creation_expression] = STATE(3006), - [sym_implicit_array_creation_expression] = STATE(3006), - [sym_implicit_object_creation_expression] = STATE(3006), - [sym_implicit_stackalloc_expression] = STATE(3006), - [sym_initializer_expression] = STATE(3006), - [sym_default_expression] = STATE(3006), - [sym_with_expression] = STATE(3006), - [sym_sizeof_expression] = STATE(3006), - [sym_typeof_expression] = STATE(3006), - [sym_makeref_expression] = STATE(3006), - [sym_ref_expression] = STATE(3006), - [sym_reftype_expression] = STATE(3006), - [sym_refvalue_expression] = STATE(3006), - [sym_stackalloc_expression] = STATE(3006), - [sym_range_expression] = STATE(3006), - [sym_tuple_expression] = STATE(2423), - [sym_literal] = STATE(3006), - [sym_character_literal] = STATE(3011), - [sym_string_literal] = STATE(3011), - [sym_raw_string_literal] = STATE(3011), - [sym_boolean_literal] = STATE(3011), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3006), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_block] = STATE(3279), + [sym_bracketed_argument_list] = STATE(2603), + [sym__name] = STATE(5869), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2367), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(4675), + [sym_non_lvalue_expression] = STATE(3220), + [sym_lvalue_expression] = STATE(3377), + [sym__expression_statement_expression] = STATE(3236), + [sym_assignment_expression] = STATE(3221), + [sym_binary_expression] = STATE(3236), + [sym_postfix_unary_expression] = STATE(3221), + [sym_prefix_unary_expression] = STATE(3221), + [sym__pointer_indirection_expression] = STATE(2602), + [sym_query_expression] = STATE(3236), + [sym_from_clause] = STATE(6128), + [sym_conditional_expression] = STATE(3236), + [sym_conditional_access_expression] = STATE(3236), + [sym_as_expression] = STATE(3236), + [sym_is_expression] = STATE(3236), + [sym_is_pattern_expression] = STATE(3236), + [sym_cast_expression] = STATE(3236), + [sym_checked_expression] = STATE(3236), + [sym_invocation_expression] = STATE(3221), + [sym_switch_expression] = STATE(3236), + [sym_await_expression] = STATE(3221), + [sym_throw_expression] = STATE(3236), + [sym_element_access_expression] = STATE(2602), + [sym_interpolated_string_expression] = STATE(3236), + [sym_member_access_expression] = STATE(2602), + [sym_object_creation_expression] = STATE(3221), + [sym_parenthesized_expression] = STATE(3221), + [sym__parenthesized_lvalue_expression] = STATE(2602), + [sym_lambda_expression] = STATE(3236), + [sym__lambda_expression_init] = STATE(7632), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3236), + [sym_anonymous_method_expression] = STATE(3236), + [sym_anonymous_object_creation_expression] = STATE(3236), + [sym_implicit_array_creation_expression] = STATE(3236), + [sym_implicit_object_creation_expression] = STATE(3236), + [sym_implicit_stackalloc_expression] = STATE(3236), + [sym_initializer_expression] = STATE(3236), + [sym_default_expression] = STATE(3236), + [sym_with_expression] = STATE(3236), + [sym_sizeof_expression] = STATE(3236), + [sym_typeof_expression] = STATE(3236), + [sym_makeref_expression] = STATE(3236), + [sym_ref_expression] = STATE(3236), + [sym_reftype_expression] = STATE(3236), + [sym_refvalue_expression] = STATE(3236), + [sym_stackalloc_expression] = STATE(3236), + [sym_range_expression] = STATE(3236), + [sym_tuple_expression] = STATE(2602), + [sym_literal] = STATE(3236), + [sym_character_literal] = STATE(3272), + [sym_string_literal] = STATE(3272), + [sym_raw_string_literal] = STATE(3272), + [sym_boolean_literal] = STATE(3272), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3236), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(672), [sym_preproc_endregion] = STATE(672), [sym_preproc_line] = STATE(672), @@ -155274,47 +155160,47 @@ 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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3440), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3379), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1241), - [anon_sym_LPAREN] = ACTIONS(1509), - [anon_sym_ref] = ACTIONS(1511), - [anon_sym_LBRACE] = ACTIONS(2845), - [anon_sym_delegate] = ACTIONS(1249), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1149), + [anon_sym_LPAREN] = ACTIONS(1913), + [anon_sym_ref] = ACTIONS(1915), + [anon_sym_LBRACE] = ACTIONS(2843), + [anon_sym_delegate] = ACTIONS(1157), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1251), + [anon_sym_new] = ACTIONS(1917), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1253), - [anon_sym_BANG] = ACTIONS(1515), - [anon_sym_TILDE] = ACTIONS(1515), - [anon_sym_PLUS_PLUS] = ACTIONS(1515), - [anon_sym_DASH_DASH] = ACTIONS(1515), - [anon_sym_true] = ACTIONS(1259), - [anon_sym_false] = ACTIONS(1259), - [anon_sym_PLUS] = ACTIONS(1513), - [anon_sym_DASH] = ACTIONS(1513), - [anon_sym_STAR] = ACTIONS(1517), - [anon_sym_CARET] = ACTIONS(1515), - [anon_sym_AMP] = ACTIONS(1515), - [anon_sym_this] = ACTIONS(1263), + [anon_sym_checked] = ACTIONS(1163), + [anon_sym_BANG] = ACTIONS(1921), + [anon_sym_TILDE] = ACTIONS(1921), + [anon_sym_PLUS_PLUS] = ACTIONS(1921), + [anon_sym_DASH_DASH] = ACTIONS(1921), + [anon_sym_true] = ACTIONS(1169), + [anon_sym_false] = ACTIONS(1169), + [anon_sym_PLUS] = ACTIONS(1919), + [anon_sym_DASH] = ACTIONS(1919), + [anon_sym_STAR] = ACTIONS(1923), + [anon_sym_CARET] = ACTIONS(1921), + [anon_sym_AMP] = ACTIONS(1921), + [anon_sym_this] = ACTIONS(1173), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1265), + [anon_sym_base] = ACTIONS(1175), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1267), - [anon_sym_unchecked] = ACTIONS(1253), + [sym_predefined_type] = ACTIONS(1177), + [anon_sym_unchecked] = ACTIONS(1163), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1269), - [anon_sym_throw] = ACTIONS(1519), + [anon_sym_default] = ACTIONS(1179), + [anon_sym_throw] = ACTIONS(1925), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1521), - [anon_sym_DOT_DOT] = ACTIONS(1523), + [anon_sym_await] = ACTIONS(1927), + [anon_sym_DOT_DOT] = ACTIONS(1929), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -155327,19 +155213,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1277), - [anon_sym_sizeof] = ACTIONS(1279), - [anon_sym_typeof] = ACTIONS(1281), - [anon_sym___makeref] = ACTIONS(1283), - [anon_sym___reftype] = ACTIONS(1285), - [anon_sym___refvalue] = ACTIONS(1287), - [sym_null_literal] = ACTIONS(1289), - [anon_sym_SQUOTE] = ACTIONS(1291), - [sym_integer_literal] = ACTIONS(1289), - [sym_real_literal] = ACTIONS(1293), - [anon_sym_DQUOTE] = ACTIONS(1295), - [sym_verbatim_string_literal] = ACTIONS(1293), - [aux_sym_preproc_if_token1] = ACTIONS(1297), + [anon_sym_stackalloc] = ACTIONS(1187), + [anon_sym_sizeof] = ACTIONS(1189), + [anon_sym_typeof] = ACTIONS(1191), + [anon_sym___makeref] = ACTIONS(1193), + [anon_sym___reftype] = ACTIONS(1195), + [anon_sym___refvalue] = ACTIONS(1197), + [sym_null_literal] = ACTIONS(1199), + [anon_sym_SQUOTE] = ACTIONS(1201), + [sym_integer_literal] = ACTIONS(1199), + [sym_real_literal] = ACTIONS(1203), + [anon_sym_DQUOTE] = ACTIONS(1205), + [sym_verbatim_string_literal] = ACTIONS(1203), + [aux_sym_preproc_if_token1] = ACTIONS(1207), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -155350,90 +155236,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(1299), - [sym_interpolation_verbatim_start] = ACTIONS(1301), - [sym_interpolation_raw_start] = ACTIONS(1303), - [sym_raw_string_start] = ACTIONS(1305), + [sym_interpolation_regular_start] = ACTIONS(1209), + [sym_interpolation_verbatim_start] = ACTIONS(1211), + [sym_interpolation_raw_start] = ACTIONS(1213), + [sym_raw_string_start] = ACTIONS(1215), }, [673] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(5890), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2375), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(2291), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(5514), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3656), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3080), - [sym_postfix_unary_expression] = STATE(3111), - [sym_prefix_unary_expression] = STATE(3111), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6157), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3080), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3111), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3080), - [sym_member_access_expression] = STATE(2484), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3111), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7362), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(3080), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3080), - [sym_typeof_expression] = STATE(3080), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2484), - [sym_literal] = STATE(3080), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_block] = STATE(3454), + [sym_bracketed_argument_list] = STATE(2816), + [sym__name] = STATE(5873), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2196), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(4308), + [sym_non_lvalue_expression] = STATE(3495), + [sym_lvalue_expression] = STATE(3208), + [sym__expression_statement_expression] = STATE(3462), + [sym_assignment_expression] = STATE(3497), + [sym_binary_expression] = STATE(3462), + [sym_postfix_unary_expression] = STATE(3497), + [sym_prefix_unary_expression] = STATE(3497), + [sym__pointer_indirection_expression] = STATE(2815), + [sym_query_expression] = STATE(3462), + [sym_from_clause] = STATE(6140), + [sym_conditional_expression] = STATE(3462), + [sym_conditional_access_expression] = STATE(3462), + [sym_as_expression] = STATE(3462), + [sym_is_expression] = STATE(3462), + [sym_is_pattern_expression] = STATE(3462), + [sym_cast_expression] = STATE(3462), + [sym_checked_expression] = STATE(3462), + [sym_invocation_expression] = STATE(3497), + [sym_switch_expression] = STATE(3462), + [sym_await_expression] = STATE(3497), + [sym_throw_expression] = STATE(3462), + [sym_element_access_expression] = STATE(2815), + [sym_interpolated_string_expression] = STATE(3462), + [sym_member_access_expression] = STATE(2815), + [sym_object_creation_expression] = STATE(3497), + [sym_parenthesized_expression] = STATE(3497), + [sym__parenthesized_lvalue_expression] = STATE(2815), + [sym_lambda_expression] = STATE(3462), + [sym__lambda_expression_init] = STATE(7520), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3462), + [sym_anonymous_method_expression] = STATE(3462), + [sym_anonymous_object_creation_expression] = STATE(3462), + [sym_implicit_array_creation_expression] = STATE(3462), + [sym_implicit_object_creation_expression] = STATE(3462), + [sym_implicit_stackalloc_expression] = STATE(3462), + [sym_initializer_expression] = STATE(3462), + [sym_default_expression] = STATE(3462), + [sym_with_expression] = STATE(3462), + [sym_sizeof_expression] = STATE(3462), + [sym_typeof_expression] = STATE(3462), + [sym_makeref_expression] = STATE(3462), + [sym_ref_expression] = STATE(3462), + [sym_reftype_expression] = STATE(3462), + [sym_refvalue_expression] = STATE(3462), + [sym_stackalloc_expression] = STATE(3462), + [sym_range_expression] = STATE(3462), + [sym_tuple_expression] = STATE(2815), + [sym_literal] = STATE(3462), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3462), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(673), [sym_preproc_endregion] = STATE(673), [sym_preproc_line] = STATE(673), @@ -155443,48 +155330,47 @@ 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(3067), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), [aux_sym__lambda_expression_init_repeat1] = STATE(3367), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1481), - [anon_sym_LPAREN] = ACTIONS(2177), - [anon_sym_ref] = ACTIONS(2179), - [anon_sym_LBRACE] = ACTIONS(1487), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1305), + [anon_sym_LPAREN] = ACTIONS(1369), + [anon_sym_ref] = ACTIONS(1371), + [anon_sym_LBRACE] = ACTIONS(2845), + [anon_sym_delegate] = ACTIONS(1313), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(2181), - [anon_sym_readonly] = ACTIONS(2749), + [anon_sym_new] = ACTIONS(1315), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1067), - [anon_sym_BANG] = ACTIONS(2185), - [anon_sym_TILDE] = ACTIONS(2185), - [anon_sym_PLUS_PLUS] = ACTIONS(2185), - [anon_sym_DASH_DASH] = ACTIONS(2185), + [anon_sym_checked] = ACTIONS(1317), + [anon_sym_BANG] = ACTIONS(1375), + [anon_sym_TILDE] = ACTIONS(1375), + [anon_sym_PLUS_PLUS] = ACTIONS(1375), + [anon_sym_DASH_DASH] = ACTIONS(1375), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(2183), - [anon_sym_DASH] = ACTIONS(2183), - [anon_sym_STAR] = ACTIONS(2187), - [anon_sym_CARET] = ACTIONS(2185), - [anon_sym_AMP] = ACTIONS(2185), - [anon_sym_this] = ACTIONS(83), + [anon_sym_PLUS] = ACTIONS(1373), + [anon_sym_DASH] = ACTIONS(1373), + [anon_sym_STAR] = ACTIONS(1377), + [anon_sym_CARET] = ACTIONS(1375), + [anon_sym_AMP] = ACTIONS(1375), + [anon_sym_this] = ACTIONS(1321), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), + [anon_sym_base] = ACTIONS(1323), [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1067), + [anon_sym_unchecked] = ACTIONS(1317), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(2189), + [anon_sym_throw] = ACTIONS(1379), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2191), - [anon_sym_DOT_DOT] = ACTIONS(2193), + [anon_sym_await] = ACTIONS(1381), + [anon_sym_DOT_DOT] = ACTIONS(1383), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -155497,19 +155383,19 @@ static const uint16_t ts_parse_table[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(1331), [anon_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(1333), + [anon_sym___reftype] = ACTIONS(1335), + [anon_sym___refvalue] = ACTIONS(1337), [sym_null_literal] = ACTIONS(139), [anon_sym_SQUOTE] = ACTIONS(141), [sym_integer_literal] = ACTIONS(139), [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1089), + [aux_sym_preproc_if_token1] = ACTIONS(1339), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -155526,85 +155412,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [674] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_block] = STATE(3084), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(5160), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2204), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(4572), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3461), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3080), - [sym_postfix_unary_expression] = STATE(3111), - [sym_prefix_unary_expression] = STATE(3111), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6154), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3080), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3111), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3080), - [sym_member_access_expression] = STATE(2484), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3111), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7547), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(3080), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3080), - [sym_typeof_expression] = STATE(3080), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2484), - [sym_literal] = STATE(3080), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(5873), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2238), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(5073), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3468), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3102), + [sym_postfix_unary_expression] = STATE(3079), + [sym_prefix_unary_expression] = STATE(3079), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6134), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3102), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3079), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3102), + [sym_member_access_expression] = STATE(2472), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3079), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7309), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(3102), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3102), + [sym_typeof_expression] = STATE(3102), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2472), + [sym_literal] = STATE(3102), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(674), [sym_preproc_endregion] = STATE(674), [sym_preproc_line] = STATE(674), @@ -155614,47 +155499,48 @@ 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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1481), - [anon_sym_LPAREN] = ACTIONS(1497), - [anon_sym_ref] = ACTIONS(1499), - [anon_sym_LBRACE] = ACTIONS(2847), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1479), + [anon_sym_LPAREN] = ACTIONS(659), + [anon_sym_RPAREN] = ACTIONS(2847), + [anon_sym_ref] = ACTIONS(663), + [anon_sym_LBRACE] = ACTIONS(1481), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1501), + [anon_sym_new] = ACTIONS(1059), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = 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_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(1485), + [anon_sym_TILDE] = ACTIONS(1485), + [anon_sym_PLUS_PLUS] = ACTIONS(1485), + [anon_sym_DASH_DASH] = ACTIONS(1485), [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(1483), + [anon_sym_DASH] = ACTIONS(1483), + [anon_sym_STAR] = ACTIONS(683), + [anon_sym_CARET] = ACTIONS(1485), + [anon_sym_AMP] = ACTIONS(1485), [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(1067), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1503), + [anon_sym_throw] = ACTIONS(1077), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1505), - [anon_sym_DOT_DOT] = ACTIONS(1507), + [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), @@ -155679,7 +155565,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(1089), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -155696,85 +155582,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [675] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_block] = STATE(3084), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(5890), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2375), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(5504), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3656), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3080), - [sym_postfix_unary_expression] = STATE(3111), - [sym_prefix_unary_expression] = STATE(3111), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6157), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3080), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3111), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3080), - [sym_member_access_expression] = STATE(2484), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3111), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7362), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(3080), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3080), - [sym_typeof_expression] = STATE(3080), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2484), - [sym_literal] = STATE(3080), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(5528), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2196), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(2279), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(5482), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3660), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3102), + [sym_postfix_unary_expression] = STATE(3079), + [sym_prefix_unary_expression] = STATE(3079), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6163), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3102), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3079), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3102), + [sym_member_access_expression] = STATE(2472), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3079), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7633), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(3102), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3102), + [sym_typeof_expression] = STATE(3102), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2472), + [sym_literal] = STATE(3102), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(675), [sym_preproc_endregion] = STATE(675), [sym_preproc_line] = STATE(675), @@ -155784,47 +155669,48 @@ 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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1481), - [anon_sym_LPAREN] = ACTIONS(2177), - [anon_sym_ref] = ACTIONS(2179), - [anon_sym_LBRACE] = ACTIONS(2847), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1479), + [anon_sym_LPAREN] = ACTIONS(2009), + [anon_sym_ref] = ACTIONS(2011), + [anon_sym_LBRACE] = ACTIONS(1481), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(2181), + [anon_sym_new] = ACTIONS(1095), + [anon_sym_readonly] = ACTIONS(2767), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1067), - [anon_sym_BANG] = ACTIONS(2185), - [anon_sym_TILDE] = ACTIONS(2185), - [anon_sym_PLUS_PLUS] = ACTIONS(2185), - [anon_sym_DASH_DASH] = ACTIONS(2185), + [anon_sym_checked] = ACTIONS(1065), + [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(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(2183), - [anon_sym_DASH] = ACTIONS(2183), - [anon_sym_STAR] = ACTIONS(2187), - [anon_sym_CARET] = ACTIONS(2185), - [anon_sym_AMP] = ACTIONS(2185), + [anon_sym_PLUS] = ACTIONS(2013), + [anon_sym_DASH] = ACTIONS(2013), + [anon_sym_STAR] = ACTIONS(1227), + [anon_sym_CARET] = ACTIONS(2015), + [anon_sym_AMP] = ACTIONS(2015), [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(1067), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(2189), + [anon_sym_throw] = ACTIONS(1231), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2191), - [anon_sym_DOT_DOT] = ACTIONS(2193), + [anon_sym_await] = ACTIONS(1233), + [anon_sym_DOT_DOT] = ACTIONS(1235), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -155849,7 +155735,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(1089), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -155866,84 +155752,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [676] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(5910), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2247), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(5019), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3379), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3080), - [sym_postfix_unary_expression] = STATE(3111), - [sym_prefix_unary_expression] = STATE(3111), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6154), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3080), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3111), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3080), - [sym_member_access_expression] = STATE(2484), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3111), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7575), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(3080), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3080), - [sym_typeof_expression] = STATE(3080), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2484), - [sym_literal] = STATE(3080), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(2429), + [sym_alias_qualified_name] = STATE(2402), + [sym__simple_name] = STATE(2187), + [sym_qualified_name] = STATE(2402), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(2279), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(2373), + [sym__array_base_type] = STATE(7083), + [sym_nullable_type] = STATE(2375), + [sym_pointer_type] = STATE(2375), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(2375), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(2377), + [sym_expression] = STATE(5042), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3510), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3102), + [sym_postfix_unary_expression] = STATE(3079), + [sym_prefix_unary_expression] = STATE(3079), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6134), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3102), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3079), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3102), + [sym_member_access_expression] = STATE(2472), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3079), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7425), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(3102), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3102), + [sym_typeof_expression] = STATE(3102), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2472), + [sym_literal] = STATE(3102), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2178), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(676), [sym_preproc_endregion] = STATE(676), [sym_preproc_line] = STATE(676), @@ -155953,48 +155839,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(676), [sym_preproc_define] = STATE(676), [sym_preproc_undef] = STATE(676), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1481), - [anon_sym_LPAREN] = ACTIONS(895), - [anon_sym_ref] = ACTIONS(897), - [anon_sym_LBRACE] = ACTIONS(1487), - [anon_sym_RBRACE] = ACTIONS(2849), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1479), + [anon_sym_LPAREN] = ACTIONS(2849), + [anon_sym_ref] = ACTIONS(2341), + [anon_sym_LBRACE] = ACTIONS(1481), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1061), + [anon_sym_new] = ACTIONS(1059), + [anon_sym_readonly] = ACTIONS(2851), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1067), - [anon_sym_BANG] = ACTIONS(1495), - [anon_sym_TILDE] = ACTIONS(1495), - [anon_sym_PLUS_PLUS] = ACTIONS(1495), - [anon_sym_DASH_DASH] = ACTIONS(1495), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(1525), + [anon_sym_TILDE] = ACTIONS(1525), + [anon_sym_PLUS_PLUS] = ACTIONS(1525), + [anon_sym_DASH_DASH] = ACTIONS(1525), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1493), - [anon_sym_DASH] = ACTIONS(1493), - [anon_sym_STAR] = ACTIONS(905), - [anon_sym_CARET] = ACTIONS(1495), - [anon_sym_AMP] = ACTIONS(1495), + [anon_sym_PLUS] = ACTIONS(1523), + [anon_sym_DASH] = ACTIONS(1523), + [anon_sym_STAR] = ACTIONS(81), + [anon_sym_CARET] = ACTIONS(1525), + [anon_sym_AMP] = ACTIONS(1525), [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(85), + [anon_sym_scoped] = ACTIONS(2349), [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1067), + [anon_sym_var] = ACTIONS(2853), + [sym_predefined_type] = ACTIONS(2353), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1079), + [anon_sym_throw] = ACTIONS(1527), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1081), - [anon_sym_DOT_DOT] = ACTIONS(911), + [anon_sym_await] = ACTIONS(1529), + [anon_sym_DOT_DOT] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -156019,7 +155905,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(1089), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -156036,84 +155922,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [677] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2914), - [sym__name] = STATE(5885), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2357), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(2291), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(3834), - [sym_non_lvalue_expression] = STATE(3880), - [sym_lvalue_expression] = STATE(2986), - [sym__expression_statement_expression] = STATE(3873), - [sym_assignment_expression] = STATE(3881), - [sym_binary_expression] = STATE(3873), - [sym_postfix_unary_expression] = STATE(3881), - [sym_prefix_unary_expression] = STATE(3881), - [sym__pointer_indirection_expression] = STATE(2913), - [sym_query_expression] = STATE(3873), - [sym_from_clause] = STATE(6168), - [sym_conditional_expression] = STATE(3873), - [sym_conditional_access_expression] = STATE(3873), - [sym_as_expression] = STATE(3873), - [sym_is_expression] = STATE(3873), - [sym_is_pattern_expression] = STATE(3873), - [sym_cast_expression] = STATE(3873), - [sym_checked_expression] = STATE(3873), - [sym_invocation_expression] = STATE(3881), - [sym_switch_expression] = STATE(3873), - [sym_await_expression] = STATE(3881), - [sym_throw_expression] = STATE(3873), - [sym_element_access_expression] = STATE(2913), - [sym_interpolated_string_expression] = STATE(3873), - [sym_member_access_expression] = STATE(2913), - [sym_object_creation_expression] = STATE(3881), - [sym_parenthesized_expression] = STATE(3881), - [sym__parenthesized_lvalue_expression] = STATE(2913), - [sym_lambda_expression] = STATE(3873), - [sym__lambda_expression_init] = STATE(7587), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3873), - [sym_anonymous_method_expression] = STATE(3873), - [sym_anonymous_object_creation_expression] = STATE(3873), - [sym_implicit_array_creation_expression] = STATE(3873), - [sym_implicit_object_creation_expression] = STATE(3873), - [sym_implicit_stackalloc_expression] = STATE(3873), - [sym_initializer_expression] = STATE(3873), - [sym_default_expression] = STATE(3873), - [sym_with_expression] = STATE(3873), - [sym_sizeof_expression] = STATE(3873), - [sym_typeof_expression] = STATE(3873), - [sym_makeref_expression] = STATE(3873), - [sym_ref_expression] = STATE(3873), - [sym_reftype_expression] = STATE(3873), - [sym_refvalue_expression] = STATE(3873), - [sym_stackalloc_expression] = STATE(3873), - [sym_range_expression] = STATE(3873), - [sym_tuple_expression] = STATE(2913), - [sym_literal] = STATE(3873), - [sym_character_literal] = STATE(3877), - [sym_string_literal] = STATE(3877), - [sym_raw_string_literal] = STATE(3877), - [sym_boolean_literal] = STATE(3877), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3873), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2416), + [sym__name] = STATE(5897), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2367), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(2279), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(5205), + [sym_non_lvalue_expression] = STATE(3040), + [sym_lvalue_expression] = STATE(3600), + [sym__expression_statement_expression] = STATE(3035), + [sym_assignment_expression] = STATE(3043), + [sym_binary_expression] = STATE(3035), + [sym_postfix_unary_expression] = STATE(3043), + [sym_prefix_unary_expression] = STATE(3043), + [sym__pointer_indirection_expression] = STATE(2415), + [sym_query_expression] = STATE(3035), + [sym_from_clause] = STATE(6156), + [sym_conditional_expression] = STATE(3035), + [sym_conditional_access_expression] = STATE(3035), + [sym_as_expression] = STATE(3035), + [sym_is_expression] = STATE(3035), + [sym_is_pattern_expression] = STATE(3035), + [sym_cast_expression] = STATE(3035), + [sym_checked_expression] = STATE(3035), + [sym_invocation_expression] = STATE(3043), + [sym_switch_expression] = STATE(3035), + [sym_await_expression] = STATE(3043), + [sym_throw_expression] = STATE(3035), + [sym_element_access_expression] = STATE(2415), + [sym_interpolated_string_expression] = STATE(3035), + [sym_member_access_expression] = STATE(2415), + [sym_object_creation_expression] = STATE(3043), + [sym_parenthesized_expression] = STATE(3043), + [sym__parenthesized_lvalue_expression] = STATE(2415), + [sym_lambda_expression] = STATE(3035), + [sym__lambda_expression_init] = STATE(7561), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3035), + [sym_anonymous_method_expression] = STATE(3035), + [sym_anonymous_object_creation_expression] = STATE(3035), + [sym_implicit_array_creation_expression] = STATE(3035), + [sym_implicit_object_creation_expression] = STATE(3035), + [sym_implicit_stackalloc_expression] = STATE(3035), + [sym_initializer_expression] = STATE(3035), + [sym_default_expression] = STATE(3035), + [sym_with_expression] = STATE(3035), + [sym_sizeof_expression] = STATE(3035), + [sym_typeof_expression] = STATE(3035), + [sym_makeref_expression] = STATE(3035), + [sym_ref_expression] = STATE(3035), + [sym_reftype_expression] = STATE(3035), + [sym_refvalue_expression] = STATE(3035), + [sym_stackalloc_expression] = STATE(3035), + [sym_range_expression] = STATE(3035), + [sym_tuple_expression] = STATE(2415), + [sym_literal] = STATE(3035), + [sym_character_literal] = STATE(3037), + [sym_string_literal] = STATE(3037), + [sym_raw_string_literal] = STATE(3037), + [sym_boolean_literal] = STATE(3037), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3035), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(677), [sym_preproc_endregion] = STATE(677), [sym_preproc_line] = STATE(677), @@ -156123,48 +156009,48 @@ 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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3382), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3455), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1627), - [anon_sym_LPAREN] = ACTIONS(2079), - [anon_sym_ref] = ACTIONS(2081), - [anon_sym_LBRACE] = ACTIONS(1633), - [anon_sym_delegate] = ACTIONS(1635), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1239), + [anon_sym_LPAREN] = ACTIONS(2217), + [anon_sym_ref] = ACTIONS(2219), + [anon_sym_LBRACE] = ACTIONS(1245), + [anon_sym_delegate] = ACTIONS(1247), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1731), - [anon_sym_readonly] = ACTIONS(2749), + [anon_sym_new] = ACTIONS(2221), + [anon_sym_readonly] = ACTIONS(2767), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1639), - [anon_sym_BANG] = ACTIONS(2085), - [anon_sym_TILDE] = ACTIONS(2085), - [anon_sym_PLUS_PLUS] = ACTIONS(2085), - [anon_sym_DASH_DASH] = ACTIONS(2085), - [anon_sym_true] = ACTIONS(1645), - [anon_sym_false] = ACTIONS(1645), - [anon_sym_PLUS] = ACTIONS(2083), - [anon_sym_DASH] = ACTIONS(2083), - [anon_sym_STAR] = ACTIONS(1737), - [anon_sym_CARET] = ACTIONS(2085), - [anon_sym_AMP] = ACTIONS(2085), - [anon_sym_this] = ACTIONS(1649), + [anon_sym_checked] = ACTIONS(1251), + [anon_sym_BANG] = ACTIONS(2225), + [anon_sym_TILDE] = ACTIONS(2225), + [anon_sym_PLUS_PLUS] = ACTIONS(2225), + [anon_sym_DASH_DASH] = ACTIONS(2225), + [anon_sym_true] = ACTIONS(1257), + [anon_sym_false] = ACTIONS(1257), + [anon_sym_PLUS] = ACTIONS(2223), + [anon_sym_DASH] = ACTIONS(2223), + [anon_sym_STAR] = ACTIONS(2227), + [anon_sym_CARET] = ACTIONS(2225), + [anon_sym_AMP] = ACTIONS(2225), + [anon_sym_this] = ACTIONS(1261), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1651), + [anon_sym_base] = ACTIONS(1263), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1653), - [anon_sym_unchecked] = ACTIONS(1639), + [sym_predefined_type] = ACTIONS(1265), + [anon_sym_unchecked] = ACTIONS(1251), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1655), - [anon_sym_throw] = ACTIONS(2087), + [anon_sym_default] = ACTIONS(1267), + [anon_sym_throw] = ACTIONS(2229), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2089), - [anon_sym_DOT_DOT] = ACTIONS(2091), + [anon_sym_await] = ACTIONS(2231), + [anon_sym_DOT_DOT] = ACTIONS(2233), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -156177,19 +156063,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1663), - [anon_sym_sizeof] = ACTIONS(1665), - [anon_sym_typeof] = ACTIONS(1667), - [anon_sym___makeref] = ACTIONS(1669), - [anon_sym___reftype] = ACTIONS(1671), - [anon_sym___refvalue] = ACTIONS(1673), - [sym_null_literal] = ACTIONS(1675), - [anon_sym_SQUOTE] = ACTIONS(1677), - [sym_integer_literal] = ACTIONS(1675), - [sym_real_literal] = ACTIONS(1679), - [anon_sym_DQUOTE] = ACTIONS(1681), - [sym_verbatim_string_literal] = ACTIONS(1679), - [aux_sym_preproc_if_token1] = ACTIONS(1683), + [anon_sym_stackalloc] = ACTIONS(1275), + [anon_sym_sizeof] = ACTIONS(1277), + [anon_sym_typeof] = ACTIONS(1279), + [anon_sym___makeref] = ACTIONS(1281), + [anon_sym___reftype] = ACTIONS(1283), + [anon_sym___refvalue] = ACTIONS(1285), + [sym_null_literal] = ACTIONS(1287), + [anon_sym_SQUOTE] = ACTIONS(1289), + [sym_integer_literal] = ACTIONS(1287), + [sym_real_literal] = ACTIONS(1291), + [anon_sym_DQUOTE] = ACTIONS(1293), + [sym_verbatim_string_literal] = ACTIONS(1291), + [aux_sym_preproc_if_token1] = ACTIONS(1295), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -156200,90 +156086,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1685), - [sym_interpolation_verbatim_start] = ACTIONS(1687), - [sym_interpolation_raw_start] = ACTIONS(1689), - [sym_raw_string_start] = ACTIONS(1691), + [sym_interpolation_regular_start] = ACTIONS(1297), + [sym_interpolation_verbatim_start] = ACTIONS(1299), + [sym_interpolation_raw_start] = ACTIONS(1301), + [sym_raw_string_start] = ACTIONS(1303), }, [678] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(5910), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2247), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(5019), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3379), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3080), - [sym_postfix_unary_expression] = STATE(3111), - [sym_prefix_unary_expression] = STATE(3111), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6154), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3080), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3111), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3080), - [sym_member_access_expression] = STATE(2484), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3111), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7575), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(3080), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3080), - [sym_typeof_expression] = STATE(3080), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2484), - [sym_literal] = STATE(3080), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2816), + [sym__name] = STATE(5860), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2321), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(2279), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(4535), + [sym_non_lvalue_expression] = STATE(3495), + [sym_lvalue_expression] = STATE(3349), + [sym__expression_statement_expression] = STATE(3462), + [sym_assignment_expression] = STATE(3497), + [sym_binary_expression] = STATE(3462), + [sym_postfix_unary_expression] = STATE(3497), + [sym_prefix_unary_expression] = STATE(3497), + [sym__pointer_indirection_expression] = STATE(2815), + [sym_query_expression] = STATE(3462), + [sym_from_clause] = STATE(6152), + [sym_conditional_expression] = STATE(3462), + [sym_conditional_access_expression] = STATE(3462), + [sym_as_expression] = STATE(3462), + [sym_is_expression] = STATE(3462), + [sym_is_pattern_expression] = STATE(3462), + [sym_cast_expression] = STATE(3462), + [sym_checked_expression] = STATE(3462), + [sym_invocation_expression] = STATE(3497), + [sym_switch_expression] = STATE(3462), + [sym_await_expression] = STATE(3497), + [sym_throw_expression] = STATE(3462), + [sym_element_access_expression] = STATE(2815), + [sym_interpolated_string_expression] = STATE(3462), + [sym_member_access_expression] = STATE(2815), + [sym_object_creation_expression] = STATE(3497), + [sym_parenthesized_expression] = STATE(3497), + [sym__parenthesized_lvalue_expression] = STATE(2815), + [sym_lambda_expression] = STATE(3462), + [sym__lambda_expression_init] = STATE(7658), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3462), + [sym_anonymous_method_expression] = STATE(3462), + [sym_anonymous_object_creation_expression] = STATE(3462), + [sym_implicit_array_creation_expression] = STATE(3462), + [sym_implicit_object_creation_expression] = STATE(3462), + [sym_implicit_stackalloc_expression] = STATE(3462), + [sym_initializer_expression] = STATE(3462), + [sym_default_expression] = STATE(3462), + [sym_with_expression] = STATE(3462), + [sym_sizeof_expression] = STATE(3462), + [sym_typeof_expression] = STATE(3462), + [sym_makeref_expression] = STATE(3462), + [sym_ref_expression] = STATE(3462), + [sym_reftype_expression] = STATE(3462), + [sym_refvalue_expression] = STATE(3462), + [sym_stackalloc_expression] = STATE(3462), + [sym_range_expression] = STATE(3462), + [sym_tuple_expression] = STATE(2815), + [sym_literal] = STATE(3462), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3462), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(678), [sym_preproc_endregion] = STATE(678), [sym_preproc_line] = STATE(678), @@ -156293,48 +156179,48 @@ 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(3067), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), [aux_sym__lambda_expression_init_repeat1] = STATE(3367), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1481), - [anon_sym_LPAREN] = ACTIONS(895), - [anon_sym_ref] = ACTIONS(897), - [anon_sym_LBRACE] = ACTIONS(1487), - [anon_sym_RBRACE] = ACTIONS(2851), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1305), + [anon_sym_LPAREN] = ACTIONS(1639), + [anon_sym_ref] = ACTIONS(1641), + [anon_sym_LBRACE] = ACTIONS(1311), + [anon_sym_delegate] = ACTIONS(1313), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1061), + [anon_sym_new] = ACTIONS(1583), + [anon_sym_readonly] = ACTIONS(2767), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1067), - [anon_sym_BANG] = ACTIONS(1495), - [anon_sym_TILDE] = ACTIONS(1495), - [anon_sym_PLUS_PLUS] = ACTIONS(1495), - [anon_sym_DASH_DASH] = ACTIONS(1495), + [anon_sym_checked] = ACTIONS(1317), + [anon_sym_BANG] = ACTIONS(1645), + [anon_sym_TILDE] = ACTIONS(1645), + [anon_sym_PLUS_PLUS] = ACTIONS(1645), + [anon_sym_DASH_DASH] = ACTIONS(1645), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1493), - [anon_sym_DASH] = ACTIONS(1493), - [anon_sym_STAR] = ACTIONS(905), - [anon_sym_CARET] = ACTIONS(1495), - [anon_sym_AMP] = ACTIONS(1495), - [anon_sym_this] = ACTIONS(83), + [anon_sym_PLUS] = ACTIONS(1643), + [anon_sym_DASH] = ACTIONS(1643), + [anon_sym_STAR] = ACTIONS(1647), + [anon_sym_CARET] = ACTIONS(1645), + [anon_sym_AMP] = ACTIONS(1645), + [anon_sym_this] = ACTIONS(1321), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), + [anon_sym_base] = ACTIONS(1323), [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1067), + [anon_sym_unchecked] = ACTIONS(1317), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1079), + [anon_sym_throw] = ACTIONS(1649), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1081), - [anon_sym_DOT_DOT] = ACTIONS(911), + [anon_sym_await] = ACTIONS(1651), + [anon_sym_DOT_DOT] = ACTIONS(1653), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -156347,19 +156233,19 @@ static const uint16_t ts_parse_table[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(1331), [anon_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(1333), + [anon_sym___reftype] = ACTIONS(1335), + [anon_sym___refvalue] = ACTIONS(1337), [sym_null_literal] = ACTIONS(139), [anon_sym_SQUOTE] = ACTIONS(141), [sym_integer_literal] = ACTIONS(139), [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1089), + [aux_sym_preproc_if_token1] = ACTIONS(1339), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -156376,84 +156262,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [679] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(5910), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2247), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(5019), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3379), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3080), - [sym_postfix_unary_expression] = STATE(3111), - [sym_prefix_unary_expression] = STATE(3111), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6154), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3080), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3111), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3080), - [sym_member_access_expression] = STATE(2484), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3111), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7575), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(3080), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3080), - [sym_typeof_expression] = STATE(3080), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2484), - [sym_literal] = STATE(3080), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_block] = STATE(3058), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(5881), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2386), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(4207), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3132), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3102), + [sym_postfix_unary_expression] = STATE(3079), + [sym_prefix_unary_expression] = STATE(3079), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6158), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3102), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3079), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3102), + [sym_member_access_expression] = STATE(2472), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3079), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7650), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(3102), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3102), + [sym_typeof_expression] = STATE(3102), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2472), + [sym_literal] = STATE(3102), + [sym_character_literal] = STATE(3037), + [sym_string_literal] = STATE(3037), + [sym_raw_string_literal] = STATE(3037), + [sym_boolean_literal] = STATE(3037), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(679), [sym_preproc_endregion] = STATE(679), [sym_preproc_line] = STATE(679), @@ -156463,48 +156350,47 @@ 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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1481), - [anon_sym_LPAREN] = ACTIONS(895), - [anon_sym_ref] = ACTIONS(897), - [anon_sym_LBRACE] = ACTIONS(1487), - [anon_sym_RBRACE] = ACTIONS(2853), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1479), + [anon_sym_LPAREN] = ACTIONS(2185), + [anon_sym_ref] = ACTIONS(2187), + [anon_sym_LBRACE] = ACTIONS(2855), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1061), + [anon_sym_new] = ACTIONS(1899), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1067), - [anon_sym_BANG] = ACTIONS(1495), - [anon_sym_TILDE] = ACTIONS(1495), - [anon_sym_PLUS_PLUS] = ACTIONS(1495), - [anon_sym_DASH_DASH] = ACTIONS(1495), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1493), - [anon_sym_DASH] = ACTIONS(1493), - [anon_sym_STAR] = ACTIONS(905), - [anon_sym_CARET] = ACTIONS(1495), - [anon_sym_AMP] = ACTIONS(1495), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(2191), + [anon_sym_TILDE] = ACTIONS(2191), + [anon_sym_PLUS_PLUS] = ACTIONS(2191), + [anon_sym_DASH_DASH] = ACTIONS(2191), + [anon_sym_true] = ACTIONS(1257), + [anon_sym_false] = ACTIONS(1257), + [anon_sym_PLUS] = ACTIONS(2189), + [anon_sym_DASH] = ACTIONS(2189), + [anon_sym_STAR] = ACTIONS(1905), + [anon_sym_CARET] = ACTIONS(2191), + [anon_sym_AMP] = ACTIONS(2191), [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(1067), + [sym_predefined_type] = ACTIONS(1265), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1079), + [anon_sym_default] = ACTIONS(1267), + [anon_sym_throw] = ACTIONS(2193), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1081), - [anon_sym_DOT_DOT] = ACTIONS(911), + [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), @@ -156518,18 +156404,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(129), - [anon_sym_typeof] = ACTIONS(131), + [anon_sym_sizeof] = ACTIONS(1277), + [anon_sym_typeof] = ACTIONS(1279), [anon_sym___makeref] = ACTIONS(133), [anon_sym___reftype] = ACTIONS(135), [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1089), + [sym_null_literal] = ACTIONS(1287), + [anon_sym_SQUOTE] = ACTIONS(1289), + [sym_integer_literal] = ACTIONS(1287), + [sym_real_literal] = ACTIONS(1291), + [anon_sym_DQUOTE] = ACTIONS(1293), + [sym_verbatim_string_literal] = ACTIONS(1291), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -156540,91 +156426,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(151), - [sym_interpolation_verbatim_start] = ACTIONS(153), - [sym_interpolation_raw_start] = ACTIONS(155), - [sym_raw_string_start] = ACTIONS(157), + [sym_interpolation_regular_start] = ACTIONS(1297), + [sym_interpolation_verbatim_start] = ACTIONS(1299), + [sym_interpolation_raw_start] = ACTIONS(1301), + [sym_raw_string_start] = ACTIONS(1303), }, [680] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_block] = STATE(3084), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(5907), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2404), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(4224), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3140), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3080), - [sym_postfix_unary_expression] = STATE(3111), - [sym_prefix_unary_expression] = STATE(3111), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6183), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3080), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3111), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3080), - [sym_member_access_expression] = STATE(2484), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3111), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7703), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(3080), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3080), - [sym_typeof_expression] = STATE(3080), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2484), - [sym_literal] = STATE(3080), - [sym_character_literal] = STATE(3011), - [sym_string_literal] = STATE(3011), - [sym_raw_string_literal] = STATE(3011), - [sym_boolean_literal] = STATE(3011), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2603), + [sym__name] = STATE(5869), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2367), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(2279), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(4677), + [sym_non_lvalue_expression] = STATE(3220), + [sym_lvalue_expression] = STATE(3377), + [sym__expression_statement_expression] = STATE(3236), + [sym_assignment_expression] = STATE(3221), + [sym_binary_expression] = STATE(3236), + [sym_postfix_unary_expression] = STATE(3221), + [sym_prefix_unary_expression] = STATE(3221), + [sym__pointer_indirection_expression] = STATE(2602), + [sym_query_expression] = STATE(3236), + [sym_from_clause] = STATE(6128), + [sym_conditional_expression] = STATE(3236), + [sym_conditional_access_expression] = STATE(3236), + [sym_as_expression] = STATE(3236), + [sym_is_expression] = STATE(3236), + [sym_is_pattern_expression] = STATE(3236), + [sym_cast_expression] = STATE(3236), + [sym_checked_expression] = STATE(3236), + [sym_invocation_expression] = STATE(3221), + [sym_switch_expression] = STATE(3236), + [sym_await_expression] = STATE(3221), + [sym_throw_expression] = STATE(3236), + [sym_element_access_expression] = STATE(2602), + [sym_interpolated_string_expression] = STATE(3236), + [sym_member_access_expression] = STATE(2602), + [sym_object_creation_expression] = STATE(3221), + [sym_parenthesized_expression] = STATE(3221), + [sym__parenthesized_lvalue_expression] = STATE(2602), + [sym_lambda_expression] = STATE(3236), + [sym__lambda_expression_init] = STATE(7632), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3236), + [sym_anonymous_method_expression] = STATE(3236), + [sym_anonymous_object_creation_expression] = STATE(3236), + [sym_implicit_array_creation_expression] = STATE(3236), + [sym_implicit_object_creation_expression] = STATE(3236), + [sym_implicit_stackalloc_expression] = STATE(3236), + [sym_initializer_expression] = STATE(3236), + [sym_default_expression] = STATE(3236), + [sym_with_expression] = STATE(3236), + [sym_sizeof_expression] = STATE(3236), + [sym_typeof_expression] = STATE(3236), + [sym_makeref_expression] = STATE(3236), + [sym_ref_expression] = STATE(3236), + [sym_reftype_expression] = STATE(3236), + [sym_refvalue_expression] = STATE(3236), + [sym_stackalloc_expression] = STATE(3236), + [sym_range_expression] = STATE(3236), + [sym_tuple_expression] = STATE(2602), + [sym_literal] = STATE(3236), + [sym_character_literal] = STATE(3272), + [sym_string_literal] = STATE(3272), + [sym_raw_string_literal] = STATE(3272), + [sym_boolean_literal] = STATE(3272), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3236), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(680), [sym_preproc_endregion] = STATE(680), [sym_preproc_line] = STATE(680), @@ -156634,47 +156519,48 @@ 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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3379), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1481), - [anon_sym_LPAREN] = ACTIONS(2251), - [anon_sym_ref] = ACTIONS(2253), - [anon_sym_LBRACE] = ACTIONS(2847), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1149), + [anon_sym_LPAREN] = ACTIONS(1913), + [anon_sym_ref] = ACTIONS(1915), + [anon_sym_LBRACE] = ACTIONS(1155), + [anon_sym_delegate] = ACTIONS(1157), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1937), + [anon_sym_new] = ACTIONS(1917), + [anon_sym_readonly] = ACTIONS(2767), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1067), - [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(1259), - [anon_sym_false] = ACTIONS(1259), - [anon_sym_PLUS] = ACTIONS(2255), - [anon_sym_DASH] = ACTIONS(2255), - [anon_sym_STAR] = ACTIONS(1943), - [anon_sym_CARET] = ACTIONS(2257), - [anon_sym_AMP] = ACTIONS(2257), - [anon_sym_this] = ACTIONS(83), + [anon_sym_checked] = ACTIONS(1163), + [anon_sym_BANG] = ACTIONS(1921), + [anon_sym_TILDE] = ACTIONS(1921), + [anon_sym_PLUS_PLUS] = ACTIONS(1921), + [anon_sym_DASH_DASH] = ACTIONS(1921), + [anon_sym_true] = ACTIONS(1169), + [anon_sym_false] = ACTIONS(1169), + [anon_sym_PLUS] = ACTIONS(1919), + [anon_sym_DASH] = ACTIONS(1919), + [anon_sym_STAR] = ACTIONS(1923), + [anon_sym_CARET] = ACTIONS(1921), + [anon_sym_AMP] = ACTIONS(1921), + [anon_sym_this] = ACTIONS(1173), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), + [anon_sym_base] = ACTIONS(1175), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1267), - [anon_sym_unchecked] = ACTIONS(1067), + [sym_predefined_type] = ACTIONS(1177), + [anon_sym_unchecked] = ACTIONS(1163), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1269), - [anon_sym_throw] = ACTIONS(2259), + [anon_sym_default] = ACTIONS(1179), + [anon_sym_throw] = ACTIONS(1925), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2261), - [anon_sym_DOT_DOT] = ACTIONS(2263), + [anon_sym_await] = ACTIONS(1927), + [anon_sym_DOT_DOT] = ACTIONS(1929), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -156687,19 +156573,19 @@ static const uint16_t ts_parse_table[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(1279), - [anon_sym_typeof] = ACTIONS(1281), - [anon_sym___makeref] = ACTIONS(133), - [anon_sym___reftype] = ACTIONS(135), - [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(1289), - [anon_sym_SQUOTE] = ACTIONS(1291), - [sym_integer_literal] = ACTIONS(1289), - [sym_real_literal] = ACTIONS(1293), - [anon_sym_DQUOTE] = ACTIONS(1295), - [sym_verbatim_string_literal] = ACTIONS(1293), - [aux_sym_preproc_if_token1] = ACTIONS(1089), + [anon_sym_stackalloc] = ACTIONS(1187), + [anon_sym_sizeof] = ACTIONS(1189), + [anon_sym_typeof] = ACTIONS(1191), + [anon_sym___makeref] = ACTIONS(1193), + [anon_sym___reftype] = ACTIONS(1195), + [anon_sym___refvalue] = ACTIONS(1197), + [sym_null_literal] = ACTIONS(1199), + [anon_sym_SQUOTE] = ACTIONS(1201), + [sym_integer_literal] = ACTIONS(1199), + [sym_real_literal] = ACTIONS(1203), + [anon_sym_DQUOTE] = ACTIONS(1205), + [sym_verbatim_string_literal] = ACTIONS(1203), + [aux_sym_preproc_if_token1] = ACTIONS(1207), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -156710,91 +156596,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1299), - [sym_interpolation_verbatim_start] = ACTIONS(1301), - [sym_interpolation_raw_start] = ACTIONS(1303), - [sym_raw_string_start] = ACTIONS(1305), + [sym_interpolation_regular_start] = ACTIONS(1209), + [sym_interpolation_verbatim_start] = ACTIONS(1211), + [sym_interpolation_raw_start] = ACTIONS(1213), + [sym_raw_string_start] = ACTIONS(1215), }, [681] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_block] = STATE(3014), - [sym_bracketed_argument_list] = STATE(2420), - [sym__name] = STATE(5887), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2197), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(4090), - [sym_non_lvalue_expression] = STATE(3066), - [sym_lvalue_expression] = STATE(3120), - [sym__expression_statement_expression] = STATE(3006), - [sym_assignment_expression] = STATE(3020), - [sym_binary_expression] = STATE(3006), - [sym_postfix_unary_expression] = STATE(3020), - [sym_prefix_unary_expression] = STATE(3020), - [sym__pointer_indirection_expression] = STATE(2423), - [sym_query_expression] = STATE(3006), - [sym_from_clause] = STATE(6152), - [sym_conditional_expression] = STATE(3006), - [sym_conditional_access_expression] = STATE(3006), - [sym_as_expression] = STATE(3006), - [sym_is_expression] = STATE(3006), - [sym_is_pattern_expression] = STATE(3006), - [sym_cast_expression] = STATE(3006), - [sym_checked_expression] = STATE(3006), - [sym_invocation_expression] = STATE(3020), - [sym_switch_expression] = STATE(3006), - [sym_await_expression] = STATE(3020), - [sym_throw_expression] = STATE(3006), - [sym_element_access_expression] = STATE(2423), - [sym_interpolated_string_expression] = STATE(3006), - [sym_member_access_expression] = STATE(2423), - [sym_object_creation_expression] = STATE(3020), - [sym_parenthesized_expression] = STATE(3020), - [sym__parenthesized_lvalue_expression] = STATE(2423), - [sym_lambda_expression] = STATE(3006), - [sym__lambda_expression_init] = STATE(7722), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3006), - [sym_anonymous_method_expression] = STATE(3006), - [sym_anonymous_object_creation_expression] = STATE(3006), - [sym_implicit_array_creation_expression] = STATE(3006), - [sym_implicit_object_creation_expression] = STATE(3006), - [sym_implicit_stackalloc_expression] = STATE(3006), - [sym_initializer_expression] = STATE(3006), - [sym_default_expression] = STATE(3006), - [sym_with_expression] = STATE(3006), - [sym_sizeof_expression] = STATE(3006), - [sym_typeof_expression] = STATE(3006), - [sym_makeref_expression] = STATE(3006), - [sym_ref_expression] = STATE(3006), - [sym_reftype_expression] = STATE(3006), - [sym_refvalue_expression] = STATE(3006), - [sym_stackalloc_expression] = STATE(3006), - [sym_range_expression] = STATE(3006), - [sym_tuple_expression] = STATE(2423), - [sym_literal] = STATE(3006), - [sym_character_literal] = STATE(3011), - [sym_string_literal] = STATE(3011), - [sym_raw_string_literal] = STATE(3011), - [sym_boolean_literal] = STATE(3011), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3006), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(5152), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2196), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(5444), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3510), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3102), + [sym_postfix_unary_expression] = STATE(3079), + [sym_prefix_unary_expression] = STATE(3079), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6134), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3102), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3079), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3102), + [sym_member_access_expression] = STATE(2472), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3079), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7425), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(3102), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3102), + [sym_typeof_expression] = STATE(3102), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2472), + [sym_literal] = STATE(3102), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(681), [sym_preproc_endregion] = STATE(681), [sym_preproc_line] = STATE(681), @@ -156804,47 +156689,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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3440), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1241), - [anon_sym_LPAREN] = ACTIONS(1243), - [anon_sym_ref] = ACTIONS(1245), - [anon_sym_LBRACE] = ACTIONS(2845), - [anon_sym_delegate] = ACTIONS(1249), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1479), + [anon_sym_LPAREN] = ACTIONS(43), + [anon_sym_ref] = ACTIONS(715), + [anon_sym_LBRACE] = ACTIONS(1481), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1251), + [anon_sym_new] = ACTIONS(1059), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1253), - [anon_sym_BANG] = ACTIONS(1257), - [anon_sym_TILDE] = ACTIONS(1257), - [anon_sym_PLUS_PLUS] = ACTIONS(1257), - [anon_sym_DASH_DASH] = ACTIONS(1257), - [anon_sym_true] = ACTIONS(1259), - [anon_sym_false] = ACTIONS(1259), - [anon_sym_PLUS] = ACTIONS(1255), - [anon_sym_DASH] = ACTIONS(1255), - [anon_sym_STAR] = ACTIONS(1261), - [anon_sym_CARET] = ACTIONS(1257), - [anon_sym_AMP] = ACTIONS(1257), - [anon_sym_this] = ACTIONS(1263), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(1525), + [anon_sym_TILDE] = ACTIONS(1525), + [anon_sym_PLUS_PLUS] = ACTIONS(1525), + [anon_sym_DASH_DASH] = ACTIONS(1525), + [anon_sym_true] = ACTIONS(77), + [anon_sym_false] = ACTIONS(77), + [anon_sym_PLUS] = ACTIONS(1523), + [anon_sym_DASH] = ACTIONS(1523), + [anon_sym_STAR] = ACTIONS(81), + [anon_sym_CARET] = ACTIONS(1525), + [anon_sym_AMP] = ACTIONS(1525), + [anon_sym_this] = ACTIONS(83), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1265), + [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1267), - [anon_sym_unchecked] = ACTIONS(1253), + [sym_predefined_type] = ACTIONS(91), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1269), - [anon_sym_throw] = ACTIONS(1271), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(1527), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1273), - [anon_sym_DOT_DOT] = ACTIONS(1275), + [anon_sym_await] = ACTIONS(1529), + [anon_sym_DOT_DOT] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -156857,19 +156742,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1277), - [anon_sym_sizeof] = ACTIONS(1279), - [anon_sym_typeof] = ACTIONS(1281), - [anon_sym___makeref] = ACTIONS(1283), - [anon_sym___reftype] = ACTIONS(1285), - [anon_sym___refvalue] = ACTIONS(1287), - [sym_null_literal] = ACTIONS(1289), - [anon_sym_SQUOTE] = ACTIONS(1291), - [sym_integer_literal] = ACTIONS(1289), - [sym_real_literal] = ACTIONS(1293), - [anon_sym_DQUOTE] = ACTIONS(1295), - [sym_verbatim_string_literal] = ACTIONS(1293), - [aux_sym_preproc_if_token1] = ACTIONS(1297), + [anon_sym_stackalloc] = ACTIONS(127), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_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(2857), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -156880,90 +156766,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1299), - [sym_interpolation_verbatim_start] = ACTIONS(1301), - [sym_interpolation_raw_start] = ACTIONS(1303), - [sym_raw_string_start] = ACTIONS(1305), + [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(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(5732), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2303), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(2291), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(5495), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3664), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3080), - [sym_postfix_unary_expression] = STATE(3111), - [sym_prefix_unary_expression] = STATE(3111), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6161), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3080), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3111), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3080), - [sym_member_access_expression] = STATE(2484), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3111), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7773), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(3080), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3080), - [sym_typeof_expression] = STATE(3080), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2484), - [sym_literal] = STATE(3080), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2243), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(5152), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2196), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(5561), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3356), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3102), + [sym_postfix_unary_expression] = STATE(3079), + [sym_prefix_unary_expression] = STATE(3079), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6134), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3102), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3079), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3102), + [sym_member_access_expression] = STATE(2472), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3079), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7627), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(3102), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3102), + [sym_typeof_expression] = STATE(3102), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2472), + [sym_literal] = STATE(3102), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(682), [sym_preproc_endregion] = STATE(682), [sym_preproc_line] = STATE(682), @@ -156973,48 +156859,48 @@ 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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), + [anon_sym_SEMI] = ACTIONS(2033), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1481), - [anon_sym_LPAREN] = ACTIONS(2015), - [anon_sym_ref] = ACTIONS(2559), - [anon_sym_LBRACE] = ACTIONS(1487), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1479), + [anon_sym_LPAREN] = ACTIONS(1511), + [anon_sym_ref] = ACTIONS(1513), + [anon_sym_LBRACE] = ACTIONS(1481), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1101), - [anon_sym_readonly] = ACTIONS(2855), + [anon_sym_new] = ACTIONS(1515), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1067), - [anon_sym_BANG] = ACTIONS(2021), - [anon_sym_TILDE] = ACTIONS(2021), - [anon_sym_PLUS_PLUS] = ACTIONS(2021), - [anon_sym_DASH_DASH] = ACTIONS(2021), + [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(2019), - [anon_sym_DASH] = ACTIONS(2019), - [anon_sym_STAR] = ACTIONS(1229), - [anon_sym_CARET] = ACTIONS(2021), - [anon_sym_AMP] = ACTIONS(2021), + [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(2409), + [anon_sym_scoped] = ACTIONS(85), [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(2755), + [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1067), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1233), + [anon_sym_throw] = ACTIONS(1517), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1235), - [anon_sym_DOT_DOT] = ACTIONS(1237), + [anon_sym_await] = ACTIONS(1519), + [anon_sym_DOT_DOT] = ACTIONS(1521), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -157039,7 +156925,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(1089), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -157056,85 +156942,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [683] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_block] = STATE(3014), - [sym_bracketed_argument_list] = STATE(2420), - [sym__name] = STATE(5897), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2397), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(5171), - [sym_non_lvalue_expression] = STATE(3066), - [sym_lvalue_expression] = STATE(3632), - [sym__expression_statement_expression] = STATE(3006), - [sym_assignment_expression] = STATE(3020), - [sym_binary_expression] = STATE(3006), - [sym_postfix_unary_expression] = STATE(3020), - [sym_prefix_unary_expression] = STATE(3020), - [sym__pointer_indirection_expression] = STATE(2423), - [sym_query_expression] = STATE(3006), - [sym_from_clause] = STATE(6184), - [sym_conditional_expression] = STATE(3006), - [sym_conditional_access_expression] = STATE(3006), - [sym_as_expression] = STATE(3006), - [sym_is_expression] = STATE(3006), - [sym_is_pattern_expression] = STATE(3006), - [sym_cast_expression] = STATE(3006), - [sym_checked_expression] = STATE(3006), - [sym_invocation_expression] = STATE(3020), - [sym_switch_expression] = STATE(3006), - [sym_await_expression] = STATE(3020), - [sym_throw_expression] = STATE(3006), - [sym_element_access_expression] = STATE(2423), - [sym_interpolated_string_expression] = STATE(3006), - [sym_member_access_expression] = STATE(2423), - [sym_object_creation_expression] = STATE(3020), - [sym_parenthesized_expression] = STATE(3020), - [sym__parenthesized_lvalue_expression] = STATE(2423), - [sym_lambda_expression] = STATE(3006), - [sym__lambda_expression_init] = STATE(7393), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3006), - [sym_anonymous_method_expression] = STATE(3006), - [sym_anonymous_object_creation_expression] = STATE(3006), - [sym_implicit_array_creation_expression] = STATE(3006), - [sym_implicit_object_creation_expression] = STATE(3006), - [sym_implicit_stackalloc_expression] = STATE(3006), - [sym_initializer_expression] = STATE(3006), - [sym_default_expression] = STATE(3006), - [sym_with_expression] = STATE(3006), - [sym_sizeof_expression] = STATE(3006), - [sym_typeof_expression] = STATE(3006), - [sym_makeref_expression] = STATE(3006), - [sym_ref_expression] = STATE(3006), - [sym_reftype_expression] = STATE(3006), - [sym_refvalue_expression] = STATE(3006), - [sym_stackalloc_expression] = STATE(3006), - [sym_range_expression] = STATE(3006), - [sym_tuple_expression] = STATE(2423), - [sym_literal] = STATE(3006), - [sym_character_literal] = STATE(3011), - [sym_string_literal] = STATE(3011), - [sym_raw_string_literal] = STATE(3011), - [sym_boolean_literal] = STATE(3011), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3006), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(5182), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2212), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(2279), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(4679), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3468), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3102), + [sym_postfix_unary_expression] = STATE(3079), + [sym_prefix_unary_expression] = STATE(3079), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6134), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3102), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3079), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3102), + [sym_member_access_expression] = STATE(2472), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3079), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7309), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(3102), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3102), + [sym_typeof_expression] = STATE(3102), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2472), + [sym_literal] = STATE(3102), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(683), [sym_preproc_endregion] = STATE(683), [sym_preproc_line] = STATE(683), @@ -157144,47 +157029,48 @@ 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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3440), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1241), - [anon_sym_LPAREN] = ACTIONS(2213), - [anon_sym_ref] = ACTIONS(2215), - [anon_sym_LBRACE] = ACTIONS(2845), - [anon_sym_delegate] = ACTIONS(1249), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1479), + [anon_sym_LPAREN] = ACTIONS(659), + [anon_sym_ref] = ACTIONS(2775), + [anon_sym_LBRACE] = ACTIONS(1481), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(2217), + [anon_sym_new] = ACTIONS(1059), + [anon_sym_readonly] = ACTIONS(2747), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1253), - [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(1259), - [anon_sym_false] = ACTIONS(1259), - [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(1263), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1265), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1267), - [anon_sym_unchecked] = ACTIONS(1253), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(1485), + [anon_sym_TILDE] = ACTIONS(1485), + [anon_sym_PLUS_PLUS] = ACTIONS(1485), + [anon_sym_DASH_DASH] = ACTIONS(1485), + [anon_sym_true] = ACTIONS(77), + [anon_sym_false] = ACTIONS(77), + [anon_sym_PLUS] = ACTIONS(1483), + [anon_sym_DASH] = ACTIONS(1483), + [anon_sym_STAR] = ACTIONS(683), + [anon_sym_CARET] = ACTIONS(1485), + [anon_sym_AMP] = ACTIONS(1485), + [anon_sym_this] = ACTIONS(83), + [anon_sym_scoped] = ACTIONS(1073), + [anon_sym_base] = ACTIONS(87), + [anon_sym_var] = ACTIONS(2749), + [sym_predefined_type] = ACTIONS(91), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1269), - [anon_sym_throw] = ACTIONS(2225), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(1077), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2227), - [anon_sym_DOT_DOT] = ACTIONS(2229), + [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), @@ -157197,19 +157083,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1277), - [anon_sym_sizeof] = ACTIONS(1279), - [anon_sym_typeof] = ACTIONS(1281), - [anon_sym___makeref] = ACTIONS(1283), - [anon_sym___reftype] = ACTIONS(1285), - [anon_sym___refvalue] = ACTIONS(1287), - [sym_null_literal] = ACTIONS(1289), - [anon_sym_SQUOTE] = ACTIONS(1291), - [sym_integer_literal] = ACTIONS(1289), - [sym_real_literal] = ACTIONS(1293), - [anon_sym_DQUOTE] = ACTIONS(1295), - [sym_verbatim_string_literal] = ACTIONS(1293), - [aux_sym_preproc_if_token1] = ACTIONS(1297), + [anon_sym_stackalloc] = ACTIONS(127), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_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), @@ -157220,90 +157106,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1299), - [sym_interpolation_verbatim_start] = ACTIONS(1301), - [sym_interpolation_raw_start] = ACTIONS(1303), - [sym_raw_string_start] = ACTIONS(1305), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [sym_interpolation_raw_start] = ACTIONS(155), + [sym_raw_string_start] = ACTIONS(157), }, [684] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2420), - [sym__name] = STATE(5897), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2397), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(2291), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(5262), - [sym_non_lvalue_expression] = STATE(3066), - [sym_lvalue_expression] = STATE(3632), - [sym__expression_statement_expression] = STATE(3006), - [sym_assignment_expression] = STATE(3020), - [sym_binary_expression] = STATE(3006), - [sym_postfix_unary_expression] = STATE(3020), - [sym_prefix_unary_expression] = STATE(3020), - [sym__pointer_indirection_expression] = STATE(2423), - [sym_query_expression] = STATE(3006), - [sym_from_clause] = STATE(6184), - [sym_conditional_expression] = STATE(3006), - [sym_conditional_access_expression] = STATE(3006), - [sym_as_expression] = STATE(3006), - [sym_is_expression] = STATE(3006), - [sym_is_pattern_expression] = STATE(3006), - [sym_cast_expression] = STATE(3006), - [sym_checked_expression] = STATE(3006), - [sym_invocation_expression] = STATE(3020), - [sym_switch_expression] = STATE(3006), - [sym_await_expression] = STATE(3020), - [sym_throw_expression] = STATE(3006), - [sym_element_access_expression] = STATE(2423), - [sym_interpolated_string_expression] = STATE(3006), - [sym_member_access_expression] = STATE(2423), - [sym_object_creation_expression] = STATE(3020), - [sym_parenthesized_expression] = STATE(3020), - [sym__parenthesized_lvalue_expression] = STATE(2423), - [sym_lambda_expression] = STATE(3006), - [sym__lambda_expression_init] = STATE(7393), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3006), - [sym_anonymous_method_expression] = STATE(3006), - [sym_anonymous_object_creation_expression] = STATE(3006), - [sym_implicit_array_creation_expression] = STATE(3006), - [sym_implicit_object_creation_expression] = STATE(3006), - [sym_implicit_stackalloc_expression] = STATE(3006), - [sym_initializer_expression] = STATE(3006), - [sym_default_expression] = STATE(3006), - [sym_with_expression] = STATE(3006), - [sym_sizeof_expression] = STATE(3006), - [sym_typeof_expression] = STATE(3006), - [sym_makeref_expression] = STATE(3006), - [sym_ref_expression] = STATE(3006), - [sym_reftype_expression] = STATE(3006), - [sym_refvalue_expression] = STATE(3006), - [sym_stackalloc_expression] = STATE(3006), - [sym_range_expression] = STATE(3006), - [sym_tuple_expression] = STATE(2423), - [sym_literal] = STATE(3006), - [sym_character_literal] = STATE(3011), - [sym_string_literal] = STATE(3011), - [sym_raw_string_literal] = STATE(3011), - [sym_boolean_literal] = STATE(3011), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3006), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(5152), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2196), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(2279), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(5524), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3683), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3102), + [sym_postfix_unary_expression] = STATE(3079), + [sym_prefix_unary_expression] = STATE(3079), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6147), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3102), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3079), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3102), + [sym_member_access_expression] = STATE(2472), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3079), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7404), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(3102), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3102), + [sym_typeof_expression] = STATE(3102), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2472), + [sym_literal] = STATE(3102), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2261), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(684), [sym_preproc_endregion] = STATE(684), [sym_preproc_line] = STATE(684), @@ -157313,48 +157199,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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3440), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1241), - [anon_sym_LPAREN] = ACTIONS(2213), - [anon_sym_ref] = ACTIONS(2215), - [anon_sym_LBRACE] = ACTIONS(1247), - [anon_sym_delegate] = ACTIONS(1249), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1479), + [anon_sym_LPAREN] = ACTIONS(1965), + [anon_sym_ref] = ACTIONS(1967), + [anon_sym_LBRACE] = ACTIONS(1481), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(2217), - [anon_sym_readonly] = ACTIONS(2749), + [anon_sym_new] = ACTIONS(1059), + [anon_sym_readonly] = ACTIONS(2767), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1253), - [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(1259), - [anon_sym_false] = ACTIONS(1259), - [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(1263), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(1971), + [anon_sym_TILDE] = ACTIONS(1971), + [anon_sym_PLUS_PLUS] = ACTIONS(1971), + [anon_sym_DASH_DASH] = ACTIONS(1971), + [anon_sym_true] = ACTIONS(77), + [anon_sym_false] = ACTIONS(77), + [anon_sym_PLUS] = ACTIONS(1969), + [anon_sym_DASH] = ACTIONS(1969), + [anon_sym_STAR] = ACTIONS(1973), + [anon_sym_CARET] = ACTIONS(1971), + [anon_sym_AMP] = ACTIONS(1971), + [anon_sym_this] = ACTIONS(83), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1265), + [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1267), - [anon_sym_unchecked] = ACTIONS(1253), + [sym_predefined_type] = ACTIONS(91), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1269), - [anon_sym_throw] = ACTIONS(2225), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(1975), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2227), - [anon_sym_DOT_DOT] = ACTIONS(2229), + [anon_sym_await] = ACTIONS(1977), + [anon_sym_DOT_DOT] = ACTIONS(1979), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -157367,19 +157253,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1277), - [anon_sym_sizeof] = ACTIONS(1279), - [anon_sym_typeof] = ACTIONS(1281), - [anon_sym___makeref] = ACTIONS(1283), - [anon_sym___reftype] = ACTIONS(1285), - [anon_sym___refvalue] = ACTIONS(1287), - [sym_null_literal] = ACTIONS(1289), - [anon_sym_SQUOTE] = ACTIONS(1291), - [sym_integer_literal] = ACTIONS(1289), - [sym_real_literal] = ACTIONS(1293), - [anon_sym_DQUOTE] = ACTIONS(1295), - [sym_verbatim_string_literal] = ACTIONS(1293), - [aux_sym_preproc_if_token1] = ACTIONS(1297), + [anon_sym_stackalloc] = ACTIONS(127), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_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), @@ -157390,91 +157276,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(1299), - [sym_interpolation_verbatim_start] = ACTIONS(1301), - [sym_interpolation_raw_start] = ACTIONS(1303), - [sym_raw_string_start] = ACTIONS(1305), + [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(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_block] = STATE(3430), - [sym_bracketed_argument_list] = STATE(2762), - [sym__name] = STATE(5889), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2204), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(4909), - [sym_non_lvalue_expression] = STATE(3438), - [sym_lvalue_expression] = STATE(3548), - [sym__expression_statement_expression] = STATE(3362), - [sym_assignment_expression] = STATE(3449), - [sym_binary_expression] = STATE(3362), - [sym_postfix_unary_expression] = STATE(3449), - [sym_prefix_unary_expression] = STATE(3449), - [sym__pointer_indirection_expression] = STATE(2747), - [sym_query_expression] = STATE(3362), - [sym_from_clause] = STATE(6146), - [sym_conditional_expression] = STATE(3362), - [sym_conditional_access_expression] = STATE(3362), - [sym_as_expression] = STATE(3362), - [sym_is_expression] = STATE(3362), - [sym_is_pattern_expression] = STATE(3362), - [sym_cast_expression] = STATE(3362), - [sym_checked_expression] = STATE(3362), - [sym_invocation_expression] = STATE(3449), - [sym_switch_expression] = STATE(3362), - [sym_await_expression] = STATE(3449), - [sym_throw_expression] = STATE(3362), - [sym_element_access_expression] = STATE(2747), - [sym_interpolated_string_expression] = STATE(3362), - [sym_member_access_expression] = STATE(2747), - [sym_object_creation_expression] = STATE(3449), - [sym_parenthesized_expression] = STATE(3449), - [sym__parenthesized_lvalue_expression] = STATE(2747), - [sym_lambda_expression] = STATE(3362), - [sym__lambda_expression_init] = STATE(7772), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3362), - [sym_anonymous_method_expression] = STATE(3362), - [sym_anonymous_object_creation_expression] = STATE(3362), - [sym_implicit_array_creation_expression] = STATE(3362), - [sym_implicit_object_creation_expression] = STATE(3362), - [sym_implicit_stackalloc_expression] = STATE(3362), - [sym_initializer_expression] = STATE(3362), - [sym_default_expression] = STATE(3362), - [sym_with_expression] = STATE(3362), - [sym_sizeof_expression] = STATE(3362), - [sym_typeof_expression] = STATE(3362), - [sym_makeref_expression] = STATE(3362), - [sym_ref_expression] = STATE(3362), - [sym_reftype_expression] = STATE(3362), - [sym_refvalue_expression] = STATE(3362), - [sym_stackalloc_expression] = STATE(3362), - [sym_range_expression] = STATE(3362), - [sym_tuple_expression] = STATE(2747), - [sym_literal] = STATE(3362), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3362), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_block] = STATE(3454), + [sym_bracketed_argument_list] = STATE(2816), + [sym__name] = STATE(5879), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2238), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(4331), + [sym_non_lvalue_expression] = STATE(3495), + [sym_lvalue_expression] = STATE(3197), + [sym__expression_statement_expression] = STATE(3462), + [sym_assignment_expression] = STATE(3497), + [sym_binary_expression] = STATE(3462), + [sym_postfix_unary_expression] = STATE(3497), + [sym_prefix_unary_expression] = STATE(3497), + [sym__pointer_indirection_expression] = STATE(2815), + [sym_query_expression] = STATE(3462), + [sym_from_clause] = STATE(6144), + [sym_conditional_expression] = STATE(3462), + [sym_conditional_access_expression] = STATE(3462), + [sym_as_expression] = STATE(3462), + [sym_is_expression] = STATE(3462), + [sym_is_pattern_expression] = STATE(3462), + [sym_cast_expression] = STATE(3462), + [sym_checked_expression] = STATE(3462), + [sym_invocation_expression] = STATE(3497), + [sym_switch_expression] = STATE(3462), + [sym_await_expression] = STATE(3497), + [sym_throw_expression] = STATE(3462), + [sym_element_access_expression] = STATE(2815), + [sym_interpolated_string_expression] = STATE(3462), + [sym_member_access_expression] = STATE(2815), + [sym_object_creation_expression] = STATE(3497), + [sym_parenthesized_expression] = STATE(3497), + [sym__parenthesized_lvalue_expression] = STATE(2815), + [sym_lambda_expression] = STATE(3462), + [sym__lambda_expression_init] = STATE(7615), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3462), + [sym_anonymous_method_expression] = STATE(3462), + [sym_anonymous_object_creation_expression] = STATE(3462), + [sym_implicit_array_creation_expression] = STATE(3462), + [sym_implicit_object_creation_expression] = STATE(3462), + [sym_implicit_stackalloc_expression] = STATE(3462), + [sym_initializer_expression] = STATE(3462), + [sym_default_expression] = STATE(3462), + [sym_with_expression] = STATE(3462), + [sym_sizeof_expression] = STATE(3462), + [sym_typeof_expression] = STATE(3462), + [sym_makeref_expression] = STATE(3462), + [sym_ref_expression] = STATE(3462), + [sym_reftype_expression] = STATE(3462), + [sym_refvalue_expression] = STATE(3462), + [sym_stackalloc_expression] = STATE(3462), + [sym_range_expression] = STATE(3462), + [sym_tuple_expression] = STATE(2815), + [sym_literal] = STATE(3462), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3462), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(685), [sym_preproc_endregion] = STATE(685), [sym_preproc_line] = STATE(685), @@ -157484,47 +157370,47 @@ 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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3385), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3367), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1307), - [anon_sym_LPAREN] = ACTIONS(1789), - [anon_sym_ref] = ACTIONS(1791), - [anon_sym_LBRACE] = ACTIONS(2857), - [anon_sym_delegate] = ACTIONS(1315), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1305), + [anon_sym_LPAREN] = ACTIONS(1357), + [anon_sym_ref] = ACTIONS(1359), + [anon_sym_LBRACE] = ACTIONS(2845), + [anon_sym_delegate] = ACTIONS(1313), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1317), + [anon_sym_new] = ACTIONS(1315), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1319), - [anon_sym_BANG] = ACTIONS(1795), - [anon_sym_TILDE] = ACTIONS(1795), - [anon_sym_PLUS_PLUS] = ACTIONS(1795), - [anon_sym_DASH_DASH] = ACTIONS(1795), + [anon_sym_checked] = ACTIONS(1317), + [anon_sym_BANG] = ACTIONS(1101), + [anon_sym_TILDE] = ACTIONS(1101), + [anon_sym_PLUS_PLUS] = ACTIONS(1101), + [anon_sym_DASH_DASH] = ACTIONS(1101), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1793), - [anon_sym_DASH] = ACTIONS(1793), - [anon_sym_STAR] = ACTIONS(1797), - [anon_sym_CARET] = ACTIONS(1795), - [anon_sym_AMP] = ACTIONS(1795), - [anon_sym_this] = ACTIONS(1323), + [anon_sym_PLUS] = ACTIONS(1103), + [anon_sym_DASH] = ACTIONS(1103), + [anon_sym_STAR] = ACTIONS(1361), + [anon_sym_CARET] = ACTIONS(1101), + [anon_sym_AMP] = ACTIONS(1101), + [anon_sym_this] = ACTIONS(1321), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1325), + [anon_sym_base] = ACTIONS(1323), [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1319), + [anon_sym_unchecked] = ACTIONS(1317), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1799), + [anon_sym_throw] = ACTIONS(1363), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1801), - [anon_sym_DOT_DOT] = ACTIONS(1803), + [anon_sym_await] = ACTIONS(1365), + [anon_sym_DOT_DOT] = ACTIONS(1367), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -157537,19 +157423,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1333), + [anon_sym_stackalloc] = ACTIONS(1331), [anon_sym_sizeof] = ACTIONS(129), [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(1335), - [anon_sym___reftype] = ACTIONS(1337), - [anon_sym___refvalue] = ACTIONS(1339), + [anon_sym___makeref] = ACTIONS(1333), + [anon_sym___reftype] = ACTIONS(1335), + [anon_sym___refvalue] = ACTIONS(1337), [sym_null_literal] = ACTIONS(139), [anon_sym_SQUOTE] = ACTIONS(141), [sym_integer_literal] = ACTIONS(139), [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1341), + [aux_sym_preproc_if_token1] = ACTIONS(1339), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -157566,85 +157452,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [686] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_block] = STATE(3316), - [sym_bracketed_argument_list] = STATE(2610), - [sym__name] = STATE(5905), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2395), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(4700), - [sym_non_lvalue_expression] = STATE(3277), - [sym_lvalue_expression] = STATE(3402), - [sym__expression_statement_expression] = STATE(3228), - [sym_assignment_expression] = STATE(3289), - [sym_binary_expression] = STATE(3228), - [sym_postfix_unary_expression] = STATE(3289), - [sym_prefix_unary_expression] = STATE(3289), - [sym__pointer_indirection_expression] = STATE(2609), - [sym_query_expression] = STATE(3228), - [sym_from_clause] = STATE(6166), - [sym_conditional_expression] = STATE(3228), - [sym_conditional_access_expression] = STATE(3228), - [sym_as_expression] = STATE(3228), - [sym_is_expression] = STATE(3228), - [sym_is_pattern_expression] = STATE(3228), - [sym_cast_expression] = STATE(3228), - [sym_checked_expression] = STATE(3228), - [sym_invocation_expression] = STATE(3289), - [sym_switch_expression] = STATE(3228), - [sym_await_expression] = STATE(3289), - [sym_throw_expression] = STATE(3228), - [sym_element_access_expression] = STATE(2609), - [sym_interpolated_string_expression] = STATE(3228), - [sym_member_access_expression] = STATE(2609), - [sym_object_creation_expression] = STATE(3289), - [sym_parenthesized_expression] = STATE(3289), - [sym__parenthesized_lvalue_expression] = STATE(2609), - [sym_lambda_expression] = STATE(3228), - [sym__lambda_expression_init] = STATE(7415), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3228), - [sym_anonymous_method_expression] = STATE(3228), - [sym_anonymous_object_creation_expression] = STATE(3228), - [sym_implicit_array_creation_expression] = STATE(3228), - [sym_implicit_object_creation_expression] = STATE(3228), - [sym_implicit_stackalloc_expression] = STATE(3228), - [sym_initializer_expression] = STATE(3228), - [sym_default_expression] = STATE(3228), - [sym_with_expression] = STATE(3228), - [sym_sizeof_expression] = STATE(3228), - [sym_typeof_expression] = STATE(3228), - [sym_makeref_expression] = STATE(3228), - [sym_ref_expression] = STATE(3228), - [sym_reftype_expression] = STATE(3228), - [sym_refvalue_expression] = STATE(3228), - [sym_stackalloc_expression] = STATE(3228), - [sym_range_expression] = STATE(3228), - [sym_tuple_expression] = STATE(2609), - [sym_literal] = STATE(3228), - [sym_character_literal] = STATE(3278), - [sym_string_literal] = STATE(3278), - [sym_raw_string_literal] = STATE(3278), - [sym_boolean_literal] = STATE(3278), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3228), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_block] = STATE(2984), + [sym_bracketed_argument_list] = STATE(2416), + [sym__name] = STATE(5897), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2367), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(5202), + [sym_non_lvalue_expression] = STATE(3040), + [sym_lvalue_expression] = STATE(3600), + [sym__expression_statement_expression] = STATE(3035), + [sym_assignment_expression] = STATE(3043), + [sym_binary_expression] = STATE(3035), + [sym_postfix_unary_expression] = STATE(3043), + [sym_prefix_unary_expression] = STATE(3043), + [sym__pointer_indirection_expression] = STATE(2415), + [sym_query_expression] = STATE(3035), + [sym_from_clause] = STATE(6156), + [sym_conditional_expression] = STATE(3035), + [sym_conditional_access_expression] = STATE(3035), + [sym_as_expression] = STATE(3035), + [sym_is_expression] = STATE(3035), + [sym_is_pattern_expression] = STATE(3035), + [sym_cast_expression] = STATE(3035), + [sym_checked_expression] = STATE(3035), + [sym_invocation_expression] = STATE(3043), + [sym_switch_expression] = STATE(3035), + [sym_await_expression] = STATE(3043), + [sym_throw_expression] = STATE(3035), + [sym_element_access_expression] = STATE(2415), + [sym_interpolated_string_expression] = STATE(3035), + [sym_member_access_expression] = STATE(2415), + [sym_object_creation_expression] = STATE(3043), + [sym_parenthesized_expression] = STATE(3043), + [sym__parenthesized_lvalue_expression] = STATE(2415), + [sym_lambda_expression] = STATE(3035), + [sym__lambda_expression_init] = STATE(7561), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3035), + [sym_anonymous_method_expression] = STATE(3035), + [sym_anonymous_object_creation_expression] = STATE(3035), + [sym_implicit_array_creation_expression] = STATE(3035), + [sym_implicit_object_creation_expression] = STATE(3035), + [sym_implicit_stackalloc_expression] = STATE(3035), + [sym_initializer_expression] = STATE(3035), + [sym_default_expression] = STATE(3035), + [sym_with_expression] = STATE(3035), + [sym_sizeof_expression] = STATE(3035), + [sym_typeof_expression] = STATE(3035), + [sym_makeref_expression] = STATE(3035), + [sym_ref_expression] = STATE(3035), + [sym_reftype_expression] = STATE(3035), + [sym_refvalue_expression] = STATE(3035), + [sym_stackalloc_expression] = STATE(3035), + [sym_range_expression] = STATE(3035), + [sym_tuple_expression] = STATE(2415), + [sym_literal] = STATE(3035), + [sym_character_literal] = STATE(3037), + [sym_string_literal] = STATE(3037), + [sym_raw_string_literal] = STATE(3037), + [sym_boolean_literal] = STATE(3037), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3035), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(686), [sym_preproc_endregion] = STATE(686), [sym_preproc_line] = STATE(686), @@ -157654,47 +157540,47 @@ 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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3396), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3455), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1153), - [anon_sym_LPAREN] = ACTIONS(1915), - [anon_sym_ref] = ACTIONS(1917), - [anon_sym_LBRACE] = ACTIONS(2843), - [anon_sym_delegate] = ACTIONS(1161), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1239), + [anon_sym_LPAREN] = ACTIONS(2217), + [anon_sym_ref] = ACTIONS(2219), + [anon_sym_LBRACE] = ACTIONS(2839), + [anon_sym_delegate] = ACTIONS(1247), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1919), + [anon_sym_new] = ACTIONS(2221), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1167), - [anon_sym_BANG] = ACTIONS(1923), - [anon_sym_TILDE] = ACTIONS(1923), - [anon_sym_PLUS_PLUS] = ACTIONS(1923), - [anon_sym_DASH_DASH] = ACTIONS(1923), - [anon_sym_true] = ACTIONS(1173), - [anon_sym_false] = ACTIONS(1173), - [anon_sym_PLUS] = ACTIONS(1921), - [anon_sym_DASH] = ACTIONS(1921), - [anon_sym_STAR] = ACTIONS(1925), - [anon_sym_CARET] = ACTIONS(1923), - [anon_sym_AMP] = ACTIONS(1923), - [anon_sym_this] = ACTIONS(1177), + [anon_sym_checked] = ACTIONS(1251), + [anon_sym_BANG] = ACTIONS(2225), + [anon_sym_TILDE] = ACTIONS(2225), + [anon_sym_PLUS_PLUS] = ACTIONS(2225), + [anon_sym_DASH_DASH] = ACTIONS(2225), + [anon_sym_true] = ACTIONS(1257), + [anon_sym_false] = ACTIONS(1257), + [anon_sym_PLUS] = ACTIONS(2223), + [anon_sym_DASH] = ACTIONS(2223), + [anon_sym_STAR] = ACTIONS(2227), + [anon_sym_CARET] = ACTIONS(2225), + [anon_sym_AMP] = ACTIONS(2225), + [anon_sym_this] = ACTIONS(1261), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1179), + [anon_sym_base] = ACTIONS(1263), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1181), - [anon_sym_unchecked] = ACTIONS(1167), + [sym_predefined_type] = ACTIONS(1265), + [anon_sym_unchecked] = ACTIONS(1251), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1183), - [anon_sym_throw] = ACTIONS(1927), + [anon_sym_default] = ACTIONS(1267), + [anon_sym_throw] = ACTIONS(2229), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1929), - [anon_sym_DOT_DOT] = ACTIONS(1931), + [anon_sym_await] = ACTIONS(2231), + [anon_sym_DOT_DOT] = ACTIONS(2233), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -157707,19 +157593,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1191), - [anon_sym_sizeof] = ACTIONS(1193), - [anon_sym_typeof] = ACTIONS(1195), - [anon_sym___makeref] = ACTIONS(1197), - [anon_sym___reftype] = ACTIONS(1199), - [anon_sym___refvalue] = ACTIONS(1201), - [sym_null_literal] = ACTIONS(1203), - [anon_sym_SQUOTE] = ACTIONS(1205), - [sym_integer_literal] = ACTIONS(1203), - [sym_real_literal] = ACTIONS(1207), - [anon_sym_DQUOTE] = ACTIONS(1209), - [sym_verbatim_string_literal] = ACTIONS(1207), - [aux_sym_preproc_if_token1] = ACTIONS(1211), + [anon_sym_stackalloc] = ACTIONS(1275), + [anon_sym_sizeof] = ACTIONS(1277), + [anon_sym_typeof] = ACTIONS(1279), + [anon_sym___makeref] = ACTIONS(1281), + [anon_sym___reftype] = ACTIONS(1283), + [anon_sym___refvalue] = ACTIONS(1285), + [sym_null_literal] = ACTIONS(1287), + [anon_sym_SQUOTE] = ACTIONS(1289), + [sym_integer_literal] = ACTIONS(1287), + [sym_real_literal] = ACTIONS(1291), + [anon_sym_DQUOTE] = ACTIONS(1293), + [sym_verbatim_string_literal] = ACTIONS(1291), + [aux_sym_preproc_if_token1] = ACTIONS(1295), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -157730,90 +157616,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(1213), - [sym_interpolation_verbatim_start] = ACTIONS(1215), - [sym_interpolation_raw_start] = ACTIONS(1217), - [sym_raw_string_start] = ACTIONS(1219), + [sym_interpolation_regular_start] = ACTIONS(1297), + [sym_interpolation_verbatim_start] = ACTIONS(1299), + [sym_interpolation_raw_start] = ACTIONS(1301), + [sym_raw_string_start] = ACTIONS(1303), }, [687] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2762), - [sym__name] = STATE(5889), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2204), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(2291), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(4915), - [sym_non_lvalue_expression] = STATE(3438), - [sym_lvalue_expression] = STATE(3548), - [sym__expression_statement_expression] = STATE(3362), - [sym_assignment_expression] = STATE(3449), - [sym_binary_expression] = STATE(3362), - [sym_postfix_unary_expression] = STATE(3449), - [sym_prefix_unary_expression] = STATE(3449), - [sym__pointer_indirection_expression] = STATE(2747), - [sym_query_expression] = STATE(3362), - [sym_from_clause] = STATE(6146), - [sym_conditional_expression] = STATE(3362), - [sym_conditional_access_expression] = STATE(3362), - [sym_as_expression] = STATE(3362), - [sym_is_expression] = STATE(3362), - [sym_is_pattern_expression] = STATE(3362), - [sym_cast_expression] = STATE(3362), - [sym_checked_expression] = STATE(3362), - [sym_invocation_expression] = STATE(3449), - [sym_switch_expression] = STATE(3362), - [sym_await_expression] = STATE(3449), - [sym_throw_expression] = STATE(3362), - [sym_element_access_expression] = STATE(2747), - [sym_interpolated_string_expression] = STATE(3362), - [sym_member_access_expression] = STATE(2747), - [sym_object_creation_expression] = STATE(3449), - [sym_parenthesized_expression] = STATE(3449), - [sym__parenthesized_lvalue_expression] = STATE(2747), - [sym_lambda_expression] = STATE(3362), - [sym__lambda_expression_init] = STATE(7772), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3362), - [sym_anonymous_method_expression] = STATE(3362), - [sym_anonymous_object_creation_expression] = STATE(3362), - [sym_implicit_array_creation_expression] = STATE(3362), - [sym_implicit_object_creation_expression] = STATE(3362), - [sym_implicit_stackalloc_expression] = STATE(3362), - [sym_initializer_expression] = STATE(3362), - [sym_default_expression] = STATE(3362), - [sym_with_expression] = STATE(3362), - [sym_sizeof_expression] = STATE(3362), - [sym_typeof_expression] = STATE(3362), - [sym_makeref_expression] = STATE(3362), - [sym_ref_expression] = STATE(3362), - [sym_reftype_expression] = STATE(3362), - [sym_refvalue_expression] = STATE(3362), - [sym_stackalloc_expression] = STATE(3362), - [sym_range_expression] = STATE(3362), - [sym_tuple_expression] = STATE(2747), - [sym_literal] = STATE(3362), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3362), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_block] = STATE(3058), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(5873), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2238), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(4643), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3468), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3102), + [sym_postfix_unary_expression] = STATE(3079), + [sym_prefix_unary_expression] = STATE(3079), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6134), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3102), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3079), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3102), + [sym_member_access_expression] = STATE(2472), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3079), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7309), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(3102), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3102), + [sym_typeof_expression] = STATE(3102), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2472), + [sym_literal] = STATE(3102), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(687), [sym_preproc_endregion] = STATE(687), [sym_preproc_line] = STATE(687), @@ -157823,48 +157710,47 @@ 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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3385), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1307), - [anon_sym_LPAREN] = ACTIONS(1789), - [anon_sym_ref] = ACTIONS(1791), - [anon_sym_LBRACE] = ACTIONS(1313), - [anon_sym_delegate] = ACTIONS(1315), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1479), + [anon_sym_LPAREN] = ACTIONS(659), + [anon_sym_ref] = ACTIONS(663), + [anon_sym_LBRACE] = ACTIONS(2855), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1317), - [anon_sym_readonly] = ACTIONS(2749), + [anon_sym_new] = ACTIONS(1059), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1319), - [anon_sym_BANG] = ACTIONS(1795), - [anon_sym_TILDE] = ACTIONS(1795), - [anon_sym_PLUS_PLUS] = ACTIONS(1795), - [anon_sym_DASH_DASH] = ACTIONS(1795), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(1485), + [anon_sym_TILDE] = ACTIONS(1485), + [anon_sym_PLUS_PLUS] = ACTIONS(1485), + [anon_sym_DASH_DASH] = ACTIONS(1485), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1793), - [anon_sym_DASH] = ACTIONS(1793), - [anon_sym_STAR] = ACTIONS(1797), - [anon_sym_CARET] = ACTIONS(1795), - [anon_sym_AMP] = ACTIONS(1795), - [anon_sym_this] = ACTIONS(1323), + [anon_sym_PLUS] = ACTIONS(1483), + [anon_sym_DASH] = ACTIONS(1483), + [anon_sym_STAR] = ACTIONS(683), + [anon_sym_CARET] = ACTIONS(1485), + [anon_sym_AMP] = ACTIONS(1485), + [anon_sym_this] = ACTIONS(83), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1325), + [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1319), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1799), + [anon_sym_throw] = ACTIONS(1077), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1801), - [anon_sym_DOT_DOT] = ACTIONS(1803), + [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), @@ -157877,19 +157763,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1333), + [anon_sym_stackalloc] = ACTIONS(127), [anon_sym_sizeof] = ACTIONS(129), [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(1335), - [anon_sym___reftype] = ACTIONS(1337), - [anon_sym___refvalue] = ACTIONS(1339), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), [sym_null_literal] = ACTIONS(139), [anon_sym_SQUOTE] = ACTIONS(141), [sym_integer_literal] = ACTIONS(139), [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1341), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -157906,84 +157792,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [688] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2610), - [sym__name] = STATE(5905), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2395), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(2291), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(4702), - [sym_non_lvalue_expression] = STATE(3277), - [sym_lvalue_expression] = STATE(3402), - [sym__expression_statement_expression] = STATE(3228), - [sym_assignment_expression] = STATE(3289), - [sym_binary_expression] = STATE(3228), - [sym_postfix_unary_expression] = STATE(3289), - [sym_prefix_unary_expression] = STATE(3289), - [sym__pointer_indirection_expression] = STATE(2609), - [sym_query_expression] = STATE(3228), - [sym_from_clause] = STATE(6166), - [sym_conditional_expression] = STATE(3228), - [sym_conditional_access_expression] = STATE(3228), - [sym_as_expression] = STATE(3228), - [sym_is_expression] = STATE(3228), - [sym_is_pattern_expression] = STATE(3228), - [sym_cast_expression] = STATE(3228), - [sym_checked_expression] = STATE(3228), - [sym_invocation_expression] = STATE(3289), - [sym_switch_expression] = STATE(3228), - [sym_await_expression] = STATE(3289), - [sym_throw_expression] = STATE(3228), - [sym_element_access_expression] = STATE(2609), - [sym_interpolated_string_expression] = STATE(3228), - [sym_member_access_expression] = STATE(2609), - [sym_object_creation_expression] = STATE(3289), - [sym_parenthesized_expression] = STATE(3289), - [sym__parenthesized_lvalue_expression] = STATE(2609), - [sym_lambda_expression] = STATE(3228), - [sym__lambda_expression_init] = STATE(7415), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3228), - [sym_anonymous_method_expression] = STATE(3228), - [sym_anonymous_object_creation_expression] = STATE(3228), - [sym_implicit_array_creation_expression] = STATE(3228), - [sym_implicit_object_creation_expression] = STATE(3228), - [sym_implicit_stackalloc_expression] = STATE(3228), - [sym_initializer_expression] = STATE(3228), - [sym_default_expression] = STATE(3228), - [sym_with_expression] = STATE(3228), - [sym_sizeof_expression] = STATE(3228), - [sym_typeof_expression] = STATE(3228), - [sym_makeref_expression] = STATE(3228), - [sym_ref_expression] = STATE(3228), - [sym_reftype_expression] = STATE(3228), - [sym_refvalue_expression] = STATE(3228), - [sym_stackalloc_expression] = STATE(3228), - [sym_range_expression] = STATE(3228), - [sym_tuple_expression] = STATE(2609), - [sym_literal] = STATE(3228), - [sym_character_literal] = STATE(3278), - [sym_string_literal] = STATE(3278), - [sym_raw_string_literal] = STATE(3278), - [sym_boolean_literal] = STATE(3278), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3228), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(5152), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2196), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(5358), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3356), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3102), + [sym_postfix_unary_expression] = STATE(3079), + [sym_prefix_unary_expression] = STATE(3079), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6134), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3102), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3079), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3102), + [sym_member_access_expression] = STATE(2472), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3079), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7627), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(3102), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3102), + [sym_typeof_expression] = STATE(3102), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2472), + [sym_literal] = STATE(3102), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(688), [sym_preproc_endregion] = STATE(688), [sym_preproc_line] = STATE(688), @@ -157993,48 +157879,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(688), [sym_preproc_define] = STATE(688), [sym_preproc_undef] = STATE(688), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3396), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), + [anon_sym_SEMI] = ACTIONS(2859), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1153), - [anon_sym_LPAREN] = ACTIONS(1915), - [anon_sym_ref] = ACTIONS(1917), - [anon_sym_LBRACE] = ACTIONS(1159), - [anon_sym_delegate] = ACTIONS(1161), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1479), + [anon_sym_LPAREN] = ACTIONS(1511), + [anon_sym_ref] = ACTIONS(1513), + [anon_sym_LBRACE] = ACTIONS(1481), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1919), - [anon_sym_readonly] = ACTIONS(2749), + [anon_sym_new] = ACTIONS(1515), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1167), - [anon_sym_BANG] = ACTIONS(1923), - [anon_sym_TILDE] = ACTIONS(1923), - [anon_sym_PLUS_PLUS] = ACTIONS(1923), - [anon_sym_DASH_DASH] = ACTIONS(1923), - [anon_sym_true] = ACTIONS(1173), - [anon_sym_false] = ACTIONS(1173), - [anon_sym_PLUS] = ACTIONS(1921), - [anon_sym_DASH] = ACTIONS(1921), - [anon_sym_STAR] = ACTIONS(1925), - [anon_sym_CARET] = ACTIONS(1923), - [anon_sym_AMP] = ACTIONS(1923), - [anon_sym_this] = ACTIONS(1177), + [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(1179), + [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1181), - [anon_sym_unchecked] = ACTIONS(1167), + [sym_predefined_type] = ACTIONS(91), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1183), - [anon_sym_throw] = ACTIONS(1927), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(1517), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1929), - [anon_sym_DOT_DOT] = ACTIONS(1931), + [anon_sym_await] = ACTIONS(1519), + [anon_sym_DOT_DOT] = ACTIONS(1521), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -158047,19 +157933,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1191), - [anon_sym_sizeof] = ACTIONS(1193), - [anon_sym_typeof] = ACTIONS(1195), - [anon_sym___makeref] = ACTIONS(1197), - [anon_sym___reftype] = ACTIONS(1199), - [anon_sym___refvalue] = ACTIONS(1201), - [sym_null_literal] = ACTIONS(1203), - [anon_sym_SQUOTE] = ACTIONS(1205), - [sym_integer_literal] = ACTIONS(1203), - [sym_real_literal] = ACTIONS(1207), - [anon_sym_DQUOTE] = ACTIONS(1209), - [sym_verbatim_string_literal] = ACTIONS(1207), - [aux_sym_preproc_if_token1] = ACTIONS(1211), + [anon_sym_stackalloc] = ACTIONS(127), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_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), @@ -158070,90 +157956,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1213), - [sym_interpolation_verbatim_start] = ACTIONS(1215), - [sym_interpolation_raw_start] = ACTIONS(1217), - [sym_raw_string_start] = ACTIONS(1219), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [sym_interpolation_raw_start] = ACTIONS(155), + [sym_raw_string_start] = ACTIONS(157), }, [689] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(5889), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2247), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(2291), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(4751), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3408), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3080), - [sym_postfix_unary_expression] = STATE(3111), - [sym_prefix_unary_expression] = STATE(3111), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6161), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3080), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3111), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3080), - [sym_member_access_expression] = STATE(2484), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3111), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7323), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(3080), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3080), - [sym_typeof_expression] = STATE(3080), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2484), - [sym_literal] = STATE(3080), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(5676), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2223), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(2279), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(4679), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3468), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3102), + [sym_postfix_unary_expression] = STATE(3079), + [sym_prefix_unary_expression] = STATE(3079), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6134), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3102), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3079), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3102), + [sym_member_access_expression] = STATE(2472), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3079), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7309), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(3102), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3102), + [sym_typeof_expression] = STATE(3102), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2472), + [sym_literal] = STATE(3102), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(689), [sym_preproc_endregion] = STATE(689), [sym_preproc_line] = STATE(689), @@ -158163,48 +158049,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(689), [sym_preproc_define] = STATE(689), [sym_preproc_undef] = STATE(689), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1481), - [anon_sym_LPAREN] = ACTIONS(1483), - [anon_sym_ref] = ACTIONS(1485), - [anon_sym_LBRACE] = ACTIONS(1487), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1479), + [anon_sym_LPAREN] = ACTIONS(659), + [anon_sym_ref] = ACTIONS(2745), + [anon_sym_LBRACE] = ACTIONS(1481), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1101), - [anon_sym_readonly] = ACTIONS(2749), + [anon_sym_new] = ACTIONS(1059), + [anon_sym_readonly] = ACTIONS(2747), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1067), - [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(1485), + [anon_sym_TILDE] = ACTIONS(1485), + [anon_sym_PLUS_PLUS] = ACTIONS(1485), + [anon_sym_DASH_DASH] = ACTIONS(1485), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1489), - [anon_sym_DASH] = ACTIONS(1489), - [anon_sym_STAR] = ACTIONS(1111), - [anon_sym_CARET] = ACTIONS(1491), - [anon_sym_AMP] = ACTIONS(1491), + [anon_sym_PLUS] = ACTIONS(1483), + [anon_sym_DASH] = ACTIONS(1483), + [anon_sym_STAR] = ACTIONS(683), + [anon_sym_CARET] = ACTIONS(1485), + [anon_sym_AMP] = ACTIONS(1485), [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(2749), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1067), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1119), + [anon_sym_throw] = ACTIONS(1077), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1121), - [anon_sym_DOT_DOT] = ACTIONS(1125), + [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), @@ -158229,7 +158115,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(1089), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -158246,84 +158132,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [690] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(5910), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2247), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(5019), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3379), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3080), - [sym_postfix_unary_expression] = STATE(3111), - [sym_prefix_unary_expression] = STATE(3111), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6154), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3080), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3111), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3080), - [sym_member_access_expression] = STATE(2484), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3111), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7575), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(3080), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3080), - [sym_typeof_expression] = STATE(3080), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2484), - [sym_literal] = STATE(3080), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_block] = STATE(3058), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(5528), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2196), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(5495), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3660), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3102), + [sym_postfix_unary_expression] = STATE(3079), + [sym_prefix_unary_expression] = STATE(3079), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6163), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3102), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3079), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3102), + [sym_member_access_expression] = STATE(2472), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3079), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7633), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(3102), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3102), + [sym_typeof_expression] = STATE(3102), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2472), + [sym_literal] = STATE(3102), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(690), [sym_preproc_endregion] = STATE(690), [sym_preproc_line] = STATE(690), @@ -158333,48 +158220,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(690), [sym_preproc_define] = STATE(690), [sym_preproc_undef] = STATE(690), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1481), - [anon_sym_LPAREN] = ACTIONS(895), - [anon_sym_ref] = ACTIONS(897), - [anon_sym_LBRACE] = ACTIONS(1487), - [anon_sym_RBRACE] = ACTIONS(2859), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1479), + [anon_sym_LPAREN] = ACTIONS(2009), + [anon_sym_ref] = ACTIONS(2011), + [anon_sym_LBRACE] = ACTIONS(2855), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1061), + [anon_sym_new] = ACTIONS(1095), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1067), - [anon_sym_BANG] = ACTIONS(1495), - [anon_sym_TILDE] = ACTIONS(1495), - [anon_sym_PLUS_PLUS] = ACTIONS(1495), - [anon_sym_DASH_DASH] = ACTIONS(1495), + [anon_sym_checked] = ACTIONS(1065), + [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(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1493), - [anon_sym_DASH] = ACTIONS(1493), - [anon_sym_STAR] = ACTIONS(905), - [anon_sym_CARET] = ACTIONS(1495), - [anon_sym_AMP] = ACTIONS(1495), + [anon_sym_PLUS] = ACTIONS(2013), + [anon_sym_DASH] = ACTIONS(2013), + [anon_sym_STAR] = ACTIONS(1227), + [anon_sym_CARET] = ACTIONS(2015), + [anon_sym_AMP] = ACTIONS(2015), [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(1067), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1079), + [anon_sym_throw] = ACTIONS(1231), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1081), - [anon_sym_DOT_DOT] = ACTIONS(911), + [anon_sym_await] = ACTIONS(1233), + [anon_sym_DOT_DOT] = ACTIONS(1235), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -158399,7 +158285,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(1089), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -158416,85 +158302,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [691] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_block] = STATE(3084), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(5889), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2247), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(4501), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3408), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3080), - [sym_postfix_unary_expression] = STATE(3111), - [sym_prefix_unary_expression] = STATE(3111), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6161), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3080), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3111), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3080), - [sym_member_access_expression] = STATE(2484), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3111), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7323), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(3080), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3080), - [sym_typeof_expression] = STATE(3080), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2484), - [sym_literal] = STATE(3080), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(5152), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2196), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(5537), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3356), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3102), + [sym_postfix_unary_expression] = STATE(3079), + [sym_prefix_unary_expression] = STATE(3079), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6134), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3102), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3079), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3102), + [sym_member_access_expression] = STATE(2472), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3079), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7627), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(3102), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3102), + [sym_typeof_expression] = STATE(3102), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2472), + [sym_literal] = STATE(3102), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(691), [sym_preproc_endregion] = STATE(691), [sym_preproc_line] = STATE(691), @@ -158504,47 +158389,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(691), [sym_preproc_define] = STATE(691), [sym_preproc_undef] = STATE(691), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), + [anon_sym_SEMI] = ACTIONS(2861), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1481), - [anon_sym_LPAREN] = ACTIONS(1483), - [anon_sym_ref] = ACTIONS(1485), - [anon_sym_LBRACE] = ACTIONS(2847), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1479), + [anon_sym_LPAREN] = ACTIONS(1511), + [anon_sym_ref] = ACTIONS(1513), + [anon_sym_LBRACE] = ACTIONS(1481), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1101), + [anon_sym_new] = ACTIONS(1515), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1067), - [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(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(1489), - [anon_sym_DASH] = ACTIONS(1489), - [anon_sym_STAR] = ACTIONS(1111), - [anon_sym_CARET] = ACTIONS(1491), - [anon_sym_AMP] = ACTIONS(1491), + [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(1067), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1119), + [anon_sym_throw] = ACTIONS(1517), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1121), - [anon_sym_DOT_DOT] = ACTIONS(1125), + [anon_sym_await] = ACTIONS(1519), + [anon_sym_DOT_DOT] = ACTIONS(1521), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -158569,7 +158455,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(1089), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -158586,84 +158472,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [692] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(5312), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2225), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(2291), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(4871), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3520), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3080), - [sym_postfix_unary_expression] = STATE(3111), - [sym_prefix_unary_expression] = STATE(3111), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6154), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3080), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3111), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3080), - [sym_member_access_expression] = STATE(2484), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3111), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7530), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(3080), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3080), - [sym_typeof_expression] = STATE(3080), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2484), - [sym_literal] = STATE(3080), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(5873), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2238), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(4954), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3468), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3102), + [sym_postfix_unary_expression] = STATE(3079), + [sym_prefix_unary_expression] = STATE(3079), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6134), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3102), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3079), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3102), + [sym_member_access_expression] = STATE(2472), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3079), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7309), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(3102), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3102), + [sym_typeof_expression] = STATE(3102), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2472), + [sym_literal] = STATE(3102), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(692), [sym_preproc_endregion] = STATE(692), [sym_preproc_line] = STATE(692), @@ -158673,48 +158559,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(692), [sym_preproc_define] = STATE(692), [sym_preproc_undef] = STATE(692), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1481), - [anon_sym_LPAREN] = ACTIONS(43), - [anon_sym_ref] = ACTIONS(2303), - [anon_sym_LBRACE] = ACTIONS(1487), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1479), + [anon_sym_LPAREN] = ACTIONS(659), + [anon_sym_ref] = ACTIONS(663), + [anon_sym_LBRACE] = ACTIONS(1481), + [anon_sym_RBRACE] = ACTIONS(2863), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1061), - [anon_sym_readonly] = ACTIONS(2759), + [anon_sym_new] = ACTIONS(1059), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = 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_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(1485), + [anon_sym_TILDE] = ACTIONS(1485), + [anon_sym_PLUS_PLUS] = ACTIONS(1485), + [anon_sym_DASH_DASH] = ACTIONS(1485), [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_PLUS] = ACTIONS(1483), + [anon_sym_DASH] = ACTIONS(1483), + [anon_sym_STAR] = ACTIONS(683), + [anon_sym_CARET] = ACTIONS(1485), + [anon_sym_AMP] = ACTIONS(1485), [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(1075), + [anon_sym_scoped] = ACTIONS(85), [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(2755), + [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1067), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1589), + [anon_sym_throw] = ACTIONS(1077), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1591), - [anon_sym_DOT_DOT] = ACTIONS(123), + [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), @@ -158739,7 +158625,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(1089), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -158756,85 +158642,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [693] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_block] = STATE(3014), - [sym_bracketed_argument_list] = STATE(2420), - [sym__name] = STATE(5887), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2197), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(5125), - [sym_non_lvalue_expression] = STATE(3066), - [sym_lvalue_expression] = STATE(3552), - [sym__expression_statement_expression] = STATE(3006), - [sym_assignment_expression] = STATE(3020), - [sym_binary_expression] = STATE(3006), - [sym_postfix_unary_expression] = STATE(3020), - [sym_prefix_unary_expression] = STATE(3020), - [sym__pointer_indirection_expression] = STATE(2423), - [sym_query_expression] = STATE(3006), - [sym_from_clause] = STATE(6181), - [sym_conditional_expression] = STATE(3006), - [sym_conditional_access_expression] = STATE(3006), - [sym_as_expression] = STATE(3006), - [sym_is_expression] = STATE(3006), - [sym_is_pattern_expression] = STATE(3006), - [sym_cast_expression] = STATE(3006), - [sym_checked_expression] = STATE(3006), - [sym_invocation_expression] = STATE(3020), - [sym_switch_expression] = STATE(3006), - [sym_await_expression] = STATE(3020), - [sym_throw_expression] = STATE(3006), - [sym_element_access_expression] = STATE(2423), - [sym_interpolated_string_expression] = STATE(3006), - [sym_member_access_expression] = STATE(2423), - [sym_object_creation_expression] = STATE(3020), - [sym_parenthesized_expression] = STATE(3020), - [sym__parenthesized_lvalue_expression] = STATE(2423), - [sym_lambda_expression] = STATE(3006), - [sym__lambda_expression_init] = STATE(7493), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3006), - [sym_anonymous_method_expression] = STATE(3006), - [sym_anonymous_object_creation_expression] = STATE(3006), - [sym_implicit_array_creation_expression] = STATE(3006), - [sym_implicit_object_creation_expression] = STATE(3006), - [sym_implicit_stackalloc_expression] = STATE(3006), - [sym_initializer_expression] = STATE(3006), - [sym_default_expression] = STATE(3006), - [sym_with_expression] = STATE(3006), - [sym_sizeof_expression] = STATE(3006), - [sym_typeof_expression] = STATE(3006), - [sym_makeref_expression] = STATE(3006), - [sym_ref_expression] = STATE(3006), - [sym_reftype_expression] = STATE(3006), - [sym_refvalue_expression] = STATE(3006), - [sym_stackalloc_expression] = STATE(3006), - [sym_range_expression] = STATE(3006), - [sym_tuple_expression] = STATE(2423), - [sym_literal] = STATE(3006), - [sym_character_literal] = STATE(3011), - [sym_string_literal] = STATE(3011), - [sym_raw_string_literal] = STATE(3011), - [sym_boolean_literal] = STATE(3011), - [sym_identifier] = STATE(2267), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3006), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(5893), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2361), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(2279), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(5497), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3673), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3102), + [sym_postfix_unary_expression] = STATE(3079), + [sym_prefix_unary_expression] = STATE(3079), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6159), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3102), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3079), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3102), + [sym_member_access_expression] = STATE(2472), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3079), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7363), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(3102), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3102), + [sym_typeof_expression] = STATE(3102), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2472), + [sym_literal] = STATE(3102), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(693), [sym_preproc_endregion] = STATE(693), [sym_preproc_line] = STATE(693), @@ -158844,47 +158729,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(693), [sym_preproc_define] = STATE(693), [sym_preproc_undef] = STATE(693), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3440), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1241), - [anon_sym_LPAREN] = ACTIONS(2031), - [anon_sym_ref] = ACTIONS(2033), - [anon_sym_LBRACE] = ACTIONS(2845), - [anon_sym_delegate] = ACTIONS(1249), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1479), + [anon_sym_LPAREN] = ACTIONS(2237), + [anon_sym_ref] = ACTIONS(2239), + [anon_sym_LBRACE] = ACTIONS(1481), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1251), + [anon_sym_new] = ACTIONS(2241), + [anon_sym_readonly] = ACTIONS(2767), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1253), - [anon_sym_BANG] = ACTIONS(2037), - [anon_sym_TILDE] = ACTIONS(2037), - [anon_sym_PLUS_PLUS] = ACTIONS(2037), - [anon_sym_DASH_DASH] = ACTIONS(2037), - [anon_sym_true] = ACTIONS(1259), - [anon_sym_false] = ACTIONS(1259), - [anon_sym_PLUS] = ACTIONS(2035), - [anon_sym_DASH] = ACTIONS(2035), - [anon_sym_STAR] = ACTIONS(2039), - [anon_sym_CARET] = ACTIONS(2037), - [anon_sym_AMP] = ACTIONS(2037), - [anon_sym_this] = ACTIONS(1263), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(2245), + [anon_sym_TILDE] = ACTIONS(2245), + [anon_sym_PLUS_PLUS] = ACTIONS(2245), + [anon_sym_DASH_DASH] = ACTIONS(2245), + [anon_sym_true] = ACTIONS(77), + [anon_sym_false] = ACTIONS(77), + [anon_sym_PLUS] = ACTIONS(2243), + [anon_sym_DASH] = ACTIONS(2243), + [anon_sym_STAR] = ACTIONS(2247), + [anon_sym_CARET] = ACTIONS(2245), + [anon_sym_AMP] = ACTIONS(2245), + [anon_sym_this] = ACTIONS(83), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1265), + [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1267), - [anon_sym_unchecked] = ACTIONS(1253), + [sym_predefined_type] = ACTIONS(91), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1269), - [anon_sym_throw] = ACTIONS(2041), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(2249), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2043), - [anon_sym_DOT_DOT] = ACTIONS(2045), + [anon_sym_await] = ACTIONS(2251), + [anon_sym_DOT_DOT] = ACTIONS(2253), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -158897,19 +158783,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1277), - [anon_sym_sizeof] = ACTIONS(1279), - [anon_sym_typeof] = ACTIONS(1281), - [anon_sym___makeref] = ACTIONS(1283), - [anon_sym___reftype] = ACTIONS(1285), - [anon_sym___refvalue] = ACTIONS(1287), - [sym_null_literal] = ACTIONS(1289), - [anon_sym_SQUOTE] = ACTIONS(1291), - [sym_integer_literal] = ACTIONS(1289), - [sym_real_literal] = ACTIONS(1293), - [anon_sym_DQUOTE] = ACTIONS(1295), - [sym_verbatim_string_literal] = ACTIONS(1293), - [aux_sym_preproc_if_token1] = ACTIONS(1297), + [anon_sym_stackalloc] = ACTIONS(127), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_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), @@ -158920,90 +158806,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(1299), - [sym_interpolation_verbatim_start] = ACTIONS(1301), - [sym_interpolation_raw_start] = ACTIONS(1303), - [sym_raw_string_start] = ACTIONS(1305), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [sym_interpolation_raw_start] = ACTIONS(155), + [sym_raw_string_start] = ACTIONS(157), }, [694] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2420), - [sym__name] = STATE(5887), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2197), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(2291), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(5283), - [sym_non_lvalue_expression] = STATE(3066), - [sym_lvalue_expression] = STATE(3552), - [sym__expression_statement_expression] = STATE(3006), - [sym_assignment_expression] = STATE(3020), - [sym_binary_expression] = STATE(3006), - [sym_postfix_unary_expression] = STATE(3020), - [sym_prefix_unary_expression] = STATE(3020), - [sym__pointer_indirection_expression] = STATE(2423), - [sym_query_expression] = STATE(3006), - [sym_from_clause] = STATE(6181), - [sym_conditional_expression] = STATE(3006), - [sym_conditional_access_expression] = STATE(3006), - [sym_as_expression] = STATE(3006), - [sym_is_expression] = STATE(3006), - [sym_is_pattern_expression] = STATE(3006), - [sym_cast_expression] = STATE(3006), - [sym_checked_expression] = STATE(3006), - [sym_invocation_expression] = STATE(3020), - [sym_switch_expression] = STATE(3006), - [sym_await_expression] = STATE(3020), - [sym_throw_expression] = STATE(3006), - [sym_element_access_expression] = STATE(2423), - [sym_interpolated_string_expression] = STATE(3006), - [sym_member_access_expression] = STATE(2423), - [sym_object_creation_expression] = STATE(3020), - [sym_parenthesized_expression] = STATE(3020), - [sym__parenthesized_lvalue_expression] = STATE(2423), - [sym_lambda_expression] = STATE(3006), - [sym__lambda_expression_init] = STATE(7493), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3006), - [sym_anonymous_method_expression] = STATE(3006), - [sym_anonymous_object_creation_expression] = STATE(3006), - [sym_implicit_array_creation_expression] = STATE(3006), - [sym_implicit_object_creation_expression] = STATE(3006), - [sym_implicit_stackalloc_expression] = STATE(3006), - [sym_initializer_expression] = STATE(3006), - [sym_default_expression] = STATE(3006), - [sym_with_expression] = STATE(3006), - [sym_sizeof_expression] = STATE(3006), - [sym_typeof_expression] = STATE(3006), - [sym_makeref_expression] = STATE(3006), - [sym_ref_expression] = STATE(3006), - [sym_reftype_expression] = STATE(3006), - [sym_refvalue_expression] = STATE(3006), - [sym_stackalloc_expression] = STATE(3006), - [sym_range_expression] = STATE(3006), - [sym_tuple_expression] = STATE(2423), - [sym_literal] = STATE(3006), - [sym_character_literal] = STATE(3011), - [sym_string_literal] = STATE(3011), - [sym_raw_string_literal] = STATE(3011), - [sym_boolean_literal] = STATE(3011), - [sym_identifier] = STATE(2267), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3006), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(5873), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2238), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5904), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(4874), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3468), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3102), + [sym_postfix_unary_expression] = STATE(3079), + [sym_prefix_unary_expression] = STATE(3079), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6134), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3102), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3079), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3102), + [sym_member_access_expression] = STATE(2472), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3079), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7309), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_declaration_expression] = STATE(6798), + [sym_default_expression] = STATE(3102), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3102), + [sym_typeof_expression] = STATE(3102), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2472), + [sym_literal] = STATE(3102), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(694), [sym_preproc_endregion] = STATE(694), [sym_preproc_line] = STATE(694), @@ -159013,48 +158900,47 @@ 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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3440), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1241), - [anon_sym_LPAREN] = ACTIONS(2031), - [anon_sym_ref] = ACTIONS(2033), - [anon_sym_LBRACE] = ACTIONS(1247), - [anon_sym_delegate] = ACTIONS(1249), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1479), + [anon_sym_LPAREN] = ACTIONS(659), + [anon_sym_ref] = ACTIONS(663), + [anon_sym_LBRACE] = ACTIONS(1481), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1251), - [anon_sym_readonly] = ACTIONS(2749), + [anon_sym_new] = ACTIONS(1059), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1253), - [anon_sym_BANG] = ACTIONS(2037), - [anon_sym_TILDE] = ACTIONS(2037), - [anon_sym_PLUS_PLUS] = ACTIONS(2037), - [anon_sym_DASH_DASH] = ACTIONS(2037), - [anon_sym_true] = ACTIONS(1259), - [anon_sym_false] = ACTIONS(1259), - [anon_sym_PLUS] = ACTIONS(2035), - [anon_sym_DASH] = ACTIONS(2035), - [anon_sym_STAR] = ACTIONS(2039), - [anon_sym_CARET] = ACTIONS(2037), - [anon_sym_AMP] = ACTIONS(2037), - [anon_sym_this] = ACTIONS(1263), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(1485), + [anon_sym_TILDE] = ACTIONS(1485), + [anon_sym_PLUS_PLUS] = ACTIONS(1485), + [anon_sym_DASH_DASH] = ACTIONS(1485), + [anon_sym_true] = ACTIONS(77), + [anon_sym_false] = ACTIONS(77), + [anon_sym_PLUS] = ACTIONS(1483), + [anon_sym_DASH] = ACTIONS(1483), + [anon_sym_STAR] = ACTIONS(683), + [anon_sym_CARET] = ACTIONS(1485), + [anon_sym_AMP] = ACTIONS(1485), + [anon_sym_this] = ACTIONS(83), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1265), + [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1267), - [anon_sym_unchecked] = ACTIONS(1253), + [sym_predefined_type] = ACTIONS(91), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1269), - [anon_sym_throw] = ACTIONS(2041), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(1077), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2043), - [anon_sym_DOT_DOT] = ACTIONS(2045), + [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), @@ -159067,19 +158953,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1277), - [anon_sym_sizeof] = ACTIONS(1279), - [anon_sym_typeof] = ACTIONS(1281), - [anon_sym___makeref] = ACTIONS(1283), - [anon_sym___reftype] = ACTIONS(1285), - [anon_sym___refvalue] = ACTIONS(1287), - [sym_null_literal] = ACTIONS(1289), - [anon_sym_SQUOTE] = ACTIONS(1291), - [sym_integer_literal] = ACTIONS(1289), - [sym_real_literal] = ACTIONS(1293), - [anon_sym_DQUOTE] = ACTIONS(1295), - [sym_verbatim_string_literal] = ACTIONS(1293), - [aux_sym_preproc_if_token1] = ACTIONS(1297), + [anon_sym_stackalloc] = ACTIONS(127), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_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), @@ -159090,91 +158976,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(1299), - [sym_interpolation_verbatim_start] = ACTIONS(1301), - [sym_interpolation_raw_start] = ACTIONS(1303), - [sym_raw_string_start] = ACTIONS(1305), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [sym_interpolation_raw_start] = ACTIONS(155), + [sym_raw_string_start] = ACTIONS(157), }, [695] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_block] = STATE(3430), - [sym_bracketed_argument_list] = STATE(2762), - [sym__name] = STATE(5890), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2375), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(5016), - [sym_non_lvalue_expression] = STATE(3438), - [sym_lvalue_expression] = STATE(3526), - [sym__expression_statement_expression] = STATE(3362), - [sym_assignment_expression] = STATE(3449), - [sym_binary_expression] = STATE(3362), - [sym_postfix_unary_expression] = STATE(3449), - [sym_prefix_unary_expression] = STATE(3449), - [sym__pointer_indirection_expression] = STATE(2747), - [sym_query_expression] = STATE(3362), - [sym_from_clause] = STATE(6163), - [sym_conditional_expression] = STATE(3362), - [sym_conditional_access_expression] = STATE(3362), - [sym_as_expression] = STATE(3362), - [sym_is_expression] = STATE(3362), - [sym_is_pattern_expression] = STATE(3362), - [sym_cast_expression] = STATE(3362), - [sym_checked_expression] = STATE(3362), - [sym_invocation_expression] = STATE(3449), - [sym_switch_expression] = STATE(3362), - [sym_await_expression] = STATE(3449), - [sym_throw_expression] = STATE(3362), - [sym_element_access_expression] = STATE(2747), - [sym_interpolated_string_expression] = STATE(3362), - [sym_member_access_expression] = STATE(2747), - [sym_object_creation_expression] = STATE(3449), - [sym_parenthesized_expression] = STATE(3449), - [sym__parenthesized_lvalue_expression] = STATE(2747), - [sym_lambda_expression] = STATE(3362), - [sym__lambda_expression_init] = STATE(7529), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3362), - [sym_anonymous_method_expression] = STATE(3362), - [sym_anonymous_object_creation_expression] = STATE(3362), - [sym_implicit_array_creation_expression] = STATE(3362), - [sym_implicit_object_creation_expression] = STATE(3362), - [sym_implicit_stackalloc_expression] = STATE(3362), - [sym_initializer_expression] = STATE(3362), - [sym_default_expression] = STATE(3362), - [sym_with_expression] = STATE(3362), - [sym_sizeof_expression] = STATE(3362), - [sym_typeof_expression] = STATE(3362), - [sym_makeref_expression] = STATE(3362), - [sym_ref_expression] = STATE(3362), - [sym_reftype_expression] = STATE(3362), - [sym_refvalue_expression] = STATE(3362), - [sym_stackalloc_expression] = STATE(3362), - [sym_range_expression] = STATE(3362), - [sym_tuple_expression] = STATE(2747), - [sym_literal] = STATE(3362), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3362), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2901), + [sym__name] = STATE(5883), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2359), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(4019), + [sym_non_lvalue_expression] = STATE(3685), + [sym_lvalue_expression] = STATE(3073), + [sym__expression_statement_expression] = STATE(3836), + [sym_assignment_expression] = STATE(3689), + [sym_binary_expression] = STATE(3836), + [sym_postfix_unary_expression] = STATE(3689), + [sym_prefix_unary_expression] = STATE(3689), + [sym__pointer_indirection_expression] = STATE(2906), + [sym_query_expression] = STATE(3836), + [sym_from_clause] = STATE(6157), + [sym__ordering] = STATE(6272), + [sym_conditional_expression] = STATE(3836), + [sym_conditional_access_expression] = STATE(3836), + [sym_as_expression] = STATE(3836), + [sym_is_expression] = STATE(3836), + [sym_is_pattern_expression] = STATE(3836), + [sym_cast_expression] = STATE(3836), + [sym_checked_expression] = STATE(3836), + [sym_invocation_expression] = STATE(3689), + [sym_switch_expression] = STATE(3836), + [sym_await_expression] = STATE(3689), + [sym_throw_expression] = STATE(3836), + [sym_element_access_expression] = STATE(2906), + [sym_interpolated_string_expression] = STATE(3836), + [sym_member_access_expression] = STATE(2906), + [sym_object_creation_expression] = STATE(3689), + [sym_parenthesized_expression] = STATE(3689), + [sym__parenthesized_lvalue_expression] = STATE(2906), + [sym_lambda_expression] = STATE(3836), + [sym__lambda_expression_init] = STATE(7460), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3836), + [sym_anonymous_method_expression] = STATE(3836), + [sym_anonymous_object_creation_expression] = STATE(3836), + [sym_implicit_array_creation_expression] = STATE(3836), + [sym_implicit_object_creation_expression] = STATE(3836), + [sym_implicit_stackalloc_expression] = STATE(3836), + [sym_initializer_expression] = STATE(3836), + [sym_default_expression] = STATE(3836), + [sym_with_expression] = STATE(3836), + [sym_sizeof_expression] = STATE(3836), + [sym_typeof_expression] = STATE(3836), + [sym_makeref_expression] = STATE(3836), + [sym_ref_expression] = STATE(3836), + [sym_reftype_expression] = STATE(3836), + [sym_refvalue_expression] = STATE(3836), + [sym_stackalloc_expression] = STATE(3836), + [sym_range_expression] = STATE(3836), + [sym_tuple_expression] = STATE(2906), + [sym_literal] = STATE(3836), + [sym_character_literal] = STATE(3843), + [sym_string_literal] = STATE(3843), + [sym_raw_string_literal] = STATE(3843), + [sym_boolean_literal] = STATE(3843), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3836), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(695), [sym_preproc_endregion] = STATE(695), [sym_preproc_line] = STATE(695), @@ -159184,47 +159070,47 @@ 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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3385), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3477), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1307), - [anon_sym_LPAREN] = ACTIONS(1805), - [anon_sym_ref] = ACTIONS(1807), - [anon_sym_LBRACE] = ACTIONS(2857), - [anon_sym_delegate] = ACTIONS(1315), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1655), + [anon_sym_LPAREN] = ACTIONS(2061), + [anon_sym_ref] = ACTIONS(2063), + [anon_sym_LBRACE] = ACTIONS(1661), + [anon_sym_delegate] = ACTIONS(1663), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1809), + [anon_sym_new] = ACTIONS(1665), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1319), - [anon_sym_BANG] = ACTIONS(1813), - [anon_sym_TILDE] = ACTIONS(1813), - [anon_sym_PLUS_PLUS] = ACTIONS(1813), - [anon_sym_DASH_DASH] = ACTIONS(1813), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1811), - [anon_sym_DASH] = ACTIONS(1811), - [anon_sym_STAR] = ACTIONS(1815), - [anon_sym_CARET] = ACTIONS(1813), - [anon_sym_AMP] = ACTIONS(1813), - [anon_sym_this] = ACTIONS(1323), + [anon_sym_checked] = ACTIONS(1667), + [anon_sym_BANG] = ACTIONS(2067), + [anon_sym_TILDE] = ACTIONS(2067), + [anon_sym_PLUS_PLUS] = ACTIONS(2067), + [anon_sym_DASH_DASH] = ACTIONS(2067), + [anon_sym_true] = ACTIONS(1673), + [anon_sym_false] = ACTIONS(1673), + [anon_sym_PLUS] = ACTIONS(2065), + [anon_sym_DASH] = ACTIONS(2065), + [anon_sym_STAR] = ACTIONS(1675), + [anon_sym_CARET] = ACTIONS(2067), + [anon_sym_AMP] = ACTIONS(2067), + [anon_sym_this] = ACTIONS(1677), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1325), + [anon_sym_base] = ACTIONS(1679), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1319), + [sym_predefined_type] = ACTIONS(1681), + [anon_sym_unchecked] = ACTIONS(1667), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1817), + [anon_sym_default] = ACTIONS(1683), + [anon_sym_throw] = ACTIONS(2069), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1819), - [anon_sym_DOT_DOT] = ACTIONS(1821), + [anon_sym_await] = ACTIONS(2071), + [anon_sym_DOT_DOT] = ACTIONS(2073), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -159237,19 +159123,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1333), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(1335), - [anon_sym___reftype] = ACTIONS(1337), - [anon_sym___refvalue] = ACTIONS(1339), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1341), + [anon_sym_stackalloc] = ACTIONS(1691), + [anon_sym_sizeof] = ACTIONS(1693), + [anon_sym_typeof] = ACTIONS(1695), + [anon_sym___makeref] = ACTIONS(1697), + [anon_sym___reftype] = ACTIONS(1699), + [anon_sym___refvalue] = ACTIONS(1701), + [sym_null_literal] = ACTIONS(1703), + [anon_sym_SQUOTE] = ACTIONS(1705), + [sym_integer_literal] = ACTIONS(1703), + [sym_real_literal] = ACTIONS(1707), + [anon_sym_DQUOTE] = ACTIONS(1709), + [sym_verbatim_string_literal] = ACTIONS(1707), + [aux_sym_preproc_if_token1] = ACTIONS(1711), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -159260,91 +159146,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(1713), + [sym_interpolation_verbatim_start] = ACTIONS(1715), + [sym_interpolation_raw_start] = ACTIONS(1717), + [sym_raw_string_start] = ACTIONS(1719), }, [696] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_block] = STATE(3316), - [sym_bracketed_argument_list] = STATE(2610), - [sym__name] = STATE(5872), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2397), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(4726), - [sym_non_lvalue_expression] = STATE(3277), - [sym_lvalue_expression] = STATE(3407), - [sym__expression_statement_expression] = STATE(3228), - [sym_assignment_expression] = STATE(3289), - [sym_binary_expression] = STATE(3228), - [sym_postfix_unary_expression] = STATE(3289), - [sym_prefix_unary_expression] = STATE(3289), - [sym__pointer_indirection_expression] = STATE(2609), - [sym_query_expression] = STATE(3228), - [sym_from_clause] = STATE(6165), - [sym_conditional_expression] = STATE(3228), - [sym_conditional_access_expression] = STATE(3228), - [sym_as_expression] = STATE(3228), - [sym_is_expression] = STATE(3228), - [sym_is_pattern_expression] = STATE(3228), - [sym_cast_expression] = STATE(3228), - [sym_checked_expression] = STATE(3228), - [sym_invocation_expression] = STATE(3289), - [sym_switch_expression] = STATE(3228), - [sym_await_expression] = STATE(3289), - [sym_throw_expression] = STATE(3228), - [sym_element_access_expression] = STATE(2609), - [sym_interpolated_string_expression] = STATE(3228), - [sym_member_access_expression] = STATE(2609), - [sym_object_creation_expression] = STATE(3289), - [sym_parenthesized_expression] = STATE(3289), - [sym__parenthesized_lvalue_expression] = STATE(2609), - [sym_lambda_expression] = STATE(3228), - [sym__lambda_expression_init] = STATE(7478), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3228), - [sym_anonymous_method_expression] = STATE(3228), - [sym_anonymous_object_creation_expression] = STATE(3228), - [sym_implicit_array_creation_expression] = STATE(3228), - [sym_implicit_object_creation_expression] = STATE(3228), - [sym_implicit_stackalloc_expression] = STATE(3228), - [sym_initializer_expression] = STATE(3228), - [sym_default_expression] = STATE(3228), - [sym_with_expression] = STATE(3228), - [sym_sizeof_expression] = STATE(3228), - [sym_typeof_expression] = STATE(3228), - [sym_makeref_expression] = STATE(3228), - [sym_ref_expression] = STATE(3228), - [sym_reftype_expression] = STATE(3228), - [sym_refvalue_expression] = STATE(3228), - [sym_stackalloc_expression] = STATE(3228), - [sym_range_expression] = STATE(3228), - [sym_tuple_expression] = STATE(2609), - [sym_literal] = STATE(3228), - [sym_character_literal] = STATE(3278), - [sym_string_literal] = STATE(3278), - [sym_raw_string_literal] = STATE(3278), - [sym_boolean_literal] = STATE(3278), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3228), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(5873), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2238), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5904), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(4910), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3468), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3102), + [sym_postfix_unary_expression] = STATE(3079), + [sym_prefix_unary_expression] = STATE(3079), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6134), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3102), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3079), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3102), + [sym_member_access_expression] = STATE(2472), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3079), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7309), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_declaration_expression] = STATE(6723), + [sym_default_expression] = STATE(3102), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3102), + [sym_typeof_expression] = STATE(3102), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2472), + [sym_literal] = STATE(3102), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(696), [sym_preproc_endregion] = STATE(696), [sym_preproc_line] = STATE(696), @@ -159354,47 +159240,47 @@ 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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3396), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1153), - [anon_sym_LPAREN] = ACTIONS(1823), - [anon_sym_ref] = ACTIONS(1825), - [anon_sym_LBRACE] = ACTIONS(2843), - [anon_sym_delegate] = ACTIONS(1161), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1479), + [anon_sym_LPAREN] = ACTIONS(659), + [anon_sym_ref] = ACTIONS(663), + [anon_sym_LBRACE] = ACTIONS(1481), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1827), + [anon_sym_new] = ACTIONS(1059), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1167), - [anon_sym_BANG] = ACTIONS(1831), - [anon_sym_TILDE] = ACTIONS(1831), - [anon_sym_PLUS_PLUS] = ACTIONS(1831), - [anon_sym_DASH_DASH] = ACTIONS(1831), - [anon_sym_true] = ACTIONS(1173), - [anon_sym_false] = ACTIONS(1173), - [anon_sym_PLUS] = ACTIONS(1829), - [anon_sym_DASH] = ACTIONS(1829), - [anon_sym_STAR] = ACTIONS(1833), - [anon_sym_CARET] = ACTIONS(1831), - [anon_sym_AMP] = ACTIONS(1831), - [anon_sym_this] = ACTIONS(1177), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(1485), + [anon_sym_TILDE] = ACTIONS(1485), + [anon_sym_PLUS_PLUS] = ACTIONS(1485), + [anon_sym_DASH_DASH] = ACTIONS(1485), + [anon_sym_true] = ACTIONS(77), + [anon_sym_false] = ACTIONS(77), + [anon_sym_PLUS] = ACTIONS(1483), + [anon_sym_DASH] = ACTIONS(1483), + [anon_sym_STAR] = ACTIONS(683), + [anon_sym_CARET] = ACTIONS(1485), + [anon_sym_AMP] = ACTIONS(1485), + [anon_sym_this] = ACTIONS(83), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1179), + [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1181), - [anon_sym_unchecked] = ACTIONS(1167), + [sym_predefined_type] = ACTIONS(91), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1183), - [anon_sym_throw] = ACTIONS(1835), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(1077), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1837), - [anon_sym_DOT_DOT] = ACTIONS(1839), + [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), @@ -159407,19 +159293,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1191), - [anon_sym_sizeof] = ACTIONS(1193), - [anon_sym_typeof] = ACTIONS(1195), - [anon_sym___makeref] = ACTIONS(1197), - [anon_sym___reftype] = ACTIONS(1199), - [anon_sym___refvalue] = ACTIONS(1201), - [sym_null_literal] = ACTIONS(1203), - [anon_sym_SQUOTE] = ACTIONS(1205), - [sym_integer_literal] = ACTIONS(1203), - [sym_real_literal] = ACTIONS(1207), - [anon_sym_DQUOTE] = ACTIONS(1209), - [sym_verbatim_string_literal] = ACTIONS(1207), - [aux_sym_preproc_if_token1] = ACTIONS(1211), + [anon_sym_stackalloc] = ACTIONS(127), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_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), @@ -159430,90 +159316,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(1213), - [sym_interpolation_verbatim_start] = ACTIONS(1215), - [sym_interpolation_raw_start] = ACTIONS(1217), - [sym_raw_string_start] = ACTIONS(1219), + [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(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2762), - [sym__name] = STATE(5890), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2375), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(2291), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(5033), - [sym_non_lvalue_expression] = STATE(3438), - [sym_lvalue_expression] = STATE(3526), - [sym__expression_statement_expression] = STATE(3362), - [sym_assignment_expression] = STATE(3449), - [sym_binary_expression] = STATE(3362), - [sym_postfix_unary_expression] = STATE(3449), - [sym_prefix_unary_expression] = STATE(3449), - [sym__pointer_indirection_expression] = STATE(2747), - [sym_query_expression] = STATE(3362), - [sym_from_clause] = STATE(6163), - [sym_conditional_expression] = STATE(3362), - [sym_conditional_access_expression] = STATE(3362), - [sym_as_expression] = STATE(3362), - [sym_is_expression] = STATE(3362), - [sym_is_pattern_expression] = STATE(3362), - [sym_cast_expression] = STATE(3362), - [sym_checked_expression] = STATE(3362), - [sym_invocation_expression] = STATE(3449), - [sym_switch_expression] = STATE(3362), - [sym_await_expression] = STATE(3449), - [sym_throw_expression] = STATE(3362), - [sym_element_access_expression] = STATE(2747), - [sym_interpolated_string_expression] = STATE(3362), - [sym_member_access_expression] = STATE(2747), - [sym_object_creation_expression] = STATE(3449), - [sym_parenthesized_expression] = STATE(3449), - [sym__parenthesized_lvalue_expression] = STATE(2747), - [sym_lambda_expression] = STATE(3362), - [sym__lambda_expression_init] = STATE(7529), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3362), - [sym_anonymous_method_expression] = STATE(3362), - [sym_anonymous_object_creation_expression] = STATE(3362), - [sym_implicit_array_creation_expression] = STATE(3362), - [sym_implicit_object_creation_expression] = STATE(3362), - [sym_implicit_stackalloc_expression] = STATE(3362), - [sym_initializer_expression] = STATE(3362), - [sym_default_expression] = STATE(3362), - [sym_with_expression] = STATE(3362), - [sym_sizeof_expression] = STATE(3362), - [sym_typeof_expression] = STATE(3362), - [sym_makeref_expression] = STATE(3362), - [sym_ref_expression] = STATE(3362), - [sym_reftype_expression] = STATE(3362), - [sym_refvalue_expression] = STATE(3362), - [sym_stackalloc_expression] = STATE(3362), - [sym_range_expression] = STATE(3362), - [sym_tuple_expression] = STATE(2747), - [sym_literal] = STATE(3362), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3362), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_block] = STATE(3058), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(5152), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2196), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(4801), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3356), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3102), + [sym_postfix_unary_expression] = STATE(3079), + [sym_prefix_unary_expression] = STATE(3079), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6134), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3102), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3079), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3102), + [sym_member_access_expression] = STATE(2472), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3079), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7627), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(3102), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3102), + [sym_typeof_expression] = STATE(3102), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2472), + [sym_literal] = STATE(3102), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(697), [sym_preproc_endregion] = STATE(697), [sym_preproc_line] = STATE(697), @@ -159523,48 +159410,47 @@ 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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3385), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1307), - [anon_sym_LPAREN] = ACTIONS(1805), - [anon_sym_ref] = ACTIONS(1807), - [anon_sym_LBRACE] = ACTIONS(1313), - [anon_sym_delegate] = ACTIONS(1315), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1479), + [anon_sym_LPAREN] = ACTIONS(1511), + [anon_sym_ref] = ACTIONS(1513), + [anon_sym_LBRACE] = ACTIONS(2855), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1809), - [anon_sym_readonly] = ACTIONS(2749), + [anon_sym_new] = ACTIONS(1515), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1319), - [anon_sym_BANG] = ACTIONS(1813), - [anon_sym_TILDE] = ACTIONS(1813), - [anon_sym_PLUS_PLUS] = ACTIONS(1813), - [anon_sym_DASH_DASH] = ACTIONS(1813), + [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(1811), - [anon_sym_DASH] = ACTIONS(1811), - [anon_sym_STAR] = ACTIONS(1815), - [anon_sym_CARET] = ACTIONS(1813), - [anon_sym_AMP] = ACTIONS(1813), - [anon_sym_this] = ACTIONS(1323), + [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(1325), + [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1319), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1817), + [anon_sym_throw] = ACTIONS(1517), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1819), - [anon_sym_DOT_DOT] = ACTIONS(1821), + [anon_sym_await] = ACTIONS(1519), + [anon_sym_DOT_DOT] = ACTIONS(1521), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -159577,19 +159463,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1333), + [anon_sym_stackalloc] = ACTIONS(127), [anon_sym_sizeof] = ACTIONS(129), [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(1335), - [anon_sym___reftype] = ACTIONS(1337), - [anon_sym___refvalue] = ACTIONS(1339), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), [sym_null_literal] = ACTIONS(139), [anon_sym_SQUOTE] = ACTIONS(141), [sym_integer_literal] = ACTIONS(139), [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1341), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -159606,84 +159492,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [698] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2610), - [sym__name] = STATE(5872), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2397), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(2291), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(4728), - [sym_non_lvalue_expression] = STATE(3277), - [sym_lvalue_expression] = STATE(3407), - [sym__expression_statement_expression] = STATE(3228), - [sym_assignment_expression] = STATE(3289), - [sym_binary_expression] = STATE(3228), - [sym_postfix_unary_expression] = STATE(3289), - [sym_prefix_unary_expression] = STATE(3289), - [sym__pointer_indirection_expression] = STATE(2609), - [sym_query_expression] = STATE(3228), - [sym_from_clause] = STATE(6165), - [sym_conditional_expression] = STATE(3228), - [sym_conditional_access_expression] = STATE(3228), - [sym_as_expression] = STATE(3228), - [sym_is_expression] = STATE(3228), - [sym_is_pattern_expression] = STATE(3228), - [sym_cast_expression] = STATE(3228), - [sym_checked_expression] = STATE(3228), - [sym_invocation_expression] = STATE(3289), - [sym_switch_expression] = STATE(3228), - [sym_await_expression] = STATE(3289), - [sym_throw_expression] = STATE(3228), - [sym_element_access_expression] = STATE(2609), - [sym_interpolated_string_expression] = STATE(3228), - [sym_member_access_expression] = STATE(2609), - [sym_object_creation_expression] = STATE(3289), - [sym_parenthesized_expression] = STATE(3289), - [sym__parenthesized_lvalue_expression] = STATE(2609), - [sym_lambda_expression] = STATE(3228), - [sym__lambda_expression_init] = STATE(7478), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3228), - [sym_anonymous_method_expression] = STATE(3228), - [sym_anonymous_object_creation_expression] = STATE(3228), - [sym_implicit_array_creation_expression] = STATE(3228), - [sym_implicit_object_creation_expression] = STATE(3228), - [sym_implicit_stackalloc_expression] = STATE(3228), - [sym_initializer_expression] = STATE(3228), - [sym_default_expression] = STATE(3228), - [sym_with_expression] = STATE(3228), - [sym_sizeof_expression] = STATE(3228), - [sym_typeof_expression] = STATE(3228), - [sym_makeref_expression] = STATE(3228), - [sym_ref_expression] = STATE(3228), - [sym_reftype_expression] = STATE(3228), - [sym_refvalue_expression] = STATE(3228), - [sym_stackalloc_expression] = STATE(3228), - [sym_range_expression] = STATE(3228), - [sym_tuple_expression] = STATE(2609), - [sym_literal] = STATE(3228), - [sym_character_literal] = STATE(3278), - [sym_string_literal] = STATE(3278), - [sym_raw_string_literal] = STATE(3278), - [sym_boolean_literal] = STATE(3278), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3228), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(2429), + [sym_alias_qualified_name] = STATE(2402), + [sym__simple_name] = STATE(2187), + [sym_qualified_name] = STATE(2402), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(2279), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(2373), + [sym__array_base_type] = STATE(7083), + [sym_nullable_type] = STATE(2375), + [sym_pointer_type] = STATE(2375), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(2375), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(2377), + [sym_expression] = STATE(5042), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3510), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3102), + [sym_postfix_unary_expression] = STATE(3079), + [sym_prefix_unary_expression] = STATE(3079), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6134), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3102), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3079), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3102), + [sym_member_access_expression] = STATE(2472), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3079), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7425), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(3102), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3102), + [sym_typeof_expression] = STATE(3102), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2472), + [sym_literal] = STATE(3102), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2260), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(698), [sym_preproc_endregion] = STATE(698), [sym_preproc_line] = STATE(698), @@ -159693,48 +159579,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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3396), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1153), - [anon_sym_LPAREN] = ACTIONS(1823), - [anon_sym_ref] = ACTIONS(1825), - [anon_sym_LBRACE] = ACTIONS(1159), - [anon_sym_delegate] = ACTIONS(1161), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1479), + [anon_sym_LPAREN] = ACTIONS(2849), + [anon_sym_ref] = ACTIONS(2499), + [anon_sym_LBRACE] = ACTIONS(1481), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1827), - [anon_sym_readonly] = ACTIONS(2749), + [anon_sym_new] = ACTIONS(1059), + [anon_sym_readonly] = ACTIONS(2851), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1167), - [anon_sym_BANG] = ACTIONS(1831), - [anon_sym_TILDE] = ACTIONS(1831), - [anon_sym_PLUS_PLUS] = ACTIONS(1831), - [anon_sym_DASH_DASH] = ACTIONS(1831), - [anon_sym_true] = ACTIONS(1173), - [anon_sym_false] = ACTIONS(1173), - [anon_sym_PLUS] = ACTIONS(1829), - [anon_sym_DASH] = ACTIONS(1829), - [anon_sym_STAR] = ACTIONS(1833), - [anon_sym_CARET] = ACTIONS(1831), - [anon_sym_AMP] = ACTIONS(1831), - [anon_sym_this] = ACTIONS(1177), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1179), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1181), - [anon_sym_unchecked] = ACTIONS(1167), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(1525), + [anon_sym_TILDE] = ACTIONS(1525), + [anon_sym_PLUS_PLUS] = ACTIONS(1525), + [anon_sym_DASH_DASH] = ACTIONS(1525), + [anon_sym_true] = ACTIONS(77), + [anon_sym_false] = ACTIONS(77), + [anon_sym_PLUS] = ACTIONS(1523), + [anon_sym_DASH] = ACTIONS(1523), + [anon_sym_STAR] = ACTIONS(81), + [anon_sym_CARET] = ACTIONS(1525), + [anon_sym_AMP] = ACTIONS(1525), + [anon_sym_this] = ACTIONS(83), + [anon_sym_scoped] = ACTIONS(2349), + [anon_sym_base] = ACTIONS(87), + [anon_sym_var] = ACTIONS(2865), + [sym_predefined_type] = ACTIONS(2353), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1183), - [anon_sym_throw] = ACTIONS(1835), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(1527), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1837), - [anon_sym_DOT_DOT] = ACTIONS(1839), + [anon_sym_await] = ACTIONS(1529), + [anon_sym_DOT_DOT] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -159747,19 +159633,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1191), - [anon_sym_sizeof] = ACTIONS(1193), - [anon_sym_typeof] = ACTIONS(1195), - [anon_sym___makeref] = ACTIONS(1197), - [anon_sym___reftype] = ACTIONS(1199), - [anon_sym___refvalue] = ACTIONS(1201), - [sym_null_literal] = ACTIONS(1203), - [anon_sym_SQUOTE] = ACTIONS(1205), - [sym_integer_literal] = ACTIONS(1203), - [sym_real_literal] = ACTIONS(1207), - [anon_sym_DQUOTE] = ACTIONS(1209), - [sym_verbatim_string_literal] = ACTIONS(1207), - [aux_sym_preproc_if_token1] = ACTIONS(1211), + [anon_sym_stackalloc] = ACTIONS(127), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_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), @@ -159770,91 +159656,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1213), - [sym_interpolation_verbatim_start] = ACTIONS(1215), - [sym_interpolation_raw_start] = ACTIONS(1217), - [sym_raw_string_start] = ACTIONS(1219), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [sym_interpolation_raw_start] = ACTIONS(155), + [sym_raw_string_start] = ACTIONS(157), }, [699] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(5910), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2247), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5920), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(4920), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3379), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3080), - [sym_postfix_unary_expression] = STATE(3111), - [sym_prefix_unary_expression] = STATE(3111), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6154), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3080), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3111), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3080), - [sym_member_access_expression] = STATE(2484), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3111), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7575), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_declaration_expression] = STATE(7021), - [sym_default_expression] = STATE(3080), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3080), - [sym_typeof_expression] = STATE(3080), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2484), - [sym_literal] = STATE(3080), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(3182), + [sym__name] = STATE(5882), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2306), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2262), + [sym_type] = STATE(2279), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(4923), + [sym_non_lvalue_expression] = STATE(4580), + [sym_lvalue_expression] = STATE(3534), + [sym__expression_statement_expression] = STATE(4573), + [sym_assignment_expression] = STATE(4581), + [sym_binary_expression] = STATE(4573), + [sym_postfix_unary_expression] = STATE(4581), + [sym_prefix_unary_expression] = STATE(4581), + [sym__pointer_indirection_expression] = STATE(3144), + [sym_query_expression] = STATE(4573), + [sym_from_clause] = STATE(6133), + [sym_conditional_expression] = STATE(4573), + [sym_conditional_access_expression] = STATE(4573), + [sym_as_expression] = STATE(4573), + [sym_is_expression] = STATE(4573), + [sym_is_pattern_expression] = STATE(4573), + [sym_cast_expression] = STATE(4573), + [sym_checked_expression] = STATE(4573), + [sym_invocation_expression] = STATE(4581), + [sym_switch_expression] = STATE(4573), + [sym_await_expression] = STATE(4581), + [sym_throw_expression] = STATE(4573), + [sym_element_access_expression] = STATE(3144), + [sym_interpolated_string_expression] = STATE(4573), + [sym_member_access_expression] = STATE(3144), + [sym_object_creation_expression] = STATE(4581), + [sym_parenthesized_expression] = STATE(4581), + [sym__parenthesized_lvalue_expression] = STATE(3144), + [sym_lambda_expression] = STATE(4573), + [sym__lambda_expression_init] = STATE(7592), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(4573), + [sym_anonymous_method_expression] = STATE(4573), + [sym_anonymous_object_creation_expression] = STATE(4573), + [sym_implicit_array_creation_expression] = STATE(4573), + [sym_implicit_object_creation_expression] = STATE(4573), + [sym_implicit_stackalloc_expression] = STATE(4573), + [sym_initializer_expression] = STATE(4573), + [sym_default_expression] = STATE(4573), + [sym_with_expression] = STATE(4573), + [sym_sizeof_expression] = STATE(4573), + [sym_typeof_expression] = STATE(4573), + [sym_makeref_expression] = STATE(4573), + [sym_ref_expression] = STATE(4573), + [sym_reftype_expression] = STATE(4573), + [sym_refvalue_expression] = STATE(4573), + [sym_stackalloc_expression] = STATE(4573), + [sym_range_expression] = STATE(4573), + [sym_tuple_expression] = STATE(3144), + [sym_literal] = STATE(4573), + [sym_character_literal] = STATE(4575), + [sym_string_literal] = STATE(4575), + [sym_raw_string_literal] = STATE(4575), + [sym_boolean_literal] = STATE(4575), + [sym_identifier] = STATE(2237), + [sym__reserved_identifier] = STATE(2229), + [sym_preproc_if_in_expression] = STATE(4573), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(699), [sym_preproc_endregion] = STATE(699), [sym_preproc_line] = STATE(699), @@ -159864,47 +159749,218 @@ 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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3501), + [sym__identifier_token] = ACTIONS(1385), + [anon_sym_alias] = ACTIONS(1387), + [anon_sym_global] = ACTIONS(1387), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1389), + [anon_sym_LPAREN] = ACTIONS(1773), + [anon_sym_ref] = ACTIONS(1775), + [anon_sym_LBRACE] = ACTIONS(1395), + [anon_sym_delegate] = ACTIONS(1397), + [anon_sym_async] = ACTIONS(1045), + [anon_sym_file] = ACTIONS(1387), + [anon_sym_new] = ACTIONS(1465), + [anon_sym_readonly] = ACTIONS(2767), + [anon_sym_where] = ACTIONS(1387), + [anon_sym_notnull] = ACTIONS(1387), + [anon_sym_unmanaged] = ACTIONS(1387), + [anon_sym_checked] = ACTIONS(1401), + [anon_sym_BANG] = ACTIONS(1779), + [anon_sym_TILDE] = ACTIONS(1779), + [anon_sym_PLUS_PLUS] = ACTIONS(1779), + [anon_sym_DASH_DASH] = ACTIONS(1779), + [anon_sym_true] = ACTIONS(1407), + [anon_sym_false] = ACTIONS(1407), + [anon_sym_PLUS] = ACTIONS(1777), + [anon_sym_DASH] = ACTIONS(1777), + [anon_sym_STAR] = ACTIONS(1471), + [anon_sym_CARET] = ACTIONS(1779), + [anon_sym_AMP] = ACTIONS(1779), + [anon_sym_this] = ACTIONS(1411), + [anon_sym_scoped] = ACTIONS(1413), + [anon_sym_base] = ACTIONS(1415), + [anon_sym_var] = ACTIONS(1417), + [sym_predefined_type] = ACTIONS(1419), + [anon_sym_unchecked] = ACTIONS(1401), + [anon_sym_yield] = ACTIONS(1387), + [anon_sym_default] = ACTIONS(1421), + [anon_sym_throw] = ACTIONS(1781), + [anon_sym_when] = ACTIONS(1387), + [anon_sym_await] = ACTIONS(1783), + [anon_sym_DOT_DOT] = ACTIONS(1785), + [anon_sym_from] = ACTIONS(1429), + [anon_sym_into] = ACTIONS(1387), + [anon_sym_join] = ACTIONS(1387), + [anon_sym_on] = ACTIONS(1387), + [anon_sym_equals] = ACTIONS(1387), + [anon_sym_let] = ACTIONS(1387), + [anon_sym_orderby] = ACTIONS(1387), + [anon_sym_ascending] = ACTIONS(1387), + [anon_sym_descending] = ACTIONS(1387), + [anon_sym_group] = ACTIONS(1387), + [anon_sym_by] = ACTIONS(1387), + [anon_sym_select] = ACTIONS(1387), + [anon_sym_stackalloc] = ACTIONS(1431), + [anon_sym_sizeof] = ACTIONS(1433), + [anon_sym_typeof] = ACTIONS(1435), + [anon_sym___makeref] = ACTIONS(1437), + [anon_sym___reftype] = ACTIONS(1439), + [anon_sym___refvalue] = ACTIONS(1441), + [sym_null_literal] = ACTIONS(1443), + [anon_sym_SQUOTE] = ACTIONS(1445), + [sym_integer_literal] = ACTIONS(1443), + [sym_real_literal] = ACTIONS(1447), + [anon_sym_DQUOTE] = ACTIONS(1449), + [sym_verbatim_string_literal] = ACTIONS(1447), + [aux_sym_preproc_if_token1] = ACTIONS(1451), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + [sym_interpolation_regular_start] = ACTIONS(1453), + [sym_interpolation_verbatim_start] = ACTIONS(1455), + [sym_interpolation_raw_start] = ACTIONS(1457), + [sym_raw_string_start] = ACTIONS(1459), + }, + [700] = { + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(5873), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2238), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(4954), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3468), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3102), + [sym_postfix_unary_expression] = STATE(3079), + [sym_prefix_unary_expression] = STATE(3079), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6134), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3102), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3079), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3102), + [sym_member_access_expression] = STATE(2472), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3079), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7309), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(3102), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3102), + [sym_typeof_expression] = STATE(3102), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2472), + [sym_literal] = STATE(3102), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), + [sym_preproc_region] = STATE(700), + [sym_preproc_endregion] = STATE(700), + [sym_preproc_line] = STATE(700), + [sym_preproc_pragma] = STATE(700), + [sym_preproc_nullable] = STATE(700), + [sym_preproc_error] = STATE(700), + [sym_preproc_warning] = STATE(700), + [sym_preproc_define] = STATE(700), + [sym_preproc_undef] = STATE(700), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1481), - [anon_sym_LPAREN] = ACTIONS(895), - [anon_sym_ref] = ACTIONS(897), - [anon_sym_LBRACE] = ACTIONS(1487), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1479), + [anon_sym_LPAREN] = ACTIONS(659), + [anon_sym_ref] = ACTIONS(663), + [anon_sym_LBRACE] = ACTIONS(1481), + [anon_sym_RBRACE] = ACTIONS(2867), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1061), + [anon_sym_new] = ACTIONS(1059), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1067), - [anon_sym_BANG] = ACTIONS(1495), - [anon_sym_TILDE] = ACTIONS(1495), - [anon_sym_PLUS_PLUS] = ACTIONS(1495), - [anon_sym_DASH_DASH] = ACTIONS(1495), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(1485), + [anon_sym_TILDE] = ACTIONS(1485), + [anon_sym_PLUS_PLUS] = ACTIONS(1485), + [anon_sym_DASH_DASH] = ACTIONS(1485), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1493), - [anon_sym_DASH] = ACTIONS(1493), - [anon_sym_STAR] = ACTIONS(905), - [anon_sym_CARET] = ACTIONS(1495), - [anon_sym_AMP] = ACTIONS(1495), + [anon_sym_PLUS] = ACTIONS(1483), + [anon_sym_DASH] = ACTIONS(1483), + [anon_sym_STAR] = ACTIONS(683), + [anon_sym_CARET] = ACTIONS(1485), + [anon_sym_AMP] = ACTIONS(1485), [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(1067), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1079), + [anon_sym_throw] = ACTIONS(1077), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1081), - [anon_sym_DOT_DOT] = ACTIONS(911), + [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), @@ -159929,7 +159985,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(1089), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -159945,136 +160001,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), }, - [700] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(5891), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2372), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(2291), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(5533), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3653), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3080), - [sym_postfix_unary_expression] = STATE(3111), - [sym_prefix_unary_expression] = STATE(3111), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6158), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3080), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3111), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3080), - [sym_member_access_expression] = STATE(2484), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3111), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7448), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(3080), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3080), - [sym_typeof_expression] = STATE(3080), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2484), - [sym_literal] = STATE(3080), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), - [sym_preproc_region] = STATE(700), - [sym_preproc_endregion] = STATE(700), - [sym_preproc_line] = STATE(700), - [sym_preproc_pragma] = STATE(700), - [sym_preproc_nullable] = STATE(700), - [sym_preproc_error] = STATE(700), - [sym_preproc_warning] = STATE(700), - [sym_preproc_define] = STATE(700), - [sym_preproc_undef] = STATE(700), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [701] = { + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_block] = STATE(3058), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(5152), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2196), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(5442), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3683), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3102), + [sym_postfix_unary_expression] = STATE(3079), + [sym_prefix_unary_expression] = STATE(3079), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6147), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3102), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3079), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3102), + [sym_member_access_expression] = STATE(2472), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3079), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7404), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(3102), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3102), + [sym_typeof_expression] = STATE(3102), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2472), + [sym_literal] = STATE(3102), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2261), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), + [sym_preproc_region] = STATE(701), + [sym_preproc_endregion] = STATE(701), + [sym_preproc_line] = STATE(701), + [sym_preproc_pragma] = STATE(701), + [sym_preproc_nullable] = STATE(701), + [sym_preproc_error] = STATE(701), + [sym_preproc_warning] = STATE(701), + [sym_preproc_define] = STATE(701), + [sym_preproc_undef] = STATE(701), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1481), - [anon_sym_LPAREN] = ACTIONS(2159), - [anon_sym_ref] = ACTIONS(2161), - [anon_sym_LBRACE] = ACTIONS(1487), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1479), + [anon_sym_LPAREN] = ACTIONS(1965), + [anon_sym_ref] = ACTIONS(1967), + [anon_sym_LBRACE] = ACTIONS(2855), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(2163), - [anon_sym_readonly] = ACTIONS(2749), + [anon_sym_new] = ACTIONS(1059), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1067), - [anon_sym_BANG] = ACTIONS(2167), - [anon_sym_TILDE] = ACTIONS(2167), - [anon_sym_PLUS_PLUS] = ACTIONS(2167), - [anon_sym_DASH_DASH] = ACTIONS(2167), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(1971), + [anon_sym_TILDE] = ACTIONS(1971), + [anon_sym_PLUS_PLUS] = ACTIONS(1971), + [anon_sym_DASH_DASH] = ACTIONS(1971), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [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_PLUS] = ACTIONS(1969), + [anon_sym_DASH] = ACTIONS(1969), + [anon_sym_STAR] = ACTIONS(1973), + [anon_sym_CARET] = ACTIONS(1971), + [anon_sym_AMP] = ACTIONS(1971), [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(1067), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(2171), + [anon_sym_throw] = ACTIONS(1975), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2173), - [anon_sym_DOT_DOT] = ACTIONS(2175), + [anon_sym_await] = ACTIONS(1977), + [anon_sym_DOT_DOT] = ACTIONS(1979), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -160099,7 +160155,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(1089), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -160115,256 +160171,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), }, - [701] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_block] = STATE(4812), - [sym_bracketed_argument_list] = STATE(3184), - [sym__name] = STATE(5906), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2312), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2269), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(4579), - [sym_non_lvalue_expression] = STATE(4541), - [sym_lvalue_expression] = STATE(3439), - [sym__expression_statement_expression] = STATE(4529), - [sym_assignment_expression] = STATE(4543), - [sym_binary_expression] = STATE(4529), - [sym_postfix_unary_expression] = STATE(4543), - [sym_prefix_unary_expression] = STATE(4543), - [sym__pointer_indirection_expression] = STATE(3175), - [sym_query_expression] = STATE(4529), - [sym_from_clause] = STATE(6169), - [sym_conditional_expression] = STATE(4529), - [sym_conditional_access_expression] = STATE(4529), - [sym_as_expression] = STATE(4529), - [sym_is_expression] = STATE(4529), - [sym_is_pattern_expression] = STATE(4529), - [sym_cast_expression] = STATE(4529), - [sym_checked_expression] = STATE(4529), - [sym_invocation_expression] = STATE(4543), - [sym_switch_expression] = STATE(4529), - [sym_await_expression] = STATE(4543), - [sym_throw_expression] = STATE(4529), - [sym_element_access_expression] = STATE(3175), - [sym_interpolated_string_expression] = STATE(4529), - [sym_member_access_expression] = STATE(3175), - [sym_object_creation_expression] = STATE(4543), - [sym_parenthesized_expression] = STATE(4543), - [sym__parenthesized_lvalue_expression] = STATE(3175), - [sym_lambda_expression] = STATE(4529), - [sym__lambda_expression_init] = STATE(7684), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(4529), - [sym_anonymous_method_expression] = STATE(4529), - [sym_anonymous_object_creation_expression] = STATE(4529), - [sym_implicit_array_creation_expression] = STATE(4529), - [sym_implicit_object_creation_expression] = STATE(4529), - [sym_implicit_stackalloc_expression] = STATE(4529), - [sym_initializer_expression] = STATE(4529), - [sym_default_expression] = STATE(4529), - [sym_with_expression] = STATE(4529), - [sym_sizeof_expression] = STATE(4529), - [sym_typeof_expression] = STATE(4529), - [sym_makeref_expression] = STATE(4529), - [sym_ref_expression] = STATE(4529), - [sym_reftype_expression] = STATE(4529), - [sym_refvalue_expression] = STATE(4529), - [sym_stackalloc_expression] = STATE(4529), - [sym_range_expression] = STATE(4529), - [sym_tuple_expression] = STATE(3175), - [sym_literal] = STATE(4529), - [sym_character_literal] = STATE(4536), - [sym_string_literal] = STATE(4536), - [sym_raw_string_literal] = STATE(4536), - [sym_boolean_literal] = STATE(4536), - [sym_identifier] = STATE(2246), - [sym__reserved_identifier] = STATE(2240), - [sym_preproc_if_in_expression] = STATE(4529), - [sym_preproc_if_in_attribute_list] = STATE(5576), - [sym_preproc_region] = STATE(701), - [sym_preproc_endregion] = STATE(701), - [sym_preproc_line] = STATE(701), - [sym_preproc_pragma] = STATE(701), - [sym_preproc_nullable] = STATE(701), - [sym_preproc_error] = STATE(701), - [sym_preproc_warning] = STATE(701), - [sym_preproc_define] = STATE(701), - [sym_preproc_undef] = STATE(701), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3363), - [sym__identifier_token] = ACTIONS(1387), - [anon_sym_alias] = ACTIONS(1389), - [anon_sym_global] = ACTIONS(1389), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1391), - [anon_sym_LPAREN] = ACTIONS(1775), - [anon_sym_ref] = ACTIONS(1777), - [anon_sym_LBRACE] = ACTIONS(2861), - [anon_sym_delegate] = ACTIONS(1399), - [anon_sym_async] = ACTIONS(1047), - [anon_sym_file] = ACTIONS(1389), - [anon_sym_new] = ACTIONS(1401), - [anon_sym_where] = ACTIONS(1389), - [anon_sym_notnull] = ACTIONS(1389), - [anon_sym_unmanaged] = ACTIONS(1389), - [anon_sym_checked] = ACTIONS(1403), - [anon_sym_BANG] = ACTIONS(1781), - [anon_sym_TILDE] = ACTIONS(1781), - [anon_sym_PLUS_PLUS] = ACTIONS(1781), - [anon_sym_DASH_DASH] = ACTIONS(1781), - [anon_sym_true] = ACTIONS(1409), - [anon_sym_false] = ACTIONS(1409), - [anon_sym_PLUS] = ACTIONS(1779), - [anon_sym_DASH] = ACTIONS(1779), - [anon_sym_STAR] = ACTIONS(1411), - [anon_sym_CARET] = ACTIONS(1781), - [anon_sym_AMP] = ACTIONS(1781), - [anon_sym_this] = ACTIONS(1413), - [anon_sym_scoped] = ACTIONS(1415), - [anon_sym_base] = ACTIONS(1417), - [anon_sym_var] = ACTIONS(1419), - [sym_predefined_type] = ACTIONS(1421), - [anon_sym_unchecked] = ACTIONS(1403), - [anon_sym_yield] = ACTIONS(1389), - [anon_sym_default] = ACTIONS(1423), - [anon_sym_throw] = ACTIONS(1783), - [anon_sym_when] = ACTIONS(1389), - [anon_sym_await] = ACTIONS(1785), - [anon_sym_DOT_DOT] = ACTIONS(1787), - [anon_sym_from] = ACTIONS(1431), - [anon_sym_into] = ACTIONS(1389), - [anon_sym_join] = ACTIONS(1389), - [anon_sym_on] = ACTIONS(1389), - [anon_sym_equals] = ACTIONS(1389), - [anon_sym_let] = ACTIONS(1389), - [anon_sym_orderby] = ACTIONS(1389), - [anon_sym_ascending] = ACTIONS(1389), - [anon_sym_descending] = ACTIONS(1389), - [anon_sym_group] = ACTIONS(1389), - [anon_sym_by] = ACTIONS(1389), - [anon_sym_select] = ACTIONS(1389), - [anon_sym_stackalloc] = ACTIONS(1433), - [anon_sym_sizeof] = ACTIONS(1435), - [anon_sym_typeof] = ACTIONS(1437), - [anon_sym___makeref] = ACTIONS(1439), - [anon_sym___reftype] = ACTIONS(1441), - [anon_sym___refvalue] = ACTIONS(1443), - [sym_null_literal] = ACTIONS(1445), - [anon_sym_SQUOTE] = ACTIONS(1447), - [sym_integer_literal] = ACTIONS(1445), - [sym_real_literal] = ACTIONS(1449), - [anon_sym_DQUOTE] = ACTIONS(1451), - [sym_verbatim_string_literal] = ACTIONS(1449), - [aux_sym_preproc_if_token1] = ACTIONS(1453), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1455), - [sym_interpolation_verbatim_start] = ACTIONS(1457), - [sym_interpolation_raw_start] = ACTIONS(1459), - [sym_raw_string_start] = ACTIONS(1461), - }, [702] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_block] = STATE(3084), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(5891), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2372), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(5405), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3653), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3080), - [sym_postfix_unary_expression] = STATE(3111), - [sym_prefix_unary_expression] = STATE(3111), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6158), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3080), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3111), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3080), - [sym_member_access_expression] = STATE(2484), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3111), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7448), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(3080), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3080), - [sym_typeof_expression] = STATE(3080), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2484), - [sym_literal] = STATE(3080), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(5873), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2238), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(4954), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3468), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3102), + [sym_postfix_unary_expression] = STATE(3079), + [sym_prefix_unary_expression] = STATE(3079), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6134), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3102), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3079), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3102), + [sym_member_access_expression] = STATE(2472), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3079), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7309), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(3102), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3102), + [sym_typeof_expression] = STATE(3102), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2472), + [sym_literal] = STATE(3102), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(702), [sym_preproc_endregion] = STATE(702), [sym_preproc_line] = STATE(702), @@ -160374,47 +160259,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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1481), - [anon_sym_LPAREN] = ACTIONS(2159), - [anon_sym_ref] = ACTIONS(2161), - [anon_sym_LBRACE] = ACTIONS(2847), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1479), + [anon_sym_LPAREN] = ACTIONS(659), + [anon_sym_ref] = ACTIONS(663), + [anon_sym_LBRACE] = ACTIONS(1481), + [anon_sym_RBRACE] = ACTIONS(2869), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(2163), + [anon_sym_new] = ACTIONS(1059), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1067), - [anon_sym_BANG] = ACTIONS(2167), - [anon_sym_TILDE] = ACTIONS(2167), - [anon_sym_PLUS_PLUS] = ACTIONS(2167), - [anon_sym_DASH_DASH] = ACTIONS(2167), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(1485), + [anon_sym_TILDE] = ACTIONS(1485), + [anon_sym_PLUS_PLUS] = ACTIONS(1485), + [anon_sym_DASH_DASH] = ACTIONS(1485), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [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_PLUS] = ACTIONS(1483), + [anon_sym_DASH] = ACTIONS(1483), + [anon_sym_STAR] = ACTIONS(683), + [anon_sym_CARET] = ACTIONS(1485), + [anon_sym_AMP] = ACTIONS(1485), [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(1067), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(2171), + [anon_sym_throw] = ACTIONS(1077), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2173), - [anon_sym_DOT_DOT] = ACTIONS(2175), + [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), @@ -160439,7 +160325,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(1089), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -160456,84 +160342,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [703] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(5709), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2262), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(2291), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(4751), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3408), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3080), - [sym_postfix_unary_expression] = STATE(3111), - [sym_prefix_unary_expression] = STATE(3111), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6161), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3080), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3111), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3080), - [sym_member_access_expression] = STATE(2484), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3111), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_block] = STATE(3279), + [sym_bracketed_argument_list] = STATE(2603), + [sym__name] = STATE(5877), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2344), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(4452), + [sym_non_lvalue_expression] = STATE(3220), + [sym_lvalue_expression] = STATE(3281), + [sym__expression_statement_expression] = STATE(3236), + [sym_assignment_expression] = STATE(3221), + [sym_binary_expression] = STATE(3236), + [sym_postfix_unary_expression] = STATE(3221), + [sym_prefix_unary_expression] = STATE(3221), + [sym__pointer_indirection_expression] = STATE(2602), + [sym_query_expression] = STATE(3236), + [sym_from_clause] = STATE(6146), + [sym_conditional_expression] = STATE(3236), + [sym_conditional_access_expression] = STATE(3236), + [sym_as_expression] = STATE(3236), + [sym_is_expression] = STATE(3236), + [sym_is_pattern_expression] = STATE(3236), + [sym_cast_expression] = STATE(3236), + [sym_checked_expression] = STATE(3236), + [sym_invocation_expression] = STATE(3221), + [sym_switch_expression] = STATE(3236), + [sym_await_expression] = STATE(3221), + [sym_throw_expression] = STATE(3236), + [sym_element_access_expression] = STATE(2602), + [sym_interpolated_string_expression] = STATE(3236), + [sym_member_access_expression] = STATE(2602), + [sym_object_creation_expression] = STATE(3221), + [sym_parenthesized_expression] = STATE(3221), + [sym__parenthesized_lvalue_expression] = STATE(2602), + [sym_lambda_expression] = STATE(3236), [sym__lambda_expression_init] = STATE(7323), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(3080), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3080), - [sym_typeof_expression] = STATE(3080), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2484), - [sym_literal] = STATE(3080), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3236), + [sym_anonymous_method_expression] = STATE(3236), + [sym_anonymous_object_creation_expression] = STATE(3236), + [sym_implicit_array_creation_expression] = STATE(3236), + [sym_implicit_object_creation_expression] = STATE(3236), + [sym_implicit_stackalloc_expression] = STATE(3236), + [sym_initializer_expression] = STATE(3236), + [sym_default_expression] = STATE(3236), + [sym_with_expression] = STATE(3236), + [sym_sizeof_expression] = STATE(3236), + [sym_typeof_expression] = STATE(3236), + [sym_makeref_expression] = STATE(3236), + [sym_ref_expression] = STATE(3236), + [sym_reftype_expression] = STATE(3236), + [sym_refvalue_expression] = STATE(3236), + [sym_stackalloc_expression] = STATE(3236), + [sym_range_expression] = STATE(3236), + [sym_tuple_expression] = STATE(2602), + [sym_literal] = STATE(3236), + [sym_character_literal] = STATE(3272), + [sym_string_literal] = STATE(3272), + [sym_raw_string_literal] = STATE(3272), + [sym_boolean_literal] = STATE(3272), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3236), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(703), [sym_preproc_endregion] = STATE(703), [sym_preproc_line] = STATE(703), @@ -160543,48 +160430,47 @@ 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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3379), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1481), - [anon_sym_LPAREN] = ACTIONS(1483), - [anon_sym_ref] = ACTIONS(2691), - [anon_sym_LBRACE] = ACTIONS(1487), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1149), + [anon_sym_LPAREN] = ACTIONS(1531), + [anon_sym_ref] = ACTIONS(1533), + [anon_sym_LBRACE] = ACTIONS(2843), + [anon_sym_delegate] = ACTIONS(1157), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1101), - [anon_sym_readonly] = ACTIONS(2841), + [anon_sym_new] = ACTIONS(1535), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1067), - [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(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1489), - [anon_sym_DASH] = ACTIONS(1489), - [anon_sym_STAR] = ACTIONS(1111), - [anon_sym_CARET] = ACTIONS(1491), - [anon_sym_AMP] = ACTIONS(1491), - [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(2309), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(2631), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1067), + [anon_sym_checked] = ACTIONS(1163), + [anon_sym_BANG] = ACTIONS(1539), + [anon_sym_TILDE] = ACTIONS(1539), + [anon_sym_PLUS_PLUS] = ACTIONS(1539), + [anon_sym_DASH_DASH] = ACTIONS(1539), + [anon_sym_true] = ACTIONS(1169), + [anon_sym_false] = ACTIONS(1169), + [anon_sym_PLUS] = ACTIONS(1537), + [anon_sym_DASH] = ACTIONS(1537), + [anon_sym_STAR] = ACTIONS(1541), + [anon_sym_CARET] = ACTIONS(1539), + [anon_sym_AMP] = ACTIONS(1539), + [anon_sym_this] = ACTIONS(1173), + [anon_sym_scoped] = ACTIONS(85), + [anon_sym_base] = ACTIONS(1175), + [anon_sym_var] = ACTIONS(89), + [sym_predefined_type] = ACTIONS(1177), + [anon_sym_unchecked] = ACTIONS(1163), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1119), + [anon_sym_default] = ACTIONS(1179), + [anon_sym_throw] = ACTIONS(1543), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1121), - [anon_sym_DOT_DOT] = ACTIONS(1125), + [anon_sym_await] = ACTIONS(1545), + [anon_sym_DOT_DOT] = ACTIONS(1547), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -160597,19 +160483,19 @@ static const uint16_t ts_parse_table[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(1089), + [anon_sym_stackalloc] = ACTIONS(1187), + [anon_sym_sizeof] = ACTIONS(1189), + [anon_sym_typeof] = ACTIONS(1191), + [anon_sym___makeref] = ACTIONS(1193), + [anon_sym___reftype] = ACTIONS(1195), + [anon_sym___refvalue] = ACTIONS(1197), + [sym_null_literal] = ACTIONS(1199), + [anon_sym_SQUOTE] = ACTIONS(1201), + [sym_integer_literal] = ACTIONS(1199), + [sym_real_literal] = ACTIONS(1203), + [anon_sym_DQUOTE] = ACTIONS(1205), + [sym_verbatim_string_literal] = ACTIONS(1203), + [aux_sym_preproc_if_token1] = ACTIONS(1207), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -160620,91 +160506,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(151), - [sym_interpolation_verbatim_start] = ACTIONS(153), - [sym_interpolation_raw_start] = ACTIONS(155), - [sym_raw_string_start] = ACTIONS(157), + [sym_interpolation_regular_start] = ACTIONS(1209), + [sym_interpolation_verbatim_start] = ACTIONS(1211), + [sym_interpolation_raw_start] = ACTIONS(1213), + [sym_raw_string_start] = ACTIONS(1215), }, [704] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_block] = STATE(3430), - [sym_bracketed_argument_list] = STATE(2762), - [sym__name] = STATE(5891), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2372), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(4966), - [sym_non_lvalue_expression] = STATE(3438), - [sym_lvalue_expression] = STATE(3530), - [sym__expression_statement_expression] = STATE(3362), - [sym_assignment_expression] = STATE(3449), - [sym_binary_expression] = STATE(3362), - [sym_postfix_unary_expression] = STATE(3449), - [sym_prefix_unary_expression] = STATE(3449), - [sym__pointer_indirection_expression] = STATE(2747), - [sym_query_expression] = STATE(3362), - [sym_from_clause] = STATE(6167), - [sym_conditional_expression] = STATE(3362), - [sym_conditional_access_expression] = STATE(3362), - [sym_as_expression] = STATE(3362), - [sym_is_expression] = STATE(3362), - [sym_is_pattern_expression] = STATE(3362), - [sym_cast_expression] = STATE(3362), - [sym_checked_expression] = STATE(3362), - [sym_invocation_expression] = STATE(3449), - [sym_switch_expression] = STATE(3362), - [sym_await_expression] = STATE(3449), - [sym_throw_expression] = STATE(3362), - [sym_element_access_expression] = STATE(2747), - [sym_interpolated_string_expression] = STATE(3362), - [sym_member_access_expression] = STATE(2747), - [sym_object_creation_expression] = STATE(3449), - [sym_parenthesized_expression] = STATE(3449), - [sym__parenthesized_lvalue_expression] = STATE(2747), - [sym_lambda_expression] = STATE(3362), - [sym__lambda_expression_init] = STATE(7468), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3362), - [sym_anonymous_method_expression] = STATE(3362), - [sym_anonymous_object_creation_expression] = STATE(3362), - [sym_implicit_array_creation_expression] = STATE(3362), - [sym_implicit_object_creation_expression] = STATE(3362), - [sym_implicit_stackalloc_expression] = STATE(3362), - [sym_initializer_expression] = STATE(3362), - [sym_default_expression] = STATE(3362), - [sym_with_expression] = STATE(3362), - [sym_sizeof_expression] = STATE(3362), - [sym_typeof_expression] = STATE(3362), - [sym_makeref_expression] = STATE(3362), - [sym_ref_expression] = STATE(3362), - [sym_reftype_expression] = STATE(3362), - [sym_refvalue_expression] = STATE(3362), - [sym_stackalloc_expression] = STATE(3362), - [sym_range_expression] = STATE(3362), - [sym_tuple_expression] = STATE(2747), - [sym_literal] = STATE(3362), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3362), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(5873), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2238), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(4954), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3468), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3102), + [sym_postfix_unary_expression] = STATE(3079), + [sym_prefix_unary_expression] = STATE(3079), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6134), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3102), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3079), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3102), + [sym_member_access_expression] = STATE(2472), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3079), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7309), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(3102), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3102), + [sym_typeof_expression] = STATE(3102), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2472), + [sym_literal] = STATE(3102), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(704), [sym_preproc_endregion] = STATE(704), [sym_preproc_line] = STATE(704), @@ -160714,47 +160599,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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3385), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1307), - [anon_sym_LPAREN] = ACTIONS(1895), - [anon_sym_ref] = ACTIONS(1897), - [anon_sym_LBRACE] = ACTIONS(2857), - [anon_sym_delegate] = ACTIONS(1315), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1479), + [anon_sym_LPAREN] = ACTIONS(659), + [anon_sym_ref] = ACTIONS(663), + [anon_sym_LBRACE] = ACTIONS(1481), + [anon_sym_RBRACE] = ACTIONS(2871), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1899), + [anon_sym_new] = ACTIONS(1059), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1319), - [anon_sym_BANG] = ACTIONS(1903), - [anon_sym_TILDE] = ACTIONS(1903), - [anon_sym_PLUS_PLUS] = ACTIONS(1903), - [anon_sym_DASH_DASH] = ACTIONS(1903), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(1485), + [anon_sym_TILDE] = ACTIONS(1485), + [anon_sym_PLUS_PLUS] = ACTIONS(1485), + [anon_sym_DASH_DASH] = ACTIONS(1485), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1901), - [anon_sym_DASH] = ACTIONS(1901), - [anon_sym_STAR] = ACTIONS(1905), - [anon_sym_CARET] = ACTIONS(1903), - [anon_sym_AMP] = ACTIONS(1903), - [anon_sym_this] = ACTIONS(1323), + [anon_sym_PLUS] = ACTIONS(1483), + [anon_sym_DASH] = ACTIONS(1483), + [anon_sym_STAR] = ACTIONS(683), + [anon_sym_CARET] = ACTIONS(1485), + [anon_sym_AMP] = ACTIONS(1485), + [anon_sym_this] = ACTIONS(83), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1325), + [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1319), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1907), + [anon_sym_throw] = ACTIONS(1077), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1909), - [anon_sym_DOT_DOT] = ACTIONS(1911), + [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), @@ -160767,19 +160653,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1333), + [anon_sym_stackalloc] = ACTIONS(127), [anon_sym_sizeof] = ACTIONS(129), [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(1335), - [anon_sym___reftype] = ACTIONS(1337), - [anon_sym___refvalue] = ACTIONS(1339), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), [sym_null_literal] = ACTIONS(139), [anon_sym_SQUOTE] = ACTIONS(141), [sym_integer_literal] = ACTIONS(139), [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1341), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -160796,85 +160682,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [705] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_block] = STATE(3316), - [sym_bracketed_argument_list] = STATE(2610), - [sym__name] = STATE(5898), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2197), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(4514), - [sym_non_lvalue_expression] = STATE(3277), - [sym_lvalue_expression] = STATE(3413), - [sym__expression_statement_expression] = STATE(3228), - [sym_assignment_expression] = STATE(3289), - [sym_binary_expression] = STATE(3228), - [sym_postfix_unary_expression] = STATE(3289), - [sym_prefix_unary_expression] = STATE(3289), - [sym__pointer_indirection_expression] = STATE(2609), - [sym_query_expression] = STATE(3228), - [sym_from_clause] = STATE(6160), - [sym_conditional_expression] = STATE(3228), - [sym_conditional_access_expression] = STATE(3228), - [sym_as_expression] = STATE(3228), - [sym_is_expression] = STATE(3228), - [sym_is_pattern_expression] = STATE(3228), - [sym_cast_expression] = STATE(3228), - [sym_checked_expression] = STATE(3228), - [sym_invocation_expression] = STATE(3289), - [sym_switch_expression] = STATE(3228), - [sym_await_expression] = STATE(3289), - [sym_throw_expression] = STATE(3228), - [sym_element_access_expression] = STATE(2609), - [sym_interpolated_string_expression] = STATE(3228), - [sym_member_access_expression] = STATE(2609), - [sym_object_creation_expression] = STATE(3289), - [sym_parenthesized_expression] = STATE(3289), - [sym__parenthesized_lvalue_expression] = STATE(2609), - [sym_lambda_expression] = STATE(3228), - [sym__lambda_expression_init] = STATE(7523), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3228), - [sym_anonymous_method_expression] = STATE(3228), - [sym_anonymous_object_creation_expression] = STATE(3228), - [sym_implicit_array_creation_expression] = STATE(3228), - [sym_implicit_object_creation_expression] = STATE(3228), - [sym_implicit_stackalloc_expression] = STATE(3228), - [sym_initializer_expression] = STATE(3228), - [sym_default_expression] = STATE(3228), - [sym_with_expression] = STATE(3228), - [sym_sizeof_expression] = STATE(3228), - [sym_typeof_expression] = STATE(3228), - [sym_makeref_expression] = STATE(3228), - [sym_ref_expression] = STATE(3228), - [sym_reftype_expression] = STATE(3228), - [sym_refvalue_expression] = STATE(3228), - [sym_stackalloc_expression] = STATE(3228), - [sym_range_expression] = STATE(3228), - [sym_tuple_expression] = STATE(2609), - [sym_literal] = STATE(3228), - [sym_character_literal] = STATE(3278), - [sym_string_literal] = STATE(3278), - [sym_raw_string_literal] = STATE(3278), - [sym_boolean_literal] = STATE(3278), - [sym_identifier] = STATE(2267), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3228), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_block] = STATE(3279), + [sym_bracketed_argument_list] = STATE(2603), + [sym__name] = STATE(5862), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2193), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(3687), + [sym_non_lvalue_expression] = STATE(3220), + [sym_lvalue_expression] = STATE(2955), + [sym__expression_statement_expression] = STATE(3236), + [sym_assignment_expression] = STATE(3221), + [sym_binary_expression] = STATE(3236), + [sym_postfix_unary_expression] = STATE(3221), + [sym_prefix_unary_expression] = STATE(3221), + [sym__pointer_indirection_expression] = STATE(2602), + [sym_query_expression] = STATE(3236), + [sym_from_clause] = STATE(6143), + [sym_conditional_expression] = STATE(3236), + [sym_conditional_access_expression] = STATE(3236), + [sym_as_expression] = STATE(3236), + [sym_is_expression] = STATE(3236), + [sym_is_pattern_expression] = STATE(3236), + [sym_cast_expression] = STATE(3236), + [sym_checked_expression] = STATE(3236), + [sym_invocation_expression] = STATE(3221), + [sym_switch_expression] = STATE(3236), + [sym_await_expression] = STATE(3221), + [sym_throw_expression] = STATE(3236), + [sym_element_access_expression] = STATE(2602), + [sym_interpolated_string_expression] = STATE(3236), + [sym_member_access_expression] = STATE(2602), + [sym_object_creation_expression] = STATE(3221), + [sym_parenthesized_expression] = STATE(3221), + [sym__parenthesized_lvalue_expression] = STATE(2602), + [sym_lambda_expression] = STATE(3236), + [sym__lambda_expression_init] = STATE(7668), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3236), + [sym_anonymous_method_expression] = STATE(3236), + [sym_anonymous_object_creation_expression] = STATE(3236), + [sym_implicit_array_creation_expression] = STATE(3236), + [sym_implicit_object_creation_expression] = STATE(3236), + [sym_implicit_stackalloc_expression] = STATE(3236), + [sym_initializer_expression] = STATE(3236), + [sym_default_expression] = STATE(3236), + [sym_with_expression] = STATE(3236), + [sym_sizeof_expression] = STATE(3236), + [sym_typeof_expression] = STATE(3236), + [sym_makeref_expression] = STATE(3236), + [sym_ref_expression] = STATE(3236), + [sym_reftype_expression] = STATE(3236), + [sym_refvalue_expression] = STATE(3236), + [sym_stackalloc_expression] = STATE(3236), + [sym_range_expression] = STATE(3236), + [sym_tuple_expression] = STATE(2602), + [sym_literal] = STATE(3236), + [sym_character_literal] = STATE(3272), + [sym_string_literal] = STATE(3272), + [sym_raw_string_literal] = STATE(3272), + [sym_boolean_literal] = STATE(3272), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3236), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(705), [sym_preproc_endregion] = STATE(705), [sym_preproc_line] = STATE(705), @@ -160884,47 +160770,47 @@ 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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3396), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3379), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1153), - [anon_sym_LPAREN] = ACTIONS(1593), - [anon_sym_ref] = ACTIONS(1595), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1149), + [anon_sym_LPAREN] = ACTIONS(1151), + [anon_sym_ref] = ACTIONS(1153), [anon_sym_LBRACE] = ACTIONS(2843), - [anon_sym_delegate] = ACTIONS(1161), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_delegate] = ACTIONS(1157), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1163), + [anon_sym_new] = ACTIONS(1159), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1167), - [anon_sym_BANG] = ACTIONS(1599), - [anon_sym_TILDE] = ACTIONS(1599), - [anon_sym_PLUS_PLUS] = ACTIONS(1599), - [anon_sym_DASH_DASH] = ACTIONS(1599), - [anon_sym_true] = ACTIONS(1173), - [anon_sym_false] = ACTIONS(1173), - [anon_sym_PLUS] = ACTIONS(1597), - [anon_sym_DASH] = ACTIONS(1597), - [anon_sym_STAR] = ACTIONS(1601), - [anon_sym_CARET] = ACTIONS(1599), - [anon_sym_AMP] = ACTIONS(1599), - [anon_sym_this] = ACTIONS(1177), + [anon_sym_checked] = ACTIONS(1163), + [anon_sym_BANG] = ACTIONS(1167), + [anon_sym_TILDE] = ACTIONS(1167), + [anon_sym_PLUS_PLUS] = ACTIONS(1167), + [anon_sym_DASH_DASH] = ACTIONS(1167), + [anon_sym_true] = ACTIONS(1169), + [anon_sym_false] = ACTIONS(1169), + [anon_sym_PLUS] = ACTIONS(1165), + [anon_sym_DASH] = ACTIONS(1165), + [anon_sym_STAR] = ACTIONS(1171), + [anon_sym_CARET] = ACTIONS(1167), + [anon_sym_AMP] = ACTIONS(1167), + [anon_sym_this] = ACTIONS(1173), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1179), + [anon_sym_base] = ACTIONS(1175), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1181), - [anon_sym_unchecked] = ACTIONS(1167), + [sym_predefined_type] = ACTIONS(1177), + [anon_sym_unchecked] = ACTIONS(1163), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1183), - [anon_sym_throw] = ACTIONS(1603), + [anon_sym_default] = ACTIONS(1179), + [anon_sym_throw] = ACTIONS(1181), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1605), - [anon_sym_DOT_DOT] = ACTIONS(1607), + [anon_sym_await] = ACTIONS(1183), + [anon_sym_DOT_DOT] = ACTIONS(1185), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -160937,19 +160823,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1191), - [anon_sym_sizeof] = ACTIONS(1193), - [anon_sym_typeof] = ACTIONS(1195), - [anon_sym___makeref] = ACTIONS(1197), - [anon_sym___reftype] = ACTIONS(1199), - [anon_sym___refvalue] = ACTIONS(1201), - [sym_null_literal] = ACTIONS(1203), - [anon_sym_SQUOTE] = ACTIONS(1205), - [sym_integer_literal] = ACTIONS(1203), - [sym_real_literal] = ACTIONS(1207), - [anon_sym_DQUOTE] = ACTIONS(1209), - [sym_verbatim_string_literal] = ACTIONS(1207), - [aux_sym_preproc_if_token1] = ACTIONS(1211), + [anon_sym_stackalloc] = ACTIONS(1187), + [anon_sym_sizeof] = ACTIONS(1189), + [anon_sym_typeof] = ACTIONS(1191), + [anon_sym___makeref] = ACTIONS(1193), + [anon_sym___reftype] = ACTIONS(1195), + [anon_sym___refvalue] = ACTIONS(1197), + [sym_null_literal] = ACTIONS(1199), + [anon_sym_SQUOTE] = ACTIONS(1201), + [sym_integer_literal] = ACTIONS(1199), + [sym_real_literal] = ACTIONS(1203), + [anon_sym_DQUOTE] = ACTIONS(1205), + [sym_verbatim_string_literal] = ACTIONS(1203), + [aux_sym_preproc_if_token1] = ACTIONS(1207), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -160960,90 +160846,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(1213), - [sym_interpolation_verbatim_start] = ACTIONS(1215), - [sym_interpolation_raw_start] = ACTIONS(1217), - [sym_raw_string_start] = ACTIONS(1219), + [sym_interpolation_regular_start] = ACTIONS(1209), + [sym_interpolation_verbatim_start] = ACTIONS(1211), + [sym_interpolation_raw_start] = ACTIONS(1213), + [sym_raw_string_start] = ACTIONS(1215), }, [706] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2762), - [sym__name] = STATE(5891), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2372), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(2291), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(4969), - [sym_non_lvalue_expression] = STATE(3438), - [sym_lvalue_expression] = STATE(3530), - [sym__expression_statement_expression] = STATE(3362), - [sym_assignment_expression] = STATE(3449), - [sym_binary_expression] = STATE(3362), - [sym_postfix_unary_expression] = STATE(3449), - [sym_prefix_unary_expression] = STATE(3449), - [sym__pointer_indirection_expression] = STATE(2747), - [sym_query_expression] = STATE(3362), - [sym_from_clause] = STATE(6167), - [sym_conditional_expression] = STATE(3362), - [sym_conditional_access_expression] = STATE(3362), - [sym_as_expression] = STATE(3362), - [sym_is_expression] = STATE(3362), - [sym_is_pattern_expression] = STATE(3362), - [sym_cast_expression] = STATE(3362), - [sym_checked_expression] = STATE(3362), - [sym_invocation_expression] = STATE(3449), - [sym_switch_expression] = STATE(3362), - [sym_await_expression] = STATE(3449), - [sym_throw_expression] = STATE(3362), - [sym_element_access_expression] = STATE(2747), - [sym_interpolated_string_expression] = STATE(3362), - [sym_member_access_expression] = STATE(2747), - [sym_object_creation_expression] = STATE(3449), - [sym_parenthesized_expression] = STATE(3449), - [sym__parenthesized_lvalue_expression] = STATE(2747), - [sym_lambda_expression] = STATE(3362), - [sym__lambda_expression_init] = STATE(7468), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3362), - [sym_anonymous_method_expression] = STATE(3362), - [sym_anonymous_object_creation_expression] = STATE(3362), - [sym_implicit_array_creation_expression] = STATE(3362), - [sym_implicit_object_creation_expression] = STATE(3362), - [sym_implicit_stackalloc_expression] = STATE(3362), - [sym_initializer_expression] = STATE(3362), - [sym_default_expression] = STATE(3362), - [sym_with_expression] = STATE(3362), - [sym_sizeof_expression] = STATE(3362), - [sym_typeof_expression] = STATE(3362), - [sym_makeref_expression] = STATE(3362), - [sym_ref_expression] = STATE(3362), - [sym_reftype_expression] = STATE(3362), - [sym_refvalue_expression] = STATE(3362), - [sym_stackalloc_expression] = STATE(3362), - [sym_range_expression] = STATE(3362), - [sym_tuple_expression] = STATE(2747), - [sym_literal] = STATE(3362), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3362), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_block] = STATE(3847), + [sym_bracketed_argument_list] = STATE(2901), + [sym__name] = STATE(5883), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2359), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(3945), + [sym_non_lvalue_expression] = STATE(3685), + [sym_lvalue_expression] = STATE(3073), + [sym__expression_statement_expression] = STATE(3836), + [sym_assignment_expression] = STATE(3689), + [sym_binary_expression] = STATE(3836), + [sym_postfix_unary_expression] = STATE(3689), + [sym_prefix_unary_expression] = STATE(3689), + [sym__pointer_indirection_expression] = STATE(2906), + [sym_query_expression] = STATE(3836), + [sym_from_clause] = STATE(6157), + [sym_conditional_expression] = STATE(3836), + [sym_conditional_access_expression] = STATE(3836), + [sym_as_expression] = STATE(3836), + [sym_is_expression] = STATE(3836), + [sym_is_pattern_expression] = STATE(3836), + [sym_cast_expression] = STATE(3836), + [sym_checked_expression] = STATE(3836), + [sym_invocation_expression] = STATE(3689), + [sym_switch_expression] = STATE(3836), + [sym_await_expression] = STATE(3689), + [sym_throw_expression] = STATE(3836), + [sym_element_access_expression] = STATE(2906), + [sym_interpolated_string_expression] = STATE(3836), + [sym_member_access_expression] = STATE(2906), + [sym_object_creation_expression] = STATE(3689), + [sym_parenthesized_expression] = STATE(3689), + [sym__parenthesized_lvalue_expression] = STATE(2906), + [sym_lambda_expression] = STATE(3836), + [sym__lambda_expression_init] = STATE(7460), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3836), + [sym_anonymous_method_expression] = STATE(3836), + [sym_anonymous_object_creation_expression] = STATE(3836), + [sym_implicit_array_creation_expression] = STATE(3836), + [sym_implicit_object_creation_expression] = STATE(3836), + [sym_implicit_stackalloc_expression] = STATE(3836), + [sym_initializer_expression] = STATE(3836), + [sym_default_expression] = STATE(3836), + [sym_with_expression] = STATE(3836), + [sym_sizeof_expression] = STATE(3836), + [sym_typeof_expression] = STATE(3836), + [sym_makeref_expression] = STATE(3836), + [sym_ref_expression] = STATE(3836), + [sym_reftype_expression] = STATE(3836), + [sym_refvalue_expression] = STATE(3836), + [sym_stackalloc_expression] = STATE(3836), + [sym_range_expression] = STATE(3836), + [sym_tuple_expression] = STATE(2906), + [sym_literal] = STATE(3836), + [sym_character_literal] = STATE(3843), + [sym_string_literal] = STATE(3843), + [sym_raw_string_literal] = STATE(3843), + [sym_boolean_literal] = STATE(3843), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3836), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(706), [sym_preproc_endregion] = STATE(706), [sym_preproc_line] = STATE(706), @@ -161053,48 +160940,47 @@ 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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3385), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3477), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1307), - [anon_sym_LPAREN] = ACTIONS(1895), - [anon_sym_ref] = ACTIONS(1897), - [anon_sym_LBRACE] = ACTIONS(1313), - [anon_sym_delegate] = ACTIONS(1315), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1655), + [anon_sym_LPAREN] = ACTIONS(2061), + [anon_sym_ref] = ACTIONS(2063), + [anon_sym_LBRACE] = ACTIONS(2873), + [anon_sym_delegate] = ACTIONS(1663), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1899), - [anon_sym_readonly] = ACTIONS(2749), + [anon_sym_new] = ACTIONS(1665), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1319), - [anon_sym_BANG] = ACTIONS(1903), - [anon_sym_TILDE] = ACTIONS(1903), - [anon_sym_PLUS_PLUS] = ACTIONS(1903), - [anon_sym_DASH_DASH] = ACTIONS(1903), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1901), - [anon_sym_DASH] = ACTIONS(1901), - [anon_sym_STAR] = ACTIONS(1905), - [anon_sym_CARET] = ACTIONS(1903), - [anon_sym_AMP] = ACTIONS(1903), - [anon_sym_this] = ACTIONS(1323), + [anon_sym_checked] = ACTIONS(1667), + [anon_sym_BANG] = ACTIONS(2067), + [anon_sym_TILDE] = ACTIONS(2067), + [anon_sym_PLUS_PLUS] = ACTIONS(2067), + [anon_sym_DASH_DASH] = ACTIONS(2067), + [anon_sym_true] = ACTIONS(1673), + [anon_sym_false] = ACTIONS(1673), + [anon_sym_PLUS] = ACTIONS(2065), + [anon_sym_DASH] = ACTIONS(2065), + [anon_sym_STAR] = ACTIONS(1675), + [anon_sym_CARET] = ACTIONS(2067), + [anon_sym_AMP] = ACTIONS(2067), + [anon_sym_this] = ACTIONS(1677), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1325), + [anon_sym_base] = ACTIONS(1679), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1319), + [sym_predefined_type] = ACTIONS(1681), + [anon_sym_unchecked] = ACTIONS(1667), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1907), + [anon_sym_default] = ACTIONS(1683), + [anon_sym_throw] = ACTIONS(2069), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1909), - [anon_sym_DOT_DOT] = ACTIONS(1911), + [anon_sym_await] = ACTIONS(2071), + [anon_sym_DOT_DOT] = ACTIONS(2073), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -161107,19 +160993,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1333), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(1335), - [anon_sym___reftype] = ACTIONS(1337), - [anon_sym___refvalue] = ACTIONS(1339), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1341), + [anon_sym_stackalloc] = ACTIONS(1691), + [anon_sym_sizeof] = ACTIONS(1693), + [anon_sym_typeof] = ACTIONS(1695), + [anon_sym___makeref] = ACTIONS(1697), + [anon_sym___reftype] = ACTIONS(1699), + [anon_sym___refvalue] = ACTIONS(1701), + [sym_null_literal] = ACTIONS(1703), + [anon_sym_SQUOTE] = ACTIONS(1705), + [sym_integer_literal] = ACTIONS(1703), + [sym_real_literal] = ACTIONS(1707), + [anon_sym_DQUOTE] = ACTIONS(1709), + [sym_verbatim_string_literal] = ACTIONS(1707), + [aux_sym_preproc_if_token1] = ACTIONS(1711), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -161130,90 +161016,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(151), - [sym_interpolation_verbatim_start] = ACTIONS(153), - [sym_interpolation_raw_start] = ACTIONS(155), - [sym_raw_string_start] = ACTIONS(157), + [sym_interpolation_regular_start] = ACTIONS(1713), + [sym_interpolation_verbatim_start] = ACTIONS(1715), + [sym_interpolation_raw_start] = ACTIONS(1717), + [sym_raw_string_start] = ACTIONS(1719), }, [707] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2610), - [sym__name] = STATE(5898), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2197), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(2291), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(4627), - [sym_non_lvalue_expression] = STATE(3277), - [sym_lvalue_expression] = STATE(3413), - [sym__expression_statement_expression] = STATE(3228), - [sym_assignment_expression] = STATE(3289), - [sym_binary_expression] = STATE(3228), - [sym_postfix_unary_expression] = STATE(3289), - [sym_prefix_unary_expression] = STATE(3289), - [sym__pointer_indirection_expression] = STATE(2609), - [sym_query_expression] = STATE(3228), - [sym_from_clause] = STATE(6160), - [sym_conditional_expression] = STATE(3228), - [sym_conditional_access_expression] = STATE(3228), - [sym_as_expression] = STATE(3228), - [sym_is_expression] = STATE(3228), - [sym_is_pattern_expression] = STATE(3228), - [sym_cast_expression] = STATE(3228), - [sym_checked_expression] = STATE(3228), - [sym_invocation_expression] = STATE(3289), - [sym_switch_expression] = STATE(3228), - [sym_await_expression] = STATE(3289), - [sym_throw_expression] = STATE(3228), - [sym_element_access_expression] = STATE(2609), - [sym_interpolated_string_expression] = STATE(3228), - [sym_member_access_expression] = STATE(2609), - [sym_object_creation_expression] = STATE(3289), - [sym_parenthesized_expression] = STATE(3289), - [sym__parenthesized_lvalue_expression] = STATE(2609), - [sym_lambda_expression] = STATE(3228), - [sym__lambda_expression_init] = STATE(7523), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3228), - [sym_anonymous_method_expression] = STATE(3228), - [sym_anonymous_object_creation_expression] = STATE(3228), - [sym_implicit_array_creation_expression] = STATE(3228), - [sym_implicit_object_creation_expression] = STATE(3228), - [sym_implicit_stackalloc_expression] = STATE(3228), - [sym_initializer_expression] = STATE(3228), - [sym_default_expression] = STATE(3228), - [sym_with_expression] = STATE(3228), - [sym_sizeof_expression] = STATE(3228), - [sym_typeof_expression] = STATE(3228), - [sym_makeref_expression] = STATE(3228), - [sym_ref_expression] = STATE(3228), - [sym_reftype_expression] = STATE(3228), - [sym_refvalue_expression] = STATE(3228), - [sym_stackalloc_expression] = STATE(3228), - [sym_range_expression] = STATE(3228), - [sym_tuple_expression] = STATE(2609), - [sym_literal] = STATE(3228), - [sym_character_literal] = STATE(3278), - [sym_string_literal] = STATE(3278), - [sym_raw_string_literal] = STATE(3278), - [sym_boolean_literal] = STATE(3278), - [sym_identifier] = STATE(2267), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3228), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(5675), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2212), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(2279), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(5482), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3660), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3102), + [sym_postfix_unary_expression] = STATE(3079), + [sym_prefix_unary_expression] = STATE(3079), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6163), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3102), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3079), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3102), + [sym_member_access_expression] = STATE(2472), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3079), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7633), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(3102), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3102), + [sym_typeof_expression] = STATE(3102), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2472), + [sym_literal] = STATE(3102), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(707), [sym_preproc_endregion] = STATE(707), [sym_preproc_line] = STATE(707), @@ -161223,48 +161109,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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3396), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1153), - [anon_sym_LPAREN] = ACTIONS(1593), - [anon_sym_ref] = ACTIONS(1595), - [anon_sym_LBRACE] = ACTIONS(1159), - [anon_sym_delegate] = ACTIONS(1161), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1479), + [anon_sym_LPAREN] = ACTIONS(2009), + [anon_sym_ref] = ACTIONS(2005), + [anon_sym_LBRACE] = ACTIONS(1481), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1163), - [anon_sym_readonly] = ACTIONS(2749), + [anon_sym_new] = ACTIONS(1095), + [anon_sym_readonly] = ACTIONS(2747), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1167), - [anon_sym_BANG] = ACTIONS(1599), - [anon_sym_TILDE] = ACTIONS(1599), - [anon_sym_PLUS_PLUS] = ACTIONS(1599), - [anon_sym_DASH_DASH] = ACTIONS(1599), - [anon_sym_true] = ACTIONS(1173), - [anon_sym_false] = ACTIONS(1173), - [anon_sym_PLUS] = ACTIONS(1597), - [anon_sym_DASH] = ACTIONS(1597), - [anon_sym_STAR] = ACTIONS(1601), - [anon_sym_CARET] = ACTIONS(1599), - [anon_sym_AMP] = ACTIONS(1599), - [anon_sym_this] = ACTIONS(1177), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1179), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1181), - [anon_sym_unchecked] = ACTIONS(1167), + [anon_sym_checked] = ACTIONS(1065), + [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(77), + [anon_sym_false] = ACTIONS(77), + [anon_sym_PLUS] = ACTIONS(2013), + [anon_sym_DASH] = ACTIONS(2013), + [anon_sym_STAR] = ACTIONS(1227), + [anon_sym_CARET] = ACTIONS(2015), + [anon_sym_AMP] = ACTIONS(2015), + [anon_sym_this] = ACTIONS(83), + [anon_sym_scoped] = ACTIONS(1073), + [anon_sym_base] = ACTIONS(87), + [anon_sym_var] = ACTIONS(2629), + [sym_predefined_type] = ACTIONS(91), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1183), - [anon_sym_throw] = ACTIONS(1603), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(1231), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1605), - [anon_sym_DOT_DOT] = ACTIONS(1607), + [anon_sym_await] = ACTIONS(1233), + [anon_sym_DOT_DOT] = ACTIONS(1235), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -161277,19 +161163,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1191), - [anon_sym_sizeof] = ACTIONS(1193), - [anon_sym_typeof] = ACTIONS(1195), - [anon_sym___makeref] = ACTIONS(1197), - [anon_sym___reftype] = ACTIONS(1199), - [anon_sym___refvalue] = ACTIONS(1201), - [sym_null_literal] = ACTIONS(1203), - [anon_sym_SQUOTE] = ACTIONS(1205), - [sym_integer_literal] = ACTIONS(1203), - [sym_real_literal] = ACTIONS(1207), - [anon_sym_DQUOTE] = ACTIONS(1209), - [sym_verbatim_string_literal] = ACTIONS(1207), - [aux_sym_preproc_if_token1] = ACTIONS(1211), + [anon_sym_stackalloc] = ACTIONS(127), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_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), @@ -161300,90 +161186,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1213), - [sym_interpolation_verbatim_start] = ACTIONS(1215), - [sym_interpolation_raw_start] = ACTIONS(1217), - [sym_raw_string_start] = ACTIONS(1219), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [sym_interpolation_raw_start] = ACTIONS(155), + [sym_raw_string_start] = ACTIONS(157), }, [708] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(5876), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2376), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(2291), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(5541), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3681), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3080), - [sym_postfix_unary_expression] = STATE(3111), - [sym_prefix_unary_expression] = STATE(3111), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6170), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3080), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3111), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3080), - [sym_member_access_expression] = STATE(2484), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3111), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7511), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(3080), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3080), - [sym_typeof_expression] = STATE(3080), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2484), - [sym_literal] = STATE(3080), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2901), + [sym__name] = STATE(5883), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2359), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(2279), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(3940), + [sym_non_lvalue_expression] = STATE(3685), + [sym_lvalue_expression] = STATE(3073), + [sym__expression_statement_expression] = STATE(3836), + [sym_assignment_expression] = STATE(3689), + [sym_binary_expression] = STATE(3836), + [sym_postfix_unary_expression] = STATE(3689), + [sym_prefix_unary_expression] = STATE(3689), + [sym__pointer_indirection_expression] = STATE(2906), + [sym_query_expression] = STATE(3836), + [sym_from_clause] = STATE(6157), + [sym_conditional_expression] = STATE(3836), + [sym_conditional_access_expression] = STATE(3836), + [sym_as_expression] = STATE(3836), + [sym_is_expression] = STATE(3836), + [sym_is_pattern_expression] = STATE(3836), + [sym_cast_expression] = STATE(3836), + [sym_checked_expression] = STATE(3836), + [sym_invocation_expression] = STATE(3689), + [sym_switch_expression] = STATE(3836), + [sym_await_expression] = STATE(3689), + [sym_throw_expression] = STATE(3836), + [sym_element_access_expression] = STATE(2906), + [sym_interpolated_string_expression] = STATE(3836), + [sym_member_access_expression] = STATE(2906), + [sym_object_creation_expression] = STATE(3689), + [sym_parenthesized_expression] = STATE(3689), + [sym__parenthesized_lvalue_expression] = STATE(2906), + [sym_lambda_expression] = STATE(3836), + [sym__lambda_expression_init] = STATE(7460), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3836), + [sym_anonymous_method_expression] = STATE(3836), + [sym_anonymous_object_creation_expression] = STATE(3836), + [sym_implicit_array_creation_expression] = STATE(3836), + [sym_implicit_object_creation_expression] = STATE(3836), + [sym_implicit_stackalloc_expression] = STATE(3836), + [sym_initializer_expression] = STATE(3836), + [sym_default_expression] = STATE(3836), + [sym_with_expression] = STATE(3836), + [sym_sizeof_expression] = STATE(3836), + [sym_typeof_expression] = STATE(3836), + [sym_makeref_expression] = STATE(3836), + [sym_ref_expression] = STATE(3836), + [sym_reftype_expression] = STATE(3836), + [sym_refvalue_expression] = STATE(3836), + [sym_stackalloc_expression] = STATE(3836), + [sym_range_expression] = STATE(3836), + [sym_tuple_expression] = STATE(2906), + [sym_literal] = STATE(3836), + [sym_character_literal] = STATE(3843), + [sym_string_literal] = STATE(3843), + [sym_raw_string_literal] = STATE(3843), + [sym_boolean_literal] = STATE(3843), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3836), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(708), [sym_preproc_endregion] = STATE(708), [sym_preproc_line] = STATE(708), @@ -161393,48 +161279,48 @@ 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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3477), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1481), - [anon_sym_LPAREN] = ACTIONS(2231), - [anon_sym_ref] = ACTIONS(2233), - [anon_sym_LBRACE] = ACTIONS(1487), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1655), + [anon_sym_LPAREN] = ACTIONS(2061), + [anon_sym_ref] = ACTIONS(2063), + [anon_sym_LBRACE] = ACTIONS(1661), + [anon_sym_delegate] = ACTIONS(1663), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(2235), - [anon_sym_readonly] = ACTIONS(2749), + [anon_sym_new] = ACTIONS(1665), + [anon_sym_readonly] = ACTIONS(2767), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1067), - [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_checked] = ACTIONS(1667), + [anon_sym_BANG] = ACTIONS(2067), + [anon_sym_TILDE] = ACTIONS(2067), + [anon_sym_PLUS_PLUS] = ACTIONS(2067), + [anon_sym_DASH_DASH] = ACTIONS(2067), + [anon_sym_true] = ACTIONS(1673), + [anon_sym_false] = ACTIONS(1673), + [anon_sym_PLUS] = ACTIONS(2065), + [anon_sym_DASH] = ACTIONS(2065), + [anon_sym_STAR] = ACTIONS(1675), + [anon_sym_CARET] = ACTIONS(2067), + [anon_sym_AMP] = ACTIONS(2067), + [anon_sym_this] = ACTIONS(1677), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), + [anon_sym_base] = ACTIONS(1679), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1067), + [sym_predefined_type] = ACTIONS(1681), + [anon_sym_unchecked] = ACTIONS(1667), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(2243), + [anon_sym_default] = ACTIONS(1683), + [anon_sym_throw] = ACTIONS(2069), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2245), - [anon_sym_DOT_DOT] = ACTIONS(2247), + [anon_sym_await] = ACTIONS(2071), + [anon_sym_DOT_DOT] = ACTIONS(2073), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -161447,19 +161333,19 @@ static const uint16_t ts_parse_table[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(1089), + [anon_sym_stackalloc] = ACTIONS(1691), + [anon_sym_sizeof] = ACTIONS(1693), + [anon_sym_typeof] = ACTIONS(1695), + [anon_sym___makeref] = ACTIONS(1697), + [anon_sym___reftype] = ACTIONS(1699), + [anon_sym___refvalue] = ACTIONS(1701), + [sym_null_literal] = ACTIONS(1703), + [anon_sym_SQUOTE] = ACTIONS(1705), + [sym_integer_literal] = ACTIONS(1703), + [sym_real_literal] = ACTIONS(1707), + [anon_sym_DQUOTE] = ACTIONS(1709), + [sym_verbatim_string_literal] = ACTIONS(1707), + [aux_sym_preproc_if_token1] = ACTIONS(1711), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -161470,90 +161356,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(151), - [sym_interpolation_verbatim_start] = ACTIONS(153), - [sym_interpolation_raw_start] = ACTIONS(155), - [sym_raw_string_start] = ACTIONS(157), + [sym_interpolation_regular_start] = ACTIONS(1713), + [sym_interpolation_verbatim_start] = ACTIONS(1715), + [sym_interpolation_raw_start] = ACTIONS(1717), + [sym_raw_string_start] = ACTIONS(1719), }, [709] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2420), - [sym__name] = STATE(5911), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2197), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(2291), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(4401), - [sym_non_lvalue_expression] = STATE(3066), - [sym_lvalue_expression] = STATE(3327), - [sym__expression_statement_expression] = STATE(3006), - [sym_assignment_expression] = STATE(3020), - [sym_binary_expression] = STATE(3006), - [sym_postfix_unary_expression] = STATE(3020), - [sym_prefix_unary_expression] = STATE(3020), - [sym__pointer_indirection_expression] = STATE(2423), - [sym_query_expression] = STATE(3006), - [sym_from_clause] = STATE(6159), - [sym_conditional_expression] = STATE(3006), - [sym_conditional_access_expression] = STATE(3006), - [sym_as_expression] = STATE(3006), - [sym_is_expression] = STATE(3006), - [sym_is_pattern_expression] = STATE(3006), - [sym_cast_expression] = STATE(3006), - [sym_checked_expression] = STATE(3006), - [sym_invocation_expression] = STATE(3020), - [sym_switch_expression] = STATE(3006), - [sym_await_expression] = STATE(3020), - [sym_throw_expression] = STATE(3006), - [sym_element_access_expression] = STATE(2423), - [sym_interpolated_string_expression] = STATE(3006), - [sym_member_access_expression] = STATE(2423), - [sym_object_creation_expression] = STATE(3020), - [sym_parenthesized_expression] = STATE(3020), - [sym__parenthesized_lvalue_expression] = STATE(2423), - [sym_lambda_expression] = STATE(3006), - [sym__lambda_expression_init] = STATE(7674), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3006), - [sym_anonymous_method_expression] = STATE(3006), - [sym_anonymous_object_creation_expression] = STATE(3006), - [sym_implicit_array_creation_expression] = STATE(3006), - [sym_implicit_object_creation_expression] = STATE(3006), - [sym_implicit_stackalloc_expression] = STATE(3006), - [sym_initializer_expression] = STATE(3006), - [sym_default_expression] = STATE(3006), - [sym_with_expression] = STATE(3006), - [sym_sizeof_expression] = STATE(3006), - [sym_typeof_expression] = STATE(3006), - [sym_makeref_expression] = STATE(3006), - [sym_ref_expression] = STATE(3006), - [sym_reftype_expression] = STATE(3006), - [sym_refvalue_expression] = STATE(3006), - [sym_stackalloc_expression] = STATE(3006), - [sym_range_expression] = STATE(3006), - [sym_tuple_expression] = STATE(2423), - [sym_literal] = STATE(3006), - [sym_character_literal] = STATE(3011), - [sym_string_literal] = STATE(3011), - [sym_raw_string_literal] = STATE(3011), - [sym_boolean_literal] = STATE(3011), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3006), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(5873), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2238), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(4954), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3468), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3102), + [sym_postfix_unary_expression] = STATE(3079), + [sym_prefix_unary_expression] = STATE(3079), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6134), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3102), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3079), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3102), + [sym_member_access_expression] = STATE(2472), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3079), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7309), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(3102), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3102), + [sym_typeof_expression] = STATE(3102), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2472), + [sym_literal] = STATE(3102), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(709), [sym_preproc_endregion] = STATE(709), [sym_preproc_line] = STATE(709), @@ -161563,48 +161449,48 @@ 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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3440), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1241), - [anon_sym_LPAREN] = ACTIONS(1509), - [anon_sym_ref] = ACTIONS(1511), - [anon_sym_LBRACE] = ACTIONS(1247), - [anon_sym_delegate] = ACTIONS(1249), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1479), + [anon_sym_LPAREN] = ACTIONS(659), + [anon_sym_ref] = ACTIONS(663), + [anon_sym_LBRACE] = ACTIONS(1481), + [anon_sym_RBRACE] = ACTIONS(2875), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1251), - [anon_sym_readonly] = ACTIONS(2749), + [anon_sym_new] = ACTIONS(1059), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1253), - [anon_sym_BANG] = ACTIONS(1515), - [anon_sym_TILDE] = ACTIONS(1515), - [anon_sym_PLUS_PLUS] = ACTIONS(1515), - [anon_sym_DASH_DASH] = ACTIONS(1515), - [anon_sym_true] = ACTIONS(1259), - [anon_sym_false] = ACTIONS(1259), - [anon_sym_PLUS] = ACTIONS(1513), - [anon_sym_DASH] = ACTIONS(1513), - [anon_sym_STAR] = ACTIONS(1517), - [anon_sym_CARET] = ACTIONS(1515), - [anon_sym_AMP] = ACTIONS(1515), - [anon_sym_this] = ACTIONS(1263), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(1485), + [anon_sym_TILDE] = ACTIONS(1485), + [anon_sym_PLUS_PLUS] = ACTIONS(1485), + [anon_sym_DASH_DASH] = ACTIONS(1485), + [anon_sym_true] = ACTIONS(77), + [anon_sym_false] = ACTIONS(77), + [anon_sym_PLUS] = ACTIONS(1483), + [anon_sym_DASH] = ACTIONS(1483), + [anon_sym_STAR] = ACTIONS(683), + [anon_sym_CARET] = ACTIONS(1485), + [anon_sym_AMP] = ACTIONS(1485), + [anon_sym_this] = ACTIONS(83), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1265), + [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1267), - [anon_sym_unchecked] = ACTIONS(1253), + [sym_predefined_type] = ACTIONS(91), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1269), - [anon_sym_throw] = ACTIONS(1519), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(1077), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1521), - [anon_sym_DOT_DOT] = ACTIONS(1523), + [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), @@ -161617,19 +161503,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1277), - [anon_sym_sizeof] = ACTIONS(1279), - [anon_sym_typeof] = ACTIONS(1281), - [anon_sym___makeref] = ACTIONS(1283), - [anon_sym___reftype] = ACTIONS(1285), - [anon_sym___refvalue] = ACTIONS(1287), - [sym_null_literal] = ACTIONS(1289), - [anon_sym_SQUOTE] = ACTIONS(1291), - [sym_integer_literal] = ACTIONS(1289), - [sym_real_literal] = ACTIONS(1293), - [anon_sym_DQUOTE] = ACTIONS(1295), - [sym_verbatim_string_literal] = ACTIONS(1293), - [aux_sym_preproc_if_token1] = ACTIONS(1297), + [anon_sym_stackalloc] = ACTIONS(127), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_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), @@ -161640,91 +161526,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(1299), - [sym_interpolation_verbatim_start] = ACTIONS(1301), - [sym_interpolation_raw_start] = ACTIONS(1303), - [sym_raw_string_start] = ACTIONS(1305), + [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(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_block] = STATE(3084), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(5876), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2376), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(5448), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3681), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3080), - [sym_postfix_unary_expression] = STATE(3111), - [sym_prefix_unary_expression] = STATE(3111), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6170), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3080), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3111), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3080), - [sym_member_access_expression] = STATE(2484), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3111), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7511), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(3080), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3080), - [sym_typeof_expression] = STATE(3080), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2484), - [sym_literal] = STATE(3080), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_block] = STATE(3058), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(5893), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2361), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(5387), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3673), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3102), + [sym_postfix_unary_expression] = STATE(3079), + [sym_prefix_unary_expression] = STATE(3079), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6159), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3102), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3079), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3102), + [sym_member_access_expression] = STATE(2472), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3079), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7363), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(3102), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3102), + [sym_typeof_expression] = STATE(3102), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2472), + [sym_literal] = STATE(3102), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(710), [sym_preproc_endregion] = STATE(710), [sym_preproc_line] = STATE(710), @@ -161734,47 +161620,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(710), [sym_preproc_define] = STATE(710), [sym_preproc_undef] = STATE(710), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1481), - [anon_sym_LPAREN] = ACTIONS(2231), - [anon_sym_ref] = ACTIONS(2233), - [anon_sym_LBRACE] = ACTIONS(2847), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1479), + [anon_sym_LPAREN] = ACTIONS(2237), + [anon_sym_ref] = ACTIONS(2239), + [anon_sym_LBRACE] = ACTIONS(2855), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(2235), + [anon_sym_new] = ACTIONS(2241), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1067), - [anon_sym_BANG] = ACTIONS(2239), - [anon_sym_TILDE] = ACTIONS(2239), - [anon_sym_PLUS_PLUS] = ACTIONS(2239), - [anon_sym_DASH_DASH] = ACTIONS(2239), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(2245), + [anon_sym_TILDE] = ACTIONS(2245), + [anon_sym_PLUS_PLUS] = ACTIONS(2245), + [anon_sym_DASH_DASH] = ACTIONS(2245), [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_PLUS] = ACTIONS(2243), + [anon_sym_DASH] = ACTIONS(2243), + [anon_sym_STAR] = ACTIONS(2247), + [anon_sym_CARET] = ACTIONS(2245), + [anon_sym_AMP] = ACTIONS(2245), [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(1067), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(2243), + [anon_sym_throw] = ACTIONS(2249), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2245), - [anon_sym_DOT_DOT] = ACTIONS(2247), + [anon_sym_await] = ACTIONS(2251), + [anon_sym_DOT_DOT] = ACTIONS(2253), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -161799,7 +161685,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(1089), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -161816,84 +161702,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [711] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(5160), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2204), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(2291), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(4670), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3379), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3080), - [sym_postfix_unary_expression] = STATE(3111), - [sym_prefix_unary_expression] = STATE(3111), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6154), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3080), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3111), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3080), - [sym_member_access_expression] = STATE(2484), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3111), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7575), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(3080), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3080), - [sym_typeof_expression] = STATE(3080), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2484), - [sym_literal] = STATE(3080), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2603), + [sym__name] = STATE(5865), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2344), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(2279), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(4368), + [sym_non_lvalue_expression] = STATE(3220), + [sym_lvalue_expression] = STATE(3234), + [sym__expression_statement_expression] = STATE(3236), + [sym_assignment_expression] = STATE(3221), + [sym_binary_expression] = STATE(3236), + [sym_postfix_unary_expression] = STATE(3221), + [sym_prefix_unary_expression] = STATE(3221), + [sym__pointer_indirection_expression] = STATE(2602), + [sym_query_expression] = STATE(3236), + [sym_from_clause] = STATE(6151), + [sym_conditional_expression] = STATE(3236), + [sym_conditional_access_expression] = STATE(3236), + [sym_as_expression] = STATE(3236), + [sym_is_expression] = STATE(3236), + [sym_is_pattern_expression] = STATE(3236), + [sym_cast_expression] = STATE(3236), + [sym_checked_expression] = STATE(3236), + [sym_invocation_expression] = STATE(3221), + [sym_switch_expression] = STATE(3236), + [sym_await_expression] = STATE(3221), + [sym_throw_expression] = STATE(3236), + [sym_element_access_expression] = STATE(2602), + [sym_interpolated_string_expression] = STATE(3236), + [sym_member_access_expression] = STATE(2602), + [sym_object_creation_expression] = STATE(3221), + [sym_parenthesized_expression] = STATE(3221), + [sym__parenthesized_lvalue_expression] = STATE(2602), + [sym_lambda_expression] = STATE(3236), + [sym__lambda_expression_init] = STATE(7276), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3236), + [sym_anonymous_method_expression] = STATE(3236), + [sym_anonymous_object_creation_expression] = STATE(3236), + [sym_implicit_array_creation_expression] = STATE(3236), + [sym_implicit_object_creation_expression] = STATE(3236), + [sym_implicit_stackalloc_expression] = STATE(3236), + [sym_initializer_expression] = STATE(3236), + [sym_default_expression] = STATE(3236), + [sym_with_expression] = STATE(3236), + [sym_sizeof_expression] = STATE(3236), + [sym_typeof_expression] = STATE(3236), + [sym_makeref_expression] = STATE(3236), + [sym_ref_expression] = STATE(3236), + [sym_reftype_expression] = STATE(3236), + [sym_refvalue_expression] = STATE(3236), + [sym_stackalloc_expression] = STATE(3236), + [sym_range_expression] = STATE(3236), + [sym_tuple_expression] = STATE(2602), + [sym_literal] = STATE(3236), + [sym_character_literal] = STATE(3272), + [sym_string_literal] = STATE(3272), + [sym_raw_string_literal] = STATE(3272), + [sym_boolean_literal] = STATE(3272), + [sym_identifier] = STATE(2261), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3236), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(711), [sym_preproc_endregion] = STATE(711), [sym_preproc_line] = STATE(711), @@ -161903,48 +161789,218 @@ 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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3379), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1481), - [anon_sym_LPAREN] = ACTIONS(895), - [anon_sym_ref] = ACTIONS(2695), - [anon_sym_LBRACE] = ACTIONS(1487), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1149), + [anon_sym_LPAREN] = ACTIONS(1597), + [anon_sym_ref] = ACTIONS(1599), + [anon_sym_LBRACE] = ACTIONS(1155), + [anon_sym_delegate] = ACTIONS(1157), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1061), - [anon_sym_readonly] = ACTIONS(2841), + [anon_sym_new] = ACTIONS(1535), + [anon_sym_readonly] = ACTIONS(2767), + [anon_sym_where] = ACTIONS(29), + [anon_sym_notnull] = ACTIONS(29), + [anon_sym_unmanaged] = ACTIONS(29), + [anon_sym_checked] = ACTIONS(1163), + [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(1169), + [anon_sym_false] = ACTIONS(1169), + [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(1173), + [anon_sym_scoped] = ACTIONS(85), + [anon_sym_base] = ACTIONS(1175), + [anon_sym_var] = ACTIONS(89), + [sym_predefined_type] = ACTIONS(1177), + [anon_sym_unchecked] = ACTIONS(1163), + [anon_sym_yield] = ACTIONS(29), + [anon_sym_default] = ACTIONS(1179), + [anon_sym_throw] = ACTIONS(1607), + [anon_sym_when] = ACTIONS(29), + [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), + [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(1187), + [anon_sym_sizeof] = ACTIONS(1189), + [anon_sym_typeof] = ACTIONS(1191), + [anon_sym___makeref] = ACTIONS(1193), + [anon_sym___reftype] = ACTIONS(1195), + [anon_sym___refvalue] = ACTIONS(1197), + [sym_null_literal] = ACTIONS(1199), + [anon_sym_SQUOTE] = ACTIONS(1201), + [sym_integer_literal] = ACTIONS(1199), + [sym_real_literal] = ACTIONS(1203), + [anon_sym_DQUOTE] = ACTIONS(1205), + [sym_verbatim_string_literal] = ACTIONS(1203), + [aux_sym_preproc_if_token1] = ACTIONS(1207), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + [sym_interpolation_regular_start] = ACTIONS(1209), + [sym_interpolation_verbatim_start] = ACTIONS(1211), + [sym_interpolation_raw_start] = ACTIONS(1213), + [sym_raw_string_start] = ACTIONS(1215), + }, + [712] = { + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(5873), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2238), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(4954), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3468), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3102), + [sym_postfix_unary_expression] = STATE(3079), + [sym_prefix_unary_expression] = STATE(3079), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6134), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3102), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3079), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3102), + [sym_member_access_expression] = STATE(2472), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3079), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7309), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(3102), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3102), + [sym_typeof_expression] = STATE(3102), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2472), + [sym_literal] = STATE(3102), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), + [sym_preproc_region] = STATE(712), + [sym_preproc_endregion] = STATE(712), + [sym_preproc_line] = STATE(712), + [sym_preproc_pragma] = STATE(712), + [sym_preproc_nullable] = STATE(712), + [sym_preproc_error] = STATE(712), + [sym_preproc_warning] = STATE(712), + [sym_preproc_define] = STATE(712), + [sym_preproc_undef] = STATE(712), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), + [sym__identifier_token] = ACTIONS(25), + [anon_sym_alias] = ACTIONS(29), + [anon_sym_global] = ACTIONS(29), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1479), + [anon_sym_LPAREN] = ACTIONS(659), + [anon_sym_ref] = ACTIONS(663), + [anon_sym_LBRACE] = ACTIONS(1481), + [anon_sym_RBRACE] = ACTIONS(2877), + [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(1067), - [anon_sym_BANG] = ACTIONS(1495), - [anon_sym_TILDE] = ACTIONS(1495), - [anon_sym_PLUS_PLUS] = ACTIONS(1495), - [anon_sym_DASH_DASH] = ACTIONS(1495), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(1485), + [anon_sym_TILDE] = ACTIONS(1485), + [anon_sym_PLUS_PLUS] = ACTIONS(1485), + [anon_sym_DASH_DASH] = ACTIONS(1485), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1493), - [anon_sym_DASH] = ACTIONS(1493), - [anon_sym_STAR] = ACTIONS(905), - [anon_sym_CARET] = ACTIONS(1495), - [anon_sym_AMP] = ACTIONS(1495), + [anon_sym_PLUS] = ACTIONS(1483), + [anon_sym_DASH] = ACTIONS(1483), + [anon_sym_STAR] = ACTIONS(683), + [anon_sym_CARET] = ACTIONS(1485), + [anon_sym_AMP] = ACTIONS(1485), [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(2309), + [anon_sym_scoped] = ACTIONS(85), [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(2631), + [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1067), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1079), + [anon_sym_throw] = ACTIONS(1077), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1081), - [anon_sym_DOT_DOT] = ACTIONS(911), + [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), @@ -161969,7 +162025,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(1089), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -161985,136 +162041,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), }, - [712] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_block] = STATE(3430), - [sym_bracketed_argument_list] = STATE(2762), - [sym__name] = STATE(5876), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2376), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(5115), - [sym_non_lvalue_expression] = STATE(3438), - [sym_lvalue_expression] = STATE(3533), - [sym__expression_statement_expression] = STATE(3362), - [sym_assignment_expression] = STATE(3449), - [sym_binary_expression] = STATE(3362), - [sym_postfix_unary_expression] = STATE(3449), - [sym_prefix_unary_expression] = STATE(3449), - [sym__pointer_indirection_expression] = STATE(2747), - [sym_query_expression] = STATE(3362), - [sym_from_clause] = STATE(6175), - [sym_conditional_expression] = STATE(3362), - [sym_conditional_access_expression] = STATE(3362), - [sym_as_expression] = STATE(3362), - [sym_is_expression] = STATE(3362), - [sym_is_pattern_expression] = STATE(3362), - [sym_cast_expression] = STATE(3362), - [sym_checked_expression] = STATE(3362), - [sym_invocation_expression] = STATE(3449), - [sym_switch_expression] = STATE(3362), - [sym_await_expression] = STATE(3449), - [sym_throw_expression] = STATE(3362), - [sym_element_access_expression] = STATE(2747), - [sym_interpolated_string_expression] = STATE(3362), - [sym_member_access_expression] = STATE(2747), - [sym_object_creation_expression] = STATE(3449), - [sym_parenthesized_expression] = STATE(3449), - [sym__parenthesized_lvalue_expression] = STATE(2747), - [sym_lambda_expression] = STATE(3362), - [sym__lambda_expression_init] = STATE(7619), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3362), - [sym_anonymous_method_expression] = STATE(3362), - [sym_anonymous_object_creation_expression] = STATE(3362), - [sym_implicit_array_creation_expression] = STATE(3362), - [sym_implicit_object_creation_expression] = STATE(3362), - [sym_implicit_stackalloc_expression] = STATE(3362), - [sym_initializer_expression] = STATE(3362), - [sym_default_expression] = STATE(3362), - [sym_with_expression] = STATE(3362), - [sym_sizeof_expression] = STATE(3362), - [sym_typeof_expression] = STATE(3362), - [sym_makeref_expression] = STATE(3362), - [sym_ref_expression] = STATE(3362), - [sym_reftype_expression] = STATE(3362), - [sym_refvalue_expression] = STATE(3362), - [sym_stackalloc_expression] = STATE(3362), - [sym_range_expression] = STATE(3362), - [sym_tuple_expression] = STATE(2747), - [sym_literal] = STATE(3362), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3362), - [sym_preproc_if_in_attribute_list] = STATE(5576), - [sym_preproc_region] = STATE(712), - [sym_preproc_endregion] = STATE(712), - [sym_preproc_line] = STATE(712), - [sym_preproc_pragma] = STATE(712), - [sym_preproc_nullable] = STATE(712), - [sym_preproc_error] = STATE(712), - [sym_preproc_warning] = STATE(712), - [sym_preproc_define] = STATE(712), - [sym_preproc_undef] = STATE(712), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3385), + [713] = { + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(5873), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2238), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(4954), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3468), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3102), + [sym_postfix_unary_expression] = STATE(3079), + [sym_prefix_unary_expression] = STATE(3079), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6134), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3102), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3079), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3102), + [sym_member_access_expression] = STATE(2472), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3079), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7309), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(3102), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3102), + [sym_typeof_expression] = STATE(3102), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2472), + [sym_literal] = STATE(3102), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), + [sym_preproc_region] = STATE(713), + [sym_preproc_endregion] = STATE(713), + [sym_preproc_line] = STATE(713), + [sym_preproc_pragma] = STATE(713), + [sym_preproc_nullable] = STATE(713), + [sym_preproc_error] = STATE(713), + [sym_preproc_warning] = STATE(713), + [sym_preproc_define] = STATE(713), + [sym_preproc_undef] = STATE(713), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1307), - [anon_sym_LPAREN] = ACTIONS(1877), - [anon_sym_ref] = ACTIONS(1879), - [anon_sym_LBRACE] = ACTIONS(2857), - [anon_sym_delegate] = ACTIONS(1315), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1479), + [anon_sym_LPAREN] = ACTIONS(659), + [anon_sym_ref] = ACTIONS(663), + [anon_sym_LBRACE] = ACTIONS(1481), + [anon_sym_RBRACE] = ACTIONS(2879), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1881), + [anon_sym_new] = ACTIONS(1059), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1319), - [anon_sym_BANG] = ACTIONS(1885), - [anon_sym_TILDE] = ACTIONS(1885), - [anon_sym_PLUS_PLUS] = ACTIONS(1885), - [anon_sym_DASH_DASH] = ACTIONS(1885), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(1485), + [anon_sym_TILDE] = ACTIONS(1485), + [anon_sym_PLUS_PLUS] = ACTIONS(1485), + [anon_sym_DASH_DASH] = ACTIONS(1485), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1883), - [anon_sym_DASH] = ACTIONS(1883), - [anon_sym_STAR] = ACTIONS(1887), - [anon_sym_CARET] = ACTIONS(1885), - [anon_sym_AMP] = ACTIONS(1885), - [anon_sym_this] = ACTIONS(1323), + [anon_sym_PLUS] = ACTIONS(1483), + [anon_sym_DASH] = ACTIONS(1483), + [anon_sym_STAR] = ACTIONS(683), + [anon_sym_CARET] = ACTIONS(1485), + [anon_sym_AMP] = ACTIONS(1485), + [anon_sym_this] = ACTIONS(83), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1325), + [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1319), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1889), + [anon_sym_throw] = ACTIONS(1077), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1891), - [anon_sym_DOT_DOT] = ACTIONS(1893), + [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), @@ -162127,19 +162183,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1333), + [anon_sym_stackalloc] = ACTIONS(127), [anon_sym_sizeof] = ACTIONS(129), [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(1335), - [anon_sym___reftype] = ACTIONS(1337), - [anon_sym___refvalue] = ACTIONS(1339), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), [sym_null_literal] = ACTIONS(139), [anon_sym_SQUOTE] = ACTIONS(141), [sym_integer_literal] = ACTIONS(139), [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1341), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -162155,136 +162211,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), }, - [713] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2762), - [sym__name] = STATE(5876), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2376), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(2291), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(4856), - [sym_non_lvalue_expression] = STATE(3438), - [sym_lvalue_expression] = STATE(3533), - [sym__expression_statement_expression] = STATE(3362), - [sym_assignment_expression] = STATE(3449), - [sym_binary_expression] = STATE(3362), - [sym_postfix_unary_expression] = STATE(3449), - [sym_prefix_unary_expression] = STATE(3449), - [sym__pointer_indirection_expression] = STATE(2747), - [sym_query_expression] = STATE(3362), - [sym_from_clause] = STATE(6175), - [sym_conditional_expression] = STATE(3362), - [sym_conditional_access_expression] = STATE(3362), - [sym_as_expression] = STATE(3362), - [sym_is_expression] = STATE(3362), - [sym_is_pattern_expression] = STATE(3362), - [sym_cast_expression] = STATE(3362), - [sym_checked_expression] = STATE(3362), - [sym_invocation_expression] = STATE(3449), - [sym_switch_expression] = STATE(3362), - [sym_await_expression] = STATE(3449), - [sym_throw_expression] = STATE(3362), - [sym_element_access_expression] = STATE(2747), - [sym_interpolated_string_expression] = STATE(3362), - [sym_member_access_expression] = STATE(2747), - [sym_object_creation_expression] = STATE(3449), - [sym_parenthesized_expression] = STATE(3449), - [sym__parenthesized_lvalue_expression] = STATE(2747), - [sym_lambda_expression] = STATE(3362), - [sym__lambda_expression_init] = STATE(7619), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3362), - [sym_anonymous_method_expression] = STATE(3362), - [sym_anonymous_object_creation_expression] = STATE(3362), - [sym_implicit_array_creation_expression] = STATE(3362), - [sym_implicit_object_creation_expression] = STATE(3362), - [sym_implicit_stackalloc_expression] = STATE(3362), - [sym_initializer_expression] = STATE(3362), - [sym_default_expression] = STATE(3362), - [sym_with_expression] = STATE(3362), - [sym_sizeof_expression] = STATE(3362), - [sym_typeof_expression] = STATE(3362), - [sym_makeref_expression] = STATE(3362), - [sym_ref_expression] = STATE(3362), - [sym_reftype_expression] = STATE(3362), - [sym_refvalue_expression] = STATE(3362), - [sym_stackalloc_expression] = STATE(3362), - [sym_range_expression] = STATE(3362), - [sym_tuple_expression] = STATE(2747), - [sym_literal] = STATE(3362), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3362), - [sym_preproc_if_in_attribute_list] = STATE(5576), - [sym_preproc_region] = STATE(713), - [sym_preproc_endregion] = STATE(713), - [sym_preproc_line] = STATE(713), - [sym_preproc_pragma] = STATE(713), - [sym_preproc_nullable] = STATE(713), - [sym_preproc_error] = STATE(713), - [sym_preproc_warning] = STATE(713), - [sym_preproc_define] = STATE(713), - [sym_preproc_undef] = STATE(713), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3385), + [714] = { + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(5152), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2196), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(5539), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3356), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3102), + [sym_postfix_unary_expression] = STATE(3079), + [sym_prefix_unary_expression] = STATE(3079), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6134), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3102), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3079), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3102), + [sym_member_access_expression] = STATE(2472), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3079), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7627), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(3102), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3102), + [sym_typeof_expression] = STATE(3102), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2472), + [sym_literal] = STATE(3102), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), + [sym_preproc_region] = STATE(714), + [sym_preproc_endregion] = STATE(714), + [sym_preproc_line] = STATE(714), + [sym_preproc_pragma] = STATE(714), + [sym_preproc_nullable] = STATE(714), + [sym_preproc_error] = STATE(714), + [sym_preproc_warning] = STATE(714), + [sym_preproc_define] = STATE(714), + [sym_preproc_undef] = STATE(714), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), + [anon_sym_SEMI] = ACTIONS(2881), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1307), - [anon_sym_LPAREN] = ACTIONS(1877), - [anon_sym_ref] = ACTIONS(1879), - [anon_sym_LBRACE] = ACTIONS(1313), - [anon_sym_delegate] = ACTIONS(1315), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1479), + [anon_sym_LPAREN] = ACTIONS(1511), + [anon_sym_ref] = ACTIONS(1513), + [anon_sym_LBRACE] = ACTIONS(1481), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1881), - [anon_sym_readonly] = ACTIONS(2749), + [anon_sym_new] = ACTIONS(1515), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1319), - [anon_sym_BANG] = ACTIONS(1885), - [anon_sym_TILDE] = ACTIONS(1885), - [anon_sym_PLUS_PLUS] = ACTIONS(1885), - [anon_sym_DASH_DASH] = ACTIONS(1885), + [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(1883), - [anon_sym_DASH] = ACTIONS(1883), - [anon_sym_STAR] = ACTIONS(1887), - [anon_sym_CARET] = ACTIONS(1885), - [anon_sym_AMP] = ACTIONS(1885), - [anon_sym_this] = ACTIONS(1323), + [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(1325), + [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1319), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1889), + [anon_sym_throw] = ACTIONS(1517), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1891), - [anon_sym_DOT_DOT] = ACTIONS(1893), + [anon_sym_await] = ACTIONS(1519), + [anon_sym_DOT_DOT] = ACTIONS(1521), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -162297,19 +162353,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1333), + [anon_sym_stackalloc] = ACTIONS(127), [anon_sym_sizeof] = ACTIONS(129), [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(1335), - [anon_sym___reftype] = ACTIONS(1337), - [anon_sym___refvalue] = ACTIONS(1339), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), [sym_null_literal] = ACTIONS(139), [anon_sym_SQUOTE] = ACTIONS(141), [sym_integer_literal] = ACTIONS(139), [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1341), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -162325,255 +162381,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), }, - [714] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2914), - [sym__name] = STATE(5873), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2362), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(2291), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(4047), - [sym_non_lvalue_expression] = STATE(3880), - [sym_lvalue_expression] = STATE(3092), - [sym__expression_statement_expression] = STATE(3873), - [sym_assignment_expression] = STATE(3881), - [sym_binary_expression] = STATE(3873), - [sym_postfix_unary_expression] = STATE(3881), - [sym_prefix_unary_expression] = STATE(3881), - [sym__pointer_indirection_expression] = STATE(2913), - [sym_query_expression] = STATE(3873), - [sym_from_clause] = STATE(6168), - [sym_conditional_expression] = STATE(3873), - [sym_conditional_access_expression] = STATE(3873), - [sym_as_expression] = STATE(3873), - [sym_is_expression] = STATE(3873), - [sym_is_pattern_expression] = STATE(3873), - [sym_cast_expression] = STATE(3873), - [sym_checked_expression] = STATE(3873), - [sym_invocation_expression] = STATE(3881), - [sym_switch_expression] = STATE(3873), - [sym_await_expression] = STATE(3881), - [sym_throw_expression] = STATE(3873), - [sym_element_access_expression] = STATE(2913), - [sym_interpolated_string_expression] = STATE(3873), - [sym_member_access_expression] = STATE(2913), - [sym_object_creation_expression] = STATE(3881), - [sym_parenthesized_expression] = STATE(3881), - [sym__parenthesized_lvalue_expression] = STATE(2913), - [sym_lambda_expression] = STATE(3873), - [sym__lambda_expression_init] = STATE(7533), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3873), - [sym_anonymous_method_expression] = STATE(3873), - [sym_anonymous_object_creation_expression] = STATE(3873), - [sym_implicit_array_creation_expression] = STATE(3873), - [sym_implicit_object_creation_expression] = STATE(3873), - [sym_implicit_stackalloc_expression] = STATE(3873), - [sym_initializer_expression] = STATE(3873), - [sym_default_expression] = STATE(3873), - [sym_with_expression] = STATE(3873), - [sym_sizeof_expression] = STATE(3873), - [sym_typeof_expression] = STATE(3873), - [sym_makeref_expression] = STATE(3873), - [sym_ref_expression] = STATE(3873), - [sym_reftype_expression] = STATE(3873), - [sym_refvalue_expression] = STATE(3873), - [sym_stackalloc_expression] = STATE(3873), - [sym_range_expression] = STATE(3873), - [sym_tuple_expression] = STATE(2913), - [sym_literal] = STATE(3873), - [sym_character_literal] = STATE(3877), - [sym_string_literal] = STATE(3877), - [sym_raw_string_literal] = STATE(3877), - [sym_boolean_literal] = STATE(3877), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3873), - [sym_preproc_if_in_attribute_list] = STATE(5576), - [sym_preproc_region] = STATE(714), - [sym_preproc_endregion] = STATE(714), - [sym_preproc_line] = STATE(714), - [sym_preproc_pragma] = STATE(714), - [sym_preproc_nullable] = STATE(714), - [sym_preproc_error] = STATE(714), - [sym_preproc_warning] = STATE(714), - [sym_preproc_define] = STATE(714), - [sym_preproc_undef] = STATE(714), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3382), - [sym__identifier_token] = ACTIONS(25), - [anon_sym_alias] = ACTIONS(29), - [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1627), - [anon_sym_LPAREN] = ACTIONS(1961), - [anon_sym_ref] = ACTIONS(1963), - [anon_sym_LBRACE] = ACTIONS(1633), - [anon_sym_delegate] = ACTIONS(1635), - [anon_sym_async] = ACTIONS(1047), - [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1637), - [anon_sym_readonly] = ACTIONS(2749), - [anon_sym_where] = ACTIONS(29), - [anon_sym_notnull] = ACTIONS(29), - [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1639), - [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(1645), - [anon_sym_false] = ACTIONS(1645), - [anon_sym_PLUS] = ACTIONS(1965), - [anon_sym_DASH] = ACTIONS(1965), - [anon_sym_STAR] = ACTIONS(1647), - [anon_sym_CARET] = ACTIONS(1967), - [anon_sym_AMP] = ACTIONS(1967), - [anon_sym_this] = ACTIONS(1649), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1651), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1653), - [anon_sym_unchecked] = ACTIONS(1639), - [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1655), - [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(1663), - [anon_sym_sizeof] = ACTIONS(1665), - [anon_sym_typeof] = ACTIONS(1667), - [anon_sym___makeref] = ACTIONS(1669), - [anon_sym___reftype] = ACTIONS(1671), - [anon_sym___refvalue] = ACTIONS(1673), - [sym_null_literal] = ACTIONS(1675), - [anon_sym_SQUOTE] = ACTIONS(1677), - [sym_integer_literal] = ACTIONS(1675), - [sym_real_literal] = ACTIONS(1679), - [anon_sym_DQUOTE] = ACTIONS(1681), - [sym_verbatim_string_literal] = ACTIONS(1679), - [aux_sym_preproc_if_token1] = ACTIONS(1683), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1685), - [sym_interpolation_verbatim_start] = ACTIONS(1687), - [sym_interpolation_raw_start] = ACTIONS(1689), - [sym_raw_string_start] = ACTIONS(1691), - }, [715] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(5160), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2204), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(2291), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(5545), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3677), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3080), - [sym_postfix_unary_expression] = STATE(3111), - [sym_prefix_unary_expression] = STATE(3111), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6153), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3080), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3111), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3080), - [sym_member_access_expression] = STATE(2484), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3111), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7549), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(3080), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3080), - [sym_typeof_expression] = STATE(3080), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2484), - [sym_literal] = STATE(3080), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2267), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(5152), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2196), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(5335), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3356), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3102), + [sym_postfix_unary_expression] = STATE(3079), + [sym_prefix_unary_expression] = STATE(3079), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6134), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3102), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3079), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3102), + [sym_member_access_expression] = STATE(2472), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3079), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7627), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(3102), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3102), + [sym_typeof_expression] = STATE(3102), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2472), + [sym_literal] = STATE(3102), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(715), [sym_preproc_endregion] = STATE(715), [sym_preproc_line] = STATE(715), @@ -162583,48 +162469,48 @@ 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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), + [anon_sym_SEMI] = ACTIONS(2883), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1481), - [anon_sym_LPAREN] = ACTIONS(2047), - [anon_sym_ref] = ACTIONS(2049), - [anon_sym_LBRACE] = ACTIONS(1487), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1479), + [anon_sym_LPAREN] = ACTIONS(1511), + [anon_sym_ref] = ACTIONS(1513), + [anon_sym_LBRACE] = ACTIONS(1481), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1061), - [anon_sym_readonly] = ACTIONS(2749), + [anon_sym_new] = ACTIONS(1515), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1067), - [anon_sym_BANG] = ACTIONS(2053), - [anon_sym_TILDE] = ACTIONS(2053), - [anon_sym_PLUS_PLUS] = ACTIONS(2053), - [anon_sym_DASH_DASH] = ACTIONS(2053), + [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(2051), - [anon_sym_DASH] = ACTIONS(2051), - [anon_sym_STAR] = ACTIONS(2055), - [anon_sym_CARET] = ACTIONS(2053), - [anon_sym_AMP] = ACTIONS(2053), + [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(1067), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(2057), + [anon_sym_throw] = ACTIONS(1517), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2059), - [anon_sym_DOT_DOT] = ACTIONS(2061), + [anon_sym_await] = ACTIONS(1519), + [anon_sym_DOT_DOT] = ACTIONS(1521), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -162649,7 +162535,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(1089), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -162666,85 +162552,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [716] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_block] = STATE(3430), - [sym_bracketed_argument_list] = STATE(2762), - [sym__name] = STATE(5910), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2247), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(4191), - [sym_non_lvalue_expression] = STATE(3438), - [sym_lvalue_expression] = STATE(3136), - [sym__expression_statement_expression] = STATE(3362), - [sym_assignment_expression] = STATE(3449), - [sym_binary_expression] = STATE(3362), - [sym_postfix_unary_expression] = STATE(3449), - [sym_prefix_unary_expression] = STATE(3449), - [sym__pointer_indirection_expression] = STATE(2747), - [sym_query_expression] = STATE(3362), - [sym_from_clause] = STATE(6171), - [sym_conditional_expression] = STATE(3362), - [sym_conditional_access_expression] = STATE(3362), - [sym_as_expression] = STATE(3362), - [sym_is_expression] = STATE(3362), - [sym_is_pattern_expression] = STATE(3362), - [sym_cast_expression] = STATE(3362), - [sym_checked_expression] = STATE(3362), - [sym_invocation_expression] = STATE(3449), - [sym_switch_expression] = STATE(3362), - [sym_await_expression] = STATE(3449), - [sym_throw_expression] = STATE(3362), - [sym_element_access_expression] = STATE(2747), - [sym_interpolated_string_expression] = STATE(3362), - [sym_member_access_expression] = STATE(2747), - [sym_object_creation_expression] = STATE(3449), - [sym_parenthesized_expression] = STATE(3449), - [sym__parenthesized_lvalue_expression] = STATE(2747), - [sym_lambda_expression] = STATE(3362), - [sym__lambda_expression_init] = STATE(7452), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3362), - [sym_anonymous_method_expression] = STATE(3362), - [sym_anonymous_object_creation_expression] = STATE(3362), - [sym_implicit_array_creation_expression] = STATE(3362), - [sym_implicit_object_creation_expression] = STATE(3362), - [sym_implicit_stackalloc_expression] = STATE(3362), - [sym_initializer_expression] = STATE(3362), - [sym_default_expression] = STATE(3362), - [sym_with_expression] = STATE(3362), - [sym_sizeof_expression] = STATE(3362), - [sym_typeof_expression] = STATE(3362), - [sym_makeref_expression] = STATE(3362), - [sym_ref_expression] = STATE(3362), - [sym_reftype_expression] = STATE(3362), - [sym_refvalue_expression] = STATE(3362), - [sym_stackalloc_expression] = STATE(3362), - [sym_range_expression] = STATE(3362), - [sym_tuple_expression] = STATE(2747), - [sym_literal] = STATE(3362), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3362), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(5152), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2196), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(2279), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(5042), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3510), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3102), + [sym_postfix_unary_expression] = STATE(3079), + [sym_prefix_unary_expression] = STATE(3079), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6134), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3102), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3079), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3102), + [sym_member_access_expression] = STATE(2472), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3079), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7425), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(3102), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3102), + [sym_typeof_expression] = STATE(3102), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2472), + [sym_literal] = STATE(3102), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(716), [sym_preproc_endregion] = STATE(716), [sym_preproc_line] = STATE(716), @@ -162754,47 +162639,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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3385), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1307), - [anon_sym_LPAREN] = ACTIONS(1309), - [anon_sym_ref] = ACTIONS(1311), - [anon_sym_LBRACE] = ACTIONS(2857), - [anon_sym_delegate] = ACTIONS(1315), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1479), + [anon_sym_LPAREN] = ACTIONS(43), + [anon_sym_ref] = ACTIONS(715), + [anon_sym_LBRACE] = ACTIONS(1481), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1317), + [anon_sym_new] = ACTIONS(1059), + [anon_sym_readonly] = ACTIONS(2767), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1319), - [anon_sym_BANG] = ACTIONS(1069), - [anon_sym_TILDE] = ACTIONS(1069), - [anon_sym_PLUS_PLUS] = ACTIONS(1069), - [anon_sym_DASH_DASH] = ACTIONS(1069), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(1525), + [anon_sym_TILDE] = ACTIONS(1525), + [anon_sym_PLUS_PLUS] = ACTIONS(1525), + [anon_sym_DASH_DASH] = ACTIONS(1525), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1071), - [anon_sym_DASH] = ACTIONS(1071), - [anon_sym_STAR] = ACTIONS(1321), - [anon_sym_CARET] = ACTIONS(1069), - [anon_sym_AMP] = ACTIONS(1069), - [anon_sym_this] = ACTIONS(1323), + [anon_sym_PLUS] = ACTIONS(1523), + [anon_sym_DASH] = ACTIONS(1523), + [anon_sym_STAR] = ACTIONS(81), + [anon_sym_CARET] = ACTIONS(1525), + [anon_sym_AMP] = ACTIONS(1525), + [anon_sym_this] = ACTIONS(83), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1325), + [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1319), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1327), + [anon_sym_throw] = ACTIONS(1527), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1329), - [anon_sym_DOT_DOT] = ACTIONS(1331), + [anon_sym_await] = ACTIONS(1529), + [anon_sym_DOT_DOT] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -162807,19 +162693,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1333), + [anon_sym_stackalloc] = ACTIONS(127), [anon_sym_sizeof] = ACTIONS(129), [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(1335), - [anon_sym___reftype] = ACTIONS(1337), - [anon_sym___refvalue] = ACTIONS(1339), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), [sym_null_literal] = ACTIONS(139), [anon_sym_SQUOTE] = ACTIONS(141), [sym_integer_literal] = ACTIONS(139), [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1341), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -162836,85 +162722,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [717] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_block] = STATE(3084), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(5160), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2204), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(5497), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3677), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3080), - [sym_postfix_unary_expression] = STATE(3111), - [sym_prefix_unary_expression] = STATE(3111), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6153), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3080), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3111), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3080), - [sym_member_access_expression] = STATE(2484), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3111), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7549), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(3080), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3080), - [sym_typeof_expression] = STATE(3080), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2484), - [sym_literal] = STATE(3080), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2267), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2416), + [sym__name] = STATE(5885), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2404), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(2279), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(4156), + [sym_non_lvalue_expression] = STATE(3040), + [sym_lvalue_expression] = STATE(3115), + [sym__expression_statement_expression] = STATE(3035), + [sym_assignment_expression] = STATE(3043), + [sym_binary_expression] = STATE(3035), + [sym_postfix_unary_expression] = STATE(3043), + [sym_prefix_unary_expression] = STATE(3043), + [sym__pointer_indirection_expression] = STATE(2415), + [sym_query_expression] = STATE(3035), + [sym_from_clause] = STATE(6162), + [sym_conditional_expression] = STATE(3035), + [sym_conditional_access_expression] = STATE(3035), + [sym_as_expression] = STATE(3035), + [sym_is_expression] = STATE(3035), + [sym_is_pattern_expression] = STATE(3035), + [sym_cast_expression] = STATE(3035), + [sym_checked_expression] = STATE(3035), + [sym_invocation_expression] = STATE(3043), + [sym_switch_expression] = STATE(3035), + [sym_await_expression] = STATE(3043), + [sym_throw_expression] = STATE(3035), + [sym_element_access_expression] = STATE(2415), + [sym_interpolated_string_expression] = STATE(3035), + [sym_member_access_expression] = STATE(2415), + [sym_object_creation_expression] = STATE(3043), + [sym_parenthesized_expression] = STATE(3043), + [sym__parenthesized_lvalue_expression] = STATE(2415), + [sym_lambda_expression] = STATE(3035), + [sym__lambda_expression_init] = STATE(7416), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3035), + [sym_anonymous_method_expression] = STATE(3035), + [sym_anonymous_object_creation_expression] = STATE(3035), + [sym_implicit_array_creation_expression] = STATE(3035), + [sym_implicit_object_creation_expression] = STATE(3035), + [sym_implicit_stackalloc_expression] = STATE(3035), + [sym_initializer_expression] = STATE(3035), + [sym_default_expression] = STATE(3035), + [sym_with_expression] = STATE(3035), + [sym_sizeof_expression] = STATE(3035), + [sym_typeof_expression] = STATE(3035), + [sym_makeref_expression] = STATE(3035), + [sym_ref_expression] = STATE(3035), + [sym_reftype_expression] = STATE(3035), + [sym_refvalue_expression] = STATE(3035), + [sym_stackalloc_expression] = STATE(3035), + [sym_range_expression] = STATE(3035), + [sym_tuple_expression] = STATE(2415), + [sym_literal] = STATE(3035), + [sym_character_literal] = STATE(3037), + [sym_string_literal] = STATE(3037), + [sym_raw_string_literal] = STATE(3037), + [sym_boolean_literal] = STATE(3037), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3035), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(717), [sym_preproc_endregion] = STATE(717), [sym_preproc_line] = STATE(717), @@ -162924,47 +162809,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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3455), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1481), - [anon_sym_LPAREN] = ACTIONS(2047), - [anon_sym_ref] = ACTIONS(2049), - [anon_sym_LBRACE] = ACTIONS(2847), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1239), + [anon_sym_LPAREN] = ACTIONS(2261), + [anon_sym_ref] = ACTIONS(2263), + [anon_sym_LBRACE] = ACTIONS(1245), + [anon_sym_delegate] = ACTIONS(1247), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1061), + [anon_sym_new] = ACTIONS(1935), + [anon_sym_readonly] = ACTIONS(2767), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1067), - [anon_sym_BANG] = ACTIONS(2053), - [anon_sym_TILDE] = ACTIONS(2053), - [anon_sym_PLUS_PLUS] = ACTIONS(2053), - [anon_sym_DASH_DASH] = ACTIONS(2053), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(2051), - [anon_sym_DASH] = ACTIONS(2051), - [anon_sym_STAR] = ACTIONS(2055), - [anon_sym_CARET] = ACTIONS(2053), - [anon_sym_AMP] = ACTIONS(2053), - [anon_sym_this] = ACTIONS(83), + [anon_sym_checked] = ACTIONS(1251), + [anon_sym_BANG] = ACTIONS(2267), + [anon_sym_TILDE] = ACTIONS(2267), + [anon_sym_PLUS_PLUS] = ACTIONS(2267), + [anon_sym_DASH_DASH] = ACTIONS(2267), + [anon_sym_true] = ACTIONS(1257), + [anon_sym_false] = ACTIONS(1257), + [anon_sym_PLUS] = ACTIONS(2265), + [anon_sym_DASH] = ACTIONS(2265), + [anon_sym_STAR] = ACTIONS(1941), + [anon_sym_CARET] = ACTIONS(2267), + [anon_sym_AMP] = ACTIONS(2267), + [anon_sym_this] = ACTIONS(1261), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), + [anon_sym_base] = ACTIONS(1263), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1067), + [sym_predefined_type] = ACTIONS(1265), + [anon_sym_unchecked] = ACTIONS(1251), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(2057), + [anon_sym_default] = ACTIONS(1267), + [anon_sym_throw] = ACTIONS(2269), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2059), - [anon_sym_DOT_DOT] = ACTIONS(2061), + [anon_sym_await] = ACTIONS(2271), + [anon_sym_DOT_DOT] = ACTIONS(2273), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -162977,19 +162863,19 @@ static const uint16_t ts_parse_table[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(1089), + [anon_sym_stackalloc] = ACTIONS(1275), + [anon_sym_sizeof] = ACTIONS(1277), + [anon_sym_typeof] = ACTIONS(1279), + [anon_sym___makeref] = ACTIONS(1281), + [anon_sym___reftype] = ACTIONS(1283), + [anon_sym___refvalue] = ACTIONS(1285), + [sym_null_literal] = ACTIONS(1287), + [anon_sym_SQUOTE] = ACTIONS(1289), + [sym_integer_literal] = ACTIONS(1287), + [sym_real_literal] = ACTIONS(1291), + [anon_sym_DQUOTE] = ACTIONS(1293), + [sym_verbatim_string_literal] = ACTIONS(1291), + [aux_sym_preproc_if_token1] = ACTIONS(1295), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -163000,90 +162886,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(151), - [sym_interpolation_verbatim_start] = ACTIONS(153), - [sym_interpolation_raw_start] = ACTIONS(155), - [sym_raw_string_start] = ACTIONS(157), + [sym_interpolation_regular_start] = ACTIONS(1297), + [sym_interpolation_verbatim_start] = ACTIONS(1299), + [sym_interpolation_raw_start] = ACTIONS(1301), + [sym_raw_string_start] = ACTIONS(1303), }, [718] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(5707), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2233), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(2291), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(4670), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3379), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3080), - [sym_postfix_unary_expression] = STATE(3111), - [sym_prefix_unary_expression] = STATE(3111), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6154), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3080), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3111), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3080), - [sym_member_access_expression] = STATE(2484), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3111), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7575), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(3080), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3080), - [sym_typeof_expression] = STATE(3080), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2484), - [sym_literal] = STATE(3080), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(5152), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2196), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(2279), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(4679), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3468), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3102), + [sym_postfix_unary_expression] = STATE(3079), + [sym_prefix_unary_expression] = STATE(3079), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6134), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3102), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3079), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3102), + [sym_member_access_expression] = STATE(2472), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3079), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7309), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(3102), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3102), + [sym_typeof_expression] = STATE(3102), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2472), + [sym_literal] = STATE(3102), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(718), [sym_preproc_endregion] = STATE(718), [sym_preproc_line] = STATE(718), @@ -163093,48 +162979,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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1481), - [anon_sym_LPAREN] = ACTIONS(895), - [anon_sym_ref] = ACTIONS(2757), - [anon_sym_LBRACE] = ACTIONS(1487), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1479), + [anon_sym_LPAREN] = ACTIONS(659), + [anon_sym_ref] = ACTIONS(2693), + [anon_sym_LBRACE] = ACTIONS(1481), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1061), - [anon_sym_readonly] = ACTIONS(2759), + [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(1067), - [anon_sym_BANG] = ACTIONS(1495), - [anon_sym_TILDE] = ACTIONS(1495), - [anon_sym_PLUS_PLUS] = ACTIONS(1495), - [anon_sym_DASH_DASH] = ACTIONS(1495), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(1485), + [anon_sym_TILDE] = ACTIONS(1485), + [anon_sym_PLUS_PLUS] = ACTIONS(1485), + [anon_sym_DASH_DASH] = ACTIONS(1485), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1493), - [anon_sym_DASH] = ACTIONS(1493), - [anon_sym_STAR] = ACTIONS(905), - [anon_sym_CARET] = ACTIONS(1495), - [anon_sym_AMP] = ACTIONS(1495), + [anon_sym_PLUS] = ACTIONS(1483), + [anon_sym_DASH] = ACTIONS(1483), + [anon_sym_STAR] = ACTIONS(683), + [anon_sym_CARET] = ACTIONS(1485), + [anon_sym_AMP] = ACTIONS(1485), [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(1075), + [anon_sym_scoped] = ACTIONS(2301), [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(2755), + [anon_sym_var] = ACTIONS(2629), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1067), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1079), + [anon_sym_throw] = ACTIONS(1077), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1081), - [anon_sym_DOT_DOT] = ACTIONS(911), + [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), @@ -163159,7 +163045,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(1089), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -163176,84 +163062,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [719] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(5703), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2225), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(2291), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(5495), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3664), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3080), - [sym_postfix_unary_expression] = STATE(3111), - [sym_prefix_unary_expression] = STATE(3111), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6161), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3080), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3111), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3080), - [sym_member_access_expression] = STATE(2484), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3111), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7773), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(3080), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3080), - [sym_typeof_expression] = STATE(3080), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2484), - [sym_literal] = STATE(3080), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(5873), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2238), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(4954), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3468), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3102), + [sym_postfix_unary_expression] = STATE(3079), + [sym_prefix_unary_expression] = STATE(3079), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6134), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3102), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3079), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3102), + [sym_member_access_expression] = STATE(2472), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3079), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7309), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(3102), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3102), + [sym_typeof_expression] = STATE(3102), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2472), + [sym_literal] = STATE(3102), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(719), [sym_preproc_endregion] = STATE(719), [sym_preproc_line] = STATE(719), @@ -163263,48 +163149,48 @@ 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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1481), - [anon_sym_LPAREN] = ACTIONS(2015), - [anon_sym_ref] = ACTIONS(2075), - [anon_sym_LBRACE] = ACTIONS(1487), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1479), + [anon_sym_LPAREN] = ACTIONS(659), + [anon_sym_ref] = ACTIONS(663), + [anon_sym_LBRACE] = ACTIONS(1481), + [anon_sym_RBRACE] = ACTIONS(2885), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1101), - [anon_sym_readonly] = ACTIONS(2759), + [anon_sym_new] = ACTIONS(1059), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1067), - [anon_sym_BANG] = ACTIONS(2021), - [anon_sym_TILDE] = ACTIONS(2021), - [anon_sym_PLUS_PLUS] = ACTIONS(2021), - [anon_sym_DASH_DASH] = ACTIONS(2021), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(1485), + [anon_sym_TILDE] = ACTIONS(1485), + [anon_sym_PLUS_PLUS] = ACTIONS(1485), + [anon_sym_DASH_DASH] = ACTIONS(1485), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(2019), - [anon_sym_DASH] = ACTIONS(2019), - [anon_sym_STAR] = ACTIONS(1229), - [anon_sym_CARET] = ACTIONS(2021), - [anon_sym_AMP] = ACTIONS(2021), + [anon_sym_PLUS] = ACTIONS(1483), + [anon_sym_DASH] = ACTIONS(1483), + [anon_sym_STAR] = ACTIONS(683), + [anon_sym_CARET] = ACTIONS(1485), + [anon_sym_AMP] = ACTIONS(1485), [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(1075), + [anon_sym_scoped] = ACTIONS(85), [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(2631), + [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1067), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1233), + [anon_sym_throw] = ACTIONS(1077), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1235), - [anon_sym_DOT_DOT] = ACTIONS(1237), + [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), @@ -163329,7 +163215,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(1089), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -163346,85 +163232,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [720] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_block] = STATE(3430), - [sym_bracketed_argument_list] = STATE(2762), - [sym__name] = STATE(5910), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2204), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(4893), - [sym_non_lvalue_expression] = STATE(3438), - [sym_lvalue_expression] = STATE(3535), - [sym__expression_statement_expression] = STATE(3362), - [sym_assignment_expression] = STATE(3449), - [sym_binary_expression] = STATE(3362), - [sym_postfix_unary_expression] = STATE(3449), - [sym_prefix_unary_expression] = STATE(3449), - [sym__pointer_indirection_expression] = STATE(2747), - [sym_query_expression] = STATE(3362), - [sym_from_clause] = STATE(6178), - [sym_conditional_expression] = STATE(3362), - [sym_conditional_access_expression] = STATE(3362), - [sym_as_expression] = STATE(3362), - [sym_is_expression] = STATE(3362), - [sym_is_pattern_expression] = STATE(3362), - [sym_cast_expression] = STATE(3362), - [sym_checked_expression] = STATE(3362), - [sym_invocation_expression] = STATE(3449), - [sym_switch_expression] = STATE(3362), - [sym_await_expression] = STATE(3449), - [sym_throw_expression] = STATE(3362), - [sym_element_access_expression] = STATE(2747), - [sym_interpolated_string_expression] = STATE(3362), - [sym_member_access_expression] = STATE(2747), - [sym_object_creation_expression] = STATE(3449), - [sym_parenthesized_expression] = STATE(3449), - [sym__parenthesized_lvalue_expression] = STATE(2747), - [sym_lambda_expression] = STATE(3362), - [sym__lambda_expression_init] = STATE(7384), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3362), - [sym_anonymous_method_expression] = STATE(3362), - [sym_anonymous_object_creation_expression] = STATE(3362), - [sym_implicit_array_creation_expression] = STATE(3362), - [sym_implicit_object_creation_expression] = STATE(3362), - [sym_implicit_stackalloc_expression] = STATE(3362), - [sym_initializer_expression] = STATE(3362), - [sym_default_expression] = STATE(3362), - [sym_with_expression] = STATE(3362), - [sym_sizeof_expression] = STATE(3362), - [sym_typeof_expression] = STATE(3362), - [sym_makeref_expression] = STATE(3362), - [sym_ref_expression] = STATE(3362), - [sym_reftype_expression] = STATE(3362), - [sym_refvalue_expression] = STATE(3362), - [sym_stackalloc_expression] = STATE(3362), - [sym_range_expression] = STATE(3362), - [sym_tuple_expression] = STATE(2747), - [sym_literal] = STATE(3362), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2267), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3362), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_block] = STATE(4603), + [sym_bracketed_argument_list] = STATE(3182), + [sym__name] = STATE(5882), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2306), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2262), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(5019), + [sym_non_lvalue_expression] = STATE(4580), + [sym_lvalue_expression] = STATE(3534), + [sym__expression_statement_expression] = STATE(4573), + [sym_assignment_expression] = STATE(4581), + [sym_binary_expression] = STATE(4573), + [sym_postfix_unary_expression] = STATE(4581), + [sym_prefix_unary_expression] = STATE(4581), + [sym__pointer_indirection_expression] = STATE(3144), + [sym_query_expression] = STATE(4573), + [sym_from_clause] = STATE(6133), + [sym_conditional_expression] = STATE(4573), + [sym_conditional_access_expression] = STATE(4573), + [sym_as_expression] = STATE(4573), + [sym_is_expression] = STATE(4573), + [sym_is_pattern_expression] = STATE(4573), + [sym_cast_expression] = STATE(4573), + [sym_checked_expression] = STATE(4573), + [sym_invocation_expression] = STATE(4581), + [sym_switch_expression] = STATE(4573), + [sym_await_expression] = STATE(4581), + [sym_throw_expression] = STATE(4573), + [sym_element_access_expression] = STATE(3144), + [sym_interpolated_string_expression] = STATE(4573), + [sym_member_access_expression] = STATE(3144), + [sym_object_creation_expression] = STATE(4581), + [sym_parenthesized_expression] = STATE(4581), + [sym__parenthesized_lvalue_expression] = STATE(3144), + [sym_lambda_expression] = STATE(4573), + [sym__lambda_expression_init] = STATE(7592), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(4573), + [sym_anonymous_method_expression] = STATE(4573), + [sym_anonymous_object_creation_expression] = STATE(4573), + [sym_implicit_array_creation_expression] = STATE(4573), + [sym_implicit_object_creation_expression] = STATE(4573), + [sym_implicit_stackalloc_expression] = STATE(4573), + [sym_initializer_expression] = STATE(4573), + [sym_default_expression] = STATE(4573), + [sym_with_expression] = STATE(4573), + [sym_sizeof_expression] = STATE(4573), + [sym_typeof_expression] = STATE(4573), + [sym_makeref_expression] = STATE(4573), + [sym_ref_expression] = STATE(4573), + [sym_reftype_expression] = STATE(4573), + [sym_refvalue_expression] = STATE(4573), + [sym_stackalloc_expression] = STATE(4573), + [sym_range_expression] = STATE(4573), + [sym_tuple_expression] = STATE(3144), + [sym_literal] = STATE(4573), + [sym_character_literal] = STATE(4575), + [sym_string_literal] = STATE(4575), + [sym_raw_string_literal] = STATE(4575), + [sym_boolean_literal] = STATE(4575), + [sym_identifier] = STATE(2237), + [sym__reserved_identifier] = STATE(2229), + [sym_preproc_if_in_expression] = STATE(4573), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(720), [sym_preproc_endregion] = STATE(720), [sym_preproc_line] = STATE(720), @@ -163434,166 +163320,167 @@ 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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3385), - [sym__identifier_token] = ACTIONS(25), - [anon_sym_alias] = ACTIONS(29), - [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1307), - [anon_sym_LPAREN] = ACTIONS(1543), - [anon_sym_ref] = ACTIONS(1545), - [anon_sym_LBRACE] = ACTIONS(2857), - [anon_sym_delegate] = ACTIONS(1315), - [anon_sym_async] = ACTIONS(1047), - [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1317), - [anon_sym_where] = ACTIONS(29), - [anon_sym_notnull] = ACTIONS(29), - [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1319), - [anon_sym_BANG] = ACTIONS(1549), - [anon_sym_TILDE] = ACTIONS(1549), - [anon_sym_PLUS_PLUS] = ACTIONS(1549), - [anon_sym_DASH_DASH] = ACTIONS(1549), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1547), - [anon_sym_DASH] = ACTIONS(1547), - [anon_sym_STAR] = ACTIONS(1551), - [anon_sym_CARET] = ACTIONS(1549), - [anon_sym_AMP] = ACTIONS(1549), - [anon_sym_this] = ACTIONS(1323), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1325), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1319), - [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1553), - [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1555), - [anon_sym_DOT_DOT] = ACTIONS(1557), - [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(1333), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(1335), - [anon_sym___reftype] = ACTIONS(1337), - [anon_sym___refvalue] = ACTIONS(1339), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1341), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(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), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3501), + [sym__identifier_token] = ACTIONS(1385), + [anon_sym_alias] = ACTIONS(1387), + [anon_sym_global] = ACTIONS(1387), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1389), + [anon_sym_LPAREN] = ACTIONS(1773), + [anon_sym_ref] = ACTIONS(1775), + [anon_sym_LBRACE] = ACTIONS(2887), + [anon_sym_delegate] = ACTIONS(1397), + [anon_sym_async] = ACTIONS(1045), + [anon_sym_file] = ACTIONS(1387), + [anon_sym_new] = ACTIONS(1465), + [anon_sym_where] = ACTIONS(1387), + [anon_sym_notnull] = ACTIONS(1387), + [anon_sym_unmanaged] = ACTIONS(1387), + [anon_sym_checked] = ACTIONS(1401), + [anon_sym_BANG] = ACTIONS(1779), + [anon_sym_TILDE] = ACTIONS(1779), + [anon_sym_PLUS_PLUS] = ACTIONS(1779), + [anon_sym_DASH_DASH] = ACTIONS(1779), + [anon_sym_true] = ACTIONS(1407), + [anon_sym_false] = ACTIONS(1407), + [anon_sym_PLUS] = ACTIONS(1777), + [anon_sym_DASH] = ACTIONS(1777), + [anon_sym_STAR] = ACTIONS(1471), + [anon_sym_CARET] = ACTIONS(1779), + [anon_sym_AMP] = ACTIONS(1779), + [anon_sym_this] = ACTIONS(1411), + [anon_sym_scoped] = ACTIONS(1413), + [anon_sym_base] = ACTIONS(1415), + [anon_sym_var] = ACTIONS(1417), + [sym_predefined_type] = ACTIONS(1419), + [anon_sym_unchecked] = ACTIONS(1401), + [anon_sym_yield] = ACTIONS(1387), + [anon_sym_default] = ACTIONS(1421), + [anon_sym_throw] = ACTIONS(1781), + [anon_sym_when] = ACTIONS(1387), + [anon_sym_await] = ACTIONS(1783), + [anon_sym_DOT_DOT] = ACTIONS(1785), + [anon_sym_from] = ACTIONS(1429), + [anon_sym_into] = ACTIONS(1387), + [anon_sym_join] = ACTIONS(1387), + [anon_sym_on] = ACTIONS(1387), + [anon_sym_equals] = ACTIONS(1387), + [anon_sym_let] = ACTIONS(1387), + [anon_sym_orderby] = ACTIONS(1387), + [anon_sym_ascending] = ACTIONS(1387), + [anon_sym_descending] = ACTIONS(1387), + [anon_sym_group] = ACTIONS(1387), + [anon_sym_by] = ACTIONS(1387), + [anon_sym_select] = ACTIONS(1387), + [anon_sym_stackalloc] = ACTIONS(1431), + [anon_sym_sizeof] = ACTIONS(1433), + [anon_sym_typeof] = ACTIONS(1435), + [anon_sym___makeref] = ACTIONS(1437), + [anon_sym___reftype] = ACTIONS(1439), + [anon_sym___refvalue] = ACTIONS(1441), + [sym_null_literal] = ACTIONS(1443), + [anon_sym_SQUOTE] = ACTIONS(1445), + [sym_integer_literal] = ACTIONS(1443), + [sym_real_literal] = ACTIONS(1447), + [anon_sym_DQUOTE] = ACTIONS(1449), + [sym_verbatim_string_literal] = ACTIONS(1447), + [aux_sym_preproc_if_token1] = ACTIONS(1451), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + [sym_interpolation_regular_start] = ACTIONS(1453), + [sym_interpolation_verbatim_start] = ACTIONS(1455), + [sym_interpolation_raw_start] = ACTIONS(1457), + [sym_raw_string_start] = ACTIONS(1459), }, [721] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2762), - [sym__name] = STATE(5910), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2204), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(2291), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(4895), - [sym_non_lvalue_expression] = STATE(3438), - [sym_lvalue_expression] = STATE(3535), - [sym__expression_statement_expression] = STATE(3362), - [sym_assignment_expression] = STATE(3449), - [sym_binary_expression] = STATE(3362), - [sym_postfix_unary_expression] = STATE(3449), - [sym_prefix_unary_expression] = STATE(3449), - [sym__pointer_indirection_expression] = STATE(2747), - [sym_query_expression] = STATE(3362), - [sym_from_clause] = STATE(6178), - [sym_conditional_expression] = STATE(3362), - [sym_conditional_access_expression] = STATE(3362), - [sym_as_expression] = STATE(3362), - [sym_is_expression] = STATE(3362), - [sym_is_pattern_expression] = STATE(3362), - [sym_cast_expression] = STATE(3362), - [sym_checked_expression] = STATE(3362), - [sym_invocation_expression] = STATE(3449), - [sym_switch_expression] = STATE(3362), - [sym_await_expression] = STATE(3449), - [sym_throw_expression] = STATE(3362), - [sym_element_access_expression] = STATE(2747), - [sym_interpolated_string_expression] = STATE(3362), - [sym_member_access_expression] = STATE(2747), - [sym_object_creation_expression] = STATE(3449), - [sym_parenthesized_expression] = STATE(3449), - [sym__parenthesized_lvalue_expression] = STATE(2747), - [sym_lambda_expression] = STATE(3362), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_block] = STATE(3454), + [sym_bracketed_argument_list] = STATE(2816), + [sym__name] = STATE(5875), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2321), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(4498), + [sym_non_lvalue_expression] = STATE(3495), + [sym_lvalue_expression] = STATE(3484), + [sym__expression_statement_expression] = STATE(3462), + [sym_assignment_expression] = STATE(3497), + [sym_binary_expression] = STATE(3462), + [sym_postfix_unary_expression] = STATE(3497), + [sym_prefix_unary_expression] = STATE(3497), + [sym__pointer_indirection_expression] = STATE(2815), + [sym_query_expression] = STATE(3462), + [sym_from_clause] = STATE(6142), + [sym_conditional_expression] = STATE(3462), + [sym_conditional_access_expression] = STATE(3462), + [sym_as_expression] = STATE(3462), + [sym_is_expression] = STATE(3462), + [sym_is_pattern_expression] = STATE(3462), + [sym_cast_expression] = STATE(3462), + [sym_checked_expression] = STATE(3462), + [sym_invocation_expression] = STATE(3497), + [sym_switch_expression] = STATE(3462), + [sym_await_expression] = STATE(3497), + [sym_throw_expression] = STATE(3462), + [sym_element_access_expression] = STATE(2815), + [sym_interpolated_string_expression] = STATE(3462), + [sym_member_access_expression] = STATE(2815), + [sym_object_creation_expression] = STATE(3497), + [sym_parenthesized_expression] = STATE(3497), + [sym__parenthesized_lvalue_expression] = STATE(2815), + [sym_lambda_expression] = STATE(3462), [sym__lambda_expression_init] = STATE(7384), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3362), - [sym_anonymous_method_expression] = STATE(3362), - [sym_anonymous_object_creation_expression] = STATE(3362), - [sym_implicit_array_creation_expression] = STATE(3362), - [sym_implicit_object_creation_expression] = STATE(3362), - [sym_implicit_stackalloc_expression] = STATE(3362), - [sym_initializer_expression] = STATE(3362), - [sym_default_expression] = STATE(3362), - [sym_with_expression] = STATE(3362), - [sym_sizeof_expression] = STATE(3362), - [sym_typeof_expression] = STATE(3362), - [sym_makeref_expression] = STATE(3362), - [sym_ref_expression] = STATE(3362), - [sym_reftype_expression] = STATE(3362), - [sym_refvalue_expression] = STATE(3362), - [sym_stackalloc_expression] = STATE(3362), - [sym_range_expression] = STATE(3362), - [sym_tuple_expression] = STATE(2747), - [sym_literal] = STATE(3362), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2267), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3362), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3462), + [sym_anonymous_method_expression] = STATE(3462), + [sym_anonymous_object_creation_expression] = STATE(3462), + [sym_implicit_array_creation_expression] = STATE(3462), + [sym_implicit_object_creation_expression] = STATE(3462), + [sym_implicit_stackalloc_expression] = STATE(3462), + [sym_initializer_expression] = STATE(3462), + [sym_default_expression] = STATE(3462), + [sym_with_expression] = STATE(3462), + [sym_sizeof_expression] = STATE(3462), + [sym_typeof_expression] = STATE(3462), + [sym_makeref_expression] = STATE(3462), + [sym_ref_expression] = STATE(3462), + [sym_reftype_expression] = STATE(3462), + [sym_refvalue_expression] = STATE(3462), + [sym_stackalloc_expression] = STATE(3462), + [sym_range_expression] = STATE(3462), + [sym_tuple_expression] = STATE(2815), + [sym_literal] = STATE(3462), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2261), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3462), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(721), [sym_preproc_endregion] = STATE(721), [sym_preproc_line] = STATE(721), @@ -163603,48 +163490,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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3385), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3367), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1307), - [anon_sym_LPAREN] = ACTIONS(1543), - [anon_sym_ref] = ACTIONS(1545), - [anon_sym_LBRACE] = ACTIONS(1313), - [anon_sym_delegate] = ACTIONS(1315), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1305), + [anon_sym_LPAREN] = ACTIONS(1579), + [anon_sym_ref] = ACTIONS(1581), + [anon_sym_LBRACE] = ACTIONS(2845), + [anon_sym_delegate] = ACTIONS(1313), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1317), - [anon_sym_readonly] = ACTIONS(2749), + [anon_sym_new] = ACTIONS(1583), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1319), - [anon_sym_BANG] = ACTIONS(1549), - [anon_sym_TILDE] = ACTIONS(1549), - [anon_sym_PLUS_PLUS] = ACTIONS(1549), - [anon_sym_DASH_DASH] = ACTIONS(1549), + [anon_sym_checked] = ACTIONS(1317), + [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(1547), - [anon_sym_DASH] = ACTIONS(1547), - [anon_sym_STAR] = ACTIONS(1551), - [anon_sym_CARET] = ACTIONS(1549), - [anon_sym_AMP] = ACTIONS(1549), - [anon_sym_this] = ACTIONS(1323), + [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(1321), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1325), + [anon_sym_base] = ACTIONS(1323), [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1319), + [anon_sym_unchecked] = ACTIONS(1317), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1553), + [anon_sym_throw] = ACTIONS(1591), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1555), - [anon_sym_DOT_DOT] = ACTIONS(1557), + [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), @@ -163657,19 +163543,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1333), + [anon_sym_stackalloc] = ACTIONS(1331), [anon_sym_sizeof] = ACTIONS(129), [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(1335), - [anon_sym___reftype] = ACTIONS(1337), - [anon_sym___refvalue] = ACTIONS(1339), + [anon_sym___makeref] = ACTIONS(1333), + [anon_sym___reftype] = ACTIONS(1335), + [anon_sym___refvalue] = ACTIONS(1337), [sym_null_literal] = ACTIONS(139), [anon_sym_SQUOTE] = ACTIONS(141), [sym_integer_literal] = ACTIONS(139), [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1341), + [aux_sym_preproc_if_token1] = ACTIONS(1339), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -163686,84 +163572,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [722] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(5717), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2305), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(2291), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(4871), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3520), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3080), - [sym_postfix_unary_expression] = STATE(3111), - [sym_prefix_unary_expression] = STATE(3111), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6154), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3080), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3111), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3080), - [sym_member_access_expression] = STATE(2484), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3111), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7530), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(3080), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3080), - [sym_typeof_expression] = STATE(3080), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2484), - [sym_literal] = STATE(3080), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2243), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(5152), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2196), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(5333), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3356), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3102), + [sym_postfix_unary_expression] = STATE(3079), + [sym_prefix_unary_expression] = STATE(3079), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6134), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3102), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3079), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3102), + [sym_member_access_expression] = STATE(2472), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3079), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7627), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(3102), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3102), + [sym_typeof_expression] = STATE(3102), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2472), + [sym_literal] = STATE(3102), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(722), [sym_preproc_endregion] = STATE(722), [sym_preproc_line] = STATE(722), @@ -163773,48 +163659,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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), + [anon_sym_SEMI] = ACTIONS(2889), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1481), - [anon_sym_LPAREN] = ACTIONS(43), - [anon_sym_ref] = ACTIONS(2401), - [anon_sym_LBRACE] = ACTIONS(1487), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1479), + [anon_sym_LPAREN] = ACTIONS(1511), + [anon_sym_ref] = ACTIONS(1513), + [anon_sym_LBRACE] = ACTIONS(1481), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1061), - [anon_sym_readonly] = ACTIONS(2855), + [anon_sym_new] = ACTIONS(1515), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = 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_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(1585), - [anon_sym_DASH] = ACTIONS(1585), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_DASH] = ACTIONS(79), [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(1587), - [anon_sym_AMP] = ACTIONS(1587), + [anon_sym_CARET] = ACTIONS(75), + [anon_sym_AMP] = ACTIONS(75), [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(2409), + [anon_sym_scoped] = ACTIONS(85), [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(2755), + [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1067), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1589), + [anon_sym_throw] = ACTIONS(1517), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1591), - [anon_sym_DOT_DOT] = ACTIONS(123), + [anon_sym_await] = ACTIONS(1519), + [anon_sym_DOT_DOT] = ACTIONS(1521), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -163839,7 +163725,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(1089), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -163856,84 +163742,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [723] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(5665), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2260), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(2291), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(5495), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3664), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3080), - [sym_postfix_unary_expression] = STATE(3111), - [sym_prefix_unary_expression] = STATE(3111), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6161), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3080), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3111), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3080), - [sym_member_access_expression] = STATE(2484), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3111), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7773), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(3080), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3080), - [sym_typeof_expression] = STATE(3080), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2484), - [sym_literal] = STATE(3080), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(5152), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2196), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(5349), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3356), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3102), + [sym_postfix_unary_expression] = STATE(3079), + [sym_prefix_unary_expression] = STATE(3079), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6134), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3102), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3079), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3102), + [sym_member_access_expression] = STATE(2472), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3079), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7627), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(3102), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3102), + [sym_typeof_expression] = STATE(3102), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2472), + [sym_literal] = STATE(3102), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(723), [sym_preproc_endregion] = STATE(723), [sym_preproc_line] = STATE(723), @@ -163943,48 +163829,48 @@ 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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), + [anon_sym_SEMI] = ACTIONS(2079), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1481), - [anon_sym_LPAREN] = ACTIONS(2015), - [anon_sym_ref] = ACTIONS(2307), - [anon_sym_LBRACE] = ACTIONS(1487), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1479), + [anon_sym_LPAREN] = ACTIONS(1511), + [anon_sym_ref] = ACTIONS(1513), + [anon_sym_LBRACE] = ACTIONS(1481), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1101), - [anon_sym_readonly] = ACTIONS(2841), + [anon_sym_new] = ACTIONS(1515), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1067), - [anon_sym_BANG] = ACTIONS(2021), - [anon_sym_TILDE] = ACTIONS(2021), - [anon_sym_PLUS_PLUS] = ACTIONS(2021), - [anon_sym_DASH_DASH] = ACTIONS(2021), + [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(2019), - [anon_sym_DASH] = ACTIONS(2019), - [anon_sym_STAR] = ACTIONS(1229), - [anon_sym_CARET] = ACTIONS(2021), - [anon_sym_AMP] = ACTIONS(2021), + [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(2309), + [anon_sym_scoped] = ACTIONS(85), [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(2631), + [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1067), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1233), + [anon_sym_throw] = ACTIONS(1517), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1235), - [anon_sym_DOT_DOT] = ACTIONS(1237), + [anon_sym_await] = ACTIONS(1519), + [anon_sym_DOT_DOT] = ACTIONS(1521), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -164009,7 +163895,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(1089), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -164026,85 +163912,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [724] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_block] = STATE(4812), - [sym_bracketed_argument_list] = STATE(3184), - [sym__name] = STATE(5883), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2313), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2269), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(5055), - [sym_non_lvalue_expression] = STATE(4541), - [sym_lvalue_expression] = STATE(3527), - [sym__expression_statement_expression] = STATE(4529), - [sym_assignment_expression] = STATE(4543), - [sym_binary_expression] = STATE(4529), - [sym_postfix_unary_expression] = STATE(4543), - [sym_prefix_unary_expression] = STATE(4543), - [sym__pointer_indirection_expression] = STATE(3175), - [sym_query_expression] = STATE(4529), - [sym_from_clause] = STATE(6169), - [sym_conditional_expression] = STATE(4529), - [sym_conditional_access_expression] = STATE(4529), - [sym_as_expression] = STATE(4529), - [sym_is_expression] = STATE(4529), - [sym_is_pattern_expression] = STATE(4529), - [sym_cast_expression] = STATE(4529), - [sym_checked_expression] = STATE(4529), - [sym_invocation_expression] = STATE(4543), - [sym_switch_expression] = STATE(4529), - [sym_await_expression] = STATE(4543), - [sym_throw_expression] = STATE(4529), - [sym_element_access_expression] = STATE(3175), - [sym_interpolated_string_expression] = STATE(4529), - [sym_member_access_expression] = STATE(3175), - [sym_object_creation_expression] = STATE(4543), - [sym_parenthesized_expression] = STATE(4543), - [sym__parenthesized_lvalue_expression] = STATE(3175), - [sym_lambda_expression] = STATE(4529), - [sym__lambda_expression_init] = STATE(7337), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(4529), - [sym_anonymous_method_expression] = STATE(4529), - [sym_anonymous_object_creation_expression] = STATE(4529), - [sym_implicit_array_creation_expression] = STATE(4529), - [sym_implicit_object_creation_expression] = STATE(4529), - [sym_implicit_stackalloc_expression] = STATE(4529), - [sym_initializer_expression] = STATE(4529), - [sym_default_expression] = STATE(4529), - [sym_with_expression] = STATE(4529), - [sym_sizeof_expression] = STATE(4529), - [sym_typeof_expression] = STATE(4529), - [sym_makeref_expression] = STATE(4529), - [sym_ref_expression] = STATE(4529), - [sym_reftype_expression] = STATE(4529), - [sym_refvalue_expression] = STATE(4529), - [sym_stackalloc_expression] = STATE(4529), - [sym_range_expression] = STATE(4529), - [sym_tuple_expression] = STATE(3175), - [sym_literal] = STATE(4529), - [sym_character_literal] = STATE(4536), - [sym_string_literal] = STATE(4536), - [sym_raw_string_literal] = STATE(4536), - [sym_boolean_literal] = STATE(4536), - [sym_identifier] = STATE(2246), - [sym__reserved_identifier] = STATE(2240), - [sym_preproc_if_in_expression] = STATE(4529), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2816), + [sym__name] = STATE(5873), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2196), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(2279), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(4273), + [sym_non_lvalue_expression] = STATE(3495), + [sym_lvalue_expression] = STATE(3208), + [sym__expression_statement_expression] = STATE(3462), + [sym_assignment_expression] = STATE(3497), + [sym_binary_expression] = STATE(3462), + [sym_postfix_unary_expression] = STATE(3497), + [sym_prefix_unary_expression] = STATE(3497), + [sym__pointer_indirection_expression] = STATE(2815), + [sym_query_expression] = STATE(3462), + [sym_from_clause] = STATE(6140), + [sym_conditional_expression] = STATE(3462), + [sym_conditional_access_expression] = STATE(3462), + [sym_as_expression] = STATE(3462), + [sym_is_expression] = STATE(3462), + [sym_is_pattern_expression] = STATE(3462), + [sym_cast_expression] = STATE(3462), + [sym_checked_expression] = STATE(3462), + [sym_invocation_expression] = STATE(3497), + [sym_switch_expression] = STATE(3462), + [sym_await_expression] = STATE(3497), + [sym_throw_expression] = STATE(3462), + [sym_element_access_expression] = STATE(2815), + [sym_interpolated_string_expression] = STATE(3462), + [sym_member_access_expression] = STATE(2815), + [sym_object_creation_expression] = STATE(3497), + [sym_parenthesized_expression] = STATE(3497), + [sym__parenthesized_lvalue_expression] = STATE(2815), + [sym_lambda_expression] = STATE(3462), + [sym__lambda_expression_init] = STATE(7520), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3462), + [sym_anonymous_method_expression] = STATE(3462), + [sym_anonymous_object_creation_expression] = STATE(3462), + [sym_implicit_array_creation_expression] = STATE(3462), + [sym_implicit_object_creation_expression] = STATE(3462), + [sym_implicit_stackalloc_expression] = STATE(3462), + [sym_initializer_expression] = STATE(3462), + [sym_default_expression] = STATE(3462), + [sym_with_expression] = STATE(3462), + [sym_sizeof_expression] = STATE(3462), + [sym_typeof_expression] = STATE(3462), + [sym_makeref_expression] = STATE(3462), + [sym_ref_expression] = STATE(3462), + [sym_reftype_expression] = STATE(3462), + [sym_refvalue_expression] = STATE(3462), + [sym_stackalloc_expression] = STATE(3462), + [sym_range_expression] = STATE(3462), + [sym_tuple_expression] = STATE(2815), + [sym_literal] = STATE(3462), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3462), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(724), [sym_preproc_endregion] = STATE(724), [sym_preproc_line] = STATE(724), @@ -164114,217 +163999,48 @@ 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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3363), - [sym__identifier_token] = ACTIONS(1387), - [anon_sym_alias] = ACTIONS(1389), - [anon_sym_global] = ACTIONS(1389), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1391), - [anon_sym_LPAREN] = ACTIONS(1745), - [anon_sym_ref] = ACTIONS(1747), - [anon_sym_LBRACE] = ACTIONS(2861), - [anon_sym_delegate] = ACTIONS(1399), - [anon_sym_async] = ACTIONS(1047), - [anon_sym_file] = ACTIONS(1389), - [anon_sym_new] = ACTIONS(1467), - [anon_sym_where] = ACTIONS(1389), - [anon_sym_notnull] = ACTIONS(1389), - [anon_sym_unmanaged] = ACTIONS(1389), - [anon_sym_checked] = ACTIONS(1403), - [anon_sym_BANG] = ACTIONS(1751), - [anon_sym_TILDE] = ACTIONS(1751), - [anon_sym_PLUS_PLUS] = ACTIONS(1751), - [anon_sym_DASH_DASH] = ACTIONS(1751), - [anon_sym_true] = ACTIONS(1409), - [anon_sym_false] = ACTIONS(1409), - [anon_sym_PLUS] = ACTIONS(1749), - [anon_sym_DASH] = ACTIONS(1749), - [anon_sym_STAR] = ACTIONS(1473), - [anon_sym_CARET] = ACTIONS(1751), - [anon_sym_AMP] = ACTIONS(1751), - [anon_sym_this] = ACTIONS(1413), - [anon_sym_scoped] = ACTIONS(1415), - [anon_sym_base] = ACTIONS(1417), - [anon_sym_var] = ACTIONS(1419), - [sym_predefined_type] = ACTIONS(1421), - [anon_sym_unchecked] = ACTIONS(1403), - [anon_sym_yield] = ACTIONS(1389), - [anon_sym_default] = ACTIONS(1423), - [anon_sym_throw] = ACTIONS(1753), - [anon_sym_when] = ACTIONS(1389), - [anon_sym_await] = ACTIONS(1755), - [anon_sym_DOT_DOT] = ACTIONS(1757), - [anon_sym_from] = ACTIONS(1431), - [anon_sym_into] = ACTIONS(1389), - [anon_sym_join] = ACTIONS(1389), - [anon_sym_on] = ACTIONS(1389), - [anon_sym_equals] = ACTIONS(1389), - [anon_sym_let] = ACTIONS(1389), - [anon_sym_orderby] = ACTIONS(1389), - [anon_sym_ascending] = ACTIONS(1389), - [anon_sym_descending] = ACTIONS(1389), - [anon_sym_group] = ACTIONS(1389), - [anon_sym_by] = ACTIONS(1389), - [anon_sym_select] = ACTIONS(1389), - [anon_sym_stackalloc] = ACTIONS(1433), - [anon_sym_sizeof] = ACTIONS(1435), - [anon_sym_typeof] = ACTIONS(1437), - [anon_sym___makeref] = ACTIONS(1439), - [anon_sym___reftype] = ACTIONS(1441), - [anon_sym___refvalue] = ACTIONS(1443), - [sym_null_literal] = ACTIONS(1445), - [anon_sym_SQUOTE] = ACTIONS(1447), - [sym_integer_literal] = ACTIONS(1445), - [sym_real_literal] = ACTIONS(1449), - [anon_sym_DQUOTE] = ACTIONS(1451), - [sym_verbatim_string_literal] = ACTIONS(1449), - [aux_sym_preproc_if_token1] = ACTIONS(1453), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1455), - [sym_interpolation_verbatim_start] = ACTIONS(1457), - [sym_interpolation_raw_start] = ACTIONS(1459), - [sym_raw_string_start] = ACTIONS(1461), - }, - [725] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(2452), - [sym_alias_qualified_name] = STATE(2373), - [sym__simple_name] = STATE(2190), - [sym_qualified_name] = STATE(2373), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(2291), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(2378), - [sym__array_base_type] = STATE(7103), - [sym_nullable_type] = STATE(2379), - [sym_pointer_type] = STATE(2379), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(2379), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(2380), - [sym_expression] = STATE(4871), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3520), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3080), - [sym_postfix_unary_expression] = STATE(3111), - [sym_prefix_unary_expression] = STATE(3111), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6154), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3080), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3111), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3080), - [sym_member_access_expression] = STATE(2484), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3111), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7530), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(3080), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3080), - [sym_typeof_expression] = STATE(3080), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2484), - [sym_literal] = STATE(3080), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2258), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), - [sym_preproc_region] = STATE(725), - [sym_preproc_endregion] = STATE(725), - [sym_preproc_line] = STATE(725), - [sym_preproc_pragma] = STATE(725), - [sym_preproc_nullable] = STATE(725), - [sym_preproc_error] = STATE(725), - [sym_preproc_warning] = STATE(725), - [sym_preproc_define] = STATE(725), - [sym_preproc_undef] = STATE(725), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3067), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), [aux_sym__lambda_expression_init_repeat1] = STATE(3367), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1481), - [anon_sym_LPAREN] = ACTIONS(2863), - [anon_sym_ref] = ACTIONS(2449), - [anon_sym_LBRACE] = ACTIONS(1487), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1305), + [anon_sym_LPAREN] = ACTIONS(1369), + [anon_sym_ref] = ACTIONS(1371), + [anon_sym_LBRACE] = ACTIONS(1311), + [anon_sym_delegate] = ACTIONS(1313), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1061), - [anon_sym_readonly] = ACTIONS(2865), + [anon_sym_new] = ACTIONS(1315), + [anon_sym_readonly] = ACTIONS(2767), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = 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_checked] = ACTIONS(1317), + [anon_sym_BANG] = ACTIONS(1375), + [anon_sym_TILDE] = ACTIONS(1375), + [anon_sym_PLUS_PLUS] = ACTIONS(1375), + [anon_sym_DASH_DASH] = ACTIONS(1375), [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_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(2377), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(2867), - [sym_predefined_type] = ACTIONS(2435), - [anon_sym_unchecked] = ACTIONS(1067), + [anon_sym_PLUS] = ACTIONS(1373), + [anon_sym_DASH] = ACTIONS(1373), + [anon_sym_STAR] = ACTIONS(1377), + [anon_sym_CARET] = ACTIONS(1375), + [anon_sym_AMP] = ACTIONS(1375), + [anon_sym_this] = ACTIONS(1321), + [anon_sym_scoped] = ACTIONS(85), + [anon_sym_base] = ACTIONS(1323), + [anon_sym_var] = ACTIONS(89), + [sym_predefined_type] = ACTIONS(91), + [anon_sym_unchecked] = ACTIONS(1317), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1589), + [anon_sym_throw] = ACTIONS(1379), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1591), - [anon_sym_DOT_DOT] = ACTIONS(123), + [anon_sym_await] = ACTIONS(1381), + [anon_sym_DOT_DOT] = ACTIONS(1383), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -164337,19 +164053,19 @@ static const uint16_t ts_parse_table[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(1331), [anon_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(1333), + [anon_sym___reftype] = ACTIONS(1335), + [anon_sym___refvalue] = ACTIONS(1337), [sym_null_literal] = ACTIONS(139), [anon_sym_SQUOTE] = ACTIONS(141), [sym_integer_literal] = ACTIONS(139), [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1089), + [aux_sym_preproc_if_token1] = ACTIONS(1339), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -164365,85 +164081,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), }, + [725] = { + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_block] = STATE(3279), + [sym_bracketed_argument_list] = STATE(2603), + [sym__name] = STATE(5894), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2193), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(4186), + [sym_non_lvalue_expression] = STATE(3220), + [sym_lvalue_expression] = STATE(3126), + [sym__expression_statement_expression] = STATE(3236), + [sym_assignment_expression] = STATE(3221), + [sym_binary_expression] = STATE(3236), + [sym_postfix_unary_expression] = STATE(3221), + [sym_prefix_unary_expression] = STATE(3221), + [sym__pointer_indirection_expression] = STATE(2602), + [sym_query_expression] = STATE(3236), + [sym_from_clause] = STATE(6165), + [sym_conditional_expression] = STATE(3236), + [sym_conditional_access_expression] = STATE(3236), + [sym_as_expression] = STATE(3236), + [sym_is_expression] = STATE(3236), + [sym_is_pattern_expression] = STATE(3236), + [sym_cast_expression] = STATE(3236), + [sym_checked_expression] = STATE(3236), + [sym_invocation_expression] = STATE(3221), + [sym_switch_expression] = STATE(3236), + [sym_await_expression] = STATE(3221), + [sym_throw_expression] = STATE(3236), + [sym_element_access_expression] = STATE(2602), + [sym_interpolated_string_expression] = STATE(3236), + [sym_member_access_expression] = STATE(2602), + [sym_object_creation_expression] = STATE(3221), + [sym_parenthesized_expression] = STATE(3221), + [sym__parenthesized_lvalue_expression] = STATE(2602), + [sym_lambda_expression] = STATE(3236), + [sym__lambda_expression_init] = STATE(7487), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3236), + [sym_anonymous_method_expression] = STATE(3236), + [sym_anonymous_object_creation_expression] = STATE(3236), + [sym_implicit_array_creation_expression] = STATE(3236), + [sym_implicit_object_creation_expression] = STATE(3236), + [sym_implicit_stackalloc_expression] = STATE(3236), + [sym_initializer_expression] = STATE(3236), + [sym_default_expression] = STATE(3236), + [sym_with_expression] = STATE(3236), + [sym_sizeof_expression] = STATE(3236), + [sym_typeof_expression] = STATE(3236), + [sym_makeref_expression] = STATE(3236), + [sym_ref_expression] = STATE(3236), + [sym_reftype_expression] = STATE(3236), + [sym_refvalue_expression] = STATE(3236), + [sym_stackalloc_expression] = STATE(3236), + [sym_range_expression] = STATE(3236), + [sym_tuple_expression] = STATE(2602), + [sym_literal] = STATE(3236), + [sym_character_literal] = STATE(3272), + [sym_string_literal] = STATE(3272), + [sym_raw_string_literal] = STATE(3272), + [sym_boolean_literal] = STATE(3272), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3236), + [sym_preproc_if_in_attribute_list] = STATE(5583), + [sym_preproc_region] = STATE(725), + [sym_preproc_endregion] = STATE(725), + [sym_preproc_line] = STATE(725), + [sym_preproc_pragma] = STATE(725), + [sym_preproc_nullable] = STATE(725), + [sym_preproc_error] = STATE(725), + [sym_preproc_warning] = STATE(725), + [sym_preproc_define] = STATE(725), + [sym_preproc_undef] = STATE(725), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3379), + [sym__identifier_token] = ACTIONS(25), + [anon_sym_alias] = ACTIONS(29), + [anon_sym_global] = ACTIONS(29), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1149), + [anon_sym_LPAREN] = ACTIONS(1341), + [anon_sym_ref] = ACTIONS(1343), + [anon_sym_LBRACE] = ACTIONS(2843), + [anon_sym_delegate] = ACTIONS(1157), + [anon_sym_async] = ACTIONS(1045), + [anon_sym_file] = ACTIONS(29), + [anon_sym_new] = ACTIONS(1159), + [anon_sym_where] = ACTIONS(29), + [anon_sym_notnull] = ACTIONS(29), + [anon_sym_unmanaged] = ACTIONS(29), + [anon_sym_checked] = ACTIONS(1163), + [anon_sym_BANG] = ACTIONS(1347), + [anon_sym_TILDE] = ACTIONS(1347), + [anon_sym_PLUS_PLUS] = ACTIONS(1347), + [anon_sym_DASH_DASH] = ACTIONS(1347), + [anon_sym_true] = ACTIONS(1169), + [anon_sym_false] = ACTIONS(1169), + [anon_sym_PLUS] = ACTIONS(1345), + [anon_sym_DASH] = ACTIONS(1345), + [anon_sym_STAR] = ACTIONS(1349), + [anon_sym_CARET] = ACTIONS(1347), + [anon_sym_AMP] = ACTIONS(1347), + [anon_sym_this] = ACTIONS(1173), + [anon_sym_scoped] = ACTIONS(85), + [anon_sym_base] = ACTIONS(1175), + [anon_sym_var] = ACTIONS(89), + [sym_predefined_type] = ACTIONS(1177), + [anon_sym_unchecked] = ACTIONS(1163), + [anon_sym_yield] = ACTIONS(29), + [anon_sym_default] = ACTIONS(1179), + [anon_sym_throw] = ACTIONS(1351), + [anon_sym_when] = ACTIONS(29), + [anon_sym_await] = ACTIONS(1353), + [anon_sym_DOT_DOT] = ACTIONS(1355), + [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(1187), + [anon_sym_sizeof] = ACTIONS(1189), + [anon_sym_typeof] = ACTIONS(1191), + [anon_sym___makeref] = ACTIONS(1193), + [anon_sym___reftype] = ACTIONS(1195), + [anon_sym___refvalue] = ACTIONS(1197), + [sym_null_literal] = ACTIONS(1199), + [anon_sym_SQUOTE] = ACTIONS(1201), + [sym_integer_literal] = ACTIONS(1199), + [sym_real_literal] = ACTIONS(1203), + [anon_sym_DQUOTE] = ACTIONS(1205), + [sym_verbatim_string_literal] = ACTIONS(1203), + [aux_sym_preproc_if_token1] = ACTIONS(1207), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + [sym_interpolation_regular_start] = ACTIONS(1209), + [sym_interpolation_verbatim_start] = ACTIONS(1211), + [sym_interpolation_raw_start] = ACTIONS(1213), + [sym_raw_string_start] = ACTIONS(1215), + }, [726] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2420), - [sym__name] = STATE(5887), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2197), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(2291), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(4068), - [sym_non_lvalue_expression] = STATE(3066), - [sym_lvalue_expression] = STATE(3120), - [sym__expression_statement_expression] = STATE(3006), - [sym_assignment_expression] = STATE(3020), - [sym_binary_expression] = STATE(3006), - [sym_postfix_unary_expression] = STATE(3020), - [sym_prefix_unary_expression] = STATE(3020), - [sym__pointer_indirection_expression] = STATE(2423), - [sym_query_expression] = STATE(3006), - [sym_from_clause] = STATE(6152), - [sym_conditional_expression] = STATE(3006), - [sym_conditional_access_expression] = STATE(3006), - [sym_as_expression] = STATE(3006), - [sym_is_expression] = STATE(3006), - [sym_is_pattern_expression] = STATE(3006), - [sym_cast_expression] = STATE(3006), - [sym_checked_expression] = STATE(3006), - [sym_invocation_expression] = STATE(3020), - [sym_switch_expression] = STATE(3006), - [sym_await_expression] = STATE(3020), - [sym_throw_expression] = STATE(3006), - [sym_element_access_expression] = STATE(2423), - [sym_interpolated_string_expression] = STATE(3006), - [sym_member_access_expression] = STATE(2423), - [sym_object_creation_expression] = STATE(3020), - [sym_parenthesized_expression] = STATE(3020), - [sym__parenthesized_lvalue_expression] = STATE(2423), - [sym_lambda_expression] = STATE(3006), - [sym__lambda_expression_init] = STATE(7722), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3006), - [sym_anonymous_method_expression] = STATE(3006), - [sym_anonymous_object_creation_expression] = STATE(3006), - [sym_implicit_array_creation_expression] = STATE(3006), - [sym_implicit_object_creation_expression] = STATE(3006), - [sym_implicit_stackalloc_expression] = STATE(3006), - [sym_initializer_expression] = STATE(3006), - [sym_default_expression] = STATE(3006), - [sym_with_expression] = STATE(3006), - [sym_sizeof_expression] = STATE(3006), - [sym_typeof_expression] = STATE(3006), - [sym_makeref_expression] = STATE(3006), - [sym_ref_expression] = STATE(3006), - [sym_reftype_expression] = STATE(3006), - [sym_refvalue_expression] = STATE(3006), - [sym_stackalloc_expression] = STATE(3006), - [sym_range_expression] = STATE(3006), - [sym_tuple_expression] = STATE(2423), - [sym_literal] = STATE(3006), - [sym_character_literal] = STATE(3011), - [sym_string_literal] = STATE(3011), - [sym_raw_string_literal] = STATE(3011), - [sym_boolean_literal] = STATE(3011), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3006), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(5719), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2294), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(2279), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(5482), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3660), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3102), + [sym_postfix_unary_expression] = STATE(3079), + [sym_prefix_unary_expression] = STATE(3079), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6163), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3102), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3079), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3102), + [sym_member_access_expression] = STATE(2472), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3079), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7633), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(3102), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3102), + [sym_typeof_expression] = STATE(3102), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2472), + [sym_literal] = STATE(3102), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2242), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(726), [sym_preproc_endregion] = STATE(726), [sym_preproc_line] = STATE(726), @@ -164453,48 +164339,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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3440), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1241), - [anon_sym_LPAREN] = ACTIONS(1243), - [anon_sym_ref] = ACTIONS(1245), - [anon_sym_LBRACE] = ACTIONS(1247), - [anon_sym_delegate] = ACTIONS(1249), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1479), + [anon_sym_LPAREN] = ACTIONS(2009), + [anon_sym_ref] = ACTIONS(2515), + [anon_sym_LBRACE] = ACTIONS(1481), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1251), - [anon_sym_readonly] = ACTIONS(2749), + [anon_sym_new] = ACTIONS(1095), + [anon_sym_readonly] = ACTIONS(2891), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1253), - [anon_sym_BANG] = ACTIONS(1257), - [anon_sym_TILDE] = ACTIONS(1257), - [anon_sym_PLUS_PLUS] = ACTIONS(1257), - [anon_sym_DASH_DASH] = ACTIONS(1257), - [anon_sym_true] = ACTIONS(1259), - [anon_sym_false] = ACTIONS(1259), - [anon_sym_PLUS] = ACTIONS(1255), - [anon_sym_DASH] = ACTIONS(1255), - [anon_sym_STAR] = ACTIONS(1261), - [anon_sym_CARET] = ACTIONS(1257), - [anon_sym_AMP] = ACTIONS(1257), - [anon_sym_this] = ACTIONS(1263), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1265), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1267), - [anon_sym_unchecked] = ACTIONS(1253), + [anon_sym_checked] = ACTIONS(1065), + [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(77), + [anon_sym_false] = ACTIONS(77), + [anon_sym_PLUS] = ACTIONS(2013), + [anon_sym_DASH] = ACTIONS(2013), + [anon_sym_STAR] = ACTIONS(1227), + [anon_sym_CARET] = ACTIONS(2015), + [anon_sym_AMP] = ACTIONS(2015), + [anon_sym_this] = ACTIONS(83), + [anon_sym_scoped] = ACTIONS(2435), + [anon_sym_base] = ACTIONS(87), + [anon_sym_var] = ACTIONS(2749), + [sym_predefined_type] = ACTIONS(91), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1269), - [anon_sym_throw] = ACTIONS(1271), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(1231), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1273), - [anon_sym_DOT_DOT] = ACTIONS(1275), + [anon_sym_await] = ACTIONS(1233), + [anon_sym_DOT_DOT] = ACTIONS(1235), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -164507,19 +164393,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1277), - [anon_sym_sizeof] = ACTIONS(1279), - [anon_sym_typeof] = ACTIONS(1281), - [anon_sym___makeref] = ACTIONS(1283), - [anon_sym___reftype] = ACTIONS(1285), - [anon_sym___refvalue] = ACTIONS(1287), - [sym_null_literal] = ACTIONS(1289), - [anon_sym_SQUOTE] = ACTIONS(1291), - [sym_integer_literal] = ACTIONS(1289), - [sym_real_literal] = ACTIONS(1293), - [anon_sym_DQUOTE] = ACTIONS(1295), - [sym_verbatim_string_literal] = ACTIONS(1293), - [aux_sym_preproc_if_token1] = ACTIONS(1297), + [anon_sym_stackalloc] = ACTIONS(127), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_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), @@ -164530,90 +164416,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1299), - [sym_interpolation_verbatim_start] = ACTIONS(1301), - [sym_interpolation_raw_start] = ACTIONS(1303), - [sym_raw_string_start] = ACTIONS(1305), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [sym_interpolation_raw_start] = ACTIONS(155), + [sym_raw_string_start] = ACTIONS(157), }, [727] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(5910), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2247), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(5019), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3379), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3080), - [sym_postfix_unary_expression] = STATE(3111), - [sym_prefix_unary_expression] = STATE(3111), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6154), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3080), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3111), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3080), - [sym_member_access_expression] = STATE(2484), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3111), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7575), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(3080), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3080), - [sym_typeof_expression] = STATE(3080), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2484), - [sym_literal] = STATE(3080), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(2614), + [sym_alias_qualified_name] = STATE(2402), + [sym__simple_name] = STATE(2187), + [sym_qualified_name] = STATE(2402), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(2279), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(2373), + [sym__array_base_type] = STATE(7083), + [sym_nullable_type] = STATE(2375), + [sym_pointer_type] = STATE(2375), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(2375), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(2377), + [sym_expression] = STATE(5042), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3510), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3102), + [sym_postfix_unary_expression] = STATE(3079), + [sym_prefix_unary_expression] = STATE(3079), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6134), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3102), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3079), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3102), + [sym_member_access_expression] = STATE(2472), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3079), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7425), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(3102), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3102), + [sym_typeof_expression] = STATE(3102), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2472), + [sym_literal] = STATE(3102), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2202), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(727), [sym_preproc_endregion] = STATE(727), [sym_preproc_line] = STATE(727), @@ -164623,48 +164509,48 @@ 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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1481), - [anon_sym_LPAREN] = ACTIONS(895), - [anon_sym_ref] = ACTIONS(897), - [anon_sym_LBRACE] = ACTIONS(1487), - [anon_sym_RBRACE] = ACTIONS(2869), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1479), + [anon_sym_LPAREN] = ACTIONS(2849), + [anon_sym_ref] = ACTIONS(2519), + [anon_sym_LBRACE] = ACTIONS(1481), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1061), + [anon_sym_new] = ACTIONS(1059), + [anon_sym_readonly] = ACTIONS(2893), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1067), - [anon_sym_BANG] = ACTIONS(1495), - [anon_sym_TILDE] = ACTIONS(1495), - [anon_sym_PLUS_PLUS] = ACTIONS(1495), - [anon_sym_DASH_DASH] = ACTIONS(1495), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(1525), + [anon_sym_TILDE] = ACTIONS(1525), + [anon_sym_PLUS_PLUS] = ACTIONS(1525), + [anon_sym_DASH_DASH] = ACTIONS(1525), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1493), - [anon_sym_DASH] = ACTIONS(1493), - [anon_sym_STAR] = ACTIONS(905), - [anon_sym_CARET] = ACTIONS(1495), - [anon_sym_AMP] = ACTIONS(1495), + [anon_sym_PLUS] = ACTIONS(1523), + [anon_sym_DASH] = ACTIONS(1523), + [anon_sym_STAR] = ACTIONS(81), + [anon_sym_CARET] = ACTIONS(1525), + [anon_sym_AMP] = ACTIONS(1525), [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(85), + [anon_sym_scoped] = ACTIONS(2525), [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1067), + [anon_sym_var] = ACTIONS(2853), + [sym_predefined_type] = ACTIONS(2353), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1079), + [anon_sym_throw] = ACTIONS(1527), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1081), - [anon_sym_DOT_DOT] = ACTIONS(911), + [anon_sym_await] = ACTIONS(1529), + [anon_sym_DOT_DOT] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -164689,7 +164575,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(1089), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -164706,85 +164592,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [728] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_block] = STATE(3014), - [sym_bracketed_argument_list] = STATE(2420), - [sym__name] = STATE(5875), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2369), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(4146), - [sym_non_lvalue_expression] = STATE(3066), - [sym_lvalue_expression] = STATE(3125), - [sym__expression_statement_expression] = STATE(3006), - [sym_assignment_expression] = STATE(3020), - [sym_binary_expression] = STATE(3006), - [sym_postfix_unary_expression] = STATE(3020), - [sym_prefix_unary_expression] = STATE(3020), - [sym__pointer_indirection_expression] = STATE(2423), - [sym_query_expression] = STATE(3006), - [sym_from_clause] = STATE(6145), - [sym_conditional_expression] = STATE(3006), - [sym_conditional_access_expression] = STATE(3006), - [sym_as_expression] = STATE(3006), - [sym_is_expression] = STATE(3006), - [sym_is_pattern_expression] = STATE(3006), - [sym_cast_expression] = STATE(3006), - [sym_checked_expression] = STATE(3006), - [sym_invocation_expression] = STATE(3020), - [sym_switch_expression] = STATE(3006), - [sym_await_expression] = STATE(3020), - [sym_throw_expression] = STATE(3006), - [sym_element_access_expression] = STATE(2423), - [sym_interpolated_string_expression] = STATE(3006), - [sym_member_access_expression] = STATE(2423), - [sym_object_creation_expression] = STATE(3020), - [sym_parenthesized_expression] = STATE(3020), - [sym__parenthesized_lvalue_expression] = STATE(2423), - [sym_lambda_expression] = STATE(3006), - [sym__lambda_expression_init] = STATE(7538), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3006), - [sym_anonymous_method_expression] = STATE(3006), - [sym_anonymous_object_creation_expression] = STATE(3006), - [sym_implicit_array_creation_expression] = STATE(3006), - [sym_implicit_object_creation_expression] = STATE(3006), - [sym_implicit_stackalloc_expression] = STATE(3006), - [sym_initializer_expression] = STATE(3006), - [sym_default_expression] = STATE(3006), - [sym_with_expression] = STATE(3006), - [sym_sizeof_expression] = STATE(3006), - [sym_typeof_expression] = STATE(3006), - [sym_makeref_expression] = STATE(3006), - [sym_ref_expression] = STATE(3006), - [sym_reftype_expression] = STATE(3006), - [sym_refvalue_expression] = STATE(3006), - [sym_stackalloc_expression] = STATE(3006), - [sym_range_expression] = STATE(3006), - [sym_tuple_expression] = STATE(2423), - [sym_literal] = STATE(3006), - [sym_character_literal] = STATE(3011), - [sym_string_literal] = STATE(3011), - [sym_raw_string_literal] = STATE(3011), - [sym_boolean_literal] = STATE(3011), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3006), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_block] = STATE(3058), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(5881), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2386), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(4074), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3110), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3102), + [sym_postfix_unary_expression] = STATE(3079), + [sym_prefix_unary_expression] = STATE(3079), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6153), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3102), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3079), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3102), + [sym_member_access_expression] = STATE(2472), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3079), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7637), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(3102), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3102), + [sym_typeof_expression] = STATE(3102), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2472), + [sym_literal] = STATE(3102), + [sym_character_literal] = STATE(3037), + [sym_string_literal] = STATE(3037), + [sym_raw_string_literal] = STATE(3037), + [sym_boolean_literal] = STATE(3037), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(728), [sym_preproc_endregion] = STATE(728), [sym_preproc_line] = STATE(728), @@ -164794,47 +164680,47 @@ 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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3440), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1241), - [anon_sym_LPAREN] = ACTIONS(2195), - [anon_sym_ref] = ACTIONS(2197), - [anon_sym_LBRACE] = ACTIONS(2845), - [anon_sym_delegate] = ACTIONS(1249), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1479), + [anon_sym_LPAREN] = ACTIONS(1895), + [anon_sym_ref] = ACTIONS(1897), + [anon_sym_LBRACE] = ACTIONS(2855), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1845), + [anon_sym_new] = ACTIONS(1899), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1253), - [anon_sym_BANG] = ACTIONS(2201), - [anon_sym_TILDE] = ACTIONS(2201), - [anon_sym_PLUS_PLUS] = ACTIONS(2201), - [anon_sym_DASH_DASH] = ACTIONS(2201), - [anon_sym_true] = ACTIONS(1259), - [anon_sym_false] = ACTIONS(1259), - [anon_sym_PLUS] = ACTIONS(2199), - [anon_sym_DASH] = ACTIONS(2199), - [anon_sym_STAR] = ACTIONS(1851), - [anon_sym_CARET] = ACTIONS(2201), - [anon_sym_AMP] = ACTIONS(2201), - [anon_sym_this] = ACTIONS(1263), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(1903), + [anon_sym_TILDE] = ACTIONS(1903), + [anon_sym_PLUS_PLUS] = ACTIONS(1903), + [anon_sym_DASH_DASH] = ACTIONS(1903), + [anon_sym_true] = ACTIONS(1257), + [anon_sym_false] = ACTIONS(1257), + [anon_sym_PLUS] = ACTIONS(1901), + [anon_sym_DASH] = ACTIONS(1901), + [anon_sym_STAR] = ACTIONS(1905), + [anon_sym_CARET] = ACTIONS(1903), + [anon_sym_AMP] = ACTIONS(1903), + [anon_sym_this] = ACTIONS(83), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1265), + [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1267), - [anon_sym_unchecked] = ACTIONS(1253), + [sym_predefined_type] = ACTIONS(1265), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1269), - [anon_sym_throw] = ACTIONS(2203), + [anon_sym_default] = ACTIONS(1267), + [anon_sym_throw] = ACTIONS(1907), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2205), - [anon_sym_DOT_DOT] = ACTIONS(2207), + [anon_sym_await] = ACTIONS(1909), + [anon_sym_DOT_DOT] = ACTIONS(1911), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -164847,19 +164733,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1277), - [anon_sym_sizeof] = ACTIONS(1279), - [anon_sym_typeof] = ACTIONS(1281), - [anon_sym___makeref] = ACTIONS(1283), - [anon_sym___reftype] = ACTIONS(1285), - [anon_sym___refvalue] = ACTIONS(1287), - [sym_null_literal] = ACTIONS(1289), - [anon_sym_SQUOTE] = ACTIONS(1291), - [sym_integer_literal] = ACTIONS(1289), - [sym_real_literal] = ACTIONS(1293), - [anon_sym_DQUOTE] = ACTIONS(1295), - [sym_verbatim_string_literal] = ACTIONS(1293), - [aux_sym_preproc_if_token1] = ACTIONS(1297), + [anon_sym_stackalloc] = ACTIONS(127), + [anon_sym_sizeof] = ACTIONS(1277), + [anon_sym_typeof] = ACTIONS(1279), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), + [sym_null_literal] = ACTIONS(1287), + [anon_sym_SQUOTE] = ACTIONS(1289), + [sym_integer_literal] = ACTIONS(1287), + [sym_real_literal] = ACTIONS(1291), + [anon_sym_DQUOTE] = ACTIONS(1293), + [sym_verbatim_string_literal] = ACTIONS(1291), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -164870,90 +164756,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(1299), - [sym_interpolation_verbatim_start] = ACTIONS(1301), - [sym_interpolation_raw_start] = ACTIONS(1303), - [sym_raw_string_start] = ACTIONS(1305), + [sym_interpolation_regular_start] = ACTIONS(1297), + [sym_interpolation_verbatim_start] = ACTIONS(1299), + [sym_interpolation_raw_start] = ACTIONS(1301), + [sym_raw_string_start] = ACTIONS(1303), }, [729] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(5160), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2204), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(5386), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3461), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3080), - [sym_postfix_unary_expression] = STATE(3111), - [sym_prefix_unary_expression] = STATE(3111), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_block] = STATE(3454), + [sym_bracketed_argument_list] = STATE(2816), + [sym__name] = STATE(5873), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2196), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(5000), + [sym_non_lvalue_expression] = STATE(3495), + [sym_lvalue_expression] = STATE(3514), + [sym__expression_statement_expression] = STATE(3462), + [sym_assignment_expression] = STATE(3497), + [sym_binary_expression] = STATE(3462), + [sym_postfix_unary_expression] = STATE(3497), + [sym_prefix_unary_expression] = STATE(3497), + [sym__pointer_indirection_expression] = STATE(2815), + [sym_query_expression] = STATE(3462), [sym_from_clause] = STATE(6154), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3080), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3111), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3080), - [sym_member_access_expression] = STATE(2484), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3111), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7547), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(3080), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3080), - [sym_typeof_expression] = STATE(3080), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2484), - [sym_literal] = STATE(3080), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_conditional_expression] = STATE(3462), + [sym_conditional_access_expression] = STATE(3462), + [sym_as_expression] = STATE(3462), + [sym_is_expression] = STATE(3462), + [sym_is_pattern_expression] = STATE(3462), + [sym_cast_expression] = STATE(3462), + [sym_checked_expression] = STATE(3462), + [sym_invocation_expression] = STATE(3497), + [sym_switch_expression] = STATE(3462), + [sym_await_expression] = STATE(3497), + [sym_throw_expression] = STATE(3462), + [sym_element_access_expression] = STATE(2815), + [sym_interpolated_string_expression] = STATE(3462), + [sym_member_access_expression] = STATE(2815), + [sym_object_creation_expression] = STATE(3497), + [sym_parenthesized_expression] = STATE(3497), + [sym__parenthesized_lvalue_expression] = STATE(2815), + [sym_lambda_expression] = STATE(3462), + [sym__lambda_expression_init] = STATE(7685), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3462), + [sym_anonymous_method_expression] = STATE(3462), + [sym_anonymous_object_creation_expression] = STATE(3462), + [sym_implicit_array_creation_expression] = STATE(3462), + [sym_implicit_object_creation_expression] = STATE(3462), + [sym_implicit_stackalloc_expression] = STATE(3462), + [sym_initializer_expression] = STATE(3462), + [sym_default_expression] = STATE(3462), + [sym_with_expression] = STATE(3462), + [sym_sizeof_expression] = STATE(3462), + [sym_typeof_expression] = STATE(3462), + [sym_makeref_expression] = STATE(3462), + [sym_ref_expression] = STATE(3462), + [sym_reftype_expression] = STATE(3462), + [sym_refvalue_expression] = STATE(3462), + [sym_stackalloc_expression] = STATE(3462), + [sym_range_expression] = STATE(3462), + [sym_tuple_expression] = STATE(2815), + [sym_literal] = STATE(3462), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2261), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3462), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(729), [sym_preproc_endregion] = STATE(729), [sym_preproc_line] = STATE(729), @@ -164963,48 +164850,47 @@ 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(3067), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), [aux_sym__lambda_expression_init_repeat1] = STATE(3367), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), - [anon_sym_SEMI] = ACTIONS(2871), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1481), - [anon_sym_LPAREN] = ACTIONS(1497), - [anon_sym_ref] = ACTIONS(1499), - [anon_sym_LBRACE] = ACTIONS(1487), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1305), + [anon_sym_LPAREN] = ACTIONS(1613), + [anon_sym_ref] = ACTIONS(1615), + [anon_sym_LBRACE] = ACTIONS(2845), + [anon_sym_delegate] = ACTIONS(1313), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1501), + [anon_sym_new] = ACTIONS(1315), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = 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_checked] = ACTIONS(1317), + [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(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(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(1321), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), + [anon_sym_base] = ACTIONS(1323), [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1067), + [anon_sym_unchecked] = ACTIONS(1317), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1503), + [anon_sym_throw] = ACTIONS(1623), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1505), - [anon_sym_DOT_DOT] = ACTIONS(1507), + [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), @@ -165017,19 +164903,19 @@ static const uint16_t ts_parse_table[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(1331), [anon_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(1333), + [anon_sym___reftype] = ACTIONS(1335), + [anon_sym___refvalue] = ACTIONS(1337), [sym_null_literal] = ACTIONS(139), [anon_sym_SQUOTE] = ACTIONS(141), [sym_integer_literal] = ACTIONS(139), [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1089), + [aux_sym_preproc_if_token1] = ACTIONS(1339), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -165046,85 +164932,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [730] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_block] = STATE(3084), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(5907), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2404), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(4105), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3122), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3080), - [sym_postfix_unary_expression] = STATE(3111), - [sym_prefix_unary_expression] = STATE(3111), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6149), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3080), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3111), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3080), - [sym_member_access_expression] = STATE(2484), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3111), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7563), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(3080), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3080), - [sym_typeof_expression] = STATE(3080), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2484), - [sym_literal] = STATE(3080), - [sym_character_literal] = STATE(3011), - [sym_string_literal] = STATE(3011), - [sym_raw_string_literal] = STATE(3011), - [sym_boolean_literal] = STATE(3011), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_block] = STATE(2984), + [sym_bracketed_argument_list] = STATE(2416), + [sym__name] = STATE(5868), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2387), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(5167), + [sym_non_lvalue_expression] = STATE(3040), + [sym_lvalue_expression] = STATE(3634), + [sym__expression_statement_expression] = STATE(3035), + [sym_assignment_expression] = STATE(3043), + [sym_binary_expression] = STATE(3035), + [sym_postfix_unary_expression] = STATE(3043), + [sym_prefix_unary_expression] = STATE(3043), + [sym__pointer_indirection_expression] = STATE(2415), + [sym_query_expression] = STATE(3035), + [sym_from_clause] = STATE(6130), + [sym_conditional_expression] = STATE(3035), + [sym_conditional_access_expression] = STATE(3035), + [sym_as_expression] = STATE(3035), + [sym_is_expression] = STATE(3035), + [sym_is_pattern_expression] = STATE(3035), + [sym_cast_expression] = STATE(3035), + [sym_checked_expression] = STATE(3035), + [sym_invocation_expression] = STATE(3043), + [sym_switch_expression] = STATE(3035), + [sym_await_expression] = STATE(3043), + [sym_throw_expression] = STATE(3035), + [sym_element_access_expression] = STATE(2415), + [sym_interpolated_string_expression] = STATE(3035), + [sym_member_access_expression] = STATE(2415), + [sym_object_creation_expression] = STATE(3043), + [sym_parenthesized_expression] = STATE(3043), + [sym__parenthesized_lvalue_expression] = STATE(2415), + [sym_lambda_expression] = STATE(3035), + [sym__lambda_expression_init] = STATE(7324), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3035), + [sym_anonymous_method_expression] = STATE(3035), + [sym_anonymous_object_creation_expression] = STATE(3035), + [sym_implicit_array_creation_expression] = STATE(3035), + [sym_implicit_object_creation_expression] = STATE(3035), + [sym_implicit_stackalloc_expression] = STATE(3035), + [sym_initializer_expression] = STATE(3035), + [sym_default_expression] = STATE(3035), + [sym_with_expression] = STATE(3035), + [sym_sizeof_expression] = STATE(3035), + [sym_typeof_expression] = STATE(3035), + [sym_makeref_expression] = STATE(3035), + [sym_ref_expression] = STATE(3035), + [sym_reftype_expression] = STATE(3035), + [sym_refvalue_expression] = STATE(3035), + [sym_stackalloc_expression] = STATE(3035), + [sym_range_expression] = STATE(3035), + [sym_tuple_expression] = STATE(2415), + [sym_literal] = STATE(3035), + [sym_character_literal] = STATE(3037), + [sym_string_literal] = STATE(3037), + [sym_raw_string_literal] = STATE(3037), + [sym_boolean_literal] = STATE(3037), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3035), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(730), [sym_preproc_endregion] = STATE(730), [sym_preproc_line] = STATE(730), @@ -165134,47 +165020,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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3455), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1481), - [anon_sym_LPAREN] = ACTIONS(1933), - [anon_sym_ref] = ACTIONS(1935), - [anon_sym_LBRACE] = ACTIONS(2847), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1239), + [anon_sym_LPAREN] = ACTIONS(2281), + [anon_sym_ref] = ACTIONS(2283), + [anon_sym_LBRACE] = ACTIONS(2839), + [anon_sym_delegate] = ACTIONS(1247), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1937), + [anon_sym_new] = ACTIONS(2285), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1067), - [anon_sym_BANG] = ACTIONS(1941), - [anon_sym_TILDE] = ACTIONS(1941), - [anon_sym_PLUS_PLUS] = ACTIONS(1941), - [anon_sym_DASH_DASH] = ACTIONS(1941), - [anon_sym_true] = ACTIONS(1259), - [anon_sym_false] = ACTIONS(1259), - [anon_sym_PLUS] = ACTIONS(1939), - [anon_sym_DASH] = ACTIONS(1939), - [anon_sym_STAR] = ACTIONS(1943), - [anon_sym_CARET] = ACTIONS(1941), - [anon_sym_AMP] = ACTIONS(1941), - [anon_sym_this] = ACTIONS(83), + [anon_sym_checked] = ACTIONS(1251), + [anon_sym_BANG] = ACTIONS(2289), + [anon_sym_TILDE] = ACTIONS(2289), + [anon_sym_PLUS_PLUS] = ACTIONS(2289), + [anon_sym_DASH_DASH] = ACTIONS(2289), + [anon_sym_true] = ACTIONS(1257), + [anon_sym_false] = ACTIONS(1257), + [anon_sym_PLUS] = ACTIONS(2287), + [anon_sym_DASH] = ACTIONS(2287), + [anon_sym_STAR] = ACTIONS(2291), + [anon_sym_CARET] = ACTIONS(2289), + [anon_sym_AMP] = ACTIONS(2289), + [anon_sym_this] = ACTIONS(1261), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), + [anon_sym_base] = ACTIONS(1263), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1267), - [anon_sym_unchecked] = ACTIONS(1067), + [sym_predefined_type] = ACTIONS(1265), + [anon_sym_unchecked] = ACTIONS(1251), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1269), - [anon_sym_throw] = ACTIONS(1945), + [anon_sym_default] = ACTIONS(1267), + [anon_sym_throw] = ACTIONS(2293), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1947), - [anon_sym_DOT_DOT] = ACTIONS(1949), + [anon_sym_await] = ACTIONS(2295), + [anon_sym_DOT_DOT] = ACTIONS(2297), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -165187,19 +165073,19 @@ static const uint16_t ts_parse_table[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(1279), - [anon_sym_typeof] = ACTIONS(1281), - [anon_sym___makeref] = ACTIONS(133), - [anon_sym___reftype] = ACTIONS(135), - [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(1289), - [anon_sym_SQUOTE] = ACTIONS(1291), - [sym_integer_literal] = ACTIONS(1289), - [sym_real_literal] = ACTIONS(1293), - [anon_sym_DQUOTE] = ACTIONS(1295), - [sym_verbatim_string_literal] = ACTIONS(1293), - [aux_sym_preproc_if_token1] = ACTIONS(1089), + [anon_sym_stackalloc] = ACTIONS(1275), + [anon_sym_sizeof] = ACTIONS(1277), + [anon_sym_typeof] = ACTIONS(1279), + [anon_sym___makeref] = ACTIONS(1281), + [anon_sym___reftype] = ACTIONS(1283), + [anon_sym___refvalue] = ACTIONS(1285), + [sym_null_literal] = ACTIONS(1287), + [anon_sym_SQUOTE] = ACTIONS(1289), + [sym_integer_literal] = ACTIONS(1287), + [sym_real_literal] = ACTIONS(1291), + [anon_sym_DQUOTE] = ACTIONS(1293), + [sym_verbatim_string_literal] = ACTIONS(1291), + [aux_sym_preproc_if_token1] = ACTIONS(1295), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -165210,91 +165096,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1299), - [sym_interpolation_verbatim_start] = ACTIONS(1301), - [sym_interpolation_raw_start] = ACTIONS(1303), - [sym_raw_string_start] = ACTIONS(1305), + [sym_interpolation_regular_start] = ACTIONS(1297), + [sym_interpolation_verbatim_start] = ACTIONS(1299), + [sym_interpolation_raw_start] = ACTIONS(1301), + [sym_raw_string_start] = ACTIONS(1303), }, [731] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_block] = STATE(3430), - [sym_bracketed_argument_list] = STATE(2762), - [sym__name] = STATE(5910), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2204), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(4273), - [sym_non_lvalue_expression] = STATE(3438), - [sym_lvalue_expression] = STATE(3162), - [sym__expression_statement_expression] = STATE(3362), - [sym_assignment_expression] = STATE(3449), - [sym_binary_expression] = STATE(3362), - [sym_postfix_unary_expression] = STATE(3449), - [sym_prefix_unary_expression] = STATE(3449), - [sym__pointer_indirection_expression] = STATE(2747), - [sym_query_expression] = STATE(3362), - [sym_from_clause] = STATE(6171), - [sym_conditional_expression] = STATE(3362), - [sym_conditional_access_expression] = STATE(3362), - [sym_as_expression] = STATE(3362), - [sym_is_expression] = STATE(3362), - [sym_is_pattern_expression] = STATE(3362), - [sym_cast_expression] = STATE(3362), - [sym_checked_expression] = STATE(3362), - [sym_invocation_expression] = STATE(3449), - [sym_switch_expression] = STATE(3362), - [sym_await_expression] = STATE(3449), - [sym_throw_expression] = STATE(3362), - [sym_element_access_expression] = STATE(2747), - [sym_interpolated_string_expression] = STATE(3362), - [sym_member_access_expression] = STATE(2747), - [sym_object_creation_expression] = STATE(3449), - [sym_parenthesized_expression] = STATE(3449), - [sym__parenthesized_lvalue_expression] = STATE(2747), - [sym_lambda_expression] = STATE(3362), - [sym__lambda_expression_init] = STATE(7320), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3362), - [sym_anonymous_method_expression] = STATE(3362), - [sym_anonymous_object_creation_expression] = STATE(3362), - [sym_implicit_array_creation_expression] = STATE(3362), - [sym_implicit_object_creation_expression] = STATE(3362), - [sym_implicit_stackalloc_expression] = STATE(3362), - [sym_initializer_expression] = STATE(3362), - [sym_default_expression] = STATE(3362), - [sym_with_expression] = STATE(3362), - [sym_sizeof_expression] = STATE(3362), - [sym_typeof_expression] = STATE(3362), - [sym_makeref_expression] = STATE(3362), - [sym_ref_expression] = STATE(3362), - [sym_reftype_expression] = STATE(3362), - [sym_refvalue_expression] = STATE(3362), - [sym_stackalloc_expression] = STATE(3362), - [sym_range_expression] = STATE(3362), - [sym_tuple_expression] = STATE(2747), - [sym_literal] = STATE(3362), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3362), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2816), + [sym__name] = STATE(5875), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2321), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(2279), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(4500), + [sym_non_lvalue_expression] = STATE(3495), + [sym_lvalue_expression] = STATE(3484), + [sym__expression_statement_expression] = STATE(3462), + [sym_assignment_expression] = STATE(3497), + [sym_binary_expression] = STATE(3462), + [sym_postfix_unary_expression] = STATE(3497), + [sym_prefix_unary_expression] = STATE(3497), + [sym__pointer_indirection_expression] = STATE(2815), + [sym_query_expression] = STATE(3462), + [sym_from_clause] = STATE(6142), + [sym_conditional_expression] = STATE(3462), + [sym_conditional_access_expression] = STATE(3462), + [sym_as_expression] = STATE(3462), + [sym_is_expression] = STATE(3462), + [sym_is_pattern_expression] = STATE(3462), + [sym_cast_expression] = STATE(3462), + [sym_checked_expression] = STATE(3462), + [sym_invocation_expression] = STATE(3497), + [sym_switch_expression] = STATE(3462), + [sym_await_expression] = STATE(3497), + [sym_throw_expression] = STATE(3462), + [sym_element_access_expression] = STATE(2815), + [sym_interpolated_string_expression] = STATE(3462), + [sym_member_access_expression] = STATE(2815), + [sym_object_creation_expression] = STATE(3497), + [sym_parenthesized_expression] = STATE(3497), + [sym__parenthesized_lvalue_expression] = STATE(2815), + [sym_lambda_expression] = STATE(3462), + [sym__lambda_expression_init] = STATE(7384), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3462), + [sym_anonymous_method_expression] = STATE(3462), + [sym_anonymous_object_creation_expression] = STATE(3462), + [sym_implicit_array_creation_expression] = STATE(3462), + [sym_implicit_object_creation_expression] = STATE(3462), + [sym_implicit_stackalloc_expression] = STATE(3462), + [sym_initializer_expression] = STATE(3462), + [sym_default_expression] = STATE(3462), + [sym_with_expression] = STATE(3462), + [sym_sizeof_expression] = STATE(3462), + [sym_typeof_expression] = STATE(3462), + [sym_makeref_expression] = STATE(3462), + [sym_ref_expression] = STATE(3462), + [sym_reftype_expression] = STATE(3462), + [sym_refvalue_expression] = STATE(3462), + [sym_stackalloc_expression] = STATE(3462), + [sym_range_expression] = STATE(3462), + [sym_tuple_expression] = STATE(2815), + [sym_literal] = STATE(3462), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2261), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3462), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(731), [sym_preproc_endregion] = STATE(731), [sym_preproc_line] = STATE(731), @@ -165304,47 +165189,48 @@ 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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3385), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3367), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1307), - [anon_sym_LPAREN] = ACTIONS(1343), - [anon_sym_ref] = ACTIONS(1345), - [anon_sym_LBRACE] = ACTIONS(2857), - [anon_sym_delegate] = ACTIONS(1315), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1305), + [anon_sym_LPAREN] = ACTIONS(1579), + [anon_sym_ref] = ACTIONS(1581), + [anon_sym_LBRACE] = ACTIONS(1311), + [anon_sym_delegate] = ACTIONS(1313), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1317), + [anon_sym_new] = ACTIONS(1583), + [anon_sym_readonly] = ACTIONS(2767), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1319), - [anon_sym_BANG] = ACTIONS(1349), - [anon_sym_TILDE] = ACTIONS(1349), - [anon_sym_PLUS_PLUS] = ACTIONS(1349), - [anon_sym_DASH_DASH] = ACTIONS(1349), + [anon_sym_checked] = ACTIONS(1317), + [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(1347), - [anon_sym_DASH] = ACTIONS(1347), - [anon_sym_STAR] = ACTIONS(1351), - [anon_sym_CARET] = ACTIONS(1349), - [anon_sym_AMP] = ACTIONS(1349), - [anon_sym_this] = ACTIONS(1323), + [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(1321), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1325), + [anon_sym_base] = ACTIONS(1323), [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1319), + [anon_sym_unchecked] = ACTIONS(1317), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1353), + [anon_sym_throw] = ACTIONS(1591), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1355), - [anon_sym_DOT_DOT] = ACTIONS(1357), + [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), @@ -165357,19 +165243,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1333), + [anon_sym_stackalloc] = ACTIONS(1331), [anon_sym_sizeof] = ACTIONS(129), [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(1335), - [anon_sym___reftype] = ACTIONS(1337), - [anon_sym___refvalue] = ACTIONS(1339), + [anon_sym___makeref] = ACTIONS(1333), + [anon_sym___reftype] = ACTIONS(1335), + [anon_sym___refvalue] = ACTIONS(1337), [sym_null_literal] = ACTIONS(139), [anon_sym_SQUOTE] = ACTIONS(141), [sym_integer_literal] = ACTIONS(139), [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1341), + [aux_sym_preproc_if_token1] = ACTIONS(1339), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -165386,85 +165272,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [732] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_block] = STATE(3702), - [sym_bracketed_argument_list] = STATE(2914), - [sym__name] = STATE(5873), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2362), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(3678), - [sym_non_lvalue_expression] = STATE(3880), - [sym_lvalue_expression] = STATE(2949), - [sym__expression_statement_expression] = STATE(3873), - [sym_assignment_expression] = STATE(3881), - [sym_binary_expression] = STATE(3873), - [sym_postfix_unary_expression] = STATE(3881), - [sym_prefix_unary_expression] = STATE(3881), - [sym__pointer_indirection_expression] = STATE(2913), - [sym_query_expression] = STATE(3873), - [sym_from_clause] = STATE(6182), - [sym_conditional_expression] = STATE(3873), - [sym_conditional_access_expression] = STATE(3873), - [sym_as_expression] = STATE(3873), - [sym_is_expression] = STATE(3873), - [sym_is_pattern_expression] = STATE(3873), - [sym_cast_expression] = STATE(3873), - [sym_checked_expression] = STATE(3873), - [sym_invocation_expression] = STATE(3881), - [sym_switch_expression] = STATE(3873), - [sym_await_expression] = STATE(3881), - [sym_throw_expression] = STATE(3873), - [sym_element_access_expression] = STATE(2913), - [sym_interpolated_string_expression] = STATE(3873), - [sym_member_access_expression] = STATE(2913), - [sym_object_creation_expression] = STATE(3881), - [sym_parenthesized_expression] = STATE(3881), - [sym__parenthesized_lvalue_expression] = STATE(2913), - [sym_lambda_expression] = STATE(3873), - [sym__lambda_expression_init] = STATE(7721), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3873), - [sym_anonymous_method_expression] = STATE(3873), - [sym_anonymous_object_creation_expression] = STATE(3873), - [sym_implicit_array_creation_expression] = STATE(3873), - [sym_implicit_object_creation_expression] = STATE(3873), - [sym_implicit_stackalloc_expression] = STATE(3873), - [sym_initializer_expression] = STATE(3873), - [sym_default_expression] = STATE(3873), - [sym_with_expression] = STATE(3873), - [sym_sizeof_expression] = STATE(3873), - [sym_typeof_expression] = STATE(3873), - [sym_makeref_expression] = STATE(3873), - [sym_ref_expression] = STATE(3873), - [sym_reftype_expression] = STATE(3873), - [sym_refvalue_expression] = STATE(3873), - [sym_stackalloc_expression] = STATE(3873), - [sym_range_expression] = STATE(3873), - [sym_tuple_expression] = STATE(2913), - [sym_literal] = STATE(3873), - [sym_character_literal] = STATE(3877), - [sym_string_literal] = STATE(3877), - [sym_raw_string_literal] = STATE(3877), - [sym_boolean_literal] = STATE(3877), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3873), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2416), + [sym__name] = STATE(5868), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2387), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(2279), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(5243), + [sym_non_lvalue_expression] = STATE(3040), + [sym_lvalue_expression] = STATE(3634), + [sym__expression_statement_expression] = STATE(3035), + [sym_assignment_expression] = STATE(3043), + [sym_binary_expression] = STATE(3035), + [sym_postfix_unary_expression] = STATE(3043), + [sym_prefix_unary_expression] = STATE(3043), + [sym__pointer_indirection_expression] = STATE(2415), + [sym_query_expression] = STATE(3035), + [sym_from_clause] = STATE(6130), + [sym_conditional_expression] = STATE(3035), + [sym_conditional_access_expression] = STATE(3035), + [sym_as_expression] = STATE(3035), + [sym_is_expression] = STATE(3035), + [sym_is_pattern_expression] = STATE(3035), + [sym_cast_expression] = STATE(3035), + [sym_checked_expression] = STATE(3035), + [sym_invocation_expression] = STATE(3043), + [sym_switch_expression] = STATE(3035), + [sym_await_expression] = STATE(3043), + [sym_throw_expression] = STATE(3035), + [sym_element_access_expression] = STATE(2415), + [sym_interpolated_string_expression] = STATE(3035), + [sym_member_access_expression] = STATE(2415), + [sym_object_creation_expression] = STATE(3043), + [sym_parenthesized_expression] = STATE(3043), + [sym__parenthesized_lvalue_expression] = STATE(2415), + [sym_lambda_expression] = STATE(3035), + [sym__lambda_expression_init] = STATE(7324), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3035), + [sym_anonymous_method_expression] = STATE(3035), + [sym_anonymous_object_creation_expression] = STATE(3035), + [sym_implicit_array_creation_expression] = STATE(3035), + [sym_implicit_object_creation_expression] = STATE(3035), + [sym_implicit_stackalloc_expression] = STATE(3035), + [sym_initializer_expression] = STATE(3035), + [sym_default_expression] = STATE(3035), + [sym_with_expression] = STATE(3035), + [sym_sizeof_expression] = STATE(3035), + [sym_typeof_expression] = STATE(3035), + [sym_makeref_expression] = STATE(3035), + [sym_ref_expression] = STATE(3035), + [sym_reftype_expression] = STATE(3035), + [sym_refvalue_expression] = STATE(3035), + [sym_stackalloc_expression] = STATE(3035), + [sym_range_expression] = STATE(3035), + [sym_tuple_expression] = STATE(2415), + [sym_literal] = STATE(3035), + [sym_character_literal] = STATE(3037), + [sym_string_literal] = STATE(3037), + [sym_raw_string_literal] = STATE(3037), + [sym_boolean_literal] = STATE(3037), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3035), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(732), [sym_preproc_endregion] = STATE(732), [sym_preproc_line] = STATE(732), @@ -165474,47 +165359,48 @@ 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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3382), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3455), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1627), - [anon_sym_LPAREN] = ACTIONS(1629), - [anon_sym_ref] = ACTIONS(1631), - [anon_sym_LBRACE] = ACTIONS(2873), - [anon_sym_delegate] = ACTIONS(1635), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1239), + [anon_sym_LPAREN] = ACTIONS(2281), + [anon_sym_ref] = ACTIONS(2283), + [anon_sym_LBRACE] = ACTIONS(1245), + [anon_sym_delegate] = ACTIONS(1247), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1637), + [anon_sym_new] = ACTIONS(2285), + [anon_sym_readonly] = ACTIONS(2767), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1639), - [anon_sym_BANG] = ACTIONS(1643), - [anon_sym_TILDE] = ACTIONS(1643), - [anon_sym_PLUS_PLUS] = ACTIONS(1643), - [anon_sym_DASH_DASH] = ACTIONS(1643), - [anon_sym_true] = ACTIONS(1645), - [anon_sym_false] = ACTIONS(1645), - [anon_sym_PLUS] = ACTIONS(1641), - [anon_sym_DASH] = ACTIONS(1641), - [anon_sym_STAR] = ACTIONS(1647), - [anon_sym_CARET] = ACTIONS(1643), - [anon_sym_AMP] = ACTIONS(1643), - [anon_sym_this] = ACTIONS(1649), + [anon_sym_checked] = ACTIONS(1251), + [anon_sym_BANG] = ACTIONS(2289), + [anon_sym_TILDE] = ACTIONS(2289), + [anon_sym_PLUS_PLUS] = ACTIONS(2289), + [anon_sym_DASH_DASH] = ACTIONS(2289), + [anon_sym_true] = ACTIONS(1257), + [anon_sym_false] = ACTIONS(1257), + [anon_sym_PLUS] = ACTIONS(2287), + [anon_sym_DASH] = ACTIONS(2287), + [anon_sym_STAR] = ACTIONS(2291), + [anon_sym_CARET] = ACTIONS(2289), + [anon_sym_AMP] = ACTIONS(2289), + [anon_sym_this] = ACTIONS(1261), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1651), + [anon_sym_base] = ACTIONS(1263), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1653), - [anon_sym_unchecked] = ACTIONS(1639), + [sym_predefined_type] = ACTIONS(1265), + [anon_sym_unchecked] = ACTIONS(1251), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1655), - [anon_sym_throw] = ACTIONS(1657), + [anon_sym_default] = ACTIONS(1267), + [anon_sym_throw] = ACTIONS(2293), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1659), - [anon_sym_DOT_DOT] = ACTIONS(1661), + [anon_sym_await] = ACTIONS(2295), + [anon_sym_DOT_DOT] = ACTIONS(2297), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -165527,19 +165413,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1663), - [anon_sym_sizeof] = ACTIONS(1665), - [anon_sym_typeof] = ACTIONS(1667), - [anon_sym___makeref] = ACTIONS(1669), - [anon_sym___reftype] = ACTIONS(1671), - [anon_sym___refvalue] = ACTIONS(1673), - [sym_null_literal] = ACTIONS(1675), - [anon_sym_SQUOTE] = ACTIONS(1677), - [sym_integer_literal] = ACTIONS(1675), - [sym_real_literal] = ACTIONS(1679), - [anon_sym_DQUOTE] = ACTIONS(1681), - [sym_verbatim_string_literal] = ACTIONS(1679), - [aux_sym_preproc_if_token1] = ACTIONS(1683), + [anon_sym_stackalloc] = ACTIONS(1275), + [anon_sym_sizeof] = ACTIONS(1277), + [anon_sym_typeof] = ACTIONS(1279), + [anon_sym___makeref] = ACTIONS(1281), + [anon_sym___reftype] = ACTIONS(1283), + [anon_sym___refvalue] = ACTIONS(1285), + [sym_null_literal] = ACTIONS(1287), + [anon_sym_SQUOTE] = ACTIONS(1289), + [sym_integer_literal] = ACTIONS(1287), + [sym_real_literal] = ACTIONS(1291), + [anon_sym_DQUOTE] = ACTIONS(1293), + [sym_verbatim_string_literal] = ACTIONS(1291), + [aux_sym_preproc_if_token1] = ACTIONS(1295), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -165550,90 +165436,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1685), - [sym_interpolation_verbatim_start] = ACTIONS(1687), - [sym_interpolation_raw_start] = ACTIONS(1689), - [sym_raw_string_start] = ACTIONS(1691), + [sym_interpolation_regular_start] = ACTIONS(1297), + [sym_interpolation_verbatim_start] = ACTIONS(1299), + [sym_interpolation_raw_start] = ACTIONS(1301), + [sym_raw_string_start] = ACTIONS(1303), }, [733] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(5907), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2404), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(2291), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(4088), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3122), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3080), - [sym_postfix_unary_expression] = STATE(3111), - [sym_prefix_unary_expression] = STATE(3111), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6149), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3080), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3111), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3080), - [sym_member_access_expression] = STATE(2484), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3111), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7563), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(3080), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3080), - [sym_typeof_expression] = STATE(3080), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2484), - [sym_literal] = STATE(3080), - [sym_character_literal] = STATE(3011), - [sym_string_literal] = STATE(3011), - [sym_raw_string_literal] = STATE(3011), - [sym_boolean_literal] = STATE(3011), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2603), + [sym__name] = STATE(5894), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2193), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(2279), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(4226), + [sym_non_lvalue_expression] = STATE(3220), + [sym_lvalue_expression] = STATE(3126), + [sym__expression_statement_expression] = STATE(3236), + [sym_assignment_expression] = STATE(3221), + [sym_binary_expression] = STATE(3236), + [sym_postfix_unary_expression] = STATE(3221), + [sym_prefix_unary_expression] = STATE(3221), + [sym__pointer_indirection_expression] = STATE(2602), + [sym_query_expression] = STATE(3236), + [sym_from_clause] = STATE(6165), + [sym_conditional_expression] = STATE(3236), + [sym_conditional_access_expression] = STATE(3236), + [sym_as_expression] = STATE(3236), + [sym_is_expression] = STATE(3236), + [sym_is_pattern_expression] = STATE(3236), + [sym_cast_expression] = STATE(3236), + [sym_checked_expression] = STATE(3236), + [sym_invocation_expression] = STATE(3221), + [sym_switch_expression] = STATE(3236), + [sym_await_expression] = STATE(3221), + [sym_throw_expression] = STATE(3236), + [sym_element_access_expression] = STATE(2602), + [sym_interpolated_string_expression] = STATE(3236), + [sym_member_access_expression] = STATE(2602), + [sym_object_creation_expression] = STATE(3221), + [sym_parenthesized_expression] = STATE(3221), + [sym__parenthesized_lvalue_expression] = STATE(2602), + [sym_lambda_expression] = STATE(3236), + [sym__lambda_expression_init] = STATE(7487), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3236), + [sym_anonymous_method_expression] = STATE(3236), + [sym_anonymous_object_creation_expression] = STATE(3236), + [sym_implicit_array_creation_expression] = STATE(3236), + [sym_implicit_object_creation_expression] = STATE(3236), + [sym_implicit_stackalloc_expression] = STATE(3236), + [sym_initializer_expression] = STATE(3236), + [sym_default_expression] = STATE(3236), + [sym_with_expression] = STATE(3236), + [sym_sizeof_expression] = STATE(3236), + [sym_typeof_expression] = STATE(3236), + [sym_makeref_expression] = STATE(3236), + [sym_ref_expression] = STATE(3236), + [sym_reftype_expression] = STATE(3236), + [sym_refvalue_expression] = STATE(3236), + [sym_stackalloc_expression] = STATE(3236), + [sym_range_expression] = STATE(3236), + [sym_tuple_expression] = STATE(2602), + [sym_literal] = STATE(3236), + [sym_character_literal] = STATE(3272), + [sym_string_literal] = STATE(3272), + [sym_raw_string_literal] = STATE(3272), + [sym_boolean_literal] = STATE(3272), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3236), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(733), [sym_preproc_endregion] = STATE(733), [sym_preproc_line] = STATE(733), @@ -165643,48 +165529,48 @@ 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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3379), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1481), - [anon_sym_LPAREN] = ACTIONS(1933), - [anon_sym_ref] = ACTIONS(1935), - [anon_sym_LBRACE] = ACTIONS(1487), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1149), + [anon_sym_LPAREN] = ACTIONS(1341), + [anon_sym_ref] = ACTIONS(1343), + [anon_sym_LBRACE] = ACTIONS(1155), + [anon_sym_delegate] = ACTIONS(1157), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1937), - [anon_sym_readonly] = ACTIONS(2749), + [anon_sym_new] = ACTIONS(1159), + [anon_sym_readonly] = ACTIONS(2767), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1067), - [anon_sym_BANG] = ACTIONS(1941), - [anon_sym_TILDE] = ACTIONS(1941), - [anon_sym_PLUS_PLUS] = ACTIONS(1941), - [anon_sym_DASH_DASH] = ACTIONS(1941), - [anon_sym_true] = ACTIONS(1259), - [anon_sym_false] = ACTIONS(1259), - [anon_sym_PLUS] = ACTIONS(1939), - [anon_sym_DASH] = ACTIONS(1939), - [anon_sym_STAR] = ACTIONS(1943), - [anon_sym_CARET] = ACTIONS(1941), - [anon_sym_AMP] = ACTIONS(1941), - [anon_sym_this] = ACTIONS(83), + [anon_sym_checked] = ACTIONS(1163), + [anon_sym_BANG] = ACTIONS(1347), + [anon_sym_TILDE] = ACTIONS(1347), + [anon_sym_PLUS_PLUS] = ACTIONS(1347), + [anon_sym_DASH_DASH] = ACTIONS(1347), + [anon_sym_true] = ACTIONS(1169), + [anon_sym_false] = ACTIONS(1169), + [anon_sym_PLUS] = ACTIONS(1345), + [anon_sym_DASH] = ACTIONS(1345), + [anon_sym_STAR] = ACTIONS(1349), + [anon_sym_CARET] = ACTIONS(1347), + [anon_sym_AMP] = ACTIONS(1347), + [anon_sym_this] = ACTIONS(1173), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), + [anon_sym_base] = ACTIONS(1175), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1267), - [anon_sym_unchecked] = ACTIONS(1067), + [sym_predefined_type] = ACTIONS(1177), + [anon_sym_unchecked] = ACTIONS(1163), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1269), - [anon_sym_throw] = ACTIONS(1945), + [anon_sym_default] = ACTIONS(1179), + [anon_sym_throw] = ACTIONS(1351), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1947), - [anon_sym_DOT_DOT] = ACTIONS(1949), + [anon_sym_await] = ACTIONS(1353), + [anon_sym_DOT_DOT] = ACTIONS(1355), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -165697,19 +165583,19 @@ static const uint16_t ts_parse_table[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(1279), - [anon_sym_typeof] = ACTIONS(1281), - [anon_sym___makeref] = ACTIONS(133), - [anon_sym___reftype] = ACTIONS(135), - [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(1289), - [anon_sym_SQUOTE] = ACTIONS(1291), - [sym_integer_literal] = ACTIONS(1289), - [sym_real_literal] = ACTIONS(1293), - [anon_sym_DQUOTE] = ACTIONS(1295), - [sym_verbatim_string_literal] = ACTIONS(1293), - [aux_sym_preproc_if_token1] = ACTIONS(1089), + [anon_sym_stackalloc] = ACTIONS(1187), + [anon_sym_sizeof] = ACTIONS(1189), + [anon_sym_typeof] = ACTIONS(1191), + [anon_sym___makeref] = ACTIONS(1193), + [anon_sym___reftype] = ACTIONS(1195), + [anon_sym___refvalue] = ACTIONS(1197), + [sym_null_literal] = ACTIONS(1199), + [anon_sym_SQUOTE] = ACTIONS(1201), + [sym_integer_literal] = ACTIONS(1199), + [sym_real_literal] = ACTIONS(1203), + [anon_sym_DQUOTE] = ACTIONS(1205), + [sym_verbatim_string_literal] = ACTIONS(1203), + [aux_sym_preproc_if_token1] = ACTIONS(1207), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -165720,90 +165606,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(1299), - [sym_interpolation_verbatim_start] = ACTIONS(1301), - [sym_interpolation_raw_start] = ACTIONS(1303), - [sym_raw_string_start] = ACTIONS(1305), + [sym_interpolation_regular_start] = ACTIONS(1209), + [sym_interpolation_verbatim_start] = ACTIONS(1211), + [sym_interpolation_raw_start] = ACTIONS(1213), + [sym_raw_string_start] = ACTIONS(1215), }, [734] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2914), - [sym__name] = STATE(5873), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2362), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(2291), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(3669), - [sym_non_lvalue_expression] = STATE(3880), - [sym_lvalue_expression] = STATE(2949), - [sym__expression_statement_expression] = STATE(3873), - [sym_assignment_expression] = STATE(3881), - [sym_binary_expression] = STATE(3873), - [sym_postfix_unary_expression] = STATE(3881), - [sym_prefix_unary_expression] = STATE(3881), - [sym__pointer_indirection_expression] = STATE(2913), - [sym_query_expression] = STATE(3873), - [sym_from_clause] = STATE(6182), - [sym_conditional_expression] = STATE(3873), - [sym_conditional_access_expression] = STATE(3873), - [sym_as_expression] = STATE(3873), - [sym_is_expression] = STATE(3873), - [sym_is_pattern_expression] = STATE(3873), - [sym_cast_expression] = STATE(3873), - [sym_checked_expression] = STATE(3873), - [sym_invocation_expression] = STATE(3881), - [sym_switch_expression] = STATE(3873), - [sym_await_expression] = STATE(3881), - [sym_throw_expression] = STATE(3873), - [sym_element_access_expression] = STATE(2913), - [sym_interpolated_string_expression] = STATE(3873), - [sym_member_access_expression] = STATE(2913), - [sym_object_creation_expression] = STATE(3881), - [sym_parenthesized_expression] = STATE(3881), - [sym__parenthesized_lvalue_expression] = STATE(2913), - [sym_lambda_expression] = STATE(3873), - [sym__lambda_expression_init] = STATE(7721), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3873), - [sym_anonymous_method_expression] = STATE(3873), - [sym_anonymous_object_creation_expression] = STATE(3873), - [sym_implicit_array_creation_expression] = STATE(3873), - [sym_implicit_object_creation_expression] = STATE(3873), - [sym_implicit_stackalloc_expression] = STATE(3873), - [sym_initializer_expression] = STATE(3873), - [sym_default_expression] = STATE(3873), - [sym_with_expression] = STATE(3873), - [sym_sizeof_expression] = STATE(3873), - [sym_typeof_expression] = STATE(3873), - [sym_makeref_expression] = STATE(3873), - [sym_ref_expression] = STATE(3873), - [sym_reftype_expression] = STATE(3873), - [sym_refvalue_expression] = STATE(3873), - [sym_stackalloc_expression] = STATE(3873), - [sym_range_expression] = STATE(3873), - [sym_tuple_expression] = STATE(2913), - [sym_literal] = STATE(3873), - [sym_character_literal] = STATE(3877), - [sym_string_literal] = STATE(3877), - [sym_raw_string_literal] = STATE(3877), - [sym_boolean_literal] = STATE(3877), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3873), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_block] = STATE(3454), + [sym_bracketed_argument_list] = STATE(2816), + [sym__name] = STATE(5879), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2196), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(5040), + [sym_non_lvalue_expression] = STATE(3495), + [sym_lvalue_expression] = STATE(3539), + [sym__expression_statement_expression] = STATE(3462), + [sym_assignment_expression] = STATE(3497), + [sym_binary_expression] = STATE(3462), + [sym_postfix_unary_expression] = STATE(3497), + [sym_prefix_unary_expression] = STATE(3497), + [sym__pointer_indirection_expression] = STATE(2815), + [sym_query_expression] = STATE(3462), + [sym_from_clause] = STATE(6144), + [sym_conditional_expression] = STATE(3462), + [sym_conditional_access_expression] = STATE(3462), + [sym_as_expression] = STATE(3462), + [sym_is_expression] = STATE(3462), + [sym_is_pattern_expression] = STATE(3462), + [sym_cast_expression] = STATE(3462), + [sym_checked_expression] = STATE(3462), + [sym_invocation_expression] = STATE(3497), + [sym_switch_expression] = STATE(3462), + [sym_await_expression] = STATE(3497), + [sym_throw_expression] = STATE(3462), + [sym_element_access_expression] = STATE(2815), + [sym_interpolated_string_expression] = STATE(3462), + [sym_member_access_expression] = STATE(2815), + [sym_object_creation_expression] = STATE(3497), + [sym_parenthesized_expression] = STATE(3497), + [sym__parenthesized_lvalue_expression] = STATE(2815), + [sym_lambda_expression] = STATE(3462), + [sym__lambda_expression_init] = STATE(7681), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3462), + [sym_anonymous_method_expression] = STATE(3462), + [sym_anonymous_object_creation_expression] = STATE(3462), + [sym_implicit_array_creation_expression] = STATE(3462), + [sym_implicit_object_creation_expression] = STATE(3462), + [sym_implicit_stackalloc_expression] = STATE(3462), + [sym_initializer_expression] = STATE(3462), + [sym_default_expression] = STATE(3462), + [sym_with_expression] = STATE(3462), + [sym_sizeof_expression] = STATE(3462), + [sym_typeof_expression] = STATE(3462), + [sym_makeref_expression] = STATE(3462), + [sym_ref_expression] = STATE(3462), + [sym_reftype_expression] = STATE(3462), + [sym_refvalue_expression] = STATE(3462), + [sym_stackalloc_expression] = STATE(3462), + [sym_range_expression] = STATE(3462), + [sym_tuple_expression] = STATE(2815), + [sym_literal] = STATE(3462), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3462), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(734), [sym_preproc_endregion] = STATE(734), [sym_preproc_line] = STATE(734), @@ -165813,48 +165700,47 @@ 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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3382), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3367), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1627), - [anon_sym_LPAREN] = ACTIONS(1629), - [anon_sym_ref] = ACTIONS(1631), - [anon_sym_LBRACE] = ACTIONS(1633), - [anon_sym_delegate] = ACTIONS(1635), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1305), + [anon_sym_LPAREN] = ACTIONS(1721), + [anon_sym_ref] = ACTIONS(1723), + [anon_sym_LBRACE] = ACTIONS(2845), + [anon_sym_delegate] = ACTIONS(1313), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1637), - [anon_sym_readonly] = ACTIONS(2749), + [anon_sym_new] = ACTIONS(1315), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1639), - [anon_sym_BANG] = ACTIONS(1643), - [anon_sym_TILDE] = ACTIONS(1643), - [anon_sym_PLUS_PLUS] = ACTIONS(1643), - [anon_sym_DASH_DASH] = ACTIONS(1643), - [anon_sym_true] = ACTIONS(1645), - [anon_sym_false] = ACTIONS(1645), - [anon_sym_PLUS] = ACTIONS(1641), - [anon_sym_DASH] = ACTIONS(1641), - [anon_sym_STAR] = ACTIONS(1647), - [anon_sym_CARET] = ACTIONS(1643), - [anon_sym_AMP] = ACTIONS(1643), - [anon_sym_this] = ACTIONS(1649), + [anon_sym_checked] = ACTIONS(1317), + [anon_sym_BANG] = ACTIONS(1727), + [anon_sym_TILDE] = ACTIONS(1727), + [anon_sym_PLUS_PLUS] = ACTIONS(1727), + [anon_sym_DASH_DASH] = ACTIONS(1727), + [anon_sym_true] = ACTIONS(77), + [anon_sym_false] = ACTIONS(77), + [anon_sym_PLUS] = ACTIONS(1725), + [anon_sym_DASH] = ACTIONS(1725), + [anon_sym_STAR] = ACTIONS(1729), + [anon_sym_CARET] = ACTIONS(1727), + [anon_sym_AMP] = ACTIONS(1727), + [anon_sym_this] = ACTIONS(1321), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1651), + [anon_sym_base] = ACTIONS(1323), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1653), - [anon_sym_unchecked] = ACTIONS(1639), + [sym_predefined_type] = ACTIONS(91), + [anon_sym_unchecked] = ACTIONS(1317), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1655), - [anon_sym_throw] = ACTIONS(1657), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(1731), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1659), - [anon_sym_DOT_DOT] = ACTIONS(1661), + [anon_sym_await] = ACTIONS(1733), + [anon_sym_DOT_DOT] = ACTIONS(1735), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -165867,19 +165753,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1663), - [anon_sym_sizeof] = ACTIONS(1665), - [anon_sym_typeof] = ACTIONS(1667), - [anon_sym___makeref] = ACTIONS(1669), - [anon_sym___reftype] = ACTIONS(1671), - [anon_sym___refvalue] = ACTIONS(1673), - [sym_null_literal] = ACTIONS(1675), - [anon_sym_SQUOTE] = ACTIONS(1677), - [sym_integer_literal] = ACTIONS(1675), - [sym_real_literal] = ACTIONS(1679), - [anon_sym_DQUOTE] = ACTIONS(1681), - [sym_verbatim_string_literal] = ACTIONS(1679), - [aux_sym_preproc_if_token1] = ACTIONS(1683), + [anon_sym_stackalloc] = ACTIONS(1331), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(1333), + [anon_sym___reftype] = ACTIONS(1335), + [anon_sym___refvalue] = ACTIONS(1337), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_literal] = ACTIONS(143), + [anon_sym_DQUOTE] = ACTIONS(145), + [sym_verbatim_string_literal] = ACTIONS(143), + [aux_sym_preproc_if_token1] = ACTIONS(1339), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -165890,91 +165776,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1685), - [sym_interpolation_verbatim_start] = ACTIONS(1687), - [sym_interpolation_raw_start] = ACTIONS(1689), - [sym_raw_string_start] = ACTIONS(1691), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [sym_interpolation_raw_start] = ACTIONS(155), + [sym_raw_string_start] = ACTIONS(157), }, [735] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_block] = STATE(4812), - [sym_bracketed_argument_list] = STATE(3184), - [sym__name] = STATE(5883), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2313), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2269), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(4435), - [sym_non_lvalue_expression] = STATE(4541), - [sym_lvalue_expression] = STATE(3314), - [sym__expression_statement_expression] = STATE(4529), - [sym_assignment_expression] = STATE(4543), - [sym_binary_expression] = STATE(4529), - [sym_postfix_unary_expression] = STATE(4543), - [sym_prefix_unary_expression] = STATE(4543), - [sym__pointer_indirection_expression] = STATE(3175), - [sym_query_expression] = STATE(4529), - [sym_from_clause] = STATE(6156), - [sym_conditional_expression] = STATE(4529), - [sym_conditional_access_expression] = STATE(4529), - [sym_as_expression] = STATE(4529), - [sym_is_expression] = STATE(4529), - [sym_is_pattern_expression] = STATE(4529), - [sym_cast_expression] = STATE(4529), - [sym_checked_expression] = STATE(4529), - [sym_invocation_expression] = STATE(4543), - [sym_switch_expression] = STATE(4529), - [sym_await_expression] = STATE(4543), - [sym_throw_expression] = STATE(4529), - [sym_element_access_expression] = STATE(3175), - [sym_interpolated_string_expression] = STATE(4529), - [sym_member_access_expression] = STATE(3175), - [sym_object_creation_expression] = STATE(4543), - [sym_parenthesized_expression] = STATE(4543), - [sym__parenthesized_lvalue_expression] = STATE(3175), - [sym_lambda_expression] = STATE(4529), - [sym__lambda_expression_init] = STATE(7552), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(4529), - [sym_anonymous_method_expression] = STATE(4529), - [sym_anonymous_object_creation_expression] = STATE(4529), - [sym_implicit_array_creation_expression] = STATE(4529), - [sym_implicit_object_creation_expression] = STATE(4529), - [sym_implicit_stackalloc_expression] = STATE(4529), - [sym_initializer_expression] = STATE(4529), - [sym_default_expression] = STATE(4529), - [sym_with_expression] = STATE(4529), - [sym_sizeof_expression] = STATE(4529), - [sym_typeof_expression] = STATE(4529), - [sym_makeref_expression] = STATE(4529), - [sym_ref_expression] = STATE(4529), - [sym_reftype_expression] = STATE(4529), - [sym_refvalue_expression] = STATE(4529), - [sym_stackalloc_expression] = STATE(4529), - [sym_range_expression] = STATE(4529), - [sym_tuple_expression] = STATE(3175), - [sym_literal] = STATE(4529), - [sym_character_literal] = STATE(4536), - [sym_string_literal] = STATE(4536), - [sym_raw_string_literal] = STATE(4536), - [sym_boolean_literal] = STATE(4536), - [sym_identifier] = STATE(2246), - [sym__reserved_identifier] = STATE(2240), - [sym_preproc_if_in_expression] = STATE(4529), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(5152), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2196), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(5392), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3356), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3102), + [sym_postfix_unary_expression] = STATE(3079), + [sym_prefix_unary_expression] = STATE(3079), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6134), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3102), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3079), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3102), + [sym_member_access_expression] = STATE(2472), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3079), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7627), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(3102), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3102), + [sym_typeof_expression] = STATE(3102), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2472), + [sym_literal] = STATE(3102), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(735), [sym_preproc_endregion] = STATE(735), [sym_preproc_line] = STATE(735), @@ -165984,217 +165869,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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3363), - [sym__identifier_token] = ACTIONS(1387), - [anon_sym_alias] = ACTIONS(1389), - [anon_sym_global] = ACTIONS(1389), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1391), - [anon_sym_LPAREN] = ACTIONS(1463), - [anon_sym_ref] = ACTIONS(1465), - [anon_sym_LBRACE] = ACTIONS(2861), - [anon_sym_delegate] = ACTIONS(1399), - [anon_sym_async] = ACTIONS(1047), - [anon_sym_file] = ACTIONS(1389), - [anon_sym_new] = ACTIONS(1467), - [anon_sym_where] = ACTIONS(1389), - [anon_sym_notnull] = ACTIONS(1389), - [anon_sym_unmanaged] = ACTIONS(1389), - [anon_sym_checked] = ACTIONS(1403), - [anon_sym_BANG] = ACTIONS(1471), - [anon_sym_TILDE] = ACTIONS(1471), - [anon_sym_PLUS_PLUS] = ACTIONS(1471), - [anon_sym_DASH_DASH] = ACTIONS(1471), - [anon_sym_true] = ACTIONS(1409), - [anon_sym_false] = ACTIONS(1409), - [anon_sym_PLUS] = ACTIONS(1469), - [anon_sym_DASH] = ACTIONS(1469), - [anon_sym_STAR] = ACTIONS(1473), - [anon_sym_CARET] = ACTIONS(1471), - [anon_sym_AMP] = ACTIONS(1471), - [anon_sym_this] = ACTIONS(1413), - [anon_sym_scoped] = ACTIONS(1415), - [anon_sym_base] = ACTIONS(1417), - [anon_sym_var] = ACTIONS(1419), - [sym_predefined_type] = ACTIONS(1421), - [anon_sym_unchecked] = ACTIONS(1403), - [anon_sym_yield] = ACTIONS(1389), - [anon_sym_default] = ACTIONS(1423), - [anon_sym_throw] = ACTIONS(1475), - [anon_sym_when] = ACTIONS(1389), - [anon_sym_await] = ACTIONS(1477), - [anon_sym_DOT_DOT] = ACTIONS(1479), - [anon_sym_from] = ACTIONS(1431), - [anon_sym_into] = ACTIONS(1389), - [anon_sym_join] = ACTIONS(1389), - [anon_sym_on] = ACTIONS(1389), - [anon_sym_equals] = ACTIONS(1389), - [anon_sym_let] = ACTIONS(1389), - [anon_sym_orderby] = ACTIONS(1389), - [anon_sym_ascending] = ACTIONS(1389), - [anon_sym_descending] = ACTIONS(1389), - [anon_sym_group] = ACTIONS(1389), - [anon_sym_by] = ACTIONS(1389), - [anon_sym_select] = ACTIONS(1389), - [anon_sym_stackalloc] = ACTIONS(1433), - [anon_sym_sizeof] = ACTIONS(1435), - [anon_sym_typeof] = ACTIONS(1437), - [anon_sym___makeref] = ACTIONS(1439), - [anon_sym___reftype] = ACTIONS(1441), - [anon_sym___refvalue] = ACTIONS(1443), - [sym_null_literal] = ACTIONS(1445), - [anon_sym_SQUOTE] = ACTIONS(1447), - [sym_integer_literal] = ACTIONS(1445), - [sym_real_literal] = ACTIONS(1449), - [anon_sym_DQUOTE] = ACTIONS(1451), - [sym_verbatim_string_literal] = ACTIONS(1449), - [aux_sym_preproc_if_token1] = ACTIONS(1453), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1455), - [sym_interpolation_verbatim_start] = ACTIONS(1457), - [sym_interpolation_raw_start] = ACTIONS(1459), - [sym_raw_string_start] = ACTIONS(1461), - }, - [736] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_block] = STATE(3430), - [sym_bracketed_argument_list] = STATE(2762), - [sym__name] = STATE(5910), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2204), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(4849), - [sym_non_lvalue_expression] = STATE(3438), - [sym_lvalue_expression] = STATE(3524), - [sym__expression_statement_expression] = STATE(3362), - [sym_assignment_expression] = STATE(3449), - [sym_binary_expression] = STATE(3362), - [sym_postfix_unary_expression] = STATE(3449), - [sym_prefix_unary_expression] = STATE(3449), - [sym__pointer_indirection_expression] = STATE(2747), - [sym_query_expression] = STATE(3362), - [sym_from_clause] = STATE(6174), - [sym_conditional_expression] = STATE(3362), - [sym_conditional_access_expression] = STATE(3362), - [sym_as_expression] = STATE(3362), - [sym_is_expression] = STATE(3362), - [sym_is_pattern_expression] = STATE(3362), - [sym_cast_expression] = STATE(3362), - [sym_checked_expression] = STATE(3362), - [sym_invocation_expression] = STATE(3449), - [sym_switch_expression] = STATE(3362), - [sym_await_expression] = STATE(3449), - [sym_throw_expression] = STATE(3362), - [sym_element_access_expression] = STATE(2747), - [sym_interpolated_string_expression] = STATE(3362), - [sym_member_access_expression] = STATE(2747), - [sym_object_creation_expression] = STATE(3449), - [sym_parenthesized_expression] = STATE(3449), - [sym__parenthesized_lvalue_expression] = STATE(2747), - [sym_lambda_expression] = STATE(3362), - [sym__lambda_expression_init] = STATE(7407), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3362), - [sym_anonymous_method_expression] = STATE(3362), - [sym_anonymous_object_creation_expression] = STATE(3362), - [sym_implicit_array_creation_expression] = STATE(3362), - [sym_implicit_object_creation_expression] = STATE(3362), - [sym_implicit_stackalloc_expression] = STATE(3362), - [sym_initializer_expression] = STATE(3362), - [sym_default_expression] = STATE(3362), - [sym_with_expression] = STATE(3362), - [sym_sizeof_expression] = STATE(3362), - [sym_typeof_expression] = STATE(3362), - [sym_makeref_expression] = STATE(3362), - [sym_ref_expression] = STATE(3362), - [sym_reftype_expression] = STATE(3362), - [sym_refvalue_expression] = STATE(3362), - [sym_stackalloc_expression] = STATE(3362), - [sym_range_expression] = STATE(3362), - [sym_tuple_expression] = STATE(2747), - [sym_literal] = STATE(3362), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3362), - [sym_preproc_if_in_attribute_list] = STATE(5576), - [sym_preproc_region] = STATE(736), - [sym_preproc_endregion] = STATE(736), - [sym_preproc_line] = STATE(736), - [sym_preproc_pragma] = STATE(736), - [sym_preproc_nullable] = STATE(736), - [sym_preproc_error] = STATE(736), - [sym_preproc_warning] = STATE(736), - [sym_preproc_define] = STATE(736), - [sym_preproc_undef] = STATE(736), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3385), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), + [anon_sym_SEMI] = ACTIONS(2895), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1307), - [anon_sym_LPAREN] = ACTIONS(1693), - [anon_sym_ref] = ACTIONS(1695), - [anon_sym_LBRACE] = ACTIONS(2857), - [anon_sym_delegate] = ACTIONS(1315), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1479), + [anon_sym_LPAREN] = ACTIONS(1511), + [anon_sym_ref] = ACTIONS(1513), + [anon_sym_LBRACE] = ACTIONS(1481), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1697), + [anon_sym_new] = ACTIONS(1515), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1319), - [anon_sym_BANG] = ACTIONS(1701), - [anon_sym_TILDE] = ACTIONS(1701), - [anon_sym_PLUS_PLUS] = ACTIONS(1701), - [anon_sym_DASH_DASH] = ACTIONS(1701), + [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(1699), - [anon_sym_DASH] = ACTIONS(1699), - [anon_sym_STAR] = ACTIONS(1351), - [anon_sym_CARET] = ACTIONS(1701), - [anon_sym_AMP] = ACTIONS(1701), - [anon_sym_this] = ACTIONS(1323), + [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(1325), + [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1319), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1703), + [anon_sym_throw] = ACTIONS(1517), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1705), - [anon_sym_DOT_DOT] = ACTIONS(1707), + [anon_sym_await] = ACTIONS(1519), + [anon_sym_DOT_DOT] = ACTIONS(1521), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -166207,19 +165923,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1333), + [anon_sym_stackalloc] = ACTIONS(127), [anon_sym_sizeof] = ACTIONS(129), [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(1335), - [anon_sym___reftype] = ACTIONS(1337), - [anon_sym___refvalue] = ACTIONS(1339), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), [sym_null_literal] = ACTIONS(139), [anon_sym_SQUOTE] = ACTIONS(141), [sym_integer_literal] = ACTIONS(139), [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1709), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -166235,85 +165951,256 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_interpolation_raw_start] = ACTIONS(155), [sym_raw_string_start] = ACTIONS(157), }, + [736] = { + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_block] = STATE(3847), + [sym_bracketed_argument_list] = STATE(2901), + [sym__name] = STATE(5889), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2349), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(3702), + [sym_non_lvalue_expression] = STATE(3685), + [sym_lvalue_expression] = STATE(2985), + [sym__expression_statement_expression] = STATE(3836), + [sym_assignment_expression] = STATE(3689), + [sym_binary_expression] = STATE(3836), + [sym_postfix_unary_expression] = STATE(3689), + [sym_prefix_unary_expression] = STATE(3689), + [sym__pointer_indirection_expression] = STATE(2906), + [sym_query_expression] = STATE(3836), + [sym_from_clause] = STATE(6157), + [sym_conditional_expression] = STATE(3836), + [sym_conditional_access_expression] = STATE(3836), + [sym_as_expression] = STATE(3836), + [sym_is_expression] = STATE(3836), + [sym_is_pattern_expression] = STATE(3836), + [sym_cast_expression] = STATE(3836), + [sym_checked_expression] = STATE(3836), + [sym_invocation_expression] = STATE(3689), + [sym_switch_expression] = STATE(3836), + [sym_await_expression] = STATE(3689), + [sym_throw_expression] = STATE(3836), + [sym_element_access_expression] = STATE(2906), + [sym_interpolated_string_expression] = STATE(3836), + [sym_member_access_expression] = STATE(2906), + [sym_object_creation_expression] = STATE(3689), + [sym_parenthesized_expression] = STATE(3689), + [sym__parenthesized_lvalue_expression] = STATE(2906), + [sym_lambda_expression] = STATE(3836), + [sym__lambda_expression_init] = STATE(7485), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3836), + [sym_anonymous_method_expression] = STATE(3836), + [sym_anonymous_object_creation_expression] = STATE(3836), + [sym_implicit_array_creation_expression] = STATE(3836), + [sym_implicit_object_creation_expression] = STATE(3836), + [sym_implicit_stackalloc_expression] = STATE(3836), + [sym_initializer_expression] = STATE(3836), + [sym_default_expression] = STATE(3836), + [sym_with_expression] = STATE(3836), + [sym_sizeof_expression] = STATE(3836), + [sym_typeof_expression] = STATE(3836), + [sym_makeref_expression] = STATE(3836), + [sym_ref_expression] = STATE(3836), + [sym_reftype_expression] = STATE(3836), + [sym_refvalue_expression] = STATE(3836), + [sym_stackalloc_expression] = STATE(3836), + [sym_range_expression] = STATE(3836), + [sym_tuple_expression] = STATE(2906), + [sym_literal] = STATE(3836), + [sym_character_literal] = STATE(3843), + [sym_string_literal] = STATE(3843), + [sym_raw_string_literal] = STATE(3843), + [sym_boolean_literal] = STATE(3843), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3836), + [sym_preproc_if_in_attribute_list] = STATE(5583), + [sym_preproc_region] = STATE(736), + [sym_preproc_endregion] = STATE(736), + [sym_preproc_line] = STATE(736), + [sym_preproc_pragma] = STATE(736), + [sym_preproc_nullable] = STATE(736), + [sym_preproc_error] = STATE(736), + [sym_preproc_warning] = STATE(736), + [sym_preproc_define] = STATE(736), + [sym_preproc_undef] = STATE(736), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3477), + [sym__identifier_token] = ACTIONS(25), + [anon_sym_alias] = ACTIONS(29), + [anon_sym_global] = ACTIONS(29), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1655), + [anon_sym_LPAREN] = ACTIONS(2043), + [anon_sym_ref] = ACTIONS(2045), + [anon_sym_LBRACE] = ACTIONS(2873), + [anon_sym_delegate] = ACTIONS(1663), + [anon_sym_async] = ACTIONS(1045), + [anon_sym_file] = ACTIONS(29), + [anon_sym_new] = ACTIONS(1759), + [anon_sym_where] = ACTIONS(29), + [anon_sym_notnull] = ACTIONS(29), + [anon_sym_unmanaged] = ACTIONS(29), + [anon_sym_checked] = ACTIONS(1667), + [anon_sym_BANG] = ACTIONS(2049), + [anon_sym_TILDE] = ACTIONS(2049), + [anon_sym_PLUS_PLUS] = ACTIONS(2049), + [anon_sym_DASH_DASH] = ACTIONS(2049), + [anon_sym_true] = ACTIONS(1673), + [anon_sym_false] = ACTIONS(1673), + [anon_sym_PLUS] = ACTIONS(2047), + [anon_sym_DASH] = ACTIONS(2047), + [anon_sym_STAR] = ACTIONS(1765), + [anon_sym_CARET] = ACTIONS(2049), + [anon_sym_AMP] = ACTIONS(2049), + [anon_sym_this] = ACTIONS(1677), + [anon_sym_scoped] = ACTIONS(85), + [anon_sym_base] = ACTIONS(1679), + [anon_sym_var] = ACTIONS(89), + [sym_predefined_type] = ACTIONS(1681), + [anon_sym_unchecked] = ACTIONS(1667), + [anon_sym_yield] = ACTIONS(29), + [anon_sym_default] = ACTIONS(1683), + [anon_sym_throw] = ACTIONS(2051), + [anon_sym_when] = ACTIONS(29), + [anon_sym_await] = ACTIONS(2053), + [anon_sym_DOT_DOT] = ACTIONS(2055), + [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(1691), + [anon_sym_sizeof] = ACTIONS(1693), + [anon_sym_typeof] = ACTIONS(1695), + [anon_sym___makeref] = ACTIONS(1697), + [anon_sym___reftype] = ACTIONS(1699), + [anon_sym___refvalue] = ACTIONS(1701), + [sym_null_literal] = ACTIONS(1703), + [anon_sym_SQUOTE] = ACTIONS(1705), + [sym_integer_literal] = ACTIONS(1703), + [sym_real_literal] = ACTIONS(1707), + [anon_sym_DQUOTE] = ACTIONS(1709), + [sym_verbatim_string_literal] = ACTIONS(1707), + [aux_sym_preproc_if_token1] = ACTIONS(1711), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + [sym_interpolation_regular_start] = ACTIONS(1713), + [sym_interpolation_verbatim_start] = ACTIONS(1715), + [sym_interpolation_raw_start] = ACTIONS(1717), + [sym_raw_string_start] = ACTIONS(1719), + }, [737] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(3184), - [sym__name] = STATE(5883), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2313), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2269), - [sym_type] = STATE(2291), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(4458), - [sym_non_lvalue_expression] = STATE(4541), - [sym_lvalue_expression] = STATE(3314), - [sym__expression_statement_expression] = STATE(4529), - [sym_assignment_expression] = STATE(4543), - [sym_binary_expression] = STATE(4529), - [sym_postfix_unary_expression] = STATE(4543), - [sym_prefix_unary_expression] = STATE(4543), - [sym__pointer_indirection_expression] = STATE(3175), - [sym_query_expression] = STATE(4529), - [sym_from_clause] = STATE(6156), - [sym_conditional_expression] = STATE(4529), - [sym_conditional_access_expression] = STATE(4529), - [sym_as_expression] = STATE(4529), - [sym_is_expression] = STATE(4529), - [sym_is_pattern_expression] = STATE(4529), - [sym_cast_expression] = STATE(4529), - [sym_checked_expression] = STATE(4529), - [sym_invocation_expression] = STATE(4543), - [sym_switch_expression] = STATE(4529), - [sym_await_expression] = STATE(4543), - [sym_throw_expression] = STATE(4529), - [sym_element_access_expression] = STATE(3175), - [sym_interpolated_string_expression] = STATE(4529), - [sym_member_access_expression] = STATE(3175), - [sym_object_creation_expression] = STATE(4543), - [sym_parenthesized_expression] = STATE(4543), - [sym__parenthesized_lvalue_expression] = STATE(3175), - [sym_lambda_expression] = STATE(4529), - [sym__lambda_expression_init] = STATE(7552), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(4529), - [sym_anonymous_method_expression] = STATE(4529), - [sym_anonymous_object_creation_expression] = STATE(4529), - [sym_implicit_array_creation_expression] = STATE(4529), - [sym_implicit_object_creation_expression] = STATE(4529), - [sym_implicit_stackalloc_expression] = STATE(4529), - [sym_initializer_expression] = STATE(4529), - [sym_default_expression] = STATE(4529), - [sym_with_expression] = STATE(4529), - [sym_sizeof_expression] = STATE(4529), - [sym_typeof_expression] = STATE(4529), - [sym_makeref_expression] = STATE(4529), - [sym_ref_expression] = STATE(4529), - [sym_reftype_expression] = STATE(4529), - [sym_refvalue_expression] = STATE(4529), - [sym_stackalloc_expression] = STATE(4529), - [sym_range_expression] = STATE(4529), - [sym_tuple_expression] = STATE(3175), - [sym_literal] = STATE(4529), - [sym_character_literal] = STATE(4536), - [sym_string_literal] = STATE(4536), - [sym_raw_string_literal] = STATE(4536), - [sym_boolean_literal] = STATE(4536), - [sym_identifier] = STATE(2246), - [sym__reserved_identifier] = STATE(2240), - [sym_preproc_if_in_expression] = STATE(4529), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_block] = STATE(3279), + [sym_bracketed_argument_list] = STATE(2603), + [sym__name] = STATE(5870), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2379), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(4701), + [sym_non_lvalue_expression] = STATE(3220), + [sym_lvalue_expression] = STATE(3386), + [sym__expression_statement_expression] = STATE(3236), + [sym_assignment_expression] = STATE(3221), + [sym_binary_expression] = STATE(3236), + [sym_postfix_unary_expression] = STATE(3221), + [sym_prefix_unary_expression] = STATE(3221), + [sym__pointer_indirection_expression] = STATE(2602), + [sym_query_expression] = STATE(3236), + [sym_from_clause] = STATE(6166), + [sym_conditional_expression] = STATE(3236), + [sym_conditional_access_expression] = STATE(3236), + [sym_as_expression] = STATE(3236), + [sym_is_expression] = STATE(3236), + [sym_is_pattern_expression] = STATE(3236), + [sym_cast_expression] = STATE(3236), + [sym_checked_expression] = STATE(3236), + [sym_invocation_expression] = STATE(3221), + [sym_switch_expression] = STATE(3236), + [sym_await_expression] = STATE(3221), + [sym_throw_expression] = STATE(3236), + [sym_element_access_expression] = STATE(2602), + [sym_interpolated_string_expression] = STATE(3236), + [sym_member_access_expression] = STATE(2602), + [sym_object_creation_expression] = STATE(3221), + [sym_parenthesized_expression] = STATE(3221), + [sym__parenthesized_lvalue_expression] = STATE(2602), + [sym_lambda_expression] = STATE(3236), + [sym__lambda_expression_init] = STATE(7418), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3236), + [sym_anonymous_method_expression] = STATE(3236), + [sym_anonymous_object_creation_expression] = STATE(3236), + [sym_implicit_array_creation_expression] = STATE(3236), + [sym_implicit_object_creation_expression] = STATE(3236), + [sym_implicit_stackalloc_expression] = STATE(3236), + [sym_initializer_expression] = STATE(3236), + [sym_default_expression] = STATE(3236), + [sym_with_expression] = STATE(3236), + [sym_sizeof_expression] = STATE(3236), + [sym_typeof_expression] = STATE(3236), + [sym_makeref_expression] = STATE(3236), + [sym_ref_expression] = STATE(3236), + [sym_reftype_expression] = STATE(3236), + [sym_refvalue_expression] = STATE(3236), + [sym_stackalloc_expression] = STATE(3236), + [sym_range_expression] = STATE(3236), + [sym_tuple_expression] = STATE(2602), + [sym_literal] = STATE(3236), + [sym_character_literal] = STATE(3272), + [sym_string_literal] = STATE(3272), + [sym_raw_string_literal] = STATE(3272), + [sym_boolean_literal] = STATE(3272), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3236), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(737), [sym_preproc_endregion] = STATE(737), [sym_preproc_line] = STATE(737), @@ -166323,167 +166210,166 @@ 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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3363), - [sym__identifier_token] = ACTIONS(1387), - [anon_sym_alias] = ACTIONS(1389), - [anon_sym_global] = ACTIONS(1389), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1391), - [anon_sym_LPAREN] = ACTIONS(1463), - [anon_sym_ref] = ACTIONS(1465), - [anon_sym_LBRACE] = ACTIONS(1397), - [anon_sym_delegate] = ACTIONS(1399), - [anon_sym_async] = ACTIONS(1047), - [anon_sym_file] = ACTIONS(1389), - [anon_sym_new] = ACTIONS(1467), - [anon_sym_readonly] = ACTIONS(2749), - [anon_sym_where] = ACTIONS(1389), - [anon_sym_notnull] = ACTIONS(1389), - [anon_sym_unmanaged] = ACTIONS(1389), - [anon_sym_checked] = ACTIONS(1403), - [anon_sym_BANG] = ACTIONS(1471), - [anon_sym_TILDE] = ACTIONS(1471), - [anon_sym_PLUS_PLUS] = ACTIONS(1471), - [anon_sym_DASH_DASH] = ACTIONS(1471), - [anon_sym_true] = ACTIONS(1409), - [anon_sym_false] = ACTIONS(1409), - [anon_sym_PLUS] = ACTIONS(1469), - [anon_sym_DASH] = ACTIONS(1469), - [anon_sym_STAR] = ACTIONS(1473), - [anon_sym_CARET] = ACTIONS(1471), - [anon_sym_AMP] = ACTIONS(1471), - [anon_sym_this] = ACTIONS(1413), - [anon_sym_scoped] = ACTIONS(1415), - [anon_sym_base] = ACTIONS(1417), - [anon_sym_var] = ACTIONS(1419), - [sym_predefined_type] = ACTIONS(1421), - [anon_sym_unchecked] = ACTIONS(1403), - [anon_sym_yield] = ACTIONS(1389), - [anon_sym_default] = ACTIONS(1423), - [anon_sym_throw] = ACTIONS(1475), - [anon_sym_when] = ACTIONS(1389), - [anon_sym_await] = ACTIONS(1477), - [anon_sym_DOT_DOT] = ACTIONS(1479), - [anon_sym_from] = ACTIONS(1431), - [anon_sym_into] = ACTIONS(1389), - [anon_sym_join] = ACTIONS(1389), - [anon_sym_on] = ACTIONS(1389), - [anon_sym_equals] = ACTIONS(1389), - [anon_sym_let] = ACTIONS(1389), - [anon_sym_orderby] = ACTIONS(1389), - [anon_sym_ascending] = ACTIONS(1389), - [anon_sym_descending] = ACTIONS(1389), - [anon_sym_group] = ACTIONS(1389), - [anon_sym_by] = ACTIONS(1389), - [anon_sym_select] = ACTIONS(1389), - [anon_sym_stackalloc] = ACTIONS(1433), - [anon_sym_sizeof] = ACTIONS(1435), - [anon_sym_typeof] = ACTIONS(1437), - [anon_sym___makeref] = ACTIONS(1439), - [anon_sym___reftype] = ACTIONS(1441), - [anon_sym___refvalue] = ACTIONS(1443), - [sym_null_literal] = ACTIONS(1445), - [anon_sym_SQUOTE] = ACTIONS(1447), - [sym_integer_literal] = ACTIONS(1445), - [sym_real_literal] = ACTIONS(1449), - [anon_sym_DQUOTE] = ACTIONS(1451), - [sym_verbatim_string_literal] = ACTIONS(1449), - [aux_sym_preproc_if_token1] = ACTIONS(1453), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1455), - [sym_interpolation_verbatim_start] = ACTIONS(1457), - [sym_interpolation_raw_start] = ACTIONS(1459), - [sym_raw_string_start] = ACTIONS(1461), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3379), + [sym__identifier_token] = ACTIONS(25), + [anon_sym_alias] = ACTIONS(29), + [anon_sym_global] = ACTIONS(29), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1149), + [anon_sym_LPAREN] = ACTIONS(1821), + [anon_sym_ref] = ACTIONS(1823), + [anon_sym_LBRACE] = ACTIONS(2843), + [anon_sym_delegate] = ACTIONS(1157), + [anon_sym_async] = ACTIONS(1045), + [anon_sym_file] = ACTIONS(29), + [anon_sym_new] = ACTIONS(1825), + [anon_sym_where] = ACTIONS(29), + [anon_sym_notnull] = ACTIONS(29), + [anon_sym_unmanaged] = ACTIONS(29), + [anon_sym_checked] = ACTIONS(1163), + [anon_sym_BANG] = ACTIONS(1829), + [anon_sym_TILDE] = ACTIONS(1829), + [anon_sym_PLUS_PLUS] = ACTIONS(1829), + [anon_sym_DASH_DASH] = ACTIONS(1829), + [anon_sym_true] = ACTIONS(1169), + [anon_sym_false] = ACTIONS(1169), + [anon_sym_PLUS] = ACTIONS(1827), + [anon_sym_DASH] = ACTIONS(1827), + [anon_sym_STAR] = ACTIONS(1831), + [anon_sym_CARET] = ACTIONS(1829), + [anon_sym_AMP] = ACTIONS(1829), + [anon_sym_this] = ACTIONS(1173), + [anon_sym_scoped] = ACTIONS(85), + [anon_sym_base] = ACTIONS(1175), + [anon_sym_var] = ACTIONS(89), + [sym_predefined_type] = ACTIONS(1177), + [anon_sym_unchecked] = ACTIONS(1163), + [anon_sym_yield] = ACTIONS(29), + [anon_sym_default] = ACTIONS(1179), + [anon_sym_throw] = ACTIONS(1833), + [anon_sym_when] = ACTIONS(29), + [anon_sym_await] = ACTIONS(1835), + [anon_sym_DOT_DOT] = ACTIONS(1837), + [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(1187), + [anon_sym_sizeof] = ACTIONS(1189), + [anon_sym_typeof] = ACTIONS(1191), + [anon_sym___makeref] = ACTIONS(1193), + [anon_sym___reftype] = ACTIONS(1195), + [anon_sym___refvalue] = ACTIONS(1197), + [sym_null_literal] = ACTIONS(1199), + [anon_sym_SQUOTE] = ACTIONS(1201), + [sym_integer_literal] = ACTIONS(1199), + [sym_real_literal] = ACTIONS(1203), + [anon_sym_DQUOTE] = ACTIONS(1205), + [sym_verbatim_string_literal] = ACTIONS(1203), + [aux_sym_preproc_if_token1] = ACTIONS(1207), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + [sym_interpolation_regular_start] = ACTIONS(1209), + [sym_interpolation_verbatim_start] = ACTIONS(1211), + [sym_interpolation_raw_start] = ACTIONS(1213), + [sym_raw_string_start] = ACTIONS(1215), }, [738] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2762), - [sym__name] = STATE(5910), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2204), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(2291), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(4853), - [sym_non_lvalue_expression] = STATE(3438), - [sym_lvalue_expression] = STATE(3524), - [sym__expression_statement_expression] = STATE(3362), - [sym_assignment_expression] = STATE(3449), - [sym_binary_expression] = STATE(3362), - [sym_postfix_unary_expression] = STATE(3449), - [sym_prefix_unary_expression] = STATE(3449), - [sym__pointer_indirection_expression] = STATE(2747), - [sym_query_expression] = STATE(3362), - [sym_from_clause] = STATE(6174), - [sym_conditional_expression] = STATE(3362), - [sym_conditional_access_expression] = STATE(3362), - [sym_as_expression] = STATE(3362), - [sym_is_expression] = STATE(3362), - [sym_is_pattern_expression] = STATE(3362), - [sym_cast_expression] = STATE(3362), - [sym_checked_expression] = STATE(3362), - [sym_invocation_expression] = STATE(3449), - [sym_switch_expression] = STATE(3362), - [sym_await_expression] = STATE(3449), - [sym_throw_expression] = STATE(3362), - [sym_element_access_expression] = STATE(2747), - [sym_interpolated_string_expression] = STATE(3362), - [sym_member_access_expression] = STATE(2747), - [sym_object_creation_expression] = STATE(3449), - [sym_parenthesized_expression] = STATE(3449), - [sym__parenthesized_lvalue_expression] = STATE(2747), - [sym_lambda_expression] = STATE(3362), - [sym__lambda_expression_init] = STATE(7407), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3362), - [sym_anonymous_method_expression] = STATE(3362), - [sym_anonymous_object_creation_expression] = STATE(3362), - [sym_implicit_array_creation_expression] = STATE(3362), - [sym_implicit_object_creation_expression] = STATE(3362), - [sym_implicit_stackalloc_expression] = STATE(3362), - [sym_initializer_expression] = STATE(3362), - [sym_default_expression] = STATE(3362), - [sym_with_expression] = STATE(3362), - [sym_sizeof_expression] = STATE(3362), - [sym_typeof_expression] = STATE(3362), - [sym_makeref_expression] = STATE(3362), - [sym_ref_expression] = STATE(3362), - [sym_reftype_expression] = STATE(3362), - [sym_refvalue_expression] = STATE(3362), - [sym_stackalloc_expression] = STATE(3362), - [sym_range_expression] = STATE(3362), - [sym_tuple_expression] = STATE(2747), - [sym_literal] = STATE(3362), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3362), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(5152), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2196), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(5398), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3356), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3102), + [sym_postfix_unary_expression] = STATE(3079), + [sym_prefix_unary_expression] = STATE(3079), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6134), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3102), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3079), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3102), + [sym_member_access_expression] = STATE(2472), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3079), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7627), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(3102), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3102), + [sym_typeof_expression] = STATE(3102), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2472), + [sym_literal] = STATE(3102), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(738), [sym_preproc_endregion] = STATE(738), [sym_preproc_line] = STATE(738), @@ -166493,48 +166379,48 @@ 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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3385), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), + [anon_sym_SEMI] = ACTIONS(2897), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1307), - [anon_sym_LPAREN] = ACTIONS(1693), - [anon_sym_ref] = ACTIONS(1695), - [anon_sym_LBRACE] = ACTIONS(1313), - [anon_sym_delegate] = ACTIONS(1315), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1479), + [anon_sym_LPAREN] = ACTIONS(1511), + [anon_sym_ref] = ACTIONS(1513), + [anon_sym_LBRACE] = ACTIONS(1481), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1697), - [anon_sym_readonly] = ACTIONS(2749), + [anon_sym_new] = ACTIONS(1515), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1319), - [anon_sym_BANG] = ACTIONS(1701), - [anon_sym_TILDE] = ACTIONS(1701), - [anon_sym_PLUS_PLUS] = ACTIONS(1701), - [anon_sym_DASH_DASH] = ACTIONS(1701), + [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(1699), - [anon_sym_DASH] = ACTIONS(1699), - [anon_sym_STAR] = ACTIONS(1351), - [anon_sym_CARET] = ACTIONS(1701), - [anon_sym_AMP] = ACTIONS(1701), - [anon_sym_this] = ACTIONS(1323), + [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(1325), + [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1319), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1703), + [anon_sym_throw] = ACTIONS(1517), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1705), - [anon_sym_DOT_DOT] = ACTIONS(1707), + [anon_sym_await] = ACTIONS(1519), + [anon_sym_DOT_DOT] = ACTIONS(1521), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -166547,19 +166433,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1333), + [anon_sym_stackalloc] = ACTIONS(127), [anon_sym_sizeof] = ACTIONS(129), [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(1335), - [anon_sym___reftype] = ACTIONS(1337), - [anon_sym___refvalue] = ACTIONS(1339), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), [sym_null_literal] = ACTIONS(139), [anon_sym_SQUOTE] = ACTIONS(141), [sym_integer_literal] = ACTIONS(139), [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1709), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -166576,85 +166462,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [739] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2914), - [sym__name] = STATE(5873), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2362), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(4036), - [sym_non_lvalue_expression] = STATE(3880), - [sym_lvalue_expression] = STATE(3092), - [sym__expression_statement_expression] = STATE(3873), - [sym_assignment_expression] = STATE(3881), - [sym_binary_expression] = STATE(3873), - [sym_postfix_unary_expression] = STATE(3881), - [sym_prefix_unary_expression] = STATE(3881), - [sym__pointer_indirection_expression] = STATE(2913), - [sym_query_expression] = STATE(3873), - [sym_from_clause] = STATE(6168), - [sym__ordering] = STATE(6335), - [sym_conditional_expression] = STATE(3873), - [sym_conditional_access_expression] = STATE(3873), - [sym_as_expression] = STATE(3873), - [sym_is_expression] = STATE(3873), - [sym_is_pattern_expression] = STATE(3873), - [sym_cast_expression] = STATE(3873), - [sym_checked_expression] = STATE(3873), - [sym_invocation_expression] = STATE(3881), - [sym_switch_expression] = STATE(3873), - [sym_await_expression] = STATE(3881), - [sym_throw_expression] = STATE(3873), - [sym_element_access_expression] = STATE(2913), - [sym_interpolated_string_expression] = STATE(3873), - [sym_member_access_expression] = STATE(2913), - [sym_object_creation_expression] = STATE(3881), - [sym_parenthesized_expression] = STATE(3881), - [sym__parenthesized_lvalue_expression] = STATE(2913), - [sym_lambda_expression] = STATE(3873), - [sym__lambda_expression_init] = STATE(7533), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3873), - [sym_anonymous_method_expression] = STATE(3873), - [sym_anonymous_object_creation_expression] = STATE(3873), - [sym_implicit_array_creation_expression] = STATE(3873), - [sym_implicit_object_creation_expression] = STATE(3873), - [sym_implicit_stackalloc_expression] = STATE(3873), - [sym_initializer_expression] = STATE(3873), - [sym_default_expression] = STATE(3873), - [sym_with_expression] = STATE(3873), - [sym_sizeof_expression] = STATE(3873), - [sym_typeof_expression] = STATE(3873), - [sym_makeref_expression] = STATE(3873), - [sym_ref_expression] = STATE(3873), - [sym_reftype_expression] = STATE(3873), - [sym_refvalue_expression] = STATE(3873), - [sym_stackalloc_expression] = STATE(3873), - [sym_range_expression] = STATE(3873), - [sym_tuple_expression] = STATE(2913), - [sym_literal] = STATE(3873), - [sym_character_literal] = STATE(3877), - [sym_string_literal] = STATE(3877), - [sym_raw_string_literal] = STATE(3877), - [sym_boolean_literal] = STATE(3877), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3873), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_block] = STATE(3847), + [sym_bracketed_argument_list] = STATE(2901), + [sym__name] = STATE(5883), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2359), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(3682), + [sym_non_lvalue_expression] = STATE(3685), + [sym_lvalue_expression] = STATE(2944), + [sym__expression_statement_expression] = STATE(3836), + [sym_assignment_expression] = STATE(3689), + [sym_binary_expression] = STATE(3836), + [sym_postfix_unary_expression] = STATE(3689), + [sym_prefix_unary_expression] = STATE(3689), + [sym__pointer_indirection_expression] = STATE(2906), + [sym_query_expression] = STATE(3836), + [sym_from_clause] = STATE(6139), + [sym_conditional_expression] = STATE(3836), + [sym_conditional_access_expression] = STATE(3836), + [sym_as_expression] = STATE(3836), + [sym_is_expression] = STATE(3836), + [sym_is_pattern_expression] = STATE(3836), + [sym_cast_expression] = STATE(3836), + [sym_checked_expression] = STATE(3836), + [sym_invocation_expression] = STATE(3689), + [sym_switch_expression] = STATE(3836), + [sym_await_expression] = STATE(3689), + [sym_throw_expression] = STATE(3836), + [sym_element_access_expression] = STATE(2906), + [sym_interpolated_string_expression] = STATE(3836), + [sym_member_access_expression] = STATE(2906), + [sym_object_creation_expression] = STATE(3689), + [sym_parenthesized_expression] = STATE(3689), + [sym__parenthesized_lvalue_expression] = STATE(2906), + [sym_lambda_expression] = STATE(3836), + [sym__lambda_expression_init] = STATE(7516), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3836), + [sym_anonymous_method_expression] = STATE(3836), + [sym_anonymous_object_creation_expression] = STATE(3836), + [sym_implicit_array_creation_expression] = STATE(3836), + [sym_implicit_object_creation_expression] = STATE(3836), + [sym_implicit_stackalloc_expression] = STATE(3836), + [sym_initializer_expression] = STATE(3836), + [sym_default_expression] = STATE(3836), + [sym_with_expression] = STATE(3836), + [sym_sizeof_expression] = STATE(3836), + [sym_typeof_expression] = STATE(3836), + [sym_makeref_expression] = STATE(3836), + [sym_ref_expression] = STATE(3836), + [sym_reftype_expression] = STATE(3836), + [sym_refvalue_expression] = STATE(3836), + [sym_stackalloc_expression] = STATE(3836), + [sym_range_expression] = STATE(3836), + [sym_tuple_expression] = STATE(2906), + [sym_literal] = STATE(3836), + [sym_character_literal] = STATE(3843), + [sym_string_literal] = STATE(3843), + [sym_raw_string_literal] = STATE(3843), + [sym_boolean_literal] = STATE(3843), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3836), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(739), [sym_preproc_endregion] = STATE(739), [sym_preproc_line] = STATE(739), @@ -166664,47 +166550,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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3382), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3477), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1627), - [anon_sym_LPAREN] = ACTIONS(1961), - [anon_sym_ref] = ACTIONS(1963), - [anon_sym_LBRACE] = ACTIONS(1633), - [anon_sym_delegate] = ACTIONS(1635), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1655), + [anon_sym_LPAREN] = ACTIONS(1657), + [anon_sym_ref] = ACTIONS(1659), + [anon_sym_LBRACE] = ACTIONS(2873), + [anon_sym_delegate] = ACTIONS(1663), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1637), + [anon_sym_new] = ACTIONS(1665), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1639), - [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(1645), - [anon_sym_false] = ACTIONS(1645), - [anon_sym_PLUS] = ACTIONS(1965), - [anon_sym_DASH] = ACTIONS(1965), - [anon_sym_STAR] = ACTIONS(1647), - [anon_sym_CARET] = ACTIONS(1967), - [anon_sym_AMP] = ACTIONS(1967), - [anon_sym_this] = ACTIONS(1649), + [anon_sym_checked] = ACTIONS(1667), + [anon_sym_BANG] = ACTIONS(1671), + [anon_sym_TILDE] = ACTIONS(1671), + [anon_sym_PLUS_PLUS] = ACTIONS(1671), + [anon_sym_DASH_DASH] = ACTIONS(1671), + [anon_sym_true] = ACTIONS(1673), + [anon_sym_false] = ACTIONS(1673), + [anon_sym_PLUS] = ACTIONS(1669), + [anon_sym_DASH] = ACTIONS(1669), + [anon_sym_STAR] = ACTIONS(1675), + [anon_sym_CARET] = ACTIONS(1671), + [anon_sym_AMP] = ACTIONS(1671), + [anon_sym_this] = ACTIONS(1677), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1651), + [anon_sym_base] = ACTIONS(1679), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1653), - [anon_sym_unchecked] = ACTIONS(1639), + [sym_predefined_type] = ACTIONS(1681), + [anon_sym_unchecked] = ACTIONS(1667), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1655), - [anon_sym_throw] = ACTIONS(1969), + [anon_sym_default] = ACTIONS(1683), + [anon_sym_throw] = ACTIONS(1685), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1971), - [anon_sym_DOT_DOT] = ACTIONS(1973), + [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), @@ -166717,19 +166603,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1663), - [anon_sym_sizeof] = ACTIONS(1665), - [anon_sym_typeof] = ACTIONS(1667), - [anon_sym___makeref] = ACTIONS(1669), - [anon_sym___reftype] = ACTIONS(1671), - [anon_sym___refvalue] = ACTIONS(1673), - [sym_null_literal] = ACTIONS(1675), - [anon_sym_SQUOTE] = ACTIONS(1677), - [sym_integer_literal] = ACTIONS(1675), - [sym_real_literal] = ACTIONS(1679), - [anon_sym_DQUOTE] = ACTIONS(1681), - [sym_verbatim_string_literal] = ACTIONS(1679), - [aux_sym_preproc_if_token1] = ACTIONS(1683), + [anon_sym_stackalloc] = ACTIONS(1691), + [anon_sym_sizeof] = ACTIONS(1693), + [anon_sym_typeof] = ACTIONS(1695), + [anon_sym___makeref] = ACTIONS(1697), + [anon_sym___reftype] = ACTIONS(1699), + [anon_sym___refvalue] = ACTIONS(1701), + [sym_null_literal] = ACTIONS(1703), + [anon_sym_SQUOTE] = ACTIONS(1705), + [sym_integer_literal] = ACTIONS(1703), + [sym_real_literal] = ACTIONS(1707), + [anon_sym_DQUOTE] = ACTIONS(1709), + [sym_verbatim_string_literal] = ACTIONS(1707), + [aux_sym_preproc_if_token1] = ACTIONS(1711), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -166740,91 +166626,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1685), - [sym_interpolation_verbatim_start] = ACTIONS(1687), - [sym_interpolation_raw_start] = ACTIONS(1689), - [sym_raw_string_start] = ACTIONS(1691), + [sym_interpolation_regular_start] = ACTIONS(1713), + [sym_interpolation_verbatim_start] = ACTIONS(1715), + [sym_interpolation_raw_start] = ACTIONS(1717), + [sym_raw_string_start] = ACTIONS(1719), }, [740] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_block] = STATE(3702), - [sym_bracketed_argument_list] = STATE(2914), - [sym__name] = STATE(5885), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2357), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(3636), - [sym_non_lvalue_expression] = STATE(3880), - [sym_lvalue_expression] = STATE(2911), - [sym__expression_statement_expression] = STATE(3873), - [sym_assignment_expression] = STATE(3881), - [sym_binary_expression] = STATE(3873), - [sym_postfix_unary_expression] = STATE(3881), - [sym_prefix_unary_expression] = STATE(3881), - [sym__pointer_indirection_expression] = STATE(2913), - [sym_query_expression] = STATE(3873), - [sym_from_clause] = STATE(6182), - [sym_conditional_expression] = STATE(3873), - [sym_conditional_access_expression] = STATE(3873), - [sym_as_expression] = STATE(3873), - [sym_is_expression] = STATE(3873), - [sym_is_pattern_expression] = STATE(3873), - [sym_cast_expression] = STATE(3873), - [sym_checked_expression] = STATE(3873), - [sym_invocation_expression] = STATE(3881), - [sym_switch_expression] = STATE(3873), - [sym_await_expression] = STATE(3881), - [sym_throw_expression] = STATE(3873), - [sym_element_access_expression] = STATE(2913), - [sym_interpolated_string_expression] = STATE(3873), - [sym_member_access_expression] = STATE(2913), - [sym_object_creation_expression] = STATE(3881), - [sym_parenthesized_expression] = STATE(3881), - [sym__parenthesized_lvalue_expression] = STATE(2913), - [sym_lambda_expression] = STATE(3873), - [sym__lambda_expression_init] = STATE(7316), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3873), - [sym_anonymous_method_expression] = STATE(3873), - [sym_anonymous_object_creation_expression] = STATE(3873), - [sym_implicit_array_creation_expression] = STATE(3873), - [sym_implicit_object_creation_expression] = STATE(3873), - [sym_implicit_stackalloc_expression] = STATE(3873), - [sym_initializer_expression] = STATE(3873), - [sym_default_expression] = STATE(3873), - [sym_with_expression] = STATE(3873), - [sym_sizeof_expression] = STATE(3873), - [sym_typeof_expression] = STATE(3873), - [sym_makeref_expression] = STATE(3873), - [sym_ref_expression] = STATE(3873), - [sym_reftype_expression] = STATE(3873), - [sym_refvalue_expression] = STATE(3873), - [sym_stackalloc_expression] = STATE(3873), - [sym_range_expression] = STATE(3873), - [sym_tuple_expression] = STATE(2913), - [sym_literal] = STATE(3873), - [sym_character_literal] = STATE(3877), - [sym_string_literal] = STATE(3877), - [sym_raw_string_literal] = STATE(3877), - [sym_boolean_literal] = STATE(3877), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3873), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(5152), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2196), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(2279), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(4615), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3356), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3102), + [sym_postfix_unary_expression] = STATE(3079), + [sym_prefix_unary_expression] = STATE(3079), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6134), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3102), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3079), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3102), + [sym_member_access_expression] = STATE(2472), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3079), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7627), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(3102), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3102), + [sym_typeof_expression] = STATE(3102), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2472), + [sym_literal] = STATE(3102), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(740), [sym_preproc_endregion] = STATE(740), [sym_preproc_line] = STATE(740), @@ -166834,47 +166719,48 @@ 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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3382), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1627), - [anon_sym_LPAREN] = ACTIONS(1727), - [anon_sym_ref] = ACTIONS(1729), - [anon_sym_LBRACE] = ACTIONS(2873), - [anon_sym_delegate] = ACTIONS(1635), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1479), + [anon_sym_LPAREN] = ACTIONS(1511), + [anon_sym_ref] = ACTIONS(1513), + [anon_sym_LBRACE] = ACTIONS(1481), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1731), + [anon_sym_new] = ACTIONS(1515), + [anon_sym_readonly] = ACTIONS(2767), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1639), - [anon_sym_BANG] = ACTIONS(1735), - [anon_sym_TILDE] = ACTIONS(1735), - [anon_sym_PLUS_PLUS] = ACTIONS(1735), - [anon_sym_DASH_DASH] = ACTIONS(1735), - [anon_sym_true] = ACTIONS(1645), - [anon_sym_false] = ACTIONS(1645), - [anon_sym_PLUS] = ACTIONS(1733), - [anon_sym_DASH] = ACTIONS(1733), - [anon_sym_STAR] = ACTIONS(1737), - [anon_sym_CARET] = ACTIONS(1735), - [anon_sym_AMP] = ACTIONS(1735), - [anon_sym_this] = ACTIONS(1649), + [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(1651), + [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1653), - [anon_sym_unchecked] = ACTIONS(1639), + [sym_predefined_type] = ACTIONS(91), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1655), - [anon_sym_throw] = ACTIONS(1739), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(1517), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1741), - [anon_sym_DOT_DOT] = ACTIONS(1743), + [anon_sym_await] = ACTIONS(1519), + [anon_sym_DOT_DOT] = ACTIONS(1521), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -166887,19 +166773,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1663), - [anon_sym_sizeof] = ACTIONS(1665), - [anon_sym_typeof] = ACTIONS(1667), - [anon_sym___makeref] = ACTIONS(1669), - [anon_sym___reftype] = ACTIONS(1671), - [anon_sym___refvalue] = ACTIONS(1673), - [sym_null_literal] = ACTIONS(1675), - [anon_sym_SQUOTE] = ACTIONS(1677), - [sym_integer_literal] = ACTIONS(1675), - [sym_real_literal] = ACTIONS(1679), - [anon_sym_DQUOTE] = ACTIONS(1681), - [sym_verbatim_string_literal] = ACTIONS(1679), - [aux_sym_preproc_if_token1] = ACTIONS(1683), + [anon_sym_stackalloc] = ACTIONS(127), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_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), @@ -166910,90 +166796,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1685), - [sym_interpolation_verbatim_start] = ACTIONS(1687), - [sym_interpolation_raw_start] = ACTIONS(1689), - [sym_raw_string_start] = ACTIONS(1691), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [sym_interpolation_raw_start] = ACTIONS(155), + [sym_raw_string_start] = ACTIONS(157), }, [741] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2914), - [sym__name] = STATE(5885), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2357), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(2291), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(3648), - [sym_non_lvalue_expression] = STATE(3880), - [sym_lvalue_expression] = STATE(2911), - [sym__expression_statement_expression] = STATE(3873), - [sym_assignment_expression] = STATE(3881), - [sym_binary_expression] = STATE(3873), - [sym_postfix_unary_expression] = STATE(3881), - [sym_prefix_unary_expression] = STATE(3881), - [sym__pointer_indirection_expression] = STATE(2913), - [sym_query_expression] = STATE(3873), - [sym_from_clause] = STATE(6182), - [sym_conditional_expression] = STATE(3873), - [sym_conditional_access_expression] = STATE(3873), - [sym_as_expression] = STATE(3873), - [sym_is_expression] = STATE(3873), - [sym_is_pattern_expression] = STATE(3873), - [sym_cast_expression] = STATE(3873), - [sym_checked_expression] = STATE(3873), - [sym_invocation_expression] = STATE(3881), - [sym_switch_expression] = STATE(3873), - [sym_await_expression] = STATE(3881), - [sym_throw_expression] = STATE(3873), - [sym_element_access_expression] = STATE(2913), - [sym_interpolated_string_expression] = STATE(3873), - [sym_member_access_expression] = STATE(2913), - [sym_object_creation_expression] = STATE(3881), - [sym_parenthesized_expression] = STATE(3881), - [sym__parenthesized_lvalue_expression] = STATE(2913), - [sym_lambda_expression] = STATE(3873), - [sym__lambda_expression_init] = STATE(7316), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3873), - [sym_anonymous_method_expression] = STATE(3873), - [sym_anonymous_object_creation_expression] = STATE(3873), - [sym_implicit_array_creation_expression] = STATE(3873), - [sym_implicit_object_creation_expression] = STATE(3873), - [sym_implicit_stackalloc_expression] = STATE(3873), - [sym_initializer_expression] = STATE(3873), - [sym_default_expression] = STATE(3873), - [sym_with_expression] = STATE(3873), - [sym_sizeof_expression] = STATE(3873), - [sym_typeof_expression] = STATE(3873), - [sym_makeref_expression] = STATE(3873), - [sym_ref_expression] = STATE(3873), - [sym_reftype_expression] = STATE(3873), - [sym_refvalue_expression] = STATE(3873), - [sym_stackalloc_expression] = STATE(3873), - [sym_range_expression] = STATE(3873), - [sym_tuple_expression] = STATE(2913), - [sym_literal] = STATE(3873), - [sym_character_literal] = STATE(3877), - [sym_string_literal] = STATE(3877), - [sym_raw_string_literal] = STATE(3877), - [sym_boolean_literal] = STATE(3877), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3873), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2816), + [sym__name] = STATE(5879), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2196), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(2279), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(5043), + [sym_non_lvalue_expression] = STATE(3495), + [sym_lvalue_expression] = STATE(3539), + [sym__expression_statement_expression] = STATE(3462), + [sym_assignment_expression] = STATE(3497), + [sym_binary_expression] = STATE(3462), + [sym_postfix_unary_expression] = STATE(3497), + [sym_prefix_unary_expression] = STATE(3497), + [sym__pointer_indirection_expression] = STATE(2815), + [sym_query_expression] = STATE(3462), + [sym_from_clause] = STATE(6144), + [sym_conditional_expression] = STATE(3462), + [sym_conditional_access_expression] = STATE(3462), + [sym_as_expression] = STATE(3462), + [sym_is_expression] = STATE(3462), + [sym_is_pattern_expression] = STATE(3462), + [sym_cast_expression] = STATE(3462), + [sym_checked_expression] = STATE(3462), + [sym_invocation_expression] = STATE(3497), + [sym_switch_expression] = STATE(3462), + [sym_await_expression] = STATE(3497), + [sym_throw_expression] = STATE(3462), + [sym_element_access_expression] = STATE(2815), + [sym_interpolated_string_expression] = STATE(3462), + [sym_member_access_expression] = STATE(2815), + [sym_object_creation_expression] = STATE(3497), + [sym_parenthesized_expression] = STATE(3497), + [sym__parenthesized_lvalue_expression] = STATE(2815), + [sym_lambda_expression] = STATE(3462), + [sym__lambda_expression_init] = STATE(7681), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3462), + [sym_anonymous_method_expression] = STATE(3462), + [sym_anonymous_object_creation_expression] = STATE(3462), + [sym_implicit_array_creation_expression] = STATE(3462), + [sym_implicit_object_creation_expression] = STATE(3462), + [sym_implicit_stackalloc_expression] = STATE(3462), + [sym_initializer_expression] = STATE(3462), + [sym_default_expression] = STATE(3462), + [sym_with_expression] = STATE(3462), + [sym_sizeof_expression] = STATE(3462), + [sym_typeof_expression] = STATE(3462), + [sym_makeref_expression] = STATE(3462), + [sym_ref_expression] = STATE(3462), + [sym_reftype_expression] = STATE(3462), + [sym_refvalue_expression] = STATE(3462), + [sym_stackalloc_expression] = STATE(3462), + [sym_range_expression] = STATE(3462), + [sym_tuple_expression] = STATE(2815), + [sym_literal] = STATE(3462), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3462), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(741), [sym_preproc_endregion] = STATE(741), [sym_preproc_line] = STATE(741), @@ -167003,48 +166889,48 @@ 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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3382), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3367), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1627), - [anon_sym_LPAREN] = ACTIONS(1727), - [anon_sym_ref] = ACTIONS(1729), - [anon_sym_LBRACE] = ACTIONS(1633), - [anon_sym_delegate] = ACTIONS(1635), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1305), + [anon_sym_LPAREN] = ACTIONS(1721), + [anon_sym_ref] = ACTIONS(1723), + [anon_sym_LBRACE] = ACTIONS(1311), + [anon_sym_delegate] = ACTIONS(1313), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1731), - [anon_sym_readonly] = ACTIONS(2749), + [anon_sym_new] = ACTIONS(1315), + [anon_sym_readonly] = ACTIONS(2767), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1639), - [anon_sym_BANG] = ACTIONS(1735), - [anon_sym_TILDE] = ACTIONS(1735), - [anon_sym_PLUS_PLUS] = ACTIONS(1735), - [anon_sym_DASH_DASH] = ACTIONS(1735), - [anon_sym_true] = ACTIONS(1645), - [anon_sym_false] = ACTIONS(1645), - [anon_sym_PLUS] = ACTIONS(1733), - [anon_sym_DASH] = ACTIONS(1733), - [anon_sym_STAR] = ACTIONS(1737), - [anon_sym_CARET] = ACTIONS(1735), - [anon_sym_AMP] = ACTIONS(1735), - [anon_sym_this] = ACTIONS(1649), + [anon_sym_checked] = ACTIONS(1317), + [anon_sym_BANG] = ACTIONS(1727), + [anon_sym_TILDE] = ACTIONS(1727), + [anon_sym_PLUS_PLUS] = ACTIONS(1727), + [anon_sym_DASH_DASH] = ACTIONS(1727), + [anon_sym_true] = ACTIONS(77), + [anon_sym_false] = ACTIONS(77), + [anon_sym_PLUS] = ACTIONS(1725), + [anon_sym_DASH] = ACTIONS(1725), + [anon_sym_STAR] = ACTIONS(1729), + [anon_sym_CARET] = ACTIONS(1727), + [anon_sym_AMP] = ACTIONS(1727), + [anon_sym_this] = ACTIONS(1321), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1651), + [anon_sym_base] = ACTIONS(1323), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1653), - [anon_sym_unchecked] = ACTIONS(1639), + [sym_predefined_type] = ACTIONS(91), + [anon_sym_unchecked] = ACTIONS(1317), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1655), - [anon_sym_throw] = ACTIONS(1739), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(1731), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1741), - [anon_sym_DOT_DOT] = ACTIONS(1743), + [anon_sym_await] = ACTIONS(1733), + [anon_sym_DOT_DOT] = ACTIONS(1735), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -167057,19 +166943,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1663), - [anon_sym_sizeof] = ACTIONS(1665), - [anon_sym_typeof] = ACTIONS(1667), - [anon_sym___makeref] = ACTIONS(1669), - [anon_sym___reftype] = ACTIONS(1671), - [anon_sym___refvalue] = ACTIONS(1673), - [sym_null_literal] = ACTIONS(1675), - [anon_sym_SQUOTE] = ACTIONS(1677), - [sym_integer_literal] = ACTIONS(1675), - [sym_real_literal] = ACTIONS(1679), - [anon_sym_DQUOTE] = ACTIONS(1681), - [sym_verbatim_string_literal] = ACTIONS(1679), - [aux_sym_preproc_if_token1] = ACTIONS(1683), + [anon_sym_stackalloc] = ACTIONS(1331), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(1333), + [anon_sym___reftype] = ACTIONS(1335), + [anon_sym___refvalue] = ACTIONS(1337), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_literal] = ACTIONS(143), + [anon_sym_DQUOTE] = ACTIONS(145), + [sym_verbatim_string_literal] = ACTIONS(143), + [aux_sym_preproc_if_token1] = ACTIONS(1339), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -167080,90 +166966,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1685), - [sym_interpolation_verbatim_start] = ACTIONS(1687), - [sym_interpolation_raw_start] = ACTIONS(1689), - [sym_raw_string_start] = ACTIONS(1691), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [sym_interpolation_raw_start] = ACTIONS(155), + [sym_raw_string_start] = ACTIONS(157), }, [742] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(3184), - [sym__name] = STATE(5883), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2313), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2269), - [sym_type] = STATE(2291), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(4857), - [sym_non_lvalue_expression] = STATE(4541), - [sym_lvalue_expression] = STATE(3527), - [sym__expression_statement_expression] = STATE(4529), - [sym_assignment_expression] = STATE(4543), - [sym_binary_expression] = STATE(4529), - [sym_postfix_unary_expression] = STATE(4543), - [sym_prefix_unary_expression] = STATE(4543), - [sym__pointer_indirection_expression] = STATE(3175), - [sym_query_expression] = STATE(4529), - [sym_from_clause] = STATE(6169), - [sym_conditional_expression] = STATE(4529), - [sym_conditional_access_expression] = STATE(4529), - [sym_as_expression] = STATE(4529), - [sym_is_expression] = STATE(4529), - [sym_is_pattern_expression] = STATE(4529), - [sym_cast_expression] = STATE(4529), - [sym_checked_expression] = STATE(4529), - [sym_invocation_expression] = STATE(4543), - [sym_switch_expression] = STATE(4529), - [sym_await_expression] = STATE(4543), - [sym_throw_expression] = STATE(4529), - [sym_element_access_expression] = STATE(3175), - [sym_interpolated_string_expression] = STATE(4529), - [sym_member_access_expression] = STATE(3175), - [sym_object_creation_expression] = STATE(4543), - [sym_parenthesized_expression] = STATE(4543), - [sym__parenthesized_lvalue_expression] = STATE(3175), - [sym_lambda_expression] = STATE(4529), - [sym__lambda_expression_init] = STATE(7337), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(4529), - [sym_anonymous_method_expression] = STATE(4529), - [sym_anonymous_object_creation_expression] = STATE(4529), - [sym_implicit_array_creation_expression] = STATE(4529), - [sym_implicit_object_creation_expression] = STATE(4529), - [sym_implicit_stackalloc_expression] = STATE(4529), - [sym_initializer_expression] = STATE(4529), - [sym_default_expression] = STATE(4529), - [sym_with_expression] = STATE(4529), - [sym_sizeof_expression] = STATE(4529), - [sym_typeof_expression] = STATE(4529), - [sym_makeref_expression] = STATE(4529), - [sym_ref_expression] = STATE(4529), - [sym_reftype_expression] = STATE(4529), - [sym_refvalue_expression] = STATE(4529), - [sym_stackalloc_expression] = STATE(4529), - [sym_range_expression] = STATE(4529), - [sym_tuple_expression] = STATE(3175), - [sym_literal] = STATE(4529), - [sym_character_literal] = STATE(4536), - [sym_string_literal] = STATE(4536), - [sym_raw_string_literal] = STATE(4536), - [sym_boolean_literal] = STATE(4536), - [sym_identifier] = STATE(2246), - [sym__reserved_identifier] = STATE(2240), - [sym_preproc_if_in_expression] = STATE(4529), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2603), + [sym__name] = STATE(5870), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2379), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(2279), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(4703), + [sym_non_lvalue_expression] = STATE(3220), + [sym_lvalue_expression] = STATE(3386), + [sym__expression_statement_expression] = STATE(3236), + [sym_assignment_expression] = STATE(3221), + [sym_binary_expression] = STATE(3236), + [sym_postfix_unary_expression] = STATE(3221), + [sym_prefix_unary_expression] = STATE(3221), + [sym__pointer_indirection_expression] = STATE(2602), + [sym_query_expression] = STATE(3236), + [sym_from_clause] = STATE(6166), + [sym_conditional_expression] = STATE(3236), + [sym_conditional_access_expression] = STATE(3236), + [sym_as_expression] = STATE(3236), + [sym_is_expression] = STATE(3236), + [sym_is_pattern_expression] = STATE(3236), + [sym_cast_expression] = STATE(3236), + [sym_checked_expression] = STATE(3236), + [sym_invocation_expression] = STATE(3221), + [sym_switch_expression] = STATE(3236), + [sym_await_expression] = STATE(3221), + [sym_throw_expression] = STATE(3236), + [sym_element_access_expression] = STATE(2602), + [sym_interpolated_string_expression] = STATE(3236), + [sym_member_access_expression] = STATE(2602), + [sym_object_creation_expression] = STATE(3221), + [sym_parenthesized_expression] = STATE(3221), + [sym__parenthesized_lvalue_expression] = STATE(2602), + [sym_lambda_expression] = STATE(3236), + [sym__lambda_expression_init] = STATE(7418), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3236), + [sym_anonymous_method_expression] = STATE(3236), + [sym_anonymous_object_creation_expression] = STATE(3236), + [sym_implicit_array_creation_expression] = STATE(3236), + [sym_implicit_object_creation_expression] = STATE(3236), + [sym_implicit_stackalloc_expression] = STATE(3236), + [sym_initializer_expression] = STATE(3236), + [sym_default_expression] = STATE(3236), + [sym_with_expression] = STATE(3236), + [sym_sizeof_expression] = STATE(3236), + [sym_typeof_expression] = STATE(3236), + [sym_makeref_expression] = STATE(3236), + [sym_ref_expression] = STATE(3236), + [sym_reftype_expression] = STATE(3236), + [sym_refvalue_expression] = STATE(3236), + [sym_stackalloc_expression] = STATE(3236), + [sym_range_expression] = STATE(3236), + [sym_tuple_expression] = STATE(2602), + [sym_literal] = STATE(3236), + [sym_character_literal] = STATE(3272), + [sym_string_literal] = STATE(3272), + [sym_raw_string_literal] = STATE(3272), + [sym_boolean_literal] = STATE(3272), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3236), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(742), [sym_preproc_endregion] = STATE(742), [sym_preproc_line] = STATE(742), @@ -167173,168 +167059,167 @@ 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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3363), - [sym__identifier_token] = ACTIONS(1387), - [anon_sym_alias] = ACTIONS(1389), - [anon_sym_global] = ACTIONS(1389), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1391), - [anon_sym_LPAREN] = ACTIONS(1745), - [anon_sym_ref] = ACTIONS(1747), - [anon_sym_LBRACE] = ACTIONS(1397), - [anon_sym_delegate] = ACTIONS(1399), - [anon_sym_async] = ACTIONS(1047), - [anon_sym_file] = ACTIONS(1389), - [anon_sym_new] = ACTIONS(1467), - [anon_sym_readonly] = ACTIONS(2749), - [anon_sym_where] = ACTIONS(1389), - [anon_sym_notnull] = ACTIONS(1389), - [anon_sym_unmanaged] = ACTIONS(1389), - [anon_sym_checked] = ACTIONS(1403), - [anon_sym_BANG] = ACTIONS(1751), - [anon_sym_TILDE] = ACTIONS(1751), - [anon_sym_PLUS_PLUS] = ACTIONS(1751), - [anon_sym_DASH_DASH] = ACTIONS(1751), - [anon_sym_true] = ACTIONS(1409), - [anon_sym_false] = ACTIONS(1409), - [anon_sym_PLUS] = ACTIONS(1749), - [anon_sym_DASH] = ACTIONS(1749), - [anon_sym_STAR] = ACTIONS(1473), - [anon_sym_CARET] = ACTIONS(1751), - [anon_sym_AMP] = ACTIONS(1751), - [anon_sym_this] = ACTIONS(1413), - [anon_sym_scoped] = ACTIONS(1415), - [anon_sym_base] = ACTIONS(1417), - [anon_sym_var] = ACTIONS(1419), - [sym_predefined_type] = ACTIONS(1421), - [anon_sym_unchecked] = ACTIONS(1403), - [anon_sym_yield] = ACTIONS(1389), - [anon_sym_default] = ACTIONS(1423), - [anon_sym_throw] = ACTIONS(1753), - [anon_sym_when] = ACTIONS(1389), - [anon_sym_await] = ACTIONS(1755), - [anon_sym_DOT_DOT] = ACTIONS(1757), - [anon_sym_from] = ACTIONS(1431), - [anon_sym_into] = ACTIONS(1389), - [anon_sym_join] = ACTIONS(1389), - [anon_sym_on] = ACTIONS(1389), - [anon_sym_equals] = ACTIONS(1389), - [anon_sym_let] = ACTIONS(1389), - [anon_sym_orderby] = ACTIONS(1389), - [anon_sym_ascending] = ACTIONS(1389), - [anon_sym_descending] = ACTIONS(1389), - [anon_sym_group] = ACTIONS(1389), - [anon_sym_by] = ACTIONS(1389), - [anon_sym_select] = ACTIONS(1389), - [anon_sym_stackalloc] = ACTIONS(1433), - [anon_sym_sizeof] = ACTIONS(1435), - [anon_sym_typeof] = ACTIONS(1437), - [anon_sym___makeref] = ACTIONS(1439), - [anon_sym___reftype] = ACTIONS(1441), - [anon_sym___refvalue] = ACTIONS(1443), - [sym_null_literal] = ACTIONS(1445), - [anon_sym_SQUOTE] = ACTIONS(1447), - [sym_integer_literal] = ACTIONS(1445), - [sym_real_literal] = ACTIONS(1449), - [anon_sym_DQUOTE] = ACTIONS(1451), - [sym_verbatim_string_literal] = ACTIONS(1449), - [aux_sym_preproc_if_token1] = ACTIONS(1453), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1455), - [sym_interpolation_verbatim_start] = ACTIONS(1457), - [sym_interpolation_raw_start] = ACTIONS(1459), - [sym_raw_string_start] = ACTIONS(1461), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3379), + [sym__identifier_token] = ACTIONS(25), + [anon_sym_alias] = ACTIONS(29), + [anon_sym_global] = ACTIONS(29), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1149), + [anon_sym_LPAREN] = ACTIONS(1821), + [anon_sym_ref] = ACTIONS(1823), + [anon_sym_LBRACE] = ACTIONS(1155), + [anon_sym_delegate] = ACTIONS(1157), + [anon_sym_async] = ACTIONS(1045), + [anon_sym_file] = ACTIONS(29), + [anon_sym_new] = ACTIONS(1825), + [anon_sym_readonly] = ACTIONS(2767), + [anon_sym_where] = ACTIONS(29), + [anon_sym_notnull] = ACTIONS(29), + [anon_sym_unmanaged] = ACTIONS(29), + [anon_sym_checked] = ACTIONS(1163), + [anon_sym_BANG] = ACTIONS(1829), + [anon_sym_TILDE] = ACTIONS(1829), + [anon_sym_PLUS_PLUS] = ACTIONS(1829), + [anon_sym_DASH_DASH] = ACTIONS(1829), + [anon_sym_true] = ACTIONS(1169), + [anon_sym_false] = ACTIONS(1169), + [anon_sym_PLUS] = ACTIONS(1827), + [anon_sym_DASH] = ACTIONS(1827), + [anon_sym_STAR] = ACTIONS(1831), + [anon_sym_CARET] = ACTIONS(1829), + [anon_sym_AMP] = ACTIONS(1829), + [anon_sym_this] = ACTIONS(1173), + [anon_sym_scoped] = ACTIONS(85), + [anon_sym_base] = ACTIONS(1175), + [anon_sym_var] = ACTIONS(89), + [sym_predefined_type] = ACTIONS(1177), + [anon_sym_unchecked] = ACTIONS(1163), + [anon_sym_yield] = ACTIONS(29), + [anon_sym_default] = ACTIONS(1179), + [anon_sym_throw] = ACTIONS(1833), + [anon_sym_when] = ACTIONS(29), + [anon_sym_await] = ACTIONS(1835), + [anon_sym_DOT_DOT] = ACTIONS(1837), + [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(1187), + [anon_sym_sizeof] = ACTIONS(1189), + [anon_sym_typeof] = ACTIONS(1191), + [anon_sym___makeref] = ACTIONS(1193), + [anon_sym___reftype] = ACTIONS(1195), + [anon_sym___refvalue] = ACTIONS(1197), + [sym_null_literal] = ACTIONS(1199), + [anon_sym_SQUOTE] = ACTIONS(1201), + [sym_integer_literal] = ACTIONS(1199), + [sym_real_literal] = ACTIONS(1203), + [anon_sym_DQUOTE] = ACTIONS(1205), + [sym_verbatim_string_literal] = ACTIONS(1203), + [aux_sym_preproc_if_token1] = ACTIONS(1207), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + [sym_interpolation_regular_start] = ACTIONS(1209), + [sym_interpolation_verbatim_start] = ACTIONS(1211), + [sym_interpolation_raw_start] = ACTIONS(1213), + [sym_raw_string_start] = ACTIONS(1215), }, [743] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_block] = STATE(4812), - [sym_bracketed_argument_list] = STATE(3184), - [sym__name] = STATE(5906), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2312), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2269), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(4271), - [sym_non_lvalue_expression] = STATE(4541), - [sym_lvalue_expression] = STATE(3165), - [sym__expression_statement_expression] = STATE(4529), - [sym_assignment_expression] = STATE(4543), - [sym_binary_expression] = STATE(4529), - [sym_postfix_unary_expression] = STATE(4543), - [sym_prefix_unary_expression] = STATE(4543), - [sym__pointer_indirection_expression] = STATE(3175), - [sym_query_expression] = STATE(4529), - [sym_from_clause] = STATE(6156), - [sym_conditional_expression] = STATE(4529), - [sym_conditional_access_expression] = STATE(4529), - [sym_as_expression] = STATE(4529), - [sym_is_expression] = STATE(4529), - [sym_is_pattern_expression] = STATE(4529), - [sym_cast_expression] = STATE(4529), - [sym_checked_expression] = STATE(4529), - [sym_invocation_expression] = STATE(4543), - [sym_switch_expression] = STATE(4529), - [sym_await_expression] = STATE(4543), - [sym_throw_expression] = STATE(4529), - [sym_element_access_expression] = STATE(3175), - [sym_interpolated_string_expression] = STATE(4529), - [sym_member_access_expression] = STATE(3175), - [sym_object_creation_expression] = STATE(4543), - [sym_parenthesized_expression] = STATE(4543), - [sym__parenthesized_lvalue_expression] = STATE(3175), - [sym_lambda_expression] = STATE(4529), - [sym__lambda_expression_init] = STATE(7341), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(4529), - [sym_anonymous_method_expression] = STATE(4529), - [sym_anonymous_object_creation_expression] = STATE(4529), - [sym_implicit_array_creation_expression] = STATE(4529), - [sym_implicit_object_creation_expression] = STATE(4529), - [sym_implicit_stackalloc_expression] = STATE(4529), - [sym_initializer_expression] = STATE(4529), - [sym_default_expression] = STATE(4529), - [sym_with_expression] = STATE(4529), - [sym_sizeof_expression] = STATE(4529), - [sym_typeof_expression] = STATE(4529), - [sym_makeref_expression] = STATE(4529), - [sym_ref_expression] = STATE(4529), - [sym_reftype_expression] = STATE(4529), - [sym_refvalue_expression] = STATE(4529), - [sym_stackalloc_expression] = STATE(4529), - [sym_range_expression] = STATE(4529), - [sym_tuple_expression] = STATE(3175), - [sym_literal] = STATE(4529), - [sym_character_literal] = STATE(4536), - [sym_string_literal] = STATE(4536), - [sym_raw_string_literal] = STATE(4536), - [sym_boolean_literal] = STATE(4536), - [sym_identifier] = STATE(2246), - [sym__reserved_identifier] = STATE(2240), - [sym_preproc_if_in_expression] = STATE(4529), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(2647), + [sym_alias_qualified_name] = STATE(2821), + [sym__simple_name] = STATE(2263), + [sym_qualified_name] = STATE(2821), + [sym_generic_name] = STATE(2262), + [sym_type] = STATE(2539), + [sym_implicit_type] = STATE(2701), + [sym_array_type] = STATE(2822), + [sym__array_base_type] = STATE(7081), + [sym_nullable_type] = STATE(2823), + [sym_pointer_type] = STATE(2823), + [sym__pointer_base_type] = STATE(7400), + [sym_function_pointer_type] = STATE(2823), + [sym_ref_type] = STATE(2701), + [sym_scoped_type] = STATE(2701), + [sym_tuple_type] = STATE(2825), + [sym_expression] = STATE(5042), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3510), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3102), + [sym_postfix_unary_expression] = STATE(3079), + [sym_prefix_unary_expression] = STATE(3079), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6134), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3102), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3079), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3102), + [sym_member_access_expression] = STATE(2472), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3079), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7425), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(3102), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3102), + [sym_typeof_expression] = STATE(3102), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2472), + [sym_literal] = STATE(3102), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2219), + [sym__reserved_identifier] = STATE(2229), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(743), [sym_preproc_endregion] = STATE(743), [sym_preproc_line] = STATE(743), @@ -167344,166 +167229,167 @@ 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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3363), - [sym__identifier_token] = ACTIONS(1387), - [anon_sym_alias] = ACTIONS(1389), - [anon_sym_global] = ACTIONS(1389), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1391), - [anon_sym_LPAREN] = ACTIONS(1393), - [anon_sym_ref] = ACTIONS(1395), - [anon_sym_LBRACE] = ACTIONS(2861), - [anon_sym_delegate] = ACTIONS(1399), - [anon_sym_async] = ACTIONS(1047), - [anon_sym_file] = ACTIONS(1389), - [anon_sym_new] = ACTIONS(1401), - [anon_sym_where] = ACTIONS(1389), - [anon_sym_notnull] = ACTIONS(1389), - [anon_sym_unmanaged] = ACTIONS(1389), - [anon_sym_checked] = ACTIONS(1403), - [anon_sym_BANG] = ACTIONS(1407), - [anon_sym_TILDE] = ACTIONS(1407), - [anon_sym_PLUS_PLUS] = ACTIONS(1407), - [anon_sym_DASH_DASH] = ACTIONS(1407), - [anon_sym_true] = ACTIONS(1409), - [anon_sym_false] = ACTIONS(1409), - [anon_sym_PLUS] = ACTIONS(1405), - [anon_sym_DASH] = ACTIONS(1405), - [anon_sym_STAR] = ACTIONS(1411), - [anon_sym_CARET] = ACTIONS(1407), - [anon_sym_AMP] = ACTIONS(1407), - [anon_sym_this] = ACTIONS(1413), - [anon_sym_scoped] = ACTIONS(1415), - [anon_sym_base] = ACTIONS(1417), - [anon_sym_var] = ACTIONS(1419), - [sym_predefined_type] = ACTIONS(1421), - [anon_sym_unchecked] = ACTIONS(1403), - [anon_sym_yield] = ACTIONS(1389), - [anon_sym_default] = ACTIONS(1423), - [anon_sym_throw] = ACTIONS(1425), - [anon_sym_when] = ACTIONS(1389), - [anon_sym_await] = ACTIONS(1427), - [anon_sym_DOT_DOT] = ACTIONS(1429), - [anon_sym_from] = ACTIONS(1431), - [anon_sym_into] = ACTIONS(1389), - [anon_sym_join] = ACTIONS(1389), - [anon_sym_on] = ACTIONS(1389), - [anon_sym_equals] = ACTIONS(1389), - [anon_sym_let] = ACTIONS(1389), - [anon_sym_orderby] = ACTIONS(1389), - [anon_sym_ascending] = ACTIONS(1389), - [anon_sym_descending] = ACTIONS(1389), - [anon_sym_group] = ACTIONS(1389), - [anon_sym_by] = ACTIONS(1389), - [anon_sym_select] = ACTIONS(1389), - [anon_sym_stackalloc] = ACTIONS(1433), - [anon_sym_sizeof] = ACTIONS(1435), - [anon_sym_typeof] = ACTIONS(1437), - [anon_sym___makeref] = ACTIONS(1439), - [anon_sym___reftype] = ACTIONS(1441), - [anon_sym___refvalue] = ACTIONS(1443), - [sym_null_literal] = ACTIONS(1445), - [anon_sym_SQUOTE] = ACTIONS(1447), - [sym_integer_literal] = ACTIONS(1445), - [sym_real_literal] = ACTIONS(1449), - [anon_sym_DQUOTE] = ACTIONS(1451), - [sym_verbatim_string_literal] = ACTIONS(1449), - [aux_sym_preproc_if_token1] = ACTIONS(1453), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1455), - [sym_interpolation_verbatim_start] = ACTIONS(1457), - [sym_interpolation_raw_start] = ACTIONS(1459), - [sym_raw_string_start] = ACTIONS(1461), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), + [sym__identifier_token] = ACTIONS(1385), + [anon_sym_alias] = ACTIONS(1387), + [anon_sym_global] = ACTIONS(1387), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1479), + [anon_sym_LPAREN] = ACTIONS(2899), + [anon_sym_ref] = ACTIONS(2405), + [anon_sym_LBRACE] = ACTIONS(1481), + [anon_sym_delegate] = ACTIONS(2409), + [anon_sym_async] = ACTIONS(1045), + [anon_sym_file] = ACTIONS(1387), + [anon_sym_new] = ACTIONS(1059), + [anon_sym_readonly] = ACTIONS(2901), + [anon_sym_where] = ACTIONS(1387), + [anon_sym_notnull] = ACTIONS(1387), + [anon_sym_unmanaged] = ACTIONS(1387), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(1525), + [anon_sym_TILDE] = ACTIONS(1525), + [anon_sym_PLUS_PLUS] = ACTIONS(1525), + [anon_sym_DASH_DASH] = ACTIONS(1525), + [anon_sym_true] = ACTIONS(77), + [anon_sym_false] = ACTIONS(77), + [anon_sym_PLUS] = ACTIONS(1523), + [anon_sym_DASH] = ACTIONS(1523), + [anon_sym_STAR] = ACTIONS(81), + [anon_sym_CARET] = ACTIONS(1525), + [anon_sym_AMP] = ACTIONS(1525), + [anon_sym_this] = ACTIONS(83), + [anon_sym_scoped] = ACTIONS(2415), + [anon_sym_base] = ACTIONS(87), + [anon_sym_var] = ACTIONS(2903), + [sym_predefined_type] = ACTIONS(2905), + [anon_sym_unchecked] = ACTIONS(1065), + [anon_sym_yield] = ACTIONS(1387), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(1527), + [anon_sym_when] = ACTIONS(1387), + [anon_sym_await] = ACTIONS(1529), + [anon_sym_DOT_DOT] = ACTIONS(123), + [anon_sym_from] = ACTIONS(1429), + [anon_sym_into] = ACTIONS(1387), + [anon_sym_join] = ACTIONS(1387), + [anon_sym_on] = ACTIONS(1387), + [anon_sym_equals] = ACTIONS(1387), + [anon_sym_let] = ACTIONS(1387), + [anon_sym_orderby] = ACTIONS(1387), + [anon_sym_ascending] = ACTIONS(1387), + [anon_sym_descending] = ACTIONS(1387), + [anon_sym_group] = ACTIONS(1387), + [anon_sym_by] = ACTIONS(1387), + [anon_sym_select] = ACTIONS(1387), + [anon_sym_stackalloc] = ACTIONS(127), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_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), }, [744] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(3184), - [sym__name] = STATE(5906), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2312), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2269), - [sym_type] = STATE(2291), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(4319), - [sym_non_lvalue_expression] = STATE(4541), - [sym_lvalue_expression] = STATE(3165), - [sym__expression_statement_expression] = STATE(4529), - [sym_assignment_expression] = STATE(4543), - [sym_binary_expression] = STATE(4529), - [sym_postfix_unary_expression] = STATE(4543), - [sym_prefix_unary_expression] = STATE(4543), - [sym__pointer_indirection_expression] = STATE(3175), - [sym_query_expression] = STATE(4529), - [sym_from_clause] = STATE(6156), - [sym_conditional_expression] = STATE(4529), - [sym_conditional_access_expression] = STATE(4529), - [sym_as_expression] = STATE(4529), - [sym_is_expression] = STATE(4529), - [sym_is_pattern_expression] = STATE(4529), - [sym_cast_expression] = STATE(4529), - [sym_checked_expression] = STATE(4529), - [sym_invocation_expression] = STATE(4543), - [sym_switch_expression] = STATE(4529), - [sym_await_expression] = STATE(4543), - [sym_throw_expression] = STATE(4529), - [sym_element_access_expression] = STATE(3175), - [sym_interpolated_string_expression] = STATE(4529), - [sym_member_access_expression] = STATE(3175), - [sym_object_creation_expression] = STATE(4543), - [sym_parenthesized_expression] = STATE(4543), - [sym__parenthesized_lvalue_expression] = STATE(3175), - [sym_lambda_expression] = STATE(4529), - [sym__lambda_expression_init] = STATE(7341), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(4529), - [sym_anonymous_method_expression] = STATE(4529), - [sym_anonymous_object_creation_expression] = STATE(4529), - [sym_implicit_array_creation_expression] = STATE(4529), - [sym_implicit_object_creation_expression] = STATE(4529), - [sym_implicit_stackalloc_expression] = STATE(4529), - [sym_initializer_expression] = STATE(4529), - [sym_default_expression] = STATE(4529), - [sym_with_expression] = STATE(4529), - [sym_sizeof_expression] = STATE(4529), - [sym_typeof_expression] = STATE(4529), - [sym_makeref_expression] = STATE(4529), - [sym_ref_expression] = STATE(4529), - [sym_reftype_expression] = STATE(4529), - [sym_refvalue_expression] = STATE(4529), - [sym_stackalloc_expression] = STATE(4529), - [sym_range_expression] = STATE(4529), - [sym_tuple_expression] = STATE(3175), - [sym_literal] = STATE(4529), - [sym_character_literal] = STATE(4536), - [sym_string_literal] = STATE(4536), - [sym_raw_string_literal] = STATE(4536), - [sym_boolean_literal] = STATE(4536), - [sym_identifier] = STATE(2246), - [sym__reserved_identifier] = STATE(2240), - [sym_preproc_if_in_expression] = STATE(4529), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(5152), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2196), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(5463), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3356), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3102), + [sym_postfix_unary_expression] = STATE(3079), + [sym_prefix_unary_expression] = STATE(3079), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6134), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3102), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3079), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3102), + [sym_member_access_expression] = STATE(2472), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3079), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7627), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(3102), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3102), + [sym_typeof_expression] = STATE(3102), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2472), + [sym_literal] = STATE(3102), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(744), [sym_preproc_endregion] = STATE(744), [sym_preproc_line] = STATE(744), @@ -167513,167 +167399,167 @@ 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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3363), - [sym__identifier_token] = ACTIONS(1387), - [anon_sym_alias] = ACTIONS(1389), - [anon_sym_global] = ACTIONS(1389), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1391), - [anon_sym_LPAREN] = ACTIONS(1393), - [anon_sym_ref] = ACTIONS(1395), - [anon_sym_LBRACE] = ACTIONS(1397), - [anon_sym_delegate] = ACTIONS(1399), - [anon_sym_async] = ACTIONS(1047), - [anon_sym_file] = ACTIONS(1389), - [anon_sym_new] = ACTIONS(1401), - [anon_sym_readonly] = ACTIONS(2749), - [anon_sym_where] = ACTIONS(1389), - [anon_sym_notnull] = ACTIONS(1389), - [anon_sym_unmanaged] = ACTIONS(1389), - [anon_sym_checked] = ACTIONS(1403), - [anon_sym_BANG] = ACTIONS(1407), - [anon_sym_TILDE] = ACTIONS(1407), - [anon_sym_PLUS_PLUS] = ACTIONS(1407), - [anon_sym_DASH_DASH] = ACTIONS(1407), - [anon_sym_true] = ACTIONS(1409), - [anon_sym_false] = ACTIONS(1409), - [anon_sym_PLUS] = ACTIONS(1405), - [anon_sym_DASH] = ACTIONS(1405), - [anon_sym_STAR] = ACTIONS(1411), - [anon_sym_CARET] = ACTIONS(1407), - [anon_sym_AMP] = ACTIONS(1407), - [anon_sym_this] = ACTIONS(1413), - [anon_sym_scoped] = ACTIONS(1415), - [anon_sym_base] = ACTIONS(1417), - [anon_sym_var] = ACTIONS(1419), - [sym_predefined_type] = ACTIONS(1421), - [anon_sym_unchecked] = ACTIONS(1403), - [anon_sym_yield] = ACTIONS(1389), - [anon_sym_default] = ACTIONS(1423), - [anon_sym_throw] = ACTIONS(1425), - [anon_sym_when] = ACTIONS(1389), - [anon_sym_await] = ACTIONS(1427), - [anon_sym_DOT_DOT] = ACTIONS(1429), - [anon_sym_from] = ACTIONS(1431), - [anon_sym_into] = ACTIONS(1389), - [anon_sym_join] = ACTIONS(1389), - [anon_sym_on] = ACTIONS(1389), - [anon_sym_equals] = ACTIONS(1389), - [anon_sym_let] = ACTIONS(1389), - [anon_sym_orderby] = ACTIONS(1389), - [anon_sym_ascending] = ACTIONS(1389), - [anon_sym_descending] = ACTIONS(1389), - [anon_sym_group] = ACTIONS(1389), - [anon_sym_by] = ACTIONS(1389), - [anon_sym_select] = ACTIONS(1389), - [anon_sym_stackalloc] = ACTIONS(1433), - [anon_sym_sizeof] = ACTIONS(1435), - [anon_sym_typeof] = ACTIONS(1437), - [anon_sym___makeref] = ACTIONS(1439), - [anon_sym___reftype] = ACTIONS(1441), - [anon_sym___refvalue] = ACTIONS(1443), - [sym_null_literal] = ACTIONS(1445), - [anon_sym_SQUOTE] = ACTIONS(1447), - [sym_integer_literal] = ACTIONS(1445), - [sym_real_literal] = ACTIONS(1449), - [anon_sym_DQUOTE] = ACTIONS(1451), - [sym_verbatim_string_literal] = ACTIONS(1449), - [aux_sym_preproc_if_token1] = ACTIONS(1453), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1455), - [sym_interpolation_verbatim_start] = ACTIONS(1457), - [sym_interpolation_raw_start] = ACTIONS(1459), - [sym_raw_string_start] = ACTIONS(1461), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), + [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(1479), + [anon_sym_LPAREN] = ACTIONS(1511), + [anon_sym_ref] = ACTIONS(1513), + [anon_sym_LBRACE] = ACTIONS(1481), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), + [anon_sym_file] = ACTIONS(29), + [anon_sym_new] = ACTIONS(1515), + [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(1517), + [anon_sym_when] = ACTIONS(29), + [anon_sym_await] = ACTIONS(1519), + [anon_sym_DOT_DOT] = ACTIONS(1521), + [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), }, [745] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2420), - [sym__name] = STATE(5875), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2369), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(2291), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(4168), - [sym_non_lvalue_expression] = STATE(3066), - [sym_lvalue_expression] = STATE(3125), - [sym__expression_statement_expression] = STATE(3006), - [sym_assignment_expression] = STATE(3020), - [sym_binary_expression] = STATE(3006), - [sym_postfix_unary_expression] = STATE(3020), - [sym_prefix_unary_expression] = STATE(3020), - [sym__pointer_indirection_expression] = STATE(2423), - [sym_query_expression] = STATE(3006), - [sym_from_clause] = STATE(6145), - [sym_conditional_expression] = STATE(3006), - [sym_conditional_access_expression] = STATE(3006), - [sym_as_expression] = STATE(3006), - [sym_is_expression] = STATE(3006), - [sym_is_pattern_expression] = STATE(3006), - [sym_cast_expression] = STATE(3006), - [sym_checked_expression] = STATE(3006), - [sym_invocation_expression] = STATE(3020), - [sym_switch_expression] = STATE(3006), - [sym_await_expression] = STATE(3020), - [sym_throw_expression] = STATE(3006), - [sym_element_access_expression] = STATE(2423), - [sym_interpolated_string_expression] = STATE(3006), - [sym_member_access_expression] = STATE(2423), - [sym_object_creation_expression] = STATE(3020), - [sym_parenthesized_expression] = STATE(3020), - [sym__parenthesized_lvalue_expression] = STATE(2423), - [sym_lambda_expression] = STATE(3006), - [sym__lambda_expression_init] = STATE(7538), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3006), - [sym_anonymous_method_expression] = STATE(3006), - [sym_anonymous_object_creation_expression] = STATE(3006), - [sym_implicit_array_creation_expression] = STATE(3006), - [sym_implicit_object_creation_expression] = STATE(3006), - [sym_implicit_stackalloc_expression] = STATE(3006), - [sym_initializer_expression] = STATE(3006), - [sym_default_expression] = STATE(3006), - [sym_with_expression] = STATE(3006), - [sym_sizeof_expression] = STATE(3006), - [sym_typeof_expression] = STATE(3006), - [sym_makeref_expression] = STATE(3006), - [sym_ref_expression] = STATE(3006), - [sym_reftype_expression] = STATE(3006), - [sym_refvalue_expression] = STATE(3006), - [sym_stackalloc_expression] = STATE(3006), - [sym_range_expression] = STATE(3006), - [sym_tuple_expression] = STATE(2423), - [sym_literal] = STATE(3006), - [sym_character_literal] = STATE(3011), - [sym_string_literal] = STATE(3011), - [sym_raw_string_literal] = STATE(3011), - [sym_boolean_literal] = STATE(3011), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3006), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(5873), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2238), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(2279), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(4920), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3526), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3102), + [sym_postfix_unary_expression] = STATE(3079), + [sym_prefix_unary_expression] = STATE(3079), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6134), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3102), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3079), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3102), + [sym_member_access_expression] = STATE(2472), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3079), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7455), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(3102), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3102), + [sym_typeof_expression] = STATE(3102), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2472), + [sym_literal] = STATE(3102), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(745), [sym_preproc_endregion] = STATE(745), [sym_preproc_line] = STATE(745), @@ -167683,48 +167569,48 @@ 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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3440), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1241), - [anon_sym_LPAREN] = ACTIONS(2195), - [anon_sym_ref] = ACTIONS(2197), - [anon_sym_LBRACE] = ACTIONS(1247), - [anon_sym_delegate] = ACTIONS(1249), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1479), + [anon_sym_LPAREN] = ACTIONS(1629), + [anon_sym_ref] = ACTIONS(1631), + [anon_sym_LBRACE] = ACTIONS(1481), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1845), - [anon_sym_readonly] = ACTIONS(2749), + [anon_sym_new] = ACTIONS(1515), + [anon_sym_readonly] = ACTIONS(2767), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1253), - [anon_sym_BANG] = ACTIONS(2201), - [anon_sym_TILDE] = ACTIONS(2201), - [anon_sym_PLUS_PLUS] = ACTIONS(2201), - [anon_sym_DASH_DASH] = ACTIONS(2201), - [anon_sym_true] = ACTIONS(1259), - [anon_sym_false] = ACTIONS(1259), - [anon_sym_PLUS] = ACTIONS(2199), - [anon_sym_DASH] = ACTIONS(2199), - [anon_sym_STAR] = ACTIONS(1851), - [anon_sym_CARET] = ACTIONS(2201), - [anon_sym_AMP] = ACTIONS(2201), - [anon_sym_this] = ACTIONS(1263), + [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_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1265), + [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1267), - [anon_sym_unchecked] = ACTIONS(1253), + [sym_predefined_type] = ACTIONS(91), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1269), - [anon_sym_throw] = ACTIONS(2203), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(1633), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2205), - [anon_sym_DOT_DOT] = ACTIONS(2207), + [anon_sym_await] = ACTIONS(1635), + [anon_sym_DOT_DOT] = ACTIONS(1637), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -167737,19 +167623,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1277), - [anon_sym_sizeof] = ACTIONS(1279), - [anon_sym_typeof] = ACTIONS(1281), - [anon_sym___makeref] = ACTIONS(1283), - [anon_sym___reftype] = ACTIONS(1285), - [anon_sym___refvalue] = ACTIONS(1287), - [sym_null_literal] = ACTIONS(1289), - [anon_sym_SQUOTE] = ACTIONS(1291), - [sym_integer_literal] = ACTIONS(1289), - [sym_real_literal] = ACTIONS(1293), - [anon_sym_DQUOTE] = ACTIONS(1295), - [sym_verbatim_string_literal] = ACTIONS(1293), - [aux_sym_preproc_if_token1] = ACTIONS(1297), + [anon_sym_stackalloc] = ACTIONS(127), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_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), @@ -167760,91 +167646,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1299), - [sym_interpolation_verbatim_start] = ACTIONS(1301), - [sym_interpolation_raw_start] = ACTIONS(1303), - [sym_raw_string_start] = ACTIONS(1305), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [sym_interpolation_raw_start] = ACTIONS(155), + [sym_raw_string_start] = ACTIONS(157), }, [746] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_block] = STATE(3430), - [sym_bracketed_argument_list] = STATE(2762), - [sym__name] = STATE(5892), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2316), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(4683), - [sym_non_lvalue_expression] = STATE(3438), - [sym_lvalue_expression] = STATE(3500), - [sym__expression_statement_expression] = STATE(3362), - [sym_assignment_expression] = STATE(3449), - [sym_binary_expression] = STATE(3362), - [sym_postfix_unary_expression] = STATE(3449), - [sym_prefix_unary_expression] = STATE(3449), - [sym__pointer_indirection_expression] = STATE(2747), - [sym_query_expression] = STATE(3362), - [sym_from_clause] = STATE(6147), - [sym_conditional_expression] = STATE(3362), - [sym_conditional_access_expression] = STATE(3362), - [sym_as_expression] = STATE(3362), - [sym_is_expression] = STATE(3362), - [sym_is_pattern_expression] = STATE(3362), - [sym_cast_expression] = STATE(3362), - [sym_checked_expression] = STATE(3362), - [sym_invocation_expression] = STATE(3449), - [sym_switch_expression] = STATE(3362), - [sym_await_expression] = STATE(3449), - [sym_throw_expression] = STATE(3362), - [sym_element_access_expression] = STATE(2747), - [sym_interpolated_string_expression] = STATE(3362), - [sym_member_access_expression] = STATE(2747), - [sym_object_creation_expression] = STATE(3449), - [sym_parenthesized_expression] = STATE(3449), - [sym__parenthesized_lvalue_expression] = STATE(2747), - [sym_lambda_expression] = STATE(3362), - [sym__lambda_expression_init] = STATE(7516), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3362), - [sym_anonymous_method_expression] = STATE(3362), - [sym_anonymous_object_creation_expression] = STATE(3362), - [sym_implicit_array_creation_expression] = STATE(3362), - [sym_implicit_object_creation_expression] = STATE(3362), - [sym_implicit_stackalloc_expression] = STATE(3362), - [sym_initializer_expression] = STATE(3362), - [sym_default_expression] = STATE(3362), - [sym_with_expression] = STATE(3362), - [sym_sizeof_expression] = STATE(3362), - [sym_typeof_expression] = STATE(3362), - [sym_makeref_expression] = STATE(3362), - [sym_ref_expression] = STATE(3362), - [sym_reftype_expression] = STATE(3362), - [sym_refvalue_expression] = STATE(3362), - [sym_stackalloc_expression] = STATE(3362), - [sym_range_expression] = STATE(3362), - [sym_tuple_expression] = STATE(2747), - [sym_literal] = STATE(3362), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2267), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3362), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(5879), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2238), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(2279), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(4754), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3398), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3102), + [sym_postfix_unary_expression] = STATE(3079), + [sym_prefix_unary_expression] = STATE(3079), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6163), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3102), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3079), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3102), + [sym_member_access_expression] = STATE(2472), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3079), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7496), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(3102), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3102), + [sym_typeof_expression] = STATE(3102), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2472), + [sym_literal] = STATE(3102), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(746), [sym_preproc_endregion] = STATE(746), [sym_preproc_line] = STATE(746), @@ -167854,47 +167739,48 @@ 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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3385), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1307), - [anon_sym_LPAREN] = ACTIONS(1609), - [anon_sym_ref] = ACTIONS(1611), - [anon_sym_LBRACE] = ACTIONS(2857), - [anon_sym_delegate] = ACTIONS(1315), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1479), + [anon_sym_LPAREN] = ACTIONS(1487), + [anon_sym_ref] = ACTIONS(1489), + [anon_sym_LBRACE] = ACTIONS(1481), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1613), + [anon_sym_new] = ACTIONS(1095), + [anon_sym_readonly] = ACTIONS(2767), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1319), - [anon_sym_BANG] = ACTIONS(1617), - [anon_sym_TILDE] = ACTIONS(1617), - [anon_sym_PLUS_PLUS] = ACTIONS(1617), - [anon_sym_DASH_DASH] = ACTIONS(1617), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(1493), + [anon_sym_TILDE] = ACTIONS(1493), + [anon_sym_PLUS_PLUS] = ACTIONS(1493), + [anon_sym_DASH_DASH] = ACTIONS(1493), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1615), - [anon_sym_DASH] = ACTIONS(1615), - [anon_sym_STAR] = ACTIONS(1619), - [anon_sym_CARET] = ACTIONS(1617), - [anon_sym_AMP] = ACTIONS(1617), - [anon_sym_this] = ACTIONS(1323), + [anon_sym_PLUS] = ACTIONS(1491), + [anon_sym_DASH] = ACTIONS(1491), + [anon_sym_STAR] = ACTIONS(1105), + [anon_sym_CARET] = ACTIONS(1493), + [anon_sym_AMP] = ACTIONS(1493), + [anon_sym_this] = ACTIONS(83), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1325), + [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1319), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1621), + [anon_sym_throw] = ACTIONS(1113), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1623), - [anon_sym_DOT_DOT] = ACTIONS(1625), + [anon_sym_await] = ACTIONS(1115), + [anon_sym_DOT_DOT] = ACTIONS(1119), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -167907,19 +167793,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1333), + [anon_sym_stackalloc] = ACTIONS(127), [anon_sym_sizeof] = ACTIONS(129), [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(1335), - [anon_sym___reftype] = ACTIONS(1337), - [anon_sym___refvalue] = ACTIONS(1339), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), [sym_null_literal] = ACTIONS(139), [anon_sym_SQUOTE] = ACTIONS(141), [sym_integer_literal] = ACTIONS(139), [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1341), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -167936,85 +167822,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [747] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_block] = STATE(3316), - [sym_bracketed_argument_list] = STATE(2610), - [sym__name] = STATE(5879), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2197), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(4209), - [sym_non_lvalue_expression] = STATE(3277), - [sym_lvalue_expression] = STATE(3134), - [sym__expression_statement_expression] = STATE(3228), - [sym_assignment_expression] = STATE(3289), - [sym_binary_expression] = STATE(3228), - [sym_postfix_unary_expression] = STATE(3289), - [sym_prefix_unary_expression] = STATE(3289), - [sym__pointer_indirection_expression] = STATE(2609), - [sym_query_expression] = STATE(3228), - [sym_from_clause] = STATE(6162), - [sym_conditional_expression] = STATE(3228), - [sym_conditional_access_expression] = STATE(3228), - [sym_as_expression] = STATE(3228), - [sym_is_expression] = STATE(3228), - [sym_is_pattern_expression] = STATE(3228), - [sym_cast_expression] = STATE(3228), - [sym_checked_expression] = STATE(3228), - [sym_invocation_expression] = STATE(3289), - [sym_switch_expression] = STATE(3228), - [sym_await_expression] = STATE(3289), - [sym_throw_expression] = STATE(3228), - [sym_element_access_expression] = STATE(2609), - [sym_interpolated_string_expression] = STATE(3228), - [sym_member_access_expression] = STATE(2609), - [sym_object_creation_expression] = STATE(3289), - [sym_parenthesized_expression] = STATE(3289), - [sym__parenthesized_lvalue_expression] = STATE(2609), - [sym_lambda_expression] = STATE(3228), - [sym__lambda_expression_init] = STATE(7695), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3228), - [sym_anonymous_method_expression] = STATE(3228), - [sym_anonymous_object_creation_expression] = STATE(3228), - [sym_implicit_array_creation_expression] = STATE(3228), - [sym_implicit_object_creation_expression] = STATE(3228), - [sym_implicit_stackalloc_expression] = STATE(3228), - [sym_initializer_expression] = STATE(3228), - [sym_default_expression] = STATE(3228), - [sym_with_expression] = STATE(3228), - [sym_sizeof_expression] = STATE(3228), - [sym_typeof_expression] = STATE(3228), - [sym_makeref_expression] = STATE(3228), - [sym_ref_expression] = STATE(3228), - [sym_reftype_expression] = STATE(3228), - [sym_refvalue_expression] = STATE(3228), - [sym_stackalloc_expression] = STATE(3228), - [sym_range_expression] = STATE(3228), - [sym_tuple_expression] = STATE(2609), - [sym_literal] = STATE(3228), - [sym_character_literal] = STATE(3278), - [sym_string_literal] = STATE(3278), - [sym_raw_string_literal] = STATE(3278), - [sym_boolean_literal] = STATE(3278), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3228), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(5873), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2238), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(4938), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3468), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3102), + [sym_postfix_unary_expression] = STATE(3079), + [sym_prefix_unary_expression] = STATE(3079), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6134), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3102), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3079), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3102), + [sym_member_access_expression] = STATE(2472), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3079), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7309), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(3102), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3102), + [sym_typeof_expression] = STATE(3102), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2472), + [sym_literal] = STATE(3102), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(747), [sym_preproc_endregion] = STATE(747), [sym_preproc_line] = STATE(747), @@ -168024,47 +167909,48 @@ 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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3396), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1153), - [anon_sym_LPAREN] = ACTIONS(1371), - [anon_sym_ref] = ACTIONS(1373), - [anon_sym_LBRACE] = ACTIONS(2843), - [anon_sym_delegate] = ACTIONS(1161), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1479), + [anon_sym_LPAREN] = ACTIONS(659), + [anon_sym_RPAREN] = ACTIONS(2907), + [anon_sym_ref] = ACTIONS(663), + [anon_sym_LBRACE] = ACTIONS(1481), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1163), + [anon_sym_new] = ACTIONS(1059), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1167), - [anon_sym_BANG] = ACTIONS(1377), - [anon_sym_TILDE] = ACTIONS(1377), - [anon_sym_PLUS_PLUS] = ACTIONS(1377), - [anon_sym_DASH_DASH] = ACTIONS(1377), - [anon_sym_true] = ACTIONS(1173), - [anon_sym_false] = ACTIONS(1173), - [anon_sym_PLUS] = ACTIONS(1375), - [anon_sym_DASH] = ACTIONS(1375), - [anon_sym_STAR] = ACTIONS(1379), - [anon_sym_CARET] = ACTIONS(1377), - [anon_sym_AMP] = ACTIONS(1377), - [anon_sym_this] = ACTIONS(1177), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(1485), + [anon_sym_TILDE] = ACTIONS(1485), + [anon_sym_PLUS_PLUS] = ACTIONS(1485), + [anon_sym_DASH_DASH] = ACTIONS(1485), + [anon_sym_true] = ACTIONS(77), + [anon_sym_false] = ACTIONS(77), + [anon_sym_PLUS] = ACTIONS(1483), + [anon_sym_DASH] = ACTIONS(1483), + [anon_sym_STAR] = ACTIONS(683), + [anon_sym_CARET] = ACTIONS(1485), + [anon_sym_AMP] = ACTIONS(1485), + [anon_sym_this] = ACTIONS(83), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1179), + [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1181), - [anon_sym_unchecked] = ACTIONS(1167), + [sym_predefined_type] = ACTIONS(91), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1183), - [anon_sym_throw] = ACTIONS(1381), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(1077), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1383), - [anon_sym_DOT_DOT] = ACTIONS(1385), + [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), @@ -168077,19 +167963,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1191), - [anon_sym_sizeof] = ACTIONS(1193), - [anon_sym_typeof] = ACTIONS(1195), - [anon_sym___makeref] = ACTIONS(1197), - [anon_sym___reftype] = ACTIONS(1199), - [anon_sym___refvalue] = ACTIONS(1201), - [sym_null_literal] = ACTIONS(1203), - [anon_sym_SQUOTE] = ACTIONS(1205), - [sym_integer_literal] = ACTIONS(1203), - [sym_real_literal] = ACTIONS(1207), - [anon_sym_DQUOTE] = ACTIONS(1209), - [sym_verbatim_string_literal] = ACTIONS(1207), - [aux_sym_preproc_if_token1] = ACTIONS(1211), + [anon_sym_stackalloc] = ACTIONS(127), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_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), @@ -168100,90 +167986,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(1213), - [sym_interpolation_verbatim_start] = ACTIONS(1215), - [sym_interpolation_raw_start] = ACTIONS(1217), - [sym_raw_string_start] = ACTIONS(1219), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [sym_interpolation_raw_start] = ACTIONS(155), + [sym_raw_string_start] = ACTIONS(157), }, [748] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(3184), - [sym__name] = STATE(5906), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2312), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2269), - [sym_type] = STATE(2291), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(4609), - [sym_non_lvalue_expression] = STATE(4541), - [sym_lvalue_expression] = STATE(3439), - [sym__expression_statement_expression] = STATE(4529), - [sym_assignment_expression] = STATE(4543), - [sym_binary_expression] = STATE(4529), - [sym_postfix_unary_expression] = STATE(4543), - [sym_prefix_unary_expression] = STATE(4543), - [sym__pointer_indirection_expression] = STATE(3175), - [sym_query_expression] = STATE(4529), - [sym_from_clause] = STATE(6169), - [sym_conditional_expression] = STATE(4529), - [sym_conditional_access_expression] = STATE(4529), - [sym_as_expression] = STATE(4529), - [sym_is_expression] = STATE(4529), - [sym_is_pattern_expression] = STATE(4529), - [sym_cast_expression] = STATE(4529), - [sym_checked_expression] = STATE(4529), - [sym_invocation_expression] = STATE(4543), - [sym_switch_expression] = STATE(4529), - [sym_await_expression] = STATE(4543), - [sym_throw_expression] = STATE(4529), - [sym_element_access_expression] = STATE(3175), - [sym_interpolated_string_expression] = STATE(4529), - [sym_member_access_expression] = STATE(3175), - [sym_object_creation_expression] = STATE(4543), - [sym_parenthesized_expression] = STATE(4543), - [sym__parenthesized_lvalue_expression] = STATE(3175), - [sym_lambda_expression] = STATE(4529), - [sym__lambda_expression_init] = STATE(7684), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(4529), - [sym_anonymous_method_expression] = STATE(4529), - [sym_anonymous_object_creation_expression] = STATE(4529), - [sym_implicit_array_creation_expression] = STATE(4529), - [sym_implicit_object_creation_expression] = STATE(4529), - [sym_implicit_stackalloc_expression] = STATE(4529), - [sym_initializer_expression] = STATE(4529), - [sym_default_expression] = STATE(4529), - [sym_with_expression] = STATE(4529), - [sym_sizeof_expression] = STATE(4529), - [sym_typeof_expression] = STATE(4529), - [sym_makeref_expression] = STATE(4529), - [sym_ref_expression] = STATE(4529), - [sym_reftype_expression] = STATE(4529), - [sym_refvalue_expression] = STATE(4529), - [sym_stackalloc_expression] = STATE(4529), - [sym_range_expression] = STATE(4529), - [sym_tuple_expression] = STATE(3175), - [sym_literal] = STATE(4529), - [sym_character_literal] = STATE(4536), - [sym_string_literal] = STATE(4536), - [sym_raw_string_literal] = STATE(4536), - [sym_boolean_literal] = STATE(4536), - [sym_identifier] = STATE(2246), - [sym__reserved_identifier] = STATE(2240), - [sym_preproc_if_in_expression] = STATE(4529), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_block] = STATE(2984), + [sym_bracketed_argument_list] = STATE(2416), + [sym__name] = STATE(5900), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2193), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(4384), + [sym_non_lvalue_expression] = STATE(3040), + [sym_lvalue_expression] = STATE(3231), + [sym__expression_statement_expression] = STATE(3035), + [sym_assignment_expression] = STATE(3043), + [sym_binary_expression] = STATE(3035), + [sym_postfix_unary_expression] = STATE(3043), + [sym_prefix_unary_expression] = STATE(3043), + [sym__pointer_indirection_expression] = STATE(2415), + [sym_query_expression] = STATE(3035), + [sym_from_clause] = STATE(6149), + [sym_conditional_expression] = STATE(3035), + [sym_conditional_access_expression] = STATE(3035), + [sym_as_expression] = STATE(3035), + [sym_is_expression] = STATE(3035), + [sym_is_pattern_expression] = STATE(3035), + [sym_cast_expression] = STATE(3035), + [sym_checked_expression] = STATE(3035), + [sym_invocation_expression] = STATE(3043), + [sym_switch_expression] = STATE(3035), + [sym_await_expression] = STATE(3043), + [sym_throw_expression] = STATE(3035), + [sym_element_access_expression] = STATE(2415), + [sym_interpolated_string_expression] = STATE(3035), + [sym_member_access_expression] = STATE(2415), + [sym_object_creation_expression] = STATE(3043), + [sym_parenthesized_expression] = STATE(3043), + [sym__parenthesized_lvalue_expression] = STATE(2415), + [sym_lambda_expression] = STATE(3035), + [sym__lambda_expression_init] = STATE(7405), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3035), + [sym_anonymous_method_expression] = STATE(3035), + [sym_anonymous_object_creation_expression] = STATE(3035), + [sym_implicit_array_creation_expression] = STATE(3035), + [sym_implicit_object_creation_expression] = STATE(3035), + [sym_implicit_stackalloc_expression] = STATE(3035), + [sym_initializer_expression] = STATE(3035), + [sym_default_expression] = STATE(3035), + [sym_with_expression] = STATE(3035), + [sym_sizeof_expression] = STATE(3035), + [sym_typeof_expression] = STATE(3035), + [sym_makeref_expression] = STATE(3035), + [sym_ref_expression] = STATE(3035), + [sym_reftype_expression] = STATE(3035), + [sym_refvalue_expression] = STATE(3035), + [sym_stackalloc_expression] = STATE(3035), + [sym_range_expression] = STATE(3035), + [sym_tuple_expression] = STATE(2415), + [sym_literal] = STATE(3035), + [sym_character_literal] = STATE(3037), + [sym_string_literal] = STATE(3037), + [sym_raw_string_literal] = STATE(3037), + [sym_boolean_literal] = STATE(3037), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3035), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(748), [sym_preproc_endregion] = STATE(748), [sym_preproc_line] = STATE(748), @@ -168193,167 +168080,167 @@ 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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3363), - [sym__identifier_token] = ACTIONS(1387), - [anon_sym_alias] = ACTIONS(1389), - [anon_sym_global] = ACTIONS(1389), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1391), - [anon_sym_LPAREN] = ACTIONS(1775), - [anon_sym_ref] = ACTIONS(1777), - [anon_sym_LBRACE] = ACTIONS(1397), - [anon_sym_delegate] = ACTIONS(1399), - [anon_sym_async] = ACTIONS(1047), - [anon_sym_file] = ACTIONS(1389), - [anon_sym_new] = ACTIONS(1401), - [anon_sym_readonly] = ACTIONS(2749), - [anon_sym_where] = ACTIONS(1389), - [anon_sym_notnull] = ACTIONS(1389), - [anon_sym_unmanaged] = ACTIONS(1389), - [anon_sym_checked] = ACTIONS(1403), - [anon_sym_BANG] = ACTIONS(1781), - [anon_sym_TILDE] = ACTIONS(1781), - [anon_sym_PLUS_PLUS] = ACTIONS(1781), - [anon_sym_DASH_DASH] = ACTIONS(1781), - [anon_sym_true] = ACTIONS(1409), - [anon_sym_false] = ACTIONS(1409), - [anon_sym_PLUS] = ACTIONS(1779), - [anon_sym_DASH] = ACTIONS(1779), - [anon_sym_STAR] = ACTIONS(1411), - [anon_sym_CARET] = ACTIONS(1781), - [anon_sym_AMP] = ACTIONS(1781), - [anon_sym_this] = ACTIONS(1413), - [anon_sym_scoped] = ACTIONS(1415), - [anon_sym_base] = ACTIONS(1417), - [anon_sym_var] = ACTIONS(1419), - [sym_predefined_type] = ACTIONS(1421), - [anon_sym_unchecked] = ACTIONS(1403), - [anon_sym_yield] = ACTIONS(1389), - [anon_sym_default] = ACTIONS(1423), - [anon_sym_throw] = ACTIONS(1783), - [anon_sym_when] = ACTIONS(1389), - [anon_sym_await] = ACTIONS(1785), - [anon_sym_DOT_DOT] = ACTIONS(1787), - [anon_sym_from] = ACTIONS(1431), - [anon_sym_into] = ACTIONS(1389), - [anon_sym_join] = ACTIONS(1389), - [anon_sym_on] = ACTIONS(1389), - [anon_sym_equals] = ACTIONS(1389), - [anon_sym_let] = ACTIONS(1389), - [anon_sym_orderby] = ACTIONS(1389), - [anon_sym_ascending] = ACTIONS(1389), - [anon_sym_descending] = ACTIONS(1389), - [anon_sym_group] = ACTIONS(1389), - [anon_sym_by] = ACTIONS(1389), - [anon_sym_select] = ACTIONS(1389), - [anon_sym_stackalloc] = ACTIONS(1433), - [anon_sym_sizeof] = ACTIONS(1435), - [anon_sym_typeof] = ACTIONS(1437), - [anon_sym___makeref] = ACTIONS(1439), - [anon_sym___reftype] = ACTIONS(1441), - [anon_sym___refvalue] = ACTIONS(1443), - [sym_null_literal] = ACTIONS(1445), - [anon_sym_SQUOTE] = ACTIONS(1447), - [sym_integer_literal] = ACTIONS(1445), - [sym_real_literal] = ACTIONS(1449), - [anon_sym_DQUOTE] = ACTIONS(1451), - [sym_verbatim_string_literal] = ACTIONS(1449), - [aux_sym_preproc_if_token1] = ACTIONS(1453), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1455), - [sym_interpolation_verbatim_start] = ACTIONS(1457), - [sym_interpolation_raw_start] = ACTIONS(1459), - [sym_raw_string_start] = ACTIONS(1461), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3455), + [sym__identifier_token] = ACTIONS(25), + [anon_sym_alias] = ACTIONS(29), + [anon_sym_global] = ACTIONS(29), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1239), + [anon_sym_LPAREN] = ACTIONS(1495), + [anon_sym_ref] = ACTIONS(1497), + [anon_sym_LBRACE] = ACTIONS(2839), + [anon_sym_delegate] = ACTIONS(1247), + [anon_sym_async] = ACTIONS(1045), + [anon_sym_file] = ACTIONS(29), + [anon_sym_new] = ACTIONS(1249), + [anon_sym_where] = ACTIONS(29), + [anon_sym_notnull] = ACTIONS(29), + [anon_sym_unmanaged] = ACTIONS(29), + [anon_sym_checked] = ACTIONS(1251), + [anon_sym_BANG] = ACTIONS(1501), + [anon_sym_TILDE] = ACTIONS(1501), + [anon_sym_PLUS_PLUS] = ACTIONS(1501), + [anon_sym_DASH_DASH] = ACTIONS(1501), + [anon_sym_true] = ACTIONS(1257), + [anon_sym_false] = ACTIONS(1257), + [anon_sym_PLUS] = ACTIONS(1499), + [anon_sym_DASH] = ACTIONS(1499), + [anon_sym_STAR] = ACTIONS(1503), + [anon_sym_CARET] = ACTIONS(1501), + [anon_sym_AMP] = ACTIONS(1501), + [anon_sym_this] = ACTIONS(1261), + [anon_sym_scoped] = ACTIONS(85), + [anon_sym_base] = ACTIONS(1263), + [anon_sym_var] = ACTIONS(89), + [sym_predefined_type] = ACTIONS(1265), + [anon_sym_unchecked] = ACTIONS(1251), + [anon_sym_yield] = ACTIONS(29), + [anon_sym_default] = ACTIONS(1267), + [anon_sym_throw] = ACTIONS(1505), + [anon_sym_when] = ACTIONS(29), + [anon_sym_await] = ACTIONS(1507), + [anon_sym_DOT_DOT] = ACTIONS(1509), + [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(1275), + [anon_sym_sizeof] = ACTIONS(1277), + [anon_sym_typeof] = ACTIONS(1279), + [anon_sym___makeref] = ACTIONS(1281), + [anon_sym___reftype] = ACTIONS(1283), + [anon_sym___refvalue] = ACTIONS(1285), + [sym_null_literal] = ACTIONS(1287), + [anon_sym_SQUOTE] = ACTIONS(1289), + [sym_integer_literal] = ACTIONS(1287), + [sym_real_literal] = ACTIONS(1291), + [anon_sym_DQUOTE] = ACTIONS(1293), + [sym_verbatim_string_literal] = ACTIONS(1291), + [aux_sym_preproc_if_token1] = ACTIONS(1295), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + [sym_interpolation_regular_start] = ACTIONS(1297), + [sym_interpolation_verbatim_start] = ACTIONS(1299), + [sym_interpolation_raw_start] = ACTIONS(1301), + [sym_raw_string_start] = ACTIONS(1303), }, [749] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2762), - [sym__name] = STATE(5892), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2316), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(2291), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(4688), - [sym_non_lvalue_expression] = STATE(3438), - [sym_lvalue_expression] = STATE(3500), - [sym__expression_statement_expression] = STATE(3362), - [sym_assignment_expression] = STATE(3449), - [sym_binary_expression] = STATE(3362), - [sym_postfix_unary_expression] = STATE(3449), - [sym_prefix_unary_expression] = STATE(3449), - [sym__pointer_indirection_expression] = STATE(2747), - [sym_query_expression] = STATE(3362), - [sym_from_clause] = STATE(6147), - [sym_conditional_expression] = STATE(3362), - [sym_conditional_access_expression] = STATE(3362), - [sym_as_expression] = STATE(3362), - [sym_is_expression] = STATE(3362), - [sym_is_pattern_expression] = STATE(3362), - [sym_cast_expression] = STATE(3362), - [sym_checked_expression] = STATE(3362), - [sym_invocation_expression] = STATE(3449), - [sym_switch_expression] = STATE(3362), - [sym_await_expression] = STATE(3449), - [sym_throw_expression] = STATE(3362), - [sym_element_access_expression] = STATE(2747), - [sym_interpolated_string_expression] = STATE(3362), - [sym_member_access_expression] = STATE(2747), - [sym_object_creation_expression] = STATE(3449), - [sym_parenthesized_expression] = STATE(3449), - [sym__parenthesized_lvalue_expression] = STATE(2747), - [sym_lambda_expression] = STATE(3362), - [sym__lambda_expression_init] = STATE(7516), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3362), - [sym_anonymous_method_expression] = STATE(3362), - [sym_anonymous_object_creation_expression] = STATE(3362), - [sym_implicit_array_creation_expression] = STATE(3362), - [sym_implicit_object_creation_expression] = STATE(3362), - [sym_implicit_stackalloc_expression] = STATE(3362), - [sym_initializer_expression] = STATE(3362), - [sym_default_expression] = STATE(3362), - [sym_with_expression] = STATE(3362), - [sym_sizeof_expression] = STATE(3362), - [sym_typeof_expression] = STATE(3362), - [sym_makeref_expression] = STATE(3362), - [sym_ref_expression] = STATE(3362), - [sym_reftype_expression] = STATE(3362), - [sym_refvalue_expression] = STATE(3362), - [sym_stackalloc_expression] = STATE(3362), - [sym_range_expression] = STATE(3362), - [sym_tuple_expression] = STATE(2747), - [sym_literal] = STATE(3362), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2267), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3362), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(5873), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2238), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(5171), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3468), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3102), + [sym_postfix_unary_expression] = STATE(3079), + [sym_prefix_unary_expression] = STATE(3079), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6134), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3102), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3079), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3102), + [sym_member_access_expression] = STATE(2472), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3079), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7309), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym__anonymous_object_member_declarator] = STATE(7088), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(3102), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3102), + [sym_typeof_expression] = STATE(3102), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2472), + [sym_literal] = STATE(3102), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2297), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(749), [sym_preproc_endregion] = STATE(749), [sym_preproc_line] = STATE(749), @@ -168363,48 +168250,47 @@ 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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3385), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1307), - [anon_sym_LPAREN] = ACTIONS(1609), - [anon_sym_ref] = ACTIONS(1611), - [anon_sym_LBRACE] = ACTIONS(1313), - [anon_sym_delegate] = ACTIONS(1315), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1479), + [anon_sym_LPAREN] = ACTIONS(659), + [anon_sym_ref] = ACTIONS(663), + [anon_sym_LBRACE] = ACTIONS(1481), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1613), - [anon_sym_readonly] = ACTIONS(2749), + [anon_sym_new] = ACTIONS(1059), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1319), - [anon_sym_BANG] = ACTIONS(1617), - [anon_sym_TILDE] = ACTIONS(1617), - [anon_sym_PLUS_PLUS] = ACTIONS(1617), - [anon_sym_DASH_DASH] = ACTIONS(1617), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(1485), + [anon_sym_TILDE] = ACTIONS(1485), + [anon_sym_PLUS_PLUS] = ACTIONS(1485), + [anon_sym_DASH_DASH] = ACTIONS(1485), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1615), - [anon_sym_DASH] = ACTIONS(1615), - [anon_sym_STAR] = ACTIONS(1619), - [anon_sym_CARET] = ACTIONS(1617), - [anon_sym_AMP] = ACTIONS(1617), - [anon_sym_this] = ACTIONS(1323), + [anon_sym_PLUS] = ACTIONS(1483), + [anon_sym_DASH] = ACTIONS(1483), + [anon_sym_STAR] = ACTIONS(683), + [anon_sym_CARET] = ACTIONS(1485), + [anon_sym_AMP] = ACTIONS(1485), + [anon_sym_this] = ACTIONS(83), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1325), + [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1319), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1621), + [anon_sym_throw] = ACTIONS(1077), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1623), - [anon_sym_DOT_DOT] = ACTIONS(1625), + [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), @@ -168417,19 +168303,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1333), + [anon_sym_stackalloc] = ACTIONS(127), [anon_sym_sizeof] = ACTIONS(129), [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(1335), - [anon_sym___reftype] = ACTIONS(1337), - [anon_sym___refvalue] = ACTIONS(1339), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), [sym_null_literal] = ACTIONS(139), [anon_sym_SQUOTE] = ACTIONS(141), [sym_integer_literal] = ACTIONS(139), [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1341), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -168446,84 +168332,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [750] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2610), - [sym__name] = STATE(5879), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2197), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(2291), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(4211), - [sym_non_lvalue_expression] = STATE(3277), - [sym_lvalue_expression] = STATE(3134), - [sym__expression_statement_expression] = STATE(3228), - [sym_assignment_expression] = STATE(3289), - [sym_binary_expression] = STATE(3228), - [sym_postfix_unary_expression] = STATE(3289), - [sym_prefix_unary_expression] = STATE(3289), - [sym__pointer_indirection_expression] = STATE(2609), - [sym_query_expression] = STATE(3228), - [sym_from_clause] = STATE(6162), - [sym_conditional_expression] = STATE(3228), - [sym_conditional_access_expression] = STATE(3228), - [sym_as_expression] = STATE(3228), - [sym_is_expression] = STATE(3228), - [sym_is_pattern_expression] = STATE(3228), - [sym_cast_expression] = STATE(3228), - [sym_checked_expression] = STATE(3228), - [sym_invocation_expression] = STATE(3289), - [sym_switch_expression] = STATE(3228), - [sym_await_expression] = STATE(3289), - [sym_throw_expression] = STATE(3228), - [sym_element_access_expression] = STATE(2609), - [sym_interpolated_string_expression] = STATE(3228), - [sym_member_access_expression] = STATE(2609), - [sym_object_creation_expression] = STATE(3289), - [sym_parenthesized_expression] = STATE(3289), - [sym__parenthesized_lvalue_expression] = STATE(2609), - [sym_lambda_expression] = STATE(3228), - [sym__lambda_expression_init] = STATE(7695), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3228), - [sym_anonymous_method_expression] = STATE(3228), - [sym_anonymous_object_creation_expression] = STATE(3228), - [sym_implicit_array_creation_expression] = STATE(3228), - [sym_implicit_object_creation_expression] = STATE(3228), - [sym_implicit_stackalloc_expression] = STATE(3228), - [sym_initializer_expression] = STATE(3228), - [sym_default_expression] = STATE(3228), - [sym_with_expression] = STATE(3228), - [sym_sizeof_expression] = STATE(3228), - [sym_typeof_expression] = STATE(3228), - [sym_makeref_expression] = STATE(3228), - [sym_ref_expression] = STATE(3228), - [sym_reftype_expression] = STATE(3228), - [sym_refvalue_expression] = STATE(3228), - [sym_stackalloc_expression] = STATE(3228), - [sym_range_expression] = STATE(3228), - [sym_tuple_expression] = STATE(2609), - [sym_literal] = STATE(3228), - [sym_character_literal] = STATE(3278), - [sym_string_literal] = STATE(3278), - [sym_raw_string_literal] = STATE(3278), - [sym_boolean_literal] = STATE(3278), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3228), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(5873), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2238), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(5052), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3468), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3102), + [sym_postfix_unary_expression] = STATE(3079), + [sym_prefix_unary_expression] = STATE(3079), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6134), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3102), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3079), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3102), + [sym_member_access_expression] = STATE(2472), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3079), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7309), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(3102), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3102), + [sym_typeof_expression] = STATE(3102), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2472), + [sym_literal] = STATE(3102), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(750), [sym_preproc_endregion] = STATE(750), [sym_preproc_line] = STATE(750), @@ -168533,48 +168419,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(750), [sym_preproc_define] = STATE(750), [sym_preproc_undef] = STATE(750), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3396), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1153), - [anon_sym_LPAREN] = ACTIONS(1371), - [anon_sym_ref] = ACTIONS(1373), - [anon_sym_LBRACE] = ACTIONS(1159), - [anon_sym_delegate] = ACTIONS(1161), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1479), + [anon_sym_LPAREN] = ACTIONS(659), + [anon_sym_RPAREN] = ACTIONS(2909), + [anon_sym_ref] = ACTIONS(663), + [anon_sym_LBRACE] = ACTIONS(1481), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1163), - [anon_sym_readonly] = ACTIONS(2749), + [anon_sym_new] = ACTIONS(1059), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1167), - [anon_sym_BANG] = ACTIONS(1377), - [anon_sym_TILDE] = ACTIONS(1377), - [anon_sym_PLUS_PLUS] = ACTIONS(1377), - [anon_sym_DASH_DASH] = ACTIONS(1377), - [anon_sym_true] = ACTIONS(1173), - [anon_sym_false] = ACTIONS(1173), - [anon_sym_PLUS] = ACTIONS(1375), - [anon_sym_DASH] = ACTIONS(1375), - [anon_sym_STAR] = ACTIONS(1379), - [anon_sym_CARET] = ACTIONS(1377), - [anon_sym_AMP] = ACTIONS(1377), - [anon_sym_this] = ACTIONS(1177), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(1485), + [anon_sym_TILDE] = ACTIONS(1485), + [anon_sym_PLUS_PLUS] = ACTIONS(1485), + [anon_sym_DASH_DASH] = ACTIONS(1485), + [anon_sym_true] = ACTIONS(77), + [anon_sym_false] = ACTIONS(77), + [anon_sym_PLUS] = ACTIONS(1483), + [anon_sym_DASH] = ACTIONS(1483), + [anon_sym_STAR] = ACTIONS(683), + [anon_sym_CARET] = ACTIONS(1485), + [anon_sym_AMP] = ACTIONS(1485), + [anon_sym_this] = ACTIONS(83), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1179), + [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1181), - [anon_sym_unchecked] = ACTIONS(1167), + [sym_predefined_type] = ACTIONS(91), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1183), - [anon_sym_throw] = ACTIONS(1381), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(1077), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1383), - [anon_sym_DOT_DOT] = ACTIONS(1385), + [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), @@ -168587,19 +168473,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1191), - [anon_sym_sizeof] = ACTIONS(1193), - [anon_sym_typeof] = ACTIONS(1195), - [anon_sym___makeref] = ACTIONS(1197), - [anon_sym___reftype] = ACTIONS(1199), - [anon_sym___refvalue] = ACTIONS(1201), - [sym_null_literal] = ACTIONS(1203), - [anon_sym_SQUOTE] = ACTIONS(1205), - [sym_integer_literal] = ACTIONS(1203), - [sym_real_literal] = ACTIONS(1207), - [anon_sym_DQUOTE] = ACTIONS(1209), - [sym_verbatim_string_literal] = ACTIONS(1207), - [aux_sym_preproc_if_token1] = ACTIONS(1211), + [anon_sym_stackalloc] = ACTIONS(127), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_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), @@ -168610,90 +168496,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1213), - [sym_interpolation_verbatim_start] = ACTIONS(1215), - [sym_interpolation_raw_start] = ACTIONS(1217), - [sym_raw_string_start] = ACTIONS(1219), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [sym_interpolation_raw_start] = ACTIONS(155), + [sym_raw_string_start] = ACTIONS(157), }, [751] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(5160), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2204), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(5566), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3461), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3080), - [sym_postfix_unary_expression] = STATE(3111), - [sym_prefix_unary_expression] = STATE(3111), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6154), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3080), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3111), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3080), - [sym_member_access_expression] = STATE(2484), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3111), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7547), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(3080), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3080), - [sym_typeof_expression] = STATE(3080), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2484), - [sym_literal] = STATE(3080), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(5152), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2196), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(5599), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3356), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3102), + [sym_postfix_unary_expression] = STATE(3079), + [sym_prefix_unary_expression] = STATE(3079), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6134), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3102), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3079), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3102), + [sym_member_access_expression] = STATE(2472), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3079), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7627), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(3102), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3102), + [sym_typeof_expression] = STATE(3102), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2472), + [sym_literal] = STATE(3102), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(751), [sym_preproc_endregion] = STATE(751), [sym_preproc_line] = STATE(751), @@ -168703,25 +168589,25 @@ 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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), - [anon_sym_SEMI] = ACTIONS(2875), + [anon_sym_SEMI] = ACTIONS(2125), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1481), - [anon_sym_LPAREN] = ACTIONS(1497), - [anon_sym_ref] = ACTIONS(1499), - [anon_sym_LBRACE] = ACTIONS(1487), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1479), + [anon_sym_LPAREN] = ACTIONS(1511), + [anon_sym_ref] = ACTIONS(1513), + [anon_sym_LBRACE] = ACTIONS(1481), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1501), + [anon_sym_new] = ACTIONS(1515), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1067), + [anon_sym_checked] = ACTIONS(1065), [anon_sym_BANG] = ACTIONS(75), [anon_sym_TILDE] = ACTIONS(75), [anon_sym_PLUS_PLUS] = ACTIONS(75), @@ -168738,13 +168624,13 @@ 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_unchecked] = ACTIONS(1067), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1503), + [anon_sym_throw] = ACTIONS(1517), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1505), - [anon_sym_DOT_DOT] = ACTIONS(1507), + [anon_sym_await] = ACTIONS(1519), + [anon_sym_DOT_DOT] = ACTIONS(1521), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -168769,7 +168655,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(1089), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -168786,84 +168672,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [752] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(2622), - [sym_alias_qualified_name] = STATE(2373), - [sym__simple_name] = STATE(2190), - [sym_qualified_name] = STATE(2373), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(2291), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(2378), - [sym__array_base_type] = STATE(7103), - [sym_nullable_type] = STATE(2379), - [sym_pointer_type] = STATE(2379), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(2379), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(2380), - [sym_expression] = STATE(4871), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3520), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3080), - [sym_postfix_unary_expression] = STATE(3111), - [sym_prefix_unary_expression] = STATE(3111), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6154), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3080), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3111), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3080), - [sym_member_access_expression] = STATE(2484), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3111), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7530), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(3080), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3080), - [sym_typeof_expression] = STATE(3080), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2484), - [sym_literal] = STATE(3080), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2214), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(5685), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2256), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(2279), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(5042), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3510), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3102), + [sym_postfix_unary_expression] = STATE(3079), + [sym_prefix_unary_expression] = STATE(3079), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6134), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3102), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3079), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3102), + [sym_member_access_expression] = STATE(2472), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3079), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7425), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(3102), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3102), + [sym_typeof_expression] = STATE(3102), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2472), + [sym_literal] = STATE(3102), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(752), [sym_preproc_endregion] = STATE(752), [sym_preproc_line] = STATE(752), @@ -168873,47 +168759,47 @@ 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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1481), - [anon_sym_LPAREN] = ACTIONS(2863), - [anon_sym_ref] = ACTIONS(2389), - [anon_sym_LBRACE] = ACTIONS(1487), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1479), + [anon_sym_LPAREN] = ACTIONS(43), + [anon_sym_ref] = ACTIONS(2609), + [anon_sym_LBRACE] = ACTIONS(1481), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1061), - [anon_sym_readonly] = ACTIONS(2877), + [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(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_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(1525), + [anon_sym_TILDE] = ACTIONS(1525), + [anon_sym_PLUS_PLUS] = ACTIONS(1525), + [anon_sym_DASH_DASH] = ACTIONS(1525), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1585), - [anon_sym_DASH] = ACTIONS(1585), + [anon_sym_PLUS] = ACTIONS(1523), + [anon_sym_DASH] = ACTIONS(1523), [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(1587), - [anon_sym_AMP] = ACTIONS(1587), + [anon_sym_CARET] = ACTIONS(1525), + [anon_sym_AMP] = ACTIONS(1525), [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(2395), + [anon_sym_scoped] = ACTIONS(2301), [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(2879), - [sym_predefined_type] = ACTIONS(2435), - [anon_sym_unchecked] = ACTIONS(1067), + [anon_sym_var] = ACTIONS(2629), + [sym_predefined_type] = ACTIONS(91), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1589), + [anon_sym_throw] = ACTIONS(1527), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1591), + [anon_sym_await] = ACTIONS(1529), [anon_sym_DOT_DOT] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), @@ -168939,7 +168825,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(1089), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -168956,85 +168842,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [753] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_block] = STATE(3316), - [sym_bracketed_argument_list] = STATE(2610), - [sym__name] = STATE(5886), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2319), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(4453), - [sym_non_lvalue_expression] = STATE(3277), - [sym_lvalue_expression] = STATE(3347), - [sym__expression_statement_expression] = STATE(3228), - [sym_assignment_expression] = STATE(3289), - [sym_binary_expression] = STATE(3228), - [sym_postfix_unary_expression] = STATE(3289), - [sym_prefix_unary_expression] = STATE(3289), - [sym__pointer_indirection_expression] = STATE(2609), - [sym_query_expression] = STATE(3228), - [sym_from_clause] = STATE(6150), - [sym_conditional_expression] = STATE(3228), - [sym_conditional_access_expression] = STATE(3228), - [sym_as_expression] = STATE(3228), - [sym_is_expression] = STATE(3228), - [sym_is_pattern_expression] = STATE(3228), - [sym_cast_expression] = STATE(3228), - [sym_checked_expression] = STATE(3228), - [sym_invocation_expression] = STATE(3289), - [sym_switch_expression] = STATE(3228), - [sym_await_expression] = STATE(3289), - [sym_throw_expression] = STATE(3228), - [sym_element_access_expression] = STATE(2609), - [sym_interpolated_string_expression] = STATE(3228), - [sym_member_access_expression] = STATE(2609), - [sym_object_creation_expression] = STATE(3289), - [sym_parenthesized_expression] = STATE(3289), - [sym__parenthesized_lvalue_expression] = STATE(2609), - [sym_lambda_expression] = STATE(3228), - [sym__lambda_expression_init] = STATE(7531), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3228), - [sym_anonymous_method_expression] = STATE(3228), - [sym_anonymous_object_creation_expression] = STATE(3228), - [sym_implicit_array_creation_expression] = STATE(3228), - [sym_implicit_object_creation_expression] = STATE(3228), - [sym_implicit_stackalloc_expression] = STATE(3228), - [sym_initializer_expression] = STATE(3228), - [sym_default_expression] = STATE(3228), - [sym_with_expression] = STATE(3228), - [sym_sizeof_expression] = STATE(3228), - [sym_typeof_expression] = STATE(3228), - [sym_makeref_expression] = STATE(3228), - [sym_ref_expression] = STATE(3228), - [sym_reftype_expression] = STATE(3228), - [sym_refvalue_expression] = STATE(3228), - [sym_stackalloc_expression] = STATE(3228), - [sym_range_expression] = STATE(3228), - [sym_tuple_expression] = STATE(2609), - [sym_literal] = STATE(3228), - [sym_character_literal] = STATE(3278), - [sym_string_literal] = STATE(3278), - [sym_raw_string_literal] = STATE(3278), - [sym_boolean_literal] = STATE(3278), - [sym_identifier] = STATE(2267), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3228), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(5881), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2386), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(2279), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(4055), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3110), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3102), + [sym_postfix_unary_expression] = STATE(3079), + [sym_prefix_unary_expression] = STATE(3079), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6153), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3102), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3079), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3102), + [sym_member_access_expression] = STATE(2472), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3079), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7637), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(3102), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3102), + [sym_typeof_expression] = STATE(3102), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2472), + [sym_literal] = STATE(3102), + [sym_character_literal] = STATE(3037), + [sym_string_literal] = STATE(3037), + [sym_raw_string_literal] = STATE(3037), + [sym_boolean_literal] = STATE(3037), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(753), [sym_preproc_endregion] = STATE(753), [sym_preproc_line] = STATE(753), @@ -169044,47 +168929,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(753), [sym_preproc_define] = STATE(753), [sym_preproc_undef] = STATE(753), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3396), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1153), - [anon_sym_LPAREN] = ACTIONS(1525), - [anon_sym_ref] = ACTIONS(1527), - [anon_sym_LBRACE] = ACTIONS(2843), - [anon_sym_delegate] = ACTIONS(1161), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1479), + [anon_sym_LPAREN] = ACTIONS(1895), + [anon_sym_ref] = ACTIONS(1897), + [anon_sym_LBRACE] = ACTIONS(1481), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1529), + [anon_sym_new] = ACTIONS(1899), + [anon_sym_readonly] = ACTIONS(2767), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1167), - [anon_sym_BANG] = ACTIONS(1533), - [anon_sym_TILDE] = ACTIONS(1533), - [anon_sym_PLUS_PLUS] = ACTIONS(1533), - [anon_sym_DASH_DASH] = ACTIONS(1533), - [anon_sym_true] = ACTIONS(1173), - [anon_sym_false] = ACTIONS(1173), - [anon_sym_PLUS] = ACTIONS(1531), - [anon_sym_DASH] = ACTIONS(1531), - [anon_sym_STAR] = ACTIONS(1535), - [anon_sym_CARET] = ACTIONS(1533), - [anon_sym_AMP] = ACTIONS(1533), - [anon_sym_this] = ACTIONS(1177), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(1903), + [anon_sym_TILDE] = ACTIONS(1903), + [anon_sym_PLUS_PLUS] = ACTIONS(1903), + [anon_sym_DASH_DASH] = ACTIONS(1903), + [anon_sym_true] = ACTIONS(1257), + [anon_sym_false] = ACTIONS(1257), + [anon_sym_PLUS] = ACTIONS(1901), + [anon_sym_DASH] = ACTIONS(1901), + [anon_sym_STAR] = ACTIONS(1905), + [anon_sym_CARET] = ACTIONS(1903), + [anon_sym_AMP] = ACTIONS(1903), + [anon_sym_this] = ACTIONS(83), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1179), + [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1181), - [anon_sym_unchecked] = ACTIONS(1167), + [sym_predefined_type] = ACTIONS(1265), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1183), - [anon_sym_throw] = ACTIONS(1537), + [anon_sym_default] = ACTIONS(1267), + [anon_sym_throw] = ACTIONS(1907), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1539), - [anon_sym_DOT_DOT] = ACTIONS(1541), + [anon_sym_await] = ACTIONS(1909), + [anon_sym_DOT_DOT] = ACTIONS(1911), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -169097,19 +168983,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1191), - [anon_sym_sizeof] = ACTIONS(1193), - [anon_sym_typeof] = ACTIONS(1195), - [anon_sym___makeref] = ACTIONS(1197), - [anon_sym___reftype] = ACTIONS(1199), - [anon_sym___refvalue] = ACTIONS(1201), - [sym_null_literal] = ACTIONS(1203), - [anon_sym_SQUOTE] = ACTIONS(1205), - [sym_integer_literal] = ACTIONS(1203), - [sym_real_literal] = ACTIONS(1207), - [anon_sym_DQUOTE] = ACTIONS(1209), - [sym_verbatim_string_literal] = ACTIONS(1207), - [aux_sym_preproc_if_token1] = ACTIONS(1211), + [anon_sym_stackalloc] = ACTIONS(127), + [anon_sym_sizeof] = ACTIONS(1277), + [anon_sym_typeof] = ACTIONS(1279), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), + [sym_null_literal] = ACTIONS(1287), + [anon_sym_SQUOTE] = ACTIONS(1289), + [sym_integer_literal] = ACTIONS(1287), + [sym_real_literal] = ACTIONS(1291), + [anon_sym_DQUOTE] = ACTIONS(1293), + [sym_verbatim_string_literal] = ACTIONS(1291), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -169120,90 +169006,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1213), - [sym_interpolation_verbatim_start] = ACTIONS(1215), - [sym_interpolation_raw_start] = ACTIONS(1217), - [sym_raw_string_start] = ACTIONS(1219), + [sym_interpolation_regular_start] = ACTIONS(1297), + [sym_interpolation_verbatim_start] = ACTIONS(1299), + [sym_interpolation_raw_start] = ACTIONS(1301), + [sym_raw_string_start] = ACTIONS(1303), }, [754] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2762), - [sym__name] = STATE(5910), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2247), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(2291), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(4195), - [sym_non_lvalue_expression] = STATE(3438), - [sym_lvalue_expression] = STATE(3136), - [sym__expression_statement_expression] = STATE(3362), - [sym_assignment_expression] = STATE(3449), - [sym_binary_expression] = STATE(3362), - [sym_postfix_unary_expression] = STATE(3449), - [sym_prefix_unary_expression] = STATE(3449), - [sym__pointer_indirection_expression] = STATE(2747), - [sym_query_expression] = STATE(3362), - [sym_from_clause] = STATE(6171), - [sym_conditional_expression] = STATE(3362), - [sym_conditional_access_expression] = STATE(3362), - [sym_as_expression] = STATE(3362), - [sym_is_expression] = STATE(3362), - [sym_is_pattern_expression] = STATE(3362), - [sym_cast_expression] = STATE(3362), - [sym_checked_expression] = STATE(3362), - [sym_invocation_expression] = STATE(3449), - [sym_switch_expression] = STATE(3362), - [sym_await_expression] = STATE(3449), - [sym_throw_expression] = STATE(3362), - [sym_element_access_expression] = STATE(2747), - [sym_interpolated_string_expression] = STATE(3362), - [sym_member_access_expression] = STATE(2747), - [sym_object_creation_expression] = STATE(3449), - [sym_parenthesized_expression] = STATE(3449), - [sym__parenthesized_lvalue_expression] = STATE(2747), - [sym_lambda_expression] = STATE(3362), - [sym__lambda_expression_init] = STATE(7452), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3362), - [sym_anonymous_method_expression] = STATE(3362), - [sym_anonymous_object_creation_expression] = STATE(3362), - [sym_implicit_array_creation_expression] = STATE(3362), - [sym_implicit_object_creation_expression] = STATE(3362), - [sym_implicit_stackalloc_expression] = STATE(3362), - [sym_initializer_expression] = STATE(3362), - [sym_default_expression] = STATE(3362), - [sym_with_expression] = STATE(3362), - [sym_sizeof_expression] = STATE(3362), - [sym_typeof_expression] = STATE(3362), - [sym_makeref_expression] = STATE(3362), - [sym_ref_expression] = STATE(3362), - [sym_reftype_expression] = STATE(3362), - [sym_refvalue_expression] = STATE(3362), - [sym_stackalloc_expression] = STATE(3362), - [sym_range_expression] = STATE(3362), - [sym_tuple_expression] = STATE(2747), - [sym_literal] = STATE(3362), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3362), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2901), + [sym__name] = STATE(5889), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2349), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(2279), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(3711), + [sym_non_lvalue_expression] = STATE(3685), + [sym_lvalue_expression] = STATE(2985), + [sym__expression_statement_expression] = STATE(3836), + [sym_assignment_expression] = STATE(3689), + [sym_binary_expression] = STATE(3836), + [sym_postfix_unary_expression] = STATE(3689), + [sym_prefix_unary_expression] = STATE(3689), + [sym__pointer_indirection_expression] = STATE(2906), + [sym_query_expression] = STATE(3836), + [sym_from_clause] = STATE(6157), + [sym_conditional_expression] = STATE(3836), + [sym_conditional_access_expression] = STATE(3836), + [sym_as_expression] = STATE(3836), + [sym_is_expression] = STATE(3836), + [sym_is_pattern_expression] = STATE(3836), + [sym_cast_expression] = STATE(3836), + [sym_checked_expression] = STATE(3836), + [sym_invocation_expression] = STATE(3689), + [sym_switch_expression] = STATE(3836), + [sym_await_expression] = STATE(3689), + [sym_throw_expression] = STATE(3836), + [sym_element_access_expression] = STATE(2906), + [sym_interpolated_string_expression] = STATE(3836), + [sym_member_access_expression] = STATE(2906), + [sym_object_creation_expression] = STATE(3689), + [sym_parenthesized_expression] = STATE(3689), + [sym__parenthesized_lvalue_expression] = STATE(2906), + [sym_lambda_expression] = STATE(3836), + [sym__lambda_expression_init] = STATE(7485), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3836), + [sym_anonymous_method_expression] = STATE(3836), + [sym_anonymous_object_creation_expression] = STATE(3836), + [sym_implicit_array_creation_expression] = STATE(3836), + [sym_implicit_object_creation_expression] = STATE(3836), + [sym_implicit_stackalloc_expression] = STATE(3836), + [sym_initializer_expression] = STATE(3836), + [sym_default_expression] = STATE(3836), + [sym_with_expression] = STATE(3836), + [sym_sizeof_expression] = STATE(3836), + [sym_typeof_expression] = STATE(3836), + [sym_makeref_expression] = STATE(3836), + [sym_ref_expression] = STATE(3836), + [sym_reftype_expression] = STATE(3836), + [sym_refvalue_expression] = STATE(3836), + [sym_stackalloc_expression] = STATE(3836), + [sym_range_expression] = STATE(3836), + [sym_tuple_expression] = STATE(2906), + [sym_literal] = STATE(3836), + [sym_character_literal] = STATE(3843), + [sym_string_literal] = STATE(3843), + [sym_raw_string_literal] = STATE(3843), + [sym_boolean_literal] = STATE(3843), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3836), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(754), [sym_preproc_endregion] = STATE(754), [sym_preproc_line] = STATE(754), @@ -169213,48 +169099,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(754), [sym_preproc_define] = STATE(754), [sym_preproc_undef] = STATE(754), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3385), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3477), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1307), - [anon_sym_LPAREN] = ACTIONS(1309), - [anon_sym_ref] = ACTIONS(1311), - [anon_sym_LBRACE] = ACTIONS(1313), - [anon_sym_delegate] = ACTIONS(1315), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1655), + [anon_sym_LPAREN] = ACTIONS(2043), + [anon_sym_ref] = ACTIONS(2045), + [anon_sym_LBRACE] = ACTIONS(1661), + [anon_sym_delegate] = ACTIONS(1663), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1317), - [anon_sym_readonly] = ACTIONS(2749), + [anon_sym_new] = ACTIONS(1759), + [anon_sym_readonly] = ACTIONS(2767), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1319), - [anon_sym_BANG] = ACTIONS(1069), - [anon_sym_TILDE] = ACTIONS(1069), - [anon_sym_PLUS_PLUS] = ACTIONS(1069), - [anon_sym_DASH_DASH] = ACTIONS(1069), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1071), - [anon_sym_DASH] = ACTIONS(1071), - [anon_sym_STAR] = ACTIONS(1321), - [anon_sym_CARET] = ACTIONS(1069), - [anon_sym_AMP] = ACTIONS(1069), - [anon_sym_this] = ACTIONS(1323), + [anon_sym_checked] = ACTIONS(1667), + [anon_sym_BANG] = ACTIONS(2049), + [anon_sym_TILDE] = ACTIONS(2049), + [anon_sym_PLUS_PLUS] = ACTIONS(2049), + [anon_sym_DASH_DASH] = ACTIONS(2049), + [anon_sym_true] = ACTIONS(1673), + [anon_sym_false] = ACTIONS(1673), + [anon_sym_PLUS] = ACTIONS(2047), + [anon_sym_DASH] = ACTIONS(2047), + [anon_sym_STAR] = ACTIONS(1765), + [anon_sym_CARET] = ACTIONS(2049), + [anon_sym_AMP] = ACTIONS(2049), + [anon_sym_this] = ACTIONS(1677), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1325), + [anon_sym_base] = ACTIONS(1679), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1319), + [sym_predefined_type] = ACTIONS(1681), + [anon_sym_unchecked] = ACTIONS(1667), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1327), + [anon_sym_default] = ACTIONS(1683), + [anon_sym_throw] = ACTIONS(2051), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1329), - [anon_sym_DOT_DOT] = ACTIONS(1331), + [anon_sym_await] = ACTIONS(2053), + [anon_sym_DOT_DOT] = ACTIONS(2055), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -169267,19 +169153,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1333), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(1335), - [anon_sym___reftype] = ACTIONS(1337), - [anon_sym___refvalue] = ACTIONS(1339), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1341), + [anon_sym_stackalloc] = ACTIONS(1691), + [anon_sym_sizeof] = ACTIONS(1693), + [anon_sym_typeof] = ACTIONS(1695), + [anon_sym___makeref] = ACTIONS(1697), + [anon_sym___reftype] = ACTIONS(1699), + [anon_sym___refvalue] = ACTIONS(1701), + [sym_null_literal] = ACTIONS(1703), + [anon_sym_SQUOTE] = ACTIONS(1705), + [sym_integer_literal] = ACTIONS(1703), + [sym_real_literal] = ACTIONS(1707), + [anon_sym_DQUOTE] = ACTIONS(1709), + [sym_verbatim_string_literal] = ACTIONS(1707), + [aux_sym_preproc_if_token1] = ACTIONS(1711), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -169290,90 +169176,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(1713), + [sym_interpolation_verbatim_start] = ACTIONS(1715), + [sym_interpolation_raw_start] = ACTIONS(1717), + [sym_raw_string_start] = ACTIONS(1719), }, [755] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(5910), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2247), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(2291), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(4930), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3529), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3080), - [sym_postfix_unary_expression] = STATE(3111), - [sym_prefix_unary_expression] = STATE(3111), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6154), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3080), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3111), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3080), - [sym_member_access_expression] = STATE(2484), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3111), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7444), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(3080), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3080), - [sym_typeof_expression] = STATE(3080), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2484), - [sym_literal] = STATE(3080), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_block] = STATE(3058), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(5152), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2196), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(5352), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3640), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3102), + [sym_postfix_unary_expression] = STATE(3079), + [sym_prefix_unary_expression] = STATE(3079), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6137), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3102), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3079), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3102), + [sym_member_access_expression] = STATE(2472), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3079), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7645), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(3102), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3102), + [sym_typeof_expression] = STATE(3102), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2472), + [sym_literal] = STATE(3102), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(755), [sym_preproc_endregion] = STATE(755), [sym_preproc_line] = STATE(755), @@ -169383,48 +169270,47 @@ 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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1481), - [anon_sym_LPAREN] = ACTIONS(1575), - [anon_sym_ref] = ACTIONS(1577), - [anon_sym_LBRACE] = ACTIONS(1487), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1479), + [anon_sym_LPAREN] = ACTIONS(2081), + [anon_sym_ref] = ACTIONS(2083), + [anon_sym_LBRACE] = ACTIONS(2855), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1501), - [anon_sym_readonly] = ACTIONS(2749), + [anon_sym_new] = ACTIONS(1059), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1067), - [anon_sym_BANG] = ACTIONS(901), - [anon_sym_TILDE] = ACTIONS(901), - [anon_sym_PLUS_PLUS] = ACTIONS(901), - [anon_sym_DASH_DASH] = ACTIONS(901), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(2087), + [anon_sym_TILDE] = ACTIONS(2087), + [anon_sym_PLUS_PLUS] = ACTIONS(2087), + [anon_sym_DASH_DASH] = ACTIONS(2087), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(903), - [anon_sym_DASH] = ACTIONS(903), - [anon_sym_STAR] = ACTIONS(905), - [anon_sym_CARET] = ACTIONS(901), - [anon_sym_AMP] = ACTIONS(901), + [anon_sym_PLUS] = ACTIONS(2085), + [anon_sym_DASH] = ACTIONS(2085), + [anon_sym_STAR] = ACTIONS(81), + [anon_sym_CARET] = ACTIONS(2087), + [anon_sym_AMP] = ACTIONS(2087), [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(1067), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1579), + [anon_sym_throw] = ACTIONS(2089), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1581), - [anon_sym_DOT_DOT] = ACTIONS(1583), + [anon_sym_await] = ACTIONS(2091), + [anon_sym_DOT_DOT] = ACTIONS(2093), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -169449,7 +169335,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(1089), + [aux_sym_preproc_if_token1] = ACTIONS(2095), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -169466,84 +169352,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [756] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(2452), - [sym_alias_qualified_name] = STATE(2373), - [sym__simple_name] = STATE(2190), - [sym_qualified_name] = STATE(2373), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(2291), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(2378), - [sym__array_base_type] = STATE(7103), - [sym_nullable_type] = STATE(2379), - [sym_pointer_type] = STATE(2379), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(2379), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(2380), - [sym_expression] = STATE(4871), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3520), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3080), - [sym_postfix_unary_expression] = STATE(3111), - [sym_prefix_unary_expression] = STATE(3111), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6154), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3080), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3111), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3080), - [sym_member_access_expression] = STATE(2484), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3111), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7530), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(3080), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3080), - [sym_typeof_expression] = STATE(3080), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2484), - [sym_literal] = STATE(3080), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2186), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2901), + [sym__name] = STATE(5883), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2359), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(2279), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(3647), + [sym_non_lvalue_expression] = STATE(3685), + [sym_lvalue_expression] = STATE(2944), + [sym__expression_statement_expression] = STATE(3836), + [sym_assignment_expression] = STATE(3689), + [sym_binary_expression] = STATE(3836), + [sym_postfix_unary_expression] = STATE(3689), + [sym_prefix_unary_expression] = STATE(3689), + [sym__pointer_indirection_expression] = STATE(2906), + [sym_query_expression] = STATE(3836), + [sym_from_clause] = STATE(6139), + [sym_conditional_expression] = STATE(3836), + [sym_conditional_access_expression] = STATE(3836), + [sym_as_expression] = STATE(3836), + [sym_is_expression] = STATE(3836), + [sym_is_pattern_expression] = STATE(3836), + [sym_cast_expression] = STATE(3836), + [sym_checked_expression] = STATE(3836), + [sym_invocation_expression] = STATE(3689), + [sym_switch_expression] = STATE(3836), + [sym_await_expression] = STATE(3689), + [sym_throw_expression] = STATE(3836), + [sym_element_access_expression] = STATE(2906), + [sym_interpolated_string_expression] = STATE(3836), + [sym_member_access_expression] = STATE(2906), + [sym_object_creation_expression] = STATE(3689), + [sym_parenthesized_expression] = STATE(3689), + [sym__parenthesized_lvalue_expression] = STATE(2906), + [sym_lambda_expression] = STATE(3836), + [sym__lambda_expression_init] = STATE(7516), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3836), + [sym_anonymous_method_expression] = STATE(3836), + [sym_anonymous_object_creation_expression] = STATE(3836), + [sym_implicit_array_creation_expression] = STATE(3836), + [sym_implicit_object_creation_expression] = STATE(3836), + [sym_implicit_stackalloc_expression] = STATE(3836), + [sym_initializer_expression] = STATE(3836), + [sym_default_expression] = STATE(3836), + [sym_with_expression] = STATE(3836), + [sym_sizeof_expression] = STATE(3836), + [sym_typeof_expression] = STATE(3836), + [sym_makeref_expression] = STATE(3836), + [sym_ref_expression] = STATE(3836), + [sym_reftype_expression] = STATE(3836), + [sym_refvalue_expression] = STATE(3836), + [sym_stackalloc_expression] = STATE(3836), + [sym_range_expression] = STATE(3836), + [sym_tuple_expression] = STATE(2906), + [sym_literal] = STATE(3836), + [sym_character_literal] = STATE(3843), + [sym_string_literal] = STATE(3843), + [sym_raw_string_literal] = STATE(3843), + [sym_boolean_literal] = STATE(3843), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3836), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(756), [sym_preproc_endregion] = STATE(756), [sym_preproc_line] = STATE(756), @@ -169553,48 +169439,48 @@ 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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3477), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1481), - [anon_sym_LPAREN] = ACTIONS(2863), - [anon_sym_ref] = ACTIONS(2369), - [anon_sym_LBRACE] = ACTIONS(1487), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1655), + [anon_sym_LPAREN] = ACTIONS(1657), + [anon_sym_ref] = ACTIONS(1659), + [anon_sym_LBRACE] = ACTIONS(1661), + [anon_sym_delegate] = ACTIONS(1663), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1061), - [anon_sym_readonly] = ACTIONS(2865), + [anon_sym_new] = ACTIONS(1665), + [anon_sym_readonly] = ACTIONS(2767), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = 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(1585), - [anon_sym_DASH] = ACTIONS(1585), - [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(1587), - [anon_sym_AMP] = ACTIONS(1587), - [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(2377), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(2879), - [sym_predefined_type] = ACTIONS(2435), - [anon_sym_unchecked] = ACTIONS(1067), + [anon_sym_checked] = ACTIONS(1667), + [anon_sym_BANG] = ACTIONS(1671), + [anon_sym_TILDE] = ACTIONS(1671), + [anon_sym_PLUS_PLUS] = ACTIONS(1671), + [anon_sym_DASH_DASH] = ACTIONS(1671), + [anon_sym_true] = ACTIONS(1673), + [anon_sym_false] = ACTIONS(1673), + [anon_sym_PLUS] = ACTIONS(1669), + [anon_sym_DASH] = ACTIONS(1669), + [anon_sym_STAR] = ACTIONS(1675), + [anon_sym_CARET] = ACTIONS(1671), + [anon_sym_AMP] = ACTIONS(1671), + [anon_sym_this] = ACTIONS(1677), + [anon_sym_scoped] = ACTIONS(85), + [anon_sym_base] = ACTIONS(1679), + [anon_sym_var] = ACTIONS(89), + [sym_predefined_type] = ACTIONS(1681), + [anon_sym_unchecked] = ACTIONS(1667), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1589), + [anon_sym_default] = ACTIONS(1683), + [anon_sym_throw] = ACTIONS(1685), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1591), - [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), @@ -169607,19 +169493,19 @@ static const uint16_t ts_parse_table[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(1089), + [anon_sym_stackalloc] = ACTIONS(1691), + [anon_sym_sizeof] = ACTIONS(1693), + [anon_sym_typeof] = ACTIONS(1695), + [anon_sym___makeref] = ACTIONS(1697), + [anon_sym___reftype] = ACTIONS(1699), + [anon_sym___refvalue] = ACTIONS(1701), + [sym_null_literal] = ACTIONS(1703), + [anon_sym_SQUOTE] = ACTIONS(1705), + [sym_integer_literal] = ACTIONS(1703), + [sym_real_literal] = ACTIONS(1707), + [anon_sym_DQUOTE] = ACTIONS(1709), + [sym_verbatim_string_literal] = ACTIONS(1707), + [aux_sym_preproc_if_token1] = ACTIONS(1711), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -169630,90 +169516,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(151), - [sym_interpolation_verbatim_start] = ACTIONS(153), - [sym_interpolation_raw_start] = ACTIONS(155), - [sym_raw_string_start] = ACTIONS(157), + [sym_interpolation_regular_start] = ACTIONS(1713), + [sym_interpolation_verbatim_start] = ACTIONS(1715), + [sym_interpolation_raw_start] = ACTIONS(1717), + [sym_raw_string_start] = ACTIONS(1719), }, [757] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(5160), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2204), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(5325), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3461), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3080), - [sym_postfix_unary_expression] = STATE(3111), - [sym_prefix_unary_expression] = STATE(3111), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6154), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3080), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3111), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3080), - [sym_member_access_expression] = STATE(2484), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3111), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7547), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(3080), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3080), - [sym_typeof_expression] = STATE(3080), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2484), - [sym_literal] = STATE(3080), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2603), + [sym__name] = STATE(5862), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2193), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(2279), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(3699), + [sym_non_lvalue_expression] = STATE(3220), + [sym_lvalue_expression] = STATE(2955), + [sym__expression_statement_expression] = STATE(3236), + [sym_assignment_expression] = STATE(3221), + [sym_binary_expression] = STATE(3236), + [sym_postfix_unary_expression] = STATE(3221), + [sym_prefix_unary_expression] = STATE(3221), + [sym__pointer_indirection_expression] = STATE(2602), + [sym_query_expression] = STATE(3236), + [sym_from_clause] = STATE(6143), + [sym_conditional_expression] = STATE(3236), + [sym_conditional_access_expression] = STATE(3236), + [sym_as_expression] = STATE(3236), + [sym_is_expression] = STATE(3236), + [sym_is_pattern_expression] = STATE(3236), + [sym_cast_expression] = STATE(3236), + [sym_checked_expression] = STATE(3236), + [sym_invocation_expression] = STATE(3221), + [sym_switch_expression] = STATE(3236), + [sym_await_expression] = STATE(3221), + [sym_throw_expression] = STATE(3236), + [sym_element_access_expression] = STATE(2602), + [sym_interpolated_string_expression] = STATE(3236), + [sym_member_access_expression] = STATE(2602), + [sym_object_creation_expression] = STATE(3221), + [sym_parenthesized_expression] = STATE(3221), + [sym__parenthesized_lvalue_expression] = STATE(2602), + [sym_lambda_expression] = STATE(3236), + [sym__lambda_expression_init] = STATE(7668), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3236), + [sym_anonymous_method_expression] = STATE(3236), + [sym_anonymous_object_creation_expression] = STATE(3236), + [sym_implicit_array_creation_expression] = STATE(3236), + [sym_implicit_object_creation_expression] = STATE(3236), + [sym_implicit_stackalloc_expression] = STATE(3236), + [sym_initializer_expression] = STATE(3236), + [sym_default_expression] = STATE(3236), + [sym_with_expression] = STATE(3236), + [sym_sizeof_expression] = STATE(3236), + [sym_typeof_expression] = STATE(3236), + [sym_makeref_expression] = STATE(3236), + [sym_ref_expression] = STATE(3236), + [sym_reftype_expression] = STATE(3236), + [sym_refvalue_expression] = STATE(3236), + [sym_stackalloc_expression] = STATE(3236), + [sym_range_expression] = STATE(3236), + [sym_tuple_expression] = STATE(2602), + [sym_literal] = STATE(3236), + [sym_character_literal] = STATE(3272), + [sym_string_literal] = STATE(3272), + [sym_raw_string_literal] = STATE(3272), + [sym_boolean_literal] = STATE(3272), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3236), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(757), [sym_preproc_endregion] = STATE(757), [sym_preproc_line] = STATE(757), @@ -169723,48 +169609,48 @@ 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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3379), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), - [anon_sym_SEMI] = ACTIONS(2003), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1481), - [anon_sym_LPAREN] = ACTIONS(1497), - [anon_sym_ref] = ACTIONS(1499), - [anon_sym_LBRACE] = ACTIONS(1487), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1149), + [anon_sym_LPAREN] = ACTIONS(1151), + [anon_sym_ref] = ACTIONS(1153), + [anon_sym_LBRACE] = ACTIONS(1155), + [anon_sym_delegate] = ACTIONS(1157), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1501), + [anon_sym_new] = ACTIONS(1159), + [anon_sym_readonly] = ACTIONS(2767), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = 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(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(1163), + [anon_sym_BANG] = ACTIONS(1167), + [anon_sym_TILDE] = ACTIONS(1167), + [anon_sym_PLUS_PLUS] = ACTIONS(1167), + [anon_sym_DASH_DASH] = ACTIONS(1167), + [anon_sym_true] = ACTIONS(1169), + [anon_sym_false] = ACTIONS(1169), + [anon_sym_PLUS] = ACTIONS(1165), + [anon_sym_DASH] = ACTIONS(1165), + [anon_sym_STAR] = ACTIONS(1171), + [anon_sym_CARET] = ACTIONS(1167), + [anon_sym_AMP] = ACTIONS(1167), + [anon_sym_this] = ACTIONS(1173), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), + [anon_sym_base] = ACTIONS(1175), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1067), + [sym_predefined_type] = ACTIONS(1177), + [anon_sym_unchecked] = ACTIONS(1163), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1503), + [anon_sym_default] = ACTIONS(1179), + [anon_sym_throw] = ACTIONS(1181), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1505), - [anon_sym_DOT_DOT] = ACTIONS(1507), + [anon_sym_await] = ACTIONS(1183), + [anon_sym_DOT_DOT] = ACTIONS(1185), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -169777,19 +169663,19 @@ static const uint16_t ts_parse_table[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(1089), + [anon_sym_stackalloc] = ACTIONS(1187), + [anon_sym_sizeof] = ACTIONS(1189), + [anon_sym_typeof] = ACTIONS(1191), + [anon_sym___makeref] = ACTIONS(1193), + [anon_sym___reftype] = ACTIONS(1195), + [anon_sym___refvalue] = ACTIONS(1197), + [sym_null_literal] = ACTIONS(1199), + [anon_sym_SQUOTE] = ACTIONS(1201), + [sym_integer_literal] = ACTIONS(1199), + [sym_real_literal] = ACTIONS(1203), + [anon_sym_DQUOTE] = ACTIONS(1205), + [sym_verbatim_string_literal] = ACTIONS(1203), + [aux_sym_preproc_if_token1] = ACTIONS(1207), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -169800,90 +169686,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(1209), + [sym_interpolation_verbatim_start] = ACTIONS(1211), + [sym_interpolation_raw_start] = ACTIONS(1213), + [sym_raw_string_start] = ACTIONS(1215), }, [758] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(5160), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2204), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(5517), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3461), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3080), - [sym_postfix_unary_expression] = STATE(3111), - [sym_prefix_unary_expression] = STATE(3111), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6154), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3080), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3111), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3080), - [sym_member_access_expression] = STATE(2484), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3111), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7547), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(3080), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3080), - [sym_typeof_expression] = STATE(3080), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2484), - [sym_literal] = STATE(3080), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_block] = STATE(4603), + [sym_bracketed_argument_list] = STATE(3182), + [sym__name] = STATE(5888), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2286), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2262), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(4686), + [sym_non_lvalue_expression] = STATE(4580), + [sym_lvalue_expression] = STATE(3373), + [sym__expression_statement_expression] = STATE(4573), + [sym_assignment_expression] = STATE(4581), + [sym_binary_expression] = STATE(4573), + [sym_postfix_unary_expression] = STATE(4581), + [sym_prefix_unary_expression] = STATE(4581), + [sym__pointer_indirection_expression] = STATE(3144), + [sym_query_expression] = STATE(4573), + [sym_from_clause] = STATE(6133), + [sym_conditional_expression] = STATE(4573), + [sym_conditional_access_expression] = STATE(4573), + [sym_as_expression] = STATE(4573), + [sym_is_expression] = STATE(4573), + [sym_is_pattern_expression] = STATE(4573), + [sym_cast_expression] = STATE(4573), + [sym_checked_expression] = STATE(4573), + [sym_invocation_expression] = STATE(4581), + [sym_switch_expression] = STATE(4573), + [sym_await_expression] = STATE(4581), + [sym_throw_expression] = STATE(4573), + [sym_element_access_expression] = STATE(3144), + [sym_interpolated_string_expression] = STATE(4573), + [sym_member_access_expression] = STATE(3144), + [sym_object_creation_expression] = STATE(4581), + [sym_parenthesized_expression] = STATE(4581), + [sym__parenthesized_lvalue_expression] = STATE(3144), + [sym_lambda_expression] = STATE(4573), + [sym__lambda_expression_init] = STATE(7614), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(4573), + [sym_anonymous_method_expression] = STATE(4573), + [sym_anonymous_object_creation_expression] = STATE(4573), + [sym_implicit_array_creation_expression] = STATE(4573), + [sym_implicit_object_creation_expression] = STATE(4573), + [sym_implicit_stackalloc_expression] = STATE(4573), + [sym_initializer_expression] = STATE(4573), + [sym_default_expression] = STATE(4573), + [sym_with_expression] = STATE(4573), + [sym_sizeof_expression] = STATE(4573), + [sym_typeof_expression] = STATE(4573), + [sym_makeref_expression] = STATE(4573), + [sym_ref_expression] = STATE(4573), + [sym_reftype_expression] = STATE(4573), + [sym_refvalue_expression] = STATE(4573), + [sym_stackalloc_expression] = STATE(4573), + [sym_range_expression] = STATE(4573), + [sym_tuple_expression] = STATE(3144), + [sym_literal] = STATE(4573), + [sym_character_literal] = STATE(4575), + [sym_string_literal] = STATE(4575), + [sym_raw_string_literal] = STATE(4575), + [sym_boolean_literal] = STATE(4575), + [sym_identifier] = STATE(2237), + [sym__reserved_identifier] = STATE(2229), + [sym_preproc_if_in_expression] = STATE(4573), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(758), [sym_preproc_endregion] = STATE(758), [sym_preproc_line] = STATE(758), @@ -169893,168 +169780,166 @@ 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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), - [sym__identifier_token] = ACTIONS(25), - [anon_sym_alias] = ACTIONS(29), - [anon_sym_SEMI] = ACTIONS(2881), - [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1481), - [anon_sym_LPAREN] = ACTIONS(1497), - [anon_sym_ref] = ACTIONS(1499), - [anon_sym_LBRACE] = ACTIONS(1487), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), - [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1501), - [anon_sym_where] = ACTIONS(29), - [anon_sym_notnull] = ACTIONS(29), - [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = 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(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(1067), - [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1503), - [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1505), - [anon_sym_DOT_DOT] = ACTIONS(1507), - [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(1089), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(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), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3501), + [sym__identifier_token] = ACTIONS(1385), + [anon_sym_alias] = ACTIONS(1387), + [anon_sym_global] = ACTIONS(1387), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1389), + [anon_sym_LPAREN] = ACTIONS(1565), + [anon_sym_ref] = ACTIONS(1567), + [anon_sym_LBRACE] = ACTIONS(2887), + [anon_sym_delegate] = ACTIONS(1397), + [anon_sym_async] = ACTIONS(1045), + [anon_sym_file] = ACTIONS(1387), + [anon_sym_new] = ACTIONS(1399), + [anon_sym_where] = ACTIONS(1387), + [anon_sym_notnull] = ACTIONS(1387), + [anon_sym_unmanaged] = ACTIONS(1387), + [anon_sym_checked] = ACTIONS(1401), + [anon_sym_BANG] = ACTIONS(1571), + [anon_sym_TILDE] = ACTIONS(1571), + [anon_sym_PLUS_PLUS] = ACTIONS(1571), + [anon_sym_DASH_DASH] = ACTIONS(1571), + [anon_sym_true] = ACTIONS(1407), + [anon_sym_false] = ACTIONS(1407), + [anon_sym_PLUS] = ACTIONS(1569), + [anon_sym_DASH] = ACTIONS(1569), + [anon_sym_STAR] = ACTIONS(1409), + [anon_sym_CARET] = ACTIONS(1571), + [anon_sym_AMP] = ACTIONS(1571), + [anon_sym_this] = ACTIONS(1411), + [anon_sym_scoped] = ACTIONS(1413), + [anon_sym_base] = ACTIONS(1415), + [anon_sym_var] = ACTIONS(1417), + [sym_predefined_type] = ACTIONS(1419), + [anon_sym_unchecked] = ACTIONS(1401), + [anon_sym_yield] = ACTIONS(1387), + [anon_sym_default] = ACTIONS(1421), + [anon_sym_throw] = ACTIONS(1573), + [anon_sym_when] = ACTIONS(1387), + [anon_sym_await] = ACTIONS(1575), + [anon_sym_DOT_DOT] = ACTIONS(1577), + [anon_sym_from] = ACTIONS(1429), + [anon_sym_into] = ACTIONS(1387), + [anon_sym_join] = ACTIONS(1387), + [anon_sym_on] = ACTIONS(1387), + [anon_sym_equals] = ACTIONS(1387), + [anon_sym_let] = ACTIONS(1387), + [anon_sym_orderby] = ACTIONS(1387), + [anon_sym_ascending] = ACTIONS(1387), + [anon_sym_descending] = ACTIONS(1387), + [anon_sym_group] = ACTIONS(1387), + [anon_sym_by] = ACTIONS(1387), + [anon_sym_select] = ACTIONS(1387), + [anon_sym_stackalloc] = ACTIONS(1431), + [anon_sym_sizeof] = ACTIONS(1433), + [anon_sym_typeof] = ACTIONS(1435), + [anon_sym___makeref] = ACTIONS(1437), + [anon_sym___reftype] = ACTIONS(1439), + [anon_sym___refvalue] = ACTIONS(1441), + [sym_null_literal] = ACTIONS(1443), + [anon_sym_SQUOTE] = ACTIONS(1445), + [sym_integer_literal] = ACTIONS(1443), + [sym_real_literal] = ACTIONS(1447), + [anon_sym_DQUOTE] = ACTIONS(1449), + [sym_verbatim_string_literal] = ACTIONS(1447), + [aux_sym_preproc_if_token1] = ACTIONS(1451), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + [sym_interpolation_regular_start] = ACTIONS(1453), + [sym_interpolation_verbatim_start] = ACTIONS(1455), + [sym_interpolation_raw_start] = ACTIONS(1457), + [sym_raw_string_start] = ACTIONS(1459), }, [759] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_block] = STATE(3084), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(5910), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2247), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(5045), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3529), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3080), - [sym_postfix_unary_expression] = STATE(3111), - [sym_prefix_unary_expression] = STATE(3111), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6154), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3080), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3111), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3080), - [sym_member_access_expression] = STATE(2484), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3111), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7444), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(3080), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3080), - [sym_typeof_expression] = STATE(3080), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2484), - [sym_literal] = STATE(3080), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(5182), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2212), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(2279), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(5042), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3510), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3102), + [sym_postfix_unary_expression] = STATE(3079), + [sym_prefix_unary_expression] = STATE(3079), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6134), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3102), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3079), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3102), + [sym_member_access_expression] = STATE(2472), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3079), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7425), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(3102), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3102), + [sym_typeof_expression] = STATE(3102), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2472), + [sym_literal] = STATE(3102), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(759), [sym_preproc_endregion] = STATE(759), [sym_preproc_line] = STATE(759), @@ -170064,47 +169949,48 @@ 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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1481), - [anon_sym_LPAREN] = ACTIONS(1575), - [anon_sym_ref] = ACTIONS(1577), - [anon_sym_LBRACE] = ACTIONS(2847), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1479), + [anon_sym_LPAREN] = ACTIONS(43), + [anon_sym_ref] = ACTIONS(2305), + [anon_sym_LBRACE] = ACTIONS(1481), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1501), + [anon_sym_new] = ACTIONS(1059), + [anon_sym_readonly] = ACTIONS(2747), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1067), - [anon_sym_BANG] = ACTIONS(901), - [anon_sym_TILDE] = ACTIONS(901), - [anon_sym_PLUS_PLUS] = ACTIONS(901), - [anon_sym_DASH_DASH] = ACTIONS(901), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(1525), + [anon_sym_TILDE] = ACTIONS(1525), + [anon_sym_PLUS_PLUS] = ACTIONS(1525), + [anon_sym_DASH_DASH] = ACTIONS(1525), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(903), - [anon_sym_DASH] = ACTIONS(903), - [anon_sym_STAR] = ACTIONS(905), - [anon_sym_CARET] = ACTIONS(901), - [anon_sym_AMP] = ACTIONS(901), + [anon_sym_PLUS] = ACTIONS(1523), + [anon_sym_DASH] = ACTIONS(1523), + [anon_sym_STAR] = ACTIONS(81), + [anon_sym_CARET] = ACTIONS(1525), + [anon_sym_AMP] = ACTIONS(1525), [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(2749), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1067), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1579), + [anon_sym_throw] = ACTIONS(1527), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1581), - [anon_sym_DOT_DOT] = ACTIONS(1583), + [anon_sym_await] = ACTIONS(1529), + [anon_sym_DOT_DOT] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -170129,7 +170015,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(1089), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -170146,84 +170032,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [760] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(5910), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2247), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(5019), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3379), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3080), - [sym_postfix_unary_expression] = STATE(3111), - [sym_prefix_unary_expression] = STATE(3111), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6154), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3080), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3111), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3080), - [sym_member_access_expression] = STATE(2484), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3111), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7575), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(3080), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3080), - [sym_typeof_expression] = STATE(3080), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2484), - [sym_literal] = STATE(3080), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(5695), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2223), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(2279), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(4754), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3398), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3102), + [sym_postfix_unary_expression] = STATE(3079), + [sym_prefix_unary_expression] = STATE(3079), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6163), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3102), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3079), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3102), + [sym_member_access_expression] = STATE(2472), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3079), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7496), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(3102), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3102), + [sym_typeof_expression] = STATE(3102), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2472), + [sym_literal] = STATE(3102), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(760), [sym_preproc_endregion] = STATE(760), [sym_preproc_line] = STATE(760), @@ -170233,48 +170119,48 @@ 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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1481), - [anon_sym_LPAREN] = ACTIONS(895), - [anon_sym_ref] = ACTIONS(897), - [anon_sym_LBRACE] = ACTIONS(1487), - [anon_sym_RBRACE] = ACTIONS(2883), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1479), + [anon_sym_LPAREN] = ACTIONS(1487), + [anon_sym_ref] = ACTIONS(1983), + [anon_sym_LBRACE] = ACTIONS(1481), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1061), + [anon_sym_new] = ACTIONS(1095), + [anon_sym_readonly] = ACTIONS(2747), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1067), - [anon_sym_BANG] = ACTIONS(1495), - [anon_sym_TILDE] = ACTIONS(1495), - [anon_sym_PLUS_PLUS] = ACTIONS(1495), - [anon_sym_DASH_DASH] = ACTIONS(1495), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(1493), + [anon_sym_TILDE] = ACTIONS(1493), + [anon_sym_PLUS_PLUS] = ACTIONS(1493), + [anon_sym_DASH_DASH] = ACTIONS(1493), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1493), - [anon_sym_DASH] = ACTIONS(1493), - [anon_sym_STAR] = ACTIONS(905), - [anon_sym_CARET] = ACTIONS(1495), - [anon_sym_AMP] = ACTIONS(1495), + [anon_sym_PLUS] = ACTIONS(1491), + [anon_sym_DASH] = ACTIONS(1491), + [anon_sym_STAR] = ACTIONS(1105), + [anon_sym_CARET] = ACTIONS(1493), + [anon_sym_AMP] = ACTIONS(1493), [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(2629), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1067), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1079), + [anon_sym_throw] = ACTIONS(1113), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1081), - [anon_sym_DOT_DOT] = ACTIONS(911), + [anon_sym_await] = ACTIONS(1115), + [anon_sym_DOT_DOT] = ACTIONS(1119), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -170299,7 +170185,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(1089), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -170316,85 +170202,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [761] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_block] = STATE(3316), - [sym_bracketed_argument_list] = STATE(2610), - [sym__name] = STATE(5898), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2197), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(3856), - [sym_non_lvalue_expression] = STATE(3277), - [sym_lvalue_expression] = STATE(3023), - [sym__expression_statement_expression] = STATE(3228), - [sym_assignment_expression] = STATE(3289), - [sym_binary_expression] = STATE(3228), - [sym_postfix_unary_expression] = STATE(3289), - [sym_prefix_unary_expression] = STATE(3289), - [sym__pointer_indirection_expression] = STATE(2609), - [sym_query_expression] = STATE(3228), - [sym_from_clause] = STATE(6172), - [sym_conditional_expression] = STATE(3228), - [sym_conditional_access_expression] = STATE(3228), - [sym_as_expression] = STATE(3228), - [sym_is_expression] = STATE(3228), - [sym_is_pattern_expression] = STATE(3228), - [sym_cast_expression] = STATE(3228), - [sym_checked_expression] = STATE(3228), - [sym_invocation_expression] = STATE(3289), - [sym_switch_expression] = STATE(3228), - [sym_await_expression] = STATE(3289), - [sym_throw_expression] = STATE(3228), - [sym_element_access_expression] = STATE(2609), - [sym_interpolated_string_expression] = STATE(3228), - [sym_member_access_expression] = STATE(2609), - [sym_object_creation_expression] = STATE(3289), - [sym_parenthesized_expression] = STATE(3289), - [sym__parenthesized_lvalue_expression] = STATE(2609), - [sym_lambda_expression] = STATE(3228), - [sym__lambda_expression_init] = STATE(7653), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3228), - [sym_anonymous_method_expression] = STATE(3228), - [sym_anonymous_object_creation_expression] = STATE(3228), - [sym_implicit_array_creation_expression] = STATE(3228), - [sym_implicit_object_creation_expression] = STATE(3228), - [sym_implicit_stackalloc_expression] = STATE(3228), - [sym_initializer_expression] = STATE(3228), - [sym_default_expression] = STATE(3228), - [sym_with_expression] = STATE(3228), - [sym_sizeof_expression] = STATE(3228), - [sym_typeof_expression] = STATE(3228), - [sym_makeref_expression] = STATE(3228), - [sym_ref_expression] = STATE(3228), - [sym_reftype_expression] = STATE(3228), - [sym_refvalue_expression] = STATE(3228), - [sym_stackalloc_expression] = STATE(3228), - [sym_range_expression] = STATE(3228), - [sym_tuple_expression] = STATE(2609), - [sym_literal] = STATE(3228), - [sym_character_literal] = STATE(3278), - [sym_string_literal] = STATE(3278), - [sym_raw_string_literal] = STATE(3278), - [sym_boolean_literal] = STATE(3278), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3228), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_block] = STATE(2984), + [sym_bracketed_argument_list] = STATE(2416), + [sym__name] = STATE(5890), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2193), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(5272), + [sym_non_lvalue_expression] = STATE(3040), + [sym_lvalue_expression] = STATE(3631), + [sym__expression_statement_expression] = STATE(3035), + [sym_assignment_expression] = STATE(3043), + [sym_binary_expression] = STATE(3035), + [sym_postfix_unary_expression] = STATE(3043), + [sym_prefix_unary_expression] = STATE(3043), + [sym__pointer_indirection_expression] = STATE(2415), + [sym_query_expression] = STATE(3035), + [sym_from_clause] = STATE(6164), + [sym_conditional_expression] = STATE(3035), + [sym_conditional_access_expression] = STATE(3035), + [sym_as_expression] = STATE(3035), + [sym_is_expression] = STATE(3035), + [sym_is_pattern_expression] = STATE(3035), + [sym_cast_expression] = STATE(3035), + [sym_checked_expression] = STATE(3035), + [sym_invocation_expression] = STATE(3043), + [sym_switch_expression] = STATE(3035), + [sym_await_expression] = STATE(3043), + [sym_throw_expression] = STATE(3035), + [sym_element_access_expression] = STATE(2415), + [sym_interpolated_string_expression] = STATE(3035), + [sym_member_access_expression] = STATE(2415), + [sym_object_creation_expression] = STATE(3043), + [sym_parenthesized_expression] = STATE(3043), + [sym__parenthesized_lvalue_expression] = STATE(2415), + [sym_lambda_expression] = STATE(3035), + [sym__lambda_expression_init] = STATE(7458), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3035), + [sym_anonymous_method_expression] = STATE(3035), + [sym_anonymous_object_creation_expression] = STATE(3035), + [sym_implicit_array_creation_expression] = STATE(3035), + [sym_implicit_object_creation_expression] = STATE(3035), + [sym_implicit_stackalloc_expression] = STATE(3035), + [sym_initializer_expression] = STATE(3035), + [sym_default_expression] = STATE(3035), + [sym_with_expression] = STATE(3035), + [sym_sizeof_expression] = STATE(3035), + [sym_typeof_expression] = STATE(3035), + [sym_makeref_expression] = STATE(3035), + [sym_ref_expression] = STATE(3035), + [sym_reftype_expression] = STATE(3035), + [sym_refvalue_expression] = STATE(3035), + [sym_stackalloc_expression] = STATE(3035), + [sym_range_expression] = STATE(3035), + [sym_tuple_expression] = STATE(2415), + [sym_literal] = STATE(3035), + [sym_character_literal] = STATE(3037), + [sym_string_literal] = STATE(3037), + [sym_raw_string_literal] = STATE(3037), + [sym_boolean_literal] = STATE(3037), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3035), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(761), [sym_preproc_endregion] = STATE(761), [sym_preproc_line] = STATE(761), @@ -170404,47 +170290,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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3396), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3455), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1153), - [anon_sym_LPAREN] = ACTIONS(1155), - [anon_sym_ref] = ACTIONS(1157), - [anon_sym_LBRACE] = ACTIONS(2843), - [anon_sym_delegate] = ACTIONS(1161), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1239), + [anon_sym_LPAREN] = ACTIONS(2101), + [anon_sym_ref] = ACTIONS(2103), + [anon_sym_LBRACE] = ACTIONS(2839), + [anon_sym_delegate] = ACTIONS(1247), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1163), + [anon_sym_new] = ACTIONS(1249), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1167), - [anon_sym_BANG] = ACTIONS(1171), - [anon_sym_TILDE] = ACTIONS(1171), - [anon_sym_PLUS_PLUS] = ACTIONS(1171), - [anon_sym_DASH_DASH] = ACTIONS(1171), - [anon_sym_true] = ACTIONS(1173), - [anon_sym_false] = ACTIONS(1173), - [anon_sym_PLUS] = ACTIONS(1169), - [anon_sym_DASH] = ACTIONS(1169), - [anon_sym_STAR] = ACTIONS(1175), - [anon_sym_CARET] = ACTIONS(1171), - [anon_sym_AMP] = ACTIONS(1171), - [anon_sym_this] = ACTIONS(1177), + [anon_sym_checked] = ACTIONS(1251), + [anon_sym_BANG] = ACTIONS(2107), + [anon_sym_TILDE] = ACTIONS(2107), + [anon_sym_PLUS_PLUS] = ACTIONS(2107), + [anon_sym_DASH_DASH] = ACTIONS(2107), + [anon_sym_true] = ACTIONS(1257), + [anon_sym_false] = ACTIONS(1257), + [anon_sym_PLUS] = ACTIONS(2105), + [anon_sym_DASH] = ACTIONS(2105), + [anon_sym_STAR] = ACTIONS(1259), + [anon_sym_CARET] = ACTIONS(2107), + [anon_sym_AMP] = ACTIONS(2107), + [anon_sym_this] = ACTIONS(1261), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1179), + [anon_sym_base] = ACTIONS(1263), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1181), - [anon_sym_unchecked] = ACTIONS(1167), + [sym_predefined_type] = ACTIONS(1265), + [anon_sym_unchecked] = ACTIONS(1251), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1183), - [anon_sym_throw] = ACTIONS(1185), + [anon_sym_default] = ACTIONS(1267), + [anon_sym_throw] = ACTIONS(2109), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1187), - [anon_sym_DOT_DOT] = ACTIONS(1189), + [anon_sym_await] = ACTIONS(2111), + [anon_sym_DOT_DOT] = ACTIONS(2113), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -170457,19 +170343,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1191), - [anon_sym_sizeof] = ACTIONS(1193), - [anon_sym_typeof] = ACTIONS(1195), - [anon_sym___makeref] = ACTIONS(1197), - [anon_sym___reftype] = ACTIONS(1199), - [anon_sym___refvalue] = ACTIONS(1201), - [sym_null_literal] = ACTIONS(1203), - [anon_sym_SQUOTE] = ACTIONS(1205), - [sym_integer_literal] = ACTIONS(1203), - [sym_real_literal] = ACTIONS(1207), - [anon_sym_DQUOTE] = ACTIONS(1209), - [sym_verbatim_string_literal] = ACTIONS(1207), - [aux_sym_preproc_if_token1] = ACTIONS(1211), + [anon_sym_stackalloc] = ACTIONS(1275), + [anon_sym_sizeof] = ACTIONS(1277), + [anon_sym_typeof] = ACTIONS(1279), + [anon_sym___makeref] = ACTIONS(1281), + [anon_sym___reftype] = ACTIONS(1283), + [anon_sym___refvalue] = ACTIONS(1285), + [sym_null_literal] = ACTIONS(1287), + [anon_sym_SQUOTE] = ACTIONS(1289), + [sym_integer_literal] = ACTIONS(1287), + [sym_real_literal] = ACTIONS(1291), + [anon_sym_DQUOTE] = ACTIONS(1293), + [sym_verbatim_string_literal] = ACTIONS(1291), + [aux_sym_preproc_if_token1] = ACTIONS(2115), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -170480,90 +170366,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(1213), - [sym_interpolation_verbatim_start] = ACTIONS(1215), - [sym_interpolation_raw_start] = ACTIONS(1217), - [sym_raw_string_start] = ACTIONS(1219), + [sym_interpolation_regular_start] = ACTIONS(1297), + [sym_interpolation_verbatim_start] = ACTIONS(1299), + [sym_interpolation_raw_start] = ACTIONS(1301), + [sym_raw_string_start] = ACTIONS(1303), }, [762] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(5160), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2204), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(5359), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3461), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3080), - [sym_postfix_unary_expression] = STATE(3111), - [sym_prefix_unary_expression] = STATE(3111), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6154), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3080), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3111), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3080), - [sym_member_access_expression] = STATE(2484), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3111), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7547), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(3080), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3080), - [sym_typeof_expression] = STATE(3080), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2484), - [sym_literal] = STATE(3080), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_block] = STATE(4603), + [sym_bracketed_argument_list] = STATE(3182), + [sym__name] = STATE(5882), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2306), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2262), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(4416), + [sym_non_lvalue_expression] = STATE(4580), + [sym_lvalue_expression] = STATE(3312), + [sym__expression_statement_expression] = STATE(4573), + [sym_assignment_expression] = STATE(4581), + [sym_binary_expression] = STATE(4573), + [sym_postfix_unary_expression] = STATE(4581), + [sym_prefix_unary_expression] = STATE(4581), + [sym__pointer_indirection_expression] = STATE(3144), + [sym_query_expression] = STATE(4573), + [sym_from_clause] = STATE(6160), + [sym_conditional_expression] = STATE(4573), + [sym_conditional_access_expression] = STATE(4573), + [sym_as_expression] = STATE(4573), + [sym_is_expression] = STATE(4573), + [sym_is_pattern_expression] = STATE(4573), + [sym_cast_expression] = STATE(4573), + [sym_checked_expression] = STATE(4573), + [sym_invocation_expression] = STATE(4581), + [sym_switch_expression] = STATE(4573), + [sym_await_expression] = STATE(4581), + [sym_throw_expression] = STATE(4573), + [sym_element_access_expression] = STATE(3144), + [sym_interpolated_string_expression] = STATE(4573), + [sym_member_access_expression] = STATE(3144), + [sym_object_creation_expression] = STATE(4581), + [sym_parenthesized_expression] = STATE(4581), + [sym__parenthesized_lvalue_expression] = STATE(3144), + [sym_lambda_expression] = STATE(4573), + [sym__lambda_expression_init] = STATE(7399), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(4573), + [sym_anonymous_method_expression] = STATE(4573), + [sym_anonymous_object_creation_expression] = STATE(4573), + [sym_implicit_array_creation_expression] = STATE(4573), + [sym_implicit_object_creation_expression] = STATE(4573), + [sym_implicit_stackalloc_expression] = STATE(4573), + [sym_initializer_expression] = STATE(4573), + [sym_default_expression] = STATE(4573), + [sym_with_expression] = STATE(4573), + [sym_sizeof_expression] = STATE(4573), + [sym_typeof_expression] = STATE(4573), + [sym_makeref_expression] = STATE(4573), + [sym_ref_expression] = STATE(4573), + [sym_reftype_expression] = STATE(4573), + [sym_refvalue_expression] = STATE(4573), + [sym_stackalloc_expression] = STATE(4573), + [sym_range_expression] = STATE(4573), + [sym_tuple_expression] = STATE(3144), + [sym_literal] = STATE(4573), + [sym_character_literal] = STATE(4575), + [sym_string_literal] = STATE(4575), + [sym_raw_string_literal] = STATE(4575), + [sym_boolean_literal] = STATE(4575), + [sym_identifier] = STATE(2237), + [sym__reserved_identifier] = STATE(2229), + [sym_preproc_if_in_expression] = STATE(4573), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(762), [sym_preproc_endregion] = STATE(762), [sym_preproc_line] = STATE(762), @@ -170573,167 +170460,166 @@ 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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), - [sym__identifier_token] = ACTIONS(25), - [anon_sym_alias] = ACTIONS(29), - [anon_sym_SEMI] = ACTIONS(2005), - [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1481), - [anon_sym_LPAREN] = ACTIONS(1497), - [anon_sym_ref] = ACTIONS(1499), - [anon_sym_LBRACE] = ACTIONS(1487), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), - [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1501), - [anon_sym_where] = ACTIONS(29), - [anon_sym_notnull] = ACTIONS(29), - [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = 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(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(1067), - [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1503), - [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1505), - [anon_sym_DOT_DOT] = ACTIONS(1507), - [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(1089), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(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), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3501), + [sym__identifier_token] = ACTIONS(1385), + [anon_sym_alias] = ACTIONS(1387), + [anon_sym_global] = ACTIONS(1387), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1389), + [anon_sym_LPAREN] = ACTIONS(1461), + [anon_sym_ref] = ACTIONS(1463), + [anon_sym_LBRACE] = ACTIONS(2887), + [anon_sym_delegate] = ACTIONS(1397), + [anon_sym_async] = ACTIONS(1045), + [anon_sym_file] = ACTIONS(1387), + [anon_sym_new] = ACTIONS(1465), + [anon_sym_where] = ACTIONS(1387), + [anon_sym_notnull] = ACTIONS(1387), + [anon_sym_unmanaged] = ACTIONS(1387), + [anon_sym_checked] = ACTIONS(1401), + [anon_sym_BANG] = ACTIONS(1469), + [anon_sym_TILDE] = ACTIONS(1469), + [anon_sym_PLUS_PLUS] = ACTIONS(1469), + [anon_sym_DASH_DASH] = ACTIONS(1469), + [anon_sym_true] = ACTIONS(1407), + [anon_sym_false] = ACTIONS(1407), + [anon_sym_PLUS] = ACTIONS(1467), + [anon_sym_DASH] = ACTIONS(1467), + [anon_sym_STAR] = ACTIONS(1471), + [anon_sym_CARET] = ACTIONS(1469), + [anon_sym_AMP] = ACTIONS(1469), + [anon_sym_this] = ACTIONS(1411), + [anon_sym_scoped] = ACTIONS(1413), + [anon_sym_base] = ACTIONS(1415), + [anon_sym_var] = ACTIONS(1417), + [sym_predefined_type] = ACTIONS(1419), + [anon_sym_unchecked] = ACTIONS(1401), + [anon_sym_yield] = ACTIONS(1387), + [anon_sym_default] = ACTIONS(1421), + [anon_sym_throw] = ACTIONS(1473), + [anon_sym_when] = ACTIONS(1387), + [anon_sym_await] = ACTIONS(1475), + [anon_sym_DOT_DOT] = ACTIONS(1477), + [anon_sym_from] = ACTIONS(1429), + [anon_sym_into] = ACTIONS(1387), + [anon_sym_join] = ACTIONS(1387), + [anon_sym_on] = ACTIONS(1387), + [anon_sym_equals] = ACTIONS(1387), + [anon_sym_let] = ACTIONS(1387), + [anon_sym_orderby] = ACTIONS(1387), + [anon_sym_ascending] = ACTIONS(1387), + [anon_sym_descending] = ACTIONS(1387), + [anon_sym_group] = ACTIONS(1387), + [anon_sym_by] = ACTIONS(1387), + [anon_sym_select] = ACTIONS(1387), + [anon_sym_stackalloc] = ACTIONS(1431), + [anon_sym_sizeof] = ACTIONS(1433), + [anon_sym_typeof] = ACTIONS(1435), + [anon_sym___makeref] = ACTIONS(1437), + [anon_sym___reftype] = ACTIONS(1439), + [anon_sym___refvalue] = ACTIONS(1441), + [sym_null_literal] = ACTIONS(1443), + [anon_sym_SQUOTE] = ACTIONS(1445), + [sym_integer_literal] = ACTIONS(1443), + [sym_real_literal] = ACTIONS(1447), + [anon_sym_DQUOTE] = ACTIONS(1449), + [sym_verbatim_string_literal] = ACTIONS(1447), + [aux_sym_preproc_if_token1] = ACTIONS(1451), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + [sym_interpolation_regular_start] = ACTIONS(1453), + [sym_interpolation_verbatim_start] = ACTIONS(1455), + [sym_interpolation_raw_start] = ACTIONS(1457), + [sym_raw_string_start] = ACTIONS(1459), }, [763] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2610), - [sym__name] = STATE(5886), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2319), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(2291), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(4371), - [sym_non_lvalue_expression] = STATE(3277), - [sym_lvalue_expression] = STATE(3347), - [sym__expression_statement_expression] = STATE(3228), - [sym_assignment_expression] = STATE(3289), - [sym_binary_expression] = STATE(3228), - [sym_postfix_unary_expression] = STATE(3289), - [sym_prefix_unary_expression] = STATE(3289), - [sym__pointer_indirection_expression] = STATE(2609), - [sym_query_expression] = STATE(3228), - [sym_from_clause] = STATE(6150), - [sym_conditional_expression] = STATE(3228), - [sym_conditional_access_expression] = STATE(3228), - [sym_as_expression] = STATE(3228), - [sym_is_expression] = STATE(3228), - [sym_is_pattern_expression] = STATE(3228), - [sym_cast_expression] = STATE(3228), - [sym_checked_expression] = STATE(3228), - [sym_invocation_expression] = STATE(3289), - [sym_switch_expression] = STATE(3228), - [sym_await_expression] = STATE(3289), - [sym_throw_expression] = STATE(3228), - [sym_element_access_expression] = STATE(2609), - [sym_interpolated_string_expression] = STATE(3228), - [sym_member_access_expression] = STATE(2609), - [sym_object_creation_expression] = STATE(3289), - [sym_parenthesized_expression] = STATE(3289), - [sym__parenthesized_lvalue_expression] = STATE(2609), - [sym_lambda_expression] = STATE(3228), - [sym__lambda_expression_init] = STATE(7531), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3228), - [sym_anonymous_method_expression] = STATE(3228), - [sym_anonymous_object_creation_expression] = STATE(3228), - [sym_implicit_array_creation_expression] = STATE(3228), - [sym_implicit_object_creation_expression] = STATE(3228), - [sym_implicit_stackalloc_expression] = STATE(3228), - [sym_initializer_expression] = STATE(3228), - [sym_default_expression] = STATE(3228), - [sym_with_expression] = STATE(3228), - [sym_sizeof_expression] = STATE(3228), - [sym_typeof_expression] = STATE(3228), - [sym_makeref_expression] = STATE(3228), - [sym_ref_expression] = STATE(3228), - [sym_reftype_expression] = STATE(3228), - [sym_refvalue_expression] = STATE(3228), - [sym_stackalloc_expression] = STATE(3228), - [sym_range_expression] = STATE(3228), - [sym_tuple_expression] = STATE(2609), - [sym_literal] = STATE(3228), - [sym_character_literal] = STATE(3278), - [sym_string_literal] = STATE(3278), - [sym_raw_string_literal] = STATE(3278), - [sym_boolean_literal] = STATE(3278), - [sym_identifier] = STATE(2267), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3228), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2416), + [sym__name] = STATE(5890), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2193), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(2279), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(5306), + [sym_non_lvalue_expression] = STATE(3040), + [sym_lvalue_expression] = STATE(3631), + [sym__expression_statement_expression] = STATE(3035), + [sym_assignment_expression] = STATE(3043), + [sym_binary_expression] = STATE(3035), + [sym_postfix_unary_expression] = STATE(3043), + [sym_prefix_unary_expression] = STATE(3043), + [sym__pointer_indirection_expression] = STATE(2415), + [sym_query_expression] = STATE(3035), + [sym_from_clause] = STATE(6164), + [sym_conditional_expression] = STATE(3035), + [sym_conditional_access_expression] = STATE(3035), + [sym_as_expression] = STATE(3035), + [sym_is_expression] = STATE(3035), + [sym_is_pattern_expression] = STATE(3035), + [sym_cast_expression] = STATE(3035), + [sym_checked_expression] = STATE(3035), + [sym_invocation_expression] = STATE(3043), + [sym_switch_expression] = STATE(3035), + [sym_await_expression] = STATE(3043), + [sym_throw_expression] = STATE(3035), + [sym_element_access_expression] = STATE(2415), + [sym_interpolated_string_expression] = STATE(3035), + [sym_member_access_expression] = STATE(2415), + [sym_object_creation_expression] = STATE(3043), + [sym_parenthesized_expression] = STATE(3043), + [sym__parenthesized_lvalue_expression] = STATE(2415), + [sym_lambda_expression] = STATE(3035), + [sym__lambda_expression_init] = STATE(7458), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3035), + [sym_anonymous_method_expression] = STATE(3035), + [sym_anonymous_object_creation_expression] = STATE(3035), + [sym_implicit_array_creation_expression] = STATE(3035), + [sym_implicit_object_creation_expression] = STATE(3035), + [sym_implicit_stackalloc_expression] = STATE(3035), + [sym_initializer_expression] = STATE(3035), + [sym_default_expression] = STATE(3035), + [sym_with_expression] = STATE(3035), + [sym_sizeof_expression] = STATE(3035), + [sym_typeof_expression] = STATE(3035), + [sym_makeref_expression] = STATE(3035), + [sym_ref_expression] = STATE(3035), + [sym_reftype_expression] = STATE(3035), + [sym_refvalue_expression] = STATE(3035), + [sym_stackalloc_expression] = STATE(3035), + [sym_range_expression] = STATE(3035), + [sym_tuple_expression] = STATE(2415), + [sym_literal] = STATE(3035), + [sym_character_literal] = STATE(3037), + [sym_string_literal] = STATE(3037), + [sym_raw_string_literal] = STATE(3037), + [sym_boolean_literal] = STATE(3037), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3035), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(763), [sym_preproc_endregion] = STATE(763), [sym_preproc_line] = STATE(763), @@ -170743,48 +170629,48 @@ 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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3396), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3455), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1153), - [anon_sym_LPAREN] = ACTIONS(1525), - [anon_sym_ref] = ACTIONS(1527), - [anon_sym_LBRACE] = ACTIONS(1159), - [anon_sym_delegate] = ACTIONS(1161), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1239), + [anon_sym_LPAREN] = ACTIONS(2101), + [anon_sym_ref] = ACTIONS(2103), + [anon_sym_LBRACE] = ACTIONS(1245), + [anon_sym_delegate] = ACTIONS(1247), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1529), - [anon_sym_readonly] = ACTIONS(2749), + [anon_sym_new] = ACTIONS(1249), + [anon_sym_readonly] = ACTIONS(2767), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1167), - [anon_sym_BANG] = ACTIONS(1533), - [anon_sym_TILDE] = ACTIONS(1533), - [anon_sym_PLUS_PLUS] = ACTIONS(1533), - [anon_sym_DASH_DASH] = ACTIONS(1533), - [anon_sym_true] = ACTIONS(1173), - [anon_sym_false] = ACTIONS(1173), - [anon_sym_PLUS] = ACTIONS(1531), - [anon_sym_DASH] = ACTIONS(1531), - [anon_sym_STAR] = ACTIONS(1535), - [anon_sym_CARET] = ACTIONS(1533), - [anon_sym_AMP] = ACTIONS(1533), - [anon_sym_this] = ACTIONS(1177), + [anon_sym_checked] = ACTIONS(1251), + [anon_sym_BANG] = ACTIONS(2107), + [anon_sym_TILDE] = ACTIONS(2107), + [anon_sym_PLUS_PLUS] = ACTIONS(2107), + [anon_sym_DASH_DASH] = ACTIONS(2107), + [anon_sym_true] = ACTIONS(1257), + [anon_sym_false] = ACTIONS(1257), + [anon_sym_PLUS] = ACTIONS(2105), + [anon_sym_DASH] = ACTIONS(2105), + [anon_sym_STAR] = ACTIONS(1259), + [anon_sym_CARET] = ACTIONS(2107), + [anon_sym_AMP] = ACTIONS(2107), + [anon_sym_this] = ACTIONS(1261), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1179), + [anon_sym_base] = ACTIONS(1263), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1181), - [anon_sym_unchecked] = ACTIONS(1167), + [sym_predefined_type] = ACTIONS(1265), + [anon_sym_unchecked] = ACTIONS(1251), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1183), - [anon_sym_throw] = ACTIONS(1537), + [anon_sym_default] = ACTIONS(1267), + [anon_sym_throw] = ACTIONS(2109), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1539), - [anon_sym_DOT_DOT] = ACTIONS(1541), + [anon_sym_await] = ACTIONS(2111), + [anon_sym_DOT_DOT] = ACTIONS(2113), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -170797,19 +170683,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1191), - [anon_sym_sizeof] = ACTIONS(1193), - [anon_sym_typeof] = ACTIONS(1195), - [anon_sym___makeref] = ACTIONS(1197), - [anon_sym___reftype] = ACTIONS(1199), - [anon_sym___refvalue] = ACTIONS(1201), - [sym_null_literal] = ACTIONS(1203), - [anon_sym_SQUOTE] = ACTIONS(1205), - [sym_integer_literal] = ACTIONS(1203), - [sym_real_literal] = ACTIONS(1207), - [anon_sym_DQUOTE] = ACTIONS(1209), - [sym_verbatim_string_literal] = ACTIONS(1207), - [aux_sym_preproc_if_token1] = ACTIONS(1211), + [anon_sym_stackalloc] = ACTIONS(1275), + [anon_sym_sizeof] = ACTIONS(1277), + [anon_sym_typeof] = ACTIONS(1279), + [anon_sym___makeref] = ACTIONS(1281), + [anon_sym___reftype] = ACTIONS(1283), + [anon_sym___refvalue] = ACTIONS(1285), + [sym_null_literal] = ACTIONS(1287), + [anon_sym_SQUOTE] = ACTIONS(1289), + [sym_integer_literal] = ACTIONS(1287), + [sym_real_literal] = ACTIONS(1291), + [anon_sym_DQUOTE] = ACTIONS(1293), + [sym_verbatim_string_literal] = ACTIONS(1291), + [aux_sym_preproc_if_token1] = ACTIONS(2115), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -170820,90 +170706,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1213), - [sym_interpolation_verbatim_start] = ACTIONS(1215), - [sym_interpolation_raw_start] = ACTIONS(1217), - [sym_raw_string_start] = ACTIONS(1219), + [sym_interpolation_regular_start] = ACTIONS(1297), + [sym_interpolation_verbatim_start] = ACTIONS(1299), + [sym_interpolation_raw_start] = ACTIONS(1301), + [sym_raw_string_start] = ACTIONS(1303), }, [764] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(5910), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2247), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(5019), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3379), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3080), - [sym_postfix_unary_expression] = STATE(3111), - [sym_prefix_unary_expression] = STATE(3111), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6154), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3080), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3111), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3080), - [sym_member_access_expression] = STATE(2484), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3111), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7575), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(3080), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3080), - [sym_typeof_expression] = STATE(3080), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2484), - [sym_literal] = STATE(3080), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2416), + [sym__name] = STATE(5900), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2193), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(2279), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(4402), + [sym_non_lvalue_expression] = STATE(3040), + [sym_lvalue_expression] = STATE(3231), + [sym__expression_statement_expression] = STATE(3035), + [sym_assignment_expression] = STATE(3043), + [sym_binary_expression] = STATE(3035), + [sym_postfix_unary_expression] = STATE(3043), + [sym_prefix_unary_expression] = STATE(3043), + [sym__pointer_indirection_expression] = STATE(2415), + [sym_query_expression] = STATE(3035), + [sym_from_clause] = STATE(6149), + [sym_conditional_expression] = STATE(3035), + [sym_conditional_access_expression] = STATE(3035), + [sym_as_expression] = STATE(3035), + [sym_is_expression] = STATE(3035), + [sym_is_pattern_expression] = STATE(3035), + [sym_cast_expression] = STATE(3035), + [sym_checked_expression] = STATE(3035), + [sym_invocation_expression] = STATE(3043), + [sym_switch_expression] = STATE(3035), + [sym_await_expression] = STATE(3043), + [sym_throw_expression] = STATE(3035), + [sym_element_access_expression] = STATE(2415), + [sym_interpolated_string_expression] = STATE(3035), + [sym_member_access_expression] = STATE(2415), + [sym_object_creation_expression] = STATE(3043), + [sym_parenthesized_expression] = STATE(3043), + [sym__parenthesized_lvalue_expression] = STATE(2415), + [sym_lambda_expression] = STATE(3035), + [sym__lambda_expression_init] = STATE(7405), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3035), + [sym_anonymous_method_expression] = STATE(3035), + [sym_anonymous_object_creation_expression] = STATE(3035), + [sym_implicit_array_creation_expression] = STATE(3035), + [sym_implicit_object_creation_expression] = STATE(3035), + [sym_implicit_stackalloc_expression] = STATE(3035), + [sym_initializer_expression] = STATE(3035), + [sym_default_expression] = STATE(3035), + [sym_with_expression] = STATE(3035), + [sym_sizeof_expression] = STATE(3035), + [sym_typeof_expression] = STATE(3035), + [sym_makeref_expression] = STATE(3035), + [sym_ref_expression] = STATE(3035), + [sym_reftype_expression] = STATE(3035), + [sym_refvalue_expression] = STATE(3035), + [sym_stackalloc_expression] = STATE(3035), + [sym_range_expression] = STATE(3035), + [sym_tuple_expression] = STATE(2415), + [sym_literal] = STATE(3035), + [sym_character_literal] = STATE(3037), + [sym_string_literal] = STATE(3037), + [sym_raw_string_literal] = STATE(3037), + [sym_boolean_literal] = STATE(3037), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3035), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(764), [sym_preproc_endregion] = STATE(764), [sym_preproc_line] = STATE(764), @@ -170913,48 +170799,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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3455), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1481), - [anon_sym_LPAREN] = ACTIONS(895), - [anon_sym_ref] = ACTIONS(897), - [anon_sym_LBRACE] = ACTIONS(1487), - [anon_sym_RBRACE] = ACTIONS(2885), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1239), + [anon_sym_LPAREN] = ACTIONS(1495), + [anon_sym_ref] = ACTIONS(1497), + [anon_sym_LBRACE] = ACTIONS(1245), + [anon_sym_delegate] = ACTIONS(1247), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1061), + [anon_sym_new] = ACTIONS(1249), + [anon_sym_readonly] = ACTIONS(2767), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1067), - [anon_sym_BANG] = ACTIONS(1495), - [anon_sym_TILDE] = ACTIONS(1495), - [anon_sym_PLUS_PLUS] = ACTIONS(1495), - [anon_sym_DASH_DASH] = ACTIONS(1495), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1493), - [anon_sym_DASH] = ACTIONS(1493), - [anon_sym_STAR] = ACTIONS(905), - [anon_sym_CARET] = ACTIONS(1495), - [anon_sym_AMP] = ACTIONS(1495), - [anon_sym_this] = ACTIONS(83), + [anon_sym_checked] = ACTIONS(1251), + [anon_sym_BANG] = ACTIONS(1501), + [anon_sym_TILDE] = ACTIONS(1501), + [anon_sym_PLUS_PLUS] = ACTIONS(1501), + [anon_sym_DASH_DASH] = ACTIONS(1501), + [anon_sym_true] = ACTIONS(1257), + [anon_sym_false] = ACTIONS(1257), + [anon_sym_PLUS] = ACTIONS(1499), + [anon_sym_DASH] = ACTIONS(1499), + [anon_sym_STAR] = ACTIONS(1503), + [anon_sym_CARET] = ACTIONS(1501), + [anon_sym_AMP] = ACTIONS(1501), + [anon_sym_this] = ACTIONS(1261), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), + [anon_sym_base] = ACTIONS(1263), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1067), + [sym_predefined_type] = ACTIONS(1265), + [anon_sym_unchecked] = ACTIONS(1251), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1079), + [anon_sym_default] = ACTIONS(1267), + [anon_sym_throw] = ACTIONS(1505), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1081), - [anon_sym_DOT_DOT] = ACTIONS(911), + [anon_sym_await] = ACTIONS(1507), + [anon_sym_DOT_DOT] = ACTIONS(1509), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -170967,19 +170853,19 @@ static const uint16_t ts_parse_table[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(1089), + [anon_sym_stackalloc] = ACTIONS(1275), + [anon_sym_sizeof] = ACTIONS(1277), + [anon_sym_typeof] = ACTIONS(1279), + [anon_sym___makeref] = ACTIONS(1281), + [anon_sym___reftype] = ACTIONS(1283), + [anon_sym___refvalue] = ACTIONS(1285), + [sym_null_literal] = ACTIONS(1287), + [anon_sym_SQUOTE] = ACTIONS(1289), + [sym_integer_literal] = ACTIONS(1287), + [sym_real_literal] = ACTIONS(1291), + [anon_sym_DQUOTE] = ACTIONS(1293), + [sym_verbatim_string_literal] = ACTIONS(1291), + [aux_sym_preproc_if_token1] = ACTIONS(1295), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -170990,90 +170876,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(1297), + [sym_interpolation_verbatim_start] = ACTIONS(1299), + [sym_interpolation_raw_start] = ACTIONS(1301), + [sym_raw_string_start] = ACTIONS(1303), }, [765] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(5910), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2247), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(4921), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3379), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3080), - [sym_postfix_unary_expression] = STATE(3111), - [sym_prefix_unary_expression] = STATE(3111), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6154), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3080), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3111), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3080), - [sym_member_access_expression] = STATE(2484), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3111), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7575), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(3080), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3080), - [sym_typeof_expression] = STATE(3080), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2484), - [sym_literal] = STATE(3080), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_block] = STATE(2984), + [sym_bracketed_argument_list] = STATE(2416), + [sym__name] = STATE(5890), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2193), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(5242), + [sym_non_lvalue_expression] = STATE(3040), + [sym_lvalue_expression] = STATE(3549), + [sym__expression_statement_expression] = STATE(3035), + [sym_assignment_expression] = STATE(3043), + [sym_binary_expression] = STATE(3035), + [sym_postfix_unary_expression] = STATE(3043), + [sym_prefix_unary_expression] = STATE(3043), + [sym__pointer_indirection_expression] = STATE(2415), + [sym_query_expression] = STATE(3035), + [sym_from_clause] = STATE(6131), + [sym_conditional_expression] = STATE(3035), + [sym_conditional_access_expression] = STATE(3035), + [sym_as_expression] = STATE(3035), + [sym_is_expression] = STATE(3035), + [sym_is_pattern_expression] = STATE(3035), + [sym_cast_expression] = STATE(3035), + [sym_checked_expression] = STATE(3035), + [sym_invocation_expression] = STATE(3043), + [sym_switch_expression] = STATE(3035), + [sym_await_expression] = STATE(3043), + [sym_throw_expression] = STATE(3035), + [sym_element_access_expression] = STATE(2415), + [sym_interpolated_string_expression] = STATE(3035), + [sym_member_access_expression] = STATE(2415), + [sym_object_creation_expression] = STATE(3043), + [sym_parenthesized_expression] = STATE(3043), + [sym__parenthesized_lvalue_expression] = STATE(2415), + [sym_lambda_expression] = STATE(3035), + [sym__lambda_expression_init] = STATE(7412), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3035), + [sym_anonymous_method_expression] = STATE(3035), + [sym_anonymous_object_creation_expression] = STATE(3035), + [sym_implicit_array_creation_expression] = STATE(3035), + [sym_implicit_object_creation_expression] = STATE(3035), + [sym_implicit_stackalloc_expression] = STATE(3035), + [sym_initializer_expression] = STATE(3035), + [sym_default_expression] = STATE(3035), + [sym_with_expression] = STATE(3035), + [sym_sizeof_expression] = STATE(3035), + [sym_typeof_expression] = STATE(3035), + [sym_makeref_expression] = STATE(3035), + [sym_ref_expression] = STATE(3035), + [sym_reftype_expression] = STATE(3035), + [sym_refvalue_expression] = STATE(3035), + [sym_stackalloc_expression] = STATE(3035), + [sym_range_expression] = STATE(3035), + [sym_tuple_expression] = STATE(2415), + [sym_literal] = STATE(3035), + [sym_character_literal] = STATE(3037), + [sym_string_literal] = STATE(3037), + [sym_raw_string_literal] = STATE(3037), + [sym_boolean_literal] = STATE(3037), + [sym_identifier] = STATE(2261), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3035), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(765), [sym_preproc_endregion] = STATE(765), [sym_preproc_line] = STATE(765), @@ -171083,48 +170970,47 @@ 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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3455), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1481), - [anon_sym_LPAREN] = ACTIONS(895), - [anon_sym_RPAREN] = ACTIONS(2887), - [anon_sym_ref] = ACTIONS(897), - [anon_sym_LBRACE] = ACTIONS(1487), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1239), + [anon_sym_LPAREN] = ACTIONS(1949), + [anon_sym_ref] = ACTIONS(1951), + [anon_sym_LBRACE] = ACTIONS(2839), + [anon_sym_delegate] = ACTIONS(1247), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1061), + [anon_sym_new] = ACTIONS(1249), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1067), - [anon_sym_BANG] = ACTIONS(1495), - [anon_sym_TILDE] = ACTIONS(1495), - [anon_sym_PLUS_PLUS] = ACTIONS(1495), - [anon_sym_DASH_DASH] = ACTIONS(1495), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1493), - [anon_sym_DASH] = ACTIONS(1493), - [anon_sym_STAR] = ACTIONS(905), - [anon_sym_CARET] = ACTIONS(1495), - [anon_sym_AMP] = ACTIONS(1495), - [anon_sym_this] = ACTIONS(83), + [anon_sym_checked] = ACTIONS(1251), + [anon_sym_BANG] = ACTIONS(1955), + [anon_sym_TILDE] = ACTIONS(1955), + [anon_sym_PLUS_PLUS] = ACTIONS(1955), + [anon_sym_DASH_DASH] = ACTIONS(1955), + [anon_sym_true] = ACTIONS(1257), + [anon_sym_false] = ACTIONS(1257), + [anon_sym_PLUS] = ACTIONS(1953), + [anon_sym_DASH] = ACTIONS(1953), + [anon_sym_STAR] = ACTIONS(1957), + [anon_sym_CARET] = ACTIONS(1955), + [anon_sym_AMP] = ACTIONS(1955), + [anon_sym_this] = ACTIONS(1261), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), + [anon_sym_base] = ACTIONS(1263), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1067), + [sym_predefined_type] = ACTIONS(1265), + [anon_sym_unchecked] = ACTIONS(1251), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1079), + [anon_sym_default] = ACTIONS(1267), + [anon_sym_throw] = ACTIONS(1959), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1081), - [anon_sym_DOT_DOT] = ACTIONS(911), + [anon_sym_await] = ACTIONS(1961), + [anon_sym_DOT_DOT] = ACTIONS(1963), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -171137,19 +171023,19 @@ static const uint16_t ts_parse_table[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(1089), + [anon_sym_stackalloc] = ACTIONS(1275), + [anon_sym_sizeof] = ACTIONS(1277), + [anon_sym_typeof] = ACTIONS(1279), + [anon_sym___makeref] = ACTIONS(1281), + [anon_sym___reftype] = ACTIONS(1283), + [anon_sym___refvalue] = ACTIONS(1285), + [sym_null_literal] = ACTIONS(1287), + [anon_sym_SQUOTE] = ACTIONS(1289), + [sym_integer_literal] = ACTIONS(1287), + [sym_real_literal] = ACTIONS(1291), + [anon_sym_DQUOTE] = ACTIONS(1293), + [sym_verbatim_string_literal] = ACTIONS(1291), + [aux_sym_preproc_if_token1] = ACTIONS(1295), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -171160,91 +171046,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(1297), + [sym_interpolation_verbatim_start] = ACTIONS(1299), + [sym_interpolation_raw_start] = ACTIONS(1301), + [sym_raw_string_start] = ACTIONS(1303), }, [766] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_block] = STATE(3702), - [sym_bracketed_argument_list] = STATE(2914), - [sym__name] = STATE(5873), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2362), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(4026), - [sym_non_lvalue_expression] = STATE(3880), - [sym_lvalue_expression] = STATE(3092), - [sym__expression_statement_expression] = STATE(3873), - [sym_assignment_expression] = STATE(3881), - [sym_binary_expression] = STATE(3873), - [sym_postfix_unary_expression] = STATE(3881), - [sym_prefix_unary_expression] = STATE(3881), - [sym__pointer_indirection_expression] = STATE(2913), - [sym_query_expression] = STATE(3873), - [sym_from_clause] = STATE(6168), - [sym_conditional_expression] = STATE(3873), - [sym_conditional_access_expression] = STATE(3873), - [sym_as_expression] = STATE(3873), - [sym_is_expression] = STATE(3873), - [sym_is_pattern_expression] = STATE(3873), - [sym_cast_expression] = STATE(3873), - [sym_checked_expression] = STATE(3873), - [sym_invocation_expression] = STATE(3881), - [sym_switch_expression] = STATE(3873), - [sym_await_expression] = STATE(3881), - [sym_throw_expression] = STATE(3873), - [sym_element_access_expression] = STATE(2913), - [sym_interpolated_string_expression] = STATE(3873), - [sym_member_access_expression] = STATE(2913), - [sym_object_creation_expression] = STATE(3881), - [sym_parenthesized_expression] = STATE(3881), - [sym__parenthesized_lvalue_expression] = STATE(2913), - [sym_lambda_expression] = STATE(3873), - [sym__lambda_expression_init] = STATE(7533), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3873), - [sym_anonymous_method_expression] = STATE(3873), - [sym_anonymous_object_creation_expression] = STATE(3873), - [sym_implicit_array_creation_expression] = STATE(3873), - [sym_implicit_object_creation_expression] = STATE(3873), - [sym_implicit_stackalloc_expression] = STATE(3873), - [sym_initializer_expression] = STATE(3873), - [sym_default_expression] = STATE(3873), - [sym_with_expression] = STATE(3873), - [sym_sizeof_expression] = STATE(3873), - [sym_typeof_expression] = STATE(3873), - [sym_makeref_expression] = STATE(3873), - [sym_ref_expression] = STATE(3873), - [sym_reftype_expression] = STATE(3873), - [sym_refvalue_expression] = STATE(3873), - [sym_stackalloc_expression] = STATE(3873), - [sym_range_expression] = STATE(3873), - [sym_tuple_expression] = STATE(2913), - [sym_literal] = STATE(3873), - [sym_character_literal] = STATE(3877), - [sym_string_literal] = STATE(3877), - [sym_raw_string_literal] = STATE(3877), - [sym_boolean_literal] = STATE(3877), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3873), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_block] = STATE(3279), + [sym_bracketed_argument_list] = STATE(2603), + [sym__name] = STATE(5862), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2193), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(4787), + [sym_non_lvalue_expression] = STATE(3220), + [sym_lvalue_expression] = STATE(3502), + [sym__expression_statement_expression] = STATE(3236), + [sym_assignment_expression] = STATE(3221), + [sym_binary_expression] = STATE(3236), + [sym_postfix_unary_expression] = STATE(3221), + [sym_prefix_unary_expression] = STATE(3221), + [sym__pointer_indirection_expression] = STATE(2602), + [sym_query_expression] = STATE(3236), + [sym_from_clause] = STATE(6136), + [sym_conditional_expression] = STATE(3236), + [sym_conditional_access_expression] = STATE(3236), + [sym_as_expression] = STATE(3236), + [sym_is_expression] = STATE(3236), + [sym_is_pattern_expression] = STATE(3236), + [sym_cast_expression] = STATE(3236), + [sym_checked_expression] = STATE(3236), + [sym_invocation_expression] = STATE(3221), + [sym_switch_expression] = STATE(3236), + [sym_await_expression] = STATE(3221), + [sym_throw_expression] = STATE(3236), + [sym_element_access_expression] = STATE(2602), + [sym_interpolated_string_expression] = STATE(3236), + [sym_member_access_expression] = STATE(2602), + [sym_object_creation_expression] = STATE(3221), + [sym_parenthesized_expression] = STATE(3221), + [sym__parenthesized_lvalue_expression] = STATE(2602), + [sym_lambda_expression] = STATE(3236), + [sym__lambda_expression_init] = STATE(7475), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3236), + [sym_anonymous_method_expression] = STATE(3236), + [sym_anonymous_object_creation_expression] = STATE(3236), + [sym_implicit_array_creation_expression] = STATE(3236), + [sym_implicit_object_creation_expression] = STATE(3236), + [sym_implicit_stackalloc_expression] = STATE(3236), + [sym_initializer_expression] = STATE(3236), + [sym_default_expression] = STATE(3236), + [sym_with_expression] = STATE(3236), + [sym_sizeof_expression] = STATE(3236), + [sym_typeof_expression] = STATE(3236), + [sym_makeref_expression] = STATE(3236), + [sym_ref_expression] = STATE(3236), + [sym_reftype_expression] = STATE(3236), + [sym_refvalue_expression] = STATE(3236), + [sym_stackalloc_expression] = STATE(3236), + [sym_range_expression] = STATE(3236), + [sym_tuple_expression] = STATE(2602), + [sym_literal] = STATE(3236), + [sym_character_literal] = STATE(3272), + [sym_string_literal] = STATE(3272), + [sym_raw_string_literal] = STATE(3272), + [sym_boolean_literal] = STATE(3272), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3236), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(766), [sym_preproc_endregion] = STATE(766), [sym_preproc_line] = STATE(766), @@ -171254,47 +171140,47 @@ 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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3382), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3379), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1627), - [anon_sym_LPAREN] = ACTIONS(1961), - [anon_sym_ref] = ACTIONS(1963), - [anon_sym_LBRACE] = ACTIONS(2873), - [anon_sym_delegate] = ACTIONS(1635), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1149), + [anon_sym_LPAREN] = ACTIONS(1787), + [anon_sym_ref] = ACTIONS(1789), + [anon_sym_LBRACE] = ACTIONS(2843), + [anon_sym_delegate] = ACTIONS(1157), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1637), + [anon_sym_new] = ACTIONS(1159), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1639), - [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(1645), - [anon_sym_false] = ACTIONS(1645), - [anon_sym_PLUS] = ACTIONS(1965), - [anon_sym_DASH] = ACTIONS(1965), - [anon_sym_STAR] = ACTIONS(1647), - [anon_sym_CARET] = ACTIONS(1967), - [anon_sym_AMP] = ACTIONS(1967), - [anon_sym_this] = ACTIONS(1649), + [anon_sym_checked] = ACTIONS(1163), + [anon_sym_BANG] = ACTIONS(1793), + [anon_sym_TILDE] = ACTIONS(1793), + [anon_sym_PLUS_PLUS] = ACTIONS(1793), + [anon_sym_DASH_DASH] = ACTIONS(1793), + [anon_sym_true] = ACTIONS(1169), + [anon_sym_false] = ACTIONS(1169), + [anon_sym_PLUS] = ACTIONS(1791), + [anon_sym_DASH] = ACTIONS(1791), + [anon_sym_STAR] = ACTIONS(1171), + [anon_sym_CARET] = ACTIONS(1793), + [anon_sym_AMP] = ACTIONS(1793), + [anon_sym_this] = ACTIONS(1173), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1651), + [anon_sym_base] = ACTIONS(1175), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1653), - [anon_sym_unchecked] = ACTIONS(1639), + [sym_predefined_type] = ACTIONS(1177), + [anon_sym_unchecked] = ACTIONS(1163), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1655), - [anon_sym_throw] = ACTIONS(1969), + [anon_sym_default] = ACTIONS(1179), + [anon_sym_throw] = ACTIONS(1795), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1971), - [anon_sym_DOT_DOT] = ACTIONS(1973), + [anon_sym_await] = ACTIONS(1797), + [anon_sym_DOT_DOT] = ACTIONS(1799), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -171307,19 +171193,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1663), - [anon_sym_sizeof] = ACTIONS(1665), - [anon_sym_typeof] = ACTIONS(1667), - [anon_sym___makeref] = ACTIONS(1669), - [anon_sym___reftype] = ACTIONS(1671), - [anon_sym___refvalue] = ACTIONS(1673), - [sym_null_literal] = ACTIONS(1675), - [anon_sym_SQUOTE] = ACTIONS(1677), - [sym_integer_literal] = ACTIONS(1675), - [sym_real_literal] = ACTIONS(1679), - [anon_sym_DQUOTE] = ACTIONS(1681), - [sym_verbatim_string_literal] = ACTIONS(1679), - [aux_sym_preproc_if_token1] = ACTIONS(1683), + [anon_sym_stackalloc] = ACTIONS(1187), + [anon_sym_sizeof] = ACTIONS(1189), + [anon_sym_typeof] = ACTIONS(1191), + [anon_sym___makeref] = ACTIONS(1193), + [anon_sym___reftype] = ACTIONS(1195), + [anon_sym___refvalue] = ACTIONS(1197), + [sym_null_literal] = ACTIONS(1199), + [anon_sym_SQUOTE] = ACTIONS(1201), + [sym_integer_literal] = ACTIONS(1199), + [sym_real_literal] = ACTIONS(1203), + [anon_sym_DQUOTE] = ACTIONS(1205), + [sym_verbatim_string_literal] = ACTIONS(1203), + [aux_sym_preproc_if_token1] = ACTIONS(1801), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -171330,90 +171216,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(1685), - [sym_interpolation_verbatim_start] = ACTIONS(1687), - [sym_interpolation_raw_start] = ACTIONS(1689), - [sym_raw_string_start] = ACTIONS(1691), + [sym_interpolation_regular_start] = ACTIONS(1209), + [sym_interpolation_verbatim_start] = ACTIONS(1211), + [sym_interpolation_raw_start] = ACTIONS(1213), + [sym_raw_string_start] = ACTIONS(1215), }, [767] = { - [sym_attribute_list] = STATE(5768), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(5160), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2204), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(5629), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3520), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3080), - [sym_postfix_unary_expression] = STATE(3111), - [sym_prefix_unary_expression] = STATE(3111), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6154), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3080), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3111), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3080), - [sym_member_access_expression] = STATE(2484), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3111), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7530), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(3080), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3080), - [sym_typeof_expression] = STATE(3080), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2484), - [sym_literal] = STATE(3080), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_block] = STATE(3058), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(5873), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2238), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(5051), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3526), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3102), + [sym_postfix_unary_expression] = STATE(3079), + [sym_prefix_unary_expression] = STATE(3079), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6134), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3102), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3079), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3102), + [sym_member_access_expression] = STATE(2472), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3079), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7455), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(3102), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3102), + [sym_typeof_expression] = STATE(3102), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2472), + [sym_literal] = STATE(3102), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(767), [sym_preproc_endregion] = STATE(767), [sym_preproc_line] = STATE(767), @@ -171423,47 +171310,47 @@ 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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1481), - [anon_sym_LPAREN] = ACTIONS(43), - [anon_sym_ref] = ACTIONS(661), - [anon_sym_LBRACE] = ACTIONS(1487), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1479), + [anon_sym_LPAREN] = ACTIONS(1629), + [anon_sym_ref] = ACTIONS(1631), + [anon_sym_LBRACE] = ACTIONS(2855), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1061), + [anon_sym_new] = ACTIONS(1515), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = 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_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(1585), - [anon_sym_DASH] = ACTIONS(1585), - [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(1587), - [anon_sym_AMP] = ACTIONS(1587), + [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_scoped] = ACTIONS(85), [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1067), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1589), + [anon_sym_throw] = ACTIONS(1633), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1591), - [anon_sym_DOT_DOT] = ACTIONS(123), + [anon_sym_await] = ACTIONS(1635), + [anon_sym_DOT_DOT] = ACTIONS(1637), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -171488,8 +171375,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(1089), - [aux_sym_preproc_if_token3] = ACTIONS(2889), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -171506,84 +171392,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [768] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2762), - [sym__name] = STATE(5910), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2204), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(2291), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(4284), - [sym_non_lvalue_expression] = STATE(3438), - [sym_lvalue_expression] = STATE(3162), - [sym__expression_statement_expression] = STATE(3362), - [sym_assignment_expression] = STATE(3449), - [sym_binary_expression] = STATE(3362), - [sym_postfix_unary_expression] = STATE(3449), - [sym_prefix_unary_expression] = STATE(3449), - [sym__pointer_indirection_expression] = STATE(2747), - [sym_query_expression] = STATE(3362), - [sym_from_clause] = STATE(6171), - [sym_conditional_expression] = STATE(3362), - [sym_conditional_access_expression] = STATE(3362), - [sym_as_expression] = STATE(3362), - [sym_is_expression] = STATE(3362), - [sym_is_pattern_expression] = STATE(3362), - [sym_cast_expression] = STATE(3362), - [sym_checked_expression] = STATE(3362), - [sym_invocation_expression] = STATE(3449), - [sym_switch_expression] = STATE(3362), - [sym_await_expression] = STATE(3449), - [sym_throw_expression] = STATE(3362), - [sym_element_access_expression] = STATE(2747), - [sym_interpolated_string_expression] = STATE(3362), - [sym_member_access_expression] = STATE(2747), - [sym_object_creation_expression] = STATE(3449), - [sym_parenthesized_expression] = STATE(3449), - [sym__parenthesized_lvalue_expression] = STATE(2747), - [sym_lambda_expression] = STATE(3362), - [sym__lambda_expression_init] = STATE(7320), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3362), - [sym_anonymous_method_expression] = STATE(3362), - [sym_anonymous_object_creation_expression] = STATE(3362), - [sym_implicit_array_creation_expression] = STATE(3362), - [sym_implicit_object_creation_expression] = STATE(3362), - [sym_implicit_stackalloc_expression] = STATE(3362), - [sym_initializer_expression] = STATE(3362), - [sym_default_expression] = STATE(3362), - [sym_with_expression] = STATE(3362), - [sym_sizeof_expression] = STATE(3362), - [sym_typeof_expression] = STATE(3362), - [sym_makeref_expression] = STATE(3362), - [sym_ref_expression] = STATE(3362), - [sym_reftype_expression] = STATE(3362), - [sym_refvalue_expression] = STATE(3362), - [sym_stackalloc_expression] = STATE(3362), - [sym_range_expression] = STATE(3362), - [sym_tuple_expression] = STATE(2747), - [sym_literal] = STATE(3362), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3362), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2416), + [sym__name] = STATE(5890), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2193), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(2279), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(5236), + [sym_non_lvalue_expression] = STATE(3040), + [sym_lvalue_expression] = STATE(3549), + [sym__expression_statement_expression] = STATE(3035), + [sym_assignment_expression] = STATE(3043), + [sym_binary_expression] = STATE(3035), + [sym_postfix_unary_expression] = STATE(3043), + [sym_prefix_unary_expression] = STATE(3043), + [sym__pointer_indirection_expression] = STATE(2415), + [sym_query_expression] = STATE(3035), + [sym_from_clause] = STATE(6131), + [sym_conditional_expression] = STATE(3035), + [sym_conditional_access_expression] = STATE(3035), + [sym_as_expression] = STATE(3035), + [sym_is_expression] = STATE(3035), + [sym_is_pattern_expression] = STATE(3035), + [sym_cast_expression] = STATE(3035), + [sym_checked_expression] = STATE(3035), + [sym_invocation_expression] = STATE(3043), + [sym_switch_expression] = STATE(3035), + [sym_await_expression] = STATE(3043), + [sym_throw_expression] = STATE(3035), + [sym_element_access_expression] = STATE(2415), + [sym_interpolated_string_expression] = STATE(3035), + [sym_member_access_expression] = STATE(2415), + [sym_object_creation_expression] = STATE(3043), + [sym_parenthesized_expression] = STATE(3043), + [sym__parenthesized_lvalue_expression] = STATE(2415), + [sym_lambda_expression] = STATE(3035), + [sym__lambda_expression_init] = STATE(7412), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3035), + [sym_anonymous_method_expression] = STATE(3035), + [sym_anonymous_object_creation_expression] = STATE(3035), + [sym_implicit_array_creation_expression] = STATE(3035), + [sym_implicit_object_creation_expression] = STATE(3035), + [sym_implicit_stackalloc_expression] = STATE(3035), + [sym_initializer_expression] = STATE(3035), + [sym_default_expression] = STATE(3035), + [sym_with_expression] = STATE(3035), + [sym_sizeof_expression] = STATE(3035), + [sym_typeof_expression] = STATE(3035), + [sym_makeref_expression] = STATE(3035), + [sym_ref_expression] = STATE(3035), + [sym_reftype_expression] = STATE(3035), + [sym_refvalue_expression] = STATE(3035), + [sym_stackalloc_expression] = STATE(3035), + [sym_range_expression] = STATE(3035), + [sym_tuple_expression] = STATE(2415), + [sym_literal] = STATE(3035), + [sym_character_literal] = STATE(3037), + [sym_string_literal] = STATE(3037), + [sym_raw_string_literal] = STATE(3037), + [sym_boolean_literal] = STATE(3037), + [sym_identifier] = STATE(2261), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3035), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(768), [sym_preproc_endregion] = STATE(768), [sym_preproc_line] = STATE(768), @@ -171593,48 +171479,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(768), [sym_preproc_define] = STATE(768), [sym_preproc_undef] = STATE(768), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3385), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3455), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1307), - [anon_sym_LPAREN] = ACTIONS(1343), - [anon_sym_ref] = ACTIONS(1345), - [anon_sym_LBRACE] = ACTIONS(1313), - [anon_sym_delegate] = ACTIONS(1315), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1239), + [anon_sym_LPAREN] = ACTIONS(1949), + [anon_sym_ref] = ACTIONS(1951), + [anon_sym_LBRACE] = ACTIONS(1245), + [anon_sym_delegate] = ACTIONS(1247), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1317), - [anon_sym_readonly] = ACTIONS(2749), + [anon_sym_new] = ACTIONS(1249), + [anon_sym_readonly] = ACTIONS(2767), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1319), - [anon_sym_BANG] = ACTIONS(1349), - [anon_sym_TILDE] = ACTIONS(1349), - [anon_sym_PLUS_PLUS] = ACTIONS(1349), - [anon_sym_DASH_DASH] = ACTIONS(1349), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1347), - [anon_sym_DASH] = ACTIONS(1347), - [anon_sym_STAR] = ACTIONS(1351), - [anon_sym_CARET] = ACTIONS(1349), - [anon_sym_AMP] = ACTIONS(1349), - [anon_sym_this] = ACTIONS(1323), + [anon_sym_checked] = ACTIONS(1251), + [anon_sym_BANG] = ACTIONS(1955), + [anon_sym_TILDE] = ACTIONS(1955), + [anon_sym_PLUS_PLUS] = ACTIONS(1955), + [anon_sym_DASH_DASH] = ACTIONS(1955), + [anon_sym_true] = ACTIONS(1257), + [anon_sym_false] = ACTIONS(1257), + [anon_sym_PLUS] = ACTIONS(1953), + [anon_sym_DASH] = ACTIONS(1953), + [anon_sym_STAR] = ACTIONS(1957), + [anon_sym_CARET] = ACTIONS(1955), + [anon_sym_AMP] = ACTIONS(1955), + [anon_sym_this] = ACTIONS(1261), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1325), + [anon_sym_base] = ACTIONS(1263), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1319), + [sym_predefined_type] = ACTIONS(1265), + [anon_sym_unchecked] = ACTIONS(1251), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1353), + [anon_sym_default] = ACTIONS(1267), + [anon_sym_throw] = ACTIONS(1959), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1355), - [anon_sym_DOT_DOT] = ACTIONS(1357), + [anon_sym_await] = ACTIONS(1961), + [anon_sym_DOT_DOT] = ACTIONS(1963), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -171647,19 +171533,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1333), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(1335), - [anon_sym___reftype] = ACTIONS(1337), - [anon_sym___refvalue] = ACTIONS(1339), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1341), + [anon_sym_stackalloc] = ACTIONS(1275), + [anon_sym_sizeof] = ACTIONS(1277), + [anon_sym_typeof] = ACTIONS(1279), + [anon_sym___makeref] = ACTIONS(1281), + [anon_sym___reftype] = ACTIONS(1283), + [anon_sym___refvalue] = ACTIONS(1285), + [sym_null_literal] = ACTIONS(1287), + [anon_sym_SQUOTE] = ACTIONS(1289), + [sym_integer_literal] = ACTIONS(1287), + [sym_real_literal] = ACTIONS(1291), + [anon_sym_DQUOTE] = ACTIONS(1293), + [sym_verbatim_string_literal] = ACTIONS(1291), + [aux_sym_preproc_if_token1] = ACTIONS(1295), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -171670,90 +171556,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(1297), + [sym_interpolation_verbatim_start] = ACTIONS(1299), + [sym_interpolation_raw_start] = ACTIONS(1301), + [sym_raw_string_start] = ACTIONS(1303), }, [769] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(5160), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2204), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(5617), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3461), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3080), - [sym_postfix_unary_expression] = STATE(3111), - [sym_prefix_unary_expression] = STATE(3111), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6154), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3080), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3111), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3080), - [sym_member_access_expression] = STATE(2484), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3111), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7547), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(3080), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3080), - [sym_typeof_expression] = STATE(3080), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2484), - [sym_literal] = STATE(3080), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2901), + [sym__name] = STATE(5883), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2359), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(4019), + [sym_non_lvalue_expression] = STATE(3685), + [sym_lvalue_expression] = STATE(3073), + [sym__expression_statement_expression] = STATE(3836), + [sym_assignment_expression] = STATE(3689), + [sym_binary_expression] = STATE(3836), + [sym_postfix_unary_expression] = STATE(3689), + [sym_prefix_unary_expression] = STATE(3689), + [sym__pointer_indirection_expression] = STATE(2906), + [sym_query_expression] = STATE(3836), + [sym_from_clause] = STATE(6157), + [sym__ordering] = STATE(6326), + [sym_conditional_expression] = STATE(3836), + [sym_conditional_access_expression] = STATE(3836), + [sym_as_expression] = STATE(3836), + [sym_is_expression] = STATE(3836), + [sym_is_pattern_expression] = STATE(3836), + [sym_cast_expression] = STATE(3836), + [sym_checked_expression] = STATE(3836), + [sym_invocation_expression] = STATE(3689), + [sym_switch_expression] = STATE(3836), + [sym_await_expression] = STATE(3689), + [sym_throw_expression] = STATE(3836), + [sym_element_access_expression] = STATE(2906), + [sym_interpolated_string_expression] = STATE(3836), + [sym_member_access_expression] = STATE(2906), + [sym_object_creation_expression] = STATE(3689), + [sym_parenthesized_expression] = STATE(3689), + [sym__parenthesized_lvalue_expression] = STATE(2906), + [sym_lambda_expression] = STATE(3836), + [sym__lambda_expression_init] = STATE(7460), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3836), + [sym_anonymous_method_expression] = STATE(3836), + [sym_anonymous_object_creation_expression] = STATE(3836), + [sym_implicit_array_creation_expression] = STATE(3836), + [sym_implicit_object_creation_expression] = STATE(3836), + [sym_implicit_stackalloc_expression] = STATE(3836), + [sym_initializer_expression] = STATE(3836), + [sym_default_expression] = STATE(3836), + [sym_with_expression] = STATE(3836), + [sym_sizeof_expression] = STATE(3836), + [sym_typeof_expression] = STATE(3836), + [sym_makeref_expression] = STATE(3836), + [sym_ref_expression] = STATE(3836), + [sym_reftype_expression] = STATE(3836), + [sym_refvalue_expression] = STATE(3836), + [sym_stackalloc_expression] = STATE(3836), + [sym_range_expression] = STATE(3836), + [sym_tuple_expression] = STATE(2906), + [sym_literal] = STATE(3836), + [sym_character_literal] = STATE(3843), + [sym_string_literal] = STATE(3843), + [sym_raw_string_literal] = STATE(3843), + [sym_boolean_literal] = STATE(3843), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3836), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(769), [sym_preproc_endregion] = STATE(769), [sym_preproc_line] = STATE(769), @@ -171763,48 +171650,47 @@ 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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3477), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), - [anon_sym_SEMI] = ACTIONS(2891), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1481), - [anon_sym_LPAREN] = ACTIONS(1497), - [anon_sym_ref] = ACTIONS(1499), - [anon_sym_LBRACE] = ACTIONS(1487), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1655), + [anon_sym_LPAREN] = ACTIONS(2061), + [anon_sym_ref] = ACTIONS(2063), + [anon_sym_LBRACE] = ACTIONS(1661), + [anon_sym_delegate] = ACTIONS(1663), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1501), + [anon_sym_new] = ACTIONS(1665), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = 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(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(1667), + [anon_sym_BANG] = ACTIONS(2067), + [anon_sym_TILDE] = ACTIONS(2067), + [anon_sym_PLUS_PLUS] = ACTIONS(2067), + [anon_sym_DASH_DASH] = ACTIONS(2067), + [anon_sym_true] = ACTIONS(1673), + [anon_sym_false] = ACTIONS(1673), + [anon_sym_PLUS] = ACTIONS(2065), + [anon_sym_DASH] = ACTIONS(2065), + [anon_sym_STAR] = ACTIONS(1675), + [anon_sym_CARET] = ACTIONS(2067), + [anon_sym_AMP] = ACTIONS(2067), + [anon_sym_this] = ACTIONS(1677), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), + [anon_sym_base] = ACTIONS(1679), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1067), + [sym_predefined_type] = ACTIONS(1681), + [anon_sym_unchecked] = ACTIONS(1667), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1503), + [anon_sym_default] = ACTIONS(1683), + [anon_sym_throw] = ACTIONS(2069), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1505), - [anon_sym_DOT_DOT] = ACTIONS(1507), + [anon_sym_await] = ACTIONS(2071), + [anon_sym_DOT_DOT] = ACTIONS(2073), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -171817,19 +171703,19 @@ static const uint16_t ts_parse_table[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(1089), + [anon_sym_stackalloc] = ACTIONS(1691), + [anon_sym_sizeof] = ACTIONS(1693), + [anon_sym_typeof] = ACTIONS(1695), + [anon_sym___makeref] = ACTIONS(1697), + [anon_sym___reftype] = ACTIONS(1699), + [anon_sym___refvalue] = ACTIONS(1701), + [sym_null_literal] = ACTIONS(1703), + [anon_sym_SQUOTE] = ACTIONS(1705), + [sym_integer_literal] = ACTIONS(1703), + [sym_real_literal] = ACTIONS(1707), + [anon_sym_DQUOTE] = ACTIONS(1709), + [sym_verbatim_string_literal] = ACTIONS(1707), + [aux_sym_preproc_if_token1] = ACTIONS(1711), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -171840,90 +171726,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(151), - [sym_interpolation_verbatim_start] = ACTIONS(153), - [sym_interpolation_raw_start] = ACTIONS(155), - [sym_raw_string_start] = ACTIONS(157), + [sym_interpolation_regular_start] = ACTIONS(1713), + [sym_interpolation_verbatim_start] = ACTIONS(1715), + [sym_interpolation_raw_start] = ACTIONS(1717), + [sym_raw_string_start] = ACTIONS(1719), }, [770] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(5312), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2225), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(2291), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(4871), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3520), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3080), - [sym_postfix_unary_expression] = STATE(3111), - [sym_prefix_unary_expression] = STATE(3111), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6154), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3080), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3111), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3080), - [sym_member_access_expression] = STATE(2484), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3111), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7530), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(3080), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3080), - [sym_typeof_expression] = STATE(3080), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2484), - [sym_literal] = STATE(3080), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2267), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2603), + [sym__name] = STATE(5862), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2193), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(2279), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(4792), + [sym_non_lvalue_expression] = STATE(3220), + [sym_lvalue_expression] = STATE(3502), + [sym__expression_statement_expression] = STATE(3236), + [sym_assignment_expression] = STATE(3221), + [sym_binary_expression] = STATE(3236), + [sym_postfix_unary_expression] = STATE(3221), + [sym_prefix_unary_expression] = STATE(3221), + [sym__pointer_indirection_expression] = STATE(2602), + [sym_query_expression] = STATE(3236), + [sym_from_clause] = STATE(6136), + [sym_conditional_expression] = STATE(3236), + [sym_conditional_access_expression] = STATE(3236), + [sym_as_expression] = STATE(3236), + [sym_is_expression] = STATE(3236), + [sym_is_pattern_expression] = STATE(3236), + [sym_cast_expression] = STATE(3236), + [sym_checked_expression] = STATE(3236), + [sym_invocation_expression] = STATE(3221), + [sym_switch_expression] = STATE(3236), + [sym_await_expression] = STATE(3221), + [sym_throw_expression] = STATE(3236), + [sym_element_access_expression] = STATE(2602), + [sym_interpolated_string_expression] = STATE(3236), + [sym_member_access_expression] = STATE(2602), + [sym_object_creation_expression] = STATE(3221), + [sym_parenthesized_expression] = STATE(3221), + [sym__parenthesized_lvalue_expression] = STATE(2602), + [sym_lambda_expression] = STATE(3236), + [sym__lambda_expression_init] = STATE(7475), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3236), + [sym_anonymous_method_expression] = STATE(3236), + [sym_anonymous_object_creation_expression] = STATE(3236), + [sym_implicit_array_creation_expression] = STATE(3236), + [sym_implicit_object_creation_expression] = STATE(3236), + [sym_implicit_stackalloc_expression] = STATE(3236), + [sym_initializer_expression] = STATE(3236), + [sym_default_expression] = STATE(3236), + [sym_with_expression] = STATE(3236), + [sym_sizeof_expression] = STATE(3236), + [sym_typeof_expression] = STATE(3236), + [sym_makeref_expression] = STATE(3236), + [sym_ref_expression] = STATE(3236), + [sym_reftype_expression] = STATE(3236), + [sym_refvalue_expression] = STATE(3236), + [sym_stackalloc_expression] = STATE(3236), + [sym_range_expression] = STATE(3236), + [sym_tuple_expression] = STATE(2602), + [sym_literal] = STATE(3236), + [sym_character_literal] = STATE(3272), + [sym_string_literal] = STATE(3272), + [sym_raw_string_literal] = STATE(3272), + [sym_boolean_literal] = STATE(3272), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3236), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(770), [sym_preproc_endregion] = STATE(770), [sym_preproc_line] = STATE(770), @@ -171933,48 +171819,48 @@ 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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3379), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1481), - [anon_sym_LPAREN] = ACTIONS(43), - [anon_sym_ref] = ACTIONS(1987), - [anon_sym_LBRACE] = ACTIONS(1487), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1149), + [anon_sym_LPAREN] = ACTIONS(1787), + [anon_sym_ref] = ACTIONS(1789), + [anon_sym_LBRACE] = ACTIONS(1155), + [anon_sym_delegate] = ACTIONS(1157), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1061), - [anon_sym_readonly] = ACTIONS(2759), + [anon_sym_new] = ACTIONS(1159), + [anon_sym_readonly] = ACTIONS(2767), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = 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(1585), - [anon_sym_DASH] = ACTIONS(1585), - [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(1587), - [anon_sym_AMP] = ACTIONS(1587), - [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(1075), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(2893), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1067), + [anon_sym_checked] = ACTIONS(1163), + [anon_sym_BANG] = ACTIONS(1793), + [anon_sym_TILDE] = ACTIONS(1793), + [anon_sym_PLUS_PLUS] = ACTIONS(1793), + [anon_sym_DASH_DASH] = ACTIONS(1793), + [anon_sym_true] = ACTIONS(1169), + [anon_sym_false] = ACTIONS(1169), + [anon_sym_PLUS] = ACTIONS(1791), + [anon_sym_DASH] = ACTIONS(1791), + [anon_sym_STAR] = ACTIONS(1171), + [anon_sym_CARET] = ACTIONS(1793), + [anon_sym_AMP] = ACTIONS(1793), + [anon_sym_this] = ACTIONS(1173), + [anon_sym_scoped] = ACTIONS(85), + [anon_sym_base] = ACTIONS(1175), + [anon_sym_var] = ACTIONS(89), + [sym_predefined_type] = ACTIONS(1177), + [anon_sym_unchecked] = ACTIONS(1163), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1589), + [anon_sym_default] = ACTIONS(1179), + [anon_sym_throw] = ACTIONS(1795), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1591), - [anon_sym_DOT_DOT] = ACTIONS(123), + [anon_sym_await] = ACTIONS(1797), + [anon_sym_DOT_DOT] = ACTIONS(1799), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -171987,19 +171873,19 @@ static const uint16_t ts_parse_table[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(1089), + [anon_sym_stackalloc] = ACTIONS(1187), + [anon_sym_sizeof] = ACTIONS(1189), + [anon_sym_typeof] = ACTIONS(1191), + [anon_sym___makeref] = ACTIONS(1193), + [anon_sym___reftype] = ACTIONS(1195), + [anon_sym___refvalue] = ACTIONS(1197), + [sym_null_literal] = ACTIONS(1199), + [anon_sym_SQUOTE] = ACTIONS(1201), + [sym_integer_literal] = ACTIONS(1199), + [sym_real_literal] = ACTIONS(1203), + [anon_sym_DQUOTE] = ACTIONS(1205), + [sym_verbatim_string_literal] = ACTIONS(1203), + [aux_sym_preproc_if_token1] = ACTIONS(1801), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -172010,90 +171896,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(151), - [sym_interpolation_verbatim_start] = ACTIONS(153), - [sym_interpolation_raw_start] = ACTIONS(155), - [sym_raw_string_start] = ACTIONS(157), + [sym_interpolation_regular_start] = ACTIONS(1209), + [sym_interpolation_verbatim_start] = ACTIONS(1211), + [sym_interpolation_raw_start] = ACTIONS(1213), + [sym_raw_string_start] = ACTIONS(1215), }, [771] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(5160), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2204), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(5631), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3461), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3080), - [sym_postfix_unary_expression] = STATE(3111), - [sym_prefix_unary_expression] = STATE(3111), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6154), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3080), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3111), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3080), - [sym_member_access_expression] = STATE(2484), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3111), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7547), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(3080), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3080), - [sym_typeof_expression] = STATE(3080), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2484), - [sym_literal] = STATE(3080), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(5152), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2196), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(2279), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(5540), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3640), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3102), + [sym_postfix_unary_expression] = STATE(3079), + [sym_prefix_unary_expression] = STATE(3079), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6137), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3102), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3079), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3102), + [sym_member_access_expression] = STATE(2472), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3079), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7645), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(3102), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3102), + [sym_typeof_expression] = STATE(3102), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2472), + [sym_literal] = STATE(3102), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(771), [sym_preproc_endregion] = STATE(771), [sym_preproc_line] = STATE(771), @@ -172103,48 +171989,48 @@ 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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), - [anon_sym_SEMI] = ACTIONS(2895), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1481), - [anon_sym_LPAREN] = ACTIONS(1497), - [anon_sym_ref] = ACTIONS(1499), - [anon_sym_LBRACE] = ACTIONS(1487), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1479), + [anon_sym_LPAREN] = ACTIONS(2081), + [anon_sym_ref] = ACTIONS(2083), + [anon_sym_LBRACE] = ACTIONS(1481), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1501), + [anon_sym_new] = ACTIONS(1059), + [anon_sym_readonly] = ACTIONS(2767), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = 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_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(2087), + [anon_sym_TILDE] = ACTIONS(2087), + [anon_sym_PLUS_PLUS] = ACTIONS(2087), + [anon_sym_DASH_DASH] = ACTIONS(2087), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(79), - [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(2085), + [anon_sym_DASH] = ACTIONS(2085), [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(75), - [anon_sym_AMP] = ACTIONS(75), + [anon_sym_CARET] = ACTIONS(2087), + [anon_sym_AMP] = ACTIONS(2087), [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(1067), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1503), + [anon_sym_throw] = ACTIONS(2089), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1505), - [anon_sym_DOT_DOT] = ACTIONS(1507), + [anon_sym_await] = ACTIONS(2091), + [anon_sym_DOT_DOT] = ACTIONS(2093), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -172169,7 +172055,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(1089), + [aux_sym_preproc_if_token1] = ACTIONS(2095), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -172186,85 +172072,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [772] = { - [sym_attribute_argument] = STATE(7151), - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(5910), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2247), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(5227), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3379), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3080), - [sym_postfix_unary_expression] = STATE(3111), - [sym_prefix_unary_expression] = STATE(3111), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6154), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3080), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3111), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3080), - [sym_member_access_expression] = STATE(2484), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3111), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7575), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(3080), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3080), - [sym_typeof_expression] = STATE(3080), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2484), - [sym_literal] = STATE(3080), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2287), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_block] = STATE(3454), + [sym_bracketed_argument_list] = STATE(2816), + [sym__name] = STATE(5893), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2361), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(4868), + [sym_non_lvalue_expression] = STATE(3495), + [sym_lvalue_expression] = STATE(3509), + [sym__expression_statement_expression] = STATE(3462), + [sym_assignment_expression] = STATE(3497), + [sym_binary_expression] = STATE(3462), + [sym_postfix_unary_expression] = STATE(3497), + [sym_prefix_unary_expression] = STATE(3497), + [sym__pointer_indirection_expression] = STATE(2815), + [sym_query_expression] = STATE(3462), + [sym_from_clause] = STATE(6150), + [sym_conditional_expression] = STATE(3462), + [sym_conditional_access_expression] = STATE(3462), + [sym_as_expression] = STATE(3462), + [sym_is_expression] = STATE(3462), + [sym_is_pattern_expression] = STATE(3462), + [sym_cast_expression] = STATE(3462), + [sym_checked_expression] = STATE(3462), + [sym_invocation_expression] = STATE(3497), + [sym_switch_expression] = STATE(3462), + [sym_await_expression] = STATE(3497), + [sym_throw_expression] = STATE(3462), + [sym_element_access_expression] = STATE(2815), + [sym_interpolated_string_expression] = STATE(3462), + [sym_member_access_expression] = STATE(2815), + [sym_object_creation_expression] = STATE(3497), + [sym_parenthesized_expression] = STATE(3497), + [sym__parenthesized_lvalue_expression] = STATE(2815), + [sym_lambda_expression] = STATE(3462), + [sym__lambda_expression_init] = STATE(7428), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3462), + [sym_anonymous_method_expression] = STATE(3462), + [sym_anonymous_object_creation_expression] = STATE(3462), + [sym_implicit_array_creation_expression] = STATE(3462), + [sym_implicit_object_creation_expression] = STATE(3462), + [sym_implicit_stackalloc_expression] = STATE(3462), + [sym_initializer_expression] = STATE(3462), + [sym_default_expression] = STATE(3462), + [sym_with_expression] = STATE(3462), + [sym_sizeof_expression] = STATE(3462), + [sym_typeof_expression] = STATE(3462), + [sym_makeref_expression] = STATE(3462), + [sym_ref_expression] = STATE(3462), + [sym_reftype_expression] = STATE(3462), + [sym_refvalue_expression] = STATE(3462), + [sym_stackalloc_expression] = STATE(3462), + [sym_range_expression] = STATE(3462), + [sym_tuple_expression] = STATE(2815), + [sym_literal] = STATE(3462), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3462), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(772), [sym_preproc_endregion] = STATE(772), [sym_preproc_line] = STATE(772), @@ -172274,47 +172160,47 @@ 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(3067), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), [aux_sym__lambda_expression_init_repeat1] = STATE(3367), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1481), - [anon_sym_LPAREN] = ACTIONS(895), - [anon_sym_ref] = ACTIONS(897), - [anon_sym_LBRACE] = ACTIONS(1487), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1305), + [anon_sym_LPAREN] = ACTIONS(1839), + [anon_sym_ref] = ACTIONS(1841), + [anon_sym_LBRACE] = ACTIONS(2845), + [anon_sym_delegate] = ACTIONS(1313), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1061), + [anon_sym_new] = ACTIONS(1843), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1067), - [anon_sym_BANG] = ACTIONS(1495), - [anon_sym_TILDE] = ACTIONS(1495), - [anon_sym_PLUS_PLUS] = ACTIONS(1495), - [anon_sym_DASH_DASH] = ACTIONS(1495), + [anon_sym_checked] = ACTIONS(1317), + [anon_sym_BANG] = ACTIONS(1847), + [anon_sym_TILDE] = ACTIONS(1847), + [anon_sym_PLUS_PLUS] = ACTIONS(1847), + [anon_sym_DASH_DASH] = ACTIONS(1847), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1493), - [anon_sym_DASH] = ACTIONS(1493), - [anon_sym_STAR] = ACTIONS(905), - [anon_sym_CARET] = ACTIONS(1495), - [anon_sym_AMP] = ACTIONS(1495), - [anon_sym_this] = ACTIONS(83), + [anon_sym_PLUS] = ACTIONS(1845), + [anon_sym_DASH] = ACTIONS(1845), + [anon_sym_STAR] = ACTIONS(1849), + [anon_sym_CARET] = ACTIONS(1847), + [anon_sym_AMP] = ACTIONS(1847), + [anon_sym_this] = ACTIONS(1321), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), + [anon_sym_base] = ACTIONS(1323), [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1067), + [anon_sym_unchecked] = ACTIONS(1317), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1079), + [anon_sym_throw] = ACTIONS(1851), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1081), - [anon_sym_DOT_DOT] = ACTIONS(911), + [anon_sym_await] = ACTIONS(1853), + [anon_sym_DOT_DOT] = ACTIONS(1855), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -172327,19 +172213,19 @@ static const uint16_t ts_parse_table[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(1331), [anon_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(1333), + [anon_sym___reftype] = ACTIONS(1335), + [anon_sym___refvalue] = ACTIONS(1337), [sym_null_literal] = ACTIONS(139), [anon_sym_SQUOTE] = ACTIONS(141), [sym_integer_literal] = ACTIONS(139), [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1089), + [aux_sym_preproc_if_token1] = ACTIONS(1339), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -172356,85 +172242,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [773] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_block] = STATE(3014), - [sym_bracketed_argument_list] = STATE(2420), - [sym__name] = STATE(5888), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2384), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(5238), - [sym_non_lvalue_expression] = STATE(3066), - [sym_lvalue_expression] = STATE(3554), - [sym__expression_statement_expression] = STATE(3006), - [sym_assignment_expression] = STATE(3020), - [sym_binary_expression] = STATE(3006), - [sym_postfix_unary_expression] = STATE(3020), - [sym_prefix_unary_expression] = STATE(3020), - [sym__pointer_indirection_expression] = STATE(2423), - [sym_query_expression] = STATE(3006), - [sym_from_clause] = STATE(6151), - [sym_conditional_expression] = STATE(3006), - [sym_conditional_access_expression] = STATE(3006), - [sym_as_expression] = STATE(3006), - [sym_is_expression] = STATE(3006), - [sym_is_pattern_expression] = STATE(3006), - [sym_cast_expression] = STATE(3006), - [sym_checked_expression] = STATE(3006), - [sym_invocation_expression] = STATE(3020), - [sym_switch_expression] = STATE(3006), - [sym_await_expression] = STATE(3020), - [sym_throw_expression] = STATE(3006), - [sym_element_access_expression] = STATE(2423), - [sym_interpolated_string_expression] = STATE(3006), - [sym_member_access_expression] = STATE(2423), - [sym_object_creation_expression] = STATE(3020), - [sym_parenthesized_expression] = STATE(3020), - [sym__parenthesized_lvalue_expression] = STATE(2423), - [sym_lambda_expression] = STATE(3006), - [sym__lambda_expression_init] = STATE(7640), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3006), - [sym_anonymous_method_expression] = STATE(3006), - [sym_anonymous_object_creation_expression] = STATE(3006), - [sym_implicit_array_creation_expression] = STATE(3006), - [sym_implicit_object_creation_expression] = STATE(3006), - [sym_implicit_stackalloc_expression] = STATE(3006), - [sym_initializer_expression] = STATE(3006), - [sym_default_expression] = STATE(3006), - [sym_with_expression] = STATE(3006), - [sym_sizeof_expression] = STATE(3006), - [sym_typeof_expression] = STATE(3006), - [sym_makeref_expression] = STATE(3006), - [sym_ref_expression] = STATE(3006), - [sym_reftype_expression] = STATE(3006), - [sym_refvalue_expression] = STATE(3006), - [sym_stackalloc_expression] = STATE(3006), - [sym_range_expression] = STATE(3006), - [sym_tuple_expression] = STATE(2423), - [sym_literal] = STATE(3006), - [sym_character_literal] = STATE(3011), - [sym_string_literal] = STATE(3011), - [sym_raw_string_literal] = STATE(3011), - [sym_boolean_literal] = STATE(3011), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3006), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(5873), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2238), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(4954), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3468), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3102), + [sym_postfix_unary_expression] = STATE(3079), + [sym_prefix_unary_expression] = STATE(3079), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6134), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3102), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3079), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3102), + [sym_member_access_expression] = STATE(2472), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3079), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7309), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(3102), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3102), + [sym_typeof_expression] = STATE(3102), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2472), + [sym_literal] = STATE(3102), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(773), [sym_preproc_endregion] = STATE(773), [sym_preproc_line] = STATE(773), @@ -172444,47 +172329,48 @@ 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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3440), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1241), - [anon_sym_LPAREN] = ACTIONS(2281), - [anon_sym_ref] = ACTIONS(2283), - [anon_sym_LBRACE] = ACTIONS(2845), - [anon_sym_delegate] = ACTIONS(1249), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1479), + [anon_sym_LPAREN] = ACTIONS(659), + [anon_sym_ref] = ACTIONS(663), + [anon_sym_LBRACE] = ACTIONS(1481), + [anon_sym_RBRACE] = ACTIONS(2911), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(2285), + [anon_sym_new] = ACTIONS(1059), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1253), - [anon_sym_BANG] = ACTIONS(2289), - [anon_sym_TILDE] = ACTIONS(2289), - [anon_sym_PLUS_PLUS] = ACTIONS(2289), - [anon_sym_DASH_DASH] = ACTIONS(2289), - [anon_sym_true] = ACTIONS(1259), - [anon_sym_false] = ACTIONS(1259), - [anon_sym_PLUS] = ACTIONS(2287), - [anon_sym_DASH] = ACTIONS(2287), - [anon_sym_STAR] = ACTIONS(2291), - [anon_sym_CARET] = ACTIONS(2289), - [anon_sym_AMP] = ACTIONS(2289), - [anon_sym_this] = ACTIONS(1263), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(1485), + [anon_sym_TILDE] = ACTIONS(1485), + [anon_sym_PLUS_PLUS] = ACTIONS(1485), + [anon_sym_DASH_DASH] = ACTIONS(1485), + [anon_sym_true] = ACTIONS(77), + [anon_sym_false] = ACTIONS(77), + [anon_sym_PLUS] = ACTIONS(1483), + [anon_sym_DASH] = ACTIONS(1483), + [anon_sym_STAR] = ACTIONS(683), + [anon_sym_CARET] = ACTIONS(1485), + [anon_sym_AMP] = ACTIONS(1485), + [anon_sym_this] = ACTIONS(83), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1265), + [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1267), - [anon_sym_unchecked] = ACTIONS(1253), + [sym_predefined_type] = ACTIONS(91), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1269), - [anon_sym_throw] = ACTIONS(2293), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(1077), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2295), - [anon_sym_DOT_DOT] = ACTIONS(2297), + [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), @@ -172497,19 +172383,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1277), - [anon_sym_sizeof] = ACTIONS(1279), - [anon_sym_typeof] = ACTIONS(1281), - [anon_sym___makeref] = ACTIONS(1283), - [anon_sym___reftype] = ACTIONS(1285), - [anon_sym___refvalue] = ACTIONS(1287), - [sym_null_literal] = ACTIONS(1289), - [anon_sym_SQUOTE] = ACTIONS(1291), - [sym_integer_literal] = ACTIONS(1289), - [sym_real_literal] = ACTIONS(1293), - [anon_sym_DQUOTE] = ACTIONS(1295), - [sym_verbatim_string_literal] = ACTIONS(1293), - [aux_sym_preproc_if_token1] = ACTIONS(1297), + [anon_sym_stackalloc] = ACTIONS(127), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_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), @@ -172520,90 +172406,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1299), - [sym_interpolation_verbatim_start] = ACTIONS(1301), - [sym_interpolation_raw_start] = ACTIONS(1303), - [sym_raw_string_start] = ACTIONS(1305), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [sym_interpolation_raw_start] = ACTIONS(155), + [sym_raw_string_start] = ACTIONS(157), }, [774] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2420), - [sym__name] = STATE(5888), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2384), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(2291), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(5144), - [sym_non_lvalue_expression] = STATE(3066), - [sym_lvalue_expression] = STATE(3554), - [sym__expression_statement_expression] = STATE(3006), - [sym_assignment_expression] = STATE(3020), - [sym_binary_expression] = STATE(3006), - [sym_postfix_unary_expression] = STATE(3020), - [sym_prefix_unary_expression] = STATE(3020), - [sym__pointer_indirection_expression] = STATE(2423), - [sym_query_expression] = STATE(3006), - [sym_from_clause] = STATE(6151), - [sym_conditional_expression] = STATE(3006), - [sym_conditional_access_expression] = STATE(3006), - [sym_as_expression] = STATE(3006), - [sym_is_expression] = STATE(3006), - [sym_is_pattern_expression] = STATE(3006), - [sym_cast_expression] = STATE(3006), - [sym_checked_expression] = STATE(3006), - [sym_invocation_expression] = STATE(3020), - [sym_switch_expression] = STATE(3006), - [sym_await_expression] = STATE(3020), - [sym_throw_expression] = STATE(3006), - [sym_element_access_expression] = STATE(2423), - [sym_interpolated_string_expression] = STATE(3006), - [sym_member_access_expression] = STATE(2423), - [sym_object_creation_expression] = STATE(3020), - [sym_parenthesized_expression] = STATE(3020), - [sym__parenthesized_lvalue_expression] = STATE(2423), - [sym_lambda_expression] = STATE(3006), - [sym__lambda_expression_init] = STATE(7640), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3006), - [sym_anonymous_method_expression] = STATE(3006), - [sym_anonymous_object_creation_expression] = STATE(3006), - [sym_implicit_array_creation_expression] = STATE(3006), - [sym_implicit_object_creation_expression] = STATE(3006), - [sym_implicit_stackalloc_expression] = STATE(3006), - [sym_initializer_expression] = STATE(3006), - [sym_default_expression] = STATE(3006), - [sym_with_expression] = STATE(3006), - [sym_sizeof_expression] = STATE(3006), - [sym_typeof_expression] = STATE(3006), - [sym_makeref_expression] = STATE(3006), - [sym_ref_expression] = STATE(3006), - [sym_reftype_expression] = STATE(3006), - [sym_refvalue_expression] = STATE(3006), - [sym_stackalloc_expression] = STATE(3006), - [sym_range_expression] = STATE(3006), - [sym_tuple_expression] = STATE(2423), - [sym_literal] = STATE(3006), - [sym_character_literal] = STATE(3011), - [sym_string_literal] = STATE(3011), - [sym_raw_string_literal] = STATE(3011), - [sym_boolean_literal] = STATE(3011), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3006), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(5873), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2238), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(4954), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3468), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3102), + [sym_postfix_unary_expression] = STATE(3079), + [sym_prefix_unary_expression] = STATE(3079), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6134), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3102), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3079), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3102), + [sym_member_access_expression] = STATE(2472), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3079), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7309), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(3102), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3102), + [sym_typeof_expression] = STATE(3102), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2472), + [sym_literal] = STATE(3102), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(774), [sym_preproc_endregion] = STATE(774), [sym_preproc_line] = STATE(774), @@ -172613,48 +172499,48 @@ 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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3440), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1241), - [anon_sym_LPAREN] = ACTIONS(2281), - [anon_sym_ref] = ACTIONS(2283), - [anon_sym_LBRACE] = ACTIONS(1247), - [anon_sym_delegate] = ACTIONS(1249), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1479), + [anon_sym_LPAREN] = ACTIONS(659), + [anon_sym_ref] = ACTIONS(663), + [anon_sym_LBRACE] = ACTIONS(1481), + [anon_sym_RBRACE] = ACTIONS(2913), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(2285), - [anon_sym_readonly] = ACTIONS(2749), + [anon_sym_new] = ACTIONS(1059), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1253), - [anon_sym_BANG] = ACTIONS(2289), - [anon_sym_TILDE] = ACTIONS(2289), - [anon_sym_PLUS_PLUS] = ACTIONS(2289), - [anon_sym_DASH_DASH] = ACTIONS(2289), - [anon_sym_true] = ACTIONS(1259), - [anon_sym_false] = ACTIONS(1259), - [anon_sym_PLUS] = ACTIONS(2287), - [anon_sym_DASH] = ACTIONS(2287), - [anon_sym_STAR] = ACTIONS(2291), - [anon_sym_CARET] = ACTIONS(2289), - [anon_sym_AMP] = ACTIONS(2289), - [anon_sym_this] = ACTIONS(1263), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(1485), + [anon_sym_TILDE] = ACTIONS(1485), + [anon_sym_PLUS_PLUS] = ACTIONS(1485), + [anon_sym_DASH_DASH] = ACTIONS(1485), + [anon_sym_true] = ACTIONS(77), + [anon_sym_false] = ACTIONS(77), + [anon_sym_PLUS] = ACTIONS(1483), + [anon_sym_DASH] = ACTIONS(1483), + [anon_sym_STAR] = ACTIONS(683), + [anon_sym_CARET] = ACTIONS(1485), + [anon_sym_AMP] = ACTIONS(1485), + [anon_sym_this] = ACTIONS(83), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1265), + [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1267), - [anon_sym_unchecked] = ACTIONS(1253), + [sym_predefined_type] = ACTIONS(91), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1269), - [anon_sym_throw] = ACTIONS(2293), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(1077), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2295), - [anon_sym_DOT_DOT] = ACTIONS(2297), + [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), @@ -172667,19 +172553,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1277), - [anon_sym_sizeof] = ACTIONS(1279), - [anon_sym_typeof] = ACTIONS(1281), - [anon_sym___makeref] = ACTIONS(1283), - [anon_sym___reftype] = ACTIONS(1285), - [anon_sym___refvalue] = ACTIONS(1287), - [sym_null_literal] = ACTIONS(1289), - [anon_sym_SQUOTE] = ACTIONS(1291), - [sym_integer_literal] = ACTIONS(1289), - [sym_real_literal] = ACTIONS(1293), - [anon_sym_DQUOTE] = ACTIONS(1295), - [sym_verbatim_string_literal] = ACTIONS(1293), - [aux_sym_preproc_if_token1] = ACTIONS(1297), + [anon_sym_stackalloc] = ACTIONS(127), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_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), @@ -172690,91 +172576,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(1299), - [sym_interpolation_verbatim_start] = ACTIONS(1301), - [sym_interpolation_raw_start] = ACTIONS(1303), - [sym_raw_string_start] = ACTIONS(1305), + [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(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(5910), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2247), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5920), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(4896), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3379), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3080), - [sym_postfix_unary_expression] = STATE(3111), - [sym_prefix_unary_expression] = STATE(3111), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6154), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3080), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3111), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3080), - [sym_member_access_expression] = STATE(2484), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3111), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7575), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_declaration_expression] = STATE(6901), - [sym_default_expression] = STATE(3080), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3080), - [sym_typeof_expression] = STATE(3080), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2484), - [sym_literal] = STATE(3080), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_block] = STATE(3454), + [sym_bracketed_argument_list] = STATE(2816), + [sym__name] = STATE(5873), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2238), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(4178), + [sym_non_lvalue_expression] = STATE(3495), + [sym_lvalue_expression] = STATE(3131), + [sym__expression_statement_expression] = STATE(3462), + [sym_assignment_expression] = STATE(3497), + [sym_binary_expression] = STATE(3462), + [sym_postfix_unary_expression] = STATE(3497), + [sym_prefix_unary_expression] = STATE(3497), + [sym__pointer_indirection_expression] = STATE(2815), + [sym_query_expression] = STATE(3462), + [sym_from_clause] = STATE(6140), + [sym_conditional_expression] = STATE(3462), + [sym_conditional_access_expression] = STATE(3462), + [sym_as_expression] = STATE(3462), + [sym_is_expression] = STATE(3462), + [sym_is_pattern_expression] = STATE(3462), + [sym_cast_expression] = STATE(3462), + [sym_checked_expression] = STATE(3462), + [sym_invocation_expression] = STATE(3497), + [sym_switch_expression] = STATE(3462), + [sym_await_expression] = STATE(3497), + [sym_throw_expression] = STATE(3462), + [sym_element_access_expression] = STATE(2815), + [sym_interpolated_string_expression] = STATE(3462), + [sym_member_access_expression] = STATE(2815), + [sym_object_creation_expression] = STATE(3497), + [sym_parenthesized_expression] = STATE(3497), + [sym__parenthesized_lvalue_expression] = STATE(2815), + [sym_lambda_expression] = STATE(3462), + [sym__lambda_expression_init] = STATE(7423), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3462), + [sym_anonymous_method_expression] = STATE(3462), + [sym_anonymous_object_creation_expression] = STATE(3462), + [sym_implicit_array_creation_expression] = STATE(3462), + [sym_implicit_object_creation_expression] = STATE(3462), + [sym_implicit_stackalloc_expression] = STATE(3462), + [sym_initializer_expression] = STATE(3462), + [sym_default_expression] = STATE(3462), + [sym_with_expression] = STATE(3462), + [sym_sizeof_expression] = STATE(3462), + [sym_typeof_expression] = STATE(3462), + [sym_makeref_expression] = STATE(3462), + [sym_ref_expression] = STATE(3462), + [sym_reftype_expression] = STATE(3462), + [sym_refvalue_expression] = STATE(3462), + [sym_stackalloc_expression] = STATE(3462), + [sym_range_expression] = STATE(3462), + [sym_tuple_expression] = STATE(2815), + [sym_literal] = STATE(3462), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3462), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(775), [sym_preproc_endregion] = STATE(775), [sym_preproc_line] = STATE(775), @@ -172784,47 +172670,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(775), [sym_preproc_define] = STATE(775), [sym_preproc_undef] = STATE(775), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3067), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), [aux_sym__lambda_expression_init_repeat1] = STATE(3367), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1481), - [anon_sym_LPAREN] = ACTIONS(895), - [anon_sym_ref] = ACTIONS(897), - [anon_sym_LBRACE] = ACTIONS(1487), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1305), + [anon_sym_LPAREN] = ACTIONS(1307), + [anon_sym_ref] = ACTIONS(1309), + [anon_sym_LBRACE] = ACTIONS(2845), + [anon_sym_delegate] = ACTIONS(1313), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1061), + [anon_sym_new] = ACTIONS(1315), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1067), - [anon_sym_BANG] = ACTIONS(1495), - [anon_sym_TILDE] = ACTIONS(1495), - [anon_sym_PLUS_PLUS] = ACTIONS(1495), - [anon_sym_DASH_DASH] = ACTIONS(1495), + [anon_sym_checked] = ACTIONS(1317), + [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(1493), - [anon_sym_DASH] = ACTIONS(1493), - [anon_sym_STAR] = ACTIONS(905), - [anon_sym_CARET] = ACTIONS(1495), - [anon_sym_AMP] = ACTIONS(1495), - [anon_sym_this] = ACTIONS(83), + [anon_sym_PLUS] = ACTIONS(1069), + [anon_sym_DASH] = ACTIONS(1069), + [anon_sym_STAR] = ACTIONS(1319), + [anon_sym_CARET] = ACTIONS(1067), + [anon_sym_AMP] = ACTIONS(1067), + [anon_sym_this] = ACTIONS(1321), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), + [anon_sym_base] = ACTIONS(1323), [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1067), + [anon_sym_unchecked] = ACTIONS(1317), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1079), + [anon_sym_throw] = ACTIONS(1325), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1081), - [anon_sym_DOT_DOT] = ACTIONS(911), + [anon_sym_await] = ACTIONS(1327), + [anon_sym_DOT_DOT] = ACTIONS(1329), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -172837,19 +172723,19 @@ static const uint16_t ts_parse_table[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(1331), [anon_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(1333), + [anon_sym___reftype] = ACTIONS(1335), + [anon_sym___refvalue] = ACTIONS(1337), [sym_null_literal] = ACTIONS(139), [anon_sym_SQUOTE] = ACTIONS(141), [sym_integer_literal] = ACTIONS(139), [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1089), + [aux_sym_preproc_if_token1] = ACTIONS(1339), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -172866,84 +172752,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [776] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(2807), - [sym_alias_qualified_name] = STATE(2764), - [sym__simple_name] = STATE(2255), - [sym_qualified_name] = STATE(2764), - [sym_generic_name] = STATE(2269), - [sym_type] = STATE(2548), - [sym_implicit_type] = STATE(2791), - [sym_array_type] = STATE(2767), - [sym__array_base_type] = STATE(7243), - [sym_nullable_type] = STATE(2768), - [sym_pointer_type] = STATE(2768), - [sym__pointer_base_type] = STATE(7717), - [sym_function_pointer_type] = STATE(2768), - [sym_ref_type] = STATE(2791), - [sym_scoped_type] = STATE(2791), - [sym_tuple_type] = STATE(2769), - [sym_expression] = STATE(4871), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3520), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3080), - [sym_postfix_unary_expression] = STATE(3111), - [sym_prefix_unary_expression] = STATE(3111), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6154), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3080), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3111), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3080), - [sym_member_access_expression] = STATE(2484), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3111), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7530), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(3080), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3080), - [sym_typeof_expression] = STATE(3080), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2484), - [sym_literal] = STATE(3080), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2226), - [sym__reserved_identifier] = STATE(2240), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_block] = STATE(3279), + [sym_bracketed_argument_list] = STATE(2603), + [sym__name] = STATE(5872), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2387), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(4724), + [sym_non_lvalue_expression] = STATE(3220), + [sym_lvalue_expression] = STATE(3395), + [sym__expression_statement_expression] = STATE(3236), + [sym_assignment_expression] = STATE(3221), + [sym_binary_expression] = STATE(3236), + [sym_postfix_unary_expression] = STATE(3221), + [sym_prefix_unary_expression] = STATE(3221), + [sym__pointer_indirection_expression] = STATE(2602), + [sym_query_expression] = STATE(3236), + [sym_from_clause] = STATE(6141), + [sym_conditional_expression] = STATE(3236), + [sym_conditional_access_expression] = STATE(3236), + [sym_as_expression] = STATE(3236), + [sym_is_expression] = STATE(3236), + [sym_is_pattern_expression] = STATE(3236), + [sym_cast_expression] = STATE(3236), + [sym_checked_expression] = STATE(3236), + [sym_invocation_expression] = STATE(3221), + [sym_switch_expression] = STATE(3236), + [sym_await_expression] = STATE(3221), + [sym_throw_expression] = STATE(3236), + [sym_element_access_expression] = STATE(2602), + [sym_interpolated_string_expression] = STATE(3236), + [sym_member_access_expression] = STATE(2602), + [sym_object_creation_expression] = STATE(3221), + [sym_parenthesized_expression] = STATE(3221), + [sym__parenthesized_lvalue_expression] = STATE(2602), + [sym_lambda_expression] = STATE(3236), + [sym__lambda_expression_init] = STATE(7446), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3236), + [sym_anonymous_method_expression] = STATE(3236), + [sym_anonymous_object_creation_expression] = STATE(3236), + [sym_implicit_array_creation_expression] = STATE(3236), + [sym_implicit_object_creation_expression] = STATE(3236), + [sym_implicit_stackalloc_expression] = STATE(3236), + [sym_initializer_expression] = STATE(3236), + [sym_default_expression] = STATE(3236), + [sym_with_expression] = STATE(3236), + [sym_sizeof_expression] = STATE(3236), + [sym_typeof_expression] = STATE(3236), + [sym_makeref_expression] = STATE(3236), + [sym_ref_expression] = STATE(3236), + [sym_reftype_expression] = STATE(3236), + [sym_refvalue_expression] = STATE(3236), + [sym_stackalloc_expression] = STATE(3236), + [sym_range_expression] = STATE(3236), + [sym_tuple_expression] = STATE(2602), + [sym_literal] = STATE(3236), + [sym_character_literal] = STATE(3272), + [sym_string_literal] = STATE(3272), + [sym_raw_string_literal] = STATE(3272), + [sym_boolean_literal] = STATE(3272), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3236), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(776), [sym_preproc_endregion] = STATE(776), [sym_preproc_line] = STATE(776), @@ -172953,73 +172840,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(776), [sym_preproc_define] = STATE(776), [sym_preproc_undef] = STATE(776), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), - [sym__identifier_token] = ACTIONS(1387), - [anon_sym_alias] = ACTIONS(1389), - [anon_sym_global] = ACTIONS(1389), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1481), - [anon_sym_LPAREN] = ACTIONS(2897), - [anon_sym_ref] = ACTIONS(2345), - [anon_sym_LBRACE] = ACTIONS(1487), - [anon_sym_delegate] = ACTIONS(2349), - [anon_sym_async] = ACTIONS(1047), - [anon_sym_file] = ACTIONS(1389), - [anon_sym_new] = ACTIONS(1061), - [anon_sym_readonly] = ACTIONS(2899), - [anon_sym_where] = ACTIONS(1389), - [anon_sym_notnull] = ACTIONS(1389), - [anon_sym_unmanaged] = ACTIONS(1389), - [anon_sym_checked] = 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(1585), - [anon_sym_DASH] = ACTIONS(1585), - [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(1587), - [anon_sym_AMP] = ACTIONS(1587), - [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(2355), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(2901), - [sym_predefined_type] = ACTIONS(2903), - [anon_sym_unchecked] = ACTIONS(1067), - [anon_sym_yield] = ACTIONS(1389), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1589), - [anon_sym_when] = ACTIONS(1389), - [anon_sym_await] = ACTIONS(1591), - [anon_sym_DOT_DOT] = ACTIONS(123), - [anon_sym_from] = ACTIONS(1431), - [anon_sym_into] = ACTIONS(1389), - [anon_sym_join] = ACTIONS(1389), - [anon_sym_on] = ACTIONS(1389), - [anon_sym_equals] = ACTIONS(1389), - [anon_sym_let] = ACTIONS(1389), - [anon_sym_orderby] = ACTIONS(1389), - [anon_sym_ascending] = ACTIONS(1389), - [anon_sym_descending] = ACTIONS(1389), - [anon_sym_group] = ACTIONS(1389), - [anon_sym_by] = ACTIONS(1389), - [anon_sym_select] = ACTIONS(1389), - [anon_sym_stackalloc] = ACTIONS(127), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(133), - [anon_sym___reftype] = ACTIONS(135), - [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1089), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3379), + [sym__identifier_token] = ACTIONS(25), + [anon_sym_alias] = ACTIONS(29), + [anon_sym_global] = ACTIONS(29), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1149), + [anon_sym_LPAREN] = ACTIONS(1857), + [anon_sym_ref] = ACTIONS(1859), + [anon_sym_LBRACE] = ACTIONS(2843), + [anon_sym_delegate] = ACTIONS(1157), + [anon_sym_async] = ACTIONS(1045), + [anon_sym_file] = ACTIONS(29), + [anon_sym_new] = ACTIONS(1861), + [anon_sym_where] = ACTIONS(29), + [anon_sym_notnull] = ACTIONS(29), + [anon_sym_unmanaged] = ACTIONS(29), + [anon_sym_checked] = ACTIONS(1163), + [anon_sym_BANG] = ACTIONS(1865), + [anon_sym_TILDE] = ACTIONS(1865), + [anon_sym_PLUS_PLUS] = ACTIONS(1865), + [anon_sym_DASH_DASH] = ACTIONS(1865), + [anon_sym_true] = ACTIONS(1169), + [anon_sym_false] = ACTIONS(1169), + [anon_sym_PLUS] = ACTIONS(1863), + [anon_sym_DASH] = ACTIONS(1863), + [anon_sym_STAR] = ACTIONS(1867), + [anon_sym_CARET] = ACTIONS(1865), + [anon_sym_AMP] = ACTIONS(1865), + [anon_sym_this] = ACTIONS(1173), + [anon_sym_scoped] = ACTIONS(85), + [anon_sym_base] = ACTIONS(1175), + [anon_sym_var] = ACTIONS(89), + [sym_predefined_type] = ACTIONS(1177), + [anon_sym_unchecked] = ACTIONS(1163), + [anon_sym_yield] = ACTIONS(29), + [anon_sym_default] = ACTIONS(1179), + [anon_sym_throw] = ACTIONS(1869), + [anon_sym_when] = ACTIONS(29), + [anon_sym_await] = ACTIONS(1871), + [anon_sym_DOT_DOT] = ACTIONS(1873), + [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(1187), + [anon_sym_sizeof] = ACTIONS(1189), + [anon_sym_typeof] = ACTIONS(1191), + [anon_sym___makeref] = ACTIONS(1193), + [anon_sym___reftype] = ACTIONS(1195), + [anon_sym___refvalue] = ACTIONS(1197), + [sym_null_literal] = ACTIONS(1199), + [anon_sym_SQUOTE] = ACTIONS(1201), + [sym_integer_literal] = ACTIONS(1199), + [sym_real_literal] = ACTIONS(1203), + [anon_sym_DQUOTE] = ACTIONS(1205), + [sym_verbatim_string_literal] = ACTIONS(1203), + [aux_sym_preproc_if_token1] = ACTIONS(1207), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -173030,91 +172916,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(151), - [sym_interpolation_verbatim_start] = ACTIONS(153), - [sym_interpolation_raw_start] = ACTIONS(155), - [sym_raw_string_start] = ACTIONS(157), + [sym_interpolation_regular_start] = ACTIONS(1209), + [sym_interpolation_verbatim_start] = ACTIONS(1211), + [sym_interpolation_raw_start] = ACTIONS(1213), + [sym_raw_string_start] = ACTIONS(1215), }, [777] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_block] = STATE(3430), - [sym_bracketed_argument_list] = STATE(2762), - [sym__name] = STATE(5889), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2247), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(4310), - [sym_non_lvalue_expression] = STATE(3438), - [sym_lvalue_expression] = STATE(3224), - [sym__expression_statement_expression] = STATE(3362), - [sym_assignment_expression] = STATE(3449), - [sym_binary_expression] = STATE(3362), - [sym_postfix_unary_expression] = STATE(3449), - [sym_prefix_unary_expression] = STATE(3449), - [sym__pointer_indirection_expression] = STATE(2747), - [sym_query_expression] = STATE(3362), - [sym_from_clause] = STATE(6146), - [sym_conditional_expression] = STATE(3362), - [sym_conditional_access_expression] = STATE(3362), - [sym_as_expression] = STATE(3362), - [sym_is_expression] = STATE(3362), - [sym_is_pattern_expression] = STATE(3362), - [sym_cast_expression] = STATE(3362), - [sym_checked_expression] = STATE(3362), - [sym_invocation_expression] = STATE(3449), - [sym_switch_expression] = STATE(3362), - [sym_await_expression] = STATE(3449), - [sym_throw_expression] = STATE(3362), - [sym_element_access_expression] = STATE(2747), - [sym_interpolated_string_expression] = STATE(3362), - [sym_member_access_expression] = STATE(2747), - [sym_object_creation_expression] = STATE(3449), - [sym_parenthesized_expression] = STATE(3449), - [sym__parenthesized_lvalue_expression] = STATE(2747), - [sym_lambda_expression] = STATE(3362), - [sym__lambda_expression_init] = STATE(7381), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3362), - [sym_anonymous_method_expression] = STATE(3362), - [sym_anonymous_object_creation_expression] = STATE(3362), - [sym_implicit_array_creation_expression] = STATE(3362), - [sym_implicit_object_creation_expression] = STATE(3362), - [sym_implicit_stackalloc_expression] = STATE(3362), - [sym_initializer_expression] = STATE(3362), - [sym_default_expression] = STATE(3362), - [sym_with_expression] = STATE(3362), - [sym_sizeof_expression] = STATE(3362), - [sym_typeof_expression] = STATE(3362), - [sym_makeref_expression] = STATE(3362), - [sym_ref_expression] = STATE(3362), - [sym_reftype_expression] = STATE(3362), - [sym_refvalue_expression] = STATE(3362), - [sym_stackalloc_expression] = STATE(3362), - [sym_range_expression] = STATE(3362), - [sym_tuple_expression] = STATE(2747), - [sym_literal] = STATE(3362), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3362), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(5873), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2238), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(4954), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3468), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3102), + [sym_postfix_unary_expression] = STATE(3079), + [sym_prefix_unary_expression] = STATE(3079), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6134), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3102), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3079), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3102), + [sym_member_access_expression] = STATE(2472), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3079), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7309), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(3102), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3102), + [sym_typeof_expression] = STATE(3102), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2472), + [sym_literal] = STATE(3102), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(777), [sym_preproc_endregion] = STATE(777), [sym_preproc_line] = STATE(777), @@ -173124,47 +173009,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(777), [sym_preproc_define] = STATE(777), [sym_preproc_undef] = STATE(777), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3385), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1307), - [anon_sym_LPAREN] = ACTIONS(1359), - [anon_sym_ref] = ACTIONS(1361), - [anon_sym_LBRACE] = ACTIONS(2857), - [anon_sym_delegate] = ACTIONS(1315), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1479), + [anon_sym_LPAREN] = ACTIONS(659), + [anon_sym_ref] = ACTIONS(663), + [anon_sym_LBRACE] = ACTIONS(1481), + [anon_sym_RBRACE] = ACTIONS(2915), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1317), + [anon_sym_new] = ACTIONS(1059), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1319), - [anon_sym_BANG] = ACTIONS(1107), - [anon_sym_TILDE] = ACTIONS(1107), - [anon_sym_PLUS_PLUS] = ACTIONS(1107), - [anon_sym_DASH_DASH] = ACTIONS(1107), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(1485), + [anon_sym_TILDE] = ACTIONS(1485), + [anon_sym_PLUS_PLUS] = ACTIONS(1485), + [anon_sym_DASH_DASH] = ACTIONS(1485), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1109), - [anon_sym_DASH] = ACTIONS(1109), - [anon_sym_STAR] = ACTIONS(1363), - [anon_sym_CARET] = ACTIONS(1107), - [anon_sym_AMP] = ACTIONS(1107), - [anon_sym_this] = ACTIONS(1323), + [anon_sym_PLUS] = ACTIONS(1483), + [anon_sym_DASH] = ACTIONS(1483), + [anon_sym_STAR] = ACTIONS(683), + [anon_sym_CARET] = ACTIONS(1485), + [anon_sym_AMP] = ACTIONS(1485), + [anon_sym_this] = ACTIONS(83), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1325), + [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1319), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1365), + [anon_sym_throw] = ACTIONS(1077), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1367), - [anon_sym_DOT_DOT] = ACTIONS(1369), + [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), @@ -173177,19 +173063,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1333), + [anon_sym_stackalloc] = ACTIONS(127), [anon_sym_sizeof] = ACTIONS(129), [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(1335), - [anon_sym___reftype] = ACTIONS(1337), - [anon_sym___refvalue] = ACTIONS(1339), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), [sym_null_literal] = ACTIONS(139), [anon_sym_SQUOTE] = ACTIONS(141), [sym_integer_literal] = ACTIONS(139), [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1341), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -173206,85 +173092,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [778] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_block] = STATE(3316), - [sym_bracketed_argument_list] = STATE(2610), - [sym__name] = STATE(5871), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2319), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(4477), - [sym_non_lvalue_expression] = STATE(3277), - [sym_lvalue_expression] = STATE(3280), - [sym__expression_statement_expression] = STATE(3228), - [sym_assignment_expression] = STATE(3289), - [sym_binary_expression] = STATE(3228), - [sym_postfix_unary_expression] = STATE(3289), - [sym_prefix_unary_expression] = STATE(3289), - [sym__pointer_indirection_expression] = STATE(2609), - [sym_query_expression] = STATE(3228), - [sym_from_clause] = STATE(6177), - [sym_conditional_expression] = STATE(3228), - [sym_conditional_access_expression] = STATE(3228), - [sym_as_expression] = STATE(3228), - [sym_is_expression] = STATE(3228), - [sym_is_pattern_expression] = STATE(3228), - [sym_cast_expression] = STATE(3228), - [sym_checked_expression] = STATE(3228), - [sym_invocation_expression] = STATE(3289), - [sym_switch_expression] = STATE(3228), - [sym_await_expression] = STATE(3289), - [sym_throw_expression] = STATE(3228), - [sym_element_access_expression] = STATE(2609), - [sym_interpolated_string_expression] = STATE(3228), - [sym_member_access_expression] = STATE(2609), - [sym_object_creation_expression] = STATE(3289), - [sym_parenthesized_expression] = STATE(3289), - [sym__parenthesized_lvalue_expression] = STATE(2609), - [sym_lambda_expression] = STATE(3228), - [sym__lambda_expression_init] = STATE(7636), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3228), - [sym_anonymous_method_expression] = STATE(3228), - [sym_anonymous_object_creation_expression] = STATE(3228), - [sym_implicit_array_creation_expression] = STATE(3228), - [sym_implicit_object_creation_expression] = STATE(3228), - [sym_implicit_stackalloc_expression] = STATE(3228), - [sym_initializer_expression] = STATE(3228), - [sym_default_expression] = STATE(3228), - [sym_with_expression] = STATE(3228), - [sym_sizeof_expression] = STATE(3228), - [sym_typeof_expression] = STATE(3228), - [sym_makeref_expression] = STATE(3228), - [sym_ref_expression] = STATE(3228), - [sym_reftype_expression] = STATE(3228), - [sym_refvalue_expression] = STATE(3228), - [sym_stackalloc_expression] = STATE(3228), - [sym_range_expression] = STATE(3228), - [sym_tuple_expression] = STATE(2609), - [sym_literal] = STATE(3228), - [sym_character_literal] = STATE(3278), - [sym_string_literal] = STATE(3278), - [sym_raw_string_literal] = STATE(3278), - [sym_boolean_literal] = STATE(3278), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3228), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2816), + [sym__name] = STATE(5893), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2361), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(2279), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(4872), + [sym_non_lvalue_expression] = STATE(3495), + [sym_lvalue_expression] = STATE(3509), + [sym__expression_statement_expression] = STATE(3462), + [sym_assignment_expression] = STATE(3497), + [sym_binary_expression] = STATE(3462), + [sym_postfix_unary_expression] = STATE(3497), + [sym_prefix_unary_expression] = STATE(3497), + [sym__pointer_indirection_expression] = STATE(2815), + [sym_query_expression] = STATE(3462), + [sym_from_clause] = STATE(6150), + [sym_conditional_expression] = STATE(3462), + [sym_conditional_access_expression] = STATE(3462), + [sym_as_expression] = STATE(3462), + [sym_is_expression] = STATE(3462), + [sym_is_pattern_expression] = STATE(3462), + [sym_cast_expression] = STATE(3462), + [sym_checked_expression] = STATE(3462), + [sym_invocation_expression] = STATE(3497), + [sym_switch_expression] = STATE(3462), + [sym_await_expression] = STATE(3497), + [sym_throw_expression] = STATE(3462), + [sym_element_access_expression] = STATE(2815), + [sym_interpolated_string_expression] = STATE(3462), + [sym_member_access_expression] = STATE(2815), + [sym_object_creation_expression] = STATE(3497), + [sym_parenthesized_expression] = STATE(3497), + [sym__parenthesized_lvalue_expression] = STATE(2815), + [sym_lambda_expression] = STATE(3462), + [sym__lambda_expression_init] = STATE(7428), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3462), + [sym_anonymous_method_expression] = STATE(3462), + [sym_anonymous_object_creation_expression] = STATE(3462), + [sym_implicit_array_creation_expression] = STATE(3462), + [sym_implicit_object_creation_expression] = STATE(3462), + [sym_implicit_stackalloc_expression] = STATE(3462), + [sym_initializer_expression] = STATE(3462), + [sym_default_expression] = STATE(3462), + [sym_with_expression] = STATE(3462), + [sym_sizeof_expression] = STATE(3462), + [sym_typeof_expression] = STATE(3462), + [sym_makeref_expression] = STATE(3462), + [sym_ref_expression] = STATE(3462), + [sym_reftype_expression] = STATE(3462), + [sym_refvalue_expression] = STATE(3462), + [sym_stackalloc_expression] = STATE(3462), + [sym_range_expression] = STATE(3462), + [sym_tuple_expression] = STATE(2815), + [sym_literal] = STATE(3462), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3462), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(778), [sym_preproc_endregion] = STATE(778), [sym_preproc_line] = STATE(778), @@ -173294,47 +173179,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(778), [sym_preproc_define] = STATE(778), [sym_preproc_undef] = STATE(778), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3396), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3367), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1153), - [anon_sym_LPAREN] = ACTIONS(1559), - [anon_sym_ref] = ACTIONS(1561), - [anon_sym_LBRACE] = ACTIONS(2843), - [anon_sym_delegate] = ACTIONS(1161), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1305), + [anon_sym_LPAREN] = ACTIONS(1839), + [anon_sym_ref] = ACTIONS(1841), + [anon_sym_LBRACE] = ACTIONS(1311), + [anon_sym_delegate] = ACTIONS(1313), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1529), + [anon_sym_new] = ACTIONS(1843), + [anon_sym_readonly] = ACTIONS(2767), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1167), - [anon_sym_BANG] = ACTIONS(1565), - [anon_sym_TILDE] = ACTIONS(1565), - [anon_sym_PLUS_PLUS] = ACTIONS(1565), - [anon_sym_DASH_DASH] = ACTIONS(1565), - [anon_sym_true] = ACTIONS(1173), - [anon_sym_false] = ACTIONS(1173), - [anon_sym_PLUS] = ACTIONS(1563), - [anon_sym_DASH] = ACTIONS(1563), - [anon_sym_STAR] = ACTIONS(1567), - [anon_sym_CARET] = ACTIONS(1565), - [anon_sym_AMP] = ACTIONS(1565), - [anon_sym_this] = ACTIONS(1177), + [anon_sym_checked] = ACTIONS(1317), + [anon_sym_BANG] = ACTIONS(1847), + [anon_sym_TILDE] = ACTIONS(1847), + [anon_sym_PLUS_PLUS] = ACTIONS(1847), + [anon_sym_DASH_DASH] = ACTIONS(1847), + [anon_sym_true] = ACTIONS(77), + [anon_sym_false] = ACTIONS(77), + [anon_sym_PLUS] = ACTIONS(1845), + [anon_sym_DASH] = ACTIONS(1845), + [anon_sym_STAR] = ACTIONS(1849), + [anon_sym_CARET] = ACTIONS(1847), + [anon_sym_AMP] = ACTIONS(1847), + [anon_sym_this] = ACTIONS(1321), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1179), + [anon_sym_base] = ACTIONS(1323), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1181), - [anon_sym_unchecked] = ACTIONS(1167), + [sym_predefined_type] = ACTIONS(91), + [anon_sym_unchecked] = ACTIONS(1317), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1183), - [anon_sym_throw] = ACTIONS(1569), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(1851), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1571), - [anon_sym_DOT_DOT] = ACTIONS(1573), + [anon_sym_await] = ACTIONS(1853), + [anon_sym_DOT_DOT] = ACTIONS(1855), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -173347,19 +173233,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1191), - [anon_sym_sizeof] = ACTIONS(1193), - [anon_sym_typeof] = ACTIONS(1195), - [anon_sym___makeref] = ACTIONS(1197), - [anon_sym___reftype] = ACTIONS(1199), - [anon_sym___refvalue] = ACTIONS(1201), - [sym_null_literal] = ACTIONS(1203), - [anon_sym_SQUOTE] = ACTIONS(1205), - [sym_integer_literal] = ACTIONS(1203), - [sym_real_literal] = ACTIONS(1207), - [anon_sym_DQUOTE] = ACTIONS(1209), - [sym_verbatim_string_literal] = ACTIONS(1207), - [aux_sym_preproc_if_token1] = ACTIONS(1211), + [anon_sym_stackalloc] = ACTIONS(1331), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(1333), + [anon_sym___reftype] = ACTIONS(1335), + [anon_sym___refvalue] = ACTIONS(1337), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_literal] = ACTIONS(143), + [anon_sym_DQUOTE] = ACTIONS(145), + [sym_verbatim_string_literal] = ACTIONS(143), + [aux_sym_preproc_if_token1] = ACTIONS(1339), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -173370,90 +173256,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(1213), - [sym_interpolation_verbatim_start] = ACTIONS(1215), - [sym_interpolation_raw_start] = ACTIONS(1217), - [sym_raw_string_start] = ACTIONS(1219), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [sym_interpolation_raw_start] = ACTIONS(155), + [sym_raw_string_start] = ACTIONS(157), }, [779] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(5910), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2247), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(5019), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3379), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3080), - [sym_postfix_unary_expression] = STATE(3111), - [sym_prefix_unary_expression] = STATE(3111), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6154), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3080), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3111), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3080), - [sym_member_access_expression] = STATE(2484), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3111), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7575), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(3080), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3080), - [sym_typeof_expression] = STATE(3080), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2484), - [sym_literal] = STATE(3080), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_block] = STATE(2984), + [sym_bracketed_argument_list] = STATE(2416), + [sym__name] = STATE(5885), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2404), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(3964), + [sym_non_lvalue_expression] = STATE(3040), + [sym_lvalue_expression] = STATE(3100), + [sym__expression_statement_expression] = STATE(3035), + [sym_assignment_expression] = STATE(3043), + [sym_binary_expression] = STATE(3035), + [sym_postfix_unary_expression] = STATE(3043), + [sym_prefix_unary_expression] = STATE(3043), + [sym__pointer_indirection_expression] = STATE(2415), + [sym_query_expression] = STATE(3035), + [sym_from_clause] = STATE(6135), + [sym_conditional_expression] = STATE(3035), + [sym_conditional_access_expression] = STATE(3035), + [sym_as_expression] = STATE(3035), + [sym_is_expression] = STATE(3035), + [sym_is_pattern_expression] = STATE(3035), + [sym_cast_expression] = STATE(3035), + [sym_checked_expression] = STATE(3035), + [sym_invocation_expression] = STATE(3043), + [sym_switch_expression] = STATE(3035), + [sym_await_expression] = STATE(3043), + [sym_throw_expression] = STATE(3035), + [sym_element_access_expression] = STATE(2415), + [sym_interpolated_string_expression] = STATE(3035), + [sym_member_access_expression] = STATE(2415), + [sym_object_creation_expression] = STATE(3043), + [sym_parenthesized_expression] = STATE(3043), + [sym__parenthesized_lvalue_expression] = STATE(2415), + [sym_lambda_expression] = STATE(3035), + [sym__lambda_expression_init] = STATE(7470), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3035), + [sym_anonymous_method_expression] = STATE(3035), + [sym_anonymous_object_creation_expression] = STATE(3035), + [sym_implicit_array_creation_expression] = STATE(3035), + [sym_implicit_object_creation_expression] = STATE(3035), + [sym_implicit_stackalloc_expression] = STATE(3035), + [sym_initializer_expression] = STATE(3035), + [sym_default_expression] = STATE(3035), + [sym_with_expression] = STATE(3035), + [sym_sizeof_expression] = STATE(3035), + [sym_typeof_expression] = STATE(3035), + [sym_makeref_expression] = STATE(3035), + [sym_ref_expression] = STATE(3035), + [sym_reftype_expression] = STATE(3035), + [sym_refvalue_expression] = STATE(3035), + [sym_stackalloc_expression] = STATE(3035), + [sym_range_expression] = STATE(3035), + [sym_tuple_expression] = STATE(2415), + [sym_literal] = STATE(3035), + [sym_character_literal] = STATE(3037), + [sym_string_literal] = STATE(3037), + [sym_raw_string_literal] = STATE(3037), + [sym_boolean_literal] = STATE(3037), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3035), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(779), [sym_preproc_endregion] = STATE(779), [sym_preproc_line] = STATE(779), @@ -173463,48 +173350,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(779), [sym_preproc_define] = STATE(779), [sym_preproc_undef] = STATE(779), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3455), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1481), - [anon_sym_LPAREN] = ACTIONS(895), - [anon_sym_ref] = ACTIONS(897), - [anon_sym_LBRACE] = ACTIONS(1487), - [anon_sym_RBRACE] = ACTIONS(2905), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1239), + [anon_sym_LPAREN] = ACTIONS(1931), + [anon_sym_ref] = ACTIONS(1933), + [anon_sym_LBRACE] = ACTIONS(2839), + [anon_sym_delegate] = ACTIONS(1247), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1061), + [anon_sym_new] = ACTIONS(1935), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1067), - [anon_sym_BANG] = ACTIONS(1495), - [anon_sym_TILDE] = ACTIONS(1495), - [anon_sym_PLUS_PLUS] = ACTIONS(1495), - [anon_sym_DASH_DASH] = ACTIONS(1495), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1493), - [anon_sym_DASH] = ACTIONS(1493), - [anon_sym_STAR] = ACTIONS(905), - [anon_sym_CARET] = ACTIONS(1495), - [anon_sym_AMP] = ACTIONS(1495), - [anon_sym_this] = ACTIONS(83), + [anon_sym_checked] = ACTIONS(1251), + [anon_sym_BANG] = ACTIONS(1939), + [anon_sym_TILDE] = ACTIONS(1939), + [anon_sym_PLUS_PLUS] = ACTIONS(1939), + [anon_sym_DASH_DASH] = ACTIONS(1939), + [anon_sym_true] = ACTIONS(1257), + [anon_sym_false] = ACTIONS(1257), + [anon_sym_PLUS] = ACTIONS(1937), + [anon_sym_DASH] = ACTIONS(1937), + [anon_sym_STAR] = ACTIONS(1941), + [anon_sym_CARET] = ACTIONS(1939), + [anon_sym_AMP] = ACTIONS(1939), + [anon_sym_this] = ACTIONS(1261), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), + [anon_sym_base] = ACTIONS(1263), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1067), + [sym_predefined_type] = ACTIONS(1265), + [anon_sym_unchecked] = ACTIONS(1251), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1079), + [anon_sym_default] = ACTIONS(1267), + [anon_sym_throw] = ACTIONS(1943), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1081), - [anon_sym_DOT_DOT] = ACTIONS(911), + [anon_sym_await] = ACTIONS(1945), + [anon_sym_DOT_DOT] = ACTIONS(1947), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -173517,19 +173403,19 @@ static const uint16_t ts_parse_table[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(1089), + [anon_sym_stackalloc] = ACTIONS(1275), + [anon_sym_sizeof] = ACTIONS(1277), + [anon_sym_typeof] = ACTIONS(1279), + [anon_sym___makeref] = ACTIONS(1281), + [anon_sym___reftype] = ACTIONS(1283), + [anon_sym___refvalue] = ACTIONS(1285), + [sym_null_literal] = ACTIONS(1287), + [anon_sym_SQUOTE] = ACTIONS(1289), + [sym_integer_literal] = ACTIONS(1287), + [sym_real_literal] = ACTIONS(1291), + [anon_sym_DQUOTE] = ACTIONS(1293), + [sym_verbatim_string_literal] = ACTIONS(1291), + [aux_sym_preproc_if_token1] = ACTIONS(1295), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -173540,90 +173426,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(151), - [sym_interpolation_verbatim_start] = ACTIONS(153), - [sym_interpolation_raw_start] = ACTIONS(155), - [sym_raw_string_start] = ACTIONS(157), + [sym_interpolation_regular_start] = ACTIONS(1297), + [sym_interpolation_verbatim_start] = ACTIONS(1299), + [sym_interpolation_raw_start] = ACTIONS(1301), + [sym_raw_string_start] = ACTIONS(1303), }, [780] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(5910), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2247), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(4867), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3379), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3080), - [sym_postfix_unary_expression] = STATE(3111), - [sym_prefix_unary_expression] = STATE(3111), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6154), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3080), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3111), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3080), - [sym_member_access_expression] = STATE(2484), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3111), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7575), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(3080), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3080), - [sym_typeof_expression] = STATE(3080), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2484), - [sym_literal] = STATE(3080), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2416), + [sym__name] = STATE(5885), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2404), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(2279), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(3923), + [sym_non_lvalue_expression] = STATE(3040), + [sym_lvalue_expression] = STATE(3100), + [sym__expression_statement_expression] = STATE(3035), + [sym_assignment_expression] = STATE(3043), + [sym_binary_expression] = STATE(3035), + [sym_postfix_unary_expression] = STATE(3043), + [sym_prefix_unary_expression] = STATE(3043), + [sym__pointer_indirection_expression] = STATE(2415), + [sym_query_expression] = STATE(3035), + [sym_from_clause] = STATE(6135), + [sym_conditional_expression] = STATE(3035), + [sym_conditional_access_expression] = STATE(3035), + [sym_as_expression] = STATE(3035), + [sym_is_expression] = STATE(3035), + [sym_is_pattern_expression] = STATE(3035), + [sym_cast_expression] = STATE(3035), + [sym_checked_expression] = STATE(3035), + [sym_invocation_expression] = STATE(3043), + [sym_switch_expression] = STATE(3035), + [sym_await_expression] = STATE(3043), + [sym_throw_expression] = STATE(3035), + [sym_element_access_expression] = STATE(2415), + [sym_interpolated_string_expression] = STATE(3035), + [sym_member_access_expression] = STATE(2415), + [sym_object_creation_expression] = STATE(3043), + [sym_parenthesized_expression] = STATE(3043), + [sym__parenthesized_lvalue_expression] = STATE(2415), + [sym_lambda_expression] = STATE(3035), + [sym__lambda_expression_init] = STATE(7470), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3035), + [sym_anonymous_method_expression] = STATE(3035), + [sym_anonymous_object_creation_expression] = STATE(3035), + [sym_implicit_array_creation_expression] = STATE(3035), + [sym_implicit_object_creation_expression] = STATE(3035), + [sym_implicit_stackalloc_expression] = STATE(3035), + [sym_initializer_expression] = STATE(3035), + [sym_default_expression] = STATE(3035), + [sym_with_expression] = STATE(3035), + [sym_sizeof_expression] = STATE(3035), + [sym_typeof_expression] = STATE(3035), + [sym_makeref_expression] = STATE(3035), + [sym_ref_expression] = STATE(3035), + [sym_reftype_expression] = STATE(3035), + [sym_refvalue_expression] = STATE(3035), + [sym_stackalloc_expression] = STATE(3035), + [sym_range_expression] = STATE(3035), + [sym_tuple_expression] = STATE(2415), + [sym_literal] = STATE(3035), + [sym_character_literal] = STATE(3037), + [sym_string_literal] = STATE(3037), + [sym_raw_string_literal] = STATE(3037), + [sym_boolean_literal] = STATE(3037), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3035), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(780), [sym_preproc_endregion] = STATE(780), [sym_preproc_line] = STATE(780), @@ -173633,48 +173519,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(780), [sym_preproc_define] = STATE(780), [sym_preproc_undef] = STATE(780), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3455), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1481), - [anon_sym_LPAREN] = ACTIONS(895), - [anon_sym_RPAREN] = ACTIONS(2907), - [anon_sym_ref] = ACTIONS(897), - [anon_sym_LBRACE] = ACTIONS(1487), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1239), + [anon_sym_LPAREN] = ACTIONS(1931), + [anon_sym_ref] = ACTIONS(1933), + [anon_sym_LBRACE] = ACTIONS(1245), + [anon_sym_delegate] = ACTIONS(1247), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1061), + [anon_sym_new] = ACTIONS(1935), + [anon_sym_readonly] = ACTIONS(2767), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1067), - [anon_sym_BANG] = ACTIONS(1495), - [anon_sym_TILDE] = ACTIONS(1495), - [anon_sym_PLUS_PLUS] = ACTIONS(1495), - [anon_sym_DASH_DASH] = ACTIONS(1495), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1493), - [anon_sym_DASH] = ACTIONS(1493), - [anon_sym_STAR] = ACTIONS(905), - [anon_sym_CARET] = ACTIONS(1495), - [anon_sym_AMP] = ACTIONS(1495), - [anon_sym_this] = ACTIONS(83), + [anon_sym_checked] = ACTIONS(1251), + [anon_sym_BANG] = ACTIONS(1939), + [anon_sym_TILDE] = ACTIONS(1939), + [anon_sym_PLUS_PLUS] = ACTIONS(1939), + [anon_sym_DASH_DASH] = ACTIONS(1939), + [anon_sym_true] = ACTIONS(1257), + [anon_sym_false] = ACTIONS(1257), + [anon_sym_PLUS] = ACTIONS(1937), + [anon_sym_DASH] = ACTIONS(1937), + [anon_sym_STAR] = ACTIONS(1941), + [anon_sym_CARET] = ACTIONS(1939), + [anon_sym_AMP] = ACTIONS(1939), + [anon_sym_this] = ACTIONS(1261), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), + [anon_sym_base] = ACTIONS(1263), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1067), + [sym_predefined_type] = ACTIONS(1265), + [anon_sym_unchecked] = ACTIONS(1251), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1079), + [anon_sym_default] = ACTIONS(1267), + [anon_sym_throw] = ACTIONS(1943), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1081), - [anon_sym_DOT_DOT] = ACTIONS(911), + [anon_sym_await] = ACTIONS(1945), + [anon_sym_DOT_DOT] = ACTIONS(1947), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -173687,19 +173573,19 @@ static const uint16_t ts_parse_table[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(1089), + [anon_sym_stackalloc] = ACTIONS(1275), + [anon_sym_sizeof] = ACTIONS(1277), + [anon_sym_typeof] = ACTIONS(1279), + [anon_sym___makeref] = ACTIONS(1281), + [anon_sym___reftype] = ACTIONS(1283), + [anon_sym___refvalue] = ACTIONS(1285), + [sym_null_literal] = ACTIONS(1287), + [anon_sym_SQUOTE] = ACTIONS(1289), + [sym_integer_literal] = ACTIONS(1287), + [sym_real_literal] = ACTIONS(1291), + [anon_sym_DQUOTE] = ACTIONS(1293), + [sym_verbatim_string_literal] = ACTIONS(1291), + [aux_sym_preproc_if_token1] = ACTIONS(1295), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -173710,90 +173596,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(1297), + [sym_interpolation_verbatim_start] = ACTIONS(1299), + [sym_interpolation_raw_start] = ACTIONS(1301), + [sym_raw_string_start] = ACTIONS(1303), }, [781] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2610), - [sym__name] = STATE(5898), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2197), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(2291), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(3859), - [sym_non_lvalue_expression] = STATE(3277), - [sym_lvalue_expression] = STATE(3023), - [sym__expression_statement_expression] = STATE(3228), - [sym_assignment_expression] = STATE(3289), - [sym_binary_expression] = STATE(3228), - [sym_postfix_unary_expression] = STATE(3289), - [sym_prefix_unary_expression] = STATE(3289), - [sym__pointer_indirection_expression] = STATE(2609), - [sym_query_expression] = STATE(3228), - [sym_from_clause] = STATE(6172), - [sym_conditional_expression] = STATE(3228), - [sym_conditional_access_expression] = STATE(3228), - [sym_as_expression] = STATE(3228), - [sym_is_expression] = STATE(3228), - [sym_is_pattern_expression] = STATE(3228), - [sym_cast_expression] = STATE(3228), - [sym_checked_expression] = STATE(3228), - [sym_invocation_expression] = STATE(3289), - [sym_switch_expression] = STATE(3228), - [sym_await_expression] = STATE(3289), - [sym_throw_expression] = STATE(3228), - [sym_element_access_expression] = STATE(2609), - [sym_interpolated_string_expression] = STATE(3228), - [sym_member_access_expression] = STATE(2609), - [sym_object_creation_expression] = STATE(3289), - [sym_parenthesized_expression] = STATE(3289), - [sym__parenthesized_lvalue_expression] = STATE(2609), - [sym_lambda_expression] = STATE(3228), - [sym__lambda_expression_init] = STATE(7653), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3228), - [sym_anonymous_method_expression] = STATE(3228), - [sym_anonymous_object_creation_expression] = STATE(3228), - [sym_implicit_array_creation_expression] = STATE(3228), - [sym_implicit_object_creation_expression] = STATE(3228), - [sym_implicit_stackalloc_expression] = STATE(3228), - [sym_initializer_expression] = STATE(3228), - [sym_default_expression] = STATE(3228), - [sym_with_expression] = STATE(3228), - [sym_sizeof_expression] = STATE(3228), - [sym_typeof_expression] = STATE(3228), - [sym_makeref_expression] = STATE(3228), - [sym_ref_expression] = STATE(3228), - [sym_reftype_expression] = STATE(3228), - [sym_refvalue_expression] = STATE(3228), - [sym_stackalloc_expression] = STATE(3228), - [sym_range_expression] = STATE(3228), - [sym_tuple_expression] = STATE(2609), - [sym_literal] = STATE(3228), - [sym_character_literal] = STATE(3278), - [sym_string_literal] = STATE(3278), - [sym_raw_string_literal] = STATE(3278), - [sym_boolean_literal] = STATE(3278), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3228), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_block] = STATE(3454), + [sym_bracketed_argument_list] = STATE(2816), + [sym__name] = STATE(5873), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2196), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(4855), + [sym_non_lvalue_expression] = STATE(3495), + [sym_lvalue_expression] = STATE(3525), + [sym__expression_statement_expression] = STATE(3462), + [sym_assignment_expression] = STATE(3497), + [sym_binary_expression] = STATE(3462), + [sym_postfix_unary_expression] = STATE(3497), + [sym_prefix_unary_expression] = STATE(3497), + [sym__pointer_indirection_expression] = STATE(2815), + [sym_query_expression] = STATE(3462), + [sym_from_clause] = STATE(6155), + [sym_conditional_expression] = STATE(3462), + [sym_conditional_access_expression] = STATE(3462), + [sym_as_expression] = STATE(3462), + [sym_is_expression] = STATE(3462), + [sym_is_pattern_expression] = STATE(3462), + [sym_cast_expression] = STATE(3462), + [sym_checked_expression] = STATE(3462), + [sym_invocation_expression] = STATE(3497), + [sym_switch_expression] = STATE(3462), + [sym_await_expression] = STATE(3497), + [sym_throw_expression] = STATE(3462), + [sym_element_access_expression] = STATE(2815), + [sym_interpolated_string_expression] = STATE(3462), + [sym_member_access_expression] = STATE(2815), + [sym_object_creation_expression] = STATE(3497), + [sym_parenthesized_expression] = STATE(3497), + [sym__parenthesized_lvalue_expression] = STATE(2815), + [sym_lambda_expression] = STATE(3462), + [sym__lambda_expression_init] = STATE(7427), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3462), + [sym_anonymous_method_expression] = STATE(3462), + [sym_anonymous_object_creation_expression] = STATE(3462), + [sym_implicit_array_creation_expression] = STATE(3462), + [sym_implicit_object_creation_expression] = STATE(3462), + [sym_implicit_stackalloc_expression] = STATE(3462), + [sym_initializer_expression] = STATE(3462), + [sym_default_expression] = STATE(3462), + [sym_with_expression] = STATE(3462), + [sym_sizeof_expression] = STATE(3462), + [sym_typeof_expression] = STATE(3462), + [sym_makeref_expression] = STATE(3462), + [sym_ref_expression] = STATE(3462), + [sym_reftype_expression] = STATE(3462), + [sym_refvalue_expression] = STATE(3462), + [sym_stackalloc_expression] = STATE(3462), + [sym_range_expression] = STATE(3462), + [sym_tuple_expression] = STATE(2815), + [sym_literal] = STATE(3462), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3462), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(781), [sym_preproc_endregion] = STATE(781), [sym_preproc_line] = STATE(781), @@ -173803,48 +173690,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(781), [sym_preproc_define] = STATE(781), [sym_preproc_undef] = STATE(781), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3396), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3367), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1153), - [anon_sym_LPAREN] = ACTIONS(1155), - [anon_sym_ref] = ACTIONS(1157), - [anon_sym_LBRACE] = ACTIONS(1159), - [anon_sym_delegate] = ACTIONS(1161), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1305), + [anon_sym_LPAREN] = ACTIONS(1737), + [anon_sym_ref] = ACTIONS(1739), + [anon_sym_LBRACE] = ACTIONS(2845), + [anon_sym_delegate] = ACTIONS(1313), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1163), - [anon_sym_readonly] = ACTIONS(2749), + [anon_sym_new] = ACTIONS(1741), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1167), - [anon_sym_BANG] = ACTIONS(1171), - [anon_sym_TILDE] = ACTIONS(1171), - [anon_sym_PLUS_PLUS] = ACTIONS(1171), - [anon_sym_DASH_DASH] = ACTIONS(1171), - [anon_sym_true] = ACTIONS(1173), - [anon_sym_false] = ACTIONS(1173), - [anon_sym_PLUS] = ACTIONS(1169), - [anon_sym_DASH] = ACTIONS(1169), - [anon_sym_STAR] = ACTIONS(1175), - [anon_sym_CARET] = ACTIONS(1171), - [anon_sym_AMP] = ACTIONS(1171), - [anon_sym_this] = ACTIONS(1177), + [anon_sym_checked] = ACTIONS(1317), + [anon_sym_BANG] = ACTIONS(1745), + [anon_sym_TILDE] = ACTIONS(1745), + [anon_sym_PLUS_PLUS] = ACTIONS(1745), + [anon_sym_DASH_DASH] = ACTIONS(1745), + [anon_sym_true] = ACTIONS(77), + [anon_sym_false] = ACTIONS(77), + [anon_sym_PLUS] = ACTIONS(1743), + [anon_sym_DASH] = ACTIONS(1743), + [anon_sym_STAR] = ACTIONS(1377), + [anon_sym_CARET] = ACTIONS(1745), + [anon_sym_AMP] = ACTIONS(1745), + [anon_sym_this] = ACTIONS(1321), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1179), + [anon_sym_base] = ACTIONS(1323), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1181), - [anon_sym_unchecked] = ACTIONS(1167), + [sym_predefined_type] = ACTIONS(91), + [anon_sym_unchecked] = ACTIONS(1317), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1183), - [anon_sym_throw] = ACTIONS(1185), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(1747), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1187), - [anon_sym_DOT_DOT] = ACTIONS(1189), + [anon_sym_await] = ACTIONS(1749), + [anon_sym_DOT_DOT] = ACTIONS(1751), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -173857,19 +173743,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1191), - [anon_sym_sizeof] = ACTIONS(1193), - [anon_sym_typeof] = ACTIONS(1195), - [anon_sym___makeref] = ACTIONS(1197), - [anon_sym___reftype] = ACTIONS(1199), - [anon_sym___refvalue] = ACTIONS(1201), - [sym_null_literal] = ACTIONS(1203), - [anon_sym_SQUOTE] = ACTIONS(1205), - [sym_integer_literal] = ACTIONS(1203), - [sym_real_literal] = ACTIONS(1207), - [anon_sym_DQUOTE] = ACTIONS(1209), - [sym_verbatim_string_literal] = ACTIONS(1207), - [aux_sym_preproc_if_token1] = ACTIONS(1211), + [anon_sym_stackalloc] = ACTIONS(1331), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(1333), + [anon_sym___reftype] = ACTIONS(1335), + [anon_sym___refvalue] = ACTIONS(1337), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_literal] = ACTIONS(143), + [anon_sym_DQUOTE] = ACTIONS(145), + [sym_verbatim_string_literal] = ACTIONS(143), + [aux_sym_preproc_if_token1] = ACTIONS(1753), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -173880,90 +173766,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1213), - [sym_interpolation_verbatim_start] = ACTIONS(1215), - [sym_interpolation_raw_start] = ACTIONS(1217), - [sym_raw_string_start] = ACTIONS(1219), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [sym_interpolation_raw_start] = ACTIONS(155), + [sym_raw_string_start] = ACTIONS(157), }, [782] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(5910), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2247), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(4869), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3379), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3080), - [sym_postfix_unary_expression] = STATE(3111), - [sym_prefix_unary_expression] = STATE(3111), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6154), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3080), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3111), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3080), - [sym_member_access_expression] = STATE(2484), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3111), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7575), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(3080), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3080), - [sym_typeof_expression] = STATE(3080), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2484), - [sym_literal] = STATE(3080), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2603), + [sym__name] = STATE(5872), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2387), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(2279), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(4726), + [sym_non_lvalue_expression] = STATE(3220), + [sym_lvalue_expression] = STATE(3395), + [sym__expression_statement_expression] = STATE(3236), + [sym_assignment_expression] = STATE(3221), + [sym_binary_expression] = STATE(3236), + [sym_postfix_unary_expression] = STATE(3221), + [sym_prefix_unary_expression] = STATE(3221), + [sym__pointer_indirection_expression] = STATE(2602), + [sym_query_expression] = STATE(3236), + [sym_from_clause] = STATE(6141), + [sym_conditional_expression] = STATE(3236), + [sym_conditional_access_expression] = STATE(3236), + [sym_as_expression] = STATE(3236), + [sym_is_expression] = STATE(3236), + [sym_is_pattern_expression] = STATE(3236), + [sym_cast_expression] = STATE(3236), + [sym_checked_expression] = STATE(3236), + [sym_invocation_expression] = STATE(3221), + [sym_switch_expression] = STATE(3236), + [sym_await_expression] = STATE(3221), + [sym_throw_expression] = STATE(3236), + [sym_element_access_expression] = STATE(2602), + [sym_interpolated_string_expression] = STATE(3236), + [sym_member_access_expression] = STATE(2602), + [sym_object_creation_expression] = STATE(3221), + [sym_parenthesized_expression] = STATE(3221), + [sym__parenthesized_lvalue_expression] = STATE(2602), + [sym_lambda_expression] = STATE(3236), + [sym__lambda_expression_init] = STATE(7446), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3236), + [sym_anonymous_method_expression] = STATE(3236), + [sym_anonymous_object_creation_expression] = STATE(3236), + [sym_implicit_array_creation_expression] = STATE(3236), + [sym_implicit_object_creation_expression] = STATE(3236), + [sym_implicit_stackalloc_expression] = STATE(3236), + [sym_initializer_expression] = STATE(3236), + [sym_default_expression] = STATE(3236), + [sym_with_expression] = STATE(3236), + [sym_sizeof_expression] = STATE(3236), + [sym_typeof_expression] = STATE(3236), + [sym_makeref_expression] = STATE(3236), + [sym_ref_expression] = STATE(3236), + [sym_reftype_expression] = STATE(3236), + [sym_refvalue_expression] = STATE(3236), + [sym_stackalloc_expression] = STATE(3236), + [sym_range_expression] = STATE(3236), + [sym_tuple_expression] = STATE(2602), + [sym_literal] = STATE(3236), + [sym_character_literal] = STATE(3272), + [sym_string_literal] = STATE(3272), + [sym_raw_string_literal] = STATE(3272), + [sym_boolean_literal] = STATE(3272), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3236), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(782), [sym_preproc_endregion] = STATE(782), [sym_preproc_line] = STATE(782), @@ -173973,48 +173859,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(782), [sym_preproc_define] = STATE(782), [sym_preproc_undef] = STATE(782), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3379), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1481), - [anon_sym_LPAREN] = ACTIONS(895), - [anon_sym_RPAREN] = ACTIONS(2909), - [anon_sym_ref] = ACTIONS(897), - [anon_sym_LBRACE] = ACTIONS(1487), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1149), + [anon_sym_LPAREN] = ACTIONS(1857), + [anon_sym_ref] = ACTIONS(1859), + [anon_sym_LBRACE] = ACTIONS(1155), + [anon_sym_delegate] = ACTIONS(1157), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1061), + [anon_sym_new] = ACTIONS(1861), + [anon_sym_readonly] = ACTIONS(2767), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1067), - [anon_sym_BANG] = ACTIONS(1495), - [anon_sym_TILDE] = ACTIONS(1495), - [anon_sym_PLUS_PLUS] = ACTIONS(1495), - [anon_sym_DASH_DASH] = ACTIONS(1495), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1493), - [anon_sym_DASH] = ACTIONS(1493), - [anon_sym_STAR] = ACTIONS(905), - [anon_sym_CARET] = ACTIONS(1495), - [anon_sym_AMP] = ACTIONS(1495), - [anon_sym_this] = ACTIONS(83), + [anon_sym_checked] = ACTIONS(1163), + [anon_sym_BANG] = ACTIONS(1865), + [anon_sym_TILDE] = ACTIONS(1865), + [anon_sym_PLUS_PLUS] = ACTIONS(1865), + [anon_sym_DASH_DASH] = ACTIONS(1865), + [anon_sym_true] = ACTIONS(1169), + [anon_sym_false] = ACTIONS(1169), + [anon_sym_PLUS] = ACTIONS(1863), + [anon_sym_DASH] = ACTIONS(1863), + [anon_sym_STAR] = ACTIONS(1867), + [anon_sym_CARET] = ACTIONS(1865), + [anon_sym_AMP] = ACTIONS(1865), + [anon_sym_this] = ACTIONS(1173), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), + [anon_sym_base] = ACTIONS(1175), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1067), + [sym_predefined_type] = ACTIONS(1177), + [anon_sym_unchecked] = ACTIONS(1163), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1079), + [anon_sym_default] = ACTIONS(1179), + [anon_sym_throw] = ACTIONS(1869), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1081), - [anon_sym_DOT_DOT] = ACTIONS(911), + [anon_sym_await] = ACTIONS(1871), + [anon_sym_DOT_DOT] = ACTIONS(1873), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -174027,19 +173913,19 @@ static const uint16_t ts_parse_table[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(1089), + [anon_sym_stackalloc] = ACTIONS(1187), + [anon_sym_sizeof] = ACTIONS(1189), + [anon_sym_typeof] = ACTIONS(1191), + [anon_sym___makeref] = ACTIONS(1193), + [anon_sym___reftype] = ACTIONS(1195), + [anon_sym___refvalue] = ACTIONS(1197), + [sym_null_literal] = ACTIONS(1199), + [anon_sym_SQUOTE] = ACTIONS(1201), + [sym_integer_literal] = ACTIONS(1199), + [sym_real_literal] = ACTIONS(1203), + [anon_sym_DQUOTE] = ACTIONS(1205), + [sym_verbatim_string_literal] = ACTIONS(1203), + [aux_sym_preproc_if_token1] = ACTIONS(1207), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -174050,90 +173936,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(151), - [sym_interpolation_verbatim_start] = ACTIONS(153), - [sym_interpolation_raw_start] = ACTIONS(155), - [sym_raw_string_start] = ACTIONS(157), + [sym_interpolation_regular_start] = ACTIONS(1209), + [sym_interpolation_verbatim_start] = ACTIONS(1211), + [sym_interpolation_raw_start] = ACTIONS(1213), + [sym_raw_string_start] = ACTIONS(1215), }, [783] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(5160), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2204), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(5503), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3461), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3080), - [sym_postfix_unary_expression] = STATE(3111), - [sym_prefix_unary_expression] = STATE(3111), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6154), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3080), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3111), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3080), - [sym_member_access_expression] = STATE(2484), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3111), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7547), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(3080), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3080), - [sym_typeof_expression] = STATE(3080), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2484), - [sym_literal] = STATE(3080), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5770), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(5152), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2196), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(5444), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3510), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3102), + [sym_postfix_unary_expression] = STATE(3079), + [sym_prefix_unary_expression] = STATE(3079), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6134), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3102), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3079), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3102), + [sym_member_access_expression] = STATE(2472), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3079), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7425), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(3102), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3102), + [sym_typeof_expression] = STATE(3102), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2472), + [sym_literal] = STATE(3102), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(783), [sym_preproc_endregion] = STATE(783), [sym_preproc_line] = STATE(783), @@ -174143,48 +174029,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(783), [sym_preproc_define] = STATE(783), [sym_preproc_undef] = STATE(783), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), - [anon_sym_SEMI] = ACTIONS(2911), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1481), - [anon_sym_LPAREN] = ACTIONS(1497), - [anon_sym_ref] = ACTIONS(1499), - [anon_sym_LBRACE] = ACTIONS(1487), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1479), + [anon_sym_LPAREN] = ACTIONS(43), + [anon_sym_ref] = ACTIONS(715), + [anon_sym_LBRACE] = ACTIONS(1481), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1501), + [anon_sym_new] = ACTIONS(1059), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = 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_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(1525), + [anon_sym_TILDE] = ACTIONS(1525), + [anon_sym_PLUS_PLUS] = ACTIONS(1525), + [anon_sym_DASH_DASH] = ACTIONS(1525), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(79), - [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(1523), + [anon_sym_DASH] = ACTIONS(1523), [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(75), - [anon_sym_AMP] = ACTIONS(75), + [anon_sym_CARET] = ACTIONS(1525), + [anon_sym_AMP] = ACTIONS(1525), [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(1067), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1503), + [anon_sym_throw] = ACTIONS(1527), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1505), - [anon_sym_DOT_DOT] = ACTIONS(1507), + [anon_sym_await] = ACTIONS(1529), + [anon_sym_DOT_DOT] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -174209,7 +174094,8 @@ 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(1089), + [aux_sym_preproc_if_token1] = ACTIONS(1087), + [aux_sym_preproc_if_token3] = ACTIONS(2917), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -174226,84 +174112,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [784] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(5160), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2204), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(5340), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3461), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3080), - [sym_postfix_unary_expression] = STATE(3111), - [sym_prefix_unary_expression] = STATE(3111), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6154), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3080), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3111), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3080), - [sym_member_access_expression] = STATE(2484), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3111), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7547), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(3080), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3080), - [sym_typeof_expression] = STATE(3080), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2484), - [sym_literal] = STATE(3080), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_argument] = STATE(7129), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(5873), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2238), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(5300), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3468), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3102), + [sym_postfix_unary_expression] = STATE(3079), + [sym_prefix_unary_expression] = STATE(3079), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6134), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3102), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3079), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3102), + [sym_member_access_expression] = STATE(2472), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3079), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7309), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(3102), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3102), + [sym_typeof_expression] = STATE(3102), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2472), + [sym_literal] = STATE(3102), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2281), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(784), [sym_preproc_endregion] = STATE(784), [sym_preproc_line] = STATE(784), @@ -174313,48 +174200,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(784), [sym_preproc_define] = STATE(784), [sym_preproc_undef] = STATE(784), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), - [anon_sym_SEMI] = ACTIONS(2913), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1481), - [anon_sym_LPAREN] = ACTIONS(1497), - [anon_sym_ref] = ACTIONS(1499), - [anon_sym_LBRACE] = ACTIONS(1487), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1479), + [anon_sym_LPAREN] = ACTIONS(659), + [anon_sym_ref] = ACTIONS(663), + [anon_sym_LBRACE] = ACTIONS(1481), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1501), + [anon_sym_new] = ACTIONS(1059), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = 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_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(1485), + [anon_sym_TILDE] = ACTIONS(1485), + [anon_sym_PLUS_PLUS] = ACTIONS(1485), + [anon_sym_DASH_DASH] = ACTIONS(1485), [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(1483), + [anon_sym_DASH] = ACTIONS(1483), + [anon_sym_STAR] = ACTIONS(683), + [anon_sym_CARET] = ACTIONS(1485), + [anon_sym_AMP] = ACTIONS(1485), [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(1067), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1503), + [anon_sym_throw] = ACTIONS(1077), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1505), - [anon_sym_DOT_DOT] = ACTIONS(1507), + [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), @@ -174379,7 +174265,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(1089), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -174396,84 +174282,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [785] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(5910), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2247), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(4943), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3529), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3080), - [sym_postfix_unary_expression] = STATE(3111), - [sym_prefix_unary_expression] = STATE(3111), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6154), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3080), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3111), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3080), - [sym_member_access_expression] = STATE(2484), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3111), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7444), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(3080), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3080), - [sym_typeof_expression] = STATE(3080), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2484), - [sym_literal] = STATE(3080), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(3182), + [sym__name] = STATE(5882), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2306), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2262), + [sym_type] = STATE(2279), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(4435), + [sym_non_lvalue_expression] = STATE(4580), + [sym_lvalue_expression] = STATE(3312), + [sym__expression_statement_expression] = STATE(4573), + [sym_assignment_expression] = STATE(4581), + [sym_binary_expression] = STATE(4573), + [sym_postfix_unary_expression] = STATE(4581), + [sym_prefix_unary_expression] = STATE(4581), + [sym__pointer_indirection_expression] = STATE(3144), + [sym_query_expression] = STATE(4573), + [sym_from_clause] = STATE(6160), + [sym_conditional_expression] = STATE(4573), + [sym_conditional_access_expression] = STATE(4573), + [sym_as_expression] = STATE(4573), + [sym_is_expression] = STATE(4573), + [sym_is_pattern_expression] = STATE(4573), + [sym_cast_expression] = STATE(4573), + [sym_checked_expression] = STATE(4573), + [sym_invocation_expression] = STATE(4581), + [sym_switch_expression] = STATE(4573), + [sym_await_expression] = STATE(4581), + [sym_throw_expression] = STATE(4573), + [sym_element_access_expression] = STATE(3144), + [sym_interpolated_string_expression] = STATE(4573), + [sym_member_access_expression] = STATE(3144), + [sym_object_creation_expression] = STATE(4581), + [sym_parenthesized_expression] = STATE(4581), + [sym__parenthesized_lvalue_expression] = STATE(3144), + [sym_lambda_expression] = STATE(4573), + [sym__lambda_expression_init] = STATE(7399), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(4573), + [sym_anonymous_method_expression] = STATE(4573), + [sym_anonymous_object_creation_expression] = STATE(4573), + [sym_implicit_array_creation_expression] = STATE(4573), + [sym_implicit_object_creation_expression] = STATE(4573), + [sym_implicit_stackalloc_expression] = STATE(4573), + [sym_initializer_expression] = STATE(4573), + [sym_default_expression] = STATE(4573), + [sym_with_expression] = STATE(4573), + [sym_sizeof_expression] = STATE(4573), + [sym_typeof_expression] = STATE(4573), + [sym_makeref_expression] = STATE(4573), + [sym_ref_expression] = STATE(4573), + [sym_reftype_expression] = STATE(4573), + [sym_refvalue_expression] = STATE(4573), + [sym_stackalloc_expression] = STATE(4573), + [sym_range_expression] = STATE(4573), + [sym_tuple_expression] = STATE(3144), + [sym_literal] = STATE(4573), + [sym_character_literal] = STATE(4575), + [sym_string_literal] = STATE(4575), + [sym_raw_string_literal] = STATE(4575), + [sym_boolean_literal] = STATE(4575), + [sym_identifier] = STATE(2237), + [sym__reserved_identifier] = STATE(2229), + [sym_preproc_if_in_expression] = STATE(4573), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(785), [sym_preproc_endregion] = STATE(785), [sym_preproc_line] = STATE(785), @@ -174483,167 +174369,167 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(785), [sym_preproc_define] = STATE(785), [sym_preproc_undef] = STATE(785), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), - [sym__identifier_token] = ACTIONS(25), - [anon_sym_alias] = ACTIONS(29), - [anon_sym_SEMI] = ACTIONS(2915), - [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1481), - [anon_sym_LPAREN] = ACTIONS(1575), - [anon_sym_ref] = ACTIONS(1577), - [anon_sym_LBRACE] = ACTIONS(1487), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), - [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1501), - [anon_sym_where] = ACTIONS(29), - [anon_sym_notnull] = ACTIONS(29), - [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1067), - [anon_sym_BANG] = ACTIONS(901), - [anon_sym_TILDE] = ACTIONS(901), - [anon_sym_PLUS_PLUS] = ACTIONS(901), - [anon_sym_DASH_DASH] = ACTIONS(901), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(903), - [anon_sym_DASH] = ACTIONS(903), - [anon_sym_STAR] = ACTIONS(905), - [anon_sym_CARET] = ACTIONS(901), - [anon_sym_AMP] = ACTIONS(901), - [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(1067), - [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1579), - [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1581), - [anon_sym_DOT_DOT] = ACTIONS(1583), - [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(1089), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(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), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3501), + [sym__identifier_token] = ACTIONS(1385), + [anon_sym_alias] = ACTIONS(1387), + [anon_sym_global] = ACTIONS(1387), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1389), + [anon_sym_LPAREN] = ACTIONS(1461), + [anon_sym_ref] = ACTIONS(1463), + [anon_sym_LBRACE] = ACTIONS(1395), + [anon_sym_delegate] = ACTIONS(1397), + [anon_sym_async] = ACTIONS(1045), + [anon_sym_file] = ACTIONS(1387), + [anon_sym_new] = ACTIONS(1465), + [anon_sym_readonly] = ACTIONS(2767), + [anon_sym_where] = ACTIONS(1387), + [anon_sym_notnull] = ACTIONS(1387), + [anon_sym_unmanaged] = ACTIONS(1387), + [anon_sym_checked] = ACTIONS(1401), + [anon_sym_BANG] = ACTIONS(1469), + [anon_sym_TILDE] = ACTIONS(1469), + [anon_sym_PLUS_PLUS] = ACTIONS(1469), + [anon_sym_DASH_DASH] = ACTIONS(1469), + [anon_sym_true] = ACTIONS(1407), + [anon_sym_false] = ACTIONS(1407), + [anon_sym_PLUS] = ACTIONS(1467), + [anon_sym_DASH] = ACTIONS(1467), + [anon_sym_STAR] = ACTIONS(1471), + [anon_sym_CARET] = ACTIONS(1469), + [anon_sym_AMP] = ACTIONS(1469), + [anon_sym_this] = ACTIONS(1411), + [anon_sym_scoped] = ACTIONS(1413), + [anon_sym_base] = ACTIONS(1415), + [anon_sym_var] = ACTIONS(1417), + [sym_predefined_type] = ACTIONS(1419), + [anon_sym_unchecked] = ACTIONS(1401), + [anon_sym_yield] = ACTIONS(1387), + [anon_sym_default] = ACTIONS(1421), + [anon_sym_throw] = ACTIONS(1473), + [anon_sym_when] = ACTIONS(1387), + [anon_sym_await] = ACTIONS(1475), + [anon_sym_DOT_DOT] = ACTIONS(1477), + [anon_sym_from] = ACTIONS(1429), + [anon_sym_into] = ACTIONS(1387), + [anon_sym_join] = ACTIONS(1387), + [anon_sym_on] = ACTIONS(1387), + [anon_sym_equals] = ACTIONS(1387), + [anon_sym_let] = ACTIONS(1387), + [anon_sym_orderby] = ACTIONS(1387), + [anon_sym_ascending] = ACTIONS(1387), + [anon_sym_descending] = ACTIONS(1387), + [anon_sym_group] = ACTIONS(1387), + [anon_sym_by] = ACTIONS(1387), + [anon_sym_select] = ACTIONS(1387), + [anon_sym_stackalloc] = ACTIONS(1431), + [anon_sym_sizeof] = ACTIONS(1433), + [anon_sym_typeof] = ACTIONS(1435), + [anon_sym___makeref] = ACTIONS(1437), + [anon_sym___reftype] = ACTIONS(1439), + [anon_sym___refvalue] = ACTIONS(1441), + [sym_null_literal] = ACTIONS(1443), + [anon_sym_SQUOTE] = ACTIONS(1445), + [sym_integer_literal] = ACTIONS(1443), + [sym_real_literal] = ACTIONS(1447), + [anon_sym_DQUOTE] = ACTIONS(1449), + [sym_verbatim_string_literal] = ACTIONS(1447), + [aux_sym_preproc_if_token1] = ACTIONS(1451), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + [sym_interpolation_regular_start] = ACTIONS(1453), + [sym_interpolation_verbatim_start] = ACTIONS(1455), + [sym_interpolation_raw_start] = ACTIONS(1457), + [sym_raw_string_start] = ACTIONS(1459), }, [786] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2762), - [sym__name] = STATE(5889), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2247), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(2291), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(4317), - [sym_non_lvalue_expression] = STATE(3438), - [sym_lvalue_expression] = STATE(3224), - [sym__expression_statement_expression] = STATE(3362), - [sym_assignment_expression] = STATE(3449), - [sym_binary_expression] = STATE(3362), - [sym_postfix_unary_expression] = STATE(3449), - [sym_prefix_unary_expression] = STATE(3449), - [sym__pointer_indirection_expression] = STATE(2747), - [sym_query_expression] = STATE(3362), - [sym_from_clause] = STATE(6146), - [sym_conditional_expression] = STATE(3362), - [sym_conditional_access_expression] = STATE(3362), - [sym_as_expression] = STATE(3362), - [sym_is_expression] = STATE(3362), - [sym_is_pattern_expression] = STATE(3362), - [sym_cast_expression] = STATE(3362), - [sym_checked_expression] = STATE(3362), - [sym_invocation_expression] = STATE(3449), - [sym_switch_expression] = STATE(3362), - [sym_await_expression] = STATE(3449), - [sym_throw_expression] = STATE(3362), - [sym_element_access_expression] = STATE(2747), - [sym_interpolated_string_expression] = STATE(3362), - [sym_member_access_expression] = STATE(2747), - [sym_object_creation_expression] = STATE(3449), - [sym_parenthesized_expression] = STATE(3449), - [sym__parenthesized_lvalue_expression] = STATE(2747), - [sym_lambda_expression] = STATE(3362), - [sym__lambda_expression_init] = STATE(7381), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3362), - [sym_anonymous_method_expression] = STATE(3362), - [sym_anonymous_object_creation_expression] = STATE(3362), - [sym_implicit_array_creation_expression] = STATE(3362), - [sym_implicit_object_creation_expression] = STATE(3362), - [sym_implicit_stackalloc_expression] = STATE(3362), - [sym_initializer_expression] = STATE(3362), - [sym_default_expression] = STATE(3362), - [sym_with_expression] = STATE(3362), - [sym_sizeof_expression] = STATE(3362), - [sym_typeof_expression] = STATE(3362), - [sym_makeref_expression] = STATE(3362), - [sym_ref_expression] = STATE(3362), - [sym_reftype_expression] = STATE(3362), - [sym_refvalue_expression] = STATE(3362), - [sym_stackalloc_expression] = STATE(3362), - [sym_range_expression] = STATE(3362), - [sym_tuple_expression] = STATE(2747), - [sym_literal] = STATE(3362), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3362), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2816), + [sym__name] = STATE(5873), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2196), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(2279), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(4858), + [sym_non_lvalue_expression] = STATE(3495), + [sym_lvalue_expression] = STATE(3525), + [sym__expression_statement_expression] = STATE(3462), + [sym_assignment_expression] = STATE(3497), + [sym_binary_expression] = STATE(3462), + [sym_postfix_unary_expression] = STATE(3497), + [sym_prefix_unary_expression] = STATE(3497), + [sym__pointer_indirection_expression] = STATE(2815), + [sym_query_expression] = STATE(3462), + [sym_from_clause] = STATE(6155), + [sym_conditional_expression] = STATE(3462), + [sym_conditional_access_expression] = STATE(3462), + [sym_as_expression] = STATE(3462), + [sym_is_expression] = STATE(3462), + [sym_is_pattern_expression] = STATE(3462), + [sym_cast_expression] = STATE(3462), + [sym_checked_expression] = STATE(3462), + [sym_invocation_expression] = STATE(3497), + [sym_switch_expression] = STATE(3462), + [sym_await_expression] = STATE(3497), + [sym_throw_expression] = STATE(3462), + [sym_element_access_expression] = STATE(2815), + [sym_interpolated_string_expression] = STATE(3462), + [sym_member_access_expression] = STATE(2815), + [sym_object_creation_expression] = STATE(3497), + [sym_parenthesized_expression] = STATE(3497), + [sym__parenthesized_lvalue_expression] = STATE(2815), + [sym_lambda_expression] = STATE(3462), + [sym__lambda_expression_init] = STATE(7427), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3462), + [sym_anonymous_method_expression] = STATE(3462), + [sym_anonymous_object_creation_expression] = STATE(3462), + [sym_implicit_array_creation_expression] = STATE(3462), + [sym_implicit_object_creation_expression] = STATE(3462), + [sym_implicit_stackalloc_expression] = STATE(3462), + [sym_initializer_expression] = STATE(3462), + [sym_default_expression] = STATE(3462), + [sym_with_expression] = STATE(3462), + [sym_sizeof_expression] = STATE(3462), + [sym_typeof_expression] = STATE(3462), + [sym_makeref_expression] = STATE(3462), + [sym_ref_expression] = STATE(3462), + [sym_reftype_expression] = STATE(3462), + [sym_refvalue_expression] = STATE(3462), + [sym_stackalloc_expression] = STATE(3462), + [sym_range_expression] = STATE(3462), + [sym_tuple_expression] = STATE(2815), + [sym_literal] = STATE(3462), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3462), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(786), [sym_preproc_endregion] = STATE(786), [sym_preproc_line] = STATE(786), @@ -174653,48 +174539,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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3385), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3367), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1307), - [anon_sym_LPAREN] = ACTIONS(1359), - [anon_sym_ref] = ACTIONS(1361), - [anon_sym_LBRACE] = ACTIONS(1313), - [anon_sym_delegate] = ACTIONS(1315), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1305), + [anon_sym_LPAREN] = ACTIONS(1737), + [anon_sym_ref] = ACTIONS(1739), + [anon_sym_LBRACE] = ACTIONS(1311), + [anon_sym_delegate] = ACTIONS(1313), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1317), - [anon_sym_readonly] = ACTIONS(2749), + [anon_sym_new] = ACTIONS(1741), + [anon_sym_readonly] = ACTIONS(2767), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1319), - [anon_sym_BANG] = ACTIONS(1107), - [anon_sym_TILDE] = ACTIONS(1107), - [anon_sym_PLUS_PLUS] = ACTIONS(1107), - [anon_sym_DASH_DASH] = ACTIONS(1107), + [anon_sym_checked] = ACTIONS(1317), + [anon_sym_BANG] = ACTIONS(1745), + [anon_sym_TILDE] = ACTIONS(1745), + [anon_sym_PLUS_PLUS] = ACTIONS(1745), + [anon_sym_DASH_DASH] = ACTIONS(1745), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1109), - [anon_sym_DASH] = ACTIONS(1109), - [anon_sym_STAR] = ACTIONS(1363), - [anon_sym_CARET] = ACTIONS(1107), - [anon_sym_AMP] = ACTIONS(1107), - [anon_sym_this] = ACTIONS(1323), + [anon_sym_PLUS] = ACTIONS(1743), + [anon_sym_DASH] = ACTIONS(1743), + [anon_sym_STAR] = ACTIONS(1377), + [anon_sym_CARET] = ACTIONS(1745), + [anon_sym_AMP] = ACTIONS(1745), + [anon_sym_this] = ACTIONS(1321), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1325), + [anon_sym_base] = ACTIONS(1323), [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1319), + [anon_sym_unchecked] = ACTIONS(1317), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1365), + [anon_sym_throw] = ACTIONS(1747), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1367), - [anon_sym_DOT_DOT] = ACTIONS(1369), + [anon_sym_await] = ACTIONS(1749), + [anon_sym_DOT_DOT] = ACTIONS(1751), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -174707,19 +174593,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1333), + [anon_sym_stackalloc] = ACTIONS(1331), [anon_sym_sizeof] = ACTIONS(129), [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(1335), - [anon_sym___reftype] = ACTIONS(1337), - [anon_sym___refvalue] = ACTIONS(1339), + [anon_sym___makeref] = ACTIONS(1333), + [anon_sym___reftype] = ACTIONS(1335), + [anon_sym___refvalue] = ACTIONS(1337), [sym_null_literal] = ACTIONS(139), [anon_sym_SQUOTE] = ACTIONS(141), [sym_integer_literal] = ACTIONS(139), [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1341), + [aux_sym_preproc_if_token1] = ACTIONS(1753), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -174736,84 +174622,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [787] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2610), - [sym__name] = STATE(5871), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2319), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(2291), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(4480), - [sym_non_lvalue_expression] = STATE(3277), - [sym_lvalue_expression] = STATE(3280), - [sym__expression_statement_expression] = STATE(3228), - [sym_assignment_expression] = STATE(3289), - [sym_binary_expression] = STATE(3228), - [sym_postfix_unary_expression] = STATE(3289), - [sym_prefix_unary_expression] = STATE(3289), - [sym__pointer_indirection_expression] = STATE(2609), - [sym_query_expression] = STATE(3228), - [sym_from_clause] = STATE(6177), - [sym_conditional_expression] = STATE(3228), - [sym_conditional_access_expression] = STATE(3228), - [sym_as_expression] = STATE(3228), - [sym_is_expression] = STATE(3228), - [sym_is_pattern_expression] = STATE(3228), - [sym_cast_expression] = STATE(3228), - [sym_checked_expression] = STATE(3228), - [sym_invocation_expression] = STATE(3289), - [sym_switch_expression] = STATE(3228), - [sym_await_expression] = STATE(3289), - [sym_throw_expression] = STATE(3228), - [sym_element_access_expression] = STATE(2609), - [sym_interpolated_string_expression] = STATE(3228), - [sym_member_access_expression] = STATE(2609), - [sym_object_creation_expression] = STATE(3289), - [sym_parenthesized_expression] = STATE(3289), - [sym__parenthesized_lvalue_expression] = STATE(2609), - [sym_lambda_expression] = STATE(3228), - [sym__lambda_expression_init] = STATE(7636), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3228), - [sym_anonymous_method_expression] = STATE(3228), - [sym_anonymous_object_creation_expression] = STATE(3228), - [sym_implicit_array_creation_expression] = STATE(3228), - [sym_implicit_object_creation_expression] = STATE(3228), - [sym_implicit_stackalloc_expression] = STATE(3228), - [sym_initializer_expression] = STATE(3228), - [sym_default_expression] = STATE(3228), - [sym_with_expression] = STATE(3228), - [sym_sizeof_expression] = STATE(3228), - [sym_typeof_expression] = STATE(3228), - [sym_makeref_expression] = STATE(3228), - [sym_ref_expression] = STATE(3228), - [sym_reftype_expression] = STATE(3228), - [sym_refvalue_expression] = STATE(3228), - [sym_stackalloc_expression] = STATE(3228), - [sym_range_expression] = STATE(3228), - [sym_tuple_expression] = STATE(2609), - [sym_literal] = STATE(3228), - [sym_character_literal] = STATE(3278), - [sym_string_literal] = STATE(3278), - [sym_raw_string_literal] = STATE(3278), - [sym_boolean_literal] = STATE(3278), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3228), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(5895), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2376), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(2279), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(5512), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3643), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3102), + [sym_postfix_unary_expression] = STATE(3079), + [sym_prefix_unary_expression] = STATE(3079), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6148), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3102), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3079), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3102), + [sym_member_access_expression] = STATE(2472), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3079), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7304), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(3102), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3102), + [sym_typeof_expression] = STATE(3102), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2472), + [sym_literal] = STATE(3102), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(787), [sym_preproc_endregion] = STATE(787), [sym_preproc_line] = STATE(787), @@ -174823,218 +174709,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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3396), - [sym__identifier_token] = ACTIONS(25), - [anon_sym_alias] = ACTIONS(29), - [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1153), - [anon_sym_LPAREN] = ACTIONS(1559), - [anon_sym_ref] = ACTIONS(1561), - [anon_sym_LBRACE] = ACTIONS(1159), - [anon_sym_delegate] = ACTIONS(1161), - [anon_sym_async] = ACTIONS(1047), - [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1529), - [anon_sym_readonly] = ACTIONS(2749), - [anon_sym_where] = ACTIONS(29), - [anon_sym_notnull] = ACTIONS(29), - [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1167), - [anon_sym_BANG] = ACTIONS(1565), - [anon_sym_TILDE] = ACTIONS(1565), - [anon_sym_PLUS_PLUS] = ACTIONS(1565), - [anon_sym_DASH_DASH] = ACTIONS(1565), - [anon_sym_true] = ACTIONS(1173), - [anon_sym_false] = ACTIONS(1173), - [anon_sym_PLUS] = ACTIONS(1563), - [anon_sym_DASH] = ACTIONS(1563), - [anon_sym_STAR] = ACTIONS(1567), - [anon_sym_CARET] = ACTIONS(1565), - [anon_sym_AMP] = ACTIONS(1565), - [anon_sym_this] = ACTIONS(1177), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1179), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1181), - [anon_sym_unchecked] = ACTIONS(1167), - [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1183), - [anon_sym_throw] = ACTIONS(1569), - [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1571), - [anon_sym_DOT_DOT] = ACTIONS(1573), - [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(1191), - [anon_sym_sizeof] = ACTIONS(1193), - [anon_sym_typeof] = ACTIONS(1195), - [anon_sym___makeref] = ACTIONS(1197), - [anon_sym___reftype] = ACTIONS(1199), - [anon_sym___refvalue] = ACTIONS(1201), - [sym_null_literal] = ACTIONS(1203), - [anon_sym_SQUOTE] = ACTIONS(1205), - [sym_integer_literal] = ACTIONS(1203), - [sym_real_literal] = ACTIONS(1207), - [anon_sym_DQUOTE] = ACTIONS(1209), - [sym_verbatim_string_literal] = ACTIONS(1207), - [aux_sym_preproc_if_token1] = ACTIONS(1211), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1213), - [sym_interpolation_verbatim_start] = ACTIONS(1215), - [sym_interpolation_raw_start] = ACTIONS(1217), - [sym_raw_string_start] = ACTIONS(1219), - }, - [788] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(5160), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2204), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(4790), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3461), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3080), - [sym_postfix_unary_expression] = STATE(3111), - [sym_prefix_unary_expression] = STATE(3111), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6154), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3080), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3111), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3080), - [sym_member_access_expression] = STATE(2484), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3111), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7547), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(3080), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3080), - [sym_typeof_expression] = STATE(3080), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2484), - [sym_literal] = STATE(3080), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), - [sym_preproc_region] = STATE(788), - [sym_preproc_endregion] = STATE(788), - [sym_preproc_line] = STATE(788), - [sym_preproc_pragma] = STATE(788), - [sym_preproc_nullable] = STATE(788), - [sym_preproc_error] = STATE(788), - [sym_preproc_warning] = STATE(788), - [sym_preproc_define] = STATE(788), - [sym_preproc_undef] = STATE(788), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), - [anon_sym_SEMI] = ACTIONS(2917), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1481), - [anon_sym_LPAREN] = ACTIONS(1497), - [anon_sym_ref] = ACTIONS(1499), - [anon_sym_LBRACE] = ACTIONS(1487), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1479), + [anon_sym_LPAREN] = ACTIONS(2199), + [anon_sym_ref] = ACTIONS(2201), + [anon_sym_LBRACE] = ACTIONS(1481), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1501), + [anon_sym_new] = ACTIONS(2203), + [anon_sym_readonly] = ACTIONS(2767), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = 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_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(2207), + [anon_sym_TILDE] = ACTIONS(2207), + [anon_sym_PLUS_PLUS] = ACTIONS(2207), + [anon_sym_DASH_DASH] = ACTIONS(2207), [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(2205), + [anon_sym_DASH] = ACTIONS(2205), + [anon_sym_STAR] = ACTIONS(2209), + [anon_sym_CARET] = ACTIONS(2207), + [anon_sym_AMP] = ACTIONS(2207), [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(1067), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1503), + [anon_sym_throw] = ACTIONS(2211), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1505), - [anon_sym_DOT_DOT] = ACTIONS(1507), + [anon_sym_await] = ACTIONS(2213), + [anon_sym_DOT_DOT] = ACTIONS(2215), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -175059,7 +174775,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(1089), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -175075,135 +174791,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), }, - [789] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(5160), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2204), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(5629), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3520), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3080), - [sym_postfix_unary_expression] = STATE(3111), - [sym_prefix_unary_expression] = STATE(3111), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6154), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3080), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3111), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3080), - [sym_member_access_expression] = STATE(2484), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3111), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7530), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(3080), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3080), - [sym_typeof_expression] = STATE(3080), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2484), - [sym_literal] = STATE(3080), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), - [sym_preproc_region] = STATE(789), - [sym_preproc_endregion] = STATE(789), - [sym_preproc_line] = STATE(789), - [sym_preproc_pragma] = STATE(789), - [sym_preproc_nullable] = STATE(789), - [sym_preproc_error] = STATE(789), - [sym_preproc_warning] = STATE(789), - [sym_preproc_define] = STATE(789), - [sym_preproc_undef] = STATE(789), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [788] = { + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(5881), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2386), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(2279), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(4195), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3132), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3102), + [sym_postfix_unary_expression] = STATE(3079), + [sym_prefix_unary_expression] = STATE(3079), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6158), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3102), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3079), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3102), + [sym_member_access_expression] = STATE(2472), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3079), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7650), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(3102), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3102), + [sym_typeof_expression] = STATE(3102), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2472), + [sym_literal] = STATE(3102), + [sym_character_literal] = STATE(3037), + [sym_string_literal] = STATE(3037), + [sym_raw_string_literal] = STATE(3037), + [sym_boolean_literal] = STATE(3037), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), + [sym_preproc_region] = STATE(788), + [sym_preproc_endregion] = STATE(788), + [sym_preproc_line] = STATE(788), + [sym_preproc_pragma] = STATE(788), + [sym_preproc_nullable] = STATE(788), + [sym_preproc_error] = STATE(788), + [sym_preproc_warning] = STATE(788), + [sym_preproc_define] = STATE(788), + [sym_preproc_undef] = STATE(788), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1481), - [anon_sym_LPAREN] = ACTIONS(43), - [anon_sym_ref] = ACTIONS(661), - [anon_sym_LBRACE] = ACTIONS(1487), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1479), + [anon_sym_LPAREN] = ACTIONS(2185), + [anon_sym_ref] = ACTIONS(2187), + [anon_sym_LBRACE] = ACTIONS(1481), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1061), + [anon_sym_new] = ACTIONS(1899), + [anon_sym_readonly] = ACTIONS(2767), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = 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(1585), - [anon_sym_DASH] = ACTIONS(1585), - [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(1587), - [anon_sym_AMP] = ACTIONS(1587), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(2191), + [anon_sym_TILDE] = ACTIONS(2191), + [anon_sym_PLUS_PLUS] = ACTIONS(2191), + [anon_sym_DASH_DASH] = ACTIONS(2191), + [anon_sym_true] = ACTIONS(1257), + [anon_sym_false] = ACTIONS(1257), + [anon_sym_PLUS] = ACTIONS(2189), + [anon_sym_DASH] = ACTIONS(2189), + [anon_sym_STAR] = ACTIONS(1905), + [anon_sym_CARET] = ACTIONS(2191), + [anon_sym_AMP] = ACTIONS(2191), [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(1067), + [sym_predefined_type] = ACTIONS(1265), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1589), + [anon_sym_default] = ACTIONS(1267), + [anon_sym_throw] = ACTIONS(2193), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1591), - [anon_sym_DOT_DOT] = ACTIONS(123), + [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), @@ -175217,19 +174934,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(129), - [anon_sym_typeof] = ACTIONS(131), + [anon_sym_sizeof] = ACTIONS(1277), + [anon_sym_typeof] = ACTIONS(1279), [anon_sym___makeref] = ACTIONS(133), [anon_sym___reftype] = ACTIONS(135), [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1089), - [aux_sym_preproc_if_token3] = ACTIONS(2919), + [sym_null_literal] = ACTIONS(1287), + [anon_sym_SQUOTE] = ACTIONS(1289), + [sym_integer_literal] = ACTIONS(1287), + [sym_real_literal] = ACTIONS(1291), + [anon_sym_DQUOTE] = ACTIONS(1293), + [sym_verbatim_string_literal] = ACTIONS(1291), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -175240,90 +174956,260 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(151), - [sym_interpolation_verbatim_start] = ACTIONS(153), - [sym_interpolation_raw_start] = ACTIONS(155), - [sym_raw_string_start] = ACTIONS(157), + [sym_interpolation_regular_start] = ACTIONS(1297), + [sym_interpolation_verbatim_start] = ACTIONS(1299), + [sym_interpolation_raw_start] = ACTIONS(1301), + [sym_raw_string_start] = ACTIONS(1303), + }, + [789] = { + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(3182), + [sym__name] = STATE(5888), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2286), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2262), + [sym_type] = STATE(2279), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(4644), + [sym_non_lvalue_expression] = STATE(4580), + [sym_lvalue_expression] = STATE(3373), + [sym__expression_statement_expression] = STATE(4573), + [sym_assignment_expression] = STATE(4581), + [sym_binary_expression] = STATE(4573), + [sym_postfix_unary_expression] = STATE(4581), + [sym_prefix_unary_expression] = STATE(4581), + [sym__pointer_indirection_expression] = STATE(3144), + [sym_query_expression] = STATE(4573), + [sym_from_clause] = STATE(6133), + [sym_conditional_expression] = STATE(4573), + [sym_conditional_access_expression] = STATE(4573), + [sym_as_expression] = STATE(4573), + [sym_is_expression] = STATE(4573), + [sym_is_pattern_expression] = STATE(4573), + [sym_cast_expression] = STATE(4573), + [sym_checked_expression] = STATE(4573), + [sym_invocation_expression] = STATE(4581), + [sym_switch_expression] = STATE(4573), + [sym_await_expression] = STATE(4581), + [sym_throw_expression] = STATE(4573), + [sym_element_access_expression] = STATE(3144), + [sym_interpolated_string_expression] = STATE(4573), + [sym_member_access_expression] = STATE(3144), + [sym_object_creation_expression] = STATE(4581), + [sym_parenthesized_expression] = STATE(4581), + [sym__parenthesized_lvalue_expression] = STATE(3144), + [sym_lambda_expression] = STATE(4573), + [sym__lambda_expression_init] = STATE(7614), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(4573), + [sym_anonymous_method_expression] = STATE(4573), + [sym_anonymous_object_creation_expression] = STATE(4573), + [sym_implicit_array_creation_expression] = STATE(4573), + [sym_implicit_object_creation_expression] = STATE(4573), + [sym_implicit_stackalloc_expression] = STATE(4573), + [sym_initializer_expression] = STATE(4573), + [sym_default_expression] = STATE(4573), + [sym_with_expression] = STATE(4573), + [sym_sizeof_expression] = STATE(4573), + [sym_typeof_expression] = STATE(4573), + [sym_makeref_expression] = STATE(4573), + [sym_ref_expression] = STATE(4573), + [sym_reftype_expression] = STATE(4573), + [sym_refvalue_expression] = STATE(4573), + [sym_stackalloc_expression] = STATE(4573), + [sym_range_expression] = STATE(4573), + [sym_tuple_expression] = STATE(3144), + [sym_literal] = STATE(4573), + [sym_character_literal] = STATE(4575), + [sym_string_literal] = STATE(4575), + [sym_raw_string_literal] = STATE(4575), + [sym_boolean_literal] = STATE(4575), + [sym_identifier] = STATE(2237), + [sym__reserved_identifier] = STATE(2229), + [sym_preproc_if_in_expression] = STATE(4573), + [sym_preproc_if_in_attribute_list] = STATE(5583), + [sym_preproc_region] = STATE(789), + [sym_preproc_endregion] = STATE(789), + [sym_preproc_line] = STATE(789), + [sym_preproc_pragma] = STATE(789), + [sym_preproc_nullable] = STATE(789), + [sym_preproc_error] = STATE(789), + [sym_preproc_warning] = STATE(789), + [sym_preproc_define] = STATE(789), + [sym_preproc_undef] = STATE(789), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3501), + [sym__identifier_token] = ACTIONS(1385), + [anon_sym_alias] = ACTIONS(1387), + [anon_sym_global] = ACTIONS(1387), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1389), + [anon_sym_LPAREN] = ACTIONS(1565), + [anon_sym_ref] = ACTIONS(1567), + [anon_sym_LBRACE] = ACTIONS(1395), + [anon_sym_delegate] = ACTIONS(1397), + [anon_sym_async] = ACTIONS(1045), + [anon_sym_file] = ACTIONS(1387), + [anon_sym_new] = ACTIONS(1399), + [anon_sym_readonly] = ACTIONS(2767), + [anon_sym_where] = ACTIONS(1387), + [anon_sym_notnull] = ACTIONS(1387), + [anon_sym_unmanaged] = ACTIONS(1387), + [anon_sym_checked] = ACTIONS(1401), + [anon_sym_BANG] = ACTIONS(1571), + [anon_sym_TILDE] = ACTIONS(1571), + [anon_sym_PLUS_PLUS] = ACTIONS(1571), + [anon_sym_DASH_DASH] = ACTIONS(1571), + [anon_sym_true] = ACTIONS(1407), + [anon_sym_false] = ACTIONS(1407), + [anon_sym_PLUS] = ACTIONS(1569), + [anon_sym_DASH] = ACTIONS(1569), + [anon_sym_STAR] = ACTIONS(1409), + [anon_sym_CARET] = ACTIONS(1571), + [anon_sym_AMP] = ACTIONS(1571), + [anon_sym_this] = ACTIONS(1411), + [anon_sym_scoped] = ACTIONS(1413), + [anon_sym_base] = ACTIONS(1415), + [anon_sym_var] = ACTIONS(1417), + [sym_predefined_type] = ACTIONS(1419), + [anon_sym_unchecked] = ACTIONS(1401), + [anon_sym_yield] = ACTIONS(1387), + [anon_sym_default] = ACTIONS(1421), + [anon_sym_throw] = ACTIONS(1573), + [anon_sym_when] = ACTIONS(1387), + [anon_sym_await] = ACTIONS(1575), + [anon_sym_DOT_DOT] = ACTIONS(1577), + [anon_sym_from] = ACTIONS(1429), + [anon_sym_into] = ACTIONS(1387), + [anon_sym_join] = ACTIONS(1387), + [anon_sym_on] = ACTIONS(1387), + [anon_sym_equals] = ACTIONS(1387), + [anon_sym_let] = ACTIONS(1387), + [anon_sym_orderby] = ACTIONS(1387), + [anon_sym_ascending] = ACTIONS(1387), + [anon_sym_descending] = ACTIONS(1387), + [anon_sym_group] = ACTIONS(1387), + [anon_sym_by] = ACTIONS(1387), + [anon_sym_select] = ACTIONS(1387), + [anon_sym_stackalloc] = ACTIONS(1431), + [anon_sym_sizeof] = ACTIONS(1433), + [anon_sym_typeof] = ACTIONS(1435), + [anon_sym___makeref] = ACTIONS(1437), + [anon_sym___reftype] = ACTIONS(1439), + [anon_sym___refvalue] = ACTIONS(1441), + [sym_null_literal] = ACTIONS(1443), + [anon_sym_SQUOTE] = ACTIONS(1445), + [sym_integer_literal] = ACTIONS(1443), + [sym_real_literal] = ACTIONS(1447), + [anon_sym_DQUOTE] = ACTIONS(1449), + [sym_verbatim_string_literal] = ACTIONS(1447), + [aux_sym_preproc_if_token1] = ACTIONS(1451), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + [sym_interpolation_regular_start] = ACTIONS(1453), + [sym_interpolation_verbatim_start] = ACTIONS(1455), + [sym_interpolation_raw_start] = ACTIONS(1457), + [sym_raw_string_start] = ACTIONS(1459), }, [790] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(5160), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2204), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(2291), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(4871), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3520), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3080), - [sym_postfix_unary_expression] = STATE(3111), - [sym_prefix_unary_expression] = STATE(3111), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2816), + [sym__name] = STATE(5873), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2196), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(2279), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(5002), + [sym_non_lvalue_expression] = STATE(3495), + [sym_lvalue_expression] = STATE(3514), + [sym__expression_statement_expression] = STATE(3462), + [sym_assignment_expression] = STATE(3497), + [sym_binary_expression] = STATE(3462), + [sym_postfix_unary_expression] = STATE(3497), + [sym_prefix_unary_expression] = STATE(3497), + [sym__pointer_indirection_expression] = STATE(2815), + [sym_query_expression] = STATE(3462), [sym_from_clause] = STATE(6154), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3080), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3111), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3080), - [sym_member_access_expression] = STATE(2484), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3111), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7530), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(3080), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3080), - [sym_typeof_expression] = STATE(3080), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2484), - [sym_literal] = STATE(3080), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_conditional_expression] = STATE(3462), + [sym_conditional_access_expression] = STATE(3462), + [sym_as_expression] = STATE(3462), + [sym_is_expression] = STATE(3462), + [sym_is_pattern_expression] = STATE(3462), + [sym_cast_expression] = STATE(3462), + [sym_checked_expression] = STATE(3462), + [sym_invocation_expression] = STATE(3497), + [sym_switch_expression] = STATE(3462), + [sym_await_expression] = STATE(3497), + [sym_throw_expression] = STATE(3462), + [sym_element_access_expression] = STATE(2815), + [sym_interpolated_string_expression] = STATE(3462), + [sym_member_access_expression] = STATE(2815), + [sym_object_creation_expression] = STATE(3497), + [sym_parenthesized_expression] = STATE(3497), + [sym__parenthesized_lvalue_expression] = STATE(2815), + [sym_lambda_expression] = STATE(3462), + [sym__lambda_expression_init] = STATE(7685), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3462), + [sym_anonymous_method_expression] = STATE(3462), + [sym_anonymous_object_creation_expression] = STATE(3462), + [sym_implicit_array_creation_expression] = STATE(3462), + [sym_implicit_object_creation_expression] = STATE(3462), + [sym_implicit_stackalloc_expression] = STATE(3462), + [sym_initializer_expression] = STATE(3462), + [sym_default_expression] = STATE(3462), + [sym_with_expression] = STATE(3462), + [sym_sizeof_expression] = STATE(3462), + [sym_typeof_expression] = STATE(3462), + [sym_makeref_expression] = STATE(3462), + [sym_ref_expression] = STATE(3462), + [sym_reftype_expression] = STATE(3462), + [sym_refvalue_expression] = STATE(3462), + [sym_stackalloc_expression] = STATE(3462), + [sym_range_expression] = STATE(3462), + [sym_tuple_expression] = STATE(2815), + [sym_literal] = STATE(3462), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2261), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3462), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(790), [sym_preproc_endregion] = STATE(790), [sym_preproc_line] = STATE(790), @@ -175333,48 +175219,48 @@ 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(3067), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), [aux_sym__lambda_expression_init_repeat1] = STATE(3367), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1481), - [anon_sym_LPAREN] = ACTIONS(43), - [anon_sym_ref] = ACTIONS(661), - [anon_sym_LBRACE] = ACTIONS(1487), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1305), + [anon_sym_LPAREN] = ACTIONS(1613), + [anon_sym_ref] = ACTIONS(1615), + [anon_sym_LBRACE] = ACTIONS(1311), + [anon_sym_delegate] = ACTIONS(1313), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1061), - [anon_sym_readonly] = ACTIONS(2749), + [anon_sym_new] = ACTIONS(1315), + [anon_sym_readonly] = ACTIONS(2767), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = 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_checked] = ACTIONS(1317), + [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(1585), - [anon_sym_DASH] = ACTIONS(1585), - [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(1587), - [anon_sym_AMP] = ACTIONS(1587), - [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(1321), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), + [anon_sym_base] = ACTIONS(1323), [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1067), + [anon_sym_unchecked] = ACTIONS(1317), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1589), + [anon_sym_throw] = ACTIONS(1623), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1591), - [anon_sym_DOT_DOT] = ACTIONS(123), + [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), @@ -175387,19 +175273,19 @@ static const uint16_t ts_parse_table[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(1331), [anon_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(1333), + [anon_sym___reftype] = ACTIONS(1335), + [anon_sym___refvalue] = ACTIONS(1337), [sym_null_literal] = ACTIONS(139), [anon_sym_SQUOTE] = ACTIONS(141), [sym_integer_literal] = ACTIONS(139), [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1089), + [aux_sym_preproc_if_token1] = ACTIONS(1339), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -175416,84 +175302,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [791] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(5160), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2204), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(5375), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3461), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3080), - [sym_postfix_unary_expression] = STATE(3111), - [sym_prefix_unary_expression] = STATE(3111), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6154), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3080), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3111), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3080), - [sym_member_access_expression] = STATE(2484), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3111), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7547), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(3080), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3080), - [sym_typeof_expression] = STATE(3080), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2484), - [sym_literal] = STATE(3080), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(5152), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2196), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(5618), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3356), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3102), + [sym_postfix_unary_expression] = STATE(3079), + [sym_prefix_unary_expression] = STATE(3079), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6134), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3102), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3079), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3102), + [sym_member_access_expression] = STATE(2472), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3079), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7627), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(3102), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3102), + [sym_typeof_expression] = STATE(3102), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2472), + [sym_literal] = STATE(3102), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(791), [sym_preproc_endregion] = STATE(791), [sym_preproc_line] = STATE(791), @@ -175503,25 +175389,25 @@ 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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), - [anon_sym_SEMI] = ACTIONS(2063), + [anon_sym_SEMI] = ACTIONS(2919), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1481), - [anon_sym_LPAREN] = ACTIONS(1497), - [anon_sym_ref] = ACTIONS(1499), - [anon_sym_LBRACE] = ACTIONS(1487), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1479), + [anon_sym_LPAREN] = ACTIONS(1511), + [anon_sym_ref] = ACTIONS(1513), + [anon_sym_LBRACE] = ACTIONS(1481), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1501), + [anon_sym_new] = ACTIONS(1515), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1067), + [anon_sym_checked] = ACTIONS(1065), [anon_sym_BANG] = ACTIONS(75), [anon_sym_TILDE] = ACTIONS(75), [anon_sym_PLUS_PLUS] = ACTIONS(75), @@ -175538,13 +175424,13 @@ 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_unchecked] = ACTIONS(1067), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1503), + [anon_sym_throw] = ACTIONS(1517), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1505), - [anon_sym_DOT_DOT] = ACTIONS(1507), + [anon_sym_await] = ACTIONS(1519), + [anon_sym_DOT_DOT] = ACTIONS(1521), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -175569,7 +175455,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(1089), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -175586,84 +175472,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [792] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(5160), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2204), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(5482), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3461), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3080), - [sym_postfix_unary_expression] = STATE(3111), - [sym_prefix_unary_expression] = STATE(3111), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6154), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3080), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3111), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3080), - [sym_member_access_expression] = STATE(2484), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3111), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7547), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(3080), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3080), - [sym_typeof_expression] = STATE(3080), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2484), - [sym_literal] = STATE(3080), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_block] = STATE(2984), + [sym_bracketed_argument_list] = STATE(2416), + [sym__name] = STATE(5867), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2379), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(5117), + [sym_non_lvalue_expression] = STATE(3040), + [sym_lvalue_expression] = STATE(3617), + [sym__expression_statement_expression] = STATE(3035), + [sym_assignment_expression] = STATE(3043), + [sym_binary_expression] = STATE(3035), + [sym_postfix_unary_expression] = STATE(3043), + [sym_prefix_unary_expression] = STATE(3043), + [sym__pointer_indirection_expression] = STATE(2415), + [sym_query_expression] = STATE(3035), + [sym_from_clause] = STATE(6161), + [sym_conditional_expression] = STATE(3035), + [sym_conditional_access_expression] = STATE(3035), + [sym_as_expression] = STATE(3035), + [sym_is_expression] = STATE(3035), + [sym_is_pattern_expression] = STATE(3035), + [sym_cast_expression] = STATE(3035), + [sym_checked_expression] = STATE(3035), + [sym_invocation_expression] = STATE(3043), + [sym_switch_expression] = STATE(3035), + [sym_await_expression] = STATE(3043), + [sym_throw_expression] = STATE(3035), + [sym_element_access_expression] = STATE(2415), + [sym_interpolated_string_expression] = STATE(3035), + [sym_member_access_expression] = STATE(2415), + [sym_object_creation_expression] = STATE(3043), + [sym_parenthesized_expression] = STATE(3043), + [sym__parenthesized_lvalue_expression] = STATE(2415), + [sym_lambda_expression] = STATE(3035), + [sym__lambda_expression_init] = STATE(7706), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3035), + [sym_anonymous_method_expression] = STATE(3035), + [sym_anonymous_object_creation_expression] = STATE(3035), + [sym_implicit_array_creation_expression] = STATE(3035), + [sym_implicit_object_creation_expression] = STATE(3035), + [sym_implicit_stackalloc_expression] = STATE(3035), + [sym_initializer_expression] = STATE(3035), + [sym_default_expression] = STATE(3035), + [sym_with_expression] = STATE(3035), + [sym_sizeof_expression] = STATE(3035), + [sym_typeof_expression] = STATE(3035), + [sym_makeref_expression] = STATE(3035), + [sym_ref_expression] = STATE(3035), + [sym_reftype_expression] = STATE(3035), + [sym_refvalue_expression] = STATE(3035), + [sym_stackalloc_expression] = STATE(3035), + [sym_range_expression] = STATE(3035), + [sym_tuple_expression] = STATE(2415), + [sym_literal] = STATE(3035), + [sym_character_literal] = STATE(3037), + [sym_string_literal] = STATE(3037), + [sym_raw_string_literal] = STATE(3037), + [sym_boolean_literal] = STATE(3037), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3035), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(792), [sym_preproc_endregion] = STATE(792), [sym_preproc_line] = STATE(792), @@ -175673,48 +175560,47 @@ 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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3455), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), - [anon_sym_SEMI] = ACTIONS(2921), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1481), - [anon_sym_LPAREN] = ACTIONS(1497), - [anon_sym_ref] = ACTIONS(1499), - [anon_sym_LBRACE] = ACTIONS(1487), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1239), + [anon_sym_LPAREN] = ACTIONS(2159), + [anon_sym_ref] = ACTIONS(2161), + [anon_sym_LBRACE] = ACTIONS(2839), + [anon_sym_delegate] = ACTIONS(1247), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1501), + [anon_sym_new] = ACTIONS(2163), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = 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(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(1251), + [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(1257), + [anon_sym_false] = ACTIONS(1257), + [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(1261), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), + [anon_sym_base] = ACTIONS(1263), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1067), + [sym_predefined_type] = ACTIONS(1265), + [anon_sym_unchecked] = ACTIONS(1251), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1503), + [anon_sym_default] = ACTIONS(1267), + [anon_sym_throw] = ACTIONS(2171), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1505), - [anon_sym_DOT_DOT] = ACTIONS(1507), + [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), @@ -175727,19 +175613,19 @@ static const uint16_t ts_parse_table[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(1089), + [anon_sym_stackalloc] = ACTIONS(1275), + [anon_sym_sizeof] = ACTIONS(1277), + [anon_sym_typeof] = ACTIONS(1279), + [anon_sym___makeref] = ACTIONS(1281), + [anon_sym___reftype] = ACTIONS(1283), + [anon_sym___refvalue] = ACTIONS(1285), + [sym_null_literal] = ACTIONS(1287), + [anon_sym_SQUOTE] = ACTIONS(1289), + [sym_integer_literal] = ACTIONS(1287), + [sym_real_literal] = ACTIONS(1291), + [anon_sym_DQUOTE] = ACTIONS(1293), + [sym_verbatim_string_literal] = ACTIONS(1291), + [aux_sym_preproc_if_token1] = ACTIONS(1295), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -175750,90 +175636,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(1297), + [sym_interpolation_verbatim_start] = ACTIONS(1299), + [sym_interpolation_raw_start] = ACTIONS(1301), + [sym_raw_string_start] = ACTIONS(1303), }, [793] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(5312), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2225), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(2291), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(4670), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3379), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3080), - [sym_postfix_unary_expression] = STATE(3111), - [sym_prefix_unary_expression] = STATE(3111), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6154), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3080), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3111), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3080), - [sym_member_access_expression] = STATE(2484), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3111), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7575), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(3080), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3080), - [sym_typeof_expression] = STATE(3080), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2484), - [sym_literal] = STATE(3080), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_block] = STATE(3279), + [sym_bracketed_argument_list] = STATE(2603), + [sym__name] = STATE(5865), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2344), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(4415), + [sym_non_lvalue_expression] = STATE(3220), + [sym_lvalue_expression] = STATE(3234), + [sym__expression_statement_expression] = STATE(3236), + [sym_assignment_expression] = STATE(3221), + [sym_binary_expression] = STATE(3236), + [sym_postfix_unary_expression] = STATE(3221), + [sym_prefix_unary_expression] = STATE(3221), + [sym__pointer_indirection_expression] = STATE(2602), + [sym_query_expression] = STATE(3236), + [sym_from_clause] = STATE(6151), + [sym_conditional_expression] = STATE(3236), + [sym_conditional_access_expression] = STATE(3236), + [sym_as_expression] = STATE(3236), + [sym_is_expression] = STATE(3236), + [sym_is_pattern_expression] = STATE(3236), + [sym_cast_expression] = STATE(3236), + [sym_checked_expression] = STATE(3236), + [sym_invocation_expression] = STATE(3221), + [sym_switch_expression] = STATE(3236), + [sym_await_expression] = STATE(3221), + [sym_throw_expression] = STATE(3236), + [sym_element_access_expression] = STATE(2602), + [sym_interpolated_string_expression] = STATE(3236), + [sym_member_access_expression] = STATE(2602), + [sym_object_creation_expression] = STATE(3221), + [sym_parenthesized_expression] = STATE(3221), + [sym__parenthesized_lvalue_expression] = STATE(2602), + [sym_lambda_expression] = STATE(3236), + [sym__lambda_expression_init] = STATE(7276), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3236), + [sym_anonymous_method_expression] = STATE(3236), + [sym_anonymous_object_creation_expression] = STATE(3236), + [sym_implicit_array_creation_expression] = STATE(3236), + [sym_implicit_object_creation_expression] = STATE(3236), + [sym_implicit_stackalloc_expression] = STATE(3236), + [sym_initializer_expression] = STATE(3236), + [sym_default_expression] = STATE(3236), + [sym_with_expression] = STATE(3236), + [sym_sizeof_expression] = STATE(3236), + [sym_typeof_expression] = STATE(3236), + [sym_makeref_expression] = STATE(3236), + [sym_ref_expression] = STATE(3236), + [sym_reftype_expression] = STATE(3236), + [sym_refvalue_expression] = STATE(3236), + [sym_stackalloc_expression] = STATE(3236), + [sym_range_expression] = STATE(3236), + [sym_tuple_expression] = STATE(2602), + [sym_literal] = STATE(3236), + [sym_character_literal] = STATE(3272), + [sym_string_literal] = STATE(3272), + [sym_raw_string_literal] = STATE(3272), + [sym_boolean_literal] = STATE(3272), + [sym_identifier] = STATE(2261), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3236), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(793), [sym_preproc_endregion] = STATE(793), [sym_preproc_line] = STATE(793), @@ -175843,48 +175730,47 @@ 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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3379), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1481), - [anon_sym_LPAREN] = ACTIONS(895), - [anon_sym_ref] = ACTIONS(2753), - [anon_sym_LBRACE] = ACTIONS(1487), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1149), + [anon_sym_LPAREN] = ACTIONS(1597), + [anon_sym_ref] = ACTIONS(1599), + [anon_sym_LBRACE] = ACTIONS(2843), + [anon_sym_delegate] = ACTIONS(1157), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1061), - [anon_sym_readonly] = ACTIONS(2759), + [anon_sym_new] = ACTIONS(1535), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1067), - [anon_sym_BANG] = ACTIONS(1495), - [anon_sym_TILDE] = ACTIONS(1495), - [anon_sym_PLUS_PLUS] = ACTIONS(1495), - [anon_sym_DASH_DASH] = ACTIONS(1495), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1493), - [anon_sym_DASH] = ACTIONS(1493), - [anon_sym_STAR] = ACTIONS(905), - [anon_sym_CARET] = ACTIONS(1495), - [anon_sym_AMP] = ACTIONS(1495), - [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(1075), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(2755), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1067), + [anon_sym_checked] = ACTIONS(1163), + [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(1169), + [anon_sym_false] = ACTIONS(1169), + [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(1173), + [anon_sym_scoped] = ACTIONS(85), + [anon_sym_base] = ACTIONS(1175), + [anon_sym_var] = ACTIONS(89), + [sym_predefined_type] = ACTIONS(1177), + [anon_sym_unchecked] = ACTIONS(1163), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1079), + [anon_sym_default] = ACTIONS(1179), + [anon_sym_throw] = ACTIONS(1607), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1081), - [anon_sym_DOT_DOT] = ACTIONS(911), + [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), @@ -175897,19 +175783,19 @@ static const uint16_t ts_parse_table[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(1089), + [anon_sym_stackalloc] = ACTIONS(1187), + [anon_sym_sizeof] = ACTIONS(1189), + [anon_sym_typeof] = ACTIONS(1191), + [anon_sym___makeref] = ACTIONS(1193), + [anon_sym___reftype] = ACTIONS(1195), + [anon_sym___refvalue] = ACTIONS(1197), + [sym_null_literal] = ACTIONS(1199), + [anon_sym_SQUOTE] = ACTIONS(1201), + [sym_integer_literal] = ACTIONS(1199), + [sym_real_literal] = ACTIONS(1203), + [anon_sym_DQUOTE] = ACTIONS(1205), + [sym_verbatim_string_literal] = ACTIONS(1203), + [aux_sym_preproc_if_token1] = ACTIONS(1207), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -175920,91 +175806,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(1209), + [sym_interpolation_verbatim_start] = ACTIONS(1211), + [sym_interpolation_raw_start] = ACTIONS(1213), + [sym_raw_string_start] = ACTIONS(1215), }, [794] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_block] = STATE(3084), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(5160), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2204), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(5656), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3687), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3080), - [sym_postfix_unary_expression] = STATE(3111), - [sym_prefix_unary_expression] = STATE(3111), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6164), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3080), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3111), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3080), - [sym_member_access_expression] = STATE(2484), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3111), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7701), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(3080), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3080), - [sym_typeof_expression] = STATE(3080), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2484), - [sym_literal] = STATE(3080), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_block] = STATE(3058), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(5895), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2376), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(5582), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3643), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3102), + [sym_postfix_unary_expression] = STATE(3079), + [sym_prefix_unary_expression] = STATE(3079), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6148), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3102), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3079), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3102), + [sym_member_access_expression] = STATE(2472), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3079), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7304), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(3102), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3102), + [sym_typeof_expression] = STATE(3102), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2472), + [sym_literal] = STATE(3102), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(794), [sym_preproc_endregion] = STATE(794), [sym_preproc_line] = STATE(794), @@ -176014,47 +175900,47 @@ 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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1481), - [anon_sym_LPAREN] = ACTIONS(2093), - [anon_sym_ref] = ACTIONS(2095), - [anon_sym_LBRACE] = ACTIONS(2847), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1479), + [anon_sym_LPAREN] = ACTIONS(2199), + [anon_sym_ref] = ACTIONS(2201), + [anon_sym_LBRACE] = ACTIONS(2855), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1061), + [anon_sym_new] = ACTIONS(2203), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1067), - [anon_sym_BANG] = ACTIONS(2099), - [anon_sym_TILDE] = ACTIONS(2099), - [anon_sym_PLUS_PLUS] = ACTIONS(2099), - [anon_sym_DASH_DASH] = ACTIONS(2099), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(2207), + [anon_sym_TILDE] = ACTIONS(2207), + [anon_sym_PLUS_PLUS] = ACTIONS(2207), + [anon_sym_DASH_DASH] = ACTIONS(2207), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(2097), - [anon_sym_DASH] = ACTIONS(2097), - [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(2099), - [anon_sym_AMP] = ACTIONS(2099), + [anon_sym_PLUS] = ACTIONS(2205), + [anon_sym_DASH] = ACTIONS(2205), + [anon_sym_STAR] = ACTIONS(2209), + [anon_sym_CARET] = ACTIONS(2207), + [anon_sym_AMP] = ACTIONS(2207), [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(1067), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(2101), + [anon_sym_throw] = ACTIONS(2211), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2103), - [anon_sym_DOT_DOT] = ACTIONS(2105), + [anon_sym_await] = ACTIONS(2213), + [anon_sym_DOT_DOT] = ACTIONS(2215), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -176079,7 +175965,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(2107), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -176096,85 +175982,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [795] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_block] = STATE(3014), - [sym_bracketed_argument_list] = STATE(2420), - [sym__name] = STATE(5887), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2197), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(5169), - [sym_non_lvalue_expression] = STATE(3066), - [sym_lvalue_expression] = STATE(3637), - [sym__expression_statement_expression] = STATE(3006), - [sym_assignment_expression] = STATE(3020), - [sym_binary_expression] = STATE(3006), - [sym_postfix_unary_expression] = STATE(3020), - [sym_prefix_unary_expression] = STATE(3020), - [sym__pointer_indirection_expression] = STATE(2423), - [sym_query_expression] = STATE(3006), - [sym_from_clause] = STATE(6148), - [sym_conditional_expression] = STATE(3006), - [sym_conditional_access_expression] = STATE(3006), - [sym_as_expression] = STATE(3006), - [sym_is_expression] = STATE(3006), - [sym_is_pattern_expression] = STATE(3006), - [sym_cast_expression] = STATE(3006), - [sym_checked_expression] = STATE(3006), - [sym_invocation_expression] = STATE(3020), - [sym_switch_expression] = STATE(3006), - [sym_await_expression] = STATE(3020), - [sym_throw_expression] = STATE(3006), - [sym_element_access_expression] = STATE(2423), - [sym_interpolated_string_expression] = STATE(3006), - [sym_member_access_expression] = STATE(2423), - [sym_object_creation_expression] = STATE(3020), - [sym_parenthesized_expression] = STATE(3020), - [sym__parenthesized_lvalue_expression] = STATE(2423), - [sym_lambda_expression] = STATE(3006), - [sym__lambda_expression_init] = STATE(7507), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3006), - [sym_anonymous_method_expression] = STATE(3006), - [sym_anonymous_object_creation_expression] = STATE(3006), - [sym_implicit_array_creation_expression] = STATE(3006), - [sym_implicit_object_creation_expression] = STATE(3006), - [sym_implicit_stackalloc_expression] = STATE(3006), - [sym_initializer_expression] = STATE(3006), - [sym_default_expression] = STATE(3006), - [sym_with_expression] = STATE(3006), - [sym_sizeof_expression] = STATE(3006), - [sym_typeof_expression] = STATE(3006), - [sym_makeref_expression] = STATE(3006), - [sym_ref_expression] = STATE(3006), - [sym_reftype_expression] = STATE(3006), - [sym_refvalue_expression] = STATE(3006), - [sym_stackalloc_expression] = STATE(3006), - [sym_range_expression] = STATE(3006), - [sym_tuple_expression] = STATE(2423), - [sym_literal] = STATE(3006), - [sym_character_literal] = STATE(3011), - [sym_string_literal] = STATE(3011), - [sym_raw_string_literal] = STATE(3011), - [sym_boolean_literal] = STATE(3011), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3006), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(5873), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2238), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(4954), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3468), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3102), + [sym_postfix_unary_expression] = STATE(3079), + [sym_prefix_unary_expression] = STATE(3079), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6134), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3102), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3079), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3102), + [sym_member_access_expression] = STATE(2472), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3079), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7309), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(3102), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3102), + [sym_typeof_expression] = STATE(3102), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2472), + [sym_literal] = STATE(3102), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(795), [sym_preproc_endregion] = STATE(795), [sym_preproc_line] = STATE(795), @@ -176184,47 +176069,48 @@ 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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3440), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1241), - [anon_sym_LPAREN] = ACTIONS(2113), - [anon_sym_ref] = ACTIONS(2115), - [anon_sym_LBRACE] = ACTIONS(2845), - [anon_sym_delegate] = ACTIONS(1249), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1479), + [anon_sym_LPAREN] = ACTIONS(659), + [anon_sym_ref] = ACTIONS(663), + [anon_sym_LBRACE] = ACTIONS(1481), + [anon_sym_RBRACE] = ACTIONS(2921), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1251), + [anon_sym_new] = ACTIONS(1059), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1253), - [anon_sym_BANG] = ACTIONS(2119), - [anon_sym_TILDE] = ACTIONS(2119), - [anon_sym_PLUS_PLUS] = ACTIONS(2119), - [anon_sym_DASH_DASH] = ACTIONS(2119), - [anon_sym_true] = ACTIONS(1259), - [anon_sym_false] = ACTIONS(1259), - [anon_sym_PLUS] = ACTIONS(2117), - [anon_sym_DASH] = ACTIONS(2117), - [anon_sym_STAR] = ACTIONS(1261), - [anon_sym_CARET] = ACTIONS(2119), - [anon_sym_AMP] = ACTIONS(2119), - [anon_sym_this] = ACTIONS(1263), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(1485), + [anon_sym_TILDE] = ACTIONS(1485), + [anon_sym_PLUS_PLUS] = ACTIONS(1485), + [anon_sym_DASH_DASH] = ACTIONS(1485), + [anon_sym_true] = ACTIONS(77), + [anon_sym_false] = ACTIONS(77), + [anon_sym_PLUS] = ACTIONS(1483), + [anon_sym_DASH] = ACTIONS(1483), + [anon_sym_STAR] = ACTIONS(683), + [anon_sym_CARET] = ACTIONS(1485), + [anon_sym_AMP] = ACTIONS(1485), + [anon_sym_this] = ACTIONS(83), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1265), + [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1267), - [anon_sym_unchecked] = ACTIONS(1253), + [sym_predefined_type] = ACTIONS(91), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1269), - [anon_sym_throw] = ACTIONS(2121), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(1077), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2123), - [anon_sym_DOT_DOT] = ACTIONS(2125), + [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), @@ -176237,19 +176123,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1277), - [anon_sym_sizeof] = ACTIONS(1279), - [anon_sym_typeof] = ACTIONS(1281), - [anon_sym___makeref] = ACTIONS(1283), - [anon_sym___reftype] = ACTIONS(1285), - [anon_sym___refvalue] = ACTIONS(1287), - [sym_null_literal] = ACTIONS(1289), - [anon_sym_SQUOTE] = ACTIONS(1291), - [sym_integer_literal] = ACTIONS(1289), - [sym_real_literal] = ACTIONS(1293), - [anon_sym_DQUOTE] = ACTIONS(1295), - [sym_verbatim_string_literal] = ACTIONS(1293), - [aux_sym_preproc_if_token1] = ACTIONS(2127), + [anon_sym_stackalloc] = ACTIONS(127), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_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), @@ -176260,90 +176146,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1299), - [sym_interpolation_verbatim_start] = ACTIONS(1301), - [sym_interpolation_raw_start] = ACTIONS(1303), - [sym_raw_string_start] = ACTIONS(1305), + [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(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2420), - [sym__name] = STATE(5887), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2197), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(2291), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(5305), - [sym_non_lvalue_expression] = STATE(3066), - [sym_lvalue_expression] = STATE(3637), - [sym__expression_statement_expression] = STATE(3006), - [sym_assignment_expression] = STATE(3020), - [sym_binary_expression] = STATE(3006), - [sym_postfix_unary_expression] = STATE(3020), - [sym_prefix_unary_expression] = STATE(3020), - [sym__pointer_indirection_expression] = STATE(2423), - [sym_query_expression] = STATE(3006), - [sym_from_clause] = STATE(6148), - [sym_conditional_expression] = STATE(3006), - [sym_conditional_access_expression] = STATE(3006), - [sym_as_expression] = STATE(3006), - [sym_is_expression] = STATE(3006), - [sym_is_pattern_expression] = STATE(3006), - [sym_cast_expression] = STATE(3006), - [sym_checked_expression] = STATE(3006), - [sym_invocation_expression] = STATE(3020), - [sym_switch_expression] = STATE(3006), - [sym_await_expression] = STATE(3020), - [sym_throw_expression] = STATE(3006), - [sym_element_access_expression] = STATE(2423), - [sym_interpolated_string_expression] = STATE(3006), - [sym_member_access_expression] = STATE(2423), - [sym_object_creation_expression] = STATE(3020), - [sym_parenthesized_expression] = STATE(3020), - [sym__parenthesized_lvalue_expression] = STATE(2423), - [sym_lambda_expression] = STATE(3006), - [sym__lambda_expression_init] = STATE(7507), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3006), - [sym_anonymous_method_expression] = STATE(3006), - [sym_anonymous_object_creation_expression] = STATE(3006), - [sym_implicit_array_creation_expression] = STATE(3006), - [sym_implicit_object_creation_expression] = STATE(3006), - [sym_implicit_stackalloc_expression] = STATE(3006), - [sym_initializer_expression] = STATE(3006), - [sym_default_expression] = STATE(3006), - [sym_with_expression] = STATE(3006), - [sym_sizeof_expression] = STATE(3006), - [sym_typeof_expression] = STATE(3006), - [sym_makeref_expression] = STATE(3006), - [sym_ref_expression] = STATE(3006), - [sym_reftype_expression] = STATE(3006), - [sym_refvalue_expression] = STATE(3006), - [sym_stackalloc_expression] = STATE(3006), - [sym_range_expression] = STATE(3006), - [sym_tuple_expression] = STATE(2423), - [sym_literal] = STATE(3006), - [sym_character_literal] = STATE(3011), - [sym_string_literal] = STATE(3011), - [sym_raw_string_literal] = STATE(3011), - [sym_boolean_literal] = STATE(3011), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3006), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2816), + [sym__name] = STATE(5879), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2238), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(2279), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(4335), + [sym_non_lvalue_expression] = STATE(3495), + [sym_lvalue_expression] = STATE(3197), + [sym__expression_statement_expression] = STATE(3462), + [sym_assignment_expression] = STATE(3497), + [sym_binary_expression] = STATE(3462), + [sym_postfix_unary_expression] = STATE(3497), + [sym_prefix_unary_expression] = STATE(3497), + [sym__pointer_indirection_expression] = STATE(2815), + [sym_query_expression] = STATE(3462), + [sym_from_clause] = STATE(6144), + [sym_conditional_expression] = STATE(3462), + [sym_conditional_access_expression] = STATE(3462), + [sym_as_expression] = STATE(3462), + [sym_is_expression] = STATE(3462), + [sym_is_pattern_expression] = STATE(3462), + [sym_cast_expression] = STATE(3462), + [sym_checked_expression] = STATE(3462), + [sym_invocation_expression] = STATE(3497), + [sym_switch_expression] = STATE(3462), + [sym_await_expression] = STATE(3497), + [sym_throw_expression] = STATE(3462), + [sym_element_access_expression] = STATE(2815), + [sym_interpolated_string_expression] = STATE(3462), + [sym_member_access_expression] = STATE(2815), + [sym_object_creation_expression] = STATE(3497), + [sym_parenthesized_expression] = STATE(3497), + [sym__parenthesized_lvalue_expression] = STATE(2815), + [sym_lambda_expression] = STATE(3462), + [sym__lambda_expression_init] = STATE(7615), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3462), + [sym_anonymous_method_expression] = STATE(3462), + [sym_anonymous_object_creation_expression] = STATE(3462), + [sym_implicit_array_creation_expression] = STATE(3462), + [sym_implicit_object_creation_expression] = STATE(3462), + [sym_implicit_stackalloc_expression] = STATE(3462), + [sym_initializer_expression] = STATE(3462), + [sym_default_expression] = STATE(3462), + [sym_with_expression] = STATE(3462), + [sym_sizeof_expression] = STATE(3462), + [sym_typeof_expression] = STATE(3462), + [sym_makeref_expression] = STATE(3462), + [sym_ref_expression] = STATE(3462), + [sym_reftype_expression] = STATE(3462), + [sym_refvalue_expression] = STATE(3462), + [sym_stackalloc_expression] = STATE(3462), + [sym_range_expression] = STATE(3462), + [sym_tuple_expression] = STATE(2815), + [sym_literal] = STATE(3462), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3462), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(796), [sym_preproc_endregion] = STATE(796), [sym_preproc_line] = STATE(796), @@ -176353,48 +176239,48 @@ 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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3440), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3367), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1241), - [anon_sym_LPAREN] = ACTIONS(2113), - [anon_sym_ref] = ACTIONS(2115), - [anon_sym_LBRACE] = ACTIONS(1247), - [anon_sym_delegate] = ACTIONS(1249), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1305), + [anon_sym_LPAREN] = ACTIONS(1357), + [anon_sym_ref] = ACTIONS(1359), + [anon_sym_LBRACE] = ACTIONS(1311), + [anon_sym_delegate] = ACTIONS(1313), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1251), - [anon_sym_readonly] = ACTIONS(2749), + [anon_sym_new] = ACTIONS(1315), + [anon_sym_readonly] = ACTIONS(2767), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1253), - [anon_sym_BANG] = ACTIONS(2119), - [anon_sym_TILDE] = ACTIONS(2119), - [anon_sym_PLUS_PLUS] = ACTIONS(2119), - [anon_sym_DASH_DASH] = ACTIONS(2119), - [anon_sym_true] = ACTIONS(1259), - [anon_sym_false] = ACTIONS(1259), - [anon_sym_PLUS] = ACTIONS(2117), - [anon_sym_DASH] = ACTIONS(2117), - [anon_sym_STAR] = ACTIONS(1261), - [anon_sym_CARET] = ACTIONS(2119), - [anon_sym_AMP] = ACTIONS(2119), - [anon_sym_this] = ACTIONS(1263), + [anon_sym_checked] = ACTIONS(1317), + [anon_sym_BANG] = ACTIONS(1101), + [anon_sym_TILDE] = ACTIONS(1101), + [anon_sym_PLUS_PLUS] = ACTIONS(1101), + [anon_sym_DASH_DASH] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(77), + [anon_sym_false] = ACTIONS(77), + [anon_sym_PLUS] = ACTIONS(1103), + [anon_sym_DASH] = ACTIONS(1103), + [anon_sym_STAR] = ACTIONS(1361), + [anon_sym_CARET] = ACTIONS(1101), + [anon_sym_AMP] = ACTIONS(1101), + [anon_sym_this] = ACTIONS(1321), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1265), + [anon_sym_base] = ACTIONS(1323), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1267), - [anon_sym_unchecked] = ACTIONS(1253), + [sym_predefined_type] = ACTIONS(91), + [anon_sym_unchecked] = ACTIONS(1317), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1269), - [anon_sym_throw] = ACTIONS(2121), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(1363), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2123), - [anon_sym_DOT_DOT] = ACTIONS(2125), + [anon_sym_await] = ACTIONS(1365), + [anon_sym_DOT_DOT] = ACTIONS(1367), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -176407,19 +176293,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1277), - [anon_sym_sizeof] = ACTIONS(1279), - [anon_sym_typeof] = ACTIONS(1281), - [anon_sym___makeref] = ACTIONS(1283), - [anon_sym___reftype] = ACTIONS(1285), - [anon_sym___refvalue] = ACTIONS(1287), - [sym_null_literal] = ACTIONS(1289), - [anon_sym_SQUOTE] = ACTIONS(1291), - [sym_integer_literal] = ACTIONS(1289), - [sym_real_literal] = ACTIONS(1293), - [anon_sym_DQUOTE] = ACTIONS(1295), - [sym_verbatim_string_literal] = ACTIONS(1293), - [aux_sym_preproc_if_token1] = ACTIONS(2127), + [anon_sym_stackalloc] = ACTIONS(1331), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(1333), + [anon_sym___reftype] = ACTIONS(1335), + [anon_sym___refvalue] = ACTIONS(1337), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_literal] = ACTIONS(143), + [anon_sym_DQUOTE] = ACTIONS(145), + [sym_verbatim_string_literal] = ACTIONS(143), + [aux_sym_preproc_if_token1] = ACTIONS(1339), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -176430,91 +176316,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(1299), - [sym_interpolation_verbatim_start] = ACTIONS(1301), - [sym_interpolation_raw_start] = ACTIONS(1303), - [sym_raw_string_start] = ACTIONS(1305), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [sym_interpolation_raw_start] = ACTIONS(155), + [sym_raw_string_start] = ACTIONS(157), }, [797] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_block] = STATE(3316), - [sym_bracketed_argument_list] = STATE(2610), - [sym__name] = STATE(5898), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2197), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(4806), - [sym_non_lvalue_expression] = STATE(3277), - [sym_lvalue_expression] = STATE(3510), - [sym__expression_statement_expression] = STATE(3228), - [sym_assignment_expression] = STATE(3289), - [sym_binary_expression] = STATE(3228), - [sym_postfix_unary_expression] = STATE(3289), - [sym_prefix_unary_expression] = STATE(3289), - [sym__pointer_indirection_expression] = STATE(2609), - [sym_query_expression] = STATE(3228), - [sym_from_clause] = STATE(6180), - [sym_conditional_expression] = STATE(3228), - [sym_conditional_access_expression] = STATE(3228), - [sym_as_expression] = STATE(3228), - [sym_is_expression] = STATE(3228), - [sym_is_pattern_expression] = STATE(3228), - [sym_cast_expression] = STATE(3228), - [sym_checked_expression] = STATE(3228), - [sym_invocation_expression] = STATE(3289), - [sym_switch_expression] = STATE(3228), - [sym_await_expression] = STATE(3289), - [sym_throw_expression] = STATE(3228), - [sym_element_access_expression] = STATE(2609), - [sym_interpolated_string_expression] = STATE(3228), - [sym_member_access_expression] = STATE(2609), - [sym_object_creation_expression] = STATE(3289), - [sym_parenthesized_expression] = STATE(3289), - [sym__parenthesized_lvalue_expression] = STATE(2609), - [sym_lambda_expression] = STATE(3228), - [sym__lambda_expression_init] = STATE(7527), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3228), - [sym_anonymous_method_expression] = STATE(3228), - [sym_anonymous_object_creation_expression] = STATE(3228), - [sym_implicit_array_creation_expression] = STATE(3228), - [sym_implicit_object_creation_expression] = STATE(3228), - [sym_implicit_stackalloc_expression] = STATE(3228), - [sym_initializer_expression] = STATE(3228), - [sym_default_expression] = STATE(3228), - [sym_with_expression] = STATE(3228), - [sym_sizeof_expression] = STATE(3228), - [sym_typeof_expression] = STATE(3228), - [sym_makeref_expression] = STATE(3228), - [sym_ref_expression] = STATE(3228), - [sym_reftype_expression] = STATE(3228), - [sym_refvalue_expression] = STATE(3228), - [sym_stackalloc_expression] = STATE(3228), - [sym_range_expression] = STATE(3228), - [sym_tuple_expression] = STATE(2609), - [sym_literal] = STATE(3228), - [sym_character_literal] = STATE(3278), - [sym_string_literal] = STATE(3278), - [sym_raw_string_literal] = STATE(3278), - [sym_boolean_literal] = STATE(3278), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3228), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_block] = STATE(3847), + [sym_bracketed_argument_list] = STATE(2901), + [sym__name] = STATE(5889), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2349), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(3613), + [sym_non_lvalue_expression] = STATE(3685), + [sym_lvalue_expression] = STATE(2890), + [sym__expression_statement_expression] = STATE(3836), + [sym_assignment_expression] = STATE(3689), + [sym_binary_expression] = STATE(3836), + [sym_postfix_unary_expression] = STATE(3689), + [sym_prefix_unary_expression] = STATE(3689), + [sym__pointer_indirection_expression] = STATE(2906), + [sym_query_expression] = STATE(3836), + [sym_from_clause] = STATE(6139), + [sym_conditional_expression] = STATE(3836), + [sym_conditional_access_expression] = STATE(3836), + [sym_as_expression] = STATE(3836), + [sym_is_expression] = STATE(3836), + [sym_is_pattern_expression] = STATE(3836), + [sym_cast_expression] = STATE(3836), + [sym_checked_expression] = STATE(3836), + [sym_invocation_expression] = STATE(3689), + [sym_switch_expression] = STATE(3836), + [sym_await_expression] = STATE(3689), + [sym_throw_expression] = STATE(3836), + [sym_element_access_expression] = STATE(2906), + [sym_interpolated_string_expression] = STATE(3836), + [sym_member_access_expression] = STATE(2906), + [sym_object_creation_expression] = STATE(3689), + [sym_parenthesized_expression] = STATE(3689), + [sym__parenthesized_lvalue_expression] = STATE(2906), + [sym_lambda_expression] = STATE(3836), + [sym__lambda_expression_init] = STATE(7456), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3836), + [sym_anonymous_method_expression] = STATE(3836), + [sym_anonymous_object_creation_expression] = STATE(3836), + [sym_implicit_array_creation_expression] = STATE(3836), + [sym_implicit_object_creation_expression] = STATE(3836), + [sym_implicit_stackalloc_expression] = STATE(3836), + [sym_initializer_expression] = STATE(3836), + [sym_default_expression] = STATE(3836), + [sym_with_expression] = STATE(3836), + [sym_sizeof_expression] = STATE(3836), + [sym_typeof_expression] = STATE(3836), + [sym_makeref_expression] = STATE(3836), + [sym_ref_expression] = STATE(3836), + [sym_reftype_expression] = STATE(3836), + [sym_refvalue_expression] = STATE(3836), + [sym_stackalloc_expression] = STATE(3836), + [sym_range_expression] = STATE(3836), + [sym_tuple_expression] = STATE(2906), + [sym_literal] = STATE(3836), + [sym_character_literal] = STATE(3843), + [sym_string_literal] = STATE(3843), + [sym_raw_string_literal] = STATE(3843), + [sym_boolean_literal] = STATE(3843), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3836), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(797), [sym_preproc_endregion] = STATE(797), [sym_preproc_line] = STATE(797), @@ -176524,43 +176410,43 @@ 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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3396), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3477), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1153), - [anon_sym_LPAREN] = ACTIONS(1759), - [anon_sym_ref] = ACTIONS(1761), - [anon_sym_LBRACE] = ACTIONS(2843), - [anon_sym_delegate] = ACTIONS(1161), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1655), + [anon_sym_LPAREN] = ACTIONS(1755), + [anon_sym_ref] = ACTIONS(1757), + [anon_sym_LBRACE] = ACTIONS(2873), + [anon_sym_delegate] = ACTIONS(1663), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1163), + [anon_sym_new] = ACTIONS(1759), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1167), - [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(1173), - [anon_sym_false] = ACTIONS(1173), - [anon_sym_PLUS] = ACTIONS(1763), - [anon_sym_DASH] = ACTIONS(1763), - [anon_sym_STAR] = ACTIONS(1175), - [anon_sym_CARET] = ACTIONS(1765), - [anon_sym_AMP] = ACTIONS(1765), - [anon_sym_this] = ACTIONS(1177), + [anon_sym_checked] = ACTIONS(1667), + [anon_sym_BANG] = ACTIONS(1763), + [anon_sym_TILDE] = ACTIONS(1763), + [anon_sym_PLUS_PLUS] = ACTIONS(1763), + [anon_sym_DASH_DASH] = ACTIONS(1763), + [anon_sym_true] = ACTIONS(1673), + [anon_sym_false] = ACTIONS(1673), + [anon_sym_PLUS] = ACTIONS(1761), + [anon_sym_DASH] = ACTIONS(1761), + [anon_sym_STAR] = ACTIONS(1765), + [anon_sym_CARET] = ACTIONS(1763), + [anon_sym_AMP] = ACTIONS(1763), + [anon_sym_this] = ACTIONS(1677), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1179), + [anon_sym_base] = ACTIONS(1679), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1181), - [anon_sym_unchecked] = ACTIONS(1167), + [sym_predefined_type] = ACTIONS(1681), + [anon_sym_unchecked] = ACTIONS(1667), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1183), + [anon_sym_default] = ACTIONS(1683), [anon_sym_throw] = ACTIONS(1767), [anon_sym_when] = ACTIONS(29), [anon_sym_await] = ACTIONS(1769), @@ -176577,19 +176463,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1191), - [anon_sym_sizeof] = ACTIONS(1193), - [anon_sym_typeof] = ACTIONS(1195), - [anon_sym___makeref] = ACTIONS(1197), - [anon_sym___reftype] = ACTIONS(1199), - [anon_sym___refvalue] = ACTIONS(1201), - [sym_null_literal] = ACTIONS(1203), - [anon_sym_SQUOTE] = ACTIONS(1205), - [sym_integer_literal] = ACTIONS(1203), - [sym_real_literal] = ACTIONS(1207), - [anon_sym_DQUOTE] = ACTIONS(1209), - [sym_verbatim_string_literal] = ACTIONS(1207), - [aux_sym_preproc_if_token1] = ACTIONS(1773), + [anon_sym_stackalloc] = ACTIONS(1691), + [anon_sym_sizeof] = ACTIONS(1693), + [anon_sym_typeof] = ACTIONS(1695), + [anon_sym___makeref] = ACTIONS(1697), + [anon_sym___reftype] = ACTIONS(1699), + [anon_sym___refvalue] = ACTIONS(1701), + [sym_null_literal] = ACTIONS(1703), + [anon_sym_SQUOTE] = ACTIONS(1705), + [sym_integer_literal] = ACTIONS(1703), + [sym_real_literal] = ACTIONS(1707), + [anon_sym_DQUOTE] = ACTIONS(1709), + [sym_verbatim_string_literal] = ACTIONS(1707), + [aux_sym_preproc_if_token1] = ACTIONS(1711), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -176600,91 +176486,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1213), - [sym_interpolation_verbatim_start] = ACTIONS(1215), - [sym_interpolation_raw_start] = ACTIONS(1217), - [sym_raw_string_start] = ACTIONS(1219), + [sym_interpolation_regular_start] = ACTIONS(1713), + [sym_interpolation_verbatim_start] = ACTIONS(1715), + [sym_interpolation_raw_start] = ACTIONS(1717), + [sym_raw_string_start] = ACTIONS(1719), }, [798] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_block] = STATE(3084), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(5910), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2247), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(4538), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3379), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3080), - [sym_postfix_unary_expression] = STATE(3111), - [sym_prefix_unary_expression] = STATE(3111), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6154), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3080), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3111), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3080), - [sym_member_access_expression] = STATE(2484), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3111), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7575), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(3080), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3080), - [sym_typeof_expression] = STATE(3080), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2484), - [sym_literal] = STATE(3080), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(5873), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2238), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(4902), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3468), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3102), + [sym_postfix_unary_expression] = STATE(3079), + [sym_prefix_unary_expression] = STATE(3079), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6134), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3102), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3079), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3102), + [sym_member_access_expression] = STATE(2472), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3079), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7309), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(3102), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3102), + [sym_typeof_expression] = STATE(3102), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2472), + [sym_literal] = STATE(3102), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(798), [sym_preproc_endregion] = STATE(798), [sym_preproc_line] = STATE(798), @@ -176694,47 +176579,48 @@ 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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1481), - [anon_sym_LPAREN] = ACTIONS(895), - [anon_sym_ref] = ACTIONS(897), - [anon_sym_LBRACE] = ACTIONS(2847), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1479), + [anon_sym_LPAREN] = ACTIONS(659), + [anon_sym_RPAREN] = ACTIONS(2923), + [anon_sym_ref] = ACTIONS(663), + [anon_sym_LBRACE] = ACTIONS(1481), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1061), + [anon_sym_new] = ACTIONS(1059), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1067), - [anon_sym_BANG] = ACTIONS(1495), - [anon_sym_TILDE] = ACTIONS(1495), - [anon_sym_PLUS_PLUS] = ACTIONS(1495), - [anon_sym_DASH_DASH] = ACTIONS(1495), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(1485), + [anon_sym_TILDE] = ACTIONS(1485), + [anon_sym_PLUS_PLUS] = ACTIONS(1485), + [anon_sym_DASH_DASH] = ACTIONS(1485), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1493), - [anon_sym_DASH] = ACTIONS(1493), - [anon_sym_STAR] = ACTIONS(905), - [anon_sym_CARET] = ACTIONS(1495), - [anon_sym_AMP] = ACTIONS(1495), + [anon_sym_PLUS] = ACTIONS(1483), + [anon_sym_DASH] = ACTIONS(1483), + [anon_sym_STAR] = ACTIONS(683), + [anon_sym_CARET] = ACTIONS(1485), + [anon_sym_AMP] = ACTIONS(1485), [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(1067), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1079), + [anon_sym_throw] = ACTIONS(1077), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1081), - [anon_sym_DOT_DOT] = ACTIONS(911), + [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), @@ -176759,7 +176645,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(1089), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -176776,84 +176662,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [799] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2610), - [sym__name] = STATE(5898), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2197), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(2291), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(4808), - [sym_non_lvalue_expression] = STATE(3277), - [sym_lvalue_expression] = STATE(3510), - [sym__expression_statement_expression] = STATE(3228), - [sym_assignment_expression] = STATE(3289), - [sym_binary_expression] = STATE(3228), - [sym_postfix_unary_expression] = STATE(3289), - [sym_prefix_unary_expression] = STATE(3289), - [sym__pointer_indirection_expression] = STATE(2609), - [sym_query_expression] = STATE(3228), - [sym_from_clause] = STATE(6180), - [sym_conditional_expression] = STATE(3228), - [sym_conditional_access_expression] = STATE(3228), - [sym_as_expression] = STATE(3228), - [sym_is_expression] = STATE(3228), - [sym_is_pattern_expression] = STATE(3228), - [sym_cast_expression] = STATE(3228), - [sym_checked_expression] = STATE(3228), - [sym_invocation_expression] = STATE(3289), - [sym_switch_expression] = STATE(3228), - [sym_await_expression] = STATE(3289), - [sym_throw_expression] = STATE(3228), - [sym_element_access_expression] = STATE(2609), - [sym_interpolated_string_expression] = STATE(3228), - [sym_member_access_expression] = STATE(2609), - [sym_object_creation_expression] = STATE(3289), - [sym_parenthesized_expression] = STATE(3289), - [sym__parenthesized_lvalue_expression] = STATE(2609), - [sym_lambda_expression] = STATE(3228), - [sym__lambda_expression_init] = STATE(7527), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3228), - [sym_anonymous_method_expression] = STATE(3228), - [sym_anonymous_object_creation_expression] = STATE(3228), - [sym_implicit_array_creation_expression] = STATE(3228), - [sym_implicit_object_creation_expression] = STATE(3228), - [sym_implicit_stackalloc_expression] = STATE(3228), - [sym_initializer_expression] = STATE(3228), - [sym_default_expression] = STATE(3228), - [sym_with_expression] = STATE(3228), - [sym_sizeof_expression] = STATE(3228), - [sym_typeof_expression] = STATE(3228), - [sym_makeref_expression] = STATE(3228), - [sym_ref_expression] = STATE(3228), - [sym_reftype_expression] = STATE(3228), - [sym_refvalue_expression] = STATE(3228), - [sym_stackalloc_expression] = STATE(3228), - [sym_range_expression] = STATE(3228), - [sym_tuple_expression] = STATE(2609), - [sym_literal] = STATE(3228), - [sym_character_literal] = STATE(3278), - [sym_string_literal] = STATE(3278), - [sym_raw_string_literal] = STATE(3278), - [sym_boolean_literal] = STATE(3278), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3228), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(5873), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2238), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(5024), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3526), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3102), + [sym_postfix_unary_expression] = STATE(3079), + [sym_prefix_unary_expression] = STATE(3079), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6134), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3102), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3079), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3102), + [sym_member_access_expression] = STATE(2472), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3079), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7455), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(3102), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3102), + [sym_typeof_expression] = STATE(3102), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2472), + [sym_literal] = STATE(3102), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(799), [sym_preproc_endregion] = STATE(799), [sym_preproc_line] = STATE(799), @@ -176863,48 +176749,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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3396), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), + [anon_sym_SEMI] = ACTIONS(2897), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1153), - [anon_sym_LPAREN] = ACTIONS(1759), - [anon_sym_ref] = ACTIONS(1761), - [anon_sym_LBRACE] = ACTIONS(1159), - [anon_sym_delegate] = ACTIONS(1161), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1479), + [anon_sym_LPAREN] = ACTIONS(1629), + [anon_sym_ref] = ACTIONS(1631), + [anon_sym_LBRACE] = ACTIONS(1481), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1163), - [anon_sym_readonly] = ACTIONS(2749), + [anon_sym_new] = ACTIONS(1515), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1167), - [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(1173), - [anon_sym_false] = ACTIONS(1173), - [anon_sym_PLUS] = ACTIONS(1763), - [anon_sym_DASH] = ACTIONS(1763), - [anon_sym_STAR] = ACTIONS(1175), - [anon_sym_CARET] = ACTIONS(1765), - [anon_sym_AMP] = ACTIONS(1765), - [anon_sym_this] = ACTIONS(1177), + [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_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1179), + [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1181), - [anon_sym_unchecked] = ACTIONS(1167), + [sym_predefined_type] = ACTIONS(91), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1183), - [anon_sym_throw] = ACTIONS(1767), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(1633), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1769), - [anon_sym_DOT_DOT] = ACTIONS(1771), + [anon_sym_await] = ACTIONS(1635), + [anon_sym_DOT_DOT] = ACTIONS(1637), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -176917,19 +176803,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1191), - [anon_sym_sizeof] = ACTIONS(1193), - [anon_sym_typeof] = ACTIONS(1195), - [anon_sym___makeref] = ACTIONS(1197), - [anon_sym___reftype] = ACTIONS(1199), - [anon_sym___refvalue] = ACTIONS(1201), - [sym_null_literal] = ACTIONS(1203), - [anon_sym_SQUOTE] = ACTIONS(1205), - [sym_integer_literal] = ACTIONS(1203), - [sym_real_literal] = ACTIONS(1207), - [anon_sym_DQUOTE] = ACTIONS(1209), - [sym_verbatim_string_literal] = ACTIONS(1207), - [aux_sym_preproc_if_token1] = ACTIONS(1773), + [anon_sym_stackalloc] = ACTIONS(127), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_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), @@ -176940,90 +176826,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1213), - [sym_interpolation_verbatim_start] = ACTIONS(1215), - [sym_interpolation_raw_start] = ACTIONS(1217), - [sym_raw_string_start] = ACTIONS(1219), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [sym_interpolation_raw_start] = ACTIONS(155), + [sym_raw_string_start] = ACTIONS(157), }, [800] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(5160), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2204), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(2291), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(5562), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3687), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3080), - [sym_postfix_unary_expression] = STATE(3111), - [sym_prefix_unary_expression] = STATE(3111), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6164), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3080), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3111), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3080), - [sym_member_access_expression] = STATE(2484), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3111), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7701), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(3080), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3080), - [sym_typeof_expression] = STATE(3080), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2484), - [sym_literal] = STATE(3080), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2901), + [sym__name] = STATE(5889), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2349), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(2279), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(3599), + [sym_non_lvalue_expression] = STATE(3685), + [sym_lvalue_expression] = STATE(2890), + [sym__expression_statement_expression] = STATE(3836), + [sym_assignment_expression] = STATE(3689), + [sym_binary_expression] = STATE(3836), + [sym_postfix_unary_expression] = STATE(3689), + [sym_prefix_unary_expression] = STATE(3689), + [sym__pointer_indirection_expression] = STATE(2906), + [sym_query_expression] = STATE(3836), + [sym_from_clause] = STATE(6139), + [sym_conditional_expression] = STATE(3836), + [sym_conditional_access_expression] = STATE(3836), + [sym_as_expression] = STATE(3836), + [sym_is_expression] = STATE(3836), + [sym_is_pattern_expression] = STATE(3836), + [sym_cast_expression] = STATE(3836), + [sym_checked_expression] = STATE(3836), + [sym_invocation_expression] = STATE(3689), + [sym_switch_expression] = STATE(3836), + [sym_await_expression] = STATE(3689), + [sym_throw_expression] = STATE(3836), + [sym_element_access_expression] = STATE(2906), + [sym_interpolated_string_expression] = STATE(3836), + [sym_member_access_expression] = STATE(2906), + [sym_object_creation_expression] = STATE(3689), + [sym_parenthesized_expression] = STATE(3689), + [sym__parenthesized_lvalue_expression] = STATE(2906), + [sym_lambda_expression] = STATE(3836), + [sym__lambda_expression_init] = STATE(7456), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3836), + [sym_anonymous_method_expression] = STATE(3836), + [sym_anonymous_object_creation_expression] = STATE(3836), + [sym_implicit_array_creation_expression] = STATE(3836), + [sym_implicit_object_creation_expression] = STATE(3836), + [sym_implicit_stackalloc_expression] = STATE(3836), + [sym_initializer_expression] = STATE(3836), + [sym_default_expression] = STATE(3836), + [sym_with_expression] = STATE(3836), + [sym_sizeof_expression] = STATE(3836), + [sym_typeof_expression] = STATE(3836), + [sym_makeref_expression] = STATE(3836), + [sym_ref_expression] = STATE(3836), + [sym_reftype_expression] = STATE(3836), + [sym_refvalue_expression] = STATE(3836), + [sym_stackalloc_expression] = STATE(3836), + [sym_range_expression] = STATE(3836), + [sym_tuple_expression] = STATE(2906), + [sym_literal] = STATE(3836), + [sym_character_literal] = STATE(3843), + [sym_string_literal] = STATE(3843), + [sym_raw_string_literal] = STATE(3843), + [sym_boolean_literal] = STATE(3843), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3836), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(800), [sym_preproc_endregion] = STATE(800), [sym_preproc_line] = STATE(800), @@ -177033,48 +176919,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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3477), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1481), - [anon_sym_LPAREN] = ACTIONS(2093), - [anon_sym_ref] = ACTIONS(2095), - [anon_sym_LBRACE] = ACTIONS(1487), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1655), + [anon_sym_LPAREN] = ACTIONS(1755), + [anon_sym_ref] = ACTIONS(1757), + [anon_sym_LBRACE] = ACTIONS(1661), + [anon_sym_delegate] = ACTIONS(1663), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1061), - [anon_sym_readonly] = ACTIONS(2749), + [anon_sym_new] = ACTIONS(1759), + [anon_sym_readonly] = ACTIONS(2767), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1067), - [anon_sym_BANG] = ACTIONS(2099), - [anon_sym_TILDE] = ACTIONS(2099), - [anon_sym_PLUS_PLUS] = ACTIONS(2099), - [anon_sym_DASH_DASH] = ACTIONS(2099), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(2097), - [anon_sym_DASH] = ACTIONS(2097), - [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(2099), - [anon_sym_AMP] = ACTIONS(2099), - [anon_sym_this] = ACTIONS(83), + [anon_sym_checked] = ACTIONS(1667), + [anon_sym_BANG] = ACTIONS(1763), + [anon_sym_TILDE] = ACTIONS(1763), + [anon_sym_PLUS_PLUS] = ACTIONS(1763), + [anon_sym_DASH_DASH] = ACTIONS(1763), + [anon_sym_true] = ACTIONS(1673), + [anon_sym_false] = ACTIONS(1673), + [anon_sym_PLUS] = ACTIONS(1761), + [anon_sym_DASH] = ACTIONS(1761), + [anon_sym_STAR] = ACTIONS(1765), + [anon_sym_CARET] = ACTIONS(1763), + [anon_sym_AMP] = ACTIONS(1763), + [anon_sym_this] = ACTIONS(1677), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), + [anon_sym_base] = ACTIONS(1679), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1067), + [sym_predefined_type] = ACTIONS(1681), + [anon_sym_unchecked] = ACTIONS(1667), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(2101), + [anon_sym_default] = ACTIONS(1683), + [anon_sym_throw] = ACTIONS(1767), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2103), - [anon_sym_DOT_DOT] = ACTIONS(2105), + [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), @@ -177087,19 +176973,19 @@ static const uint16_t ts_parse_table[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(2107), + [anon_sym_stackalloc] = ACTIONS(1691), + [anon_sym_sizeof] = ACTIONS(1693), + [anon_sym_typeof] = ACTIONS(1695), + [anon_sym___makeref] = ACTIONS(1697), + [anon_sym___reftype] = ACTIONS(1699), + [anon_sym___refvalue] = ACTIONS(1701), + [sym_null_literal] = ACTIONS(1703), + [anon_sym_SQUOTE] = ACTIONS(1705), + [sym_integer_literal] = ACTIONS(1703), + [sym_real_literal] = ACTIONS(1707), + [anon_sym_DQUOTE] = ACTIONS(1709), + [sym_verbatim_string_literal] = ACTIONS(1707), + [aux_sym_preproc_if_token1] = ACTIONS(1711), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -177110,90 +176996,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(151), - [sym_interpolation_verbatim_start] = ACTIONS(153), - [sym_interpolation_raw_start] = ACTIONS(155), - [sym_raw_string_start] = ACTIONS(157), + [sym_interpolation_regular_start] = ACTIONS(1713), + [sym_interpolation_verbatim_start] = ACTIONS(1715), + [sym_interpolation_raw_start] = ACTIONS(1717), + [sym_raw_string_start] = ACTIONS(1719), }, [801] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(5634), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2204), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(2291), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(5495), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3664), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3080), - [sym_postfix_unary_expression] = STATE(3111), - [sym_prefix_unary_expression] = STATE(3111), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6161), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3080), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3111), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3080), - [sym_member_access_expression] = STATE(2484), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3111), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7773), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(3080), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3080), - [sym_typeof_expression] = STATE(3080), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2484), - [sym_literal] = STATE(3080), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(5672), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2265), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(2279), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(4754), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3398), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3102), + [sym_postfix_unary_expression] = STATE(3079), + [sym_prefix_unary_expression] = STATE(3079), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6163), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3102), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3079), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3102), + [sym_member_access_expression] = STATE(2472), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3079), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7496), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(3102), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3102), + [sym_typeof_expression] = STATE(3102), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2472), + [sym_literal] = STATE(3102), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(801), [sym_preproc_endregion] = STATE(801), [sym_preproc_line] = STATE(801), @@ -177203,48 +177089,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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1481), - [anon_sym_LPAREN] = ACTIONS(2015), - [anon_sym_ref] = ACTIONS(2017), - [anon_sym_LBRACE] = ACTIONS(1487), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1479), + [anon_sym_LPAREN] = ACTIONS(1487), + [anon_sym_ref] = ACTIONS(2691), + [anon_sym_LBRACE] = ACTIONS(1481), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1101), - [anon_sym_readonly] = ACTIONS(2749), + [anon_sym_new] = ACTIONS(1095), + [anon_sym_readonly] = ACTIONS(2841), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1067), - [anon_sym_BANG] = ACTIONS(2021), - [anon_sym_TILDE] = ACTIONS(2021), - [anon_sym_PLUS_PLUS] = ACTIONS(2021), - [anon_sym_DASH_DASH] = ACTIONS(2021), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(1493), + [anon_sym_TILDE] = ACTIONS(1493), + [anon_sym_PLUS_PLUS] = ACTIONS(1493), + [anon_sym_DASH_DASH] = ACTIONS(1493), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(2019), - [anon_sym_DASH] = ACTIONS(2019), - [anon_sym_STAR] = ACTIONS(1229), - [anon_sym_CARET] = ACTIONS(2021), - [anon_sym_AMP] = ACTIONS(2021), + [anon_sym_PLUS] = ACTIONS(1491), + [anon_sym_DASH] = ACTIONS(1491), + [anon_sym_STAR] = ACTIONS(1105), + [anon_sym_CARET] = ACTIONS(1493), + [anon_sym_AMP] = ACTIONS(1493), [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(85), + [anon_sym_scoped] = ACTIONS(2301), [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(89), + [anon_sym_var] = ACTIONS(2629), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1067), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1233), + [anon_sym_throw] = ACTIONS(1113), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1235), - [anon_sym_DOT_DOT] = ACTIONS(1237), + [anon_sym_await] = ACTIONS(1115), + [anon_sym_DOT_DOT] = ACTIONS(1119), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -177269,7 +177155,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(1089), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -177286,84 +177172,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [802] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(5910), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2247), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(5019), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3379), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3080), - [sym_postfix_unary_expression] = STATE(3111), - [sym_prefix_unary_expression] = STATE(3111), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6154), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3080), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3111), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3080), - [sym_member_access_expression] = STATE(2484), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3111), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7575), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(3080), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3080), - [sym_typeof_expression] = STATE(3080), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2484), - [sym_literal] = STATE(3080), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(5873), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2238), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(4903), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3468), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3102), + [sym_postfix_unary_expression] = STATE(3079), + [sym_prefix_unary_expression] = STATE(3079), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6134), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3102), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3079), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3102), + [sym_member_access_expression] = STATE(2472), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3079), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7309), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(3102), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3102), + [sym_typeof_expression] = STATE(3102), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2472), + [sym_literal] = STATE(3102), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(802), [sym_preproc_endregion] = STATE(802), [sym_preproc_line] = STATE(802), @@ -177373,48 +177259,48 @@ 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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1481), - [anon_sym_LPAREN] = ACTIONS(895), - [anon_sym_ref] = ACTIONS(897), - [anon_sym_LBRACE] = ACTIONS(1487), - [anon_sym_RBRACE] = ACTIONS(2923), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1479), + [anon_sym_LPAREN] = ACTIONS(659), + [anon_sym_RPAREN] = ACTIONS(2925), + [anon_sym_ref] = ACTIONS(663), + [anon_sym_LBRACE] = ACTIONS(1481), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1061), + [anon_sym_new] = ACTIONS(1059), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1067), - [anon_sym_BANG] = ACTIONS(1495), - [anon_sym_TILDE] = ACTIONS(1495), - [anon_sym_PLUS_PLUS] = ACTIONS(1495), - [anon_sym_DASH_DASH] = ACTIONS(1495), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(1485), + [anon_sym_TILDE] = ACTIONS(1485), + [anon_sym_PLUS_PLUS] = ACTIONS(1485), + [anon_sym_DASH_DASH] = ACTIONS(1485), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1493), - [anon_sym_DASH] = ACTIONS(1493), - [anon_sym_STAR] = ACTIONS(905), - [anon_sym_CARET] = ACTIONS(1495), - [anon_sym_AMP] = ACTIONS(1495), + [anon_sym_PLUS] = ACTIONS(1483), + [anon_sym_DASH] = ACTIONS(1483), + [anon_sym_STAR] = ACTIONS(683), + [anon_sym_CARET] = ACTIONS(1485), + [anon_sym_AMP] = ACTIONS(1485), [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(1067), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1079), + [anon_sym_throw] = ACTIONS(1077), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1081), - [anon_sym_DOT_DOT] = ACTIONS(911), + [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), @@ -177439,7 +177325,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(1089), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -177456,85 +177342,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [803] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_block] = STATE(3702), - [sym_bracketed_argument_list] = STATE(2914), - [sym__name] = STATE(5885), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2357), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(3725), - [sym_non_lvalue_expression] = STATE(3880), - [sym_lvalue_expression] = STATE(2986), - [sym__expression_statement_expression] = STATE(3873), - [sym_assignment_expression] = STATE(3881), - [sym_binary_expression] = STATE(3873), - [sym_postfix_unary_expression] = STATE(3881), - [sym_prefix_unary_expression] = STATE(3881), - [sym__pointer_indirection_expression] = STATE(2913), - [sym_query_expression] = STATE(3873), - [sym_from_clause] = STATE(6168), - [sym_conditional_expression] = STATE(3873), - [sym_conditional_access_expression] = STATE(3873), - [sym_as_expression] = STATE(3873), - [sym_is_expression] = STATE(3873), - [sym_is_pattern_expression] = STATE(3873), - [sym_cast_expression] = STATE(3873), - [sym_checked_expression] = STATE(3873), - [sym_invocation_expression] = STATE(3881), - [sym_switch_expression] = STATE(3873), - [sym_await_expression] = STATE(3881), - [sym_throw_expression] = STATE(3873), - [sym_element_access_expression] = STATE(2913), - [sym_interpolated_string_expression] = STATE(3873), - [sym_member_access_expression] = STATE(2913), - [sym_object_creation_expression] = STATE(3881), - [sym_parenthesized_expression] = STATE(3881), - [sym__parenthesized_lvalue_expression] = STATE(2913), - [sym_lambda_expression] = STATE(3873), - [sym__lambda_expression_init] = STATE(7587), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3873), - [sym_anonymous_method_expression] = STATE(3873), - [sym_anonymous_object_creation_expression] = STATE(3873), - [sym_implicit_array_creation_expression] = STATE(3873), - [sym_implicit_object_creation_expression] = STATE(3873), - [sym_implicit_stackalloc_expression] = STATE(3873), - [sym_initializer_expression] = STATE(3873), - [sym_default_expression] = STATE(3873), - [sym_with_expression] = STATE(3873), - [sym_sizeof_expression] = STATE(3873), - [sym_typeof_expression] = STATE(3873), - [sym_makeref_expression] = STATE(3873), - [sym_ref_expression] = STATE(3873), - [sym_reftype_expression] = STATE(3873), - [sym_refvalue_expression] = STATE(3873), - [sym_stackalloc_expression] = STATE(3873), - [sym_range_expression] = STATE(3873), - [sym_tuple_expression] = STATE(2913), - [sym_literal] = STATE(3873), - [sym_character_literal] = STATE(3877), - [sym_string_literal] = STATE(3877), - [sym_raw_string_literal] = STATE(3877), - [sym_boolean_literal] = STATE(3877), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3873), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2416), + [sym__name] = STATE(5867), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2379), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(2279), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(5225), + [sym_non_lvalue_expression] = STATE(3040), + [sym_lvalue_expression] = STATE(3617), + [sym__expression_statement_expression] = STATE(3035), + [sym_assignment_expression] = STATE(3043), + [sym_binary_expression] = STATE(3035), + [sym_postfix_unary_expression] = STATE(3043), + [sym_prefix_unary_expression] = STATE(3043), + [sym__pointer_indirection_expression] = STATE(2415), + [sym_query_expression] = STATE(3035), + [sym_from_clause] = STATE(6161), + [sym_conditional_expression] = STATE(3035), + [sym_conditional_access_expression] = STATE(3035), + [sym_as_expression] = STATE(3035), + [sym_is_expression] = STATE(3035), + [sym_is_pattern_expression] = STATE(3035), + [sym_cast_expression] = STATE(3035), + [sym_checked_expression] = STATE(3035), + [sym_invocation_expression] = STATE(3043), + [sym_switch_expression] = STATE(3035), + [sym_await_expression] = STATE(3043), + [sym_throw_expression] = STATE(3035), + [sym_element_access_expression] = STATE(2415), + [sym_interpolated_string_expression] = STATE(3035), + [sym_member_access_expression] = STATE(2415), + [sym_object_creation_expression] = STATE(3043), + [sym_parenthesized_expression] = STATE(3043), + [sym__parenthesized_lvalue_expression] = STATE(2415), + [sym_lambda_expression] = STATE(3035), + [sym__lambda_expression_init] = STATE(7706), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3035), + [sym_anonymous_method_expression] = STATE(3035), + [sym_anonymous_object_creation_expression] = STATE(3035), + [sym_implicit_array_creation_expression] = STATE(3035), + [sym_implicit_object_creation_expression] = STATE(3035), + [sym_implicit_stackalloc_expression] = STATE(3035), + [sym_initializer_expression] = STATE(3035), + [sym_default_expression] = STATE(3035), + [sym_with_expression] = STATE(3035), + [sym_sizeof_expression] = STATE(3035), + [sym_typeof_expression] = STATE(3035), + [sym_makeref_expression] = STATE(3035), + [sym_ref_expression] = STATE(3035), + [sym_reftype_expression] = STATE(3035), + [sym_refvalue_expression] = STATE(3035), + [sym_stackalloc_expression] = STATE(3035), + [sym_range_expression] = STATE(3035), + [sym_tuple_expression] = STATE(2415), + [sym_literal] = STATE(3035), + [sym_character_literal] = STATE(3037), + [sym_string_literal] = STATE(3037), + [sym_raw_string_literal] = STATE(3037), + [sym_boolean_literal] = STATE(3037), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3035), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(803), [sym_preproc_endregion] = STATE(803), [sym_preproc_line] = STATE(803), @@ -177544,47 +177429,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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3382), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3455), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1627), - [anon_sym_LPAREN] = ACTIONS(2079), - [anon_sym_ref] = ACTIONS(2081), - [anon_sym_LBRACE] = ACTIONS(2873), - [anon_sym_delegate] = ACTIONS(1635), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1239), + [anon_sym_LPAREN] = ACTIONS(2159), + [anon_sym_ref] = ACTIONS(2161), + [anon_sym_LBRACE] = ACTIONS(1245), + [anon_sym_delegate] = ACTIONS(1247), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1731), + [anon_sym_new] = ACTIONS(2163), + [anon_sym_readonly] = ACTIONS(2767), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1639), - [anon_sym_BANG] = ACTIONS(2085), - [anon_sym_TILDE] = ACTIONS(2085), - [anon_sym_PLUS_PLUS] = ACTIONS(2085), - [anon_sym_DASH_DASH] = ACTIONS(2085), - [anon_sym_true] = ACTIONS(1645), - [anon_sym_false] = ACTIONS(1645), - [anon_sym_PLUS] = ACTIONS(2083), - [anon_sym_DASH] = ACTIONS(2083), - [anon_sym_STAR] = ACTIONS(1737), - [anon_sym_CARET] = ACTIONS(2085), - [anon_sym_AMP] = ACTIONS(2085), - [anon_sym_this] = ACTIONS(1649), + [anon_sym_checked] = ACTIONS(1251), + [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(1257), + [anon_sym_false] = ACTIONS(1257), + [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(1261), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1651), + [anon_sym_base] = ACTIONS(1263), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1653), - [anon_sym_unchecked] = ACTIONS(1639), + [sym_predefined_type] = ACTIONS(1265), + [anon_sym_unchecked] = ACTIONS(1251), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1655), - [anon_sym_throw] = ACTIONS(2087), + [anon_sym_default] = ACTIONS(1267), + [anon_sym_throw] = ACTIONS(2171), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2089), - [anon_sym_DOT_DOT] = ACTIONS(2091), + [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), @@ -177597,19 +177483,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1663), - [anon_sym_sizeof] = ACTIONS(1665), - [anon_sym_typeof] = ACTIONS(1667), - [anon_sym___makeref] = ACTIONS(1669), - [anon_sym___reftype] = ACTIONS(1671), - [anon_sym___refvalue] = ACTIONS(1673), - [sym_null_literal] = ACTIONS(1675), - [anon_sym_SQUOTE] = ACTIONS(1677), - [sym_integer_literal] = ACTIONS(1675), - [sym_real_literal] = ACTIONS(1679), - [anon_sym_DQUOTE] = ACTIONS(1681), - [sym_verbatim_string_literal] = ACTIONS(1679), - [aux_sym_preproc_if_token1] = ACTIONS(1683), + [anon_sym_stackalloc] = ACTIONS(1275), + [anon_sym_sizeof] = ACTIONS(1277), + [anon_sym_typeof] = ACTIONS(1279), + [anon_sym___makeref] = ACTIONS(1281), + [anon_sym___reftype] = ACTIONS(1283), + [anon_sym___refvalue] = ACTIONS(1285), + [sym_null_literal] = ACTIONS(1287), + [anon_sym_SQUOTE] = ACTIONS(1289), + [sym_integer_literal] = ACTIONS(1287), + [sym_real_literal] = ACTIONS(1291), + [anon_sym_DQUOTE] = ACTIONS(1293), + [sym_verbatim_string_literal] = ACTIONS(1291), + [aux_sym_preproc_if_token1] = ACTIONS(1295), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -177620,91 +177506,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(1685), - [sym_interpolation_verbatim_start] = ACTIONS(1687), - [sym_interpolation_raw_start] = ACTIONS(1689), - [sym_raw_string_start] = ACTIONS(1691), + [sym_interpolation_regular_start] = ACTIONS(1297), + [sym_interpolation_verbatim_start] = ACTIONS(1299), + [sym_interpolation_raw_start] = ACTIONS(1301), + [sym_raw_string_start] = ACTIONS(1303), }, [804] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_block] = STATE(3014), - [sym_bracketed_argument_list] = STATE(2420), - [sym__name] = STATE(5875), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2369), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(3997), - [sym_non_lvalue_expression] = STATE(3066), - [sym_lvalue_expression] = STATE(3109), - [sym__expression_statement_expression] = STATE(3006), - [sym_assignment_expression] = STATE(3020), - [sym_binary_expression] = STATE(3006), - [sym_postfix_unary_expression] = STATE(3020), - [sym_prefix_unary_expression] = STATE(3020), - [sym__pointer_indirection_expression] = STATE(2423), - [sym_query_expression] = STATE(3006), - [sym_from_clause] = STATE(6179), - [sym_conditional_expression] = STATE(3006), - [sym_conditional_access_expression] = STATE(3006), - [sym_as_expression] = STATE(3006), - [sym_is_expression] = STATE(3006), - [sym_is_pattern_expression] = STATE(3006), - [sym_cast_expression] = STATE(3006), - [sym_checked_expression] = STATE(3006), - [sym_invocation_expression] = STATE(3020), - [sym_switch_expression] = STATE(3006), - [sym_await_expression] = STATE(3020), - [sym_throw_expression] = STATE(3006), - [sym_element_access_expression] = STATE(2423), - [sym_interpolated_string_expression] = STATE(3006), - [sym_member_access_expression] = STATE(2423), - [sym_object_creation_expression] = STATE(3020), - [sym_parenthesized_expression] = STATE(3020), - [sym__parenthesized_lvalue_expression] = STATE(2423), - [sym_lambda_expression] = STATE(3006), - [sym__lambda_expression_init] = STATE(7522), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3006), - [sym_anonymous_method_expression] = STATE(3006), - [sym_anonymous_object_creation_expression] = STATE(3006), - [sym_implicit_array_creation_expression] = STATE(3006), - [sym_implicit_object_creation_expression] = STATE(3006), - [sym_implicit_stackalloc_expression] = STATE(3006), - [sym_initializer_expression] = STATE(3006), - [sym_default_expression] = STATE(3006), - [sym_with_expression] = STATE(3006), - [sym_sizeof_expression] = STATE(3006), - [sym_typeof_expression] = STATE(3006), - [sym_makeref_expression] = STATE(3006), - [sym_ref_expression] = STATE(3006), - [sym_reftype_expression] = STATE(3006), - [sym_refvalue_expression] = STATE(3006), - [sym_stackalloc_expression] = STATE(3006), - [sym_range_expression] = STATE(3006), - [sym_tuple_expression] = STATE(2423), - [sym_literal] = STATE(3006), - [sym_character_literal] = STATE(3011), - [sym_string_literal] = STATE(3011), - [sym_raw_string_literal] = STATE(3011), - [sym_boolean_literal] = STATE(3011), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3006), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_block] = STATE(4603), + [sym_bracketed_argument_list] = STATE(3182), + [sym__name] = STATE(5888), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2286), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2262), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(4302), + [sym_non_lvalue_expression] = STATE(4580), + [sym_lvalue_expression] = STATE(3192), + [sym__expression_statement_expression] = STATE(4573), + [sym_assignment_expression] = STATE(4581), + [sym_binary_expression] = STATE(4573), + [sym_postfix_unary_expression] = STATE(4581), + [sym_prefix_unary_expression] = STATE(4581), + [sym__pointer_indirection_expression] = STATE(3144), + [sym_query_expression] = STATE(4573), + [sym_from_clause] = STATE(6160), + [sym_conditional_expression] = STATE(4573), + [sym_conditional_access_expression] = STATE(4573), + [sym_as_expression] = STATE(4573), + [sym_is_expression] = STATE(4573), + [sym_is_pattern_expression] = STATE(4573), + [sym_cast_expression] = STATE(4573), + [sym_checked_expression] = STATE(4573), + [sym_invocation_expression] = STATE(4581), + [sym_switch_expression] = STATE(4573), + [sym_await_expression] = STATE(4581), + [sym_throw_expression] = STATE(4573), + [sym_element_access_expression] = STATE(3144), + [sym_interpolated_string_expression] = STATE(4573), + [sym_member_access_expression] = STATE(3144), + [sym_object_creation_expression] = STATE(4581), + [sym_parenthesized_expression] = STATE(4581), + [sym__parenthesized_lvalue_expression] = STATE(3144), + [sym_lambda_expression] = STATE(4573), + [sym__lambda_expression_init] = STATE(7491), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(4573), + [sym_anonymous_method_expression] = STATE(4573), + [sym_anonymous_object_creation_expression] = STATE(4573), + [sym_implicit_array_creation_expression] = STATE(4573), + [sym_implicit_object_creation_expression] = STATE(4573), + [sym_implicit_stackalloc_expression] = STATE(4573), + [sym_initializer_expression] = STATE(4573), + [sym_default_expression] = STATE(4573), + [sym_with_expression] = STATE(4573), + [sym_sizeof_expression] = STATE(4573), + [sym_typeof_expression] = STATE(4573), + [sym_makeref_expression] = STATE(4573), + [sym_ref_expression] = STATE(4573), + [sym_reftype_expression] = STATE(4573), + [sym_refvalue_expression] = STATE(4573), + [sym_stackalloc_expression] = STATE(4573), + [sym_range_expression] = STATE(4573), + [sym_tuple_expression] = STATE(3144), + [sym_literal] = STATE(4573), + [sym_character_literal] = STATE(4575), + [sym_string_literal] = STATE(4575), + [sym_raw_string_literal] = STATE(4575), + [sym_boolean_literal] = STATE(4575), + [sym_identifier] = STATE(2237), + [sym__reserved_identifier] = STATE(2229), + [sym_preproc_if_in_expression] = STATE(4573), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(804), [sym_preproc_endregion] = STATE(804), [sym_preproc_line] = STATE(804), @@ -177714,166 +177600,166 @@ 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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3440), - [sym__identifier_token] = ACTIONS(25), - [anon_sym_alias] = ACTIONS(29), - [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1241), - [anon_sym_LPAREN] = ACTIONS(1841), - [anon_sym_ref] = ACTIONS(1843), - [anon_sym_LBRACE] = ACTIONS(2845), - [anon_sym_delegate] = ACTIONS(1249), - [anon_sym_async] = ACTIONS(1047), - [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1845), - [anon_sym_where] = ACTIONS(29), - [anon_sym_notnull] = ACTIONS(29), - [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1253), - [anon_sym_BANG] = ACTIONS(1849), - [anon_sym_TILDE] = ACTIONS(1849), - [anon_sym_PLUS_PLUS] = ACTIONS(1849), - [anon_sym_DASH_DASH] = ACTIONS(1849), - [anon_sym_true] = ACTIONS(1259), - [anon_sym_false] = ACTIONS(1259), - [anon_sym_PLUS] = ACTIONS(1847), - [anon_sym_DASH] = ACTIONS(1847), - [anon_sym_STAR] = ACTIONS(1851), - [anon_sym_CARET] = ACTIONS(1849), - [anon_sym_AMP] = ACTIONS(1849), - [anon_sym_this] = ACTIONS(1263), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1265), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1267), - [anon_sym_unchecked] = ACTIONS(1253), - [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1269), - [anon_sym_throw] = ACTIONS(1853), - [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1855), - [anon_sym_DOT_DOT] = ACTIONS(1857), - [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(1277), - [anon_sym_sizeof] = ACTIONS(1279), - [anon_sym_typeof] = ACTIONS(1281), - [anon_sym___makeref] = ACTIONS(1283), - [anon_sym___reftype] = ACTIONS(1285), - [anon_sym___refvalue] = ACTIONS(1287), - [sym_null_literal] = ACTIONS(1289), - [anon_sym_SQUOTE] = ACTIONS(1291), - [sym_integer_literal] = ACTIONS(1289), - [sym_real_literal] = ACTIONS(1293), - [anon_sym_DQUOTE] = ACTIONS(1295), - [sym_verbatim_string_literal] = ACTIONS(1293), - [aux_sym_preproc_if_token1] = ACTIONS(1297), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1299), - [sym_interpolation_verbatim_start] = ACTIONS(1301), - [sym_interpolation_raw_start] = ACTIONS(1303), - [sym_raw_string_start] = ACTIONS(1305), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3501), + [sym__identifier_token] = ACTIONS(1385), + [anon_sym_alias] = ACTIONS(1387), + [anon_sym_global] = ACTIONS(1387), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1389), + [anon_sym_LPAREN] = ACTIONS(1391), + [anon_sym_ref] = ACTIONS(1393), + [anon_sym_LBRACE] = ACTIONS(2887), + [anon_sym_delegate] = ACTIONS(1397), + [anon_sym_async] = ACTIONS(1045), + [anon_sym_file] = ACTIONS(1387), + [anon_sym_new] = ACTIONS(1399), + [anon_sym_where] = ACTIONS(1387), + [anon_sym_notnull] = ACTIONS(1387), + [anon_sym_unmanaged] = ACTIONS(1387), + [anon_sym_checked] = ACTIONS(1401), + [anon_sym_BANG] = ACTIONS(1405), + [anon_sym_TILDE] = ACTIONS(1405), + [anon_sym_PLUS_PLUS] = ACTIONS(1405), + [anon_sym_DASH_DASH] = ACTIONS(1405), + [anon_sym_true] = ACTIONS(1407), + [anon_sym_false] = ACTIONS(1407), + [anon_sym_PLUS] = ACTIONS(1403), + [anon_sym_DASH] = ACTIONS(1403), + [anon_sym_STAR] = ACTIONS(1409), + [anon_sym_CARET] = ACTIONS(1405), + [anon_sym_AMP] = ACTIONS(1405), + [anon_sym_this] = ACTIONS(1411), + [anon_sym_scoped] = ACTIONS(1413), + [anon_sym_base] = ACTIONS(1415), + [anon_sym_var] = ACTIONS(1417), + [sym_predefined_type] = ACTIONS(1419), + [anon_sym_unchecked] = ACTIONS(1401), + [anon_sym_yield] = ACTIONS(1387), + [anon_sym_default] = ACTIONS(1421), + [anon_sym_throw] = ACTIONS(1423), + [anon_sym_when] = ACTIONS(1387), + [anon_sym_await] = ACTIONS(1425), + [anon_sym_DOT_DOT] = ACTIONS(1427), + [anon_sym_from] = ACTIONS(1429), + [anon_sym_into] = ACTIONS(1387), + [anon_sym_join] = ACTIONS(1387), + [anon_sym_on] = ACTIONS(1387), + [anon_sym_equals] = ACTIONS(1387), + [anon_sym_let] = ACTIONS(1387), + [anon_sym_orderby] = ACTIONS(1387), + [anon_sym_ascending] = ACTIONS(1387), + [anon_sym_descending] = ACTIONS(1387), + [anon_sym_group] = ACTIONS(1387), + [anon_sym_by] = ACTIONS(1387), + [anon_sym_select] = ACTIONS(1387), + [anon_sym_stackalloc] = ACTIONS(1431), + [anon_sym_sizeof] = ACTIONS(1433), + [anon_sym_typeof] = ACTIONS(1435), + [anon_sym___makeref] = ACTIONS(1437), + [anon_sym___reftype] = ACTIONS(1439), + [anon_sym___refvalue] = ACTIONS(1441), + [sym_null_literal] = ACTIONS(1443), + [anon_sym_SQUOTE] = ACTIONS(1445), + [sym_integer_literal] = ACTIONS(1443), + [sym_real_literal] = ACTIONS(1447), + [anon_sym_DQUOTE] = ACTIONS(1449), + [sym_verbatim_string_literal] = ACTIONS(1447), + [aux_sym_preproc_if_token1] = ACTIONS(1451), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + [sym_interpolation_regular_start] = ACTIONS(1453), + [sym_interpolation_verbatim_start] = ACTIONS(1455), + [sym_interpolation_raw_start] = ACTIONS(1457), + [sym_raw_string_start] = ACTIONS(1459), }, [805] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2420), - [sym__name] = STATE(5875), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2369), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(2291), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(4031), - [sym_non_lvalue_expression] = STATE(3066), - [sym_lvalue_expression] = STATE(3109), - [sym__expression_statement_expression] = STATE(3006), - [sym_assignment_expression] = STATE(3020), - [sym_binary_expression] = STATE(3006), - [sym_postfix_unary_expression] = STATE(3020), - [sym_prefix_unary_expression] = STATE(3020), - [sym__pointer_indirection_expression] = STATE(2423), - [sym_query_expression] = STATE(3006), - [sym_from_clause] = STATE(6179), - [sym_conditional_expression] = STATE(3006), - [sym_conditional_access_expression] = STATE(3006), - [sym_as_expression] = STATE(3006), - [sym_is_expression] = STATE(3006), - [sym_is_pattern_expression] = STATE(3006), - [sym_cast_expression] = STATE(3006), - [sym_checked_expression] = STATE(3006), - [sym_invocation_expression] = STATE(3020), - [sym_switch_expression] = STATE(3006), - [sym_await_expression] = STATE(3020), - [sym_throw_expression] = STATE(3006), - [sym_element_access_expression] = STATE(2423), - [sym_interpolated_string_expression] = STATE(3006), - [sym_member_access_expression] = STATE(2423), - [sym_object_creation_expression] = STATE(3020), - [sym_parenthesized_expression] = STATE(3020), - [sym__parenthesized_lvalue_expression] = STATE(2423), - [sym_lambda_expression] = STATE(3006), - [sym__lambda_expression_init] = STATE(7522), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3006), - [sym_anonymous_method_expression] = STATE(3006), - [sym_anonymous_object_creation_expression] = STATE(3006), - [sym_implicit_array_creation_expression] = STATE(3006), - [sym_implicit_object_creation_expression] = STATE(3006), - [sym_implicit_stackalloc_expression] = STATE(3006), - [sym_initializer_expression] = STATE(3006), - [sym_default_expression] = STATE(3006), - [sym_with_expression] = STATE(3006), - [sym_sizeof_expression] = STATE(3006), - [sym_typeof_expression] = STATE(3006), - [sym_makeref_expression] = STATE(3006), - [sym_ref_expression] = STATE(3006), - [sym_reftype_expression] = STATE(3006), - [sym_refvalue_expression] = STATE(3006), - [sym_stackalloc_expression] = STATE(3006), - [sym_range_expression] = STATE(3006), - [sym_tuple_expression] = STATE(2423), - [sym_literal] = STATE(3006), - [sym_character_literal] = STATE(3011), - [sym_string_literal] = STATE(3011), - [sym_raw_string_literal] = STATE(3011), - [sym_boolean_literal] = STATE(3011), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3006), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2816), + [sym__name] = STATE(5873), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2238), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(2279), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(4181), + [sym_non_lvalue_expression] = STATE(3495), + [sym_lvalue_expression] = STATE(3131), + [sym__expression_statement_expression] = STATE(3462), + [sym_assignment_expression] = STATE(3497), + [sym_binary_expression] = STATE(3462), + [sym_postfix_unary_expression] = STATE(3497), + [sym_prefix_unary_expression] = STATE(3497), + [sym__pointer_indirection_expression] = STATE(2815), + [sym_query_expression] = STATE(3462), + [sym_from_clause] = STATE(6140), + [sym_conditional_expression] = STATE(3462), + [sym_conditional_access_expression] = STATE(3462), + [sym_as_expression] = STATE(3462), + [sym_is_expression] = STATE(3462), + [sym_is_pattern_expression] = STATE(3462), + [sym_cast_expression] = STATE(3462), + [sym_checked_expression] = STATE(3462), + [sym_invocation_expression] = STATE(3497), + [sym_switch_expression] = STATE(3462), + [sym_await_expression] = STATE(3497), + [sym_throw_expression] = STATE(3462), + [sym_element_access_expression] = STATE(2815), + [sym_interpolated_string_expression] = STATE(3462), + [sym_member_access_expression] = STATE(2815), + [sym_object_creation_expression] = STATE(3497), + [sym_parenthesized_expression] = STATE(3497), + [sym__parenthesized_lvalue_expression] = STATE(2815), + [sym_lambda_expression] = STATE(3462), + [sym__lambda_expression_init] = STATE(7423), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3462), + [sym_anonymous_method_expression] = STATE(3462), + [sym_anonymous_object_creation_expression] = STATE(3462), + [sym_implicit_array_creation_expression] = STATE(3462), + [sym_implicit_object_creation_expression] = STATE(3462), + [sym_implicit_stackalloc_expression] = STATE(3462), + [sym_initializer_expression] = STATE(3462), + [sym_default_expression] = STATE(3462), + [sym_with_expression] = STATE(3462), + [sym_sizeof_expression] = STATE(3462), + [sym_typeof_expression] = STATE(3462), + [sym_makeref_expression] = STATE(3462), + [sym_ref_expression] = STATE(3462), + [sym_reftype_expression] = STATE(3462), + [sym_refvalue_expression] = STATE(3462), + [sym_stackalloc_expression] = STATE(3462), + [sym_range_expression] = STATE(3462), + [sym_tuple_expression] = STATE(2815), + [sym_literal] = STATE(3462), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3462), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(805), [sym_preproc_endregion] = STATE(805), [sym_preproc_line] = STATE(805), @@ -177883,218 +177769,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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3440), - [sym__identifier_token] = ACTIONS(25), - [anon_sym_alias] = ACTIONS(29), - [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1241), - [anon_sym_LPAREN] = ACTIONS(1841), - [anon_sym_ref] = ACTIONS(1843), - [anon_sym_LBRACE] = ACTIONS(1247), - [anon_sym_delegate] = ACTIONS(1249), - [anon_sym_async] = ACTIONS(1047), - [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1845), - [anon_sym_readonly] = ACTIONS(2749), - [anon_sym_where] = ACTIONS(29), - [anon_sym_notnull] = ACTIONS(29), - [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1253), - [anon_sym_BANG] = ACTIONS(1849), - [anon_sym_TILDE] = ACTIONS(1849), - [anon_sym_PLUS_PLUS] = ACTIONS(1849), - [anon_sym_DASH_DASH] = ACTIONS(1849), - [anon_sym_true] = ACTIONS(1259), - [anon_sym_false] = ACTIONS(1259), - [anon_sym_PLUS] = ACTIONS(1847), - [anon_sym_DASH] = ACTIONS(1847), - [anon_sym_STAR] = ACTIONS(1851), - [anon_sym_CARET] = ACTIONS(1849), - [anon_sym_AMP] = ACTIONS(1849), - [anon_sym_this] = ACTIONS(1263), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1265), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1267), - [anon_sym_unchecked] = ACTIONS(1253), - [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1269), - [anon_sym_throw] = ACTIONS(1853), - [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1855), - [anon_sym_DOT_DOT] = ACTIONS(1857), - [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(1277), - [anon_sym_sizeof] = ACTIONS(1279), - [anon_sym_typeof] = ACTIONS(1281), - [anon_sym___makeref] = ACTIONS(1283), - [anon_sym___reftype] = ACTIONS(1285), - [anon_sym___refvalue] = ACTIONS(1287), - [sym_null_literal] = ACTIONS(1289), - [anon_sym_SQUOTE] = ACTIONS(1291), - [sym_integer_literal] = ACTIONS(1289), - [sym_real_literal] = ACTIONS(1293), - [anon_sym_DQUOTE] = ACTIONS(1295), - [sym_verbatim_string_literal] = ACTIONS(1293), - [aux_sym_preproc_if_token1] = ACTIONS(1297), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1299), - [sym_interpolation_verbatim_start] = ACTIONS(1301), - [sym_interpolation_raw_start] = ACTIONS(1303), - [sym_raw_string_start] = ACTIONS(1305), - }, - [806] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_block] = STATE(3084), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(5634), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2204), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(5358), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3664), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3080), - [sym_postfix_unary_expression] = STATE(3111), - [sym_prefix_unary_expression] = STATE(3111), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6161), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3080), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3111), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3080), - [sym_member_access_expression] = STATE(2484), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3111), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7773), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(3080), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3080), - [sym_typeof_expression] = STATE(3080), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2484), - [sym_literal] = STATE(3080), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), - [sym_preproc_region] = STATE(806), - [sym_preproc_endregion] = STATE(806), - [sym_preproc_line] = STATE(806), - [sym_preproc_pragma] = STATE(806), - [sym_preproc_nullable] = STATE(806), - [sym_preproc_error] = STATE(806), - [sym_preproc_warning] = STATE(806), - [sym_preproc_define] = STATE(806), - [sym_preproc_undef] = STATE(806), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3067), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), [aux_sym__lambda_expression_init_repeat1] = STATE(3367), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1481), - [anon_sym_LPAREN] = ACTIONS(2015), - [anon_sym_ref] = ACTIONS(2017), - [anon_sym_LBRACE] = ACTIONS(2847), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1305), + [anon_sym_LPAREN] = ACTIONS(1307), + [anon_sym_ref] = ACTIONS(1309), + [anon_sym_LBRACE] = ACTIONS(1311), + [anon_sym_delegate] = ACTIONS(1313), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1101), + [anon_sym_new] = ACTIONS(1315), + [anon_sym_readonly] = ACTIONS(2767), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1067), - [anon_sym_BANG] = ACTIONS(2021), - [anon_sym_TILDE] = ACTIONS(2021), - [anon_sym_PLUS_PLUS] = ACTIONS(2021), - [anon_sym_DASH_DASH] = ACTIONS(2021), + [anon_sym_checked] = ACTIONS(1317), + [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(2019), - [anon_sym_DASH] = ACTIONS(2019), - [anon_sym_STAR] = ACTIONS(1229), - [anon_sym_CARET] = ACTIONS(2021), - [anon_sym_AMP] = ACTIONS(2021), - [anon_sym_this] = ACTIONS(83), + [anon_sym_PLUS] = ACTIONS(1069), + [anon_sym_DASH] = ACTIONS(1069), + [anon_sym_STAR] = ACTIONS(1319), + [anon_sym_CARET] = ACTIONS(1067), + [anon_sym_AMP] = ACTIONS(1067), + [anon_sym_this] = ACTIONS(1321), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), + [anon_sym_base] = ACTIONS(1323), [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1067), + [anon_sym_unchecked] = ACTIONS(1317), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1233), + [anon_sym_throw] = ACTIONS(1325), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1235), - [anon_sym_DOT_DOT] = ACTIONS(1237), + [anon_sym_await] = ACTIONS(1327), + [anon_sym_DOT_DOT] = ACTIONS(1329), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -178107,19 +177823,19 @@ static const uint16_t ts_parse_table[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(1331), [anon_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(1333), + [anon_sym___reftype] = ACTIONS(1335), + [anon_sym___refvalue] = ACTIONS(1337), [sym_null_literal] = ACTIONS(139), [anon_sym_SQUOTE] = ACTIONS(141), [sym_integer_literal] = ACTIONS(139), [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1089), + [aux_sym_preproc_if_token1] = ACTIONS(1339), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -178135,85 +177851,256 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_interpolation_raw_start] = ACTIONS(155), [sym_raw_string_start] = ACTIONS(157), }, + [806] = { + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(3182), + [sym__name] = STATE(5888), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2286), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2262), + [sym_type] = STATE(2279), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(4253), + [sym_non_lvalue_expression] = STATE(4580), + [sym_lvalue_expression] = STATE(3192), + [sym__expression_statement_expression] = STATE(4573), + [sym_assignment_expression] = STATE(4581), + [sym_binary_expression] = STATE(4573), + [sym_postfix_unary_expression] = STATE(4581), + [sym_prefix_unary_expression] = STATE(4581), + [sym__pointer_indirection_expression] = STATE(3144), + [sym_query_expression] = STATE(4573), + [sym_from_clause] = STATE(6160), + [sym_conditional_expression] = STATE(4573), + [sym_conditional_access_expression] = STATE(4573), + [sym_as_expression] = STATE(4573), + [sym_is_expression] = STATE(4573), + [sym_is_pattern_expression] = STATE(4573), + [sym_cast_expression] = STATE(4573), + [sym_checked_expression] = STATE(4573), + [sym_invocation_expression] = STATE(4581), + [sym_switch_expression] = STATE(4573), + [sym_await_expression] = STATE(4581), + [sym_throw_expression] = STATE(4573), + [sym_element_access_expression] = STATE(3144), + [sym_interpolated_string_expression] = STATE(4573), + [sym_member_access_expression] = STATE(3144), + [sym_object_creation_expression] = STATE(4581), + [sym_parenthesized_expression] = STATE(4581), + [sym__parenthesized_lvalue_expression] = STATE(3144), + [sym_lambda_expression] = STATE(4573), + [sym__lambda_expression_init] = STATE(7491), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(4573), + [sym_anonymous_method_expression] = STATE(4573), + [sym_anonymous_object_creation_expression] = STATE(4573), + [sym_implicit_array_creation_expression] = STATE(4573), + [sym_implicit_object_creation_expression] = STATE(4573), + [sym_implicit_stackalloc_expression] = STATE(4573), + [sym_initializer_expression] = STATE(4573), + [sym_default_expression] = STATE(4573), + [sym_with_expression] = STATE(4573), + [sym_sizeof_expression] = STATE(4573), + [sym_typeof_expression] = STATE(4573), + [sym_makeref_expression] = STATE(4573), + [sym_ref_expression] = STATE(4573), + [sym_reftype_expression] = STATE(4573), + [sym_refvalue_expression] = STATE(4573), + [sym_stackalloc_expression] = STATE(4573), + [sym_range_expression] = STATE(4573), + [sym_tuple_expression] = STATE(3144), + [sym_literal] = STATE(4573), + [sym_character_literal] = STATE(4575), + [sym_string_literal] = STATE(4575), + [sym_raw_string_literal] = STATE(4575), + [sym_boolean_literal] = STATE(4575), + [sym_identifier] = STATE(2237), + [sym__reserved_identifier] = STATE(2229), + [sym_preproc_if_in_expression] = STATE(4573), + [sym_preproc_if_in_attribute_list] = STATE(5583), + [sym_preproc_region] = STATE(806), + [sym_preproc_endregion] = STATE(806), + [sym_preproc_line] = STATE(806), + [sym_preproc_pragma] = STATE(806), + [sym_preproc_nullable] = STATE(806), + [sym_preproc_error] = STATE(806), + [sym_preproc_warning] = STATE(806), + [sym_preproc_define] = STATE(806), + [sym_preproc_undef] = STATE(806), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3501), + [sym__identifier_token] = ACTIONS(1385), + [anon_sym_alias] = ACTIONS(1387), + [anon_sym_global] = ACTIONS(1387), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1389), + [anon_sym_LPAREN] = ACTIONS(1391), + [anon_sym_ref] = ACTIONS(1393), + [anon_sym_LBRACE] = ACTIONS(1395), + [anon_sym_delegate] = ACTIONS(1397), + [anon_sym_async] = ACTIONS(1045), + [anon_sym_file] = ACTIONS(1387), + [anon_sym_new] = ACTIONS(1399), + [anon_sym_readonly] = ACTIONS(2767), + [anon_sym_where] = ACTIONS(1387), + [anon_sym_notnull] = ACTIONS(1387), + [anon_sym_unmanaged] = ACTIONS(1387), + [anon_sym_checked] = ACTIONS(1401), + [anon_sym_BANG] = ACTIONS(1405), + [anon_sym_TILDE] = ACTIONS(1405), + [anon_sym_PLUS_PLUS] = ACTIONS(1405), + [anon_sym_DASH_DASH] = ACTIONS(1405), + [anon_sym_true] = ACTIONS(1407), + [anon_sym_false] = ACTIONS(1407), + [anon_sym_PLUS] = ACTIONS(1403), + [anon_sym_DASH] = ACTIONS(1403), + [anon_sym_STAR] = ACTIONS(1409), + [anon_sym_CARET] = ACTIONS(1405), + [anon_sym_AMP] = ACTIONS(1405), + [anon_sym_this] = ACTIONS(1411), + [anon_sym_scoped] = ACTIONS(1413), + [anon_sym_base] = ACTIONS(1415), + [anon_sym_var] = ACTIONS(1417), + [sym_predefined_type] = ACTIONS(1419), + [anon_sym_unchecked] = ACTIONS(1401), + [anon_sym_yield] = ACTIONS(1387), + [anon_sym_default] = ACTIONS(1421), + [anon_sym_throw] = ACTIONS(1423), + [anon_sym_when] = ACTIONS(1387), + [anon_sym_await] = ACTIONS(1425), + [anon_sym_DOT_DOT] = ACTIONS(1427), + [anon_sym_from] = ACTIONS(1429), + [anon_sym_into] = ACTIONS(1387), + [anon_sym_join] = ACTIONS(1387), + [anon_sym_on] = ACTIONS(1387), + [anon_sym_equals] = ACTIONS(1387), + [anon_sym_let] = ACTIONS(1387), + [anon_sym_orderby] = ACTIONS(1387), + [anon_sym_ascending] = ACTIONS(1387), + [anon_sym_descending] = ACTIONS(1387), + [anon_sym_group] = ACTIONS(1387), + [anon_sym_by] = ACTIONS(1387), + [anon_sym_select] = ACTIONS(1387), + [anon_sym_stackalloc] = ACTIONS(1431), + [anon_sym_sizeof] = ACTIONS(1433), + [anon_sym_typeof] = ACTIONS(1435), + [anon_sym___makeref] = ACTIONS(1437), + [anon_sym___reftype] = ACTIONS(1439), + [anon_sym___refvalue] = ACTIONS(1441), + [sym_null_literal] = ACTIONS(1443), + [anon_sym_SQUOTE] = ACTIONS(1445), + [sym_integer_literal] = ACTIONS(1443), + [sym_real_literal] = ACTIONS(1447), + [anon_sym_DQUOTE] = ACTIONS(1449), + [sym_verbatim_string_literal] = ACTIONS(1447), + [aux_sym_preproc_if_token1] = ACTIONS(1451), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + [sym_interpolation_regular_start] = ACTIONS(1453), + [sym_interpolation_verbatim_start] = ACTIONS(1455), + [sym_interpolation_raw_start] = ACTIONS(1457), + [sym_raw_string_start] = ACTIONS(1459), + }, [807] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(5910), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2247), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(5019), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3379), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3080), - [sym_postfix_unary_expression] = STATE(3111), - [sym_prefix_unary_expression] = STATE(3111), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6154), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3080), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3111), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3080), - [sym_member_access_expression] = STATE(2484), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3111), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7575), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(3080), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3080), - [sym_typeof_expression] = STATE(3080), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2484), - [sym_literal] = STATE(3080), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_block] = STATE(3454), + [sym_bracketed_argument_list] = STATE(2816), + [sym__name] = STATE(5895), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2376), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(4905), + [sym_non_lvalue_expression] = STATE(3495), + [sym_lvalue_expression] = STATE(3512), + [sym__expression_statement_expression] = STATE(3462), + [sym_assignment_expression] = STATE(3497), + [sym_binary_expression] = STATE(3462), + [sym_postfix_unary_expression] = STATE(3497), + [sym_prefix_unary_expression] = STATE(3497), + [sym__pointer_indirection_expression] = STATE(2815), + [sym_query_expression] = STATE(3462), + [sym_from_clause] = STATE(6167), + [sym_conditional_expression] = STATE(3462), + [sym_conditional_access_expression] = STATE(3462), + [sym_as_expression] = STATE(3462), + [sym_is_expression] = STATE(3462), + [sym_is_pattern_expression] = STATE(3462), + [sym_cast_expression] = STATE(3462), + [sym_checked_expression] = STATE(3462), + [sym_invocation_expression] = STATE(3497), + [sym_switch_expression] = STATE(3462), + [sym_await_expression] = STATE(3497), + [sym_throw_expression] = STATE(3462), + [sym_element_access_expression] = STATE(2815), + [sym_interpolated_string_expression] = STATE(3462), + [sym_member_access_expression] = STATE(2815), + [sym_object_creation_expression] = STATE(3497), + [sym_parenthesized_expression] = STATE(3497), + [sym__parenthesized_lvalue_expression] = STATE(2815), + [sym_lambda_expression] = STATE(3462), + [sym__lambda_expression_init] = STATE(7716), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3462), + [sym_anonymous_method_expression] = STATE(3462), + [sym_anonymous_object_creation_expression] = STATE(3462), + [sym_implicit_array_creation_expression] = STATE(3462), + [sym_implicit_object_creation_expression] = STATE(3462), + [sym_implicit_stackalloc_expression] = STATE(3462), + [sym_initializer_expression] = STATE(3462), + [sym_default_expression] = STATE(3462), + [sym_with_expression] = STATE(3462), + [sym_sizeof_expression] = STATE(3462), + [sym_typeof_expression] = STATE(3462), + [sym_makeref_expression] = STATE(3462), + [sym_ref_expression] = STATE(3462), + [sym_reftype_expression] = STATE(3462), + [sym_refvalue_expression] = STATE(3462), + [sym_stackalloc_expression] = STATE(3462), + [sym_range_expression] = STATE(3462), + [sym_tuple_expression] = STATE(2815), + [sym_literal] = STATE(3462), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3462), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(807), [sym_preproc_endregion] = STATE(807), [sym_preproc_line] = STATE(807), @@ -178223,48 +178110,47 @@ 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(3067), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), [aux_sym__lambda_expression_init_repeat1] = STATE(3367), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1481), - [anon_sym_LPAREN] = ACTIONS(895), - [anon_sym_ref] = ACTIONS(897), - [anon_sym_LBRACE] = ACTIONS(1487), - [anon_sym_RBRACE] = ACTIONS(2925), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1305), + [anon_sym_LPAREN] = ACTIONS(1803), + [anon_sym_ref] = ACTIONS(1805), + [anon_sym_LBRACE] = ACTIONS(2845), + [anon_sym_delegate] = ACTIONS(1313), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1061), + [anon_sym_new] = ACTIONS(1807), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1067), - [anon_sym_BANG] = ACTIONS(1495), - [anon_sym_TILDE] = ACTIONS(1495), - [anon_sym_PLUS_PLUS] = ACTIONS(1495), - [anon_sym_DASH_DASH] = ACTIONS(1495), + [anon_sym_checked] = ACTIONS(1317), + [anon_sym_BANG] = ACTIONS(1811), + [anon_sym_TILDE] = ACTIONS(1811), + [anon_sym_PLUS_PLUS] = ACTIONS(1811), + [anon_sym_DASH_DASH] = ACTIONS(1811), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1493), - [anon_sym_DASH] = ACTIONS(1493), - [anon_sym_STAR] = ACTIONS(905), - [anon_sym_CARET] = ACTIONS(1495), - [anon_sym_AMP] = ACTIONS(1495), - [anon_sym_this] = ACTIONS(83), + [anon_sym_PLUS] = ACTIONS(1809), + [anon_sym_DASH] = ACTIONS(1809), + [anon_sym_STAR] = ACTIONS(1813), + [anon_sym_CARET] = ACTIONS(1811), + [anon_sym_AMP] = ACTIONS(1811), + [anon_sym_this] = ACTIONS(1321), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), + [anon_sym_base] = ACTIONS(1323), [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1067), + [anon_sym_unchecked] = ACTIONS(1317), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1079), + [anon_sym_throw] = ACTIONS(1815), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1081), - [anon_sym_DOT_DOT] = ACTIONS(911), + [anon_sym_await] = ACTIONS(1817), + [anon_sym_DOT_DOT] = ACTIONS(1819), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -178277,19 +178163,19 @@ static const uint16_t ts_parse_table[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(1331), [anon_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(1333), + [anon_sym___reftype] = ACTIONS(1335), + [anon_sym___refvalue] = ACTIONS(1337), [sym_null_literal] = ACTIONS(139), [anon_sym_SQUOTE] = ACTIONS(141), [sym_integer_literal] = ACTIONS(139), [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1089), + [aux_sym_preproc_if_token1] = ACTIONS(1339), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -178306,85 +178192,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [808] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(5910), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2247), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(5151), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3379), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3080), - [sym_postfix_unary_expression] = STATE(3111), - [sym_prefix_unary_expression] = STATE(3111), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6154), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3080), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3111), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3080), - [sym_member_access_expression] = STATE(2484), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3111), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7575), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym__anonymous_object_member_declarator] = STATE(7234), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(3080), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3080), - [sym_typeof_expression] = STATE(3080), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2484), - [sym_literal] = STATE(3080), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2311), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2603), + [sym__name] = STATE(5877), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2344), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(2279), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(4404), + [sym_non_lvalue_expression] = STATE(3220), + [sym_lvalue_expression] = STATE(3281), + [sym__expression_statement_expression] = STATE(3236), + [sym_assignment_expression] = STATE(3221), + [sym_binary_expression] = STATE(3236), + [sym_postfix_unary_expression] = STATE(3221), + [sym_prefix_unary_expression] = STATE(3221), + [sym__pointer_indirection_expression] = STATE(2602), + [sym_query_expression] = STATE(3236), + [sym_from_clause] = STATE(6146), + [sym_conditional_expression] = STATE(3236), + [sym_conditional_access_expression] = STATE(3236), + [sym_as_expression] = STATE(3236), + [sym_is_expression] = STATE(3236), + [sym_is_pattern_expression] = STATE(3236), + [sym_cast_expression] = STATE(3236), + [sym_checked_expression] = STATE(3236), + [sym_invocation_expression] = STATE(3221), + [sym_switch_expression] = STATE(3236), + [sym_await_expression] = STATE(3221), + [sym_throw_expression] = STATE(3236), + [sym_element_access_expression] = STATE(2602), + [sym_interpolated_string_expression] = STATE(3236), + [sym_member_access_expression] = STATE(2602), + [sym_object_creation_expression] = STATE(3221), + [sym_parenthesized_expression] = STATE(3221), + [sym__parenthesized_lvalue_expression] = STATE(2602), + [sym_lambda_expression] = STATE(3236), + [sym__lambda_expression_init] = STATE(7323), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3236), + [sym_anonymous_method_expression] = STATE(3236), + [sym_anonymous_object_creation_expression] = STATE(3236), + [sym_implicit_array_creation_expression] = STATE(3236), + [sym_implicit_object_creation_expression] = STATE(3236), + [sym_implicit_stackalloc_expression] = STATE(3236), + [sym_initializer_expression] = STATE(3236), + [sym_default_expression] = STATE(3236), + [sym_with_expression] = STATE(3236), + [sym_sizeof_expression] = STATE(3236), + [sym_typeof_expression] = STATE(3236), + [sym_makeref_expression] = STATE(3236), + [sym_ref_expression] = STATE(3236), + [sym_reftype_expression] = STATE(3236), + [sym_refvalue_expression] = STATE(3236), + [sym_stackalloc_expression] = STATE(3236), + [sym_range_expression] = STATE(3236), + [sym_tuple_expression] = STATE(2602), + [sym_literal] = STATE(3236), + [sym_character_literal] = STATE(3272), + [sym_string_literal] = STATE(3272), + [sym_raw_string_literal] = STATE(3272), + [sym_boolean_literal] = STATE(3272), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3236), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(808), [sym_preproc_endregion] = STATE(808), [sym_preproc_line] = STATE(808), @@ -178394,47 +178279,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(808), [sym_preproc_define] = STATE(808), [sym_preproc_undef] = STATE(808), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3379), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1481), - [anon_sym_LPAREN] = ACTIONS(895), - [anon_sym_ref] = ACTIONS(897), - [anon_sym_LBRACE] = ACTIONS(1487), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1149), + [anon_sym_LPAREN] = ACTIONS(1531), + [anon_sym_ref] = ACTIONS(1533), + [anon_sym_LBRACE] = ACTIONS(1155), + [anon_sym_delegate] = ACTIONS(1157), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1061), + [anon_sym_new] = ACTIONS(1535), + [anon_sym_readonly] = ACTIONS(2767), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1067), - [anon_sym_BANG] = ACTIONS(1495), - [anon_sym_TILDE] = ACTIONS(1495), - [anon_sym_PLUS_PLUS] = ACTIONS(1495), - [anon_sym_DASH_DASH] = ACTIONS(1495), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1493), - [anon_sym_DASH] = ACTIONS(1493), - [anon_sym_STAR] = ACTIONS(905), - [anon_sym_CARET] = ACTIONS(1495), - [anon_sym_AMP] = ACTIONS(1495), - [anon_sym_this] = ACTIONS(83), + [anon_sym_checked] = ACTIONS(1163), + [anon_sym_BANG] = ACTIONS(1539), + [anon_sym_TILDE] = ACTIONS(1539), + [anon_sym_PLUS_PLUS] = ACTIONS(1539), + [anon_sym_DASH_DASH] = ACTIONS(1539), + [anon_sym_true] = ACTIONS(1169), + [anon_sym_false] = ACTIONS(1169), + [anon_sym_PLUS] = ACTIONS(1537), + [anon_sym_DASH] = ACTIONS(1537), + [anon_sym_STAR] = ACTIONS(1541), + [anon_sym_CARET] = ACTIONS(1539), + [anon_sym_AMP] = ACTIONS(1539), + [anon_sym_this] = ACTIONS(1173), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), + [anon_sym_base] = ACTIONS(1175), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1067), + [sym_predefined_type] = ACTIONS(1177), + [anon_sym_unchecked] = ACTIONS(1163), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1079), + [anon_sym_default] = ACTIONS(1179), + [anon_sym_throw] = ACTIONS(1543), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1081), - [anon_sym_DOT_DOT] = ACTIONS(911), + [anon_sym_await] = ACTIONS(1545), + [anon_sym_DOT_DOT] = ACTIONS(1547), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -178447,19 +178333,19 @@ static const uint16_t ts_parse_table[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(1089), + [anon_sym_stackalloc] = ACTIONS(1187), + [anon_sym_sizeof] = ACTIONS(1189), + [anon_sym_typeof] = ACTIONS(1191), + [anon_sym___makeref] = ACTIONS(1193), + [anon_sym___reftype] = ACTIONS(1195), + [anon_sym___refvalue] = ACTIONS(1197), + [sym_null_literal] = ACTIONS(1199), + [anon_sym_SQUOTE] = ACTIONS(1201), + [sym_integer_literal] = ACTIONS(1199), + [sym_real_literal] = ACTIONS(1203), + [anon_sym_DQUOTE] = ACTIONS(1205), + [sym_verbatim_string_literal] = ACTIONS(1203), + [aux_sym_preproc_if_token1] = ACTIONS(1207), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -178470,90 +178356,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(1209), + [sym_interpolation_verbatim_start] = ACTIONS(1211), + [sym_interpolation_raw_start] = ACTIONS(1213), + [sym_raw_string_start] = ACTIONS(1215), }, [809] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(5910), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2247), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(5047), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3379), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3080), - [sym_postfix_unary_expression] = STATE(3111), - [sym_prefix_unary_expression] = STATE(3111), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6154), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3080), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3111), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3080), - [sym_member_access_expression] = STATE(2484), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3111), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7575), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(3080), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3080), - [sym_typeof_expression] = STATE(3080), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2484), - [sym_literal] = STATE(3080), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_block] = STATE(3058), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(5152), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2196), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(5085), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3510), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3102), + [sym_postfix_unary_expression] = STATE(3079), + [sym_prefix_unary_expression] = STATE(3079), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6134), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3102), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3079), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3102), + [sym_member_access_expression] = STATE(2472), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3079), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7425), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(3102), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3102), + [sym_typeof_expression] = STATE(3102), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2472), + [sym_literal] = STATE(3102), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(809), [sym_preproc_endregion] = STATE(809), [sym_preproc_line] = STATE(809), @@ -178563,48 +178450,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(809), [sym_preproc_define] = STATE(809), [sym_preproc_undef] = STATE(809), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1481), - [anon_sym_LPAREN] = ACTIONS(895), - [anon_sym_RPAREN] = ACTIONS(2927), - [anon_sym_ref] = ACTIONS(897), - [anon_sym_LBRACE] = ACTIONS(1487), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1479), + [anon_sym_LPAREN] = ACTIONS(43), + [anon_sym_ref] = ACTIONS(715), + [anon_sym_LBRACE] = ACTIONS(2855), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1061), + [anon_sym_new] = ACTIONS(1059), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1067), - [anon_sym_BANG] = ACTIONS(1495), - [anon_sym_TILDE] = ACTIONS(1495), - [anon_sym_PLUS_PLUS] = ACTIONS(1495), - [anon_sym_DASH_DASH] = ACTIONS(1495), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(1525), + [anon_sym_TILDE] = ACTIONS(1525), + [anon_sym_PLUS_PLUS] = ACTIONS(1525), + [anon_sym_DASH_DASH] = ACTIONS(1525), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1493), - [anon_sym_DASH] = ACTIONS(1493), - [anon_sym_STAR] = ACTIONS(905), - [anon_sym_CARET] = ACTIONS(1495), - [anon_sym_AMP] = ACTIONS(1495), + [anon_sym_PLUS] = ACTIONS(1523), + [anon_sym_DASH] = ACTIONS(1523), + [anon_sym_STAR] = ACTIONS(81), + [anon_sym_CARET] = ACTIONS(1525), + [anon_sym_AMP] = ACTIONS(1525), [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(1067), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1079), + [anon_sym_throw] = ACTIONS(1527), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1081), - [anon_sym_DOT_DOT] = ACTIONS(911), + [anon_sym_await] = ACTIONS(1529), + [anon_sym_DOT_DOT] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -178629,7 +178515,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(1089), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -178646,84 +178532,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [810] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(5910), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2247), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(5048), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3379), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3080), - [sym_postfix_unary_expression] = STATE(3111), - [sym_prefix_unary_expression] = STATE(3111), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6154), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3080), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3111), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3080), - [sym_member_access_expression] = STATE(2484), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3111), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7575), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(3080), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3080), - [sym_typeof_expression] = STATE(3080), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2484), - [sym_literal] = STATE(3080), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(5152), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2196), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(5448), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3356), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3102), + [sym_postfix_unary_expression] = STATE(3079), + [sym_prefix_unary_expression] = STATE(3079), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6134), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3102), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3079), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3102), + [sym_member_access_expression] = STATE(2472), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3079), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7627), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(3102), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3102), + [sym_typeof_expression] = STATE(3102), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2472), + [sym_literal] = STATE(3102), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(810), [sym_preproc_endregion] = STATE(810), [sym_preproc_line] = STATE(810), @@ -178733,48 +178619,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(810), [sym_preproc_define] = STATE(810), [sym_preproc_undef] = STATE(810), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), + [anon_sym_SEMI] = ACTIONS(2927), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1481), - [anon_sym_LPAREN] = ACTIONS(895), - [anon_sym_RPAREN] = ACTIONS(2929), - [anon_sym_ref] = ACTIONS(897), - [anon_sym_LBRACE] = ACTIONS(1487), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1479), + [anon_sym_LPAREN] = ACTIONS(1511), + [anon_sym_ref] = ACTIONS(1513), + [anon_sym_LBRACE] = ACTIONS(1481), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1061), + [anon_sym_new] = ACTIONS(1515), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1067), - [anon_sym_BANG] = ACTIONS(1495), - [anon_sym_TILDE] = ACTIONS(1495), - [anon_sym_PLUS_PLUS] = ACTIONS(1495), - [anon_sym_DASH_DASH] = ACTIONS(1495), + [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(1493), - [anon_sym_DASH] = ACTIONS(1493), - [anon_sym_STAR] = ACTIONS(905), - [anon_sym_CARET] = ACTIONS(1495), - [anon_sym_AMP] = ACTIONS(1495), + [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(1067), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1079), + [anon_sym_throw] = ACTIONS(1517), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1081), - [anon_sym_DOT_DOT] = ACTIONS(911), + [anon_sym_await] = ACTIONS(1519), + [anon_sym_DOT_DOT] = ACTIONS(1521), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -178799,7 +178685,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(1089), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -178816,84 +178702,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [811] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(5910), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2247), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(5020), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3379), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3080), - [sym_postfix_unary_expression] = STATE(3111), - [sym_prefix_unary_expression] = STATE(3111), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6154), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3080), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3111), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3080), - [sym_member_access_expression] = STATE(2484), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3111), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7575), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(3080), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3080), - [sym_typeof_expression] = STATE(3080), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2484), - [sym_literal] = STATE(3080), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_block] = STATE(3279), + [sym_bracketed_argument_list] = STATE(2603), + [sym__name] = STATE(5862), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2193), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(4746), + [sym_non_lvalue_expression] = STATE(3220), + [sym_lvalue_expression] = STATE(3403), + [sym__expression_statement_expression] = STATE(3236), + [sym_assignment_expression] = STATE(3221), + [sym_binary_expression] = STATE(3236), + [sym_postfix_unary_expression] = STATE(3221), + [sym_prefix_unary_expression] = STATE(3221), + [sym__pointer_indirection_expression] = STATE(2602), + [sym_query_expression] = STATE(3236), + [sym_from_clause] = STATE(6145), + [sym_conditional_expression] = STATE(3236), + [sym_conditional_access_expression] = STATE(3236), + [sym_as_expression] = STATE(3236), + [sym_is_expression] = STATE(3236), + [sym_is_pattern_expression] = STATE(3236), + [sym_cast_expression] = STATE(3236), + [sym_checked_expression] = STATE(3236), + [sym_invocation_expression] = STATE(3221), + [sym_switch_expression] = STATE(3236), + [sym_await_expression] = STATE(3221), + [sym_throw_expression] = STATE(3236), + [sym_element_access_expression] = STATE(2602), + [sym_interpolated_string_expression] = STATE(3236), + [sym_member_access_expression] = STATE(2602), + [sym_object_creation_expression] = STATE(3221), + [sym_parenthesized_expression] = STATE(3221), + [sym__parenthesized_lvalue_expression] = STATE(2602), + [sym_lambda_expression] = STATE(3236), + [sym__lambda_expression_init] = STATE(7639), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3236), + [sym_anonymous_method_expression] = STATE(3236), + [sym_anonymous_object_creation_expression] = STATE(3236), + [sym_implicit_array_creation_expression] = STATE(3236), + [sym_implicit_object_creation_expression] = STATE(3236), + [sym_implicit_stackalloc_expression] = STATE(3236), + [sym_initializer_expression] = STATE(3236), + [sym_default_expression] = STATE(3236), + [sym_with_expression] = STATE(3236), + [sym_sizeof_expression] = STATE(3236), + [sym_typeof_expression] = STATE(3236), + [sym_makeref_expression] = STATE(3236), + [sym_ref_expression] = STATE(3236), + [sym_reftype_expression] = STATE(3236), + [sym_refvalue_expression] = STATE(3236), + [sym_stackalloc_expression] = STATE(3236), + [sym_range_expression] = STATE(3236), + [sym_tuple_expression] = STATE(2602), + [sym_literal] = STATE(3236), + [sym_character_literal] = STATE(3272), + [sym_string_literal] = STATE(3272), + [sym_raw_string_literal] = STATE(3272), + [sym_boolean_literal] = STATE(3272), + [sym_identifier] = STATE(2261), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3236), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(811), [sym_preproc_endregion] = STATE(811), [sym_preproc_line] = STATE(811), @@ -178903,48 +178790,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(811), [sym_preproc_define] = STATE(811), [sym_preproc_undef] = STATE(811), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3379), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1481), - [anon_sym_LPAREN] = ACTIONS(895), - [anon_sym_RPAREN] = ACTIONS(2931), - [anon_sym_ref] = ACTIONS(897), - [anon_sym_LBRACE] = ACTIONS(1487), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1149), + [anon_sym_LPAREN] = ACTIONS(1549), + [anon_sym_ref] = ACTIONS(1551), + [anon_sym_LBRACE] = ACTIONS(2843), + [anon_sym_delegate] = ACTIONS(1157), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1061), + [anon_sym_new] = ACTIONS(1159), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1067), - [anon_sym_BANG] = ACTIONS(1495), - [anon_sym_TILDE] = ACTIONS(1495), - [anon_sym_PLUS_PLUS] = ACTIONS(1495), - [anon_sym_DASH_DASH] = ACTIONS(1495), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1493), - [anon_sym_DASH] = ACTIONS(1493), - [anon_sym_STAR] = ACTIONS(905), - [anon_sym_CARET] = ACTIONS(1495), - [anon_sym_AMP] = ACTIONS(1495), - [anon_sym_this] = ACTIONS(83), + [anon_sym_checked] = ACTIONS(1163), + [anon_sym_BANG] = ACTIONS(1555), + [anon_sym_TILDE] = ACTIONS(1555), + [anon_sym_PLUS_PLUS] = ACTIONS(1555), + [anon_sym_DASH_DASH] = ACTIONS(1555), + [anon_sym_true] = ACTIONS(1169), + [anon_sym_false] = ACTIONS(1169), + [anon_sym_PLUS] = ACTIONS(1553), + [anon_sym_DASH] = ACTIONS(1553), + [anon_sym_STAR] = ACTIONS(1557), + [anon_sym_CARET] = ACTIONS(1555), + [anon_sym_AMP] = ACTIONS(1555), + [anon_sym_this] = ACTIONS(1173), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), + [anon_sym_base] = ACTIONS(1175), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1067), + [sym_predefined_type] = ACTIONS(1177), + [anon_sym_unchecked] = ACTIONS(1163), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1079), + [anon_sym_default] = ACTIONS(1179), + [anon_sym_throw] = ACTIONS(1559), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1081), - [anon_sym_DOT_DOT] = ACTIONS(911), + [anon_sym_await] = ACTIONS(1561), + [anon_sym_DOT_DOT] = ACTIONS(1563), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -178957,19 +178843,19 @@ static const uint16_t ts_parse_table[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(1089), + [anon_sym_stackalloc] = ACTIONS(1187), + [anon_sym_sizeof] = ACTIONS(1189), + [anon_sym_typeof] = ACTIONS(1191), + [anon_sym___makeref] = ACTIONS(1193), + [anon_sym___reftype] = ACTIONS(1195), + [anon_sym___refvalue] = ACTIONS(1197), + [sym_null_literal] = ACTIONS(1199), + [anon_sym_SQUOTE] = ACTIONS(1201), + [sym_integer_literal] = ACTIONS(1199), + [sym_real_literal] = ACTIONS(1203), + [anon_sym_DQUOTE] = ACTIONS(1205), + [sym_verbatim_string_literal] = ACTIONS(1203), + [aux_sym_preproc_if_token1] = ACTIONS(1207), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -178980,90 +178866,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(151), - [sym_interpolation_verbatim_start] = ACTIONS(153), - [sym_interpolation_raw_start] = ACTIONS(155), - [sym_raw_string_start] = ACTIONS(157), + [sym_interpolation_regular_start] = ACTIONS(1209), + [sym_interpolation_verbatim_start] = ACTIONS(1211), + [sym_interpolation_raw_start] = ACTIONS(1213), + [sym_raw_string_start] = ACTIONS(1215), }, [812] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(5910), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2247), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(5019), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3379), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3080), - [sym_postfix_unary_expression] = STATE(3111), - [sym_prefix_unary_expression] = STATE(3111), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6154), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3080), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3111), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3080), - [sym_member_access_expression] = STATE(2484), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3111), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7575), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(3080), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3080), - [sym_typeof_expression] = STATE(3080), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2484), - [sym_literal] = STATE(3080), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2816), + [sym__name] = STATE(5895), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2376), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(2279), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(4909), + [sym_non_lvalue_expression] = STATE(3495), + [sym_lvalue_expression] = STATE(3512), + [sym__expression_statement_expression] = STATE(3462), + [sym_assignment_expression] = STATE(3497), + [sym_binary_expression] = STATE(3462), + [sym_postfix_unary_expression] = STATE(3497), + [sym_prefix_unary_expression] = STATE(3497), + [sym__pointer_indirection_expression] = STATE(2815), + [sym_query_expression] = STATE(3462), + [sym_from_clause] = STATE(6167), + [sym_conditional_expression] = STATE(3462), + [sym_conditional_access_expression] = STATE(3462), + [sym_as_expression] = STATE(3462), + [sym_is_expression] = STATE(3462), + [sym_is_pattern_expression] = STATE(3462), + [sym_cast_expression] = STATE(3462), + [sym_checked_expression] = STATE(3462), + [sym_invocation_expression] = STATE(3497), + [sym_switch_expression] = STATE(3462), + [sym_await_expression] = STATE(3497), + [sym_throw_expression] = STATE(3462), + [sym_element_access_expression] = STATE(2815), + [sym_interpolated_string_expression] = STATE(3462), + [sym_member_access_expression] = STATE(2815), + [sym_object_creation_expression] = STATE(3497), + [sym_parenthesized_expression] = STATE(3497), + [sym__parenthesized_lvalue_expression] = STATE(2815), + [sym_lambda_expression] = STATE(3462), + [sym__lambda_expression_init] = STATE(7716), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3462), + [sym_anonymous_method_expression] = STATE(3462), + [sym_anonymous_object_creation_expression] = STATE(3462), + [sym_implicit_array_creation_expression] = STATE(3462), + [sym_implicit_object_creation_expression] = STATE(3462), + [sym_implicit_stackalloc_expression] = STATE(3462), + [sym_initializer_expression] = STATE(3462), + [sym_default_expression] = STATE(3462), + [sym_with_expression] = STATE(3462), + [sym_sizeof_expression] = STATE(3462), + [sym_typeof_expression] = STATE(3462), + [sym_makeref_expression] = STATE(3462), + [sym_ref_expression] = STATE(3462), + [sym_reftype_expression] = STATE(3462), + [sym_refvalue_expression] = STATE(3462), + [sym_stackalloc_expression] = STATE(3462), + [sym_range_expression] = STATE(3462), + [sym_tuple_expression] = STATE(2815), + [sym_literal] = STATE(3462), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3462), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(812), [sym_preproc_endregion] = STATE(812), [sym_preproc_line] = STATE(812), @@ -179073,48 +178959,48 @@ 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(3067), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), [aux_sym__lambda_expression_init_repeat1] = STATE(3367), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1481), - [anon_sym_LPAREN] = ACTIONS(895), - [anon_sym_ref] = ACTIONS(897), - [anon_sym_LBRACE] = ACTIONS(1487), - [anon_sym_RBRACE] = ACTIONS(2933), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1305), + [anon_sym_LPAREN] = ACTIONS(1803), + [anon_sym_ref] = ACTIONS(1805), + [anon_sym_LBRACE] = ACTIONS(1311), + [anon_sym_delegate] = ACTIONS(1313), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1061), + [anon_sym_new] = ACTIONS(1807), + [anon_sym_readonly] = ACTIONS(2767), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1067), - [anon_sym_BANG] = ACTIONS(1495), - [anon_sym_TILDE] = ACTIONS(1495), - [anon_sym_PLUS_PLUS] = ACTIONS(1495), - [anon_sym_DASH_DASH] = ACTIONS(1495), + [anon_sym_checked] = ACTIONS(1317), + [anon_sym_BANG] = ACTIONS(1811), + [anon_sym_TILDE] = ACTIONS(1811), + [anon_sym_PLUS_PLUS] = ACTIONS(1811), + [anon_sym_DASH_DASH] = ACTIONS(1811), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1493), - [anon_sym_DASH] = ACTIONS(1493), - [anon_sym_STAR] = ACTIONS(905), - [anon_sym_CARET] = ACTIONS(1495), - [anon_sym_AMP] = ACTIONS(1495), - [anon_sym_this] = ACTIONS(83), + [anon_sym_PLUS] = ACTIONS(1809), + [anon_sym_DASH] = ACTIONS(1809), + [anon_sym_STAR] = ACTIONS(1813), + [anon_sym_CARET] = ACTIONS(1811), + [anon_sym_AMP] = ACTIONS(1811), + [anon_sym_this] = ACTIONS(1321), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), + [anon_sym_base] = ACTIONS(1323), [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1067), + [anon_sym_unchecked] = ACTIONS(1317), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1079), + [anon_sym_throw] = ACTIONS(1815), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1081), - [anon_sym_DOT_DOT] = ACTIONS(911), + [anon_sym_await] = ACTIONS(1817), + [anon_sym_DOT_DOT] = ACTIONS(1819), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -179127,19 +179013,19 @@ static const uint16_t ts_parse_table[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(1331), [anon_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(1333), + [anon_sym___reftype] = ACTIONS(1335), + [anon_sym___refvalue] = ACTIONS(1337), [sym_null_literal] = ACTIONS(139), [anon_sym_SQUOTE] = ACTIONS(141), [sym_integer_literal] = ACTIONS(139), [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1089), + [aux_sym_preproc_if_token1] = ACTIONS(1339), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -179156,84 +179042,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [813] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(5160), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2204), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(5521), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3461), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3080), - [sym_postfix_unary_expression] = STATE(3111), - [sym_prefix_unary_expression] = STATE(3111), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6154), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3080), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3111), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3080), - [sym_member_access_expression] = STATE(2484), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3111), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7547), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(3080), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3080), - [sym_typeof_expression] = STATE(3080), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2484), - [sym_literal] = STATE(3080), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2603), + [sym__name] = STATE(5862), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2193), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(2279), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(4650), + [sym_non_lvalue_expression] = STATE(3220), + [sym_lvalue_expression] = STATE(3403), + [sym__expression_statement_expression] = STATE(3236), + [sym_assignment_expression] = STATE(3221), + [sym_binary_expression] = STATE(3236), + [sym_postfix_unary_expression] = STATE(3221), + [sym_prefix_unary_expression] = STATE(3221), + [sym__pointer_indirection_expression] = STATE(2602), + [sym_query_expression] = STATE(3236), + [sym_from_clause] = STATE(6145), + [sym_conditional_expression] = STATE(3236), + [sym_conditional_access_expression] = STATE(3236), + [sym_as_expression] = STATE(3236), + [sym_is_expression] = STATE(3236), + [sym_is_pattern_expression] = STATE(3236), + [sym_cast_expression] = STATE(3236), + [sym_checked_expression] = STATE(3236), + [sym_invocation_expression] = STATE(3221), + [sym_switch_expression] = STATE(3236), + [sym_await_expression] = STATE(3221), + [sym_throw_expression] = STATE(3236), + [sym_element_access_expression] = STATE(2602), + [sym_interpolated_string_expression] = STATE(3236), + [sym_member_access_expression] = STATE(2602), + [sym_object_creation_expression] = STATE(3221), + [sym_parenthesized_expression] = STATE(3221), + [sym__parenthesized_lvalue_expression] = STATE(2602), + [sym_lambda_expression] = STATE(3236), + [sym__lambda_expression_init] = STATE(7639), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3236), + [sym_anonymous_method_expression] = STATE(3236), + [sym_anonymous_object_creation_expression] = STATE(3236), + [sym_implicit_array_creation_expression] = STATE(3236), + [sym_implicit_object_creation_expression] = STATE(3236), + [sym_implicit_stackalloc_expression] = STATE(3236), + [sym_initializer_expression] = STATE(3236), + [sym_default_expression] = STATE(3236), + [sym_with_expression] = STATE(3236), + [sym_sizeof_expression] = STATE(3236), + [sym_typeof_expression] = STATE(3236), + [sym_makeref_expression] = STATE(3236), + [sym_ref_expression] = STATE(3236), + [sym_reftype_expression] = STATE(3236), + [sym_refvalue_expression] = STATE(3236), + [sym_stackalloc_expression] = STATE(3236), + [sym_range_expression] = STATE(3236), + [sym_tuple_expression] = STATE(2602), + [sym_literal] = STATE(3236), + [sym_character_literal] = STATE(3272), + [sym_string_literal] = STATE(3272), + [sym_raw_string_literal] = STATE(3272), + [sym_boolean_literal] = STATE(3272), + [sym_identifier] = STATE(2261), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3236), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(813), [sym_preproc_endregion] = STATE(813), [sym_preproc_line] = STATE(813), @@ -179243,48 +179129,48 @@ 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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3379), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), - [anon_sym_SEMI] = ACTIONS(2935), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1481), - [anon_sym_LPAREN] = ACTIONS(1497), - [anon_sym_ref] = ACTIONS(1499), - [anon_sym_LBRACE] = ACTIONS(1487), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1149), + [anon_sym_LPAREN] = ACTIONS(1549), + [anon_sym_ref] = ACTIONS(1551), + [anon_sym_LBRACE] = ACTIONS(1155), + [anon_sym_delegate] = ACTIONS(1157), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1501), + [anon_sym_new] = ACTIONS(1159), + [anon_sym_readonly] = ACTIONS(2767), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = 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(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(1163), + [anon_sym_BANG] = ACTIONS(1555), + [anon_sym_TILDE] = ACTIONS(1555), + [anon_sym_PLUS_PLUS] = ACTIONS(1555), + [anon_sym_DASH_DASH] = ACTIONS(1555), + [anon_sym_true] = ACTIONS(1169), + [anon_sym_false] = ACTIONS(1169), + [anon_sym_PLUS] = ACTIONS(1553), + [anon_sym_DASH] = ACTIONS(1553), + [anon_sym_STAR] = ACTIONS(1557), + [anon_sym_CARET] = ACTIONS(1555), + [anon_sym_AMP] = ACTIONS(1555), + [anon_sym_this] = ACTIONS(1173), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), + [anon_sym_base] = ACTIONS(1175), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1067), + [sym_predefined_type] = ACTIONS(1177), + [anon_sym_unchecked] = ACTIONS(1163), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1503), + [anon_sym_default] = ACTIONS(1179), + [anon_sym_throw] = ACTIONS(1559), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1505), - [anon_sym_DOT_DOT] = ACTIONS(1507), + [anon_sym_await] = ACTIONS(1561), + [anon_sym_DOT_DOT] = ACTIONS(1563), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -179297,19 +179183,19 @@ static const uint16_t ts_parse_table[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(1089), + [anon_sym_stackalloc] = ACTIONS(1187), + [anon_sym_sizeof] = ACTIONS(1189), + [anon_sym_typeof] = ACTIONS(1191), + [anon_sym___makeref] = ACTIONS(1193), + [anon_sym___reftype] = ACTIONS(1195), + [anon_sym___refvalue] = ACTIONS(1197), + [sym_null_literal] = ACTIONS(1199), + [anon_sym_SQUOTE] = ACTIONS(1201), + [sym_integer_literal] = ACTIONS(1199), + [sym_real_literal] = ACTIONS(1203), + [anon_sym_DQUOTE] = ACTIONS(1205), + [sym_verbatim_string_literal] = ACTIONS(1203), + [aux_sym_preproc_if_token1] = ACTIONS(1207), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -179320,91 +179206,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(1209), + [sym_interpolation_verbatim_start] = ACTIONS(1211), + [sym_interpolation_raw_start] = ACTIONS(1213), + [sym_raw_string_start] = ACTIONS(1215), }, [814] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2914), - [sym__name] = STATE(5873), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2362), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(4036), - [sym_non_lvalue_expression] = STATE(3880), - [sym_lvalue_expression] = STATE(3092), - [sym__expression_statement_expression] = STATE(3873), - [sym_assignment_expression] = STATE(3881), - [sym_binary_expression] = STATE(3873), - [sym_postfix_unary_expression] = STATE(3881), - [sym_prefix_unary_expression] = STATE(3881), - [sym__pointer_indirection_expression] = STATE(2913), - [sym_query_expression] = STATE(3873), - [sym_from_clause] = STATE(6168), - [sym__ordering] = STATE(6306), - [sym_conditional_expression] = STATE(3873), - [sym_conditional_access_expression] = STATE(3873), - [sym_as_expression] = STATE(3873), - [sym_is_expression] = STATE(3873), - [sym_is_pattern_expression] = STATE(3873), - [sym_cast_expression] = STATE(3873), - [sym_checked_expression] = STATE(3873), - [sym_invocation_expression] = STATE(3881), - [sym_switch_expression] = STATE(3873), - [sym_await_expression] = STATE(3881), - [sym_throw_expression] = STATE(3873), - [sym_element_access_expression] = STATE(2913), - [sym_interpolated_string_expression] = STATE(3873), - [sym_member_access_expression] = STATE(2913), - [sym_object_creation_expression] = STATE(3881), - [sym_parenthesized_expression] = STATE(3881), - [sym__parenthesized_lvalue_expression] = STATE(2913), - [sym_lambda_expression] = STATE(3873), - [sym__lambda_expression_init] = STATE(7533), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3873), - [sym_anonymous_method_expression] = STATE(3873), - [sym_anonymous_object_creation_expression] = STATE(3873), - [sym_implicit_array_creation_expression] = STATE(3873), - [sym_implicit_object_creation_expression] = STATE(3873), - [sym_implicit_stackalloc_expression] = STATE(3873), - [sym_initializer_expression] = STATE(3873), - [sym_default_expression] = STATE(3873), - [sym_with_expression] = STATE(3873), - [sym_sizeof_expression] = STATE(3873), - [sym_typeof_expression] = STATE(3873), - [sym_makeref_expression] = STATE(3873), - [sym_ref_expression] = STATE(3873), - [sym_reftype_expression] = STATE(3873), - [sym_refvalue_expression] = STATE(3873), - [sym_stackalloc_expression] = STATE(3873), - [sym_range_expression] = STATE(3873), - [sym_tuple_expression] = STATE(2913), - [sym_literal] = STATE(3873), - [sym_character_literal] = STATE(3877), - [sym_string_literal] = STATE(3877), - [sym_raw_string_literal] = STATE(3877), - [sym_boolean_literal] = STATE(3877), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3873), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_block] = STATE(2984), + [sym_bracketed_argument_list] = STATE(2416), + [sym__name] = STATE(5890), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2193), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(4104), + [sym_non_lvalue_expression] = STATE(3040), + [sym_lvalue_expression] = STATE(3109), + [sym__expression_statement_expression] = STATE(3035), + [sym_assignment_expression] = STATE(3043), + [sym_binary_expression] = STATE(3035), + [sym_postfix_unary_expression] = STATE(3043), + [sym_prefix_unary_expression] = STATE(3043), + [sym__pointer_indirection_expression] = STATE(2415), + [sym_query_expression] = STATE(3035), + [sym_from_clause] = STATE(6138), + [sym_conditional_expression] = STATE(3035), + [sym_conditional_access_expression] = STATE(3035), + [sym_as_expression] = STATE(3035), + [sym_is_expression] = STATE(3035), + [sym_is_pattern_expression] = STATE(3035), + [sym_cast_expression] = STATE(3035), + [sym_checked_expression] = STATE(3035), + [sym_invocation_expression] = STATE(3043), + [sym_switch_expression] = STATE(3035), + [sym_await_expression] = STATE(3043), + [sym_throw_expression] = STATE(3035), + [sym_element_access_expression] = STATE(2415), + [sym_interpolated_string_expression] = STATE(3035), + [sym_member_access_expression] = STATE(2415), + [sym_object_creation_expression] = STATE(3043), + [sym_parenthesized_expression] = STATE(3043), + [sym__parenthesized_lvalue_expression] = STATE(2415), + [sym_lambda_expression] = STATE(3035), + [sym__lambda_expression_init] = STATE(7374), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3035), + [sym_anonymous_method_expression] = STATE(3035), + [sym_anonymous_object_creation_expression] = STATE(3035), + [sym_implicit_array_creation_expression] = STATE(3035), + [sym_implicit_object_creation_expression] = STATE(3035), + [sym_implicit_stackalloc_expression] = STATE(3035), + [sym_initializer_expression] = STATE(3035), + [sym_default_expression] = STATE(3035), + [sym_with_expression] = STATE(3035), + [sym_sizeof_expression] = STATE(3035), + [sym_typeof_expression] = STATE(3035), + [sym_makeref_expression] = STATE(3035), + [sym_ref_expression] = STATE(3035), + [sym_reftype_expression] = STATE(3035), + [sym_refvalue_expression] = STATE(3035), + [sym_stackalloc_expression] = STATE(3035), + [sym_range_expression] = STATE(3035), + [sym_tuple_expression] = STATE(2415), + [sym_literal] = STATE(3035), + [sym_character_literal] = STATE(3037), + [sym_string_literal] = STATE(3037), + [sym_raw_string_literal] = STATE(3037), + [sym_boolean_literal] = STATE(3037), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3035), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(814), [sym_preproc_endregion] = STATE(814), [sym_preproc_line] = STATE(814), @@ -179414,47 +179300,47 @@ 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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3382), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3455), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1627), - [anon_sym_LPAREN] = ACTIONS(1961), - [anon_sym_ref] = ACTIONS(1963), - [anon_sym_LBRACE] = ACTIONS(1633), - [anon_sym_delegate] = ACTIONS(1635), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1239), + [anon_sym_LPAREN] = ACTIONS(1241), + [anon_sym_ref] = ACTIONS(1243), + [anon_sym_LBRACE] = ACTIONS(2839), + [anon_sym_delegate] = ACTIONS(1247), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1637), + [anon_sym_new] = ACTIONS(1249), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1639), - [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(1645), - [anon_sym_false] = ACTIONS(1645), - [anon_sym_PLUS] = ACTIONS(1965), - [anon_sym_DASH] = ACTIONS(1965), - [anon_sym_STAR] = ACTIONS(1647), - [anon_sym_CARET] = ACTIONS(1967), - [anon_sym_AMP] = ACTIONS(1967), - [anon_sym_this] = ACTIONS(1649), + [anon_sym_checked] = ACTIONS(1251), + [anon_sym_BANG] = ACTIONS(1255), + [anon_sym_TILDE] = ACTIONS(1255), + [anon_sym_PLUS_PLUS] = ACTIONS(1255), + [anon_sym_DASH_DASH] = ACTIONS(1255), + [anon_sym_true] = ACTIONS(1257), + [anon_sym_false] = ACTIONS(1257), + [anon_sym_PLUS] = ACTIONS(1253), + [anon_sym_DASH] = ACTIONS(1253), + [anon_sym_STAR] = ACTIONS(1259), + [anon_sym_CARET] = ACTIONS(1255), + [anon_sym_AMP] = ACTIONS(1255), + [anon_sym_this] = ACTIONS(1261), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1651), + [anon_sym_base] = ACTIONS(1263), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1653), - [anon_sym_unchecked] = ACTIONS(1639), + [sym_predefined_type] = ACTIONS(1265), + [anon_sym_unchecked] = ACTIONS(1251), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1655), - [anon_sym_throw] = ACTIONS(1969), + [anon_sym_default] = ACTIONS(1267), + [anon_sym_throw] = ACTIONS(1269), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1971), - [anon_sym_DOT_DOT] = ACTIONS(1973), + [anon_sym_await] = ACTIONS(1271), + [anon_sym_DOT_DOT] = ACTIONS(1273), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -179467,19 +179353,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1663), - [anon_sym_sizeof] = ACTIONS(1665), - [anon_sym_typeof] = ACTIONS(1667), - [anon_sym___makeref] = ACTIONS(1669), - [anon_sym___reftype] = ACTIONS(1671), - [anon_sym___refvalue] = ACTIONS(1673), - [sym_null_literal] = ACTIONS(1675), - [anon_sym_SQUOTE] = ACTIONS(1677), - [sym_integer_literal] = ACTIONS(1675), - [sym_real_literal] = ACTIONS(1679), - [anon_sym_DQUOTE] = ACTIONS(1681), - [sym_verbatim_string_literal] = ACTIONS(1679), - [aux_sym_preproc_if_token1] = ACTIONS(1683), + [anon_sym_stackalloc] = ACTIONS(1275), + [anon_sym_sizeof] = ACTIONS(1277), + [anon_sym_typeof] = ACTIONS(1279), + [anon_sym___makeref] = ACTIONS(1281), + [anon_sym___reftype] = ACTIONS(1283), + [anon_sym___refvalue] = ACTIONS(1285), + [sym_null_literal] = ACTIONS(1287), + [anon_sym_SQUOTE] = ACTIONS(1289), + [sym_integer_literal] = ACTIONS(1287), + [sym_real_literal] = ACTIONS(1291), + [anon_sym_DQUOTE] = ACTIONS(1293), + [sym_verbatim_string_literal] = ACTIONS(1291), + [aux_sym_preproc_if_token1] = ACTIONS(1295), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -179490,90 +179376,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1685), - [sym_interpolation_verbatim_start] = ACTIONS(1687), - [sym_interpolation_raw_start] = ACTIONS(1689), - [sym_raw_string_start] = ACTIONS(1691), + [sym_interpolation_regular_start] = ACTIONS(1297), + [sym_interpolation_verbatim_start] = ACTIONS(1299), + [sym_interpolation_raw_start] = ACTIONS(1301), + [sym_raw_string_start] = ACTIONS(1303), }, [815] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(5910), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2247), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(5019), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3379), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3080), - [sym_postfix_unary_expression] = STATE(3111), - [sym_prefix_unary_expression] = STATE(3111), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6154), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3080), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3111), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3080), - [sym_member_access_expression] = STATE(2484), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3111), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7575), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(3080), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3080), - [sym_typeof_expression] = STATE(3080), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2484), - [sym_literal] = STATE(3080), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(5182), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2212), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(2279), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(5042), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3510), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3102), + [sym_postfix_unary_expression] = STATE(3079), + [sym_prefix_unary_expression] = STATE(3079), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6134), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3102), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3079), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3102), + [sym_member_access_expression] = STATE(2472), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3079), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7425), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(3102), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3102), + [sym_typeof_expression] = STATE(3102), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2472), + [sym_literal] = STATE(3102), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2261), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(815), [sym_preproc_endregion] = STATE(815), [sym_preproc_line] = STATE(815), @@ -179583,48 +179469,48 @@ 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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1481), - [anon_sym_LPAREN] = ACTIONS(895), - [anon_sym_ref] = ACTIONS(897), - [anon_sym_LBRACE] = ACTIONS(1487), - [anon_sym_RBRACE] = ACTIONS(2937), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1479), + [anon_sym_LPAREN] = ACTIONS(43), + [anon_sym_ref] = ACTIONS(1991), + [anon_sym_LBRACE] = ACTIONS(1481), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1061), + [anon_sym_new] = ACTIONS(1059), + [anon_sym_readonly] = ACTIONS(2747), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1067), - [anon_sym_BANG] = ACTIONS(1495), - [anon_sym_TILDE] = ACTIONS(1495), - [anon_sym_PLUS_PLUS] = ACTIONS(1495), - [anon_sym_DASH_DASH] = ACTIONS(1495), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(1525), + [anon_sym_TILDE] = ACTIONS(1525), + [anon_sym_PLUS_PLUS] = ACTIONS(1525), + [anon_sym_DASH_DASH] = ACTIONS(1525), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1493), - [anon_sym_DASH] = ACTIONS(1493), - [anon_sym_STAR] = ACTIONS(905), - [anon_sym_CARET] = ACTIONS(1495), - [anon_sym_AMP] = ACTIONS(1495), + [anon_sym_PLUS] = ACTIONS(1523), + [anon_sym_DASH] = ACTIONS(1523), + [anon_sym_STAR] = ACTIONS(81), + [anon_sym_CARET] = ACTIONS(1525), + [anon_sym_AMP] = ACTIONS(1525), [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(2929), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1067), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1079), + [anon_sym_throw] = ACTIONS(1527), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1081), - [anon_sym_DOT_DOT] = ACTIONS(911), + [anon_sym_await] = ACTIONS(1529), + [anon_sym_DOT_DOT] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -179649,7 +179535,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(1089), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -179666,84 +179552,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [816] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(5910), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2247), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(2291), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(4670), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3379), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3080), - [sym_postfix_unary_expression] = STATE(3111), - [sym_prefix_unary_expression] = STATE(3111), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6154), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3080), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3111), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3080), - [sym_member_access_expression] = STATE(2484), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3111), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7575), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(3080), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3080), - [sym_typeof_expression] = STATE(3080), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2484), - [sym_literal] = STATE(3080), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(5896), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2362), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(2279), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(5518), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3661), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3102), + [sym_postfix_unary_expression] = STATE(3079), + [sym_prefix_unary_expression] = STATE(3079), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6129), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3102), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3079), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3102), + [sym_member_access_expression] = STATE(2472), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3079), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7367), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(3102), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3102), + [sym_typeof_expression] = STATE(3102), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2472), + [sym_literal] = STATE(3102), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(816), [sym_preproc_endregion] = STATE(816), [sym_preproc_line] = STATE(816), @@ -179753,48 +179639,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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1481), - [anon_sym_LPAREN] = ACTIONS(895), - [anon_sym_ref] = ACTIONS(897), - [anon_sym_LBRACE] = ACTIONS(1487), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1479), + [anon_sym_LPAREN] = ACTIONS(2135), + [anon_sym_ref] = ACTIONS(2137), + [anon_sym_LBRACE] = ACTIONS(1481), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1061), - [anon_sym_readonly] = ACTIONS(2749), + [anon_sym_new] = ACTIONS(2139), + [anon_sym_readonly] = ACTIONS(2767), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1067), - [anon_sym_BANG] = ACTIONS(1495), - [anon_sym_TILDE] = ACTIONS(1495), - [anon_sym_PLUS_PLUS] = ACTIONS(1495), - [anon_sym_DASH_DASH] = ACTIONS(1495), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(2143), + [anon_sym_TILDE] = ACTIONS(2143), + [anon_sym_PLUS_PLUS] = ACTIONS(2143), + [anon_sym_DASH_DASH] = ACTIONS(2143), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1493), - [anon_sym_DASH] = ACTIONS(1493), - [anon_sym_STAR] = ACTIONS(905), - [anon_sym_CARET] = ACTIONS(1495), - [anon_sym_AMP] = ACTIONS(1495), + [anon_sym_PLUS] = ACTIONS(2141), + [anon_sym_DASH] = ACTIONS(2141), + [anon_sym_STAR] = ACTIONS(2145), + [anon_sym_CARET] = ACTIONS(2143), + [anon_sym_AMP] = ACTIONS(2143), [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(1067), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1079), + [anon_sym_throw] = ACTIONS(2147), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1081), - [anon_sym_DOT_DOT] = ACTIONS(911), + [anon_sym_await] = ACTIONS(2149), + [anon_sym_DOT_DOT] = ACTIONS(2151), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -179819,7 +179705,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(1089), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -179836,84 +179722,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [817] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(5160), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2204), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(5388), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3461), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3080), - [sym_postfix_unary_expression] = STATE(3111), - [sym_prefix_unary_expression] = STATE(3111), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6154), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3080), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3111), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3080), - [sym_member_access_expression] = STATE(2484), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3111), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7547), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(3080), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3080), - [sym_typeof_expression] = STATE(3080), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2484), - [sym_literal] = STATE(3080), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2416), + [sym__name] = STATE(5890), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2193), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(2279), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(4066), + [sym_non_lvalue_expression] = STATE(3040), + [sym_lvalue_expression] = STATE(3109), + [sym__expression_statement_expression] = STATE(3035), + [sym_assignment_expression] = STATE(3043), + [sym_binary_expression] = STATE(3035), + [sym_postfix_unary_expression] = STATE(3043), + [sym_prefix_unary_expression] = STATE(3043), + [sym__pointer_indirection_expression] = STATE(2415), + [sym_query_expression] = STATE(3035), + [sym_from_clause] = STATE(6138), + [sym_conditional_expression] = STATE(3035), + [sym_conditional_access_expression] = STATE(3035), + [sym_as_expression] = STATE(3035), + [sym_is_expression] = STATE(3035), + [sym_is_pattern_expression] = STATE(3035), + [sym_cast_expression] = STATE(3035), + [sym_checked_expression] = STATE(3035), + [sym_invocation_expression] = STATE(3043), + [sym_switch_expression] = STATE(3035), + [sym_await_expression] = STATE(3043), + [sym_throw_expression] = STATE(3035), + [sym_element_access_expression] = STATE(2415), + [sym_interpolated_string_expression] = STATE(3035), + [sym_member_access_expression] = STATE(2415), + [sym_object_creation_expression] = STATE(3043), + [sym_parenthesized_expression] = STATE(3043), + [sym__parenthesized_lvalue_expression] = STATE(2415), + [sym_lambda_expression] = STATE(3035), + [sym__lambda_expression_init] = STATE(7374), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3035), + [sym_anonymous_method_expression] = STATE(3035), + [sym_anonymous_object_creation_expression] = STATE(3035), + [sym_implicit_array_creation_expression] = STATE(3035), + [sym_implicit_object_creation_expression] = STATE(3035), + [sym_implicit_stackalloc_expression] = STATE(3035), + [sym_initializer_expression] = STATE(3035), + [sym_default_expression] = STATE(3035), + [sym_with_expression] = STATE(3035), + [sym_sizeof_expression] = STATE(3035), + [sym_typeof_expression] = STATE(3035), + [sym_makeref_expression] = STATE(3035), + [sym_ref_expression] = STATE(3035), + [sym_reftype_expression] = STATE(3035), + [sym_refvalue_expression] = STATE(3035), + [sym_stackalloc_expression] = STATE(3035), + [sym_range_expression] = STATE(3035), + [sym_tuple_expression] = STATE(2415), + [sym_literal] = STATE(3035), + [sym_character_literal] = STATE(3037), + [sym_string_literal] = STATE(3037), + [sym_raw_string_literal] = STATE(3037), + [sym_boolean_literal] = STATE(3037), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3035), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(817), [sym_preproc_endregion] = STATE(817), [sym_preproc_line] = STATE(817), @@ -179923,48 +179809,48 @@ 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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3455), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), - [anon_sym_SEMI] = ACTIONS(1975), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1481), - [anon_sym_LPAREN] = ACTIONS(1497), - [anon_sym_ref] = ACTIONS(1499), - [anon_sym_LBRACE] = ACTIONS(1487), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1239), + [anon_sym_LPAREN] = ACTIONS(1241), + [anon_sym_ref] = ACTIONS(1243), + [anon_sym_LBRACE] = ACTIONS(1245), + [anon_sym_delegate] = ACTIONS(1247), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1501), + [anon_sym_new] = ACTIONS(1249), + [anon_sym_readonly] = ACTIONS(2767), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = 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(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(1251), + [anon_sym_BANG] = ACTIONS(1255), + [anon_sym_TILDE] = ACTIONS(1255), + [anon_sym_PLUS_PLUS] = ACTIONS(1255), + [anon_sym_DASH_DASH] = ACTIONS(1255), + [anon_sym_true] = ACTIONS(1257), + [anon_sym_false] = ACTIONS(1257), + [anon_sym_PLUS] = ACTIONS(1253), + [anon_sym_DASH] = ACTIONS(1253), + [anon_sym_STAR] = ACTIONS(1259), + [anon_sym_CARET] = ACTIONS(1255), + [anon_sym_AMP] = ACTIONS(1255), + [anon_sym_this] = ACTIONS(1261), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), + [anon_sym_base] = ACTIONS(1263), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1067), + [sym_predefined_type] = ACTIONS(1265), + [anon_sym_unchecked] = ACTIONS(1251), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1503), + [anon_sym_default] = ACTIONS(1267), + [anon_sym_throw] = ACTIONS(1269), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1505), - [anon_sym_DOT_DOT] = ACTIONS(1507), + [anon_sym_await] = ACTIONS(1271), + [anon_sym_DOT_DOT] = ACTIONS(1273), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -179977,19 +179863,19 @@ static const uint16_t ts_parse_table[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(1089), + [anon_sym_stackalloc] = ACTIONS(1275), + [anon_sym_sizeof] = ACTIONS(1277), + [anon_sym_typeof] = ACTIONS(1279), + [anon_sym___makeref] = ACTIONS(1281), + [anon_sym___reftype] = ACTIONS(1283), + [anon_sym___refvalue] = ACTIONS(1285), + [sym_null_literal] = ACTIONS(1287), + [anon_sym_SQUOTE] = ACTIONS(1289), + [sym_integer_literal] = ACTIONS(1287), + [sym_real_literal] = ACTIONS(1291), + [anon_sym_DQUOTE] = ACTIONS(1293), + [sym_verbatim_string_literal] = ACTIONS(1291), + [aux_sym_preproc_if_token1] = ACTIONS(1295), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -180000,90 +179886,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(1297), + [sym_interpolation_verbatim_start] = ACTIONS(1299), + [sym_interpolation_raw_start] = ACTIONS(1301), + [sym_raw_string_start] = ACTIONS(1303), }, [818] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(5907), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2404), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(2291), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(4222), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3140), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3080), - [sym_postfix_unary_expression] = STATE(3111), - [sym_prefix_unary_expression] = STATE(3111), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6183), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3080), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3111), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3080), - [sym_member_access_expression] = STATE(2484), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3111), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7703), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(3080), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3080), - [sym_typeof_expression] = STATE(3080), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2484), - [sym_literal] = STATE(3080), - [sym_character_literal] = STATE(3011), - [sym_string_literal] = STATE(3011), - [sym_raw_string_literal] = STATE(3011), - [sym_boolean_literal] = STATE(3011), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_block] = STATE(3454), + [sym_bracketed_argument_list] = STATE(2816), + [sym__name] = STATE(5860), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2321), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(4533), + [sym_non_lvalue_expression] = STATE(3495), + [sym_lvalue_expression] = STATE(3349), + [sym__expression_statement_expression] = STATE(3462), + [sym_assignment_expression] = STATE(3497), + [sym_binary_expression] = STATE(3462), + [sym_postfix_unary_expression] = STATE(3497), + [sym_prefix_unary_expression] = STATE(3497), + [sym__pointer_indirection_expression] = STATE(2815), + [sym_query_expression] = STATE(3462), + [sym_from_clause] = STATE(6152), + [sym_conditional_expression] = STATE(3462), + [sym_conditional_access_expression] = STATE(3462), + [sym_as_expression] = STATE(3462), + [sym_is_expression] = STATE(3462), + [sym_is_pattern_expression] = STATE(3462), + [sym_cast_expression] = STATE(3462), + [sym_checked_expression] = STATE(3462), + [sym_invocation_expression] = STATE(3497), + [sym_switch_expression] = STATE(3462), + [sym_await_expression] = STATE(3497), + [sym_throw_expression] = STATE(3462), + [sym_element_access_expression] = STATE(2815), + [sym_interpolated_string_expression] = STATE(3462), + [sym_member_access_expression] = STATE(2815), + [sym_object_creation_expression] = STATE(3497), + [sym_parenthesized_expression] = STATE(3497), + [sym__parenthesized_lvalue_expression] = STATE(2815), + [sym_lambda_expression] = STATE(3462), + [sym__lambda_expression_init] = STATE(7658), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3462), + [sym_anonymous_method_expression] = STATE(3462), + [sym_anonymous_object_creation_expression] = STATE(3462), + [sym_implicit_array_creation_expression] = STATE(3462), + [sym_implicit_object_creation_expression] = STATE(3462), + [sym_implicit_stackalloc_expression] = STATE(3462), + [sym_initializer_expression] = STATE(3462), + [sym_default_expression] = STATE(3462), + [sym_with_expression] = STATE(3462), + [sym_sizeof_expression] = STATE(3462), + [sym_typeof_expression] = STATE(3462), + [sym_makeref_expression] = STATE(3462), + [sym_ref_expression] = STATE(3462), + [sym_reftype_expression] = STATE(3462), + [sym_refvalue_expression] = STATE(3462), + [sym_stackalloc_expression] = STATE(3462), + [sym_range_expression] = STATE(3462), + [sym_tuple_expression] = STATE(2815), + [sym_literal] = STATE(3462), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3462), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(818), [sym_preproc_endregion] = STATE(818), [sym_preproc_line] = STATE(818), @@ -180093,218 +179980,47 @@ 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(3067), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), [aux_sym__lambda_expression_init_repeat1] = STATE(3367), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1481), - [anon_sym_LPAREN] = ACTIONS(2251), - [anon_sym_ref] = ACTIONS(2253), - [anon_sym_LBRACE] = ACTIONS(1487), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), - [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1937), - [anon_sym_readonly] = ACTIONS(2749), - [anon_sym_where] = ACTIONS(29), - [anon_sym_notnull] = ACTIONS(29), - [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1067), - [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(1259), - [anon_sym_false] = ACTIONS(1259), - [anon_sym_PLUS] = ACTIONS(2255), - [anon_sym_DASH] = ACTIONS(2255), - [anon_sym_STAR] = ACTIONS(1943), - [anon_sym_CARET] = ACTIONS(2257), - [anon_sym_AMP] = ACTIONS(2257), - [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1267), - [anon_sym_unchecked] = ACTIONS(1067), - [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1269), - [anon_sym_throw] = ACTIONS(2259), - [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2261), - [anon_sym_DOT_DOT] = ACTIONS(2263), - [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(1279), - [anon_sym_typeof] = ACTIONS(1281), - [anon_sym___makeref] = ACTIONS(133), - [anon_sym___reftype] = ACTIONS(135), - [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(1289), - [anon_sym_SQUOTE] = ACTIONS(1291), - [sym_integer_literal] = ACTIONS(1289), - [sym_real_literal] = ACTIONS(1293), - [anon_sym_DQUOTE] = ACTIONS(1295), - [sym_verbatim_string_literal] = ACTIONS(1293), - [aux_sym_preproc_if_token1] = ACTIONS(1089), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1299), - [sym_interpolation_verbatim_start] = ACTIONS(1301), - [sym_interpolation_raw_start] = ACTIONS(1303), - [sym_raw_string_start] = ACTIONS(1305), - }, - [819] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_block] = STATE(3084), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(5160), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2204), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(5026), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3520), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3080), - [sym_postfix_unary_expression] = STATE(3111), - [sym_prefix_unary_expression] = STATE(3111), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6154), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3080), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3111), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3080), - [sym_member_access_expression] = STATE(2484), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3111), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7530), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(3080), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3080), - [sym_typeof_expression] = STATE(3080), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2484), - [sym_literal] = STATE(3080), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), - [sym_preproc_region] = STATE(819), - [sym_preproc_endregion] = STATE(819), - [sym_preproc_line] = STATE(819), - [sym_preproc_pragma] = STATE(819), - [sym_preproc_nullable] = STATE(819), - [sym_preproc_error] = STATE(819), - [sym_preproc_warning] = STATE(819), - [sym_preproc_define] = STATE(819), - [sym_preproc_undef] = STATE(819), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), - [sym__identifier_token] = ACTIONS(25), - [anon_sym_alias] = ACTIONS(29), - [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1481), - [anon_sym_LPAREN] = ACTIONS(43), - [anon_sym_ref] = ACTIONS(661), - [anon_sym_LBRACE] = ACTIONS(2847), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1305), + [anon_sym_LPAREN] = ACTIONS(1639), + [anon_sym_ref] = ACTIONS(1641), + [anon_sym_LBRACE] = ACTIONS(2845), + [anon_sym_delegate] = ACTIONS(1313), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1061), + [anon_sym_new] = ACTIONS(1583), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = 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_checked] = ACTIONS(1317), + [anon_sym_BANG] = ACTIONS(1645), + [anon_sym_TILDE] = ACTIONS(1645), + [anon_sym_PLUS_PLUS] = ACTIONS(1645), + [anon_sym_DASH_DASH] = ACTIONS(1645), [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_this] = ACTIONS(83), + [anon_sym_PLUS] = ACTIONS(1643), + [anon_sym_DASH] = ACTIONS(1643), + [anon_sym_STAR] = ACTIONS(1647), + [anon_sym_CARET] = ACTIONS(1645), + [anon_sym_AMP] = ACTIONS(1645), + [anon_sym_this] = ACTIONS(1321), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), + [anon_sym_base] = ACTIONS(1323), [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1067), + [anon_sym_unchecked] = ACTIONS(1317), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1589), + [anon_sym_throw] = ACTIONS(1649), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1591), - [anon_sym_DOT_DOT] = ACTIONS(123), + [anon_sym_await] = ACTIONS(1651), + [anon_sym_DOT_DOT] = ACTIONS(1653), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -180317,19 +180033,19 @@ static const uint16_t ts_parse_table[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(1331), [anon_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(1333), + [anon_sym___reftype] = ACTIONS(1335), + [anon_sym___refvalue] = ACTIONS(1337), [sym_null_literal] = ACTIONS(139), [anon_sym_SQUOTE] = ACTIONS(141), [sym_integer_literal] = ACTIONS(139), [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1089), + [aux_sym_preproc_if_token1] = ACTIONS(1339), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -180345,136 +180061,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), }, - [820] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(5676), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2233), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(2291), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(4751), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3408), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3080), - [sym_postfix_unary_expression] = STATE(3111), - [sym_prefix_unary_expression] = STATE(3111), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6161), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3080), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3111), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3080), - [sym_member_access_expression] = STATE(2484), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3111), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7323), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(3080), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3080), - [sym_typeof_expression] = STATE(3080), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2484), - [sym_literal] = STATE(3080), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), - [sym_preproc_region] = STATE(820), - [sym_preproc_endregion] = STATE(820), - [sym_preproc_line] = STATE(820), - [sym_preproc_pragma] = STATE(820), - [sym_preproc_nullable] = STATE(820), - [sym_preproc_error] = STATE(820), - [sym_preproc_warning] = STATE(820), - [sym_preproc_define] = STATE(820), - [sym_preproc_undef] = STATE(820), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [819] = { + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(5873), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2238), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(4953), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3468), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3102), + [sym_postfix_unary_expression] = STATE(3079), + [sym_prefix_unary_expression] = STATE(3079), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6134), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3102), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3079), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3102), + [sym_member_access_expression] = STATE(2472), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3079), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7309), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(3102), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3102), + [sym_typeof_expression] = STATE(3102), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2472), + [sym_literal] = STATE(3102), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), + [sym_preproc_region] = STATE(819), + [sym_preproc_endregion] = STATE(819), + [sym_preproc_line] = STATE(819), + [sym_preproc_pragma] = STATE(819), + [sym_preproc_nullable] = STATE(819), + [sym_preproc_error] = STATE(819), + [sym_preproc_warning] = STATE(819), + [sym_preproc_define] = STATE(819), + [sym_preproc_undef] = STATE(819), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1481), - [anon_sym_LPAREN] = ACTIONS(1483), - [anon_sym_ref] = ACTIONS(1953), - [anon_sym_LBRACE] = ACTIONS(1487), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1479), + [anon_sym_LPAREN] = ACTIONS(659), + [anon_sym_RPAREN] = ACTIONS(2931), + [anon_sym_ref] = ACTIONS(663), + [anon_sym_LBRACE] = ACTIONS(1481), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1101), - [anon_sym_readonly] = ACTIONS(2759), + [anon_sym_new] = ACTIONS(1059), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1067), - [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(1485), + [anon_sym_TILDE] = ACTIONS(1485), + [anon_sym_PLUS_PLUS] = ACTIONS(1485), + [anon_sym_DASH_DASH] = ACTIONS(1485), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1489), - [anon_sym_DASH] = ACTIONS(1489), - [anon_sym_STAR] = ACTIONS(1111), - [anon_sym_CARET] = ACTIONS(1491), - [anon_sym_AMP] = ACTIONS(1491), + [anon_sym_PLUS] = ACTIONS(1483), + [anon_sym_DASH] = ACTIONS(1483), + [anon_sym_STAR] = ACTIONS(683), + [anon_sym_CARET] = ACTIONS(1485), + [anon_sym_AMP] = ACTIONS(1485), [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(1075), + [anon_sym_scoped] = ACTIONS(85), [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(2631), + [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1067), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1119), + [anon_sym_throw] = ACTIONS(1077), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1121), - [anon_sym_DOT_DOT] = ACTIONS(1125), + [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), @@ -180499,7 +180215,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(1089), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -180515,113 +180231,113 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_interpolation_raw_start] = ACTIONS(155), [sym_raw_string_start] = ACTIONS(157), }, - [821] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(5160), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2204), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(2291), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(4581), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3461), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3080), - [sym_postfix_unary_expression] = STATE(3111), - [sym_prefix_unary_expression] = STATE(3111), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6154), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3080), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3111), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3080), - [sym_member_access_expression] = STATE(2484), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3111), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7547), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(3080), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3080), - [sym_typeof_expression] = STATE(3080), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2484), - [sym_literal] = STATE(3080), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), - [sym_preproc_region] = STATE(821), - [sym_preproc_endregion] = STATE(821), - [sym_preproc_line] = STATE(821), - [sym_preproc_pragma] = STATE(821), - [sym_preproc_nullable] = STATE(821), - [sym_preproc_error] = STATE(821), - [sym_preproc_warning] = STATE(821), - [sym_preproc_define] = STATE(821), - [sym_preproc_undef] = STATE(821), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [820] = { + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(5152), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2196), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(4508), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3356), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3102), + [sym_postfix_unary_expression] = STATE(3079), + [sym_prefix_unary_expression] = STATE(3079), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6134), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3102), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3079), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3102), + [sym_member_access_expression] = STATE(2472), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3079), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7627), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(3102), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3102), + [sym_typeof_expression] = STATE(3102), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2472), + [sym_literal] = STATE(3102), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), + [sym_preproc_region] = STATE(820), + [sym_preproc_endregion] = STATE(820), + [sym_preproc_line] = STATE(820), + [sym_preproc_pragma] = STATE(820), + [sym_preproc_nullable] = STATE(820), + [sym_preproc_error] = STATE(820), + [sym_preproc_warning] = STATE(820), + [sym_preproc_define] = STATE(820), + [sym_preproc_undef] = STATE(820), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), + [anon_sym_SEMI] = ACTIONS(2933), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1481), - [anon_sym_LPAREN] = ACTIONS(1497), - [anon_sym_ref] = ACTIONS(1499), - [anon_sym_LBRACE] = ACTIONS(1487), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1479), + [anon_sym_LPAREN] = ACTIONS(1511), + [anon_sym_ref] = ACTIONS(1513), + [anon_sym_LBRACE] = ACTIONS(1481), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1501), - [anon_sym_readonly] = ACTIONS(2749), + [anon_sym_new] = ACTIONS(1515), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1067), + [anon_sym_checked] = ACTIONS(1065), [anon_sym_BANG] = ACTIONS(75), [anon_sym_TILDE] = ACTIONS(75), [anon_sym_PLUS_PLUS] = ACTIONS(75), @@ -180638,13 +180354,183 @@ 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_unchecked] = ACTIONS(1067), + [anon_sym_unchecked] = ACTIONS(1065), + [anon_sym_yield] = ACTIONS(29), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(1517), + [anon_sym_when] = ACTIONS(29), + [anon_sym_await] = ACTIONS(1519), + [anon_sym_DOT_DOT] = ACTIONS(1521), + [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), + }, + [821] = { + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(5704), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2296), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(2279), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(5042), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3510), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3102), + [sym_postfix_unary_expression] = STATE(3079), + [sym_prefix_unary_expression] = STATE(3079), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6134), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3102), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3079), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3102), + [sym_member_access_expression] = STATE(2472), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3079), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7425), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(3102), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3102), + [sym_typeof_expression] = STATE(3102), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2472), + [sym_literal] = STATE(3102), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2242), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), + [sym_preproc_region] = STATE(821), + [sym_preproc_endregion] = STATE(821), + [sym_preproc_line] = STATE(821), + [sym_preproc_pragma] = STATE(821), + [sym_preproc_nullable] = STATE(821), + [sym_preproc_error] = STATE(821), + [sym_preproc_warning] = STATE(821), + [sym_preproc_define] = STATE(821), + [sym_preproc_undef] = STATE(821), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), + [sym__identifier_token] = ACTIONS(25), + [anon_sym_alias] = ACTIONS(29), + [anon_sym_global] = ACTIONS(29), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1479), + [anon_sym_LPAREN] = ACTIONS(43), + [anon_sym_ref] = ACTIONS(2427), + [anon_sym_LBRACE] = ACTIONS(1481), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), + [anon_sym_file] = ACTIONS(29), + [anon_sym_new] = ACTIONS(1059), + [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(1525), + [anon_sym_TILDE] = ACTIONS(1525), + [anon_sym_PLUS_PLUS] = ACTIONS(1525), + [anon_sym_DASH_DASH] = ACTIONS(1525), + [anon_sym_true] = ACTIONS(77), + [anon_sym_false] = ACTIONS(77), + [anon_sym_PLUS] = ACTIONS(1523), + [anon_sym_DASH] = ACTIONS(1523), + [anon_sym_STAR] = ACTIONS(81), + [anon_sym_CARET] = ACTIONS(1525), + [anon_sym_AMP] = ACTIONS(1525), + [anon_sym_this] = ACTIONS(83), + [anon_sym_scoped] = ACTIONS(2435), + [anon_sym_base] = ACTIONS(87), + [anon_sym_var] = ACTIONS(2749), + [sym_predefined_type] = ACTIONS(91), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1503), + [anon_sym_throw] = ACTIONS(1527), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1505), - [anon_sym_DOT_DOT] = ACTIONS(1507), + [anon_sym_await] = ACTIONS(1529), + [anon_sym_DOT_DOT] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -180669,7 +180555,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(1089), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -180686,85 +180572,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [822] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_block] = STATE(3014), - [sym_bracketed_argument_list] = STATE(2420), - [sym__name] = STATE(5904), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2395), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(5256), - [sym_non_lvalue_expression] = STATE(3066), - [sym_lvalue_expression] = STATE(3557), - [sym__expression_statement_expression] = STATE(3006), - [sym_assignment_expression] = STATE(3020), - [sym_binary_expression] = STATE(3006), - [sym_postfix_unary_expression] = STATE(3020), - [sym_prefix_unary_expression] = STATE(3020), - [sym__pointer_indirection_expression] = STATE(2423), - [sym_query_expression] = STATE(3006), - [sym_from_clause] = STATE(6176), - [sym_conditional_expression] = STATE(3006), - [sym_conditional_access_expression] = STATE(3006), - [sym_as_expression] = STATE(3006), - [sym_is_expression] = STATE(3006), - [sym_is_pattern_expression] = STATE(3006), - [sym_cast_expression] = STATE(3006), - [sym_checked_expression] = STATE(3006), - [sym_invocation_expression] = STATE(3020), - [sym_switch_expression] = STATE(3006), - [sym_await_expression] = STATE(3020), - [sym_throw_expression] = STATE(3006), - [sym_element_access_expression] = STATE(2423), - [sym_interpolated_string_expression] = STATE(3006), - [sym_member_access_expression] = STATE(2423), - [sym_object_creation_expression] = STATE(3020), - [sym_parenthesized_expression] = STATE(3020), - [sym__parenthesized_lvalue_expression] = STATE(2423), - [sym_lambda_expression] = STATE(3006), - [sym__lambda_expression_init] = STATE(7473), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3006), - [sym_anonymous_method_expression] = STATE(3006), - [sym_anonymous_object_creation_expression] = STATE(3006), - [sym_implicit_array_creation_expression] = STATE(3006), - [sym_implicit_object_creation_expression] = STATE(3006), - [sym_implicit_stackalloc_expression] = STATE(3006), - [sym_initializer_expression] = STATE(3006), - [sym_default_expression] = STATE(3006), - [sym_with_expression] = STATE(3006), - [sym_sizeof_expression] = STATE(3006), - [sym_typeof_expression] = STATE(3006), - [sym_makeref_expression] = STATE(3006), - [sym_ref_expression] = STATE(3006), - [sym_reftype_expression] = STATE(3006), - [sym_refvalue_expression] = STATE(3006), - [sym_stackalloc_expression] = STATE(3006), - [sym_range_expression] = STATE(3006), - [sym_tuple_expression] = STATE(2423), - [sym_literal] = STATE(3006), - [sym_character_literal] = STATE(3011), - [sym_string_literal] = STATE(3011), - [sym_raw_string_literal] = STATE(3011), - [sym_boolean_literal] = STATE(3011), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3006), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(5152), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2196), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(5443), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3356), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3102), + [sym_postfix_unary_expression] = STATE(3079), + [sym_prefix_unary_expression] = STATE(3079), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6134), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3102), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3079), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3102), + [sym_member_access_expression] = STATE(2472), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3079), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7627), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(3102), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3102), + [sym_typeof_expression] = STATE(3102), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2472), + [sym_literal] = STATE(3102), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(822), [sym_preproc_endregion] = STATE(822), [sym_preproc_line] = STATE(822), @@ -180774,47 +180659,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(822), [sym_preproc_define] = STATE(822), [sym_preproc_undef] = STATE(822), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3440), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), + [anon_sym_SEMI] = ACTIONS(2935), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1241), - [anon_sym_LPAREN] = ACTIONS(2141), - [anon_sym_ref] = ACTIONS(2143), - [anon_sym_LBRACE] = ACTIONS(2845), - [anon_sym_delegate] = ACTIONS(1249), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1479), + [anon_sym_LPAREN] = ACTIONS(1511), + [anon_sym_ref] = ACTIONS(1513), + [anon_sym_LBRACE] = ACTIONS(1481), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(2145), + [anon_sym_new] = ACTIONS(1515), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1253), - [anon_sym_BANG] = ACTIONS(2149), - [anon_sym_TILDE] = ACTIONS(2149), - [anon_sym_PLUS_PLUS] = ACTIONS(2149), - [anon_sym_DASH_DASH] = ACTIONS(2149), - [anon_sym_true] = ACTIONS(1259), - [anon_sym_false] = ACTIONS(1259), - [anon_sym_PLUS] = ACTIONS(2147), - [anon_sym_DASH] = ACTIONS(2147), - [anon_sym_STAR] = ACTIONS(2151), - [anon_sym_CARET] = ACTIONS(2149), - [anon_sym_AMP] = ACTIONS(2149), - [anon_sym_this] = ACTIONS(1263), + [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(1265), + [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1267), - [anon_sym_unchecked] = ACTIONS(1253), + [sym_predefined_type] = ACTIONS(91), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1269), - [anon_sym_throw] = ACTIONS(2153), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(1517), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2155), - [anon_sym_DOT_DOT] = ACTIONS(2157), + [anon_sym_await] = ACTIONS(1519), + [anon_sym_DOT_DOT] = ACTIONS(1521), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -180827,19 +180713,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1277), - [anon_sym_sizeof] = ACTIONS(1279), - [anon_sym_typeof] = ACTIONS(1281), - [anon_sym___makeref] = ACTIONS(1283), - [anon_sym___reftype] = ACTIONS(1285), - [anon_sym___refvalue] = ACTIONS(1287), - [sym_null_literal] = ACTIONS(1289), - [anon_sym_SQUOTE] = ACTIONS(1291), - [sym_integer_literal] = ACTIONS(1289), - [sym_real_literal] = ACTIONS(1293), - [anon_sym_DQUOTE] = ACTIONS(1295), - [sym_verbatim_string_literal] = ACTIONS(1293), - [aux_sym_preproc_if_token1] = ACTIONS(1297), + [anon_sym_stackalloc] = ACTIONS(127), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_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), @@ -180850,90 +180736,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(1299), - [sym_interpolation_verbatim_start] = ACTIONS(1301), - [sym_interpolation_raw_start] = ACTIONS(1303), - [sym_raw_string_start] = ACTIONS(1305), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [sym_interpolation_raw_start] = ACTIONS(155), + [sym_raw_string_start] = ACTIONS(157), }, [823] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2420), - [sym__name] = STATE(5904), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2395), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(2291), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(5215), - [sym_non_lvalue_expression] = STATE(3066), - [sym_lvalue_expression] = STATE(3557), - [sym__expression_statement_expression] = STATE(3006), - [sym_assignment_expression] = STATE(3020), - [sym_binary_expression] = STATE(3006), - [sym_postfix_unary_expression] = STATE(3020), - [sym_prefix_unary_expression] = STATE(3020), - [sym__pointer_indirection_expression] = STATE(2423), - [sym_query_expression] = STATE(3006), - [sym_from_clause] = STATE(6176), - [sym_conditional_expression] = STATE(3006), - [sym_conditional_access_expression] = STATE(3006), - [sym_as_expression] = STATE(3006), - [sym_is_expression] = STATE(3006), - [sym_is_pattern_expression] = STATE(3006), - [sym_cast_expression] = STATE(3006), - [sym_checked_expression] = STATE(3006), - [sym_invocation_expression] = STATE(3020), - [sym_switch_expression] = STATE(3006), - [sym_await_expression] = STATE(3020), - [sym_throw_expression] = STATE(3006), - [sym_element_access_expression] = STATE(2423), - [sym_interpolated_string_expression] = STATE(3006), - [sym_member_access_expression] = STATE(2423), - [sym_object_creation_expression] = STATE(3020), - [sym_parenthesized_expression] = STATE(3020), - [sym__parenthesized_lvalue_expression] = STATE(2423), - [sym_lambda_expression] = STATE(3006), - [sym__lambda_expression_init] = STATE(7473), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3006), - [sym_anonymous_method_expression] = STATE(3006), - [sym_anonymous_object_creation_expression] = STATE(3006), - [sym_implicit_array_creation_expression] = STATE(3006), - [sym_implicit_object_creation_expression] = STATE(3006), - [sym_implicit_stackalloc_expression] = STATE(3006), - [sym_initializer_expression] = STATE(3006), - [sym_default_expression] = STATE(3006), - [sym_with_expression] = STATE(3006), - [sym_sizeof_expression] = STATE(3006), - [sym_typeof_expression] = STATE(3006), - [sym_makeref_expression] = STATE(3006), - [sym_ref_expression] = STATE(3006), - [sym_reftype_expression] = STATE(3006), - [sym_refvalue_expression] = STATE(3006), - [sym_stackalloc_expression] = STATE(3006), - [sym_range_expression] = STATE(3006), - [sym_tuple_expression] = STATE(2423), - [sym_literal] = STATE(3006), - [sym_character_literal] = STATE(3011), - [sym_string_literal] = STATE(3011), - [sym_raw_string_literal] = STATE(3011), - [sym_boolean_literal] = STATE(3011), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3006), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_block] = STATE(3454), + [sym_bracketed_argument_list] = STATE(2816), + [sym__name] = STATE(5896), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2362), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(4945), + [sym_non_lvalue_expression] = STATE(3495), + [sym_lvalue_expression] = STATE(3513), + [sym__expression_statement_expression] = STATE(3462), + [sym_assignment_expression] = STATE(3497), + [sym_binary_expression] = STATE(3462), + [sym_postfix_unary_expression] = STATE(3497), + [sym_prefix_unary_expression] = STATE(3497), + [sym__pointer_indirection_expression] = STATE(2815), + [sym_query_expression] = STATE(3462), + [sym_from_clause] = STATE(6132), + [sym_conditional_expression] = STATE(3462), + [sym_conditional_access_expression] = STATE(3462), + [sym_as_expression] = STATE(3462), + [sym_is_expression] = STATE(3462), + [sym_is_pattern_expression] = STATE(3462), + [sym_cast_expression] = STATE(3462), + [sym_checked_expression] = STATE(3462), + [sym_invocation_expression] = STATE(3497), + [sym_switch_expression] = STATE(3462), + [sym_await_expression] = STATE(3497), + [sym_throw_expression] = STATE(3462), + [sym_element_access_expression] = STATE(2815), + [sym_interpolated_string_expression] = STATE(3462), + [sym_member_access_expression] = STATE(2815), + [sym_object_creation_expression] = STATE(3497), + [sym_parenthesized_expression] = STATE(3497), + [sym__parenthesized_lvalue_expression] = STATE(2815), + [sym_lambda_expression] = STATE(3462), + [sym__lambda_expression_init] = STATE(7527), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3462), + [sym_anonymous_method_expression] = STATE(3462), + [sym_anonymous_object_creation_expression] = STATE(3462), + [sym_implicit_array_creation_expression] = STATE(3462), + [sym_implicit_object_creation_expression] = STATE(3462), + [sym_implicit_stackalloc_expression] = STATE(3462), + [sym_initializer_expression] = STATE(3462), + [sym_default_expression] = STATE(3462), + [sym_with_expression] = STATE(3462), + [sym_sizeof_expression] = STATE(3462), + [sym_typeof_expression] = STATE(3462), + [sym_makeref_expression] = STATE(3462), + [sym_ref_expression] = STATE(3462), + [sym_reftype_expression] = STATE(3462), + [sym_refvalue_expression] = STATE(3462), + [sym_stackalloc_expression] = STATE(3462), + [sym_range_expression] = STATE(3462), + [sym_tuple_expression] = STATE(2815), + [sym_literal] = STATE(3462), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3462), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(823), [sym_preproc_endregion] = STATE(823), [sym_preproc_line] = STATE(823), @@ -180943,48 +180830,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(823), [sym_preproc_define] = STATE(823), [sym_preproc_undef] = STATE(823), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3440), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3367), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1241), - [anon_sym_LPAREN] = ACTIONS(2141), - [anon_sym_ref] = ACTIONS(2143), - [anon_sym_LBRACE] = ACTIONS(1247), - [anon_sym_delegate] = ACTIONS(1249), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1305), + [anon_sym_LPAREN] = ACTIONS(1875), + [anon_sym_ref] = ACTIONS(1877), + [anon_sym_LBRACE] = ACTIONS(2845), + [anon_sym_delegate] = ACTIONS(1313), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(2145), - [anon_sym_readonly] = ACTIONS(2749), + [anon_sym_new] = ACTIONS(1879), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1253), - [anon_sym_BANG] = ACTIONS(2149), - [anon_sym_TILDE] = ACTIONS(2149), - [anon_sym_PLUS_PLUS] = ACTIONS(2149), - [anon_sym_DASH_DASH] = ACTIONS(2149), - [anon_sym_true] = ACTIONS(1259), - [anon_sym_false] = ACTIONS(1259), - [anon_sym_PLUS] = ACTIONS(2147), - [anon_sym_DASH] = ACTIONS(2147), - [anon_sym_STAR] = ACTIONS(2151), - [anon_sym_CARET] = ACTIONS(2149), - [anon_sym_AMP] = ACTIONS(2149), - [anon_sym_this] = ACTIONS(1263), + [anon_sym_checked] = ACTIONS(1317), + [anon_sym_BANG] = ACTIONS(1883), + [anon_sym_TILDE] = ACTIONS(1883), + [anon_sym_PLUS_PLUS] = ACTIONS(1883), + [anon_sym_DASH_DASH] = ACTIONS(1883), + [anon_sym_true] = ACTIONS(77), + [anon_sym_false] = ACTIONS(77), + [anon_sym_PLUS] = ACTIONS(1881), + [anon_sym_DASH] = ACTIONS(1881), + [anon_sym_STAR] = ACTIONS(1885), + [anon_sym_CARET] = ACTIONS(1883), + [anon_sym_AMP] = ACTIONS(1883), + [anon_sym_this] = ACTIONS(1321), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1265), + [anon_sym_base] = ACTIONS(1323), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1267), - [anon_sym_unchecked] = ACTIONS(1253), + [sym_predefined_type] = ACTIONS(91), + [anon_sym_unchecked] = ACTIONS(1317), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1269), - [anon_sym_throw] = ACTIONS(2153), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(1887), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2155), - [anon_sym_DOT_DOT] = ACTIONS(2157), + [anon_sym_await] = ACTIONS(1889), + [anon_sym_DOT_DOT] = ACTIONS(1891), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -180997,19 +180883,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1277), - [anon_sym_sizeof] = ACTIONS(1279), - [anon_sym_typeof] = ACTIONS(1281), - [anon_sym___makeref] = ACTIONS(1283), - [anon_sym___reftype] = ACTIONS(1285), - [anon_sym___refvalue] = ACTIONS(1287), - [sym_null_literal] = ACTIONS(1289), - [anon_sym_SQUOTE] = ACTIONS(1291), - [sym_integer_literal] = ACTIONS(1289), - [sym_real_literal] = ACTIONS(1293), - [anon_sym_DQUOTE] = ACTIONS(1295), - [sym_verbatim_string_literal] = ACTIONS(1293), - [aux_sym_preproc_if_token1] = ACTIONS(1297), + [anon_sym_stackalloc] = ACTIONS(1331), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(1333), + [anon_sym___reftype] = ACTIONS(1335), + [anon_sym___refvalue] = ACTIONS(1337), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_literal] = ACTIONS(143), + [anon_sym_DQUOTE] = ACTIONS(145), + [sym_verbatim_string_literal] = ACTIONS(143), + [aux_sym_preproc_if_token1] = ACTIONS(1339), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -181020,91 +180906,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(1299), - [sym_interpolation_verbatim_start] = ACTIONS(1301), - [sym_interpolation_raw_start] = ACTIONS(1303), - [sym_raw_string_start] = ACTIONS(1305), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [sym_interpolation_raw_start] = ACTIONS(155), + [sym_raw_string_start] = ACTIONS(157), }, [824] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_block] = STATE(3430), - [sym_bracketed_argument_list] = STATE(2762), - [sym__name] = STATE(5893), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2316), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(4503), - [sym_non_lvalue_expression] = STATE(3438), - [sym_lvalue_expression] = STATE(3391), - [sym__expression_statement_expression] = STATE(3362), - [sym_assignment_expression] = STATE(3449), - [sym_binary_expression] = STATE(3362), - [sym_postfix_unary_expression] = STATE(3449), - [sym_prefix_unary_expression] = STATE(3449), - [sym__pointer_indirection_expression] = STATE(2747), - [sym_query_expression] = STATE(3362), - [sym_from_clause] = STATE(6155), - [sym_conditional_expression] = STATE(3362), - [sym_conditional_access_expression] = STATE(3362), - [sym_as_expression] = STATE(3362), - [sym_is_expression] = STATE(3362), - [sym_is_pattern_expression] = STATE(3362), - [sym_cast_expression] = STATE(3362), - [sym_checked_expression] = STATE(3362), - [sym_invocation_expression] = STATE(3449), - [sym_switch_expression] = STATE(3362), - [sym_await_expression] = STATE(3449), - [sym_throw_expression] = STATE(3362), - [sym_element_access_expression] = STATE(2747), - [sym_interpolated_string_expression] = STATE(3362), - [sym_member_access_expression] = STATE(2747), - [sym_object_creation_expression] = STATE(3449), - [sym_parenthesized_expression] = STATE(3449), - [sym__parenthesized_lvalue_expression] = STATE(2747), - [sym_lambda_expression] = STATE(3362), - [sym__lambda_expression_init] = STATE(7726), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3362), - [sym_anonymous_method_expression] = STATE(3362), - [sym_anonymous_object_creation_expression] = STATE(3362), - [sym_implicit_array_creation_expression] = STATE(3362), - [sym_implicit_object_creation_expression] = STATE(3362), - [sym_implicit_stackalloc_expression] = STATE(3362), - [sym_initializer_expression] = STATE(3362), - [sym_default_expression] = STATE(3362), - [sym_with_expression] = STATE(3362), - [sym_sizeof_expression] = STATE(3362), - [sym_typeof_expression] = STATE(3362), - [sym_makeref_expression] = STATE(3362), - [sym_ref_expression] = STATE(3362), - [sym_reftype_expression] = STATE(3362), - [sym_refvalue_expression] = STATE(3362), - [sym_stackalloc_expression] = STATE(3362), - [sym_range_expression] = STATE(3362), - [sym_tuple_expression] = STATE(2747), - [sym_literal] = STATE(3362), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3362), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_block] = STATE(3058), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(5896), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2362), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(5477), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3661), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3102), + [sym_postfix_unary_expression] = STATE(3079), + [sym_prefix_unary_expression] = STATE(3079), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6129), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3102), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3079), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3102), + [sym_member_access_expression] = STATE(2472), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3079), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7367), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(3102), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3102), + [sym_typeof_expression] = STATE(3102), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2472), + [sym_literal] = STATE(3102), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(824), [sym_preproc_endregion] = STATE(824), [sym_preproc_line] = STATE(824), @@ -181114,47 +181000,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(824), [sym_preproc_define] = STATE(824), [sym_preproc_undef] = STATE(824), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3385), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1307), - [anon_sym_LPAREN] = ACTIONS(1711), - [anon_sym_ref] = ACTIONS(1713), - [anon_sym_LBRACE] = ACTIONS(2857), - [anon_sym_delegate] = ACTIONS(1315), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1479), + [anon_sym_LPAREN] = ACTIONS(2135), + [anon_sym_ref] = ACTIONS(2137), + [anon_sym_LBRACE] = ACTIONS(2855), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1613), + [anon_sym_new] = ACTIONS(2139), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1319), - [anon_sym_BANG] = ACTIONS(1717), - [anon_sym_TILDE] = ACTIONS(1717), - [anon_sym_PLUS_PLUS] = ACTIONS(1717), - [anon_sym_DASH_DASH] = ACTIONS(1717), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(2143), + [anon_sym_TILDE] = ACTIONS(2143), + [anon_sym_PLUS_PLUS] = ACTIONS(2143), + [anon_sym_DASH_DASH] = ACTIONS(2143), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [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(1323), + [anon_sym_PLUS] = ACTIONS(2141), + [anon_sym_DASH] = ACTIONS(2141), + [anon_sym_STAR] = ACTIONS(2145), + [anon_sym_CARET] = ACTIONS(2143), + [anon_sym_AMP] = ACTIONS(2143), + [anon_sym_this] = ACTIONS(83), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1325), + [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1319), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1721), + [anon_sym_throw] = ACTIONS(2147), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1723), - [anon_sym_DOT_DOT] = ACTIONS(1725), + [anon_sym_await] = ACTIONS(2149), + [anon_sym_DOT_DOT] = ACTIONS(2151), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -181167,19 +181053,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1333), + [anon_sym_stackalloc] = ACTIONS(127), [anon_sym_sizeof] = ACTIONS(129), [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(1335), - [anon_sym___reftype] = ACTIONS(1337), - [anon_sym___refvalue] = ACTIONS(1339), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), [sym_null_literal] = ACTIONS(139), [anon_sym_SQUOTE] = ACTIONS(141), [sym_integer_literal] = ACTIONS(139), [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1341), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -181196,84 +181082,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [825] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(5160), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2204), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(5376), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3461), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3080), - [sym_postfix_unary_expression] = STATE(3111), - [sym_prefix_unary_expression] = STATE(3111), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6154), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3080), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3111), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3080), - [sym_member_access_expression] = STATE(2484), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3111), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7547), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(3080), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3080), - [sym_typeof_expression] = STATE(3080), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2484), - [sym_literal] = STATE(3080), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_block] = STATE(3058), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(5879), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2238), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(4561), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3398), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3102), + [sym_postfix_unary_expression] = STATE(3079), + [sym_prefix_unary_expression] = STATE(3079), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6163), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3102), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3079), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3102), + [sym_member_access_expression] = STATE(2472), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3079), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7496), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(3102), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3102), + [sym_typeof_expression] = STATE(3102), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2472), + [sym_literal] = STATE(3102), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(825), [sym_preproc_endregion] = STATE(825), [sym_preproc_line] = STATE(825), @@ -181283,48 +181170,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(825), [sym_preproc_define] = STATE(825), [sym_preproc_undef] = STATE(825), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), - [anon_sym_SEMI] = ACTIONS(2915), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1481), - [anon_sym_LPAREN] = ACTIONS(1497), - [anon_sym_ref] = ACTIONS(1499), - [anon_sym_LBRACE] = ACTIONS(1487), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1479), + [anon_sym_LPAREN] = ACTIONS(1487), + [anon_sym_ref] = ACTIONS(1489), + [anon_sym_LBRACE] = ACTIONS(2855), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1501), + [anon_sym_new] = ACTIONS(1095), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = 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_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(1493), + [anon_sym_TILDE] = ACTIONS(1493), + [anon_sym_PLUS_PLUS] = ACTIONS(1493), + [anon_sym_DASH_DASH] = ACTIONS(1493), [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(1491), + [anon_sym_DASH] = ACTIONS(1491), + [anon_sym_STAR] = ACTIONS(1105), + [anon_sym_CARET] = ACTIONS(1493), + [anon_sym_AMP] = ACTIONS(1493), [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(1067), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1503), + [anon_sym_throw] = ACTIONS(1113), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1505), - [anon_sym_DOT_DOT] = ACTIONS(1507), + [anon_sym_await] = ACTIONS(1115), + [anon_sym_DOT_DOT] = ACTIONS(1119), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -181349,7 +181235,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(1089), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -181366,84 +181252,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [826] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2762), - [sym__name] = STATE(5910), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2204), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(5012), - [sym_non_lvalue_expression] = STATE(3438), - [sym_lvalue_expression] = STATE(3535), - [sym__expression_statement_expression] = STATE(3362), - [sym_assignment_expression] = STATE(3449), - [sym_binary_expression] = STATE(3362), - [sym_postfix_unary_expression] = STATE(3449), - [sym_prefix_unary_expression] = STATE(3449), - [sym__pointer_indirection_expression] = STATE(2747), - [sym_query_expression] = STATE(3362), - [sym_from_clause] = STATE(6178), - [sym_conditional_expression] = STATE(3362), - [sym_conditional_access_expression] = STATE(3362), - [sym_as_expression] = STATE(3362), - [sym_is_expression] = STATE(3362), - [sym_is_pattern_expression] = STATE(3362), - [sym_cast_expression] = STATE(3362), - [sym_checked_expression] = STATE(3362), - [sym_invocation_expression] = STATE(3449), - [sym_switch_expression] = STATE(3362), - [sym_await_expression] = STATE(3449), - [sym_throw_expression] = STATE(3362), - [sym_element_access_expression] = STATE(2747), - [sym_interpolated_string_expression] = STATE(3362), - [sym_member_access_expression] = STATE(2747), - [sym_object_creation_expression] = STATE(3449), - [sym_parenthesized_expression] = STATE(3449), - [sym__parenthesized_lvalue_expression] = STATE(2747), - [sym_lambda_expression] = STATE(3362), - [sym__lambda_expression_init] = STATE(7384), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3362), - [sym_anonymous_method_expression] = STATE(3362), - [sym_anonymous_object_creation_expression] = STATE(3362), - [sym_implicit_array_creation_expression] = STATE(3362), - [sym_implicit_object_creation_expression] = STATE(3362), - [sym_implicit_stackalloc_expression] = STATE(3362), - [sym_initializer_expression] = STATE(3362), - [sym_default_expression] = STATE(3362), - [sym_with_expression] = STATE(3362), - [sym_sizeof_expression] = STATE(3362), - [sym_typeof_expression] = STATE(3362), - [sym_makeref_expression] = STATE(3362), - [sym_ref_expression] = STATE(3362), - [sym_reftype_expression] = STATE(3362), - [sym_refvalue_expression] = STATE(3362), - [sym_stackalloc_expression] = STATE(3362), - [sym_range_expression] = STATE(3362), - [sym_tuple_expression] = STATE(2747), - [sym_literal] = STATE(3362), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2267), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3362), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(5893), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2361), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(5535), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3673), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3102), + [sym_postfix_unary_expression] = STATE(3079), + [sym_prefix_unary_expression] = STATE(3079), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6159), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3102), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3079), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3102), + [sym_member_access_expression] = STATE(2472), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3079), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7363), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(3102), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3102), + [sym_typeof_expression] = STATE(3102), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2472), + [sym_literal] = STATE(3102), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(826), [sym_preproc_endregion] = STATE(826), [sym_preproc_line] = STATE(826), @@ -181453,47 +181339,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(826), [sym_preproc_define] = STATE(826), [sym_preproc_undef] = STATE(826), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3385), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1307), - [anon_sym_LPAREN] = ACTIONS(1543), - [anon_sym_ref] = ACTIONS(1545), - [anon_sym_LBRACE] = ACTIONS(1313), - [anon_sym_delegate] = ACTIONS(1315), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1479), + [anon_sym_LPAREN] = ACTIONS(2237), + [anon_sym_ref] = ACTIONS(2239), + [anon_sym_LBRACE] = ACTIONS(1481), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1317), + [anon_sym_new] = ACTIONS(2241), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1319), - [anon_sym_BANG] = ACTIONS(1549), - [anon_sym_TILDE] = ACTIONS(1549), - [anon_sym_PLUS_PLUS] = ACTIONS(1549), - [anon_sym_DASH_DASH] = ACTIONS(1549), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(2245), + [anon_sym_TILDE] = ACTIONS(2245), + [anon_sym_PLUS_PLUS] = ACTIONS(2245), + [anon_sym_DASH_DASH] = ACTIONS(2245), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1547), - [anon_sym_DASH] = ACTIONS(1547), - [anon_sym_STAR] = ACTIONS(1551), - [anon_sym_CARET] = ACTIONS(1549), - [anon_sym_AMP] = ACTIONS(1549), - [anon_sym_this] = ACTIONS(1323), + [anon_sym_PLUS] = ACTIONS(2243), + [anon_sym_DASH] = ACTIONS(2243), + [anon_sym_STAR] = ACTIONS(2247), + [anon_sym_CARET] = ACTIONS(2245), + [anon_sym_AMP] = ACTIONS(2245), + [anon_sym_this] = ACTIONS(83), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1325), + [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1319), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1553), + [anon_sym_throw] = ACTIONS(2249), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1555), - [anon_sym_DOT_DOT] = ACTIONS(1557), + [anon_sym_await] = ACTIONS(2251), + [anon_sym_DOT_DOT] = ACTIONS(2253), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -181506,19 +181392,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1333), + [anon_sym_stackalloc] = ACTIONS(127), [anon_sym_sizeof] = ACTIONS(129), [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(1335), - [anon_sym___reftype] = ACTIONS(1337), - [anon_sym___refvalue] = ACTIONS(1339), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), [sym_null_literal] = ACTIONS(139), [anon_sym_SQUOTE] = ACTIONS(141), [sym_integer_literal] = ACTIONS(139), [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1341), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -181535,84 +181421,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [827] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2610), - [sym__name] = STATE(5879), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2197), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(4229), - [sym_non_lvalue_expression] = STATE(3277), - [sym_lvalue_expression] = STATE(3134), - [sym__expression_statement_expression] = STATE(3228), - [sym_assignment_expression] = STATE(3289), - [sym_binary_expression] = STATE(3228), - [sym_postfix_unary_expression] = STATE(3289), - [sym_prefix_unary_expression] = STATE(3289), - [sym__pointer_indirection_expression] = STATE(2609), - [sym_query_expression] = STATE(3228), - [sym_from_clause] = STATE(6162), - [sym_conditional_expression] = STATE(3228), - [sym_conditional_access_expression] = STATE(3228), - [sym_as_expression] = STATE(3228), - [sym_is_expression] = STATE(3228), - [sym_is_pattern_expression] = STATE(3228), - [sym_cast_expression] = STATE(3228), - [sym_checked_expression] = STATE(3228), - [sym_invocation_expression] = STATE(3289), - [sym_switch_expression] = STATE(3228), - [sym_await_expression] = STATE(3289), - [sym_throw_expression] = STATE(3228), - [sym_element_access_expression] = STATE(2609), - [sym_interpolated_string_expression] = STATE(3228), - [sym_member_access_expression] = STATE(2609), - [sym_object_creation_expression] = STATE(3289), - [sym_parenthesized_expression] = STATE(3289), - [sym__parenthesized_lvalue_expression] = STATE(2609), - [sym_lambda_expression] = STATE(3228), - [sym__lambda_expression_init] = STATE(7695), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3228), - [sym_anonymous_method_expression] = STATE(3228), - [sym_anonymous_object_creation_expression] = STATE(3228), - [sym_implicit_array_creation_expression] = STATE(3228), - [sym_implicit_object_creation_expression] = STATE(3228), - [sym_implicit_stackalloc_expression] = STATE(3228), - [sym_initializer_expression] = STATE(3228), - [sym_default_expression] = STATE(3228), - [sym_with_expression] = STATE(3228), - [sym_sizeof_expression] = STATE(3228), - [sym_typeof_expression] = STATE(3228), - [sym_makeref_expression] = STATE(3228), - [sym_ref_expression] = STATE(3228), - [sym_reftype_expression] = STATE(3228), - [sym_refvalue_expression] = STATE(3228), - [sym_stackalloc_expression] = STATE(3228), - [sym_range_expression] = STATE(3228), - [sym_tuple_expression] = STATE(2609), - [sym_literal] = STATE(3228), - [sym_character_literal] = STATE(3278), - [sym_string_literal] = STATE(3278), - [sym_raw_string_literal] = STATE(3278), - [sym_boolean_literal] = STATE(3278), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3228), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(5873), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2238), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(5620), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3468), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3102), + [sym_postfix_unary_expression] = STATE(3079), + [sym_prefix_unary_expression] = STATE(3079), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6134), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3102), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3079), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3102), + [sym_member_access_expression] = STATE(2472), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3079), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7309), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(3102), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3102), + [sym_typeof_expression] = STATE(3102), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2472), + [sym_literal] = STATE(3102), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(827), [sym_preproc_endregion] = STATE(827), [sym_preproc_line] = STATE(827), @@ -181622,47 +181508,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(827), [sym_preproc_define] = STATE(827), [sym_preproc_undef] = STATE(827), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3396), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1153), - [anon_sym_LPAREN] = ACTIONS(1371), - [anon_sym_ref] = ACTIONS(1373), - [anon_sym_LBRACE] = ACTIONS(1159), - [anon_sym_delegate] = ACTIONS(1161), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1479), + [anon_sym_LPAREN] = ACTIONS(659), + [anon_sym_ref] = ACTIONS(663), + [anon_sym_LBRACE] = ACTIONS(1481), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1163), + [anon_sym_new] = ACTIONS(1059), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1167), - [anon_sym_BANG] = ACTIONS(1377), - [anon_sym_TILDE] = ACTIONS(1377), - [anon_sym_PLUS_PLUS] = ACTIONS(1377), - [anon_sym_DASH_DASH] = ACTIONS(1377), - [anon_sym_true] = ACTIONS(1173), - [anon_sym_false] = ACTIONS(1173), - [anon_sym_PLUS] = ACTIONS(1375), - [anon_sym_DASH] = ACTIONS(1375), - [anon_sym_STAR] = ACTIONS(1379), - [anon_sym_CARET] = ACTIONS(1377), - [anon_sym_AMP] = ACTIONS(1377), - [anon_sym_this] = ACTIONS(1177), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(1485), + [anon_sym_TILDE] = ACTIONS(1485), + [anon_sym_PLUS_PLUS] = ACTIONS(1485), + [anon_sym_DASH_DASH] = ACTIONS(1485), + [anon_sym_true] = ACTIONS(77), + [anon_sym_false] = ACTIONS(77), + [anon_sym_PLUS] = ACTIONS(1483), + [anon_sym_DASH] = ACTIONS(1483), + [anon_sym_STAR] = ACTIONS(683), + [anon_sym_CARET] = ACTIONS(1485), + [anon_sym_AMP] = ACTIONS(1485), + [anon_sym_this] = ACTIONS(83), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1179), + [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1181), - [anon_sym_unchecked] = ACTIONS(1167), + [sym_predefined_type] = ACTIONS(91), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1183), - [anon_sym_throw] = ACTIONS(1381), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(1077), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1383), - [anon_sym_DOT_DOT] = ACTIONS(1385), + [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), @@ -181675,19 +181561,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1191), - [anon_sym_sizeof] = ACTIONS(1193), - [anon_sym_typeof] = ACTIONS(1195), - [anon_sym___makeref] = ACTIONS(1197), - [anon_sym___reftype] = ACTIONS(1199), - [anon_sym___refvalue] = ACTIONS(1201), - [sym_null_literal] = ACTIONS(1203), - [anon_sym_SQUOTE] = ACTIONS(1205), - [sym_integer_literal] = ACTIONS(1203), - [sym_real_literal] = ACTIONS(1207), - [anon_sym_DQUOTE] = ACTIONS(1209), - [sym_verbatim_string_literal] = ACTIONS(1207), - [aux_sym_preproc_if_token1] = ACTIONS(1211), + [anon_sym_stackalloc] = ACTIONS(127), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_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), @@ -181698,90 +181584,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1213), - [sym_interpolation_verbatim_start] = ACTIONS(1215), - [sym_interpolation_raw_start] = ACTIONS(1217), - [sym_raw_string_start] = ACTIONS(1219), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [sym_interpolation_raw_start] = ACTIONS(155), + [sym_raw_string_start] = ACTIONS(157), }, [828] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2610), - [sym__name] = STATE(5886), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2319), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(3145), - [sym_non_lvalue_expression] = STATE(3277), - [sym_lvalue_expression] = STATE(3347), - [sym__expression_statement_expression] = STATE(3228), - [sym_assignment_expression] = STATE(3289), - [sym_binary_expression] = STATE(3228), - [sym_postfix_unary_expression] = STATE(3289), - [sym_prefix_unary_expression] = STATE(3289), - [sym__pointer_indirection_expression] = STATE(2609), - [sym_query_expression] = STATE(3228), - [sym_from_clause] = STATE(6150), - [sym_conditional_expression] = STATE(3228), - [sym_conditional_access_expression] = STATE(3228), - [sym_as_expression] = STATE(3228), - [sym_is_expression] = STATE(3228), - [sym_is_pattern_expression] = STATE(3228), - [sym_cast_expression] = STATE(3228), - [sym_checked_expression] = STATE(3228), - [sym_invocation_expression] = STATE(3289), - [sym_switch_expression] = STATE(3228), - [sym_await_expression] = STATE(3289), - [sym_throw_expression] = STATE(3228), - [sym_element_access_expression] = STATE(2609), - [sym_interpolated_string_expression] = STATE(3228), - [sym_member_access_expression] = STATE(2609), - [sym_object_creation_expression] = STATE(3289), - [sym_parenthesized_expression] = STATE(3289), - [sym__parenthesized_lvalue_expression] = STATE(2609), - [sym_lambda_expression] = STATE(3228), - [sym__lambda_expression_init] = STATE(7531), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3228), - [sym_anonymous_method_expression] = STATE(3228), - [sym_anonymous_object_creation_expression] = STATE(3228), - [sym_implicit_array_creation_expression] = STATE(3228), - [sym_implicit_object_creation_expression] = STATE(3228), - [sym_implicit_stackalloc_expression] = STATE(3228), - [sym_initializer_expression] = STATE(3228), - [sym_default_expression] = STATE(3228), - [sym_with_expression] = STATE(3228), - [sym_sizeof_expression] = STATE(3228), - [sym_typeof_expression] = STATE(3228), - [sym_makeref_expression] = STATE(3228), - [sym_ref_expression] = STATE(3228), - [sym_reftype_expression] = STATE(3228), - [sym_refvalue_expression] = STATE(3228), - [sym_stackalloc_expression] = STATE(3228), - [sym_range_expression] = STATE(3228), - [sym_tuple_expression] = STATE(2609), - [sym_literal] = STATE(3228), - [sym_character_literal] = STATE(3278), - [sym_string_literal] = STATE(3278), - [sym_raw_string_literal] = STATE(3278), - [sym_boolean_literal] = STATE(3278), - [sym_identifier] = STATE(2267), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3228), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(5873), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2238), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(5404), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3468), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3102), + [sym_postfix_unary_expression] = STATE(3079), + [sym_prefix_unary_expression] = STATE(3079), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6134), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3102), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3079), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3102), + [sym_member_access_expression] = STATE(2472), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3079), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7309), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(3102), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3102), + [sym_typeof_expression] = STATE(3102), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2472), + [sym_literal] = STATE(3102), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(828), [sym_preproc_endregion] = STATE(828), [sym_preproc_line] = STATE(828), @@ -181791,47 +181677,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(828), [sym_preproc_define] = STATE(828), [sym_preproc_undef] = STATE(828), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3396), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1153), - [anon_sym_LPAREN] = ACTIONS(1525), - [anon_sym_ref] = ACTIONS(1527), - [anon_sym_LBRACE] = ACTIONS(1159), - [anon_sym_delegate] = ACTIONS(1161), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1479), + [anon_sym_LPAREN] = ACTIONS(659), + [anon_sym_ref] = ACTIONS(663), + [anon_sym_LBRACE] = ACTIONS(1481), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1529), + [anon_sym_new] = ACTIONS(1059), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1167), - [anon_sym_BANG] = ACTIONS(1533), - [anon_sym_TILDE] = ACTIONS(1533), - [anon_sym_PLUS_PLUS] = ACTIONS(1533), - [anon_sym_DASH_DASH] = ACTIONS(1533), - [anon_sym_true] = ACTIONS(1173), - [anon_sym_false] = ACTIONS(1173), - [anon_sym_PLUS] = ACTIONS(1531), - [anon_sym_DASH] = ACTIONS(1531), - [anon_sym_STAR] = ACTIONS(1535), - [anon_sym_CARET] = ACTIONS(1533), - [anon_sym_AMP] = ACTIONS(1533), - [anon_sym_this] = ACTIONS(1177), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(1485), + [anon_sym_TILDE] = ACTIONS(1485), + [anon_sym_PLUS_PLUS] = ACTIONS(1485), + [anon_sym_DASH_DASH] = ACTIONS(1485), + [anon_sym_true] = ACTIONS(77), + [anon_sym_false] = ACTIONS(77), + [anon_sym_PLUS] = ACTIONS(1483), + [anon_sym_DASH] = ACTIONS(1483), + [anon_sym_STAR] = ACTIONS(683), + [anon_sym_CARET] = ACTIONS(1485), + [anon_sym_AMP] = ACTIONS(1485), + [anon_sym_this] = ACTIONS(83), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1179), + [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1181), - [anon_sym_unchecked] = ACTIONS(1167), + [sym_predefined_type] = ACTIONS(91), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1183), - [anon_sym_throw] = ACTIONS(1537), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(1077), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1539), - [anon_sym_DOT_DOT] = ACTIONS(1541), + [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), @@ -181844,19 +181730,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1191), - [anon_sym_sizeof] = ACTIONS(1193), - [anon_sym_typeof] = ACTIONS(1195), - [anon_sym___makeref] = ACTIONS(1197), - [anon_sym___reftype] = ACTIONS(1199), - [anon_sym___refvalue] = ACTIONS(1201), - [sym_null_literal] = ACTIONS(1203), - [anon_sym_SQUOTE] = ACTIONS(1205), - [sym_integer_literal] = ACTIONS(1203), - [sym_real_literal] = ACTIONS(1207), - [anon_sym_DQUOTE] = ACTIONS(1209), - [sym_verbatim_string_literal] = ACTIONS(1207), - [aux_sym_preproc_if_token1] = ACTIONS(1211), + [anon_sym_stackalloc] = ACTIONS(127), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_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), @@ -181867,90 +181753,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1213), - [sym_interpolation_verbatim_start] = ACTIONS(1215), - [sym_interpolation_raw_start] = ACTIONS(1217), - [sym_raw_string_start] = ACTIONS(1219), + [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(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2610), - [sym__name] = STATE(5879), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2197), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(4210), - [sym_non_lvalue_expression] = STATE(3277), - [sym_lvalue_expression] = STATE(3134), - [sym__expression_statement_expression] = STATE(3228), - [sym_assignment_expression] = STATE(3289), - [sym_binary_expression] = STATE(3228), - [sym_postfix_unary_expression] = STATE(3289), - [sym_prefix_unary_expression] = STATE(3289), - [sym__pointer_indirection_expression] = STATE(2609), - [sym_query_expression] = STATE(3228), - [sym_from_clause] = STATE(6162), - [sym_conditional_expression] = STATE(3228), - [sym_conditional_access_expression] = STATE(3228), - [sym_as_expression] = STATE(3228), - [sym_is_expression] = STATE(3228), - [sym_is_pattern_expression] = STATE(3228), - [sym_cast_expression] = STATE(3228), - [sym_checked_expression] = STATE(3228), - [sym_invocation_expression] = STATE(3289), - [sym_switch_expression] = STATE(3228), - [sym_await_expression] = STATE(3289), - [sym_throw_expression] = STATE(3228), - [sym_element_access_expression] = STATE(2609), - [sym_interpolated_string_expression] = STATE(3228), - [sym_member_access_expression] = STATE(2609), - [sym_object_creation_expression] = STATE(3289), - [sym_parenthesized_expression] = STATE(3289), - [sym__parenthesized_lvalue_expression] = STATE(2609), - [sym_lambda_expression] = STATE(3228), - [sym__lambda_expression_init] = STATE(7695), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3228), - [sym_anonymous_method_expression] = STATE(3228), - [sym_anonymous_object_creation_expression] = STATE(3228), - [sym_implicit_array_creation_expression] = STATE(3228), - [sym_implicit_object_creation_expression] = STATE(3228), - [sym_implicit_stackalloc_expression] = STATE(3228), - [sym_initializer_expression] = STATE(3228), - [sym_default_expression] = STATE(3228), - [sym_with_expression] = STATE(3228), - [sym_sizeof_expression] = STATE(3228), - [sym_typeof_expression] = STATE(3228), - [sym_makeref_expression] = STATE(3228), - [sym_ref_expression] = STATE(3228), - [sym_reftype_expression] = STATE(3228), - [sym_refvalue_expression] = STATE(3228), - [sym_stackalloc_expression] = STATE(3228), - [sym_range_expression] = STATE(3228), - [sym_tuple_expression] = STATE(2609), - [sym_literal] = STATE(3228), - [sym_character_literal] = STATE(3278), - [sym_string_literal] = STATE(3278), - [sym_raw_string_literal] = STATE(3278), - [sym_boolean_literal] = STATE(3278), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3228), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(5873), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2238), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(3507), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3468), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3102), + [sym_postfix_unary_expression] = STATE(3079), + [sym_prefix_unary_expression] = STATE(3079), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6134), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3102), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3079), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3102), + [sym_member_access_expression] = STATE(2472), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3079), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7309), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(3102), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3102), + [sym_typeof_expression] = STATE(3102), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2472), + [sym_literal] = STATE(3102), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(829), [sym_preproc_endregion] = STATE(829), [sym_preproc_line] = STATE(829), @@ -181960,47 +181846,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(829), [sym_preproc_define] = STATE(829), [sym_preproc_undef] = STATE(829), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3396), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1153), - [anon_sym_LPAREN] = ACTIONS(1371), - [anon_sym_ref] = ACTIONS(1373), - [anon_sym_LBRACE] = ACTIONS(1159), - [anon_sym_delegate] = ACTIONS(1161), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1479), + [anon_sym_LPAREN] = ACTIONS(659), + [anon_sym_ref] = ACTIONS(663), + [anon_sym_LBRACE] = ACTIONS(1481), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1163), + [anon_sym_new] = ACTIONS(1059), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1167), - [anon_sym_BANG] = ACTIONS(1377), - [anon_sym_TILDE] = ACTIONS(1377), - [anon_sym_PLUS_PLUS] = ACTIONS(1377), - [anon_sym_DASH_DASH] = ACTIONS(1377), - [anon_sym_true] = ACTIONS(1173), - [anon_sym_false] = ACTIONS(1173), - [anon_sym_PLUS] = ACTIONS(1375), - [anon_sym_DASH] = ACTIONS(1375), - [anon_sym_STAR] = ACTIONS(1379), - [anon_sym_CARET] = ACTIONS(1377), - [anon_sym_AMP] = ACTIONS(1377), - [anon_sym_this] = ACTIONS(1177), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(1485), + [anon_sym_TILDE] = ACTIONS(1485), + [anon_sym_PLUS_PLUS] = ACTIONS(1485), + [anon_sym_DASH_DASH] = ACTIONS(1485), + [anon_sym_true] = ACTIONS(77), + [anon_sym_false] = ACTIONS(77), + [anon_sym_PLUS] = ACTIONS(1483), + [anon_sym_DASH] = ACTIONS(1483), + [anon_sym_STAR] = ACTIONS(683), + [anon_sym_CARET] = ACTIONS(1485), + [anon_sym_AMP] = ACTIONS(1485), + [anon_sym_this] = ACTIONS(83), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1179), + [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1181), - [anon_sym_unchecked] = ACTIONS(1167), + [sym_predefined_type] = ACTIONS(91), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1183), - [anon_sym_throw] = ACTIONS(1381), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(1077), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1383), - [anon_sym_DOT_DOT] = ACTIONS(1385), + [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), @@ -182013,19 +181899,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1191), - [anon_sym_sizeof] = ACTIONS(1193), - [anon_sym_typeof] = ACTIONS(1195), - [anon_sym___makeref] = ACTIONS(1197), - [anon_sym___reftype] = ACTIONS(1199), - [anon_sym___refvalue] = ACTIONS(1201), - [sym_null_literal] = ACTIONS(1203), - [anon_sym_SQUOTE] = ACTIONS(1205), - [sym_integer_literal] = ACTIONS(1203), - [sym_real_literal] = ACTIONS(1207), - [anon_sym_DQUOTE] = ACTIONS(1209), - [sym_verbatim_string_literal] = ACTIONS(1207), - [aux_sym_preproc_if_token1] = ACTIONS(1211), + [anon_sym_stackalloc] = ACTIONS(127), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_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), @@ -182036,90 +181922,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1213), - [sym_interpolation_verbatim_start] = ACTIONS(1215), - [sym_interpolation_raw_start] = ACTIONS(1217), - [sym_raw_string_start] = ACTIONS(1219), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [sym_interpolation_raw_start] = ACTIONS(155), + [sym_raw_string_start] = ACTIONS(157), }, [830] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2420), - [sym__name] = STATE(5911), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2197), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(4432), - [sym_non_lvalue_expression] = STATE(3066), - [sym_lvalue_expression] = STATE(3327), - [sym__expression_statement_expression] = STATE(3006), - [sym_assignment_expression] = STATE(3020), - [sym_binary_expression] = STATE(3006), - [sym_postfix_unary_expression] = STATE(3020), - [sym_prefix_unary_expression] = STATE(3020), - [sym__pointer_indirection_expression] = STATE(2423), - [sym_query_expression] = STATE(3006), - [sym_from_clause] = STATE(6159), - [sym_conditional_expression] = STATE(3006), - [sym_conditional_access_expression] = STATE(3006), - [sym_as_expression] = STATE(3006), - [sym_is_expression] = STATE(3006), - [sym_is_pattern_expression] = STATE(3006), - [sym_cast_expression] = STATE(3006), - [sym_checked_expression] = STATE(3006), - [sym_invocation_expression] = STATE(3020), - [sym_switch_expression] = STATE(3006), - [sym_await_expression] = STATE(3020), - [sym_throw_expression] = STATE(3006), - [sym_element_access_expression] = STATE(2423), - [sym_interpolated_string_expression] = STATE(3006), - [sym_member_access_expression] = STATE(2423), - [sym_object_creation_expression] = STATE(3020), - [sym_parenthesized_expression] = STATE(3020), - [sym__parenthesized_lvalue_expression] = STATE(2423), - [sym_lambda_expression] = STATE(3006), - [sym__lambda_expression_init] = STATE(7674), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3006), - [sym_anonymous_method_expression] = STATE(3006), - [sym_anonymous_object_creation_expression] = STATE(3006), - [sym_implicit_array_creation_expression] = STATE(3006), - [sym_implicit_object_creation_expression] = STATE(3006), - [sym_implicit_stackalloc_expression] = STATE(3006), - [sym_initializer_expression] = STATE(3006), - [sym_default_expression] = STATE(3006), - [sym_with_expression] = STATE(3006), - [sym_sizeof_expression] = STATE(3006), - [sym_typeof_expression] = STATE(3006), - [sym_makeref_expression] = STATE(3006), - [sym_ref_expression] = STATE(3006), - [sym_reftype_expression] = STATE(3006), - [sym_refvalue_expression] = STATE(3006), - [sym_stackalloc_expression] = STATE(3006), - [sym_range_expression] = STATE(3006), - [sym_tuple_expression] = STATE(2423), - [sym_literal] = STATE(3006), - [sym_character_literal] = STATE(3011), - [sym_string_literal] = STATE(3011), - [sym_raw_string_literal] = STATE(3011), - [sym_boolean_literal] = STATE(3011), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3006), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(5873), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2238), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(5660), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(2471), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3102), + [sym_postfix_unary_expression] = STATE(3079), + [sym_prefix_unary_expression] = STATE(3079), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6134), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3102), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3079), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3102), + [sym_member_access_expression] = STATE(2472), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3079), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7425), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(3102), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3102), + [sym_typeof_expression] = STATE(3102), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2472), + [sym_literal] = STATE(3102), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(830), [sym_preproc_endregion] = STATE(830), [sym_preproc_line] = STATE(830), @@ -182129,47 +182015,47 @@ 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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3440), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1241), - [anon_sym_LPAREN] = ACTIONS(1509), - [anon_sym_ref] = ACTIONS(1511), - [anon_sym_LBRACE] = ACTIONS(1247), - [anon_sym_delegate] = ACTIONS(1249), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1479), + [anon_sym_LPAREN] = ACTIONS(43), + [anon_sym_ref] = ACTIONS(715), + [anon_sym_LBRACE] = ACTIONS(1481), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1251), + [anon_sym_new] = ACTIONS(1059), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1253), - [anon_sym_BANG] = ACTIONS(1515), - [anon_sym_TILDE] = ACTIONS(1515), - [anon_sym_PLUS_PLUS] = ACTIONS(1515), - [anon_sym_DASH_DASH] = ACTIONS(1515), - [anon_sym_true] = ACTIONS(1259), - [anon_sym_false] = ACTIONS(1259), - [anon_sym_PLUS] = ACTIONS(1513), - [anon_sym_DASH] = ACTIONS(1513), - [anon_sym_STAR] = ACTIONS(1517), - [anon_sym_CARET] = ACTIONS(1515), - [anon_sym_AMP] = ACTIONS(1515), - [anon_sym_this] = ACTIONS(1263), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(1525), + [anon_sym_TILDE] = ACTIONS(1525), + [anon_sym_PLUS_PLUS] = ACTIONS(1525), + [anon_sym_DASH_DASH] = ACTIONS(1525), + [anon_sym_true] = ACTIONS(77), + [anon_sym_false] = ACTIONS(77), + [anon_sym_PLUS] = ACTIONS(1523), + [anon_sym_DASH] = ACTIONS(1523), + [anon_sym_STAR] = ACTIONS(683), + [anon_sym_CARET] = ACTIONS(1525), + [anon_sym_AMP] = ACTIONS(1525), + [anon_sym_this] = ACTIONS(83), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1265), + [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1267), - [anon_sym_unchecked] = ACTIONS(1253), + [sym_predefined_type] = ACTIONS(91), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1269), - [anon_sym_throw] = ACTIONS(1519), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(1527), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1521), - [anon_sym_DOT_DOT] = ACTIONS(1523), + [anon_sym_await] = ACTIONS(1529), + [anon_sym_DOT_DOT] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -182182,19 +182068,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1277), - [anon_sym_sizeof] = ACTIONS(1279), - [anon_sym_typeof] = ACTIONS(1281), - [anon_sym___makeref] = ACTIONS(1283), - [anon_sym___reftype] = ACTIONS(1285), - [anon_sym___refvalue] = ACTIONS(1287), - [sym_null_literal] = ACTIONS(1289), - [anon_sym_SQUOTE] = ACTIONS(1291), - [sym_integer_literal] = ACTIONS(1289), - [sym_real_literal] = ACTIONS(1293), - [anon_sym_DQUOTE] = ACTIONS(1295), - [sym_verbatim_string_literal] = ACTIONS(1293), - [aux_sym_preproc_if_token1] = ACTIONS(1297), + [anon_sym_stackalloc] = ACTIONS(127), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_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), @@ -182205,90 +182091,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1299), - [sym_interpolation_verbatim_start] = ACTIONS(1301), - [sym_interpolation_raw_start] = ACTIONS(1303), - [sym_raw_string_start] = ACTIONS(1305), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [sym_interpolation_raw_start] = ACTIONS(155), + [sym_raw_string_start] = ACTIONS(157), }, [831] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(5160), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2204), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(3519), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3520), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3080), - [sym_postfix_unary_expression] = STATE(3111), - [sym_prefix_unary_expression] = STATE(3111), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6154), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3080), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3111), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3080), - [sym_member_access_expression] = STATE(2484), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3111), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7530), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(3080), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3080), - [sym_typeof_expression] = STATE(3080), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2484), - [sym_literal] = STATE(3080), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(5881), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2386), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(4173), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3132), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3102), + [sym_postfix_unary_expression] = STATE(3079), + [sym_prefix_unary_expression] = STATE(3079), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6158), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3102), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3079), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3102), + [sym_member_access_expression] = STATE(2472), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3079), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7650), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(3102), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3102), + [sym_typeof_expression] = STATE(3102), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2472), + [sym_literal] = STATE(3102), + [sym_character_literal] = STATE(3037), + [sym_string_literal] = STATE(3037), + [sym_raw_string_literal] = STATE(3037), + [sym_boolean_literal] = STATE(3037), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(831), [sym_preproc_endregion] = STATE(831), [sym_preproc_line] = STATE(831), @@ -182298,47 +182184,216 @@ 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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1481), - [anon_sym_LPAREN] = ACTIONS(43), - [anon_sym_ref] = ACTIONS(661), - [anon_sym_LBRACE] = ACTIONS(1487), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1479), + [anon_sym_LPAREN] = ACTIONS(2185), + [anon_sym_ref] = ACTIONS(2187), + [anon_sym_LBRACE] = ACTIONS(1481), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1061), + [anon_sym_new] = ACTIONS(1899), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = 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_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(2191), + [anon_sym_TILDE] = ACTIONS(2191), + [anon_sym_PLUS_PLUS] = ACTIONS(2191), + [anon_sym_DASH_DASH] = ACTIONS(2191), + [anon_sym_true] = ACTIONS(1257), + [anon_sym_false] = ACTIONS(1257), + [anon_sym_PLUS] = ACTIONS(2189), + [anon_sym_DASH] = ACTIONS(2189), + [anon_sym_STAR] = ACTIONS(1905), + [anon_sym_CARET] = ACTIONS(2191), + [anon_sym_AMP] = ACTIONS(2191), + [anon_sym_this] = ACTIONS(83), + [anon_sym_scoped] = ACTIONS(85), + [anon_sym_base] = ACTIONS(87), + [anon_sym_var] = ACTIONS(89), + [sym_predefined_type] = ACTIONS(1265), + [anon_sym_unchecked] = ACTIONS(1065), + [anon_sym_yield] = ACTIONS(29), + [anon_sym_default] = ACTIONS(1267), + [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(1277), + [anon_sym_typeof] = ACTIONS(1279), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), + [sym_null_literal] = ACTIONS(1287), + [anon_sym_SQUOTE] = ACTIONS(1289), + [sym_integer_literal] = ACTIONS(1287), + [sym_real_literal] = ACTIONS(1291), + [anon_sym_DQUOTE] = ACTIONS(1293), + [sym_verbatim_string_literal] = ACTIONS(1291), + [aux_sym_preproc_if_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(1297), + [sym_interpolation_verbatim_start] = ACTIONS(1299), + [sym_interpolation_raw_start] = ACTIONS(1301), + [sym_raw_string_start] = ACTIONS(1303), + }, + [832] = { + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(5873), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2238), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(5435), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3468), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3102), + [sym_postfix_unary_expression] = STATE(3079), + [sym_prefix_unary_expression] = STATE(3079), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6134), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3102), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3079), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3102), + [sym_member_access_expression] = STATE(2472), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3079), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7309), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(3102), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3102), + [sym_typeof_expression] = STATE(3102), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2472), + [sym_literal] = STATE(3102), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), + [sym_preproc_region] = STATE(832), + [sym_preproc_endregion] = STATE(832), + [sym_preproc_line] = STATE(832), + [sym_preproc_pragma] = STATE(832), + [sym_preproc_nullable] = STATE(832), + [sym_preproc_error] = STATE(832), + [sym_preproc_warning] = STATE(832), + [sym_preproc_define] = STATE(832), + [sym_preproc_undef] = STATE(832), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), + [sym__identifier_token] = ACTIONS(25), + [anon_sym_alias] = ACTIONS(29), + [anon_sym_global] = ACTIONS(29), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1479), + [anon_sym_LPAREN] = ACTIONS(659), + [anon_sym_ref] = ACTIONS(663), + [anon_sym_LBRACE] = ACTIONS(1481), + [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(1485), + [anon_sym_TILDE] = ACTIONS(1485), + [anon_sym_PLUS_PLUS] = ACTIONS(1485), + [anon_sym_DASH_DASH] = ACTIONS(1485), [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_PLUS] = ACTIONS(1483), + [anon_sym_DASH] = ACTIONS(1483), + [anon_sym_STAR] = ACTIONS(683), + [anon_sym_CARET] = ACTIONS(1485), + [anon_sym_AMP] = ACTIONS(1485), [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(1067), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1589), + [anon_sym_throw] = ACTIONS(1077), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1591), - [anon_sym_DOT_DOT] = ACTIONS(123), + [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), @@ -182363,7 +182418,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(1089), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -182379,254 +182434,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), }, - [832] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(3184), - [sym__name] = STATE(5906), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2312), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2269), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(4704), - [sym_non_lvalue_expression] = STATE(4541), - [sym_lvalue_expression] = STATE(3439), - [sym__expression_statement_expression] = STATE(4529), - [sym_assignment_expression] = STATE(4543), - [sym_binary_expression] = STATE(4529), - [sym_postfix_unary_expression] = STATE(4543), - [sym_prefix_unary_expression] = STATE(4543), - [sym__pointer_indirection_expression] = STATE(3175), - [sym_query_expression] = STATE(4529), - [sym_from_clause] = STATE(6169), - [sym_conditional_expression] = STATE(4529), - [sym_conditional_access_expression] = STATE(4529), - [sym_as_expression] = STATE(4529), - [sym_is_expression] = STATE(4529), - [sym_is_pattern_expression] = STATE(4529), - [sym_cast_expression] = STATE(4529), - [sym_checked_expression] = STATE(4529), - [sym_invocation_expression] = STATE(4543), - [sym_switch_expression] = STATE(4529), - [sym_await_expression] = STATE(4543), - [sym_throw_expression] = STATE(4529), - [sym_element_access_expression] = STATE(3175), - [sym_interpolated_string_expression] = STATE(4529), - [sym_member_access_expression] = STATE(3175), - [sym_object_creation_expression] = STATE(4543), - [sym_parenthesized_expression] = STATE(4543), - [sym__parenthesized_lvalue_expression] = STATE(3175), - [sym_lambda_expression] = STATE(4529), - [sym__lambda_expression_init] = STATE(7684), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(4529), - [sym_anonymous_method_expression] = STATE(4529), - [sym_anonymous_object_creation_expression] = STATE(4529), - [sym_implicit_array_creation_expression] = STATE(4529), - [sym_implicit_object_creation_expression] = STATE(4529), - [sym_implicit_stackalloc_expression] = STATE(4529), - [sym_initializer_expression] = STATE(4529), - [sym_default_expression] = STATE(4529), - [sym_with_expression] = STATE(4529), - [sym_sizeof_expression] = STATE(4529), - [sym_typeof_expression] = STATE(4529), - [sym_makeref_expression] = STATE(4529), - [sym_ref_expression] = STATE(4529), - [sym_reftype_expression] = STATE(4529), - [sym_refvalue_expression] = STATE(4529), - [sym_stackalloc_expression] = STATE(4529), - [sym_range_expression] = STATE(4529), - [sym_tuple_expression] = STATE(3175), - [sym_literal] = STATE(4529), - [sym_character_literal] = STATE(4536), - [sym_string_literal] = STATE(4536), - [sym_raw_string_literal] = STATE(4536), - [sym_boolean_literal] = STATE(4536), - [sym_identifier] = STATE(2246), - [sym__reserved_identifier] = STATE(2240), - [sym_preproc_if_in_expression] = STATE(4529), - [sym_preproc_if_in_attribute_list] = STATE(5576), - [sym_preproc_region] = STATE(832), - [sym_preproc_endregion] = STATE(832), - [sym_preproc_line] = STATE(832), - [sym_preproc_pragma] = STATE(832), - [sym_preproc_nullable] = STATE(832), - [sym_preproc_error] = STATE(832), - [sym_preproc_warning] = STATE(832), - [sym_preproc_define] = STATE(832), - [sym_preproc_undef] = STATE(832), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3363), - [sym__identifier_token] = ACTIONS(1387), - [anon_sym_alias] = ACTIONS(1389), - [anon_sym_global] = ACTIONS(1389), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1391), - [anon_sym_LPAREN] = ACTIONS(1775), - [anon_sym_ref] = ACTIONS(1777), - [anon_sym_LBRACE] = ACTIONS(1397), - [anon_sym_delegate] = ACTIONS(1399), - [anon_sym_async] = ACTIONS(1047), - [anon_sym_file] = ACTIONS(1389), - [anon_sym_new] = ACTIONS(1401), - [anon_sym_where] = ACTIONS(1389), - [anon_sym_notnull] = ACTIONS(1389), - [anon_sym_unmanaged] = ACTIONS(1389), - [anon_sym_checked] = ACTIONS(1403), - [anon_sym_BANG] = ACTIONS(1781), - [anon_sym_TILDE] = ACTIONS(1781), - [anon_sym_PLUS_PLUS] = ACTIONS(1781), - [anon_sym_DASH_DASH] = ACTIONS(1781), - [anon_sym_true] = ACTIONS(1409), - [anon_sym_false] = ACTIONS(1409), - [anon_sym_PLUS] = ACTIONS(1779), - [anon_sym_DASH] = ACTIONS(1779), - [anon_sym_STAR] = ACTIONS(1411), - [anon_sym_CARET] = ACTIONS(1781), - [anon_sym_AMP] = ACTIONS(1781), - [anon_sym_this] = ACTIONS(1413), - [anon_sym_scoped] = ACTIONS(1415), - [anon_sym_base] = ACTIONS(1417), - [anon_sym_var] = ACTIONS(1419), - [sym_predefined_type] = ACTIONS(1421), - [anon_sym_unchecked] = ACTIONS(1403), - [anon_sym_yield] = ACTIONS(1389), - [anon_sym_default] = ACTIONS(1423), - [anon_sym_throw] = ACTIONS(1783), - [anon_sym_when] = ACTIONS(1389), - [anon_sym_await] = ACTIONS(1785), - [anon_sym_DOT_DOT] = ACTIONS(1787), - [anon_sym_from] = ACTIONS(1431), - [anon_sym_into] = ACTIONS(1389), - [anon_sym_join] = ACTIONS(1389), - [anon_sym_on] = ACTIONS(1389), - [anon_sym_equals] = ACTIONS(1389), - [anon_sym_let] = ACTIONS(1389), - [anon_sym_orderby] = ACTIONS(1389), - [anon_sym_ascending] = ACTIONS(1389), - [anon_sym_descending] = ACTIONS(1389), - [anon_sym_group] = ACTIONS(1389), - [anon_sym_by] = ACTIONS(1389), - [anon_sym_select] = ACTIONS(1389), - [anon_sym_stackalloc] = ACTIONS(1433), - [anon_sym_sizeof] = ACTIONS(1435), - [anon_sym_typeof] = ACTIONS(1437), - [anon_sym___makeref] = ACTIONS(1439), - [anon_sym___reftype] = ACTIONS(1441), - [anon_sym___refvalue] = ACTIONS(1443), - [sym_null_literal] = ACTIONS(1445), - [anon_sym_SQUOTE] = ACTIONS(1447), - [sym_integer_literal] = ACTIONS(1445), - [sym_real_literal] = ACTIONS(1449), - [anon_sym_DQUOTE] = ACTIONS(1451), - [sym_verbatim_string_literal] = ACTIONS(1449), - [aux_sym_preproc_if_token1] = ACTIONS(1453), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1455), - [sym_interpolation_verbatim_start] = ACTIONS(1457), - [sym_interpolation_raw_start] = ACTIONS(1459), - [sym_raw_string_start] = ACTIONS(1461), - }, [833] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(3184), - [sym__name] = STATE(5906), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2312), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2269), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(4265), - [sym_non_lvalue_expression] = STATE(4541), - [sym_lvalue_expression] = STATE(3439), - [sym__expression_statement_expression] = STATE(4529), - [sym_assignment_expression] = STATE(4543), - [sym_binary_expression] = STATE(4529), - [sym_postfix_unary_expression] = STATE(4543), - [sym_prefix_unary_expression] = STATE(4543), - [sym__pointer_indirection_expression] = STATE(3175), - [sym_query_expression] = STATE(4529), - [sym_from_clause] = STATE(6169), - [sym_conditional_expression] = STATE(4529), - [sym_conditional_access_expression] = STATE(4529), - [sym_as_expression] = STATE(4529), - [sym_is_expression] = STATE(4529), - [sym_is_pattern_expression] = STATE(4529), - [sym_cast_expression] = STATE(4529), - [sym_checked_expression] = STATE(4529), - [sym_invocation_expression] = STATE(4543), - [sym_switch_expression] = STATE(4529), - [sym_await_expression] = STATE(4543), - [sym_throw_expression] = STATE(4529), - [sym_element_access_expression] = STATE(3175), - [sym_interpolated_string_expression] = STATE(4529), - [sym_member_access_expression] = STATE(3175), - [sym_object_creation_expression] = STATE(4543), - [sym_parenthesized_expression] = STATE(4543), - [sym__parenthesized_lvalue_expression] = STATE(3175), - [sym_lambda_expression] = STATE(4529), - [sym__lambda_expression_init] = STATE(7684), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(4529), - [sym_anonymous_method_expression] = STATE(4529), - [sym_anonymous_object_creation_expression] = STATE(4529), - [sym_implicit_array_creation_expression] = STATE(4529), - [sym_implicit_object_creation_expression] = STATE(4529), - [sym_implicit_stackalloc_expression] = STATE(4529), - [sym_initializer_expression] = STATE(4529), - [sym_default_expression] = STATE(4529), - [sym_with_expression] = STATE(4529), - [sym_sizeof_expression] = STATE(4529), - [sym_typeof_expression] = STATE(4529), - [sym_makeref_expression] = STATE(4529), - [sym_ref_expression] = STATE(4529), - [sym_reftype_expression] = STATE(4529), - [sym_refvalue_expression] = STATE(4529), - [sym_stackalloc_expression] = STATE(4529), - [sym_range_expression] = STATE(4529), - [sym_tuple_expression] = STATE(3175), - [sym_literal] = STATE(4529), - [sym_character_literal] = STATE(4536), - [sym_string_literal] = STATE(4536), - [sym_raw_string_literal] = STATE(4536), - [sym_boolean_literal] = STATE(4536), - [sym_identifier] = STATE(2246), - [sym__reserved_identifier] = STATE(2240), - [sym_preproc_if_in_expression] = STATE(4529), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(5152), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2196), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(4832), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3356), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3102), + [sym_postfix_unary_expression] = STATE(3079), + [sym_prefix_unary_expression] = STATE(3079), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6134), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3102), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3079), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3102), + [sym_member_access_expression] = STATE(2472), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3079), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7627), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(3102), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3102), + [sym_typeof_expression] = STATE(3102), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2472), + [sym_literal] = STATE(3102), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(833), [sym_preproc_endregion] = STATE(833), [sym_preproc_line] = STATE(833), @@ -182636,166 +182522,166 @@ 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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3363), - [sym__identifier_token] = ACTIONS(1387), - [anon_sym_alias] = ACTIONS(1389), - [anon_sym_global] = ACTIONS(1389), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1391), - [anon_sym_LPAREN] = ACTIONS(1775), - [anon_sym_ref] = ACTIONS(1777), - [anon_sym_LBRACE] = ACTIONS(1397), - [anon_sym_delegate] = ACTIONS(1399), - [anon_sym_async] = ACTIONS(1047), - [anon_sym_file] = ACTIONS(1389), - [anon_sym_new] = ACTIONS(1401), - [anon_sym_where] = ACTIONS(1389), - [anon_sym_notnull] = ACTIONS(1389), - [anon_sym_unmanaged] = ACTIONS(1389), - [anon_sym_checked] = ACTIONS(1403), - [anon_sym_BANG] = ACTIONS(1781), - [anon_sym_TILDE] = ACTIONS(1781), - [anon_sym_PLUS_PLUS] = ACTIONS(1781), - [anon_sym_DASH_DASH] = ACTIONS(1781), - [anon_sym_true] = ACTIONS(1409), - [anon_sym_false] = ACTIONS(1409), - [anon_sym_PLUS] = ACTIONS(1779), - [anon_sym_DASH] = ACTIONS(1779), - [anon_sym_STAR] = ACTIONS(1411), - [anon_sym_CARET] = ACTIONS(1781), - [anon_sym_AMP] = ACTIONS(1781), - [anon_sym_this] = ACTIONS(1413), - [anon_sym_scoped] = ACTIONS(1415), - [anon_sym_base] = ACTIONS(1417), - [anon_sym_var] = ACTIONS(1419), - [sym_predefined_type] = ACTIONS(1421), - [anon_sym_unchecked] = ACTIONS(1403), - [anon_sym_yield] = ACTIONS(1389), - [anon_sym_default] = ACTIONS(1423), - [anon_sym_throw] = ACTIONS(1783), - [anon_sym_when] = ACTIONS(1389), - [anon_sym_await] = ACTIONS(1785), - [anon_sym_DOT_DOT] = ACTIONS(1787), - [anon_sym_from] = ACTIONS(1431), - [anon_sym_into] = ACTIONS(1389), - [anon_sym_join] = ACTIONS(1389), - [anon_sym_on] = ACTIONS(1389), - [anon_sym_equals] = ACTIONS(1389), - [anon_sym_let] = ACTIONS(1389), - [anon_sym_orderby] = ACTIONS(1389), - [anon_sym_ascending] = ACTIONS(1389), - [anon_sym_descending] = ACTIONS(1389), - [anon_sym_group] = ACTIONS(1389), - [anon_sym_by] = ACTIONS(1389), - [anon_sym_select] = ACTIONS(1389), - [anon_sym_stackalloc] = ACTIONS(1433), - [anon_sym_sizeof] = ACTIONS(1435), - [anon_sym_typeof] = ACTIONS(1437), - [anon_sym___makeref] = ACTIONS(1439), - [anon_sym___reftype] = ACTIONS(1441), - [anon_sym___refvalue] = ACTIONS(1443), - [sym_null_literal] = ACTIONS(1445), - [anon_sym_SQUOTE] = ACTIONS(1447), - [sym_integer_literal] = ACTIONS(1445), - [sym_real_literal] = ACTIONS(1449), - [anon_sym_DQUOTE] = ACTIONS(1451), - [sym_verbatim_string_literal] = ACTIONS(1449), - [aux_sym_preproc_if_token1] = ACTIONS(1453), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1455), - [sym_interpolation_verbatim_start] = ACTIONS(1457), - [sym_interpolation_raw_start] = ACTIONS(1459), - [sym_raw_string_start] = ACTIONS(1461), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), + [sym__identifier_token] = ACTIONS(25), + [anon_sym_alias] = ACTIONS(29), + [anon_sym_global] = ACTIONS(29), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1479), + [anon_sym_LPAREN] = ACTIONS(1511), + [anon_sym_ref] = ACTIONS(1513), + [anon_sym_LBRACE] = ACTIONS(1481), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), + [anon_sym_file] = ACTIONS(29), + [anon_sym_new] = ACTIONS(1515), + [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(1517), + [anon_sym_when] = ACTIONS(29), + [anon_sym_await] = ACTIONS(1519), + [anon_sym_DOT_DOT] = ACTIONS(1521), + [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), }, [834] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2762), - [sym__name] = STATE(5910), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2204), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(4305), - [sym_non_lvalue_expression] = STATE(3438), - [sym_lvalue_expression] = STATE(3162), - [sym__expression_statement_expression] = STATE(3362), - [sym_assignment_expression] = STATE(3449), - [sym_binary_expression] = STATE(3362), - [sym_postfix_unary_expression] = STATE(3449), - [sym_prefix_unary_expression] = STATE(3449), - [sym__pointer_indirection_expression] = STATE(2747), - [sym_query_expression] = STATE(3362), - [sym_from_clause] = STATE(6171), - [sym_conditional_expression] = STATE(3362), - [sym_conditional_access_expression] = STATE(3362), - [sym_as_expression] = STATE(3362), - [sym_is_expression] = STATE(3362), - [sym_is_pattern_expression] = STATE(3362), - [sym_cast_expression] = STATE(3362), - [sym_checked_expression] = STATE(3362), - [sym_invocation_expression] = STATE(3449), - [sym_switch_expression] = STATE(3362), - [sym_await_expression] = STATE(3449), - [sym_throw_expression] = STATE(3362), - [sym_element_access_expression] = STATE(2747), - [sym_interpolated_string_expression] = STATE(3362), - [sym_member_access_expression] = STATE(2747), - [sym_object_creation_expression] = STATE(3449), - [sym_parenthesized_expression] = STATE(3449), - [sym__parenthesized_lvalue_expression] = STATE(2747), - [sym_lambda_expression] = STATE(3362), - [sym__lambda_expression_init] = STATE(7320), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3362), - [sym_anonymous_method_expression] = STATE(3362), - [sym_anonymous_object_creation_expression] = STATE(3362), - [sym_implicit_array_creation_expression] = STATE(3362), - [sym_implicit_object_creation_expression] = STATE(3362), - [sym_implicit_stackalloc_expression] = STATE(3362), - [sym_initializer_expression] = STATE(3362), - [sym_default_expression] = STATE(3362), - [sym_with_expression] = STATE(3362), - [sym_sizeof_expression] = STATE(3362), - [sym_typeof_expression] = STATE(3362), - [sym_makeref_expression] = STATE(3362), - [sym_ref_expression] = STATE(3362), - [sym_reftype_expression] = STATE(3362), - [sym_refvalue_expression] = STATE(3362), - [sym_stackalloc_expression] = STATE(3362), - [sym_range_expression] = STATE(3362), - [sym_tuple_expression] = STATE(2747), - [sym_literal] = STATE(3362), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3362), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(5152), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2196), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(3528), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3356), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3102), + [sym_postfix_unary_expression] = STATE(3079), + [sym_prefix_unary_expression] = STATE(3079), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6134), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3102), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3079), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3102), + [sym_member_access_expression] = STATE(2472), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3079), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7627), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(3102), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3102), + [sym_typeof_expression] = STATE(3102), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2472), + [sym_literal] = STATE(3102), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(834), [sym_preproc_endregion] = STATE(834), [sym_preproc_line] = STATE(834), @@ -182805,47 +182691,47 @@ 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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3385), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1307), - [anon_sym_LPAREN] = ACTIONS(1343), - [anon_sym_ref] = ACTIONS(1345), - [anon_sym_LBRACE] = ACTIONS(1313), - [anon_sym_delegate] = ACTIONS(1315), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1479), + [anon_sym_LPAREN] = ACTIONS(1511), + [anon_sym_ref] = ACTIONS(1513), + [anon_sym_LBRACE] = ACTIONS(1481), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1317), + [anon_sym_new] = ACTIONS(1515), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1319), - [anon_sym_BANG] = ACTIONS(1349), - [anon_sym_TILDE] = ACTIONS(1349), - [anon_sym_PLUS_PLUS] = ACTIONS(1349), - [anon_sym_DASH_DASH] = ACTIONS(1349), + [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(1347), - [anon_sym_DASH] = ACTIONS(1347), - [anon_sym_STAR] = ACTIONS(1351), - [anon_sym_CARET] = ACTIONS(1349), - [anon_sym_AMP] = ACTIONS(1349), - [anon_sym_this] = ACTIONS(1323), + [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(1325), + [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1319), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1353), + [anon_sym_throw] = ACTIONS(1517), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1355), - [anon_sym_DOT_DOT] = ACTIONS(1357), + [anon_sym_await] = ACTIONS(1519), + [anon_sym_DOT_DOT] = ACTIONS(1521), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -182858,19 +182744,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1333), + [anon_sym_stackalloc] = ACTIONS(127), [anon_sym_sizeof] = ACTIONS(129), [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(1335), - [anon_sym___reftype] = ACTIONS(1337), - [anon_sym___refvalue] = ACTIONS(1339), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), [sym_null_literal] = ACTIONS(139), [anon_sym_SQUOTE] = ACTIONS(141), [sym_integer_literal] = ACTIONS(139), [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1341), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -182887,84 +182773,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [835] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2762), - [sym__name] = STATE(5910), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2204), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(3194), - [sym_non_lvalue_expression] = STATE(3438), - [sym_lvalue_expression] = STATE(3162), - [sym__expression_statement_expression] = STATE(3362), - [sym_assignment_expression] = STATE(3449), - [sym_binary_expression] = STATE(3362), - [sym_postfix_unary_expression] = STATE(3449), - [sym_prefix_unary_expression] = STATE(3449), - [sym__pointer_indirection_expression] = STATE(2747), - [sym_query_expression] = STATE(3362), - [sym_from_clause] = STATE(6171), - [sym_conditional_expression] = STATE(3362), - [sym_conditional_access_expression] = STATE(3362), - [sym_as_expression] = STATE(3362), - [sym_is_expression] = STATE(3362), - [sym_is_pattern_expression] = STATE(3362), - [sym_cast_expression] = STATE(3362), - [sym_checked_expression] = STATE(3362), - [sym_invocation_expression] = STATE(3449), - [sym_switch_expression] = STATE(3362), - [sym_await_expression] = STATE(3449), - [sym_throw_expression] = STATE(3362), - [sym_element_access_expression] = STATE(2747), - [sym_interpolated_string_expression] = STATE(3362), - [sym_member_access_expression] = STATE(2747), - [sym_object_creation_expression] = STATE(3449), - [sym_parenthesized_expression] = STATE(3449), - [sym__parenthesized_lvalue_expression] = STATE(2747), - [sym_lambda_expression] = STATE(3362), - [sym__lambda_expression_init] = STATE(7320), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3362), - [sym_anonymous_method_expression] = STATE(3362), - [sym_anonymous_object_creation_expression] = STATE(3362), - [sym_implicit_array_creation_expression] = STATE(3362), - [sym_implicit_object_creation_expression] = STATE(3362), - [sym_implicit_stackalloc_expression] = STATE(3362), - [sym_initializer_expression] = STATE(3362), - [sym_default_expression] = STATE(3362), - [sym_with_expression] = STATE(3362), - [sym_sizeof_expression] = STATE(3362), - [sym_typeof_expression] = STATE(3362), - [sym_makeref_expression] = STATE(3362), - [sym_ref_expression] = STATE(3362), - [sym_reftype_expression] = STATE(3362), - [sym_refvalue_expression] = STATE(3362), - [sym_stackalloc_expression] = STATE(3362), - [sym_range_expression] = STATE(3362), - [sym_tuple_expression] = STATE(2747), - [sym_literal] = STATE(3362), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3362), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(5152), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2196), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(5440), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3356), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3102), + [sym_postfix_unary_expression] = STATE(3079), + [sym_prefix_unary_expression] = STATE(3079), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6134), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3102), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3079), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3102), + [sym_member_access_expression] = STATE(2472), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3079), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7627), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(3102), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3102), + [sym_typeof_expression] = STATE(3102), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2472), + [sym_literal] = STATE(3102), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(835), [sym_preproc_endregion] = STATE(835), [sym_preproc_line] = STATE(835), @@ -182974,47 +182860,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(835), [sym_preproc_define] = STATE(835), [sym_preproc_undef] = STATE(835), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3385), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1307), - [anon_sym_LPAREN] = ACTIONS(1343), - [anon_sym_ref] = ACTIONS(1345), - [anon_sym_LBRACE] = ACTIONS(1313), - [anon_sym_delegate] = ACTIONS(1315), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1479), + [anon_sym_LPAREN] = ACTIONS(1511), + [anon_sym_ref] = ACTIONS(1513), + [anon_sym_LBRACE] = ACTIONS(1481), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1317), + [anon_sym_new] = ACTIONS(1515), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1319), - [anon_sym_BANG] = ACTIONS(1349), - [anon_sym_TILDE] = ACTIONS(1349), - [anon_sym_PLUS_PLUS] = ACTIONS(1349), - [anon_sym_DASH_DASH] = ACTIONS(1349), + [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(1347), - [anon_sym_DASH] = ACTIONS(1347), - [anon_sym_STAR] = ACTIONS(1351), - [anon_sym_CARET] = ACTIONS(1349), - [anon_sym_AMP] = ACTIONS(1349), - [anon_sym_this] = ACTIONS(1323), + [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(1325), + [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1319), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1353), + [anon_sym_throw] = ACTIONS(1517), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1355), - [anon_sym_DOT_DOT] = ACTIONS(1357), + [anon_sym_await] = ACTIONS(1519), + [anon_sym_DOT_DOT] = ACTIONS(1521), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -183027,19 +182913,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1333), + [anon_sym_stackalloc] = ACTIONS(127), [anon_sym_sizeof] = ACTIONS(129), [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(1335), - [anon_sym___reftype] = ACTIONS(1337), - [anon_sym___refvalue] = ACTIONS(1339), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), [sym_null_literal] = ACTIONS(139), [anon_sym_SQUOTE] = ACTIONS(141), [sym_integer_literal] = ACTIONS(139), [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1341), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -183056,84 +182942,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [836] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2914), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2459), [sym__name] = STATE(5873), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2362), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(5705), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(2899), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3080), - [sym_postfix_unary_expression] = STATE(3111), - [sym_prefix_unary_expression] = STATE(3111), - [sym__pointer_indirection_expression] = STATE(2913), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6154), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3080), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3111), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2913), - [sym_interpolated_string_expression] = STATE(3080), - [sym_member_access_expression] = STATE(2913), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3111), - [sym__parenthesized_lvalue_expression] = STATE(2913), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7530), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(3080), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3080), - [sym_typeof_expression] = STATE(3080), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2913), - [sym_literal] = STATE(3080), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2238), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(5153), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3468), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3102), + [sym_postfix_unary_expression] = STATE(3079), + [sym_prefix_unary_expression] = STATE(3079), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6134), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3102), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3079), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3102), + [sym_member_access_expression] = STATE(2472), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3079), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7309), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(3102), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3102), + [sym_typeof_expression] = STATE(3102), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2472), + [sym_literal] = STATE(3102), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(836), [sym_preproc_endregion] = STATE(836), [sym_preproc_line] = STATE(836), @@ -183143,47 +183029,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(836), [sym_preproc_define] = STATE(836), [sym_preproc_undef] = STATE(836), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1627), - [anon_sym_LPAREN] = ACTIONS(2939), - [anon_sym_ref] = ACTIONS(661), - [anon_sym_LBRACE] = ACTIONS(1487), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1479), + [anon_sym_LPAREN] = ACTIONS(659), + [anon_sym_ref] = ACTIONS(663), + [anon_sym_LBRACE] = ACTIONS(1481), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1061), + [anon_sym_new] = ACTIONS(1059), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = 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_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(1485), + [anon_sym_TILDE] = ACTIONS(1485), + [anon_sym_PLUS_PLUS] = ACTIONS(1485), + [anon_sym_DASH_DASH] = ACTIONS(1485), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1585), - [anon_sym_DASH] = ACTIONS(1585), - [anon_sym_STAR] = ACTIONS(1647), - [anon_sym_CARET] = ACTIONS(1587), - [anon_sym_AMP] = ACTIONS(1587), - [anon_sym_this] = ACTIONS(1649), + [anon_sym_PLUS] = ACTIONS(1483), + [anon_sym_DASH] = ACTIONS(1483), + [anon_sym_STAR] = ACTIONS(683), + [anon_sym_CARET] = ACTIONS(1485), + [anon_sym_AMP] = ACTIONS(1485), + [anon_sym_this] = ACTIONS(83), [anon_sym_scoped] = ACTIONS(85), [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1653), - [anon_sym_unchecked] = ACTIONS(1067), + [sym_predefined_type] = ACTIONS(91), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1589), + [anon_sym_throw] = ACTIONS(1077), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1591), - [anon_sym_DOT_DOT] = ACTIONS(123), + [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), @@ -183208,7 +183094,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(1089), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -183225,84 +183111,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [837] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2762), - [sym__name] = STATE(5910), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2247), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(4188), - [sym_non_lvalue_expression] = STATE(3438), - [sym_lvalue_expression] = STATE(3136), - [sym__expression_statement_expression] = STATE(3362), - [sym_assignment_expression] = STATE(3449), - [sym_binary_expression] = STATE(3362), - [sym_postfix_unary_expression] = STATE(3449), - [sym_prefix_unary_expression] = STATE(3449), - [sym__pointer_indirection_expression] = STATE(2747), - [sym_query_expression] = STATE(3362), - [sym_from_clause] = STATE(6171), - [sym_conditional_expression] = STATE(3362), - [sym_conditional_access_expression] = STATE(3362), - [sym_as_expression] = STATE(3362), - [sym_is_expression] = STATE(3362), - [sym_is_pattern_expression] = STATE(3362), - [sym_cast_expression] = STATE(3362), - [sym_checked_expression] = STATE(3362), - [sym_invocation_expression] = STATE(3449), - [sym_switch_expression] = STATE(3362), - [sym_await_expression] = STATE(3449), - [sym_throw_expression] = STATE(3362), - [sym_element_access_expression] = STATE(2747), - [sym_interpolated_string_expression] = STATE(3362), - [sym_member_access_expression] = STATE(2747), - [sym_object_creation_expression] = STATE(3449), - [sym_parenthesized_expression] = STATE(3449), - [sym__parenthesized_lvalue_expression] = STATE(2747), - [sym_lambda_expression] = STATE(3362), - [sym__lambda_expression_init] = STATE(7452), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3362), - [sym_anonymous_method_expression] = STATE(3362), - [sym_anonymous_object_creation_expression] = STATE(3362), - [sym_implicit_array_creation_expression] = STATE(3362), - [sym_implicit_object_creation_expression] = STATE(3362), - [sym_implicit_stackalloc_expression] = STATE(3362), - [sym_initializer_expression] = STATE(3362), - [sym_default_expression] = STATE(3362), - [sym_with_expression] = STATE(3362), - [sym_sizeof_expression] = STATE(3362), - [sym_typeof_expression] = STATE(3362), - [sym_makeref_expression] = STATE(3362), - [sym_ref_expression] = STATE(3362), - [sym_reftype_expression] = STATE(3362), - [sym_refvalue_expression] = STATE(3362), - [sym_stackalloc_expression] = STATE(3362), - [sym_range_expression] = STATE(3362), - [sym_tuple_expression] = STATE(2747), - [sym_literal] = STATE(3362), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3362), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(5873), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2238), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(5156), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3526), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3102), + [sym_postfix_unary_expression] = STATE(3079), + [sym_prefix_unary_expression] = STATE(3079), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6134), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3102), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3079), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3102), + [sym_member_access_expression] = STATE(2472), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3079), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7455), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(3102), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3102), + [sym_typeof_expression] = STATE(3102), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2472), + [sym_literal] = STATE(3102), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(837), [sym_preproc_endregion] = STATE(837), [sym_preproc_line] = STATE(837), @@ -183312,47 +183198,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(837), [sym_preproc_define] = STATE(837), [sym_preproc_undef] = STATE(837), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3385), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1307), - [anon_sym_LPAREN] = ACTIONS(1309), - [anon_sym_ref] = ACTIONS(1311), - [anon_sym_LBRACE] = ACTIONS(1313), - [anon_sym_delegate] = ACTIONS(1315), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1479), + [anon_sym_LPAREN] = ACTIONS(1629), + [anon_sym_ref] = ACTIONS(1631), + [anon_sym_LBRACE] = ACTIONS(1481), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1317), + [anon_sym_new] = ACTIONS(1515), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1319), - [anon_sym_BANG] = ACTIONS(1069), - [anon_sym_TILDE] = ACTIONS(1069), - [anon_sym_PLUS_PLUS] = ACTIONS(1069), - [anon_sym_DASH_DASH] = ACTIONS(1069), + [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(1071), - [anon_sym_DASH] = ACTIONS(1071), - [anon_sym_STAR] = ACTIONS(1321), - [anon_sym_CARET] = ACTIONS(1069), - [anon_sym_AMP] = ACTIONS(1069), - [anon_sym_this] = ACTIONS(1323), + [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_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1325), + [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1319), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1327), + [anon_sym_throw] = ACTIONS(1633), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1329), - [anon_sym_DOT_DOT] = ACTIONS(1331), + [anon_sym_await] = ACTIONS(1635), + [anon_sym_DOT_DOT] = ACTIONS(1637), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -183365,19 +183251,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1333), + [anon_sym_stackalloc] = ACTIONS(127), [anon_sym_sizeof] = ACTIONS(129), [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(1335), - [anon_sym___reftype] = ACTIONS(1337), - [anon_sym___refvalue] = ACTIONS(1339), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), [sym_null_literal] = ACTIONS(139), [anon_sym_SQUOTE] = ACTIONS(141), [sym_integer_literal] = ACTIONS(139), [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1341), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -183394,84 +183280,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [838] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2420), - [sym__name] = STATE(5911), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2197), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(4481), - [sym_non_lvalue_expression] = STATE(3066), - [sym_lvalue_expression] = STATE(3327), - [sym__expression_statement_expression] = STATE(3006), - [sym_assignment_expression] = STATE(3020), - [sym_binary_expression] = STATE(3006), - [sym_postfix_unary_expression] = STATE(3020), - [sym_prefix_unary_expression] = STATE(3020), - [sym__pointer_indirection_expression] = STATE(2423), - [sym_query_expression] = STATE(3006), - [sym_from_clause] = STATE(6159), - [sym_conditional_expression] = STATE(3006), - [sym_conditional_access_expression] = STATE(3006), - [sym_as_expression] = STATE(3006), - [sym_is_expression] = STATE(3006), - [sym_is_pattern_expression] = STATE(3006), - [sym_cast_expression] = STATE(3006), - [sym_checked_expression] = STATE(3006), - [sym_invocation_expression] = STATE(3020), - [sym_switch_expression] = STATE(3006), - [sym_await_expression] = STATE(3020), - [sym_throw_expression] = STATE(3006), - [sym_element_access_expression] = STATE(2423), - [sym_interpolated_string_expression] = STATE(3006), - [sym_member_access_expression] = STATE(2423), - [sym_object_creation_expression] = STATE(3020), - [sym_parenthesized_expression] = STATE(3020), - [sym__parenthesized_lvalue_expression] = STATE(2423), - [sym_lambda_expression] = STATE(3006), - [sym__lambda_expression_init] = STATE(7674), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3006), - [sym_anonymous_method_expression] = STATE(3006), - [sym_anonymous_object_creation_expression] = STATE(3006), - [sym_implicit_array_creation_expression] = STATE(3006), - [sym_implicit_object_creation_expression] = STATE(3006), - [sym_implicit_stackalloc_expression] = STATE(3006), - [sym_initializer_expression] = STATE(3006), - [sym_default_expression] = STATE(3006), - [sym_with_expression] = STATE(3006), - [sym_sizeof_expression] = STATE(3006), - [sym_typeof_expression] = STATE(3006), - [sym_makeref_expression] = STATE(3006), - [sym_ref_expression] = STATE(3006), - [sym_reftype_expression] = STATE(3006), - [sym_refvalue_expression] = STATE(3006), - [sym_stackalloc_expression] = STATE(3006), - [sym_range_expression] = STATE(3006), - [sym_tuple_expression] = STATE(2423), - [sym_literal] = STATE(3006), - [sym_character_literal] = STATE(3011), - [sym_string_literal] = STATE(3011), - [sym_raw_string_literal] = STATE(3011), - [sym_boolean_literal] = STATE(3011), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3006), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(5873), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2238), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(5157), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3526), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3102), + [sym_postfix_unary_expression] = STATE(3079), + [sym_prefix_unary_expression] = STATE(3079), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6134), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3102), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3079), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3102), + [sym_member_access_expression] = STATE(2472), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3079), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7455), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(3102), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3102), + [sym_typeof_expression] = STATE(3102), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2472), + [sym_literal] = STATE(3102), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(838), [sym_preproc_endregion] = STATE(838), [sym_preproc_line] = STATE(838), @@ -183481,47 +183367,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(838), [sym_preproc_define] = STATE(838), [sym_preproc_undef] = STATE(838), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3440), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1241), - [anon_sym_LPAREN] = ACTIONS(1509), - [anon_sym_ref] = ACTIONS(1511), - [anon_sym_LBRACE] = ACTIONS(1247), - [anon_sym_delegate] = ACTIONS(1249), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1479), + [anon_sym_LPAREN] = ACTIONS(1629), + [anon_sym_ref] = ACTIONS(1631), + [anon_sym_LBRACE] = ACTIONS(1481), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1251), + [anon_sym_new] = ACTIONS(1515), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1253), - [anon_sym_BANG] = ACTIONS(1515), - [anon_sym_TILDE] = ACTIONS(1515), - [anon_sym_PLUS_PLUS] = ACTIONS(1515), - [anon_sym_DASH_DASH] = ACTIONS(1515), - [anon_sym_true] = ACTIONS(1259), - [anon_sym_false] = ACTIONS(1259), - [anon_sym_PLUS] = ACTIONS(1513), - [anon_sym_DASH] = ACTIONS(1513), - [anon_sym_STAR] = ACTIONS(1517), - [anon_sym_CARET] = ACTIONS(1515), - [anon_sym_AMP] = ACTIONS(1515), - [anon_sym_this] = ACTIONS(1263), + [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_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1265), + [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1267), - [anon_sym_unchecked] = ACTIONS(1253), + [sym_predefined_type] = ACTIONS(91), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1269), - [anon_sym_throw] = ACTIONS(1519), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(1633), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1521), - [anon_sym_DOT_DOT] = ACTIONS(1523), + [anon_sym_await] = ACTIONS(1635), + [anon_sym_DOT_DOT] = ACTIONS(1637), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -183534,19 +183420,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1277), - [anon_sym_sizeof] = ACTIONS(1279), - [anon_sym_typeof] = ACTIONS(1281), - [anon_sym___makeref] = ACTIONS(1283), - [anon_sym___reftype] = ACTIONS(1285), - [anon_sym___refvalue] = ACTIONS(1287), - [sym_null_literal] = ACTIONS(1289), - [anon_sym_SQUOTE] = ACTIONS(1291), - [sym_integer_literal] = ACTIONS(1289), - [sym_real_literal] = ACTIONS(1293), - [anon_sym_DQUOTE] = ACTIONS(1295), - [sym_verbatim_string_literal] = ACTIONS(1293), - [aux_sym_preproc_if_token1] = ACTIONS(1297), + [anon_sym_stackalloc] = ACTIONS(127), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_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), @@ -183557,90 +183443,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1299), - [sym_interpolation_verbatim_start] = ACTIONS(1301), - [sym_interpolation_raw_start] = ACTIONS(1303), - [sym_raw_string_start] = ACTIONS(1305), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [sym_interpolation_raw_start] = ACTIONS(155), + [sym_raw_string_start] = ACTIONS(157), }, [839] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2914), - [sym__name] = STATE(5873), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2362), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(3977), - [sym_non_lvalue_expression] = STATE(3880), - [sym_lvalue_expression] = STATE(3092), - [sym__expression_statement_expression] = STATE(3873), - [sym_assignment_expression] = STATE(3881), - [sym_binary_expression] = STATE(3873), - [sym_postfix_unary_expression] = STATE(3881), - [sym_prefix_unary_expression] = STATE(3881), - [sym__pointer_indirection_expression] = STATE(2913), - [sym_query_expression] = STATE(3873), - [sym_from_clause] = STATE(6168), - [sym_conditional_expression] = STATE(3873), - [sym_conditional_access_expression] = STATE(3873), - [sym_as_expression] = STATE(3873), - [sym_is_expression] = STATE(3873), - [sym_is_pattern_expression] = STATE(3873), - [sym_cast_expression] = STATE(3873), - [sym_checked_expression] = STATE(3873), - [sym_invocation_expression] = STATE(3881), - [sym_switch_expression] = STATE(3873), - [sym_await_expression] = STATE(3881), - [sym_throw_expression] = STATE(3873), - [sym_element_access_expression] = STATE(2913), - [sym_interpolated_string_expression] = STATE(3873), - [sym_member_access_expression] = STATE(2913), - [sym_object_creation_expression] = STATE(3881), - [sym_parenthesized_expression] = STATE(3881), - [sym__parenthesized_lvalue_expression] = STATE(2913), - [sym_lambda_expression] = STATE(3873), - [sym__lambda_expression_init] = STATE(7533), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3873), - [sym_anonymous_method_expression] = STATE(3873), - [sym_anonymous_object_creation_expression] = STATE(3873), - [sym_implicit_array_creation_expression] = STATE(3873), - [sym_implicit_object_creation_expression] = STATE(3873), - [sym_implicit_stackalloc_expression] = STATE(3873), - [sym_initializer_expression] = STATE(3873), - [sym_default_expression] = STATE(3873), - [sym_with_expression] = STATE(3873), - [sym_sizeof_expression] = STATE(3873), - [sym_typeof_expression] = STATE(3873), - [sym_makeref_expression] = STATE(3873), - [sym_ref_expression] = STATE(3873), - [sym_reftype_expression] = STATE(3873), - [sym_refvalue_expression] = STATE(3873), - [sym_stackalloc_expression] = STATE(3873), - [sym_range_expression] = STATE(3873), - [sym_tuple_expression] = STATE(2913), - [sym_literal] = STATE(3873), - [sym_character_literal] = STATE(3877), - [sym_string_literal] = STATE(3877), - [sym_raw_string_literal] = STATE(3877), - [sym_boolean_literal] = STATE(3877), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3873), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(5152), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2196), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(4848), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3510), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3102), + [sym_postfix_unary_expression] = STATE(3079), + [sym_prefix_unary_expression] = STATE(3079), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6134), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3102), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3079), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3102), + [sym_member_access_expression] = STATE(2472), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3079), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7425), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(3102), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3102), + [sym_typeof_expression] = STATE(3102), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2472), + [sym_literal] = STATE(3102), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(839), [sym_preproc_endregion] = STATE(839), [sym_preproc_line] = STATE(839), @@ -183650,47 +183536,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(839), [sym_preproc_define] = STATE(839), [sym_preproc_undef] = STATE(839), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3382), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1627), - [anon_sym_LPAREN] = ACTIONS(1961), - [anon_sym_ref] = ACTIONS(1963), - [anon_sym_LBRACE] = ACTIONS(1633), - [anon_sym_delegate] = ACTIONS(1635), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1479), + [anon_sym_LPAREN] = ACTIONS(43), + [anon_sym_ref] = ACTIONS(715), + [anon_sym_LBRACE] = ACTIONS(1481), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1637), + [anon_sym_new] = ACTIONS(1059), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1639), - [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(1645), - [anon_sym_false] = ACTIONS(1645), - [anon_sym_PLUS] = ACTIONS(1965), - [anon_sym_DASH] = ACTIONS(1965), - [anon_sym_STAR] = ACTIONS(1647), - [anon_sym_CARET] = ACTIONS(1967), - [anon_sym_AMP] = ACTIONS(1967), - [anon_sym_this] = ACTIONS(1649), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(1525), + [anon_sym_TILDE] = ACTIONS(1525), + [anon_sym_PLUS_PLUS] = ACTIONS(1525), + [anon_sym_DASH_DASH] = ACTIONS(1525), + [anon_sym_true] = ACTIONS(77), + [anon_sym_false] = ACTIONS(77), + [anon_sym_PLUS] = ACTIONS(1523), + [anon_sym_DASH] = ACTIONS(1523), + [anon_sym_STAR] = ACTIONS(81), + [anon_sym_CARET] = ACTIONS(1525), + [anon_sym_AMP] = ACTIONS(1525), + [anon_sym_this] = ACTIONS(83), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1651), + [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1653), - [anon_sym_unchecked] = ACTIONS(1639), + [sym_predefined_type] = ACTIONS(91), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1655), - [anon_sym_throw] = ACTIONS(1969), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(1527), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1971), - [anon_sym_DOT_DOT] = ACTIONS(1973), + [anon_sym_await] = ACTIONS(1529), + [anon_sym_DOT_DOT] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -183703,19 +183589,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1663), - [anon_sym_sizeof] = ACTIONS(1665), - [anon_sym_typeof] = ACTIONS(1667), - [anon_sym___makeref] = ACTIONS(1669), - [anon_sym___reftype] = ACTIONS(1671), - [anon_sym___refvalue] = ACTIONS(1673), - [sym_null_literal] = ACTIONS(1675), - [anon_sym_SQUOTE] = ACTIONS(1677), - [sym_integer_literal] = ACTIONS(1675), - [sym_real_literal] = ACTIONS(1679), - [anon_sym_DQUOTE] = ACTIONS(1681), - [sym_verbatim_string_literal] = ACTIONS(1679), - [aux_sym_preproc_if_token1] = ACTIONS(1683), + [anon_sym_stackalloc] = ACTIONS(127), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_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), @@ -183726,90 +183612,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1685), - [sym_interpolation_verbatim_start] = ACTIONS(1687), - [sym_interpolation_raw_start] = ACTIONS(1689), - [sym_raw_string_start] = ACTIONS(1691), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [sym_interpolation_raw_start] = ACTIONS(155), + [sym_raw_string_start] = ACTIONS(157), }, [840] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2420), - [sym__name] = STATE(5911), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2197), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(4482), - [sym_non_lvalue_expression] = STATE(3066), - [sym_lvalue_expression] = STATE(3327), - [sym__expression_statement_expression] = STATE(3006), - [sym_assignment_expression] = STATE(3020), - [sym_binary_expression] = STATE(3006), - [sym_postfix_unary_expression] = STATE(3020), - [sym_prefix_unary_expression] = STATE(3020), - [sym__pointer_indirection_expression] = STATE(2423), - [sym_query_expression] = STATE(3006), - [sym_from_clause] = STATE(6159), - [sym_conditional_expression] = STATE(3006), - [sym_conditional_access_expression] = STATE(3006), - [sym_as_expression] = STATE(3006), - [sym_is_expression] = STATE(3006), - [sym_is_pattern_expression] = STATE(3006), - [sym_cast_expression] = STATE(3006), - [sym_checked_expression] = STATE(3006), - [sym_invocation_expression] = STATE(3020), - [sym_switch_expression] = STATE(3006), - [sym_await_expression] = STATE(3020), - [sym_throw_expression] = STATE(3006), - [sym_element_access_expression] = STATE(2423), - [sym_interpolated_string_expression] = STATE(3006), - [sym_member_access_expression] = STATE(2423), - [sym_object_creation_expression] = STATE(3020), - [sym_parenthesized_expression] = STATE(3020), - [sym__parenthesized_lvalue_expression] = STATE(2423), - [sym_lambda_expression] = STATE(3006), - [sym__lambda_expression_init] = STATE(7674), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3006), - [sym_anonymous_method_expression] = STATE(3006), - [sym_anonymous_object_creation_expression] = STATE(3006), - [sym_implicit_array_creation_expression] = STATE(3006), - [sym_implicit_object_creation_expression] = STATE(3006), - [sym_implicit_stackalloc_expression] = STATE(3006), - [sym_initializer_expression] = STATE(3006), - [sym_default_expression] = STATE(3006), - [sym_with_expression] = STATE(3006), - [sym_sizeof_expression] = STATE(3006), - [sym_typeof_expression] = STATE(3006), - [sym_makeref_expression] = STATE(3006), - [sym_ref_expression] = STATE(3006), - [sym_reftype_expression] = STATE(3006), - [sym_refvalue_expression] = STATE(3006), - [sym_stackalloc_expression] = STATE(3006), - [sym_range_expression] = STATE(3006), - [sym_tuple_expression] = STATE(2423), - [sym_literal] = STATE(3006), - [sym_character_literal] = STATE(3011), - [sym_string_literal] = STATE(3011), - [sym_raw_string_literal] = STATE(3011), - [sym_boolean_literal] = STATE(3011), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3006), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(5873), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2238), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(4625), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3468), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3102), + [sym_postfix_unary_expression] = STATE(3079), + [sym_prefix_unary_expression] = STATE(3079), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6134), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3102), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3079), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3102), + [sym_member_access_expression] = STATE(2472), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3079), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7309), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(3102), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3102), + [sym_typeof_expression] = STATE(3102), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2472), + [sym_literal] = STATE(3102), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(840), [sym_preproc_endregion] = STATE(840), [sym_preproc_line] = STATE(840), @@ -183819,47 +183705,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(840), [sym_preproc_define] = STATE(840), [sym_preproc_undef] = STATE(840), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3440), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1241), - [anon_sym_LPAREN] = ACTIONS(1509), - [anon_sym_ref] = ACTIONS(1511), - [anon_sym_LBRACE] = ACTIONS(1247), - [anon_sym_delegate] = ACTIONS(1249), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1479), + [anon_sym_LPAREN] = ACTIONS(659), + [anon_sym_ref] = ACTIONS(663), + [anon_sym_LBRACE] = ACTIONS(1481), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1251), + [anon_sym_new] = ACTIONS(1059), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1253), - [anon_sym_BANG] = ACTIONS(1515), - [anon_sym_TILDE] = ACTIONS(1515), - [anon_sym_PLUS_PLUS] = ACTIONS(1515), - [anon_sym_DASH_DASH] = ACTIONS(1515), - [anon_sym_true] = ACTIONS(1259), - [anon_sym_false] = ACTIONS(1259), - [anon_sym_PLUS] = ACTIONS(1513), - [anon_sym_DASH] = ACTIONS(1513), - [anon_sym_STAR] = ACTIONS(1517), - [anon_sym_CARET] = ACTIONS(1515), - [anon_sym_AMP] = ACTIONS(1515), - [anon_sym_this] = ACTIONS(1263), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(1485), + [anon_sym_TILDE] = ACTIONS(1485), + [anon_sym_PLUS_PLUS] = ACTIONS(1485), + [anon_sym_DASH_DASH] = ACTIONS(1485), + [anon_sym_true] = ACTIONS(77), + [anon_sym_false] = ACTIONS(77), + [anon_sym_PLUS] = ACTIONS(1483), + [anon_sym_DASH] = ACTIONS(1483), + [anon_sym_STAR] = ACTIONS(683), + [anon_sym_CARET] = ACTIONS(1485), + [anon_sym_AMP] = ACTIONS(1485), + [anon_sym_this] = ACTIONS(83), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1265), + [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1267), - [anon_sym_unchecked] = ACTIONS(1253), + [sym_predefined_type] = ACTIONS(91), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1269), - [anon_sym_throw] = ACTIONS(1519), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(1077), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1521), - [anon_sym_DOT_DOT] = ACTIONS(1523), + [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), @@ -183872,19 +183758,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1277), - [anon_sym_sizeof] = ACTIONS(1279), - [anon_sym_typeof] = ACTIONS(1281), - [anon_sym___makeref] = ACTIONS(1283), - [anon_sym___reftype] = ACTIONS(1285), - [anon_sym___refvalue] = ACTIONS(1287), - [sym_null_literal] = ACTIONS(1289), - [anon_sym_SQUOTE] = ACTIONS(1291), - [sym_integer_literal] = ACTIONS(1289), - [sym_real_literal] = ACTIONS(1293), - [anon_sym_DQUOTE] = ACTIONS(1295), - [sym_verbatim_string_literal] = ACTIONS(1293), - [aux_sym_preproc_if_token1] = ACTIONS(1297), + [anon_sym_stackalloc] = ACTIONS(127), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_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), @@ -183895,90 +183781,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1299), - [sym_interpolation_verbatim_start] = ACTIONS(1301), - [sym_interpolation_raw_start] = ACTIONS(1303), - [sym_raw_string_start] = ACTIONS(1305), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [sym_interpolation_raw_start] = ACTIONS(155), + [sym_raw_string_start] = ACTIONS(157), }, [841] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(5910), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2247), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(4900), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3529), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3080), - [sym_postfix_unary_expression] = STATE(3111), - [sym_prefix_unary_expression] = STATE(3111), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6154), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3080), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3111), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3080), - [sym_member_access_expression] = STATE(2484), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3111), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7444), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(3080), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3080), - [sym_typeof_expression] = STATE(3080), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2484), - [sym_literal] = STATE(3080), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(5873), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2238), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(4626), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3468), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3102), + [sym_postfix_unary_expression] = STATE(3079), + [sym_prefix_unary_expression] = STATE(3079), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6134), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3102), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3079), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3102), + [sym_member_access_expression] = STATE(2472), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3079), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7309), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(3102), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3102), + [sym_typeof_expression] = STATE(3102), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2472), + [sym_literal] = STATE(3102), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(841), [sym_preproc_endregion] = STATE(841), [sym_preproc_line] = STATE(841), @@ -183988,47 +183874,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(841), [sym_preproc_define] = STATE(841), [sym_preproc_undef] = STATE(841), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1481), - [anon_sym_LPAREN] = ACTIONS(1575), - [anon_sym_ref] = ACTIONS(1577), - [anon_sym_LBRACE] = ACTIONS(1487), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1479), + [anon_sym_LPAREN] = ACTIONS(659), + [anon_sym_ref] = ACTIONS(663), + [anon_sym_LBRACE] = ACTIONS(1481), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1501), + [anon_sym_new] = ACTIONS(1059), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1067), - [anon_sym_BANG] = ACTIONS(901), - [anon_sym_TILDE] = ACTIONS(901), - [anon_sym_PLUS_PLUS] = ACTIONS(901), - [anon_sym_DASH_DASH] = ACTIONS(901), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(1485), + [anon_sym_TILDE] = ACTIONS(1485), + [anon_sym_PLUS_PLUS] = ACTIONS(1485), + [anon_sym_DASH_DASH] = ACTIONS(1485), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(903), - [anon_sym_DASH] = ACTIONS(903), - [anon_sym_STAR] = ACTIONS(905), - [anon_sym_CARET] = ACTIONS(901), - [anon_sym_AMP] = ACTIONS(901), + [anon_sym_PLUS] = ACTIONS(1483), + [anon_sym_DASH] = ACTIONS(1483), + [anon_sym_STAR] = ACTIONS(683), + [anon_sym_CARET] = ACTIONS(1485), + [anon_sym_AMP] = ACTIONS(1485), [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(1067), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1579), + [anon_sym_throw] = ACTIONS(1077), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1581), - [anon_sym_DOT_DOT] = ACTIONS(1583), + [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), @@ -184053,7 +183939,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(1089), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -184070,84 +183956,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [842] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(5910), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2247), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(3521), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3529), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3080), - [sym_postfix_unary_expression] = STATE(3111), - [sym_prefix_unary_expression] = STATE(3111), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6154), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3080), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3111), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3080), - [sym_member_access_expression] = STATE(2484), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3111), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7444), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(3080), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3080), - [sym_typeof_expression] = STATE(3080), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2484), - [sym_literal] = STATE(3080), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(5873), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2238), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(4627), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3468), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3102), + [sym_postfix_unary_expression] = STATE(3079), + [sym_prefix_unary_expression] = STATE(3079), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6134), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3102), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3079), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3102), + [sym_member_access_expression] = STATE(2472), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3079), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7309), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(3102), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3102), + [sym_typeof_expression] = STATE(3102), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2472), + [sym_literal] = STATE(3102), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(842), [sym_preproc_endregion] = STATE(842), [sym_preproc_line] = STATE(842), @@ -184157,47 +184043,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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1481), - [anon_sym_LPAREN] = ACTIONS(1575), - [anon_sym_ref] = ACTIONS(1577), - [anon_sym_LBRACE] = ACTIONS(1487), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1479), + [anon_sym_LPAREN] = ACTIONS(659), + [anon_sym_ref] = ACTIONS(663), + [anon_sym_LBRACE] = ACTIONS(1481), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1501), + [anon_sym_new] = ACTIONS(1059), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1067), - [anon_sym_BANG] = ACTIONS(901), - [anon_sym_TILDE] = ACTIONS(901), - [anon_sym_PLUS_PLUS] = ACTIONS(901), - [anon_sym_DASH_DASH] = ACTIONS(901), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(1485), + [anon_sym_TILDE] = ACTIONS(1485), + [anon_sym_PLUS_PLUS] = ACTIONS(1485), + [anon_sym_DASH_DASH] = ACTIONS(1485), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(903), - [anon_sym_DASH] = ACTIONS(903), - [anon_sym_STAR] = ACTIONS(905), - [anon_sym_CARET] = ACTIONS(901), - [anon_sym_AMP] = ACTIONS(901), + [anon_sym_PLUS] = ACTIONS(1483), + [anon_sym_DASH] = ACTIONS(1483), + [anon_sym_STAR] = ACTIONS(683), + [anon_sym_CARET] = ACTIONS(1485), + [anon_sym_AMP] = ACTIONS(1485), [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(1067), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1579), + [anon_sym_throw] = ACTIONS(1077), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1581), - [anon_sym_DOT_DOT] = ACTIONS(1583), + [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), @@ -184222,7 +184108,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(1089), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -184239,84 +184125,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [843] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2420), - [sym__name] = STATE(5911), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2197), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(4484), - [sym_non_lvalue_expression] = STATE(3066), - [sym_lvalue_expression] = STATE(3327), - [sym__expression_statement_expression] = STATE(3006), - [sym_assignment_expression] = STATE(3020), - [sym_binary_expression] = STATE(3006), - [sym_postfix_unary_expression] = STATE(3020), - [sym_prefix_unary_expression] = STATE(3020), - [sym__pointer_indirection_expression] = STATE(2423), - [sym_query_expression] = STATE(3006), - [sym_from_clause] = STATE(6159), - [sym_conditional_expression] = STATE(3006), - [sym_conditional_access_expression] = STATE(3006), - [sym_as_expression] = STATE(3006), - [sym_is_expression] = STATE(3006), - [sym_is_pattern_expression] = STATE(3006), - [sym_cast_expression] = STATE(3006), - [sym_checked_expression] = STATE(3006), - [sym_invocation_expression] = STATE(3020), - [sym_switch_expression] = STATE(3006), - [sym_await_expression] = STATE(3020), - [sym_throw_expression] = STATE(3006), - [sym_element_access_expression] = STATE(2423), - [sym_interpolated_string_expression] = STATE(3006), - [sym_member_access_expression] = STATE(2423), - [sym_object_creation_expression] = STATE(3020), - [sym_parenthesized_expression] = STATE(3020), - [sym__parenthesized_lvalue_expression] = STATE(2423), - [sym_lambda_expression] = STATE(3006), - [sym__lambda_expression_init] = STATE(7674), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3006), - [sym_anonymous_method_expression] = STATE(3006), - [sym_anonymous_object_creation_expression] = STATE(3006), - [sym_implicit_array_creation_expression] = STATE(3006), - [sym_implicit_object_creation_expression] = STATE(3006), - [sym_implicit_stackalloc_expression] = STATE(3006), - [sym_initializer_expression] = STATE(3006), - [sym_default_expression] = STATE(3006), - [sym_with_expression] = STATE(3006), - [sym_sizeof_expression] = STATE(3006), - [sym_typeof_expression] = STATE(3006), - [sym_makeref_expression] = STATE(3006), - [sym_ref_expression] = STATE(3006), - [sym_reftype_expression] = STATE(3006), - [sym_refvalue_expression] = STATE(3006), - [sym_stackalloc_expression] = STATE(3006), - [sym_range_expression] = STATE(3006), - [sym_tuple_expression] = STATE(2423), - [sym_literal] = STATE(3006), - [sym_character_literal] = STATE(3011), - [sym_string_literal] = STATE(3011), - [sym_raw_string_literal] = STATE(3011), - [sym_boolean_literal] = STATE(3011), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3006), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(5873), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2238), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(4628), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3468), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3102), + [sym_postfix_unary_expression] = STATE(3079), + [sym_prefix_unary_expression] = STATE(3079), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6134), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3102), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3079), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3102), + [sym_member_access_expression] = STATE(2472), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3079), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7309), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(3102), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3102), + [sym_typeof_expression] = STATE(3102), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2472), + [sym_literal] = STATE(3102), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(843), [sym_preproc_endregion] = STATE(843), [sym_preproc_line] = STATE(843), @@ -184326,47 +184212,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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3440), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1241), - [anon_sym_LPAREN] = ACTIONS(1509), - [anon_sym_ref] = ACTIONS(1511), - [anon_sym_LBRACE] = ACTIONS(1247), - [anon_sym_delegate] = ACTIONS(1249), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1479), + [anon_sym_LPAREN] = ACTIONS(659), + [anon_sym_ref] = ACTIONS(663), + [anon_sym_LBRACE] = ACTIONS(1481), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1251), + [anon_sym_new] = ACTIONS(1059), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1253), - [anon_sym_BANG] = ACTIONS(1515), - [anon_sym_TILDE] = ACTIONS(1515), - [anon_sym_PLUS_PLUS] = ACTIONS(1515), - [anon_sym_DASH_DASH] = ACTIONS(1515), - [anon_sym_true] = ACTIONS(1259), - [anon_sym_false] = ACTIONS(1259), - [anon_sym_PLUS] = ACTIONS(1513), - [anon_sym_DASH] = ACTIONS(1513), - [anon_sym_STAR] = ACTIONS(1517), - [anon_sym_CARET] = ACTIONS(1515), - [anon_sym_AMP] = ACTIONS(1515), - [anon_sym_this] = ACTIONS(1263), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(1485), + [anon_sym_TILDE] = ACTIONS(1485), + [anon_sym_PLUS_PLUS] = ACTIONS(1485), + [anon_sym_DASH_DASH] = ACTIONS(1485), + [anon_sym_true] = ACTIONS(77), + [anon_sym_false] = ACTIONS(77), + [anon_sym_PLUS] = ACTIONS(1483), + [anon_sym_DASH] = ACTIONS(1483), + [anon_sym_STAR] = ACTIONS(683), + [anon_sym_CARET] = ACTIONS(1485), + [anon_sym_AMP] = ACTIONS(1485), + [anon_sym_this] = ACTIONS(83), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1265), + [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1267), - [anon_sym_unchecked] = ACTIONS(1253), + [sym_predefined_type] = ACTIONS(91), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1269), - [anon_sym_throw] = ACTIONS(1519), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(1077), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1521), - [anon_sym_DOT_DOT] = ACTIONS(1523), + [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), @@ -184379,19 +184265,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1277), - [anon_sym_sizeof] = ACTIONS(1279), - [anon_sym_typeof] = ACTIONS(1281), - [anon_sym___makeref] = ACTIONS(1283), - [anon_sym___reftype] = ACTIONS(1285), - [anon_sym___refvalue] = ACTIONS(1287), - [sym_null_literal] = ACTIONS(1289), - [anon_sym_SQUOTE] = ACTIONS(1291), - [sym_integer_literal] = ACTIONS(1289), - [sym_real_literal] = ACTIONS(1293), - [anon_sym_DQUOTE] = ACTIONS(1295), - [sym_verbatim_string_literal] = ACTIONS(1293), - [aux_sym_preproc_if_token1] = ACTIONS(1297), + [anon_sym_stackalloc] = ACTIONS(127), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_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), @@ -184402,90 +184288,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1299), - [sym_interpolation_verbatim_start] = ACTIONS(1301), - [sym_interpolation_raw_start] = ACTIONS(1303), - [sym_raw_string_start] = ACTIONS(1305), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [sym_interpolation_raw_start] = ACTIONS(155), + [sym_raw_string_start] = ACTIONS(157), }, [844] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2914), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2459), [sym__name] = STATE(5873), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2362), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(3567), - [sym_non_lvalue_expression] = STATE(3880), - [sym_lvalue_expression] = STATE(3092), - [sym__expression_statement_expression] = STATE(3873), - [sym_assignment_expression] = STATE(3881), - [sym_binary_expression] = STATE(3873), - [sym_postfix_unary_expression] = STATE(3881), - [sym_prefix_unary_expression] = STATE(3881), - [sym__pointer_indirection_expression] = STATE(2913), - [sym_query_expression] = STATE(3873), - [sym_from_clause] = STATE(6168), - [sym_conditional_expression] = STATE(3873), - [sym_conditional_access_expression] = STATE(3873), - [sym_as_expression] = STATE(3873), - [sym_is_expression] = STATE(3873), - [sym_is_pattern_expression] = STATE(3873), - [sym_cast_expression] = STATE(3873), - [sym_checked_expression] = STATE(3873), - [sym_invocation_expression] = STATE(3881), - [sym_switch_expression] = STATE(3873), - [sym_await_expression] = STATE(3881), - [sym_throw_expression] = STATE(3873), - [sym_element_access_expression] = STATE(2913), - [sym_interpolated_string_expression] = STATE(3873), - [sym_member_access_expression] = STATE(2913), - [sym_object_creation_expression] = STATE(3881), - [sym_parenthesized_expression] = STATE(3881), - [sym__parenthesized_lvalue_expression] = STATE(2913), - [sym_lambda_expression] = STATE(3873), - [sym__lambda_expression_init] = STATE(7533), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3873), - [sym_anonymous_method_expression] = STATE(3873), - [sym_anonymous_object_creation_expression] = STATE(3873), - [sym_implicit_array_creation_expression] = STATE(3873), - [sym_implicit_object_creation_expression] = STATE(3873), - [sym_implicit_stackalloc_expression] = STATE(3873), - [sym_initializer_expression] = STATE(3873), - [sym_default_expression] = STATE(3873), - [sym_with_expression] = STATE(3873), - [sym_sizeof_expression] = STATE(3873), - [sym_typeof_expression] = STATE(3873), - [sym_makeref_expression] = STATE(3873), - [sym_ref_expression] = STATE(3873), - [sym_reftype_expression] = STATE(3873), - [sym_refvalue_expression] = STATE(3873), - [sym_stackalloc_expression] = STATE(3873), - [sym_range_expression] = STATE(3873), - [sym_tuple_expression] = STATE(2913), - [sym_literal] = STATE(3873), - [sym_character_literal] = STATE(3877), - [sym_string_literal] = STATE(3877), - [sym_raw_string_literal] = STATE(3877), - [sym_boolean_literal] = STATE(3877), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3873), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2238), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(4629), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3468), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3102), + [sym_postfix_unary_expression] = STATE(3079), + [sym_prefix_unary_expression] = STATE(3079), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6134), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3102), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3079), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3102), + [sym_member_access_expression] = STATE(2472), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3079), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7309), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(3102), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3102), + [sym_typeof_expression] = STATE(3102), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2472), + [sym_literal] = STATE(3102), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(844), [sym_preproc_endregion] = STATE(844), [sym_preproc_line] = STATE(844), @@ -184495,47 +184381,47 @@ 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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3382), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1627), - [anon_sym_LPAREN] = ACTIONS(1961), - [anon_sym_ref] = ACTIONS(1963), - [anon_sym_LBRACE] = ACTIONS(1633), - [anon_sym_delegate] = ACTIONS(1635), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1479), + [anon_sym_LPAREN] = ACTIONS(659), + [anon_sym_ref] = ACTIONS(663), + [anon_sym_LBRACE] = ACTIONS(1481), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1637), + [anon_sym_new] = ACTIONS(1059), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1639), - [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(1645), - [anon_sym_false] = ACTIONS(1645), - [anon_sym_PLUS] = ACTIONS(1965), - [anon_sym_DASH] = ACTIONS(1965), - [anon_sym_STAR] = ACTIONS(1647), - [anon_sym_CARET] = ACTIONS(1967), - [anon_sym_AMP] = ACTIONS(1967), - [anon_sym_this] = ACTIONS(1649), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(1485), + [anon_sym_TILDE] = ACTIONS(1485), + [anon_sym_PLUS_PLUS] = ACTIONS(1485), + [anon_sym_DASH_DASH] = ACTIONS(1485), + [anon_sym_true] = ACTIONS(77), + [anon_sym_false] = ACTIONS(77), + [anon_sym_PLUS] = ACTIONS(1483), + [anon_sym_DASH] = ACTIONS(1483), + [anon_sym_STAR] = ACTIONS(683), + [anon_sym_CARET] = ACTIONS(1485), + [anon_sym_AMP] = ACTIONS(1485), + [anon_sym_this] = ACTIONS(83), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1651), + [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1653), - [anon_sym_unchecked] = ACTIONS(1639), + [sym_predefined_type] = ACTIONS(91), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1655), - [anon_sym_throw] = ACTIONS(1969), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(1077), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1971), - [anon_sym_DOT_DOT] = ACTIONS(1973), + [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), @@ -184548,19 +184434,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1663), - [anon_sym_sizeof] = ACTIONS(1665), - [anon_sym_typeof] = ACTIONS(1667), - [anon_sym___makeref] = ACTIONS(1669), - [anon_sym___reftype] = ACTIONS(1671), - [anon_sym___refvalue] = ACTIONS(1673), - [sym_null_literal] = ACTIONS(1675), - [anon_sym_SQUOTE] = ACTIONS(1677), - [sym_integer_literal] = ACTIONS(1675), - [sym_real_literal] = ACTIONS(1679), - [anon_sym_DQUOTE] = ACTIONS(1681), - [sym_verbatim_string_literal] = ACTIONS(1679), - [aux_sym_preproc_if_token1] = ACTIONS(1683), + [anon_sym_stackalloc] = ACTIONS(127), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_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), @@ -184571,90 +184457,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1685), - [sym_interpolation_verbatim_start] = ACTIONS(1687), - [sym_interpolation_raw_start] = ACTIONS(1689), - [sym_raw_string_start] = ACTIONS(1691), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [sym_interpolation_raw_start] = ACTIONS(155), + [sym_raw_string_start] = ACTIONS(157), }, [845] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2420), - [sym__name] = STATE(5911), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2197), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(4485), - [sym_non_lvalue_expression] = STATE(3066), - [sym_lvalue_expression] = STATE(3327), - [sym__expression_statement_expression] = STATE(3006), - [sym_assignment_expression] = STATE(3020), - [sym_binary_expression] = STATE(3006), - [sym_postfix_unary_expression] = STATE(3020), - [sym_prefix_unary_expression] = STATE(3020), - [sym__pointer_indirection_expression] = STATE(2423), - [sym_query_expression] = STATE(3006), - [sym_from_clause] = STATE(6159), - [sym_conditional_expression] = STATE(3006), - [sym_conditional_access_expression] = STATE(3006), - [sym_as_expression] = STATE(3006), - [sym_is_expression] = STATE(3006), - [sym_is_pattern_expression] = STATE(3006), - [sym_cast_expression] = STATE(3006), - [sym_checked_expression] = STATE(3006), - [sym_invocation_expression] = STATE(3020), - [sym_switch_expression] = STATE(3006), - [sym_await_expression] = STATE(3020), - [sym_throw_expression] = STATE(3006), - [sym_element_access_expression] = STATE(2423), - [sym_interpolated_string_expression] = STATE(3006), - [sym_member_access_expression] = STATE(2423), - [sym_object_creation_expression] = STATE(3020), - [sym_parenthesized_expression] = STATE(3020), - [sym__parenthesized_lvalue_expression] = STATE(2423), - [sym_lambda_expression] = STATE(3006), - [sym__lambda_expression_init] = STATE(7674), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3006), - [sym_anonymous_method_expression] = STATE(3006), - [sym_anonymous_object_creation_expression] = STATE(3006), - [sym_implicit_array_creation_expression] = STATE(3006), - [sym_implicit_object_creation_expression] = STATE(3006), - [sym_implicit_stackalloc_expression] = STATE(3006), - [sym_initializer_expression] = STATE(3006), - [sym_default_expression] = STATE(3006), - [sym_with_expression] = STATE(3006), - [sym_sizeof_expression] = STATE(3006), - [sym_typeof_expression] = STATE(3006), - [sym_makeref_expression] = STATE(3006), - [sym_ref_expression] = STATE(3006), - [sym_reftype_expression] = STATE(3006), - [sym_refvalue_expression] = STATE(3006), - [sym_stackalloc_expression] = STATE(3006), - [sym_range_expression] = STATE(3006), - [sym_tuple_expression] = STATE(2423), - [sym_literal] = STATE(3006), - [sym_character_literal] = STATE(3011), - [sym_string_literal] = STATE(3011), - [sym_raw_string_literal] = STATE(3011), - [sym_boolean_literal] = STATE(3011), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3006), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(5873), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2238), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(4630), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3468), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3102), + [sym_postfix_unary_expression] = STATE(3079), + [sym_prefix_unary_expression] = STATE(3079), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6134), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3102), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3079), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3102), + [sym_member_access_expression] = STATE(2472), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3079), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7309), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(3102), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3102), + [sym_typeof_expression] = STATE(3102), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2472), + [sym_literal] = STATE(3102), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(845), [sym_preproc_endregion] = STATE(845), [sym_preproc_line] = STATE(845), @@ -184664,47 +184550,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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3440), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1241), - [anon_sym_LPAREN] = ACTIONS(1509), - [anon_sym_ref] = ACTIONS(1511), - [anon_sym_LBRACE] = ACTIONS(1247), - [anon_sym_delegate] = ACTIONS(1249), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1479), + [anon_sym_LPAREN] = ACTIONS(659), + [anon_sym_ref] = ACTIONS(663), + [anon_sym_LBRACE] = ACTIONS(1481), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1251), + [anon_sym_new] = ACTIONS(1059), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1253), - [anon_sym_BANG] = ACTIONS(1515), - [anon_sym_TILDE] = ACTIONS(1515), - [anon_sym_PLUS_PLUS] = ACTIONS(1515), - [anon_sym_DASH_DASH] = ACTIONS(1515), - [anon_sym_true] = ACTIONS(1259), - [anon_sym_false] = ACTIONS(1259), - [anon_sym_PLUS] = ACTIONS(1513), - [anon_sym_DASH] = ACTIONS(1513), - [anon_sym_STAR] = ACTIONS(1517), - [anon_sym_CARET] = ACTIONS(1515), - [anon_sym_AMP] = ACTIONS(1515), - [anon_sym_this] = ACTIONS(1263), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(1485), + [anon_sym_TILDE] = ACTIONS(1485), + [anon_sym_PLUS_PLUS] = ACTIONS(1485), + [anon_sym_DASH_DASH] = ACTIONS(1485), + [anon_sym_true] = ACTIONS(77), + [anon_sym_false] = ACTIONS(77), + [anon_sym_PLUS] = ACTIONS(1483), + [anon_sym_DASH] = ACTIONS(1483), + [anon_sym_STAR] = ACTIONS(683), + [anon_sym_CARET] = ACTIONS(1485), + [anon_sym_AMP] = ACTIONS(1485), + [anon_sym_this] = ACTIONS(83), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1265), + [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1267), - [anon_sym_unchecked] = ACTIONS(1253), + [sym_predefined_type] = ACTIONS(91), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1269), - [anon_sym_throw] = ACTIONS(1519), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(1077), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1521), - [anon_sym_DOT_DOT] = ACTIONS(1523), + [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), @@ -184717,19 +184603,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1277), - [anon_sym_sizeof] = ACTIONS(1279), - [anon_sym_typeof] = ACTIONS(1281), - [anon_sym___makeref] = ACTIONS(1283), - [anon_sym___reftype] = ACTIONS(1285), - [anon_sym___refvalue] = ACTIONS(1287), - [sym_null_literal] = ACTIONS(1289), - [anon_sym_SQUOTE] = ACTIONS(1291), - [sym_integer_literal] = ACTIONS(1289), - [sym_real_literal] = ACTIONS(1293), - [anon_sym_DQUOTE] = ACTIONS(1295), - [sym_verbatim_string_literal] = ACTIONS(1293), - [aux_sym_preproc_if_token1] = ACTIONS(1297), + [anon_sym_stackalloc] = ACTIONS(127), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_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), @@ -184740,90 +184626,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1299), - [sym_interpolation_verbatim_start] = ACTIONS(1301), - [sym_interpolation_raw_start] = ACTIONS(1303), - [sym_raw_string_start] = ACTIONS(1305), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [sym_interpolation_raw_start] = ACTIONS(155), + [sym_raw_string_start] = ACTIONS(157), }, [846] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(5160), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2204), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5900), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(5357), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3687), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3080), - [sym_postfix_unary_expression] = STATE(3111), - [sym_prefix_unary_expression] = STATE(3111), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6164), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3080), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3111), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3080), - [sym_member_access_expression] = STATE(2484), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3111), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7701), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(3080), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3080), - [sym_typeof_expression] = STATE(3080), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2484), - [sym_literal] = STATE(3080), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(5873), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2238), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(4631), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3468), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3102), + [sym_postfix_unary_expression] = STATE(3079), + [sym_prefix_unary_expression] = STATE(3079), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6134), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3102), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3079), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3102), + [sym_member_access_expression] = STATE(2472), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3079), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7309), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(3102), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3102), + [sym_typeof_expression] = STATE(3102), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2472), + [sym_literal] = STATE(3102), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(846), [sym_preproc_endregion] = STATE(846), [sym_preproc_line] = STATE(846), @@ -184833,47 +184719,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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1481), - [anon_sym_LPAREN] = ACTIONS(2093), - [anon_sym_ref] = ACTIONS(2095), - [anon_sym_LBRACE] = ACTIONS(1487), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1479), + [anon_sym_LPAREN] = ACTIONS(659), + [anon_sym_ref] = ACTIONS(663), + [anon_sym_LBRACE] = ACTIONS(1481), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1061), + [anon_sym_new] = ACTIONS(1059), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1067), - [anon_sym_BANG] = ACTIONS(2099), - [anon_sym_TILDE] = ACTIONS(2099), - [anon_sym_PLUS_PLUS] = ACTIONS(2099), - [anon_sym_DASH_DASH] = ACTIONS(2099), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(1485), + [anon_sym_TILDE] = ACTIONS(1485), + [anon_sym_PLUS_PLUS] = ACTIONS(1485), + [anon_sym_DASH_DASH] = ACTIONS(1485), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(2097), - [anon_sym_DASH] = ACTIONS(2097), - [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(2099), - [anon_sym_AMP] = ACTIONS(2099), + [anon_sym_PLUS] = ACTIONS(1483), + [anon_sym_DASH] = ACTIONS(1483), + [anon_sym_STAR] = ACTIONS(683), + [anon_sym_CARET] = ACTIONS(1485), + [anon_sym_AMP] = ACTIONS(1485), [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(1067), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(2101), + [anon_sym_throw] = ACTIONS(1077), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2103), - [anon_sym_DOT_DOT] = ACTIONS(2105), + [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), @@ -184898,7 +184784,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(2107), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -184915,84 +184801,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [847] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2420), - [sym__name] = STATE(5911), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2197), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(4486), - [sym_non_lvalue_expression] = STATE(3066), - [sym_lvalue_expression] = STATE(3327), - [sym__expression_statement_expression] = STATE(3006), - [sym_assignment_expression] = STATE(3020), - [sym_binary_expression] = STATE(3006), - [sym_postfix_unary_expression] = STATE(3020), - [sym_prefix_unary_expression] = STATE(3020), - [sym__pointer_indirection_expression] = STATE(2423), - [sym_query_expression] = STATE(3006), - [sym_from_clause] = STATE(6159), - [sym_conditional_expression] = STATE(3006), - [sym_conditional_access_expression] = STATE(3006), - [sym_as_expression] = STATE(3006), - [sym_is_expression] = STATE(3006), - [sym_is_pattern_expression] = STATE(3006), - [sym_cast_expression] = STATE(3006), - [sym_checked_expression] = STATE(3006), - [sym_invocation_expression] = STATE(3020), - [sym_switch_expression] = STATE(3006), - [sym_await_expression] = STATE(3020), - [sym_throw_expression] = STATE(3006), - [sym_element_access_expression] = STATE(2423), - [sym_interpolated_string_expression] = STATE(3006), - [sym_member_access_expression] = STATE(2423), - [sym_object_creation_expression] = STATE(3020), - [sym_parenthesized_expression] = STATE(3020), - [sym__parenthesized_lvalue_expression] = STATE(2423), - [sym_lambda_expression] = STATE(3006), - [sym__lambda_expression_init] = STATE(7674), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3006), - [sym_anonymous_method_expression] = STATE(3006), - [sym_anonymous_object_creation_expression] = STATE(3006), - [sym_implicit_array_creation_expression] = STATE(3006), - [sym_implicit_object_creation_expression] = STATE(3006), - [sym_implicit_stackalloc_expression] = STATE(3006), - [sym_initializer_expression] = STATE(3006), - [sym_default_expression] = STATE(3006), - [sym_with_expression] = STATE(3006), - [sym_sizeof_expression] = STATE(3006), - [sym_typeof_expression] = STATE(3006), - [sym_makeref_expression] = STATE(3006), - [sym_ref_expression] = STATE(3006), - [sym_reftype_expression] = STATE(3006), - [sym_refvalue_expression] = STATE(3006), - [sym_stackalloc_expression] = STATE(3006), - [sym_range_expression] = STATE(3006), - [sym_tuple_expression] = STATE(2423), - [sym_literal] = STATE(3006), - [sym_character_literal] = STATE(3011), - [sym_string_literal] = STATE(3011), - [sym_raw_string_literal] = STATE(3011), - [sym_boolean_literal] = STATE(3011), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3006), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(5873), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2238), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(4632), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3468), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3102), + [sym_postfix_unary_expression] = STATE(3079), + [sym_prefix_unary_expression] = STATE(3079), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6134), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3102), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3079), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3102), + [sym_member_access_expression] = STATE(2472), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3079), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7309), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(3102), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3102), + [sym_typeof_expression] = STATE(3102), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2472), + [sym_literal] = STATE(3102), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(847), [sym_preproc_endregion] = STATE(847), [sym_preproc_line] = STATE(847), @@ -185002,47 +184888,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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3440), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1241), - [anon_sym_LPAREN] = ACTIONS(1509), - [anon_sym_ref] = ACTIONS(1511), - [anon_sym_LBRACE] = ACTIONS(1247), - [anon_sym_delegate] = ACTIONS(1249), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1479), + [anon_sym_LPAREN] = ACTIONS(659), + [anon_sym_ref] = ACTIONS(663), + [anon_sym_LBRACE] = ACTIONS(1481), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1251), + [anon_sym_new] = ACTIONS(1059), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1253), - [anon_sym_BANG] = ACTIONS(1515), - [anon_sym_TILDE] = ACTIONS(1515), - [anon_sym_PLUS_PLUS] = ACTIONS(1515), - [anon_sym_DASH_DASH] = ACTIONS(1515), - [anon_sym_true] = ACTIONS(1259), - [anon_sym_false] = ACTIONS(1259), - [anon_sym_PLUS] = ACTIONS(1513), - [anon_sym_DASH] = ACTIONS(1513), - [anon_sym_STAR] = ACTIONS(1517), - [anon_sym_CARET] = ACTIONS(1515), - [anon_sym_AMP] = ACTIONS(1515), - [anon_sym_this] = ACTIONS(1263), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(1485), + [anon_sym_TILDE] = ACTIONS(1485), + [anon_sym_PLUS_PLUS] = ACTIONS(1485), + [anon_sym_DASH_DASH] = ACTIONS(1485), + [anon_sym_true] = ACTIONS(77), + [anon_sym_false] = ACTIONS(77), + [anon_sym_PLUS] = ACTIONS(1483), + [anon_sym_DASH] = ACTIONS(1483), + [anon_sym_STAR] = ACTIONS(683), + [anon_sym_CARET] = ACTIONS(1485), + [anon_sym_AMP] = ACTIONS(1485), + [anon_sym_this] = ACTIONS(83), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1265), + [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1267), - [anon_sym_unchecked] = ACTIONS(1253), + [sym_predefined_type] = ACTIONS(91), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1269), - [anon_sym_throw] = ACTIONS(1519), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(1077), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1521), - [anon_sym_DOT_DOT] = ACTIONS(1523), + [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), @@ -185055,19 +184941,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1277), - [anon_sym_sizeof] = ACTIONS(1279), - [anon_sym_typeof] = ACTIONS(1281), - [anon_sym___makeref] = ACTIONS(1283), - [anon_sym___reftype] = ACTIONS(1285), - [anon_sym___refvalue] = ACTIONS(1287), - [sym_null_literal] = ACTIONS(1289), - [anon_sym_SQUOTE] = ACTIONS(1291), - [sym_integer_literal] = ACTIONS(1289), - [sym_real_literal] = ACTIONS(1293), - [anon_sym_DQUOTE] = ACTIONS(1295), - [sym_verbatim_string_literal] = ACTIONS(1293), - [aux_sym_preproc_if_token1] = ACTIONS(1297), + [anon_sym_stackalloc] = ACTIONS(127), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_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), @@ -185078,90 +184964,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1299), - [sym_interpolation_verbatim_start] = ACTIONS(1301), - [sym_interpolation_raw_start] = ACTIONS(1303), - [sym_raw_string_start] = ACTIONS(1305), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [sym_interpolation_raw_start] = ACTIONS(155), + [sym_raw_string_start] = ACTIONS(157), }, [848] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(5907), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2404), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(4240), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3140), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3080), - [sym_postfix_unary_expression] = STATE(3111), - [sym_prefix_unary_expression] = STATE(3111), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6183), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3080), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3111), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3080), - [sym_member_access_expression] = STATE(2484), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3111), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7703), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(3080), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3080), - [sym_typeof_expression] = STATE(3080), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2484), - [sym_literal] = STATE(3080), - [sym_character_literal] = STATE(3011), - [sym_string_literal] = STATE(3011), - [sym_raw_string_literal] = STATE(3011), - [sym_boolean_literal] = STATE(3011), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(5873), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2238), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(4635), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3468), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3102), + [sym_postfix_unary_expression] = STATE(3079), + [sym_prefix_unary_expression] = STATE(3079), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6134), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3102), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3079), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3102), + [sym_member_access_expression] = STATE(2472), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3079), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7309), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(3102), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3102), + [sym_typeof_expression] = STATE(3102), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2472), + [sym_literal] = STATE(3102), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(848), [sym_preproc_endregion] = STATE(848), [sym_preproc_line] = STATE(848), @@ -185171,47 +185057,47 @@ 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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1481), - [anon_sym_LPAREN] = ACTIONS(2251), - [anon_sym_ref] = ACTIONS(2253), - [anon_sym_LBRACE] = ACTIONS(1487), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1479), + [anon_sym_LPAREN] = ACTIONS(659), + [anon_sym_ref] = ACTIONS(663), + [anon_sym_LBRACE] = ACTIONS(1481), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1937), + [anon_sym_new] = ACTIONS(1059), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1067), - [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(1259), - [anon_sym_false] = ACTIONS(1259), - [anon_sym_PLUS] = ACTIONS(2255), - [anon_sym_DASH] = ACTIONS(2255), - [anon_sym_STAR] = ACTIONS(1943), - [anon_sym_CARET] = ACTIONS(2257), - [anon_sym_AMP] = ACTIONS(2257), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(1485), + [anon_sym_TILDE] = ACTIONS(1485), + [anon_sym_PLUS_PLUS] = ACTIONS(1485), + [anon_sym_DASH_DASH] = ACTIONS(1485), + [anon_sym_true] = ACTIONS(77), + [anon_sym_false] = ACTIONS(77), + [anon_sym_PLUS] = ACTIONS(1483), + [anon_sym_DASH] = ACTIONS(1483), + [anon_sym_STAR] = ACTIONS(683), + [anon_sym_CARET] = ACTIONS(1485), + [anon_sym_AMP] = ACTIONS(1485), [anon_sym_this] = ACTIONS(83), [anon_sym_scoped] = ACTIONS(85), [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1267), - [anon_sym_unchecked] = ACTIONS(1067), + [sym_predefined_type] = ACTIONS(91), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1269), - [anon_sym_throw] = ACTIONS(2259), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(1077), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2261), - [anon_sym_DOT_DOT] = ACTIONS(2263), + [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), @@ -185225,18 +185111,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(1279), - [anon_sym_typeof] = ACTIONS(1281), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), [anon_sym___makeref] = ACTIONS(133), [anon_sym___reftype] = ACTIONS(135), [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(1289), - [anon_sym_SQUOTE] = ACTIONS(1291), - [sym_integer_literal] = ACTIONS(1289), - [sym_real_literal] = ACTIONS(1293), - [anon_sym_DQUOTE] = ACTIONS(1295), - [sym_verbatim_string_literal] = ACTIONS(1293), - [aux_sym_preproc_if_token1] = ACTIONS(1089), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_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), @@ -185247,90 +185133,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1299), - [sym_interpolation_verbatim_start] = ACTIONS(1301), - [sym_interpolation_raw_start] = ACTIONS(1303), - [sym_raw_string_start] = ACTIONS(1305), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [sym_interpolation_raw_start] = ACTIONS(155), + [sym_raw_string_start] = ACTIONS(157), }, [849] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(5907), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2404), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(4242), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3140), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3080), - [sym_postfix_unary_expression] = STATE(3111), - [sym_prefix_unary_expression] = STATE(3111), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6183), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3080), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3111), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3080), - [sym_member_access_expression] = STATE(2484), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3111), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7703), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(3080), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3080), - [sym_typeof_expression] = STATE(3080), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2484), - [sym_literal] = STATE(3080), - [sym_character_literal] = STATE(3011), - [sym_string_literal] = STATE(3011), - [sym_raw_string_literal] = STATE(3011), - [sym_boolean_literal] = STATE(3011), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(5873), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2238), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(4636), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3468), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3102), + [sym_postfix_unary_expression] = STATE(3079), + [sym_prefix_unary_expression] = STATE(3079), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6134), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3102), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3079), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3102), + [sym_member_access_expression] = STATE(2472), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3079), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7309), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(3102), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3102), + [sym_typeof_expression] = STATE(3102), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2472), + [sym_literal] = STATE(3102), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(849), [sym_preproc_endregion] = STATE(849), [sym_preproc_line] = STATE(849), @@ -185340,47 +185226,47 @@ 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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1481), - [anon_sym_LPAREN] = ACTIONS(2251), - [anon_sym_ref] = ACTIONS(2253), - [anon_sym_LBRACE] = ACTIONS(1487), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1479), + [anon_sym_LPAREN] = ACTIONS(659), + [anon_sym_ref] = ACTIONS(663), + [anon_sym_LBRACE] = ACTIONS(1481), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1937), + [anon_sym_new] = ACTIONS(1059), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1067), - [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(1259), - [anon_sym_false] = ACTIONS(1259), - [anon_sym_PLUS] = ACTIONS(2255), - [anon_sym_DASH] = ACTIONS(2255), - [anon_sym_STAR] = ACTIONS(1943), - [anon_sym_CARET] = ACTIONS(2257), - [anon_sym_AMP] = ACTIONS(2257), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(1485), + [anon_sym_TILDE] = ACTIONS(1485), + [anon_sym_PLUS_PLUS] = ACTIONS(1485), + [anon_sym_DASH_DASH] = ACTIONS(1485), + [anon_sym_true] = ACTIONS(77), + [anon_sym_false] = ACTIONS(77), + [anon_sym_PLUS] = ACTIONS(1483), + [anon_sym_DASH] = ACTIONS(1483), + [anon_sym_STAR] = ACTIONS(683), + [anon_sym_CARET] = ACTIONS(1485), + [anon_sym_AMP] = ACTIONS(1485), [anon_sym_this] = ACTIONS(83), [anon_sym_scoped] = ACTIONS(85), [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1267), - [anon_sym_unchecked] = ACTIONS(1067), + [sym_predefined_type] = ACTIONS(91), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1269), - [anon_sym_throw] = ACTIONS(2259), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(1077), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2261), - [anon_sym_DOT_DOT] = ACTIONS(2263), + [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), @@ -185394,18 +185280,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(1279), - [anon_sym_typeof] = ACTIONS(1281), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), [anon_sym___makeref] = ACTIONS(133), [anon_sym___reftype] = ACTIONS(135), [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(1289), - [anon_sym_SQUOTE] = ACTIONS(1291), - [sym_integer_literal] = ACTIONS(1289), - [sym_real_literal] = ACTIONS(1293), - [anon_sym_DQUOTE] = ACTIONS(1295), - [sym_verbatim_string_literal] = ACTIONS(1293), - [aux_sym_preproc_if_token1] = ACTIONS(1089), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_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), @@ -185416,90 +185302,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1299), - [sym_interpolation_verbatim_start] = ACTIONS(1301), - [sym_interpolation_raw_start] = ACTIONS(1303), - [sym_raw_string_start] = ACTIONS(1305), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [sym_interpolation_raw_start] = ACTIONS(155), + [sym_raw_string_start] = ACTIONS(157), }, [850] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(5910), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2247), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(5071), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3529), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3080), - [sym_postfix_unary_expression] = STATE(3111), - [sym_prefix_unary_expression] = STATE(3111), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6154), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3080), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3111), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3080), - [sym_member_access_expression] = STATE(2484), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3111), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7444), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(3080), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3080), - [sym_typeof_expression] = STATE(3080), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2484), - [sym_literal] = STATE(3080), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(5873), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2238), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(4637), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3468), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3102), + [sym_postfix_unary_expression] = STATE(3079), + [sym_prefix_unary_expression] = STATE(3079), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6134), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3102), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3079), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3102), + [sym_member_access_expression] = STATE(2472), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3079), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7309), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(3102), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3102), + [sym_typeof_expression] = STATE(3102), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2472), + [sym_literal] = STATE(3102), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(850), [sym_preproc_endregion] = STATE(850), [sym_preproc_line] = STATE(850), @@ -185509,47 +185395,47 @@ 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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1481), - [anon_sym_LPAREN] = ACTIONS(1575), - [anon_sym_ref] = ACTIONS(1577), - [anon_sym_LBRACE] = ACTIONS(1487), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1479), + [anon_sym_LPAREN] = ACTIONS(659), + [anon_sym_ref] = ACTIONS(663), + [anon_sym_LBRACE] = ACTIONS(1481), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1501), + [anon_sym_new] = ACTIONS(1059), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1067), - [anon_sym_BANG] = ACTIONS(901), - [anon_sym_TILDE] = ACTIONS(901), - [anon_sym_PLUS_PLUS] = ACTIONS(901), - [anon_sym_DASH_DASH] = ACTIONS(901), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(1485), + [anon_sym_TILDE] = ACTIONS(1485), + [anon_sym_PLUS_PLUS] = ACTIONS(1485), + [anon_sym_DASH_DASH] = ACTIONS(1485), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(903), - [anon_sym_DASH] = ACTIONS(903), - [anon_sym_STAR] = ACTIONS(905), - [anon_sym_CARET] = ACTIONS(901), - [anon_sym_AMP] = ACTIONS(901), + [anon_sym_PLUS] = ACTIONS(1483), + [anon_sym_DASH] = ACTIONS(1483), + [anon_sym_STAR] = ACTIONS(683), + [anon_sym_CARET] = ACTIONS(1485), + [anon_sym_AMP] = ACTIONS(1485), [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(1067), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1579), + [anon_sym_throw] = ACTIONS(1077), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1581), - [anon_sym_DOT_DOT] = ACTIONS(1583), + [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), @@ -185574,7 +185460,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(1089), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -185591,84 +185477,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [851] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2420), - [sym__name] = STATE(5911), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2197), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(4487), - [sym_non_lvalue_expression] = STATE(3066), - [sym_lvalue_expression] = STATE(3327), - [sym__expression_statement_expression] = STATE(3006), - [sym_assignment_expression] = STATE(3020), - [sym_binary_expression] = STATE(3006), - [sym_postfix_unary_expression] = STATE(3020), - [sym_prefix_unary_expression] = STATE(3020), - [sym__pointer_indirection_expression] = STATE(2423), - [sym_query_expression] = STATE(3006), - [sym_from_clause] = STATE(6159), - [sym_conditional_expression] = STATE(3006), - [sym_conditional_access_expression] = STATE(3006), - [sym_as_expression] = STATE(3006), - [sym_is_expression] = STATE(3006), - [sym_is_pattern_expression] = STATE(3006), - [sym_cast_expression] = STATE(3006), - [sym_checked_expression] = STATE(3006), - [sym_invocation_expression] = STATE(3020), - [sym_switch_expression] = STATE(3006), - [sym_await_expression] = STATE(3020), - [sym_throw_expression] = STATE(3006), - [sym_element_access_expression] = STATE(2423), - [sym_interpolated_string_expression] = STATE(3006), - [sym_member_access_expression] = STATE(2423), - [sym_object_creation_expression] = STATE(3020), - [sym_parenthesized_expression] = STATE(3020), - [sym__parenthesized_lvalue_expression] = STATE(2423), - [sym_lambda_expression] = STATE(3006), - [sym__lambda_expression_init] = STATE(7674), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3006), - [sym_anonymous_method_expression] = STATE(3006), - [sym_anonymous_object_creation_expression] = STATE(3006), - [sym_implicit_array_creation_expression] = STATE(3006), - [sym_implicit_object_creation_expression] = STATE(3006), - [sym_implicit_stackalloc_expression] = STATE(3006), - [sym_initializer_expression] = STATE(3006), - [sym_default_expression] = STATE(3006), - [sym_with_expression] = STATE(3006), - [sym_sizeof_expression] = STATE(3006), - [sym_typeof_expression] = STATE(3006), - [sym_makeref_expression] = STATE(3006), - [sym_ref_expression] = STATE(3006), - [sym_reftype_expression] = STATE(3006), - [sym_refvalue_expression] = STATE(3006), - [sym_stackalloc_expression] = STATE(3006), - [sym_range_expression] = STATE(3006), - [sym_tuple_expression] = STATE(2423), - [sym_literal] = STATE(3006), - [sym_character_literal] = STATE(3011), - [sym_string_literal] = STATE(3011), - [sym_raw_string_literal] = STATE(3011), - [sym_boolean_literal] = STATE(3011), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3006), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(5873), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2238), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(4618), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3468), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3102), + [sym_postfix_unary_expression] = STATE(3079), + [sym_prefix_unary_expression] = STATE(3079), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6134), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3102), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3079), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3102), + [sym_member_access_expression] = STATE(2472), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3079), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7309), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(3102), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3102), + [sym_typeof_expression] = STATE(3102), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2472), + [sym_literal] = STATE(3102), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(851), [sym_preproc_endregion] = STATE(851), [sym_preproc_line] = STATE(851), @@ -185678,47 +185564,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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3440), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1241), - [anon_sym_LPAREN] = ACTIONS(1509), - [anon_sym_ref] = ACTIONS(1511), - [anon_sym_LBRACE] = ACTIONS(1247), - [anon_sym_delegate] = ACTIONS(1249), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1479), + [anon_sym_LPAREN] = ACTIONS(659), + [anon_sym_ref] = ACTIONS(663), + [anon_sym_LBRACE] = ACTIONS(1481), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1251), + [anon_sym_new] = ACTIONS(1059), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1253), - [anon_sym_BANG] = ACTIONS(1515), - [anon_sym_TILDE] = ACTIONS(1515), - [anon_sym_PLUS_PLUS] = ACTIONS(1515), - [anon_sym_DASH_DASH] = ACTIONS(1515), - [anon_sym_true] = ACTIONS(1259), - [anon_sym_false] = ACTIONS(1259), - [anon_sym_PLUS] = ACTIONS(1513), - [anon_sym_DASH] = ACTIONS(1513), - [anon_sym_STAR] = ACTIONS(1517), - [anon_sym_CARET] = ACTIONS(1515), - [anon_sym_AMP] = ACTIONS(1515), - [anon_sym_this] = ACTIONS(1263), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(1485), + [anon_sym_TILDE] = ACTIONS(1485), + [anon_sym_PLUS_PLUS] = ACTIONS(1485), + [anon_sym_DASH_DASH] = ACTIONS(1485), + [anon_sym_true] = ACTIONS(77), + [anon_sym_false] = ACTIONS(77), + [anon_sym_PLUS] = ACTIONS(1483), + [anon_sym_DASH] = ACTIONS(1483), + [anon_sym_STAR] = ACTIONS(683), + [anon_sym_CARET] = ACTIONS(1485), + [anon_sym_AMP] = ACTIONS(1485), + [anon_sym_this] = ACTIONS(83), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1265), + [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1267), - [anon_sym_unchecked] = ACTIONS(1253), + [sym_predefined_type] = ACTIONS(91), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1269), - [anon_sym_throw] = ACTIONS(1519), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(1077), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1521), - [anon_sym_DOT_DOT] = ACTIONS(1523), + [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), @@ -185731,19 +185617,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1277), - [anon_sym_sizeof] = ACTIONS(1279), - [anon_sym_typeof] = ACTIONS(1281), - [anon_sym___makeref] = ACTIONS(1283), - [anon_sym___reftype] = ACTIONS(1285), - [anon_sym___refvalue] = ACTIONS(1287), - [sym_null_literal] = ACTIONS(1289), - [anon_sym_SQUOTE] = ACTIONS(1291), - [sym_integer_literal] = ACTIONS(1289), - [sym_real_literal] = ACTIONS(1293), - [anon_sym_DQUOTE] = ACTIONS(1295), - [sym_verbatim_string_literal] = ACTIONS(1293), - [aux_sym_preproc_if_token1] = ACTIONS(1297), + [anon_sym_stackalloc] = ACTIONS(127), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_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), @@ -185754,90 +185640,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1299), - [sym_interpolation_verbatim_start] = ACTIONS(1301), - [sym_interpolation_raw_start] = ACTIONS(1303), - [sym_raw_string_start] = ACTIONS(1305), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [sym_interpolation_raw_start] = ACTIONS(155), + [sym_raw_string_start] = ACTIONS(157), }, [852] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(5910), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2247), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(5073), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3529), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3080), - [sym_postfix_unary_expression] = STATE(3111), - [sym_prefix_unary_expression] = STATE(3111), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6154), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3080), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3111), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3080), - [sym_member_access_expression] = STATE(2484), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3111), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7444), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(3080), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3080), - [sym_typeof_expression] = STATE(3080), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2484), - [sym_literal] = STATE(3080), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2416), + [sym__name] = STATE(5900), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2193), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(4474), + [sym_non_lvalue_expression] = STATE(3040), + [sym_lvalue_expression] = STATE(3231), + [sym__expression_statement_expression] = STATE(3035), + [sym_assignment_expression] = STATE(3043), + [sym_binary_expression] = STATE(3035), + [sym_postfix_unary_expression] = STATE(3043), + [sym_prefix_unary_expression] = STATE(3043), + [sym__pointer_indirection_expression] = STATE(2415), + [sym_query_expression] = STATE(3035), + [sym_from_clause] = STATE(6149), + [sym_conditional_expression] = STATE(3035), + [sym_conditional_access_expression] = STATE(3035), + [sym_as_expression] = STATE(3035), + [sym_is_expression] = STATE(3035), + [sym_is_pattern_expression] = STATE(3035), + [sym_cast_expression] = STATE(3035), + [sym_checked_expression] = STATE(3035), + [sym_invocation_expression] = STATE(3043), + [sym_switch_expression] = STATE(3035), + [sym_await_expression] = STATE(3043), + [sym_throw_expression] = STATE(3035), + [sym_element_access_expression] = STATE(2415), + [sym_interpolated_string_expression] = STATE(3035), + [sym_member_access_expression] = STATE(2415), + [sym_object_creation_expression] = STATE(3043), + [sym_parenthesized_expression] = STATE(3043), + [sym__parenthesized_lvalue_expression] = STATE(2415), + [sym_lambda_expression] = STATE(3035), + [sym__lambda_expression_init] = STATE(7405), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3035), + [sym_anonymous_method_expression] = STATE(3035), + [sym_anonymous_object_creation_expression] = STATE(3035), + [sym_implicit_array_creation_expression] = STATE(3035), + [sym_implicit_object_creation_expression] = STATE(3035), + [sym_implicit_stackalloc_expression] = STATE(3035), + [sym_initializer_expression] = STATE(3035), + [sym_default_expression] = STATE(3035), + [sym_with_expression] = STATE(3035), + [sym_sizeof_expression] = STATE(3035), + [sym_typeof_expression] = STATE(3035), + [sym_makeref_expression] = STATE(3035), + [sym_ref_expression] = STATE(3035), + [sym_reftype_expression] = STATE(3035), + [sym_refvalue_expression] = STATE(3035), + [sym_stackalloc_expression] = STATE(3035), + [sym_range_expression] = STATE(3035), + [sym_tuple_expression] = STATE(2415), + [sym_literal] = STATE(3035), + [sym_character_literal] = STATE(3037), + [sym_string_literal] = STATE(3037), + [sym_raw_string_literal] = STATE(3037), + [sym_boolean_literal] = STATE(3037), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3035), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(852), [sym_preproc_endregion] = STATE(852), [sym_preproc_line] = STATE(852), @@ -185847,47 +185733,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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3455), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1481), - [anon_sym_LPAREN] = ACTIONS(1575), - [anon_sym_ref] = ACTIONS(1577), - [anon_sym_LBRACE] = ACTIONS(1487), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1239), + [anon_sym_LPAREN] = ACTIONS(1495), + [anon_sym_ref] = ACTIONS(1497), + [anon_sym_LBRACE] = ACTIONS(1245), + [anon_sym_delegate] = ACTIONS(1247), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1501), + [anon_sym_new] = ACTIONS(1249), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1067), - [anon_sym_BANG] = ACTIONS(901), - [anon_sym_TILDE] = ACTIONS(901), - [anon_sym_PLUS_PLUS] = ACTIONS(901), - [anon_sym_DASH_DASH] = ACTIONS(901), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(903), - [anon_sym_DASH] = ACTIONS(903), - [anon_sym_STAR] = ACTIONS(905), - [anon_sym_CARET] = ACTIONS(901), - [anon_sym_AMP] = ACTIONS(901), - [anon_sym_this] = ACTIONS(83), + [anon_sym_checked] = ACTIONS(1251), + [anon_sym_BANG] = ACTIONS(1501), + [anon_sym_TILDE] = ACTIONS(1501), + [anon_sym_PLUS_PLUS] = ACTIONS(1501), + [anon_sym_DASH_DASH] = ACTIONS(1501), + [anon_sym_true] = ACTIONS(1257), + [anon_sym_false] = ACTIONS(1257), + [anon_sym_PLUS] = ACTIONS(1499), + [anon_sym_DASH] = ACTIONS(1499), + [anon_sym_STAR] = ACTIONS(1503), + [anon_sym_CARET] = ACTIONS(1501), + [anon_sym_AMP] = ACTIONS(1501), + [anon_sym_this] = ACTIONS(1261), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), + [anon_sym_base] = ACTIONS(1263), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1067), + [sym_predefined_type] = ACTIONS(1265), + [anon_sym_unchecked] = ACTIONS(1251), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1579), + [anon_sym_default] = ACTIONS(1267), + [anon_sym_throw] = ACTIONS(1505), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1581), - [anon_sym_DOT_DOT] = ACTIONS(1583), + [anon_sym_await] = ACTIONS(1507), + [anon_sym_DOT_DOT] = ACTIONS(1509), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -185900,19 +185786,19 @@ static const uint16_t ts_parse_table[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(1089), + [anon_sym_stackalloc] = ACTIONS(1275), + [anon_sym_sizeof] = ACTIONS(1277), + [anon_sym_typeof] = ACTIONS(1279), + [anon_sym___makeref] = ACTIONS(1281), + [anon_sym___reftype] = ACTIONS(1283), + [anon_sym___refvalue] = ACTIONS(1285), + [sym_null_literal] = ACTIONS(1287), + [anon_sym_SQUOTE] = ACTIONS(1289), + [sym_integer_literal] = ACTIONS(1287), + [sym_real_literal] = ACTIONS(1291), + [anon_sym_DQUOTE] = ACTIONS(1293), + [sym_verbatim_string_literal] = ACTIONS(1291), + [aux_sym_preproc_if_token1] = ACTIONS(1295), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -185923,90 +185809,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(151), - [sym_interpolation_verbatim_start] = ACTIONS(153), - [sym_interpolation_raw_start] = ACTIONS(155), - [sym_raw_string_start] = ACTIONS(157), + [sym_interpolation_regular_start] = ACTIONS(1297), + [sym_interpolation_verbatim_start] = ACTIONS(1299), + [sym_interpolation_raw_start] = ACTIONS(1301), + [sym_raw_string_start] = ACTIONS(1303), }, [853] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(5910), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2247), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(5075), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3529), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3080), - [sym_postfix_unary_expression] = STATE(3111), - [sym_prefix_unary_expression] = STATE(3111), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6154), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3080), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3111), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3080), - [sym_member_access_expression] = STATE(2484), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3111), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7444), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(3080), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3080), - [sym_typeof_expression] = STATE(3080), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2484), - [sym_literal] = STATE(3080), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(5152), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2196), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5871), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(5455), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3640), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3102), + [sym_postfix_unary_expression] = STATE(3079), + [sym_prefix_unary_expression] = STATE(3079), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6137), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3102), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3079), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3102), + [sym_member_access_expression] = STATE(2472), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3079), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7645), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(3102), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3102), + [sym_typeof_expression] = STATE(3102), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2472), + [sym_literal] = STATE(3102), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(853), [sym_preproc_endregion] = STATE(853), [sym_preproc_line] = STATE(853), @@ -186016,47 +185902,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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1481), - [anon_sym_LPAREN] = ACTIONS(1575), - [anon_sym_ref] = ACTIONS(1577), - [anon_sym_LBRACE] = ACTIONS(1487), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1479), + [anon_sym_LPAREN] = ACTIONS(2081), + [anon_sym_ref] = ACTIONS(2083), + [anon_sym_LBRACE] = ACTIONS(1481), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1501), + [anon_sym_new] = ACTIONS(1059), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1067), - [anon_sym_BANG] = ACTIONS(901), - [anon_sym_TILDE] = ACTIONS(901), - [anon_sym_PLUS_PLUS] = ACTIONS(901), - [anon_sym_DASH_DASH] = ACTIONS(901), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(2087), + [anon_sym_TILDE] = ACTIONS(2087), + [anon_sym_PLUS_PLUS] = ACTIONS(2087), + [anon_sym_DASH_DASH] = ACTIONS(2087), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(903), - [anon_sym_DASH] = ACTIONS(903), - [anon_sym_STAR] = ACTIONS(905), - [anon_sym_CARET] = ACTIONS(901), - [anon_sym_AMP] = ACTIONS(901), + [anon_sym_PLUS] = ACTIONS(2085), + [anon_sym_DASH] = ACTIONS(2085), + [anon_sym_STAR] = ACTIONS(81), + [anon_sym_CARET] = ACTIONS(2087), + [anon_sym_AMP] = ACTIONS(2087), [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(1067), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1579), + [anon_sym_throw] = ACTIONS(2089), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1581), - [anon_sym_DOT_DOT] = ACTIONS(1583), + [anon_sym_await] = ACTIONS(2091), + [anon_sym_DOT_DOT] = ACTIONS(2093), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -186081,7 +185967,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(1089), + [aux_sym_preproc_if_token1] = ACTIONS(2095), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -186098,84 +185984,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [854] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(5910), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2247), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(5078), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3529), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3080), - [sym_postfix_unary_expression] = STATE(3111), - [sym_prefix_unary_expression] = STATE(3111), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6154), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3080), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3111), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3080), - [sym_member_access_expression] = STATE(2484), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3111), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7444), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(3080), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3080), - [sym_typeof_expression] = STATE(3080), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2484), - [sym_literal] = STATE(3080), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(5873), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2238), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(3523), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3468), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3102), + [sym_postfix_unary_expression] = STATE(3079), + [sym_prefix_unary_expression] = STATE(3079), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6134), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3102), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3079), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3102), + [sym_member_access_expression] = STATE(2472), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3079), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7309), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(3102), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3102), + [sym_typeof_expression] = STATE(3102), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2472), + [sym_literal] = STATE(3102), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(854), [sym_preproc_endregion] = STATE(854), [sym_preproc_line] = STATE(854), @@ -186185,47 +186071,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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1481), - [anon_sym_LPAREN] = ACTIONS(1575), - [anon_sym_ref] = ACTIONS(1577), - [anon_sym_LBRACE] = ACTIONS(1487), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1479), + [anon_sym_LPAREN] = ACTIONS(659), + [anon_sym_ref] = ACTIONS(663), + [anon_sym_LBRACE] = ACTIONS(1481), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1501), + [anon_sym_new] = ACTIONS(1059), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1067), - [anon_sym_BANG] = ACTIONS(901), - [anon_sym_TILDE] = ACTIONS(901), - [anon_sym_PLUS_PLUS] = ACTIONS(901), - [anon_sym_DASH_DASH] = ACTIONS(901), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(1485), + [anon_sym_TILDE] = ACTIONS(1485), + [anon_sym_PLUS_PLUS] = ACTIONS(1485), + [anon_sym_DASH_DASH] = ACTIONS(1485), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(903), - [anon_sym_DASH] = ACTIONS(903), - [anon_sym_STAR] = ACTIONS(905), - [anon_sym_CARET] = ACTIONS(901), - [anon_sym_AMP] = ACTIONS(901), + [anon_sym_PLUS] = ACTIONS(1483), + [anon_sym_DASH] = ACTIONS(1483), + [anon_sym_STAR] = ACTIONS(683), + [anon_sym_CARET] = ACTIONS(1485), + [anon_sym_AMP] = ACTIONS(1485), [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(1067), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1579), + [anon_sym_throw] = ACTIONS(1077), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1581), - [anon_sym_DOT_DOT] = ACTIONS(1583), + [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), @@ -186250,7 +186136,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(1089), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -186267,84 +186153,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [855] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(5910), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2247), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(5089), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3529), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3080), - [sym_postfix_unary_expression] = STATE(3111), - [sym_prefix_unary_expression] = STATE(3111), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6154), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3080), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3111), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3080), - [sym_member_access_expression] = STATE(2484), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3111), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7444), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(3080), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3080), - [sym_typeof_expression] = STATE(3080), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2484), - [sym_literal] = STATE(3080), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(5895), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2376), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(5411), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3643), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3102), + [sym_postfix_unary_expression] = STATE(3079), + [sym_prefix_unary_expression] = STATE(3079), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6148), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3102), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3079), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3102), + [sym_member_access_expression] = STATE(2472), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3079), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7304), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(3102), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3102), + [sym_typeof_expression] = STATE(3102), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2472), + [sym_literal] = STATE(3102), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(855), [sym_preproc_endregion] = STATE(855), [sym_preproc_line] = STATE(855), @@ -186354,47 +186240,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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1481), - [anon_sym_LPAREN] = ACTIONS(1575), - [anon_sym_ref] = ACTIONS(1577), - [anon_sym_LBRACE] = ACTIONS(1487), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1479), + [anon_sym_LPAREN] = ACTIONS(2199), + [anon_sym_ref] = ACTIONS(2201), + [anon_sym_LBRACE] = ACTIONS(1481), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1501), + [anon_sym_new] = ACTIONS(2203), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1067), - [anon_sym_BANG] = ACTIONS(901), - [anon_sym_TILDE] = ACTIONS(901), - [anon_sym_PLUS_PLUS] = ACTIONS(901), - [anon_sym_DASH_DASH] = ACTIONS(901), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(2207), + [anon_sym_TILDE] = ACTIONS(2207), + [anon_sym_PLUS_PLUS] = ACTIONS(2207), + [anon_sym_DASH_DASH] = ACTIONS(2207), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(903), - [anon_sym_DASH] = ACTIONS(903), - [anon_sym_STAR] = ACTIONS(905), - [anon_sym_CARET] = ACTIONS(901), - [anon_sym_AMP] = ACTIONS(901), + [anon_sym_PLUS] = ACTIONS(2205), + [anon_sym_DASH] = ACTIONS(2205), + [anon_sym_STAR] = ACTIONS(2209), + [anon_sym_CARET] = ACTIONS(2207), + [anon_sym_AMP] = ACTIONS(2207), [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(1067), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1579), + [anon_sym_throw] = ACTIONS(2211), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1581), - [anon_sym_DOT_DOT] = ACTIONS(1583), + [anon_sym_await] = ACTIONS(2213), + [anon_sym_DOT_DOT] = ACTIONS(2215), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -186419,7 +186305,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(1089), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -186436,84 +186322,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [856] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(5910), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2247), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(5096), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3529), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3080), - [sym_postfix_unary_expression] = STATE(3111), - [sym_prefix_unary_expression] = STATE(3111), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6154), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3080), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3111), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3080), - [sym_member_access_expression] = STATE(2484), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3111), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7444), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(3080), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3080), - [sym_typeof_expression] = STATE(3080), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2484), - [sym_literal] = STATE(3080), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(5896), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2362), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(5412), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3661), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3102), + [sym_postfix_unary_expression] = STATE(3079), + [sym_prefix_unary_expression] = STATE(3079), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6129), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3102), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3079), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3102), + [sym_member_access_expression] = STATE(2472), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3079), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7367), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(3102), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3102), + [sym_typeof_expression] = STATE(3102), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2472), + [sym_literal] = STATE(3102), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(856), [sym_preproc_endregion] = STATE(856), [sym_preproc_line] = STATE(856), @@ -186523,47 +186409,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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1481), - [anon_sym_LPAREN] = ACTIONS(1575), - [anon_sym_ref] = ACTIONS(1577), - [anon_sym_LBRACE] = ACTIONS(1487), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1479), + [anon_sym_LPAREN] = ACTIONS(2135), + [anon_sym_ref] = ACTIONS(2137), + [anon_sym_LBRACE] = ACTIONS(1481), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1501), + [anon_sym_new] = ACTIONS(2139), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1067), - [anon_sym_BANG] = ACTIONS(901), - [anon_sym_TILDE] = ACTIONS(901), - [anon_sym_PLUS_PLUS] = ACTIONS(901), - [anon_sym_DASH_DASH] = ACTIONS(901), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(2143), + [anon_sym_TILDE] = ACTIONS(2143), + [anon_sym_PLUS_PLUS] = ACTIONS(2143), + [anon_sym_DASH_DASH] = ACTIONS(2143), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(903), - [anon_sym_DASH] = ACTIONS(903), - [anon_sym_STAR] = ACTIONS(905), - [anon_sym_CARET] = ACTIONS(901), - [anon_sym_AMP] = ACTIONS(901), + [anon_sym_PLUS] = ACTIONS(2141), + [anon_sym_DASH] = ACTIONS(2141), + [anon_sym_STAR] = ACTIONS(2145), + [anon_sym_CARET] = ACTIONS(2143), + [anon_sym_AMP] = ACTIONS(2143), [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(1067), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1579), + [anon_sym_throw] = ACTIONS(2147), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1581), - [anon_sym_DOT_DOT] = ACTIONS(1583), + [anon_sym_await] = ACTIONS(2149), + [anon_sym_DOT_DOT] = ACTIONS(2151), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -186588,7 +186474,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(1089), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -186605,84 +186491,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [857] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(5910), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2247), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(5102), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3529), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3080), - [sym_postfix_unary_expression] = STATE(3111), - [sym_prefix_unary_expression] = STATE(3111), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6154), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3080), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3111), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3080), - [sym_member_access_expression] = STATE(2484), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3111), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7444), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(3080), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3080), - [sym_typeof_expression] = STATE(3080), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2484), - [sym_literal] = STATE(3080), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(5873), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2238), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(5145), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3468), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3102), + [sym_postfix_unary_expression] = STATE(3079), + [sym_prefix_unary_expression] = STATE(3079), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6134), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3102), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3079), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3102), + [sym_member_access_expression] = STATE(2472), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3079), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7309), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(3102), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3102), + [sym_typeof_expression] = STATE(3102), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2472), + [sym_literal] = STATE(3102), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(857), [sym_preproc_endregion] = STATE(857), [sym_preproc_line] = STATE(857), @@ -186692,47 +186578,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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1481), - [anon_sym_LPAREN] = ACTIONS(1575), - [anon_sym_ref] = ACTIONS(1577), - [anon_sym_LBRACE] = ACTIONS(1487), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1479), + [anon_sym_LPAREN] = ACTIONS(659), + [anon_sym_ref] = ACTIONS(663), + [anon_sym_LBRACE] = ACTIONS(1481), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1501), + [anon_sym_new] = ACTIONS(1059), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1067), - [anon_sym_BANG] = ACTIONS(901), - [anon_sym_TILDE] = ACTIONS(901), - [anon_sym_PLUS_PLUS] = ACTIONS(901), - [anon_sym_DASH_DASH] = ACTIONS(901), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(1485), + [anon_sym_TILDE] = ACTIONS(1485), + [anon_sym_PLUS_PLUS] = ACTIONS(1485), + [anon_sym_DASH_DASH] = ACTIONS(1485), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(903), - [anon_sym_DASH] = ACTIONS(903), - [anon_sym_STAR] = ACTIONS(905), - [anon_sym_CARET] = ACTIONS(901), - [anon_sym_AMP] = ACTIONS(901), + [anon_sym_PLUS] = ACTIONS(1483), + [anon_sym_DASH] = ACTIONS(1483), + [anon_sym_STAR] = ACTIONS(683), + [anon_sym_CARET] = ACTIONS(1485), + [anon_sym_AMP] = ACTIONS(1485), [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(1067), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1579), + [anon_sym_throw] = ACTIONS(1077), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1581), - [anon_sym_DOT_DOT] = ACTIONS(1583), + [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), @@ -186757,7 +186643,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(1089), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -186774,84 +186660,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [858] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(5910), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2247), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(5103), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3529), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3080), - [sym_postfix_unary_expression] = STATE(3111), - [sym_prefix_unary_expression] = STATE(3111), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6154), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3080), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3111), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3080), - [sym_member_access_expression] = STATE(2484), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3111), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7444), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(3080), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3080), - [sym_typeof_expression] = STATE(3080), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2484), - [sym_literal] = STATE(3080), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(5873), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2238), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(5146), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3468), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3102), + [sym_postfix_unary_expression] = STATE(3079), + [sym_prefix_unary_expression] = STATE(3079), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6134), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3102), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3079), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3102), + [sym_member_access_expression] = STATE(2472), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3079), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7309), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(3102), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3102), + [sym_typeof_expression] = STATE(3102), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2472), + [sym_literal] = STATE(3102), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(858), [sym_preproc_endregion] = STATE(858), [sym_preproc_line] = STATE(858), @@ -186861,47 +186747,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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1481), - [anon_sym_LPAREN] = ACTIONS(1575), - [anon_sym_ref] = ACTIONS(1577), - [anon_sym_LBRACE] = ACTIONS(1487), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1479), + [anon_sym_LPAREN] = ACTIONS(659), + [anon_sym_ref] = ACTIONS(663), + [anon_sym_LBRACE] = ACTIONS(1481), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1501), + [anon_sym_new] = ACTIONS(1059), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1067), - [anon_sym_BANG] = ACTIONS(901), - [anon_sym_TILDE] = ACTIONS(901), - [anon_sym_PLUS_PLUS] = ACTIONS(901), - [anon_sym_DASH_DASH] = ACTIONS(901), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(1485), + [anon_sym_TILDE] = ACTIONS(1485), + [anon_sym_PLUS_PLUS] = ACTIONS(1485), + [anon_sym_DASH_DASH] = ACTIONS(1485), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(903), - [anon_sym_DASH] = ACTIONS(903), - [anon_sym_STAR] = ACTIONS(905), - [anon_sym_CARET] = ACTIONS(901), - [anon_sym_AMP] = ACTIONS(901), + [anon_sym_PLUS] = ACTIONS(1483), + [anon_sym_DASH] = ACTIONS(1483), + [anon_sym_STAR] = ACTIONS(683), + [anon_sym_CARET] = ACTIONS(1485), + [anon_sym_AMP] = ACTIONS(1485), [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(1067), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1579), + [anon_sym_throw] = ACTIONS(1077), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1581), - [anon_sym_DOT_DOT] = ACTIONS(1583), + [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), @@ -186926,7 +186812,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(1089), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -186943,84 +186829,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [859] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(5907), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2404), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(4243), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3140), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3080), - [sym_postfix_unary_expression] = STATE(3111), - [sym_prefix_unary_expression] = STATE(3111), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6183), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3080), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3111), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3080), - [sym_member_access_expression] = STATE(2484), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3111), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7703), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(3080), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3080), - [sym_typeof_expression] = STATE(3080), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2484), - [sym_literal] = STATE(3080), - [sym_character_literal] = STATE(3011), - [sym_string_literal] = STATE(3011), - [sym_raw_string_literal] = STATE(3011), - [sym_boolean_literal] = STATE(3011), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(5881), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2386), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(4240), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3132), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3102), + [sym_postfix_unary_expression] = STATE(3079), + [sym_prefix_unary_expression] = STATE(3079), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6158), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3102), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3079), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3102), + [sym_member_access_expression] = STATE(2472), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3079), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7650), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(3102), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3102), + [sym_typeof_expression] = STATE(3102), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2472), + [sym_literal] = STATE(3102), + [sym_character_literal] = STATE(3037), + [sym_string_literal] = STATE(3037), + [sym_raw_string_literal] = STATE(3037), + [sym_boolean_literal] = STATE(3037), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(859), [sym_preproc_endregion] = STATE(859), [sym_preproc_line] = STATE(859), @@ -187030,47 +186916,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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1481), - [anon_sym_LPAREN] = ACTIONS(2251), - [anon_sym_ref] = ACTIONS(2253), - [anon_sym_LBRACE] = ACTIONS(1487), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1479), + [anon_sym_LPAREN] = ACTIONS(2185), + [anon_sym_ref] = ACTIONS(2187), + [anon_sym_LBRACE] = ACTIONS(1481), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1937), + [anon_sym_new] = ACTIONS(1899), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1067), - [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(1259), - [anon_sym_false] = ACTIONS(1259), - [anon_sym_PLUS] = ACTIONS(2255), - [anon_sym_DASH] = ACTIONS(2255), - [anon_sym_STAR] = ACTIONS(1943), - [anon_sym_CARET] = ACTIONS(2257), - [anon_sym_AMP] = ACTIONS(2257), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(2191), + [anon_sym_TILDE] = ACTIONS(2191), + [anon_sym_PLUS_PLUS] = ACTIONS(2191), + [anon_sym_DASH_DASH] = ACTIONS(2191), + [anon_sym_true] = ACTIONS(1257), + [anon_sym_false] = ACTIONS(1257), + [anon_sym_PLUS] = ACTIONS(2189), + [anon_sym_DASH] = ACTIONS(2189), + [anon_sym_STAR] = ACTIONS(1905), + [anon_sym_CARET] = ACTIONS(2191), + [anon_sym_AMP] = ACTIONS(2191), [anon_sym_this] = ACTIONS(83), [anon_sym_scoped] = ACTIONS(85), [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1267), - [anon_sym_unchecked] = ACTIONS(1067), + [sym_predefined_type] = ACTIONS(1265), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1269), - [anon_sym_throw] = ACTIONS(2259), + [anon_sym_default] = ACTIONS(1267), + [anon_sym_throw] = ACTIONS(2193), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2261), - [anon_sym_DOT_DOT] = ACTIONS(2263), + [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), @@ -187084,18 +186970,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(1279), - [anon_sym_typeof] = ACTIONS(1281), + [anon_sym_sizeof] = ACTIONS(1277), + [anon_sym_typeof] = ACTIONS(1279), [anon_sym___makeref] = ACTIONS(133), [anon_sym___reftype] = ACTIONS(135), [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(1289), - [anon_sym_SQUOTE] = ACTIONS(1291), - [sym_integer_literal] = ACTIONS(1289), - [sym_real_literal] = ACTIONS(1293), - [anon_sym_DQUOTE] = ACTIONS(1295), - [sym_verbatim_string_literal] = ACTIONS(1293), - [aux_sym_preproc_if_token1] = ACTIONS(1089), + [sym_null_literal] = ACTIONS(1287), + [anon_sym_SQUOTE] = ACTIONS(1289), + [sym_integer_literal] = ACTIONS(1287), + [sym_real_literal] = ACTIONS(1291), + [anon_sym_DQUOTE] = ACTIONS(1293), + [sym_verbatim_string_literal] = ACTIONS(1291), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -187106,90 +186992,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1299), - [sym_interpolation_verbatim_start] = ACTIONS(1301), - [sym_interpolation_raw_start] = ACTIONS(1303), - [sym_raw_string_start] = ACTIONS(1305), + [sym_interpolation_regular_start] = ACTIONS(1297), + [sym_interpolation_verbatim_start] = ACTIONS(1299), + [sym_interpolation_raw_start] = ACTIONS(1301), + [sym_raw_string_start] = ACTIONS(1303), }, [860] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(5910), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2247), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(4845), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3529), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3080), - [sym_postfix_unary_expression] = STATE(3111), - [sym_prefix_unary_expression] = STATE(3111), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6154), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3080), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3111), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3080), - [sym_member_access_expression] = STATE(2484), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3111), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7444), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(3080), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3080), - [sym_typeof_expression] = STATE(3080), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2484), - [sym_literal] = STATE(3080), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2416), + [sym__name] = STATE(5890), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2193), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(4078), + [sym_non_lvalue_expression] = STATE(3040), + [sym_lvalue_expression] = STATE(3109), + [sym__expression_statement_expression] = STATE(3035), + [sym_assignment_expression] = STATE(3043), + [sym_binary_expression] = STATE(3035), + [sym_postfix_unary_expression] = STATE(3043), + [sym_prefix_unary_expression] = STATE(3043), + [sym__pointer_indirection_expression] = STATE(2415), + [sym_query_expression] = STATE(3035), + [sym_from_clause] = STATE(6138), + [sym_conditional_expression] = STATE(3035), + [sym_conditional_access_expression] = STATE(3035), + [sym_as_expression] = STATE(3035), + [sym_is_expression] = STATE(3035), + [sym_is_pattern_expression] = STATE(3035), + [sym_cast_expression] = STATE(3035), + [sym_checked_expression] = STATE(3035), + [sym_invocation_expression] = STATE(3043), + [sym_switch_expression] = STATE(3035), + [sym_await_expression] = STATE(3043), + [sym_throw_expression] = STATE(3035), + [sym_element_access_expression] = STATE(2415), + [sym_interpolated_string_expression] = STATE(3035), + [sym_member_access_expression] = STATE(2415), + [sym_object_creation_expression] = STATE(3043), + [sym_parenthesized_expression] = STATE(3043), + [sym__parenthesized_lvalue_expression] = STATE(2415), + [sym_lambda_expression] = STATE(3035), + [sym__lambda_expression_init] = STATE(7374), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3035), + [sym_anonymous_method_expression] = STATE(3035), + [sym_anonymous_object_creation_expression] = STATE(3035), + [sym_implicit_array_creation_expression] = STATE(3035), + [sym_implicit_object_creation_expression] = STATE(3035), + [sym_implicit_stackalloc_expression] = STATE(3035), + [sym_initializer_expression] = STATE(3035), + [sym_default_expression] = STATE(3035), + [sym_with_expression] = STATE(3035), + [sym_sizeof_expression] = STATE(3035), + [sym_typeof_expression] = STATE(3035), + [sym_makeref_expression] = STATE(3035), + [sym_ref_expression] = STATE(3035), + [sym_reftype_expression] = STATE(3035), + [sym_refvalue_expression] = STATE(3035), + [sym_stackalloc_expression] = STATE(3035), + [sym_range_expression] = STATE(3035), + [sym_tuple_expression] = STATE(2415), + [sym_literal] = STATE(3035), + [sym_character_literal] = STATE(3037), + [sym_string_literal] = STATE(3037), + [sym_raw_string_literal] = STATE(3037), + [sym_boolean_literal] = STATE(3037), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3035), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(860), [sym_preproc_endregion] = STATE(860), [sym_preproc_line] = STATE(860), @@ -187199,47 +187085,216 @@ 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(3067), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3455), + [sym__identifier_token] = ACTIONS(25), + [anon_sym_alias] = ACTIONS(29), + [anon_sym_global] = ACTIONS(29), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1239), + [anon_sym_LPAREN] = ACTIONS(1241), + [anon_sym_ref] = ACTIONS(1243), + [anon_sym_LBRACE] = ACTIONS(1245), + [anon_sym_delegate] = ACTIONS(1247), + [anon_sym_async] = ACTIONS(1045), + [anon_sym_file] = ACTIONS(29), + [anon_sym_new] = ACTIONS(1249), + [anon_sym_where] = ACTIONS(29), + [anon_sym_notnull] = ACTIONS(29), + [anon_sym_unmanaged] = ACTIONS(29), + [anon_sym_checked] = ACTIONS(1251), + [anon_sym_BANG] = ACTIONS(1255), + [anon_sym_TILDE] = ACTIONS(1255), + [anon_sym_PLUS_PLUS] = ACTIONS(1255), + [anon_sym_DASH_DASH] = ACTIONS(1255), + [anon_sym_true] = ACTIONS(1257), + [anon_sym_false] = ACTIONS(1257), + [anon_sym_PLUS] = ACTIONS(1253), + [anon_sym_DASH] = ACTIONS(1253), + [anon_sym_STAR] = ACTIONS(1259), + [anon_sym_CARET] = ACTIONS(1255), + [anon_sym_AMP] = ACTIONS(1255), + [anon_sym_this] = ACTIONS(1261), + [anon_sym_scoped] = ACTIONS(85), + [anon_sym_base] = ACTIONS(1263), + [anon_sym_var] = ACTIONS(89), + [sym_predefined_type] = ACTIONS(1265), + [anon_sym_unchecked] = ACTIONS(1251), + [anon_sym_yield] = ACTIONS(29), + [anon_sym_default] = ACTIONS(1267), + [anon_sym_throw] = ACTIONS(1269), + [anon_sym_when] = ACTIONS(29), + [anon_sym_await] = ACTIONS(1271), + [anon_sym_DOT_DOT] = ACTIONS(1273), + [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(1275), + [anon_sym_sizeof] = ACTIONS(1277), + [anon_sym_typeof] = ACTIONS(1279), + [anon_sym___makeref] = ACTIONS(1281), + [anon_sym___reftype] = ACTIONS(1283), + [anon_sym___refvalue] = ACTIONS(1285), + [sym_null_literal] = ACTIONS(1287), + [anon_sym_SQUOTE] = ACTIONS(1289), + [sym_integer_literal] = ACTIONS(1287), + [sym_real_literal] = ACTIONS(1291), + [anon_sym_DQUOTE] = ACTIONS(1293), + [sym_verbatim_string_literal] = ACTIONS(1291), + [aux_sym_preproc_if_token1] = ACTIONS(1295), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + [sym_interpolation_regular_start] = ACTIONS(1297), + [sym_interpolation_verbatim_start] = ACTIONS(1299), + [sym_interpolation_raw_start] = ACTIONS(1301), + [sym_raw_string_start] = ACTIONS(1303), + }, + [861] = { + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2816), + [sym__name] = STATE(5873), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2238), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(4238), + [sym_non_lvalue_expression] = STATE(3495), + [sym_lvalue_expression] = STATE(3131), + [sym__expression_statement_expression] = STATE(3462), + [sym_assignment_expression] = STATE(3497), + [sym_binary_expression] = STATE(3462), + [sym_postfix_unary_expression] = STATE(3497), + [sym_prefix_unary_expression] = STATE(3497), + [sym__pointer_indirection_expression] = STATE(2815), + [sym_query_expression] = STATE(3462), + [sym_from_clause] = STATE(6140), + [sym_conditional_expression] = STATE(3462), + [sym_conditional_access_expression] = STATE(3462), + [sym_as_expression] = STATE(3462), + [sym_is_expression] = STATE(3462), + [sym_is_pattern_expression] = STATE(3462), + [sym_cast_expression] = STATE(3462), + [sym_checked_expression] = STATE(3462), + [sym_invocation_expression] = STATE(3497), + [sym_switch_expression] = STATE(3462), + [sym_await_expression] = STATE(3497), + [sym_throw_expression] = STATE(3462), + [sym_element_access_expression] = STATE(2815), + [sym_interpolated_string_expression] = STATE(3462), + [sym_member_access_expression] = STATE(2815), + [sym_object_creation_expression] = STATE(3497), + [sym_parenthesized_expression] = STATE(3497), + [sym__parenthesized_lvalue_expression] = STATE(2815), + [sym_lambda_expression] = STATE(3462), + [sym__lambda_expression_init] = STATE(7423), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3462), + [sym_anonymous_method_expression] = STATE(3462), + [sym_anonymous_object_creation_expression] = STATE(3462), + [sym_implicit_array_creation_expression] = STATE(3462), + [sym_implicit_object_creation_expression] = STATE(3462), + [sym_implicit_stackalloc_expression] = STATE(3462), + [sym_initializer_expression] = STATE(3462), + [sym_default_expression] = STATE(3462), + [sym_with_expression] = STATE(3462), + [sym_sizeof_expression] = STATE(3462), + [sym_typeof_expression] = STATE(3462), + [sym_makeref_expression] = STATE(3462), + [sym_ref_expression] = STATE(3462), + [sym_reftype_expression] = STATE(3462), + [sym_refvalue_expression] = STATE(3462), + [sym_stackalloc_expression] = STATE(3462), + [sym_range_expression] = STATE(3462), + [sym_tuple_expression] = STATE(2815), + [sym_literal] = STATE(3462), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3462), + [sym_preproc_if_in_attribute_list] = STATE(5583), + [sym_preproc_region] = STATE(861), + [sym_preproc_endregion] = STATE(861), + [sym_preproc_line] = STATE(861), + [sym_preproc_pragma] = STATE(861), + [sym_preproc_nullable] = STATE(861), + [sym_preproc_error] = STATE(861), + [sym_preproc_warning] = STATE(861), + [sym_preproc_define] = STATE(861), + [sym_preproc_undef] = STATE(861), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), [aux_sym__lambda_expression_init_repeat1] = STATE(3367), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1481), - [anon_sym_LPAREN] = ACTIONS(1575), - [anon_sym_ref] = ACTIONS(1577), - [anon_sym_LBRACE] = ACTIONS(1487), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1305), + [anon_sym_LPAREN] = ACTIONS(1307), + [anon_sym_ref] = ACTIONS(1309), + [anon_sym_LBRACE] = ACTIONS(1311), + [anon_sym_delegate] = ACTIONS(1313), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1501), + [anon_sym_new] = ACTIONS(1315), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1067), - [anon_sym_BANG] = ACTIONS(901), - [anon_sym_TILDE] = ACTIONS(901), - [anon_sym_PLUS_PLUS] = ACTIONS(901), - [anon_sym_DASH_DASH] = ACTIONS(901), + [anon_sym_checked] = ACTIONS(1317), + [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(903), - [anon_sym_DASH] = ACTIONS(903), - [anon_sym_STAR] = ACTIONS(905), - [anon_sym_CARET] = ACTIONS(901), - [anon_sym_AMP] = ACTIONS(901), - [anon_sym_this] = ACTIONS(83), + [anon_sym_PLUS] = ACTIONS(1069), + [anon_sym_DASH] = ACTIONS(1069), + [anon_sym_STAR] = ACTIONS(1319), + [anon_sym_CARET] = ACTIONS(1067), + [anon_sym_AMP] = ACTIONS(1067), + [anon_sym_this] = ACTIONS(1321), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), + [anon_sym_base] = ACTIONS(1323), [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1067), + [anon_sym_unchecked] = ACTIONS(1317), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1579), + [anon_sym_throw] = ACTIONS(1325), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1581), - [anon_sym_DOT_DOT] = ACTIONS(1583), + [anon_sym_await] = ACTIONS(1327), + [anon_sym_DOT_DOT] = ACTIONS(1329), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -187252,19 +187307,19 @@ static const uint16_t ts_parse_table[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(1331), [anon_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(1333), + [anon_sym___reftype] = ACTIONS(1335), + [anon_sym___refvalue] = ACTIONS(1337), [sym_null_literal] = ACTIONS(139), [anon_sym_SQUOTE] = ACTIONS(141), [sym_integer_literal] = ACTIONS(139), [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1089), + [aux_sym_preproc_if_token1] = ACTIONS(1339), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -187280,135 +187335,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), }, - [861] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(5910), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2247), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(4916), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3529), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3080), - [sym_postfix_unary_expression] = STATE(3111), - [sym_prefix_unary_expression] = STATE(3111), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6154), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3080), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3111), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3080), - [sym_member_access_expression] = STATE(2484), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3111), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7444), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(3080), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3080), - [sym_typeof_expression] = STATE(3080), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2484), - [sym_literal] = STATE(3080), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), - [sym_preproc_region] = STATE(861), - [sym_preproc_endregion] = STATE(861), - [sym_preproc_line] = STATE(861), - [sym_preproc_pragma] = STATE(861), - [sym_preproc_nullable] = STATE(861), - [sym_preproc_error] = STATE(861), - [sym_preproc_warning] = STATE(861), - [sym_preproc_define] = STATE(861), - [sym_preproc_undef] = STATE(861), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [862] = { + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(3182), + [sym__name] = STATE(5882), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2306), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2262), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(5183), + [sym_non_lvalue_expression] = STATE(4580), + [sym_lvalue_expression] = STATE(3534), + [sym__expression_statement_expression] = STATE(4573), + [sym_assignment_expression] = STATE(4581), + [sym_binary_expression] = STATE(4573), + [sym_postfix_unary_expression] = STATE(4581), + [sym_prefix_unary_expression] = STATE(4581), + [sym__pointer_indirection_expression] = STATE(3144), + [sym_query_expression] = STATE(4573), + [sym_from_clause] = STATE(6133), + [sym_conditional_expression] = STATE(4573), + [sym_conditional_access_expression] = STATE(4573), + [sym_as_expression] = STATE(4573), + [sym_is_expression] = STATE(4573), + [sym_is_pattern_expression] = STATE(4573), + [sym_cast_expression] = STATE(4573), + [sym_checked_expression] = STATE(4573), + [sym_invocation_expression] = STATE(4581), + [sym_switch_expression] = STATE(4573), + [sym_await_expression] = STATE(4581), + [sym_throw_expression] = STATE(4573), + [sym_element_access_expression] = STATE(3144), + [sym_interpolated_string_expression] = STATE(4573), + [sym_member_access_expression] = STATE(3144), + [sym_object_creation_expression] = STATE(4581), + [sym_parenthesized_expression] = STATE(4581), + [sym__parenthesized_lvalue_expression] = STATE(3144), + [sym_lambda_expression] = STATE(4573), + [sym__lambda_expression_init] = STATE(7592), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(4573), + [sym_anonymous_method_expression] = STATE(4573), + [sym_anonymous_object_creation_expression] = STATE(4573), + [sym_implicit_array_creation_expression] = STATE(4573), + [sym_implicit_object_creation_expression] = STATE(4573), + [sym_implicit_stackalloc_expression] = STATE(4573), + [sym_initializer_expression] = STATE(4573), + [sym_default_expression] = STATE(4573), + [sym_with_expression] = STATE(4573), + [sym_sizeof_expression] = STATE(4573), + [sym_typeof_expression] = STATE(4573), + [sym_makeref_expression] = STATE(4573), + [sym_ref_expression] = STATE(4573), + [sym_reftype_expression] = STATE(4573), + [sym_refvalue_expression] = STATE(4573), + [sym_stackalloc_expression] = STATE(4573), + [sym_range_expression] = STATE(4573), + [sym_tuple_expression] = STATE(3144), + [sym_literal] = STATE(4573), + [sym_character_literal] = STATE(4575), + [sym_string_literal] = STATE(4575), + [sym_raw_string_literal] = STATE(4575), + [sym_boolean_literal] = STATE(4575), + [sym_identifier] = STATE(2237), + [sym__reserved_identifier] = STATE(2229), + [sym_preproc_if_in_expression] = STATE(4573), + [sym_preproc_if_in_attribute_list] = STATE(5583), + [sym_preproc_region] = STATE(862), + [sym_preproc_endregion] = STATE(862), + [sym_preproc_line] = STATE(862), + [sym_preproc_pragma] = STATE(862), + [sym_preproc_nullable] = STATE(862), + [sym_preproc_error] = STATE(862), + [sym_preproc_warning] = STATE(862), + [sym_preproc_define] = STATE(862), + [sym_preproc_undef] = STATE(862), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3501), + [sym__identifier_token] = ACTIONS(1385), + [anon_sym_alias] = ACTIONS(1387), + [anon_sym_global] = ACTIONS(1387), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1389), + [anon_sym_LPAREN] = ACTIONS(1773), + [anon_sym_ref] = ACTIONS(1775), + [anon_sym_LBRACE] = ACTIONS(1395), + [anon_sym_delegate] = ACTIONS(1397), + [anon_sym_async] = ACTIONS(1045), + [anon_sym_file] = ACTIONS(1387), + [anon_sym_new] = ACTIONS(1465), + [anon_sym_where] = ACTIONS(1387), + [anon_sym_notnull] = ACTIONS(1387), + [anon_sym_unmanaged] = ACTIONS(1387), + [anon_sym_checked] = ACTIONS(1401), + [anon_sym_BANG] = ACTIONS(1779), + [anon_sym_TILDE] = ACTIONS(1779), + [anon_sym_PLUS_PLUS] = ACTIONS(1779), + [anon_sym_DASH_DASH] = ACTIONS(1779), + [anon_sym_true] = ACTIONS(1407), + [anon_sym_false] = ACTIONS(1407), + [anon_sym_PLUS] = ACTIONS(1777), + [anon_sym_DASH] = ACTIONS(1777), + [anon_sym_STAR] = ACTIONS(1471), + [anon_sym_CARET] = ACTIONS(1779), + [anon_sym_AMP] = ACTIONS(1779), + [anon_sym_this] = ACTIONS(1411), + [anon_sym_scoped] = ACTIONS(1413), + [anon_sym_base] = ACTIONS(1415), + [anon_sym_var] = ACTIONS(1417), + [sym_predefined_type] = ACTIONS(1419), + [anon_sym_unchecked] = ACTIONS(1401), + [anon_sym_yield] = ACTIONS(1387), + [anon_sym_default] = ACTIONS(1421), + [anon_sym_throw] = ACTIONS(1781), + [anon_sym_when] = ACTIONS(1387), + [anon_sym_await] = ACTIONS(1783), + [anon_sym_DOT_DOT] = ACTIONS(1785), + [anon_sym_from] = ACTIONS(1429), + [anon_sym_into] = ACTIONS(1387), + [anon_sym_join] = ACTIONS(1387), + [anon_sym_on] = ACTIONS(1387), + [anon_sym_equals] = ACTIONS(1387), + [anon_sym_let] = ACTIONS(1387), + [anon_sym_orderby] = ACTIONS(1387), + [anon_sym_ascending] = ACTIONS(1387), + [anon_sym_descending] = ACTIONS(1387), + [anon_sym_group] = ACTIONS(1387), + [anon_sym_by] = ACTIONS(1387), + [anon_sym_select] = ACTIONS(1387), + [anon_sym_stackalloc] = ACTIONS(1431), + [anon_sym_sizeof] = ACTIONS(1433), + [anon_sym_typeof] = ACTIONS(1435), + [anon_sym___makeref] = ACTIONS(1437), + [anon_sym___reftype] = ACTIONS(1439), + [anon_sym___refvalue] = ACTIONS(1441), + [sym_null_literal] = ACTIONS(1443), + [anon_sym_SQUOTE] = ACTIONS(1445), + [sym_integer_literal] = ACTIONS(1443), + [sym_real_literal] = ACTIONS(1447), + [anon_sym_DQUOTE] = ACTIONS(1449), + [sym_verbatim_string_literal] = ACTIONS(1447), + [aux_sym_preproc_if_token1] = ACTIONS(1451), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + [sym_interpolation_regular_start] = ACTIONS(1453), + [sym_interpolation_verbatim_start] = ACTIONS(1455), + [sym_interpolation_raw_start] = ACTIONS(1457), + [sym_raw_string_start] = ACTIONS(1459), + }, + [863] = { + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(5873), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2238), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(5184), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3468), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3102), + [sym_postfix_unary_expression] = STATE(3079), + [sym_prefix_unary_expression] = STATE(3079), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6134), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3102), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3079), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3102), + [sym_member_access_expression] = STATE(2472), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3079), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7309), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(3102), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3102), + [sym_typeof_expression] = STATE(3102), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2472), + [sym_literal] = STATE(3102), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), + [sym_preproc_region] = STATE(863), + [sym_preproc_endregion] = STATE(863), + [sym_preproc_line] = STATE(863), + [sym_preproc_pragma] = STATE(863), + [sym_preproc_nullable] = STATE(863), + [sym_preproc_error] = STATE(863), + [sym_preproc_warning] = STATE(863), + [sym_preproc_define] = STATE(863), + [sym_preproc_undef] = STATE(863), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1481), - [anon_sym_LPAREN] = ACTIONS(1575), - [anon_sym_ref] = ACTIONS(1577), - [anon_sym_LBRACE] = ACTIONS(1487), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1479), + [anon_sym_LPAREN] = ACTIONS(659), + [anon_sym_ref] = ACTIONS(663), + [anon_sym_LBRACE] = ACTIONS(1481), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1501), + [anon_sym_new] = ACTIONS(1059), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1067), - [anon_sym_BANG] = ACTIONS(901), - [anon_sym_TILDE] = ACTIONS(901), - [anon_sym_PLUS_PLUS] = ACTIONS(901), - [anon_sym_DASH_DASH] = ACTIONS(901), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(1485), + [anon_sym_TILDE] = ACTIONS(1485), + [anon_sym_PLUS_PLUS] = ACTIONS(1485), + [anon_sym_DASH_DASH] = ACTIONS(1485), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(903), - [anon_sym_DASH] = ACTIONS(903), - [anon_sym_STAR] = ACTIONS(905), - [anon_sym_CARET] = ACTIONS(901), - [anon_sym_AMP] = ACTIONS(901), + [anon_sym_PLUS] = ACTIONS(1483), + [anon_sym_DASH] = ACTIONS(1483), + [anon_sym_STAR] = ACTIONS(683), + [anon_sym_CARET] = ACTIONS(1485), + [anon_sym_AMP] = ACTIONS(1485), [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(1067), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1579), + [anon_sym_throw] = ACTIONS(1077), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1581), - [anon_sym_DOT_DOT] = ACTIONS(1583), + [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), @@ -187433,7 +187657,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(1089), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -187449,135 +187673,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), }, - [862] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(5910), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2247), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(4879), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3529), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3080), - [sym_postfix_unary_expression] = STATE(3111), - [sym_prefix_unary_expression] = STATE(3111), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6154), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3080), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3111), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3080), - [sym_member_access_expression] = STATE(2484), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3111), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7444), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(3080), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3080), - [sym_typeof_expression] = STATE(3080), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2484), - [sym_literal] = STATE(3080), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), - [sym_preproc_region] = STATE(862), - [sym_preproc_endregion] = STATE(862), - [sym_preproc_line] = STATE(862), - [sym_preproc_pragma] = STATE(862), - [sym_preproc_nullable] = STATE(862), - [sym_preproc_error] = STATE(862), - [sym_preproc_warning] = STATE(862), - [sym_preproc_define] = STATE(862), - [sym_preproc_undef] = STATE(862), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [864] = { + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(5873), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2238), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(4954), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3468), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3102), + [sym_postfix_unary_expression] = STATE(3079), + [sym_prefix_unary_expression] = STATE(3079), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6134), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3102), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3079), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3102), + [sym_member_access_expression] = STATE(2472), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3079), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7309), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(3102), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3102), + [sym_typeof_expression] = STATE(3102), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2472), + [sym_literal] = STATE(3102), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), + [sym_preproc_region] = STATE(864), + [sym_preproc_endregion] = STATE(864), + [sym_preproc_line] = STATE(864), + [sym_preproc_pragma] = STATE(864), + [sym_preproc_nullable] = STATE(864), + [sym_preproc_error] = STATE(864), + [sym_preproc_warning] = STATE(864), + [sym_preproc_define] = STATE(864), + [sym_preproc_undef] = STATE(864), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1481), - [anon_sym_LPAREN] = ACTIONS(1575), - [anon_sym_ref] = ACTIONS(1577), - [anon_sym_LBRACE] = ACTIONS(1487), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1479), + [anon_sym_LPAREN] = ACTIONS(659), + [anon_sym_ref] = ACTIONS(663), + [anon_sym_LBRACE] = ACTIONS(1481), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1501), + [anon_sym_new] = ACTIONS(1059), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1067), - [anon_sym_BANG] = ACTIONS(901), - [anon_sym_TILDE] = ACTIONS(901), - [anon_sym_PLUS_PLUS] = ACTIONS(901), - [anon_sym_DASH_DASH] = ACTIONS(901), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(1485), + [anon_sym_TILDE] = ACTIONS(1485), + [anon_sym_PLUS_PLUS] = ACTIONS(1485), + [anon_sym_DASH_DASH] = ACTIONS(1485), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(903), - [anon_sym_DASH] = ACTIONS(903), - [anon_sym_STAR] = ACTIONS(905), - [anon_sym_CARET] = ACTIONS(901), - [anon_sym_AMP] = ACTIONS(901), + [anon_sym_PLUS] = ACTIONS(1483), + [anon_sym_DASH] = ACTIONS(1483), + [anon_sym_STAR] = ACTIONS(683), + [anon_sym_CARET] = ACTIONS(1485), + [anon_sym_AMP] = ACTIONS(1485), [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(1067), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1579), + [anon_sym_throw] = ACTIONS(1077), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1581), - [anon_sym_DOT_DOT] = ACTIONS(1583), + [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), @@ -187602,7 +187826,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(1089), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -187618,304 +187842,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), }, - [863] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(5907), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2404), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(4245), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3140), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3080), - [sym_postfix_unary_expression] = STATE(3111), - [sym_prefix_unary_expression] = STATE(3111), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6183), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3080), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3111), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3080), - [sym_member_access_expression] = STATE(2484), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3111), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7703), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(3080), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3080), - [sym_typeof_expression] = STATE(3080), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2484), - [sym_literal] = STATE(3080), - [sym_character_literal] = STATE(3011), - [sym_string_literal] = STATE(3011), - [sym_raw_string_literal] = STATE(3011), - [sym_boolean_literal] = STATE(3011), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), - [sym_preproc_region] = STATE(863), - [sym_preproc_endregion] = STATE(863), - [sym_preproc_line] = STATE(863), - [sym_preproc_pragma] = STATE(863), - [sym_preproc_nullable] = STATE(863), - [sym_preproc_error] = STATE(863), - [sym_preproc_warning] = STATE(863), - [sym_preproc_define] = STATE(863), - [sym_preproc_undef] = STATE(863), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), - [sym__identifier_token] = ACTIONS(25), - [anon_sym_alias] = ACTIONS(29), - [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1481), - [anon_sym_LPAREN] = ACTIONS(2251), - [anon_sym_ref] = ACTIONS(2253), - [anon_sym_LBRACE] = ACTIONS(1487), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), - [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1937), - [anon_sym_where] = ACTIONS(29), - [anon_sym_notnull] = ACTIONS(29), - [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1067), - [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(1259), - [anon_sym_false] = ACTIONS(1259), - [anon_sym_PLUS] = ACTIONS(2255), - [anon_sym_DASH] = ACTIONS(2255), - [anon_sym_STAR] = ACTIONS(1943), - [anon_sym_CARET] = ACTIONS(2257), - [anon_sym_AMP] = ACTIONS(2257), - [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1267), - [anon_sym_unchecked] = ACTIONS(1067), - [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1269), - [anon_sym_throw] = ACTIONS(2259), - [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2261), - [anon_sym_DOT_DOT] = ACTIONS(2263), - [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(1279), - [anon_sym_typeof] = ACTIONS(1281), - [anon_sym___makeref] = ACTIONS(133), - [anon_sym___reftype] = ACTIONS(135), - [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(1289), - [anon_sym_SQUOTE] = ACTIONS(1291), - [sym_integer_literal] = ACTIONS(1289), - [sym_real_literal] = ACTIONS(1293), - [anon_sym_DQUOTE] = ACTIONS(1295), - [sym_verbatim_string_literal] = ACTIONS(1293), - [aux_sym_preproc_if_token1] = ACTIONS(1089), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1299), - [sym_interpolation_verbatim_start] = ACTIONS(1301), - [sym_interpolation_raw_start] = ACTIONS(1303), - [sym_raw_string_start] = ACTIONS(1305), - }, - [864] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(5910), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2247), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(4901), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3529), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3080), - [sym_postfix_unary_expression] = STATE(3111), - [sym_prefix_unary_expression] = STATE(3111), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6154), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3080), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3111), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3080), - [sym_member_access_expression] = STATE(2484), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3111), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7444), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(3080), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3080), - [sym_typeof_expression] = STATE(3080), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2484), - [sym_literal] = STATE(3080), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), - [sym_preproc_region] = STATE(864), - [sym_preproc_endregion] = STATE(864), - [sym_preproc_line] = STATE(864), - [sym_preproc_pragma] = STATE(864), - [sym_preproc_nullable] = STATE(864), - [sym_preproc_error] = STATE(864), - [sym_preproc_warning] = STATE(864), - [sym_preproc_define] = STATE(864), - [sym_preproc_undef] = STATE(864), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [865] = { + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(5152), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2196), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(4846), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3510), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3102), + [sym_postfix_unary_expression] = STATE(3079), + [sym_prefix_unary_expression] = STATE(3079), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6134), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3102), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3079), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3102), + [sym_member_access_expression] = STATE(2472), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3079), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7425), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(3102), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3102), + [sym_typeof_expression] = STATE(3102), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2472), + [sym_literal] = STATE(3102), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), + [sym_preproc_region] = STATE(865), + [sym_preproc_endregion] = STATE(865), + [sym_preproc_line] = STATE(865), + [sym_preproc_pragma] = STATE(865), + [sym_preproc_nullable] = STATE(865), + [sym_preproc_error] = STATE(865), + [sym_preproc_warning] = STATE(865), + [sym_preproc_define] = STATE(865), + [sym_preproc_undef] = STATE(865), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1481), - [anon_sym_LPAREN] = ACTIONS(1575), - [anon_sym_ref] = ACTIONS(1577), - [anon_sym_LBRACE] = ACTIONS(1487), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1479), + [anon_sym_LPAREN] = ACTIONS(43), + [anon_sym_ref] = ACTIONS(715), + [anon_sym_LBRACE] = ACTIONS(1481), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1501), + [anon_sym_new] = ACTIONS(1059), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1067), - [anon_sym_BANG] = ACTIONS(901), - [anon_sym_TILDE] = ACTIONS(901), - [anon_sym_PLUS_PLUS] = ACTIONS(901), - [anon_sym_DASH_DASH] = ACTIONS(901), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(1525), + [anon_sym_TILDE] = ACTIONS(1525), + [anon_sym_PLUS_PLUS] = ACTIONS(1525), + [anon_sym_DASH_DASH] = ACTIONS(1525), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(903), - [anon_sym_DASH] = ACTIONS(903), - [anon_sym_STAR] = ACTIONS(905), - [anon_sym_CARET] = ACTIONS(901), - [anon_sym_AMP] = ACTIONS(901), + [anon_sym_PLUS] = ACTIONS(1523), + [anon_sym_DASH] = ACTIONS(1523), + [anon_sym_STAR] = ACTIONS(81), + [anon_sym_CARET] = ACTIONS(1525), + [anon_sym_AMP] = ACTIONS(1525), [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(1067), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1579), + [anon_sym_throw] = ACTIONS(1527), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1581), - [anon_sym_DOT_DOT] = ACTIONS(1583), + [anon_sym_await] = ACTIONS(1529), + [anon_sym_DOT_DOT] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -187940,7 +187995,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(1089), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -187956,254 +188011,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), }, - [865] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2914), - [sym__name] = STATE(5885), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2357), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(3701), - [sym_non_lvalue_expression] = STATE(3880), - [sym_lvalue_expression] = STATE(2986), - [sym__expression_statement_expression] = STATE(3873), - [sym_assignment_expression] = STATE(3881), - [sym_binary_expression] = STATE(3873), - [sym_postfix_unary_expression] = STATE(3881), - [sym_prefix_unary_expression] = STATE(3881), - [sym__pointer_indirection_expression] = STATE(2913), - [sym_query_expression] = STATE(3873), - [sym_from_clause] = STATE(6168), - [sym_conditional_expression] = STATE(3873), - [sym_conditional_access_expression] = STATE(3873), - [sym_as_expression] = STATE(3873), - [sym_is_expression] = STATE(3873), - [sym_is_pattern_expression] = STATE(3873), - [sym_cast_expression] = STATE(3873), - [sym_checked_expression] = STATE(3873), - [sym_invocation_expression] = STATE(3881), - [sym_switch_expression] = STATE(3873), - [sym_await_expression] = STATE(3881), - [sym_throw_expression] = STATE(3873), - [sym_element_access_expression] = STATE(2913), - [sym_interpolated_string_expression] = STATE(3873), - [sym_member_access_expression] = STATE(2913), - [sym_object_creation_expression] = STATE(3881), - [sym_parenthesized_expression] = STATE(3881), - [sym__parenthesized_lvalue_expression] = STATE(2913), - [sym_lambda_expression] = STATE(3873), - [sym__lambda_expression_init] = STATE(7587), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3873), - [sym_anonymous_method_expression] = STATE(3873), - [sym_anonymous_object_creation_expression] = STATE(3873), - [sym_implicit_array_creation_expression] = STATE(3873), - [sym_implicit_object_creation_expression] = STATE(3873), - [sym_implicit_stackalloc_expression] = STATE(3873), - [sym_initializer_expression] = STATE(3873), - [sym_default_expression] = STATE(3873), - [sym_with_expression] = STATE(3873), - [sym_sizeof_expression] = STATE(3873), - [sym_typeof_expression] = STATE(3873), - [sym_makeref_expression] = STATE(3873), - [sym_ref_expression] = STATE(3873), - [sym_reftype_expression] = STATE(3873), - [sym_refvalue_expression] = STATE(3873), - [sym_stackalloc_expression] = STATE(3873), - [sym_range_expression] = STATE(3873), - [sym_tuple_expression] = STATE(2913), - [sym_literal] = STATE(3873), - [sym_character_literal] = STATE(3877), - [sym_string_literal] = STATE(3877), - [sym_raw_string_literal] = STATE(3877), - [sym_boolean_literal] = STATE(3877), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3873), - [sym_preproc_if_in_attribute_list] = STATE(5576), - [sym_preproc_region] = STATE(865), - [sym_preproc_endregion] = STATE(865), - [sym_preproc_line] = STATE(865), - [sym_preproc_pragma] = STATE(865), - [sym_preproc_nullable] = STATE(865), - [sym_preproc_error] = STATE(865), - [sym_preproc_warning] = STATE(865), - [sym_preproc_define] = STATE(865), - [sym_preproc_undef] = STATE(865), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3382), - [sym__identifier_token] = ACTIONS(25), - [anon_sym_alias] = ACTIONS(29), - [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1627), - [anon_sym_LPAREN] = ACTIONS(2079), - [anon_sym_ref] = ACTIONS(2081), - [anon_sym_LBRACE] = ACTIONS(1633), - [anon_sym_delegate] = ACTIONS(1635), - [anon_sym_async] = ACTIONS(1047), - [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1731), - [anon_sym_where] = ACTIONS(29), - [anon_sym_notnull] = ACTIONS(29), - [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1639), - [anon_sym_BANG] = ACTIONS(2085), - [anon_sym_TILDE] = ACTIONS(2085), - [anon_sym_PLUS_PLUS] = ACTIONS(2085), - [anon_sym_DASH_DASH] = ACTIONS(2085), - [anon_sym_true] = ACTIONS(1645), - [anon_sym_false] = ACTIONS(1645), - [anon_sym_PLUS] = ACTIONS(2083), - [anon_sym_DASH] = ACTIONS(2083), - [anon_sym_STAR] = ACTIONS(1737), - [anon_sym_CARET] = ACTIONS(2085), - [anon_sym_AMP] = ACTIONS(2085), - [anon_sym_this] = ACTIONS(1649), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1651), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1653), - [anon_sym_unchecked] = ACTIONS(1639), - [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1655), - [anon_sym_throw] = ACTIONS(2087), - [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2089), - [anon_sym_DOT_DOT] = ACTIONS(2091), - [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(1663), - [anon_sym_sizeof] = ACTIONS(1665), - [anon_sym_typeof] = ACTIONS(1667), - [anon_sym___makeref] = ACTIONS(1669), - [anon_sym___reftype] = ACTIONS(1671), - [anon_sym___refvalue] = ACTIONS(1673), - [sym_null_literal] = ACTIONS(1675), - [anon_sym_SQUOTE] = ACTIONS(1677), - [sym_integer_literal] = ACTIONS(1675), - [sym_real_literal] = ACTIONS(1679), - [anon_sym_DQUOTE] = ACTIONS(1681), - [sym_verbatim_string_literal] = ACTIONS(1679), - [aux_sym_preproc_if_token1] = ACTIONS(1683), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1685), - [sym_interpolation_verbatim_start] = ACTIONS(1687), - [sym_interpolation_raw_start] = ACTIONS(1689), - [sym_raw_string_start] = ACTIONS(1691), - }, [866] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2420), - [sym__name] = STATE(5911), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2197), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(4489), - [sym_non_lvalue_expression] = STATE(3066), - [sym_lvalue_expression] = STATE(3327), - [sym__expression_statement_expression] = STATE(3006), - [sym_assignment_expression] = STATE(3020), - [sym_binary_expression] = STATE(3006), - [sym_postfix_unary_expression] = STATE(3020), - [sym_prefix_unary_expression] = STATE(3020), - [sym__pointer_indirection_expression] = STATE(2423), - [sym_query_expression] = STATE(3006), - [sym_from_clause] = STATE(6159), - [sym_conditional_expression] = STATE(3006), - [sym_conditional_access_expression] = STATE(3006), - [sym_as_expression] = STATE(3006), - [sym_is_expression] = STATE(3006), - [sym_is_pattern_expression] = STATE(3006), - [sym_cast_expression] = STATE(3006), - [sym_checked_expression] = STATE(3006), - [sym_invocation_expression] = STATE(3020), - [sym_switch_expression] = STATE(3006), - [sym_await_expression] = STATE(3020), - [sym_throw_expression] = STATE(3006), - [sym_element_access_expression] = STATE(2423), - [sym_interpolated_string_expression] = STATE(3006), - [sym_member_access_expression] = STATE(2423), - [sym_object_creation_expression] = STATE(3020), - [sym_parenthesized_expression] = STATE(3020), - [sym__parenthesized_lvalue_expression] = STATE(2423), - [sym_lambda_expression] = STATE(3006), - [sym__lambda_expression_init] = STATE(7674), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3006), - [sym_anonymous_method_expression] = STATE(3006), - [sym_anonymous_object_creation_expression] = STATE(3006), - [sym_implicit_array_creation_expression] = STATE(3006), - [sym_implicit_object_creation_expression] = STATE(3006), - [sym_implicit_stackalloc_expression] = STATE(3006), - [sym_initializer_expression] = STATE(3006), - [sym_default_expression] = STATE(3006), - [sym_with_expression] = STATE(3006), - [sym_sizeof_expression] = STATE(3006), - [sym_typeof_expression] = STATE(3006), - [sym_makeref_expression] = STATE(3006), - [sym_ref_expression] = STATE(3006), - [sym_reftype_expression] = STATE(3006), - [sym_refvalue_expression] = STATE(3006), - [sym_stackalloc_expression] = STATE(3006), - [sym_range_expression] = STATE(3006), - [sym_tuple_expression] = STATE(2423), - [sym_literal] = STATE(3006), - [sym_character_literal] = STATE(3011), - [sym_string_literal] = STATE(3011), - [sym_raw_string_literal] = STATE(3011), - [sym_boolean_literal] = STATE(3011), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3006), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(5873), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2238), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(5148), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3468), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3102), + [sym_postfix_unary_expression] = STATE(3079), + [sym_prefix_unary_expression] = STATE(3079), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6134), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3102), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3079), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3102), + [sym_member_access_expression] = STATE(2472), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3079), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7309), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(3102), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3102), + [sym_typeof_expression] = STATE(3102), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2472), + [sym_literal] = STATE(3102), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(866), [sym_preproc_endregion] = STATE(866), [sym_preproc_line] = STATE(866), @@ -188213,47 +188099,47 @@ 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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3440), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1241), - [anon_sym_LPAREN] = ACTIONS(1509), - [anon_sym_ref] = ACTIONS(1511), - [anon_sym_LBRACE] = ACTIONS(1247), - [anon_sym_delegate] = ACTIONS(1249), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1479), + [anon_sym_LPAREN] = ACTIONS(659), + [anon_sym_ref] = ACTIONS(663), + [anon_sym_LBRACE] = ACTIONS(1481), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1251), + [anon_sym_new] = ACTIONS(1059), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1253), - [anon_sym_BANG] = ACTIONS(1515), - [anon_sym_TILDE] = ACTIONS(1515), - [anon_sym_PLUS_PLUS] = ACTIONS(1515), - [anon_sym_DASH_DASH] = ACTIONS(1515), - [anon_sym_true] = ACTIONS(1259), - [anon_sym_false] = ACTIONS(1259), - [anon_sym_PLUS] = ACTIONS(1513), - [anon_sym_DASH] = ACTIONS(1513), - [anon_sym_STAR] = ACTIONS(1517), - [anon_sym_CARET] = ACTIONS(1515), - [anon_sym_AMP] = ACTIONS(1515), - [anon_sym_this] = ACTIONS(1263), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(1485), + [anon_sym_TILDE] = ACTIONS(1485), + [anon_sym_PLUS_PLUS] = ACTIONS(1485), + [anon_sym_DASH_DASH] = ACTIONS(1485), + [anon_sym_true] = ACTIONS(77), + [anon_sym_false] = ACTIONS(77), + [anon_sym_PLUS] = ACTIONS(1483), + [anon_sym_DASH] = ACTIONS(1483), + [anon_sym_STAR] = ACTIONS(683), + [anon_sym_CARET] = ACTIONS(1485), + [anon_sym_AMP] = ACTIONS(1485), + [anon_sym_this] = ACTIONS(83), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1265), + [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1267), - [anon_sym_unchecked] = ACTIONS(1253), + [sym_predefined_type] = ACTIONS(91), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1269), - [anon_sym_throw] = ACTIONS(1519), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(1077), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1521), - [anon_sym_DOT_DOT] = ACTIONS(1523), + [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), @@ -188266,19 +188152,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1277), - [anon_sym_sizeof] = ACTIONS(1279), - [anon_sym_typeof] = ACTIONS(1281), - [anon_sym___makeref] = ACTIONS(1283), - [anon_sym___reftype] = ACTIONS(1285), - [anon_sym___refvalue] = ACTIONS(1287), - [sym_null_literal] = ACTIONS(1289), - [anon_sym_SQUOTE] = ACTIONS(1291), - [sym_integer_literal] = ACTIONS(1289), - [sym_real_literal] = ACTIONS(1293), - [anon_sym_DQUOTE] = ACTIONS(1295), - [sym_verbatim_string_literal] = ACTIONS(1293), - [aux_sym_preproc_if_token1] = ACTIONS(1297), + [anon_sym_stackalloc] = ACTIONS(127), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_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), @@ -188289,90 +188175,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1299), - [sym_interpolation_verbatim_start] = ACTIONS(1301), - [sym_interpolation_raw_start] = ACTIONS(1303), - [sym_raw_string_start] = ACTIONS(1305), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [sym_interpolation_raw_start] = ACTIONS(155), + [sym_raw_string_start] = ACTIONS(157), }, [867] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(5907), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2404), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(4246), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3140), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3080), - [sym_postfix_unary_expression] = STATE(3111), - [sym_prefix_unary_expression] = STATE(3111), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6183), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3080), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3111), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3080), - [sym_member_access_expression] = STATE(2484), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3111), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7703), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(3080), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3080), - [sym_typeof_expression] = STATE(3080), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2484), - [sym_literal] = STATE(3080), - [sym_character_literal] = STATE(3011), - [sym_string_literal] = STATE(3011), - [sym_raw_string_literal] = STATE(3011), - [sym_boolean_literal] = STATE(3011), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(5873), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2238), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(5149), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3468), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3102), + [sym_postfix_unary_expression] = STATE(3079), + [sym_prefix_unary_expression] = STATE(3079), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6134), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3102), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3079), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3102), + [sym_member_access_expression] = STATE(2472), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3079), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7309), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(3102), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3102), + [sym_typeof_expression] = STATE(3102), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2472), + [sym_literal] = STATE(3102), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(867), [sym_preproc_endregion] = STATE(867), [sym_preproc_line] = STATE(867), @@ -188382,47 +188268,47 @@ 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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1481), - [anon_sym_LPAREN] = ACTIONS(2251), - [anon_sym_ref] = ACTIONS(2253), - [anon_sym_LBRACE] = ACTIONS(1487), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1479), + [anon_sym_LPAREN] = ACTIONS(659), + [anon_sym_ref] = ACTIONS(663), + [anon_sym_LBRACE] = ACTIONS(1481), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1937), + [anon_sym_new] = ACTIONS(1059), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1067), - [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(1259), - [anon_sym_false] = ACTIONS(1259), - [anon_sym_PLUS] = ACTIONS(2255), - [anon_sym_DASH] = ACTIONS(2255), - [anon_sym_STAR] = ACTIONS(1943), - [anon_sym_CARET] = ACTIONS(2257), - [anon_sym_AMP] = ACTIONS(2257), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(1485), + [anon_sym_TILDE] = ACTIONS(1485), + [anon_sym_PLUS_PLUS] = ACTIONS(1485), + [anon_sym_DASH_DASH] = ACTIONS(1485), + [anon_sym_true] = ACTIONS(77), + [anon_sym_false] = ACTIONS(77), + [anon_sym_PLUS] = ACTIONS(1483), + [anon_sym_DASH] = ACTIONS(1483), + [anon_sym_STAR] = ACTIONS(683), + [anon_sym_CARET] = ACTIONS(1485), + [anon_sym_AMP] = ACTIONS(1485), [anon_sym_this] = ACTIONS(83), [anon_sym_scoped] = ACTIONS(85), [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1267), - [anon_sym_unchecked] = ACTIONS(1067), + [sym_predefined_type] = ACTIONS(91), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1269), - [anon_sym_throw] = ACTIONS(2259), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(1077), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2261), - [anon_sym_DOT_DOT] = ACTIONS(2263), + [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), @@ -188436,18 +188322,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(1279), - [anon_sym_typeof] = ACTIONS(1281), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), [anon_sym___makeref] = ACTIONS(133), [anon_sym___reftype] = ACTIONS(135), [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(1289), - [anon_sym_SQUOTE] = ACTIONS(1291), - [sym_integer_literal] = ACTIONS(1289), - [sym_real_literal] = ACTIONS(1293), - [anon_sym_DQUOTE] = ACTIONS(1295), - [sym_verbatim_string_literal] = ACTIONS(1293), - [aux_sym_preproc_if_token1] = ACTIONS(1089), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_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), @@ -188458,90 +188344,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1299), - [sym_interpolation_verbatim_start] = ACTIONS(1301), - [sym_interpolation_raw_start] = ACTIONS(1303), - [sym_raw_string_start] = ACTIONS(1305), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [sym_interpolation_raw_start] = ACTIONS(155), + [sym_raw_string_start] = ACTIONS(157), }, [868] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(5910), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2247), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(3519), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3529), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3080), - [sym_postfix_unary_expression] = STATE(3111), - [sym_prefix_unary_expression] = STATE(3111), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6154), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3080), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3111), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3080), - [sym_member_access_expression] = STATE(2484), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3111), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7444), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(3080), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3080), - [sym_typeof_expression] = STATE(3080), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2484), - [sym_literal] = STATE(3080), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(5873), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2238), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(4651), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3468), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3102), + [sym_postfix_unary_expression] = STATE(3079), + [sym_prefix_unary_expression] = STATE(3079), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6134), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3102), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3079), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3102), + [sym_member_access_expression] = STATE(2472), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3079), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7309), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(3102), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3102), + [sym_typeof_expression] = STATE(3102), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2472), + [sym_literal] = STATE(3102), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(868), [sym_preproc_endregion] = STATE(868), [sym_preproc_line] = STATE(868), @@ -188551,47 +188437,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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1481), - [anon_sym_LPAREN] = ACTIONS(1575), - [anon_sym_ref] = ACTIONS(1577), - [anon_sym_LBRACE] = ACTIONS(1487), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1479), + [anon_sym_LPAREN] = ACTIONS(659), + [anon_sym_ref] = ACTIONS(663), + [anon_sym_LBRACE] = ACTIONS(1481), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1501), + [anon_sym_new] = ACTIONS(1059), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1067), - [anon_sym_BANG] = ACTIONS(901), - [anon_sym_TILDE] = ACTIONS(901), - [anon_sym_PLUS_PLUS] = ACTIONS(901), - [anon_sym_DASH_DASH] = ACTIONS(901), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(1485), + [anon_sym_TILDE] = ACTIONS(1485), + [anon_sym_PLUS_PLUS] = ACTIONS(1485), + [anon_sym_DASH_DASH] = ACTIONS(1485), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(903), - [anon_sym_DASH] = ACTIONS(903), - [anon_sym_STAR] = ACTIONS(905), - [anon_sym_CARET] = ACTIONS(901), - [anon_sym_AMP] = ACTIONS(901), + [anon_sym_PLUS] = ACTIONS(1483), + [anon_sym_DASH] = ACTIONS(1483), + [anon_sym_STAR] = ACTIONS(683), + [anon_sym_CARET] = ACTIONS(1485), + [anon_sym_AMP] = ACTIONS(1485), [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(1067), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1579), + [anon_sym_throw] = ACTIONS(1077), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1581), - [anon_sym_DOT_DOT] = ACTIONS(1583), + [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), @@ -188616,7 +188502,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(1089), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -188633,84 +188519,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [869] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2420), - [sym__name] = STATE(5911), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2197), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(4490), - [sym_non_lvalue_expression] = STATE(3066), - [sym_lvalue_expression] = STATE(3327), - [sym__expression_statement_expression] = STATE(3006), - [sym_assignment_expression] = STATE(3020), - [sym_binary_expression] = STATE(3006), - [sym_postfix_unary_expression] = STATE(3020), - [sym_prefix_unary_expression] = STATE(3020), - [sym__pointer_indirection_expression] = STATE(2423), - [sym_query_expression] = STATE(3006), - [sym_from_clause] = STATE(6159), - [sym_conditional_expression] = STATE(3006), - [sym_conditional_access_expression] = STATE(3006), - [sym_as_expression] = STATE(3006), - [sym_is_expression] = STATE(3006), - [sym_is_pattern_expression] = STATE(3006), - [sym_cast_expression] = STATE(3006), - [sym_checked_expression] = STATE(3006), - [sym_invocation_expression] = STATE(3020), - [sym_switch_expression] = STATE(3006), - [sym_await_expression] = STATE(3020), - [sym_throw_expression] = STATE(3006), - [sym_element_access_expression] = STATE(2423), - [sym_interpolated_string_expression] = STATE(3006), - [sym_member_access_expression] = STATE(2423), - [sym_object_creation_expression] = STATE(3020), - [sym_parenthesized_expression] = STATE(3020), - [sym__parenthesized_lvalue_expression] = STATE(2423), - [sym_lambda_expression] = STATE(3006), - [sym__lambda_expression_init] = STATE(7674), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3006), - [sym_anonymous_method_expression] = STATE(3006), - [sym_anonymous_object_creation_expression] = STATE(3006), - [sym_implicit_array_creation_expression] = STATE(3006), - [sym_implicit_object_creation_expression] = STATE(3006), - [sym_implicit_stackalloc_expression] = STATE(3006), - [sym_initializer_expression] = STATE(3006), - [sym_default_expression] = STATE(3006), - [sym_with_expression] = STATE(3006), - [sym_sizeof_expression] = STATE(3006), - [sym_typeof_expression] = STATE(3006), - [sym_makeref_expression] = STATE(3006), - [sym_ref_expression] = STATE(3006), - [sym_reftype_expression] = STATE(3006), - [sym_refvalue_expression] = STATE(3006), - [sym_stackalloc_expression] = STATE(3006), - [sym_range_expression] = STATE(3006), - [sym_tuple_expression] = STATE(2423), - [sym_literal] = STATE(3006), - [sym_character_literal] = STATE(3011), - [sym_string_literal] = STATE(3011), - [sym_raw_string_literal] = STATE(3011), - [sym_boolean_literal] = STATE(3011), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3006), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(5873), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2238), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(5469), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3468), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3102), + [sym_postfix_unary_expression] = STATE(3079), + [sym_prefix_unary_expression] = STATE(3079), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6134), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3102), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3079), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3102), + [sym_member_access_expression] = STATE(2472), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3079), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7309), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(3102), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3102), + [sym_typeof_expression] = STATE(3102), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2472), + [sym_literal] = STATE(3102), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(869), [sym_preproc_endregion] = STATE(869), [sym_preproc_line] = STATE(869), @@ -188720,47 +188606,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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3440), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1241), - [anon_sym_LPAREN] = ACTIONS(1509), - [anon_sym_ref] = ACTIONS(1511), - [anon_sym_LBRACE] = ACTIONS(1247), - [anon_sym_delegate] = ACTIONS(1249), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1479), + [anon_sym_LPAREN] = ACTIONS(659), + [anon_sym_ref] = ACTIONS(663), + [anon_sym_LBRACE] = ACTIONS(1481), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1251), + [anon_sym_new] = ACTIONS(1059), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1253), - [anon_sym_BANG] = ACTIONS(1515), - [anon_sym_TILDE] = ACTIONS(1515), - [anon_sym_PLUS_PLUS] = ACTIONS(1515), - [anon_sym_DASH_DASH] = ACTIONS(1515), - [anon_sym_true] = ACTIONS(1259), - [anon_sym_false] = ACTIONS(1259), - [anon_sym_PLUS] = ACTIONS(1513), - [anon_sym_DASH] = ACTIONS(1513), - [anon_sym_STAR] = ACTIONS(1517), - [anon_sym_CARET] = ACTIONS(1515), - [anon_sym_AMP] = ACTIONS(1515), - [anon_sym_this] = ACTIONS(1263), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(1485), + [anon_sym_TILDE] = ACTIONS(1485), + [anon_sym_PLUS_PLUS] = ACTIONS(1485), + [anon_sym_DASH_DASH] = ACTIONS(1485), + [anon_sym_true] = ACTIONS(77), + [anon_sym_false] = ACTIONS(77), + [anon_sym_PLUS] = ACTIONS(1483), + [anon_sym_DASH] = ACTIONS(1483), + [anon_sym_STAR] = ACTIONS(683), + [anon_sym_CARET] = ACTIONS(1485), + [anon_sym_AMP] = ACTIONS(1485), + [anon_sym_this] = ACTIONS(83), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1265), + [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1267), - [anon_sym_unchecked] = ACTIONS(1253), + [sym_predefined_type] = ACTIONS(91), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1269), - [anon_sym_throw] = ACTIONS(1519), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(1077), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1521), - [anon_sym_DOT_DOT] = ACTIONS(1523), + [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), @@ -188773,19 +188659,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1277), - [anon_sym_sizeof] = ACTIONS(1279), - [anon_sym_typeof] = ACTIONS(1281), - [anon_sym___makeref] = ACTIONS(1283), - [anon_sym___reftype] = ACTIONS(1285), - [anon_sym___refvalue] = ACTIONS(1287), - [sym_null_literal] = ACTIONS(1289), - [anon_sym_SQUOTE] = ACTIONS(1291), - [sym_integer_literal] = ACTIONS(1289), - [sym_real_literal] = ACTIONS(1293), - [anon_sym_DQUOTE] = ACTIONS(1295), - [sym_verbatim_string_literal] = ACTIONS(1293), - [aux_sym_preproc_if_token1] = ACTIONS(1297), + [anon_sym_stackalloc] = ACTIONS(127), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_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), @@ -188796,90 +188682,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1299), - [sym_interpolation_verbatim_start] = ACTIONS(1301), - [sym_interpolation_raw_start] = ACTIONS(1303), - [sym_raw_string_start] = ACTIONS(1305), + [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(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(5907), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2404), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(4247), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3140), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3080), - [sym_postfix_unary_expression] = STATE(3111), - [sym_prefix_unary_expression] = STATE(3111), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6183), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3080), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3111), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3080), - [sym_member_access_expression] = STATE(2484), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3111), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7703), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(3080), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3080), - [sym_typeof_expression] = STATE(3080), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2484), - [sym_literal] = STATE(3080), - [sym_character_literal] = STATE(3011), - [sym_string_literal] = STATE(3011), - [sym_raw_string_literal] = STATE(3011), - [sym_boolean_literal] = STATE(3011), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(5873), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2238), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(5185), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3468), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3102), + [sym_postfix_unary_expression] = STATE(3079), + [sym_prefix_unary_expression] = STATE(3079), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6134), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3102), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3079), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3102), + [sym_member_access_expression] = STATE(2472), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3079), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7309), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(3102), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3102), + [sym_typeof_expression] = STATE(3102), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2472), + [sym_literal] = STATE(3102), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(870), [sym_preproc_endregion] = STATE(870), [sym_preproc_line] = STATE(870), @@ -188889,47 +188775,47 @@ 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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1481), - [anon_sym_LPAREN] = ACTIONS(2251), - [anon_sym_ref] = ACTIONS(2253), - [anon_sym_LBRACE] = ACTIONS(1487), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1479), + [anon_sym_LPAREN] = ACTIONS(659), + [anon_sym_ref] = ACTIONS(663), + [anon_sym_LBRACE] = ACTIONS(1481), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1937), + [anon_sym_new] = ACTIONS(1059), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1067), - [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(1259), - [anon_sym_false] = ACTIONS(1259), - [anon_sym_PLUS] = ACTIONS(2255), - [anon_sym_DASH] = ACTIONS(2255), - [anon_sym_STAR] = ACTIONS(1943), - [anon_sym_CARET] = ACTIONS(2257), - [anon_sym_AMP] = ACTIONS(2257), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(1485), + [anon_sym_TILDE] = ACTIONS(1485), + [anon_sym_PLUS_PLUS] = ACTIONS(1485), + [anon_sym_DASH_DASH] = ACTIONS(1485), + [anon_sym_true] = ACTIONS(77), + [anon_sym_false] = ACTIONS(77), + [anon_sym_PLUS] = ACTIONS(1483), + [anon_sym_DASH] = ACTIONS(1483), + [anon_sym_STAR] = ACTIONS(683), + [anon_sym_CARET] = ACTIONS(1485), + [anon_sym_AMP] = ACTIONS(1485), [anon_sym_this] = ACTIONS(83), [anon_sym_scoped] = ACTIONS(85), [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1267), - [anon_sym_unchecked] = ACTIONS(1067), + [sym_predefined_type] = ACTIONS(91), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1269), - [anon_sym_throw] = ACTIONS(2259), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(1077), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2261), - [anon_sym_DOT_DOT] = ACTIONS(2263), + [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), @@ -188943,18 +188829,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(1279), - [anon_sym_typeof] = ACTIONS(1281), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), [anon_sym___makeref] = ACTIONS(133), [anon_sym___reftype] = ACTIONS(135), [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(1289), - [anon_sym_SQUOTE] = ACTIONS(1291), - [sym_integer_literal] = ACTIONS(1289), - [sym_real_literal] = ACTIONS(1293), - [anon_sym_DQUOTE] = ACTIONS(1295), - [sym_verbatim_string_literal] = ACTIONS(1293), - [aux_sym_preproc_if_token1] = ACTIONS(1089), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_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), @@ -188965,90 +188851,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1299), - [sym_interpolation_verbatim_start] = ACTIONS(1301), - [sym_interpolation_raw_start] = ACTIONS(1303), - [sym_raw_string_start] = ACTIONS(1305), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [sym_interpolation_raw_start] = ACTIONS(155), + [sym_raw_string_start] = ACTIONS(157), }, [871] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(5907), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2404), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(4248), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3140), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3080), - [sym_postfix_unary_expression] = STATE(3111), - [sym_prefix_unary_expression] = STATE(3111), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6183), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3080), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3111), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3080), - [sym_member_access_expression] = STATE(2484), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3111), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7703), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(3080), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3080), - [sym_typeof_expression] = STATE(3080), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2484), - [sym_literal] = STATE(3080), - [sym_character_literal] = STATE(3011), - [sym_string_literal] = STATE(3011), - [sym_raw_string_literal] = STATE(3011), - [sym_boolean_literal] = STATE(3011), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2416), + [sym__name] = STATE(5900), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2193), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(4412), + [sym_non_lvalue_expression] = STATE(3040), + [sym_lvalue_expression] = STATE(3231), + [sym__expression_statement_expression] = STATE(3035), + [sym_assignment_expression] = STATE(3043), + [sym_binary_expression] = STATE(3035), + [sym_postfix_unary_expression] = STATE(3043), + [sym_prefix_unary_expression] = STATE(3043), + [sym__pointer_indirection_expression] = STATE(2415), + [sym_query_expression] = STATE(3035), + [sym_from_clause] = STATE(6149), + [sym_conditional_expression] = STATE(3035), + [sym_conditional_access_expression] = STATE(3035), + [sym_as_expression] = STATE(3035), + [sym_is_expression] = STATE(3035), + [sym_is_pattern_expression] = STATE(3035), + [sym_cast_expression] = STATE(3035), + [sym_checked_expression] = STATE(3035), + [sym_invocation_expression] = STATE(3043), + [sym_switch_expression] = STATE(3035), + [sym_await_expression] = STATE(3043), + [sym_throw_expression] = STATE(3035), + [sym_element_access_expression] = STATE(2415), + [sym_interpolated_string_expression] = STATE(3035), + [sym_member_access_expression] = STATE(2415), + [sym_object_creation_expression] = STATE(3043), + [sym_parenthesized_expression] = STATE(3043), + [sym__parenthesized_lvalue_expression] = STATE(2415), + [sym_lambda_expression] = STATE(3035), + [sym__lambda_expression_init] = STATE(7405), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3035), + [sym_anonymous_method_expression] = STATE(3035), + [sym_anonymous_object_creation_expression] = STATE(3035), + [sym_implicit_array_creation_expression] = STATE(3035), + [sym_implicit_object_creation_expression] = STATE(3035), + [sym_implicit_stackalloc_expression] = STATE(3035), + [sym_initializer_expression] = STATE(3035), + [sym_default_expression] = STATE(3035), + [sym_with_expression] = STATE(3035), + [sym_sizeof_expression] = STATE(3035), + [sym_typeof_expression] = STATE(3035), + [sym_makeref_expression] = STATE(3035), + [sym_ref_expression] = STATE(3035), + [sym_reftype_expression] = STATE(3035), + [sym_refvalue_expression] = STATE(3035), + [sym_stackalloc_expression] = STATE(3035), + [sym_range_expression] = STATE(3035), + [sym_tuple_expression] = STATE(2415), + [sym_literal] = STATE(3035), + [sym_character_literal] = STATE(3037), + [sym_string_literal] = STATE(3037), + [sym_raw_string_literal] = STATE(3037), + [sym_boolean_literal] = STATE(3037), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3035), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(871), [sym_preproc_endregion] = STATE(871), [sym_preproc_line] = STATE(871), @@ -189058,47 +188944,47 @@ 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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3455), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1481), - [anon_sym_LPAREN] = ACTIONS(2251), - [anon_sym_ref] = ACTIONS(2253), - [anon_sym_LBRACE] = ACTIONS(1487), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1239), + [anon_sym_LPAREN] = ACTIONS(1495), + [anon_sym_ref] = ACTIONS(1497), + [anon_sym_LBRACE] = ACTIONS(1245), + [anon_sym_delegate] = ACTIONS(1247), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1937), + [anon_sym_new] = ACTIONS(1249), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1067), - [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(1259), - [anon_sym_false] = ACTIONS(1259), - [anon_sym_PLUS] = ACTIONS(2255), - [anon_sym_DASH] = ACTIONS(2255), - [anon_sym_STAR] = ACTIONS(1943), - [anon_sym_CARET] = ACTIONS(2257), - [anon_sym_AMP] = ACTIONS(2257), - [anon_sym_this] = ACTIONS(83), + [anon_sym_checked] = ACTIONS(1251), + [anon_sym_BANG] = ACTIONS(1501), + [anon_sym_TILDE] = ACTIONS(1501), + [anon_sym_PLUS_PLUS] = ACTIONS(1501), + [anon_sym_DASH_DASH] = ACTIONS(1501), + [anon_sym_true] = ACTIONS(1257), + [anon_sym_false] = ACTIONS(1257), + [anon_sym_PLUS] = ACTIONS(1499), + [anon_sym_DASH] = ACTIONS(1499), + [anon_sym_STAR] = ACTIONS(1503), + [anon_sym_CARET] = ACTIONS(1501), + [anon_sym_AMP] = ACTIONS(1501), + [anon_sym_this] = ACTIONS(1261), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), + [anon_sym_base] = ACTIONS(1263), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1267), - [anon_sym_unchecked] = ACTIONS(1067), + [sym_predefined_type] = ACTIONS(1265), + [anon_sym_unchecked] = ACTIONS(1251), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1269), - [anon_sym_throw] = ACTIONS(2259), + [anon_sym_default] = ACTIONS(1267), + [anon_sym_throw] = ACTIONS(1505), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2261), - [anon_sym_DOT_DOT] = ACTIONS(2263), + [anon_sym_await] = ACTIONS(1507), + [anon_sym_DOT_DOT] = ACTIONS(1509), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -189111,19 +188997,19 @@ static const uint16_t ts_parse_table[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(1279), - [anon_sym_typeof] = ACTIONS(1281), - [anon_sym___makeref] = ACTIONS(133), - [anon_sym___reftype] = ACTIONS(135), - [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(1289), - [anon_sym_SQUOTE] = ACTIONS(1291), - [sym_integer_literal] = ACTIONS(1289), - [sym_real_literal] = ACTIONS(1293), - [anon_sym_DQUOTE] = ACTIONS(1295), - [sym_verbatim_string_literal] = ACTIONS(1293), - [aux_sym_preproc_if_token1] = ACTIONS(1089), + [anon_sym_stackalloc] = ACTIONS(1275), + [anon_sym_sizeof] = ACTIONS(1277), + [anon_sym_typeof] = ACTIONS(1279), + [anon_sym___makeref] = ACTIONS(1281), + [anon_sym___reftype] = ACTIONS(1283), + [anon_sym___refvalue] = ACTIONS(1285), + [sym_null_literal] = ACTIONS(1287), + [anon_sym_SQUOTE] = ACTIONS(1289), + [sym_integer_literal] = ACTIONS(1287), + [sym_real_literal] = ACTIONS(1291), + [anon_sym_DQUOTE] = ACTIONS(1293), + [sym_verbatim_string_literal] = ACTIONS(1291), + [aux_sym_preproc_if_token1] = ACTIONS(1295), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -189134,90 +189020,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1299), - [sym_interpolation_verbatim_start] = ACTIONS(1301), - [sym_interpolation_raw_start] = ACTIONS(1303), - [sym_raw_string_start] = ACTIONS(1305), + [sym_interpolation_regular_start] = ACTIONS(1297), + [sym_interpolation_verbatim_start] = ACTIONS(1299), + [sym_interpolation_raw_start] = ACTIONS(1301), + [sym_raw_string_start] = ACTIONS(1303), }, [872] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(5907), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2404), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(4249), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3140), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3080), - [sym_postfix_unary_expression] = STATE(3111), - [sym_prefix_unary_expression] = STATE(3111), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6183), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3080), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3111), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3080), - [sym_member_access_expression] = STATE(2484), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3111), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7703), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(3080), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3080), - [sym_typeof_expression] = STATE(3080), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2484), - [sym_literal] = STATE(3080), - [sym_character_literal] = STATE(3011), - [sym_string_literal] = STATE(3011), - [sym_raw_string_literal] = STATE(3011), - [sym_boolean_literal] = STATE(3011), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(5873), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2238), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(4887), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3468), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3102), + [sym_postfix_unary_expression] = STATE(3079), + [sym_prefix_unary_expression] = STATE(3079), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6134), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3102), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3079), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3102), + [sym_member_access_expression] = STATE(2472), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3079), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7309), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(3102), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3102), + [sym_typeof_expression] = STATE(3102), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2472), + [sym_literal] = STATE(3102), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(872), [sym_preproc_endregion] = STATE(872), [sym_preproc_line] = STATE(872), @@ -189227,47 +189113,47 @@ 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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1481), - [anon_sym_LPAREN] = ACTIONS(2251), - [anon_sym_ref] = ACTIONS(2253), - [anon_sym_LBRACE] = ACTIONS(1487), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1479), + [anon_sym_LPAREN] = ACTIONS(659), + [anon_sym_ref] = ACTIONS(663), + [anon_sym_LBRACE] = ACTIONS(1481), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1937), + [anon_sym_new] = ACTIONS(1059), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1067), - [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(1259), - [anon_sym_false] = ACTIONS(1259), - [anon_sym_PLUS] = ACTIONS(2255), - [anon_sym_DASH] = ACTIONS(2255), - [anon_sym_STAR] = ACTIONS(1943), - [anon_sym_CARET] = ACTIONS(2257), - [anon_sym_AMP] = ACTIONS(2257), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(1485), + [anon_sym_TILDE] = ACTIONS(1485), + [anon_sym_PLUS_PLUS] = ACTIONS(1485), + [anon_sym_DASH_DASH] = ACTIONS(1485), + [anon_sym_true] = ACTIONS(77), + [anon_sym_false] = ACTIONS(77), + [anon_sym_PLUS] = ACTIONS(1483), + [anon_sym_DASH] = ACTIONS(1483), + [anon_sym_STAR] = ACTIONS(683), + [anon_sym_CARET] = ACTIONS(1485), + [anon_sym_AMP] = ACTIONS(1485), [anon_sym_this] = ACTIONS(83), [anon_sym_scoped] = ACTIONS(85), [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1267), - [anon_sym_unchecked] = ACTIONS(1067), + [sym_predefined_type] = ACTIONS(91), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1269), - [anon_sym_throw] = ACTIONS(2259), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(1077), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2261), - [anon_sym_DOT_DOT] = ACTIONS(2263), + [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), @@ -189281,18 +189167,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(1279), - [anon_sym_typeof] = ACTIONS(1281), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), [anon_sym___makeref] = ACTIONS(133), [anon_sym___reftype] = ACTIONS(135), [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(1289), - [anon_sym_SQUOTE] = ACTIONS(1291), - [sym_integer_literal] = ACTIONS(1289), - [sym_real_literal] = ACTIONS(1293), - [anon_sym_DQUOTE] = ACTIONS(1295), - [sym_verbatim_string_literal] = ACTIONS(1293), - [aux_sym_preproc_if_token1] = ACTIONS(1089), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_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), @@ -189303,90 +189189,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1299), - [sym_interpolation_verbatim_start] = ACTIONS(1301), - [sym_interpolation_raw_start] = ACTIONS(1303), - [sym_raw_string_start] = ACTIONS(1305), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [sym_interpolation_raw_start] = ACTIONS(155), + [sym_raw_string_start] = ACTIONS(157), }, [873] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(5910), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2247), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(5095), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3379), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3080), - [sym_postfix_unary_expression] = STATE(3111), - [sym_prefix_unary_expression] = STATE(3111), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6154), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3080), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3111), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3080), - [sym_member_access_expression] = STATE(2484), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3111), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7575), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(3080), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3080), - [sym_typeof_expression] = STATE(3080), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2484), - [sym_literal] = STATE(3080), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(5152), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2196), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(4850), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3510), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3102), + [sym_postfix_unary_expression] = STATE(3079), + [sym_prefix_unary_expression] = STATE(3079), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6134), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3102), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3079), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3102), + [sym_member_access_expression] = STATE(2472), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3079), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7425), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(3102), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3102), + [sym_typeof_expression] = STATE(3102), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2472), + [sym_literal] = STATE(3102), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(873), [sym_preproc_endregion] = STATE(873), [sym_preproc_line] = STATE(873), @@ -189396,47 +189282,47 @@ 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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1481), - [anon_sym_LPAREN] = ACTIONS(895), - [anon_sym_ref] = ACTIONS(897), - [anon_sym_LBRACE] = ACTIONS(1487), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1479), + [anon_sym_LPAREN] = ACTIONS(43), + [anon_sym_ref] = ACTIONS(715), + [anon_sym_LBRACE] = ACTIONS(1481), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1061), + [anon_sym_new] = ACTIONS(1059), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1067), - [anon_sym_BANG] = ACTIONS(1495), - [anon_sym_TILDE] = ACTIONS(1495), - [anon_sym_PLUS_PLUS] = ACTIONS(1495), - [anon_sym_DASH_DASH] = ACTIONS(1495), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(1525), + [anon_sym_TILDE] = ACTIONS(1525), + [anon_sym_PLUS_PLUS] = ACTIONS(1525), + [anon_sym_DASH_DASH] = ACTIONS(1525), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1493), - [anon_sym_DASH] = ACTIONS(1493), - [anon_sym_STAR] = ACTIONS(905), - [anon_sym_CARET] = ACTIONS(1495), - [anon_sym_AMP] = ACTIONS(1495), + [anon_sym_PLUS] = ACTIONS(1523), + [anon_sym_DASH] = ACTIONS(1523), + [anon_sym_STAR] = ACTIONS(81), + [anon_sym_CARET] = ACTIONS(1525), + [anon_sym_AMP] = ACTIONS(1525), [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(1067), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1079), + [anon_sym_throw] = ACTIONS(1527), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1081), - [anon_sym_DOT_DOT] = ACTIONS(911), + [anon_sym_await] = ACTIONS(1529), + [anon_sym_DOT_DOT] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -189461,7 +189347,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(1089), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -189478,84 +189364,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [874] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(5907), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2404), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(4251), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3140), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3080), - [sym_postfix_unary_expression] = STATE(3111), - [sym_prefix_unary_expression] = STATE(3111), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6183), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3080), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3111), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3080), - [sym_member_access_expression] = STATE(2484), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3111), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7703), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(3080), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3080), - [sym_typeof_expression] = STATE(3080), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2484), - [sym_literal] = STATE(3080), - [sym_character_literal] = STATE(3011), - [sym_string_literal] = STATE(3011), - [sym_raw_string_literal] = STATE(3011), - [sym_boolean_literal] = STATE(3011), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(5528), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2196), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(5395), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3660), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3102), + [sym_postfix_unary_expression] = STATE(3079), + [sym_prefix_unary_expression] = STATE(3079), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6163), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3102), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3079), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3102), + [sym_member_access_expression] = STATE(2472), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3079), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7633), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(3102), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3102), + [sym_typeof_expression] = STATE(3102), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2472), + [sym_literal] = STATE(3102), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(874), [sym_preproc_endregion] = STATE(874), [sym_preproc_line] = STATE(874), @@ -189565,47 +189451,47 @@ 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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1481), - [anon_sym_LPAREN] = ACTIONS(2251), - [anon_sym_ref] = ACTIONS(2253), - [anon_sym_LBRACE] = ACTIONS(1487), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1479), + [anon_sym_LPAREN] = ACTIONS(2009), + [anon_sym_ref] = ACTIONS(2011), + [anon_sym_LBRACE] = ACTIONS(1481), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1937), + [anon_sym_new] = ACTIONS(1095), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1067), - [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(1259), - [anon_sym_false] = ACTIONS(1259), - [anon_sym_PLUS] = ACTIONS(2255), - [anon_sym_DASH] = ACTIONS(2255), - [anon_sym_STAR] = ACTIONS(1943), - [anon_sym_CARET] = ACTIONS(2257), - [anon_sym_AMP] = ACTIONS(2257), + [anon_sym_checked] = ACTIONS(1065), + [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(77), + [anon_sym_false] = ACTIONS(77), + [anon_sym_PLUS] = ACTIONS(2013), + [anon_sym_DASH] = ACTIONS(2013), + [anon_sym_STAR] = ACTIONS(1227), + [anon_sym_CARET] = ACTIONS(2015), + [anon_sym_AMP] = ACTIONS(2015), [anon_sym_this] = ACTIONS(83), [anon_sym_scoped] = ACTIONS(85), [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1267), - [anon_sym_unchecked] = ACTIONS(1067), + [sym_predefined_type] = ACTIONS(91), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1269), - [anon_sym_throw] = ACTIONS(2259), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(1231), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2261), - [anon_sym_DOT_DOT] = ACTIONS(2263), + [anon_sym_await] = ACTIONS(1233), + [anon_sym_DOT_DOT] = ACTIONS(1235), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -189619,18 +189505,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(1279), - [anon_sym_typeof] = ACTIONS(1281), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), [anon_sym___makeref] = ACTIONS(133), [anon_sym___reftype] = ACTIONS(135), [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(1289), - [anon_sym_SQUOTE] = ACTIONS(1291), - [sym_integer_literal] = ACTIONS(1289), - [sym_real_literal] = ACTIONS(1293), - [anon_sym_DQUOTE] = ACTIONS(1295), - [sym_verbatim_string_literal] = ACTIONS(1293), - [aux_sym_preproc_if_token1] = ACTIONS(1089), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_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), @@ -189641,90 +189527,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1299), - [sym_interpolation_verbatim_start] = ACTIONS(1301), - [sym_interpolation_raw_start] = ACTIONS(1303), - [sym_raw_string_start] = ACTIONS(1305), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [sym_interpolation_raw_start] = ACTIONS(155), + [sym_raw_string_start] = ACTIONS(157), }, [875] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2762), - [sym__name] = STATE(5893), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2316), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(4708), - [sym_non_lvalue_expression] = STATE(3438), - [sym_lvalue_expression] = STATE(3391), - [sym__expression_statement_expression] = STATE(3362), - [sym_assignment_expression] = STATE(3449), - [sym_binary_expression] = STATE(3362), - [sym_postfix_unary_expression] = STATE(3449), - [sym_prefix_unary_expression] = STATE(3449), - [sym__pointer_indirection_expression] = STATE(2747), - [sym_query_expression] = STATE(3362), - [sym_from_clause] = STATE(6155), - [sym_conditional_expression] = STATE(3362), - [sym_conditional_access_expression] = STATE(3362), - [sym_as_expression] = STATE(3362), - [sym_is_expression] = STATE(3362), - [sym_is_pattern_expression] = STATE(3362), - [sym_cast_expression] = STATE(3362), - [sym_checked_expression] = STATE(3362), - [sym_invocation_expression] = STATE(3449), - [sym_switch_expression] = STATE(3362), - [sym_await_expression] = STATE(3449), - [sym_throw_expression] = STATE(3362), - [sym_element_access_expression] = STATE(2747), - [sym_interpolated_string_expression] = STATE(3362), - [sym_member_access_expression] = STATE(2747), - [sym_object_creation_expression] = STATE(3449), - [sym_parenthesized_expression] = STATE(3449), - [sym__parenthesized_lvalue_expression] = STATE(2747), - [sym_lambda_expression] = STATE(3362), - [sym__lambda_expression_init] = STATE(7726), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3362), - [sym_anonymous_method_expression] = STATE(3362), - [sym_anonymous_object_creation_expression] = STATE(3362), - [sym_implicit_array_creation_expression] = STATE(3362), - [sym_implicit_object_creation_expression] = STATE(3362), - [sym_implicit_stackalloc_expression] = STATE(3362), - [sym_initializer_expression] = STATE(3362), - [sym_default_expression] = STATE(3362), - [sym_with_expression] = STATE(3362), - [sym_sizeof_expression] = STATE(3362), - [sym_typeof_expression] = STATE(3362), - [sym_makeref_expression] = STATE(3362), - [sym_ref_expression] = STATE(3362), - [sym_reftype_expression] = STATE(3362), - [sym_refvalue_expression] = STATE(3362), - [sym_stackalloc_expression] = STATE(3362), - [sym_range_expression] = STATE(3362), - [sym_tuple_expression] = STATE(2747), - [sym_literal] = STATE(3362), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3362), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(5873), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2238), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(5484), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3468), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3102), + [sym_postfix_unary_expression] = STATE(3079), + [sym_prefix_unary_expression] = STATE(3079), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6134), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3102), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3079), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3102), + [sym_member_access_expression] = STATE(2472), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3079), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7309), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(3102), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3102), + [sym_typeof_expression] = STATE(3102), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2472), + [sym_literal] = STATE(3102), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(875), [sym_preproc_endregion] = STATE(875), [sym_preproc_line] = STATE(875), @@ -189734,47 +189620,47 @@ 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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3385), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1307), - [anon_sym_LPAREN] = ACTIONS(1711), - [anon_sym_ref] = ACTIONS(1713), - [anon_sym_LBRACE] = ACTIONS(1313), - [anon_sym_delegate] = ACTIONS(1315), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1479), + [anon_sym_LPAREN] = ACTIONS(659), + [anon_sym_ref] = ACTIONS(663), + [anon_sym_LBRACE] = ACTIONS(1481), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1613), + [anon_sym_new] = ACTIONS(1059), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1319), - [anon_sym_BANG] = ACTIONS(1717), - [anon_sym_TILDE] = ACTIONS(1717), - [anon_sym_PLUS_PLUS] = ACTIONS(1717), - [anon_sym_DASH_DASH] = ACTIONS(1717), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(1485), + [anon_sym_TILDE] = ACTIONS(1485), + [anon_sym_PLUS_PLUS] = ACTIONS(1485), + [anon_sym_DASH_DASH] = ACTIONS(1485), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [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(1323), + [anon_sym_PLUS] = ACTIONS(1483), + [anon_sym_DASH] = ACTIONS(1483), + [anon_sym_STAR] = ACTIONS(683), + [anon_sym_CARET] = ACTIONS(1485), + [anon_sym_AMP] = ACTIONS(1485), + [anon_sym_this] = ACTIONS(83), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1325), + [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1319), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1721), + [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(711), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -189787,19 +189673,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1333), + [anon_sym_stackalloc] = ACTIONS(127), [anon_sym_sizeof] = ACTIONS(129), [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(1335), - [anon_sym___reftype] = ACTIONS(1337), - [anon_sym___refvalue] = ACTIONS(1339), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), [sym_null_literal] = ACTIONS(139), [anon_sym_SQUOTE] = ACTIONS(141), [sym_integer_literal] = ACTIONS(139), [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1341), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -189816,84 +189702,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [876] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(5907), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2404), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(4252), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3140), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3080), - [sym_postfix_unary_expression] = STATE(3111), - [sym_prefix_unary_expression] = STATE(3111), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6183), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3080), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3111), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3080), - [sym_member_access_expression] = STATE(2484), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3111), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7703), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(3080), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3080), - [sym_typeof_expression] = STATE(3080), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2484), - [sym_literal] = STATE(3080), - [sym_character_literal] = STATE(3011), - [sym_string_literal] = STATE(3011), - [sym_raw_string_literal] = STATE(3011), - [sym_boolean_literal] = STATE(3011), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(5873), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2238), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(5485), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3468), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3102), + [sym_postfix_unary_expression] = STATE(3079), + [sym_prefix_unary_expression] = STATE(3079), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6134), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3102), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3079), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3102), + [sym_member_access_expression] = STATE(2472), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3079), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7309), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(3102), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3102), + [sym_typeof_expression] = STATE(3102), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2472), + [sym_literal] = STATE(3102), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(876), [sym_preproc_endregion] = STATE(876), [sym_preproc_line] = STATE(876), @@ -189903,47 +189789,47 @@ 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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1481), - [anon_sym_LPAREN] = ACTIONS(2251), - [anon_sym_ref] = ACTIONS(2253), - [anon_sym_LBRACE] = ACTIONS(1487), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1479), + [anon_sym_LPAREN] = ACTIONS(659), + [anon_sym_ref] = ACTIONS(663), + [anon_sym_LBRACE] = ACTIONS(1481), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1937), + [anon_sym_new] = ACTIONS(1059), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1067), - [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(1259), - [anon_sym_false] = ACTIONS(1259), - [anon_sym_PLUS] = ACTIONS(2255), - [anon_sym_DASH] = ACTIONS(2255), - [anon_sym_STAR] = ACTIONS(1943), - [anon_sym_CARET] = ACTIONS(2257), - [anon_sym_AMP] = ACTIONS(2257), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(1485), + [anon_sym_TILDE] = ACTIONS(1485), + [anon_sym_PLUS_PLUS] = ACTIONS(1485), + [anon_sym_DASH_DASH] = ACTIONS(1485), + [anon_sym_true] = ACTIONS(77), + [anon_sym_false] = ACTIONS(77), + [anon_sym_PLUS] = ACTIONS(1483), + [anon_sym_DASH] = ACTIONS(1483), + [anon_sym_STAR] = ACTIONS(683), + [anon_sym_CARET] = ACTIONS(1485), + [anon_sym_AMP] = ACTIONS(1485), [anon_sym_this] = ACTIONS(83), [anon_sym_scoped] = ACTIONS(85), [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1267), - [anon_sym_unchecked] = ACTIONS(1067), + [sym_predefined_type] = ACTIONS(91), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1269), - [anon_sym_throw] = ACTIONS(2259), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(1077), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2261), - [anon_sym_DOT_DOT] = ACTIONS(2263), + [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), @@ -189957,18 +189843,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(1279), - [anon_sym_typeof] = ACTIONS(1281), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), [anon_sym___makeref] = ACTIONS(133), [anon_sym___reftype] = ACTIONS(135), [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(1289), - [anon_sym_SQUOTE] = ACTIONS(1291), - [sym_integer_literal] = ACTIONS(1289), - [sym_real_literal] = ACTIONS(1293), - [anon_sym_DQUOTE] = ACTIONS(1295), - [sym_verbatim_string_literal] = ACTIONS(1293), - [aux_sym_preproc_if_token1] = ACTIONS(1089), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_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), @@ -189979,90 +189865,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1299), - [sym_interpolation_verbatim_start] = ACTIONS(1301), - [sym_interpolation_raw_start] = ACTIONS(1303), - [sym_raw_string_start] = ACTIONS(1305), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [sym_interpolation_raw_start] = ACTIONS(155), + [sym_raw_string_start] = ACTIONS(157), }, [877] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(5907), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2404), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(4253), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3140), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3080), - [sym_postfix_unary_expression] = STATE(3111), - [sym_prefix_unary_expression] = STATE(3111), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6183), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3080), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3111), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3080), - [sym_member_access_expression] = STATE(2484), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3111), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7703), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(3080), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3080), - [sym_typeof_expression] = STATE(3080), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2484), - [sym_literal] = STATE(3080), - [sym_character_literal] = STATE(3011), - [sym_string_literal] = STATE(3011), - [sym_raw_string_literal] = STATE(3011), - [sym_boolean_literal] = STATE(3011), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(5873), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2238), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(5489), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3468), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3102), + [sym_postfix_unary_expression] = STATE(3079), + [sym_prefix_unary_expression] = STATE(3079), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6134), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3102), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3079), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3102), + [sym_member_access_expression] = STATE(2472), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3079), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7309), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(3102), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3102), + [sym_typeof_expression] = STATE(3102), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2472), + [sym_literal] = STATE(3102), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(877), [sym_preproc_endregion] = STATE(877), [sym_preproc_line] = STATE(877), @@ -190072,47 +189958,47 @@ 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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1481), - [anon_sym_LPAREN] = ACTIONS(2251), - [anon_sym_ref] = ACTIONS(2253), - [anon_sym_LBRACE] = ACTIONS(1487), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1479), + [anon_sym_LPAREN] = ACTIONS(659), + [anon_sym_ref] = ACTIONS(663), + [anon_sym_LBRACE] = ACTIONS(1481), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1937), + [anon_sym_new] = ACTIONS(1059), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1067), - [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(1259), - [anon_sym_false] = ACTIONS(1259), - [anon_sym_PLUS] = ACTIONS(2255), - [anon_sym_DASH] = ACTIONS(2255), - [anon_sym_STAR] = ACTIONS(1943), - [anon_sym_CARET] = ACTIONS(2257), - [anon_sym_AMP] = ACTIONS(2257), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(1485), + [anon_sym_TILDE] = ACTIONS(1485), + [anon_sym_PLUS_PLUS] = ACTIONS(1485), + [anon_sym_DASH_DASH] = ACTIONS(1485), + [anon_sym_true] = ACTIONS(77), + [anon_sym_false] = ACTIONS(77), + [anon_sym_PLUS] = ACTIONS(1483), + [anon_sym_DASH] = ACTIONS(1483), + [anon_sym_STAR] = ACTIONS(683), + [anon_sym_CARET] = ACTIONS(1485), + [anon_sym_AMP] = ACTIONS(1485), [anon_sym_this] = ACTIONS(83), [anon_sym_scoped] = ACTIONS(85), [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1267), - [anon_sym_unchecked] = ACTIONS(1067), + [sym_predefined_type] = ACTIONS(91), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1269), - [anon_sym_throw] = ACTIONS(2259), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(1077), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2261), - [anon_sym_DOT_DOT] = ACTIONS(2263), + [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), @@ -190126,18 +190012,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(1279), - [anon_sym_typeof] = ACTIONS(1281), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), [anon_sym___makeref] = ACTIONS(133), [anon_sym___reftype] = ACTIONS(135), [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(1289), - [anon_sym_SQUOTE] = ACTIONS(1291), - [sym_integer_literal] = ACTIONS(1289), - [sym_real_literal] = ACTIONS(1293), - [anon_sym_DQUOTE] = ACTIONS(1295), - [sym_verbatim_string_literal] = ACTIONS(1293), - [aux_sym_preproc_if_token1] = ACTIONS(1089), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_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), @@ -190148,90 +190034,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1299), - [sym_interpolation_verbatim_start] = ACTIONS(1301), - [sym_interpolation_raw_start] = ACTIONS(1303), - [sym_raw_string_start] = ACTIONS(1305), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [sym_interpolation_raw_start] = ACTIONS(155), + [sym_raw_string_start] = ACTIONS(157), }, [878] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2420), - [sym__name] = STATE(5911), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2197), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(4375), - [sym_non_lvalue_expression] = STATE(3066), - [sym_lvalue_expression] = STATE(3327), - [sym__expression_statement_expression] = STATE(3006), - [sym_assignment_expression] = STATE(3020), - [sym_binary_expression] = STATE(3006), - [sym_postfix_unary_expression] = STATE(3020), - [sym_prefix_unary_expression] = STATE(3020), - [sym__pointer_indirection_expression] = STATE(2423), - [sym_query_expression] = STATE(3006), - [sym_from_clause] = STATE(6159), - [sym_conditional_expression] = STATE(3006), - [sym_conditional_access_expression] = STATE(3006), - [sym_as_expression] = STATE(3006), - [sym_is_expression] = STATE(3006), - [sym_is_pattern_expression] = STATE(3006), - [sym_cast_expression] = STATE(3006), - [sym_checked_expression] = STATE(3006), - [sym_invocation_expression] = STATE(3020), - [sym_switch_expression] = STATE(3006), - [sym_await_expression] = STATE(3020), - [sym_throw_expression] = STATE(3006), - [sym_element_access_expression] = STATE(2423), - [sym_interpolated_string_expression] = STATE(3006), - [sym_member_access_expression] = STATE(2423), - [sym_object_creation_expression] = STATE(3020), - [sym_parenthesized_expression] = STATE(3020), - [sym__parenthesized_lvalue_expression] = STATE(2423), - [sym_lambda_expression] = STATE(3006), - [sym__lambda_expression_init] = STATE(7674), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3006), - [sym_anonymous_method_expression] = STATE(3006), - [sym_anonymous_object_creation_expression] = STATE(3006), - [sym_implicit_array_creation_expression] = STATE(3006), - [sym_implicit_object_creation_expression] = STATE(3006), - [sym_implicit_stackalloc_expression] = STATE(3006), - [sym_initializer_expression] = STATE(3006), - [sym_default_expression] = STATE(3006), - [sym_with_expression] = STATE(3006), - [sym_sizeof_expression] = STATE(3006), - [sym_typeof_expression] = STATE(3006), - [sym_makeref_expression] = STATE(3006), - [sym_ref_expression] = STATE(3006), - [sym_reftype_expression] = STATE(3006), - [sym_refvalue_expression] = STATE(3006), - [sym_stackalloc_expression] = STATE(3006), - [sym_range_expression] = STATE(3006), - [sym_tuple_expression] = STATE(2423), - [sym_literal] = STATE(3006), - [sym_character_literal] = STATE(3011), - [sym_string_literal] = STATE(3011), - [sym_raw_string_literal] = STATE(3011), - [sym_boolean_literal] = STATE(3011), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3006), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(3182), + [sym__name] = STATE(5888), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2286), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2262), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(4336), + [sym_non_lvalue_expression] = STATE(4580), + [sym_lvalue_expression] = STATE(3373), + [sym__expression_statement_expression] = STATE(4573), + [sym_assignment_expression] = STATE(4581), + [sym_binary_expression] = STATE(4573), + [sym_postfix_unary_expression] = STATE(4581), + [sym_prefix_unary_expression] = STATE(4581), + [sym__pointer_indirection_expression] = STATE(3144), + [sym_query_expression] = STATE(4573), + [sym_from_clause] = STATE(6133), + [sym_conditional_expression] = STATE(4573), + [sym_conditional_access_expression] = STATE(4573), + [sym_as_expression] = STATE(4573), + [sym_is_expression] = STATE(4573), + [sym_is_pattern_expression] = STATE(4573), + [sym_cast_expression] = STATE(4573), + [sym_checked_expression] = STATE(4573), + [sym_invocation_expression] = STATE(4581), + [sym_switch_expression] = STATE(4573), + [sym_await_expression] = STATE(4581), + [sym_throw_expression] = STATE(4573), + [sym_element_access_expression] = STATE(3144), + [sym_interpolated_string_expression] = STATE(4573), + [sym_member_access_expression] = STATE(3144), + [sym_object_creation_expression] = STATE(4581), + [sym_parenthesized_expression] = STATE(4581), + [sym__parenthesized_lvalue_expression] = STATE(3144), + [sym_lambda_expression] = STATE(4573), + [sym__lambda_expression_init] = STATE(7614), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(4573), + [sym_anonymous_method_expression] = STATE(4573), + [sym_anonymous_object_creation_expression] = STATE(4573), + [sym_implicit_array_creation_expression] = STATE(4573), + [sym_implicit_object_creation_expression] = STATE(4573), + [sym_implicit_stackalloc_expression] = STATE(4573), + [sym_initializer_expression] = STATE(4573), + [sym_default_expression] = STATE(4573), + [sym_with_expression] = STATE(4573), + [sym_sizeof_expression] = STATE(4573), + [sym_typeof_expression] = STATE(4573), + [sym_makeref_expression] = STATE(4573), + [sym_ref_expression] = STATE(4573), + [sym_reftype_expression] = STATE(4573), + [sym_refvalue_expression] = STATE(4573), + [sym_stackalloc_expression] = STATE(4573), + [sym_range_expression] = STATE(4573), + [sym_tuple_expression] = STATE(3144), + [sym_literal] = STATE(4573), + [sym_character_literal] = STATE(4575), + [sym_string_literal] = STATE(4575), + [sym_raw_string_literal] = STATE(4575), + [sym_boolean_literal] = STATE(4575), + [sym_identifier] = STATE(2237), + [sym__reserved_identifier] = STATE(2229), + [sym_preproc_if_in_expression] = STATE(4573), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(878), [sym_preproc_endregion] = STATE(878), [sym_preproc_line] = STATE(878), @@ -190241,166 +190127,166 @@ 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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3440), - [sym__identifier_token] = ACTIONS(25), - [anon_sym_alias] = ACTIONS(29), - [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1241), - [anon_sym_LPAREN] = ACTIONS(1509), - [anon_sym_ref] = ACTIONS(1511), - [anon_sym_LBRACE] = ACTIONS(1247), - [anon_sym_delegate] = ACTIONS(1249), - [anon_sym_async] = ACTIONS(1047), - [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1251), - [anon_sym_where] = ACTIONS(29), - [anon_sym_notnull] = ACTIONS(29), - [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1253), - [anon_sym_BANG] = ACTIONS(1515), - [anon_sym_TILDE] = ACTIONS(1515), - [anon_sym_PLUS_PLUS] = ACTIONS(1515), - [anon_sym_DASH_DASH] = ACTIONS(1515), - [anon_sym_true] = ACTIONS(1259), - [anon_sym_false] = ACTIONS(1259), - [anon_sym_PLUS] = ACTIONS(1513), - [anon_sym_DASH] = ACTIONS(1513), - [anon_sym_STAR] = ACTIONS(1517), - [anon_sym_CARET] = ACTIONS(1515), - [anon_sym_AMP] = ACTIONS(1515), - [anon_sym_this] = ACTIONS(1263), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1265), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1267), - [anon_sym_unchecked] = ACTIONS(1253), - [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1269), - [anon_sym_throw] = ACTIONS(1519), - [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1521), - [anon_sym_DOT_DOT] = ACTIONS(1523), - [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(1277), - [anon_sym_sizeof] = ACTIONS(1279), - [anon_sym_typeof] = ACTIONS(1281), - [anon_sym___makeref] = ACTIONS(1283), - [anon_sym___reftype] = ACTIONS(1285), - [anon_sym___refvalue] = ACTIONS(1287), - [sym_null_literal] = ACTIONS(1289), - [anon_sym_SQUOTE] = ACTIONS(1291), - [sym_integer_literal] = ACTIONS(1289), - [sym_real_literal] = ACTIONS(1293), - [anon_sym_DQUOTE] = ACTIONS(1295), - [sym_verbatim_string_literal] = ACTIONS(1293), - [aux_sym_preproc_if_token1] = ACTIONS(1297), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1299), - [sym_interpolation_verbatim_start] = ACTIONS(1301), - [sym_interpolation_raw_start] = ACTIONS(1303), - [sym_raw_string_start] = ACTIONS(1305), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3501), + [sym__identifier_token] = ACTIONS(1385), + [anon_sym_alias] = ACTIONS(1387), + [anon_sym_global] = ACTIONS(1387), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1389), + [anon_sym_LPAREN] = ACTIONS(1565), + [anon_sym_ref] = ACTIONS(1567), + [anon_sym_LBRACE] = ACTIONS(1395), + [anon_sym_delegate] = ACTIONS(1397), + [anon_sym_async] = ACTIONS(1045), + [anon_sym_file] = ACTIONS(1387), + [anon_sym_new] = ACTIONS(1399), + [anon_sym_where] = ACTIONS(1387), + [anon_sym_notnull] = ACTIONS(1387), + [anon_sym_unmanaged] = ACTIONS(1387), + [anon_sym_checked] = ACTIONS(1401), + [anon_sym_BANG] = ACTIONS(1571), + [anon_sym_TILDE] = ACTIONS(1571), + [anon_sym_PLUS_PLUS] = ACTIONS(1571), + [anon_sym_DASH_DASH] = ACTIONS(1571), + [anon_sym_true] = ACTIONS(1407), + [anon_sym_false] = ACTIONS(1407), + [anon_sym_PLUS] = ACTIONS(1569), + [anon_sym_DASH] = ACTIONS(1569), + [anon_sym_STAR] = ACTIONS(1409), + [anon_sym_CARET] = ACTIONS(1571), + [anon_sym_AMP] = ACTIONS(1571), + [anon_sym_this] = ACTIONS(1411), + [anon_sym_scoped] = ACTIONS(1413), + [anon_sym_base] = ACTIONS(1415), + [anon_sym_var] = ACTIONS(1417), + [sym_predefined_type] = ACTIONS(1419), + [anon_sym_unchecked] = ACTIONS(1401), + [anon_sym_yield] = ACTIONS(1387), + [anon_sym_default] = ACTIONS(1421), + [anon_sym_throw] = ACTIONS(1573), + [anon_sym_when] = ACTIONS(1387), + [anon_sym_await] = ACTIONS(1575), + [anon_sym_DOT_DOT] = ACTIONS(1577), + [anon_sym_from] = ACTIONS(1429), + [anon_sym_into] = ACTIONS(1387), + [anon_sym_join] = ACTIONS(1387), + [anon_sym_on] = ACTIONS(1387), + [anon_sym_equals] = ACTIONS(1387), + [anon_sym_let] = ACTIONS(1387), + [anon_sym_orderby] = ACTIONS(1387), + [anon_sym_ascending] = ACTIONS(1387), + [anon_sym_descending] = ACTIONS(1387), + [anon_sym_group] = ACTIONS(1387), + [anon_sym_by] = ACTIONS(1387), + [anon_sym_select] = ACTIONS(1387), + [anon_sym_stackalloc] = ACTIONS(1431), + [anon_sym_sizeof] = ACTIONS(1433), + [anon_sym_typeof] = ACTIONS(1435), + [anon_sym___makeref] = ACTIONS(1437), + [anon_sym___reftype] = ACTIONS(1439), + [anon_sym___refvalue] = ACTIONS(1441), + [sym_null_literal] = ACTIONS(1443), + [anon_sym_SQUOTE] = ACTIONS(1445), + [sym_integer_literal] = ACTIONS(1443), + [sym_real_literal] = ACTIONS(1447), + [anon_sym_DQUOTE] = ACTIONS(1449), + [sym_verbatim_string_literal] = ACTIONS(1447), + [aux_sym_preproc_if_token1] = ACTIONS(1451), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + [sym_interpolation_regular_start] = ACTIONS(1453), + [sym_interpolation_verbatim_start] = ACTIONS(1455), + [sym_interpolation_raw_start] = ACTIONS(1457), + [sym_raw_string_start] = ACTIONS(1459), }, [879] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2420), - [sym__name] = STATE(5911), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2197), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(4378), - [sym_non_lvalue_expression] = STATE(3066), - [sym_lvalue_expression] = STATE(3327), - [sym__expression_statement_expression] = STATE(3006), - [sym_assignment_expression] = STATE(3020), - [sym_binary_expression] = STATE(3006), - [sym_postfix_unary_expression] = STATE(3020), - [sym_prefix_unary_expression] = STATE(3020), - [sym__pointer_indirection_expression] = STATE(2423), - [sym_query_expression] = STATE(3006), - [sym_from_clause] = STATE(6159), - [sym_conditional_expression] = STATE(3006), - [sym_conditional_access_expression] = STATE(3006), - [sym_as_expression] = STATE(3006), - [sym_is_expression] = STATE(3006), - [sym_is_pattern_expression] = STATE(3006), - [sym_cast_expression] = STATE(3006), - [sym_checked_expression] = STATE(3006), - [sym_invocation_expression] = STATE(3020), - [sym_switch_expression] = STATE(3006), - [sym_await_expression] = STATE(3020), - [sym_throw_expression] = STATE(3006), - [sym_element_access_expression] = STATE(2423), - [sym_interpolated_string_expression] = STATE(3006), - [sym_member_access_expression] = STATE(2423), - [sym_object_creation_expression] = STATE(3020), - [sym_parenthesized_expression] = STATE(3020), - [sym__parenthesized_lvalue_expression] = STATE(2423), - [sym_lambda_expression] = STATE(3006), - [sym__lambda_expression_init] = STATE(7674), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3006), - [sym_anonymous_method_expression] = STATE(3006), - [sym_anonymous_object_creation_expression] = STATE(3006), - [sym_implicit_array_creation_expression] = STATE(3006), - [sym_implicit_object_creation_expression] = STATE(3006), - [sym_implicit_stackalloc_expression] = STATE(3006), - [sym_initializer_expression] = STATE(3006), - [sym_default_expression] = STATE(3006), - [sym_with_expression] = STATE(3006), - [sym_sizeof_expression] = STATE(3006), - [sym_typeof_expression] = STATE(3006), - [sym_makeref_expression] = STATE(3006), - [sym_ref_expression] = STATE(3006), - [sym_reftype_expression] = STATE(3006), - [sym_refvalue_expression] = STATE(3006), - [sym_stackalloc_expression] = STATE(3006), - [sym_range_expression] = STATE(3006), - [sym_tuple_expression] = STATE(2423), - [sym_literal] = STATE(3006), - [sym_character_literal] = STATE(3011), - [sym_string_literal] = STATE(3011), - [sym_raw_string_literal] = STATE(3011), - [sym_boolean_literal] = STATE(3011), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3006), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(3182), + [sym__name] = STATE(5888), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2286), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2262), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(5673), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3206), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3102), + [sym_postfix_unary_expression] = STATE(3079), + [sym_prefix_unary_expression] = STATE(3079), + [sym__pointer_indirection_expression] = STATE(3144), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6134), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3102), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3079), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(3144), + [sym_interpolated_string_expression] = STATE(3102), + [sym_member_access_expression] = STATE(3144), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3079), + [sym__parenthesized_lvalue_expression] = STATE(3144), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7425), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(3102), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3102), + [sym_typeof_expression] = STATE(3102), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(3144), + [sym_literal] = STATE(3102), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2237), + [sym__reserved_identifier] = STATE(2229), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(879), [sym_preproc_endregion] = STATE(879), [sym_preproc_line] = STATE(879), @@ -190410,72 +190296,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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3440), - [sym__identifier_token] = ACTIONS(25), - [anon_sym_alias] = ACTIONS(29), - [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1241), - [anon_sym_LPAREN] = ACTIONS(1509), - [anon_sym_ref] = ACTIONS(1511), - [anon_sym_LBRACE] = ACTIONS(1247), - [anon_sym_delegate] = ACTIONS(1249), - [anon_sym_async] = ACTIONS(1047), - [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1251), - [anon_sym_where] = ACTIONS(29), - [anon_sym_notnull] = ACTIONS(29), - [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1253), - [anon_sym_BANG] = ACTIONS(1515), - [anon_sym_TILDE] = ACTIONS(1515), - [anon_sym_PLUS_PLUS] = ACTIONS(1515), - [anon_sym_DASH_DASH] = ACTIONS(1515), - [anon_sym_true] = ACTIONS(1259), - [anon_sym_false] = ACTIONS(1259), - [anon_sym_PLUS] = ACTIONS(1513), - [anon_sym_DASH] = ACTIONS(1513), - [anon_sym_STAR] = ACTIONS(1517), - [anon_sym_CARET] = ACTIONS(1515), - [anon_sym_AMP] = ACTIONS(1515), - [anon_sym_this] = ACTIONS(1263), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1265), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1267), - [anon_sym_unchecked] = ACTIONS(1253), - [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1269), - [anon_sym_throw] = ACTIONS(1519), - [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1521), - [anon_sym_DOT_DOT] = ACTIONS(1523), - [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(1277), - [anon_sym_sizeof] = ACTIONS(1279), - [anon_sym_typeof] = ACTIONS(1281), - [anon_sym___makeref] = ACTIONS(1283), - [anon_sym___reftype] = ACTIONS(1285), - [anon_sym___refvalue] = ACTIONS(1287), - [sym_null_literal] = ACTIONS(1289), - [anon_sym_SQUOTE] = ACTIONS(1291), - [sym_integer_literal] = ACTIONS(1289), - [sym_real_literal] = ACTIONS(1293), - [anon_sym_DQUOTE] = ACTIONS(1295), - [sym_verbatim_string_literal] = ACTIONS(1293), - [aux_sym_preproc_if_token1] = ACTIONS(1297), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), + [sym__identifier_token] = ACTIONS(1385), + [anon_sym_alias] = ACTIONS(1387), + [anon_sym_global] = ACTIONS(1387), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1389), + [anon_sym_LPAREN] = ACTIONS(2937), + [anon_sym_ref] = ACTIONS(715), + [anon_sym_LBRACE] = ACTIONS(1481), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), + [anon_sym_file] = ACTIONS(1387), + [anon_sym_new] = ACTIONS(1059), + [anon_sym_where] = ACTIONS(1387), + [anon_sym_notnull] = ACTIONS(1387), + [anon_sym_unmanaged] = ACTIONS(1387), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(1525), + [anon_sym_TILDE] = ACTIONS(1525), + [anon_sym_PLUS_PLUS] = ACTIONS(1525), + [anon_sym_DASH_DASH] = ACTIONS(1525), + [anon_sym_true] = ACTIONS(77), + [anon_sym_false] = ACTIONS(77), + [anon_sym_PLUS] = ACTIONS(1523), + [anon_sym_DASH] = ACTIONS(1523), + [anon_sym_STAR] = ACTIONS(1409), + [anon_sym_CARET] = ACTIONS(1525), + [anon_sym_AMP] = ACTIONS(1525), + [anon_sym_this] = ACTIONS(1411), + [anon_sym_scoped] = ACTIONS(1413), + [anon_sym_base] = ACTIONS(87), + [anon_sym_var] = ACTIONS(1417), + [sym_predefined_type] = ACTIONS(1419), + [anon_sym_unchecked] = ACTIONS(1065), + [anon_sym_yield] = ACTIONS(1387), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(1527), + [anon_sym_when] = ACTIONS(1387), + [anon_sym_await] = ACTIONS(1529), + [anon_sym_DOT_DOT] = ACTIONS(123), + [anon_sym_from] = ACTIONS(1429), + [anon_sym_into] = ACTIONS(1387), + [anon_sym_join] = ACTIONS(1387), + [anon_sym_on] = ACTIONS(1387), + [anon_sym_equals] = ACTIONS(1387), + [anon_sym_let] = ACTIONS(1387), + [anon_sym_orderby] = ACTIONS(1387), + [anon_sym_ascending] = ACTIONS(1387), + [anon_sym_descending] = ACTIONS(1387), + [anon_sym_group] = ACTIONS(1387), + [anon_sym_by] = ACTIONS(1387), + [anon_sym_select] = ACTIONS(1387), + [anon_sym_stackalloc] = ACTIONS(127), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_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), @@ -190486,90 +190372,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1299), - [sym_interpolation_verbatim_start] = ACTIONS(1301), - [sym_interpolation_raw_start] = ACTIONS(1303), - [sym_raw_string_start] = ACTIONS(1305), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [sym_interpolation_raw_start] = ACTIONS(155), + [sym_raw_string_start] = ACTIONS(157), }, [880] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2420), - [sym__name] = STATE(5911), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2197), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(4380), - [sym_non_lvalue_expression] = STATE(3066), - [sym_lvalue_expression] = STATE(3327), - [sym__expression_statement_expression] = STATE(3006), - [sym_assignment_expression] = STATE(3020), - [sym_binary_expression] = STATE(3006), - [sym_postfix_unary_expression] = STATE(3020), - [sym_prefix_unary_expression] = STATE(3020), - [sym__pointer_indirection_expression] = STATE(2423), - [sym_query_expression] = STATE(3006), - [sym_from_clause] = STATE(6159), - [sym_conditional_expression] = STATE(3006), - [sym_conditional_access_expression] = STATE(3006), - [sym_as_expression] = STATE(3006), - [sym_is_expression] = STATE(3006), - [sym_is_pattern_expression] = STATE(3006), - [sym_cast_expression] = STATE(3006), - [sym_checked_expression] = STATE(3006), - [sym_invocation_expression] = STATE(3020), - [sym_switch_expression] = STATE(3006), - [sym_await_expression] = STATE(3020), - [sym_throw_expression] = STATE(3006), - [sym_element_access_expression] = STATE(2423), - [sym_interpolated_string_expression] = STATE(3006), - [sym_member_access_expression] = STATE(2423), - [sym_object_creation_expression] = STATE(3020), - [sym_parenthesized_expression] = STATE(3020), - [sym__parenthesized_lvalue_expression] = STATE(2423), - [sym_lambda_expression] = STATE(3006), - [sym__lambda_expression_init] = STATE(7674), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3006), - [sym_anonymous_method_expression] = STATE(3006), - [sym_anonymous_object_creation_expression] = STATE(3006), - [sym_implicit_array_creation_expression] = STATE(3006), - [sym_implicit_object_creation_expression] = STATE(3006), - [sym_implicit_stackalloc_expression] = STATE(3006), - [sym_initializer_expression] = STATE(3006), - [sym_default_expression] = STATE(3006), - [sym_with_expression] = STATE(3006), - [sym_sizeof_expression] = STATE(3006), - [sym_typeof_expression] = STATE(3006), - [sym_makeref_expression] = STATE(3006), - [sym_ref_expression] = STATE(3006), - [sym_reftype_expression] = STATE(3006), - [sym_refvalue_expression] = STATE(3006), - [sym_stackalloc_expression] = STATE(3006), - [sym_range_expression] = STATE(3006), - [sym_tuple_expression] = STATE(2423), - [sym_literal] = STATE(3006), - [sym_character_literal] = STATE(3011), - [sym_string_literal] = STATE(3011), - [sym_raw_string_literal] = STATE(3011), - [sym_boolean_literal] = STATE(3011), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3006), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2816), + [sym__name] = STATE(5873), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2238), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(4175), + [sym_non_lvalue_expression] = STATE(3495), + [sym_lvalue_expression] = STATE(3131), + [sym__expression_statement_expression] = STATE(3462), + [sym_assignment_expression] = STATE(3497), + [sym_binary_expression] = STATE(3462), + [sym_postfix_unary_expression] = STATE(3497), + [sym_prefix_unary_expression] = STATE(3497), + [sym__pointer_indirection_expression] = STATE(2815), + [sym_query_expression] = STATE(3462), + [sym_from_clause] = STATE(6140), + [sym_conditional_expression] = STATE(3462), + [sym_conditional_access_expression] = STATE(3462), + [sym_as_expression] = STATE(3462), + [sym_is_expression] = STATE(3462), + [sym_is_pattern_expression] = STATE(3462), + [sym_cast_expression] = STATE(3462), + [sym_checked_expression] = STATE(3462), + [sym_invocation_expression] = STATE(3497), + [sym_switch_expression] = STATE(3462), + [sym_await_expression] = STATE(3497), + [sym_throw_expression] = STATE(3462), + [sym_element_access_expression] = STATE(2815), + [sym_interpolated_string_expression] = STATE(3462), + [sym_member_access_expression] = STATE(2815), + [sym_object_creation_expression] = STATE(3497), + [sym_parenthesized_expression] = STATE(3497), + [sym__parenthesized_lvalue_expression] = STATE(2815), + [sym_lambda_expression] = STATE(3462), + [sym__lambda_expression_init] = STATE(7423), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3462), + [sym_anonymous_method_expression] = STATE(3462), + [sym_anonymous_object_creation_expression] = STATE(3462), + [sym_implicit_array_creation_expression] = STATE(3462), + [sym_implicit_object_creation_expression] = STATE(3462), + [sym_implicit_stackalloc_expression] = STATE(3462), + [sym_initializer_expression] = STATE(3462), + [sym_default_expression] = STATE(3462), + [sym_with_expression] = STATE(3462), + [sym_sizeof_expression] = STATE(3462), + [sym_typeof_expression] = STATE(3462), + [sym_makeref_expression] = STATE(3462), + [sym_ref_expression] = STATE(3462), + [sym_reftype_expression] = STATE(3462), + [sym_refvalue_expression] = STATE(3462), + [sym_stackalloc_expression] = STATE(3462), + [sym_range_expression] = STATE(3462), + [sym_tuple_expression] = STATE(2815), + [sym_literal] = STATE(3462), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3462), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(880), [sym_preproc_endregion] = STATE(880), [sym_preproc_line] = STATE(880), @@ -190579,47 +190465,47 @@ 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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3440), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3367), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1241), - [anon_sym_LPAREN] = ACTIONS(1509), - [anon_sym_ref] = ACTIONS(1511), - [anon_sym_LBRACE] = ACTIONS(1247), - [anon_sym_delegate] = ACTIONS(1249), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1305), + [anon_sym_LPAREN] = ACTIONS(1307), + [anon_sym_ref] = ACTIONS(1309), + [anon_sym_LBRACE] = ACTIONS(1311), + [anon_sym_delegate] = ACTIONS(1313), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1251), + [anon_sym_new] = ACTIONS(1315), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1253), - [anon_sym_BANG] = ACTIONS(1515), - [anon_sym_TILDE] = ACTIONS(1515), - [anon_sym_PLUS_PLUS] = ACTIONS(1515), - [anon_sym_DASH_DASH] = ACTIONS(1515), - [anon_sym_true] = ACTIONS(1259), - [anon_sym_false] = ACTIONS(1259), - [anon_sym_PLUS] = ACTIONS(1513), - [anon_sym_DASH] = ACTIONS(1513), - [anon_sym_STAR] = ACTIONS(1517), - [anon_sym_CARET] = ACTIONS(1515), - [anon_sym_AMP] = ACTIONS(1515), - [anon_sym_this] = ACTIONS(1263), + [anon_sym_checked] = ACTIONS(1317), + [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(1319), + [anon_sym_CARET] = ACTIONS(1067), + [anon_sym_AMP] = ACTIONS(1067), + [anon_sym_this] = ACTIONS(1321), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1265), + [anon_sym_base] = ACTIONS(1323), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1267), - [anon_sym_unchecked] = ACTIONS(1253), + [sym_predefined_type] = ACTIONS(91), + [anon_sym_unchecked] = ACTIONS(1317), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1269), - [anon_sym_throw] = ACTIONS(1519), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(1325), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1521), - [anon_sym_DOT_DOT] = ACTIONS(1523), + [anon_sym_await] = ACTIONS(1327), + [anon_sym_DOT_DOT] = ACTIONS(1329), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -190632,19 +190518,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1277), - [anon_sym_sizeof] = ACTIONS(1279), - [anon_sym_typeof] = ACTIONS(1281), - [anon_sym___makeref] = ACTIONS(1283), - [anon_sym___reftype] = ACTIONS(1285), - [anon_sym___refvalue] = ACTIONS(1287), - [sym_null_literal] = ACTIONS(1289), - [anon_sym_SQUOTE] = ACTIONS(1291), - [sym_integer_literal] = ACTIONS(1289), - [sym_real_literal] = ACTIONS(1293), - [anon_sym_DQUOTE] = ACTIONS(1295), - [sym_verbatim_string_literal] = ACTIONS(1293), - [aux_sym_preproc_if_token1] = ACTIONS(1297), + [anon_sym_stackalloc] = ACTIONS(1331), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(1333), + [anon_sym___reftype] = ACTIONS(1335), + [anon_sym___refvalue] = ACTIONS(1337), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_literal] = ACTIONS(143), + [anon_sym_DQUOTE] = ACTIONS(145), + [sym_verbatim_string_literal] = ACTIONS(143), + [aux_sym_preproc_if_token1] = ACTIONS(1339), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -190655,90 +190541,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1299), - [sym_interpolation_verbatim_start] = ACTIONS(1301), - [sym_interpolation_raw_start] = ACTIONS(1303), - [sym_raw_string_start] = ACTIONS(1305), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [sym_interpolation_raw_start] = ACTIONS(155), + [sym_raw_string_start] = ACTIONS(157), }, [881] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2914), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2816), [sym__name] = STATE(5873), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2362), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(4022), - [sym_non_lvalue_expression] = STATE(3880), - [sym_lvalue_expression] = STATE(3092), - [sym__expression_statement_expression] = STATE(3873), - [sym_assignment_expression] = STATE(3881), - [sym_binary_expression] = STATE(3873), - [sym_postfix_unary_expression] = STATE(3881), - [sym_prefix_unary_expression] = STATE(3881), - [sym__pointer_indirection_expression] = STATE(2913), - [sym_query_expression] = STATE(3873), - [sym_from_clause] = STATE(6168), - [sym_conditional_expression] = STATE(3873), - [sym_conditional_access_expression] = STATE(3873), - [sym_as_expression] = STATE(3873), - [sym_is_expression] = STATE(3873), - [sym_is_pattern_expression] = STATE(3873), - [sym_cast_expression] = STATE(3873), - [sym_checked_expression] = STATE(3873), - [sym_invocation_expression] = STATE(3881), - [sym_switch_expression] = STATE(3873), - [sym_await_expression] = STATE(3881), - [sym_throw_expression] = STATE(3873), - [sym_element_access_expression] = STATE(2913), - [sym_interpolated_string_expression] = STATE(3873), - [sym_member_access_expression] = STATE(2913), - [sym_object_creation_expression] = STATE(3881), - [sym_parenthesized_expression] = STATE(3881), - [sym__parenthesized_lvalue_expression] = STATE(2913), - [sym_lambda_expression] = STATE(3873), - [sym__lambda_expression_init] = STATE(7533), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3873), - [sym_anonymous_method_expression] = STATE(3873), - [sym_anonymous_object_creation_expression] = STATE(3873), - [sym_implicit_array_creation_expression] = STATE(3873), - [sym_implicit_object_creation_expression] = STATE(3873), - [sym_implicit_stackalloc_expression] = STATE(3873), - [sym_initializer_expression] = STATE(3873), - [sym_default_expression] = STATE(3873), - [sym_with_expression] = STATE(3873), - [sym_sizeof_expression] = STATE(3873), - [sym_typeof_expression] = STATE(3873), - [sym_makeref_expression] = STATE(3873), - [sym_ref_expression] = STATE(3873), - [sym_reftype_expression] = STATE(3873), - [sym_refvalue_expression] = STATE(3873), - [sym_stackalloc_expression] = STATE(3873), - [sym_range_expression] = STATE(3873), - [sym_tuple_expression] = STATE(2913), - [sym_literal] = STATE(3873), - [sym_character_literal] = STATE(3877), - [sym_string_literal] = STATE(3877), - [sym_raw_string_literal] = STATE(3877), - [sym_boolean_literal] = STATE(3877), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3873), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2238), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(4176), + [sym_non_lvalue_expression] = STATE(3495), + [sym_lvalue_expression] = STATE(3131), + [sym__expression_statement_expression] = STATE(3462), + [sym_assignment_expression] = STATE(3497), + [sym_binary_expression] = STATE(3462), + [sym_postfix_unary_expression] = STATE(3497), + [sym_prefix_unary_expression] = STATE(3497), + [sym__pointer_indirection_expression] = STATE(2815), + [sym_query_expression] = STATE(3462), + [sym_from_clause] = STATE(6140), + [sym_conditional_expression] = STATE(3462), + [sym_conditional_access_expression] = STATE(3462), + [sym_as_expression] = STATE(3462), + [sym_is_expression] = STATE(3462), + [sym_is_pattern_expression] = STATE(3462), + [sym_cast_expression] = STATE(3462), + [sym_checked_expression] = STATE(3462), + [sym_invocation_expression] = STATE(3497), + [sym_switch_expression] = STATE(3462), + [sym_await_expression] = STATE(3497), + [sym_throw_expression] = STATE(3462), + [sym_element_access_expression] = STATE(2815), + [sym_interpolated_string_expression] = STATE(3462), + [sym_member_access_expression] = STATE(2815), + [sym_object_creation_expression] = STATE(3497), + [sym_parenthesized_expression] = STATE(3497), + [sym__parenthesized_lvalue_expression] = STATE(2815), + [sym_lambda_expression] = STATE(3462), + [sym__lambda_expression_init] = STATE(7423), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3462), + [sym_anonymous_method_expression] = STATE(3462), + [sym_anonymous_object_creation_expression] = STATE(3462), + [sym_implicit_array_creation_expression] = STATE(3462), + [sym_implicit_object_creation_expression] = STATE(3462), + [sym_implicit_stackalloc_expression] = STATE(3462), + [sym_initializer_expression] = STATE(3462), + [sym_default_expression] = STATE(3462), + [sym_with_expression] = STATE(3462), + [sym_sizeof_expression] = STATE(3462), + [sym_typeof_expression] = STATE(3462), + [sym_makeref_expression] = STATE(3462), + [sym_ref_expression] = STATE(3462), + [sym_reftype_expression] = STATE(3462), + [sym_refvalue_expression] = STATE(3462), + [sym_stackalloc_expression] = STATE(3462), + [sym_range_expression] = STATE(3462), + [sym_tuple_expression] = STATE(2815), + [sym_literal] = STATE(3462), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3462), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(881), [sym_preproc_endregion] = STATE(881), [sym_preproc_line] = STATE(881), @@ -190748,47 +190634,47 @@ 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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3382), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3367), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1627), - [anon_sym_LPAREN] = ACTIONS(1961), - [anon_sym_ref] = ACTIONS(1963), - [anon_sym_LBRACE] = ACTIONS(1633), - [anon_sym_delegate] = ACTIONS(1635), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1305), + [anon_sym_LPAREN] = ACTIONS(1307), + [anon_sym_ref] = ACTIONS(1309), + [anon_sym_LBRACE] = ACTIONS(1311), + [anon_sym_delegate] = ACTIONS(1313), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1637), + [anon_sym_new] = ACTIONS(1315), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1639), - [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(1645), - [anon_sym_false] = ACTIONS(1645), - [anon_sym_PLUS] = ACTIONS(1965), - [anon_sym_DASH] = ACTIONS(1965), - [anon_sym_STAR] = ACTIONS(1647), - [anon_sym_CARET] = ACTIONS(1967), - [anon_sym_AMP] = ACTIONS(1967), - [anon_sym_this] = ACTIONS(1649), + [anon_sym_checked] = ACTIONS(1317), + [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(1319), + [anon_sym_CARET] = ACTIONS(1067), + [anon_sym_AMP] = ACTIONS(1067), + [anon_sym_this] = ACTIONS(1321), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1651), + [anon_sym_base] = ACTIONS(1323), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1653), - [anon_sym_unchecked] = ACTIONS(1639), + [sym_predefined_type] = ACTIONS(91), + [anon_sym_unchecked] = ACTIONS(1317), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1655), - [anon_sym_throw] = ACTIONS(1969), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(1325), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1971), - [anon_sym_DOT_DOT] = ACTIONS(1973), + [anon_sym_await] = ACTIONS(1327), + [anon_sym_DOT_DOT] = ACTIONS(1329), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -190801,19 +190687,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1663), - [anon_sym_sizeof] = ACTIONS(1665), - [anon_sym_typeof] = ACTIONS(1667), - [anon_sym___makeref] = ACTIONS(1669), - [anon_sym___reftype] = ACTIONS(1671), - [anon_sym___refvalue] = ACTIONS(1673), - [sym_null_literal] = ACTIONS(1675), - [anon_sym_SQUOTE] = ACTIONS(1677), - [sym_integer_literal] = ACTIONS(1675), - [sym_real_literal] = ACTIONS(1679), - [anon_sym_DQUOTE] = ACTIONS(1681), - [sym_verbatim_string_literal] = ACTIONS(1679), - [aux_sym_preproc_if_token1] = ACTIONS(1683), + [anon_sym_stackalloc] = ACTIONS(1331), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(1333), + [anon_sym___reftype] = ACTIONS(1335), + [anon_sym___refvalue] = ACTIONS(1337), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_literal] = ACTIONS(143), + [anon_sym_DQUOTE] = ACTIONS(145), + [sym_verbatim_string_literal] = ACTIONS(143), + [aux_sym_preproc_if_token1] = ACTIONS(1339), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -190824,90 +190710,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1685), - [sym_interpolation_verbatim_start] = ACTIONS(1687), - [sym_interpolation_raw_start] = ACTIONS(1689), - [sym_raw_string_start] = ACTIONS(1691), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [sym_interpolation_raw_start] = ACTIONS(155), + [sym_raw_string_start] = ACTIONS(157), }, [882] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(5910), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2247), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(4968), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3529), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3080), - [sym_postfix_unary_expression] = STATE(3111), - [sym_prefix_unary_expression] = STATE(3111), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6154), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3080), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3111), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3080), - [sym_member_access_expression] = STATE(2484), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3111), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7444), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(3080), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3080), - [sym_typeof_expression] = STATE(3080), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2484), - [sym_literal] = STATE(3080), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2816), + [sym__name] = STATE(5873), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2238), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(4209), + [sym_non_lvalue_expression] = STATE(3495), + [sym_lvalue_expression] = STATE(3131), + [sym__expression_statement_expression] = STATE(3462), + [sym_assignment_expression] = STATE(3497), + [sym_binary_expression] = STATE(3462), + [sym_postfix_unary_expression] = STATE(3497), + [sym_prefix_unary_expression] = STATE(3497), + [sym__pointer_indirection_expression] = STATE(2815), + [sym_query_expression] = STATE(3462), + [sym_from_clause] = STATE(6140), + [sym_conditional_expression] = STATE(3462), + [sym_conditional_access_expression] = STATE(3462), + [sym_as_expression] = STATE(3462), + [sym_is_expression] = STATE(3462), + [sym_is_pattern_expression] = STATE(3462), + [sym_cast_expression] = STATE(3462), + [sym_checked_expression] = STATE(3462), + [sym_invocation_expression] = STATE(3497), + [sym_switch_expression] = STATE(3462), + [sym_await_expression] = STATE(3497), + [sym_throw_expression] = STATE(3462), + [sym_element_access_expression] = STATE(2815), + [sym_interpolated_string_expression] = STATE(3462), + [sym_member_access_expression] = STATE(2815), + [sym_object_creation_expression] = STATE(3497), + [sym_parenthesized_expression] = STATE(3497), + [sym__parenthesized_lvalue_expression] = STATE(2815), + [sym_lambda_expression] = STATE(3462), + [sym__lambda_expression_init] = STATE(7423), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3462), + [sym_anonymous_method_expression] = STATE(3462), + [sym_anonymous_object_creation_expression] = STATE(3462), + [sym_implicit_array_creation_expression] = STATE(3462), + [sym_implicit_object_creation_expression] = STATE(3462), + [sym_implicit_stackalloc_expression] = STATE(3462), + [sym_initializer_expression] = STATE(3462), + [sym_default_expression] = STATE(3462), + [sym_with_expression] = STATE(3462), + [sym_sizeof_expression] = STATE(3462), + [sym_typeof_expression] = STATE(3462), + [sym_makeref_expression] = STATE(3462), + [sym_ref_expression] = STATE(3462), + [sym_reftype_expression] = STATE(3462), + [sym_refvalue_expression] = STATE(3462), + [sym_stackalloc_expression] = STATE(3462), + [sym_range_expression] = STATE(3462), + [sym_tuple_expression] = STATE(2815), + [sym_literal] = STATE(3462), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3462), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(882), [sym_preproc_endregion] = STATE(882), [sym_preproc_line] = STATE(882), @@ -190917,47 +190803,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(3067), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), [aux_sym__lambda_expression_init_repeat1] = STATE(3367), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1481), - [anon_sym_LPAREN] = ACTIONS(1575), - [anon_sym_ref] = ACTIONS(1577), - [anon_sym_LBRACE] = ACTIONS(1487), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1305), + [anon_sym_LPAREN] = ACTIONS(1307), + [anon_sym_ref] = ACTIONS(1309), + [anon_sym_LBRACE] = ACTIONS(1311), + [anon_sym_delegate] = ACTIONS(1313), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1501), + [anon_sym_new] = ACTIONS(1315), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1067), - [anon_sym_BANG] = ACTIONS(901), - [anon_sym_TILDE] = ACTIONS(901), - [anon_sym_PLUS_PLUS] = ACTIONS(901), - [anon_sym_DASH_DASH] = ACTIONS(901), + [anon_sym_checked] = ACTIONS(1317), + [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(903), - [anon_sym_DASH] = ACTIONS(903), - [anon_sym_STAR] = ACTIONS(905), - [anon_sym_CARET] = ACTIONS(901), - [anon_sym_AMP] = ACTIONS(901), - [anon_sym_this] = ACTIONS(83), + [anon_sym_PLUS] = ACTIONS(1069), + [anon_sym_DASH] = ACTIONS(1069), + [anon_sym_STAR] = ACTIONS(1319), + [anon_sym_CARET] = ACTIONS(1067), + [anon_sym_AMP] = ACTIONS(1067), + [anon_sym_this] = ACTIONS(1321), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), + [anon_sym_base] = ACTIONS(1323), [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1067), + [anon_sym_unchecked] = ACTIONS(1317), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1579), + [anon_sym_throw] = ACTIONS(1325), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1581), - [anon_sym_DOT_DOT] = ACTIONS(1583), + [anon_sym_await] = ACTIONS(1327), + [anon_sym_DOT_DOT] = ACTIONS(1329), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -190970,19 +190856,19 @@ static const uint16_t ts_parse_table[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(1331), [anon_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(1333), + [anon_sym___reftype] = ACTIONS(1335), + [anon_sym___refvalue] = ACTIONS(1337), [sym_null_literal] = ACTIONS(139), [anon_sym_SQUOTE] = ACTIONS(141), [sym_integer_literal] = ACTIONS(139), [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1089), + [aux_sym_preproc_if_token1] = ACTIONS(1339), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -190999,84 +190885,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [883] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(5910), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2247), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(5360), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3379), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3080), - [sym_postfix_unary_expression] = STATE(3111), - [sym_prefix_unary_expression] = STATE(3111), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6154), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3080), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3111), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3080), - [sym_member_access_expression] = STATE(2484), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3111), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7575), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(3080), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3080), - [sym_typeof_expression] = STATE(3080), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2484), - [sym_literal] = STATE(3080), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2816), + [sym__name] = STATE(5873), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2238), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(4188), + [sym_non_lvalue_expression] = STATE(3495), + [sym_lvalue_expression] = STATE(3131), + [sym__expression_statement_expression] = STATE(3462), + [sym_assignment_expression] = STATE(3497), + [sym_binary_expression] = STATE(3462), + [sym_postfix_unary_expression] = STATE(3497), + [sym_prefix_unary_expression] = STATE(3497), + [sym__pointer_indirection_expression] = STATE(2815), + [sym_query_expression] = STATE(3462), + [sym_from_clause] = STATE(6140), + [sym_conditional_expression] = STATE(3462), + [sym_conditional_access_expression] = STATE(3462), + [sym_as_expression] = STATE(3462), + [sym_is_expression] = STATE(3462), + [sym_is_pattern_expression] = STATE(3462), + [sym_cast_expression] = STATE(3462), + [sym_checked_expression] = STATE(3462), + [sym_invocation_expression] = STATE(3497), + [sym_switch_expression] = STATE(3462), + [sym_await_expression] = STATE(3497), + [sym_throw_expression] = STATE(3462), + [sym_element_access_expression] = STATE(2815), + [sym_interpolated_string_expression] = STATE(3462), + [sym_member_access_expression] = STATE(2815), + [sym_object_creation_expression] = STATE(3497), + [sym_parenthesized_expression] = STATE(3497), + [sym__parenthesized_lvalue_expression] = STATE(2815), + [sym_lambda_expression] = STATE(3462), + [sym__lambda_expression_init] = STATE(7423), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3462), + [sym_anonymous_method_expression] = STATE(3462), + [sym_anonymous_object_creation_expression] = STATE(3462), + [sym_implicit_array_creation_expression] = STATE(3462), + [sym_implicit_object_creation_expression] = STATE(3462), + [sym_implicit_stackalloc_expression] = STATE(3462), + [sym_initializer_expression] = STATE(3462), + [sym_default_expression] = STATE(3462), + [sym_with_expression] = STATE(3462), + [sym_sizeof_expression] = STATE(3462), + [sym_typeof_expression] = STATE(3462), + [sym_makeref_expression] = STATE(3462), + [sym_ref_expression] = STATE(3462), + [sym_reftype_expression] = STATE(3462), + [sym_refvalue_expression] = STATE(3462), + [sym_stackalloc_expression] = STATE(3462), + [sym_range_expression] = STATE(3462), + [sym_tuple_expression] = STATE(2815), + [sym_literal] = STATE(3462), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3462), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(883), [sym_preproc_endregion] = STATE(883), [sym_preproc_line] = STATE(883), @@ -191086,47 +190972,47 @@ 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(3067), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), [aux_sym__lambda_expression_init_repeat1] = STATE(3367), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1481), - [anon_sym_LPAREN] = ACTIONS(895), - [anon_sym_ref] = ACTIONS(897), - [anon_sym_LBRACE] = ACTIONS(1487), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1305), + [anon_sym_LPAREN] = ACTIONS(1307), + [anon_sym_ref] = ACTIONS(1309), + [anon_sym_LBRACE] = ACTIONS(1311), + [anon_sym_delegate] = ACTIONS(1313), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1061), + [anon_sym_new] = ACTIONS(1315), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1067), - [anon_sym_BANG] = ACTIONS(1495), - [anon_sym_TILDE] = ACTIONS(1495), - [anon_sym_PLUS_PLUS] = ACTIONS(1495), - [anon_sym_DASH_DASH] = ACTIONS(1495), + [anon_sym_checked] = ACTIONS(1317), + [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(1493), - [anon_sym_DASH] = ACTIONS(1493), - [anon_sym_STAR] = ACTIONS(905), - [anon_sym_CARET] = ACTIONS(1495), - [anon_sym_AMP] = ACTIONS(1495), - [anon_sym_this] = ACTIONS(83), + [anon_sym_PLUS] = ACTIONS(1069), + [anon_sym_DASH] = ACTIONS(1069), + [anon_sym_STAR] = ACTIONS(1319), + [anon_sym_CARET] = ACTIONS(1067), + [anon_sym_AMP] = ACTIONS(1067), + [anon_sym_this] = ACTIONS(1321), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), + [anon_sym_base] = ACTIONS(1323), [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1067), + [anon_sym_unchecked] = ACTIONS(1317), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1079), + [anon_sym_throw] = ACTIONS(1325), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1081), - [anon_sym_DOT_DOT] = ACTIONS(911), + [anon_sym_await] = ACTIONS(1327), + [anon_sym_DOT_DOT] = ACTIONS(1329), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -191139,19 +191025,19 @@ static const uint16_t ts_parse_table[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(1331), [anon_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(1333), + [anon_sym___reftype] = ACTIONS(1335), + [anon_sym___refvalue] = ACTIONS(1337), [sym_null_literal] = ACTIONS(139), [anon_sym_SQUOTE] = ACTIONS(141), [sym_integer_literal] = ACTIONS(139), [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1089), + [aux_sym_preproc_if_token1] = ACTIONS(1339), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -191168,84 +191054,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [884] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2914), - [sym__name] = STATE(5885), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2357), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(3744), - [sym_non_lvalue_expression] = STATE(3880), - [sym_lvalue_expression] = STATE(2986), - [sym__expression_statement_expression] = STATE(3873), - [sym_assignment_expression] = STATE(3881), - [sym_binary_expression] = STATE(3873), - [sym_postfix_unary_expression] = STATE(3881), - [sym_prefix_unary_expression] = STATE(3881), - [sym__pointer_indirection_expression] = STATE(2913), - [sym_query_expression] = STATE(3873), - [sym_from_clause] = STATE(6168), - [sym_conditional_expression] = STATE(3873), - [sym_conditional_access_expression] = STATE(3873), - [sym_as_expression] = STATE(3873), - [sym_is_expression] = STATE(3873), - [sym_is_pattern_expression] = STATE(3873), - [sym_cast_expression] = STATE(3873), - [sym_checked_expression] = STATE(3873), - [sym_invocation_expression] = STATE(3881), - [sym_switch_expression] = STATE(3873), - [sym_await_expression] = STATE(3881), - [sym_throw_expression] = STATE(3873), - [sym_element_access_expression] = STATE(2913), - [sym_interpolated_string_expression] = STATE(3873), - [sym_member_access_expression] = STATE(2913), - [sym_object_creation_expression] = STATE(3881), - [sym_parenthesized_expression] = STATE(3881), - [sym__parenthesized_lvalue_expression] = STATE(2913), - [sym_lambda_expression] = STATE(3873), - [sym__lambda_expression_init] = STATE(7587), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3873), - [sym_anonymous_method_expression] = STATE(3873), - [sym_anonymous_object_creation_expression] = STATE(3873), - [sym_implicit_array_creation_expression] = STATE(3873), - [sym_implicit_object_creation_expression] = STATE(3873), - [sym_implicit_stackalloc_expression] = STATE(3873), - [sym_initializer_expression] = STATE(3873), - [sym_default_expression] = STATE(3873), - [sym_with_expression] = STATE(3873), - [sym_sizeof_expression] = STATE(3873), - [sym_typeof_expression] = STATE(3873), - [sym_makeref_expression] = STATE(3873), - [sym_ref_expression] = STATE(3873), - [sym_reftype_expression] = STATE(3873), - [sym_refvalue_expression] = STATE(3873), - [sym_stackalloc_expression] = STATE(3873), - [sym_range_expression] = STATE(3873), - [sym_tuple_expression] = STATE(2913), - [sym_literal] = STATE(3873), - [sym_character_literal] = STATE(3877), - [sym_string_literal] = STATE(3877), - [sym_raw_string_literal] = STATE(3877), - [sym_boolean_literal] = STATE(3877), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3873), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2816), + [sym__name] = STATE(5873), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2238), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(4210), + [sym_non_lvalue_expression] = STATE(3495), + [sym_lvalue_expression] = STATE(3131), + [sym__expression_statement_expression] = STATE(3462), + [sym_assignment_expression] = STATE(3497), + [sym_binary_expression] = STATE(3462), + [sym_postfix_unary_expression] = STATE(3497), + [sym_prefix_unary_expression] = STATE(3497), + [sym__pointer_indirection_expression] = STATE(2815), + [sym_query_expression] = STATE(3462), + [sym_from_clause] = STATE(6140), + [sym_conditional_expression] = STATE(3462), + [sym_conditional_access_expression] = STATE(3462), + [sym_as_expression] = STATE(3462), + [sym_is_expression] = STATE(3462), + [sym_is_pattern_expression] = STATE(3462), + [sym_cast_expression] = STATE(3462), + [sym_checked_expression] = STATE(3462), + [sym_invocation_expression] = STATE(3497), + [sym_switch_expression] = STATE(3462), + [sym_await_expression] = STATE(3497), + [sym_throw_expression] = STATE(3462), + [sym_element_access_expression] = STATE(2815), + [sym_interpolated_string_expression] = STATE(3462), + [sym_member_access_expression] = STATE(2815), + [sym_object_creation_expression] = STATE(3497), + [sym_parenthesized_expression] = STATE(3497), + [sym__parenthesized_lvalue_expression] = STATE(2815), + [sym_lambda_expression] = STATE(3462), + [sym__lambda_expression_init] = STATE(7423), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3462), + [sym_anonymous_method_expression] = STATE(3462), + [sym_anonymous_object_creation_expression] = STATE(3462), + [sym_implicit_array_creation_expression] = STATE(3462), + [sym_implicit_object_creation_expression] = STATE(3462), + [sym_implicit_stackalloc_expression] = STATE(3462), + [sym_initializer_expression] = STATE(3462), + [sym_default_expression] = STATE(3462), + [sym_with_expression] = STATE(3462), + [sym_sizeof_expression] = STATE(3462), + [sym_typeof_expression] = STATE(3462), + [sym_makeref_expression] = STATE(3462), + [sym_ref_expression] = STATE(3462), + [sym_reftype_expression] = STATE(3462), + [sym_refvalue_expression] = STATE(3462), + [sym_stackalloc_expression] = STATE(3462), + [sym_range_expression] = STATE(3462), + [sym_tuple_expression] = STATE(2815), + [sym_literal] = STATE(3462), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3462), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(884), [sym_preproc_endregion] = STATE(884), [sym_preproc_line] = STATE(884), @@ -191255,47 +191141,47 @@ 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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3382), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3367), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1627), - [anon_sym_LPAREN] = ACTIONS(2079), - [anon_sym_ref] = ACTIONS(2081), - [anon_sym_LBRACE] = ACTIONS(1633), - [anon_sym_delegate] = ACTIONS(1635), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1305), + [anon_sym_LPAREN] = ACTIONS(1307), + [anon_sym_ref] = ACTIONS(1309), + [anon_sym_LBRACE] = ACTIONS(1311), + [anon_sym_delegate] = ACTIONS(1313), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1731), + [anon_sym_new] = ACTIONS(1315), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1639), - [anon_sym_BANG] = ACTIONS(2085), - [anon_sym_TILDE] = ACTIONS(2085), - [anon_sym_PLUS_PLUS] = ACTIONS(2085), - [anon_sym_DASH_DASH] = ACTIONS(2085), - [anon_sym_true] = ACTIONS(1645), - [anon_sym_false] = ACTIONS(1645), - [anon_sym_PLUS] = ACTIONS(2083), - [anon_sym_DASH] = ACTIONS(2083), - [anon_sym_STAR] = ACTIONS(1737), - [anon_sym_CARET] = ACTIONS(2085), - [anon_sym_AMP] = ACTIONS(2085), - [anon_sym_this] = ACTIONS(1649), + [anon_sym_checked] = ACTIONS(1317), + [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(1319), + [anon_sym_CARET] = ACTIONS(1067), + [anon_sym_AMP] = ACTIONS(1067), + [anon_sym_this] = ACTIONS(1321), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1651), + [anon_sym_base] = ACTIONS(1323), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1653), - [anon_sym_unchecked] = ACTIONS(1639), + [sym_predefined_type] = ACTIONS(91), + [anon_sym_unchecked] = ACTIONS(1317), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1655), - [anon_sym_throw] = ACTIONS(2087), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(1325), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2089), - [anon_sym_DOT_DOT] = ACTIONS(2091), + [anon_sym_await] = ACTIONS(1327), + [anon_sym_DOT_DOT] = ACTIONS(1329), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -191308,19 +191194,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1663), - [anon_sym_sizeof] = ACTIONS(1665), - [anon_sym_typeof] = ACTIONS(1667), - [anon_sym___makeref] = ACTIONS(1669), - [anon_sym___reftype] = ACTIONS(1671), - [anon_sym___refvalue] = ACTIONS(1673), - [sym_null_literal] = ACTIONS(1675), - [anon_sym_SQUOTE] = ACTIONS(1677), - [sym_integer_literal] = ACTIONS(1675), - [sym_real_literal] = ACTIONS(1679), - [anon_sym_DQUOTE] = ACTIONS(1681), - [sym_verbatim_string_literal] = ACTIONS(1679), - [aux_sym_preproc_if_token1] = ACTIONS(1683), + [anon_sym_stackalloc] = ACTIONS(1331), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(1333), + [anon_sym___reftype] = ACTIONS(1335), + [anon_sym___refvalue] = ACTIONS(1337), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_literal] = ACTIONS(143), + [anon_sym_DQUOTE] = ACTIONS(145), + [sym_verbatim_string_literal] = ACTIONS(143), + [aux_sym_preproc_if_token1] = ACTIONS(1339), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -191331,90 +191217,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1685), - [sym_interpolation_verbatim_start] = ACTIONS(1687), - [sym_interpolation_raw_start] = ACTIONS(1689), - [sym_raw_string_start] = ACTIONS(1691), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [sym_interpolation_raw_start] = ACTIONS(155), + [sym_raw_string_start] = ACTIONS(157), }, [885] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(3184), - [sym__name] = STATE(5906), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2312), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2269), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(4571), - [sym_non_lvalue_expression] = STATE(4541), - [sym_lvalue_expression] = STATE(3439), - [sym__expression_statement_expression] = STATE(4529), - [sym_assignment_expression] = STATE(4543), - [sym_binary_expression] = STATE(4529), - [sym_postfix_unary_expression] = STATE(4543), - [sym_prefix_unary_expression] = STATE(4543), - [sym__pointer_indirection_expression] = STATE(3175), - [sym_query_expression] = STATE(4529), - [sym_from_clause] = STATE(6169), - [sym_conditional_expression] = STATE(4529), - [sym_conditional_access_expression] = STATE(4529), - [sym_as_expression] = STATE(4529), - [sym_is_expression] = STATE(4529), - [sym_is_pattern_expression] = STATE(4529), - [sym_cast_expression] = STATE(4529), - [sym_checked_expression] = STATE(4529), - [sym_invocation_expression] = STATE(4543), - [sym_switch_expression] = STATE(4529), - [sym_await_expression] = STATE(4543), - [sym_throw_expression] = STATE(4529), - [sym_element_access_expression] = STATE(3175), - [sym_interpolated_string_expression] = STATE(4529), - [sym_member_access_expression] = STATE(3175), - [sym_object_creation_expression] = STATE(4543), - [sym_parenthesized_expression] = STATE(4543), - [sym__parenthesized_lvalue_expression] = STATE(3175), - [sym_lambda_expression] = STATE(4529), - [sym__lambda_expression_init] = STATE(7684), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(4529), - [sym_anonymous_method_expression] = STATE(4529), - [sym_anonymous_object_creation_expression] = STATE(4529), - [sym_implicit_array_creation_expression] = STATE(4529), - [sym_implicit_object_creation_expression] = STATE(4529), - [sym_implicit_stackalloc_expression] = STATE(4529), - [sym_initializer_expression] = STATE(4529), - [sym_default_expression] = STATE(4529), - [sym_with_expression] = STATE(4529), - [sym_sizeof_expression] = STATE(4529), - [sym_typeof_expression] = STATE(4529), - [sym_makeref_expression] = STATE(4529), - [sym_ref_expression] = STATE(4529), - [sym_reftype_expression] = STATE(4529), - [sym_refvalue_expression] = STATE(4529), - [sym_stackalloc_expression] = STATE(4529), - [sym_range_expression] = STATE(4529), - [sym_tuple_expression] = STATE(3175), - [sym_literal] = STATE(4529), - [sym_character_literal] = STATE(4536), - [sym_string_literal] = STATE(4536), - [sym_raw_string_literal] = STATE(4536), - [sym_boolean_literal] = STATE(4536), - [sym_identifier] = STATE(2246), - [sym__reserved_identifier] = STATE(2240), - [sym_preproc_if_in_expression] = STATE(4529), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2816), + [sym__name] = STATE(5873), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2238), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(4211), + [sym_non_lvalue_expression] = STATE(3495), + [sym_lvalue_expression] = STATE(3131), + [sym__expression_statement_expression] = STATE(3462), + [sym_assignment_expression] = STATE(3497), + [sym_binary_expression] = STATE(3462), + [sym_postfix_unary_expression] = STATE(3497), + [sym_prefix_unary_expression] = STATE(3497), + [sym__pointer_indirection_expression] = STATE(2815), + [sym_query_expression] = STATE(3462), + [sym_from_clause] = STATE(6140), + [sym_conditional_expression] = STATE(3462), + [sym_conditional_access_expression] = STATE(3462), + [sym_as_expression] = STATE(3462), + [sym_is_expression] = STATE(3462), + [sym_is_pattern_expression] = STATE(3462), + [sym_cast_expression] = STATE(3462), + [sym_checked_expression] = STATE(3462), + [sym_invocation_expression] = STATE(3497), + [sym_switch_expression] = STATE(3462), + [sym_await_expression] = STATE(3497), + [sym_throw_expression] = STATE(3462), + [sym_element_access_expression] = STATE(2815), + [sym_interpolated_string_expression] = STATE(3462), + [sym_member_access_expression] = STATE(2815), + [sym_object_creation_expression] = STATE(3497), + [sym_parenthesized_expression] = STATE(3497), + [sym__parenthesized_lvalue_expression] = STATE(2815), + [sym_lambda_expression] = STATE(3462), + [sym__lambda_expression_init] = STATE(7423), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3462), + [sym_anonymous_method_expression] = STATE(3462), + [sym_anonymous_object_creation_expression] = STATE(3462), + [sym_implicit_array_creation_expression] = STATE(3462), + [sym_implicit_object_creation_expression] = STATE(3462), + [sym_implicit_stackalloc_expression] = STATE(3462), + [sym_initializer_expression] = STATE(3462), + [sym_default_expression] = STATE(3462), + [sym_with_expression] = STATE(3462), + [sym_sizeof_expression] = STATE(3462), + [sym_typeof_expression] = STATE(3462), + [sym_makeref_expression] = STATE(3462), + [sym_ref_expression] = STATE(3462), + [sym_reftype_expression] = STATE(3462), + [sym_refvalue_expression] = STATE(3462), + [sym_stackalloc_expression] = STATE(3462), + [sym_range_expression] = STATE(3462), + [sym_tuple_expression] = STATE(2815), + [sym_literal] = STATE(3462), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3462), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(885), [sym_preproc_endregion] = STATE(885), [sym_preproc_line] = STATE(885), @@ -191424,216 +191310,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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3363), - [sym__identifier_token] = ACTIONS(1387), - [anon_sym_alias] = ACTIONS(1389), - [anon_sym_global] = ACTIONS(1389), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1391), - [anon_sym_LPAREN] = ACTIONS(1775), - [anon_sym_ref] = ACTIONS(1777), - [anon_sym_LBRACE] = ACTIONS(1397), - [anon_sym_delegate] = ACTIONS(1399), - [anon_sym_async] = ACTIONS(1047), - [anon_sym_file] = ACTIONS(1389), - [anon_sym_new] = ACTIONS(1401), - [anon_sym_where] = ACTIONS(1389), - [anon_sym_notnull] = ACTIONS(1389), - [anon_sym_unmanaged] = ACTIONS(1389), - [anon_sym_checked] = ACTIONS(1403), - [anon_sym_BANG] = ACTIONS(1781), - [anon_sym_TILDE] = ACTIONS(1781), - [anon_sym_PLUS_PLUS] = ACTIONS(1781), - [anon_sym_DASH_DASH] = ACTIONS(1781), - [anon_sym_true] = ACTIONS(1409), - [anon_sym_false] = ACTIONS(1409), - [anon_sym_PLUS] = ACTIONS(1779), - [anon_sym_DASH] = ACTIONS(1779), - [anon_sym_STAR] = ACTIONS(1411), - [anon_sym_CARET] = ACTIONS(1781), - [anon_sym_AMP] = ACTIONS(1781), - [anon_sym_this] = ACTIONS(1413), - [anon_sym_scoped] = ACTIONS(1415), - [anon_sym_base] = ACTIONS(1417), - [anon_sym_var] = ACTIONS(1419), - [sym_predefined_type] = ACTIONS(1421), - [anon_sym_unchecked] = ACTIONS(1403), - [anon_sym_yield] = ACTIONS(1389), - [anon_sym_default] = ACTIONS(1423), - [anon_sym_throw] = ACTIONS(1783), - [anon_sym_when] = ACTIONS(1389), - [anon_sym_await] = ACTIONS(1785), - [anon_sym_DOT_DOT] = ACTIONS(1787), - [anon_sym_from] = ACTIONS(1431), - [anon_sym_into] = ACTIONS(1389), - [anon_sym_join] = ACTIONS(1389), - [anon_sym_on] = ACTIONS(1389), - [anon_sym_equals] = ACTIONS(1389), - [anon_sym_let] = ACTIONS(1389), - [anon_sym_orderby] = ACTIONS(1389), - [anon_sym_ascending] = ACTIONS(1389), - [anon_sym_descending] = ACTIONS(1389), - [anon_sym_group] = ACTIONS(1389), - [anon_sym_by] = ACTIONS(1389), - [anon_sym_select] = ACTIONS(1389), - [anon_sym_stackalloc] = ACTIONS(1433), - [anon_sym_sizeof] = ACTIONS(1435), - [anon_sym_typeof] = ACTIONS(1437), - [anon_sym___makeref] = ACTIONS(1439), - [anon_sym___reftype] = ACTIONS(1441), - [anon_sym___refvalue] = ACTIONS(1443), - [sym_null_literal] = ACTIONS(1445), - [anon_sym_SQUOTE] = ACTIONS(1447), - [sym_integer_literal] = ACTIONS(1445), - [sym_real_literal] = ACTIONS(1449), - [anon_sym_DQUOTE] = ACTIONS(1451), - [sym_verbatim_string_literal] = ACTIONS(1449), - [aux_sym_preproc_if_token1] = ACTIONS(1453), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1455), - [sym_interpolation_verbatim_start] = ACTIONS(1457), - [sym_interpolation_raw_start] = ACTIONS(1459), - [sym_raw_string_start] = ACTIONS(1461), - }, - [886] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(5907), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2404), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(4123), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3140), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3080), - [sym_postfix_unary_expression] = STATE(3111), - [sym_prefix_unary_expression] = STATE(3111), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6183), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3080), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3111), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3080), - [sym_member_access_expression] = STATE(2484), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3111), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7703), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(3080), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3080), - [sym_typeof_expression] = STATE(3080), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2484), - [sym_literal] = STATE(3080), - [sym_character_literal] = STATE(3011), - [sym_string_literal] = STATE(3011), - [sym_raw_string_literal] = STATE(3011), - [sym_boolean_literal] = STATE(3011), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), - [sym_preproc_region] = STATE(886), - [sym_preproc_endregion] = STATE(886), - [sym_preproc_line] = STATE(886), - [sym_preproc_pragma] = STATE(886), - [sym_preproc_nullable] = STATE(886), - [sym_preproc_error] = STATE(886), - [sym_preproc_warning] = STATE(886), - [sym_preproc_define] = STATE(886), - [sym_preproc_undef] = STATE(886), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3067), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), [aux_sym__lambda_expression_init_repeat1] = STATE(3367), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1481), - [anon_sym_LPAREN] = ACTIONS(2251), - [anon_sym_ref] = ACTIONS(2253), - [anon_sym_LBRACE] = ACTIONS(1487), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1305), + [anon_sym_LPAREN] = ACTIONS(1307), + [anon_sym_ref] = ACTIONS(1309), + [anon_sym_LBRACE] = ACTIONS(1311), + [anon_sym_delegate] = ACTIONS(1313), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1937), + [anon_sym_new] = ACTIONS(1315), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1067), - [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(1259), - [anon_sym_false] = ACTIONS(1259), - [anon_sym_PLUS] = ACTIONS(2255), - [anon_sym_DASH] = ACTIONS(2255), - [anon_sym_STAR] = ACTIONS(1943), - [anon_sym_CARET] = ACTIONS(2257), - [anon_sym_AMP] = ACTIONS(2257), - [anon_sym_this] = ACTIONS(83), + [anon_sym_checked] = ACTIONS(1317), + [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(1319), + [anon_sym_CARET] = ACTIONS(1067), + [anon_sym_AMP] = ACTIONS(1067), + [anon_sym_this] = ACTIONS(1321), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), + [anon_sym_base] = ACTIONS(1323), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1267), - [anon_sym_unchecked] = ACTIONS(1067), + [sym_predefined_type] = ACTIONS(91), + [anon_sym_unchecked] = ACTIONS(1317), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1269), - [anon_sym_throw] = ACTIONS(2259), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(1325), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2261), - [anon_sym_DOT_DOT] = ACTIONS(2263), + [anon_sym_await] = ACTIONS(1327), + [anon_sym_DOT_DOT] = ACTIONS(1329), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -191646,19 +191363,19 @@ static const uint16_t ts_parse_table[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(1279), - [anon_sym_typeof] = ACTIONS(1281), - [anon_sym___makeref] = ACTIONS(133), - [anon_sym___reftype] = ACTIONS(135), - [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(1289), - [anon_sym_SQUOTE] = ACTIONS(1291), - [sym_integer_literal] = ACTIONS(1289), - [sym_real_literal] = ACTIONS(1293), - [anon_sym_DQUOTE] = ACTIONS(1295), - [sym_verbatim_string_literal] = ACTIONS(1293), - [aux_sym_preproc_if_token1] = ACTIONS(1089), + [anon_sym_stackalloc] = ACTIONS(1331), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(1333), + [anon_sym___reftype] = ACTIONS(1335), + [anon_sym___refvalue] = ACTIONS(1337), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_literal] = ACTIONS(143), + [anon_sym_DQUOTE] = ACTIONS(145), + [sym_verbatim_string_literal] = ACTIONS(143), + [aux_sym_preproc_if_token1] = ACTIONS(1339), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -191669,140 +191386,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(1299), - [sym_interpolation_verbatim_start] = ACTIONS(1301), - [sym_interpolation_raw_start] = ACTIONS(1303), - [sym_raw_string_start] = ACTIONS(1305), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [sym_interpolation_raw_start] = ACTIONS(155), + [sym_raw_string_start] = ACTIONS(157), }, - [887] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2762), - [sym__name] = STATE(5910), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2247), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(4192), - [sym_non_lvalue_expression] = STATE(3438), - [sym_lvalue_expression] = STATE(3136), - [sym__expression_statement_expression] = STATE(3362), - [sym_assignment_expression] = STATE(3449), - [sym_binary_expression] = STATE(3362), - [sym_postfix_unary_expression] = STATE(3449), - [sym_prefix_unary_expression] = STATE(3449), - [sym__pointer_indirection_expression] = STATE(2747), - [sym_query_expression] = STATE(3362), - [sym_from_clause] = STATE(6171), - [sym_conditional_expression] = STATE(3362), - [sym_conditional_access_expression] = STATE(3362), - [sym_as_expression] = STATE(3362), - [sym_is_expression] = STATE(3362), - [sym_is_pattern_expression] = STATE(3362), - [sym_cast_expression] = STATE(3362), - [sym_checked_expression] = STATE(3362), - [sym_invocation_expression] = STATE(3449), - [sym_switch_expression] = STATE(3362), - [sym_await_expression] = STATE(3449), - [sym_throw_expression] = STATE(3362), - [sym_element_access_expression] = STATE(2747), - [sym_interpolated_string_expression] = STATE(3362), - [sym_member_access_expression] = STATE(2747), - [sym_object_creation_expression] = STATE(3449), - [sym_parenthesized_expression] = STATE(3449), - [sym__parenthesized_lvalue_expression] = STATE(2747), - [sym_lambda_expression] = STATE(3362), - [sym__lambda_expression_init] = STATE(7452), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3362), - [sym_anonymous_method_expression] = STATE(3362), - [sym_anonymous_object_creation_expression] = STATE(3362), - [sym_implicit_array_creation_expression] = STATE(3362), - [sym_implicit_object_creation_expression] = STATE(3362), - [sym_implicit_stackalloc_expression] = STATE(3362), - [sym_initializer_expression] = STATE(3362), - [sym_default_expression] = STATE(3362), - [sym_with_expression] = STATE(3362), - [sym_sizeof_expression] = STATE(3362), - [sym_typeof_expression] = STATE(3362), - [sym_makeref_expression] = STATE(3362), - [sym_ref_expression] = STATE(3362), - [sym_reftype_expression] = STATE(3362), - [sym_refvalue_expression] = STATE(3362), - [sym_stackalloc_expression] = STATE(3362), - [sym_range_expression] = STATE(3362), - [sym_tuple_expression] = STATE(2747), - [sym_literal] = STATE(3362), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3362), - [sym_preproc_if_in_attribute_list] = STATE(5576), - [sym_preproc_region] = STATE(887), - [sym_preproc_endregion] = STATE(887), - [sym_preproc_line] = STATE(887), - [sym_preproc_pragma] = STATE(887), - [sym_preproc_nullable] = STATE(887), - [sym_preproc_error] = STATE(887), - [sym_preproc_warning] = STATE(887), - [sym_preproc_define] = STATE(887), - [sym_preproc_undef] = STATE(887), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3385), + [886] = { + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2816), + [sym__name] = STATE(5873), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2238), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(4212), + [sym_non_lvalue_expression] = STATE(3495), + [sym_lvalue_expression] = STATE(3131), + [sym__expression_statement_expression] = STATE(3462), + [sym_assignment_expression] = STATE(3497), + [sym_binary_expression] = STATE(3462), + [sym_postfix_unary_expression] = STATE(3497), + [sym_prefix_unary_expression] = STATE(3497), + [sym__pointer_indirection_expression] = STATE(2815), + [sym_query_expression] = STATE(3462), + [sym_from_clause] = STATE(6140), + [sym_conditional_expression] = STATE(3462), + [sym_conditional_access_expression] = STATE(3462), + [sym_as_expression] = STATE(3462), + [sym_is_expression] = STATE(3462), + [sym_is_pattern_expression] = STATE(3462), + [sym_cast_expression] = STATE(3462), + [sym_checked_expression] = STATE(3462), + [sym_invocation_expression] = STATE(3497), + [sym_switch_expression] = STATE(3462), + [sym_await_expression] = STATE(3497), + [sym_throw_expression] = STATE(3462), + [sym_element_access_expression] = STATE(2815), + [sym_interpolated_string_expression] = STATE(3462), + [sym_member_access_expression] = STATE(2815), + [sym_object_creation_expression] = STATE(3497), + [sym_parenthesized_expression] = STATE(3497), + [sym__parenthesized_lvalue_expression] = STATE(2815), + [sym_lambda_expression] = STATE(3462), + [sym__lambda_expression_init] = STATE(7423), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3462), + [sym_anonymous_method_expression] = STATE(3462), + [sym_anonymous_object_creation_expression] = STATE(3462), + [sym_implicit_array_creation_expression] = STATE(3462), + [sym_implicit_object_creation_expression] = STATE(3462), + [sym_implicit_stackalloc_expression] = STATE(3462), + [sym_initializer_expression] = STATE(3462), + [sym_default_expression] = STATE(3462), + [sym_with_expression] = STATE(3462), + [sym_sizeof_expression] = STATE(3462), + [sym_typeof_expression] = STATE(3462), + [sym_makeref_expression] = STATE(3462), + [sym_ref_expression] = STATE(3462), + [sym_reftype_expression] = STATE(3462), + [sym_refvalue_expression] = STATE(3462), + [sym_stackalloc_expression] = STATE(3462), + [sym_range_expression] = STATE(3462), + [sym_tuple_expression] = STATE(2815), + [sym_literal] = STATE(3462), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3462), + [sym_preproc_if_in_attribute_list] = STATE(5583), + [sym_preproc_region] = STATE(886), + [sym_preproc_endregion] = STATE(886), + [sym_preproc_line] = STATE(886), + [sym_preproc_pragma] = STATE(886), + [sym_preproc_nullable] = STATE(886), + [sym_preproc_error] = STATE(886), + [sym_preproc_warning] = STATE(886), + [sym_preproc_define] = STATE(886), + [sym_preproc_undef] = STATE(886), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3367), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1307), - [anon_sym_LPAREN] = ACTIONS(1309), - [anon_sym_ref] = ACTIONS(1311), - [anon_sym_LBRACE] = ACTIONS(1313), - [anon_sym_delegate] = ACTIONS(1315), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1305), + [anon_sym_LPAREN] = ACTIONS(1307), + [anon_sym_ref] = ACTIONS(1309), + [anon_sym_LBRACE] = ACTIONS(1311), + [anon_sym_delegate] = ACTIONS(1313), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1317), + [anon_sym_new] = ACTIONS(1315), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1319), - [anon_sym_BANG] = ACTIONS(1069), - [anon_sym_TILDE] = ACTIONS(1069), - [anon_sym_PLUS_PLUS] = ACTIONS(1069), - [anon_sym_DASH_DASH] = ACTIONS(1069), + [anon_sym_checked] = ACTIONS(1317), + [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(1071), - [anon_sym_DASH] = ACTIONS(1071), - [anon_sym_STAR] = ACTIONS(1321), - [anon_sym_CARET] = ACTIONS(1069), - [anon_sym_AMP] = ACTIONS(1069), - [anon_sym_this] = ACTIONS(1323), + [anon_sym_PLUS] = ACTIONS(1069), + [anon_sym_DASH] = ACTIONS(1069), + [anon_sym_STAR] = ACTIONS(1319), + [anon_sym_CARET] = ACTIONS(1067), + [anon_sym_AMP] = ACTIONS(1067), + [anon_sym_this] = ACTIONS(1321), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1325), + [anon_sym_base] = ACTIONS(1323), [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1319), + [anon_sym_unchecked] = ACTIONS(1317), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1327), + [anon_sym_throw] = ACTIONS(1325), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1329), - [anon_sym_DOT_DOT] = ACTIONS(1331), + [anon_sym_await] = ACTIONS(1327), + [anon_sym_DOT_DOT] = ACTIONS(1329), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -191815,19 +191532,188 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1333), + [anon_sym_stackalloc] = ACTIONS(1331), [anon_sym_sizeof] = ACTIONS(129), [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(1335), - [anon_sym___reftype] = ACTIONS(1337), - [anon_sym___refvalue] = ACTIONS(1339), + [anon_sym___makeref] = ACTIONS(1333), + [anon_sym___reftype] = ACTIONS(1335), + [anon_sym___refvalue] = ACTIONS(1337), [sym_null_literal] = ACTIONS(139), [anon_sym_SQUOTE] = ACTIONS(141), [sym_integer_literal] = ACTIONS(139), [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1341), + [aux_sym_preproc_if_token1] = ACTIONS(1339), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(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), + }, + [887] = { + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2816), + [sym__name] = STATE(5873), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2238), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(4222), + [sym_non_lvalue_expression] = STATE(3495), + [sym_lvalue_expression] = STATE(3131), + [sym__expression_statement_expression] = STATE(3462), + [sym_assignment_expression] = STATE(3497), + [sym_binary_expression] = STATE(3462), + [sym_postfix_unary_expression] = STATE(3497), + [sym_prefix_unary_expression] = STATE(3497), + [sym__pointer_indirection_expression] = STATE(2815), + [sym_query_expression] = STATE(3462), + [sym_from_clause] = STATE(6140), + [sym_conditional_expression] = STATE(3462), + [sym_conditional_access_expression] = STATE(3462), + [sym_as_expression] = STATE(3462), + [sym_is_expression] = STATE(3462), + [sym_is_pattern_expression] = STATE(3462), + [sym_cast_expression] = STATE(3462), + [sym_checked_expression] = STATE(3462), + [sym_invocation_expression] = STATE(3497), + [sym_switch_expression] = STATE(3462), + [sym_await_expression] = STATE(3497), + [sym_throw_expression] = STATE(3462), + [sym_element_access_expression] = STATE(2815), + [sym_interpolated_string_expression] = STATE(3462), + [sym_member_access_expression] = STATE(2815), + [sym_object_creation_expression] = STATE(3497), + [sym_parenthesized_expression] = STATE(3497), + [sym__parenthesized_lvalue_expression] = STATE(2815), + [sym_lambda_expression] = STATE(3462), + [sym__lambda_expression_init] = STATE(7423), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3462), + [sym_anonymous_method_expression] = STATE(3462), + [sym_anonymous_object_creation_expression] = STATE(3462), + [sym_implicit_array_creation_expression] = STATE(3462), + [sym_implicit_object_creation_expression] = STATE(3462), + [sym_implicit_stackalloc_expression] = STATE(3462), + [sym_initializer_expression] = STATE(3462), + [sym_default_expression] = STATE(3462), + [sym_with_expression] = STATE(3462), + [sym_sizeof_expression] = STATE(3462), + [sym_typeof_expression] = STATE(3462), + [sym_makeref_expression] = STATE(3462), + [sym_ref_expression] = STATE(3462), + [sym_reftype_expression] = STATE(3462), + [sym_refvalue_expression] = STATE(3462), + [sym_stackalloc_expression] = STATE(3462), + [sym_range_expression] = STATE(3462), + [sym_tuple_expression] = STATE(2815), + [sym_literal] = STATE(3462), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3462), + [sym_preproc_if_in_attribute_list] = STATE(5583), + [sym_preproc_region] = STATE(887), + [sym_preproc_endregion] = STATE(887), + [sym_preproc_line] = STATE(887), + [sym_preproc_pragma] = STATE(887), + [sym_preproc_nullable] = STATE(887), + [sym_preproc_error] = STATE(887), + [sym_preproc_warning] = STATE(887), + [sym_preproc_define] = STATE(887), + [sym_preproc_undef] = STATE(887), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [sym__identifier_token] = ACTIONS(25), + [anon_sym_alias] = ACTIONS(29), + [anon_sym_global] = ACTIONS(29), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1305), + [anon_sym_LPAREN] = ACTIONS(1307), + [anon_sym_ref] = ACTIONS(1309), + [anon_sym_LBRACE] = ACTIONS(1311), + [anon_sym_delegate] = ACTIONS(1313), + [anon_sym_async] = ACTIONS(1045), + [anon_sym_file] = ACTIONS(29), + [anon_sym_new] = ACTIONS(1315), + [anon_sym_where] = ACTIONS(29), + [anon_sym_notnull] = ACTIONS(29), + [anon_sym_unmanaged] = ACTIONS(29), + [anon_sym_checked] = ACTIONS(1317), + [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(1319), + [anon_sym_CARET] = ACTIONS(1067), + [anon_sym_AMP] = ACTIONS(1067), + [anon_sym_this] = ACTIONS(1321), + [anon_sym_scoped] = ACTIONS(85), + [anon_sym_base] = ACTIONS(1323), + [anon_sym_var] = ACTIONS(89), + [sym_predefined_type] = ACTIONS(91), + [anon_sym_unchecked] = ACTIONS(1317), + [anon_sym_yield] = ACTIONS(29), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(1325), + [anon_sym_when] = ACTIONS(29), + [anon_sym_await] = ACTIONS(1327), + [anon_sym_DOT_DOT] = ACTIONS(1329), + [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(1331), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(1333), + [anon_sym___reftype] = ACTIONS(1335), + [anon_sym___refvalue] = ACTIONS(1337), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_literal] = ACTIONS(143), + [anon_sym_DQUOTE] = ACTIONS(145), + [sym_verbatim_string_literal] = ACTIONS(143), + [aux_sym_preproc_if_token1] = ACTIONS(1339), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -191844,84 +191730,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [888] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2762), - [sym__name] = STATE(5889), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2247), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(4324), - [sym_non_lvalue_expression] = STATE(3438), - [sym_lvalue_expression] = STATE(3224), - [sym__expression_statement_expression] = STATE(3362), - [sym_assignment_expression] = STATE(3449), - [sym_binary_expression] = STATE(3362), - [sym_postfix_unary_expression] = STATE(3449), - [sym_prefix_unary_expression] = STATE(3449), - [sym__pointer_indirection_expression] = STATE(2747), - [sym_query_expression] = STATE(3362), - [sym_from_clause] = STATE(6146), - [sym_conditional_expression] = STATE(3362), - [sym_conditional_access_expression] = STATE(3362), - [sym_as_expression] = STATE(3362), - [sym_is_expression] = STATE(3362), - [sym_is_pattern_expression] = STATE(3362), - [sym_cast_expression] = STATE(3362), - [sym_checked_expression] = STATE(3362), - [sym_invocation_expression] = STATE(3449), - [sym_switch_expression] = STATE(3362), - [sym_await_expression] = STATE(3449), - [sym_throw_expression] = STATE(3362), - [sym_element_access_expression] = STATE(2747), - [sym_interpolated_string_expression] = STATE(3362), - [sym_member_access_expression] = STATE(2747), - [sym_object_creation_expression] = STATE(3449), - [sym_parenthesized_expression] = STATE(3449), - [sym__parenthesized_lvalue_expression] = STATE(2747), - [sym_lambda_expression] = STATE(3362), - [sym__lambda_expression_init] = STATE(7381), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3362), - [sym_anonymous_method_expression] = STATE(3362), - [sym_anonymous_object_creation_expression] = STATE(3362), - [sym_implicit_array_creation_expression] = STATE(3362), - [sym_implicit_object_creation_expression] = STATE(3362), - [sym_implicit_stackalloc_expression] = STATE(3362), - [sym_initializer_expression] = STATE(3362), - [sym_default_expression] = STATE(3362), - [sym_with_expression] = STATE(3362), - [sym_sizeof_expression] = STATE(3362), - [sym_typeof_expression] = STATE(3362), - [sym_makeref_expression] = STATE(3362), - [sym_ref_expression] = STATE(3362), - [sym_reftype_expression] = STATE(3362), - [sym_refvalue_expression] = STATE(3362), - [sym_stackalloc_expression] = STATE(3362), - [sym_range_expression] = STATE(3362), - [sym_tuple_expression] = STATE(2747), - [sym_literal] = STATE(3362), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3362), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2816), + [sym__name] = STATE(5873), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2238), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(4227), + [sym_non_lvalue_expression] = STATE(3495), + [sym_lvalue_expression] = STATE(3131), + [sym__expression_statement_expression] = STATE(3462), + [sym_assignment_expression] = STATE(3497), + [sym_binary_expression] = STATE(3462), + [sym_postfix_unary_expression] = STATE(3497), + [sym_prefix_unary_expression] = STATE(3497), + [sym__pointer_indirection_expression] = STATE(2815), + [sym_query_expression] = STATE(3462), + [sym_from_clause] = STATE(6140), + [sym_conditional_expression] = STATE(3462), + [sym_conditional_access_expression] = STATE(3462), + [sym_as_expression] = STATE(3462), + [sym_is_expression] = STATE(3462), + [sym_is_pattern_expression] = STATE(3462), + [sym_cast_expression] = STATE(3462), + [sym_checked_expression] = STATE(3462), + [sym_invocation_expression] = STATE(3497), + [sym_switch_expression] = STATE(3462), + [sym_await_expression] = STATE(3497), + [sym_throw_expression] = STATE(3462), + [sym_element_access_expression] = STATE(2815), + [sym_interpolated_string_expression] = STATE(3462), + [sym_member_access_expression] = STATE(2815), + [sym_object_creation_expression] = STATE(3497), + [sym_parenthesized_expression] = STATE(3497), + [sym__parenthesized_lvalue_expression] = STATE(2815), + [sym_lambda_expression] = STATE(3462), + [sym__lambda_expression_init] = STATE(7423), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3462), + [sym_anonymous_method_expression] = STATE(3462), + [sym_anonymous_object_creation_expression] = STATE(3462), + [sym_implicit_array_creation_expression] = STATE(3462), + [sym_implicit_object_creation_expression] = STATE(3462), + [sym_implicit_stackalloc_expression] = STATE(3462), + [sym_initializer_expression] = STATE(3462), + [sym_default_expression] = STATE(3462), + [sym_with_expression] = STATE(3462), + [sym_sizeof_expression] = STATE(3462), + [sym_typeof_expression] = STATE(3462), + [sym_makeref_expression] = STATE(3462), + [sym_ref_expression] = STATE(3462), + [sym_reftype_expression] = STATE(3462), + [sym_refvalue_expression] = STATE(3462), + [sym_stackalloc_expression] = STATE(3462), + [sym_range_expression] = STATE(3462), + [sym_tuple_expression] = STATE(2815), + [sym_literal] = STATE(3462), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3462), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(888), [sym_preproc_endregion] = STATE(888), [sym_preproc_line] = STATE(888), @@ -191931,47 +191817,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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3385), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3367), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1307), - [anon_sym_LPAREN] = ACTIONS(1359), - [anon_sym_ref] = ACTIONS(1361), - [anon_sym_LBRACE] = ACTIONS(1313), - [anon_sym_delegate] = ACTIONS(1315), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1305), + [anon_sym_LPAREN] = ACTIONS(1307), + [anon_sym_ref] = ACTIONS(1309), + [anon_sym_LBRACE] = ACTIONS(1311), + [anon_sym_delegate] = ACTIONS(1313), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1317), + [anon_sym_new] = ACTIONS(1315), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1319), - [anon_sym_BANG] = ACTIONS(1107), - [anon_sym_TILDE] = ACTIONS(1107), - [anon_sym_PLUS_PLUS] = ACTIONS(1107), - [anon_sym_DASH_DASH] = ACTIONS(1107), + [anon_sym_checked] = ACTIONS(1317), + [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(1109), - [anon_sym_DASH] = ACTIONS(1109), - [anon_sym_STAR] = ACTIONS(1363), - [anon_sym_CARET] = ACTIONS(1107), - [anon_sym_AMP] = ACTIONS(1107), - [anon_sym_this] = ACTIONS(1323), + [anon_sym_PLUS] = ACTIONS(1069), + [anon_sym_DASH] = ACTIONS(1069), + [anon_sym_STAR] = ACTIONS(1319), + [anon_sym_CARET] = ACTIONS(1067), + [anon_sym_AMP] = ACTIONS(1067), + [anon_sym_this] = ACTIONS(1321), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1325), + [anon_sym_base] = ACTIONS(1323), [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1319), + [anon_sym_unchecked] = ACTIONS(1317), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1365), + [anon_sym_throw] = ACTIONS(1325), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1367), - [anon_sym_DOT_DOT] = ACTIONS(1369), + [anon_sym_await] = ACTIONS(1327), + [anon_sym_DOT_DOT] = ACTIONS(1329), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -191984,19 +191870,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1333), + [anon_sym_stackalloc] = ACTIONS(1331), [anon_sym_sizeof] = ACTIONS(129), [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(1335), - [anon_sym___reftype] = ACTIONS(1337), - [anon_sym___refvalue] = ACTIONS(1339), + [anon_sym___makeref] = ACTIONS(1333), + [anon_sym___reftype] = ACTIONS(1335), + [anon_sym___refvalue] = ACTIONS(1337), [sym_null_literal] = ACTIONS(139), [anon_sym_SQUOTE] = ACTIONS(141), [sym_integer_literal] = ACTIONS(139), [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1341), + [aux_sym_preproc_if_token1] = ACTIONS(1339), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -192013,84 +191899,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [889] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2762), - [sym__name] = STATE(5889), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2247), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(4325), - [sym_non_lvalue_expression] = STATE(3438), - [sym_lvalue_expression] = STATE(3224), - [sym__expression_statement_expression] = STATE(3362), - [sym_assignment_expression] = STATE(3449), - [sym_binary_expression] = STATE(3362), - [sym_postfix_unary_expression] = STATE(3449), - [sym_prefix_unary_expression] = STATE(3449), - [sym__pointer_indirection_expression] = STATE(2747), - [sym_query_expression] = STATE(3362), - [sym_from_clause] = STATE(6146), - [sym_conditional_expression] = STATE(3362), - [sym_conditional_access_expression] = STATE(3362), - [sym_as_expression] = STATE(3362), - [sym_is_expression] = STATE(3362), - [sym_is_pattern_expression] = STATE(3362), - [sym_cast_expression] = STATE(3362), - [sym_checked_expression] = STATE(3362), - [sym_invocation_expression] = STATE(3449), - [sym_switch_expression] = STATE(3362), - [sym_await_expression] = STATE(3449), - [sym_throw_expression] = STATE(3362), - [sym_element_access_expression] = STATE(2747), - [sym_interpolated_string_expression] = STATE(3362), - [sym_member_access_expression] = STATE(2747), - [sym_object_creation_expression] = STATE(3449), - [sym_parenthesized_expression] = STATE(3449), - [sym__parenthesized_lvalue_expression] = STATE(2747), - [sym_lambda_expression] = STATE(3362), - [sym__lambda_expression_init] = STATE(7381), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3362), - [sym_anonymous_method_expression] = STATE(3362), - [sym_anonymous_object_creation_expression] = STATE(3362), - [sym_implicit_array_creation_expression] = STATE(3362), - [sym_implicit_object_creation_expression] = STATE(3362), - [sym_implicit_stackalloc_expression] = STATE(3362), - [sym_initializer_expression] = STATE(3362), - [sym_default_expression] = STATE(3362), - [sym_with_expression] = STATE(3362), - [sym_sizeof_expression] = STATE(3362), - [sym_typeof_expression] = STATE(3362), - [sym_makeref_expression] = STATE(3362), - [sym_ref_expression] = STATE(3362), - [sym_reftype_expression] = STATE(3362), - [sym_refvalue_expression] = STATE(3362), - [sym_stackalloc_expression] = STATE(3362), - [sym_range_expression] = STATE(3362), - [sym_tuple_expression] = STATE(2747), - [sym_literal] = STATE(3362), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3362), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2816), + [sym__name] = STATE(5873), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2238), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(4183), + [sym_non_lvalue_expression] = STATE(3495), + [sym_lvalue_expression] = STATE(3131), + [sym__expression_statement_expression] = STATE(3462), + [sym_assignment_expression] = STATE(3497), + [sym_binary_expression] = STATE(3462), + [sym_postfix_unary_expression] = STATE(3497), + [sym_prefix_unary_expression] = STATE(3497), + [sym__pointer_indirection_expression] = STATE(2815), + [sym_query_expression] = STATE(3462), + [sym_from_clause] = STATE(6140), + [sym_conditional_expression] = STATE(3462), + [sym_conditional_access_expression] = STATE(3462), + [sym_as_expression] = STATE(3462), + [sym_is_expression] = STATE(3462), + [sym_is_pattern_expression] = STATE(3462), + [sym_cast_expression] = STATE(3462), + [sym_checked_expression] = STATE(3462), + [sym_invocation_expression] = STATE(3497), + [sym_switch_expression] = STATE(3462), + [sym_await_expression] = STATE(3497), + [sym_throw_expression] = STATE(3462), + [sym_element_access_expression] = STATE(2815), + [sym_interpolated_string_expression] = STATE(3462), + [sym_member_access_expression] = STATE(2815), + [sym_object_creation_expression] = STATE(3497), + [sym_parenthesized_expression] = STATE(3497), + [sym__parenthesized_lvalue_expression] = STATE(2815), + [sym_lambda_expression] = STATE(3462), + [sym__lambda_expression_init] = STATE(7423), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3462), + [sym_anonymous_method_expression] = STATE(3462), + [sym_anonymous_object_creation_expression] = STATE(3462), + [sym_implicit_array_creation_expression] = STATE(3462), + [sym_implicit_object_creation_expression] = STATE(3462), + [sym_implicit_stackalloc_expression] = STATE(3462), + [sym_initializer_expression] = STATE(3462), + [sym_default_expression] = STATE(3462), + [sym_with_expression] = STATE(3462), + [sym_sizeof_expression] = STATE(3462), + [sym_typeof_expression] = STATE(3462), + [sym_makeref_expression] = STATE(3462), + [sym_ref_expression] = STATE(3462), + [sym_reftype_expression] = STATE(3462), + [sym_refvalue_expression] = STATE(3462), + [sym_stackalloc_expression] = STATE(3462), + [sym_range_expression] = STATE(3462), + [sym_tuple_expression] = STATE(2815), + [sym_literal] = STATE(3462), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3462), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(889), [sym_preproc_endregion] = STATE(889), [sym_preproc_line] = STATE(889), @@ -192100,47 +191986,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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3385), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3367), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1307), - [anon_sym_LPAREN] = ACTIONS(1359), - [anon_sym_ref] = ACTIONS(1361), - [anon_sym_LBRACE] = ACTIONS(1313), - [anon_sym_delegate] = ACTIONS(1315), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1305), + [anon_sym_LPAREN] = ACTIONS(1307), + [anon_sym_ref] = ACTIONS(1309), + [anon_sym_LBRACE] = ACTIONS(1311), + [anon_sym_delegate] = ACTIONS(1313), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1317), + [anon_sym_new] = ACTIONS(1315), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1319), - [anon_sym_BANG] = ACTIONS(1107), - [anon_sym_TILDE] = ACTIONS(1107), - [anon_sym_PLUS_PLUS] = ACTIONS(1107), - [anon_sym_DASH_DASH] = ACTIONS(1107), + [anon_sym_checked] = ACTIONS(1317), + [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(1109), - [anon_sym_DASH] = ACTIONS(1109), - [anon_sym_STAR] = ACTIONS(1363), - [anon_sym_CARET] = ACTIONS(1107), - [anon_sym_AMP] = ACTIONS(1107), - [anon_sym_this] = ACTIONS(1323), + [anon_sym_PLUS] = ACTIONS(1069), + [anon_sym_DASH] = ACTIONS(1069), + [anon_sym_STAR] = ACTIONS(1319), + [anon_sym_CARET] = ACTIONS(1067), + [anon_sym_AMP] = ACTIONS(1067), + [anon_sym_this] = ACTIONS(1321), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1325), + [anon_sym_base] = ACTIONS(1323), [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1319), + [anon_sym_unchecked] = ACTIONS(1317), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1365), + [anon_sym_throw] = ACTIONS(1325), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1367), - [anon_sym_DOT_DOT] = ACTIONS(1369), + [anon_sym_await] = ACTIONS(1327), + [anon_sym_DOT_DOT] = ACTIONS(1329), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -192153,19 +192039,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1333), + [anon_sym_stackalloc] = ACTIONS(1331), [anon_sym_sizeof] = ACTIONS(129), [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(1335), - [anon_sym___reftype] = ACTIONS(1337), - [anon_sym___refvalue] = ACTIONS(1339), + [anon_sym___makeref] = ACTIONS(1333), + [anon_sym___reftype] = ACTIONS(1335), + [anon_sym___refvalue] = ACTIONS(1337), [sym_null_literal] = ACTIONS(139), [anon_sym_SQUOTE] = ACTIONS(141), [sym_integer_literal] = ACTIONS(139), [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1341), + [aux_sym_preproc_if_token1] = ACTIONS(1339), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -192182,84 +192068,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [890] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2762), - [sym__name] = STATE(5889), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2247), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(4318), - [sym_non_lvalue_expression] = STATE(3438), - [sym_lvalue_expression] = STATE(3224), - [sym__expression_statement_expression] = STATE(3362), - [sym_assignment_expression] = STATE(3449), - [sym_binary_expression] = STATE(3362), - [sym_postfix_unary_expression] = STATE(3449), - [sym_prefix_unary_expression] = STATE(3449), - [sym__pointer_indirection_expression] = STATE(2747), - [sym_query_expression] = STATE(3362), - [sym_from_clause] = STATE(6146), - [sym_conditional_expression] = STATE(3362), - [sym_conditional_access_expression] = STATE(3362), - [sym_as_expression] = STATE(3362), - [sym_is_expression] = STATE(3362), - [sym_is_pattern_expression] = STATE(3362), - [sym_cast_expression] = STATE(3362), - [sym_checked_expression] = STATE(3362), - [sym_invocation_expression] = STATE(3449), - [sym_switch_expression] = STATE(3362), - [sym_await_expression] = STATE(3449), - [sym_throw_expression] = STATE(3362), - [sym_element_access_expression] = STATE(2747), - [sym_interpolated_string_expression] = STATE(3362), - [sym_member_access_expression] = STATE(2747), - [sym_object_creation_expression] = STATE(3449), - [sym_parenthesized_expression] = STATE(3449), - [sym__parenthesized_lvalue_expression] = STATE(2747), - [sym_lambda_expression] = STATE(3362), - [sym__lambda_expression_init] = STATE(7381), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3362), - [sym_anonymous_method_expression] = STATE(3362), - [sym_anonymous_object_creation_expression] = STATE(3362), - [sym_implicit_array_creation_expression] = STATE(3362), - [sym_implicit_object_creation_expression] = STATE(3362), - [sym_implicit_stackalloc_expression] = STATE(3362), - [sym_initializer_expression] = STATE(3362), - [sym_default_expression] = STATE(3362), - [sym_with_expression] = STATE(3362), - [sym_sizeof_expression] = STATE(3362), - [sym_typeof_expression] = STATE(3362), - [sym_makeref_expression] = STATE(3362), - [sym_ref_expression] = STATE(3362), - [sym_reftype_expression] = STATE(3362), - [sym_refvalue_expression] = STATE(3362), - [sym_stackalloc_expression] = STATE(3362), - [sym_range_expression] = STATE(3362), - [sym_tuple_expression] = STATE(2747), - [sym_literal] = STATE(3362), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3362), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2816), + [sym__name] = STATE(5873), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2238), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(4189), + [sym_non_lvalue_expression] = STATE(3495), + [sym_lvalue_expression] = STATE(3131), + [sym__expression_statement_expression] = STATE(3462), + [sym_assignment_expression] = STATE(3497), + [sym_binary_expression] = STATE(3462), + [sym_postfix_unary_expression] = STATE(3497), + [sym_prefix_unary_expression] = STATE(3497), + [sym__pointer_indirection_expression] = STATE(2815), + [sym_query_expression] = STATE(3462), + [sym_from_clause] = STATE(6140), + [sym_conditional_expression] = STATE(3462), + [sym_conditional_access_expression] = STATE(3462), + [sym_as_expression] = STATE(3462), + [sym_is_expression] = STATE(3462), + [sym_is_pattern_expression] = STATE(3462), + [sym_cast_expression] = STATE(3462), + [sym_checked_expression] = STATE(3462), + [sym_invocation_expression] = STATE(3497), + [sym_switch_expression] = STATE(3462), + [sym_await_expression] = STATE(3497), + [sym_throw_expression] = STATE(3462), + [sym_element_access_expression] = STATE(2815), + [sym_interpolated_string_expression] = STATE(3462), + [sym_member_access_expression] = STATE(2815), + [sym_object_creation_expression] = STATE(3497), + [sym_parenthesized_expression] = STATE(3497), + [sym__parenthesized_lvalue_expression] = STATE(2815), + [sym_lambda_expression] = STATE(3462), + [sym__lambda_expression_init] = STATE(7423), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3462), + [sym_anonymous_method_expression] = STATE(3462), + [sym_anonymous_object_creation_expression] = STATE(3462), + [sym_implicit_array_creation_expression] = STATE(3462), + [sym_implicit_object_creation_expression] = STATE(3462), + [sym_implicit_stackalloc_expression] = STATE(3462), + [sym_initializer_expression] = STATE(3462), + [sym_default_expression] = STATE(3462), + [sym_with_expression] = STATE(3462), + [sym_sizeof_expression] = STATE(3462), + [sym_typeof_expression] = STATE(3462), + [sym_makeref_expression] = STATE(3462), + [sym_ref_expression] = STATE(3462), + [sym_reftype_expression] = STATE(3462), + [sym_refvalue_expression] = STATE(3462), + [sym_stackalloc_expression] = STATE(3462), + [sym_range_expression] = STATE(3462), + [sym_tuple_expression] = STATE(2815), + [sym_literal] = STATE(3462), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3462), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(890), [sym_preproc_endregion] = STATE(890), [sym_preproc_line] = STATE(890), @@ -192269,47 +192155,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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3385), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3367), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1307), - [anon_sym_LPAREN] = ACTIONS(1359), - [anon_sym_ref] = ACTIONS(1361), - [anon_sym_LBRACE] = ACTIONS(1313), - [anon_sym_delegate] = ACTIONS(1315), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1305), + [anon_sym_LPAREN] = ACTIONS(1307), + [anon_sym_ref] = ACTIONS(1309), + [anon_sym_LBRACE] = ACTIONS(1311), + [anon_sym_delegate] = ACTIONS(1313), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1317), + [anon_sym_new] = ACTIONS(1315), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1319), - [anon_sym_BANG] = ACTIONS(1107), - [anon_sym_TILDE] = ACTIONS(1107), - [anon_sym_PLUS_PLUS] = ACTIONS(1107), - [anon_sym_DASH_DASH] = ACTIONS(1107), + [anon_sym_checked] = ACTIONS(1317), + [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(1109), - [anon_sym_DASH] = ACTIONS(1109), - [anon_sym_STAR] = ACTIONS(1363), - [anon_sym_CARET] = ACTIONS(1107), - [anon_sym_AMP] = ACTIONS(1107), - [anon_sym_this] = ACTIONS(1323), + [anon_sym_PLUS] = ACTIONS(1069), + [anon_sym_DASH] = ACTIONS(1069), + [anon_sym_STAR] = ACTIONS(1319), + [anon_sym_CARET] = ACTIONS(1067), + [anon_sym_AMP] = ACTIONS(1067), + [anon_sym_this] = ACTIONS(1321), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1325), + [anon_sym_base] = ACTIONS(1323), [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1319), + [anon_sym_unchecked] = ACTIONS(1317), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1365), + [anon_sym_throw] = ACTIONS(1325), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1367), - [anon_sym_DOT_DOT] = ACTIONS(1369), + [anon_sym_await] = ACTIONS(1327), + [anon_sym_DOT_DOT] = ACTIONS(1329), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -192322,19 +192208,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1333), + [anon_sym_stackalloc] = ACTIONS(1331), [anon_sym_sizeof] = ACTIONS(129), [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(1335), - [anon_sym___reftype] = ACTIONS(1337), - [anon_sym___refvalue] = ACTIONS(1339), + [anon_sym___makeref] = ACTIONS(1333), + [anon_sym___reftype] = ACTIONS(1335), + [anon_sym___refvalue] = ACTIONS(1337), [sym_null_literal] = ACTIONS(139), [anon_sym_SQUOTE] = ACTIONS(141), [sym_integer_literal] = ACTIONS(139), [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1341), + [aux_sym_preproc_if_token1] = ACTIONS(1339), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -192351,84 +192237,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [891] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2762), - [sym__name] = STATE(5889), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2247), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(4328), - [sym_non_lvalue_expression] = STATE(3438), - [sym_lvalue_expression] = STATE(3224), - [sym__expression_statement_expression] = STATE(3362), - [sym_assignment_expression] = STATE(3449), - [sym_binary_expression] = STATE(3362), - [sym_postfix_unary_expression] = STATE(3449), - [sym_prefix_unary_expression] = STATE(3449), - [sym__pointer_indirection_expression] = STATE(2747), - [sym_query_expression] = STATE(3362), - [sym_from_clause] = STATE(6146), - [sym_conditional_expression] = STATE(3362), - [sym_conditional_access_expression] = STATE(3362), - [sym_as_expression] = STATE(3362), - [sym_is_expression] = STATE(3362), - [sym_is_pattern_expression] = STATE(3362), - [sym_cast_expression] = STATE(3362), - [sym_checked_expression] = STATE(3362), - [sym_invocation_expression] = STATE(3449), - [sym_switch_expression] = STATE(3362), - [sym_await_expression] = STATE(3449), - [sym_throw_expression] = STATE(3362), - [sym_element_access_expression] = STATE(2747), - [sym_interpolated_string_expression] = STATE(3362), - [sym_member_access_expression] = STATE(2747), - [sym_object_creation_expression] = STATE(3449), - [sym_parenthesized_expression] = STATE(3449), - [sym__parenthesized_lvalue_expression] = STATE(2747), - [sym_lambda_expression] = STATE(3362), - [sym__lambda_expression_init] = STATE(7381), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3362), - [sym_anonymous_method_expression] = STATE(3362), - [sym_anonymous_object_creation_expression] = STATE(3362), - [sym_implicit_array_creation_expression] = STATE(3362), - [sym_implicit_object_creation_expression] = STATE(3362), - [sym_implicit_stackalloc_expression] = STATE(3362), - [sym_initializer_expression] = STATE(3362), - [sym_default_expression] = STATE(3362), - [sym_with_expression] = STATE(3362), - [sym_sizeof_expression] = STATE(3362), - [sym_typeof_expression] = STATE(3362), - [sym_makeref_expression] = STATE(3362), - [sym_ref_expression] = STATE(3362), - [sym_reftype_expression] = STATE(3362), - [sym_refvalue_expression] = STATE(3362), - [sym_stackalloc_expression] = STATE(3362), - [sym_range_expression] = STATE(3362), - [sym_tuple_expression] = STATE(2747), - [sym_literal] = STATE(3362), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3362), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2816), + [sym__name] = STATE(5873), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2238), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(3214), + [sym_non_lvalue_expression] = STATE(3495), + [sym_lvalue_expression] = STATE(3131), + [sym__expression_statement_expression] = STATE(3462), + [sym_assignment_expression] = STATE(3497), + [sym_binary_expression] = STATE(3462), + [sym_postfix_unary_expression] = STATE(3497), + [sym_prefix_unary_expression] = STATE(3497), + [sym__pointer_indirection_expression] = STATE(2815), + [sym_query_expression] = STATE(3462), + [sym_from_clause] = STATE(6140), + [sym_conditional_expression] = STATE(3462), + [sym_conditional_access_expression] = STATE(3462), + [sym_as_expression] = STATE(3462), + [sym_is_expression] = STATE(3462), + [sym_is_pattern_expression] = STATE(3462), + [sym_cast_expression] = STATE(3462), + [sym_checked_expression] = STATE(3462), + [sym_invocation_expression] = STATE(3497), + [sym_switch_expression] = STATE(3462), + [sym_await_expression] = STATE(3497), + [sym_throw_expression] = STATE(3462), + [sym_element_access_expression] = STATE(2815), + [sym_interpolated_string_expression] = STATE(3462), + [sym_member_access_expression] = STATE(2815), + [sym_object_creation_expression] = STATE(3497), + [sym_parenthesized_expression] = STATE(3497), + [sym__parenthesized_lvalue_expression] = STATE(2815), + [sym_lambda_expression] = STATE(3462), + [sym__lambda_expression_init] = STATE(7423), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3462), + [sym_anonymous_method_expression] = STATE(3462), + [sym_anonymous_object_creation_expression] = STATE(3462), + [sym_implicit_array_creation_expression] = STATE(3462), + [sym_implicit_object_creation_expression] = STATE(3462), + [sym_implicit_stackalloc_expression] = STATE(3462), + [sym_initializer_expression] = STATE(3462), + [sym_default_expression] = STATE(3462), + [sym_with_expression] = STATE(3462), + [sym_sizeof_expression] = STATE(3462), + [sym_typeof_expression] = STATE(3462), + [sym_makeref_expression] = STATE(3462), + [sym_ref_expression] = STATE(3462), + [sym_reftype_expression] = STATE(3462), + [sym_refvalue_expression] = STATE(3462), + [sym_stackalloc_expression] = STATE(3462), + [sym_range_expression] = STATE(3462), + [sym_tuple_expression] = STATE(2815), + [sym_literal] = STATE(3462), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3462), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(891), [sym_preproc_endregion] = STATE(891), [sym_preproc_line] = STATE(891), @@ -192438,47 +192324,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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3385), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3367), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1307), - [anon_sym_LPAREN] = ACTIONS(1359), - [anon_sym_ref] = ACTIONS(1361), - [anon_sym_LBRACE] = ACTIONS(1313), - [anon_sym_delegate] = ACTIONS(1315), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1305), + [anon_sym_LPAREN] = ACTIONS(1307), + [anon_sym_ref] = ACTIONS(1309), + [anon_sym_LBRACE] = ACTIONS(1311), + [anon_sym_delegate] = ACTIONS(1313), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1317), + [anon_sym_new] = ACTIONS(1315), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1319), - [anon_sym_BANG] = ACTIONS(1107), - [anon_sym_TILDE] = ACTIONS(1107), - [anon_sym_PLUS_PLUS] = ACTIONS(1107), - [anon_sym_DASH_DASH] = ACTIONS(1107), + [anon_sym_checked] = ACTIONS(1317), + [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(1109), - [anon_sym_DASH] = ACTIONS(1109), - [anon_sym_STAR] = ACTIONS(1363), - [anon_sym_CARET] = ACTIONS(1107), - [anon_sym_AMP] = ACTIONS(1107), - [anon_sym_this] = ACTIONS(1323), + [anon_sym_PLUS] = ACTIONS(1069), + [anon_sym_DASH] = ACTIONS(1069), + [anon_sym_STAR] = ACTIONS(1319), + [anon_sym_CARET] = ACTIONS(1067), + [anon_sym_AMP] = ACTIONS(1067), + [anon_sym_this] = ACTIONS(1321), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1325), + [anon_sym_base] = ACTIONS(1323), [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1319), + [anon_sym_unchecked] = ACTIONS(1317), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1365), + [anon_sym_throw] = ACTIONS(1325), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1367), - [anon_sym_DOT_DOT] = ACTIONS(1369), + [anon_sym_await] = ACTIONS(1327), + [anon_sym_DOT_DOT] = ACTIONS(1329), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -192491,19 +192377,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1333), + [anon_sym_stackalloc] = ACTIONS(1331), [anon_sym_sizeof] = ACTIONS(129), [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(1335), - [anon_sym___reftype] = ACTIONS(1337), - [anon_sym___refvalue] = ACTIONS(1339), + [anon_sym___makeref] = ACTIONS(1333), + [anon_sym___reftype] = ACTIONS(1335), + [anon_sym___refvalue] = ACTIONS(1337), [sym_null_literal] = ACTIONS(139), [anon_sym_SQUOTE] = ACTIONS(141), [sym_integer_literal] = ACTIONS(139), [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1341), + [aux_sym_preproc_if_token1] = ACTIONS(1339), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -192520,84 +192406,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [892] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2762), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2901), [sym__name] = STATE(5889), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2247), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(4329), - [sym_non_lvalue_expression] = STATE(3438), - [sym_lvalue_expression] = STATE(3224), - [sym__expression_statement_expression] = STATE(3362), - [sym_assignment_expression] = STATE(3449), - [sym_binary_expression] = STATE(3362), - [sym_postfix_unary_expression] = STATE(3449), - [sym_prefix_unary_expression] = STATE(3449), - [sym__pointer_indirection_expression] = STATE(2747), - [sym_query_expression] = STATE(3362), - [sym_from_clause] = STATE(6146), - [sym_conditional_expression] = STATE(3362), - [sym_conditional_access_expression] = STATE(3362), - [sym_as_expression] = STATE(3362), - [sym_is_expression] = STATE(3362), - [sym_is_pattern_expression] = STATE(3362), - [sym_cast_expression] = STATE(3362), - [sym_checked_expression] = STATE(3362), - [sym_invocation_expression] = STATE(3449), - [sym_switch_expression] = STATE(3362), - [sym_await_expression] = STATE(3449), - [sym_throw_expression] = STATE(3362), - [sym_element_access_expression] = STATE(2747), - [sym_interpolated_string_expression] = STATE(3362), - [sym_member_access_expression] = STATE(2747), - [sym_object_creation_expression] = STATE(3449), - [sym_parenthesized_expression] = STATE(3449), - [sym__parenthesized_lvalue_expression] = STATE(2747), - [sym_lambda_expression] = STATE(3362), - [sym__lambda_expression_init] = STATE(7381), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3362), - [sym_anonymous_method_expression] = STATE(3362), - [sym_anonymous_object_creation_expression] = STATE(3362), - [sym_implicit_array_creation_expression] = STATE(3362), - [sym_implicit_object_creation_expression] = STATE(3362), - [sym_implicit_stackalloc_expression] = STATE(3362), - [sym_initializer_expression] = STATE(3362), - [sym_default_expression] = STATE(3362), - [sym_with_expression] = STATE(3362), - [sym_sizeof_expression] = STATE(3362), - [sym_typeof_expression] = STATE(3362), - [sym_makeref_expression] = STATE(3362), - [sym_ref_expression] = STATE(3362), - [sym_reftype_expression] = STATE(3362), - [sym_refvalue_expression] = STATE(3362), - [sym_stackalloc_expression] = STATE(3362), - [sym_range_expression] = STATE(3362), - [sym_tuple_expression] = STATE(2747), - [sym_literal] = STATE(3362), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3362), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2349), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(3802), + [sym_non_lvalue_expression] = STATE(3685), + [sym_lvalue_expression] = STATE(2985), + [sym__expression_statement_expression] = STATE(3836), + [sym_assignment_expression] = STATE(3689), + [sym_binary_expression] = STATE(3836), + [sym_postfix_unary_expression] = STATE(3689), + [sym_prefix_unary_expression] = STATE(3689), + [sym__pointer_indirection_expression] = STATE(2906), + [sym_query_expression] = STATE(3836), + [sym_from_clause] = STATE(6157), + [sym_conditional_expression] = STATE(3836), + [sym_conditional_access_expression] = STATE(3836), + [sym_as_expression] = STATE(3836), + [sym_is_expression] = STATE(3836), + [sym_is_pattern_expression] = STATE(3836), + [sym_cast_expression] = STATE(3836), + [sym_checked_expression] = STATE(3836), + [sym_invocation_expression] = STATE(3689), + [sym_switch_expression] = STATE(3836), + [sym_await_expression] = STATE(3689), + [sym_throw_expression] = STATE(3836), + [sym_element_access_expression] = STATE(2906), + [sym_interpolated_string_expression] = STATE(3836), + [sym_member_access_expression] = STATE(2906), + [sym_object_creation_expression] = STATE(3689), + [sym_parenthesized_expression] = STATE(3689), + [sym__parenthesized_lvalue_expression] = STATE(2906), + [sym_lambda_expression] = STATE(3836), + [sym__lambda_expression_init] = STATE(7485), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3836), + [sym_anonymous_method_expression] = STATE(3836), + [sym_anonymous_object_creation_expression] = STATE(3836), + [sym_implicit_array_creation_expression] = STATE(3836), + [sym_implicit_object_creation_expression] = STATE(3836), + [sym_implicit_stackalloc_expression] = STATE(3836), + [sym_initializer_expression] = STATE(3836), + [sym_default_expression] = STATE(3836), + [sym_with_expression] = STATE(3836), + [sym_sizeof_expression] = STATE(3836), + [sym_typeof_expression] = STATE(3836), + [sym_makeref_expression] = STATE(3836), + [sym_ref_expression] = STATE(3836), + [sym_reftype_expression] = STATE(3836), + [sym_refvalue_expression] = STATE(3836), + [sym_stackalloc_expression] = STATE(3836), + [sym_range_expression] = STATE(3836), + [sym_tuple_expression] = STATE(2906), + [sym_literal] = STATE(3836), + [sym_character_literal] = STATE(3843), + [sym_string_literal] = STATE(3843), + [sym_raw_string_literal] = STATE(3843), + [sym_boolean_literal] = STATE(3843), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3836), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(892), [sym_preproc_endregion] = STATE(892), [sym_preproc_line] = STATE(892), @@ -192607,47 +192493,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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3385), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3477), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1307), - [anon_sym_LPAREN] = ACTIONS(1359), - [anon_sym_ref] = ACTIONS(1361), - [anon_sym_LBRACE] = ACTIONS(1313), - [anon_sym_delegate] = ACTIONS(1315), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1655), + [anon_sym_LPAREN] = ACTIONS(2043), + [anon_sym_ref] = ACTIONS(2045), + [anon_sym_LBRACE] = ACTIONS(1661), + [anon_sym_delegate] = ACTIONS(1663), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1317), + [anon_sym_new] = ACTIONS(1759), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1319), - [anon_sym_BANG] = ACTIONS(1107), - [anon_sym_TILDE] = ACTIONS(1107), - [anon_sym_PLUS_PLUS] = ACTIONS(1107), - [anon_sym_DASH_DASH] = ACTIONS(1107), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1109), - [anon_sym_DASH] = ACTIONS(1109), - [anon_sym_STAR] = ACTIONS(1363), - [anon_sym_CARET] = ACTIONS(1107), - [anon_sym_AMP] = ACTIONS(1107), - [anon_sym_this] = ACTIONS(1323), + [anon_sym_checked] = ACTIONS(1667), + [anon_sym_BANG] = ACTIONS(2049), + [anon_sym_TILDE] = ACTIONS(2049), + [anon_sym_PLUS_PLUS] = ACTIONS(2049), + [anon_sym_DASH_DASH] = ACTIONS(2049), + [anon_sym_true] = ACTIONS(1673), + [anon_sym_false] = ACTIONS(1673), + [anon_sym_PLUS] = ACTIONS(2047), + [anon_sym_DASH] = ACTIONS(2047), + [anon_sym_STAR] = ACTIONS(1765), + [anon_sym_CARET] = ACTIONS(2049), + [anon_sym_AMP] = ACTIONS(2049), + [anon_sym_this] = ACTIONS(1677), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1325), + [anon_sym_base] = ACTIONS(1679), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1319), + [sym_predefined_type] = ACTIONS(1681), + [anon_sym_unchecked] = ACTIONS(1667), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1365), + [anon_sym_default] = ACTIONS(1683), + [anon_sym_throw] = ACTIONS(2051), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1367), - [anon_sym_DOT_DOT] = ACTIONS(1369), + [anon_sym_await] = ACTIONS(2053), + [anon_sym_DOT_DOT] = ACTIONS(2055), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -192660,19 +192546,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1333), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(1335), - [anon_sym___reftype] = ACTIONS(1337), - [anon_sym___refvalue] = ACTIONS(1339), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1341), + [anon_sym_stackalloc] = ACTIONS(1691), + [anon_sym_sizeof] = ACTIONS(1693), + [anon_sym_typeof] = ACTIONS(1695), + [anon_sym___makeref] = ACTIONS(1697), + [anon_sym___reftype] = ACTIONS(1699), + [anon_sym___refvalue] = ACTIONS(1701), + [sym_null_literal] = ACTIONS(1703), + [anon_sym_SQUOTE] = ACTIONS(1705), + [sym_integer_literal] = ACTIONS(1703), + [sym_real_literal] = ACTIONS(1707), + [anon_sym_DQUOTE] = ACTIONS(1709), + [sym_verbatim_string_literal] = ACTIONS(1707), + [aux_sym_preproc_if_token1] = ACTIONS(1711), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -192683,90 +192569,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(151), - [sym_interpolation_verbatim_start] = ACTIONS(153), - [sym_interpolation_raw_start] = ACTIONS(155), - [sym_raw_string_start] = ACTIONS(157), + [sym_interpolation_regular_start] = ACTIONS(1713), + [sym_interpolation_verbatim_start] = ACTIONS(1715), + [sym_interpolation_raw_start] = ACTIONS(1717), + [sym_raw_string_start] = ACTIONS(1719), }, [893] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2762), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2901), [sym__name] = STATE(5889), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2247), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(4331), - [sym_non_lvalue_expression] = STATE(3438), - [sym_lvalue_expression] = STATE(3224), - [sym__expression_statement_expression] = STATE(3362), - [sym_assignment_expression] = STATE(3449), - [sym_binary_expression] = STATE(3362), - [sym_postfix_unary_expression] = STATE(3449), - [sym_prefix_unary_expression] = STATE(3449), - [sym__pointer_indirection_expression] = STATE(2747), - [sym_query_expression] = STATE(3362), - [sym_from_clause] = STATE(6146), - [sym_conditional_expression] = STATE(3362), - [sym_conditional_access_expression] = STATE(3362), - [sym_as_expression] = STATE(3362), - [sym_is_expression] = STATE(3362), - [sym_is_pattern_expression] = STATE(3362), - [sym_cast_expression] = STATE(3362), - [sym_checked_expression] = STATE(3362), - [sym_invocation_expression] = STATE(3449), - [sym_switch_expression] = STATE(3362), - [sym_await_expression] = STATE(3449), - [sym_throw_expression] = STATE(3362), - [sym_element_access_expression] = STATE(2747), - [sym_interpolated_string_expression] = STATE(3362), - [sym_member_access_expression] = STATE(2747), - [sym_object_creation_expression] = STATE(3449), - [sym_parenthesized_expression] = STATE(3449), - [sym__parenthesized_lvalue_expression] = STATE(2747), - [sym_lambda_expression] = STATE(3362), - [sym__lambda_expression_init] = STATE(7381), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3362), - [sym_anonymous_method_expression] = STATE(3362), - [sym_anonymous_object_creation_expression] = STATE(3362), - [sym_implicit_array_creation_expression] = STATE(3362), - [sym_implicit_object_creation_expression] = STATE(3362), - [sym_implicit_stackalloc_expression] = STATE(3362), - [sym_initializer_expression] = STATE(3362), - [sym_default_expression] = STATE(3362), - [sym_with_expression] = STATE(3362), - [sym_sizeof_expression] = STATE(3362), - [sym_typeof_expression] = STATE(3362), - [sym_makeref_expression] = STATE(3362), - [sym_ref_expression] = STATE(3362), - [sym_reftype_expression] = STATE(3362), - [sym_refvalue_expression] = STATE(3362), - [sym_stackalloc_expression] = STATE(3362), - [sym_range_expression] = STATE(3362), - [sym_tuple_expression] = STATE(2747), - [sym_literal] = STATE(3362), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3362), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2349), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(3560), + [sym_non_lvalue_expression] = STATE(3685), + [sym_lvalue_expression] = STATE(2985), + [sym__expression_statement_expression] = STATE(3836), + [sym_assignment_expression] = STATE(3689), + [sym_binary_expression] = STATE(3836), + [sym_postfix_unary_expression] = STATE(3689), + [sym_prefix_unary_expression] = STATE(3689), + [sym__pointer_indirection_expression] = STATE(2906), + [sym_query_expression] = STATE(3836), + [sym_from_clause] = STATE(6157), + [sym_conditional_expression] = STATE(3836), + [sym_conditional_access_expression] = STATE(3836), + [sym_as_expression] = STATE(3836), + [sym_is_expression] = STATE(3836), + [sym_is_pattern_expression] = STATE(3836), + [sym_cast_expression] = STATE(3836), + [sym_checked_expression] = STATE(3836), + [sym_invocation_expression] = STATE(3689), + [sym_switch_expression] = STATE(3836), + [sym_await_expression] = STATE(3689), + [sym_throw_expression] = STATE(3836), + [sym_element_access_expression] = STATE(2906), + [sym_interpolated_string_expression] = STATE(3836), + [sym_member_access_expression] = STATE(2906), + [sym_object_creation_expression] = STATE(3689), + [sym_parenthesized_expression] = STATE(3689), + [sym__parenthesized_lvalue_expression] = STATE(2906), + [sym_lambda_expression] = STATE(3836), + [sym__lambda_expression_init] = STATE(7485), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3836), + [sym_anonymous_method_expression] = STATE(3836), + [sym_anonymous_object_creation_expression] = STATE(3836), + [sym_implicit_array_creation_expression] = STATE(3836), + [sym_implicit_object_creation_expression] = STATE(3836), + [sym_implicit_stackalloc_expression] = STATE(3836), + [sym_initializer_expression] = STATE(3836), + [sym_default_expression] = STATE(3836), + [sym_with_expression] = STATE(3836), + [sym_sizeof_expression] = STATE(3836), + [sym_typeof_expression] = STATE(3836), + [sym_makeref_expression] = STATE(3836), + [sym_ref_expression] = STATE(3836), + [sym_reftype_expression] = STATE(3836), + [sym_refvalue_expression] = STATE(3836), + [sym_stackalloc_expression] = STATE(3836), + [sym_range_expression] = STATE(3836), + [sym_tuple_expression] = STATE(2906), + [sym_literal] = STATE(3836), + [sym_character_literal] = STATE(3843), + [sym_string_literal] = STATE(3843), + [sym_raw_string_literal] = STATE(3843), + [sym_boolean_literal] = STATE(3843), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3836), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(893), [sym_preproc_endregion] = STATE(893), [sym_preproc_line] = STATE(893), @@ -192776,47 +192662,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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3385), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3477), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1307), - [anon_sym_LPAREN] = ACTIONS(1359), - [anon_sym_ref] = ACTIONS(1361), - [anon_sym_LBRACE] = ACTIONS(1313), - [anon_sym_delegate] = ACTIONS(1315), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1655), + [anon_sym_LPAREN] = ACTIONS(2043), + [anon_sym_ref] = ACTIONS(2045), + [anon_sym_LBRACE] = ACTIONS(1661), + [anon_sym_delegate] = ACTIONS(1663), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1317), + [anon_sym_new] = ACTIONS(1759), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1319), - [anon_sym_BANG] = ACTIONS(1107), - [anon_sym_TILDE] = ACTIONS(1107), - [anon_sym_PLUS_PLUS] = ACTIONS(1107), - [anon_sym_DASH_DASH] = ACTIONS(1107), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1109), - [anon_sym_DASH] = ACTIONS(1109), - [anon_sym_STAR] = ACTIONS(1363), - [anon_sym_CARET] = ACTIONS(1107), - [anon_sym_AMP] = ACTIONS(1107), - [anon_sym_this] = ACTIONS(1323), + [anon_sym_checked] = ACTIONS(1667), + [anon_sym_BANG] = ACTIONS(2049), + [anon_sym_TILDE] = ACTIONS(2049), + [anon_sym_PLUS_PLUS] = ACTIONS(2049), + [anon_sym_DASH_DASH] = ACTIONS(2049), + [anon_sym_true] = ACTIONS(1673), + [anon_sym_false] = ACTIONS(1673), + [anon_sym_PLUS] = ACTIONS(2047), + [anon_sym_DASH] = ACTIONS(2047), + [anon_sym_STAR] = ACTIONS(1765), + [anon_sym_CARET] = ACTIONS(2049), + [anon_sym_AMP] = ACTIONS(2049), + [anon_sym_this] = ACTIONS(1677), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1325), + [anon_sym_base] = ACTIONS(1679), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1319), + [sym_predefined_type] = ACTIONS(1681), + [anon_sym_unchecked] = ACTIONS(1667), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1365), + [anon_sym_default] = ACTIONS(1683), + [anon_sym_throw] = ACTIONS(2051), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1367), - [anon_sym_DOT_DOT] = ACTIONS(1369), + [anon_sym_await] = ACTIONS(2053), + [anon_sym_DOT_DOT] = ACTIONS(2055), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -192829,19 +192715,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1333), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(1335), - [anon_sym___reftype] = ACTIONS(1337), - [anon_sym___refvalue] = ACTIONS(1339), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1341), + [anon_sym_stackalloc] = ACTIONS(1691), + [anon_sym_sizeof] = ACTIONS(1693), + [anon_sym_typeof] = ACTIONS(1695), + [anon_sym___makeref] = ACTIONS(1697), + [anon_sym___reftype] = ACTIONS(1699), + [anon_sym___refvalue] = ACTIONS(1701), + [sym_null_literal] = ACTIONS(1703), + [anon_sym_SQUOTE] = ACTIONS(1705), + [sym_integer_literal] = ACTIONS(1703), + [sym_real_literal] = ACTIONS(1707), + [anon_sym_DQUOTE] = ACTIONS(1709), + [sym_verbatim_string_literal] = ACTIONS(1707), + [aux_sym_preproc_if_token1] = ACTIONS(1711), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -192852,90 +192738,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(151), - [sym_interpolation_verbatim_start] = ACTIONS(153), - [sym_interpolation_raw_start] = ACTIONS(155), - [sym_raw_string_start] = ACTIONS(157), + [sym_interpolation_regular_start] = ACTIONS(1713), + [sym_interpolation_verbatim_start] = ACTIONS(1715), + [sym_interpolation_raw_start] = ACTIONS(1717), + [sym_raw_string_start] = ACTIONS(1719), }, [894] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2762), - [sym__name] = STATE(5889), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2247), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(4332), - [sym_non_lvalue_expression] = STATE(3438), - [sym_lvalue_expression] = STATE(3224), - [sym__expression_statement_expression] = STATE(3362), - [sym_assignment_expression] = STATE(3449), - [sym_binary_expression] = STATE(3362), - [sym_postfix_unary_expression] = STATE(3449), - [sym_prefix_unary_expression] = STATE(3449), - [sym__pointer_indirection_expression] = STATE(2747), - [sym_query_expression] = STATE(3362), - [sym_from_clause] = STATE(6146), - [sym_conditional_expression] = STATE(3362), - [sym_conditional_access_expression] = STATE(3362), - [sym_as_expression] = STATE(3362), - [sym_is_expression] = STATE(3362), - [sym_is_pattern_expression] = STATE(3362), - [sym_cast_expression] = STATE(3362), - [sym_checked_expression] = STATE(3362), - [sym_invocation_expression] = STATE(3449), - [sym_switch_expression] = STATE(3362), - [sym_await_expression] = STATE(3449), - [sym_throw_expression] = STATE(3362), - [sym_element_access_expression] = STATE(2747), - [sym_interpolated_string_expression] = STATE(3362), - [sym_member_access_expression] = STATE(2747), - [sym_object_creation_expression] = STATE(3449), - [sym_parenthesized_expression] = STATE(3449), - [sym__parenthesized_lvalue_expression] = STATE(2747), - [sym_lambda_expression] = STATE(3362), - [sym__lambda_expression_init] = STATE(7381), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3362), - [sym_anonymous_method_expression] = STATE(3362), - [sym_anonymous_object_creation_expression] = STATE(3362), - [sym_implicit_array_creation_expression] = STATE(3362), - [sym_implicit_object_creation_expression] = STATE(3362), - [sym_implicit_stackalloc_expression] = STATE(3362), - [sym_initializer_expression] = STATE(3362), - [sym_default_expression] = STATE(3362), - [sym_with_expression] = STATE(3362), - [sym_sizeof_expression] = STATE(3362), - [sym_typeof_expression] = STATE(3362), - [sym_makeref_expression] = STATE(3362), - [sym_ref_expression] = STATE(3362), - [sym_reftype_expression] = STATE(3362), - [sym_refvalue_expression] = STATE(3362), - [sym_stackalloc_expression] = STATE(3362), - [sym_range_expression] = STATE(3362), - [sym_tuple_expression] = STATE(2747), - [sym_literal] = STATE(3362), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3362), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(5873), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2238), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(5451), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3468), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3102), + [sym_postfix_unary_expression] = STATE(3079), + [sym_prefix_unary_expression] = STATE(3079), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6134), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3102), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3079), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3102), + [sym_member_access_expression] = STATE(2472), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3079), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7309), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(3102), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3102), + [sym_typeof_expression] = STATE(3102), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2472), + [sym_literal] = STATE(3102), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(894), [sym_preproc_endregion] = STATE(894), [sym_preproc_line] = STATE(894), @@ -192945,47 +192831,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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3385), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1307), - [anon_sym_LPAREN] = ACTIONS(1359), - [anon_sym_ref] = ACTIONS(1361), - [anon_sym_LBRACE] = ACTIONS(1313), - [anon_sym_delegate] = ACTIONS(1315), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1479), + [anon_sym_LPAREN] = ACTIONS(659), + [anon_sym_ref] = ACTIONS(663), + [anon_sym_LBRACE] = ACTIONS(1481), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1317), + [anon_sym_new] = ACTIONS(1059), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1319), - [anon_sym_BANG] = ACTIONS(1107), - [anon_sym_TILDE] = ACTIONS(1107), - [anon_sym_PLUS_PLUS] = ACTIONS(1107), - [anon_sym_DASH_DASH] = ACTIONS(1107), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(1485), + [anon_sym_TILDE] = ACTIONS(1485), + [anon_sym_PLUS_PLUS] = ACTIONS(1485), + [anon_sym_DASH_DASH] = ACTIONS(1485), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1109), - [anon_sym_DASH] = ACTIONS(1109), - [anon_sym_STAR] = ACTIONS(1363), - [anon_sym_CARET] = ACTIONS(1107), - [anon_sym_AMP] = ACTIONS(1107), - [anon_sym_this] = ACTIONS(1323), + [anon_sym_PLUS] = ACTIONS(1483), + [anon_sym_DASH] = ACTIONS(1483), + [anon_sym_STAR] = ACTIONS(683), + [anon_sym_CARET] = ACTIONS(1485), + [anon_sym_AMP] = ACTIONS(1485), + [anon_sym_this] = ACTIONS(83), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1325), + [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1319), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1365), + [anon_sym_throw] = ACTIONS(1077), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1367), - [anon_sym_DOT_DOT] = ACTIONS(1369), + [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), @@ -192998,19 +192884,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1333), + [anon_sym_stackalloc] = ACTIONS(127), [anon_sym_sizeof] = ACTIONS(129), [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(1335), - [anon_sym___reftype] = ACTIONS(1337), - [anon_sym___refvalue] = ACTIONS(1339), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), [sym_null_literal] = ACTIONS(139), [anon_sym_SQUOTE] = ACTIONS(141), [sym_integer_literal] = ACTIONS(139), [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1341), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -193027,84 +192913,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [895] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2762), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2901), [sym__name] = STATE(5889), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2247), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(4334), - [sym_non_lvalue_expression] = STATE(3438), - [sym_lvalue_expression] = STATE(3224), - [sym__expression_statement_expression] = STATE(3362), - [sym_assignment_expression] = STATE(3449), - [sym_binary_expression] = STATE(3362), - [sym_postfix_unary_expression] = STATE(3449), - [sym_prefix_unary_expression] = STATE(3449), - [sym__pointer_indirection_expression] = STATE(2747), - [sym_query_expression] = STATE(3362), - [sym_from_clause] = STATE(6146), - [sym_conditional_expression] = STATE(3362), - [sym_conditional_access_expression] = STATE(3362), - [sym_as_expression] = STATE(3362), - [sym_is_expression] = STATE(3362), - [sym_is_pattern_expression] = STATE(3362), - [sym_cast_expression] = STATE(3362), - [sym_checked_expression] = STATE(3362), - [sym_invocation_expression] = STATE(3449), - [sym_switch_expression] = STATE(3362), - [sym_await_expression] = STATE(3449), - [sym_throw_expression] = STATE(3362), - [sym_element_access_expression] = STATE(2747), - [sym_interpolated_string_expression] = STATE(3362), - [sym_member_access_expression] = STATE(2747), - [sym_object_creation_expression] = STATE(3449), - [sym_parenthesized_expression] = STATE(3449), - [sym__parenthesized_lvalue_expression] = STATE(2747), - [sym_lambda_expression] = STATE(3362), - [sym__lambda_expression_init] = STATE(7381), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3362), - [sym_anonymous_method_expression] = STATE(3362), - [sym_anonymous_object_creation_expression] = STATE(3362), - [sym_implicit_array_creation_expression] = STATE(3362), - [sym_implicit_object_creation_expression] = STATE(3362), - [sym_implicit_stackalloc_expression] = STATE(3362), - [sym_initializer_expression] = STATE(3362), - [sym_default_expression] = STATE(3362), - [sym_with_expression] = STATE(3362), - [sym_sizeof_expression] = STATE(3362), - [sym_typeof_expression] = STATE(3362), - [sym_makeref_expression] = STATE(3362), - [sym_ref_expression] = STATE(3362), - [sym_reftype_expression] = STATE(3362), - [sym_refvalue_expression] = STATE(3362), - [sym_stackalloc_expression] = STATE(3362), - [sym_range_expression] = STATE(3362), - [sym_tuple_expression] = STATE(2747), - [sym_literal] = STATE(3362), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3362), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2349), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(3854), + [sym_non_lvalue_expression] = STATE(3685), + [sym_lvalue_expression] = STATE(2985), + [sym__expression_statement_expression] = STATE(3836), + [sym_assignment_expression] = STATE(3689), + [sym_binary_expression] = STATE(3836), + [sym_postfix_unary_expression] = STATE(3689), + [sym_prefix_unary_expression] = STATE(3689), + [sym__pointer_indirection_expression] = STATE(2906), + [sym_query_expression] = STATE(3836), + [sym_from_clause] = STATE(6157), + [sym_conditional_expression] = STATE(3836), + [sym_conditional_access_expression] = STATE(3836), + [sym_as_expression] = STATE(3836), + [sym_is_expression] = STATE(3836), + [sym_is_pattern_expression] = STATE(3836), + [sym_cast_expression] = STATE(3836), + [sym_checked_expression] = STATE(3836), + [sym_invocation_expression] = STATE(3689), + [sym_switch_expression] = STATE(3836), + [sym_await_expression] = STATE(3689), + [sym_throw_expression] = STATE(3836), + [sym_element_access_expression] = STATE(2906), + [sym_interpolated_string_expression] = STATE(3836), + [sym_member_access_expression] = STATE(2906), + [sym_object_creation_expression] = STATE(3689), + [sym_parenthesized_expression] = STATE(3689), + [sym__parenthesized_lvalue_expression] = STATE(2906), + [sym_lambda_expression] = STATE(3836), + [sym__lambda_expression_init] = STATE(7485), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3836), + [sym_anonymous_method_expression] = STATE(3836), + [sym_anonymous_object_creation_expression] = STATE(3836), + [sym_implicit_array_creation_expression] = STATE(3836), + [sym_implicit_object_creation_expression] = STATE(3836), + [sym_implicit_stackalloc_expression] = STATE(3836), + [sym_initializer_expression] = STATE(3836), + [sym_default_expression] = STATE(3836), + [sym_with_expression] = STATE(3836), + [sym_sizeof_expression] = STATE(3836), + [sym_typeof_expression] = STATE(3836), + [sym_makeref_expression] = STATE(3836), + [sym_ref_expression] = STATE(3836), + [sym_reftype_expression] = STATE(3836), + [sym_refvalue_expression] = STATE(3836), + [sym_stackalloc_expression] = STATE(3836), + [sym_range_expression] = STATE(3836), + [sym_tuple_expression] = STATE(2906), + [sym_literal] = STATE(3836), + [sym_character_literal] = STATE(3843), + [sym_string_literal] = STATE(3843), + [sym_raw_string_literal] = STATE(3843), + [sym_boolean_literal] = STATE(3843), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3836), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(895), [sym_preproc_endregion] = STATE(895), [sym_preproc_line] = STATE(895), @@ -193114,47 +193000,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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3385), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3477), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1307), - [anon_sym_LPAREN] = ACTIONS(1359), - [anon_sym_ref] = ACTIONS(1361), - [anon_sym_LBRACE] = ACTIONS(1313), - [anon_sym_delegate] = ACTIONS(1315), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1655), + [anon_sym_LPAREN] = ACTIONS(2043), + [anon_sym_ref] = ACTIONS(2045), + [anon_sym_LBRACE] = ACTIONS(1661), + [anon_sym_delegate] = ACTIONS(1663), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1317), + [anon_sym_new] = ACTIONS(1759), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1319), - [anon_sym_BANG] = ACTIONS(1107), - [anon_sym_TILDE] = ACTIONS(1107), - [anon_sym_PLUS_PLUS] = ACTIONS(1107), - [anon_sym_DASH_DASH] = ACTIONS(1107), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1109), - [anon_sym_DASH] = ACTIONS(1109), - [anon_sym_STAR] = ACTIONS(1363), - [anon_sym_CARET] = ACTIONS(1107), - [anon_sym_AMP] = ACTIONS(1107), - [anon_sym_this] = ACTIONS(1323), + [anon_sym_checked] = ACTIONS(1667), + [anon_sym_BANG] = ACTIONS(2049), + [anon_sym_TILDE] = ACTIONS(2049), + [anon_sym_PLUS_PLUS] = ACTIONS(2049), + [anon_sym_DASH_DASH] = ACTIONS(2049), + [anon_sym_true] = ACTIONS(1673), + [anon_sym_false] = ACTIONS(1673), + [anon_sym_PLUS] = ACTIONS(2047), + [anon_sym_DASH] = ACTIONS(2047), + [anon_sym_STAR] = ACTIONS(1765), + [anon_sym_CARET] = ACTIONS(2049), + [anon_sym_AMP] = ACTIONS(2049), + [anon_sym_this] = ACTIONS(1677), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1325), + [anon_sym_base] = ACTIONS(1679), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1319), + [sym_predefined_type] = ACTIONS(1681), + [anon_sym_unchecked] = ACTIONS(1667), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1365), + [anon_sym_default] = ACTIONS(1683), + [anon_sym_throw] = ACTIONS(2051), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1367), - [anon_sym_DOT_DOT] = ACTIONS(1369), + [anon_sym_await] = ACTIONS(2053), + [anon_sym_DOT_DOT] = ACTIONS(2055), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -193167,19 +193053,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1333), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(1335), - [anon_sym___reftype] = ACTIONS(1337), - [anon_sym___refvalue] = ACTIONS(1339), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1341), + [anon_sym_stackalloc] = ACTIONS(1691), + [anon_sym_sizeof] = ACTIONS(1693), + [anon_sym_typeof] = ACTIONS(1695), + [anon_sym___makeref] = ACTIONS(1697), + [anon_sym___reftype] = ACTIONS(1699), + [anon_sym___refvalue] = ACTIONS(1701), + [sym_null_literal] = ACTIONS(1703), + [anon_sym_SQUOTE] = ACTIONS(1705), + [sym_integer_literal] = ACTIONS(1703), + [sym_real_literal] = ACTIONS(1707), + [anon_sym_DQUOTE] = ACTIONS(1709), + [sym_verbatim_string_literal] = ACTIONS(1707), + [aux_sym_preproc_if_token1] = ACTIONS(1711), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -193190,90 +193076,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(151), - [sym_interpolation_verbatim_start] = ACTIONS(153), - [sym_interpolation_raw_start] = ACTIONS(155), - [sym_raw_string_start] = ACTIONS(157), + [sym_interpolation_regular_start] = ACTIONS(1713), + [sym_interpolation_verbatim_start] = ACTIONS(1715), + [sym_interpolation_raw_start] = ACTIONS(1717), + [sym_raw_string_start] = ACTIONS(1719), }, [896] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2762), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2901), [sym__name] = STATE(5889), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2247), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(4337), - [sym_non_lvalue_expression] = STATE(3438), - [sym_lvalue_expression] = STATE(3224), - [sym__expression_statement_expression] = STATE(3362), - [sym_assignment_expression] = STATE(3449), - [sym_binary_expression] = STATE(3362), - [sym_postfix_unary_expression] = STATE(3449), - [sym_prefix_unary_expression] = STATE(3449), - [sym__pointer_indirection_expression] = STATE(2747), - [sym_query_expression] = STATE(3362), - [sym_from_clause] = STATE(6146), - [sym_conditional_expression] = STATE(3362), - [sym_conditional_access_expression] = STATE(3362), - [sym_as_expression] = STATE(3362), - [sym_is_expression] = STATE(3362), - [sym_is_pattern_expression] = STATE(3362), - [sym_cast_expression] = STATE(3362), - [sym_checked_expression] = STATE(3362), - [sym_invocation_expression] = STATE(3449), - [sym_switch_expression] = STATE(3362), - [sym_await_expression] = STATE(3449), - [sym_throw_expression] = STATE(3362), - [sym_element_access_expression] = STATE(2747), - [sym_interpolated_string_expression] = STATE(3362), - [sym_member_access_expression] = STATE(2747), - [sym_object_creation_expression] = STATE(3449), - [sym_parenthesized_expression] = STATE(3449), - [sym__parenthesized_lvalue_expression] = STATE(2747), - [sym_lambda_expression] = STATE(3362), - [sym__lambda_expression_init] = STATE(7381), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3362), - [sym_anonymous_method_expression] = STATE(3362), - [sym_anonymous_object_creation_expression] = STATE(3362), - [sym_implicit_array_creation_expression] = STATE(3362), - [sym_implicit_object_creation_expression] = STATE(3362), - [sym_implicit_stackalloc_expression] = STATE(3362), - [sym_initializer_expression] = STATE(3362), - [sym_default_expression] = STATE(3362), - [sym_with_expression] = STATE(3362), - [sym_sizeof_expression] = STATE(3362), - [sym_typeof_expression] = STATE(3362), - [sym_makeref_expression] = STATE(3362), - [sym_ref_expression] = STATE(3362), - [sym_reftype_expression] = STATE(3362), - [sym_refvalue_expression] = STATE(3362), - [sym_stackalloc_expression] = STATE(3362), - [sym_range_expression] = STATE(3362), - [sym_tuple_expression] = STATE(2747), - [sym_literal] = STATE(3362), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3362), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2349), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(3633), + [sym_non_lvalue_expression] = STATE(3685), + [sym_lvalue_expression] = STATE(2890), + [sym__expression_statement_expression] = STATE(3836), + [sym_assignment_expression] = STATE(3689), + [sym_binary_expression] = STATE(3836), + [sym_postfix_unary_expression] = STATE(3689), + [sym_prefix_unary_expression] = STATE(3689), + [sym__pointer_indirection_expression] = STATE(2906), + [sym_query_expression] = STATE(3836), + [sym_from_clause] = STATE(6139), + [sym_conditional_expression] = STATE(3836), + [sym_conditional_access_expression] = STATE(3836), + [sym_as_expression] = STATE(3836), + [sym_is_expression] = STATE(3836), + [sym_is_pattern_expression] = STATE(3836), + [sym_cast_expression] = STATE(3836), + [sym_checked_expression] = STATE(3836), + [sym_invocation_expression] = STATE(3689), + [sym_switch_expression] = STATE(3836), + [sym_await_expression] = STATE(3689), + [sym_throw_expression] = STATE(3836), + [sym_element_access_expression] = STATE(2906), + [sym_interpolated_string_expression] = STATE(3836), + [sym_member_access_expression] = STATE(2906), + [sym_object_creation_expression] = STATE(3689), + [sym_parenthesized_expression] = STATE(3689), + [sym__parenthesized_lvalue_expression] = STATE(2906), + [sym_lambda_expression] = STATE(3836), + [sym__lambda_expression_init] = STATE(7456), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3836), + [sym_anonymous_method_expression] = STATE(3836), + [sym_anonymous_object_creation_expression] = STATE(3836), + [sym_implicit_array_creation_expression] = STATE(3836), + [sym_implicit_object_creation_expression] = STATE(3836), + [sym_implicit_stackalloc_expression] = STATE(3836), + [sym_initializer_expression] = STATE(3836), + [sym_default_expression] = STATE(3836), + [sym_with_expression] = STATE(3836), + [sym_sizeof_expression] = STATE(3836), + [sym_typeof_expression] = STATE(3836), + [sym_makeref_expression] = STATE(3836), + [sym_ref_expression] = STATE(3836), + [sym_reftype_expression] = STATE(3836), + [sym_refvalue_expression] = STATE(3836), + [sym_stackalloc_expression] = STATE(3836), + [sym_range_expression] = STATE(3836), + [sym_tuple_expression] = STATE(2906), + [sym_literal] = STATE(3836), + [sym_character_literal] = STATE(3843), + [sym_string_literal] = STATE(3843), + [sym_raw_string_literal] = STATE(3843), + [sym_boolean_literal] = STATE(3843), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3836), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(896), [sym_preproc_endregion] = STATE(896), [sym_preproc_line] = STATE(896), @@ -193283,47 +193169,47 @@ 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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3385), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3477), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1307), - [anon_sym_LPAREN] = ACTIONS(1359), - [anon_sym_ref] = ACTIONS(1361), - [anon_sym_LBRACE] = ACTIONS(1313), - [anon_sym_delegate] = ACTIONS(1315), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1655), + [anon_sym_LPAREN] = ACTIONS(1755), + [anon_sym_ref] = ACTIONS(1757), + [anon_sym_LBRACE] = ACTIONS(1661), + [anon_sym_delegate] = ACTIONS(1663), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1317), + [anon_sym_new] = ACTIONS(1759), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1319), - [anon_sym_BANG] = ACTIONS(1107), - [anon_sym_TILDE] = ACTIONS(1107), - [anon_sym_PLUS_PLUS] = ACTIONS(1107), - [anon_sym_DASH_DASH] = ACTIONS(1107), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1109), - [anon_sym_DASH] = ACTIONS(1109), - [anon_sym_STAR] = ACTIONS(1363), - [anon_sym_CARET] = ACTIONS(1107), - [anon_sym_AMP] = ACTIONS(1107), - [anon_sym_this] = ACTIONS(1323), + [anon_sym_checked] = ACTIONS(1667), + [anon_sym_BANG] = ACTIONS(1763), + [anon_sym_TILDE] = ACTIONS(1763), + [anon_sym_PLUS_PLUS] = ACTIONS(1763), + [anon_sym_DASH_DASH] = ACTIONS(1763), + [anon_sym_true] = ACTIONS(1673), + [anon_sym_false] = ACTIONS(1673), + [anon_sym_PLUS] = ACTIONS(1761), + [anon_sym_DASH] = ACTIONS(1761), + [anon_sym_STAR] = ACTIONS(1765), + [anon_sym_CARET] = ACTIONS(1763), + [anon_sym_AMP] = ACTIONS(1763), + [anon_sym_this] = ACTIONS(1677), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1325), + [anon_sym_base] = ACTIONS(1679), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1319), + [sym_predefined_type] = ACTIONS(1681), + [anon_sym_unchecked] = ACTIONS(1667), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1365), + [anon_sym_default] = ACTIONS(1683), + [anon_sym_throw] = ACTIONS(1767), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1367), - [anon_sym_DOT_DOT] = ACTIONS(1369), + [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), @@ -193336,19 +193222,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1333), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(1335), - [anon_sym___reftype] = ACTIONS(1337), - [anon_sym___refvalue] = ACTIONS(1339), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1341), + [anon_sym_stackalloc] = ACTIONS(1691), + [anon_sym_sizeof] = ACTIONS(1693), + [anon_sym_typeof] = ACTIONS(1695), + [anon_sym___makeref] = ACTIONS(1697), + [anon_sym___reftype] = ACTIONS(1699), + [anon_sym___refvalue] = ACTIONS(1701), + [sym_null_literal] = ACTIONS(1703), + [anon_sym_SQUOTE] = ACTIONS(1705), + [sym_integer_literal] = ACTIONS(1703), + [sym_real_literal] = ACTIONS(1707), + [anon_sym_DQUOTE] = ACTIONS(1709), + [sym_verbatim_string_literal] = ACTIONS(1707), + [aux_sym_preproc_if_token1] = ACTIONS(1711), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -193359,90 +193245,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(151), - [sym_interpolation_verbatim_start] = ACTIONS(153), - [sym_interpolation_raw_start] = ACTIONS(155), - [sym_raw_string_start] = ACTIONS(157), + [sym_interpolation_regular_start] = ACTIONS(1713), + [sym_interpolation_verbatim_start] = ACTIONS(1715), + [sym_interpolation_raw_start] = ACTIONS(1717), + [sym_raw_string_start] = ACTIONS(1719), }, [897] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2762), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2901), [sym__name] = STATE(5889), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2247), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(4346), - [sym_non_lvalue_expression] = STATE(3438), - [sym_lvalue_expression] = STATE(3224), - [sym__expression_statement_expression] = STATE(3362), - [sym_assignment_expression] = STATE(3449), - [sym_binary_expression] = STATE(3362), - [sym_postfix_unary_expression] = STATE(3449), - [sym_prefix_unary_expression] = STATE(3449), - [sym__pointer_indirection_expression] = STATE(2747), - [sym_query_expression] = STATE(3362), - [sym_from_clause] = STATE(6146), - [sym_conditional_expression] = STATE(3362), - [sym_conditional_access_expression] = STATE(3362), - [sym_as_expression] = STATE(3362), - [sym_is_expression] = STATE(3362), - [sym_is_pattern_expression] = STATE(3362), - [sym_cast_expression] = STATE(3362), - [sym_checked_expression] = STATE(3362), - [sym_invocation_expression] = STATE(3449), - [sym_switch_expression] = STATE(3362), - [sym_await_expression] = STATE(3449), - [sym_throw_expression] = STATE(3362), - [sym_element_access_expression] = STATE(2747), - [sym_interpolated_string_expression] = STATE(3362), - [sym_member_access_expression] = STATE(2747), - [sym_object_creation_expression] = STATE(3449), - [sym_parenthesized_expression] = STATE(3449), - [sym__parenthesized_lvalue_expression] = STATE(2747), - [sym_lambda_expression] = STATE(3362), - [sym__lambda_expression_init] = STATE(7381), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3362), - [sym_anonymous_method_expression] = STATE(3362), - [sym_anonymous_object_creation_expression] = STATE(3362), - [sym_implicit_array_creation_expression] = STATE(3362), - [sym_implicit_object_creation_expression] = STATE(3362), - [sym_implicit_stackalloc_expression] = STATE(3362), - [sym_initializer_expression] = STATE(3362), - [sym_default_expression] = STATE(3362), - [sym_with_expression] = STATE(3362), - [sym_sizeof_expression] = STATE(3362), - [sym_typeof_expression] = STATE(3362), - [sym_makeref_expression] = STATE(3362), - [sym_ref_expression] = STATE(3362), - [sym_reftype_expression] = STATE(3362), - [sym_refvalue_expression] = STATE(3362), - [sym_stackalloc_expression] = STATE(3362), - [sym_range_expression] = STATE(3362), - [sym_tuple_expression] = STATE(2747), - [sym_literal] = STATE(3362), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3362), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2349), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(3720), + [sym_non_lvalue_expression] = STATE(3685), + [sym_lvalue_expression] = STATE(2985), + [sym__expression_statement_expression] = STATE(3836), + [sym_assignment_expression] = STATE(3689), + [sym_binary_expression] = STATE(3836), + [sym_postfix_unary_expression] = STATE(3689), + [sym_prefix_unary_expression] = STATE(3689), + [sym__pointer_indirection_expression] = STATE(2906), + [sym_query_expression] = STATE(3836), + [sym_from_clause] = STATE(6157), + [sym_conditional_expression] = STATE(3836), + [sym_conditional_access_expression] = STATE(3836), + [sym_as_expression] = STATE(3836), + [sym_is_expression] = STATE(3836), + [sym_is_pattern_expression] = STATE(3836), + [sym_cast_expression] = STATE(3836), + [sym_checked_expression] = STATE(3836), + [sym_invocation_expression] = STATE(3689), + [sym_switch_expression] = STATE(3836), + [sym_await_expression] = STATE(3689), + [sym_throw_expression] = STATE(3836), + [sym_element_access_expression] = STATE(2906), + [sym_interpolated_string_expression] = STATE(3836), + [sym_member_access_expression] = STATE(2906), + [sym_object_creation_expression] = STATE(3689), + [sym_parenthesized_expression] = STATE(3689), + [sym__parenthesized_lvalue_expression] = STATE(2906), + [sym_lambda_expression] = STATE(3836), + [sym__lambda_expression_init] = STATE(7485), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3836), + [sym_anonymous_method_expression] = STATE(3836), + [sym_anonymous_object_creation_expression] = STATE(3836), + [sym_implicit_array_creation_expression] = STATE(3836), + [sym_implicit_object_creation_expression] = STATE(3836), + [sym_implicit_stackalloc_expression] = STATE(3836), + [sym_initializer_expression] = STATE(3836), + [sym_default_expression] = STATE(3836), + [sym_with_expression] = STATE(3836), + [sym_sizeof_expression] = STATE(3836), + [sym_typeof_expression] = STATE(3836), + [sym_makeref_expression] = STATE(3836), + [sym_ref_expression] = STATE(3836), + [sym_reftype_expression] = STATE(3836), + [sym_refvalue_expression] = STATE(3836), + [sym_stackalloc_expression] = STATE(3836), + [sym_range_expression] = STATE(3836), + [sym_tuple_expression] = STATE(2906), + [sym_literal] = STATE(3836), + [sym_character_literal] = STATE(3843), + [sym_string_literal] = STATE(3843), + [sym_raw_string_literal] = STATE(3843), + [sym_boolean_literal] = STATE(3843), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3836), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(897), [sym_preproc_endregion] = STATE(897), [sym_preproc_line] = STATE(897), @@ -193452,47 +193338,47 @@ 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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3385), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3477), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1307), - [anon_sym_LPAREN] = ACTIONS(1359), - [anon_sym_ref] = ACTIONS(1361), - [anon_sym_LBRACE] = ACTIONS(1313), - [anon_sym_delegate] = ACTIONS(1315), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1655), + [anon_sym_LPAREN] = ACTIONS(2043), + [anon_sym_ref] = ACTIONS(2045), + [anon_sym_LBRACE] = ACTIONS(1661), + [anon_sym_delegate] = ACTIONS(1663), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1317), + [anon_sym_new] = ACTIONS(1759), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1319), - [anon_sym_BANG] = ACTIONS(1107), - [anon_sym_TILDE] = ACTIONS(1107), - [anon_sym_PLUS_PLUS] = ACTIONS(1107), - [anon_sym_DASH_DASH] = ACTIONS(1107), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1109), - [anon_sym_DASH] = ACTIONS(1109), - [anon_sym_STAR] = ACTIONS(1363), - [anon_sym_CARET] = ACTIONS(1107), - [anon_sym_AMP] = ACTIONS(1107), - [anon_sym_this] = ACTIONS(1323), + [anon_sym_checked] = ACTIONS(1667), + [anon_sym_BANG] = ACTIONS(2049), + [anon_sym_TILDE] = ACTIONS(2049), + [anon_sym_PLUS_PLUS] = ACTIONS(2049), + [anon_sym_DASH_DASH] = ACTIONS(2049), + [anon_sym_true] = ACTIONS(1673), + [anon_sym_false] = ACTIONS(1673), + [anon_sym_PLUS] = ACTIONS(2047), + [anon_sym_DASH] = ACTIONS(2047), + [anon_sym_STAR] = ACTIONS(1765), + [anon_sym_CARET] = ACTIONS(2049), + [anon_sym_AMP] = ACTIONS(2049), + [anon_sym_this] = ACTIONS(1677), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1325), + [anon_sym_base] = ACTIONS(1679), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1319), + [sym_predefined_type] = ACTIONS(1681), + [anon_sym_unchecked] = ACTIONS(1667), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1365), + [anon_sym_default] = ACTIONS(1683), + [anon_sym_throw] = ACTIONS(2051), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1367), - [anon_sym_DOT_DOT] = ACTIONS(1369), + [anon_sym_await] = ACTIONS(2053), + [anon_sym_DOT_DOT] = ACTIONS(2055), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -193505,19 +193391,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1333), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(1335), - [anon_sym___reftype] = ACTIONS(1337), - [anon_sym___refvalue] = ACTIONS(1339), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1341), + [anon_sym_stackalloc] = ACTIONS(1691), + [anon_sym_sizeof] = ACTIONS(1693), + [anon_sym_typeof] = ACTIONS(1695), + [anon_sym___makeref] = ACTIONS(1697), + [anon_sym___reftype] = ACTIONS(1699), + [anon_sym___refvalue] = ACTIONS(1701), + [sym_null_literal] = ACTIONS(1703), + [anon_sym_SQUOTE] = ACTIONS(1705), + [sym_integer_literal] = ACTIONS(1703), + [sym_real_literal] = ACTIONS(1707), + [anon_sym_DQUOTE] = ACTIONS(1709), + [sym_verbatim_string_literal] = ACTIONS(1707), + [aux_sym_preproc_if_token1] = ACTIONS(1711), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -193528,90 +193414,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(151), - [sym_interpolation_verbatim_start] = ACTIONS(153), - [sym_interpolation_raw_start] = ACTIONS(155), - [sym_raw_string_start] = ACTIONS(157), + [sym_interpolation_regular_start] = ACTIONS(1713), + [sym_interpolation_verbatim_start] = ACTIONS(1715), + [sym_interpolation_raw_start] = ACTIONS(1717), + [sym_raw_string_start] = ACTIONS(1719), }, [898] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2762), - [sym__name] = STATE(5889), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2247), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(4347), - [sym_non_lvalue_expression] = STATE(3438), - [sym_lvalue_expression] = STATE(3224), - [sym__expression_statement_expression] = STATE(3362), - [sym_assignment_expression] = STATE(3449), - [sym_binary_expression] = STATE(3362), - [sym_postfix_unary_expression] = STATE(3449), - [sym_prefix_unary_expression] = STATE(3449), - [sym__pointer_indirection_expression] = STATE(2747), - [sym_query_expression] = STATE(3362), - [sym_from_clause] = STATE(6146), - [sym_conditional_expression] = STATE(3362), - [sym_conditional_access_expression] = STATE(3362), - [sym_as_expression] = STATE(3362), - [sym_is_expression] = STATE(3362), - [sym_is_pattern_expression] = STATE(3362), - [sym_cast_expression] = STATE(3362), - [sym_checked_expression] = STATE(3362), - [sym_invocation_expression] = STATE(3449), - [sym_switch_expression] = STATE(3362), - [sym_await_expression] = STATE(3449), - [sym_throw_expression] = STATE(3362), - [sym_element_access_expression] = STATE(2747), - [sym_interpolated_string_expression] = STATE(3362), - [sym_member_access_expression] = STATE(2747), - [sym_object_creation_expression] = STATE(3449), - [sym_parenthesized_expression] = STATE(3449), - [sym__parenthesized_lvalue_expression] = STATE(2747), - [sym_lambda_expression] = STATE(3362), - [sym__lambda_expression_init] = STATE(7381), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3362), - [sym_anonymous_method_expression] = STATE(3362), - [sym_anonymous_object_creation_expression] = STATE(3362), - [sym_implicit_array_creation_expression] = STATE(3362), - [sym_implicit_object_creation_expression] = STATE(3362), - [sym_implicit_stackalloc_expression] = STATE(3362), - [sym_initializer_expression] = STATE(3362), - [sym_default_expression] = STATE(3362), - [sym_with_expression] = STATE(3362), - [sym_sizeof_expression] = STATE(3362), - [sym_typeof_expression] = STATE(3362), - [sym_makeref_expression] = STATE(3362), - [sym_ref_expression] = STATE(3362), - [sym_reftype_expression] = STATE(3362), - [sym_refvalue_expression] = STATE(3362), - [sym_stackalloc_expression] = STATE(3362), - [sym_range_expression] = STATE(3362), - [sym_tuple_expression] = STATE(2747), - [sym_literal] = STATE(3362), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3362), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2416), + [sym__name] = STATE(5900), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2193), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(4363), + [sym_non_lvalue_expression] = STATE(3040), + [sym_lvalue_expression] = STATE(3231), + [sym__expression_statement_expression] = STATE(3035), + [sym_assignment_expression] = STATE(3043), + [sym_binary_expression] = STATE(3035), + [sym_postfix_unary_expression] = STATE(3043), + [sym_prefix_unary_expression] = STATE(3043), + [sym__pointer_indirection_expression] = STATE(2415), + [sym_query_expression] = STATE(3035), + [sym_from_clause] = STATE(6149), + [sym_conditional_expression] = STATE(3035), + [sym_conditional_access_expression] = STATE(3035), + [sym_as_expression] = STATE(3035), + [sym_is_expression] = STATE(3035), + [sym_is_pattern_expression] = STATE(3035), + [sym_cast_expression] = STATE(3035), + [sym_checked_expression] = STATE(3035), + [sym_invocation_expression] = STATE(3043), + [sym_switch_expression] = STATE(3035), + [sym_await_expression] = STATE(3043), + [sym_throw_expression] = STATE(3035), + [sym_element_access_expression] = STATE(2415), + [sym_interpolated_string_expression] = STATE(3035), + [sym_member_access_expression] = STATE(2415), + [sym_object_creation_expression] = STATE(3043), + [sym_parenthesized_expression] = STATE(3043), + [sym__parenthesized_lvalue_expression] = STATE(2415), + [sym_lambda_expression] = STATE(3035), + [sym__lambda_expression_init] = STATE(7405), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3035), + [sym_anonymous_method_expression] = STATE(3035), + [sym_anonymous_object_creation_expression] = STATE(3035), + [sym_implicit_array_creation_expression] = STATE(3035), + [sym_implicit_object_creation_expression] = STATE(3035), + [sym_implicit_stackalloc_expression] = STATE(3035), + [sym_initializer_expression] = STATE(3035), + [sym_default_expression] = STATE(3035), + [sym_with_expression] = STATE(3035), + [sym_sizeof_expression] = STATE(3035), + [sym_typeof_expression] = STATE(3035), + [sym_makeref_expression] = STATE(3035), + [sym_ref_expression] = STATE(3035), + [sym_reftype_expression] = STATE(3035), + [sym_refvalue_expression] = STATE(3035), + [sym_stackalloc_expression] = STATE(3035), + [sym_range_expression] = STATE(3035), + [sym_tuple_expression] = STATE(2415), + [sym_literal] = STATE(3035), + [sym_character_literal] = STATE(3037), + [sym_string_literal] = STATE(3037), + [sym_raw_string_literal] = STATE(3037), + [sym_boolean_literal] = STATE(3037), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3035), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(898), [sym_preproc_endregion] = STATE(898), [sym_preproc_line] = STATE(898), @@ -193621,47 +193507,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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3385), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3455), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1307), - [anon_sym_LPAREN] = ACTIONS(1359), - [anon_sym_ref] = ACTIONS(1361), - [anon_sym_LBRACE] = ACTIONS(1313), - [anon_sym_delegate] = ACTIONS(1315), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1239), + [anon_sym_LPAREN] = ACTIONS(1495), + [anon_sym_ref] = ACTIONS(1497), + [anon_sym_LBRACE] = ACTIONS(1245), + [anon_sym_delegate] = ACTIONS(1247), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1317), + [anon_sym_new] = ACTIONS(1249), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1319), - [anon_sym_BANG] = ACTIONS(1107), - [anon_sym_TILDE] = ACTIONS(1107), - [anon_sym_PLUS_PLUS] = ACTIONS(1107), - [anon_sym_DASH_DASH] = ACTIONS(1107), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1109), - [anon_sym_DASH] = ACTIONS(1109), - [anon_sym_STAR] = ACTIONS(1363), - [anon_sym_CARET] = ACTIONS(1107), - [anon_sym_AMP] = ACTIONS(1107), - [anon_sym_this] = ACTIONS(1323), + [anon_sym_checked] = ACTIONS(1251), + [anon_sym_BANG] = ACTIONS(1501), + [anon_sym_TILDE] = ACTIONS(1501), + [anon_sym_PLUS_PLUS] = ACTIONS(1501), + [anon_sym_DASH_DASH] = ACTIONS(1501), + [anon_sym_true] = ACTIONS(1257), + [anon_sym_false] = ACTIONS(1257), + [anon_sym_PLUS] = ACTIONS(1499), + [anon_sym_DASH] = ACTIONS(1499), + [anon_sym_STAR] = ACTIONS(1503), + [anon_sym_CARET] = ACTIONS(1501), + [anon_sym_AMP] = ACTIONS(1501), + [anon_sym_this] = ACTIONS(1261), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1325), + [anon_sym_base] = ACTIONS(1263), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1319), + [sym_predefined_type] = ACTIONS(1265), + [anon_sym_unchecked] = ACTIONS(1251), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1365), + [anon_sym_default] = ACTIONS(1267), + [anon_sym_throw] = ACTIONS(1505), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1367), - [anon_sym_DOT_DOT] = ACTIONS(1369), + [anon_sym_await] = ACTIONS(1507), + [anon_sym_DOT_DOT] = ACTIONS(1509), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -193674,19 +193560,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1333), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(1335), - [anon_sym___reftype] = ACTIONS(1337), - [anon_sym___refvalue] = ACTIONS(1339), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1341), + [anon_sym_stackalloc] = ACTIONS(1275), + [anon_sym_sizeof] = ACTIONS(1277), + [anon_sym_typeof] = ACTIONS(1279), + [anon_sym___makeref] = ACTIONS(1281), + [anon_sym___reftype] = ACTIONS(1283), + [anon_sym___refvalue] = ACTIONS(1285), + [sym_null_literal] = ACTIONS(1287), + [anon_sym_SQUOTE] = ACTIONS(1289), + [sym_integer_literal] = ACTIONS(1287), + [sym_real_literal] = ACTIONS(1291), + [anon_sym_DQUOTE] = ACTIONS(1293), + [sym_verbatim_string_literal] = ACTIONS(1291), + [aux_sym_preproc_if_token1] = ACTIONS(1295), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -193697,90 +193583,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(151), - [sym_interpolation_verbatim_start] = ACTIONS(153), - [sym_interpolation_raw_start] = ACTIONS(155), - [sym_raw_string_start] = ACTIONS(157), + [sym_interpolation_regular_start] = ACTIONS(1297), + [sym_interpolation_verbatim_start] = ACTIONS(1299), + [sym_interpolation_raw_start] = ACTIONS(1301), + [sym_raw_string_start] = ACTIONS(1303), }, [899] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2762), - [sym__name] = STATE(5889), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2247), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(3218), - [sym_non_lvalue_expression] = STATE(3438), - [sym_lvalue_expression] = STATE(3224), - [sym__expression_statement_expression] = STATE(3362), - [sym_assignment_expression] = STATE(3449), - [sym_binary_expression] = STATE(3362), - [sym_postfix_unary_expression] = STATE(3449), - [sym_prefix_unary_expression] = STATE(3449), - [sym__pointer_indirection_expression] = STATE(2747), - [sym_query_expression] = STATE(3362), - [sym_from_clause] = STATE(6146), - [sym_conditional_expression] = STATE(3362), - [sym_conditional_access_expression] = STATE(3362), - [sym_as_expression] = STATE(3362), - [sym_is_expression] = STATE(3362), - [sym_is_pattern_expression] = STATE(3362), - [sym_cast_expression] = STATE(3362), - [sym_checked_expression] = STATE(3362), - [sym_invocation_expression] = STATE(3449), - [sym_switch_expression] = STATE(3362), - [sym_await_expression] = STATE(3449), - [sym_throw_expression] = STATE(3362), - [sym_element_access_expression] = STATE(2747), - [sym_interpolated_string_expression] = STATE(3362), - [sym_member_access_expression] = STATE(2747), - [sym_object_creation_expression] = STATE(3449), - [sym_parenthesized_expression] = STATE(3449), - [sym__parenthesized_lvalue_expression] = STATE(2747), - [sym_lambda_expression] = STATE(3362), - [sym__lambda_expression_init] = STATE(7381), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3362), - [sym_anonymous_method_expression] = STATE(3362), - [sym_anonymous_object_creation_expression] = STATE(3362), - [sym_implicit_array_creation_expression] = STATE(3362), - [sym_implicit_object_creation_expression] = STATE(3362), - [sym_implicit_stackalloc_expression] = STATE(3362), - [sym_initializer_expression] = STATE(3362), - [sym_default_expression] = STATE(3362), - [sym_with_expression] = STATE(3362), - [sym_sizeof_expression] = STATE(3362), - [sym_typeof_expression] = STATE(3362), - [sym_makeref_expression] = STATE(3362), - [sym_ref_expression] = STATE(3362), - [sym_reftype_expression] = STATE(3362), - [sym_refvalue_expression] = STATE(3362), - [sym_stackalloc_expression] = STATE(3362), - [sym_range_expression] = STATE(3362), - [sym_tuple_expression] = STATE(2747), - [sym_literal] = STATE(3362), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3362), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2416), + [sym__name] = STATE(5900), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2193), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(2893), + [sym_non_lvalue_expression] = STATE(3040), + [sym_lvalue_expression] = STATE(3231), + [sym__expression_statement_expression] = STATE(3035), + [sym_assignment_expression] = STATE(3043), + [sym_binary_expression] = STATE(3035), + [sym_postfix_unary_expression] = STATE(3043), + [sym_prefix_unary_expression] = STATE(3043), + [sym__pointer_indirection_expression] = STATE(2415), + [sym_query_expression] = STATE(3035), + [sym_from_clause] = STATE(6149), + [sym_conditional_expression] = STATE(3035), + [sym_conditional_access_expression] = STATE(3035), + [sym_as_expression] = STATE(3035), + [sym_is_expression] = STATE(3035), + [sym_is_pattern_expression] = STATE(3035), + [sym_cast_expression] = STATE(3035), + [sym_checked_expression] = STATE(3035), + [sym_invocation_expression] = STATE(3043), + [sym_switch_expression] = STATE(3035), + [sym_await_expression] = STATE(3043), + [sym_throw_expression] = STATE(3035), + [sym_element_access_expression] = STATE(2415), + [sym_interpolated_string_expression] = STATE(3035), + [sym_member_access_expression] = STATE(2415), + [sym_object_creation_expression] = STATE(3043), + [sym_parenthesized_expression] = STATE(3043), + [sym__parenthesized_lvalue_expression] = STATE(2415), + [sym_lambda_expression] = STATE(3035), + [sym__lambda_expression_init] = STATE(7405), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3035), + [sym_anonymous_method_expression] = STATE(3035), + [sym_anonymous_object_creation_expression] = STATE(3035), + [sym_implicit_array_creation_expression] = STATE(3035), + [sym_implicit_object_creation_expression] = STATE(3035), + [sym_implicit_stackalloc_expression] = STATE(3035), + [sym_initializer_expression] = STATE(3035), + [sym_default_expression] = STATE(3035), + [sym_with_expression] = STATE(3035), + [sym_sizeof_expression] = STATE(3035), + [sym_typeof_expression] = STATE(3035), + [sym_makeref_expression] = STATE(3035), + [sym_ref_expression] = STATE(3035), + [sym_reftype_expression] = STATE(3035), + [sym_refvalue_expression] = STATE(3035), + [sym_stackalloc_expression] = STATE(3035), + [sym_range_expression] = STATE(3035), + [sym_tuple_expression] = STATE(2415), + [sym_literal] = STATE(3035), + [sym_character_literal] = STATE(3037), + [sym_string_literal] = STATE(3037), + [sym_raw_string_literal] = STATE(3037), + [sym_boolean_literal] = STATE(3037), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3035), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(899), [sym_preproc_endregion] = STATE(899), [sym_preproc_line] = STATE(899), @@ -193790,47 +193676,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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3385), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3455), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1307), - [anon_sym_LPAREN] = ACTIONS(1359), - [anon_sym_ref] = ACTIONS(1361), - [anon_sym_LBRACE] = ACTIONS(1313), - [anon_sym_delegate] = ACTIONS(1315), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1239), + [anon_sym_LPAREN] = ACTIONS(1495), + [anon_sym_ref] = ACTIONS(1497), + [anon_sym_LBRACE] = ACTIONS(1245), + [anon_sym_delegate] = ACTIONS(1247), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1317), + [anon_sym_new] = ACTIONS(1249), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1319), - [anon_sym_BANG] = ACTIONS(1107), - [anon_sym_TILDE] = ACTIONS(1107), - [anon_sym_PLUS_PLUS] = ACTIONS(1107), - [anon_sym_DASH_DASH] = ACTIONS(1107), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1109), - [anon_sym_DASH] = ACTIONS(1109), - [anon_sym_STAR] = ACTIONS(1363), - [anon_sym_CARET] = ACTIONS(1107), - [anon_sym_AMP] = ACTIONS(1107), - [anon_sym_this] = ACTIONS(1323), + [anon_sym_checked] = ACTIONS(1251), + [anon_sym_BANG] = ACTIONS(1501), + [anon_sym_TILDE] = ACTIONS(1501), + [anon_sym_PLUS_PLUS] = ACTIONS(1501), + [anon_sym_DASH_DASH] = ACTIONS(1501), + [anon_sym_true] = ACTIONS(1257), + [anon_sym_false] = ACTIONS(1257), + [anon_sym_PLUS] = ACTIONS(1499), + [anon_sym_DASH] = ACTIONS(1499), + [anon_sym_STAR] = ACTIONS(1503), + [anon_sym_CARET] = ACTIONS(1501), + [anon_sym_AMP] = ACTIONS(1501), + [anon_sym_this] = ACTIONS(1261), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1325), + [anon_sym_base] = ACTIONS(1263), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1319), + [sym_predefined_type] = ACTIONS(1265), + [anon_sym_unchecked] = ACTIONS(1251), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1365), + [anon_sym_default] = ACTIONS(1267), + [anon_sym_throw] = ACTIONS(1505), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1367), - [anon_sym_DOT_DOT] = ACTIONS(1369), + [anon_sym_await] = ACTIONS(1507), + [anon_sym_DOT_DOT] = ACTIONS(1509), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -193843,19 +193729,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1333), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(1335), - [anon_sym___reftype] = ACTIONS(1337), - [anon_sym___refvalue] = ACTIONS(1339), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1341), + [anon_sym_stackalloc] = ACTIONS(1275), + [anon_sym_sizeof] = ACTIONS(1277), + [anon_sym_typeof] = ACTIONS(1279), + [anon_sym___makeref] = ACTIONS(1281), + [anon_sym___reftype] = ACTIONS(1283), + [anon_sym___refvalue] = ACTIONS(1285), + [sym_null_literal] = ACTIONS(1287), + [anon_sym_SQUOTE] = ACTIONS(1289), + [sym_integer_literal] = ACTIONS(1287), + [sym_real_literal] = ACTIONS(1291), + [anon_sym_DQUOTE] = ACTIONS(1293), + [sym_verbatim_string_literal] = ACTIONS(1291), + [aux_sym_preproc_if_token1] = ACTIONS(1295), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -193866,90 +193752,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(151), - [sym_interpolation_verbatim_start] = ACTIONS(153), - [sym_interpolation_raw_start] = ACTIONS(155), - [sym_raw_string_start] = ACTIONS(157), + [sym_interpolation_regular_start] = ACTIONS(1297), + [sym_interpolation_verbatim_start] = ACTIONS(1299), + [sym_interpolation_raw_start] = ACTIONS(1301), + [sym_raw_string_start] = ACTIONS(1303), }, [900] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2420), - [sym__name] = STATE(5888), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2384), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(5218), - [sym_non_lvalue_expression] = STATE(3066), - [sym_lvalue_expression] = STATE(3554), - [sym__expression_statement_expression] = STATE(3006), - [sym_assignment_expression] = STATE(3020), - [sym_binary_expression] = STATE(3006), - [sym_postfix_unary_expression] = STATE(3020), - [sym_prefix_unary_expression] = STATE(3020), - [sym__pointer_indirection_expression] = STATE(2423), - [sym_query_expression] = STATE(3006), - [sym_from_clause] = STATE(6151), - [sym_conditional_expression] = STATE(3006), - [sym_conditional_access_expression] = STATE(3006), - [sym_as_expression] = STATE(3006), - [sym_is_expression] = STATE(3006), - [sym_is_pattern_expression] = STATE(3006), - [sym_cast_expression] = STATE(3006), - [sym_checked_expression] = STATE(3006), - [sym_invocation_expression] = STATE(3020), - [sym_switch_expression] = STATE(3006), - [sym_await_expression] = STATE(3020), - [sym_throw_expression] = STATE(3006), - [sym_element_access_expression] = STATE(2423), - [sym_interpolated_string_expression] = STATE(3006), - [sym_member_access_expression] = STATE(2423), - [sym_object_creation_expression] = STATE(3020), - [sym_parenthesized_expression] = STATE(3020), - [sym__parenthesized_lvalue_expression] = STATE(2423), - [sym_lambda_expression] = STATE(3006), - [sym__lambda_expression_init] = STATE(7640), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3006), - [sym_anonymous_method_expression] = STATE(3006), - [sym_anonymous_object_creation_expression] = STATE(3006), - [sym_implicit_array_creation_expression] = STATE(3006), - [sym_implicit_object_creation_expression] = STATE(3006), - [sym_implicit_stackalloc_expression] = STATE(3006), - [sym_initializer_expression] = STATE(3006), - [sym_default_expression] = STATE(3006), - [sym_with_expression] = STATE(3006), - [sym_sizeof_expression] = STATE(3006), - [sym_typeof_expression] = STATE(3006), - [sym_makeref_expression] = STATE(3006), - [sym_ref_expression] = STATE(3006), - [sym_reftype_expression] = STATE(3006), - [sym_refvalue_expression] = STATE(3006), - [sym_stackalloc_expression] = STATE(3006), - [sym_range_expression] = STATE(3006), - [sym_tuple_expression] = STATE(2423), - [sym_literal] = STATE(3006), - [sym_character_literal] = STATE(3011), - [sym_string_literal] = STATE(3011), - [sym_raw_string_literal] = STATE(3011), - [sym_boolean_literal] = STATE(3011), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3006), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2901), + [sym__name] = STATE(5889), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2349), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(3749), + [sym_non_lvalue_expression] = STATE(3685), + [sym_lvalue_expression] = STATE(2985), + [sym__expression_statement_expression] = STATE(3836), + [sym_assignment_expression] = STATE(3689), + [sym_binary_expression] = STATE(3836), + [sym_postfix_unary_expression] = STATE(3689), + [sym_prefix_unary_expression] = STATE(3689), + [sym__pointer_indirection_expression] = STATE(2906), + [sym_query_expression] = STATE(3836), + [sym_from_clause] = STATE(6157), + [sym_conditional_expression] = STATE(3836), + [sym_conditional_access_expression] = STATE(3836), + [sym_as_expression] = STATE(3836), + [sym_is_expression] = STATE(3836), + [sym_is_pattern_expression] = STATE(3836), + [sym_cast_expression] = STATE(3836), + [sym_checked_expression] = STATE(3836), + [sym_invocation_expression] = STATE(3689), + [sym_switch_expression] = STATE(3836), + [sym_await_expression] = STATE(3689), + [sym_throw_expression] = STATE(3836), + [sym_element_access_expression] = STATE(2906), + [sym_interpolated_string_expression] = STATE(3836), + [sym_member_access_expression] = STATE(2906), + [sym_object_creation_expression] = STATE(3689), + [sym_parenthesized_expression] = STATE(3689), + [sym__parenthesized_lvalue_expression] = STATE(2906), + [sym_lambda_expression] = STATE(3836), + [sym__lambda_expression_init] = STATE(7485), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3836), + [sym_anonymous_method_expression] = STATE(3836), + [sym_anonymous_object_creation_expression] = STATE(3836), + [sym_implicit_array_creation_expression] = STATE(3836), + [sym_implicit_object_creation_expression] = STATE(3836), + [sym_implicit_stackalloc_expression] = STATE(3836), + [sym_initializer_expression] = STATE(3836), + [sym_default_expression] = STATE(3836), + [sym_with_expression] = STATE(3836), + [sym_sizeof_expression] = STATE(3836), + [sym_typeof_expression] = STATE(3836), + [sym_makeref_expression] = STATE(3836), + [sym_ref_expression] = STATE(3836), + [sym_reftype_expression] = STATE(3836), + [sym_refvalue_expression] = STATE(3836), + [sym_stackalloc_expression] = STATE(3836), + [sym_range_expression] = STATE(3836), + [sym_tuple_expression] = STATE(2906), + [sym_literal] = STATE(3836), + [sym_character_literal] = STATE(3843), + [sym_string_literal] = STATE(3843), + [sym_raw_string_literal] = STATE(3843), + [sym_boolean_literal] = STATE(3843), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3836), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(900), [sym_preproc_endregion] = STATE(900), [sym_preproc_line] = STATE(900), @@ -193959,47 +193845,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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3440), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3477), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1241), - [anon_sym_LPAREN] = ACTIONS(2281), - [anon_sym_ref] = ACTIONS(2283), - [anon_sym_LBRACE] = ACTIONS(1247), - [anon_sym_delegate] = ACTIONS(1249), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1655), + [anon_sym_LPAREN] = ACTIONS(2043), + [anon_sym_ref] = ACTIONS(2045), + [anon_sym_LBRACE] = ACTIONS(1661), + [anon_sym_delegate] = ACTIONS(1663), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(2285), + [anon_sym_new] = ACTIONS(1759), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1253), - [anon_sym_BANG] = ACTIONS(2289), - [anon_sym_TILDE] = ACTIONS(2289), - [anon_sym_PLUS_PLUS] = ACTIONS(2289), - [anon_sym_DASH_DASH] = ACTIONS(2289), - [anon_sym_true] = ACTIONS(1259), - [anon_sym_false] = ACTIONS(1259), - [anon_sym_PLUS] = ACTIONS(2287), - [anon_sym_DASH] = ACTIONS(2287), - [anon_sym_STAR] = ACTIONS(2291), - [anon_sym_CARET] = ACTIONS(2289), - [anon_sym_AMP] = ACTIONS(2289), - [anon_sym_this] = ACTIONS(1263), + [anon_sym_checked] = ACTIONS(1667), + [anon_sym_BANG] = ACTIONS(2049), + [anon_sym_TILDE] = ACTIONS(2049), + [anon_sym_PLUS_PLUS] = ACTIONS(2049), + [anon_sym_DASH_DASH] = ACTIONS(2049), + [anon_sym_true] = ACTIONS(1673), + [anon_sym_false] = ACTIONS(1673), + [anon_sym_PLUS] = ACTIONS(2047), + [anon_sym_DASH] = ACTIONS(2047), + [anon_sym_STAR] = ACTIONS(1765), + [anon_sym_CARET] = ACTIONS(2049), + [anon_sym_AMP] = ACTIONS(2049), + [anon_sym_this] = ACTIONS(1677), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1265), + [anon_sym_base] = ACTIONS(1679), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1267), - [anon_sym_unchecked] = ACTIONS(1253), + [sym_predefined_type] = ACTIONS(1681), + [anon_sym_unchecked] = ACTIONS(1667), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1269), - [anon_sym_throw] = ACTIONS(2293), + [anon_sym_default] = ACTIONS(1683), + [anon_sym_throw] = ACTIONS(2051), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2295), - [anon_sym_DOT_DOT] = ACTIONS(2297), + [anon_sym_await] = ACTIONS(2053), + [anon_sym_DOT_DOT] = ACTIONS(2055), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -194012,19 +193898,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1277), - [anon_sym_sizeof] = ACTIONS(1279), - [anon_sym_typeof] = ACTIONS(1281), - [anon_sym___makeref] = ACTIONS(1283), - [anon_sym___reftype] = ACTIONS(1285), - [anon_sym___refvalue] = ACTIONS(1287), - [sym_null_literal] = ACTIONS(1289), - [anon_sym_SQUOTE] = ACTIONS(1291), - [sym_integer_literal] = ACTIONS(1289), - [sym_real_literal] = ACTIONS(1293), - [anon_sym_DQUOTE] = ACTIONS(1295), - [sym_verbatim_string_literal] = ACTIONS(1293), - [aux_sym_preproc_if_token1] = ACTIONS(1297), + [anon_sym_stackalloc] = ACTIONS(1691), + [anon_sym_sizeof] = ACTIONS(1693), + [anon_sym_typeof] = ACTIONS(1695), + [anon_sym___makeref] = ACTIONS(1697), + [anon_sym___reftype] = ACTIONS(1699), + [anon_sym___refvalue] = ACTIONS(1701), + [sym_null_literal] = ACTIONS(1703), + [anon_sym_SQUOTE] = ACTIONS(1705), + [sym_integer_literal] = ACTIONS(1703), + [sym_real_literal] = ACTIONS(1707), + [anon_sym_DQUOTE] = ACTIONS(1709), + [sym_verbatim_string_literal] = ACTIONS(1707), + [aux_sym_preproc_if_token1] = ACTIONS(1711), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -194035,90 +193921,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1299), - [sym_interpolation_verbatim_start] = ACTIONS(1301), - [sym_interpolation_raw_start] = ACTIONS(1303), - [sym_raw_string_start] = ACTIONS(1305), + [sym_interpolation_regular_start] = ACTIONS(1713), + [sym_interpolation_verbatim_start] = ACTIONS(1715), + [sym_interpolation_raw_start] = ACTIONS(1717), + [sym_raw_string_start] = ACTIONS(1719), }, [901] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2420), - [sym__name] = STATE(5888), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2384), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(2908), - [sym_non_lvalue_expression] = STATE(3066), - [sym_lvalue_expression] = STATE(3554), - [sym__expression_statement_expression] = STATE(3006), - [sym_assignment_expression] = STATE(3020), - [sym_binary_expression] = STATE(3006), - [sym_postfix_unary_expression] = STATE(3020), - [sym_prefix_unary_expression] = STATE(3020), - [sym__pointer_indirection_expression] = STATE(2423), - [sym_query_expression] = STATE(3006), - [sym_from_clause] = STATE(6151), - [sym_conditional_expression] = STATE(3006), - [sym_conditional_access_expression] = STATE(3006), - [sym_as_expression] = STATE(3006), - [sym_is_expression] = STATE(3006), - [sym_is_pattern_expression] = STATE(3006), - [sym_cast_expression] = STATE(3006), - [sym_checked_expression] = STATE(3006), - [sym_invocation_expression] = STATE(3020), - [sym_switch_expression] = STATE(3006), - [sym_await_expression] = STATE(3020), - [sym_throw_expression] = STATE(3006), - [sym_element_access_expression] = STATE(2423), - [sym_interpolated_string_expression] = STATE(3006), - [sym_member_access_expression] = STATE(2423), - [sym_object_creation_expression] = STATE(3020), - [sym_parenthesized_expression] = STATE(3020), - [sym__parenthesized_lvalue_expression] = STATE(2423), - [sym_lambda_expression] = STATE(3006), - [sym__lambda_expression_init] = STATE(7640), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3006), - [sym_anonymous_method_expression] = STATE(3006), - [sym_anonymous_object_creation_expression] = STATE(3006), - [sym_implicit_array_creation_expression] = STATE(3006), - [sym_implicit_object_creation_expression] = STATE(3006), - [sym_implicit_stackalloc_expression] = STATE(3006), - [sym_initializer_expression] = STATE(3006), - [sym_default_expression] = STATE(3006), - [sym_with_expression] = STATE(3006), - [sym_sizeof_expression] = STATE(3006), - [sym_typeof_expression] = STATE(3006), - [sym_makeref_expression] = STATE(3006), - [sym_ref_expression] = STATE(3006), - [sym_reftype_expression] = STATE(3006), - [sym_refvalue_expression] = STATE(3006), - [sym_stackalloc_expression] = STATE(3006), - [sym_range_expression] = STATE(3006), - [sym_tuple_expression] = STATE(2423), - [sym_literal] = STATE(3006), - [sym_character_literal] = STATE(3011), - [sym_string_literal] = STATE(3011), - [sym_raw_string_literal] = STATE(3011), - [sym_boolean_literal] = STATE(3011), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3006), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2901), + [sym__name] = STATE(5889), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2349), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(3751), + [sym_non_lvalue_expression] = STATE(3685), + [sym_lvalue_expression] = STATE(2985), + [sym__expression_statement_expression] = STATE(3836), + [sym_assignment_expression] = STATE(3689), + [sym_binary_expression] = STATE(3836), + [sym_postfix_unary_expression] = STATE(3689), + [sym_prefix_unary_expression] = STATE(3689), + [sym__pointer_indirection_expression] = STATE(2906), + [sym_query_expression] = STATE(3836), + [sym_from_clause] = STATE(6157), + [sym_conditional_expression] = STATE(3836), + [sym_conditional_access_expression] = STATE(3836), + [sym_as_expression] = STATE(3836), + [sym_is_expression] = STATE(3836), + [sym_is_pattern_expression] = STATE(3836), + [sym_cast_expression] = STATE(3836), + [sym_checked_expression] = STATE(3836), + [sym_invocation_expression] = STATE(3689), + [sym_switch_expression] = STATE(3836), + [sym_await_expression] = STATE(3689), + [sym_throw_expression] = STATE(3836), + [sym_element_access_expression] = STATE(2906), + [sym_interpolated_string_expression] = STATE(3836), + [sym_member_access_expression] = STATE(2906), + [sym_object_creation_expression] = STATE(3689), + [sym_parenthesized_expression] = STATE(3689), + [sym__parenthesized_lvalue_expression] = STATE(2906), + [sym_lambda_expression] = STATE(3836), + [sym__lambda_expression_init] = STATE(7485), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3836), + [sym_anonymous_method_expression] = STATE(3836), + [sym_anonymous_object_creation_expression] = STATE(3836), + [sym_implicit_array_creation_expression] = STATE(3836), + [sym_implicit_object_creation_expression] = STATE(3836), + [sym_implicit_stackalloc_expression] = STATE(3836), + [sym_initializer_expression] = STATE(3836), + [sym_default_expression] = STATE(3836), + [sym_with_expression] = STATE(3836), + [sym_sizeof_expression] = STATE(3836), + [sym_typeof_expression] = STATE(3836), + [sym_makeref_expression] = STATE(3836), + [sym_ref_expression] = STATE(3836), + [sym_reftype_expression] = STATE(3836), + [sym_refvalue_expression] = STATE(3836), + [sym_stackalloc_expression] = STATE(3836), + [sym_range_expression] = STATE(3836), + [sym_tuple_expression] = STATE(2906), + [sym_literal] = STATE(3836), + [sym_character_literal] = STATE(3843), + [sym_string_literal] = STATE(3843), + [sym_raw_string_literal] = STATE(3843), + [sym_boolean_literal] = STATE(3843), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3836), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(901), [sym_preproc_endregion] = STATE(901), [sym_preproc_line] = STATE(901), @@ -194128,47 +194014,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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3440), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3477), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1241), - [anon_sym_LPAREN] = ACTIONS(2281), - [anon_sym_ref] = ACTIONS(2283), - [anon_sym_LBRACE] = ACTIONS(1247), - [anon_sym_delegate] = ACTIONS(1249), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1655), + [anon_sym_LPAREN] = ACTIONS(2043), + [anon_sym_ref] = ACTIONS(2045), + [anon_sym_LBRACE] = ACTIONS(1661), + [anon_sym_delegate] = ACTIONS(1663), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(2285), + [anon_sym_new] = ACTIONS(1759), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1253), - [anon_sym_BANG] = ACTIONS(2289), - [anon_sym_TILDE] = ACTIONS(2289), - [anon_sym_PLUS_PLUS] = ACTIONS(2289), - [anon_sym_DASH_DASH] = ACTIONS(2289), - [anon_sym_true] = ACTIONS(1259), - [anon_sym_false] = ACTIONS(1259), - [anon_sym_PLUS] = ACTIONS(2287), - [anon_sym_DASH] = ACTIONS(2287), - [anon_sym_STAR] = ACTIONS(2291), - [anon_sym_CARET] = ACTIONS(2289), - [anon_sym_AMP] = ACTIONS(2289), - [anon_sym_this] = ACTIONS(1263), + [anon_sym_checked] = ACTIONS(1667), + [anon_sym_BANG] = ACTIONS(2049), + [anon_sym_TILDE] = ACTIONS(2049), + [anon_sym_PLUS_PLUS] = ACTIONS(2049), + [anon_sym_DASH_DASH] = ACTIONS(2049), + [anon_sym_true] = ACTIONS(1673), + [anon_sym_false] = ACTIONS(1673), + [anon_sym_PLUS] = ACTIONS(2047), + [anon_sym_DASH] = ACTIONS(2047), + [anon_sym_STAR] = ACTIONS(1765), + [anon_sym_CARET] = ACTIONS(2049), + [anon_sym_AMP] = ACTIONS(2049), + [anon_sym_this] = ACTIONS(1677), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1265), + [anon_sym_base] = ACTIONS(1679), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1267), - [anon_sym_unchecked] = ACTIONS(1253), + [sym_predefined_type] = ACTIONS(1681), + [anon_sym_unchecked] = ACTIONS(1667), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1269), - [anon_sym_throw] = ACTIONS(2293), + [anon_sym_default] = ACTIONS(1683), + [anon_sym_throw] = ACTIONS(2051), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2295), - [anon_sym_DOT_DOT] = ACTIONS(2297), + [anon_sym_await] = ACTIONS(2053), + [anon_sym_DOT_DOT] = ACTIONS(2055), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -194181,19 +194067,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1277), - [anon_sym_sizeof] = ACTIONS(1279), - [anon_sym_typeof] = ACTIONS(1281), - [anon_sym___makeref] = ACTIONS(1283), - [anon_sym___reftype] = ACTIONS(1285), - [anon_sym___refvalue] = ACTIONS(1287), - [sym_null_literal] = ACTIONS(1289), - [anon_sym_SQUOTE] = ACTIONS(1291), - [sym_integer_literal] = ACTIONS(1289), - [sym_real_literal] = ACTIONS(1293), - [anon_sym_DQUOTE] = ACTIONS(1295), - [sym_verbatim_string_literal] = ACTIONS(1293), - [aux_sym_preproc_if_token1] = ACTIONS(1297), + [anon_sym_stackalloc] = ACTIONS(1691), + [anon_sym_sizeof] = ACTIONS(1693), + [anon_sym_typeof] = ACTIONS(1695), + [anon_sym___makeref] = ACTIONS(1697), + [anon_sym___reftype] = ACTIONS(1699), + [anon_sym___refvalue] = ACTIONS(1701), + [sym_null_literal] = ACTIONS(1703), + [anon_sym_SQUOTE] = ACTIONS(1705), + [sym_integer_literal] = ACTIONS(1703), + [sym_real_literal] = ACTIONS(1707), + [anon_sym_DQUOTE] = ACTIONS(1709), + [sym_verbatim_string_literal] = ACTIONS(1707), + [aux_sym_preproc_if_token1] = ACTIONS(1711), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -194204,90 +194090,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1299), - [sym_interpolation_verbatim_start] = ACTIONS(1301), - [sym_interpolation_raw_start] = ACTIONS(1303), - [sym_raw_string_start] = ACTIONS(1305), + [sym_interpolation_regular_start] = ACTIONS(1713), + [sym_interpolation_verbatim_start] = ACTIONS(1715), + [sym_interpolation_raw_start] = ACTIONS(1717), + [sym_raw_string_start] = ACTIONS(1719), }, [902] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2914), - [sym__name] = STATE(5873), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2362), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(3649), - [sym_non_lvalue_expression] = STATE(3880), - [sym_lvalue_expression] = STATE(2949), - [sym__expression_statement_expression] = STATE(3873), - [sym_assignment_expression] = STATE(3881), - [sym_binary_expression] = STATE(3873), - [sym_postfix_unary_expression] = STATE(3881), - [sym_prefix_unary_expression] = STATE(3881), - [sym__pointer_indirection_expression] = STATE(2913), - [sym_query_expression] = STATE(3873), - [sym_from_clause] = STATE(6182), - [sym_conditional_expression] = STATE(3873), - [sym_conditional_access_expression] = STATE(3873), - [sym_as_expression] = STATE(3873), - [sym_is_expression] = STATE(3873), - [sym_is_pattern_expression] = STATE(3873), - [sym_cast_expression] = STATE(3873), - [sym_checked_expression] = STATE(3873), - [sym_invocation_expression] = STATE(3881), - [sym_switch_expression] = STATE(3873), - [sym_await_expression] = STATE(3881), - [sym_throw_expression] = STATE(3873), - [sym_element_access_expression] = STATE(2913), - [sym_interpolated_string_expression] = STATE(3873), - [sym_member_access_expression] = STATE(2913), - [sym_object_creation_expression] = STATE(3881), - [sym_parenthesized_expression] = STATE(3881), - [sym__parenthesized_lvalue_expression] = STATE(2913), - [sym_lambda_expression] = STATE(3873), - [sym__lambda_expression_init] = STATE(7721), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3873), - [sym_anonymous_method_expression] = STATE(3873), - [sym_anonymous_object_creation_expression] = STATE(3873), - [sym_implicit_array_creation_expression] = STATE(3873), - [sym_implicit_object_creation_expression] = STATE(3873), - [sym_implicit_stackalloc_expression] = STATE(3873), - [sym_initializer_expression] = STATE(3873), - [sym_default_expression] = STATE(3873), - [sym_with_expression] = STATE(3873), - [sym_sizeof_expression] = STATE(3873), - [sym_typeof_expression] = STATE(3873), - [sym_makeref_expression] = STATE(3873), - [sym_ref_expression] = STATE(3873), - [sym_reftype_expression] = STATE(3873), - [sym_refvalue_expression] = STATE(3873), - [sym_stackalloc_expression] = STATE(3873), - [sym_range_expression] = STATE(3873), - [sym_tuple_expression] = STATE(2913), - [sym_literal] = STATE(3873), - [sym_character_literal] = STATE(3877), - [sym_string_literal] = STATE(3877), - [sym_raw_string_literal] = STATE(3877), - [sym_boolean_literal] = STATE(3877), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3873), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2901), + [sym__name] = STATE(5889), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2349), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(3752), + [sym_non_lvalue_expression] = STATE(3685), + [sym_lvalue_expression] = STATE(2985), + [sym__expression_statement_expression] = STATE(3836), + [sym_assignment_expression] = STATE(3689), + [sym_binary_expression] = STATE(3836), + [sym_postfix_unary_expression] = STATE(3689), + [sym_prefix_unary_expression] = STATE(3689), + [sym__pointer_indirection_expression] = STATE(2906), + [sym_query_expression] = STATE(3836), + [sym_from_clause] = STATE(6157), + [sym_conditional_expression] = STATE(3836), + [sym_conditional_access_expression] = STATE(3836), + [sym_as_expression] = STATE(3836), + [sym_is_expression] = STATE(3836), + [sym_is_pattern_expression] = STATE(3836), + [sym_cast_expression] = STATE(3836), + [sym_checked_expression] = STATE(3836), + [sym_invocation_expression] = STATE(3689), + [sym_switch_expression] = STATE(3836), + [sym_await_expression] = STATE(3689), + [sym_throw_expression] = STATE(3836), + [sym_element_access_expression] = STATE(2906), + [sym_interpolated_string_expression] = STATE(3836), + [sym_member_access_expression] = STATE(2906), + [sym_object_creation_expression] = STATE(3689), + [sym_parenthesized_expression] = STATE(3689), + [sym__parenthesized_lvalue_expression] = STATE(2906), + [sym_lambda_expression] = STATE(3836), + [sym__lambda_expression_init] = STATE(7485), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3836), + [sym_anonymous_method_expression] = STATE(3836), + [sym_anonymous_object_creation_expression] = STATE(3836), + [sym_implicit_array_creation_expression] = STATE(3836), + [sym_implicit_object_creation_expression] = STATE(3836), + [sym_implicit_stackalloc_expression] = STATE(3836), + [sym_initializer_expression] = STATE(3836), + [sym_default_expression] = STATE(3836), + [sym_with_expression] = STATE(3836), + [sym_sizeof_expression] = STATE(3836), + [sym_typeof_expression] = STATE(3836), + [sym_makeref_expression] = STATE(3836), + [sym_ref_expression] = STATE(3836), + [sym_reftype_expression] = STATE(3836), + [sym_refvalue_expression] = STATE(3836), + [sym_stackalloc_expression] = STATE(3836), + [sym_range_expression] = STATE(3836), + [sym_tuple_expression] = STATE(2906), + [sym_literal] = STATE(3836), + [sym_character_literal] = STATE(3843), + [sym_string_literal] = STATE(3843), + [sym_raw_string_literal] = STATE(3843), + [sym_boolean_literal] = STATE(3843), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3836), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(902), [sym_preproc_endregion] = STATE(902), [sym_preproc_line] = STATE(902), @@ -194297,47 +194183,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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3382), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3477), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1627), - [anon_sym_LPAREN] = ACTIONS(1629), - [anon_sym_ref] = ACTIONS(1631), - [anon_sym_LBRACE] = ACTIONS(1633), - [anon_sym_delegate] = ACTIONS(1635), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1655), + [anon_sym_LPAREN] = ACTIONS(2043), + [anon_sym_ref] = ACTIONS(2045), + [anon_sym_LBRACE] = ACTIONS(1661), + [anon_sym_delegate] = ACTIONS(1663), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1637), + [anon_sym_new] = ACTIONS(1759), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1639), - [anon_sym_BANG] = ACTIONS(1643), - [anon_sym_TILDE] = ACTIONS(1643), - [anon_sym_PLUS_PLUS] = ACTIONS(1643), - [anon_sym_DASH_DASH] = ACTIONS(1643), - [anon_sym_true] = ACTIONS(1645), - [anon_sym_false] = ACTIONS(1645), - [anon_sym_PLUS] = ACTIONS(1641), - [anon_sym_DASH] = ACTIONS(1641), - [anon_sym_STAR] = ACTIONS(1647), - [anon_sym_CARET] = ACTIONS(1643), - [anon_sym_AMP] = ACTIONS(1643), - [anon_sym_this] = ACTIONS(1649), + [anon_sym_checked] = ACTIONS(1667), + [anon_sym_BANG] = ACTIONS(2049), + [anon_sym_TILDE] = ACTIONS(2049), + [anon_sym_PLUS_PLUS] = ACTIONS(2049), + [anon_sym_DASH_DASH] = ACTIONS(2049), + [anon_sym_true] = ACTIONS(1673), + [anon_sym_false] = ACTIONS(1673), + [anon_sym_PLUS] = ACTIONS(2047), + [anon_sym_DASH] = ACTIONS(2047), + [anon_sym_STAR] = ACTIONS(1765), + [anon_sym_CARET] = ACTIONS(2049), + [anon_sym_AMP] = ACTIONS(2049), + [anon_sym_this] = ACTIONS(1677), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1651), + [anon_sym_base] = ACTIONS(1679), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1653), - [anon_sym_unchecked] = ACTIONS(1639), + [sym_predefined_type] = ACTIONS(1681), + [anon_sym_unchecked] = ACTIONS(1667), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1655), - [anon_sym_throw] = ACTIONS(1657), + [anon_sym_default] = ACTIONS(1683), + [anon_sym_throw] = ACTIONS(2051), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1659), - [anon_sym_DOT_DOT] = ACTIONS(1661), + [anon_sym_await] = ACTIONS(2053), + [anon_sym_DOT_DOT] = ACTIONS(2055), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -194350,19 +194236,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1663), - [anon_sym_sizeof] = ACTIONS(1665), - [anon_sym_typeof] = ACTIONS(1667), - [anon_sym___makeref] = ACTIONS(1669), - [anon_sym___reftype] = ACTIONS(1671), - [anon_sym___refvalue] = ACTIONS(1673), - [sym_null_literal] = ACTIONS(1675), - [anon_sym_SQUOTE] = ACTIONS(1677), - [sym_integer_literal] = ACTIONS(1675), - [sym_real_literal] = ACTIONS(1679), - [anon_sym_DQUOTE] = ACTIONS(1681), - [sym_verbatim_string_literal] = ACTIONS(1679), - [aux_sym_preproc_if_token1] = ACTIONS(1683), + [anon_sym_stackalloc] = ACTIONS(1691), + [anon_sym_sizeof] = ACTIONS(1693), + [anon_sym_typeof] = ACTIONS(1695), + [anon_sym___makeref] = ACTIONS(1697), + [anon_sym___reftype] = ACTIONS(1699), + [anon_sym___refvalue] = ACTIONS(1701), + [sym_null_literal] = ACTIONS(1703), + [anon_sym_SQUOTE] = ACTIONS(1705), + [sym_integer_literal] = ACTIONS(1703), + [sym_real_literal] = ACTIONS(1707), + [anon_sym_DQUOTE] = ACTIONS(1709), + [sym_verbatim_string_literal] = ACTIONS(1707), + [aux_sym_preproc_if_token1] = ACTIONS(1711), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -194373,90 +194259,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1685), - [sym_interpolation_verbatim_start] = ACTIONS(1687), - [sym_interpolation_raw_start] = ACTIONS(1689), - [sym_raw_string_start] = ACTIONS(1691), + [sym_interpolation_regular_start] = ACTIONS(1713), + [sym_interpolation_verbatim_start] = ACTIONS(1715), + [sym_interpolation_raw_start] = ACTIONS(1717), + [sym_raw_string_start] = ACTIONS(1719), }, [903] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2420), - [sym__name] = STATE(5911), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2197), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(2910), - [sym_non_lvalue_expression] = STATE(3066), - [sym_lvalue_expression] = STATE(3327), - [sym__expression_statement_expression] = STATE(3006), - [sym_assignment_expression] = STATE(3020), - [sym_binary_expression] = STATE(3006), - [sym_postfix_unary_expression] = STATE(3020), - [sym_prefix_unary_expression] = STATE(3020), - [sym__pointer_indirection_expression] = STATE(2423), - [sym_query_expression] = STATE(3006), - [sym_from_clause] = STATE(6159), - [sym_conditional_expression] = STATE(3006), - [sym_conditional_access_expression] = STATE(3006), - [sym_as_expression] = STATE(3006), - [sym_is_expression] = STATE(3006), - [sym_is_pattern_expression] = STATE(3006), - [sym_cast_expression] = STATE(3006), - [sym_checked_expression] = STATE(3006), - [sym_invocation_expression] = STATE(3020), - [sym_switch_expression] = STATE(3006), - [sym_await_expression] = STATE(3020), - [sym_throw_expression] = STATE(3006), - [sym_element_access_expression] = STATE(2423), - [sym_interpolated_string_expression] = STATE(3006), - [sym_member_access_expression] = STATE(2423), - [sym_object_creation_expression] = STATE(3020), - [sym_parenthesized_expression] = STATE(3020), - [sym__parenthesized_lvalue_expression] = STATE(2423), - [sym_lambda_expression] = STATE(3006), - [sym__lambda_expression_init] = STATE(7674), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3006), - [sym_anonymous_method_expression] = STATE(3006), - [sym_anonymous_object_creation_expression] = STATE(3006), - [sym_implicit_array_creation_expression] = STATE(3006), - [sym_implicit_object_creation_expression] = STATE(3006), - [sym_implicit_stackalloc_expression] = STATE(3006), - [sym_initializer_expression] = STATE(3006), - [sym_default_expression] = STATE(3006), - [sym_with_expression] = STATE(3006), - [sym_sizeof_expression] = STATE(3006), - [sym_typeof_expression] = STATE(3006), - [sym_makeref_expression] = STATE(3006), - [sym_ref_expression] = STATE(3006), - [sym_reftype_expression] = STATE(3006), - [sym_refvalue_expression] = STATE(3006), - [sym_stackalloc_expression] = STATE(3006), - [sym_range_expression] = STATE(3006), - [sym_tuple_expression] = STATE(2423), - [sym_literal] = STATE(3006), - [sym_character_literal] = STATE(3011), - [sym_string_literal] = STATE(3011), - [sym_raw_string_literal] = STATE(3011), - [sym_boolean_literal] = STATE(3011), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3006), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2901), + [sym__name] = STATE(5889), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2349), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(3826), + [sym_non_lvalue_expression] = STATE(3685), + [sym_lvalue_expression] = STATE(2985), + [sym__expression_statement_expression] = STATE(3836), + [sym_assignment_expression] = STATE(3689), + [sym_binary_expression] = STATE(3836), + [sym_postfix_unary_expression] = STATE(3689), + [sym_prefix_unary_expression] = STATE(3689), + [sym__pointer_indirection_expression] = STATE(2906), + [sym_query_expression] = STATE(3836), + [sym_from_clause] = STATE(6157), + [sym_conditional_expression] = STATE(3836), + [sym_conditional_access_expression] = STATE(3836), + [sym_as_expression] = STATE(3836), + [sym_is_expression] = STATE(3836), + [sym_is_pattern_expression] = STATE(3836), + [sym_cast_expression] = STATE(3836), + [sym_checked_expression] = STATE(3836), + [sym_invocation_expression] = STATE(3689), + [sym_switch_expression] = STATE(3836), + [sym_await_expression] = STATE(3689), + [sym_throw_expression] = STATE(3836), + [sym_element_access_expression] = STATE(2906), + [sym_interpolated_string_expression] = STATE(3836), + [sym_member_access_expression] = STATE(2906), + [sym_object_creation_expression] = STATE(3689), + [sym_parenthesized_expression] = STATE(3689), + [sym__parenthesized_lvalue_expression] = STATE(2906), + [sym_lambda_expression] = STATE(3836), + [sym__lambda_expression_init] = STATE(7485), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3836), + [sym_anonymous_method_expression] = STATE(3836), + [sym_anonymous_object_creation_expression] = STATE(3836), + [sym_implicit_array_creation_expression] = STATE(3836), + [sym_implicit_object_creation_expression] = STATE(3836), + [sym_implicit_stackalloc_expression] = STATE(3836), + [sym_initializer_expression] = STATE(3836), + [sym_default_expression] = STATE(3836), + [sym_with_expression] = STATE(3836), + [sym_sizeof_expression] = STATE(3836), + [sym_typeof_expression] = STATE(3836), + [sym_makeref_expression] = STATE(3836), + [sym_ref_expression] = STATE(3836), + [sym_reftype_expression] = STATE(3836), + [sym_refvalue_expression] = STATE(3836), + [sym_stackalloc_expression] = STATE(3836), + [sym_range_expression] = STATE(3836), + [sym_tuple_expression] = STATE(2906), + [sym_literal] = STATE(3836), + [sym_character_literal] = STATE(3843), + [sym_string_literal] = STATE(3843), + [sym_raw_string_literal] = STATE(3843), + [sym_boolean_literal] = STATE(3843), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3836), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(903), [sym_preproc_endregion] = STATE(903), [sym_preproc_line] = STATE(903), @@ -194466,47 +194352,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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3440), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3477), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1241), - [anon_sym_LPAREN] = ACTIONS(1509), - [anon_sym_ref] = ACTIONS(1511), - [anon_sym_LBRACE] = ACTIONS(1247), - [anon_sym_delegate] = ACTIONS(1249), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1655), + [anon_sym_LPAREN] = ACTIONS(2043), + [anon_sym_ref] = ACTIONS(2045), + [anon_sym_LBRACE] = ACTIONS(1661), + [anon_sym_delegate] = ACTIONS(1663), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1251), + [anon_sym_new] = ACTIONS(1759), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1253), - [anon_sym_BANG] = ACTIONS(1515), - [anon_sym_TILDE] = ACTIONS(1515), - [anon_sym_PLUS_PLUS] = ACTIONS(1515), - [anon_sym_DASH_DASH] = ACTIONS(1515), - [anon_sym_true] = ACTIONS(1259), - [anon_sym_false] = ACTIONS(1259), - [anon_sym_PLUS] = ACTIONS(1513), - [anon_sym_DASH] = ACTIONS(1513), - [anon_sym_STAR] = ACTIONS(1517), - [anon_sym_CARET] = ACTIONS(1515), - [anon_sym_AMP] = ACTIONS(1515), - [anon_sym_this] = ACTIONS(1263), + [anon_sym_checked] = ACTIONS(1667), + [anon_sym_BANG] = ACTIONS(2049), + [anon_sym_TILDE] = ACTIONS(2049), + [anon_sym_PLUS_PLUS] = ACTIONS(2049), + [anon_sym_DASH_DASH] = ACTIONS(2049), + [anon_sym_true] = ACTIONS(1673), + [anon_sym_false] = ACTIONS(1673), + [anon_sym_PLUS] = ACTIONS(2047), + [anon_sym_DASH] = ACTIONS(2047), + [anon_sym_STAR] = ACTIONS(1765), + [anon_sym_CARET] = ACTIONS(2049), + [anon_sym_AMP] = ACTIONS(2049), + [anon_sym_this] = ACTIONS(1677), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1265), + [anon_sym_base] = ACTIONS(1679), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1267), - [anon_sym_unchecked] = ACTIONS(1253), + [sym_predefined_type] = ACTIONS(1681), + [anon_sym_unchecked] = ACTIONS(1667), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1269), - [anon_sym_throw] = ACTIONS(1519), + [anon_sym_default] = ACTIONS(1683), + [anon_sym_throw] = ACTIONS(2051), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1521), - [anon_sym_DOT_DOT] = ACTIONS(1523), + [anon_sym_await] = ACTIONS(2053), + [anon_sym_DOT_DOT] = ACTIONS(2055), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -194519,19 +194405,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1277), - [anon_sym_sizeof] = ACTIONS(1279), - [anon_sym_typeof] = ACTIONS(1281), - [anon_sym___makeref] = ACTIONS(1283), - [anon_sym___reftype] = ACTIONS(1285), - [anon_sym___refvalue] = ACTIONS(1287), - [sym_null_literal] = ACTIONS(1289), - [anon_sym_SQUOTE] = ACTIONS(1291), - [sym_integer_literal] = ACTIONS(1289), - [sym_real_literal] = ACTIONS(1293), - [anon_sym_DQUOTE] = ACTIONS(1295), - [sym_verbatim_string_literal] = ACTIONS(1293), - [aux_sym_preproc_if_token1] = ACTIONS(1297), + [anon_sym_stackalloc] = ACTIONS(1691), + [anon_sym_sizeof] = ACTIONS(1693), + [anon_sym_typeof] = ACTIONS(1695), + [anon_sym___makeref] = ACTIONS(1697), + [anon_sym___reftype] = ACTIONS(1699), + [anon_sym___refvalue] = ACTIONS(1701), + [sym_null_literal] = ACTIONS(1703), + [anon_sym_SQUOTE] = ACTIONS(1705), + [sym_integer_literal] = ACTIONS(1703), + [sym_real_literal] = ACTIONS(1707), + [anon_sym_DQUOTE] = ACTIONS(1709), + [sym_verbatim_string_literal] = ACTIONS(1707), + [aux_sym_preproc_if_token1] = ACTIONS(1711), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -194542,90 +194428,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1299), - [sym_interpolation_verbatim_start] = ACTIONS(1301), - [sym_interpolation_raw_start] = ACTIONS(1303), - [sym_raw_string_start] = ACTIONS(1305), + [sym_interpolation_regular_start] = ACTIONS(1713), + [sym_interpolation_verbatim_start] = ACTIONS(1715), + [sym_interpolation_raw_start] = ACTIONS(1717), + [sym_raw_string_start] = ACTIONS(1719), }, [904] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2420), - [sym__name] = STATE(5888), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2384), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(5226), - [sym_non_lvalue_expression] = STATE(3066), - [sym_lvalue_expression] = STATE(3554), - [sym__expression_statement_expression] = STATE(3006), - [sym_assignment_expression] = STATE(3020), - [sym_binary_expression] = STATE(3006), - [sym_postfix_unary_expression] = STATE(3020), - [sym_prefix_unary_expression] = STATE(3020), - [sym__pointer_indirection_expression] = STATE(2423), - [sym_query_expression] = STATE(3006), - [sym_from_clause] = STATE(6151), - [sym_conditional_expression] = STATE(3006), - [sym_conditional_access_expression] = STATE(3006), - [sym_as_expression] = STATE(3006), - [sym_is_expression] = STATE(3006), - [sym_is_pattern_expression] = STATE(3006), - [sym_cast_expression] = STATE(3006), - [sym_checked_expression] = STATE(3006), - [sym_invocation_expression] = STATE(3020), - [sym_switch_expression] = STATE(3006), - [sym_await_expression] = STATE(3020), - [sym_throw_expression] = STATE(3006), - [sym_element_access_expression] = STATE(2423), - [sym_interpolated_string_expression] = STATE(3006), - [sym_member_access_expression] = STATE(2423), - [sym_object_creation_expression] = STATE(3020), - [sym_parenthesized_expression] = STATE(3020), - [sym__parenthesized_lvalue_expression] = STATE(2423), - [sym_lambda_expression] = STATE(3006), - [sym__lambda_expression_init] = STATE(7640), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3006), - [sym_anonymous_method_expression] = STATE(3006), - [sym_anonymous_object_creation_expression] = STATE(3006), - [sym_implicit_array_creation_expression] = STATE(3006), - [sym_implicit_object_creation_expression] = STATE(3006), - [sym_implicit_stackalloc_expression] = STATE(3006), - [sym_initializer_expression] = STATE(3006), - [sym_default_expression] = STATE(3006), - [sym_with_expression] = STATE(3006), - [sym_sizeof_expression] = STATE(3006), - [sym_typeof_expression] = STATE(3006), - [sym_makeref_expression] = STATE(3006), - [sym_ref_expression] = STATE(3006), - [sym_reftype_expression] = STATE(3006), - [sym_refvalue_expression] = STATE(3006), - [sym_stackalloc_expression] = STATE(3006), - [sym_range_expression] = STATE(3006), - [sym_tuple_expression] = STATE(2423), - [sym_literal] = STATE(3006), - [sym_character_literal] = STATE(3011), - [sym_string_literal] = STATE(3011), - [sym_raw_string_literal] = STATE(3011), - [sym_boolean_literal] = STATE(3011), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3006), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2901), + [sym__name] = STATE(5889), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2349), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(3827), + [sym_non_lvalue_expression] = STATE(3685), + [sym_lvalue_expression] = STATE(2985), + [sym__expression_statement_expression] = STATE(3836), + [sym_assignment_expression] = STATE(3689), + [sym_binary_expression] = STATE(3836), + [sym_postfix_unary_expression] = STATE(3689), + [sym_prefix_unary_expression] = STATE(3689), + [sym__pointer_indirection_expression] = STATE(2906), + [sym_query_expression] = STATE(3836), + [sym_from_clause] = STATE(6157), + [sym_conditional_expression] = STATE(3836), + [sym_conditional_access_expression] = STATE(3836), + [sym_as_expression] = STATE(3836), + [sym_is_expression] = STATE(3836), + [sym_is_pattern_expression] = STATE(3836), + [sym_cast_expression] = STATE(3836), + [sym_checked_expression] = STATE(3836), + [sym_invocation_expression] = STATE(3689), + [sym_switch_expression] = STATE(3836), + [sym_await_expression] = STATE(3689), + [sym_throw_expression] = STATE(3836), + [sym_element_access_expression] = STATE(2906), + [sym_interpolated_string_expression] = STATE(3836), + [sym_member_access_expression] = STATE(2906), + [sym_object_creation_expression] = STATE(3689), + [sym_parenthesized_expression] = STATE(3689), + [sym__parenthesized_lvalue_expression] = STATE(2906), + [sym_lambda_expression] = STATE(3836), + [sym__lambda_expression_init] = STATE(7485), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3836), + [sym_anonymous_method_expression] = STATE(3836), + [sym_anonymous_object_creation_expression] = STATE(3836), + [sym_implicit_array_creation_expression] = STATE(3836), + [sym_implicit_object_creation_expression] = STATE(3836), + [sym_implicit_stackalloc_expression] = STATE(3836), + [sym_initializer_expression] = STATE(3836), + [sym_default_expression] = STATE(3836), + [sym_with_expression] = STATE(3836), + [sym_sizeof_expression] = STATE(3836), + [sym_typeof_expression] = STATE(3836), + [sym_makeref_expression] = STATE(3836), + [sym_ref_expression] = STATE(3836), + [sym_reftype_expression] = STATE(3836), + [sym_refvalue_expression] = STATE(3836), + [sym_stackalloc_expression] = STATE(3836), + [sym_range_expression] = STATE(3836), + [sym_tuple_expression] = STATE(2906), + [sym_literal] = STATE(3836), + [sym_character_literal] = STATE(3843), + [sym_string_literal] = STATE(3843), + [sym_raw_string_literal] = STATE(3843), + [sym_boolean_literal] = STATE(3843), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3836), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(904), [sym_preproc_endregion] = STATE(904), [sym_preproc_line] = STATE(904), @@ -194635,47 +194521,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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3440), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3477), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1241), - [anon_sym_LPAREN] = ACTIONS(2281), - [anon_sym_ref] = ACTIONS(2283), - [anon_sym_LBRACE] = ACTIONS(1247), - [anon_sym_delegate] = ACTIONS(1249), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1655), + [anon_sym_LPAREN] = ACTIONS(2043), + [anon_sym_ref] = ACTIONS(2045), + [anon_sym_LBRACE] = ACTIONS(1661), + [anon_sym_delegate] = ACTIONS(1663), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(2285), + [anon_sym_new] = ACTIONS(1759), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1253), - [anon_sym_BANG] = ACTIONS(2289), - [anon_sym_TILDE] = ACTIONS(2289), - [anon_sym_PLUS_PLUS] = ACTIONS(2289), - [anon_sym_DASH_DASH] = ACTIONS(2289), - [anon_sym_true] = ACTIONS(1259), - [anon_sym_false] = ACTIONS(1259), - [anon_sym_PLUS] = ACTIONS(2287), - [anon_sym_DASH] = ACTIONS(2287), - [anon_sym_STAR] = ACTIONS(2291), - [anon_sym_CARET] = ACTIONS(2289), - [anon_sym_AMP] = ACTIONS(2289), - [anon_sym_this] = ACTIONS(1263), + [anon_sym_checked] = ACTIONS(1667), + [anon_sym_BANG] = ACTIONS(2049), + [anon_sym_TILDE] = ACTIONS(2049), + [anon_sym_PLUS_PLUS] = ACTIONS(2049), + [anon_sym_DASH_DASH] = ACTIONS(2049), + [anon_sym_true] = ACTIONS(1673), + [anon_sym_false] = ACTIONS(1673), + [anon_sym_PLUS] = ACTIONS(2047), + [anon_sym_DASH] = ACTIONS(2047), + [anon_sym_STAR] = ACTIONS(1765), + [anon_sym_CARET] = ACTIONS(2049), + [anon_sym_AMP] = ACTIONS(2049), + [anon_sym_this] = ACTIONS(1677), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1265), + [anon_sym_base] = ACTIONS(1679), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1267), - [anon_sym_unchecked] = ACTIONS(1253), + [sym_predefined_type] = ACTIONS(1681), + [anon_sym_unchecked] = ACTIONS(1667), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1269), - [anon_sym_throw] = ACTIONS(2293), + [anon_sym_default] = ACTIONS(1683), + [anon_sym_throw] = ACTIONS(2051), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2295), - [anon_sym_DOT_DOT] = ACTIONS(2297), + [anon_sym_await] = ACTIONS(2053), + [anon_sym_DOT_DOT] = ACTIONS(2055), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -194688,19 +194574,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1277), - [anon_sym_sizeof] = ACTIONS(1279), - [anon_sym_typeof] = ACTIONS(1281), - [anon_sym___makeref] = ACTIONS(1283), - [anon_sym___reftype] = ACTIONS(1285), - [anon_sym___refvalue] = ACTIONS(1287), - [sym_null_literal] = ACTIONS(1289), - [anon_sym_SQUOTE] = ACTIONS(1291), - [sym_integer_literal] = ACTIONS(1289), - [sym_real_literal] = ACTIONS(1293), - [anon_sym_DQUOTE] = ACTIONS(1295), - [sym_verbatim_string_literal] = ACTIONS(1293), - [aux_sym_preproc_if_token1] = ACTIONS(1297), + [anon_sym_stackalloc] = ACTIONS(1691), + [anon_sym_sizeof] = ACTIONS(1693), + [anon_sym_typeof] = ACTIONS(1695), + [anon_sym___makeref] = ACTIONS(1697), + [anon_sym___reftype] = ACTIONS(1699), + [anon_sym___refvalue] = ACTIONS(1701), + [sym_null_literal] = ACTIONS(1703), + [anon_sym_SQUOTE] = ACTIONS(1705), + [sym_integer_literal] = ACTIONS(1703), + [sym_real_literal] = ACTIONS(1707), + [anon_sym_DQUOTE] = ACTIONS(1709), + [sym_verbatim_string_literal] = ACTIONS(1707), + [aux_sym_preproc_if_token1] = ACTIONS(1711), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -194711,90 +194597,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1299), - [sym_interpolation_verbatim_start] = ACTIONS(1301), - [sym_interpolation_raw_start] = ACTIONS(1303), - [sym_raw_string_start] = ACTIONS(1305), + [sym_interpolation_regular_start] = ACTIONS(1713), + [sym_interpolation_verbatim_start] = ACTIONS(1715), + [sym_interpolation_raw_start] = ACTIONS(1717), + [sym_raw_string_start] = ACTIONS(1719), }, [905] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(3184), - [sym__name] = STATE(5906), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2312), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2269), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(4260), - [sym_non_lvalue_expression] = STATE(4541), - [sym_lvalue_expression] = STATE(3165), - [sym__expression_statement_expression] = STATE(4529), - [sym_assignment_expression] = STATE(4543), - [sym_binary_expression] = STATE(4529), - [sym_postfix_unary_expression] = STATE(4543), - [sym_prefix_unary_expression] = STATE(4543), - [sym__pointer_indirection_expression] = STATE(3175), - [sym_query_expression] = STATE(4529), - [sym_from_clause] = STATE(6156), - [sym_conditional_expression] = STATE(4529), - [sym_conditional_access_expression] = STATE(4529), - [sym_as_expression] = STATE(4529), - [sym_is_expression] = STATE(4529), - [sym_is_pattern_expression] = STATE(4529), - [sym_cast_expression] = STATE(4529), - [sym_checked_expression] = STATE(4529), - [sym_invocation_expression] = STATE(4543), - [sym_switch_expression] = STATE(4529), - [sym_await_expression] = STATE(4543), - [sym_throw_expression] = STATE(4529), - [sym_element_access_expression] = STATE(3175), - [sym_interpolated_string_expression] = STATE(4529), - [sym_member_access_expression] = STATE(3175), - [sym_object_creation_expression] = STATE(4543), - [sym_parenthesized_expression] = STATE(4543), - [sym__parenthesized_lvalue_expression] = STATE(3175), - [sym_lambda_expression] = STATE(4529), - [sym__lambda_expression_init] = STATE(7341), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(4529), - [sym_anonymous_method_expression] = STATE(4529), - [sym_anonymous_object_creation_expression] = STATE(4529), - [sym_implicit_array_creation_expression] = STATE(4529), - [sym_implicit_object_creation_expression] = STATE(4529), - [sym_implicit_stackalloc_expression] = STATE(4529), - [sym_initializer_expression] = STATE(4529), - [sym_default_expression] = STATE(4529), - [sym_with_expression] = STATE(4529), - [sym_sizeof_expression] = STATE(4529), - [sym_typeof_expression] = STATE(4529), - [sym_makeref_expression] = STATE(4529), - [sym_ref_expression] = STATE(4529), - [sym_reftype_expression] = STATE(4529), - [sym_refvalue_expression] = STATE(4529), - [sym_stackalloc_expression] = STATE(4529), - [sym_range_expression] = STATE(4529), - [sym_tuple_expression] = STATE(3175), - [sym_literal] = STATE(4529), - [sym_character_literal] = STATE(4536), - [sym_string_literal] = STATE(4536), - [sym_raw_string_literal] = STATE(4536), - [sym_boolean_literal] = STATE(4536), - [sym_identifier] = STATE(2246), - [sym__reserved_identifier] = STATE(2240), - [sym_preproc_if_in_expression] = STATE(4529), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2901), + [sym__name] = STATE(5889), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2349), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(3828), + [sym_non_lvalue_expression] = STATE(3685), + [sym_lvalue_expression] = STATE(2985), + [sym__expression_statement_expression] = STATE(3836), + [sym_assignment_expression] = STATE(3689), + [sym_binary_expression] = STATE(3836), + [sym_postfix_unary_expression] = STATE(3689), + [sym_prefix_unary_expression] = STATE(3689), + [sym__pointer_indirection_expression] = STATE(2906), + [sym_query_expression] = STATE(3836), + [sym_from_clause] = STATE(6157), + [sym_conditional_expression] = STATE(3836), + [sym_conditional_access_expression] = STATE(3836), + [sym_as_expression] = STATE(3836), + [sym_is_expression] = STATE(3836), + [sym_is_pattern_expression] = STATE(3836), + [sym_cast_expression] = STATE(3836), + [sym_checked_expression] = STATE(3836), + [sym_invocation_expression] = STATE(3689), + [sym_switch_expression] = STATE(3836), + [sym_await_expression] = STATE(3689), + [sym_throw_expression] = STATE(3836), + [sym_element_access_expression] = STATE(2906), + [sym_interpolated_string_expression] = STATE(3836), + [sym_member_access_expression] = STATE(2906), + [sym_object_creation_expression] = STATE(3689), + [sym_parenthesized_expression] = STATE(3689), + [sym__parenthesized_lvalue_expression] = STATE(2906), + [sym_lambda_expression] = STATE(3836), + [sym__lambda_expression_init] = STATE(7485), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3836), + [sym_anonymous_method_expression] = STATE(3836), + [sym_anonymous_object_creation_expression] = STATE(3836), + [sym_implicit_array_creation_expression] = STATE(3836), + [sym_implicit_object_creation_expression] = STATE(3836), + [sym_implicit_stackalloc_expression] = STATE(3836), + [sym_initializer_expression] = STATE(3836), + [sym_default_expression] = STATE(3836), + [sym_with_expression] = STATE(3836), + [sym_sizeof_expression] = STATE(3836), + [sym_typeof_expression] = STATE(3836), + [sym_makeref_expression] = STATE(3836), + [sym_ref_expression] = STATE(3836), + [sym_reftype_expression] = STATE(3836), + [sym_refvalue_expression] = STATE(3836), + [sym_stackalloc_expression] = STATE(3836), + [sym_range_expression] = STATE(3836), + [sym_tuple_expression] = STATE(2906), + [sym_literal] = STATE(3836), + [sym_character_literal] = STATE(3843), + [sym_string_literal] = STATE(3843), + [sym_raw_string_literal] = STATE(3843), + [sym_boolean_literal] = STATE(3843), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3836), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(905), [sym_preproc_endregion] = STATE(905), [sym_preproc_line] = STATE(905), @@ -194804,166 +194690,166 @@ 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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3363), - [sym__identifier_token] = ACTIONS(1387), - [anon_sym_alias] = ACTIONS(1389), - [anon_sym_global] = ACTIONS(1389), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1391), - [anon_sym_LPAREN] = ACTIONS(1393), - [anon_sym_ref] = ACTIONS(1395), - [anon_sym_LBRACE] = ACTIONS(1397), - [anon_sym_delegate] = ACTIONS(1399), - [anon_sym_async] = ACTIONS(1047), - [anon_sym_file] = ACTIONS(1389), - [anon_sym_new] = ACTIONS(1401), - [anon_sym_where] = ACTIONS(1389), - [anon_sym_notnull] = ACTIONS(1389), - [anon_sym_unmanaged] = ACTIONS(1389), - [anon_sym_checked] = ACTIONS(1403), - [anon_sym_BANG] = ACTIONS(1407), - [anon_sym_TILDE] = ACTIONS(1407), - [anon_sym_PLUS_PLUS] = ACTIONS(1407), - [anon_sym_DASH_DASH] = ACTIONS(1407), - [anon_sym_true] = ACTIONS(1409), - [anon_sym_false] = ACTIONS(1409), - [anon_sym_PLUS] = ACTIONS(1405), - [anon_sym_DASH] = ACTIONS(1405), - [anon_sym_STAR] = ACTIONS(1411), - [anon_sym_CARET] = ACTIONS(1407), - [anon_sym_AMP] = ACTIONS(1407), - [anon_sym_this] = ACTIONS(1413), - [anon_sym_scoped] = ACTIONS(1415), - [anon_sym_base] = ACTIONS(1417), - [anon_sym_var] = ACTIONS(1419), - [sym_predefined_type] = ACTIONS(1421), - [anon_sym_unchecked] = ACTIONS(1403), - [anon_sym_yield] = ACTIONS(1389), - [anon_sym_default] = ACTIONS(1423), - [anon_sym_throw] = ACTIONS(1425), - [anon_sym_when] = ACTIONS(1389), - [anon_sym_await] = ACTIONS(1427), - [anon_sym_DOT_DOT] = ACTIONS(1429), - [anon_sym_from] = ACTIONS(1431), - [anon_sym_into] = ACTIONS(1389), - [anon_sym_join] = ACTIONS(1389), - [anon_sym_on] = ACTIONS(1389), - [anon_sym_equals] = ACTIONS(1389), - [anon_sym_let] = ACTIONS(1389), - [anon_sym_orderby] = ACTIONS(1389), - [anon_sym_ascending] = ACTIONS(1389), - [anon_sym_descending] = ACTIONS(1389), - [anon_sym_group] = ACTIONS(1389), - [anon_sym_by] = ACTIONS(1389), - [anon_sym_select] = ACTIONS(1389), - [anon_sym_stackalloc] = ACTIONS(1433), - [anon_sym_sizeof] = ACTIONS(1435), - [anon_sym_typeof] = ACTIONS(1437), - [anon_sym___makeref] = ACTIONS(1439), - [anon_sym___reftype] = ACTIONS(1441), - [anon_sym___refvalue] = ACTIONS(1443), - [sym_null_literal] = ACTIONS(1445), - [anon_sym_SQUOTE] = ACTIONS(1447), - [sym_integer_literal] = ACTIONS(1445), - [sym_real_literal] = ACTIONS(1449), - [anon_sym_DQUOTE] = ACTIONS(1451), - [sym_verbatim_string_literal] = ACTIONS(1449), - [aux_sym_preproc_if_token1] = ACTIONS(1453), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1455), - [sym_interpolation_verbatim_start] = ACTIONS(1457), - [sym_interpolation_raw_start] = ACTIONS(1459), - [sym_raw_string_start] = ACTIONS(1461), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3477), + [sym__identifier_token] = ACTIONS(25), + [anon_sym_alias] = ACTIONS(29), + [anon_sym_global] = ACTIONS(29), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1655), + [anon_sym_LPAREN] = ACTIONS(2043), + [anon_sym_ref] = ACTIONS(2045), + [anon_sym_LBRACE] = ACTIONS(1661), + [anon_sym_delegate] = ACTIONS(1663), + [anon_sym_async] = ACTIONS(1045), + [anon_sym_file] = ACTIONS(29), + [anon_sym_new] = ACTIONS(1759), + [anon_sym_where] = ACTIONS(29), + [anon_sym_notnull] = ACTIONS(29), + [anon_sym_unmanaged] = ACTIONS(29), + [anon_sym_checked] = ACTIONS(1667), + [anon_sym_BANG] = ACTIONS(2049), + [anon_sym_TILDE] = ACTIONS(2049), + [anon_sym_PLUS_PLUS] = ACTIONS(2049), + [anon_sym_DASH_DASH] = ACTIONS(2049), + [anon_sym_true] = ACTIONS(1673), + [anon_sym_false] = ACTIONS(1673), + [anon_sym_PLUS] = ACTIONS(2047), + [anon_sym_DASH] = ACTIONS(2047), + [anon_sym_STAR] = ACTIONS(1765), + [anon_sym_CARET] = ACTIONS(2049), + [anon_sym_AMP] = ACTIONS(2049), + [anon_sym_this] = ACTIONS(1677), + [anon_sym_scoped] = ACTIONS(85), + [anon_sym_base] = ACTIONS(1679), + [anon_sym_var] = ACTIONS(89), + [sym_predefined_type] = ACTIONS(1681), + [anon_sym_unchecked] = ACTIONS(1667), + [anon_sym_yield] = ACTIONS(29), + [anon_sym_default] = ACTIONS(1683), + [anon_sym_throw] = ACTIONS(2051), + [anon_sym_when] = ACTIONS(29), + [anon_sym_await] = ACTIONS(2053), + [anon_sym_DOT_DOT] = ACTIONS(2055), + [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(1691), + [anon_sym_sizeof] = ACTIONS(1693), + [anon_sym_typeof] = ACTIONS(1695), + [anon_sym___makeref] = ACTIONS(1697), + [anon_sym___reftype] = ACTIONS(1699), + [anon_sym___refvalue] = ACTIONS(1701), + [sym_null_literal] = ACTIONS(1703), + [anon_sym_SQUOTE] = ACTIONS(1705), + [sym_integer_literal] = ACTIONS(1703), + [sym_real_literal] = ACTIONS(1707), + [anon_sym_DQUOTE] = ACTIONS(1709), + [sym_verbatim_string_literal] = ACTIONS(1707), + [aux_sym_preproc_if_token1] = ACTIONS(1711), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + [sym_interpolation_regular_start] = ACTIONS(1713), + [sym_interpolation_verbatim_start] = ACTIONS(1715), + [sym_interpolation_raw_start] = ACTIONS(1717), + [sym_raw_string_start] = ACTIONS(1719), }, [906] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2610), - [sym__name] = STATE(5886), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2319), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(4423), - [sym_non_lvalue_expression] = STATE(3277), - [sym_lvalue_expression] = STATE(3347), - [sym__expression_statement_expression] = STATE(3228), - [sym_assignment_expression] = STATE(3289), - [sym_binary_expression] = STATE(3228), - [sym_postfix_unary_expression] = STATE(3289), - [sym_prefix_unary_expression] = STATE(3289), - [sym__pointer_indirection_expression] = STATE(2609), - [sym_query_expression] = STATE(3228), - [sym_from_clause] = STATE(6150), - [sym_conditional_expression] = STATE(3228), - [sym_conditional_access_expression] = STATE(3228), - [sym_as_expression] = STATE(3228), - [sym_is_expression] = STATE(3228), - [sym_is_pattern_expression] = STATE(3228), - [sym_cast_expression] = STATE(3228), - [sym_checked_expression] = STATE(3228), - [sym_invocation_expression] = STATE(3289), - [sym_switch_expression] = STATE(3228), - [sym_await_expression] = STATE(3289), - [sym_throw_expression] = STATE(3228), - [sym_element_access_expression] = STATE(2609), - [sym_interpolated_string_expression] = STATE(3228), - [sym_member_access_expression] = STATE(2609), - [sym_object_creation_expression] = STATE(3289), - [sym_parenthesized_expression] = STATE(3289), - [sym__parenthesized_lvalue_expression] = STATE(2609), - [sym_lambda_expression] = STATE(3228), - [sym__lambda_expression_init] = STATE(7531), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3228), - [sym_anonymous_method_expression] = STATE(3228), - [sym_anonymous_object_creation_expression] = STATE(3228), - [sym_implicit_array_creation_expression] = STATE(3228), - [sym_implicit_object_creation_expression] = STATE(3228), - [sym_implicit_stackalloc_expression] = STATE(3228), - [sym_initializer_expression] = STATE(3228), - [sym_default_expression] = STATE(3228), - [sym_with_expression] = STATE(3228), - [sym_sizeof_expression] = STATE(3228), - [sym_typeof_expression] = STATE(3228), - [sym_makeref_expression] = STATE(3228), - [sym_ref_expression] = STATE(3228), - [sym_reftype_expression] = STATE(3228), - [sym_refvalue_expression] = STATE(3228), - [sym_stackalloc_expression] = STATE(3228), - [sym_range_expression] = STATE(3228), - [sym_tuple_expression] = STATE(2609), - [sym_literal] = STATE(3228), - [sym_character_literal] = STATE(3278), - [sym_string_literal] = STATE(3278), - [sym_raw_string_literal] = STATE(3278), - [sym_boolean_literal] = STATE(3278), - [sym_identifier] = STATE(2267), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3228), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2901), + [sym__name] = STATE(5889), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2349), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(3753), + [sym_non_lvalue_expression] = STATE(3685), + [sym_lvalue_expression] = STATE(2985), + [sym__expression_statement_expression] = STATE(3836), + [sym_assignment_expression] = STATE(3689), + [sym_binary_expression] = STATE(3836), + [sym_postfix_unary_expression] = STATE(3689), + [sym_prefix_unary_expression] = STATE(3689), + [sym__pointer_indirection_expression] = STATE(2906), + [sym_query_expression] = STATE(3836), + [sym_from_clause] = STATE(6157), + [sym_conditional_expression] = STATE(3836), + [sym_conditional_access_expression] = STATE(3836), + [sym_as_expression] = STATE(3836), + [sym_is_expression] = STATE(3836), + [sym_is_pattern_expression] = STATE(3836), + [sym_cast_expression] = STATE(3836), + [sym_checked_expression] = STATE(3836), + [sym_invocation_expression] = STATE(3689), + [sym_switch_expression] = STATE(3836), + [sym_await_expression] = STATE(3689), + [sym_throw_expression] = STATE(3836), + [sym_element_access_expression] = STATE(2906), + [sym_interpolated_string_expression] = STATE(3836), + [sym_member_access_expression] = STATE(2906), + [sym_object_creation_expression] = STATE(3689), + [sym_parenthesized_expression] = STATE(3689), + [sym__parenthesized_lvalue_expression] = STATE(2906), + [sym_lambda_expression] = STATE(3836), + [sym__lambda_expression_init] = STATE(7485), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3836), + [sym_anonymous_method_expression] = STATE(3836), + [sym_anonymous_object_creation_expression] = STATE(3836), + [sym_implicit_array_creation_expression] = STATE(3836), + [sym_implicit_object_creation_expression] = STATE(3836), + [sym_implicit_stackalloc_expression] = STATE(3836), + [sym_initializer_expression] = STATE(3836), + [sym_default_expression] = STATE(3836), + [sym_with_expression] = STATE(3836), + [sym_sizeof_expression] = STATE(3836), + [sym_typeof_expression] = STATE(3836), + [sym_makeref_expression] = STATE(3836), + [sym_ref_expression] = STATE(3836), + [sym_reftype_expression] = STATE(3836), + [sym_refvalue_expression] = STATE(3836), + [sym_stackalloc_expression] = STATE(3836), + [sym_range_expression] = STATE(3836), + [sym_tuple_expression] = STATE(2906), + [sym_literal] = STATE(3836), + [sym_character_literal] = STATE(3843), + [sym_string_literal] = STATE(3843), + [sym_raw_string_literal] = STATE(3843), + [sym_boolean_literal] = STATE(3843), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3836), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(906), [sym_preproc_endregion] = STATE(906), [sym_preproc_line] = STATE(906), @@ -194973,47 +194859,47 @@ 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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3396), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3477), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1153), - [anon_sym_LPAREN] = ACTIONS(1525), - [anon_sym_ref] = ACTIONS(1527), - [anon_sym_LBRACE] = ACTIONS(1159), - [anon_sym_delegate] = ACTIONS(1161), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1655), + [anon_sym_LPAREN] = ACTIONS(2043), + [anon_sym_ref] = ACTIONS(2045), + [anon_sym_LBRACE] = ACTIONS(1661), + [anon_sym_delegate] = ACTIONS(1663), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1529), + [anon_sym_new] = ACTIONS(1759), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1167), - [anon_sym_BANG] = ACTIONS(1533), - [anon_sym_TILDE] = ACTIONS(1533), - [anon_sym_PLUS_PLUS] = ACTIONS(1533), - [anon_sym_DASH_DASH] = ACTIONS(1533), - [anon_sym_true] = ACTIONS(1173), - [anon_sym_false] = ACTIONS(1173), - [anon_sym_PLUS] = ACTIONS(1531), - [anon_sym_DASH] = ACTIONS(1531), - [anon_sym_STAR] = ACTIONS(1535), - [anon_sym_CARET] = ACTIONS(1533), - [anon_sym_AMP] = ACTIONS(1533), - [anon_sym_this] = ACTIONS(1177), + [anon_sym_checked] = ACTIONS(1667), + [anon_sym_BANG] = ACTIONS(2049), + [anon_sym_TILDE] = ACTIONS(2049), + [anon_sym_PLUS_PLUS] = ACTIONS(2049), + [anon_sym_DASH_DASH] = ACTIONS(2049), + [anon_sym_true] = ACTIONS(1673), + [anon_sym_false] = ACTIONS(1673), + [anon_sym_PLUS] = ACTIONS(2047), + [anon_sym_DASH] = ACTIONS(2047), + [anon_sym_STAR] = ACTIONS(1765), + [anon_sym_CARET] = ACTIONS(2049), + [anon_sym_AMP] = ACTIONS(2049), + [anon_sym_this] = ACTIONS(1677), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1179), + [anon_sym_base] = ACTIONS(1679), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1181), - [anon_sym_unchecked] = ACTIONS(1167), + [sym_predefined_type] = ACTIONS(1681), + [anon_sym_unchecked] = ACTIONS(1667), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1183), - [anon_sym_throw] = ACTIONS(1537), + [anon_sym_default] = ACTIONS(1683), + [anon_sym_throw] = ACTIONS(2051), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1539), - [anon_sym_DOT_DOT] = ACTIONS(1541), + [anon_sym_await] = ACTIONS(2053), + [anon_sym_DOT_DOT] = ACTIONS(2055), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -195026,19 +194912,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1191), - [anon_sym_sizeof] = ACTIONS(1193), - [anon_sym_typeof] = ACTIONS(1195), - [anon_sym___makeref] = ACTIONS(1197), - [anon_sym___reftype] = ACTIONS(1199), - [anon_sym___refvalue] = ACTIONS(1201), - [sym_null_literal] = ACTIONS(1203), - [anon_sym_SQUOTE] = ACTIONS(1205), - [sym_integer_literal] = ACTIONS(1203), - [sym_real_literal] = ACTIONS(1207), - [anon_sym_DQUOTE] = ACTIONS(1209), - [sym_verbatim_string_literal] = ACTIONS(1207), - [aux_sym_preproc_if_token1] = ACTIONS(1211), + [anon_sym_stackalloc] = ACTIONS(1691), + [anon_sym_sizeof] = ACTIONS(1693), + [anon_sym_typeof] = ACTIONS(1695), + [anon_sym___makeref] = ACTIONS(1697), + [anon_sym___reftype] = ACTIONS(1699), + [anon_sym___refvalue] = ACTIONS(1701), + [sym_null_literal] = ACTIONS(1703), + [anon_sym_SQUOTE] = ACTIONS(1705), + [sym_integer_literal] = ACTIONS(1703), + [sym_real_literal] = ACTIONS(1707), + [anon_sym_DQUOTE] = ACTIONS(1709), + [sym_verbatim_string_literal] = ACTIONS(1707), + [aux_sym_preproc_if_token1] = ACTIONS(1711), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -195049,90 +194935,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1213), - [sym_interpolation_verbatim_start] = ACTIONS(1215), - [sym_interpolation_raw_start] = ACTIONS(1217), - [sym_raw_string_start] = ACTIONS(1219), + [sym_interpolation_regular_start] = ACTIONS(1713), + [sym_interpolation_verbatim_start] = ACTIONS(1715), + [sym_interpolation_raw_start] = ACTIONS(1717), + [sym_raw_string_start] = ACTIONS(1719), }, [907] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2420), - [sym__name] = STATE(5888), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2384), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(5260), - [sym_non_lvalue_expression] = STATE(3066), - [sym_lvalue_expression] = STATE(3554), - [sym__expression_statement_expression] = STATE(3006), - [sym_assignment_expression] = STATE(3020), - [sym_binary_expression] = STATE(3006), - [sym_postfix_unary_expression] = STATE(3020), - [sym_prefix_unary_expression] = STATE(3020), - [sym__pointer_indirection_expression] = STATE(2423), - [sym_query_expression] = STATE(3006), - [sym_from_clause] = STATE(6151), - [sym_conditional_expression] = STATE(3006), - [sym_conditional_access_expression] = STATE(3006), - [sym_as_expression] = STATE(3006), - [sym_is_expression] = STATE(3006), - [sym_is_pattern_expression] = STATE(3006), - [sym_cast_expression] = STATE(3006), - [sym_checked_expression] = STATE(3006), - [sym_invocation_expression] = STATE(3020), - [sym_switch_expression] = STATE(3006), - [sym_await_expression] = STATE(3020), - [sym_throw_expression] = STATE(3006), - [sym_element_access_expression] = STATE(2423), - [sym_interpolated_string_expression] = STATE(3006), - [sym_member_access_expression] = STATE(2423), - [sym_object_creation_expression] = STATE(3020), - [sym_parenthesized_expression] = STATE(3020), - [sym__parenthesized_lvalue_expression] = STATE(2423), - [sym_lambda_expression] = STATE(3006), - [sym__lambda_expression_init] = STATE(7640), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3006), - [sym_anonymous_method_expression] = STATE(3006), - [sym_anonymous_object_creation_expression] = STATE(3006), - [sym_implicit_array_creation_expression] = STATE(3006), - [sym_implicit_object_creation_expression] = STATE(3006), - [sym_implicit_stackalloc_expression] = STATE(3006), - [sym_initializer_expression] = STATE(3006), - [sym_default_expression] = STATE(3006), - [sym_with_expression] = STATE(3006), - [sym_sizeof_expression] = STATE(3006), - [sym_typeof_expression] = STATE(3006), - [sym_makeref_expression] = STATE(3006), - [sym_ref_expression] = STATE(3006), - [sym_reftype_expression] = STATE(3006), - [sym_refvalue_expression] = STATE(3006), - [sym_stackalloc_expression] = STATE(3006), - [sym_range_expression] = STATE(3006), - [sym_tuple_expression] = STATE(2423), - [sym_literal] = STATE(3006), - [sym_character_literal] = STATE(3011), - [sym_string_literal] = STATE(3011), - [sym_raw_string_literal] = STATE(3011), - [sym_boolean_literal] = STATE(3011), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3006), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2901), + [sym__name] = STATE(5889), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2349), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(3829), + [sym_non_lvalue_expression] = STATE(3685), + [sym_lvalue_expression] = STATE(2985), + [sym__expression_statement_expression] = STATE(3836), + [sym_assignment_expression] = STATE(3689), + [sym_binary_expression] = STATE(3836), + [sym_postfix_unary_expression] = STATE(3689), + [sym_prefix_unary_expression] = STATE(3689), + [sym__pointer_indirection_expression] = STATE(2906), + [sym_query_expression] = STATE(3836), + [sym_from_clause] = STATE(6157), + [sym_conditional_expression] = STATE(3836), + [sym_conditional_access_expression] = STATE(3836), + [sym_as_expression] = STATE(3836), + [sym_is_expression] = STATE(3836), + [sym_is_pattern_expression] = STATE(3836), + [sym_cast_expression] = STATE(3836), + [sym_checked_expression] = STATE(3836), + [sym_invocation_expression] = STATE(3689), + [sym_switch_expression] = STATE(3836), + [sym_await_expression] = STATE(3689), + [sym_throw_expression] = STATE(3836), + [sym_element_access_expression] = STATE(2906), + [sym_interpolated_string_expression] = STATE(3836), + [sym_member_access_expression] = STATE(2906), + [sym_object_creation_expression] = STATE(3689), + [sym_parenthesized_expression] = STATE(3689), + [sym__parenthesized_lvalue_expression] = STATE(2906), + [sym_lambda_expression] = STATE(3836), + [sym__lambda_expression_init] = STATE(7485), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3836), + [sym_anonymous_method_expression] = STATE(3836), + [sym_anonymous_object_creation_expression] = STATE(3836), + [sym_implicit_array_creation_expression] = STATE(3836), + [sym_implicit_object_creation_expression] = STATE(3836), + [sym_implicit_stackalloc_expression] = STATE(3836), + [sym_initializer_expression] = STATE(3836), + [sym_default_expression] = STATE(3836), + [sym_with_expression] = STATE(3836), + [sym_sizeof_expression] = STATE(3836), + [sym_typeof_expression] = STATE(3836), + [sym_makeref_expression] = STATE(3836), + [sym_ref_expression] = STATE(3836), + [sym_reftype_expression] = STATE(3836), + [sym_refvalue_expression] = STATE(3836), + [sym_stackalloc_expression] = STATE(3836), + [sym_range_expression] = STATE(3836), + [sym_tuple_expression] = STATE(2906), + [sym_literal] = STATE(3836), + [sym_character_literal] = STATE(3843), + [sym_string_literal] = STATE(3843), + [sym_raw_string_literal] = STATE(3843), + [sym_boolean_literal] = STATE(3843), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3836), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(907), [sym_preproc_endregion] = STATE(907), [sym_preproc_line] = STATE(907), @@ -195142,47 +195028,47 @@ 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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3440), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3477), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1241), - [anon_sym_LPAREN] = ACTIONS(2281), - [anon_sym_ref] = ACTIONS(2283), - [anon_sym_LBRACE] = ACTIONS(1247), - [anon_sym_delegate] = ACTIONS(1249), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1655), + [anon_sym_LPAREN] = ACTIONS(2043), + [anon_sym_ref] = ACTIONS(2045), + [anon_sym_LBRACE] = ACTIONS(1661), + [anon_sym_delegate] = ACTIONS(1663), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(2285), + [anon_sym_new] = ACTIONS(1759), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1253), - [anon_sym_BANG] = ACTIONS(2289), - [anon_sym_TILDE] = ACTIONS(2289), - [anon_sym_PLUS_PLUS] = ACTIONS(2289), - [anon_sym_DASH_DASH] = ACTIONS(2289), - [anon_sym_true] = ACTIONS(1259), - [anon_sym_false] = ACTIONS(1259), - [anon_sym_PLUS] = ACTIONS(2287), - [anon_sym_DASH] = ACTIONS(2287), - [anon_sym_STAR] = ACTIONS(2291), - [anon_sym_CARET] = ACTIONS(2289), - [anon_sym_AMP] = ACTIONS(2289), - [anon_sym_this] = ACTIONS(1263), + [anon_sym_checked] = ACTIONS(1667), + [anon_sym_BANG] = ACTIONS(2049), + [anon_sym_TILDE] = ACTIONS(2049), + [anon_sym_PLUS_PLUS] = ACTIONS(2049), + [anon_sym_DASH_DASH] = ACTIONS(2049), + [anon_sym_true] = ACTIONS(1673), + [anon_sym_false] = ACTIONS(1673), + [anon_sym_PLUS] = ACTIONS(2047), + [anon_sym_DASH] = ACTIONS(2047), + [anon_sym_STAR] = ACTIONS(1765), + [anon_sym_CARET] = ACTIONS(2049), + [anon_sym_AMP] = ACTIONS(2049), + [anon_sym_this] = ACTIONS(1677), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1265), + [anon_sym_base] = ACTIONS(1679), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1267), - [anon_sym_unchecked] = ACTIONS(1253), + [sym_predefined_type] = ACTIONS(1681), + [anon_sym_unchecked] = ACTIONS(1667), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1269), - [anon_sym_throw] = ACTIONS(2293), + [anon_sym_default] = ACTIONS(1683), + [anon_sym_throw] = ACTIONS(2051), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2295), - [anon_sym_DOT_DOT] = ACTIONS(2297), + [anon_sym_await] = ACTIONS(2053), + [anon_sym_DOT_DOT] = ACTIONS(2055), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -195195,19 +195081,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1277), - [anon_sym_sizeof] = ACTIONS(1279), - [anon_sym_typeof] = ACTIONS(1281), - [anon_sym___makeref] = ACTIONS(1283), - [anon_sym___reftype] = ACTIONS(1285), - [anon_sym___refvalue] = ACTIONS(1287), - [sym_null_literal] = ACTIONS(1289), - [anon_sym_SQUOTE] = ACTIONS(1291), - [sym_integer_literal] = ACTIONS(1289), - [sym_real_literal] = ACTIONS(1293), - [anon_sym_DQUOTE] = ACTIONS(1295), - [sym_verbatim_string_literal] = ACTIONS(1293), - [aux_sym_preproc_if_token1] = ACTIONS(1297), + [anon_sym_stackalloc] = ACTIONS(1691), + [anon_sym_sizeof] = ACTIONS(1693), + [anon_sym_typeof] = ACTIONS(1695), + [anon_sym___makeref] = ACTIONS(1697), + [anon_sym___reftype] = ACTIONS(1699), + [anon_sym___refvalue] = ACTIONS(1701), + [sym_null_literal] = ACTIONS(1703), + [anon_sym_SQUOTE] = ACTIONS(1705), + [sym_integer_literal] = ACTIONS(1703), + [sym_real_literal] = ACTIONS(1707), + [anon_sym_DQUOTE] = ACTIONS(1709), + [sym_verbatim_string_literal] = ACTIONS(1707), + [aux_sym_preproc_if_token1] = ACTIONS(1711), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -195218,90 +195104,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1299), - [sym_interpolation_verbatim_start] = ACTIONS(1301), - [sym_interpolation_raw_start] = ACTIONS(1303), - [sym_raw_string_start] = ACTIONS(1305), + [sym_interpolation_regular_start] = ACTIONS(1713), + [sym_interpolation_verbatim_start] = ACTIONS(1715), + [sym_interpolation_raw_start] = ACTIONS(1717), + [sym_raw_string_start] = ACTIONS(1719), }, [908] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2420), - [sym__name] = STATE(5888), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2384), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(5204), - [sym_non_lvalue_expression] = STATE(3066), - [sym_lvalue_expression] = STATE(3554), - [sym__expression_statement_expression] = STATE(3006), - [sym_assignment_expression] = STATE(3020), - [sym_binary_expression] = STATE(3006), - [sym_postfix_unary_expression] = STATE(3020), - [sym_prefix_unary_expression] = STATE(3020), - [sym__pointer_indirection_expression] = STATE(2423), - [sym_query_expression] = STATE(3006), - [sym_from_clause] = STATE(6151), - [sym_conditional_expression] = STATE(3006), - [sym_conditional_access_expression] = STATE(3006), - [sym_as_expression] = STATE(3006), - [sym_is_expression] = STATE(3006), - [sym_is_pattern_expression] = STATE(3006), - [sym_cast_expression] = STATE(3006), - [sym_checked_expression] = STATE(3006), - [sym_invocation_expression] = STATE(3020), - [sym_switch_expression] = STATE(3006), - [sym_await_expression] = STATE(3020), - [sym_throw_expression] = STATE(3006), - [sym_element_access_expression] = STATE(2423), - [sym_interpolated_string_expression] = STATE(3006), - [sym_member_access_expression] = STATE(2423), - [sym_object_creation_expression] = STATE(3020), - [sym_parenthesized_expression] = STATE(3020), - [sym__parenthesized_lvalue_expression] = STATE(2423), - [sym_lambda_expression] = STATE(3006), - [sym__lambda_expression_init] = STATE(7640), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3006), - [sym_anonymous_method_expression] = STATE(3006), - [sym_anonymous_object_creation_expression] = STATE(3006), - [sym_implicit_array_creation_expression] = STATE(3006), - [sym_implicit_object_creation_expression] = STATE(3006), - [sym_implicit_stackalloc_expression] = STATE(3006), - [sym_initializer_expression] = STATE(3006), - [sym_default_expression] = STATE(3006), - [sym_with_expression] = STATE(3006), - [sym_sizeof_expression] = STATE(3006), - [sym_typeof_expression] = STATE(3006), - [sym_makeref_expression] = STATE(3006), - [sym_ref_expression] = STATE(3006), - [sym_reftype_expression] = STATE(3006), - [sym_refvalue_expression] = STATE(3006), - [sym_stackalloc_expression] = STATE(3006), - [sym_range_expression] = STATE(3006), - [sym_tuple_expression] = STATE(2423), - [sym_literal] = STATE(3006), - [sym_character_literal] = STATE(3011), - [sym_string_literal] = STATE(3011), - [sym_raw_string_literal] = STATE(3011), - [sym_boolean_literal] = STATE(3011), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3006), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(5873), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2238), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(5453), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3468), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3102), + [sym_postfix_unary_expression] = STATE(3079), + [sym_prefix_unary_expression] = STATE(3079), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6134), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3102), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3079), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3102), + [sym_member_access_expression] = STATE(2472), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3079), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7309), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(3102), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3102), + [sym_typeof_expression] = STATE(3102), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2472), + [sym_literal] = STATE(3102), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(908), [sym_preproc_endregion] = STATE(908), [sym_preproc_line] = STATE(908), @@ -195311,47 +195197,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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3440), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1241), - [anon_sym_LPAREN] = ACTIONS(2281), - [anon_sym_ref] = ACTIONS(2283), - [anon_sym_LBRACE] = ACTIONS(1247), - [anon_sym_delegate] = ACTIONS(1249), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1479), + [anon_sym_LPAREN] = ACTIONS(659), + [anon_sym_ref] = ACTIONS(663), + [anon_sym_LBRACE] = ACTIONS(1481), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(2285), + [anon_sym_new] = ACTIONS(1059), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1253), - [anon_sym_BANG] = ACTIONS(2289), - [anon_sym_TILDE] = ACTIONS(2289), - [anon_sym_PLUS_PLUS] = ACTIONS(2289), - [anon_sym_DASH_DASH] = ACTIONS(2289), - [anon_sym_true] = ACTIONS(1259), - [anon_sym_false] = ACTIONS(1259), - [anon_sym_PLUS] = ACTIONS(2287), - [anon_sym_DASH] = ACTIONS(2287), - [anon_sym_STAR] = ACTIONS(2291), - [anon_sym_CARET] = ACTIONS(2289), - [anon_sym_AMP] = ACTIONS(2289), - [anon_sym_this] = ACTIONS(1263), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(1485), + [anon_sym_TILDE] = ACTIONS(1485), + [anon_sym_PLUS_PLUS] = ACTIONS(1485), + [anon_sym_DASH_DASH] = ACTIONS(1485), + [anon_sym_true] = ACTIONS(77), + [anon_sym_false] = ACTIONS(77), + [anon_sym_PLUS] = ACTIONS(1483), + [anon_sym_DASH] = ACTIONS(1483), + [anon_sym_STAR] = ACTIONS(683), + [anon_sym_CARET] = ACTIONS(1485), + [anon_sym_AMP] = ACTIONS(1485), + [anon_sym_this] = ACTIONS(83), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1265), + [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1267), - [anon_sym_unchecked] = ACTIONS(1253), + [sym_predefined_type] = ACTIONS(91), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1269), - [anon_sym_throw] = ACTIONS(2293), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(1077), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2295), - [anon_sym_DOT_DOT] = ACTIONS(2297), + [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), @@ -195364,19 +195250,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1277), - [anon_sym_sizeof] = ACTIONS(1279), - [anon_sym_typeof] = ACTIONS(1281), - [anon_sym___makeref] = ACTIONS(1283), - [anon_sym___reftype] = ACTIONS(1285), - [anon_sym___refvalue] = ACTIONS(1287), - [sym_null_literal] = ACTIONS(1289), - [anon_sym_SQUOTE] = ACTIONS(1291), - [sym_integer_literal] = ACTIONS(1289), - [sym_real_literal] = ACTIONS(1293), - [anon_sym_DQUOTE] = ACTIONS(1295), - [sym_verbatim_string_literal] = ACTIONS(1293), - [aux_sym_preproc_if_token1] = ACTIONS(1297), + [anon_sym_stackalloc] = ACTIONS(127), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_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), @@ -195387,90 +195273,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1299), - [sym_interpolation_verbatim_start] = ACTIONS(1301), - [sym_interpolation_raw_start] = ACTIONS(1303), - [sym_raw_string_start] = ACTIONS(1305), + [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(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2420), - [sym__name] = STATE(5888), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2384), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(5311), - [sym_non_lvalue_expression] = STATE(3066), - [sym_lvalue_expression] = STATE(3554), - [sym__expression_statement_expression] = STATE(3006), - [sym_assignment_expression] = STATE(3020), - [sym_binary_expression] = STATE(3006), - [sym_postfix_unary_expression] = STATE(3020), - [sym_prefix_unary_expression] = STATE(3020), - [sym__pointer_indirection_expression] = STATE(2423), - [sym_query_expression] = STATE(3006), - [sym_from_clause] = STATE(6151), - [sym_conditional_expression] = STATE(3006), - [sym_conditional_access_expression] = STATE(3006), - [sym_as_expression] = STATE(3006), - [sym_is_expression] = STATE(3006), - [sym_is_pattern_expression] = STATE(3006), - [sym_cast_expression] = STATE(3006), - [sym_checked_expression] = STATE(3006), - [sym_invocation_expression] = STATE(3020), - [sym_switch_expression] = STATE(3006), - [sym_await_expression] = STATE(3020), - [sym_throw_expression] = STATE(3006), - [sym_element_access_expression] = STATE(2423), - [sym_interpolated_string_expression] = STATE(3006), - [sym_member_access_expression] = STATE(2423), - [sym_object_creation_expression] = STATE(3020), - [sym_parenthesized_expression] = STATE(3020), - [sym__parenthesized_lvalue_expression] = STATE(2423), - [sym_lambda_expression] = STATE(3006), - [sym__lambda_expression_init] = STATE(7640), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3006), - [sym_anonymous_method_expression] = STATE(3006), - [sym_anonymous_object_creation_expression] = STATE(3006), - [sym_implicit_array_creation_expression] = STATE(3006), - [sym_implicit_object_creation_expression] = STATE(3006), - [sym_implicit_stackalloc_expression] = STATE(3006), - [sym_initializer_expression] = STATE(3006), - [sym_default_expression] = STATE(3006), - [sym_with_expression] = STATE(3006), - [sym_sizeof_expression] = STATE(3006), - [sym_typeof_expression] = STATE(3006), - [sym_makeref_expression] = STATE(3006), - [sym_ref_expression] = STATE(3006), - [sym_reftype_expression] = STATE(3006), - [sym_refvalue_expression] = STATE(3006), - [sym_stackalloc_expression] = STATE(3006), - [sym_range_expression] = STATE(3006), - [sym_tuple_expression] = STATE(2423), - [sym_literal] = STATE(3006), - [sym_character_literal] = STATE(3011), - [sym_string_literal] = STATE(3011), - [sym_raw_string_literal] = STATE(3011), - [sym_boolean_literal] = STATE(3011), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3006), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2901), + [sym__name] = STATE(5889), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2349), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(3830), + [sym_non_lvalue_expression] = STATE(3685), + [sym_lvalue_expression] = STATE(2985), + [sym__expression_statement_expression] = STATE(3836), + [sym_assignment_expression] = STATE(3689), + [sym_binary_expression] = STATE(3836), + [sym_postfix_unary_expression] = STATE(3689), + [sym_prefix_unary_expression] = STATE(3689), + [sym__pointer_indirection_expression] = STATE(2906), + [sym_query_expression] = STATE(3836), + [sym_from_clause] = STATE(6157), + [sym_conditional_expression] = STATE(3836), + [sym_conditional_access_expression] = STATE(3836), + [sym_as_expression] = STATE(3836), + [sym_is_expression] = STATE(3836), + [sym_is_pattern_expression] = STATE(3836), + [sym_cast_expression] = STATE(3836), + [sym_checked_expression] = STATE(3836), + [sym_invocation_expression] = STATE(3689), + [sym_switch_expression] = STATE(3836), + [sym_await_expression] = STATE(3689), + [sym_throw_expression] = STATE(3836), + [sym_element_access_expression] = STATE(2906), + [sym_interpolated_string_expression] = STATE(3836), + [sym_member_access_expression] = STATE(2906), + [sym_object_creation_expression] = STATE(3689), + [sym_parenthesized_expression] = STATE(3689), + [sym__parenthesized_lvalue_expression] = STATE(2906), + [sym_lambda_expression] = STATE(3836), + [sym__lambda_expression_init] = STATE(7485), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3836), + [sym_anonymous_method_expression] = STATE(3836), + [sym_anonymous_object_creation_expression] = STATE(3836), + [sym_implicit_array_creation_expression] = STATE(3836), + [sym_implicit_object_creation_expression] = STATE(3836), + [sym_implicit_stackalloc_expression] = STATE(3836), + [sym_initializer_expression] = STATE(3836), + [sym_default_expression] = STATE(3836), + [sym_with_expression] = STATE(3836), + [sym_sizeof_expression] = STATE(3836), + [sym_typeof_expression] = STATE(3836), + [sym_makeref_expression] = STATE(3836), + [sym_ref_expression] = STATE(3836), + [sym_reftype_expression] = STATE(3836), + [sym_refvalue_expression] = STATE(3836), + [sym_stackalloc_expression] = STATE(3836), + [sym_range_expression] = STATE(3836), + [sym_tuple_expression] = STATE(2906), + [sym_literal] = STATE(3836), + [sym_character_literal] = STATE(3843), + [sym_string_literal] = STATE(3843), + [sym_raw_string_literal] = STATE(3843), + [sym_boolean_literal] = STATE(3843), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3836), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(909), [sym_preproc_endregion] = STATE(909), [sym_preproc_line] = STATE(909), @@ -195480,47 +195366,47 @@ 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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3440), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3477), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1241), - [anon_sym_LPAREN] = ACTIONS(2281), - [anon_sym_ref] = ACTIONS(2283), - [anon_sym_LBRACE] = ACTIONS(1247), - [anon_sym_delegate] = ACTIONS(1249), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1655), + [anon_sym_LPAREN] = ACTIONS(2043), + [anon_sym_ref] = ACTIONS(2045), + [anon_sym_LBRACE] = ACTIONS(1661), + [anon_sym_delegate] = ACTIONS(1663), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(2285), + [anon_sym_new] = ACTIONS(1759), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1253), - [anon_sym_BANG] = ACTIONS(2289), - [anon_sym_TILDE] = ACTIONS(2289), - [anon_sym_PLUS_PLUS] = ACTIONS(2289), - [anon_sym_DASH_DASH] = ACTIONS(2289), - [anon_sym_true] = ACTIONS(1259), - [anon_sym_false] = ACTIONS(1259), - [anon_sym_PLUS] = ACTIONS(2287), - [anon_sym_DASH] = ACTIONS(2287), - [anon_sym_STAR] = ACTIONS(2291), - [anon_sym_CARET] = ACTIONS(2289), - [anon_sym_AMP] = ACTIONS(2289), - [anon_sym_this] = ACTIONS(1263), + [anon_sym_checked] = ACTIONS(1667), + [anon_sym_BANG] = ACTIONS(2049), + [anon_sym_TILDE] = ACTIONS(2049), + [anon_sym_PLUS_PLUS] = ACTIONS(2049), + [anon_sym_DASH_DASH] = ACTIONS(2049), + [anon_sym_true] = ACTIONS(1673), + [anon_sym_false] = ACTIONS(1673), + [anon_sym_PLUS] = ACTIONS(2047), + [anon_sym_DASH] = ACTIONS(2047), + [anon_sym_STAR] = ACTIONS(1765), + [anon_sym_CARET] = ACTIONS(2049), + [anon_sym_AMP] = ACTIONS(2049), + [anon_sym_this] = ACTIONS(1677), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1265), + [anon_sym_base] = ACTIONS(1679), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1267), - [anon_sym_unchecked] = ACTIONS(1253), + [sym_predefined_type] = ACTIONS(1681), + [anon_sym_unchecked] = ACTIONS(1667), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1269), - [anon_sym_throw] = ACTIONS(2293), + [anon_sym_default] = ACTIONS(1683), + [anon_sym_throw] = ACTIONS(2051), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2295), - [anon_sym_DOT_DOT] = ACTIONS(2297), + [anon_sym_await] = ACTIONS(2053), + [anon_sym_DOT_DOT] = ACTIONS(2055), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -195533,19 +195419,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1277), - [anon_sym_sizeof] = ACTIONS(1279), - [anon_sym_typeof] = ACTIONS(1281), - [anon_sym___makeref] = ACTIONS(1283), - [anon_sym___reftype] = ACTIONS(1285), - [anon_sym___refvalue] = ACTIONS(1287), - [sym_null_literal] = ACTIONS(1289), - [anon_sym_SQUOTE] = ACTIONS(1291), - [sym_integer_literal] = ACTIONS(1289), - [sym_real_literal] = ACTIONS(1293), - [anon_sym_DQUOTE] = ACTIONS(1295), - [sym_verbatim_string_literal] = ACTIONS(1293), - [aux_sym_preproc_if_token1] = ACTIONS(1297), + [anon_sym_stackalloc] = ACTIONS(1691), + [anon_sym_sizeof] = ACTIONS(1693), + [anon_sym_typeof] = ACTIONS(1695), + [anon_sym___makeref] = ACTIONS(1697), + [anon_sym___reftype] = ACTIONS(1699), + [anon_sym___refvalue] = ACTIONS(1701), + [sym_null_literal] = ACTIONS(1703), + [anon_sym_SQUOTE] = ACTIONS(1705), + [sym_integer_literal] = ACTIONS(1703), + [sym_real_literal] = ACTIONS(1707), + [anon_sym_DQUOTE] = ACTIONS(1709), + [sym_verbatim_string_literal] = ACTIONS(1707), + [aux_sym_preproc_if_token1] = ACTIONS(1711), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -195556,90 +195442,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1299), - [sym_interpolation_verbatim_start] = ACTIONS(1301), - [sym_interpolation_raw_start] = ACTIONS(1303), - [sym_raw_string_start] = ACTIONS(1305), + [sym_interpolation_regular_start] = ACTIONS(1713), + [sym_interpolation_verbatim_start] = ACTIONS(1715), + [sym_interpolation_raw_start] = ACTIONS(1717), + [sym_raw_string_start] = ACTIONS(1719), }, [910] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2420), - [sym__name] = STATE(5888), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2384), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(5134), - [sym_non_lvalue_expression] = STATE(3066), - [sym_lvalue_expression] = STATE(3554), - [sym__expression_statement_expression] = STATE(3006), - [sym_assignment_expression] = STATE(3020), - [sym_binary_expression] = STATE(3006), - [sym_postfix_unary_expression] = STATE(3020), - [sym_prefix_unary_expression] = STATE(3020), - [sym__pointer_indirection_expression] = STATE(2423), - [sym_query_expression] = STATE(3006), - [sym_from_clause] = STATE(6151), - [sym_conditional_expression] = STATE(3006), - [sym_conditional_access_expression] = STATE(3006), - [sym_as_expression] = STATE(3006), - [sym_is_expression] = STATE(3006), - [sym_is_pattern_expression] = STATE(3006), - [sym_cast_expression] = STATE(3006), - [sym_checked_expression] = STATE(3006), - [sym_invocation_expression] = STATE(3020), - [sym_switch_expression] = STATE(3006), - [sym_await_expression] = STATE(3020), - [sym_throw_expression] = STATE(3006), - [sym_element_access_expression] = STATE(2423), - [sym_interpolated_string_expression] = STATE(3006), - [sym_member_access_expression] = STATE(2423), - [sym_object_creation_expression] = STATE(3020), - [sym_parenthesized_expression] = STATE(3020), - [sym__parenthesized_lvalue_expression] = STATE(2423), - [sym_lambda_expression] = STATE(3006), - [sym__lambda_expression_init] = STATE(7640), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3006), - [sym_anonymous_method_expression] = STATE(3006), - [sym_anonymous_object_creation_expression] = STATE(3006), - [sym_implicit_array_creation_expression] = STATE(3006), - [sym_implicit_object_creation_expression] = STATE(3006), - [sym_implicit_stackalloc_expression] = STATE(3006), - [sym_initializer_expression] = STATE(3006), - [sym_default_expression] = STATE(3006), - [sym_with_expression] = STATE(3006), - [sym_sizeof_expression] = STATE(3006), - [sym_typeof_expression] = STATE(3006), - [sym_makeref_expression] = STATE(3006), - [sym_ref_expression] = STATE(3006), - [sym_reftype_expression] = STATE(3006), - [sym_refvalue_expression] = STATE(3006), - [sym_stackalloc_expression] = STATE(3006), - [sym_range_expression] = STATE(3006), - [sym_tuple_expression] = STATE(2423), - [sym_literal] = STATE(3006), - [sym_character_literal] = STATE(3011), - [sym_string_literal] = STATE(3011), - [sym_raw_string_literal] = STATE(3011), - [sym_boolean_literal] = STATE(3011), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3006), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2901), + [sym__name] = STATE(5889), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2349), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(3831), + [sym_non_lvalue_expression] = STATE(3685), + [sym_lvalue_expression] = STATE(2985), + [sym__expression_statement_expression] = STATE(3836), + [sym_assignment_expression] = STATE(3689), + [sym_binary_expression] = STATE(3836), + [sym_postfix_unary_expression] = STATE(3689), + [sym_prefix_unary_expression] = STATE(3689), + [sym__pointer_indirection_expression] = STATE(2906), + [sym_query_expression] = STATE(3836), + [sym_from_clause] = STATE(6157), + [sym_conditional_expression] = STATE(3836), + [sym_conditional_access_expression] = STATE(3836), + [sym_as_expression] = STATE(3836), + [sym_is_expression] = STATE(3836), + [sym_is_pattern_expression] = STATE(3836), + [sym_cast_expression] = STATE(3836), + [sym_checked_expression] = STATE(3836), + [sym_invocation_expression] = STATE(3689), + [sym_switch_expression] = STATE(3836), + [sym_await_expression] = STATE(3689), + [sym_throw_expression] = STATE(3836), + [sym_element_access_expression] = STATE(2906), + [sym_interpolated_string_expression] = STATE(3836), + [sym_member_access_expression] = STATE(2906), + [sym_object_creation_expression] = STATE(3689), + [sym_parenthesized_expression] = STATE(3689), + [sym__parenthesized_lvalue_expression] = STATE(2906), + [sym_lambda_expression] = STATE(3836), + [sym__lambda_expression_init] = STATE(7485), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3836), + [sym_anonymous_method_expression] = STATE(3836), + [sym_anonymous_object_creation_expression] = STATE(3836), + [sym_implicit_array_creation_expression] = STATE(3836), + [sym_implicit_object_creation_expression] = STATE(3836), + [sym_implicit_stackalloc_expression] = STATE(3836), + [sym_initializer_expression] = STATE(3836), + [sym_default_expression] = STATE(3836), + [sym_with_expression] = STATE(3836), + [sym_sizeof_expression] = STATE(3836), + [sym_typeof_expression] = STATE(3836), + [sym_makeref_expression] = STATE(3836), + [sym_ref_expression] = STATE(3836), + [sym_reftype_expression] = STATE(3836), + [sym_refvalue_expression] = STATE(3836), + [sym_stackalloc_expression] = STATE(3836), + [sym_range_expression] = STATE(3836), + [sym_tuple_expression] = STATE(2906), + [sym_literal] = STATE(3836), + [sym_character_literal] = STATE(3843), + [sym_string_literal] = STATE(3843), + [sym_raw_string_literal] = STATE(3843), + [sym_boolean_literal] = STATE(3843), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3836), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(910), [sym_preproc_endregion] = STATE(910), [sym_preproc_line] = STATE(910), @@ -195649,47 +195535,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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3440), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3477), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1241), - [anon_sym_LPAREN] = ACTIONS(2281), - [anon_sym_ref] = ACTIONS(2283), - [anon_sym_LBRACE] = ACTIONS(1247), - [anon_sym_delegate] = ACTIONS(1249), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1655), + [anon_sym_LPAREN] = ACTIONS(2043), + [anon_sym_ref] = ACTIONS(2045), + [anon_sym_LBRACE] = ACTIONS(1661), + [anon_sym_delegate] = ACTIONS(1663), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(2285), + [anon_sym_new] = ACTIONS(1759), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1253), - [anon_sym_BANG] = ACTIONS(2289), - [anon_sym_TILDE] = ACTIONS(2289), - [anon_sym_PLUS_PLUS] = ACTIONS(2289), - [anon_sym_DASH_DASH] = ACTIONS(2289), - [anon_sym_true] = ACTIONS(1259), - [anon_sym_false] = ACTIONS(1259), - [anon_sym_PLUS] = ACTIONS(2287), - [anon_sym_DASH] = ACTIONS(2287), - [anon_sym_STAR] = ACTIONS(2291), - [anon_sym_CARET] = ACTIONS(2289), - [anon_sym_AMP] = ACTIONS(2289), - [anon_sym_this] = ACTIONS(1263), + [anon_sym_checked] = ACTIONS(1667), + [anon_sym_BANG] = ACTIONS(2049), + [anon_sym_TILDE] = ACTIONS(2049), + [anon_sym_PLUS_PLUS] = ACTIONS(2049), + [anon_sym_DASH_DASH] = ACTIONS(2049), + [anon_sym_true] = ACTIONS(1673), + [anon_sym_false] = ACTIONS(1673), + [anon_sym_PLUS] = ACTIONS(2047), + [anon_sym_DASH] = ACTIONS(2047), + [anon_sym_STAR] = ACTIONS(1765), + [anon_sym_CARET] = ACTIONS(2049), + [anon_sym_AMP] = ACTIONS(2049), + [anon_sym_this] = ACTIONS(1677), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1265), + [anon_sym_base] = ACTIONS(1679), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1267), - [anon_sym_unchecked] = ACTIONS(1253), + [sym_predefined_type] = ACTIONS(1681), + [anon_sym_unchecked] = ACTIONS(1667), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1269), - [anon_sym_throw] = ACTIONS(2293), + [anon_sym_default] = ACTIONS(1683), + [anon_sym_throw] = ACTIONS(2051), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2295), - [anon_sym_DOT_DOT] = ACTIONS(2297), + [anon_sym_await] = ACTIONS(2053), + [anon_sym_DOT_DOT] = ACTIONS(2055), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -195702,19 +195588,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1277), - [anon_sym_sizeof] = ACTIONS(1279), - [anon_sym_typeof] = ACTIONS(1281), - [anon_sym___makeref] = ACTIONS(1283), - [anon_sym___reftype] = ACTIONS(1285), - [anon_sym___refvalue] = ACTIONS(1287), - [sym_null_literal] = ACTIONS(1289), - [anon_sym_SQUOTE] = ACTIONS(1291), - [sym_integer_literal] = ACTIONS(1289), - [sym_real_literal] = ACTIONS(1293), - [anon_sym_DQUOTE] = ACTIONS(1295), - [sym_verbatim_string_literal] = ACTIONS(1293), - [aux_sym_preproc_if_token1] = ACTIONS(1297), + [anon_sym_stackalloc] = ACTIONS(1691), + [anon_sym_sizeof] = ACTIONS(1693), + [anon_sym_typeof] = ACTIONS(1695), + [anon_sym___makeref] = ACTIONS(1697), + [anon_sym___reftype] = ACTIONS(1699), + [anon_sym___refvalue] = ACTIONS(1701), + [sym_null_literal] = ACTIONS(1703), + [anon_sym_SQUOTE] = ACTIONS(1705), + [sym_integer_literal] = ACTIONS(1703), + [sym_real_literal] = ACTIONS(1707), + [anon_sym_DQUOTE] = ACTIONS(1709), + [sym_verbatim_string_literal] = ACTIONS(1707), + [aux_sym_preproc_if_token1] = ACTIONS(1711), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -195725,90 +195611,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1299), - [sym_interpolation_verbatim_start] = ACTIONS(1301), - [sym_interpolation_raw_start] = ACTIONS(1303), - [sym_raw_string_start] = ACTIONS(1305), + [sym_interpolation_regular_start] = ACTIONS(1713), + [sym_interpolation_verbatim_start] = ACTIONS(1715), + [sym_interpolation_raw_start] = ACTIONS(1717), + [sym_raw_string_start] = ACTIONS(1719), }, [911] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2420), - [sym__name] = STATE(5888), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2384), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(5237), - [sym_non_lvalue_expression] = STATE(3066), - [sym_lvalue_expression] = STATE(3554), - [sym__expression_statement_expression] = STATE(3006), - [sym_assignment_expression] = STATE(3020), - [sym_binary_expression] = STATE(3006), - [sym_postfix_unary_expression] = STATE(3020), - [sym_prefix_unary_expression] = STATE(3020), - [sym__pointer_indirection_expression] = STATE(2423), - [sym_query_expression] = STATE(3006), - [sym_from_clause] = STATE(6151), - [sym_conditional_expression] = STATE(3006), - [sym_conditional_access_expression] = STATE(3006), - [sym_as_expression] = STATE(3006), - [sym_is_expression] = STATE(3006), - [sym_is_pattern_expression] = STATE(3006), - [sym_cast_expression] = STATE(3006), - [sym_checked_expression] = STATE(3006), - [sym_invocation_expression] = STATE(3020), - [sym_switch_expression] = STATE(3006), - [sym_await_expression] = STATE(3020), - [sym_throw_expression] = STATE(3006), - [sym_element_access_expression] = STATE(2423), - [sym_interpolated_string_expression] = STATE(3006), - [sym_member_access_expression] = STATE(2423), - [sym_object_creation_expression] = STATE(3020), - [sym_parenthesized_expression] = STATE(3020), - [sym__parenthesized_lvalue_expression] = STATE(2423), - [sym_lambda_expression] = STATE(3006), - [sym__lambda_expression_init] = STATE(7640), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3006), - [sym_anonymous_method_expression] = STATE(3006), - [sym_anonymous_object_creation_expression] = STATE(3006), - [sym_implicit_array_creation_expression] = STATE(3006), - [sym_implicit_object_creation_expression] = STATE(3006), - [sym_implicit_stackalloc_expression] = STATE(3006), - [sym_initializer_expression] = STATE(3006), - [sym_default_expression] = STATE(3006), - [sym_with_expression] = STATE(3006), - [sym_sizeof_expression] = STATE(3006), - [sym_typeof_expression] = STATE(3006), - [sym_makeref_expression] = STATE(3006), - [sym_ref_expression] = STATE(3006), - [sym_reftype_expression] = STATE(3006), - [sym_refvalue_expression] = STATE(3006), - [sym_stackalloc_expression] = STATE(3006), - [sym_range_expression] = STATE(3006), - [sym_tuple_expression] = STATE(2423), - [sym_literal] = STATE(3006), - [sym_character_literal] = STATE(3011), - [sym_string_literal] = STATE(3011), - [sym_raw_string_literal] = STATE(3011), - [sym_boolean_literal] = STATE(3011), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3006), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2901), + [sym__name] = STATE(5889), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2349), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(3832), + [sym_non_lvalue_expression] = STATE(3685), + [sym_lvalue_expression] = STATE(2985), + [sym__expression_statement_expression] = STATE(3836), + [sym_assignment_expression] = STATE(3689), + [sym_binary_expression] = STATE(3836), + [sym_postfix_unary_expression] = STATE(3689), + [sym_prefix_unary_expression] = STATE(3689), + [sym__pointer_indirection_expression] = STATE(2906), + [sym_query_expression] = STATE(3836), + [sym_from_clause] = STATE(6157), + [sym_conditional_expression] = STATE(3836), + [sym_conditional_access_expression] = STATE(3836), + [sym_as_expression] = STATE(3836), + [sym_is_expression] = STATE(3836), + [sym_is_pattern_expression] = STATE(3836), + [sym_cast_expression] = STATE(3836), + [sym_checked_expression] = STATE(3836), + [sym_invocation_expression] = STATE(3689), + [sym_switch_expression] = STATE(3836), + [sym_await_expression] = STATE(3689), + [sym_throw_expression] = STATE(3836), + [sym_element_access_expression] = STATE(2906), + [sym_interpolated_string_expression] = STATE(3836), + [sym_member_access_expression] = STATE(2906), + [sym_object_creation_expression] = STATE(3689), + [sym_parenthesized_expression] = STATE(3689), + [sym__parenthesized_lvalue_expression] = STATE(2906), + [sym_lambda_expression] = STATE(3836), + [sym__lambda_expression_init] = STATE(7485), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3836), + [sym_anonymous_method_expression] = STATE(3836), + [sym_anonymous_object_creation_expression] = STATE(3836), + [sym_implicit_array_creation_expression] = STATE(3836), + [sym_implicit_object_creation_expression] = STATE(3836), + [sym_implicit_stackalloc_expression] = STATE(3836), + [sym_initializer_expression] = STATE(3836), + [sym_default_expression] = STATE(3836), + [sym_with_expression] = STATE(3836), + [sym_sizeof_expression] = STATE(3836), + [sym_typeof_expression] = STATE(3836), + [sym_makeref_expression] = STATE(3836), + [sym_ref_expression] = STATE(3836), + [sym_reftype_expression] = STATE(3836), + [sym_refvalue_expression] = STATE(3836), + [sym_stackalloc_expression] = STATE(3836), + [sym_range_expression] = STATE(3836), + [sym_tuple_expression] = STATE(2906), + [sym_literal] = STATE(3836), + [sym_character_literal] = STATE(3843), + [sym_string_literal] = STATE(3843), + [sym_raw_string_literal] = STATE(3843), + [sym_boolean_literal] = STATE(3843), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3836), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(911), [sym_preproc_endregion] = STATE(911), [sym_preproc_line] = STATE(911), @@ -195818,47 +195704,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(911), [sym_preproc_define] = STATE(911), [sym_preproc_undef] = STATE(911), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3440), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3477), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1241), - [anon_sym_LPAREN] = ACTIONS(2281), - [anon_sym_ref] = ACTIONS(2283), - [anon_sym_LBRACE] = ACTIONS(1247), - [anon_sym_delegate] = ACTIONS(1249), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1655), + [anon_sym_LPAREN] = ACTIONS(2043), + [anon_sym_ref] = ACTIONS(2045), + [anon_sym_LBRACE] = ACTIONS(1661), + [anon_sym_delegate] = ACTIONS(1663), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(2285), + [anon_sym_new] = ACTIONS(1759), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1253), - [anon_sym_BANG] = ACTIONS(2289), - [anon_sym_TILDE] = ACTIONS(2289), - [anon_sym_PLUS_PLUS] = ACTIONS(2289), - [anon_sym_DASH_DASH] = ACTIONS(2289), - [anon_sym_true] = ACTIONS(1259), - [anon_sym_false] = ACTIONS(1259), - [anon_sym_PLUS] = ACTIONS(2287), - [anon_sym_DASH] = ACTIONS(2287), - [anon_sym_STAR] = ACTIONS(2291), - [anon_sym_CARET] = ACTIONS(2289), - [anon_sym_AMP] = ACTIONS(2289), - [anon_sym_this] = ACTIONS(1263), + [anon_sym_checked] = ACTIONS(1667), + [anon_sym_BANG] = ACTIONS(2049), + [anon_sym_TILDE] = ACTIONS(2049), + [anon_sym_PLUS_PLUS] = ACTIONS(2049), + [anon_sym_DASH_DASH] = ACTIONS(2049), + [anon_sym_true] = ACTIONS(1673), + [anon_sym_false] = ACTIONS(1673), + [anon_sym_PLUS] = ACTIONS(2047), + [anon_sym_DASH] = ACTIONS(2047), + [anon_sym_STAR] = ACTIONS(1765), + [anon_sym_CARET] = ACTIONS(2049), + [anon_sym_AMP] = ACTIONS(2049), + [anon_sym_this] = ACTIONS(1677), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1265), + [anon_sym_base] = ACTIONS(1679), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1267), - [anon_sym_unchecked] = ACTIONS(1253), + [sym_predefined_type] = ACTIONS(1681), + [anon_sym_unchecked] = ACTIONS(1667), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1269), - [anon_sym_throw] = ACTIONS(2293), + [anon_sym_default] = ACTIONS(1683), + [anon_sym_throw] = ACTIONS(2051), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2295), - [anon_sym_DOT_DOT] = ACTIONS(2297), + [anon_sym_await] = ACTIONS(2053), + [anon_sym_DOT_DOT] = ACTIONS(2055), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -195871,19 +195757,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1277), - [anon_sym_sizeof] = ACTIONS(1279), - [anon_sym_typeof] = ACTIONS(1281), - [anon_sym___makeref] = ACTIONS(1283), - [anon_sym___reftype] = ACTIONS(1285), - [anon_sym___refvalue] = ACTIONS(1287), - [sym_null_literal] = ACTIONS(1289), - [anon_sym_SQUOTE] = ACTIONS(1291), - [sym_integer_literal] = ACTIONS(1289), - [sym_real_literal] = ACTIONS(1293), - [anon_sym_DQUOTE] = ACTIONS(1295), - [sym_verbatim_string_literal] = ACTIONS(1293), - [aux_sym_preproc_if_token1] = ACTIONS(1297), + [anon_sym_stackalloc] = ACTIONS(1691), + [anon_sym_sizeof] = ACTIONS(1693), + [anon_sym_typeof] = ACTIONS(1695), + [anon_sym___makeref] = ACTIONS(1697), + [anon_sym___reftype] = ACTIONS(1699), + [anon_sym___refvalue] = ACTIONS(1701), + [sym_null_literal] = ACTIONS(1703), + [anon_sym_SQUOTE] = ACTIONS(1705), + [sym_integer_literal] = ACTIONS(1703), + [sym_real_literal] = ACTIONS(1707), + [anon_sym_DQUOTE] = ACTIONS(1709), + [sym_verbatim_string_literal] = ACTIONS(1707), + [aux_sym_preproc_if_token1] = ACTIONS(1711), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -195894,90 +195780,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1299), - [sym_interpolation_verbatim_start] = ACTIONS(1301), - [sym_interpolation_raw_start] = ACTIONS(1303), - [sym_raw_string_start] = ACTIONS(1305), + [sym_interpolation_regular_start] = ACTIONS(1713), + [sym_interpolation_verbatim_start] = ACTIONS(1715), + [sym_interpolation_raw_start] = ACTIONS(1717), + [sym_raw_string_start] = ACTIONS(1719), }, [912] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2420), - [sym__name] = STATE(5888), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2384), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(5195), - [sym_non_lvalue_expression] = STATE(3066), - [sym_lvalue_expression] = STATE(3554), - [sym__expression_statement_expression] = STATE(3006), - [sym_assignment_expression] = STATE(3020), - [sym_binary_expression] = STATE(3006), - [sym_postfix_unary_expression] = STATE(3020), - [sym_prefix_unary_expression] = STATE(3020), - [sym__pointer_indirection_expression] = STATE(2423), - [sym_query_expression] = STATE(3006), - [sym_from_clause] = STATE(6151), - [sym_conditional_expression] = STATE(3006), - [sym_conditional_access_expression] = STATE(3006), - [sym_as_expression] = STATE(3006), - [sym_is_expression] = STATE(3006), - [sym_is_pattern_expression] = STATE(3006), - [sym_cast_expression] = STATE(3006), - [sym_checked_expression] = STATE(3006), - [sym_invocation_expression] = STATE(3020), - [sym_switch_expression] = STATE(3006), - [sym_await_expression] = STATE(3020), - [sym_throw_expression] = STATE(3006), - [sym_element_access_expression] = STATE(2423), - [sym_interpolated_string_expression] = STATE(3006), - [sym_member_access_expression] = STATE(2423), - [sym_object_creation_expression] = STATE(3020), - [sym_parenthesized_expression] = STATE(3020), - [sym__parenthesized_lvalue_expression] = STATE(2423), - [sym_lambda_expression] = STATE(3006), - [sym__lambda_expression_init] = STATE(7640), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3006), - [sym_anonymous_method_expression] = STATE(3006), - [sym_anonymous_object_creation_expression] = STATE(3006), - [sym_implicit_array_creation_expression] = STATE(3006), - [sym_implicit_object_creation_expression] = STATE(3006), - [sym_implicit_stackalloc_expression] = STATE(3006), - [sym_initializer_expression] = STATE(3006), - [sym_default_expression] = STATE(3006), - [sym_with_expression] = STATE(3006), - [sym_sizeof_expression] = STATE(3006), - [sym_typeof_expression] = STATE(3006), - [sym_makeref_expression] = STATE(3006), - [sym_ref_expression] = STATE(3006), - [sym_reftype_expression] = STATE(3006), - [sym_refvalue_expression] = STATE(3006), - [sym_stackalloc_expression] = STATE(3006), - [sym_range_expression] = STATE(3006), - [sym_tuple_expression] = STATE(2423), - [sym_literal] = STATE(3006), - [sym_character_literal] = STATE(3011), - [sym_string_literal] = STATE(3011), - [sym_raw_string_literal] = STATE(3011), - [sym_boolean_literal] = STATE(3011), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3006), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(5873), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2238), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(5454), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3468), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3102), + [sym_postfix_unary_expression] = STATE(3079), + [sym_prefix_unary_expression] = STATE(3079), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6134), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3102), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3079), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3102), + [sym_member_access_expression] = STATE(2472), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3079), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7309), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(3102), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3102), + [sym_typeof_expression] = STATE(3102), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2472), + [sym_literal] = STATE(3102), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(912), [sym_preproc_endregion] = STATE(912), [sym_preproc_line] = STATE(912), @@ -195987,47 +195873,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(912), [sym_preproc_define] = STATE(912), [sym_preproc_undef] = STATE(912), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3440), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1241), - [anon_sym_LPAREN] = ACTIONS(2281), - [anon_sym_ref] = ACTIONS(2283), - [anon_sym_LBRACE] = ACTIONS(1247), - [anon_sym_delegate] = ACTIONS(1249), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1479), + [anon_sym_LPAREN] = ACTIONS(659), + [anon_sym_ref] = ACTIONS(663), + [anon_sym_LBRACE] = ACTIONS(1481), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(2285), + [anon_sym_new] = ACTIONS(1059), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1253), - [anon_sym_BANG] = ACTIONS(2289), - [anon_sym_TILDE] = ACTIONS(2289), - [anon_sym_PLUS_PLUS] = ACTIONS(2289), - [anon_sym_DASH_DASH] = ACTIONS(2289), - [anon_sym_true] = ACTIONS(1259), - [anon_sym_false] = ACTIONS(1259), - [anon_sym_PLUS] = ACTIONS(2287), - [anon_sym_DASH] = ACTIONS(2287), - [anon_sym_STAR] = ACTIONS(2291), - [anon_sym_CARET] = ACTIONS(2289), - [anon_sym_AMP] = ACTIONS(2289), - [anon_sym_this] = ACTIONS(1263), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(1485), + [anon_sym_TILDE] = ACTIONS(1485), + [anon_sym_PLUS_PLUS] = ACTIONS(1485), + [anon_sym_DASH_DASH] = ACTIONS(1485), + [anon_sym_true] = ACTIONS(77), + [anon_sym_false] = ACTIONS(77), + [anon_sym_PLUS] = ACTIONS(1483), + [anon_sym_DASH] = ACTIONS(1483), + [anon_sym_STAR] = ACTIONS(683), + [anon_sym_CARET] = ACTIONS(1485), + [anon_sym_AMP] = ACTIONS(1485), + [anon_sym_this] = ACTIONS(83), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1265), + [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1267), - [anon_sym_unchecked] = ACTIONS(1253), + [sym_predefined_type] = ACTIONS(91), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1269), - [anon_sym_throw] = ACTIONS(2293), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(1077), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2295), - [anon_sym_DOT_DOT] = ACTIONS(2297), + [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), @@ -196040,19 +195926,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1277), - [anon_sym_sizeof] = ACTIONS(1279), - [anon_sym_typeof] = ACTIONS(1281), - [anon_sym___makeref] = ACTIONS(1283), - [anon_sym___reftype] = ACTIONS(1285), - [anon_sym___refvalue] = ACTIONS(1287), - [sym_null_literal] = ACTIONS(1289), - [anon_sym_SQUOTE] = ACTIONS(1291), - [sym_integer_literal] = ACTIONS(1289), - [sym_real_literal] = ACTIONS(1293), - [anon_sym_DQUOTE] = ACTIONS(1295), - [sym_verbatim_string_literal] = ACTIONS(1293), - [aux_sym_preproc_if_token1] = ACTIONS(1297), + [anon_sym_stackalloc] = ACTIONS(127), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_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), @@ -196063,90 +195949,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1299), - [sym_interpolation_verbatim_start] = ACTIONS(1301), - [sym_interpolation_raw_start] = ACTIONS(1303), - [sym_raw_string_start] = ACTIONS(1305), + [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(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2420), - [sym__name] = STATE(5888), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2384), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(5200), - [sym_non_lvalue_expression] = STATE(3066), - [sym_lvalue_expression] = STATE(3554), - [sym__expression_statement_expression] = STATE(3006), - [sym_assignment_expression] = STATE(3020), - [sym_binary_expression] = STATE(3006), - [sym_postfix_unary_expression] = STATE(3020), - [sym_prefix_unary_expression] = STATE(3020), - [sym__pointer_indirection_expression] = STATE(2423), - [sym_query_expression] = STATE(3006), - [sym_from_clause] = STATE(6151), - [sym_conditional_expression] = STATE(3006), - [sym_conditional_access_expression] = STATE(3006), - [sym_as_expression] = STATE(3006), - [sym_is_expression] = STATE(3006), - [sym_is_pattern_expression] = STATE(3006), - [sym_cast_expression] = STATE(3006), - [sym_checked_expression] = STATE(3006), - [sym_invocation_expression] = STATE(3020), - [sym_switch_expression] = STATE(3006), - [sym_await_expression] = STATE(3020), - [sym_throw_expression] = STATE(3006), - [sym_element_access_expression] = STATE(2423), - [sym_interpolated_string_expression] = STATE(3006), - [sym_member_access_expression] = STATE(2423), - [sym_object_creation_expression] = STATE(3020), - [sym_parenthesized_expression] = STATE(3020), - [sym__parenthesized_lvalue_expression] = STATE(2423), - [sym_lambda_expression] = STATE(3006), - [sym__lambda_expression_init] = STATE(7640), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3006), - [sym_anonymous_method_expression] = STATE(3006), - [sym_anonymous_object_creation_expression] = STATE(3006), - [sym_implicit_array_creation_expression] = STATE(3006), - [sym_implicit_object_creation_expression] = STATE(3006), - [sym_implicit_stackalloc_expression] = STATE(3006), - [sym_initializer_expression] = STATE(3006), - [sym_default_expression] = STATE(3006), - [sym_with_expression] = STATE(3006), - [sym_sizeof_expression] = STATE(3006), - [sym_typeof_expression] = STATE(3006), - [sym_makeref_expression] = STATE(3006), - [sym_ref_expression] = STATE(3006), - [sym_reftype_expression] = STATE(3006), - [sym_refvalue_expression] = STATE(3006), - [sym_stackalloc_expression] = STATE(3006), - [sym_range_expression] = STATE(3006), - [sym_tuple_expression] = STATE(2423), - [sym_literal] = STATE(3006), - [sym_character_literal] = STATE(3011), - [sym_string_literal] = STATE(3011), - [sym_raw_string_literal] = STATE(3011), - [sym_boolean_literal] = STATE(3011), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3006), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2416), + [sym__name] = STATE(5900), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2193), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(4383), + [sym_non_lvalue_expression] = STATE(3040), + [sym_lvalue_expression] = STATE(3231), + [sym__expression_statement_expression] = STATE(3035), + [sym_assignment_expression] = STATE(3043), + [sym_binary_expression] = STATE(3035), + [sym_postfix_unary_expression] = STATE(3043), + [sym_prefix_unary_expression] = STATE(3043), + [sym__pointer_indirection_expression] = STATE(2415), + [sym_query_expression] = STATE(3035), + [sym_from_clause] = STATE(6149), + [sym_conditional_expression] = STATE(3035), + [sym_conditional_access_expression] = STATE(3035), + [sym_as_expression] = STATE(3035), + [sym_is_expression] = STATE(3035), + [sym_is_pattern_expression] = STATE(3035), + [sym_cast_expression] = STATE(3035), + [sym_checked_expression] = STATE(3035), + [sym_invocation_expression] = STATE(3043), + [sym_switch_expression] = STATE(3035), + [sym_await_expression] = STATE(3043), + [sym_throw_expression] = STATE(3035), + [sym_element_access_expression] = STATE(2415), + [sym_interpolated_string_expression] = STATE(3035), + [sym_member_access_expression] = STATE(2415), + [sym_object_creation_expression] = STATE(3043), + [sym_parenthesized_expression] = STATE(3043), + [sym__parenthesized_lvalue_expression] = STATE(2415), + [sym_lambda_expression] = STATE(3035), + [sym__lambda_expression_init] = STATE(7405), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3035), + [sym_anonymous_method_expression] = STATE(3035), + [sym_anonymous_object_creation_expression] = STATE(3035), + [sym_implicit_array_creation_expression] = STATE(3035), + [sym_implicit_object_creation_expression] = STATE(3035), + [sym_implicit_stackalloc_expression] = STATE(3035), + [sym_initializer_expression] = STATE(3035), + [sym_default_expression] = STATE(3035), + [sym_with_expression] = STATE(3035), + [sym_sizeof_expression] = STATE(3035), + [sym_typeof_expression] = STATE(3035), + [sym_makeref_expression] = STATE(3035), + [sym_ref_expression] = STATE(3035), + [sym_reftype_expression] = STATE(3035), + [sym_refvalue_expression] = STATE(3035), + [sym_stackalloc_expression] = STATE(3035), + [sym_range_expression] = STATE(3035), + [sym_tuple_expression] = STATE(2415), + [sym_literal] = STATE(3035), + [sym_character_literal] = STATE(3037), + [sym_string_literal] = STATE(3037), + [sym_raw_string_literal] = STATE(3037), + [sym_boolean_literal] = STATE(3037), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3035), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(913), [sym_preproc_endregion] = STATE(913), [sym_preproc_line] = STATE(913), @@ -196156,47 +196042,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(913), [sym_preproc_define] = STATE(913), [sym_preproc_undef] = STATE(913), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3440), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3455), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1241), - [anon_sym_LPAREN] = ACTIONS(2281), - [anon_sym_ref] = ACTIONS(2283), - [anon_sym_LBRACE] = ACTIONS(1247), - [anon_sym_delegate] = ACTIONS(1249), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1239), + [anon_sym_LPAREN] = ACTIONS(1495), + [anon_sym_ref] = ACTIONS(1497), + [anon_sym_LBRACE] = ACTIONS(1245), + [anon_sym_delegate] = ACTIONS(1247), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(2285), + [anon_sym_new] = ACTIONS(1249), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1253), - [anon_sym_BANG] = ACTIONS(2289), - [anon_sym_TILDE] = ACTIONS(2289), - [anon_sym_PLUS_PLUS] = ACTIONS(2289), - [anon_sym_DASH_DASH] = ACTIONS(2289), - [anon_sym_true] = ACTIONS(1259), - [anon_sym_false] = ACTIONS(1259), - [anon_sym_PLUS] = ACTIONS(2287), - [anon_sym_DASH] = ACTIONS(2287), - [anon_sym_STAR] = ACTIONS(2291), - [anon_sym_CARET] = ACTIONS(2289), - [anon_sym_AMP] = ACTIONS(2289), - [anon_sym_this] = ACTIONS(1263), + [anon_sym_checked] = ACTIONS(1251), + [anon_sym_BANG] = ACTIONS(1501), + [anon_sym_TILDE] = ACTIONS(1501), + [anon_sym_PLUS_PLUS] = ACTIONS(1501), + [anon_sym_DASH_DASH] = ACTIONS(1501), + [anon_sym_true] = ACTIONS(1257), + [anon_sym_false] = ACTIONS(1257), + [anon_sym_PLUS] = ACTIONS(1499), + [anon_sym_DASH] = ACTIONS(1499), + [anon_sym_STAR] = ACTIONS(1503), + [anon_sym_CARET] = ACTIONS(1501), + [anon_sym_AMP] = ACTIONS(1501), + [anon_sym_this] = ACTIONS(1261), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1265), + [anon_sym_base] = ACTIONS(1263), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1267), - [anon_sym_unchecked] = ACTIONS(1253), + [sym_predefined_type] = ACTIONS(1265), + [anon_sym_unchecked] = ACTIONS(1251), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1269), - [anon_sym_throw] = ACTIONS(2293), + [anon_sym_default] = ACTIONS(1267), + [anon_sym_throw] = ACTIONS(1505), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2295), - [anon_sym_DOT_DOT] = ACTIONS(2297), + [anon_sym_await] = ACTIONS(1507), + [anon_sym_DOT_DOT] = ACTIONS(1509), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -196209,19 +196095,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1277), - [anon_sym_sizeof] = ACTIONS(1279), - [anon_sym_typeof] = ACTIONS(1281), - [anon_sym___makeref] = ACTIONS(1283), - [anon_sym___reftype] = ACTIONS(1285), - [anon_sym___refvalue] = ACTIONS(1287), - [sym_null_literal] = ACTIONS(1289), - [anon_sym_SQUOTE] = ACTIONS(1291), - [sym_integer_literal] = ACTIONS(1289), - [sym_real_literal] = ACTIONS(1293), - [anon_sym_DQUOTE] = ACTIONS(1295), - [sym_verbatim_string_literal] = ACTIONS(1293), - [aux_sym_preproc_if_token1] = ACTIONS(1297), + [anon_sym_stackalloc] = ACTIONS(1275), + [anon_sym_sizeof] = ACTIONS(1277), + [anon_sym_typeof] = ACTIONS(1279), + [anon_sym___makeref] = ACTIONS(1281), + [anon_sym___reftype] = ACTIONS(1283), + [anon_sym___refvalue] = ACTIONS(1285), + [sym_null_literal] = ACTIONS(1287), + [anon_sym_SQUOTE] = ACTIONS(1289), + [sym_integer_literal] = ACTIONS(1287), + [sym_real_literal] = ACTIONS(1291), + [anon_sym_DQUOTE] = ACTIONS(1293), + [sym_verbatim_string_literal] = ACTIONS(1291), + [aux_sym_preproc_if_token1] = ACTIONS(1295), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -196232,90 +196118,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1299), - [sym_interpolation_verbatim_start] = ACTIONS(1301), - [sym_interpolation_raw_start] = ACTIONS(1303), - [sym_raw_string_start] = ACTIONS(1305), + [sym_interpolation_regular_start] = ACTIONS(1297), + [sym_interpolation_verbatim_start] = ACTIONS(1299), + [sym_interpolation_raw_start] = ACTIONS(1301), + [sym_raw_string_start] = ACTIONS(1303), }, [914] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2420), - [sym__name] = STATE(5888), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2384), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(5161), - [sym_non_lvalue_expression] = STATE(3066), - [sym_lvalue_expression] = STATE(3554), - [sym__expression_statement_expression] = STATE(3006), - [sym_assignment_expression] = STATE(3020), - [sym_binary_expression] = STATE(3006), - [sym_postfix_unary_expression] = STATE(3020), - [sym_prefix_unary_expression] = STATE(3020), - [sym__pointer_indirection_expression] = STATE(2423), - [sym_query_expression] = STATE(3006), - [sym_from_clause] = STATE(6151), - [sym_conditional_expression] = STATE(3006), - [sym_conditional_access_expression] = STATE(3006), - [sym_as_expression] = STATE(3006), - [sym_is_expression] = STATE(3006), - [sym_is_pattern_expression] = STATE(3006), - [sym_cast_expression] = STATE(3006), - [sym_checked_expression] = STATE(3006), - [sym_invocation_expression] = STATE(3020), - [sym_switch_expression] = STATE(3006), - [sym_await_expression] = STATE(3020), - [sym_throw_expression] = STATE(3006), - [sym_element_access_expression] = STATE(2423), - [sym_interpolated_string_expression] = STATE(3006), - [sym_member_access_expression] = STATE(2423), - [sym_object_creation_expression] = STATE(3020), - [sym_parenthesized_expression] = STATE(3020), - [sym__parenthesized_lvalue_expression] = STATE(2423), - [sym_lambda_expression] = STATE(3006), - [sym__lambda_expression_init] = STATE(7640), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3006), - [sym_anonymous_method_expression] = STATE(3006), - [sym_anonymous_object_creation_expression] = STATE(3006), - [sym_implicit_array_creation_expression] = STATE(3006), - [sym_implicit_object_creation_expression] = STATE(3006), - [sym_implicit_stackalloc_expression] = STATE(3006), - [sym_initializer_expression] = STATE(3006), - [sym_default_expression] = STATE(3006), - [sym_with_expression] = STATE(3006), - [sym_sizeof_expression] = STATE(3006), - [sym_typeof_expression] = STATE(3006), - [sym_makeref_expression] = STATE(3006), - [sym_ref_expression] = STATE(3006), - [sym_reftype_expression] = STATE(3006), - [sym_refvalue_expression] = STATE(3006), - [sym_stackalloc_expression] = STATE(3006), - [sym_range_expression] = STATE(3006), - [sym_tuple_expression] = STATE(2423), - [sym_literal] = STATE(3006), - [sym_character_literal] = STATE(3011), - [sym_string_literal] = STATE(3011), - [sym_raw_string_literal] = STATE(3011), - [sym_boolean_literal] = STATE(3011), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3006), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2901), + [sym__name] = STATE(5889), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2349), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(3564), + [sym_non_lvalue_expression] = STATE(3685), + [sym_lvalue_expression] = STATE(2985), + [sym__expression_statement_expression] = STATE(3836), + [sym_assignment_expression] = STATE(3689), + [sym_binary_expression] = STATE(3836), + [sym_postfix_unary_expression] = STATE(3689), + [sym_prefix_unary_expression] = STATE(3689), + [sym__pointer_indirection_expression] = STATE(2906), + [sym_query_expression] = STATE(3836), + [sym_from_clause] = STATE(6157), + [sym_conditional_expression] = STATE(3836), + [sym_conditional_access_expression] = STATE(3836), + [sym_as_expression] = STATE(3836), + [sym_is_expression] = STATE(3836), + [sym_is_pattern_expression] = STATE(3836), + [sym_cast_expression] = STATE(3836), + [sym_checked_expression] = STATE(3836), + [sym_invocation_expression] = STATE(3689), + [sym_switch_expression] = STATE(3836), + [sym_await_expression] = STATE(3689), + [sym_throw_expression] = STATE(3836), + [sym_element_access_expression] = STATE(2906), + [sym_interpolated_string_expression] = STATE(3836), + [sym_member_access_expression] = STATE(2906), + [sym_object_creation_expression] = STATE(3689), + [sym_parenthesized_expression] = STATE(3689), + [sym__parenthesized_lvalue_expression] = STATE(2906), + [sym_lambda_expression] = STATE(3836), + [sym__lambda_expression_init] = STATE(7485), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3836), + [sym_anonymous_method_expression] = STATE(3836), + [sym_anonymous_object_creation_expression] = STATE(3836), + [sym_implicit_array_creation_expression] = STATE(3836), + [sym_implicit_object_creation_expression] = STATE(3836), + [sym_implicit_stackalloc_expression] = STATE(3836), + [sym_initializer_expression] = STATE(3836), + [sym_default_expression] = STATE(3836), + [sym_with_expression] = STATE(3836), + [sym_sizeof_expression] = STATE(3836), + [sym_typeof_expression] = STATE(3836), + [sym_makeref_expression] = STATE(3836), + [sym_ref_expression] = STATE(3836), + [sym_reftype_expression] = STATE(3836), + [sym_refvalue_expression] = STATE(3836), + [sym_stackalloc_expression] = STATE(3836), + [sym_range_expression] = STATE(3836), + [sym_tuple_expression] = STATE(2906), + [sym_literal] = STATE(3836), + [sym_character_literal] = STATE(3843), + [sym_string_literal] = STATE(3843), + [sym_raw_string_literal] = STATE(3843), + [sym_boolean_literal] = STATE(3843), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3836), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(914), [sym_preproc_endregion] = STATE(914), [sym_preproc_line] = STATE(914), @@ -196325,47 +196211,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(914), [sym_preproc_define] = STATE(914), [sym_preproc_undef] = STATE(914), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3440), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3477), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1241), - [anon_sym_LPAREN] = ACTIONS(2281), - [anon_sym_ref] = ACTIONS(2283), - [anon_sym_LBRACE] = ACTIONS(1247), - [anon_sym_delegate] = ACTIONS(1249), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1655), + [anon_sym_LPAREN] = ACTIONS(2043), + [anon_sym_ref] = ACTIONS(2045), + [anon_sym_LBRACE] = ACTIONS(1661), + [anon_sym_delegate] = ACTIONS(1663), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(2285), + [anon_sym_new] = ACTIONS(1759), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1253), - [anon_sym_BANG] = ACTIONS(2289), - [anon_sym_TILDE] = ACTIONS(2289), - [anon_sym_PLUS_PLUS] = ACTIONS(2289), - [anon_sym_DASH_DASH] = ACTIONS(2289), - [anon_sym_true] = ACTIONS(1259), - [anon_sym_false] = ACTIONS(1259), - [anon_sym_PLUS] = ACTIONS(2287), - [anon_sym_DASH] = ACTIONS(2287), - [anon_sym_STAR] = ACTIONS(2291), - [anon_sym_CARET] = ACTIONS(2289), - [anon_sym_AMP] = ACTIONS(2289), - [anon_sym_this] = ACTIONS(1263), + [anon_sym_checked] = ACTIONS(1667), + [anon_sym_BANG] = ACTIONS(2049), + [anon_sym_TILDE] = ACTIONS(2049), + [anon_sym_PLUS_PLUS] = ACTIONS(2049), + [anon_sym_DASH_DASH] = ACTIONS(2049), + [anon_sym_true] = ACTIONS(1673), + [anon_sym_false] = ACTIONS(1673), + [anon_sym_PLUS] = ACTIONS(2047), + [anon_sym_DASH] = ACTIONS(2047), + [anon_sym_STAR] = ACTIONS(1765), + [anon_sym_CARET] = ACTIONS(2049), + [anon_sym_AMP] = ACTIONS(2049), + [anon_sym_this] = ACTIONS(1677), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1265), + [anon_sym_base] = ACTIONS(1679), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1267), - [anon_sym_unchecked] = ACTIONS(1253), + [sym_predefined_type] = ACTIONS(1681), + [anon_sym_unchecked] = ACTIONS(1667), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1269), - [anon_sym_throw] = ACTIONS(2293), + [anon_sym_default] = ACTIONS(1683), + [anon_sym_throw] = ACTIONS(2051), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2295), - [anon_sym_DOT_DOT] = ACTIONS(2297), + [anon_sym_await] = ACTIONS(2053), + [anon_sym_DOT_DOT] = ACTIONS(2055), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -196378,19 +196264,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1277), - [anon_sym_sizeof] = ACTIONS(1279), - [anon_sym_typeof] = ACTIONS(1281), - [anon_sym___makeref] = ACTIONS(1283), - [anon_sym___reftype] = ACTIONS(1285), - [anon_sym___refvalue] = ACTIONS(1287), - [sym_null_literal] = ACTIONS(1289), - [anon_sym_SQUOTE] = ACTIONS(1291), - [sym_integer_literal] = ACTIONS(1289), - [sym_real_literal] = ACTIONS(1293), - [anon_sym_DQUOTE] = ACTIONS(1295), - [sym_verbatim_string_literal] = ACTIONS(1293), - [aux_sym_preproc_if_token1] = ACTIONS(1297), + [anon_sym_stackalloc] = ACTIONS(1691), + [anon_sym_sizeof] = ACTIONS(1693), + [anon_sym_typeof] = ACTIONS(1695), + [anon_sym___makeref] = ACTIONS(1697), + [anon_sym___reftype] = ACTIONS(1699), + [anon_sym___refvalue] = ACTIONS(1701), + [sym_null_literal] = ACTIONS(1703), + [anon_sym_SQUOTE] = ACTIONS(1705), + [sym_integer_literal] = ACTIONS(1703), + [sym_real_literal] = ACTIONS(1707), + [anon_sym_DQUOTE] = ACTIONS(1709), + [sym_verbatim_string_literal] = ACTIONS(1707), + [aux_sym_preproc_if_token1] = ACTIONS(1711), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -196401,90 +196287,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1299), - [sym_interpolation_verbatim_start] = ACTIONS(1301), - [sym_interpolation_raw_start] = ACTIONS(1303), - [sym_raw_string_start] = ACTIONS(1305), + [sym_interpolation_regular_start] = ACTIONS(1713), + [sym_interpolation_verbatim_start] = ACTIONS(1715), + [sym_interpolation_raw_start] = ACTIONS(1717), + [sym_raw_string_start] = ACTIONS(1719), }, [915] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2420), - [sym__name] = STATE(5888), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2384), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(5192), - [sym_non_lvalue_expression] = STATE(3066), - [sym_lvalue_expression] = STATE(3554), - [sym__expression_statement_expression] = STATE(3006), - [sym_assignment_expression] = STATE(3020), - [sym_binary_expression] = STATE(3006), - [sym_postfix_unary_expression] = STATE(3020), - [sym_prefix_unary_expression] = STATE(3020), - [sym__pointer_indirection_expression] = STATE(2423), - [sym_query_expression] = STATE(3006), - [sym_from_clause] = STATE(6151), - [sym_conditional_expression] = STATE(3006), - [sym_conditional_access_expression] = STATE(3006), - [sym_as_expression] = STATE(3006), - [sym_is_expression] = STATE(3006), - [sym_is_pattern_expression] = STATE(3006), - [sym_cast_expression] = STATE(3006), - [sym_checked_expression] = STATE(3006), - [sym_invocation_expression] = STATE(3020), - [sym_switch_expression] = STATE(3006), - [sym_await_expression] = STATE(3020), - [sym_throw_expression] = STATE(3006), - [sym_element_access_expression] = STATE(2423), - [sym_interpolated_string_expression] = STATE(3006), - [sym_member_access_expression] = STATE(2423), - [sym_object_creation_expression] = STATE(3020), - [sym_parenthesized_expression] = STATE(3020), - [sym__parenthesized_lvalue_expression] = STATE(2423), - [sym_lambda_expression] = STATE(3006), - [sym__lambda_expression_init] = STATE(7640), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3006), - [sym_anonymous_method_expression] = STATE(3006), - [sym_anonymous_object_creation_expression] = STATE(3006), - [sym_implicit_array_creation_expression] = STATE(3006), - [sym_implicit_object_creation_expression] = STATE(3006), - [sym_implicit_stackalloc_expression] = STATE(3006), - [sym_initializer_expression] = STATE(3006), - [sym_default_expression] = STATE(3006), - [sym_with_expression] = STATE(3006), - [sym_sizeof_expression] = STATE(3006), - [sym_typeof_expression] = STATE(3006), - [sym_makeref_expression] = STATE(3006), - [sym_ref_expression] = STATE(3006), - [sym_reftype_expression] = STATE(3006), - [sym_refvalue_expression] = STATE(3006), - [sym_stackalloc_expression] = STATE(3006), - [sym_range_expression] = STATE(3006), - [sym_tuple_expression] = STATE(2423), - [sym_literal] = STATE(3006), - [sym_character_literal] = STATE(3011), - [sym_string_literal] = STATE(3011), - [sym_raw_string_literal] = STATE(3011), - [sym_boolean_literal] = STATE(3011), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3006), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2603), + [sym__name] = STATE(5894), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2193), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(4232), + [sym_non_lvalue_expression] = STATE(3220), + [sym_lvalue_expression] = STATE(3126), + [sym__expression_statement_expression] = STATE(3236), + [sym_assignment_expression] = STATE(3221), + [sym_binary_expression] = STATE(3236), + [sym_postfix_unary_expression] = STATE(3221), + [sym_prefix_unary_expression] = STATE(3221), + [sym__pointer_indirection_expression] = STATE(2602), + [sym_query_expression] = STATE(3236), + [sym_from_clause] = STATE(6165), + [sym_conditional_expression] = STATE(3236), + [sym_conditional_access_expression] = STATE(3236), + [sym_as_expression] = STATE(3236), + [sym_is_expression] = STATE(3236), + [sym_is_pattern_expression] = STATE(3236), + [sym_cast_expression] = STATE(3236), + [sym_checked_expression] = STATE(3236), + [sym_invocation_expression] = STATE(3221), + [sym_switch_expression] = STATE(3236), + [sym_await_expression] = STATE(3221), + [sym_throw_expression] = STATE(3236), + [sym_element_access_expression] = STATE(2602), + [sym_interpolated_string_expression] = STATE(3236), + [sym_member_access_expression] = STATE(2602), + [sym_object_creation_expression] = STATE(3221), + [sym_parenthesized_expression] = STATE(3221), + [sym__parenthesized_lvalue_expression] = STATE(2602), + [sym_lambda_expression] = STATE(3236), + [sym__lambda_expression_init] = STATE(7487), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3236), + [sym_anonymous_method_expression] = STATE(3236), + [sym_anonymous_object_creation_expression] = STATE(3236), + [sym_implicit_array_creation_expression] = STATE(3236), + [sym_implicit_object_creation_expression] = STATE(3236), + [sym_implicit_stackalloc_expression] = STATE(3236), + [sym_initializer_expression] = STATE(3236), + [sym_default_expression] = STATE(3236), + [sym_with_expression] = STATE(3236), + [sym_sizeof_expression] = STATE(3236), + [sym_typeof_expression] = STATE(3236), + [sym_makeref_expression] = STATE(3236), + [sym_ref_expression] = STATE(3236), + [sym_reftype_expression] = STATE(3236), + [sym_refvalue_expression] = STATE(3236), + [sym_stackalloc_expression] = STATE(3236), + [sym_range_expression] = STATE(3236), + [sym_tuple_expression] = STATE(2602), + [sym_literal] = STATE(3236), + [sym_character_literal] = STATE(3272), + [sym_string_literal] = STATE(3272), + [sym_raw_string_literal] = STATE(3272), + [sym_boolean_literal] = STATE(3272), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3236), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(915), [sym_preproc_endregion] = STATE(915), [sym_preproc_line] = STATE(915), @@ -196494,47 +196380,47 @@ 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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3440), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3379), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1241), - [anon_sym_LPAREN] = ACTIONS(2281), - [anon_sym_ref] = ACTIONS(2283), - [anon_sym_LBRACE] = ACTIONS(1247), - [anon_sym_delegate] = ACTIONS(1249), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1149), + [anon_sym_LPAREN] = ACTIONS(1341), + [anon_sym_ref] = ACTIONS(1343), + [anon_sym_LBRACE] = ACTIONS(1155), + [anon_sym_delegate] = ACTIONS(1157), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(2285), + [anon_sym_new] = ACTIONS(1159), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1253), - [anon_sym_BANG] = ACTIONS(2289), - [anon_sym_TILDE] = ACTIONS(2289), - [anon_sym_PLUS_PLUS] = ACTIONS(2289), - [anon_sym_DASH_DASH] = ACTIONS(2289), - [anon_sym_true] = ACTIONS(1259), - [anon_sym_false] = ACTIONS(1259), - [anon_sym_PLUS] = ACTIONS(2287), - [anon_sym_DASH] = ACTIONS(2287), - [anon_sym_STAR] = ACTIONS(2291), - [anon_sym_CARET] = ACTIONS(2289), - [anon_sym_AMP] = ACTIONS(2289), - [anon_sym_this] = ACTIONS(1263), + [anon_sym_checked] = ACTIONS(1163), + [anon_sym_BANG] = ACTIONS(1347), + [anon_sym_TILDE] = ACTIONS(1347), + [anon_sym_PLUS_PLUS] = ACTIONS(1347), + [anon_sym_DASH_DASH] = ACTIONS(1347), + [anon_sym_true] = ACTIONS(1169), + [anon_sym_false] = ACTIONS(1169), + [anon_sym_PLUS] = ACTIONS(1345), + [anon_sym_DASH] = ACTIONS(1345), + [anon_sym_STAR] = ACTIONS(1349), + [anon_sym_CARET] = ACTIONS(1347), + [anon_sym_AMP] = ACTIONS(1347), + [anon_sym_this] = ACTIONS(1173), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1265), + [anon_sym_base] = ACTIONS(1175), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1267), - [anon_sym_unchecked] = ACTIONS(1253), + [sym_predefined_type] = ACTIONS(1177), + [anon_sym_unchecked] = ACTIONS(1163), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1269), - [anon_sym_throw] = ACTIONS(2293), + [anon_sym_default] = ACTIONS(1179), + [anon_sym_throw] = ACTIONS(1351), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2295), - [anon_sym_DOT_DOT] = ACTIONS(2297), + [anon_sym_await] = ACTIONS(1353), + [anon_sym_DOT_DOT] = ACTIONS(1355), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -196547,19 +196433,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1277), - [anon_sym_sizeof] = ACTIONS(1279), - [anon_sym_typeof] = ACTIONS(1281), - [anon_sym___makeref] = ACTIONS(1283), - [anon_sym___reftype] = ACTIONS(1285), - [anon_sym___refvalue] = ACTIONS(1287), - [sym_null_literal] = ACTIONS(1289), - [anon_sym_SQUOTE] = ACTIONS(1291), - [sym_integer_literal] = ACTIONS(1289), - [sym_real_literal] = ACTIONS(1293), - [anon_sym_DQUOTE] = ACTIONS(1295), - [sym_verbatim_string_literal] = ACTIONS(1293), - [aux_sym_preproc_if_token1] = ACTIONS(1297), + [anon_sym_stackalloc] = ACTIONS(1187), + [anon_sym_sizeof] = ACTIONS(1189), + [anon_sym_typeof] = ACTIONS(1191), + [anon_sym___makeref] = ACTIONS(1193), + [anon_sym___reftype] = ACTIONS(1195), + [anon_sym___refvalue] = ACTIONS(1197), + [sym_null_literal] = ACTIONS(1199), + [anon_sym_SQUOTE] = ACTIONS(1201), + [sym_integer_literal] = ACTIONS(1199), + [sym_real_literal] = ACTIONS(1203), + [anon_sym_DQUOTE] = ACTIONS(1205), + [sym_verbatim_string_literal] = ACTIONS(1203), + [aux_sym_preproc_if_token1] = ACTIONS(1207), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -196570,90 +196456,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1299), - [sym_interpolation_verbatim_start] = ACTIONS(1301), - [sym_interpolation_raw_start] = ACTIONS(1303), - [sym_raw_string_start] = ACTIONS(1305), + [sym_interpolation_regular_start] = ACTIONS(1209), + [sym_interpolation_verbatim_start] = ACTIONS(1211), + [sym_interpolation_raw_start] = ACTIONS(1213), + [sym_raw_string_start] = ACTIONS(1215), }, [916] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2420), - [sym__name] = STATE(5888), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2384), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(5235), - [sym_non_lvalue_expression] = STATE(3066), - [sym_lvalue_expression] = STATE(3554), - [sym__expression_statement_expression] = STATE(3006), - [sym_assignment_expression] = STATE(3020), - [sym_binary_expression] = STATE(3006), - [sym_postfix_unary_expression] = STATE(3020), - [sym_prefix_unary_expression] = STATE(3020), - [sym__pointer_indirection_expression] = STATE(2423), - [sym_query_expression] = STATE(3006), - [sym_from_clause] = STATE(6151), - [sym_conditional_expression] = STATE(3006), - [sym_conditional_access_expression] = STATE(3006), - [sym_as_expression] = STATE(3006), - [sym_is_expression] = STATE(3006), - [sym_is_pattern_expression] = STATE(3006), - [sym_cast_expression] = STATE(3006), - [sym_checked_expression] = STATE(3006), - [sym_invocation_expression] = STATE(3020), - [sym_switch_expression] = STATE(3006), - [sym_await_expression] = STATE(3020), - [sym_throw_expression] = STATE(3006), - [sym_element_access_expression] = STATE(2423), - [sym_interpolated_string_expression] = STATE(3006), - [sym_member_access_expression] = STATE(2423), - [sym_object_creation_expression] = STATE(3020), - [sym_parenthesized_expression] = STATE(3020), - [sym__parenthesized_lvalue_expression] = STATE(2423), - [sym_lambda_expression] = STATE(3006), - [sym__lambda_expression_init] = STATE(7640), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3006), - [sym_anonymous_method_expression] = STATE(3006), - [sym_anonymous_object_creation_expression] = STATE(3006), - [sym_implicit_array_creation_expression] = STATE(3006), - [sym_implicit_object_creation_expression] = STATE(3006), - [sym_implicit_stackalloc_expression] = STATE(3006), - [sym_initializer_expression] = STATE(3006), - [sym_default_expression] = STATE(3006), - [sym_with_expression] = STATE(3006), - [sym_sizeof_expression] = STATE(3006), - [sym_typeof_expression] = STATE(3006), - [sym_makeref_expression] = STATE(3006), - [sym_ref_expression] = STATE(3006), - [sym_reftype_expression] = STATE(3006), - [sym_refvalue_expression] = STATE(3006), - [sym_stackalloc_expression] = STATE(3006), - [sym_range_expression] = STATE(3006), - [sym_tuple_expression] = STATE(2423), - [sym_literal] = STATE(3006), - [sym_character_literal] = STATE(3011), - [sym_string_literal] = STATE(3011), - [sym_raw_string_literal] = STATE(3011), - [sym_boolean_literal] = STATE(3011), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3006), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2416), + [sym__name] = STATE(5900), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2193), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(4401), + [sym_non_lvalue_expression] = STATE(3040), + [sym_lvalue_expression] = STATE(3231), + [sym__expression_statement_expression] = STATE(3035), + [sym_assignment_expression] = STATE(3043), + [sym_binary_expression] = STATE(3035), + [sym_postfix_unary_expression] = STATE(3043), + [sym_prefix_unary_expression] = STATE(3043), + [sym__pointer_indirection_expression] = STATE(2415), + [sym_query_expression] = STATE(3035), + [sym_from_clause] = STATE(6149), + [sym_conditional_expression] = STATE(3035), + [sym_conditional_access_expression] = STATE(3035), + [sym_as_expression] = STATE(3035), + [sym_is_expression] = STATE(3035), + [sym_is_pattern_expression] = STATE(3035), + [sym_cast_expression] = STATE(3035), + [sym_checked_expression] = STATE(3035), + [sym_invocation_expression] = STATE(3043), + [sym_switch_expression] = STATE(3035), + [sym_await_expression] = STATE(3043), + [sym_throw_expression] = STATE(3035), + [sym_element_access_expression] = STATE(2415), + [sym_interpolated_string_expression] = STATE(3035), + [sym_member_access_expression] = STATE(2415), + [sym_object_creation_expression] = STATE(3043), + [sym_parenthesized_expression] = STATE(3043), + [sym__parenthesized_lvalue_expression] = STATE(2415), + [sym_lambda_expression] = STATE(3035), + [sym__lambda_expression_init] = STATE(7405), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3035), + [sym_anonymous_method_expression] = STATE(3035), + [sym_anonymous_object_creation_expression] = STATE(3035), + [sym_implicit_array_creation_expression] = STATE(3035), + [sym_implicit_object_creation_expression] = STATE(3035), + [sym_implicit_stackalloc_expression] = STATE(3035), + [sym_initializer_expression] = STATE(3035), + [sym_default_expression] = STATE(3035), + [sym_with_expression] = STATE(3035), + [sym_sizeof_expression] = STATE(3035), + [sym_typeof_expression] = STATE(3035), + [sym_makeref_expression] = STATE(3035), + [sym_ref_expression] = STATE(3035), + [sym_reftype_expression] = STATE(3035), + [sym_refvalue_expression] = STATE(3035), + [sym_stackalloc_expression] = STATE(3035), + [sym_range_expression] = STATE(3035), + [sym_tuple_expression] = STATE(2415), + [sym_literal] = STATE(3035), + [sym_character_literal] = STATE(3037), + [sym_string_literal] = STATE(3037), + [sym_raw_string_literal] = STATE(3037), + [sym_boolean_literal] = STATE(3037), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3035), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(916), [sym_preproc_endregion] = STATE(916), [sym_preproc_line] = STATE(916), @@ -196663,47 +196549,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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3440), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3455), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1241), - [anon_sym_LPAREN] = ACTIONS(2281), - [anon_sym_ref] = ACTIONS(2283), - [anon_sym_LBRACE] = ACTIONS(1247), - [anon_sym_delegate] = ACTIONS(1249), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1239), + [anon_sym_LPAREN] = ACTIONS(1495), + [anon_sym_ref] = ACTIONS(1497), + [anon_sym_LBRACE] = ACTIONS(1245), + [anon_sym_delegate] = ACTIONS(1247), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(2285), + [anon_sym_new] = ACTIONS(1249), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1253), - [anon_sym_BANG] = ACTIONS(2289), - [anon_sym_TILDE] = ACTIONS(2289), - [anon_sym_PLUS_PLUS] = ACTIONS(2289), - [anon_sym_DASH_DASH] = ACTIONS(2289), - [anon_sym_true] = ACTIONS(1259), - [anon_sym_false] = ACTIONS(1259), - [anon_sym_PLUS] = ACTIONS(2287), - [anon_sym_DASH] = ACTIONS(2287), - [anon_sym_STAR] = ACTIONS(2291), - [anon_sym_CARET] = ACTIONS(2289), - [anon_sym_AMP] = ACTIONS(2289), - [anon_sym_this] = ACTIONS(1263), + [anon_sym_checked] = ACTIONS(1251), + [anon_sym_BANG] = ACTIONS(1501), + [anon_sym_TILDE] = ACTIONS(1501), + [anon_sym_PLUS_PLUS] = ACTIONS(1501), + [anon_sym_DASH_DASH] = ACTIONS(1501), + [anon_sym_true] = ACTIONS(1257), + [anon_sym_false] = ACTIONS(1257), + [anon_sym_PLUS] = ACTIONS(1499), + [anon_sym_DASH] = ACTIONS(1499), + [anon_sym_STAR] = ACTIONS(1503), + [anon_sym_CARET] = ACTIONS(1501), + [anon_sym_AMP] = ACTIONS(1501), + [anon_sym_this] = ACTIONS(1261), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1265), + [anon_sym_base] = ACTIONS(1263), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1267), - [anon_sym_unchecked] = ACTIONS(1253), + [sym_predefined_type] = ACTIONS(1265), + [anon_sym_unchecked] = ACTIONS(1251), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1269), - [anon_sym_throw] = ACTIONS(2293), + [anon_sym_default] = ACTIONS(1267), + [anon_sym_throw] = ACTIONS(1505), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2295), - [anon_sym_DOT_DOT] = ACTIONS(2297), + [anon_sym_await] = ACTIONS(1507), + [anon_sym_DOT_DOT] = ACTIONS(1509), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -196716,19 +196602,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1277), - [anon_sym_sizeof] = ACTIONS(1279), - [anon_sym_typeof] = ACTIONS(1281), - [anon_sym___makeref] = ACTIONS(1283), - [anon_sym___reftype] = ACTIONS(1285), - [anon_sym___refvalue] = ACTIONS(1287), - [sym_null_literal] = ACTIONS(1289), - [anon_sym_SQUOTE] = ACTIONS(1291), - [sym_integer_literal] = ACTIONS(1289), - [sym_real_literal] = ACTIONS(1293), - [anon_sym_DQUOTE] = ACTIONS(1295), - [sym_verbatim_string_literal] = ACTIONS(1293), - [aux_sym_preproc_if_token1] = ACTIONS(1297), + [anon_sym_stackalloc] = ACTIONS(1275), + [anon_sym_sizeof] = ACTIONS(1277), + [anon_sym_typeof] = ACTIONS(1279), + [anon_sym___makeref] = ACTIONS(1281), + [anon_sym___reftype] = ACTIONS(1283), + [anon_sym___refvalue] = ACTIONS(1285), + [sym_null_literal] = ACTIONS(1287), + [anon_sym_SQUOTE] = ACTIONS(1289), + [sym_integer_literal] = ACTIONS(1287), + [sym_real_literal] = ACTIONS(1291), + [anon_sym_DQUOTE] = ACTIONS(1293), + [sym_verbatim_string_literal] = ACTIONS(1291), + [aux_sym_preproc_if_token1] = ACTIONS(1295), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -196739,90 +196625,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1299), - [sym_interpolation_verbatim_start] = ACTIONS(1301), - [sym_interpolation_raw_start] = ACTIONS(1303), - [sym_raw_string_start] = ACTIONS(1305), + [sym_interpolation_regular_start] = ACTIONS(1297), + [sym_interpolation_verbatim_start] = ACTIONS(1299), + [sym_interpolation_raw_start] = ACTIONS(1301), + [sym_raw_string_start] = ACTIONS(1303), }, [917] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2420), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(3182), [sym__name] = STATE(5888), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2384), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(5255), - [sym_non_lvalue_expression] = STATE(3066), - [sym_lvalue_expression] = STATE(3554), - [sym__expression_statement_expression] = STATE(3006), - [sym_assignment_expression] = STATE(3020), - [sym_binary_expression] = STATE(3006), - [sym_postfix_unary_expression] = STATE(3020), - [sym_prefix_unary_expression] = STATE(3020), - [sym__pointer_indirection_expression] = STATE(2423), - [sym_query_expression] = STATE(3006), - [sym_from_clause] = STATE(6151), - [sym_conditional_expression] = STATE(3006), - [sym_conditional_access_expression] = STATE(3006), - [sym_as_expression] = STATE(3006), - [sym_is_expression] = STATE(3006), - [sym_is_pattern_expression] = STATE(3006), - [sym_cast_expression] = STATE(3006), - [sym_checked_expression] = STATE(3006), - [sym_invocation_expression] = STATE(3020), - [sym_switch_expression] = STATE(3006), - [sym_await_expression] = STATE(3020), - [sym_throw_expression] = STATE(3006), - [sym_element_access_expression] = STATE(2423), - [sym_interpolated_string_expression] = STATE(3006), - [sym_member_access_expression] = STATE(2423), - [sym_object_creation_expression] = STATE(3020), - [sym_parenthesized_expression] = STATE(3020), - [sym__parenthesized_lvalue_expression] = STATE(2423), - [sym_lambda_expression] = STATE(3006), - [sym__lambda_expression_init] = STATE(7640), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3006), - [sym_anonymous_method_expression] = STATE(3006), - [sym_anonymous_object_creation_expression] = STATE(3006), - [sym_implicit_array_creation_expression] = STATE(3006), - [sym_implicit_object_creation_expression] = STATE(3006), - [sym_implicit_stackalloc_expression] = STATE(3006), - [sym_initializer_expression] = STATE(3006), - [sym_default_expression] = STATE(3006), - [sym_with_expression] = STATE(3006), - [sym_sizeof_expression] = STATE(3006), - [sym_typeof_expression] = STATE(3006), - [sym_makeref_expression] = STATE(3006), - [sym_ref_expression] = STATE(3006), - [sym_reftype_expression] = STATE(3006), - [sym_refvalue_expression] = STATE(3006), - [sym_stackalloc_expression] = STATE(3006), - [sym_range_expression] = STATE(3006), - [sym_tuple_expression] = STATE(2423), - [sym_literal] = STATE(3006), - [sym_character_literal] = STATE(3011), - [sym_string_literal] = STATE(3011), - [sym_raw_string_literal] = STATE(3011), - [sym_boolean_literal] = STATE(3011), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3006), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2286), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2262), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(4681), + [sym_non_lvalue_expression] = STATE(4580), + [sym_lvalue_expression] = STATE(3373), + [sym__expression_statement_expression] = STATE(4573), + [sym_assignment_expression] = STATE(4581), + [sym_binary_expression] = STATE(4573), + [sym_postfix_unary_expression] = STATE(4581), + [sym_prefix_unary_expression] = STATE(4581), + [sym__pointer_indirection_expression] = STATE(3144), + [sym_query_expression] = STATE(4573), + [sym_from_clause] = STATE(6133), + [sym_conditional_expression] = STATE(4573), + [sym_conditional_access_expression] = STATE(4573), + [sym_as_expression] = STATE(4573), + [sym_is_expression] = STATE(4573), + [sym_is_pattern_expression] = STATE(4573), + [sym_cast_expression] = STATE(4573), + [sym_checked_expression] = STATE(4573), + [sym_invocation_expression] = STATE(4581), + [sym_switch_expression] = STATE(4573), + [sym_await_expression] = STATE(4581), + [sym_throw_expression] = STATE(4573), + [sym_element_access_expression] = STATE(3144), + [sym_interpolated_string_expression] = STATE(4573), + [sym_member_access_expression] = STATE(3144), + [sym_object_creation_expression] = STATE(4581), + [sym_parenthesized_expression] = STATE(4581), + [sym__parenthesized_lvalue_expression] = STATE(3144), + [sym_lambda_expression] = STATE(4573), + [sym__lambda_expression_init] = STATE(7614), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(4573), + [sym_anonymous_method_expression] = STATE(4573), + [sym_anonymous_object_creation_expression] = STATE(4573), + [sym_implicit_array_creation_expression] = STATE(4573), + [sym_implicit_object_creation_expression] = STATE(4573), + [sym_implicit_stackalloc_expression] = STATE(4573), + [sym_initializer_expression] = STATE(4573), + [sym_default_expression] = STATE(4573), + [sym_with_expression] = STATE(4573), + [sym_sizeof_expression] = STATE(4573), + [sym_typeof_expression] = STATE(4573), + [sym_makeref_expression] = STATE(4573), + [sym_ref_expression] = STATE(4573), + [sym_reftype_expression] = STATE(4573), + [sym_refvalue_expression] = STATE(4573), + [sym_stackalloc_expression] = STATE(4573), + [sym_range_expression] = STATE(4573), + [sym_tuple_expression] = STATE(3144), + [sym_literal] = STATE(4573), + [sym_character_literal] = STATE(4575), + [sym_string_literal] = STATE(4575), + [sym_raw_string_literal] = STATE(4575), + [sym_boolean_literal] = STATE(4575), + [sym_identifier] = STATE(2237), + [sym__reserved_identifier] = STATE(2229), + [sym_preproc_if_in_expression] = STATE(4573), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(917), [sym_preproc_endregion] = STATE(917), [sym_preproc_line] = STATE(917), @@ -196832,166 +196718,166 @@ 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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3440), - [sym__identifier_token] = ACTIONS(25), - [anon_sym_alias] = ACTIONS(29), - [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1241), - [anon_sym_LPAREN] = ACTIONS(2281), - [anon_sym_ref] = ACTIONS(2283), - [anon_sym_LBRACE] = ACTIONS(1247), - [anon_sym_delegate] = ACTIONS(1249), - [anon_sym_async] = ACTIONS(1047), - [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(2285), - [anon_sym_where] = ACTIONS(29), - [anon_sym_notnull] = ACTIONS(29), - [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1253), - [anon_sym_BANG] = ACTIONS(2289), - [anon_sym_TILDE] = ACTIONS(2289), - [anon_sym_PLUS_PLUS] = ACTIONS(2289), - [anon_sym_DASH_DASH] = ACTIONS(2289), - [anon_sym_true] = ACTIONS(1259), - [anon_sym_false] = ACTIONS(1259), - [anon_sym_PLUS] = ACTIONS(2287), - [anon_sym_DASH] = ACTIONS(2287), - [anon_sym_STAR] = ACTIONS(2291), - [anon_sym_CARET] = ACTIONS(2289), - [anon_sym_AMP] = ACTIONS(2289), - [anon_sym_this] = ACTIONS(1263), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1265), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1267), - [anon_sym_unchecked] = ACTIONS(1253), - [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1269), - [anon_sym_throw] = ACTIONS(2293), - [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2295), - [anon_sym_DOT_DOT] = ACTIONS(2297), - [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(1277), - [anon_sym_sizeof] = ACTIONS(1279), - [anon_sym_typeof] = ACTIONS(1281), - [anon_sym___makeref] = ACTIONS(1283), - [anon_sym___reftype] = ACTIONS(1285), - [anon_sym___refvalue] = ACTIONS(1287), - [sym_null_literal] = ACTIONS(1289), - [anon_sym_SQUOTE] = ACTIONS(1291), - [sym_integer_literal] = ACTIONS(1289), - [sym_real_literal] = ACTIONS(1293), - [anon_sym_DQUOTE] = ACTIONS(1295), - [sym_verbatim_string_literal] = ACTIONS(1293), - [aux_sym_preproc_if_token1] = ACTIONS(1297), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1299), - [sym_interpolation_verbatim_start] = ACTIONS(1301), - [sym_interpolation_raw_start] = ACTIONS(1303), - [sym_raw_string_start] = ACTIONS(1305), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3501), + [sym__identifier_token] = ACTIONS(1385), + [anon_sym_alias] = ACTIONS(1387), + [anon_sym_global] = ACTIONS(1387), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1389), + [anon_sym_LPAREN] = ACTIONS(1565), + [anon_sym_ref] = ACTIONS(1567), + [anon_sym_LBRACE] = ACTIONS(1395), + [anon_sym_delegate] = ACTIONS(1397), + [anon_sym_async] = ACTIONS(1045), + [anon_sym_file] = ACTIONS(1387), + [anon_sym_new] = ACTIONS(1399), + [anon_sym_where] = ACTIONS(1387), + [anon_sym_notnull] = ACTIONS(1387), + [anon_sym_unmanaged] = ACTIONS(1387), + [anon_sym_checked] = ACTIONS(1401), + [anon_sym_BANG] = ACTIONS(1571), + [anon_sym_TILDE] = ACTIONS(1571), + [anon_sym_PLUS_PLUS] = ACTIONS(1571), + [anon_sym_DASH_DASH] = ACTIONS(1571), + [anon_sym_true] = ACTIONS(1407), + [anon_sym_false] = ACTIONS(1407), + [anon_sym_PLUS] = ACTIONS(1569), + [anon_sym_DASH] = ACTIONS(1569), + [anon_sym_STAR] = ACTIONS(1409), + [anon_sym_CARET] = ACTIONS(1571), + [anon_sym_AMP] = ACTIONS(1571), + [anon_sym_this] = ACTIONS(1411), + [anon_sym_scoped] = ACTIONS(1413), + [anon_sym_base] = ACTIONS(1415), + [anon_sym_var] = ACTIONS(1417), + [sym_predefined_type] = ACTIONS(1419), + [anon_sym_unchecked] = ACTIONS(1401), + [anon_sym_yield] = ACTIONS(1387), + [anon_sym_default] = ACTIONS(1421), + [anon_sym_throw] = ACTIONS(1573), + [anon_sym_when] = ACTIONS(1387), + [anon_sym_await] = ACTIONS(1575), + [anon_sym_DOT_DOT] = ACTIONS(1577), + [anon_sym_from] = ACTIONS(1429), + [anon_sym_into] = ACTIONS(1387), + [anon_sym_join] = ACTIONS(1387), + [anon_sym_on] = ACTIONS(1387), + [anon_sym_equals] = ACTIONS(1387), + [anon_sym_let] = ACTIONS(1387), + [anon_sym_orderby] = ACTIONS(1387), + [anon_sym_ascending] = ACTIONS(1387), + [anon_sym_descending] = ACTIONS(1387), + [anon_sym_group] = ACTIONS(1387), + [anon_sym_by] = ACTIONS(1387), + [anon_sym_select] = ACTIONS(1387), + [anon_sym_stackalloc] = ACTIONS(1431), + [anon_sym_sizeof] = ACTIONS(1433), + [anon_sym_typeof] = ACTIONS(1435), + [anon_sym___makeref] = ACTIONS(1437), + [anon_sym___reftype] = ACTIONS(1439), + [anon_sym___refvalue] = ACTIONS(1441), + [sym_null_literal] = ACTIONS(1443), + [anon_sym_SQUOTE] = ACTIONS(1445), + [sym_integer_literal] = ACTIONS(1443), + [sym_real_literal] = ACTIONS(1447), + [anon_sym_DQUOTE] = ACTIONS(1449), + [sym_verbatim_string_literal] = ACTIONS(1447), + [aux_sym_preproc_if_token1] = ACTIONS(1451), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + [sym_interpolation_regular_start] = ACTIONS(1453), + [sym_interpolation_verbatim_start] = ACTIONS(1455), + [sym_interpolation_raw_start] = ACTIONS(1457), + [sym_raw_string_start] = ACTIONS(1459), }, [918] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2420), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(3182), [sym__name] = STATE(5888), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2384), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(5285), - [sym_non_lvalue_expression] = STATE(3066), - [sym_lvalue_expression] = STATE(3554), - [sym__expression_statement_expression] = STATE(3006), - [sym_assignment_expression] = STATE(3020), - [sym_binary_expression] = STATE(3006), - [sym_postfix_unary_expression] = STATE(3020), - [sym_prefix_unary_expression] = STATE(3020), - [sym__pointer_indirection_expression] = STATE(2423), - [sym_query_expression] = STATE(3006), - [sym_from_clause] = STATE(6151), - [sym_conditional_expression] = STATE(3006), - [sym_conditional_access_expression] = STATE(3006), - [sym_as_expression] = STATE(3006), - [sym_is_expression] = STATE(3006), - [sym_is_pattern_expression] = STATE(3006), - [sym_cast_expression] = STATE(3006), - [sym_checked_expression] = STATE(3006), - [sym_invocation_expression] = STATE(3020), - [sym_switch_expression] = STATE(3006), - [sym_await_expression] = STATE(3020), - [sym_throw_expression] = STATE(3006), - [sym_element_access_expression] = STATE(2423), - [sym_interpolated_string_expression] = STATE(3006), - [sym_member_access_expression] = STATE(2423), - [sym_object_creation_expression] = STATE(3020), - [sym_parenthesized_expression] = STATE(3020), - [sym__parenthesized_lvalue_expression] = STATE(2423), - [sym_lambda_expression] = STATE(3006), - [sym__lambda_expression_init] = STATE(7640), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3006), - [sym_anonymous_method_expression] = STATE(3006), - [sym_anonymous_object_creation_expression] = STATE(3006), - [sym_implicit_array_creation_expression] = STATE(3006), - [sym_implicit_object_creation_expression] = STATE(3006), - [sym_implicit_stackalloc_expression] = STATE(3006), - [sym_initializer_expression] = STATE(3006), - [sym_default_expression] = STATE(3006), - [sym_with_expression] = STATE(3006), - [sym_sizeof_expression] = STATE(3006), - [sym_typeof_expression] = STATE(3006), - [sym_makeref_expression] = STATE(3006), - [sym_ref_expression] = STATE(3006), - [sym_reftype_expression] = STATE(3006), - [sym_refvalue_expression] = STATE(3006), - [sym_stackalloc_expression] = STATE(3006), - [sym_range_expression] = STATE(3006), - [sym_tuple_expression] = STATE(2423), - [sym_literal] = STATE(3006), - [sym_character_literal] = STATE(3011), - [sym_string_literal] = STATE(3011), - [sym_raw_string_literal] = STATE(3011), - [sym_boolean_literal] = STATE(3011), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3006), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2286), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2262), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(4270), + [sym_non_lvalue_expression] = STATE(4580), + [sym_lvalue_expression] = STATE(3373), + [sym__expression_statement_expression] = STATE(4573), + [sym_assignment_expression] = STATE(4581), + [sym_binary_expression] = STATE(4573), + [sym_postfix_unary_expression] = STATE(4581), + [sym_prefix_unary_expression] = STATE(4581), + [sym__pointer_indirection_expression] = STATE(3144), + [sym_query_expression] = STATE(4573), + [sym_from_clause] = STATE(6133), + [sym_conditional_expression] = STATE(4573), + [sym_conditional_access_expression] = STATE(4573), + [sym_as_expression] = STATE(4573), + [sym_is_expression] = STATE(4573), + [sym_is_pattern_expression] = STATE(4573), + [sym_cast_expression] = STATE(4573), + [sym_checked_expression] = STATE(4573), + [sym_invocation_expression] = STATE(4581), + [sym_switch_expression] = STATE(4573), + [sym_await_expression] = STATE(4581), + [sym_throw_expression] = STATE(4573), + [sym_element_access_expression] = STATE(3144), + [sym_interpolated_string_expression] = STATE(4573), + [sym_member_access_expression] = STATE(3144), + [sym_object_creation_expression] = STATE(4581), + [sym_parenthesized_expression] = STATE(4581), + [sym__parenthesized_lvalue_expression] = STATE(3144), + [sym_lambda_expression] = STATE(4573), + [sym__lambda_expression_init] = STATE(7614), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(4573), + [sym_anonymous_method_expression] = STATE(4573), + [sym_anonymous_object_creation_expression] = STATE(4573), + [sym_implicit_array_creation_expression] = STATE(4573), + [sym_implicit_object_creation_expression] = STATE(4573), + [sym_implicit_stackalloc_expression] = STATE(4573), + [sym_initializer_expression] = STATE(4573), + [sym_default_expression] = STATE(4573), + [sym_with_expression] = STATE(4573), + [sym_sizeof_expression] = STATE(4573), + [sym_typeof_expression] = STATE(4573), + [sym_makeref_expression] = STATE(4573), + [sym_ref_expression] = STATE(4573), + [sym_reftype_expression] = STATE(4573), + [sym_refvalue_expression] = STATE(4573), + [sym_stackalloc_expression] = STATE(4573), + [sym_range_expression] = STATE(4573), + [sym_tuple_expression] = STATE(3144), + [sym_literal] = STATE(4573), + [sym_character_literal] = STATE(4575), + [sym_string_literal] = STATE(4575), + [sym_raw_string_literal] = STATE(4575), + [sym_boolean_literal] = STATE(4575), + [sym_identifier] = STATE(2237), + [sym__reserved_identifier] = STATE(2229), + [sym_preproc_if_in_expression] = STATE(4573), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(918), [sym_preproc_endregion] = STATE(918), [sym_preproc_line] = STATE(918), @@ -197001,166 +196887,166 @@ 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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3440), - [sym__identifier_token] = ACTIONS(25), - [anon_sym_alias] = ACTIONS(29), - [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1241), - [anon_sym_LPAREN] = ACTIONS(2281), - [anon_sym_ref] = ACTIONS(2283), - [anon_sym_LBRACE] = ACTIONS(1247), - [anon_sym_delegate] = ACTIONS(1249), - [anon_sym_async] = ACTIONS(1047), - [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(2285), - [anon_sym_where] = ACTIONS(29), - [anon_sym_notnull] = ACTIONS(29), - [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1253), - [anon_sym_BANG] = ACTIONS(2289), - [anon_sym_TILDE] = ACTIONS(2289), - [anon_sym_PLUS_PLUS] = ACTIONS(2289), - [anon_sym_DASH_DASH] = ACTIONS(2289), - [anon_sym_true] = ACTIONS(1259), - [anon_sym_false] = ACTIONS(1259), - [anon_sym_PLUS] = ACTIONS(2287), - [anon_sym_DASH] = ACTIONS(2287), - [anon_sym_STAR] = ACTIONS(2291), - [anon_sym_CARET] = ACTIONS(2289), - [anon_sym_AMP] = ACTIONS(2289), - [anon_sym_this] = ACTIONS(1263), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1265), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1267), - [anon_sym_unchecked] = ACTIONS(1253), - [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1269), - [anon_sym_throw] = ACTIONS(2293), - [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2295), - [anon_sym_DOT_DOT] = ACTIONS(2297), - [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(1277), - [anon_sym_sizeof] = ACTIONS(1279), - [anon_sym_typeof] = ACTIONS(1281), - [anon_sym___makeref] = ACTIONS(1283), - [anon_sym___reftype] = ACTIONS(1285), - [anon_sym___refvalue] = ACTIONS(1287), - [sym_null_literal] = ACTIONS(1289), - [anon_sym_SQUOTE] = ACTIONS(1291), - [sym_integer_literal] = ACTIONS(1289), - [sym_real_literal] = ACTIONS(1293), - [anon_sym_DQUOTE] = ACTIONS(1295), - [sym_verbatim_string_literal] = ACTIONS(1293), - [aux_sym_preproc_if_token1] = ACTIONS(1297), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1299), - [sym_interpolation_verbatim_start] = ACTIONS(1301), - [sym_interpolation_raw_start] = ACTIONS(1303), - [sym_raw_string_start] = ACTIONS(1305), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3501), + [sym__identifier_token] = ACTIONS(1385), + [anon_sym_alias] = ACTIONS(1387), + [anon_sym_global] = ACTIONS(1387), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1389), + [anon_sym_LPAREN] = ACTIONS(1565), + [anon_sym_ref] = ACTIONS(1567), + [anon_sym_LBRACE] = ACTIONS(1395), + [anon_sym_delegate] = ACTIONS(1397), + [anon_sym_async] = ACTIONS(1045), + [anon_sym_file] = ACTIONS(1387), + [anon_sym_new] = ACTIONS(1399), + [anon_sym_where] = ACTIONS(1387), + [anon_sym_notnull] = ACTIONS(1387), + [anon_sym_unmanaged] = ACTIONS(1387), + [anon_sym_checked] = ACTIONS(1401), + [anon_sym_BANG] = ACTIONS(1571), + [anon_sym_TILDE] = ACTIONS(1571), + [anon_sym_PLUS_PLUS] = ACTIONS(1571), + [anon_sym_DASH_DASH] = ACTIONS(1571), + [anon_sym_true] = ACTIONS(1407), + [anon_sym_false] = ACTIONS(1407), + [anon_sym_PLUS] = ACTIONS(1569), + [anon_sym_DASH] = ACTIONS(1569), + [anon_sym_STAR] = ACTIONS(1409), + [anon_sym_CARET] = ACTIONS(1571), + [anon_sym_AMP] = ACTIONS(1571), + [anon_sym_this] = ACTIONS(1411), + [anon_sym_scoped] = ACTIONS(1413), + [anon_sym_base] = ACTIONS(1415), + [anon_sym_var] = ACTIONS(1417), + [sym_predefined_type] = ACTIONS(1419), + [anon_sym_unchecked] = ACTIONS(1401), + [anon_sym_yield] = ACTIONS(1387), + [anon_sym_default] = ACTIONS(1421), + [anon_sym_throw] = ACTIONS(1573), + [anon_sym_when] = ACTIONS(1387), + [anon_sym_await] = ACTIONS(1575), + [anon_sym_DOT_DOT] = ACTIONS(1577), + [anon_sym_from] = ACTIONS(1429), + [anon_sym_into] = ACTIONS(1387), + [anon_sym_join] = ACTIONS(1387), + [anon_sym_on] = ACTIONS(1387), + [anon_sym_equals] = ACTIONS(1387), + [anon_sym_let] = ACTIONS(1387), + [anon_sym_orderby] = ACTIONS(1387), + [anon_sym_ascending] = ACTIONS(1387), + [anon_sym_descending] = ACTIONS(1387), + [anon_sym_group] = ACTIONS(1387), + [anon_sym_by] = ACTIONS(1387), + [anon_sym_select] = ACTIONS(1387), + [anon_sym_stackalloc] = ACTIONS(1431), + [anon_sym_sizeof] = ACTIONS(1433), + [anon_sym_typeof] = ACTIONS(1435), + [anon_sym___makeref] = ACTIONS(1437), + [anon_sym___reftype] = ACTIONS(1439), + [anon_sym___refvalue] = ACTIONS(1441), + [sym_null_literal] = ACTIONS(1443), + [anon_sym_SQUOTE] = ACTIONS(1445), + [sym_integer_literal] = ACTIONS(1443), + [sym_real_literal] = ACTIONS(1447), + [anon_sym_DQUOTE] = ACTIONS(1449), + [sym_verbatim_string_literal] = ACTIONS(1447), + [aux_sym_preproc_if_token1] = ACTIONS(1451), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + [sym_interpolation_regular_start] = ACTIONS(1453), + [sym_interpolation_verbatim_start] = ACTIONS(1455), + [sym_interpolation_raw_start] = ACTIONS(1457), + [sym_raw_string_start] = ACTIONS(1459), }, [919] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2420), - [sym__name] = STATE(5888), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2384), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(2910), - [sym_non_lvalue_expression] = STATE(3066), - [sym_lvalue_expression] = STATE(3554), - [sym__expression_statement_expression] = STATE(3006), - [sym_assignment_expression] = STATE(3020), - [sym_binary_expression] = STATE(3006), - [sym_postfix_unary_expression] = STATE(3020), - [sym_prefix_unary_expression] = STATE(3020), - [sym__pointer_indirection_expression] = STATE(2423), - [sym_query_expression] = STATE(3006), - [sym_from_clause] = STATE(6151), - [sym_conditional_expression] = STATE(3006), - [sym_conditional_access_expression] = STATE(3006), - [sym_as_expression] = STATE(3006), - [sym_is_expression] = STATE(3006), - [sym_is_pattern_expression] = STATE(3006), - [sym_cast_expression] = STATE(3006), - [sym_checked_expression] = STATE(3006), - [sym_invocation_expression] = STATE(3020), - [sym_switch_expression] = STATE(3006), - [sym_await_expression] = STATE(3020), - [sym_throw_expression] = STATE(3006), - [sym_element_access_expression] = STATE(2423), - [sym_interpolated_string_expression] = STATE(3006), - [sym_member_access_expression] = STATE(2423), - [sym_object_creation_expression] = STATE(3020), - [sym_parenthesized_expression] = STATE(3020), - [sym__parenthesized_lvalue_expression] = STATE(2423), - [sym_lambda_expression] = STATE(3006), - [sym__lambda_expression_init] = STATE(7640), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3006), - [sym_anonymous_method_expression] = STATE(3006), - [sym_anonymous_object_creation_expression] = STATE(3006), - [sym_implicit_array_creation_expression] = STATE(3006), - [sym_implicit_object_creation_expression] = STATE(3006), - [sym_implicit_stackalloc_expression] = STATE(3006), - [sym_initializer_expression] = STATE(3006), - [sym_default_expression] = STATE(3006), - [sym_with_expression] = STATE(3006), - [sym_sizeof_expression] = STATE(3006), - [sym_typeof_expression] = STATE(3006), - [sym_makeref_expression] = STATE(3006), - [sym_ref_expression] = STATE(3006), - [sym_reftype_expression] = STATE(3006), - [sym_refvalue_expression] = STATE(3006), - [sym_stackalloc_expression] = STATE(3006), - [sym_range_expression] = STATE(3006), - [sym_tuple_expression] = STATE(2423), - [sym_literal] = STATE(3006), - [sym_character_literal] = STATE(3011), - [sym_string_literal] = STATE(3011), - [sym_raw_string_literal] = STATE(3011), - [sym_boolean_literal] = STATE(3011), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3006), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2416), + [sym__name] = STATE(5900), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2193), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(4455), + [sym_non_lvalue_expression] = STATE(3040), + [sym_lvalue_expression] = STATE(3231), + [sym__expression_statement_expression] = STATE(3035), + [sym_assignment_expression] = STATE(3043), + [sym_binary_expression] = STATE(3035), + [sym_postfix_unary_expression] = STATE(3043), + [sym_prefix_unary_expression] = STATE(3043), + [sym__pointer_indirection_expression] = STATE(2415), + [sym_query_expression] = STATE(3035), + [sym_from_clause] = STATE(6149), + [sym_conditional_expression] = STATE(3035), + [sym_conditional_access_expression] = STATE(3035), + [sym_as_expression] = STATE(3035), + [sym_is_expression] = STATE(3035), + [sym_is_pattern_expression] = STATE(3035), + [sym_cast_expression] = STATE(3035), + [sym_checked_expression] = STATE(3035), + [sym_invocation_expression] = STATE(3043), + [sym_switch_expression] = STATE(3035), + [sym_await_expression] = STATE(3043), + [sym_throw_expression] = STATE(3035), + [sym_element_access_expression] = STATE(2415), + [sym_interpolated_string_expression] = STATE(3035), + [sym_member_access_expression] = STATE(2415), + [sym_object_creation_expression] = STATE(3043), + [sym_parenthesized_expression] = STATE(3043), + [sym__parenthesized_lvalue_expression] = STATE(2415), + [sym_lambda_expression] = STATE(3035), + [sym__lambda_expression_init] = STATE(7405), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3035), + [sym_anonymous_method_expression] = STATE(3035), + [sym_anonymous_object_creation_expression] = STATE(3035), + [sym_implicit_array_creation_expression] = STATE(3035), + [sym_implicit_object_creation_expression] = STATE(3035), + [sym_implicit_stackalloc_expression] = STATE(3035), + [sym_initializer_expression] = STATE(3035), + [sym_default_expression] = STATE(3035), + [sym_with_expression] = STATE(3035), + [sym_sizeof_expression] = STATE(3035), + [sym_typeof_expression] = STATE(3035), + [sym_makeref_expression] = STATE(3035), + [sym_ref_expression] = STATE(3035), + [sym_reftype_expression] = STATE(3035), + [sym_refvalue_expression] = STATE(3035), + [sym_stackalloc_expression] = STATE(3035), + [sym_range_expression] = STATE(3035), + [sym_tuple_expression] = STATE(2415), + [sym_literal] = STATE(3035), + [sym_character_literal] = STATE(3037), + [sym_string_literal] = STATE(3037), + [sym_raw_string_literal] = STATE(3037), + [sym_boolean_literal] = STATE(3037), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3035), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(919), [sym_preproc_endregion] = STATE(919), [sym_preproc_line] = STATE(919), @@ -197170,47 +197056,47 @@ 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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3440), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3455), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1241), - [anon_sym_LPAREN] = ACTIONS(2281), - [anon_sym_ref] = ACTIONS(2283), - [anon_sym_LBRACE] = ACTIONS(1247), - [anon_sym_delegate] = ACTIONS(1249), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1239), + [anon_sym_LPAREN] = ACTIONS(1495), + [anon_sym_ref] = ACTIONS(1497), + [anon_sym_LBRACE] = ACTIONS(1245), + [anon_sym_delegate] = ACTIONS(1247), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(2285), + [anon_sym_new] = ACTIONS(1249), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1253), - [anon_sym_BANG] = ACTIONS(2289), - [anon_sym_TILDE] = ACTIONS(2289), - [anon_sym_PLUS_PLUS] = ACTIONS(2289), - [anon_sym_DASH_DASH] = ACTIONS(2289), - [anon_sym_true] = ACTIONS(1259), - [anon_sym_false] = ACTIONS(1259), - [anon_sym_PLUS] = ACTIONS(2287), - [anon_sym_DASH] = ACTIONS(2287), - [anon_sym_STAR] = ACTIONS(2291), - [anon_sym_CARET] = ACTIONS(2289), - [anon_sym_AMP] = ACTIONS(2289), - [anon_sym_this] = ACTIONS(1263), + [anon_sym_checked] = ACTIONS(1251), + [anon_sym_BANG] = ACTIONS(1501), + [anon_sym_TILDE] = ACTIONS(1501), + [anon_sym_PLUS_PLUS] = ACTIONS(1501), + [anon_sym_DASH_DASH] = ACTIONS(1501), + [anon_sym_true] = ACTIONS(1257), + [anon_sym_false] = ACTIONS(1257), + [anon_sym_PLUS] = ACTIONS(1499), + [anon_sym_DASH] = ACTIONS(1499), + [anon_sym_STAR] = ACTIONS(1503), + [anon_sym_CARET] = ACTIONS(1501), + [anon_sym_AMP] = ACTIONS(1501), + [anon_sym_this] = ACTIONS(1261), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1265), + [anon_sym_base] = ACTIONS(1263), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1267), - [anon_sym_unchecked] = ACTIONS(1253), + [sym_predefined_type] = ACTIONS(1265), + [anon_sym_unchecked] = ACTIONS(1251), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1269), - [anon_sym_throw] = ACTIONS(2293), + [anon_sym_default] = ACTIONS(1267), + [anon_sym_throw] = ACTIONS(1505), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2295), - [anon_sym_DOT_DOT] = ACTIONS(2297), + [anon_sym_await] = ACTIONS(1507), + [anon_sym_DOT_DOT] = ACTIONS(1509), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -197223,19 +197109,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1277), - [anon_sym_sizeof] = ACTIONS(1279), - [anon_sym_typeof] = ACTIONS(1281), - [anon_sym___makeref] = ACTIONS(1283), - [anon_sym___reftype] = ACTIONS(1285), - [anon_sym___refvalue] = ACTIONS(1287), - [sym_null_literal] = ACTIONS(1289), - [anon_sym_SQUOTE] = ACTIONS(1291), - [sym_integer_literal] = ACTIONS(1289), - [sym_real_literal] = ACTIONS(1293), - [anon_sym_DQUOTE] = ACTIONS(1295), - [sym_verbatim_string_literal] = ACTIONS(1293), - [aux_sym_preproc_if_token1] = ACTIONS(1297), + [anon_sym_stackalloc] = ACTIONS(1275), + [anon_sym_sizeof] = ACTIONS(1277), + [anon_sym_typeof] = ACTIONS(1279), + [anon_sym___makeref] = ACTIONS(1281), + [anon_sym___reftype] = ACTIONS(1283), + [anon_sym___refvalue] = ACTIONS(1285), + [sym_null_literal] = ACTIONS(1287), + [anon_sym_SQUOTE] = ACTIONS(1289), + [sym_integer_literal] = ACTIONS(1287), + [sym_real_literal] = ACTIONS(1291), + [anon_sym_DQUOTE] = ACTIONS(1293), + [sym_verbatim_string_literal] = ACTIONS(1291), + [aux_sym_preproc_if_token1] = ACTIONS(1295), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -197246,90 +197132,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1299), - [sym_interpolation_verbatim_start] = ACTIONS(1301), - [sym_interpolation_raw_start] = ACTIONS(1303), - [sym_raw_string_start] = ACTIONS(1305), + [sym_interpolation_regular_start] = ACTIONS(1297), + [sym_interpolation_verbatim_start] = ACTIONS(1299), + [sym_interpolation_raw_start] = ACTIONS(1301), + [sym_raw_string_start] = ACTIONS(1303), }, [920] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2762), - [sym__name] = STATE(5889), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2247), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(4286), - [sym_non_lvalue_expression] = STATE(3438), - [sym_lvalue_expression] = STATE(3224), - [sym__expression_statement_expression] = STATE(3362), - [sym_assignment_expression] = STATE(3449), - [sym_binary_expression] = STATE(3362), - [sym_postfix_unary_expression] = STATE(3449), - [sym_prefix_unary_expression] = STATE(3449), - [sym__pointer_indirection_expression] = STATE(2747), - [sym_query_expression] = STATE(3362), - [sym_from_clause] = STATE(6146), - [sym_conditional_expression] = STATE(3362), - [sym_conditional_access_expression] = STATE(3362), - [sym_as_expression] = STATE(3362), - [sym_is_expression] = STATE(3362), - [sym_is_pattern_expression] = STATE(3362), - [sym_cast_expression] = STATE(3362), - [sym_checked_expression] = STATE(3362), - [sym_invocation_expression] = STATE(3449), - [sym_switch_expression] = STATE(3362), - [sym_await_expression] = STATE(3449), - [sym_throw_expression] = STATE(3362), - [sym_element_access_expression] = STATE(2747), - [sym_interpolated_string_expression] = STATE(3362), - [sym_member_access_expression] = STATE(2747), - [sym_object_creation_expression] = STATE(3449), - [sym_parenthesized_expression] = STATE(3449), - [sym__parenthesized_lvalue_expression] = STATE(2747), - [sym_lambda_expression] = STATE(3362), - [sym__lambda_expression_init] = STATE(7381), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3362), - [sym_anonymous_method_expression] = STATE(3362), - [sym_anonymous_object_creation_expression] = STATE(3362), - [sym_implicit_array_creation_expression] = STATE(3362), - [sym_implicit_object_creation_expression] = STATE(3362), - [sym_implicit_stackalloc_expression] = STATE(3362), - [sym_initializer_expression] = STATE(3362), - [sym_default_expression] = STATE(3362), - [sym_with_expression] = STATE(3362), - [sym_sizeof_expression] = STATE(3362), - [sym_typeof_expression] = STATE(3362), - [sym_makeref_expression] = STATE(3362), - [sym_ref_expression] = STATE(3362), - [sym_reftype_expression] = STATE(3362), - [sym_refvalue_expression] = STATE(3362), - [sym_stackalloc_expression] = STATE(3362), - [sym_range_expression] = STATE(3362), - [sym_tuple_expression] = STATE(2747), - [sym_literal] = STATE(3362), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3362), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2416), + [sym__name] = STATE(5900), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2193), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(4461), + [sym_non_lvalue_expression] = STATE(3040), + [sym_lvalue_expression] = STATE(3231), + [sym__expression_statement_expression] = STATE(3035), + [sym_assignment_expression] = STATE(3043), + [sym_binary_expression] = STATE(3035), + [sym_postfix_unary_expression] = STATE(3043), + [sym_prefix_unary_expression] = STATE(3043), + [sym__pointer_indirection_expression] = STATE(2415), + [sym_query_expression] = STATE(3035), + [sym_from_clause] = STATE(6149), + [sym_conditional_expression] = STATE(3035), + [sym_conditional_access_expression] = STATE(3035), + [sym_as_expression] = STATE(3035), + [sym_is_expression] = STATE(3035), + [sym_is_pattern_expression] = STATE(3035), + [sym_cast_expression] = STATE(3035), + [sym_checked_expression] = STATE(3035), + [sym_invocation_expression] = STATE(3043), + [sym_switch_expression] = STATE(3035), + [sym_await_expression] = STATE(3043), + [sym_throw_expression] = STATE(3035), + [sym_element_access_expression] = STATE(2415), + [sym_interpolated_string_expression] = STATE(3035), + [sym_member_access_expression] = STATE(2415), + [sym_object_creation_expression] = STATE(3043), + [sym_parenthesized_expression] = STATE(3043), + [sym__parenthesized_lvalue_expression] = STATE(2415), + [sym_lambda_expression] = STATE(3035), + [sym__lambda_expression_init] = STATE(7405), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3035), + [sym_anonymous_method_expression] = STATE(3035), + [sym_anonymous_object_creation_expression] = STATE(3035), + [sym_implicit_array_creation_expression] = STATE(3035), + [sym_implicit_object_creation_expression] = STATE(3035), + [sym_implicit_stackalloc_expression] = STATE(3035), + [sym_initializer_expression] = STATE(3035), + [sym_default_expression] = STATE(3035), + [sym_with_expression] = STATE(3035), + [sym_sizeof_expression] = STATE(3035), + [sym_typeof_expression] = STATE(3035), + [sym_makeref_expression] = STATE(3035), + [sym_ref_expression] = STATE(3035), + [sym_reftype_expression] = STATE(3035), + [sym_refvalue_expression] = STATE(3035), + [sym_stackalloc_expression] = STATE(3035), + [sym_range_expression] = STATE(3035), + [sym_tuple_expression] = STATE(2415), + [sym_literal] = STATE(3035), + [sym_character_literal] = STATE(3037), + [sym_string_literal] = STATE(3037), + [sym_raw_string_literal] = STATE(3037), + [sym_boolean_literal] = STATE(3037), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3035), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(920), [sym_preproc_endregion] = STATE(920), [sym_preproc_line] = STATE(920), @@ -197339,47 +197225,47 @@ 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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3385), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3455), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1307), - [anon_sym_LPAREN] = ACTIONS(1359), - [anon_sym_ref] = ACTIONS(1361), - [anon_sym_LBRACE] = ACTIONS(1313), - [anon_sym_delegate] = ACTIONS(1315), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1239), + [anon_sym_LPAREN] = ACTIONS(1495), + [anon_sym_ref] = ACTIONS(1497), + [anon_sym_LBRACE] = ACTIONS(1245), + [anon_sym_delegate] = ACTIONS(1247), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1317), + [anon_sym_new] = ACTIONS(1249), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1319), - [anon_sym_BANG] = ACTIONS(1107), - [anon_sym_TILDE] = ACTIONS(1107), - [anon_sym_PLUS_PLUS] = ACTIONS(1107), - [anon_sym_DASH_DASH] = ACTIONS(1107), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1109), - [anon_sym_DASH] = ACTIONS(1109), - [anon_sym_STAR] = ACTIONS(1363), - [anon_sym_CARET] = ACTIONS(1107), - [anon_sym_AMP] = ACTIONS(1107), - [anon_sym_this] = ACTIONS(1323), + [anon_sym_checked] = ACTIONS(1251), + [anon_sym_BANG] = ACTIONS(1501), + [anon_sym_TILDE] = ACTIONS(1501), + [anon_sym_PLUS_PLUS] = ACTIONS(1501), + [anon_sym_DASH_DASH] = ACTIONS(1501), + [anon_sym_true] = ACTIONS(1257), + [anon_sym_false] = ACTIONS(1257), + [anon_sym_PLUS] = ACTIONS(1499), + [anon_sym_DASH] = ACTIONS(1499), + [anon_sym_STAR] = ACTIONS(1503), + [anon_sym_CARET] = ACTIONS(1501), + [anon_sym_AMP] = ACTIONS(1501), + [anon_sym_this] = ACTIONS(1261), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1325), + [anon_sym_base] = ACTIONS(1263), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1319), + [sym_predefined_type] = ACTIONS(1265), + [anon_sym_unchecked] = ACTIONS(1251), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1365), + [anon_sym_default] = ACTIONS(1267), + [anon_sym_throw] = ACTIONS(1505), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1367), - [anon_sym_DOT_DOT] = ACTIONS(1369), + [anon_sym_await] = ACTIONS(1507), + [anon_sym_DOT_DOT] = ACTIONS(1509), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -197392,19 +197278,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1333), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(1335), - [anon_sym___reftype] = ACTIONS(1337), - [anon_sym___refvalue] = ACTIONS(1339), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1341), + [anon_sym_stackalloc] = ACTIONS(1275), + [anon_sym_sizeof] = ACTIONS(1277), + [anon_sym_typeof] = ACTIONS(1279), + [anon_sym___makeref] = ACTIONS(1281), + [anon_sym___reftype] = ACTIONS(1283), + [anon_sym___refvalue] = ACTIONS(1285), + [sym_null_literal] = ACTIONS(1287), + [anon_sym_SQUOTE] = ACTIONS(1289), + [sym_integer_literal] = ACTIONS(1287), + [sym_real_literal] = ACTIONS(1291), + [anon_sym_DQUOTE] = ACTIONS(1293), + [sym_verbatim_string_literal] = ACTIONS(1291), + [aux_sym_preproc_if_token1] = ACTIONS(1295), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -197415,90 +197301,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(151), - [sym_interpolation_verbatim_start] = ACTIONS(153), - [sym_interpolation_raw_start] = ACTIONS(155), - [sym_raw_string_start] = ACTIONS(157), + [sym_interpolation_regular_start] = ACTIONS(1297), + [sym_interpolation_verbatim_start] = ACTIONS(1299), + [sym_interpolation_raw_start] = ACTIONS(1301), + [sym_raw_string_start] = ACTIONS(1303), }, [921] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2762), - [sym__name] = STATE(5889), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2247), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(3163), - [sym_non_lvalue_expression] = STATE(3438), - [sym_lvalue_expression] = STATE(3224), - [sym__expression_statement_expression] = STATE(3362), - [sym_assignment_expression] = STATE(3449), - [sym_binary_expression] = STATE(3362), - [sym_postfix_unary_expression] = STATE(3449), - [sym_prefix_unary_expression] = STATE(3449), - [sym__pointer_indirection_expression] = STATE(2747), - [sym_query_expression] = STATE(3362), - [sym_from_clause] = STATE(6146), - [sym_conditional_expression] = STATE(3362), - [sym_conditional_access_expression] = STATE(3362), - [sym_as_expression] = STATE(3362), - [sym_is_expression] = STATE(3362), - [sym_is_pattern_expression] = STATE(3362), - [sym_cast_expression] = STATE(3362), - [sym_checked_expression] = STATE(3362), - [sym_invocation_expression] = STATE(3449), - [sym_switch_expression] = STATE(3362), - [sym_await_expression] = STATE(3449), - [sym_throw_expression] = STATE(3362), - [sym_element_access_expression] = STATE(2747), - [sym_interpolated_string_expression] = STATE(3362), - [sym_member_access_expression] = STATE(2747), - [sym_object_creation_expression] = STATE(3449), - [sym_parenthesized_expression] = STATE(3449), - [sym__parenthesized_lvalue_expression] = STATE(2747), - [sym_lambda_expression] = STATE(3362), - [sym__lambda_expression_init] = STATE(7381), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3362), - [sym_anonymous_method_expression] = STATE(3362), - [sym_anonymous_object_creation_expression] = STATE(3362), - [sym_implicit_array_creation_expression] = STATE(3362), - [sym_implicit_object_creation_expression] = STATE(3362), - [sym_implicit_stackalloc_expression] = STATE(3362), - [sym_initializer_expression] = STATE(3362), - [sym_default_expression] = STATE(3362), - [sym_with_expression] = STATE(3362), - [sym_sizeof_expression] = STATE(3362), - [sym_typeof_expression] = STATE(3362), - [sym_makeref_expression] = STATE(3362), - [sym_ref_expression] = STATE(3362), - [sym_reftype_expression] = STATE(3362), - [sym_refvalue_expression] = STATE(3362), - [sym_stackalloc_expression] = STATE(3362), - [sym_range_expression] = STATE(3362), - [sym_tuple_expression] = STATE(2747), - [sym_literal] = STATE(3362), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3362), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2416), + [sym__name] = STATE(5900), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2193), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(4350), + [sym_non_lvalue_expression] = STATE(3040), + [sym_lvalue_expression] = STATE(3231), + [sym__expression_statement_expression] = STATE(3035), + [sym_assignment_expression] = STATE(3043), + [sym_binary_expression] = STATE(3035), + [sym_postfix_unary_expression] = STATE(3043), + [sym_prefix_unary_expression] = STATE(3043), + [sym__pointer_indirection_expression] = STATE(2415), + [sym_query_expression] = STATE(3035), + [sym_from_clause] = STATE(6149), + [sym_conditional_expression] = STATE(3035), + [sym_conditional_access_expression] = STATE(3035), + [sym_as_expression] = STATE(3035), + [sym_is_expression] = STATE(3035), + [sym_is_pattern_expression] = STATE(3035), + [sym_cast_expression] = STATE(3035), + [sym_checked_expression] = STATE(3035), + [sym_invocation_expression] = STATE(3043), + [sym_switch_expression] = STATE(3035), + [sym_await_expression] = STATE(3043), + [sym_throw_expression] = STATE(3035), + [sym_element_access_expression] = STATE(2415), + [sym_interpolated_string_expression] = STATE(3035), + [sym_member_access_expression] = STATE(2415), + [sym_object_creation_expression] = STATE(3043), + [sym_parenthesized_expression] = STATE(3043), + [sym__parenthesized_lvalue_expression] = STATE(2415), + [sym_lambda_expression] = STATE(3035), + [sym__lambda_expression_init] = STATE(7405), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3035), + [sym_anonymous_method_expression] = STATE(3035), + [sym_anonymous_object_creation_expression] = STATE(3035), + [sym_implicit_array_creation_expression] = STATE(3035), + [sym_implicit_object_creation_expression] = STATE(3035), + [sym_implicit_stackalloc_expression] = STATE(3035), + [sym_initializer_expression] = STATE(3035), + [sym_default_expression] = STATE(3035), + [sym_with_expression] = STATE(3035), + [sym_sizeof_expression] = STATE(3035), + [sym_typeof_expression] = STATE(3035), + [sym_makeref_expression] = STATE(3035), + [sym_ref_expression] = STATE(3035), + [sym_reftype_expression] = STATE(3035), + [sym_refvalue_expression] = STATE(3035), + [sym_stackalloc_expression] = STATE(3035), + [sym_range_expression] = STATE(3035), + [sym_tuple_expression] = STATE(2415), + [sym_literal] = STATE(3035), + [sym_character_literal] = STATE(3037), + [sym_string_literal] = STATE(3037), + [sym_raw_string_literal] = STATE(3037), + [sym_boolean_literal] = STATE(3037), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3035), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(921), [sym_preproc_endregion] = STATE(921), [sym_preproc_line] = STATE(921), @@ -197508,47 +197394,47 @@ 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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3385), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3455), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1307), - [anon_sym_LPAREN] = ACTIONS(1359), - [anon_sym_ref] = ACTIONS(1361), - [anon_sym_LBRACE] = ACTIONS(1313), - [anon_sym_delegate] = ACTIONS(1315), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1239), + [anon_sym_LPAREN] = ACTIONS(1495), + [anon_sym_ref] = ACTIONS(1497), + [anon_sym_LBRACE] = ACTIONS(1245), + [anon_sym_delegate] = ACTIONS(1247), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1317), + [anon_sym_new] = ACTIONS(1249), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1319), - [anon_sym_BANG] = ACTIONS(1107), - [anon_sym_TILDE] = ACTIONS(1107), - [anon_sym_PLUS_PLUS] = ACTIONS(1107), - [anon_sym_DASH_DASH] = ACTIONS(1107), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1109), - [anon_sym_DASH] = ACTIONS(1109), - [anon_sym_STAR] = ACTIONS(1363), - [anon_sym_CARET] = ACTIONS(1107), - [anon_sym_AMP] = ACTIONS(1107), - [anon_sym_this] = ACTIONS(1323), + [anon_sym_checked] = ACTIONS(1251), + [anon_sym_BANG] = ACTIONS(1501), + [anon_sym_TILDE] = ACTIONS(1501), + [anon_sym_PLUS_PLUS] = ACTIONS(1501), + [anon_sym_DASH_DASH] = ACTIONS(1501), + [anon_sym_true] = ACTIONS(1257), + [anon_sym_false] = ACTIONS(1257), + [anon_sym_PLUS] = ACTIONS(1499), + [anon_sym_DASH] = ACTIONS(1499), + [anon_sym_STAR] = ACTIONS(1503), + [anon_sym_CARET] = ACTIONS(1501), + [anon_sym_AMP] = ACTIONS(1501), + [anon_sym_this] = ACTIONS(1261), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1325), + [anon_sym_base] = ACTIONS(1263), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1319), + [sym_predefined_type] = ACTIONS(1265), + [anon_sym_unchecked] = ACTIONS(1251), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1365), + [anon_sym_default] = ACTIONS(1267), + [anon_sym_throw] = ACTIONS(1505), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1367), - [anon_sym_DOT_DOT] = ACTIONS(1369), + [anon_sym_await] = ACTIONS(1507), + [anon_sym_DOT_DOT] = ACTIONS(1509), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -197561,19 +197447,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1333), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(1335), - [anon_sym___reftype] = ACTIONS(1337), - [anon_sym___refvalue] = ACTIONS(1339), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1341), + [anon_sym_stackalloc] = ACTIONS(1275), + [anon_sym_sizeof] = ACTIONS(1277), + [anon_sym_typeof] = ACTIONS(1279), + [anon_sym___makeref] = ACTIONS(1281), + [anon_sym___reftype] = ACTIONS(1283), + [anon_sym___refvalue] = ACTIONS(1285), + [sym_null_literal] = ACTIONS(1287), + [anon_sym_SQUOTE] = ACTIONS(1289), + [sym_integer_literal] = ACTIONS(1287), + [sym_real_literal] = ACTIONS(1291), + [anon_sym_DQUOTE] = ACTIONS(1293), + [sym_verbatim_string_literal] = ACTIONS(1291), + [aux_sym_preproc_if_token1] = ACTIONS(1295), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -197584,90 +197470,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(151), - [sym_interpolation_verbatim_start] = ACTIONS(153), - [sym_interpolation_raw_start] = ACTIONS(155), - [sym_raw_string_start] = ACTIONS(157), + [sym_interpolation_regular_start] = ACTIONS(1297), + [sym_interpolation_verbatim_start] = ACTIONS(1299), + [sym_interpolation_raw_start] = ACTIONS(1301), + [sym_raw_string_start] = ACTIONS(1303), }, [922] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(3184), - [sym__name] = STATE(5906), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2312), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2269), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(4759), - [sym_non_lvalue_expression] = STATE(4541), - [sym_lvalue_expression] = STATE(3439), - [sym__expression_statement_expression] = STATE(4529), - [sym_assignment_expression] = STATE(4543), - [sym_binary_expression] = STATE(4529), - [sym_postfix_unary_expression] = STATE(4543), - [sym_prefix_unary_expression] = STATE(4543), - [sym__pointer_indirection_expression] = STATE(3175), - [sym_query_expression] = STATE(4529), - [sym_from_clause] = STATE(6169), - [sym_conditional_expression] = STATE(4529), - [sym_conditional_access_expression] = STATE(4529), - [sym_as_expression] = STATE(4529), - [sym_is_expression] = STATE(4529), - [sym_is_pattern_expression] = STATE(4529), - [sym_cast_expression] = STATE(4529), - [sym_checked_expression] = STATE(4529), - [sym_invocation_expression] = STATE(4543), - [sym_switch_expression] = STATE(4529), - [sym_await_expression] = STATE(4543), - [sym_throw_expression] = STATE(4529), - [sym_element_access_expression] = STATE(3175), - [sym_interpolated_string_expression] = STATE(4529), - [sym_member_access_expression] = STATE(3175), - [sym_object_creation_expression] = STATE(4543), - [sym_parenthesized_expression] = STATE(4543), - [sym__parenthesized_lvalue_expression] = STATE(3175), - [sym_lambda_expression] = STATE(4529), - [sym__lambda_expression_init] = STATE(7684), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(4529), - [sym_anonymous_method_expression] = STATE(4529), - [sym_anonymous_object_creation_expression] = STATE(4529), - [sym_implicit_array_creation_expression] = STATE(4529), - [sym_implicit_object_creation_expression] = STATE(4529), - [sym_implicit_stackalloc_expression] = STATE(4529), - [sym_initializer_expression] = STATE(4529), - [sym_default_expression] = STATE(4529), - [sym_with_expression] = STATE(4529), - [sym_sizeof_expression] = STATE(4529), - [sym_typeof_expression] = STATE(4529), - [sym_makeref_expression] = STATE(4529), - [sym_ref_expression] = STATE(4529), - [sym_reftype_expression] = STATE(4529), - [sym_refvalue_expression] = STATE(4529), - [sym_stackalloc_expression] = STATE(4529), - [sym_range_expression] = STATE(4529), - [sym_tuple_expression] = STATE(3175), - [sym_literal] = STATE(4529), - [sym_character_literal] = STATE(4536), - [sym_string_literal] = STATE(4536), - [sym_raw_string_literal] = STATE(4536), - [sym_boolean_literal] = STATE(4536), - [sym_identifier] = STATE(2246), - [sym__reserved_identifier] = STATE(2240), - [sym_preproc_if_in_expression] = STATE(4529), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2416), + [sym__name] = STATE(5900), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2193), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(4361), + [sym_non_lvalue_expression] = STATE(3040), + [sym_lvalue_expression] = STATE(3231), + [sym__expression_statement_expression] = STATE(3035), + [sym_assignment_expression] = STATE(3043), + [sym_binary_expression] = STATE(3035), + [sym_postfix_unary_expression] = STATE(3043), + [sym_prefix_unary_expression] = STATE(3043), + [sym__pointer_indirection_expression] = STATE(2415), + [sym_query_expression] = STATE(3035), + [sym_from_clause] = STATE(6149), + [sym_conditional_expression] = STATE(3035), + [sym_conditional_access_expression] = STATE(3035), + [sym_as_expression] = STATE(3035), + [sym_is_expression] = STATE(3035), + [sym_is_pattern_expression] = STATE(3035), + [sym_cast_expression] = STATE(3035), + [sym_checked_expression] = STATE(3035), + [sym_invocation_expression] = STATE(3043), + [sym_switch_expression] = STATE(3035), + [sym_await_expression] = STATE(3043), + [sym_throw_expression] = STATE(3035), + [sym_element_access_expression] = STATE(2415), + [sym_interpolated_string_expression] = STATE(3035), + [sym_member_access_expression] = STATE(2415), + [sym_object_creation_expression] = STATE(3043), + [sym_parenthesized_expression] = STATE(3043), + [sym__parenthesized_lvalue_expression] = STATE(2415), + [sym_lambda_expression] = STATE(3035), + [sym__lambda_expression_init] = STATE(7405), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3035), + [sym_anonymous_method_expression] = STATE(3035), + [sym_anonymous_object_creation_expression] = STATE(3035), + [sym_implicit_array_creation_expression] = STATE(3035), + [sym_implicit_object_creation_expression] = STATE(3035), + [sym_implicit_stackalloc_expression] = STATE(3035), + [sym_initializer_expression] = STATE(3035), + [sym_default_expression] = STATE(3035), + [sym_with_expression] = STATE(3035), + [sym_sizeof_expression] = STATE(3035), + [sym_typeof_expression] = STATE(3035), + [sym_makeref_expression] = STATE(3035), + [sym_ref_expression] = STATE(3035), + [sym_reftype_expression] = STATE(3035), + [sym_refvalue_expression] = STATE(3035), + [sym_stackalloc_expression] = STATE(3035), + [sym_range_expression] = STATE(3035), + [sym_tuple_expression] = STATE(2415), + [sym_literal] = STATE(3035), + [sym_character_literal] = STATE(3037), + [sym_string_literal] = STATE(3037), + [sym_raw_string_literal] = STATE(3037), + [sym_boolean_literal] = STATE(3037), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3035), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(922), [sym_preproc_endregion] = STATE(922), [sym_preproc_line] = STATE(922), @@ -197677,166 +197563,166 @@ 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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3363), - [sym__identifier_token] = ACTIONS(1387), - [anon_sym_alias] = ACTIONS(1389), - [anon_sym_global] = ACTIONS(1389), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1391), - [anon_sym_LPAREN] = ACTIONS(1775), - [anon_sym_ref] = ACTIONS(1777), - [anon_sym_LBRACE] = ACTIONS(1397), - [anon_sym_delegate] = ACTIONS(1399), - [anon_sym_async] = ACTIONS(1047), - [anon_sym_file] = ACTIONS(1389), - [anon_sym_new] = ACTIONS(1401), - [anon_sym_where] = ACTIONS(1389), - [anon_sym_notnull] = ACTIONS(1389), - [anon_sym_unmanaged] = ACTIONS(1389), - [anon_sym_checked] = ACTIONS(1403), - [anon_sym_BANG] = ACTIONS(1781), - [anon_sym_TILDE] = ACTIONS(1781), - [anon_sym_PLUS_PLUS] = ACTIONS(1781), - [anon_sym_DASH_DASH] = ACTIONS(1781), - [anon_sym_true] = ACTIONS(1409), - [anon_sym_false] = ACTIONS(1409), - [anon_sym_PLUS] = ACTIONS(1779), - [anon_sym_DASH] = ACTIONS(1779), - [anon_sym_STAR] = ACTIONS(1411), - [anon_sym_CARET] = ACTIONS(1781), - [anon_sym_AMP] = ACTIONS(1781), - [anon_sym_this] = ACTIONS(1413), - [anon_sym_scoped] = ACTIONS(1415), - [anon_sym_base] = ACTIONS(1417), - [anon_sym_var] = ACTIONS(1419), - [sym_predefined_type] = ACTIONS(1421), - [anon_sym_unchecked] = ACTIONS(1403), - [anon_sym_yield] = ACTIONS(1389), - [anon_sym_default] = ACTIONS(1423), - [anon_sym_throw] = ACTIONS(1783), - [anon_sym_when] = ACTIONS(1389), - [anon_sym_await] = ACTIONS(1785), - [anon_sym_DOT_DOT] = ACTIONS(1787), - [anon_sym_from] = ACTIONS(1431), - [anon_sym_into] = ACTIONS(1389), - [anon_sym_join] = ACTIONS(1389), - [anon_sym_on] = ACTIONS(1389), - [anon_sym_equals] = ACTIONS(1389), - [anon_sym_let] = ACTIONS(1389), - [anon_sym_orderby] = ACTIONS(1389), - [anon_sym_ascending] = ACTIONS(1389), - [anon_sym_descending] = ACTIONS(1389), - [anon_sym_group] = ACTIONS(1389), - [anon_sym_by] = ACTIONS(1389), - [anon_sym_select] = ACTIONS(1389), - [anon_sym_stackalloc] = ACTIONS(1433), - [anon_sym_sizeof] = ACTIONS(1435), - [anon_sym_typeof] = ACTIONS(1437), - [anon_sym___makeref] = ACTIONS(1439), - [anon_sym___reftype] = ACTIONS(1441), - [anon_sym___refvalue] = ACTIONS(1443), - [sym_null_literal] = ACTIONS(1445), - [anon_sym_SQUOTE] = ACTIONS(1447), - [sym_integer_literal] = ACTIONS(1445), - [sym_real_literal] = ACTIONS(1449), - [anon_sym_DQUOTE] = ACTIONS(1451), - [sym_verbatim_string_literal] = ACTIONS(1449), - [aux_sym_preproc_if_token1] = ACTIONS(1453), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1455), - [sym_interpolation_verbatim_start] = ACTIONS(1457), - [sym_interpolation_raw_start] = ACTIONS(1459), - [sym_raw_string_start] = ACTIONS(1461), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3455), + [sym__identifier_token] = ACTIONS(25), + [anon_sym_alias] = ACTIONS(29), + [anon_sym_global] = ACTIONS(29), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1239), + [anon_sym_LPAREN] = ACTIONS(1495), + [anon_sym_ref] = ACTIONS(1497), + [anon_sym_LBRACE] = ACTIONS(1245), + [anon_sym_delegate] = ACTIONS(1247), + [anon_sym_async] = ACTIONS(1045), + [anon_sym_file] = ACTIONS(29), + [anon_sym_new] = ACTIONS(1249), + [anon_sym_where] = ACTIONS(29), + [anon_sym_notnull] = ACTIONS(29), + [anon_sym_unmanaged] = ACTIONS(29), + [anon_sym_checked] = ACTIONS(1251), + [anon_sym_BANG] = ACTIONS(1501), + [anon_sym_TILDE] = ACTIONS(1501), + [anon_sym_PLUS_PLUS] = ACTIONS(1501), + [anon_sym_DASH_DASH] = ACTIONS(1501), + [anon_sym_true] = ACTIONS(1257), + [anon_sym_false] = ACTIONS(1257), + [anon_sym_PLUS] = ACTIONS(1499), + [anon_sym_DASH] = ACTIONS(1499), + [anon_sym_STAR] = ACTIONS(1503), + [anon_sym_CARET] = ACTIONS(1501), + [anon_sym_AMP] = ACTIONS(1501), + [anon_sym_this] = ACTIONS(1261), + [anon_sym_scoped] = ACTIONS(85), + [anon_sym_base] = ACTIONS(1263), + [anon_sym_var] = ACTIONS(89), + [sym_predefined_type] = ACTIONS(1265), + [anon_sym_unchecked] = ACTIONS(1251), + [anon_sym_yield] = ACTIONS(29), + [anon_sym_default] = ACTIONS(1267), + [anon_sym_throw] = ACTIONS(1505), + [anon_sym_when] = ACTIONS(29), + [anon_sym_await] = ACTIONS(1507), + [anon_sym_DOT_DOT] = ACTIONS(1509), + [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(1275), + [anon_sym_sizeof] = ACTIONS(1277), + [anon_sym_typeof] = ACTIONS(1279), + [anon_sym___makeref] = ACTIONS(1281), + [anon_sym___reftype] = ACTIONS(1283), + [anon_sym___refvalue] = ACTIONS(1285), + [sym_null_literal] = ACTIONS(1287), + [anon_sym_SQUOTE] = ACTIONS(1289), + [sym_integer_literal] = ACTIONS(1287), + [sym_real_literal] = ACTIONS(1291), + [anon_sym_DQUOTE] = ACTIONS(1293), + [sym_verbatim_string_literal] = ACTIONS(1291), + [aux_sym_preproc_if_token1] = ACTIONS(1295), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + [sym_interpolation_regular_start] = ACTIONS(1297), + [sym_interpolation_verbatim_start] = ACTIONS(1299), + [sym_interpolation_raw_start] = ACTIONS(1301), + [sym_raw_string_start] = ACTIONS(1303), }, [923] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2762), - [sym__name] = STATE(5889), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2247), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(4309), - [sym_non_lvalue_expression] = STATE(3438), - [sym_lvalue_expression] = STATE(3224), - [sym__expression_statement_expression] = STATE(3362), - [sym_assignment_expression] = STATE(3449), - [sym_binary_expression] = STATE(3362), - [sym_postfix_unary_expression] = STATE(3449), - [sym_prefix_unary_expression] = STATE(3449), - [sym__pointer_indirection_expression] = STATE(2747), - [sym_query_expression] = STATE(3362), - [sym_from_clause] = STATE(6146), - [sym_conditional_expression] = STATE(3362), - [sym_conditional_access_expression] = STATE(3362), - [sym_as_expression] = STATE(3362), - [sym_is_expression] = STATE(3362), - [sym_is_pattern_expression] = STATE(3362), - [sym_cast_expression] = STATE(3362), - [sym_checked_expression] = STATE(3362), - [sym_invocation_expression] = STATE(3449), - [sym_switch_expression] = STATE(3362), - [sym_await_expression] = STATE(3449), - [sym_throw_expression] = STATE(3362), - [sym_element_access_expression] = STATE(2747), - [sym_interpolated_string_expression] = STATE(3362), - [sym_member_access_expression] = STATE(2747), - [sym_object_creation_expression] = STATE(3449), - [sym_parenthesized_expression] = STATE(3449), - [sym__parenthesized_lvalue_expression] = STATE(2747), - [sym_lambda_expression] = STATE(3362), - [sym__lambda_expression_init] = STATE(7381), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3362), - [sym_anonymous_method_expression] = STATE(3362), - [sym_anonymous_object_creation_expression] = STATE(3362), - [sym_implicit_array_creation_expression] = STATE(3362), - [sym_implicit_object_creation_expression] = STATE(3362), - [sym_implicit_stackalloc_expression] = STATE(3362), - [sym_initializer_expression] = STATE(3362), - [sym_default_expression] = STATE(3362), - [sym_with_expression] = STATE(3362), - [sym_sizeof_expression] = STATE(3362), - [sym_typeof_expression] = STATE(3362), - [sym_makeref_expression] = STATE(3362), - [sym_ref_expression] = STATE(3362), - [sym_reftype_expression] = STATE(3362), - [sym_refvalue_expression] = STATE(3362), - [sym_stackalloc_expression] = STATE(3362), - [sym_range_expression] = STATE(3362), - [sym_tuple_expression] = STATE(2747), - [sym_literal] = STATE(3362), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3362), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2416), + [sym__name] = STATE(5900), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2193), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(4480), + [sym_non_lvalue_expression] = STATE(3040), + [sym_lvalue_expression] = STATE(3231), + [sym__expression_statement_expression] = STATE(3035), + [sym_assignment_expression] = STATE(3043), + [sym_binary_expression] = STATE(3035), + [sym_postfix_unary_expression] = STATE(3043), + [sym_prefix_unary_expression] = STATE(3043), + [sym__pointer_indirection_expression] = STATE(2415), + [sym_query_expression] = STATE(3035), + [sym_from_clause] = STATE(6149), + [sym_conditional_expression] = STATE(3035), + [sym_conditional_access_expression] = STATE(3035), + [sym_as_expression] = STATE(3035), + [sym_is_expression] = STATE(3035), + [sym_is_pattern_expression] = STATE(3035), + [sym_cast_expression] = STATE(3035), + [sym_checked_expression] = STATE(3035), + [sym_invocation_expression] = STATE(3043), + [sym_switch_expression] = STATE(3035), + [sym_await_expression] = STATE(3043), + [sym_throw_expression] = STATE(3035), + [sym_element_access_expression] = STATE(2415), + [sym_interpolated_string_expression] = STATE(3035), + [sym_member_access_expression] = STATE(2415), + [sym_object_creation_expression] = STATE(3043), + [sym_parenthesized_expression] = STATE(3043), + [sym__parenthesized_lvalue_expression] = STATE(2415), + [sym_lambda_expression] = STATE(3035), + [sym__lambda_expression_init] = STATE(7405), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3035), + [sym_anonymous_method_expression] = STATE(3035), + [sym_anonymous_object_creation_expression] = STATE(3035), + [sym_implicit_array_creation_expression] = STATE(3035), + [sym_implicit_object_creation_expression] = STATE(3035), + [sym_implicit_stackalloc_expression] = STATE(3035), + [sym_initializer_expression] = STATE(3035), + [sym_default_expression] = STATE(3035), + [sym_with_expression] = STATE(3035), + [sym_sizeof_expression] = STATE(3035), + [sym_typeof_expression] = STATE(3035), + [sym_makeref_expression] = STATE(3035), + [sym_ref_expression] = STATE(3035), + [sym_reftype_expression] = STATE(3035), + [sym_refvalue_expression] = STATE(3035), + [sym_stackalloc_expression] = STATE(3035), + [sym_range_expression] = STATE(3035), + [sym_tuple_expression] = STATE(2415), + [sym_literal] = STATE(3035), + [sym_character_literal] = STATE(3037), + [sym_string_literal] = STATE(3037), + [sym_raw_string_literal] = STATE(3037), + [sym_boolean_literal] = STATE(3037), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3035), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(923), [sym_preproc_endregion] = STATE(923), [sym_preproc_line] = STATE(923), @@ -197846,47 +197732,47 @@ 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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3385), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3455), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1307), - [anon_sym_LPAREN] = ACTIONS(1359), - [anon_sym_ref] = ACTIONS(1361), - [anon_sym_LBRACE] = ACTIONS(1313), - [anon_sym_delegate] = ACTIONS(1315), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1239), + [anon_sym_LPAREN] = ACTIONS(1495), + [anon_sym_ref] = ACTIONS(1497), + [anon_sym_LBRACE] = ACTIONS(1245), + [anon_sym_delegate] = ACTIONS(1247), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1317), + [anon_sym_new] = ACTIONS(1249), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1319), - [anon_sym_BANG] = ACTIONS(1107), - [anon_sym_TILDE] = ACTIONS(1107), - [anon_sym_PLUS_PLUS] = ACTIONS(1107), - [anon_sym_DASH_DASH] = ACTIONS(1107), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1109), - [anon_sym_DASH] = ACTIONS(1109), - [anon_sym_STAR] = ACTIONS(1363), - [anon_sym_CARET] = ACTIONS(1107), - [anon_sym_AMP] = ACTIONS(1107), - [anon_sym_this] = ACTIONS(1323), + [anon_sym_checked] = ACTIONS(1251), + [anon_sym_BANG] = ACTIONS(1501), + [anon_sym_TILDE] = ACTIONS(1501), + [anon_sym_PLUS_PLUS] = ACTIONS(1501), + [anon_sym_DASH_DASH] = ACTIONS(1501), + [anon_sym_true] = ACTIONS(1257), + [anon_sym_false] = ACTIONS(1257), + [anon_sym_PLUS] = ACTIONS(1499), + [anon_sym_DASH] = ACTIONS(1499), + [anon_sym_STAR] = ACTIONS(1503), + [anon_sym_CARET] = ACTIONS(1501), + [anon_sym_AMP] = ACTIONS(1501), + [anon_sym_this] = ACTIONS(1261), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1325), + [anon_sym_base] = ACTIONS(1263), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1319), + [sym_predefined_type] = ACTIONS(1265), + [anon_sym_unchecked] = ACTIONS(1251), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1365), + [anon_sym_default] = ACTIONS(1267), + [anon_sym_throw] = ACTIONS(1505), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1367), - [anon_sym_DOT_DOT] = ACTIONS(1369), + [anon_sym_await] = ACTIONS(1507), + [anon_sym_DOT_DOT] = ACTIONS(1509), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -197899,19 +197785,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1333), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(1335), - [anon_sym___reftype] = ACTIONS(1337), - [anon_sym___refvalue] = ACTIONS(1339), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1341), + [anon_sym_stackalloc] = ACTIONS(1275), + [anon_sym_sizeof] = ACTIONS(1277), + [anon_sym_typeof] = ACTIONS(1279), + [anon_sym___makeref] = ACTIONS(1281), + [anon_sym___reftype] = ACTIONS(1283), + [anon_sym___refvalue] = ACTIONS(1285), + [sym_null_literal] = ACTIONS(1287), + [anon_sym_SQUOTE] = ACTIONS(1289), + [sym_integer_literal] = ACTIONS(1287), + [sym_real_literal] = ACTIONS(1291), + [anon_sym_DQUOTE] = ACTIONS(1293), + [sym_verbatim_string_literal] = ACTIONS(1291), + [aux_sym_preproc_if_token1] = ACTIONS(1295), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -197922,90 +197808,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(151), - [sym_interpolation_verbatim_start] = ACTIONS(153), - [sym_interpolation_raw_start] = ACTIONS(155), - [sym_raw_string_start] = ACTIONS(157), + [sym_interpolation_regular_start] = ACTIONS(1297), + [sym_interpolation_verbatim_start] = ACTIONS(1299), + [sym_interpolation_raw_start] = ACTIONS(1301), + [sym_raw_string_start] = ACTIONS(1303), }, [924] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2762), - [sym__name] = STATE(5910), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2247), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(4180), - [sym_non_lvalue_expression] = STATE(3438), - [sym_lvalue_expression] = STATE(3136), - [sym__expression_statement_expression] = STATE(3362), - [sym_assignment_expression] = STATE(3449), - [sym_binary_expression] = STATE(3362), - [sym_postfix_unary_expression] = STATE(3449), - [sym_prefix_unary_expression] = STATE(3449), - [sym__pointer_indirection_expression] = STATE(2747), - [sym_query_expression] = STATE(3362), - [sym_from_clause] = STATE(6171), - [sym_conditional_expression] = STATE(3362), - [sym_conditional_access_expression] = STATE(3362), - [sym_as_expression] = STATE(3362), - [sym_is_expression] = STATE(3362), - [sym_is_pattern_expression] = STATE(3362), - [sym_cast_expression] = STATE(3362), - [sym_checked_expression] = STATE(3362), - [sym_invocation_expression] = STATE(3449), - [sym_switch_expression] = STATE(3362), - [sym_await_expression] = STATE(3449), - [sym_throw_expression] = STATE(3362), - [sym_element_access_expression] = STATE(2747), - [sym_interpolated_string_expression] = STATE(3362), - [sym_member_access_expression] = STATE(2747), - [sym_object_creation_expression] = STATE(3449), - [sym_parenthesized_expression] = STATE(3449), - [sym__parenthesized_lvalue_expression] = STATE(2747), - [sym_lambda_expression] = STATE(3362), - [sym__lambda_expression_init] = STATE(7452), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3362), - [sym_anonymous_method_expression] = STATE(3362), - [sym_anonymous_object_creation_expression] = STATE(3362), - [sym_implicit_array_creation_expression] = STATE(3362), - [sym_implicit_object_creation_expression] = STATE(3362), - [sym_implicit_stackalloc_expression] = STATE(3362), - [sym_initializer_expression] = STATE(3362), - [sym_default_expression] = STATE(3362), - [sym_with_expression] = STATE(3362), - [sym_sizeof_expression] = STATE(3362), - [sym_typeof_expression] = STATE(3362), - [sym_makeref_expression] = STATE(3362), - [sym_ref_expression] = STATE(3362), - [sym_reftype_expression] = STATE(3362), - [sym_refvalue_expression] = STATE(3362), - [sym_stackalloc_expression] = STATE(3362), - [sym_range_expression] = STATE(3362), - [sym_tuple_expression] = STATE(2747), - [sym_literal] = STATE(3362), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3362), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2416), + [sym__name] = STATE(5900), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2193), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(4440), + [sym_non_lvalue_expression] = STATE(3040), + [sym_lvalue_expression] = STATE(3231), + [sym__expression_statement_expression] = STATE(3035), + [sym_assignment_expression] = STATE(3043), + [sym_binary_expression] = STATE(3035), + [sym_postfix_unary_expression] = STATE(3043), + [sym_prefix_unary_expression] = STATE(3043), + [sym__pointer_indirection_expression] = STATE(2415), + [sym_query_expression] = STATE(3035), + [sym_from_clause] = STATE(6149), + [sym_conditional_expression] = STATE(3035), + [sym_conditional_access_expression] = STATE(3035), + [sym_as_expression] = STATE(3035), + [sym_is_expression] = STATE(3035), + [sym_is_pattern_expression] = STATE(3035), + [sym_cast_expression] = STATE(3035), + [sym_checked_expression] = STATE(3035), + [sym_invocation_expression] = STATE(3043), + [sym_switch_expression] = STATE(3035), + [sym_await_expression] = STATE(3043), + [sym_throw_expression] = STATE(3035), + [sym_element_access_expression] = STATE(2415), + [sym_interpolated_string_expression] = STATE(3035), + [sym_member_access_expression] = STATE(2415), + [sym_object_creation_expression] = STATE(3043), + [sym_parenthesized_expression] = STATE(3043), + [sym__parenthesized_lvalue_expression] = STATE(2415), + [sym_lambda_expression] = STATE(3035), + [sym__lambda_expression_init] = STATE(7405), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3035), + [sym_anonymous_method_expression] = STATE(3035), + [sym_anonymous_object_creation_expression] = STATE(3035), + [sym_implicit_array_creation_expression] = STATE(3035), + [sym_implicit_object_creation_expression] = STATE(3035), + [sym_implicit_stackalloc_expression] = STATE(3035), + [sym_initializer_expression] = STATE(3035), + [sym_default_expression] = STATE(3035), + [sym_with_expression] = STATE(3035), + [sym_sizeof_expression] = STATE(3035), + [sym_typeof_expression] = STATE(3035), + [sym_makeref_expression] = STATE(3035), + [sym_ref_expression] = STATE(3035), + [sym_reftype_expression] = STATE(3035), + [sym_refvalue_expression] = STATE(3035), + [sym_stackalloc_expression] = STATE(3035), + [sym_range_expression] = STATE(3035), + [sym_tuple_expression] = STATE(2415), + [sym_literal] = STATE(3035), + [sym_character_literal] = STATE(3037), + [sym_string_literal] = STATE(3037), + [sym_raw_string_literal] = STATE(3037), + [sym_boolean_literal] = STATE(3037), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3035), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(924), [sym_preproc_endregion] = STATE(924), [sym_preproc_line] = STATE(924), @@ -198015,47 +197901,47 @@ 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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3385), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3455), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1307), - [anon_sym_LPAREN] = ACTIONS(1309), - [anon_sym_ref] = ACTIONS(1311), - [anon_sym_LBRACE] = ACTIONS(1313), - [anon_sym_delegate] = ACTIONS(1315), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1239), + [anon_sym_LPAREN] = ACTIONS(1495), + [anon_sym_ref] = ACTIONS(1497), + [anon_sym_LBRACE] = ACTIONS(1245), + [anon_sym_delegate] = ACTIONS(1247), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1317), + [anon_sym_new] = ACTIONS(1249), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1319), - [anon_sym_BANG] = ACTIONS(1069), - [anon_sym_TILDE] = ACTIONS(1069), - [anon_sym_PLUS_PLUS] = ACTIONS(1069), - [anon_sym_DASH_DASH] = ACTIONS(1069), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1071), - [anon_sym_DASH] = ACTIONS(1071), - [anon_sym_STAR] = ACTIONS(1321), - [anon_sym_CARET] = ACTIONS(1069), - [anon_sym_AMP] = ACTIONS(1069), - [anon_sym_this] = ACTIONS(1323), + [anon_sym_checked] = ACTIONS(1251), + [anon_sym_BANG] = ACTIONS(1501), + [anon_sym_TILDE] = ACTIONS(1501), + [anon_sym_PLUS_PLUS] = ACTIONS(1501), + [anon_sym_DASH_DASH] = ACTIONS(1501), + [anon_sym_true] = ACTIONS(1257), + [anon_sym_false] = ACTIONS(1257), + [anon_sym_PLUS] = ACTIONS(1499), + [anon_sym_DASH] = ACTIONS(1499), + [anon_sym_STAR] = ACTIONS(1503), + [anon_sym_CARET] = ACTIONS(1501), + [anon_sym_AMP] = ACTIONS(1501), + [anon_sym_this] = ACTIONS(1261), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1325), + [anon_sym_base] = ACTIONS(1263), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1319), + [sym_predefined_type] = ACTIONS(1265), + [anon_sym_unchecked] = ACTIONS(1251), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1327), + [anon_sym_default] = ACTIONS(1267), + [anon_sym_throw] = ACTIONS(1505), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1329), - [anon_sym_DOT_DOT] = ACTIONS(1331), + [anon_sym_await] = ACTIONS(1507), + [anon_sym_DOT_DOT] = ACTIONS(1509), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -198068,19 +197954,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1333), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(1335), - [anon_sym___reftype] = ACTIONS(1337), - [anon_sym___refvalue] = ACTIONS(1339), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1341), + [anon_sym_stackalloc] = ACTIONS(1275), + [anon_sym_sizeof] = ACTIONS(1277), + [anon_sym_typeof] = ACTIONS(1279), + [anon_sym___makeref] = ACTIONS(1281), + [anon_sym___reftype] = ACTIONS(1283), + [anon_sym___refvalue] = ACTIONS(1285), + [sym_null_literal] = ACTIONS(1287), + [anon_sym_SQUOTE] = ACTIONS(1289), + [sym_integer_literal] = ACTIONS(1287), + [sym_real_literal] = ACTIONS(1291), + [anon_sym_DQUOTE] = ACTIONS(1293), + [sym_verbatim_string_literal] = ACTIONS(1291), + [aux_sym_preproc_if_token1] = ACTIONS(1295), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -198091,90 +197977,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(151), - [sym_interpolation_verbatim_start] = ACTIONS(153), - [sym_interpolation_raw_start] = ACTIONS(155), - [sym_raw_string_start] = ACTIONS(157), + [sym_interpolation_regular_start] = ACTIONS(1297), + [sym_interpolation_verbatim_start] = ACTIONS(1299), + [sym_interpolation_raw_start] = ACTIONS(1301), + [sym_raw_string_start] = ACTIONS(1303), }, [925] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2762), - [sym__name] = STATE(5889), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2247), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(4313), - [sym_non_lvalue_expression] = STATE(3438), - [sym_lvalue_expression] = STATE(3224), - [sym__expression_statement_expression] = STATE(3362), - [sym_assignment_expression] = STATE(3449), - [sym_binary_expression] = STATE(3362), - [sym_postfix_unary_expression] = STATE(3449), - [sym_prefix_unary_expression] = STATE(3449), - [sym__pointer_indirection_expression] = STATE(2747), - [sym_query_expression] = STATE(3362), - [sym_from_clause] = STATE(6146), - [sym_conditional_expression] = STATE(3362), - [sym_conditional_access_expression] = STATE(3362), - [sym_as_expression] = STATE(3362), - [sym_is_expression] = STATE(3362), - [sym_is_pattern_expression] = STATE(3362), - [sym_cast_expression] = STATE(3362), - [sym_checked_expression] = STATE(3362), - [sym_invocation_expression] = STATE(3449), - [sym_switch_expression] = STATE(3362), - [sym_await_expression] = STATE(3449), - [sym_throw_expression] = STATE(3362), - [sym_element_access_expression] = STATE(2747), - [sym_interpolated_string_expression] = STATE(3362), - [sym_member_access_expression] = STATE(2747), - [sym_object_creation_expression] = STATE(3449), - [sym_parenthesized_expression] = STATE(3449), - [sym__parenthesized_lvalue_expression] = STATE(2747), - [sym_lambda_expression] = STATE(3362), - [sym__lambda_expression_init] = STATE(7381), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3362), - [sym_anonymous_method_expression] = STATE(3362), - [sym_anonymous_object_creation_expression] = STATE(3362), - [sym_implicit_array_creation_expression] = STATE(3362), - [sym_implicit_object_creation_expression] = STATE(3362), - [sym_implicit_stackalloc_expression] = STATE(3362), - [sym_initializer_expression] = STATE(3362), - [sym_default_expression] = STATE(3362), - [sym_with_expression] = STATE(3362), - [sym_sizeof_expression] = STATE(3362), - [sym_typeof_expression] = STATE(3362), - [sym_makeref_expression] = STATE(3362), - [sym_ref_expression] = STATE(3362), - [sym_reftype_expression] = STATE(3362), - [sym_refvalue_expression] = STATE(3362), - [sym_stackalloc_expression] = STATE(3362), - [sym_range_expression] = STATE(3362), - [sym_tuple_expression] = STATE(2747), - [sym_literal] = STATE(3362), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3362), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2416), + [sym__name] = STATE(5900), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2193), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(4358), + [sym_non_lvalue_expression] = STATE(3040), + [sym_lvalue_expression] = STATE(3231), + [sym__expression_statement_expression] = STATE(3035), + [sym_assignment_expression] = STATE(3043), + [sym_binary_expression] = STATE(3035), + [sym_postfix_unary_expression] = STATE(3043), + [sym_prefix_unary_expression] = STATE(3043), + [sym__pointer_indirection_expression] = STATE(2415), + [sym_query_expression] = STATE(3035), + [sym_from_clause] = STATE(6149), + [sym_conditional_expression] = STATE(3035), + [sym_conditional_access_expression] = STATE(3035), + [sym_as_expression] = STATE(3035), + [sym_is_expression] = STATE(3035), + [sym_is_pattern_expression] = STATE(3035), + [sym_cast_expression] = STATE(3035), + [sym_checked_expression] = STATE(3035), + [sym_invocation_expression] = STATE(3043), + [sym_switch_expression] = STATE(3035), + [sym_await_expression] = STATE(3043), + [sym_throw_expression] = STATE(3035), + [sym_element_access_expression] = STATE(2415), + [sym_interpolated_string_expression] = STATE(3035), + [sym_member_access_expression] = STATE(2415), + [sym_object_creation_expression] = STATE(3043), + [sym_parenthesized_expression] = STATE(3043), + [sym__parenthesized_lvalue_expression] = STATE(2415), + [sym_lambda_expression] = STATE(3035), + [sym__lambda_expression_init] = STATE(7405), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3035), + [sym_anonymous_method_expression] = STATE(3035), + [sym_anonymous_object_creation_expression] = STATE(3035), + [sym_implicit_array_creation_expression] = STATE(3035), + [sym_implicit_object_creation_expression] = STATE(3035), + [sym_implicit_stackalloc_expression] = STATE(3035), + [sym_initializer_expression] = STATE(3035), + [sym_default_expression] = STATE(3035), + [sym_with_expression] = STATE(3035), + [sym_sizeof_expression] = STATE(3035), + [sym_typeof_expression] = STATE(3035), + [sym_makeref_expression] = STATE(3035), + [sym_ref_expression] = STATE(3035), + [sym_reftype_expression] = STATE(3035), + [sym_refvalue_expression] = STATE(3035), + [sym_stackalloc_expression] = STATE(3035), + [sym_range_expression] = STATE(3035), + [sym_tuple_expression] = STATE(2415), + [sym_literal] = STATE(3035), + [sym_character_literal] = STATE(3037), + [sym_string_literal] = STATE(3037), + [sym_raw_string_literal] = STATE(3037), + [sym_boolean_literal] = STATE(3037), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3035), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(925), [sym_preproc_endregion] = STATE(925), [sym_preproc_line] = STATE(925), @@ -198184,47 +198070,47 @@ 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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3385), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3455), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1307), - [anon_sym_LPAREN] = ACTIONS(1359), - [anon_sym_ref] = ACTIONS(1361), - [anon_sym_LBRACE] = ACTIONS(1313), - [anon_sym_delegate] = ACTIONS(1315), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1239), + [anon_sym_LPAREN] = ACTIONS(1495), + [anon_sym_ref] = ACTIONS(1497), + [anon_sym_LBRACE] = ACTIONS(1245), + [anon_sym_delegate] = ACTIONS(1247), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1317), + [anon_sym_new] = ACTIONS(1249), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1319), - [anon_sym_BANG] = ACTIONS(1107), - [anon_sym_TILDE] = ACTIONS(1107), - [anon_sym_PLUS_PLUS] = ACTIONS(1107), - [anon_sym_DASH_DASH] = ACTIONS(1107), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1109), - [anon_sym_DASH] = ACTIONS(1109), - [anon_sym_STAR] = ACTIONS(1363), - [anon_sym_CARET] = ACTIONS(1107), - [anon_sym_AMP] = ACTIONS(1107), - [anon_sym_this] = ACTIONS(1323), + [anon_sym_checked] = ACTIONS(1251), + [anon_sym_BANG] = ACTIONS(1501), + [anon_sym_TILDE] = ACTIONS(1501), + [anon_sym_PLUS_PLUS] = ACTIONS(1501), + [anon_sym_DASH_DASH] = ACTIONS(1501), + [anon_sym_true] = ACTIONS(1257), + [anon_sym_false] = ACTIONS(1257), + [anon_sym_PLUS] = ACTIONS(1499), + [anon_sym_DASH] = ACTIONS(1499), + [anon_sym_STAR] = ACTIONS(1503), + [anon_sym_CARET] = ACTIONS(1501), + [anon_sym_AMP] = ACTIONS(1501), + [anon_sym_this] = ACTIONS(1261), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1325), + [anon_sym_base] = ACTIONS(1263), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1319), + [sym_predefined_type] = ACTIONS(1265), + [anon_sym_unchecked] = ACTIONS(1251), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1365), + [anon_sym_default] = ACTIONS(1267), + [anon_sym_throw] = ACTIONS(1505), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1367), - [anon_sym_DOT_DOT] = ACTIONS(1369), + [anon_sym_await] = ACTIONS(1507), + [anon_sym_DOT_DOT] = ACTIONS(1509), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -198237,19 +198123,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1333), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(1335), - [anon_sym___reftype] = ACTIONS(1337), - [anon_sym___refvalue] = ACTIONS(1339), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1341), + [anon_sym_stackalloc] = ACTIONS(1275), + [anon_sym_sizeof] = ACTIONS(1277), + [anon_sym_typeof] = ACTIONS(1279), + [anon_sym___makeref] = ACTIONS(1281), + [anon_sym___reftype] = ACTIONS(1283), + [anon_sym___refvalue] = ACTIONS(1285), + [sym_null_literal] = ACTIONS(1287), + [anon_sym_SQUOTE] = ACTIONS(1289), + [sym_integer_literal] = ACTIONS(1287), + [sym_real_literal] = ACTIONS(1291), + [anon_sym_DQUOTE] = ACTIONS(1293), + [sym_verbatim_string_literal] = ACTIONS(1291), + [aux_sym_preproc_if_token1] = ACTIONS(1295), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -198260,90 +198146,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(151), - [sym_interpolation_verbatim_start] = ACTIONS(153), - [sym_interpolation_raw_start] = ACTIONS(155), - [sym_raw_string_start] = ACTIONS(157), + [sym_interpolation_regular_start] = ACTIONS(1297), + [sym_interpolation_verbatim_start] = ACTIONS(1299), + [sym_interpolation_raw_start] = ACTIONS(1301), + [sym_raw_string_start] = ACTIONS(1303), }, [926] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2610), - [sym__name] = STATE(5871), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2319), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(4466), - [sym_non_lvalue_expression] = STATE(3277), - [sym_lvalue_expression] = STATE(3280), - [sym__expression_statement_expression] = STATE(3228), - [sym_assignment_expression] = STATE(3289), - [sym_binary_expression] = STATE(3228), - [sym_postfix_unary_expression] = STATE(3289), - [sym_prefix_unary_expression] = STATE(3289), - [sym__pointer_indirection_expression] = STATE(2609), - [sym_query_expression] = STATE(3228), - [sym_from_clause] = STATE(6177), - [sym_conditional_expression] = STATE(3228), - [sym_conditional_access_expression] = STATE(3228), - [sym_as_expression] = STATE(3228), - [sym_is_expression] = STATE(3228), - [sym_is_pattern_expression] = STATE(3228), - [sym_cast_expression] = STATE(3228), - [sym_checked_expression] = STATE(3228), - [sym_invocation_expression] = STATE(3289), - [sym_switch_expression] = STATE(3228), - [sym_await_expression] = STATE(3289), - [sym_throw_expression] = STATE(3228), - [sym_element_access_expression] = STATE(2609), - [sym_interpolated_string_expression] = STATE(3228), - [sym_member_access_expression] = STATE(2609), - [sym_object_creation_expression] = STATE(3289), - [sym_parenthesized_expression] = STATE(3289), - [sym__parenthesized_lvalue_expression] = STATE(2609), - [sym_lambda_expression] = STATE(3228), - [sym__lambda_expression_init] = STATE(7636), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3228), - [sym_anonymous_method_expression] = STATE(3228), - [sym_anonymous_object_creation_expression] = STATE(3228), - [sym_implicit_array_creation_expression] = STATE(3228), - [sym_implicit_object_creation_expression] = STATE(3228), - [sym_implicit_stackalloc_expression] = STATE(3228), - [sym_initializer_expression] = STATE(3228), - [sym_default_expression] = STATE(3228), - [sym_with_expression] = STATE(3228), - [sym_sizeof_expression] = STATE(3228), - [sym_typeof_expression] = STATE(3228), - [sym_makeref_expression] = STATE(3228), - [sym_ref_expression] = STATE(3228), - [sym_reftype_expression] = STATE(3228), - [sym_refvalue_expression] = STATE(3228), - [sym_stackalloc_expression] = STATE(3228), - [sym_range_expression] = STATE(3228), - [sym_tuple_expression] = STATE(2609), - [sym_literal] = STATE(3228), - [sym_character_literal] = STATE(3278), - [sym_string_literal] = STATE(3278), - [sym_raw_string_literal] = STATE(3278), - [sym_boolean_literal] = STATE(3278), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3228), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2416), + [sym__name] = STATE(5900), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2193), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(4367), + [sym_non_lvalue_expression] = STATE(3040), + [sym_lvalue_expression] = STATE(3231), + [sym__expression_statement_expression] = STATE(3035), + [sym_assignment_expression] = STATE(3043), + [sym_binary_expression] = STATE(3035), + [sym_postfix_unary_expression] = STATE(3043), + [sym_prefix_unary_expression] = STATE(3043), + [sym__pointer_indirection_expression] = STATE(2415), + [sym_query_expression] = STATE(3035), + [sym_from_clause] = STATE(6149), + [sym_conditional_expression] = STATE(3035), + [sym_conditional_access_expression] = STATE(3035), + [sym_as_expression] = STATE(3035), + [sym_is_expression] = STATE(3035), + [sym_is_pattern_expression] = STATE(3035), + [sym_cast_expression] = STATE(3035), + [sym_checked_expression] = STATE(3035), + [sym_invocation_expression] = STATE(3043), + [sym_switch_expression] = STATE(3035), + [sym_await_expression] = STATE(3043), + [sym_throw_expression] = STATE(3035), + [sym_element_access_expression] = STATE(2415), + [sym_interpolated_string_expression] = STATE(3035), + [sym_member_access_expression] = STATE(2415), + [sym_object_creation_expression] = STATE(3043), + [sym_parenthesized_expression] = STATE(3043), + [sym__parenthesized_lvalue_expression] = STATE(2415), + [sym_lambda_expression] = STATE(3035), + [sym__lambda_expression_init] = STATE(7405), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3035), + [sym_anonymous_method_expression] = STATE(3035), + [sym_anonymous_object_creation_expression] = STATE(3035), + [sym_implicit_array_creation_expression] = STATE(3035), + [sym_implicit_object_creation_expression] = STATE(3035), + [sym_implicit_stackalloc_expression] = STATE(3035), + [sym_initializer_expression] = STATE(3035), + [sym_default_expression] = STATE(3035), + [sym_with_expression] = STATE(3035), + [sym_sizeof_expression] = STATE(3035), + [sym_typeof_expression] = STATE(3035), + [sym_makeref_expression] = STATE(3035), + [sym_ref_expression] = STATE(3035), + [sym_reftype_expression] = STATE(3035), + [sym_refvalue_expression] = STATE(3035), + [sym_stackalloc_expression] = STATE(3035), + [sym_range_expression] = STATE(3035), + [sym_tuple_expression] = STATE(2415), + [sym_literal] = STATE(3035), + [sym_character_literal] = STATE(3037), + [sym_string_literal] = STATE(3037), + [sym_raw_string_literal] = STATE(3037), + [sym_boolean_literal] = STATE(3037), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3035), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(926), [sym_preproc_endregion] = STATE(926), [sym_preproc_line] = STATE(926), @@ -198353,47 +198239,47 @@ 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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3396), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3455), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1153), - [anon_sym_LPAREN] = ACTIONS(1559), - [anon_sym_ref] = ACTIONS(1561), - [anon_sym_LBRACE] = ACTIONS(1159), - [anon_sym_delegate] = ACTIONS(1161), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1239), + [anon_sym_LPAREN] = ACTIONS(1495), + [anon_sym_ref] = ACTIONS(1497), + [anon_sym_LBRACE] = ACTIONS(1245), + [anon_sym_delegate] = ACTIONS(1247), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1529), + [anon_sym_new] = ACTIONS(1249), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1167), - [anon_sym_BANG] = ACTIONS(1565), - [anon_sym_TILDE] = ACTIONS(1565), - [anon_sym_PLUS_PLUS] = ACTIONS(1565), - [anon_sym_DASH_DASH] = ACTIONS(1565), - [anon_sym_true] = ACTIONS(1173), - [anon_sym_false] = ACTIONS(1173), - [anon_sym_PLUS] = ACTIONS(1563), - [anon_sym_DASH] = ACTIONS(1563), - [anon_sym_STAR] = ACTIONS(1567), - [anon_sym_CARET] = ACTIONS(1565), - [anon_sym_AMP] = ACTIONS(1565), - [anon_sym_this] = ACTIONS(1177), + [anon_sym_checked] = ACTIONS(1251), + [anon_sym_BANG] = ACTIONS(1501), + [anon_sym_TILDE] = ACTIONS(1501), + [anon_sym_PLUS_PLUS] = ACTIONS(1501), + [anon_sym_DASH_DASH] = ACTIONS(1501), + [anon_sym_true] = ACTIONS(1257), + [anon_sym_false] = ACTIONS(1257), + [anon_sym_PLUS] = ACTIONS(1499), + [anon_sym_DASH] = ACTIONS(1499), + [anon_sym_STAR] = ACTIONS(1503), + [anon_sym_CARET] = ACTIONS(1501), + [anon_sym_AMP] = ACTIONS(1501), + [anon_sym_this] = ACTIONS(1261), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1179), + [anon_sym_base] = ACTIONS(1263), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1181), - [anon_sym_unchecked] = ACTIONS(1167), + [sym_predefined_type] = ACTIONS(1265), + [anon_sym_unchecked] = ACTIONS(1251), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1183), - [anon_sym_throw] = ACTIONS(1569), + [anon_sym_default] = ACTIONS(1267), + [anon_sym_throw] = ACTIONS(1505), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1571), - [anon_sym_DOT_DOT] = ACTIONS(1573), + [anon_sym_await] = ACTIONS(1507), + [anon_sym_DOT_DOT] = ACTIONS(1509), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -198406,19 +198292,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1191), - [anon_sym_sizeof] = ACTIONS(1193), - [anon_sym_typeof] = ACTIONS(1195), - [anon_sym___makeref] = ACTIONS(1197), - [anon_sym___reftype] = ACTIONS(1199), - [anon_sym___refvalue] = ACTIONS(1201), - [sym_null_literal] = ACTIONS(1203), - [anon_sym_SQUOTE] = ACTIONS(1205), - [sym_integer_literal] = ACTIONS(1203), - [sym_real_literal] = ACTIONS(1207), - [anon_sym_DQUOTE] = ACTIONS(1209), - [sym_verbatim_string_literal] = ACTIONS(1207), - [aux_sym_preproc_if_token1] = ACTIONS(1211), + [anon_sym_stackalloc] = ACTIONS(1275), + [anon_sym_sizeof] = ACTIONS(1277), + [anon_sym_typeof] = ACTIONS(1279), + [anon_sym___makeref] = ACTIONS(1281), + [anon_sym___reftype] = ACTIONS(1283), + [anon_sym___refvalue] = ACTIONS(1285), + [sym_null_literal] = ACTIONS(1287), + [anon_sym_SQUOTE] = ACTIONS(1289), + [sym_integer_literal] = ACTIONS(1287), + [sym_real_literal] = ACTIONS(1291), + [anon_sym_DQUOTE] = ACTIONS(1293), + [sym_verbatim_string_literal] = ACTIONS(1291), + [aux_sym_preproc_if_token1] = ACTIONS(1295), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -198429,90 +198315,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1213), - [sym_interpolation_verbatim_start] = ACTIONS(1215), - [sym_interpolation_raw_start] = ACTIONS(1217), - [sym_raw_string_start] = ACTIONS(1219), + [sym_interpolation_regular_start] = ACTIONS(1297), + [sym_interpolation_verbatim_start] = ACTIONS(1299), + [sym_interpolation_raw_start] = ACTIONS(1301), + [sym_raw_string_start] = ACTIONS(1303), }, [927] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2610), - [sym__name] = STATE(5871), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2319), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(3139), - [sym_non_lvalue_expression] = STATE(3277), - [sym_lvalue_expression] = STATE(3280), - [sym__expression_statement_expression] = STATE(3228), - [sym_assignment_expression] = STATE(3289), - [sym_binary_expression] = STATE(3228), - [sym_postfix_unary_expression] = STATE(3289), - [sym_prefix_unary_expression] = STATE(3289), - [sym__pointer_indirection_expression] = STATE(2609), - [sym_query_expression] = STATE(3228), - [sym_from_clause] = STATE(6177), - [sym_conditional_expression] = STATE(3228), - [sym_conditional_access_expression] = STATE(3228), - [sym_as_expression] = STATE(3228), - [sym_is_expression] = STATE(3228), - [sym_is_pattern_expression] = STATE(3228), - [sym_cast_expression] = STATE(3228), - [sym_checked_expression] = STATE(3228), - [sym_invocation_expression] = STATE(3289), - [sym_switch_expression] = STATE(3228), - [sym_await_expression] = STATE(3289), - [sym_throw_expression] = STATE(3228), - [sym_element_access_expression] = STATE(2609), - [sym_interpolated_string_expression] = STATE(3228), - [sym_member_access_expression] = STATE(2609), - [sym_object_creation_expression] = STATE(3289), - [sym_parenthesized_expression] = STATE(3289), - [sym__parenthesized_lvalue_expression] = STATE(2609), - [sym_lambda_expression] = STATE(3228), - [sym__lambda_expression_init] = STATE(7636), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3228), - [sym_anonymous_method_expression] = STATE(3228), - [sym_anonymous_object_creation_expression] = STATE(3228), - [sym_implicit_array_creation_expression] = STATE(3228), - [sym_implicit_object_creation_expression] = STATE(3228), - [sym_implicit_stackalloc_expression] = STATE(3228), - [sym_initializer_expression] = STATE(3228), - [sym_default_expression] = STATE(3228), - [sym_with_expression] = STATE(3228), - [sym_sizeof_expression] = STATE(3228), - [sym_typeof_expression] = STATE(3228), - [sym_makeref_expression] = STATE(3228), - [sym_ref_expression] = STATE(3228), - [sym_reftype_expression] = STATE(3228), - [sym_refvalue_expression] = STATE(3228), - [sym_stackalloc_expression] = STATE(3228), - [sym_range_expression] = STATE(3228), - [sym_tuple_expression] = STATE(2609), - [sym_literal] = STATE(3228), - [sym_character_literal] = STATE(3278), - [sym_string_literal] = STATE(3278), - [sym_raw_string_literal] = STATE(3278), - [sym_boolean_literal] = STATE(3278), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3228), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2416), + [sym__name] = STATE(5900), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2193), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(4375), + [sym_non_lvalue_expression] = STATE(3040), + [sym_lvalue_expression] = STATE(3231), + [sym__expression_statement_expression] = STATE(3035), + [sym_assignment_expression] = STATE(3043), + [sym_binary_expression] = STATE(3035), + [sym_postfix_unary_expression] = STATE(3043), + [sym_prefix_unary_expression] = STATE(3043), + [sym__pointer_indirection_expression] = STATE(2415), + [sym_query_expression] = STATE(3035), + [sym_from_clause] = STATE(6149), + [sym_conditional_expression] = STATE(3035), + [sym_conditional_access_expression] = STATE(3035), + [sym_as_expression] = STATE(3035), + [sym_is_expression] = STATE(3035), + [sym_is_pattern_expression] = STATE(3035), + [sym_cast_expression] = STATE(3035), + [sym_checked_expression] = STATE(3035), + [sym_invocation_expression] = STATE(3043), + [sym_switch_expression] = STATE(3035), + [sym_await_expression] = STATE(3043), + [sym_throw_expression] = STATE(3035), + [sym_element_access_expression] = STATE(2415), + [sym_interpolated_string_expression] = STATE(3035), + [sym_member_access_expression] = STATE(2415), + [sym_object_creation_expression] = STATE(3043), + [sym_parenthesized_expression] = STATE(3043), + [sym__parenthesized_lvalue_expression] = STATE(2415), + [sym_lambda_expression] = STATE(3035), + [sym__lambda_expression_init] = STATE(7405), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3035), + [sym_anonymous_method_expression] = STATE(3035), + [sym_anonymous_object_creation_expression] = STATE(3035), + [sym_implicit_array_creation_expression] = STATE(3035), + [sym_implicit_object_creation_expression] = STATE(3035), + [sym_implicit_stackalloc_expression] = STATE(3035), + [sym_initializer_expression] = STATE(3035), + [sym_default_expression] = STATE(3035), + [sym_with_expression] = STATE(3035), + [sym_sizeof_expression] = STATE(3035), + [sym_typeof_expression] = STATE(3035), + [sym_makeref_expression] = STATE(3035), + [sym_ref_expression] = STATE(3035), + [sym_reftype_expression] = STATE(3035), + [sym_refvalue_expression] = STATE(3035), + [sym_stackalloc_expression] = STATE(3035), + [sym_range_expression] = STATE(3035), + [sym_tuple_expression] = STATE(2415), + [sym_literal] = STATE(3035), + [sym_character_literal] = STATE(3037), + [sym_string_literal] = STATE(3037), + [sym_raw_string_literal] = STATE(3037), + [sym_boolean_literal] = STATE(3037), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3035), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(927), [sym_preproc_endregion] = STATE(927), [sym_preproc_line] = STATE(927), @@ -198522,47 +198408,47 @@ 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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3396), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3455), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1153), - [anon_sym_LPAREN] = ACTIONS(1559), - [anon_sym_ref] = ACTIONS(1561), - [anon_sym_LBRACE] = ACTIONS(1159), - [anon_sym_delegate] = ACTIONS(1161), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1239), + [anon_sym_LPAREN] = ACTIONS(1495), + [anon_sym_ref] = ACTIONS(1497), + [anon_sym_LBRACE] = ACTIONS(1245), + [anon_sym_delegate] = ACTIONS(1247), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1529), + [anon_sym_new] = ACTIONS(1249), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1167), - [anon_sym_BANG] = ACTIONS(1565), - [anon_sym_TILDE] = ACTIONS(1565), - [anon_sym_PLUS_PLUS] = ACTIONS(1565), - [anon_sym_DASH_DASH] = ACTIONS(1565), - [anon_sym_true] = ACTIONS(1173), - [anon_sym_false] = ACTIONS(1173), - [anon_sym_PLUS] = ACTIONS(1563), - [anon_sym_DASH] = ACTIONS(1563), - [anon_sym_STAR] = ACTIONS(1567), - [anon_sym_CARET] = ACTIONS(1565), - [anon_sym_AMP] = ACTIONS(1565), - [anon_sym_this] = ACTIONS(1177), + [anon_sym_checked] = ACTIONS(1251), + [anon_sym_BANG] = ACTIONS(1501), + [anon_sym_TILDE] = ACTIONS(1501), + [anon_sym_PLUS_PLUS] = ACTIONS(1501), + [anon_sym_DASH_DASH] = ACTIONS(1501), + [anon_sym_true] = ACTIONS(1257), + [anon_sym_false] = ACTIONS(1257), + [anon_sym_PLUS] = ACTIONS(1499), + [anon_sym_DASH] = ACTIONS(1499), + [anon_sym_STAR] = ACTIONS(1503), + [anon_sym_CARET] = ACTIONS(1501), + [anon_sym_AMP] = ACTIONS(1501), + [anon_sym_this] = ACTIONS(1261), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1179), + [anon_sym_base] = ACTIONS(1263), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1181), - [anon_sym_unchecked] = ACTIONS(1167), + [sym_predefined_type] = ACTIONS(1265), + [anon_sym_unchecked] = ACTIONS(1251), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1183), - [anon_sym_throw] = ACTIONS(1569), + [anon_sym_default] = ACTIONS(1267), + [anon_sym_throw] = ACTIONS(1505), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1571), - [anon_sym_DOT_DOT] = ACTIONS(1573), + [anon_sym_await] = ACTIONS(1507), + [anon_sym_DOT_DOT] = ACTIONS(1509), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -198575,19 +198461,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1191), - [anon_sym_sizeof] = ACTIONS(1193), - [anon_sym_typeof] = ACTIONS(1195), - [anon_sym___makeref] = ACTIONS(1197), - [anon_sym___reftype] = ACTIONS(1199), - [anon_sym___refvalue] = ACTIONS(1201), - [sym_null_literal] = ACTIONS(1203), - [anon_sym_SQUOTE] = ACTIONS(1205), - [sym_integer_literal] = ACTIONS(1203), - [sym_real_literal] = ACTIONS(1207), - [anon_sym_DQUOTE] = ACTIONS(1209), - [sym_verbatim_string_literal] = ACTIONS(1207), - [aux_sym_preproc_if_token1] = ACTIONS(1211), + [anon_sym_stackalloc] = ACTIONS(1275), + [anon_sym_sizeof] = ACTIONS(1277), + [anon_sym_typeof] = ACTIONS(1279), + [anon_sym___makeref] = ACTIONS(1281), + [anon_sym___reftype] = ACTIONS(1283), + [anon_sym___refvalue] = ACTIONS(1285), + [sym_null_literal] = ACTIONS(1287), + [anon_sym_SQUOTE] = ACTIONS(1289), + [sym_integer_literal] = ACTIONS(1287), + [sym_real_literal] = ACTIONS(1291), + [anon_sym_DQUOTE] = ACTIONS(1293), + [sym_verbatim_string_literal] = ACTIONS(1291), + [aux_sym_preproc_if_token1] = ACTIONS(1295), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -198598,90 +198484,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1213), - [sym_interpolation_verbatim_start] = ACTIONS(1215), - [sym_interpolation_raw_start] = ACTIONS(1217), - [sym_raw_string_start] = ACTIONS(1219), + [sym_interpolation_regular_start] = ACTIONS(1297), + [sym_interpolation_verbatim_start] = ACTIONS(1299), + [sym_interpolation_raw_start] = ACTIONS(1301), + [sym_raw_string_start] = ACTIONS(1303), }, [928] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2610), - [sym__name] = STATE(5896), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2384), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(4619), - [sym_non_lvalue_expression] = STATE(3277), - [sym_lvalue_expression] = STATE(3392), - [sym__expression_statement_expression] = STATE(3228), - [sym_assignment_expression] = STATE(3289), - [sym_binary_expression] = STATE(3228), - [sym_postfix_unary_expression] = STATE(3289), - [sym_prefix_unary_expression] = STATE(3289), - [sym__pointer_indirection_expression] = STATE(2609), - [sym_query_expression] = STATE(3228), - [sym_from_clause] = STATE(6173), - [sym_conditional_expression] = STATE(3228), - [sym_conditional_access_expression] = STATE(3228), - [sym_as_expression] = STATE(3228), - [sym_is_expression] = STATE(3228), - [sym_is_pattern_expression] = STATE(3228), - [sym_cast_expression] = STATE(3228), - [sym_checked_expression] = STATE(3228), - [sym_invocation_expression] = STATE(3289), - [sym_switch_expression] = STATE(3228), - [sym_await_expression] = STATE(3289), - [sym_throw_expression] = STATE(3228), - [sym_element_access_expression] = STATE(2609), - [sym_interpolated_string_expression] = STATE(3228), - [sym_member_access_expression] = STATE(2609), - [sym_object_creation_expression] = STATE(3289), - [sym_parenthesized_expression] = STATE(3289), - [sym__parenthesized_lvalue_expression] = STATE(2609), - [sym_lambda_expression] = STATE(3228), - [sym__lambda_expression_init] = STATE(7334), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3228), - [sym_anonymous_method_expression] = STATE(3228), - [sym_anonymous_object_creation_expression] = STATE(3228), - [sym_implicit_array_creation_expression] = STATE(3228), - [sym_implicit_object_creation_expression] = STATE(3228), - [sym_implicit_stackalloc_expression] = STATE(3228), - [sym_initializer_expression] = STATE(3228), - [sym_default_expression] = STATE(3228), - [sym_with_expression] = STATE(3228), - [sym_sizeof_expression] = STATE(3228), - [sym_typeof_expression] = STATE(3228), - [sym_makeref_expression] = STATE(3228), - [sym_ref_expression] = STATE(3228), - [sym_reftype_expression] = STATE(3228), - [sym_refvalue_expression] = STATE(3228), - [sym_stackalloc_expression] = STATE(3228), - [sym_range_expression] = STATE(3228), - [sym_tuple_expression] = STATE(2609), - [sym_literal] = STATE(3228), - [sym_character_literal] = STATE(3278), - [sym_string_literal] = STATE(3278), - [sym_raw_string_literal] = STATE(3278), - [sym_boolean_literal] = STATE(3278), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3228), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2416), + [sym__name] = STATE(5900), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2193), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(4442), + [sym_non_lvalue_expression] = STATE(3040), + [sym_lvalue_expression] = STATE(3231), + [sym__expression_statement_expression] = STATE(3035), + [sym_assignment_expression] = STATE(3043), + [sym_binary_expression] = STATE(3035), + [sym_postfix_unary_expression] = STATE(3043), + [sym_prefix_unary_expression] = STATE(3043), + [sym__pointer_indirection_expression] = STATE(2415), + [sym_query_expression] = STATE(3035), + [sym_from_clause] = STATE(6149), + [sym_conditional_expression] = STATE(3035), + [sym_conditional_access_expression] = STATE(3035), + [sym_as_expression] = STATE(3035), + [sym_is_expression] = STATE(3035), + [sym_is_pattern_expression] = STATE(3035), + [sym_cast_expression] = STATE(3035), + [sym_checked_expression] = STATE(3035), + [sym_invocation_expression] = STATE(3043), + [sym_switch_expression] = STATE(3035), + [sym_await_expression] = STATE(3043), + [sym_throw_expression] = STATE(3035), + [sym_element_access_expression] = STATE(2415), + [sym_interpolated_string_expression] = STATE(3035), + [sym_member_access_expression] = STATE(2415), + [sym_object_creation_expression] = STATE(3043), + [sym_parenthesized_expression] = STATE(3043), + [sym__parenthesized_lvalue_expression] = STATE(2415), + [sym_lambda_expression] = STATE(3035), + [sym__lambda_expression_init] = STATE(7405), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3035), + [sym_anonymous_method_expression] = STATE(3035), + [sym_anonymous_object_creation_expression] = STATE(3035), + [sym_implicit_array_creation_expression] = STATE(3035), + [sym_implicit_object_creation_expression] = STATE(3035), + [sym_implicit_stackalloc_expression] = STATE(3035), + [sym_initializer_expression] = STATE(3035), + [sym_default_expression] = STATE(3035), + [sym_with_expression] = STATE(3035), + [sym_sizeof_expression] = STATE(3035), + [sym_typeof_expression] = STATE(3035), + [sym_makeref_expression] = STATE(3035), + [sym_ref_expression] = STATE(3035), + [sym_reftype_expression] = STATE(3035), + [sym_refvalue_expression] = STATE(3035), + [sym_stackalloc_expression] = STATE(3035), + [sym_range_expression] = STATE(3035), + [sym_tuple_expression] = STATE(2415), + [sym_literal] = STATE(3035), + [sym_character_literal] = STATE(3037), + [sym_string_literal] = STATE(3037), + [sym_raw_string_literal] = STATE(3037), + [sym_boolean_literal] = STATE(3037), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3035), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(928), [sym_preproc_endregion] = STATE(928), [sym_preproc_line] = STATE(928), @@ -198691,47 +198577,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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3396), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3455), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1153), - [anon_sym_LPAREN] = ACTIONS(1859), - [anon_sym_ref] = ACTIONS(1861), - [anon_sym_LBRACE] = ACTIONS(1159), - [anon_sym_delegate] = ACTIONS(1161), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1239), + [anon_sym_LPAREN] = ACTIONS(1495), + [anon_sym_ref] = ACTIONS(1497), + [anon_sym_LBRACE] = ACTIONS(1245), + [anon_sym_delegate] = ACTIONS(1247), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1863), + [anon_sym_new] = ACTIONS(1249), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1167), - [anon_sym_BANG] = ACTIONS(1867), - [anon_sym_TILDE] = ACTIONS(1867), - [anon_sym_PLUS_PLUS] = ACTIONS(1867), - [anon_sym_DASH_DASH] = ACTIONS(1867), - [anon_sym_true] = ACTIONS(1173), - [anon_sym_false] = ACTIONS(1173), - [anon_sym_PLUS] = ACTIONS(1865), - [anon_sym_DASH] = ACTIONS(1865), - [anon_sym_STAR] = ACTIONS(1869), - [anon_sym_CARET] = ACTIONS(1867), - [anon_sym_AMP] = ACTIONS(1867), - [anon_sym_this] = ACTIONS(1177), + [anon_sym_checked] = ACTIONS(1251), + [anon_sym_BANG] = ACTIONS(1501), + [anon_sym_TILDE] = ACTIONS(1501), + [anon_sym_PLUS_PLUS] = ACTIONS(1501), + [anon_sym_DASH_DASH] = ACTIONS(1501), + [anon_sym_true] = ACTIONS(1257), + [anon_sym_false] = ACTIONS(1257), + [anon_sym_PLUS] = ACTIONS(1499), + [anon_sym_DASH] = ACTIONS(1499), + [anon_sym_STAR] = ACTIONS(1503), + [anon_sym_CARET] = ACTIONS(1501), + [anon_sym_AMP] = ACTIONS(1501), + [anon_sym_this] = ACTIONS(1261), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1179), + [anon_sym_base] = ACTIONS(1263), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1181), - [anon_sym_unchecked] = ACTIONS(1167), + [sym_predefined_type] = ACTIONS(1265), + [anon_sym_unchecked] = ACTIONS(1251), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1183), - [anon_sym_throw] = ACTIONS(1871), + [anon_sym_default] = ACTIONS(1267), + [anon_sym_throw] = ACTIONS(1505), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1873), - [anon_sym_DOT_DOT] = ACTIONS(1875), + [anon_sym_await] = ACTIONS(1507), + [anon_sym_DOT_DOT] = ACTIONS(1509), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -198744,19 +198630,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1191), - [anon_sym_sizeof] = ACTIONS(1193), - [anon_sym_typeof] = ACTIONS(1195), - [anon_sym___makeref] = ACTIONS(1197), - [anon_sym___reftype] = ACTIONS(1199), - [anon_sym___refvalue] = ACTIONS(1201), - [sym_null_literal] = ACTIONS(1203), - [anon_sym_SQUOTE] = ACTIONS(1205), - [sym_integer_literal] = ACTIONS(1203), - [sym_real_literal] = ACTIONS(1207), - [anon_sym_DQUOTE] = ACTIONS(1209), - [sym_verbatim_string_literal] = ACTIONS(1207), - [aux_sym_preproc_if_token1] = ACTIONS(1211), + [anon_sym_stackalloc] = ACTIONS(1275), + [anon_sym_sizeof] = ACTIONS(1277), + [anon_sym_typeof] = ACTIONS(1279), + [anon_sym___makeref] = ACTIONS(1281), + [anon_sym___reftype] = ACTIONS(1283), + [anon_sym___refvalue] = ACTIONS(1285), + [sym_null_literal] = ACTIONS(1287), + [anon_sym_SQUOTE] = ACTIONS(1289), + [sym_integer_literal] = ACTIONS(1287), + [sym_real_literal] = ACTIONS(1291), + [anon_sym_DQUOTE] = ACTIONS(1293), + [sym_verbatim_string_literal] = ACTIONS(1291), + [aux_sym_preproc_if_token1] = ACTIONS(1295), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -198767,90 +198653,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1213), - [sym_interpolation_verbatim_start] = ACTIONS(1215), - [sym_interpolation_raw_start] = ACTIONS(1217), - [sym_raw_string_start] = ACTIONS(1219), + [sym_interpolation_regular_start] = ACTIONS(1297), + [sym_interpolation_verbatim_start] = ACTIONS(1299), + [sym_interpolation_raw_start] = ACTIONS(1301), + [sym_raw_string_start] = ACTIONS(1303), }, [929] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2610), - [sym__name] = STATE(5896), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2384), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(4621), - [sym_non_lvalue_expression] = STATE(3277), - [sym_lvalue_expression] = STATE(3392), - [sym__expression_statement_expression] = STATE(3228), - [sym_assignment_expression] = STATE(3289), - [sym_binary_expression] = STATE(3228), - [sym_postfix_unary_expression] = STATE(3289), - [sym_prefix_unary_expression] = STATE(3289), - [sym__pointer_indirection_expression] = STATE(2609), - [sym_query_expression] = STATE(3228), - [sym_from_clause] = STATE(6173), - [sym_conditional_expression] = STATE(3228), - [sym_conditional_access_expression] = STATE(3228), - [sym_as_expression] = STATE(3228), - [sym_is_expression] = STATE(3228), - [sym_is_pattern_expression] = STATE(3228), - [sym_cast_expression] = STATE(3228), - [sym_checked_expression] = STATE(3228), - [sym_invocation_expression] = STATE(3289), - [sym_switch_expression] = STATE(3228), - [sym_await_expression] = STATE(3289), - [sym_throw_expression] = STATE(3228), - [sym_element_access_expression] = STATE(2609), - [sym_interpolated_string_expression] = STATE(3228), - [sym_member_access_expression] = STATE(2609), - [sym_object_creation_expression] = STATE(3289), - [sym_parenthesized_expression] = STATE(3289), - [sym__parenthesized_lvalue_expression] = STATE(2609), - [sym_lambda_expression] = STATE(3228), - [sym__lambda_expression_init] = STATE(7334), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3228), - [sym_anonymous_method_expression] = STATE(3228), - [sym_anonymous_object_creation_expression] = STATE(3228), - [sym_implicit_array_creation_expression] = STATE(3228), - [sym_implicit_object_creation_expression] = STATE(3228), - [sym_implicit_stackalloc_expression] = STATE(3228), - [sym_initializer_expression] = STATE(3228), - [sym_default_expression] = STATE(3228), - [sym_with_expression] = STATE(3228), - [sym_sizeof_expression] = STATE(3228), - [sym_typeof_expression] = STATE(3228), - [sym_makeref_expression] = STATE(3228), - [sym_ref_expression] = STATE(3228), - [sym_reftype_expression] = STATE(3228), - [sym_refvalue_expression] = STATE(3228), - [sym_stackalloc_expression] = STATE(3228), - [sym_range_expression] = STATE(3228), - [sym_tuple_expression] = STATE(2609), - [sym_literal] = STATE(3228), - [sym_character_literal] = STATE(3278), - [sym_string_literal] = STATE(3278), - [sym_raw_string_literal] = STATE(3278), - [sym_boolean_literal] = STATE(3278), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3228), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2416), + [sym__name] = STATE(5900), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2193), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(4478), + [sym_non_lvalue_expression] = STATE(3040), + [sym_lvalue_expression] = STATE(3231), + [sym__expression_statement_expression] = STATE(3035), + [sym_assignment_expression] = STATE(3043), + [sym_binary_expression] = STATE(3035), + [sym_postfix_unary_expression] = STATE(3043), + [sym_prefix_unary_expression] = STATE(3043), + [sym__pointer_indirection_expression] = STATE(2415), + [sym_query_expression] = STATE(3035), + [sym_from_clause] = STATE(6149), + [sym_conditional_expression] = STATE(3035), + [sym_conditional_access_expression] = STATE(3035), + [sym_as_expression] = STATE(3035), + [sym_is_expression] = STATE(3035), + [sym_is_pattern_expression] = STATE(3035), + [sym_cast_expression] = STATE(3035), + [sym_checked_expression] = STATE(3035), + [sym_invocation_expression] = STATE(3043), + [sym_switch_expression] = STATE(3035), + [sym_await_expression] = STATE(3043), + [sym_throw_expression] = STATE(3035), + [sym_element_access_expression] = STATE(2415), + [sym_interpolated_string_expression] = STATE(3035), + [sym_member_access_expression] = STATE(2415), + [sym_object_creation_expression] = STATE(3043), + [sym_parenthesized_expression] = STATE(3043), + [sym__parenthesized_lvalue_expression] = STATE(2415), + [sym_lambda_expression] = STATE(3035), + [sym__lambda_expression_init] = STATE(7405), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3035), + [sym_anonymous_method_expression] = STATE(3035), + [sym_anonymous_object_creation_expression] = STATE(3035), + [sym_implicit_array_creation_expression] = STATE(3035), + [sym_implicit_object_creation_expression] = STATE(3035), + [sym_implicit_stackalloc_expression] = STATE(3035), + [sym_initializer_expression] = STATE(3035), + [sym_default_expression] = STATE(3035), + [sym_with_expression] = STATE(3035), + [sym_sizeof_expression] = STATE(3035), + [sym_typeof_expression] = STATE(3035), + [sym_makeref_expression] = STATE(3035), + [sym_ref_expression] = STATE(3035), + [sym_reftype_expression] = STATE(3035), + [sym_refvalue_expression] = STATE(3035), + [sym_stackalloc_expression] = STATE(3035), + [sym_range_expression] = STATE(3035), + [sym_tuple_expression] = STATE(2415), + [sym_literal] = STATE(3035), + [sym_character_literal] = STATE(3037), + [sym_string_literal] = STATE(3037), + [sym_raw_string_literal] = STATE(3037), + [sym_boolean_literal] = STATE(3037), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3035), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(929), [sym_preproc_endregion] = STATE(929), [sym_preproc_line] = STATE(929), @@ -198860,47 +198746,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(929), [sym_preproc_define] = STATE(929), [sym_preproc_undef] = STATE(929), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3396), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3455), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1153), - [anon_sym_LPAREN] = ACTIONS(1859), - [anon_sym_ref] = ACTIONS(1861), - [anon_sym_LBRACE] = ACTIONS(1159), - [anon_sym_delegate] = ACTIONS(1161), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1239), + [anon_sym_LPAREN] = ACTIONS(1495), + [anon_sym_ref] = ACTIONS(1497), + [anon_sym_LBRACE] = ACTIONS(1245), + [anon_sym_delegate] = ACTIONS(1247), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1863), + [anon_sym_new] = ACTIONS(1249), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1167), - [anon_sym_BANG] = ACTIONS(1867), - [anon_sym_TILDE] = ACTIONS(1867), - [anon_sym_PLUS_PLUS] = ACTIONS(1867), - [anon_sym_DASH_DASH] = ACTIONS(1867), - [anon_sym_true] = ACTIONS(1173), - [anon_sym_false] = ACTIONS(1173), - [anon_sym_PLUS] = ACTIONS(1865), - [anon_sym_DASH] = ACTIONS(1865), - [anon_sym_STAR] = ACTIONS(1869), - [anon_sym_CARET] = ACTIONS(1867), - [anon_sym_AMP] = ACTIONS(1867), - [anon_sym_this] = ACTIONS(1177), + [anon_sym_checked] = ACTIONS(1251), + [anon_sym_BANG] = ACTIONS(1501), + [anon_sym_TILDE] = ACTIONS(1501), + [anon_sym_PLUS_PLUS] = ACTIONS(1501), + [anon_sym_DASH_DASH] = ACTIONS(1501), + [anon_sym_true] = ACTIONS(1257), + [anon_sym_false] = ACTIONS(1257), + [anon_sym_PLUS] = ACTIONS(1499), + [anon_sym_DASH] = ACTIONS(1499), + [anon_sym_STAR] = ACTIONS(1503), + [anon_sym_CARET] = ACTIONS(1501), + [anon_sym_AMP] = ACTIONS(1501), + [anon_sym_this] = ACTIONS(1261), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1179), + [anon_sym_base] = ACTIONS(1263), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1181), - [anon_sym_unchecked] = ACTIONS(1167), + [sym_predefined_type] = ACTIONS(1265), + [anon_sym_unchecked] = ACTIONS(1251), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1183), - [anon_sym_throw] = ACTIONS(1871), + [anon_sym_default] = ACTIONS(1267), + [anon_sym_throw] = ACTIONS(1505), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1873), - [anon_sym_DOT_DOT] = ACTIONS(1875), + [anon_sym_await] = ACTIONS(1507), + [anon_sym_DOT_DOT] = ACTIONS(1509), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -198913,19 +198799,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1191), - [anon_sym_sizeof] = ACTIONS(1193), - [anon_sym_typeof] = ACTIONS(1195), - [anon_sym___makeref] = ACTIONS(1197), - [anon_sym___reftype] = ACTIONS(1199), - [anon_sym___refvalue] = ACTIONS(1201), - [sym_null_literal] = ACTIONS(1203), - [anon_sym_SQUOTE] = ACTIONS(1205), - [sym_integer_literal] = ACTIONS(1203), - [sym_real_literal] = ACTIONS(1207), - [anon_sym_DQUOTE] = ACTIONS(1209), - [sym_verbatim_string_literal] = ACTIONS(1207), - [aux_sym_preproc_if_token1] = ACTIONS(1211), + [anon_sym_stackalloc] = ACTIONS(1275), + [anon_sym_sizeof] = ACTIONS(1277), + [anon_sym_typeof] = ACTIONS(1279), + [anon_sym___makeref] = ACTIONS(1281), + [anon_sym___reftype] = ACTIONS(1283), + [anon_sym___refvalue] = ACTIONS(1285), + [sym_null_literal] = ACTIONS(1287), + [anon_sym_SQUOTE] = ACTIONS(1289), + [sym_integer_literal] = ACTIONS(1287), + [sym_real_literal] = ACTIONS(1291), + [anon_sym_DQUOTE] = ACTIONS(1293), + [sym_verbatim_string_literal] = ACTIONS(1291), + [aux_sym_preproc_if_token1] = ACTIONS(1295), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -198936,90 +198822,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1213), - [sym_interpolation_verbatim_start] = ACTIONS(1215), - [sym_interpolation_raw_start] = ACTIONS(1217), - [sym_raw_string_start] = ACTIONS(1219), + [sym_interpolation_regular_start] = ACTIONS(1297), + [sym_interpolation_verbatim_start] = ACTIONS(1299), + [sym_interpolation_raw_start] = ACTIONS(1301), + [sym_raw_string_start] = ACTIONS(1303), }, [930] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2610), - [sym__name] = STATE(5896), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2384), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(4653), - [sym_non_lvalue_expression] = STATE(3277), - [sym_lvalue_expression] = STATE(3392), - [sym__expression_statement_expression] = STATE(3228), - [sym_assignment_expression] = STATE(3289), - [sym_binary_expression] = STATE(3228), - [sym_postfix_unary_expression] = STATE(3289), - [sym_prefix_unary_expression] = STATE(3289), - [sym__pointer_indirection_expression] = STATE(2609), - [sym_query_expression] = STATE(3228), - [sym_from_clause] = STATE(6173), - [sym_conditional_expression] = STATE(3228), - [sym_conditional_access_expression] = STATE(3228), - [sym_as_expression] = STATE(3228), - [sym_is_expression] = STATE(3228), - [sym_is_pattern_expression] = STATE(3228), - [sym_cast_expression] = STATE(3228), - [sym_checked_expression] = STATE(3228), - [sym_invocation_expression] = STATE(3289), - [sym_switch_expression] = STATE(3228), - [sym_await_expression] = STATE(3289), - [sym_throw_expression] = STATE(3228), - [sym_element_access_expression] = STATE(2609), - [sym_interpolated_string_expression] = STATE(3228), - [sym_member_access_expression] = STATE(2609), - [sym_object_creation_expression] = STATE(3289), - [sym_parenthesized_expression] = STATE(3289), - [sym__parenthesized_lvalue_expression] = STATE(2609), - [sym_lambda_expression] = STATE(3228), - [sym__lambda_expression_init] = STATE(7334), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3228), - [sym_anonymous_method_expression] = STATE(3228), - [sym_anonymous_object_creation_expression] = STATE(3228), - [sym_implicit_array_creation_expression] = STATE(3228), - [sym_implicit_object_creation_expression] = STATE(3228), - [sym_implicit_stackalloc_expression] = STATE(3228), - [sym_initializer_expression] = STATE(3228), - [sym_default_expression] = STATE(3228), - [sym_with_expression] = STATE(3228), - [sym_sizeof_expression] = STATE(3228), - [sym_typeof_expression] = STATE(3228), - [sym_makeref_expression] = STATE(3228), - [sym_ref_expression] = STATE(3228), - [sym_reftype_expression] = STATE(3228), - [sym_refvalue_expression] = STATE(3228), - [sym_stackalloc_expression] = STATE(3228), - [sym_range_expression] = STATE(3228), - [sym_tuple_expression] = STATE(2609), - [sym_literal] = STATE(3228), - [sym_character_literal] = STATE(3278), - [sym_string_literal] = STATE(3278), - [sym_raw_string_literal] = STATE(3278), - [sym_boolean_literal] = STATE(3278), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3228), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(3182), + [sym__name] = STATE(5888), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2286), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2262), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(4684), + [sym_non_lvalue_expression] = STATE(4580), + [sym_lvalue_expression] = STATE(3373), + [sym__expression_statement_expression] = STATE(4573), + [sym_assignment_expression] = STATE(4581), + [sym_binary_expression] = STATE(4573), + [sym_postfix_unary_expression] = STATE(4581), + [sym_prefix_unary_expression] = STATE(4581), + [sym__pointer_indirection_expression] = STATE(3144), + [sym_query_expression] = STATE(4573), + [sym_from_clause] = STATE(6133), + [sym_conditional_expression] = STATE(4573), + [sym_conditional_access_expression] = STATE(4573), + [sym_as_expression] = STATE(4573), + [sym_is_expression] = STATE(4573), + [sym_is_pattern_expression] = STATE(4573), + [sym_cast_expression] = STATE(4573), + [sym_checked_expression] = STATE(4573), + [sym_invocation_expression] = STATE(4581), + [sym_switch_expression] = STATE(4573), + [sym_await_expression] = STATE(4581), + [sym_throw_expression] = STATE(4573), + [sym_element_access_expression] = STATE(3144), + [sym_interpolated_string_expression] = STATE(4573), + [sym_member_access_expression] = STATE(3144), + [sym_object_creation_expression] = STATE(4581), + [sym_parenthesized_expression] = STATE(4581), + [sym__parenthesized_lvalue_expression] = STATE(3144), + [sym_lambda_expression] = STATE(4573), + [sym__lambda_expression_init] = STATE(7614), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(4573), + [sym_anonymous_method_expression] = STATE(4573), + [sym_anonymous_object_creation_expression] = STATE(4573), + [sym_implicit_array_creation_expression] = STATE(4573), + [sym_implicit_object_creation_expression] = STATE(4573), + [sym_implicit_stackalloc_expression] = STATE(4573), + [sym_initializer_expression] = STATE(4573), + [sym_default_expression] = STATE(4573), + [sym_with_expression] = STATE(4573), + [sym_sizeof_expression] = STATE(4573), + [sym_typeof_expression] = STATE(4573), + [sym_makeref_expression] = STATE(4573), + [sym_ref_expression] = STATE(4573), + [sym_reftype_expression] = STATE(4573), + [sym_refvalue_expression] = STATE(4573), + [sym_stackalloc_expression] = STATE(4573), + [sym_range_expression] = STATE(4573), + [sym_tuple_expression] = STATE(3144), + [sym_literal] = STATE(4573), + [sym_character_literal] = STATE(4575), + [sym_string_literal] = STATE(4575), + [sym_raw_string_literal] = STATE(4575), + [sym_boolean_literal] = STATE(4575), + [sym_identifier] = STATE(2237), + [sym__reserved_identifier] = STATE(2229), + [sym_preproc_if_in_expression] = STATE(4573), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(930), [sym_preproc_endregion] = STATE(930), [sym_preproc_line] = STATE(930), @@ -199029,47 +198915,216 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(930), [sym_preproc_define] = STATE(930), [sym_preproc_undef] = STATE(930), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3396), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3501), + [sym__identifier_token] = ACTIONS(1385), + [anon_sym_alias] = ACTIONS(1387), + [anon_sym_global] = ACTIONS(1387), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1389), + [anon_sym_LPAREN] = ACTIONS(1565), + [anon_sym_ref] = ACTIONS(1567), + [anon_sym_LBRACE] = ACTIONS(1395), + [anon_sym_delegate] = ACTIONS(1397), + [anon_sym_async] = ACTIONS(1045), + [anon_sym_file] = ACTIONS(1387), + [anon_sym_new] = ACTIONS(1399), + [anon_sym_where] = ACTIONS(1387), + [anon_sym_notnull] = ACTIONS(1387), + [anon_sym_unmanaged] = ACTIONS(1387), + [anon_sym_checked] = ACTIONS(1401), + [anon_sym_BANG] = ACTIONS(1571), + [anon_sym_TILDE] = ACTIONS(1571), + [anon_sym_PLUS_PLUS] = ACTIONS(1571), + [anon_sym_DASH_DASH] = ACTIONS(1571), + [anon_sym_true] = ACTIONS(1407), + [anon_sym_false] = ACTIONS(1407), + [anon_sym_PLUS] = ACTIONS(1569), + [anon_sym_DASH] = ACTIONS(1569), + [anon_sym_STAR] = ACTIONS(1409), + [anon_sym_CARET] = ACTIONS(1571), + [anon_sym_AMP] = ACTIONS(1571), + [anon_sym_this] = ACTIONS(1411), + [anon_sym_scoped] = ACTIONS(1413), + [anon_sym_base] = ACTIONS(1415), + [anon_sym_var] = ACTIONS(1417), + [sym_predefined_type] = ACTIONS(1419), + [anon_sym_unchecked] = ACTIONS(1401), + [anon_sym_yield] = ACTIONS(1387), + [anon_sym_default] = ACTIONS(1421), + [anon_sym_throw] = ACTIONS(1573), + [anon_sym_when] = ACTIONS(1387), + [anon_sym_await] = ACTIONS(1575), + [anon_sym_DOT_DOT] = ACTIONS(1577), + [anon_sym_from] = ACTIONS(1429), + [anon_sym_into] = ACTIONS(1387), + [anon_sym_join] = ACTIONS(1387), + [anon_sym_on] = ACTIONS(1387), + [anon_sym_equals] = ACTIONS(1387), + [anon_sym_let] = ACTIONS(1387), + [anon_sym_orderby] = ACTIONS(1387), + [anon_sym_ascending] = ACTIONS(1387), + [anon_sym_descending] = ACTIONS(1387), + [anon_sym_group] = ACTIONS(1387), + [anon_sym_by] = ACTIONS(1387), + [anon_sym_select] = ACTIONS(1387), + [anon_sym_stackalloc] = ACTIONS(1431), + [anon_sym_sizeof] = ACTIONS(1433), + [anon_sym_typeof] = ACTIONS(1435), + [anon_sym___makeref] = ACTIONS(1437), + [anon_sym___reftype] = ACTIONS(1439), + [anon_sym___refvalue] = ACTIONS(1441), + [sym_null_literal] = ACTIONS(1443), + [anon_sym_SQUOTE] = ACTIONS(1445), + [sym_integer_literal] = ACTIONS(1443), + [sym_real_literal] = ACTIONS(1447), + [anon_sym_DQUOTE] = ACTIONS(1449), + [sym_verbatim_string_literal] = ACTIONS(1447), + [aux_sym_preproc_if_token1] = ACTIONS(1451), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + [sym_interpolation_regular_start] = ACTIONS(1453), + [sym_interpolation_verbatim_start] = ACTIONS(1455), + [sym_interpolation_raw_start] = ACTIONS(1457), + [sym_raw_string_start] = ACTIONS(1459), + }, + [931] = { + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2416), + [sym__name] = STATE(5900), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2193), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(2904), + [sym_non_lvalue_expression] = STATE(3040), + [sym_lvalue_expression] = STATE(3231), + [sym__expression_statement_expression] = STATE(3035), + [sym_assignment_expression] = STATE(3043), + [sym_binary_expression] = STATE(3035), + [sym_postfix_unary_expression] = STATE(3043), + [sym_prefix_unary_expression] = STATE(3043), + [sym__pointer_indirection_expression] = STATE(2415), + [sym_query_expression] = STATE(3035), + [sym_from_clause] = STATE(6149), + [sym_conditional_expression] = STATE(3035), + [sym_conditional_access_expression] = STATE(3035), + [sym_as_expression] = STATE(3035), + [sym_is_expression] = STATE(3035), + [sym_is_pattern_expression] = STATE(3035), + [sym_cast_expression] = STATE(3035), + [sym_checked_expression] = STATE(3035), + [sym_invocation_expression] = STATE(3043), + [sym_switch_expression] = STATE(3035), + [sym_await_expression] = STATE(3043), + [sym_throw_expression] = STATE(3035), + [sym_element_access_expression] = STATE(2415), + [sym_interpolated_string_expression] = STATE(3035), + [sym_member_access_expression] = STATE(2415), + [sym_object_creation_expression] = STATE(3043), + [sym_parenthesized_expression] = STATE(3043), + [sym__parenthesized_lvalue_expression] = STATE(2415), + [sym_lambda_expression] = STATE(3035), + [sym__lambda_expression_init] = STATE(7405), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3035), + [sym_anonymous_method_expression] = STATE(3035), + [sym_anonymous_object_creation_expression] = STATE(3035), + [sym_implicit_array_creation_expression] = STATE(3035), + [sym_implicit_object_creation_expression] = STATE(3035), + [sym_implicit_stackalloc_expression] = STATE(3035), + [sym_initializer_expression] = STATE(3035), + [sym_default_expression] = STATE(3035), + [sym_with_expression] = STATE(3035), + [sym_sizeof_expression] = STATE(3035), + [sym_typeof_expression] = STATE(3035), + [sym_makeref_expression] = STATE(3035), + [sym_ref_expression] = STATE(3035), + [sym_reftype_expression] = STATE(3035), + [sym_refvalue_expression] = STATE(3035), + [sym_stackalloc_expression] = STATE(3035), + [sym_range_expression] = STATE(3035), + [sym_tuple_expression] = STATE(2415), + [sym_literal] = STATE(3035), + [sym_character_literal] = STATE(3037), + [sym_string_literal] = STATE(3037), + [sym_raw_string_literal] = STATE(3037), + [sym_boolean_literal] = STATE(3037), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3035), + [sym_preproc_if_in_attribute_list] = STATE(5583), + [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(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3455), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1153), - [anon_sym_LPAREN] = ACTIONS(1859), - [anon_sym_ref] = ACTIONS(1861), - [anon_sym_LBRACE] = ACTIONS(1159), - [anon_sym_delegate] = ACTIONS(1161), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1239), + [anon_sym_LPAREN] = ACTIONS(1495), + [anon_sym_ref] = ACTIONS(1497), + [anon_sym_LBRACE] = ACTIONS(1245), + [anon_sym_delegate] = ACTIONS(1247), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1863), + [anon_sym_new] = ACTIONS(1249), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1167), - [anon_sym_BANG] = ACTIONS(1867), - [anon_sym_TILDE] = ACTIONS(1867), - [anon_sym_PLUS_PLUS] = ACTIONS(1867), - [anon_sym_DASH_DASH] = ACTIONS(1867), - [anon_sym_true] = ACTIONS(1173), - [anon_sym_false] = ACTIONS(1173), - [anon_sym_PLUS] = ACTIONS(1865), - [anon_sym_DASH] = ACTIONS(1865), - [anon_sym_STAR] = ACTIONS(1869), - [anon_sym_CARET] = ACTIONS(1867), - [anon_sym_AMP] = ACTIONS(1867), - [anon_sym_this] = ACTIONS(1177), + [anon_sym_checked] = ACTIONS(1251), + [anon_sym_BANG] = ACTIONS(1501), + [anon_sym_TILDE] = ACTIONS(1501), + [anon_sym_PLUS_PLUS] = ACTIONS(1501), + [anon_sym_DASH_DASH] = ACTIONS(1501), + [anon_sym_true] = ACTIONS(1257), + [anon_sym_false] = ACTIONS(1257), + [anon_sym_PLUS] = ACTIONS(1499), + [anon_sym_DASH] = ACTIONS(1499), + [anon_sym_STAR] = ACTIONS(1503), + [anon_sym_CARET] = ACTIONS(1501), + [anon_sym_AMP] = ACTIONS(1501), + [anon_sym_this] = ACTIONS(1261), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1179), + [anon_sym_base] = ACTIONS(1263), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1181), - [anon_sym_unchecked] = ACTIONS(1167), + [sym_predefined_type] = ACTIONS(1265), + [anon_sym_unchecked] = ACTIONS(1251), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1183), - [anon_sym_throw] = ACTIONS(1871), + [anon_sym_default] = ACTIONS(1267), + [anon_sym_throw] = ACTIONS(1505), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1873), - [anon_sym_DOT_DOT] = ACTIONS(1875), + [anon_sym_await] = ACTIONS(1507), + [anon_sym_DOT_DOT] = ACTIONS(1509), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -199082,19 +199137,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1191), - [anon_sym_sizeof] = ACTIONS(1193), - [anon_sym_typeof] = ACTIONS(1195), - [anon_sym___makeref] = ACTIONS(1197), - [anon_sym___reftype] = ACTIONS(1199), - [anon_sym___refvalue] = ACTIONS(1201), - [sym_null_literal] = ACTIONS(1203), - [anon_sym_SQUOTE] = ACTIONS(1205), - [sym_integer_literal] = ACTIONS(1203), - [sym_real_literal] = ACTIONS(1207), - [anon_sym_DQUOTE] = ACTIONS(1209), - [sym_verbatim_string_literal] = ACTIONS(1207), - [aux_sym_preproc_if_token1] = ACTIONS(1211), + [anon_sym_stackalloc] = ACTIONS(1275), + [anon_sym_sizeof] = ACTIONS(1277), + [anon_sym_typeof] = ACTIONS(1279), + [anon_sym___makeref] = ACTIONS(1281), + [anon_sym___reftype] = ACTIONS(1283), + [anon_sym___refvalue] = ACTIONS(1285), + [sym_null_literal] = ACTIONS(1287), + [anon_sym_SQUOTE] = ACTIONS(1289), + [sym_integer_literal] = ACTIONS(1287), + [sym_real_literal] = ACTIONS(1291), + [anon_sym_DQUOTE] = ACTIONS(1293), + [sym_verbatim_string_literal] = ACTIONS(1291), + [aux_sym_preproc_if_token1] = ACTIONS(1295), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -199105,259 +199160,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1213), - [sym_interpolation_verbatim_start] = ACTIONS(1215), - [sym_interpolation_raw_start] = ACTIONS(1217), - [sym_raw_string_start] = ACTIONS(1219), - }, - [931] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2610), - [sym__name] = STATE(5896), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2384), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(4731), - [sym_non_lvalue_expression] = STATE(3277), - [sym_lvalue_expression] = STATE(3392), - [sym__expression_statement_expression] = STATE(3228), - [sym_assignment_expression] = STATE(3289), - [sym_binary_expression] = STATE(3228), - [sym_postfix_unary_expression] = STATE(3289), - [sym_prefix_unary_expression] = STATE(3289), - [sym__pointer_indirection_expression] = STATE(2609), - [sym_query_expression] = STATE(3228), - [sym_from_clause] = STATE(6173), - [sym_conditional_expression] = STATE(3228), - [sym_conditional_access_expression] = STATE(3228), - [sym_as_expression] = STATE(3228), - [sym_is_expression] = STATE(3228), - [sym_is_pattern_expression] = STATE(3228), - [sym_cast_expression] = STATE(3228), - [sym_checked_expression] = STATE(3228), - [sym_invocation_expression] = STATE(3289), - [sym_switch_expression] = STATE(3228), - [sym_await_expression] = STATE(3289), - [sym_throw_expression] = STATE(3228), - [sym_element_access_expression] = STATE(2609), - [sym_interpolated_string_expression] = STATE(3228), - [sym_member_access_expression] = STATE(2609), - [sym_object_creation_expression] = STATE(3289), - [sym_parenthesized_expression] = STATE(3289), - [sym__parenthesized_lvalue_expression] = STATE(2609), - [sym_lambda_expression] = STATE(3228), - [sym__lambda_expression_init] = STATE(7334), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3228), - [sym_anonymous_method_expression] = STATE(3228), - [sym_anonymous_object_creation_expression] = STATE(3228), - [sym_implicit_array_creation_expression] = STATE(3228), - [sym_implicit_object_creation_expression] = STATE(3228), - [sym_implicit_stackalloc_expression] = STATE(3228), - [sym_initializer_expression] = STATE(3228), - [sym_default_expression] = STATE(3228), - [sym_with_expression] = STATE(3228), - [sym_sizeof_expression] = STATE(3228), - [sym_typeof_expression] = STATE(3228), - [sym_makeref_expression] = STATE(3228), - [sym_ref_expression] = STATE(3228), - [sym_reftype_expression] = STATE(3228), - [sym_refvalue_expression] = STATE(3228), - [sym_stackalloc_expression] = STATE(3228), - [sym_range_expression] = STATE(3228), - [sym_tuple_expression] = STATE(2609), - [sym_literal] = STATE(3228), - [sym_character_literal] = STATE(3278), - [sym_string_literal] = STATE(3278), - [sym_raw_string_literal] = STATE(3278), - [sym_boolean_literal] = STATE(3278), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3228), - [sym_preproc_if_in_attribute_list] = STATE(5576), - [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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3396), - [sym__identifier_token] = ACTIONS(25), - [anon_sym_alias] = ACTIONS(29), - [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1153), - [anon_sym_LPAREN] = ACTIONS(1859), - [anon_sym_ref] = ACTIONS(1861), - [anon_sym_LBRACE] = ACTIONS(1159), - [anon_sym_delegate] = ACTIONS(1161), - [anon_sym_async] = ACTIONS(1047), - [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1863), - [anon_sym_where] = ACTIONS(29), - [anon_sym_notnull] = ACTIONS(29), - [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1167), - [anon_sym_BANG] = ACTIONS(1867), - [anon_sym_TILDE] = ACTIONS(1867), - [anon_sym_PLUS_PLUS] = ACTIONS(1867), - [anon_sym_DASH_DASH] = ACTIONS(1867), - [anon_sym_true] = ACTIONS(1173), - [anon_sym_false] = ACTIONS(1173), - [anon_sym_PLUS] = ACTIONS(1865), - [anon_sym_DASH] = ACTIONS(1865), - [anon_sym_STAR] = ACTIONS(1869), - [anon_sym_CARET] = ACTIONS(1867), - [anon_sym_AMP] = ACTIONS(1867), - [anon_sym_this] = ACTIONS(1177), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1179), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1181), - [anon_sym_unchecked] = ACTIONS(1167), - [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1183), - [anon_sym_throw] = ACTIONS(1871), - [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1873), - [anon_sym_DOT_DOT] = ACTIONS(1875), - [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(1191), - [anon_sym_sizeof] = ACTIONS(1193), - [anon_sym_typeof] = ACTIONS(1195), - [anon_sym___makeref] = ACTIONS(1197), - [anon_sym___reftype] = ACTIONS(1199), - [anon_sym___refvalue] = ACTIONS(1201), - [sym_null_literal] = ACTIONS(1203), - [anon_sym_SQUOTE] = ACTIONS(1205), - [sym_integer_literal] = ACTIONS(1203), - [sym_real_literal] = ACTIONS(1207), - [anon_sym_DQUOTE] = ACTIONS(1209), - [sym_verbatim_string_literal] = ACTIONS(1207), - [aux_sym_preproc_if_token1] = ACTIONS(1211), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1213), - [sym_interpolation_verbatim_start] = ACTIONS(1215), - [sym_interpolation_raw_start] = ACTIONS(1217), - [sym_raw_string_start] = ACTIONS(1219), + [sym_interpolation_regular_start] = ACTIONS(1297), + [sym_interpolation_verbatim_start] = ACTIONS(1299), + [sym_interpolation_raw_start] = ACTIONS(1301), + [sym_raw_string_start] = ACTIONS(1303), }, [932] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2610), - [sym__name] = STATE(5896), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2384), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(4732), - [sym_non_lvalue_expression] = STATE(3277), - [sym_lvalue_expression] = STATE(3392), - [sym__expression_statement_expression] = STATE(3228), - [sym_assignment_expression] = STATE(3289), - [sym_binary_expression] = STATE(3228), - [sym_postfix_unary_expression] = STATE(3289), - [sym_prefix_unary_expression] = STATE(3289), - [sym__pointer_indirection_expression] = STATE(2609), - [sym_query_expression] = STATE(3228), - [sym_from_clause] = STATE(6173), - [sym_conditional_expression] = STATE(3228), - [sym_conditional_access_expression] = STATE(3228), - [sym_as_expression] = STATE(3228), - [sym_is_expression] = STATE(3228), - [sym_is_pattern_expression] = STATE(3228), - [sym_cast_expression] = STATE(3228), - [sym_checked_expression] = STATE(3228), - [sym_invocation_expression] = STATE(3289), - [sym_switch_expression] = STATE(3228), - [sym_await_expression] = STATE(3289), - [sym_throw_expression] = STATE(3228), - [sym_element_access_expression] = STATE(2609), - [sym_interpolated_string_expression] = STATE(3228), - [sym_member_access_expression] = STATE(2609), - [sym_object_creation_expression] = STATE(3289), - [sym_parenthesized_expression] = STATE(3289), - [sym__parenthesized_lvalue_expression] = STATE(2609), - [sym_lambda_expression] = STATE(3228), - [sym__lambda_expression_init] = STATE(7334), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3228), - [sym_anonymous_method_expression] = STATE(3228), - [sym_anonymous_object_creation_expression] = STATE(3228), - [sym_implicit_array_creation_expression] = STATE(3228), - [sym_implicit_object_creation_expression] = STATE(3228), - [sym_implicit_stackalloc_expression] = STATE(3228), - [sym_initializer_expression] = STATE(3228), - [sym_default_expression] = STATE(3228), - [sym_with_expression] = STATE(3228), - [sym_sizeof_expression] = STATE(3228), - [sym_typeof_expression] = STATE(3228), - [sym_makeref_expression] = STATE(3228), - [sym_ref_expression] = STATE(3228), - [sym_reftype_expression] = STATE(3228), - [sym_refvalue_expression] = STATE(3228), - [sym_stackalloc_expression] = STATE(3228), - [sym_range_expression] = STATE(3228), - [sym_tuple_expression] = STATE(2609), - [sym_literal] = STATE(3228), - [sym_character_literal] = STATE(3278), - [sym_string_literal] = STATE(3278), - [sym_raw_string_literal] = STATE(3278), - [sym_boolean_literal] = STATE(3278), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3228), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(3182), + [sym__name] = STATE(5888), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2286), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2262), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(4251), + [sym_non_lvalue_expression] = STATE(4580), + [sym_lvalue_expression] = STATE(3192), + [sym__expression_statement_expression] = STATE(4573), + [sym_assignment_expression] = STATE(4581), + [sym_binary_expression] = STATE(4573), + [sym_postfix_unary_expression] = STATE(4581), + [sym_prefix_unary_expression] = STATE(4581), + [sym__pointer_indirection_expression] = STATE(3144), + [sym_query_expression] = STATE(4573), + [sym_from_clause] = STATE(6160), + [sym_conditional_expression] = STATE(4573), + [sym_conditional_access_expression] = STATE(4573), + [sym_as_expression] = STATE(4573), + [sym_is_expression] = STATE(4573), + [sym_is_pattern_expression] = STATE(4573), + [sym_cast_expression] = STATE(4573), + [sym_checked_expression] = STATE(4573), + [sym_invocation_expression] = STATE(4581), + [sym_switch_expression] = STATE(4573), + [sym_await_expression] = STATE(4581), + [sym_throw_expression] = STATE(4573), + [sym_element_access_expression] = STATE(3144), + [sym_interpolated_string_expression] = STATE(4573), + [sym_member_access_expression] = STATE(3144), + [sym_object_creation_expression] = STATE(4581), + [sym_parenthesized_expression] = STATE(4581), + [sym__parenthesized_lvalue_expression] = STATE(3144), + [sym_lambda_expression] = STATE(4573), + [sym__lambda_expression_init] = STATE(7491), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(4573), + [sym_anonymous_method_expression] = STATE(4573), + [sym_anonymous_object_creation_expression] = STATE(4573), + [sym_implicit_array_creation_expression] = STATE(4573), + [sym_implicit_object_creation_expression] = STATE(4573), + [sym_implicit_stackalloc_expression] = STATE(4573), + [sym_initializer_expression] = STATE(4573), + [sym_default_expression] = STATE(4573), + [sym_with_expression] = STATE(4573), + [sym_sizeof_expression] = STATE(4573), + [sym_typeof_expression] = STATE(4573), + [sym_makeref_expression] = STATE(4573), + [sym_ref_expression] = STATE(4573), + [sym_reftype_expression] = STATE(4573), + [sym_refvalue_expression] = STATE(4573), + [sym_stackalloc_expression] = STATE(4573), + [sym_range_expression] = STATE(4573), + [sym_tuple_expression] = STATE(3144), + [sym_literal] = STATE(4573), + [sym_character_literal] = STATE(4575), + [sym_string_literal] = STATE(4575), + [sym_raw_string_literal] = STATE(4575), + [sym_boolean_literal] = STATE(4575), + [sym_identifier] = STATE(2237), + [sym__reserved_identifier] = STATE(2229), + [sym_preproc_if_in_expression] = STATE(4573), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(932), [sym_preproc_endregion] = STATE(932), [sym_preproc_line] = STATE(932), @@ -199367,166 +199253,166 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(932), [sym_preproc_define] = STATE(932), [sym_preproc_undef] = STATE(932), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3396), - [sym__identifier_token] = ACTIONS(25), - [anon_sym_alias] = ACTIONS(29), - [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1153), - [anon_sym_LPAREN] = ACTIONS(1859), - [anon_sym_ref] = ACTIONS(1861), - [anon_sym_LBRACE] = ACTIONS(1159), - [anon_sym_delegate] = ACTIONS(1161), - [anon_sym_async] = ACTIONS(1047), - [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1863), - [anon_sym_where] = ACTIONS(29), - [anon_sym_notnull] = ACTIONS(29), - [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1167), - [anon_sym_BANG] = ACTIONS(1867), - [anon_sym_TILDE] = ACTIONS(1867), - [anon_sym_PLUS_PLUS] = ACTIONS(1867), - [anon_sym_DASH_DASH] = ACTIONS(1867), - [anon_sym_true] = ACTIONS(1173), - [anon_sym_false] = ACTIONS(1173), - [anon_sym_PLUS] = ACTIONS(1865), - [anon_sym_DASH] = ACTIONS(1865), - [anon_sym_STAR] = ACTIONS(1869), - [anon_sym_CARET] = ACTIONS(1867), - [anon_sym_AMP] = ACTIONS(1867), - [anon_sym_this] = ACTIONS(1177), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1179), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1181), - [anon_sym_unchecked] = ACTIONS(1167), - [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1183), - [anon_sym_throw] = ACTIONS(1871), - [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1873), - [anon_sym_DOT_DOT] = ACTIONS(1875), - [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(1191), - [anon_sym_sizeof] = ACTIONS(1193), - [anon_sym_typeof] = ACTIONS(1195), - [anon_sym___makeref] = ACTIONS(1197), - [anon_sym___reftype] = ACTIONS(1199), - [anon_sym___refvalue] = ACTIONS(1201), - [sym_null_literal] = ACTIONS(1203), - [anon_sym_SQUOTE] = ACTIONS(1205), - [sym_integer_literal] = ACTIONS(1203), - [sym_real_literal] = ACTIONS(1207), - [anon_sym_DQUOTE] = ACTIONS(1209), - [sym_verbatim_string_literal] = ACTIONS(1207), - [aux_sym_preproc_if_token1] = ACTIONS(1211), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1213), - [sym_interpolation_verbatim_start] = ACTIONS(1215), - [sym_interpolation_raw_start] = ACTIONS(1217), - [sym_raw_string_start] = ACTIONS(1219), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3501), + [sym__identifier_token] = ACTIONS(1385), + [anon_sym_alias] = ACTIONS(1387), + [anon_sym_global] = ACTIONS(1387), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1389), + [anon_sym_LPAREN] = ACTIONS(1391), + [anon_sym_ref] = ACTIONS(1393), + [anon_sym_LBRACE] = ACTIONS(1395), + [anon_sym_delegate] = ACTIONS(1397), + [anon_sym_async] = ACTIONS(1045), + [anon_sym_file] = ACTIONS(1387), + [anon_sym_new] = ACTIONS(1399), + [anon_sym_where] = ACTIONS(1387), + [anon_sym_notnull] = ACTIONS(1387), + [anon_sym_unmanaged] = ACTIONS(1387), + [anon_sym_checked] = ACTIONS(1401), + [anon_sym_BANG] = ACTIONS(1405), + [anon_sym_TILDE] = ACTIONS(1405), + [anon_sym_PLUS_PLUS] = ACTIONS(1405), + [anon_sym_DASH_DASH] = ACTIONS(1405), + [anon_sym_true] = ACTIONS(1407), + [anon_sym_false] = ACTIONS(1407), + [anon_sym_PLUS] = ACTIONS(1403), + [anon_sym_DASH] = ACTIONS(1403), + [anon_sym_STAR] = ACTIONS(1409), + [anon_sym_CARET] = ACTIONS(1405), + [anon_sym_AMP] = ACTIONS(1405), + [anon_sym_this] = ACTIONS(1411), + [anon_sym_scoped] = ACTIONS(1413), + [anon_sym_base] = ACTIONS(1415), + [anon_sym_var] = ACTIONS(1417), + [sym_predefined_type] = ACTIONS(1419), + [anon_sym_unchecked] = ACTIONS(1401), + [anon_sym_yield] = ACTIONS(1387), + [anon_sym_default] = ACTIONS(1421), + [anon_sym_throw] = ACTIONS(1423), + [anon_sym_when] = ACTIONS(1387), + [anon_sym_await] = ACTIONS(1425), + [anon_sym_DOT_DOT] = ACTIONS(1427), + [anon_sym_from] = ACTIONS(1429), + [anon_sym_into] = ACTIONS(1387), + [anon_sym_join] = ACTIONS(1387), + [anon_sym_on] = ACTIONS(1387), + [anon_sym_equals] = ACTIONS(1387), + [anon_sym_let] = ACTIONS(1387), + [anon_sym_orderby] = ACTIONS(1387), + [anon_sym_ascending] = ACTIONS(1387), + [anon_sym_descending] = ACTIONS(1387), + [anon_sym_group] = ACTIONS(1387), + [anon_sym_by] = ACTIONS(1387), + [anon_sym_select] = ACTIONS(1387), + [anon_sym_stackalloc] = ACTIONS(1431), + [anon_sym_sizeof] = ACTIONS(1433), + [anon_sym_typeof] = ACTIONS(1435), + [anon_sym___makeref] = ACTIONS(1437), + [anon_sym___reftype] = ACTIONS(1439), + [anon_sym___refvalue] = ACTIONS(1441), + [sym_null_literal] = ACTIONS(1443), + [anon_sym_SQUOTE] = ACTIONS(1445), + [sym_integer_literal] = ACTIONS(1443), + [sym_real_literal] = ACTIONS(1447), + [anon_sym_DQUOTE] = ACTIONS(1449), + [sym_verbatim_string_literal] = ACTIONS(1447), + [aux_sym_preproc_if_token1] = ACTIONS(1451), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + [sym_interpolation_regular_start] = ACTIONS(1453), + [sym_interpolation_verbatim_start] = ACTIONS(1455), + [sym_interpolation_raw_start] = ACTIONS(1457), + [sym_raw_string_start] = ACTIONS(1459), }, [933] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2610), - [sym__name] = STATE(5896), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2384), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(4740), - [sym_non_lvalue_expression] = STATE(3277), - [sym_lvalue_expression] = STATE(3392), - [sym__expression_statement_expression] = STATE(3228), - [sym_assignment_expression] = STATE(3289), - [sym_binary_expression] = STATE(3228), - [sym_postfix_unary_expression] = STATE(3289), - [sym_prefix_unary_expression] = STATE(3289), - [sym__pointer_indirection_expression] = STATE(2609), - [sym_query_expression] = STATE(3228), - [sym_from_clause] = STATE(6173), - [sym_conditional_expression] = STATE(3228), - [sym_conditional_access_expression] = STATE(3228), - [sym_as_expression] = STATE(3228), - [sym_is_expression] = STATE(3228), - [sym_is_pattern_expression] = STATE(3228), - [sym_cast_expression] = STATE(3228), - [sym_checked_expression] = STATE(3228), - [sym_invocation_expression] = STATE(3289), - [sym_switch_expression] = STATE(3228), - [sym_await_expression] = STATE(3289), - [sym_throw_expression] = STATE(3228), - [sym_element_access_expression] = STATE(2609), - [sym_interpolated_string_expression] = STATE(3228), - [sym_member_access_expression] = STATE(2609), - [sym_object_creation_expression] = STATE(3289), - [sym_parenthesized_expression] = STATE(3289), - [sym__parenthesized_lvalue_expression] = STATE(2609), - [sym_lambda_expression] = STATE(3228), - [sym__lambda_expression_init] = STATE(7334), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3228), - [sym_anonymous_method_expression] = STATE(3228), - [sym_anonymous_object_creation_expression] = STATE(3228), - [sym_implicit_array_creation_expression] = STATE(3228), - [sym_implicit_object_creation_expression] = STATE(3228), - [sym_implicit_stackalloc_expression] = STATE(3228), - [sym_initializer_expression] = STATE(3228), - [sym_default_expression] = STATE(3228), - [sym_with_expression] = STATE(3228), - [sym_sizeof_expression] = STATE(3228), - [sym_typeof_expression] = STATE(3228), - [sym_makeref_expression] = STATE(3228), - [sym_ref_expression] = STATE(3228), - [sym_reftype_expression] = STATE(3228), - [sym_refvalue_expression] = STATE(3228), - [sym_stackalloc_expression] = STATE(3228), - [sym_range_expression] = STATE(3228), - [sym_tuple_expression] = STATE(2609), - [sym_literal] = STATE(3228), - [sym_character_literal] = STATE(3278), - [sym_string_literal] = STATE(3278), - [sym_raw_string_literal] = STATE(3278), - [sym_boolean_literal] = STATE(3278), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3228), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(3182), + [sym__name] = STATE(5888), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2286), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2262), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(4688), + [sym_non_lvalue_expression] = STATE(4580), + [sym_lvalue_expression] = STATE(3373), + [sym__expression_statement_expression] = STATE(4573), + [sym_assignment_expression] = STATE(4581), + [sym_binary_expression] = STATE(4573), + [sym_postfix_unary_expression] = STATE(4581), + [sym_prefix_unary_expression] = STATE(4581), + [sym__pointer_indirection_expression] = STATE(3144), + [sym_query_expression] = STATE(4573), + [sym_from_clause] = STATE(6133), + [sym_conditional_expression] = STATE(4573), + [sym_conditional_access_expression] = STATE(4573), + [sym_as_expression] = STATE(4573), + [sym_is_expression] = STATE(4573), + [sym_is_pattern_expression] = STATE(4573), + [sym_cast_expression] = STATE(4573), + [sym_checked_expression] = STATE(4573), + [sym_invocation_expression] = STATE(4581), + [sym_switch_expression] = STATE(4573), + [sym_await_expression] = STATE(4581), + [sym_throw_expression] = STATE(4573), + [sym_element_access_expression] = STATE(3144), + [sym_interpolated_string_expression] = STATE(4573), + [sym_member_access_expression] = STATE(3144), + [sym_object_creation_expression] = STATE(4581), + [sym_parenthesized_expression] = STATE(4581), + [sym__parenthesized_lvalue_expression] = STATE(3144), + [sym_lambda_expression] = STATE(4573), + [sym__lambda_expression_init] = STATE(7614), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(4573), + [sym_anonymous_method_expression] = STATE(4573), + [sym_anonymous_object_creation_expression] = STATE(4573), + [sym_implicit_array_creation_expression] = STATE(4573), + [sym_implicit_object_creation_expression] = STATE(4573), + [sym_implicit_stackalloc_expression] = STATE(4573), + [sym_initializer_expression] = STATE(4573), + [sym_default_expression] = STATE(4573), + [sym_with_expression] = STATE(4573), + [sym_sizeof_expression] = STATE(4573), + [sym_typeof_expression] = STATE(4573), + [sym_makeref_expression] = STATE(4573), + [sym_ref_expression] = STATE(4573), + [sym_reftype_expression] = STATE(4573), + [sym_refvalue_expression] = STATE(4573), + [sym_stackalloc_expression] = STATE(4573), + [sym_range_expression] = STATE(4573), + [sym_tuple_expression] = STATE(3144), + [sym_literal] = STATE(4573), + [sym_character_literal] = STATE(4575), + [sym_string_literal] = STATE(4575), + [sym_raw_string_literal] = STATE(4575), + [sym_boolean_literal] = STATE(4575), + [sym_identifier] = STATE(2237), + [sym__reserved_identifier] = STATE(2229), + [sym_preproc_if_in_expression] = STATE(4573), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(933), [sym_preproc_endregion] = STATE(933), [sym_preproc_line] = STATE(933), @@ -199536,166 +199422,166 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(933), [sym_preproc_define] = STATE(933), [sym_preproc_undef] = STATE(933), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3396), - [sym__identifier_token] = ACTIONS(25), - [anon_sym_alias] = ACTIONS(29), - [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1153), - [anon_sym_LPAREN] = ACTIONS(1859), - [anon_sym_ref] = ACTIONS(1861), - [anon_sym_LBRACE] = ACTIONS(1159), - [anon_sym_delegate] = ACTIONS(1161), - [anon_sym_async] = ACTIONS(1047), - [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1863), - [anon_sym_where] = ACTIONS(29), - [anon_sym_notnull] = ACTIONS(29), - [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1167), - [anon_sym_BANG] = ACTIONS(1867), - [anon_sym_TILDE] = ACTIONS(1867), - [anon_sym_PLUS_PLUS] = ACTIONS(1867), - [anon_sym_DASH_DASH] = ACTIONS(1867), - [anon_sym_true] = ACTIONS(1173), - [anon_sym_false] = ACTIONS(1173), - [anon_sym_PLUS] = ACTIONS(1865), - [anon_sym_DASH] = ACTIONS(1865), - [anon_sym_STAR] = ACTIONS(1869), - [anon_sym_CARET] = ACTIONS(1867), - [anon_sym_AMP] = ACTIONS(1867), - [anon_sym_this] = ACTIONS(1177), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1179), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1181), - [anon_sym_unchecked] = ACTIONS(1167), - [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1183), - [anon_sym_throw] = ACTIONS(1871), - [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1873), - [anon_sym_DOT_DOT] = ACTIONS(1875), - [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(1191), - [anon_sym_sizeof] = ACTIONS(1193), - [anon_sym_typeof] = ACTIONS(1195), - [anon_sym___makeref] = ACTIONS(1197), - [anon_sym___reftype] = ACTIONS(1199), - [anon_sym___refvalue] = ACTIONS(1201), - [sym_null_literal] = ACTIONS(1203), - [anon_sym_SQUOTE] = ACTIONS(1205), - [sym_integer_literal] = ACTIONS(1203), - [sym_real_literal] = ACTIONS(1207), - [anon_sym_DQUOTE] = ACTIONS(1209), - [sym_verbatim_string_literal] = ACTIONS(1207), - [aux_sym_preproc_if_token1] = ACTIONS(1211), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1213), - [sym_interpolation_verbatim_start] = ACTIONS(1215), - [sym_interpolation_raw_start] = ACTIONS(1217), - [sym_raw_string_start] = ACTIONS(1219), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3501), + [sym__identifier_token] = ACTIONS(1385), + [anon_sym_alias] = ACTIONS(1387), + [anon_sym_global] = ACTIONS(1387), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1389), + [anon_sym_LPAREN] = ACTIONS(1565), + [anon_sym_ref] = ACTIONS(1567), + [anon_sym_LBRACE] = ACTIONS(1395), + [anon_sym_delegate] = ACTIONS(1397), + [anon_sym_async] = ACTIONS(1045), + [anon_sym_file] = ACTIONS(1387), + [anon_sym_new] = ACTIONS(1399), + [anon_sym_where] = ACTIONS(1387), + [anon_sym_notnull] = ACTIONS(1387), + [anon_sym_unmanaged] = ACTIONS(1387), + [anon_sym_checked] = ACTIONS(1401), + [anon_sym_BANG] = ACTIONS(1571), + [anon_sym_TILDE] = ACTIONS(1571), + [anon_sym_PLUS_PLUS] = ACTIONS(1571), + [anon_sym_DASH_DASH] = ACTIONS(1571), + [anon_sym_true] = ACTIONS(1407), + [anon_sym_false] = ACTIONS(1407), + [anon_sym_PLUS] = ACTIONS(1569), + [anon_sym_DASH] = ACTIONS(1569), + [anon_sym_STAR] = ACTIONS(1409), + [anon_sym_CARET] = ACTIONS(1571), + [anon_sym_AMP] = ACTIONS(1571), + [anon_sym_this] = ACTIONS(1411), + [anon_sym_scoped] = ACTIONS(1413), + [anon_sym_base] = ACTIONS(1415), + [anon_sym_var] = ACTIONS(1417), + [sym_predefined_type] = ACTIONS(1419), + [anon_sym_unchecked] = ACTIONS(1401), + [anon_sym_yield] = ACTIONS(1387), + [anon_sym_default] = ACTIONS(1421), + [anon_sym_throw] = ACTIONS(1573), + [anon_sym_when] = ACTIONS(1387), + [anon_sym_await] = ACTIONS(1575), + [anon_sym_DOT_DOT] = ACTIONS(1577), + [anon_sym_from] = ACTIONS(1429), + [anon_sym_into] = ACTIONS(1387), + [anon_sym_join] = ACTIONS(1387), + [anon_sym_on] = ACTIONS(1387), + [anon_sym_equals] = ACTIONS(1387), + [anon_sym_let] = ACTIONS(1387), + [anon_sym_orderby] = ACTIONS(1387), + [anon_sym_ascending] = ACTIONS(1387), + [anon_sym_descending] = ACTIONS(1387), + [anon_sym_group] = ACTIONS(1387), + [anon_sym_by] = ACTIONS(1387), + [anon_sym_select] = ACTIONS(1387), + [anon_sym_stackalloc] = ACTIONS(1431), + [anon_sym_sizeof] = ACTIONS(1433), + [anon_sym_typeof] = ACTIONS(1435), + [anon_sym___makeref] = ACTIONS(1437), + [anon_sym___reftype] = ACTIONS(1439), + [anon_sym___refvalue] = ACTIONS(1441), + [sym_null_literal] = ACTIONS(1443), + [anon_sym_SQUOTE] = ACTIONS(1445), + [sym_integer_literal] = ACTIONS(1443), + [sym_real_literal] = ACTIONS(1447), + [anon_sym_DQUOTE] = ACTIONS(1449), + [sym_verbatim_string_literal] = ACTIONS(1447), + [aux_sym_preproc_if_token1] = ACTIONS(1451), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + [sym_interpolation_regular_start] = ACTIONS(1453), + [sym_interpolation_verbatim_start] = ACTIONS(1455), + [sym_interpolation_raw_start] = ACTIONS(1457), + [sym_raw_string_start] = ACTIONS(1459), }, [934] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2610), - [sym__name] = STATE(5896), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2384), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(4623), - [sym_non_lvalue_expression] = STATE(3277), - [sym_lvalue_expression] = STATE(3392), - [sym__expression_statement_expression] = STATE(3228), - [sym_assignment_expression] = STATE(3289), - [sym_binary_expression] = STATE(3228), - [sym_postfix_unary_expression] = STATE(3289), - [sym_prefix_unary_expression] = STATE(3289), - [sym__pointer_indirection_expression] = STATE(2609), - [sym_query_expression] = STATE(3228), - [sym_from_clause] = STATE(6173), - [sym_conditional_expression] = STATE(3228), - [sym_conditional_access_expression] = STATE(3228), - [sym_as_expression] = STATE(3228), - [sym_is_expression] = STATE(3228), - [sym_is_pattern_expression] = STATE(3228), - [sym_cast_expression] = STATE(3228), - [sym_checked_expression] = STATE(3228), - [sym_invocation_expression] = STATE(3289), - [sym_switch_expression] = STATE(3228), - [sym_await_expression] = STATE(3289), - [sym_throw_expression] = STATE(3228), - [sym_element_access_expression] = STATE(2609), - [sym_interpolated_string_expression] = STATE(3228), - [sym_member_access_expression] = STATE(2609), - [sym_object_creation_expression] = STATE(3289), - [sym_parenthesized_expression] = STATE(3289), - [sym__parenthesized_lvalue_expression] = STATE(2609), - [sym_lambda_expression] = STATE(3228), - [sym__lambda_expression_init] = STATE(7334), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3228), - [sym_anonymous_method_expression] = STATE(3228), - [sym_anonymous_object_creation_expression] = STATE(3228), - [sym_implicit_array_creation_expression] = STATE(3228), - [sym_implicit_object_creation_expression] = STATE(3228), - [sym_implicit_stackalloc_expression] = STATE(3228), - [sym_initializer_expression] = STATE(3228), - [sym_default_expression] = STATE(3228), - [sym_with_expression] = STATE(3228), - [sym_sizeof_expression] = STATE(3228), - [sym_typeof_expression] = STATE(3228), - [sym_makeref_expression] = STATE(3228), - [sym_ref_expression] = STATE(3228), - [sym_reftype_expression] = STATE(3228), - [sym_refvalue_expression] = STATE(3228), - [sym_stackalloc_expression] = STATE(3228), - [sym_range_expression] = STATE(3228), - [sym_tuple_expression] = STATE(2609), - [sym_literal] = STATE(3228), - [sym_character_literal] = STATE(3278), - [sym_string_literal] = STATE(3278), - [sym_raw_string_literal] = STATE(3278), - [sym_boolean_literal] = STATE(3278), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3228), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2816), + [sym__name] = STATE(5873), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2238), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(4217), + [sym_non_lvalue_expression] = STATE(3495), + [sym_lvalue_expression] = STATE(3131), + [sym__expression_statement_expression] = STATE(3462), + [sym_assignment_expression] = STATE(3497), + [sym_binary_expression] = STATE(3462), + [sym_postfix_unary_expression] = STATE(3497), + [sym_prefix_unary_expression] = STATE(3497), + [sym__pointer_indirection_expression] = STATE(2815), + [sym_query_expression] = STATE(3462), + [sym_from_clause] = STATE(6140), + [sym_conditional_expression] = STATE(3462), + [sym_conditional_access_expression] = STATE(3462), + [sym_as_expression] = STATE(3462), + [sym_is_expression] = STATE(3462), + [sym_is_pattern_expression] = STATE(3462), + [sym_cast_expression] = STATE(3462), + [sym_checked_expression] = STATE(3462), + [sym_invocation_expression] = STATE(3497), + [sym_switch_expression] = STATE(3462), + [sym_await_expression] = STATE(3497), + [sym_throw_expression] = STATE(3462), + [sym_element_access_expression] = STATE(2815), + [sym_interpolated_string_expression] = STATE(3462), + [sym_member_access_expression] = STATE(2815), + [sym_object_creation_expression] = STATE(3497), + [sym_parenthesized_expression] = STATE(3497), + [sym__parenthesized_lvalue_expression] = STATE(2815), + [sym_lambda_expression] = STATE(3462), + [sym__lambda_expression_init] = STATE(7423), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3462), + [sym_anonymous_method_expression] = STATE(3462), + [sym_anonymous_object_creation_expression] = STATE(3462), + [sym_implicit_array_creation_expression] = STATE(3462), + [sym_implicit_object_creation_expression] = STATE(3462), + [sym_implicit_stackalloc_expression] = STATE(3462), + [sym_initializer_expression] = STATE(3462), + [sym_default_expression] = STATE(3462), + [sym_with_expression] = STATE(3462), + [sym_sizeof_expression] = STATE(3462), + [sym_typeof_expression] = STATE(3462), + [sym_makeref_expression] = STATE(3462), + [sym_ref_expression] = STATE(3462), + [sym_reftype_expression] = STATE(3462), + [sym_refvalue_expression] = STATE(3462), + [sym_stackalloc_expression] = STATE(3462), + [sym_range_expression] = STATE(3462), + [sym_tuple_expression] = STATE(2815), + [sym_literal] = STATE(3462), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3462), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(934), [sym_preproc_endregion] = STATE(934), [sym_preproc_line] = STATE(934), @@ -199705,47 +199591,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(934), [sym_preproc_define] = STATE(934), [sym_preproc_undef] = STATE(934), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3396), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3367), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1153), - [anon_sym_LPAREN] = ACTIONS(1859), - [anon_sym_ref] = ACTIONS(1861), - [anon_sym_LBRACE] = ACTIONS(1159), - [anon_sym_delegate] = ACTIONS(1161), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1305), + [anon_sym_LPAREN] = ACTIONS(1307), + [anon_sym_ref] = ACTIONS(1309), + [anon_sym_LBRACE] = ACTIONS(1311), + [anon_sym_delegate] = ACTIONS(1313), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1863), + [anon_sym_new] = ACTIONS(1315), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1167), - [anon_sym_BANG] = ACTIONS(1867), - [anon_sym_TILDE] = ACTIONS(1867), - [anon_sym_PLUS_PLUS] = ACTIONS(1867), - [anon_sym_DASH_DASH] = ACTIONS(1867), - [anon_sym_true] = ACTIONS(1173), - [anon_sym_false] = ACTIONS(1173), - [anon_sym_PLUS] = ACTIONS(1865), - [anon_sym_DASH] = ACTIONS(1865), - [anon_sym_STAR] = ACTIONS(1869), - [anon_sym_CARET] = ACTIONS(1867), - [anon_sym_AMP] = ACTIONS(1867), - [anon_sym_this] = ACTIONS(1177), + [anon_sym_checked] = ACTIONS(1317), + [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(1319), + [anon_sym_CARET] = ACTIONS(1067), + [anon_sym_AMP] = ACTIONS(1067), + [anon_sym_this] = ACTIONS(1321), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1179), + [anon_sym_base] = ACTIONS(1323), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1181), - [anon_sym_unchecked] = ACTIONS(1167), + [sym_predefined_type] = ACTIONS(91), + [anon_sym_unchecked] = ACTIONS(1317), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1183), - [anon_sym_throw] = ACTIONS(1871), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(1325), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1873), - [anon_sym_DOT_DOT] = ACTIONS(1875), + [anon_sym_await] = ACTIONS(1327), + [anon_sym_DOT_DOT] = ACTIONS(1329), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -199758,19 +199644,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1191), - [anon_sym_sizeof] = ACTIONS(1193), - [anon_sym_typeof] = ACTIONS(1195), - [anon_sym___makeref] = ACTIONS(1197), - [anon_sym___reftype] = ACTIONS(1199), - [anon_sym___refvalue] = ACTIONS(1201), - [sym_null_literal] = ACTIONS(1203), - [anon_sym_SQUOTE] = ACTIONS(1205), - [sym_integer_literal] = ACTIONS(1203), - [sym_real_literal] = ACTIONS(1207), - [anon_sym_DQUOTE] = ACTIONS(1209), - [sym_verbatim_string_literal] = ACTIONS(1207), - [aux_sym_preproc_if_token1] = ACTIONS(1211), + [anon_sym_stackalloc] = ACTIONS(1331), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(1333), + [anon_sym___reftype] = ACTIONS(1335), + [anon_sym___refvalue] = ACTIONS(1337), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_literal] = ACTIONS(143), + [anon_sym_DQUOTE] = ACTIONS(145), + [sym_verbatim_string_literal] = ACTIONS(143), + [aux_sym_preproc_if_token1] = ACTIONS(1339), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -199781,90 +199667,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1213), - [sym_interpolation_verbatim_start] = ACTIONS(1215), - [sym_interpolation_raw_start] = ACTIONS(1217), - [sym_raw_string_start] = ACTIONS(1219), + [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(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2610), - [sym__name] = STATE(5896), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2384), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(4743), - [sym_non_lvalue_expression] = STATE(3277), - [sym_lvalue_expression] = STATE(3392), - [sym__expression_statement_expression] = STATE(3228), - [sym_assignment_expression] = STATE(3289), - [sym_binary_expression] = STATE(3228), - [sym_postfix_unary_expression] = STATE(3289), - [sym_prefix_unary_expression] = STATE(3289), - [sym__pointer_indirection_expression] = STATE(2609), - [sym_query_expression] = STATE(3228), - [sym_from_clause] = STATE(6173), - [sym_conditional_expression] = STATE(3228), - [sym_conditional_access_expression] = STATE(3228), - [sym_as_expression] = STATE(3228), - [sym_is_expression] = STATE(3228), - [sym_is_pattern_expression] = STATE(3228), - [sym_cast_expression] = STATE(3228), - [sym_checked_expression] = STATE(3228), - [sym_invocation_expression] = STATE(3289), - [sym_switch_expression] = STATE(3228), - [sym_await_expression] = STATE(3289), - [sym_throw_expression] = STATE(3228), - [sym_element_access_expression] = STATE(2609), - [sym_interpolated_string_expression] = STATE(3228), - [sym_member_access_expression] = STATE(2609), - [sym_object_creation_expression] = STATE(3289), - [sym_parenthesized_expression] = STATE(3289), - [sym__parenthesized_lvalue_expression] = STATE(2609), - [sym_lambda_expression] = STATE(3228), - [sym__lambda_expression_init] = STATE(7334), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3228), - [sym_anonymous_method_expression] = STATE(3228), - [sym_anonymous_object_creation_expression] = STATE(3228), - [sym_implicit_array_creation_expression] = STATE(3228), - [sym_implicit_object_creation_expression] = STATE(3228), - [sym_implicit_stackalloc_expression] = STATE(3228), - [sym_initializer_expression] = STATE(3228), - [sym_default_expression] = STATE(3228), - [sym_with_expression] = STATE(3228), - [sym_sizeof_expression] = STATE(3228), - [sym_typeof_expression] = STATE(3228), - [sym_makeref_expression] = STATE(3228), - [sym_ref_expression] = STATE(3228), - [sym_reftype_expression] = STATE(3228), - [sym_refvalue_expression] = STATE(3228), - [sym_stackalloc_expression] = STATE(3228), - [sym_range_expression] = STATE(3228), - [sym_tuple_expression] = STATE(2609), - [sym_literal] = STATE(3228), - [sym_character_literal] = STATE(3278), - [sym_string_literal] = STATE(3278), - [sym_raw_string_literal] = STATE(3278), - [sym_boolean_literal] = STATE(3278), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3228), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2816), + [sym__name] = STATE(5873), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2238), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(3195), + [sym_non_lvalue_expression] = STATE(3495), + [sym_lvalue_expression] = STATE(3131), + [sym__expression_statement_expression] = STATE(3462), + [sym_assignment_expression] = STATE(3497), + [sym_binary_expression] = STATE(3462), + [sym_postfix_unary_expression] = STATE(3497), + [sym_prefix_unary_expression] = STATE(3497), + [sym__pointer_indirection_expression] = STATE(2815), + [sym_query_expression] = STATE(3462), + [sym_from_clause] = STATE(6140), + [sym_conditional_expression] = STATE(3462), + [sym_conditional_access_expression] = STATE(3462), + [sym_as_expression] = STATE(3462), + [sym_is_expression] = STATE(3462), + [sym_is_pattern_expression] = STATE(3462), + [sym_cast_expression] = STATE(3462), + [sym_checked_expression] = STATE(3462), + [sym_invocation_expression] = STATE(3497), + [sym_switch_expression] = STATE(3462), + [sym_await_expression] = STATE(3497), + [sym_throw_expression] = STATE(3462), + [sym_element_access_expression] = STATE(2815), + [sym_interpolated_string_expression] = STATE(3462), + [sym_member_access_expression] = STATE(2815), + [sym_object_creation_expression] = STATE(3497), + [sym_parenthesized_expression] = STATE(3497), + [sym__parenthesized_lvalue_expression] = STATE(2815), + [sym_lambda_expression] = STATE(3462), + [sym__lambda_expression_init] = STATE(7423), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3462), + [sym_anonymous_method_expression] = STATE(3462), + [sym_anonymous_object_creation_expression] = STATE(3462), + [sym_implicit_array_creation_expression] = STATE(3462), + [sym_implicit_object_creation_expression] = STATE(3462), + [sym_implicit_stackalloc_expression] = STATE(3462), + [sym_initializer_expression] = STATE(3462), + [sym_default_expression] = STATE(3462), + [sym_with_expression] = STATE(3462), + [sym_sizeof_expression] = STATE(3462), + [sym_typeof_expression] = STATE(3462), + [sym_makeref_expression] = STATE(3462), + [sym_ref_expression] = STATE(3462), + [sym_reftype_expression] = STATE(3462), + [sym_refvalue_expression] = STATE(3462), + [sym_stackalloc_expression] = STATE(3462), + [sym_range_expression] = STATE(3462), + [sym_tuple_expression] = STATE(2815), + [sym_literal] = STATE(3462), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3462), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(935), [sym_preproc_endregion] = STATE(935), [sym_preproc_line] = STATE(935), @@ -199874,47 +199760,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(935), [sym_preproc_define] = STATE(935), [sym_preproc_undef] = STATE(935), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3396), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3367), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1153), - [anon_sym_LPAREN] = ACTIONS(1859), - [anon_sym_ref] = ACTIONS(1861), - [anon_sym_LBRACE] = ACTIONS(1159), - [anon_sym_delegate] = ACTIONS(1161), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1305), + [anon_sym_LPAREN] = ACTIONS(1307), + [anon_sym_ref] = ACTIONS(1309), + [anon_sym_LBRACE] = ACTIONS(1311), + [anon_sym_delegate] = ACTIONS(1313), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1863), + [anon_sym_new] = ACTIONS(1315), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1167), - [anon_sym_BANG] = ACTIONS(1867), - [anon_sym_TILDE] = ACTIONS(1867), - [anon_sym_PLUS_PLUS] = ACTIONS(1867), - [anon_sym_DASH_DASH] = ACTIONS(1867), - [anon_sym_true] = ACTIONS(1173), - [anon_sym_false] = ACTIONS(1173), - [anon_sym_PLUS] = ACTIONS(1865), - [anon_sym_DASH] = ACTIONS(1865), - [anon_sym_STAR] = ACTIONS(1869), - [anon_sym_CARET] = ACTIONS(1867), - [anon_sym_AMP] = ACTIONS(1867), - [anon_sym_this] = ACTIONS(1177), + [anon_sym_checked] = ACTIONS(1317), + [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(1319), + [anon_sym_CARET] = ACTIONS(1067), + [anon_sym_AMP] = ACTIONS(1067), + [anon_sym_this] = ACTIONS(1321), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1179), + [anon_sym_base] = ACTIONS(1323), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1181), - [anon_sym_unchecked] = ACTIONS(1167), + [sym_predefined_type] = ACTIONS(91), + [anon_sym_unchecked] = ACTIONS(1317), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1183), - [anon_sym_throw] = ACTIONS(1871), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(1325), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1873), - [anon_sym_DOT_DOT] = ACTIONS(1875), + [anon_sym_await] = ACTIONS(1327), + [anon_sym_DOT_DOT] = ACTIONS(1329), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -199927,19 +199813,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1191), - [anon_sym_sizeof] = ACTIONS(1193), - [anon_sym_typeof] = ACTIONS(1195), - [anon_sym___makeref] = ACTIONS(1197), - [anon_sym___reftype] = ACTIONS(1199), - [anon_sym___refvalue] = ACTIONS(1201), - [sym_null_literal] = ACTIONS(1203), - [anon_sym_SQUOTE] = ACTIONS(1205), - [sym_integer_literal] = ACTIONS(1203), - [sym_real_literal] = ACTIONS(1207), - [anon_sym_DQUOTE] = ACTIONS(1209), - [sym_verbatim_string_literal] = ACTIONS(1207), - [aux_sym_preproc_if_token1] = ACTIONS(1211), + [anon_sym_stackalloc] = ACTIONS(1331), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(1333), + [anon_sym___reftype] = ACTIONS(1335), + [anon_sym___refvalue] = ACTIONS(1337), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_literal] = ACTIONS(143), + [anon_sym_DQUOTE] = ACTIONS(145), + [sym_verbatim_string_literal] = ACTIONS(143), + [aux_sym_preproc_if_token1] = ACTIONS(1339), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -199950,90 +199836,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1213), - [sym_interpolation_verbatim_start] = ACTIONS(1215), - [sym_interpolation_raw_start] = ACTIONS(1217), - [sym_raw_string_start] = ACTIONS(1219), + [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(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2610), - [sym__name] = STATE(5896), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2384), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(4753), - [sym_non_lvalue_expression] = STATE(3277), - [sym_lvalue_expression] = STATE(3392), - [sym__expression_statement_expression] = STATE(3228), - [sym_assignment_expression] = STATE(3289), - [sym_binary_expression] = STATE(3228), - [sym_postfix_unary_expression] = STATE(3289), - [sym_prefix_unary_expression] = STATE(3289), - [sym__pointer_indirection_expression] = STATE(2609), - [sym_query_expression] = STATE(3228), - [sym_from_clause] = STATE(6173), - [sym_conditional_expression] = STATE(3228), - [sym_conditional_access_expression] = STATE(3228), - [sym_as_expression] = STATE(3228), - [sym_is_expression] = STATE(3228), - [sym_is_pattern_expression] = STATE(3228), - [sym_cast_expression] = STATE(3228), - [sym_checked_expression] = STATE(3228), - [sym_invocation_expression] = STATE(3289), - [sym_switch_expression] = STATE(3228), - [sym_await_expression] = STATE(3289), - [sym_throw_expression] = STATE(3228), - [sym_element_access_expression] = STATE(2609), - [sym_interpolated_string_expression] = STATE(3228), - [sym_member_access_expression] = STATE(2609), - [sym_object_creation_expression] = STATE(3289), - [sym_parenthesized_expression] = STATE(3289), - [sym__parenthesized_lvalue_expression] = STATE(2609), - [sym_lambda_expression] = STATE(3228), - [sym__lambda_expression_init] = STATE(7334), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3228), - [sym_anonymous_method_expression] = STATE(3228), - [sym_anonymous_object_creation_expression] = STATE(3228), - [sym_implicit_array_creation_expression] = STATE(3228), - [sym_implicit_object_creation_expression] = STATE(3228), - [sym_implicit_stackalloc_expression] = STATE(3228), - [sym_initializer_expression] = STATE(3228), - [sym_default_expression] = STATE(3228), - [sym_with_expression] = STATE(3228), - [sym_sizeof_expression] = STATE(3228), - [sym_typeof_expression] = STATE(3228), - [sym_makeref_expression] = STATE(3228), - [sym_ref_expression] = STATE(3228), - [sym_reftype_expression] = STATE(3228), - [sym_refvalue_expression] = STATE(3228), - [sym_stackalloc_expression] = STATE(3228), - [sym_range_expression] = STATE(3228), - [sym_tuple_expression] = STATE(2609), - [sym_literal] = STATE(3228), - [sym_character_literal] = STATE(3278), - [sym_string_literal] = STATE(3278), - [sym_raw_string_literal] = STATE(3278), - [sym_boolean_literal] = STATE(3278), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3228), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(3182), + [sym__name] = STATE(5888), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2286), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2262), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(4704), + [sym_non_lvalue_expression] = STATE(4580), + [sym_lvalue_expression] = STATE(3373), + [sym__expression_statement_expression] = STATE(4573), + [sym_assignment_expression] = STATE(4581), + [sym_binary_expression] = STATE(4573), + [sym_postfix_unary_expression] = STATE(4581), + [sym_prefix_unary_expression] = STATE(4581), + [sym__pointer_indirection_expression] = STATE(3144), + [sym_query_expression] = STATE(4573), + [sym_from_clause] = STATE(6133), + [sym_conditional_expression] = STATE(4573), + [sym_conditional_access_expression] = STATE(4573), + [sym_as_expression] = STATE(4573), + [sym_is_expression] = STATE(4573), + [sym_is_pattern_expression] = STATE(4573), + [sym_cast_expression] = STATE(4573), + [sym_checked_expression] = STATE(4573), + [sym_invocation_expression] = STATE(4581), + [sym_switch_expression] = STATE(4573), + [sym_await_expression] = STATE(4581), + [sym_throw_expression] = STATE(4573), + [sym_element_access_expression] = STATE(3144), + [sym_interpolated_string_expression] = STATE(4573), + [sym_member_access_expression] = STATE(3144), + [sym_object_creation_expression] = STATE(4581), + [sym_parenthesized_expression] = STATE(4581), + [sym__parenthesized_lvalue_expression] = STATE(3144), + [sym_lambda_expression] = STATE(4573), + [sym__lambda_expression_init] = STATE(7614), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(4573), + [sym_anonymous_method_expression] = STATE(4573), + [sym_anonymous_object_creation_expression] = STATE(4573), + [sym_implicit_array_creation_expression] = STATE(4573), + [sym_implicit_object_creation_expression] = STATE(4573), + [sym_implicit_stackalloc_expression] = STATE(4573), + [sym_initializer_expression] = STATE(4573), + [sym_default_expression] = STATE(4573), + [sym_with_expression] = STATE(4573), + [sym_sizeof_expression] = STATE(4573), + [sym_typeof_expression] = STATE(4573), + [sym_makeref_expression] = STATE(4573), + [sym_ref_expression] = STATE(4573), + [sym_reftype_expression] = STATE(4573), + [sym_refvalue_expression] = STATE(4573), + [sym_stackalloc_expression] = STATE(4573), + [sym_range_expression] = STATE(4573), + [sym_tuple_expression] = STATE(3144), + [sym_literal] = STATE(4573), + [sym_character_literal] = STATE(4575), + [sym_string_literal] = STATE(4575), + [sym_raw_string_literal] = STATE(4575), + [sym_boolean_literal] = STATE(4575), + [sym_identifier] = STATE(2237), + [sym__reserved_identifier] = STATE(2229), + [sym_preproc_if_in_expression] = STATE(4573), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(936), [sym_preproc_endregion] = STATE(936), [sym_preproc_line] = STATE(936), @@ -200043,166 +199929,166 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(936), [sym_preproc_define] = STATE(936), [sym_preproc_undef] = STATE(936), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3396), - [sym__identifier_token] = ACTIONS(25), - [anon_sym_alias] = ACTIONS(29), - [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1153), - [anon_sym_LPAREN] = ACTIONS(1859), - [anon_sym_ref] = ACTIONS(1861), - [anon_sym_LBRACE] = ACTIONS(1159), - [anon_sym_delegate] = ACTIONS(1161), - [anon_sym_async] = ACTIONS(1047), - [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1863), - [anon_sym_where] = ACTIONS(29), - [anon_sym_notnull] = ACTIONS(29), - [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1167), - [anon_sym_BANG] = ACTIONS(1867), - [anon_sym_TILDE] = ACTIONS(1867), - [anon_sym_PLUS_PLUS] = ACTIONS(1867), - [anon_sym_DASH_DASH] = ACTIONS(1867), - [anon_sym_true] = ACTIONS(1173), - [anon_sym_false] = ACTIONS(1173), - [anon_sym_PLUS] = ACTIONS(1865), - [anon_sym_DASH] = ACTIONS(1865), - [anon_sym_STAR] = ACTIONS(1869), - [anon_sym_CARET] = ACTIONS(1867), - [anon_sym_AMP] = ACTIONS(1867), - [anon_sym_this] = ACTIONS(1177), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1179), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1181), - [anon_sym_unchecked] = ACTIONS(1167), - [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1183), - [anon_sym_throw] = ACTIONS(1871), - [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1873), - [anon_sym_DOT_DOT] = ACTIONS(1875), - [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(1191), - [anon_sym_sizeof] = ACTIONS(1193), - [anon_sym_typeof] = ACTIONS(1195), - [anon_sym___makeref] = ACTIONS(1197), - [anon_sym___reftype] = ACTIONS(1199), - [anon_sym___refvalue] = ACTIONS(1201), - [sym_null_literal] = ACTIONS(1203), - [anon_sym_SQUOTE] = ACTIONS(1205), - [sym_integer_literal] = ACTIONS(1203), - [sym_real_literal] = ACTIONS(1207), - [anon_sym_DQUOTE] = ACTIONS(1209), - [sym_verbatim_string_literal] = ACTIONS(1207), - [aux_sym_preproc_if_token1] = ACTIONS(1211), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1213), - [sym_interpolation_verbatim_start] = ACTIONS(1215), - [sym_interpolation_raw_start] = ACTIONS(1217), - [sym_raw_string_start] = ACTIONS(1219), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3501), + [sym__identifier_token] = ACTIONS(1385), + [anon_sym_alias] = ACTIONS(1387), + [anon_sym_global] = ACTIONS(1387), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1389), + [anon_sym_LPAREN] = ACTIONS(1565), + [anon_sym_ref] = ACTIONS(1567), + [anon_sym_LBRACE] = ACTIONS(1395), + [anon_sym_delegate] = ACTIONS(1397), + [anon_sym_async] = ACTIONS(1045), + [anon_sym_file] = ACTIONS(1387), + [anon_sym_new] = ACTIONS(1399), + [anon_sym_where] = ACTIONS(1387), + [anon_sym_notnull] = ACTIONS(1387), + [anon_sym_unmanaged] = ACTIONS(1387), + [anon_sym_checked] = ACTIONS(1401), + [anon_sym_BANG] = ACTIONS(1571), + [anon_sym_TILDE] = ACTIONS(1571), + [anon_sym_PLUS_PLUS] = ACTIONS(1571), + [anon_sym_DASH_DASH] = ACTIONS(1571), + [anon_sym_true] = ACTIONS(1407), + [anon_sym_false] = ACTIONS(1407), + [anon_sym_PLUS] = ACTIONS(1569), + [anon_sym_DASH] = ACTIONS(1569), + [anon_sym_STAR] = ACTIONS(1409), + [anon_sym_CARET] = ACTIONS(1571), + [anon_sym_AMP] = ACTIONS(1571), + [anon_sym_this] = ACTIONS(1411), + [anon_sym_scoped] = ACTIONS(1413), + [anon_sym_base] = ACTIONS(1415), + [anon_sym_var] = ACTIONS(1417), + [sym_predefined_type] = ACTIONS(1419), + [anon_sym_unchecked] = ACTIONS(1401), + [anon_sym_yield] = ACTIONS(1387), + [anon_sym_default] = ACTIONS(1421), + [anon_sym_throw] = ACTIONS(1573), + [anon_sym_when] = ACTIONS(1387), + [anon_sym_await] = ACTIONS(1575), + [anon_sym_DOT_DOT] = ACTIONS(1577), + [anon_sym_from] = ACTIONS(1429), + [anon_sym_into] = ACTIONS(1387), + [anon_sym_join] = ACTIONS(1387), + [anon_sym_on] = ACTIONS(1387), + [anon_sym_equals] = ACTIONS(1387), + [anon_sym_let] = ACTIONS(1387), + [anon_sym_orderby] = ACTIONS(1387), + [anon_sym_ascending] = ACTIONS(1387), + [anon_sym_descending] = ACTIONS(1387), + [anon_sym_group] = ACTIONS(1387), + [anon_sym_by] = ACTIONS(1387), + [anon_sym_select] = ACTIONS(1387), + [anon_sym_stackalloc] = ACTIONS(1431), + [anon_sym_sizeof] = ACTIONS(1433), + [anon_sym_typeof] = ACTIONS(1435), + [anon_sym___makeref] = ACTIONS(1437), + [anon_sym___reftype] = ACTIONS(1439), + [anon_sym___refvalue] = ACTIONS(1441), + [sym_null_literal] = ACTIONS(1443), + [anon_sym_SQUOTE] = ACTIONS(1445), + [sym_integer_literal] = ACTIONS(1443), + [sym_real_literal] = ACTIONS(1447), + [anon_sym_DQUOTE] = ACTIONS(1449), + [sym_verbatim_string_literal] = ACTIONS(1447), + [aux_sym_preproc_if_token1] = ACTIONS(1451), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + [sym_interpolation_regular_start] = ACTIONS(1453), + [sym_interpolation_verbatim_start] = ACTIONS(1455), + [sym_interpolation_raw_start] = ACTIONS(1457), + [sym_raw_string_start] = ACTIONS(1459), }, [937] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2610), - [sym__name] = STATE(5896), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2384), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(4754), - [sym_non_lvalue_expression] = STATE(3277), - [sym_lvalue_expression] = STATE(3392), - [sym__expression_statement_expression] = STATE(3228), - [sym_assignment_expression] = STATE(3289), - [sym_binary_expression] = STATE(3228), - [sym_postfix_unary_expression] = STATE(3289), - [sym_prefix_unary_expression] = STATE(3289), - [sym__pointer_indirection_expression] = STATE(2609), - [sym_query_expression] = STATE(3228), - [sym_from_clause] = STATE(6173), - [sym_conditional_expression] = STATE(3228), - [sym_conditional_access_expression] = STATE(3228), - [sym_as_expression] = STATE(3228), - [sym_is_expression] = STATE(3228), - [sym_is_pattern_expression] = STATE(3228), - [sym_cast_expression] = STATE(3228), - [sym_checked_expression] = STATE(3228), - [sym_invocation_expression] = STATE(3289), - [sym_switch_expression] = STATE(3228), - [sym_await_expression] = STATE(3289), - [sym_throw_expression] = STATE(3228), - [sym_element_access_expression] = STATE(2609), - [sym_interpolated_string_expression] = STATE(3228), - [sym_member_access_expression] = STATE(2609), - [sym_object_creation_expression] = STATE(3289), - [sym_parenthesized_expression] = STATE(3289), - [sym__parenthesized_lvalue_expression] = STATE(2609), - [sym_lambda_expression] = STATE(3228), - [sym__lambda_expression_init] = STATE(7334), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3228), - [sym_anonymous_method_expression] = STATE(3228), - [sym_anonymous_object_creation_expression] = STATE(3228), - [sym_implicit_array_creation_expression] = STATE(3228), - [sym_implicit_object_creation_expression] = STATE(3228), - [sym_implicit_stackalloc_expression] = STATE(3228), - [sym_initializer_expression] = STATE(3228), - [sym_default_expression] = STATE(3228), - [sym_with_expression] = STATE(3228), - [sym_sizeof_expression] = STATE(3228), - [sym_typeof_expression] = STATE(3228), - [sym_makeref_expression] = STATE(3228), - [sym_ref_expression] = STATE(3228), - [sym_reftype_expression] = STATE(3228), - [sym_refvalue_expression] = STATE(3228), - [sym_stackalloc_expression] = STATE(3228), - [sym_range_expression] = STATE(3228), - [sym_tuple_expression] = STATE(2609), - [sym_literal] = STATE(3228), - [sym_character_literal] = STATE(3278), - [sym_string_literal] = STATE(3278), - [sym_raw_string_literal] = STATE(3278), - [sym_boolean_literal] = STATE(3278), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3228), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(3182), + [sym__name] = STATE(5888), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2286), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2262), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(4705), + [sym_non_lvalue_expression] = STATE(4580), + [sym_lvalue_expression] = STATE(3373), + [sym__expression_statement_expression] = STATE(4573), + [sym_assignment_expression] = STATE(4581), + [sym_binary_expression] = STATE(4573), + [sym_postfix_unary_expression] = STATE(4581), + [sym_prefix_unary_expression] = STATE(4581), + [sym__pointer_indirection_expression] = STATE(3144), + [sym_query_expression] = STATE(4573), + [sym_from_clause] = STATE(6133), + [sym_conditional_expression] = STATE(4573), + [sym_conditional_access_expression] = STATE(4573), + [sym_as_expression] = STATE(4573), + [sym_is_expression] = STATE(4573), + [sym_is_pattern_expression] = STATE(4573), + [sym_cast_expression] = STATE(4573), + [sym_checked_expression] = STATE(4573), + [sym_invocation_expression] = STATE(4581), + [sym_switch_expression] = STATE(4573), + [sym_await_expression] = STATE(4581), + [sym_throw_expression] = STATE(4573), + [sym_element_access_expression] = STATE(3144), + [sym_interpolated_string_expression] = STATE(4573), + [sym_member_access_expression] = STATE(3144), + [sym_object_creation_expression] = STATE(4581), + [sym_parenthesized_expression] = STATE(4581), + [sym__parenthesized_lvalue_expression] = STATE(3144), + [sym_lambda_expression] = STATE(4573), + [sym__lambda_expression_init] = STATE(7614), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(4573), + [sym_anonymous_method_expression] = STATE(4573), + [sym_anonymous_object_creation_expression] = STATE(4573), + [sym_implicit_array_creation_expression] = STATE(4573), + [sym_implicit_object_creation_expression] = STATE(4573), + [sym_implicit_stackalloc_expression] = STATE(4573), + [sym_initializer_expression] = STATE(4573), + [sym_default_expression] = STATE(4573), + [sym_with_expression] = STATE(4573), + [sym_sizeof_expression] = STATE(4573), + [sym_typeof_expression] = STATE(4573), + [sym_makeref_expression] = STATE(4573), + [sym_ref_expression] = STATE(4573), + [sym_reftype_expression] = STATE(4573), + [sym_refvalue_expression] = STATE(4573), + [sym_stackalloc_expression] = STATE(4573), + [sym_range_expression] = STATE(4573), + [sym_tuple_expression] = STATE(3144), + [sym_literal] = STATE(4573), + [sym_character_literal] = STATE(4575), + [sym_string_literal] = STATE(4575), + [sym_raw_string_literal] = STATE(4575), + [sym_boolean_literal] = STATE(4575), + [sym_identifier] = STATE(2237), + [sym__reserved_identifier] = STATE(2229), + [sym_preproc_if_in_expression] = STATE(4573), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(937), [sym_preproc_endregion] = STATE(937), [sym_preproc_line] = STATE(937), @@ -200212,166 +200098,166 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(937), [sym_preproc_define] = STATE(937), [sym_preproc_undef] = STATE(937), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3396), - [sym__identifier_token] = ACTIONS(25), - [anon_sym_alias] = ACTIONS(29), - [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1153), - [anon_sym_LPAREN] = ACTIONS(1859), - [anon_sym_ref] = ACTIONS(1861), - [anon_sym_LBRACE] = ACTIONS(1159), - [anon_sym_delegate] = ACTIONS(1161), - [anon_sym_async] = ACTIONS(1047), - [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1863), - [anon_sym_where] = ACTIONS(29), - [anon_sym_notnull] = ACTIONS(29), - [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1167), - [anon_sym_BANG] = ACTIONS(1867), - [anon_sym_TILDE] = ACTIONS(1867), - [anon_sym_PLUS_PLUS] = ACTIONS(1867), - [anon_sym_DASH_DASH] = ACTIONS(1867), - [anon_sym_true] = ACTIONS(1173), - [anon_sym_false] = ACTIONS(1173), - [anon_sym_PLUS] = ACTIONS(1865), - [anon_sym_DASH] = ACTIONS(1865), - [anon_sym_STAR] = ACTIONS(1869), - [anon_sym_CARET] = ACTIONS(1867), - [anon_sym_AMP] = ACTIONS(1867), - [anon_sym_this] = ACTIONS(1177), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1179), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1181), - [anon_sym_unchecked] = ACTIONS(1167), - [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1183), - [anon_sym_throw] = ACTIONS(1871), - [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1873), - [anon_sym_DOT_DOT] = ACTIONS(1875), - [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(1191), - [anon_sym_sizeof] = ACTIONS(1193), - [anon_sym_typeof] = ACTIONS(1195), - [anon_sym___makeref] = ACTIONS(1197), - [anon_sym___reftype] = ACTIONS(1199), - [anon_sym___refvalue] = ACTIONS(1201), - [sym_null_literal] = ACTIONS(1203), - [anon_sym_SQUOTE] = ACTIONS(1205), - [sym_integer_literal] = ACTIONS(1203), - [sym_real_literal] = ACTIONS(1207), - [anon_sym_DQUOTE] = ACTIONS(1209), - [sym_verbatim_string_literal] = ACTIONS(1207), - [aux_sym_preproc_if_token1] = ACTIONS(1211), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1213), - [sym_interpolation_verbatim_start] = ACTIONS(1215), - [sym_interpolation_raw_start] = ACTIONS(1217), - [sym_raw_string_start] = ACTIONS(1219), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3501), + [sym__identifier_token] = ACTIONS(1385), + [anon_sym_alias] = ACTIONS(1387), + [anon_sym_global] = ACTIONS(1387), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1389), + [anon_sym_LPAREN] = ACTIONS(1565), + [anon_sym_ref] = ACTIONS(1567), + [anon_sym_LBRACE] = ACTIONS(1395), + [anon_sym_delegate] = ACTIONS(1397), + [anon_sym_async] = ACTIONS(1045), + [anon_sym_file] = ACTIONS(1387), + [anon_sym_new] = ACTIONS(1399), + [anon_sym_where] = ACTIONS(1387), + [anon_sym_notnull] = ACTIONS(1387), + [anon_sym_unmanaged] = ACTIONS(1387), + [anon_sym_checked] = ACTIONS(1401), + [anon_sym_BANG] = ACTIONS(1571), + [anon_sym_TILDE] = ACTIONS(1571), + [anon_sym_PLUS_PLUS] = ACTIONS(1571), + [anon_sym_DASH_DASH] = ACTIONS(1571), + [anon_sym_true] = ACTIONS(1407), + [anon_sym_false] = ACTIONS(1407), + [anon_sym_PLUS] = ACTIONS(1569), + [anon_sym_DASH] = ACTIONS(1569), + [anon_sym_STAR] = ACTIONS(1409), + [anon_sym_CARET] = ACTIONS(1571), + [anon_sym_AMP] = ACTIONS(1571), + [anon_sym_this] = ACTIONS(1411), + [anon_sym_scoped] = ACTIONS(1413), + [anon_sym_base] = ACTIONS(1415), + [anon_sym_var] = ACTIONS(1417), + [sym_predefined_type] = ACTIONS(1419), + [anon_sym_unchecked] = ACTIONS(1401), + [anon_sym_yield] = ACTIONS(1387), + [anon_sym_default] = ACTIONS(1421), + [anon_sym_throw] = ACTIONS(1573), + [anon_sym_when] = ACTIONS(1387), + [anon_sym_await] = ACTIONS(1575), + [anon_sym_DOT_DOT] = ACTIONS(1577), + [anon_sym_from] = ACTIONS(1429), + [anon_sym_into] = ACTIONS(1387), + [anon_sym_join] = ACTIONS(1387), + [anon_sym_on] = ACTIONS(1387), + [anon_sym_equals] = ACTIONS(1387), + [anon_sym_let] = ACTIONS(1387), + [anon_sym_orderby] = ACTIONS(1387), + [anon_sym_ascending] = ACTIONS(1387), + [anon_sym_descending] = ACTIONS(1387), + [anon_sym_group] = ACTIONS(1387), + [anon_sym_by] = ACTIONS(1387), + [anon_sym_select] = ACTIONS(1387), + [anon_sym_stackalloc] = ACTIONS(1431), + [anon_sym_sizeof] = ACTIONS(1433), + [anon_sym_typeof] = ACTIONS(1435), + [anon_sym___makeref] = ACTIONS(1437), + [anon_sym___reftype] = ACTIONS(1439), + [anon_sym___refvalue] = ACTIONS(1441), + [sym_null_literal] = ACTIONS(1443), + [anon_sym_SQUOTE] = ACTIONS(1445), + [sym_integer_literal] = ACTIONS(1443), + [sym_real_literal] = ACTIONS(1447), + [anon_sym_DQUOTE] = ACTIONS(1449), + [sym_verbatim_string_literal] = ACTIONS(1447), + [aux_sym_preproc_if_token1] = ACTIONS(1451), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + [sym_interpolation_regular_start] = ACTIONS(1453), + [sym_interpolation_verbatim_start] = ACTIONS(1455), + [sym_interpolation_raw_start] = ACTIONS(1457), + [sym_raw_string_start] = ACTIONS(1459), }, [938] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2610), - [sym__name] = STATE(5896), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2384), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(4755), - [sym_non_lvalue_expression] = STATE(3277), - [sym_lvalue_expression] = STATE(3392), - [sym__expression_statement_expression] = STATE(3228), - [sym_assignment_expression] = STATE(3289), - [sym_binary_expression] = STATE(3228), - [sym_postfix_unary_expression] = STATE(3289), - [sym_prefix_unary_expression] = STATE(3289), - [sym__pointer_indirection_expression] = STATE(2609), - [sym_query_expression] = STATE(3228), - [sym_from_clause] = STATE(6173), - [sym_conditional_expression] = STATE(3228), - [sym_conditional_access_expression] = STATE(3228), - [sym_as_expression] = STATE(3228), - [sym_is_expression] = STATE(3228), - [sym_is_pattern_expression] = STATE(3228), - [sym_cast_expression] = STATE(3228), - [sym_checked_expression] = STATE(3228), - [sym_invocation_expression] = STATE(3289), - [sym_switch_expression] = STATE(3228), - [sym_await_expression] = STATE(3289), - [sym_throw_expression] = STATE(3228), - [sym_element_access_expression] = STATE(2609), - [sym_interpolated_string_expression] = STATE(3228), - [sym_member_access_expression] = STATE(2609), - [sym_object_creation_expression] = STATE(3289), - [sym_parenthesized_expression] = STATE(3289), - [sym__parenthesized_lvalue_expression] = STATE(2609), - [sym_lambda_expression] = STATE(3228), - [sym__lambda_expression_init] = STATE(7334), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3228), - [sym_anonymous_method_expression] = STATE(3228), - [sym_anonymous_object_creation_expression] = STATE(3228), - [sym_implicit_array_creation_expression] = STATE(3228), - [sym_implicit_object_creation_expression] = STATE(3228), - [sym_implicit_stackalloc_expression] = STATE(3228), - [sym_initializer_expression] = STATE(3228), - [sym_default_expression] = STATE(3228), - [sym_with_expression] = STATE(3228), - [sym_sizeof_expression] = STATE(3228), - [sym_typeof_expression] = STATE(3228), - [sym_makeref_expression] = STATE(3228), - [sym_ref_expression] = STATE(3228), - [sym_reftype_expression] = STATE(3228), - [sym_refvalue_expression] = STATE(3228), - [sym_stackalloc_expression] = STATE(3228), - [sym_range_expression] = STATE(3228), - [sym_tuple_expression] = STATE(2609), - [sym_literal] = STATE(3228), - [sym_character_literal] = STATE(3278), - [sym_string_literal] = STATE(3278), - [sym_raw_string_literal] = STATE(3278), - [sym_boolean_literal] = STATE(3278), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3228), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(3182), + [sym__name] = STATE(5888), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2286), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2262), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(4706), + [sym_non_lvalue_expression] = STATE(4580), + [sym_lvalue_expression] = STATE(3373), + [sym__expression_statement_expression] = STATE(4573), + [sym_assignment_expression] = STATE(4581), + [sym_binary_expression] = STATE(4573), + [sym_postfix_unary_expression] = STATE(4581), + [sym_prefix_unary_expression] = STATE(4581), + [sym__pointer_indirection_expression] = STATE(3144), + [sym_query_expression] = STATE(4573), + [sym_from_clause] = STATE(6133), + [sym_conditional_expression] = STATE(4573), + [sym_conditional_access_expression] = STATE(4573), + [sym_as_expression] = STATE(4573), + [sym_is_expression] = STATE(4573), + [sym_is_pattern_expression] = STATE(4573), + [sym_cast_expression] = STATE(4573), + [sym_checked_expression] = STATE(4573), + [sym_invocation_expression] = STATE(4581), + [sym_switch_expression] = STATE(4573), + [sym_await_expression] = STATE(4581), + [sym_throw_expression] = STATE(4573), + [sym_element_access_expression] = STATE(3144), + [sym_interpolated_string_expression] = STATE(4573), + [sym_member_access_expression] = STATE(3144), + [sym_object_creation_expression] = STATE(4581), + [sym_parenthesized_expression] = STATE(4581), + [sym__parenthesized_lvalue_expression] = STATE(3144), + [sym_lambda_expression] = STATE(4573), + [sym__lambda_expression_init] = STATE(7614), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(4573), + [sym_anonymous_method_expression] = STATE(4573), + [sym_anonymous_object_creation_expression] = STATE(4573), + [sym_implicit_array_creation_expression] = STATE(4573), + [sym_implicit_object_creation_expression] = STATE(4573), + [sym_implicit_stackalloc_expression] = STATE(4573), + [sym_initializer_expression] = STATE(4573), + [sym_default_expression] = STATE(4573), + [sym_with_expression] = STATE(4573), + [sym_sizeof_expression] = STATE(4573), + [sym_typeof_expression] = STATE(4573), + [sym_makeref_expression] = STATE(4573), + [sym_ref_expression] = STATE(4573), + [sym_reftype_expression] = STATE(4573), + [sym_refvalue_expression] = STATE(4573), + [sym_stackalloc_expression] = STATE(4573), + [sym_range_expression] = STATE(4573), + [sym_tuple_expression] = STATE(3144), + [sym_literal] = STATE(4573), + [sym_character_literal] = STATE(4575), + [sym_string_literal] = STATE(4575), + [sym_raw_string_literal] = STATE(4575), + [sym_boolean_literal] = STATE(4575), + [sym_identifier] = STATE(2237), + [sym__reserved_identifier] = STATE(2229), + [sym_preproc_if_in_expression] = STATE(4573), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(938), [sym_preproc_endregion] = STATE(938), [sym_preproc_line] = STATE(938), @@ -200381,166 +200267,166 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(938), [sym_preproc_define] = STATE(938), [sym_preproc_undef] = STATE(938), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3396), - [sym__identifier_token] = ACTIONS(25), - [anon_sym_alias] = ACTIONS(29), - [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1153), - [anon_sym_LPAREN] = ACTIONS(1859), - [anon_sym_ref] = ACTIONS(1861), - [anon_sym_LBRACE] = ACTIONS(1159), - [anon_sym_delegate] = ACTIONS(1161), - [anon_sym_async] = ACTIONS(1047), - [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1863), - [anon_sym_where] = ACTIONS(29), - [anon_sym_notnull] = ACTIONS(29), - [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1167), - [anon_sym_BANG] = ACTIONS(1867), - [anon_sym_TILDE] = ACTIONS(1867), - [anon_sym_PLUS_PLUS] = ACTIONS(1867), - [anon_sym_DASH_DASH] = ACTIONS(1867), - [anon_sym_true] = ACTIONS(1173), - [anon_sym_false] = ACTIONS(1173), - [anon_sym_PLUS] = ACTIONS(1865), - [anon_sym_DASH] = ACTIONS(1865), - [anon_sym_STAR] = ACTIONS(1869), - [anon_sym_CARET] = ACTIONS(1867), - [anon_sym_AMP] = ACTIONS(1867), - [anon_sym_this] = ACTIONS(1177), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1179), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1181), - [anon_sym_unchecked] = ACTIONS(1167), - [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1183), - [anon_sym_throw] = ACTIONS(1871), - [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1873), - [anon_sym_DOT_DOT] = ACTIONS(1875), - [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(1191), - [anon_sym_sizeof] = ACTIONS(1193), - [anon_sym_typeof] = ACTIONS(1195), - [anon_sym___makeref] = ACTIONS(1197), - [anon_sym___reftype] = ACTIONS(1199), - [anon_sym___refvalue] = ACTIONS(1201), - [sym_null_literal] = ACTIONS(1203), - [anon_sym_SQUOTE] = ACTIONS(1205), - [sym_integer_literal] = ACTIONS(1203), - [sym_real_literal] = ACTIONS(1207), - [anon_sym_DQUOTE] = ACTIONS(1209), - [sym_verbatim_string_literal] = ACTIONS(1207), - [aux_sym_preproc_if_token1] = ACTIONS(1211), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1213), - [sym_interpolation_verbatim_start] = ACTIONS(1215), - [sym_interpolation_raw_start] = ACTIONS(1217), - [sym_raw_string_start] = ACTIONS(1219), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3501), + [sym__identifier_token] = ACTIONS(1385), + [anon_sym_alias] = ACTIONS(1387), + [anon_sym_global] = ACTIONS(1387), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1389), + [anon_sym_LPAREN] = ACTIONS(1565), + [anon_sym_ref] = ACTIONS(1567), + [anon_sym_LBRACE] = ACTIONS(1395), + [anon_sym_delegate] = ACTIONS(1397), + [anon_sym_async] = ACTIONS(1045), + [anon_sym_file] = ACTIONS(1387), + [anon_sym_new] = ACTIONS(1399), + [anon_sym_where] = ACTIONS(1387), + [anon_sym_notnull] = ACTIONS(1387), + [anon_sym_unmanaged] = ACTIONS(1387), + [anon_sym_checked] = ACTIONS(1401), + [anon_sym_BANG] = ACTIONS(1571), + [anon_sym_TILDE] = ACTIONS(1571), + [anon_sym_PLUS_PLUS] = ACTIONS(1571), + [anon_sym_DASH_DASH] = ACTIONS(1571), + [anon_sym_true] = ACTIONS(1407), + [anon_sym_false] = ACTIONS(1407), + [anon_sym_PLUS] = ACTIONS(1569), + [anon_sym_DASH] = ACTIONS(1569), + [anon_sym_STAR] = ACTIONS(1409), + [anon_sym_CARET] = ACTIONS(1571), + [anon_sym_AMP] = ACTIONS(1571), + [anon_sym_this] = ACTIONS(1411), + [anon_sym_scoped] = ACTIONS(1413), + [anon_sym_base] = ACTIONS(1415), + [anon_sym_var] = ACTIONS(1417), + [sym_predefined_type] = ACTIONS(1419), + [anon_sym_unchecked] = ACTIONS(1401), + [anon_sym_yield] = ACTIONS(1387), + [anon_sym_default] = ACTIONS(1421), + [anon_sym_throw] = ACTIONS(1573), + [anon_sym_when] = ACTIONS(1387), + [anon_sym_await] = ACTIONS(1575), + [anon_sym_DOT_DOT] = ACTIONS(1577), + [anon_sym_from] = ACTIONS(1429), + [anon_sym_into] = ACTIONS(1387), + [anon_sym_join] = ACTIONS(1387), + [anon_sym_on] = ACTIONS(1387), + [anon_sym_equals] = ACTIONS(1387), + [anon_sym_let] = ACTIONS(1387), + [anon_sym_orderby] = ACTIONS(1387), + [anon_sym_ascending] = ACTIONS(1387), + [anon_sym_descending] = ACTIONS(1387), + [anon_sym_group] = ACTIONS(1387), + [anon_sym_by] = ACTIONS(1387), + [anon_sym_select] = ACTIONS(1387), + [anon_sym_stackalloc] = ACTIONS(1431), + [anon_sym_sizeof] = ACTIONS(1433), + [anon_sym_typeof] = ACTIONS(1435), + [anon_sym___makeref] = ACTIONS(1437), + [anon_sym___reftype] = ACTIONS(1439), + [anon_sym___refvalue] = ACTIONS(1441), + [sym_null_literal] = ACTIONS(1443), + [anon_sym_SQUOTE] = ACTIONS(1445), + [sym_integer_literal] = ACTIONS(1443), + [sym_real_literal] = ACTIONS(1447), + [anon_sym_DQUOTE] = ACTIONS(1449), + [sym_verbatim_string_literal] = ACTIONS(1447), + [aux_sym_preproc_if_token1] = ACTIONS(1451), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + [sym_interpolation_regular_start] = ACTIONS(1453), + [sym_interpolation_verbatim_start] = ACTIONS(1455), + [sym_interpolation_raw_start] = ACTIONS(1457), + [sym_raw_string_start] = ACTIONS(1459), }, [939] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2610), - [sym__name] = STATE(5871), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2319), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(4476), - [sym_non_lvalue_expression] = STATE(3277), - [sym_lvalue_expression] = STATE(3280), - [sym__expression_statement_expression] = STATE(3228), - [sym_assignment_expression] = STATE(3289), - [sym_binary_expression] = STATE(3228), - [sym_postfix_unary_expression] = STATE(3289), - [sym_prefix_unary_expression] = STATE(3289), - [sym__pointer_indirection_expression] = STATE(2609), - [sym_query_expression] = STATE(3228), - [sym_from_clause] = STATE(6177), - [sym_conditional_expression] = STATE(3228), - [sym_conditional_access_expression] = STATE(3228), - [sym_as_expression] = STATE(3228), - [sym_is_expression] = STATE(3228), - [sym_is_pattern_expression] = STATE(3228), - [sym_cast_expression] = STATE(3228), - [sym_checked_expression] = STATE(3228), - [sym_invocation_expression] = STATE(3289), - [sym_switch_expression] = STATE(3228), - [sym_await_expression] = STATE(3289), - [sym_throw_expression] = STATE(3228), - [sym_element_access_expression] = STATE(2609), - [sym_interpolated_string_expression] = STATE(3228), - [sym_member_access_expression] = STATE(2609), - [sym_object_creation_expression] = STATE(3289), - [sym_parenthesized_expression] = STATE(3289), - [sym__parenthesized_lvalue_expression] = STATE(2609), - [sym_lambda_expression] = STATE(3228), - [sym__lambda_expression_init] = STATE(7636), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3228), - [sym_anonymous_method_expression] = STATE(3228), - [sym_anonymous_object_creation_expression] = STATE(3228), - [sym_implicit_array_creation_expression] = STATE(3228), - [sym_implicit_object_creation_expression] = STATE(3228), - [sym_implicit_stackalloc_expression] = STATE(3228), - [sym_initializer_expression] = STATE(3228), - [sym_default_expression] = STATE(3228), - [sym_with_expression] = STATE(3228), - [sym_sizeof_expression] = STATE(3228), - [sym_typeof_expression] = STATE(3228), - [sym_makeref_expression] = STATE(3228), - [sym_ref_expression] = STATE(3228), - [sym_reftype_expression] = STATE(3228), - [sym_refvalue_expression] = STATE(3228), - [sym_stackalloc_expression] = STATE(3228), - [sym_range_expression] = STATE(3228), - [sym_tuple_expression] = STATE(2609), - [sym_literal] = STATE(3228), - [sym_character_literal] = STATE(3278), - [sym_string_literal] = STATE(3278), - [sym_raw_string_literal] = STATE(3278), - [sym_boolean_literal] = STATE(3278), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3228), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(3182), + [sym__name] = STATE(5888), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2286), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2262), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(4489), + [sym_non_lvalue_expression] = STATE(4580), + [sym_lvalue_expression] = STATE(3373), + [sym__expression_statement_expression] = STATE(4573), + [sym_assignment_expression] = STATE(4581), + [sym_binary_expression] = STATE(4573), + [sym_postfix_unary_expression] = STATE(4581), + [sym_prefix_unary_expression] = STATE(4581), + [sym__pointer_indirection_expression] = STATE(3144), + [sym_query_expression] = STATE(4573), + [sym_from_clause] = STATE(6133), + [sym_conditional_expression] = STATE(4573), + [sym_conditional_access_expression] = STATE(4573), + [sym_as_expression] = STATE(4573), + [sym_is_expression] = STATE(4573), + [sym_is_pattern_expression] = STATE(4573), + [sym_cast_expression] = STATE(4573), + [sym_checked_expression] = STATE(4573), + [sym_invocation_expression] = STATE(4581), + [sym_switch_expression] = STATE(4573), + [sym_await_expression] = STATE(4581), + [sym_throw_expression] = STATE(4573), + [sym_element_access_expression] = STATE(3144), + [sym_interpolated_string_expression] = STATE(4573), + [sym_member_access_expression] = STATE(3144), + [sym_object_creation_expression] = STATE(4581), + [sym_parenthesized_expression] = STATE(4581), + [sym__parenthesized_lvalue_expression] = STATE(3144), + [sym_lambda_expression] = STATE(4573), + [sym__lambda_expression_init] = STATE(7614), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(4573), + [sym_anonymous_method_expression] = STATE(4573), + [sym_anonymous_object_creation_expression] = STATE(4573), + [sym_implicit_array_creation_expression] = STATE(4573), + [sym_implicit_object_creation_expression] = STATE(4573), + [sym_implicit_stackalloc_expression] = STATE(4573), + [sym_initializer_expression] = STATE(4573), + [sym_default_expression] = STATE(4573), + [sym_with_expression] = STATE(4573), + [sym_sizeof_expression] = STATE(4573), + [sym_typeof_expression] = STATE(4573), + [sym_makeref_expression] = STATE(4573), + [sym_ref_expression] = STATE(4573), + [sym_reftype_expression] = STATE(4573), + [sym_refvalue_expression] = STATE(4573), + [sym_stackalloc_expression] = STATE(4573), + [sym_range_expression] = STATE(4573), + [sym_tuple_expression] = STATE(3144), + [sym_literal] = STATE(4573), + [sym_character_literal] = STATE(4575), + [sym_string_literal] = STATE(4575), + [sym_raw_string_literal] = STATE(4575), + [sym_boolean_literal] = STATE(4575), + [sym_identifier] = STATE(2237), + [sym__reserved_identifier] = STATE(2229), + [sym_preproc_if_in_expression] = STATE(4573), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(939), [sym_preproc_endregion] = STATE(939), [sym_preproc_line] = STATE(939), @@ -200550,166 +200436,166 @@ 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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3396), - [sym__identifier_token] = ACTIONS(25), - [anon_sym_alias] = ACTIONS(29), - [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1153), - [anon_sym_LPAREN] = ACTIONS(1559), - [anon_sym_ref] = ACTIONS(1561), - [anon_sym_LBRACE] = ACTIONS(1159), - [anon_sym_delegate] = ACTIONS(1161), - [anon_sym_async] = ACTIONS(1047), - [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1529), - [anon_sym_where] = ACTIONS(29), - [anon_sym_notnull] = ACTIONS(29), - [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1167), - [anon_sym_BANG] = ACTIONS(1565), - [anon_sym_TILDE] = ACTIONS(1565), - [anon_sym_PLUS_PLUS] = ACTIONS(1565), - [anon_sym_DASH_DASH] = ACTIONS(1565), - [anon_sym_true] = ACTIONS(1173), - [anon_sym_false] = ACTIONS(1173), - [anon_sym_PLUS] = ACTIONS(1563), - [anon_sym_DASH] = ACTIONS(1563), - [anon_sym_STAR] = ACTIONS(1567), - [anon_sym_CARET] = ACTIONS(1565), - [anon_sym_AMP] = ACTIONS(1565), - [anon_sym_this] = ACTIONS(1177), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1179), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1181), - [anon_sym_unchecked] = ACTIONS(1167), - [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1183), - [anon_sym_throw] = ACTIONS(1569), - [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1571), - [anon_sym_DOT_DOT] = ACTIONS(1573), - [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(1191), - [anon_sym_sizeof] = ACTIONS(1193), - [anon_sym_typeof] = ACTIONS(1195), - [anon_sym___makeref] = ACTIONS(1197), - [anon_sym___reftype] = ACTIONS(1199), - [anon_sym___refvalue] = ACTIONS(1201), - [sym_null_literal] = ACTIONS(1203), - [anon_sym_SQUOTE] = ACTIONS(1205), - [sym_integer_literal] = ACTIONS(1203), - [sym_real_literal] = ACTIONS(1207), - [anon_sym_DQUOTE] = ACTIONS(1209), - [sym_verbatim_string_literal] = ACTIONS(1207), - [aux_sym_preproc_if_token1] = ACTIONS(1211), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1213), - [sym_interpolation_verbatim_start] = ACTIONS(1215), - [sym_interpolation_raw_start] = ACTIONS(1217), - [sym_raw_string_start] = ACTIONS(1219), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3501), + [sym__identifier_token] = ACTIONS(1385), + [anon_sym_alias] = ACTIONS(1387), + [anon_sym_global] = ACTIONS(1387), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1389), + [anon_sym_LPAREN] = ACTIONS(1565), + [anon_sym_ref] = ACTIONS(1567), + [anon_sym_LBRACE] = ACTIONS(1395), + [anon_sym_delegate] = ACTIONS(1397), + [anon_sym_async] = ACTIONS(1045), + [anon_sym_file] = ACTIONS(1387), + [anon_sym_new] = ACTIONS(1399), + [anon_sym_where] = ACTIONS(1387), + [anon_sym_notnull] = ACTIONS(1387), + [anon_sym_unmanaged] = ACTIONS(1387), + [anon_sym_checked] = ACTIONS(1401), + [anon_sym_BANG] = ACTIONS(1571), + [anon_sym_TILDE] = ACTIONS(1571), + [anon_sym_PLUS_PLUS] = ACTIONS(1571), + [anon_sym_DASH_DASH] = ACTIONS(1571), + [anon_sym_true] = ACTIONS(1407), + [anon_sym_false] = ACTIONS(1407), + [anon_sym_PLUS] = ACTIONS(1569), + [anon_sym_DASH] = ACTIONS(1569), + [anon_sym_STAR] = ACTIONS(1409), + [anon_sym_CARET] = ACTIONS(1571), + [anon_sym_AMP] = ACTIONS(1571), + [anon_sym_this] = ACTIONS(1411), + [anon_sym_scoped] = ACTIONS(1413), + [anon_sym_base] = ACTIONS(1415), + [anon_sym_var] = ACTIONS(1417), + [sym_predefined_type] = ACTIONS(1419), + [anon_sym_unchecked] = ACTIONS(1401), + [anon_sym_yield] = ACTIONS(1387), + [anon_sym_default] = ACTIONS(1421), + [anon_sym_throw] = ACTIONS(1573), + [anon_sym_when] = ACTIONS(1387), + [anon_sym_await] = ACTIONS(1575), + [anon_sym_DOT_DOT] = ACTIONS(1577), + [anon_sym_from] = ACTIONS(1429), + [anon_sym_into] = ACTIONS(1387), + [anon_sym_join] = ACTIONS(1387), + [anon_sym_on] = ACTIONS(1387), + [anon_sym_equals] = ACTIONS(1387), + [anon_sym_let] = ACTIONS(1387), + [anon_sym_orderby] = ACTIONS(1387), + [anon_sym_ascending] = ACTIONS(1387), + [anon_sym_descending] = ACTIONS(1387), + [anon_sym_group] = ACTIONS(1387), + [anon_sym_by] = ACTIONS(1387), + [anon_sym_select] = ACTIONS(1387), + [anon_sym_stackalloc] = ACTIONS(1431), + [anon_sym_sizeof] = ACTIONS(1433), + [anon_sym_typeof] = ACTIONS(1435), + [anon_sym___makeref] = ACTIONS(1437), + [anon_sym___reftype] = ACTIONS(1439), + [anon_sym___refvalue] = ACTIONS(1441), + [sym_null_literal] = ACTIONS(1443), + [anon_sym_SQUOTE] = ACTIONS(1445), + [sym_integer_literal] = ACTIONS(1443), + [sym_real_literal] = ACTIONS(1447), + [anon_sym_DQUOTE] = ACTIONS(1449), + [sym_verbatim_string_literal] = ACTIONS(1447), + [aux_sym_preproc_if_token1] = ACTIONS(1451), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + [sym_interpolation_regular_start] = ACTIONS(1453), + [sym_interpolation_verbatim_start] = ACTIONS(1455), + [sym_interpolation_raw_start] = ACTIONS(1457), + [sym_raw_string_start] = ACTIONS(1459), }, [940] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2762), - [sym__name] = STATE(5910), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2247), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(3163), - [sym_non_lvalue_expression] = STATE(3438), - [sym_lvalue_expression] = STATE(3136), - [sym__expression_statement_expression] = STATE(3362), - [sym_assignment_expression] = STATE(3449), - [sym_binary_expression] = STATE(3362), - [sym_postfix_unary_expression] = STATE(3449), - [sym_prefix_unary_expression] = STATE(3449), - [sym__pointer_indirection_expression] = STATE(2747), - [sym_query_expression] = STATE(3362), - [sym_from_clause] = STATE(6171), - [sym_conditional_expression] = STATE(3362), - [sym_conditional_access_expression] = STATE(3362), - [sym_as_expression] = STATE(3362), - [sym_is_expression] = STATE(3362), - [sym_is_pattern_expression] = STATE(3362), - [sym_cast_expression] = STATE(3362), - [sym_checked_expression] = STATE(3362), - [sym_invocation_expression] = STATE(3449), - [sym_switch_expression] = STATE(3362), - [sym_await_expression] = STATE(3449), - [sym_throw_expression] = STATE(3362), - [sym_element_access_expression] = STATE(2747), - [sym_interpolated_string_expression] = STATE(3362), - [sym_member_access_expression] = STATE(2747), - [sym_object_creation_expression] = STATE(3449), - [sym_parenthesized_expression] = STATE(3449), - [sym__parenthesized_lvalue_expression] = STATE(2747), - [sym_lambda_expression] = STATE(3362), - [sym__lambda_expression_init] = STATE(7452), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3362), - [sym_anonymous_method_expression] = STATE(3362), - [sym_anonymous_object_creation_expression] = STATE(3362), - [sym_implicit_array_creation_expression] = STATE(3362), - [sym_implicit_object_creation_expression] = STATE(3362), - [sym_implicit_stackalloc_expression] = STATE(3362), - [sym_initializer_expression] = STATE(3362), - [sym_default_expression] = STATE(3362), - [sym_with_expression] = STATE(3362), - [sym_sizeof_expression] = STATE(3362), - [sym_typeof_expression] = STATE(3362), - [sym_makeref_expression] = STATE(3362), - [sym_ref_expression] = STATE(3362), - [sym_reftype_expression] = STATE(3362), - [sym_refvalue_expression] = STATE(3362), - [sym_stackalloc_expression] = STATE(3362), - [sym_range_expression] = STATE(3362), - [sym_tuple_expression] = STATE(2747), - [sym_literal] = STATE(3362), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3362), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(3182), + [sym__name] = STATE(5888), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2286), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2262), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(4490), + [sym_non_lvalue_expression] = STATE(4580), + [sym_lvalue_expression] = STATE(3373), + [sym__expression_statement_expression] = STATE(4573), + [sym_assignment_expression] = STATE(4581), + [sym_binary_expression] = STATE(4573), + [sym_postfix_unary_expression] = STATE(4581), + [sym_prefix_unary_expression] = STATE(4581), + [sym__pointer_indirection_expression] = STATE(3144), + [sym_query_expression] = STATE(4573), + [sym_from_clause] = STATE(6133), + [sym_conditional_expression] = STATE(4573), + [sym_conditional_access_expression] = STATE(4573), + [sym_as_expression] = STATE(4573), + [sym_is_expression] = STATE(4573), + [sym_is_pattern_expression] = STATE(4573), + [sym_cast_expression] = STATE(4573), + [sym_checked_expression] = STATE(4573), + [sym_invocation_expression] = STATE(4581), + [sym_switch_expression] = STATE(4573), + [sym_await_expression] = STATE(4581), + [sym_throw_expression] = STATE(4573), + [sym_element_access_expression] = STATE(3144), + [sym_interpolated_string_expression] = STATE(4573), + [sym_member_access_expression] = STATE(3144), + [sym_object_creation_expression] = STATE(4581), + [sym_parenthesized_expression] = STATE(4581), + [sym__parenthesized_lvalue_expression] = STATE(3144), + [sym_lambda_expression] = STATE(4573), + [sym__lambda_expression_init] = STATE(7614), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(4573), + [sym_anonymous_method_expression] = STATE(4573), + [sym_anonymous_object_creation_expression] = STATE(4573), + [sym_implicit_array_creation_expression] = STATE(4573), + [sym_implicit_object_creation_expression] = STATE(4573), + [sym_implicit_stackalloc_expression] = STATE(4573), + [sym_initializer_expression] = STATE(4573), + [sym_default_expression] = STATE(4573), + [sym_with_expression] = STATE(4573), + [sym_sizeof_expression] = STATE(4573), + [sym_typeof_expression] = STATE(4573), + [sym_makeref_expression] = STATE(4573), + [sym_ref_expression] = STATE(4573), + [sym_reftype_expression] = STATE(4573), + [sym_refvalue_expression] = STATE(4573), + [sym_stackalloc_expression] = STATE(4573), + [sym_range_expression] = STATE(4573), + [sym_tuple_expression] = STATE(3144), + [sym_literal] = STATE(4573), + [sym_character_literal] = STATE(4575), + [sym_string_literal] = STATE(4575), + [sym_raw_string_literal] = STATE(4575), + [sym_boolean_literal] = STATE(4575), + [sym_identifier] = STATE(2237), + [sym__reserved_identifier] = STATE(2229), + [sym_preproc_if_in_expression] = STATE(4573), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(940), [sym_preproc_endregion] = STATE(940), [sym_preproc_line] = STATE(940), @@ -200719,166 +200605,166 @@ 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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3385), - [sym__identifier_token] = ACTIONS(25), - [anon_sym_alias] = ACTIONS(29), - [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1307), - [anon_sym_LPAREN] = ACTIONS(1309), - [anon_sym_ref] = ACTIONS(1311), - [anon_sym_LBRACE] = ACTIONS(1313), - [anon_sym_delegate] = ACTIONS(1315), - [anon_sym_async] = ACTIONS(1047), - [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1317), - [anon_sym_where] = ACTIONS(29), - [anon_sym_notnull] = ACTIONS(29), - [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1319), - [anon_sym_BANG] = ACTIONS(1069), - [anon_sym_TILDE] = ACTIONS(1069), - [anon_sym_PLUS_PLUS] = ACTIONS(1069), - [anon_sym_DASH_DASH] = ACTIONS(1069), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1071), - [anon_sym_DASH] = ACTIONS(1071), - [anon_sym_STAR] = ACTIONS(1321), - [anon_sym_CARET] = ACTIONS(1069), - [anon_sym_AMP] = ACTIONS(1069), - [anon_sym_this] = ACTIONS(1323), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1325), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1319), - [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1327), - [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1329), - [anon_sym_DOT_DOT] = ACTIONS(1331), - [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(1333), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(1335), - [anon_sym___reftype] = ACTIONS(1337), - [anon_sym___refvalue] = ACTIONS(1339), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1341), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(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), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3501), + [sym__identifier_token] = ACTIONS(1385), + [anon_sym_alias] = ACTIONS(1387), + [anon_sym_global] = ACTIONS(1387), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1389), + [anon_sym_LPAREN] = ACTIONS(1565), + [anon_sym_ref] = ACTIONS(1567), + [anon_sym_LBRACE] = ACTIONS(1395), + [anon_sym_delegate] = ACTIONS(1397), + [anon_sym_async] = ACTIONS(1045), + [anon_sym_file] = ACTIONS(1387), + [anon_sym_new] = ACTIONS(1399), + [anon_sym_where] = ACTIONS(1387), + [anon_sym_notnull] = ACTIONS(1387), + [anon_sym_unmanaged] = ACTIONS(1387), + [anon_sym_checked] = ACTIONS(1401), + [anon_sym_BANG] = ACTIONS(1571), + [anon_sym_TILDE] = ACTIONS(1571), + [anon_sym_PLUS_PLUS] = ACTIONS(1571), + [anon_sym_DASH_DASH] = ACTIONS(1571), + [anon_sym_true] = ACTIONS(1407), + [anon_sym_false] = ACTIONS(1407), + [anon_sym_PLUS] = ACTIONS(1569), + [anon_sym_DASH] = ACTIONS(1569), + [anon_sym_STAR] = ACTIONS(1409), + [anon_sym_CARET] = ACTIONS(1571), + [anon_sym_AMP] = ACTIONS(1571), + [anon_sym_this] = ACTIONS(1411), + [anon_sym_scoped] = ACTIONS(1413), + [anon_sym_base] = ACTIONS(1415), + [anon_sym_var] = ACTIONS(1417), + [sym_predefined_type] = ACTIONS(1419), + [anon_sym_unchecked] = ACTIONS(1401), + [anon_sym_yield] = ACTIONS(1387), + [anon_sym_default] = ACTIONS(1421), + [anon_sym_throw] = ACTIONS(1573), + [anon_sym_when] = ACTIONS(1387), + [anon_sym_await] = ACTIONS(1575), + [anon_sym_DOT_DOT] = ACTIONS(1577), + [anon_sym_from] = ACTIONS(1429), + [anon_sym_into] = ACTIONS(1387), + [anon_sym_join] = ACTIONS(1387), + [anon_sym_on] = ACTIONS(1387), + [anon_sym_equals] = ACTIONS(1387), + [anon_sym_let] = ACTIONS(1387), + [anon_sym_orderby] = ACTIONS(1387), + [anon_sym_ascending] = ACTIONS(1387), + [anon_sym_descending] = ACTIONS(1387), + [anon_sym_group] = ACTIONS(1387), + [anon_sym_by] = ACTIONS(1387), + [anon_sym_select] = ACTIONS(1387), + [anon_sym_stackalloc] = ACTIONS(1431), + [anon_sym_sizeof] = ACTIONS(1433), + [anon_sym_typeof] = ACTIONS(1435), + [anon_sym___makeref] = ACTIONS(1437), + [anon_sym___reftype] = ACTIONS(1439), + [anon_sym___refvalue] = ACTIONS(1441), + [sym_null_literal] = ACTIONS(1443), + [anon_sym_SQUOTE] = ACTIONS(1445), + [sym_integer_literal] = ACTIONS(1443), + [sym_real_literal] = ACTIONS(1447), + [anon_sym_DQUOTE] = ACTIONS(1449), + [sym_verbatim_string_literal] = ACTIONS(1447), + [aux_sym_preproc_if_token1] = ACTIONS(1451), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + [sym_interpolation_regular_start] = ACTIONS(1453), + [sym_interpolation_verbatim_start] = ACTIONS(1455), + [sym_interpolation_raw_start] = ACTIONS(1457), + [sym_raw_string_start] = ACTIONS(1459), }, [941] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2610), - [sym__name] = STATE(5896), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2384), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(3145), - [sym_non_lvalue_expression] = STATE(3277), - [sym_lvalue_expression] = STATE(3392), - [sym__expression_statement_expression] = STATE(3228), - [sym_assignment_expression] = STATE(3289), - [sym_binary_expression] = STATE(3228), - [sym_postfix_unary_expression] = STATE(3289), - [sym_prefix_unary_expression] = STATE(3289), - [sym__pointer_indirection_expression] = STATE(2609), - [sym_query_expression] = STATE(3228), - [sym_from_clause] = STATE(6173), - [sym_conditional_expression] = STATE(3228), - [sym_conditional_access_expression] = STATE(3228), - [sym_as_expression] = STATE(3228), - [sym_is_expression] = STATE(3228), - [sym_is_pattern_expression] = STATE(3228), - [sym_cast_expression] = STATE(3228), - [sym_checked_expression] = STATE(3228), - [sym_invocation_expression] = STATE(3289), - [sym_switch_expression] = STATE(3228), - [sym_await_expression] = STATE(3289), - [sym_throw_expression] = STATE(3228), - [sym_element_access_expression] = STATE(2609), - [sym_interpolated_string_expression] = STATE(3228), - [sym_member_access_expression] = STATE(2609), - [sym_object_creation_expression] = STATE(3289), - [sym_parenthesized_expression] = STATE(3289), - [sym__parenthesized_lvalue_expression] = STATE(2609), - [sym_lambda_expression] = STATE(3228), - [sym__lambda_expression_init] = STATE(7334), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3228), - [sym_anonymous_method_expression] = STATE(3228), - [sym_anonymous_object_creation_expression] = STATE(3228), - [sym_implicit_array_creation_expression] = STATE(3228), - [sym_implicit_object_creation_expression] = STATE(3228), - [sym_implicit_stackalloc_expression] = STATE(3228), - [sym_initializer_expression] = STATE(3228), - [sym_default_expression] = STATE(3228), - [sym_with_expression] = STATE(3228), - [sym_sizeof_expression] = STATE(3228), - [sym_typeof_expression] = STATE(3228), - [sym_makeref_expression] = STATE(3228), - [sym_ref_expression] = STATE(3228), - [sym_reftype_expression] = STATE(3228), - [sym_refvalue_expression] = STATE(3228), - [sym_stackalloc_expression] = STATE(3228), - [sym_range_expression] = STATE(3228), - [sym_tuple_expression] = STATE(2609), - [sym_literal] = STATE(3228), - [sym_character_literal] = STATE(3278), - [sym_string_literal] = STATE(3278), - [sym_raw_string_literal] = STATE(3278), - [sym_boolean_literal] = STATE(3278), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3228), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(3182), + [sym__name] = STATE(5888), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2286), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2262), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(4491), + [sym_non_lvalue_expression] = STATE(4580), + [sym_lvalue_expression] = STATE(3373), + [sym__expression_statement_expression] = STATE(4573), + [sym_assignment_expression] = STATE(4581), + [sym_binary_expression] = STATE(4573), + [sym_postfix_unary_expression] = STATE(4581), + [sym_prefix_unary_expression] = STATE(4581), + [sym__pointer_indirection_expression] = STATE(3144), + [sym_query_expression] = STATE(4573), + [sym_from_clause] = STATE(6133), + [sym_conditional_expression] = STATE(4573), + [sym_conditional_access_expression] = STATE(4573), + [sym_as_expression] = STATE(4573), + [sym_is_expression] = STATE(4573), + [sym_is_pattern_expression] = STATE(4573), + [sym_cast_expression] = STATE(4573), + [sym_checked_expression] = STATE(4573), + [sym_invocation_expression] = STATE(4581), + [sym_switch_expression] = STATE(4573), + [sym_await_expression] = STATE(4581), + [sym_throw_expression] = STATE(4573), + [sym_element_access_expression] = STATE(3144), + [sym_interpolated_string_expression] = STATE(4573), + [sym_member_access_expression] = STATE(3144), + [sym_object_creation_expression] = STATE(4581), + [sym_parenthesized_expression] = STATE(4581), + [sym__parenthesized_lvalue_expression] = STATE(3144), + [sym_lambda_expression] = STATE(4573), + [sym__lambda_expression_init] = STATE(7614), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(4573), + [sym_anonymous_method_expression] = STATE(4573), + [sym_anonymous_object_creation_expression] = STATE(4573), + [sym_implicit_array_creation_expression] = STATE(4573), + [sym_implicit_object_creation_expression] = STATE(4573), + [sym_implicit_stackalloc_expression] = STATE(4573), + [sym_initializer_expression] = STATE(4573), + [sym_default_expression] = STATE(4573), + [sym_with_expression] = STATE(4573), + [sym_sizeof_expression] = STATE(4573), + [sym_typeof_expression] = STATE(4573), + [sym_makeref_expression] = STATE(4573), + [sym_ref_expression] = STATE(4573), + [sym_reftype_expression] = STATE(4573), + [sym_refvalue_expression] = STATE(4573), + [sym_stackalloc_expression] = STATE(4573), + [sym_range_expression] = STATE(4573), + [sym_tuple_expression] = STATE(3144), + [sym_literal] = STATE(4573), + [sym_character_literal] = STATE(4575), + [sym_string_literal] = STATE(4575), + [sym_raw_string_literal] = STATE(4575), + [sym_boolean_literal] = STATE(4575), + [sym_identifier] = STATE(2237), + [sym__reserved_identifier] = STATE(2229), + [sym_preproc_if_in_expression] = STATE(4573), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(941), [sym_preproc_endregion] = STATE(941), [sym_preproc_line] = STATE(941), @@ -200888,166 +200774,166 @@ 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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3396), - [sym__identifier_token] = ACTIONS(25), - [anon_sym_alias] = ACTIONS(29), - [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1153), - [anon_sym_LPAREN] = ACTIONS(1859), - [anon_sym_ref] = ACTIONS(1861), - [anon_sym_LBRACE] = ACTIONS(1159), - [anon_sym_delegate] = ACTIONS(1161), - [anon_sym_async] = ACTIONS(1047), - [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1863), - [anon_sym_where] = ACTIONS(29), - [anon_sym_notnull] = ACTIONS(29), - [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1167), - [anon_sym_BANG] = ACTIONS(1867), - [anon_sym_TILDE] = ACTIONS(1867), - [anon_sym_PLUS_PLUS] = ACTIONS(1867), - [anon_sym_DASH_DASH] = ACTIONS(1867), - [anon_sym_true] = ACTIONS(1173), - [anon_sym_false] = ACTIONS(1173), - [anon_sym_PLUS] = ACTIONS(1865), - [anon_sym_DASH] = ACTIONS(1865), - [anon_sym_STAR] = ACTIONS(1869), - [anon_sym_CARET] = ACTIONS(1867), - [anon_sym_AMP] = ACTIONS(1867), - [anon_sym_this] = ACTIONS(1177), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1179), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1181), - [anon_sym_unchecked] = ACTIONS(1167), - [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1183), - [anon_sym_throw] = ACTIONS(1871), - [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1873), - [anon_sym_DOT_DOT] = ACTIONS(1875), - [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(1191), - [anon_sym_sizeof] = ACTIONS(1193), - [anon_sym_typeof] = ACTIONS(1195), - [anon_sym___makeref] = ACTIONS(1197), - [anon_sym___reftype] = ACTIONS(1199), - [anon_sym___refvalue] = ACTIONS(1201), - [sym_null_literal] = ACTIONS(1203), - [anon_sym_SQUOTE] = ACTIONS(1205), - [sym_integer_literal] = ACTIONS(1203), - [sym_real_literal] = ACTIONS(1207), - [anon_sym_DQUOTE] = ACTIONS(1209), - [sym_verbatim_string_literal] = ACTIONS(1207), - [aux_sym_preproc_if_token1] = ACTIONS(1211), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1213), - [sym_interpolation_verbatim_start] = ACTIONS(1215), - [sym_interpolation_raw_start] = ACTIONS(1217), - [sym_raw_string_start] = ACTIONS(1219), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3501), + [sym__identifier_token] = ACTIONS(1385), + [anon_sym_alias] = ACTIONS(1387), + [anon_sym_global] = ACTIONS(1387), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1389), + [anon_sym_LPAREN] = ACTIONS(1565), + [anon_sym_ref] = ACTIONS(1567), + [anon_sym_LBRACE] = ACTIONS(1395), + [anon_sym_delegate] = ACTIONS(1397), + [anon_sym_async] = ACTIONS(1045), + [anon_sym_file] = ACTIONS(1387), + [anon_sym_new] = ACTIONS(1399), + [anon_sym_where] = ACTIONS(1387), + [anon_sym_notnull] = ACTIONS(1387), + [anon_sym_unmanaged] = ACTIONS(1387), + [anon_sym_checked] = ACTIONS(1401), + [anon_sym_BANG] = ACTIONS(1571), + [anon_sym_TILDE] = ACTIONS(1571), + [anon_sym_PLUS_PLUS] = ACTIONS(1571), + [anon_sym_DASH_DASH] = ACTIONS(1571), + [anon_sym_true] = ACTIONS(1407), + [anon_sym_false] = ACTIONS(1407), + [anon_sym_PLUS] = ACTIONS(1569), + [anon_sym_DASH] = ACTIONS(1569), + [anon_sym_STAR] = ACTIONS(1409), + [anon_sym_CARET] = ACTIONS(1571), + [anon_sym_AMP] = ACTIONS(1571), + [anon_sym_this] = ACTIONS(1411), + [anon_sym_scoped] = ACTIONS(1413), + [anon_sym_base] = ACTIONS(1415), + [anon_sym_var] = ACTIONS(1417), + [sym_predefined_type] = ACTIONS(1419), + [anon_sym_unchecked] = ACTIONS(1401), + [anon_sym_yield] = ACTIONS(1387), + [anon_sym_default] = ACTIONS(1421), + [anon_sym_throw] = ACTIONS(1573), + [anon_sym_when] = ACTIONS(1387), + [anon_sym_await] = ACTIONS(1575), + [anon_sym_DOT_DOT] = ACTIONS(1577), + [anon_sym_from] = ACTIONS(1429), + [anon_sym_into] = ACTIONS(1387), + [anon_sym_join] = ACTIONS(1387), + [anon_sym_on] = ACTIONS(1387), + [anon_sym_equals] = ACTIONS(1387), + [anon_sym_let] = ACTIONS(1387), + [anon_sym_orderby] = ACTIONS(1387), + [anon_sym_ascending] = ACTIONS(1387), + [anon_sym_descending] = ACTIONS(1387), + [anon_sym_group] = ACTIONS(1387), + [anon_sym_by] = ACTIONS(1387), + [anon_sym_select] = ACTIONS(1387), + [anon_sym_stackalloc] = ACTIONS(1431), + [anon_sym_sizeof] = ACTIONS(1433), + [anon_sym_typeof] = ACTIONS(1435), + [anon_sym___makeref] = ACTIONS(1437), + [anon_sym___reftype] = ACTIONS(1439), + [anon_sym___refvalue] = ACTIONS(1441), + [sym_null_literal] = ACTIONS(1443), + [anon_sym_SQUOTE] = ACTIONS(1445), + [sym_integer_literal] = ACTIONS(1443), + [sym_real_literal] = ACTIONS(1447), + [anon_sym_DQUOTE] = ACTIONS(1449), + [sym_verbatim_string_literal] = ACTIONS(1447), + [aux_sym_preproc_if_token1] = ACTIONS(1451), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + [sym_interpolation_regular_start] = ACTIONS(1453), + [sym_interpolation_verbatim_start] = ACTIONS(1455), + [sym_interpolation_raw_start] = ACTIONS(1457), + [sym_raw_string_start] = ACTIONS(1459), }, [942] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(5910), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2247), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(4910), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3379), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3080), - [sym_postfix_unary_expression] = STATE(3111), - [sym_prefix_unary_expression] = STATE(3111), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6154), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3080), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3111), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3080), - [sym_member_access_expression] = STATE(2484), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3111), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7575), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(3080), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3080), - [sym_typeof_expression] = STATE(3080), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2484), - [sym_literal] = STATE(3080), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(3182), + [sym__name] = STATE(5888), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2286), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2262), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(4707), + [sym_non_lvalue_expression] = STATE(4580), + [sym_lvalue_expression] = STATE(3373), + [sym__expression_statement_expression] = STATE(4573), + [sym_assignment_expression] = STATE(4581), + [sym_binary_expression] = STATE(4573), + [sym_postfix_unary_expression] = STATE(4581), + [sym_prefix_unary_expression] = STATE(4581), + [sym__pointer_indirection_expression] = STATE(3144), + [sym_query_expression] = STATE(4573), + [sym_from_clause] = STATE(6133), + [sym_conditional_expression] = STATE(4573), + [sym_conditional_access_expression] = STATE(4573), + [sym_as_expression] = STATE(4573), + [sym_is_expression] = STATE(4573), + [sym_is_pattern_expression] = STATE(4573), + [sym_cast_expression] = STATE(4573), + [sym_checked_expression] = STATE(4573), + [sym_invocation_expression] = STATE(4581), + [sym_switch_expression] = STATE(4573), + [sym_await_expression] = STATE(4581), + [sym_throw_expression] = STATE(4573), + [sym_element_access_expression] = STATE(3144), + [sym_interpolated_string_expression] = STATE(4573), + [sym_member_access_expression] = STATE(3144), + [sym_object_creation_expression] = STATE(4581), + [sym_parenthesized_expression] = STATE(4581), + [sym__parenthesized_lvalue_expression] = STATE(3144), + [sym_lambda_expression] = STATE(4573), + [sym__lambda_expression_init] = STATE(7614), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(4573), + [sym_anonymous_method_expression] = STATE(4573), + [sym_anonymous_object_creation_expression] = STATE(4573), + [sym_implicit_array_creation_expression] = STATE(4573), + [sym_implicit_object_creation_expression] = STATE(4573), + [sym_implicit_stackalloc_expression] = STATE(4573), + [sym_initializer_expression] = STATE(4573), + [sym_default_expression] = STATE(4573), + [sym_with_expression] = STATE(4573), + [sym_sizeof_expression] = STATE(4573), + [sym_typeof_expression] = STATE(4573), + [sym_makeref_expression] = STATE(4573), + [sym_ref_expression] = STATE(4573), + [sym_reftype_expression] = STATE(4573), + [sym_refvalue_expression] = STATE(4573), + [sym_stackalloc_expression] = STATE(4573), + [sym_range_expression] = STATE(4573), + [sym_tuple_expression] = STATE(3144), + [sym_literal] = STATE(4573), + [sym_character_literal] = STATE(4575), + [sym_string_literal] = STATE(4575), + [sym_raw_string_literal] = STATE(4575), + [sym_boolean_literal] = STATE(4575), + [sym_identifier] = STATE(2237), + [sym__reserved_identifier] = STATE(2229), + [sym_preproc_if_in_expression] = STATE(4573), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(942), [sym_preproc_endregion] = STATE(942), [sym_preproc_line] = STATE(942), @@ -201057,47 +200943,892 @@ 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(3067), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3501), + [sym__identifier_token] = ACTIONS(1385), + [anon_sym_alias] = ACTIONS(1387), + [anon_sym_global] = ACTIONS(1387), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1389), + [anon_sym_LPAREN] = ACTIONS(1565), + [anon_sym_ref] = ACTIONS(1567), + [anon_sym_LBRACE] = ACTIONS(1395), + [anon_sym_delegate] = ACTIONS(1397), + [anon_sym_async] = ACTIONS(1045), + [anon_sym_file] = ACTIONS(1387), + [anon_sym_new] = ACTIONS(1399), + [anon_sym_where] = ACTIONS(1387), + [anon_sym_notnull] = ACTIONS(1387), + [anon_sym_unmanaged] = ACTIONS(1387), + [anon_sym_checked] = ACTIONS(1401), + [anon_sym_BANG] = ACTIONS(1571), + [anon_sym_TILDE] = ACTIONS(1571), + [anon_sym_PLUS_PLUS] = ACTIONS(1571), + [anon_sym_DASH_DASH] = ACTIONS(1571), + [anon_sym_true] = ACTIONS(1407), + [anon_sym_false] = ACTIONS(1407), + [anon_sym_PLUS] = ACTIONS(1569), + [anon_sym_DASH] = ACTIONS(1569), + [anon_sym_STAR] = ACTIONS(1409), + [anon_sym_CARET] = ACTIONS(1571), + [anon_sym_AMP] = ACTIONS(1571), + [anon_sym_this] = ACTIONS(1411), + [anon_sym_scoped] = ACTIONS(1413), + [anon_sym_base] = ACTIONS(1415), + [anon_sym_var] = ACTIONS(1417), + [sym_predefined_type] = ACTIONS(1419), + [anon_sym_unchecked] = ACTIONS(1401), + [anon_sym_yield] = ACTIONS(1387), + [anon_sym_default] = ACTIONS(1421), + [anon_sym_throw] = ACTIONS(1573), + [anon_sym_when] = ACTIONS(1387), + [anon_sym_await] = ACTIONS(1575), + [anon_sym_DOT_DOT] = ACTIONS(1577), + [anon_sym_from] = ACTIONS(1429), + [anon_sym_into] = ACTIONS(1387), + [anon_sym_join] = ACTIONS(1387), + [anon_sym_on] = ACTIONS(1387), + [anon_sym_equals] = ACTIONS(1387), + [anon_sym_let] = ACTIONS(1387), + [anon_sym_orderby] = ACTIONS(1387), + [anon_sym_ascending] = ACTIONS(1387), + [anon_sym_descending] = ACTIONS(1387), + [anon_sym_group] = ACTIONS(1387), + [anon_sym_by] = ACTIONS(1387), + [anon_sym_select] = ACTIONS(1387), + [anon_sym_stackalloc] = ACTIONS(1431), + [anon_sym_sizeof] = ACTIONS(1433), + [anon_sym_typeof] = ACTIONS(1435), + [anon_sym___makeref] = ACTIONS(1437), + [anon_sym___reftype] = ACTIONS(1439), + [anon_sym___refvalue] = ACTIONS(1441), + [sym_null_literal] = ACTIONS(1443), + [anon_sym_SQUOTE] = ACTIONS(1445), + [sym_integer_literal] = ACTIONS(1443), + [sym_real_literal] = ACTIONS(1447), + [anon_sym_DQUOTE] = ACTIONS(1449), + [sym_verbatim_string_literal] = ACTIONS(1447), + [aux_sym_preproc_if_token1] = ACTIONS(1451), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + [sym_interpolation_regular_start] = ACTIONS(1453), + [sym_interpolation_verbatim_start] = ACTIONS(1455), + [sym_interpolation_raw_start] = ACTIONS(1457), + [sym_raw_string_start] = ACTIONS(1459), + }, + [943] = { + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(3182), + [sym__name] = STATE(5888), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2286), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2262), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(4492), + [sym_non_lvalue_expression] = STATE(4580), + [sym_lvalue_expression] = STATE(3373), + [sym__expression_statement_expression] = STATE(4573), + [sym_assignment_expression] = STATE(4581), + [sym_binary_expression] = STATE(4573), + [sym_postfix_unary_expression] = STATE(4581), + [sym_prefix_unary_expression] = STATE(4581), + [sym__pointer_indirection_expression] = STATE(3144), + [sym_query_expression] = STATE(4573), + [sym_from_clause] = STATE(6133), + [sym_conditional_expression] = STATE(4573), + [sym_conditional_access_expression] = STATE(4573), + [sym_as_expression] = STATE(4573), + [sym_is_expression] = STATE(4573), + [sym_is_pattern_expression] = STATE(4573), + [sym_cast_expression] = STATE(4573), + [sym_checked_expression] = STATE(4573), + [sym_invocation_expression] = STATE(4581), + [sym_switch_expression] = STATE(4573), + [sym_await_expression] = STATE(4581), + [sym_throw_expression] = STATE(4573), + [sym_element_access_expression] = STATE(3144), + [sym_interpolated_string_expression] = STATE(4573), + [sym_member_access_expression] = STATE(3144), + [sym_object_creation_expression] = STATE(4581), + [sym_parenthesized_expression] = STATE(4581), + [sym__parenthesized_lvalue_expression] = STATE(3144), + [sym_lambda_expression] = STATE(4573), + [sym__lambda_expression_init] = STATE(7614), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(4573), + [sym_anonymous_method_expression] = STATE(4573), + [sym_anonymous_object_creation_expression] = STATE(4573), + [sym_implicit_array_creation_expression] = STATE(4573), + [sym_implicit_object_creation_expression] = STATE(4573), + [sym_implicit_stackalloc_expression] = STATE(4573), + [sym_initializer_expression] = STATE(4573), + [sym_default_expression] = STATE(4573), + [sym_with_expression] = STATE(4573), + [sym_sizeof_expression] = STATE(4573), + [sym_typeof_expression] = STATE(4573), + [sym_makeref_expression] = STATE(4573), + [sym_ref_expression] = STATE(4573), + [sym_reftype_expression] = STATE(4573), + [sym_refvalue_expression] = STATE(4573), + [sym_stackalloc_expression] = STATE(4573), + [sym_range_expression] = STATE(4573), + [sym_tuple_expression] = STATE(3144), + [sym_literal] = STATE(4573), + [sym_character_literal] = STATE(4575), + [sym_string_literal] = STATE(4575), + [sym_raw_string_literal] = STATE(4575), + [sym_boolean_literal] = STATE(4575), + [sym_identifier] = STATE(2237), + [sym__reserved_identifier] = STATE(2229), + [sym_preproc_if_in_expression] = STATE(4573), + [sym_preproc_if_in_attribute_list] = STATE(5583), + [sym_preproc_region] = STATE(943), + [sym_preproc_endregion] = STATE(943), + [sym_preproc_line] = STATE(943), + [sym_preproc_pragma] = STATE(943), + [sym_preproc_nullable] = STATE(943), + [sym_preproc_error] = STATE(943), + [sym_preproc_warning] = STATE(943), + [sym_preproc_define] = STATE(943), + [sym_preproc_undef] = STATE(943), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3501), + [sym__identifier_token] = ACTIONS(1385), + [anon_sym_alias] = ACTIONS(1387), + [anon_sym_global] = ACTIONS(1387), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1389), + [anon_sym_LPAREN] = ACTIONS(1565), + [anon_sym_ref] = ACTIONS(1567), + [anon_sym_LBRACE] = ACTIONS(1395), + [anon_sym_delegate] = ACTIONS(1397), + [anon_sym_async] = ACTIONS(1045), + [anon_sym_file] = ACTIONS(1387), + [anon_sym_new] = ACTIONS(1399), + [anon_sym_where] = ACTIONS(1387), + [anon_sym_notnull] = ACTIONS(1387), + [anon_sym_unmanaged] = ACTIONS(1387), + [anon_sym_checked] = ACTIONS(1401), + [anon_sym_BANG] = ACTIONS(1571), + [anon_sym_TILDE] = ACTIONS(1571), + [anon_sym_PLUS_PLUS] = ACTIONS(1571), + [anon_sym_DASH_DASH] = ACTIONS(1571), + [anon_sym_true] = ACTIONS(1407), + [anon_sym_false] = ACTIONS(1407), + [anon_sym_PLUS] = ACTIONS(1569), + [anon_sym_DASH] = ACTIONS(1569), + [anon_sym_STAR] = ACTIONS(1409), + [anon_sym_CARET] = ACTIONS(1571), + [anon_sym_AMP] = ACTIONS(1571), + [anon_sym_this] = ACTIONS(1411), + [anon_sym_scoped] = ACTIONS(1413), + [anon_sym_base] = ACTIONS(1415), + [anon_sym_var] = ACTIONS(1417), + [sym_predefined_type] = ACTIONS(1419), + [anon_sym_unchecked] = ACTIONS(1401), + [anon_sym_yield] = ACTIONS(1387), + [anon_sym_default] = ACTIONS(1421), + [anon_sym_throw] = ACTIONS(1573), + [anon_sym_when] = ACTIONS(1387), + [anon_sym_await] = ACTIONS(1575), + [anon_sym_DOT_DOT] = ACTIONS(1577), + [anon_sym_from] = ACTIONS(1429), + [anon_sym_into] = ACTIONS(1387), + [anon_sym_join] = ACTIONS(1387), + [anon_sym_on] = ACTIONS(1387), + [anon_sym_equals] = ACTIONS(1387), + [anon_sym_let] = ACTIONS(1387), + [anon_sym_orderby] = ACTIONS(1387), + [anon_sym_ascending] = ACTIONS(1387), + [anon_sym_descending] = ACTIONS(1387), + [anon_sym_group] = ACTIONS(1387), + [anon_sym_by] = ACTIONS(1387), + [anon_sym_select] = ACTIONS(1387), + [anon_sym_stackalloc] = ACTIONS(1431), + [anon_sym_sizeof] = ACTIONS(1433), + [anon_sym_typeof] = ACTIONS(1435), + [anon_sym___makeref] = ACTIONS(1437), + [anon_sym___reftype] = ACTIONS(1439), + [anon_sym___refvalue] = ACTIONS(1441), + [sym_null_literal] = ACTIONS(1443), + [anon_sym_SQUOTE] = ACTIONS(1445), + [sym_integer_literal] = ACTIONS(1443), + [sym_real_literal] = ACTIONS(1447), + [anon_sym_DQUOTE] = ACTIONS(1449), + [sym_verbatim_string_literal] = ACTIONS(1447), + [aux_sym_preproc_if_token1] = ACTIONS(1451), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + [sym_interpolation_regular_start] = ACTIONS(1453), + [sym_interpolation_verbatim_start] = ACTIONS(1455), + [sym_interpolation_raw_start] = ACTIONS(1457), + [sym_raw_string_start] = ACTIONS(1459), + }, + [944] = { + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(3182), + [sym__name] = STATE(5888), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2286), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2262), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(4494), + [sym_non_lvalue_expression] = STATE(4580), + [sym_lvalue_expression] = STATE(3373), + [sym__expression_statement_expression] = STATE(4573), + [sym_assignment_expression] = STATE(4581), + [sym_binary_expression] = STATE(4573), + [sym_postfix_unary_expression] = STATE(4581), + [sym_prefix_unary_expression] = STATE(4581), + [sym__pointer_indirection_expression] = STATE(3144), + [sym_query_expression] = STATE(4573), + [sym_from_clause] = STATE(6133), + [sym_conditional_expression] = STATE(4573), + [sym_conditional_access_expression] = STATE(4573), + [sym_as_expression] = STATE(4573), + [sym_is_expression] = STATE(4573), + [sym_is_pattern_expression] = STATE(4573), + [sym_cast_expression] = STATE(4573), + [sym_checked_expression] = STATE(4573), + [sym_invocation_expression] = STATE(4581), + [sym_switch_expression] = STATE(4573), + [sym_await_expression] = STATE(4581), + [sym_throw_expression] = STATE(4573), + [sym_element_access_expression] = STATE(3144), + [sym_interpolated_string_expression] = STATE(4573), + [sym_member_access_expression] = STATE(3144), + [sym_object_creation_expression] = STATE(4581), + [sym_parenthesized_expression] = STATE(4581), + [sym__parenthesized_lvalue_expression] = STATE(3144), + [sym_lambda_expression] = STATE(4573), + [sym__lambda_expression_init] = STATE(7614), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(4573), + [sym_anonymous_method_expression] = STATE(4573), + [sym_anonymous_object_creation_expression] = STATE(4573), + [sym_implicit_array_creation_expression] = STATE(4573), + [sym_implicit_object_creation_expression] = STATE(4573), + [sym_implicit_stackalloc_expression] = STATE(4573), + [sym_initializer_expression] = STATE(4573), + [sym_default_expression] = STATE(4573), + [sym_with_expression] = STATE(4573), + [sym_sizeof_expression] = STATE(4573), + [sym_typeof_expression] = STATE(4573), + [sym_makeref_expression] = STATE(4573), + [sym_ref_expression] = STATE(4573), + [sym_reftype_expression] = STATE(4573), + [sym_refvalue_expression] = STATE(4573), + [sym_stackalloc_expression] = STATE(4573), + [sym_range_expression] = STATE(4573), + [sym_tuple_expression] = STATE(3144), + [sym_literal] = STATE(4573), + [sym_character_literal] = STATE(4575), + [sym_string_literal] = STATE(4575), + [sym_raw_string_literal] = STATE(4575), + [sym_boolean_literal] = STATE(4575), + [sym_identifier] = STATE(2237), + [sym__reserved_identifier] = STATE(2229), + [sym_preproc_if_in_expression] = STATE(4573), + [sym_preproc_if_in_attribute_list] = STATE(5583), + [sym_preproc_region] = STATE(944), + [sym_preproc_endregion] = STATE(944), + [sym_preproc_line] = STATE(944), + [sym_preproc_pragma] = STATE(944), + [sym_preproc_nullable] = STATE(944), + [sym_preproc_error] = STATE(944), + [sym_preproc_warning] = STATE(944), + [sym_preproc_define] = STATE(944), + [sym_preproc_undef] = STATE(944), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3501), + [sym__identifier_token] = ACTIONS(1385), + [anon_sym_alias] = ACTIONS(1387), + [anon_sym_global] = ACTIONS(1387), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1389), + [anon_sym_LPAREN] = ACTIONS(1565), + [anon_sym_ref] = ACTIONS(1567), + [anon_sym_LBRACE] = ACTIONS(1395), + [anon_sym_delegate] = ACTIONS(1397), + [anon_sym_async] = ACTIONS(1045), + [anon_sym_file] = ACTIONS(1387), + [anon_sym_new] = ACTIONS(1399), + [anon_sym_where] = ACTIONS(1387), + [anon_sym_notnull] = ACTIONS(1387), + [anon_sym_unmanaged] = ACTIONS(1387), + [anon_sym_checked] = ACTIONS(1401), + [anon_sym_BANG] = ACTIONS(1571), + [anon_sym_TILDE] = ACTIONS(1571), + [anon_sym_PLUS_PLUS] = ACTIONS(1571), + [anon_sym_DASH_DASH] = ACTIONS(1571), + [anon_sym_true] = ACTIONS(1407), + [anon_sym_false] = ACTIONS(1407), + [anon_sym_PLUS] = ACTIONS(1569), + [anon_sym_DASH] = ACTIONS(1569), + [anon_sym_STAR] = ACTIONS(1409), + [anon_sym_CARET] = ACTIONS(1571), + [anon_sym_AMP] = ACTIONS(1571), + [anon_sym_this] = ACTIONS(1411), + [anon_sym_scoped] = ACTIONS(1413), + [anon_sym_base] = ACTIONS(1415), + [anon_sym_var] = ACTIONS(1417), + [sym_predefined_type] = ACTIONS(1419), + [anon_sym_unchecked] = ACTIONS(1401), + [anon_sym_yield] = ACTIONS(1387), + [anon_sym_default] = ACTIONS(1421), + [anon_sym_throw] = ACTIONS(1573), + [anon_sym_when] = ACTIONS(1387), + [anon_sym_await] = ACTIONS(1575), + [anon_sym_DOT_DOT] = ACTIONS(1577), + [anon_sym_from] = ACTIONS(1429), + [anon_sym_into] = ACTIONS(1387), + [anon_sym_join] = ACTIONS(1387), + [anon_sym_on] = ACTIONS(1387), + [anon_sym_equals] = ACTIONS(1387), + [anon_sym_let] = ACTIONS(1387), + [anon_sym_orderby] = ACTIONS(1387), + [anon_sym_ascending] = ACTIONS(1387), + [anon_sym_descending] = ACTIONS(1387), + [anon_sym_group] = ACTIONS(1387), + [anon_sym_by] = ACTIONS(1387), + [anon_sym_select] = ACTIONS(1387), + [anon_sym_stackalloc] = ACTIONS(1431), + [anon_sym_sizeof] = ACTIONS(1433), + [anon_sym_typeof] = ACTIONS(1435), + [anon_sym___makeref] = ACTIONS(1437), + [anon_sym___reftype] = ACTIONS(1439), + [anon_sym___refvalue] = ACTIONS(1441), + [sym_null_literal] = ACTIONS(1443), + [anon_sym_SQUOTE] = ACTIONS(1445), + [sym_integer_literal] = ACTIONS(1443), + [sym_real_literal] = ACTIONS(1447), + [anon_sym_DQUOTE] = ACTIONS(1449), + [sym_verbatim_string_literal] = ACTIONS(1447), + [aux_sym_preproc_if_token1] = ACTIONS(1451), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + [sym_interpolation_regular_start] = ACTIONS(1453), + [sym_interpolation_verbatim_start] = ACTIONS(1455), + [sym_interpolation_raw_start] = ACTIONS(1457), + [sym_raw_string_start] = ACTIONS(1459), + }, + [945] = { + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(3182), + [sym__name] = STATE(5888), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2286), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2262), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(4495), + [sym_non_lvalue_expression] = STATE(4580), + [sym_lvalue_expression] = STATE(3373), + [sym__expression_statement_expression] = STATE(4573), + [sym_assignment_expression] = STATE(4581), + [sym_binary_expression] = STATE(4573), + [sym_postfix_unary_expression] = STATE(4581), + [sym_prefix_unary_expression] = STATE(4581), + [sym__pointer_indirection_expression] = STATE(3144), + [sym_query_expression] = STATE(4573), + [sym_from_clause] = STATE(6133), + [sym_conditional_expression] = STATE(4573), + [sym_conditional_access_expression] = STATE(4573), + [sym_as_expression] = STATE(4573), + [sym_is_expression] = STATE(4573), + [sym_is_pattern_expression] = STATE(4573), + [sym_cast_expression] = STATE(4573), + [sym_checked_expression] = STATE(4573), + [sym_invocation_expression] = STATE(4581), + [sym_switch_expression] = STATE(4573), + [sym_await_expression] = STATE(4581), + [sym_throw_expression] = STATE(4573), + [sym_element_access_expression] = STATE(3144), + [sym_interpolated_string_expression] = STATE(4573), + [sym_member_access_expression] = STATE(3144), + [sym_object_creation_expression] = STATE(4581), + [sym_parenthesized_expression] = STATE(4581), + [sym__parenthesized_lvalue_expression] = STATE(3144), + [sym_lambda_expression] = STATE(4573), + [sym__lambda_expression_init] = STATE(7614), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(4573), + [sym_anonymous_method_expression] = STATE(4573), + [sym_anonymous_object_creation_expression] = STATE(4573), + [sym_implicit_array_creation_expression] = STATE(4573), + [sym_implicit_object_creation_expression] = STATE(4573), + [sym_implicit_stackalloc_expression] = STATE(4573), + [sym_initializer_expression] = STATE(4573), + [sym_default_expression] = STATE(4573), + [sym_with_expression] = STATE(4573), + [sym_sizeof_expression] = STATE(4573), + [sym_typeof_expression] = STATE(4573), + [sym_makeref_expression] = STATE(4573), + [sym_ref_expression] = STATE(4573), + [sym_reftype_expression] = STATE(4573), + [sym_refvalue_expression] = STATE(4573), + [sym_stackalloc_expression] = STATE(4573), + [sym_range_expression] = STATE(4573), + [sym_tuple_expression] = STATE(3144), + [sym_literal] = STATE(4573), + [sym_character_literal] = STATE(4575), + [sym_string_literal] = STATE(4575), + [sym_raw_string_literal] = STATE(4575), + [sym_boolean_literal] = STATE(4575), + [sym_identifier] = STATE(2237), + [sym__reserved_identifier] = STATE(2229), + [sym_preproc_if_in_expression] = STATE(4573), + [sym_preproc_if_in_attribute_list] = STATE(5583), + [sym_preproc_region] = STATE(945), + [sym_preproc_endregion] = STATE(945), + [sym_preproc_line] = STATE(945), + [sym_preproc_pragma] = STATE(945), + [sym_preproc_nullable] = STATE(945), + [sym_preproc_error] = STATE(945), + [sym_preproc_warning] = STATE(945), + [sym_preproc_define] = STATE(945), + [sym_preproc_undef] = STATE(945), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3501), + [sym__identifier_token] = ACTIONS(1385), + [anon_sym_alias] = ACTIONS(1387), + [anon_sym_global] = ACTIONS(1387), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1389), + [anon_sym_LPAREN] = ACTIONS(1565), + [anon_sym_ref] = ACTIONS(1567), + [anon_sym_LBRACE] = ACTIONS(1395), + [anon_sym_delegate] = ACTIONS(1397), + [anon_sym_async] = ACTIONS(1045), + [anon_sym_file] = ACTIONS(1387), + [anon_sym_new] = ACTIONS(1399), + [anon_sym_where] = ACTIONS(1387), + [anon_sym_notnull] = ACTIONS(1387), + [anon_sym_unmanaged] = ACTIONS(1387), + [anon_sym_checked] = ACTIONS(1401), + [anon_sym_BANG] = ACTIONS(1571), + [anon_sym_TILDE] = ACTIONS(1571), + [anon_sym_PLUS_PLUS] = ACTIONS(1571), + [anon_sym_DASH_DASH] = ACTIONS(1571), + [anon_sym_true] = ACTIONS(1407), + [anon_sym_false] = ACTIONS(1407), + [anon_sym_PLUS] = ACTIONS(1569), + [anon_sym_DASH] = ACTIONS(1569), + [anon_sym_STAR] = ACTIONS(1409), + [anon_sym_CARET] = ACTIONS(1571), + [anon_sym_AMP] = ACTIONS(1571), + [anon_sym_this] = ACTIONS(1411), + [anon_sym_scoped] = ACTIONS(1413), + [anon_sym_base] = ACTIONS(1415), + [anon_sym_var] = ACTIONS(1417), + [sym_predefined_type] = ACTIONS(1419), + [anon_sym_unchecked] = ACTIONS(1401), + [anon_sym_yield] = ACTIONS(1387), + [anon_sym_default] = ACTIONS(1421), + [anon_sym_throw] = ACTIONS(1573), + [anon_sym_when] = ACTIONS(1387), + [anon_sym_await] = ACTIONS(1575), + [anon_sym_DOT_DOT] = ACTIONS(1577), + [anon_sym_from] = ACTIONS(1429), + [anon_sym_into] = ACTIONS(1387), + [anon_sym_join] = ACTIONS(1387), + [anon_sym_on] = ACTIONS(1387), + [anon_sym_equals] = ACTIONS(1387), + [anon_sym_let] = ACTIONS(1387), + [anon_sym_orderby] = ACTIONS(1387), + [anon_sym_ascending] = ACTIONS(1387), + [anon_sym_descending] = ACTIONS(1387), + [anon_sym_group] = ACTIONS(1387), + [anon_sym_by] = ACTIONS(1387), + [anon_sym_select] = ACTIONS(1387), + [anon_sym_stackalloc] = ACTIONS(1431), + [anon_sym_sizeof] = ACTIONS(1433), + [anon_sym_typeof] = ACTIONS(1435), + [anon_sym___makeref] = ACTIONS(1437), + [anon_sym___reftype] = ACTIONS(1439), + [anon_sym___refvalue] = ACTIONS(1441), + [sym_null_literal] = ACTIONS(1443), + [anon_sym_SQUOTE] = ACTIONS(1445), + [sym_integer_literal] = ACTIONS(1443), + [sym_real_literal] = ACTIONS(1447), + [anon_sym_DQUOTE] = ACTIONS(1449), + [sym_verbatim_string_literal] = ACTIONS(1447), + [aux_sym_preproc_if_token1] = ACTIONS(1451), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + [sym_interpolation_regular_start] = ACTIONS(1453), + [sym_interpolation_verbatim_start] = ACTIONS(1455), + [sym_interpolation_raw_start] = ACTIONS(1457), + [sym_raw_string_start] = ACTIONS(1459), + }, + [946] = { + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(3182), + [sym__name] = STATE(5888), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2286), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2262), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(4496), + [sym_non_lvalue_expression] = STATE(4580), + [sym_lvalue_expression] = STATE(3373), + [sym__expression_statement_expression] = STATE(4573), + [sym_assignment_expression] = STATE(4581), + [sym_binary_expression] = STATE(4573), + [sym_postfix_unary_expression] = STATE(4581), + [sym_prefix_unary_expression] = STATE(4581), + [sym__pointer_indirection_expression] = STATE(3144), + [sym_query_expression] = STATE(4573), + [sym_from_clause] = STATE(6133), + [sym_conditional_expression] = STATE(4573), + [sym_conditional_access_expression] = STATE(4573), + [sym_as_expression] = STATE(4573), + [sym_is_expression] = STATE(4573), + [sym_is_pattern_expression] = STATE(4573), + [sym_cast_expression] = STATE(4573), + [sym_checked_expression] = STATE(4573), + [sym_invocation_expression] = STATE(4581), + [sym_switch_expression] = STATE(4573), + [sym_await_expression] = STATE(4581), + [sym_throw_expression] = STATE(4573), + [sym_element_access_expression] = STATE(3144), + [sym_interpolated_string_expression] = STATE(4573), + [sym_member_access_expression] = STATE(3144), + [sym_object_creation_expression] = STATE(4581), + [sym_parenthesized_expression] = STATE(4581), + [sym__parenthesized_lvalue_expression] = STATE(3144), + [sym_lambda_expression] = STATE(4573), + [sym__lambda_expression_init] = STATE(7614), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(4573), + [sym_anonymous_method_expression] = STATE(4573), + [sym_anonymous_object_creation_expression] = STATE(4573), + [sym_implicit_array_creation_expression] = STATE(4573), + [sym_implicit_object_creation_expression] = STATE(4573), + [sym_implicit_stackalloc_expression] = STATE(4573), + [sym_initializer_expression] = STATE(4573), + [sym_default_expression] = STATE(4573), + [sym_with_expression] = STATE(4573), + [sym_sizeof_expression] = STATE(4573), + [sym_typeof_expression] = STATE(4573), + [sym_makeref_expression] = STATE(4573), + [sym_ref_expression] = STATE(4573), + [sym_reftype_expression] = STATE(4573), + [sym_refvalue_expression] = STATE(4573), + [sym_stackalloc_expression] = STATE(4573), + [sym_range_expression] = STATE(4573), + [sym_tuple_expression] = STATE(3144), + [sym_literal] = STATE(4573), + [sym_character_literal] = STATE(4575), + [sym_string_literal] = STATE(4575), + [sym_raw_string_literal] = STATE(4575), + [sym_boolean_literal] = STATE(4575), + [sym_identifier] = STATE(2237), + [sym__reserved_identifier] = STATE(2229), + [sym_preproc_if_in_expression] = STATE(4573), + [sym_preproc_if_in_attribute_list] = STATE(5583), + [sym_preproc_region] = STATE(946), + [sym_preproc_endregion] = STATE(946), + [sym_preproc_line] = STATE(946), + [sym_preproc_pragma] = STATE(946), + [sym_preproc_nullable] = STATE(946), + [sym_preproc_error] = STATE(946), + [sym_preproc_warning] = STATE(946), + [sym_preproc_define] = STATE(946), + [sym_preproc_undef] = STATE(946), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3501), + [sym__identifier_token] = ACTIONS(1385), + [anon_sym_alias] = ACTIONS(1387), + [anon_sym_global] = ACTIONS(1387), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1389), + [anon_sym_LPAREN] = ACTIONS(1565), + [anon_sym_ref] = ACTIONS(1567), + [anon_sym_LBRACE] = ACTIONS(1395), + [anon_sym_delegate] = ACTIONS(1397), + [anon_sym_async] = ACTIONS(1045), + [anon_sym_file] = ACTIONS(1387), + [anon_sym_new] = ACTIONS(1399), + [anon_sym_where] = ACTIONS(1387), + [anon_sym_notnull] = ACTIONS(1387), + [anon_sym_unmanaged] = ACTIONS(1387), + [anon_sym_checked] = ACTIONS(1401), + [anon_sym_BANG] = ACTIONS(1571), + [anon_sym_TILDE] = ACTIONS(1571), + [anon_sym_PLUS_PLUS] = ACTIONS(1571), + [anon_sym_DASH_DASH] = ACTIONS(1571), + [anon_sym_true] = ACTIONS(1407), + [anon_sym_false] = ACTIONS(1407), + [anon_sym_PLUS] = ACTIONS(1569), + [anon_sym_DASH] = ACTIONS(1569), + [anon_sym_STAR] = ACTIONS(1409), + [anon_sym_CARET] = ACTIONS(1571), + [anon_sym_AMP] = ACTIONS(1571), + [anon_sym_this] = ACTIONS(1411), + [anon_sym_scoped] = ACTIONS(1413), + [anon_sym_base] = ACTIONS(1415), + [anon_sym_var] = ACTIONS(1417), + [sym_predefined_type] = ACTIONS(1419), + [anon_sym_unchecked] = ACTIONS(1401), + [anon_sym_yield] = ACTIONS(1387), + [anon_sym_default] = ACTIONS(1421), + [anon_sym_throw] = ACTIONS(1573), + [anon_sym_when] = ACTIONS(1387), + [anon_sym_await] = ACTIONS(1575), + [anon_sym_DOT_DOT] = ACTIONS(1577), + [anon_sym_from] = ACTIONS(1429), + [anon_sym_into] = ACTIONS(1387), + [anon_sym_join] = ACTIONS(1387), + [anon_sym_on] = ACTIONS(1387), + [anon_sym_equals] = ACTIONS(1387), + [anon_sym_let] = ACTIONS(1387), + [anon_sym_orderby] = ACTIONS(1387), + [anon_sym_ascending] = ACTIONS(1387), + [anon_sym_descending] = ACTIONS(1387), + [anon_sym_group] = ACTIONS(1387), + [anon_sym_by] = ACTIONS(1387), + [anon_sym_select] = ACTIONS(1387), + [anon_sym_stackalloc] = ACTIONS(1431), + [anon_sym_sizeof] = ACTIONS(1433), + [anon_sym_typeof] = ACTIONS(1435), + [anon_sym___makeref] = ACTIONS(1437), + [anon_sym___reftype] = ACTIONS(1439), + [anon_sym___refvalue] = ACTIONS(1441), + [sym_null_literal] = ACTIONS(1443), + [anon_sym_SQUOTE] = ACTIONS(1445), + [sym_integer_literal] = ACTIONS(1443), + [sym_real_literal] = ACTIONS(1447), + [anon_sym_DQUOTE] = ACTIONS(1449), + [sym_verbatim_string_literal] = ACTIONS(1447), + [aux_sym_preproc_if_token1] = ACTIONS(1451), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + [sym_interpolation_regular_start] = ACTIONS(1453), + [sym_interpolation_verbatim_start] = ACTIONS(1455), + [sym_interpolation_raw_start] = ACTIONS(1457), + [sym_raw_string_start] = ACTIONS(1459), + }, + [947] = { + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2816), + [sym__name] = STATE(5873), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2238), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(4172), + [sym_non_lvalue_expression] = STATE(3495), + [sym_lvalue_expression] = STATE(3131), + [sym__expression_statement_expression] = STATE(3462), + [sym_assignment_expression] = STATE(3497), + [sym_binary_expression] = STATE(3462), + [sym_postfix_unary_expression] = STATE(3497), + [sym_prefix_unary_expression] = STATE(3497), + [sym__pointer_indirection_expression] = STATE(2815), + [sym_query_expression] = STATE(3462), + [sym_from_clause] = STATE(6140), + [sym_conditional_expression] = STATE(3462), + [sym_conditional_access_expression] = STATE(3462), + [sym_as_expression] = STATE(3462), + [sym_is_expression] = STATE(3462), + [sym_is_pattern_expression] = STATE(3462), + [sym_cast_expression] = STATE(3462), + [sym_checked_expression] = STATE(3462), + [sym_invocation_expression] = STATE(3497), + [sym_switch_expression] = STATE(3462), + [sym_await_expression] = STATE(3497), + [sym_throw_expression] = STATE(3462), + [sym_element_access_expression] = STATE(2815), + [sym_interpolated_string_expression] = STATE(3462), + [sym_member_access_expression] = STATE(2815), + [sym_object_creation_expression] = STATE(3497), + [sym_parenthesized_expression] = STATE(3497), + [sym__parenthesized_lvalue_expression] = STATE(2815), + [sym_lambda_expression] = STATE(3462), + [sym__lambda_expression_init] = STATE(7423), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3462), + [sym_anonymous_method_expression] = STATE(3462), + [sym_anonymous_object_creation_expression] = STATE(3462), + [sym_implicit_array_creation_expression] = STATE(3462), + [sym_implicit_object_creation_expression] = STATE(3462), + [sym_implicit_stackalloc_expression] = STATE(3462), + [sym_initializer_expression] = STATE(3462), + [sym_default_expression] = STATE(3462), + [sym_with_expression] = STATE(3462), + [sym_sizeof_expression] = STATE(3462), + [sym_typeof_expression] = STATE(3462), + [sym_makeref_expression] = STATE(3462), + [sym_ref_expression] = STATE(3462), + [sym_reftype_expression] = STATE(3462), + [sym_refvalue_expression] = STATE(3462), + [sym_stackalloc_expression] = STATE(3462), + [sym_range_expression] = STATE(3462), + [sym_tuple_expression] = STATE(2815), + [sym_literal] = STATE(3462), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3462), + [sym_preproc_if_in_attribute_list] = STATE(5583), + [sym_preproc_region] = STATE(947), + [sym_preproc_endregion] = STATE(947), + [sym_preproc_line] = STATE(947), + [sym_preproc_pragma] = STATE(947), + [sym_preproc_nullable] = STATE(947), + [sym_preproc_error] = STATE(947), + [sym_preproc_warning] = STATE(947), + [sym_preproc_define] = STATE(947), + [sym_preproc_undef] = STATE(947), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), [aux_sym__lambda_expression_init_repeat1] = STATE(3367), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1481), - [anon_sym_LPAREN] = ACTIONS(895), - [anon_sym_ref] = ACTIONS(897), - [anon_sym_LBRACE] = ACTIONS(1487), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1305), + [anon_sym_LPAREN] = ACTIONS(1307), + [anon_sym_ref] = ACTIONS(1309), + [anon_sym_LBRACE] = ACTIONS(1311), + [anon_sym_delegate] = ACTIONS(1313), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1061), + [anon_sym_new] = ACTIONS(1315), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1067), - [anon_sym_BANG] = ACTIONS(1495), - [anon_sym_TILDE] = ACTIONS(1495), - [anon_sym_PLUS_PLUS] = ACTIONS(1495), - [anon_sym_DASH_DASH] = ACTIONS(1495), + [anon_sym_checked] = ACTIONS(1317), + [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(1493), - [anon_sym_DASH] = ACTIONS(1493), - [anon_sym_STAR] = ACTIONS(905), - [anon_sym_CARET] = ACTIONS(1495), - [anon_sym_AMP] = ACTIONS(1495), - [anon_sym_this] = ACTIONS(83), + [anon_sym_PLUS] = ACTIONS(1069), + [anon_sym_DASH] = ACTIONS(1069), + [anon_sym_STAR] = ACTIONS(1319), + [anon_sym_CARET] = ACTIONS(1067), + [anon_sym_AMP] = ACTIONS(1067), + [anon_sym_this] = ACTIONS(1321), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), + [anon_sym_base] = ACTIONS(1323), [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1067), + [anon_sym_unchecked] = ACTIONS(1317), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1079), + [anon_sym_throw] = ACTIONS(1325), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1081), - [anon_sym_DOT_DOT] = ACTIONS(911), + [anon_sym_await] = ACTIONS(1327), + [anon_sym_DOT_DOT] = ACTIONS(1329), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -201110,19 +201841,19 @@ static const uint16_t ts_parse_table[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(1331), [anon_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(1333), + [anon_sym___reftype] = ACTIONS(1335), + [anon_sym___refvalue] = ACTIONS(1337), [sym_null_literal] = ACTIONS(139), [anon_sym_SQUOTE] = ACTIONS(141), [sym_integer_literal] = ACTIONS(139), [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1089), + [aux_sym_preproc_if_token1] = ACTIONS(1339), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -201138,135 +201869,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), }, - [943] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2610), - [sym__name] = STATE(5871), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2319), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(4479), - [sym_non_lvalue_expression] = STATE(3277), - [sym_lvalue_expression] = STATE(3280), - [sym__expression_statement_expression] = STATE(3228), - [sym_assignment_expression] = STATE(3289), - [sym_binary_expression] = STATE(3228), - [sym_postfix_unary_expression] = STATE(3289), - [sym_prefix_unary_expression] = STATE(3289), - [sym__pointer_indirection_expression] = STATE(2609), - [sym_query_expression] = STATE(3228), - [sym_from_clause] = STATE(6177), - [sym_conditional_expression] = STATE(3228), - [sym_conditional_access_expression] = STATE(3228), - [sym_as_expression] = STATE(3228), - [sym_is_expression] = STATE(3228), - [sym_is_pattern_expression] = STATE(3228), - [sym_cast_expression] = STATE(3228), - [sym_checked_expression] = STATE(3228), - [sym_invocation_expression] = STATE(3289), - [sym_switch_expression] = STATE(3228), - [sym_await_expression] = STATE(3289), - [sym_throw_expression] = STATE(3228), - [sym_element_access_expression] = STATE(2609), - [sym_interpolated_string_expression] = STATE(3228), - [sym_member_access_expression] = STATE(2609), - [sym_object_creation_expression] = STATE(3289), - [sym_parenthesized_expression] = STATE(3289), - [sym__parenthesized_lvalue_expression] = STATE(2609), - [sym_lambda_expression] = STATE(3228), - [sym__lambda_expression_init] = STATE(7636), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3228), - [sym_anonymous_method_expression] = STATE(3228), - [sym_anonymous_object_creation_expression] = STATE(3228), - [sym_implicit_array_creation_expression] = STATE(3228), - [sym_implicit_object_creation_expression] = STATE(3228), - [sym_implicit_stackalloc_expression] = STATE(3228), - [sym_initializer_expression] = STATE(3228), - [sym_default_expression] = STATE(3228), - [sym_with_expression] = STATE(3228), - [sym_sizeof_expression] = STATE(3228), - [sym_typeof_expression] = STATE(3228), - [sym_makeref_expression] = STATE(3228), - [sym_ref_expression] = STATE(3228), - [sym_reftype_expression] = STATE(3228), - [sym_refvalue_expression] = STATE(3228), - [sym_stackalloc_expression] = STATE(3228), - [sym_range_expression] = STATE(3228), - [sym_tuple_expression] = STATE(2609), - [sym_literal] = STATE(3228), - [sym_character_literal] = STATE(3278), - [sym_string_literal] = STATE(3278), - [sym_raw_string_literal] = STATE(3278), - [sym_boolean_literal] = STATE(3278), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3228), - [sym_preproc_if_in_attribute_list] = STATE(5576), - [sym_preproc_region] = STATE(943), - [sym_preproc_endregion] = STATE(943), - [sym_preproc_line] = STATE(943), - [sym_preproc_pragma] = STATE(943), - [sym_preproc_nullable] = STATE(943), - [sym_preproc_error] = STATE(943), - [sym_preproc_warning] = STATE(943), - [sym_preproc_define] = STATE(943), - [sym_preproc_undef] = STATE(943), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3396), + [948] = { + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(5873), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2238), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(5260), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3468), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3102), + [sym_postfix_unary_expression] = STATE(3079), + [sym_prefix_unary_expression] = STATE(3079), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6134), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3102), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3079), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3102), + [sym_member_access_expression] = STATE(2472), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3079), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7309), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(3102), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3102), + [sym_typeof_expression] = STATE(3102), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2472), + [sym_literal] = STATE(3102), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), + [sym_preproc_region] = STATE(948), + [sym_preproc_endregion] = STATE(948), + [sym_preproc_line] = STATE(948), + [sym_preproc_pragma] = STATE(948), + [sym_preproc_nullable] = STATE(948), + [sym_preproc_error] = STATE(948), + [sym_preproc_warning] = STATE(948), + [sym_preproc_define] = STATE(948), + [sym_preproc_undef] = STATE(948), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1153), - [anon_sym_LPAREN] = ACTIONS(1559), - [anon_sym_ref] = ACTIONS(1561), - [anon_sym_LBRACE] = ACTIONS(1159), - [anon_sym_delegate] = ACTIONS(1161), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1479), + [anon_sym_LPAREN] = ACTIONS(659), + [anon_sym_ref] = ACTIONS(663), + [anon_sym_LBRACE] = ACTIONS(1481), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1529), + [anon_sym_new] = ACTIONS(1059), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1167), - [anon_sym_BANG] = ACTIONS(1565), - [anon_sym_TILDE] = ACTIONS(1565), - [anon_sym_PLUS_PLUS] = ACTIONS(1565), - [anon_sym_DASH_DASH] = ACTIONS(1565), - [anon_sym_true] = ACTIONS(1173), - [anon_sym_false] = ACTIONS(1173), - [anon_sym_PLUS] = ACTIONS(1563), - [anon_sym_DASH] = ACTIONS(1563), - [anon_sym_STAR] = ACTIONS(1567), - [anon_sym_CARET] = ACTIONS(1565), - [anon_sym_AMP] = ACTIONS(1565), - [anon_sym_this] = ACTIONS(1177), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(1485), + [anon_sym_TILDE] = ACTIONS(1485), + [anon_sym_PLUS_PLUS] = ACTIONS(1485), + [anon_sym_DASH_DASH] = ACTIONS(1485), + [anon_sym_true] = ACTIONS(77), + [anon_sym_false] = ACTIONS(77), + [anon_sym_PLUS] = ACTIONS(1483), + [anon_sym_DASH] = ACTIONS(1483), + [anon_sym_STAR] = ACTIONS(683), + [anon_sym_CARET] = ACTIONS(1485), + [anon_sym_AMP] = ACTIONS(1485), + [anon_sym_this] = ACTIONS(83), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1179), + [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1181), - [anon_sym_unchecked] = ACTIONS(1167), + [sym_predefined_type] = ACTIONS(91), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1183), - [anon_sym_throw] = ACTIONS(1569), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(1077), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1571), - [anon_sym_DOT_DOT] = ACTIONS(1573), + [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), @@ -201279,19 +202010,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1191), - [anon_sym_sizeof] = ACTIONS(1193), - [anon_sym_typeof] = ACTIONS(1195), - [anon_sym___makeref] = ACTIONS(1197), - [anon_sym___reftype] = ACTIONS(1199), - [anon_sym___refvalue] = ACTIONS(1201), - [sym_null_literal] = ACTIONS(1203), - [anon_sym_SQUOTE] = ACTIONS(1205), - [sym_integer_literal] = ACTIONS(1203), - [sym_real_literal] = ACTIONS(1207), - [anon_sym_DQUOTE] = ACTIONS(1209), - [sym_verbatim_string_literal] = ACTIONS(1207), - [aux_sym_preproc_if_token1] = ACTIONS(1211), + [anon_sym_stackalloc] = ACTIONS(127), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_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), @@ -201302,140 +202033,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(1213), - [sym_interpolation_verbatim_start] = ACTIONS(1215), - [sym_interpolation_raw_start] = ACTIONS(1217), - [sym_raw_string_start] = ACTIONS(1219), + [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(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(5910), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2247), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(4926), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3379), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3080), - [sym_postfix_unary_expression] = STATE(3111), - [sym_prefix_unary_expression] = STATE(3111), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6154), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3080), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3111), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3080), - [sym_member_access_expression] = STATE(2484), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3111), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7575), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(3080), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3080), - [sym_typeof_expression] = STATE(3080), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2484), - [sym_literal] = STATE(3080), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), - [sym_preproc_region] = STATE(944), - [sym_preproc_endregion] = STATE(944), - [sym_preproc_line] = STATE(944), - [sym_preproc_pragma] = STATE(944), - [sym_preproc_nullable] = STATE(944), - [sym_preproc_error] = STATE(944), - [sym_preproc_warning] = STATE(944), - [sym_preproc_define] = STATE(944), - [sym_preproc_undef] = STATE(944), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [949] = { + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(3182), + [sym__name] = STATE(5888), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2286), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2262), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(4294), + [sym_non_lvalue_expression] = STATE(4580), + [sym_lvalue_expression] = STATE(3373), + [sym__expression_statement_expression] = STATE(4573), + [sym_assignment_expression] = STATE(4581), + [sym_binary_expression] = STATE(4573), + [sym_postfix_unary_expression] = STATE(4581), + [sym_prefix_unary_expression] = STATE(4581), + [sym__pointer_indirection_expression] = STATE(3144), + [sym_query_expression] = STATE(4573), + [sym_from_clause] = STATE(6133), + [sym_conditional_expression] = STATE(4573), + [sym_conditional_access_expression] = STATE(4573), + [sym_as_expression] = STATE(4573), + [sym_is_expression] = STATE(4573), + [sym_is_pattern_expression] = STATE(4573), + [sym_cast_expression] = STATE(4573), + [sym_checked_expression] = STATE(4573), + [sym_invocation_expression] = STATE(4581), + [sym_switch_expression] = STATE(4573), + [sym_await_expression] = STATE(4581), + [sym_throw_expression] = STATE(4573), + [sym_element_access_expression] = STATE(3144), + [sym_interpolated_string_expression] = STATE(4573), + [sym_member_access_expression] = STATE(3144), + [sym_object_creation_expression] = STATE(4581), + [sym_parenthesized_expression] = STATE(4581), + [sym__parenthesized_lvalue_expression] = STATE(3144), + [sym_lambda_expression] = STATE(4573), + [sym__lambda_expression_init] = STATE(7614), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(4573), + [sym_anonymous_method_expression] = STATE(4573), + [sym_anonymous_object_creation_expression] = STATE(4573), + [sym_implicit_array_creation_expression] = STATE(4573), + [sym_implicit_object_creation_expression] = STATE(4573), + [sym_implicit_stackalloc_expression] = STATE(4573), + [sym_initializer_expression] = STATE(4573), + [sym_default_expression] = STATE(4573), + [sym_with_expression] = STATE(4573), + [sym_sizeof_expression] = STATE(4573), + [sym_typeof_expression] = STATE(4573), + [sym_makeref_expression] = STATE(4573), + [sym_ref_expression] = STATE(4573), + [sym_reftype_expression] = STATE(4573), + [sym_refvalue_expression] = STATE(4573), + [sym_stackalloc_expression] = STATE(4573), + [sym_range_expression] = STATE(4573), + [sym_tuple_expression] = STATE(3144), + [sym_literal] = STATE(4573), + [sym_character_literal] = STATE(4575), + [sym_string_literal] = STATE(4575), + [sym_raw_string_literal] = STATE(4575), + [sym_boolean_literal] = STATE(4575), + [sym_identifier] = STATE(2237), + [sym__reserved_identifier] = STATE(2229), + [sym_preproc_if_in_expression] = STATE(4573), + [sym_preproc_if_in_attribute_list] = STATE(5583), + [sym_preproc_region] = STATE(949), + [sym_preproc_endregion] = STATE(949), + [sym_preproc_line] = STATE(949), + [sym_preproc_pragma] = STATE(949), + [sym_preproc_nullable] = STATE(949), + [sym_preproc_error] = STATE(949), + [sym_preproc_warning] = STATE(949), + [sym_preproc_define] = STATE(949), + [sym_preproc_undef] = STATE(949), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3501), + [sym__identifier_token] = ACTIONS(1385), + [anon_sym_alias] = ACTIONS(1387), + [anon_sym_global] = ACTIONS(1387), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1389), + [anon_sym_LPAREN] = ACTIONS(1565), + [anon_sym_ref] = ACTIONS(1567), + [anon_sym_LBRACE] = ACTIONS(1395), + [anon_sym_delegate] = ACTIONS(1397), + [anon_sym_async] = ACTIONS(1045), + [anon_sym_file] = ACTIONS(1387), + [anon_sym_new] = ACTIONS(1399), + [anon_sym_where] = ACTIONS(1387), + [anon_sym_notnull] = ACTIONS(1387), + [anon_sym_unmanaged] = ACTIONS(1387), + [anon_sym_checked] = ACTIONS(1401), + [anon_sym_BANG] = ACTIONS(1571), + [anon_sym_TILDE] = ACTIONS(1571), + [anon_sym_PLUS_PLUS] = ACTIONS(1571), + [anon_sym_DASH_DASH] = ACTIONS(1571), + [anon_sym_true] = ACTIONS(1407), + [anon_sym_false] = ACTIONS(1407), + [anon_sym_PLUS] = ACTIONS(1569), + [anon_sym_DASH] = ACTIONS(1569), + [anon_sym_STAR] = ACTIONS(1409), + [anon_sym_CARET] = ACTIONS(1571), + [anon_sym_AMP] = ACTIONS(1571), + [anon_sym_this] = ACTIONS(1411), + [anon_sym_scoped] = ACTIONS(1413), + [anon_sym_base] = ACTIONS(1415), + [anon_sym_var] = ACTIONS(1417), + [sym_predefined_type] = ACTIONS(1419), + [anon_sym_unchecked] = ACTIONS(1401), + [anon_sym_yield] = ACTIONS(1387), + [anon_sym_default] = ACTIONS(1421), + [anon_sym_throw] = ACTIONS(1573), + [anon_sym_when] = ACTIONS(1387), + [anon_sym_await] = ACTIONS(1575), + [anon_sym_DOT_DOT] = ACTIONS(1577), + [anon_sym_from] = ACTIONS(1429), + [anon_sym_into] = ACTIONS(1387), + [anon_sym_join] = ACTIONS(1387), + [anon_sym_on] = ACTIONS(1387), + [anon_sym_equals] = ACTIONS(1387), + [anon_sym_let] = ACTIONS(1387), + [anon_sym_orderby] = ACTIONS(1387), + [anon_sym_ascending] = ACTIONS(1387), + [anon_sym_descending] = ACTIONS(1387), + [anon_sym_group] = ACTIONS(1387), + [anon_sym_by] = ACTIONS(1387), + [anon_sym_select] = ACTIONS(1387), + [anon_sym_stackalloc] = ACTIONS(1431), + [anon_sym_sizeof] = ACTIONS(1433), + [anon_sym_typeof] = ACTIONS(1435), + [anon_sym___makeref] = ACTIONS(1437), + [anon_sym___reftype] = ACTIONS(1439), + [anon_sym___refvalue] = ACTIONS(1441), + [sym_null_literal] = ACTIONS(1443), + [anon_sym_SQUOTE] = ACTIONS(1445), + [sym_integer_literal] = ACTIONS(1443), + [sym_real_literal] = ACTIONS(1447), + [anon_sym_DQUOTE] = ACTIONS(1449), + [sym_verbatim_string_literal] = ACTIONS(1447), + [aux_sym_preproc_if_token1] = ACTIONS(1451), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + [sym_interpolation_regular_start] = ACTIONS(1453), + [sym_interpolation_verbatim_start] = ACTIONS(1455), + [sym_interpolation_raw_start] = ACTIONS(1457), + [sym_raw_string_start] = ACTIONS(1459), + }, + [950] = { + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(5873), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2238), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(5262), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3468), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3102), + [sym_postfix_unary_expression] = STATE(3079), + [sym_prefix_unary_expression] = STATE(3079), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6134), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3102), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3079), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3102), + [sym_member_access_expression] = STATE(2472), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3079), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7309), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(3102), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3102), + [sym_typeof_expression] = STATE(3102), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2472), + [sym_literal] = STATE(3102), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), + [sym_preproc_region] = STATE(950), + [sym_preproc_endregion] = STATE(950), + [sym_preproc_line] = STATE(950), + [sym_preproc_pragma] = STATE(950), + [sym_preproc_nullable] = STATE(950), + [sym_preproc_error] = STATE(950), + [sym_preproc_warning] = STATE(950), + [sym_preproc_define] = STATE(950), + [sym_preproc_undef] = STATE(950), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1481), - [anon_sym_LPAREN] = ACTIONS(895), - [anon_sym_ref] = ACTIONS(897), - [anon_sym_LBRACE] = ACTIONS(1487), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1479), + [anon_sym_LPAREN] = ACTIONS(659), + [anon_sym_ref] = ACTIONS(663), + [anon_sym_LBRACE] = ACTIONS(1481), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1061), + [anon_sym_new] = ACTIONS(1059), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1067), - [anon_sym_BANG] = ACTIONS(1495), - [anon_sym_TILDE] = ACTIONS(1495), - [anon_sym_PLUS_PLUS] = ACTIONS(1495), - [anon_sym_DASH_DASH] = ACTIONS(1495), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(1485), + [anon_sym_TILDE] = ACTIONS(1485), + [anon_sym_PLUS_PLUS] = ACTIONS(1485), + [anon_sym_DASH_DASH] = ACTIONS(1485), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1493), - [anon_sym_DASH] = ACTIONS(1493), - [anon_sym_STAR] = ACTIONS(905), - [anon_sym_CARET] = ACTIONS(1495), - [anon_sym_AMP] = ACTIONS(1495), + [anon_sym_PLUS] = ACTIONS(1483), + [anon_sym_DASH] = ACTIONS(1483), + [anon_sym_STAR] = ACTIONS(683), + [anon_sym_CARET] = ACTIONS(1485), + [anon_sym_AMP] = ACTIONS(1485), [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(1067), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1079), + [anon_sym_throw] = ACTIONS(1077), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1081), - [anon_sym_DOT_DOT] = ACTIONS(911), + [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), @@ -201460,7 +202360,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(1089), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -201476,135 +202376,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), }, - [945] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2762), - [sym__name] = STATE(5910), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2247), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(4194), - [sym_non_lvalue_expression] = STATE(3438), - [sym_lvalue_expression] = STATE(3136), - [sym__expression_statement_expression] = STATE(3362), - [sym_assignment_expression] = STATE(3449), - [sym_binary_expression] = STATE(3362), - [sym_postfix_unary_expression] = STATE(3449), - [sym_prefix_unary_expression] = STATE(3449), - [sym__pointer_indirection_expression] = STATE(2747), - [sym_query_expression] = STATE(3362), - [sym_from_clause] = STATE(6171), - [sym_conditional_expression] = STATE(3362), - [sym_conditional_access_expression] = STATE(3362), - [sym_as_expression] = STATE(3362), - [sym_is_expression] = STATE(3362), - [sym_is_pattern_expression] = STATE(3362), - [sym_cast_expression] = STATE(3362), - [sym_checked_expression] = STATE(3362), - [sym_invocation_expression] = STATE(3449), - [sym_switch_expression] = STATE(3362), - [sym_await_expression] = STATE(3449), - [sym_throw_expression] = STATE(3362), - [sym_element_access_expression] = STATE(2747), - [sym_interpolated_string_expression] = STATE(3362), - [sym_member_access_expression] = STATE(2747), - [sym_object_creation_expression] = STATE(3449), - [sym_parenthesized_expression] = STATE(3449), - [sym__parenthesized_lvalue_expression] = STATE(2747), - [sym_lambda_expression] = STATE(3362), - [sym__lambda_expression_init] = STATE(7452), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3362), - [sym_anonymous_method_expression] = STATE(3362), - [sym_anonymous_object_creation_expression] = STATE(3362), - [sym_implicit_array_creation_expression] = STATE(3362), - [sym_implicit_object_creation_expression] = STATE(3362), - [sym_implicit_stackalloc_expression] = STATE(3362), - [sym_initializer_expression] = STATE(3362), - [sym_default_expression] = STATE(3362), - [sym_with_expression] = STATE(3362), - [sym_sizeof_expression] = STATE(3362), - [sym_typeof_expression] = STATE(3362), - [sym_makeref_expression] = STATE(3362), - [sym_ref_expression] = STATE(3362), - [sym_reftype_expression] = STATE(3362), - [sym_refvalue_expression] = STATE(3362), - [sym_stackalloc_expression] = STATE(3362), - [sym_range_expression] = STATE(3362), - [sym_tuple_expression] = STATE(2747), - [sym_literal] = STATE(3362), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3362), - [sym_preproc_if_in_attribute_list] = STATE(5576), - [sym_preproc_region] = STATE(945), - [sym_preproc_endregion] = STATE(945), - [sym_preproc_line] = STATE(945), - [sym_preproc_pragma] = STATE(945), - [sym_preproc_nullable] = STATE(945), - [sym_preproc_error] = STATE(945), - [sym_preproc_warning] = STATE(945), - [sym_preproc_define] = STATE(945), - [sym_preproc_undef] = STATE(945), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3385), + [951] = { + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2816), + [sym__name] = STATE(5873), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2238), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(4241), + [sym_non_lvalue_expression] = STATE(3495), + [sym_lvalue_expression] = STATE(3131), + [sym__expression_statement_expression] = STATE(3462), + [sym_assignment_expression] = STATE(3497), + [sym_binary_expression] = STATE(3462), + [sym_postfix_unary_expression] = STATE(3497), + [sym_prefix_unary_expression] = STATE(3497), + [sym__pointer_indirection_expression] = STATE(2815), + [sym_query_expression] = STATE(3462), + [sym_from_clause] = STATE(6140), + [sym_conditional_expression] = STATE(3462), + [sym_conditional_access_expression] = STATE(3462), + [sym_as_expression] = STATE(3462), + [sym_is_expression] = STATE(3462), + [sym_is_pattern_expression] = STATE(3462), + [sym_cast_expression] = STATE(3462), + [sym_checked_expression] = STATE(3462), + [sym_invocation_expression] = STATE(3497), + [sym_switch_expression] = STATE(3462), + [sym_await_expression] = STATE(3497), + [sym_throw_expression] = STATE(3462), + [sym_element_access_expression] = STATE(2815), + [sym_interpolated_string_expression] = STATE(3462), + [sym_member_access_expression] = STATE(2815), + [sym_object_creation_expression] = STATE(3497), + [sym_parenthesized_expression] = STATE(3497), + [sym__parenthesized_lvalue_expression] = STATE(2815), + [sym_lambda_expression] = STATE(3462), + [sym__lambda_expression_init] = STATE(7423), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3462), + [sym_anonymous_method_expression] = STATE(3462), + [sym_anonymous_object_creation_expression] = STATE(3462), + [sym_implicit_array_creation_expression] = STATE(3462), + [sym_implicit_object_creation_expression] = STATE(3462), + [sym_implicit_stackalloc_expression] = STATE(3462), + [sym_initializer_expression] = STATE(3462), + [sym_default_expression] = STATE(3462), + [sym_with_expression] = STATE(3462), + [sym_sizeof_expression] = STATE(3462), + [sym_typeof_expression] = STATE(3462), + [sym_makeref_expression] = STATE(3462), + [sym_ref_expression] = STATE(3462), + [sym_reftype_expression] = STATE(3462), + [sym_refvalue_expression] = STATE(3462), + [sym_stackalloc_expression] = STATE(3462), + [sym_range_expression] = STATE(3462), + [sym_tuple_expression] = STATE(2815), + [sym_literal] = STATE(3462), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3462), + [sym_preproc_if_in_attribute_list] = STATE(5583), + [sym_preproc_region] = STATE(951), + [sym_preproc_endregion] = STATE(951), + [sym_preproc_line] = STATE(951), + [sym_preproc_pragma] = STATE(951), + [sym_preproc_nullable] = STATE(951), + [sym_preproc_error] = STATE(951), + [sym_preproc_warning] = STATE(951), + [sym_preproc_define] = STATE(951), + [sym_preproc_undef] = STATE(951), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3367), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1307), - [anon_sym_LPAREN] = ACTIONS(1309), - [anon_sym_ref] = ACTIONS(1311), - [anon_sym_LBRACE] = ACTIONS(1313), - [anon_sym_delegate] = ACTIONS(1315), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1305), + [anon_sym_LPAREN] = ACTIONS(1307), + [anon_sym_ref] = ACTIONS(1309), + [anon_sym_LBRACE] = ACTIONS(1311), + [anon_sym_delegate] = ACTIONS(1313), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1317), + [anon_sym_new] = ACTIONS(1315), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1319), - [anon_sym_BANG] = ACTIONS(1069), - [anon_sym_TILDE] = ACTIONS(1069), - [anon_sym_PLUS_PLUS] = ACTIONS(1069), - [anon_sym_DASH_DASH] = ACTIONS(1069), + [anon_sym_checked] = ACTIONS(1317), + [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(1071), - [anon_sym_DASH] = ACTIONS(1071), - [anon_sym_STAR] = ACTIONS(1321), - [anon_sym_CARET] = ACTIONS(1069), - [anon_sym_AMP] = ACTIONS(1069), - [anon_sym_this] = ACTIONS(1323), + [anon_sym_PLUS] = ACTIONS(1069), + [anon_sym_DASH] = ACTIONS(1069), + [anon_sym_STAR] = ACTIONS(1319), + [anon_sym_CARET] = ACTIONS(1067), + [anon_sym_AMP] = ACTIONS(1067), + [anon_sym_this] = ACTIONS(1321), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1325), + [anon_sym_base] = ACTIONS(1323), [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1319), + [anon_sym_unchecked] = ACTIONS(1317), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1327), + [anon_sym_throw] = ACTIONS(1325), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1329), - [anon_sym_DOT_DOT] = ACTIONS(1331), + [anon_sym_await] = ACTIONS(1327), + [anon_sym_DOT_DOT] = ACTIONS(1329), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -201617,19 +202517,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1333), + [anon_sym_stackalloc] = ACTIONS(1331), [anon_sym_sizeof] = ACTIONS(129), [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(1335), - [anon_sym___reftype] = ACTIONS(1337), - [anon_sym___refvalue] = ACTIONS(1339), + [anon_sym___makeref] = ACTIONS(1333), + [anon_sym___reftype] = ACTIONS(1335), + [anon_sym___refvalue] = ACTIONS(1337), [sym_null_literal] = ACTIONS(139), [anon_sym_SQUOTE] = ACTIONS(141), [sym_integer_literal] = ACTIONS(139), [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1341), + [aux_sym_preproc_if_token1] = ACTIONS(1339), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -201645,473 +202545,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), }, - [946] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(3184), - [sym__name] = STATE(5906), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2312), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2269), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(4616), - [sym_non_lvalue_expression] = STATE(4541), - [sym_lvalue_expression] = STATE(3439), - [sym__expression_statement_expression] = STATE(4529), - [sym_assignment_expression] = STATE(4543), - [sym_binary_expression] = STATE(4529), - [sym_postfix_unary_expression] = STATE(4543), - [sym_prefix_unary_expression] = STATE(4543), - [sym__pointer_indirection_expression] = STATE(3175), - [sym_query_expression] = STATE(4529), - [sym_from_clause] = STATE(6169), - [sym_conditional_expression] = STATE(4529), - [sym_conditional_access_expression] = STATE(4529), - [sym_as_expression] = STATE(4529), - [sym_is_expression] = STATE(4529), - [sym_is_pattern_expression] = STATE(4529), - [sym_cast_expression] = STATE(4529), - [sym_checked_expression] = STATE(4529), - [sym_invocation_expression] = STATE(4543), - [sym_switch_expression] = STATE(4529), - [sym_await_expression] = STATE(4543), - [sym_throw_expression] = STATE(4529), - [sym_element_access_expression] = STATE(3175), - [sym_interpolated_string_expression] = STATE(4529), - [sym_member_access_expression] = STATE(3175), - [sym_object_creation_expression] = STATE(4543), - [sym_parenthesized_expression] = STATE(4543), - [sym__parenthesized_lvalue_expression] = STATE(3175), - [sym_lambda_expression] = STATE(4529), - [sym__lambda_expression_init] = STATE(7684), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(4529), - [sym_anonymous_method_expression] = STATE(4529), - [sym_anonymous_object_creation_expression] = STATE(4529), - [sym_implicit_array_creation_expression] = STATE(4529), - [sym_implicit_object_creation_expression] = STATE(4529), - [sym_implicit_stackalloc_expression] = STATE(4529), - [sym_initializer_expression] = STATE(4529), - [sym_default_expression] = STATE(4529), - [sym_with_expression] = STATE(4529), - [sym_sizeof_expression] = STATE(4529), - [sym_typeof_expression] = STATE(4529), - [sym_makeref_expression] = STATE(4529), - [sym_ref_expression] = STATE(4529), - [sym_reftype_expression] = STATE(4529), - [sym_refvalue_expression] = STATE(4529), - [sym_stackalloc_expression] = STATE(4529), - [sym_range_expression] = STATE(4529), - [sym_tuple_expression] = STATE(3175), - [sym_literal] = STATE(4529), - [sym_character_literal] = STATE(4536), - [sym_string_literal] = STATE(4536), - [sym_raw_string_literal] = STATE(4536), - [sym_boolean_literal] = STATE(4536), - [sym_identifier] = STATE(2246), - [sym__reserved_identifier] = STATE(2240), - [sym_preproc_if_in_expression] = STATE(4529), - [sym_preproc_if_in_attribute_list] = STATE(5576), - [sym_preproc_region] = STATE(946), - [sym_preproc_endregion] = STATE(946), - [sym_preproc_line] = STATE(946), - [sym_preproc_pragma] = STATE(946), - [sym_preproc_nullable] = STATE(946), - [sym_preproc_error] = STATE(946), - [sym_preproc_warning] = STATE(946), - [sym_preproc_define] = STATE(946), - [sym_preproc_undef] = STATE(946), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3363), - [sym__identifier_token] = ACTIONS(1387), - [anon_sym_alias] = ACTIONS(1389), - [anon_sym_global] = ACTIONS(1389), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1391), - [anon_sym_LPAREN] = ACTIONS(1775), - [anon_sym_ref] = ACTIONS(1777), - [anon_sym_LBRACE] = ACTIONS(1397), - [anon_sym_delegate] = ACTIONS(1399), - [anon_sym_async] = ACTIONS(1047), - [anon_sym_file] = ACTIONS(1389), - [anon_sym_new] = ACTIONS(1401), - [anon_sym_where] = ACTIONS(1389), - [anon_sym_notnull] = ACTIONS(1389), - [anon_sym_unmanaged] = ACTIONS(1389), - [anon_sym_checked] = ACTIONS(1403), - [anon_sym_BANG] = ACTIONS(1781), - [anon_sym_TILDE] = ACTIONS(1781), - [anon_sym_PLUS_PLUS] = ACTIONS(1781), - [anon_sym_DASH_DASH] = ACTIONS(1781), - [anon_sym_true] = ACTIONS(1409), - [anon_sym_false] = ACTIONS(1409), - [anon_sym_PLUS] = ACTIONS(1779), - [anon_sym_DASH] = ACTIONS(1779), - [anon_sym_STAR] = ACTIONS(1411), - [anon_sym_CARET] = ACTIONS(1781), - [anon_sym_AMP] = ACTIONS(1781), - [anon_sym_this] = ACTIONS(1413), - [anon_sym_scoped] = ACTIONS(1415), - [anon_sym_base] = ACTIONS(1417), - [anon_sym_var] = ACTIONS(1419), - [sym_predefined_type] = ACTIONS(1421), - [anon_sym_unchecked] = ACTIONS(1403), - [anon_sym_yield] = ACTIONS(1389), - [anon_sym_default] = ACTIONS(1423), - [anon_sym_throw] = ACTIONS(1783), - [anon_sym_when] = ACTIONS(1389), - [anon_sym_await] = ACTIONS(1785), - [anon_sym_DOT_DOT] = ACTIONS(1787), - [anon_sym_from] = ACTIONS(1431), - [anon_sym_into] = ACTIONS(1389), - [anon_sym_join] = ACTIONS(1389), - [anon_sym_on] = ACTIONS(1389), - [anon_sym_equals] = ACTIONS(1389), - [anon_sym_let] = ACTIONS(1389), - [anon_sym_orderby] = ACTIONS(1389), - [anon_sym_ascending] = ACTIONS(1389), - [anon_sym_descending] = ACTIONS(1389), - [anon_sym_group] = ACTIONS(1389), - [anon_sym_by] = ACTIONS(1389), - [anon_sym_select] = ACTIONS(1389), - [anon_sym_stackalloc] = ACTIONS(1433), - [anon_sym_sizeof] = ACTIONS(1435), - [anon_sym_typeof] = ACTIONS(1437), - [anon_sym___makeref] = ACTIONS(1439), - [anon_sym___reftype] = ACTIONS(1441), - [anon_sym___refvalue] = ACTIONS(1443), - [sym_null_literal] = ACTIONS(1445), - [anon_sym_SQUOTE] = ACTIONS(1447), - [sym_integer_literal] = ACTIONS(1445), - [sym_real_literal] = ACTIONS(1449), - [anon_sym_DQUOTE] = ACTIONS(1451), - [sym_verbatim_string_literal] = ACTIONS(1449), - [aux_sym_preproc_if_token1] = ACTIONS(1453), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1455), - [sym_interpolation_verbatim_start] = ACTIONS(1457), - [sym_interpolation_raw_start] = ACTIONS(1459), - [sym_raw_string_start] = ACTIONS(1461), - }, - [947] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(3184), - [sym__name] = STATE(5906), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2312), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2269), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(4635), - [sym_non_lvalue_expression] = STATE(4541), - [sym_lvalue_expression] = STATE(3439), - [sym__expression_statement_expression] = STATE(4529), - [sym_assignment_expression] = STATE(4543), - [sym_binary_expression] = STATE(4529), - [sym_postfix_unary_expression] = STATE(4543), - [sym_prefix_unary_expression] = STATE(4543), - [sym__pointer_indirection_expression] = STATE(3175), - [sym_query_expression] = STATE(4529), - [sym_from_clause] = STATE(6169), - [sym_conditional_expression] = STATE(4529), - [sym_conditional_access_expression] = STATE(4529), - [sym_as_expression] = STATE(4529), - [sym_is_expression] = STATE(4529), - [sym_is_pattern_expression] = STATE(4529), - [sym_cast_expression] = STATE(4529), - [sym_checked_expression] = STATE(4529), - [sym_invocation_expression] = STATE(4543), - [sym_switch_expression] = STATE(4529), - [sym_await_expression] = STATE(4543), - [sym_throw_expression] = STATE(4529), - [sym_element_access_expression] = STATE(3175), - [sym_interpolated_string_expression] = STATE(4529), - [sym_member_access_expression] = STATE(3175), - [sym_object_creation_expression] = STATE(4543), - [sym_parenthesized_expression] = STATE(4543), - [sym__parenthesized_lvalue_expression] = STATE(3175), - [sym_lambda_expression] = STATE(4529), - [sym__lambda_expression_init] = STATE(7684), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(4529), - [sym_anonymous_method_expression] = STATE(4529), - [sym_anonymous_object_creation_expression] = STATE(4529), - [sym_implicit_array_creation_expression] = STATE(4529), - [sym_implicit_object_creation_expression] = STATE(4529), - [sym_implicit_stackalloc_expression] = STATE(4529), - [sym_initializer_expression] = STATE(4529), - [sym_default_expression] = STATE(4529), - [sym_with_expression] = STATE(4529), - [sym_sizeof_expression] = STATE(4529), - [sym_typeof_expression] = STATE(4529), - [sym_makeref_expression] = STATE(4529), - [sym_ref_expression] = STATE(4529), - [sym_reftype_expression] = STATE(4529), - [sym_refvalue_expression] = STATE(4529), - [sym_stackalloc_expression] = STATE(4529), - [sym_range_expression] = STATE(4529), - [sym_tuple_expression] = STATE(3175), - [sym_literal] = STATE(4529), - [sym_character_literal] = STATE(4536), - [sym_string_literal] = STATE(4536), - [sym_raw_string_literal] = STATE(4536), - [sym_boolean_literal] = STATE(4536), - [sym_identifier] = STATE(2246), - [sym__reserved_identifier] = STATE(2240), - [sym_preproc_if_in_expression] = STATE(4529), - [sym_preproc_if_in_attribute_list] = STATE(5576), - [sym_preproc_region] = STATE(947), - [sym_preproc_endregion] = STATE(947), - [sym_preproc_line] = STATE(947), - [sym_preproc_pragma] = STATE(947), - [sym_preproc_nullable] = STATE(947), - [sym_preproc_error] = STATE(947), - [sym_preproc_warning] = STATE(947), - [sym_preproc_define] = STATE(947), - [sym_preproc_undef] = STATE(947), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3363), - [sym__identifier_token] = ACTIONS(1387), - [anon_sym_alias] = ACTIONS(1389), - [anon_sym_global] = ACTIONS(1389), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1391), - [anon_sym_LPAREN] = ACTIONS(1775), - [anon_sym_ref] = ACTIONS(1777), - [anon_sym_LBRACE] = ACTIONS(1397), - [anon_sym_delegate] = ACTIONS(1399), - [anon_sym_async] = ACTIONS(1047), - [anon_sym_file] = ACTIONS(1389), - [anon_sym_new] = ACTIONS(1401), - [anon_sym_where] = ACTIONS(1389), - [anon_sym_notnull] = ACTIONS(1389), - [anon_sym_unmanaged] = ACTIONS(1389), - [anon_sym_checked] = ACTIONS(1403), - [anon_sym_BANG] = ACTIONS(1781), - [anon_sym_TILDE] = ACTIONS(1781), - [anon_sym_PLUS_PLUS] = ACTIONS(1781), - [anon_sym_DASH_DASH] = ACTIONS(1781), - [anon_sym_true] = ACTIONS(1409), - [anon_sym_false] = ACTIONS(1409), - [anon_sym_PLUS] = ACTIONS(1779), - [anon_sym_DASH] = ACTIONS(1779), - [anon_sym_STAR] = ACTIONS(1411), - [anon_sym_CARET] = ACTIONS(1781), - [anon_sym_AMP] = ACTIONS(1781), - [anon_sym_this] = ACTIONS(1413), - [anon_sym_scoped] = ACTIONS(1415), - [anon_sym_base] = ACTIONS(1417), - [anon_sym_var] = ACTIONS(1419), - [sym_predefined_type] = ACTIONS(1421), - [anon_sym_unchecked] = ACTIONS(1403), - [anon_sym_yield] = ACTIONS(1389), - [anon_sym_default] = ACTIONS(1423), - [anon_sym_throw] = ACTIONS(1783), - [anon_sym_when] = ACTIONS(1389), - [anon_sym_await] = ACTIONS(1785), - [anon_sym_DOT_DOT] = ACTIONS(1787), - [anon_sym_from] = ACTIONS(1431), - [anon_sym_into] = ACTIONS(1389), - [anon_sym_join] = ACTIONS(1389), - [anon_sym_on] = ACTIONS(1389), - [anon_sym_equals] = ACTIONS(1389), - [anon_sym_let] = ACTIONS(1389), - [anon_sym_orderby] = ACTIONS(1389), - [anon_sym_ascending] = ACTIONS(1389), - [anon_sym_descending] = ACTIONS(1389), - [anon_sym_group] = ACTIONS(1389), - [anon_sym_by] = ACTIONS(1389), - [anon_sym_select] = ACTIONS(1389), - [anon_sym_stackalloc] = ACTIONS(1433), - [anon_sym_sizeof] = ACTIONS(1435), - [anon_sym_typeof] = ACTIONS(1437), - [anon_sym___makeref] = ACTIONS(1439), - [anon_sym___reftype] = ACTIONS(1441), - [anon_sym___refvalue] = ACTIONS(1443), - [sym_null_literal] = ACTIONS(1445), - [anon_sym_SQUOTE] = ACTIONS(1447), - [sym_integer_literal] = ACTIONS(1445), - [sym_real_literal] = ACTIONS(1449), - [anon_sym_DQUOTE] = ACTIONS(1451), - [sym_verbatim_string_literal] = ACTIONS(1449), - [aux_sym_preproc_if_token1] = ACTIONS(1453), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1455), - [sym_interpolation_verbatim_start] = ACTIONS(1457), - [sym_interpolation_raw_start] = ACTIONS(1459), - [sym_raw_string_start] = ACTIONS(1461), - }, - [948] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(5910), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2247), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(5364), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3379), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3080), - [sym_postfix_unary_expression] = STATE(3111), - [sym_prefix_unary_expression] = STATE(3111), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6154), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3080), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3111), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3080), - [sym_member_access_expression] = STATE(2484), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3111), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7575), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(3080), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3080), - [sym_typeof_expression] = STATE(3080), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2484), - [sym_literal] = STATE(3080), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), - [sym_preproc_region] = STATE(948), - [sym_preproc_endregion] = STATE(948), - [sym_preproc_line] = STATE(948), - [sym_preproc_pragma] = STATE(948), - [sym_preproc_nullable] = STATE(948), - [sym_preproc_error] = STATE(948), - [sym_preproc_warning] = STATE(948), - [sym_preproc_define] = STATE(948), - [sym_preproc_undef] = STATE(948), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [952] = { + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(5152), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2196), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(5538), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3683), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3102), + [sym_postfix_unary_expression] = STATE(3079), + [sym_prefix_unary_expression] = STATE(3079), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6147), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3102), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3079), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3102), + [sym_member_access_expression] = STATE(2472), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3079), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7404), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(3102), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3102), + [sym_typeof_expression] = STATE(3102), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2472), + [sym_literal] = STATE(3102), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2261), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), + [sym_preproc_region] = STATE(952), + [sym_preproc_endregion] = STATE(952), + [sym_preproc_line] = STATE(952), + [sym_preproc_pragma] = STATE(952), + [sym_preproc_nullable] = STATE(952), + [sym_preproc_error] = STATE(952), + [sym_preproc_warning] = STATE(952), + [sym_preproc_define] = STATE(952), + [sym_preproc_undef] = STATE(952), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1481), - [anon_sym_LPAREN] = ACTIONS(895), - [anon_sym_ref] = ACTIONS(897), - [anon_sym_LBRACE] = ACTIONS(1487), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1479), + [anon_sym_LPAREN] = ACTIONS(1965), + [anon_sym_ref] = ACTIONS(1967), + [anon_sym_LBRACE] = ACTIONS(1481), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1061), + [anon_sym_new] = ACTIONS(1059), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1067), - [anon_sym_BANG] = ACTIONS(1495), - [anon_sym_TILDE] = ACTIONS(1495), - [anon_sym_PLUS_PLUS] = ACTIONS(1495), - [anon_sym_DASH_DASH] = ACTIONS(1495), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(1971), + [anon_sym_TILDE] = ACTIONS(1971), + [anon_sym_PLUS_PLUS] = ACTIONS(1971), + [anon_sym_DASH_DASH] = ACTIONS(1971), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1493), - [anon_sym_DASH] = ACTIONS(1493), - [anon_sym_STAR] = ACTIONS(905), - [anon_sym_CARET] = ACTIONS(1495), - [anon_sym_AMP] = ACTIONS(1495), + [anon_sym_PLUS] = ACTIONS(1969), + [anon_sym_DASH] = ACTIONS(1969), + [anon_sym_STAR] = ACTIONS(1973), + [anon_sym_CARET] = ACTIONS(1971), + [anon_sym_AMP] = ACTIONS(1971), [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(1067), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1079), + [anon_sym_throw] = ACTIONS(1975), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1081), - [anon_sym_DOT_DOT] = ACTIONS(911), + [anon_sym_await] = ACTIONS(1977), + [anon_sym_DOT_DOT] = ACTIONS(1979), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -202136,7 +202698,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(1089), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -202152,135 +202714,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), }, - [949] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(5907), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2404), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(4065), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3140), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3080), - [sym_postfix_unary_expression] = STATE(3111), - [sym_prefix_unary_expression] = STATE(3111), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6183), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3080), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3111), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3080), - [sym_member_access_expression] = STATE(2484), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3111), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7703), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(3080), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3080), - [sym_typeof_expression] = STATE(3080), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2484), - [sym_literal] = STATE(3080), - [sym_character_literal] = STATE(3011), - [sym_string_literal] = STATE(3011), - [sym_raw_string_literal] = STATE(3011), - [sym_boolean_literal] = STATE(3011), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), - [sym_preproc_region] = STATE(949), - [sym_preproc_endregion] = STATE(949), - [sym_preproc_line] = STATE(949), - [sym_preproc_pragma] = STATE(949), - [sym_preproc_nullable] = STATE(949), - [sym_preproc_error] = STATE(949), - [sym_preproc_warning] = STATE(949), - [sym_preproc_define] = STATE(949), - [sym_preproc_undef] = STATE(949), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [953] = { + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2603), + [sym__name] = STATE(5865), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2344), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(4360), + [sym_non_lvalue_expression] = STATE(3220), + [sym_lvalue_expression] = STATE(3234), + [sym__expression_statement_expression] = STATE(3236), + [sym_assignment_expression] = STATE(3221), + [sym_binary_expression] = STATE(3236), + [sym_postfix_unary_expression] = STATE(3221), + [sym_prefix_unary_expression] = STATE(3221), + [sym__pointer_indirection_expression] = STATE(2602), + [sym_query_expression] = STATE(3236), + [sym_from_clause] = STATE(6151), + [sym_conditional_expression] = STATE(3236), + [sym_conditional_access_expression] = STATE(3236), + [sym_as_expression] = STATE(3236), + [sym_is_expression] = STATE(3236), + [sym_is_pattern_expression] = STATE(3236), + [sym_cast_expression] = STATE(3236), + [sym_checked_expression] = STATE(3236), + [sym_invocation_expression] = STATE(3221), + [sym_switch_expression] = STATE(3236), + [sym_await_expression] = STATE(3221), + [sym_throw_expression] = STATE(3236), + [sym_element_access_expression] = STATE(2602), + [sym_interpolated_string_expression] = STATE(3236), + [sym_member_access_expression] = STATE(2602), + [sym_object_creation_expression] = STATE(3221), + [sym_parenthesized_expression] = STATE(3221), + [sym__parenthesized_lvalue_expression] = STATE(2602), + [sym_lambda_expression] = STATE(3236), + [sym__lambda_expression_init] = STATE(7276), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3236), + [sym_anonymous_method_expression] = STATE(3236), + [sym_anonymous_object_creation_expression] = STATE(3236), + [sym_implicit_array_creation_expression] = STATE(3236), + [sym_implicit_object_creation_expression] = STATE(3236), + [sym_implicit_stackalloc_expression] = STATE(3236), + [sym_initializer_expression] = STATE(3236), + [sym_default_expression] = STATE(3236), + [sym_with_expression] = STATE(3236), + [sym_sizeof_expression] = STATE(3236), + [sym_typeof_expression] = STATE(3236), + [sym_makeref_expression] = STATE(3236), + [sym_ref_expression] = STATE(3236), + [sym_reftype_expression] = STATE(3236), + [sym_refvalue_expression] = STATE(3236), + [sym_stackalloc_expression] = STATE(3236), + [sym_range_expression] = STATE(3236), + [sym_tuple_expression] = STATE(2602), + [sym_literal] = STATE(3236), + [sym_character_literal] = STATE(3272), + [sym_string_literal] = STATE(3272), + [sym_raw_string_literal] = STATE(3272), + [sym_boolean_literal] = STATE(3272), + [sym_identifier] = STATE(2261), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3236), + [sym_preproc_if_in_attribute_list] = STATE(5583), + [sym_preproc_region] = STATE(953), + [sym_preproc_endregion] = STATE(953), + [sym_preproc_line] = STATE(953), + [sym_preproc_pragma] = STATE(953), + [sym_preproc_nullable] = STATE(953), + [sym_preproc_error] = STATE(953), + [sym_preproc_warning] = STATE(953), + [sym_preproc_define] = STATE(953), + [sym_preproc_undef] = STATE(953), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3379), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1481), - [anon_sym_LPAREN] = ACTIONS(2251), - [anon_sym_ref] = ACTIONS(2253), - [anon_sym_LBRACE] = ACTIONS(1487), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1149), + [anon_sym_LPAREN] = ACTIONS(1597), + [anon_sym_ref] = ACTIONS(1599), + [anon_sym_LBRACE] = ACTIONS(1155), + [anon_sym_delegate] = ACTIONS(1157), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1937), + [anon_sym_new] = ACTIONS(1535), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1067), - [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(1259), - [anon_sym_false] = ACTIONS(1259), - [anon_sym_PLUS] = ACTIONS(2255), - [anon_sym_DASH] = ACTIONS(2255), - [anon_sym_STAR] = ACTIONS(1943), - [anon_sym_CARET] = ACTIONS(2257), - [anon_sym_AMP] = ACTIONS(2257), - [anon_sym_this] = ACTIONS(83), + [anon_sym_checked] = ACTIONS(1163), + [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(1169), + [anon_sym_false] = ACTIONS(1169), + [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(1173), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), + [anon_sym_base] = ACTIONS(1175), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1267), - [anon_sym_unchecked] = ACTIONS(1067), + [sym_predefined_type] = ACTIONS(1177), + [anon_sym_unchecked] = ACTIONS(1163), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1269), - [anon_sym_throw] = ACTIONS(2259), + [anon_sym_default] = ACTIONS(1179), + [anon_sym_throw] = ACTIONS(1607), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2261), - [anon_sym_DOT_DOT] = ACTIONS(2263), + [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), @@ -202293,19 +202855,19 @@ static const uint16_t ts_parse_table[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(1279), - [anon_sym_typeof] = ACTIONS(1281), - [anon_sym___makeref] = ACTIONS(133), - [anon_sym___reftype] = ACTIONS(135), - [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(1289), - [anon_sym_SQUOTE] = ACTIONS(1291), - [sym_integer_literal] = ACTIONS(1289), - [sym_real_literal] = ACTIONS(1293), - [anon_sym_DQUOTE] = ACTIONS(1295), - [sym_verbatim_string_literal] = ACTIONS(1293), - [aux_sym_preproc_if_token1] = ACTIONS(1089), + [anon_sym_stackalloc] = ACTIONS(1187), + [anon_sym_sizeof] = ACTIONS(1189), + [anon_sym_typeof] = ACTIONS(1191), + [anon_sym___makeref] = ACTIONS(1193), + [anon_sym___reftype] = ACTIONS(1195), + [anon_sym___refvalue] = ACTIONS(1197), + [sym_null_literal] = ACTIONS(1199), + [anon_sym_SQUOTE] = ACTIONS(1201), + [sym_integer_literal] = ACTIONS(1199), + [sym_real_literal] = ACTIONS(1203), + [anon_sym_DQUOTE] = ACTIONS(1205), + [sym_verbatim_string_literal] = ACTIONS(1203), + [aux_sym_preproc_if_token1] = ACTIONS(1207), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -202316,140 +202878,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(1299), - [sym_interpolation_verbatim_start] = ACTIONS(1301), - [sym_interpolation_raw_start] = ACTIONS(1303), - [sym_raw_string_start] = ACTIONS(1305), + [sym_interpolation_regular_start] = ACTIONS(1209), + [sym_interpolation_verbatim_start] = ACTIONS(1211), + [sym_interpolation_raw_start] = ACTIONS(1213), + [sym_raw_string_start] = ACTIONS(1215), }, - [950] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(5890), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2375), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(5672), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(2465), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3080), - [sym_postfix_unary_expression] = STATE(3111), - [sym_prefix_unary_expression] = STATE(3111), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6154), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3080), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3111), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3080), - [sym_member_access_expression] = STATE(2484), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3111), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7530), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(3080), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3080), - [sym_typeof_expression] = STATE(3080), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2484), - [sym_literal] = STATE(3080), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), - [sym_preproc_region] = STATE(950), - [sym_preproc_endregion] = STATE(950), - [sym_preproc_line] = STATE(950), - [sym_preproc_pragma] = STATE(950), - [sym_preproc_nullable] = STATE(950), - [sym_preproc_error] = STATE(950), - [sym_preproc_warning] = STATE(950), - [sym_preproc_define] = STATE(950), - [sym_preproc_undef] = STATE(950), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [954] = { + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2603), + [sym__name] = STATE(5865), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2344), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(3123), + [sym_non_lvalue_expression] = STATE(3220), + [sym_lvalue_expression] = STATE(3234), + [sym__expression_statement_expression] = STATE(3236), + [sym_assignment_expression] = STATE(3221), + [sym_binary_expression] = STATE(3236), + [sym_postfix_unary_expression] = STATE(3221), + [sym_prefix_unary_expression] = STATE(3221), + [sym__pointer_indirection_expression] = STATE(2602), + [sym_query_expression] = STATE(3236), + [sym_from_clause] = STATE(6151), + [sym_conditional_expression] = STATE(3236), + [sym_conditional_access_expression] = STATE(3236), + [sym_as_expression] = STATE(3236), + [sym_is_expression] = STATE(3236), + [sym_is_pattern_expression] = STATE(3236), + [sym_cast_expression] = STATE(3236), + [sym_checked_expression] = STATE(3236), + [sym_invocation_expression] = STATE(3221), + [sym_switch_expression] = STATE(3236), + [sym_await_expression] = STATE(3221), + [sym_throw_expression] = STATE(3236), + [sym_element_access_expression] = STATE(2602), + [sym_interpolated_string_expression] = STATE(3236), + [sym_member_access_expression] = STATE(2602), + [sym_object_creation_expression] = STATE(3221), + [sym_parenthesized_expression] = STATE(3221), + [sym__parenthesized_lvalue_expression] = STATE(2602), + [sym_lambda_expression] = STATE(3236), + [sym__lambda_expression_init] = STATE(7276), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3236), + [sym_anonymous_method_expression] = STATE(3236), + [sym_anonymous_object_creation_expression] = STATE(3236), + [sym_implicit_array_creation_expression] = STATE(3236), + [sym_implicit_object_creation_expression] = STATE(3236), + [sym_implicit_stackalloc_expression] = STATE(3236), + [sym_initializer_expression] = STATE(3236), + [sym_default_expression] = STATE(3236), + [sym_with_expression] = STATE(3236), + [sym_sizeof_expression] = STATE(3236), + [sym_typeof_expression] = STATE(3236), + [sym_makeref_expression] = STATE(3236), + [sym_ref_expression] = STATE(3236), + [sym_reftype_expression] = STATE(3236), + [sym_refvalue_expression] = STATE(3236), + [sym_stackalloc_expression] = STATE(3236), + [sym_range_expression] = STATE(3236), + [sym_tuple_expression] = STATE(2602), + [sym_literal] = STATE(3236), + [sym_character_literal] = STATE(3272), + [sym_string_literal] = STATE(3272), + [sym_raw_string_literal] = STATE(3272), + [sym_boolean_literal] = STATE(3272), + [sym_identifier] = STATE(2261), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3236), + [sym_preproc_if_in_attribute_list] = STATE(5583), + [sym_preproc_region] = STATE(954), + [sym_preproc_endregion] = STATE(954), + [sym_preproc_line] = STATE(954), + [sym_preproc_pragma] = STATE(954), + [sym_preproc_nullable] = STATE(954), + [sym_preproc_error] = STATE(954), + [sym_preproc_warning] = STATE(954), + [sym_preproc_define] = STATE(954), + [sym_preproc_undef] = STATE(954), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3379), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1481), - [anon_sym_LPAREN] = ACTIONS(43), - [anon_sym_ref] = ACTIONS(661), - [anon_sym_LBRACE] = ACTIONS(1487), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1149), + [anon_sym_LPAREN] = ACTIONS(1597), + [anon_sym_ref] = ACTIONS(1599), + [anon_sym_LBRACE] = ACTIONS(1155), + [anon_sym_delegate] = ACTIONS(1157), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1061), + [anon_sym_new] = ACTIONS(1535), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = 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(1585), - [anon_sym_DASH] = ACTIONS(1585), - [anon_sym_STAR] = ACTIONS(2187), - [anon_sym_CARET] = ACTIONS(1587), - [anon_sym_AMP] = ACTIONS(1587), - [anon_sym_this] = ACTIONS(83), + [anon_sym_checked] = ACTIONS(1163), + [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(1169), + [anon_sym_false] = ACTIONS(1169), + [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(1173), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), + [anon_sym_base] = ACTIONS(1175), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1067), + [sym_predefined_type] = ACTIONS(1177), + [anon_sym_unchecked] = ACTIONS(1163), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1589), + [anon_sym_default] = ACTIONS(1179), + [anon_sym_throw] = ACTIONS(1607), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1591), - [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), @@ -202462,19 +203024,19 @@ static const uint16_t ts_parse_table[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(1089), + [anon_sym_stackalloc] = ACTIONS(1187), + [anon_sym_sizeof] = ACTIONS(1189), + [anon_sym_typeof] = ACTIONS(1191), + [anon_sym___makeref] = ACTIONS(1193), + [anon_sym___reftype] = ACTIONS(1195), + [anon_sym___refvalue] = ACTIONS(1197), + [sym_null_literal] = ACTIONS(1199), + [anon_sym_SQUOTE] = ACTIONS(1201), + [sym_integer_literal] = ACTIONS(1199), + [sym_real_literal] = ACTIONS(1203), + [anon_sym_DQUOTE] = ACTIONS(1205), + [sym_verbatim_string_literal] = ACTIONS(1203), + [aux_sym_preproc_if_token1] = ACTIONS(1207), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -202485,309 +203047,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), - }, - [951] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(3184), - [sym__name] = STATE(5906), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2312), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2269), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(4648), - [sym_non_lvalue_expression] = STATE(4541), - [sym_lvalue_expression] = STATE(3439), - [sym__expression_statement_expression] = STATE(4529), - [sym_assignment_expression] = STATE(4543), - [sym_binary_expression] = STATE(4529), - [sym_postfix_unary_expression] = STATE(4543), - [sym_prefix_unary_expression] = STATE(4543), - [sym__pointer_indirection_expression] = STATE(3175), - [sym_query_expression] = STATE(4529), - [sym_from_clause] = STATE(6169), - [sym_conditional_expression] = STATE(4529), - [sym_conditional_access_expression] = STATE(4529), - [sym_as_expression] = STATE(4529), - [sym_is_expression] = STATE(4529), - [sym_is_pattern_expression] = STATE(4529), - [sym_cast_expression] = STATE(4529), - [sym_checked_expression] = STATE(4529), - [sym_invocation_expression] = STATE(4543), - [sym_switch_expression] = STATE(4529), - [sym_await_expression] = STATE(4543), - [sym_throw_expression] = STATE(4529), - [sym_element_access_expression] = STATE(3175), - [sym_interpolated_string_expression] = STATE(4529), - [sym_member_access_expression] = STATE(3175), - [sym_object_creation_expression] = STATE(4543), - [sym_parenthesized_expression] = STATE(4543), - [sym__parenthesized_lvalue_expression] = STATE(3175), - [sym_lambda_expression] = STATE(4529), - [sym__lambda_expression_init] = STATE(7684), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(4529), - [sym_anonymous_method_expression] = STATE(4529), - [sym_anonymous_object_creation_expression] = STATE(4529), - [sym_implicit_array_creation_expression] = STATE(4529), - [sym_implicit_object_creation_expression] = STATE(4529), - [sym_implicit_stackalloc_expression] = STATE(4529), - [sym_initializer_expression] = STATE(4529), - [sym_default_expression] = STATE(4529), - [sym_with_expression] = STATE(4529), - [sym_sizeof_expression] = STATE(4529), - [sym_typeof_expression] = STATE(4529), - [sym_makeref_expression] = STATE(4529), - [sym_ref_expression] = STATE(4529), - [sym_reftype_expression] = STATE(4529), - [sym_refvalue_expression] = STATE(4529), - [sym_stackalloc_expression] = STATE(4529), - [sym_range_expression] = STATE(4529), - [sym_tuple_expression] = STATE(3175), - [sym_literal] = STATE(4529), - [sym_character_literal] = STATE(4536), - [sym_string_literal] = STATE(4536), - [sym_raw_string_literal] = STATE(4536), - [sym_boolean_literal] = STATE(4536), - [sym_identifier] = STATE(2246), - [sym__reserved_identifier] = STATE(2240), - [sym_preproc_if_in_expression] = STATE(4529), - [sym_preproc_if_in_attribute_list] = STATE(5576), - [sym_preproc_region] = STATE(951), - [sym_preproc_endregion] = STATE(951), - [sym_preproc_line] = STATE(951), - [sym_preproc_pragma] = STATE(951), - [sym_preproc_nullable] = STATE(951), - [sym_preproc_error] = STATE(951), - [sym_preproc_warning] = STATE(951), - [sym_preproc_define] = STATE(951), - [sym_preproc_undef] = STATE(951), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3363), - [sym__identifier_token] = ACTIONS(1387), - [anon_sym_alias] = ACTIONS(1389), - [anon_sym_global] = ACTIONS(1389), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1391), - [anon_sym_LPAREN] = ACTIONS(1775), - [anon_sym_ref] = ACTIONS(1777), - [anon_sym_LBRACE] = ACTIONS(1397), - [anon_sym_delegate] = ACTIONS(1399), - [anon_sym_async] = ACTIONS(1047), - [anon_sym_file] = ACTIONS(1389), - [anon_sym_new] = ACTIONS(1401), - [anon_sym_where] = ACTIONS(1389), - [anon_sym_notnull] = ACTIONS(1389), - [anon_sym_unmanaged] = ACTIONS(1389), - [anon_sym_checked] = ACTIONS(1403), - [anon_sym_BANG] = ACTIONS(1781), - [anon_sym_TILDE] = ACTIONS(1781), - [anon_sym_PLUS_PLUS] = ACTIONS(1781), - [anon_sym_DASH_DASH] = ACTIONS(1781), - [anon_sym_true] = ACTIONS(1409), - [anon_sym_false] = ACTIONS(1409), - [anon_sym_PLUS] = ACTIONS(1779), - [anon_sym_DASH] = ACTIONS(1779), - [anon_sym_STAR] = ACTIONS(1411), - [anon_sym_CARET] = ACTIONS(1781), - [anon_sym_AMP] = ACTIONS(1781), - [anon_sym_this] = ACTIONS(1413), - [anon_sym_scoped] = ACTIONS(1415), - [anon_sym_base] = ACTIONS(1417), - [anon_sym_var] = ACTIONS(1419), - [sym_predefined_type] = ACTIONS(1421), - [anon_sym_unchecked] = ACTIONS(1403), - [anon_sym_yield] = ACTIONS(1389), - [anon_sym_default] = ACTIONS(1423), - [anon_sym_throw] = ACTIONS(1783), - [anon_sym_when] = ACTIONS(1389), - [anon_sym_await] = ACTIONS(1785), - [anon_sym_DOT_DOT] = ACTIONS(1787), - [anon_sym_from] = ACTIONS(1431), - [anon_sym_into] = ACTIONS(1389), - [anon_sym_join] = ACTIONS(1389), - [anon_sym_on] = ACTIONS(1389), - [anon_sym_equals] = ACTIONS(1389), - [anon_sym_let] = ACTIONS(1389), - [anon_sym_orderby] = ACTIONS(1389), - [anon_sym_ascending] = ACTIONS(1389), - [anon_sym_descending] = ACTIONS(1389), - [anon_sym_group] = ACTIONS(1389), - [anon_sym_by] = ACTIONS(1389), - [anon_sym_select] = ACTIONS(1389), - [anon_sym_stackalloc] = ACTIONS(1433), - [anon_sym_sizeof] = ACTIONS(1435), - [anon_sym_typeof] = ACTIONS(1437), - [anon_sym___makeref] = ACTIONS(1439), - [anon_sym___reftype] = ACTIONS(1441), - [anon_sym___refvalue] = ACTIONS(1443), - [sym_null_literal] = ACTIONS(1445), - [anon_sym_SQUOTE] = ACTIONS(1447), - [sym_integer_literal] = ACTIONS(1445), - [sym_real_literal] = ACTIONS(1449), - [anon_sym_DQUOTE] = ACTIONS(1451), - [sym_verbatim_string_literal] = ACTIONS(1449), - [aux_sym_preproc_if_token1] = ACTIONS(1453), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1455), - [sym_interpolation_verbatim_start] = ACTIONS(1457), - [sym_interpolation_raw_start] = ACTIONS(1459), - [sym_raw_string_start] = ACTIONS(1461), + [sym_interpolation_regular_start] = ACTIONS(1209), + [sym_interpolation_verbatim_start] = ACTIONS(1211), + [sym_interpolation_raw_start] = ACTIONS(1213), + [sym_raw_string_start] = ACTIONS(1215), }, - [952] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2914), - [sym__name] = STATE(5873), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2362), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(4045), - [sym_non_lvalue_expression] = STATE(3880), - [sym_lvalue_expression] = STATE(3092), - [sym__expression_statement_expression] = STATE(3873), - [sym_assignment_expression] = STATE(3881), - [sym_binary_expression] = STATE(3873), - [sym_postfix_unary_expression] = STATE(3881), - [sym_prefix_unary_expression] = STATE(3881), - [sym__pointer_indirection_expression] = STATE(2913), - [sym_query_expression] = STATE(3873), - [sym_from_clause] = STATE(6168), - [sym_conditional_expression] = STATE(3873), - [sym_conditional_access_expression] = STATE(3873), - [sym_as_expression] = STATE(3873), - [sym_is_expression] = STATE(3873), - [sym_is_pattern_expression] = STATE(3873), - [sym_cast_expression] = STATE(3873), - [sym_checked_expression] = STATE(3873), - [sym_invocation_expression] = STATE(3881), - [sym_switch_expression] = STATE(3873), - [sym_await_expression] = STATE(3881), - [sym_throw_expression] = STATE(3873), - [sym_element_access_expression] = STATE(2913), - [sym_interpolated_string_expression] = STATE(3873), - [sym_member_access_expression] = STATE(2913), - [sym_object_creation_expression] = STATE(3881), - [sym_parenthesized_expression] = STATE(3881), - [sym__parenthesized_lvalue_expression] = STATE(2913), - [sym_lambda_expression] = STATE(3873), - [sym__lambda_expression_init] = STATE(7533), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3873), - [sym_anonymous_method_expression] = STATE(3873), - [sym_anonymous_object_creation_expression] = STATE(3873), - [sym_implicit_array_creation_expression] = STATE(3873), - [sym_implicit_object_creation_expression] = STATE(3873), - [sym_implicit_stackalloc_expression] = STATE(3873), - [sym_initializer_expression] = STATE(3873), - [sym_default_expression] = STATE(3873), - [sym_with_expression] = STATE(3873), - [sym_sizeof_expression] = STATE(3873), - [sym_typeof_expression] = STATE(3873), - [sym_makeref_expression] = STATE(3873), - [sym_ref_expression] = STATE(3873), - [sym_reftype_expression] = STATE(3873), - [sym_refvalue_expression] = STATE(3873), - [sym_stackalloc_expression] = STATE(3873), - [sym_range_expression] = STATE(3873), - [sym_tuple_expression] = STATE(2913), - [sym_literal] = STATE(3873), - [sym_character_literal] = STATE(3877), - [sym_string_literal] = STATE(3877), - [sym_raw_string_literal] = STATE(3877), - [sym_boolean_literal] = STATE(3877), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3873), - [sym_preproc_if_in_attribute_list] = STATE(5576), - [sym_preproc_region] = STATE(952), - [sym_preproc_endregion] = STATE(952), - [sym_preproc_line] = STATE(952), - [sym_preproc_pragma] = STATE(952), - [sym_preproc_nullable] = STATE(952), - [sym_preproc_error] = STATE(952), - [sym_preproc_warning] = STATE(952), - [sym_preproc_define] = STATE(952), - [sym_preproc_undef] = STATE(952), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3382), + [955] = { + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2603), + [sym__name] = STATE(5894), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2193), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(4237), + [sym_non_lvalue_expression] = STATE(3220), + [sym_lvalue_expression] = STATE(3126), + [sym__expression_statement_expression] = STATE(3236), + [sym_assignment_expression] = STATE(3221), + [sym_binary_expression] = STATE(3236), + [sym_postfix_unary_expression] = STATE(3221), + [sym_prefix_unary_expression] = STATE(3221), + [sym__pointer_indirection_expression] = STATE(2602), + [sym_query_expression] = STATE(3236), + [sym_from_clause] = STATE(6165), + [sym_conditional_expression] = STATE(3236), + [sym_conditional_access_expression] = STATE(3236), + [sym_as_expression] = STATE(3236), + [sym_is_expression] = STATE(3236), + [sym_is_pattern_expression] = STATE(3236), + [sym_cast_expression] = STATE(3236), + [sym_checked_expression] = STATE(3236), + [sym_invocation_expression] = STATE(3221), + [sym_switch_expression] = STATE(3236), + [sym_await_expression] = STATE(3221), + [sym_throw_expression] = STATE(3236), + [sym_element_access_expression] = STATE(2602), + [sym_interpolated_string_expression] = STATE(3236), + [sym_member_access_expression] = STATE(2602), + [sym_object_creation_expression] = STATE(3221), + [sym_parenthesized_expression] = STATE(3221), + [sym__parenthesized_lvalue_expression] = STATE(2602), + [sym_lambda_expression] = STATE(3236), + [sym__lambda_expression_init] = STATE(7487), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3236), + [sym_anonymous_method_expression] = STATE(3236), + [sym_anonymous_object_creation_expression] = STATE(3236), + [sym_implicit_array_creation_expression] = STATE(3236), + [sym_implicit_object_creation_expression] = STATE(3236), + [sym_implicit_stackalloc_expression] = STATE(3236), + [sym_initializer_expression] = STATE(3236), + [sym_default_expression] = STATE(3236), + [sym_with_expression] = STATE(3236), + [sym_sizeof_expression] = STATE(3236), + [sym_typeof_expression] = STATE(3236), + [sym_makeref_expression] = STATE(3236), + [sym_ref_expression] = STATE(3236), + [sym_reftype_expression] = STATE(3236), + [sym_refvalue_expression] = STATE(3236), + [sym_stackalloc_expression] = STATE(3236), + [sym_range_expression] = STATE(3236), + [sym_tuple_expression] = STATE(2602), + [sym_literal] = STATE(3236), + [sym_character_literal] = STATE(3272), + [sym_string_literal] = STATE(3272), + [sym_raw_string_literal] = STATE(3272), + [sym_boolean_literal] = STATE(3272), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3236), + [sym_preproc_if_in_attribute_list] = STATE(5583), + [sym_preproc_region] = STATE(955), + [sym_preproc_endregion] = STATE(955), + [sym_preproc_line] = STATE(955), + [sym_preproc_pragma] = STATE(955), + [sym_preproc_nullable] = STATE(955), + [sym_preproc_error] = STATE(955), + [sym_preproc_warning] = STATE(955), + [sym_preproc_define] = STATE(955), + [sym_preproc_undef] = STATE(955), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3379), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1627), - [anon_sym_LPAREN] = ACTIONS(1961), - [anon_sym_ref] = ACTIONS(1963), - [anon_sym_LBRACE] = ACTIONS(1633), - [anon_sym_delegate] = ACTIONS(1635), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1149), + [anon_sym_LPAREN] = ACTIONS(1341), + [anon_sym_ref] = ACTIONS(1343), + [anon_sym_LBRACE] = ACTIONS(1155), + [anon_sym_delegate] = ACTIONS(1157), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1637), + [anon_sym_new] = ACTIONS(1159), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1639), - [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(1645), - [anon_sym_false] = ACTIONS(1645), - [anon_sym_PLUS] = ACTIONS(1965), - [anon_sym_DASH] = ACTIONS(1965), - [anon_sym_STAR] = ACTIONS(1647), - [anon_sym_CARET] = ACTIONS(1967), - [anon_sym_AMP] = ACTIONS(1967), - [anon_sym_this] = ACTIONS(1649), + [anon_sym_checked] = ACTIONS(1163), + [anon_sym_BANG] = ACTIONS(1347), + [anon_sym_TILDE] = ACTIONS(1347), + [anon_sym_PLUS_PLUS] = ACTIONS(1347), + [anon_sym_DASH_DASH] = ACTIONS(1347), + [anon_sym_true] = ACTIONS(1169), + [anon_sym_false] = ACTIONS(1169), + [anon_sym_PLUS] = ACTIONS(1345), + [anon_sym_DASH] = ACTIONS(1345), + [anon_sym_STAR] = ACTIONS(1349), + [anon_sym_CARET] = ACTIONS(1347), + [anon_sym_AMP] = ACTIONS(1347), + [anon_sym_this] = ACTIONS(1173), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1651), + [anon_sym_base] = ACTIONS(1175), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1653), - [anon_sym_unchecked] = ACTIONS(1639), + [sym_predefined_type] = ACTIONS(1177), + [anon_sym_unchecked] = ACTIONS(1163), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1655), - [anon_sym_throw] = ACTIONS(1969), + [anon_sym_default] = ACTIONS(1179), + [anon_sym_throw] = ACTIONS(1351), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1971), - [anon_sym_DOT_DOT] = ACTIONS(1973), + [anon_sym_await] = ACTIONS(1353), + [anon_sym_DOT_DOT] = ACTIONS(1355), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -202800,19 +203193,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1663), - [anon_sym_sizeof] = ACTIONS(1665), - [anon_sym_typeof] = ACTIONS(1667), - [anon_sym___makeref] = ACTIONS(1669), - [anon_sym___reftype] = ACTIONS(1671), - [anon_sym___refvalue] = ACTIONS(1673), - [sym_null_literal] = ACTIONS(1675), - [anon_sym_SQUOTE] = ACTIONS(1677), - [sym_integer_literal] = ACTIONS(1675), - [sym_real_literal] = ACTIONS(1679), - [anon_sym_DQUOTE] = ACTIONS(1681), - [sym_verbatim_string_literal] = ACTIONS(1679), - [aux_sym_preproc_if_token1] = ACTIONS(1683), + [anon_sym_stackalloc] = ACTIONS(1187), + [anon_sym_sizeof] = ACTIONS(1189), + [anon_sym_typeof] = ACTIONS(1191), + [anon_sym___makeref] = ACTIONS(1193), + [anon_sym___reftype] = ACTIONS(1195), + [anon_sym___refvalue] = ACTIONS(1197), + [sym_null_literal] = ACTIONS(1199), + [anon_sym_SQUOTE] = ACTIONS(1201), + [sym_integer_literal] = ACTIONS(1199), + [sym_real_literal] = ACTIONS(1203), + [anon_sym_DQUOTE] = ACTIONS(1205), + [sym_verbatim_string_literal] = ACTIONS(1203), + [aux_sym_preproc_if_token1] = ACTIONS(1207), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -202823,478 +203216,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(1685), - [sym_interpolation_verbatim_start] = ACTIONS(1687), - [sym_interpolation_raw_start] = ACTIONS(1689), - [sym_raw_string_start] = ACTIONS(1691), - }, - [953] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(3184), - [sym__name] = STATE(5906), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2312), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2269), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(4669), - [sym_non_lvalue_expression] = STATE(4541), - [sym_lvalue_expression] = STATE(3439), - [sym__expression_statement_expression] = STATE(4529), - [sym_assignment_expression] = STATE(4543), - [sym_binary_expression] = STATE(4529), - [sym_postfix_unary_expression] = STATE(4543), - [sym_prefix_unary_expression] = STATE(4543), - [sym__pointer_indirection_expression] = STATE(3175), - [sym_query_expression] = STATE(4529), - [sym_from_clause] = STATE(6169), - [sym_conditional_expression] = STATE(4529), - [sym_conditional_access_expression] = STATE(4529), - [sym_as_expression] = STATE(4529), - [sym_is_expression] = STATE(4529), - [sym_is_pattern_expression] = STATE(4529), - [sym_cast_expression] = STATE(4529), - [sym_checked_expression] = STATE(4529), - [sym_invocation_expression] = STATE(4543), - [sym_switch_expression] = STATE(4529), - [sym_await_expression] = STATE(4543), - [sym_throw_expression] = STATE(4529), - [sym_element_access_expression] = STATE(3175), - [sym_interpolated_string_expression] = STATE(4529), - [sym_member_access_expression] = STATE(3175), - [sym_object_creation_expression] = STATE(4543), - [sym_parenthesized_expression] = STATE(4543), - [sym__parenthesized_lvalue_expression] = STATE(3175), - [sym_lambda_expression] = STATE(4529), - [sym__lambda_expression_init] = STATE(7684), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(4529), - [sym_anonymous_method_expression] = STATE(4529), - [sym_anonymous_object_creation_expression] = STATE(4529), - [sym_implicit_array_creation_expression] = STATE(4529), - [sym_implicit_object_creation_expression] = STATE(4529), - [sym_implicit_stackalloc_expression] = STATE(4529), - [sym_initializer_expression] = STATE(4529), - [sym_default_expression] = STATE(4529), - [sym_with_expression] = STATE(4529), - [sym_sizeof_expression] = STATE(4529), - [sym_typeof_expression] = STATE(4529), - [sym_makeref_expression] = STATE(4529), - [sym_ref_expression] = STATE(4529), - [sym_reftype_expression] = STATE(4529), - [sym_refvalue_expression] = STATE(4529), - [sym_stackalloc_expression] = STATE(4529), - [sym_range_expression] = STATE(4529), - [sym_tuple_expression] = STATE(3175), - [sym_literal] = STATE(4529), - [sym_character_literal] = STATE(4536), - [sym_string_literal] = STATE(4536), - [sym_raw_string_literal] = STATE(4536), - [sym_boolean_literal] = STATE(4536), - [sym_identifier] = STATE(2246), - [sym__reserved_identifier] = STATE(2240), - [sym_preproc_if_in_expression] = STATE(4529), - [sym_preproc_if_in_attribute_list] = STATE(5576), - [sym_preproc_region] = STATE(953), - [sym_preproc_endregion] = STATE(953), - [sym_preproc_line] = STATE(953), - [sym_preproc_pragma] = STATE(953), - [sym_preproc_nullable] = STATE(953), - [sym_preproc_error] = STATE(953), - [sym_preproc_warning] = STATE(953), - [sym_preproc_define] = STATE(953), - [sym_preproc_undef] = STATE(953), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3363), - [sym__identifier_token] = ACTIONS(1387), - [anon_sym_alias] = ACTIONS(1389), - [anon_sym_global] = ACTIONS(1389), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1391), - [anon_sym_LPAREN] = ACTIONS(1775), - [anon_sym_ref] = ACTIONS(1777), - [anon_sym_LBRACE] = ACTIONS(1397), - [anon_sym_delegate] = ACTIONS(1399), - [anon_sym_async] = ACTIONS(1047), - [anon_sym_file] = ACTIONS(1389), - [anon_sym_new] = ACTIONS(1401), - [anon_sym_where] = ACTIONS(1389), - [anon_sym_notnull] = ACTIONS(1389), - [anon_sym_unmanaged] = ACTIONS(1389), - [anon_sym_checked] = ACTIONS(1403), - [anon_sym_BANG] = ACTIONS(1781), - [anon_sym_TILDE] = ACTIONS(1781), - [anon_sym_PLUS_PLUS] = ACTIONS(1781), - [anon_sym_DASH_DASH] = ACTIONS(1781), - [anon_sym_true] = ACTIONS(1409), - [anon_sym_false] = ACTIONS(1409), - [anon_sym_PLUS] = ACTIONS(1779), - [anon_sym_DASH] = ACTIONS(1779), - [anon_sym_STAR] = ACTIONS(1411), - [anon_sym_CARET] = ACTIONS(1781), - [anon_sym_AMP] = ACTIONS(1781), - [anon_sym_this] = ACTIONS(1413), - [anon_sym_scoped] = ACTIONS(1415), - [anon_sym_base] = ACTIONS(1417), - [anon_sym_var] = ACTIONS(1419), - [sym_predefined_type] = ACTIONS(1421), - [anon_sym_unchecked] = ACTIONS(1403), - [anon_sym_yield] = ACTIONS(1389), - [anon_sym_default] = ACTIONS(1423), - [anon_sym_throw] = ACTIONS(1783), - [anon_sym_when] = ACTIONS(1389), - [anon_sym_await] = ACTIONS(1785), - [anon_sym_DOT_DOT] = ACTIONS(1787), - [anon_sym_from] = ACTIONS(1431), - [anon_sym_into] = ACTIONS(1389), - [anon_sym_join] = ACTIONS(1389), - [anon_sym_on] = ACTIONS(1389), - [anon_sym_equals] = ACTIONS(1389), - [anon_sym_let] = ACTIONS(1389), - [anon_sym_orderby] = ACTIONS(1389), - [anon_sym_ascending] = ACTIONS(1389), - [anon_sym_descending] = ACTIONS(1389), - [anon_sym_group] = ACTIONS(1389), - [anon_sym_by] = ACTIONS(1389), - [anon_sym_select] = ACTIONS(1389), - [anon_sym_stackalloc] = ACTIONS(1433), - [anon_sym_sizeof] = ACTIONS(1435), - [anon_sym_typeof] = ACTIONS(1437), - [anon_sym___makeref] = ACTIONS(1439), - [anon_sym___reftype] = ACTIONS(1441), - [anon_sym___refvalue] = ACTIONS(1443), - [sym_null_literal] = ACTIONS(1445), - [anon_sym_SQUOTE] = ACTIONS(1447), - [sym_integer_literal] = ACTIONS(1445), - [sym_real_literal] = ACTIONS(1449), - [anon_sym_DQUOTE] = ACTIONS(1451), - [sym_verbatim_string_literal] = ACTIONS(1449), - [aux_sym_preproc_if_token1] = ACTIONS(1453), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1455), - [sym_interpolation_verbatim_start] = ACTIONS(1457), - [sym_interpolation_raw_start] = ACTIONS(1459), - [sym_raw_string_start] = ACTIONS(1461), - }, - [954] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(3184), - [sym__name] = STATE(5906), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2312), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2269), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(4672), - [sym_non_lvalue_expression] = STATE(4541), - [sym_lvalue_expression] = STATE(3439), - [sym__expression_statement_expression] = STATE(4529), - [sym_assignment_expression] = STATE(4543), - [sym_binary_expression] = STATE(4529), - [sym_postfix_unary_expression] = STATE(4543), - [sym_prefix_unary_expression] = STATE(4543), - [sym__pointer_indirection_expression] = STATE(3175), - [sym_query_expression] = STATE(4529), - [sym_from_clause] = STATE(6169), - [sym_conditional_expression] = STATE(4529), - [sym_conditional_access_expression] = STATE(4529), - [sym_as_expression] = STATE(4529), - [sym_is_expression] = STATE(4529), - [sym_is_pattern_expression] = STATE(4529), - [sym_cast_expression] = STATE(4529), - [sym_checked_expression] = STATE(4529), - [sym_invocation_expression] = STATE(4543), - [sym_switch_expression] = STATE(4529), - [sym_await_expression] = STATE(4543), - [sym_throw_expression] = STATE(4529), - [sym_element_access_expression] = STATE(3175), - [sym_interpolated_string_expression] = STATE(4529), - [sym_member_access_expression] = STATE(3175), - [sym_object_creation_expression] = STATE(4543), - [sym_parenthesized_expression] = STATE(4543), - [sym__parenthesized_lvalue_expression] = STATE(3175), - [sym_lambda_expression] = STATE(4529), - [sym__lambda_expression_init] = STATE(7684), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(4529), - [sym_anonymous_method_expression] = STATE(4529), - [sym_anonymous_object_creation_expression] = STATE(4529), - [sym_implicit_array_creation_expression] = STATE(4529), - [sym_implicit_object_creation_expression] = STATE(4529), - [sym_implicit_stackalloc_expression] = STATE(4529), - [sym_initializer_expression] = STATE(4529), - [sym_default_expression] = STATE(4529), - [sym_with_expression] = STATE(4529), - [sym_sizeof_expression] = STATE(4529), - [sym_typeof_expression] = STATE(4529), - [sym_makeref_expression] = STATE(4529), - [sym_ref_expression] = STATE(4529), - [sym_reftype_expression] = STATE(4529), - [sym_refvalue_expression] = STATE(4529), - [sym_stackalloc_expression] = STATE(4529), - [sym_range_expression] = STATE(4529), - [sym_tuple_expression] = STATE(3175), - [sym_literal] = STATE(4529), - [sym_character_literal] = STATE(4536), - [sym_string_literal] = STATE(4536), - [sym_raw_string_literal] = STATE(4536), - [sym_boolean_literal] = STATE(4536), - [sym_identifier] = STATE(2246), - [sym__reserved_identifier] = STATE(2240), - [sym_preproc_if_in_expression] = STATE(4529), - [sym_preproc_if_in_attribute_list] = STATE(5576), - [sym_preproc_region] = STATE(954), - [sym_preproc_endregion] = STATE(954), - [sym_preproc_line] = STATE(954), - [sym_preproc_pragma] = STATE(954), - [sym_preproc_nullable] = STATE(954), - [sym_preproc_error] = STATE(954), - [sym_preproc_warning] = STATE(954), - [sym_preproc_define] = STATE(954), - [sym_preproc_undef] = STATE(954), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3363), - [sym__identifier_token] = ACTIONS(1387), - [anon_sym_alias] = ACTIONS(1389), - [anon_sym_global] = ACTIONS(1389), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1391), - [anon_sym_LPAREN] = ACTIONS(1775), - [anon_sym_ref] = ACTIONS(1777), - [anon_sym_LBRACE] = ACTIONS(1397), - [anon_sym_delegate] = ACTIONS(1399), - [anon_sym_async] = ACTIONS(1047), - [anon_sym_file] = ACTIONS(1389), - [anon_sym_new] = ACTIONS(1401), - [anon_sym_where] = ACTIONS(1389), - [anon_sym_notnull] = ACTIONS(1389), - [anon_sym_unmanaged] = ACTIONS(1389), - [anon_sym_checked] = ACTIONS(1403), - [anon_sym_BANG] = ACTIONS(1781), - [anon_sym_TILDE] = ACTIONS(1781), - [anon_sym_PLUS_PLUS] = ACTIONS(1781), - [anon_sym_DASH_DASH] = ACTIONS(1781), - [anon_sym_true] = ACTIONS(1409), - [anon_sym_false] = ACTIONS(1409), - [anon_sym_PLUS] = ACTIONS(1779), - [anon_sym_DASH] = ACTIONS(1779), - [anon_sym_STAR] = ACTIONS(1411), - [anon_sym_CARET] = ACTIONS(1781), - [anon_sym_AMP] = ACTIONS(1781), - [anon_sym_this] = ACTIONS(1413), - [anon_sym_scoped] = ACTIONS(1415), - [anon_sym_base] = ACTIONS(1417), - [anon_sym_var] = ACTIONS(1419), - [sym_predefined_type] = ACTIONS(1421), - [anon_sym_unchecked] = ACTIONS(1403), - [anon_sym_yield] = ACTIONS(1389), - [anon_sym_default] = ACTIONS(1423), - [anon_sym_throw] = ACTIONS(1783), - [anon_sym_when] = ACTIONS(1389), - [anon_sym_await] = ACTIONS(1785), - [anon_sym_DOT_DOT] = ACTIONS(1787), - [anon_sym_from] = ACTIONS(1431), - [anon_sym_into] = ACTIONS(1389), - [anon_sym_join] = ACTIONS(1389), - [anon_sym_on] = ACTIONS(1389), - [anon_sym_equals] = ACTIONS(1389), - [anon_sym_let] = ACTIONS(1389), - [anon_sym_orderby] = ACTIONS(1389), - [anon_sym_ascending] = ACTIONS(1389), - [anon_sym_descending] = ACTIONS(1389), - [anon_sym_group] = ACTIONS(1389), - [anon_sym_by] = ACTIONS(1389), - [anon_sym_select] = ACTIONS(1389), - [anon_sym_stackalloc] = ACTIONS(1433), - [anon_sym_sizeof] = ACTIONS(1435), - [anon_sym_typeof] = ACTIONS(1437), - [anon_sym___makeref] = ACTIONS(1439), - [anon_sym___reftype] = ACTIONS(1441), - [anon_sym___refvalue] = ACTIONS(1443), - [sym_null_literal] = ACTIONS(1445), - [anon_sym_SQUOTE] = ACTIONS(1447), - [sym_integer_literal] = ACTIONS(1445), - [sym_real_literal] = ACTIONS(1449), - [anon_sym_DQUOTE] = ACTIONS(1451), - [sym_verbatim_string_literal] = ACTIONS(1449), - [aux_sym_preproc_if_token1] = ACTIONS(1453), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1455), - [sym_interpolation_verbatim_start] = ACTIONS(1457), - [sym_interpolation_raw_start] = ACTIONS(1459), - [sym_raw_string_start] = ACTIONS(1461), + [sym_interpolation_regular_start] = ACTIONS(1209), + [sym_interpolation_verbatim_start] = ACTIONS(1211), + [sym_interpolation_raw_start] = ACTIONS(1213), + [sym_raw_string_start] = ACTIONS(1215), }, - [955] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(5634), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2204), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(5372), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3664), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3080), - [sym_postfix_unary_expression] = STATE(3111), - [sym_prefix_unary_expression] = STATE(3111), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6161), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3080), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3111), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3080), - [sym_member_access_expression] = STATE(2484), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3111), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7773), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(3080), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3080), - [sym_typeof_expression] = STATE(3080), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2484), - [sym_literal] = STATE(3080), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), - [sym_preproc_region] = STATE(955), - [sym_preproc_endregion] = STATE(955), - [sym_preproc_line] = STATE(955), - [sym_preproc_pragma] = STATE(955), - [sym_preproc_nullable] = STATE(955), - [sym_preproc_error] = STATE(955), - [sym_preproc_warning] = STATE(955), - [sym_preproc_define] = STATE(955), - [sym_preproc_undef] = STATE(955), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [956] = { + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2603), + [sym__name] = STATE(5894), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2193), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(4239), + [sym_non_lvalue_expression] = STATE(3220), + [sym_lvalue_expression] = STATE(3126), + [sym__expression_statement_expression] = STATE(3236), + [sym_assignment_expression] = STATE(3221), + [sym_binary_expression] = STATE(3236), + [sym_postfix_unary_expression] = STATE(3221), + [sym_prefix_unary_expression] = STATE(3221), + [sym__pointer_indirection_expression] = STATE(2602), + [sym_query_expression] = STATE(3236), + [sym_from_clause] = STATE(6165), + [sym_conditional_expression] = STATE(3236), + [sym_conditional_access_expression] = STATE(3236), + [sym_as_expression] = STATE(3236), + [sym_is_expression] = STATE(3236), + [sym_is_pattern_expression] = STATE(3236), + [sym_cast_expression] = STATE(3236), + [sym_checked_expression] = STATE(3236), + [sym_invocation_expression] = STATE(3221), + [sym_switch_expression] = STATE(3236), + [sym_await_expression] = STATE(3221), + [sym_throw_expression] = STATE(3236), + [sym_element_access_expression] = STATE(2602), + [sym_interpolated_string_expression] = STATE(3236), + [sym_member_access_expression] = STATE(2602), + [sym_object_creation_expression] = STATE(3221), + [sym_parenthesized_expression] = STATE(3221), + [sym__parenthesized_lvalue_expression] = STATE(2602), + [sym_lambda_expression] = STATE(3236), + [sym__lambda_expression_init] = STATE(7487), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3236), + [sym_anonymous_method_expression] = STATE(3236), + [sym_anonymous_object_creation_expression] = STATE(3236), + [sym_implicit_array_creation_expression] = STATE(3236), + [sym_implicit_object_creation_expression] = STATE(3236), + [sym_implicit_stackalloc_expression] = STATE(3236), + [sym_initializer_expression] = STATE(3236), + [sym_default_expression] = STATE(3236), + [sym_with_expression] = STATE(3236), + [sym_sizeof_expression] = STATE(3236), + [sym_typeof_expression] = STATE(3236), + [sym_makeref_expression] = STATE(3236), + [sym_ref_expression] = STATE(3236), + [sym_reftype_expression] = STATE(3236), + [sym_refvalue_expression] = STATE(3236), + [sym_stackalloc_expression] = STATE(3236), + [sym_range_expression] = STATE(3236), + [sym_tuple_expression] = STATE(2602), + [sym_literal] = STATE(3236), + [sym_character_literal] = STATE(3272), + [sym_string_literal] = STATE(3272), + [sym_raw_string_literal] = STATE(3272), + [sym_boolean_literal] = STATE(3272), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3236), + [sym_preproc_if_in_attribute_list] = STATE(5583), + [sym_preproc_region] = STATE(956), + [sym_preproc_endregion] = STATE(956), + [sym_preproc_line] = STATE(956), + [sym_preproc_pragma] = STATE(956), + [sym_preproc_nullable] = STATE(956), + [sym_preproc_error] = STATE(956), + [sym_preproc_warning] = STATE(956), + [sym_preproc_define] = STATE(956), + [sym_preproc_undef] = STATE(956), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3379), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1481), - [anon_sym_LPAREN] = ACTIONS(2015), - [anon_sym_ref] = ACTIONS(2017), - [anon_sym_LBRACE] = ACTIONS(1487), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1149), + [anon_sym_LPAREN] = ACTIONS(1341), + [anon_sym_ref] = ACTIONS(1343), + [anon_sym_LBRACE] = ACTIONS(1155), + [anon_sym_delegate] = ACTIONS(1157), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1101), + [anon_sym_new] = ACTIONS(1159), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1067), - [anon_sym_BANG] = ACTIONS(2021), - [anon_sym_TILDE] = ACTIONS(2021), - [anon_sym_PLUS_PLUS] = ACTIONS(2021), - [anon_sym_DASH_DASH] = ACTIONS(2021), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(2019), - [anon_sym_DASH] = ACTIONS(2019), - [anon_sym_STAR] = ACTIONS(1229), - [anon_sym_CARET] = ACTIONS(2021), - [anon_sym_AMP] = ACTIONS(2021), - [anon_sym_this] = ACTIONS(83), + [anon_sym_checked] = ACTIONS(1163), + [anon_sym_BANG] = ACTIONS(1347), + [anon_sym_TILDE] = ACTIONS(1347), + [anon_sym_PLUS_PLUS] = ACTIONS(1347), + [anon_sym_DASH_DASH] = ACTIONS(1347), + [anon_sym_true] = ACTIONS(1169), + [anon_sym_false] = ACTIONS(1169), + [anon_sym_PLUS] = ACTIONS(1345), + [anon_sym_DASH] = ACTIONS(1345), + [anon_sym_STAR] = ACTIONS(1349), + [anon_sym_CARET] = ACTIONS(1347), + [anon_sym_AMP] = ACTIONS(1347), + [anon_sym_this] = ACTIONS(1173), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), + [anon_sym_base] = ACTIONS(1175), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1067), + [sym_predefined_type] = ACTIONS(1177), + [anon_sym_unchecked] = ACTIONS(1163), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1233), + [anon_sym_default] = ACTIONS(1179), + [anon_sym_throw] = ACTIONS(1351), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1235), - [anon_sym_DOT_DOT] = ACTIONS(1237), + [anon_sym_await] = ACTIONS(1353), + [anon_sym_DOT_DOT] = ACTIONS(1355), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -203307,19 +203362,19 @@ static const uint16_t ts_parse_table[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(1089), + [anon_sym_stackalloc] = ACTIONS(1187), + [anon_sym_sizeof] = ACTIONS(1189), + [anon_sym_typeof] = ACTIONS(1191), + [anon_sym___makeref] = ACTIONS(1193), + [anon_sym___reftype] = ACTIONS(1195), + [anon_sym___refvalue] = ACTIONS(1197), + [sym_null_literal] = ACTIONS(1199), + [anon_sym_SQUOTE] = ACTIONS(1201), + [sym_integer_literal] = ACTIONS(1199), + [sym_real_literal] = ACTIONS(1203), + [anon_sym_DQUOTE] = ACTIONS(1205), + [sym_verbatim_string_literal] = ACTIONS(1203), + [aux_sym_preproc_if_token1] = ACTIONS(1207), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -203330,140 +203385,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(1209), + [sym_interpolation_verbatim_start] = ACTIONS(1211), + [sym_interpolation_raw_start] = ACTIONS(1213), + [sym_raw_string_start] = ACTIONS(1215), }, - [956] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(5634), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2204), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(3521), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3664), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3080), - [sym_postfix_unary_expression] = STATE(3111), - [sym_prefix_unary_expression] = STATE(3111), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6161), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3080), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3111), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3080), - [sym_member_access_expression] = STATE(2484), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3111), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7773), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(3080), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3080), - [sym_typeof_expression] = STATE(3080), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2484), - [sym_literal] = STATE(3080), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), - [sym_preproc_region] = STATE(956), - [sym_preproc_endregion] = STATE(956), - [sym_preproc_line] = STATE(956), - [sym_preproc_pragma] = STATE(956), - [sym_preproc_nullable] = STATE(956), - [sym_preproc_error] = STATE(956), - [sym_preproc_warning] = STATE(956), - [sym_preproc_define] = STATE(956), - [sym_preproc_undef] = STATE(956), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [957] = { + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2603), + [sym__name] = STATE(5894), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2193), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(4179), + [sym_non_lvalue_expression] = STATE(3220), + [sym_lvalue_expression] = STATE(3126), + [sym__expression_statement_expression] = STATE(3236), + [sym_assignment_expression] = STATE(3221), + [sym_binary_expression] = STATE(3236), + [sym_postfix_unary_expression] = STATE(3221), + [sym_prefix_unary_expression] = STATE(3221), + [sym__pointer_indirection_expression] = STATE(2602), + [sym_query_expression] = STATE(3236), + [sym_from_clause] = STATE(6165), + [sym_conditional_expression] = STATE(3236), + [sym_conditional_access_expression] = STATE(3236), + [sym_as_expression] = STATE(3236), + [sym_is_expression] = STATE(3236), + [sym_is_pattern_expression] = STATE(3236), + [sym_cast_expression] = STATE(3236), + [sym_checked_expression] = STATE(3236), + [sym_invocation_expression] = STATE(3221), + [sym_switch_expression] = STATE(3236), + [sym_await_expression] = STATE(3221), + [sym_throw_expression] = STATE(3236), + [sym_element_access_expression] = STATE(2602), + [sym_interpolated_string_expression] = STATE(3236), + [sym_member_access_expression] = STATE(2602), + [sym_object_creation_expression] = STATE(3221), + [sym_parenthesized_expression] = STATE(3221), + [sym__parenthesized_lvalue_expression] = STATE(2602), + [sym_lambda_expression] = STATE(3236), + [sym__lambda_expression_init] = STATE(7487), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3236), + [sym_anonymous_method_expression] = STATE(3236), + [sym_anonymous_object_creation_expression] = STATE(3236), + [sym_implicit_array_creation_expression] = STATE(3236), + [sym_implicit_object_creation_expression] = STATE(3236), + [sym_implicit_stackalloc_expression] = STATE(3236), + [sym_initializer_expression] = STATE(3236), + [sym_default_expression] = STATE(3236), + [sym_with_expression] = STATE(3236), + [sym_sizeof_expression] = STATE(3236), + [sym_typeof_expression] = STATE(3236), + [sym_makeref_expression] = STATE(3236), + [sym_ref_expression] = STATE(3236), + [sym_reftype_expression] = STATE(3236), + [sym_refvalue_expression] = STATE(3236), + [sym_stackalloc_expression] = STATE(3236), + [sym_range_expression] = STATE(3236), + [sym_tuple_expression] = STATE(2602), + [sym_literal] = STATE(3236), + [sym_character_literal] = STATE(3272), + [sym_string_literal] = STATE(3272), + [sym_raw_string_literal] = STATE(3272), + [sym_boolean_literal] = STATE(3272), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3236), + [sym_preproc_if_in_attribute_list] = STATE(5583), + [sym_preproc_region] = STATE(957), + [sym_preproc_endregion] = STATE(957), + [sym_preproc_line] = STATE(957), + [sym_preproc_pragma] = STATE(957), + [sym_preproc_nullable] = STATE(957), + [sym_preproc_error] = STATE(957), + [sym_preproc_warning] = STATE(957), + [sym_preproc_define] = STATE(957), + [sym_preproc_undef] = STATE(957), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3379), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1481), - [anon_sym_LPAREN] = ACTIONS(2015), - [anon_sym_ref] = ACTIONS(2017), - [anon_sym_LBRACE] = ACTIONS(1487), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1149), + [anon_sym_LPAREN] = ACTIONS(1341), + [anon_sym_ref] = ACTIONS(1343), + [anon_sym_LBRACE] = ACTIONS(1155), + [anon_sym_delegate] = ACTIONS(1157), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1101), + [anon_sym_new] = ACTIONS(1159), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1067), - [anon_sym_BANG] = ACTIONS(2021), - [anon_sym_TILDE] = ACTIONS(2021), - [anon_sym_PLUS_PLUS] = ACTIONS(2021), - [anon_sym_DASH_DASH] = ACTIONS(2021), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(2019), - [anon_sym_DASH] = ACTIONS(2019), - [anon_sym_STAR] = ACTIONS(1229), - [anon_sym_CARET] = ACTIONS(2021), - [anon_sym_AMP] = ACTIONS(2021), - [anon_sym_this] = ACTIONS(83), + [anon_sym_checked] = ACTIONS(1163), + [anon_sym_BANG] = ACTIONS(1347), + [anon_sym_TILDE] = ACTIONS(1347), + [anon_sym_PLUS_PLUS] = ACTIONS(1347), + [anon_sym_DASH_DASH] = ACTIONS(1347), + [anon_sym_true] = ACTIONS(1169), + [anon_sym_false] = ACTIONS(1169), + [anon_sym_PLUS] = ACTIONS(1345), + [anon_sym_DASH] = ACTIONS(1345), + [anon_sym_STAR] = ACTIONS(1349), + [anon_sym_CARET] = ACTIONS(1347), + [anon_sym_AMP] = ACTIONS(1347), + [anon_sym_this] = ACTIONS(1173), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), + [anon_sym_base] = ACTIONS(1175), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1067), + [sym_predefined_type] = ACTIONS(1177), + [anon_sym_unchecked] = ACTIONS(1163), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1233), + [anon_sym_default] = ACTIONS(1179), + [anon_sym_throw] = ACTIONS(1351), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1235), - [anon_sym_DOT_DOT] = ACTIONS(1237), + [anon_sym_await] = ACTIONS(1353), + [anon_sym_DOT_DOT] = ACTIONS(1355), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -203476,19 +203531,19 @@ static const uint16_t ts_parse_table[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(1089), + [anon_sym_stackalloc] = ACTIONS(1187), + [anon_sym_sizeof] = ACTIONS(1189), + [anon_sym_typeof] = ACTIONS(1191), + [anon_sym___makeref] = ACTIONS(1193), + [anon_sym___reftype] = ACTIONS(1195), + [anon_sym___refvalue] = ACTIONS(1197), + [sym_null_literal] = ACTIONS(1199), + [anon_sym_SQUOTE] = ACTIONS(1201), + [sym_integer_literal] = ACTIONS(1199), + [sym_real_literal] = ACTIONS(1203), + [anon_sym_DQUOTE] = ACTIONS(1205), + [sym_verbatim_string_literal] = ACTIONS(1203), + [aux_sym_preproc_if_token1] = ACTIONS(1207), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -203499,259 +203554,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(151), - [sym_interpolation_verbatim_start] = ACTIONS(153), - [sym_interpolation_raw_start] = ACTIONS(155), - [sym_raw_string_start] = ACTIONS(157), - }, - [957] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(3184), - [sym__name] = STATE(5906), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2312), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2269), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(4674), - [sym_non_lvalue_expression] = STATE(4541), - [sym_lvalue_expression] = STATE(3439), - [sym__expression_statement_expression] = STATE(4529), - [sym_assignment_expression] = STATE(4543), - [sym_binary_expression] = STATE(4529), - [sym_postfix_unary_expression] = STATE(4543), - [sym_prefix_unary_expression] = STATE(4543), - [sym__pointer_indirection_expression] = STATE(3175), - [sym_query_expression] = STATE(4529), - [sym_from_clause] = STATE(6169), - [sym_conditional_expression] = STATE(4529), - [sym_conditional_access_expression] = STATE(4529), - [sym_as_expression] = STATE(4529), - [sym_is_expression] = STATE(4529), - [sym_is_pattern_expression] = STATE(4529), - [sym_cast_expression] = STATE(4529), - [sym_checked_expression] = STATE(4529), - [sym_invocation_expression] = STATE(4543), - [sym_switch_expression] = STATE(4529), - [sym_await_expression] = STATE(4543), - [sym_throw_expression] = STATE(4529), - [sym_element_access_expression] = STATE(3175), - [sym_interpolated_string_expression] = STATE(4529), - [sym_member_access_expression] = STATE(3175), - [sym_object_creation_expression] = STATE(4543), - [sym_parenthesized_expression] = STATE(4543), - [sym__parenthesized_lvalue_expression] = STATE(3175), - [sym_lambda_expression] = STATE(4529), - [sym__lambda_expression_init] = STATE(7684), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(4529), - [sym_anonymous_method_expression] = STATE(4529), - [sym_anonymous_object_creation_expression] = STATE(4529), - [sym_implicit_array_creation_expression] = STATE(4529), - [sym_implicit_object_creation_expression] = STATE(4529), - [sym_implicit_stackalloc_expression] = STATE(4529), - [sym_initializer_expression] = STATE(4529), - [sym_default_expression] = STATE(4529), - [sym_with_expression] = STATE(4529), - [sym_sizeof_expression] = STATE(4529), - [sym_typeof_expression] = STATE(4529), - [sym_makeref_expression] = STATE(4529), - [sym_ref_expression] = STATE(4529), - [sym_reftype_expression] = STATE(4529), - [sym_refvalue_expression] = STATE(4529), - [sym_stackalloc_expression] = STATE(4529), - [sym_range_expression] = STATE(4529), - [sym_tuple_expression] = STATE(3175), - [sym_literal] = STATE(4529), - [sym_character_literal] = STATE(4536), - [sym_string_literal] = STATE(4536), - [sym_raw_string_literal] = STATE(4536), - [sym_boolean_literal] = STATE(4536), - [sym_identifier] = STATE(2246), - [sym__reserved_identifier] = STATE(2240), - [sym_preproc_if_in_expression] = STATE(4529), - [sym_preproc_if_in_attribute_list] = STATE(5576), - [sym_preproc_region] = STATE(957), - [sym_preproc_endregion] = STATE(957), - [sym_preproc_line] = STATE(957), - [sym_preproc_pragma] = STATE(957), - [sym_preproc_nullable] = STATE(957), - [sym_preproc_error] = STATE(957), - [sym_preproc_warning] = STATE(957), - [sym_preproc_define] = STATE(957), - [sym_preproc_undef] = STATE(957), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3363), - [sym__identifier_token] = ACTIONS(1387), - [anon_sym_alias] = ACTIONS(1389), - [anon_sym_global] = ACTIONS(1389), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1391), - [anon_sym_LPAREN] = ACTIONS(1775), - [anon_sym_ref] = ACTIONS(1777), - [anon_sym_LBRACE] = ACTIONS(1397), - [anon_sym_delegate] = ACTIONS(1399), - [anon_sym_async] = ACTIONS(1047), - [anon_sym_file] = ACTIONS(1389), - [anon_sym_new] = ACTIONS(1401), - [anon_sym_where] = ACTIONS(1389), - [anon_sym_notnull] = ACTIONS(1389), - [anon_sym_unmanaged] = ACTIONS(1389), - [anon_sym_checked] = ACTIONS(1403), - [anon_sym_BANG] = ACTIONS(1781), - [anon_sym_TILDE] = ACTIONS(1781), - [anon_sym_PLUS_PLUS] = ACTIONS(1781), - [anon_sym_DASH_DASH] = ACTIONS(1781), - [anon_sym_true] = ACTIONS(1409), - [anon_sym_false] = ACTIONS(1409), - [anon_sym_PLUS] = ACTIONS(1779), - [anon_sym_DASH] = ACTIONS(1779), - [anon_sym_STAR] = ACTIONS(1411), - [anon_sym_CARET] = ACTIONS(1781), - [anon_sym_AMP] = ACTIONS(1781), - [anon_sym_this] = ACTIONS(1413), - [anon_sym_scoped] = ACTIONS(1415), - [anon_sym_base] = ACTIONS(1417), - [anon_sym_var] = ACTIONS(1419), - [sym_predefined_type] = ACTIONS(1421), - [anon_sym_unchecked] = ACTIONS(1403), - [anon_sym_yield] = ACTIONS(1389), - [anon_sym_default] = ACTIONS(1423), - [anon_sym_throw] = ACTIONS(1783), - [anon_sym_when] = ACTIONS(1389), - [anon_sym_await] = ACTIONS(1785), - [anon_sym_DOT_DOT] = ACTIONS(1787), - [anon_sym_from] = ACTIONS(1431), - [anon_sym_into] = ACTIONS(1389), - [anon_sym_join] = ACTIONS(1389), - [anon_sym_on] = ACTIONS(1389), - [anon_sym_equals] = ACTIONS(1389), - [anon_sym_let] = ACTIONS(1389), - [anon_sym_orderby] = ACTIONS(1389), - [anon_sym_ascending] = ACTIONS(1389), - [anon_sym_descending] = ACTIONS(1389), - [anon_sym_group] = ACTIONS(1389), - [anon_sym_by] = ACTIONS(1389), - [anon_sym_select] = ACTIONS(1389), - [anon_sym_stackalloc] = ACTIONS(1433), - [anon_sym_sizeof] = ACTIONS(1435), - [anon_sym_typeof] = ACTIONS(1437), - [anon_sym___makeref] = ACTIONS(1439), - [anon_sym___reftype] = ACTIONS(1441), - [anon_sym___refvalue] = ACTIONS(1443), - [sym_null_literal] = ACTIONS(1445), - [anon_sym_SQUOTE] = ACTIONS(1447), - [sym_integer_literal] = ACTIONS(1445), - [sym_real_literal] = ACTIONS(1449), - [anon_sym_DQUOTE] = ACTIONS(1451), - [sym_verbatim_string_literal] = ACTIONS(1449), - [aux_sym_preproc_if_token1] = ACTIONS(1453), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1455), - [sym_interpolation_verbatim_start] = ACTIONS(1457), - [sym_interpolation_raw_start] = ACTIONS(1459), - [sym_raw_string_start] = ACTIONS(1461), + [sym_interpolation_regular_start] = ACTIONS(1209), + [sym_interpolation_verbatim_start] = ACTIONS(1211), + [sym_interpolation_raw_start] = ACTIONS(1213), + [sym_raw_string_start] = ACTIONS(1215), }, [958] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(5910), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2247), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(5276), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3379), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3080), - [sym_postfix_unary_expression] = STATE(3111), - [sym_prefix_unary_expression] = STATE(3111), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6154), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3080), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3111), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3080), - [sym_member_access_expression] = STATE(2484), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3111), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7575), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(3080), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3080), - [sym_typeof_expression] = STATE(3080), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2484), - [sym_literal] = STATE(3080), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2603), + [sym__name] = STATE(5894), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2193), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(4170), + [sym_non_lvalue_expression] = STATE(3220), + [sym_lvalue_expression] = STATE(3126), + [sym__expression_statement_expression] = STATE(3236), + [sym_assignment_expression] = STATE(3221), + [sym_binary_expression] = STATE(3236), + [sym_postfix_unary_expression] = STATE(3221), + [sym_prefix_unary_expression] = STATE(3221), + [sym__pointer_indirection_expression] = STATE(2602), + [sym_query_expression] = STATE(3236), + [sym_from_clause] = STATE(6165), + [sym_conditional_expression] = STATE(3236), + [sym_conditional_access_expression] = STATE(3236), + [sym_as_expression] = STATE(3236), + [sym_is_expression] = STATE(3236), + [sym_is_pattern_expression] = STATE(3236), + [sym_cast_expression] = STATE(3236), + [sym_checked_expression] = STATE(3236), + [sym_invocation_expression] = STATE(3221), + [sym_switch_expression] = STATE(3236), + [sym_await_expression] = STATE(3221), + [sym_throw_expression] = STATE(3236), + [sym_element_access_expression] = STATE(2602), + [sym_interpolated_string_expression] = STATE(3236), + [sym_member_access_expression] = STATE(2602), + [sym_object_creation_expression] = STATE(3221), + [sym_parenthesized_expression] = STATE(3221), + [sym__parenthesized_lvalue_expression] = STATE(2602), + [sym_lambda_expression] = STATE(3236), + [sym__lambda_expression_init] = STATE(7487), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3236), + [sym_anonymous_method_expression] = STATE(3236), + [sym_anonymous_object_creation_expression] = STATE(3236), + [sym_implicit_array_creation_expression] = STATE(3236), + [sym_implicit_object_creation_expression] = STATE(3236), + [sym_implicit_stackalloc_expression] = STATE(3236), + [sym_initializer_expression] = STATE(3236), + [sym_default_expression] = STATE(3236), + [sym_with_expression] = STATE(3236), + [sym_sizeof_expression] = STATE(3236), + [sym_typeof_expression] = STATE(3236), + [sym_makeref_expression] = STATE(3236), + [sym_ref_expression] = STATE(3236), + [sym_reftype_expression] = STATE(3236), + [sym_refvalue_expression] = STATE(3236), + [sym_stackalloc_expression] = STATE(3236), + [sym_range_expression] = STATE(3236), + [sym_tuple_expression] = STATE(2602), + [sym_literal] = STATE(3236), + [sym_character_literal] = STATE(3272), + [sym_string_literal] = STATE(3272), + [sym_raw_string_literal] = STATE(3272), + [sym_boolean_literal] = STATE(3272), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3236), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(958), [sym_preproc_endregion] = STATE(958), [sym_preproc_line] = STATE(958), @@ -203761,47 +203647,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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3379), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1481), - [anon_sym_LPAREN] = ACTIONS(895), - [anon_sym_ref] = ACTIONS(897), - [anon_sym_LBRACE] = ACTIONS(1487), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1149), + [anon_sym_LPAREN] = ACTIONS(1341), + [anon_sym_ref] = ACTIONS(1343), + [anon_sym_LBRACE] = ACTIONS(1155), + [anon_sym_delegate] = ACTIONS(1157), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1061), + [anon_sym_new] = ACTIONS(1159), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1067), - [anon_sym_BANG] = ACTIONS(1495), - [anon_sym_TILDE] = ACTIONS(1495), - [anon_sym_PLUS_PLUS] = ACTIONS(1495), - [anon_sym_DASH_DASH] = ACTIONS(1495), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1493), - [anon_sym_DASH] = ACTIONS(1493), - [anon_sym_STAR] = ACTIONS(905), - [anon_sym_CARET] = ACTIONS(1495), - [anon_sym_AMP] = ACTIONS(1495), - [anon_sym_this] = ACTIONS(83), + [anon_sym_checked] = ACTIONS(1163), + [anon_sym_BANG] = ACTIONS(1347), + [anon_sym_TILDE] = ACTIONS(1347), + [anon_sym_PLUS_PLUS] = ACTIONS(1347), + [anon_sym_DASH_DASH] = ACTIONS(1347), + [anon_sym_true] = ACTIONS(1169), + [anon_sym_false] = ACTIONS(1169), + [anon_sym_PLUS] = ACTIONS(1345), + [anon_sym_DASH] = ACTIONS(1345), + [anon_sym_STAR] = ACTIONS(1349), + [anon_sym_CARET] = ACTIONS(1347), + [anon_sym_AMP] = ACTIONS(1347), + [anon_sym_this] = ACTIONS(1173), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), + [anon_sym_base] = ACTIONS(1175), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1067), + [sym_predefined_type] = ACTIONS(1177), + [anon_sym_unchecked] = ACTIONS(1163), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1079), + [anon_sym_default] = ACTIONS(1179), + [anon_sym_throw] = ACTIONS(1351), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1081), - [anon_sym_DOT_DOT] = ACTIONS(911), + [anon_sym_await] = ACTIONS(1353), + [anon_sym_DOT_DOT] = ACTIONS(1355), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -203814,19 +203700,19 @@ static const uint16_t ts_parse_table[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(1089), + [anon_sym_stackalloc] = ACTIONS(1187), + [anon_sym_sizeof] = ACTIONS(1189), + [anon_sym_typeof] = ACTIONS(1191), + [anon_sym___makeref] = ACTIONS(1193), + [anon_sym___reftype] = ACTIONS(1195), + [anon_sym___refvalue] = ACTIONS(1197), + [sym_null_literal] = ACTIONS(1199), + [anon_sym_SQUOTE] = ACTIONS(1201), + [sym_integer_literal] = ACTIONS(1199), + [sym_real_literal] = ACTIONS(1203), + [anon_sym_DQUOTE] = ACTIONS(1205), + [sym_verbatim_string_literal] = ACTIONS(1203), + [aux_sym_preproc_if_token1] = ACTIONS(1207), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -203837,90 +203723,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(151), - [sym_interpolation_verbatim_start] = ACTIONS(153), - [sym_interpolation_raw_start] = ACTIONS(155), - [sym_raw_string_start] = ACTIONS(157), + [sym_interpolation_regular_start] = ACTIONS(1209), + [sym_interpolation_verbatim_start] = ACTIONS(1211), + [sym_interpolation_raw_start] = ACTIONS(1213), + [sym_raw_string_start] = ACTIONS(1215), }, [959] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(5910), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2247), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(5475), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3379), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3080), - [sym_postfix_unary_expression] = STATE(3111), - [sym_prefix_unary_expression] = STATE(3111), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6154), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3080), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3111), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3080), - [sym_member_access_expression] = STATE(2484), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3111), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7575), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(3080), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3080), - [sym_typeof_expression] = STATE(3080), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2484), - [sym_literal] = STATE(3080), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2603), + [sym__name] = STATE(5894), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2193), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(4184), + [sym_non_lvalue_expression] = STATE(3220), + [sym_lvalue_expression] = STATE(3126), + [sym__expression_statement_expression] = STATE(3236), + [sym_assignment_expression] = STATE(3221), + [sym_binary_expression] = STATE(3236), + [sym_postfix_unary_expression] = STATE(3221), + [sym_prefix_unary_expression] = STATE(3221), + [sym__pointer_indirection_expression] = STATE(2602), + [sym_query_expression] = STATE(3236), + [sym_from_clause] = STATE(6165), + [sym_conditional_expression] = STATE(3236), + [sym_conditional_access_expression] = STATE(3236), + [sym_as_expression] = STATE(3236), + [sym_is_expression] = STATE(3236), + [sym_is_pattern_expression] = STATE(3236), + [sym_cast_expression] = STATE(3236), + [sym_checked_expression] = STATE(3236), + [sym_invocation_expression] = STATE(3221), + [sym_switch_expression] = STATE(3236), + [sym_await_expression] = STATE(3221), + [sym_throw_expression] = STATE(3236), + [sym_element_access_expression] = STATE(2602), + [sym_interpolated_string_expression] = STATE(3236), + [sym_member_access_expression] = STATE(2602), + [sym_object_creation_expression] = STATE(3221), + [sym_parenthesized_expression] = STATE(3221), + [sym__parenthesized_lvalue_expression] = STATE(2602), + [sym_lambda_expression] = STATE(3236), + [sym__lambda_expression_init] = STATE(7487), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3236), + [sym_anonymous_method_expression] = STATE(3236), + [sym_anonymous_object_creation_expression] = STATE(3236), + [sym_implicit_array_creation_expression] = STATE(3236), + [sym_implicit_object_creation_expression] = STATE(3236), + [sym_implicit_stackalloc_expression] = STATE(3236), + [sym_initializer_expression] = STATE(3236), + [sym_default_expression] = STATE(3236), + [sym_with_expression] = STATE(3236), + [sym_sizeof_expression] = STATE(3236), + [sym_typeof_expression] = STATE(3236), + [sym_makeref_expression] = STATE(3236), + [sym_ref_expression] = STATE(3236), + [sym_reftype_expression] = STATE(3236), + [sym_refvalue_expression] = STATE(3236), + [sym_stackalloc_expression] = STATE(3236), + [sym_range_expression] = STATE(3236), + [sym_tuple_expression] = STATE(2602), + [sym_literal] = STATE(3236), + [sym_character_literal] = STATE(3272), + [sym_string_literal] = STATE(3272), + [sym_raw_string_literal] = STATE(3272), + [sym_boolean_literal] = STATE(3272), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3236), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(959), [sym_preproc_endregion] = STATE(959), [sym_preproc_line] = STATE(959), @@ -203930,47 +203816,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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3379), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1481), - [anon_sym_LPAREN] = ACTIONS(895), - [anon_sym_ref] = ACTIONS(897), - [anon_sym_LBRACE] = ACTIONS(1487), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1149), + [anon_sym_LPAREN] = ACTIONS(1341), + [anon_sym_ref] = ACTIONS(1343), + [anon_sym_LBRACE] = ACTIONS(1155), + [anon_sym_delegate] = ACTIONS(1157), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1061), + [anon_sym_new] = ACTIONS(1159), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1067), - [anon_sym_BANG] = ACTIONS(1495), - [anon_sym_TILDE] = ACTIONS(1495), - [anon_sym_PLUS_PLUS] = ACTIONS(1495), - [anon_sym_DASH_DASH] = ACTIONS(1495), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1493), - [anon_sym_DASH] = ACTIONS(1493), - [anon_sym_STAR] = ACTIONS(905), - [anon_sym_CARET] = ACTIONS(1495), - [anon_sym_AMP] = ACTIONS(1495), - [anon_sym_this] = ACTIONS(83), + [anon_sym_checked] = ACTIONS(1163), + [anon_sym_BANG] = ACTIONS(1347), + [anon_sym_TILDE] = ACTIONS(1347), + [anon_sym_PLUS_PLUS] = ACTIONS(1347), + [anon_sym_DASH_DASH] = ACTIONS(1347), + [anon_sym_true] = ACTIONS(1169), + [anon_sym_false] = ACTIONS(1169), + [anon_sym_PLUS] = ACTIONS(1345), + [anon_sym_DASH] = ACTIONS(1345), + [anon_sym_STAR] = ACTIONS(1349), + [anon_sym_CARET] = ACTIONS(1347), + [anon_sym_AMP] = ACTIONS(1347), + [anon_sym_this] = ACTIONS(1173), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), + [anon_sym_base] = ACTIONS(1175), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1067), + [sym_predefined_type] = ACTIONS(1177), + [anon_sym_unchecked] = ACTIONS(1163), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1079), + [anon_sym_default] = ACTIONS(1179), + [anon_sym_throw] = ACTIONS(1351), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1081), - [anon_sym_DOT_DOT] = ACTIONS(911), + [anon_sym_await] = ACTIONS(1353), + [anon_sym_DOT_DOT] = ACTIONS(1355), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -203983,19 +203869,19 @@ static const uint16_t ts_parse_table[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(1089), + [anon_sym_stackalloc] = ACTIONS(1187), + [anon_sym_sizeof] = ACTIONS(1189), + [anon_sym_typeof] = ACTIONS(1191), + [anon_sym___makeref] = ACTIONS(1193), + [anon_sym___reftype] = ACTIONS(1195), + [anon_sym___refvalue] = ACTIONS(1197), + [sym_null_literal] = ACTIONS(1199), + [anon_sym_SQUOTE] = ACTIONS(1201), + [sym_integer_literal] = ACTIONS(1199), + [sym_real_literal] = ACTIONS(1203), + [anon_sym_DQUOTE] = ACTIONS(1205), + [sym_verbatim_string_literal] = ACTIONS(1203), + [aux_sym_preproc_if_token1] = ACTIONS(1207), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -204006,90 +203892,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(151), - [sym_interpolation_verbatim_start] = ACTIONS(153), - [sym_interpolation_raw_start] = ACTIONS(155), - [sym_raw_string_start] = ACTIONS(157), + [sym_interpolation_regular_start] = ACTIONS(1209), + [sym_interpolation_verbatim_start] = ACTIONS(1211), + [sym_interpolation_raw_start] = ACTIONS(1213), + [sym_raw_string_start] = ACTIONS(1215), }, [960] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(5634), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2204), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(5341), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3664), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3080), - [sym_postfix_unary_expression] = STATE(3111), - [sym_prefix_unary_expression] = STATE(3111), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6161), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3080), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3111), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3080), - [sym_member_access_expression] = STATE(2484), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3111), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7773), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(3080), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3080), - [sym_typeof_expression] = STATE(3080), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2484), - [sym_literal] = STATE(3080), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2603), + [sym__name] = STATE(5894), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2193), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(4204), + [sym_non_lvalue_expression] = STATE(3220), + [sym_lvalue_expression] = STATE(3126), + [sym__expression_statement_expression] = STATE(3236), + [sym_assignment_expression] = STATE(3221), + [sym_binary_expression] = STATE(3236), + [sym_postfix_unary_expression] = STATE(3221), + [sym_prefix_unary_expression] = STATE(3221), + [sym__pointer_indirection_expression] = STATE(2602), + [sym_query_expression] = STATE(3236), + [sym_from_clause] = STATE(6165), + [sym_conditional_expression] = STATE(3236), + [sym_conditional_access_expression] = STATE(3236), + [sym_as_expression] = STATE(3236), + [sym_is_expression] = STATE(3236), + [sym_is_pattern_expression] = STATE(3236), + [sym_cast_expression] = STATE(3236), + [sym_checked_expression] = STATE(3236), + [sym_invocation_expression] = STATE(3221), + [sym_switch_expression] = STATE(3236), + [sym_await_expression] = STATE(3221), + [sym_throw_expression] = STATE(3236), + [sym_element_access_expression] = STATE(2602), + [sym_interpolated_string_expression] = STATE(3236), + [sym_member_access_expression] = STATE(2602), + [sym_object_creation_expression] = STATE(3221), + [sym_parenthesized_expression] = STATE(3221), + [sym__parenthesized_lvalue_expression] = STATE(2602), + [sym_lambda_expression] = STATE(3236), + [sym__lambda_expression_init] = STATE(7487), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3236), + [sym_anonymous_method_expression] = STATE(3236), + [sym_anonymous_object_creation_expression] = STATE(3236), + [sym_implicit_array_creation_expression] = STATE(3236), + [sym_implicit_object_creation_expression] = STATE(3236), + [sym_implicit_stackalloc_expression] = STATE(3236), + [sym_initializer_expression] = STATE(3236), + [sym_default_expression] = STATE(3236), + [sym_with_expression] = STATE(3236), + [sym_sizeof_expression] = STATE(3236), + [sym_typeof_expression] = STATE(3236), + [sym_makeref_expression] = STATE(3236), + [sym_ref_expression] = STATE(3236), + [sym_reftype_expression] = STATE(3236), + [sym_refvalue_expression] = STATE(3236), + [sym_stackalloc_expression] = STATE(3236), + [sym_range_expression] = STATE(3236), + [sym_tuple_expression] = STATE(2602), + [sym_literal] = STATE(3236), + [sym_character_literal] = STATE(3272), + [sym_string_literal] = STATE(3272), + [sym_raw_string_literal] = STATE(3272), + [sym_boolean_literal] = STATE(3272), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3236), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(960), [sym_preproc_endregion] = STATE(960), [sym_preproc_line] = STATE(960), @@ -204099,47 +203985,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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3379), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1481), - [anon_sym_LPAREN] = ACTIONS(2015), - [anon_sym_ref] = ACTIONS(2017), - [anon_sym_LBRACE] = ACTIONS(1487), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1149), + [anon_sym_LPAREN] = ACTIONS(1341), + [anon_sym_ref] = ACTIONS(1343), + [anon_sym_LBRACE] = ACTIONS(1155), + [anon_sym_delegate] = ACTIONS(1157), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1101), + [anon_sym_new] = ACTIONS(1159), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1067), - [anon_sym_BANG] = ACTIONS(2021), - [anon_sym_TILDE] = ACTIONS(2021), - [anon_sym_PLUS_PLUS] = ACTIONS(2021), - [anon_sym_DASH_DASH] = ACTIONS(2021), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(2019), - [anon_sym_DASH] = ACTIONS(2019), - [anon_sym_STAR] = ACTIONS(1229), - [anon_sym_CARET] = ACTIONS(2021), - [anon_sym_AMP] = ACTIONS(2021), - [anon_sym_this] = ACTIONS(83), + [anon_sym_checked] = ACTIONS(1163), + [anon_sym_BANG] = ACTIONS(1347), + [anon_sym_TILDE] = ACTIONS(1347), + [anon_sym_PLUS_PLUS] = ACTIONS(1347), + [anon_sym_DASH_DASH] = ACTIONS(1347), + [anon_sym_true] = ACTIONS(1169), + [anon_sym_false] = ACTIONS(1169), + [anon_sym_PLUS] = ACTIONS(1345), + [anon_sym_DASH] = ACTIONS(1345), + [anon_sym_STAR] = ACTIONS(1349), + [anon_sym_CARET] = ACTIONS(1347), + [anon_sym_AMP] = ACTIONS(1347), + [anon_sym_this] = ACTIONS(1173), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), + [anon_sym_base] = ACTIONS(1175), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1067), + [sym_predefined_type] = ACTIONS(1177), + [anon_sym_unchecked] = ACTIONS(1163), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1233), + [anon_sym_default] = ACTIONS(1179), + [anon_sym_throw] = ACTIONS(1351), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1235), - [anon_sym_DOT_DOT] = ACTIONS(1237), + [anon_sym_await] = ACTIONS(1353), + [anon_sym_DOT_DOT] = ACTIONS(1355), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -204152,19 +204038,19 @@ static const uint16_t ts_parse_table[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(1089), + [anon_sym_stackalloc] = ACTIONS(1187), + [anon_sym_sizeof] = ACTIONS(1189), + [anon_sym_typeof] = ACTIONS(1191), + [anon_sym___makeref] = ACTIONS(1193), + [anon_sym___reftype] = ACTIONS(1195), + [anon_sym___refvalue] = ACTIONS(1197), + [sym_null_literal] = ACTIONS(1199), + [anon_sym_SQUOTE] = ACTIONS(1201), + [sym_integer_literal] = ACTIONS(1199), + [sym_real_literal] = ACTIONS(1203), + [anon_sym_DQUOTE] = ACTIONS(1205), + [sym_verbatim_string_literal] = ACTIONS(1203), + [aux_sym_preproc_if_token1] = ACTIONS(1207), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -204175,90 +204061,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(151), - [sym_interpolation_verbatim_start] = ACTIONS(153), - [sym_interpolation_raw_start] = ACTIONS(155), - [sym_raw_string_start] = ACTIONS(157), + [sym_interpolation_regular_start] = ACTIONS(1209), + [sym_interpolation_verbatim_start] = ACTIONS(1211), + [sym_interpolation_raw_start] = ACTIONS(1213), + [sym_raw_string_start] = ACTIONS(1215), }, [961] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(3184), - [sym__name] = STATE(5906), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2312), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2269), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(4497), - [sym_non_lvalue_expression] = STATE(4541), - [sym_lvalue_expression] = STATE(3439), - [sym__expression_statement_expression] = STATE(4529), - [sym_assignment_expression] = STATE(4543), - [sym_binary_expression] = STATE(4529), - [sym_postfix_unary_expression] = STATE(4543), - [sym_prefix_unary_expression] = STATE(4543), - [sym__pointer_indirection_expression] = STATE(3175), - [sym_query_expression] = STATE(4529), - [sym_from_clause] = STATE(6169), - [sym_conditional_expression] = STATE(4529), - [sym_conditional_access_expression] = STATE(4529), - [sym_as_expression] = STATE(4529), - [sym_is_expression] = STATE(4529), - [sym_is_pattern_expression] = STATE(4529), - [sym_cast_expression] = STATE(4529), - [sym_checked_expression] = STATE(4529), - [sym_invocation_expression] = STATE(4543), - [sym_switch_expression] = STATE(4529), - [sym_await_expression] = STATE(4543), - [sym_throw_expression] = STATE(4529), - [sym_element_access_expression] = STATE(3175), - [sym_interpolated_string_expression] = STATE(4529), - [sym_member_access_expression] = STATE(3175), - [sym_object_creation_expression] = STATE(4543), - [sym_parenthesized_expression] = STATE(4543), - [sym__parenthesized_lvalue_expression] = STATE(3175), - [sym_lambda_expression] = STATE(4529), - [sym__lambda_expression_init] = STATE(7684), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(4529), - [sym_anonymous_method_expression] = STATE(4529), - [sym_anonymous_object_creation_expression] = STATE(4529), - [sym_implicit_array_creation_expression] = STATE(4529), - [sym_implicit_object_creation_expression] = STATE(4529), - [sym_implicit_stackalloc_expression] = STATE(4529), - [sym_initializer_expression] = STATE(4529), - [sym_default_expression] = STATE(4529), - [sym_with_expression] = STATE(4529), - [sym_sizeof_expression] = STATE(4529), - [sym_typeof_expression] = STATE(4529), - [sym_makeref_expression] = STATE(4529), - [sym_ref_expression] = STATE(4529), - [sym_reftype_expression] = STATE(4529), - [sym_refvalue_expression] = STATE(4529), - [sym_stackalloc_expression] = STATE(4529), - [sym_range_expression] = STATE(4529), - [sym_tuple_expression] = STATE(3175), - [sym_literal] = STATE(4529), - [sym_character_literal] = STATE(4536), - [sym_string_literal] = STATE(4536), - [sym_raw_string_literal] = STATE(4536), - [sym_boolean_literal] = STATE(4536), - [sym_identifier] = STATE(2246), - [sym__reserved_identifier] = STATE(2240), - [sym_preproc_if_in_expression] = STATE(4529), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2603), + [sym__name] = STATE(5894), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2193), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(4214), + [sym_non_lvalue_expression] = STATE(3220), + [sym_lvalue_expression] = STATE(3126), + [sym__expression_statement_expression] = STATE(3236), + [sym_assignment_expression] = STATE(3221), + [sym_binary_expression] = STATE(3236), + [sym_postfix_unary_expression] = STATE(3221), + [sym_prefix_unary_expression] = STATE(3221), + [sym__pointer_indirection_expression] = STATE(2602), + [sym_query_expression] = STATE(3236), + [sym_from_clause] = STATE(6165), + [sym_conditional_expression] = STATE(3236), + [sym_conditional_access_expression] = STATE(3236), + [sym_as_expression] = STATE(3236), + [sym_is_expression] = STATE(3236), + [sym_is_pattern_expression] = STATE(3236), + [sym_cast_expression] = STATE(3236), + [sym_checked_expression] = STATE(3236), + [sym_invocation_expression] = STATE(3221), + [sym_switch_expression] = STATE(3236), + [sym_await_expression] = STATE(3221), + [sym_throw_expression] = STATE(3236), + [sym_element_access_expression] = STATE(2602), + [sym_interpolated_string_expression] = STATE(3236), + [sym_member_access_expression] = STATE(2602), + [sym_object_creation_expression] = STATE(3221), + [sym_parenthesized_expression] = STATE(3221), + [sym__parenthesized_lvalue_expression] = STATE(2602), + [sym_lambda_expression] = STATE(3236), + [sym__lambda_expression_init] = STATE(7487), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3236), + [sym_anonymous_method_expression] = STATE(3236), + [sym_anonymous_object_creation_expression] = STATE(3236), + [sym_implicit_array_creation_expression] = STATE(3236), + [sym_implicit_object_creation_expression] = STATE(3236), + [sym_implicit_stackalloc_expression] = STATE(3236), + [sym_initializer_expression] = STATE(3236), + [sym_default_expression] = STATE(3236), + [sym_with_expression] = STATE(3236), + [sym_sizeof_expression] = STATE(3236), + [sym_typeof_expression] = STATE(3236), + [sym_makeref_expression] = STATE(3236), + [sym_ref_expression] = STATE(3236), + [sym_reftype_expression] = STATE(3236), + [sym_refvalue_expression] = STATE(3236), + [sym_stackalloc_expression] = STATE(3236), + [sym_range_expression] = STATE(3236), + [sym_tuple_expression] = STATE(2602), + [sym_literal] = STATE(3236), + [sym_character_literal] = STATE(3272), + [sym_string_literal] = STATE(3272), + [sym_raw_string_literal] = STATE(3272), + [sym_boolean_literal] = STATE(3272), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3236), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(961), [sym_preproc_endregion] = STATE(961), [sym_preproc_line] = STATE(961), @@ -204268,216 +204154,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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3363), - [sym__identifier_token] = ACTIONS(1387), - [anon_sym_alias] = ACTIONS(1389), - [anon_sym_global] = ACTIONS(1389), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1391), - [anon_sym_LPAREN] = ACTIONS(1775), - [anon_sym_ref] = ACTIONS(1777), - [anon_sym_LBRACE] = ACTIONS(1397), - [anon_sym_delegate] = ACTIONS(1399), - [anon_sym_async] = ACTIONS(1047), - [anon_sym_file] = ACTIONS(1389), - [anon_sym_new] = ACTIONS(1401), - [anon_sym_where] = ACTIONS(1389), - [anon_sym_notnull] = ACTIONS(1389), - [anon_sym_unmanaged] = ACTIONS(1389), - [anon_sym_checked] = ACTIONS(1403), - [anon_sym_BANG] = ACTIONS(1781), - [anon_sym_TILDE] = ACTIONS(1781), - [anon_sym_PLUS_PLUS] = ACTIONS(1781), - [anon_sym_DASH_DASH] = ACTIONS(1781), - [anon_sym_true] = ACTIONS(1409), - [anon_sym_false] = ACTIONS(1409), - [anon_sym_PLUS] = ACTIONS(1779), - [anon_sym_DASH] = ACTIONS(1779), - [anon_sym_STAR] = ACTIONS(1411), - [anon_sym_CARET] = ACTIONS(1781), - [anon_sym_AMP] = ACTIONS(1781), - [anon_sym_this] = ACTIONS(1413), - [anon_sym_scoped] = ACTIONS(1415), - [anon_sym_base] = ACTIONS(1417), - [anon_sym_var] = ACTIONS(1419), - [sym_predefined_type] = ACTIONS(1421), - [anon_sym_unchecked] = ACTIONS(1403), - [anon_sym_yield] = ACTIONS(1389), - [anon_sym_default] = ACTIONS(1423), - [anon_sym_throw] = ACTIONS(1783), - [anon_sym_when] = ACTIONS(1389), - [anon_sym_await] = ACTIONS(1785), - [anon_sym_DOT_DOT] = ACTIONS(1787), - [anon_sym_from] = ACTIONS(1431), - [anon_sym_into] = ACTIONS(1389), - [anon_sym_join] = ACTIONS(1389), - [anon_sym_on] = ACTIONS(1389), - [anon_sym_equals] = ACTIONS(1389), - [anon_sym_let] = ACTIONS(1389), - [anon_sym_orderby] = ACTIONS(1389), - [anon_sym_ascending] = ACTIONS(1389), - [anon_sym_descending] = ACTIONS(1389), - [anon_sym_group] = ACTIONS(1389), - [anon_sym_by] = ACTIONS(1389), - [anon_sym_select] = ACTIONS(1389), - [anon_sym_stackalloc] = ACTIONS(1433), - [anon_sym_sizeof] = ACTIONS(1435), - [anon_sym_typeof] = ACTIONS(1437), - [anon_sym___makeref] = ACTIONS(1439), - [anon_sym___reftype] = ACTIONS(1441), - [anon_sym___refvalue] = ACTIONS(1443), - [sym_null_literal] = ACTIONS(1445), - [anon_sym_SQUOTE] = ACTIONS(1447), - [sym_integer_literal] = ACTIONS(1445), - [sym_real_literal] = ACTIONS(1449), - [anon_sym_DQUOTE] = ACTIONS(1451), - [sym_verbatim_string_literal] = ACTIONS(1449), - [aux_sym_preproc_if_token1] = ACTIONS(1453), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1455), - [sym_interpolation_verbatim_start] = ACTIONS(1457), - [sym_interpolation_raw_start] = ACTIONS(1459), - [sym_raw_string_start] = ACTIONS(1461), - }, - [962] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(5634), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2204), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(5343), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3664), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3080), - [sym_postfix_unary_expression] = STATE(3111), - [sym_prefix_unary_expression] = STATE(3111), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6161), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3080), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3111), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3080), - [sym_member_access_expression] = STATE(2484), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3111), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7773), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(3080), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3080), - [sym_typeof_expression] = STATE(3080), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2484), - [sym_literal] = STATE(3080), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), - [sym_preproc_region] = STATE(962), - [sym_preproc_endregion] = STATE(962), - [sym_preproc_line] = STATE(962), - [sym_preproc_pragma] = STATE(962), - [sym_preproc_nullable] = STATE(962), - [sym_preproc_error] = STATE(962), - [sym_preproc_warning] = STATE(962), - [sym_preproc_define] = STATE(962), - [sym_preproc_undef] = STATE(962), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3379), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1481), - [anon_sym_LPAREN] = ACTIONS(2015), - [anon_sym_ref] = ACTIONS(2017), - [anon_sym_LBRACE] = ACTIONS(1487), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1149), + [anon_sym_LPAREN] = ACTIONS(1341), + [anon_sym_ref] = ACTIONS(1343), + [anon_sym_LBRACE] = ACTIONS(1155), + [anon_sym_delegate] = ACTIONS(1157), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1101), + [anon_sym_new] = ACTIONS(1159), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1067), - [anon_sym_BANG] = ACTIONS(2021), - [anon_sym_TILDE] = ACTIONS(2021), - [anon_sym_PLUS_PLUS] = ACTIONS(2021), - [anon_sym_DASH_DASH] = ACTIONS(2021), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(2019), - [anon_sym_DASH] = ACTIONS(2019), - [anon_sym_STAR] = ACTIONS(1229), - [anon_sym_CARET] = ACTIONS(2021), - [anon_sym_AMP] = ACTIONS(2021), - [anon_sym_this] = ACTIONS(83), + [anon_sym_checked] = ACTIONS(1163), + [anon_sym_BANG] = ACTIONS(1347), + [anon_sym_TILDE] = ACTIONS(1347), + [anon_sym_PLUS_PLUS] = ACTIONS(1347), + [anon_sym_DASH_DASH] = ACTIONS(1347), + [anon_sym_true] = ACTIONS(1169), + [anon_sym_false] = ACTIONS(1169), + [anon_sym_PLUS] = ACTIONS(1345), + [anon_sym_DASH] = ACTIONS(1345), + [anon_sym_STAR] = ACTIONS(1349), + [anon_sym_CARET] = ACTIONS(1347), + [anon_sym_AMP] = ACTIONS(1347), + [anon_sym_this] = ACTIONS(1173), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), + [anon_sym_base] = ACTIONS(1175), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1067), + [sym_predefined_type] = ACTIONS(1177), + [anon_sym_unchecked] = ACTIONS(1163), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1233), + [anon_sym_default] = ACTIONS(1179), + [anon_sym_throw] = ACTIONS(1351), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1235), - [anon_sym_DOT_DOT] = ACTIONS(1237), + [anon_sym_await] = ACTIONS(1353), + [anon_sym_DOT_DOT] = ACTIONS(1355), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -204490,19 +204207,19 @@ static const uint16_t ts_parse_table[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(1089), + [anon_sym_stackalloc] = ACTIONS(1187), + [anon_sym_sizeof] = ACTIONS(1189), + [anon_sym_typeof] = ACTIONS(1191), + [anon_sym___makeref] = ACTIONS(1193), + [anon_sym___reftype] = ACTIONS(1195), + [anon_sym___refvalue] = ACTIONS(1197), + [sym_null_literal] = ACTIONS(1199), + [anon_sym_SQUOTE] = ACTIONS(1201), + [sym_integer_literal] = ACTIONS(1199), + [sym_real_literal] = ACTIONS(1203), + [anon_sym_DQUOTE] = ACTIONS(1205), + [sym_verbatim_string_literal] = ACTIONS(1203), + [aux_sym_preproc_if_token1] = ACTIONS(1207), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -204513,90 +204230,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(1209), + [sym_interpolation_verbatim_start] = ACTIONS(1211), + [sym_interpolation_raw_start] = ACTIONS(1213), + [sym_raw_string_start] = ACTIONS(1215), + }, + [962] = { + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2603), + [sym__name] = STATE(5894), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2193), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(4171), + [sym_non_lvalue_expression] = STATE(3220), + [sym_lvalue_expression] = STATE(3126), + [sym__expression_statement_expression] = STATE(3236), + [sym_assignment_expression] = STATE(3221), + [sym_binary_expression] = STATE(3236), + [sym_postfix_unary_expression] = STATE(3221), + [sym_prefix_unary_expression] = STATE(3221), + [sym__pointer_indirection_expression] = STATE(2602), + [sym_query_expression] = STATE(3236), + [sym_from_clause] = STATE(6165), + [sym_conditional_expression] = STATE(3236), + [sym_conditional_access_expression] = STATE(3236), + [sym_as_expression] = STATE(3236), + [sym_is_expression] = STATE(3236), + [sym_is_pattern_expression] = STATE(3236), + [sym_cast_expression] = STATE(3236), + [sym_checked_expression] = STATE(3236), + [sym_invocation_expression] = STATE(3221), + [sym_switch_expression] = STATE(3236), + [sym_await_expression] = STATE(3221), + [sym_throw_expression] = STATE(3236), + [sym_element_access_expression] = STATE(2602), + [sym_interpolated_string_expression] = STATE(3236), + [sym_member_access_expression] = STATE(2602), + [sym_object_creation_expression] = STATE(3221), + [sym_parenthesized_expression] = STATE(3221), + [sym__parenthesized_lvalue_expression] = STATE(2602), + [sym_lambda_expression] = STATE(3236), + [sym__lambda_expression_init] = STATE(7487), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3236), + [sym_anonymous_method_expression] = STATE(3236), + [sym_anonymous_object_creation_expression] = STATE(3236), + [sym_implicit_array_creation_expression] = STATE(3236), + [sym_implicit_object_creation_expression] = STATE(3236), + [sym_implicit_stackalloc_expression] = STATE(3236), + [sym_initializer_expression] = STATE(3236), + [sym_default_expression] = STATE(3236), + [sym_with_expression] = STATE(3236), + [sym_sizeof_expression] = STATE(3236), + [sym_typeof_expression] = STATE(3236), + [sym_makeref_expression] = STATE(3236), + [sym_ref_expression] = STATE(3236), + [sym_reftype_expression] = STATE(3236), + [sym_refvalue_expression] = STATE(3236), + [sym_stackalloc_expression] = STATE(3236), + [sym_range_expression] = STATE(3236), + [sym_tuple_expression] = STATE(2602), + [sym_literal] = STATE(3236), + [sym_character_literal] = STATE(3272), + [sym_string_literal] = STATE(3272), + [sym_raw_string_literal] = STATE(3272), + [sym_boolean_literal] = STATE(3272), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3236), + [sym_preproc_if_in_attribute_list] = STATE(5583), + [sym_preproc_region] = STATE(962), + [sym_preproc_endregion] = STATE(962), + [sym_preproc_line] = STATE(962), + [sym_preproc_pragma] = STATE(962), + [sym_preproc_nullable] = STATE(962), + [sym_preproc_error] = STATE(962), + [sym_preproc_warning] = STATE(962), + [sym_preproc_define] = STATE(962), + [sym_preproc_undef] = STATE(962), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3379), + [sym__identifier_token] = ACTIONS(25), + [anon_sym_alias] = ACTIONS(29), + [anon_sym_global] = ACTIONS(29), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1149), + [anon_sym_LPAREN] = ACTIONS(1341), + [anon_sym_ref] = ACTIONS(1343), + [anon_sym_LBRACE] = ACTIONS(1155), + [anon_sym_delegate] = ACTIONS(1157), + [anon_sym_async] = ACTIONS(1045), + [anon_sym_file] = ACTIONS(29), + [anon_sym_new] = ACTIONS(1159), + [anon_sym_where] = ACTIONS(29), + [anon_sym_notnull] = ACTIONS(29), + [anon_sym_unmanaged] = ACTIONS(29), + [anon_sym_checked] = ACTIONS(1163), + [anon_sym_BANG] = ACTIONS(1347), + [anon_sym_TILDE] = ACTIONS(1347), + [anon_sym_PLUS_PLUS] = ACTIONS(1347), + [anon_sym_DASH_DASH] = ACTIONS(1347), + [anon_sym_true] = ACTIONS(1169), + [anon_sym_false] = ACTIONS(1169), + [anon_sym_PLUS] = ACTIONS(1345), + [anon_sym_DASH] = ACTIONS(1345), + [anon_sym_STAR] = ACTIONS(1349), + [anon_sym_CARET] = ACTIONS(1347), + [anon_sym_AMP] = ACTIONS(1347), + [anon_sym_this] = ACTIONS(1173), + [anon_sym_scoped] = ACTIONS(85), + [anon_sym_base] = ACTIONS(1175), + [anon_sym_var] = ACTIONS(89), + [sym_predefined_type] = ACTIONS(1177), + [anon_sym_unchecked] = ACTIONS(1163), + [anon_sym_yield] = ACTIONS(29), + [anon_sym_default] = ACTIONS(1179), + [anon_sym_throw] = ACTIONS(1351), + [anon_sym_when] = ACTIONS(29), + [anon_sym_await] = ACTIONS(1353), + [anon_sym_DOT_DOT] = ACTIONS(1355), + [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(1187), + [anon_sym_sizeof] = ACTIONS(1189), + [anon_sym_typeof] = ACTIONS(1191), + [anon_sym___makeref] = ACTIONS(1193), + [anon_sym___reftype] = ACTIONS(1195), + [anon_sym___refvalue] = ACTIONS(1197), + [sym_null_literal] = ACTIONS(1199), + [anon_sym_SQUOTE] = ACTIONS(1201), + [sym_integer_literal] = ACTIONS(1199), + [sym_real_literal] = ACTIONS(1203), + [anon_sym_DQUOTE] = ACTIONS(1205), + [sym_verbatim_string_literal] = ACTIONS(1203), + [aux_sym_preproc_if_token1] = ACTIONS(1207), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + [sym_interpolation_regular_start] = ACTIONS(1209), + [sym_interpolation_verbatim_start] = ACTIONS(1211), + [sym_interpolation_raw_start] = ACTIONS(1213), + [sym_raw_string_start] = ACTIONS(1215), }, [963] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(5634), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2204), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(5344), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3664), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3080), - [sym_postfix_unary_expression] = STATE(3111), - [sym_prefix_unary_expression] = STATE(3111), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6161), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3080), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3111), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3080), - [sym_member_access_expression] = STATE(2484), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3111), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7773), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(3080), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3080), - [sym_typeof_expression] = STATE(3080), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2484), - [sym_literal] = STATE(3080), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2603), + [sym__name] = STATE(5894), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2193), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(4177), + [sym_non_lvalue_expression] = STATE(3220), + [sym_lvalue_expression] = STATE(3126), + [sym__expression_statement_expression] = STATE(3236), + [sym_assignment_expression] = STATE(3221), + [sym_binary_expression] = STATE(3236), + [sym_postfix_unary_expression] = STATE(3221), + [sym_prefix_unary_expression] = STATE(3221), + [sym__pointer_indirection_expression] = STATE(2602), + [sym_query_expression] = STATE(3236), + [sym_from_clause] = STATE(6165), + [sym_conditional_expression] = STATE(3236), + [sym_conditional_access_expression] = STATE(3236), + [sym_as_expression] = STATE(3236), + [sym_is_expression] = STATE(3236), + [sym_is_pattern_expression] = STATE(3236), + [sym_cast_expression] = STATE(3236), + [sym_checked_expression] = STATE(3236), + [sym_invocation_expression] = STATE(3221), + [sym_switch_expression] = STATE(3236), + [sym_await_expression] = STATE(3221), + [sym_throw_expression] = STATE(3236), + [sym_element_access_expression] = STATE(2602), + [sym_interpolated_string_expression] = STATE(3236), + [sym_member_access_expression] = STATE(2602), + [sym_object_creation_expression] = STATE(3221), + [sym_parenthesized_expression] = STATE(3221), + [sym__parenthesized_lvalue_expression] = STATE(2602), + [sym_lambda_expression] = STATE(3236), + [sym__lambda_expression_init] = STATE(7487), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3236), + [sym_anonymous_method_expression] = STATE(3236), + [sym_anonymous_object_creation_expression] = STATE(3236), + [sym_implicit_array_creation_expression] = STATE(3236), + [sym_implicit_object_creation_expression] = STATE(3236), + [sym_implicit_stackalloc_expression] = STATE(3236), + [sym_initializer_expression] = STATE(3236), + [sym_default_expression] = STATE(3236), + [sym_with_expression] = STATE(3236), + [sym_sizeof_expression] = STATE(3236), + [sym_typeof_expression] = STATE(3236), + [sym_makeref_expression] = STATE(3236), + [sym_ref_expression] = STATE(3236), + [sym_reftype_expression] = STATE(3236), + [sym_refvalue_expression] = STATE(3236), + [sym_stackalloc_expression] = STATE(3236), + [sym_range_expression] = STATE(3236), + [sym_tuple_expression] = STATE(2602), + [sym_literal] = STATE(3236), + [sym_character_literal] = STATE(3272), + [sym_string_literal] = STATE(3272), + [sym_raw_string_literal] = STATE(3272), + [sym_boolean_literal] = STATE(3272), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3236), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(963), [sym_preproc_endregion] = STATE(963), [sym_preproc_line] = STATE(963), @@ -204606,47 +204492,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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3379), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1481), - [anon_sym_LPAREN] = ACTIONS(2015), - [anon_sym_ref] = ACTIONS(2017), - [anon_sym_LBRACE] = ACTIONS(1487), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1149), + [anon_sym_LPAREN] = ACTIONS(1341), + [anon_sym_ref] = ACTIONS(1343), + [anon_sym_LBRACE] = ACTIONS(1155), + [anon_sym_delegate] = ACTIONS(1157), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1101), + [anon_sym_new] = ACTIONS(1159), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1067), - [anon_sym_BANG] = ACTIONS(2021), - [anon_sym_TILDE] = ACTIONS(2021), - [anon_sym_PLUS_PLUS] = ACTIONS(2021), - [anon_sym_DASH_DASH] = ACTIONS(2021), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(2019), - [anon_sym_DASH] = ACTIONS(2019), - [anon_sym_STAR] = ACTIONS(1229), - [anon_sym_CARET] = ACTIONS(2021), - [anon_sym_AMP] = ACTIONS(2021), - [anon_sym_this] = ACTIONS(83), + [anon_sym_checked] = ACTIONS(1163), + [anon_sym_BANG] = ACTIONS(1347), + [anon_sym_TILDE] = ACTIONS(1347), + [anon_sym_PLUS_PLUS] = ACTIONS(1347), + [anon_sym_DASH_DASH] = ACTIONS(1347), + [anon_sym_true] = ACTIONS(1169), + [anon_sym_false] = ACTIONS(1169), + [anon_sym_PLUS] = ACTIONS(1345), + [anon_sym_DASH] = ACTIONS(1345), + [anon_sym_STAR] = ACTIONS(1349), + [anon_sym_CARET] = ACTIONS(1347), + [anon_sym_AMP] = ACTIONS(1347), + [anon_sym_this] = ACTIONS(1173), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), + [anon_sym_base] = ACTIONS(1175), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1067), + [sym_predefined_type] = ACTIONS(1177), + [anon_sym_unchecked] = ACTIONS(1163), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1233), + [anon_sym_default] = ACTIONS(1179), + [anon_sym_throw] = ACTIONS(1351), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1235), - [anon_sym_DOT_DOT] = ACTIONS(1237), + [anon_sym_await] = ACTIONS(1353), + [anon_sym_DOT_DOT] = ACTIONS(1355), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -204659,19 +204545,19 @@ static const uint16_t ts_parse_table[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(1089), + [anon_sym_stackalloc] = ACTIONS(1187), + [anon_sym_sizeof] = ACTIONS(1189), + [anon_sym_typeof] = ACTIONS(1191), + [anon_sym___makeref] = ACTIONS(1193), + [anon_sym___reftype] = ACTIONS(1195), + [anon_sym___refvalue] = ACTIONS(1197), + [sym_null_literal] = ACTIONS(1199), + [anon_sym_SQUOTE] = ACTIONS(1201), + [sym_integer_literal] = ACTIONS(1199), + [sym_real_literal] = ACTIONS(1203), + [anon_sym_DQUOTE] = ACTIONS(1205), + [sym_verbatim_string_literal] = ACTIONS(1203), + [aux_sym_preproc_if_token1] = ACTIONS(1207), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -204682,90 +204568,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(151), - [sym_interpolation_verbatim_start] = ACTIONS(153), - [sym_interpolation_raw_start] = ACTIONS(155), - [sym_raw_string_start] = ACTIONS(157), + [sym_interpolation_regular_start] = ACTIONS(1209), + [sym_interpolation_verbatim_start] = ACTIONS(1211), + [sym_interpolation_raw_start] = ACTIONS(1213), + [sym_raw_string_start] = ACTIONS(1215), }, [964] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(5634), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2204), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(5345), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3664), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3080), - [sym_postfix_unary_expression] = STATE(3111), - [sym_prefix_unary_expression] = STATE(3111), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6161), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3080), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3111), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3080), - [sym_member_access_expression] = STATE(2484), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3111), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7773), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(3080), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3080), - [sym_typeof_expression] = STATE(3080), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2484), - [sym_literal] = STATE(3080), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2603), + [sym__name] = STATE(5894), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2193), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(4180), + [sym_non_lvalue_expression] = STATE(3220), + [sym_lvalue_expression] = STATE(3126), + [sym__expression_statement_expression] = STATE(3236), + [sym_assignment_expression] = STATE(3221), + [sym_binary_expression] = STATE(3236), + [sym_postfix_unary_expression] = STATE(3221), + [sym_prefix_unary_expression] = STATE(3221), + [sym__pointer_indirection_expression] = STATE(2602), + [sym_query_expression] = STATE(3236), + [sym_from_clause] = STATE(6165), + [sym_conditional_expression] = STATE(3236), + [sym_conditional_access_expression] = STATE(3236), + [sym_as_expression] = STATE(3236), + [sym_is_expression] = STATE(3236), + [sym_is_pattern_expression] = STATE(3236), + [sym_cast_expression] = STATE(3236), + [sym_checked_expression] = STATE(3236), + [sym_invocation_expression] = STATE(3221), + [sym_switch_expression] = STATE(3236), + [sym_await_expression] = STATE(3221), + [sym_throw_expression] = STATE(3236), + [sym_element_access_expression] = STATE(2602), + [sym_interpolated_string_expression] = STATE(3236), + [sym_member_access_expression] = STATE(2602), + [sym_object_creation_expression] = STATE(3221), + [sym_parenthesized_expression] = STATE(3221), + [sym__parenthesized_lvalue_expression] = STATE(2602), + [sym_lambda_expression] = STATE(3236), + [sym__lambda_expression_init] = STATE(7487), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3236), + [sym_anonymous_method_expression] = STATE(3236), + [sym_anonymous_object_creation_expression] = STATE(3236), + [sym_implicit_array_creation_expression] = STATE(3236), + [sym_implicit_object_creation_expression] = STATE(3236), + [sym_implicit_stackalloc_expression] = STATE(3236), + [sym_initializer_expression] = STATE(3236), + [sym_default_expression] = STATE(3236), + [sym_with_expression] = STATE(3236), + [sym_sizeof_expression] = STATE(3236), + [sym_typeof_expression] = STATE(3236), + [sym_makeref_expression] = STATE(3236), + [sym_ref_expression] = STATE(3236), + [sym_reftype_expression] = STATE(3236), + [sym_refvalue_expression] = STATE(3236), + [sym_stackalloc_expression] = STATE(3236), + [sym_range_expression] = STATE(3236), + [sym_tuple_expression] = STATE(2602), + [sym_literal] = STATE(3236), + [sym_character_literal] = STATE(3272), + [sym_string_literal] = STATE(3272), + [sym_raw_string_literal] = STATE(3272), + [sym_boolean_literal] = STATE(3272), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3236), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(964), [sym_preproc_endregion] = STATE(964), [sym_preproc_line] = STATE(964), @@ -204775,47 +204661,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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3379), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1481), - [anon_sym_LPAREN] = ACTIONS(2015), - [anon_sym_ref] = ACTIONS(2017), - [anon_sym_LBRACE] = ACTIONS(1487), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1149), + [anon_sym_LPAREN] = ACTIONS(1341), + [anon_sym_ref] = ACTIONS(1343), + [anon_sym_LBRACE] = ACTIONS(1155), + [anon_sym_delegate] = ACTIONS(1157), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1101), + [anon_sym_new] = ACTIONS(1159), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1067), - [anon_sym_BANG] = ACTIONS(2021), - [anon_sym_TILDE] = ACTIONS(2021), - [anon_sym_PLUS_PLUS] = ACTIONS(2021), - [anon_sym_DASH_DASH] = ACTIONS(2021), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(2019), - [anon_sym_DASH] = ACTIONS(2019), - [anon_sym_STAR] = ACTIONS(1229), - [anon_sym_CARET] = ACTIONS(2021), - [anon_sym_AMP] = ACTIONS(2021), - [anon_sym_this] = ACTIONS(83), + [anon_sym_checked] = ACTIONS(1163), + [anon_sym_BANG] = ACTIONS(1347), + [anon_sym_TILDE] = ACTIONS(1347), + [anon_sym_PLUS_PLUS] = ACTIONS(1347), + [anon_sym_DASH_DASH] = ACTIONS(1347), + [anon_sym_true] = ACTIONS(1169), + [anon_sym_false] = ACTIONS(1169), + [anon_sym_PLUS] = ACTIONS(1345), + [anon_sym_DASH] = ACTIONS(1345), + [anon_sym_STAR] = ACTIONS(1349), + [anon_sym_CARET] = ACTIONS(1347), + [anon_sym_AMP] = ACTIONS(1347), + [anon_sym_this] = ACTIONS(1173), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), + [anon_sym_base] = ACTIONS(1175), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1067), + [sym_predefined_type] = ACTIONS(1177), + [anon_sym_unchecked] = ACTIONS(1163), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1233), + [anon_sym_default] = ACTIONS(1179), + [anon_sym_throw] = ACTIONS(1351), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1235), - [anon_sym_DOT_DOT] = ACTIONS(1237), + [anon_sym_await] = ACTIONS(1353), + [anon_sym_DOT_DOT] = ACTIONS(1355), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -204828,19 +204714,19 @@ static const uint16_t ts_parse_table[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(1089), + [anon_sym_stackalloc] = ACTIONS(1187), + [anon_sym_sizeof] = ACTIONS(1189), + [anon_sym_typeof] = ACTIONS(1191), + [anon_sym___makeref] = ACTIONS(1193), + [anon_sym___reftype] = ACTIONS(1195), + [anon_sym___refvalue] = ACTIONS(1197), + [sym_null_literal] = ACTIONS(1199), + [anon_sym_SQUOTE] = ACTIONS(1201), + [sym_integer_literal] = ACTIONS(1199), + [sym_real_literal] = ACTIONS(1203), + [anon_sym_DQUOTE] = ACTIONS(1205), + [sym_verbatim_string_literal] = ACTIONS(1203), + [aux_sym_preproc_if_token1] = ACTIONS(1207), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -204851,90 +204737,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(151), - [sym_interpolation_verbatim_start] = ACTIONS(153), - [sym_interpolation_raw_start] = ACTIONS(155), - [sym_raw_string_start] = ACTIONS(157), + [sym_interpolation_regular_start] = ACTIONS(1209), + [sym_interpolation_verbatim_start] = ACTIONS(1211), + [sym_interpolation_raw_start] = ACTIONS(1213), + [sym_raw_string_start] = ACTIONS(1215), }, [965] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(5634), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2204), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(5347), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3664), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3080), - [sym_postfix_unary_expression] = STATE(3111), - [sym_prefix_unary_expression] = STATE(3111), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6161), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3080), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3111), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3080), - [sym_member_access_expression] = STATE(2484), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3111), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7773), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(3080), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3080), - [sym_typeof_expression] = STATE(3080), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2484), - [sym_literal] = STATE(3080), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2603), + [sym__name] = STATE(5894), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2193), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(4182), + [sym_non_lvalue_expression] = STATE(3220), + [sym_lvalue_expression] = STATE(3126), + [sym__expression_statement_expression] = STATE(3236), + [sym_assignment_expression] = STATE(3221), + [sym_binary_expression] = STATE(3236), + [sym_postfix_unary_expression] = STATE(3221), + [sym_prefix_unary_expression] = STATE(3221), + [sym__pointer_indirection_expression] = STATE(2602), + [sym_query_expression] = STATE(3236), + [sym_from_clause] = STATE(6165), + [sym_conditional_expression] = STATE(3236), + [sym_conditional_access_expression] = STATE(3236), + [sym_as_expression] = STATE(3236), + [sym_is_expression] = STATE(3236), + [sym_is_pattern_expression] = STATE(3236), + [sym_cast_expression] = STATE(3236), + [sym_checked_expression] = STATE(3236), + [sym_invocation_expression] = STATE(3221), + [sym_switch_expression] = STATE(3236), + [sym_await_expression] = STATE(3221), + [sym_throw_expression] = STATE(3236), + [sym_element_access_expression] = STATE(2602), + [sym_interpolated_string_expression] = STATE(3236), + [sym_member_access_expression] = STATE(2602), + [sym_object_creation_expression] = STATE(3221), + [sym_parenthesized_expression] = STATE(3221), + [sym__parenthesized_lvalue_expression] = STATE(2602), + [sym_lambda_expression] = STATE(3236), + [sym__lambda_expression_init] = STATE(7487), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3236), + [sym_anonymous_method_expression] = STATE(3236), + [sym_anonymous_object_creation_expression] = STATE(3236), + [sym_implicit_array_creation_expression] = STATE(3236), + [sym_implicit_object_creation_expression] = STATE(3236), + [sym_implicit_stackalloc_expression] = STATE(3236), + [sym_initializer_expression] = STATE(3236), + [sym_default_expression] = STATE(3236), + [sym_with_expression] = STATE(3236), + [sym_sizeof_expression] = STATE(3236), + [sym_typeof_expression] = STATE(3236), + [sym_makeref_expression] = STATE(3236), + [sym_ref_expression] = STATE(3236), + [sym_reftype_expression] = STATE(3236), + [sym_refvalue_expression] = STATE(3236), + [sym_stackalloc_expression] = STATE(3236), + [sym_range_expression] = STATE(3236), + [sym_tuple_expression] = STATE(2602), + [sym_literal] = STATE(3236), + [sym_character_literal] = STATE(3272), + [sym_string_literal] = STATE(3272), + [sym_raw_string_literal] = STATE(3272), + [sym_boolean_literal] = STATE(3272), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3236), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(965), [sym_preproc_endregion] = STATE(965), [sym_preproc_line] = STATE(965), @@ -204944,47 +204830,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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3379), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1481), - [anon_sym_LPAREN] = ACTIONS(2015), - [anon_sym_ref] = ACTIONS(2017), - [anon_sym_LBRACE] = ACTIONS(1487), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1149), + [anon_sym_LPAREN] = ACTIONS(1341), + [anon_sym_ref] = ACTIONS(1343), + [anon_sym_LBRACE] = ACTIONS(1155), + [anon_sym_delegate] = ACTIONS(1157), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1101), + [anon_sym_new] = ACTIONS(1159), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1067), - [anon_sym_BANG] = ACTIONS(2021), - [anon_sym_TILDE] = ACTIONS(2021), - [anon_sym_PLUS_PLUS] = ACTIONS(2021), - [anon_sym_DASH_DASH] = ACTIONS(2021), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(2019), - [anon_sym_DASH] = ACTIONS(2019), - [anon_sym_STAR] = ACTIONS(1229), - [anon_sym_CARET] = ACTIONS(2021), - [anon_sym_AMP] = ACTIONS(2021), - [anon_sym_this] = ACTIONS(83), + [anon_sym_checked] = ACTIONS(1163), + [anon_sym_BANG] = ACTIONS(1347), + [anon_sym_TILDE] = ACTIONS(1347), + [anon_sym_PLUS_PLUS] = ACTIONS(1347), + [anon_sym_DASH_DASH] = ACTIONS(1347), + [anon_sym_true] = ACTIONS(1169), + [anon_sym_false] = ACTIONS(1169), + [anon_sym_PLUS] = ACTIONS(1345), + [anon_sym_DASH] = ACTIONS(1345), + [anon_sym_STAR] = ACTIONS(1349), + [anon_sym_CARET] = ACTIONS(1347), + [anon_sym_AMP] = ACTIONS(1347), + [anon_sym_this] = ACTIONS(1173), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), + [anon_sym_base] = ACTIONS(1175), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1067), + [sym_predefined_type] = ACTIONS(1177), + [anon_sym_unchecked] = ACTIONS(1163), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1233), + [anon_sym_default] = ACTIONS(1179), + [anon_sym_throw] = ACTIONS(1351), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1235), - [anon_sym_DOT_DOT] = ACTIONS(1237), + [anon_sym_await] = ACTIONS(1353), + [anon_sym_DOT_DOT] = ACTIONS(1355), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -204997,19 +204883,19 @@ static const uint16_t ts_parse_table[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(1089), + [anon_sym_stackalloc] = ACTIONS(1187), + [anon_sym_sizeof] = ACTIONS(1189), + [anon_sym_typeof] = ACTIONS(1191), + [anon_sym___makeref] = ACTIONS(1193), + [anon_sym___reftype] = ACTIONS(1195), + [anon_sym___refvalue] = ACTIONS(1197), + [sym_null_literal] = ACTIONS(1199), + [anon_sym_SQUOTE] = ACTIONS(1201), + [sym_integer_literal] = ACTIONS(1199), + [sym_real_literal] = ACTIONS(1203), + [anon_sym_DQUOTE] = ACTIONS(1205), + [sym_verbatim_string_literal] = ACTIONS(1203), + [aux_sym_preproc_if_token1] = ACTIONS(1207), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -205020,90 +204906,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(151), - [sym_interpolation_verbatim_start] = ACTIONS(153), - [sym_interpolation_raw_start] = ACTIONS(155), - [sym_raw_string_start] = ACTIONS(157), + [sym_interpolation_regular_start] = ACTIONS(1209), + [sym_interpolation_verbatim_start] = ACTIONS(1211), + [sym_interpolation_raw_start] = ACTIONS(1213), + [sym_raw_string_start] = ACTIONS(1215), }, [966] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(5634), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2204), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(5348), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3664), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3080), - [sym_postfix_unary_expression] = STATE(3111), - [sym_prefix_unary_expression] = STATE(3111), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6161), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3080), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3111), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3080), - [sym_member_access_expression] = STATE(2484), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3111), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7773), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(3080), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3080), - [sym_typeof_expression] = STATE(3080), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2484), - [sym_literal] = STATE(3080), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2603), + [sym__name] = STATE(5865), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2344), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(4413), + [sym_non_lvalue_expression] = STATE(3220), + [sym_lvalue_expression] = STATE(3234), + [sym__expression_statement_expression] = STATE(3236), + [sym_assignment_expression] = STATE(3221), + [sym_binary_expression] = STATE(3236), + [sym_postfix_unary_expression] = STATE(3221), + [sym_prefix_unary_expression] = STATE(3221), + [sym__pointer_indirection_expression] = STATE(2602), + [sym_query_expression] = STATE(3236), + [sym_from_clause] = STATE(6151), + [sym_conditional_expression] = STATE(3236), + [sym_conditional_access_expression] = STATE(3236), + [sym_as_expression] = STATE(3236), + [sym_is_expression] = STATE(3236), + [sym_is_pattern_expression] = STATE(3236), + [sym_cast_expression] = STATE(3236), + [sym_checked_expression] = STATE(3236), + [sym_invocation_expression] = STATE(3221), + [sym_switch_expression] = STATE(3236), + [sym_await_expression] = STATE(3221), + [sym_throw_expression] = STATE(3236), + [sym_element_access_expression] = STATE(2602), + [sym_interpolated_string_expression] = STATE(3236), + [sym_member_access_expression] = STATE(2602), + [sym_object_creation_expression] = STATE(3221), + [sym_parenthesized_expression] = STATE(3221), + [sym__parenthesized_lvalue_expression] = STATE(2602), + [sym_lambda_expression] = STATE(3236), + [sym__lambda_expression_init] = STATE(7276), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3236), + [sym_anonymous_method_expression] = STATE(3236), + [sym_anonymous_object_creation_expression] = STATE(3236), + [sym_implicit_array_creation_expression] = STATE(3236), + [sym_implicit_object_creation_expression] = STATE(3236), + [sym_implicit_stackalloc_expression] = STATE(3236), + [sym_initializer_expression] = STATE(3236), + [sym_default_expression] = STATE(3236), + [sym_with_expression] = STATE(3236), + [sym_sizeof_expression] = STATE(3236), + [sym_typeof_expression] = STATE(3236), + [sym_makeref_expression] = STATE(3236), + [sym_ref_expression] = STATE(3236), + [sym_reftype_expression] = STATE(3236), + [sym_refvalue_expression] = STATE(3236), + [sym_stackalloc_expression] = STATE(3236), + [sym_range_expression] = STATE(3236), + [sym_tuple_expression] = STATE(2602), + [sym_literal] = STATE(3236), + [sym_character_literal] = STATE(3272), + [sym_string_literal] = STATE(3272), + [sym_raw_string_literal] = STATE(3272), + [sym_boolean_literal] = STATE(3272), + [sym_identifier] = STATE(2261), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3236), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(966), [sym_preproc_endregion] = STATE(966), [sym_preproc_line] = STATE(966), @@ -205113,47 +204999,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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3379), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1481), - [anon_sym_LPAREN] = ACTIONS(2015), - [anon_sym_ref] = ACTIONS(2017), - [anon_sym_LBRACE] = ACTIONS(1487), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1149), + [anon_sym_LPAREN] = ACTIONS(1597), + [anon_sym_ref] = ACTIONS(1599), + [anon_sym_LBRACE] = ACTIONS(1155), + [anon_sym_delegate] = ACTIONS(1157), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1101), + [anon_sym_new] = ACTIONS(1535), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1067), - [anon_sym_BANG] = ACTIONS(2021), - [anon_sym_TILDE] = ACTIONS(2021), - [anon_sym_PLUS_PLUS] = ACTIONS(2021), - [anon_sym_DASH_DASH] = ACTIONS(2021), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(2019), - [anon_sym_DASH] = ACTIONS(2019), - [anon_sym_STAR] = ACTIONS(1229), - [anon_sym_CARET] = ACTIONS(2021), - [anon_sym_AMP] = ACTIONS(2021), - [anon_sym_this] = ACTIONS(83), + [anon_sym_checked] = ACTIONS(1163), + [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(1169), + [anon_sym_false] = ACTIONS(1169), + [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(1173), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), + [anon_sym_base] = ACTIONS(1175), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1067), + [sym_predefined_type] = ACTIONS(1177), + [anon_sym_unchecked] = ACTIONS(1163), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1233), + [anon_sym_default] = ACTIONS(1179), + [anon_sym_throw] = ACTIONS(1607), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1235), - [anon_sym_DOT_DOT] = ACTIONS(1237), + [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), @@ -205166,19 +205052,19 @@ static const uint16_t ts_parse_table[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(1089), + [anon_sym_stackalloc] = ACTIONS(1187), + [anon_sym_sizeof] = ACTIONS(1189), + [anon_sym_typeof] = ACTIONS(1191), + [anon_sym___makeref] = ACTIONS(1193), + [anon_sym___reftype] = ACTIONS(1195), + [anon_sym___refvalue] = ACTIONS(1197), + [sym_null_literal] = ACTIONS(1199), + [anon_sym_SQUOTE] = ACTIONS(1201), + [sym_integer_literal] = ACTIONS(1199), + [sym_real_literal] = ACTIONS(1203), + [anon_sym_DQUOTE] = ACTIONS(1205), + [sym_verbatim_string_literal] = ACTIONS(1203), + [aux_sym_preproc_if_token1] = ACTIONS(1207), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -205189,90 +205075,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(151), - [sym_interpolation_verbatim_start] = ACTIONS(153), - [sym_interpolation_raw_start] = ACTIONS(155), - [sym_raw_string_start] = ACTIONS(157), + [sym_interpolation_regular_start] = ACTIONS(1209), + [sym_interpolation_verbatim_start] = ACTIONS(1211), + [sym_interpolation_raw_start] = ACTIONS(1213), + [sym_raw_string_start] = ACTIONS(1215), }, [967] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(5634), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2204), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(5349), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3664), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3080), - [sym_postfix_unary_expression] = STATE(3111), - [sym_prefix_unary_expression] = STATE(3111), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6161), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3080), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3111), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3080), - [sym_member_access_expression] = STATE(2484), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3111), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7773), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(3080), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3080), - [sym_typeof_expression] = STATE(3080), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2484), - [sym_literal] = STATE(3080), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2603), + [sym__name] = STATE(5894), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2193), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(3133), + [sym_non_lvalue_expression] = STATE(3220), + [sym_lvalue_expression] = STATE(3126), + [sym__expression_statement_expression] = STATE(3236), + [sym_assignment_expression] = STATE(3221), + [sym_binary_expression] = STATE(3236), + [sym_postfix_unary_expression] = STATE(3221), + [sym_prefix_unary_expression] = STATE(3221), + [sym__pointer_indirection_expression] = STATE(2602), + [sym_query_expression] = STATE(3236), + [sym_from_clause] = STATE(6165), + [sym_conditional_expression] = STATE(3236), + [sym_conditional_access_expression] = STATE(3236), + [sym_as_expression] = STATE(3236), + [sym_is_expression] = STATE(3236), + [sym_is_pattern_expression] = STATE(3236), + [sym_cast_expression] = STATE(3236), + [sym_checked_expression] = STATE(3236), + [sym_invocation_expression] = STATE(3221), + [sym_switch_expression] = STATE(3236), + [sym_await_expression] = STATE(3221), + [sym_throw_expression] = STATE(3236), + [sym_element_access_expression] = STATE(2602), + [sym_interpolated_string_expression] = STATE(3236), + [sym_member_access_expression] = STATE(2602), + [sym_object_creation_expression] = STATE(3221), + [sym_parenthesized_expression] = STATE(3221), + [sym__parenthesized_lvalue_expression] = STATE(2602), + [sym_lambda_expression] = STATE(3236), + [sym__lambda_expression_init] = STATE(7487), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3236), + [sym_anonymous_method_expression] = STATE(3236), + [sym_anonymous_object_creation_expression] = STATE(3236), + [sym_implicit_array_creation_expression] = STATE(3236), + [sym_implicit_object_creation_expression] = STATE(3236), + [sym_implicit_stackalloc_expression] = STATE(3236), + [sym_initializer_expression] = STATE(3236), + [sym_default_expression] = STATE(3236), + [sym_with_expression] = STATE(3236), + [sym_sizeof_expression] = STATE(3236), + [sym_typeof_expression] = STATE(3236), + [sym_makeref_expression] = STATE(3236), + [sym_ref_expression] = STATE(3236), + [sym_reftype_expression] = STATE(3236), + [sym_refvalue_expression] = STATE(3236), + [sym_stackalloc_expression] = STATE(3236), + [sym_range_expression] = STATE(3236), + [sym_tuple_expression] = STATE(2602), + [sym_literal] = STATE(3236), + [sym_character_literal] = STATE(3272), + [sym_string_literal] = STATE(3272), + [sym_raw_string_literal] = STATE(3272), + [sym_boolean_literal] = STATE(3272), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3236), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(967), [sym_preproc_endregion] = STATE(967), [sym_preproc_line] = STATE(967), @@ -205282,47 +205168,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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3379), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1481), - [anon_sym_LPAREN] = ACTIONS(2015), - [anon_sym_ref] = ACTIONS(2017), - [anon_sym_LBRACE] = ACTIONS(1487), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1149), + [anon_sym_LPAREN] = ACTIONS(1341), + [anon_sym_ref] = ACTIONS(1343), + [anon_sym_LBRACE] = ACTIONS(1155), + [anon_sym_delegate] = ACTIONS(1157), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1101), + [anon_sym_new] = ACTIONS(1159), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1067), - [anon_sym_BANG] = ACTIONS(2021), - [anon_sym_TILDE] = ACTIONS(2021), - [anon_sym_PLUS_PLUS] = ACTIONS(2021), - [anon_sym_DASH_DASH] = ACTIONS(2021), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(2019), - [anon_sym_DASH] = ACTIONS(2019), - [anon_sym_STAR] = ACTIONS(1229), - [anon_sym_CARET] = ACTIONS(2021), - [anon_sym_AMP] = ACTIONS(2021), - [anon_sym_this] = ACTIONS(83), + [anon_sym_checked] = ACTIONS(1163), + [anon_sym_BANG] = ACTIONS(1347), + [anon_sym_TILDE] = ACTIONS(1347), + [anon_sym_PLUS_PLUS] = ACTIONS(1347), + [anon_sym_DASH_DASH] = ACTIONS(1347), + [anon_sym_true] = ACTIONS(1169), + [anon_sym_false] = ACTIONS(1169), + [anon_sym_PLUS] = ACTIONS(1345), + [anon_sym_DASH] = ACTIONS(1345), + [anon_sym_STAR] = ACTIONS(1349), + [anon_sym_CARET] = ACTIONS(1347), + [anon_sym_AMP] = ACTIONS(1347), + [anon_sym_this] = ACTIONS(1173), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), + [anon_sym_base] = ACTIONS(1175), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1067), + [sym_predefined_type] = ACTIONS(1177), + [anon_sym_unchecked] = ACTIONS(1163), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1233), + [anon_sym_default] = ACTIONS(1179), + [anon_sym_throw] = ACTIONS(1351), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1235), - [anon_sym_DOT_DOT] = ACTIONS(1237), + [anon_sym_await] = ACTIONS(1353), + [anon_sym_DOT_DOT] = ACTIONS(1355), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -205335,19 +205221,19 @@ static const uint16_t ts_parse_table[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(1089), + [anon_sym_stackalloc] = ACTIONS(1187), + [anon_sym_sizeof] = ACTIONS(1189), + [anon_sym_typeof] = ACTIONS(1191), + [anon_sym___makeref] = ACTIONS(1193), + [anon_sym___reftype] = ACTIONS(1195), + [anon_sym___refvalue] = ACTIONS(1197), + [sym_null_literal] = ACTIONS(1199), + [anon_sym_SQUOTE] = ACTIONS(1201), + [sym_integer_literal] = ACTIONS(1199), + [sym_real_literal] = ACTIONS(1203), + [anon_sym_DQUOTE] = ACTIONS(1205), + [sym_verbatim_string_literal] = ACTIONS(1203), + [aux_sym_preproc_if_token1] = ACTIONS(1207), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -205358,90 +205244,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(151), - [sym_interpolation_verbatim_start] = ACTIONS(153), - [sym_interpolation_raw_start] = ACTIONS(155), - [sym_raw_string_start] = ACTIONS(157), + [sym_interpolation_regular_start] = ACTIONS(1209), + [sym_interpolation_verbatim_start] = ACTIONS(1211), + [sym_interpolation_raw_start] = ACTIONS(1213), + [sym_raw_string_start] = ACTIONS(1215), }, [968] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(5634), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2204), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(5351), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3664), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3080), - [sym_postfix_unary_expression] = STATE(3111), - [sym_prefix_unary_expression] = STATE(3111), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6161), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3080), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3111), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3080), - [sym_member_access_expression] = STATE(2484), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3111), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7773), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(3080), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3080), - [sym_typeof_expression] = STATE(3080), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2484), - [sym_literal] = STATE(3080), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2603), + [sym__name] = STATE(5865), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2344), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(4429), + [sym_non_lvalue_expression] = STATE(3220), + [sym_lvalue_expression] = STATE(3234), + [sym__expression_statement_expression] = STATE(3236), + [sym_assignment_expression] = STATE(3221), + [sym_binary_expression] = STATE(3236), + [sym_postfix_unary_expression] = STATE(3221), + [sym_prefix_unary_expression] = STATE(3221), + [sym__pointer_indirection_expression] = STATE(2602), + [sym_query_expression] = STATE(3236), + [sym_from_clause] = STATE(6151), + [sym_conditional_expression] = STATE(3236), + [sym_conditional_access_expression] = STATE(3236), + [sym_as_expression] = STATE(3236), + [sym_is_expression] = STATE(3236), + [sym_is_pattern_expression] = STATE(3236), + [sym_cast_expression] = STATE(3236), + [sym_checked_expression] = STATE(3236), + [sym_invocation_expression] = STATE(3221), + [sym_switch_expression] = STATE(3236), + [sym_await_expression] = STATE(3221), + [sym_throw_expression] = STATE(3236), + [sym_element_access_expression] = STATE(2602), + [sym_interpolated_string_expression] = STATE(3236), + [sym_member_access_expression] = STATE(2602), + [sym_object_creation_expression] = STATE(3221), + [sym_parenthesized_expression] = STATE(3221), + [sym__parenthesized_lvalue_expression] = STATE(2602), + [sym_lambda_expression] = STATE(3236), + [sym__lambda_expression_init] = STATE(7276), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3236), + [sym_anonymous_method_expression] = STATE(3236), + [sym_anonymous_object_creation_expression] = STATE(3236), + [sym_implicit_array_creation_expression] = STATE(3236), + [sym_implicit_object_creation_expression] = STATE(3236), + [sym_implicit_stackalloc_expression] = STATE(3236), + [sym_initializer_expression] = STATE(3236), + [sym_default_expression] = STATE(3236), + [sym_with_expression] = STATE(3236), + [sym_sizeof_expression] = STATE(3236), + [sym_typeof_expression] = STATE(3236), + [sym_makeref_expression] = STATE(3236), + [sym_ref_expression] = STATE(3236), + [sym_reftype_expression] = STATE(3236), + [sym_refvalue_expression] = STATE(3236), + [sym_stackalloc_expression] = STATE(3236), + [sym_range_expression] = STATE(3236), + [sym_tuple_expression] = STATE(2602), + [sym_literal] = STATE(3236), + [sym_character_literal] = STATE(3272), + [sym_string_literal] = STATE(3272), + [sym_raw_string_literal] = STATE(3272), + [sym_boolean_literal] = STATE(3272), + [sym_identifier] = STATE(2261), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3236), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(968), [sym_preproc_endregion] = STATE(968), [sym_preproc_line] = STATE(968), @@ -205451,47 +205337,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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3379), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1481), - [anon_sym_LPAREN] = ACTIONS(2015), - [anon_sym_ref] = ACTIONS(2017), - [anon_sym_LBRACE] = ACTIONS(1487), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1149), + [anon_sym_LPAREN] = ACTIONS(1597), + [anon_sym_ref] = ACTIONS(1599), + [anon_sym_LBRACE] = ACTIONS(1155), + [anon_sym_delegate] = ACTIONS(1157), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1101), + [anon_sym_new] = ACTIONS(1535), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1067), - [anon_sym_BANG] = ACTIONS(2021), - [anon_sym_TILDE] = ACTIONS(2021), - [anon_sym_PLUS_PLUS] = ACTIONS(2021), - [anon_sym_DASH_DASH] = ACTIONS(2021), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(2019), - [anon_sym_DASH] = ACTIONS(2019), - [anon_sym_STAR] = ACTIONS(1229), - [anon_sym_CARET] = ACTIONS(2021), - [anon_sym_AMP] = ACTIONS(2021), - [anon_sym_this] = ACTIONS(83), + [anon_sym_checked] = ACTIONS(1163), + [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(1169), + [anon_sym_false] = ACTIONS(1169), + [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(1173), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), + [anon_sym_base] = ACTIONS(1175), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1067), + [sym_predefined_type] = ACTIONS(1177), + [anon_sym_unchecked] = ACTIONS(1163), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1233), + [anon_sym_default] = ACTIONS(1179), + [anon_sym_throw] = ACTIONS(1607), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1235), - [anon_sym_DOT_DOT] = ACTIONS(1237), + [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), @@ -205504,19 +205390,19 @@ static const uint16_t ts_parse_table[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(1089), + [anon_sym_stackalloc] = ACTIONS(1187), + [anon_sym_sizeof] = ACTIONS(1189), + [anon_sym_typeof] = ACTIONS(1191), + [anon_sym___makeref] = ACTIONS(1193), + [anon_sym___reftype] = ACTIONS(1195), + [anon_sym___refvalue] = ACTIONS(1197), + [sym_null_literal] = ACTIONS(1199), + [anon_sym_SQUOTE] = ACTIONS(1201), + [sym_integer_literal] = ACTIONS(1199), + [sym_real_literal] = ACTIONS(1203), + [anon_sym_DQUOTE] = ACTIONS(1205), + [sym_verbatim_string_literal] = ACTIONS(1203), + [aux_sym_preproc_if_token1] = ACTIONS(1207), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -205527,90 +205413,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(151), - [sym_interpolation_verbatim_start] = ACTIONS(153), - [sym_interpolation_raw_start] = ACTIONS(155), - [sym_raw_string_start] = ACTIONS(157), + [sym_interpolation_regular_start] = ACTIONS(1209), + [sym_interpolation_verbatim_start] = ACTIONS(1211), + [sym_interpolation_raw_start] = ACTIONS(1213), + [sym_raw_string_start] = ACTIONS(1215), }, [969] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(5634), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2204), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(5353), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3664), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3080), - [sym_postfix_unary_expression] = STATE(3111), - [sym_prefix_unary_expression] = STATE(3111), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6161), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3080), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3111), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3080), - [sym_member_access_expression] = STATE(2484), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3111), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7773), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(3080), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3080), - [sym_typeof_expression] = STATE(3080), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2484), - [sym_literal] = STATE(3080), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(5152), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2196), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(5625), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3356), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3102), + [sym_postfix_unary_expression] = STATE(3079), + [sym_prefix_unary_expression] = STATE(3079), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6134), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3102), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3079), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3102), + [sym_member_access_expression] = STATE(2472), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3079), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7627), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(3102), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3102), + [sym_typeof_expression] = STATE(3102), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2472), + [sym_literal] = STATE(3102), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(969), [sym_preproc_endregion] = STATE(969), [sym_preproc_line] = STATE(969), @@ -205620,47 +205506,47 @@ 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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1481), - [anon_sym_LPAREN] = ACTIONS(2015), - [anon_sym_ref] = ACTIONS(2017), - [anon_sym_LBRACE] = ACTIONS(1487), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1479), + [anon_sym_LPAREN] = ACTIONS(1511), + [anon_sym_ref] = ACTIONS(1513), + [anon_sym_LBRACE] = ACTIONS(1481), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1101), + [anon_sym_new] = ACTIONS(1515), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1067), - [anon_sym_BANG] = ACTIONS(2021), - [anon_sym_TILDE] = ACTIONS(2021), - [anon_sym_PLUS_PLUS] = ACTIONS(2021), - [anon_sym_DASH_DASH] = ACTIONS(2021), + [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(2019), - [anon_sym_DASH] = ACTIONS(2019), - [anon_sym_STAR] = ACTIONS(1229), - [anon_sym_CARET] = ACTIONS(2021), - [anon_sym_AMP] = ACTIONS(2021), + [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(1067), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1233), + [anon_sym_throw] = ACTIONS(1517), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1235), - [anon_sym_DOT_DOT] = ACTIONS(1237), + [anon_sym_await] = ACTIONS(1519), + [anon_sym_DOT_DOT] = ACTIONS(1521), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -205685,7 +205571,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(1089), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -205702,84 +205588,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [970] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(5634), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2204), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(5354), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3664), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3080), - [sym_postfix_unary_expression] = STATE(3111), - [sym_prefix_unary_expression] = STATE(3111), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6161), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3080), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3111), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3080), - [sym_member_access_expression] = STATE(2484), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3111), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7773), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(3080), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3080), - [sym_typeof_expression] = STATE(3080), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2484), - [sym_literal] = STATE(3080), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(5873), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2238), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(5289), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3468), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3102), + [sym_postfix_unary_expression] = STATE(3079), + [sym_prefix_unary_expression] = STATE(3079), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6134), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3102), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3079), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3102), + [sym_member_access_expression] = STATE(2472), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3079), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7309), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(3102), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3102), + [sym_typeof_expression] = STATE(3102), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2472), + [sym_literal] = STATE(3102), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(970), [sym_preproc_endregion] = STATE(970), [sym_preproc_line] = STATE(970), @@ -205789,47 +205675,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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1481), - [anon_sym_LPAREN] = ACTIONS(2015), - [anon_sym_ref] = ACTIONS(2017), - [anon_sym_LBRACE] = ACTIONS(1487), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1479), + [anon_sym_LPAREN] = ACTIONS(659), + [anon_sym_ref] = ACTIONS(663), + [anon_sym_LBRACE] = ACTIONS(1481), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1101), + [anon_sym_new] = ACTIONS(1059), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1067), - [anon_sym_BANG] = ACTIONS(2021), - [anon_sym_TILDE] = ACTIONS(2021), - [anon_sym_PLUS_PLUS] = ACTIONS(2021), - [anon_sym_DASH_DASH] = ACTIONS(2021), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(1485), + [anon_sym_TILDE] = ACTIONS(1485), + [anon_sym_PLUS_PLUS] = ACTIONS(1485), + [anon_sym_DASH_DASH] = ACTIONS(1485), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(2019), - [anon_sym_DASH] = ACTIONS(2019), - [anon_sym_STAR] = ACTIONS(1229), - [anon_sym_CARET] = ACTIONS(2021), - [anon_sym_AMP] = ACTIONS(2021), + [anon_sym_PLUS] = ACTIONS(1483), + [anon_sym_DASH] = ACTIONS(1483), + [anon_sym_STAR] = ACTIONS(683), + [anon_sym_CARET] = ACTIONS(1485), + [anon_sym_AMP] = ACTIONS(1485), [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(1067), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1233), + [anon_sym_throw] = ACTIONS(1077), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1235), - [anon_sym_DOT_DOT] = ACTIONS(1237), + [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), @@ -205854,7 +205740,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(1089), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -205871,84 +205757,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [971] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(5634), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2204), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(5355), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3664), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3080), - [sym_postfix_unary_expression] = STATE(3111), - [sym_prefix_unary_expression] = STATE(3111), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6161), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3080), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3111), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3080), - [sym_member_access_expression] = STATE(2484), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3111), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7773), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(3080), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3080), - [sym_typeof_expression] = STATE(3080), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2484), - [sym_literal] = STATE(3080), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(5896), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2362), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(5584), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3661), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3102), + [sym_postfix_unary_expression] = STATE(3079), + [sym_prefix_unary_expression] = STATE(3079), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6129), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3102), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3079), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3102), + [sym_member_access_expression] = STATE(2472), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3079), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7367), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(3102), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3102), + [sym_typeof_expression] = STATE(3102), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2472), + [sym_literal] = STATE(3102), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(971), [sym_preproc_endregion] = STATE(971), [sym_preproc_line] = STATE(971), @@ -205958,47 +205844,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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1481), - [anon_sym_LPAREN] = ACTIONS(2015), - [anon_sym_ref] = ACTIONS(2017), - [anon_sym_LBRACE] = ACTIONS(1487), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1479), + [anon_sym_LPAREN] = ACTIONS(2135), + [anon_sym_ref] = ACTIONS(2137), + [anon_sym_LBRACE] = ACTIONS(1481), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1101), + [anon_sym_new] = ACTIONS(2139), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1067), - [anon_sym_BANG] = ACTIONS(2021), - [anon_sym_TILDE] = ACTIONS(2021), - [anon_sym_PLUS_PLUS] = ACTIONS(2021), - [anon_sym_DASH_DASH] = ACTIONS(2021), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(2143), + [anon_sym_TILDE] = ACTIONS(2143), + [anon_sym_PLUS_PLUS] = ACTIONS(2143), + [anon_sym_DASH_DASH] = ACTIONS(2143), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(2019), - [anon_sym_DASH] = ACTIONS(2019), - [anon_sym_STAR] = ACTIONS(1229), - [anon_sym_CARET] = ACTIONS(2021), - [anon_sym_AMP] = ACTIONS(2021), + [anon_sym_PLUS] = ACTIONS(2141), + [anon_sym_DASH] = ACTIONS(2141), + [anon_sym_STAR] = ACTIONS(2145), + [anon_sym_CARET] = ACTIONS(2143), + [anon_sym_AMP] = ACTIONS(2143), [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(1067), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1233), + [anon_sym_throw] = ACTIONS(2147), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1235), - [anon_sym_DOT_DOT] = ACTIONS(1237), + [anon_sym_await] = ACTIONS(2149), + [anon_sym_DOT_DOT] = ACTIONS(2151), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -206023,7 +205909,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(1089), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -206040,84 +205926,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [972] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(5910), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2247), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(5365), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3379), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3080), - [sym_postfix_unary_expression] = STATE(3111), - [sym_prefix_unary_expression] = STATE(3111), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6154), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3080), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3111), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3080), - [sym_member_access_expression] = STATE(2484), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3111), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7575), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(3080), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3080), - [sym_typeof_expression] = STATE(3080), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2484), - [sym_literal] = STATE(3080), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(5873), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2238), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(5083), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3468), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3102), + [sym_postfix_unary_expression] = STATE(3079), + [sym_prefix_unary_expression] = STATE(3079), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6134), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3102), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3079), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3102), + [sym_member_access_expression] = STATE(2472), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3079), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7309), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(3102), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3102), + [sym_typeof_expression] = STATE(3102), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2472), + [sym_literal] = STATE(3102), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(972), [sym_preproc_endregion] = STATE(972), [sym_preproc_line] = STATE(972), @@ -206127,47 +206013,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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1481), - [anon_sym_LPAREN] = ACTIONS(895), - [anon_sym_ref] = ACTIONS(897), - [anon_sym_LBRACE] = ACTIONS(1487), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1479), + [anon_sym_LPAREN] = ACTIONS(659), + [anon_sym_ref] = ACTIONS(663), + [anon_sym_LBRACE] = ACTIONS(1481), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1061), + [anon_sym_new] = ACTIONS(1059), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1067), - [anon_sym_BANG] = ACTIONS(1495), - [anon_sym_TILDE] = ACTIONS(1495), - [anon_sym_PLUS_PLUS] = ACTIONS(1495), - [anon_sym_DASH_DASH] = ACTIONS(1495), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(1485), + [anon_sym_TILDE] = ACTIONS(1485), + [anon_sym_PLUS_PLUS] = ACTIONS(1485), + [anon_sym_DASH_DASH] = ACTIONS(1485), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1493), - [anon_sym_DASH] = ACTIONS(1493), - [anon_sym_STAR] = ACTIONS(905), - [anon_sym_CARET] = ACTIONS(1495), - [anon_sym_AMP] = ACTIONS(1495), + [anon_sym_PLUS] = ACTIONS(1483), + [anon_sym_DASH] = ACTIONS(1483), + [anon_sym_STAR] = ACTIONS(683), + [anon_sym_CARET] = ACTIONS(1485), + [anon_sym_AMP] = ACTIONS(1485), [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(1067), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1079), + [anon_sym_throw] = ACTIONS(1077), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1081), - [anon_sym_DOT_DOT] = ACTIONS(911), + [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), @@ -206192,7 +206078,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(1089), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -206209,84 +206095,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [973] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(5634), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2204), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(5425), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3664), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3080), - [sym_postfix_unary_expression] = STATE(3111), - [sym_prefix_unary_expression] = STATE(3111), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6161), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3080), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3111), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3080), - [sym_member_access_expression] = STATE(2484), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3111), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7773), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(3080), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3080), - [sym_typeof_expression] = STATE(3080), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2484), - [sym_literal] = STATE(3080), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(5873), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2238), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(3507), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3526), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3102), + [sym_postfix_unary_expression] = STATE(3079), + [sym_prefix_unary_expression] = STATE(3079), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6134), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3102), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3079), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3102), + [sym_member_access_expression] = STATE(2472), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3079), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7455), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(3102), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3102), + [sym_typeof_expression] = STATE(3102), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2472), + [sym_literal] = STATE(3102), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(973), [sym_preproc_endregion] = STATE(973), [sym_preproc_line] = STATE(973), @@ -206296,47 +206182,47 @@ 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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1481), - [anon_sym_LPAREN] = ACTIONS(2015), - [anon_sym_ref] = ACTIONS(2017), - [anon_sym_LBRACE] = ACTIONS(1487), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1479), + [anon_sym_LPAREN] = ACTIONS(1629), + [anon_sym_ref] = ACTIONS(1631), + [anon_sym_LBRACE] = ACTIONS(1481), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1101), + [anon_sym_new] = ACTIONS(1515), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1067), - [anon_sym_BANG] = ACTIONS(2021), - [anon_sym_TILDE] = ACTIONS(2021), - [anon_sym_PLUS_PLUS] = ACTIONS(2021), - [anon_sym_DASH_DASH] = ACTIONS(2021), + [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(2019), - [anon_sym_DASH] = ACTIONS(2019), - [anon_sym_STAR] = ACTIONS(1229), - [anon_sym_CARET] = ACTIONS(2021), - [anon_sym_AMP] = ACTIONS(2021), + [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_scoped] = ACTIONS(85), [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1067), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1233), + [anon_sym_throw] = ACTIONS(1633), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1235), - [anon_sym_DOT_DOT] = ACTIONS(1237), + [anon_sym_await] = ACTIONS(1635), + [anon_sym_DOT_DOT] = ACTIONS(1637), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -206361,7 +206247,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(1089), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -206378,84 +206264,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [974] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2420), - [sym__name] = STATE(5888), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2384), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(5126), - [sym_non_lvalue_expression] = STATE(3066), - [sym_lvalue_expression] = STATE(3554), - [sym__expression_statement_expression] = STATE(3006), - [sym_assignment_expression] = STATE(3020), - [sym_binary_expression] = STATE(3006), - [sym_postfix_unary_expression] = STATE(3020), - [sym_prefix_unary_expression] = STATE(3020), - [sym__pointer_indirection_expression] = STATE(2423), - [sym_query_expression] = STATE(3006), - [sym_from_clause] = STATE(6151), - [sym_conditional_expression] = STATE(3006), - [sym_conditional_access_expression] = STATE(3006), - [sym_as_expression] = STATE(3006), - [sym_is_expression] = STATE(3006), - [sym_is_pattern_expression] = STATE(3006), - [sym_cast_expression] = STATE(3006), - [sym_checked_expression] = STATE(3006), - [sym_invocation_expression] = STATE(3020), - [sym_switch_expression] = STATE(3006), - [sym_await_expression] = STATE(3020), - [sym_throw_expression] = STATE(3006), - [sym_element_access_expression] = STATE(2423), - [sym_interpolated_string_expression] = STATE(3006), - [sym_member_access_expression] = STATE(2423), - [sym_object_creation_expression] = STATE(3020), - [sym_parenthesized_expression] = STATE(3020), - [sym__parenthesized_lvalue_expression] = STATE(2423), - [sym_lambda_expression] = STATE(3006), - [sym__lambda_expression_init] = STATE(7640), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3006), - [sym_anonymous_method_expression] = STATE(3006), - [sym_anonymous_object_creation_expression] = STATE(3006), - [sym_implicit_array_creation_expression] = STATE(3006), - [sym_implicit_object_creation_expression] = STATE(3006), - [sym_implicit_stackalloc_expression] = STATE(3006), - [sym_initializer_expression] = STATE(3006), - [sym_default_expression] = STATE(3006), - [sym_with_expression] = STATE(3006), - [sym_sizeof_expression] = STATE(3006), - [sym_typeof_expression] = STATE(3006), - [sym_makeref_expression] = STATE(3006), - [sym_ref_expression] = STATE(3006), - [sym_reftype_expression] = STATE(3006), - [sym_refvalue_expression] = STATE(3006), - [sym_stackalloc_expression] = STATE(3006), - [sym_range_expression] = STATE(3006), - [sym_tuple_expression] = STATE(2423), - [sym_literal] = STATE(3006), - [sym_character_literal] = STATE(3011), - [sym_string_literal] = STATE(3011), - [sym_raw_string_literal] = STATE(3011), - [sym_boolean_literal] = STATE(3011), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3006), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(5881), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2386), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(5670), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(2471), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3102), + [sym_postfix_unary_expression] = STATE(3079), + [sym_prefix_unary_expression] = STATE(3079), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6134), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3102), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3079), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3102), + [sym_member_access_expression] = STATE(2472), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3079), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7425), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(3102), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3102), + [sym_typeof_expression] = STATE(3102), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2472), + [sym_literal] = STATE(3102), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(974), [sym_preproc_endregion] = STATE(974), [sym_preproc_line] = STATE(974), @@ -206465,47 +206351,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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3440), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1241), - [anon_sym_LPAREN] = ACTIONS(2281), - [anon_sym_ref] = ACTIONS(2283), - [anon_sym_LBRACE] = ACTIONS(1247), - [anon_sym_delegate] = ACTIONS(1249), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1479), + [anon_sym_LPAREN] = ACTIONS(2939), + [anon_sym_ref] = ACTIONS(715), + [anon_sym_LBRACE] = ACTIONS(1481), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(2285), + [anon_sym_new] = ACTIONS(1059), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1253), - [anon_sym_BANG] = ACTIONS(2289), - [anon_sym_TILDE] = ACTIONS(2289), - [anon_sym_PLUS_PLUS] = ACTIONS(2289), - [anon_sym_DASH_DASH] = ACTIONS(2289), - [anon_sym_true] = ACTIONS(1259), - [anon_sym_false] = ACTIONS(1259), - [anon_sym_PLUS] = ACTIONS(2287), - [anon_sym_DASH] = ACTIONS(2287), - [anon_sym_STAR] = ACTIONS(2291), - [anon_sym_CARET] = ACTIONS(2289), - [anon_sym_AMP] = ACTIONS(2289), - [anon_sym_this] = ACTIONS(1263), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(1525), + [anon_sym_TILDE] = ACTIONS(1525), + [anon_sym_PLUS_PLUS] = ACTIONS(1525), + [anon_sym_DASH_DASH] = ACTIONS(1525), + [anon_sym_true] = ACTIONS(77), + [anon_sym_false] = ACTIONS(77), + [anon_sym_PLUS] = ACTIONS(1523), + [anon_sym_DASH] = ACTIONS(1523), + [anon_sym_STAR] = ACTIONS(1905), + [anon_sym_CARET] = ACTIONS(1525), + [anon_sym_AMP] = ACTIONS(1525), + [anon_sym_this] = ACTIONS(83), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1265), + [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1267), - [anon_sym_unchecked] = ACTIONS(1253), + [sym_predefined_type] = ACTIONS(1265), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1269), - [anon_sym_throw] = ACTIONS(2293), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(1527), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2295), - [anon_sym_DOT_DOT] = ACTIONS(2297), + [anon_sym_await] = ACTIONS(1529), + [anon_sym_DOT_DOT] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -206518,19 +206404,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1277), - [anon_sym_sizeof] = ACTIONS(1279), - [anon_sym_typeof] = ACTIONS(1281), - [anon_sym___makeref] = ACTIONS(1283), - [anon_sym___reftype] = ACTIONS(1285), - [anon_sym___refvalue] = ACTIONS(1287), - [sym_null_literal] = ACTIONS(1289), - [anon_sym_SQUOTE] = ACTIONS(1291), - [sym_integer_literal] = ACTIONS(1289), - [sym_real_literal] = ACTIONS(1293), - [anon_sym_DQUOTE] = ACTIONS(1295), - [sym_verbatim_string_literal] = ACTIONS(1293), - [aux_sym_preproc_if_token1] = ACTIONS(1297), + [anon_sym_stackalloc] = ACTIONS(127), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_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), @@ -206541,90 +206427,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1299), - [sym_interpolation_verbatim_start] = ACTIONS(1301), - [sym_interpolation_raw_start] = ACTIONS(1303), - [sym_raw_string_start] = ACTIONS(1305), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [sym_interpolation_raw_start] = ACTIONS(155), + [sym_raw_string_start] = ACTIONS(157), }, [975] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(3184), - [sym__name] = STATE(5906), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2312), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2269), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(4675), - [sym_non_lvalue_expression] = STATE(4541), - [sym_lvalue_expression] = STATE(3439), - [sym__expression_statement_expression] = STATE(4529), - [sym_assignment_expression] = STATE(4543), - [sym_binary_expression] = STATE(4529), - [sym_postfix_unary_expression] = STATE(4543), - [sym_prefix_unary_expression] = STATE(4543), - [sym__pointer_indirection_expression] = STATE(3175), - [sym_query_expression] = STATE(4529), - [sym_from_clause] = STATE(6169), - [sym_conditional_expression] = STATE(4529), - [sym_conditional_access_expression] = STATE(4529), - [sym_as_expression] = STATE(4529), - [sym_is_expression] = STATE(4529), - [sym_is_pattern_expression] = STATE(4529), - [sym_cast_expression] = STATE(4529), - [sym_checked_expression] = STATE(4529), - [sym_invocation_expression] = STATE(4543), - [sym_switch_expression] = STATE(4529), - [sym_await_expression] = STATE(4543), - [sym_throw_expression] = STATE(4529), - [sym_element_access_expression] = STATE(3175), - [sym_interpolated_string_expression] = STATE(4529), - [sym_member_access_expression] = STATE(3175), - [sym_object_creation_expression] = STATE(4543), - [sym_parenthesized_expression] = STATE(4543), - [sym__parenthesized_lvalue_expression] = STATE(3175), - [sym_lambda_expression] = STATE(4529), - [sym__lambda_expression_init] = STATE(7684), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(4529), - [sym_anonymous_method_expression] = STATE(4529), - [sym_anonymous_object_creation_expression] = STATE(4529), - [sym_implicit_array_creation_expression] = STATE(4529), - [sym_implicit_object_creation_expression] = STATE(4529), - [sym_implicit_stackalloc_expression] = STATE(4529), - [sym_initializer_expression] = STATE(4529), - [sym_default_expression] = STATE(4529), - [sym_with_expression] = STATE(4529), - [sym_sizeof_expression] = STATE(4529), - [sym_typeof_expression] = STATE(4529), - [sym_makeref_expression] = STATE(4529), - [sym_ref_expression] = STATE(4529), - [sym_reftype_expression] = STATE(4529), - [sym_refvalue_expression] = STATE(4529), - [sym_stackalloc_expression] = STATE(4529), - [sym_range_expression] = STATE(4529), - [sym_tuple_expression] = STATE(3175), - [sym_literal] = STATE(4529), - [sym_character_literal] = STATE(4536), - [sym_string_literal] = STATE(4536), - [sym_raw_string_literal] = STATE(4536), - [sym_boolean_literal] = STATE(4536), - [sym_identifier] = STATE(2246), - [sym__reserved_identifier] = STATE(2240), - [sym_preproc_if_in_expression] = STATE(4529), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(5152), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2196), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(4955), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3510), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3102), + [sym_postfix_unary_expression] = STATE(3079), + [sym_prefix_unary_expression] = STATE(3079), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6134), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3102), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3079), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3102), + [sym_member_access_expression] = STATE(2472), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3079), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7425), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(3102), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3102), + [sym_typeof_expression] = STATE(3102), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2472), + [sym_literal] = STATE(3102), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(975), [sym_preproc_endregion] = STATE(975), [sym_preproc_line] = STATE(975), @@ -206634,166 +206520,166 @@ 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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3363), - [sym__identifier_token] = ACTIONS(1387), - [anon_sym_alias] = ACTIONS(1389), - [anon_sym_global] = ACTIONS(1389), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1391), - [anon_sym_LPAREN] = ACTIONS(1775), - [anon_sym_ref] = ACTIONS(1777), - [anon_sym_LBRACE] = ACTIONS(1397), - [anon_sym_delegate] = ACTIONS(1399), - [anon_sym_async] = ACTIONS(1047), - [anon_sym_file] = ACTIONS(1389), - [anon_sym_new] = ACTIONS(1401), - [anon_sym_where] = ACTIONS(1389), - [anon_sym_notnull] = ACTIONS(1389), - [anon_sym_unmanaged] = ACTIONS(1389), - [anon_sym_checked] = ACTIONS(1403), - [anon_sym_BANG] = ACTIONS(1781), - [anon_sym_TILDE] = ACTIONS(1781), - [anon_sym_PLUS_PLUS] = ACTIONS(1781), - [anon_sym_DASH_DASH] = ACTIONS(1781), - [anon_sym_true] = ACTIONS(1409), - [anon_sym_false] = ACTIONS(1409), - [anon_sym_PLUS] = ACTIONS(1779), - [anon_sym_DASH] = ACTIONS(1779), - [anon_sym_STAR] = ACTIONS(1411), - [anon_sym_CARET] = ACTIONS(1781), - [anon_sym_AMP] = ACTIONS(1781), - [anon_sym_this] = ACTIONS(1413), - [anon_sym_scoped] = ACTIONS(1415), - [anon_sym_base] = ACTIONS(1417), - [anon_sym_var] = ACTIONS(1419), - [sym_predefined_type] = ACTIONS(1421), - [anon_sym_unchecked] = ACTIONS(1403), - [anon_sym_yield] = ACTIONS(1389), - [anon_sym_default] = ACTIONS(1423), - [anon_sym_throw] = ACTIONS(1783), - [anon_sym_when] = ACTIONS(1389), - [anon_sym_await] = ACTIONS(1785), - [anon_sym_DOT_DOT] = ACTIONS(1787), - [anon_sym_from] = ACTIONS(1431), - [anon_sym_into] = ACTIONS(1389), - [anon_sym_join] = ACTIONS(1389), - [anon_sym_on] = ACTIONS(1389), - [anon_sym_equals] = ACTIONS(1389), - [anon_sym_let] = ACTIONS(1389), - [anon_sym_orderby] = ACTIONS(1389), - [anon_sym_ascending] = ACTIONS(1389), - [anon_sym_descending] = ACTIONS(1389), - [anon_sym_group] = ACTIONS(1389), - [anon_sym_by] = ACTIONS(1389), - [anon_sym_select] = ACTIONS(1389), - [anon_sym_stackalloc] = ACTIONS(1433), - [anon_sym_sizeof] = ACTIONS(1435), - [anon_sym_typeof] = ACTIONS(1437), - [anon_sym___makeref] = ACTIONS(1439), - [anon_sym___reftype] = ACTIONS(1441), - [anon_sym___refvalue] = ACTIONS(1443), - [sym_null_literal] = ACTIONS(1445), - [anon_sym_SQUOTE] = ACTIONS(1447), - [sym_integer_literal] = ACTIONS(1445), - [sym_real_literal] = ACTIONS(1449), - [anon_sym_DQUOTE] = ACTIONS(1451), - [sym_verbatim_string_literal] = ACTIONS(1449), - [aux_sym_preproc_if_token1] = ACTIONS(1453), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1455), - [sym_interpolation_verbatim_start] = ACTIONS(1457), - [sym_interpolation_raw_start] = ACTIONS(1459), - [sym_raw_string_start] = ACTIONS(1461), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), + [sym__identifier_token] = ACTIONS(25), + [anon_sym_alias] = ACTIONS(29), + [anon_sym_global] = ACTIONS(29), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1479), + [anon_sym_LPAREN] = ACTIONS(43), + [anon_sym_ref] = ACTIONS(715), + [anon_sym_LBRACE] = ACTIONS(1481), + [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(1525), + [anon_sym_TILDE] = ACTIONS(1525), + [anon_sym_PLUS_PLUS] = ACTIONS(1525), + [anon_sym_DASH_DASH] = ACTIONS(1525), + [anon_sym_true] = ACTIONS(77), + [anon_sym_false] = ACTIONS(77), + [anon_sym_PLUS] = ACTIONS(1523), + [anon_sym_DASH] = ACTIONS(1523), + [anon_sym_STAR] = ACTIONS(81), + [anon_sym_CARET] = ACTIONS(1525), + [anon_sym_AMP] = ACTIONS(1525), + [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(1527), + [anon_sym_when] = ACTIONS(29), + [anon_sym_await] = ACTIONS(1529), + [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), }, [976] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(5634), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2204), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(3519), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3664), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3080), - [sym_postfix_unary_expression] = STATE(3111), - [sym_prefix_unary_expression] = STATE(3111), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6161), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3080), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3111), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3080), - [sym_member_access_expression] = STATE(2484), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3111), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7773), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(3080), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3080), - [sym_typeof_expression] = STATE(3080), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2484), - [sym_literal] = STATE(3080), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(5152), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2196), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(5037), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3510), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3102), + [sym_postfix_unary_expression] = STATE(3079), + [sym_prefix_unary_expression] = STATE(3079), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6134), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3102), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3079), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3102), + [sym_member_access_expression] = STATE(2472), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3079), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7425), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(3102), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3102), + [sym_typeof_expression] = STATE(3102), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2472), + [sym_literal] = STATE(3102), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(976), [sym_preproc_endregion] = STATE(976), [sym_preproc_line] = STATE(976), @@ -206803,47 +206689,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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1481), - [anon_sym_LPAREN] = ACTIONS(2015), - [anon_sym_ref] = ACTIONS(2017), - [anon_sym_LBRACE] = ACTIONS(1487), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1479), + [anon_sym_LPAREN] = ACTIONS(43), + [anon_sym_ref] = ACTIONS(715), + [anon_sym_LBRACE] = ACTIONS(1481), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1101), + [anon_sym_new] = ACTIONS(1059), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1067), - [anon_sym_BANG] = ACTIONS(2021), - [anon_sym_TILDE] = ACTIONS(2021), - [anon_sym_PLUS_PLUS] = ACTIONS(2021), - [anon_sym_DASH_DASH] = ACTIONS(2021), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(1525), + [anon_sym_TILDE] = ACTIONS(1525), + [anon_sym_PLUS_PLUS] = ACTIONS(1525), + [anon_sym_DASH_DASH] = ACTIONS(1525), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(2019), - [anon_sym_DASH] = ACTIONS(2019), - [anon_sym_STAR] = ACTIONS(1229), - [anon_sym_CARET] = ACTIONS(2021), - [anon_sym_AMP] = ACTIONS(2021), + [anon_sym_PLUS] = ACTIONS(1523), + [anon_sym_DASH] = ACTIONS(1523), + [anon_sym_STAR] = ACTIONS(81), + [anon_sym_CARET] = ACTIONS(1525), + [anon_sym_AMP] = ACTIONS(1525), [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(1067), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1233), + [anon_sym_throw] = ACTIONS(1527), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1235), - [anon_sym_DOT_DOT] = ACTIONS(1237), + [anon_sym_await] = ACTIONS(1529), + [anon_sym_DOT_DOT] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -206868,7 +206754,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(1089), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -206885,84 +206771,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [977] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(5160), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2204), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(5468), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3461), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3080), - [sym_postfix_unary_expression] = STATE(3111), - [sym_prefix_unary_expression] = STATE(3111), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6154), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3080), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3111), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3080), - [sym_member_access_expression] = STATE(2484), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3111), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7547), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(3080), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3080), - [sym_typeof_expression] = STATE(3080), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2484), - [sym_literal] = STATE(3080), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(5152), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2196), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(3528), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3510), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3102), + [sym_postfix_unary_expression] = STATE(3079), + [sym_prefix_unary_expression] = STATE(3079), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6134), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3102), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3079), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3102), + [sym_member_access_expression] = STATE(2472), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3079), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7425), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(3102), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3102), + [sym_typeof_expression] = STATE(3102), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2472), + [sym_literal] = STATE(3102), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(977), [sym_preproc_endregion] = STATE(977), [sym_preproc_line] = STATE(977), @@ -206972,47 +206858,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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1481), - [anon_sym_LPAREN] = ACTIONS(1497), - [anon_sym_ref] = ACTIONS(1499), - [anon_sym_LBRACE] = ACTIONS(1487), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1479), + [anon_sym_LPAREN] = ACTIONS(43), + [anon_sym_ref] = ACTIONS(715), + [anon_sym_LBRACE] = ACTIONS(1481), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1501), + [anon_sym_new] = ACTIONS(1059), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = 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_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(1525), + [anon_sym_TILDE] = ACTIONS(1525), + [anon_sym_PLUS_PLUS] = ACTIONS(1525), + [anon_sym_DASH_DASH] = ACTIONS(1525), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(79), - [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(1523), + [anon_sym_DASH] = ACTIONS(1523), [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(75), - [anon_sym_AMP] = ACTIONS(75), + [anon_sym_CARET] = ACTIONS(1525), + [anon_sym_AMP] = ACTIONS(1525), [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(1067), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1503), + [anon_sym_throw] = ACTIONS(1527), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1505), - [anon_sym_DOT_DOT] = ACTIONS(1507), + [anon_sym_await] = ACTIONS(1529), + [anon_sym_DOT_DOT] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -207037,7 +206923,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(1089), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -207054,84 +206940,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [978] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2762), - [sym__name] = STATE(5889), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2204), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(4971), - [sym_non_lvalue_expression] = STATE(3438), - [sym_lvalue_expression] = STATE(3548), - [sym__expression_statement_expression] = STATE(3362), - [sym_assignment_expression] = STATE(3449), - [sym_binary_expression] = STATE(3362), - [sym_postfix_unary_expression] = STATE(3449), - [sym_prefix_unary_expression] = STATE(3449), - [sym__pointer_indirection_expression] = STATE(2747), - [sym_query_expression] = STATE(3362), - [sym_from_clause] = STATE(6146), - [sym_conditional_expression] = STATE(3362), - [sym_conditional_access_expression] = STATE(3362), - [sym_as_expression] = STATE(3362), - [sym_is_expression] = STATE(3362), - [sym_is_pattern_expression] = STATE(3362), - [sym_cast_expression] = STATE(3362), - [sym_checked_expression] = STATE(3362), - [sym_invocation_expression] = STATE(3449), - [sym_switch_expression] = STATE(3362), - [sym_await_expression] = STATE(3449), - [sym_throw_expression] = STATE(3362), - [sym_element_access_expression] = STATE(2747), - [sym_interpolated_string_expression] = STATE(3362), - [sym_member_access_expression] = STATE(2747), - [sym_object_creation_expression] = STATE(3449), - [sym_parenthesized_expression] = STATE(3449), - [sym__parenthesized_lvalue_expression] = STATE(2747), - [sym_lambda_expression] = STATE(3362), - [sym__lambda_expression_init] = STATE(7772), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3362), - [sym_anonymous_method_expression] = STATE(3362), - [sym_anonymous_object_creation_expression] = STATE(3362), - [sym_implicit_array_creation_expression] = STATE(3362), - [sym_implicit_object_creation_expression] = STATE(3362), - [sym_implicit_stackalloc_expression] = STATE(3362), - [sym_initializer_expression] = STATE(3362), - [sym_default_expression] = STATE(3362), - [sym_with_expression] = STATE(3362), - [sym_sizeof_expression] = STATE(3362), - [sym_typeof_expression] = STATE(3362), - [sym_makeref_expression] = STATE(3362), - [sym_ref_expression] = STATE(3362), - [sym_reftype_expression] = STATE(3362), - [sym_refvalue_expression] = STATE(3362), - [sym_stackalloc_expression] = STATE(3362), - [sym_range_expression] = STATE(3362), - [sym_tuple_expression] = STATE(2747), - [sym_literal] = STATE(3362), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3362), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(5873), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2238), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(5511), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3468), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3102), + [sym_postfix_unary_expression] = STATE(3079), + [sym_prefix_unary_expression] = STATE(3079), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6134), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3102), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3079), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3102), + [sym_member_access_expression] = STATE(2472), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3079), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7309), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(3102), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3102), + [sym_typeof_expression] = STATE(3102), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2472), + [sym_literal] = STATE(3102), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(978), [sym_preproc_endregion] = STATE(978), [sym_preproc_line] = STATE(978), @@ -207141,47 +207027,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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3385), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1307), - [anon_sym_LPAREN] = ACTIONS(1789), - [anon_sym_ref] = ACTIONS(1791), - [anon_sym_LBRACE] = ACTIONS(1313), - [anon_sym_delegate] = ACTIONS(1315), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1479), + [anon_sym_LPAREN] = ACTIONS(659), + [anon_sym_ref] = ACTIONS(663), + [anon_sym_LBRACE] = ACTIONS(1481), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1317), + [anon_sym_new] = ACTIONS(1059), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1319), - [anon_sym_BANG] = ACTIONS(1795), - [anon_sym_TILDE] = ACTIONS(1795), - [anon_sym_PLUS_PLUS] = ACTIONS(1795), - [anon_sym_DASH_DASH] = ACTIONS(1795), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(1485), + [anon_sym_TILDE] = ACTIONS(1485), + [anon_sym_PLUS_PLUS] = ACTIONS(1485), + [anon_sym_DASH_DASH] = ACTIONS(1485), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1793), - [anon_sym_DASH] = ACTIONS(1793), - [anon_sym_STAR] = ACTIONS(1797), - [anon_sym_CARET] = ACTIONS(1795), - [anon_sym_AMP] = ACTIONS(1795), - [anon_sym_this] = ACTIONS(1323), + [anon_sym_PLUS] = ACTIONS(1483), + [anon_sym_DASH] = ACTIONS(1483), + [anon_sym_STAR] = ACTIONS(683), + [anon_sym_CARET] = ACTIONS(1485), + [anon_sym_AMP] = ACTIONS(1485), + [anon_sym_this] = ACTIONS(83), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1325), + [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1319), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1799), + [anon_sym_throw] = ACTIONS(1077), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1801), - [anon_sym_DOT_DOT] = ACTIONS(1803), + [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), @@ -207194,19 +207080,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1333), + [anon_sym_stackalloc] = ACTIONS(127), [anon_sym_sizeof] = ACTIONS(129), [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(1335), - [anon_sym___reftype] = ACTIONS(1337), - [anon_sym___refvalue] = ACTIONS(1339), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), [sym_null_literal] = ACTIONS(139), [anon_sym_SQUOTE] = ACTIONS(141), [sym_integer_literal] = ACTIONS(139), [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1341), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -207223,84 +207109,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [979] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(3184), - [sym__name] = STATE(5906), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2312), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2269), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(4677), - [sym_non_lvalue_expression] = STATE(4541), - [sym_lvalue_expression] = STATE(3439), - [sym__expression_statement_expression] = STATE(4529), - [sym_assignment_expression] = STATE(4543), - [sym_binary_expression] = STATE(4529), - [sym_postfix_unary_expression] = STATE(4543), - [sym_prefix_unary_expression] = STATE(4543), - [sym__pointer_indirection_expression] = STATE(3175), - [sym_query_expression] = STATE(4529), - [sym_from_clause] = STATE(6169), - [sym_conditional_expression] = STATE(4529), - [sym_conditional_access_expression] = STATE(4529), - [sym_as_expression] = STATE(4529), - [sym_is_expression] = STATE(4529), - [sym_is_pattern_expression] = STATE(4529), - [sym_cast_expression] = STATE(4529), - [sym_checked_expression] = STATE(4529), - [sym_invocation_expression] = STATE(4543), - [sym_switch_expression] = STATE(4529), - [sym_await_expression] = STATE(4543), - [sym_throw_expression] = STATE(4529), - [sym_element_access_expression] = STATE(3175), - [sym_interpolated_string_expression] = STATE(4529), - [sym_member_access_expression] = STATE(3175), - [sym_object_creation_expression] = STATE(4543), - [sym_parenthesized_expression] = STATE(4543), - [sym__parenthesized_lvalue_expression] = STATE(3175), - [sym_lambda_expression] = STATE(4529), - [sym__lambda_expression_init] = STATE(7684), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(4529), - [sym_anonymous_method_expression] = STATE(4529), - [sym_anonymous_object_creation_expression] = STATE(4529), - [sym_implicit_array_creation_expression] = STATE(4529), - [sym_implicit_object_creation_expression] = STATE(4529), - [sym_implicit_stackalloc_expression] = STATE(4529), - [sym_initializer_expression] = STATE(4529), - [sym_default_expression] = STATE(4529), - [sym_with_expression] = STATE(4529), - [sym_sizeof_expression] = STATE(4529), - [sym_typeof_expression] = STATE(4529), - [sym_makeref_expression] = STATE(4529), - [sym_ref_expression] = STATE(4529), - [sym_reftype_expression] = STATE(4529), - [sym_refvalue_expression] = STATE(4529), - [sym_stackalloc_expression] = STATE(4529), - [sym_range_expression] = STATE(4529), - [sym_tuple_expression] = STATE(3175), - [sym_literal] = STATE(4529), - [sym_character_literal] = STATE(4536), - [sym_string_literal] = STATE(4536), - [sym_raw_string_literal] = STATE(4536), - [sym_boolean_literal] = STATE(4536), - [sym_identifier] = STATE(2246), - [sym__reserved_identifier] = STATE(2240), - [sym_preproc_if_in_expression] = STATE(4529), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(5152), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2196), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(4951), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3510), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3102), + [sym_postfix_unary_expression] = STATE(3079), + [sym_prefix_unary_expression] = STATE(3079), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6134), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3102), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3079), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3102), + [sym_member_access_expression] = STATE(2472), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3079), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7425), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(3102), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3102), + [sym_typeof_expression] = STATE(3102), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2472), + [sym_literal] = STATE(3102), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(979), [sym_preproc_endregion] = STATE(979), [sym_preproc_line] = STATE(979), @@ -207310,166 +207196,166 @@ 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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3363), - [sym__identifier_token] = ACTIONS(1387), - [anon_sym_alias] = ACTIONS(1389), - [anon_sym_global] = ACTIONS(1389), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1391), - [anon_sym_LPAREN] = ACTIONS(1775), - [anon_sym_ref] = ACTIONS(1777), - [anon_sym_LBRACE] = ACTIONS(1397), - [anon_sym_delegate] = ACTIONS(1399), - [anon_sym_async] = ACTIONS(1047), - [anon_sym_file] = ACTIONS(1389), - [anon_sym_new] = ACTIONS(1401), - [anon_sym_where] = ACTIONS(1389), - [anon_sym_notnull] = ACTIONS(1389), - [anon_sym_unmanaged] = ACTIONS(1389), - [anon_sym_checked] = ACTIONS(1403), - [anon_sym_BANG] = ACTIONS(1781), - [anon_sym_TILDE] = ACTIONS(1781), - [anon_sym_PLUS_PLUS] = ACTIONS(1781), - [anon_sym_DASH_DASH] = ACTIONS(1781), - [anon_sym_true] = ACTIONS(1409), - [anon_sym_false] = ACTIONS(1409), - [anon_sym_PLUS] = ACTIONS(1779), - [anon_sym_DASH] = ACTIONS(1779), - [anon_sym_STAR] = ACTIONS(1411), - [anon_sym_CARET] = ACTIONS(1781), - [anon_sym_AMP] = ACTIONS(1781), - [anon_sym_this] = ACTIONS(1413), - [anon_sym_scoped] = ACTIONS(1415), - [anon_sym_base] = ACTIONS(1417), - [anon_sym_var] = ACTIONS(1419), - [sym_predefined_type] = ACTIONS(1421), - [anon_sym_unchecked] = ACTIONS(1403), - [anon_sym_yield] = ACTIONS(1389), - [anon_sym_default] = ACTIONS(1423), - [anon_sym_throw] = ACTIONS(1783), - [anon_sym_when] = ACTIONS(1389), - [anon_sym_await] = ACTIONS(1785), - [anon_sym_DOT_DOT] = ACTIONS(1787), - [anon_sym_from] = ACTIONS(1431), - [anon_sym_into] = ACTIONS(1389), - [anon_sym_join] = ACTIONS(1389), - [anon_sym_on] = ACTIONS(1389), - [anon_sym_equals] = ACTIONS(1389), - [anon_sym_let] = ACTIONS(1389), - [anon_sym_orderby] = ACTIONS(1389), - [anon_sym_ascending] = ACTIONS(1389), - [anon_sym_descending] = ACTIONS(1389), - [anon_sym_group] = ACTIONS(1389), - [anon_sym_by] = ACTIONS(1389), - [anon_sym_select] = ACTIONS(1389), - [anon_sym_stackalloc] = ACTIONS(1433), - [anon_sym_sizeof] = ACTIONS(1435), - [anon_sym_typeof] = ACTIONS(1437), - [anon_sym___makeref] = ACTIONS(1439), - [anon_sym___reftype] = ACTIONS(1441), - [anon_sym___refvalue] = ACTIONS(1443), - [sym_null_literal] = ACTIONS(1445), - [anon_sym_SQUOTE] = ACTIONS(1447), - [sym_integer_literal] = ACTIONS(1445), - [sym_real_literal] = ACTIONS(1449), - [anon_sym_DQUOTE] = ACTIONS(1451), - [sym_verbatim_string_literal] = ACTIONS(1449), - [aux_sym_preproc_if_token1] = ACTIONS(1453), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1455), - [sym_interpolation_verbatim_start] = ACTIONS(1457), - [sym_interpolation_raw_start] = ACTIONS(1459), - [sym_raw_string_start] = ACTIONS(1461), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), + [sym__identifier_token] = ACTIONS(25), + [anon_sym_alias] = ACTIONS(29), + [anon_sym_global] = ACTIONS(29), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1479), + [anon_sym_LPAREN] = ACTIONS(43), + [anon_sym_ref] = ACTIONS(715), + [anon_sym_LBRACE] = ACTIONS(1481), + [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(1525), + [anon_sym_TILDE] = ACTIONS(1525), + [anon_sym_PLUS_PLUS] = ACTIONS(1525), + [anon_sym_DASH_DASH] = ACTIONS(1525), + [anon_sym_true] = ACTIONS(77), + [anon_sym_false] = ACTIONS(77), + [anon_sym_PLUS] = ACTIONS(1523), + [anon_sym_DASH] = ACTIONS(1523), + [anon_sym_STAR] = ACTIONS(81), + [anon_sym_CARET] = ACTIONS(1525), + [anon_sym_AMP] = ACTIONS(1525), + [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(1527), + [anon_sym_when] = ACTIONS(29), + [anon_sym_await] = ACTIONS(1529), + [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), }, [980] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(3184), - [sym__name] = STATE(5906), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2312), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2269), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(4678), - [sym_non_lvalue_expression] = STATE(4541), - [sym_lvalue_expression] = STATE(3439), - [sym__expression_statement_expression] = STATE(4529), - [sym_assignment_expression] = STATE(4543), - [sym_binary_expression] = STATE(4529), - [sym_postfix_unary_expression] = STATE(4543), - [sym_prefix_unary_expression] = STATE(4543), - [sym__pointer_indirection_expression] = STATE(3175), - [sym_query_expression] = STATE(4529), - [sym_from_clause] = STATE(6169), - [sym_conditional_expression] = STATE(4529), - [sym_conditional_access_expression] = STATE(4529), - [sym_as_expression] = STATE(4529), - [sym_is_expression] = STATE(4529), - [sym_is_pattern_expression] = STATE(4529), - [sym_cast_expression] = STATE(4529), - [sym_checked_expression] = STATE(4529), - [sym_invocation_expression] = STATE(4543), - [sym_switch_expression] = STATE(4529), - [sym_await_expression] = STATE(4543), - [sym_throw_expression] = STATE(4529), - [sym_element_access_expression] = STATE(3175), - [sym_interpolated_string_expression] = STATE(4529), - [sym_member_access_expression] = STATE(3175), - [sym_object_creation_expression] = STATE(4543), - [sym_parenthesized_expression] = STATE(4543), - [sym__parenthesized_lvalue_expression] = STATE(3175), - [sym_lambda_expression] = STATE(4529), - [sym__lambda_expression_init] = STATE(7684), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(4529), - [sym_anonymous_method_expression] = STATE(4529), - [sym_anonymous_object_creation_expression] = STATE(4529), - [sym_implicit_array_creation_expression] = STATE(4529), - [sym_implicit_object_creation_expression] = STATE(4529), - [sym_implicit_stackalloc_expression] = STATE(4529), - [sym_initializer_expression] = STATE(4529), - [sym_default_expression] = STATE(4529), - [sym_with_expression] = STATE(4529), - [sym_sizeof_expression] = STATE(4529), - [sym_typeof_expression] = STATE(4529), - [sym_makeref_expression] = STATE(4529), - [sym_ref_expression] = STATE(4529), - [sym_reftype_expression] = STATE(4529), - [sym_refvalue_expression] = STATE(4529), - [sym_stackalloc_expression] = STATE(4529), - [sym_range_expression] = STATE(4529), - [sym_tuple_expression] = STATE(3175), - [sym_literal] = STATE(4529), - [sym_character_literal] = STATE(4536), - [sym_string_literal] = STATE(4536), - [sym_raw_string_literal] = STATE(4536), - [sym_boolean_literal] = STATE(4536), - [sym_identifier] = STATE(2246), - [sym__reserved_identifier] = STATE(2240), - [sym_preproc_if_in_expression] = STATE(4529), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(5152), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2196), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(5456), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3356), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3102), + [sym_postfix_unary_expression] = STATE(3079), + [sym_prefix_unary_expression] = STATE(3079), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6134), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3102), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3079), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3102), + [sym_member_access_expression] = STATE(2472), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3079), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7627), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(3102), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3102), + [sym_typeof_expression] = STATE(3102), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2472), + [sym_literal] = STATE(3102), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(980), [sym_preproc_endregion] = STATE(980), [sym_preproc_line] = STATE(980), @@ -207479,385 +207365,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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3363), - [sym__identifier_token] = ACTIONS(1387), - [anon_sym_alias] = ACTIONS(1389), - [anon_sym_global] = ACTIONS(1389), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1391), - [anon_sym_LPAREN] = ACTIONS(1775), - [anon_sym_ref] = ACTIONS(1777), - [anon_sym_LBRACE] = ACTIONS(1397), - [anon_sym_delegate] = ACTIONS(1399), - [anon_sym_async] = ACTIONS(1047), - [anon_sym_file] = ACTIONS(1389), - [anon_sym_new] = ACTIONS(1401), - [anon_sym_where] = ACTIONS(1389), - [anon_sym_notnull] = ACTIONS(1389), - [anon_sym_unmanaged] = ACTIONS(1389), - [anon_sym_checked] = ACTIONS(1403), - [anon_sym_BANG] = ACTIONS(1781), - [anon_sym_TILDE] = ACTIONS(1781), - [anon_sym_PLUS_PLUS] = ACTIONS(1781), - [anon_sym_DASH_DASH] = ACTIONS(1781), - [anon_sym_true] = ACTIONS(1409), - [anon_sym_false] = ACTIONS(1409), - [anon_sym_PLUS] = ACTIONS(1779), - [anon_sym_DASH] = ACTIONS(1779), - [anon_sym_STAR] = ACTIONS(1411), - [anon_sym_CARET] = ACTIONS(1781), - [anon_sym_AMP] = ACTIONS(1781), - [anon_sym_this] = ACTIONS(1413), - [anon_sym_scoped] = ACTIONS(1415), - [anon_sym_base] = ACTIONS(1417), - [anon_sym_var] = ACTIONS(1419), - [sym_predefined_type] = ACTIONS(1421), - [anon_sym_unchecked] = ACTIONS(1403), - [anon_sym_yield] = ACTIONS(1389), - [anon_sym_default] = ACTIONS(1423), - [anon_sym_throw] = ACTIONS(1783), - [anon_sym_when] = ACTIONS(1389), - [anon_sym_await] = ACTIONS(1785), - [anon_sym_DOT_DOT] = ACTIONS(1787), - [anon_sym_from] = ACTIONS(1431), - [anon_sym_into] = ACTIONS(1389), - [anon_sym_join] = ACTIONS(1389), - [anon_sym_on] = ACTIONS(1389), - [anon_sym_equals] = ACTIONS(1389), - [anon_sym_let] = ACTIONS(1389), - [anon_sym_orderby] = ACTIONS(1389), - [anon_sym_ascending] = ACTIONS(1389), - [anon_sym_descending] = ACTIONS(1389), - [anon_sym_group] = ACTIONS(1389), - [anon_sym_by] = ACTIONS(1389), - [anon_sym_select] = ACTIONS(1389), - [anon_sym_stackalloc] = ACTIONS(1433), - [anon_sym_sizeof] = ACTIONS(1435), - [anon_sym_typeof] = ACTIONS(1437), - [anon_sym___makeref] = ACTIONS(1439), - [anon_sym___reftype] = ACTIONS(1441), - [anon_sym___refvalue] = ACTIONS(1443), - [sym_null_literal] = ACTIONS(1445), - [anon_sym_SQUOTE] = ACTIONS(1447), - [sym_integer_literal] = ACTIONS(1445), - [sym_real_literal] = ACTIONS(1449), - [anon_sym_DQUOTE] = ACTIONS(1451), - [sym_verbatim_string_literal] = ACTIONS(1449), - [aux_sym_preproc_if_token1] = ACTIONS(1453), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1455), - [sym_interpolation_verbatim_start] = ACTIONS(1457), - [sym_interpolation_raw_start] = ACTIONS(1459), - [sym_raw_string_start] = ACTIONS(1461), - }, - [981] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(3184), - [sym__name] = STATE(5906), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2312), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2269), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(4680), - [sym_non_lvalue_expression] = STATE(4541), - [sym_lvalue_expression] = STATE(3439), - [sym__expression_statement_expression] = STATE(4529), - [sym_assignment_expression] = STATE(4543), - [sym_binary_expression] = STATE(4529), - [sym_postfix_unary_expression] = STATE(4543), - [sym_prefix_unary_expression] = STATE(4543), - [sym__pointer_indirection_expression] = STATE(3175), - [sym_query_expression] = STATE(4529), - [sym_from_clause] = STATE(6169), - [sym_conditional_expression] = STATE(4529), - [sym_conditional_access_expression] = STATE(4529), - [sym_as_expression] = STATE(4529), - [sym_is_expression] = STATE(4529), - [sym_is_pattern_expression] = STATE(4529), - [sym_cast_expression] = STATE(4529), - [sym_checked_expression] = STATE(4529), - [sym_invocation_expression] = STATE(4543), - [sym_switch_expression] = STATE(4529), - [sym_await_expression] = STATE(4543), - [sym_throw_expression] = STATE(4529), - [sym_element_access_expression] = STATE(3175), - [sym_interpolated_string_expression] = STATE(4529), - [sym_member_access_expression] = STATE(3175), - [sym_object_creation_expression] = STATE(4543), - [sym_parenthesized_expression] = STATE(4543), - [sym__parenthesized_lvalue_expression] = STATE(3175), - [sym_lambda_expression] = STATE(4529), - [sym__lambda_expression_init] = STATE(7684), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(4529), - [sym_anonymous_method_expression] = STATE(4529), - [sym_anonymous_object_creation_expression] = STATE(4529), - [sym_implicit_array_creation_expression] = STATE(4529), - [sym_implicit_object_creation_expression] = STATE(4529), - [sym_implicit_stackalloc_expression] = STATE(4529), - [sym_initializer_expression] = STATE(4529), - [sym_default_expression] = STATE(4529), - [sym_with_expression] = STATE(4529), - [sym_sizeof_expression] = STATE(4529), - [sym_typeof_expression] = STATE(4529), - [sym_makeref_expression] = STATE(4529), - [sym_ref_expression] = STATE(4529), - [sym_reftype_expression] = STATE(4529), - [sym_refvalue_expression] = STATE(4529), - [sym_stackalloc_expression] = STATE(4529), - [sym_range_expression] = STATE(4529), - [sym_tuple_expression] = STATE(3175), - [sym_literal] = STATE(4529), - [sym_character_literal] = STATE(4536), - [sym_string_literal] = STATE(4536), - [sym_raw_string_literal] = STATE(4536), - [sym_boolean_literal] = STATE(4536), - [sym_identifier] = STATE(2246), - [sym__reserved_identifier] = STATE(2240), - [sym_preproc_if_in_expression] = STATE(4529), - [sym_preproc_if_in_attribute_list] = STATE(5576), - [sym_preproc_region] = STATE(981), - [sym_preproc_endregion] = STATE(981), - [sym_preproc_line] = STATE(981), - [sym_preproc_pragma] = STATE(981), - [sym_preproc_nullable] = STATE(981), - [sym_preproc_error] = STATE(981), - [sym_preproc_warning] = STATE(981), - [sym_preproc_define] = STATE(981), - [sym_preproc_undef] = STATE(981), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3363), - [sym__identifier_token] = ACTIONS(1387), - [anon_sym_alias] = ACTIONS(1389), - [anon_sym_global] = ACTIONS(1389), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1391), - [anon_sym_LPAREN] = ACTIONS(1775), - [anon_sym_ref] = ACTIONS(1777), - [anon_sym_LBRACE] = ACTIONS(1397), - [anon_sym_delegate] = ACTIONS(1399), - [anon_sym_async] = ACTIONS(1047), - [anon_sym_file] = ACTIONS(1389), - [anon_sym_new] = ACTIONS(1401), - [anon_sym_where] = ACTIONS(1389), - [anon_sym_notnull] = ACTIONS(1389), - [anon_sym_unmanaged] = ACTIONS(1389), - [anon_sym_checked] = ACTIONS(1403), - [anon_sym_BANG] = ACTIONS(1781), - [anon_sym_TILDE] = ACTIONS(1781), - [anon_sym_PLUS_PLUS] = ACTIONS(1781), - [anon_sym_DASH_DASH] = ACTIONS(1781), - [anon_sym_true] = ACTIONS(1409), - [anon_sym_false] = ACTIONS(1409), - [anon_sym_PLUS] = ACTIONS(1779), - [anon_sym_DASH] = ACTIONS(1779), - [anon_sym_STAR] = ACTIONS(1411), - [anon_sym_CARET] = ACTIONS(1781), - [anon_sym_AMP] = ACTIONS(1781), - [anon_sym_this] = ACTIONS(1413), - [anon_sym_scoped] = ACTIONS(1415), - [anon_sym_base] = ACTIONS(1417), - [anon_sym_var] = ACTIONS(1419), - [sym_predefined_type] = ACTIONS(1421), - [anon_sym_unchecked] = ACTIONS(1403), - [anon_sym_yield] = ACTIONS(1389), - [anon_sym_default] = ACTIONS(1423), - [anon_sym_throw] = ACTIONS(1783), - [anon_sym_when] = ACTIONS(1389), - [anon_sym_await] = ACTIONS(1785), - [anon_sym_DOT_DOT] = ACTIONS(1787), - [anon_sym_from] = ACTIONS(1431), - [anon_sym_into] = ACTIONS(1389), - [anon_sym_join] = ACTIONS(1389), - [anon_sym_on] = ACTIONS(1389), - [anon_sym_equals] = ACTIONS(1389), - [anon_sym_let] = ACTIONS(1389), - [anon_sym_orderby] = ACTIONS(1389), - [anon_sym_ascending] = ACTIONS(1389), - [anon_sym_descending] = ACTIONS(1389), - [anon_sym_group] = ACTIONS(1389), - [anon_sym_by] = ACTIONS(1389), - [anon_sym_select] = ACTIONS(1389), - [anon_sym_stackalloc] = ACTIONS(1433), - [anon_sym_sizeof] = ACTIONS(1435), - [anon_sym_typeof] = ACTIONS(1437), - [anon_sym___makeref] = ACTIONS(1439), - [anon_sym___reftype] = ACTIONS(1441), - [anon_sym___refvalue] = ACTIONS(1443), - [sym_null_literal] = ACTIONS(1445), - [anon_sym_SQUOTE] = ACTIONS(1447), - [sym_integer_literal] = ACTIONS(1445), - [sym_real_literal] = ACTIONS(1449), - [anon_sym_DQUOTE] = ACTIONS(1451), - [sym_verbatim_string_literal] = ACTIONS(1449), - [aux_sym_preproc_if_token1] = ACTIONS(1453), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1455), - [sym_interpolation_verbatim_start] = ACTIONS(1457), - [sym_interpolation_raw_start] = ACTIONS(1459), - [sym_raw_string_start] = ACTIONS(1461), - }, - [982] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2762), - [sym__name] = STATE(5910), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2247), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(4190), - [sym_non_lvalue_expression] = STATE(3438), - [sym_lvalue_expression] = STATE(3136), - [sym__expression_statement_expression] = STATE(3362), - [sym_assignment_expression] = STATE(3449), - [sym_binary_expression] = STATE(3362), - [sym_postfix_unary_expression] = STATE(3449), - [sym_prefix_unary_expression] = STATE(3449), - [sym__pointer_indirection_expression] = STATE(2747), - [sym_query_expression] = STATE(3362), - [sym_from_clause] = STATE(6171), - [sym_conditional_expression] = STATE(3362), - [sym_conditional_access_expression] = STATE(3362), - [sym_as_expression] = STATE(3362), - [sym_is_expression] = STATE(3362), - [sym_is_pattern_expression] = STATE(3362), - [sym_cast_expression] = STATE(3362), - [sym_checked_expression] = STATE(3362), - [sym_invocation_expression] = STATE(3449), - [sym_switch_expression] = STATE(3362), - [sym_await_expression] = STATE(3449), - [sym_throw_expression] = STATE(3362), - [sym_element_access_expression] = STATE(2747), - [sym_interpolated_string_expression] = STATE(3362), - [sym_member_access_expression] = STATE(2747), - [sym_object_creation_expression] = STATE(3449), - [sym_parenthesized_expression] = STATE(3449), - [sym__parenthesized_lvalue_expression] = STATE(2747), - [sym_lambda_expression] = STATE(3362), - [sym__lambda_expression_init] = STATE(7452), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3362), - [sym_anonymous_method_expression] = STATE(3362), - [sym_anonymous_object_creation_expression] = STATE(3362), - [sym_implicit_array_creation_expression] = STATE(3362), - [sym_implicit_object_creation_expression] = STATE(3362), - [sym_implicit_stackalloc_expression] = STATE(3362), - [sym_initializer_expression] = STATE(3362), - [sym_default_expression] = STATE(3362), - [sym_with_expression] = STATE(3362), - [sym_sizeof_expression] = STATE(3362), - [sym_typeof_expression] = STATE(3362), - [sym_makeref_expression] = STATE(3362), - [sym_ref_expression] = STATE(3362), - [sym_reftype_expression] = STATE(3362), - [sym_refvalue_expression] = STATE(3362), - [sym_stackalloc_expression] = STATE(3362), - [sym_range_expression] = STATE(3362), - [sym_tuple_expression] = STATE(2747), - [sym_literal] = STATE(3362), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3362), - [sym_preproc_if_in_attribute_list] = STATE(5576), - [sym_preproc_region] = STATE(982), - [sym_preproc_endregion] = STATE(982), - [sym_preproc_line] = STATE(982), - [sym_preproc_pragma] = STATE(982), - [sym_preproc_nullable] = STATE(982), - [sym_preproc_error] = STATE(982), - [sym_preproc_warning] = STATE(982), - [sym_preproc_define] = STATE(982), - [sym_preproc_undef] = STATE(982), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3385), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1307), - [anon_sym_LPAREN] = ACTIONS(1309), - [anon_sym_ref] = ACTIONS(1311), - [anon_sym_LBRACE] = ACTIONS(1313), - [anon_sym_delegate] = ACTIONS(1315), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1479), + [anon_sym_LPAREN] = ACTIONS(1511), + [anon_sym_ref] = ACTIONS(1513), + [anon_sym_LBRACE] = ACTIONS(1481), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1317), + [anon_sym_new] = ACTIONS(1515), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1319), - [anon_sym_BANG] = ACTIONS(1069), - [anon_sym_TILDE] = ACTIONS(1069), - [anon_sym_PLUS_PLUS] = ACTIONS(1069), - [anon_sym_DASH_DASH] = ACTIONS(1069), + [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(1071), - [anon_sym_DASH] = ACTIONS(1071), - [anon_sym_STAR] = ACTIONS(1321), - [anon_sym_CARET] = ACTIONS(1069), - [anon_sym_AMP] = ACTIONS(1069), - [anon_sym_this] = ACTIONS(1323), + [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(1325), + [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1319), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1327), + [anon_sym_throw] = ACTIONS(1517), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1329), - [anon_sym_DOT_DOT] = ACTIONS(1331), + [anon_sym_await] = ACTIONS(1519), + [anon_sym_DOT_DOT] = ACTIONS(1521), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -207870,19 +207418,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1333), + [anon_sym_stackalloc] = ACTIONS(127), [anon_sym_sizeof] = ACTIONS(129), [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(1335), - [anon_sym___reftype] = ACTIONS(1337), - [anon_sym___refvalue] = ACTIONS(1339), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), [sym_null_literal] = ACTIONS(139), [anon_sym_SQUOTE] = ACTIONS(141), [sym_integer_literal] = ACTIONS(139), [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1341), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -207898,135 +207446,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), }, - [983] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(5634), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2204), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(5366), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3664), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3080), - [sym_postfix_unary_expression] = STATE(3111), - [sym_prefix_unary_expression] = STATE(3111), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6161), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3080), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3111), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3080), - [sym_member_access_expression] = STATE(2484), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3111), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7773), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(3080), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3080), - [sym_typeof_expression] = STATE(3080), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2484), - [sym_literal] = STATE(3080), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), - [sym_preproc_region] = STATE(983), - [sym_preproc_endregion] = STATE(983), - [sym_preproc_line] = STATE(983), - [sym_preproc_pragma] = STATE(983), - [sym_preproc_nullable] = STATE(983), - [sym_preproc_error] = STATE(983), - [sym_preproc_warning] = STATE(983), - [sym_preproc_define] = STATE(983), - [sym_preproc_undef] = STATE(983), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [981] = { + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(5873), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2238), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(5246), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3468), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3102), + [sym_postfix_unary_expression] = STATE(3079), + [sym_prefix_unary_expression] = STATE(3079), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6134), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3102), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3079), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3102), + [sym_member_access_expression] = STATE(2472), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3079), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7309), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(3102), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3102), + [sym_typeof_expression] = STATE(3102), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2472), + [sym_literal] = STATE(3102), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), + [sym_preproc_region] = STATE(981), + [sym_preproc_endregion] = STATE(981), + [sym_preproc_line] = STATE(981), + [sym_preproc_pragma] = STATE(981), + [sym_preproc_nullable] = STATE(981), + [sym_preproc_error] = STATE(981), + [sym_preproc_warning] = STATE(981), + [sym_preproc_define] = STATE(981), + [sym_preproc_undef] = STATE(981), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1481), - [anon_sym_LPAREN] = ACTIONS(2015), - [anon_sym_ref] = ACTIONS(2017), - [anon_sym_LBRACE] = ACTIONS(1487), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1479), + [anon_sym_LPAREN] = ACTIONS(659), + [anon_sym_ref] = ACTIONS(663), + [anon_sym_LBRACE] = ACTIONS(1481), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1101), + [anon_sym_new] = ACTIONS(1059), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1067), - [anon_sym_BANG] = ACTIONS(2021), - [anon_sym_TILDE] = ACTIONS(2021), - [anon_sym_PLUS_PLUS] = ACTIONS(2021), - [anon_sym_DASH_DASH] = ACTIONS(2021), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(1485), + [anon_sym_TILDE] = ACTIONS(1485), + [anon_sym_PLUS_PLUS] = ACTIONS(1485), + [anon_sym_DASH_DASH] = ACTIONS(1485), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(2019), - [anon_sym_DASH] = ACTIONS(2019), - [anon_sym_STAR] = ACTIONS(1229), - [anon_sym_CARET] = ACTIONS(2021), - [anon_sym_AMP] = ACTIONS(2021), + [anon_sym_PLUS] = ACTIONS(1483), + [anon_sym_DASH] = ACTIONS(1483), + [anon_sym_STAR] = ACTIONS(683), + [anon_sym_CARET] = ACTIONS(1485), + [anon_sym_AMP] = ACTIONS(1485), [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(1067), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1233), + [anon_sym_throw] = ACTIONS(1077), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1235), - [anon_sym_DOT_DOT] = ACTIONS(1237), + [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), @@ -208051,7 +207599,345 @@ 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(1089), + [aux_sym_preproc_if_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), + }, + [982] = { + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(5152), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2196), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(4486), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3356), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3102), + [sym_postfix_unary_expression] = STATE(3079), + [sym_prefix_unary_expression] = STATE(3079), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6134), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3102), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3079), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3102), + [sym_member_access_expression] = STATE(2472), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3079), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7627), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(3102), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3102), + [sym_typeof_expression] = STATE(3102), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2472), + [sym_literal] = STATE(3102), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), + [sym_preproc_region] = STATE(982), + [sym_preproc_endregion] = STATE(982), + [sym_preproc_line] = STATE(982), + [sym_preproc_pragma] = STATE(982), + [sym_preproc_nullable] = STATE(982), + [sym_preproc_error] = STATE(982), + [sym_preproc_warning] = STATE(982), + [sym_preproc_define] = STATE(982), + [sym_preproc_undef] = STATE(982), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), + [sym__identifier_token] = ACTIONS(25), + [anon_sym_alias] = ACTIONS(29), + [anon_sym_global] = ACTIONS(29), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1479), + [anon_sym_LPAREN] = ACTIONS(1511), + [anon_sym_ref] = ACTIONS(1513), + [anon_sym_LBRACE] = ACTIONS(1481), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), + [anon_sym_file] = ACTIONS(29), + [anon_sym_new] = ACTIONS(1515), + [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(1517), + [anon_sym_when] = ACTIONS(29), + [anon_sym_await] = ACTIONS(1519), + [anon_sym_DOT_DOT] = ACTIONS(1521), + [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), + }, + [983] = { + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(5152), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2196), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(5087), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3510), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3102), + [sym_postfix_unary_expression] = STATE(3079), + [sym_prefix_unary_expression] = STATE(3079), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6134), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3102), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3079), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3102), + [sym_member_access_expression] = STATE(2472), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3079), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7425), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(3102), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3102), + [sym_typeof_expression] = STATE(3102), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2472), + [sym_literal] = STATE(3102), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), + [sym_preproc_region] = STATE(983), + [sym_preproc_endregion] = STATE(983), + [sym_preproc_line] = STATE(983), + [sym_preproc_pragma] = STATE(983), + [sym_preproc_nullable] = STATE(983), + [sym_preproc_error] = STATE(983), + [sym_preproc_warning] = STATE(983), + [sym_preproc_define] = STATE(983), + [sym_preproc_undef] = STATE(983), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), + [sym__identifier_token] = ACTIONS(25), + [anon_sym_alias] = ACTIONS(29), + [anon_sym_global] = ACTIONS(29), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1479), + [anon_sym_LPAREN] = ACTIONS(43), + [anon_sym_ref] = ACTIONS(715), + [anon_sym_LBRACE] = ACTIONS(1481), + [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(1525), + [anon_sym_TILDE] = ACTIONS(1525), + [anon_sym_PLUS_PLUS] = ACTIONS(1525), + [anon_sym_DASH_DASH] = ACTIONS(1525), + [anon_sym_true] = ACTIONS(77), + [anon_sym_false] = ACTIONS(77), + [anon_sym_PLUS] = ACTIONS(1523), + [anon_sym_DASH] = ACTIONS(1523), + [anon_sym_STAR] = ACTIONS(81), + [anon_sym_CARET] = ACTIONS(1525), + [anon_sym_AMP] = ACTIONS(1525), + [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(1527), + [anon_sym_when] = ACTIONS(29), + [anon_sym_await] = ACTIONS(1529), + [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), @@ -208068,84 +207954,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [984] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2420), - [sym__name] = STATE(5887), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2197), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(4070), - [sym_non_lvalue_expression] = STATE(3066), - [sym_lvalue_expression] = STATE(3120), - [sym__expression_statement_expression] = STATE(3006), - [sym_assignment_expression] = STATE(3020), - [sym_binary_expression] = STATE(3006), - [sym_postfix_unary_expression] = STATE(3020), - [sym_prefix_unary_expression] = STATE(3020), - [sym__pointer_indirection_expression] = STATE(2423), - [sym_query_expression] = STATE(3006), - [sym_from_clause] = STATE(6152), - [sym_conditional_expression] = STATE(3006), - [sym_conditional_access_expression] = STATE(3006), - [sym_as_expression] = STATE(3006), - [sym_is_expression] = STATE(3006), - [sym_is_pattern_expression] = STATE(3006), - [sym_cast_expression] = STATE(3006), - [sym_checked_expression] = STATE(3006), - [sym_invocation_expression] = STATE(3020), - [sym_switch_expression] = STATE(3006), - [sym_await_expression] = STATE(3020), - [sym_throw_expression] = STATE(3006), - [sym_element_access_expression] = STATE(2423), - [sym_interpolated_string_expression] = STATE(3006), - [sym_member_access_expression] = STATE(2423), - [sym_object_creation_expression] = STATE(3020), - [sym_parenthesized_expression] = STATE(3020), - [sym__parenthesized_lvalue_expression] = STATE(2423), - [sym_lambda_expression] = STATE(3006), - [sym__lambda_expression_init] = STATE(7722), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3006), - [sym_anonymous_method_expression] = STATE(3006), - [sym_anonymous_object_creation_expression] = STATE(3006), - [sym_implicit_array_creation_expression] = STATE(3006), - [sym_implicit_object_creation_expression] = STATE(3006), - [sym_implicit_stackalloc_expression] = STATE(3006), - [sym_initializer_expression] = STATE(3006), - [sym_default_expression] = STATE(3006), - [sym_with_expression] = STATE(3006), - [sym_sizeof_expression] = STATE(3006), - [sym_typeof_expression] = STATE(3006), - [sym_makeref_expression] = STATE(3006), - [sym_ref_expression] = STATE(3006), - [sym_reftype_expression] = STATE(3006), - [sym_refvalue_expression] = STATE(3006), - [sym_stackalloc_expression] = STATE(3006), - [sym_range_expression] = STATE(3006), - [sym_tuple_expression] = STATE(2423), - [sym_literal] = STATE(3006), - [sym_character_literal] = STATE(3011), - [sym_string_literal] = STATE(3011), - [sym_raw_string_literal] = STATE(3011), - [sym_boolean_literal] = STATE(3011), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3006), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(5152), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2196), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(4788), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3356), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3102), + [sym_postfix_unary_expression] = STATE(3079), + [sym_prefix_unary_expression] = STATE(3079), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6134), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3102), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3079), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3102), + [sym_member_access_expression] = STATE(2472), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3079), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7627), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(3102), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3102), + [sym_typeof_expression] = STATE(3102), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2472), + [sym_literal] = STATE(3102), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(984), [sym_preproc_endregion] = STATE(984), [sym_preproc_line] = STATE(984), @@ -208155,47 +208041,47 @@ 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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3440), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1241), - [anon_sym_LPAREN] = ACTIONS(1243), - [anon_sym_ref] = ACTIONS(1245), - [anon_sym_LBRACE] = ACTIONS(1247), - [anon_sym_delegate] = ACTIONS(1249), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1479), + [anon_sym_LPAREN] = ACTIONS(1511), + [anon_sym_ref] = ACTIONS(1513), + [anon_sym_LBRACE] = ACTIONS(1481), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1251), + [anon_sym_new] = ACTIONS(1515), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1253), - [anon_sym_BANG] = ACTIONS(1257), - [anon_sym_TILDE] = ACTIONS(1257), - [anon_sym_PLUS_PLUS] = ACTIONS(1257), - [anon_sym_DASH_DASH] = ACTIONS(1257), - [anon_sym_true] = ACTIONS(1259), - [anon_sym_false] = ACTIONS(1259), - [anon_sym_PLUS] = ACTIONS(1255), - [anon_sym_DASH] = ACTIONS(1255), - [anon_sym_STAR] = ACTIONS(1261), - [anon_sym_CARET] = ACTIONS(1257), - [anon_sym_AMP] = ACTIONS(1257), - [anon_sym_this] = ACTIONS(1263), + [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(1265), + [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1267), - [anon_sym_unchecked] = ACTIONS(1253), + [sym_predefined_type] = ACTIONS(91), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1269), - [anon_sym_throw] = ACTIONS(1271), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(1517), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1273), - [anon_sym_DOT_DOT] = ACTIONS(1275), + [anon_sym_await] = ACTIONS(1519), + [anon_sym_DOT_DOT] = ACTIONS(1521), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -208208,19 +208094,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1277), - [anon_sym_sizeof] = ACTIONS(1279), - [anon_sym_typeof] = ACTIONS(1281), - [anon_sym___makeref] = ACTIONS(1283), - [anon_sym___reftype] = ACTIONS(1285), - [anon_sym___refvalue] = ACTIONS(1287), - [sym_null_literal] = ACTIONS(1289), - [anon_sym_SQUOTE] = ACTIONS(1291), - [sym_integer_literal] = ACTIONS(1289), - [sym_real_literal] = ACTIONS(1293), - [anon_sym_DQUOTE] = ACTIONS(1295), - [sym_verbatim_string_literal] = ACTIONS(1293), - [aux_sym_preproc_if_token1] = ACTIONS(1297), + [anon_sym_stackalloc] = ACTIONS(127), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_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), @@ -208231,90 +208117,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1299), - [sym_interpolation_verbatim_start] = ACTIONS(1301), - [sym_interpolation_raw_start] = ACTIONS(1303), - [sym_raw_string_start] = ACTIONS(1305), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [sym_interpolation_raw_start] = ACTIONS(155), + [sym_raw_string_start] = ACTIONS(157), }, [985] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2420), - [sym__name] = STATE(5888), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2384), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(5133), - [sym_non_lvalue_expression] = STATE(3066), - [sym_lvalue_expression] = STATE(3554), - [sym__expression_statement_expression] = STATE(3006), - [sym_assignment_expression] = STATE(3020), - [sym_binary_expression] = STATE(3006), - [sym_postfix_unary_expression] = STATE(3020), - [sym_prefix_unary_expression] = STATE(3020), - [sym__pointer_indirection_expression] = STATE(2423), - [sym_query_expression] = STATE(3006), - [sym_from_clause] = STATE(6151), - [sym_conditional_expression] = STATE(3006), - [sym_conditional_access_expression] = STATE(3006), - [sym_as_expression] = STATE(3006), - [sym_is_expression] = STATE(3006), - [sym_is_pattern_expression] = STATE(3006), - [sym_cast_expression] = STATE(3006), - [sym_checked_expression] = STATE(3006), - [sym_invocation_expression] = STATE(3020), - [sym_switch_expression] = STATE(3006), - [sym_await_expression] = STATE(3020), - [sym_throw_expression] = STATE(3006), - [sym_element_access_expression] = STATE(2423), - [sym_interpolated_string_expression] = STATE(3006), - [sym_member_access_expression] = STATE(2423), - [sym_object_creation_expression] = STATE(3020), - [sym_parenthesized_expression] = STATE(3020), - [sym__parenthesized_lvalue_expression] = STATE(2423), - [sym_lambda_expression] = STATE(3006), - [sym__lambda_expression_init] = STATE(7640), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3006), - [sym_anonymous_method_expression] = STATE(3006), - [sym_anonymous_object_creation_expression] = STATE(3006), - [sym_implicit_array_creation_expression] = STATE(3006), - [sym_implicit_object_creation_expression] = STATE(3006), - [sym_implicit_stackalloc_expression] = STATE(3006), - [sym_initializer_expression] = STATE(3006), - [sym_default_expression] = STATE(3006), - [sym_with_expression] = STATE(3006), - [sym_sizeof_expression] = STATE(3006), - [sym_typeof_expression] = STATE(3006), - [sym_makeref_expression] = STATE(3006), - [sym_ref_expression] = STATE(3006), - [sym_reftype_expression] = STATE(3006), - [sym_refvalue_expression] = STATE(3006), - [sym_stackalloc_expression] = STATE(3006), - [sym_range_expression] = STATE(3006), - [sym_tuple_expression] = STATE(2423), - [sym_literal] = STATE(3006), - [sym_character_literal] = STATE(3011), - [sym_string_literal] = STATE(3011), - [sym_raw_string_literal] = STATE(3011), - [sym_boolean_literal] = STATE(3011), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3006), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(5152), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2196), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(4789), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3356), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3102), + [sym_postfix_unary_expression] = STATE(3079), + [sym_prefix_unary_expression] = STATE(3079), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6134), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3102), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3079), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3102), + [sym_member_access_expression] = STATE(2472), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3079), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7627), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(3102), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3102), + [sym_typeof_expression] = STATE(3102), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2472), + [sym_literal] = STATE(3102), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(985), [sym_preproc_endregion] = STATE(985), [sym_preproc_line] = STATE(985), @@ -208324,47 +208210,47 @@ 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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3440), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1241), - [anon_sym_LPAREN] = ACTIONS(2281), - [anon_sym_ref] = ACTIONS(2283), - [anon_sym_LBRACE] = ACTIONS(1247), - [anon_sym_delegate] = ACTIONS(1249), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1479), + [anon_sym_LPAREN] = ACTIONS(1511), + [anon_sym_ref] = ACTIONS(1513), + [anon_sym_LBRACE] = ACTIONS(1481), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(2285), + [anon_sym_new] = ACTIONS(1515), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1253), - [anon_sym_BANG] = ACTIONS(2289), - [anon_sym_TILDE] = ACTIONS(2289), - [anon_sym_PLUS_PLUS] = ACTIONS(2289), - [anon_sym_DASH_DASH] = ACTIONS(2289), - [anon_sym_true] = ACTIONS(1259), - [anon_sym_false] = ACTIONS(1259), - [anon_sym_PLUS] = ACTIONS(2287), - [anon_sym_DASH] = ACTIONS(2287), - [anon_sym_STAR] = ACTIONS(2291), - [anon_sym_CARET] = ACTIONS(2289), - [anon_sym_AMP] = ACTIONS(2289), - [anon_sym_this] = ACTIONS(1263), + [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(1265), + [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1267), - [anon_sym_unchecked] = ACTIONS(1253), + [sym_predefined_type] = ACTIONS(91), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1269), - [anon_sym_throw] = ACTIONS(2293), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(1517), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2295), - [anon_sym_DOT_DOT] = ACTIONS(2297), + [anon_sym_await] = ACTIONS(1519), + [anon_sym_DOT_DOT] = ACTIONS(1521), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -208377,19 +208263,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1277), - [anon_sym_sizeof] = ACTIONS(1279), - [anon_sym_typeof] = ACTIONS(1281), - [anon_sym___makeref] = ACTIONS(1283), - [anon_sym___reftype] = ACTIONS(1285), - [anon_sym___refvalue] = ACTIONS(1287), - [sym_null_literal] = ACTIONS(1289), - [anon_sym_SQUOTE] = ACTIONS(1291), - [sym_integer_literal] = ACTIONS(1289), - [sym_real_literal] = ACTIONS(1293), - [anon_sym_DQUOTE] = ACTIONS(1295), - [sym_verbatim_string_literal] = ACTIONS(1293), - [aux_sym_preproc_if_token1] = ACTIONS(1297), + [anon_sym_stackalloc] = ACTIONS(127), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_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), @@ -208400,90 +208286,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1299), - [sym_interpolation_verbatim_start] = ACTIONS(1301), - [sym_interpolation_raw_start] = ACTIONS(1303), - [sym_raw_string_start] = ACTIONS(1305), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [sym_interpolation_raw_start] = ACTIONS(155), + [sym_raw_string_start] = ACTIONS(157), }, [986] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2420), - [sym__name] = STATE(5887), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2197), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(2908), - [sym_non_lvalue_expression] = STATE(3066), - [sym_lvalue_expression] = STATE(3120), - [sym__expression_statement_expression] = STATE(3006), - [sym_assignment_expression] = STATE(3020), - [sym_binary_expression] = STATE(3006), - [sym_postfix_unary_expression] = STATE(3020), - [sym_prefix_unary_expression] = STATE(3020), - [sym__pointer_indirection_expression] = STATE(2423), - [sym_query_expression] = STATE(3006), - [sym_from_clause] = STATE(6152), - [sym_conditional_expression] = STATE(3006), - [sym_conditional_access_expression] = STATE(3006), - [sym_as_expression] = STATE(3006), - [sym_is_expression] = STATE(3006), - [sym_is_pattern_expression] = STATE(3006), - [sym_cast_expression] = STATE(3006), - [sym_checked_expression] = STATE(3006), - [sym_invocation_expression] = STATE(3020), - [sym_switch_expression] = STATE(3006), - [sym_await_expression] = STATE(3020), - [sym_throw_expression] = STATE(3006), - [sym_element_access_expression] = STATE(2423), - [sym_interpolated_string_expression] = STATE(3006), - [sym_member_access_expression] = STATE(2423), - [sym_object_creation_expression] = STATE(3020), - [sym_parenthesized_expression] = STATE(3020), - [sym__parenthesized_lvalue_expression] = STATE(2423), - [sym_lambda_expression] = STATE(3006), - [sym__lambda_expression_init] = STATE(7722), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3006), - [sym_anonymous_method_expression] = STATE(3006), - [sym_anonymous_object_creation_expression] = STATE(3006), - [sym_implicit_array_creation_expression] = STATE(3006), - [sym_implicit_object_creation_expression] = STATE(3006), - [sym_implicit_stackalloc_expression] = STATE(3006), - [sym_initializer_expression] = STATE(3006), - [sym_default_expression] = STATE(3006), - [sym_with_expression] = STATE(3006), - [sym_sizeof_expression] = STATE(3006), - [sym_typeof_expression] = STATE(3006), - [sym_makeref_expression] = STATE(3006), - [sym_ref_expression] = STATE(3006), - [sym_reftype_expression] = STATE(3006), - [sym_refvalue_expression] = STATE(3006), - [sym_stackalloc_expression] = STATE(3006), - [sym_range_expression] = STATE(3006), - [sym_tuple_expression] = STATE(2423), - [sym_literal] = STATE(3006), - [sym_character_literal] = STATE(3011), - [sym_string_literal] = STATE(3011), - [sym_raw_string_literal] = STATE(3011), - [sym_boolean_literal] = STATE(3011), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3006), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(5152), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2196), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(4790), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3356), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3102), + [sym_postfix_unary_expression] = STATE(3079), + [sym_prefix_unary_expression] = STATE(3079), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6134), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3102), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3079), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3102), + [sym_member_access_expression] = STATE(2472), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3079), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7627), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(3102), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3102), + [sym_typeof_expression] = STATE(3102), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2472), + [sym_literal] = STATE(3102), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(986), [sym_preproc_endregion] = STATE(986), [sym_preproc_line] = STATE(986), @@ -208493,47 +208379,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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3440), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1241), - [anon_sym_LPAREN] = ACTIONS(1243), - [anon_sym_ref] = ACTIONS(1245), - [anon_sym_LBRACE] = ACTIONS(1247), - [anon_sym_delegate] = ACTIONS(1249), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1479), + [anon_sym_LPAREN] = ACTIONS(1511), + [anon_sym_ref] = ACTIONS(1513), + [anon_sym_LBRACE] = ACTIONS(1481), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1251), + [anon_sym_new] = ACTIONS(1515), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1253), - [anon_sym_BANG] = ACTIONS(1257), - [anon_sym_TILDE] = ACTIONS(1257), - [anon_sym_PLUS_PLUS] = ACTIONS(1257), - [anon_sym_DASH_DASH] = ACTIONS(1257), - [anon_sym_true] = ACTIONS(1259), - [anon_sym_false] = ACTIONS(1259), - [anon_sym_PLUS] = ACTIONS(1255), - [anon_sym_DASH] = ACTIONS(1255), - [anon_sym_STAR] = ACTIONS(1261), - [anon_sym_CARET] = ACTIONS(1257), - [anon_sym_AMP] = ACTIONS(1257), - [anon_sym_this] = ACTIONS(1263), + [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(1265), + [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1267), - [anon_sym_unchecked] = ACTIONS(1253), + [sym_predefined_type] = ACTIONS(91), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1269), - [anon_sym_throw] = ACTIONS(1271), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(1517), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1273), - [anon_sym_DOT_DOT] = ACTIONS(1275), + [anon_sym_await] = ACTIONS(1519), + [anon_sym_DOT_DOT] = ACTIONS(1521), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -208546,19 +208432,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1277), - [anon_sym_sizeof] = ACTIONS(1279), - [anon_sym_typeof] = ACTIONS(1281), - [anon_sym___makeref] = ACTIONS(1283), - [anon_sym___reftype] = ACTIONS(1285), - [anon_sym___refvalue] = ACTIONS(1287), - [sym_null_literal] = ACTIONS(1289), - [anon_sym_SQUOTE] = ACTIONS(1291), - [sym_integer_literal] = ACTIONS(1289), - [sym_real_literal] = ACTIONS(1293), - [anon_sym_DQUOTE] = ACTIONS(1295), - [sym_verbatim_string_literal] = ACTIONS(1293), - [aux_sym_preproc_if_token1] = ACTIONS(1297), + [anon_sym_stackalloc] = ACTIONS(127), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_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), @@ -208569,90 +208455,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1299), - [sym_interpolation_verbatim_start] = ACTIONS(1301), - [sym_interpolation_raw_start] = ACTIONS(1303), - [sym_raw_string_start] = ACTIONS(1305), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [sym_interpolation_raw_start] = ACTIONS(155), + [sym_raw_string_start] = ACTIONS(157), }, [987] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(3184), - [sym__name] = STATE(5906), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2312), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2269), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(4327), - [sym_non_lvalue_expression] = STATE(4541), - [sym_lvalue_expression] = STATE(3439), - [sym__expression_statement_expression] = STATE(4529), - [sym_assignment_expression] = STATE(4543), - [sym_binary_expression] = STATE(4529), - [sym_postfix_unary_expression] = STATE(4543), - [sym_prefix_unary_expression] = STATE(4543), - [sym__pointer_indirection_expression] = STATE(3175), - [sym_query_expression] = STATE(4529), - [sym_from_clause] = STATE(6169), - [sym_conditional_expression] = STATE(4529), - [sym_conditional_access_expression] = STATE(4529), - [sym_as_expression] = STATE(4529), - [sym_is_expression] = STATE(4529), - [sym_is_pattern_expression] = STATE(4529), - [sym_cast_expression] = STATE(4529), - [sym_checked_expression] = STATE(4529), - [sym_invocation_expression] = STATE(4543), - [sym_switch_expression] = STATE(4529), - [sym_await_expression] = STATE(4543), - [sym_throw_expression] = STATE(4529), - [sym_element_access_expression] = STATE(3175), - [sym_interpolated_string_expression] = STATE(4529), - [sym_member_access_expression] = STATE(3175), - [sym_object_creation_expression] = STATE(4543), - [sym_parenthesized_expression] = STATE(4543), - [sym__parenthesized_lvalue_expression] = STATE(3175), - [sym_lambda_expression] = STATE(4529), - [sym__lambda_expression_init] = STATE(7684), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(4529), - [sym_anonymous_method_expression] = STATE(4529), - [sym_anonymous_object_creation_expression] = STATE(4529), - [sym_implicit_array_creation_expression] = STATE(4529), - [sym_implicit_object_creation_expression] = STATE(4529), - [sym_implicit_stackalloc_expression] = STATE(4529), - [sym_initializer_expression] = STATE(4529), - [sym_default_expression] = STATE(4529), - [sym_with_expression] = STATE(4529), - [sym_sizeof_expression] = STATE(4529), - [sym_typeof_expression] = STATE(4529), - [sym_makeref_expression] = STATE(4529), - [sym_ref_expression] = STATE(4529), - [sym_reftype_expression] = STATE(4529), - [sym_refvalue_expression] = STATE(4529), - [sym_stackalloc_expression] = STATE(4529), - [sym_range_expression] = STATE(4529), - [sym_tuple_expression] = STATE(3175), - [sym_literal] = STATE(4529), - [sym_character_literal] = STATE(4536), - [sym_string_literal] = STATE(4536), - [sym_raw_string_literal] = STATE(4536), - [sym_boolean_literal] = STATE(4536), - [sym_identifier] = STATE(2246), - [sym__reserved_identifier] = STATE(2240), - [sym_preproc_if_in_expression] = STATE(4529), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(5152), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2196), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(4793), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3356), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3102), + [sym_postfix_unary_expression] = STATE(3079), + [sym_prefix_unary_expression] = STATE(3079), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6134), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3102), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3079), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3102), + [sym_member_access_expression] = STATE(2472), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3079), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7627), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(3102), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3102), + [sym_typeof_expression] = STATE(3102), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2472), + [sym_literal] = STATE(3102), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(987), [sym_preproc_endregion] = STATE(987), [sym_preproc_line] = STATE(987), @@ -208662,166 +208548,166 @@ 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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3363), - [sym__identifier_token] = ACTIONS(1387), - [anon_sym_alias] = ACTIONS(1389), - [anon_sym_global] = ACTIONS(1389), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1391), - [anon_sym_LPAREN] = ACTIONS(1775), - [anon_sym_ref] = ACTIONS(1777), - [anon_sym_LBRACE] = ACTIONS(1397), - [anon_sym_delegate] = ACTIONS(1399), - [anon_sym_async] = ACTIONS(1047), - [anon_sym_file] = ACTIONS(1389), - [anon_sym_new] = ACTIONS(1401), - [anon_sym_where] = ACTIONS(1389), - [anon_sym_notnull] = ACTIONS(1389), - [anon_sym_unmanaged] = ACTIONS(1389), - [anon_sym_checked] = ACTIONS(1403), - [anon_sym_BANG] = ACTIONS(1781), - [anon_sym_TILDE] = ACTIONS(1781), - [anon_sym_PLUS_PLUS] = ACTIONS(1781), - [anon_sym_DASH_DASH] = ACTIONS(1781), - [anon_sym_true] = ACTIONS(1409), - [anon_sym_false] = ACTIONS(1409), - [anon_sym_PLUS] = ACTIONS(1779), - [anon_sym_DASH] = ACTIONS(1779), - [anon_sym_STAR] = ACTIONS(1411), - [anon_sym_CARET] = ACTIONS(1781), - [anon_sym_AMP] = ACTIONS(1781), - [anon_sym_this] = ACTIONS(1413), - [anon_sym_scoped] = ACTIONS(1415), - [anon_sym_base] = ACTIONS(1417), - [anon_sym_var] = ACTIONS(1419), - [sym_predefined_type] = ACTIONS(1421), - [anon_sym_unchecked] = ACTIONS(1403), - [anon_sym_yield] = ACTIONS(1389), - [anon_sym_default] = ACTIONS(1423), - [anon_sym_throw] = ACTIONS(1783), - [anon_sym_when] = ACTIONS(1389), - [anon_sym_await] = ACTIONS(1785), - [anon_sym_DOT_DOT] = ACTIONS(1787), - [anon_sym_from] = ACTIONS(1431), - [anon_sym_into] = ACTIONS(1389), - [anon_sym_join] = ACTIONS(1389), - [anon_sym_on] = ACTIONS(1389), - [anon_sym_equals] = ACTIONS(1389), - [anon_sym_let] = ACTIONS(1389), - [anon_sym_orderby] = ACTIONS(1389), - [anon_sym_ascending] = ACTIONS(1389), - [anon_sym_descending] = ACTIONS(1389), - [anon_sym_group] = ACTIONS(1389), - [anon_sym_by] = ACTIONS(1389), - [anon_sym_select] = ACTIONS(1389), - [anon_sym_stackalloc] = ACTIONS(1433), - [anon_sym_sizeof] = ACTIONS(1435), - [anon_sym_typeof] = ACTIONS(1437), - [anon_sym___makeref] = ACTIONS(1439), - [anon_sym___reftype] = ACTIONS(1441), - [anon_sym___refvalue] = ACTIONS(1443), - [sym_null_literal] = ACTIONS(1445), - [anon_sym_SQUOTE] = ACTIONS(1447), - [sym_integer_literal] = ACTIONS(1445), - [sym_real_literal] = ACTIONS(1449), - [anon_sym_DQUOTE] = ACTIONS(1451), - [sym_verbatim_string_literal] = ACTIONS(1449), - [aux_sym_preproc_if_token1] = ACTIONS(1453), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1455), - [sym_interpolation_verbatim_start] = ACTIONS(1457), - [sym_interpolation_raw_start] = ACTIONS(1459), - [sym_raw_string_start] = ACTIONS(1461), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), + [sym__identifier_token] = ACTIONS(25), + [anon_sym_alias] = ACTIONS(29), + [anon_sym_global] = ACTIONS(29), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1479), + [anon_sym_LPAREN] = ACTIONS(1511), + [anon_sym_ref] = ACTIONS(1513), + [anon_sym_LBRACE] = ACTIONS(1481), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), + [anon_sym_file] = ACTIONS(29), + [anon_sym_new] = ACTIONS(1515), + [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(1517), + [anon_sym_when] = ACTIONS(29), + [anon_sym_await] = ACTIONS(1519), + [anon_sym_DOT_DOT] = ACTIONS(1521), + [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), }, [988] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(5160), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2204), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(5509), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3461), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3080), - [sym_postfix_unary_expression] = STATE(3111), - [sym_prefix_unary_expression] = STATE(3111), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6154), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3080), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3111), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3080), - [sym_member_access_expression] = STATE(2484), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3111), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7547), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(3080), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3080), - [sym_typeof_expression] = STATE(3080), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2484), - [sym_literal] = STATE(3080), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(5152), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2196), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(4794), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3356), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3102), + [sym_postfix_unary_expression] = STATE(3079), + [sym_prefix_unary_expression] = STATE(3079), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6134), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3102), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3079), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3102), + [sym_member_access_expression] = STATE(2472), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3079), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7627), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(3102), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3102), + [sym_typeof_expression] = STATE(3102), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2472), + [sym_literal] = STATE(3102), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(988), [sym_preproc_endregion] = STATE(988), [sym_preproc_line] = STATE(988), @@ -208831,24 +208717,24 @@ 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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1481), - [anon_sym_LPAREN] = ACTIONS(1497), - [anon_sym_ref] = ACTIONS(1499), - [anon_sym_LBRACE] = ACTIONS(1487), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1479), + [anon_sym_LPAREN] = ACTIONS(1511), + [anon_sym_ref] = ACTIONS(1513), + [anon_sym_LBRACE] = ACTIONS(1481), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1501), + [anon_sym_new] = ACTIONS(1515), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1067), + [anon_sym_checked] = ACTIONS(1065), [anon_sym_BANG] = ACTIONS(75), [anon_sym_TILDE] = ACTIONS(75), [anon_sym_PLUS_PLUS] = ACTIONS(75), @@ -208865,13 +208751,13 @@ 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_unchecked] = ACTIONS(1067), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1503), + [anon_sym_throw] = ACTIONS(1517), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1505), - [anon_sym_DOT_DOT] = ACTIONS(1507), + [anon_sym_await] = ACTIONS(1519), + [anon_sym_DOT_DOT] = ACTIONS(1521), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -208896,7 +208782,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(1089), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -208913,84 +208799,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [989] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2762), - [sym__name] = STATE(5893), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2316), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(4767), - [sym_non_lvalue_expression] = STATE(3438), - [sym_lvalue_expression] = STATE(3391), - [sym__expression_statement_expression] = STATE(3362), - [sym_assignment_expression] = STATE(3449), - [sym_binary_expression] = STATE(3362), - [sym_postfix_unary_expression] = STATE(3449), - [sym_prefix_unary_expression] = STATE(3449), - [sym__pointer_indirection_expression] = STATE(2747), - [sym_query_expression] = STATE(3362), - [sym_from_clause] = STATE(6155), - [sym_conditional_expression] = STATE(3362), - [sym_conditional_access_expression] = STATE(3362), - [sym_as_expression] = STATE(3362), - [sym_is_expression] = STATE(3362), - [sym_is_pattern_expression] = STATE(3362), - [sym_cast_expression] = STATE(3362), - [sym_checked_expression] = STATE(3362), - [sym_invocation_expression] = STATE(3449), - [sym_switch_expression] = STATE(3362), - [sym_await_expression] = STATE(3449), - [sym_throw_expression] = STATE(3362), - [sym_element_access_expression] = STATE(2747), - [sym_interpolated_string_expression] = STATE(3362), - [sym_member_access_expression] = STATE(2747), - [sym_object_creation_expression] = STATE(3449), - [sym_parenthesized_expression] = STATE(3449), - [sym__parenthesized_lvalue_expression] = STATE(2747), - [sym_lambda_expression] = STATE(3362), - [sym__lambda_expression_init] = STATE(7726), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3362), - [sym_anonymous_method_expression] = STATE(3362), - [sym_anonymous_object_creation_expression] = STATE(3362), - [sym_implicit_array_creation_expression] = STATE(3362), - [sym_implicit_object_creation_expression] = STATE(3362), - [sym_implicit_stackalloc_expression] = STATE(3362), - [sym_initializer_expression] = STATE(3362), - [sym_default_expression] = STATE(3362), - [sym_with_expression] = STATE(3362), - [sym_sizeof_expression] = STATE(3362), - [sym_typeof_expression] = STATE(3362), - [sym_makeref_expression] = STATE(3362), - [sym_ref_expression] = STATE(3362), - [sym_reftype_expression] = STATE(3362), - [sym_refvalue_expression] = STATE(3362), - [sym_stackalloc_expression] = STATE(3362), - [sym_range_expression] = STATE(3362), - [sym_tuple_expression] = STATE(2747), - [sym_literal] = STATE(3362), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3362), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(5152), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2196), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(4795), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3356), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3102), + [sym_postfix_unary_expression] = STATE(3079), + [sym_prefix_unary_expression] = STATE(3079), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6134), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3102), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3079), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3102), + [sym_member_access_expression] = STATE(2472), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3079), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7627), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(3102), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3102), + [sym_typeof_expression] = STATE(3102), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2472), + [sym_literal] = STATE(3102), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(989), [sym_preproc_endregion] = STATE(989), [sym_preproc_line] = STATE(989), @@ -209000,47 +208886,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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3385), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1307), - [anon_sym_LPAREN] = ACTIONS(1711), - [anon_sym_ref] = ACTIONS(1713), - [anon_sym_LBRACE] = ACTIONS(1313), - [anon_sym_delegate] = ACTIONS(1315), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1479), + [anon_sym_LPAREN] = ACTIONS(1511), + [anon_sym_ref] = ACTIONS(1513), + [anon_sym_LBRACE] = ACTIONS(1481), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1613), + [anon_sym_new] = ACTIONS(1515), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1319), - [anon_sym_BANG] = ACTIONS(1717), - [anon_sym_TILDE] = ACTIONS(1717), - [anon_sym_PLUS_PLUS] = ACTIONS(1717), - [anon_sym_DASH_DASH] = ACTIONS(1717), + [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(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(1323), + [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(1325), + [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1319), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1721), + [anon_sym_throw] = ACTIONS(1517), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1723), - [anon_sym_DOT_DOT] = ACTIONS(1725), + [anon_sym_await] = ACTIONS(1519), + [anon_sym_DOT_DOT] = ACTIONS(1521), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -209053,19 +208939,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1333), + [anon_sym_stackalloc] = ACTIONS(127), [anon_sym_sizeof] = ACTIONS(129), [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(1335), - [anon_sym___reftype] = ACTIONS(1337), - [anon_sym___refvalue] = ACTIONS(1339), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), [sym_null_literal] = ACTIONS(139), [anon_sym_SQUOTE] = ACTIONS(141), [sym_integer_literal] = ACTIONS(139), [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1341), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -209082,84 +208968,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [990] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2762), - [sym__name] = STATE(5893), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2316), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(4768), - [sym_non_lvalue_expression] = STATE(3438), - [sym_lvalue_expression] = STATE(3391), - [sym__expression_statement_expression] = STATE(3362), - [sym_assignment_expression] = STATE(3449), - [sym_binary_expression] = STATE(3362), - [sym_postfix_unary_expression] = STATE(3449), - [sym_prefix_unary_expression] = STATE(3449), - [sym__pointer_indirection_expression] = STATE(2747), - [sym_query_expression] = STATE(3362), - [sym_from_clause] = STATE(6155), - [sym_conditional_expression] = STATE(3362), - [sym_conditional_access_expression] = STATE(3362), - [sym_as_expression] = STATE(3362), - [sym_is_expression] = STATE(3362), - [sym_is_pattern_expression] = STATE(3362), - [sym_cast_expression] = STATE(3362), - [sym_checked_expression] = STATE(3362), - [sym_invocation_expression] = STATE(3449), - [sym_switch_expression] = STATE(3362), - [sym_await_expression] = STATE(3449), - [sym_throw_expression] = STATE(3362), - [sym_element_access_expression] = STATE(2747), - [sym_interpolated_string_expression] = STATE(3362), - [sym_member_access_expression] = STATE(2747), - [sym_object_creation_expression] = STATE(3449), - [sym_parenthesized_expression] = STATE(3449), - [sym__parenthesized_lvalue_expression] = STATE(2747), - [sym_lambda_expression] = STATE(3362), - [sym__lambda_expression_init] = STATE(7726), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3362), - [sym_anonymous_method_expression] = STATE(3362), - [sym_anonymous_object_creation_expression] = STATE(3362), - [sym_implicit_array_creation_expression] = STATE(3362), - [sym_implicit_object_creation_expression] = STATE(3362), - [sym_implicit_stackalloc_expression] = STATE(3362), - [sym_initializer_expression] = STATE(3362), - [sym_default_expression] = STATE(3362), - [sym_with_expression] = STATE(3362), - [sym_sizeof_expression] = STATE(3362), - [sym_typeof_expression] = STATE(3362), - [sym_makeref_expression] = STATE(3362), - [sym_ref_expression] = STATE(3362), - [sym_reftype_expression] = STATE(3362), - [sym_refvalue_expression] = STATE(3362), - [sym_stackalloc_expression] = STATE(3362), - [sym_range_expression] = STATE(3362), - [sym_tuple_expression] = STATE(2747), - [sym_literal] = STATE(3362), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3362), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(5152), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2196), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(4796), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3356), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3102), + [sym_postfix_unary_expression] = STATE(3079), + [sym_prefix_unary_expression] = STATE(3079), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6134), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3102), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3079), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3102), + [sym_member_access_expression] = STATE(2472), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3079), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7627), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(3102), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3102), + [sym_typeof_expression] = STATE(3102), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2472), + [sym_literal] = STATE(3102), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(990), [sym_preproc_endregion] = STATE(990), [sym_preproc_line] = STATE(990), @@ -209169,47 +209055,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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3385), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1307), - [anon_sym_LPAREN] = ACTIONS(1711), - [anon_sym_ref] = ACTIONS(1713), - [anon_sym_LBRACE] = ACTIONS(1313), - [anon_sym_delegate] = ACTIONS(1315), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1479), + [anon_sym_LPAREN] = ACTIONS(1511), + [anon_sym_ref] = ACTIONS(1513), + [anon_sym_LBRACE] = ACTIONS(1481), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1613), + [anon_sym_new] = ACTIONS(1515), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1319), - [anon_sym_BANG] = ACTIONS(1717), - [anon_sym_TILDE] = ACTIONS(1717), - [anon_sym_PLUS_PLUS] = ACTIONS(1717), - [anon_sym_DASH_DASH] = ACTIONS(1717), + [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(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(1323), + [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(1325), + [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1319), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1721), + [anon_sym_throw] = ACTIONS(1517), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1723), - [anon_sym_DOT_DOT] = ACTIONS(1725), + [anon_sym_await] = ACTIONS(1519), + [anon_sym_DOT_DOT] = ACTIONS(1521), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -209222,19 +209108,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1333), + [anon_sym_stackalloc] = ACTIONS(127), [anon_sym_sizeof] = ACTIONS(129), [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(1335), - [anon_sym___reftype] = ACTIONS(1337), - [anon_sym___refvalue] = ACTIONS(1339), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), [sym_null_literal] = ACTIONS(139), [anon_sym_SQUOTE] = ACTIONS(141), [sym_integer_literal] = ACTIONS(139), [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1341), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -209251,84 +209137,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [991] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2762), - [sym__name] = STATE(5893), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2316), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(4733), - [sym_non_lvalue_expression] = STATE(3438), - [sym_lvalue_expression] = STATE(3391), - [sym__expression_statement_expression] = STATE(3362), - [sym_assignment_expression] = STATE(3449), - [sym_binary_expression] = STATE(3362), - [sym_postfix_unary_expression] = STATE(3449), - [sym_prefix_unary_expression] = STATE(3449), - [sym__pointer_indirection_expression] = STATE(2747), - [sym_query_expression] = STATE(3362), - [sym_from_clause] = STATE(6155), - [sym_conditional_expression] = STATE(3362), - [sym_conditional_access_expression] = STATE(3362), - [sym_as_expression] = STATE(3362), - [sym_is_expression] = STATE(3362), - [sym_is_pattern_expression] = STATE(3362), - [sym_cast_expression] = STATE(3362), - [sym_checked_expression] = STATE(3362), - [sym_invocation_expression] = STATE(3449), - [sym_switch_expression] = STATE(3362), - [sym_await_expression] = STATE(3449), - [sym_throw_expression] = STATE(3362), - [sym_element_access_expression] = STATE(2747), - [sym_interpolated_string_expression] = STATE(3362), - [sym_member_access_expression] = STATE(2747), - [sym_object_creation_expression] = STATE(3449), - [sym_parenthesized_expression] = STATE(3449), - [sym__parenthesized_lvalue_expression] = STATE(2747), - [sym_lambda_expression] = STATE(3362), - [sym__lambda_expression_init] = STATE(7726), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3362), - [sym_anonymous_method_expression] = STATE(3362), - [sym_anonymous_object_creation_expression] = STATE(3362), - [sym_implicit_array_creation_expression] = STATE(3362), - [sym_implicit_object_creation_expression] = STATE(3362), - [sym_implicit_stackalloc_expression] = STATE(3362), - [sym_initializer_expression] = STATE(3362), - [sym_default_expression] = STATE(3362), - [sym_with_expression] = STATE(3362), - [sym_sizeof_expression] = STATE(3362), - [sym_typeof_expression] = STATE(3362), - [sym_makeref_expression] = STATE(3362), - [sym_ref_expression] = STATE(3362), - [sym_reftype_expression] = STATE(3362), - [sym_refvalue_expression] = STATE(3362), - [sym_stackalloc_expression] = STATE(3362), - [sym_range_expression] = STATE(3362), - [sym_tuple_expression] = STATE(2747), - [sym_literal] = STATE(3362), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3362), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(5152), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2196), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(5088), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3510), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3102), + [sym_postfix_unary_expression] = STATE(3079), + [sym_prefix_unary_expression] = STATE(3079), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6134), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3102), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3079), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3102), + [sym_member_access_expression] = STATE(2472), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3079), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7425), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(3102), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3102), + [sym_typeof_expression] = STATE(3102), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2472), + [sym_literal] = STATE(3102), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(991), [sym_preproc_endregion] = STATE(991), [sym_preproc_line] = STATE(991), @@ -209338,47 +209224,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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3385), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1307), - [anon_sym_LPAREN] = ACTIONS(1711), - [anon_sym_ref] = ACTIONS(1713), - [anon_sym_LBRACE] = ACTIONS(1313), - [anon_sym_delegate] = ACTIONS(1315), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1479), + [anon_sym_LPAREN] = ACTIONS(43), + [anon_sym_ref] = ACTIONS(715), + [anon_sym_LBRACE] = ACTIONS(1481), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1613), + [anon_sym_new] = ACTIONS(1059), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1319), - [anon_sym_BANG] = ACTIONS(1717), - [anon_sym_TILDE] = ACTIONS(1717), - [anon_sym_PLUS_PLUS] = ACTIONS(1717), - [anon_sym_DASH_DASH] = ACTIONS(1717), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(1525), + [anon_sym_TILDE] = ACTIONS(1525), + [anon_sym_PLUS_PLUS] = ACTIONS(1525), + [anon_sym_DASH_DASH] = ACTIONS(1525), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [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(1323), + [anon_sym_PLUS] = ACTIONS(1523), + [anon_sym_DASH] = ACTIONS(1523), + [anon_sym_STAR] = ACTIONS(81), + [anon_sym_CARET] = ACTIONS(1525), + [anon_sym_AMP] = ACTIONS(1525), + [anon_sym_this] = ACTIONS(83), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1325), + [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1319), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1721), + [anon_sym_throw] = ACTIONS(1527), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1723), - [anon_sym_DOT_DOT] = ACTIONS(1725), + [anon_sym_await] = ACTIONS(1529), + [anon_sym_DOT_DOT] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -209391,19 +209277,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1333), + [anon_sym_stackalloc] = ACTIONS(127), [anon_sym_sizeof] = ACTIONS(129), [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(1335), - [anon_sym___reftype] = ACTIONS(1337), - [anon_sym___refvalue] = ACTIONS(1339), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), [sym_null_literal] = ACTIONS(139), [anon_sym_SQUOTE] = ACTIONS(141), [sym_integer_literal] = ACTIONS(139), [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1341), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -209420,84 +209306,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [992] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2762), - [sym__name] = STATE(5893), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2316), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(4771), - [sym_non_lvalue_expression] = STATE(3438), - [sym_lvalue_expression] = STATE(3391), - [sym__expression_statement_expression] = STATE(3362), - [sym_assignment_expression] = STATE(3449), - [sym_binary_expression] = STATE(3362), - [sym_postfix_unary_expression] = STATE(3449), - [sym_prefix_unary_expression] = STATE(3449), - [sym__pointer_indirection_expression] = STATE(2747), - [sym_query_expression] = STATE(3362), - [sym_from_clause] = STATE(6155), - [sym_conditional_expression] = STATE(3362), - [sym_conditional_access_expression] = STATE(3362), - [sym_as_expression] = STATE(3362), - [sym_is_expression] = STATE(3362), - [sym_is_pattern_expression] = STATE(3362), - [sym_cast_expression] = STATE(3362), - [sym_checked_expression] = STATE(3362), - [sym_invocation_expression] = STATE(3449), - [sym_switch_expression] = STATE(3362), - [sym_await_expression] = STATE(3449), - [sym_throw_expression] = STATE(3362), - [sym_element_access_expression] = STATE(2747), - [sym_interpolated_string_expression] = STATE(3362), - [sym_member_access_expression] = STATE(2747), - [sym_object_creation_expression] = STATE(3449), - [sym_parenthesized_expression] = STATE(3449), - [sym__parenthesized_lvalue_expression] = STATE(2747), - [sym_lambda_expression] = STATE(3362), - [sym__lambda_expression_init] = STATE(7726), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3362), - [sym_anonymous_method_expression] = STATE(3362), - [sym_anonymous_object_creation_expression] = STATE(3362), - [sym_implicit_array_creation_expression] = STATE(3362), - [sym_implicit_object_creation_expression] = STATE(3362), - [sym_implicit_stackalloc_expression] = STATE(3362), - [sym_initializer_expression] = STATE(3362), - [sym_default_expression] = STATE(3362), - [sym_with_expression] = STATE(3362), - [sym_sizeof_expression] = STATE(3362), - [sym_typeof_expression] = STATE(3362), - [sym_makeref_expression] = STATE(3362), - [sym_ref_expression] = STATE(3362), - [sym_reftype_expression] = STATE(3362), - [sym_refvalue_expression] = STATE(3362), - [sym_stackalloc_expression] = STATE(3362), - [sym_range_expression] = STATE(3362), - [sym_tuple_expression] = STATE(2747), - [sym_literal] = STATE(3362), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3362), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(5152), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2196), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(4798), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3356), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3102), + [sym_postfix_unary_expression] = STATE(3079), + [sym_prefix_unary_expression] = STATE(3079), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6134), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3102), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3079), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3102), + [sym_member_access_expression] = STATE(2472), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3079), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7627), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(3102), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3102), + [sym_typeof_expression] = STATE(3102), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2472), + [sym_literal] = STATE(3102), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(992), [sym_preproc_endregion] = STATE(992), [sym_preproc_line] = STATE(992), @@ -209507,47 +209393,47 @@ 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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3385), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1307), - [anon_sym_LPAREN] = ACTIONS(1711), - [anon_sym_ref] = ACTIONS(1713), - [anon_sym_LBRACE] = ACTIONS(1313), - [anon_sym_delegate] = ACTIONS(1315), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1479), + [anon_sym_LPAREN] = ACTIONS(1511), + [anon_sym_ref] = ACTIONS(1513), + [anon_sym_LBRACE] = ACTIONS(1481), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1613), + [anon_sym_new] = ACTIONS(1515), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1319), - [anon_sym_BANG] = ACTIONS(1717), - [anon_sym_TILDE] = ACTIONS(1717), - [anon_sym_PLUS_PLUS] = ACTIONS(1717), - [anon_sym_DASH_DASH] = ACTIONS(1717), + [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(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(1323), + [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(1325), + [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1319), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1721), + [anon_sym_throw] = ACTIONS(1517), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1723), - [anon_sym_DOT_DOT] = ACTIONS(1725), + [anon_sym_await] = ACTIONS(1519), + [anon_sym_DOT_DOT] = ACTIONS(1521), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -209560,19 +209446,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1333), + [anon_sym_stackalloc] = ACTIONS(127), [anon_sym_sizeof] = ACTIONS(129), [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(1335), - [anon_sym___reftype] = ACTIONS(1337), - [anon_sym___refvalue] = ACTIONS(1339), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), [sym_null_literal] = ACTIONS(139), [anon_sym_SQUOTE] = ACTIONS(141), [sym_integer_literal] = ACTIONS(139), [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1341), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -209589,84 +209475,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [993] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2762), - [sym__name] = STATE(5893), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2316), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(4773), - [sym_non_lvalue_expression] = STATE(3438), - [sym_lvalue_expression] = STATE(3391), - [sym__expression_statement_expression] = STATE(3362), - [sym_assignment_expression] = STATE(3449), - [sym_binary_expression] = STATE(3362), - [sym_postfix_unary_expression] = STATE(3449), - [sym_prefix_unary_expression] = STATE(3449), - [sym__pointer_indirection_expression] = STATE(2747), - [sym_query_expression] = STATE(3362), - [sym_from_clause] = STATE(6155), - [sym_conditional_expression] = STATE(3362), - [sym_conditional_access_expression] = STATE(3362), - [sym_as_expression] = STATE(3362), - [sym_is_expression] = STATE(3362), - [sym_is_pattern_expression] = STATE(3362), - [sym_cast_expression] = STATE(3362), - [sym_checked_expression] = STATE(3362), - [sym_invocation_expression] = STATE(3449), - [sym_switch_expression] = STATE(3362), - [sym_await_expression] = STATE(3449), - [sym_throw_expression] = STATE(3362), - [sym_element_access_expression] = STATE(2747), - [sym_interpolated_string_expression] = STATE(3362), - [sym_member_access_expression] = STATE(2747), - [sym_object_creation_expression] = STATE(3449), - [sym_parenthesized_expression] = STATE(3449), - [sym__parenthesized_lvalue_expression] = STATE(2747), - [sym_lambda_expression] = STATE(3362), - [sym__lambda_expression_init] = STATE(7726), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3362), - [sym_anonymous_method_expression] = STATE(3362), - [sym_anonymous_object_creation_expression] = STATE(3362), - [sym_implicit_array_creation_expression] = STATE(3362), - [sym_implicit_object_creation_expression] = STATE(3362), - [sym_implicit_stackalloc_expression] = STATE(3362), - [sym_initializer_expression] = STATE(3362), - [sym_default_expression] = STATE(3362), - [sym_with_expression] = STATE(3362), - [sym_sizeof_expression] = STATE(3362), - [sym_typeof_expression] = STATE(3362), - [sym_makeref_expression] = STATE(3362), - [sym_ref_expression] = STATE(3362), - [sym_reftype_expression] = STATE(3362), - [sym_refvalue_expression] = STATE(3362), - [sym_stackalloc_expression] = STATE(3362), - [sym_range_expression] = STATE(3362), - [sym_tuple_expression] = STATE(2747), - [sym_literal] = STATE(3362), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3362), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(5152), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2196), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(4799), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3356), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3102), + [sym_postfix_unary_expression] = STATE(3079), + [sym_prefix_unary_expression] = STATE(3079), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6134), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3102), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3079), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3102), + [sym_member_access_expression] = STATE(2472), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3079), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7627), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(3102), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3102), + [sym_typeof_expression] = STATE(3102), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2472), + [sym_literal] = STATE(3102), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(993), [sym_preproc_endregion] = STATE(993), [sym_preproc_line] = STATE(993), @@ -209676,47 +209562,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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3385), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1307), - [anon_sym_LPAREN] = ACTIONS(1711), - [anon_sym_ref] = ACTIONS(1713), - [anon_sym_LBRACE] = ACTIONS(1313), - [anon_sym_delegate] = ACTIONS(1315), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1479), + [anon_sym_LPAREN] = ACTIONS(1511), + [anon_sym_ref] = ACTIONS(1513), + [anon_sym_LBRACE] = ACTIONS(1481), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1613), + [anon_sym_new] = ACTIONS(1515), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1319), - [anon_sym_BANG] = ACTIONS(1717), - [anon_sym_TILDE] = ACTIONS(1717), - [anon_sym_PLUS_PLUS] = ACTIONS(1717), - [anon_sym_DASH_DASH] = ACTIONS(1717), + [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(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(1323), + [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(1325), + [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1319), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1721), + [anon_sym_throw] = ACTIONS(1517), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1723), - [anon_sym_DOT_DOT] = ACTIONS(1725), + [anon_sym_await] = ACTIONS(1519), + [anon_sym_DOT_DOT] = ACTIONS(1521), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -209729,19 +209615,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1333), + [anon_sym_stackalloc] = ACTIONS(127), [anon_sym_sizeof] = ACTIONS(129), [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(1335), - [anon_sym___reftype] = ACTIONS(1337), - [anon_sym___refvalue] = ACTIONS(1339), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), [sym_null_literal] = ACTIONS(139), [anon_sym_SQUOTE] = ACTIONS(141), [sym_integer_literal] = ACTIONS(139), [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1341), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -209758,84 +209644,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [994] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2762), - [sym__name] = STATE(5893), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2316), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(4774), - [sym_non_lvalue_expression] = STATE(3438), - [sym_lvalue_expression] = STATE(3391), - [sym__expression_statement_expression] = STATE(3362), - [sym_assignment_expression] = STATE(3449), - [sym_binary_expression] = STATE(3362), - [sym_postfix_unary_expression] = STATE(3449), - [sym_prefix_unary_expression] = STATE(3449), - [sym__pointer_indirection_expression] = STATE(2747), - [sym_query_expression] = STATE(3362), - [sym_from_clause] = STATE(6155), - [sym_conditional_expression] = STATE(3362), - [sym_conditional_access_expression] = STATE(3362), - [sym_as_expression] = STATE(3362), - [sym_is_expression] = STATE(3362), - [sym_is_pattern_expression] = STATE(3362), - [sym_cast_expression] = STATE(3362), - [sym_checked_expression] = STATE(3362), - [sym_invocation_expression] = STATE(3449), - [sym_switch_expression] = STATE(3362), - [sym_await_expression] = STATE(3449), - [sym_throw_expression] = STATE(3362), - [sym_element_access_expression] = STATE(2747), - [sym_interpolated_string_expression] = STATE(3362), - [sym_member_access_expression] = STATE(2747), - [sym_object_creation_expression] = STATE(3449), - [sym_parenthesized_expression] = STATE(3449), - [sym__parenthesized_lvalue_expression] = STATE(2747), - [sym_lambda_expression] = STATE(3362), - [sym__lambda_expression_init] = STATE(7726), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3362), - [sym_anonymous_method_expression] = STATE(3362), - [sym_anonymous_object_creation_expression] = STATE(3362), - [sym_implicit_array_creation_expression] = STATE(3362), - [sym_implicit_object_creation_expression] = STATE(3362), - [sym_implicit_stackalloc_expression] = STATE(3362), - [sym_initializer_expression] = STATE(3362), - [sym_default_expression] = STATE(3362), - [sym_with_expression] = STATE(3362), - [sym_sizeof_expression] = STATE(3362), - [sym_typeof_expression] = STATE(3362), - [sym_makeref_expression] = STATE(3362), - [sym_ref_expression] = STATE(3362), - [sym_reftype_expression] = STATE(3362), - [sym_refvalue_expression] = STATE(3362), - [sym_stackalloc_expression] = STATE(3362), - [sym_range_expression] = STATE(3362), - [sym_tuple_expression] = STATE(2747), - [sym_literal] = STATE(3362), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3362), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(5152), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2196), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(4800), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3356), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3102), + [sym_postfix_unary_expression] = STATE(3079), + [sym_prefix_unary_expression] = STATE(3079), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6134), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3102), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3079), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3102), + [sym_member_access_expression] = STATE(2472), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3079), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7627), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(3102), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3102), + [sym_typeof_expression] = STATE(3102), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2472), + [sym_literal] = STATE(3102), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(994), [sym_preproc_endregion] = STATE(994), [sym_preproc_line] = STATE(994), @@ -209845,47 +209731,47 @@ 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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3385), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1307), - [anon_sym_LPAREN] = ACTIONS(1711), - [anon_sym_ref] = ACTIONS(1713), - [anon_sym_LBRACE] = ACTIONS(1313), - [anon_sym_delegate] = ACTIONS(1315), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1479), + [anon_sym_LPAREN] = ACTIONS(1511), + [anon_sym_ref] = ACTIONS(1513), + [anon_sym_LBRACE] = ACTIONS(1481), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1613), + [anon_sym_new] = ACTIONS(1515), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1319), - [anon_sym_BANG] = ACTIONS(1717), - [anon_sym_TILDE] = ACTIONS(1717), - [anon_sym_PLUS_PLUS] = ACTIONS(1717), - [anon_sym_DASH_DASH] = ACTIONS(1717), + [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(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(1323), + [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(1325), + [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1319), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1721), + [anon_sym_throw] = ACTIONS(1517), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1723), - [anon_sym_DOT_DOT] = ACTIONS(1725), + [anon_sym_await] = ACTIONS(1519), + [anon_sym_DOT_DOT] = ACTIONS(1521), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -209898,19 +209784,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1333), + [anon_sym_stackalloc] = ACTIONS(127), [anon_sym_sizeof] = ACTIONS(129), [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(1335), - [anon_sym___reftype] = ACTIONS(1337), - [anon_sym___refvalue] = ACTIONS(1339), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), [sym_null_literal] = ACTIONS(139), [anon_sym_SQUOTE] = ACTIONS(141), [sym_integer_literal] = ACTIONS(139), [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1341), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -209927,84 +209813,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [995] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2762), - [sym__name] = STATE(5893), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2316), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(4775), - [sym_non_lvalue_expression] = STATE(3438), - [sym_lvalue_expression] = STATE(3391), - [sym__expression_statement_expression] = STATE(3362), - [sym_assignment_expression] = STATE(3449), - [sym_binary_expression] = STATE(3362), - [sym_postfix_unary_expression] = STATE(3449), - [sym_prefix_unary_expression] = STATE(3449), - [sym__pointer_indirection_expression] = STATE(2747), - [sym_query_expression] = STATE(3362), - [sym_from_clause] = STATE(6155), - [sym_conditional_expression] = STATE(3362), - [sym_conditional_access_expression] = STATE(3362), - [sym_as_expression] = STATE(3362), - [sym_is_expression] = STATE(3362), - [sym_is_pattern_expression] = STATE(3362), - [sym_cast_expression] = STATE(3362), - [sym_checked_expression] = STATE(3362), - [sym_invocation_expression] = STATE(3449), - [sym_switch_expression] = STATE(3362), - [sym_await_expression] = STATE(3449), - [sym_throw_expression] = STATE(3362), - [sym_element_access_expression] = STATE(2747), - [sym_interpolated_string_expression] = STATE(3362), - [sym_member_access_expression] = STATE(2747), - [sym_object_creation_expression] = STATE(3449), - [sym_parenthesized_expression] = STATE(3449), - [sym__parenthesized_lvalue_expression] = STATE(2747), - [sym_lambda_expression] = STATE(3362), - [sym__lambda_expression_init] = STATE(7726), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3362), - [sym_anonymous_method_expression] = STATE(3362), - [sym_anonymous_object_creation_expression] = STATE(3362), - [sym_implicit_array_creation_expression] = STATE(3362), - [sym_implicit_object_creation_expression] = STATE(3362), - [sym_implicit_stackalloc_expression] = STATE(3362), - [sym_initializer_expression] = STATE(3362), - [sym_default_expression] = STATE(3362), - [sym_with_expression] = STATE(3362), - [sym_sizeof_expression] = STATE(3362), - [sym_typeof_expression] = STATE(3362), - [sym_makeref_expression] = STATE(3362), - [sym_ref_expression] = STATE(3362), - [sym_reftype_expression] = STATE(3362), - [sym_refvalue_expression] = STATE(3362), - [sym_stackalloc_expression] = STATE(3362), - [sym_range_expression] = STATE(3362), - [sym_tuple_expression] = STATE(2747), - [sym_literal] = STATE(3362), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3362), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(5152), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2196), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(5089), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3510), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3102), + [sym_postfix_unary_expression] = STATE(3079), + [sym_prefix_unary_expression] = STATE(3079), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6134), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3102), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3079), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3102), + [sym_member_access_expression] = STATE(2472), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3079), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7425), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(3102), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3102), + [sym_typeof_expression] = STATE(3102), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2472), + [sym_literal] = STATE(3102), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(995), [sym_preproc_endregion] = STATE(995), [sym_preproc_line] = STATE(995), @@ -210014,47 +209900,47 @@ 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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3385), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1307), - [anon_sym_LPAREN] = ACTIONS(1711), - [anon_sym_ref] = ACTIONS(1713), - [anon_sym_LBRACE] = ACTIONS(1313), - [anon_sym_delegate] = ACTIONS(1315), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1479), + [anon_sym_LPAREN] = ACTIONS(43), + [anon_sym_ref] = ACTIONS(715), + [anon_sym_LBRACE] = ACTIONS(1481), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1613), + [anon_sym_new] = ACTIONS(1059), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1319), - [anon_sym_BANG] = ACTIONS(1717), - [anon_sym_TILDE] = ACTIONS(1717), - [anon_sym_PLUS_PLUS] = ACTIONS(1717), - [anon_sym_DASH_DASH] = ACTIONS(1717), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(1525), + [anon_sym_TILDE] = ACTIONS(1525), + [anon_sym_PLUS_PLUS] = ACTIONS(1525), + [anon_sym_DASH_DASH] = ACTIONS(1525), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [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(1323), + [anon_sym_PLUS] = ACTIONS(1523), + [anon_sym_DASH] = ACTIONS(1523), + [anon_sym_STAR] = ACTIONS(81), + [anon_sym_CARET] = ACTIONS(1525), + [anon_sym_AMP] = ACTIONS(1525), + [anon_sym_this] = ACTIONS(83), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1325), + [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1319), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1721), + [anon_sym_throw] = ACTIONS(1527), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1723), - [anon_sym_DOT_DOT] = ACTIONS(1725), + [anon_sym_await] = ACTIONS(1529), + [anon_sym_DOT_DOT] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -210067,19 +209953,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1333), + [anon_sym_stackalloc] = ACTIONS(127), [anon_sym_sizeof] = ACTIONS(129), [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(1335), - [anon_sym___reftype] = ACTIONS(1337), - [anon_sym___refvalue] = ACTIONS(1339), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), [sym_null_literal] = ACTIONS(139), [anon_sym_SQUOTE] = ACTIONS(141), [sym_integer_literal] = ACTIONS(139), [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1341), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -210096,84 +209982,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [996] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2762), - [sym__name] = STATE(5893), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2316), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(4776), - [sym_non_lvalue_expression] = STATE(3438), - [sym_lvalue_expression] = STATE(3391), - [sym__expression_statement_expression] = STATE(3362), - [sym_assignment_expression] = STATE(3449), - [sym_binary_expression] = STATE(3362), - [sym_postfix_unary_expression] = STATE(3449), - [sym_prefix_unary_expression] = STATE(3449), - [sym__pointer_indirection_expression] = STATE(2747), - [sym_query_expression] = STATE(3362), - [sym_from_clause] = STATE(6155), - [sym_conditional_expression] = STATE(3362), - [sym_conditional_access_expression] = STATE(3362), - [sym_as_expression] = STATE(3362), - [sym_is_expression] = STATE(3362), - [sym_is_pattern_expression] = STATE(3362), - [sym_cast_expression] = STATE(3362), - [sym_checked_expression] = STATE(3362), - [sym_invocation_expression] = STATE(3449), - [sym_switch_expression] = STATE(3362), - [sym_await_expression] = STATE(3449), - [sym_throw_expression] = STATE(3362), - [sym_element_access_expression] = STATE(2747), - [sym_interpolated_string_expression] = STATE(3362), - [sym_member_access_expression] = STATE(2747), - [sym_object_creation_expression] = STATE(3449), - [sym_parenthesized_expression] = STATE(3449), - [sym__parenthesized_lvalue_expression] = STATE(2747), - [sym_lambda_expression] = STATE(3362), - [sym__lambda_expression_init] = STATE(7726), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3362), - [sym_anonymous_method_expression] = STATE(3362), - [sym_anonymous_object_creation_expression] = STATE(3362), - [sym_implicit_array_creation_expression] = STATE(3362), - [sym_implicit_object_creation_expression] = STATE(3362), - [sym_implicit_stackalloc_expression] = STATE(3362), - [sym_initializer_expression] = STATE(3362), - [sym_default_expression] = STATE(3362), - [sym_with_expression] = STATE(3362), - [sym_sizeof_expression] = STATE(3362), - [sym_typeof_expression] = STATE(3362), - [sym_makeref_expression] = STATE(3362), - [sym_ref_expression] = STATE(3362), - [sym_reftype_expression] = STATE(3362), - [sym_refvalue_expression] = STATE(3362), - [sym_stackalloc_expression] = STATE(3362), - [sym_range_expression] = STATE(3362), - [sym_tuple_expression] = STATE(2747), - [sym_literal] = STATE(3362), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3362), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(5152), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2196), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(5098), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3510), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3102), + [sym_postfix_unary_expression] = STATE(3079), + [sym_prefix_unary_expression] = STATE(3079), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6134), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3102), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3079), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3102), + [sym_member_access_expression] = STATE(2472), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3079), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7425), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(3102), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3102), + [sym_typeof_expression] = STATE(3102), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2472), + [sym_literal] = STATE(3102), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(996), [sym_preproc_endregion] = STATE(996), [sym_preproc_line] = STATE(996), @@ -210183,47 +210069,47 @@ 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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3385), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1307), - [anon_sym_LPAREN] = ACTIONS(1711), - [anon_sym_ref] = ACTIONS(1713), - [anon_sym_LBRACE] = ACTIONS(1313), - [anon_sym_delegate] = ACTIONS(1315), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1479), + [anon_sym_LPAREN] = ACTIONS(43), + [anon_sym_ref] = ACTIONS(715), + [anon_sym_LBRACE] = ACTIONS(1481), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1613), + [anon_sym_new] = ACTIONS(1059), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1319), - [anon_sym_BANG] = ACTIONS(1717), - [anon_sym_TILDE] = ACTIONS(1717), - [anon_sym_PLUS_PLUS] = ACTIONS(1717), - [anon_sym_DASH_DASH] = ACTIONS(1717), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(1525), + [anon_sym_TILDE] = ACTIONS(1525), + [anon_sym_PLUS_PLUS] = ACTIONS(1525), + [anon_sym_DASH_DASH] = ACTIONS(1525), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [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(1323), + [anon_sym_PLUS] = ACTIONS(1523), + [anon_sym_DASH] = ACTIONS(1523), + [anon_sym_STAR] = ACTIONS(81), + [anon_sym_CARET] = ACTIONS(1525), + [anon_sym_AMP] = ACTIONS(1525), + [anon_sym_this] = ACTIONS(83), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1325), + [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1319), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1721), + [anon_sym_throw] = ACTIONS(1527), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1723), - [anon_sym_DOT_DOT] = ACTIONS(1725), + [anon_sym_await] = ACTIONS(1529), + [anon_sym_DOT_DOT] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -210236,19 +210122,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1333), + [anon_sym_stackalloc] = ACTIONS(127), [anon_sym_sizeof] = ACTIONS(129), [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(1335), - [anon_sym___reftype] = ACTIONS(1337), - [anon_sym___refvalue] = ACTIONS(1339), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), [sym_null_literal] = ACTIONS(139), [anon_sym_SQUOTE] = ACTIONS(141), [sym_integer_literal] = ACTIONS(139), [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1341), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -210265,84 +210151,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [997] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2762), - [sym__name] = STATE(5893), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2316), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(4778), - [sym_non_lvalue_expression] = STATE(3438), - [sym_lvalue_expression] = STATE(3391), - [sym__expression_statement_expression] = STATE(3362), - [sym_assignment_expression] = STATE(3449), - [sym_binary_expression] = STATE(3362), - [sym_postfix_unary_expression] = STATE(3449), - [sym_prefix_unary_expression] = STATE(3449), - [sym__pointer_indirection_expression] = STATE(2747), - [sym_query_expression] = STATE(3362), - [sym_from_clause] = STATE(6155), - [sym_conditional_expression] = STATE(3362), - [sym_conditional_access_expression] = STATE(3362), - [sym_as_expression] = STATE(3362), - [sym_is_expression] = STATE(3362), - [sym_is_pattern_expression] = STATE(3362), - [sym_cast_expression] = STATE(3362), - [sym_checked_expression] = STATE(3362), - [sym_invocation_expression] = STATE(3449), - [sym_switch_expression] = STATE(3362), - [sym_await_expression] = STATE(3449), - [sym_throw_expression] = STATE(3362), - [sym_element_access_expression] = STATE(2747), - [sym_interpolated_string_expression] = STATE(3362), - [sym_member_access_expression] = STATE(2747), - [sym_object_creation_expression] = STATE(3449), - [sym_parenthesized_expression] = STATE(3449), - [sym__parenthesized_lvalue_expression] = STATE(2747), - [sym_lambda_expression] = STATE(3362), - [sym__lambda_expression_init] = STATE(7726), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3362), - [sym_anonymous_method_expression] = STATE(3362), - [sym_anonymous_object_creation_expression] = STATE(3362), - [sym_implicit_array_creation_expression] = STATE(3362), - [sym_implicit_object_creation_expression] = STATE(3362), - [sym_implicit_stackalloc_expression] = STATE(3362), - [sym_initializer_expression] = STATE(3362), - [sym_default_expression] = STATE(3362), - [sym_with_expression] = STATE(3362), - [sym_sizeof_expression] = STATE(3362), - [sym_typeof_expression] = STATE(3362), - [sym_makeref_expression] = STATE(3362), - [sym_ref_expression] = STATE(3362), - [sym_reftype_expression] = STATE(3362), - [sym_refvalue_expression] = STATE(3362), - [sym_stackalloc_expression] = STATE(3362), - [sym_range_expression] = STATE(3362), - [sym_tuple_expression] = STATE(2747), - [sym_literal] = STATE(3362), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3362), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2416), + [sym__name] = STATE(5885), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2404), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(4151), + [sym_non_lvalue_expression] = STATE(3040), + [sym_lvalue_expression] = STATE(3115), + [sym__expression_statement_expression] = STATE(3035), + [sym_assignment_expression] = STATE(3043), + [sym_binary_expression] = STATE(3035), + [sym_postfix_unary_expression] = STATE(3043), + [sym_prefix_unary_expression] = STATE(3043), + [sym__pointer_indirection_expression] = STATE(2415), + [sym_query_expression] = STATE(3035), + [sym_from_clause] = STATE(6162), + [sym_conditional_expression] = STATE(3035), + [sym_conditional_access_expression] = STATE(3035), + [sym_as_expression] = STATE(3035), + [sym_is_expression] = STATE(3035), + [sym_is_pattern_expression] = STATE(3035), + [sym_cast_expression] = STATE(3035), + [sym_checked_expression] = STATE(3035), + [sym_invocation_expression] = STATE(3043), + [sym_switch_expression] = STATE(3035), + [sym_await_expression] = STATE(3043), + [sym_throw_expression] = STATE(3035), + [sym_element_access_expression] = STATE(2415), + [sym_interpolated_string_expression] = STATE(3035), + [sym_member_access_expression] = STATE(2415), + [sym_object_creation_expression] = STATE(3043), + [sym_parenthesized_expression] = STATE(3043), + [sym__parenthesized_lvalue_expression] = STATE(2415), + [sym_lambda_expression] = STATE(3035), + [sym__lambda_expression_init] = STATE(7416), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3035), + [sym_anonymous_method_expression] = STATE(3035), + [sym_anonymous_object_creation_expression] = STATE(3035), + [sym_implicit_array_creation_expression] = STATE(3035), + [sym_implicit_object_creation_expression] = STATE(3035), + [sym_implicit_stackalloc_expression] = STATE(3035), + [sym_initializer_expression] = STATE(3035), + [sym_default_expression] = STATE(3035), + [sym_with_expression] = STATE(3035), + [sym_sizeof_expression] = STATE(3035), + [sym_typeof_expression] = STATE(3035), + [sym_makeref_expression] = STATE(3035), + [sym_ref_expression] = STATE(3035), + [sym_reftype_expression] = STATE(3035), + [sym_refvalue_expression] = STATE(3035), + [sym_stackalloc_expression] = STATE(3035), + [sym_range_expression] = STATE(3035), + [sym_tuple_expression] = STATE(2415), + [sym_literal] = STATE(3035), + [sym_character_literal] = STATE(3037), + [sym_string_literal] = STATE(3037), + [sym_raw_string_literal] = STATE(3037), + [sym_boolean_literal] = STATE(3037), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3035), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(997), [sym_preproc_endregion] = STATE(997), [sym_preproc_line] = STATE(997), @@ -210352,47 +210238,47 @@ 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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3385), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3455), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1307), - [anon_sym_LPAREN] = ACTIONS(1711), - [anon_sym_ref] = ACTIONS(1713), - [anon_sym_LBRACE] = ACTIONS(1313), - [anon_sym_delegate] = ACTIONS(1315), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1239), + [anon_sym_LPAREN] = ACTIONS(2261), + [anon_sym_ref] = ACTIONS(2263), + [anon_sym_LBRACE] = ACTIONS(1245), + [anon_sym_delegate] = ACTIONS(1247), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1613), + [anon_sym_new] = ACTIONS(1935), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1319), - [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(77), - [anon_sym_false] = ACTIONS(77), - [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(1323), + [anon_sym_checked] = ACTIONS(1251), + [anon_sym_BANG] = ACTIONS(2267), + [anon_sym_TILDE] = ACTIONS(2267), + [anon_sym_PLUS_PLUS] = ACTIONS(2267), + [anon_sym_DASH_DASH] = ACTIONS(2267), + [anon_sym_true] = ACTIONS(1257), + [anon_sym_false] = ACTIONS(1257), + [anon_sym_PLUS] = ACTIONS(2265), + [anon_sym_DASH] = ACTIONS(2265), + [anon_sym_STAR] = ACTIONS(1941), + [anon_sym_CARET] = ACTIONS(2267), + [anon_sym_AMP] = ACTIONS(2267), + [anon_sym_this] = ACTIONS(1261), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1325), + [anon_sym_base] = ACTIONS(1263), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1319), + [sym_predefined_type] = ACTIONS(1265), + [anon_sym_unchecked] = ACTIONS(1251), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1721), + [anon_sym_default] = ACTIONS(1267), + [anon_sym_throw] = ACTIONS(2269), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1723), - [anon_sym_DOT_DOT] = ACTIONS(1725), + [anon_sym_await] = ACTIONS(2271), + [anon_sym_DOT_DOT] = ACTIONS(2273), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -210405,19 +210291,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1333), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(1335), - [anon_sym___reftype] = ACTIONS(1337), - [anon_sym___refvalue] = ACTIONS(1339), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1341), + [anon_sym_stackalloc] = ACTIONS(1275), + [anon_sym_sizeof] = ACTIONS(1277), + [anon_sym_typeof] = ACTIONS(1279), + [anon_sym___makeref] = ACTIONS(1281), + [anon_sym___reftype] = ACTIONS(1283), + [anon_sym___refvalue] = ACTIONS(1285), + [sym_null_literal] = ACTIONS(1287), + [anon_sym_SQUOTE] = ACTIONS(1289), + [sym_integer_literal] = ACTIONS(1287), + [sym_real_literal] = ACTIONS(1291), + [anon_sym_DQUOTE] = ACTIONS(1293), + [sym_verbatim_string_literal] = ACTIONS(1291), + [aux_sym_preproc_if_token1] = ACTIONS(1295), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -210428,90 +210314,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(151), - [sym_interpolation_verbatim_start] = ACTIONS(153), - [sym_interpolation_raw_start] = ACTIONS(155), - [sym_raw_string_start] = ACTIONS(157), + [sym_interpolation_regular_start] = ACTIONS(1297), + [sym_interpolation_verbatim_start] = ACTIONS(1299), + [sym_interpolation_raw_start] = ACTIONS(1301), + [sym_raw_string_start] = ACTIONS(1303), }, [998] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2762), - [sym__name] = STATE(5893), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2316), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(4791), - [sym_non_lvalue_expression] = STATE(3438), - [sym_lvalue_expression] = STATE(3391), - [sym__expression_statement_expression] = STATE(3362), - [sym_assignment_expression] = STATE(3449), - [sym_binary_expression] = STATE(3362), - [sym_postfix_unary_expression] = STATE(3449), - [sym_prefix_unary_expression] = STATE(3449), - [sym__pointer_indirection_expression] = STATE(2747), - [sym_query_expression] = STATE(3362), - [sym_from_clause] = STATE(6155), - [sym_conditional_expression] = STATE(3362), - [sym_conditional_access_expression] = STATE(3362), - [sym_as_expression] = STATE(3362), - [sym_is_expression] = STATE(3362), - [sym_is_pattern_expression] = STATE(3362), - [sym_cast_expression] = STATE(3362), - [sym_checked_expression] = STATE(3362), - [sym_invocation_expression] = STATE(3449), - [sym_switch_expression] = STATE(3362), - [sym_await_expression] = STATE(3449), - [sym_throw_expression] = STATE(3362), - [sym_element_access_expression] = STATE(2747), - [sym_interpolated_string_expression] = STATE(3362), - [sym_member_access_expression] = STATE(2747), - [sym_object_creation_expression] = STATE(3449), - [sym_parenthesized_expression] = STATE(3449), - [sym__parenthesized_lvalue_expression] = STATE(2747), - [sym_lambda_expression] = STATE(3362), - [sym__lambda_expression_init] = STATE(7726), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3362), - [sym_anonymous_method_expression] = STATE(3362), - [sym_anonymous_object_creation_expression] = STATE(3362), - [sym_implicit_array_creation_expression] = STATE(3362), - [sym_implicit_object_creation_expression] = STATE(3362), - [sym_implicit_stackalloc_expression] = STATE(3362), - [sym_initializer_expression] = STATE(3362), - [sym_default_expression] = STATE(3362), - [sym_with_expression] = STATE(3362), - [sym_sizeof_expression] = STATE(3362), - [sym_typeof_expression] = STATE(3362), - [sym_makeref_expression] = STATE(3362), - [sym_ref_expression] = STATE(3362), - [sym_reftype_expression] = STATE(3362), - [sym_refvalue_expression] = STATE(3362), - [sym_stackalloc_expression] = STATE(3362), - [sym_range_expression] = STATE(3362), - [sym_tuple_expression] = STATE(2747), - [sym_literal] = STATE(3362), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3362), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(5152), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2196), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(5092), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3510), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3102), + [sym_postfix_unary_expression] = STATE(3079), + [sym_prefix_unary_expression] = STATE(3079), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6134), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3102), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3079), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3102), + [sym_member_access_expression] = STATE(2472), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3079), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7425), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(3102), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3102), + [sym_typeof_expression] = STATE(3102), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2472), + [sym_literal] = STATE(3102), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(998), [sym_preproc_endregion] = STATE(998), [sym_preproc_line] = STATE(998), @@ -210521,47 +210407,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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3385), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1307), - [anon_sym_LPAREN] = ACTIONS(1711), - [anon_sym_ref] = ACTIONS(1713), - [anon_sym_LBRACE] = ACTIONS(1313), - [anon_sym_delegate] = ACTIONS(1315), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1479), + [anon_sym_LPAREN] = ACTIONS(43), + [anon_sym_ref] = ACTIONS(715), + [anon_sym_LBRACE] = ACTIONS(1481), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1613), + [anon_sym_new] = ACTIONS(1059), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1319), - [anon_sym_BANG] = ACTIONS(1717), - [anon_sym_TILDE] = ACTIONS(1717), - [anon_sym_PLUS_PLUS] = ACTIONS(1717), - [anon_sym_DASH_DASH] = ACTIONS(1717), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(1525), + [anon_sym_TILDE] = ACTIONS(1525), + [anon_sym_PLUS_PLUS] = ACTIONS(1525), + [anon_sym_DASH_DASH] = ACTIONS(1525), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [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(1323), + [anon_sym_PLUS] = ACTIONS(1523), + [anon_sym_DASH] = ACTIONS(1523), + [anon_sym_STAR] = ACTIONS(81), + [anon_sym_CARET] = ACTIONS(1525), + [anon_sym_AMP] = ACTIONS(1525), + [anon_sym_this] = ACTIONS(83), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1325), + [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1319), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1721), + [anon_sym_throw] = ACTIONS(1527), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1723), - [anon_sym_DOT_DOT] = ACTIONS(1725), + [anon_sym_await] = ACTIONS(1529), + [anon_sym_DOT_DOT] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -210574,19 +210460,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1333), + [anon_sym_stackalloc] = ACTIONS(127), [anon_sym_sizeof] = ACTIONS(129), [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(1335), - [anon_sym___reftype] = ACTIONS(1337), - [anon_sym___refvalue] = ACTIONS(1339), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), [sym_null_literal] = ACTIONS(139), [anon_sym_SQUOTE] = ACTIONS(141), [sym_integer_literal] = ACTIONS(139), [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1341), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -210603,84 +210489,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [999] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2762), - [sym__name] = STATE(5893), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2316), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(4823), - [sym_non_lvalue_expression] = STATE(3438), - [sym_lvalue_expression] = STATE(3391), - [sym__expression_statement_expression] = STATE(3362), - [sym_assignment_expression] = STATE(3449), - [sym_binary_expression] = STATE(3362), - [sym_postfix_unary_expression] = STATE(3449), - [sym_prefix_unary_expression] = STATE(3449), - [sym__pointer_indirection_expression] = STATE(2747), - [sym_query_expression] = STATE(3362), - [sym_from_clause] = STATE(6155), - [sym_conditional_expression] = STATE(3362), - [sym_conditional_access_expression] = STATE(3362), - [sym_as_expression] = STATE(3362), - [sym_is_expression] = STATE(3362), - [sym_is_pattern_expression] = STATE(3362), - [sym_cast_expression] = STATE(3362), - [sym_checked_expression] = STATE(3362), - [sym_invocation_expression] = STATE(3449), - [sym_switch_expression] = STATE(3362), - [sym_await_expression] = STATE(3449), - [sym_throw_expression] = STATE(3362), - [sym_element_access_expression] = STATE(2747), - [sym_interpolated_string_expression] = STATE(3362), - [sym_member_access_expression] = STATE(2747), - [sym_object_creation_expression] = STATE(3449), - [sym_parenthesized_expression] = STATE(3449), - [sym__parenthesized_lvalue_expression] = STATE(2747), - [sym_lambda_expression] = STATE(3362), - [sym__lambda_expression_init] = STATE(7726), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3362), - [sym_anonymous_method_expression] = STATE(3362), - [sym_anonymous_object_creation_expression] = STATE(3362), - [sym_implicit_array_creation_expression] = STATE(3362), - [sym_implicit_object_creation_expression] = STATE(3362), - [sym_implicit_stackalloc_expression] = STATE(3362), - [sym_initializer_expression] = STATE(3362), - [sym_default_expression] = STATE(3362), - [sym_with_expression] = STATE(3362), - [sym_sizeof_expression] = STATE(3362), - [sym_typeof_expression] = STATE(3362), - [sym_makeref_expression] = STATE(3362), - [sym_ref_expression] = STATE(3362), - [sym_reftype_expression] = STATE(3362), - [sym_refvalue_expression] = STATE(3362), - [sym_stackalloc_expression] = STATE(3362), - [sym_range_expression] = STATE(3362), - [sym_tuple_expression] = STATE(2747), - [sym_literal] = STATE(3362), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3362), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(5152), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2196), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(3523), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3356), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3102), + [sym_postfix_unary_expression] = STATE(3079), + [sym_prefix_unary_expression] = STATE(3079), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6134), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3102), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3079), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3102), + [sym_member_access_expression] = STATE(2472), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3079), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7627), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(3102), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3102), + [sym_typeof_expression] = STATE(3102), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2472), + [sym_literal] = STATE(3102), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(999), [sym_preproc_endregion] = STATE(999), [sym_preproc_line] = STATE(999), @@ -210690,47 +210576,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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3385), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1307), - [anon_sym_LPAREN] = ACTIONS(1711), - [anon_sym_ref] = ACTIONS(1713), - [anon_sym_LBRACE] = ACTIONS(1313), - [anon_sym_delegate] = ACTIONS(1315), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1479), + [anon_sym_LPAREN] = ACTIONS(1511), + [anon_sym_ref] = ACTIONS(1513), + [anon_sym_LBRACE] = ACTIONS(1481), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1613), + [anon_sym_new] = ACTIONS(1515), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1319), - [anon_sym_BANG] = ACTIONS(1717), - [anon_sym_TILDE] = ACTIONS(1717), - [anon_sym_PLUS_PLUS] = ACTIONS(1717), - [anon_sym_DASH_DASH] = ACTIONS(1717), + [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(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(1323), + [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(1325), + [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1319), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1721), + [anon_sym_throw] = ACTIONS(1517), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1723), - [anon_sym_DOT_DOT] = ACTIONS(1725), + [anon_sym_await] = ACTIONS(1519), + [anon_sym_DOT_DOT] = ACTIONS(1521), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -210743,19 +210629,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1333), + [anon_sym_stackalloc] = ACTIONS(127), [anon_sym_sizeof] = ACTIONS(129), [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(1335), - [anon_sym___reftype] = ACTIONS(1337), - [anon_sym___refvalue] = ACTIONS(1339), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), [sym_null_literal] = ACTIONS(139), [anon_sym_SQUOTE] = ACTIONS(141), [sym_integer_literal] = ACTIONS(139), [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1341), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -210772,84 +210658,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [1000] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2762), - [sym__name] = STATE(5893), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2316), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(3218), - [sym_non_lvalue_expression] = STATE(3438), - [sym_lvalue_expression] = STATE(3391), - [sym__expression_statement_expression] = STATE(3362), - [sym_assignment_expression] = STATE(3449), - [sym_binary_expression] = STATE(3362), - [sym_postfix_unary_expression] = STATE(3449), - [sym_prefix_unary_expression] = STATE(3449), - [sym__pointer_indirection_expression] = STATE(2747), - [sym_query_expression] = STATE(3362), - [sym_from_clause] = STATE(6155), - [sym_conditional_expression] = STATE(3362), - [sym_conditional_access_expression] = STATE(3362), - [sym_as_expression] = STATE(3362), - [sym_is_expression] = STATE(3362), - [sym_is_pattern_expression] = STATE(3362), - [sym_cast_expression] = STATE(3362), - [sym_checked_expression] = STATE(3362), - [sym_invocation_expression] = STATE(3449), - [sym_switch_expression] = STATE(3362), - [sym_await_expression] = STATE(3449), - [sym_throw_expression] = STATE(3362), - [sym_element_access_expression] = STATE(2747), - [sym_interpolated_string_expression] = STATE(3362), - [sym_member_access_expression] = STATE(2747), - [sym_object_creation_expression] = STATE(3449), - [sym_parenthesized_expression] = STATE(3449), - [sym__parenthesized_lvalue_expression] = STATE(2747), - [sym_lambda_expression] = STATE(3362), - [sym__lambda_expression_init] = STATE(7726), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3362), - [sym_anonymous_method_expression] = STATE(3362), - [sym_anonymous_object_creation_expression] = STATE(3362), - [sym_implicit_array_creation_expression] = STATE(3362), - [sym_implicit_object_creation_expression] = STATE(3362), - [sym_implicit_stackalloc_expression] = STATE(3362), - [sym_initializer_expression] = STATE(3362), - [sym_default_expression] = STATE(3362), - [sym_with_expression] = STATE(3362), - [sym_sizeof_expression] = STATE(3362), - [sym_typeof_expression] = STATE(3362), - [sym_makeref_expression] = STATE(3362), - [sym_ref_expression] = STATE(3362), - [sym_reftype_expression] = STATE(3362), - [sym_refvalue_expression] = STATE(3362), - [sym_stackalloc_expression] = STATE(3362), - [sym_range_expression] = STATE(3362), - [sym_tuple_expression] = STATE(2747), - [sym_literal] = STATE(3362), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3362), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2416), + [sym__name] = STATE(5885), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2404), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(4122), + [sym_non_lvalue_expression] = STATE(3040), + [sym_lvalue_expression] = STATE(3115), + [sym__expression_statement_expression] = STATE(3035), + [sym_assignment_expression] = STATE(3043), + [sym_binary_expression] = STATE(3035), + [sym_postfix_unary_expression] = STATE(3043), + [sym_prefix_unary_expression] = STATE(3043), + [sym__pointer_indirection_expression] = STATE(2415), + [sym_query_expression] = STATE(3035), + [sym_from_clause] = STATE(6162), + [sym_conditional_expression] = STATE(3035), + [sym_conditional_access_expression] = STATE(3035), + [sym_as_expression] = STATE(3035), + [sym_is_expression] = STATE(3035), + [sym_is_pattern_expression] = STATE(3035), + [sym_cast_expression] = STATE(3035), + [sym_checked_expression] = STATE(3035), + [sym_invocation_expression] = STATE(3043), + [sym_switch_expression] = STATE(3035), + [sym_await_expression] = STATE(3043), + [sym_throw_expression] = STATE(3035), + [sym_element_access_expression] = STATE(2415), + [sym_interpolated_string_expression] = STATE(3035), + [sym_member_access_expression] = STATE(2415), + [sym_object_creation_expression] = STATE(3043), + [sym_parenthesized_expression] = STATE(3043), + [sym__parenthesized_lvalue_expression] = STATE(2415), + [sym_lambda_expression] = STATE(3035), + [sym__lambda_expression_init] = STATE(7416), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3035), + [sym_anonymous_method_expression] = STATE(3035), + [sym_anonymous_object_creation_expression] = STATE(3035), + [sym_implicit_array_creation_expression] = STATE(3035), + [sym_implicit_object_creation_expression] = STATE(3035), + [sym_implicit_stackalloc_expression] = STATE(3035), + [sym_initializer_expression] = STATE(3035), + [sym_default_expression] = STATE(3035), + [sym_with_expression] = STATE(3035), + [sym_sizeof_expression] = STATE(3035), + [sym_typeof_expression] = STATE(3035), + [sym_makeref_expression] = STATE(3035), + [sym_ref_expression] = STATE(3035), + [sym_reftype_expression] = STATE(3035), + [sym_refvalue_expression] = STATE(3035), + [sym_stackalloc_expression] = STATE(3035), + [sym_range_expression] = STATE(3035), + [sym_tuple_expression] = STATE(2415), + [sym_literal] = STATE(3035), + [sym_character_literal] = STATE(3037), + [sym_string_literal] = STATE(3037), + [sym_raw_string_literal] = STATE(3037), + [sym_boolean_literal] = STATE(3037), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3035), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(1000), [sym_preproc_endregion] = STATE(1000), [sym_preproc_line] = STATE(1000), @@ -210859,47 +210745,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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3385), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3455), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1307), - [anon_sym_LPAREN] = ACTIONS(1711), - [anon_sym_ref] = ACTIONS(1713), - [anon_sym_LBRACE] = ACTIONS(1313), - [anon_sym_delegate] = ACTIONS(1315), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1239), + [anon_sym_LPAREN] = ACTIONS(2261), + [anon_sym_ref] = ACTIONS(2263), + [anon_sym_LBRACE] = ACTIONS(1245), + [anon_sym_delegate] = ACTIONS(1247), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1613), + [anon_sym_new] = ACTIONS(1935), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1319), - [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(77), - [anon_sym_false] = ACTIONS(77), - [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(1323), + [anon_sym_checked] = ACTIONS(1251), + [anon_sym_BANG] = ACTIONS(2267), + [anon_sym_TILDE] = ACTIONS(2267), + [anon_sym_PLUS_PLUS] = ACTIONS(2267), + [anon_sym_DASH_DASH] = ACTIONS(2267), + [anon_sym_true] = ACTIONS(1257), + [anon_sym_false] = ACTIONS(1257), + [anon_sym_PLUS] = ACTIONS(2265), + [anon_sym_DASH] = ACTIONS(2265), + [anon_sym_STAR] = ACTIONS(1941), + [anon_sym_CARET] = ACTIONS(2267), + [anon_sym_AMP] = ACTIONS(2267), + [anon_sym_this] = ACTIONS(1261), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1325), + [anon_sym_base] = ACTIONS(1263), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1319), + [sym_predefined_type] = ACTIONS(1265), + [anon_sym_unchecked] = ACTIONS(1251), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1721), + [anon_sym_default] = ACTIONS(1267), + [anon_sym_throw] = ACTIONS(2269), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1723), - [anon_sym_DOT_DOT] = ACTIONS(1725), + [anon_sym_await] = ACTIONS(2271), + [anon_sym_DOT_DOT] = ACTIONS(2273), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -210912,19 +210798,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1333), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(1335), - [anon_sym___reftype] = ACTIONS(1337), - [anon_sym___refvalue] = ACTIONS(1339), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1341), + [anon_sym_stackalloc] = ACTIONS(1275), + [anon_sym_sizeof] = ACTIONS(1277), + [anon_sym_typeof] = ACTIONS(1279), + [anon_sym___makeref] = ACTIONS(1281), + [anon_sym___reftype] = ACTIONS(1283), + [anon_sym___refvalue] = ACTIONS(1285), + [sym_null_literal] = ACTIONS(1287), + [anon_sym_SQUOTE] = ACTIONS(1289), + [sym_integer_literal] = ACTIONS(1287), + [sym_real_literal] = ACTIONS(1291), + [anon_sym_DQUOTE] = ACTIONS(1293), + [sym_verbatim_string_literal] = ACTIONS(1291), + [aux_sym_preproc_if_token1] = ACTIONS(1295), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -210935,90 +210821,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(151), - [sym_interpolation_verbatim_start] = ACTIONS(153), - [sym_interpolation_raw_start] = ACTIONS(155), - [sym_raw_string_start] = ACTIONS(157), + [sym_interpolation_regular_start] = ACTIONS(1297), + [sym_interpolation_verbatim_start] = ACTIONS(1299), + [sym_interpolation_raw_start] = ACTIONS(1301), + [sym_raw_string_start] = ACTIONS(1303), }, [1001] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2420), - [sym__name] = STATE(5904), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2395), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(5248), - [sym_non_lvalue_expression] = STATE(3066), - [sym_lvalue_expression] = STATE(3557), - [sym__expression_statement_expression] = STATE(3006), - [sym_assignment_expression] = STATE(3020), - [sym_binary_expression] = STATE(3006), - [sym_postfix_unary_expression] = STATE(3020), - [sym_prefix_unary_expression] = STATE(3020), - [sym__pointer_indirection_expression] = STATE(2423), - [sym_query_expression] = STATE(3006), - [sym_from_clause] = STATE(6176), - [sym_conditional_expression] = STATE(3006), - [sym_conditional_access_expression] = STATE(3006), - [sym_as_expression] = STATE(3006), - [sym_is_expression] = STATE(3006), - [sym_is_pattern_expression] = STATE(3006), - [sym_cast_expression] = STATE(3006), - [sym_checked_expression] = STATE(3006), - [sym_invocation_expression] = STATE(3020), - [sym_switch_expression] = STATE(3006), - [sym_await_expression] = STATE(3020), - [sym_throw_expression] = STATE(3006), - [sym_element_access_expression] = STATE(2423), - [sym_interpolated_string_expression] = STATE(3006), - [sym_member_access_expression] = STATE(2423), - [sym_object_creation_expression] = STATE(3020), - [sym_parenthesized_expression] = STATE(3020), - [sym__parenthesized_lvalue_expression] = STATE(2423), - [sym_lambda_expression] = STATE(3006), - [sym__lambda_expression_init] = STATE(7473), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3006), - [sym_anonymous_method_expression] = STATE(3006), - [sym_anonymous_object_creation_expression] = STATE(3006), - [sym_implicit_array_creation_expression] = STATE(3006), - [sym_implicit_object_creation_expression] = STATE(3006), - [sym_implicit_stackalloc_expression] = STATE(3006), - [sym_initializer_expression] = STATE(3006), - [sym_default_expression] = STATE(3006), - [sym_with_expression] = STATE(3006), - [sym_sizeof_expression] = STATE(3006), - [sym_typeof_expression] = STATE(3006), - [sym_makeref_expression] = STATE(3006), - [sym_ref_expression] = STATE(3006), - [sym_reftype_expression] = STATE(3006), - [sym_refvalue_expression] = STATE(3006), - [sym_stackalloc_expression] = STATE(3006), - [sym_range_expression] = STATE(3006), - [sym_tuple_expression] = STATE(2423), - [sym_literal] = STATE(3006), - [sym_character_literal] = STATE(3011), - [sym_string_literal] = STATE(3011), - [sym_raw_string_literal] = STATE(3011), - [sym_boolean_literal] = STATE(3011), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3006), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(5152), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2196), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(4839), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3510), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3102), + [sym_postfix_unary_expression] = STATE(3079), + [sym_prefix_unary_expression] = STATE(3079), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6134), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3102), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3079), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3102), + [sym_member_access_expression] = STATE(2472), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3079), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7425), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(3102), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3102), + [sym_typeof_expression] = STATE(3102), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2472), + [sym_literal] = STATE(3102), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(1001), [sym_preproc_endregion] = STATE(1001), [sym_preproc_line] = STATE(1001), @@ -211028,47 +210914,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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3440), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1241), - [anon_sym_LPAREN] = ACTIONS(2141), - [anon_sym_ref] = ACTIONS(2143), - [anon_sym_LBRACE] = ACTIONS(1247), - [anon_sym_delegate] = ACTIONS(1249), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1479), + [anon_sym_LPAREN] = ACTIONS(43), + [anon_sym_ref] = ACTIONS(715), + [anon_sym_LBRACE] = ACTIONS(1481), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(2145), + [anon_sym_new] = ACTIONS(1059), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1253), - [anon_sym_BANG] = ACTIONS(2149), - [anon_sym_TILDE] = ACTIONS(2149), - [anon_sym_PLUS_PLUS] = ACTIONS(2149), - [anon_sym_DASH_DASH] = ACTIONS(2149), - [anon_sym_true] = ACTIONS(1259), - [anon_sym_false] = ACTIONS(1259), - [anon_sym_PLUS] = ACTIONS(2147), - [anon_sym_DASH] = ACTIONS(2147), - [anon_sym_STAR] = ACTIONS(2151), - [anon_sym_CARET] = ACTIONS(2149), - [anon_sym_AMP] = ACTIONS(2149), - [anon_sym_this] = ACTIONS(1263), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(1525), + [anon_sym_TILDE] = ACTIONS(1525), + [anon_sym_PLUS_PLUS] = ACTIONS(1525), + [anon_sym_DASH_DASH] = ACTIONS(1525), + [anon_sym_true] = ACTIONS(77), + [anon_sym_false] = ACTIONS(77), + [anon_sym_PLUS] = ACTIONS(1523), + [anon_sym_DASH] = ACTIONS(1523), + [anon_sym_STAR] = ACTIONS(81), + [anon_sym_CARET] = ACTIONS(1525), + [anon_sym_AMP] = ACTIONS(1525), + [anon_sym_this] = ACTIONS(83), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1265), + [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1267), - [anon_sym_unchecked] = ACTIONS(1253), + [sym_predefined_type] = ACTIONS(91), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1269), - [anon_sym_throw] = ACTIONS(2153), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(1527), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2155), - [anon_sym_DOT_DOT] = ACTIONS(2157), + [anon_sym_await] = ACTIONS(1529), + [anon_sym_DOT_DOT] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -211081,19 +210967,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1277), - [anon_sym_sizeof] = ACTIONS(1279), - [anon_sym_typeof] = ACTIONS(1281), - [anon_sym___makeref] = ACTIONS(1283), - [anon_sym___reftype] = ACTIONS(1285), - [anon_sym___refvalue] = ACTIONS(1287), - [sym_null_literal] = ACTIONS(1289), - [anon_sym_SQUOTE] = ACTIONS(1291), - [sym_integer_literal] = ACTIONS(1289), - [sym_real_literal] = ACTIONS(1293), - [anon_sym_DQUOTE] = ACTIONS(1295), - [sym_verbatim_string_literal] = ACTIONS(1293), - [aux_sym_preproc_if_token1] = ACTIONS(1297), + [anon_sym_stackalloc] = ACTIONS(127), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_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), @@ -211104,90 +210990,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1299), - [sym_interpolation_verbatim_start] = ACTIONS(1301), - [sym_interpolation_raw_start] = ACTIONS(1303), - [sym_raw_string_start] = ACTIONS(1305), + [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(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2420), - [sym__name] = STATE(5904), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2395), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(2908), - [sym_non_lvalue_expression] = STATE(3066), - [sym_lvalue_expression] = STATE(3557), - [sym__expression_statement_expression] = STATE(3006), - [sym_assignment_expression] = STATE(3020), - [sym_binary_expression] = STATE(3006), - [sym_postfix_unary_expression] = STATE(3020), - [sym_prefix_unary_expression] = STATE(3020), - [sym__pointer_indirection_expression] = STATE(2423), - [sym_query_expression] = STATE(3006), - [sym_from_clause] = STATE(6176), - [sym_conditional_expression] = STATE(3006), - [sym_conditional_access_expression] = STATE(3006), - [sym_as_expression] = STATE(3006), - [sym_is_expression] = STATE(3006), - [sym_is_pattern_expression] = STATE(3006), - [sym_cast_expression] = STATE(3006), - [sym_checked_expression] = STATE(3006), - [sym_invocation_expression] = STATE(3020), - [sym_switch_expression] = STATE(3006), - [sym_await_expression] = STATE(3020), - [sym_throw_expression] = STATE(3006), - [sym_element_access_expression] = STATE(2423), - [sym_interpolated_string_expression] = STATE(3006), - [sym_member_access_expression] = STATE(2423), - [sym_object_creation_expression] = STATE(3020), - [sym_parenthesized_expression] = STATE(3020), - [sym__parenthesized_lvalue_expression] = STATE(2423), - [sym_lambda_expression] = STATE(3006), - [sym__lambda_expression_init] = STATE(7473), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3006), - [sym_anonymous_method_expression] = STATE(3006), - [sym_anonymous_object_creation_expression] = STATE(3006), - [sym_implicit_array_creation_expression] = STATE(3006), - [sym_implicit_object_creation_expression] = STATE(3006), - [sym_implicit_stackalloc_expression] = STATE(3006), - [sym_initializer_expression] = STATE(3006), - [sym_default_expression] = STATE(3006), - [sym_with_expression] = STATE(3006), - [sym_sizeof_expression] = STATE(3006), - [sym_typeof_expression] = STATE(3006), - [sym_makeref_expression] = STATE(3006), - [sym_ref_expression] = STATE(3006), - [sym_reftype_expression] = STATE(3006), - [sym_refvalue_expression] = STATE(3006), - [sym_stackalloc_expression] = STATE(3006), - [sym_range_expression] = STATE(3006), - [sym_tuple_expression] = STATE(2423), - [sym_literal] = STATE(3006), - [sym_character_literal] = STATE(3011), - [sym_string_literal] = STATE(3011), - [sym_raw_string_literal] = STATE(3011), - [sym_boolean_literal] = STATE(3011), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3006), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2816), + [sym__name] = STATE(5875), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2321), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(4682), + [sym_non_lvalue_expression] = STATE(3495), + [sym_lvalue_expression] = STATE(3484), + [sym__expression_statement_expression] = STATE(3462), + [sym_assignment_expression] = STATE(3497), + [sym_binary_expression] = STATE(3462), + [sym_postfix_unary_expression] = STATE(3497), + [sym_prefix_unary_expression] = STATE(3497), + [sym__pointer_indirection_expression] = STATE(2815), + [sym_query_expression] = STATE(3462), + [sym_from_clause] = STATE(6142), + [sym_conditional_expression] = STATE(3462), + [sym_conditional_access_expression] = STATE(3462), + [sym_as_expression] = STATE(3462), + [sym_is_expression] = STATE(3462), + [sym_is_pattern_expression] = STATE(3462), + [sym_cast_expression] = STATE(3462), + [sym_checked_expression] = STATE(3462), + [sym_invocation_expression] = STATE(3497), + [sym_switch_expression] = STATE(3462), + [sym_await_expression] = STATE(3497), + [sym_throw_expression] = STATE(3462), + [sym_element_access_expression] = STATE(2815), + [sym_interpolated_string_expression] = STATE(3462), + [sym_member_access_expression] = STATE(2815), + [sym_object_creation_expression] = STATE(3497), + [sym_parenthesized_expression] = STATE(3497), + [sym__parenthesized_lvalue_expression] = STATE(2815), + [sym_lambda_expression] = STATE(3462), + [sym__lambda_expression_init] = STATE(7384), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3462), + [sym_anonymous_method_expression] = STATE(3462), + [sym_anonymous_object_creation_expression] = STATE(3462), + [sym_implicit_array_creation_expression] = STATE(3462), + [sym_implicit_object_creation_expression] = STATE(3462), + [sym_implicit_stackalloc_expression] = STATE(3462), + [sym_initializer_expression] = STATE(3462), + [sym_default_expression] = STATE(3462), + [sym_with_expression] = STATE(3462), + [sym_sizeof_expression] = STATE(3462), + [sym_typeof_expression] = STATE(3462), + [sym_makeref_expression] = STATE(3462), + [sym_ref_expression] = STATE(3462), + [sym_reftype_expression] = STATE(3462), + [sym_refvalue_expression] = STATE(3462), + [sym_stackalloc_expression] = STATE(3462), + [sym_range_expression] = STATE(3462), + [sym_tuple_expression] = STATE(2815), + [sym_literal] = STATE(3462), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2261), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3462), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(1002), [sym_preproc_endregion] = STATE(1002), [sym_preproc_line] = STATE(1002), @@ -211197,47 +211083,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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3440), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3367), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1241), - [anon_sym_LPAREN] = ACTIONS(2141), - [anon_sym_ref] = ACTIONS(2143), - [anon_sym_LBRACE] = ACTIONS(1247), - [anon_sym_delegate] = ACTIONS(1249), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1305), + [anon_sym_LPAREN] = ACTIONS(1579), + [anon_sym_ref] = ACTIONS(1581), + [anon_sym_LBRACE] = ACTIONS(1311), + [anon_sym_delegate] = ACTIONS(1313), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(2145), + [anon_sym_new] = ACTIONS(1583), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1253), - [anon_sym_BANG] = ACTIONS(2149), - [anon_sym_TILDE] = ACTIONS(2149), - [anon_sym_PLUS_PLUS] = ACTIONS(2149), - [anon_sym_DASH_DASH] = ACTIONS(2149), - [anon_sym_true] = ACTIONS(1259), - [anon_sym_false] = ACTIONS(1259), - [anon_sym_PLUS] = ACTIONS(2147), - [anon_sym_DASH] = ACTIONS(2147), - [anon_sym_STAR] = ACTIONS(2151), - [anon_sym_CARET] = ACTIONS(2149), - [anon_sym_AMP] = ACTIONS(2149), - [anon_sym_this] = ACTIONS(1263), + [anon_sym_checked] = ACTIONS(1317), + [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(1321), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1265), + [anon_sym_base] = ACTIONS(1323), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1267), - [anon_sym_unchecked] = ACTIONS(1253), + [sym_predefined_type] = ACTIONS(91), + [anon_sym_unchecked] = ACTIONS(1317), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1269), - [anon_sym_throw] = ACTIONS(2153), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(1591), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2155), - [anon_sym_DOT_DOT] = ACTIONS(2157), + [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), @@ -211250,19 +211136,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1277), - [anon_sym_sizeof] = ACTIONS(1279), - [anon_sym_typeof] = ACTIONS(1281), - [anon_sym___makeref] = ACTIONS(1283), - [anon_sym___reftype] = ACTIONS(1285), - [anon_sym___refvalue] = ACTIONS(1287), - [sym_null_literal] = ACTIONS(1289), - [anon_sym_SQUOTE] = ACTIONS(1291), - [sym_integer_literal] = ACTIONS(1289), - [sym_real_literal] = ACTIONS(1293), - [anon_sym_DQUOTE] = ACTIONS(1295), - [sym_verbatim_string_literal] = ACTIONS(1293), - [aux_sym_preproc_if_token1] = ACTIONS(1297), + [anon_sym_stackalloc] = ACTIONS(1331), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(1333), + [anon_sym___reftype] = ACTIONS(1335), + [anon_sym___refvalue] = ACTIONS(1337), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_literal] = ACTIONS(143), + [anon_sym_DQUOTE] = ACTIONS(145), + [sym_verbatim_string_literal] = ACTIONS(143), + [aux_sym_preproc_if_token1] = ACTIONS(1339), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -211273,90 +211159,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1299), - [sym_interpolation_verbatim_start] = ACTIONS(1301), - [sym_interpolation_raw_start] = ACTIONS(1303), - [sym_raw_string_start] = ACTIONS(1305), + [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(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(5910), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2247), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(5291), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3529), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3080), - [sym_postfix_unary_expression] = STATE(3111), - [sym_prefix_unary_expression] = STATE(3111), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6154), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3080), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3111), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3080), - [sym_member_access_expression] = STATE(2484), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3111), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7444), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(3080), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3080), - [sym_typeof_expression] = STATE(3080), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2484), - [sym_literal] = STATE(3080), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(5152), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2196), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(4916), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3510), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3102), + [sym_postfix_unary_expression] = STATE(3079), + [sym_prefix_unary_expression] = STATE(3079), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6134), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3102), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3079), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3102), + [sym_member_access_expression] = STATE(2472), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3079), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7425), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(3102), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3102), + [sym_typeof_expression] = STATE(3102), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2472), + [sym_literal] = STATE(3102), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(1003), [sym_preproc_endregion] = STATE(1003), [sym_preproc_line] = STATE(1003), @@ -211366,47 +211252,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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1481), - [anon_sym_LPAREN] = ACTIONS(1575), - [anon_sym_ref] = ACTIONS(1577), - [anon_sym_LBRACE] = ACTIONS(1487), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1479), + [anon_sym_LPAREN] = ACTIONS(43), + [anon_sym_ref] = ACTIONS(715), + [anon_sym_LBRACE] = ACTIONS(1481), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1501), + [anon_sym_new] = ACTIONS(1059), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1067), - [anon_sym_BANG] = ACTIONS(901), - [anon_sym_TILDE] = ACTIONS(901), - [anon_sym_PLUS_PLUS] = ACTIONS(901), - [anon_sym_DASH_DASH] = ACTIONS(901), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(1525), + [anon_sym_TILDE] = ACTIONS(1525), + [anon_sym_PLUS_PLUS] = ACTIONS(1525), + [anon_sym_DASH_DASH] = ACTIONS(1525), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(903), - [anon_sym_DASH] = ACTIONS(903), - [anon_sym_STAR] = ACTIONS(905), - [anon_sym_CARET] = ACTIONS(901), - [anon_sym_AMP] = ACTIONS(901), + [anon_sym_PLUS] = ACTIONS(1523), + [anon_sym_DASH] = ACTIONS(1523), + [anon_sym_STAR] = ACTIONS(81), + [anon_sym_CARET] = ACTIONS(1525), + [anon_sym_AMP] = ACTIONS(1525), [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(1067), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1579), + [anon_sym_throw] = ACTIONS(1527), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1581), - [anon_sym_DOT_DOT] = ACTIONS(1583), + [anon_sym_await] = ACTIONS(1529), + [anon_sym_DOT_DOT] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -211431,7 +211317,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(1089), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -211448,84 +211334,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [1004] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2420), - [sym__name] = STATE(5904), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2395), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(5250), - [sym_non_lvalue_expression] = STATE(3066), - [sym_lvalue_expression] = STATE(3557), - [sym__expression_statement_expression] = STATE(3006), - [sym_assignment_expression] = STATE(3020), - [sym_binary_expression] = STATE(3006), - [sym_postfix_unary_expression] = STATE(3020), - [sym_prefix_unary_expression] = STATE(3020), - [sym__pointer_indirection_expression] = STATE(2423), - [sym_query_expression] = STATE(3006), - [sym_from_clause] = STATE(6176), - [sym_conditional_expression] = STATE(3006), - [sym_conditional_access_expression] = STATE(3006), - [sym_as_expression] = STATE(3006), - [sym_is_expression] = STATE(3006), - [sym_is_pattern_expression] = STATE(3006), - [sym_cast_expression] = STATE(3006), - [sym_checked_expression] = STATE(3006), - [sym_invocation_expression] = STATE(3020), - [sym_switch_expression] = STATE(3006), - [sym_await_expression] = STATE(3020), - [sym_throw_expression] = STATE(3006), - [sym_element_access_expression] = STATE(2423), - [sym_interpolated_string_expression] = STATE(3006), - [sym_member_access_expression] = STATE(2423), - [sym_object_creation_expression] = STATE(3020), - [sym_parenthesized_expression] = STATE(3020), - [sym__parenthesized_lvalue_expression] = STATE(2423), - [sym_lambda_expression] = STATE(3006), - [sym__lambda_expression_init] = STATE(7473), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3006), - [sym_anonymous_method_expression] = STATE(3006), - [sym_anonymous_object_creation_expression] = STATE(3006), - [sym_implicit_array_creation_expression] = STATE(3006), - [sym_implicit_object_creation_expression] = STATE(3006), - [sym_implicit_stackalloc_expression] = STATE(3006), - [sym_initializer_expression] = STATE(3006), - [sym_default_expression] = STATE(3006), - [sym_with_expression] = STATE(3006), - [sym_sizeof_expression] = STATE(3006), - [sym_typeof_expression] = STATE(3006), - [sym_makeref_expression] = STATE(3006), - [sym_ref_expression] = STATE(3006), - [sym_reftype_expression] = STATE(3006), - [sym_refvalue_expression] = STATE(3006), - [sym_stackalloc_expression] = STATE(3006), - [sym_range_expression] = STATE(3006), - [sym_tuple_expression] = STATE(2423), - [sym_literal] = STATE(3006), - [sym_character_literal] = STATE(3011), - [sym_string_literal] = STATE(3011), - [sym_raw_string_literal] = STATE(3011), - [sym_boolean_literal] = STATE(3011), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3006), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(5152), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2196), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(4802), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3356), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3102), + [sym_postfix_unary_expression] = STATE(3079), + [sym_prefix_unary_expression] = STATE(3079), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6134), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3102), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3079), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3102), + [sym_member_access_expression] = STATE(2472), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3079), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7627), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(3102), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3102), + [sym_typeof_expression] = STATE(3102), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2472), + [sym_literal] = STATE(3102), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(1004), [sym_preproc_endregion] = STATE(1004), [sym_preproc_line] = STATE(1004), @@ -211535,47 +211421,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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3440), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1241), - [anon_sym_LPAREN] = ACTIONS(2141), - [anon_sym_ref] = ACTIONS(2143), - [anon_sym_LBRACE] = ACTIONS(1247), - [anon_sym_delegate] = ACTIONS(1249), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1479), + [anon_sym_LPAREN] = ACTIONS(1511), + [anon_sym_ref] = ACTIONS(1513), + [anon_sym_LBRACE] = ACTIONS(1481), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(2145), + [anon_sym_new] = ACTIONS(1515), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1253), - [anon_sym_BANG] = ACTIONS(2149), - [anon_sym_TILDE] = ACTIONS(2149), - [anon_sym_PLUS_PLUS] = ACTIONS(2149), - [anon_sym_DASH_DASH] = ACTIONS(2149), - [anon_sym_true] = ACTIONS(1259), - [anon_sym_false] = ACTIONS(1259), - [anon_sym_PLUS] = ACTIONS(2147), - [anon_sym_DASH] = ACTIONS(2147), - [anon_sym_STAR] = ACTIONS(2151), - [anon_sym_CARET] = ACTIONS(2149), - [anon_sym_AMP] = ACTIONS(2149), - [anon_sym_this] = ACTIONS(1263), + [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(1265), + [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1267), - [anon_sym_unchecked] = ACTIONS(1253), + [sym_predefined_type] = ACTIONS(91), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1269), - [anon_sym_throw] = ACTIONS(2153), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(1517), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2155), - [anon_sym_DOT_DOT] = ACTIONS(2157), + [anon_sym_await] = ACTIONS(1519), + [anon_sym_DOT_DOT] = ACTIONS(1521), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -211588,19 +211474,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1277), - [anon_sym_sizeof] = ACTIONS(1279), - [anon_sym_typeof] = ACTIONS(1281), - [anon_sym___makeref] = ACTIONS(1283), - [anon_sym___reftype] = ACTIONS(1285), - [anon_sym___refvalue] = ACTIONS(1287), - [sym_null_literal] = ACTIONS(1289), - [anon_sym_SQUOTE] = ACTIONS(1291), - [sym_integer_literal] = ACTIONS(1289), - [sym_real_literal] = ACTIONS(1293), - [anon_sym_DQUOTE] = ACTIONS(1295), - [sym_verbatim_string_literal] = ACTIONS(1293), - [aux_sym_preproc_if_token1] = ACTIONS(1297), + [anon_sym_stackalloc] = ACTIONS(127), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_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), @@ -211611,90 +211497,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1299), - [sym_interpolation_verbatim_start] = ACTIONS(1301), - [sym_interpolation_raw_start] = ACTIONS(1303), - [sym_raw_string_start] = ACTIONS(1305), + [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(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2762), - [sym__name] = STATE(5910), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2247), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(4193), - [sym_non_lvalue_expression] = STATE(3438), - [sym_lvalue_expression] = STATE(3136), - [sym__expression_statement_expression] = STATE(3362), - [sym_assignment_expression] = STATE(3449), - [sym_binary_expression] = STATE(3362), - [sym_postfix_unary_expression] = STATE(3449), - [sym_prefix_unary_expression] = STATE(3449), - [sym__pointer_indirection_expression] = STATE(2747), - [sym_query_expression] = STATE(3362), - [sym_from_clause] = STATE(6171), - [sym_conditional_expression] = STATE(3362), - [sym_conditional_access_expression] = STATE(3362), - [sym_as_expression] = STATE(3362), - [sym_is_expression] = STATE(3362), - [sym_is_pattern_expression] = STATE(3362), - [sym_cast_expression] = STATE(3362), - [sym_checked_expression] = STATE(3362), - [sym_invocation_expression] = STATE(3449), - [sym_switch_expression] = STATE(3362), - [sym_await_expression] = STATE(3449), - [sym_throw_expression] = STATE(3362), - [sym_element_access_expression] = STATE(2747), - [sym_interpolated_string_expression] = STATE(3362), - [sym_member_access_expression] = STATE(2747), - [sym_object_creation_expression] = STATE(3449), - [sym_parenthesized_expression] = STATE(3449), - [sym__parenthesized_lvalue_expression] = STATE(2747), - [sym_lambda_expression] = STATE(3362), - [sym__lambda_expression_init] = STATE(7452), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3362), - [sym_anonymous_method_expression] = STATE(3362), - [sym_anonymous_object_creation_expression] = STATE(3362), - [sym_implicit_array_creation_expression] = STATE(3362), - [sym_implicit_object_creation_expression] = STATE(3362), - [sym_implicit_stackalloc_expression] = STATE(3362), - [sym_initializer_expression] = STATE(3362), - [sym_default_expression] = STATE(3362), - [sym_with_expression] = STATE(3362), - [sym_sizeof_expression] = STATE(3362), - [sym_typeof_expression] = STATE(3362), - [sym_makeref_expression] = STATE(3362), - [sym_ref_expression] = STATE(3362), - [sym_reftype_expression] = STATE(3362), - [sym_refvalue_expression] = STATE(3362), - [sym_stackalloc_expression] = STATE(3362), - [sym_range_expression] = STATE(3362), - [sym_tuple_expression] = STATE(2747), - [sym_literal] = STATE(3362), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3362), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(5152), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2196), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(4925), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3510), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3102), + [sym_postfix_unary_expression] = STATE(3079), + [sym_prefix_unary_expression] = STATE(3079), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6134), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3102), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3079), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3102), + [sym_member_access_expression] = STATE(2472), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3079), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7425), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(3102), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3102), + [sym_typeof_expression] = STATE(3102), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2472), + [sym_literal] = STATE(3102), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(1005), [sym_preproc_endregion] = STATE(1005), [sym_preproc_line] = STATE(1005), @@ -211704,47 +211590,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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3385), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1307), - [anon_sym_LPAREN] = ACTIONS(1309), - [anon_sym_ref] = ACTIONS(1311), - [anon_sym_LBRACE] = ACTIONS(1313), - [anon_sym_delegate] = ACTIONS(1315), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1479), + [anon_sym_LPAREN] = ACTIONS(43), + [anon_sym_ref] = ACTIONS(715), + [anon_sym_LBRACE] = ACTIONS(1481), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1317), + [anon_sym_new] = ACTIONS(1059), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1319), - [anon_sym_BANG] = ACTIONS(1069), - [anon_sym_TILDE] = ACTIONS(1069), - [anon_sym_PLUS_PLUS] = ACTIONS(1069), - [anon_sym_DASH_DASH] = ACTIONS(1069), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(1525), + [anon_sym_TILDE] = ACTIONS(1525), + [anon_sym_PLUS_PLUS] = ACTIONS(1525), + [anon_sym_DASH_DASH] = ACTIONS(1525), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1071), - [anon_sym_DASH] = ACTIONS(1071), - [anon_sym_STAR] = ACTIONS(1321), - [anon_sym_CARET] = ACTIONS(1069), - [anon_sym_AMP] = ACTIONS(1069), - [anon_sym_this] = ACTIONS(1323), + [anon_sym_PLUS] = ACTIONS(1523), + [anon_sym_DASH] = ACTIONS(1523), + [anon_sym_STAR] = ACTIONS(81), + [anon_sym_CARET] = ACTIONS(1525), + [anon_sym_AMP] = ACTIONS(1525), + [anon_sym_this] = ACTIONS(83), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1325), + [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1319), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1327), + [anon_sym_throw] = ACTIONS(1527), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1329), - [anon_sym_DOT_DOT] = ACTIONS(1331), + [anon_sym_await] = ACTIONS(1529), + [anon_sym_DOT_DOT] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -211757,19 +211643,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1333), + [anon_sym_stackalloc] = ACTIONS(127), [anon_sym_sizeof] = ACTIONS(129), [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(1335), - [anon_sym___reftype] = ACTIONS(1337), - [anon_sym___refvalue] = ACTIONS(1339), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), [sym_null_literal] = ACTIONS(139), [anon_sym_SQUOTE] = ACTIONS(141), [sym_integer_literal] = ACTIONS(139), [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1341), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -211786,84 +211672,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [1006] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2610), - [sym__name] = STATE(5905), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2395), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(4712), - [sym_non_lvalue_expression] = STATE(3277), - [sym_lvalue_expression] = STATE(3402), - [sym__expression_statement_expression] = STATE(3228), - [sym_assignment_expression] = STATE(3289), - [sym_binary_expression] = STATE(3228), - [sym_postfix_unary_expression] = STATE(3289), - [sym_prefix_unary_expression] = STATE(3289), - [sym__pointer_indirection_expression] = STATE(2609), - [sym_query_expression] = STATE(3228), - [sym_from_clause] = STATE(6166), - [sym_conditional_expression] = STATE(3228), - [sym_conditional_access_expression] = STATE(3228), - [sym_as_expression] = STATE(3228), - [sym_is_expression] = STATE(3228), - [sym_is_pattern_expression] = STATE(3228), - [sym_cast_expression] = STATE(3228), - [sym_checked_expression] = STATE(3228), - [sym_invocation_expression] = STATE(3289), - [sym_switch_expression] = STATE(3228), - [sym_await_expression] = STATE(3289), - [sym_throw_expression] = STATE(3228), - [sym_element_access_expression] = STATE(2609), - [sym_interpolated_string_expression] = STATE(3228), - [sym_member_access_expression] = STATE(2609), - [sym_object_creation_expression] = STATE(3289), - [sym_parenthesized_expression] = STATE(3289), - [sym__parenthesized_lvalue_expression] = STATE(2609), - [sym_lambda_expression] = STATE(3228), - [sym__lambda_expression_init] = STATE(7415), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3228), - [sym_anonymous_method_expression] = STATE(3228), - [sym_anonymous_object_creation_expression] = STATE(3228), - [sym_implicit_array_creation_expression] = STATE(3228), - [sym_implicit_object_creation_expression] = STATE(3228), - [sym_implicit_stackalloc_expression] = STATE(3228), - [sym_initializer_expression] = STATE(3228), - [sym_default_expression] = STATE(3228), - [sym_with_expression] = STATE(3228), - [sym_sizeof_expression] = STATE(3228), - [sym_typeof_expression] = STATE(3228), - [sym_makeref_expression] = STATE(3228), - [sym_ref_expression] = STATE(3228), - [sym_reftype_expression] = STATE(3228), - [sym_refvalue_expression] = STATE(3228), - [sym_stackalloc_expression] = STATE(3228), - [sym_range_expression] = STATE(3228), - [sym_tuple_expression] = STATE(2609), - [sym_literal] = STATE(3228), - [sym_character_literal] = STATE(3278), - [sym_string_literal] = STATE(3278), - [sym_raw_string_literal] = STATE(3278), - [sym_boolean_literal] = STATE(3278), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3228), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2416), + [sym__name] = STATE(5885), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2404), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(4155), + [sym_non_lvalue_expression] = STATE(3040), + [sym_lvalue_expression] = STATE(3115), + [sym__expression_statement_expression] = STATE(3035), + [sym_assignment_expression] = STATE(3043), + [sym_binary_expression] = STATE(3035), + [sym_postfix_unary_expression] = STATE(3043), + [sym_prefix_unary_expression] = STATE(3043), + [sym__pointer_indirection_expression] = STATE(2415), + [sym_query_expression] = STATE(3035), + [sym_from_clause] = STATE(6162), + [sym_conditional_expression] = STATE(3035), + [sym_conditional_access_expression] = STATE(3035), + [sym_as_expression] = STATE(3035), + [sym_is_expression] = STATE(3035), + [sym_is_pattern_expression] = STATE(3035), + [sym_cast_expression] = STATE(3035), + [sym_checked_expression] = STATE(3035), + [sym_invocation_expression] = STATE(3043), + [sym_switch_expression] = STATE(3035), + [sym_await_expression] = STATE(3043), + [sym_throw_expression] = STATE(3035), + [sym_element_access_expression] = STATE(2415), + [sym_interpolated_string_expression] = STATE(3035), + [sym_member_access_expression] = STATE(2415), + [sym_object_creation_expression] = STATE(3043), + [sym_parenthesized_expression] = STATE(3043), + [sym__parenthesized_lvalue_expression] = STATE(2415), + [sym_lambda_expression] = STATE(3035), + [sym__lambda_expression_init] = STATE(7416), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3035), + [sym_anonymous_method_expression] = STATE(3035), + [sym_anonymous_object_creation_expression] = STATE(3035), + [sym_implicit_array_creation_expression] = STATE(3035), + [sym_implicit_object_creation_expression] = STATE(3035), + [sym_implicit_stackalloc_expression] = STATE(3035), + [sym_initializer_expression] = STATE(3035), + [sym_default_expression] = STATE(3035), + [sym_with_expression] = STATE(3035), + [sym_sizeof_expression] = STATE(3035), + [sym_typeof_expression] = STATE(3035), + [sym_makeref_expression] = STATE(3035), + [sym_ref_expression] = STATE(3035), + [sym_reftype_expression] = STATE(3035), + [sym_refvalue_expression] = STATE(3035), + [sym_stackalloc_expression] = STATE(3035), + [sym_range_expression] = STATE(3035), + [sym_tuple_expression] = STATE(2415), + [sym_literal] = STATE(3035), + [sym_character_literal] = STATE(3037), + [sym_string_literal] = STATE(3037), + [sym_raw_string_literal] = STATE(3037), + [sym_boolean_literal] = STATE(3037), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3035), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(1006), [sym_preproc_endregion] = STATE(1006), [sym_preproc_line] = STATE(1006), @@ -211873,47 +211759,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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3396), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3455), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1153), - [anon_sym_LPAREN] = ACTIONS(1915), - [anon_sym_ref] = ACTIONS(1917), - [anon_sym_LBRACE] = ACTIONS(1159), - [anon_sym_delegate] = ACTIONS(1161), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1239), + [anon_sym_LPAREN] = ACTIONS(2261), + [anon_sym_ref] = ACTIONS(2263), + [anon_sym_LBRACE] = ACTIONS(1245), + [anon_sym_delegate] = ACTIONS(1247), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1919), + [anon_sym_new] = ACTIONS(1935), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1167), - [anon_sym_BANG] = ACTIONS(1923), - [anon_sym_TILDE] = ACTIONS(1923), - [anon_sym_PLUS_PLUS] = ACTIONS(1923), - [anon_sym_DASH_DASH] = ACTIONS(1923), - [anon_sym_true] = ACTIONS(1173), - [anon_sym_false] = ACTIONS(1173), - [anon_sym_PLUS] = ACTIONS(1921), - [anon_sym_DASH] = ACTIONS(1921), - [anon_sym_STAR] = ACTIONS(1925), - [anon_sym_CARET] = ACTIONS(1923), - [anon_sym_AMP] = ACTIONS(1923), - [anon_sym_this] = ACTIONS(1177), + [anon_sym_checked] = ACTIONS(1251), + [anon_sym_BANG] = ACTIONS(2267), + [anon_sym_TILDE] = ACTIONS(2267), + [anon_sym_PLUS_PLUS] = ACTIONS(2267), + [anon_sym_DASH_DASH] = ACTIONS(2267), + [anon_sym_true] = ACTIONS(1257), + [anon_sym_false] = ACTIONS(1257), + [anon_sym_PLUS] = ACTIONS(2265), + [anon_sym_DASH] = ACTIONS(2265), + [anon_sym_STAR] = ACTIONS(1941), + [anon_sym_CARET] = ACTIONS(2267), + [anon_sym_AMP] = ACTIONS(2267), + [anon_sym_this] = ACTIONS(1261), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1179), + [anon_sym_base] = ACTIONS(1263), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1181), - [anon_sym_unchecked] = ACTIONS(1167), + [sym_predefined_type] = ACTIONS(1265), + [anon_sym_unchecked] = ACTIONS(1251), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1183), - [anon_sym_throw] = ACTIONS(1927), + [anon_sym_default] = ACTIONS(1267), + [anon_sym_throw] = ACTIONS(2269), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1929), - [anon_sym_DOT_DOT] = ACTIONS(1931), + [anon_sym_await] = ACTIONS(2271), + [anon_sym_DOT_DOT] = ACTIONS(2273), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -211926,19 +211812,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1191), - [anon_sym_sizeof] = ACTIONS(1193), - [anon_sym_typeof] = ACTIONS(1195), - [anon_sym___makeref] = ACTIONS(1197), - [anon_sym___reftype] = ACTIONS(1199), - [anon_sym___refvalue] = ACTIONS(1201), - [sym_null_literal] = ACTIONS(1203), - [anon_sym_SQUOTE] = ACTIONS(1205), - [sym_integer_literal] = ACTIONS(1203), - [sym_real_literal] = ACTIONS(1207), - [anon_sym_DQUOTE] = ACTIONS(1209), - [sym_verbatim_string_literal] = ACTIONS(1207), - [aux_sym_preproc_if_token1] = ACTIONS(1211), + [anon_sym_stackalloc] = ACTIONS(1275), + [anon_sym_sizeof] = ACTIONS(1277), + [anon_sym_typeof] = ACTIONS(1279), + [anon_sym___makeref] = ACTIONS(1281), + [anon_sym___reftype] = ACTIONS(1283), + [anon_sym___refvalue] = ACTIONS(1285), + [sym_null_literal] = ACTIONS(1287), + [anon_sym_SQUOTE] = ACTIONS(1289), + [sym_integer_literal] = ACTIONS(1287), + [sym_real_literal] = ACTIONS(1291), + [anon_sym_DQUOTE] = ACTIONS(1293), + [sym_verbatim_string_literal] = ACTIONS(1291), + [aux_sym_preproc_if_token1] = ACTIONS(1295), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -211949,90 +211835,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1213), - [sym_interpolation_verbatim_start] = ACTIONS(1215), - [sym_interpolation_raw_start] = ACTIONS(1217), - [sym_raw_string_start] = ACTIONS(1219), + [sym_interpolation_regular_start] = ACTIONS(1297), + [sym_interpolation_verbatim_start] = ACTIONS(1299), + [sym_interpolation_raw_start] = ACTIONS(1301), + [sym_raw_string_start] = ACTIONS(1303), }, [1007] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2420), - [sym__name] = STATE(5904), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2395), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(5273), - [sym_non_lvalue_expression] = STATE(3066), - [sym_lvalue_expression] = STATE(3557), - [sym__expression_statement_expression] = STATE(3006), - [sym_assignment_expression] = STATE(3020), - [sym_binary_expression] = STATE(3006), - [sym_postfix_unary_expression] = STATE(3020), - [sym_prefix_unary_expression] = STATE(3020), - [sym__pointer_indirection_expression] = STATE(2423), - [sym_query_expression] = STATE(3006), - [sym_from_clause] = STATE(6176), - [sym_conditional_expression] = STATE(3006), - [sym_conditional_access_expression] = STATE(3006), - [sym_as_expression] = STATE(3006), - [sym_is_expression] = STATE(3006), - [sym_is_pattern_expression] = STATE(3006), - [sym_cast_expression] = STATE(3006), - [sym_checked_expression] = STATE(3006), - [sym_invocation_expression] = STATE(3020), - [sym_switch_expression] = STATE(3006), - [sym_await_expression] = STATE(3020), - [sym_throw_expression] = STATE(3006), - [sym_element_access_expression] = STATE(2423), - [sym_interpolated_string_expression] = STATE(3006), - [sym_member_access_expression] = STATE(2423), - [sym_object_creation_expression] = STATE(3020), - [sym_parenthesized_expression] = STATE(3020), - [sym__parenthesized_lvalue_expression] = STATE(2423), - [sym_lambda_expression] = STATE(3006), - [sym__lambda_expression_init] = STATE(7473), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3006), - [sym_anonymous_method_expression] = STATE(3006), - [sym_anonymous_object_creation_expression] = STATE(3006), - [sym_implicit_array_creation_expression] = STATE(3006), - [sym_implicit_object_creation_expression] = STATE(3006), - [sym_implicit_stackalloc_expression] = STATE(3006), - [sym_initializer_expression] = STATE(3006), - [sym_default_expression] = STATE(3006), - [sym_with_expression] = STATE(3006), - [sym_sizeof_expression] = STATE(3006), - [sym_typeof_expression] = STATE(3006), - [sym_makeref_expression] = STATE(3006), - [sym_ref_expression] = STATE(3006), - [sym_reftype_expression] = STATE(3006), - [sym_refvalue_expression] = STATE(3006), - [sym_stackalloc_expression] = STATE(3006), - [sym_range_expression] = STATE(3006), - [sym_tuple_expression] = STATE(2423), - [sym_literal] = STATE(3006), - [sym_character_literal] = STATE(3011), - [sym_string_literal] = STATE(3011), - [sym_raw_string_literal] = STATE(3011), - [sym_boolean_literal] = STATE(3011), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3006), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(5152), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2196), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(4939), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3510), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3102), + [sym_postfix_unary_expression] = STATE(3079), + [sym_prefix_unary_expression] = STATE(3079), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6134), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3102), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3079), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3102), + [sym_member_access_expression] = STATE(2472), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3079), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7425), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(3102), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3102), + [sym_typeof_expression] = STATE(3102), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2472), + [sym_literal] = STATE(3102), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(1007), [sym_preproc_endregion] = STATE(1007), [sym_preproc_line] = STATE(1007), @@ -212042,47 +211928,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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3440), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1241), - [anon_sym_LPAREN] = ACTIONS(2141), - [anon_sym_ref] = ACTIONS(2143), - [anon_sym_LBRACE] = ACTIONS(1247), - [anon_sym_delegate] = ACTIONS(1249), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1479), + [anon_sym_LPAREN] = ACTIONS(43), + [anon_sym_ref] = ACTIONS(715), + [anon_sym_LBRACE] = ACTIONS(1481), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(2145), + [anon_sym_new] = ACTIONS(1059), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1253), - [anon_sym_BANG] = ACTIONS(2149), - [anon_sym_TILDE] = ACTIONS(2149), - [anon_sym_PLUS_PLUS] = ACTIONS(2149), - [anon_sym_DASH_DASH] = ACTIONS(2149), - [anon_sym_true] = ACTIONS(1259), - [anon_sym_false] = ACTIONS(1259), - [anon_sym_PLUS] = ACTIONS(2147), - [anon_sym_DASH] = ACTIONS(2147), - [anon_sym_STAR] = ACTIONS(2151), - [anon_sym_CARET] = ACTIONS(2149), - [anon_sym_AMP] = ACTIONS(2149), - [anon_sym_this] = ACTIONS(1263), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(1525), + [anon_sym_TILDE] = ACTIONS(1525), + [anon_sym_PLUS_PLUS] = ACTIONS(1525), + [anon_sym_DASH_DASH] = ACTIONS(1525), + [anon_sym_true] = ACTIONS(77), + [anon_sym_false] = ACTIONS(77), + [anon_sym_PLUS] = ACTIONS(1523), + [anon_sym_DASH] = ACTIONS(1523), + [anon_sym_STAR] = ACTIONS(81), + [anon_sym_CARET] = ACTIONS(1525), + [anon_sym_AMP] = ACTIONS(1525), + [anon_sym_this] = ACTIONS(83), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1265), + [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1267), - [anon_sym_unchecked] = ACTIONS(1253), + [sym_predefined_type] = ACTIONS(91), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1269), - [anon_sym_throw] = ACTIONS(2153), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(1527), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2155), - [anon_sym_DOT_DOT] = ACTIONS(2157), + [anon_sym_await] = ACTIONS(1529), + [anon_sym_DOT_DOT] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -212095,19 +211981,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1277), - [anon_sym_sizeof] = ACTIONS(1279), - [anon_sym_typeof] = ACTIONS(1281), - [anon_sym___makeref] = ACTIONS(1283), - [anon_sym___reftype] = ACTIONS(1285), - [anon_sym___refvalue] = ACTIONS(1287), - [sym_null_literal] = ACTIONS(1289), - [anon_sym_SQUOTE] = ACTIONS(1291), - [sym_integer_literal] = ACTIONS(1289), - [sym_real_literal] = ACTIONS(1293), - [anon_sym_DQUOTE] = ACTIONS(1295), - [sym_verbatim_string_literal] = ACTIONS(1293), - [aux_sym_preproc_if_token1] = ACTIONS(1297), + [anon_sym_stackalloc] = ACTIONS(127), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_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), @@ -212118,90 +212004,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1299), - [sym_interpolation_verbatim_start] = ACTIONS(1301), - [sym_interpolation_raw_start] = ACTIONS(1303), - [sym_raw_string_start] = ACTIONS(1305), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [sym_interpolation_raw_start] = ACTIONS(155), + [sym_raw_string_start] = ACTIONS(157), }, [1008] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2420), - [sym__name] = STATE(5904), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2395), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(5293), - [sym_non_lvalue_expression] = STATE(3066), - [sym_lvalue_expression] = STATE(3557), - [sym__expression_statement_expression] = STATE(3006), - [sym_assignment_expression] = STATE(3020), - [sym_binary_expression] = STATE(3006), - [sym_postfix_unary_expression] = STATE(3020), - [sym_prefix_unary_expression] = STATE(3020), - [sym__pointer_indirection_expression] = STATE(2423), - [sym_query_expression] = STATE(3006), - [sym_from_clause] = STATE(6176), - [sym_conditional_expression] = STATE(3006), - [sym_conditional_access_expression] = STATE(3006), - [sym_as_expression] = STATE(3006), - [sym_is_expression] = STATE(3006), - [sym_is_pattern_expression] = STATE(3006), - [sym_cast_expression] = STATE(3006), - [sym_checked_expression] = STATE(3006), - [sym_invocation_expression] = STATE(3020), - [sym_switch_expression] = STATE(3006), - [sym_await_expression] = STATE(3020), - [sym_throw_expression] = STATE(3006), - [sym_element_access_expression] = STATE(2423), - [sym_interpolated_string_expression] = STATE(3006), - [sym_member_access_expression] = STATE(2423), - [sym_object_creation_expression] = STATE(3020), - [sym_parenthesized_expression] = STATE(3020), - [sym__parenthesized_lvalue_expression] = STATE(2423), - [sym_lambda_expression] = STATE(3006), - [sym__lambda_expression_init] = STATE(7473), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3006), - [sym_anonymous_method_expression] = STATE(3006), - [sym_anonymous_object_creation_expression] = STATE(3006), - [sym_implicit_array_creation_expression] = STATE(3006), - [sym_implicit_object_creation_expression] = STATE(3006), - [sym_implicit_stackalloc_expression] = STATE(3006), - [sym_initializer_expression] = STATE(3006), - [sym_default_expression] = STATE(3006), - [sym_with_expression] = STATE(3006), - [sym_sizeof_expression] = STATE(3006), - [sym_typeof_expression] = STATE(3006), - [sym_makeref_expression] = STATE(3006), - [sym_ref_expression] = STATE(3006), - [sym_reftype_expression] = STATE(3006), - [sym_refvalue_expression] = STATE(3006), - [sym_stackalloc_expression] = STATE(3006), - [sym_range_expression] = STATE(3006), - [sym_tuple_expression] = STATE(2423), - [sym_literal] = STATE(3006), - [sym_character_literal] = STATE(3011), - [sym_string_literal] = STATE(3011), - [sym_raw_string_literal] = STATE(3011), - [sym_boolean_literal] = STATE(3011), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3006), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(5152), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2196), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(4950), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3510), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3102), + [sym_postfix_unary_expression] = STATE(3079), + [sym_prefix_unary_expression] = STATE(3079), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6134), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3102), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3079), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3102), + [sym_member_access_expression] = STATE(2472), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3079), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7425), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(3102), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3102), + [sym_typeof_expression] = STATE(3102), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2472), + [sym_literal] = STATE(3102), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(1008), [sym_preproc_endregion] = STATE(1008), [sym_preproc_line] = STATE(1008), @@ -212211,47 +212097,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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3440), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1241), - [anon_sym_LPAREN] = ACTIONS(2141), - [anon_sym_ref] = ACTIONS(2143), - [anon_sym_LBRACE] = ACTIONS(1247), - [anon_sym_delegate] = ACTIONS(1249), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1479), + [anon_sym_LPAREN] = ACTIONS(43), + [anon_sym_ref] = ACTIONS(715), + [anon_sym_LBRACE] = ACTIONS(1481), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(2145), + [anon_sym_new] = ACTIONS(1059), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1253), - [anon_sym_BANG] = ACTIONS(2149), - [anon_sym_TILDE] = ACTIONS(2149), - [anon_sym_PLUS_PLUS] = ACTIONS(2149), - [anon_sym_DASH_DASH] = ACTIONS(2149), - [anon_sym_true] = ACTIONS(1259), - [anon_sym_false] = ACTIONS(1259), - [anon_sym_PLUS] = ACTIONS(2147), - [anon_sym_DASH] = ACTIONS(2147), - [anon_sym_STAR] = ACTIONS(2151), - [anon_sym_CARET] = ACTIONS(2149), - [anon_sym_AMP] = ACTIONS(2149), - [anon_sym_this] = ACTIONS(1263), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(1525), + [anon_sym_TILDE] = ACTIONS(1525), + [anon_sym_PLUS_PLUS] = ACTIONS(1525), + [anon_sym_DASH_DASH] = ACTIONS(1525), + [anon_sym_true] = ACTIONS(77), + [anon_sym_false] = ACTIONS(77), + [anon_sym_PLUS] = ACTIONS(1523), + [anon_sym_DASH] = ACTIONS(1523), + [anon_sym_STAR] = ACTIONS(81), + [anon_sym_CARET] = ACTIONS(1525), + [anon_sym_AMP] = ACTIONS(1525), + [anon_sym_this] = ACTIONS(83), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1265), + [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1267), - [anon_sym_unchecked] = ACTIONS(1253), + [sym_predefined_type] = ACTIONS(91), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1269), - [anon_sym_throw] = ACTIONS(2153), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(1527), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2155), - [anon_sym_DOT_DOT] = ACTIONS(2157), + [anon_sym_await] = ACTIONS(1529), + [anon_sym_DOT_DOT] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -212264,19 +212150,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1277), - [anon_sym_sizeof] = ACTIONS(1279), - [anon_sym_typeof] = ACTIONS(1281), - [anon_sym___makeref] = ACTIONS(1283), - [anon_sym___reftype] = ACTIONS(1285), - [anon_sym___refvalue] = ACTIONS(1287), - [sym_null_literal] = ACTIONS(1289), - [anon_sym_SQUOTE] = ACTIONS(1291), - [sym_integer_literal] = ACTIONS(1289), - [sym_real_literal] = ACTIONS(1293), - [anon_sym_DQUOTE] = ACTIONS(1295), - [sym_verbatim_string_literal] = ACTIONS(1293), - [aux_sym_preproc_if_token1] = ACTIONS(1297), + [anon_sym_stackalloc] = ACTIONS(127), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_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), @@ -212287,90 +212173,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1299), - [sym_interpolation_verbatim_start] = ACTIONS(1301), - [sym_interpolation_raw_start] = ACTIONS(1303), - [sym_raw_string_start] = ACTIONS(1305), + [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(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2420), - [sym__name] = STATE(5904), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2395), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(5203), - [sym_non_lvalue_expression] = STATE(3066), - [sym_lvalue_expression] = STATE(3557), - [sym__expression_statement_expression] = STATE(3006), - [sym_assignment_expression] = STATE(3020), - [sym_binary_expression] = STATE(3006), - [sym_postfix_unary_expression] = STATE(3020), - [sym_prefix_unary_expression] = STATE(3020), - [sym__pointer_indirection_expression] = STATE(2423), - [sym_query_expression] = STATE(3006), - [sym_from_clause] = STATE(6176), - [sym_conditional_expression] = STATE(3006), - [sym_conditional_access_expression] = STATE(3006), - [sym_as_expression] = STATE(3006), - [sym_is_expression] = STATE(3006), - [sym_is_pattern_expression] = STATE(3006), - [sym_cast_expression] = STATE(3006), - [sym_checked_expression] = STATE(3006), - [sym_invocation_expression] = STATE(3020), - [sym_switch_expression] = STATE(3006), - [sym_await_expression] = STATE(3020), - [sym_throw_expression] = STATE(3006), - [sym_element_access_expression] = STATE(2423), - [sym_interpolated_string_expression] = STATE(3006), - [sym_member_access_expression] = STATE(2423), - [sym_object_creation_expression] = STATE(3020), - [sym_parenthesized_expression] = STATE(3020), - [sym__parenthesized_lvalue_expression] = STATE(2423), - [sym_lambda_expression] = STATE(3006), - [sym__lambda_expression_init] = STATE(7473), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3006), - [sym_anonymous_method_expression] = STATE(3006), - [sym_anonymous_object_creation_expression] = STATE(3006), - [sym_implicit_array_creation_expression] = STATE(3006), - [sym_implicit_object_creation_expression] = STATE(3006), - [sym_implicit_stackalloc_expression] = STATE(3006), - [sym_initializer_expression] = STATE(3006), - [sym_default_expression] = STATE(3006), - [sym_with_expression] = STATE(3006), - [sym_sizeof_expression] = STATE(3006), - [sym_typeof_expression] = STATE(3006), - [sym_makeref_expression] = STATE(3006), - [sym_ref_expression] = STATE(3006), - [sym_reftype_expression] = STATE(3006), - [sym_refvalue_expression] = STATE(3006), - [sym_stackalloc_expression] = STATE(3006), - [sym_range_expression] = STATE(3006), - [sym_tuple_expression] = STATE(2423), - [sym_literal] = STATE(3006), - [sym_character_literal] = STATE(3011), - [sym_string_literal] = STATE(3011), - [sym_raw_string_literal] = STATE(3011), - [sym_boolean_literal] = STATE(3011), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3006), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2816), + [sym__name] = STATE(5875), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2321), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(4815), + [sym_non_lvalue_expression] = STATE(3495), + [sym_lvalue_expression] = STATE(3484), + [sym__expression_statement_expression] = STATE(3462), + [sym_assignment_expression] = STATE(3497), + [sym_binary_expression] = STATE(3462), + [sym_postfix_unary_expression] = STATE(3497), + [sym_prefix_unary_expression] = STATE(3497), + [sym__pointer_indirection_expression] = STATE(2815), + [sym_query_expression] = STATE(3462), + [sym_from_clause] = STATE(6142), + [sym_conditional_expression] = STATE(3462), + [sym_conditional_access_expression] = STATE(3462), + [sym_as_expression] = STATE(3462), + [sym_is_expression] = STATE(3462), + [sym_is_pattern_expression] = STATE(3462), + [sym_cast_expression] = STATE(3462), + [sym_checked_expression] = STATE(3462), + [sym_invocation_expression] = STATE(3497), + [sym_switch_expression] = STATE(3462), + [sym_await_expression] = STATE(3497), + [sym_throw_expression] = STATE(3462), + [sym_element_access_expression] = STATE(2815), + [sym_interpolated_string_expression] = STATE(3462), + [sym_member_access_expression] = STATE(2815), + [sym_object_creation_expression] = STATE(3497), + [sym_parenthesized_expression] = STATE(3497), + [sym__parenthesized_lvalue_expression] = STATE(2815), + [sym_lambda_expression] = STATE(3462), + [sym__lambda_expression_init] = STATE(7384), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3462), + [sym_anonymous_method_expression] = STATE(3462), + [sym_anonymous_object_creation_expression] = STATE(3462), + [sym_implicit_array_creation_expression] = STATE(3462), + [sym_implicit_object_creation_expression] = STATE(3462), + [sym_implicit_stackalloc_expression] = STATE(3462), + [sym_initializer_expression] = STATE(3462), + [sym_default_expression] = STATE(3462), + [sym_with_expression] = STATE(3462), + [sym_sizeof_expression] = STATE(3462), + [sym_typeof_expression] = STATE(3462), + [sym_makeref_expression] = STATE(3462), + [sym_ref_expression] = STATE(3462), + [sym_reftype_expression] = STATE(3462), + [sym_refvalue_expression] = STATE(3462), + [sym_stackalloc_expression] = STATE(3462), + [sym_range_expression] = STATE(3462), + [sym_tuple_expression] = STATE(2815), + [sym_literal] = STATE(3462), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2261), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3462), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(1009), [sym_preproc_endregion] = STATE(1009), [sym_preproc_line] = STATE(1009), @@ -212380,47 +212266,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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3440), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3367), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1241), - [anon_sym_LPAREN] = ACTIONS(2141), - [anon_sym_ref] = ACTIONS(2143), - [anon_sym_LBRACE] = ACTIONS(1247), - [anon_sym_delegate] = ACTIONS(1249), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1305), + [anon_sym_LPAREN] = ACTIONS(1579), + [anon_sym_ref] = ACTIONS(1581), + [anon_sym_LBRACE] = ACTIONS(1311), + [anon_sym_delegate] = ACTIONS(1313), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(2145), + [anon_sym_new] = ACTIONS(1583), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1253), - [anon_sym_BANG] = ACTIONS(2149), - [anon_sym_TILDE] = ACTIONS(2149), - [anon_sym_PLUS_PLUS] = ACTIONS(2149), - [anon_sym_DASH_DASH] = ACTIONS(2149), - [anon_sym_true] = ACTIONS(1259), - [anon_sym_false] = ACTIONS(1259), - [anon_sym_PLUS] = ACTIONS(2147), - [anon_sym_DASH] = ACTIONS(2147), - [anon_sym_STAR] = ACTIONS(2151), - [anon_sym_CARET] = ACTIONS(2149), - [anon_sym_AMP] = ACTIONS(2149), - [anon_sym_this] = ACTIONS(1263), + [anon_sym_checked] = ACTIONS(1317), + [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(1321), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1265), + [anon_sym_base] = ACTIONS(1323), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1267), - [anon_sym_unchecked] = ACTIONS(1253), + [sym_predefined_type] = ACTIONS(91), + [anon_sym_unchecked] = ACTIONS(1317), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1269), - [anon_sym_throw] = ACTIONS(2153), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(1591), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2155), - [anon_sym_DOT_DOT] = ACTIONS(2157), + [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), @@ -212433,19 +212319,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1277), - [anon_sym_sizeof] = ACTIONS(1279), - [anon_sym_typeof] = ACTIONS(1281), - [anon_sym___makeref] = ACTIONS(1283), - [anon_sym___reftype] = ACTIONS(1285), - [anon_sym___refvalue] = ACTIONS(1287), - [sym_null_literal] = ACTIONS(1289), - [anon_sym_SQUOTE] = ACTIONS(1291), - [sym_integer_literal] = ACTIONS(1289), - [sym_real_literal] = ACTIONS(1293), - [anon_sym_DQUOTE] = ACTIONS(1295), - [sym_verbatim_string_literal] = ACTIONS(1293), - [aux_sym_preproc_if_token1] = ACTIONS(1297), + [anon_sym_stackalloc] = ACTIONS(1331), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(1333), + [anon_sym___reftype] = ACTIONS(1335), + [anon_sym___refvalue] = ACTIONS(1337), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_literal] = ACTIONS(143), + [anon_sym_DQUOTE] = ACTIONS(145), + [sym_verbatim_string_literal] = ACTIONS(143), + [aux_sym_preproc_if_token1] = ACTIONS(1339), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -212456,90 +212342,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1299), - [sym_interpolation_verbatim_start] = ACTIONS(1301), - [sym_interpolation_raw_start] = ACTIONS(1303), - [sym_raw_string_start] = ACTIONS(1305), + [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(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2420), - [sym__name] = STATE(5904), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2395), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(5163), - [sym_non_lvalue_expression] = STATE(3066), - [sym_lvalue_expression] = STATE(3557), - [sym__expression_statement_expression] = STATE(3006), - [sym_assignment_expression] = STATE(3020), - [sym_binary_expression] = STATE(3006), - [sym_postfix_unary_expression] = STATE(3020), - [sym_prefix_unary_expression] = STATE(3020), - [sym__pointer_indirection_expression] = STATE(2423), - [sym_query_expression] = STATE(3006), - [sym_from_clause] = STATE(6176), - [sym_conditional_expression] = STATE(3006), - [sym_conditional_access_expression] = STATE(3006), - [sym_as_expression] = STATE(3006), - [sym_is_expression] = STATE(3006), - [sym_is_pattern_expression] = STATE(3006), - [sym_cast_expression] = STATE(3006), - [sym_checked_expression] = STATE(3006), - [sym_invocation_expression] = STATE(3020), - [sym_switch_expression] = STATE(3006), - [sym_await_expression] = STATE(3020), - [sym_throw_expression] = STATE(3006), - [sym_element_access_expression] = STATE(2423), - [sym_interpolated_string_expression] = STATE(3006), - [sym_member_access_expression] = STATE(2423), - [sym_object_creation_expression] = STATE(3020), - [sym_parenthesized_expression] = STATE(3020), - [sym__parenthesized_lvalue_expression] = STATE(2423), - [sym_lambda_expression] = STATE(3006), - [sym__lambda_expression_init] = STATE(7473), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3006), - [sym_anonymous_method_expression] = STATE(3006), - [sym_anonymous_object_creation_expression] = STATE(3006), - [sym_implicit_array_creation_expression] = STATE(3006), - [sym_implicit_object_creation_expression] = STATE(3006), - [sym_implicit_stackalloc_expression] = STATE(3006), - [sym_initializer_expression] = STATE(3006), - [sym_default_expression] = STATE(3006), - [sym_with_expression] = STATE(3006), - [sym_sizeof_expression] = STATE(3006), - [sym_typeof_expression] = STATE(3006), - [sym_makeref_expression] = STATE(3006), - [sym_ref_expression] = STATE(3006), - [sym_reftype_expression] = STATE(3006), - [sym_refvalue_expression] = STATE(3006), - [sym_stackalloc_expression] = STATE(3006), - [sym_range_expression] = STATE(3006), - [sym_tuple_expression] = STATE(2423), - [sym_literal] = STATE(3006), - [sym_character_literal] = STATE(3011), - [sym_string_literal] = STATE(3011), - [sym_raw_string_literal] = STATE(3011), - [sym_boolean_literal] = STATE(3011), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3006), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2816), + [sym__name] = STATE(5875), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2321), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(4816), + [sym_non_lvalue_expression] = STATE(3495), + [sym_lvalue_expression] = STATE(3484), + [sym__expression_statement_expression] = STATE(3462), + [sym_assignment_expression] = STATE(3497), + [sym_binary_expression] = STATE(3462), + [sym_postfix_unary_expression] = STATE(3497), + [sym_prefix_unary_expression] = STATE(3497), + [sym__pointer_indirection_expression] = STATE(2815), + [sym_query_expression] = STATE(3462), + [sym_from_clause] = STATE(6142), + [sym_conditional_expression] = STATE(3462), + [sym_conditional_access_expression] = STATE(3462), + [sym_as_expression] = STATE(3462), + [sym_is_expression] = STATE(3462), + [sym_is_pattern_expression] = STATE(3462), + [sym_cast_expression] = STATE(3462), + [sym_checked_expression] = STATE(3462), + [sym_invocation_expression] = STATE(3497), + [sym_switch_expression] = STATE(3462), + [sym_await_expression] = STATE(3497), + [sym_throw_expression] = STATE(3462), + [sym_element_access_expression] = STATE(2815), + [sym_interpolated_string_expression] = STATE(3462), + [sym_member_access_expression] = STATE(2815), + [sym_object_creation_expression] = STATE(3497), + [sym_parenthesized_expression] = STATE(3497), + [sym__parenthesized_lvalue_expression] = STATE(2815), + [sym_lambda_expression] = STATE(3462), + [sym__lambda_expression_init] = STATE(7384), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3462), + [sym_anonymous_method_expression] = STATE(3462), + [sym_anonymous_object_creation_expression] = STATE(3462), + [sym_implicit_array_creation_expression] = STATE(3462), + [sym_implicit_object_creation_expression] = STATE(3462), + [sym_implicit_stackalloc_expression] = STATE(3462), + [sym_initializer_expression] = STATE(3462), + [sym_default_expression] = STATE(3462), + [sym_with_expression] = STATE(3462), + [sym_sizeof_expression] = STATE(3462), + [sym_typeof_expression] = STATE(3462), + [sym_makeref_expression] = STATE(3462), + [sym_ref_expression] = STATE(3462), + [sym_reftype_expression] = STATE(3462), + [sym_refvalue_expression] = STATE(3462), + [sym_stackalloc_expression] = STATE(3462), + [sym_range_expression] = STATE(3462), + [sym_tuple_expression] = STATE(2815), + [sym_literal] = STATE(3462), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2261), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3462), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(1010), [sym_preproc_endregion] = STATE(1010), [sym_preproc_line] = STATE(1010), @@ -212549,47 +212435,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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3440), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3367), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1241), - [anon_sym_LPAREN] = ACTIONS(2141), - [anon_sym_ref] = ACTIONS(2143), - [anon_sym_LBRACE] = ACTIONS(1247), - [anon_sym_delegate] = ACTIONS(1249), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1305), + [anon_sym_LPAREN] = ACTIONS(1579), + [anon_sym_ref] = ACTIONS(1581), + [anon_sym_LBRACE] = ACTIONS(1311), + [anon_sym_delegate] = ACTIONS(1313), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(2145), + [anon_sym_new] = ACTIONS(1583), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1253), - [anon_sym_BANG] = ACTIONS(2149), - [anon_sym_TILDE] = ACTIONS(2149), - [anon_sym_PLUS_PLUS] = ACTIONS(2149), - [anon_sym_DASH_DASH] = ACTIONS(2149), - [anon_sym_true] = ACTIONS(1259), - [anon_sym_false] = ACTIONS(1259), - [anon_sym_PLUS] = ACTIONS(2147), - [anon_sym_DASH] = ACTIONS(2147), - [anon_sym_STAR] = ACTIONS(2151), - [anon_sym_CARET] = ACTIONS(2149), - [anon_sym_AMP] = ACTIONS(2149), - [anon_sym_this] = ACTIONS(1263), + [anon_sym_checked] = ACTIONS(1317), + [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(1321), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1265), + [anon_sym_base] = ACTIONS(1323), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1267), - [anon_sym_unchecked] = ACTIONS(1253), + [sym_predefined_type] = ACTIONS(91), + [anon_sym_unchecked] = ACTIONS(1317), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1269), - [anon_sym_throw] = ACTIONS(2153), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(1591), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2155), - [anon_sym_DOT_DOT] = ACTIONS(2157), + [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), @@ -212602,19 +212488,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1277), - [anon_sym_sizeof] = ACTIONS(1279), - [anon_sym_typeof] = ACTIONS(1281), - [anon_sym___makeref] = ACTIONS(1283), - [anon_sym___reftype] = ACTIONS(1285), - [anon_sym___refvalue] = ACTIONS(1287), - [sym_null_literal] = ACTIONS(1289), - [anon_sym_SQUOTE] = ACTIONS(1291), - [sym_integer_literal] = ACTIONS(1289), - [sym_real_literal] = ACTIONS(1293), - [anon_sym_DQUOTE] = ACTIONS(1295), - [sym_verbatim_string_literal] = ACTIONS(1293), - [aux_sym_preproc_if_token1] = ACTIONS(1297), + [anon_sym_stackalloc] = ACTIONS(1331), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(1333), + [anon_sym___reftype] = ACTIONS(1335), + [anon_sym___refvalue] = ACTIONS(1337), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_literal] = ACTIONS(143), + [anon_sym_DQUOTE] = ACTIONS(145), + [sym_verbatim_string_literal] = ACTIONS(143), + [aux_sym_preproc_if_token1] = ACTIONS(1339), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -212625,90 +212511,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1299), - [sym_interpolation_verbatim_start] = ACTIONS(1301), - [sym_interpolation_raw_start] = ACTIONS(1303), - [sym_raw_string_start] = ACTIONS(1305), + [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(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2420), - [sym__name] = STATE(5904), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2395), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(5278), - [sym_non_lvalue_expression] = STATE(3066), - [sym_lvalue_expression] = STATE(3557), - [sym__expression_statement_expression] = STATE(3006), - [sym_assignment_expression] = STATE(3020), - [sym_binary_expression] = STATE(3006), - [sym_postfix_unary_expression] = STATE(3020), - [sym_prefix_unary_expression] = STATE(3020), - [sym__pointer_indirection_expression] = STATE(2423), - [sym_query_expression] = STATE(3006), - [sym_from_clause] = STATE(6176), - [sym_conditional_expression] = STATE(3006), - [sym_conditional_access_expression] = STATE(3006), - [sym_as_expression] = STATE(3006), - [sym_is_expression] = STATE(3006), - [sym_is_pattern_expression] = STATE(3006), - [sym_cast_expression] = STATE(3006), - [sym_checked_expression] = STATE(3006), - [sym_invocation_expression] = STATE(3020), - [sym_switch_expression] = STATE(3006), - [sym_await_expression] = STATE(3020), - [sym_throw_expression] = STATE(3006), - [sym_element_access_expression] = STATE(2423), - [sym_interpolated_string_expression] = STATE(3006), - [sym_member_access_expression] = STATE(2423), - [sym_object_creation_expression] = STATE(3020), - [sym_parenthesized_expression] = STATE(3020), - [sym__parenthesized_lvalue_expression] = STATE(2423), - [sym_lambda_expression] = STATE(3006), - [sym__lambda_expression_init] = STATE(7473), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3006), - [sym_anonymous_method_expression] = STATE(3006), - [sym_anonymous_object_creation_expression] = STATE(3006), - [sym_implicit_array_creation_expression] = STATE(3006), - [sym_implicit_object_creation_expression] = STATE(3006), - [sym_implicit_stackalloc_expression] = STATE(3006), - [sym_initializer_expression] = STATE(3006), - [sym_default_expression] = STATE(3006), - [sym_with_expression] = STATE(3006), - [sym_sizeof_expression] = STATE(3006), - [sym_typeof_expression] = STATE(3006), - [sym_makeref_expression] = STATE(3006), - [sym_ref_expression] = STATE(3006), - [sym_reftype_expression] = STATE(3006), - [sym_refvalue_expression] = STATE(3006), - [sym_stackalloc_expression] = STATE(3006), - [sym_range_expression] = STATE(3006), - [sym_tuple_expression] = STATE(2423), - [sym_literal] = STATE(3006), - [sym_character_literal] = STATE(3011), - [sym_string_literal] = STATE(3011), - [sym_raw_string_literal] = STATE(3011), - [sym_boolean_literal] = STATE(3011), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3006), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2816), + [sym__name] = STATE(5875), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2321), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(4687), + [sym_non_lvalue_expression] = STATE(3495), + [sym_lvalue_expression] = STATE(3484), + [sym__expression_statement_expression] = STATE(3462), + [sym_assignment_expression] = STATE(3497), + [sym_binary_expression] = STATE(3462), + [sym_postfix_unary_expression] = STATE(3497), + [sym_prefix_unary_expression] = STATE(3497), + [sym__pointer_indirection_expression] = STATE(2815), + [sym_query_expression] = STATE(3462), + [sym_from_clause] = STATE(6142), + [sym_conditional_expression] = STATE(3462), + [sym_conditional_access_expression] = STATE(3462), + [sym_as_expression] = STATE(3462), + [sym_is_expression] = STATE(3462), + [sym_is_pattern_expression] = STATE(3462), + [sym_cast_expression] = STATE(3462), + [sym_checked_expression] = STATE(3462), + [sym_invocation_expression] = STATE(3497), + [sym_switch_expression] = STATE(3462), + [sym_await_expression] = STATE(3497), + [sym_throw_expression] = STATE(3462), + [sym_element_access_expression] = STATE(2815), + [sym_interpolated_string_expression] = STATE(3462), + [sym_member_access_expression] = STATE(2815), + [sym_object_creation_expression] = STATE(3497), + [sym_parenthesized_expression] = STATE(3497), + [sym__parenthesized_lvalue_expression] = STATE(2815), + [sym_lambda_expression] = STATE(3462), + [sym__lambda_expression_init] = STATE(7384), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3462), + [sym_anonymous_method_expression] = STATE(3462), + [sym_anonymous_object_creation_expression] = STATE(3462), + [sym_implicit_array_creation_expression] = STATE(3462), + [sym_implicit_object_creation_expression] = STATE(3462), + [sym_implicit_stackalloc_expression] = STATE(3462), + [sym_initializer_expression] = STATE(3462), + [sym_default_expression] = STATE(3462), + [sym_with_expression] = STATE(3462), + [sym_sizeof_expression] = STATE(3462), + [sym_typeof_expression] = STATE(3462), + [sym_makeref_expression] = STATE(3462), + [sym_ref_expression] = STATE(3462), + [sym_reftype_expression] = STATE(3462), + [sym_refvalue_expression] = STATE(3462), + [sym_stackalloc_expression] = STATE(3462), + [sym_range_expression] = STATE(3462), + [sym_tuple_expression] = STATE(2815), + [sym_literal] = STATE(3462), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2261), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3462), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(1011), [sym_preproc_endregion] = STATE(1011), [sym_preproc_line] = STATE(1011), @@ -212718,47 +212604,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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3440), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3367), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1241), - [anon_sym_LPAREN] = ACTIONS(2141), - [anon_sym_ref] = ACTIONS(2143), - [anon_sym_LBRACE] = ACTIONS(1247), - [anon_sym_delegate] = ACTIONS(1249), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1305), + [anon_sym_LPAREN] = ACTIONS(1579), + [anon_sym_ref] = ACTIONS(1581), + [anon_sym_LBRACE] = ACTIONS(1311), + [anon_sym_delegate] = ACTIONS(1313), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(2145), + [anon_sym_new] = ACTIONS(1583), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1253), - [anon_sym_BANG] = ACTIONS(2149), - [anon_sym_TILDE] = ACTIONS(2149), - [anon_sym_PLUS_PLUS] = ACTIONS(2149), - [anon_sym_DASH_DASH] = ACTIONS(2149), - [anon_sym_true] = ACTIONS(1259), - [anon_sym_false] = ACTIONS(1259), - [anon_sym_PLUS] = ACTIONS(2147), - [anon_sym_DASH] = ACTIONS(2147), - [anon_sym_STAR] = ACTIONS(2151), - [anon_sym_CARET] = ACTIONS(2149), - [anon_sym_AMP] = ACTIONS(2149), - [anon_sym_this] = ACTIONS(1263), + [anon_sym_checked] = ACTIONS(1317), + [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(1321), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1265), + [anon_sym_base] = ACTIONS(1323), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1267), - [anon_sym_unchecked] = ACTIONS(1253), + [sym_predefined_type] = ACTIONS(91), + [anon_sym_unchecked] = ACTIONS(1317), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1269), - [anon_sym_throw] = ACTIONS(2153), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(1591), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2155), - [anon_sym_DOT_DOT] = ACTIONS(2157), + [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), @@ -212771,19 +212657,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1277), - [anon_sym_sizeof] = ACTIONS(1279), - [anon_sym_typeof] = ACTIONS(1281), - [anon_sym___makeref] = ACTIONS(1283), - [anon_sym___reftype] = ACTIONS(1285), - [anon_sym___refvalue] = ACTIONS(1287), - [sym_null_literal] = ACTIONS(1289), - [anon_sym_SQUOTE] = ACTIONS(1291), - [sym_integer_literal] = ACTIONS(1289), - [sym_real_literal] = ACTIONS(1293), - [anon_sym_DQUOTE] = ACTIONS(1295), - [sym_verbatim_string_literal] = ACTIONS(1293), - [aux_sym_preproc_if_token1] = ACTIONS(1297), + [anon_sym_stackalloc] = ACTIONS(1331), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(1333), + [anon_sym___reftype] = ACTIONS(1335), + [anon_sym___refvalue] = ACTIONS(1337), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_literal] = ACTIONS(143), + [anon_sym_DQUOTE] = ACTIONS(145), + [sym_verbatim_string_literal] = ACTIONS(143), + [aux_sym_preproc_if_token1] = ACTIONS(1339), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -212794,90 +212680,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1299), - [sym_interpolation_verbatim_start] = ACTIONS(1301), - [sym_interpolation_raw_start] = ACTIONS(1303), - [sym_raw_string_start] = ACTIONS(1305), + [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(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2420), - [sym__name] = STATE(5904), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2395), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(5207), - [sym_non_lvalue_expression] = STATE(3066), - [sym_lvalue_expression] = STATE(3557), - [sym__expression_statement_expression] = STATE(3006), - [sym_assignment_expression] = STATE(3020), - [sym_binary_expression] = STATE(3006), - [sym_postfix_unary_expression] = STATE(3020), - [sym_prefix_unary_expression] = STATE(3020), - [sym__pointer_indirection_expression] = STATE(2423), - [sym_query_expression] = STATE(3006), - [sym_from_clause] = STATE(6176), - [sym_conditional_expression] = STATE(3006), - [sym_conditional_access_expression] = STATE(3006), - [sym_as_expression] = STATE(3006), - [sym_is_expression] = STATE(3006), - [sym_is_pattern_expression] = STATE(3006), - [sym_cast_expression] = STATE(3006), - [sym_checked_expression] = STATE(3006), - [sym_invocation_expression] = STATE(3020), - [sym_switch_expression] = STATE(3006), - [sym_await_expression] = STATE(3020), - [sym_throw_expression] = STATE(3006), - [sym_element_access_expression] = STATE(2423), - [sym_interpolated_string_expression] = STATE(3006), - [sym_member_access_expression] = STATE(2423), - [sym_object_creation_expression] = STATE(3020), - [sym_parenthesized_expression] = STATE(3020), - [sym__parenthesized_lvalue_expression] = STATE(2423), - [sym_lambda_expression] = STATE(3006), - [sym__lambda_expression_init] = STATE(7473), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3006), - [sym_anonymous_method_expression] = STATE(3006), - [sym_anonymous_object_creation_expression] = STATE(3006), - [sym_implicit_array_creation_expression] = STATE(3006), - [sym_implicit_object_creation_expression] = STATE(3006), - [sym_implicit_stackalloc_expression] = STATE(3006), - [sym_initializer_expression] = STATE(3006), - [sym_default_expression] = STATE(3006), - [sym_with_expression] = STATE(3006), - [sym_sizeof_expression] = STATE(3006), - [sym_typeof_expression] = STATE(3006), - [sym_makeref_expression] = STATE(3006), - [sym_ref_expression] = STATE(3006), - [sym_reftype_expression] = STATE(3006), - [sym_refvalue_expression] = STATE(3006), - [sym_stackalloc_expression] = STATE(3006), - [sym_range_expression] = STATE(3006), - [sym_tuple_expression] = STATE(2423), - [sym_literal] = STATE(3006), - [sym_character_literal] = STATE(3011), - [sym_string_literal] = STATE(3011), - [sym_raw_string_literal] = STATE(3011), - [sym_boolean_literal] = STATE(3011), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3006), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2816), + [sym__name] = STATE(5875), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2321), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(4817), + [sym_non_lvalue_expression] = STATE(3495), + [sym_lvalue_expression] = STATE(3484), + [sym__expression_statement_expression] = STATE(3462), + [sym_assignment_expression] = STATE(3497), + [sym_binary_expression] = STATE(3462), + [sym_postfix_unary_expression] = STATE(3497), + [sym_prefix_unary_expression] = STATE(3497), + [sym__pointer_indirection_expression] = STATE(2815), + [sym_query_expression] = STATE(3462), + [sym_from_clause] = STATE(6142), + [sym_conditional_expression] = STATE(3462), + [sym_conditional_access_expression] = STATE(3462), + [sym_as_expression] = STATE(3462), + [sym_is_expression] = STATE(3462), + [sym_is_pattern_expression] = STATE(3462), + [sym_cast_expression] = STATE(3462), + [sym_checked_expression] = STATE(3462), + [sym_invocation_expression] = STATE(3497), + [sym_switch_expression] = STATE(3462), + [sym_await_expression] = STATE(3497), + [sym_throw_expression] = STATE(3462), + [sym_element_access_expression] = STATE(2815), + [sym_interpolated_string_expression] = STATE(3462), + [sym_member_access_expression] = STATE(2815), + [sym_object_creation_expression] = STATE(3497), + [sym_parenthesized_expression] = STATE(3497), + [sym__parenthesized_lvalue_expression] = STATE(2815), + [sym_lambda_expression] = STATE(3462), + [sym__lambda_expression_init] = STATE(7384), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3462), + [sym_anonymous_method_expression] = STATE(3462), + [sym_anonymous_object_creation_expression] = STATE(3462), + [sym_implicit_array_creation_expression] = STATE(3462), + [sym_implicit_object_creation_expression] = STATE(3462), + [sym_implicit_stackalloc_expression] = STATE(3462), + [sym_initializer_expression] = STATE(3462), + [sym_default_expression] = STATE(3462), + [sym_with_expression] = STATE(3462), + [sym_sizeof_expression] = STATE(3462), + [sym_typeof_expression] = STATE(3462), + [sym_makeref_expression] = STATE(3462), + [sym_ref_expression] = STATE(3462), + [sym_reftype_expression] = STATE(3462), + [sym_refvalue_expression] = STATE(3462), + [sym_stackalloc_expression] = STATE(3462), + [sym_range_expression] = STATE(3462), + [sym_tuple_expression] = STATE(2815), + [sym_literal] = STATE(3462), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2261), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3462), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(1012), [sym_preproc_endregion] = STATE(1012), [sym_preproc_line] = STATE(1012), @@ -212887,47 +212773,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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3440), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3367), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1241), - [anon_sym_LPAREN] = ACTIONS(2141), - [anon_sym_ref] = ACTIONS(2143), - [anon_sym_LBRACE] = ACTIONS(1247), - [anon_sym_delegate] = ACTIONS(1249), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1305), + [anon_sym_LPAREN] = ACTIONS(1579), + [anon_sym_ref] = ACTIONS(1581), + [anon_sym_LBRACE] = ACTIONS(1311), + [anon_sym_delegate] = ACTIONS(1313), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(2145), + [anon_sym_new] = ACTIONS(1583), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1253), - [anon_sym_BANG] = ACTIONS(2149), - [anon_sym_TILDE] = ACTIONS(2149), - [anon_sym_PLUS_PLUS] = ACTIONS(2149), - [anon_sym_DASH_DASH] = ACTIONS(2149), - [anon_sym_true] = ACTIONS(1259), - [anon_sym_false] = ACTIONS(1259), - [anon_sym_PLUS] = ACTIONS(2147), - [anon_sym_DASH] = ACTIONS(2147), - [anon_sym_STAR] = ACTIONS(2151), - [anon_sym_CARET] = ACTIONS(2149), - [anon_sym_AMP] = ACTIONS(2149), - [anon_sym_this] = ACTIONS(1263), + [anon_sym_checked] = ACTIONS(1317), + [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(1321), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1265), + [anon_sym_base] = ACTIONS(1323), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1267), - [anon_sym_unchecked] = ACTIONS(1253), + [sym_predefined_type] = ACTIONS(91), + [anon_sym_unchecked] = ACTIONS(1317), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1269), - [anon_sym_throw] = ACTIONS(2153), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(1591), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2155), - [anon_sym_DOT_DOT] = ACTIONS(2157), + [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), @@ -212940,19 +212826,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1277), - [anon_sym_sizeof] = ACTIONS(1279), - [anon_sym_typeof] = ACTIONS(1281), - [anon_sym___makeref] = ACTIONS(1283), - [anon_sym___reftype] = ACTIONS(1285), - [anon_sym___refvalue] = ACTIONS(1287), - [sym_null_literal] = ACTIONS(1289), - [anon_sym_SQUOTE] = ACTIONS(1291), - [sym_integer_literal] = ACTIONS(1289), - [sym_real_literal] = ACTIONS(1293), - [anon_sym_DQUOTE] = ACTIONS(1295), - [sym_verbatim_string_literal] = ACTIONS(1293), - [aux_sym_preproc_if_token1] = ACTIONS(1297), + [anon_sym_stackalloc] = ACTIONS(1331), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(1333), + [anon_sym___reftype] = ACTIONS(1335), + [anon_sym___refvalue] = ACTIONS(1337), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_literal] = ACTIONS(143), + [anon_sym_DQUOTE] = ACTIONS(145), + [sym_verbatim_string_literal] = ACTIONS(143), + [aux_sym_preproc_if_token1] = ACTIONS(1339), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -212963,90 +212849,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1299), - [sym_interpolation_verbatim_start] = ACTIONS(1301), - [sym_interpolation_raw_start] = ACTIONS(1303), - [sym_raw_string_start] = ACTIONS(1305), + [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(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2420), - [sym__name] = STATE(5904), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2395), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(5261), - [sym_non_lvalue_expression] = STATE(3066), - [sym_lvalue_expression] = STATE(3557), - [sym__expression_statement_expression] = STATE(3006), - [sym_assignment_expression] = STATE(3020), - [sym_binary_expression] = STATE(3006), - [sym_postfix_unary_expression] = STATE(3020), - [sym_prefix_unary_expression] = STATE(3020), - [sym__pointer_indirection_expression] = STATE(2423), - [sym_query_expression] = STATE(3006), - [sym_from_clause] = STATE(6176), - [sym_conditional_expression] = STATE(3006), - [sym_conditional_access_expression] = STATE(3006), - [sym_as_expression] = STATE(3006), - [sym_is_expression] = STATE(3006), - [sym_is_pattern_expression] = STATE(3006), - [sym_cast_expression] = STATE(3006), - [sym_checked_expression] = STATE(3006), - [sym_invocation_expression] = STATE(3020), - [sym_switch_expression] = STATE(3006), - [sym_await_expression] = STATE(3020), - [sym_throw_expression] = STATE(3006), - [sym_element_access_expression] = STATE(2423), - [sym_interpolated_string_expression] = STATE(3006), - [sym_member_access_expression] = STATE(2423), - [sym_object_creation_expression] = STATE(3020), - [sym_parenthesized_expression] = STATE(3020), - [sym__parenthesized_lvalue_expression] = STATE(2423), - [sym_lambda_expression] = STATE(3006), - [sym__lambda_expression_init] = STATE(7473), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3006), - [sym_anonymous_method_expression] = STATE(3006), - [sym_anonymous_object_creation_expression] = STATE(3006), - [sym_implicit_array_creation_expression] = STATE(3006), - [sym_implicit_object_creation_expression] = STATE(3006), - [sym_implicit_stackalloc_expression] = STATE(3006), - [sym_initializer_expression] = STATE(3006), - [sym_default_expression] = STATE(3006), - [sym_with_expression] = STATE(3006), - [sym_sizeof_expression] = STATE(3006), - [sym_typeof_expression] = STATE(3006), - [sym_makeref_expression] = STATE(3006), - [sym_ref_expression] = STATE(3006), - [sym_reftype_expression] = STATE(3006), - [sym_refvalue_expression] = STATE(3006), - [sym_stackalloc_expression] = STATE(3006), - [sym_range_expression] = STATE(3006), - [sym_tuple_expression] = STATE(2423), - [sym_literal] = STATE(3006), - [sym_character_literal] = STATE(3011), - [sym_string_literal] = STATE(3011), - [sym_raw_string_literal] = STATE(3011), - [sym_boolean_literal] = STATE(3011), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3006), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2816), + [sym__name] = STATE(5875), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2321), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(4818), + [sym_non_lvalue_expression] = STATE(3495), + [sym_lvalue_expression] = STATE(3484), + [sym__expression_statement_expression] = STATE(3462), + [sym_assignment_expression] = STATE(3497), + [sym_binary_expression] = STATE(3462), + [sym_postfix_unary_expression] = STATE(3497), + [sym_prefix_unary_expression] = STATE(3497), + [sym__pointer_indirection_expression] = STATE(2815), + [sym_query_expression] = STATE(3462), + [sym_from_clause] = STATE(6142), + [sym_conditional_expression] = STATE(3462), + [sym_conditional_access_expression] = STATE(3462), + [sym_as_expression] = STATE(3462), + [sym_is_expression] = STATE(3462), + [sym_is_pattern_expression] = STATE(3462), + [sym_cast_expression] = STATE(3462), + [sym_checked_expression] = STATE(3462), + [sym_invocation_expression] = STATE(3497), + [sym_switch_expression] = STATE(3462), + [sym_await_expression] = STATE(3497), + [sym_throw_expression] = STATE(3462), + [sym_element_access_expression] = STATE(2815), + [sym_interpolated_string_expression] = STATE(3462), + [sym_member_access_expression] = STATE(2815), + [sym_object_creation_expression] = STATE(3497), + [sym_parenthesized_expression] = STATE(3497), + [sym__parenthesized_lvalue_expression] = STATE(2815), + [sym_lambda_expression] = STATE(3462), + [sym__lambda_expression_init] = STATE(7384), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3462), + [sym_anonymous_method_expression] = STATE(3462), + [sym_anonymous_object_creation_expression] = STATE(3462), + [sym_implicit_array_creation_expression] = STATE(3462), + [sym_implicit_object_creation_expression] = STATE(3462), + [sym_implicit_stackalloc_expression] = STATE(3462), + [sym_initializer_expression] = STATE(3462), + [sym_default_expression] = STATE(3462), + [sym_with_expression] = STATE(3462), + [sym_sizeof_expression] = STATE(3462), + [sym_typeof_expression] = STATE(3462), + [sym_makeref_expression] = STATE(3462), + [sym_ref_expression] = STATE(3462), + [sym_reftype_expression] = STATE(3462), + [sym_refvalue_expression] = STATE(3462), + [sym_stackalloc_expression] = STATE(3462), + [sym_range_expression] = STATE(3462), + [sym_tuple_expression] = STATE(2815), + [sym_literal] = STATE(3462), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2261), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3462), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(1013), [sym_preproc_endregion] = STATE(1013), [sym_preproc_line] = STATE(1013), @@ -213056,47 +212942,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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3440), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3367), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1241), - [anon_sym_LPAREN] = ACTIONS(2141), - [anon_sym_ref] = ACTIONS(2143), - [anon_sym_LBRACE] = ACTIONS(1247), - [anon_sym_delegate] = ACTIONS(1249), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1305), + [anon_sym_LPAREN] = ACTIONS(1579), + [anon_sym_ref] = ACTIONS(1581), + [anon_sym_LBRACE] = ACTIONS(1311), + [anon_sym_delegate] = ACTIONS(1313), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(2145), + [anon_sym_new] = ACTIONS(1583), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1253), - [anon_sym_BANG] = ACTIONS(2149), - [anon_sym_TILDE] = ACTIONS(2149), - [anon_sym_PLUS_PLUS] = ACTIONS(2149), - [anon_sym_DASH_DASH] = ACTIONS(2149), - [anon_sym_true] = ACTIONS(1259), - [anon_sym_false] = ACTIONS(1259), - [anon_sym_PLUS] = ACTIONS(2147), - [anon_sym_DASH] = ACTIONS(2147), - [anon_sym_STAR] = ACTIONS(2151), - [anon_sym_CARET] = ACTIONS(2149), - [anon_sym_AMP] = ACTIONS(2149), - [anon_sym_this] = ACTIONS(1263), + [anon_sym_checked] = ACTIONS(1317), + [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(1321), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1265), + [anon_sym_base] = ACTIONS(1323), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1267), - [anon_sym_unchecked] = ACTIONS(1253), + [sym_predefined_type] = ACTIONS(91), + [anon_sym_unchecked] = ACTIONS(1317), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1269), - [anon_sym_throw] = ACTIONS(2153), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(1591), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2155), - [anon_sym_DOT_DOT] = ACTIONS(2157), + [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), @@ -213109,19 +212995,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1277), - [anon_sym_sizeof] = ACTIONS(1279), - [anon_sym_typeof] = ACTIONS(1281), - [anon_sym___makeref] = ACTIONS(1283), - [anon_sym___reftype] = ACTIONS(1285), - [anon_sym___refvalue] = ACTIONS(1287), - [sym_null_literal] = ACTIONS(1289), - [anon_sym_SQUOTE] = ACTIONS(1291), - [sym_integer_literal] = ACTIONS(1289), - [sym_real_literal] = ACTIONS(1293), - [anon_sym_DQUOTE] = ACTIONS(1295), - [sym_verbatim_string_literal] = ACTIONS(1293), - [aux_sym_preproc_if_token1] = ACTIONS(1297), + [anon_sym_stackalloc] = ACTIONS(1331), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(1333), + [anon_sym___reftype] = ACTIONS(1335), + [anon_sym___refvalue] = ACTIONS(1337), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_literal] = ACTIONS(143), + [anon_sym_DQUOTE] = ACTIONS(145), + [sym_verbatim_string_literal] = ACTIONS(143), + [aux_sym_preproc_if_token1] = ACTIONS(1339), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -213132,90 +213018,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1299), - [sym_interpolation_verbatim_start] = ACTIONS(1301), - [sym_interpolation_raw_start] = ACTIONS(1303), - [sym_raw_string_start] = ACTIONS(1305), + [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(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2420), - [sym__name] = STATE(5904), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2395), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(5229), - [sym_non_lvalue_expression] = STATE(3066), - [sym_lvalue_expression] = STATE(3557), - [sym__expression_statement_expression] = STATE(3006), - [sym_assignment_expression] = STATE(3020), - [sym_binary_expression] = STATE(3006), - [sym_postfix_unary_expression] = STATE(3020), - [sym_prefix_unary_expression] = STATE(3020), - [sym__pointer_indirection_expression] = STATE(2423), - [sym_query_expression] = STATE(3006), - [sym_from_clause] = STATE(6176), - [sym_conditional_expression] = STATE(3006), - [sym_conditional_access_expression] = STATE(3006), - [sym_as_expression] = STATE(3006), - [sym_is_expression] = STATE(3006), - [sym_is_pattern_expression] = STATE(3006), - [sym_cast_expression] = STATE(3006), - [sym_checked_expression] = STATE(3006), - [sym_invocation_expression] = STATE(3020), - [sym_switch_expression] = STATE(3006), - [sym_await_expression] = STATE(3020), - [sym_throw_expression] = STATE(3006), - [sym_element_access_expression] = STATE(2423), - [sym_interpolated_string_expression] = STATE(3006), - [sym_member_access_expression] = STATE(2423), - [sym_object_creation_expression] = STATE(3020), - [sym_parenthesized_expression] = STATE(3020), - [sym__parenthesized_lvalue_expression] = STATE(2423), - [sym_lambda_expression] = STATE(3006), - [sym__lambda_expression_init] = STATE(7473), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3006), - [sym_anonymous_method_expression] = STATE(3006), - [sym_anonymous_object_creation_expression] = STATE(3006), - [sym_implicit_array_creation_expression] = STATE(3006), - [sym_implicit_object_creation_expression] = STATE(3006), - [sym_implicit_stackalloc_expression] = STATE(3006), - [sym_initializer_expression] = STATE(3006), - [sym_default_expression] = STATE(3006), - [sym_with_expression] = STATE(3006), - [sym_sizeof_expression] = STATE(3006), - [sym_typeof_expression] = STATE(3006), - [sym_makeref_expression] = STATE(3006), - [sym_ref_expression] = STATE(3006), - [sym_reftype_expression] = STATE(3006), - [sym_refvalue_expression] = STATE(3006), - [sym_stackalloc_expression] = STATE(3006), - [sym_range_expression] = STATE(3006), - [sym_tuple_expression] = STATE(2423), - [sym_literal] = STATE(3006), - [sym_character_literal] = STATE(3011), - [sym_string_literal] = STATE(3011), - [sym_raw_string_literal] = STATE(3011), - [sym_boolean_literal] = STATE(3011), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3006), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2816), + [sym__name] = STATE(5875), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2321), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(4819), + [sym_non_lvalue_expression] = STATE(3495), + [sym_lvalue_expression] = STATE(3484), + [sym__expression_statement_expression] = STATE(3462), + [sym_assignment_expression] = STATE(3497), + [sym_binary_expression] = STATE(3462), + [sym_postfix_unary_expression] = STATE(3497), + [sym_prefix_unary_expression] = STATE(3497), + [sym__pointer_indirection_expression] = STATE(2815), + [sym_query_expression] = STATE(3462), + [sym_from_clause] = STATE(6142), + [sym_conditional_expression] = STATE(3462), + [sym_conditional_access_expression] = STATE(3462), + [sym_as_expression] = STATE(3462), + [sym_is_expression] = STATE(3462), + [sym_is_pattern_expression] = STATE(3462), + [sym_cast_expression] = STATE(3462), + [sym_checked_expression] = STATE(3462), + [sym_invocation_expression] = STATE(3497), + [sym_switch_expression] = STATE(3462), + [sym_await_expression] = STATE(3497), + [sym_throw_expression] = STATE(3462), + [sym_element_access_expression] = STATE(2815), + [sym_interpolated_string_expression] = STATE(3462), + [sym_member_access_expression] = STATE(2815), + [sym_object_creation_expression] = STATE(3497), + [sym_parenthesized_expression] = STATE(3497), + [sym__parenthesized_lvalue_expression] = STATE(2815), + [sym_lambda_expression] = STATE(3462), + [sym__lambda_expression_init] = STATE(7384), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3462), + [sym_anonymous_method_expression] = STATE(3462), + [sym_anonymous_object_creation_expression] = STATE(3462), + [sym_implicit_array_creation_expression] = STATE(3462), + [sym_implicit_object_creation_expression] = STATE(3462), + [sym_implicit_stackalloc_expression] = STATE(3462), + [sym_initializer_expression] = STATE(3462), + [sym_default_expression] = STATE(3462), + [sym_with_expression] = STATE(3462), + [sym_sizeof_expression] = STATE(3462), + [sym_typeof_expression] = STATE(3462), + [sym_makeref_expression] = STATE(3462), + [sym_ref_expression] = STATE(3462), + [sym_reftype_expression] = STATE(3462), + [sym_refvalue_expression] = STATE(3462), + [sym_stackalloc_expression] = STATE(3462), + [sym_range_expression] = STATE(3462), + [sym_tuple_expression] = STATE(2815), + [sym_literal] = STATE(3462), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2261), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3462), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(1014), [sym_preproc_endregion] = STATE(1014), [sym_preproc_line] = STATE(1014), @@ -213225,47 +213111,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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3440), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3367), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1241), - [anon_sym_LPAREN] = ACTIONS(2141), - [anon_sym_ref] = ACTIONS(2143), - [anon_sym_LBRACE] = ACTIONS(1247), - [anon_sym_delegate] = ACTIONS(1249), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1305), + [anon_sym_LPAREN] = ACTIONS(1579), + [anon_sym_ref] = ACTIONS(1581), + [anon_sym_LBRACE] = ACTIONS(1311), + [anon_sym_delegate] = ACTIONS(1313), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(2145), + [anon_sym_new] = ACTIONS(1583), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1253), - [anon_sym_BANG] = ACTIONS(2149), - [anon_sym_TILDE] = ACTIONS(2149), - [anon_sym_PLUS_PLUS] = ACTIONS(2149), - [anon_sym_DASH_DASH] = ACTIONS(2149), - [anon_sym_true] = ACTIONS(1259), - [anon_sym_false] = ACTIONS(1259), - [anon_sym_PLUS] = ACTIONS(2147), - [anon_sym_DASH] = ACTIONS(2147), - [anon_sym_STAR] = ACTIONS(2151), - [anon_sym_CARET] = ACTIONS(2149), - [anon_sym_AMP] = ACTIONS(2149), - [anon_sym_this] = ACTIONS(1263), + [anon_sym_checked] = ACTIONS(1317), + [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(1321), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1265), + [anon_sym_base] = ACTIONS(1323), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1267), - [anon_sym_unchecked] = ACTIONS(1253), + [sym_predefined_type] = ACTIONS(91), + [anon_sym_unchecked] = ACTIONS(1317), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1269), - [anon_sym_throw] = ACTIONS(2153), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(1591), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2155), - [anon_sym_DOT_DOT] = ACTIONS(2157), + [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), @@ -213278,19 +213164,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1277), - [anon_sym_sizeof] = ACTIONS(1279), - [anon_sym_typeof] = ACTIONS(1281), - [anon_sym___makeref] = ACTIONS(1283), - [anon_sym___reftype] = ACTIONS(1285), - [anon_sym___refvalue] = ACTIONS(1287), - [sym_null_literal] = ACTIONS(1289), - [anon_sym_SQUOTE] = ACTIONS(1291), - [sym_integer_literal] = ACTIONS(1289), - [sym_real_literal] = ACTIONS(1293), - [anon_sym_DQUOTE] = ACTIONS(1295), - [sym_verbatim_string_literal] = ACTIONS(1293), - [aux_sym_preproc_if_token1] = ACTIONS(1297), + [anon_sym_stackalloc] = ACTIONS(1331), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(1333), + [anon_sym___reftype] = ACTIONS(1335), + [anon_sym___refvalue] = ACTIONS(1337), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_literal] = ACTIONS(143), + [anon_sym_DQUOTE] = ACTIONS(145), + [sym_verbatim_string_literal] = ACTIONS(143), + [aux_sym_preproc_if_token1] = ACTIONS(1339), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -213301,90 +213187,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1299), - [sym_interpolation_verbatim_start] = ACTIONS(1301), - [sym_interpolation_raw_start] = ACTIONS(1303), - [sym_raw_string_start] = ACTIONS(1305), + [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(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2420), - [sym__name] = STATE(5904), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2395), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(5241), - [sym_non_lvalue_expression] = STATE(3066), - [sym_lvalue_expression] = STATE(3557), - [sym__expression_statement_expression] = STATE(3006), - [sym_assignment_expression] = STATE(3020), - [sym_binary_expression] = STATE(3006), - [sym_postfix_unary_expression] = STATE(3020), - [sym_prefix_unary_expression] = STATE(3020), - [sym__pointer_indirection_expression] = STATE(2423), - [sym_query_expression] = STATE(3006), - [sym_from_clause] = STATE(6176), - [sym_conditional_expression] = STATE(3006), - [sym_conditional_access_expression] = STATE(3006), - [sym_as_expression] = STATE(3006), - [sym_is_expression] = STATE(3006), - [sym_is_pattern_expression] = STATE(3006), - [sym_cast_expression] = STATE(3006), - [sym_checked_expression] = STATE(3006), - [sym_invocation_expression] = STATE(3020), - [sym_switch_expression] = STATE(3006), - [sym_await_expression] = STATE(3020), - [sym_throw_expression] = STATE(3006), - [sym_element_access_expression] = STATE(2423), - [sym_interpolated_string_expression] = STATE(3006), - [sym_member_access_expression] = STATE(2423), - [sym_object_creation_expression] = STATE(3020), - [sym_parenthesized_expression] = STATE(3020), - [sym__parenthesized_lvalue_expression] = STATE(2423), - [sym_lambda_expression] = STATE(3006), - [sym__lambda_expression_init] = STATE(7473), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3006), - [sym_anonymous_method_expression] = STATE(3006), - [sym_anonymous_object_creation_expression] = STATE(3006), - [sym_implicit_array_creation_expression] = STATE(3006), - [sym_implicit_object_creation_expression] = STATE(3006), - [sym_implicit_stackalloc_expression] = STATE(3006), - [sym_initializer_expression] = STATE(3006), - [sym_default_expression] = STATE(3006), - [sym_with_expression] = STATE(3006), - [sym_sizeof_expression] = STATE(3006), - [sym_typeof_expression] = STATE(3006), - [sym_makeref_expression] = STATE(3006), - [sym_ref_expression] = STATE(3006), - [sym_reftype_expression] = STATE(3006), - [sym_refvalue_expression] = STATE(3006), - [sym_stackalloc_expression] = STATE(3006), - [sym_range_expression] = STATE(3006), - [sym_tuple_expression] = STATE(2423), - [sym_literal] = STATE(3006), - [sym_character_literal] = STATE(3011), - [sym_string_literal] = STATE(3011), - [sym_raw_string_literal] = STATE(3011), - [sym_boolean_literal] = STATE(3011), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3006), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2816), + [sym__name] = STATE(5875), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2321), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(4820), + [sym_non_lvalue_expression] = STATE(3495), + [sym_lvalue_expression] = STATE(3484), + [sym__expression_statement_expression] = STATE(3462), + [sym_assignment_expression] = STATE(3497), + [sym_binary_expression] = STATE(3462), + [sym_postfix_unary_expression] = STATE(3497), + [sym_prefix_unary_expression] = STATE(3497), + [sym__pointer_indirection_expression] = STATE(2815), + [sym_query_expression] = STATE(3462), + [sym_from_clause] = STATE(6142), + [sym_conditional_expression] = STATE(3462), + [sym_conditional_access_expression] = STATE(3462), + [sym_as_expression] = STATE(3462), + [sym_is_expression] = STATE(3462), + [sym_is_pattern_expression] = STATE(3462), + [sym_cast_expression] = STATE(3462), + [sym_checked_expression] = STATE(3462), + [sym_invocation_expression] = STATE(3497), + [sym_switch_expression] = STATE(3462), + [sym_await_expression] = STATE(3497), + [sym_throw_expression] = STATE(3462), + [sym_element_access_expression] = STATE(2815), + [sym_interpolated_string_expression] = STATE(3462), + [sym_member_access_expression] = STATE(2815), + [sym_object_creation_expression] = STATE(3497), + [sym_parenthesized_expression] = STATE(3497), + [sym__parenthesized_lvalue_expression] = STATE(2815), + [sym_lambda_expression] = STATE(3462), + [sym__lambda_expression_init] = STATE(7384), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3462), + [sym_anonymous_method_expression] = STATE(3462), + [sym_anonymous_object_creation_expression] = STATE(3462), + [sym_implicit_array_creation_expression] = STATE(3462), + [sym_implicit_object_creation_expression] = STATE(3462), + [sym_implicit_stackalloc_expression] = STATE(3462), + [sym_initializer_expression] = STATE(3462), + [sym_default_expression] = STATE(3462), + [sym_with_expression] = STATE(3462), + [sym_sizeof_expression] = STATE(3462), + [sym_typeof_expression] = STATE(3462), + [sym_makeref_expression] = STATE(3462), + [sym_ref_expression] = STATE(3462), + [sym_reftype_expression] = STATE(3462), + [sym_refvalue_expression] = STATE(3462), + [sym_stackalloc_expression] = STATE(3462), + [sym_range_expression] = STATE(3462), + [sym_tuple_expression] = STATE(2815), + [sym_literal] = STATE(3462), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2261), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3462), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(1015), [sym_preproc_endregion] = STATE(1015), [sym_preproc_line] = STATE(1015), @@ -213394,47 +213280,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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3440), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3367), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1241), - [anon_sym_LPAREN] = ACTIONS(2141), - [anon_sym_ref] = ACTIONS(2143), - [anon_sym_LBRACE] = ACTIONS(1247), - [anon_sym_delegate] = ACTIONS(1249), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1305), + [anon_sym_LPAREN] = ACTIONS(1579), + [anon_sym_ref] = ACTIONS(1581), + [anon_sym_LBRACE] = ACTIONS(1311), + [anon_sym_delegate] = ACTIONS(1313), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(2145), + [anon_sym_new] = ACTIONS(1583), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1253), - [anon_sym_BANG] = ACTIONS(2149), - [anon_sym_TILDE] = ACTIONS(2149), - [anon_sym_PLUS_PLUS] = ACTIONS(2149), - [anon_sym_DASH_DASH] = ACTIONS(2149), - [anon_sym_true] = ACTIONS(1259), - [anon_sym_false] = ACTIONS(1259), - [anon_sym_PLUS] = ACTIONS(2147), - [anon_sym_DASH] = ACTIONS(2147), - [anon_sym_STAR] = ACTIONS(2151), - [anon_sym_CARET] = ACTIONS(2149), - [anon_sym_AMP] = ACTIONS(2149), - [anon_sym_this] = ACTIONS(1263), + [anon_sym_checked] = ACTIONS(1317), + [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(1321), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1265), + [anon_sym_base] = ACTIONS(1323), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1267), - [anon_sym_unchecked] = ACTIONS(1253), + [sym_predefined_type] = ACTIONS(91), + [anon_sym_unchecked] = ACTIONS(1317), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1269), - [anon_sym_throw] = ACTIONS(2153), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(1591), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2155), - [anon_sym_DOT_DOT] = ACTIONS(2157), + [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), @@ -213447,19 +213333,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1277), - [anon_sym_sizeof] = ACTIONS(1279), - [anon_sym_typeof] = ACTIONS(1281), - [anon_sym___makeref] = ACTIONS(1283), - [anon_sym___reftype] = ACTIONS(1285), - [anon_sym___refvalue] = ACTIONS(1287), - [sym_null_literal] = ACTIONS(1289), - [anon_sym_SQUOTE] = ACTIONS(1291), - [sym_integer_literal] = ACTIONS(1289), - [sym_real_literal] = ACTIONS(1293), - [anon_sym_DQUOTE] = ACTIONS(1295), - [sym_verbatim_string_literal] = ACTIONS(1293), - [aux_sym_preproc_if_token1] = ACTIONS(1297), + [anon_sym_stackalloc] = ACTIONS(1331), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(1333), + [anon_sym___reftype] = ACTIONS(1335), + [anon_sym___refvalue] = ACTIONS(1337), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_literal] = ACTIONS(143), + [anon_sym_DQUOTE] = ACTIONS(145), + [sym_verbatim_string_literal] = ACTIONS(143), + [aux_sym_preproc_if_token1] = ACTIONS(1339), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -213470,90 +213356,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1299), - [sym_interpolation_verbatim_start] = ACTIONS(1301), - [sym_interpolation_raw_start] = ACTIONS(1303), - [sym_raw_string_start] = ACTIONS(1305), + [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(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2420), - [sym__name] = STATE(5904), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2395), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(5140), - [sym_non_lvalue_expression] = STATE(3066), - [sym_lvalue_expression] = STATE(3557), - [sym__expression_statement_expression] = STATE(3006), - [sym_assignment_expression] = STATE(3020), - [sym_binary_expression] = STATE(3006), - [sym_postfix_unary_expression] = STATE(3020), - [sym_prefix_unary_expression] = STATE(3020), - [sym__pointer_indirection_expression] = STATE(2423), - [sym_query_expression] = STATE(3006), - [sym_from_clause] = STATE(6176), - [sym_conditional_expression] = STATE(3006), - [sym_conditional_access_expression] = STATE(3006), - [sym_as_expression] = STATE(3006), - [sym_is_expression] = STATE(3006), - [sym_is_pattern_expression] = STATE(3006), - [sym_cast_expression] = STATE(3006), - [sym_checked_expression] = STATE(3006), - [sym_invocation_expression] = STATE(3020), - [sym_switch_expression] = STATE(3006), - [sym_await_expression] = STATE(3020), - [sym_throw_expression] = STATE(3006), - [sym_element_access_expression] = STATE(2423), - [sym_interpolated_string_expression] = STATE(3006), - [sym_member_access_expression] = STATE(2423), - [sym_object_creation_expression] = STATE(3020), - [sym_parenthesized_expression] = STATE(3020), - [sym__parenthesized_lvalue_expression] = STATE(2423), - [sym_lambda_expression] = STATE(3006), - [sym__lambda_expression_init] = STATE(7473), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3006), - [sym_anonymous_method_expression] = STATE(3006), - [sym_anonymous_object_creation_expression] = STATE(3006), - [sym_implicit_array_creation_expression] = STATE(3006), - [sym_implicit_object_creation_expression] = STATE(3006), - [sym_implicit_stackalloc_expression] = STATE(3006), - [sym_initializer_expression] = STATE(3006), - [sym_default_expression] = STATE(3006), - [sym_with_expression] = STATE(3006), - [sym_sizeof_expression] = STATE(3006), - [sym_typeof_expression] = STATE(3006), - [sym_makeref_expression] = STATE(3006), - [sym_ref_expression] = STATE(3006), - [sym_reftype_expression] = STATE(3006), - [sym_refvalue_expression] = STATE(3006), - [sym_stackalloc_expression] = STATE(3006), - [sym_range_expression] = STATE(3006), - [sym_tuple_expression] = STATE(2423), - [sym_literal] = STATE(3006), - [sym_character_literal] = STATE(3011), - [sym_string_literal] = STATE(3011), - [sym_raw_string_literal] = STATE(3011), - [sym_boolean_literal] = STATE(3011), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3006), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2816), + [sym__name] = STATE(5875), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2321), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(4821), + [sym_non_lvalue_expression] = STATE(3495), + [sym_lvalue_expression] = STATE(3484), + [sym__expression_statement_expression] = STATE(3462), + [sym_assignment_expression] = STATE(3497), + [sym_binary_expression] = STATE(3462), + [sym_postfix_unary_expression] = STATE(3497), + [sym_prefix_unary_expression] = STATE(3497), + [sym__pointer_indirection_expression] = STATE(2815), + [sym_query_expression] = STATE(3462), + [sym_from_clause] = STATE(6142), + [sym_conditional_expression] = STATE(3462), + [sym_conditional_access_expression] = STATE(3462), + [sym_as_expression] = STATE(3462), + [sym_is_expression] = STATE(3462), + [sym_is_pattern_expression] = STATE(3462), + [sym_cast_expression] = STATE(3462), + [sym_checked_expression] = STATE(3462), + [sym_invocation_expression] = STATE(3497), + [sym_switch_expression] = STATE(3462), + [sym_await_expression] = STATE(3497), + [sym_throw_expression] = STATE(3462), + [sym_element_access_expression] = STATE(2815), + [sym_interpolated_string_expression] = STATE(3462), + [sym_member_access_expression] = STATE(2815), + [sym_object_creation_expression] = STATE(3497), + [sym_parenthesized_expression] = STATE(3497), + [sym__parenthesized_lvalue_expression] = STATE(2815), + [sym_lambda_expression] = STATE(3462), + [sym__lambda_expression_init] = STATE(7384), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3462), + [sym_anonymous_method_expression] = STATE(3462), + [sym_anonymous_object_creation_expression] = STATE(3462), + [sym_implicit_array_creation_expression] = STATE(3462), + [sym_implicit_object_creation_expression] = STATE(3462), + [sym_implicit_stackalloc_expression] = STATE(3462), + [sym_initializer_expression] = STATE(3462), + [sym_default_expression] = STATE(3462), + [sym_with_expression] = STATE(3462), + [sym_sizeof_expression] = STATE(3462), + [sym_typeof_expression] = STATE(3462), + [sym_makeref_expression] = STATE(3462), + [sym_ref_expression] = STATE(3462), + [sym_reftype_expression] = STATE(3462), + [sym_refvalue_expression] = STATE(3462), + [sym_stackalloc_expression] = STATE(3462), + [sym_range_expression] = STATE(3462), + [sym_tuple_expression] = STATE(2815), + [sym_literal] = STATE(3462), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2261), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3462), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(1016), [sym_preproc_endregion] = STATE(1016), [sym_preproc_line] = STATE(1016), @@ -213563,47 +213449,47 @@ 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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3440), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3367), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1241), - [anon_sym_LPAREN] = ACTIONS(2141), - [anon_sym_ref] = ACTIONS(2143), - [anon_sym_LBRACE] = ACTIONS(1247), - [anon_sym_delegate] = ACTIONS(1249), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1305), + [anon_sym_LPAREN] = ACTIONS(1579), + [anon_sym_ref] = ACTIONS(1581), + [anon_sym_LBRACE] = ACTIONS(1311), + [anon_sym_delegate] = ACTIONS(1313), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(2145), + [anon_sym_new] = ACTIONS(1583), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1253), - [anon_sym_BANG] = ACTIONS(2149), - [anon_sym_TILDE] = ACTIONS(2149), - [anon_sym_PLUS_PLUS] = ACTIONS(2149), - [anon_sym_DASH_DASH] = ACTIONS(2149), - [anon_sym_true] = ACTIONS(1259), - [anon_sym_false] = ACTIONS(1259), - [anon_sym_PLUS] = ACTIONS(2147), - [anon_sym_DASH] = ACTIONS(2147), - [anon_sym_STAR] = ACTIONS(2151), - [anon_sym_CARET] = ACTIONS(2149), - [anon_sym_AMP] = ACTIONS(2149), - [anon_sym_this] = ACTIONS(1263), + [anon_sym_checked] = ACTIONS(1317), + [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(1321), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1265), + [anon_sym_base] = ACTIONS(1323), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1267), - [anon_sym_unchecked] = ACTIONS(1253), + [sym_predefined_type] = ACTIONS(91), + [anon_sym_unchecked] = ACTIONS(1317), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1269), - [anon_sym_throw] = ACTIONS(2153), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(1591), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2155), - [anon_sym_DOT_DOT] = ACTIONS(2157), + [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), @@ -213616,19 +213502,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1277), - [anon_sym_sizeof] = ACTIONS(1279), - [anon_sym_typeof] = ACTIONS(1281), - [anon_sym___makeref] = ACTIONS(1283), - [anon_sym___reftype] = ACTIONS(1285), - [anon_sym___refvalue] = ACTIONS(1287), - [sym_null_literal] = ACTIONS(1289), - [anon_sym_SQUOTE] = ACTIONS(1291), - [sym_integer_literal] = ACTIONS(1289), - [sym_real_literal] = ACTIONS(1293), - [anon_sym_DQUOTE] = ACTIONS(1295), - [sym_verbatim_string_literal] = ACTIONS(1293), - [aux_sym_preproc_if_token1] = ACTIONS(1297), + [anon_sym_stackalloc] = ACTIONS(1331), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(1333), + [anon_sym___reftype] = ACTIONS(1335), + [anon_sym___refvalue] = ACTIONS(1337), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_literal] = ACTIONS(143), + [anon_sym_DQUOTE] = ACTIONS(145), + [sym_verbatim_string_literal] = ACTIONS(143), + [aux_sym_preproc_if_token1] = ACTIONS(1339), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -213639,90 +213525,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1299), - [sym_interpolation_verbatim_start] = ACTIONS(1301), - [sym_interpolation_raw_start] = ACTIONS(1303), - [sym_raw_string_start] = ACTIONS(1305), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [sym_interpolation_raw_start] = ACTIONS(155), + [sym_raw_string_start] = ACTIONS(157), }, [1017] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2420), - [sym__name] = STATE(5904), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2395), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(5118), - [sym_non_lvalue_expression] = STATE(3066), - [sym_lvalue_expression] = STATE(3557), - [sym__expression_statement_expression] = STATE(3006), - [sym_assignment_expression] = STATE(3020), - [sym_binary_expression] = STATE(3006), - [sym_postfix_unary_expression] = STATE(3020), - [sym_prefix_unary_expression] = STATE(3020), - [sym__pointer_indirection_expression] = STATE(2423), - [sym_query_expression] = STATE(3006), - [sym_from_clause] = STATE(6176), - [sym_conditional_expression] = STATE(3006), - [sym_conditional_access_expression] = STATE(3006), - [sym_as_expression] = STATE(3006), - [sym_is_expression] = STATE(3006), - [sym_is_pattern_expression] = STATE(3006), - [sym_cast_expression] = STATE(3006), - [sym_checked_expression] = STATE(3006), - [sym_invocation_expression] = STATE(3020), - [sym_switch_expression] = STATE(3006), - [sym_await_expression] = STATE(3020), - [sym_throw_expression] = STATE(3006), - [sym_element_access_expression] = STATE(2423), - [sym_interpolated_string_expression] = STATE(3006), - [sym_member_access_expression] = STATE(2423), - [sym_object_creation_expression] = STATE(3020), - [sym_parenthesized_expression] = STATE(3020), - [sym__parenthesized_lvalue_expression] = STATE(2423), - [sym_lambda_expression] = STATE(3006), - [sym__lambda_expression_init] = STATE(7473), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3006), - [sym_anonymous_method_expression] = STATE(3006), - [sym_anonymous_object_creation_expression] = STATE(3006), - [sym_implicit_array_creation_expression] = STATE(3006), - [sym_implicit_object_creation_expression] = STATE(3006), - [sym_implicit_stackalloc_expression] = STATE(3006), - [sym_initializer_expression] = STATE(3006), - [sym_default_expression] = STATE(3006), - [sym_with_expression] = STATE(3006), - [sym_sizeof_expression] = STATE(3006), - [sym_typeof_expression] = STATE(3006), - [sym_makeref_expression] = STATE(3006), - [sym_ref_expression] = STATE(3006), - [sym_reftype_expression] = STATE(3006), - [sym_refvalue_expression] = STATE(3006), - [sym_stackalloc_expression] = STATE(3006), - [sym_range_expression] = STATE(3006), - [sym_tuple_expression] = STATE(2423), - [sym_literal] = STATE(3006), - [sym_character_literal] = STATE(3011), - [sym_string_literal] = STATE(3011), - [sym_raw_string_literal] = STATE(3011), - [sym_boolean_literal] = STATE(3011), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3006), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2816), + [sym__name] = STATE(5875), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2321), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(4825), + [sym_non_lvalue_expression] = STATE(3495), + [sym_lvalue_expression] = STATE(3484), + [sym__expression_statement_expression] = STATE(3462), + [sym_assignment_expression] = STATE(3497), + [sym_binary_expression] = STATE(3462), + [sym_postfix_unary_expression] = STATE(3497), + [sym_prefix_unary_expression] = STATE(3497), + [sym__pointer_indirection_expression] = STATE(2815), + [sym_query_expression] = STATE(3462), + [sym_from_clause] = STATE(6142), + [sym_conditional_expression] = STATE(3462), + [sym_conditional_access_expression] = STATE(3462), + [sym_as_expression] = STATE(3462), + [sym_is_expression] = STATE(3462), + [sym_is_pattern_expression] = STATE(3462), + [sym_cast_expression] = STATE(3462), + [sym_checked_expression] = STATE(3462), + [sym_invocation_expression] = STATE(3497), + [sym_switch_expression] = STATE(3462), + [sym_await_expression] = STATE(3497), + [sym_throw_expression] = STATE(3462), + [sym_element_access_expression] = STATE(2815), + [sym_interpolated_string_expression] = STATE(3462), + [sym_member_access_expression] = STATE(2815), + [sym_object_creation_expression] = STATE(3497), + [sym_parenthesized_expression] = STATE(3497), + [sym__parenthesized_lvalue_expression] = STATE(2815), + [sym_lambda_expression] = STATE(3462), + [sym__lambda_expression_init] = STATE(7384), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3462), + [sym_anonymous_method_expression] = STATE(3462), + [sym_anonymous_object_creation_expression] = STATE(3462), + [sym_implicit_array_creation_expression] = STATE(3462), + [sym_implicit_object_creation_expression] = STATE(3462), + [sym_implicit_stackalloc_expression] = STATE(3462), + [sym_initializer_expression] = STATE(3462), + [sym_default_expression] = STATE(3462), + [sym_with_expression] = STATE(3462), + [sym_sizeof_expression] = STATE(3462), + [sym_typeof_expression] = STATE(3462), + [sym_makeref_expression] = STATE(3462), + [sym_ref_expression] = STATE(3462), + [sym_reftype_expression] = STATE(3462), + [sym_refvalue_expression] = STATE(3462), + [sym_stackalloc_expression] = STATE(3462), + [sym_range_expression] = STATE(3462), + [sym_tuple_expression] = STATE(2815), + [sym_literal] = STATE(3462), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2261), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3462), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(1017), [sym_preproc_endregion] = STATE(1017), [sym_preproc_line] = STATE(1017), @@ -213732,47 +213618,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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3440), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3367), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1241), - [anon_sym_LPAREN] = ACTIONS(2141), - [anon_sym_ref] = ACTIONS(2143), - [anon_sym_LBRACE] = ACTIONS(1247), - [anon_sym_delegate] = ACTIONS(1249), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1305), + [anon_sym_LPAREN] = ACTIONS(1579), + [anon_sym_ref] = ACTIONS(1581), + [anon_sym_LBRACE] = ACTIONS(1311), + [anon_sym_delegate] = ACTIONS(1313), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(2145), + [anon_sym_new] = ACTIONS(1583), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1253), - [anon_sym_BANG] = ACTIONS(2149), - [anon_sym_TILDE] = ACTIONS(2149), - [anon_sym_PLUS_PLUS] = ACTIONS(2149), - [anon_sym_DASH_DASH] = ACTIONS(2149), - [anon_sym_true] = ACTIONS(1259), - [anon_sym_false] = ACTIONS(1259), - [anon_sym_PLUS] = ACTIONS(2147), - [anon_sym_DASH] = ACTIONS(2147), - [anon_sym_STAR] = ACTIONS(2151), - [anon_sym_CARET] = ACTIONS(2149), - [anon_sym_AMP] = ACTIONS(2149), - [anon_sym_this] = ACTIONS(1263), + [anon_sym_checked] = ACTIONS(1317), + [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(1321), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1265), + [anon_sym_base] = ACTIONS(1323), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1267), - [anon_sym_unchecked] = ACTIONS(1253), + [sym_predefined_type] = ACTIONS(91), + [anon_sym_unchecked] = ACTIONS(1317), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1269), - [anon_sym_throw] = ACTIONS(2153), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(1591), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2155), - [anon_sym_DOT_DOT] = ACTIONS(2157), + [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), @@ -213785,19 +213671,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1277), - [anon_sym_sizeof] = ACTIONS(1279), - [anon_sym_typeof] = ACTIONS(1281), - [anon_sym___makeref] = ACTIONS(1283), - [anon_sym___reftype] = ACTIONS(1285), - [anon_sym___refvalue] = ACTIONS(1287), - [sym_null_literal] = ACTIONS(1289), - [anon_sym_SQUOTE] = ACTIONS(1291), - [sym_integer_literal] = ACTIONS(1289), - [sym_real_literal] = ACTIONS(1293), - [anon_sym_DQUOTE] = ACTIONS(1295), - [sym_verbatim_string_literal] = ACTIONS(1293), - [aux_sym_preproc_if_token1] = ACTIONS(1297), + [anon_sym_stackalloc] = ACTIONS(1331), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(1333), + [anon_sym___reftype] = ACTIONS(1335), + [anon_sym___refvalue] = ACTIONS(1337), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_literal] = ACTIONS(143), + [anon_sym_DQUOTE] = ACTIONS(145), + [sym_verbatim_string_literal] = ACTIONS(143), + [aux_sym_preproc_if_token1] = ACTIONS(1339), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -213808,90 +213694,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1299), - [sym_interpolation_verbatim_start] = ACTIONS(1301), - [sym_interpolation_raw_start] = ACTIONS(1303), - [sym_raw_string_start] = ACTIONS(1305), + [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(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2420), - [sym__name] = STATE(5904), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2395), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(5322), - [sym_non_lvalue_expression] = STATE(3066), - [sym_lvalue_expression] = STATE(3557), - [sym__expression_statement_expression] = STATE(3006), - [sym_assignment_expression] = STATE(3020), - [sym_binary_expression] = STATE(3006), - [sym_postfix_unary_expression] = STATE(3020), - [sym_prefix_unary_expression] = STATE(3020), - [sym__pointer_indirection_expression] = STATE(2423), - [sym_query_expression] = STATE(3006), - [sym_from_clause] = STATE(6176), - [sym_conditional_expression] = STATE(3006), - [sym_conditional_access_expression] = STATE(3006), - [sym_as_expression] = STATE(3006), - [sym_is_expression] = STATE(3006), - [sym_is_pattern_expression] = STATE(3006), - [sym_cast_expression] = STATE(3006), - [sym_checked_expression] = STATE(3006), - [sym_invocation_expression] = STATE(3020), - [sym_switch_expression] = STATE(3006), - [sym_await_expression] = STATE(3020), - [sym_throw_expression] = STATE(3006), - [sym_element_access_expression] = STATE(2423), - [sym_interpolated_string_expression] = STATE(3006), - [sym_member_access_expression] = STATE(2423), - [sym_object_creation_expression] = STATE(3020), - [sym_parenthesized_expression] = STATE(3020), - [sym__parenthesized_lvalue_expression] = STATE(2423), - [sym_lambda_expression] = STATE(3006), - [sym__lambda_expression_init] = STATE(7473), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3006), - [sym_anonymous_method_expression] = STATE(3006), - [sym_anonymous_object_creation_expression] = STATE(3006), - [sym_implicit_array_creation_expression] = STATE(3006), - [sym_implicit_object_creation_expression] = STATE(3006), - [sym_implicit_stackalloc_expression] = STATE(3006), - [sym_initializer_expression] = STATE(3006), - [sym_default_expression] = STATE(3006), - [sym_with_expression] = STATE(3006), - [sym_sizeof_expression] = STATE(3006), - [sym_typeof_expression] = STATE(3006), - [sym_makeref_expression] = STATE(3006), - [sym_ref_expression] = STATE(3006), - [sym_reftype_expression] = STATE(3006), - [sym_refvalue_expression] = STATE(3006), - [sym_stackalloc_expression] = STATE(3006), - [sym_range_expression] = STATE(3006), - [sym_tuple_expression] = STATE(2423), - [sym_literal] = STATE(3006), - [sym_character_literal] = STATE(3011), - [sym_string_literal] = STATE(3011), - [sym_raw_string_literal] = STATE(3011), - [sym_boolean_literal] = STATE(3011), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3006), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2816), + [sym__name] = STATE(5875), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2321), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(4827), + [sym_non_lvalue_expression] = STATE(3495), + [sym_lvalue_expression] = STATE(3484), + [sym__expression_statement_expression] = STATE(3462), + [sym_assignment_expression] = STATE(3497), + [sym_binary_expression] = STATE(3462), + [sym_postfix_unary_expression] = STATE(3497), + [sym_prefix_unary_expression] = STATE(3497), + [sym__pointer_indirection_expression] = STATE(2815), + [sym_query_expression] = STATE(3462), + [sym_from_clause] = STATE(6142), + [sym_conditional_expression] = STATE(3462), + [sym_conditional_access_expression] = STATE(3462), + [sym_as_expression] = STATE(3462), + [sym_is_expression] = STATE(3462), + [sym_is_pattern_expression] = STATE(3462), + [sym_cast_expression] = STATE(3462), + [sym_checked_expression] = STATE(3462), + [sym_invocation_expression] = STATE(3497), + [sym_switch_expression] = STATE(3462), + [sym_await_expression] = STATE(3497), + [sym_throw_expression] = STATE(3462), + [sym_element_access_expression] = STATE(2815), + [sym_interpolated_string_expression] = STATE(3462), + [sym_member_access_expression] = STATE(2815), + [sym_object_creation_expression] = STATE(3497), + [sym_parenthesized_expression] = STATE(3497), + [sym__parenthesized_lvalue_expression] = STATE(2815), + [sym_lambda_expression] = STATE(3462), + [sym__lambda_expression_init] = STATE(7384), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3462), + [sym_anonymous_method_expression] = STATE(3462), + [sym_anonymous_object_creation_expression] = STATE(3462), + [sym_implicit_array_creation_expression] = STATE(3462), + [sym_implicit_object_creation_expression] = STATE(3462), + [sym_implicit_stackalloc_expression] = STATE(3462), + [sym_initializer_expression] = STATE(3462), + [sym_default_expression] = STATE(3462), + [sym_with_expression] = STATE(3462), + [sym_sizeof_expression] = STATE(3462), + [sym_typeof_expression] = STATE(3462), + [sym_makeref_expression] = STATE(3462), + [sym_ref_expression] = STATE(3462), + [sym_reftype_expression] = STATE(3462), + [sym_refvalue_expression] = STATE(3462), + [sym_stackalloc_expression] = STATE(3462), + [sym_range_expression] = STATE(3462), + [sym_tuple_expression] = STATE(2815), + [sym_literal] = STATE(3462), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2261), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3462), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(1018), [sym_preproc_endregion] = STATE(1018), [sym_preproc_line] = STATE(1018), @@ -213901,47 +213787,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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3440), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3367), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1241), - [anon_sym_LPAREN] = ACTIONS(2141), - [anon_sym_ref] = ACTIONS(2143), - [anon_sym_LBRACE] = ACTIONS(1247), - [anon_sym_delegate] = ACTIONS(1249), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1305), + [anon_sym_LPAREN] = ACTIONS(1579), + [anon_sym_ref] = ACTIONS(1581), + [anon_sym_LBRACE] = ACTIONS(1311), + [anon_sym_delegate] = ACTIONS(1313), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(2145), + [anon_sym_new] = ACTIONS(1583), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1253), - [anon_sym_BANG] = ACTIONS(2149), - [anon_sym_TILDE] = ACTIONS(2149), - [anon_sym_PLUS_PLUS] = ACTIONS(2149), - [anon_sym_DASH_DASH] = ACTIONS(2149), - [anon_sym_true] = ACTIONS(1259), - [anon_sym_false] = ACTIONS(1259), - [anon_sym_PLUS] = ACTIONS(2147), - [anon_sym_DASH] = ACTIONS(2147), - [anon_sym_STAR] = ACTIONS(2151), - [anon_sym_CARET] = ACTIONS(2149), - [anon_sym_AMP] = ACTIONS(2149), - [anon_sym_this] = ACTIONS(1263), + [anon_sym_checked] = ACTIONS(1317), + [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(1321), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1265), + [anon_sym_base] = ACTIONS(1323), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1267), - [anon_sym_unchecked] = ACTIONS(1253), + [sym_predefined_type] = ACTIONS(91), + [anon_sym_unchecked] = ACTIONS(1317), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1269), - [anon_sym_throw] = ACTIONS(2153), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(1591), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2155), - [anon_sym_DOT_DOT] = ACTIONS(2157), + [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), @@ -213954,19 +213840,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1277), - [anon_sym_sizeof] = ACTIONS(1279), - [anon_sym_typeof] = ACTIONS(1281), - [anon_sym___makeref] = ACTIONS(1283), - [anon_sym___reftype] = ACTIONS(1285), - [anon_sym___refvalue] = ACTIONS(1287), - [sym_null_literal] = ACTIONS(1289), - [anon_sym_SQUOTE] = ACTIONS(1291), - [sym_integer_literal] = ACTIONS(1289), - [sym_real_literal] = ACTIONS(1293), - [anon_sym_DQUOTE] = ACTIONS(1295), - [sym_verbatim_string_literal] = ACTIONS(1293), - [aux_sym_preproc_if_token1] = ACTIONS(1297), + [anon_sym_stackalloc] = ACTIONS(1331), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(1333), + [anon_sym___reftype] = ACTIONS(1335), + [anon_sym___refvalue] = ACTIONS(1337), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_literal] = ACTIONS(143), + [anon_sym_DQUOTE] = ACTIONS(145), + [sym_verbatim_string_literal] = ACTIONS(143), + [aux_sym_preproc_if_token1] = ACTIONS(1339), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -213977,90 +213863,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1299), - [sym_interpolation_verbatim_start] = ACTIONS(1301), - [sym_interpolation_raw_start] = ACTIONS(1303), - [sym_raw_string_start] = ACTIONS(1305), - }, - [1019] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2420), - [sym__name] = STATE(5904), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2395), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(2910), - [sym_non_lvalue_expression] = STATE(3066), - [sym_lvalue_expression] = STATE(3557), - [sym__expression_statement_expression] = STATE(3006), - [sym_assignment_expression] = STATE(3020), - [sym_binary_expression] = STATE(3006), - [sym_postfix_unary_expression] = STATE(3020), - [sym_prefix_unary_expression] = STATE(3020), - [sym__pointer_indirection_expression] = STATE(2423), - [sym_query_expression] = STATE(3006), - [sym_from_clause] = STATE(6176), - [sym_conditional_expression] = STATE(3006), - [sym_conditional_access_expression] = STATE(3006), - [sym_as_expression] = STATE(3006), - [sym_is_expression] = STATE(3006), - [sym_is_pattern_expression] = STATE(3006), - [sym_cast_expression] = STATE(3006), - [sym_checked_expression] = STATE(3006), - [sym_invocation_expression] = STATE(3020), - [sym_switch_expression] = STATE(3006), - [sym_await_expression] = STATE(3020), - [sym_throw_expression] = STATE(3006), - [sym_element_access_expression] = STATE(2423), - [sym_interpolated_string_expression] = STATE(3006), - [sym_member_access_expression] = STATE(2423), - [sym_object_creation_expression] = STATE(3020), - [sym_parenthesized_expression] = STATE(3020), - [sym__parenthesized_lvalue_expression] = STATE(2423), - [sym_lambda_expression] = STATE(3006), - [sym__lambda_expression_init] = STATE(7473), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3006), - [sym_anonymous_method_expression] = STATE(3006), - [sym_anonymous_object_creation_expression] = STATE(3006), - [sym_implicit_array_creation_expression] = STATE(3006), - [sym_implicit_object_creation_expression] = STATE(3006), - [sym_implicit_stackalloc_expression] = STATE(3006), - [sym_initializer_expression] = STATE(3006), - [sym_default_expression] = STATE(3006), - [sym_with_expression] = STATE(3006), - [sym_sizeof_expression] = STATE(3006), - [sym_typeof_expression] = STATE(3006), - [sym_makeref_expression] = STATE(3006), - [sym_ref_expression] = STATE(3006), - [sym_reftype_expression] = STATE(3006), - [sym_refvalue_expression] = STATE(3006), - [sym_stackalloc_expression] = STATE(3006), - [sym_range_expression] = STATE(3006), - [sym_tuple_expression] = STATE(2423), - [sym_literal] = STATE(3006), - [sym_character_literal] = STATE(3011), - [sym_string_literal] = STATE(3011), - [sym_raw_string_literal] = STATE(3011), - [sym_boolean_literal] = STATE(3011), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3006), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [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(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2816), + [sym__name] = STATE(5875), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2321), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(4828), + [sym_non_lvalue_expression] = STATE(3495), + [sym_lvalue_expression] = STATE(3484), + [sym__expression_statement_expression] = STATE(3462), + [sym_assignment_expression] = STATE(3497), + [sym_binary_expression] = STATE(3462), + [sym_postfix_unary_expression] = STATE(3497), + [sym_prefix_unary_expression] = STATE(3497), + [sym__pointer_indirection_expression] = STATE(2815), + [sym_query_expression] = STATE(3462), + [sym_from_clause] = STATE(6142), + [sym_conditional_expression] = STATE(3462), + [sym_conditional_access_expression] = STATE(3462), + [sym_as_expression] = STATE(3462), + [sym_is_expression] = STATE(3462), + [sym_is_pattern_expression] = STATE(3462), + [sym_cast_expression] = STATE(3462), + [sym_checked_expression] = STATE(3462), + [sym_invocation_expression] = STATE(3497), + [sym_switch_expression] = STATE(3462), + [sym_await_expression] = STATE(3497), + [sym_throw_expression] = STATE(3462), + [sym_element_access_expression] = STATE(2815), + [sym_interpolated_string_expression] = STATE(3462), + [sym_member_access_expression] = STATE(2815), + [sym_object_creation_expression] = STATE(3497), + [sym_parenthesized_expression] = STATE(3497), + [sym__parenthesized_lvalue_expression] = STATE(2815), + [sym_lambda_expression] = STATE(3462), + [sym__lambda_expression_init] = STATE(7384), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3462), + [sym_anonymous_method_expression] = STATE(3462), + [sym_anonymous_object_creation_expression] = STATE(3462), + [sym_implicit_array_creation_expression] = STATE(3462), + [sym_implicit_object_creation_expression] = STATE(3462), + [sym_implicit_stackalloc_expression] = STATE(3462), + [sym_initializer_expression] = STATE(3462), + [sym_default_expression] = STATE(3462), + [sym_with_expression] = STATE(3462), + [sym_sizeof_expression] = STATE(3462), + [sym_typeof_expression] = STATE(3462), + [sym_makeref_expression] = STATE(3462), + [sym_ref_expression] = STATE(3462), + [sym_reftype_expression] = STATE(3462), + [sym_refvalue_expression] = STATE(3462), + [sym_stackalloc_expression] = STATE(3462), + [sym_range_expression] = STATE(3462), + [sym_tuple_expression] = STATE(2815), + [sym_literal] = STATE(3462), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2261), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3462), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(1019), [sym_preproc_endregion] = STATE(1019), [sym_preproc_line] = STATE(1019), @@ -214070,47 +213956,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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3440), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3367), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1241), - [anon_sym_LPAREN] = ACTIONS(2141), - [anon_sym_ref] = ACTIONS(2143), - [anon_sym_LBRACE] = ACTIONS(1247), - [anon_sym_delegate] = ACTIONS(1249), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1305), + [anon_sym_LPAREN] = ACTIONS(1579), + [anon_sym_ref] = ACTIONS(1581), + [anon_sym_LBRACE] = ACTIONS(1311), + [anon_sym_delegate] = ACTIONS(1313), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(2145), + [anon_sym_new] = ACTIONS(1583), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1253), - [anon_sym_BANG] = ACTIONS(2149), - [anon_sym_TILDE] = ACTIONS(2149), - [anon_sym_PLUS_PLUS] = ACTIONS(2149), - [anon_sym_DASH_DASH] = ACTIONS(2149), - [anon_sym_true] = ACTIONS(1259), - [anon_sym_false] = ACTIONS(1259), - [anon_sym_PLUS] = ACTIONS(2147), - [anon_sym_DASH] = ACTIONS(2147), - [anon_sym_STAR] = ACTIONS(2151), - [anon_sym_CARET] = ACTIONS(2149), - [anon_sym_AMP] = ACTIONS(2149), - [anon_sym_this] = ACTIONS(1263), + [anon_sym_checked] = ACTIONS(1317), + [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(1321), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1265), + [anon_sym_base] = ACTIONS(1323), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1267), - [anon_sym_unchecked] = ACTIONS(1253), + [sym_predefined_type] = ACTIONS(91), + [anon_sym_unchecked] = ACTIONS(1317), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1269), - [anon_sym_throw] = ACTIONS(2153), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(1591), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2155), - [anon_sym_DOT_DOT] = ACTIONS(2157), + [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), @@ -214123,19 +214009,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1277), - [anon_sym_sizeof] = ACTIONS(1279), - [anon_sym_typeof] = ACTIONS(1281), - [anon_sym___makeref] = ACTIONS(1283), - [anon_sym___reftype] = ACTIONS(1285), - [anon_sym___refvalue] = ACTIONS(1287), - [sym_null_literal] = ACTIONS(1289), - [anon_sym_SQUOTE] = ACTIONS(1291), - [sym_integer_literal] = ACTIONS(1289), - [sym_real_literal] = ACTIONS(1293), - [anon_sym_DQUOTE] = ACTIONS(1295), - [sym_verbatim_string_literal] = ACTIONS(1293), - [aux_sym_preproc_if_token1] = ACTIONS(1297), + [anon_sym_stackalloc] = ACTIONS(1331), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(1333), + [anon_sym___reftype] = ACTIONS(1335), + [anon_sym___refvalue] = ACTIONS(1337), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_literal] = ACTIONS(143), + [anon_sym_DQUOTE] = ACTIONS(145), + [sym_verbatim_string_literal] = ACTIONS(143), + [aux_sym_preproc_if_token1] = ACTIONS(1339), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -214146,90 +214032,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1299), - [sym_interpolation_verbatim_start] = ACTIONS(1301), - [sym_interpolation_raw_start] = ACTIONS(1303), - [sym_raw_string_start] = ACTIONS(1305), + [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(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2762), - [sym__name] = STATE(5893), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2316), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(4660), - [sym_non_lvalue_expression] = STATE(3438), - [sym_lvalue_expression] = STATE(3391), - [sym__expression_statement_expression] = STATE(3362), - [sym_assignment_expression] = STATE(3449), - [sym_binary_expression] = STATE(3362), - [sym_postfix_unary_expression] = STATE(3449), - [sym_prefix_unary_expression] = STATE(3449), - [sym__pointer_indirection_expression] = STATE(2747), - [sym_query_expression] = STATE(3362), - [sym_from_clause] = STATE(6155), - [sym_conditional_expression] = STATE(3362), - [sym_conditional_access_expression] = STATE(3362), - [sym_as_expression] = STATE(3362), - [sym_is_expression] = STATE(3362), - [sym_is_pattern_expression] = STATE(3362), - [sym_cast_expression] = STATE(3362), - [sym_checked_expression] = STATE(3362), - [sym_invocation_expression] = STATE(3449), - [sym_switch_expression] = STATE(3362), - [sym_await_expression] = STATE(3449), - [sym_throw_expression] = STATE(3362), - [sym_element_access_expression] = STATE(2747), - [sym_interpolated_string_expression] = STATE(3362), - [sym_member_access_expression] = STATE(2747), - [sym_object_creation_expression] = STATE(3449), - [sym_parenthesized_expression] = STATE(3449), - [sym__parenthesized_lvalue_expression] = STATE(2747), - [sym_lambda_expression] = STATE(3362), - [sym__lambda_expression_init] = STATE(7726), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3362), - [sym_anonymous_method_expression] = STATE(3362), - [sym_anonymous_object_creation_expression] = STATE(3362), - [sym_implicit_array_creation_expression] = STATE(3362), - [sym_implicit_object_creation_expression] = STATE(3362), - [sym_implicit_stackalloc_expression] = STATE(3362), - [sym_initializer_expression] = STATE(3362), - [sym_default_expression] = STATE(3362), - [sym_with_expression] = STATE(3362), - [sym_sizeof_expression] = STATE(3362), - [sym_typeof_expression] = STATE(3362), - [sym_makeref_expression] = STATE(3362), - [sym_ref_expression] = STATE(3362), - [sym_reftype_expression] = STATE(3362), - [sym_refvalue_expression] = STATE(3362), - [sym_stackalloc_expression] = STATE(3362), - [sym_range_expression] = STATE(3362), - [sym_tuple_expression] = STATE(2747), - [sym_literal] = STATE(3362), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3362), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2816), + [sym__name] = STATE(5875), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2321), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(3214), + [sym_non_lvalue_expression] = STATE(3495), + [sym_lvalue_expression] = STATE(3484), + [sym__expression_statement_expression] = STATE(3462), + [sym_assignment_expression] = STATE(3497), + [sym_binary_expression] = STATE(3462), + [sym_postfix_unary_expression] = STATE(3497), + [sym_prefix_unary_expression] = STATE(3497), + [sym__pointer_indirection_expression] = STATE(2815), + [sym_query_expression] = STATE(3462), + [sym_from_clause] = STATE(6142), + [sym_conditional_expression] = STATE(3462), + [sym_conditional_access_expression] = STATE(3462), + [sym_as_expression] = STATE(3462), + [sym_is_expression] = STATE(3462), + [sym_is_pattern_expression] = STATE(3462), + [sym_cast_expression] = STATE(3462), + [sym_checked_expression] = STATE(3462), + [sym_invocation_expression] = STATE(3497), + [sym_switch_expression] = STATE(3462), + [sym_await_expression] = STATE(3497), + [sym_throw_expression] = STATE(3462), + [sym_element_access_expression] = STATE(2815), + [sym_interpolated_string_expression] = STATE(3462), + [sym_member_access_expression] = STATE(2815), + [sym_object_creation_expression] = STATE(3497), + [sym_parenthesized_expression] = STATE(3497), + [sym__parenthesized_lvalue_expression] = STATE(2815), + [sym_lambda_expression] = STATE(3462), + [sym__lambda_expression_init] = STATE(7384), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3462), + [sym_anonymous_method_expression] = STATE(3462), + [sym_anonymous_object_creation_expression] = STATE(3462), + [sym_implicit_array_creation_expression] = STATE(3462), + [sym_implicit_object_creation_expression] = STATE(3462), + [sym_implicit_stackalloc_expression] = STATE(3462), + [sym_initializer_expression] = STATE(3462), + [sym_default_expression] = STATE(3462), + [sym_with_expression] = STATE(3462), + [sym_sizeof_expression] = STATE(3462), + [sym_typeof_expression] = STATE(3462), + [sym_makeref_expression] = STATE(3462), + [sym_ref_expression] = STATE(3462), + [sym_reftype_expression] = STATE(3462), + [sym_refvalue_expression] = STATE(3462), + [sym_stackalloc_expression] = STATE(3462), + [sym_range_expression] = STATE(3462), + [sym_tuple_expression] = STATE(2815), + [sym_literal] = STATE(3462), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2261), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3462), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(1020), [sym_preproc_endregion] = STATE(1020), [sym_preproc_line] = STATE(1020), @@ -214239,47 +214125,47 @@ 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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3385), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3367), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1307), - [anon_sym_LPAREN] = ACTIONS(1711), - [anon_sym_ref] = ACTIONS(1713), - [anon_sym_LBRACE] = ACTIONS(1313), - [anon_sym_delegate] = ACTIONS(1315), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1305), + [anon_sym_LPAREN] = ACTIONS(1579), + [anon_sym_ref] = ACTIONS(1581), + [anon_sym_LBRACE] = ACTIONS(1311), + [anon_sym_delegate] = ACTIONS(1313), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1613), + [anon_sym_new] = ACTIONS(1583), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1319), - [anon_sym_BANG] = ACTIONS(1717), - [anon_sym_TILDE] = ACTIONS(1717), - [anon_sym_PLUS_PLUS] = ACTIONS(1717), - [anon_sym_DASH_DASH] = ACTIONS(1717), + [anon_sym_checked] = ACTIONS(1317), + [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(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(1323), + [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(1321), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1325), + [anon_sym_base] = ACTIONS(1323), [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1319), + [anon_sym_unchecked] = ACTIONS(1317), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1721), + [anon_sym_throw] = ACTIONS(1591), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1723), - [anon_sym_DOT_DOT] = ACTIONS(1725), + [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), @@ -214292,19 +214178,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1333), + [anon_sym_stackalloc] = ACTIONS(1331), [anon_sym_sizeof] = ACTIONS(129), [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(1335), - [anon_sym___reftype] = ACTIONS(1337), - [anon_sym___refvalue] = ACTIONS(1339), + [anon_sym___makeref] = ACTIONS(1333), + [anon_sym___reftype] = ACTIONS(1335), + [anon_sym___refvalue] = ACTIONS(1337), [sym_null_literal] = ACTIONS(139), [anon_sym_SQUOTE] = ACTIONS(141), [sym_integer_literal] = ACTIONS(139), [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1341), + [aux_sym_preproc_if_token1] = ACTIONS(1339), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -214321,84 +214207,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [1021] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2762), - [sym__name] = STATE(5893), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2316), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(3163), - [sym_non_lvalue_expression] = STATE(3438), - [sym_lvalue_expression] = STATE(3391), - [sym__expression_statement_expression] = STATE(3362), - [sym_assignment_expression] = STATE(3449), - [sym_binary_expression] = STATE(3362), - [sym_postfix_unary_expression] = STATE(3449), - [sym_prefix_unary_expression] = STATE(3449), - [sym__pointer_indirection_expression] = STATE(2747), - [sym_query_expression] = STATE(3362), - [sym_from_clause] = STATE(6155), - [sym_conditional_expression] = STATE(3362), - [sym_conditional_access_expression] = STATE(3362), - [sym_as_expression] = STATE(3362), - [sym_is_expression] = STATE(3362), - [sym_is_pattern_expression] = STATE(3362), - [sym_cast_expression] = STATE(3362), - [sym_checked_expression] = STATE(3362), - [sym_invocation_expression] = STATE(3449), - [sym_switch_expression] = STATE(3362), - [sym_await_expression] = STATE(3449), - [sym_throw_expression] = STATE(3362), - [sym_element_access_expression] = STATE(2747), - [sym_interpolated_string_expression] = STATE(3362), - [sym_member_access_expression] = STATE(2747), - [sym_object_creation_expression] = STATE(3449), - [sym_parenthesized_expression] = STATE(3449), - [sym__parenthesized_lvalue_expression] = STATE(2747), - [sym_lambda_expression] = STATE(3362), - [sym__lambda_expression_init] = STATE(7726), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3362), - [sym_anonymous_method_expression] = STATE(3362), - [sym_anonymous_object_creation_expression] = STATE(3362), - [sym_implicit_array_creation_expression] = STATE(3362), - [sym_implicit_object_creation_expression] = STATE(3362), - [sym_implicit_stackalloc_expression] = STATE(3362), - [sym_initializer_expression] = STATE(3362), - [sym_default_expression] = STATE(3362), - [sym_with_expression] = STATE(3362), - [sym_sizeof_expression] = STATE(3362), - [sym_typeof_expression] = STATE(3362), - [sym_makeref_expression] = STATE(3362), - [sym_ref_expression] = STATE(3362), - [sym_reftype_expression] = STATE(3362), - [sym_refvalue_expression] = STATE(3362), - [sym_stackalloc_expression] = STATE(3362), - [sym_range_expression] = STATE(3362), - [sym_tuple_expression] = STATE(2747), - [sym_literal] = STATE(3362), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3362), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(5152), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2196), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(5427), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3356), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3102), + [sym_postfix_unary_expression] = STATE(3079), + [sym_prefix_unary_expression] = STATE(3079), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6134), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3102), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3079), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3102), + [sym_member_access_expression] = STATE(2472), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3079), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7627), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(3102), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3102), + [sym_typeof_expression] = STATE(3102), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2472), + [sym_literal] = STATE(3102), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(1021), [sym_preproc_endregion] = STATE(1021), [sym_preproc_line] = STATE(1021), @@ -214408,47 +214294,47 @@ 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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3385), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1307), - [anon_sym_LPAREN] = ACTIONS(1711), - [anon_sym_ref] = ACTIONS(1713), - [anon_sym_LBRACE] = ACTIONS(1313), - [anon_sym_delegate] = ACTIONS(1315), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1479), + [anon_sym_LPAREN] = ACTIONS(1511), + [anon_sym_ref] = ACTIONS(1513), + [anon_sym_LBRACE] = ACTIONS(1481), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1613), + [anon_sym_new] = ACTIONS(1515), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1319), - [anon_sym_BANG] = ACTIONS(1717), - [anon_sym_TILDE] = ACTIONS(1717), - [anon_sym_PLUS_PLUS] = ACTIONS(1717), - [anon_sym_DASH_DASH] = ACTIONS(1717), + [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(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(1323), + [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(1325), + [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1319), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1721), + [anon_sym_throw] = ACTIONS(1517), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1723), - [anon_sym_DOT_DOT] = ACTIONS(1725), + [anon_sym_await] = ACTIONS(1519), + [anon_sym_DOT_DOT] = ACTIONS(1521), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -214461,19 +214347,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1333), + [anon_sym_stackalloc] = ACTIONS(127), [anon_sym_sizeof] = ACTIONS(129), [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(1335), - [anon_sym___reftype] = ACTIONS(1337), - [anon_sym___refvalue] = ACTIONS(1339), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), [sym_null_literal] = ACTIONS(139), [anon_sym_SQUOTE] = ACTIONS(141), [sym_integer_literal] = ACTIONS(139), [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1341), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -214490,84 +214376,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [1022] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2762), - [sym__name] = STATE(5910), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2247), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(3218), - [sym_non_lvalue_expression] = STATE(3438), - [sym_lvalue_expression] = STATE(3136), - [sym__expression_statement_expression] = STATE(3362), - [sym_assignment_expression] = STATE(3449), - [sym_binary_expression] = STATE(3362), - [sym_postfix_unary_expression] = STATE(3449), - [sym_prefix_unary_expression] = STATE(3449), - [sym__pointer_indirection_expression] = STATE(2747), - [sym_query_expression] = STATE(3362), - [sym_from_clause] = STATE(6171), - [sym_conditional_expression] = STATE(3362), - [sym_conditional_access_expression] = STATE(3362), - [sym_as_expression] = STATE(3362), - [sym_is_expression] = STATE(3362), - [sym_is_pattern_expression] = STATE(3362), - [sym_cast_expression] = STATE(3362), - [sym_checked_expression] = STATE(3362), - [sym_invocation_expression] = STATE(3449), - [sym_switch_expression] = STATE(3362), - [sym_await_expression] = STATE(3449), - [sym_throw_expression] = STATE(3362), - [sym_element_access_expression] = STATE(2747), - [sym_interpolated_string_expression] = STATE(3362), - [sym_member_access_expression] = STATE(2747), - [sym_object_creation_expression] = STATE(3449), - [sym_parenthesized_expression] = STATE(3449), - [sym__parenthesized_lvalue_expression] = STATE(2747), - [sym_lambda_expression] = STATE(3362), - [sym__lambda_expression_init] = STATE(7452), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3362), - [sym_anonymous_method_expression] = STATE(3362), - [sym_anonymous_object_creation_expression] = STATE(3362), - [sym_implicit_array_creation_expression] = STATE(3362), - [sym_implicit_object_creation_expression] = STATE(3362), - [sym_implicit_stackalloc_expression] = STATE(3362), - [sym_initializer_expression] = STATE(3362), - [sym_default_expression] = STATE(3362), - [sym_with_expression] = STATE(3362), - [sym_sizeof_expression] = STATE(3362), - [sym_typeof_expression] = STATE(3362), - [sym_makeref_expression] = STATE(3362), - [sym_ref_expression] = STATE(3362), - [sym_reftype_expression] = STATE(3362), - [sym_refvalue_expression] = STATE(3362), - [sym_stackalloc_expression] = STATE(3362), - [sym_range_expression] = STATE(3362), - [sym_tuple_expression] = STATE(2747), - [sym_literal] = STATE(3362), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3362), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(5152), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2196), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(5441), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3356), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3102), + [sym_postfix_unary_expression] = STATE(3079), + [sym_prefix_unary_expression] = STATE(3079), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6134), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3102), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3079), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3102), + [sym_member_access_expression] = STATE(2472), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3079), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7627), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(3102), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3102), + [sym_typeof_expression] = STATE(3102), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2472), + [sym_literal] = STATE(3102), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(1022), [sym_preproc_endregion] = STATE(1022), [sym_preproc_line] = STATE(1022), @@ -214577,47 +214463,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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3385), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1307), - [anon_sym_LPAREN] = ACTIONS(1309), - [anon_sym_ref] = ACTIONS(1311), - [anon_sym_LBRACE] = ACTIONS(1313), - [anon_sym_delegate] = ACTIONS(1315), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1479), + [anon_sym_LPAREN] = ACTIONS(1511), + [anon_sym_ref] = ACTIONS(1513), + [anon_sym_LBRACE] = ACTIONS(1481), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1317), + [anon_sym_new] = ACTIONS(1515), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1319), - [anon_sym_BANG] = ACTIONS(1069), - [anon_sym_TILDE] = ACTIONS(1069), - [anon_sym_PLUS_PLUS] = ACTIONS(1069), - [anon_sym_DASH_DASH] = ACTIONS(1069), + [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(1071), - [anon_sym_DASH] = ACTIONS(1071), - [anon_sym_STAR] = ACTIONS(1321), - [anon_sym_CARET] = ACTIONS(1069), - [anon_sym_AMP] = ACTIONS(1069), - [anon_sym_this] = ACTIONS(1323), + [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(1325), + [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1319), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1327), + [anon_sym_throw] = ACTIONS(1517), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1329), - [anon_sym_DOT_DOT] = ACTIONS(1331), + [anon_sym_await] = ACTIONS(1519), + [anon_sym_DOT_DOT] = ACTIONS(1521), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -214630,19 +214516,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1333), + [anon_sym_stackalloc] = ACTIONS(127), [anon_sym_sizeof] = ACTIONS(129), [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(1335), - [anon_sym___reftype] = ACTIONS(1337), - [anon_sym___refvalue] = ACTIONS(1339), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), [sym_null_literal] = ACTIONS(139), [anon_sym_SQUOTE] = ACTIONS(141), [sym_integer_literal] = ACTIONS(139), [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1341), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -214659,84 +214545,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [1023] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2762), - [sym__name] = STATE(5893), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2316), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(4729), - [sym_non_lvalue_expression] = STATE(3438), - [sym_lvalue_expression] = STATE(3391), - [sym__expression_statement_expression] = STATE(3362), - [sym_assignment_expression] = STATE(3449), - [sym_binary_expression] = STATE(3362), - [sym_postfix_unary_expression] = STATE(3449), - [sym_prefix_unary_expression] = STATE(3449), - [sym__pointer_indirection_expression] = STATE(2747), - [sym_query_expression] = STATE(3362), - [sym_from_clause] = STATE(6155), - [sym_conditional_expression] = STATE(3362), - [sym_conditional_access_expression] = STATE(3362), - [sym_as_expression] = STATE(3362), - [sym_is_expression] = STATE(3362), - [sym_is_pattern_expression] = STATE(3362), - [sym_cast_expression] = STATE(3362), - [sym_checked_expression] = STATE(3362), - [sym_invocation_expression] = STATE(3449), - [sym_switch_expression] = STATE(3362), - [sym_await_expression] = STATE(3449), - [sym_throw_expression] = STATE(3362), - [sym_element_access_expression] = STATE(2747), - [sym_interpolated_string_expression] = STATE(3362), - [sym_member_access_expression] = STATE(2747), - [sym_object_creation_expression] = STATE(3449), - [sym_parenthesized_expression] = STATE(3449), - [sym__parenthesized_lvalue_expression] = STATE(2747), - [sym_lambda_expression] = STATE(3362), - [sym__lambda_expression_init] = STATE(7726), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3362), - [sym_anonymous_method_expression] = STATE(3362), - [sym_anonymous_object_creation_expression] = STATE(3362), - [sym_implicit_array_creation_expression] = STATE(3362), - [sym_implicit_object_creation_expression] = STATE(3362), - [sym_implicit_stackalloc_expression] = STATE(3362), - [sym_initializer_expression] = STATE(3362), - [sym_default_expression] = STATE(3362), - [sym_with_expression] = STATE(3362), - [sym_sizeof_expression] = STATE(3362), - [sym_typeof_expression] = STATE(3362), - [sym_makeref_expression] = STATE(3362), - [sym_ref_expression] = STATE(3362), - [sym_reftype_expression] = STATE(3362), - [sym_refvalue_expression] = STATE(3362), - [sym_stackalloc_expression] = STATE(3362), - [sym_range_expression] = STATE(3362), - [sym_tuple_expression] = STATE(2747), - [sym_literal] = STATE(3362), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3362), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(5152), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2196), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(4513), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3356), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3102), + [sym_postfix_unary_expression] = STATE(3079), + [sym_prefix_unary_expression] = STATE(3079), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6134), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3102), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3079), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3102), + [sym_member_access_expression] = STATE(2472), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3079), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7627), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(3102), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3102), + [sym_typeof_expression] = STATE(3102), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2472), + [sym_literal] = STATE(3102), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(1023), [sym_preproc_endregion] = STATE(1023), [sym_preproc_line] = STATE(1023), @@ -214746,47 +214632,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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3385), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1307), - [anon_sym_LPAREN] = ACTIONS(1711), - [anon_sym_ref] = ACTIONS(1713), - [anon_sym_LBRACE] = ACTIONS(1313), - [anon_sym_delegate] = ACTIONS(1315), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1479), + [anon_sym_LPAREN] = ACTIONS(1511), + [anon_sym_ref] = ACTIONS(1513), + [anon_sym_LBRACE] = ACTIONS(1481), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1613), + [anon_sym_new] = ACTIONS(1515), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1319), - [anon_sym_BANG] = ACTIONS(1717), - [anon_sym_TILDE] = ACTIONS(1717), - [anon_sym_PLUS_PLUS] = ACTIONS(1717), - [anon_sym_DASH_DASH] = ACTIONS(1717), + [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(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(1323), + [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(1325), + [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1319), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1721), + [anon_sym_throw] = ACTIONS(1517), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1723), - [anon_sym_DOT_DOT] = ACTIONS(1725), + [anon_sym_await] = ACTIONS(1519), + [anon_sym_DOT_DOT] = ACTIONS(1521), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -214799,19 +214685,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1333), + [anon_sym_stackalloc] = ACTIONS(127), [anon_sym_sizeof] = ACTIONS(129), [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(1335), - [anon_sym___reftype] = ACTIONS(1337), - [anon_sym___refvalue] = ACTIONS(1339), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), [sym_null_literal] = ACTIONS(139), [anon_sym_SQUOTE] = ACTIONS(141), [sym_integer_literal] = ACTIONS(139), [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1341), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -214828,84 +214714,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [1024] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2762), - [sym__name] = STATE(5893), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2316), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(4526), - [sym_non_lvalue_expression] = STATE(3438), - [sym_lvalue_expression] = STATE(3391), - [sym__expression_statement_expression] = STATE(3362), - [sym_assignment_expression] = STATE(3449), - [sym_binary_expression] = STATE(3362), - [sym_postfix_unary_expression] = STATE(3449), - [sym_prefix_unary_expression] = STATE(3449), - [sym__pointer_indirection_expression] = STATE(2747), - [sym_query_expression] = STATE(3362), - [sym_from_clause] = STATE(6155), - [sym_conditional_expression] = STATE(3362), - [sym_conditional_access_expression] = STATE(3362), - [sym_as_expression] = STATE(3362), - [sym_is_expression] = STATE(3362), - [sym_is_pattern_expression] = STATE(3362), - [sym_cast_expression] = STATE(3362), - [sym_checked_expression] = STATE(3362), - [sym_invocation_expression] = STATE(3449), - [sym_switch_expression] = STATE(3362), - [sym_await_expression] = STATE(3449), - [sym_throw_expression] = STATE(3362), - [sym_element_access_expression] = STATE(2747), - [sym_interpolated_string_expression] = STATE(3362), - [sym_member_access_expression] = STATE(2747), - [sym_object_creation_expression] = STATE(3449), - [sym_parenthesized_expression] = STATE(3449), - [sym__parenthesized_lvalue_expression] = STATE(2747), - [sym_lambda_expression] = STATE(3362), - [sym__lambda_expression_init] = STATE(7726), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3362), - [sym_anonymous_method_expression] = STATE(3362), - [sym_anonymous_object_creation_expression] = STATE(3362), - [sym_implicit_array_creation_expression] = STATE(3362), - [sym_implicit_object_creation_expression] = STATE(3362), - [sym_implicit_stackalloc_expression] = STATE(3362), - [sym_initializer_expression] = STATE(3362), - [sym_default_expression] = STATE(3362), - [sym_with_expression] = STATE(3362), - [sym_sizeof_expression] = STATE(3362), - [sym_typeof_expression] = STATE(3362), - [sym_makeref_expression] = STATE(3362), - [sym_ref_expression] = STATE(3362), - [sym_reftype_expression] = STATE(3362), - [sym_refvalue_expression] = STATE(3362), - [sym_stackalloc_expression] = STATE(3362), - [sym_range_expression] = STATE(3362), - [sym_tuple_expression] = STATE(2747), - [sym_literal] = STATE(3362), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3362), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2416), + [sym__name] = STATE(5885), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2404), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(4134), + [sym_non_lvalue_expression] = STATE(3040), + [sym_lvalue_expression] = STATE(3115), + [sym__expression_statement_expression] = STATE(3035), + [sym_assignment_expression] = STATE(3043), + [sym_binary_expression] = STATE(3035), + [sym_postfix_unary_expression] = STATE(3043), + [sym_prefix_unary_expression] = STATE(3043), + [sym__pointer_indirection_expression] = STATE(2415), + [sym_query_expression] = STATE(3035), + [sym_from_clause] = STATE(6162), + [sym_conditional_expression] = STATE(3035), + [sym_conditional_access_expression] = STATE(3035), + [sym_as_expression] = STATE(3035), + [sym_is_expression] = STATE(3035), + [sym_is_pattern_expression] = STATE(3035), + [sym_cast_expression] = STATE(3035), + [sym_checked_expression] = STATE(3035), + [sym_invocation_expression] = STATE(3043), + [sym_switch_expression] = STATE(3035), + [sym_await_expression] = STATE(3043), + [sym_throw_expression] = STATE(3035), + [sym_element_access_expression] = STATE(2415), + [sym_interpolated_string_expression] = STATE(3035), + [sym_member_access_expression] = STATE(2415), + [sym_object_creation_expression] = STATE(3043), + [sym_parenthesized_expression] = STATE(3043), + [sym__parenthesized_lvalue_expression] = STATE(2415), + [sym_lambda_expression] = STATE(3035), + [sym__lambda_expression_init] = STATE(7416), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3035), + [sym_anonymous_method_expression] = STATE(3035), + [sym_anonymous_object_creation_expression] = STATE(3035), + [sym_implicit_array_creation_expression] = STATE(3035), + [sym_implicit_object_creation_expression] = STATE(3035), + [sym_implicit_stackalloc_expression] = STATE(3035), + [sym_initializer_expression] = STATE(3035), + [sym_default_expression] = STATE(3035), + [sym_with_expression] = STATE(3035), + [sym_sizeof_expression] = STATE(3035), + [sym_typeof_expression] = STATE(3035), + [sym_makeref_expression] = STATE(3035), + [sym_ref_expression] = STATE(3035), + [sym_reftype_expression] = STATE(3035), + [sym_refvalue_expression] = STATE(3035), + [sym_stackalloc_expression] = STATE(3035), + [sym_range_expression] = STATE(3035), + [sym_tuple_expression] = STATE(2415), + [sym_literal] = STATE(3035), + [sym_character_literal] = STATE(3037), + [sym_string_literal] = STATE(3037), + [sym_raw_string_literal] = STATE(3037), + [sym_boolean_literal] = STATE(3037), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3035), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(1024), [sym_preproc_endregion] = STATE(1024), [sym_preproc_line] = STATE(1024), @@ -214915,47 +214801,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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3385), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3455), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1307), - [anon_sym_LPAREN] = ACTIONS(1711), - [anon_sym_ref] = ACTIONS(1713), - [anon_sym_LBRACE] = ACTIONS(1313), - [anon_sym_delegate] = ACTIONS(1315), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1239), + [anon_sym_LPAREN] = ACTIONS(2261), + [anon_sym_ref] = ACTIONS(2263), + [anon_sym_LBRACE] = ACTIONS(1245), + [anon_sym_delegate] = ACTIONS(1247), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1613), + [anon_sym_new] = ACTIONS(1935), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1319), - [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(77), - [anon_sym_false] = ACTIONS(77), - [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(1323), + [anon_sym_checked] = ACTIONS(1251), + [anon_sym_BANG] = ACTIONS(2267), + [anon_sym_TILDE] = ACTIONS(2267), + [anon_sym_PLUS_PLUS] = ACTIONS(2267), + [anon_sym_DASH_DASH] = ACTIONS(2267), + [anon_sym_true] = ACTIONS(1257), + [anon_sym_false] = ACTIONS(1257), + [anon_sym_PLUS] = ACTIONS(2265), + [anon_sym_DASH] = ACTIONS(2265), + [anon_sym_STAR] = ACTIONS(1941), + [anon_sym_CARET] = ACTIONS(2267), + [anon_sym_AMP] = ACTIONS(2267), + [anon_sym_this] = ACTIONS(1261), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1325), + [anon_sym_base] = ACTIONS(1263), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1319), + [sym_predefined_type] = ACTIONS(1265), + [anon_sym_unchecked] = ACTIONS(1251), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1721), + [anon_sym_default] = ACTIONS(1267), + [anon_sym_throw] = ACTIONS(2269), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1723), - [anon_sym_DOT_DOT] = ACTIONS(1725), + [anon_sym_await] = ACTIONS(2271), + [anon_sym_DOT_DOT] = ACTIONS(2273), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -214968,19 +214854,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1333), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(1335), - [anon_sym___reftype] = ACTIONS(1337), - [anon_sym___refvalue] = ACTIONS(1339), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1341), + [anon_sym_stackalloc] = ACTIONS(1275), + [anon_sym_sizeof] = ACTIONS(1277), + [anon_sym_typeof] = ACTIONS(1279), + [anon_sym___makeref] = ACTIONS(1281), + [anon_sym___reftype] = ACTIONS(1283), + [anon_sym___refvalue] = ACTIONS(1285), + [sym_null_literal] = ACTIONS(1287), + [anon_sym_SQUOTE] = ACTIONS(1289), + [sym_integer_literal] = ACTIONS(1287), + [sym_real_literal] = ACTIONS(1291), + [anon_sym_DQUOTE] = ACTIONS(1293), + [sym_verbatim_string_literal] = ACTIONS(1291), + [aux_sym_preproc_if_token1] = ACTIONS(1295), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -214991,90 +214877,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(151), - [sym_interpolation_verbatim_start] = ACTIONS(153), - [sym_interpolation_raw_start] = ACTIONS(155), - [sym_raw_string_start] = ACTIONS(157), + [sym_interpolation_regular_start] = ACTIONS(1297), + [sym_interpolation_verbatim_start] = ACTIONS(1299), + [sym_interpolation_raw_start] = ACTIONS(1301), + [sym_raw_string_start] = ACTIONS(1303), }, [1025] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2610), - [sym__name] = STATE(5896), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2384), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(4659), - [sym_non_lvalue_expression] = STATE(3277), - [sym_lvalue_expression] = STATE(3392), - [sym__expression_statement_expression] = STATE(3228), - [sym_assignment_expression] = STATE(3289), - [sym_binary_expression] = STATE(3228), - [sym_postfix_unary_expression] = STATE(3289), - [sym_prefix_unary_expression] = STATE(3289), - [sym__pointer_indirection_expression] = STATE(2609), - [sym_query_expression] = STATE(3228), - [sym_from_clause] = STATE(6173), - [sym_conditional_expression] = STATE(3228), - [sym_conditional_access_expression] = STATE(3228), - [sym_as_expression] = STATE(3228), - [sym_is_expression] = STATE(3228), - [sym_is_pattern_expression] = STATE(3228), - [sym_cast_expression] = STATE(3228), - [sym_checked_expression] = STATE(3228), - [sym_invocation_expression] = STATE(3289), - [sym_switch_expression] = STATE(3228), - [sym_await_expression] = STATE(3289), - [sym_throw_expression] = STATE(3228), - [sym_element_access_expression] = STATE(2609), - [sym_interpolated_string_expression] = STATE(3228), - [sym_member_access_expression] = STATE(2609), - [sym_object_creation_expression] = STATE(3289), - [sym_parenthesized_expression] = STATE(3289), - [sym__parenthesized_lvalue_expression] = STATE(2609), - [sym_lambda_expression] = STATE(3228), - [sym__lambda_expression_init] = STATE(7334), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3228), - [sym_anonymous_method_expression] = STATE(3228), - [sym_anonymous_object_creation_expression] = STATE(3228), - [sym_implicit_array_creation_expression] = STATE(3228), - [sym_implicit_object_creation_expression] = STATE(3228), - [sym_implicit_stackalloc_expression] = STATE(3228), - [sym_initializer_expression] = STATE(3228), - [sym_default_expression] = STATE(3228), - [sym_with_expression] = STATE(3228), - [sym_sizeof_expression] = STATE(3228), - [sym_typeof_expression] = STATE(3228), - [sym_makeref_expression] = STATE(3228), - [sym_ref_expression] = STATE(3228), - [sym_reftype_expression] = STATE(3228), - [sym_refvalue_expression] = STATE(3228), - [sym_stackalloc_expression] = STATE(3228), - [sym_range_expression] = STATE(3228), - [sym_tuple_expression] = STATE(2609), - [sym_literal] = STATE(3228), - [sym_character_literal] = STATE(3278), - [sym_string_literal] = STATE(3278), - [sym_raw_string_literal] = STATE(3278), - [sym_boolean_literal] = STATE(3278), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3228), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2416), + [sym__name] = STATE(5885), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2404), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(2893), + [sym_non_lvalue_expression] = STATE(3040), + [sym_lvalue_expression] = STATE(3115), + [sym__expression_statement_expression] = STATE(3035), + [sym_assignment_expression] = STATE(3043), + [sym_binary_expression] = STATE(3035), + [sym_postfix_unary_expression] = STATE(3043), + [sym_prefix_unary_expression] = STATE(3043), + [sym__pointer_indirection_expression] = STATE(2415), + [sym_query_expression] = STATE(3035), + [sym_from_clause] = STATE(6162), + [sym_conditional_expression] = STATE(3035), + [sym_conditional_access_expression] = STATE(3035), + [sym_as_expression] = STATE(3035), + [sym_is_expression] = STATE(3035), + [sym_is_pattern_expression] = STATE(3035), + [sym_cast_expression] = STATE(3035), + [sym_checked_expression] = STATE(3035), + [sym_invocation_expression] = STATE(3043), + [sym_switch_expression] = STATE(3035), + [sym_await_expression] = STATE(3043), + [sym_throw_expression] = STATE(3035), + [sym_element_access_expression] = STATE(2415), + [sym_interpolated_string_expression] = STATE(3035), + [sym_member_access_expression] = STATE(2415), + [sym_object_creation_expression] = STATE(3043), + [sym_parenthesized_expression] = STATE(3043), + [sym__parenthesized_lvalue_expression] = STATE(2415), + [sym_lambda_expression] = STATE(3035), + [sym__lambda_expression_init] = STATE(7416), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3035), + [sym_anonymous_method_expression] = STATE(3035), + [sym_anonymous_object_creation_expression] = STATE(3035), + [sym_implicit_array_creation_expression] = STATE(3035), + [sym_implicit_object_creation_expression] = STATE(3035), + [sym_implicit_stackalloc_expression] = STATE(3035), + [sym_initializer_expression] = STATE(3035), + [sym_default_expression] = STATE(3035), + [sym_with_expression] = STATE(3035), + [sym_sizeof_expression] = STATE(3035), + [sym_typeof_expression] = STATE(3035), + [sym_makeref_expression] = STATE(3035), + [sym_ref_expression] = STATE(3035), + [sym_reftype_expression] = STATE(3035), + [sym_refvalue_expression] = STATE(3035), + [sym_stackalloc_expression] = STATE(3035), + [sym_range_expression] = STATE(3035), + [sym_tuple_expression] = STATE(2415), + [sym_literal] = STATE(3035), + [sym_character_literal] = STATE(3037), + [sym_string_literal] = STATE(3037), + [sym_raw_string_literal] = STATE(3037), + [sym_boolean_literal] = STATE(3037), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3035), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(1025), [sym_preproc_endregion] = STATE(1025), [sym_preproc_line] = STATE(1025), @@ -215084,47 +214970,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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3396), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3455), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1153), - [anon_sym_LPAREN] = ACTIONS(1859), - [anon_sym_ref] = ACTIONS(1861), - [anon_sym_LBRACE] = ACTIONS(1159), - [anon_sym_delegate] = ACTIONS(1161), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1239), + [anon_sym_LPAREN] = ACTIONS(2261), + [anon_sym_ref] = ACTIONS(2263), + [anon_sym_LBRACE] = ACTIONS(1245), + [anon_sym_delegate] = ACTIONS(1247), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1863), + [anon_sym_new] = ACTIONS(1935), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1167), - [anon_sym_BANG] = ACTIONS(1867), - [anon_sym_TILDE] = ACTIONS(1867), - [anon_sym_PLUS_PLUS] = ACTIONS(1867), - [anon_sym_DASH_DASH] = ACTIONS(1867), - [anon_sym_true] = ACTIONS(1173), - [anon_sym_false] = ACTIONS(1173), - [anon_sym_PLUS] = ACTIONS(1865), - [anon_sym_DASH] = ACTIONS(1865), - [anon_sym_STAR] = ACTIONS(1869), - [anon_sym_CARET] = ACTIONS(1867), - [anon_sym_AMP] = ACTIONS(1867), - [anon_sym_this] = ACTIONS(1177), + [anon_sym_checked] = ACTIONS(1251), + [anon_sym_BANG] = ACTIONS(2267), + [anon_sym_TILDE] = ACTIONS(2267), + [anon_sym_PLUS_PLUS] = ACTIONS(2267), + [anon_sym_DASH_DASH] = ACTIONS(2267), + [anon_sym_true] = ACTIONS(1257), + [anon_sym_false] = ACTIONS(1257), + [anon_sym_PLUS] = ACTIONS(2265), + [anon_sym_DASH] = ACTIONS(2265), + [anon_sym_STAR] = ACTIONS(1941), + [anon_sym_CARET] = ACTIONS(2267), + [anon_sym_AMP] = ACTIONS(2267), + [anon_sym_this] = ACTIONS(1261), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1179), + [anon_sym_base] = ACTIONS(1263), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1181), - [anon_sym_unchecked] = ACTIONS(1167), + [sym_predefined_type] = ACTIONS(1265), + [anon_sym_unchecked] = ACTIONS(1251), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1183), - [anon_sym_throw] = ACTIONS(1871), + [anon_sym_default] = ACTIONS(1267), + [anon_sym_throw] = ACTIONS(2269), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1873), - [anon_sym_DOT_DOT] = ACTIONS(1875), + [anon_sym_await] = ACTIONS(2271), + [anon_sym_DOT_DOT] = ACTIONS(2273), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -215137,19 +215023,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1191), - [anon_sym_sizeof] = ACTIONS(1193), - [anon_sym_typeof] = ACTIONS(1195), - [anon_sym___makeref] = ACTIONS(1197), - [anon_sym___reftype] = ACTIONS(1199), - [anon_sym___refvalue] = ACTIONS(1201), - [sym_null_literal] = ACTIONS(1203), - [anon_sym_SQUOTE] = ACTIONS(1205), - [sym_integer_literal] = ACTIONS(1203), - [sym_real_literal] = ACTIONS(1207), - [anon_sym_DQUOTE] = ACTIONS(1209), - [sym_verbatim_string_literal] = ACTIONS(1207), - [aux_sym_preproc_if_token1] = ACTIONS(1211), + [anon_sym_stackalloc] = ACTIONS(1275), + [anon_sym_sizeof] = ACTIONS(1277), + [anon_sym_typeof] = ACTIONS(1279), + [anon_sym___makeref] = ACTIONS(1281), + [anon_sym___reftype] = ACTIONS(1283), + [anon_sym___refvalue] = ACTIONS(1285), + [sym_null_literal] = ACTIONS(1287), + [anon_sym_SQUOTE] = ACTIONS(1289), + [sym_integer_literal] = ACTIONS(1287), + [sym_real_literal] = ACTIONS(1291), + [anon_sym_DQUOTE] = ACTIONS(1293), + [sym_verbatim_string_literal] = ACTIONS(1291), + [aux_sym_preproc_if_token1] = ACTIONS(1295), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -215160,90 +215046,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1213), - [sym_interpolation_verbatim_start] = ACTIONS(1215), - [sym_interpolation_raw_start] = ACTIONS(1217), - [sym_raw_string_start] = ACTIONS(1219), + [sym_interpolation_regular_start] = ACTIONS(1297), + [sym_interpolation_verbatim_start] = ACTIONS(1299), + [sym_interpolation_raw_start] = ACTIONS(1301), + [sym_raw_string_start] = ACTIONS(1303), }, [1026] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2610), - [sym__name] = STATE(5896), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2384), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(3139), - [sym_non_lvalue_expression] = STATE(3277), - [sym_lvalue_expression] = STATE(3392), - [sym__expression_statement_expression] = STATE(3228), - [sym_assignment_expression] = STATE(3289), - [sym_binary_expression] = STATE(3228), - [sym_postfix_unary_expression] = STATE(3289), - [sym_prefix_unary_expression] = STATE(3289), - [sym__pointer_indirection_expression] = STATE(2609), - [sym_query_expression] = STATE(3228), - [sym_from_clause] = STATE(6173), - [sym_conditional_expression] = STATE(3228), - [sym_conditional_access_expression] = STATE(3228), - [sym_as_expression] = STATE(3228), - [sym_is_expression] = STATE(3228), - [sym_is_pattern_expression] = STATE(3228), - [sym_cast_expression] = STATE(3228), - [sym_checked_expression] = STATE(3228), - [sym_invocation_expression] = STATE(3289), - [sym_switch_expression] = STATE(3228), - [sym_await_expression] = STATE(3289), - [sym_throw_expression] = STATE(3228), - [sym_element_access_expression] = STATE(2609), - [sym_interpolated_string_expression] = STATE(3228), - [sym_member_access_expression] = STATE(2609), - [sym_object_creation_expression] = STATE(3289), - [sym_parenthesized_expression] = STATE(3289), - [sym__parenthesized_lvalue_expression] = STATE(2609), - [sym_lambda_expression] = STATE(3228), - [sym__lambda_expression_init] = STATE(7334), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3228), - [sym_anonymous_method_expression] = STATE(3228), - [sym_anonymous_object_creation_expression] = STATE(3228), - [sym_implicit_array_creation_expression] = STATE(3228), - [sym_implicit_object_creation_expression] = STATE(3228), - [sym_implicit_stackalloc_expression] = STATE(3228), - [sym_initializer_expression] = STATE(3228), - [sym_default_expression] = STATE(3228), - [sym_with_expression] = STATE(3228), - [sym_sizeof_expression] = STATE(3228), - [sym_typeof_expression] = STATE(3228), - [sym_makeref_expression] = STATE(3228), - [sym_ref_expression] = STATE(3228), - [sym_reftype_expression] = STATE(3228), - [sym_refvalue_expression] = STATE(3228), - [sym_stackalloc_expression] = STATE(3228), - [sym_range_expression] = STATE(3228), - [sym_tuple_expression] = STATE(2609), - [sym_literal] = STATE(3228), - [sym_character_literal] = STATE(3278), - [sym_string_literal] = STATE(3278), - [sym_raw_string_literal] = STATE(3278), - [sym_boolean_literal] = STATE(3278), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3228), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2416), + [sym__name] = STATE(5885), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2404), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(4136), + [sym_non_lvalue_expression] = STATE(3040), + [sym_lvalue_expression] = STATE(3115), + [sym__expression_statement_expression] = STATE(3035), + [sym_assignment_expression] = STATE(3043), + [sym_binary_expression] = STATE(3035), + [sym_postfix_unary_expression] = STATE(3043), + [sym_prefix_unary_expression] = STATE(3043), + [sym__pointer_indirection_expression] = STATE(2415), + [sym_query_expression] = STATE(3035), + [sym_from_clause] = STATE(6162), + [sym_conditional_expression] = STATE(3035), + [sym_conditional_access_expression] = STATE(3035), + [sym_as_expression] = STATE(3035), + [sym_is_expression] = STATE(3035), + [sym_is_pattern_expression] = STATE(3035), + [sym_cast_expression] = STATE(3035), + [sym_checked_expression] = STATE(3035), + [sym_invocation_expression] = STATE(3043), + [sym_switch_expression] = STATE(3035), + [sym_await_expression] = STATE(3043), + [sym_throw_expression] = STATE(3035), + [sym_element_access_expression] = STATE(2415), + [sym_interpolated_string_expression] = STATE(3035), + [sym_member_access_expression] = STATE(2415), + [sym_object_creation_expression] = STATE(3043), + [sym_parenthesized_expression] = STATE(3043), + [sym__parenthesized_lvalue_expression] = STATE(2415), + [sym_lambda_expression] = STATE(3035), + [sym__lambda_expression_init] = STATE(7416), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3035), + [sym_anonymous_method_expression] = STATE(3035), + [sym_anonymous_object_creation_expression] = STATE(3035), + [sym_implicit_array_creation_expression] = STATE(3035), + [sym_implicit_object_creation_expression] = STATE(3035), + [sym_implicit_stackalloc_expression] = STATE(3035), + [sym_initializer_expression] = STATE(3035), + [sym_default_expression] = STATE(3035), + [sym_with_expression] = STATE(3035), + [sym_sizeof_expression] = STATE(3035), + [sym_typeof_expression] = STATE(3035), + [sym_makeref_expression] = STATE(3035), + [sym_ref_expression] = STATE(3035), + [sym_reftype_expression] = STATE(3035), + [sym_refvalue_expression] = STATE(3035), + [sym_stackalloc_expression] = STATE(3035), + [sym_range_expression] = STATE(3035), + [sym_tuple_expression] = STATE(2415), + [sym_literal] = STATE(3035), + [sym_character_literal] = STATE(3037), + [sym_string_literal] = STATE(3037), + [sym_raw_string_literal] = STATE(3037), + [sym_boolean_literal] = STATE(3037), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3035), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(1026), [sym_preproc_endregion] = STATE(1026), [sym_preproc_line] = STATE(1026), @@ -215253,47 +215139,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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3396), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3455), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1153), - [anon_sym_LPAREN] = ACTIONS(1859), - [anon_sym_ref] = ACTIONS(1861), - [anon_sym_LBRACE] = ACTIONS(1159), - [anon_sym_delegate] = ACTIONS(1161), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1239), + [anon_sym_LPAREN] = ACTIONS(2261), + [anon_sym_ref] = ACTIONS(2263), + [anon_sym_LBRACE] = ACTIONS(1245), + [anon_sym_delegate] = ACTIONS(1247), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1863), + [anon_sym_new] = ACTIONS(1935), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1167), - [anon_sym_BANG] = ACTIONS(1867), - [anon_sym_TILDE] = ACTIONS(1867), - [anon_sym_PLUS_PLUS] = ACTIONS(1867), - [anon_sym_DASH_DASH] = ACTIONS(1867), - [anon_sym_true] = ACTIONS(1173), - [anon_sym_false] = ACTIONS(1173), - [anon_sym_PLUS] = ACTIONS(1865), - [anon_sym_DASH] = ACTIONS(1865), - [anon_sym_STAR] = ACTIONS(1869), - [anon_sym_CARET] = ACTIONS(1867), - [anon_sym_AMP] = ACTIONS(1867), - [anon_sym_this] = ACTIONS(1177), + [anon_sym_checked] = ACTIONS(1251), + [anon_sym_BANG] = ACTIONS(2267), + [anon_sym_TILDE] = ACTIONS(2267), + [anon_sym_PLUS_PLUS] = ACTIONS(2267), + [anon_sym_DASH_DASH] = ACTIONS(2267), + [anon_sym_true] = ACTIONS(1257), + [anon_sym_false] = ACTIONS(1257), + [anon_sym_PLUS] = ACTIONS(2265), + [anon_sym_DASH] = ACTIONS(2265), + [anon_sym_STAR] = ACTIONS(1941), + [anon_sym_CARET] = ACTIONS(2267), + [anon_sym_AMP] = ACTIONS(2267), + [anon_sym_this] = ACTIONS(1261), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1179), + [anon_sym_base] = ACTIONS(1263), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1181), - [anon_sym_unchecked] = ACTIONS(1167), + [sym_predefined_type] = ACTIONS(1265), + [anon_sym_unchecked] = ACTIONS(1251), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1183), - [anon_sym_throw] = ACTIONS(1871), + [anon_sym_default] = ACTIONS(1267), + [anon_sym_throw] = ACTIONS(2269), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1873), - [anon_sym_DOT_DOT] = ACTIONS(1875), + [anon_sym_await] = ACTIONS(2271), + [anon_sym_DOT_DOT] = ACTIONS(2273), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -215306,19 +215192,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1191), - [anon_sym_sizeof] = ACTIONS(1193), - [anon_sym_typeof] = ACTIONS(1195), - [anon_sym___makeref] = ACTIONS(1197), - [anon_sym___reftype] = ACTIONS(1199), - [anon_sym___refvalue] = ACTIONS(1201), - [sym_null_literal] = ACTIONS(1203), - [anon_sym_SQUOTE] = ACTIONS(1205), - [sym_integer_literal] = ACTIONS(1203), - [sym_real_literal] = ACTIONS(1207), - [anon_sym_DQUOTE] = ACTIONS(1209), - [sym_verbatim_string_literal] = ACTIONS(1207), - [aux_sym_preproc_if_token1] = ACTIONS(1211), + [anon_sym_stackalloc] = ACTIONS(1275), + [anon_sym_sizeof] = ACTIONS(1277), + [anon_sym_typeof] = ACTIONS(1279), + [anon_sym___makeref] = ACTIONS(1281), + [anon_sym___reftype] = ACTIONS(1283), + [anon_sym___refvalue] = ACTIONS(1285), + [sym_null_literal] = ACTIONS(1287), + [anon_sym_SQUOTE] = ACTIONS(1289), + [sym_integer_literal] = ACTIONS(1287), + [sym_real_literal] = ACTIONS(1291), + [anon_sym_DQUOTE] = ACTIONS(1293), + [sym_verbatim_string_literal] = ACTIONS(1291), + [aux_sym_preproc_if_token1] = ACTIONS(1295), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -215329,90 +215215,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1213), - [sym_interpolation_verbatim_start] = ACTIONS(1215), - [sym_interpolation_raw_start] = ACTIONS(1217), - [sym_raw_string_start] = ACTIONS(1219), + [sym_interpolation_regular_start] = ACTIONS(1297), + [sym_interpolation_verbatim_start] = ACTIONS(1299), + [sym_interpolation_raw_start] = ACTIONS(1301), + [sym_raw_string_start] = ACTIONS(1303), }, [1027] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2610), - [sym__name] = STATE(5871), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2319), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(4352), - [sym_non_lvalue_expression] = STATE(3277), - [sym_lvalue_expression] = STATE(3280), - [sym__expression_statement_expression] = STATE(3228), - [sym_assignment_expression] = STATE(3289), - [sym_binary_expression] = STATE(3228), - [sym_postfix_unary_expression] = STATE(3289), - [sym_prefix_unary_expression] = STATE(3289), - [sym__pointer_indirection_expression] = STATE(2609), - [sym_query_expression] = STATE(3228), - [sym_from_clause] = STATE(6177), - [sym_conditional_expression] = STATE(3228), - [sym_conditional_access_expression] = STATE(3228), - [sym_as_expression] = STATE(3228), - [sym_is_expression] = STATE(3228), - [sym_is_pattern_expression] = STATE(3228), - [sym_cast_expression] = STATE(3228), - [sym_checked_expression] = STATE(3228), - [sym_invocation_expression] = STATE(3289), - [sym_switch_expression] = STATE(3228), - [sym_await_expression] = STATE(3289), - [sym_throw_expression] = STATE(3228), - [sym_element_access_expression] = STATE(2609), - [sym_interpolated_string_expression] = STATE(3228), - [sym_member_access_expression] = STATE(2609), - [sym_object_creation_expression] = STATE(3289), - [sym_parenthesized_expression] = STATE(3289), - [sym__parenthesized_lvalue_expression] = STATE(2609), - [sym_lambda_expression] = STATE(3228), - [sym__lambda_expression_init] = STATE(7636), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3228), - [sym_anonymous_method_expression] = STATE(3228), - [sym_anonymous_object_creation_expression] = STATE(3228), - [sym_implicit_array_creation_expression] = STATE(3228), - [sym_implicit_object_creation_expression] = STATE(3228), - [sym_implicit_stackalloc_expression] = STATE(3228), - [sym_initializer_expression] = STATE(3228), - [sym_default_expression] = STATE(3228), - [sym_with_expression] = STATE(3228), - [sym_sizeof_expression] = STATE(3228), - [sym_typeof_expression] = STATE(3228), - [sym_makeref_expression] = STATE(3228), - [sym_ref_expression] = STATE(3228), - [sym_reftype_expression] = STATE(3228), - [sym_refvalue_expression] = STATE(3228), - [sym_stackalloc_expression] = STATE(3228), - [sym_range_expression] = STATE(3228), - [sym_tuple_expression] = STATE(2609), - [sym_literal] = STATE(3228), - [sym_character_literal] = STATE(3278), - [sym_string_literal] = STATE(3278), - [sym_raw_string_literal] = STATE(3278), - [sym_boolean_literal] = STATE(3278), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3228), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2603), + [sym__name] = STATE(5869), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2367), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(4690), + [sym_non_lvalue_expression] = STATE(3220), + [sym_lvalue_expression] = STATE(3377), + [sym__expression_statement_expression] = STATE(3236), + [sym_assignment_expression] = STATE(3221), + [sym_binary_expression] = STATE(3236), + [sym_postfix_unary_expression] = STATE(3221), + [sym_prefix_unary_expression] = STATE(3221), + [sym__pointer_indirection_expression] = STATE(2602), + [sym_query_expression] = STATE(3236), + [sym_from_clause] = STATE(6128), + [sym_conditional_expression] = STATE(3236), + [sym_conditional_access_expression] = STATE(3236), + [sym_as_expression] = STATE(3236), + [sym_is_expression] = STATE(3236), + [sym_is_pattern_expression] = STATE(3236), + [sym_cast_expression] = STATE(3236), + [sym_checked_expression] = STATE(3236), + [sym_invocation_expression] = STATE(3221), + [sym_switch_expression] = STATE(3236), + [sym_await_expression] = STATE(3221), + [sym_throw_expression] = STATE(3236), + [sym_element_access_expression] = STATE(2602), + [sym_interpolated_string_expression] = STATE(3236), + [sym_member_access_expression] = STATE(2602), + [sym_object_creation_expression] = STATE(3221), + [sym_parenthesized_expression] = STATE(3221), + [sym__parenthesized_lvalue_expression] = STATE(2602), + [sym_lambda_expression] = STATE(3236), + [sym__lambda_expression_init] = STATE(7632), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3236), + [sym_anonymous_method_expression] = STATE(3236), + [sym_anonymous_object_creation_expression] = STATE(3236), + [sym_implicit_array_creation_expression] = STATE(3236), + [sym_implicit_object_creation_expression] = STATE(3236), + [sym_implicit_stackalloc_expression] = STATE(3236), + [sym_initializer_expression] = STATE(3236), + [sym_default_expression] = STATE(3236), + [sym_with_expression] = STATE(3236), + [sym_sizeof_expression] = STATE(3236), + [sym_typeof_expression] = STATE(3236), + [sym_makeref_expression] = STATE(3236), + [sym_ref_expression] = STATE(3236), + [sym_reftype_expression] = STATE(3236), + [sym_refvalue_expression] = STATE(3236), + [sym_stackalloc_expression] = STATE(3236), + [sym_range_expression] = STATE(3236), + [sym_tuple_expression] = STATE(2602), + [sym_literal] = STATE(3236), + [sym_character_literal] = STATE(3272), + [sym_string_literal] = STATE(3272), + [sym_raw_string_literal] = STATE(3272), + [sym_boolean_literal] = STATE(3272), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3236), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(1027), [sym_preproc_endregion] = STATE(1027), [sym_preproc_line] = STATE(1027), @@ -215422,47 +215308,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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3396), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3379), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1153), - [anon_sym_LPAREN] = ACTIONS(1559), - [anon_sym_ref] = ACTIONS(1561), - [anon_sym_LBRACE] = ACTIONS(1159), - [anon_sym_delegate] = ACTIONS(1161), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1149), + [anon_sym_LPAREN] = ACTIONS(1913), + [anon_sym_ref] = ACTIONS(1915), + [anon_sym_LBRACE] = ACTIONS(1155), + [anon_sym_delegate] = ACTIONS(1157), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1529), + [anon_sym_new] = ACTIONS(1917), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1167), - [anon_sym_BANG] = ACTIONS(1565), - [anon_sym_TILDE] = ACTIONS(1565), - [anon_sym_PLUS_PLUS] = ACTIONS(1565), - [anon_sym_DASH_DASH] = ACTIONS(1565), - [anon_sym_true] = ACTIONS(1173), - [anon_sym_false] = ACTIONS(1173), - [anon_sym_PLUS] = ACTIONS(1563), - [anon_sym_DASH] = ACTIONS(1563), - [anon_sym_STAR] = ACTIONS(1567), - [anon_sym_CARET] = ACTIONS(1565), - [anon_sym_AMP] = ACTIONS(1565), - [anon_sym_this] = ACTIONS(1177), + [anon_sym_checked] = ACTIONS(1163), + [anon_sym_BANG] = ACTIONS(1921), + [anon_sym_TILDE] = ACTIONS(1921), + [anon_sym_PLUS_PLUS] = ACTIONS(1921), + [anon_sym_DASH_DASH] = ACTIONS(1921), + [anon_sym_true] = ACTIONS(1169), + [anon_sym_false] = ACTIONS(1169), + [anon_sym_PLUS] = ACTIONS(1919), + [anon_sym_DASH] = ACTIONS(1919), + [anon_sym_STAR] = ACTIONS(1923), + [anon_sym_CARET] = ACTIONS(1921), + [anon_sym_AMP] = ACTIONS(1921), + [anon_sym_this] = ACTIONS(1173), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1179), + [anon_sym_base] = ACTIONS(1175), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1181), - [anon_sym_unchecked] = ACTIONS(1167), + [sym_predefined_type] = ACTIONS(1177), + [anon_sym_unchecked] = ACTIONS(1163), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1183), - [anon_sym_throw] = ACTIONS(1569), + [anon_sym_default] = ACTIONS(1179), + [anon_sym_throw] = ACTIONS(1925), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1571), - [anon_sym_DOT_DOT] = ACTIONS(1573), + [anon_sym_await] = ACTIONS(1927), + [anon_sym_DOT_DOT] = ACTIONS(1929), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -215475,19 +215361,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1191), - [anon_sym_sizeof] = ACTIONS(1193), - [anon_sym_typeof] = ACTIONS(1195), - [anon_sym___makeref] = ACTIONS(1197), - [anon_sym___reftype] = ACTIONS(1199), - [anon_sym___refvalue] = ACTIONS(1201), - [sym_null_literal] = ACTIONS(1203), - [anon_sym_SQUOTE] = ACTIONS(1205), - [sym_integer_literal] = ACTIONS(1203), - [sym_real_literal] = ACTIONS(1207), - [anon_sym_DQUOTE] = ACTIONS(1209), - [sym_verbatim_string_literal] = ACTIONS(1207), - [aux_sym_preproc_if_token1] = ACTIONS(1211), + [anon_sym_stackalloc] = ACTIONS(1187), + [anon_sym_sizeof] = ACTIONS(1189), + [anon_sym_typeof] = ACTIONS(1191), + [anon_sym___makeref] = ACTIONS(1193), + [anon_sym___reftype] = ACTIONS(1195), + [anon_sym___refvalue] = ACTIONS(1197), + [sym_null_literal] = ACTIONS(1199), + [anon_sym_SQUOTE] = ACTIONS(1201), + [sym_integer_literal] = ACTIONS(1199), + [sym_real_literal] = ACTIONS(1203), + [anon_sym_DQUOTE] = ACTIONS(1205), + [sym_verbatim_string_literal] = ACTIONS(1203), + [aux_sym_preproc_if_token1] = ACTIONS(1207), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -215498,90 +215384,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1213), - [sym_interpolation_verbatim_start] = ACTIONS(1215), - [sym_interpolation_raw_start] = ACTIONS(1217), - [sym_raw_string_start] = ACTIONS(1219), + [sym_interpolation_regular_start] = ACTIONS(1209), + [sym_interpolation_verbatim_start] = ACTIONS(1211), + [sym_interpolation_raw_start] = ACTIONS(1213), + [sym_raw_string_start] = ACTIONS(1215), }, [1028] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2610), - [sym__name] = STATE(5871), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2319), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(4353), - [sym_non_lvalue_expression] = STATE(3277), - [sym_lvalue_expression] = STATE(3280), - [sym__expression_statement_expression] = STATE(3228), - [sym_assignment_expression] = STATE(3289), - [sym_binary_expression] = STATE(3228), - [sym_postfix_unary_expression] = STATE(3289), - [sym_prefix_unary_expression] = STATE(3289), - [sym__pointer_indirection_expression] = STATE(2609), - [sym_query_expression] = STATE(3228), - [sym_from_clause] = STATE(6177), - [sym_conditional_expression] = STATE(3228), - [sym_conditional_access_expression] = STATE(3228), - [sym_as_expression] = STATE(3228), - [sym_is_expression] = STATE(3228), - [sym_is_pattern_expression] = STATE(3228), - [sym_cast_expression] = STATE(3228), - [sym_checked_expression] = STATE(3228), - [sym_invocation_expression] = STATE(3289), - [sym_switch_expression] = STATE(3228), - [sym_await_expression] = STATE(3289), - [sym_throw_expression] = STATE(3228), - [sym_element_access_expression] = STATE(2609), - [sym_interpolated_string_expression] = STATE(3228), - [sym_member_access_expression] = STATE(2609), - [sym_object_creation_expression] = STATE(3289), - [sym_parenthesized_expression] = STATE(3289), - [sym__parenthesized_lvalue_expression] = STATE(2609), - [sym_lambda_expression] = STATE(3228), - [sym__lambda_expression_init] = STATE(7636), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3228), - [sym_anonymous_method_expression] = STATE(3228), - [sym_anonymous_object_creation_expression] = STATE(3228), - [sym_implicit_array_creation_expression] = STATE(3228), - [sym_implicit_object_creation_expression] = STATE(3228), - [sym_implicit_stackalloc_expression] = STATE(3228), - [sym_initializer_expression] = STATE(3228), - [sym_default_expression] = STATE(3228), - [sym_with_expression] = STATE(3228), - [sym_sizeof_expression] = STATE(3228), - [sym_typeof_expression] = STATE(3228), - [sym_makeref_expression] = STATE(3228), - [sym_ref_expression] = STATE(3228), - [sym_reftype_expression] = STATE(3228), - [sym_refvalue_expression] = STATE(3228), - [sym_stackalloc_expression] = STATE(3228), - [sym_range_expression] = STATE(3228), - [sym_tuple_expression] = STATE(2609), - [sym_literal] = STATE(3228), - [sym_character_literal] = STATE(3278), - [sym_string_literal] = STATE(3278), - [sym_raw_string_literal] = STATE(3278), - [sym_boolean_literal] = STATE(3278), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3228), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2416), + [sym__name] = STATE(5885), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2404), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(4141), + [sym_non_lvalue_expression] = STATE(3040), + [sym_lvalue_expression] = STATE(3115), + [sym__expression_statement_expression] = STATE(3035), + [sym_assignment_expression] = STATE(3043), + [sym_binary_expression] = STATE(3035), + [sym_postfix_unary_expression] = STATE(3043), + [sym_prefix_unary_expression] = STATE(3043), + [sym__pointer_indirection_expression] = STATE(2415), + [sym_query_expression] = STATE(3035), + [sym_from_clause] = STATE(6162), + [sym_conditional_expression] = STATE(3035), + [sym_conditional_access_expression] = STATE(3035), + [sym_as_expression] = STATE(3035), + [sym_is_expression] = STATE(3035), + [sym_is_pattern_expression] = STATE(3035), + [sym_cast_expression] = STATE(3035), + [sym_checked_expression] = STATE(3035), + [sym_invocation_expression] = STATE(3043), + [sym_switch_expression] = STATE(3035), + [sym_await_expression] = STATE(3043), + [sym_throw_expression] = STATE(3035), + [sym_element_access_expression] = STATE(2415), + [sym_interpolated_string_expression] = STATE(3035), + [sym_member_access_expression] = STATE(2415), + [sym_object_creation_expression] = STATE(3043), + [sym_parenthesized_expression] = STATE(3043), + [sym__parenthesized_lvalue_expression] = STATE(2415), + [sym_lambda_expression] = STATE(3035), + [sym__lambda_expression_init] = STATE(7416), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3035), + [sym_anonymous_method_expression] = STATE(3035), + [sym_anonymous_object_creation_expression] = STATE(3035), + [sym_implicit_array_creation_expression] = STATE(3035), + [sym_implicit_object_creation_expression] = STATE(3035), + [sym_implicit_stackalloc_expression] = STATE(3035), + [sym_initializer_expression] = STATE(3035), + [sym_default_expression] = STATE(3035), + [sym_with_expression] = STATE(3035), + [sym_sizeof_expression] = STATE(3035), + [sym_typeof_expression] = STATE(3035), + [sym_makeref_expression] = STATE(3035), + [sym_ref_expression] = STATE(3035), + [sym_reftype_expression] = STATE(3035), + [sym_refvalue_expression] = STATE(3035), + [sym_stackalloc_expression] = STATE(3035), + [sym_range_expression] = STATE(3035), + [sym_tuple_expression] = STATE(2415), + [sym_literal] = STATE(3035), + [sym_character_literal] = STATE(3037), + [sym_string_literal] = STATE(3037), + [sym_raw_string_literal] = STATE(3037), + [sym_boolean_literal] = STATE(3037), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3035), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(1028), [sym_preproc_endregion] = STATE(1028), [sym_preproc_line] = STATE(1028), @@ -215591,47 +215477,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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3396), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3455), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1153), - [anon_sym_LPAREN] = ACTIONS(1559), - [anon_sym_ref] = ACTIONS(1561), - [anon_sym_LBRACE] = ACTIONS(1159), - [anon_sym_delegate] = ACTIONS(1161), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1239), + [anon_sym_LPAREN] = ACTIONS(2261), + [anon_sym_ref] = ACTIONS(2263), + [anon_sym_LBRACE] = ACTIONS(1245), + [anon_sym_delegate] = ACTIONS(1247), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1529), + [anon_sym_new] = ACTIONS(1935), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1167), - [anon_sym_BANG] = ACTIONS(1565), - [anon_sym_TILDE] = ACTIONS(1565), - [anon_sym_PLUS_PLUS] = ACTIONS(1565), - [anon_sym_DASH_DASH] = ACTIONS(1565), - [anon_sym_true] = ACTIONS(1173), - [anon_sym_false] = ACTIONS(1173), - [anon_sym_PLUS] = ACTIONS(1563), - [anon_sym_DASH] = ACTIONS(1563), - [anon_sym_STAR] = ACTIONS(1567), - [anon_sym_CARET] = ACTIONS(1565), - [anon_sym_AMP] = ACTIONS(1565), - [anon_sym_this] = ACTIONS(1177), + [anon_sym_checked] = ACTIONS(1251), + [anon_sym_BANG] = ACTIONS(2267), + [anon_sym_TILDE] = ACTIONS(2267), + [anon_sym_PLUS_PLUS] = ACTIONS(2267), + [anon_sym_DASH_DASH] = ACTIONS(2267), + [anon_sym_true] = ACTIONS(1257), + [anon_sym_false] = ACTIONS(1257), + [anon_sym_PLUS] = ACTIONS(2265), + [anon_sym_DASH] = ACTIONS(2265), + [anon_sym_STAR] = ACTIONS(1941), + [anon_sym_CARET] = ACTIONS(2267), + [anon_sym_AMP] = ACTIONS(2267), + [anon_sym_this] = ACTIONS(1261), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1179), + [anon_sym_base] = ACTIONS(1263), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1181), - [anon_sym_unchecked] = ACTIONS(1167), + [sym_predefined_type] = ACTIONS(1265), + [anon_sym_unchecked] = ACTIONS(1251), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1183), - [anon_sym_throw] = ACTIONS(1569), + [anon_sym_default] = ACTIONS(1267), + [anon_sym_throw] = ACTIONS(2269), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1571), - [anon_sym_DOT_DOT] = ACTIONS(1573), + [anon_sym_await] = ACTIONS(2271), + [anon_sym_DOT_DOT] = ACTIONS(2273), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -215644,19 +215530,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1191), - [anon_sym_sizeof] = ACTIONS(1193), - [anon_sym_typeof] = ACTIONS(1195), - [anon_sym___makeref] = ACTIONS(1197), - [anon_sym___reftype] = ACTIONS(1199), - [anon_sym___refvalue] = ACTIONS(1201), - [sym_null_literal] = ACTIONS(1203), - [anon_sym_SQUOTE] = ACTIONS(1205), - [sym_integer_literal] = ACTIONS(1203), - [sym_real_literal] = ACTIONS(1207), - [anon_sym_DQUOTE] = ACTIONS(1209), - [sym_verbatim_string_literal] = ACTIONS(1207), - [aux_sym_preproc_if_token1] = ACTIONS(1211), + [anon_sym_stackalloc] = ACTIONS(1275), + [anon_sym_sizeof] = ACTIONS(1277), + [anon_sym_typeof] = ACTIONS(1279), + [anon_sym___makeref] = ACTIONS(1281), + [anon_sym___reftype] = ACTIONS(1283), + [anon_sym___refvalue] = ACTIONS(1285), + [sym_null_literal] = ACTIONS(1287), + [anon_sym_SQUOTE] = ACTIONS(1289), + [sym_integer_literal] = ACTIONS(1287), + [sym_real_literal] = ACTIONS(1291), + [anon_sym_DQUOTE] = ACTIONS(1293), + [sym_verbatim_string_literal] = ACTIONS(1291), + [aux_sym_preproc_if_token1] = ACTIONS(1295), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -215667,90 +215553,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1213), - [sym_interpolation_verbatim_start] = ACTIONS(1215), - [sym_interpolation_raw_start] = ACTIONS(1217), - [sym_raw_string_start] = ACTIONS(1219), + [sym_interpolation_regular_start] = ACTIONS(1297), + [sym_interpolation_verbatim_start] = ACTIONS(1299), + [sym_interpolation_raw_start] = ACTIONS(1301), + [sym_raw_string_start] = ACTIONS(1303), }, [1029] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2610), - [sym__name] = STATE(5871), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2319), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(4463), - [sym_non_lvalue_expression] = STATE(3277), - [sym_lvalue_expression] = STATE(3280), - [sym__expression_statement_expression] = STATE(3228), - [sym_assignment_expression] = STATE(3289), - [sym_binary_expression] = STATE(3228), - [sym_postfix_unary_expression] = STATE(3289), - [sym_prefix_unary_expression] = STATE(3289), - [sym__pointer_indirection_expression] = STATE(2609), - [sym_query_expression] = STATE(3228), - [sym_from_clause] = STATE(6177), - [sym_conditional_expression] = STATE(3228), - [sym_conditional_access_expression] = STATE(3228), - [sym_as_expression] = STATE(3228), - [sym_is_expression] = STATE(3228), - [sym_is_pattern_expression] = STATE(3228), - [sym_cast_expression] = STATE(3228), - [sym_checked_expression] = STATE(3228), - [sym_invocation_expression] = STATE(3289), - [sym_switch_expression] = STATE(3228), - [sym_await_expression] = STATE(3289), - [sym_throw_expression] = STATE(3228), - [sym_element_access_expression] = STATE(2609), - [sym_interpolated_string_expression] = STATE(3228), - [sym_member_access_expression] = STATE(2609), - [sym_object_creation_expression] = STATE(3289), - [sym_parenthesized_expression] = STATE(3289), - [sym__parenthesized_lvalue_expression] = STATE(2609), - [sym_lambda_expression] = STATE(3228), - [sym__lambda_expression_init] = STATE(7636), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3228), - [sym_anonymous_method_expression] = STATE(3228), - [sym_anonymous_object_creation_expression] = STATE(3228), - [sym_implicit_array_creation_expression] = STATE(3228), - [sym_implicit_object_creation_expression] = STATE(3228), - [sym_implicit_stackalloc_expression] = STATE(3228), - [sym_initializer_expression] = STATE(3228), - [sym_default_expression] = STATE(3228), - [sym_with_expression] = STATE(3228), - [sym_sizeof_expression] = STATE(3228), - [sym_typeof_expression] = STATE(3228), - [sym_makeref_expression] = STATE(3228), - [sym_ref_expression] = STATE(3228), - [sym_reftype_expression] = STATE(3228), - [sym_refvalue_expression] = STATE(3228), - [sym_stackalloc_expression] = STATE(3228), - [sym_range_expression] = STATE(3228), - [sym_tuple_expression] = STATE(2609), - [sym_literal] = STATE(3228), - [sym_character_literal] = STATE(3278), - [sym_string_literal] = STATE(3278), - [sym_raw_string_literal] = STATE(3278), - [sym_boolean_literal] = STATE(3278), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3228), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2416), + [sym__name] = STATE(5885), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2404), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(4164), + [sym_non_lvalue_expression] = STATE(3040), + [sym_lvalue_expression] = STATE(3115), + [sym__expression_statement_expression] = STATE(3035), + [sym_assignment_expression] = STATE(3043), + [sym_binary_expression] = STATE(3035), + [sym_postfix_unary_expression] = STATE(3043), + [sym_prefix_unary_expression] = STATE(3043), + [sym__pointer_indirection_expression] = STATE(2415), + [sym_query_expression] = STATE(3035), + [sym_from_clause] = STATE(6162), + [sym_conditional_expression] = STATE(3035), + [sym_conditional_access_expression] = STATE(3035), + [sym_as_expression] = STATE(3035), + [sym_is_expression] = STATE(3035), + [sym_is_pattern_expression] = STATE(3035), + [sym_cast_expression] = STATE(3035), + [sym_checked_expression] = STATE(3035), + [sym_invocation_expression] = STATE(3043), + [sym_switch_expression] = STATE(3035), + [sym_await_expression] = STATE(3043), + [sym_throw_expression] = STATE(3035), + [sym_element_access_expression] = STATE(2415), + [sym_interpolated_string_expression] = STATE(3035), + [sym_member_access_expression] = STATE(2415), + [sym_object_creation_expression] = STATE(3043), + [sym_parenthesized_expression] = STATE(3043), + [sym__parenthesized_lvalue_expression] = STATE(2415), + [sym_lambda_expression] = STATE(3035), + [sym__lambda_expression_init] = STATE(7416), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3035), + [sym_anonymous_method_expression] = STATE(3035), + [sym_anonymous_object_creation_expression] = STATE(3035), + [sym_implicit_array_creation_expression] = STATE(3035), + [sym_implicit_object_creation_expression] = STATE(3035), + [sym_implicit_stackalloc_expression] = STATE(3035), + [sym_initializer_expression] = STATE(3035), + [sym_default_expression] = STATE(3035), + [sym_with_expression] = STATE(3035), + [sym_sizeof_expression] = STATE(3035), + [sym_typeof_expression] = STATE(3035), + [sym_makeref_expression] = STATE(3035), + [sym_ref_expression] = STATE(3035), + [sym_reftype_expression] = STATE(3035), + [sym_refvalue_expression] = STATE(3035), + [sym_stackalloc_expression] = STATE(3035), + [sym_range_expression] = STATE(3035), + [sym_tuple_expression] = STATE(2415), + [sym_literal] = STATE(3035), + [sym_character_literal] = STATE(3037), + [sym_string_literal] = STATE(3037), + [sym_raw_string_literal] = STATE(3037), + [sym_boolean_literal] = STATE(3037), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3035), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(1029), [sym_preproc_endregion] = STATE(1029), [sym_preproc_line] = STATE(1029), @@ -215760,47 +215646,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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3396), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3455), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1153), - [anon_sym_LPAREN] = ACTIONS(1559), - [anon_sym_ref] = ACTIONS(1561), - [anon_sym_LBRACE] = ACTIONS(1159), - [anon_sym_delegate] = ACTIONS(1161), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1239), + [anon_sym_LPAREN] = ACTIONS(2261), + [anon_sym_ref] = ACTIONS(2263), + [anon_sym_LBRACE] = ACTIONS(1245), + [anon_sym_delegate] = ACTIONS(1247), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1529), + [anon_sym_new] = ACTIONS(1935), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1167), - [anon_sym_BANG] = ACTIONS(1565), - [anon_sym_TILDE] = ACTIONS(1565), - [anon_sym_PLUS_PLUS] = ACTIONS(1565), - [anon_sym_DASH_DASH] = ACTIONS(1565), - [anon_sym_true] = ACTIONS(1173), - [anon_sym_false] = ACTIONS(1173), - [anon_sym_PLUS] = ACTIONS(1563), - [anon_sym_DASH] = ACTIONS(1563), - [anon_sym_STAR] = ACTIONS(1567), - [anon_sym_CARET] = ACTIONS(1565), - [anon_sym_AMP] = ACTIONS(1565), - [anon_sym_this] = ACTIONS(1177), + [anon_sym_checked] = ACTIONS(1251), + [anon_sym_BANG] = ACTIONS(2267), + [anon_sym_TILDE] = ACTIONS(2267), + [anon_sym_PLUS_PLUS] = ACTIONS(2267), + [anon_sym_DASH_DASH] = ACTIONS(2267), + [anon_sym_true] = ACTIONS(1257), + [anon_sym_false] = ACTIONS(1257), + [anon_sym_PLUS] = ACTIONS(2265), + [anon_sym_DASH] = ACTIONS(2265), + [anon_sym_STAR] = ACTIONS(1941), + [anon_sym_CARET] = ACTIONS(2267), + [anon_sym_AMP] = ACTIONS(2267), + [anon_sym_this] = ACTIONS(1261), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1179), + [anon_sym_base] = ACTIONS(1263), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1181), - [anon_sym_unchecked] = ACTIONS(1167), + [sym_predefined_type] = ACTIONS(1265), + [anon_sym_unchecked] = ACTIONS(1251), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1183), - [anon_sym_throw] = ACTIONS(1569), + [anon_sym_default] = ACTIONS(1267), + [anon_sym_throw] = ACTIONS(2269), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1571), - [anon_sym_DOT_DOT] = ACTIONS(1573), + [anon_sym_await] = ACTIONS(2271), + [anon_sym_DOT_DOT] = ACTIONS(2273), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -215813,19 +215699,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1191), - [anon_sym_sizeof] = ACTIONS(1193), - [anon_sym_typeof] = ACTIONS(1195), - [anon_sym___makeref] = ACTIONS(1197), - [anon_sym___reftype] = ACTIONS(1199), - [anon_sym___refvalue] = ACTIONS(1201), - [sym_null_literal] = ACTIONS(1203), - [anon_sym_SQUOTE] = ACTIONS(1205), - [sym_integer_literal] = ACTIONS(1203), - [sym_real_literal] = ACTIONS(1207), - [anon_sym_DQUOTE] = ACTIONS(1209), - [sym_verbatim_string_literal] = ACTIONS(1207), - [aux_sym_preproc_if_token1] = ACTIONS(1211), + [anon_sym_stackalloc] = ACTIONS(1275), + [anon_sym_sizeof] = ACTIONS(1277), + [anon_sym_typeof] = ACTIONS(1279), + [anon_sym___makeref] = ACTIONS(1281), + [anon_sym___reftype] = ACTIONS(1283), + [anon_sym___refvalue] = ACTIONS(1285), + [sym_null_literal] = ACTIONS(1287), + [anon_sym_SQUOTE] = ACTIONS(1289), + [sym_integer_literal] = ACTIONS(1287), + [sym_real_literal] = ACTIONS(1291), + [anon_sym_DQUOTE] = ACTIONS(1293), + [sym_verbatim_string_literal] = ACTIONS(1291), + [aux_sym_preproc_if_token1] = ACTIONS(1295), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -215836,90 +215722,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1213), - [sym_interpolation_verbatim_start] = ACTIONS(1215), - [sym_interpolation_raw_start] = ACTIONS(1217), - [sym_raw_string_start] = ACTIONS(1219), + [sym_interpolation_regular_start] = ACTIONS(1297), + [sym_interpolation_verbatim_start] = ACTIONS(1299), + [sym_interpolation_raw_start] = ACTIONS(1301), + [sym_raw_string_start] = ACTIONS(1303), }, [1030] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2610), - [sym__name] = STATE(5871), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2319), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(4437), - [sym_non_lvalue_expression] = STATE(3277), - [sym_lvalue_expression] = STATE(3280), - [sym__expression_statement_expression] = STATE(3228), - [sym_assignment_expression] = STATE(3289), - [sym_binary_expression] = STATE(3228), - [sym_postfix_unary_expression] = STATE(3289), - [sym_prefix_unary_expression] = STATE(3289), - [sym__pointer_indirection_expression] = STATE(2609), - [sym_query_expression] = STATE(3228), - [sym_from_clause] = STATE(6177), - [sym_conditional_expression] = STATE(3228), - [sym_conditional_access_expression] = STATE(3228), - [sym_as_expression] = STATE(3228), - [sym_is_expression] = STATE(3228), - [sym_is_pattern_expression] = STATE(3228), - [sym_cast_expression] = STATE(3228), - [sym_checked_expression] = STATE(3228), - [sym_invocation_expression] = STATE(3289), - [sym_switch_expression] = STATE(3228), - [sym_await_expression] = STATE(3289), - [sym_throw_expression] = STATE(3228), - [sym_element_access_expression] = STATE(2609), - [sym_interpolated_string_expression] = STATE(3228), - [sym_member_access_expression] = STATE(2609), - [sym_object_creation_expression] = STATE(3289), - [sym_parenthesized_expression] = STATE(3289), - [sym__parenthesized_lvalue_expression] = STATE(2609), - [sym_lambda_expression] = STATE(3228), - [sym__lambda_expression_init] = STATE(7636), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3228), - [sym_anonymous_method_expression] = STATE(3228), - [sym_anonymous_object_creation_expression] = STATE(3228), - [sym_implicit_array_creation_expression] = STATE(3228), - [sym_implicit_object_creation_expression] = STATE(3228), - [sym_implicit_stackalloc_expression] = STATE(3228), - [sym_initializer_expression] = STATE(3228), - [sym_default_expression] = STATE(3228), - [sym_with_expression] = STATE(3228), - [sym_sizeof_expression] = STATE(3228), - [sym_typeof_expression] = STATE(3228), - [sym_makeref_expression] = STATE(3228), - [sym_ref_expression] = STATE(3228), - [sym_reftype_expression] = STATE(3228), - [sym_refvalue_expression] = STATE(3228), - [sym_stackalloc_expression] = STATE(3228), - [sym_range_expression] = STATE(3228), - [sym_tuple_expression] = STATE(2609), - [sym_literal] = STATE(3228), - [sym_character_literal] = STATE(3278), - [sym_string_literal] = STATE(3278), - [sym_raw_string_literal] = STATE(3278), - [sym_boolean_literal] = STATE(3278), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3228), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2416), + [sym__name] = STATE(5885), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2404), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(4165), + [sym_non_lvalue_expression] = STATE(3040), + [sym_lvalue_expression] = STATE(3115), + [sym__expression_statement_expression] = STATE(3035), + [sym_assignment_expression] = STATE(3043), + [sym_binary_expression] = STATE(3035), + [sym_postfix_unary_expression] = STATE(3043), + [sym_prefix_unary_expression] = STATE(3043), + [sym__pointer_indirection_expression] = STATE(2415), + [sym_query_expression] = STATE(3035), + [sym_from_clause] = STATE(6162), + [sym_conditional_expression] = STATE(3035), + [sym_conditional_access_expression] = STATE(3035), + [sym_as_expression] = STATE(3035), + [sym_is_expression] = STATE(3035), + [sym_is_pattern_expression] = STATE(3035), + [sym_cast_expression] = STATE(3035), + [sym_checked_expression] = STATE(3035), + [sym_invocation_expression] = STATE(3043), + [sym_switch_expression] = STATE(3035), + [sym_await_expression] = STATE(3043), + [sym_throw_expression] = STATE(3035), + [sym_element_access_expression] = STATE(2415), + [sym_interpolated_string_expression] = STATE(3035), + [sym_member_access_expression] = STATE(2415), + [sym_object_creation_expression] = STATE(3043), + [sym_parenthesized_expression] = STATE(3043), + [sym__parenthesized_lvalue_expression] = STATE(2415), + [sym_lambda_expression] = STATE(3035), + [sym__lambda_expression_init] = STATE(7416), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3035), + [sym_anonymous_method_expression] = STATE(3035), + [sym_anonymous_object_creation_expression] = STATE(3035), + [sym_implicit_array_creation_expression] = STATE(3035), + [sym_implicit_object_creation_expression] = STATE(3035), + [sym_implicit_stackalloc_expression] = STATE(3035), + [sym_initializer_expression] = STATE(3035), + [sym_default_expression] = STATE(3035), + [sym_with_expression] = STATE(3035), + [sym_sizeof_expression] = STATE(3035), + [sym_typeof_expression] = STATE(3035), + [sym_makeref_expression] = STATE(3035), + [sym_ref_expression] = STATE(3035), + [sym_reftype_expression] = STATE(3035), + [sym_refvalue_expression] = STATE(3035), + [sym_stackalloc_expression] = STATE(3035), + [sym_range_expression] = STATE(3035), + [sym_tuple_expression] = STATE(2415), + [sym_literal] = STATE(3035), + [sym_character_literal] = STATE(3037), + [sym_string_literal] = STATE(3037), + [sym_raw_string_literal] = STATE(3037), + [sym_boolean_literal] = STATE(3037), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3035), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(1030), [sym_preproc_endregion] = STATE(1030), [sym_preproc_line] = STATE(1030), @@ -215929,47 +215815,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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3396), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3455), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1153), - [anon_sym_LPAREN] = ACTIONS(1559), - [anon_sym_ref] = ACTIONS(1561), - [anon_sym_LBRACE] = ACTIONS(1159), - [anon_sym_delegate] = ACTIONS(1161), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1239), + [anon_sym_LPAREN] = ACTIONS(2261), + [anon_sym_ref] = ACTIONS(2263), + [anon_sym_LBRACE] = ACTIONS(1245), + [anon_sym_delegate] = ACTIONS(1247), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1529), + [anon_sym_new] = ACTIONS(1935), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1167), - [anon_sym_BANG] = ACTIONS(1565), - [anon_sym_TILDE] = ACTIONS(1565), - [anon_sym_PLUS_PLUS] = ACTIONS(1565), - [anon_sym_DASH_DASH] = ACTIONS(1565), - [anon_sym_true] = ACTIONS(1173), - [anon_sym_false] = ACTIONS(1173), - [anon_sym_PLUS] = ACTIONS(1563), - [anon_sym_DASH] = ACTIONS(1563), - [anon_sym_STAR] = ACTIONS(1567), - [anon_sym_CARET] = ACTIONS(1565), - [anon_sym_AMP] = ACTIONS(1565), - [anon_sym_this] = ACTIONS(1177), + [anon_sym_checked] = ACTIONS(1251), + [anon_sym_BANG] = ACTIONS(2267), + [anon_sym_TILDE] = ACTIONS(2267), + [anon_sym_PLUS_PLUS] = ACTIONS(2267), + [anon_sym_DASH_DASH] = ACTIONS(2267), + [anon_sym_true] = ACTIONS(1257), + [anon_sym_false] = ACTIONS(1257), + [anon_sym_PLUS] = ACTIONS(2265), + [anon_sym_DASH] = ACTIONS(2265), + [anon_sym_STAR] = ACTIONS(1941), + [anon_sym_CARET] = ACTIONS(2267), + [anon_sym_AMP] = ACTIONS(2267), + [anon_sym_this] = ACTIONS(1261), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1179), + [anon_sym_base] = ACTIONS(1263), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1181), - [anon_sym_unchecked] = ACTIONS(1167), + [sym_predefined_type] = ACTIONS(1265), + [anon_sym_unchecked] = ACTIONS(1251), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1183), - [anon_sym_throw] = ACTIONS(1569), + [anon_sym_default] = ACTIONS(1267), + [anon_sym_throw] = ACTIONS(2269), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1571), - [anon_sym_DOT_DOT] = ACTIONS(1573), + [anon_sym_await] = ACTIONS(2271), + [anon_sym_DOT_DOT] = ACTIONS(2273), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -215982,19 +215868,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1191), - [anon_sym_sizeof] = ACTIONS(1193), - [anon_sym_typeof] = ACTIONS(1195), - [anon_sym___makeref] = ACTIONS(1197), - [anon_sym___reftype] = ACTIONS(1199), - [anon_sym___refvalue] = ACTIONS(1201), - [sym_null_literal] = ACTIONS(1203), - [anon_sym_SQUOTE] = ACTIONS(1205), - [sym_integer_literal] = ACTIONS(1203), - [sym_real_literal] = ACTIONS(1207), - [anon_sym_DQUOTE] = ACTIONS(1209), - [sym_verbatim_string_literal] = ACTIONS(1207), - [aux_sym_preproc_if_token1] = ACTIONS(1211), + [anon_sym_stackalloc] = ACTIONS(1275), + [anon_sym_sizeof] = ACTIONS(1277), + [anon_sym_typeof] = ACTIONS(1279), + [anon_sym___makeref] = ACTIONS(1281), + [anon_sym___reftype] = ACTIONS(1283), + [anon_sym___refvalue] = ACTIONS(1285), + [sym_null_literal] = ACTIONS(1287), + [anon_sym_SQUOTE] = ACTIONS(1289), + [sym_integer_literal] = ACTIONS(1287), + [sym_real_literal] = ACTIONS(1291), + [anon_sym_DQUOTE] = ACTIONS(1293), + [sym_verbatim_string_literal] = ACTIONS(1291), + [aux_sym_preproc_if_token1] = ACTIONS(1295), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -216005,90 +215891,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1213), - [sym_interpolation_verbatim_start] = ACTIONS(1215), - [sym_interpolation_raw_start] = ACTIONS(1217), - [sym_raw_string_start] = ACTIONS(1219), + [sym_interpolation_regular_start] = ACTIONS(1297), + [sym_interpolation_verbatim_start] = ACTIONS(1299), + [sym_interpolation_raw_start] = ACTIONS(1301), + [sym_raw_string_start] = ACTIONS(1303), }, [1031] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2610), - [sym__name] = STATE(5871), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2319), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(4438), - [sym_non_lvalue_expression] = STATE(3277), - [sym_lvalue_expression] = STATE(3280), - [sym__expression_statement_expression] = STATE(3228), - [sym_assignment_expression] = STATE(3289), - [sym_binary_expression] = STATE(3228), - [sym_postfix_unary_expression] = STATE(3289), - [sym_prefix_unary_expression] = STATE(3289), - [sym__pointer_indirection_expression] = STATE(2609), - [sym_query_expression] = STATE(3228), - [sym_from_clause] = STATE(6177), - [sym_conditional_expression] = STATE(3228), - [sym_conditional_access_expression] = STATE(3228), - [sym_as_expression] = STATE(3228), - [sym_is_expression] = STATE(3228), - [sym_is_pattern_expression] = STATE(3228), - [sym_cast_expression] = STATE(3228), - [sym_checked_expression] = STATE(3228), - [sym_invocation_expression] = STATE(3289), - [sym_switch_expression] = STATE(3228), - [sym_await_expression] = STATE(3289), - [sym_throw_expression] = STATE(3228), - [sym_element_access_expression] = STATE(2609), - [sym_interpolated_string_expression] = STATE(3228), - [sym_member_access_expression] = STATE(2609), - [sym_object_creation_expression] = STATE(3289), - [sym_parenthesized_expression] = STATE(3289), - [sym__parenthesized_lvalue_expression] = STATE(2609), - [sym_lambda_expression] = STATE(3228), - [sym__lambda_expression_init] = STATE(7636), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3228), - [sym_anonymous_method_expression] = STATE(3228), - [sym_anonymous_object_creation_expression] = STATE(3228), - [sym_implicit_array_creation_expression] = STATE(3228), - [sym_implicit_object_creation_expression] = STATE(3228), - [sym_implicit_stackalloc_expression] = STATE(3228), - [sym_initializer_expression] = STATE(3228), - [sym_default_expression] = STATE(3228), - [sym_with_expression] = STATE(3228), - [sym_sizeof_expression] = STATE(3228), - [sym_typeof_expression] = STATE(3228), - [sym_makeref_expression] = STATE(3228), - [sym_ref_expression] = STATE(3228), - [sym_reftype_expression] = STATE(3228), - [sym_refvalue_expression] = STATE(3228), - [sym_stackalloc_expression] = STATE(3228), - [sym_range_expression] = STATE(3228), - [sym_tuple_expression] = STATE(2609), - [sym_literal] = STATE(3228), - [sym_character_literal] = STATE(3278), - [sym_string_literal] = STATE(3278), - [sym_raw_string_literal] = STATE(3278), - [sym_boolean_literal] = STATE(3278), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3228), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2416), + [sym__name] = STATE(5885), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2404), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(4166), + [sym_non_lvalue_expression] = STATE(3040), + [sym_lvalue_expression] = STATE(3115), + [sym__expression_statement_expression] = STATE(3035), + [sym_assignment_expression] = STATE(3043), + [sym_binary_expression] = STATE(3035), + [sym_postfix_unary_expression] = STATE(3043), + [sym_prefix_unary_expression] = STATE(3043), + [sym__pointer_indirection_expression] = STATE(2415), + [sym_query_expression] = STATE(3035), + [sym_from_clause] = STATE(6162), + [sym_conditional_expression] = STATE(3035), + [sym_conditional_access_expression] = STATE(3035), + [sym_as_expression] = STATE(3035), + [sym_is_expression] = STATE(3035), + [sym_is_pattern_expression] = STATE(3035), + [sym_cast_expression] = STATE(3035), + [sym_checked_expression] = STATE(3035), + [sym_invocation_expression] = STATE(3043), + [sym_switch_expression] = STATE(3035), + [sym_await_expression] = STATE(3043), + [sym_throw_expression] = STATE(3035), + [sym_element_access_expression] = STATE(2415), + [sym_interpolated_string_expression] = STATE(3035), + [sym_member_access_expression] = STATE(2415), + [sym_object_creation_expression] = STATE(3043), + [sym_parenthesized_expression] = STATE(3043), + [sym__parenthesized_lvalue_expression] = STATE(2415), + [sym_lambda_expression] = STATE(3035), + [sym__lambda_expression_init] = STATE(7416), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3035), + [sym_anonymous_method_expression] = STATE(3035), + [sym_anonymous_object_creation_expression] = STATE(3035), + [sym_implicit_array_creation_expression] = STATE(3035), + [sym_implicit_object_creation_expression] = STATE(3035), + [sym_implicit_stackalloc_expression] = STATE(3035), + [sym_initializer_expression] = STATE(3035), + [sym_default_expression] = STATE(3035), + [sym_with_expression] = STATE(3035), + [sym_sizeof_expression] = STATE(3035), + [sym_typeof_expression] = STATE(3035), + [sym_makeref_expression] = STATE(3035), + [sym_ref_expression] = STATE(3035), + [sym_reftype_expression] = STATE(3035), + [sym_refvalue_expression] = STATE(3035), + [sym_stackalloc_expression] = STATE(3035), + [sym_range_expression] = STATE(3035), + [sym_tuple_expression] = STATE(2415), + [sym_literal] = STATE(3035), + [sym_character_literal] = STATE(3037), + [sym_string_literal] = STATE(3037), + [sym_raw_string_literal] = STATE(3037), + [sym_boolean_literal] = STATE(3037), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3035), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(1031), [sym_preproc_endregion] = STATE(1031), [sym_preproc_line] = STATE(1031), @@ -216098,47 +215984,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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3396), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3455), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1153), - [anon_sym_LPAREN] = ACTIONS(1559), - [anon_sym_ref] = ACTIONS(1561), - [anon_sym_LBRACE] = ACTIONS(1159), - [anon_sym_delegate] = ACTIONS(1161), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1239), + [anon_sym_LPAREN] = ACTIONS(2261), + [anon_sym_ref] = ACTIONS(2263), + [anon_sym_LBRACE] = ACTIONS(1245), + [anon_sym_delegate] = ACTIONS(1247), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1529), + [anon_sym_new] = ACTIONS(1935), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1167), - [anon_sym_BANG] = ACTIONS(1565), - [anon_sym_TILDE] = ACTIONS(1565), - [anon_sym_PLUS_PLUS] = ACTIONS(1565), - [anon_sym_DASH_DASH] = ACTIONS(1565), - [anon_sym_true] = ACTIONS(1173), - [anon_sym_false] = ACTIONS(1173), - [anon_sym_PLUS] = ACTIONS(1563), - [anon_sym_DASH] = ACTIONS(1563), - [anon_sym_STAR] = ACTIONS(1567), - [anon_sym_CARET] = ACTIONS(1565), - [anon_sym_AMP] = ACTIONS(1565), - [anon_sym_this] = ACTIONS(1177), + [anon_sym_checked] = ACTIONS(1251), + [anon_sym_BANG] = ACTIONS(2267), + [anon_sym_TILDE] = ACTIONS(2267), + [anon_sym_PLUS_PLUS] = ACTIONS(2267), + [anon_sym_DASH_DASH] = ACTIONS(2267), + [anon_sym_true] = ACTIONS(1257), + [anon_sym_false] = ACTIONS(1257), + [anon_sym_PLUS] = ACTIONS(2265), + [anon_sym_DASH] = ACTIONS(2265), + [anon_sym_STAR] = ACTIONS(1941), + [anon_sym_CARET] = ACTIONS(2267), + [anon_sym_AMP] = ACTIONS(2267), + [anon_sym_this] = ACTIONS(1261), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1179), + [anon_sym_base] = ACTIONS(1263), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1181), - [anon_sym_unchecked] = ACTIONS(1167), + [sym_predefined_type] = ACTIONS(1265), + [anon_sym_unchecked] = ACTIONS(1251), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1183), - [anon_sym_throw] = ACTIONS(1569), + [anon_sym_default] = ACTIONS(1267), + [anon_sym_throw] = ACTIONS(2269), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1571), - [anon_sym_DOT_DOT] = ACTIONS(1573), + [anon_sym_await] = ACTIONS(2271), + [anon_sym_DOT_DOT] = ACTIONS(2273), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -216151,19 +216037,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1191), - [anon_sym_sizeof] = ACTIONS(1193), - [anon_sym_typeof] = ACTIONS(1195), - [anon_sym___makeref] = ACTIONS(1197), - [anon_sym___reftype] = ACTIONS(1199), - [anon_sym___refvalue] = ACTIONS(1201), - [sym_null_literal] = ACTIONS(1203), - [anon_sym_SQUOTE] = ACTIONS(1205), - [sym_integer_literal] = ACTIONS(1203), - [sym_real_literal] = ACTIONS(1207), - [anon_sym_DQUOTE] = ACTIONS(1209), - [sym_verbatim_string_literal] = ACTIONS(1207), - [aux_sym_preproc_if_token1] = ACTIONS(1211), + [anon_sym_stackalloc] = ACTIONS(1275), + [anon_sym_sizeof] = ACTIONS(1277), + [anon_sym_typeof] = ACTIONS(1279), + [anon_sym___makeref] = ACTIONS(1281), + [anon_sym___reftype] = ACTIONS(1283), + [anon_sym___refvalue] = ACTIONS(1285), + [sym_null_literal] = ACTIONS(1287), + [anon_sym_SQUOTE] = ACTIONS(1289), + [sym_integer_literal] = ACTIONS(1287), + [sym_real_literal] = ACTIONS(1291), + [anon_sym_DQUOTE] = ACTIONS(1293), + [sym_verbatim_string_literal] = ACTIONS(1291), + [aux_sym_preproc_if_token1] = ACTIONS(1295), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -216174,90 +216060,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1213), - [sym_interpolation_verbatim_start] = ACTIONS(1215), - [sym_interpolation_raw_start] = ACTIONS(1217), - [sym_raw_string_start] = ACTIONS(1219), + [sym_interpolation_regular_start] = ACTIONS(1297), + [sym_interpolation_verbatim_start] = ACTIONS(1299), + [sym_interpolation_raw_start] = ACTIONS(1301), + [sym_raw_string_start] = ACTIONS(1303), }, [1032] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2610), - [sym__name] = STATE(5871), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2319), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(4439), - [sym_non_lvalue_expression] = STATE(3277), - [sym_lvalue_expression] = STATE(3280), - [sym__expression_statement_expression] = STATE(3228), - [sym_assignment_expression] = STATE(3289), - [sym_binary_expression] = STATE(3228), - [sym_postfix_unary_expression] = STATE(3289), - [sym_prefix_unary_expression] = STATE(3289), - [sym__pointer_indirection_expression] = STATE(2609), - [sym_query_expression] = STATE(3228), - [sym_from_clause] = STATE(6177), - [sym_conditional_expression] = STATE(3228), - [sym_conditional_access_expression] = STATE(3228), - [sym_as_expression] = STATE(3228), - [sym_is_expression] = STATE(3228), - [sym_is_pattern_expression] = STATE(3228), - [sym_cast_expression] = STATE(3228), - [sym_checked_expression] = STATE(3228), - [sym_invocation_expression] = STATE(3289), - [sym_switch_expression] = STATE(3228), - [sym_await_expression] = STATE(3289), - [sym_throw_expression] = STATE(3228), - [sym_element_access_expression] = STATE(2609), - [sym_interpolated_string_expression] = STATE(3228), - [sym_member_access_expression] = STATE(2609), - [sym_object_creation_expression] = STATE(3289), - [sym_parenthesized_expression] = STATE(3289), - [sym__parenthesized_lvalue_expression] = STATE(2609), - [sym_lambda_expression] = STATE(3228), - [sym__lambda_expression_init] = STATE(7636), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3228), - [sym_anonymous_method_expression] = STATE(3228), - [sym_anonymous_object_creation_expression] = STATE(3228), - [sym_implicit_array_creation_expression] = STATE(3228), - [sym_implicit_object_creation_expression] = STATE(3228), - [sym_implicit_stackalloc_expression] = STATE(3228), - [sym_initializer_expression] = STATE(3228), - [sym_default_expression] = STATE(3228), - [sym_with_expression] = STATE(3228), - [sym_sizeof_expression] = STATE(3228), - [sym_typeof_expression] = STATE(3228), - [sym_makeref_expression] = STATE(3228), - [sym_ref_expression] = STATE(3228), - [sym_reftype_expression] = STATE(3228), - [sym_refvalue_expression] = STATE(3228), - [sym_stackalloc_expression] = STATE(3228), - [sym_range_expression] = STATE(3228), - [sym_tuple_expression] = STATE(2609), - [sym_literal] = STATE(3228), - [sym_character_literal] = STATE(3278), - [sym_string_literal] = STATE(3278), - [sym_raw_string_literal] = STATE(3278), - [sym_boolean_literal] = STATE(3278), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3228), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2416), + [sym__name] = STATE(5885), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2404), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(4167), + [sym_non_lvalue_expression] = STATE(3040), + [sym_lvalue_expression] = STATE(3115), + [sym__expression_statement_expression] = STATE(3035), + [sym_assignment_expression] = STATE(3043), + [sym_binary_expression] = STATE(3035), + [sym_postfix_unary_expression] = STATE(3043), + [sym_prefix_unary_expression] = STATE(3043), + [sym__pointer_indirection_expression] = STATE(2415), + [sym_query_expression] = STATE(3035), + [sym_from_clause] = STATE(6162), + [sym_conditional_expression] = STATE(3035), + [sym_conditional_access_expression] = STATE(3035), + [sym_as_expression] = STATE(3035), + [sym_is_expression] = STATE(3035), + [sym_is_pattern_expression] = STATE(3035), + [sym_cast_expression] = STATE(3035), + [sym_checked_expression] = STATE(3035), + [sym_invocation_expression] = STATE(3043), + [sym_switch_expression] = STATE(3035), + [sym_await_expression] = STATE(3043), + [sym_throw_expression] = STATE(3035), + [sym_element_access_expression] = STATE(2415), + [sym_interpolated_string_expression] = STATE(3035), + [sym_member_access_expression] = STATE(2415), + [sym_object_creation_expression] = STATE(3043), + [sym_parenthesized_expression] = STATE(3043), + [sym__parenthesized_lvalue_expression] = STATE(2415), + [sym_lambda_expression] = STATE(3035), + [sym__lambda_expression_init] = STATE(7416), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3035), + [sym_anonymous_method_expression] = STATE(3035), + [sym_anonymous_object_creation_expression] = STATE(3035), + [sym_implicit_array_creation_expression] = STATE(3035), + [sym_implicit_object_creation_expression] = STATE(3035), + [sym_implicit_stackalloc_expression] = STATE(3035), + [sym_initializer_expression] = STATE(3035), + [sym_default_expression] = STATE(3035), + [sym_with_expression] = STATE(3035), + [sym_sizeof_expression] = STATE(3035), + [sym_typeof_expression] = STATE(3035), + [sym_makeref_expression] = STATE(3035), + [sym_ref_expression] = STATE(3035), + [sym_reftype_expression] = STATE(3035), + [sym_refvalue_expression] = STATE(3035), + [sym_stackalloc_expression] = STATE(3035), + [sym_range_expression] = STATE(3035), + [sym_tuple_expression] = STATE(2415), + [sym_literal] = STATE(3035), + [sym_character_literal] = STATE(3037), + [sym_string_literal] = STATE(3037), + [sym_raw_string_literal] = STATE(3037), + [sym_boolean_literal] = STATE(3037), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3035), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(1032), [sym_preproc_endregion] = STATE(1032), [sym_preproc_line] = STATE(1032), @@ -216267,47 +216153,47 @@ 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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3396), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3455), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1153), - [anon_sym_LPAREN] = ACTIONS(1559), - [anon_sym_ref] = ACTIONS(1561), - [anon_sym_LBRACE] = ACTIONS(1159), - [anon_sym_delegate] = ACTIONS(1161), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1239), + [anon_sym_LPAREN] = ACTIONS(2261), + [anon_sym_ref] = ACTIONS(2263), + [anon_sym_LBRACE] = ACTIONS(1245), + [anon_sym_delegate] = ACTIONS(1247), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1529), + [anon_sym_new] = ACTIONS(1935), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1167), - [anon_sym_BANG] = ACTIONS(1565), - [anon_sym_TILDE] = ACTIONS(1565), - [anon_sym_PLUS_PLUS] = ACTIONS(1565), - [anon_sym_DASH_DASH] = ACTIONS(1565), - [anon_sym_true] = ACTIONS(1173), - [anon_sym_false] = ACTIONS(1173), - [anon_sym_PLUS] = ACTIONS(1563), - [anon_sym_DASH] = ACTIONS(1563), - [anon_sym_STAR] = ACTIONS(1567), - [anon_sym_CARET] = ACTIONS(1565), - [anon_sym_AMP] = ACTIONS(1565), - [anon_sym_this] = ACTIONS(1177), + [anon_sym_checked] = ACTIONS(1251), + [anon_sym_BANG] = ACTIONS(2267), + [anon_sym_TILDE] = ACTIONS(2267), + [anon_sym_PLUS_PLUS] = ACTIONS(2267), + [anon_sym_DASH_DASH] = ACTIONS(2267), + [anon_sym_true] = ACTIONS(1257), + [anon_sym_false] = ACTIONS(1257), + [anon_sym_PLUS] = ACTIONS(2265), + [anon_sym_DASH] = ACTIONS(2265), + [anon_sym_STAR] = ACTIONS(1941), + [anon_sym_CARET] = ACTIONS(2267), + [anon_sym_AMP] = ACTIONS(2267), + [anon_sym_this] = ACTIONS(1261), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1179), + [anon_sym_base] = ACTIONS(1263), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1181), - [anon_sym_unchecked] = ACTIONS(1167), + [sym_predefined_type] = ACTIONS(1265), + [anon_sym_unchecked] = ACTIONS(1251), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1183), - [anon_sym_throw] = ACTIONS(1569), + [anon_sym_default] = ACTIONS(1267), + [anon_sym_throw] = ACTIONS(2269), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1571), - [anon_sym_DOT_DOT] = ACTIONS(1573), + [anon_sym_await] = ACTIONS(2271), + [anon_sym_DOT_DOT] = ACTIONS(2273), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -216320,19 +216206,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1191), - [anon_sym_sizeof] = ACTIONS(1193), - [anon_sym_typeof] = ACTIONS(1195), - [anon_sym___makeref] = ACTIONS(1197), - [anon_sym___reftype] = ACTIONS(1199), - [anon_sym___refvalue] = ACTIONS(1201), - [sym_null_literal] = ACTIONS(1203), - [anon_sym_SQUOTE] = ACTIONS(1205), - [sym_integer_literal] = ACTIONS(1203), - [sym_real_literal] = ACTIONS(1207), - [anon_sym_DQUOTE] = ACTIONS(1209), - [sym_verbatim_string_literal] = ACTIONS(1207), - [aux_sym_preproc_if_token1] = ACTIONS(1211), + [anon_sym_stackalloc] = ACTIONS(1275), + [anon_sym_sizeof] = ACTIONS(1277), + [anon_sym_typeof] = ACTIONS(1279), + [anon_sym___makeref] = ACTIONS(1281), + [anon_sym___reftype] = ACTIONS(1283), + [anon_sym___refvalue] = ACTIONS(1285), + [sym_null_literal] = ACTIONS(1287), + [anon_sym_SQUOTE] = ACTIONS(1289), + [sym_integer_literal] = ACTIONS(1287), + [sym_real_literal] = ACTIONS(1291), + [anon_sym_DQUOTE] = ACTIONS(1293), + [sym_verbatim_string_literal] = ACTIONS(1291), + [aux_sym_preproc_if_token1] = ACTIONS(1295), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -216343,90 +216229,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1213), - [sym_interpolation_verbatim_start] = ACTIONS(1215), - [sym_interpolation_raw_start] = ACTIONS(1217), - [sym_raw_string_start] = ACTIONS(1219), + [sym_interpolation_regular_start] = ACTIONS(1297), + [sym_interpolation_verbatim_start] = ACTIONS(1299), + [sym_interpolation_raw_start] = ACTIONS(1301), + [sym_raw_string_start] = ACTIONS(1303), }, [1033] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2610), - [sym__name] = STATE(5871), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2319), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(4354), - [sym_non_lvalue_expression] = STATE(3277), - [sym_lvalue_expression] = STATE(3280), - [sym__expression_statement_expression] = STATE(3228), - [sym_assignment_expression] = STATE(3289), - [sym_binary_expression] = STATE(3228), - [sym_postfix_unary_expression] = STATE(3289), - [sym_prefix_unary_expression] = STATE(3289), - [sym__pointer_indirection_expression] = STATE(2609), - [sym_query_expression] = STATE(3228), - [sym_from_clause] = STATE(6177), - [sym_conditional_expression] = STATE(3228), - [sym_conditional_access_expression] = STATE(3228), - [sym_as_expression] = STATE(3228), - [sym_is_expression] = STATE(3228), - [sym_is_pattern_expression] = STATE(3228), - [sym_cast_expression] = STATE(3228), - [sym_checked_expression] = STATE(3228), - [sym_invocation_expression] = STATE(3289), - [sym_switch_expression] = STATE(3228), - [sym_await_expression] = STATE(3289), - [sym_throw_expression] = STATE(3228), - [sym_element_access_expression] = STATE(2609), - [sym_interpolated_string_expression] = STATE(3228), - [sym_member_access_expression] = STATE(2609), - [sym_object_creation_expression] = STATE(3289), - [sym_parenthesized_expression] = STATE(3289), - [sym__parenthesized_lvalue_expression] = STATE(2609), - [sym_lambda_expression] = STATE(3228), - [sym__lambda_expression_init] = STATE(7636), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3228), - [sym_anonymous_method_expression] = STATE(3228), - [sym_anonymous_object_creation_expression] = STATE(3228), - [sym_implicit_array_creation_expression] = STATE(3228), - [sym_implicit_object_creation_expression] = STATE(3228), - [sym_implicit_stackalloc_expression] = STATE(3228), - [sym_initializer_expression] = STATE(3228), - [sym_default_expression] = STATE(3228), - [sym_with_expression] = STATE(3228), - [sym_sizeof_expression] = STATE(3228), - [sym_typeof_expression] = STATE(3228), - [sym_makeref_expression] = STATE(3228), - [sym_ref_expression] = STATE(3228), - [sym_reftype_expression] = STATE(3228), - [sym_refvalue_expression] = STATE(3228), - [sym_stackalloc_expression] = STATE(3228), - [sym_range_expression] = STATE(3228), - [sym_tuple_expression] = STATE(2609), - [sym_literal] = STATE(3228), - [sym_character_literal] = STATE(3278), - [sym_string_literal] = STATE(3278), - [sym_raw_string_literal] = STATE(3278), - [sym_boolean_literal] = STATE(3278), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3228), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2416), + [sym__name] = STATE(5885), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2404), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(4117), + [sym_non_lvalue_expression] = STATE(3040), + [sym_lvalue_expression] = STATE(3115), + [sym__expression_statement_expression] = STATE(3035), + [sym_assignment_expression] = STATE(3043), + [sym_binary_expression] = STATE(3035), + [sym_postfix_unary_expression] = STATE(3043), + [sym_prefix_unary_expression] = STATE(3043), + [sym__pointer_indirection_expression] = STATE(2415), + [sym_query_expression] = STATE(3035), + [sym_from_clause] = STATE(6162), + [sym_conditional_expression] = STATE(3035), + [sym_conditional_access_expression] = STATE(3035), + [sym_as_expression] = STATE(3035), + [sym_is_expression] = STATE(3035), + [sym_is_pattern_expression] = STATE(3035), + [sym_cast_expression] = STATE(3035), + [sym_checked_expression] = STATE(3035), + [sym_invocation_expression] = STATE(3043), + [sym_switch_expression] = STATE(3035), + [sym_await_expression] = STATE(3043), + [sym_throw_expression] = STATE(3035), + [sym_element_access_expression] = STATE(2415), + [sym_interpolated_string_expression] = STATE(3035), + [sym_member_access_expression] = STATE(2415), + [sym_object_creation_expression] = STATE(3043), + [sym_parenthesized_expression] = STATE(3043), + [sym__parenthesized_lvalue_expression] = STATE(2415), + [sym_lambda_expression] = STATE(3035), + [sym__lambda_expression_init] = STATE(7416), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3035), + [sym_anonymous_method_expression] = STATE(3035), + [sym_anonymous_object_creation_expression] = STATE(3035), + [sym_implicit_array_creation_expression] = STATE(3035), + [sym_implicit_object_creation_expression] = STATE(3035), + [sym_implicit_stackalloc_expression] = STATE(3035), + [sym_initializer_expression] = STATE(3035), + [sym_default_expression] = STATE(3035), + [sym_with_expression] = STATE(3035), + [sym_sizeof_expression] = STATE(3035), + [sym_typeof_expression] = STATE(3035), + [sym_makeref_expression] = STATE(3035), + [sym_ref_expression] = STATE(3035), + [sym_reftype_expression] = STATE(3035), + [sym_refvalue_expression] = STATE(3035), + [sym_stackalloc_expression] = STATE(3035), + [sym_range_expression] = STATE(3035), + [sym_tuple_expression] = STATE(2415), + [sym_literal] = STATE(3035), + [sym_character_literal] = STATE(3037), + [sym_string_literal] = STATE(3037), + [sym_raw_string_literal] = STATE(3037), + [sym_boolean_literal] = STATE(3037), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3035), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(1033), [sym_preproc_endregion] = STATE(1033), [sym_preproc_line] = STATE(1033), @@ -216436,47 +216322,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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3396), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3455), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1153), - [anon_sym_LPAREN] = ACTIONS(1559), - [anon_sym_ref] = ACTIONS(1561), - [anon_sym_LBRACE] = ACTIONS(1159), - [anon_sym_delegate] = ACTIONS(1161), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1239), + [anon_sym_LPAREN] = ACTIONS(2261), + [anon_sym_ref] = ACTIONS(2263), + [anon_sym_LBRACE] = ACTIONS(1245), + [anon_sym_delegate] = ACTIONS(1247), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1529), + [anon_sym_new] = ACTIONS(1935), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1167), - [anon_sym_BANG] = ACTIONS(1565), - [anon_sym_TILDE] = ACTIONS(1565), - [anon_sym_PLUS_PLUS] = ACTIONS(1565), - [anon_sym_DASH_DASH] = ACTIONS(1565), - [anon_sym_true] = ACTIONS(1173), - [anon_sym_false] = ACTIONS(1173), - [anon_sym_PLUS] = ACTIONS(1563), - [anon_sym_DASH] = ACTIONS(1563), - [anon_sym_STAR] = ACTIONS(1567), - [anon_sym_CARET] = ACTIONS(1565), - [anon_sym_AMP] = ACTIONS(1565), - [anon_sym_this] = ACTIONS(1177), + [anon_sym_checked] = ACTIONS(1251), + [anon_sym_BANG] = ACTIONS(2267), + [anon_sym_TILDE] = ACTIONS(2267), + [anon_sym_PLUS_PLUS] = ACTIONS(2267), + [anon_sym_DASH_DASH] = ACTIONS(2267), + [anon_sym_true] = ACTIONS(1257), + [anon_sym_false] = ACTIONS(1257), + [anon_sym_PLUS] = ACTIONS(2265), + [anon_sym_DASH] = ACTIONS(2265), + [anon_sym_STAR] = ACTIONS(1941), + [anon_sym_CARET] = ACTIONS(2267), + [anon_sym_AMP] = ACTIONS(2267), + [anon_sym_this] = ACTIONS(1261), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1179), + [anon_sym_base] = ACTIONS(1263), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1181), - [anon_sym_unchecked] = ACTIONS(1167), + [sym_predefined_type] = ACTIONS(1265), + [anon_sym_unchecked] = ACTIONS(1251), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1183), - [anon_sym_throw] = ACTIONS(1569), + [anon_sym_default] = ACTIONS(1267), + [anon_sym_throw] = ACTIONS(2269), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1571), - [anon_sym_DOT_DOT] = ACTIONS(1573), + [anon_sym_await] = ACTIONS(2271), + [anon_sym_DOT_DOT] = ACTIONS(2273), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -216489,19 +216375,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1191), - [anon_sym_sizeof] = ACTIONS(1193), - [anon_sym_typeof] = ACTIONS(1195), - [anon_sym___makeref] = ACTIONS(1197), - [anon_sym___reftype] = ACTIONS(1199), - [anon_sym___refvalue] = ACTIONS(1201), - [sym_null_literal] = ACTIONS(1203), - [anon_sym_SQUOTE] = ACTIONS(1205), - [sym_integer_literal] = ACTIONS(1203), - [sym_real_literal] = ACTIONS(1207), - [anon_sym_DQUOTE] = ACTIONS(1209), - [sym_verbatim_string_literal] = ACTIONS(1207), - [aux_sym_preproc_if_token1] = ACTIONS(1211), + [anon_sym_stackalloc] = ACTIONS(1275), + [anon_sym_sizeof] = ACTIONS(1277), + [anon_sym_typeof] = ACTIONS(1279), + [anon_sym___makeref] = ACTIONS(1281), + [anon_sym___reftype] = ACTIONS(1283), + [anon_sym___refvalue] = ACTIONS(1285), + [sym_null_literal] = ACTIONS(1287), + [anon_sym_SQUOTE] = ACTIONS(1289), + [sym_integer_literal] = ACTIONS(1287), + [sym_real_literal] = ACTIONS(1291), + [anon_sym_DQUOTE] = ACTIONS(1293), + [sym_verbatim_string_literal] = ACTIONS(1291), + [aux_sym_preproc_if_token1] = ACTIONS(1295), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -216512,90 +216398,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1213), - [sym_interpolation_verbatim_start] = ACTIONS(1215), - [sym_interpolation_raw_start] = ACTIONS(1217), - [sym_raw_string_start] = ACTIONS(1219), + [sym_interpolation_regular_start] = ACTIONS(1297), + [sym_interpolation_verbatim_start] = ACTIONS(1299), + [sym_interpolation_raw_start] = ACTIONS(1301), + [sym_raw_string_start] = ACTIONS(1303), }, [1034] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2610), - [sym__name] = STATE(5871), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2319), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(4440), - [sym_non_lvalue_expression] = STATE(3277), - [sym_lvalue_expression] = STATE(3280), - [sym__expression_statement_expression] = STATE(3228), - [sym_assignment_expression] = STATE(3289), - [sym_binary_expression] = STATE(3228), - [sym_postfix_unary_expression] = STATE(3289), - [sym_prefix_unary_expression] = STATE(3289), - [sym__pointer_indirection_expression] = STATE(2609), - [sym_query_expression] = STATE(3228), - [sym_from_clause] = STATE(6177), - [sym_conditional_expression] = STATE(3228), - [sym_conditional_access_expression] = STATE(3228), - [sym_as_expression] = STATE(3228), - [sym_is_expression] = STATE(3228), - [sym_is_pattern_expression] = STATE(3228), - [sym_cast_expression] = STATE(3228), - [sym_checked_expression] = STATE(3228), - [sym_invocation_expression] = STATE(3289), - [sym_switch_expression] = STATE(3228), - [sym_await_expression] = STATE(3289), - [sym_throw_expression] = STATE(3228), - [sym_element_access_expression] = STATE(2609), - [sym_interpolated_string_expression] = STATE(3228), - [sym_member_access_expression] = STATE(2609), - [sym_object_creation_expression] = STATE(3289), - [sym_parenthesized_expression] = STATE(3289), - [sym__parenthesized_lvalue_expression] = STATE(2609), - [sym_lambda_expression] = STATE(3228), - [sym__lambda_expression_init] = STATE(7636), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3228), - [sym_anonymous_method_expression] = STATE(3228), - [sym_anonymous_object_creation_expression] = STATE(3228), - [sym_implicit_array_creation_expression] = STATE(3228), - [sym_implicit_object_creation_expression] = STATE(3228), - [sym_implicit_stackalloc_expression] = STATE(3228), - [sym_initializer_expression] = STATE(3228), - [sym_default_expression] = STATE(3228), - [sym_with_expression] = STATE(3228), - [sym_sizeof_expression] = STATE(3228), - [sym_typeof_expression] = STATE(3228), - [sym_makeref_expression] = STATE(3228), - [sym_ref_expression] = STATE(3228), - [sym_reftype_expression] = STATE(3228), - [sym_refvalue_expression] = STATE(3228), - [sym_stackalloc_expression] = STATE(3228), - [sym_range_expression] = STATE(3228), - [sym_tuple_expression] = STATE(2609), - [sym_literal] = STATE(3228), - [sym_character_literal] = STATE(3278), - [sym_string_literal] = STATE(3278), - [sym_raw_string_literal] = STATE(3278), - [sym_boolean_literal] = STATE(3278), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3228), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2416), + [sym__name] = STATE(5885), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2404), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(4124), + [sym_non_lvalue_expression] = STATE(3040), + [sym_lvalue_expression] = STATE(3115), + [sym__expression_statement_expression] = STATE(3035), + [sym_assignment_expression] = STATE(3043), + [sym_binary_expression] = STATE(3035), + [sym_postfix_unary_expression] = STATE(3043), + [sym_prefix_unary_expression] = STATE(3043), + [sym__pointer_indirection_expression] = STATE(2415), + [sym_query_expression] = STATE(3035), + [sym_from_clause] = STATE(6162), + [sym_conditional_expression] = STATE(3035), + [sym_conditional_access_expression] = STATE(3035), + [sym_as_expression] = STATE(3035), + [sym_is_expression] = STATE(3035), + [sym_is_pattern_expression] = STATE(3035), + [sym_cast_expression] = STATE(3035), + [sym_checked_expression] = STATE(3035), + [sym_invocation_expression] = STATE(3043), + [sym_switch_expression] = STATE(3035), + [sym_await_expression] = STATE(3043), + [sym_throw_expression] = STATE(3035), + [sym_element_access_expression] = STATE(2415), + [sym_interpolated_string_expression] = STATE(3035), + [sym_member_access_expression] = STATE(2415), + [sym_object_creation_expression] = STATE(3043), + [sym_parenthesized_expression] = STATE(3043), + [sym__parenthesized_lvalue_expression] = STATE(2415), + [sym_lambda_expression] = STATE(3035), + [sym__lambda_expression_init] = STATE(7416), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3035), + [sym_anonymous_method_expression] = STATE(3035), + [sym_anonymous_object_creation_expression] = STATE(3035), + [sym_implicit_array_creation_expression] = STATE(3035), + [sym_implicit_object_creation_expression] = STATE(3035), + [sym_implicit_stackalloc_expression] = STATE(3035), + [sym_initializer_expression] = STATE(3035), + [sym_default_expression] = STATE(3035), + [sym_with_expression] = STATE(3035), + [sym_sizeof_expression] = STATE(3035), + [sym_typeof_expression] = STATE(3035), + [sym_makeref_expression] = STATE(3035), + [sym_ref_expression] = STATE(3035), + [sym_reftype_expression] = STATE(3035), + [sym_refvalue_expression] = STATE(3035), + [sym_stackalloc_expression] = STATE(3035), + [sym_range_expression] = STATE(3035), + [sym_tuple_expression] = STATE(2415), + [sym_literal] = STATE(3035), + [sym_character_literal] = STATE(3037), + [sym_string_literal] = STATE(3037), + [sym_raw_string_literal] = STATE(3037), + [sym_boolean_literal] = STATE(3037), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3035), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(1034), [sym_preproc_endregion] = STATE(1034), [sym_preproc_line] = STATE(1034), @@ -216605,47 +216491,47 @@ 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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3396), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3455), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1153), - [anon_sym_LPAREN] = ACTIONS(1559), - [anon_sym_ref] = ACTIONS(1561), - [anon_sym_LBRACE] = ACTIONS(1159), - [anon_sym_delegate] = ACTIONS(1161), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1239), + [anon_sym_LPAREN] = ACTIONS(2261), + [anon_sym_ref] = ACTIONS(2263), + [anon_sym_LBRACE] = ACTIONS(1245), + [anon_sym_delegate] = ACTIONS(1247), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1529), + [anon_sym_new] = ACTIONS(1935), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1167), - [anon_sym_BANG] = ACTIONS(1565), - [anon_sym_TILDE] = ACTIONS(1565), - [anon_sym_PLUS_PLUS] = ACTIONS(1565), - [anon_sym_DASH_DASH] = ACTIONS(1565), - [anon_sym_true] = ACTIONS(1173), - [anon_sym_false] = ACTIONS(1173), - [anon_sym_PLUS] = ACTIONS(1563), - [anon_sym_DASH] = ACTIONS(1563), - [anon_sym_STAR] = ACTIONS(1567), - [anon_sym_CARET] = ACTIONS(1565), - [anon_sym_AMP] = ACTIONS(1565), - [anon_sym_this] = ACTIONS(1177), + [anon_sym_checked] = ACTIONS(1251), + [anon_sym_BANG] = ACTIONS(2267), + [anon_sym_TILDE] = ACTIONS(2267), + [anon_sym_PLUS_PLUS] = ACTIONS(2267), + [anon_sym_DASH_DASH] = ACTIONS(2267), + [anon_sym_true] = ACTIONS(1257), + [anon_sym_false] = ACTIONS(1257), + [anon_sym_PLUS] = ACTIONS(2265), + [anon_sym_DASH] = ACTIONS(2265), + [anon_sym_STAR] = ACTIONS(1941), + [anon_sym_CARET] = ACTIONS(2267), + [anon_sym_AMP] = ACTIONS(2267), + [anon_sym_this] = ACTIONS(1261), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1179), + [anon_sym_base] = ACTIONS(1263), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1181), - [anon_sym_unchecked] = ACTIONS(1167), + [sym_predefined_type] = ACTIONS(1265), + [anon_sym_unchecked] = ACTIONS(1251), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1183), - [anon_sym_throw] = ACTIONS(1569), + [anon_sym_default] = ACTIONS(1267), + [anon_sym_throw] = ACTIONS(2269), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1571), - [anon_sym_DOT_DOT] = ACTIONS(1573), + [anon_sym_await] = ACTIONS(2271), + [anon_sym_DOT_DOT] = ACTIONS(2273), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -216658,19 +216544,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1191), - [anon_sym_sizeof] = ACTIONS(1193), - [anon_sym_typeof] = ACTIONS(1195), - [anon_sym___makeref] = ACTIONS(1197), - [anon_sym___reftype] = ACTIONS(1199), - [anon_sym___refvalue] = ACTIONS(1201), - [sym_null_literal] = ACTIONS(1203), - [anon_sym_SQUOTE] = ACTIONS(1205), - [sym_integer_literal] = ACTIONS(1203), - [sym_real_literal] = ACTIONS(1207), - [anon_sym_DQUOTE] = ACTIONS(1209), - [sym_verbatim_string_literal] = ACTIONS(1207), - [aux_sym_preproc_if_token1] = ACTIONS(1211), + [anon_sym_stackalloc] = ACTIONS(1275), + [anon_sym_sizeof] = ACTIONS(1277), + [anon_sym_typeof] = ACTIONS(1279), + [anon_sym___makeref] = ACTIONS(1281), + [anon_sym___reftype] = ACTIONS(1283), + [anon_sym___refvalue] = ACTIONS(1285), + [sym_null_literal] = ACTIONS(1287), + [anon_sym_SQUOTE] = ACTIONS(1289), + [sym_integer_literal] = ACTIONS(1287), + [sym_real_literal] = ACTIONS(1291), + [anon_sym_DQUOTE] = ACTIONS(1293), + [sym_verbatim_string_literal] = ACTIONS(1291), + [aux_sym_preproc_if_token1] = ACTIONS(1295), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -216681,90 +216567,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1213), - [sym_interpolation_verbatim_start] = ACTIONS(1215), - [sym_interpolation_raw_start] = ACTIONS(1217), - [sym_raw_string_start] = ACTIONS(1219), + [sym_interpolation_regular_start] = ACTIONS(1297), + [sym_interpolation_verbatim_start] = ACTIONS(1299), + [sym_interpolation_raw_start] = ACTIONS(1301), + [sym_raw_string_start] = ACTIONS(1303), }, [1035] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2610), - [sym__name] = STATE(5871), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2319), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(4441), - [sym_non_lvalue_expression] = STATE(3277), - [sym_lvalue_expression] = STATE(3280), - [sym__expression_statement_expression] = STATE(3228), - [sym_assignment_expression] = STATE(3289), - [sym_binary_expression] = STATE(3228), - [sym_postfix_unary_expression] = STATE(3289), - [sym_prefix_unary_expression] = STATE(3289), - [sym__pointer_indirection_expression] = STATE(2609), - [sym_query_expression] = STATE(3228), - [sym_from_clause] = STATE(6177), - [sym_conditional_expression] = STATE(3228), - [sym_conditional_access_expression] = STATE(3228), - [sym_as_expression] = STATE(3228), - [sym_is_expression] = STATE(3228), - [sym_is_pattern_expression] = STATE(3228), - [sym_cast_expression] = STATE(3228), - [sym_checked_expression] = STATE(3228), - [sym_invocation_expression] = STATE(3289), - [sym_switch_expression] = STATE(3228), - [sym_await_expression] = STATE(3289), - [sym_throw_expression] = STATE(3228), - [sym_element_access_expression] = STATE(2609), - [sym_interpolated_string_expression] = STATE(3228), - [sym_member_access_expression] = STATE(2609), - [sym_object_creation_expression] = STATE(3289), - [sym_parenthesized_expression] = STATE(3289), - [sym__parenthesized_lvalue_expression] = STATE(2609), - [sym_lambda_expression] = STATE(3228), - [sym__lambda_expression_init] = STATE(7636), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3228), - [sym_anonymous_method_expression] = STATE(3228), - [sym_anonymous_object_creation_expression] = STATE(3228), - [sym_implicit_array_creation_expression] = STATE(3228), - [sym_implicit_object_creation_expression] = STATE(3228), - [sym_implicit_stackalloc_expression] = STATE(3228), - [sym_initializer_expression] = STATE(3228), - [sym_default_expression] = STATE(3228), - [sym_with_expression] = STATE(3228), - [sym_sizeof_expression] = STATE(3228), - [sym_typeof_expression] = STATE(3228), - [sym_makeref_expression] = STATE(3228), - [sym_ref_expression] = STATE(3228), - [sym_reftype_expression] = STATE(3228), - [sym_refvalue_expression] = STATE(3228), - [sym_stackalloc_expression] = STATE(3228), - [sym_range_expression] = STATE(3228), - [sym_tuple_expression] = STATE(2609), - [sym_literal] = STATE(3228), - [sym_character_literal] = STATE(3278), - [sym_string_literal] = STATE(3278), - [sym_raw_string_literal] = STATE(3278), - [sym_boolean_literal] = STATE(3278), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3228), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2416), + [sym__name] = STATE(5885), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2404), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(4119), + [sym_non_lvalue_expression] = STATE(3040), + [sym_lvalue_expression] = STATE(3115), + [sym__expression_statement_expression] = STATE(3035), + [sym_assignment_expression] = STATE(3043), + [sym_binary_expression] = STATE(3035), + [sym_postfix_unary_expression] = STATE(3043), + [sym_prefix_unary_expression] = STATE(3043), + [sym__pointer_indirection_expression] = STATE(2415), + [sym_query_expression] = STATE(3035), + [sym_from_clause] = STATE(6162), + [sym_conditional_expression] = STATE(3035), + [sym_conditional_access_expression] = STATE(3035), + [sym_as_expression] = STATE(3035), + [sym_is_expression] = STATE(3035), + [sym_is_pattern_expression] = STATE(3035), + [sym_cast_expression] = STATE(3035), + [sym_checked_expression] = STATE(3035), + [sym_invocation_expression] = STATE(3043), + [sym_switch_expression] = STATE(3035), + [sym_await_expression] = STATE(3043), + [sym_throw_expression] = STATE(3035), + [sym_element_access_expression] = STATE(2415), + [sym_interpolated_string_expression] = STATE(3035), + [sym_member_access_expression] = STATE(2415), + [sym_object_creation_expression] = STATE(3043), + [sym_parenthesized_expression] = STATE(3043), + [sym__parenthesized_lvalue_expression] = STATE(2415), + [sym_lambda_expression] = STATE(3035), + [sym__lambda_expression_init] = STATE(7416), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3035), + [sym_anonymous_method_expression] = STATE(3035), + [sym_anonymous_object_creation_expression] = STATE(3035), + [sym_implicit_array_creation_expression] = STATE(3035), + [sym_implicit_object_creation_expression] = STATE(3035), + [sym_implicit_stackalloc_expression] = STATE(3035), + [sym_initializer_expression] = STATE(3035), + [sym_default_expression] = STATE(3035), + [sym_with_expression] = STATE(3035), + [sym_sizeof_expression] = STATE(3035), + [sym_typeof_expression] = STATE(3035), + [sym_makeref_expression] = STATE(3035), + [sym_ref_expression] = STATE(3035), + [sym_reftype_expression] = STATE(3035), + [sym_refvalue_expression] = STATE(3035), + [sym_stackalloc_expression] = STATE(3035), + [sym_range_expression] = STATE(3035), + [sym_tuple_expression] = STATE(2415), + [sym_literal] = STATE(3035), + [sym_character_literal] = STATE(3037), + [sym_string_literal] = STATE(3037), + [sym_raw_string_literal] = STATE(3037), + [sym_boolean_literal] = STATE(3037), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3035), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(1035), [sym_preproc_endregion] = STATE(1035), [sym_preproc_line] = STATE(1035), @@ -216774,47 +216660,47 @@ 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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3396), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3455), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1153), - [anon_sym_LPAREN] = ACTIONS(1559), - [anon_sym_ref] = ACTIONS(1561), - [anon_sym_LBRACE] = ACTIONS(1159), - [anon_sym_delegate] = ACTIONS(1161), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1239), + [anon_sym_LPAREN] = ACTIONS(2261), + [anon_sym_ref] = ACTIONS(2263), + [anon_sym_LBRACE] = ACTIONS(1245), + [anon_sym_delegate] = ACTIONS(1247), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1529), + [anon_sym_new] = ACTIONS(1935), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1167), - [anon_sym_BANG] = ACTIONS(1565), - [anon_sym_TILDE] = ACTIONS(1565), - [anon_sym_PLUS_PLUS] = ACTIONS(1565), - [anon_sym_DASH_DASH] = ACTIONS(1565), - [anon_sym_true] = ACTIONS(1173), - [anon_sym_false] = ACTIONS(1173), - [anon_sym_PLUS] = ACTIONS(1563), - [anon_sym_DASH] = ACTIONS(1563), - [anon_sym_STAR] = ACTIONS(1567), - [anon_sym_CARET] = ACTIONS(1565), - [anon_sym_AMP] = ACTIONS(1565), - [anon_sym_this] = ACTIONS(1177), + [anon_sym_checked] = ACTIONS(1251), + [anon_sym_BANG] = ACTIONS(2267), + [anon_sym_TILDE] = ACTIONS(2267), + [anon_sym_PLUS_PLUS] = ACTIONS(2267), + [anon_sym_DASH_DASH] = ACTIONS(2267), + [anon_sym_true] = ACTIONS(1257), + [anon_sym_false] = ACTIONS(1257), + [anon_sym_PLUS] = ACTIONS(2265), + [anon_sym_DASH] = ACTIONS(2265), + [anon_sym_STAR] = ACTIONS(1941), + [anon_sym_CARET] = ACTIONS(2267), + [anon_sym_AMP] = ACTIONS(2267), + [anon_sym_this] = ACTIONS(1261), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1179), + [anon_sym_base] = ACTIONS(1263), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1181), - [anon_sym_unchecked] = ACTIONS(1167), + [sym_predefined_type] = ACTIONS(1265), + [anon_sym_unchecked] = ACTIONS(1251), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1183), - [anon_sym_throw] = ACTIONS(1569), + [anon_sym_default] = ACTIONS(1267), + [anon_sym_throw] = ACTIONS(2269), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1571), - [anon_sym_DOT_DOT] = ACTIONS(1573), + [anon_sym_await] = ACTIONS(2271), + [anon_sym_DOT_DOT] = ACTIONS(2273), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -216827,19 +216713,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1191), - [anon_sym_sizeof] = ACTIONS(1193), - [anon_sym_typeof] = ACTIONS(1195), - [anon_sym___makeref] = ACTIONS(1197), - [anon_sym___reftype] = ACTIONS(1199), - [anon_sym___refvalue] = ACTIONS(1201), - [sym_null_literal] = ACTIONS(1203), - [anon_sym_SQUOTE] = ACTIONS(1205), - [sym_integer_literal] = ACTIONS(1203), - [sym_real_literal] = ACTIONS(1207), - [anon_sym_DQUOTE] = ACTIONS(1209), - [sym_verbatim_string_literal] = ACTIONS(1207), - [aux_sym_preproc_if_token1] = ACTIONS(1211), + [anon_sym_stackalloc] = ACTIONS(1275), + [anon_sym_sizeof] = ACTIONS(1277), + [anon_sym_typeof] = ACTIONS(1279), + [anon_sym___makeref] = ACTIONS(1281), + [anon_sym___reftype] = ACTIONS(1283), + [anon_sym___refvalue] = ACTIONS(1285), + [sym_null_literal] = ACTIONS(1287), + [anon_sym_SQUOTE] = ACTIONS(1289), + [sym_integer_literal] = ACTIONS(1287), + [sym_real_literal] = ACTIONS(1291), + [anon_sym_DQUOTE] = ACTIONS(1293), + [sym_verbatim_string_literal] = ACTIONS(1291), + [aux_sym_preproc_if_token1] = ACTIONS(1295), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -216850,90 +216736,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1213), - [sym_interpolation_verbatim_start] = ACTIONS(1215), - [sym_interpolation_raw_start] = ACTIONS(1217), - [sym_raw_string_start] = ACTIONS(1219), + [sym_interpolation_regular_start] = ACTIONS(1297), + [sym_interpolation_verbatim_start] = ACTIONS(1299), + [sym_interpolation_raw_start] = ACTIONS(1301), + [sym_raw_string_start] = ACTIONS(1303), }, [1036] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2610), - [sym__name] = STATE(5871), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2319), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(4442), - [sym_non_lvalue_expression] = STATE(3277), - [sym_lvalue_expression] = STATE(3280), - [sym__expression_statement_expression] = STATE(3228), - [sym_assignment_expression] = STATE(3289), - [sym_binary_expression] = STATE(3228), - [sym_postfix_unary_expression] = STATE(3289), - [sym_prefix_unary_expression] = STATE(3289), - [sym__pointer_indirection_expression] = STATE(2609), - [sym_query_expression] = STATE(3228), - [sym_from_clause] = STATE(6177), - [sym_conditional_expression] = STATE(3228), - [sym_conditional_access_expression] = STATE(3228), - [sym_as_expression] = STATE(3228), - [sym_is_expression] = STATE(3228), - [sym_is_pattern_expression] = STATE(3228), - [sym_cast_expression] = STATE(3228), - [sym_checked_expression] = STATE(3228), - [sym_invocation_expression] = STATE(3289), - [sym_switch_expression] = STATE(3228), - [sym_await_expression] = STATE(3289), - [sym_throw_expression] = STATE(3228), - [sym_element_access_expression] = STATE(2609), - [sym_interpolated_string_expression] = STATE(3228), - [sym_member_access_expression] = STATE(2609), - [sym_object_creation_expression] = STATE(3289), - [sym_parenthesized_expression] = STATE(3289), - [sym__parenthesized_lvalue_expression] = STATE(2609), - [sym_lambda_expression] = STATE(3228), - [sym__lambda_expression_init] = STATE(7636), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3228), - [sym_anonymous_method_expression] = STATE(3228), - [sym_anonymous_object_creation_expression] = STATE(3228), - [sym_implicit_array_creation_expression] = STATE(3228), - [sym_implicit_object_creation_expression] = STATE(3228), - [sym_implicit_stackalloc_expression] = STATE(3228), - [sym_initializer_expression] = STATE(3228), - [sym_default_expression] = STATE(3228), - [sym_with_expression] = STATE(3228), - [sym_sizeof_expression] = STATE(3228), - [sym_typeof_expression] = STATE(3228), - [sym_makeref_expression] = STATE(3228), - [sym_ref_expression] = STATE(3228), - [sym_reftype_expression] = STATE(3228), - [sym_refvalue_expression] = STATE(3228), - [sym_stackalloc_expression] = STATE(3228), - [sym_range_expression] = STATE(3228), - [sym_tuple_expression] = STATE(2609), - [sym_literal] = STATE(3228), - [sym_character_literal] = STATE(3278), - [sym_string_literal] = STATE(3278), - [sym_raw_string_literal] = STATE(3278), - [sym_boolean_literal] = STATE(3278), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3228), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2416), + [sym__name] = STATE(5885), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2404), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(4144), + [sym_non_lvalue_expression] = STATE(3040), + [sym_lvalue_expression] = STATE(3115), + [sym__expression_statement_expression] = STATE(3035), + [sym_assignment_expression] = STATE(3043), + [sym_binary_expression] = STATE(3035), + [sym_postfix_unary_expression] = STATE(3043), + [sym_prefix_unary_expression] = STATE(3043), + [sym__pointer_indirection_expression] = STATE(2415), + [sym_query_expression] = STATE(3035), + [sym_from_clause] = STATE(6162), + [sym_conditional_expression] = STATE(3035), + [sym_conditional_access_expression] = STATE(3035), + [sym_as_expression] = STATE(3035), + [sym_is_expression] = STATE(3035), + [sym_is_pattern_expression] = STATE(3035), + [sym_cast_expression] = STATE(3035), + [sym_checked_expression] = STATE(3035), + [sym_invocation_expression] = STATE(3043), + [sym_switch_expression] = STATE(3035), + [sym_await_expression] = STATE(3043), + [sym_throw_expression] = STATE(3035), + [sym_element_access_expression] = STATE(2415), + [sym_interpolated_string_expression] = STATE(3035), + [sym_member_access_expression] = STATE(2415), + [sym_object_creation_expression] = STATE(3043), + [sym_parenthesized_expression] = STATE(3043), + [sym__parenthesized_lvalue_expression] = STATE(2415), + [sym_lambda_expression] = STATE(3035), + [sym__lambda_expression_init] = STATE(7416), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3035), + [sym_anonymous_method_expression] = STATE(3035), + [sym_anonymous_object_creation_expression] = STATE(3035), + [sym_implicit_array_creation_expression] = STATE(3035), + [sym_implicit_object_creation_expression] = STATE(3035), + [sym_implicit_stackalloc_expression] = STATE(3035), + [sym_initializer_expression] = STATE(3035), + [sym_default_expression] = STATE(3035), + [sym_with_expression] = STATE(3035), + [sym_sizeof_expression] = STATE(3035), + [sym_typeof_expression] = STATE(3035), + [sym_makeref_expression] = STATE(3035), + [sym_ref_expression] = STATE(3035), + [sym_reftype_expression] = STATE(3035), + [sym_refvalue_expression] = STATE(3035), + [sym_stackalloc_expression] = STATE(3035), + [sym_range_expression] = STATE(3035), + [sym_tuple_expression] = STATE(2415), + [sym_literal] = STATE(3035), + [sym_character_literal] = STATE(3037), + [sym_string_literal] = STATE(3037), + [sym_raw_string_literal] = STATE(3037), + [sym_boolean_literal] = STATE(3037), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3035), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(1036), [sym_preproc_endregion] = STATE(1036), [sym_preproc_line] = STATE(1036), @@ -216943,47 +216829,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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3396), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3455), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1153), - [anon_sym_LPAREN] = ACTIONS(1559), - [anon_sym_ref] = ACTIONS(1561), - [anon_sym_LBRACE] = ACTIONS(1159), - [anon_sym_delegate] = ACTIONS(1161), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1239), + [anon_sym_LPAREN] = ACTIONS(2261), + [anon_sym_ref] = ACTIONS(2263), + [anon_sym_LBRACE] = ACTIONS(1245), + [anon_sym_delegate] = ACTIONS(1247), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1529), + [anon_sym_new] = ACTIONS(1935), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1167), - [anon_sym_BANG] = ACTIONS(1565), - [anon_sym_TILDE] = ACTIONS(1565), - [anon_sym_PLUS_PLUS] = ACTIONS(1565), - [anon_sym_DASH_DASH] = ACTIONS(1565), - [anon_sym_true] = ACTIONS(1173), - [anon_sym_false] = ACTIONS(1173), - [anon_sym_PLUS] = ACTIONS(1563), - [anon_sym_DASH] = ACTIONS(1563), - [anon_sym_STAR] = ACTIONS(1567), - [anon_sym_CARET] = ACTIONS(1565), - [anon_sym_AMP] = ACTIONS(1565), - [anon_sym_this] = ACTIONS(1177), + [anon_sym_checked] = ACTIONS(1251), + [anon_sym_BANG] = ACTIONS(2267), + [anon_sym_TILDE] = ACTIONS(2267), + [anon_sym_PLUS_PLUS] = ACTIONS(2267), + [anon_sym_DASH_DASH] = ACTIONS(2267), + [anon_sym_true] = ACTIONS(1257), + [anon_sym_false] = ACTIONS(1257), + [anon_sym_PLUS] = ACTIONS(2265), + [anon_sym_DASH] = ACTIONS(2265), + [anon_sym_STAR] = ACTIONS(1941), + [anon_sym_CARET] = ACTIONS(2267), + [anon_sym_AMP] = ACTIONS(2267), + [anon_sym_this] = ACTIONS(1261), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1179), + [anon_sym_base] = ACTIONS(1263), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1181), - [anon_sym_unchecked] = ACTIONS(1167), + [sym_predefined_type] = ACTIONS(1265), + [anon_sym_unchecked] = ACTIONS(1251), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1183), - [anon_sym_throw] = ACTIONS(1569), + [anon_sym_default] = ACTIONS(1267), + [anon_sym_throw] = ACTIONS(2269), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1571), - [anon_sym_DOT_DOT] = ACTIONS(1573), + [anon_sym_await] = ACTIONS(2271), + [anon_sym_DOT_DOT] = ACTIONS(2273), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -216996,19 +216882,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1191), - [anon_sym_sizeof] = ACTIONS(1193), - [anon_sym_typeof] = ACTIONS(1195), - [anon_sym___makeref] = ACTIONS(1197), - [anon_sym___reftype] = ACTIONS(1199), - [anon_sym___refvalue] = ACTIONS(1201), - [sym_null_literal] = ACTIONS(1203), - [anon_sym_SQUOTE] = ACTIONS(1205), - [sym_integer_literal] = ACTIONS(1203), - [sym_real_literal] = ACTIONS(1207), - [anon_sym_DQUOTE] = ACTIONS(1209), - [sym_verbatim_string_literal] = ACTIONS(1207), - [aux_sym_preproc_if_token1] = ACTIONS(1211), + [anon_sym_stackalloc] = ACTIONS(1275), + [anon_sym_sizeof] = ACTIONS(1277), + [anon_sym_typeof] = ACTIONS(1279), + [anon_sym___makeref] = ACTIONS(1281), + [anon_sym___reftype] = ACTIONS(1283), + [anon_sym___refvalue] = ACTIONS(1285), + [sym_null_literal] = ACTIONS(1287), + [anon_sym_SQUOTE] = ACTIONS(1289), + [sym_integer_literal] = ACTIONS(1287), + [sym_real_literal] = ACTIONS(1291), + [anon_sym_DQUOTE] = ACTIONS(1293), + [sym_verbatim_string_literal] = ACTIONS(1291), + [aux_sym_preproc_if_token1] = ACTIONS(1295), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -217019,90 +216905,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1213), - [sym_interpolation_verbatim_start] = ACTIONS(1215), - [sym_interpolation_raw_start] = ACTIONS(1217), - [sym_raw_string_start] = ACTIONS(1219), + [sym_interpolation_regular_start] = ACTIONS(1297), + [sym_interpolation_verbatim_start] = ACTIONS(1299), + [sym_interpolation_raw_start] = ACTIONS(1301), + [sym_raw_string_start] = ACTIONS(1303), }, [1037] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2610), - [sym__name] = STATE(5871), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2319), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(4443), - [sym_non_lvalue_expression] = STATE(3277), - [sym_lvalue_expression] = STATE(3280), - [sym__expression_statement_expression] = STATE(3228), - [sym_assignment_expression] = STATE(3289), - [sym_binary_expression] = STATE(3228), - [sym_postfix_unary_expression] = STATE(3289), - [sym_prefix_unary_expression] = STATE(3289), - [sym__pointer_indirection_expression] = STATE(2609), - [sym_query_expression] = STATE(3228), - [sym_from_clause] = STATE(6177), - [sym_conditional_expression] = STATE(3228), - [sym_conditional_access_expression] = STATE(3228), - [sym_as_expression] = STATE(3228), - [sym_is_expression] = STATE(3228), - [sym_is_pattern_expression] = STATE(3228), - [sym_cast_expression] = STATE(3228), - [sym_checked_expression] = STATE(3228), - [sym_invocation_expression] = STATE(3289), - [sym_switch_expression] = STATE(3228), - [sym_await_expression] = STATE(3289), - [sym_throw_expression] = STATE(3228), - [sym_element_access_expression] = STATE(2609), - [sym_interpolated_string_expression] = STATE(3228), - [sym_member_access_expression] = STATE(2609), - [sym_object_creation_expression] = STATE(3289), - [sym_parenthesized_expression] = STATE(3289), - [sym__parenthesized_lvalue_expression] = STATE(2609), - [sym_lambda_expression] = STATE(3228), - [sym__lambda_expression_init] = STATE(7636), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3228), - [sym_anonymous_method_expression] = STATE(3228), - [sym_anonymous_object_creation_expression] = STATE(3228), - [sym_implicit_array_creation_expression] = STATE(3228), - [sym_implicit_object_creation_expression] = STATE(3228), - [sym_implicit_stackalloc_expression] = STATE(3228), - [sym_initializer_expression] = STATE(3228), - [sym_default_expression] = STATE(3228), - [sym_with_expression] = STATE(3228), - [sym_sizeof_expression] = STATE(3228), - [sym_typeof_expression] = STATE(3228), - [sym_makeref_expression] = STATE(3228), - [sym_ref_expression] = STATE(3228), - [sym_reftype_expression] = STATE(3228), - [sym_refvalue_expression] = STATE(3228), - [sym_stackalloc_expression] = STATE(3228), - [sym_range_expression] = STATE(3228), - [sym_tuple_expression] = STATE(2609), - [sym_literal] = STATE(3228), - [sym_character_literal] = STATE(3278), - [sym_string_literal] = STATE(3278), - [sym_raw_string_literal] = STATE(3278), - [sym_boolean_literal] = STATE(3278), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3228), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2416), + [sym__name] = STATE(5885), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2404), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(4118), + [sym_non_lvalue_expression] = STATE(3040), + [sym_lvalue_expression] = STATE(3115), + [sym__expression_statement_expression] = STATE(3035), + [sym_assignment_expression] = STATE(3043), + [sym_binary_expression] = STATE(3035), + [sym_postfix_unary_expression] = STATE(3043), + [sym_prefix_unary_expression] = STATE(3043), + [sym__pointer_indirection_expression] = STATE(2415), + [sym_query_expression] = STATE(3035), + [sym_from_clause] = STATE(6162), + [sym_conditional_expression] = STATE(3035), + [sym_conditional_access_expression] = STATE(3035), + [sym_as_expression] = STATE(3035), + [sym_is_expression] = STATE(3035), + [sym_is_pattern_expression] = STATE(3035), + [sym_cast_expression] = STATE(3035), + [sym_checked_expression] = STATE(3035), + [sym_invocation_expression] = STATE(3043), + [sym_switch_expression] = STATE(3035), + [sym_await_expression] = STATE(3043), + [sym_throw_expression] = STATE(3035), + [sym_element_access_expression] = STATE(2415), + [sym_interpolated_string_expression] = STATE(3035), + [sym_member_access_expression] = STATE(2415), + [sym_object_creation_expression] = STATE(3043), + [sym_parenthesized_expression] = STATE(3043), + [sym__parenthesized_lvalue_expression] = STATE(2415), + [sym_lambda_expression] = STATE(3035), + [sym__lambda_expression_init] = STATE(7416), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3035), + [sym_anonymous_method_expression] = STATE(3035), + [sym_anonymous_object_creation_expression] = STATE(3035), + [sym_implicit_array_creation_expression] = STATE(3035), + [sym_implicit_object_creation_expression] = STATE(3035), + [sym_implicit_stackalloc_expression] = STATE(3035), + [sym_initializer_expression] = STATE(3035), + [sym_default_expression] = STATE(3035), + [sym_with_expression] = STATE(3035), + [sym_sizeof_expression] = STATE(3035), + [sym_typeof_expression] = STATE(3035), + [sym_makeref_expression] = STATE(3035), + [sym_ref_expression] = STATE(3035), + [sym_reftype_expression] = STATE(3035), + [sym_refvalue_expression] = STATE(3035), + [sym_stackalloc_expression] = STATE(3035), + [sym_range_expression] = STATE(3035), + [sym_tuple_expression] = STATE(2415), + [sym_literal] = STATE(3035), + [sym_character_literal] = STATE(3037), + [sym_string_literal] = STATE(3037), + [sym_raw_string_literal] = STATE(3037), + [sym_boolean_literal] = STATE(3037), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3035), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(1037), [sym_preproc_endregion] = STATE(1037), [sym_preproc_line] = STATE(1037), @@ -217112,47 +216998,47 @@ 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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3396), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3455), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1153), - [anon_sym_LPAREN] = ACTIONS(1559), - [anon_sym_ref] = ACTIONS(1561), - [anon_sym_LBRACE] = ACTIONS(1159), - [anon_sym_delegate] = ACTIONS(1161), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1239), + [anon_sym_LPAREN] = ACTIONS(2261), + [anon_sym_ref] = ACTIONS(2263), + [anon_sym_LBRACE] = ACTIONS(1245), + [anon_sym_delegate] = ACTIONS(1247), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1529), + [anon_sym_new] = ACTIONS(1935), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1167), - [anon_sym_BANG] = ACTIONS(1565), - [anon_sym_TILDE] = ACTIONS(1565), - [anon_sym_PLUS_PLUS] = ACTIONS(1565), - [anon_sym_DASH_DASH] = ACTIONS(1565), - [anon_sym_true] = ACTIONS(1173), - [anon_sym_false] = ACTIONS(1173), - [anon_sym_PLUS] = ACTIONS(1563), - [anon_sym_DASH] = ACTIONS(1563), - [anon_sym_STAR] = ACTIONS(1567), - [anon_sym_CARET] = ACTIONS(1565), - [anon_sym_AMP] = ACTIONS(1565), - [anon_sym_this] = ACTIONS(1177), + [anon_sym_checked] = ACTIONS(1251), + [anon_sym_BANG] = ACTIONS(2267), + [anon_sym_TILDE] = ACTIONS(2267), + [anon_sym_PLUS_PLUS] = ACTIONS(2267), + [anon_sym_DASH_DASH] = ACTIONS(2267), + [anon_sym_true] = ACTIONS(1257), + [anon_sym_false] = ACTIONS(1257), + [anon_sym_PLUS] = ACTIONS(2265), + [anon_sym_DASH] = ACTIONS(2265), + [anon_sym_STAR] = ACTIONS(1941), + [anon_sym_CARET] = ACTIONS(2267), + [anon_sym_AMP] = ACTIONS(2267), + [anon_sym_this] = ACTIONS(1261), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1179), + [anon_sym_base] = ACTIONS(1263), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1181), - [anon_sym_unchecked] = ACTIONS(1167), + [sym_predefined_type] = ACTIONS(1265), + [anon_sym_unchecked] = ACTIONS(1251), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1183), - [anon_sym_throw] = ACTIONS(1569), + [anon_sym_default] = ACTIONS(1267), + [anon_sym_throw] = ACTIONS(2269), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1571), - [anon_sym_DOT_DOT] = ACTIONS(1573), + [anon_sym_await] = ACTIONS(2271), + [anon_sym_DOT_DOT] = ACTIONS(2273), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -217165,19 +217051,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1191), - [anon_sym_sizeof] = ACTIONS(1193), - [anon_sym_typeof] = ACTIONS(1195), - [anon_sym___makeref] = ACTIONS(1197), - [anon_sym___reftype] = ACTIONS(1199), - [anon_sym___refvalue] = ACTIONS(1201), - [sym_null_literal] = ACTIONS(1203), - [anon_sym_SQUOTE] = ACTIONS(1205), - [sym_integer_literal] = ACTIONS(1203), - [sym_real_literal] = ACTIONS(1207), - [anon_sym_DQUOTE] = ACTIONS(1209), - [sym_verbatim_string_literal] = ACTIONS(1207), - [aux_sym_preproc_if_token1] = ACTIONS(1211), + [anon_sym_stackalloc] = ACTIONS(1275), + [anon_sym_sizeof] = ACTIONS(1277), + [anon_sym_typeof] = ACTIONS(1279), + [anon_sym___makeref] = ACTIONS(1281), + [anon_sym___reftype] = ACTIONS(1283), + [anon_sym___refvalue] = ACTIONS(1285), + [sym_null_literal] = ACTIONS(1287), + [anon_sym_SQUOTE] = ACTIONS(1289), + [sym_integer_literal] = ACTIONS(1287), + [sym_real_literal] = ACTIONS(1291), + [anon_sym_DQUOTE] = ACTIONS(1293), + [sym_verbatim_string_literal] = ACTIONS(1291), + [aux_sym_preproc_if_token1] = ACTIONS(1295), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -217188,90 +217074,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1213), - [sym_interpolation_verbatim_start] = ACTIONS(1215), - [sym_interpolation_raw_start] = ACTIONS(1217), - [sym_raw_string_start] = ACTIONS(1219), + [sym_interpolation_regular_start] = ACTIONS(1297), + [sym_interpolation_verbatim_start] = ACTIONS(1299), + [sym_interpolation_raw_start] = ACTIONS(1301), + [sym_raw_string_start] = ACTIONS(1303), }, [1038] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2610), - [sym__name] = STATE(5896), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2384), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(4661), - [sym_non_lvalue_expression] = STATE(3277), - [sym_lvalue_expression] = STATE(3392), - [sym__expression_statement_expression] = STATE(3228), - [sym_assignment_expression] = STATE(3289), - [sym_binary_expression] = STATE(3228), - [sym_postfix_unary_expression] = STATE(3289), - [sym_prefix_unary_expression] = STATE(3289), - [sym__pointer_indirection_expression] = STATE(2609), - [sym_query_expression] = STATE(3228), - [sym_from_clause] = STATE(6173), - [sym_conditional_expression] = STATE(3228), - [sym_conditional_access_expression] = STATE(3228), - [sym_as_expression] = STATE(3228), - [sym_is_expression] = STATE(3228), - [sym_is_pattern_expression] = STATE(3228), - [sym_cast_expression] = STATE(3228), - [sym_checked_expression] = STATE(3228), - [sym_invocation_expression] = STATE(3289), - [sym_switch_expression] = STATE(3228), - [sym_await_expression] = STATE(3289), - [sym_throw_expression] = STATE(3228), - [sym_element_access_expression] = STATE(2609), - [sym_interpolated_string_expression] = STATE(3228), - [sym_member_access_expression] = STATE(2609), - [sym_object_creation_expression] = STATE(3289), - [sym_parenthesized_expression] = STATE(3289), - [sym__parenthesized_lvalue_expression] = STATE(2609), - [sym_lambda_expression] = STATE(3228), - [sym__lambda_expression_init] = STATE(7334), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3228), - [sym_anonymous_method_expression] = STATE(3228), - [sym_anonymous_object_creation_expression] = STATE(3228), - [sym_implicit_array_creation_expression] = STATE(3228), - [sym_implicit_object_creation_expression] = STATE(3228), - [sym_implicit_stackalloc_expression] = STATE(3228), - [sym_initializer_expression] = STATE(3228), - [sym_default_expression] = STATE(3228), - [sym_with_expression] = STATE(3228), - [sym_sizeof_expression] = STATE(3228), - [sym_typeof_expression] = STATE(3228), - [sym_makeref_expression] = STATE(3228), - [sym_ref_expression] = STATE(3228), - [sym_reftype_expression] = STATE(3228), - [sym_refvalue_expression] = STATE(3228), - [sym_stackalloc_expression] = STATE(3228), - [sym_range_expression] = STATE(3228), - [sym_tuple_expression] = STATE(2609), - [sym_literal] = STATE(3228), - [sym_character_literal] = STATE(3278), - [sym_string_literal] = STATE(3278), - [sym_raw_string_literal] = STATE(3278), - [sym_boolean_literal] = STATE(3278), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3228), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2416), + [sym__name] = STATE(5885), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2404), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(4120), + [sym_non_lvalue_expression] = STATE(3040), + [sym_lvalue_expression] = STATE(3115), + [sym__expression_statement_expression] = STATE(3035), + [sym_assignment_expression] = STATE(3043), + [sym_binary_expression] = STATE(3035), + [sym_postfix_unary_expression] = STATE(3043), + [sym_prefix_unary_expression] = STATE(3043), + [sym__pointer_indirection_expression] = STATE(2415), + [sym_query_expression] = STATE(3035), + [sym_from_clause] = STATE(6162), + [sym_conditional_expression] = STATE(3035), + [sym_conditional_access_expression] = STATE(3035), + [sym_as_expression] = STATE(3035), + [sym_is_expression] = STATE(3035), + [sym_is_pattern_expression] = STATE(3035), + [sym_cast_expression] = STATE(3035), + [sym_checked_expression] = STATE(3035), + [sym_invocation_expression] = STATE(3043), + [sym_switch_expression] = STATE(3035), + [sym_await_expression] = STATE(3043), + [sym_throw_expression] = STATE(3035), + [sym_element_access_expression] = STATE(2415), + [sym_interpolated_string_expression] = STATE(3035), + [sym_member_access_expression] = STATE(2415), + [sym_object_creation_expression] = STATE(3043), + [sym_parenthesized_expression] = STATE(3043), + [sym__parenthesized_lvalue_expression] = STATE(2415), + [sym_lambda_expression] = STATE(3035), + [sym__lambda_expression_init] = STATE(7416), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3035), + [sym_anonymous_method_expression] = STATE(3035), + [sym_anonymous_object_creation_expression] = STATE(3035), + [sym_implicit_array_creation_expression] = STATE(3035), + [sym_implicit_object_creation_expression] = STATE(3035), + [sym_implicit_stackalloc_expression] = STATE(3035), + [sym_initializer_expression] = STATE(3035), + [sym_default_expression] = STATE(3035), + [sym_with_expression] = STATE(3035), + [sym_sizeof_expression] = STATE(3035), + [sym_typeof_expression] = STATE(3035), + [sym_makeref_expression] = STATE(3035), + [sym_ref_expression] = STATE(3035), + [sym_reftype_expression] = STATE(3035), + [sym_refvalue_expression] = STATE(3035), + [sym_stackalloc_expression] = STATE(3035), + [sym_range_expression] = STATE(3035), + [sym_tuple_expression] = STATE(2415), + [sym_literal] = STATE(3035), + [sym_character_literal] = STATE(3037), + [sym_string_literal] = STATE(3037), + [sym_raw_string_literal] = STATE(3037), + [sym_boolean_literal] = STATE(3037), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3035), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(1038), [sym_preproc_endregion] = STATE(1038), [sym_preproc_line] = STATE(1038), @@ -217281,47 +217167,47 @@ 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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3396), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3455), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1153), - [anon_sym_LPAREN] = ACTIONS(1859), - [anon_sym_ref] = ACTIONS(1861), - [anon_sym_LBRACE] = ACTIONS(1159), - [anon_sym_delegate] = ACTIONS(1161), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1239), + [anon_sym_LPAREN] = ACTIONS(2261), + [anon_sym_ref] = ACTIONS(2263), + [anon_sym_LBRACE] = ACTIONS(1245), + [anon_sym_delegate] = ACTIONS(1247), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1863), + [anon_sym_new] = ACTIONS(1935), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1167), - [anon_sym_BANG] = ACTIONS(1867), - [anon_sym_TILDE] = ACTIONS(1867), - [anon_sym_PLUS_PLUS] = ACTIONS(1867), - [anon_sym_DASH_DASH] = ACTIONS(1867), - [anon_sym_true] = ACTIONS(1173), - [anon_sym_false] = ACTIONS(1173), - [anon_sym_PLUS] = ACTIONS(1865), - [anon_sym_DASH] = ACTIONS(1865), - [anon_sym_STAR] = ACTIONS(1869), - [anon_sym_CARET] = ACTIONS(1867), - [anon_sym_AMP] = ACTIONS(1867), - [anon_sym_this] = ACTIONS(1177), + [anon_sym_checked] = ACTIONS(1251), + [anon_sym_BANG] = ACTIONS(2267), + [anon_sym_TILDE] = ACTIONS(2267), + [anon_sym_PLUS_PLUS] = ACTIONS(2267), + [anon_sym_DASH_DASH] = ACTIONS(2267), + [anon_sym_true] = ACTIONS(1257), + [anon_sym_false] = ACTIONS(1257), + [anon_sym_PLUS] = ACTIONS(2265), + [anon_sym_DASH] = ACTIONS(2265), + [anon_sym_STAR] = ACTIONS(1941), + [anon_sym_CARET] = ACTIONS(2267), + [anon_sym_AMP] = ACTIONS(2267), + [anon_sym_this] = ACTIONS(1261), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1179), + [anon_sym_base] = ACTIONS(1263), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1181), - [anon_sym_unchecked] = ACTIONS(1167), + [sym_predefined_type] = ACTIONS(1265), + [anon_sym_unchecked] = ACTIONS(1251), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1183), - [anon_sym_throw] = ACTIONS(1871), + [anon_sym_default] = ACTIONS(1267), + [anon_sym_throw] = ACTIONS(2269), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1873), - [anon_sym_DOT_DOT] = ACTIONS(1875), + [anon_sym_await] = ACTIONS(2271), + [anon_sym_DOT_DOT] = ACTIONS(2273), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -217334,19 +217220,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1191), - [anon_sym_sizeof] = ACTIONS(1193), - [anon_sym_typeof] = ACTIONS(1195), - [anon_sym___makeref] = ACTIONS(1197), - [anon_sym___reftype] = ACTIONS(1199), - [anon_sym___refvalue] = ACTIONS(1201), - [sym_null_literal] = ACTIONS(1203), - [anon_sym_SQUOTE] = ACTIONS(1205), - [sym_integer_literal] = ACTIONS(1203), - [sym_real_literal] = ACTIONS(1207), - [anon_sym_DQUOTE] = ACTIONS(1209), - [sym_verbatim_string_literal] = ACTIONS(1207), - [aux_sym_preproc_if_token1] = ACTIONS(1211), + [anon_sym_stackalloc] = ACTIONS(1275), + [anon_sym_sizeof] = ACTIONS(1277), + [anon_sym_typeof] = ACTIONS(1279), + [anon_sym___makeref] = ACTIONS(1281), + [anon_sym___reftype] = ACTIONS(1283), + [anon_sym___refvalue] = ACTIONS(1285), + [sym_null_literal] = ACTIONS(1287), + [anon_sym_SQUOTE] = ACTIONS(1289), + [sym_integer_literal] = ACTIONS(1287), + [sym_real_literal] = ACTIONS(1291), + [anon_sym_DQUOTE] = ACTIONS(1293), + [sym_verbatim_string_literal] = ACTIONS(1291), + [aux_sym_preproc_if_token1] = ACTIONS(1295), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -217357,90 +217243,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1213), - [sym_interpolation_verbatim_start] = ACTIONS(1215), - [sym_interpolation_raw_start] = ACTIONS(1217), - [sym_raw_string_start] = ACTIONS(1219), + [sym_interpolation_regular_start] = ACTIONS(1297), + [sym_interpolation_verbatim_start] = ACTIONS(1299), + [sym_interpolation_raw_start] = ACTIONS(1301), + [sym_raw_string_start] = ACTIONS(1303), }, [1039] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(5910), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2247), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(5609), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3379), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3080), - [sym_postfix_unary_expression] = STATE(3111), - [sym_prefix_unary_expression] = STATE(3111), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6154), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3080), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3111), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3080), - [sym_member_access_expression] = STATE(2484), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3111), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7575), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(3080), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3080), - [sym_typeof_expression] = STATE(3080), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2484), - [sym_literal] = STATE(3080), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2416), + [sym__name] = STATE(5885), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2404), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(4168), + [sym_non_lvalue_expression] = STATE(3040), + [sym_lvalue_expression] = STATE(3115), + [sym__expression_statement_expression] = STATE(3035), + [sym_assignment_expression] = STATE(3043), + [sym_binary_expression] = STATE(3035), + [sym_postfix_unary_expression] = STATE(3043), + [sym_prefix_unary_expression] = STATE(3043), + [sym__pointer_indirection_expression] = STATE(2415), + [sym_query_expression] = STATE(3035), + [sym_from_clause] = STATE(6162), + [sym_conditional_expression] = STATE(3035), + [sym_conditional_access_expression] = STATE(3035), + [sym_as_expression] = STATE(3035), + [sym_is_expression] = STATE(3035), + [sym_is_pattern_expression] = STATE(3035), + [sym_cast_expression] = STATE(3035), + [sym_checked_expression] = STATE(3035), + [sym_invocation_expression] = STATE(3043), + [sym_switch_expression] = STATE(3035), + [sym_await_expression] = STATE(3043), + [sym_throw_expression] = STATE(3035), + [sym_element_access_expression] = STATE(2415), + [sym_interpolated_string_expression] = STATE(3035), + [sym_member_access_expression] = STATE(2415), + [sym_object_creation_expression] = STATE(3043), + [sym_parenthesized_expression] = STATE(3043), + [sym__parenthesized_lvalue_expression] = STATE(2415), + [sym_lambda_expression] = STATE(3035), + [sym__lambda_expression_init] = STATE(7416), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3035), + [sym_anonymous_method_expression] = STATE(3035), + [sym_anonymous_object_creation_expression] = STATE(3035), + [sym_implicit_array_creation_expression] = STATE(3035), + [sym_implicit_object_creation_expression] = STATE(3035), + [sym_implicit_stackalloc_expression] = STATE(3035), + [sym_initializer_expression] = STATE(3035), + [sym_default_expression] = STATE(3035), + [sym_with_expression] = STATE(3035), + [sym_sizeof_expression] = STATE(3035), + [sym_typeof_expression] = STATE(3035), + [sym_makeref_expression] = STATE(3035), + [sym_ref_expression] = STATE(3035), + [sym_reftype_expression] = STATE(3035), + [sym_refvalue_expression] = STATE(3035), + [sym_stackalloc_expression] = STATE(3035), + [sym_range_expression] = STATE(3035), + [sym_tuple_expression] = STATE(2415), + [sym_literal] = STATE(3035), + [sym_character_literal] = STATE(3037), + [sym_string_literal] = STATE(3037), + [sym_raw_string_literal] = STATE(3037), + [sym_boolean_literal] = STATE(3037), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3035), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(1039), [sym_preproc_endregion] = STATE(1039), [sym_preproc_line] = STATE(1039), @@ -217450,47 +217336,385 @@ 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(3067), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3455), + [sym__identifier_token] = ACTIONS(25), + [anon_sym_alias] = ACTIONS(29), + [anon_sym_global] = ACTIONS(29), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1239), + [anon_sym_LPAREN] = ACTIONS(2261), + [anon_sym_ref] = ACTIONS(2263), + [anon_sym_LBRACE] = ACTIONS(1245), + [anon_sym_delegate] = ACTIONS(1247), + [anon_sym_async] = ACTIONS(1045), + [anon_sym_file] = ACTIONS(29), + [anon_sym_new] = ACTIONS(1935), + [anon_sym_where] = ACTIONS(29), + [anon_sym_notnull] = ACTIONS(29), + [anon_sym_unmanaged] = ACTIONS(29), + [anon_sym_checked] = ACTIONS(1251), + [anon_sym_BANG] = ACTIONS(2267), + [anon_sym_TILDE] = ACTIONS(2267), + [anon_sym_PLUS_PLUS] = ACTIONS(2267), + [anon_sym_DASH_DASH] = ACTIONS(2267), + [anon_sym_true] = ACTIONS(1257), + [anon_sym_false] = ACTIONS(1257), + [anon_sym_PLUS] = ACTIONS(2265), + [anon_sym_DASH] = ACTIONS(2265), + [anon_sym_STAR] = ACTIONS(1941), + [anon_sym_CARET] = ACTIONS(2267), + [anon_sym_AMP] = ACTIONS(2267), + [anon_sym_this] = ACTIONS(1261), + [anon_sym_scoped] = ACTIONS(85), + [anon_sym_base] = ACTIONS(1263), + [anon_sym_var] = ACTIONS(89), + [sym_predefined_type] = ACTIONS(1265), + [anon_sym_unchecked] = ACTIONS(1251), + [anon_sym_yield] = ACTIONS(29), + [anon_sym_default] = ACTIONS(1267), + [anon_sym_throw] = ACTIONS(2269), + [anon_sym_when] = ACTIONS(29), + [anon_sym_await] = ACTIONS(2271), + [anon_sym_DOT_DOT] = ACTIONS(2273), + [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(1275), + [anon_sym_sizeof] = ACTIONS(1277), + [anon_sym_typeof] = ACTIONS(1279), + [anon_sym___makeref] = ACTIONS(1281), + [anon_sym___reftype] = ACTIONS(1283), + [anon_sym___refvalue] = ACTIONS(1285), + [sym_null_literal] = ACTIONS(1287), + [anon_sym_SQUOTE] = ACTIONS(1289), + [sym_integer_literal] = ACTIONS(1287), + [sym_real_literal] = ACTIONS(1291), + [anon_sym_DQUOTE] = ACTIONS(1293), + [sym_verbatim_string_literal] = ACTIONS(1291), + [aux_sym_preproc_if_token1] = ACTIONS(1295), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + [sym_interpolation_regular_start] = ACTIONS(1297), + [sym_interpolation_verbatim_start] = ACTIONS(1299), + [sym_interpolation_raw_start] = ACTIONS(1301), + [sym_raw_string_start] = ACTIONS(1303), + }, + [1040] = { + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2416), + [sym__name] = STATE(5885), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2404), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(2904), + [sym_non_lvalue_expression] = STATE(3040), + [sym_lvalue_expression] = STATE(3115), + [sym__expression_statement_expression] = STATE(3035), + [sym_assignment_expression] = STATE(3043), + [sym_binary_expression] = STATE(3035), + [sym_postfix_unary_expression] = STATE(3043), + [sym_prefix_unary_expression] = STATE(3043), + [sym__pointer_indirection_expression] = STATE(2415), + [sym_query_expression] = STATE(3035), + [sym_from_clause] = STATE(6162), + [sym_conditional_expression] = STATE(3035), + [sym_conditional_access_expression] = STATE(3035), + [sym_as_expression] = STATE(3035), + [sym_is_expression] = STATE(3035), + [sym_is_pattern_expression] = STATE(3035), + [sym_cast_expression] = STATE(3035), + [sym_checked_expression] = STATE(3035), + [sym_invocation_expression] = STATE(3043), + [sym_switch_expression] = STATE(3035), + [sym_await_expression] = STATE(3043), + [sym_throw_expression] = STATE(3035), + [sym_element_access_expression] = STATE(2415), + [sym_interpolated_string_expression] = STATE(3035), + [sym_member_access_expression] = STATE(2415), + [sym_object_creation_expression] = STATE(3043), + [sym_parenthesized_expression] = STATE(3043), + [sym__parenthesized_lvalue_expression] = STATE(2415), + [sym_lambda_expression] = STATE(3035), + [sym__lambda_expression_init] = STATE(7416), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3035), + [sym_anonymous_method_expression] = STATE(3035), + [sym_anonymous_object_creation_expression] = STATE(3035), + [sym_implicit_array_creation_expression] = STATE(3035), + [sym_implicit_object_creation_expression] = STATE(3035), + [sym_implicit_stackalloc_expression] = STATE(3035), + [sym_initializer_expression] = STATE(3035), + [sym_default_expression] = STATE(3035), + [sym_with_expression] = STATE(3035), + [sym_sizeof_expression] = STATE(3035), + [sym_typeof_expression] = STATE(3035), + [sym_makeref_expression] = STATE(3035), + [sym_ref_expression] = STATE(3035), + [sym_reftype_expression] = STATE(3035), + [sym_refvalue_expression] = STATE(3035), + [sym_stackalloc_expression] = STATE(3035), + [sym_range_expression] = STATE(3035), + [sym_tuple_expression] = STATE(2415), + [sym_literal] = STATE(3035), + [sym_character_literal] = STATE(3037), + [sym_string_literal] = STATE(3037), + [sym_raw_string_literal] = STATE(3037), + [sym_boolean_literal] = STATE(3037), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3035), + [sym_preproc_if_in_attribute_list] = STATE(5583), + [sym_preproc_region] = STATE(1040), + [sym_preproc_endregion] = STATE(1040), + [sym_preproc_line] = STATE(1040), + [sym_preproc_pragma] = STATE(1040), + [sym_preproc_nullable] = STATE(1040), + [sym_preproc_error] = STATE(1040), + [sym_preproc_warning] = STATE(1040), + [sym_preproc_define] = STATE(1040), + [sym_preproc_undef] = STATE(1040), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3455), + [sym__identifier_token] = ACTIONS(25), + [anon_sym_alias] = ACTIONS(29), + [anon_sym_global] = ACTIONS(29), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1239), + [anon_sym_LPAREN] = ACTIONS(2261), + [anon_sym_ref] = ACTIONS(2263), + [anon_sym_LBRACE] = ACTIONS(1245), + [anon_sym_delegate] = ACTIONS(1247), + [anon_sym_async] = ACTIONS(1045), + [anon_sym_file] = ACTIONS(29), + [anon_sym_new] = ACTIONS(1935), + [anon_sym_where] = ACTIONS(29), + [anon_sym_notnull] = ACTIONS(29), + [anon_sym_unmanaged] = ACTIONS(29), + [anon_sym_checked] = ACTIONS(1251), + [anon_sym_BANG] = ACTIONS(2267), + [anon_sym_TILDE] = ACTIONS(2267), + [anon_sym_PLUS_PLUS] = ACTIONS(2267), + [anon_sym_DASH_DASH] = ACTIONS(2267), + [anon_sym_true] = ACTIONS(1257), + [anon_sym_false] = ACTIONS(1257), + [anon_sym_PLUS] = ACTIONS(2265), + [anon_sym_DASH] = ACTIONS(2265), + [anon_sym_STAR] = ACTIONS(1941), + [anon_sym_CARET] = ACTIONS(2267), + [anon_sym_AMP] = ACTIONS(2267), + [anon_sym_this] = ACTIONS(1261), + [anon_sym_scoped] = ACTIONS(85), + [anon_sym_base] = ACTIONS(1263), + [anon_sym_var] = ACTIONS(89), + [sym_predefined_type] = ACTIONS(1265), + [anon_sym_unchecked] = ACTIONS(1251), + [anon_sym_yield] = ACTIONS(29), + [anon_sym_default] = ACTIONS(1267), + [anon_sym_throw] = ACTIONS(2269), + [anon_sym_when] = ACTIONS(29), + [anon_sym_await] = ACTIONS(2271), + [anon_sym_DOT_DOT] = ACTIONS(2273), + [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(1275), + [anon_sym_sizeof] = ACTIONS(1277), + [anon_sym_typeof] = ACTIONS(1279), + [anon_sym___makeref] = ACTIONS(1281), + [anon_sym___reftype] = ACTIONS(1283), + [anon_sym___refvalue] = ACTIONS(1285), + [sym_null_literal] = ACTIONS(1287), + [anon_sym_SQUOTE] = ACTIONS(1289), + [sym_integer_literal] = ACTIONS(1287), + [sym_real_literal] = ACTIONS(1291), + [anon_sym_DQUOTE] = ACTIONS(1293), + [sym_verbatim_string_literal] = ACTIONS(1291), + [aux_sym_preproc_if_token1] = ACTIONS(1295), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + [sym_interpolation_regular_start] = ACTIONS(1297), + [sym_interpolation_verbatim_start] = ACTIONS(1299), + [sym_interpolation_raw_start] = ACTIONS(1301), + [sym_raw_string_start] = ACTIONS(1303), + }, + [1041] = { + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2816), + [sym__name] = STATE(5875), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2321), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(4488), + [sym_non_lvalue_expression] = STATE(3495), + [sym_lvalue_expression] = STATE(3484), + [sym__expression_statement_expression] = STATE(3462), + [sym_assignment_expression] = STATE(3497), + [sym_binary_expression] = STATE(3462), + [sym_postfix_unary_expression] = STATE(3497), + [sym_prefix_unary_expression] = STATE(3497), + [sym__pointer_indirection_expression] = STATE(2815), + [sym_query_expression] = STATE(3462), + [sym_from_clause] = STATE(6142), + [sym_conditional_expression] = STATE(3462), + [sym_conditional_access_expression] = STATE(3462), + [sym_as_expression] = STATE(3462), + [sym_is_expression] = STATE(3462), + [sym_is_pattern_expression] = STATE(3462), + [sym_cast_expression] = STATE(3462), + [sym_checked_expression] = STATE(3462), + [sym_invocation_expression] = STATE(3497), + [sym_switch_expression] = STATE(3462), + [sym_await_expression] = STATE(3497), + [sym_throw_expression] = STATE(3462), + [sym_element_access_expression] = STATE(2815), + [sym_interpolated_string_expression] = STATE(3462), + [sym_member_access_expression] = STATE(2815), + [sym_object_creation_expression] = STATE(3497), + [sym_parenthesized_expression] = STATE(3497), + [sym__parenthesized_lvalue_expression] = STATE(2815), + [sym_lambda_expression] = STATE(3462), + [sym__lambda_expression_init] = STATE(7384), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3462), + [sym_anonymous_method_expression] = STATE(3462), + [sym_anonymous_object_creation_expression] = STATE(3462), + [sym_implicit_array_creation_expression] = STATE(3462), + [sym_implicit_object_creation_expression] = STATE(3462), + [sym_implicit_stackalloc_expression] = STATE(3462), + [sym_initializer_expression] = STATE(3462), + [sym_default_expression] = STATE(3462), + [sym_with_expression] = STATE(3462), + [sym_sizeof_expression] = STATE(3462), + [sym_typeof_expression] = STATE(3462), + [sym_makeref_expression] = STATE(3462), + [sym_ref_expression] = STATE(3462), + [sym_reftype_expression] = STATE(3462), + [sym_refvalue_expression] = STATE(3462), + [sym_stackalloc_expression] = STATE(3462), + [sym_range_expression] = STATE(3462), + [sym_tuple_expression] = STATE(2815), + [sym_literal] = STATE(3462), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2261), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3462), + [sym_preproc_if_in_attribute_list] = STATE(5583), + [sym_preproc_region] = STATE(1041), + [sym_preproc_endregion] = STATE(1041), + [sym_preproc_line] = STATE(1041), + [sym_preproc_pragma] = STATE(1041), + [sym_preproc_nullable] = STATE(1041), + [sym_preproc_error] = STATE(1041), + [sym_preproc_warning] = STATE(1041), + [sym_preproc_define] = STATE(1041), + [sym_preproc_undef] = STATE(1041), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), [aux_sym__lambda_expression_init_repeat1] = STATE(3367), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1481), - [anon_sym_LPAREN] = ACTIONS(895), - [anon_sym_ref] = ACTIONS(897), - [anon_sym_LBRACE] = ACTIONS(1487), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1305), + [anon_sym_LPAREN] = ACTIONS(1579), + [anon_sym_ref] = ACTIONS(1581), + [anon_sym_LBRACE] = ACTIONS(1311), + [anon_sym_delegate] = ACTIONS(1313), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1061), + [anon_sym_new] = ACTIONS(1583), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1067), - [anon_sym_BANG] = ACTIONS(1495), - [anon_sym_TILDE] = ACTIONS(1495), - [anon_sym_PLUS_PLUS] = ACTIONS(1495), - [anon_sym_DASH_DASH] = ACTIONS(1495), + [anon_sym_checked] = ACTIONS(1317), + [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(1493), - [anon_sym_DASH] = ACTIONS(1493), - [anon_sym_STAR] = ACTIONS(905), - [anon_sym_CARET] = ACTIONS(1495), - [anon_sym_AMP] = ACTIONS(1495), - [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(1321), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), + [anon_sym_base] = ACTIONS(1323), [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1067), + [anon_sym_unchecked] = ACTIONS(1317), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1079), + [anon_sym_throw] = ACTIONS(1591), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1081), - [anon_sym_DOT_DOT] = ACTIONS(911), + [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), @@ -217503,19 +217727,19 @@ static const uint16_t ts_parse_table[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(1331), [anon_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(1333), + [anon_sym___reftype] = ACTIONS(1335), + [anon_sym___refvalue] = ACTIONS(1337), [sym_null_literal] = ACTIONS(139), [anon_sym_SQUOTE] = ACTIONS(141), [sym_integer_literal] = ACTIONS(139), [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1089), + [aux_sym_preproc_if_token1] = ACTIONS(1339), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -217531,423 +217755,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), }, - [1040] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2610), - [sym__name] = STATE(5871), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2319), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(3145), - [sym_non_lvalue_expression] = STATE(3277), - [sym_lvalue_expression] = STATE(3280), - [sym__expression_statement_expression] = STATE(3228), - [sym_assignment_expression] = STATE(3289), - [sym_binary_expression] = STATE(3228), - [sym_postfix_unary_expression] = STATE(3289), - [sym_prefix_unary_expression] = STATE(3289), - [sym__pointer_indirection_expression] = STATE(2609), - [sym_query_expression] = STATE(3228), - [sym_from_clause] = STATE(6177), - [sym_conditional_expression] = STATE(3228), - [sym_conditional_access_expression] = STATE(3228), - [sym_as_expression] = STATE(3228), - [sym_is_expression] = STATE(3228), - [sym_is_pattern_expression] = STATE(3228), - [sym_cast_expression] = STATE(3228), - [sym_checked_expression] = STATE(3228), - [sym_invocation_expression] = STATE(3289), - [sym_switch_expression] = STATE(3228), - [sym_await_expression] = STATE(3289), - [sym_throw_expression] = STATE(3228), - [sym_element_access_expression] = STATE(2609), - [sym_interpolated_string_expression] = STATE(3228), - [sym_member_access_expression] = STATE(2609), - [sym_object_creation_expression] = STATE(3289), - [sym_parenthesized_expression] = STATE(3289), - [sym__parenthesized_lvalue_expression] = STATE(2609), - [sym_lambda_expression] = STATE(3228), - [sym__lambda_expression_init] = STATE(7636), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3228), - [sym_anonymous_method_expression] = STATE(3228), - [sym_anonymous_object_creation_expression] = STATE(3228), - [sym_implicit_array_creation_expression] = STATE(3228), - [sym_implicit_object_creation_expression] = STATE(3228), - [sym_implicit_stackalloc_expression] = STATE(3228), - [sym_initializer_expression] = STATE(3228), - [sym_default_expression] = STATE(3228), - [sym_with_expression] = STATE(3228), - [sym_sizeof_expression] = STATE(3228), - [sym_typeof_expression] = STATE(3228), - [sym_makeref_expression] = STATE(3228), - [sym_ref_expression] = STATE(3228), - [sym_reftype_expression] = STATE(3228), - [sym_refvalue_expression] = STATE(3228), - [sym_stackalloc_expression] = STATE(3228), - [sym_range_expression] = STATE(3228), - [sym_tuple_expression] = STATE(2609), - [sym_literal] = STATE(3228), - [sym_character_literal] = STATE(3278), - [sym_string_literal] = STATE(3278), - [sym_raw_string_literal] = STATE(3278), - [sym_boolean_literal] = STATE(3278), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3228), - [sym_preproc_if_in_attribute_list] = STATE(5576), - [sym_preproc_region] = STATE(1040), - [sym_preproc_endregion] = STATE(1040), - [sym_preproc_line] = STATE(1040), - [sym_preproc_pragma] = STATE(1040), - [sym_preproc_nullable] = STATE(1040), - [sym_preproc_error] = STATE(1040), - [sym_preproc_warning] = STATE(1040), - [sym_preproc_define] = STATE(1040), - [sym_preproc_undef] = STATE(1040), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3396), - [sym__identifier_token] = ACTIONS(25), - [anon_sym_alias] = ACTIONS(29), - [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1153), - [anon_sym_LPAREN] = ACTIONS(1559), - [anon_sym_ref] = ACTIONS(1561), - [anon_sym_LBRACE] = ACTIONS(1159), - [anon_sym_delegate] = ACTIONS(1161), - [anon_sym_async] = ACTIONS(1047), - [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1529), - [anon_sym_where] = ACTIONS(29), - [anon_sym_notnull] = ACTIONS(29), - [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1167), - [anon_sym_BANG] = ACTIONS(1565), - [anon_sym_TILDE] = ACTIONS(1565), - [anon_sym_PLUS_PLUS] = ACTIONS(1565), - [anon_sym_DASH_DASH] = ACTIONS(1565), - [anon_sym_true] = ACTIONS(1173), - [anon_sym_false] = ACTIONS(1173), - [anon_sym_PLUS] = ACTIONS(1563), - [anon_sym_DASH] = ACTIONS(1563), - [anon_sym_STAR] = ACTIONS(1567), - [anon_sym_CARET] = ACTIONS(1565), - [anon_sym_AMP] = ACTIONS(1565), - [anon_sym_this] = ACTIONS(1177), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1179), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1181), - [anon_sym_unchecked] = ACTIONS(1167), - [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1183), - [anon_sym_throw] = ACTIONS(1569), - [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1571), - [anon_sym_DOT_DOT] = ACTIONS(1573), - [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(1191), - [anon_sym_sizeof] = ACTIONS(1193), - [anon_sym_typeof] = ACTIONS(1195), - [anon_sym___makeref] = ACTIONS(1197), - [anon_sym___reftype] = ACTIONS(1199), - [anon_sym___refvalue] = ACTIONS(1201), - [sym_null_literal] = ACTIONS(1203), - [anon_sym_SQUOTE] = ACTIONS(1205), - [sym_integer_literal] = ACTIONS(1203), - [sym_real_literal] = ACTIONS(1207), - [anon_sym_DQUOTE] = ACTIONS(1209), - [sym_verbatim_string_literal] = ACTIONS(1207), - [aux_sym_preproc_if_token1] = ACTIONS(1211), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1213), - [sym_interpolation_verbatim_start] = ACTIONS(1215), - [sym_interpolation_raw_start] = ACTIONS(1217), - [sym_raw_string_start] = ACTIONS(1219), - }, - [1041] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2610), - [sym__name] = STATE(5896), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2384), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(4663), - [sym_non_lvalue_expression] = STATE(3277), - [sym_lvalue_expression] = STATE(3392), - [sym__expression_statement_expression] = STATE(3228), - [sym_assignment_expression] = STATE(3289), - [sym_binary_expression] = STATE(3228), - [sym_postfix_unary_expression] = STATE(3289), - [sym_prefix_unary_expression] = STATE(3289), - [sym__pointer_indirection_expression] = STATE(2609), - [sym_query_expression] = STATE(3228), - [sym_from_clause] = STATE(6173), - [sym_conditional_expression] = STATE(3228), - [sym_conditional_access_expression] = STATE(3228), - [sym_as_expression] = STATE(3228), - [sym_is_expression] = STATE(3228), - [sym_is_pattern_expression] = STATE(3228), - [sym_cast_expression] = STATE(3228), - [sym_checked_expression] = STATE(3228), - [sym_invocation_expression] = STATE(3289), - [sym_switch_expression] = STATE(3228), - [sym_await_expression] = STATE(3289), - [sym_throw_expression] = STATE(3228), - [sym_element_access_expression] = STATE(2609), - [sym_interpolated_string_expression] = STATE(3228), - [sym_member_access_expression] = STATE(2609), - [sym_object_creation_expression] = STATE(3289), - [sym_parenthesized_expression] = STATE(3289), - [sym__parenthesized_lvalue_expression] = STATE(2609), - [sym_lambda_expression] = STATE(3228), - [sym__lambda_expression_init] = STATE(7334), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3228), - [sym_anonymous_method_expression] = STATE(3228), - [sym_anonymous_object_creation_expression] = STATE(3228), - [sym_implicit_array_creation_expression] = STATE(3228), - [sym_implicit_object_creation_expression] = STATE(3228), - [sym_implicit_stackalloc_expression] = STATE(3228), - [sym_initializer_expression] = STATE(3228), - [sym_default_expression] = STATE(3228), - [sym_with_expression] = STATE(3228), - [sym_sizeof_expression] = STATE(3228), - [sym_typeof_expression] = STATE(3228), - [sym_makeref_expression] = STATE(3228), - [sym_ref_expression] = STATE(3228), - [sym_reftype_expression] = STATE(3228), - [sym_refvalue_expression] = STATE(3228), - [sym_stackalloc_expression] = STATE(3228), - [sym_range_expression] = STATE(3228), - [sym_tuple_expression] = STATE(2609), - [sym_literal] = STATE(3228), - [sym_character_literal] = STATE(3278), - [sym_string_literal] = STATE(3278), - [sym_raw_string_literal] = STATE(3278), - [sym_boolean_literal] = STATE(3278), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3228), - [sym_preproc_if_in_attribute_list] = STATE(5576), - [sym_preproc_region] = STATE(1041), - [sym_preproc_endregion] = STATE(1041), - [sym_preproc_line] = STATE(1041), - [sym_preproc_pragma] = STATE(1041), - [sym_preproc_nullable] = STATE(1041), - [sym_preproc_error] = STATE(1041), - [sym_preproc_warning] = STATE(1041), - [sym_preproc_define] = STATE(1041), - [sym_preproc_undef] = STATE(1041), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3396), - [sym__identifier_token] = ACTIONS(25), - [anon_sym_alias] = ACTIONS(29), - [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1153), - [anon_sym_LPAREN] = ACTIONS(1859), - [anon_sym_ref] = ACTIONS(1861), - [anon_sym_LBRACE] = ACTIONS(1159), - [anon_sym_delegate] = ACTIONS(1161), - [anon_sym_async] = ACTIONS(1047), - [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1863), - [anon_sym_where] = ACTIONS(29), - [anon_sym_notnull] = ACTIONS(29), - [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1167), - [anon_sym_BANG] = ACTIONS(1867), - [anon_sym_TILDE] = ACTIONS(1867), - [anon_sym_PLUS_PLUS] = ACTIONS(1867), - [anon_sym_DASH_DASH] = ACTIONS(1867), - [anon_sym_true] = ACTIONS(1173), - [anon_sym_false] = ACTIONS(1173), - [anon_sym_PLUS] = ACTIONS(1865), - [anon_sym_DASH] = ACTIONS(1865), - [anon_sym_STAR] = ACTIONS(1869), - [anon_sym_CARET] = ACTIONS(1867), - [anon_sym_AMP] = ACTIONS(1867), - [anon_sym_this] = ACTIONS(1177), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1179), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1181), - [anon_sym_unchecked] = ACTIONS(1167), - [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1183), - [anon_sym_throw] = ACTIONS(1871), - [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1873), - [anon_sym_DOT_DOT] = ACTIONS(1875), - [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(1191), - [anon_sym_sizeof] = ACTIONS(1193), - [anon_sym_typeof] = ACTIONS(1195), - [anon_sym___makeref] = ACTIONS(1197), - [anon_sym___reftype] = ACTIONS(1199), - [anon_sym___refvalue] = ACTIONS(1201), - [sym_null_literal] = ACTIONS(1203), - [anon_sym_SQUOTE] = ACTIONS(1205), - [sym_integer_literal] = ACTIONS(1203), - [sym_real_literal] = ACTIONS(1207), - [anon_sym_DQUOTE] = ACTIONS(1209), - [sym_verbatim_string_literal] = ACTIONS(1207), - [aux_sym_preproc_if_token1] = ACTIONS(1211), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1213), - [sym_interpolation_verbatim_start] = ACTIONS(1215), - [sym_interpolation_raw_start] = ACTIONS(1217), - [sym_raw_string_start] = ACTIONS(1219), - }, [1042] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2610), - [sym__name] = STATE(5886), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2319), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(4444), - [sym_non_lvalue_expression] = STATE(3277), - [sym_lvalue_expression] = STATE(3347), - [sym__expression_statement_expression] = STATE(3228), - [sym_assignment_expression] = STATE(3289), - [sym_binary_expression] = STATE(3228), - [sym_postfix_unary_expression] = STATE(3289), - [sym_prefix_unary_expression] = STATE(3289), - [sym__pointer_indirection_expression] = STATE(2609), - [sym_query_expression] = STATE(3228), - [sym_from_clause] = STATE(6150), - [sym_conditional_expression] = STATE(3228), - [sym_conditional_access_expression] = STATE(3228), - [sym_as_expression] = STATE(3228), - [sym_is_expression] = STATE(3228), - [sym_is_pattern_expression] = STATE(3228), - [sym_cast_expression] = STATE(3228), - [sym_checked_expression] = STATE(3228), - [sym_invocation_expression] = STATE(3289), - [sym_switch_expression] = STATE(3228), - [sym_await_expression] = STATE(3289), - [sym_throw_expression] = STATE(3228), - [sym_element_access_expression] = STATE(2609), - [sym_interpolated_string_expression] = STATE(3228), - [sym_member_access_expression] = STATE(2609), - [sym_object_creation_expression] = STATE(3289), - [sym_parenthesized_expression] = STATE(3289), - [sym__parenthesized_lvalue_expression] = STATE(2609), - [sym_lambda_expression] = STATE(3228), - [sym__lambda_expression_init] = STATE(7531), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3228), - [sym_anonymous_method_expression] = STATE(3228), - [sym_anonymous_object_creation_expression] = STATE(3228), - [sym_implicit_array_creation_expression] = STATE(3228), - [sym_implicit_object_creation_expression] = STATE(3228), - [sym_implicit_stackalloc_expression] = STATE(3228), - [sym_initializer_expression] = STATE(3228), - [sym_default_expression] = STATE(3228), - [sym_with_expression] = STATE(3228), - [sym_sizeof_expression] = STATE(3228), - [sym_typeof_expression] = STATE(3228), - [sym_makeref_expression] = STATE(3228), - [sym_ref_expression] = STATE(3228), - [sym_reftype_expression] = STATE(3228), - [sym_refvalue_expression] = STATE(3228), - [sym_stackalloc_expression] = STATE(3228), - [sym_range_expression] = STATE(3228), - [sym_tuple_expression] = STATE(2609), - [sym_literal] = STATE(3228), - [sym_character_literal] = STATE(3278), - [sym_string_literal] = STATE(3278), - [sym_raw_string_literal] = STATE(3278), - [sym_boolean_literal] = STATE(3278), - [sym_identifier] = STATE(2267), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3228), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2816), + [sym__name] = STATE(5875), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2321), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(3195), + [sym_non_lvalue_expression] = STATE(3495), + [sym_lvalue_expression] = STATE(3484), + [sym__expression_statement_expression] = STATE(3462), + [sym_assignment_expression] = STATE(3497), + [sym_binary_expression] = STATE(3462), + [sym_postfix_unary_expression] = STATE(3497), + [sym_prefix_unary_expression] = STATE(3497), + [sym__pointer_indirection_expression] = STATE(2815), + [sym_query_expression] = STATE(3462), + [sym_from_clause] = STATE(6142), + [sym_conditional_expression] = STATE(3462), + [sym_conditional_access_expression] = STATE(3462), + [sym_as_expression] = STATE(3462), + [sym_is_expression] = STATE(3462), + [sym_is_pattern_expression] = STATE(3462), + [sym_cast_expression] = STATE(3462), + [sym_checked_expression] = STATE(3462), + [sym_invocation_expression] = STATE(3497), + [sym_switch_expression] = STATE(3462), + [sym_await_expression] = STATE(3497), + [sym_throw_expression] = STATE(3462), + [sym_element_access_expression] = STATE(2815), + [sym_interpolated_string_expression] = STATE(3462), + [sym_member_access_expression] = STATE(2815), + [sym_object_creation_expression] = STATE(3497), + [sym_parenthesized_expression] = STATE(3497), + [sym__parenthesized_lvalue_expression] = STATE(2815), + [sym_lambda_expression] = STATE(3462), + [sym__lambda_expression_init] = STATE(7384), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3462), + [sym_anonymous_method_expression] = STATE(3462), + [sym_anonymous_object_creation_expression] = STATE(3462), + [sym_implicit_array_creation_expression] = STATE(3462), + [sym_implicit_object_creation_expression] = STATE(3462), + [sym_implicit_stackalloc_expression] = STATE(3462), + [sym_initializer_expression] = STATE(3462), + [sym_default_expression] = STATE(3462), + [sym_with_expression] = STATE(3462), + [sym_sizeof_expression] = STATE(3462), + [sym_typeof_expression] = STATE(3462), + [sym_makeref_expression] = STATE(3462), + [sym_ref_expression] = STATE(3462), + [sym_reftype_expression] = STATE(3462), + [sym_refvalue_expression] = STATE(3462), + [sym_stackalloc_expression] = STATE(3462), + [sym_range_expression] = STATE(3462), + [sym_tuple_expression] = STATE(2815), + [sym_literal] = STATE(3462), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2261), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3462), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(1042), [sym_preproc_endregion] = STATE(1042), [sym_preproc_line] = STATE(1042), @@ -217957,47 +217843,47 @@ 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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3396), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3367), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1153), - [anon_sym_LPAREN] = ACTIONS(1525), - [anon_sym_ref] = ACTIONS(1527), - [anon_sym_LBRACE] = ACTIONS(1159), - [anon_sym_delegate] = ACTIONS(1161), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1305), + [anon_sym_LPAREN] = ACTIONS(1579), + [anon_sym_ref] = ACTIONS(1581), + [anon_sym_LBRACE] = ACTIONS(1311), + [anon_sym_delegate] = ACTIONS(1313), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1529), + [anon_sym_new] = ACTIONS(1583), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1167), - [anon_sym_BANG] = ACTIONS(1533), - [anon_sym_TILDE] = ACTIONS(1533), - [anon_sym_PLUS_PLUS] = ACTIONS(1533), - [anon_sym_DASH_DASH] = ACTIONS(1533), - [anon_sym_true] = ACTIONS(1173), - [anon_sym_false] = ACTIONS(1173), - [anon_sym_PLUS] = ACTIONS(1531), - [anon_sym_DASH] = ACTIONS(1531), - [anon_sym_STAR] = ACTIONS(1535), - [anon_sym_CARET] = ACTIONS(1533), - [anon_sym_AMP] = ACTIONS(1533), - [anon_sym_this] = ACTIONS(1177), + [anon_sym_checked] = ACTIONS(1317), + [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(1321), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1179), + [anon_sym_base] = ACTIONS(1323), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1181), - [anon_sym_unchecked] = ACTIONS(1167), + [sym_predefined_type] = ACTIONS(91), + [anon_sym_unchecked] = ACTIONS(1317), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1183), - [anon_sym_throw] = ACTIONS(1537), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(1591), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1539), - [anon_sym_DOT_DOT] = ACTIONS(1541), + [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), @@ -218010,19 +217896,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1191), - [anon_sym_sizeof] = ACTIONS(1193), - [anon_sym_typeof] = ACTIONS(1195), - [anon_sym___makeref] = ACTIONS(1197), - [anon_sym___reftype] = ACTIONS(1199), - [anon_sym___refvalue] = ACTIONS(1201), - [sym_null_literal] = ACTIONS(1203), - [anon_sym_SQUOTE] = ACTIONS(1205), - [sym_integer_literal] = ACTIONS(1203), - [sym_real_literal] = ACTIONS(1207), - [anon_sym_DQUOTE] = ACTIONS(1209), - [sym_verbatim_string_literal] = ACTIONS(1207), - [aux_sym_preproc_if_token1] = ACTIONS(1211), + [anon_sym_stackalloc] = ACTIONS(1331), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(1333), + [anon_sym___reftype] = ACTIONS(1335), + [anon_sym___refvalue] = ACTIONS(1337), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_literal] = ACTIONS(143), + [anon_sym_DQUOTE] = ACTIONS(145), + [sym_verbatim_string_literal] = ACTIONS(143), + [aux_sym_preproc_if_token1] = ACTIONS(1339), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -218033,90 +217919,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1213), - [sym_interpolation_verbatim_start] = ACTIONS(1215), - [sym_interpolation_raw_start] = ACTIONS(1217), - [sym_raw_string_start] = ACTIONS(1219), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [sym_interpolation_raw_start] = ACTIONS(155), + [sym_raw_string_start] = ACTIONS(157), }, [1043] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2610), - [sym__name] = STATE(5886), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2319), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(3139), - [sym_non_lvalue_expression] = STATE(3277), - [sym_lvalue_expression] = STATE(3347), - [sym__expression_statement_expression] = STATE(3228), - [sym_assignment_expression] = STATE(3289), - [sym_binary_expression] = STATE(3228), - [sym_postfix_unary_expression] = STATE(3289), - [sym_prefix_unary_expression] = STATE(3289), - [sym__pointer_indirection_expression] = STATE(2609), - [sym_query_expression] = STATE(3228), - [sym_from_clause] = STATE(6150), - [sym_conditional_expression] = STATE(3228), - [sym_conditional_access_expression] = STATE(3228), - [sym_as_expression] = STATE(3228), - [sym_is_expression] = STATE(3228), - [sym_is_pattern_expression] = STATE(3228), - [sym_cast_expression] = STATE(3228), - [sym_checked_expression] = STATE(3228), - [sym_invocation_expression] = STATE(3289), - [sym_switch_expression] = STATE(3228), - [sym_await_expression] = STATE(3289), - [sym_throw_expression] = STATE(3228), - [sym_element_access_expression] = STATE(2609), - [sym_interpolated_string_expression] = STATE(3228), - [sym_member_access_expression] = STATE(2609), - [sym_object_creation_expression] = STATE(3289), - [sym_parenthesized_expression] = STATE(3289), - [sym__parenthesized_lvalue_expression] = STATE(2609), - [sym_lambda_expression] = STATE(3228), - [sym__lambda_expression_init] = STATE(7531), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3228), - [sym_anonymous_method_expression] = STATE(3228), - [sym_anonymous_object_creation_expression] = STATE(3228), - [sym_implicit_array_creation_expression] = STATE(3228), - [sym_implicit_object_creation_expression] = STATE(3228), - [sym_implicit_stackalloc_expression] = STATE(3228), - [sym_initializer_expression] = STATE(3228), - [sym_default_expression] = STATE(3228), - [sym_with_expression] = STATE(3228), - [sym_sizeof_expression] = STATE(3228), - [sym_typeof_expression] = STATE(3228), - [sym_makeref_expression] = STATE(3228), - [sym_ref_expression] = STATE(3228), - [sym_reftype_expression] = STATE(3228), - [sym_refvalue_expression] = STATE(3228), - [sym_stackalloc_expression] = STATE(3228), - [sym_range_expression] = STATE(3228), - [sym_tuple_expression] = STATE(2609), - [sym_literal] = STATE(3228), - [sym_character_literal] = STATE(3278), - [sym_string_literal] = STATE(3278), - [sym_raw_string_literal] = STATE(3278), - [sym_boolean_literal] = STATE(3278), - [sym_identifier] = STATE(2267), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3228), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(5881), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2386), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(4220), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3132), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3102), + [sym_postfix_unary_expression] = STATE(3079), + [sym_prefix_unary_expression] = STATE(3079), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6158), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3102), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3079), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3102), + [sym_member_access_expression] = STATE(2472), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3079), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7650), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(3102), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3102), + [sym_typeof_expression] = STATE(3102), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2472), + [sym_literal] = STATE(3102), + [sym_character_literal] = STATE(3037), + [sym_string_literal] = STATE(3037), + [sym_raw_string_literal] = STATE(3037), + [sym_boolean_literal] = STATE(3037), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(1043), [sym_preproc_endregion] = STATE(1043), [sym_preproc_line] = STATE(1043), @@ -218126,47 +218012,47 @@ 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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3396), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1153), - [anon_sym_LPAREN] = ACTIONS(1525), - [anon_sym_ref] = ACTIONS(1527), - [anon_sym_LBRACE] = ACTIONS(1159), - [anon_sym_delegate] = ACTIONS(1161), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1479), + [anon_sym_LPAREN] = ACTIONS(2185), + [anon_sym_ref] = ACTIONS(2187), + [anon_sym_LBRACE] = ACTIONS(1481), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1529), + [anon_sym_new] = ACTIONS(1899), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1167), - [anon_sym_BANG] = ACTIONS(1533), - [anon_sym_TILDE] = ACTIONS(1533), - [anon_sym_PLUS_PLUS] = ACTIONS(1533), - [anon_sym_DASH_DASH] = ACTIONS(1533), - [anon_sym_true] = ACTIONS(1173), - [anon_sym_false] = ACTIONS(1173), - [anon_sym_PLUS] = ACTIONS(1531), - [anon_sym_DASH] = ACTIONS(1531), - [anon_sym_STAR] = ACTIONS(1535), - [anon_sym_CARET] = ACTIONS(1533), - [anon_sym_AMP] = ACTIONS(1533), - [anon_sym_this] = ACTIONS(1177), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(2191), + [anon_sym_TILDE] = ACTIONS(2191), + [anon_sym_PLUS_PLUS] = ACTIONS(2191), + [anon_sym_DASH_DASH] = ACTIONS(2191), + [anon_sym_true] = ACTIONS(1257), + [anon_sym_false] = ACTIONS(1257), + [anon_sym_PLUS] = ACTIONS(2189), + [anon_sym_DASH] = ACTIONS(2189), + [anon_sym_STAR] = ACTIONS(1905), + [anon_sym_CARET] = ACTIONS(2191), + [anon_sym_AMP] = ACTIONS(2191), + [anon_sym_this] = ACTIONS(83), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1179), + [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1181), - [anon_sym_unchecked] = ACTIONS(1167), + [sym_predefined_type] = ACTIONS(1265), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1183), - [anon_sym_throw] = ACTIONS(1537), + [anon_sym_default] = ACTIONS(1267), + [anon_sym_throw] = ACTIONS(2193), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1539), - [anon_sym_DOT_DOT] = ACTIONS(1541), + [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), @@ -218179,19 +218065,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1191), - [anon_sym_sizeof] = ACTIONS(1193), - [anon_sym_typeof] = ACTIONS(1195), - [anon_sym___makeref] = ACTIONS(1197), - [anon_sym___reftype] = ACTIONS(1199), - [anon_sym___refvalue] = ACTIONS(1201), - [sym_null_literal] = ACTIONS(1203), - [anon_sym_SQUOTE] = ACTIONS(1205), - [sym_integer_literal] = ACTIONS(1203), - [sym_real_literal] = ACTIONS(1207), - [anon_sym_DQUOTE] = ACTIONS(1209), - [sym_verbatim_string_literal] = ACTIONS(1207), - [aux_sym_preproc_if_token1] = ACTIONS(1211), + [anon_sym_stackalloc] = ACTIONS(127), + [anon_sym_sizeof] = ACTIONS(1277), + [anon_sym_typeof] = ACTIONS(1279), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), + [sym_null_literal] = ACTIONS(1287), + [anon_sym_SQUOTE] = ACTIONS(1289), + [sym_integer_literal] = ACTIONS(1287), + [sym_real_literal] = ACTIONS(1291), + [anon_sym_DQUOTE] = ACTIONS(1293), + [sym_verbatim_string_literal] = ACTIONS(1291), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -218202,90 +218088,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1213), - [sym_interpolation_verbatim_start] = ACTIONS(1215), - [sym_interpolation_raw_start] = ACTIONS(1217), - [sym_raw_string_start] = ACTIONS(1219), + [sym_interpolation_regular_start] = ACTIONS(1297), + [sym_interpolation_verbatim_start] = ACTIONS(1299), + [sym_interpolation_raw_start] = ACTIONS(1301), + [sym_raw_string_start] = ACTIONS(1303), }, [1044] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2914), - [sym__name] = STATE(5873), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2362), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(3607), - [sym_non_lvalue_expression] = STATE(3880), - [sym_lvalue_expression] = STATE(3092), - [sym__expression_statement_expression] = STATE(3873), - [sym_assignment_expression] = STATE(3881), - [sym_binary_expression] = STATE(3873), - [sym_postfix_unary_expression] = STATE(3881), - [sym_prefix_unary_expression] = STATE(3881), - [sym__pointer_indirection_expression] = STATE(2913), - [sym_query_expression] = STATE(3873), - [sym_from_clause] = STATE(6168), - [sym_conditional_expression] = STATE(3873), - [sym_conditional_access_expression] = STATE(3873), - [sym_as_expression] = STATE(3873), - [sym_is_expression] = STATE(3873), - [sym_is_pattern_expression] = STATE(3873), - [sym_cast_expression] = STATE(3873), - [sym_checked_expression] = STATE(3873), - [sym_invocation_expression] = STATE(3881), - [sym_switch_expression] = STATE(3873), - [sym_await_expression] = STATE(3881), - [sym_throw_expression] = STATE(3873), - [sym_element_access_expression] = STATE(2913), - [sym_interpolated_string_expression] = STATE(3873), - [sym_member_access_expression] = STATE(2913), - [sym_object_creation_expression] = STATE(3881), - [sym_parenthesized_expression] = STATE(3881), - [sym__parenthesized_lvalue_expression] = STATE(2913), - [sym_lambda_expression] = STATE(3873), - [sym__lambda_expression_init] = STATE(7533), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3873), - [sym_anonymous_method_expression] = STATE(3873), - [sym_anonymous_object_creation_expression] = STATE(3873), - [sym_implicit_array_creation_expression] = STATE(3873), - [sym_implicit_object_creation_expression] = STATE(3873), - [sym_implicit_stackalloc_expression] = STATE(3873), - [sym_initializer_expression] = STATE(3873), - [sym_default_expression] = STATE(3873), - [sym_with_expression] = STATE(3873), - [sym_sizeof_expression] = STATE(3873), - [sym_typeof_expression] = STATE(3873), - [sym_makeref_expression] = STATE(3873), - [sym_ref_expression] = STATE(3873), - [sym_reftype_expression] = STATE(3873), - [sym_refvalue_expression] = STATE(3873), - [sym_stackalloc_expression] = STATE(3873), - [sym_range_expression] = STATE(3873), - [sym_tuple_expression] = STATE(2913), - [sym_literal] = STATE(3873), - [sym_character_literal] = STATE(3877), - [sym_string_literal] = STATE(3877), - [sym_raw_string_literal] = STATE(3877), - [sym_boolean_literal] = STATE(3877), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3873), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2816), + [sym__name] = STATE(5875), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2321), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(4497), + [sym_non_lvalue_expression] = STATE(3495), + [sym_lvalue_expression] = STATE(3484), + [sym__expression_statement_expression] = STATE(3462), + [sym_assignment_expression] = STATE(3497), + [sym_binary_expression] = STATE(3462), + [sym_postfix_unary_expression] = STATE(3497), + [sym_prefix_unary_expression] = STATE(3497), + [sym__pointer_indirection_expression] = STATE(2815), + [sym_query_expression] = STATE(3462), + [sym_from_clause] = STATE(6142), + [sym_conditional_expression] = STATE(3462), + [sym_conditional_access_expression] = STATE(3462), + [sym_as_expression] = STATE(3462), + [sym_is_expression] = STATE(3462), + [sym_is_pattern_expression] = STATE(3462), + [sym_cast_expression] = STATE(3462), + [sym_checked_expression] = STATE(3462), + [sym_invocation_expression] = STATE(3497), + [sym_switch_expression] = STATE(3462), + [sym_await_expression] = STATE(3497), + [sym_throw_expression] = STATE(3462), + [sym_element_access_expression] = STATE(2815), + [sym_interpolated_string_expression] = STATE(3462), + [sym_member_access_expression] = STATE(2815), + [sym_object_creation_expression] = STATE(3497), + [sym_parenthesized_expression] = STATE(3497), + [sym__parenthesized_lvalue_expression] = STATE(2815), + [sym_lambda_expression] = STATE(3462), + [sym__lambda_expression_init] = STATE(7384), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3462), + [sym_anonymous_method_expression] = STATE(3462), + [sym_anonymous_object_creation_expression] = STATE(3462), + [sym_implicit_array_creation_expression] = STATE(3462), + [sym_implicit_object_creation_expression] = STATE(3462), + [sym_implicit_stackalloc_expression] = STATE(3462), + [sym_initializer_expression] = STATE(3462), + [sym_default_expression] = STATE(3462), + [sym_with_expression] = STATE(3462), + [sym_sizeof_expression] = STATE(3462), + [sym_typeof_expression] = STATE(3462), + [sym_makeref_expression] = STATE(3462), + [sym_ref_expression] = STATE(3462), + [sym_reftype_expression] = STATE(3462), + [sym_refvalue_expression] = STATE(3462), + [sym_stackalloc_expression] = STATE(3462), + [sym_range_expression] = STATE(3462), + [sym_tuple_expression] = STATE(2815), + [sym_literal] = STATE(3462), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2261), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3462), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(1044), [sym_preproc_endregion] = STATE(1044), [sym_preproc_line] = STATE(1044), @@ -218295,47 +218181,47 @@ 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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3382), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3367), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1627), - [anon_sym_LPAREN] = ACTIONS(1961), - [anon_sym_ref] = ACTIONS(1963), - [anon_sym_LBRACE] = ACTIONS(1633), - [anon_sym_delegate] = ACTIONS(1635), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1305), + [anon_sym_LPAREN] = ACTIONS(1579), + [anon_sym_ref] = ACTIONS(1581), + [anon_sym_LBRACE] = ACTIONS(1311), + [anon_sym_delegate] = ACTIONS(1313), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1637), + [anon_sym_new] = ACTIONS(1583), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1639), - [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(1645), - [anon_sym_false] = ACTIONS(1645), - [anon_sym_PLUS] = ACTIONS(1965), - [anon_sym_DASH] = ACTIONS(1965), - [anon_sym_STAR] = ACTIONS(1647), - [anon_sym_CARET] = ACTIONS(1967), - [anon_sym_AMP] = ACTIONS(1967), - [anon_sym_this] = ACTIONS(1649), + [anon_sym_checked] = ACTIONS(1317), + [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(1321), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1651), + [anon_sym_base] = ACTIONS(1323), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1653), - [anon_sym_unchecked] = ACTIONS(1639), + [sym_predefined_type] = ACTIONS(91), + [anon_sym_unchecked] = ACTIONS(1317), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1655), - [anon_sym_throw] = ACTIONS(1969), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(1591), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1971), - [anon_sym_DOT_DOT] = ACTIONS(1973), + [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), @@ -218348,19 +218234,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1663), - [anon_sym_sizeof] = ACTIONS(1665), - [anon_sym_typeof] = ACTIONS(1667), - [anon_sym___makeref] = ACTIONS(1669), - [anon_sym___reftype] = ACTIONS(1671), - [anon_sym___refvalue] = ACTIONS(1673), - [sym_null_literal] = ACTIONS(1675), - [anon_sym_SQUOTE] = ACTIONS(1677), - [sym_integer_literal] = ACTIONS(1675), - [sym_real_literal] = ACTIONS(1679), - [anon_sym_DQUOTE] = ACTIONS(1681), - [sym_verbatim_string_literal] = ACTIONS(1679), - [aux_sym_preproc_if_token1] = ACTIONS(1683), + [anon_sym_stackalloc] = ACTIONS(1331), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(1333), + [anon_sym___reftype] = ACTIONS(1335), + [anon_sym___refvalue] = ACTIONS(1337), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_literal] = ACTIONS(143), + [anon_sym_DQUOTE] = ACTIONS(145), + [sym_verbatim_string_literal] = ACTIONS(143), + [aux_sym_preproc_if_token1] = ACTIONS(1339), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -218371,90 +218257,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1685), - [sym_interpolation_verbatim_start] = ACTIONS(1687), - [sym_interpolation_raw_start] = ACTIONS(1689), - [sym_raw_string_start] = ACTIONS(1691), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [sym_interpolation_raw_start] = ACTIONS(155), + [sym_raw_string_start] = ACTIONS(157), }, [1045] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2420), - [sym__name] = STATE(5887), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2197), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(5688), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(2447), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3080), - [sym_postfix_unary_expression] = STATE(3111), - [sym_prefix_unary_expression] = STATE(3111), - [sym__pointer_indirection_expression] = STATE(2423), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6154), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3080), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3111), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2423), - [sym_interpolated_string_expression] = STATE(3080), - [sym_member_access_expression] = STATE(2423), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3111), - [sym__parenthesized_lvalue_expression] = STATE(2423), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7530), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(3080), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3080), - [sym_typeof_expression] = STATE(3080), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2423), - [sym_literal] = STATE(3080), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2816), + [sym__name] = STATE(5875), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2321), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(4499), + [sym_non_lvalue_expression] = STATE(3495), + [sym_lvalue_expression] = STATE(3484), + [sym__expression_statement_expression] = STATE(3462), + [sym_assignment_expression] = STATE(3497), + [sym_binary_expression] = STATE(3462), + [sym_postfix_unary_expression] = STATE(3497), + [sym_prefix_unary_expression] = STATE(3497), + [sym__pointer_indirection_expression] = STATE(2815), + [sym_query_expression] = STATE(3462), + [sym_from_clause] = STATE(6142), + [sym_conditional_expression] = STATE(3462), + [sym_conditional_access_expression] = STATE(3462), + [sym_as_expression] = STATE(3462), + [sym_is_expression] = STATE(3462), + [sym_is_pattern_expression] = STATE(3462), + [sym_cast_expression] = STATE(3462), + [sym_checked_expression] = STATE(3462), + [sym_invocation_expression] = STATE(3497), + [sym_switch_expression] = STATE(3462), + [sym_await_expression] = STATE(3497), + [sym_throw_expression] = STATE(3462), + [sym_element_access_expression] = STATE(2815), + [sym_interpolated_string_expression] = STATE(3462), + [sym_member_access_expression] = STATE(2815), + [sym_object_creation_expression] = STATE(3497), + [sym_parenthesized_expression] = STATE(3497), + [sym__parenthesized_lvalue_expression] = STATE(2815), + [sym_lambda_expression] = STATE(3462), + [sym__lambda_expression_init] = STATE(7384), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3462), + [sym_anonymous_method_expression] = STATE(3462), + [sym_anonymous_object_creation_expression] = STATE(3462), + [sym_implicit_array_creation_expression] = STATE(3462), + [sym_implicit_object_creation_expression] = STATE(3462), + [sym_implicit_stackalloc_expression] = STATE(3462), + [sym_initializer_expression] = STATE(3462), + [sym_default_expression] = STATE(3462), + [sym_with_expression] = STATE(3462), + [sym_sizeof_expression] = STATE(3462), + [sym_typeof_expression] = STATE(3462), + [sym_makeref_expression] = STATE(3462), + [sym_ref_expression] = STATE(3462), + [sym_reftype_expression] = STATE(3462), + [sym_refvalue_expression] = STATE(3462), + [sym_stackalloc_expression] = STATE(3462), + [sym_range_expression] = STATE(3462), + [sym_tuple_expression] = STATE(2815), + [sym_literal] = STATE(3462), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2261), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3462), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(1045), [sym_preproc_endregion] = STATE(1045), [sym_preproc_line] = STATE(1045), @@ -218464,24 +218350,24 @@ 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(3067), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), [aux_sym__lambda_expression_init_repeat1] = STATE(3367), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1241), - [anon_sym_LPAREN] = ACTIONS(2941), - [anon_sym_ref] = ACTIONS(661), - [anon_sym_LBRACE] = ACTIONS(1487), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1305), + [anon_sym_LPAREN] = ACTIONS(1579), + [anon_sym_ref] = ACTIONS(1581), + [anon_sym_LBRACE] = ACTIONS(1311), + [anon_sym_delegate] = ACTIONS(1313), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1061), + [anon_sym_new] = ACTIONS(1583), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1067), + [anon_sym_checked] = ACTIONS(1317), [anon_sym_BANG] = ACTIONS(1587), [anon_sym_TILDE] = ACTIONS(1587), [anon_sym_PLUS_PLUS] = ACTIONS(1587), @@ -218490,21 +218376,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_false] = ACTIONS(77), [anon_sym_PLUS] = ACTIONS(1585), [anon_sym_DASH] = ACTIONS(1585), - [anon_sym_STAR] = ACTIONS(1261), + [anon_sym_STAR] = ACTIONS(1589), [anon_sym_CARET] = ACTIONS(1587), [anon_sym_AMP] = ACTIONS(1587), - [anon_sym_this] = ACTIONS(1263), + [anon_sym_this] = ACTIONS(1321), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), + [anon_sym_base] = ACTIONS(1323), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1267), - [anon_sym_unchecked] = ACTIONS(1067), + [sym_predefined_type] = ACTIONS(91), + [anon_sym_unchecked] = ACTIONS(1317), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1589), + [anon_sym_throw] = ACTIONS(1591), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1591), - [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), @@ -218517,19 +218403,19 @@ static const uint16_t ts_parse_table[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(1331), [anon_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(1333), + [anon_sym___reftype] = ACTIONS(1335), + [anon_sym___refvalue] = ACTIONS(1337), [sym_null_literal] = ACTIONS(139), [anon_sym_SQUOTE] = ACTIONS(141), [sym_integer_literal] = ACTIONS(139), [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1089), + [aux_sym_preproc_if_token1] = ACTIONS(1339), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -218546,84 +218432,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [1046] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2914), - [sym__name] = STATE(5873), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2362), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(3910), - [sym_non_lvalue_expression] = STATE(3880), - [sym_lvalue_expression] = STATE(3092), - [sym__expression_statement_expression] = STATE(3873), - [sym_assignment_expression] = STATE(3881), - [sym_binary_expression] = STATE(3873), - [sym_postfix_unary_expression] = STATE(3881), - [sym_prefix_unary_expression] = STATE(3881), - [sym__pointer_indirection_expression] = STATE(2913), - [sym_query_expression] = STATE(3873), - [sym_from_clause] = STATE(6168), - [sym_conditional_expression] = STATE(3873), - [sym_conditional_access_expression] = STATE(3873), - [sym_as_expression] = STATE(3873), - [sym_is_expression] = STATE(3873), - [sym_is_pattern_expression] = STATE(3873), - [sym_cast_expression] = STATE(3873), - [sym_checked_expression] = STATE(3873), - [sym_invocation_expression] = STATE(3881), - [sym_switch_expression] = STATE(3873), - [sym_await_expression] = STATE(3881), - [sym_throw_expression] = STATE(3873), - [sym_element_access_expression] = STATE(2913), - [sym_interpolated_string_expression] = STATE(3873), - [sym_member_access_expression] = STATE(2913), - [sym_object_creation_expression] = STATE(3881), - [sym_parenthesized_expression] = STATE(3881), - [sym__parenthesized_lvalue_expression] = STATE(2913), - [sym_lambda_expression] = STATE(3873), - [sym__lambda_expression_init] = STATE(7533), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3873), - [sym_anonymous_method_expression] = STATE(3873), - [sym_anonymous_object_creation_expression] = STATE(3873), - [sym_implicit_array_creation_expression] = STATE(3873), - [sym_implicit_object_creation_expression] = STATE(3873), - [sym_implicit_stackalloc_expression] = STATE(3873), - [sym_initializer_expression] = STATE(3873), - [sym_default_expression] = STATE(3873), - [sym_with_expression] = STATE(3873), - [sym_sizeof_expression] = STATE(3873), - [sym_typeof_expression] = STATE(3873), - [sym_makeref_expression] = STATE(3873), - [sym_ref_expression] = STATE(3873), - [sym_reftype_expression] = STATE(3873), - [sym_refvalue_expression] = STATE(3873), - [sym_stackalloc_expression] = STATE(3873), - [sym_range_expression] = STATE(3873), - [sym_tuple_expression] = STATE(2913), - [sym_literal] = STATE(3873), - [sym_character_literal] = STATE(3877), - [sym_string_literal] = STATE(3877), - [sym_raw_string_literal] = STATE(3877), - [sym_boolean_literal] = STATE(3877), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3873), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2603), + [sym__name] = STATE(5894), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2193), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(4236), + [sym_non_lvalue_expression] = STATE(3220), + [sym_lvalue_expression] = STATE(3126), + [sym__expression_statement_expression] = STATE(3236), + [sym_assignment_expression] = STATE(3221), + [sym_binary_expression] = STATE(3236), + [sym_postfix_unary_expression] = STATE(3221), + [sym_prefix_unary_expression] = STATE(3221), + [sym__pointer_indirection_expression] = STATE(2602), + [sym_query_expression] = STATE(3236), + [sym_from_clause] = STATE(6165), + [sym_conditional_expression] = STATE(3236), + [sym_conditional_access_expression] = STATE(3236), + [sym_as_expression] = STATE(3236), + [sym_is_expression] = STATE(3236), + [sym_is_pattern_expression] = STATE(3236), + [sym_cast_expression] = STATE(3236), + [sym_checked_expression] = STATE(3236), + [sym_invocation_expression] = STATE(3221), + [sym_switch_expression] = STATE(3236), + [sym_await_expression] = STATE(3221), + [sym_throw_expression] = STATE(3236), + [sym_element_access_expression] = STATE(2602), + [sym_interpolated_string_expression] = STATE(3236), + [sym_member_access_expression] = STATE(2602), + [sym_object_creation_expression] = STATE(3221), + [sym_parenthesized_expression] = STATE(3221), + [sym__parenthesized_lvalue_expression] = STATE(2602), + [sym_lambda_expression] = STATE(3236), + [sym__lambda_expression_init] = STATE(7487), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3236), + [sym_anonymous_method_expression] = STATE(3236), + [sym_anonymous_object_creation_expression] = STATE(3236), + [sym_implicit_array_creation_expression] = STATE(3236), + [sym_implicit_object_creation_expression] = STATE(3236), + [sym_implicit_stackalloc_expression] = STATE(3236), + [sym_initializer_expression] = STATE(3236), + [sym_default_expression] = STATE(3236), + [sym_with_expression] = STATE(3236), + [sym_sizeof_expression] = STATE(3236), + [sym_typeof_expression] = STATE(3236), + [sym_makeref_expression] = STATE(3236), + [sym_ref_expression] = STATE(3236), + [sym_reftype_expression] = STATE(3236), + [sym_refvalue_expression] = STATE(3236), + [sym_stackalloc_expression] = STATE(3236), + [sym_range_expression] = STATE(3236), + [sym_tuple_expression] = STATE(2602), + [sym_literal] = STATE(3236), + [sym_character_literal] = STATE(3272), + [sym_string_literal] = STATE(3272), + [sym_raw_string_literal] = STATE(3272), + [sym_boolean_literal] = STATE(3272), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3236), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(1046), [sym_preproc_endregion] = STATE(1046), [sym_preproc_line] = STATE(1046), @@ -218633,47 +218519,47 @@ 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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3382), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3379), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1627), - [anon_sym_LPAREN] = ACTIONS(1961), - [anon_sym_ref] = ACTIONS(1963), - [anon_sym_LBRACE] = ACTIONS(1633), - [anon_sym_delegate] = ACTIONS(1635), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1149), + [anon_sym_LPAREN] = ACTIONS(1341), + [anon_sym_ref] = ACTIONS(1343), + [anon_sym_LBRACE] = ACTIONS(1155), + [anon_sym_delegate] = ACTIONS(1157), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1637), + [anon_sym_new] = ACTIONS(1159), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1639), - [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(1645), - [anon_sym_false] = ACTIONS(1645), - [anon_sym_PLUS] = ACTIONS(1965), - [anon_sym_DASH] = ACTIONS(1965), - [anon_sym_STAR] = ACTIONS(1647), - [anon_sym_CARET] = ACTIONS(1967), - [anon_sym_AMP] = ACTIONS(1967), - [anon_sym_this] = ACTIONS(1649), + [anon_sym_checked] = ACTIONS(1163), + [anon_sym_BANG] = ACTIONS(1347), + [anon_sym_TILDE] = ACTIONS(1347), + [anon_sym_PLUS_PLUS] = ACTIONS(1347), + [anon_sym_DASH_DASH] = ACTIONS(1347), + [anon_sym_true] = ACTIONS(1169), + [anon_sym_false] = ACTIONS(1169), + [anon_sym_PLUS] = ACTIONS(1345), + [anon_sym_DASH] = ACTIONS(1345), + [anon_sym_STAR] = ACTIONS(1349), + [anon_sym_CARET] = ACTIONS(1347), + [anon_sym_AMP] = ACTIONS(1347), + [anon_sym_this] = ACTIONS(1173), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1651), + [anon_sym_base] = ACTIONS(1175), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1653), - [anon_sym_unchecked] = ACTIONS(1639), + [sym_predefined_type] = ACTIONS(1177), + [anon_sym_unchecked] = ACTIONS(1163), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1655), - [anon_sym_throw] = ACTIONS(1969), + [anon_sym_default] = ACTIONS(1179), + [anon_sym_throw] = ACTIONS(1351), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1971), - [anon_sym_DOT_DOT] = ACTIONS(1973), + [anon_sym_await] = ACTIONS(1353), + [anon_sym_DOT_DOT] = ACTIONS(1355), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -218686,19 +218572,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1663), - [anon_sym_sizeof] = ACTIONS(1665), - [anon_sym_typeof] = ACTIONS(1667), - [anon_sym___makeref] = ACTIONS(1669), - [anon_sym___reftype] = ACTIONS(1671), - [anon_sym___refvalue] = ACTIONS(1673), - [sym_null_literal] = ACTIONS(1675), - [anon_sym_SQUOTE] = ACTIONS(1677), - [sym_integer_literal] = ACTIONS(1675), - [sym_real_literal] = ACTIONS(1679), - [anon_sym_DQUOTE] = ACTIONS(1681), - [sym_verbatim_string_literal] = ACTIONS(1679), - [aux_sym_preproc_if_token1] = ACTIONS(1683), + [anon_sym_stackalloc] = ACTIONS(1187), + [anon_sym_sizeof] = ACTIONS(1189), + [anon_sym_typeof] = ACTIONS(1191), + [anon_sym___makeref] = ACTIONS(1193), + [anon_sym___reftype] = ACTIONS(1195), + [anon_sym___refvalue] = ACTIONS(1197), + [sym_null_literal] = ACTIONS(1199), + [anon_sym_SQUOTE] = ACTIONS(1201), + [sym_integer_literal] = ACTIONS(1199), + [sym_real_literal] = ACTIONS(1203), + [anon_sym_DQUOTE] = ACTIONS(1205), + [sym_verbatim_string_literal] = ACTIONS(1203), + [aux_sym_preproc_if_token1] = ACTIONS(1207), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -218709,90 +218595,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1685), - [sym_interpolation_verbatim_start] = ACTIONS(1687), - [sym_interpolation_raw_start] = ACTIONS(1689), - [sym_raw_string_start] = ACTIONS(1691), + [sym_interpolation_regular_start] = ACTIONS(1209), + [sym_interpolation_verbatim_start] = ACTIONS(1211), + [sym_interpolation_raw_start] = ACTIONS(1213), + [sym_raw_string_start] = ACTIONS(1215), }, [1047] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2914), - [sym__name] = STATE(5873), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2362), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(3911), - [sym_non_lvalue_expression] = STATE(3880), - [sym_lvalue_expression] = STATE(3092), - [sym__expression_statement_expression] = STATE(3873), - [sym_assignment_expression] = STATE(3881), - [sym_binary_expression] = STATE(3873), - [sym_postfix_unary_expression] = STATE(3881), - [sym_prefix_unary_expression] = STATE(3881), - [sym__pointer_indirection_expression] = STATE(2913), - [sym_query_expression] = STATE(3873), - [sym_from_clause] = STATE(6168), - [sym_conditional_expression] = STATE(3873), - [sym_conditional_access_expression] = STATE(3873), - [sym_as_expression] = STATE(3873), - [sym_is_expression] = STATE(3873), - [sym_is_pattern_expression] = STATE(3873), - [sym_cast_expression] = STATE(3873), - [sym_checked_expression] = STATE(3873), - [sym_invocation_expression] = STATE(3881), - [sym_switch_expression] = STATE(3873), - [sym_await_expression] = STATE(3881), - [sym_throw_expression] = STATE(3873), - [sym_element_access_expression] = STATE(2913), - [sym_interpolated_string_expression] = STATE(3873), - [sym_member_access_expression] = STATE(2913), - [sym_object_creation_expression] = STATE(3881), - [sym_parenthesized_expression] = STATE(3881), - [sym__parenthesized_lvalue_expression] = STATE(2913), - [sym_lambda_expression] = STATE(3873), - [sym__lambda_expression_init] = STATE(7533), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3873), - [sym_anonymous_method_expression] = STATE(3873), - [sym_anonymous_object_creation_expression] = STATE(3873), - [sym_implicit_array_creation_expression] = STATE(3873), - [sym_implicit_object_creation_expression] = STATE(3873), - [sym_implicit_stackalloc_expression] = STATE(3873), - [sym_initializer_expression] = STATE(3873), - [sym_default_expression] = STATE(3873), - [sym_with_expression] = STATE(3873), - [sym_sizeof_expression] = STATE(3873), - [sym_typeof_expression] = STATE(3873), - [sym_makeref_expression] = STATE(3873), - [sym_ref_expression] = STATE(3873), - [sym_reftype_expression] = STATE(3873), - [sym_refvalue_expression] = STATE(3873), - [sym_stackalloc_expression] = STATE(3873), - [sym_range_expression] = STATE(3873), - [sym_tuple_expression] = STATE(2913), - [sym_literal] = STATE(3873), - [sym_character_literal] = STATE(3877), - [sym_string_literal] = STATE(3877), - [sym_raw_string_literal] = STATE(3877), - [sym_boolean_literal] = STATE(3877), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3873), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2603), + [sym__name] = STATE(5894), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2193), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(3123), + [sym_non_lvalue_expression] = STATE(3220), + [sym_lvalue_expression] = STATE(3126), + [sym__expression_statement_expression] = STATE(3236), + [sym_assignment_expression] = STATE(3221), + [sym_binary_expression] = STATE(3236), + [sym_postfix_unary_expression] = STATE(3221), + [sym_prefix_unary_expression] = STATE(3221), + [sym__pointer_indirection_expression] = STATE(2602), + [sym_query_expression] = STATE(3236), + [sym_from_clause] = STATE(6165), + [sym_conditional_expression] = STATE(3236), + [sym_conditional_access_expression] = STATE(3236), + [sym_as_expression] = STATE(3236), + [sym_is_expression] = STATE(3236), + [sym_is_pattern_expression] = STATE(3236), + [sym_cast_expression] = STATE(3236), + [sym_checked_expression] = STATE(3236), + [sym_invocation_expression] = STATE(3221), + [sym_switch_expression] = STATE(3236), + [sym_await_expression] = STATE(3221), + [sym_throw_expression] = STATE(3236), + [sym_element_access_expression] = STATE(2602), + [sym_interpolated_string_expression] = STATE(3236), + [sym_member_access_expression] = STATE(2602), + [sym_object_creation_expression] = STATE(3221), + [sym_parenthesized_expression] = STATE(3221), + [sym__parenthesized_lvalue_expression] = STATE(2602), + [sym_lambda_expression] = STATE(3236), + [sym__lambda_expression_init] = STATE(7487), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3236), + [sym_anonymous_method_expression] = STATE(3236), + [sym_anonymous_object_creation_expression] = STATE(3236), + [sym_implicit_array_creation_expression] = STATE(3236), + [sym_implicit_object_creation_expression] = STATE(3236), + [sym_implicit_stackalloc_expression] = STATE(3236), + [sym_initializer_expression] = STATE(3236), + [sym_default_expression] = STATE(3236), + [sym_with_expression] = STATE(3236), + [sym_sizeof_expression] = STATE(3236), + [sym_typeof_expression] = STATE(3236), + [sym_makeref_expression] = STATE(3236), + [sym_ref_expression] = STATE(3236), + [sym_reftype_expression] = STATE(3236), + [sym_refvalue_expression] = STATE(3236), + [sym_stackalloc_expression] = STATE(3236), + [sym_range_expression] = STATE(3236), + [sym_tuple_expression] = STATE(2602), + [sym_literal] = STATE(3236), + [sym_character_literal] = STATE(3272), + [sym_string_literal] = STATE(3272), + [sym_raw_string_literal] = STATE(3272), + [sym_boolean_literal] = STATE(3272), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3236), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(1047), [sym_preproc_endregion] = STATE(1047), [sym_preproc_line] = STATE(1047), @@ -218802,47 +218688,47 @@ 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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3382), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3379), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1627), - [anon_sym_LPAREN] = ACTIONS(1961), - [anon_sym_ref] = ACTIONS(1963), - [anon_sym_LBRACE] = ACTIONS(1633), - [anon_sym_delegate] = ACTIONS(1635), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1149), + [anon_sym_LPAREN] = ACTIONS(1341), + [anon_sym_ref] = ACTIONS(1343), + [anon_sym_LBRACE] = ACTIONS(1155), + [anon_sym_delegate] = ACTIONS(1157), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1637), + [anon_sym_new] = ACTIONS(1159), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1639), - [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(1645), - [anon_sym_false] = ACTIONS(1645), - [anon_sym_PLUS] = ACTIONS(1965), - [anon_sym_DASH] = ACTIONS(1965), - [anon_sym_STAR] = ACTIONS(1647), - [anon_sym_CARET] = ACTIONS(1967), - [anon_sym_AMP] = ACTIONS(1967), - [anon_sym_this] = ACTIONS(1649), + [anon_sym_checked] = ACTIONS(1163), + [anon_sym_BANG] = ACTIONS(1347), + [anon_sym_TILDE] = ACTIONS(1347), + [anon_sym_PLUS_PLUS] = ACTIONS(1347), + [anon_sym_DASH_DASH] = ACTIONS(1347), + [anon_sym_true] = ACTIONS(1169), + [anon_sym_false] = ACTIONS(1169), + [anon_sym_PLUS] = ACTIONS(1345), + [anon_sym_DASH] = ACTIONS(1345), + [anon_sym_STAR] = ACTIONS(1349), + [anon_sym_CARET] = ACTIONS(1347), + [anon_sym_AMP] = ACTIONS(1347), + [anon_sym_this] = ACTIONS(1173), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1651), + [anon_sym_base] = ACTIONS(1175), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1653), - [anon_sym_unchecked] = ACTIONS(1639), + [sym_predefined_type] = ACTIONS(1177), + [anon_sym_unchecked] = ACTIONS(1163), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1655), - [anon_sym_throw] = ACTIONS(1969), + [anon_sym_default] = ACTIONS(1179), + [anon_sym_throw] = ACTIONS(1351), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1971), - [anon_sym_DOT_DOT] = ACTIONS(1973), + [anon_sym_await] = ACTIONS(1353), + [anon_sym_DOT_DOT] = ACTIONS(1355), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -218855,19 +218741,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1663), - [anon_sym_sizeof] = ACTIONS(1665), - [anon_sym_typeof] = ACTIONS(1667), - [anon_sym___makeref] = ACTIONS(1669), - [anon_sym___reftype] = ACTIONS(1671), - [anon_sym___refvalue] = ACTIONS(1673), - [sym_null_literal] = ACTIONS(1675), - [anon_sym_SQUOTE] = ACTIONS(1677), - [sym_integer_literal] = ACTIONS(1675), - [sym_real_literal] = ACTIONS(1679), - [anon_sym_DQUOTE] = ACTIONS(1681), - [sym_verbatim_string_literal] = ACTIONS(1679), - [aux_sym_preproc_if_token1] = ACTIONS(1683), + [anon_sym_stackalloc] = ACTIONS(1187), + [anon_sym_sizeof] = ACTIONS(1189), + [anon_sym_typeof] = ACTIONS(1191), + [anon_sym___makeref] = ACTIONS(1193), + [anon_sym___reftype] = ACTIONS(1195), + [anon_sym___refvalue] = ACTIONS(1197), + [sym_null_literal] = ACTIONS(1199), + [anon_sym_SQUOTE] = ACTIONS(1201), + [sym_integer_literal] = ACTIONS(1199), + [sym_real_literal] = ACTIONS(1203), + [anon_sym_DQUOTE] = ACTIONS(1205), + [sym_verbatim_string_literal] = ACTIONS(1203), + [aux_sym_preproc_if_token1] = ACTIONS(1207), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -218878,90 +218764,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1685), - [sym_interpolation_verbatim_start] = ACTIONS(1687), - [sym_interpolation_raw_start] = ACTIONS(1689), - [sym_raw_string_start] = ACTIONS(1691), + [sym_interpolation_regular_start] = ACTIONS(1209), + [sym_interpolation_verbatim_start] = ACTIONS(1211), + [sym_interpolation_raw_start] = ACTIONS(1213), + [sym_raw_string_start] = ACTIONS(1215), }, [1048] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2420), - [sym__name] = STATE(5875), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2369), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(4164), - [sym_non_lvalue_expression] = STATE(3066), - [sym_lvalue_expression] = STATE(3125), - [sym__expression_statement_expression] = STATE(3006), - [sym_assignment_expression] = STATE(3020), - [sym_binary_expression] = STATE(3006), - [sym_postfix_unary_expression] = STATE(3020), - [sym_prefix_unary_expression] = STATE(3020), - [sym__pointer_indirection_expression] = STATE(2423), - [sym_query_expression] = STATE(3006), - [sym_from_clause] = STATE(6145), - [sym_conditional_expression] = STATE(3006), - [sym_conditional_access_expression] = STATE(3006), - [sym_as_expression] = STATE(3006), - [sym_is_expression] = STATE(3006), - [sym_is_pattern_expression] = STATE(3006), - [sym_cast_expression] = STATE(3006), - [sym_checked_expression] = STATE(3006), - [sym_invocation_expression] = STATE(3020), - [sym_switch_expression] = STATE(3006), - [sym_await_expression] = STATE(3020), - [sym_throw_expression] = STATE(3006), - [sym_element_access_expression] = STATE(2423), - [sym_interpolated_string_expression] = STATE(3006), - [sym_member_access_expression] = STATE(2423), - [sym_object_creation_expression] = STATE(3020), - [sym_parenthesized_expression] = STATE(3020), - [sym__parenthesized_lvalue_expression] = STATE(2423), - [sym_lambda_expression] = STATE(3006), - [sym__lambda_expression_init] = STATE(7538), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3006), - [sym_anonymous_method_expression] = STATE(3006), - [sym_anonymous_object_creation_expression] = STATE(3006), - [sym_implicit_array_creation_expression] = STATE(3006), - [sym_implicit_object_creation_expression] = STATE(3006), - [sym_implicit_stackalloc_expression] = STATE(3006), - [sym_initializer_expression] = STATE(3006), - [sym_default_expression] = STATE(3006), - [sym_with_expression] = STATE(3006), - [sym_sizeof_expression] = STATE(3006), - [sym_typeof_expression] = STATE(3006), - [sym_makeref_expression] = STATE(3006), - [sym_ref_expression] = STATE(3006), - [sym_reftype_expression] = STATE(3006), - [sym_refvalue_expression] = STATE(3006), - [sym_stackalloc_expression] = STATE(3006), - [sym_range_expression] = STATE(3006), - [sym_tuple_expression] = STATE(2423), - [sym_literal] = STATE(3006), - [sym_character_literal] = STATE(3011), - [sym_string_literal] = STATE(3011), - [sym_raw_string_literal] = STATE(3011), - [sym_boolean_literal] = STATE(3011), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3006), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2603), + [sym__name] = STATE(5865), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2344), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(4433), + [sym_non_lvalue_expression] = STATE(3220), + [sym_lvalue_expression] = STATE(3234), + [sym__expression_statement_expression] = STATE(3236), + [sym_assignment_expression] = STATE(3221), + [sym_binary_expression] = STATE(3236), + [sym_postfix_unary_expression] = STATE(3221), + [sym_prefix_unary_expression] = STATE(3221), + [sym__pointer_indirection_expression] = STATE(2602), + [sym_query_expression] = STATE(3236), + [sym_from_clause] = STATE(6151), + [sym_conditional_expression] = STATE(3236), + [sym_conditional_access_expression] = STATE(3236), + [sym_as_expression] = STATE(3236), + [sym_is_expression] = STATE(3236), + [sym_is_pattern_expression] = STATE(3236), + [sym_cast_expression] = STATE(3236), + [sym_checked_expression] = STATE(3236), + [sym_invocation_expression] = STATE(3221), + [sym_switch_expression] = STATE(3236), + [sym_await_expression] = STATE(3221), + [sym_throw_expression] = STATE(3236), + [sym_element_access_expression] = STATE(2602), + [sym_interpolated_string_expression] = STATE(3236), + [sym_member_access_expression] = STATE(2602), + [sym_object_creation_expression] = STATE(3221), + [sym_parenthesized_expression] = STATE(3221), + [sym__parenthesized_lvalue_expression] = STATE(2602), + [sym_lambda_expression] = STATE(3236), + [sym__lambda_expression_init] = STATE(7276), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3236), + [sym_anonymous_method_expression] = STATE(3236), + [sym_anonymous_object_creation_expression] = STATE(3236), + [sym_implicit_array_creation_expression] = STATE(3236), + [sym_implicit_object_creation_expression] = STATE(3236), + [sym_implicit_stackalloc_expression] = STATE(3236), + [sym_initializer_expression] = STATE(3236), + [sym_default_expression] = STATE(3236), + [sym_with_expression] = STATE(3236), + [sym_sizeof_expression] = STATE(3236), + [sym_typeof_expression] = STATE(3236), + [sym_makeref_expression] = STATE(3236), + [sym_ref_expression] = STATE(3236), + [sym_reftype_expression] = STATE(3236), + [sym_refvalue_expression] = STATE(3236), + [sym_stackalloc_expression] = STATE(3236), + [sym_range_expression] = STATE(3236), + [sym_tuple_expression] = STATE(2602), + [sym_literal] = STATE(3236), + [sym_character_literal] = STATE(3272), + [sym_string_literal] = STATE(3272), + [sym_raw_string_literal] = STATE(3272), + [sym_boolean_literal] = STATE(3272), + [sym_identifier] = STATE(2261), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3236), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(1048), [sym_preproc_endregion] = STATE(1048), [sym_preproc_line] = STATE(1048), @@ -218971,47 +218857,47 @@ 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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3440), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3379), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1241), - [anon_sym_LPAREN] = ACTIONS(2195), - [anon_sym_ref] = ACTIONS(2197), - [anon_sym_LBRACE] = ACTIONS(1247), - [anon_sym_delegate] = ACTIONS(1249), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1149), + [anon_sym_LPAREN] = ACTIONS(1597), + [anon_sym_ref] = ACTIONS(1599), + [anon_sym_LBRACE] = ACTIONS(1155), + [anon_sym_delegate] = ACTIONS(1157), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1845), + [anon_sym_new] = ACTIONS(1535), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1253), - [anon_sym_BANG] = ACTIONS(2201), - [anon_sym_TILDE] = ACTIONS(2201), - [anon_sym_PLUS_PLUS] = ACTIONS(2201), - [anon_sym_DASH_DASH] = ACTIONS(2201), - [anon_sym_true] = ACTIONS(1259), - [anon_sym_false] = ACTIONS(1259), - [anon_sym_PLUS] = ACTIONS(2199), - [anon_sym_DASH] = ACTIONS(2199), - [anon_sym_STAR] = ACTIONS(1851), - [anon_sym_CARET] = ACTIONS(2201), - [anon_sym_AMP] = ACTIONS(2201), - [anon_sym_this] = ACTIONS(1263), + [anon_sym_checked] = ACTIONS(1163), + [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(1169), + [anon_sym_false] = ACTIONS(1169), + [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(1173), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1265), + [anon_sym_base] = ACTIONS(1175), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1267), - [anon_sym_unchecked] = ACTIONS(1253), + [sym_predefined_type] = ACTIONS(1177), + [anon_sym_unchecked] = ACTIONS(1163), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1269), - [anon_sym_throw] = ACTIONS(2203), + [anon_sym_default] = ACTIONS(1179), + [anon_sym_throw] = ACTIONS(1607), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2205), - [anon_sym_DOT_DOT] = ACTIONS(2207), + [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), @@ -219024,19 +218910,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1277), - [anon_sym_sizeof] = ACTIONS(1279), - [anon_sym_typeof] = ACTIONS(1281), - [anon_sym___makeref] = ACTIONS(1283), - [anon_sym___reftype] = ACTIONS(1285), - [anon_sym___refvalue] = ACTIONS(1287), - [sym_null_literal] = ACTIONS(1289), - [anon_sym_SQUOTE] = ACTIONS(1291), - [sym_integer_literal] = ACTIONS(1289), - [sym_real_literal] = ACTIONS(1293), - [anon_sym_DQUOTE] = ACTIONS(1295), - [sym_verbatim_string_literal] = ACTIONS(1293), - [aux_sym_preproc_if_token1] = ACTIONS(1297), + [anon_sym_stackalloc] = ACTIONS(1187), + [anon_sym_sizeof] = ACTIONS(1189), + [anon_sym_typeof] = ACTIONS(1191), + [anon_sym___makeref] = ACTIONS(1193), + [anon_sym___reftype] = ACTIONS(1195), + [anon_sym___refvalue] = ACTIONS(1197), + [sym_null_literal] = ACTIONS(1199), + [anon_sym_SQUOTE] = ACTIONS(1201), + [sym_integer_literal] = ACTIONS(1199), + [sym_real_literal] = ACTIONS(1203), + [anon_sym_DQUOTE] = ACTIONS(1205), + [sym_verbatim_string_literal] = ACTIONS(1203), + [aux_sym_preproc_if_token1] = ACTIONS(1207), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -219047,90 +218933,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1299), - [sym_interpolation_verbatim_start] = ACTIONS(1301), - [sym_interpolation_raw_start] = ACTIONS(1303), - [sym_raw_string_start] = ACTIONS(1305), + [sym_interpolation_regular_start] = ACTIONS(1209), + [sym_interpolation_verbatim_start] = ACTIONS(1211), + [sym_interpolation_raw_start] = ACTIONS(1213), + [sym_raw_string_start] = ACTIONS(1215), }, [1049] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(5890), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2375), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(5640), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3656), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3080), - [sym_postfix_unary_expression] = STATE(3111), - [sym_prefix_unary_expression] = STATE(3111), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6157), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3080), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3111), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3080), - [sym_member_access_expression] = STATE(2484), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3111), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7362), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(3080), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3080), - [sym_typeof_expression] = STATE(3080), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2484), - [sym_literal] = STATE(3080), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2603), + [sym__name] = STATE(5865), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2344), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(4347), + [sym_non_lvalue_expression] = STATE(3220), + [sym_lvalue_expression] = STATE(3234), + [sym__expression_statement_expression] = STATE(3236), + [sym_assignment_expression] = STATE(3221), + [sym_binary_expression] = STATE(3236), + [sym_postfix_unary_expression] = STATE(3221), + [sym_prefix_unary_expression] = STATE(3221), + [sym__pointer_indirection_expression] = STATE(2602), + [sym_query_expression] = STATE(3236), + [sym_from_clause] = STATE(6151), + [sym_conditional_expression] = STATE(3236), + [sym_conditional_access_expression] = STATE(3236), + [sym_as_expression] = STATE(3236), + [sym_is_expression] = STATE(3236), + [sym_is_pattern_expression] = STATE(3236), + [sym_cast_expression] = STATE(3236), + [sym_checked_expression] = STATE(3236), + [sym_invocation_expression] = STATE(3221), + [sym_switch_expression] = STATE(3236), + [sym_await_expression] = STATE(3221), + [sym_throw_expression] = STATE(3236), + [sym_element_access_expression] = STATE(2602), + [sym_interpolated_string_expression] = STATE(3236), + [sym_member_access_expression] = STATE(2602), + [sym_object_creation_expression] = STATE(3221), + [sym_parenthesized_expression] = STATE(3221), + [sym__parenthesized_lvalue_expression] = STATE(2602), + [sym_lambda_expression] = STATE(3236), + [sym__lambda_expression_init] = STATE(7276), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3236), + [sym_anonymous_method_expression] = STATE(3236), + [sym_anonymous_object_creation_expression] = STATE(3236), + [sym_implicit_array_creation_expression] = STATE(3236), + [sym_implicit_object_creation_expression] = STATE(3236), + [sym_implicit_stackalloc_expression] = STATE(3236), + [sym_initializer_expression] = STATE(3236), + [sym_default_expression] = STATE(3236), + [sym_with_expression] = STATE(3236), + [sym_sizeof_expression] = STATE(3236), + [sym_typeof_expression] = STATE(3236), + [sym_makeref_expression] = STATE(3236), + [sym_ref_expression] = STATE(3236), + [sym_reftype_expression] = STATE(3236), + [sym_refvalue_expression] = STATE(3236), + [sym_stackalloc_expression] = STATE(3236), + [sym_range_expression] = STATE(3236), + [sym_tuple_expression] = STATE(2602), + [sym_literal] = STATE(3236), + [sym_character_literal] = STATE(3272), + [sym_string_literal] = STATE(3272), + [sym_raw_string_literal] = STATE(3272), + [sym_boolean_literal] = STATE(3272), + [sym_identifier] = STATE(2261), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3236), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(1049), [sym_preproc_endregion] = STATE(1049), [sym_preproc_line] = STATE(1049), @@ -219140,47 +219026,47 @@ 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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3379), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1481), - [anon_sym_LPAREN] = ACTIONS(2177), - [anon_sym_ref] = ACTIONS(2179), - [anon_sym_LBRACE] = ACTIONS(1487), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1149), + [anon_sym_LPAREN] = ACTIONS(1597), + [anon_sym_ref] = ACTIONS(1599), + [anon_sym_LBRACE] = ACTIONS(1155), + [anon_sym_delegate] = ACTIONS(1157), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(2181), + [anon_sym_new] = ACTIONS(1535), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1067), - [anon_sym_BANG] = ACTIONS(2185), - [anon_sym_TILDE] = ACTIONS(2185), - [anon_sym_PLUS_PLUS] = ACTIONS(2185), - [anon_sym_DASH_DASH] = ACTIONS(2185), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(2183), - [anon_sym_DASH] = ACTIONS(2183), - [anon_sym_STAR] = ACTIONS(2187), - [anon_sym_CARET] = ACTIONS(2185), - [anon_sym_AMP] = ACTIONS(2185), - [anon_sym_this] = ACTIONS(83), + [anon_sym_checked] = ACTIONS(1163), + [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(1169), + [anon_sym_false] = ACTIONS(1169), + [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(1173), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), + [anon_sym_base] = ACTIONS(1175), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1067), + [sym_predefined_type] = ACTIONS(1177), + [anon_sym_unchecked] = ACTIONS(1163), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(2189), + [anon_sym_default] = ACTIONS(1179), + [anon_sym_throw] = ACTIONS(1607), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2191), - [anon_sym_DOT_DOT] = ACTIONS(2193), + [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), @@ -219193,19 +219079,19 @@ static const uint16_t ts_parse_table[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(1089), + [anon_sym_stackalloc] = ACTIONS(1187), + [anon_sym_sizeof] = ACTIONS(1189), + [anon_sym_typeof] = ACTIONS(1191), + [anon_sym___makeref] = ACTIONS(1193), + [anon_sym___reftype] = ACTIONS(1195), + [anon_sym___refvalue] = ACTIONS(1197), + [sym_null_literal] = ACTIONS(1199), + [anon_sym_SQUOTE] = ACTIONS(1201), + [sym_integer_literal] = ACTIONS(1199), + [sym_real_literal] = ACTIONS(1203), + [anon_sym_DQUOTE] = ACTIONS(1205), + [sym_verbatim_string_literal] = ACTIONS(1203), + [aux_sym_preproc_if_token1] = ACTIONS(1207), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -219216,90 +219102,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(151), - [sym_interpolation_verbatim_start] = ACTIONS(153), - [sym_interpolation_raw_start] = ACTIONS(155), - [sym_raw_string_start] = ACTIONS(157), + [sym_interpolation_regular_start] = ACTIONS(1209), + [sym_interpolation_verbatim_start] = ACTIONS(1211), + [sym_interpolation_raw_start] = ACTIONS(1213), + [sym_raw_string_start] = ACTIONS(1215), }, [1050] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(5890), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2375), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(3521), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3656), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3080), - [sym_postfix_unary_expression] = STATE(3111), - [sym_prefix_unary_expression] = STATE(3111), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6157), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3080), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3111), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3080), - [sym_member_access_expression] = STATE(2484), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3111), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7362), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(3080), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3080), - [sym_typeof_expression] = STATE(3080), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2484), - [sym_literal] = STATE(3080), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2603), + [sym__name] = STATE(5865), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2344), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(4351), + [sym_non_lvalue_expression] = STATE(3220), + [sym_lvalue_expression] = STATE(3234), + [sym__expression_statement_expression] = STATE(3236), + [sym_assignment_expression] = STATE(3221), + [sym_binary_expression] = STATE(3236), + [sym_postfix_unary_expression] = STATE(3221), + [sym_prefix_unary_expression] = STATE(3221), + [sym__pointer_indirection_expression] = STATE(2602), + [sym_query_expression] = STATE(3236), + [sym_from_clause] = STATE(6151), + [sym_conditional_expression] = STATE(3236), + [sym_conditional_access_expression] = STATE(3236), + [sym_as_expression] = STATE(3236), + [sym_is_expression] = STATE(3236), + [sym_is_pattern_expression] = STATE(3236), + [sym_cast_expression] = STATE(3236), + [sym_checked_expression] = STATE(3236), + [sym_invocation_expression] = STATE(3221), + [sym_switch_expression] = STATE(3236), + [sym_await_expression] = STATE(3221), + [sym_throw_expression] = STATE(3236), + [sym_element_access_expression] = STATE(2602), + [sym_interpolated_string_expression] = STATE(3236), + [sym_member_access_expression] = STATE(2602), + [sym_object_creation_expression] = STATE(3221), + [sym_parenthesized_expression] = STATE(3221), + [sym__parenthesized_lvalue_expression] = STATE(2602), + [sym_lambda_expression] = STATE(3236), + [sym__lambda_expression_init] = STATE(7276), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3236), + [sym_anonymous_method_expression] = STATE(3236), + [sym_anonymous_object_creation_expression] = STATE(3236), + [sym_implicit_array_creation_expression] = STATE(3236), + [sym_implicit_object_creation_expression] = STATE(3236), + [sym_implicit_stackalloc_expression] = STATE(3236), + [sym_initializer_expression] = STATE(3236), + [sym_default_expression] = STATE(3236), + [sym_with_expression] = STATE(3236), + [sym_sizeof_expression] = STATE(3236), + [sym_typeof_expression] = STATE(3236), + [sym_makeref_expression] = STATE(3236), + [sym_ref_expression] = STATE(3236), + [sym_reftype_expression] = STATE(3236), + [sym_refvalue_expression] = STATE(3236), + [sym_stackalloc_expression] = STATE(3236), + [sym_range_expression] = STATE(3236), + [sym_tuple_expression] = STATE(2602), + [sym_literal] = STATE(3236), + [sym_character_literal] = STATE(3272), + [sym_string_literal] = STATE(3272), + [sym_raw_string_literal] = STATE(3272), + [sym_boolean_literal] = STATE(3272), + [sym_identifier] = STATE(2261), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3236), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(1050), [sym_preproc_endregion] = STATE(1050), [sym_preproc_line] = STATE(1050), @@ -219309,47 +219195,47 @@ 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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3379), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1481), - [anon_sym_LPAREN] = ACTIONS(2177), - [anon_sym_ref] = ACTIONS(2179), - [anon_sym_LBRACE] = ACTIONS(1487), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1149), + [anon_sym_LPAREN] = ACTIONS(1597), + [anon_sym_ref] = ACTIONS(1599), + [anon_sym_LBRACE] = ACTIONS(1155), + [anon_sym_delegate] = ACTIONS(1157), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(2181), + [anon_sym_new] = ACTIONS(1535), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1067), - [anon_sym_BANG] = ACTIONS(2185), - [anon_sym_TILDE] = ACTIONS(2185), - [anon_sym_PLUS_PLUS] = ACTIONS(2185), - [anon_sym_DASH_DASH] = ACTIONS(2185), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(2183), - [anon_sym_DASH] = ACTIONS(2183), - [anon_sym_STAR] = ACTIONS(2187), - [anon_sym_CARET] = ACTIONS(2185), - [anon_sym_AMP] = ACTIONS(2185), - [anon_sym_this] = ACTIONS(83), + [anon_sym_checked] = ACTIONS(1163), + [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(1169), + [anon_sym_false] = ACTIONS(1169), + [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(1173), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), + [anon_sym_base] = ACTIONS(1175), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1067), + [sym_predefined_type] = ACTIONS(1177), + [anon_sym_unchecked] = ACTIONS(1163), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(2189), + [anon_sym_default] = ACTIONS(1179), + [anon_sym_throw] = ACTIONS(1607), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2191), - [anon_sym_DOT_DOT] = ACTIONS(2193), + [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), @@ -219362,19 +219248,19 @@ static const uint16_t ts_parse_table[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(1089), + [anon_sym_stackalloc] = ACTIONS(1187), + [anon_sym_sizeof] = ACTIONS(1189), + [anon_sym_typeof] = ACTIONS(1191), + [anon_sym___makeref] = ACTIONS(1193), + [anon_sym___reftype] = ACTIONS(1195), + [anon_sym___refvalue] = ACTIONS(1197), + [sym_null_literal] = ACTIONS(1199), + [anon_sym_SQUOTE] = ACTIONS(1201), + [sym_integer_literal] = ACTIONS(1199), + [sym_real_literal] = ACTIONS(1203), + [anon_sym_DQUOTE] = ACTIONS(1205), + [sym_verbatim_string_literal] = ACTIONS(1203), + [aux_sym_preproc_if_token1] = ACTIONS(1207), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -219385,90 +219271,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(151), - [sym_interpolation_verbatim_start] = ACTIONS(153), - [sym_interpolation_raw_start] = ACTIONS(155), - [sym_raw_string_start] = ACTIONS(157), + [sym_interpolation_regular_start] = ACTIONS(1209), + [sym_interpolation_verbatim_start] = ACTIONS(1211), + [sym_interpolation_raw_start] = ACTIONS(1213), + [sym_raw_string_start] = ACTIONS(1215), }, [1051] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2610), - [sym__name] = STATE(5879), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2197), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(4197), - [sym_non_lvalue_expression] = STATE(3277), - [sym_lvalue_expression] = STATE(3134), - [sym__expression_statement_expression] = STATE(3228), - [sym_assignment_expression] = STATE(3289), - [sym_binary_expression] = STATE(3228), - [sym_postfix_unary_expression] = STATE(3289), - [sym_prefix_unary_expression] = STATE(3289), - [sym__pointer_indirection_expression] = STATE(2609), - [sym_query_expression] = STATE(3228), - [sym_from_clause] = STATE(6162), - [sym_conditional_expression] = STATE(3228), - [sym_conditional_access_expression] = STATE(3228), - [sym_as_expression] = STATE(3228), - [sym_is_expression] = STATE(3228), - [sym_is_pattern_expression] = STATE(3228), - [sym_cast_expression] = STATE(3228), - [sym_checked_expression] = STATE(3228), - [sym_invocation_expression] = STATE(3289), - [sym_switch_expression] = STATE(3228), - [sym_await_expression] = STATE(3289), - [sym_throw_expression] = STATE(3228), - [sym_element_access_expression] = STATE(2609), - [sym_interpolated_string_expression] = STATE(3228), - [sym_member_access_expression] = STATE(2609), - [sym_object_creation_expression] = STATE(3289), - [sym_parenthesized_expression] = STATE(3289), - [sym__parenthesized_lvalue_expression] = STATE(2609), - [sym_lambda_expression] = STATE(3228), - [sym__lambda_expression_init] = STATE(7695), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3228), - [sym_anonymous_method_expression] = STATE(3228), - [sym_anonymous_object_creation_expression] = STATE(3228), - [sym_implicit_array_creation_expression] = STATE(3228), - [sym_implicit_object_creation_expression] = STATE(3228), - [sym_implicit_stackalloc_expression] = STATE(3228), - [sym_initializer_expression] = STATE(3228), - [sym_default_expression] = STATE(3228), - [sym_with_expression] = STATE(3228), - [sym_sizeof_expression] = STATE(3228), - [sym_typeof_expression] = STATE(3228), - [sym_makeref_expression] = STATE(3228), - [sym_ref_expression] = STATE(3228), - [sym_reftype_expression] = STATE(3228), - [sym_refvalue_expression] = STATE(3228), - [sym_stackalloc_expression] = STATE(3228), - [sym_range_expression] = STATE(3228), - [sym_tuple_expression] = STATE(2609), - [sym_literal] = STATE(3228), - [sym_character_literal] = STATE(3278), - [sym_string_literal] = STATE(3278), - [sym_raw_string_literal] = STATE(3278), - [sym_boolean_literal] = STATE(3278), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3228), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2603), + [sym__name] = STATE(5865), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2344), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(4391), + [sym_non_lvalue_expression] = STATE(3220), + [sym_lvalue_expression] = STATE(3234), + [sym__expression_statement_expression] = STATE(3236), + [sym_assignment_expression] = STATE(3221), + [sym_binary_expression] = STATE(3236), + [sym_postfix_unary_expression] = STATE(3221), + [sym_prefix_unary_expression] = STATE(3221), + [sym__pointer_indirection_expression] = STATE(2602), + [sym_query_expression] = STATE(3236), + [sym_from_clause] = STATE(6151), + [sym_conditional_expression] = STATE(3236), + [sym_conditional_access_expression] = STATE(3236), + [sym_as_expression] = STATE(3236), + [sym_is_expression] = STATE(3236), + [sym_is_pattern_expression] = STATE(3236), + [sym_cast_expression] = STATE(3236), + [sym_checked_expression] = STATE(3236), + [sym_invocation_expression] = STATE(3221), + [sym_switch_expression] = STATE(3236), + [sym_await_expression] = STATE(3221), + [sym_throw_expression] = STATE(3236), + [sym_element_access_expression] = STATE(2602), + [sym_interpolated_string_expression] = STATE(3236), + [sym_member_access_expression] = STATE(2602), + [sym_object_creation_expression] = STATE(3221), + [sym_parenthesized_expression] = STATE(3221), + [sym__parenthesized_lvalue_expression] = STATE(2602), + [sym_lambda_expression] = STATE(3236), + [sym__lambda_expression_init] = STATE(7276), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3236), + [sym_anonymous_method_expression] = STATE(3236), + [sym_anonymous_object_creation_expression] = STATE(3236), + [sym_implicit_array_creation_expression] = STATE(3236), + [sym_implicit_object_creation_expression] = STATE(3236), + [sym_implicit_stackalloc_expression] = STATE(3236), + [sym_initializer_expression] = STATE(3236), + [sym_default_expression] = STATE(3236), + [sym_with_expression] = STATE(3236), + [sym_sizeof_expression] = STATE(3236), + [sym_typeof_expression] = STATE(3236), + [sym_makeref_expression] = STATE(3236), + [sym_ref_expression] = STATE(3236), + [sym_reftype_expression] = STATE(3236), + [sym_refvalue_expression] = STATE(3236), + [sym_stackalloc_expression] = STATE(3236), + [sym_range_expression] = STATE(3236), + [sym_tuple_expression] = STATE(2602), + [sym_literal] = STATE(3236), + [sym_character_literal] = STATE(3272), + [sym_string_literal] = STATE(3272), + [sym_raw_string_literal] = STATE(3272), + [sym_boolean_literal] = STATE(3272), + [sym_identifier] = STATE(2261), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3236), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(1051), [sym_preproc_endregion] = STATE(1051), [sym_preproc_line] = STATE(1051), @@ -219478,47 +219364,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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3396), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3379), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1153), - [anon_sym_LPAREN] = ACTIONS(1371), - [anon_sym_ref] = ACTIONS(1373), - [anon_sym_LBRACE] = ACTIONS(1159), - [anon_sym_delegate] = ACTIONS(1161), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1149), + [anon_sym_LPAREN] = ACTIONS(1597), + [anon_sym_ref] = ACTIONS(1599), + [anon_sym_LBRACE] = ACTIONS(1155), + [anon_sym_delegate] = ACTIONS(1157), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1163), + [anon_sym_new] = ACTIONS(1535), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1167), - [anon_sym_BANG] = ACTIONS(1377), - [anon_sym_TILDE] = ACTIONS(1377), - [anon_sym_PLUS_PLUS] = ACTIONS(1377), - [anon_sym_DASH_DASH] = ACTIONS(1377), - [anon_sym_true] = ACTIONS(1173), - [anon_sym_false] = ACTIONS(1173), - [anon_sym_PLUS] = ACTIONS(1375), - [anon_sym_DASH] = ACTIONS(1375), - [anon_sym_STAR] = ACTIONS(1379), - [anon_sym_CARET] = ACTIONS(1377), - [anon_sym_AMP] = ACTIONS(1377), - [anon_sym_this] = ACTIONS(1177), + [anon_sym_checked] = ACTIONS(1163), + [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(1169), + [anon_sym_false] = ACTIONS(1169), + [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(1173), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1179), + [anon_sym_base] = ACTIONS(1175), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1181), - [anon_sym_unchecked] = ACTIONS(1167), + [sym_predefined_type] = ACTIONS(1177), + [anon_sym_unchecked] = ACTIONS(1163), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1183), - [anon_sym_throw] = ACTIONS(1381), + [anon_sym_default] = ACTIONS(1179), + [anon_sym_throw] = ACTIONS(1607), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1383), - [anon_sym_DOT_DOT] = ACTIONS(1385), + [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), @@ -219531,19 +219417,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1191), - [anon_sym_sizeof] = ACTIONS(1193), - [anon_sym_typeof] = ACTIONS(1195), - [anon_sym___makeref] = ACTIONS(1197), - [anon_sym___reftype] = ACTIONS(1199), - [anon_sym___refvalue] = ACTIONS(1201), - [sym_null_literal] = ACTIONS(1203), - [anon_sym_SQUOTE] = ACTIONS(1205), - [sym_integer_literal] = ACTIONS(1203), - [sym_real_literal] = ACTIONS(1207), - [anon_sym_DQUOTE] = ACTIONS(1209), - [sym_verbatim_string_literal] = ACTIONS(1207), - [aux_sym_preproc_if_token1] = ACTIONS(1211), + [anon_sym_stackalloc] = ACTIONS(1187), + [anon_sym_sizeof] = ACTIONS(1189), + [anon_sym_typeof] = ACTIONS(1191), + [anon_sym___makeref] = ACTIONS(1193), + [anon_sym___reftype] = ACTIONS(1195), + [anon_sym___refvalue] = ACTIONS(1197), + [sym_null_literal] = ACTIONS(1199), + [anon_sym_SQUOTE] = ACTIONS(1201), + [sym_integer_literal] = ACTIONS(1199), + [sym_real_literal] = ACTIONS(1203), + [anon_sym_DQUOTE] = ACTIONS(1205), + [sym_verbatim_string_literal] = ACTIONS(1203), + [aux_sym_preproc_if_token1] = ACTIONS(1207), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -219554,90 +219440,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1213), - [sym_interpolation_verbatim_start] = ACTIONS(1215), - [sym_interpolation_raw_start] = ACTIONS(1217), - [sym_raw_string_start] = ACTIONS(1219), + [sym_interpolation_regular_start] = ACTIONS(1209), + [sym_interpolation_verbatim_start] = ACTIONS(1211), + [sym_interpolation_raw_start] = ACTIONS(1213), + [sym_raw_string_start] = ACTIONS(1215), }, [1052] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2914), - [sym__name] = STATE(5873), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2362), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(3912), - [sym_non_lvalue_expression] = STATE(3880), - [sym_lvalue_expression] = STATE(3092), - [sym__expression_statement_expression] = STATE(3873), - [sym_assignment_expression] = STATE(3881), - [sym_binary_expression] = STATE(3873), - [sym_postfix_unary_expression] = STATE(3881), - [sym_prefix_unary_expression] = STATE(3881), - [sym__pointer_indirection_expression] = STATE(2913), - [sym_query_expression] = STATE(3873), - [sym_from_clause] = STATE(6168), - [sym_conditional_expression] = STATE(3873), - [sym_conditional_access_expression] = STATE(3873), - [sym_as_expression] = STATE(3873), - [sym_is_expression] = STATE(3873), - [sym_is_pattern_expression] = STATE(3873), - [sym_cast_expression] = STATE(3873), - [sym_checked_expression] = STATE(3873), - [sym_invocation_expression] = STATE(3881), - [sym_switch_expression] = STATE(3873), - [sym_await_expression] = STATE(3881), - [sym_throw_expression] = STATE(3873), - [sym_element_access_expression] = STATE(2913), - [sym_interpolated_string_expression] = STATE(3873), - [sym_member_access_expression] = STATE(2913), - [sym_object_creation_expression] = STATE(3881), - [sym_parenthesized_expression] = STATE(3881), - [sym__parenthesized_lvalue_expression] = STATE(2913), - [sym_lambda_expression] = STATE(3873), - [sym__lambda_expression_init] = STATE(7533), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3873), - [sym_anonymous_method_expression] = STATE(3873), - [sym_anonymous_object_creation_expression] = STATE(3873), - [sym_implicit_array_creation_expression] = STATE(3873), - [sym_implicit_object_creation_expression] = STATE(3873), - [sym_implicit_stackalloc_expression] = STATE(3873), - [sym_initializer_expression] = STATE(3873), - [sym_default_expression] = STATE(3873), - [sym_with_expression] = STATE(3873), - [sym_sizeof_expression] = STATE(3873), - [sym_typeof_expression] = STATE(3873), - [sym_makeref_expression] = STATE(3873), - [sym_ref_expression] = STATE(3873), - [sym_reftype_expression] = STATE(3873), - [sym_refvalue_expression] = STATE(3873), - [sym_stackalloc_expression] = STATE(3873), - [sym_range_expression] = STATE(3873), - [sym_tuple_expression] = STATE(2913), - [sym_literal] = STATE(3873), - [sym_character_literal] = STATE(3877), - [sym_string_literal] = STATE(3877), - [sym_raw_string_literal] = STATE(3877), - [sym_boolean_literal] = STATE(3877), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3873), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2603), + [sym__name] = STATE(5865), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2344), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(4453), + [sym_non_lvalue_expression] = STATE(3220), + [sym_lvalue_expression] = STATE(3234), + [sym__expression_statement_expression] = STATE(3236), + [sym_assignment_expression] = STATE(3221), + [sym_binary_expression] = STATE(3236), + [sym_postfix_unary_expression] = STATE(3221), + [sym_prefix_unary_expression] = STATE(3221), + [sym__pointer_indirection_expression] = STATE(2602), + [sym_query_expression] = STATE(3236), + [sym_from_clause] = STATE(6151), + [sym_conditional_expression] = STATE(3236), + [sym_conditional_access_expression] = STATE(3236), + [sym_as_expression] = STATE(3236), + [sym_is_expression] = STATE(3236), + [sym_is_pattern_expression] = STATE(3236), + [sym_cast_expression] = STATE(3236), + [sym_checked_expression] = STATE(3236), + [sym_invocation_expression] = STATE(3221), + [sym_switch_expression] = STATE(3236), + [sym_await_expression] = STATE(3221), + [sym_throw_expression] = STATE(3236), + [sym_element_access_expression] = STATE(2602), + [sym_interpolated_string_expression] = STATE(3236), + [sym_member_access_expression] = STATE(2602), + [sym_object_creation_expression] = STATE(3221), + [sym_parenthesized_expression] = STATE(3221), + [sym__parenthesized_lvalue_expression] = STATE(2602), + [sym_lambda_expression] = STATE(3236), + [sym__lambda_expression_init] = STATE(7276), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3236), + [sym_anonymous_method_expression] = STATE(3236), + [sym_anonymous_object_creation_expression] = STATE(3236), + [sym_implicit_array_creation_expression] = STATE(3236), + [sym_implicit_object_creation_expression] = STATE(3236), + [sym_implicit_stackalloc_expression] = STATE(3236), + [sym_initializer_expression] = STATE(3236), + [sym_default_expression] = STATE(3236), + [sym_with_expression] = STATE(3236), + [sym_sizeof_expression] = STATE(3236), + [sym_typeof_expression] = STATE(3236), + [sym_makeref_expression] = STATE(3236), + [sym_ref_expression] = STATE(3236), + [sym_reftype_expression] = STATE(3236), + [sym_refvalue_expression] = STATE(3236), + [sym_stackalloc_expression] = STATE(3236), + [sym_range_expression] = STATE(3236), + [sym_tuple_expression] = STATE(2602), + [sym_literal] = STATE(3236), + [sym_character_literal] = STATE(3272), + [sym_string_literal] = STATE(3272), + [sym_raw_string_literal] = STATE(3272), + [sym_boolean_literal] = STATE(3272), + [sym_identifier] = STATE(2261), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3236), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(1052), [sym_preproc_endregion] = STATE(1052), [sym_preproc_line] = STATE(1052), @@ -219647,47 +219533,47 @@ 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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3382), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3379), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1627), - [anon_sym_LPAREN] = ACTIONS(1961), - [anon_sym_ref] = ACTIONS(1963), - [anon_sym_LBRACE] = ACTIONS(1633), - [anon_sym_delegate] = ACTIONS(1635), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1149), + [anon_sym_LPAREN] = ACTIONS(1597), + [anon_sym_ref] = ACTIONS(1599), + [anon_sym_LBRACE] = ACTIONS(1155), + [anon_sym_delegate] = ACTIONS(1157), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1637), + [anon_sym_new] = ACTIONS(1535), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1639), - [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(1645), - [anon_sym_false] = ACTIONS(1645), - [anon_sym_PLUS] = ACTIONS(1965), - [anon_sym_DASH] = ACTIONS(1965), - [anon_sym_STAR] = ACTIONS(1647), - [anon_sym_CARET] = ACTIONS(1967), - [anon_sym_AMP] = ACTIONS(1967), - [anon_sym_this] = ACTIONS(1649), + [anon_sym_checked] = ACTIONS(1163), + [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(1169), + [anon_sym_false] = ACTIONS(1169), + [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(1173), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1651), + [anon_sym_base] = ACTIONS(1175), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1653), - [anon_sym_unchecked] = ACTIONS(1639), + [sym_predefined_type] = ACTIONS(1177), + [anon_sym_unchecked] = ACTIONS(1163), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1655), - [anon_sym_throw] = ACTIONS(1969), + [anon_sym_default] = ACTIONS(1179), + [anon_sym_throw] = ACTIONS(1607), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1971), - [anon_sym_DOT_DOT] = ACTIONS(1973), + [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), @@ -219700,19 +219586,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1663), - [anon_sym_sizeof] = ACTIONS(1665), - [anon_sym_typeof] = ACTIONS(1667), - [anon_sym___makeref] = ACTIONS(1669), - [anon_sym___reftype] = ACTIONS(1671), - [anon_sym___refvalue] = ACTIONS(1673), - [sym_null_literal] = ACTIONS(1675), - [anon_sym_SQUOTE] = ACTIONS(1677), - [sym_integer_literal] = ACTIONS(1675), - [sym_real_literal] = ACTIONS(1679), - [anon_sym_DQUOTE] = ACTIONS(1681), - [sym_verbatim_string_literal] = ACTIONS(1679), - [aux_sym_preproc_if_token1] = ACTIONS(1683), + [anon_sym_stackalloc] = ACTIONS(1187), + [anon_sym_sizeof] = ACTIONS(1189), + [anon_sym_typeof] = ACTIONS(1191), + [anon_sym___makeref] = ACTIONS(1193), + [anon_sym___reftype] = ACTIONS(1195), + [anon_sym___refvalue] = ACTIONS(1197), + [sym_null_literal] = ACTIONS(1199), + [anon_sym_SQUOTE] = ACTIONS(1201), + [sym_integer_literal] = ACTIONS(1199), + [sym_real_literal] = ACTIONS(1203), + [anon_sym_DQUOTE] = ACTIONS(1205), + [sym_verbatim_string_literal] = ACTIONS(1203), + [aux_sym_preproc_if_token1] = ACTIONS(1207), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -219723,90 +219609,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1685), - [sym_interpolation_verbatim_start] = ACTIONS(1687), - [sym_interpolation_raw_start] = ACTIONS(1689), - [sym_raw_string_start] = ACTIONS(1691), + [sym_interpolation_regular_start] = ACTIONS(1209), + [sym_interpolation_verbatim_start] = ACTIONS(1211), + [sym_interpolation_raw_start] = ACTIONS(1213), + [sym_raw_string_start] = ACTIONS(1215), }, [1053] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2914), - [sym__name] = STATE(5873), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2362), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(3913), - [sym_non_lvalue_expression] = STATE(3880), - [sym_lvalue_expression] = STATE(3092), - [sym__expression_statement_expression] = STATE(3873), - [sym_assignment_expression] = STATE(3881), - [sym_binary_expression] = STATE(3873), - [sym_postfix_unary_expression] = STATE(3881), - [sym_prefix_unary_expression] = STATE(3881), - [sym__pointer_indirection_expression] = STATE(2913), - [sym_query_expression] = STATE(3873), - [sym_from_clause] = STATE(6168), - [sym_conditional_expression] = STATE(3873), - [sym_conditional_access_expression] = STATE(3873), - [sym_as_expression] = STATE(3873), - [sym_is_expression] = STATE(3873), - [sym_is_pattern_expression] = STATE(3873), - [sym_cast_expression] = STATE(3873), - [sym_checked_expression] = STATE(3873), - [sym_invocation_expression] = STATE(3881), - [sym_switch_expression] = STATE(3873), - [sym_await_expression] = STATE(3881), - [sym_throw_expression] = STATE(3873), - [sym_element_access_expression] = STATE(2913), - [sym_interpolated_string_expression] = STATE(3873), - [sym_member_access_expression] = STATE(2913), - [sym_object_creation_expression] = STATE(3881), - [sym_parenthesized_expression] = STATE(3881), - [sym__parenthesized_lvalue_expression] = STATE(2913), - [sym_lambda_expression] = STATE(3873), - [sym__lambda_expression_init] = STATE(7533), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3873), - [sym_anonymous_method_expression] = STATE(3873), - [sym_anonymous_object_creation_expression] = STATE(3873), - [sym_implicit_array_creation_expression] = STATE(3873), - [sym_implicit_object_creation_expression] = STATE(3873), - [sym_implicit_stackalloc_expression] = STATE(3873), - [sym_initializer_expression] = STATE(3873), - [sym_default_expression] = STATE(3873), - [sym_with_expression] = STATE(3873), - [sym_sizeof_expression] = STATE(3873), - [sym_typeof_expression] = STATE(3873), - [sym_makeref_expression] = STATE(3873), - [sym_ref_expression] = STATE(3873), - [sym_reftype_expression] = STATE(3873), - [sym_refvalue_expression] = STATE(3873), - [sym_stackalloc_expression] = STATE(3873), - [sym_range_expression] = STATE(3873), - [sym_tuple_expression] = STATE(2913), - [sym_literal] = STATE(3873), - [sym_character_literal] = STATE(3877), - [sym_string_literal] = STATE(3877), - [sym_raw_string_literal] = STATE(3877), - [sym_boolean_literal] = STATE(3877), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3873), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2603), + [sym__name] = STATE(5865), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2344), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(4398), + [sym_non_lvalue_expression] = STATE(3220), + [sym_lvalue_expression] = STATE(3234), + [sym__expression_statement_expression] = STATE(3236), + [sym_assignment_expression] = STATE(3221), + [sym_binary_expression] = STATE(3236), + [sym_postfix_unary_expression] = STATE(3221), + [sym_prefix_unary_expression] = STATE(3221), + [sym__pointer_indirection_expression] = STATE(2602), + [sym_query_expression] = STATE(3236), + [sym_from_clause] = STATE(6151), + [sym_conditional_expression] = STATE(3236), + [sym_conditional_access_expression] = STATE(3236), + [sym_as_expression] = STATE(3236), + [sym_is_expression] = STATE(3236), + [sym_is_pattern_expression] = STATE(3236), + [sym_cast_expression] = STATE(3236), + [sym_checked_expression] = STATE(3236), + [sym_invocation_expression] = STATE(3221), + [sym_switch_expression] = STATE(3236), + [sym_await_expression] = STATE(3221), + [sym_throw_expression] = STATE(3236), + [sym_element_access_expression] = STATE(2602), + [sym_interpolated_string_expression] = STATE(3236), + [sym_member_access_expression] = STATE(2602), + [sym_object_creation_expression] = STATE(3221), + [sym_parenthesized_expression] = STATE(3221), + [sym__parenthesized_lvalue_expression] = STATE(2602), + [sym_lambda_expression] = STATE(3236), + [sym__lambda_expression_init] = STATE(7276), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3236), + [sym_anonymous_method_expression] = STATE(3236), + [sym_anonymous_object_creation_expression] = STATE(3236), + [sym_implicit_array_creation_expression] = STATE(3236), + [sym_implicit_object_creation_expression] = STATE(3236), + [sym_implicit_stackalloc_expression] = STATE(3236), + [sym_initializer_expression] = STATE(3236), + [sym_default_expression] = STATE(3236), + [sym_with_expression] = STATE(3236), + [sym_sizeof_expression] = STATE(3236), + [sym_typeof_expression] = STATE(3236), + [sym_makeref_expression] = STATE(3236), + [sym_ref_expression] = STATE(3236), + [sym_reftype_expression] = STATE(3236), + [sym_refvalue_expression] = STATE(3236), + [sym_stackalloc_expression] = STATE(3236), + [sym_range_expression] = STATE(3236), + [sym_tuple_expression] = STATE(2602), + [sym_literal] = STATE(3236), + [sym_character_literal] = STATE(3272), + [sym_string_literal] = STATE(3272), + [sym_raw_string_literal] = STATE(3272), + [sym_boolean_literal] = STATE(3272), + [sym_identifier] = STATE(2261), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3236), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(1053), [sym_preproc_endregion] = STATE(1053), [sym_preproc_line] = STATE(1053), @@ -219816,47 +219702,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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3382), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3379), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1627), - [anon_sym_LPAREN] = ACTIONS(1961), - [anon_sym_ref] = ACTIONS(1963), - [anon_sym_LBRACE] = ACTIONS(1633), - [anon_sym_delegate] = ACTIONS(1635), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1149), + [anon_sym_LPAREN] = ACTIONS(1597), + [anon_sym_ref] = ACTIONS(1599), + [anon_sym_LBRACE] = ACTIONS(1155), + [anon_sym_delegate] = ACTIONS(1157), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1637), + [anon_sym_new] = ACTIONS(1535), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1639), - [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(1645), - [anon_sym_false] = ACTIONS(1645), - [anon_sym_PLUS] = ACTIONS(1965), - [anon_sym_DASH] = ACTIONS(1965), - [anon_sym_STAR] = ACTIONS(1647), - [anon_sym_CARET] = ACTIONS(1967), - [anon_sym_AMP] = ACTIONS(1967), - [anon_sym_this] = ACTIONS(1649), + [anon_sym_checked] = ACTIONS(1163), + [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(1169), + [anon_sym_false] = ACTIONS(1169), + [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(1173), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1651), + [anon_sym_base] = ACTIONS(1175), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1653), - [anon_sym_unchecked] = ACTIONS(1639), + [sym_predefined_type] = ACTIONS(1177), + [anon_sym_unchecked] = ACTIONS(1163), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1655), - [anon_sym_throw] = ACTIONS(1969), + [anon_sym_default] = ACTIONS(1179), + [anon_sym_throw] = ACTIONS(1607), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1971), - [anon_sym_DOT_DOT] = ACTIONS(1973), + [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), @@ -219869,19 +219755,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1663), - [anon_sym_sizeof] = ACTIONS(1665), - [anon_sym_typeof] = ACTIONS(1667), - [anon_sym___makeref] = ACTIONS(1669), - [anon_sym___reftype] = ACTIONS(1671), - [anon_sym___refvalue] = ACTIONS(1673), - [sym_null_literal] = ACTIONS(1675), - [anon_sym_SQUOTE] = ACTIONS(1677), - [sym_integer_literal] = ACTIONS(1675), - [sym_real_literal] = ACTIONS(1679), - [anon_sym_DQUOTE] = ACTIONS(1681), - [sym_verbatim_string_literal] = ACTIONS(1679), - [aux_sym_preproc_if_token1] = ACTIONS(1683), + [anon_sym_stackalloc] = ACTIONS(1187), + [anon_sym_sizeof] = ACTIONS(1189), + [anon_sym_typeof] = ACTIONS(1191), + [anon_sym___makeref] = ACTIONS(1193), + [anon_sym___reftype] = ACTIONS(1195), + [anon_sym___refvalue] = ACTIONS(1197), + [sym_null_literal] = ACTIONS(1199), + [anon_sym_SQUOTE] = ACTIONS(1201), + [sym_integer_literal] = ACTIONS(1199), + [sym_real_literal] = ACTIONS(1203), + [anon_sym_DQUOTE] = ACTIONS(1205), + [sym_verbatim_string_literal] = ACTIONS(1203), + [aux_sym_preproc_if_token1] = ACTIONS(1207), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -219892,90 +219778,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1685), - [sym_interpolation_verbatim_start] = ACTIONS(1687), - [sym_interpolation_raw_start] = ACTIONS(1689), - [sym_raw_string_start] = ACTIONS(1691), + [sym_interpolation_regular_start] = ACTIONS(1209), + [sym_interpolation_verbatim_start] = ACTIONS(1211), + [sym_interpolation_raw_start] = ACTIONS(1213), + [sym_raw_string_start] = ACTIONS(1215), }, [1054] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2914), - [sym__name] = STATE(5873), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2362), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(3914), - [sym_non_lvalue_expression] = STATE(3880), - [sym_lvalue_expression] = STATE(3092), - [sym__expression_statement_expression] = STATE(3873), - [sym_assignment_expression] = STATE(3881), - [sym_binary_expression] = STATE(3873), - [sym_postfix_unary_expression] = STATE(3881), - [sym_prefix_unary_expression] = STATE(3881), - [sym__pointer_indirection_expression] = STATE(2913), - [sym_query_expression] = STATE(3873), - [sym_from_clause] = STATE(6168), - [sym_conditional_expression] = STATE(3873), - [sym_conditional_access_expression] = STATE(3873), - [sym_as_expression] = STATE(3873), - [sym_is_expression] = STATE(3873), - [sym_is_pattern_expression] = STATE(3873), - [sym_cast_expression] = STATE(3873), - [sym_checked_expression] = STATE(3873), - [sym_invocation_expression] = STATE(3881), - [sym_switch_expression] = STATE(3873), - [sym_await_expression] = STATE(3881), - [sym_throw_expression] = STATE(3873), - [sym_element_access_expression] = STATE(2913), - [sym_interpolated_string_expression] = STATE(3873), - [sym_member_access_expression] = STATE(2913), - [sym_object_creation_expression] = STATE(3881), - [sym_parenthesized_expression] = STATE(3881), - [sym__parenthesized_lvalue_expression] = STATE(2913), - [sym_lambda_expression] = STATE(3873), - [sym__lambda_expression_init] = STATE(7533), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3873), - [sym_anonymous_method_expression] = STATE(3873), - [sym_anonymous_object_creation_expression] = STATE(3873), - [sym_implicit_array_creation_expression] = STATE(3873), - [sym_implicit_object_creation_expression] = STATE(3873), - [sym_implicit_stackalloc_expression] = STATE(3873), - [sym_initializer_expression] = STATE(3873), - [sym_default_expression] = STATE(3873), - [sym_with_expression] = STATE(3873), - [sym_sizeof_expression] = STATE(3873), - [sym_typeof_expression] = STATE(3873), - [sym_makeref_expression] = STATE(3873), - [sym_ref_expression] = STATE(3873), - [sym_reftype_expression] = STATE(3873), - [sym_refvalue_expression] = STATE(3873), - [sym_stackalloc_expression] = STATE(3873), - [sym_range_expression] = STATE(3873), - [sym_tuple_expression] = STATE(2913), - [sym_literal] = STATE(3873), - [sym_character_literal] = STATE(3877), - [sym_string_literal] = STATE(3877), - [sym_raw_string_literal] = STATE(3877), - [sym_boolean_literal] = STATE(3877), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3873), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2603), + [sym__name] = STATE(5865), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2344), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(4381), + [sym_non_lvalue_expression] = STATE(3220), + [sym_lvalue_expression] = STATE(3234), + [sym__expression_statement_expression] = STATE(3236), + [sym_assignment_expression] = STATE(3221), + [sym_binary_expression] = STATE(3236), + [sym_postfix_unary_expression] = STATE(3221), + [sym_prefix_unary_expression] = STATE(3221), + [sym__pointer_indirection_expression] = STATE(2602), + [sym_query_expression] = STATE(3236), + [sym_from_clause] = STATE(6151), + [sym_conditional_expression] = STATE(3236), + [sym_conditional_access_expression] = STATE(3236), + [sym_as_expression] = STATE(3236), + [sym_is_expression] = STATE(3236), + [sym_is_pattern_expression] = STATE(3236), + [sym_cast_expression] = STATE(3236), + [sym_checked_expression] = STATE(3236), + [sym_invocation_expression] = STATE(3221), + [sym_switch_expression] = STATE(3236), + [sym_await_expression] = STATE(3221), + [sym_throw_expression] = STATE(3236), + [sym_element_access_expression] = STATE(2602), + [sym_interpolated_string_expression] = STATE(3236), + [sym_member_access_expression] = STATE(2602), + [sym_object_creation_expression] = STATE(3221), + [sym_parenthesized_expression] = STATE(3221), + [sym__parenthesized_lvalue_expression] = STATE(2602), + [sym_lambda_expression] = STATE(3236), + [sym__lambda_expression_init] = STATE(7276), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3236), + [sym_anonymous_method_expression] = STATE(3236), + [sym_anonymous_object_creation_expression] = STATE(3236), + [sym_implicit_array_creation_expression] = STATE(3236), + [sym_implicit_object_creation_expression] = STATE(3236), + [sym_implicit_stackalloc_expression] = STATE(3236), + [sym_initializer_expression] = STATE(3236), + [sym_default_expression] = STATE(3236), + [sym_with_expression] = STATE(3236), + [sym_sizeof_expression] = STATE(3236), + [sym_typeof_expression] = STATE(3236), + [sym_makeref_expression] = STATE(3236), + [sym_ref_expression] = STATE(3236), + [sym_reftype_expression] = STATE(3236), + [sym_refvalue_expression] = STATE(3236), + [sym_stackalloc_expression] = STATE(3236), + [sym_range_expression] = STATE(3236), + [sym_tuple_expression] = STATE(2602), + [sym_literal] = STATE(3236), + [sym_character_literal] = STATE(3272), + [sym_string_literal] = STATE(3272), + [sym_raw_string_literal] = STATE(3272), + [sym_boolean_literal] = STATE(3272), + [sym_identifier] = STATE(2261), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3236), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(1054), [sym_preproc_endregion] = STATE(1054), [sym_preproc_line] = STATE(1054), @@ -219985,47 +219871,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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3382), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3379), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1627), - [anon_sym_LPAREN] = ACTIONS(1961), - [anon_sym_ref] = ACTIONS(1963), - [anon_sym_LBRACE] = ACTIONS(1633), - [anon_sym_delegate] = ACTIONS(1635), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1149), + [anon_sym_LPAREN] = ACTIONS(1597), + [anon_sym_ref] = ACTIONS(1599), + [anon_sym_LBRACE] = ACTIONS(1155), + [anon_sym_delegate] = ACTIONS(1157), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1637), + [anon_sym_new] = ACTIONS(1535), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1639), - [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(1645), - [anon_sym_false] = ACTIONS(1645), - [anon_sym_PLUS] = ACTIONS(1965), - [anon_sym_DASH] = ACTIONS(1965), - [anon_sym_STAR] = ACTIONS(1647), - [anon_sym_CARET] = ACTIONS(1967), - [anon_sym_AMP] = ACTIONS(1967), - [anon_sym_this] = ACTIONS(1649), + [anon_sym_checked] = ACTIONS(1163), + [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(1169), + [anon_sym_false] = ACTIONS(1169), + [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(1173), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1651), + [anon_sym_base] = ACTIONS(1175), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1653), - [anon_sym_unchecked] = ACTIONS(1639), + [sym_predefined_type] = ACTIONS(1177), + [anon_sym_unchecked] = ACTIONS(1163), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1655), - [anon_sym_throw] = ACTIONS(1969), + [anon_sym_default] = ACTIONS(1179), + [anon_sym_throw] = ACTIONS(1607), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1971), - [anon_sym_DOT_DOT] = ACTIONS(1973), + [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), @@ -220038,19 +219924,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1663), - [anon_sym_sizeof] = ACTIONS(1665), - [anon_sym_typeof] = ACTIONS(1667), - [anon_sym___makeref] = ACTIONS(1669), - [anon_sym___reftype] = ACTIONS(1671), - [anon_sym___refvalue] = ACTIONS(1673), - [sym_null_literal] = ACTIONS(1675), - [anon_sym_SQUOTE] = ACTIONS(1677), - [sym_integer_literal] = ACTIONS(1675), - [sym_real_literal] = ACTIONS(1679), - [anon_sym_DQUOTE] = ACTIONS(1681), - [sym_verbatim_string_literal] = ACTIONS(1679), - [aux_sym_preproc_if_token1] = ACTIONS(1683), + [anon_sym_stackalloc] = ACTIONS(1187), + [anon_sym_sizeof] = ACTIONS(1189), + [anon_sym_typeof] = ACTIONS(1191), + [anon_sym___makeref] = ACTIONS(1193), + [anon_sym___reftype] = ACTIONS(1195), + [anon_sym___refvalue] = ACTIONS(1197), + [sym_null_literal] = ACTIONS(1199), + [anon_sym_SQUOTE] = ACTIONS(1201), + [sym_integer_literal] = ACTIONS(1199), + [sym_real_literal] = ACTIONS(1203), + [anon_sym_DQUOTE] = ACTIONS(1205), + [sym_verbatim_string_literal] = ACTIONS(1203), + [aux_sym_preproc_if_token1] = ACTIONS(1207), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -220061,90 +219947,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1685), - [sym_interpolation_verbatim_start] = ACTIONS(1687), - [sym_interpolation_raw_start] = ACTIONS(1689), - [sym_raw_string_start] = ACTIONS(1691), + [sym_interpolation_regular_start] = ACTIONS(1209), + [sym_interpolation_verbatim_start] = ACTIONS(1211), + [sym_interpolation_raw_start] = ACTIONS(1213), + [sym_raw_string_start] = ACTIONS(1215), }, [1055] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2914), - [sym__name] = STATE(5873), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2362), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(3915), - [sym_non_lvalue_expression] = STATE(3880), - [sym_lvalue_expression] = STATE(3092), - [sym__expression_statement_expression] = STATE(3873), - [sym_assignment_expression] = STATE(3881), - [sym_binary_expression] = STATE(3873), - [sym_postfix_unary_expression] = STATE(3881), - [sym_prefix_unary_expression] = STATE(3881), - [sym__pointer_indirection_expression] = STATE(2913), - [sym_query_expression] = STATE(3873), - [sym_from_clause] = STATE(6168), - [sym_conditional_expression] = STATE(3873), - [sym_conditional_access_expression] = STATE(3873), - [sym_as_expression] = STATE(3873), - [sym_is_expression] = STATE(3873), - [sym_is_pattern_expression] = STATE(3873), - [sym_cast_expression] = STATE(3873), - [sym_checked_expression] = STATE(3873), - [sym_invocation_expression] = STATE(3881), - [sym_switch_expression] = STATE(3873), - [sym_await_expression] = STATE(3881), - [sym_throw_expression] = STATE(3873), - [sym_element_access_expression] = STATE(2913), - [sym_interpolated_string_expression] = STATE(3873), - [sym_member_access_expression] = STATE(2913), - [sym_object_creation_expression] = STATE(3881), - [sym_parenthesized_expression] = STATE(3881), - [sym__parenthesized_lvalue_expression] = STATE(2913), - [sym_lambda_expression] = STATE(3873), - [sym__lambda_expression_init] = STATE(7533), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3873), - [sym_anonymous_method_expression] = STATE(3873), - [sym_anonymous_object_creation_expression] = STATE(3873), - [sym_implicit_array_creation_expression] = STATE(3873), - [sym_implicit_object_creation_expression] = STATE(3873), - [sym_implicit_stackalloc_expression] = STATE(3873), - [sym_initializer_expression] = STATE(3873), - [sym_default_expression] = STATE(3873), - [sym_with_expression] = STATE(3873), - [sym_sizeof_expression] = STATE(3873), - [sym_typeof_expression] = STATE(3873), - [sym_makeref_expression] = STATE(3873), - [sym_ref_expression] = STATE(3873), - [sym_reftype_expression] = STATE(3873), - [sym_refvalue_expression] = STATE(3873), - [sym_stackalloc_expression] = STATE(3873), - [sym_range_expression] = STATE(3873), - [sym_tuple_expression] = STATE(2913), - [sym_literal] = STATE(3873), - [sym_character_literal] = STATE(3877), - [sym_string_literal] = STATE(3877), - [sym_raw_string_literal] = STATE(3877), - [sym_boolean_literal] = STATE(3877), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3873), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2603), + [sym__name] = STATE(5865), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2344), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(4399), + [sym_non_lvalue_expression] = STATE(3220), + [sym_lvalue_expression] = STATE(3234), + [sym__expression_statement_expression] = STATE(3236), + [sym_assignment_expression] = STATE(3221), + [sym_binary_expression] = STATE(3236), + [sym_postfix_unary_expression] = STATE(3221), + [sym_prefix_unary_expression] = STATE(3221), + [sym__pointer_indirection_expression] = STATE(2602), + [sym_query_expression] = STATE(3236), + [sym_from_clause] = STATE(6151), + [sym_conditional_expression] = STATE(3236), + [sym_conditional_access_expression] = STATE(3236), + [sym_as_expression] = STATE(3236), + [sym_is_expression] = STATE(3236), + [sym_is_pattern_expression] = STATE(3236), + [sym_cast_expression] = STATE(3236), + [sym_checked_expression] = STATE(3236), + [sym_invocation_expression] = STATE(3221), + [sym_switch_expression] = STATE(3236), + [sym_await_expression] = STATE(3221), + [sym_throw_expression] = STATE(3236), + [sym_element_access_expression] = STATE(2602), + [sym_interpolated_string_expression] = STATE(3236), + [sym_member_access_expression] = STATE(2602), + [sym_object_creation_expression] = STATE(3221), + [sym_parenthesized_expression] = STATE(3221), + [sym__parenthesized_lvalue_expression] = STATE(2602), + [sym_lambda_expression] = STATE(3236), + [sym__lambda_expression_init] = STATE(7276), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3236), + [sym_anonymous_method_expression] = STATE(3236), + [sym_anonymous_object_creation_expression] = STATE(3236), + [sym_implicit_array_creation_expression] = STATE(3236), + [sym_implicit_object_creation_expression] = STATE(3236), + [sym_implicit_stackalloc_expression] = STATE(3236), + [sym_initializer_expression] = STATE(3236), + [sym_default_expression] = STATE(3236), + [sym_with_expression] = STATE(3236), + [sym_sizeof_expression] = STATE(3236), + [sym_typeof_expression] = STATE(3236), + [sym_makeref_expression] = STATE(3236), + [sym_ref_expression] = STATE(3236), + [sym_reftype_expression] = STATE(3236), + [sym_refvalue_expression] = STATE(3236), + [sym_stackalloc_expression] = STATE(3236), + [sym_range_expression] = STATE(3236), + [sym_tuple_expression] = STATE(2602), + [sym_literal] = STATE(3236), + [sym_character_literal] = STATE(3272), + [sym_string_literal] = STATE(3272), + [sym_raw_string_literal] = STATE(3272), + [sym_boolean_literal] = STATE(3272), + [sym_identifier] = STATE(2261), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3236), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(1055), [sym_preproc_endregion] = STATE(1055), [sym_preproc_line] = STATE(1055), @@ -220154,47 +220040,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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3382), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3379), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1627), - [anon_sym_LPAREN] = ACTIONS(1961), - [anon_sym_ref] = ACTIONS(1963), - [anon_sym_LBRACE] = ACTIONS(1633), - [anon_sym_delegate] = ACTIONS(1635), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1149), + [anon_sym_LPAREN] = ACTIONS(1597), + [anon_sym_ref] = ACTIONS(1599), + [anon_sym_LBRACE] = ACTIONS(1155), + [anon_sym_delegate] = ACTIONS(1157), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1637), + [anon_sym_new] = ACTIONS(1535), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1639), - [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(1645), - [anon_sym_false] = ACTIONS(1645), - [anon_sym_PLUS] = ACTIONS(1965), - [anon_sym_DASH] = ACTIONS(1965), - [anon_sym_STAR] = ACTIONS(1647), - [anon_sym_CARET] = ACTIONS(1967), - [anon_sym_AMP] = ACTIONS(1967), - [anon_sym_this] = ACTIONS(1649), + [anon_sym_checked] = ACTIONS(1163), + [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(1169), + [anon_sym_false] = ACTIONS(1169), + [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(1173), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1651), + [anon_sym_base] = ACTIONS(1175), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1653), - [anon_sym_unchecked] = ACTIONS(1639), + [sym_predefined_type] = ACTIONS(1177), + [anon_sym_unchecked] = ACTIONS(1163), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1655), - [anon_sym_throw] = ACTIONS(1969), + [anon_sym_default] = ACTIONS(1179), + [anon_sym_throw] = ACTIONS(1607), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1971), - [anon_sym_DOT_DOT] = ACTIONS(1973), + [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), @@ -220207,19 +220093,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1663), - [anon_sym_sizeof] = ACTIONS(1665), - [anon_sym_typeof] = ACTIONS(1667), - [anon_sym___makeref] = ACTIONS(1669), - [anon_sym___reftype] = ACTIONS(1671), - [anon_sym___refvalue] = ACTIONS(1673), - [sym_null_literal] = ACTIONS(1675), - [anon_sym_SQUOTE] = ACTIONS(1677), - [sym_integer_literal] = ACTIONS(1675), - [sym_real_literal] = ACTIONS(1679), - [anon_sym_DQUOTE] = ACTIONS(1681), - [sym_verbatim_string_literal] = ACTIONS(1679), - [aux_sym_preproc_if_token1] = ACTIONS(1683), + [anon_sym_stackalloc] = ACTIONS(1187), + [anon_sym_sizeof] = ACTIONS(1189), + [anon_sym_typeof] = ACTIONS(1191), + [anon_sym___makeref] = ACTIONS(1193), + [anon_sym___reftype] = ACTIONS(1195), + [anon_sym___refvalue] = ACTIONS(1197), + [sym_null_literal] = ACTIONS(1199), + [anon_sym_SQUOTE] = ACTIONS(1201), + [sym_integer_literal] = ACTIONS(1199), + [sym_real_literal] = ACTIONS(1203), + [anon_sym_DQUOTE] = ACTIONS(1205), + [sym_verbatim_string_literal] = ACTIONS(1203), + [aux_sym_preproc_if_token1] = ACTIONS(1207), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -220230,90 +220116,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1685), - [sym_interpolation_verbatim_start] = ACTIONS(1687), - [sym_interpolation_raw_start] = ACTIONS(1689), - [sym_raw_string_start] = ACTIONS(1691), + [sym_interpolation_regular_start] = ACTIONS(1209), + [sym_interpolation_verbatim_start] = ACTIONS(1211), + [sym_interpolation_raw_start] = ACTIONS(1213), + [sym_raw_string_start] = ACTIONS(1215), }, [1056] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(5890), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2375), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(5456), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3656), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3080), - [sym_postfix_unary_expression] = STATE(3111), - [sym_prefix_unary_expression] = STATE(3111), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6157), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3080), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3111), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3080), - [sym_member_access_expression] = STATE(2484), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3111), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7362), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(3080), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3080), - [sym_typeof_expression] = STATE(3080), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2484), - [sym_literal] = STATE(3080), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(5152), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2196), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(5496), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3356), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3102), + [sym_postfix_unary_expression] = STATE(3079), + [sym_prefix_unary_expression] = STATE(3079), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6134), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3102), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3079), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3102), + [sym_member_access_expression] = STATE(2472), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3079), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7627), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(3102), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3102), + [sym_typeof_expression] = STATE(3102), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2472), + [sym_literal] = STATE(3102), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(1056), [sym_preproc_endregion] = STATE(1056), [sym_preproc_line] = STATE(1056), @@ -220323,47 +220209,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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1481), - [anon_sym_LPAREN] = ACTIONS(2177), - [anon_sym_ref] = ACTIONS(2179), - [anon_sym_LBRACE] = ACTIONS(1487), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1479), + [anon_sym_LPAREN] = ACTIONS(1511), + [anon_sym_ref] = ACTIONS(1513), + [anon_sym_LBRACE] = ACTIONS(1481), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(2181), + [anon_sym_new] = ACTIONS(1515), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1067), - [anon_sym_BANG] = ACTIONS(2185), - [anon_sym_TILDE] = ACTIONS(2185), - [anon_sym_PLUS_PLUS] = ACTIONS(2185), - [anon_sym_DASH_DASH] = ACTIONS(2185), + [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(2183), - [anon_sym_DASH] = ACTIONS(2183), - [anon_sym_STAR] = ACTIONS(2187), - [anon_sym_CARET] = ACTIONS(2185), - [anon_sym_AMP] = ACTIONS(2185), + [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(1067), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(2189), + [anon_sym_throw] = ACTIONS(1517), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2191), - [anon_sym_DOT_DOT] = ACTIONS(2193), + [anon_sym_await] = ACTIONS(1519), + [anon_sym_DOT_DOT] = ACTIONS(1521), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -220388,7 +220274,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(1089), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -220405,84 +220291,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [1057] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2610), - [sym__name] = STATE(5879), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2197), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(4198), - [sym_non_lvalue_expression] = STATE(3277), - [sym_lvalue_expression] = STATE(3134), - [sym__expression_statement_expression] = STATE(3228), - [sym_assignment_expression] = STATE(3289), - [sym_binary_expression] = STATE(3228), - [sym_postfix_unary_expression] = STATE(3289), - [sym_prefix_unary_expression] = STATE(3289), - [sym__pointer_indirection_expression] = STATE(2609), - [sym_query_expression] = STATE(3228), - [sym_from_clause] = STATE(6162), - [sym_conditional_expression] = STATE(3228), - [sym_conditional_access_expression] = STATE(3228), - [sym_as_expression] = STATE(3228), - [sym_is_expression] = STATE(3228), - [sym_is_pattern_expression] = STATE(3228), - [sym_cast_expression] = STATE(3228), - [sym_checked_expression] = STATE(3228), - [sym_invocation_expression] = STATE(3289), - [sym_switch_expression] = STATE(3228), - [sym_await_expression] = STATE(3289), - [sym_throw_expression] = STATE(3228), - [sym_element_access_expression] = STATE(2609), - [sym_interpolated_string_expression] = STATE(3228), - [sym_member_access_expression] = STATE(2609), - [sym_object_creation_expression] = STATE(3289), - [sym_parenthesized_expression] = STATE(3289), - [sym__parenthesized_lvalue_expression] = STATE(2609), - [sym_lambda_expression] = STATE(3228), - [sym__lambda_expression_init] = STATE(7695), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3228), - [sym_anonymous_method_expression] = STATE(3228), - [sym_anonymous_object_creation_expression] = STATE(3228), - [sym_implicit_array_creation_expression] = STATE(3228), - [sym_implicit_object_creation_expression] = STATE(3228), - [sym_implicit_stackalloc_expression] = STATE(3228), - [sym_initializer_expression] = STATE(3228), - [sym_default_expression] = STATE(3228), - [sym_with_expression] = STATE(3228), - [sym_sizeof_expression] = STATE(3228), - [sym_typeof_expression] = STATE(3228), - [sym_makeref_expression] = STATE(3228), - [sym_ref_expression] = STATE(3228), - [sym_reftype_expression] = STATE(3228), - [sym_refvalue_expression] = STATE(3228), - [sym_stackalloc_expression] = STATE(3228), - [sym_range_expression] = STATE(3228), - [sym_tuple_expression] = STATE(2609), - [sym_literal] = STATE(3228), - [sym_character_literal] = STATE(3278), - [sym_string_literal] = STATE(3278), - [sym_raw_string_literal] = STATE(3278), - [sym_boolean_literal] = STATE(3278), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3228), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2603), + [sym__name] = STATE(5865), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2344), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(4458), + [sym_non_lvalue_expression] = STATE(3220), + [sym_lvalue_expression] = STATE(3234), + [sym__expression_statement_expression] = STATE(3236), + [sym_assignment_expression] = STATE(3221), + [sym_binary_expression] = STATE(3236), + [sym_postfix_unary_expression] = STATE(3221), + [sym_prefix_unary_expression] = STATE(3221), + [sym__pointer_indirection_expression] = STATE(2602), + [sym_query_expression] = STATE(3236), + [sym_from_clause] = STATE(6151), + [sym_conditional_expression] = STATE(3236), + [sym_conditional_access_expression] = STATE(3236), + [sym_as_expression] = STATE(3236), + [sym_is_expression] = STATE(3236), + [sym_is_pattern_expression] = STATE(3236), + [sym_cast_expression] = STATE(3236), + [sym_checked_expression] = STATE(3236), + [sym_invocation_expression] = STATE(3221), + [sym_switch_expression] = STATE(3236), + [sym_await_expression] = STATE(3221), + [sym_throw_expression] = STATE(3236), + [sym_element_access_expression] = STATE(2602), + [sym_interpolated_string_expression] = STATE(3236), + [sym_member_access_expression] = STATE(2602), + [sym_object_creation_expression] = STATE(3221), + [sym_parenthesized_expression] = STATE(3221), + [sym__parenthesized_lvalue_expression] = STATE(2602), + [sym_lambda_expression] = STATE(3236), + [sym__lambda_expression_init] = STATE(7276), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3236), + [sym_anonymous_method_expression] = STATE(3236), + [sym_anonymous_object_creation_expression] = STATE(3236), + [sym_implicit_array_creation_expression] = STATE(3236), + [sym_implicit_object_creation_expression] = STATE(3236), + [sym_implicit_stackalloc_expression] = STATE(3236), + [sym_initializer_expression] = STATE(3236), + [sym_default_expression] = STATE(3236), + [sym_with_expression] = STATE(3236), + [sym_sizeof_expression] = STATE(3236), + [sym_typeof_expression] = STATE(3236), + [sym_makeref_expression] = STATE(3236), + [sym_ref_expression] = STATE(3236), + [sym_reftype_expression] = STATE(3236), + [sym_refvalue_expression] = STATE(3236), + [sym_stackalloc_expression] = STATE(3236), + [sym_range_expression] = STATE(3236), + [sym_tuple_expression] = STATE(2602), + [sym_literal] = STATE(3236), + [sym_character_literal] = STATE(3272), + [sym_string_literal] = STATE(3272), + [sym_raw_string_literal] = STATE(3272), + [sym_boolean_literal] = STATE(3272), + [sym_identifier] = STATE(2261), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3236), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(1057), [sym_preproc_endregion] = STATE(1057), [sym_preproc_line] = STATE(1057), @@ -220492,47 +220378,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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3396), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3379), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1153), - [anon_sym_LPAREN] = ACTIONS(1371), - [anon_sym_ref] = ACTIONS(1373), - [anon_sym_LBRACE] = ACTIONS(1159), - [anon_sym_delegate] = ACTIONS(1161), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1149), + [anon_sym_LPAREN] = ACTIONS(1597), + [anon_sym_ref] = ACTIONS(1599), + [anon_sym_LBRACE] = ACTIONS(1155), + [anon_sym_delegate] = ACTIONS(1157), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1163), + [anon_sym_new] = ACTIONS(1535), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1167), - [anon_sym_BANG] = ACTIONS(1377), - [anon_sym_TILDE] = ACTIONS(1377), - [anon_sym_PLUS_PLUS] = ACTIONS(1377), - [anon_sym_DASH_DASH] = ACTIONS(1377), - [anon_sym_true] = ACTIONS(1173), - [anon_sym_false] = ACTIONS(1173), - [anon_sym_PLUS] = ACTIONS(1375), - [anon_sym_DASH] = ACTIONS(1375), - [anon_sym_STAR] = ACTIONS(1379), - [anon_sym_CARET] = ACTIONS(1377), - [anon_sym_AMP] = ACTIONS(1377), - [anon_sym_this] = ACTIONS(1177), + [anon_sym_checked] = ACTIONS(1163), + [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(1169), + [anon_sym_false] = ACTIONS(1169), + [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(1173), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1179), + [anon_sym_base] = ACTIONS(1175), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1181), - [anon_sym_unchecked] = ACTIONS(1167), + [sym_predefined_type] = ACTIONS(1177), + [anon_sym_unchecked] = ACTIONS(1163), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1183), - [anon_sym_throw] = ACTIONS(1381), + [anon_sym_default] = ACTIONS(1179), + [anon_sym_throw] = ACTIONS(1607), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1383), - [anon_sym_DOT_DOT] = ACTIONS(1385), + [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), @@ -220545,19 +220431,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1191), - [anon_sym_sizeof] = ACTIONS(1193), - [anon_sym_typeof] = ACTIONS(1195), - [anon_sym___makeref] = ACTIONS(1197), - [anon_sym___reftype] = ACTIONS(1199), - [anon_sym___refvalue] = ACTIONS(1201), - [sym_null_literal] = ACTIONS(1203), - [anon_sym_SQUOTE] = ACTIONS(1205), - [sym_integer_literal] = ACTIONS(1203), - [sym_real_literal] = ACTIONS(1207), - [anon_sym_DQUOTE] = ACTIONS(1209), - [sym_verbatim_string_literal] = ACTIONS(1207), - [aux_sym_preproc_if_token1] = ACTIONS(1211), + [anon_sym_stackalloc] = ACTIONS(1187), + [anon_sym_sizeof] = ACTIONS(1189), + [anon_sym_typeof] = ACTIONS(1191), + [anon_sym___makeref] = ACTIONS(1193), + [anon_sym___reftype] = ACTIONS(1195), + [anon_sym___refvalue] = ACTIONS(1197), + [sym_null_literal] = ACTIONS(1199), + [anon_sym_SQUOTE] = ACTIONS(1201), + [sym_integer_literal] = ACTIONS(1199), + [sym_real_literal] = ACTIONS(1203), + [anon_sym_DQUOTE] = ACTIONS(1205), + [sym_verbatim_string_literal] = ACTIONS(1203), + [aux_sym_preproc_if_token1] = ACTIONS(1207), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -220568,90 +220454,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1213), - [sym_interpolation_verbatim_start] = ACTIONS(1215), - [sym_interpolation_raw_start] = ACTIONS(1217), - [sym_raw_string_start] = ACTIONS(1219), + [sym_interpolation_regular_start] = ACTIONS(1209), + [sym_interpolation_verbatim_start] = ACTIONS(1211), + [sym_interpolation_raw_start] = ACTIONS(1213), + [sym_raw_string_start] = ACTIONS(1215), }, [1058] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(5890), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2375), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(5458), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3656), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3080), - [sym_postfix_unary_expression] = STATE(3111), - [sym_prefix_unary_expression] = STATE(3111), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6157), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3080), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3111), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3080), - [sym_member_access_expression] = STATE(2484), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3111), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7362), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(3080), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3080), - [sym_typeof_expression] = STATE(3080), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2484), - [sym_literal] = STATE(3080), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2603), + [sym__name] = STATE(5865), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2344), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(4345), + [sym_non_lvalue_expression] = STATE(3220), + [sym_lvalue_expression] = STATE(3234), + [sym__expression_statement_expression] = STATE(3236), + [sym_assignment_expression] = STATE(3221), + [sym_binary_expression] = STATE(3236), + [sym_postfix_unary_expression] = STATE(3221), + [sym_prefix_unary_expression] = STATE(3221), + [sym__pointer_indirection_expression] = STATE(2602), + [sym_query_expression] = STATE(3236), + [sym_from_clause] = STATE(6151), + [sym_conditional_expression] = STATE(3236), + [sym_conditional_access_expression] = STATE(3236), + [sym_as_expression] = STATE(3236), + [sym_is_expression] = STATE(3236), + [sym_is_pattern_expression] = STATE(3236), + [sym_cast_expression] = STATE(3236), + [sym_checked_expression] = STATE(3236), + [sym_invocation_expression] = STATE(3221), + [sym_switch_expression] = STATE(3236), + [sym_await_expression] = STATE(3221), + [sym_throw_expression] = STATE(3236), + [sym_element_access_expression] = STATE(2602), + [sym_interpolated_string_expression] = STATE(3236), + [sym_member_access_expression] = STATE(2602), + [sym_object_creation_expression] = STATE(3221), + [sym_parenthesized_expression] = STATE(3221), + [sym__parenthesized_lvalue_expression] = STATE(2602), + [sym_lambda_expression] = STATE(3236), + [sym__lambda_expression_init] = STATE(7276), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3236), + [sym_anonymous_method_expression] = STATE(3236), + [sym_anonymous_object_creation_expression] = STATE(3236), + [sym_implicit_array_creation_expression] = STATE(3236), + [sym_implicit_object_creation_expression] = STATE(3236), + [sym_implicit_stackalloc_expression] = STATE(3236), + [sym_initializer_expression] = STATE(3236), + [sym_default_expression] = STATE(3236), + [sym_with_expression] = STATE(3236), + [sym_sizeof_expression] = STATE(3236), + [sym_typeof_expression] = STATE(3236), + [sym_makeref_expression] = STATE(3236), + [sym_ref_expression] = STATE(3236), + [sym_reftype_expression] = STATE(3236), + [sym_refvalue_expression] = STATE(3236), + [sym_stackalloc_expression] = STATE(3236), + [sym_range_expression] = STATE(3236), + [sym_tuple_expression] = STATE(2602), + [sym_literal] = STATE(3236), + [sym_character_literal] = STATE(3272), + [sym_string_literal] = STATE(3272), + [sym_raw_string_literal] = STATE(3272), + [sym_boolean_literal] = STATE(3272), + [sym_identifier] = STATE(2261), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3236), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(1058), [sym_preproc_endregion] = STATE(1058), [sym_preproc_line] = STATE(1058), @@ -220661,47 +220547,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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3379), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1481), - [anon_sym_LPAREN] = ACTIONS(2177), - [anon_sym_ref] = ACTIONS(2179), - [anon_sym_LBRACE] = ACTIONS(1487), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1149), + [anon_sym_LPAREN] = ACTIONS(1597), + [anon_sym_ref] = ACTIONS(1599), + [anon_sym_LBRACE] = ACTIONS(1155), + [anon_sym_delegate] = ACTIONS(1157), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(2181), + [anon_sym_new] = ACTIONS(1535), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1067), - [anon_sym_BANG] = ACTIONS(2185), - [anon_sym_TILDE] = ACTIONS(2185), - [anon_sym_PLUS_PLUS] = ACTIONS(2185), - [anon_sym_DASH_DASH] = ACTIONS(2185), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(2183), - [anon_sym_DASH] = ACTIONS(2183), - [anon_sym_STAR] = ACTIONS(2187), - [anon_sym_CARET] = ACTIONS(2185), - [anon_sym_AMP] = ACTIONS(2185), - [anon_sym_this] = ACTIONS(83), + [anon_sym_checked] = ACTIONS(1163), + [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(1169), + [anon_sym_false] = ACTIONS(1169), + [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(1173), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), + [anon_sym_base] = ACTIONS(1175), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1067), + [sym_predefined_type] = ACTIONS(1177), + [anon_sym_unchecked] = ACTIONS(1163), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(2189), + [anon_sym_default] = ACTIONS(1179), + [anon_sym_throw] = ACTIONS(1607), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2191), - [anon_sym_DOT_DOT] = ACTIONS(2193), + [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), @@ -220714,19 +220600,19 @@ static const uint16_t ts_parse_table[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(1089), + [anon_sym_stackalloc] = ACTIONS(1187), + [anon_sym_sizeof] = ACTIONS(1189), + [anon_sym_typeof] = ACTIONS(1191), + [anon_sym___makeref] = ACTIONS(1193), + [anon_sym___reftype] = ACTIONS(1195), + [anon_sym___refvalue] = ACTIONS(1197), + [sym_null_literal] = ACTIONS(1199), + [anon_sym_SQUOTE] = ACTIONS(1201), + [sym_integer_literal] = ACTIONS(1199), + [sym_real_literal] = ACTIONS(1203), + [anon_sym_DQUOTE] = ACTIONS(1205), + [sym_verbatim_string_literal] = ACTIONS(1203), + [aux_sym_preproc_if_token1] = ACTIONS(1207), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -220737,90 +220623,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(151), - [sym_interpolation_verbatim_start] = ACTIONS(153), - [sym_interpolation_raw_start] = ACTIONS(155), - [sym_raw_string_start] = ACTIONS(157), + [sym_interpolation_regular_start] = ACTIONS(1209), + [sym_interpolation_verbatim_start] = ACTIONS(1211), + [sym_interpolation_raw_start] = ACTIONS(1213), + [sym_raw_string_start] = ACTIONS(1215), }, [1059] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(5890), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2375), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(5459), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3656), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3080), - [sym_postfix_unary_expression] = STATE(3111), - [sym_prefix_unary_expression] = STATE(3111), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6157), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3080), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3111), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3080), - [sym_member_access_expression] = STATE(2484), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3111), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7362), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(3080), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3080), - [sym_typeof_expression] = STATE(3080), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2484), - [sym_literal] = STATE(3080), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2603), + [sym__name] = STATE(5865), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2344), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(4423), + [sym_non_lvalue_expression] = STATE(3220), + [sym_lvalue_expression] = STATE(3234), + [sym__expression_statement_expression] = STATE(3236), + [sym_assignment_expression] = STATE(3221), + [sym_binary_expression] = STATE(3236), + [sym_postfix_unary_expression] = STATE(3221), + [sym_prefix_unary_expression] = STATE(3221), + [sym__pointer_indirection_expression] = STATE(2602), + [sym_query_expression] = STATE(3236), + [sym_from_clause] = STATE(6151), + [sym_conditional_expression] = STATE(3236), + [sym_conditional_access_expression] = STATE(3236), + [sym_as_expression] = STATE(3236), + [sym_is_expression] = STATE(3236), + [sym_is_pattern_expression] = STATE(3236), + [sym_cast_expression] = STATE(3236), + [sym_checked_expression] = STATE(3236), + [sym_invocation_expression] = STATE(3221), + [sym_switch_expression] = STATE(3236), + [sym_await_expression] = STATE(3221), + [sym_throw_expression] = STATE(3236), + [sym_element_access_expression] = STATE(2602), + [sym_interpolated_string_expression] = STATE(3236), + [sym_member_access_expression] = STATE(2602), + [sym_object_creation_expression] = STATE(3221), + [sym_parenthesized_expression] = STATE(3221), + [sym__parenthesized_lvalue_expression] = STATE(2602), + [sym_lambda_expression] = STATE(3236), + [sym__lambda_expression_init] = STATE(7276), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3236), + [sym_anonymous_method_expression] = STATE(3236), + [sym_anonymous_object_creation_expression] = STATE(3236), + [sym_implicit_array_creation_expression] = STATE(3236), + [sym_implicit_object_creation_expression] = STATE(3236), + [sym_implicit_stackalloc_expression] = STATE(3236), + [sym_initializer_expression] = STATE(3236), + [sym_default_expression] = STATE(3236), + [sym_with_expression] = STATE(3236), + [sym_sizeof_expression] = STATE(3236), + [sym_typeof_expression] = STATE(3236), + [sym_makeref_expression] = STATE(3236), + [sym_ref_expression] = STATE(3236), + [sym_reftype_expression] = STATE(3236), + [sym_refvalue_expression] = STATE(3236), + [sym_stackalloc_expression] = STATE(3236), + [sym_range_expression] = STATE(3236), + [sym_tuple_expression] = STATE(2602), + [sym_literal] = STATE(3236), + [sym_character_literal] = STATE(3272), + [sym_string_literal] = STATE(3272), + [sym_raw_string_literal] = STATE(3272), + [sym_boolean_literal] = STATE(3272), + [sym_identifier] = STATE(2261), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3236), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(1059), [sym_preproc_endregion] = STATE(1059), [sym_preproc_line] = STATE(1059), @@ -220830,47 +220716,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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3379), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1481), - [anon_sym_LPAREN] = ACTIONS(2177), - [anon_sym_ref] = ACTIONS(2179), - [anon_sym_LBRACE] = ACTIONS(1487), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1149), + [anon_sym_LPAREN] = ACTIONS(1597), + [anon_sym_ref] = ACTIONS(1599), + [anon_sym_LBRACE] = ACTIONS(1155), + [anon_sym_delegate] = ACTIONS(1157), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(2181), + [anon_sym_new] = ACTIONS(1535), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1067), - [anon_sym_BANG] = ACTIONS(2185), - [anon_sym_TILDE] = ACTIONS(2185), - [anon_sym_PLUS_PLUS] = ACTIONS(2185), - [anon_sym_DASH_DASH] = ACTIONS(2185), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(2183), - [anon_sym_DASH] = ACTIONS(2183), - [anon_sym_STAR] = ACTIONS(2187), - [anon_sym_CARET] = ACTIONS(2185), - [anon_sym_AMP] = ACTIONS(2185), - [anon_sym_this] = ACTIONS(83), + [anon_sym_checked] = ACTIONS(1163), + [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(1169), + [anon_sym_false] = ACTIONS(1169), + [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(1173), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), + [anon_sym_base] = ACTIONS(1175), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1067), + [sym_predefined_type] = ACTIONS(1177), + [anon_sym_unchecked] = ACTIONS(1163), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(2189), + [anon_sym_default] = ACTIONS(1179), + [anon_sym_throw] = ACTIONS(1607), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2191), - [anon_sym_DOT_DOT] = ACTIONS(2193), + [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), @@ -220883,19 +220769,19 @@ static const uint16_t ts_parse_table[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(1089), + [anon_sym_stackalloc] = ACTIONS(1187), + [anon_sym_sizeof] = ACTIONS(1189), + [anon_sym_typeof] = ACTIONS(1191), + [anon_sym___makeref] = ACTIONS(1193), + [anon_sym___reftype] = ACTIONS(1195), + [anon_sym___refvalue] = ACTIONS(1197), + [sym_null_literal] = ACTIONS(1199), + [anon_sym_SQUOTE] = ACTIONS(1201), + [sym_integer_literal] = ACTIONS(1199), + [sym_real_literal] = ACTIONS(1203), + [anon_sym_DQUOTE] = ACTIONS(1205), + [sym_verbatim_string_literal] = ACTIONS(1203), + [aux_sym_preproc_if_token1] = ACTIONS(1207), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -220906,90 +220792,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(151), - [sym_interpolation_verbatim_start] = ACTIONS(153), - [sym_interpolation_raw_start] = ACTIONS(155), - [sym_raw_string_start] = ACTIONS(157), + [sym_interpolation_regular_start] = ACTIONS(1209), + [sym_interpolation_verbatim_start] = ACTIONS(1211), + [sym_interpolation_raw_start] = ACTIONS(1213), + [sym_raw_string_start] = ACTIONS(1215), }, [1060] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(5890), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2375), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(5460), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3656), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3080), - [sym_postfix_unary_expression] = STATE(3111), - [sym_prefix_unary_expression] = STATE(3111), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6157), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3080), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3111), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3080), - [sym_member_access_expression] = STATE(2484), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3111), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7362), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(3080), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3080), - [sym_typeof_expression] = STATE(3080), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2484), - [sym_literal] = STATE(3080), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2603), + [sym__name] = STATE(5894), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2193), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(4185), + [sym_non_lvalue_expression] = STATE(3220), + [sym_lvalue_expression] = STATE(3126), + [sym__expression_statement_expression] = STATE(3236), + [sym_assignment_expression] = STATE(3221), + [sym_binary_expression] = STATE(3236), + [sym_postfix_unary_expression] = STATE(3221), + [sym_prefix_unary_expression] = STATE(3221), + [sym__pointer_indirection_expression] = STATE(2602), + [sym_query_expression] = STATE(3236), + [sym_from_clause] = STATE(6165), + [sym_conditional_expression] = STATE(3236), + [sym_conditional_access_expression] = STATE(3236), + [sym_as_expression] = STATE(3236), + [sym_is_expression] = STATE(3236), + [sym_is_pattern_expression] = STATE(3236), + [sym_cast_expression] = STATE(3236), + [sym_checked_expression] = STATE(3236), + [sym_invocation_expression] = STATE(3221), + [sym_switch_expression] = STATE(3236), + [sym_await_expression] = STATE(3221), + [sym_throw_expression] = STATE(3236), + [sym_element_access_expression] = STATE(2602), + [sym_interpolated_string_expression] = STATE(3236), + [sym_member_access_expression] = STATE(2602), + [sym_object_creation_expression] = STATE(3221), + [sym_parenthesized_expression] = STATE(3221), + [sym__parenthesized_lvalue_expression] = STATE(2602), + [sym_lambda_expression] = STATE(3236), + [sym__lambda_expression_init] = STATE(7487), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3236), + [sym_anonymous_method_expression] = STATE(3236), + [sym_anonymous_object_creation_expression] = STATE(3236), + [sym_implicit_array_creation_expression] = STATE(3236), + [sym_implicit_object_creation_expression] = STATE(3236), + [sym_implicit_stackalloc_expression] = STATE(3236), + [sym_initializer_expression] = STATE(3236), + [sym_default_expression] = STATE(3236), + [sym_with_expression] = STATE(3236), + [sym_sizeof_expression] = STATE(3236), + [sym_typeof_expression] = STATE(3236), + [sym_makeref_expression] = STATE(3236), + [sym_ref_expression] = STATE(3236), + [sym_reftype_expression] = STATE(3236), + [sym_refvalue_expression] = STATE(3236), + [sym_stackalloc_expression] = STATE(3236), + [sym_range_expression] = STATE(3236), + [sym_tuple_expression] = STATE(2602), + [sym_literal] = STATE(3236), + [sym_character_literal] = STATE(3272), + [sym_string_literal] = STATE(3272), + [sym_raw_string_literal] = STATE(3272), + [sym_boolean_literal] = STATE(3272), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3236), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(1060), [sym_preproc_endregion] = STATE(1060), [sym_preproc_line] = STATE(1060), @@ -220999,47 +220885,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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3379), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1481), - [anon_sym_LPAREN] = ACTIONS(2177), - [anon_sym_ref] = ACTIONS(2179), - [anon_sym_LBRACE] = ACTIONS(1487), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1149), + [anon_sym_LPAREN] = ACTIONS(1341), + [anon_sym_ref] = ACTIONS(1343), + [anon_sym_LBRACE] = ACTIONS(1155), + [anon_sym_delegate] = ACTIONS(1157), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(2181), + [anon_sym_new] = ACTIONS(1159), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1067), - [anon_sym_BANG] = ACTIONS(2185), - [anon_sym_TILDE] = ACTIONS(2185), - [anon_sym_PLUS_PLUS] = ACTIONS(2185), - [anon_sym_DASH_DASH] = ACTIONS(2185), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(2183), - [anon_sym_DASH] = ACTIONS(2183), - [anon_sym_STAR] = ACTIONS(2187), - [anon_sym_CARET] = ACTIONS(2185), - [anon_sym_AMP] = ACTIONS(2185), - [anon_sym_this] = ACTIONS(83), + [anon_sym_checked] = ACTIONS(1163), + [anon_sym_BANG] = ACTIONS(1347), + [anon_sym_TILDE] = ACTIONS(1347), + [anon_sym_PLUS_PLUS] = ACTIONS(1347), + [anon_sym_DASH_DASH] = ACTIONS(1347), + [anon_sym_true] = ACTIONS(1169), + [anon_sym_false] = ACTIONS(1169), + [anon_sym_PLUS] = ACTIONS(1345), + [anon_sym_DASH] = ACTIONS(1345), + [anon_sym_STAR] = ACTIONS(1349), + [anon_sym_CARET] = ACTIONS(1347), + [anon_sym_AMP] = ACTIONS(1347), + [anon_sym_this] = ACTIONS(1173), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), + [anon_sym_base] = ACTIONS(1175), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1067), + [sym_predefined_type] = ACTIONS(1177), + [anon_sym_unchecked] = ACTIONS(1163), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(2189), + [anon_sym_default] = ACTIONS(1179), + [anon_sym_throw] = ACTIONS(1351), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2191), - [anon_sym_DOT_DOT] = ACTIONS(2193), + [anon_sym_await] = ACTIONS(1353), + [anon_sym_DOT_DOT] = ACTIONS(1355), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -221052,19 +220938,19 @@ static const uint16_t ts_parse_table[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(1089), + [anon_sym_stackalloc] = ACTIONS(1187), + [anon_sym_sizeof] = ACTIONS(1189), + [anon_sym_typeof] = ACTIONS(1191), + [anon_sym___makeref] = ACTIONS(1193), + [anon_sym___reftype] = ACTIONS(1195), + [anon_sym___refvalue] = ACTIONS(1197), + [sym_null_literal] = ACTIONS(1199), + [anon_sym_SQUOTE] = ACTIONS(1201), + [sym_integer_literal] = ACTIONS(1199), + [sym_real_literal] = ACTIONS(1203), + [anon_sym_DQUOTE] = ACTIONS(1205), + [sym_verbatim_string_literal] = ACTIONS(1203), + [aux_sym_preproc_if_token1] = ACTIONS(1207), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -221075,90 +220961,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(151), - [sym_interpolation_verbatim_start] = ACTIONS(153), - [sym_interpolation_raw_start] = ACTIONS(155), - [sym_raw_string_start] = ACTIONS(157), + [sym_interpolation_regular_start] = ACTIONS(1209), + [sym_interpolation_verbatim_start] = ACTIONS(1211), + [sym_interpolation_raw_start] = ACTIONS(1213), + [sym_raw_string_start] = ACTIONS(1215), }, [1061] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(5890), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2375), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(5461), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3656), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3080), - [sym_postfix_unary_expression] = STATE(3111), - [sym_prefix_unary_expression] = STATE(3111), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6157), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3080), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3111), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3080), - [sym_member_access_expression] = STATE(2484), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3111), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7362), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(3080), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3080), - [sym_typeof_expression] = STATE(3080), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2484), - [sym_literal] = STATE(3080), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(5152), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2196), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(5500), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3356), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3102), + [sym_postfix_unary_expression] = STATE(3079), + [sym_prefix_unary_expression] = STATE(3079), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6134), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3102), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3079), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3102), + [sym_member_access_expression] = STATE(2472), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3079), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7627), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(3102), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3102), + [sym_typeof_expression] = STATE(3102), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2472), + [sym_literal] = STATE(3102), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(1061), [sym_preproc_endregion] = STATE(1061), [sym_preproc_line] = STATE(1061), @@ -221168,47 +221054,47 @@ 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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1481), - [anon_sym_LPAREN] = ACTIONS(2177), - [anon_sym_ref] = ACTIONS(2179), - [anon_sym_LBRACE] = ACTIONS(1487), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1479), + [anon_sym_LPAREN] = ACTIONS(1511), + [anon_sym_ref] = ACTIONS(1513), + [anon_sym_LBRACE] = ACTIONS(1481), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(2181), + [anon_sym_new] = ACTIONS(1515), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1067), - [anon_sym_BANG] = ACTIONS(2185), - [anon_sym_TILDE] = ACTIONS(2185), - [anon_sym_PLUS_PLUS] = ACTIONS(2185), - [anon_sym_DASH_DASH] = ACTIONS(2185), + [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(2183), - [anon_sym_DASH] = ACTIONS(2183), - [anon_sym_STAR] = ACTIONS(2187), - [anon_sym_CARET] = ACTIONS(2185), - [anon_sym_AMP] = ACTIONS(2185), + [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(1067), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(2189), + [anon_sym_throw] = ACTIONS(1517), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2191), - [anon_sym_DOT_DOT] = ACTIONS(2193), + [anon_sym_await] = ACTIONS(1519), + [anon_sym_DOT_DOT] = ACTIONS(1521), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -221233,7 +221119,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(1089), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -221250,84 +221136,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [1062] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(5890), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2375), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(5462), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3656), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3080), - [sym_postfix_unary_expression] = STATE(3111), - [sym_prefix_unary_expression] = STATE(3111), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6157), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3080), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3111), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3080), - [sym_member_access_expression] = STATE(2484), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3111), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7362), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(3080), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3080), - [sym_typeof_expression] = STATE(3080), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2484), - [sym_literal] = STATE(3080), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2603), + [sym__name] = STATE(5865), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2344), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(3133), + [sym_non_lvalue_expression] = STATE(3220), + [sym_lvalue_expression] = STATE(3234), + [sym__expression_statement_expression] = STATE(3236), + [sym_assignment_expression] = STATE(3221), + [sym_binary_expression] = STATE(3236), + [sym_postfix_unary_expression] = STATE(3221), + [sym_prefix_unary_expression] = STATE(3221), + [sym__pointer_indirection_expression] = STATE(2602), + [sym_query_expression] = STATE(3236), + [sym_from_clause] = STATE(6151), + [sym_conditional_expression] = STATE(3236), + [sym_conditional_access_expression] = STATE(3236), + [sym_as_expression] = STATE(3236), + [sym_is_expression] = STATE(3236), + [sym_is_pattern_expression] = STATE(3236), + [sym_cast_expression] = STATE(3236), + [sym_checked_expression] = STATE(3236), + [sym_invocation_expression] = STATE(3221), + [sym_switch_expression] = STATE(3236), + [sym_await_expression] = STATE(3221), + [sym_throw_expression] = STATE(3236), + [sym_element_access_expression] = STATE(2602), + [sym_interpolated_string_expression] = STATE(3236), + [sym_member_access_expression] = STATE(2602), + [sym_object_creation_expression] = STATE(3221), + [sym_parenthesized_expression] = STATE(3221), + [sym__parenthesized_lvalue_expression] = STATE(2602), + [sym_lambda_expression] = STATE(3236), + [sym__lambda_expression_init] = STATE(7276), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3236), + [sym_anonymous_method_expression] = STATE(3236), + [sym_anonymous_object_creation_expression] = STATE(3236), + [sym_implicit_array_creation_expression] = STATE(3236), + [sym_implicit_object_creation_expression] = STATE(3236), + [sym_implicit_stackalloc_expression] = STATE(3236), + [sym_initializer_expression] = STATE(3236), + [sym_default_expression] = STATE(3236), + [sym_with_expression] = STATE(3236), + [sym_sizeof_expression] = STATE(3236), + [sym_typeof_expression] = STATE(3236), + [sym_makeref_expression] = STATE(3236), + [sym_ref_expression] = STATE(3236), + [sym_reftype_expression] = STATE(3236), + [sym_refvalue_expression] = STATE(3236), + [sym_stackalloc_expression] = STATE(3236), + [sym_range_expression] = STATE(3236), + [sym_tuple_expression] = STATE(2602), + [sym_literal] = STATE(3236), + [sym_character_literal] = STATE(3272), + [sym_string_literal] = STATE(3272), + [sym_raw_string_literal] = STATE(3272), + [sym_boolean_literal] = STATE(3272), + [sym_identifier] = STATE(2261), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3236), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(1062), [sym_preproc_endregion] = STATE(1062), [sym_preproc_line] = STATE(1062), @@ -221337,47 +221223,47 @@ 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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3379), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1481), - [anon_sym_LPAREN] = ACTIONS(2177), - [anon_sym_ref] = ACTIONS(2179), - [anon_sym_LBRACE] = ACTIONS(1487), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1149), + [anon_sym_LPAREN] = ACTIONS(1597), + [anon_sym_ref] = ACTIONS(1599), + [anon_sym_LBRACE] = ACTIONS(1155), + [anon_sym_delegate] = ACTIONS(1157), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(2181), + [anon_sym_new] = ACTIONS(1535), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1067), - [anon_sym_BANG] = ACTIONS(2185), - [anon_sym_TILDE] = ACTIONS(2185), - [anon_sym_PLUS_PLUS] = ACTIONS(2185), - [anon_sym_DASH_DASH] = ACTIONS(2185), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(2183), - [anon_sym_DASH] = ACTIONS(2183), - [anon_sym_STAR] = ACTIONS(2187), - [anon_sym_CARET] = ACTIONS(2185), - [anon_sym_AMP] = ACTIONS(2185), - [anon_sym_this] = ACTIONS(83), + [anon_sym_checked] = ACTIONS(1163), + [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(1169), + [anon_sym_false] = ACTIONS(1169), + [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(1173), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), + [anon_sym_base] = ACTIONS(1175), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1067), + [sym_predefined_type] = ACTIONS(1177), + [anon_sym_unchecked] = ACTIONS(1163), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(2189), + [anon_sym_default] = ACTIONS(1179), + [anon_sym_throw] = ACTIONS(1607), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2191), - [anon_sym_DOT_DOT] = ACTIONS(2193), + [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), @@ -221390,19 +221276,19 @@ static const uint16_t ts_parse_table[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(1089), + [anon_sym_stackalloc] = ACTIONS(1187), + [anon_sym_sizeof] = ACTIONS(1189), + [anon_sym_typeof] = ACTIONS(1191), + [anon_sym___makeref] = ACTIONS(1193), + [anon_sym___reftype] = ACTIONS(1195), + [anon_sym___refvalue] = ACTIONS(1197), + [sym_null_literal] = ACTIONS(1199), + [anon_sym_SQUOTE] = ACTIONS(1201), + [sym_integer_literal] = ACTIONS(1199), + [sym_real_literal] = ACTIONS(1203), + [anon_sym_DQUOTE] = ACTIONS(1205), + [sym_verbatim_string_literal] = ACTIONS(1203), + [aux_sym_preproc_if_token1] = ACTIONS(1207), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -221413,90 +221299,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(151), - [sym_interpolation_verbatim_start] = ACTIONS(153), - [sym_interpolation_raw_start] = ACTIONS(155), - [sym_raw_string_start] = ACTIONS(157), + [sym_interpolation_regular_start] = ACTIONS(1209), + [sym_interpolation_verbatim_start] = ACTIONS(1211), + [sym_interpolation_raw_start] = ACTIONS(1213), + [sym_raw_string_start] = ACTIONS(1215), }, [1063] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(5890), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2375), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(5469), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3656), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3080), - [sym_postfix_unary_expression] = STATE(3111), - [sym_prefix_unary_expression] = STATE(3111), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6157), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3080), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3111), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3080), - [sym_member_access_expression] = STATE(2484), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3111), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7362), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(3080), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3080), - [sym_typeof_expression] = STATE(3080), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2484), - [sym_literal] = STATE(3080), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2603), + [sym__name] = STATE(5894), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2193), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(4197), + [sym_non_lvalue_expression] = STATE(3220), + [sym_lvalue_expression] = STATE(3126), + [sym__expression_statement_expression] = STATE(3236), + [sym_assignment_expression] = STATE(3221), + [sym_binary_expression] = STATE(3236), + [sym_postfix_unary_expression] = STATE(3221), + [sym_prefix_unary_expression] = STATE(3221), + [sym__pointer_indirection_expression] = STATE(2602), + [sym_query_expression] = STATE(3236), + [sym_from_clause] = STATE(6165), + [sym_conditional_expression] = STATE(3236), + [sym_conditional_access_expression] = STATE(3236), + [sym_as_expression] = STATE(3236), + [sym_is_expression] = STATE(3236), + [sym_is_pattern_expression] = STATE(3236), + [sym_cast_expression] = STATE(3236), + [sym_checked_expression] = STATE(3236), + [sym_invocation_expression] = STATE(3221), + [sym_switch_expression] = STATE(3236), + [sym_await_expression] = STATE(3221), + [sym_throw_expression] = STATE(3236), + [sym_element_access_expression] = STATE(2602), + [sym_interpolated_string_expression] = STATE(3236), + [sym_member_access_expression] = STATE(2602), + [sym_object_creation_expression] = STATE(3221), + [sym_parenthesized_expression] = STATE(3221), + [sym__parenthesized_lvalue_expression] = STATE(2602), + [sym_lambda_expression] = STATE(3236), + [sym__lambda_expression_init] = STATE(7487), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3236), + [sym_anonymous_method_expression] = STATE(3236), + [sym_anonymous_object_creation_expression] = STATE(3236), + [sym_implicit_array_creation_expression] = STATE(3236), + [sym_implicit_object_creation_expression] = STATE(3236), + [sym_implicit_stackalloc_expression] = STATE(3236), + [sym_initializer_expression] = STATE(3236), + [sym_default_expression] = STATE(3236), + [sym_with_expression] = STATE(3236), + [sym_sizeof_expression] = STATE(3236), + [sym_typeof_expression] = STATE(3236), + [sym_makeref_expression] = STATE(3236), + [sym_ref_expression] = STATE(3236), + [sym_reftype_expression] = STATE(3236), + [sym_refvalue_expression] = STATE(3236), + [sym_stackalloc_expression] = STATE(3236), + [sym_range_expression] = STATE(3236), + [sym_tuple_expression] = STATE(2602), + [sym_literal] = STATE(3236), + [sym_character_literal] = STATE(3272), + [sym_string_literal] = STATE(3272), + [sym_raw_string_literal] = STATE(3272), + [sym_boolean_literal] = STATE(3272), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3236), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(1063), [sym_preproc_endregion] = STATE(1063), [sym_preproc_line] = STATE(1063), @@ -221506,47 +221392,216 @@ 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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3379), + [sym__identifier_token] = ACTIONS(25), + [anon_sym_alias] = ACTIONS(29), + [anon_sym_global] = ACTIONS(29), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1149), + [anon_sym_LPAREN] = ACTIONS(1341), + [anon_sym_ref] = ACTIONS(1343), + [anon_sym_LBRACE] = ACTIONS(1155), + [anon_sym_delegate] = ACTIONS(1157), + [anon_sym_async] = ACTIONS(1045), + [anon_sym_file] = ACTIONS(29), + [anon_sym_new] = ACTIONS(1159), + [anon_sym_where] = ACTIONS(29), + [anon_sym_notnull] = ACTIONS(29), + [anon_sym_unmanaged] = ACTIONS(29), + [anon_sym_checked] = ACTIONS(1163), + [anon_sym_BANG] = ACTIONS(1347), + [anon_sym_TILDE] = ACTIONS(1347), + [anon_sym_PLUS_PLUS] = ACTIONS(1347), + [anon_sym_DASH_DASH] = ACTIONS(1347), + [anon_sym_true] = ACTIONS(1169), + [anon_sym_false] = ACTIONS(1169), + [anon_sym_PLUS] = ACTIONS(1345), + [anon_sym_DASH] = ACTIONS(1345), + [anon_sym_STAR] = ACTIONS(1349), + [anon_sym_CARET] = ACTIONS(1347), + [anon_sym_AMP] = ACTIONS(1347), + [anon_sym_this] = ACTIONS(1173), + [anon_sym_scoped] = ACTIONS(85), + [anon_sym_base] = ACTIONS(1175), + [anon_sym_var] = ACTIONS(89), + [sym_predefined_type] = ACTIONS(1177), + [anon_sym_unchecked] = ACTIONS(1163), + [anon_sym_yield] = ACTIONS(29), + [anon_sym_default] = ACTIONS(1179), + [anon_sym_throw] = ACTIONS(1351), + [anon_sym_when] = ACTIONS(29), + [anon_sym_await] = ACTIONS(1353), + [anon_sym_DOT_DOT] = ACTIONS(1355), + [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(1187), + [anon_sym_sizeof] = ACTIONS(1189), + [anon_sym_typeof] = ACTIONS(1191), + [anon_sym___makeref] = ACTIONS(1193), + [anon_sym___reftype] = ACTIONS(1195), + [anon_sym___refvalue] = ACTIONS(1197), + [sym_null_literal] = ACTIONS(1199), + [anon_sym_SQUOTE] = ACTIONS(1201), + [sym_integer_literal] = ACTIONS(1199), + [sym_real_literal] = ACTIONS(1203), + [anon_sym_DQUOTE] = ACTIONS(1205), + [sym_verbatim_string_literal] = ACTIONS(1203), + [aux_sym_preproc_if_token1] = ACTIONS(1207), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + [sym_interpolation_regular_start] = ACTIONS(1209), + [sym_interpolation_verbatim_start] = ACTIONS(1211), + [sym_interpolation_raw_start] = ACTIONS(1213), + [sym_raw_string_start] = ACTIONS(1215), + }, + [1064] = { + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(5152), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2196), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(5523), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3356), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3102), + [sym_postfix_unary_expression] = STATE(3079), + [sym_prefix_unary_expression] = STATE(3079), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6134), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3102), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3079), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3102), + [sym_member_access_expression] = STATE(2472), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3079), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7627), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(3102), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3102), + [sym_typeof_expression] = STATE(3102), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2472), + [sym_literal] = STATE(3102), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), + [sym_preproc_region] = STATE(1064), + [sym_preproc_endregion] = STATE(1064), + [sym_preproc_line] = STATE(1064), + [sym_preproc_pragma] = STATE(1064), + [sym_preproc_nullable] = STATE(1064), + [sym_preproc_error] = STATE(1064), + [sym_preproc_warning] = STATE(1064), + [sym_preproc_define] = STATE(1064), + [sym_preproc_undef] = STATE(1064), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1481), - [anon_sym_LPAREN] = ACTIONS(2177), - [anon_sym_ref] = ACTIONS(2179), - [anon_sym_LBRACE] = ACTIONS(1487), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1479), + [anon_sym_LPAREN] = ACTIONS(1511), + [anon_sym_ref] = ACTIONS(1513), + [anon_sym_LBRACE] = ACTIONS(1481), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(2181), + [anon_sym_new] = ACTIONS(1515), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1067), - [anon_sym_BANG] = ACTIONS(2185), - [anon_sym_TILDE] = ACTIONS(2185), - [anon_sym_PLUS_PLUS] = ACTIONS(2185), - [anon_sym_DASH_DASH] = ACTIONS(2185), + [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(2183), - [anon_sym_DASH] = ACTIONS(2183), - [anon_sym_STAR] = ACTIONS(2187), - [anon_sym_CARET] = ACTIONS(2185), - [anon_sym_AMP] = ACTIONS(2185), + [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(1067), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(2189), + [anon_sym_throw] = ACTIONS(1517), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2191), - [anon_sym_DOT_DOT] = ACTIONS(2193), + [anon_sym_await] = ACTIONS(1519), + [anon_sym_DOT_DOT] = ACTIONS(1521), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -221571,7 +221626,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(1089), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -221587,135 +221642,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), }, - [1064] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(5890), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2375), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(5470), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3656), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3080), - [sym_postfix_unary_expression] = STATE(3111), - [sym_prefix_unary_expression] = STATE(3111), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6157), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3080), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3111), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3080), - [sym_member_access_expression] = STATE(2484), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3111), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7362), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(3080), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3080), - [sym_typeof_expression] = STATE(3080), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2484), - [sym_literal] = STATE(3080), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), - [sym_preproc_region] = STATE(1064), - [sym_preproc_endregion] = STATE(1064), - [sym_preproc_line] = STATE(1064), - [sym_preproc_pragma] = STATE(1064), - [sym_preproc_nullable] = STATE(1064), - [sym_preproc_error] = STATE(1064), - [sym_preproc_warning] = STATE(1064), - [sym_preproc_define] = STATE(1064), - [sym_preproc_undef] = STATE(1064), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3067), + [1065] = { + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2816), + [sym__name] = STATE(5873), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2196), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(3212), + [sym_non_lvalue_expression] = STATE(3495), + [sym_lvalue_expression] = STATE(3208), + [sym__expression_statement_expression] = STATE(3462), + [sym_assignment_expression] = STATE(3497), + [sym_binary_expression] = STATE(3462), + [sym_postfix_unary_expression] = STATE(3497), + [sym_prefix_unary_expression] = STATE(3497), + [sym__pointer_indirection_expression] = STATE(2815), + [sym_query_expression] = STATE(3462), + [sym_from_clause] = STATE(6140), + [sym_conditional_expression] = STATE(3462), + [sym_conditional_access_expression] = STATE(3462), + [sym_as_expression] = STATE(3462), + [sym_is_expression] = STATE(3462), + [sym_is_pattern_expression] = STATE(3462), + [sym_cast_expression] = STATE(3462), + [sym_checked_expression] = STATE(3462), + [sym_invocation_expression] = STATE(3497), + [sym_switch_expression] = STATE(3462), + [sym_await_expression] = STATE(3497), + [sym_throw_expression] = STATE(3462), + [sym_element_access_expression] = STATE(2815), + [sym_interpolated_string_expression] = STATE(3462), + [sym_member_access_expression] = STATE(2815), + [sym_object_creation_expression] = STATE(3497), + [sym_parenthesized_expression] = STATE(3497), + [sym__parenthesized_lvalue_expression] = STATE(2815), + [sym_lambda_expression] = STATE(3462), + [sym__lambda_expression_init] = STATE(7520), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3462), + [sym_anonymous_method_expression] = STATE(3462), + [sym_anonymous_object_creation_expression] = STATE(3462), + [sym_implicit_array_creation_expression] = STATE(3462), + [sym_implicit_object_creation_expression] = STATE(3462), + [sym_implicit_stackalloc_expression] = STATE(3462), + [sym_initializer_expression] = STATE(3462), + [sym_default_expression] = STATE(3462), + [sym_with_expression] = STATE(3462), + [sym_sizeof_expression] = STATE(3462), + [sym_typeof_expression] = STATE(3462), + [sym_makeref_expression] = STATE(3462), + [sym_ref_expression] = STATE(3462), + [sym_reftype_expression] = STATE(3462), + [sym_refvalue_expression] = STATE(3462), + [sym_stackalloc_expression] = STATE(3462), + [sym_range_expression] = STATE(3462), + [sym_tuple_expression] = STATE(2815), + [sym_literal] = STATE(3462), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3462), + [sym_preproc_if_in_attribute_list] = STATE(5583), + [sym_preproc_region] = STATE(1065), + [sym_preproc_endregion] = STATE(1065), + [sym_preproc_line] = STATE(1065), + [sym_preproc_pragma] = STATE(1065), + [sym_preproc_nullable] = STATE(1065), + [sym_preproc_error] = STATE(1065), + [sym_preproc_warning] = STATE(1065), + [sym_preproc_define] = STATE(1065), + [sym_preproc_undef] = STATE(1065), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), [aux_sym__lambda_expression_init_repeat1] = STATE(3367), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1481), - [anon_sym_LPAREN] = ACTIONS(2177), - [anon_sym_ref] = ACTIONS(2179), - [anon_sym_LBRACE] = ACTIONS(1487), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1305), + [anon_sym_LPAREN] = ACTIONS(1369), + [anon_sym_ref] = ACTIONS(1371), + [anon_sym_LBRACE] = ACTIONS(1311), + [anon_sym_delegate] = ACTIONS(1313), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(2181), + [anon_sym_new] = ACTIONS(1315), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1067), - [anon_sym_BANG] = ACTIONS(2185), - [anon_sym_TILDE] = ACTIONS(2185), - [anon_sym_PLUS_PLUS] = ACTIONS(2185), - [anon_sym_DASH_DASH] = ACTIONS(2185), + [anon_sym_checked] = ACTIONS(1317), + [anon_sym_BANG] = ACTIONS(1375), + [anon_sym_TILDE] = ACTIONS(1375), + [anon_sym_PLUS_PLUS] = ACTIONS(1375), + [anon_sym_DASH_DASH] = ACTIONS(1375), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(2183), - [anon_sym_DASH] = ACTIONS(2183), - [anon_sym_STAR] = ACTIONS(2187), - [anon_sym_CARET] = ACTIONS(2185), - [anon_sym_AMP] = ACTIONS(2185), - [anon_sym_this] = ACTIONS(83), + [anon_sym_PLUS] = ACTIONS(1373), + [anon_sym_DASH] = ACTIONS(1373), + [anon_sym_STAR] = ACTIONS(1377), + [anon_sym_CARET] = ACTIONS(1375), + [anon_sym_AMP] = ACTIONS(1375), + [anon_sym_this] = ACTIONS(1321), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), + [anon_sym_base] = ACTIONS(1323), [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1067), + [anon_sym_unchecked] = ACTIONS(1317), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(2189), + [anon_sym_throw] = ACTIONS(1379), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2191), - [anon_sym_DOT_DOT] = ACTIONS(2193), + [anon_sym_await] = ACTIONS(1381), + [anon_sym_DOT_DOT] = ACTIONS(1383), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -221728,19 +221783,19 @@ static const uint16_t ts_parse_table[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(1331), [anon_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(1333), + [anon_sym___reftype] = ACTIONS(1335), + [anon_sym___refvalue] = ACTIONS(1337), [sym_null_literal] = ACTIONS(139), [anon_sym_SQUOTE] = ACTIONS(141), [sym_integer_literal] = ACTIONS(139), [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1089), + [aux_sym_preproc_if_token1] = ACTIONS(1339), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -221756,254 +221811,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), }, - [1065] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2914), - [sym__name] = STATE(5873), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2362), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(3916), - [sym_non_lvalue_expression] = STATE(3880), - [sym_lvalue_expression] = STATE(3092), - [sym__expression_statement_expression] = STATE(3873), - [sym_assignment_expression] = STATE(3881), - [sym_binary_expression] = STATE(3873), - [sym_postfix_unary_expression] = STATE(3881), - [sym_prefix_unary_expression] = STATE(3881), - [sym__pointer_indirection_expression] = STATE(2913), - [sym_query_expression] = STATE(3873), - [sym_from_clause] = STATE(6168), - [sym_conditional_expression] = STATE(3873), - [sym_conditional_access_expression] = STATE(3873), - [sym_as_expression] = STATE(3873), - [sym_is_expression] = STATE(3873), - [sym_is_pattern_expression] = STATE(3873), - [sym_cast_expression] = STATE(3873), - [sym_checked_expression] = STATE(3873), - [sym_invocation_expression] = STATE(3881), - [sym_switch_expression] = STATE(3873), - [sym_await_expression] = STATE(3881), - [sym_throw_expression] = STATE(3873), - [sym_element_access_expression] = STATE(2913), - [sym_interpolated_string_expression] = STATE(3873), - [sym_member_access_expression] = STATE(2913), - [sym_object_creation_expression] = STATE(3881), - [sym_parenthesized_expression] = STATE(3881), - [sym__parenthesized_lvalue_expression] = STATE(2913), - [sym_lambda_expression] = STATE(3873), - [sym__lambda_expression_init] = STATE(7533), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3873), - [sym_anonymous_method_expression] = STATE(3873), - [sym_anonymous_object_creation_expression] = STATE(3873), - [sym_implicit_array_creation_expression] = STATE(3873), - [sym_implicit_object_creation_expression] = STATE(3873), - [sym_implicit_stackalloc_expression] = STATE(3873), - [sym_initializer_expression] = STATE(3873), - [sym_default_expression] = STATE(3873), - [sym_with_expression] = STATE(3873), - [sym_sizeof_expression] = STATE(3873), - [sym_typeof_expression] = STATE(3873), - [sym_makeref_expression] = STATE(3873), - [sym_ref_expression] = STATE(3873), - [sym_reftype_expression] = STATE(3873), - [sym_refvalue_expression] = STATE(3873), - [sym_stackalloc_expression] = STATE(3873), - [sym_range_expression] = STATE(3873), - [sym_tuple_expression] = STATE(2913), - [sym_literal] = STATE(3873), - [sym_character_literal] = STATE(3877), - [sym_string_literal] = STATE(3877), - [sym_raw_string_literal] = STATE(3877), - [sym_boolean_literal] = STATE(3877), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3873), - [sym_preproc_if_in_attribute_list] = STATE(5576), - [sym_preproc_region] = STATE(1065), - [sym_preproc_endregion] = STATE(1065), - [sym_preproc_line] = STATE(1065), - [sym_preproc_pragma] = STATE(1065), - [sym_preproc_nullable] = STATE(1065), - [sym_preproc_error] = STATE(1065), - [sym_preproc_warning] = STATE(1065), - [sym_preproc_define] = STATE(1065), - [sym_preproc_undef] = STATE(1065), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3382), - [sym__identifier_token] = ACTIONS(25), - [anon_sym_alias] = ACTIONS(29), - [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1627), - [anon_sym_LPAREN] = ACTIONS(1961), - [anon_sym_ref] = ACTIONS(1963), - [anon_sym_LBRACE] = ACTIONS(1633), - [anon_sym_delegate] = ACTIONS(1635), - [anon_sym_async] = ACTIONS(1047), - [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1637), - [anon_sym_where] = ACTIONS(29), - [anon_sym_notnull] = ACTIONS(29), - [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1639), - [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(1645), - [anon_sym_false] = ACTIONS(1645), - [anon_sym_PLUS] = ACTIONS(1965), - [anon_sym_DASH] = ACTIONS(1965), - [anon_sym_STAR] = ACTIONS(1647), - [anon_sym_CARET] = ACTIONS(1967), - [anon_sym_AMP] = ACTIONS(1967), - [anon_sym_this] = ACTIONS(1649), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1651), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1653), - [anon_sym_unchecked] = ACTIONS(1639), - [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1655), - [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(1663), - [anon_sym_sizeof] = ACTIONS(1665), - [anon_sym_typeof] = ACTIONS(1667), - [anon_sym___makeref] = ACTIONS(1669), - [anon_sym___reftype] = ACTIONS(1671), - [anon_sym___refvalue] = ACTIONS(1673), - [sym_null_literal] = ACTIONS(1675), - [anon_sym_SQUOTE] = ACTIONS(1677), - [sym_integer_literal] = ACTIONS(1675), - [sym_real_literal] = ACTIONS(1679), - [anon_sym_DQUOTE] = ACTIONS(1681), - [sym_verbatim_string_literal] = ACTIONS(1679), - [aux_sym_preproc_if_token1] = ACTIONS(1683), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1685), - [sym_interpolation_verbatim_start] = ACTIONS(1687), - [sym_interpolation_raw_start] = ACTIONS(1689), - [sym_raw_string_start] = ACTIONS(1691), - }, [1066] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(5890), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2375), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(5477), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3656), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3080), - [sym_postfix_unary_expression] = STATE(3111), - [sym_prefix_unary_expression] = STATE(3111), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6157), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3080), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3111), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3080), - [sym_member_access_expression] = STATE(2484), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3111), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7362), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(3080), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3080), - [sym_typeof_expression] = STATE(3080), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2484), - [sym_literal] = STATE(3080), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2901), + [sym__name] = STATE(5883), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2359), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(5681), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(2905), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3102), + [sym_postfix_unary_expression] = STATE(3079), + [sym_prefix_unary_expression] = STATE(3079), + [sym__pointer_indirection_expression] = STATE(2906), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6134), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3102), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3079), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2906), + [sym_interpolated_string_expression] = STATE(3102), + [sym_member_access_expression] = STATE(2906), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3079), + [sym__parenthesized_lvalue_expression] = STATE(2906), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7425), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(3102), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3102), + [sym_typeof_expression] = STATE(3102), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2906), + [sym_literal] = STATE(3102), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(1066), [sym_preproc_endregion] = STATE(1066), [sym_preproc_line] = STATE(1066), @@ -222013,47 +221899,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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1481), - [anon_sym_LPAREN] = ACTIONS(2177), - [anon_sym_ref] = ACTIONS(2179), - [anon_sym_LBRACE] = ACTIONS(1487), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1655), + [anon_sym_LPAREN] = ACTIONS(2941), + [anon_sym_ref] = ACTIONS(715), + [anon_sym_LBRACE] = ACTIONS(1481), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(2181), + [anon_sym_new] = ACTIONS(1059), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1067), - [anon_sym_BANG] = ACTIONS(2185), - [anon_sym_TILDE] = ACTIONS(2185), - [anon_sym_PLUS_PLUS] = ACTIONS(2185), - [anon_sym_DASH_DASH] = ACTIONS(2185), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(1525), + [anon_sym_TILDE] = ACTIONS(1525), + [anon_sym_PLUS_PLUS] = ACTIONS(1525), + [anon_sym_DASH_DASH] = ACTIONS(1525), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(2183), - [anon_sym_DASH] = ACTIONS(2183), - [anon_sym_STAR] = ACTIONS(2187), - [anon_sym_CARET] = ACTIONS(2185), - [anon_sym_AMP] = ACTIONS(2185), - [anon_sym_this] = ACTIONS(83), + [anon_sym_PLUS] = ACTIONS(1523), + [anon_sym_DASH] = ACTIONS(1523), + [anon_sym_STAR] = ACTIONS(1675), + [anon_sym_CARET] = ACTIONS(1525), + [anon_sym_AMP] = ACTIONS(1525), + [anon_sym_this] = ACTIONS(1677), [anon_sym_scoped] = ACTIONS(85), [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1067), + [sym_predefined_type] = ACTIONS(1681), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(2189), + [anon_sym_throw] = ACTIONS(1527), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2191), - [anon_sym_DOT_DOT] = ACTIONS(2193), + [anon_sym_await] = ACTIONS(1529), + [anon_sym_DOT_DOT] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -222078,7 +221964,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(1089), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -222095,84 +221981,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [1067] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(5890), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2375), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(5478), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3656), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3080), - [sym_postfix_unary_expression] = STATE(3111), - [sym_prefix_unary_expression] = STATE(3111), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6157), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3080), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3111), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3080), - [sym_member_access_expression] = STATE(2484), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3111), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7362), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(3080), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3080), - [sym_typeof_expression] = STATE(3080), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2484), - [sym_literal] = STATE(3080), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(3182), + [sym__name] = STATE(5882), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2306), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2262), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(4336), + [sym_non_lvalue_expression] = STATE(4580), + [sym_lvalue_expression] = STATE(3534), + [sym__expression_statement_expression] = STATE(4573), + [sym_assignment_expression] = STATE(4581), + [sym_binary_expression] = STATE(4573), + [sym_postfix_unary_expression] = STATE(4581), + [sym_prefix_unary_expression] = STATE(4581), + [sym__pointer_indirection_expression] = STATE(3144), + [sym_query_expression] = STATE(4573), + [sym_from_clause] = STATE(6133), + [sym_conditional_expression] = STATE(4573), + [sym_conditional_access_expression] = STATE(4573), + [sym_as_expression] = STATE(4573), + [sym_is_expression] = STATE(4573), + [sym_is_pattern_expression] = STATE(4573), + [sym_cast_expression] = STATE(4573), + [sym_checked_expression] = STATE(4573), + [sym_invocation_expression] = STATE(4581), + [sym_switch_expression] = STATE(4573), + [sym_await_expression] = STATE(4581), + [sym_throw_expression] = STATE(4573), + [sym_element_access_expression] = STATE(3144), + [sym_interpolated_string_expression] = STATE(4573), + [sym_member_access_expression] = STATE(3144), + [sym_object_creation_expression] = STATE(4581), + [sym_parenthesized_expression] = STATE(4581), + [sym__parenthesized_lvalue_expression] = STATE(3144), + [sym_lambda_expression] = STATE(4573), + [sym__lambda_expression_init] = STATE(7592), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(4573), + [sym_anonymous_method_expression] = STATE(4573), + [sym_anonymous_object_creation_expression] = STATE(4573), + [sym_implicit_array_creation_expression] = STATE(4573), + [sym_implicit_object_creation_expression] = STATE(4573), + [sym_implicit_stackalloc_expression] = STATE(4573), + [sym_initializer_expression] = STATE(4573), + [sym_default_expression] = STATE(4573), + [sym_with_expression] = STATE(4573), + [sym_sizeof_expression] = STATE(4573), + [sym_typeof_expression] = STATE(4573), + [sym_makeref_expression] = STATE(4573), + [sym_ref_expression] = STATE(4573), + [sym_reftype_expression] = STATE(4573), + [sym_refvalue_expression] = STATE(4573), + [sym_stackalloc_expression] = STATE(4573), + [sym_range_expression] = STATE(4573), + [sym_tuple_expression] = STATE(3144), + [sym_literal] = STATE(4573), + [sym_character_literal] = STATE(4575), + [sym_string_literal] = STATE(4575), + [sym_raw_string_literal] = STATE(4575), + [sym_boolean_literal] = STATE(4575), + [sym_identifier] = STATE(2237), + [sym__reserved_identifier] = STATE(2229), + [sym_preproc_if_in_expression] = STATE(4573), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(1067), [sym_preproc_endregion] = STATE(1067), [sym_preproc_line] = STATE(1067), @@ -222182,166 +222068,166 @@ 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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), - [sym__identifier_token] = ACTIONS(25), - [anon_sym_alias] = ACTIONS(29), - [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1481), - [anon_sym_LPAREN] = ACTIONS(2177), - [anon_sym_ref] = ACTIONS(2179), - [anon_sym_LBRACE] = ACTIONS(1487), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), - [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(2181), - [anon_sym_where] = ACTIONS(29), - [anon_sym_notnull] = ACTIONS(29), - [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1067), - [anon_sym_BANG] = ACTIONS(2185), - [anon_sym_TILDE] = ACTIONS(2185), - [anon_sym_PLUS_PLUS] = ACTIONS(2185), - [anon_sym_DASH_DASH] = ACTIONS(2185), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(2183), - [anon_sym_DASH] = ACTIONS(2183), - [anon_sym_STAR] = ACTIONS(2187), - [anon_sym_CARET] = ACTIONS(2185), - [anon_sym_AMP] = ACTIONS(2185), - [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(1067), - [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(2189), - [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2191), - [anon_sym_DOT_DOT] = ACTIONS(2193), - [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(1089), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(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), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3501), + [sym__identifier_token] = ACTIONS(1385), + [anon_sym_alias] = ACTIONS(1387), + [anon_sym_global] = ACTIONS(1387), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1389), + [anon_sym_LPAREN] = ACTIONS(1773), + [anon_sym_ref] = ACTIONS(1775), + [anon_sym_LBRACE] = ACTIONS(1395), + [anon_sym_delegate] = ACTIONS(1397), + [anon_sym_async] = ACTIONS(1045), + [anon_sym_file] = ACTIONS(1387), + [anon_sym_new] = ACTIONS(1465), + [anon_sym_where] = ACTIONS(1387), + [anon_sym_notnull] = ACTIONS(1387), + [anon_sym_unmanaged] = ACTIONS(1387), + [anon_sym_checked] = ACTIONS(1401), + [anon_sym_BANG] = ACTIONS(1779), + [anon_sym_TILDE] = ACTIONS(1779), + [anon_sym_PLUS_PLUS] = ACTIONS(1779), + [anon_sym_DASH_DASH] = ACTIONS(1779), + [anon_sym_true] = ACTIONS(1407), + [anon_sym_false] = ACTIONS(1407), + [anon_sym_PLUS] = ACTIONS(1777), + [anon_sym_DASH] = ACTIONS(1777), + [anon_sym_STAR] = ACTIONS(1471), + [anon_sym_CARET] = ACTIONS(1779), + [anon_sym_AMP] = ACTIONS(1779), + [anon_sym_this] = ACTIONS(1411), + [anon_sym_scoped] = ACTIONS(1413), + [anon_sym_base] = ACTIONS(1415), + [anon_sym_var] = ACTIONS(1417), + [sym_predefined_type] = ACTIONS(1419), + [anon_sym_unchecked] = ACTIONS(1401), + [anon_sym_yield] = ACTIONS(1387), + [anon_sym_default] = ACTIONS(1421), + [anon_sym_throw] = ACTIONS(1781), + [anon_sym_when] = ACTIONS(1387), + [anon_sym_await] = ACTIONS(1783), + [anon_sym_DOT_DOT] = ACTIONS(1785), + [anon_sym_from] = ACTIONS(1429), + [anon_sym_into] = ACTIONS(1387), + [anon_sym_join] = ACTIONS(1387), + [anon_sym_on] = ACTIONS(1387), + [anon_sym_equals] = ACTIONS(1387), + [anon_sym_let] = ACTIONS(1387), + [anon_sym_orderby] = ACTIONS(1387), + [anon_sym_ascending] = ACTIONS(1387), + [anon_sym_descending] = ACTIONS(1387), + [anon_sym_group] = ACTIONS(1387), + [anon_sym_by] = ACTIONS(1387), + [anon_sym_select] = ACTIONS(1387), + [anon_sym_stackalloc] = ACTIONS(1431), + [anon_sym_sizeof] = ACTIONS(1433), + [anon_sym_typeof] = ACTIONS(1435), + [anon_sym___makeref] = ACTIONS(1437), + [anon_sym___reftype] = ACTIONS(1439), + [anon_sym___refvalue] = ACTIONS(1441), + [sym_null_literal] = ACTIONS(1443), + [anon_sym_SQUOTE] = ACTIONS(1445), + [sym_integer_literal] = ACTIONS(1443), + [sym_real_literal] = ACTIONS(1447), + [anon_sym_DQUOTE] = ACTIONS(1449), + [sym_verbatim_string_literal] = ACTIONS(1447), + [aux_sym_preproc_if_token1] = ACTIONS(1451), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + [sym_interpolation_regular_start] = ACTIONS(1453), + [sym_interpolation_verbatim_start] = ACTIONS(1455), + [sym_interpolation_raw_start] = ACTIONS(1457), + [sym_raw_string_start] = ACTIONS(1459), }, [1068] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(5890), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2375), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(5479), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3656), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3080), - [sym_postfix_unary_expression] = STATE(3111), - [sym_prefix_unary_expression] = STATE(3111), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6157), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3080), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3111), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3080), - [sym_member_access_expression] = STATE(2484), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3111), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7362), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(3080), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3080), - [sym_typeof_expression] = STATE(3080), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2484), - [sym_literal] = STATE(3080), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(3182), + [sym__name] = STATE(5882), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2306), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2262), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(5673), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3206), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3102), + [sym_postfix_unary_expression] = STATE(3079), + [sym_prefix_unary_expression] = STATE(3079), + [sym__pointer_indirection_expression] = STATE(3144), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6134), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3102), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3079), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(3144), + [sym_interpolated_string_expression] = STATE(3102), + [sym_member_access_expression] = STATE(3144), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3079), + [sym__parenthesized_lvalue_expression] = STATE(3144), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7425), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(3102), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3102), + [sym_typeof_expression] = STATE(3102), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(3144), + [sym_literal] = STATE(3102), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2237), + [sym__reserved_identifier] = STATE(2229), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(1068), [sym_preproc_endregion] = STATE(1068), [sym_preproc_line] = STATE(1068), @@ -222351,59 +222237,59 @@ 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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), - [sym__identifier_token] = ACTIONS(25), - [anon_sym_alias] = ACTIONS(29), - [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1481), - [anon_sym_LPAREN] = ACTIONS(2177), - [anon_sym_ref] = ACTIONS(2179), - [anon_sym_LBRACE] = ACTIONS(1487), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), - [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(2181), - [anon_sym_where] = ACTIONS(29), - [anon_sym_notnull] = ACTIONS(29), - [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1067), - [anon_sym_BANG] = ACTIONS(2185), - [anon_sym_TILDE] = ACTIONS(2185), - [anon_sym_PLUS_PLUS] = ACTIONS(2185), - [anon_sym_DASH_DASH] = ACTIONS(2185), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(2183), - [anon_sym_DASH] = ACTIONS(2183), - [anon_sym_STAR] = ACTIONS(2187), - [anon_sym_CARET] = ACTIONS(2185), - [anon_sym_AMP] = ACTIONS(2185), - [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(1067), - [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(2189), - [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2191), - [anon_sym_DOT_DOT] = ACTIONS(2193), - [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), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), + [sym__identifier_token] = ACTIONS(1385), + [anon_sym_alias] = ACTIONS(1387), + [anon_sym_global] = ACTIONS(1387), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1389), + [anon_sym_LPAREN] = ACTIONS(2937), + [anon_sym_ref] = ACTIONS(715), + [anon_sym_LBRACE] = ACTIONS(1481), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), + [anon_sym_file] = ACTIONS(1387), + [anon_sym_new] = ACTIONS(1059), + [anon_sym_where] = ACTIONS(1387), + [anon_sym_notnull] = ACTIONS(1387), + [anon_sym_unmanaged] = ACTIONS(1387), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(1525), + [anon_sym_TILDE] = ACTIONS(1525), + [anon_sym_PLUS_PLUS] = ACTIONS(1525), + [anon_sym_DASH_DASH] = ACTIONS(1525), + [anon_sym_true] = ACTIONS(77), + [anon_sym_false] = ACTIONS(77), + [anon_sym_PLUS] = ACTIONS(1523), + [anon_sym_DASH] = ACTIONS(1523), + [anon_sym_STAR] = ACTIONS(1471), + [anon_sym_CARET] = ACTIONS(1525), + [anon_sym_AMP] = ACTIONS(1525), + [anon_sym_this] = ACTIONS(1411), + [anon_sym_scoped] = ACTIONS(1413), + [anon_sym_base] = ACTIONS(87), + [anon_sym_var] = ACTIONS(1417), + [sym_predefined_type] = ACTIONS(1419), + [anon_sym_unchecked] = ACTIONS(1065), + [anon_sym_yield] = ACTIONS(1387), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(1527), + [anon_sym_when] = ACTIONS(1387), + [anon_sym_await] = ACTIONS(1529), + [anon_sym_DOT_DOT] = ACTIONS(123), + [anon_sym_from] = ACTIONS(1429), + [anon_sym_into] = ACTIONS(1387), + [anon_sym_join] = ACTIONS(1387), + [anon_sym_on] = ACTIONS(1387), + [anon_sym_equals] = ACTIONS(1387), + [anon_sym_let] = ACTIONS(1387), + [anon_sym_orderby] = ACTIONS(1387), + [anon_sym_ascending] = ACTIONS(1387), + [anon_sym_descending] = ACTIONS(1387), + [anon_sym_group] = ACTIONS(1387), + [anon_sym_by] = ACTIONS(1387), + [anon_sym_select] = ACTIONS(1387), [anon_sym_stackalloc] = ACTIONS(127), [anon_sym_sizeof] = ACTIONS(129), [anon_sym_typeof] = ACTIONS(131), @@ -222416,7 +222302,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(1089), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -222433,84 +222319,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [1069] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2914), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2459), [sym__name] = STATE(5873), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2362), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(3917), - [sym_non_lvalue_expression] = STATE(3880), - [sym_lvalue_expression] = STATE(3092), - [sym__expression_statement_expression] = STATE(3873), - [sym_assignment_expression] = STATE(3881), - [sym_binary_expression] = STATE(3873), - [sym_postfix_unary_expression] = STATE(3881), - [sym_prefix_unary_expression] = STATE(3881), - [sym__pointer_indirection_expression] = STATE(2913), - [sym_query_expression] = STATE(3873), - [sym_from_clause] = STATE(6168), - [sym_conditional_expression] = STATE(3873), - [sym_conditional_access_expression] = STATE(3873), - [sym_as_expression] = STATE(3873), - [sym_is_expression] = STATE(3873), - [sym_is_pattern_expression] = STATE(3873), - [sym_cast_expression] = STATE(3873), - [sym_checked_expression] = STATE(3873), - [sym_invocation_expression] = STATE(3881), - [sym_switch_expression] = STATE(3873), - [sym_await_expression] = STATE(3881), - [sym_throw_expression] = STATE(3873), - [sym_element_access_expression] = STATE(2913), - [sym_interpolated_string_expression] = STATE(3873), - [sym_member_access_expression] = STATE(2913), - [sym_object_creation_expression] = STATE(3881), - [sym_parenthesized_expression] = STATE(3881), - [sym__parenthesized_lvalue_expression] = STATE(2913), - [sym_lambda_expression] = STATE(3873), - [sym__lambda_expression_init] = STATE(7533), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3873), - [sym_anonymous_method_expression] = STATE(3873), - [sym_anonymous_object_creation_expression] = STATE(3873), - [sym_implicit_array_creation_expression] = STATE(3873), - [sym_implicit_object_creation_expression] = STATE(3873), - [sym_implicit_stackalloc_expression] = STATE(3873), - [sym_initializer_expression] = STATE(3873), - [sym_default_expression] = STATE(3873), - [sym_with_expression] = STATE(3873), - [sym_sizeof_expression] = STATE(3873), - [sym_typeof_expression] = STATE(3873), - [sym_makeref_expression] = STATE(3873), - [sym_ref_expression] = STATE(3873), - [sym_reftype_expression] = STATE(3873), - [sym_refvalue_expression] = STATE(3873), - [sym_stackalloc_expression] = STATE(3873), - [sym_range_expression] = STATE(3873), - [sym_tuple_expression] = STATE(2913), - [sym_literal] = STATE(3873), - [sym_character_literal] = STATE(3877), - [sym_string_literal] = STATE(3877), - [sym_raw_string_literal] = STATE(3877), - [sym_boolean_literal] = STATE(3877), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3873), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2238), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(4886), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3526), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3102), + [sym_postfix_unary_expression] = STATE(3079), + [sym_prefix_unary_expression] = STATE(3079), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6134), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3102), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3079), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3102), + [sym_member_access_expression] = STATE(2472), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3079), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7455), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(3102), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3102), + [sym_typeof_expression] = STATE(3102), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2472), + [sym_literal] = STATE(3102), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(1069), [sym_preproc_endregion] = STATE(1069), [sym_preproc_line] = STATE(1069), @@ -222520,47 +222406,47 @@ 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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3382), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1627), - [anon_sym_LPAREN] = ACTIONS(1961), - [anon_sym_ref] = ACTIONS(1963), - [anon_sym_LBRACE] = ACTIONS(1633), - [anon_sym_delegate] = ACTIONS(1635), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1479), + [anon_sym_LPAREN] = ACTIONS(1629), + [anon_sym_ref] = ACTIONS(1631), + [anon_sym_LBRACE] = ACTIONS(1481), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1637), + [anon_sym_new] = ACTIONS(1515), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1639), - [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(1645), - [anon_sym_false] = ACTIONS(1645), - [anon_sym_PLUS] = ACTIONS(1965), - [anon_sym_DASH] = ACTIONS(1965), - [anon_sym_STAR] = ACTIONS(1647), - [anon_sym_CARET] = ACTIONS(1967), - [anon_sym_AMP] = ACTIONS(1967), - [anon_sym_this] = ACTIONS(1649), + [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_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1651), + [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1653), - [anon_sym_unchecked] = ACTIONS(1639), + [sym_predefined_type] = ACTIONS(91), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1655), - [anon_sym_throw] = ACTIONS(1969), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(1633), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1971), - [anon_sym_DOT_DOT] = ACTIONS(1973), + [anon_sym_await] = ACTIONS(1635), + [anon_sym_DOT_DOT] = ACTIONS(1637), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -222573,19 +222459,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1663), - [anon_sym_sizeof] = ACTIONS(1665), - [anon_sym_typeof] = ACTIONS(1667), - [anon_sym___makeref] = ACTIONS(1669), - [anon_sym___reftype] = ACTIONS(1671), - [anon_sym___refvalue] = ACTIONS(1673), - [sym_null_literal] = ACTIONS(1675), - [anon_sym_SQUOTE] = ACTIONS(1677), - [sym_integer_literal] = ACTIONS(1675), - [sym_real_literal] = ACTIONS(1679), - [anon_sym_DQUOTE] = ACTIONS(1681), - [sym_verbatim_string_literal] = ACTIONS(1679), - [aux_sym_preproc_if_token1] = ACTIONS(1683), + [anon_sym_stackalloc] = ACTIONS(127), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_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), @@ -222596,90 +222482,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1685), - [sym_interpolation_verbatim_start] = ACTIONS(1687), - [sym_interpolation_raw_start] = ACTIONS(1689), - [sym_raw_string_start] = ACTIONS(1691), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [sym_interpolation_raw_start] = ACTIONS(155), + [sym_raw_string_start] = ACTIONS(157), }, [1070] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(5890), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2375), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(5373), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3656), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3080), - [sym_postfix_unary_expression] = STATE(3111), - [sym_prefix_unary_expression] = STATE(3111), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6157), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3080), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3111), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3080), - [sym_member_access_expression] = STATE(2484), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3111), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7362), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(3080), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3080), - [sym_typeof_expression] = STATE(3080), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2484), - [sym_literal] = STATE(3080), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(5873), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2238), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(3528), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3526), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3102), + [sym_postfix_unary_expression] = STATE(3079), + [sym_prefix_unary_expression] = STATE(3079), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6134), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3102), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3079), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3102), + [sym_member_access_expression] = STATE(2472), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3079), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7455), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(3102), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3102), + [sym_typeof_expression] = STATE(3102), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2472), + [sym_literal] = STATE(3102), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(1070), [sym_preproc_endregion] = STATE(1070), [sym_preproc_line] = STATE(1070), @@ -222689,47 +222575,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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1481), - [anon_sym_LPAREN] = ACTIONS(2177), - [anon_sym_ref] = ACTIONS(2179), - [anon_sym_LBRACE] = ACTIONS(1487), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1479), + [anon_sym_LPAREN] = ACTIONS(1629), + [anon_sym_ref] = ACTIONS(1631), + [anon_sym_LBRACE] = ACTIONS(1481), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(2181), + [anon_sym_new] = ACTIONS(1515), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1067), - [anon_sym_BANG] = ACTIONS(2185), - [anon_sym_TILDE] = ACTIONS(2185), - [anon_sym_PLUS_PLUS] = ACTIONS(2185), - [anon_sym_DASH_DASH] = ACTIONS(2185), + [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(2183), - [anon_sym_DASH] = ACTIONS(2183), - [anon_sym_STAR] = ACTIONS(2187), - [anon_sym_CARET] = ACTIONS(2185), - [anon_sym_AMP] = ACTIONS(2185), + [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_scoped] = ACTIONS(85), [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1067), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(2189), + [anon_sym_throw] = ACTIONS(1633), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2191), - [anon_sym_DOT_DOT] = ACTIONS(2193), + [anon_sym_await] = ACTIONS(1635), + [anon_sym_DOT_DOT] = ACTIONS(1637), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -222754,7 +222640,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(1089), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -222771,84 +222657,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [1071] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2610), - [sym__name] = STATE(5898), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2197), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(3806), - [sym_non_lvalue_expression] = STATE(3277), - [sym_lvalue_expression] = STATE(3023), - [sym__expression_statement_expression] = STATE(3228), - [sym_assignment_expression] = STATE(3289), - [sym_binary_expression] = STATE(3228), - [sym_postfix_unary_expression] = STATE(3289), - [sym_prefix_unary_expression] = STATE(3289), - [sym__pointer_indirection_expression] = STATE(2609), - [sym_query_expression] = STATE(3228), - [sym_from_clause] = STATE(6172), - [sym_conditional_expression] = STATE(3228), - [sym_conditional_access_expression] = STATE(3228), - [sym_as_expression] = STATE(3228), - [sym_is_expression] = STATE(3228), - [sym_is_pattern_expression] = STATE(3228), - [sym_cast_expression] = STATE(3228), - [sym_checked_expression] = STATE(3228), - [sym_invocation_expression] = STATE(3289), - [sym_switch_expression] = STATE(3228), - [sym_await_expression] = STATE(3289), - [sym_throw_expression] = STATE(3228), - [sym_element_access_expression] = STATE(2609), - [sym_interpolated_string_expression] = STATE(3228), - [sym_member_access_expression] = STATE(2609), - [sym_object_creation_expression] = STATE(3289), - [sym_parenthesized_expression] = STATE(3289), - [sym__parenthesized_lvalue_expression] = STATE(2609), - [sym_lambda_expression] = STATE(3228), - [sym__lambda_expression_init] = STATE(7653), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3228), - [sym_anonymous_method_expression] = STATE(3228), - [sym_anonymous_object_creation_expression] = STATE(3228), - [sym_implicit_array_creation_expression] = STATE(3228), - [sym_implicit_object_creation_expression] = STATE(3228), - [sym_implicit_stackalloc_expression] = STATE(3228), - [sym_initializer_expression] = STATE(3228), - [sym_default_expression] = STATE(3228), - [sym_with_expression] = STATE(3228), - [sym_sizeof_expression] = STATE(3228), - [sym_typeof_expression] = STATE(3228), - [sym_makeref_expression] = STATE(3228), - [sym_ref_expression] = STATE(3228), - [sym_reftype_expression] = STATE(3228), - [sym_refvalue_expression] = STATE(3228), - [sym_stackalloc_expression] = STATE(3228), - [sym_range_expression] = STATE(3228), - [sym_tuple_expression] = STATE(2609), - [sym_literal] = STATE(3228), - [sym_character_literal] = STATE(3278), - [sym_string_literal] = STATE(3278), - [sym_raw_string_literal] = STATE(3278), - [sym_boolean_literal] = STATE(3278), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3228), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(5893), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2361), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(5438), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3673), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3102), + [sym_postfix_unary_expression] = STATE(3079), + [sym_prefix_unary_expression] = STATE(3079), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6159), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3102), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3079), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3102), + [sym_member_access_expression] = STATE(2472), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3079), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7363), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(3102), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3102), + [sym_typeof_expression] = STATE(3102), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2472), + [sym_literal] = STATE(3102), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(1071), [sym_preproc_endregion] = STATE(1071), [sym_preproc_line] = STATE(1071), @@ -222858,47 +222744,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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3396), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1153), - [anon_sym_LPAREN] = ACTIONS(1155), - [anon_sym_ref] = ACTIONS(1157), - [anon_sym_LBRACE] = ACTIONS(1159), - [anon_sym_delegate] = ACTIONS(1161), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1479), + [anon_sym_LPAREN] = ACTIONS(2237), + [anon_sym_ref] = ACTIONS(2239), + [anon_sym_LBRACE] = ACTIONS(1481), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1163), + [anon_sym_new] = ACTIONS(2241), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1167), - [anon_sym_BANG] = ACTIONS(1171), - [anon_sym_TILDE] = ACTIONS(1171), - [anon_sym_PLUS_PLUS] = ACTIONS(1171), - [anon_sym_DASH_DASH] = ACTIONS(1171), - [anon_sym_true] = ACTIONS(1173), - [anon_sym_false] = ACTIONS(1173), - [anon_sym_PLUS] = ACTIONS(1169), - [anon_sym_DASH] = ACTIONS(1169), - [anon_sym_STAR] = ACTIONS(1175), - [anon_sym_CARET] = ACTIONS(1171), - [anon_sym_AMP] = ACTIONS(1171), - [anon_sym_this] = ACTIONS(1177), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(2245), + [anon_sym_TILDE] = ACTIONS(2245), + [anon_sym_PLUS_PLUS] = ACTIONS(2245), + [anon_sym_DASH_DASH] = ACTIONS(2245), + [anon_sym_true] = ACTIONS(77), + [anon_sym_false] = ACTIONS(77), + [anon_sym_PLUS] = ACTIONS(2243), + [anon_sym_DASH] = ACTIONS(2243), + [anon_sym_STAR] = ACTIONS(2247), + [anon_sym_CARET] = ACTIONS(2245), + [anon_sym_AMP] = ACTIONS(2245), + [anon_sym_this] = ACTIONS(83), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1179), + [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1181), - [anon_sym_unchecked] = ACTIONS(1167), + [sym_predefined_type] = ACTIONS(91), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1183), - [anon_sym_throw] = ACTIONS(1185), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(2249), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1187), - [anon_sym_DOT_DOT] = ACTIONS(1189), + [anon_sym_await] = ACTIONS(2251), + [anon_sym_DOT_DOT] = ACTIONS(2253), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -222911,19 +222797,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1191), - [anon_sym_sizeof] = ACTIONS(1193), - [anon_sym_typeof] = ACTIONS(1195), - [anon_sym___makeref] = ACTIONS(1197), - [anon_sym___reftype] = ACTIONS(1199), - [anon_sym___refvalue] = ACTIONS(1201), - [sym_null_literal] = ACTIONS(1203), - [anon_sym_SQUOTE] = ACTIONS(1205), - [sym_integer_literal] = ACTIONS(1203), - [sym_real_literal] = ACTIONS(1207), - [anon_sym_DQUOTE] = ACTIONS(1209), - [sym_verbatim_string_literal] = ACTIONS(1207), - [aux_sym_preproc_if_token1] = ACTIONS(1211), + [anon_sym_stackalloc] = ACTIONS(127), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_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), @@ -222934,90 +222820,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1213), - [sym_interpolation_verbatim_start] = ACTIONS(1215), - [sym_interpolation_raw_start] = ACTIONS(1217), - [sym_raw_string_start] = ACTIONS(1219), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [sym_interpolation_raw_start] = ACTIONS(155), + [sym_raw_string_start] = ACTIONS(157), }, [1072] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2610), - [sym__name] = STATE(5879), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2197), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(4199), - [sym_non_lvalue_expression] = STATE(3277), - [sym_lvalue_expression] = STATE(3134), - [sym__expression_statement_expression] = STATE(3228), - [sym_assignment_expression] = STATE(3289), - [sym_binary_expression] = STATE(3228), - [sym_postfix_unary_expression] = STATE(3289), - [sym_prefix_unary_expression] = STATE(3289), - [sym__pointer_indirection_expression] = STATE(2609), - [sym_query_expression] = STATE(3228), - [sym_from_clause] = STATE(6162), - [sym_conditional_expression] = STATE(3228), - [sym_conditional_access_expression] = STATE(3228), - [sym_as_expression] = STATE(3228), - [sym_is_expression] = STATE(3228), - [sym_is_pattern_expression] = STATE(3228), - [sym_cast_expression] = STATE(3228), - [sym_checked_expression] = STATE(3228), - [sym_invocation_expression] = STATE(3289), - [sym_switch_expression] = STATE(3228), - [sym_await_expression] = STATE(3289), - [sym_throw_expression] = STATE(3228), - [sym_element_access_expression] = STATE(2609), - [sym_interpolated_string_expression] = STATE(3228), - [sym_member_access_expression] = STATE(2609), - [sym_object_creation_expression] = STATE(3289), - [sym_parenthesized_expression] = STATE(3289), - [sym__parenthesized_lvalue_expression] = STATE(2609), - [sym_lambda_expression] = STATE(3228), - [sym__lambda_expression_init] = STATE(7695), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3228), - [sym_anonymous_method_expression] = STATE(3228), - [sym_anonymous_object_creation_expression] = STATE(3228), - [sym_implicit_array_creation_expression] = STATE(3228), - [sym_implicit_object_creation_expression] = STATE(3228), - [sym_implicit_stackalloc_expression] = STATE(3228), - [sym_initializer_expression] = STATE(3228), - [sym_default_expression] = STATE(3228), - [sym_with_expression] = STATE(3228), - [sym_sizeof_expression] = STATE(3228), - [sym_typeof_expression] = STATE(3228), - [sym_makeref_expression] = STATE(3228), - [sym_ref_expression] = STATE(3228), - [sym_reftype_expression] = STATE(3228), - [sym_refvalue_expression] = STATE(3228), - [sym_stackalloc_expression] = STATE(3228), - [sym_range_expression] = STATE(3228), - [sym_tuple_expression] = STATE(2609), - [sym_literal] = STATE(3228), - [sym_character_literal] = STATE(3278), - [sym_string_literal] = STATE(3278), - [sym_raw_string_literal] = STATE(3278), - [sym_boolean_literal] = STATE(3278), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3228), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2416), + [sym__name] = STATE(5890), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2193), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(4096), + [sym_non_lvalue_expression] = STATE(3040), + [sym_lvalue_expression] = STATE(3109), + [sym__expression_statement_expression] = STATE(3035), + [sym_assignment_expression] = STATE(3043), + [sym_binary_expression] = STATE(3035), + [sym_postfix_unary_expression] = STATE(3043), + [sym_prefix_unary_expression] = STATE(3043), + [sym__pointer_indirection_expression] = STATE(2415), + [sym_query_expression] = STATE(3035), + [sym_from_clause] = STATE(6138), + [sym_conditional_expression] = STATE(3035), + [sym_conditional_access_expression] = STATE(3035), + [sym_as_expression] = STATE(3035), + [sym_is_expression] = STATE(3035), + [sym_is_pattern_expression] = STATE(3035), + [sym_cast_expression] = STATE(3035), + [sym_checked_expression] = STATE(3035), + [sym_invocation_expression] = STATE(3043), + [sym_switch_expression] = STATE(3035), + [sym_await_expression] = STATE(3043), + [sym_throw_expression] = STATE(3035), + [sym_element_access_expression] = STATE(2415), + [sym_interpolated_string_expression] = STATE(3035), + [sym_member_access_expression] = STATE(2415), + [sym_object_creation_expression] = STATE(3043), + [sym_parenthesized_expression] = STATE(3043), + [sym__parenthesized_lvalue_expression] = STATE(2415), + [sym_lambda_expression] = STATE(3035), + [sym__lambda_expression_init] = STATE(7374), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3035), + [sym_anonymous_method_expression] = STATE(3035), + [sym_anonymous_object_creation_expression] = STATE(3035), + [sym_implicit_array_creation_expression] = STATE(3035), + [sym_implicit_object_creation_expression] = STATE(3035), + [sym_implicit_stackalloc_expression] = STATE(3035), + [sym_initializer_expression] = STATE(3035), + [sym_default_expression] = STATE(3035), + [sym_with_expression] = STATE(3035), + [sym_sizeof_expression] = STATE(3035), + [sym_typeof_expression] = STATE(3035), + [sym_makeref_expression] = STATE(3035), + [sym_ref_expression] = STATE(3035), + [sym_reftype_expression] = STATE(3035), + [sym_refvalue_expression] = STATE(3035), + [sym_stackalloc_expression] = STATE(3035), + [sym_range_expression] = STATE(3035), + [sym_tuple_expression] = STATE(2415), + [sym_literal] = STATE(3035), + [sym_character_literal] = STATE(3037), + [sym_string_literal] = STATE(3037), + [sym_raw_string_literal] = STATE(3037), + [sym_boolean_literal] = STATE(3037), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3035), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(1072), [sym_preproc_endregion] = STATE(1072), [sym_preproc_line] = STATE(1072), @@ -223027,47 +222913,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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3396), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3455), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1153), - [anon_sym_LPAREN] = ACTIONS(1371), - [anon_sym_ref] = ACTIONS(1373), - [anon_sym_LBRACE] = ACTIONS(1159), - [anon_sym_delegate] = ACTIONS(1161), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1239), + [anon_sym_LPAREN] = ACTIONS(1241), + [anon_sym_ref] = ACTIONS(1243), + [anon_sym_LBRACE] = ACTIONS(1245), + [anon_sym_delegate] = ACTIONS(1247), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1163), + [anon_sym_new] = ACTIONS(1249), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1167), - [anon_sym_BANG] = ACTIONS(1377), - [anon_sym_TILDE] = ACTIONS(1377), - [anon_sym_PLUS_PLUS] = ACTIONS(1377), - [anon_sym_DASH_DASH] = ACTIONS(1377), - [anon_sym_true] = ACTIONS(1173), - [anon_sym_false] = ACTIONS(1173), - [anon_sym_PLUS] = ACTIONS(1375), - [anon_sym_DASH] = ACTIONS(1375), - [anon_sym_STAR] = ACTIONS(1379), - [anon_sym_CARET] = ACTIONS(1377), - [anon_sym_AMP] = ACTIONS(1377), - [anon_sym_this] = ACTIONS(1177), + [anon_sym_checked] = ACTIONS(1251), + [anon_sym_BANG] = ACTIONS(1255), + [anon_sym_TILDE] = ACTIONS(1255), + [anon_sym_PLUS_PLUS] = ACTIONS(1255), + [anon_sym_DASH_DASH] = ACTIONS(1255), + [anon_sym_true] = ACTIONS(1257), + [anon_sym_false] = ACTIONS(1257), + [anon_sym_PLUS] = ACTIONS(1253), + [anon_sym_DASH] = ACTIONS(1253), + [anon_sym_STAR] = ACTIONS(1259), + [anon_sym_CARET] = ACTIONS(1255), + [anon_sym_AMP] = ACTIONS(1255), + [anon_sym_this] = ACTIONS(1261), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1179), + [anon_sym_base] = ACTIONS(1263), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1181), - [anon_sym_unchecked] = ACTIONS(1167), + [sym_predefined_type] = ACTIONS(1265), + [anon_sym_unchecked] = ACTIONS(1251), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1183), - [anon_sym_throw] = ACTIONS(1381), + [anon_sym_default] = ACTIONS(1267), + [anon_sym_throw] = ACTIONS(1269), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1383), - [anon_sym_DOT_DOT] = ACTIONS(1385), + [anon_sym_await] = ACTIONS(1271), + [anon_sym_DOT_DOT] = ACTIONS(1273), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -223080,19 +222966,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1191), - [anon_sym_sizeof] = ACTIONS(1193), - [anon_sym_typeof] = ACTIONS(1195), - [anon_sym___makeref] = ACTIONS(1197), - [anon_sym___reftype] = ACTIONS(1199), - [anon_sym___refvalue] = ACTIONS(1201), - [sym_null_literal] = ACTIONS(1203), - [anon_sym_SQUOTE] = ACTIONS(1205), - [sym_integer_literal] = ACTIONS(1203), - [sym_real_literal] = ACTIONS(1207), - [anon_sym_DQUOTE] = ACTIONS(1209), - [sym_verbatim_string_literal] = ACTIONS(1207), - [aux_sym_preproc_if_token1] = ACTIONS(1211), + [anon_sym_stackalloc] = ACTIONS(1275), + [anon_sym_sizeof] = ACTIONS(1277), + [anon_sym_typeof] = ACTIONS(1279), + [anon_sym___makeref] = ACTIONS(1281), + [anon_sym___reftype] = ACTIONS(1283), + [anon_sym___refvalue] = ACTIONS(1285), + [sym_null_literal] = ACTIONS(1287), + [anon_sym_SQUOTE] = ACTIONS(1289), + [sym_integer_literal] = ACTIONS(1287), + [sym_real_literal] = ACTIONS(1291), + [anon_sym_DQUOTE] = ACTIONS(1293), + [sym_verbatim_string_literal] = ACTIONS(1291), + [aux_sym_preproc_if_token1] = ACTIONS(1295), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -223103,90 +222989,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1213), - [sym_interpolation_verbatim_start] = ACTIONS(1215), - [sym_interpolation_raw_start] = ACTIONS(1217), - [sym_raw_string_start] = ACTIONS(1219), + [sym_interpolation_regular_start] = ACTIONS(1297), + [sym_interpolation_verbatim_start] = ACTIONS(1299), + [sym_interpolation_raw_start] = ACTIONS(1301), + [sym_raw_string_start] = ACTIONS(1303), }, [1073] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(5910), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2247), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(5367), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3379), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3080), - [sym_postfix_unary_expression] = STATE(3111), - [sym_prefix_unary_expression] = STATE(3111), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6154), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3080), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3111), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3080), - [sym_member_access_expression] = STATE(2484), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3111), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7575), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(3080), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3080), - [sym_typeof_expression] = STATE(3080), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2484), - [sym_literal] = STATE(3080), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(5881), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2386), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(4244), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3132), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3102), + [sym_postfix_unary_expression] = STATE(3079), + [sym_prefix_unary_expression] = STATE(3079), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6158), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3102), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3079), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3102), + [sym_member_access_expression] = STATE(2472), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3079), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7650), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(3102), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3102), + [sym_typeof_expression] = STATE(3102), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2472), + [sym_literal] = STATE(3102), + [sym_character_literal] = STATE(3037), + [sym_string_literal] = STATE(3037), + [sym_raw_string_literal] = STATE(3037), + [sym_boolean_literal] = STATE(3037), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(1073), [sym_preproc_endregion] = STATE(1073), [sym_preproc_line] = STATE(1073), @@ -223196,47 +223082,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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1481), - [anon_sym_LPAREN] = ACTIONS(895), - [anon_sym_ref] = ACTIONS(897), - [anon_sym_LBRACE] = ACTIONS(1487), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1479), + [anon_sym_LPAREN] = ACTIONS(2185), + [anon_sym_ref] = ACTIONS(2187), + [anon_sym_LBRACE] = ACTIONS(1481), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1061), + [anon_sym_new] = ACTIONS(1899), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1067), - [anon_sym_BANG] = ACTIONS(1495), - [anon_sym_TILDE] = ACTIONS(1495), - [anon_sym_PLUS_PLUS] = ACTIONS(1495), - [anon_sym_DASH_DASH] = ACTIONS(1495), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1493), - [anon_sym_DASH] = ACTIONS(1493), - [anon_sym_STAR] = ACTIONS(905), - [anon_sym_CARET] = ACTIONS(1495), - [anon_sym_AMP] = ACTIONS(1495), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(2191), + [anon_sym_TILDE] = ACTIONS(2191), + [anon_sym_PLUS_PLUS] = ACTIONS(2191), + [anon_sym_DASH_DASH] = ACTIONS(2191), + [anon_sym_true] = ACTIONS(1257), + [anon_sym_false] = ACTIONS(1257), + [anon_sym_PLUS] = ACTIONS(2189), + [anon_sym_DASH] = ACTIONS(2189), + [anon_sym_STAR] = ACTIONS(1905), + [anon_sym_CARET] = ACTIONS(2191), + [anon_sym_AMP] = ACTIONS(2191), [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(1067), + [sym_predefined_type] = ACTIONS(1265), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1079), + [anon_sym_default] = ACTIONS(1267), + [anon_sym_throw] = ACTIONS(2193), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1081), - [anon_sym_DOT_DOT] = ACTIONS(911), + [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), @@ -223250,18 +223136,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(129), - [anon_sym_typeof] = ACTIONS(131), + [anon_sym_sizeof] = ACTIONS(1277), + [anon_sym_typeof] = ACTIONS(1279), [anon_sym___makeref] = ACTIONS(133), [anon_sym___reftype] = ACTIONS(135), [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1089), + [sym_null_literal] = ACTIONS(1287), + [anon_sym_SQUOTE] = ACTIONS(1289), + [sym_integer_literal] = ACTIONS(1287), + [sym_real_literal] = ACTIONS(1291), + [anon_sym_DQUOTE] = ACTIONS(1293), + [sym_verbatim_string_literal] = ACTIONS(1291), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -223272,90 +223158,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(151), - [sym_interpolation_verbatim_start] = ACTIONS(153), - [sym_interpolation_raw_start] = ACTIONS(155), - [sym_raw_string_start] = ACTIONS(157), + [sym_interpolation_regular_start] = ACTIONS(1297), + [sym_interpolation_verbatim_start] = ACTIONS(1299), + [sym_interpolation_raw_start] = ACTIONS(1301), + [sym_raw_string_start] = ACTIONS(1303), }, [1074] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(5890), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2375), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(3519), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3656), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3080), - [sym_postfix_unary_expression] = STATE(3111), - [sym_prefix_unary_expression] = STATE(3111), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6157), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3080), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3111), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3080), - [sym_member_access_expression] = STATE(2484), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3111), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7362), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(3080), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3080), - [sym_typeof_expression] = STATE(3080), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2484), - [sym_literal] = STATE(3080), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(5881), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2386), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(4095), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3132), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3102), + [sym_postfix_unary_expression] = STATE(3079), + [sym_prefix_unary_expression] = STATE(3079), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6158), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3102), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3079), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3102), + [sym_member_access_expression] = STATE(2472), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3079), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7650), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(3102), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3102), + [sym_typeof_expression] = STATE(3102), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2472), + [sym_literal] = STATE(3102), + [sym_character_literal] = STATE(3037), + [sym_string_literal] = STATE(3037), + [sym_raw_string_literal] = STATE(3037), + [sym_boolean_literal] = STATE(3037), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(1074), [sym_preproc_endregion] = STATE(1074), [sym_preproc_line] = STATE(1074), @@ -223365,47 +223251,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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1481), - [anon_sym_LPAREN] = ACTIONS(2177), - [anon_sym_ref] = ACTIONS(2179), - [anon_sym_LBRACE] = ACTIONS(1487), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1479), + [anon_sym_LPAREN] = ACTIONS(2185), + [anon_sym_ref] = ACTIONS(2187), + [anon_sym_LBRACE] = ACTIONS(1481), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(2181), + [anon_sym_new] = ACTIONS(1899), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1067), - [anon_sym_BANG] = ACTIONS(2185), - [anon_sym_TILDE] = ACTIONS(2185), - [anon_sym_PLUS_PLUS] = ACTIONS(2185), - [anon_sym_DASH_DASH] = ACTIONS(2185), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(2183), - [anon_sym_DASH] = ACTIONS(2183), - [anon_sym_STAR] = ACTIONS(2187), - [anon_sym_CARET] = ACTIONS(2185), - [anon_sym_AMP] = ACTIONS(2185), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(2191), + [anon_sym_TILDE] = ACTIONS(2191), + [anon_sym_PLUS_PLUS] = ACTIONS(2191), + [anon_sym_DASH_DASH] = ACTIONS(2191), + [anon_sym_true] = ACTIONS(1257), + [anon_sym_false] = ACTIONS(1257), + [anon_sym_PLUS] = ACTIONS(2189), + [anon_sym_DASH] = ACTIONS(2189), + [anon_sym_STAR] = ACTIONS(1905), + [anon_sym_CARET] = ACTIONS(2191), + [anon_sym_AMP] = ACTIONS(2191), [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(1067), + [sym_predefined_type] = ACTIONS(1265), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(2189), + [anon_sym_default] = ACTIONS(1267), + [anon_sym_throw] = ACTIONS(2193), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2191), - [anon_sym_DOT_DOT] = ACTIONS(2193), + [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), @@ -223419,18 +223305,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(129), - [anon_sym_typeof] = ACTIONS(131), + [anon_sym_sizeof] = ACTIONS(1277), + [anon_sym_typeof] = ACTIONS(1279), [anon_sym___makeref] = ACTIONS(133), [anon_sym___reftype] = ACTIONS(135), [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1089), + [sym_null_literal] = ACTIONS(1287), + [anon_sym_SQUOTE] = ACTIONS(1289), + [sym_integer_literal] = ACTIONS(1287), + [sym_real_literal] = ACTIONS(1291), + [anon_sym_DQUOTE] = ACTIONS(1293), + [sym_verbatim_string_literal] = ACTIONS(1291), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -223441,90 +223327,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(151), - [sym_interpolation_verbatim_start] = ACTIONS(153), - [sym_interpolation_raw_start] = ACTIONS(155), - [sym_raw_string_start] = ACTIONS(157), + [sym_interpolation_regular_start] = ACTIONS(1297), + [sym_interpolation_verbatim_start] = ACTIONS(1299), + [sym_interpolation_raw_start] = ACTIONS(1301), + [sym_raw_string_start] = ACTIONS(1303), }, [1075] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2610), - [sym__name] = STATE(5879), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2197), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(4200), - [sym_non_lvalue_expression] = STATE(3277), - [sym_lvalue_expression] = STATE(3134), - [sym__expression_statement_expression] = STATE(3228), - [sym_assignment_expression] = STATE(3289), - [sym_binary_expression] = STATE(3228), - [sym_postfix_unary_expression] = STATE(3289), - [sym_prefix_unary_expression] = STATE(3289), - [sym__pointer_indirection_expression] = STATE(2609), - [sym_query_expression] = STATE(3228), - [sym_from_clause] = STATE(6162), - [sym_conditional_expression] = STATE(3228), - [sym_conditional_access_expression] = STATE(3228), - [sym_as_expression] = STATE(3228), - [sym_is_expression] = STATE(3228), - [sym_is_pattern_expression] = STATE(3228), - [sym_cast_expression] = STATE(3228), - [sym_checked_expression] = STATE(3228), - [sym_invocation_expression] = STATE(3289), - [sym_switch_expression] = STATE(3228), - [sym_await_expression] = STATE(3289), - [sym_throw_expression] = STATE(3228), - [sym_element_access_expression] = STATE(2609), - [sym_interpolated_string_expression] = STATE(3228), - [sym_member_access_expression] = STATE(2609), - [sym_object_creation_expression] = STATE(3289), - [sym_parenthesized_expression] = STATE(3289), - [sym__parenthesized_lvalue_expression] = STATE(2609), - [sym_lambda_expression] = STATE(3228), - [sym__lambda_expression_init] = STATE(7695), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3228), - [sym_anonymous_method_expression] = STATE(3228), - [sym_anonymous_object_creation_expression] = STATE(3228), - [sym_implicit_array_creation_expression] = STATE(3228), - [sym_implicit_object_creation_expression] = STATE(3228), - [sym_implicit_stackalloc_expression] = STATE(3228), - [sym_initializer_expression] = STATE(3228), - [sym_default_expression] = STATE(3228), - [sym_with_expression] = STATE(3228), - [sym_sizeof_expression] = STATE(3228), - [sym_typeof_expression] = STATE(3228), - [sym_makeref_expression] = STATE(3228), - [sym_ref_expression] = STATE(3228), - [sym_reftype_expression] = STATE(3228), - [sym_refvalue_expression] = STATE(3228), - [sym_stackalloc_expression] = STATE(3228), - [sym_range_expression] = STATE(3228), - [sym_tuple_expression] = STATE(2609), - [sym_literal] = STATE(3228), - [sym_character_literal] = STATE(3278), - [sym_string_literal] = STATE(3278), - [sym_raw_string_literal] = STATE(3278), - [sym_boolean_literal] = STATE(3278), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3228), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(5873), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2238), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(4959), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3526), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3102), + [sym_postfix_unary_expression] = STATE(3079), + [sym_prefix_unary_expression] = STATE(3079), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6134), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3102), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3079), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3102), + [sym_member_access_expression] = STATE(2472), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3079), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7455), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(3102), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3102), + [sym_typeof_expression] = STATE(3102), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2472), + [sym_literal] = STATE(3102), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(1075), [sym_preproc_endregion] = STATE(1075), [sym_preproc_line] = STATE(1075), @@ -223534,47 +223420,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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3396), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1153), - [anon_sym_LPAREN] = ACTIONS(1371), - [anon_sym_ref] = ACTIONS(1373), - [anon_sym_LBRACE] = ACTIONS(1159), - [anon_sym_delegate] = ACTIONS(1161), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1479), + [anon_sym_LPAREN] = ACTIONS(1629), + [anon_sym_ref] = ACTIONS(1631), + [anon_sym_LBRACE] = ACTIONS(1481), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1163), + [anon_sym_new] = ACTIONS(1515), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1167), - [anon_sym_BANG] = ACTIONS(1377), - [anon_sym_TILDE] = ACTIONS(1377), - [anon_sym_PLUS_PLUS] = ACTIONS(1377), - [anon_sym_DASH_DASH] = ACTIONS(1377), - [anon_sym_true] = ACTIONS(1173), - [anon_sym_false] = ACTIONS(1173), - [anon_sym_PLUS] = ACTIONS(1375), - [anon_sym_DASH] = ACTIONS(1375), - [anon_sym_STAR] = ACTIONS(1379), - [anon_sym_CARET] = ACTIONS(1377), - [anon_sym_AMP] = ACTIONS(1377), - [anon_sym_this] = ACTIONS(1177), + [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_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1179), + [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1181), - [anon_sym_unchecked] = ACTIONS(1167), + [sym_predefined_type] = ACTIONS(91), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1183), - [anon_sym_throw] = ACTIONS(1381), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(1633), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1383), - [anon_sym_DOT_DOT] = ACTIONS(1385), + [anon_sym_await] = ACTIONS(1635), + [anon_sym_DOT_DOT] = ACTIONS(1637), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -223587,19 +223473,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1191), - [anon_sym_sizeof] = ACTIONS(1193), - [anon_sym_typeof] = ACTIONS(1195), - [anon_sym___makeref] = ACTIONS(1197), - [anon_sym___reftype] = ACTIONS(1199), - [anon_sym___refvalue] = ACTIONS(1201), - [sym_null_literal] = ACTIONS(1203), - [anon_sym_SQUOTE] = ACTIONS(1205), - [sym_integer_literal] = ACTIONS(1203), - [sym_real_literal] = ACTIONS(1207), - [anon_sym_DQUOTE] = ACTIONS(1209), - [sym_verbatim_string_literal] = ACTIONS(1207), - [aux_sym_preproc_if_token1] = ACTIONS(1211), + [anon_sym_stackalloc] = ACTIONS(127), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_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), @@ -223610,90 +223496,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1213), - [sym_interpolation_verbatim_start] = ACTIONS(1215), - [sym_interpolation_raw_start] = ACTIONS(1217), - [sym_raw_string_start] = ACTIONS(1219), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [sym_interpolation_raw_start] = ACTIONS(155), + [sym_raw_string_start] = ACTIONS(157), }, [1076] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2914), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2459), [sym__name] = STATE(5873), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2362), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(3918), - [sym_non_lvalue_expression] = STATE(3880), - [sym_lvalue_expression] = STATE(3092), - [sym__expression_statement_expression] = STATE(3873), - [sym_assignment_expression] = STATE(3881), - [sym_binary_expression] = STATE(3873), - [sym_postfix_unary_expression] = STATE(3881), - [sym_prefix_unary_expression] = STATE(3881), - [sym__pointer_indirection_expression] = STATE(2913), - [sym_query_expression] = STATE(3873), - [sym_from_clause] = STATE(6168), - [sym_conditional_expression] = STATE(3873), - [sym_conditional_access_expression] = STATE(3873), - [sym_as_expression] = STATE(3873), - [sym_is_expression] = STATE(3873), - [sym_is_pattern_expression] = STATE(3873), - [sym_cast_expression] = STATE(3873), - [sym_checked_expression] = STATE(3873), - [sym_invocation_expression] = STATE(3881), - [sym_switch_expression] = STATE(3873), - [sym_await_expression] = STATE(3881), - [sym_throw_expression] = STATE(3873), - [sym_element_access_expression] = STATE(2913), - [sym_interpolated_string_expression] = STATE(3873), - [sym_member_access_expression] = STATE(2913), - [sym_object_creation_expression] = STATE(3881), - [sym_parenthesized_expression] = STATE(3881), - [sym__parenthesized_lvalue_expression] = STATE(2913), - [sym_lambda_expression] = STATE(3873), - [sym__lambda_expression_init] = STATE(7533), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3873), - [sym_anonymous_method_expression] = STATE(3873), - [sym_anonymous_object_creation_expression] = STATE(3873), - [sym_implicit_array_creation_expression] = STATE(3873), - [sym_implicit_object_creation_expression] = STATE(3873), - [sym_implicit_stackalloc_expression] = STATE(3873), - [sym_initializer_expression] = STATE(3873), - [sym_default_expression] = STATE(3873), - [sym_with_expression] = STATE(3873), - [sym_sizeof_expression] = STATE(3873), - [sym_typeof_expression] = STATE(3873), - [sym_makeref_expression] = STATE(3873), - [sym_ref_expression] = STATE(3873), - [sym_reftype_expression] = STATE(3873), - [sym_refvalue_expression] = STATE(3873), - [sym_stackalloc_expression] = STATE(3873), - [sym_range_expression] = STATE(3873), - [sym_tuple_expression] = STATE(2913), - [sym_literal] = STATE(3873), - [sym_character_literal] = STATE(3877), - [sym_string_literal] = STATE(3877), - [sym_raw_string_literal] = STATE(3877), - [sym_boolean_literal] = STATE(3877), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3873), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2238), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(4960), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3526), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3102), + [sym_postfix_unary_expression] = STATE(3079), + [sym_prefix_unary_expression] = STATE(3079), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6134), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3102), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3079), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3102), + [sym_member_access_expression] = STATE(2472), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3079), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7455), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(3102), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3102), + [sym_typeof_expression] = STATE(3102), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2472), + [sym_literal] = STATE(3102), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(1076), [sym_preproc_endregion] = STATE(1076), [sym_preproc_line] = STATE(1076), @@ -223703,47 +223589,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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3382), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1627), - [anon_sym_LPAREN] = ACTIONS(1961), - [anon_sym_ref] = ACTIONS(1963), - [anon_sym_LBRACE] = ACTIONS(1633), - [anon_sym_delegate] = ACTIONS(1635), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1479), + [anon_sym_LPAREN] = ACTIONS(1629), + [anon_sym_ref] = ACTIONS(1631), + [anon_sym_LBRACE] = ACTIONS(1481), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1637), + [anon_sym_new] = ACTIONS(1515), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1639), - [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(1645), - [anon_sym_false] = ACTIONS(1645), - [anon_sym_PLUS] = ACTIONS(1965), - [anon_sym_DASH] = ACTIONS(1965), - [anon_sym_STAR] = ACTIONS(1647), - [anon_sym_CARET] = ACTIONS(1967), - [anon_sym_AMP] = ACTIONS(1967), - [anon_sym_this] = ACTIONS(1649), + [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_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1651), + [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1653), - [anon_sym_unchecked] = ACTIONS(1639), + [sym_predefined_type] = ACTIONS(91), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1655), - [anon_sym_throw] = ACTIONS(1969), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(1633), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1971), - [anon_sym_DOT_DOT] = ACTIONS(1973), + [anon_sym_await] = ACTIONS(1635), + [anon_sym_DOT_DOT] = ACTIONS(1637), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -223756,19 +223642,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1663), - [anon_sym_sizeof] = ACTIONS(1665), - [anon_sym_typeof] = ACTIONS(1667), - [anon_sym___makeref] = ACTIONS(1669), - [anon_sym___reftype] = ACTIONS(1671), - [anon_sym___refvalue] = ACTIONS(1673), - [sym_null_literal] = ACTIONS(1675), - [anon_sym_SQUOTE] = ACTIONS(1677), - [sym_integer_literal] = ACTIONS(1675), - [sym_real_literal] = ACTIONS(1679), - [anon_sym_DQUOTE] = ACTIONS(1681), - [sym_verbatim_string_literal] = ACTIONS(1679), - [aux_sym_preproc_if_token1] = ACTIONS(1683), + [anon_sym_stackalloc] = ACTIONS(127), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_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), @@ -223779,90 +223665,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1685), - [sym_interpolation_verbatim_start] = ACTIONS(1687), - [sym_interpolation_raw_start] = ACTIONS(1689), - [sym_raw_string_start] = ACTIONS(1691), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [sym_interpolation_raw_start] = ACTIONS(155), + [sym_raw_string_start] = ACTIONS(157), }, [1077] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2914), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2459), [sym__name] = STATE(5873), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2362), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(3919), - [sym_non_lvalue_expression] = STATE(3880), - [sym_lvalue_expression] = STATE(3092), - [sym__expression_statement_expression] = STATE(3873), - [sym_assignment_expression] = STATE(3881), - [sym_binary_expression] = STATE(3873), - [sym_postfix_unary_expression] = STATE(3881), - [sym_prefix_unary_expression] = STATE(3881), - [sym__pointer_indirection_expression] = STATE(2913), - [sym_query_expression] = STATE(3873), - [sym_from_clause] = STATE(6168), - [sym_conditional_expression] = STATE(3873), - [sym_conditional_access_expression] = STATE(3873), - [sym_as_expression] = STATE(3873), - [sym_is_expression] = STATE(3873), - [sym_is_pattern_expression] = STATE(3873), - [sym_cast_expression] = STATE(3873), - [sym_checked_expression] = STATE(3873), - [sym_invocation_expression] = STATE(3881), - [sym_switch_expression] = STATE(3873), - [sym_await_expression] = STATE(3881), - [sym_throw_expression] = STATE(3873), - [sym_element_access_expression] = STATE(2913), - [sym_interpolated_string_expression] = STATE(3873), - [sym_member_access_expression] = STATE(2913), - [sym_object_creation_expression] = STATE(3881), - [sym_parenthesized_expression] = STATE(3881), - [sym__parenthesized_lvalue_expression] = STATE(2913), - [sym_lambda_expression] = STATE(3873), - [sym__lambda_expression_init] = STATE(7533), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3873), - [sym_anonymous_method_expression] = STATE(3873), - [sym_anonymous_object_creation_expression] = STATE(3873), - [sym_implicit_array_creation_expression] = STATE(3873), - [sym_implicit_object_creation_expression] = STATE(3873), - [sym_implicit_stackalloc_expression] = STATE(3873), - [sym_initializer_expression] = STATE(3873), - [sym_default_expression] = STATE(3873), - [sym_with_expression] = STATE(3873), - [sym_sizeof_expression] = STATE(3873), - [sym_typeof_expression] = STATE(3873), - [sym_makeref_expression] = STATE(3873), - [sym_ref_expression] = STATE(3873), - [sym_reftype_expression] = STATE(3873), - [sym_refvalue_expression] = STATE(3873), - [sym_stackalloc_expression] = STATE(3873), - [sym_range_expression] = STATE(3873), - [sym_tuple_expression] = STATE(2913), - [sym_literal] = STATE(3873), - [sym_character_literal] = STATE(3877), - [sym_string_literal] = STATE(3877), - [sym_raw_string_literal] = STATE(3877), - [sym_boolean_literal] = STATE(3877), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3873), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2238), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(4961), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3526), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3102), + [sym_postfix_unary_expression] = STATE(3079), + [sym_prefix_unary_expression] = STATE(3079), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6134), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3102), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3079), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3102), + [sym_member_access_expression] = STATE(2472), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3079), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7455), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(3102), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3102), + [sym_typeof_expression] = STATE(3102), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2472), + [sym_literal] = STATE(3102), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(1077), [sym_preproc_endregion] = STATE(1077), [sym_preproc_line] = STATE(1077), @@ -223872,47 +223758,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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3382), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1627), - [anon_sym_LPAREN] = ACTIONS(1961), - [anon_sym_ref] = ACTIONS(1963), - [anon_sym_LBRACE] = ACTIONS(1633), - [anon_sym_delegate] = ACTIONS(1635), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1479), + [anon_sym_LPAREN] = ACTIONS(1629), + [anon_sym_ref] = ACTIONS(1631), + [anon_sym_LBRACE] = ACTIONS(1481), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1637), + [anon_sym_new] = ACTIONS(1515), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1639), - [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(1645), - [anon_sym_false] = ACTIONS(1645), - [anon_sym_PLUS] = ACTIONS(1965), - [anon_sym_DASH] = ACTIONS(1965), - [anon_sym_STAR] = ACTIONS(1647), - [anon_sym_CARET] = ACTIONS(1967), - [anon_sym_AMP] = ACTIONS(1967), - [anon_sym_this] = ACTIONS(1649), + [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_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1651), + [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1653), - [anon_sym_unchecked] = ACTIONS(1639), + [sym_predefined_type] = ACTIONS(91), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1655), - [anon_sym_throw] = ACTIONS(1969), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(1633), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1971), - [anon_sym_DOT_DOT] = ACTIONS(1973), + [anon_sym_await] = ACTIONS(1635), + [anon_sym_DOT_DOT] = ACTIONS(1637), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -223925,19 +223811,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1663), - [anon_sym_sizeof] = ACTIONS(1665), - [anon_sym_typeof] = ACTIONS(1667), - [anon_sym___makeref] = ACTIONS(1669), - [anon_sym___reftype] = ACTIONS(1671), - [anon_sym___refvalue] = ACTIONS(1673), - [sym_null_literal] = ACTIONS(1675), - [anon_sym_SQUOTE] = ACTIONS(1677), - [sym_integer_literal] = ACTIONS(1675), - [sym_real_literal] = ACTIONS(1679), - [anon_sym_DQUOTE] = ACTIONS(1681), - [sym_verbatim_string_literal] = ACTIONS(1679), - [aux_sym_preproc_if_token1] = ACTIONS(1683), + [anon_sym_stackalloc] = ACTIONS(127), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_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), @@ -223948,90 +223834,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1685), - [sym_interpolation_verbatim_start] = ACTIONS(1687), - [sym_interpolation_raw_start] = ACTIONS(1689), - [sym_raw_string_start] = ACTIONS(1691), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [sym_interpolation_raw_start] = ACTIONS(155), + [sym_raw_string_start] = ACTIONS(157), }, [1078] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2762), - [sym__name] = STATE(5890), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2375), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(4983), - [sym_non_lvalue_expression] = STATE(3438), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(5873), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2238), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(4962), + [sym_non_lvalue_expression] = STATE(3072), [sym_lvalue_expression] = STATE(3526), - [sym__expression_statement_expression] = STATE(3362), - [sym_assignment_expression] = STATE(3449), - [sym_binary_expression] = STATE(3362), - [sym_postfix_unary_expression] = STATE(3449), - [sym_prefix_unary_expression] = STATE(3449), - [sym__pointer_indirection_expression] = STATE(2747), - [sym_query_expression] = STATE(3362), - [sym_from_clause] = STATE(6163), - [sym_conditional_expression] = STATE(3362), - [sym_conditional_access_expression] = STATE(3362), - [sym_as_expression] = STATE(3362), - [sym_is_expression] = STATE(3362), - [sym_is_pattern_expression] = STATE(3362), - [sym_cast_expression] = STATE(3362), - [sym_checked_expression] = STATE(3362), - [sym_invocation_expression] = STATE(3449), - [sym_switch_expression] = STATE(3362), - [sym_await_expression] = STATE(3449), - [sym_throw_expression] = STATE(3362), - [sym_element_access_expression] = STATE(2747), - [sym_interpolated_string_expression] = STATE(3362), - [sym_member_access_expression] = STATE(2747), - [sym_object_creation_expression] = STATE(3449), - [sym_parenthesized_expression] = STATE(3449), - [sym__parenthesized_lvalue_expression] = STATE(2747), - [sym_lambda_expression] = STATE(3362), - [sym__lambda_expression_init] = STATE(7529), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3362), - [sym_anonymous_method_expression] = STATE(3362), - [sym_anonymous_object_creation_expression] = STATE(3362), - [sym_implicit_array_creation_expression] = STATE(3362), - [sym_implicit_object_creation_expression] = STATE(3362), - [sym_implicit_stackalloc_expression] = STATE(3362), - [sym_initializer_expression] = STATE(3362), - [sym_default_expression] = STATE(3362), - [sym_with_expression] = STATE(3362), - [sym_sizeof_expression] = STATE(3362), - [sym_typeof_expression] = STATE(3362), - [sym_makeref_expression] = STATE(3362), - [sym_ref_expression] = STATE(3362), - [sym_reftype_expression] = STATE(3362), - [sym_refvalue_expression] = STATE(3362), - [sym_stackalloc_expression] = STATE(3362), - [sym_range_expression] = STATE(3362), - [sym_tuple_expression] = STATE(2747), - [sym_literal] = STATE(3362), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3362), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3102), + [sym_postfix_unary_expression] = STATE(3079), + [sym_prefix_unary_expression] = STATE(3079), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6134), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3102), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3079), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3102), + [sym_member_access_expression] = STATE(2472), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3079), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7455), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(3102), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3102), + [sym_typeof_expression] = STATE(3102), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2472), + [sym_literal] = STATE(3102), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(1078), [sym_preproc_endregion] = STATE(1078), [sym_preproc_line] = STATE(1078), @@ -224041,47 +223927,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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3385), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1307), - [anon_sym_LPAREN] = ACTIONS(1805), - [anon_sym_ref] = ACTIONS(1807), - [anon_sym_LBRACE] = ACTIONS(1313), - [anon_sym_delegate] = ACTIONS(1315), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1479), + [anon_sym_LPAREN] = ACTIONS(1629), + [anon_sym_ref] = ACTIONS(1631), + [anon_sym_LBRACE] = ACTIONS(1481), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1809), + [anon_sym_new] = ACTIONS(1515), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1319), - [anon_sym_BANG] = ACTIONS(1813), - [anon_sym_TILDE] = ACTIONS(1813), - [anon_sym_PLUS_PLUS] = ACTIONS(1813), - [anon_sym_DASH_DASH] = ACTIONS(1813), + [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(1811), - [anon_sym_DASH] = ACTIONS(1811), - [anon_sym_STAR] = ACTIONS(1815), - [anon_sym_CARET] = ACTIONS(1813), - [anon_sym_AMP] = ACTIONS(1813), - [anon_sym_this] = ACTIONS(1323), + [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_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1325), + [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1319), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1817), + [anon_sym_throw] = ACTIONS(1633), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1819), - [anon_sym_DOT_DOT] = ACTIONS(1821), + [anon_sym_await] = ACTIONS(1635), + [anon_sym_DOT_DOT] = ACTIONS(1637), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -224094,19 +223980,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1333), + [anon_sym_stackalloc] = ACTIONS(127), [anon_sym_sizeof] = ACTIONS(129), [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(1335), - [anon_sym___reftype] = ACTIONS(1337), - [anon_sym___refvalue] = ACTIONS(1339), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), [sym_null_literal] = ACTIONS(139), [anon_sym_SQUOTE] = ACTIONS(141), [sym_integer_literal] = ACTIONS(139), [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1341), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -224123,84 +224009,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [1079] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2914), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2459), [sym__name] = STATE(5873), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2362), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(3920), - [sym_non_lvalue_expression] = STATE(3880), - [sym_lvalue_expression] = STATE(3092), - [sym__expression_statement_expression] = STATE(3873), - [sym_assignment_expression] = STATE(3881), - [sym_binary_expression] = STATE(3873), - [sym_postfix_unary_expression] = STATE(3881), - [sym_prefix_unary_expression] = STATE(3881), - [sym__pointer_indirection_expression] = STATE(2913), - [sym_query_expression] = STATE(3873), - [sym_from_clause] = STATE(6168), - [sym_conditional_expression] = STATE(3873), - [sym_conditional_access_expression] = STATE(3873), - [sym_as_expression] = STATE(3873), - [sym_is_expression] = STATE(3873), - [sym_is_pattern_expression] = STATE(3873), - [sym_cast_expression] = STATE(3873), - [sym_checked_expression] = STATE(3873), - [sym_invocation_expression] = STATE(3881), - [sym_switch_expression] = STATE(3873), - [sym_await_expression] = STATE(3881), - [sym_throw_expression] = STATE(3873), - [sym_element_access_expression] = STATE(2913), - [sym_interpolated_string_expression] = STATE(3873), - [sym_member_access_expression] = STATE(2913), - [sym_object_creation_expression] = STATE(3881), - [sym_parenthesized_expression] = STATE(3881), - [sym__parenthesized_lvalue_expression] = STATE(2913), - [sym_lambda_expression] = STATE(3873), - [sym__lambda_expression_init] = STATE(7533), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3873), - [sym_anonymous_method_expression] = STATE(3873), - [sym_anonymous_object_creation_expression] = STATE(3873), - [sym_implicit_array_creation_expression] = STATE(3873), - [sym_implicit_object_creation_expression] = STATE(3873), - [sym_implicit_stackalloc_expression] = STATE(3873), - [sym_initializer_expression] = STATE(3873), - [sym_default_expression] = STATE(3873), - [sym_with_expression] = STATE(3873), - [sym_sizeof_expression] = STATE(3873), - [sym_typeof_expression] = STATE(3873), - [sym_makeref_expression] = STATE(3873), - [sym_ref_expression] = STATE(3873), - [sym_reftype_expression] = STATE(3873), - [sym_refvalue_expression] = STATE(3873), - [sym_stackalloc_expression] = STATE(3873), - [sym_range_expression] = STATE(3873), - [sym_tuple_expression] = STATE(2913), - [sym_literal] = STATE(3873), - [sym_character_literal] = STATE(3877), - [sym_string_literal] = STATE(3877), - [sym_raw_string_literal] = STATE(3877), - [sym_boolean_literal] = STATE(3877), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3873), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2238), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(4963), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3526), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3102), + [sym_postfix_unary_expression] = STATE(3079), + [sym_prefix_unary_expression] = STATE(3079), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6134), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3102), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3079), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3102), + [sym_member_access_expression] = STATE(2472), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3079), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7455), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(3102), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3102), + [sym_typeof_expression] = STATE(3102), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2472), + [sym_literal] = STATE(3102), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(1079), [sym_preproc_endregion] = STATE(1079), [sym_preproc_line] = STATE(1079), @@ -224210,47 +224096,47 @@ 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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3382), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1627), - [anon_sym_LPAREN] = ACTIONS(1961), - [anon_sym_ref] = ACTIONS(1963), - [anon_sym_LBRACE] = ACTIONS(1633), - [anon_sym_delegate] = ACTIONS(1635), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1479), + [anon_sym_LPAREN] = ACTIONS(1629), + [anon_sym_ref] = ACTIONS(1631), + [anon_sym_LBRACE] = ACTIONS(1481), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1637), + [anon_sym_new] = ACTIONS(1515), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1639), - [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(1645), - [anon_sym_false] = ACTIONS(1645), - [anon_sym_PLUS] = ACTIONS(1965), - [anon_sym_DASH] = ACTIONS(1965), - [anon_sym_STAR] = ACTIONS(1647), - [anon_sym_CARET] = ACTIONS(1967), - [anon_sym_AMP] = ACTIONS(1967), - [anon_sym_this] = ACTIONS(1649), + [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_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1651), + [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1653), - [anon_sym_unchecked] = ACTIONS(1639), + [sym_predefined_type] = ACTIONS(91), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1655), - [anon_sym_throw] = ACTIONS(1969), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(1633), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1971), - [anon_sym_DOT_DOT] = ACTIONS(1973), + [anon_sym_await] = ACTIONS(1635), + [anon_sym_DOT_DOT] = ACTIONS(1637), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -224263,19 +224149,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1663), - [anon_sym_sizeof] = ACTIONS(1665), - [anon_sym_typeof] = ACTIONS(1667), - [anon_sym___makeref] = ACTIONS(1669), - [anon_sym___reftype] = ACTIONS(1671), - [anon_sym___refvalue] = ACTIONS(1673), - [sym_null_literal] = ACTIONS(1675), - [anon_sym_SQUOTE] = ACTIONS(1677), - [sym_integer_literal] = ACTIONS(1675), - [sym_real_literal] = ACTIONS(1679), - [anon_sym_DQUOTE] = ACTIONS(1681), - [sym_verbatim_string_literal] = ACTIONS(1679), - [aux_sym_preproc_if_token1] = ACTIONS(1683), + [anon_sym_stackalloc] = ACTIONS(127), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_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), @@ -224286,90 +224172,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1685), - [sym_interpolation_verbatim_start] = ACTIONS(1687), - [sym_interpolation_raw_start] = ACTIONS(1689), - [sym_raw_string_start] = ACTIONS(1691), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [sym_interpolation_raw_start] = ACTIONS(155), + [sym_raw_string_start] = ACTIONS(157), }, [1080] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2610), - [sym__name] = STATE(5879), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2197), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(4201), - [sym_non_lvalue_expression] = STATE(3277), - [sym_lvalue_expression] = STATE(3134), - [sym__expression_statement_expression] = STATE(3228), - [sym_assignment_expression] = STATE(3289), - [sym_binary_expression] = STATE(3228), - [sym_postfix_unary_expression] = STATE(3289), - [sym_prefix_unary_expression] = STATE(3289), - [sym__pointer_indirection_expression] = STATE(2609), - [sym_query_expression] = STATE(3228), - [sym_from_clause] = STATE(6162), - [sym_conditional_expression] = STATE(3228), - [sym_conditional_access_expression] = STATE(3228), - [sym_as_expression] = STATE(3228), - [sym_is_expression] = STATE(3228), - [sym_is_pattern_expression] = STATE(3228), - [sym_cast_expression] = STATE(3228), - [sym_checked_expression] = STATE(3228), - [sym_invocation_expression] = STATE(3289), - [sym_switch_expression] = STATE(3228), - [sym_await_expression] = STATE(3289), - [sym_throw_expression] = STATE(3228), - [sym_element_access_expression] = STATE(2609), - [sym_interpolated_string_expression] = STATE(3228), - [sym_member_access_expression] = STATE(2609), - [sym_object_creation_expression] = STATE(3289), - [sym_parenthesized_expression] = STATE(3289), - [sym__parenthesized_lvalue_expression] = STATE(2609), - [sym_lambda_expression] = STATE(3228), - [sym__lambda_expression_init] = STATE(7695), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3228), - [sym_anonymous_method_expression] = STATE(3228), - [sym_anonymous_object_creation_expression] = STATE(3228), - [sym_implicit_array_creation_expression] = STATE(3228), - [sym_implicit_object_creation_expression] = STATE(3228), - [sym_implicit_stackalloc_expression] = STATE(3228), - [sym_initializer_expression] = STATE(3228), - [sym_default_expression] = STATE(3228), - [sym_with_expression] = STATE(3228), - [sym_sizeof_expression] = STATE(3228), - [sym_typeof_expression] = STATE(3228), - [sym_makeref_expression] = STATE(3228), - [sym_ref_expression] = STATE(3228), - [sym_reftype_expression] = STATE(3228), - [sym_refvalue_expression] = STATE(3228), - [sym_stackalloc_expression] = STATE(3228), - [sym_range_expression] = STATE(3228), - [sym_tuple_expression] = STATE(2609), - [sym_literal] = STATE(3228), - [sym_character_literal] = STATE(3278), - [sym_string_literal] = STATE(3278), - [sym_raw_string_literal] = STATE(3278), - [sym_boolean_literal] = STATE(3278), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3228), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(5873), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2238), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(5003), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3526), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3102), + [sym_postfix_unary_expression] = STATE(3079), + [sym_prefix_unary_expression] = STATE(3079), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6134), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3102), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3079), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3102), + [sym_member_access_expression] = STATE(2472), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3079), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7455), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(3102), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3102), + [sym_typeof_expression] = STATE(3102), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2472), + [sym_literal] = STATE(3102), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(1080), [sym_preproc_endregion] = STATE(1080), [sym_preproc_line] = STATE(1080), @@ -224379,47 +224265,47 @@ 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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3396), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1153), - [anon_sym_LPAREN] = ACTIONS(1371), - [anon_sym_ref] = ACTIONS(1373), - [anon_sym_LBRACE] = ACTIONS(1159), - [anon_sym_delegate] = ACTIONS(1161), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1479), + [anon_sym_LPAREN] = ACTIONS(1629), + [anon_sym_ref] = ACTIONS(1631), + [anon_sym_LBRACE] = ACTIONS(1481), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1163), + [anon_sym_new] = ACTIONS(1515), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1167), - [anon_sym_BANG] = ACTIONS(1377), - [anon_sym_TILDE] = ACTIONS(1377), - [anon_sym_PLUS_PLUS] = ACTIONS(1377), - [anon_sym_DASH_DASH] = ACTIONS(1377), - [anon_sym_true] = ACTIONS(1173), - [anon_sym_false] = ACTIONS(1173), - [anon_sym_PLUS] = ACTIONS(1375), - [anon_sym_DASH] = ACTIONS(1375), - [anon_sym_STAR] = ACTIONS(1379), - [anon_sym_CARET] = ACTIONS(1377), - [anon_sym_AMP] = ACTIONS(1377), - [anon_sym_this] = ACTIONS(1177), + [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_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1179), + [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1181), - [anon_sym_unchecked] = ACTIONS(1167), + [sym_predefined_type] = ACTIONS(91), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1183), - [anon_sym_throw] = ACTIONS(1381), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(1633), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1383), - [anon_sym_DOT_DOT] = ACTIONS(1385), + [anon_sym_await] = ACTIONS(1635), + [anon_sym_DOT_DOT] = ACTIONS(1637), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -224432,19 +224318,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1191), - [anon_sym_sizeof] = ACTIONS(1193), - [anon_sym_typeof] = ACTIONS(1195), - [anon_sym___makeref] = ACTIONS(1197), - [anon_sym___reftype] = ACTIONS(1199), - [anon_sym___refvalue] = ACTIONS(1201), - [sym_null_literal] = ACTIONS(1203), - [anon_sym_SQUOTE] = ACTIONS(1205), - [sym_integer_literal] = ACTIONS(1203), - [sym_real_literal] = ACTIONS(1207), - [anon_sym_DQUOTE] = ACTIONS(1209), - [sym_verbatim_string_literal] = ACTIONS(1207), - [aux_sym_preproc_if_token1] = ACTIONS(1211), + [anon_sym_stackalloc] = ACTIONS(127), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_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), @@ -224455,90 +224341,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1213), - [sym_interpolation_verbatim_start] = ACTIONS(1215), - [sym_interpolation_raw_start] = ACTIONS(1217), - [sym_raw_string_start] = ACTIONS(1219), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [sym_interpolation_raw_start] = ACTIONS(155), + [sym_raw_string_start] = ACTIONS(157), }, [1081] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2610), - [sym__name] = STATE(5879), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2197), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(4202), - [sym_non_lvalue_expression] = STATE(3277), - [sym_lvalue_expression] = STATE(3134), - [sym__expression_statement_expression] = STATE(3228), - [sym_assignment_expression] = STATE(3289), - [sym_binary_expression] = STATE(3228), - [sym_postfix_unary_expression] = STATE(3289), - [sym_prefix_unary_expression] = STATE(3289), - [sym__pointer_indirection_expression] = STATE(2609), - [sym_query_expression] = STATE(3228), - [sym_from_clause] = STATE(6162), - [sym_conditional_expression] = STATE(3228), - [sym_conditional_access_expression] = STATE(3228), - [sym_as_expression] = STATE(3228), - [sym_is_expression] = STATE(3228), - [sym_is_pattern_expression] = STATE(3228), - [sym_cast_expression] = STATE(3228), - [sym_checked_expression] = STATE(3228), - [sym_invocation_expression] = STATE(3289), - [sym_switch_expression] = STATE(3228), - [sym_await_expression] = STATE(3289), - [sym_throw_expression] = STATE(3228), - [sym_element_access_expression] = STATE(2609), - [sym_interpolated_string_expression] = STATE(3228), - [sym_member_access_expression] = STATE(2609), - [sym_object_creation_expression] = STATE(3289), - [sym_parenthesized_expression] = STATE(3289), - [sym__parenthesized_lvalue_expression] = STATE(2609), - [sym_lambda_expression] = STATE(3228), - [sym__lambda_expression_init] = STATE(7695), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3228), - [sym_anonymous_method_expression] = STATE(3228), - [sym_anonymous_object_creation_expression] = STATE(3228), - [sym_implicit_array_creation_expression] = STATE(3228), - [sym_implicit_object_creation_expression] = STATE(3228), - [sym_implicit_stackalloc_expression] = STATE(3228), - [sym_initializer_expression] = STATE(3228), - [sym_default_expression] = STATE(3228), - [sym_with_expression] = STATE(3228), - [sym_sizeof_expression] = STATE(3228), - [sym_typeof_expression] = STATE(3228), - [sym_makeref_expression] = STATE(3228), - [sym_ref_expression] = STATE(3228), - [sym_reftype_expression] = STATE(3228), - [sym_refvalue_expression] = STATE(3228), - [sym_stackalloc_expression] = STATE(3228), - [sym_range_expression] = STATE(3228), - [sym_tuple_expression] = STATE(2609), - [sym_literal] = STATE(3228), - [sym_character_literal] = STATE(3278), - [sym_string_literal] = STATE(3278), - [sym_raw_string_literal] = STATE(3278), - [sym_boolean_literal] = STATE(3278), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3228), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(5873), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2238), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(5007), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3526), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3102), + [sym_postfix_unary_expression] = STATE(3079), + [sym_prefix_unary_expression] = STATE(3079), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6134), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3102), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3079), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3102), + [sym_member_access_expression] = STATE(2472), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3079), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7455), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(3102), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3102), + [sym_typeof_expression] = STATE(3102), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2472), + [sym_literal] = STATE(3102), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(1081), [sym_preproc_endregion] = STATE(1081), [sym_preproc_line] = STATE(1081), @@ -224548,47 +224434,47 @@ 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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3396), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1153), - [anon_sym_LPAREN] = ACTIONS(1371), - [anon_sym_ref] = ACTIONS(1373), - [anon_sym_LBRACE] = ACTIONS(1159), - [anon_sym_delegate] = ACTIONS(1161), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1479), + [anon_sym_LPAREN] = ACTIONS(1629), + [anon_sym_ref] = ACTIONS(1631), + [anon_sym_LBRACE] = ACTIONS(1481), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1163), + [anon_sym_new] = ACTIONS(1515), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1167), - [anon_sym_BANG] = ACTIONS(1377), - [anon_sym_TILDE] = ACTIONS(1377), - [anon_sym_PLUS_PLUS] = ACTIONS(1377), - [anon_sym_DASH_DASH] = ACTIONS(1377), - [anon_sym_true] = ACTIONS(1173), - [anon_sym_false] = ACTIONS(1173), - [anon_sym_PLUS] = ACTIONS(1375), - [anon_sym_DASH] = ACTIONS(1375), - [anon_sym_STAR] = ACTIONS(1379), - [anon_sym_CARET] = ACTIONS(1377), - [anon_sym_AMP] = ACTIONS(1377), - [anon_sym_this] = ACTIONS(1177), + [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_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1179), + [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1181), - [anon_sym_unchecked] = ACTIONS(1167), + [sym_predefined_type] = ACTIONS(91), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1183), - [anon_sym_throw] = ACTIONS(1381), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(1633), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1383), - [anon_sym_DOT_DOT] = ACTIONS(1385), + [anon_sym_await] = ACTIONS(1635), + [anon_sym_DOT_DOT] = ACTIONS(1637), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -224601,19 +224487,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1191), - [anon_sym_sizeof] = ACTIONS(1193), - [anon_sym_typeof] = ACTIONS(1195), - [anon_sym___makeref] = ACTIONS(1197), - [anon_sym___reftype] = ACTIONS(1199), - [anon_sym___refvalue] = ACTIONS(1201), - [sym_null_literal] = ACTIONS(1203), - [anon_sym_SQUOTE] = ACTIONS(1205), - [sym_integer_literal] = ACTIONS(1203), - [sym_real_literal] = ACTIONS(1207), - [anon_sym_DQUOTE] = ACTIONS(1209), - [sym_verbatim_string_literal] = ACTIONS(1207), - [aux_sym_preproc_if_token1] = ACTIONS(1211), + [anon_sym_stackalloc] = ACTIONS(127), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_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), @@ -224624,90 +224510,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1213), - [sym_interpolation_verbatim_start] = ACTIONS(1215), - [sym_interpolation_raw_start] = ACTIONS(1217), - [sym_raw_string_start] = ACTIONS(1219), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [sym_interpolation_raw_start] = ACTIONS(155), + [sym_raw_string_start] = ACTIONS(157), }, [1082] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2610), - [sym__name] = STATE(5879), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2197), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(4203), - [sym_non_lvalue_expression] = STATE(3277), - [sym_lvalue_expression] = STATE(3134), - [sym__expression_statement_expression] = STATE(3228), - [sym_assignment_expression] = STATE(3289), - [sym_binary_expression] = STATE(3228), - [sym_postfix_unary_expression] = STATE(3289), - [sym_prefix_unary_expression] = STATE(3289), - [sym__pointer_indirection_expression] = STATE(2609), - [sym_query_expression] = STATE(3228), - [sym_from_clause] = STATE(6162), - [sym_conditional_expression] = STATE(3228), - [sym_conditional_access_expression] = STATE(3228), - [sym_as_expression] = STATE(3228), - [sym_is_expression] = STATE(3228), - [sym_is_pattern_expression] = STATE(3228), - [sym_cast_expression] = STATE(3228), - [sym_checked_expression] = STATE(3228), - [sym_invocation_expression] = STATE(3289), - [sym_switch_expression] = STATE(3228), - [sym_await_expression] = STATE(3289), - [sym_throw_expression] = STATE(3228), - [sym_element_access_expression] = STATE(2609), - [sym_interpolated_string_expression] = STATE(3228), - [sym_member_access_expression] = STATE(2609), - [sym_object_creation_expression] = STATE(3289), - [sym_parenthesized_expression] = STATE(3289), - [sym__parenthesized_lvalue_expression] = STATE(2609), - [sym_lambda_expression] = STATE(3228), - [sym__lambda_expression_init] = STATE(7695), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3228), - [sym_anonymous_method_expression] = STATE(3228), - [sym_anonymous_object_creation_expression] = STATE(3228), - [sym_implicit_array_creation_expression] = STATE(3228), - [sym_implicit_object_creation_expression] = STATE(3228), - [sym_implicit_stackalloc_expression] = STATE(3228), - [sym_initializer_expression] = STATE(3228), - [sym_default_expression] = STATE(3228), - [sym_with_expression] = STATE(3228), - [sym_sizeof_expression] = STATE(3228), - [sym_typeof_expression] = STATE(3228), - [sym_makeref_expression] = STATE(3228), - [sym_ref_expression] = STATE(3228), - [sym_reftype_expression] = STATE(3228), - [sym_refvalue_expression] = STATE(3228), - [sym_stackalloc_expression] = STATE(3228), - [sym_range_expression] = STATE(3228), - [sym_tuple_expression] = STATE(2609), - [sym_literal] = STATE(3228), - [sym_character_literal] = STATE(3278), - [sym_string_literal] = STATE(3278), - [sym_raw_string_literal] = STATE(3278), - [sym_boolean_literal] = STATE(3278), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3228), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(5873), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2238), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(5008), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3526), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3102), + [sym_postfix_unary_expression] = STATE(3079), + [sym_prefix_unary_expression] = STATE(3079), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6134), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3102), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3079), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3102), + [sym_member_access_expression] = STATE(2472), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3079), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7455), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(3102), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3102), + [sym_typeof_expression] = STATE(3102), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2472), + [sym_literal] = STATE(3102), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(1082), [sym_preproc_endregion] = STATE(1082), [sym_preproc_line] = STATE(1082), @@ -224717,47 +224603,47 @@ 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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3396), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1153), - [anon_sym_LPAREN] = ACTIONS(1371), - [anon_sym_ref] = ACTIONS(1373), - [anon_sym_LBRACE] = ACTIONS(1159), - [anon_sym_delegate] = ACTIONS(1161), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1479), + [anon_sym_LPAREN] = ACTIONS(1629), + [anon_sym_ref] = ACTIONS(1631), + [anon_sym_LBRACE] = ACTIONS(1481), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1163), + [anon_sym_new] = ACTIONS(1515), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1167), - [anon_sym_BANG] = ACTIONS(1377), - [anon_sym_TILDE] = ACTIONS(1377), - [anon_sym_PLUS_PLUS] = ACTIONS(1377), - [anon_sym_DASH_DASH] = ACTIONS(1377), - [anon_sym_true] = ACTIONS(1173), - [anon_sym_false] = ACTIONS(1173), - [anon_sym_PLUS] = ACTIONS(1375), - [anon_sym_DASH] = ACTIONS(1375), - [anon_sym_STAR] = ACTIONS(1379), - [anon_sym_CARET] = ACTIONS(1377), - [anon_sym_AMP] = ACTIONS(1377), - [anon_sym_this] = ACTIONS(1177), + [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_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1179), + [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1181), - [anon_sym_unchecked] = ACTIONS(1167), + [sym_predefined_type] = ACTIONS(91), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1183), - [anon_sym_throw] = ACTIONS(1381), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(1633), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1383), - [anon_sym_DOT_DOT] = ACTIONS(1385), + [anon_sym_await] = ACTIONS(1635), + [anon_sym_DOT_DOT] = ACTIONS(1637), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -224770,19 +224656,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1191), - [anon_sym_sizeof] = ACTIONS(1193), - [anon_sym_typeof] = ACTIONS(1195), - [anon_sym___makeref] = ACTIONS(1197), - [anon_sym___reftype] = ACTIONS(1199), - [anon_sym___refvalue] = ACTIONS(1201), - [sym_null_literal] = ACTIONS(1203), - [anon_sym_SQUOTE] = ACTIONS(1205), - [sym_integer_literal] = ACTIONS(1203), - [sym_real_literal] = ACTIONS(1207), - [anon_sym_DQUOTE] = ACTIONS(1209), - [sym_verbatim_string_literal] = ACTIONS(1207), - [aux_sym_preproc_if_token1] = ACTIONS(1211), + [anon_sym_stackalloc] = ACTIONS(127), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_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), @@ -224793,90 +224679,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1213), - [sym_interpolation_verbatim_start] = ACTIONS(1215), - [sym_interpolation_raw_start] = ACTIONS(1217), - [sym_raw_string_start] = ACTIONS(1219), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [sym_interpolation_raw_start] = ACTIONS(155), + [sym_raw_string_start] = ACTIONS(157), }, [1083] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(5890), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2375), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(5512), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3656), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3080), - [sym_postfix_unary_expression] = STATE(3111), - [sym_prefix_unary_expression] = STATE(3111), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6157), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3080), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3111), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3080), - [sym_member_access_expression] = STATE(2484), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3111), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7362), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(3080), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3080), - [sym_typeof_expression] = STATE(3080), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2484), - [sym_literal] = STATE(3080), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(5873), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2238), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(5044), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3526), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3102), + [sym_postfix_unary_expression] = STATE(3079), + [sym_prefix_unary_expression] = STATE(3079), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6134), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3102), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3079), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3102), + [sym_member_access_expression] = STATE(2472), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3079), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7455), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(3102), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3102), + [sym_typeof_expression] = STATE(3102), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2472), + [sym_literal] = STATE(3102), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(1083), [sym_preproc_endregion] = STATE(1083), [sym_preproc_line] = STATE(1083), @@ -224886,47 +224772,47 @@ 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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1481), - [anon_sym_LPAREN] = ACTIONS(2177), - [anon_sym_ref] = ACTIONS(2179), - [anon_sym_LBRACE] = ACTIONS(1487), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1479), + [anon_sym_LPAREN] = ACTIONS(1629), + [anon_sym_ref] = ACTIONS(1631), + [anon_sym_LBRACE] = ACTIONS(1481), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(2181), + [anon_sym_new] = ACTIONS(1515), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1067), - [anon_sym_BANG] = ACTIONS(2185), - [anon_sym_TILDE] = ACTIONS(2185), - [anon_sym_PLUS_PLUS] = ACTIONS(2185), - [anon_sym_DASH_DASH] = ACTIONS(2185), + [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(2183), - [anon_sym_DASH] = ACTIONS(2183), - [anon_sym_STAR] = ACTIONS(2187), - [anon_sym_CARET] = ACTIONS(2185), - [anon_sym_AMP] = ACTIONS(2185), + [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_scoped] = ACTIONS(85), [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1067), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(2189), + [anon_sym_throw] = ACTIONS(1633), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2191), - [anon_sym_DOT_DOT] = ACTIONS(2193), + [anon_sym_await] = ACTIONS(1635), + [anon_sym_DOT_DOT] = ACTIONS(1637), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -224951,7 +224837,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(1089), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -224968,84 +224854,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [1084] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2420), - [sym__name] = STATE(5887), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2197), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(4084), - [sym_non_lvalue_expression] = STATE(3066), - [sym_lvalue_expression] = STATE(3120), - [sym__expression_statement_expression] = STATE(3006), - [sym_assignment_expression] = STATE(3020), - [sym_binary_expression] = STATE(3006), - [sym_postfix_unary_expression] = STATE(3020), - [sym_prefix_unary_expression] = STATE(3020), - [sym__pointer_indirection_expression] = STATE(2423), - [sym_query_expression] = STATE(3006), - [sym_from_clause] = STATE(6152), - [sym_conditional_expression] = STATE(3006), - [sym_conditional_access_expression] = STATE(3006), - [sym_as_expression] = STATE(3006), - [sym_is_expression] = STATE(3006), - [sym_is_pattern_expression] = STATE(3006), - [sym_cast_expression] = STATE(3006), - [sym_checked_expression] = STATE(3006), - [sym_invocation_expression] = STATE(3020), - [sym_switch_expression] = STATE(3006), - [sym_await_expression] = STATE(3020), - [sym_throw_expression] = STATE(3006), - [sym_element_access_expression] = STATE(2423), - [sym_interpolated_string_expression] = STATE(3006), - [sym_member_access_expression] = STATE(2423), - [sym_object_creation_expression] = STATE(3020), - [sym_parenthesized_expression] = STATE(3020), - [sym__parenthesized_lvalue_expression] = STATE(2423), - [sym_lambda_expression] = STATE(3006), - [sym__lambda_expression_init] = STATE(7722), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3006), - [sym_anonymous_method_expression] = STATE(3006), - [sym_anonymous_object_creation_expression] = STATE(3006), - [sym_implicit_array_creation_expression] = STATE(3006), - [sym_implicit_object_creation_expression] = STATE(3006), - [sym_implicit_stackalloc_expression] = STATE(3006), - [sym_initializer_expression] = STATE(3006), - [sym_default_expression] = STATE(3006), - [sym_with_expression] = STATE(3006), - [sym_sizeof_expression] = STATE(3006), - [sym_typeof_expression] = STATE(3006), - [sym_makeref_expression] = STATE(3006), - [sym_ref_expression] = STATE(3006), - [sym_reftype_expression] = STATE(3006), - [sym_refvalue_expression] = STATE(3006), - [sym_stackalloc_expression] = STATE(3006), - [sym_range_expression] = STATE(3006), - [sym_tuple_expression] = STATE(2423), - [sym_literal] = STATE(3006), - [sym_character_literal] = STATE(3011), - [sym_string_literal] = STATE(3011), - [sym_raw_string_literal] = STATE(3011), - [sym_boolean_literal] = STATE(3011), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3006), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(5873), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2238), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(5046), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3526), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3102), + [sym_postfix_unary_expression] = STATE(3079), + [sym_prefix_unary_expression] = STATE(3079), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6134), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3102), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3079), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3102), + [sym_member_access_expression] = STATE(2472), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3079), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7455), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(3102), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3102), + [sym_typeof_expression] = STATE(3102), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2472), + [sym_literal] = STATE(3102), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(1084), [sym_preproc_endregion] = STATE(1084), [sym_preproc_line] = STATE(1084), @@ -225055,47 +224941,47 @@ 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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3440), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1241), - [anon_sym_LPAREN] = ACTIONS(1243), - [anon_sym_ref] = ACTIONS(1245), - [anon_sym_LBRACE] = ACTIONS(1247), - [anon_sym_delegate] = ACTIONS(1249), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1479), + [anon_sym_LPAREN] = ACTIONS(1629), + [anon_sym_ref] = ACTIONS(1631), + [anon_sym_LBRACE] = ACTIONS(1481), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1251), + [anon_sym_new] = ACTIONS(1515), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1253), - [anon_sym_BANG] = ACTIONS(1257), - [anon_sym_TILDE] = ACTIONS(1257), - [anon_sym_PLUS_PLUS] = ACTIONS(1257), - [anon_sym_DASH_DASH] = ACTIONS(1257), - [anon_sym_true] = ACTIONS(1259), - [anon_sym_false] = ACTIONS(1259), - [anon_sym_PLUS] = ACTIONS(1255), - [anon_sym_DASH] = ACTIONS(1255), - [anon_sym_STAR] = ACTIONS(1261), - [anon_sym_CARET] = ACTIONS(1257), - [anon_sym_AMP] = ACTIONS(1257), - [anon_sym_this] = ACTIONS(1263), + [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_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1265), + [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1267), - [anon_sym_unchecked] = ACTIONS(1253), + [sym_predefined_type] = ACTIONS(91), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1269), - [anon_sym_throw] = ACTIONS(1271), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(1633), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1273), - [anon_sym_DOT_DOT] = ACTIONS(1275), + [anon_sym_await] = ACTIONS(1635), + [anon_sym_DOT_DOT] = ACTIONS(1637), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -225108,19 +224994,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1277), - [anon_sym_sizeof] = ACTIONS(1279), - [anon_sym_typeof] = ACTIONS(1281), - [anon_sym___makeref] = ACTIONS(1283), - [anon_sym___reftype] = ACTIONS(1285), - [anon_sym___refvalue] = ACTIONS(1287), - [sym_null_literal] = ACTIONS(1289), - [anon_sym_SQUOTE] = ACTIONS(1291), - [sym_integer_literal] = ACTIONS(1289), - [sym_real_literal] = ACTIONS(1293), - [anon_sym_DQUOTE] = ACTIONS(1295), - [sym_verbatim_string_literal] = ACTIONS(1293), - [aux_sym_preproc_if_token1] = ACTIONS(1297), + [anon_sym_stackalloc] = ACTIONS(127), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_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), @@ -225131,90 +225017,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1299), - [sym_interpolation_verbatim_start] = ACTIONS(1301), - [sym_interpolation_raw_start] = ACTIONS(1303), - [sym_raw_string_start] = ACTIONS(1305), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [sym_interpolation_raw_start] = ACTIONS(155), + [sym_raw_string_start] = ACTIONS(157), }, [1085] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2610), - [sym__name] = STATE(5898), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2197), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(3811), - [sym_non_lvalue_expression] = STATE(3277), - [sym_lvalue_expression] = STATE(3023), - [sym__expression_statement_expression] = STATE(3228), - [sym_assignment_expression] = STATE(3289), - [sym_binary_expression] = STATE(3228), - [sym_postfix_unary_expression] = STATE(3289), - [sym_prefix_unary_expression] = STATE(3289), - [sym__pointer_indirection_expression] = STATE(2609), - [sym_query_expression] = STATE(3228), - [sym_from_clause] = STATE(6172), - [sym_conditional_expression] = STATE(3228), - [sym_conditional_access_expression] = STATE(3228), - [sym_as_expression] = STATE(3228), - [sym_is_expression] = STATE(3228), - [sym_is_pattern_expression] = STATE(3228), - [sym_cast_expression] = STATE(3228), - [sym_checked_expression] = STATE(3228), - [sym_invocation_expression] = STATE(3289), - [sym_switch_expression] = STATE(3228), - [sym_await_expression] = STATE(3289), - [sym_throw_expression] = STATE(3228), - [sym_element_access_expression] = STATE(2609), - [sym_interpolated_string_expression] = STATE(3228), - [sym_member_access_expression] = STATE(2609), - [sym_object_creation_expression] = STATE(3289), - [sym_parenthesized_expression] = STATE(3289), - [sym__parenthesized_lvalue_expression] = STATE(2609), - [sym_lambda_expression] = STATE(3228), - [sym__lambda_expression_init] = STATE(7653), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3228), - [sym_anonymous_method_expression] = STATE(3228), - [sym_anonymous_object_creation_expression] = STATE(3228), - [sym_implicit_array_creation_expression] = STATE(3228), - [sym_implicit_object_creation_expression] = STATE(3228), - [sym_implicit_stackalloc_expression] = STATE(3228), - [sym_initializer_expression] = STATE(3228), - [sym_default_expression] = STATE(3228), - [sym_with_expression] = STATE(3228), - [sym_sizeof_expression] = STATE(3228), - [sym_typeof_expression] = STATE(3228), - [sym_makeref_expression] = STATE(3228), - [sym_ref_expression] = STATE(3228), - [sym_reftype_expression] = STATE(3228), - [sym_refvalue_expression] = STATE(3228), - [sym_stackalloc_expression] = STATE(3228), - [sym_range_expression] = STATE(3228), - [sym_tuple_expression] = STATE(2609), - [sym_literal] = STATE(3228), - [sym_character_literal] = STATE(3278), - [sym_string_literal] = STATE(3278), - [sym_raw_string_literal] = STATE(3278), - [sym_boolean_literal] = STATE(3278), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3228), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(5873), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2238), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(5050), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3526), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3102), + [sym_postfix_unary_expression] = STATE(3079), + [sym_prefix_unary_expression] = STATE(3079), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6134), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3102), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3079), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3102), + [sym_member_access_expression] = STATE(2472), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3079), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7455), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(3102), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3102), + [sym_typeof_expression] = STATE(3102), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2472), + [sym_literal] = STATE(3102), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(1085), [sym_preproc_endregion] = STATE(1085), [sym_preproc_line] = STATE(1085), @@ -225224,47 +225110,47 @@ 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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3396), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1153), - [anon_sym_LPAREN] = ACTIONS(1155), - [anon_sym_ref] = ACTIONS(1157), - [anon_sym_LBRACE] = ACTIONS(1159), - [anon_sym_delegate] = ACTIONS(1161), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1479), + [anon_sym_LPAREN] = ACTIONS(1629), + [anon_sym_ref] = ACTIONS(1631), + [anon_sym_LBRACE] = ACTIONS(1481), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1163), + [anon_sym_new] = ACTIONS(1515), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1167), - [anon_sym_BANG] = ACTIONS(1171), - [anon_sym_TILDE] = ACTIONS(1171), - [anon_sym_PLUS_PLUS] = ACTIONS(1171), - [anon_sym_DASH_DASH] = ACTIONS(1171), - [anon_sym_true] = ACTIONS(1173), - [anon_sym_false] = ACTIONS(1173), - [anon_sym_PLUS] = ACTIONS(1169), - [anon_sym_DASH] = ACTIONS(1169), - [anon_sym_STAR] = ACTIONS(1175), - [anon_sym_CARET] = ACTIONS(1171), - [anon_sym_AMP] = ACTIONS(1171), - [anon_sym_this] = ACTIONS(1177), + [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_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1179), + [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1181), - [anon_sym_unchecked] = ACTIONS(1167), + [sym_predefined_type] = ACTIONS(91), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1183), - [anon_sym_throw] = ACTIONS(1185), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(1633), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1187), - [anon_sym_DOT_DOT] = ACTIONS(1189), + [anon_sym_await] = ACTIONS(1635), + [anon_sym_DOT_DOT] = ACTIONS(1637), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -225277,19 +225163,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1191), - [anon_sym_sizeof] = ACTIONS(1193), - [anon_sym_typeof] = ACTIONS(1195), - [anon_sym___makeref] = ACTIONS(1197), - [anon_sym___reftype] = ACTIONS(1199), - [anon_sym___refvalue] = ACTIONS(1201), - [sym_null_literal] = ACTIONS(1203), - [anon_sym_SQUOTE] = ACTIONS(1205), - [sym_integer_literal] = ACTIONS(1203), - [sym_real_literal] = ACTIONS(1207), - [anon_sym_DQUOTE] = ACTIONS(1209), - [sym_verbatim_string_literal] = ACTIONS(1207), - [aux_sym_preproc_if_token1] = ACTIONS(1211), + [anon_sym_stackalloc] = ACTIONS(127), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_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), @@ -225300,90 +225186,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1213), - [sym_interpolation_verbatim_start] = ACTIONS(1215), - [sym_interpolation_raw_start] = ACTIONS(1217), - [sym_raw_string_start] = ACTIONS(1219), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [sym_interpolation_raw_start] = ACTIONS(155), + [sym_raw_string_start] = ACTIONS(157), }, [1086] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2610), - [sym__name] = STATE(5879), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2197), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(4204), - [sym_non_lvalue_expression] = STATE(3277), - [sym_lvalue_expression] = STATE(3134), - [sym__expression_statement_expression] = STATE(3228), - [sym_assignment_expression] = STATE(3289), - [sym_binary_expression] = STATE(3228), - [sym_postfix_unary_expression] = STATE(3289), - [sym_prefix_unary_expression] = STATE(3289), - [sym__pointer_indirection_expression] = STATE(2609), - [sym_query_expression] = STATE(3228), - [sym_from_clause] = STATE(6162), - [sym_conditional_expression] = STATE(3228), - [sym_conditional_access_expression] = STATE(3228), - [sym_as_expression] = STATE(3228), - [sym_is_expression] = STATE(3228), - [sym_is_pattern_expression] = STATE(3228), - [sym_cast_expression] = STATE(3228), - [sym_checked_expression] = STATE(3228), - [sym_invocation_expression] = STATE(3289), - [sym_switch_expression] = STATE(3228), - [sym_await_expression] = STATE(3289), - [sym_throw_expression] = STATE(3228), - [sym_element_access_expression] = STATE(2609), - [sym_interpolated_string_expression] = STATE(3228), - [sym_member_access_expression] = STATE(2609), - [sym_object_creation_expression] = STATE(3289), - [sym_parenthesized_expression] = STATE(3289), - [sym__parenthesized_lvalue_expression] = STATE(2609), - [sym_lambda_expression] = STATE(3228), - [sym__lambda_expression_init] = STATE(7695), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3228), - [sym_anonymous_method_expression] = STATE(3228), - [sym_anonymous_object_creation_expression] = STATE(3228), - [sym_implicit_array_creation_expression] = STATE(3228), - [sym_implicit_object_creation_expression] = STATE(3228), - [sym_implicit_stackalloc_expression] = STATE(3228), - [sym_initializer_expression] = STATE(3228), - [sym_default_expression] = STATE(3228), - [sym_with_expression] = STATE(3228), - [sym_sizeof_expression] = STATE(3228), - [sym_typeof_expression] = STATE(3228), - [sym_makeref_expression] = STATE(3228), - [sym_ref_expression] = STATE(3228), - [sym_reftype_expression] = STATE(3228), - [sym_refvalue_expression] = STATE(3228), - [sym_stackalloc_expression] = STATE(3228), - [sym_range_expression] = STATE(3228), - [sym_tuple_expression] = STATE(2609), - [sym_literal] = STATE(3228), - [sym_character_literal] = STATE(3278), - [sym_string_literal] = STATE(3278), - [sym_raw_string_literal] = STATE(3278), - [sym_boolean_literal] = STATE(3278), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3228), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(5873), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2238), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(4889), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3526), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3102), + [sym_postfix_unary_expression] = STATE(3079), + [sym_prefix_unary_expression] = STATE(3079), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6134), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3102), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3079), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3102), + [sym_member_access_expression] = STATE(2472), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3079), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7455), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(3102), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3102), + [sym_typeof_expression] = STATE(3102), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2472), + [sym_literal] = STATE(3102), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(1086), [sym_preproc_endregion] = STATE(1086), [sym_preproc_line] = STATE(1086), @@ -225393,47 +225279,47 @@ 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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3396), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1153), - [anon_sym_LPAREN] = ACTIONS(1371), - [anon_sym_ref] = ACTIONS(1373), - [anon_sym_LBRACE] = ACTIONS(1159), - [anon_sym_delegate] = ACTIONS(1161), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1479), + [anon_sym_LPAREN] = ACTIONS(1629), + [anon_sym_ref] = ACTIONS(1631), + [anon_sym_LBRACE] = ACTIONS(1481), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1163), + [anon_sym_new] = ACTIONS(1515), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1167), - [anon_sym_BANG] = ACTIONS(1377), - [anon_sym_TILDE] = ACTIONS(1377), - [anon_sym_PLUS_PLUS] = ACTIONS(1377), - [anon_sym_DASH_DASH] = ACTIONS(1377), - [anon_sym_true] = ACTIONS(1173), - [anon_sym_false] = ACTIONS(1173), - [anon_sym_PLUS] = ACTIONS(1375), - [anon_sym_DASH] = ACTIONS(1375), - [anon_sym_STAR] = ACTIONS(1379), - [anon_sym_CARET] = ACTIONS(1377), - [anon_sym_AMP] = ACTIONS(1377), - [anon_sym_this] = ACTIONS(1177), + [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_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1179), + [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1181), - [anon_sym_unchecked] = ACTIONS(1167), + [sym_predefined_type] = ACTIONS(91), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1183), - [anon_sym_throw] = ACTIONS(1381), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(1633), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1383), - [anon_sym_DOT_DOT] = ACTIONS(1385), + [anon_sym_await] = ACTIONS(1635), + [anon_sym_DOT_DOT] = ACTIONS(1637), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -225446,19 +225332,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1191), - [anon_sym_sizeof] = ACTIONS(1193), - [anon_sym_typeof] = ACTIONS(1195), - [anon_sym___makeref] = ACTIONS(1197), - [anon_sym___reftype] = ACTIONS(1199), - [anon_sym___refvalue] = ACTIONS(1201), - [sym_null_literal] = ACTIONS(1203), - [anon_sym_SQUOTE] = ACTIONS(1205), - [sym_integer_literal] = ACTIONS(1203), - [sym_real_literal] = ACTIONS(1207), - [anon_sym_DQUOTE] = ACTIONS(1209), - [sym_verbatim_string_literal] = ACTIONS(1207), - [aux_sym_preproc_if_token1] = ACTIONS(1211), + [anon_sym_stackalloc] = ACTIONS(127), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_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), @@ -225469,90 +225355,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1213), - [sym_interpolation_verbatim_start] = ACTIONS(1215), - [sym_interpolation_raw_start] = ACTIONS(1217), - [sym_raw_string_start] = ACTIONS(1219), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [sym_interpolation_raw_start] = ACTIONS(155), + [sym_raw_string_start] = ACTIONS(157), }, [1087] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2610), - [sym__name] = STATE(5879), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2197), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(4205), - [sym_non_lvalue_expression] = STATE(3277), - [sym_lvalue_expression] = STATE(3134), - [sym__expression_statement_expression] = STATE(3228), - [sym_assignment_expression] = STATE(3289), - [sym_binary_expression] = STATE(3228), - [sym_postfix_unary_expression] = STATE(3289), - [sym_prefix_unary_expression] = STATE(3289), - [sym__pointer_indirection_expression] = STATE(2609), - [sym_query_expression] = STATE(3228), - [sym_from_clause] = STATE(6162), - [sym_conditional_expression] = STATE(3228), - [sym_conditional_access_expression] = STATE(3228), - [sym_as_expression] = STATE(3228), - [sym_is_expression] = STATE(3228), - [sym_is_pattern_expression] = STATE(3228), - [sym_cast_expression] = STATE(3228), - [sym_checked_expression] = STATE(3228), - [sym_invocation_expression] = STATE(3289), - [sym_switch_expression] = STATE(3228), - [sym_await_expression] = STATE(3289), - [sym_throw_expression] = STATE(3228), - [sym_element_access_expression] = STATE(2609), - [sym_interpolated_string_expression] = STATE(3228), - [sym_member_access_expression] = STATE(2609), - [sym_object_creation_expression] = STATE(3289), - [sym_parenthesized_expression] = STATE(3289), - [sym__parenthesized_lvalue_expression] = STATE(2609), - [sym_lambda_expression] = STATE(3228), - [sym__lambda_expression_init] = STATE(7695), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3228), - [sym_anonymous_method_expression] = STATE(3228), - [sym_anonymous_object_creation_expression] = STATE(3228), - [sym_implicit_array_creation_expression] = STATE(3228), - [sym_implicit_object_creation_expression] = STATE(3228), - [sym_implicit_stackalloc_expression] = STATE(3228), - [sym_initializer_expression] = STATE(3228), - [sym_default_expression] = STATE(3228), - [sym_with_expression] = STATE(3228), - [sym_sizeof_expression] = STATE(3228), - [sym_typeof_expression] = STATE(3228), - [sym_makeref_expression] = STATE(3228), - [sym_ref_expression] = STATE(3228), - [sym_reftype_expression] = STATE(3228), - [sym_refvalue_expression] = STATE(3228), - [sym_stackalloc_expression] = STATE(3228), - [sym_range_expression] = STATE(3228), - [sym_tuple_expression] = STATE(2609), - [sym_literal] = STATE(3228), - [sym_character_literal] = STATE(3278), - [sym_string_literal] = STATE(3278), - [sym_raw_string_literal] = STATE(3278), - [sym_boolean_literal] = STATE(3278), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3228), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2901), + [sym__name] = STATE(5889), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2349), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(3846), + [sym_non_lvalue_expression] = STATE(3685), + [sym_lvalue_expression] = STATE(2985), + [sym__expression_statement_expression] = STATE(3836), + [sym_assignment_expression] = STATE(3689), + [sym_binary_expression] = STATE(3836), + [sym_postfix_unary_expression] = STATE(3689), + [sym_prefix_unary_expression] = STATE(3689), + [sym__pointer_indirection_expression] = STATE(2906), + [sym_query_expression] = STATE(3836), + [sym_from_clause] = STATE(6157), + [sym_conditional_expression] = STATE(3836), + [sym_conditional_access_expression] = STATE(3836), + [sym_as_expression] = STATE(3836), + [sym_is_expression] = STATE(3836), + [sym_is_pattern_expression] = STATE(3836), + [sym_cast_expression] = STATE(3836), + [sym_checked_expression] = STATE(3836), + [sym_invocation_expression] = STATE(3689), + [sym_switch_expression] = STATE(3836), + [sym_await_expression] = STATE(3689), + [sym_throw_expression] = STATE(3836), + [sym_element_access_expression] = STATE(2906), + [sym_interpolated_string_expression] = STATE(3836), + [sym_member_access_expression] = STATE(2906), + [sym_object_creation_expression] = STATE(3689), + [sym_parenthesized_expression] = STATE(3689), + [sym__parenthesized_lvalue_expression] = STATE(2906), + [sym_lambda_expression] = STATE(3836), + [sym__lambda_expression_init] = STATE(7485), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3836), + [sym_anonymous_method_expression] = STATE(3836), + [sym_anonymous_object_creation_expression] = STATE(3836), + [sym_implicit_array_creation_expression] = STATE(3836), + [sym_implicit_object_creation_expression] = STATE(3836), + [sym_implicit_stackalloc_expression] = STATE(3836), + [sym_initializer_expression] = STATE(3836), + [sym_default_expression] = STATE(3836), + [sym_with_expression] = STATE(3836), + [sym_sizeof_expression] = STATE(3836), + [sym_typeof_expression] = STATE(3836), + [sym_makeref_expression] = STATE(3836), + [sym_ref_expression] = STATE(3836), + [sym_reftype_expression] = STATE(3836), + [sym_refvalue_expression] = STATE(3836), + [sym_stackalloc_expression] = STATE(3836), + [sym_range_expression] = STATE(3836), + [sym_tuple_expression] = STATE(2906), + [sym_literal] = STATE(3836), + [sym_character_literal] = STATE(3843), + [sym_string_literal] = STATE(3843), + [sym_raw_string_literal] = STATE(3843), + [sym_boolean_literal] = STATE(3843), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3836), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(1087), [sym_preproc_endregion] = STATE(1087), [sym_preproc_line] = STATE(1087), @@ -225562,47 +225448,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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3396), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3477), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1153), - [anon_sym_LPAREN] = ACTIONS(1371), - [anon_sym_ref] = ACTIONS(1373), - [anon_sym_LBRACE] = ACTIONS(1159), - [anon_sym_delegate] = ACTIONS(1161), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1655), + [anon_sym_LPAREN] = ACTIONS(2043), + [anon_sym_ref] = ACTIONS(2045), + [anon_sym_LBRACE] = ACTIONS(1661), + [anon_sym_delegate] = ACTIONS(1663), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1163), + [anon_sym_new] = ACTIONS(1759), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1167), - [anon_sym_BANG] = ACTIONS(1377), - [anon_sym_TILDE] = ACTIONS(1377), - [anon_sym_PLUS_PLUS] = ACTIONS(1377), - [anon_sym_DASH_DASH] = ACTIONS(1377), - [anon_sym_true] = ACTIONS(1173), - [anon_sym_false] = ACTIONS(1173), - [anon_sym_PLUS] = ACTIONS(1375), - [anon_sym_DASH] = ACTIONS(1375), - [anon_sym_STAR] = ACTIONS(1379), - [anon_sym_CARET] = ACTIONS(1377), - [anon_sym_AMP] = ACTIONS(1377), - [anon_sym_this] = ACTIONS(1177), + [anon_sym_checked] = ACTIONS(1667), + [anon_sym_BANG] = ACTIONS(2049), + [anon_sym_TILDE] = ACTIONS(2049), + [anon_sym_PLUS_PLUS] = ACTIONS(2049), + [anon_sym_DASH_DASH] = ACTIONS(2049), + [anon_sym_true] = ACTIONS(1673), + [anon_sym_false] = ACTIONS(1673), + [anon_sym_PLUS] = ACTIONS(2047), + [anon_sym_DASH] = ACTIONS(2047), + [anon_sym_STAR] = ACTIONS(1765), + [anon_sym_CARET] = ACTIONS(2049), + [anon_sym_AMP] = ACTIONS(2049), + [anon_sym_this] = ACTIONS(1677), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1179), + [anon_sym_base] = ACTIONS(1679), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1181), - [anon_sym_unchecked] = ACTIONS(1167), + [sym_predefined_type] = ACTIONS(1681), + [anon_sym_unchecked] = ACTIONS(1667), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1183), - [anon_sym_throw] = ACTIONS(1381), + [anon_sym_default] = ACTIONS(1683), + [anon_sym_throw] = ACTIONS(2051), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1383), - [anon_sym_DOT_DOT] = ACTIONS(1385), + [anon_sym_await] = ACTIONS(2053), + [anon_sym_DOT_DOT] = ACTIONS(2055), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -225615,19 +225501,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1191), - [anon_sym_sizeof] = ACTIONS(1193), - [anon_sym_typeof] = ACTIONS(1195), - [anon_sym___makeref] = ACTIONS(1197), - [anon_sym___reftype] = ACTIONS(1199), - [anon_sym___refvalue] = ACTIONS(1201), - [sym_null_literal] = ACTIONS(1203), - [anon_sym_SQUOTE] = ACTIONS(1205), - [sym_integer_literal] = ACTIONS(1203), - [sym_real_literal] = ACTIONS(1207), - [anon_sym_DQUOTE] = ACTIONS(1209), - [sym_verbatim_string_literal] = ACTIONS(1207), - [aux_sym_preproc_if_token1] = ACTIONS(1211), + [anon_sym_stackalloc] = ACTIONS(1691), + [anon_sym_sizeof] = ACTIONS(1693), + [anon_sym_typeof] = ACTIONS(1695), + [anon_sym___makeref] = ACTIONS(1697), + [anon_sym___reftype] = ACTIONS(1699), + [anon_sym___refvalue] = ACTIONS(1701), + [sym_null_literal] = ACTIONS(1703), + [anon_sym_SQUOTE] = ACTIONS(1705), + [sym_integer_literal] = ACTIONS(1703), + [sym_real_literal] = ACTIONS(1707), + [anon_sym_DQUOTE] = ACTIONS(1709), + [sym_verbatim_string_literal] = ACTIONS(1707), + [aux_sym_preproc_if_token1] = ACTIONS(1711), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -225638,90 +225524,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1213), - [sym_interpolation_verbatim_start] = ACTIONS(1215), - [sym_interpolation_raw_start] = ACTIONS(1217), - [sym_raw_string_start] = ACTIONS(1219), + [sym_interpolation_regular_start] = ACTIONS(1713), + [sym_interpolation_verbatim_start] = ACTIONS(1715), + [sym_interpolation_raw_start] = ACTIONS(1717), + [sym_raw_string_start] = ACTIONS(1719), }, [1088] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2762), - [sym__name] = STATE(5889), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2204), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(4850), - [sym_non_lvalue_expression] = STATE(3438), - [sym_lvalue_expression] = STATE(3548), - [sym__expression_statement_expression] = STATE(3362), - [sym_assignment_expression] = STATE(3449), - [sym_binary_expression] = STATE(3362), - [sym_postfix_unary_expression] = STATE(3449), - [sym_prefix_unary_expression] = STATE(3449), - [sym__pointer_indirection_expression] = STATE(2747), - [sym_query_expression] = STATE(3362), - [sym_from_clause] = STATE(6146), - [sym_conditional_expression] = STATE(3362), - [sym_conditional_access_expression] = STATE(3362), - [sym_as_expression] = STATE(3362), - [sym_is_expression] = STATE(3362), - [sym_is_pattern_expression] = STATE(3362), - [sym_cast_expression] = STATE(3362), - [sym_checked_expression] = STATE(3362), - [sym_invocation_expression] = STATE(3449), - [sym_switch_expression] = STATE(3362), - [sym_await_expression] = STATE(3449), - [sym_throw_expression] = STATE(3362), - [sym_element_access_expression] = STATE(2747), - [sym_interpolated_string_expression] = STATE(3362), - [sym_member_access_expression] = STATE(2747), - [sym_object_creation_expression] = STATE(3449), - [sym_parenthesized_expression] = STATE(3449), - [sym__parenthesized_lvalue_expression] = STATE(2747), - [sym_lambda_expression] = STATE(3362), - [sym__lambda_expression_init] = STATE(7772), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3362), - [sym_anonymous_method_expression] = STATE(3362), - [sym_anonymous_object_creation_expression] = STATE(3362), - [sym_implicit_array_creation_expression] = STATE(3362), - [sym_implicit_object_creation_expression] = STATE(3362), - [sym_implicit_stackalloc_expression] = STATE(3362), - [sym_initializer_expression] = STATE(3362), - [sym_default_expression] = STATE(3362), - [sym_with_expression] = STATE(3362), - [sym_sizeof_expression] = STATE(3362), - [sym_typeof_expression] = STATE(3362), - [sym_makeref_expression] = STATE(3362), - [sym_ref_expression] = STATE(3362), - [sym_reftype_expression] = STATE(3362), - [sym_refvalue_expression] = STATE(3362), - [sym_stackalloc_expression] = STATE(3362), - [sym_range_expression] = STATE(3362), - [sym_tuple_expression] = STATE(2747), - [sym_literal] = STATE(3362), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3362), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(5873), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2238), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(3523), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3526), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3102), + [sym_postfix_unary_expression] = STATE(3079), + [sym_prefix_unary_expression] = STATE(3079), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6134), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3102), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3079), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3102), + [sym_member_access_expression] = STATE(2472), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3079), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7455), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(3102), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3102), + [sym_typeof_expression] = STATE(3102), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2472), + [sym_literal] = STATE(3102), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(1088), [sym_preproc_endregion] = STATE(1088), [sym_preproc_line] = STATE(1088), @@ -225731,47 +225617,47 @@ 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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3385), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1307), - [anon_sym_LPAREN] = ACTIONS(1789), - [anon_sym_ref] = ACTIONS(1791), - [anon_sym_LBRACE] = ACTIONS(1313), - [anon_sym_delegate] = ACTIONS(1315), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1479), + [anon_sym_LPAREN] = ACTIONS(1629), + [anon_sym_ref] = ACTIONS(1631), + [anon_sym_LBRACE] = ACTIONS(1481), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1317), + [anon_sym_new] = ACTIONS(1515), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1319), - [anon_sym_BANG] = ACTIONS(1795), - [anon_sym_TILDE] = ACTIONS(1795), - [anon_sym_PLUS_PLUS] = ACTIONS(1795), - [anon_sym_DASH_DASH] = ACTIONS(1795), + [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(1793), - [anon_sym_DASH] = ACTIONS(1793), - [anon_sym_STAR] = ACTIONS(1797), - [anon_sym_CARET] = ACTIONS(1795), - [anon_sym_AMP] = ACTIONS(1795), - [anon_sym_this] = ACTIONS(1323), + [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_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1325), + [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1319), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1799), + [anon_sym_throw] = ACTIONS(1633), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1801), - [anon_sym_DOT_DOT] = ACTIONS(1803), + [anon_sym_await] = ACTIONS(1635), + [anon_sym_DOT_DOT] = ACTIONS(1637), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -225784,19 +225670,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1333), + [anon_sym_stackalloc] = ACTIONS(127), [anon_sym_sizeof] = ACTIONS(129), [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(1335), - [anon_sym___reftype] = ACTIONS(1337), - [anon_sym___refvalue] = ACTIONS(1339), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), [sym_null_literal] = ACTIONS(139), [anon_sym_SQUOTE] = ACTIONS(141), [sym_integer_literal] = ACTIONS(139), [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1341), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -225813,84 +225699,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [1089] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2762), - [sym__name] = STATE(5889), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2204), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(4852), - [sym_non_lvalue_expression] = STATE(3438), - [sym_lvalue_expression] = STATE(3548), - [sym__expression_statement_expression] = STATE(3362), - [sym_assignment_expression] = STATE(3449), - [sym_binary_expression] = STATE(3362), - [sym_postfix_unary_expression] = STATE(3449), - [sym_prefix_unary_expression] = STATE(3449), - [sym__pointer_indirection_expression] = STATE(2747), - [sym_query_expression] = STATE(3362), - [sym_from_clause] = STATE(6146), - [sym_conditional_expression] = STATE(3362), - [sym_conditional_access_expression] = STATE(3362), - [sym_as_expression] = STATE(3362), - [sym_is_expression] = STATE(3362), - [sym_is_pattern_expression] = STATE(3362), - [sym_cast_expression] = STATE(3362), - [sym_checked_expression] = STATE(3362), - [sym_invocation_expression] = STATE(3449), - [sym_switch_expression] = STATE(3362), - [sym_await_expression] = STATE(3449), - [sym_throw_expression] = STATE(3362), - [sym_element_access_expression] = STATE(2747), - [sym_interpolated_string_expression] = STATE(3362), - [sym_member_access_expression] = STATE(2747), - [sym_object_creation_expression] = STATE(3449), - [sym_parenthesized_expression] = STATE(3449), - [sym__parenthesized_lvalue_expression] = STATE(2747), - [sym_lambda_expression] = STATE(3362), - [sym__lambda_expression_init] = STATE(7772), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3362), - [sym_anonymous_method_expression] = STATE(3362), - [sym_anonymous_object_creation_expression] = STATE(3362), - [sym_implicit_array_creation_expression] = STATE(3362), - [sym_implicit_object_creation_expression] = STATE(3362), - [sym_implicit_stackalloc_expression] = STATE(3362), - [sym_initializer_expression] = STATE(3362), - [sym_default_expression] = STATE(3362), - [sym_with_expression] = STATE(3362), - [sym_sizeof_expression] = STATE(3362), - [sym_typeof_expression] = STATE(3362), - [sym_makeref_expression] = STATE(3362), - [sym_ref_expression] = STATE(3362), - [sym_reftype_expression] = STATE(3362), - [sym_refvalue_expression] = STATE(3362), - [sym_stackalloc_expression] = STATE(3362), - [sym_range_expression] = STATE(3362), - [sym_tuple_expression] = STATE(2747), - [sym_literal] = STATE(3362), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3362), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2816), + [sym__name] = STATE(5860), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2321), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(4710), + [sym_non_lvalue_expression] = STATE(3495), + [sym_lvalue_expression] = STATE(3349), + [sym__expression_statement_expression] = STATE(3462), + [sym_assignment_expression] = STATE(3497), + [sym_binary_expression] = STATE(3462), + [sym_postfix_unary_expression] = STATE(3497), + [sym_prefix_unary_expression] = STATE(3497), + [sym__pointer_indirection_expression] = STATE(2815), + [sym_query_expression] = STATE(3462), + [sym_from_clause] = STATE(6152), + [sym_conditional_expression] = STATE(3462), + [sym_conditional_access_expression] = STATE(3462), + [sym_as_expression] = STATE(3462), + [sym_is_expression] = STATE(3462), + [sym_is_pattern_expression] = STATE(3462), + [sym_cast_expression] = STATE(3462), + [sym_checked_expression] = STATE(3462), + [sym_invocation_expression] = STATE(3497), + [sym_switch_expression] = STATE(3462), + [sym_await_expression] = STATE(3497), + [sym_throw_expression] = STATE(3462), + [sym_element_access_expression] = STATE(2815), + [sym_interpolated_string_expression] = STATE(3462), + [sym_member_access_expression] = STATE(2815), + [sym_object_creation_expression] = STATE(3497), + [sym_parenthesized_expression] = STATE(3497), + [sym__parenthesized_lvalue_expression] = STATE(2815), + [sym_lambda_expression] = STATE(3462), + [sym__lambda_expression_init] = STATE(7658), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3462), + [sym_anonymous_method_expression] = STATE(3462), + [sym_anonymous_object_creation_expression] = STATE(3462), + [sym_implicit_array_creation_expression] = STATE(3462), + [sym_implicit_object_creation_expression] = STATE(3462), + [sym_implicit_stackalloc_expression] = STATE(3462), + [sym_initializer_expression] = STATE(3462), + [sym_default_expression] = STATE(3462), + [sym_with_expression] = STATE(3462), + [sym_sizeof_expression] = STATE(3462), + [sym_typeof_expression] = STATE(3462), + [sym_makeref_expression] = STATE(3462), + [sym_ref_expression] = STATE(3462), + [sym_reftype_expression] = STATE(3462), + [sym_refvalue_expression] = STATE(3462), + [sym_stackalloc_expression] = STATE(3462), + [sym_range_expression] = STATE(3462), + [sym_tuple_expression] = STATE(2815), + [sym_literal] = STATE(3462), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3462), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(1089), [sym_preproc_endregion] = STATE(1089), [sym_preproc_line] = STATE(1089), @@ -225900,47 +225786,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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3385), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3367), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1307), - [anon_sym_LPAREN] = ACTIONS(1789), - [anon_sym_ref] = ACTIONS(1791), - [anon_sym_LBRACE] = ACTIONS(1313), - [anon_sym_delegate] = ACTIONS(1315), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1305), + [anon_sym_LPAREN] = ACTIONS(1639), + [anon_sym_ref] = ACTIONS(1641), + [anon_sym_LBRACE] = ACTIONS(1311), + [anon_sym_delegate] = ACTIONS(1313), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1317), + [anon_sym_new] = ACTIONS(1583), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1319), - [anon_sym_BANG] = ACTIONS(1795), - [anon_sym_TILDE] = ACTIONS(1795), - [anon_sym_PLUS_PLUS] = ACTIONS(1795), - [anon_sym_DASH_DASH] = ACTIONS(1795), + [anon_sym_checked] = ACTIONS(1317), + [anon_sym_BANG] = ACTIONS(1645), + [anon_sym_TILDE] = ACTIONS(1645), + [anon_sym_PLUS_PLUS] = ACTIONS(1645), + [anon_sym_DASH_DASH] = ACTIONS(1645), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1793), - [anon_sym_DASH] = ACTIONS(1793), - [anon_sym_STAR] = ACTIONS(1797), - [anon_sym_CARET] = ACTIONS(1795), - [anon_sym_AMP] = ACTIONS(1795), - [anon_sym_this] = ACTIONS(1323), + [anon_sym_PLUS] = ACTIONS(1643), + [anon_sym_DASH] = ACTIONS(1643), + [anon_sym_STAR] = ACTIONS(1647), + [anon_sym_CARET] = ACTIONS(1645), + [anon_sym_AMP] = ACTIONS(1645), + [anon_sym_this] = ACTIONS(1321), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1325), + [anon_sym_base] = ACTIONS(1323), [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1319), + [anon_sym_unchecked] = ACTIONS(1317), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1799), + [anon_sym_throw] = ACTIONS(1649), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1801), - [anon_sym_DOT_DOT] = ACTIONS(1803), + [anon_sym_await] = ACTIONS(1651), + [anon_sym_DOT_DOT] = ACTIONS(1653), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -225953,19 +225839,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1333), + [anon_sym_stackalloc] = ACTIONS(1331), [anon_sym_sizeof] = ACTIONS(129), [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(1335), - [anon_sym___reftype] = ACTIONS(1337), - [anon_sym___refvalue] = ACTIONS(1339), + [anon_sym___makeref] = ACTIONS(1333), + [anon_sym___reftype] = ACTIONS(1335), + [anon_sym___refvalue] = ACTIONS(1337), [sym_null_literal] = ACTIONS(139), [anon_sym_SQUOTE] = ACTIONS(141), [sym_integer_literal] = ACTIONS(139), [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1341), + [aux_sym_preproc_if_token1] = ACTIONS(1339), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -225982,84 +225868,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [1090] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2762), - [sym__name] = STATE(5889), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2204), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(4972), - [sym_non_lvalue_expression] = STATE(3438), - [sym_lvalue_expression] = STATE(3548), - [sym__expression_statement_expression] = STATE(3362), - [sym_assignment_expression] = STATE(3449), - [sym_binary_expression] = STATE(3362), - [sym_postfix_unary_expression] = STATE(3449), - [sym_prefix_unary_expression] = STATE(3449), - [sym__pointer_indirection_expression] = STATE(2747), - [sym_query_expression] = STATE(3362), - [sym_from_clause] = STATE(6146), - [sym_conditional_expression] = STATE(3362), - [sym_conditional_access_expression] = STATE(3362), - [sym_as_expression] = STATE(3362), - [sym_is_expression] = STATE(3362), - [sym_is_pattern_expression] = STATE(3362), - [sym_cast_expression] = STATE(3362), - [sym_checked_expression] = STATE(3362), - [sym_invocation_expression] = STATE(3449), - [sym_switch_expression] = STATE(3362), - [sym_await_expression] = STATE(3449), - [sym_throw_expression] = STATE(3362), - [sym_element_access_expression] = STATE(2747), - [sym_interpolated_string_expression] = STATE(3362), - [sym_member_access_expression] = STATE(2747), - [sym_object_creation_expression] = STATE(3449), - [sym_parenthesized_expression] = STATE(3449), - [sym__parenthesized_lvalue_expression] = STATE(2747), - [sym_lambda_expression] = STATE(3362), - [sym__lambda_expression_init] = STATE(7772), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3362), - [sym_anonymous_method_expression] = STATE(3362), - [sym_anonymous_object_creation_expression] = STATE(3362), - [sym_implicit_array_creation_expression] = STATE(3362), - [sym_implicit_object_creation_expression] = STATE(3362), - [sym_implicit_stackalloc_expression] = STATE(3362), - [sym_initializer_expression] = STATE(3362), - [sym_default_expression] = STATE(3362), - [sym_with_expression] = STATE(3362), - [sym_sizeof_expression] = STATE(3362), - [sym_typeof_expression] = STATE(3362), - [sym_makeref_expression] = STATE(3362), - [sym_ref_expression] = STATE(3362), - [sym_reftype_expression] = STATE(3362), - [sym_refvalue_expression] = STATE(3362), - [sym_stackalloc_expression] = STATE(3362), - [sym_range_expression] = STATE(3362), - [sym_tuple_expression] = STATE(2747), - [sym_literal] = STATE(3362), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3362), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2816), + [sym__name] = STATE(5873), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2196), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(4277), + [sym_non_lvalue_expression] = STATE(3495), + [sym_lvalue_expression] = STATE(3208), + [sym__expression_statement_expression] = STATE(3462), + [sym_assignment_expression] = STATE(3497), + [sym_binary_expression] = STATE(3462), + [sym_postfix_unary_expression] = STATE(3497), + [sym_prefix_unary_expression] = STATE(3497), + [sym__pointer_indirection_expression] = STATE(2815), + [sym_query_expression] = STATE(3462), + [sym_from_clause] = STATE(6140), + [sym_conditional_expression] = STATE(3462), + [sym_conditional_access_expression] = STATE(3462), + [sym_as_expression] = STATE(3462), + [sym_is_expression] = STATE(3462), + [sym_is_pattern_expression] = STATE(3462), + [sym_cast_expression] = STATE(3462), + [sym_checked_expression] = STATE(3462), + [sym_invocation_expression] = STATE(3497), + [sym_switch_expression] = STATE(3462), + [sym_await_expression] = STATE(3497), + [sym_throw_expression] = STATE(3462), + [sym_element_access_expression] = STATE(2815), + [sym_interpolated_string_expression] = STATE(3462), + [sym_member_access_expression] = STATE(2815), + [sym_object_creation_expression] = STATE(3497), + [sym_parenthesized_expression] = STATE(3497), + [sym__parenthesized_lvalue_expression] = STATE(2815), + [sym_lambda_expression] = STATE(3462), + [sym__lambda_expression_init] = STATE(7520), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3462), + [sym_anonymous_method_expression] = STATE(3462), + [sym_anonymous_object_creation_expression] = STATE(3462), + [sym_implicit_array_creation_expression] = STATE(3462), + [sym_implicit_object_creation_expression] = STATE(3462), + [sym_implicit_stackalloc_expression] = STATE(3462), + [sym_initializer_expression] = STATE(3462), + [sym_default_expression] = STATE(3462), + [sym_with_expression] = STATE(3462), + [sym_sizeof_expression] = STATE(3462), + [sym_typeof_expression] = STATE(3462), + [sym_makeref_expression] = STATE(3462), + [sym_ref_expression] = STATE(3462), + [sym_reftype_expression] = STATE(3462), + [sym_refvalue_expression] = STATE(3462), + [sym_stackalloc_expression] = STATE(3462), + [sym_range_expression] = STATE(3462), + [sym_tuple_expression] = STATE(2815), + [sym_literal] = STATE(3462), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3462), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(1090), [sym_preproc_endregion] = STATE(1090), [sym_preproc_line] = STATE(1090), @@ -226069,47 +225955,47 @@ 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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3385), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3367), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1307), - [anon_sym_LPAREN] = ACTIONS(1789), - [anon_sym_ref] = ACTIONS(1791), - [anon_sym_LBRACE] = ACTIONS(1313), - [anon_sym_delegate] = ACTIONS(1315), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1305), + [anon_sym_LPAREN] = ACTIONS(1369), + [anon_sym_ref] = ACTIONS(1371), + [anon_sym_LBRACE] = ACTIONS(1311), + [anon_sym_delegate] = ACTIONS(1313), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1317), + [anon_sym_new] = ACTIONS(1315), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1319), - [anon_sym_BANG] = ACTIONS(1795), - [anon_sym_TILDE] = ACTIONS(1795), - [anon_sym_PLUS_PLUS] = ACTIONS(1795), - [anon_sym_DASH_DASH] = ACTIONS(1795), + [anon_sym_checked] = ACTIONS(1317), + [anon_sym_BANG] = ACTIONS(1375), + [anon_sym_TILDE] = ACTIONS(1375), + [anon_sym_PLUS_PLUS] = ACTIONS(1375), + [anon_sym_DASH_DASH] = ACTIONS(1375), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1793), - [anon_sym_DASH] = ACTIONS(1793), - [anon_sym_STAR] = ACTIONS(1797), - [anon_sym_CARET] = ACTIONS(1795), - [anon_sym_AMP] = ACTIONS(1795), - [anon_sym_this] = ACTIONS(1323), + [anon_sym_PLUS] = ACTIONS(1373), + [anon_sym_DASH] = ACTIONS(1373), + [anon_sym_STAR] = ACTIONS(1377), + [anon_sym_CARET] = ACTIONS(1375), + [anon_sym_AMP] = ACTIONS(1375), + [anon_sym_this] = ACTIONS(1321), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1325), + [anon_sym_base] = ACTIONS(1323), [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1319), + [anon_sym_unchecked] = ACTIONS(1317), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1799), + [anon_sym_throw] = ACTIONS(1379), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1801), - [anon_sym_DOT_DOT] = ACTIONS(1803), + [anon_sym_await] = ACTIONS(1381), + [anon_sym_DOT_DOT] = ACTIONS(1383), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -226122,19 +226008,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1333), + [anon_sym_stackalloc] = ACTIONS(1331), [anon_sym_sizeof] = ACTIONS(129), [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(1335), - [anon_sym___reftype] = ACTIONS(1337), - [anon_sym___refvalue] = ACTIONS(1339), + [anon_sym___makeref] = ACTIONS(1333), + [anon_sym___reftype] = ACTIONS(1335), + [anon_sym___refvalue] = ACTIONS(1337), [sym_null_literal] = ACTIONS(139), [anon_sym_SQUOTE] = ACTIONS(141), [sym_integer_literal] = ACTIONS(139), [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1341), + [aux_sym_preproc_if_token1] = ACTIONS(1339), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -226151,84 +226037,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [1091] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2762), - [sym__name] = STATE(5889), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2204), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(4858), - [sym_non_lvalue_expression] = STATE(3438), - [sym_lvalue_expression] = STATE(3548), - [sym__expression_statement_expression] = STATE(3362), - [sym_assignment_expression] = STATE(3449), - [sym_binary_expression] = STATE(3362), - [sym_postfix_unary_expression] = STATE(3449), - [sym_prefix_unary_expression] = STATE(3449), - [sym__pointer_indirection_expression] = STATE(2747), - [sym_query_expression] = STATE(3362), - [sym_from_clause] = STATE(6146), - [sym_conditional_expression] = STATE(3362), - [sym_conditional_access_expression] = STATE(3362), - [sym_as_expression] = STATE(3362), - [sym_is_expression] = STATE(3362), - [sym_is_pattern_expression] = STATE(3362), - [sym_cast_expression] = STATE(3362), - [sym_checked_expression] = STATE(3362), - [sym_invocation_expression] = STATE(3449), - [sym_switch_expression] = STATE(3362), - [sym_await_expression] = STATE(3449), - [sym_throw_expression] = STATE(3362), - [sym_element_access_expression] = STATE(2747), - [sym_interpolated_string_expression] = STATE(3362), - [sym_member_access_expression] = STATE(2747), - [sym_object_creation_expression] = STATE(3449), - [sym_parenthesized_expression] = STATE(3449), - [sym__parenthesized_lvalue_expression] = STATE(2747), - [sym_lambda_expression] = STATE(3362), - [sym__lambda_expression_init] = STATE(7772), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3362), - [sym_anonymous_method_expression] = STATE(3362), - [sym_anonymous_object_creation_expression] = STATE(3362), - [sym_implicit_array_creation_expression] = STATE(3362), - [sym_implicit_object_creation_expression] = STATE(3362), - [sym_implicit_stackalloc_expression] = STATE(3362), - [sym_initializer_expression] = STATE(3362), - [sym_default_expression] = STATE(3362), - [sym_with_expression] = STATE(3362), - [sym_sizeof_expression] = STATE(3362), - [sym_typeof_expression] = STATE(3362), - [sym_makeref_expression] = STATE(3362), - [sym_ref_expression] = STATE(3362), - [sym_reftype_expression] = STATE(3362), - [sym_refvalue_expression] = STATE(3362), - [sym_stackalloc_expression] = STATE(3362), - [sym_range_expression] = STATE(3362), - [sym_tuple_expression] = STATE(2747), - [sym_literal] = STATE(3362), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3362), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2816), + [sym__name] = STATE(5873), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2196), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(4280), + [sym_non_lvalue_expression] = STATE(3495), + [sym_lvalue_expression] = STATE(3208), + [sym__expression_statement_expression] = STATE(3462), + [sym_assignment_expression] = STATE(3497), + [sym_binary_expression] = STATE(3462), + [sym_postfix_unary_expression] = STATE(3497), + [sym_prefix_unary_expression] = STATE(3497), + [sym__pointer_indirection_expression] = STATE(2815), + [sym_query_expression] = STATE(3462), + [sym_from_clause] = STATE(6140), + [sym_conditional_expression] = STATE(3462), + [sym_conditional_access_expression] = STATE(3462), + [sym_as_expression] = STATE(3462), + [sym_is_expression] = STATE(3462), + [sym_is_pattern_expression] = STATE(3462), + [sym_cast_expression] = STATE(3462), + [sym_checked_expression] = STATE(3462), + [sym_invocation_expression] = STATE(3497), + [sym_switch_expression] = STATE(3462), + [sym_await_expression] = STATE(3497), + [sym_throw_expression] = STATE(3462), + [sym_element_access_expression] = STATE(2815), + [sym_interpolated_string_expression] = STATE(3462), + [sym_member_access_expression] = STATE(2815), + [sym_object_creation_expression] = STATE(3497), + [sym_parenthesized_expression] = STATE(3497), + [sym__parenthesized_lvalue_expression] = STATE(2815), + [sym_lambda_expression] = STATE(3462), + [sym__lambda_expression_init] = STATE(7520), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3462), + [sym_anonymous_method_expression] = STATE(3462), + [sym_anonymous_object_creation_expression] = STATE(3462), + [sym_implicit_array_creation_expression] = STATE(3462), + [sym_implicit_object_creation_expression] = STATE(3462), + [sym_implicit_stackalloc_expression] = STATE(3462), + [sym_initializer_expression] = STATE(3462), + [sym_default_expression] = STATE(3462), + [sym_with_expression] = STATE(3462), + [sym_sizeof_expression] = STATE(3462), + [sym_typeof_expression] = STATE(3462), + [sym_makeref_expression] = STATE(3462), + [sym_ref_expression] = STATE(3462), + [sym_reftype_expression] = STATE(3462), + [sym_refvalue_expression] = STATE(3462), + [sym_stackalloc_expression] = STATE(3462), + [sym_range_expression] = STATE(3462), + [sym_tuple_expression] = STATE(2815), + [sym_literal] = STATE(3462), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3462), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(1091), [sym_preproc_endregion] = STATE(1091), [sym_preproc_line] = STATE(1091), @@ -226238,47 +226124,47 @@ 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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3385), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3367), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1307), - [anon_sym_LPAREN] = ACTIONS(1789), - [anon_sym_ref] = ACTIONS(1791), - [anon_sym_LBRACE] = ACTIONS(1313), - [anon_sym_delegate] = ACTIONS(1315), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1305), + [anon_sym_LPAREN] = ACTIONS(1369), + [anon_sym_ref] = ACTIONS(1371), + [anon_sym_LBRACE] = ACTIONS(1311), + [anon_sym_delegate] = ACTIONS(1313), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1317), + [anon_sym_new] = ACTIONS(1315), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1319), - [anon_sym_BANG] = ACTIONS(1795), - [anon_sym_TILDE] = ACTIONS(1795), - [anon_sym_PLUS_PLUS] = ACTIONS(1795), - [anon_sym_DASH_DASH] = ACTIONS(1795), + [anon_sym_checked] = ACTIONS(1317), + [anon_sym_BANG] = ACTIONS(1375), + [anon_sym_TILDE] = ACTIONS(1375), + [anon_sym_PLUS_PLUS] = ACTIONS(1375), + [anon_sym_DASH_DASH] = ACTIONS(1375), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1793), - [anon_sym_DASH] = ACTIONS(1793), - [anon_sym_STAR] = ACTIONS(1797), - [anon_sym_CARET] = ACTIONS(1795), - [anon_sym_AMP] = ACTIONS(1795), - [anon_sym_this] = ACTIONS(1323), + [anon_sym_PLUS] = ACTIONS(1373), + [anon_sym_DASH] = ACTIONS(1373), + [anon_sym_STAR] = ACTIONS(1377), + [anon_sym_CARET] = ACTIONS(1375), + [anon_sym_AMP] = ACTIONS(1375), + [anon_sym_this] = ACTIONS(1321), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1325), + [anon_sym_base] = ACTIONS(1323), [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1319), + [anon_sym_unchecked] = ACTIONS(1317), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1799), + [anon_sym_throw] = ACTIONS(1379), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1801), - [anon_sym_DOT_DOT] = ACTIONS(1803), + [anon_sym_await] = ACTIONS(1381), + [anon_sym_DOT_DOT] = ACTIONS(1383), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -226291,19 +226177,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1333), + [anon_sym_stackalloc] = ACTIONS(1331), [anon_sym_sizeof] = ACTIONS(129), [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(1335), - [anon_sym___reftype] = ACTIONS(1337), - [anon_sym___refvalue] = ACTIONS(1339), + [anon_sym___makeref] = ACTIONS(1333), + [anon_sym___reftype] = ACTIONS(1335), + [anon_sym___refvalue] = ACTIONS(1337), [sym_null_literal] = ACTIONS(139), [anon_sym_SQUOTE] = ACTIONS(141), [sym_integer_literal] = ACTIONS(139), [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1341), + [aux_sym_preproc_if_token1] = ACTIONS(1339), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -226320,84 +226206,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [1092] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2762), - [sym__name] = STATE(5889), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2204), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(4859), - [sym_non_lvalue_expression] = STATE(3438), - [sym_lvalue_expression] = STATE(3548), - [sym__expression_statement_expression] = STATE(3362), - [sym_assignment_expression] = STATE(3449), - [sym_binary_expression] = STATE(3362), - [sym_postfix_unary_expression] = STATE(3449), - [sym_prefix_unary_expression] = STATE(3449), - [sym__pointer_indirection_expression] = STATE(2747), - [sym_query_expression] = STATE(3362), - [sym_from_clause] = STATE(6146), - [sym_conditional_expression] = STATE(3362), - [sym_conditional_access_expression] = STATE(3362), - [sym_as_expression] = STATE(3362), - [sym_is_expression] = STATE(3362), - [sym_is_pattern_expression] = STATE(3362), - [sym_cast_expression] = STATE(3362), - [sym_checked_expression] = STATE(3362), - [sym_invocation_expression] = STATE(3449), - [sym_switch_expression] = STATE(3362), - [sym_await_expression] = STATE(3449), - [sym_throw_expression] = STATE(3362), - [sym_element_access_expression] = STATE(2747), - [sym_interpolated_string_expression] = STATE(3362), - [sym_member_access_expression] = STATE(2747), - [sym_object_creation_expression] = STATE(3449), - [sym_parenthesized_expression] = STATE(3449), - [sym__parenthesized_lvalue_expression] = STATE(2747), - [sym_lambda_expression] = STATE(3362), - [sym__lambda_expression_init] = STATE(7772), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3362), - [sym_anonymous_method_expression] = STATE(3362), - [sym_anonymous_object_creation_expression] = STATE(3362), - [sym_implicit_array_creation_expression] = STATE(3362), - [sym_implicit_object_creation_expression] = STATE(3362), - [sym_implicit_stackalloc_expression] = STATE(3362), - [sym_initializer_expression] = STATE(3362), - [sym_default_expression] = STATE(3362), - [sym_with_expression] = STATE(3362), - [sym_sizeof_expression] = STATE(3362), - [sym_typeof_expression] = STATE(3362), - [sym_makeref_expression] = STATE(3362), - [sym_ref_expression] = STATE(3362), - [sym_reftype_expression] = STATE(3362), - [sym_refvalue_expression] = STATE(3362), - [sym_stackalloc_expression] = STATE(3362), - [sym_range_expression] = STATE(3362), - [sym_tuple_expression] = STATE(2747), - [sym_literal] = STATE(3362), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3362), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(5873), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2238), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(5079), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3526), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3102), + [sym_postfix_unary_expression] = STATE(3079), + [sym_prefix_unary_expression] = STATE(3079), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6134), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3102), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3079), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3102), + [sym_member_access_expression] = STATE(2472), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3079), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7455), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(3102), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3102), + [sym_typeof_expression] = STATE(3102), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2472), + [sym_literal] = STATE(3102), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(1092), [sym_preproc_endregion] = STATE(1092), [sym_preproc_line] = STATE(1092), @@ -226407,47 +226293,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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3385), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1307), - [anon_sym_LPAREN] = ACTIONS(1789), - [anon_sym_ref] = ACTIONS(1791), - [anon_sym_LBRACE] = ACTIONS(1313), - [anon_sym_delegate] = ACTIONS(1315), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1479), + [anon_sym_LPAREN] = ACTIONS(1629), + [anon_sym_ref] = ACTIONS(1631), + [anon_sym_LBRACE] = ACTIONS(1481), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1317), + [anon_sym_new] = ACTIONS(1515), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1319), - [anon_sym_BANG] = ACTIONS(1795), - [anon_sym_TILDE] = ACTIONS(1795), - [anon_sym_PLUS_PLUS] = ACTIONS(1795), - [anon_sym_DASH_DASH] = ACTIONS(1795), + [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(1793), - [anon_sym_DASH] = ACTIONS(1793), - [anon_sym_STAR] = ACTIONS(1797), - [anon_sym_CARET] = ACTIONS(1795), - [anon_sym_AMP] = ACTIONS(1795), - [anon_sym_this] = ACTIONS(1323), + [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_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1325), + [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1319), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1799), + [anon_sym_throw] = ACTIONS(1633), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1801), - [anon_sym_DOT_DOT] = ACTIONS(1803), + [anon_sym_await] = ACTIONS(1635), + [anon_sym_DOT_DOT] = ACTIONS(1637), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -226460,19 +226346,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1333), + [anon_sym_stackalloc] = ACTIONS(127), [anon_sym_sizeof] = ACTIONS(129), [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(1335), - [anon_sym___reftype] = ACTIONS(1337), - [anon_sym___refvalue] = ACTIONS(1339), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), [sym_null_literal] = ACTIONS(139), [anon_sym_SQUOTE] = ACTIONS(141), [sym_integer_literal] = ACTIONS(139), [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1341), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -226489,84 +226375,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [1093] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2762), - [sym__name] = STATE(5889), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2204), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(4860), - [sym_non_lvalue_expression] = STATE(3438), - [sym_lvalue_expression] = STATE(3548), - [sym__expression_statement_expression] = STATE(3362), - [sym_assignment_expression] = STATE(3449), - [sym_binary_expression] = STATE(3362), - [sym_postfix_unary_expression] = STATE(3449), - [sym_prefix_unary_expression] = STATE(3449), - [sym__pointer_indirection_expression] = STATE(2747), - [sym_query_expression] = STATE(3362), - [sym_from_clause] = STATE(6146), - [sym_conditional_expression] = STATE(3362), - [sym_conditional_access_expression] = STATE(3362), - [sym_as_expression] = STATE(3362), - [sym_is_expression] = STATE(3362), - [sym_is_pattern_expression] = STATE(3362), - [sym_cast_expression] = STATE(3362), - [sym_checked_expression] = STATE(3362), - [sym_invocation_expression] = STATE(3449), - [sym_switch_expression] = STATE(3362), - [sym_await_expression] = STATE(3449), - [sym_throw_expression] = STATE(3362), - [sym_element_access_expression] = STATE(2747), - [sym_interpolated_string_expression] = STATE(3362), - [sym_member_access_expression] = STATE(2747), - [sym_object_creation_expression] = STATE(3449), - [sym_parenthesized_expression] = STATE(3449), - [sym__parenthesized_lvalue_expression] = STATE(2747), - [sym_lambda_expression] = STATE(3362), - [sym__lambda_expression_init] = STATE(7772), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3362), - [sym_anonymous_method_expression] = STATE(3362), - [sym_anonymous_object_creation_expression] = STATE(3362), - [sym_implicit_array_creation_expression] = STATE(3362), - [sym_implicit_object_creation_expression] = STATE(3362), - [sym_implicit_stackalloc_expression] = STATE(3362), - [sym_initializer_expression] = STATE(3362), - [sym_default_expression] = STATE(3362), - [sym_with_expression] = STATE(3362), - [sym_sizeof_expression] = STATE(3362), - [sym_typeof_expression] = STATE(3362), - [sym_makeref_expression] = STATE(3362), - [sym_ref_expression] = STATE(3362), - [sym_reftype_expression] = STATE(3362), - [sym_refvalue_expression] = STATE(3362), - [sym_stackalloc_expression] = STATE(3362), - [sym_range_expression] = STATE(3362), - [sym_tuple_expression] = STATE(2747), - [sym_literal] = STATE(3362), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3362), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2816), + [sym__name] = STATE(5873), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2196), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(4281), + [sym_non_lvalue_expression] = STATE(3495), + [sym_lvalue_expression] = STATE(3208), + [sym__expression_statement_expression] = STATE(3462), + [sym_assignment_expression] = STATE(3497), + [sym_binary_expression] = STATE(3462), + [sym_postfix_unary_expression] = STATE(3497), + [sym_prefix_unary_expression] = STATE(3497), + [sym__pointer_indirection_expression] = STATE(2815), + [sym_query_expression] = STATE(3462), + [sym_from_clause] = STATE(6140), + [sym_conditional_expression] = STATE(3462), + [sym_conditional_access_expression] = STATE(3462), + [sym_as_expression] = STATE(3462), + [sym_is_expression] = STATE(3462), + [sym_is_pattern_expression] = STATE(3462), + [sym_cast_expression] = STATE(3462), + [sym_checked_expression] = STATE(3462), + [sym_invocation_expression] = STATE(3497), + [sym_switch_expression] = STATE(3462), + [sym_await_expression] = STATE(3497), + [sym_throw_expression] = STATE(3462), + [sym_element_access_expression] = STATE(2815), + [sym_interpolated_string_expression] = STATE(3462), + [sym_member_access_expression] = STATE(2815), + [sym_object_creation_expression] = STATE(3497), + [sym_parenthesized_expression] = STATE(3497), + [sym__parenthesized_lvalue_expression] = STATE(2815), + [sym_lambda_expression] = STATE(3462), + [sym__lambda_expression_init] = STATE(7520), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3462), + [sym_anonymous_method_expression] = STATE(3462), + [sym_anonymous_object_creation_expression] = STATE(3462), + [sym_implicit_array_creation_expression] = STATE(3462), + [sym_implicit_object_creation_expression] = STATE(3462), + [sym_implicit_stackalloc_expression] = STATE(3462), + [sym_initializer_expression] = STATE(3462), + [sym_default_expression] = STATE(3462), + [sym_with_expression] = STATE(3462), + [sym_sizeof_expression] = STATE(3462), + [sym_typeof_expression] = STATE(3462), + [sym_makeref_expression] = STATE(3462), + [sym_ref_expression] = STATE(3462), + [sym_reftype_expression] = STATE(3462), + [sym_refvalue_expression] = STATE(3462), + [sym_stackalloc_expression] = STATE(3462), + [sym_range_expression] = STATE(3462), + [sym_tuple_expression] = STATE(2815), + [sym_literal] = STATE(3462), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3462), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(1093), [sym_preproc_endregion] = STATE(1093), [sym_preproc_line] = STATE(1093), @@ -226576,47 +226462,47 @@ 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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3385), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3367), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1307), - [anon_sym_LPAREN] = ACTIONS(1789), - [anon_sym_ref] = ACTIONS(1791), - [anon_sym_LBRACE] = ACTIONS(1313), - [anon_sym_delegate] = ACTIONS(1315), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1305), + [anon_sym_LPAREN] = ACTIONS(1369), + [anon_sym_ref] = ACTIONS(1371), + [anon_sym_LBRACE] = ACTIONS(1311), + [anon_sym_delegate] = ACTIONS(1313), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1317), + [anon_sym_new] = ACTIONS(1315), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1319), - [anon_sym_BANG] = ACTIONS(1795), - [anon_sym_TILDE] = ACTIONS(1795), - [anon_sym_PLUS_PLUS] = ACTIONS(1795), - [anon_sym_DASH_DASH] = ACTIONS(1795), + [anon_sym_checked] = ACTIONS(1317), + [anon_sym_BANG] = ACTIONS(1375), + [anon_sym_TILDE] = ACTIONS(1375), + [anon_sym_PLUS_PLUS] = ACTIONS(1375), + [anon_sym_DASH_DASH] = ACTIONS(1375), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1793), - [anon_sym_DASH] = ACTIONS(1793), - [anon_sym_STAR] = ACTIONS(1797), - [anon_sym_CARET] = ACTIONS(1795), - [anon_sym_AMP] = ACTIONS(1795), - [anon_sym_this] = ACTIONS(1323), + [anon_sym_PLUS] = ACTIONS(1373), + [anon_sym_DASH] = ACTIONS(1373), + [anon_sym_STAR] = ACTIONS(1377), + [anon_sym_CARET] = ACTIONS(1375), + [anon_sym_AMP] = ACTIONS(1375), + [anon_sym_this] = ACTIONS(1321), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1325), + [anon_sym_base] = ACTIONS(1323), [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1319), + [anon_sym_unchecked] = ACTIONS(1317), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1799), + [anon_sym_throw] = ACTIONS(1379), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1801), - [anon_sym_DOT_DOT] = ACTIONS(1803), + [anon_sym_await] = ACTIONS(1381), + [anon_sym_DOT_DOT] = ACTIONS(1383), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -226629,19 +226515,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1333), + [anon_sym_stackalloc] = ACTIONS(1331), [anon_sym_sizeof] = ACTIONS(129), [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(1335), - [anon_sym___reftype] = ACTIONS(1337), - [anon_sym___refvalue] = ACTIONS(1339), + [anon_sym___makeref] = ACTIONS(1333), + [anon_sym___reftype] = ACTIONS(1335), + [anon_sym___refvalue] = ACTIONS(1337), [sym_null_literal] = ACTIONS(139), [anon_sym_SQUOTE] = ACTIONS(141), [sym_integer_literal] = ACTIONS(139), [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1341), + [aux_sym_preproc_if_token1] = ACTIONS(1339), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -226658,84 +226544,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [1094] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2762), - [sym__name] = STATE(5889), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2204), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(4861), - [sym_non_lvalue_expression] = STATE(3438), - [sym_lvalue_expression] = STATE(3548), - [sym__expression_statement_expression] = STATE(3362), - [sym_assignment_expression] = STATE(3449), - [sym_binary_expression] = STATE(3362), - [sym_postfix_unary_expression] = STATE(3449), - [sym_prefix_unary_expression] = STATE(3449), - [sym__pointer_indirection_expression] = STATE(2747), - [sym_query_expression] = STATE(3362), - [sym_from_clause] = STATE(6146), - [sym_conditional_expression] = STATE(3362), - [sym_conditional_access_expression] = STATE(3362), - [sym_as_expression] = STATE(3362), - [sym_is_expression] = STATE(3362), - [sym_is_pattern_expression] = STATE(3362), - [sym_cast_expression] = STATE(3362), - [sym_checked_expression] = STATE(3362), - [sym_invocation_expression] = STATE(3449), - [sym_switch_expression] = STATE(3362), - [sym_await_expression] = STATE(3449), - [sym_throw_expression] = STATE(3362), - [sym_element_access_expression] = STATE(2747), - [sym_interpolated_string_expression] = STATE(3362), - [sym_member_access_expression] = STATE(2747), - [sym_object_creation_expression] = STATE(3449), - [sym_parenthesized_expression] = STATE(3449), - [sym__parenthesized_lvalue_expression] = STATE(2747), - [sym_lambda_expression] = STATE(3362), - [sym__lambda_expression_init] = STATE(7772), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3362), - [sym_anonymous_method_expression] = STATE(3362), - [sym_anonymous_object_creation_expression] = STATE(3362), - [sym_implicit_array_creation_expression] = STATE(3362), - [sym_implicit_object_creation_expression] = STATE(3362), - [sym_implicit_stackalloc_expression] = STATE(3362), - [sym_initializer_expression] = STATE(3362), - [sym_default_expression] = STATE(3362), - [sym_with_expression] = STATE(3362), - [sym_sizeof_expression] = STATE(3362), - [sym_typeof_expression] = STATE(3362), - [sym_makeref_expression] = STATE(3362), - [sym_ref_expression] = STATE(3362), - [sym_reftype_expression] = STATE(3362), - [sym_refvalue_expression] = STATE(3362), - [sym_stackalloc_expression] = STATE(3362), - [sym_range_expression] = STATE(3362), - [sym_tuple_expression] = STATE(2747), - [sym_literal] = STATE(3362), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3362), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2816), + [sym__name] = STATE(5873), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2196), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(4282), + [sym_non_lvalue_expression] = STATE(3495), + [sym_lvalue_expression] = STATE(3208), + [sym__expression_statement_expression] = STATE(3462), + [sym_assignment_expression] = STATE(3497), + [sym_binary_expression] = STATE(3462), + [sym_postfix_unary_expression] = STATE(3497), + [sym_prefix_unary_expression] = STATE(3497), + [sym__pointer_indirection_expression] = STATE(2815), + [sym_query_expression] = STATE(3462), + [sym_from_clause] = STATE(6140), + [sym_conditional_expression] = STATE(3462), + [sym_conditional_access_expression] = STATE(3462), + [sym_as_expression] = STATE(3462), + [sym_is_expression] = STATE(3462), + [sym_is_pattern_expression] = STATE(3462), + [sym_cast_expression] = STATE(3462), + [sym_checked_expression] = STATE(3462), + [sym_invocation_expression] = STATE(3497), + [sym_switch_expression] = STATE(3462), + [sym_await_expression] = STATE(3497), + [sym_throw_expression] = STATE(3462), + [sym_element_access_expression] = STATE(2815), + [sym_interpolated_string_expression] = STATE(3462), + [sym_member_access_expression] = STATE(2815), + [sym_object_creation_expression] = STATE(3497), + [sym_parenthesized_expression] = STATE(3497), + [sym__parenthesized_lvalue_expression] = STATE(2815), + [sym_lambda_expression] = STATE(3462), + [sym__lambda_expression_init] = STATE(7520), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3462), + [sym_anonymous_method_expression] = STATE(3462), + [sym_anonymous_object_creation_expression] = STATE(3462), + [sym_implicit_array_creation_expression] = STATE(3462), + [sym_implicit_object_creation_expression] = STATE(3462), + [sym_implicit_stackalloc_expression] = STATE(3462), + [sym_initializer_expression] = STATE(3462), + [sym_default_expression] = STATE(3462), + [sym_with_expression] = STATE(3462), + [sym_sizeof_expression] = STATE(3462), + [sym_typeof_expression] = STATE(3462), + [sym_makeref_expression] = STATE(3462), + [sym_ref_expression] = STATE(3462), + [sym_reftype_expression] = STATE(3462), + [sym_refvalue_expression] = STATE(3462), + [sym_stackalloc_expression] = STATE(3462), + [sym_range_expression] = STATE(3462), + [sym_tuple_expression] = STATE(2815), + [sym_literal] = STATE(3462), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3462), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(1094), [sym_preproc_endregion] = STATE(1094), [sym_preproc_line] = STATE(1094), @@ -226745,47 +226631,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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3385), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3367), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1307), - [anon_sym_LPAREN] = ACTIONS(1789), - [anon_sym_ref] = ACTIONS(1791), - [anon_sym_LBRACE] = ACTIONS(1313), - [anon_sym_delegate] = ACTIONS(1315), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1305), + [anon_sym_LPAREN] = ACTIONS(1369), + [anon_sym_ref] = ACTIONS(1371), + [anon_sym_LBRACE] = ACTIONS(1311), + [anon_sym_delegate] = ACTIONS(1313), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1317), + [anon_sym_new] = ACTIONS(1315), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1319), - [anon_sym_BANG] = ACTIONS(1795), - [anon_sym_TILDE] = ACTIONS(1795), - [anon_sym_PLUS_PLUS] = ACTIONS(1795), - [anon_sym_DASH_DASH] = ACTIONS(1795), + [anon_sym_checked] = ACTIONS(1317), + [anon_sym_BANG] = ACTIONS(1375), + [anon_sym_TILDE] = ACTIONS(1375), + [anon_sym_PLUS_PLUS] = ACTIONS(1375), + [anon_sym_DASH_DASH] = ACTIONS(1375), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1793), - [anon_sym_DASH] = ACTIONS(1793), - [anon_sym_STAR] = ACTIONS(1797), - [anon_sym_CARET] = ACTIONS(1795), - [anon_sym_AMP] = ACTIONS(1795), - [anon_sym_this] = ACTIONS(1323), + [anon_sym_PLUS] = ACTIONS(1373), + [anon_sym_DASH] = ACTIONS(1373), + [anon_sym_STAR] = ACTIONS(1377), + [anon_sym_CARET] = ACTIONS(1375), + [anon_sym_AMP] = ACTIONS(1375), + [anon_sym_this] = ACTIONS(1321), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1325), + [anon_sym_base] = ACTIONS(1323), [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1319), + [anon_sym_unchecked] = ACTIONS(1317), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1799), + [anon_sym_throw] = ACTIONS(1379), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1801), - [anon_sym_DOT_DOT] = ACTIONS(1803), + [anon_sym_await] = ACTIONS(1381), + [anon_sym_DOT_DOT] = ACTIONS(1383), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -226798,19 +226684,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1333), + [anon_sym_stackalloc] = ACTIONS(1331), [anon_sym_sizeof] = ACTIONS(129), [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(1335), - [anon_sym___reftype] = ACTIONS(1337), - [anon_sym___refvalue] = ACTIONS(1339), + [anon_sym___makeref] = ACTIONS(1333), + [anon_sym___reftype] = ACTIONS(1335), + [anon_sym___refvalue] = ACTIONS(1337), [sym_null_literal] = ACTIONS(139), [anon_sym_SQUOTE] = ACTIONS(141), [sym_integer_literal] = ACTIONS(139), [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1341), + [aux_sym_preproc_if_token1] = ACTIONS(1339), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -226827,84 +226713,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [1095] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2762), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2901), [sym__name] = STATE(5889), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2204), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(4863), - [sym_non_lvalue_expression] = STATE(3438), - [sym_lvalue_expression] = STATE(3548), - [sym__expression_statement_expression] = STATE(3362), - [sym_assignment_expression] = STATE(3449), - [sym_binary_expression] = STATE(3362), - [sym_postfix_unary_expression] = STATE(3449), - [sym_prefix_unary_expression] = STATE(3449), - [sym__pointer_indirection_expression] = STATE(2747), - [sym_query_expression] = STATE(3362), - [sym_from_clause] = STATE(6146), - [sym_conditional_expression] = STATE(3362), - [sym_conditional_access_expression] = STATE(3362), - [sym_as_expression] = STATE(3362), - [sym_is_expression] = STATE(3362), - [sym_is_pattern_expression] = STATE(3362), - [sym_cast_expression] = STATE(3362), - [sym_checked_expression] = STATE(3362), - [sym_invocation_expression] = STATE(3449), - [sym_switch_expression] = STATE(3362), - [sym_await_expression] = STATE(3449), - [sym_throw_expression] = STATE(3362), - [sym_element_access_expression] = STATE(2747), - [sym_interpolated_string_expression] = STATE(3362), - [sym_member_access_expression] = STATE(2747), - [sym_object_creation_expression] = STATE(3449), - [sym_parenthesized_expression] = STATE(3449), - [sym__parenthesized_lvalue_expression] = STATE(2747), - [sym_lambda_expression] = STATE(3362), - [sym__lambda_expression_init] = STATE(7772), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3362), - [sym_anonymous_method_expression] = STATE(3362), - [sym_anonymous_object_creation_expression] = STATE(3362), - [sym_implicit_array_creation_expression] = STATE(3362), - [sym_implicit_object_creation_expression] = STATE(3362), - [sym_implicit_stackalloc_expression] = STATE(3362), - [sym_initializer_expression] = STATE(3362), - [sym_default_expression] = STATE(3362), - [sym_with_expression] = STATE(3362), - [sym_sizeof_expression] = STATE(3362), - [sym_typeof_expression] = STATE(3362), - [sym_makeref_expression] = STATE(3362), - [sym_ref_expression] = STATE(3362), - [sym_reftype_expression] = STATE(3362), - [sym_refvalue_expression] = STATE(3362), - [sym_stackalloc_expression] = STATE(3362), - [sym_range_expression] = STATE(3362), - [sym_tuple_expression] = STATE(2747), - [sym_literal] = STATE(3362), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3362), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2349), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(3765), + [sym_non_lvalue_expression] = STATE(3685), + [sym_lvalue_expression] = STATE(2985), + [sym__expression_statement_expression] = STATE(3836), + [sym_assignment_expression] = STATE(3689), + [sym_binary_expression] = STATE(3836), + [sym_postfix_unary_expression] = STATE(3689), + [sym_prefix_unary_expression] = STATE(3689), + [sym__pointer_indirection_expression] = STATE(2906), + [sym_query_expression] = STATE(3836), + [sym_from_clause] = STATE(6157), + [sym_conditional_expression] = STATE(3836), + [sym_conditional_access_expression] = STATE(3836), + [sym_as_expression] = STATE(3836), + [sym_is_expression] = STATE(3836), + [sym_is_pattern_expression] = STATE(3836), + [sym_cast_expression] = STATE(3836), + [sym_checked_expression] = STATE(3836), + [sym_invocation_expression] = STATE(3689), + [sym_switch_expression] = STATE(3836), + [sym_await_expression] = STATE(3689), + [sym_throw_expression] = STATE(3836), + [sym_element_access_expression] = STATE(2906), + [sym_interpolated_string_expression] = STATE(3836), + [sym_member_access_expression] = STATE(2906), + [sym_object_creation_expression] = STATE(3689), + [sym_parenthesized_expression] = STATE(3689), + [sym__parenthesized_lvalue_expression] = STATE(2906), + [sym_lambda_expression] = STATE(3836), + [sym__lambda_expression_init] = STATE(7485), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3836), + [sym_anonymous_method_expression] = STATE(3836), + [sym_anonymous_object_creation_expression] = STATE(3836), + [sym_implicit_array_creation_expression] = STATE(3836), + [sym_implicit_object_creation_expression] = STATE(3836), + [sym_implicit_stackalloc_expression] = STATE(3836), + [sym_initializer_expression] = STATE(3836), + [sym_default_expression] = STATE(3836), + [sym_with_expression] = STATE(3836), + [sym_sizeof_expression] = STATE(3836), + [sym_typeof_expression] = STATE(3836), + [sym_makeref_expression] = STATE(3836), + [sym_ref_expression] = STATE(3836), + [sym_reftype_expression] = STATE(3836), + [sym_refvalue_expression] = STATE(3836), + [sym_stackalloc_expression] = STATE(3836), + [sym_range_expression] = STATE(3836), + [sym_tuple_expression] = STATE(2906), + [sym_literal] = STATE(3836), + [sym_character_literal] = STATE(3843), + [sym_string_literal] = STATE(3843), + [sym_raw_string_literal] = STATE(3843), + [sym_boolean_literal] = STATE(3843), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3836), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(1095), [sym_preproc_endregion] = STATE(1095), [sym_preproc_line] = STATE(1095), @@ -226914,47 +226800,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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3385), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3477), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1307), - [anon_sym_LPAREN] = ACTIONS(1789), - [anon_sym_ref] = ACTIONS(1791), - [anon_sym_LBRACE] = ACTIONS(1313), - [anon_sym_delegate] = ACTIONS(1315), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1655), + [anon_sym_LPAREN] = ACTIONS(2043), + [anon_sym_ref] = ACTIONS(2045), + [anon_sym_LBRACE] = ACTIONS(1661), + [anon_sym_delegate] = ACTIONS(1663), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1317), + [anon_sym_new] = ACTIONS(1759), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1319), - [anon_sym_BANG] = ACTIONS(1795), - [anon_sym_TILDE] = ACTIONS(1795), - [anon_sym_PLUS_PLUS] = ACTIONS(1795), - [anon_sym_DASH_DASH] = ACTIONS(1795), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1793), - [anon_sym_DASH] = ACTIONS(1793), - [anon_sym_STAR] = ACTIONS(1797), - [anon_sym_CARET] = ACTIONS(1795), - [anon_sym_AMP] = ACTIONS(1795), - [anon_sym_this] = ACTIONS(1323), + [anon_sym_checked] = ACTIONS(1667), + [anon_sym_BANG] = ACTIONS(2049), + [anon_sym_TILDE] = ACTIONS(2049), + [anon_sym_PLUS_PLUS] = ACTIONS(2049), + [anon_sym_DASH_DASH] = ACTIONS(2049), + [anon_sym_true] = ACTIONS(1673), + [anon_sym_false] = ACTIONS(1673), + [anon_sym_PLUS] = ACTIONS(2047), + [anon_sym_DASH] = ACTIONS(2047), + [anon_sym_STAR] = ACTIONS(1765), + [anon_sym_CARET] = ACTIONS(2049), + [anon_sym_AMP] = ACTIONS(2049), + [anon_sym_this] = ACTIONS(1677), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1325), + [anon_sym_base] = ACTIONS(1679), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1319), + [sym_predefined_type] = ACTIONS(1681), + [anon_sym_unchecked] = ACTIONS(1667), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1799), + [anon_sym_default] = ACTIONS(1683), + [anon_sym_throw] = ACTIONS(2051), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1801), - [anon_sym_DOT_DOT] = ACTIONS(1803), + [anon_sym_await] = ACTIONS(2053), + [anon_sym_DOT_DOT] = ACTIONS(2055), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -226967,19 +226853,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1333), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(1335), - [anon_sym___reftype] = ACTIONS(1337), - [anon_sym___refvalue] = ACTIONS(1339), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1341), + [anon_sym_stackalloc] = ACTIONS(1691), + [anon_sym_sizeof] = ACTIONS(1693), + [anon_sym_typeof] = ACTIONS(1695), + [anon_sym___makeref] = ACTIONS(1697), + [anon_sym___reftype] = ACTIONS(1699), + [anon_sym___refvalue] = ACTIONS(1701), + [sym_null_literal] = ACTIONS(1703), + [anon_sym_SQUOTE] = ACTIONS(1705), + [sym_integer_literal] = ACTIONS(1703), + [sym_real_literal] = ACTIONS(1707), + [anon_sym_DQUOTE] = ACTIONS(1709), + [sym_verbatim_string_literal] = ACTIONS(1707), + [aux_sym_preproc_if_token1] = ACTIONS(1711), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -226990,90 +226876,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(151), - [sym_interpolation_verbatim_start] = ACTIONS(153), - [sym_interpolation_raw_start] = ACTIONS(155), - [sym_raw_string_start] = ACTIONS(157), + [sym_interpolation_regular_start] = ACTIONS(1713), + [sym_interpolation_verbatim_start] = ACTIONS(1715), + [sym_interpolation_raw_start] = ACTIONS(1717), + [sym_raw_string_start] = ACTIONS(1719), }, [1096] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2762), - [sym__name] = STATE(5889), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2204), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(4864), - [sym_non_lvalue_expression] = STATE(3438), - [sym_lvalue_expression] = STATE(3548), - [sym__expression_statement_expression] = STATE(3362), - [sym_assignment_expression] = STATE(3449), - [sym_binary_expression] = STATE(3362), - [sym_postfix_unary_expression] = STATE(3449), - [sym_prefix_unary_expression] = STATE(3449), - [sym__pointer_indirection_expression] = STATE(2747), - [sym_query_expression] = STATE(3362), - [sym_from_clause] = STATE(6146), - [sym_conditional_expression] = STATE(3362), - [sym_conditional_access_expression] = STATE(3362), - [sym_as_expression] = STATE(3362), - [sym_is_expression] = STATE(3362), - [sym_is_pattern_expression] = STATE(3362), - [sym_cast_expression] = STATE(3362), - [sym_checked_expression] = STATE(3362), - [sym_invocation_expression] = STATE(3449), - [sym_switch_expression] = STATE(3362), - [sym_await_expression] = STATE(3449), - [sym_throw_expression] = STATE(3362), - [sym_element_access_expression] = STATE(2747), - [sym_interpolated_string_expression] = STATE(3362), - [sym_member_access_expression] = STATE(2747), - [sym_object_creation_expression] = STATE(3449), - [sym_parenthesized_expression] = STATE(3449), - [sym__parenthesized_lvalue_expression] = STATE(2747), - [sym_lambda_expression] = STATE(3362), - [sym__lambda_expression_init] = STATE(7772), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3362), - [sym_anonymous_method_expression] = STATE(3362), - [sym_anonymous_object_creation_expression] = STATE(3362), - [sym_implicit_array_creation_expression] = STATE(3362), - [sym_implicit_object_creation_expression] = STATE(3362), - [sym_implicit_stackalloc_expression] = STATE(3362), - [sym_initializer_expression] = STATE(3362), - [sym_default_expression] = STATE(3362), - [sym_with_expression] = STATE(3362), - [sym_sizeof_expression] = STATE(3362), - [sym_typeof_expression] = STATE(3362), - [sym_makeref_expression] = STATE(3362), - [sym_ref_expression] = STATE(3362), - [sym_reftype_expression] = STATE(3362), - [sym_refvalue_expression] = STATE(3362), - [sym_stackalloc_expression] = STATE(3362), - [sym_range_expression] = STATE(3362), - [sym_tuple_expression] = STATE(2747), - [sym_literal] = STATE(3362), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3362), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2816), + [sym__name] = STATE(5873), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2196), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(4283), + [sym_non_lvalue_expression] = STATE(3495), + [sym_lvalue_expression] = STATE(3208), + [sym__expression_statement_expression] = STATE(3462), + [sym_assignment_expression] = STATE(3497), + [sym_binary_expression] = STATE(3462), + [sym_postfix_unary_expression] = STATE(3497), + [sym_prefix_unary_expression] = STATE(3497), + [sym__pointer_indirection_expression] = STATE(2815), + [sym_query_expression] = STATE(3462), + [sym_from_clause] = STATE(6140), + [sym_conditional_expression] = STATE(3462), + [sym_conditional_access_expression] = STATE(3462), + [sym_as_expression] = STATE(3462), + [sym_is_expression] = STATE(3462), + [sym_is_pattern_expression] = STATE(3462), + [sym_cast_expression] = STATE(3462), + [sym_checked_expression] = STATE(3462), + [sym_invocation_expression] = STATE(3497), + [sym_switch_expression] = STATE(3462), + [sym_await_expression] = STATE(3497), + [sym_throw_expression] = STATE(3462), + [sym_element_access_expression] = STATE(2815), + [sym_interpolated_string_expression] = STATE(3462), + [sym_member_access_expression] = STATE(2815), + [sym_object_creation_expression] = STATE(3497), + [sym_parenthesized_expression] = STATE(3497), + [sym__parenthesized_lvalue_expression] = STATE(2815), + [sym_lambda_expression] = STATE(3462), + [sym__lambda_expression_init] = STATE(7520), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3462), + [sym_anonymous_method_expression] = STATE(3462), + [sym_anonymous_object_creation_expression] = STATE(3462), + [sym_implicit_array_creation_expression] = STATE(3462), + [sym_implicit_object_creation_expression] = STATE(3462), + [sym_implicit_stackalloc_expression] = STATE(3462), + [sym_initializer_expression] = STATE(3462), + [sym_default_expression] = STATE(3462), + [sym_with_expression] = STATE(3462), + [sym_sizeof_expression] = STATE(3462), + [sym_typeof_expression] = STATE(3462), + [sym_makeref_expression] = STATE(3462), + [sym_ref_expression] = STATE(3462), + [sym_reftype_expression] = STATE(3462), + [sym_refvalue_expression] = STATE(3462), + [sym_stackalloc_expression] = STATE(3462), + [sym_range_expression] = STATE(3462), + [sym_tuple_expression] = STATE(2815), + [sym_literal] = STATE(3462), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3462), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(1096), [sym_preproc_endregion] = STATE(1096), [sym_preproc_line] = STATE(1096), @@ -227083,47 +226969,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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3385), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3367), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1307), - [anon_sym_LPAREN] = ACTIONS(1789), - [anon_sym_ref] = ACTIONS(1791), - [anon_sym_LBRACE] = ACTIONS(1313), - [anon_sym_delegate] = ACTIONS(1315), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1305), + [anon_sym_LPAREN] = ACTIONS(1369), + [anon_sym_ref] = ACTIONS(1371), + [anon_sym_LBRACE] = ACTIONS(1311), + [anon_sym_delegate] = ACTIONS(1313), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1317), + [anon_sym_new] = ACTIONS(1315), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1319), - [anon_sym_BANG] = ACTIONS(1795), - [anon_sym_TILDE] = ACTIONS(1795), - [anon_sym_PLUS_PLUS] = ACTIONS(1795), - [anon_sym_DASH_DASH] = ACTIONS(1795), + [anon_sym_checked] = ACTIONS(1317), + [anon_sym_BANG] = ACTIONS(1375), + [anon_sym_TILDE] = ACTIONS(1375), + [anon_sym_PLUS_PLUS] = ACTIONS(1375), + [anon_sym_DASH_DASH] = ACTIONS(1375), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1793), - [anon_sym_DASH] = ACTIONS(1793), - [anon_sym_STAR] = ACTIONS(1797), - [anon_sym_CARET] = ACTIONS(1795), - [anon_sym_AMP] = ACTIONS(1795), - [anon_sym_this] = ACTIONS(1323), + [anon_sym_PLUS] = ACTIONS(1373), + [anon_sym_DASH] = ACTIONS(1373), + [anon_sym_STAR] = ACTIONS(1377), + [anon_sym_CARET] = ACTIONS(1375), + [anon_sym_AMP] = ACTIONS(1375), + [anon_sym_this] = ACTIONS(1321), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1325), + [anon_sym_base] = ACTIONS(1323), [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1319), + [anon_sym_unchecked] = ACTIONS(1317), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1799), + [anon_sym_throw] = ACTIONS(1379), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1801), - [anon_sym_DOT_DOT] = ACTIONS(1803), + [anon_sym_await] = ACTIONS(1381), + [anon_sym_DOT_DOT] = ACTIONS(1383), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -227136,19 +227022,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1333), + [anon_sym_stackalloc] = ACTIONS(1331), [anon_sym_sizeof] = ACTIONS(129), [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(1335), - [anon_sym___reftype] = ACTIONS(1337), - [anon_sym___refvalue] = ACTIONS(1339), + [anon_sym___makeref] = ACTIONS(1333), + [anon_sym___reftype] = ACTIONS(1335), + [anon_sym___refvalue] = ACTIONS(1337), [sym_null_literal] = ACTIONS(139), [anon_sym_SQUOTE] = ACTIONS(141), [sym_integer_literal] = ACTIONS(139), [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1341), + [aux_sym_preproc_if_token1] = ACTIONS(1339), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -227165,84 +227051,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [1097] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2762), - [sym__name] = STATE(5889), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2204), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(4865), - [sym_non_lvalue_expression] = STATE(3438), - [sym_lvalue_expression] = STATE(3548), - [sym__expression_statement_expression] = STATE(3362), - [sym_assignment_expression] = STATE(3449), - [sym_binary_expression] = STATE(3362), - [sym_postfix_unary_expression] = STATE(3449), - [sym_prefix_unary_expression] = STATE(3449), - [sym__pointer_indirection_expression] = STATE(2747), - [sym_query_expression] = STATE(3362), - [sym_from_clause] = STATE(6146), - [sym_conditional_expression] = STATE(3362), - [sym_conditional_access_expression] = STATE(3362), - [sym_as_expression] = STATE(3362), - [sym_is_expression] = STATE(3362), - [sym_is_pattern_expression] = STATE(3362), - [sym_cast_expression] = STATE(3362), - [sym_checked_expression] = STATE(3362), - [sym_invocation_expression] = STATE(3449), - [sym_switch_expression] = STATE(3362), - [sym_await_expression] = STATE(3449), - [sym_throw_expression] = STATE(3362), - [sym_element_access_expression] = STATE(2747), - [sym_interpolated_string_expression] = STATE(3362), - [sym_member_access_expression] = STATE(2747), - [sym_object_creation_expression] = STATE(3449), - [sym_parenthesized_expression] = STATE(3449), - [sym__parenthesized_lvalue_expression] = STATE(2747), - [sym_lambda_expression] = STATE(3362), - [sym__lambda_expression_init] = STATE(7772), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3362), - [sym_anonymous_method_expression] = STATE(3362), - [sym_anonymous_object_creation_expression] = STATE(3362), - [sym_implicit_array_creation_expression] = STATE(3362), - [sym_implicit_object_creation_expression] = STATE(3362), - [sym_implicit_stackalloc_expression] = STATE(3362), - [sym_initializer_expression] = STATE(3362), - [sym_default_expression] = STATE(3362), - [sym_with_expression] = STATE(3362), - [sym_sizeof_expression] = STATE(3362), - [sym_typeof_expression] = STATE(3362), - [sym_makeref_expression] = STATE(3362), - [sym_ref_expression] = STATE(3362), - [sym_reftype_expression] = STATE(3362), - [sym_refvalue_expression] = STATE(3362), - [sym_stackalloc_expression] = STATE(3362), - [sym_range_expression] = STATE(3362), - [sym_tuple_expression] = STATE(2747), - [sym_literal] = STATE(3362), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3362), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2816), + [sym__name] = STATE(5873), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2196), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(4284), + [sym_non_lvalue_expression] = STATE(3495), + [sym_lvalue_expression] = STATE(3208), + [sym__expression_statement_expression] = STATE(3462), + [sym_assignment_expression] = STATE(3497), + [sym_binary_expression] = STATE(3462), + [sym_postfix_unary_expression] = STATE(3497), + [sym_prefix_unary_expression] = STATE(3497), + [sym__pointer_indirection_expression] = STATE(2815), + [sym_query_expression] = STATE(3462), + [sym_from_clause] = STATE(6140), + [sym_conditional_expression] = STATE(3462), + [sym_conditional_access_expression] = STATE(3462), + [sym_as_expression] = STATE(3462), + [sym_is_expression] = STATE(3462), + [sym_is_pattern_expression] = STATE(3462), + [sym_cast_expression] = STATE(3462), + [sym_checked_expression] = STATE(3462), + [sym_invocation_expression] = STATE(3497), + [sym_switch_expression] = STATE(3462), + [sym_await_expression] = STATE(3497), + [sym_throw_expression] = STATE(3462), + [sym_element_access_expression] = STATE(2815), + [sym_interpolated_string_expression] = STATE(3462), + [sym_member_access_expression] = STATE(2815), + [sym_object_creation_expression] = STATE(3497), + [sym_parenthesized_expression] = STATE(3497), + [sym__parenthesized_lvalue_expression] = STATE(2815), + [sym_lambda_expression] = STATE(3462), + [sym__lambda_expression_init] = STATE(7520), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3462), + [sym_anonymous_method_expression] = STATE(3462), + [sym_anonymous_object_creation_expression] = STATE(3462), + [sym_implicit_array_creation_expression] = STATE(3462), + [sym_implicit_object_creation_expression] = STATE(3462), + [sym_implicit_stackalloc_expression] = STATE(3462), + [sym_initializer_expression] = STATE(3462), + [sym_default_expression] = STATE(3462), + [sym_with_expression] = STATE(3462), + [sym_sizeof_expression] = STATE(3462), + [sym_typeof_expression] = STATE(3462), + [sym_makeref_expression] = STATE(3462), + [sym_ref_expression] = STATE(3462), + [sym_reftype_expression] = STATE(3462), + [sym_refvalue_expression] = STATE(3462), + [sym_stackalloc_expression] = STATE(3462), + [sym_range_expression] = STATE(3462), + [sym_tuple_expression] = STATE(2815), + [sym_literal] = STATE(3462), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3462), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(1097), [sym_preproc_endregion] = STATE(1097), [sym_preproc_line] = STATE(1097), @@ -227252,47 +227138,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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3385), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3367), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1307), - [anon_sym_LPAREN] = ACTIONS(1789), - [anon_sym_ref] = ACTIONS(1791), - [anon_sym_LBRACE] = ACTIONS(1313), - [anon_sym_delegate] = ACTIONS(1315), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1305), + [anon_sym_LPAREN] = ACTIONS(1369), + [anon_sym_ref] = ACTIONS(1371), + [anon_sym_LBRACE] = ACTIONS(1311), + [anon_sym_delegate] = ACTIONS(1313), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1317), + [anon_sym_new] = ACTIONS(1315), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1319), - [anon_sym_BANG] = ACTIONS(1795), - [anon_sym_TILDE] = ACTIONS(1795), - [anon_sym_PLUS_PLUS] = ACTIONS(1795), - [anon_sym_DASH_DASH] = ACTIONS(1795), + [anon_sym_checked] = ACTIONS(1317), + [anon_sym_BANG] = ACTIONS(1375), + [anon_sym_TILDE] = ACTIONS(1375), + [anon_sym_PLUS_PLUS] = ACTIONS(1375), + [anon_sym_DASH_DASH] = ACTIONS(1375), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1793), - [anon_sym_DASH] = ACTIONS(1793), - [anon_sym_STAR] = ACTIONS(1797), - [anon_sym_CARET] = ACTIONS(1795), - [anon_sym_AMP] = ACTIONS(1795), - [anon_sym_this] = ACTIONS(1323), + [anon_sym_PLUS] = ACTIONS(1373), + [anon_sym_DASH] = ACTIONS(1373), + [anon_sym_STAR] = ACTIONS(1377), + [anon_sym_CARET] = ACTIONS(1375), + [anon_sym_AMP] = ACTIONS(1375), + [anon_sym_this] = ACTIONS(1321), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1325), + [anon_sym_base] = ACTIONS(1323), [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1319), + [anon_sym_unchecked] = ACTIONS(1317), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1799), + [anon_sym_throw] = ACTIONS(1379), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1801), - [anon_sym_DOT_DOT] = ACTIONS(1803), + [anon_sym_await] = ACTIONS(1381), + [anon_sym_DOT_DOT] = ACTIONS(1383), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -227305,19 +227191,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1333), + [anon_sym_stackalloc] = ACTIONS(1331), [anon_sym_sizeof] = ACTIONS(129), [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(1335), - [anon_sym___reftype] = ACTIONS(1337), - [anon_sym___refvalue] = ACTIONS(1339), + [anon_sym___makeref] = ACTIONS(1333), + [anon_sym___reftype] = ACTIONS(1335), + [anon_sym___refvalue] = ACTIONS(1337), [sym_null_literal] = ACTIONS(139), [anon_sym_SQUOTE] = ACTIONS(141), [sym_integer_literal] = ACTIONS(139), [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1341), + [aux_sym_preproc_if_token1] = ACTIONS(1339), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -227334,84 +227220,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [1098] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2762), - [sym__name] = STATE(5889), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2204), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(4866), - [sym_non_lvalue_expression] = STATE(3438), - [sym_lvalue_expression] = STATE(3548), - [sym__expression_statement_expression] = STATE(3362), - [sym_assignment_expression] = STATE(3449), - [sym_binary_expression] = STATE(3362), - [sym_postfix_unary_expression] = STATE(3449), - [sym_prefix_unary_expression] = STATE(3449), - [sym__pointer_indirection_expression] = STATE(2747), - [sym_query_expression] = STATE(3362), - [sym_from_clause] = STATE(6146), - [sym_conditional_expression] = STATE(3362), - [sym_conditional_access_expression] = STATE(3362), - [sym_as_expression] = STATE(3362), - [sym_is_expression] = STATE(3362), - [sym_is_pattern_expression] = STATE(3362), - [sym_cast_expression] = STATE(3362), - [sym_checked_expression] = STATE(3362), - [sym_invocation_expression] = STATE(3449), - [sym_switch_expression] = STATE(3362), - [sym_await_expression] = STATE(3449), - [sym_throw_expression] = STATE(3362), - [sym_element_access_expression] = STATE(2747), - [sym_interpolated_string_expression] = STATE(3362), - [sym_member_access_expression] = STATE(2747), - [sym_object_creation_expression] = STATE(3449), - [sym_parenthesized_expression] = STATE(3449), - [sym__parenthesized_lvalue_expression] = STATE(2747), - [sym_lambda_expression] = STATE(3362), - [sym__lambda_expression_init] = STATE(7772), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3362), - [sym_anonymous_method_expression] = STATE(3362), - [sym_anonymous_object_creation_expression] = STATE(3362), - [sym_implicit_array_creation_expression] = STATE(3362), - [sym_implicit_object_creation_expression] = STATE(3362), - [sym_implicit_stackalloc_expression] = STATE(3362), - [sym_initializer_expression] = STATE(3362), - [sym_default_expression] = STATE(3362), - [sym_with_expression] = STATE(3362), - [sym_sizeof_expression] = STATE(3362), - [sym_typeof_expression] = STATE(3362), - [sym_makeref_expression] = STATE(3362), - [sym_ref_expression] = STATE(3362), - [sym_reftype_expression] = STATE(3362), - [sym_refvalue_expression] = STATE(3362), - [sym_stackalloc_expression] = STATE(3362), - [sym_range_expression] = STATE(3362), - [sym_tuple_expression] = STATE(2747), - [sym_literal] = STATE(3362), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3362), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2816), + [sym__name] = STATE(5873), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2196), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(4286), + [sym_non_lvalue_expression] = STATE(3495), + [sym_lvalue_expression] = STATE(3208), + [sym__expression_statement_expression] = STATE(3462), + [sym_assignment_expression] = STATE(3497), + [sym_binary_expression] = STATE(3462), + [sym_postfix_unary_expression] = STATE(3497), + [sym_prefix_unary_expression] = STATE(3497), + [sym__pointer_indirection_expression] = STATE(2815), + [sym_query_expression] = STATE(3462), + [sym_from_clause] = STATE(6140), + [sym_conditional_expression] = STATE(3462), + [sym_conditional_access_expression] = STATE(3462), + [sym_as_expression] = STATE(3462), + [sym_is_expression] = STATE(3462), + [sym_is_pattern_expression] = STATE(3462), + [sym_cast_expression] = STATE(3462), + [sym_checked_expression] = STATE(3462), + [sym_invocation_expression] = STATE(3497), + [sym_switch_expression] = STATE(3462), + [sym_await_expression] = STATE(3497), + [sym_throw_expression] = STATE(3462), + [sym_element_access_expression] = STATE(2815), + [sym_interpolated_string_expression] = STATE(3462), + [sym_member_access_expression] = STATE(2815), + [sym_object_creation_expression] = STATE(3497), + [sym_parenthesized_expression] = STATE(3497), + [sym__parenthesized_lvalue_expression] = STATE(2815), + [sym_lambda_expression] = STATE(3462), + [sym__lambda_expression_init] = STATE(7520), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3462), + [sym_anonymous_method_expression] = STATE(3462), + [sym_anonymous_object_creation_expression] = STATE(3462), + [sym_implicit_array_creation_expression] = STATE(3462), + [sym_implicit_object_creation_expression] = STATE(3462), + [sym_implicit_stackalloc_expression] = STATE(3462), + [sym_initializer_expression] = STATE(3462), + [sym_default_expression] = STATE(3462), + [sym_with_expression] = STATE(3462), + [sym_sizeof_expression] = STATE(3462), + [sym_typeof_expression] = STATE(3462), + [sym_makeref_expression] = STATE(3462), + [sym_ref_expression] = STATE(3462), + [sym_reftype_expression] = STATE(3462), + [sym_refvalue_expression] = STATE(3462), + [sym_stackalloc_expression] = STATE(3462), + [sym_range_expression] = STATE(3462), + [sym_tuple_expression] = STATE(2815), + [sym_literal] = STATE(3462), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3462), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(1098), [sym_preproc_endregion] = STATE(1098), [sym_preproc_line] = STATE(1098), @@ -227421,47 +227307,47 @@ 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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3385), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3367), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1307), - [anon_sym_LPAREN] = ACTIONS(1789), - [anon_sym_ref] = ACTIONS(1791), - [anon_sym_LBRACE] = ACTIONS(1313), - [anon_sym_delegate] = ACTIONS(1315), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1305), + [anon_sym_LPAREN] = ACTIONS(1369), + [anon_sym_ref] = ACTIONS(1371), + [anon_sym_LBRACE] = ACTIONS(1311), + [anon_sym_delegate] = ACTIONS(1313), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1317), + [anon_sym_new] = ACTIONS(1315), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1319), - [anon_sym_BANG] = ACTIONS(1795), - [anon_sym_TILDE] = ACTIONS(1795), - [anon_sym_PLUS_PLUS] = ACTIONS(1795), - [anon_sym_DASH_DASH] = ACTIONS(1795), + [anon_sym_checked] = ACTIONS(1317), + [anon_sym_BANG] = ACTIONS(1375), + [anon_sym_TILDE] = ACTIONS(1375), + [anon_sym_PLUS_PLUS] = ACTIONS(1375), + [anon_sym_DASH_DASH] = ACTIONS(1375), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1793), - [anon_sym_DASH] = ACTIONS(1793), - [anon_sym_STAR] = ACTIONS(1797), - [anon_sym_CARET] = ACTIONS(1795), - [anon_sym_AMP] = ACTIONS(1795), - [anon_sym_this] = ACTIONS(1323), + [anon_sym_PLUS] = ACTIONS(1373), + [anon_sym_DASH] = ACTIONS(1373), + [anon_sym_STAR] = ACTIONS(1377), + [anon_sym_CARET] = ACTIONS(1375), + [anon_sym_AMP] = ACTIONS(1375), + [anon_sym_this] = ACTIONS(1321), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1325), + [anon_sym_base] = ACTIONS(1323), [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1319), + [anon_sym_unchecked] = ACTIONS(1317), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1799), + [anon_sym_throw] = ACTIONS(1379), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1801), - [anon_sym_DOT_DOT] = ACTIONS(1803), + [anon_sym_await] = ACTIONS(1381), + [anon_sym_DOT_DOT] = ACTIONS(1383), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -227474,19 +227360,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1333), + [anon_sym_stackalloc] = ACTIONS(1331), [anon_sym_sizeof] = ACTIONS(129), [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(1335), - [anon_sym___reftype] = ACTIONS(1337), - [anon_sym___refvalue] = ACTIONS(1339), + [anon_sym___makeref] = ACTIONS(1333), + [anon_sym___reftype] = ACTIONS(1335), + [anon_sym___refvalue] = ACTIONS(1337), [sym_null_literal] = ACTIONS(139), [anon_sym_SQUOTE] = ACTIONS(141), [sym_integer_literal] = ACTIONS(139), [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1341), + [aux_sym_preproc_if_token1] = ACTIONS(1339), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -227503,84 +227389,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [1099] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2762), - [sym__name] = STATE(5889), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2204), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(3218), - [sym_non_lvalue_expression] = STATE(3438), - [sym_lvalue_expression] = STATE(3548), - [sym__expression_statement_expression] = STATE(3362), - [sym_assignment_expression] = STATE(3449), - [sym_binary_expression] = STATE(3362), - [sym_postfix_unary_expression] = STATE(3449), - [sym_prefix_unary_expression] = STATE(3449), - [sym__pointer_indirection_expression] = STATE(2747), - [sym_query_expression] = STATE(3362), - [sym_from_clause] = STATE(6146), - [sym_conditional_expression] = STATE(3362), - [sym_conditional_access_expression] = STATE(3362), - [sym_as_expression] = STATE(3362), - [sym_is_expression] = STATE(3362), - [sym_is_pattern_expression] = STATE(3362), - [sym_cast_expression] = STATE(3362), - [sym_checked_expression] = STATE(3362), - [sym_invocation_expression] = STATE(3449), - [sym_switch_expression] = STATE(3362), - [sym_await_expression] = STATE(3449), - [sym_throw_expression] = STATE(3362), - [sym_element_access_expression] = STATE(2747), - [sym_interpolated_string_expression] = STATE(3362), - [sym_member_access_expression] = STATE(2747), - [sym_object_creation_expression] = STATE(3449), - [sym_parenthesized_expression] = STATE(3449), - [sym__parenthesized_lvalue_expression] = STATE(2747), - [sym_lambda_expression] = STATE(3362), - [sym__lambda_expression_init] = STATE(7772), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3362), - [sym_anonymous_method_expression] = STATE(3362), - [sym_anonymous_object_creation_expression] = STATE(3362), - [sym_implicit_array_creation_expression] = STATE(3362), - [sym_implicit_object_creation_expression] = STATE(3362), - [sym_implicit_stackalloc_expression] = STATE(3362), - [sym_initializer_expression] = STATE(3362), - [sym_default_expression] = STATE(3362), - [sym_with_expression] = STATE(3362), - [sym_sizeof_expression] = STATE(3362), - [sym_typeof_expression] = STATE(3362), - [sym_makeref_expression] = STATE(3362), - [sym_ref_expression] = STATE(3362), - [sym_reftype_expression] = STATE(3362), - [sym_refvalue_expression] = STATE(3362), - [sym_stackalloc_expression] = STATE(3362), - [sym_range_expression] = STATE(3362), - [sym_tuple_expression] = STATE(2747), - [sym_literal] = STATE(3362), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3362), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2816), + [sym__name] = STATE(5873), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2196), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(4287), + [sym_non_lvalue_expression] = STATE(3495), + [sym_lvalue_expression] = STATE(3208), + [sym__expression_statement_expression] = STATE(3462), + [sym_assignment_expression] = STATE(3497), + [sym_binary_expression] = STATE(3462), + [sym_postfix_unary_expression] = STATE(3497), + [sym_prefix_unary_expression] = STATE(3497), + [sym__pointer_indirection_expression] = STATE(2815), + [sym_query_expression] = STATE(3462), + [sym_from_clause] = STATE(6140), + [sym_conditional_expression] = STATE(3462), + [sym_conditional_access_expression] = STATE(3462), + [sym_as_expression] = STATE(3462), + [sym_is_expression] = STATE(3462), + [sym_is_pattern_expression] = STATE(3462), + [sym_cast_expression] = STATE(3462), + [sym_checked_expression] = STATE(3462), + [sym_invocation_expression] = STATE(3497), + [sym_switch_expression] = STATE(3462), + [sym_await_expression] = STATE(3497), + [sym_throw_expression] = STATE(3462), + [sym_element_access_expression] = STATE(2815), + [sym_interpolated_string_expression] = STATE(3462), + [sym_member_access_expression] = STATE(2815), + [sym_object_creation_expression] = STATE(3497), + [sym_parenthesized_expression] = STATE(3497), + [sym__parenthesized_lvalue_expression] = STATE(2815), + [sym_lambda_expression] = STATE(3462), + [sym__lambda_expression_init] = STATE(7520), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3462), + [sym_anonymous_method_expression] = STATE(3462), + [sym_anonymous_object_creation_expression] = STATE(3462), + [sym_implicit_array_creation_expression] = STATE(3462), + [sym_implicit_object_creation_expression] = STATE(3462), + [sym_implicit_stackalloc_expression] = STATE(3462), + [sym_initializer_expression] = STATE(3462), + [sym_default_expression] = STATE(3462), + [sym_with_expression] = STATE(3462), + [sym_sizeof_expression] = STATE(3462), + [sym_typeof_expression] = STATE(3462), + [sym_makeref_expression] = STATE(3462), + [sym_ref_expression] = STATE(3462), + [sym_reftype_expression] = STATE(3462), + [sym_refvalue_expression] = STATE(3462), + [sym_stackalloc_expression] = STATE(3462), + [sym_range_expression] = STATE(3462), + [sym_tuple_expression] = STATE(2815), + [sym_literal] = STATE(3462), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3462), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(1099), [sym_preproc_endregion] = STATE(1099), [sym_preproc_line] = STATE(1099), @@ -227590,47 +227476,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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3385), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3367), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1307), - [anon_sym_LPAREN] = ACTIONS(1789), - [anon_sym_ref] = ACTIONS(1791), - [anon_sym_LBRACE] = ACTIONS(1313), - [anon_sym_delegate] = ACTIONS(1315), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1305), + [anon_sym_LPAREN] = ACTIONS(1369), + [anon_sym_ref] = ACTIONS(1371), + [anon_sym_LBRACE] = ACTIONS(1311), + [anon_sym_delegate] = ACTIONS(1313), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1317), + [anon_sym_new] = ACTIONS(1315), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1319), - [anon_sym_BANG] = ACTIONS(1795), - [anon_sym_TILDE] = ACTIONS(1795), - [anon_sym_PLUS_PLUS] = ACTIONS(1795), - [anon_sym_DASH_DASH] = ACTIONS(1795), + [anon_sym_checked] = ACTIONS(1317), + [anon_sym_BANG] = ACTIONS(1375), + [anon_sym_TILDE] = ACTIONS(1375), + [anon_sym_PLUS_PLUS] = ACTIONS(1375), + [anon_sym_DASH_DASH] = ACTIONS(1375), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1793), - [anon_sym_DASH] = ACTIONS(1793), - [anon_sym_STAR] = ACTIONS(1797), - [anon_sym_CARET] = ACTIONS(1795), - [anon_sym_AMP] = ACTIONS(1795), - [anon_sym_this] = ACTIONS(1323), + [anon_sym_PLUS] = ACTIONS(1373), + [anon_sym_DASH] = ACTIONS(1373), + [anon_sym_STAR] = ACTIONS(1377), + [anon_sym_CARET] = ACTIONS(1375), + [anon_sym_AMP] = ACTIONS(1375), + [anon_sym_this] = ACTIONS(1321), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1325), + [anon_sym_base] = ACTIONS(1323), [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1319), + [anon_sym_unchecked] = ACTIONS(1317), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1799), + [anon_sym_throw] = ACTIONS(1379), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1801), - [anon_sym_DOT_DOT] = ACTIONS(1803), + [anon_sym_await] = ACTIONS(1381), + [anon_sym_DOT_DOT] = ACTIONS(1383), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -227643,19 +227529,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1333), + [anon_sym_stackalloc] = ACTIONS(1331), [anon_sym_sizeof] = ACTIONS(129), [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(1335), - [anon_sym___reftype] = ACTIONS(1337), - [anon_sym___refvalue] = ACTIONS(1339), + [anon_sym___makeref] = ACTIONS(1333), + [anon_sym___reftype] = ACTIONS(1335), + [anon_sym___refvalue] = ACTIONS(1337), [sym_null_literal] = ACTIONS(139), [anon_sym_SQUOTE] = ACTIONS(141), [sym_integer_literal] = ACTIONS(139), [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1341), + [aux_sym_preproc_if_token1] = ACTIONS(1339), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -227672,84 +227558,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [1100] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2914), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2816), [sym__name] = STATE(5873), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2362), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(3597), - [sym_non_lvalue_expression] = STATE(3880), - [sym_lvalue_expression] = STATE(3092), - [sym__expression_statement_expression] = STATE(3873), - [sym_assignment_expression] = STATE(3881), - [sym_binary_expression] = STATE(3873), - [sym_postfix_unary_expression] = STATE(3881), - [sym_prefix_unary_expression] = STATE(3881), - [sym__pointer_indirection_expression] = STATE(2913), - [sym_query_expression] = STATE(3873), - [sym_from_clause] = STATE(6168), - [sym_conditional_expression] = STATE(3873), - [sym_conditional_access_expression] = STATE(3873), - [sym_as_expression] = STATE(3873), - [sym_is_expression] = STATE(3873), - [sym_is_pattern_expression] = STATE(3873), - [sym_cast_expression] = STATE(3873), - [sym_checked_expression] = STATE(3873), - [sym_invocation_expression] = STATE(3881), - [sym_switch_expression] = STATE(3873), - [sym_await_expression] = STATE(3881), - [sym_throw_expression] = STATE(3873), - [sym_element_access_expression] = STATE(2913), - [sym_interpolated_string_expression] = STATE(3873), - [sym_member_access_expression] = STATE(2913), - [sym_object_creation_expression] = STATE(3881), - [sym_parenthesized_expression] = STATE(3881), - [sym__parenthesized_lvalue_expression] = STATE(2913), - [sym_lambda_expression] = STATE(3873), - [sym__lambda_expression_init] = STATE(7533), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3873), - [sym_anonymous_method_expression] = STATE(3873), - [sym_anonymous_object_creation_expression] = STATE(3873), - [sym_implicit_array_creation_expression] = STATE(3873), - [sym_implicit_object_creation_expression] = STATE(3873), - [sym_implicit_stackalloc_expression] = STATE(3873), - [sym_initializer_expression] = STATE(3873), - [sym_default_expression] = STATE(3873), - [sym_with_expression] = STATE(3873), - [sym_sizeof_expression] = STATE(3873), - [sym_typeof_expression] = STATE(3873), - [sym_makeref_expression] = STATE(3873), - [sym_ref_expression] = STATE(3873), - [sym_reftype_expression] = STATE(3873), - [sym_refvalue_expression] = STATE(3873), - [sym_stackalloc_expression] = STATE(3873), - [sym_range_expression] = STATE(3873), - [sym_tuple_expression] = STATE(2913), - [sym_literal] = STATE(3873), - [sym_character_literal] = STATE(3877), - [sym_string_literal] = STATE(3877), - [sym_raw_string_literal] = STATE(3877), - [sym_boolean_literal] = STATE(3877), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3873), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2196), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(4288), + [sym_non_lvalue_expression] = STATE(3495), + [sym_lvalue_expression] = STATE(3208), + [sym__expression_statement_expression] = STATE(3462), + [sym_assignment_expression] = STATE(3497), + [sym_binary_expression] = STATE(3462), + [sym_postfix_unary_expression] = STATE(3497), + [sym_prefix_unary_expression] = STATE(3497), + [sym__pointer_indirection_expression] = STATE(2815), + [sym_query_expression] = STATE(3462), + [sym_from_clause] = STATE(6140), + [sym_conditional_expression] = STATE(3462), + [sym_conditional_access_expression] = STATE(3462), + [sym_as_expression] = STATE(3462), + [sym_is_expression] = STATE(3462), + [sym_is_pattern_expression] = STATE(3462), + [sym_cast_expression] = STATE(3462), + [sym_checked_expression] = STATE(3462), + [sym_invocation_expression] = STATE(3497), + [sym_switch_expression] = STATE(3462), + [sym_await_expression] = STATE(3497), + [sym_throw_expression] = STATE(3462), + [sym_element_access_expression] = STATE(2815), + [sym_interpolated_string_expression] = STATE(3462), + [sym_member_access_expression] = STATE(2815), + [sym_object_creation_expression] = STATE(3497), + [sym_parenthesized_expression] = STATE(3497), + [sym__parenthesized_lvalue_expression] = STATE(2815), + [sym_lambda_expression] = STATE(3462), + [sym__lambda_expression_init] = STATE(7520), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3462), + [sym_anonymous_method_expression] = STATE(3462), + [sym_anonymous_object_creation_expression] = STATE(3462), + [sym_implicit_array_creation_expression] = STATE(3462), + [sym_implicit_object_creation_expression] = STATE(3462), + [sym_implicit_stackalloc_expression] = STATE(3462), + [sym_initializer_expression] = STATE(3462), + [sym_default_expression] = STATE(3462), + [sym_with_expression] = STATE(3462), + [sym_sizeof_expression] = STATE(3462), + [sym_typeof_expression] = STATE(3462), + [sym_makeref_expression] = STATE(3462), + [sym_ref_expression] = STATE(3462), + [sym_reftype_expression] = STATE(3462), + [sym_refvalue_expression] = STATE(3462), + [sym_stackalloc_expression] = STATE(3462), + [sym_range_expression] = STATE(3462), + [sym_tuple_expression] = STATE(2815), + [sym_literal] = STATE(3462), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3462), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(1100), [sym_preproc_endregion] = STATE(1100), [sym_preproc_line] = STATE(1100), @@ -227759,47 +227645,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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3382), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3367), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1627), - [anon_sym_LPAREN] = ACTIONS(1961), - [anon_sym_ref] = ACTIONS(1963), - [anon_sym_LBRACE] = ACTIONS(1633), - [anon_sym_delegate] = ACTIONS(1635), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1305), + [anon_sym_LPAREN] = ACTIONS(1369), + [anon_sym_ref] = ACTIONS(1371), + [anon_sym_LBRACE] = ACTIONS(1311), + [anon_sym_delegate] = ACTIONS(1313), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1637), + [anon_sym_new] = ACTIONS(1315), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1639), - [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(1645), - [anon_sym_false] = ACTIONS(1645), - [anon_sym_PLUS] = ACTIONS(1965), - [anon_sym_DASH] = ACTIONS(1965), - [anon_sym_STAR] = ACTIONS(1647), - [anon_sym_CARET] = ACTIONS(1967), - [anon_sym_AMP] = ACTIONS(1967), - [anon_sym_this] = ACTIONS(1649), + [anon_sym_checked] = ACTIONS(1317), + [anon_sym_BANG] = ACTIONS(1375), + [anon_sym_TILDE] = ACTIONS(1375), + [anon_sym_PLUS_PLUS] = ACTIONS(1375), + [anon_sym_DASH_DASH] = ACTIONS(1375), + [anon_sym_true] = ACTIONS(77), + [anon_sym_false] = ACTIONS(77), + [anon_sym_PLUS] = ACTIONS(1373), + [anon_sym_DASH] = ACTIONS(1373), + [anon_sym_STAR] = ACTIONS(1377), + [anon_sym_CARET] = ACTIONS(1375), + [anon_sym_AMP] = ACTIONS(1375), + [anon_sym_this] = ACTIONS(1321), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1651), + [anon_sym_base] = ACTIONS(1323), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1653), - [anon_sym_unchecked] = ACTIONS(1639), + [sym_predefined_type] = ACTIONS(91), + [anon_sym_unchecked] = ACTIONS(1317), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1655), - [anon_sym_throw] = ACTIONS(1969), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(1379), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1971), - [anon_sym_DOT_DOT] = ACTIONS(1973), + [anon_sym_await] = ACTIONS(1381), + [anon_sym_DOT_DOT] = ACTIONS(1383), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -227812,19 +227698,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1663), - [anon_sym_sizeof] = ACTIONS(1665), - [anon_sym_typeof] = ACTIONS(1667), - [anon_sym___makeref] = ACTIONS(1669), - [anon_sym___reftype] = ACTIONS(1671), - [anon_sym___refvalue] = ACTIONS(1673), - [sym_null_literal] = ACTIONS(1675), - [anon_sym_SQUOTE] = ACTIONS(1677), - [sym_integer_literal] = ACTIONS(1675), - [sym_real_literal] = ACTIONS(1679), - [anon_sym_DQUOTE] = ACTIONS(1681), - [sym_verbatim_string_literal] = ACTIONS(1679), - [aux_sym_preproc_if_token1] = ACTIONS(1683), + [anon_sym_stackalloc] = ACTIONS(1331), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(1333), + [anon_sym___reftype] = ACTIONS(1335), + [anon_sym___refvalue] = ACTIONS(1337), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_literal] = ACTIONS(143), + [anon_sym_DQUOTE] = ACTIONS(145), + [sym_verbatim_string_literal] = ACTIONS(143), + [aux_sym_preproc_if_token1] = ACTIONS(1339), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -227835,90 +227721,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1685), - [sym_interpolation_verbatim_start] = ACTIONS(1687), - [sym_interpolation_raw_start] = ACTIONS(1689), - [sym_raw_string_start] = ACTIONS(1691), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [sym_interpolation_raw_start] = ACTIONS(155), + [sym_raw_string_start] = ACTIONS(157), }, [1101] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2420), - [sym__name] = STATE(5897), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2397), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(5271), - [sym_non_lvalue_expression] = STATE(3066), - [sym_lvalue_expression] = STATE(3632), - [sym__expression_statement_expression] = STATE(3006), - [sym_assignment_expression] = STATE(3020), - [sym_binary_expression] = STATE(3006), - [sym_postfix_unary_expression] = STATE(3020), - [sym_prefix_unary_expression] = STATE(3020), - [sym__pointer_indirection_expression] = STATE(2423), - [sym_query_expression] = STATE(3006), - [sym_from_clause] = STATE(6184), - [sym_conditional_expression] = STATE(3006), - [sym_conditional_access_expression] = STATE(3006), - [sym_as_expression] = STATE(3006), - [sym_is_expression] = STATE(3006), - [sym_is_pattern_expression] = STATE(3006), - [sym_cast_expression] = STATE(3006), - [sym_checked_expression] = STATE(3006), - [sym_invocation_expression] = STATE(3020), - [sym_switch_expression] = STATE(3006), - [sym_await_expression] = STATE(3020), - [sym_throw_expression] = STATE(3006), - [sym_element_access_expression] = STATE(2423), - [sym_interpolated_string_expression] = STATE(3006), - [sym_member_access_expression] = STATE(2423), - [sym_object_creation_expression] = STATE(3020), - [sym_parenthesized_expression] = STATE(3020), - [sym__parenthesized_lvalue_expression] = STATE(2423), - [sym_lambda_expression] = STATE(3006), - [sym__lambda_expression_init] = STATE(7393), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3006), - [sym_anonymous_method_expression] = STATE(3006), - [sym_anonymous_object_creation_expression] = STATE(3006), - [sym_implicit_array_creation_expression] = STATE(3006), - [sym_implicit_object_creation_expression] = STATE(3006), - [sym_implicit_stackalloc_expression] = STATE(3006), - [sym_initializer_expression] = STATE(3006), - [sym_default_expression] = STATE(3006), - [sym_with_expression] = STATE(3006), - [sym_sizeof_expression] = STATE(3006), - [sym_typeof_expression] = STATE(3006), - [sym_makeref_expression] = STATE(3006), - [sym_ref_expression] = STATE(3006), - [sym_reftype_expression] = STATE(3006), - [sym_refvalue_expression] = STATE(3006), - [sym_stackalloc_expression] = STATE(3006), - [sym_range_expression] = STATE(3006), - [sym_tuple_expression] = STATE(2423), - [sym_literal] = STATE(3006), - [sym_character_literal] = STATE(3011), - [sym_string_literal] = STATE(3011), - [sym_raw_string_literal] = STATE(3011), - [sym_boolean_literal] = STATE(3011), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3006), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2816), + [sym__name] = STATE(5879), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2238), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(4252), + [sym_non_lvalue_expression] = STATE(3495), + [sym_lvalue_expression] = STATE(3197), + [sym__expression_statement_expression] = STATE(3462), + [sym_assignment_expression] = STATE(3497), + [sym_binary_expression] = STATE(3462), + [sym_postfix_unary_expression] = STATE(3497), + [sym_prefix_unary_expression] = STATE(3497), + [sym__pointer_indirection_expression] = STATE(2815), + [sym_query_expression] = STATE(3462), + [sym_from_clause] = STATE(6144), + [sym_conditional_expression] = STATE(3462), + [sym_conditional_access_expression] = STATE(3462), + [sym_as_expression] = STATE(3462), + [sym_is_expression] = STATE(3462), + [sym_is_pattern_expression] = STATE(3462), + [sym_cast_expression] = STATE(3462), + [sym_checked_expression] = STATE(3462), + [sym_invocation_expression] = STATE(3497), + [sym_switch_expression] = STATE(3462), + [sym_await_expression] = STATE(3497), + [sym_throw_expression] = STATE(3462), + [sym_element_access_expression] = STATE(2815), + [sym_interpolated_string_expression] = STATE(3462), + [sym_member_access_expression] = STATE(2815), + [sym_object_creation_expression] = STATE(3497), + [sym_parenthesized_expression] = STATE(3497), + [sym__parenthesized_lvalue_expression] = STATE(2815), + [sym_lambda_expression] = STATE(3462), + [sym__lambda_expression_init] = STATE(7615), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3462), + [sym_anonymous_method_expression] = STATE(3462), + [sym_anonymous_object_creation_expression] = STATE(3462), + [sym_implicit_array_creation_expression] = STATE(3462), + [sym_implicit_object_creation_expression] = STATE(3462), + [sym_implicit_stackalloc_expression] = STATE(3462), + [sym_initializer_expression] = STATE(3462), + [sym_default_expression] = STATE(3462), + [sym_with_expression] = STATE(3462), + [sym_sizeof_expression] = STATE(3462), + [sym_typeof_expression] = STATE(3462), + [sym_makeref_expression] = STATE(3462), + [sym_ref_expression] = STATE(3462), + [sym_reftype_expression] = STATE(3462), + [sym_refvalue_expression] = STATE(3462), + [sym_stackalloc_expression] = STATE(3462), + [sym_range_expression] = STATE(3462), + [sym_tuple_expression] = STATE(2815), + [sym_literal] = STATE(3462), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3462), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(1101), [sym_preproc_endregion] = STATE(1101), [sym_preproc_line] = STATE(1101), @@ -227928,47 +227814,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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3440), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3367), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1241), - [anon_sym_LPAREN] = ACTIONS(2213), - [anon_sym_ref] = ACTIONS(2215), - [anon_sym_LBRACE] = ACTIONS(1247), - [anon_sym_delegate] = ACTIONS(1249), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1305), + [anon_sym_LPAREN] = ACTIONS(1357), + [anon_sym_ref] = ACTIONS(1359), + [anon_sym_LBRACE] = ACTIONS(1311), + [anon_sym_delegate] = ACTIONS(1313), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(2217), + [anon_sym_new] = ACTIONS(1315), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1253), - [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(1259), - [anon_sym_false] = ACTIONS(1259), - [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(1263), + [anon_sym_checked] = ACTIONS(1317), + [anon_sym_BANG] = ACTIONS(1101), + [anon_sym_TILDE] = ACTIONS(1101), + [anon_sym_PLUS_PLUS] = ACTIONS(1101), + [anon_sym_DASH_DASH] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(77), + [anon_sym_false] = ACTIONS(77), + [anon_sym_PLUS] = ACTIONS(1103), + [anon_sym_DASH] = ACTIONS(1103), + [anon_sym_STAR] = ACTIONS(1361), + [anon_sym_CARET] = ACTIONS(1101), + [anon_sym_AMP] = ACTIONS(1101), + [anon_sym_this] = ACTIONS(1321), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1265), + [anon_sym_base] = ACTIONS(1323), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1267), - [anon_sym_unchecked] = ACTIONS(1253), + [sym_predefined_type] = ACTIONS(91), + [anon_sym_unchecked] = ACTIONS(1317), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1269), - [anon_sym_throw] = ACTIONS(2225), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(1363), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2227), - [anon_sym_DOT_DOT] = ACTIONS(2229), + [anon_sym_await] = ACTIONS(1365), + [anon_sym_DOT_DOT] = ACTIONS(1367), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -227981,19 +227867,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1277), - [anon_sym_sizeof] = ACTIONS(1279), - [anon_sym_typeof] = ACTIONS(1281), - [anon_sym___makeref] = ACTIONS(1283), - [anon_sym___reftype] = ACTIONS(1285), - [anon_sym___refvalue] = ACTIONS(1287), - [sym_null_literal] = ACTIONS(1289), - [anon_sym_SQUOTE] = ACTIONS(1291), - [sym_integer_literal] = ACTIONS(1289), - [sym_real_literal] = ACTIONS(1293), - [anon_sym_DQUOTE] = ACTIONS(1295), - [sym_verbatim_string_literal] = ACTIONS(1293), - [aux_sym_preproc_if_token1] = ACTIONS(1297), + [anon_sym_stackalloc] = ACTIONS(1331), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(1333), + [anon_sym___reftype] = ACTIONS(1335), + [anon_sym___refvalue] = ACTIONS(1337), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_literal] = ACTIONS(143), + [anon_sym_DQUOTE] = ACTIONS(145), + [sym_verbatim_string_literal] = ACTIONS(143), + [aux_sym_preproc_if_token1] = ACTIONS(1339), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -228004,90 +227890,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1299), - [sym_interpolation_verbatim_start] = ACTIONS(1301), - [sym_interpolation_raw_start] = ACTIONS(1303), - [sym_raw_string_start] = ACTIONS(1305), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [sym_interpolation_raw_start] = ACTIONS(155), + [sym_raw_string_start] = ACTIONS(157), }, [1102] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2420), - [sym__name] = STATE(5897), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2397), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(2908), - [sym_non_lvalue_expression] = STATE(3066), - [sym_lvalue_expression] = STATE(3632), - [sym__expression_statement_expression] = STATE(3006), - [sym_assignment_expression] = STATE(3020), - [sym_binary_expression] = STATE(3006), - [sym_postfix_unary_expression] = STATE(3020), - [sym_prefix_unary_expression] = STATE(3020), - [sym__pointer_indirection_expression] = STATE(2423), - [sym_query_expression] = STATE(3006), - [sym_from_clause] = STATE(6184), - [sym_conditional_expression] = STATE(3006), - [sym_conditional_access_expression] = STATE(3006), - [sym_as_expression] = STATE(3006), - [sym_is_expression] = STATE(3006), - [sym_is_pattern_expression] = STATE(3006), - [sym_cast_expression] = STATE(3006), - [sym_checked_expression] = STATE(3006), - [sym_invocation_expression] = STATE(3020), - [sym_switch_expression] = STATE(3006), - [sym_await_expression] = STATE(3020), - [sym_throw_expression] = STATE(3006), - [sym_element_access_expression] = STATE(2423), - [sym_interpolated_string_expression] = STATE(3006), - [sym_member_access_expression] = STATE(2423), - [sym_object_creation_expression] = STATE(3020), - [sym_parenthesized_expression] = STATE(3020), - [sym__parenthesized_lvalue_expression] = STATE(2423), - [sym_lambda_expression] = STATE(3006), - [sym__lambda_expression_init] = STATE(7393), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3006), - [sym_anonymous_method_expression] = STATE(3006), - [sym_anonymous_object_creation_expression] = STATE(3006), - [sym_implicit_array_creation_expression] = STATE(3006), - [sym_implicit_object_creation_expression] = STATE(3006), - [sym_implicit_stackalloc_expression] = STATE(3006), - [sym_initializer_expression] = STATE(3006), - [sym_default_expression] = STATE(3006), - [sym_with_expression] = STATE(3006), - [sym_sizeof_expression] = STATE(3006), - [sym_typeof_expression] = STATE(3006), - [sym_makeref_expression] = STATE(3006), - [sym_ref_expression] = STATE(3006), - [sym_reftype_expression] = STATE(3006), - [sym_refvalue_expression] = STATE(3006), - [sym_stackalloc_expression] = STATE(3006), - [sym_range_expression] = STATE(3006), - [sym_tuple_expression] = STATE(2423), - [sym_literal] = STATE(3006), - [sym_character_literal] = STATE(3011), - [sym_string_literal] = STATE(3011), - [sym_raw_string_literal] = STATE(3011), - [sym_boolean_literal] = STATE(3011), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3006), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2816), + [sym__name] = STATE(5879), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2238), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(4254), + [sym_non_lvalue_expression] = STATE(3495), + [sym_lvalue_expression] = STATE(3197), + [sym__expression_statement_expression] = STATE(3462), + [sym_assignment_expression] = STATE(3497), + [sym_binary_expression] = STATE(3462), + [sym_postfix_unary_expression] = STATE(3497), + [sym_prefix_unary_expression] = STATE(3497), + [sym__pointer_indirection_expression] = STATE(2815), + [sym_query_expression] = STATE(3462), + [sym_from_clause] = STATE(6144), + [sym_conditional_expression] = STATE(3462), + [sym_conditional_access_expression] = STATE(3462), + [sym_as_expression] = STATE(3462), + [sym_is_expression] = STATE(3462), + [sym_is_pattern_expression] = STATE(3462), + [sym_cast_expression] = STATE(3462), + [sym_checked_expression] = STATE(3462), + [sym_invocation_expression] = STATE(3497), + [sym_switch_expression] = STATE(3462), + [sym_await_expression] = STATE(3497), + [sym_throw_expression] = STATE(3462), + [sym_element_access_expression] = STATE(2815), + [sym_interpolated_string_expression] = STATE(3462), + [sym_member_access_expression] = STATE(2815), + [sym_object_creation_expression] = STATE(3497), + [sym_parenthesized_expression] = STATE(3497), + [sym__parenthesized_lvalue_expression] = STATE(2815), + [sym_lambda_expression] = STATE(3462), + [sym__lambda_expression_init] = STATE(7615), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3462), + [sym_anonymous_method_expression] = STATE(3462), + [sym_anonymous_object_creation_expression] = STATE(3462), + [sym_implicit_array_creation_expression] = STATE(3462), + [sym_implicit_object_creation_expression] = STATE(3462), + [sym_implicit_stackalloc_expression] = STATE(3462), + [sym_initializer_expression] = STATE(3462), + [sym_default_expression] = STATE(3462), + [sym_with_expression] = STATE(3462), + [sym_sizeof_expression] = STATE(3462), + [sym_typeof_expression] = STATE(3462), + [sym_makeref_expression] = STATE(3462), + [sym_ref_expression] = STATE(3462), + [sym_reftype_expression] = STATE(3462), + [sym_refvalue_expression] = STATE(3462), + [sym_stackalloc_expression] = STATE(3462), + [sym_range_expression] = STATE(3462), + [sym_tuple_expression] = STATE(2815), + [sym_literal] = STATE(3462), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3462), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(1102), [sym_preproc_endregion] = STATE(1102), [sym_preproc_line] = STATE(1102), @@ -228097,47 +227983,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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3440), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3367), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1241), - [anon_sym_LPAREN] = ACTIONS(2213), - [anon_sym_ref] = ACTIONS(2215), - [anon_sym_LBRACE] = ACTIONS(1247), - [anon_sym_delegate] = ACTIONS(1249), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1305), + [anon_sym_LPAREN] = ACTIONS(1357), + [anon_sym_ref] = ACTIONS(1359), + [anon_sym_LBRACE] = ACTIONS(1311), + [anon_sym_delegate] = ACTIONS(1313), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(2217), + [anon_sym_new] = ACTIONS(1315), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1253), - [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(1259), - [anon_sym_false] = ACTIONS(1259), - [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(1263), + [anon_sym_checked] = ACTIONS(1317), + [anon_sym_BANG] = ACTIONS(1101), + [anon_sym_TILDE] = ACTIONS(1101), + [anon_sym_PLUS_PLUS] = ACTIONS(1101), + [anon_sym_DASH_DASH] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(77), + [anon_sym_false] = ACTIONS(77), + [anon_sym_PLUS] = ACTIONS(1103), + [anon_sym_DASH] = ACTIONS(1103), + [anon_sym_STAR] = ACTIONS(1361), + [anon_sym_CARET] = ACTIONS(1101), + [anon_sym_AMP] = ACTIONS(1101), + [anon_sym_this] = ACTIONS(1321), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1265), + [anon_sym_base] = ACTIONS(1323), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1267), - [anon_sym_unchecked] = ACTIONS(1253), + [sym_predefined_type] = ACTIONS(91), + [anon_sym_unchecked] = ACTIONS(1317), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1269), - [anon_sym_throw] = ACTIONS(2225), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(1363), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2227), - [anon_sym_DOT_DOT] = ACTIONS(2229), + [anon_sym_await] = ACTIONS(1365), + [anon_sym_DOT_DOT] = ACTIONS(1367), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -228150,19 +228036,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1277), - [anon_sym_sizeof] = ACTIONS(1279), - [anon_sym_typeof] = ACTIONS(1281), - [anon_sym___makeref] = ACTIONS(1283), - [anon_sym___reftype] = ACTIONS(1285), - [anon_sym___refvalue] = ACTIONS(1287), - [sym_null_literal] = ACTIONS(1289), - [anon_sym_SQUOTE] = ACTIONS(1291), - [sym_integer_literal] = ACTIONS(1289), - [sym_real_literal] = ACTIONS(1293), - [anon_sym_DQUOTE] = ACTIONS(1295), - [sym_verbatim_string_literal] = ACTIONS(1293), - [aux_sym_preproc_if_token1] = ACTIONS(1297), + [anon_sym_stackalloc] = ACTIONS(1331), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(1333), + [anon_sym___reftype] = ACTIONS(1335), + [anon_sym___refvalue] = ACTIONS(1337), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_literal] = ACTIONS(143), + [anon_sym_DQUOTE] = ACTIONS(145), + [sym_verbatim_string_literal] = ACTIONS(143), + [aux_sym_preproc_if_token1] = ACTIONS(1339), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -228173,90 +228059,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1299), - [sym_interpolation_verbatim_start] = ACTIONS(1301), - [sym_interpolation_raw_start] = ACTIONS(1303), - [sym_raw_string_start] = ACTIONS(1305), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [sym_interpolation_raw_start] = ACTIONS(155), + [sym_raw_string_start] = ACTIONS(157), }, [1103] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2420), - [sym__name] = STATE(5897), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2397), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(5170), - [sym_non_lvalue_expression] = STATE(3066), - [sym_lvalue_expression] = STATE(3632), - [sym__expression_statement_expression] = STATE(3006), - [sym_assignment_expression] = STATE(3020), - [sym_binary_expression] = STATE(3006), - [sym_postfix_unary_expression] = STATE(3020), - [sym_prefix_unary_expression] = STATE(3020), - [sym__pointer_indirection_expression] = STATE(2423), - [sym_query_expression] = STATE(3006), - [sym_from_clause] = STATE(6184), - [sym_conditional_expression] = STATE(3006), - [sym_conditional_access_expression] = STATE(3006), - [sym_as_expression] = STATE(3006), - [sym_is_expression] = STATE(3006), - [sym_is_pattern_expression] = STATE(3006), - [sym_cast_expression] = STATE(3006), - [sym_checked_expression] = STATE(3006), - [sym_invocation_expression] = STATE(3020), - [sym_switch_expression] = STATE(3006), - [sym_await_expression] = STATE(3020), - [sym_throw_expression] = STATE(3006), - [sym_element_access_expression] = STATE(2423), - [sym_interpolated_string_expression] = STATE(3006), - [sym_member_access_expression] = STATE(2423), - [sym_object_creation_expression] = STATE(3020), - [sym_parenthesized_expression] = STATE(3020), - [sym__parenthesized_lvalue_expression] = STATE(2423), - [sym_lambda_expression] = STATE(3006), - [sym__lambda_expression_init] = STATE(7393), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3006), - [sym_anonymous_method_expression] = STATE(3006), - [sym_anonymous_object_creation_expression] = STATE(3006), - [sym_implicit_array_creation_expression] = STATE(3006), - [sym_implicit_object_creation_expression] = STATE(3006), - [sym_implicit_stackalloc_expression] = STATE(3006), - [sym_initializer_expression] = STATE(3006), - [sym_default_expression] = STATE(3006), - [sym_with_expression] = STATE(3006), - [sym_sizeof_expression] = STATE(3006), - [sym_typeof_expression] = STATE(3006), - [sym_makeref_expression] = STATE(3006), - [sym_ref_expression] = STATE(3006), - [sym_reftype_expression] = STATE(3006), - [sym_refvalue_expression] = STATE(3006), - [sym_stackalloc_expression] = STATE(3006), - [sym_range_expression] = STATE(3006), - [sym_tuple_expression] = STATE(2423), - [sym_literal] = STATE(3006), - [sym_character_literal] = STATE(3011), - [sym_string_literal] = STATE(3011), - [sym_raw_string_literal] = STATE(3011), - [sym_boolean_literal] = STATE(3011), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3006), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2816), + [sym__name] = STATE(5879), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2238), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(4250), + [sym_non_lvalue_expression] = STATE(3495), + [sym_lvalue_expression] = STATE(3197), + [sym__expression_statement_expression] = STATE(3462), + [sym_assignment_expression] = STATE(3497), + [sym_binary_expression] = STATE(3462), + [sym_postfix_unary_expression] = STATE(3497), + [sym_prefix_unary_expression] = STATE(3497), + [sym__pointer_indirection_expression] = STATE(2815), + [sym_query_expression] = STATE(3462), + [sym_from_clause] = STATE(6144), + [sym_conditional_expression] = STATE(3462), + [sym_conditional_access_expression] = STATE(3462), + [sym_as_expression] = STATE(3462), + [sym_is_expression] = STATE(3462), + [sym_is_pattern_expression] = STATE(3462), + [sym_cast_expression] = STATE(3462), + [sym_checked_expression] = STATE(3462), + [sym_invocation_expression] = STATE(3497), + [sym_switch_expression] = STATE(3462), + [sym_await_expression] = STATE(3497), + [sym_throw_expression] = STATE(3462), + [sym_element_access_expression] = STATE(2815), + [sym_interpolated_string_expression] = STATE(3462), + [sym_member_access_expression] = STATE(2815), + [sym_object_creation_expression] = STATE(3497), + [sym_parenthesized_expression] = STATE(3497), + [sym__parenthesized_lvalue_expression] = STATE(2815), + [sym_lambda_expression] = STATE(3462), + [sym__lambda_expression_init] = STATE(7615), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3462), + [sym_anonymous_method_expression] = STATE(3462), + [sym_anonymous_object_creation_expression] = STATE(3462), + [sym_implicit_array_creation_expression] = STATE(3462), + [sym_implicit_object_creation_expression] = STATE(3462), + [sym_implicit_stackalloc_expression] = STATE(3462), + [sym_initializer_expression] = STATE(3462), + [sym_default_expression] = STATE(3462), + [sym_with_expression] = STATE(3462), + [sym_sizeof_expression] = STATE(3462), + [sym_typeof_expression] = STATE(3462), + [sym_makeref_expression] = STATE(3462), + [sym_ref_expression] = STATE(3462), + [sym_reftype_expression] = STATE(3462), + [sym_refvalue_expression] = STATE(3462), + [sym_stackalloc_expression] = STATE(3462), + [sym_range_expression] = STATE(3462), + [sym_tuple_expression] = STATE(2815), + [sym_literal] = STATE(3462), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3462), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(1103), [sym_preproc_endregion] = STATE(1103), [sym_preproc_line] = STATE(1103), @@ -228266,47 +228152,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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3440), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3367), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1241), - [anon_sym_LPAREN] = ACTIONS(2213), - [anon_sym_ref] = ACTIONS(2215), - [anon_sym_LBRACE] = ACTIONS(1247), - [anon_sym_delegate] = ACTIONS(1249), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1305), + [anon_sym_LPAREN] = ACTIONS(1357), + [anon_sym_ref] = ACTIONS(1359), + [anon_sym_LBRACE] = ACTIONS(1311), + [anon_sym_delegate] = ACTIONS(1313), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(2217), + [anon_sym_new] = ACTIONS(1315), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1253), - [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(1259), - [anon_sym_false] = ACTIONS(1259), - [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(1263), + [anon_sym_checked] = ACTIONS(1317), + [anon_sym_BANG] = ACTIONS(1101), + [anon_sym_TILDE] = ACTIONS(1101), + [anon_sym_PLUS_PLUS] = ACTIONS(1101), + [anon_sym_DASH_DASH] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(77), + [anon_sym_false] = ACTIONS(77), + [anon_sym_PLUS] = ACTIONS(1103), + [anon_sym_DASH] = ACTIONS(1103), + [anon_sym_STAR] = ACTIONS(1361), + [anon_sym_CARET] = ACTIONS(1101), + [anon_sym_AMP] = ACTIONS(1101), + [anon_sym_this] = ACTIONS(1321), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1265), + [anon_sym_base] = ACTIONS(1323), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1267), - [anon_sym_unchecked] = ACTIONS(1253), + [sym_predefined_type] = ACTIONS(91), + [anon_sym_unchecked] = ACTIONS(1317), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1269), - [anon_sym_throw] = ACTIONS(2225), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(1363), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2227), - [anon_sym_DOT_DOT] = ACTIONS(2229), + [anon_sym_await] = ACTIONS(1365), + [anon_sym_DOT_DOT] = ACTIONS(1367), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -228319,19 +228205,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1277), - [anon_sym_sizeof] = ACTIONS(1279), - [anon_sym_typeof] = ACTIONS(1281), - [anon_sym___makeref] = ACTIONS(1283), - [anon_sym___reftype] = ACTIONS(1285), - [anon_sym___refvalue] = ACTIONS(1287), - [sym_null_literal] = ACTIONS(1289), - [anon_sym_SQUOTE] = ACTIONS(1291), - [sym_integer_literal] = ACTIONS(1289), - [sym_real_literal] = ACTIONS(1293), - [anon_sym_DQUOTE] = ACTIONS(1295), - [sym_verbatim_string_literal] = ACTIONS(1293), - [aux_sym_preproc_if_token1] = ACTIONS(1297), + [anon_sym_stackalloc] = ACTIONS(1331), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(1333), + [anon_sym___reftype] = ACTIONS(1335), + [anon_sym___refvalue] = ACTIONS(1337), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_literal] = ACTIONS(143), + [anon_sym_DQUOTE] = ACTIONS(145), + [sym_verbatim_string_literal] = ACTIONS(143), + [aux_sym_preproc_if_token1] = ACTIONS(1339), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -228342,90 +228228,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1299), - [sym_interpolation_verbatim_start] = ACTIONS(1301), - [sym_interpolation_raw_start] = ACTIONS(1303), - [sym_raw_string_start] = ACTIONS(1305), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [sym_interpolation_raw_start] = ACTIONS(155), + [sym_raw_string_start] = ACTIONS(157), }, [1104] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2610), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2816), [sym__name] = STATE(5879), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2197), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(4206), - [sym_non_lvalue_expression] = STATE(3277), - [sym_lvalue_expression] = STATE(3134), - [sym__expression_statement_expression] = STATE(3228), - [sym_assignment_expression] = STATE(3289), - [sym_binary_expression] = STATE(3228), - [sym_postfix_unary_expression] = STATE(3289), - [sym_prefix_unary_expression] = STATE(3289), - [sym__pointer_indirection_expression] = STATE(2609), - [sym_query_expression] = STATE(3228), - [sym_from_clause] = STATE(6162), - [sym_conditional_expression] = STATE(3228), - [sym_conditional_access_expression] = STATE(3228), - [sym_as_expression] = STATE(3228), - [sym_is_expression] = STATE(3228), - [sym_is_pattern_expression] = STATE(3228), - [sym_cast_expression] = STATE(3228), - [sym_checked_expression] = STATE(3228), - [sym_invocation_expression] = STATE(3289), - [sym_switch_expression] = STATE(3228), - [sym_await_expression] = STATE(3289), - [sym_throw_expression] = STATE(3228), - [sym_element_access_expression] = STATE(2609), - [sym_interpolated_string_expression] = STATE(3228), - [sym_member_access_expression] = STATE(2609), - [sym_object_creation_expression] = STATE(3289), - [sym_parenthesized_expression] = STATE(3289), - [sym__parenthesized_lvalue_expression] = STATE(2609), - [sym_lambda_expression] = STATE(3228), - [sym__lambda_expression_init] = STATE(7695), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3228), - [sym_anonymous_method_expression] = STATE(3228), - [sym_anonymous_object_creation_expression] = STATE(3228), - [sym_implicit_array_creation_expression] = STATE(3228), - [sym_implicit_object_creation_expression] = STATE(3228), - [sym_implicit_stackalloc_expression] = STATE(3228), - [sym_initializer_expression] = STATE(3228), - [sym_default_expression] = STATE(3228), - [sym_with_expression] = STATE(3228), - [sym_sizeof_expression] = STATE(3228), - [sym_typeof_expression] = STATE(3228), - [sym_makeref_expression] = STATE(3228), - [sym_ref_expression] = STATE(3228), - [sym_reftype_expression] = STATE(3228), - [sym_refvalue_expression] = STATE(3228), - [sym_stackalloc_expression] = STATE(3228), - [sym_range_expression] = STATE(3228), - [sym_tuple_expression] = STATE(2609), - [sym_literal] = STATE(3228), - [sym_character_literal] = STATE(3278), - [sym_string_literal] = STATE(3278), - [sym_raw_string_literal] = STATE(3278), - [sym_boolean_literal] = STATE(3278), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3228), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2238), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(4256), + [sym_non_lvalue_expression] = STATE(3495), + [sym_lvalue_expression] = STATE(3197), + [sym__expression_statement_expression] = STATE(3462), + [sym_assignment_expression] = STATE(3497), + [sym_binary_expression] = STATE(3462), + [sym_postfix_unary_expression] = STATE(3497), + [sym_prefix_unary_expression] = STATE(3497), + [sym__pointer_indirection_expression] = STATE(2815), + [sym_query_expression] = STATE(3462), + [sym_from_clause] = STATE(6144), + [sym_conditional_expression] = STATE(3462), + [sym_conditional_access_expression] = STATE(3462), + [sym_as_expression] = STATE(3462), + [sym_is_expression] = STATE(3462), + [sym_is_pattern_expression] = STATE(3462), + [sym_cast_expression] = STATE(3462), + [sym_checked_expression] = STATE(3462), + [sym_invocation_expression] = STATE(3497), + [sym_switch_expression] = STATE(3462), + [sym_await_expression] = STATE(3497), + [sym_throw_expression] = STATE(3462), + [sym_element_access_expression] = STATE(2815), + [sym_interpolated_string_expression] = STATE(3462), + [sym_member_access_expression] = STATE(2815), + [sym_object_creation_expression] = STATE(3497), + [sym_parenthesized_expression] = STATE(3497), + [sym__parenthesized_lvalue_expression] = STATE(2815), + [sym_lambda_expression] = STATE(3462), + [sym__lambda_expression_init] = STATE(7615), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3462), + [sym_anonymous_method_expression] = STATE(3462), + [sym_anonymous_object_creation_expression] = STATE(3462), + [sym_implicit_array_creation_expression] = STATE(3462), + [sym_implicit_object_creation_expression] = STATE(3462), + [sym_implicit_stackalloc_expression] = STATE(3462), + [sym_initializer_expression] = STATE(3462), + [sym_default_expression] = STATE(3462), + [sym_with_expression] = STATE(3462), + [sym_sizeof_expression] = STATE(3462), + [sym_typeof_expression] = STATE(3462), + [sym_makeref_expression] = STATE(3462), + [sym_ref_expression] = STATE(3462), + [sym_reftype_expression] = STATE(3462), + [sym_refvalue_expression] = STATE(3462), + [sym_stackalloc_expression] = STATE(3462), + [sym_range_expression] = STATE(3462), + [sym_tuple_expression] = STATE(2815), + [sym_literal] = STATE(3462), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3462), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(1104), [sym_preproc_endregion] = STATE(1104), [sym_preproc_line] = STATE(1104), @@ -228435,47 +228321,47 @@ 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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3396), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3367), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1153), - [anon_sym_LPAREN] = ACTIONS(1371), - [anon_sym_ref] = ACTIONS(1373), - [anon_sym_LBRACE] = ACTIONS(1159), - [anon_sym_delegate] = ACTIONS(1161), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1305), + [anon_sym_LPAREN] = ACTIONS(1357), + [anon_sym_ref] = ACTIONS(1359), + [anon_sym_LBRACE] = ACTIONS(1311), + [anon_sym_delegate] = ACTIONS(1313), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1163), + [anon_sym_new] = ACTIONS(1315), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1167), - [anon_sym_BANG] = ACTIONS(1377), - [anon_sym_TILDE] = ACTIONS(1377), - [anon_sym_PLUS_PLUS] = ACTIONS(1377), - [anon_sym_DASH_DASH] = ACTIONS(1377), - [anon_sym_true] = ACTIONS(1173), - [anon_sym_false] = ACTIONS(1173), - [anon_sym_PLUS] = ACTIONS(1375), - [anon_sym_DASH] = ACTIONS(1375), - [anon_sym_STAR] = ACTIONS(1379), - [anon_sym_CARET] = ACTIONS(1377), - [anon_sym_AMP] = ACTIONS(1377), - [anon_sym_this] = ACTIONS(1177), + [anon_sym_checked] = ACTIONS(1317), + [anon_sym_BANG] = ACTIONS(1101), + [anon_sym_TILDE] = ACTIONS(1101), + [anon_sym_PLUS_PLUS] = ACTIONS(1101), + [anon_sym_DASH_DASH] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(77), + [anon_sym_false] = ACTIONS(77), + [anon_sym_PLUS] = ACTIONS(1103), + [anon_sym_DASH] = ACTIONS(1103), + [anon_sym_STAR] = ACTIONS(1361), + [anon_sym_CARET] = ACTIONS(1101), + [anon_sym_AMP] = ACTIONS(1101), + [anon_sym_this] = ACTIONS(1321), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1179), + [anon_sym_base] = ACTIONS(1323), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1181), - [anon_sym_unchecked] = ACTIONS(1167), + [sym_predefined_type] = ACTIONS(91), + [anon_sym_unchecked] = ACTIONS(1317), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1183), - [anon_sym_throw] = ACTIONS(1381), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(1363), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1383), - [anon_sym_DOT_DOT] = ACTIONS(1385), + [anon_sym_await] = ACTIONS(1365), + [anon_sym_DOT_DOT] = ACTIONS(1367), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -228488,19 +228374,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1191), - [anon_sym_sizeof] = ACTIONS(1193), - [anon_sym_typeof] = ACTIONS(1195), - [anon_sym___makeref] = ACTIONS(1197), - [anon_sym___reftype] = ACTIONS(1199), - [anon_sym___refvalue] = ACTIONS(1201), - [sym_null_literal] = ACTIONS(1203), - [anon_sym_SQUOTE] = ACTIONS(1205), - [sym_integer_literal] = ACTIONS(1203), - [sym_real_literal] = ACTIONS(1207), - [anon_sym_DQUOTE] = ACTIONS(1209), - [sym_verbatim_string_literal] = ACTIONS(1207), - [aux_sym_preproc_if_token1] = ACTIONS(1211), + [anon_sym_stackalloc] = ACTIONS(1331), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(1333), + [anon_sym___reftype] = ACTIONS(1335), + [anon_sym___refvalue] = ACTIONS(1337), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_literal] = ACTIONS(143), + [anon_sym_DQUOTE] = ACTIONS(145), + [sym_verbatim_string_literal] = ACTIONS(143), + [aux_sym_preproc_if_token1] = ACTIONS(1339), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -228511,90 +228397,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1213), - [sym_interpolation_verbatim_start] = ACTIONS(1215), - [sym_interpolation_raw_start] = ACTIONS(1217), - [sym_raw_string_start] = ACTIONS(1219), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [sym_interpolation_raw_start] = ACTIONS(155), + [sym_raw_string_start] = ACTIONS(157), }, [1105] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2610), - [sym__name] = STATE(5872), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2397), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(4735), - [sym_non_lvalue_expression] = STATE(3277), - [sym_lvalue_expression] = STATE(3407), - [sym__expression_statement_expression] = STATE(3228), - [sym_assignment_expression] = STATE(3289), - [sym_binary_expression] = STATE(3228), - [sym_postfix_unary_expression] = STATE(3289), - [sym_prefix_unary_expression] = STATE(3289), - [sym__pointer_indirection_expression] = STATE(2609), - [sym_query_expression] = STATE(3228), - [sym_from_clause] = STATE(6165), - [sym_conditional_expression] = STATE(3228), - [sym_conditional_access_expression] = STATE(3228), - [sym_as_expression] = STATE(3228), - [sym_is_expression] = STATE(3228), - [sym_is_pattern_expression] = STATE(3228), - [sym_cast_expression] = STATE(3228), - [sym_checked_expression] = STATE(3228), - [sym_invocation_expression] = STATE(3289), - [sym_switch_expression] = STATE(3228), - [sym_await_expression] = STATE(3289), - [sym_throw_expression] = STATE(3228), - [sym_element_access_expression] = STATE(2609), - [sym_interpolated_string_expression] = STATE(3228), - [sym_member_access_expression] = STATE(2609), - [sym_object_creation_expression] = STATE(3289), - [sym_parenthesized_expression] = STATE(3289), - [sym__parenthesized_lvalue_expression] = STATE(2609), - [sym_lambda_expression] = STATE(3228), - [sym__lambda_expression_init] = STATE(7478), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3228), - [sym_anonymous_method_expression] = STATE(3228), - [sym_anonymous_object_creation_expression] = STATE(3228), - [sym_implicit_array_creation_expression] = STATE(3228), - [sym_implicit_object_creation_expression] = STATE(3228), - [sym_implicit_stackalloc_expression] = STATE(3228), - [sym_initializer_expression] = STATE(3228), - [sym_default_expression] = STATE(3228), - [sym_with_expression] = STATE(3228), - [sym_sizeof_expression] = STATE(3228), - [sym_typeof_expression] = STATE(3228), - [sym_makeref_expression] = STATE(3228), - [sym_ref_expression] = STATE(3228), - [sym_reftype_expression] = STATE(3228), - [sym_refvalue_expression] = STATE(3228), - [sym_stackalloc_expression] = STATE(3228), - [sym_range_expression] = STATE(3228), - [sym_tuple_expression] = STATE(2609), - [sym_literal] = STATE(3228), - [sym_character_literal] = STATE(3278), - [sym_string_literal] = STATE(3278), - [sym_raw_string_literal] = STATE(3278), - [sym_boolean_literal] = STATE(3278), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3228), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2816), + [sym__name] = STATE(5879), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2238), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(4258), + [sym_non_lvalue_expression] = STATE(3495), + [sym_lvalue_expression] = STATE(3197), + [sym__expression_statement_expression] = STATE(3462), + [sym_assignment_expression] = STATE(3497), + [sym_binary_expression] = STATE(3462), + [sym_postfix_unary_expression] = STATE(3497), + [sym_prefix_unary_expression] = STATE(3497), + [sym__pointer_indirection_expression] = STATE(2815), + [sym_query_expression] = STATE(3462), + [sym_from_clause] = STATE(6144), + [sym_conditional_expression] = STATE(3462), + [sym_conditional_access_expression] = STATE(3462), + [sym_as_expression] = STATE(3462), + [sym_is_expression] = STATE(3462), + [sym_is_pattern_expression] = STATE(3462), + [sym_cast_expression] = STATE(3462), + [sym_checked_expression] = STATE(3462), + [sym_invocation_expression] = STATE(3497), + [sym_switch_expression] = STATE(3462), + [sym_await_expression] = STATE(3497), + [sym_throw_expression] = STATE(3462), + [sym_element_access_expression] = STATE(2815), + [sym_interpolated_string_expression] = STATE(3462), + [sym_member_access_expression] = STATE(2815), + [sym_object_creation_expression] = STATE(3497), + [sym_parenthesized_expression] = STATE(3497), + [sym__parenthesized_lvalue_expression] = STATE(2815), + [sym_lambda_expression] = STATE(3462), + [sym__lambda_expression_init] = STATE(7615), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3462), + [sym_anonymous_method_expression] = STATE(3462), + [sym_anonymous_object_creation_expression] = STATE(3462), + [sym_implicit_array_creation_expression] = STATE(3462), + [sym_implicit_object_creation_expression] = STATE(3462), + [sym_implicit_stackalloc_expression] = STATE(3462), + [sym_initializer_expression] = STATE(3462), + [sym_default_expression] = STATE(3462), + [sym_with_expression] = STATE(3462), + [sym_sizeof_expression] = STATE(3462), + [sym_typeof_expression] = STATE(3462), + [sym_makeref_expression] = STATE(3462), + [sym_ref_expression] = STATE(3462), + [sym_reftype_expression] = STATE(3462), + [sym_refvalue_expression] = STATE(3462), + [sym_stackalloc_expression] = STATE(3462), + [sym_range_expression] = STATE(3462), + [sym_tuple_expression] = STATE(2815), + [sym_literal] = STATE(3462), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3462), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(1105), [sym_preproc_endregion] = STATE(1105), [sym_preproc_line] = STATE(1105), @@ -228604,47 +228490,47 @@ 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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3396), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3367), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1153), - [anon_sym_LPAREN] = ACTIONS(1823), - [anon_sym_ref] = ACTIONS(1825), - [anon_sym_LBRACE] = ACTIONS(1159), - [anon_sym_delegate] = ACTIONS(1161), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1305), + [anon_sym_LPAREN] = ACTIONS(1357), + [anon_sym_ref] = ACTIONS(1359), + [anon_sym_LBRACE] = ACTIONS(1311), + [anon_sym_delegate] = ACTIONS(1313), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1827), + [anon_sym_new] = ACTIONS(1315), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1167), - [anon_sym_BANG] = ACTIONS(1831), - [anon_sym_TILDE] = ACTIONS(1831), - [anon_sym_PLUS_PLUS] = ACTIONS(1831), - [anon_sym_DASH_DASH] = ACTIONS(1831), - [anon_sym_true] = ACTIONS(1173), - [anon_sym_false] = ACTIONS(1173), - [anon_sym_PLUS] = ACTIONS(1829), - [anon_sym_DASH] = ACTIONS(1829), - [anon_sym_STAR] = ACTIONS(1833), - [anon_sym_CARET] = ACTIONS(1831), - [anon_sym_AMP] = ACTIONS(1831), - [anon_sym_this] = ACTIONS(1177), + [anon_sym_checked] = ACTIONS(1317), + [anon_sym_BANG] = ACTIONS(1101), + [anon_sym_TILDE] = ACTIONS(1101), + [anon_sym_PLUS_PLUS] = ACTIONS(1101), + [anon_sym_DASH_DASH] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(77), + [anon_sym_false] = ACTIONS(77), + [anon_sym_PLUS] = ACTIONS(1103), + [anon_sym_DASH] = ACTIONS(1103), + [anon_sym_STAR] = ACTIONS(1361), + [anon_sym_CARET] = ACTIONS(1101), + [anon_sym_AMP] = ACTIONS(1101), + [anon_sym_this] = ACTIONS(1321), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1179), + [anon_sym_base] = ACTIONS(1323), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1181), - [anon_sym_unchecked] = ACTIONS(1167), + [sym_predefined_type] = ACTIONS(91), + [anon_sym_unchecked] = ACTIONS(1317), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1183), - [anon_sym_throw] = ACTIONS(1835), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(1363), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1837), - [anon_sym_DOT_DOT] = ACTIONS(1839), + [anon_sym_await] = ACTIONS(1365), + [anon_sym_DOT_DOT] = ACTIONS(1367), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -228657,19 +228543,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1191), - [anon_sym_sizeof] = ACTIONS(1193), - [anon_sym_typeof] = ACTIONS(1195), - [anon_sym___makeref] = ACTIONS(1197), - [anon_sym___reftype] = ACTIONS(1199), - [anon_sym___refvalue] = ACTIONS(1201), - [sym_null_literal] = ACTIONS(1203), - [anon_sym_SQUOTE] = ACTIONS(1205), - [sym_integer_literal] = ACTIONS(1203), - [sym_real_literal] = ACTIONS(1207), - [anon_sym_DQUOTE] = ACTIONS(1209), - [sym_verbatim_string_literal] = ACTIONS(1207), - [aux_sym_preproc_if_token1] = ACTIONS(1211), + [anon_sym_stackalloc] = ACTIONS(1331), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(1333), + [anon_sym___reftype] = ACTIONS(1335), + [anon_sym___refvalue] = ACTIONS(1337), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_literal] = ACTIONS(143), + [anon_sym_DQUOTE] = ACTIONS(145), + [sym_verbatim_string_literal] = ACTIONS(143), + [aux_sym_preproc_if_token1] = ACTIONS(1339), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -228680,90 +228566,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1213), - [sym_interpolation_verbatim_start] = ACTIONS(1215), - [sym_interpolation_raw_start] = ACTIONS(1217), - [sym_raw_string_start] = ACTIONS(1219), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [sym_interpolation_raw_start] = ACTIONS(155), + [sym_raw_string_start] = ACTIONS(157), }, [1106] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2420), - [sym__name] = STATE(5897), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2397), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(5193), - [sym_non_lvalue_expression] = STATE(3066), - [sym_lvalue_expression] = STATE(3632), - [sym__expression_statement_expression] = STATE(3006), - [sym_assignment_expression] = STATE(3020), - [sym_binary_expression] = STATE(3006), - [sym_postfix_unary_expression] = STATE(3020), - [sym_prefix_unary_expression] = STATE(3020), - [sym__pointer_indirection_expression] = STATE(2423), - [sym_query_expression] = STATE(3006), - [sym_from_clause] = STATE(6184), - [sym_conditional_expression] = STATE(3006), - [sym_conditional_access_expression] = STATE(3006), - [sym_as_expression] = STATE(3006), - [sym_is_expression] = STATE(3006), - [sym_is_pattern_expression] = STATE(3006), - [sym_cast_expression] = STATE(3006), - [sym_checked_expression] = STATE(3006), - [sym_invocation_expression] = STATE(3020), - [sym_switch_expression] = STATE(3006), - [sym_await_expression] = STATE(3020), - [sym_throw_expression] = STATE(3006), - [sym_element_access_expression] = STATE(2423), - [sym_interpolated_string_expression] = STATE(3006), - [sym_member_access_expression] = STATE(2423), - [sym_object_creation_expression] = STATE(3020), - [sym_parenthesized_expression] = STATE(3020), - [sym__parenthesized_lvalue_expression] = STATE(2423), - [sym_lambda_expression] = STATE(3006), - [sym__lambda_expression_init] = STATE(7393), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3006), - [sym_anonymous_method_expression] = STATE(3006), - [sym_anonymous_object_creation_expression] = STATE(3006), - [sym_implicit_array_creation_expression] = STATE(3006), - [sym_implicit_object_creation_expression] = STATE(3006), - [sym_implicit_stackalloc_expression] = STATE(3006), - [sym_initializer_expression] = STATE(3006), - [sym_default_expression] = STATE(3006), - [sym_with_expression] = STATE(3006), - [sym_sizeof_expression] = STATE(3006), - [sym_typeof_expression] = STATE(3006), - [sym_makeref_expression] = STATE(3006), - [sym_ref_expression] = STATE(3006), - [sym_reftype_expression] = STATE(3006), - [sym_refvalue_expression] = STATE(3006), - [sym_stackalloc_expression] = STATE(3006), - [sym_range_expression] = STATE(3006), - [sym_tuple_expression] = STATE(2423), - [sym_literal] = STATE(3006), - [sym_character_literal] = STATE(3011), - [sym_string_literal] = STATE(3011), - [sym_raw_string_literal] = STATE(3011), - [sym_boolean_literal] = STATE(3011), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3006), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2816), + [sym__name] = STATE(5879), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2238), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(4259), + [sym_non_lvalue_expression] = STATE(3495), + [sym_lvalue_expression] = STATE(3197), + [sym__expression_statement_expression] = STATE(3462), + [sym_assignment_expression] = STATE(3497), + [sym_binary_expression] = STATE(3462), + [sym_postfix_unary_expression] = STATE(3497), + [sym_prefix_unary_expression] = STATE(3497), + [sym__pointer_indirection_expression] = STATE(2815), + [sym_query_expression] = STATE(3462), + [sym_from_clause] = STATE(6144), + [sym_conditional_expression] = STATE(3462), + [sym_conditional_access_expression] = STATE(3462), + [sym_as_expression] = STATE(3462), + [sym_is_expression] = STATE(3462), + [sym_is_pattern_expression] = STATE(3462), + [sym_cast_expression] = STATE(3462), + [sym_checked_expression] = STATE(3462), + [sym_invocation_expression] = STATE(3497), + [sym_switch_expression] = STATE(3462), + [sym_await_expression] = STATE(3497), + [sym_throw_expression] = STATE(3462), + [sym_element_access_expression] = STATE(2815), + [sym_interpolated_string_expression] = STATE(3462), + [sym_member_access_expression] = STATE(2815), + [sym_object_creation_expression] = STATE(3497), + [sym_parenthesized_expression] = STATE(3497), + [sym__parenthesized_lvalue_expression] = STATE(2815), + [sym_lambda_expression] = STATE(3462), + [sym__lambda_expression_init] = STATE(7615), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3462), + [sym_anonymous_method_expression] = STATE(3462), + [sym_anonymous_object_creation_expression] = STATE(3462), + [sym_implicit_array_creation_expression] = STATE(3462), + [sym_implicit_object_creation_expression] = STATE(3462), + [sym_implicit_stackalloc_expression] = STATE(3462), + [sym_initializer_expression] = STATE(3462), + [sym_default_expression] = STATE(3462), + [sym_with_expression] = STATE(3462), + [sym_sizeof_expression] = STATE(3462), + [sym_typeof_expression] = STATE(3462), + [sym_makeref_expression] = STATE(3462), + [sym_ref_expression] = STATE(3462), + [sym_reftype_expression] = STATE(3462), + [sym_refvalue_expression] = STATE(3462), + [sym_stackalloc_expression] = STATE(3462), + [sym_range_expression] = STATE(3462), + [sym_tuple_expression] = STATE(2815), + [sym_literal] = STATE(3462), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3462), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(1106), [sym_preproc_endregion] = STATE(1106), [sym_preproc_line] = STATE(1106), @@ -228773,47 +228659,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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3440), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3367), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1241), - [anon_sym_LPAREN] = ACTIONS(2213), - [anon_sym_ref] = ACTIONS(2215), - [anon_sym_LBRACE] = ACTIONS(1247), - [anon_sym_delegate] = ACTIONS(1249), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1305), + [anon_sym_LPAREN] = ACTIONS(1357), + [anon_sym_ref] = ACTIONS(1359), + [anon_sym_LBRACE] = ACTIONS(1311), + [anon_sym_delegate] = ACTIONS(1313), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(2217), + [anon_sym_new] = ACTIONS(1315), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1253), - [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(1259), - [anon_sym_false] = ACTIONS(1259), - [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(1263), + [anon_sym_checked] = ACTIONS(1317), + [anon_sym_BANG] = ACTIONS(1101), + [anon_sym_TILDE] = ACTIONS(1101), + [anon_sym_PLUS_PLUS] = ACTIONS(1101), + [anon_sym_DASH_DASH] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(77), + [anon_sym_false] = ACTIONS(77), + [anon_sym_PLUS] = ACTIONS(1103), + [anon_sym_DASH] = ACTIONS(1103), + [anon_sym_STAR] = ACTIONS(1361), + [anon_sym_CARET] = ACTIONS(1101), + [anon_sym_AMP] = ACTIONS(1101), + [anon_sym_this] = ACTIONS(1321), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1265), + [anon_sym_base] = ACTIONS(1323), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1267), - [anon_sym_unchecked] = ACTIONS(1253), + [sym_predefined_type] = ACTIONS(91), + [anon_sym_unchecked] = ACTIONS(1317), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1269), - [anon_sym_throw] = ACTIONS(2225), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(1363), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2227), - [anon_sym_DOT_DOT] = ACTIONS(2229), + [anon_sym_await] = ACTIONS(1365), + [anon_sym_DOT_DOT] = ACTIONS(1367), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -228826,19 +228712,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1277), - [anon_sym_sizeof] = ACTIONS(1279), - [anon_sym_typeof] = ACTIONS(1281), - [anon_sym___makeref] = ACTIONS(1283), - [anon_sym___reftype] = ACTIONS(1285), - [anon_sym___refvalue] = ACTIONS(1287), - [sym_null_literal] = ACTIONS(1289), - [anon_sym_SQUOTE] = ACTIONS(1291), - [sym_integer_literal] = ACTIONS(1289), - [sym_real_literal] = ACTIONS(1293), - [anon_sym_DQUOTE] = ACTIONS(1295), - [sym_verbatim_string_literal] = ACTIONS(1293), - [aux_sym_preproc_if_token1] = ACTIONS(1297), + [anon_sym_stackalloc] = ACTIONS(1331), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(1333), + [anon_sym___reftype] = ACTIONS(1335), + [anon_sym___refvalue] = ACTIONS(1337), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_literal] = ACTIONS(143), + [anon_sym_DQUOTE] = ACTIONS(145), + [sym_verbatim_string_literal] = ACTIONS(143), + [aux_sym_preproc_if_token1] = ACTIONS(1339), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -228849,90 +228735,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1299), - [sym_interpolation_verbatim_start] = ACTIONS(1301), - [sym_interpolation_raw_start] = ACTIONS(1303), - [sym_raw_string_start] = ACTIONS(1305), + [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(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2420), - [sym__name] = STATE(5897), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2397), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(5209), - [sym_non_lvalue_expression] = STATE(3066), - [sym_lvalue_expression] = STATE(3632), - [sym__expression_statement_expression] = STATE(3006), - [sym_assignment_expression] = STATE(3020), - [sym_binary_expression] = STATE(3006), - [sym_postfix_unary_expression] = STATE(3020), - [sym_prefix_unary_expression] = STATE(3020), - [sym__pointer_indirection_expression] = STATE(2423), - [sym_query_expression] = STATE(3006), - [sym_from_clause] = STATE(6184), - [sym_conditional_expression] = STATE(3006), - [sym_conditional_access_expression] = STATE(3006), - [sym_as_expression] = STATE(3006), - [sym_is_expression] = STATE(3006), - [sym_is_pattern_expression] = STATE(3006), - [sym_cast_expression] = STATE(3006), - [sym_checked_expression] = STATE(3006), - [sym_invocation_expression] = STATE(3020), - [sym_switch_expression] = STATE(3006), - [sym_await_expression] = STATE(3020), - [sym_throw_expression] = STATE(3006), - [sym_element_access_expression] = STATE(2423), - [sym_interpolated_string_expression] = STATE(3006), - [sym_member_access_expression] = STATE(2423), - [sym_object_creation_expression] = STATE(3020), - [sym_parenthesized_expression] = STATE(3020), - [sym__parenthesized_lvalue_expression] = STATE(2423), - [sym_lambda_expression] = STATE(3006), - [sym__lambda_expression_init] = STATE(7393), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3006), - [sym_anonymous_method_expression] = STATE(3006), - [sym_anonymous_object_creation_expression] = STATE(3006), - [sym_implicit_array_creation_expression] = STATE(3006), - [sym_implicit_object_creation_expression] = STATE(3006), - [sym_implicit_stackalloc_expression] = STATE(3006), - [sym_initializer_expression] = STATE(3006), - [sym_default_expression] = STATE(3006), - [sym_with_expression] = STATE(3006), - [sym_sizeof_expression] = STATE(3006), - [sym_typeof_expression] = STATE(3006), - [sym_makeref_expression] = STATE(3006), - [sym_ref_expression] = STATE(3006), - [sym_reftype_expression] = STATE(3006), - [sym_refvalue_expression] = STATE(3006), - [sym_stackalloc_expression] = STATE(3006), - [sym_range_expression] = STATE(3006), - [sym_tuple_expression] = STATE(2423), - [sym_literal] = STATE(3006), - [sym_character_literal] = STATE(3011), - [sym_string_literal] = STATE(3011), - [sym_raw_string_literal] = STATE(3011), - [sym_boolean_literal] = STATE(3011), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3006), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2816), + [sym__name] = STATE(5879), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2238), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(4261), + [sym_non_lvalue_expression] = STATE(3495), + [sym_lvalue_expression] = STATE(3197), + [sym__expression_statement_expression] = STATE(3462), + [sym_assignment_expression] = STATE(3497), + [sym_binary_expression] = STATE(3462), + [sym_postfix_unary_expression] = STATE(3497), + [sym_prefix_unary_expression] = STATE(3497), + [sym__pointer_indirection_expression] = STATE(2815), + [sym_query_expression] = STATE(3462), + [sym_from_clause] = STATE(6144), + [sym_conditional_expression] = STATE(3462), + [sym_conditional_access_expression] = STATE(3462), + [sym_as_expression] = STATE(3462), + [sym_is_expression] = STATE(3462), + [sym_is_pattern_expression] = STATE(3462), + [sym_cast_expression] = STATE(3462), + [sym_checked_expression] = STATE(3462), + [sym_invocation_expression] = STATE(3497), + [sym_switch_expression] = STATE(3462), + [sym_await_expression] = STATE(3497), + [sym_throw_expression] = STATE(3462), + [sym_element_access_expression] = STATE(2815), + [sym_interpolated_string_expression] = STATE(3462), + [sym_member_access_expression] = STATE(2815), + [sym_object_creation_expression] = STATE(3497), + [sym_parenthesized_expression] = STATE(3497), + [sym__parenthesized_lvalue_expression] = STATE(2815), + [sym_lambda_expression] = STATE(3462), + [sym__lambda_expression_init] = STATE(7615), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3462), + [sym_anonymous_method_expression] = STATE(3462), + [sym_anonymous_object_creation_expression] = STATE(3462), + [sym_implicit_array_creation_expression] = STATE(3462), + [sym_implicit_object_creation_expression] = STATE(3462), + [sym_implicit_stackalloc_expression] = STATE(3462), + [sym_initializer_expression] = STATE(3462), + [sym_default_expression] = STATE(3462), + [sym_with_expression] = STATE(3462), + [sym_sizeof_expression] = STATE(3462), + [sym_typeof_expression] = STATE(3462), + [sym_makeref_expression] = STATE(3462), + [sym_ref_expression] = STATE(3462), + [sym_reftype_expression] = STATE(3462), + [sym_refvalue_expression] = STATE(3462), + [sym_stackalloc_expression] = STATE(3462), + [sym_range_expression] = STATE(3462), + [sym_tuple_expression] = STATE(2815), + [sym_literal] = STATE(3462), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3462), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(1107), [sym_preproc_endregion] = STATE(1107), [sym_preproc_line] = STATE(1107), @@ -228942,47 +228828,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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3440), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3367), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1241), - [anon_sym_LPAREN] = ACTIONS(2213), - [anon_sym_ref] = ACTIONS(2215), - [anon_sym_LBRACE] = ACTIONS(1247), - [anon_sym_delegate] = ACTIONS(1249), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1305), + [anon_sym_LPAREN] = ACTIONS(1357), + [anon_sym_ref] = ACTIONS(1359), + [anon_sym_LBRACE] = ACTIONS(1311), + [anon_sym_delegate] = ACTIONS(1313), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(2217), + [anon_sym_new] = ACTIONS(1315), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1253), - [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(1259), - [anon_sym_false] = ACTIONS(1259), - [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(1263), + [anon_sym_checked] = ACTIONS(1317), + [anon_sym_BANG] = ACTIONS(1101), + [anon_sym_TILDE] = ACTIONS(1101), + [anon_sym_PLUS_PLUS] = ACTIONS(1101), + [anon_sym_DASH_DASH] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(77), + [anon_sym_false] = ACTIONS(77), + [anon_sym_PLUS] = ACTIONS(1103), + [anon_sym_DASH] = ACTIONS(1103), + [anon_sym_STAR] = ACTIONS(1361), + [anon_sym_CARET] = ACTIONS(1101), + [anon_sym_AMP] = ACTIONS(1101), + [anon_sym_this] = ACTIONS(1321), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1265), + [anon_sym_base] = ACTIONS(1323), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1267), - [anon_sym_unchecked] = ACTIONS(1253), + [sym_predefined_type] = ACTIONS(91), + [anon_sym_unchecked] = ACTIONS(1317), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1269), - [anon_sym_throw] = ACTIONS(2225), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(1363), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2227), - [anon_sym_DOT_DOT] = ACTIONS(2229), + [anon_sym_await] = ACTIONS(1365), + [anon_sym_DOT_DOT] = ACTIONS(1367), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -228995,19 +228881,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1277), - [anon_sym_sizeof] = ACTIONS(1279), - [anon_sym_typeof] = ACTIONS(1281), - [anon_sym___makeref] = ACTIONS(1283), - [anon_sym___reftype] = ACTIONS(1285), - [anon_sym___refvalue] = ACTIONS(1287), - [sym_null_literal] = ACTIONS(1289), - [anon_sym_SQUOTE] = ACTIONS(1291), - [sym_integer_literal] = ACTIONS(1289), - [sym_real_literal] = ACTIONS(1293), - [anon_sym_DQUOTE] = ACTIONS(1295), - [sym_verbatim_string_literal] = ACTIONS(1293), - [aux_sym_preproc_if_token1] = ACTIONS(1297), + [anon_sym_stackalloc] = ACTIONS(1331), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(1333), + [anon_sym___reftype] = ACTIONS(1335), + [anon_sym___refvalue] = ACTIONS(1337), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_literal] = ACTIONS(143), + [anon_sym_DQUOTE] = ACTIONS(145), + [sym_verbatim_string_literal] = ACTIONS(143), + [aux_sym_preproc_if_token1] = ACTIONS(1339), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -229018,90 +228904,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1299), - [sym_interpolation_verbatim_start] = ACTIONS(1301), - [sym_interpolation_raw_start] = ACTIONS(1303), - [sym_raw_string_start] = ACTIONS(1305), + [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(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2420), - [sym__name] = STATE(5897), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2397), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(5219), - [sym_non_lvalue_expression] = STATE(3066), - [sym_lvalue_expression] = STATE(3632), - [sym__expression_statement_expression] = STATE(3006), - [sym_assignment_expression] = STATE(3020), - [sym_binary_expression] = STATE(3006), - [sym_postfix_unary_expression] = STATE(3020), - [sym_prefix_unary_expression] = STATE(3020), - [sym__pointer_indirection_expression] = STATE(2423), - [sym_query_expression] = STATE(3006), - [sym_from_clause] = STATE(6184), - [sym_conditional_expression] = STATE(3006), - [sym_conditional_access_expression] = STATE(3006), - [sym_as_expression] = STATE(3006), - [sym_is_expression] = STATE(3006), - [sym_is_pattern_expression] = STATE(3006), - [sym_cast_expression] = STATE(3006), - [sym_checked_expression] = STATE(3006), - [sym_invocation_expression] = STATE(3020), - [sym_switch_expression] = STATE(3006), - [sym_await_expression] = STATE(3020), - [sym_throw_expression] = STATE(3006), - [sym_element_access_expression] = STATE(2423), - [sym_interpolated_string_expression] = STATE(3006), - [sym_member_access_expression] = STATE(2423), - [sym_object_creation_expression] = STATE(3020), - [sym_parenthesized_expression] = STATE(3020), - [sym__parenthesized_lvalue_expression] = STATE(2423), - [sym_lambda_expression] = STATE(3006), - [sym__lambda_expression_init] = STATE(7393), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3006), - [sym_anonymous_method_expression] = STATE(3006), - [sym_anonymous_object_creation_expression] = STATE(3006), - [sym_implicit_array_creation_expression] = STATE(3006), - [sym_implicit_object_creation_expression] = STATE(3006), - [sym_implicit_stackalloc_expression] = STATE(3006), - [sym_initializer_expression] = STATE(3006), - [sym_default_expression] = STATE(3006), - [sym_with_expression] = STATE(3006), - [sym_sizeof_expression] = STATE(3006), - [sym_typeof_expression] = STATE(3006), - [sym_makeref_expression] = STATE(3006), - [sym_ref_expression] = STATE(3006), - [sym_reftype_expression] = STATE(3006), - [sym_refvalue_expression] = STATE(3006), - [sym_stackalloc_expression] = STATE(3006), - [sym_range_expression] = STATE(3006), - [sym_tuple_expression] = STATE(2423), - [sym_literal] = STATE(3006), - [sym_character_literal] = STATE(3011), - [sym_string_literal] = STATE(3011), - [sym_raw_string_literal] = STATE(3011), - [sym_boolean_literal] = STATE(3011), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3006), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2816), + [sym__name] = STATE(5879), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2238), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(4262), + [sym_non_lvalue_expression] = STATE(3495), + [sym_lvalue_expression] = STATE(3197), + [sym__expression_statement_expression] = STATE(3462), + [sym_assignment_expression] = STATE(3497), + [sym_binary_expression] = STATE(3462), + [sym_postfix_unary_expression] = STATE(3497), + [sym_prefix_unary_expression] = STATE(3497), + [sym__pointer_indirection_expression] = STATE(2815), + [sym_query_expression] = STATE(3462), + [sym_from_clause] = STATE(6144), + [sym_conditional_expression] = STATE(3462), + [sym_conditional_access_expression] = STATE(3462), + [sym_as_expression] = STATE(3462), + [sym_is_expression] = STATE(3462), + [sym_is_pattern_expression] = STATE(3462), + [sym_cast_expression] = STATE(3462), + [sym_checked_expression] = STATE(3462), + [sym_invocation_expression] = STATE(3497), + [sym_switch_expression] = STATE(3462), + [sym_await_expression] = STATE(3497), + [sym_throw_expression] = STATE(3462), + [sym_element_access_expression] = STATE(2815), + [sym_interpolated_string_expression] = STATE(3462), + [sym_member_access_expression] = STATE(2815), + [sym_object_creation_expression] = STATE(3497), + [sym_parenthesized_expression] = STATE(3497), + [sym__parenthesized_lvalue_expression] = STATE(2815), + [sym_lambda_expression] = STATE(3462), + [sym__lambda_expression_init] = STATE(7615), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3462), + [sym_anonymous_method_expression] = STATE(3462), + [sym_anonymous_object_creation_expression] = STATE(3462), + [sym_implicit_array_creation_expression] = STATE(3462), + [sym_implicit_object_creation_expression] = STATE(3462), + [sym_implicit_stackalloc_expression] = STATE(3462), + [sym_initializer_expression] = STATE(3462), + [sym_default_expression] = STATE(3462), + [sym_with_expression] = STATE(3462), + [sym_sizeof_expression] = STATE(3462), + [sym_typeof_expression] = STATE(3462), + [sym_makeref_expression] = STATE(3462), + [sym_ref_expression] = STATE(3462), + [sym_reftype_expression] = STATE(3462), + [sym_refvalue_expression] = STATE(3462), + [sym_stackalloc_expression] = STATE(3462), + [sym_range_expression] = STATE(3462), + [sym_tuple_expression] = STATE(2815), + [sym_literal] = STATE(3462), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3462), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(1108), [sym_preproc_endregion] = STATE(1108), [sym_preproc_line] = STATE(1108), @@ -229111,47 +228997,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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3440), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3367), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1241), - [anon_sym_LPAREN] = ACTIONS(2213), - [anon_sym_ref] = ACTIONS(2215), - [anon_sym_LBRACE] = ACTIONS(1247), - [anon_sym_delegate] = ACTIONS(1249), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1305), + [anon_sym_LPAREN] = ACTIONS(1357), + [anon_sym_ref] = ACTIONS(1359), + [anon_sym_LBRACE] = ACTIONS(1311), + [anon_sym_delegate] = ACTIONS(1313), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(2217), + [anon_sym_new] = ACTIONS(1315), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1253), - [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(1259), - [anon_sym_false] = ACTIONS(1259), - [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(1263), + [anon_sym_checked] = ACTIONS(1317), + [anon_sym_BANG] = ACTIONS(1101), + [anon_sym_TILDE] = ACTIONS(1101), + [anon_sym_PLUS_PLUS] = ACTIONS(1101), + [anon_sym_DASH_DASH] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(77), + [anon_sym_false] = ACTIONS(77), + [anon_sym_PLUS] = ACTIONS(1103), + [anon_sym_DASH] = ACTIONS(1103), + [anon_sym_STAR] = ACTIONS(1361), + [anon_sym_CARET] = ACTIONS(1101), + [anon_sym_AMP] = ACTIONS(1101), + [anon_sym_this] = ACTIONS(1321), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1265), + [anon_sym_base] = ACTIONS(1323), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1267), - [anon_sym_unchecked] = ACTIONS(1253), + [sym_predefined_type] = ACTIONS(91), + [anon_sym_unchecked] = ACTIONS(1317), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1269), - [anon_sym_throw] = ACTIONS(2225), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(1363), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2227), - [anon_sym_DOT_DOT] = ACTIONS(2229), + [anon_sym_await] = ACTIONS(1365), + [anon_sym_DOT_DOT] = ACTIONS(1367), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -229164,19 +229050,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1277), - [anon_sym_sizeof] = ACTIONS(1279), - [anon_sym_typeof] = ACTIONS(1281), - [anon_sym___makeref] = ACTIONS(1283), - [anon_sym___reftype] = ACTIONS(1285), - [anon_sym___refvalue] = ACTIONS(1287), - [sym_null_literal] = ACTIONS(1289), - [anon_sym_SQUOTE] = ACTIONS(1291), - [sym_integer_literal] = ACTIONS(1289), - [sym_real_literal] = ACTIONS(1293), - [anon_sym_DQUOTE] = ACTIONS(1295), - [sym_verbatim_string_literal] = ACTIONS(1293), - [aux_sym_preproc_if_token1] = ACTIONS(1297), + [anon_sym_stackalloc] = ACTIONS(1331), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(1333), + [anon_sym___reftype] = ACTIONS(1335), + [anon_sym___refvalue] = ACTIONS(1337), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_literal] = ACTIONS(143), + [anon_sym_DQUOTE] = ACTIONS(145), + [sym_verbatim_string_literal] = ACTIONS(143), + [aux_sym_preproc_if_token1] = ACTIONS(1339), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -229187,90 +229073,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1299), - [sym_interpolation_verbatim_start] = ACTIONS(1301), - [sym_interpolation_raw_start] = ACTIONS(1303), - [sym_raw_string_start] = ACTIONS(1305), + [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(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2420), - [sym__name] = STATE(5897), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2397), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(5221), - [sym_non_lvalue_expression] = STATE(3066), - [sym_lvalue_expression] = STATE(3632), - [sym__expression_statement_expression] = STATE(3006), - [sym_assignment_expression] = STATE(3020), - [sym_binary_expression] = STATE(3006), - [sym_postfix_unary_expression] = STATE(3020), - [sym_prefix_unary_expression] = STATE(3020), - [sym__pointer_indirection_expression] = STATE(2423), - [sym_query_expression] = STATE(3006), - [sym_from_clause] = STATE(6184), - [sym_conditional_expression] = STATE(3006), - [sym_conditional_access_expression] = STATE(3006), - [sym_as_expression] = STATE(3006), - [sym_is_expression] = STATE(3006), - [sym_is_pattern_expression] = STATE(3006), - [sym_cast_expression] = STATE(3006), - [sym_checked_expression] = STATE(3006), - [sym_invocation_expression] = STATE(3020), - [sym_switch_expression] = STATE(3006), - [sym_await_expression] = STATE(3020), - [sym_throw_expression] = STATE(3006), - [sym_element_access_expression] = STATE(2423), - [sym_interpolated_string_expression] = STATE(3006), - [sym_member_access_expression] = STATE(2423), - [sym_object_creation_expression] = STATE(3020), - [sym_parenthesized_expression] = STATE(3020), - [sym__parenthesized_lvalue_expression] = STATE(2423), - [sym_lambda_expression] = STATE(3006), - [sym__lambda_expression_init] = STATE(7393), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3006), - [sym_anonymous_method_expression] = STATE(3006), - [sym_anonymous_object_creation_expression] = STATE(3006), - [sym_implicit_array_creation_expression] = STATE(3006), - [sym_implicit_object_creation_expression] = STATE(3006), - [sym_implicit_stackalloc_expression] = STATE(3006), - [sym_initializer_expression] = STATE(3006), - [sym_default_expression] = STATE(3006), - [sym_with_expression] = STATE(3006), - [sym_sizeof_expression] = STATE(3006), - [sym_typeof_expression] = STATE(3006), - [sym_makeref_expression] = STATE(3006), - [sym_ref_expression] = STATE(3006), - [sym_reftype_expression] = STATE(3006), - [sym_refvalue_expression] = STATE(3006), - [sym_stackalloc_expression] = STATE(3006), - [sym_range_expression] = STATE(3006), - [sym_tuple_expression] = STATE(2423), - [sym_literal] = STATE(3006), - [sym_character_literal] = STATE(3011), - [sym_string_literal] = STATE(3011), - [sym_raw_string_literal] = STATE(3011), - [sym_boolean_literal] = STATE(3011), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3006), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2816), + [sym__name] = STATE(5879), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2238), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(4263), + [sym_non_lvalue_expression] = STATE(3495), + [sym_lvalue_expression] = STATE(3197), + [sym__expression_statement_expression] = STATE(3462), + [sym_assignment_expression] = STATE(3497), + [sym_binary_expression] = STATE(3462), + [sym_postfix_unary_expression] = STATE(3497), + [sym_prefix_unary_expression] = STATE(3497), + [sym__pointer_indirection_expression] = STATE(2815), + [sym_query_expression] = STATE(3462), + [sym_from_clause] = STATE(6144), + [sym_conditional_expression] = STATE(3462), + [sym_conditional_access_expression] = STATE(3462), + [sym_as_expression] = STATE(3462), + [sym_is_expression] = STATE(3462), + [sym_is_pattern_expression] = STATE(3462), + [sym_cast_expression] = STATE(3462), + [sym_checked_expression] = STATE(3462), + [sym_invocation_expression] = STATE(3497), + [sym_switch_expression] = STATE(3462), + [sym_await_expression] = STATE(3497), + [sym_throw_expression] = STATE(3462), + [sym_element_access_expression] = STATE(2815), + [sym_interpolated_string_expression] = STATE(3462), + [sym_member_access_expression] = STATE(2815), + [sym_object_creation_expression] = STATE(3497), + [sym_parenthesized_expression] = STATE(3497), + [sym__parenthesized_lvalue_expression] = STATE(2815), + [sym_lambda_expression] = STATE(3462), + [sym__lambda_expression_init] = STATE(7615), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3462), + [sym_anonymous_method_expression] = STATE(3462), + [sym_anonymous_object_creation_expression] = STATE(3462), + [sym_implicit_array_creation_expression] = STATE(3462), + [sym_implicit_object_creation_expression] = STATE(3462), + [sym_implicit_stackalloc_expression] = STATE(3462), + [sym_initializer_expression] = STATE(3462), + [sym_default_expression] = STATE(3462), + [sym_with_expression] = STATE(3462), + [sym_sizeof_expression] = STATE(3462), + [sym_typeof_expression] = STATE(3462), + [sym_makeref_expression] = STATE(3462), + [sym_ref_expression] = STATE(3462), + [sym_reftype_expression] = STATE(3462), + [sym_refvalue_expression] = STATE(3462), + [sym_stackalloc_expression] = STATE(3462), + [sym_range_expression] = STATE(3462), + [sym_tuple_expression] = STATE(2815), + [sym_literal] = STATE(3462), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3462), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(1109), [sym_preproc_endregion] = STATE(1109), [sym_preproc_line] = STATE(1109), @@ -229280,47 +229166,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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3440), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3367), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1241), - [anon_sym_LPAREN] = ACTIONS(2213), - [anon_sym_ref] = ACTIONS(2215), - [anon_sym_LBRACE] = ACTIONS(1247), - [anon_sym_delegate] = ACTIONS(1249), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1305), + [anon_sym_LPAREN] = ACTIONS(1357), + [anon_sym_ref] = ACTIONS(1359), + [anon_sym_LBRACE] = ACTIONS(1311), + [anon_sym_delegate] = ACTIONS(1313), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(2217), + [anon_sym_new] = ACTIONS(1315), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1253), - [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(1259), - [anon_sym_false] = ACTIONS(1259), - [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(1263), + [anon_sym_checked] = ACTIONS(1317), + [anon_sym_BANG] = ACTIONS(1101), + [anon_sym_TILDE] = ACTIONS(1101), + [anon_sym_PLUS_PLUS] = ACTIONS(1101), + [anon_sym_DASH_DASH] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(77), + [anon_sym_false] = ACTIONS(77), + [anon_sym_PLUS] = ACTIONS(1103), + [anon_sym_DASH] = ACTIONS(1103), + [anon_sym_STAR] = ACTIONS(1361), + [anon_sym_CARET] = ACTIONS(1101), + [anon_sym_AMP] = ACTIONS(1101), + [anon_sym_this] = ACTIONS(1321), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1265), + [anon_sym_base] = ACTIONS(1323), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1267), - [anon_sym_unchecked] = ACTIONS(1253), + [sym_predefined_type] = ACTIONS(91), + [anon_sym_unchecked] = ACTIONS(1317), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1269), - [anon_sym_throw] = ACTIONS(2225), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(1363), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2227), - [anon_sym_DOT_DOT] = ACTIONS(2229), + [anon_sym_await] = ACTIONS(1365), + [anon_sym_DOT_DOT] = ACTIONS(1367), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -229333,19 +229219,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1277), - [anon_sym_sizeof] = ACTIONS(1279), - [anon_sym_typeof] = ACTIONS(1281), - [anon_sym___makeref] = ACTIONS(1283), - [anon_sym___reftype] = ACTIONS(1285), - [anon_sym___refvalue] = ACTIONS(1287), - [sym_null_literal] = ACTIONS(1289), - [anon_sym_SQUOTE] = ACTIONS(1291), - [sym_integer_literal] = ACTIONS(1289), - [sym_real_literal] = ACTIONS(1293), - [anon_sym_DQUOTE] = ACTIONS(1295), - [sym_verbatim_string_literal] = ACTIONS(1293), - [aux_sym_preproc_if_token1] = ACTIONS(1297), + [anon_sym_stackalloc] = ACTIONS(1331), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(1333), + [anon_sym___reftype] = ACTIONS(1335), + [anon_sym___refvalue] = ACTIONS(1337), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_literal] = ACTIONS(143), + [anon_sym_DQUOTE] = ACTIONS(145), + [sym_verbatim_string_literal] = ACTIONS(143), + [aux_sym_preproc_if_token1] = ACTIONS(1339), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -229356,90 +229242,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1299), - [sym_interpolation_verbatim_start] = ACTIONS(1301), - [sym_interpolation_raw_start] = ACTIONS(1303), - [sym_raw_string_start] = ACTIONS(1305), + [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(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2420), - [sym__name] = STATE(5897), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2397), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(5225), - [sym_non_lvalue_expression] = STATE(3066), - [sym_lvalue_expression] = STATE(3632), - [sym__expression_statement_expression] = STATE(3006), - [sym_assignment_expression] = STATE(3020), - [sym_binary_expression] = STATE(3006), - [sym_postfix_unary_expression] = STATE(3020), - [sym_prefix_unary_expression] = STATE(3020), - [sym__pointer_indirection_expression] = STATE(2423), - [sym_query_expression] = STATE(3006), - [sym_from_clause] = STATE(6184), - [sym_conditional_expression] = STATE(3006), - [sym_conditional_access_expression] = STATE(3006), - [sym_as_expression] = STATE(3006), - [sym_is_expression] = STATE(3006), - [sym_is_pattern_expression] = STATE(3006), - [sym_cast_expression] = STATE(3006), - [sym_checked_expression] = STATE(3006), - [sym_invocation_expression] = STATE(3020), - [sym_switch_expression] = STATE(3006), - [sym_await_expression] = STATE(3020), - [sym_throw_expression] = STATE(3006), - [sym_element_access_expression] = STATE(2423), - [sym_interpolated_string_expression] = STATE(3006), - [sym_member_access_expression] = STATE(2423), - [sym_object_creation_expression] = STATE(3020), - [sym_parenthesized_expression] = STATE(3020), - [sym__parenthesized_lvalue_expression] = STATE(2423), - [sym_lambda_expression] = STATE(3006), - [sym__lambda_expression_init] = STATE(7393), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3006), - [sym_anonymous_method_expression] = STATE(3006), - [sym_anonymous_object_creation_expression] = STATE(3006), - [sym_implicit_array_creation_expression] = STATE(3006), - [sym_implicit_object_creation_expression] = STATE(3006), - [sym_implicit_stackalloc_expression] = STATE(3006), - [sym_initializer_expression] = STATE(3006), - [sym_default_expression] = STATE(3006), - [sym_with_expression] = STATE(3006), - [sym_sizeof_expression] = STATE(3006), - [sym_typeof_expression] = STATE(3006), - [sym_makeref_expression] = STATE(3006), - [sym_ref_expression] = STATE(3006), - [sym_reftype_expression] = STATE(3006), - [sym_refvalue_expression] = STATE(3006), - [sym_stackalloc_expression] = STATE(3006), - [sym_range_expression] = STATE(3006), - [sym_tuple_expression] = STATE(2423), - [sym_literal] = STATE(3006), - [sym_character_literal] = STATE(3011), - [sym_string_literal] = STATE(3011), - [sym_raw_string_literal] = STATE(3011), - [sym_boolean_literal] = STATE(3011), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3006), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2816), + [sym__name] = STATE(5879), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2238), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(4264), + [sym_non_lvalue_expression] = STATE(3495), + [sym_lvalue_expression] = STATE(3197), + [sym__expression_statement_expression] = STATE(3462), + [sym_assignment_expression] = STATE(3497), + [sym_binary_expression] = STATE(3462), + [sym_postfix_unary_expression] = STATE(3497), + [sym_prefix_unary_expression] = STATE(3497), + [sym__pointer_indirection_expression] = STATE(2815), + [sym_query_expression] = STATE(3462), + [sym_from_clause] = STATE(6144), + [sym_conditional_expression] = STATE(3462), + [sym_conditional_access_expression] = STATE(3462), + [sym_as_expression] = STATE(3462), + [sym_is_expression] = STATE(3462), + [sym_is_pattern_expression] = STATE(3462), + [sym_cast_expression] = STATE(3462), + [sym_checked_expression] = STATE(3462), + [sym_invocation_expression] = STATE(3497), + [sym_switch_expression] = STATE(3462), + [sym_await_expression] = STATE(3497), + [sym_throw_expression] = STATE(3462), + [sym_element_access_expression] = STATE(2815), + [sym_interpolated_string_expression] = STATE(3462), + [sym_member_access_expression] = STATE(2815), + [sym_object_creation_expression] = STATE(3497), + [sym_parenthesized_expression] = STATE(3497), + [sym__parenthesized_lvalue_expression] = STATE(2815), + [sym_lambda_expression] = STATE(3462), + [sym__lambda_expression_init] = STATE(7615), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3462), + [sym_anonymous_method_expression] = STATE(3462), + [sym_anonymous_object_creation_expression] = STATE(3462), + [sym_implicit_array_creation_expression] = STATE(3462), + [sym_implicit_object_creation_expression] = STATE(3462), + [sym_implicit_stackalloc_expression] = STATE(3462), + [sym_initializer_expression] = STATE(3462), + [sym_default_expression] = STATE(3462), + [sym_with_expression] = STATE(3462), + [sym_sizeof_expression] = STATE(3462), + [sym_typeof_expression] = STATE(3462), + [sym_makeref_expression] = STATE(3462), + [sym_ref_expression] = STATE(3462), + [sym_reftype_expression] = STATE(3462), + [sym_refvalue_expression] = STATE(3462), + [sym_stackalloc_expression] = STATE(3462), + [sym_range_expression] = STATE(3462), + [sym_tuple_expression] = STATE(2815), + [sym_literal] = STATE(3462), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3462), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(1110), [sym_preproc_endregion] = STATE(1110), [sym_preproc_line] = STATE(1110), @@ -229449,47 +229335,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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3440), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3367), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1241), - [anon_sym_LPAREN] = ACTIONS(2213), - [anon_sym_ref] = ACTIONS(2215), - [anon_sym_LBRACE] = ACTIONS(1247), - [anon_sym_delegate] = ACTIONS(1249), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1305), + [anon_sym_LPAREN] = ACTIONS(1357), + [anon_sym_ref] = ACTIONS(1359), + [anon_sym_LBRACE] = ACTIONS(1311), + [anon_sym_delegate] = ACTIONS(1313), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(2217), + [anon_sym_new] = ACTIONS(1315), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1253), - [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(1259), - [anon_sym_false] = ACTIONS(1259), - [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(1263), + [anon_sym_checked] = ACTIONS(1317), + [anon_sym_BANG] = ACTIONS(1101), + [anon_sym_TILDE] = ACTIONS(1101), + [anon_sym_PLUS_PLUS] = ACTIONS(1101), + [anon_sym_DASH_DASH] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(77), + [anon_sym_false] = ACTIONS(77), + [anon_sym_PLUS] = ACTIONS(1103), + [anon_sym_DASH] = ACTIONS(1103), + [anon_sym_STAR] = ACTIONS(1361), + [anon_sym_CARET] = ACTIONS(1101), + [anon_sym_AMP] = ACTIONS(1101), + [anon_sym_this] = ACTIONS(1321), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1265), + [anon_sym_base] = ACTIONS(1323), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1267), - [anon_sym_unchecked] = ACTIONS(1253), + [sym_predefined_type] = ACTIONS(91), + [anon_sym_unchecked] = ACTIONS(1317), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1269), - [anon_sym_throw] = ACTIONS(2225), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(1363), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2227), - [anon_sym_DOT_DOT] = ACTIONS(2229), + [anon_sym_await] = ACTIONS(1365), + [anon_sym_DOT_DOT] = ACTIONS(1367), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -229502,19 +229388,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1277), - [anon_sym_sizeof] = ACTIONS(1279), - [anon_sym_typeof] = ACTIONS(1281), - [anon_sym___makeref] = ACTIONS(1283), - [anon_sym___reftype] = ACTIONS(1285), - [anon_sym___refvalue] = ACTIONS(1287), - [sym_null_literal] = ACTIONS(1289), - [anon_sym_SQUOTE] = ACTIONS(1291), - [sym_integer_literal] = ACTIONS(1289), - [sym_real_literal] = ACTIONS(1293), - [anon_sym_DQUOTE] = ACTIONS(1295), - [sym_verbatim_string_literal] = ACTIONS(1293), - [aux_sym_preproc_if_token1] = ACTIONS(1297), + [anon_sym_stackalloc] = ACTIONS(1331), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(1333), + [anon_sym___reftype] = ACTIONS(1335), + [anon_sym___refvalue] = ACTIONS(1337), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_literal] = ACTIONS(143), + [anon_sym_DQUOTE] = ACTIONS(145), + [sym_verbatim_string_literal] = ACTIONS(143), + [aux_sym_preproc_if_token1] = ACTIONS(1339), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -229525,90 +229411,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1299), - [sym_interpolation_verbatim_start] = ACTIONS(1301), - [sym_interpolation_raw_start] = ACTIONS(1303), - [sym_raw_string_start] = ACTIONS(1305), + [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(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2420), - [sym__name] = STATE(5897), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2397), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(5268), - [sym_non_lvalue_expression] = STATE(3066), - [sym_lvalue_expression] = STATE(3632), - [sym__expression_statement_expression] = STATE(3006), - [sym_assignment_expression] = STATE(3020), - [sym_binary_expression] = STATE(3006), - [sym_postfix_unary_expression] = STATE(3020), - [sym_prefix_unary_expression] = STATE(3020), - [sym__pointer_indirection_expression] = STATE(2423), - [sym_query_expression] = STATE(3006), - [sym_from_clause] = STATE(6184), - [sym_conditional_expression] = STATE(3006), - [sym_conditional_access_expression] = STATE(3006), - [sym_as_expression] = STATE(3006), - [sym_is_expression] = STATE(3006), - [sym_is_pattern_expression] = STATE(3006), - [sym_cast_expression] = STATE(3006), - [sym_checked_expression] = STATE(3006), - [sym_invocation_expression] = STATE(3020), - [sym_switch_expression] = STATE(3006), - [sym_await_expression] = STATE(3020), - [sym_throw_expression] = STATE(3006), - [sym_element_access_expression] = STATE(2423), - [sym_interpolated_string_expression] = STATE(3006), - [sym_member_access_expression] = STATE(2423), - [sym_object_creation_expression] = STATE(3020), - [sym_parenthesized_expression] = STATE(3020), - [sym__parenthesized_lvalue_expression] = STATE(2423), - [sym_lambda_expression] = STATE(3006), - [sym__lambda_expression_init] = STATE(7393), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3006), - [sym_anonymous_method_expression] = STATE(3006), - [sym_anonymous_object_creation_expression] = STATE(3006), - [sym_implicit_array_creation_expression] = STATE(3006), - [sym_implicit_object_creation_expression] = STATE(3006), - [sym_implicit_stackalloc_expression] = STATE(3006), - [sym_initializer_expression] = STATE(3006), - [sym_default_expression] = STATE(3006), - [sym_with_expression] = STATE(3006), - [sym_sizeof_expression] = STATE(3006), - [sym_typeof_expression] = STATE(3006), - [sym_makeref_expression] = STATE(3006), - [sym_ref_expression] = STATE(3006), - [sym_reftype_expression] = STATE(3006), - [sym_refvalue_expression] = STATE(3006), - [sym_stackalloc_expression] = STATE(3006), - [sym_range_expression] = STATE(3006), - [sym_tuple_expression] = STATE(2423), - [sym_literal] = STATE(3006), - [sym_character_literal] = STATE(3011), - [sym_string_literal] = STATE(3011), - [sym_raw_string_literal] = STATE(3011), - [sym_boolean_literal] = STATE(3011), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3006), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2816), + [sym__name] = STATE(5879), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2238), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(4265), + [sym_non_lvalue_expression] = STATE(3495), + [sym_lvalue_expression] = STATE(3197), + [sym__expression_statement_expression] = STATE(3462), + [sym_assignment_expression] = STATE(3497), + [sym_binary_expression] = STATE(3462), + [sym_postfix_unary_expression] = STATE(3497), + [sym_prefix_unary_expression] = STATE(3497), + [sym__pointer_indirection_expression] = STATE(2815), + [sym_query_expression] = STATE(3462), + [sym_from_clause] = STATE(6144), + [sym_conditional_expression] = STATE(3462), + [sym_conditional_access_expression] = STATE(3462), + [sym_as_expression] = STATE(3462), + [sym_is_expression] = STATE(3462), + [sym_is_pattern_expression] = STATE(3462), + [sym_cast_expression] = STATE(3462), + [sym_checked_expression] = STATE(3462), + [sym_invocation_expression] = STATE(3497), + [sym_switch_expression] = STATE(3462), + [sym_await_expression] = STATE(3497), + [sym_throw_expression] = STATE(3462), + [sym_element_access_expression] = STATE(2815), + [sym_interpolated_string_expression] = STATE(3462), + [sym_member_access_expression] = STATE(2815), + [sym_object_creation_expression] = STATE(3497), + [sym_parenthesized_expression] = STATE(3497), + [sym__parenthesized_lvalue_expression] = STATE(2815), + [sym_lambda_expression] = STATE(3462), + [sym__lambda_expression_init] = STATE(7615), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3462), + [sym_anonymous_method_expression] = STATE(3462), + [sym_anonymous_object_creation_expression] = STATE(3462), + [sym_implicit_array_creation_expression] = STATE(3462), + [sym_implicit_object_creation_expression] = STATE(3462), + [sym_implicit_stackalloc_expression] = STATE(3462), + [sym_initializer_expression] = STATE(3462), + [sym_default_expression] = STATE(3462), + [sym_with_expression] = STATE(3462), + [sym_sizeof_expression] = STATE(3462), + [sym_typeof_expression] = STATE(3462), + [sym_makeref_expression] = STATE(3462), + [sym_ref_expression] = STATE(3462), + [sym_reftype_expression] = STATE(3462), + [sym_refvalue_expression] = STATE(3462), + [sym_stackalloc_expression] = STATE(3462), + [sym_range_expression] = STATE(3462), + [sym_tuple_expression] = STATE(2815), + [sym_literal] = STATE(3462), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3462), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(1111), [sym_preproc_endregion] = STATE(1111), [sym_preproc_line] = STATE(1111), @@ -229618,47 +229504,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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3440), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3367), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1241), - [anon_sym_LPAREN] = ACTIONS(2213), - [anon_sym_ref] = ACTIONS(2215), - [anon_sym_LBRACE] = ACTIONS(1247), - [anon_sym_delegate] = ACTIONS(1249), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1305), + [anon_sym_LPAREN] = ACTIONS(1357), + [anon_sym_ref] = ACTIONS(1359), + [anon_sym_LBRACE] = ACTIONS(1311), + [anon_sym_delegate] = ACTIONS(1313), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(2217), + [anon_sym_new] = ACTIONS(1315), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1253), - [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(1259), - [anon_sym_false] = ACTIONS(1259), - [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(1263), + [anon_sym_checked] = ACTIONS(1317), + [anon_sym_BANG] = ACTIONS(1101), + [anon_sym_TILDE] = ACTIONS(1101), + [anon_sym_PLUS_PLUS] = ACTIONS(1101), + [anon_sym_DASH_DASH] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(77), + [anon_sym_false] = ACTIONS(77), + [anon_sym_PLUS] = ACTIONS(1103), + [anon_sym_DASH] = ACTIONS(1103), + [anon_sym_STAR] = ACTIONS(1361), + [anon_sym_CARET] = ACTIONS(1101), + [anon_sym_AMP] = ACTIONS(1101), + [anon_sym_this] = ACTIONS(1321), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1265), + [anon_sym_base] = ACTIONS(1323), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1267), - [anon_sym_unchecked] = ACTIONS(1253), + [sym_predefined_type] = ACTIONS(91), + [anon_sym_unchecked] = ACTIONS(1317), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1269), - [anon_sym_throw] = ACTIONS(2225), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(1363), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2227), - [anon_sym_DOT_DOT] = ACTIONS(2229), + [anon_sym_await] = ACTIONS(1365), + [anon_sym_DOT_DOT] = ACTIONS(1367), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -229671,19 +229557,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1277), - [anon_sym_sizeof] = ACTIONS(1279), - [anon_sym_typeof] = ACTIONS(1281), - [anon_sym___makeref] = ACTIONS(1283), - [anon_sym___reftype] = ACTIONS(1285), - [anon_sym___refvalue] = ACTIONS(1287), - [sym_null_literal] = ACTIONS(1289), - [anon_sym_SQUOTE] = ACTIONS(1291), - [sym_integer_literal] = ACTIONS(1289), - [sym_real_literal] = ACTIONS(1293), - [anon_sym_DQUOTE] = ACTIONS(1295), - [sym_verbatim_string_literal] = ACTIONS(1293), - [aux_sym_preproc_if_token1] = ACTIONS(1297), + [anon_sym_stackalloc] = ACTIONS(1331), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(1333), + [anon_sym___reftype] = ACTIONS(1335), + [anon_sym___refvalue] = ACTIONS(1337), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_literal] = ACTIONS(143), + [anon_sym_DQUOTE] = ACTIONS(145), + [sym_verbatim_string_literal] = ACTIONS(143), + [aux_sym_preproc_if_token1] = ACTIONS(1339), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -229694,90 +229580,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1299), - [sym_interpolation_verbatim_start] = ACTIONS(1301), - [sym_interpolation_raw_start] = ACTIONS(1303), - [sym_raw_string_start] = ACTIONS(1305), + [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(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2420), - [sym__name] = STATE(5897), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2397), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(5277), - [sym_non_lvalue_expression] = STATE(3066), - [sym_lvalue_expression] = STATE(3632), - [sym__expression_statement_expression] = STATE(3006), - [sym_assignment_expression] = STATE(3020), - [sym_binary_expression] = STATE(3006), - [sym_postfix_unary_expression] = STATE(3020), - [sym_prefix_unary_expression] = STATE(3020), - [sym__pointer_indirection_expression] = STATE(2423), - [sym_query_expression] = STATE(3006), - [sym_from_clause] = STATE(6184), - [sym_conditional_expression] = STATE(3006), - [sym_conditional_access_expression] = STATE(3006), - [sym_as_expression] = STATE(3006), - [sym_is_expression] = STATE(3006), - [sym_is_pattern_expression] = STATE(3006), - [sym_cast_expression] = STATE(3006), - [sym_checked_expression] = STATE(3006), - [sym_invocation_expression] = STATE(3020), - [sym_switch_expression] = STATE(3006), - [sym_await_expression] = STATE(3020), - [sym_throw_expression] = STATE(3006), - [sym_element_access_expression] = STATE(2423), - [sym_interpolated_string_expression] = STATE(3006), - [sym_member_access_expression] = STATE(2423), - [sym_object_creation_expression] = STATE(3020), - [sym_parenthesized_expression] = STATE(3020), - [sym__parenthesized_lvalue_expression] = STATE(2423), - [sym_lambda_expression] = STATE(3006), - [sym__lambda_expression_init] = STATE(7393), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3006), - [sym_anonymous_method_expression] = STATE(3006), - [sym_anonymous_object_creation_expression] = STATE(3006), - [sym_implicit_array_creation_expression] = STATE(3006), - [sym_implicit_object_creation_expression] = STATE(3006), - [sym_implicit_stackalloc_expression] = STATE(3006), - [sym_initializer_expression] = STATE(3006), - [sym_default_expression] = STATE(3006), - [sym_with_expression] = STATE(3006), - [sym_sizeof_expression] = STATE(3006), - [sym_typeof_expression] = STATE(3006), - [sym_makeref_expression] = STATE(3006), - [sym_ref_expression] = STATE(3006), - [sym_reftype_expression] = STATE(3006), - [sym_refvalue_expression] = STATE(3006), - [sym_stackalloc_expression] = STATE(3006), - [sym_range_expression] = STATE(3006), - [sym_tuple_expression] = STATE(2423), - [sym_literal] = STATE(3006), - [sym_character_literal] = STATE(3011), - [sym_string_literal] = STATE(3011), - [sym_raw_string_literal] = STATE(3011), - [sym_boolean_literal] = STATE(3011), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3006), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2816), + [sym__name] = STATE(5873), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2196), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(4289), + [sym_non_lvalue_expression] = STATE(3495), + [sym_lvalue_expression] = STATE(3208), + [sym__expression_statement_expression] = STATE(3462), + [sym_assignment_expression] = STATE(3497), + [sym_binary_expression] = STATE(3462), + [sym_postfix_unary_expression] = STATE(3497), + [sym_prefix_unary_expression] = STATE(3497), + [sym__pointer_indirection_expression] = STATE(2815), + [sym_query_expression] = STATE(3462), + [sym_from_clause] = STATE(6140), + [sym_conditional_expression] = STATE(3462), + [sym_conditional_access_expression] = STATE(3462), + [sym_as_expression] = STATE(3462), + [sym_is_expression] = STATE(3462), + [sym_is_pattern_expression] = STATE(3462), + [sym_cast_expression] = STATE(3462), + [sym_checked_expression] = STATE(3462), + [sym_invocation_expression] = STATE(3497), + [sym_switch_expression] = STATE(3462), + [sym_await_expression] = STATE(3497), + [sym_throw_expression] = STATE(3462), + [sym_element_access_expression] = STATE(2815), + [sym_interpolated_string_expression] = STATE(3462), + [sym_member_access_expression] = STATE(2815), + [sym_object_creation_expression] = STATE(3497), + [sym_parenthesized_expression] = STATE(3497), + [sym__parenthesized_lvalue_expression] = STATE(2815), + [sym_lambda_expression] = STATE(3462), + [sym__lambda_expression_init] = STATE(7520), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3462), + [sym_anonymous_method_expression] = STATE(3462), + [sym_anonymous_object_creation_expression] = STATE(3462), + [sym_implicit_array_creation_expression] = STATE(3462), + [sym_implicit_object_creation_expression] = STATE(3462), + [sym_implicit_stackalloc_expression] = STATE(3462), + [sym_initializer_expression] = STATE(3462), + [sym_default_expression] = STATE(3462), + [sym_with_expression] = STATE(3462), + [sym_sizeof_expression] = STATE(3462), + [sym_typeof_expression] = STATE(3462), + [sym_makeref_expression] = STATE(3462), + [sym_ref_expression] = STATE(3462), + [sym_reftype_expression] = STATE(3462), + [sym_refvalue_expression] = STATE(3462), + [sym_stackalloc_expression] = STATE(3462), + [sym_range_expression] = STATE(3462), + [sym_tuple_expression] = STATE(2815), + [sym_literal] = STATE(3462), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3462), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(1112), [sym_preproc_endregion] = STATE(1112), [sym_preproc_line] = STATE(1112), @@ -229787,47 +229673,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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3440), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3367), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1241), - [anon_sym_LPAREN] = ACTIONS(2213), - [anon_sym_ref] = ACTIONS(2215), - [anon_sym_LBRACE] = ACTIONS(1247), - [anon_sym_delegate] = ACTIONS(1249), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1305), + [anon_sym_LPAREN] = ACTIONS(1369), + [anon_sym_ref] = ACTIONS(1371), + [anon_sym_LBRACE] = ACTIONS(1311), + [anon_sym_delegate] = ACTIONS(1313), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(2217), + [anon_sym_new] = ACTIONS(1315), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1253), - [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(1259), - [anon_sym_false] = ACTIONS(1259), - [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(1263), + [anon_sym_checked] = ACTIONS(1317), + [anon_sym_BANG] = ACTIONS(1375), + [anon_sym_TILDE] = ACTIONS(1375), + [anon_sym_PLUS_PLUS] = ACTIONS(1375), + [anon_sym_DASH_DASH] = ACTIONS(1375), + [anon_sym_true] = ACTIONS(77), + [anon_sym_false] = ACTIONS(77), + [anon_sym_PLUS] = ACTIONS(1373), + [anon_sym_DASH] = ACTIONS(1373), + [anon_sym_STAR] = ACTIONS(1377), + [anon_sym_CARET] = ACTIONS(1375), + [anon_sym_AMP] = ACTIONS(1375), + [anon_sym_this] = ACTIONS(1321), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1265), + [anon_sym_base] = ACTIONS(1323), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1267), - [anon_sym_unchecked] = ACTIONS(1253), + [sym_predefined_type] = ACTIONS(91), + [anon_sym_unchecked] = ACTIONS(1317), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1269), - [anon_sym_throw] = ACTIONS(2225), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(1379), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2227), - [anon_sym_DOT_DOT] = ACTIONS(2229), + [anon_sym_await] = ACTIONS(1381), + [anon_sym_DOT_DOT] = ACTIONS(1383), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -229840,19 +229726,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1277), - [anon_sym_sizeof] = ACTIONS(1279), - [anon_sym_typeof] = ACTIONS(1281), - [anon_sym___makeref] = ACTIONS(1283), - [anon_sym___reftype] = ACTIONS(1285), - [anon_sym___refvalue] = ACTIONS(1287), - [sym_null_literal] = ACTIONS(1289), - [anon_sym_SQUOTE] = ACTIONS(1291), - [sym_integer_literal] = ACTIONS(1289), - [sym_real_literal] = ACTIONS(1293), - [anon_sym_DQUOTE] = ACTIONS(1295), - [sym_verbatim_string_literal] = ACTIONS(1293), - [aux_sym_preproc_if_token1] = ACTIONS(1297), + [anon_sym_stackalloc] = ACTIONS(1331), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(1333), + [anon_sym___reftype] = ACTIONS(1335), + [anon_sym___refvalue] = ACTIONS(1337), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_literal] = ACTIONS(143), + [anon_sym_DQUOTE] = ACTIONS(145), + [sym_verbatim_string_literal] = ACTIONS(143), + [aux_sym_preproc_if_token1] = ACTIONS(1339), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -229863,90 +229749,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1299), - [sym_interpolation_verbatim_start] = ACTIONS(1301), - [sym_interpolation_raw_start] = ACTIONS(1303), - [sym_raw_string_start] = ACTIONS(1305), + [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(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2420), - [sym__name] = STATE(5897), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2397), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(5282), - [sym_non_lvalue_expression] = STATE(3066), - [sym_lvalue_expression] = STATE(3632), - [sym__expression_statement_expression] = STATE(3006), - [sym_assignment_expression] = STATE(3020), - [sym_binary_expression] = STATE(3006), - [sym_postfix_unary_expression] = STATE(3020), - [sym_prefix_unary_expression] = STATE(3020), - [sym__pointer_indirection_expression] = STATE(2423), - [sym_query_expression] = STATE(3006), - [sym_from_clause] = STATE(6184), - [sym_conditional_expression] = STATE(3006), - [sym_conditional_access_expression] = STATE(3006), - [sym_as_expression] = STATE(3006), - [sym_is_expression] = STATE(3006), - [sym_is_pattern_expression] = STATE(3006), - [sym_cast_expression] = STATE(3006), - [sym_checked_expression] = STATE(3006), - [sym_invocation_expression] = STATE(3020), - [sym_switch_expression] = STATE(3006), - [sym_await_expression] = STATE(3020), - [sym_throw_expression] = STATE(3006), - [sym_element_access_expression] = STATE(2423), - [sym_interpolated_string_expression] = STATE(3006), - [sym_member_access_expression] = STATE(2423), - [sym_object_creation_expression] = STATE(3020), - [sym_parenthesized_expression] = STATE(3020), - [sym__parenthesized_lvalue_expression] = STATE(2423), - [sym_lambda_expression] = STATE(3006), - [sym__lambda_expression_init] = STATE(7393), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3006), - [sym_anonymous_method_expression] = STATE(3006), - [sym_anonymous_object_creation_expression] = STATE(3006), - [sym_implicit_array_creation_expression] = STATE(3006), - [sym_implicit_object_creation_expression] = STATE(3006), - [sym_implicit_stackalloc_expression] = STATE(3006), - [sym_initializer_expression] = STATE(3006), - [sym_default_expression] = STATE(3006), - [sym_with_expression] = STATE(3006), - [sym_sizeof_expression] = STATE(3006), - [sym_typeof_expression] = STATE(3006), - [sym_makeref_expression] = STATE(3006), - [sym_ref_expression] = STATE(3006), - [sym_reftype_expression] = STATE(3006), - [sym_refvalue_expression] = STATE(3006), - [sym_stackalloc_expression] = STATE(3006), - [sym_range_expression] = STATE(3006), - [sym_tuple_expression] = STATE(2423), - [sym_literal] = STATE(3006), - [sym_character_literal] = STATE(3011), - [sym_string_literal] = STATE(3011), - [sym_raw_string_literal] = STATE(3011), - [sym_boolean_literal] = STATE(3011), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3006), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2816), + [sym__name] = STATE(5879), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2238), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(3214), + [sym_non_lvalue_expression] = STATE(3495), + [sym_lvalue_expression] = STATE(3197), + [sym__expression_statement_expression] = STATE(3462), + [sym_assignment_expression] = STATE(3497), + [sym_binary_expression] = STATE(3462), + [sym_postfix_unary_expression] = STATE(3497), + [sym_prefix_unary_expression] = STATE(3497), + [sym__pointer_indirection_expression] = STATE(2815), + [sym_query_expression] = STATE(3462), + [sym_from_clause] = STATE(6144), + [sym_conditional_expression] = STATE(3462), + [sym_conditional_access_expression] = STATE(3462), + [sym_as_expression] = STATE(3462), + [sym_is_expression] = STATE(3462), + [sym_is_pattern_expression] = STATE(3462), + [sym_cast_expression] = STATE(3462), + [sym_checked_expression] = STATE(3462), + [sym_invocation_expression] = STATE(3497), + [sym_switch_expression] = STATE(3462), + [sym_await_expression] = STATE(3497), + [sym_throw_expression] = STATE(3462), + [sym_element_access_expression] = STATE(2815), + [sym_interpolated_string_expression] = STATE(3462), + [sym_member_access_expression] = STATE(2815), + [sym_object_creation_expression] = STATE(3497), + [sym_parenthesized_expression] = STATE(3497), + [sym__parenthesized_lvalue_expression] = STATE(2815), + [sym_lambda_expression] = STATE(3462), + [sym__lambda_expression_init] = STATE(7615), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3462), + [sym_anonymous_method_expression] = STATE(3462), + [sym_anonymous_object_creation_expression] = STATE(3462), + [sym_implicit_array_creation_expression] = STATE(3462), + [sym_implicit_object_creation_expression] = STATE(3462), + [sym_implicit_stackalloc_expression] = STATE(3462), + [sym_initializer_expression] = STATE(3462), + [sym_default_expression] = STATE(3462), + [sym_with_expression] = STATE(3462), + [sym_sizeof_expression] = STATE(3462), + [sym_typeof_expression] = STATE(3462), + [sym_makeref_expression] = STATE(3462), + [sym_ref_expression] = STATE(3462), + [sym_reftype_expression] = STATE(3462), + [sym_refvalue_expression] = STATE(3462), + [sym_stackalloc_expression] = STATE(3462), + [sym_range_expression] = STATE(3462), + [sym_tuple_expression] = STATE(2815), + [sym_literal] = STATE(3462), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3462), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(1113), [sym_preproc_endregion] = STATE(1113), [sym_preproc_line] = STATE(1113), @@ -229956,47 +229842,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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3440), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3367), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1241), - [anon_sym_LPAREN] = ACTIONS(2213), - [anon_sym_ref] = ACTIONS(2215), - [anon_sym_LBRACE] = ACTIONS(1247), - [anon_sym_delegate] = ACTIONS(1249), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1305), + [anon_sym_LPAREN] = ACTIONS(1357), + [anon_sym_ref] = ACTIONS(1359), + [anon_sym_LBRACE] = ACTIONS(1311), + [anon_sym_delegate] = ACTIONS(1313), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(2217), + [anon_sym_new] = ACTIONS(1315), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1253), - [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(1259), - [anon_sym_false] = ACTIONS(1259), - [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(1263), + [anon_sym_checked] = ACTIONS(1317), + [anon_sym_BANG] = ACTIONS(1101), + [anon_sym_TILDE] = ACTIONS(1101), + [anon_sym_PLUS_PLUS] = ACTIONS(1101), + [anon_sym_DASH_DASH] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(77), + [anon_sym_false] = ACTIONS(77), + [anon_sym_PLUS] = ACTIONS(1103), + [anon_sym_DASH] = ACTIONS(1103), + [anon_sym_STAR] = ACTIONS(1361), + [anon_sym_CARET] = ACTIONS(1101), + [anon_sym_AMP] = ACTIONS(1101), + [anon_sym_this] = ACTIONS(1321), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1265), + [anon_sym_base] = ACTIONS(1323), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1267), - [anon_sym_unchecked] = ACTIONS(1253), + [sym_predefined_type] = ACTIONS(91), + [anon_sym_unchecked] = ACTIONS(1317), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1269), - [anon_sym_throw] = ACTIONS(2225), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(1363), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2227), - [anon_sym_DOT_DOT] = ACTIONS(2229), + [anon_sym_await] = ACTIONS(1365), + [anon_sym_DOT_DOT] = ACTIONS(1367), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -230009,19 +229895,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1277), - [anon_sym_sizeof] = ACTIONS(1279), - [anon_sym_typeof] = ACTIONS(1281), - [anon_sym___makeref] = ACTIONS(1283), - [anon_sym___reftype] = ACTIONS(1285), - [anon_sym___refvalue] = ACTIONS(1287), - [sym_null_literal] = ACTIONS(1289), - [anon_sym_SQUOTE] = ACTIONS(1291), - [sym_integer_literal] = ACTIONS(1289), - [sym_real_literal] = ACTIONS(1293), - [anon_sym_DQUOTE] = ACTIONS(1295), - [sym_verbatim_string_literal] = ACTIONS(1293), - [aux_sym_preproc_if_token1] = ACTIONS(1297), + [anon_sym_stackalloc] = ACTIONS(1331), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(1333), + [anon_sym___reftype] = ACTIONS(1335), + [anon_sym___refvalue] = ACTIONS(1337), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_literal] = ACTIONS(143), + [anon_sym_DQUOTE] = ACTIONS(145), + [sym_verbatim_string_literal] = ACTIONS(143), + [aux_sym_preproc_if_token1] = ACTIONS(1339), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -230032,90 +229918,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1299), - [sym_interpolation_verbatim_start] = ACTIONS(1301), - [sym_interpolation_raw_start] = ACTIONS(1303), - [sym_raw_string_start] = ACTIONS(1305), + [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(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2420), - [sym__name] = STATE(5897), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2397), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(5284), - [sym_non_lvalue_expression] = STATE(3066), - [sym_lvalue_expression] = STATE(3632), - [sym__expression_statement_expression] = STATE(3006), - [sym_assignment_expression] = STATE(3020), - [sym_binary_expression] = STATE(3006), - [sym_postfix_unary_expression] = STATE(3020), - [sym_prefix_unary_expression] = STATE(3020), - [sym__pointer_indirection_expression] = STATE(2423), - [sym_query_expression] = STATE(3006), - [sym_from_clause] = STATE(6184), - [sym_conditional_expression] = STATE(3006), - [sym_conditional_access_expression] = STATE(3006), - [sym_as_expression] = STATE(3006), - [sym_is_expression] = STATE(3006), - [sym_is_pattern_expression] = STATE(3006), - [sym_cast_expression] = STATE(3006), - [sym_checked_expression] = STATE(3006), - [sym_invocation_expression] = STATE(3020), - [sym_switch_expression] = STATE(3006), - [sym_await_expression] = STATE(3020), - [sym_throw_expression] = STATE(3006), - [sym_element_access_expression] = STATE(2423), - [sym_interpolated_string_expression] = STATE(3006), - [sym_member_access_expression] = STATE(2423), - [sym_object_creation_expression] = STATE(3020), - [sym_parenthesized_expression] = STATE(3020), - [sym__parenthesized_lvalue_expression] = STATE(2423), - [sym_lambda_expression] = STATE(3006), - [sym__lambda_expression_init] = STATE(7393), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3006), - [sym_anonymous_method_expression] = STATE(3006), - [sym_anonymous_object_creation_expression] = STATE(3006), - [sym_implicit_array_creation_expression] = STATE(3006), - [sym_implicit_object_creation_expression] = STATE(3006), - [sym_implicit_stackalloc_expression] = STATE(3006), - [sym_initializer_expression] = STATE(3006), - [sym_default_expression] = STATE(3006), - [sym_with_expression] = STATE(3006), - [sym_sizeof_expression] = STATE(3006), - [sym_typeof_expression] = STATE(3006), - [sym_makeref_expression] = STATE(3006), - [sym_ref_expression] = STATE(3006), - [sym_reftype_expression] = STATE(3006), - [sym_refvalue_expression] = STATE(3006), - [sym_stackalloc_expression] = STATE(3006), - [sym_range_expression] = STATE(3006), - [sym_tuple_expression] = STATE(2423), - [sym_literal] = STATE(3006), - [sym_character_literal] = STATE(3011), - [sym_string_literal] = STATE(3011), - [sym_raw_string_literal] = STATE(3011), - [sym_boolean_literal] = STATE(3011), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3006), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2816), + [sym__name] = STATE(5873), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2196), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(4290), + [sym_non_lvalue_expression] = STATE(3495), + [sym_lvalue_expression] = STATE(3208), + [sym__expression_statement_expression] = STATE(3462), + [sym_assignment_expression] = STATE(3497), + [sym_binary_expression] = STATE(3462), + [sym_postfix_unary_expression] = STATE(3497), + [sym_prefix_unary_expression] = STATE(3497), + [sym__pointer_indirection_expression] = STATE(2815), + [sym_query_expression] = STATE(3462), + [sym_from_clause] = STATE(6140), + [sym_conditional_expression] = STATE(3462), + [sym_conditional_access_expression] = STATE(3462), + [sym_as_expression] = STATE(3462), + [sym_is_expression] = STATE(3462), + [sym_is_pattern_expression] = STATE(3462), + [sym_cast_expression] = STATE(3462), + [sym_checked_expression] = STATE(3462), + [sym_invocation_expression] = STATE(3497), + [sym_switch_expression] = STATE(3462), + [sym_await_expression] = STATE(3497), + [sym_throw_expression] = STATE(3462), + [sym_element_access_expression] = STATE(2815), + [sym_interpolated_string_expression] = STATE(3462), + [sym_member_access_expression] = STATE(2815), + [sym_object_creation_expression] = STATE(3497), + [sym_parenthesized_expression] = STATE(3497), + [sym__parenthesized_lvalue_expression] = STATE(2815), + [sym_lambda_expression] = STATE(3462), + [sym__lambda_expression_init] = STATE(7520), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3462), + [sym_anonymous_method_expression] = STATE(3462), + [sym_anonymous_object_creation_expression] = STATE(3462), + [sym_implicit_array_creation_expression] = STATE(3462), + [sym_implicit_object_creation_expression] = STATE(3462), + [sym_implicit_stackalloc_expression] = STATE(3462), + [sym_initializer_expression] = STATE(3462), + [sym_default_expression] = STATE(3462), + [sym_with_expression] = STATE(3462), + [sym_sizeof_expression] = STATE(3462), + [sym_typeof_expression] = STATE(3462), + [sym_makeref_expression] = STATE(3462), + [sym_ref_expression] = STATE(3462), + [sym_reftype_expression] = STATE(3462), + [sym_refvalue_expression] = STATE(3462), + [sym_stackalloc_expression] = STATE(3462), + [sym_range_expression] = STATE(3462), + [sym_tuple_expression] = STATE(2815), + [sym_literal] = STATE(3462), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3462), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(1114), [sym_preproc_endregion] = STATE(1114), [sym_preproc_line] = STATE(1114), @@ -230125,47 +230011,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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3440), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3367), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1241), - [anon_sym_LPAREN] = ACTIONS(2213), - [anon_sym_ref] = ACTIONS(2215), - [anon_sym_LBRACE] = ACTIONS(1247), - [anon_sym_delegate] = ACTIONS(1249), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1305), + [anon_sym_LPAREN] = ACTIONS(1369), + [anon_sym_ref] = ACTIONS(1371), + [anon_sym_LBRACE] = ACTIONS(1311), + [anon_sym_delegate] = ACTIONS(1313), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(2217), + [anon_sym_new] = ACTIONS(1315), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1253), - [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(1259), - [anon_sym_false] = ACTIONS(1259), - [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(1263), + [anon_sym_checked] = ACTIONS(1317), + [anon_sym_BANG] = ACTIONS(1375), + [anon_sym_TILDE] = ACTIONS(1375), + [anon_sym_PLUS_PLUS] = ACTIONS(1375), + [anon_sym_DASH_DASH] = ACTIONS(1375), + [anon_sym_true] = ACTIONS(77), + [anon_sym_false] = ACTIONS(77), + [anon_sym_PLUS] = ACTIONS(1373), + [anon_sym_DASH] = ACTIONS(1373), + [anon_sym_STAR] = ACTIONS(1377), + [anon_sym_CARET] = ACTIONS(1375), + [anon_sym_AMP] = ACTIONS(1375), + [anon_sym_this] = ACTIONS(1321), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1265), + [anon_sym_base] = ACTIONS(1323), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1267), - [anon_sym_unchecked] = ACTIONS(1253), + [sym_predefined_type] = ACTIONS(91), + [anon_sym_unchecked] = ACTIONS(1317), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1269), - [anon_sym_throw] = ACTIONS(2225), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(1379), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2227), - [anon_sym_DOT_DOT] = ACTIONS(2229), + [anon_sym_await] = ACTIONS(1381), + [anon_sym_DOT_DOT] = ACTIONS(1383), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -230178,19 +230064,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1277), - [anon_sym_sizeof] = ACTIONS(1279), - [anon_sym_typeof] = ACTIONS(1281), - [anon_sym___makeref] = ACTIONS(1283), - [anon_sym___reftype] = ACTIONS(1285), - [anon_sym___refvalue] = ACTIONS(1287), - [sym_null_literal] = ACTIONS(1289), - [anon_sym_SQUOTE] = ACTIONS(1291), - [sym_integer_literal] = ACTIONS(1289), - [sym_real_literal] = ACTIONS(1293), - [anon_sym_DQUOTE] = ACTIONS(1295), - [sym_verbatim_string_literal] = ACTIONS(1293), - [aux_sym_preproc_if_token1] = ACTIONS(1297), + [anon_sym_stackalloc] = ACTIONS(1331), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(1333), + [anon_sym___reftype] = ACTIONS(1335), + [anon_sym___refvalue] = ACTIONS(1337), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_literal] = ACTIONS(143), + [anon_sym_DQUOTE] = ACTIONS(145), + [sym_verbatim_string_literal] = ACTIONS(143), + [aux_sym_preproc_if_token1] = ACTIONS(1339), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -230201,90 +230087,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1299), - [sym_interpolation_verbatim_start] = ACTIONS(1301), - [sym_interpolation_raw_start] = ACTIONS(1303), - [sym_raw_string_start] = ACTIONS(1305), + [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(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2420), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2416), [sym__name] = STATE(5897), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2397), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(5288), - [sym_non_lvalue_expression] = STATE(3066), - [sym_lvalue_expression] = STATE(3632), - [sym__expression_statement_expression] = STATE(3006), - [sym_assignment_expression] = STATE(3020), - [sym_binary_expression] = STATE(3006), - [sym_postfix_unary_expression] = STATE(3020), - [sym_prefix_unary_expression] = STATE(3020), - [sym__pointer_indirection_expression] = STATE(2423), - [sym_query_expression] = STATE(3006), - [sym_from_clause] = STATE(6184), - [sym_conditional_expression] = STATE(3006), - [sym_conditional_access_expression] = STATE(3006), - [sym_as_expression] = STATE(3006), - [sym_is_expression] = STATE(3006), - [sym_is_pattern_expression] = STATE(3006), - [sym_cast_expression] = STATE(3006), - [sym_checked_expression] = STATE(3006), - [sym_invocation_expression] = STATE(3020), - [sym_switch_expression] = STATE(3006), - [sym_await_expression] = STATE(3020), - [sym_throw_expression] = STATE(3006), - [sym_element_access_expression] = STATE(2423), - [sym_interpolated_string_expression] = STATE(3006), - [sym_member_access_expression] = STATE(2423), - [sym_object_creation_expression] = STATE(3020), - [sym_parenthesized_expression] = STATE(3020), - [sym__parenthesized_lvalue_expression] = STATE(2423), - [sym_lambda_expression] = STATE(3006), - [sym__lambda_expression_init] = STATE(7393), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3006), - [sym_anonymous_method_expression] = STATE(3006), - [sym_anonymous_object_creation_expression] = STATE(3006), - [sym_implicit_array_creation_expression] = STATE(3006), - [sym_implicit_object_creation_expression] = STATE(3006), - [sym_implicit_stackalloc_expression] = STATE(3006), - [sym_initializer_expression] = STATE(3006), - [sym_default_expression] = STATE(3006), - [sym_with_expression] = STATE(3006), - [sym_sizeof_expression] = STATE(3006), - [sym_typeof_expression] = STATE(3006), - [sym_makeref_expression] = STATE(3006), - [sym_ref_expression] = STATE(3006), - [sym_reftype_expression] = STATE(3006), - [sym_refvalue_expression] = STATE(3006), - [sym_stackalloc_expression] = STATE(3006), - [sym_range_expression] = STATE(3006), - [sym_tuple_expression] = STATE(2423), - [sym_literal] = STATE(3006), - [sym_character_literal] = STATE(3011), - [sym_string_literal] = STATE(3011), - [sym_raw_string_literal] = STATE(3011), - [sym_boolean_literal] = STATE(3011), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3006), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2367), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(5190), + [sym_non_lvalue_expression] = STATE(3040), + [sym_lvalue_expression] = STATE(3600), + [sym__expression_statement_expression] = STATE(3035), + [sym_assignment_expression] = STATE(3043), + [sym_binary_expression] = STATE(3035), + [sym_postfix_unary_expression] = STATE(3043), + [sym_prefix_unary_expression] = STATE(3043), + [sym__pointer_indirection_expression] = STATE(2415), + [sym_query_expression] = STATE(3035), + [sym_from_clause] = STATE(6156), + [sym_conditional_expression] = STATE(3035), + [sym_conditional_access_expression] = STATE(3035), + [sym_as_expression] = STATE(3035), + [sym_is_expression] = STATE(3035), + [sym_is_pattern_expression] = STATE(3035), + [sym_cast_expression] = STATE(3035), + [sym_checked_expression] = STATE(3035), + [sym_invocation_expression] = STATE(3043), + [sym_switch_expression] = STATE(3035), + [sym_await_expression] = STATE(3043), + [sym_throw_expression] = STATE(3035), + [sym_element_access_expression] = STATE(2415), + [sym_interpolated_string_expression] = STATE(3035), + [sym_member_access_expression] = STATE(2415), + [sym_object_creation_expression] = STATE(3043), + [sym_parenthesized_expression] = STATE(3043), + [sym__parenthesized_lvalue_expression] = STATE(2415), + [sym_lambda_expression] = STATE(3035), + [sym__lambda_expression_init] = STATE(7561), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3035), + [sym_anonymous_method_expression] = STATE(3035), + [sym_anonymous_object_creation_expression] = STATE(3035), + [sym_implicit_array_creation_expression] = STATE(3035), + [sym_implicit_object_creation_expression] = STATE(3035), + [sym_implicit_stackalloc_expression] = STATE(3035), + [sym_initializer_expression] = STATE(3035), + [sym_default_expression] = STATE(3035), + [sym_with_expression] = STATE(3035), + [sym_sizeof_expression] = STATE(3035), + [sym_typeof_expression] = STATE(3035), + [sym_makeref_expression] = STATE(3035), + [sym_ref_expression] = STATE(3035), + [sym_reftype_expression] = STATE(3035), + [sym_refvalue_expression] = STATE(3035), + [sym_stackalloc_expression] = STATE(3035), + [sym_range_expression] = STATE(3035), + [sym_tuple_expression] = STATE(2415), + [sym_literal] = STATE(3035), + [sym_character_literal] = STATE(3037), + [sym_string_literal] = STATE(3037), + [sym_raw_string_literal] = STATE(3037), + [sym_boolean_literal] = STATE(3037), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3035), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(1115), [sym_preproc_endregion] = STATE(1115), [sym_preproc_line] = STATE(1115), @@ -230294,47 +230180,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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3440), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3455), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1241), - [anon_sym_LPAREN] = ACTIONS(2213), - [anon_sym_ref] = ACTIONS(2215), - [anon_sym_LBRACE] = ACTIONS(1247), - [anon_sym_delegate] = ACTIONS(1249), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1239), + [anon_sym_LPAREN] = ACTIONS(2217), + [anon_sym_ref] = ACTIONS(2219), + [anon_sym_LBRACE] = ACTIONS(1245), + [anon_sym_delegate] = ACTIONS(1247), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(2217), + [anon_sym_new] = ACTIONS(2221), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1253), - [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(1259), - [anon_sym_false] = ACTIONS(1259), - [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(1263), + [anon_sym_checked] = ACTIONS(1251), + [anon_sym_BANG] = ACTIONS(2225), + [anon_sym_TILDE] = ACTIONS(2225), + [anon_sym_PLUS_PLUS] = ACTIONS(2225), + [anon_sym_DASH_DASH] = ACTIONS(2225), + [anon_sym_true] = ACTIONS(1257), + [anon_sym_false] = ACTIONS(1257), + [anon_sym_PLUS] = ACTIONS(2223), + [anon_sym_DASH] = ACTIONS(2223), + [anon_sym_STAR] = ACTIONS(2227), + [anon_sym_CARET] = ACTIONS(2225), + [anon_sym_AMP] = ACTIONS(2225), + [anon_sym_this] = ACTIONS(1261), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1265), + [anon_sym_base] = ACTIONS(1263), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1267), - [anon_sym_unchecked] = ACTIONS(1253), + [sym_predefined_type] = ACTIONS(1265), + [anon_sym_unchecked] = ACTIONS(1251), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1269), - [anon_sym_throw] = ACTIONS(2225), + [anon_sym_default] = ACTIONS(1267), + [anon_sym_throw] = ACTIONS(2229), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2227), - [anon_sym_DOT_DOT] = ACTIONS(2229), + [anon_sym_await] = ACTIONS(2231), + [anon_sym_DOT_DOT] = ACTIONS(2233), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -230347,19 +230233,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1277), - [anon_sym_sizeof] = ACTIONS(1279), - [anon_sym_typeof] = ACTIONS(1281), - [anon_sym___makeref] = ACTIONS(1283), - [anon_sym___reftype] = ACTIONS(1285), - [anon_sym___refvalue] = ACTIONS(1287), - [sym_null_literal] = ACTIONS(1289), - [anon_sym_SQUOTE] = ACTIONS(1291), - [sym_integer_literal] = ACTIONS(1289), - [sym_real_literal] = ACTIONS(1293), - [anon_sym_DQUOTE] = ACTIONS(1295), - [sym_verbatim_string_literal] = ACTIONS(1293), - [aux_sym_preproc_if_token1] = ACTIONS(1297), + [anon_sym_stackalloc] = ACTIONS(1275), + [anon_sym_sizeof] = ACTIONS(1277), + [anon_sym_typeof] = ACTIONS(1279), + [anon_sym___makeref] = ACTIONS(1281), + [anon_sym___reftype] = ACTIONS(1283), + [anon_sym___refvalue] = ACTIONS(1285), + [sym_null_literal] = ACTIONS(1287), + [anon_sym_SQUOTE] = ACTIONS(1289), + [sym_integer_literal] = ACTIONS(1287), + [sym_real_literal] = ACTIONS(1291), + [anon_sym_DQUOTE] = ACTIONS(1293), + [sym_verbatim_string_literal] = ACTIONS(1291), + [aux_sym_preproc_if_token1] = ACTIONS(1295), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -230370,90 +230256,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1299), - [sym_interpolation_verbatim_start] = ACTIONS(1301), - [sym_interpolation_raw_start] = ACTIONS(1303), - [sym_raw_string_start] = ACTIONS(1305), + [sym_interpolation_regular_start] = ACTIONS(1297), + [sym_interpolation_verbatim_start] = ACTIONS(1299), + [sym_interpolation_raw_start] = ACTIONS(1301), + [sym_raw_string_start] = ACTIONS(1303), }, [1116] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2420), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2416), [sym__name] = STATE(5897), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2397), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(5289), - [sym_non_lvalue_expression] = STATE(3066), - [sym_lvalue_expression] = STATE(3632), - [sym__expression_statement_expression] = STATE(3006), - [sym_assignment_expression] = STATE(3020), - [sym_binary_expression] = STATE(3006), - [sym_postfix_unary_expression] = STATE(3020), - [sym_prefix_unary_expression] = STATE(3020), - [sym__pointer_indirection_expression] = STATE(2423), - [sym_query_expression] = STATE(3006), - [sym_from_clause] = STATE(6184), - [sym_conditional_expression] = STATE(3006), - [sym_conditional_access_expression] = STATE(3006), - [sym_as_expression] = STATE(3006), - [sym_is_expression] = STATE(3006), - [sym_is_pattern_expression] = STATE(3006), - [sym_cast_expression] = STATE(3006), - [sym_checked_expression] = STATE(3006), - [sym_invocation_expression] = STATE(3020), - [sym_switch_expression] = STATE(3006), - [sym_await_expression] = STATE(3020), - [sym_throw_expression] = STATE(3006), - [sym_element_access_expression] = STATE(2423), - [sym_interpolated_string_expression] = STATE(3006), - [sym_member_access_expression] = STATE(2423), - [sym_object_creation_expression] = STATE(3020), - [sym_parenthesized_expression] = STATE(3020), - [sym__parenthesized_lvalue_expression] = STATE(2423), - [sym_lambda_expression] = STATE(3006), - [sym__lambda_expression_init] = STATE(7393), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3006), - [sym_anonymous_method_expression] = STATE(3006), - [sym_anonymous_object_creation_expression] = STATE(3006), - [sym_implicit_array_creation_expression] = STATE(3006), - [sym_implicit_object_creation_expression] = STATE(3006), - [sym_implicit_stackalloc_expression] = STATE(3006), - [sym_initializer_expression] = STATE(3006), - [sym_default_expression] = STATE(3006), - [sym_with_expression] = STATE(3006), - [sym_sizeof_expression] = STATE(3006), - [sym_typeof_expression] = STATE(3006), - [sym_makeref_expression] = STATE(3006), - [sym_ref_expression] = STATE(3006), - [sym_reftype_expression] = STATE(3006), - [sym_refvalue_expression] = STATE(3006), - [sym_stackalloc_expression] = STATE(3006), - [sym_range_expression] = STATE(3006), - [sym_tuple_expression] = STATE(2423), - [sym_literal] = STATE(3006), - [sym_character_literal] = STATE(3011), - [sym_string_literal] = STATE(3011), - [sym_raw_string_literal] = STATE(3011), - [sym_boolean_literal] = STATE(3011), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3006), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2367), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(2893), + [sym_non_lvalue_expression] = STATE(3040), + [sym_lvalue_expression] = STATE(3600), + [sym__expression_statement_expression] = STATE(3035), + [sym_assignment_expression] = STATE(3043), + [sym_binary_expression] = STATE(3035), + [sym_postfix_unary_expression] = STATE(3043), + [sym_prefix_unary_expression] = STATE(3043), + [sym__pointer_indirection_expression] = STATE(2415), + [sym_query_expression] = STATE(3035), + [sym_from_clause] = STATE(6156), + [sym_conditional_expression] = STATE(3035), + [sym_conditional_access_expression] = STATE(3035), + [sym_as_expression] = STATE(3035), + [sym_is_expression] = STATE(3035), + [sym_is_pattern_expression] = STATE(3035), + [sym_cast_expression] = STATE(3035), + [sym_checked_expression] = STATE(3035), + [sym_invocation_expression] = STATE(3043), + [sym_switch_expression] = STATE(3035), + [sym_await_expression] = STATE(3043), + [sym_throw_expression] = STATE(3035), + [sym_element_access_expression] = STATE(2415), + [sym_interpolated_string_expression] = STATE(3035), + [sym_member_access_expression] = STATE(2415), + [sym_object_creation_expression] = STATE(3043), + [sym_parenthesized_expression] = STATE(3043), + [sym__parenthesized_lvalue_expression] = STATE(2415), + [sym_lambda_expression] = STATE(3035), + [sym__lambda_expression_init] = STATE(7561), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3035), + [sym_anonymous_method_expression] = STATE(3035), + [sym_anonymous_object_creation_expression] = STATE(3035), + [sym_implicit_array_creation_expression] = STATE(3035), + [sym_implicit_object_creation_expression] = STATE(3035), + [sym_implicit_stackalloc_expression] = STATE(3035), + [sym_initializer_expression] = STATE(3035), + [sym_default_expression] = STATE(3035), + [sym_with_expression] = STATE(3035), + [sym_sizeof_expression] = STATE(3035), + [sym_typeof_expression] = STATE(3035), + [sym_makeref_expression] = STATE(3035), + [sym_ref_expression] = STATE(3035), + [sym_reftype_expression] = STATE(3035), + [sym_refvalue_expression] = STATE(3035), + [sym_stackalloc_expression] = STATE(3035), + [sym_range_expression] = STATE(3035), + [sym_tuple_expression] = STATE(2415), + [sym_literal] = STATE(3035), + [sym_character_literal] = STATE(3037), + [sym_string_literal] = STATE(3037), + [sym_raw_string_literal] = STATE(3037), + [sym_boolean_literal] = STATE(3037), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3035), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(1116), [sym_preproc_endregion] = STATE(1116), [sym_preproc_line] = STATE(1116), @@ -230463,47 +230349,47 @@ 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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3440), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3455), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1241), - [anon_sym_LPAREN] = ACTIONS(2213), - [anon_sym_ref] = ACTIONS(2215), - [anon_sym_LBRACE] = ACTIONS(1247), - [anon_sym_delegate] = ACTIONS(1249), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1239), + [anon_sym_LPAREN] = ACTIONS(2217), + [anon_sym_ref] = ACTIONS(2219), + [anon_sym_LBRACE] = ACTIONS(1245), + [anon_sym_delegate] = ACTIONS(1247), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(2217), + [anon_sym_new] = ACTIONS(2221), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1253), - [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(1259), - [anon_sym_false] = ACTIONS(1259), - [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(1263), + [anon_sym_checked] = ACTIONS(1251), + [anon_sym_BANG] = ACTIONS(2225), + [anon_sym_TILDE] = ACTIONS(2225), + [anon_sym_PLUS_PLUS] = ACTIONS(2225), + [anon_sym_DASH_DASH] = ACTIONS(2225), + [anon_sym_true] = ACTIONS(1257), + [anon_sym_false] = ACTIONS(1257), + [anon_sym_PLUS] = ACTIONS(2223), + [anon_sym_DASH] = ACTIONS(2223), + [anon_sym_STAR] = ACTIONS(2227), + [anon_sym_CARET] = ACTIONS(2225), + [anon_sym_AMP] = ACTIONS(2225), + [anon_sym_this] = ACTIONS(1261), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1265), + [anon_sym_base] = ACTIONS(1263), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1267), - [anon_sym_unchecked] = ACTIONS(1253), + [sym_predefined_type] = ACTIONS(1265), + [anon_sym_unchecked] = ACTIONS(1251), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1269), - [anon_sym_throw] = ACTIONS(2225), + [anon_sym_default] = ACTIONS(1267), + [anon_sym_throw] = ACTIONS(2229), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2227), - [anon_sym_DOT_DOT] = ACTIONS(2229), + [anon_sym_await] = ACTIONS(2231), + [anon_sym_DOT_DOT] = ACTIONS(2233), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -230516,19 +230402,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1277), - [anon_sym_sizeof] = ACTIONS(1279), - [anon_sym_typeof] = ACTIONS(1281), - [anon_sym___makeref] = ACTIONS(1283), - [anon_sym___reftype] = ACTIONS(1285), - [anon_sym___refvalue] = ACTIONS(1287), - [sym_null_literal] = ACTIONS(1289), - [anon_sym_SQUOTE] = ACTIONS(1291), - [sym_integer_literal] = ACTIONS(1289), - [sym_real_literal] = ACTIONS(1293), - [anon_sym_DQUOTE] = ACTIONS(1295), - [sym_verbatim_string_literal] = ACTIONS(1293), - [aux_sym_preproc_if_token1] = ACTIONS(1297), + [anon_sym_stackalloc] = ACTIONS(1275), + [anon_sym_sizeof] = ACTIONS(1277), + [anon_sym_typeof] = ACTIONS(1279), + [anon_sym___makeref] = ACTIONS(1281), + [anon_sym___reftype] = ACTIONS(1283), + [anon_sym___refvalue] = ACTIONS(1285), + [sym_null_literal] = ACTIONS(1287), + [anon_sym_SQUOTE] = ACTIONS(1289), + [sym_integer_literal] = ACTIONS(1287), + [sym_real_literal] = ACTIONS(1291), + [anon_sym_DQUOTE] = ACTIONS(1293), + [sym_verbatim_string_literal] = ACTIONS(1291), + [aux_sym_preproc_if_token1] = ACTIONS(1295), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -230539,90 +230425,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1299), - [sym_interpolation_verbatim_start] = ACTIONS(1301), - [sym_interpolation_raw_start] = ACTIONS(1303), - [sym_raw_string_start] = ACTIONS(1305), + [sym_interpolation_regular_start] = ACTIONS(1297), + [sym_interpolation_verbatim_start] = ACTIONS(1299), + [sym_interpolation_raw_start] = ACTIONS(1301), + [sym_raw_string_start] = ACTIONS(1303), }, [1117] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2420), - [sym__name] = STATE(5897), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2397), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(5292), - [sym_non_lvalue_expression] = STATE(3066), - [sym_lvalue_expression] = STATE(3632), - [sym__expression_statement_expression] = STATE(3006), - [sym_assignment_expression] = STATE(3020), - [sym_binary_expression] = STATE(3006), - [sym_postfix_unary_expression] = STATE(3020), - [sym_prefix_unary_expression] = STATE(3020), - [sym__pointer_indirection_expression] = STATE(2423), - [sym_query_expression] = STATE(3006), - [sym_from_clause] = STATE(6184), - [sym_conditional_expression] = STATE(3006), - [sym_conditional_access_expression] = STATE(3006), - [sym_as_expression] = STATE(3006), - [sym_is_expression] = STATE(3006), - [sym_is_pattern_expression] = STATE(3006), - [sym_cast_expression] = STATE(3006), - [sym_checked_expression] = STATE(3006), - [sym_invocation_expression] = STATE(3020), - [sym_switch_expression] = STATE(3006), - [sym_await_expression] = STATE(3020), - [sym_throw_expression] = STATE(3006), - [sym_element_access_expression] = STATE(2423), - [sym_interpolated_string_expression] = STATE(3006), - [sym_member_access_expression] = STATE(2423), - [sym_object_creation_expression] = STATE(3020), - [sym_parenthesized_expression] = STATE(3020), - [sym__parenthesized_lvalue_expression] = STATE(2423), - [sym_lambda_expression] = STATE(3006), - [sym__lambda_expression_init] = STATE(7393), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3006), - [sym_anonymous_method_expression] = STATE(3006), - [sym_anonymous_object_creation_expression] = STATE(3006), - [sym_implicit_array_creation_expression] = STATE(3006), - [sym_implicit_object_creation_expression] = STATE(3006), - [sym_implicit_stackalloc_expression] = STATE(3006), - [sym_initializer_expression] = STATE(3006), - [sym_default_expression] = STATE(3006), - [sym_with_expression] = STATE(3006), - [sym_sizeof_expression] = STATE(3006), - [sym_typeof_expression] = STATE(3006), - [sym_makeref_expression] = STATE(3006), - [sym_ref_expression] = STATE(3006), - [sym_reftype_expression] = STATE(3006), - [sym_refvalue_expression] = STATE(3006), - [sym_stackalloc_expression] = STATE(3006), - [sym_range_expression] = STATE(3006), - [sym_tuple_expression] = STATE(2423), - [sym_literal] = STATE(3006), - [sym_character_literal] = STATE(3011), - [sym_string_literal] = STATE(3011), - [sym_raw_string_literal] = STATE(3011), - [sym_boolean_literal] = STATE(3011), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3006), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(5881), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2386), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(4205), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3132), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3102), + [sym_postfix_unary_expression] = STATE(3079), + [sym_prefix_unary_expression] = STATE(3079), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6158), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3102), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3079), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3102), + [sym_member_access_expression] = STATE(2472), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3079), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7650), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(3102), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3102), + [sym_typeof_expression] = STATE(3102), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2472), + [sym_literal] = STATE(3102), + [sym_character_literal] = STATE(3037), + [sym_string_literal] = STATE(3037), + [sym_raw_string_literal] = STATE(3037), + [sym_boolean_literal] = STATE(3037), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(1117), [sym_preproc_endregion] = STATE(1117), [sym_preproc_line] = STATE(1117), @@ -230632,47 +230518,47 @@ 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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3440), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1241), - [anon_sym_LPAREN] = ACTIONS(2213), - [anon_sym_ref] = ACTIONS(2215), - [anon_sym_LBRACE] = ACTIONS(1247), - [anon_sym_delegate] = ACTIONS(1249), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1479), + [anon_sym_LPAREN] = ACTIONS(2185), + [anon_sym_ref] = ACTIONS(2187), + [anon_sym_LBRACE] = ACTIONS(1481), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(2217), + [anon_sym_new] = ACTIONS(1899), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1253), - [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(1259), - [anon_sym_false] = ACTIONS(1259), - [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(1263), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(2191), + [anon_sym_TILDE] = ACTIONS(2191), + [anon_sym_PLUS_PLUS] = ACTIONS(2191), + [anon_sym_DASH_DASH] = ACTIONS(2191), + [anon_sym_true] = ACTIONS(1257), + [anon_sym_false] = ACTIONS(1257), + [anon_sym_PLUS] = ACTIONS(2189), + [anon_sym_DASH] = ACTIONS(2189), + [anon_sym_STAR] = ACTIONS(1905), + [anon_sym_CARET] = ACTIONS(2191), + [anon_sym_AMP] = ACTIONS(2191), + [anon_sym_this] = ACTIONS(83), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1265), + [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1267), - [anon_sym_unchecked] = ACTIONS(1253), + [sym_predefined_type] = ACTIONS(1265), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1269), - [anon_sym_throw] = ACTIONS(2225), + [anon_sym_default] = ACTIONS(1267), + [anon_sym_throw] = ACTIONS(2193), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2227), - [anon_sym_DOT_DOT] = ACTIONS(2229), + [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), @@ -230685,19 +230571,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1277), - [anon_sym_sizeof] = ACTIONS(1279), - [anon_sym_typeof] = ACTIONS(1281), - [anon_sym___makeref] = ACTIONS(1283), - [anon_sym___reftype] = ACTIONS(1285), - [anon_sym___refvalue] = ACTIONS(1287), - [sym_null_literal] = ACTIONS(1289), - [anon_sym_SQUOTE] = ACTIONS(1291), - [sym_integer_literal] = ACTIONS(1289), - [sym_real_literal] = ACTIONS(1293), - [anon_sym_DQUOTE] = ACTIONS(1295), - [sym_verbatim_string_literal] = ACTIONS(1293), - [aux_sym_preproc_if_token1] = ACTIONS(1297), + [anon_sym_stackalloc] = ACTIONS(127), + [anon_sym_sizeof] = ACTIONS(1277), + [anon_sym_typeof] = ACTIONS(1279), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), + [sym_null_literal] = ACTIONS(1287), + [anon_sym_SQUOTE] = ACTIONS(1289), + [sym_integer_literal] = ACTIONS(1287), + [sym_real_literal] = ACTIONS(1291), + [anon_sym_DQUOTE] = ACTIONS(1293), + [sym_verbatim_string_literal] = ACTIONS(1291), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -230708,90 +230594,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1299), - [sym_interpolation_verbatim_start] = ACTIONS(1301), - [sym_interpolation_raw_start] = ACTIONS(1303), - [sym_raw_string_start] = ACTIONS(1305), + [sym_interpolation_regular_start] = ACTIONS(1297), + [sym_interpolation_verbatim_start] = ACTIONS(1299), + [sym_interpolation_raw_start] = ACTIONS(1301), + [sym_raw_string_start] = ACTIONS(1303), }, [1118] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2420), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2416), [sym__name] = STATE(5897), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2397), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(2910), - [sym_non_lvalue_expression] = STATE(3066), - [sym_lvalue_expression] = STATE(3632), - [sym__expression_statement_expression] = STATE(3006), - [sym_assignment_expression] = STATE(3020), - [sym_binary_expression] = STATE(3006), - [sym_postfix_unary_expression] = STATE(3020), - [sym_prefix_unary_expression] = STATE(3020), - [sym__pointer_indirection_expression] = STATE(2423), - [sym_query_expression] = STATE(3006), - [sym_from_clause] = STATE(6184), - [sym_conditional_expression] = STATE(3006), - [sym_conditional_access_expression] = STATE(3006), - [sym_as_expression] = STATE(3006), - [sym_is_expression] = STATE(3006), - [sym_is_pattern_expression] = STATE(3006), - [sym_cast_expression] = STATE(3006), - [sym_checked_expression] = STATE(3006), - [sym_invocation_expression] = STATE(3020), - [sym_switch_expression] = STATE(3006), - [sym_await_expression] = STATE(3020), - [sym_throw_expression] = STATE(3006), - [sym_element_access_expression] = STATE(2423), - [sym_interpolated_string_expression] = STATE(3006), - [sym_member_access_expression] = STATE(2423), - [sym_object_creation_expression] = STATE(3020), - [sym_parenthesized_expression] = STATE(3020), - [sym__parenthesized_lvalue_expression] = STATE(2423), - [sym_lambda_expression] = STATE(3006), - [sym__lambda_expression_init] = STATE(7393), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3006), - [sym_anonymous_method_expression] = STATE(3006), - [sym_anonymous_object_creation_expression] = STATE(3006), - [sym_implicit_array_creation_expression] = STATE(3006), - [sym_implicit_object_creation_expression] = STATE(3006), - [sym_implicit_stackalloc_expression] = STATE(3006), - [sym_initializer_expression] = STATE(3006), - [sym_default_expression] = STATE(3006), - [sym_with_expression] = STATE(3006), - [sym_sizeof_expression] = STATE(3006), - [sym_typeof_expression] = STATE(3006), - [sym_makeref_expression] = STATE(3006), - [sym_ref_expression] = STATE(3006), - [sym_reftype_expression] = STATE(3006), - [sym_refvalue_expression] = STATE(3006), - [sym_stackalloc_expression] = STATE(3006), - [sym_range_expression] = STATE(3006), - [sym_tuple_expression] = STATE(2423), - [sym_literal] = STATE(3006), - [sym_character_literal] = STATE(3011), - [sym_string_literal] = STATE(3011), - [sym_raw_string_literal] = STATE(3011), - [sym_boolean_literal] = STATE(3011), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3006), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2367), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(5201), + [sym_non_lvalue_expression] = STATE(3040), + [sym_lvalue_expression] = STATE(3600), + [sym__expression_statement_expression] = STATE(3035), + [sym_assignment_expression] = STATE(3043), + [sym_binary_expression] = STATE(3035), + [sym_postfix_unary_expression] = STATE(3043), + [sym_prefix_unary_expression] = STATE(3043), + [sym__pointer_indirection_expression] = STATE(2415), + [sym_query_expression] = STATE(3035), + [sym_from_clause] = STATE(6156), + [sym_conditional_expression] = STATE(3035), + [sym_conditional_access_expression] = STATE(3035), + [sym_as_expression] = STATE(3035), + [sym_is_expression] = STATE(3035), + [sym_is_pattern_expression] = STATE(3035), + [sym_cast_expression] = STATE(3035), + [sym_checked_expression] = STATE(3035), + [sym_invocation_expression] = STATE(3043), + [sym_switch_expression] = STATE(3035), + [sym_await_expression] = STATE(3043), + [sym_throw_expression] = STATE(3035), + [sym_element_access_expression] = STATE(2415), + [sym_interpolated_string_expression] = STATE(3035), + [sym_member_access_expression] = STATE(2415), + [sym_object_creation_expression] = STATE(3043), + [sym_parenthesized_expression] = STATE(3043), + [sym__parenthesized_lvalue_expression] = STATE(2415), + [sym_lambda_expression] = STATE(3035), + [sym__lambda_expression_init] = STATE(7561), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3035), + [sym_anonymous_method_expression] = STATE(3035), + [sym_anonymous_object_creation_expression] = STATE(3035), + [sym_implicit_array_creation_expression] = STATE(3035), + [sym_implicit_object_creation_expression] = STATE(3035), + [sym_implicit_stackalloc_expression] = STATE(3035), + [sym_initializer_expression] = STATE(3035), + [sym_default_expression] = STATE(3035), + [sym_with_expression] = STATE(3035), + [sym_sizeof_expression] = STATE(3035), + [sym_typeof_expression] = STATE(3035), + [sym_makeref_expression] = STATE(3035), + [sym_ref_expression] = STATE(3035), + [sym_reftype_expression] = STATE(3035), + [sym_refvalue_expression] = STATE(3035), + [sym_stackalloc_expression] = STATE(3035), + [sym_range_expression] = STATE(3035), + [sym_tuple_expression] = STATE(2415), + [sym_literal] = STATE(3035), + [sym_character_literal] = STATE(3037), + [sym_string_literal] = STATE(3037), + [sym_raw_string_literal] = STATE(3037), + [sym_boolean_literal] = STATE(3037), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3035), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(1118), [sym_preproc_endregion] = STATE(1118), [sym_preproc_line] = STATE(1118), @@ -230801,47 +230687,47 @@ 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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3440), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3455), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1241), - [anon_sym_LPAREN] = ACTIONS(2213), - [anon_sym_ref] = ACTIONS(2215), - [anon_sym_LBRACE] = ACTIONS(1247), - [anon_sym_delegate] = ACTIONS(1249), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1239), + [anon_sym_LPAREN] = ACTIONS(2217), + [anon_sym_ref] = ACTIONS(2219), + [anon_sym_LBRACE] = ACTIONS(1245), + [anon_sym_delegate] = ACTIONS(1247), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(2217), + [anon_sym_new] = ACTIONS(2221), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1253), - [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(1259), - [anon_sym_false] = ACTIONS(1259), - [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(1263), + [anon_sym_checked] = ACTIONS(1251), + [anon_sym_BANG] = ACTIONS(2225), + [anon_sym_TILDE] = ACTIONS(2225), + [anon_sym_PLUS_PLUS] = ACTIONS(2225), + [anon_sym_DASH_DASH] = ACTIONS(2225), + [anon_sym_true] = ACTIONS(1257), + [anon_sym_false] = ACTIONS(1257), + [anon_sym_PLUS] = ACTIONS(2223), + [anon_sym_DASH] = ACTIONS(2223), + [anon_sym_STAR] = ACTIONS(2227), + [anon_sym_CARET] = ACTIONS(2225), + [anon_sym_AMP] = ACTIONS(2225), + [anon_sym_this] = ACTIONS(1261), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1265), + [anon_sym_base] = ACTIONS(1263), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1267), - [anon_sym_unchecked] = ACTIONS(1253), + [sym_predefined_type] = ACTIONS(1265), + [anon_sym_unchecked] = ACTIONS(1251), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1269), - [anon_sym_throw] = ACTIONS(2225), + [anon_sym_default] = ACTIONS(1267), + [anon_sym_throw] = ACTIONS(2229), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2227), - [anon_sym_DOT_DOT] = ACTIONS(2229), + [anon_sym_await] = ACTIONS(2231), + [anon_sym_DOT_DOT] = ACTIONS(2233), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -230854,19 +230740,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1277), - [anon_sym_sizeof] = ACTIONS(1279), - [anon_sym_typeof] = ACTIONS(1281), - [anon_sym___makeref] = ACTIONS(1283), - [anon_sym___reftype] = ACTIONS(1285), - [anon_sym___refvalue] = ACTIONS(1287), - [sym_null_literal] = ACTIONS(1289), - [anon_sym_SQUOTE] = ACTIONS(1291), - [sym_integer_literal] = ACTIONS(1289), - [sym_real_literal] = ACTIONS(1293), - [anon_sym_DQUOTE] = ACTIONS(1295), - [sym_verbatim_string_literal] = ACTIONS(1293), - [aux_sym_preproc_if_token1] = ACTIONS(1297), + [anon_sym_stackalloc] = ACTIONS(1275), + [anon_sym_sizeof] = ACTIONS(1277), + [anon_sym_typeof] = ACTIONS(1279), + [anon_sym___makeref] = ACTIONS(1281), + [anon_sym___reftype] = ACTIONS(1283), + [anon_sym___refvalue] = ACTIONS(1285), + [sym_null_literal] = ACTIONS(1287), + [anon_sym_SQUOTE] = ACTIONS(1289), + [sym_integer_literal] = ACTIONS(1287), + [sym_real_literal] = ACTIONS(1291), + [anon_sym_DQUOTE] = ACTIONS(1293), + [sym_verbatim_string_literal] = ACTIONS(1291), + [aux_sym_preproc_if_token1] = ACTIONS(1295), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -230877,90 +230763,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1299), - [sym_interpolation_verbatim_start] = ACTIONS(1301), - [sym_interpolation_raw_start] = ACTIONS(1303), - [sym_raw_string_start] = ACTIONS(1305), + [sym_interpolation_regular_start] = ACTIONS(1297), + [sym_interpolation_verbatim_start] = ACTIONS(1299), + [sym_interpolation_raw_start] = ACTIONS(1301), + [sym_raw_string_start] = ACTIONS(1303), }, [1119] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2762), - [sym__name] = STATE(5889), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2204), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(4903), - [sym_non_lvalue_expression] = STATE(3438), - [sym_lvalue_expression] = STATE(3548), - [sym__expression_statement_expression] = STATE(3362), - [sym_assignment_expression] = STATE(3449), - [sym_binary_expression] = STATE(3362), - [sym_postfix_unary_expression] = STATE(3449), - [sym_prefix_unary_expression] = STATE(3449), - [sym__pointer_indirection_expression] = STATE(2747), - [sym_query_expression] = STATE(3362), - [sym_from_clause] = STATE(6146), - [sym_conditional_expression] = STATE(3362), - [sym_conditional_access_expression] = STATE(3362), - [sym_as_expression] = STATE(3362), - [sym_is_expression] = STATE(3362), - [sym_is_pattern_expression] = STATE(3362), - [sym_cast_expression] = STATE(3362), - [sym_checked_expression] = STATE(3362), - [sym_invocation_expression] = STATE(3449), - [sym_switch_expression] = STATE(3362), - [sym_await_expression] = STATE(3449), - [sym_throw_expression] = STATE(3362), - [sym_element_access_expression] = STATE(2747), - [sym_interpolated_string_expression] = STATE(3362), - [sym_member_access_expression] = STATE(2747), - [sym_object_creation_expression] = STATE(3449), - [sym_parenthesized_expression] = STATE(3449), - [sym__parenthesized_lvalue_expression] = STATE(2747), - [sym_lambda_expression] = STATE(3362), - [sym__lambda_expression_init] = STATE(7772), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3362), - [sym_anonymous_method_expression] = STATE(3362), - [sym_anonymous_object_creation_expression] = STATE(3362), - [sym_implicit_array_creation_expression] = STATE(3362), - [sym_implicit_object_creation_expression] = STATE(3362), - [sym_implicit_stackalloc_expression] = STATE(3362), - [sym_initializer_expression] = STATE(3362), - [sym_default_expression] = STATE(3362), - [sym_with_expression] = STATE(3362), - [sym_sizeof_expression] = STATE(3362), - [sym_typeof_expression] = STATE(3362), - [sym_makeref_expression] = STATE(3362), - [sym_ref_expression] = STATE(3362), - [sym_reftype_expression] = STATE(3362), - [sym_refvalue_expression] = STATE(3362), - [sym_stackalloc_expression] = STATE(3362), - [sym_range_expression] = STATE(3362), - [sym_tuple_expression] = STATE(2747), - [sym_literal] = STATE(3362), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3362), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(3182), + [sym__name] = STATE(5888), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2286), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2262), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(4602), + [sym_non_lvalue_expression] = STATE(4580), + [sym_lvalue_expression] = STATE(3373), + [sym__expression_statement_expression] = STATE(4573), + [sym_assignment_expression] = STATE(4581), + [sym_binary_expression] = STATE(4573), + [sym_postfix_unary_expression] = STATE(4581), + [sym_prefix_unary_expression] = STATE(4581), + [sym__pointer_indirection_expression] = STATE(3144), + [sym_query_expression] = STATE(4573), + [sym_from_clause] = STATE(6133), + [sym_conditional_expression] = STATE(4573), + [sym_conditional_access_expression] = STATE(4573), + [sym_as_expression] = STATE(4573), + [sym_is_expression] = STATE(4573), + [sym_is_pattern_expression] = STATE(4573), + [sym_cast_expression] = STATE(4573), + [sym_checked_expression] = STATE(4573), + [sym_invocation_expression] = STATE(4581), + [sym_switch_expression] = STATE(4573), + [sym_await_expression] = STATE(4581), + [sym_throw_expression] = STATE(4573), + [sym_element_access_expression] = STATE(3144), + [sym_interpolated_string_expression] = STATE(4573), + [sym_member_access_expression] = STATE(3144), + [sym_object_creation_expression] = STATE(4581), + [sym_parenthesized_expression] = STATE(4581), + [sym__parenthesized_lvalue_expression] = STATE(3144), + [sym_lambda_expression] = STATE(4573), + [sym__lambda_expression_init] = STATE(7614), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(4573), + [sym_anonymous_method_expression] = STATE(4573), + [sym_anonymous_object_creation_expression] = STATE(4573), + [sym_implicit_array_creation_expression] = STATE(4573), + [sym_implicit_object_creation_expression] = STATE(4573), + [sym_implicit_stackalloc_expression] = STATE(4573), + [sym_initializer_expression] = STATE(4573), + [sym_default_expression] = STATE(4573), + [sym_with_expression] = STATE(4573), + [sym_sizeof_expression] = STATE(4573), + [sym_typeof_expression] = STATE(4573), + [sym_makeref_expression] = STATE(4573), + [sym_ref_expression] = STATE(4573), + [sym_reftype_expression] = STATE(4573), + [sym_refvalue_expression] = STATE(4573), + [sym_stackalloc_expression] = STATE(4573), + [sym_range_expression] = STATE(4573), + [sym_tuple_expression] = STATE(3144), + [sym_literal] = STATE(4573), + [sym_character_literal] = STATE(4575), + [sym_string_literal] = STATE(4575), + [sym_raw_string_literal] = STATE(4575), + [sym_boolean_literal] = STATE(4575), + [sym_identifier] = STATE(2237), + [sym__reserved_identifier] = STATE(2229), + [sym_preproc_if_in_expression] = STATE(4573), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(1119), [sym_preproc_endregion] = STATE(1119), [sym_preproc_line] = STATE(1119), @@ -230970,166 +230856,166 @@ 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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3385), - [sym__identifier_token] = ACTIONS(25), - [anon_sym_alias] = ACTIONS(29), - [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1307), - [anon_sym_LPAREN] = ACTIONS(1789), - [anon_sym_ref] = ACTIONS(1791), - [anon_sym_LBRACE] = ACTIONS(1313), - [anon_sym_delegate] = ACTIONS(1315), - [anon_sym_async] = ACTIONS(1047), - [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1317), - [anon_sym_where] = ACTIONS(29), - [anon_sym_notnull] = ACTIONS(29), - [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1319), - [anon_sym_BANG] = ACTIONS(1795), - [anon_sym_TILDE] = ACTIONS(1795), - [anon_sym_PLUS_PLUS] = ACTIONS(1795), - [anon_sym_DASH_DASH] = ACTIONS(1795), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1793), - [anon_sym_DASH] = ACTIONS(1793), - [anon_sym_STAR] = ACTIONS(1797), - [anon_sym_CARET] = ACTIONS(1795), - [anon_sym_AMP] = ACTIONS(1795), - [anon_sym_this] = ACTIONS(1323), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1325), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1319), - [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1799), - [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1801), - [anon_sym_DOT_DOT] = ACTIONS(1803), - [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(1333), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(1335), - [anon_sym___reftype] = ACTIONS(1337), - [anon_sym___refvalue] = ACTIONS(1339), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1341), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(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), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3501), + [sym__identifier_token] = ACTIONS(1385), + [anon_sym_alias] = ACTIONS(1387), + [anon_sym_global] = ACTIONS(1387), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1389), + [anon_sym_LPAREN] = ACTIONS(1565), + [anon_sym_ref] = ACTIONS(1567), + [anon_sym_LBRACE] = ACTIONS(1395), + [anon_sym_delegate] = ACTIONS(1397), + [anon_sym_async] = ACTIONS(1045), + [anon_sym_file] = ACTIONS(1387), + [anon_sym_new] = ACTIONS(1399), + [anon_sym_where] = ACTIONS(1387), + [anon_sym_notnull] = ACTIONS(1387), + [anon_sym_unmanaged] = ACTIONS(1387), + [anon_sym_checked] = ACTIONS(1401), + [anon_sym_BANG] = ACTIONS(1571), + [anon_sym_TILDE] = ACTIONS(1571), + [anon_sym_PLUS_PLUS] = ACTIONS(1571), + [anon_sym_DASH_DASH] = ACTIONS(1571), + [anon_sym_true] = ACTIONS(1407), + [anon_sym_false] = ACTIONS(1407), + [anon_sym_PLUS] = ACTIONS(1569), + [anon_sym_DASH] = ACTIONS(1569), + [anon_sym_STAR] = ACTIONS(1409), + [anon_sym_CARET] = ACTIONS(1571), + [anon_sym_AMP] = ACTIONS(1571), + [anon_sym_this] = ACTIONS(1411), + [anon_sym_scoped] = ACTIONS(1413), + [anon_sym_base] = ACTIONS(1415), + [anon_sym_var] = ACTIONS(1417), + [sym_predefined_type] = ACTIONS(1419), + [anon_sym_unchecked] = ACTIONS(1401), + [anon_sym_yield] = ACTIONS(1387), + [anon_sym_default] = ACTIONS(1421), + [anon_sym_throw] = ACTIONS(1573), + [anon_sym_when] = ACTIONS(1387), + [anon_sym_await] = ACTIONS(1575), + [anon_sym_DOT_DOT] = ACTIONS(1577), + [anon_sym_from] = ACTIONS(1429), + [anon_sym_into] = ACTIONS(1387), + [anon_sym_join] = ACTIONS(1387), + [anon_sym_on] = ACTIONS(1387), + [anon_sym_equals] = ACTIONS(1387), + [anon_sym_let] = ACTIONS(1387), + [anon_sym_orderby] = ACTIONS(1387), + [anon_sym_ascending] = ACTIONS(1387), + [anon_sym_descending] = ACTIONS(1387), + [anon_sym_group] = ACTIONS(1387), + [anon_sym_by] = ACTIONS(1387), + [anon_sym_select] = ACTIONS(1387), + [anon_sym_stackalloc] = ACTIONS(1431), + [anon_sym_sizeof] = ACTIONS(1433), + [anon_sym_typeof] = ACTIONS(1435), + [anon_sym___makeref] = ACTIONS(1437), + [anon_sym___reftype] = ACTIONS(1439), + [anon_sym___refvalue] = ACTIONS(1441), + [sym_null_literal] = ACTIONS(1443), + [anon_sym_SQUOTE] = ACTIONS(1445), + [sym_integer_literal] = ACTIONS(1443), + [sym_real_literal] = ACTIONS(1447), + [anon_sym_DQUOTE] = ACTIONS(1449), + [sym_verbatim_string_literal] = ACTIONS(1447), + [aux_sym_preproc_if_token1] = ACTIONS(1451), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + [sym_interpolation_regular_start] = ACTIONS(1453), + [sym_interpolation_verbatim_start] = ACTIONS(1455), + [sym_interpolation_raw_start] = ACTIONS(1457), + [sym_raw_string_start] = ACTIONS(1459), }, [1120] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2762), - [sym__name] = STATE(5889), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2204), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(3163), - [sym_non_lvalue_expression] = STATE(3438), - [sym_lvalue_expression] = STATE(3548), - [sym__expression_statement_expression] = STATE(3362), - [sym_assignment_expression] = STATE(3449), - [sym_binary_expression] = STATE(3362), - [sym_postfix_unary_expression] = STATE(3449), - [sym_prefix_unary_expression] = STATE(3449), - [sym__pointer_indirection_expression] = STATE(2747), - [sym_query_expression] = STATE(3362), - [sym_from_clause] = STATE(6146), - [sym_conditional_expression] = STATE(3362), - [sym_conditional_access_expression] = STATE(3362), - [sym_as_expression] = STATE(3362), - [sym_is_expression] = STATE(3362), - [sym_is_pattern_expression] = STATE(3362), - [sym_cast_expression] = STATE(3362), - [sym_checked_expression] = STATE(3362), - [sym_invocation_expression] = STATE(3449), - [sym_switch_expression] = STATE(3362), - [sym_await_expression] = STATE(3449), - [sym_throw_expression] = STATE(3362), - [sym_element_access_expression] = STATE(2747), - [sym_interpolated_string_expression] = STATE(3362), - [sym_member_access_expression] = STATE(2747), - [sym_object_creation_expression] = STATE(3449), - [sym_parenthesized_expression] = STATE(3449), - [sym__parenthesized_lvalue_expression] = STATE(2747), - [sym_lambda_expression] = STATE(3362), - [sym__lambda_expression_init] = STATE(7772), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3362), - [sym_anonymous_method_expression] = STATE(3362), - [sym_anonymous_object_creation_expression] = STATE(3362), - [sym_implicit_array_creation_expression] = STATE(3362), - [sym_implicit_object_creation_expression] = STATE(3362), - [sym_implicit_stackalloc_expression] = STATE(3362), - [sym_initializer_expression] = STATE(3362), - [sym_default_expression] = STATE(3362), - [sym_with_expression] = STATE(3362), - [sym_sizeof_expression] = STATE(3362), - [sym_typeof_expression] = STATE(3362), - [sym_makeref_expression] = STATE(3362), - [sym_ref_expression] = STATE(3362), - [sym_reftype_expression] = STATE(3362), - [sym_refvalue_expression] = STATE(3362), - [sym_stackalloc_expression] = STATE(3362), - [sym_range_expression] = STATE(3362), - [sym_tuple_expression] = STATE(2747), - [sym_literal] = STATE(3362), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3362), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2603), + [sym__name] = STATE(5865), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2344), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(4362), + [sym_non_lvalue_expression] = STATE(3220), + [sym_lvalue_expression] = STATE(3234), + [sym__expression_statement_expression] = STATE(3236), + [sym_assignment_expression] = STATE(3221), + [sym_binary_expression] = STATE(3236), + [sym_postfix_unary_expression] = STATE(3221), + [sym_prefix_unary_expression] = STATE(3221), + [sym__pointer_indirection_expression] = STATE(2602), + [sym_query_expression] = STATE(3236), + [sym_from_clause] = STATE(6151), + [sym_conditional_expression] = STATE(3236), + [sym_conditional_access_expression] = STATE(3236), + [sym_as_expression] = STATE(3236), + [sym_is_expression] = STATE(3236), + [sym_is_pattern_expression] = STATE(3236), + [sym_cast_expression] = STATE(3236), + [sym_checked_expression] = STATE(3236), + [sym_invocation_expression] = STATE(3221), + [sym_switch_expression] = STATE(3236), + [sym_await_expression] = STATE(3221), + [sym_throw_expression] = STATE(3236), + [sym_element_access_expression] = STATE(2602), + [sym_interpolated_string_expression] = STATE(3236), + [sym_member_access_expression] = STATE(2602), + [sym_object_creation_expression] = STATE(3221), + [sym_parenthesized_expression] = STATE(3221), + [sym__parenthesized_lvalue_expression] = STATE(2602), + [sym_lambda_expression] = STATE(3236), + [sym__lambda_expression_init] = STATE(7276), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3236), + [sym_anonymous_method_expression] = STATE(3236), + [sym_anonymous_object_creation_expression] = STATE(3236), + [sym_implicit_array_creation_expression] = STATE(3236), + [sym_implicit_object_creation_expression] = STATE(3236), + [sym_implicit_stackalloc_expression] = STATE(3236), + [sym_initializer_expression] = STATE(3236), + [sym_default_expression] = STATE(3236), + [sym_with_expression] = STATE(3236), + [sym_sizeof_expression] = STATE(3236), + [sym_typeof_expression] = STATE(3236), + [sym_makeref_expression] = STATE(3236), + [sym_ref_expression] = STATE(3236), + [sym_reftype_expression] = STATE(3236), + [sym_refvalue_expression] = STATE(3236), + [sym_stackalloc_expression] = STATE(3236), + [sym_range_expression] = STATE(3236), + [sym_tuple_expression] = STATE(2602), + [sym_literal] = STATE(3236), + [sym_character_literal] = STATE(3272), + [sym_string_literal] = STATE(3272), + [sym_raw_string_literal] = STATE(3272), + [sym_boolean_literal] = STATE(3272), + [sym_identifier] = STATE(2261), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3236), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(1120), [sym_preproc_endregion] = STATE(1120), [sym_preproc_line] = STATE(1120), @@ -231139,47 +231025,47 @@ 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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3385), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3379), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1307), - [anon_sym_LPAREN] = ACTIONS(1789), - [anon_sym_ref] = ACTIONS(1791), - [anon_sym_LBRACE] = ACTIONS(1313), - [anon_sym_delegate] = ACTIONS(1315), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1149), + [anon_sym_LPAREN] = ACTIONS(1597), + [anon_sym_ref] = ACTIONS(1599), + [anon_sym_LBRACE] = ACTIONS(1155), + [anon_sym_delegate] = ACTIONS(1157), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1317), + [anon_sym_new] = ACTIONS(1535), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1319), - [anon_sym_BANG] = ACTIONS(1795), - [anon_sym_TILDE] = ACTIONS(1795), - [anon_sym_PLUS_PLUS] = ACTIONS(1795), - [anon_sym_DASH_DASH] = ACTIONS(1795), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1793), - [anon_sym_DASH] = ACTIONS(1793), - [anon_sym_STAR] = ACTIONS(1797), - [anon_sym_CARET] = ACTIONS(1795), - [anon_sym_AMP] = ACTIONS(1795), - [anon_sym_this] = ACTIONS(1323), + [anon_sym_checked] = ACTIONS(1163), + [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(1169), + [anon_sym_false] = ACTIONS(1169), + [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(1173), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1325), + [anon_sym_base] = ACTIONS(1175), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1319), + [sym_predefined_type] = ACTIONS(1177), + [anon_sym_unchecked] = ACTIONS(1163), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1799), + [anon_sym_default] = ACTIONS(1179), + [anon_sym_throw] = ACTIONS(1607), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1801), - [anon_sym_DOT_DOT] = ACTIONS(1803), + [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), @@ -231192,19 +231078,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1333), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(1335), - [anon_sym___reftype] = ACTIONS(1337), - [anon_sym___refvalue] = ACTIONS(1339), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1341), + [anon_sym_stackalloc] = ACTIONS(1187), + [anon_sym_sizeof] = ACTIONS(1189), + [anon_sym_typeof] = ACTIONS(1191), + [anon_sym___makeref] = ACTIONS(1193), + [anon_sym___reftype] = ACTIONS(1195), + [anon_sym___refvalue] = ACTIONS(1197), + [sym_null_literal] = ACTIONS(1199), + [anon_sym_SQUOTE] = ACTIONS(1201), + [sym_integer_literal] = ACTIONS(1199), + [sym_real_literal] = ACTIONS(1203), + [anon_sym_DQUOTE] = ACTIONS(1205), + [sym_verbatim_string_literal] = ACTIONS(1203), + [aux_sym_preproc_if_token1] = ACTIONS(1207), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -231215,90 +231101,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(151), - [sym_interpolation_verbatim_start] = ACTIONS(153), - [sym_interpolation_raw_start] = ACTIONS(155), - [sym_raw_string_start] = ACTIONS(157), + [sym_interpolation_regular_start] = ACTIONS(1209), + [sym_interpolation_verbatim_start] = ACTIONS(1211), + [sym_interpolation_raw_start] = ACTIONS(1213), + [sym_raw_string_start] = ACTIONS(1215), }, [1121] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2610), - [sym__name] = STATE(5879), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2197), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(4207), - [sym_non_lvalue_expression] = STATE(3277), - [sym_lvalue_expression] = STATE(3134), - [sym__expression_statement_expression] = STATE(3228), - [sym_assignment_expression] = STATE(3289), - [sym_binary_expression] = STATE(3228), - [sym_postfix_unary_expression] = STATE(3289), - [sym_prefix_unary_expression] = STATE(3289), - [sym__pointer_indirection_expression] = STATE(2609), - [sym_query_expression] = STATE(3228), - [sym_from_clause] = STATE(6162), - [sym_conditional_expression] = STATE(3228), - [sym_conditional_access_expression] = STATE(3228), - [sym_as_expression] = STATE(3228), - [sym_is_expression] = STATE(3228), - [sym_is_pattern_expression] = STATE(3228), - [sym_cast_expression] = STATE(3228), - [sym_checked_expression] = STATE(3228), - [sym_invocation_expression] = STATE(3289), - [sym_switch_expression] = STATE(3228), - [sym_await_expression] = STATE(3289), - [sym_throw_expression] = STATE(3228), - [sym_element_access_expression] = STATE(2609), - [sym_interpolated_string_expression] = STATE(3228), - [sym_member_access_expression] = STATE(2609), - [sym_object_creation_expression] = STATE(3289), - [sym_parenthesized_expression] = STATE(3289), - [sym__parenthesized_lvalue_expression] = STATE(2609), - [sym_lambda_expression] = STATE(3228), - [sym__lambda_expression_init] = STATE(7695), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3228), - [sym_anonymous_method_expression] = STATE(3228), - [sym_anonymous_object_creation_expression] = STATE(3228), - [sym_implicit_array_creation_expression] = STATE(3228), - [sym_implicit_object_creation_expression] = STATE(3228), - [sym_implicit_stackalloc_expression] = STATE(3228), - [sym_initializer_expression] = STATE(3228), - [sym_default_expression] = STATE(3228), - [sym_with_expression] = STATE(3228), - [sym_sizeof_expression] = STATE(3228), - [sym_typeof_expression] = STATE(3228), - [sym_makeref_expression] = STATE(3228), - [sym_ref_expression] = STATE(3228), - [sym_reftype_expression] = STATE(3228), - [sym_refvalue_expression] = STATE(3228), - [sym_stackalloc_expression] = STATE(3228), - [sym_range_expression] = STATE(3228), - [sym_tuple_expression] = STATE(2609), - [sym_literal] = STATE(3228), - [sym_character_literal] = STATE(3278), - [sym_string_literal] = STATE(3278), - [sym_raw_string_literal] = STATE(3278), - [sym_boolean_literal] = STATE(3278), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3228), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2416), + [sym__name] = STATE(5897), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2367), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(5207), + [sym_non_lvalue_expression] = STATE(3040), + [sym_lvalue_expression] = STATE(3600), + [sym__expression_statement_expression] = STATE(3035), + [sym_assignment_expression] = STATE(3043), + [sym_binary_expression] = STATE(3035), + [sym_postfix_unary_expression] = STATE(3043), + [sym_prefix_unary_expression] = STATE(3043), + [sym__pointer_indirection_expression] = STATE(2415), + [sym_query_expression] = STATE(3035), + [sym_from_clause] = STATE(6156), + [sym_conditional_expression] = STATE(3035), + [sym_conditional_access_expression] = STATE(3035), + [sym_as_expression] = STATE(3035), + [sym_is_expression] = STATE(3035), + [sym_is_pattern_expression] = STATE(3035), + [sym_cast_expression] = STATE(3035), + [sym_checked_expression] = STATE(3035), + [sym_invocation_expression] = STATE(3043), + [sym_switch_expression] = STATE(3035), + [sym_await_expression] = STATE(3043), + [sym_throw_expression] = STATE(3035), + [sym_element_access_expression] = STATE(2415), + [sym_interpolated_string_expression] = STATE(3035), + [sym_member_access_expression] = STATE(2415), + [sym_object_creation_expression] = STATE(3043), + [sym_parenthesized_expression] = STATE(3043), + [sym__parenthesized_lvalue_expression] = STATE(2415), + [sym_lambda_expression] = STATE(3035), + [sym__lambda_expression_init] = STATE(7561), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3035), + [sym_anonymous_method_expression] = STATE(3035), + [sym_anonymous_object_creation_expression] = STATE(3035), + [sym_implicit_array_creation_expression] = STATE(3035), + [sym_implicit_object_creation_expression] = STATE(3035), + [sym_implicit_stackalloc_expression] = STATE(3035), + [sym_initializer_expression] = STATE(3035), + [sym_default_expression] = STATE(3035), + [sym_with_expression] = STATE(3035), + [sym_sizeof_expression] = STATE(3035), + [sym_typeof_expression] = STATE(3035), + [sym_makeref_expression] = STATE(3035), + [sym_ref_expression] = STATE(3035), + [sym_reftype_expression] = STATE(3035), + [sym_refvalue_expression] = STATE(3035), + [sym_stackalloc_expression] = STATE(3035), + [sym_range_expression] = STATE(3035), + [sym_tuple_expression] = STATE(2415), + [sym_literal] = STATE(3035), + [sym_character_literal] = STATE(3037), + [sym_string_literal] = STATE(3037), + [sym_raw_string_literal] = STATE(3037), + [sym_boolean_literal] = STATE(3037), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3035), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(1121), [sym_preproc_endregion] = STATE(1121), [sym_preproc_line] = STATE(1121), @@ -231308,47 +231194,47 @@ 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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3396), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3455), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1153), - [anon_sym_LPAREN] = ACTIONS(1371), - [anon_sym_ref] = ACTIONS(1373), - [anon_sym_LBRACE] = ACTIONS(1159), - [anon_sym_delegate] = ACTIONS(1161), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1239), + [anon_sym_LPAREN] = ACTIONS(2217), + [anon_sym_ref] = ACTIONS(2219), + [anon_sym_LBRACE] = ACTIONS(1245), + [anon_sym_delegate] = ACTIONS(1247), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1163), + [anon_sym_new] = ACTIONS(2221), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1167), - [anon_sym_BANG] = ACTIONS(1377), - [anon_sym_TILDE] = ACTIONS(1377), - [anon_sym_PLUS_PLUS] = ACTIONS(1377), - [anon_sym_DASH_DASH] = ACTIONS(1377), - [anon_sym_true] = ACTIONS(1173), - [anon_sym_false] = ACTIONS(1173), - [anon_sym_PLUS] = ACTIONS(1375), - [anon_sym_DASH] = ACTIONS(1375), - [anon_sym_STAR] = ACTIONS(1379), - [anon_sym_CARET] = ACTIONS(1377), - [anon_sym_AMP] = ACTIONS(1377), - [anon_sym_this] = ACTIONS(1177), + [anon_sym_checked] = ACTIONS(1251), + [anon_sym_BANG] = ACTIONS(2225), + [anon_sym_TILDE] = ACTIONS(2225), + [anon_sym_PLUS_PLUS] = ACTIONS(2225), + [anon_sym_DASH_DASH] = ACTIONS(2225), + [anon_sym_true] = ACTIONS(1257), + [anon_sym_false] = ACTIONS(1257), + [anon_sym_PLUS] = ACTIONS(2223), + [anon_sym_DASH] = ACTIONS(2223), + [anon_sym_STAR] = ACTIONS(2227), + [anon_sym_CARET] = ACTIONS(2225), + [anon_sym_AMP] = ACTIONS(2225), + [anon_sym_this] = ACTIONS(1261), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1179), + [anon_sym_base] = ACTIONS(1263), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1181), - [anon_sym_unchecked] = ACTIONS(1167), + [sym_predefined_type] = ACTIONS(1265), + [anon_sym_unchecked] = ACTIONS(1251), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1183), - [anon_sym_throw] = ACTIONS(1381), + [anon_sym_default] = ACTIONS(1267), + [anon_sym_throw] = ACTIONS(2229), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1383), - [anon_sym_DOT_DOT] = ACTIONS(1385), + [anon_sym_await] = ACTIONS(2231), + [anon_sym_DOT_DOT] = ACTIONS(2233), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -231361,19 +231247,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1191), - [anon_sym_sizeof] = ACTIONS(1193), - [anon_sym_typeof] = ACTIONS(1195), - [anon_sym___makeref] = ACTIONS(1197), - [anon_sym___reftype] = ACTIONS(1199), - [anon_sym___refvalue] = ACTIONS(1201), - [sym_null_literal] = ACTIONS(1203), - [anon_sym_SQUOTE] = ACTIONS(1205), - [sym_integer_literal] = ACTIONS(1203), - [sym_real_literal] = ACTIONS(1207), - [anon_sym_DQUOTE] = ACTIONS(1209), - [sym_verbatim_string_literal] = ACTIONS(1207), - [aux_sym_preproc_if_token1] = ACTIONS(1211), + [anon_sym_stackalloc] = ACTIONS(1275), + [anon_sym_sizeof] = ACTIONS(1277), + [anon_sym_typeof] = ACTIONS(1279), + [anon_sym___makeref] = ACTIONS(1281), + [anon_sym___reftype] = ACTIONS(1283), + [anon_sym___refvalue] = ACTIONS(1285), + [sym_null_literal] = ACTIONS(1287), + [anon_sym_SQUOTE] = ACTIONS(1289), + [sym_integer_literal] = ACTIONS(1287), + [sym_real_literal] = ACTIONS(1291), + [anon_sym_DQUOTE] = ACTIONS(1293), + [sym_verbatim_string_literal] = ACTIONS(1291), + [aux_sym_preproc_if_token1] = ACTIONS(1295), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -231384,90 +231270,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1213), - [sym_interpolation_verbatim_start] = ACTIONS(1215), - [sym_interpolation_raw_start] = ACTIONS(1217), - [sym_raw_string_start] = ACTIONS(1219), + [sym_interpolation_regular_start] = ACTIONS(1297), + [sym_interpolation_verbatim_start] = ACTIONS(1299), + [sym_interpolation_raw_start] = ACTIONS(1301), + [sym_raw_string_start] = ACTIONS(1303), }, [1122] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2762), - [sym__name] = STATE(5889), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2204), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(4908), - [sym_non_lvalue_expression] = STATE(3438), - [sym_lvalue_expression] = STATE(3548), - [sym__expression_statement_expression] = STATE(3362), - [sym_assignment_expression] = STATE(3449), - [sym_binary_expression] = STATE(3362), - [sym_postfix_unary_expression] = STATE(3449), - [sym_prefix_unary_expression] = STATE(3449), - [sym__pointer_indirection_expression] = STATE(2747), - [sym_query_expression] = STATE(3362), - [sym_from_clause] = STATE(6146), - [sym_conditional_expression] = STATE(3362), - [sym_conditional_access_expression] = STATE(3362), - [sym_as_expression] = STATE(3362), - [sym_is_expression] = STATE(3362), - [sym_is_pattern_expression] = STATE(3362), - [sym_cast_expression] = STATE(3362), - [sym_checked_expression] = STATE(3362), - [sym_invocation_expression] = STATE(3449), - [sym_switch_expression] = STATE(3362), - [sym_await_expression] = STATE(3449), - [sym_throw_expression] = STATE(3362), - [sym_element_access_expression] = STATE(2747), - [sym_interpolated_string_expression] = STATE(3362), - [sym_member_access_expression] = STATE(2747), - [sym_object_creation_expression] = STATE(3449), - [sym_parenthesized_expression] = STATE(3449), - [sym__parenthesized_lvalue_expression] = STATE(2747), - [sym_lambda_expression] = STATE(3362), - [sym__lambda_expression_init] = STATE(7772), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3362), - [sym_anonymous_method_expression] = STATE(3362), - [sym_anonymous_object_creation_expression] = STATE(3362), - [sym_implicit_array_creation_expression] = STATE(3362), - [sym_implicit_object_creation_expression] = STATE(3362), - [sym_implicit_stackalloc_expression] = STATE(3362), - [sym_initializer_expression] = STATE(3362), - [sym_default_expression] = STATE(3362), - [sym_with_expression] = STATE(3362), - [sym_sizeof_expression] = STATE(3362), - [sym_typeof_expression] = STATE(3362), - [sym_makeref_expression] = STATE(3362), - [sym_ref_expression] = STATE(3362), - [sym_reftype_expression] = STATE(3362), - [sym_refvalue_expression] = STATE(3362), - [sym_stackalloc_expression] = STATE(3362), - [sym_range_expression] = STATE(3362), - [sym_tuple_expression] = STATE(2747), - [sym_literal] = STATE(3362), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3362), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2416), + [sym__name] = STATE(5897), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2367), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(5209), + [sym_non_lvalue_expression] = STATE(3040), + [sym_lvalue_expression] = STATE(3600), + [sym__expression_statement_expression] = STATE(3035), + [sym_assignment_expression] = STATE(3043), + [sym_binary_expression] = STATE(3035), + [sym_postfix_unary_expression] = STATE(3043), + [sym_prefix_unary_expression] = STATE(3043), + [sym__pointer_indirection_expression] = STATE(2415), + [sym_query_expression] = STATE(3035), + [sym_from_clause] = STATE(6156), + [sym_conditional_expression] = STATE(3035), + [sym_conditional_access_expression] = STATE(3035), + [sym_as_expression] = STATE(3035), + [sym_is_expression] = STATE(3035), + [sym_is_pattern_expression] = STATE(3035), + [sym_cast_expression] = STATE(3035), + [sym_checked_expression] = STATE(3035), + [sym_invocation_expression] = STATE(3043), + [sym_switch_expression] = STATE(3035), + [sym_await_expression] = STATE(3043), + [sym_throw_expression] = STATE(3035), + [sym_element_access_expression] = STATE(2415), + [sym_interpolated_string_expression] = STATE(3035), + [sym_member_access_expression] = STATE(2415), + [sym_object_creation_expression] = STATE(3043), + [sym_parenthesized_expression] = STATE(3043), + [sym__parenthesized_lvalue_expression] = STATE(2415), + [sym_lambda_expression] = STATE(3035), + [sym__lambda_expression_init] = STATE(7561), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3035), + [sym_anonymous_method_expression] = STATE(3035), + [sym_anonymous_object_creation_expression] = STATE(3035), + [sym_implicit_array_creation_expression] = STATE(3035), + [sym_implicit_object_creation_expression] = STATE(3035), + [sym_implicit_stackalloc_expression] = STATE(3035), + [sym_initializer_expression] = STATE(3035), + [sym_default_expression] = STATE(3035), + [sym_with_expression] = STATE(3035), + [sym_sizeof_expression] = STATE(3035), + [sym_typeof_expression] = STATE(3035), + [sym_makeref_expression] = STATE(3035), + [sym_ref_expression] = STATE(3035), + [sym_reftype_expression] = STATE(3035), + [sym_refvalue_expression] = STATE(3035), + [sym_stackalloc_expression] = STATE(3035), + [sym_range_expression] = STATE(3035), + [sym_tuple_expression] = STATE(2415), + [sym_literal] = STATE(3035), + [sym_character_literal] = STATE(3037), + [sym_string_literal] = STATE(3037), + [sym_raw_string_literal] = STATE(3037), + [sym_boolean_literal] = STATE(3037), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3035), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(1122), [sym_preproc_endregion] = STATE(1122), [sym_preproc_line] = STATE(1122), @@ -231477,47 +231363,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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3385), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3455), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1307), - [anon_sym_LPAREN] = ACTIONS(1789), - [anon_sym_ref] = ACTIONS(1791), - [anon_sym_LBRACE] = ACTIONS(1313), - [anon_sym_delegate] = ACTIONS(1315), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1239), + [anon_sym_LPAREN] = ACTIONS(2217), + [anon_sym_ref] = ACTIONS(2219), + [anon_sym_LBRACE] = ACTIONS(1245), + [anon_sym_delegate] = ACTIONS(1247), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1317), + [anon_sym_new] = ACTIONS(2221), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1319), - [anon_sym_BANG] = ACTIONS(1795), - [anon_sym_TILDE] = ACTIONS(1795), - [anon_sym_PLUS_PLUS] = ACTIONS(1795), - [anon_sym_DASH_DASH] = ACTIONS(1795), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1793), - [anon_sym_DASH] = ACTIONS(1793), - [anon_sym_STAR] = ACTIONS(1797), - [anon_sym_CARET] = ACTIONS(1795), - [anon_sym_AMP] = ACTIONS(1795), - [anon_sym_this] = ACTIONS(1323), + [anon_sym_checked] = ACTIONS(1251), + [anon_sym_BANG] = ACTIONS(2225), + [anon_sym_TILDE] = ACTIONS(2225), + [anon_sym_PLUS_PLUS] = ACTIONS(2225), + [anon_sym_DASH_DASH] = ACTIONS(2225), + [anon_sym_true] = ACTIONS(1257), + [anon_sym_false] = ACTIONS(1257), + [anon_sym_PLUS] = ACTIONS(2223), + [anon_sym_DASH] = ACTIONS(2223), + [anon_sym_STAR] = ACTIONS(2227), + [anon_sym_CARET] = ACTIONS(2225), + [anon_sym_AMP] = ACTIONS(2225), + [anon_sym_this] = ACTIONS(1261), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1325), + [anon_sym_base] = ACTIONS(1263), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1319), + [sym_predefined_type] = ACTIONS(1265), + [anon_sym_unchecked] = ACTIONS(1251), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1799), + [anon_sym_default] = ACTIONS(1267), + [anon_sym_throw] = ACTIONS(2229), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1801), - [anon_sym_DOT_DOT] = ACTIONS(1803), + [anon_sym_await] = ACTIONS(2231), + [anon_sym_DOT_DOT] = ACTIONS(2233), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -231530,19 +231416,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1333), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(1335), - [anon_sym___reftype] = ACTIONS(1337), - [anon_sym___refvalue] = ACTIONS(1339), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1341), + [anon_sym_stackalloc] = ACTIONS(1275), + [anon_sym_sizeof] = ACTIONS(1277), + [anon_sym_typeof] = ACTIONS(1279), + [anon_sym___makeref] = ACTIONS(1281), + [anon_sym___reftype] = ACTIONS(1283), + [anon_sym___refvalue] = ACTIONS(1285), + [sym_null_literal] = ACTIONS(1287), + [anon_sym_SQUOTE] = ACTIONS(1289), + [sym_integer_literal] = ACTIONS(1287), + [sym_real_literal] = ACTIONS(1291), + [anon_sym_DQUOTE] = ACTIONS(1293), + [sym_verbatim_string_literal] = ACTIONS(1291), + [aux_sym_preproc_if_token1] = ACTIONS(1295), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -231553,90 +231439,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(151), - [sym_interpolation_verbatim_start] = ACTIONS(153), - [sym_interpolation_raw_start] = ACTIONS(155), - [sym_raw_string_start] = ACTIONS(157), + [sym_interpolation_regular_start] = ACTIONS(1297), + [sym_interpolation_verbatim_start] = ACTIONS(1299), + [sym_interpolation_raw_start] = ACTIONS(1301), + [sym_raw_string_start] = ACTIONS(1303), }, [1123] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2610), - [sym__name] = STATE(5886), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2319), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(4452), - [sym_non_lvalue_expression] = STATE(3277), - [sym_lvalue_expression] = STATE(3347), - [sym__expression_statement_expression] = STATE(3228), - [sym_assignment_expression] = STATE(3289), - [sym_binary_expression] = STATE(3228), - [sym_postfix_unary_expression] = STATE(3289), - [sym_prefix_unary_expression] = STATE(3289), - [sym__pointer_indirection_expression] = STATE(2609), - [sym_query_expression] = STATE(3228), - [sym_from_clause] = STATE(6150), - [sym_conditional_expression] = STATE(3228), - [sym_conditional_access_expression] = STATE(3228), - [sym_as_expression] = STATE(3228), - [sym_is_expression] = STATE(3228), - [sym_is_pattern_expression] = STATE(3228), - [sym_cast_expression] = STATE(3228), - [sym_checked_expression] = STATE(3228), - [sym_invocation_expression] = STATE(3289), - [sym_switch_expression] = STATE(3228), - [sym_await_expression] = STATE(3289), - [sym_throw_expression] = STATE(3228), - [sym_element_access_expression] = STATE(2609), - [sym_interpolated_string_expression] = STATE(3228), - [sym_member_access_expression] = STATE(2609), - [sym_object_creation_expression] = STATE(3289), - [sym_parenthesized_expression] = STATE(3289), - [sym__parenthesized_lvalue_expression] = STATE(2609), - [sym_lambda_expression] = STATE(3228), - [sym__lambda_expression_init] = STATE(7531), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3228), - [sym_anonymous_method_expression] = STATE(3228), - [sym_anonymous_object_creation_expression] = STATE(3228), - [sym_implicit_array_creation_expression] = STATE(3228), - [sym_implicit_object_creation_expression] = STATE(3228), - [sym_implicit_stackalloc_expression] = STATE(3228), - [sym_initializer_expression] = STATE(3228), - [sym_default_expression] = STATE(3228), - [sym_with_expression] = STATE(3228), - [sym_sizeof_expression] = STATE(3228), - [sym_typeof_expression] = STATE(3228), - [sym_makeref_expression] = STATE(3228), - [sym_ref_expression] = STATE(3228), - [sym_reftype_expression] = STATE(3228), - [sym_refvalue_expression] = STATE(3228), - [sym_stackalloc_expression] = STATE(3228), - [sym_range_expression] = STATE(3228), - [sym_tuple_expression] = STATE(2609), - [sym_literal] = STATE(3228), - [sym_character_literal] = STATE(3278), - [sym_string_literal] = STATE(3278), - [sym_raw_string_literal] = STATE(3278), - [sym_boolean_literal] = STATE(3278), - [sym_identifier] = STATE(2267), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3228), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2416), + [sym__name] = STATE(5897), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2367), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(5210), + [sym_non_lvalue_expression] = STATE(3040), + [sym_lvalue_expression] = STATE(3600), + [sym__expression_statement_expression] = STATE(3035), + [sym_assignment_expression] = STATE(3043), + [sym_binary_expression] = STATE(3035), + [sym_postfix_unary_expression] = STATE(3043), + [sym_prefix_unary_expression] = STATE(3043), + [sym__pointer_indirection_expression] = STATE(2415), + [sym_query_expression] = STATE(3035), + [sym_from_clause] = STATE(6156), + [sym_conditional_expression] = STATE(3035), + [sym_conditional_access_expression] = STATE(3035), + [sym_as_expression] = STATE(3035), + [sym_is_expression] = STATE(3035), + [sym_is_pattern_expression] = STATE(3035), + [sym_cast_expression] = STATE(3035), + [sym_checked_expression] = STATE(3035), + [sym_invocation_expression] = STATE(3043), + [sym_switch_expression] = STATE(3035), + [sym_await_expression] = STATE(3043), + [sym_throw_expression] = STATE(3035), + [sym_element_access_expression] = STATE(2415), + [sym_interpolated_string_expression] = STATE(3035), + [sym_member_access_expression] = STATE(2415), + [sym_object_creation_expression] = STATE(3043), + [sym_parenthesized_expression] = STATE(3043), + [sym__parenthesized_lvalue_expression] = STATE(2415), + [sym_lambda_expression] = STATE(3035), + [sym__lambda_expression_init] = STATE(7561), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3035), + [sym_anonymous_method_expression] = STATE(3035), + [sym_anonymous_object_creation_expression] = STATE(3035), + [sym_implicit_array_creation_expression] = STATE(3035), + [sym_implicit_object_creation_expression] = STATE(3035), + [sym_implicit_stackalloc_expression] = STATE(3035), + [sym_initializer_expression] = STATE(3035), + [sym_default_expression] = STATE(3035), + [sym_with_expression] = STATE(3035), + [sym_sizeof_expression] = STATE(3035), + [sym_typeof_expression] = STATE(3035), + [sym_makeref_expression] = STATE(3035), + [sym_ref_expression] = STATE(3035), + [sym_reftype_expression] = STATE(3035), + [sym_refvalue_expression] = STATE(3035), + [sym_stackalloc_expression] = STATE(3035), + [sym_range_expression] = STATE(3035), + [sym_tuple_expression] = STATE(2415), + [sym_literal] = STATE(3035), + [sym_character_literal] = STATE(3037), + [sym_string_literal] = STATE(3037), + [sym_raw_string_literal] = STATE(3037), + [sym_boolean_literal] = STATE(3037), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3035), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(1123), [sym_preproc_endregion] = STATE(1123), [sym_preproc_line] = STATE(1123), @@ -231646,47 +231532,47 @@ 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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3396), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3455), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1153), - [anon_sym_LPAREN] = ACTIONS(1525), - [anon_sym_ref] = ACTIONS(1527), - [anon_sym_LBRACE] = ACTIONS(1159), - [anon_sym_delegate] = ACTIONS(1161), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1239), + [anon_sym_LPAREN] = ACTIONS(2217), + [anon_sym_ref] = ACTIONS(2219), + [anon_sym_LBRACE] = ACTIONS(1245), + [anon_sym_delegate] = ACTIONS(1247), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1529), + [anon_sym_new] = ACTIONS(2221), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1167), - [anon_sym_BANG] = ACTIONS(1533), - [anon_sym_TILDE] = ACTIONS(1533), - [anon_sym_PLUS_PLUS] = ACTIONS(1533), - [anon_sym_DASH_DASH] = ACTIONS(1533), - [anon_sym_true] = ACTIONS(1173), - [anon_sym_false] = ACTIONS(1173), - [anon_sym_PLUS] = ACTIONS(1531), - [anon_sym_DASH] = ACTIONS(1531), - [anon_sym_STAR] = ACTIONS(1535), - [anon_sym_CARET] = ACTIONS(1533), - [anon_sym_AMP] = ACTIONS(1533), - [anon_sym_this] = ACTIONS(1177), + [anon_sym_checked] = ACTIONS(1251), + [anon_sym_BANG] = ACTIONS(2225), + [anon_sym_TILDE] = ACTIONS(2225), + [anon_sym_PLUS_PLUS] = ACTIONS(2225), + [anon_sym_DASH_DASH] = ACTIONS(2225), + [anon_sym_true] = ACTIONS(1257), + [anon_sym_false] = ACTIONS(1257), + [anon_sym_PLUS] = ACTIONS(2223), + [anon_sym_DASH] = ACTIONS(2223), + [anon_sym_STAR] = ACTIONS(2227), + [anon_sym_CARET] = ACTIONS(2225), + [anon_sym_AMP] = ACTIONS(2225), + [anon_sym_this] = ACTIONS(1261), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1179), + [anon_sym_base] = ACTIONS(1263), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1181), - [anon_sym_unchecked] = ACTIONS(1167), + [sym_predefined_type] = ACTIONS(1265), + [anon_sym_unchecked] = ACTIONS(1251), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1183), - [anon_sym_throw] = ACTIONS(1537), + [anon_sym_default] = ACTIONS(1267), + [anon_sym_throw] = ACTIONS(2229), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1539), - [anon_sym_DOT_DOT] = ACTIONS(1541), + [anon_sym_await] = ACTIONS(2231), + [anon_sym_DOT_DOT] = ACTIONS(2233), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -231699,19 +231585,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1191), - [anon_sym_sizeof] = ACTIONS(1193), - [anon_sym_typeof] = ACTIONS(1195), - [anon_sym___makeref] = ACTIONS(1197), - [anon_sym___reftype] = ACTIONS(1199), - [anon_sym___refvalue] = ACTIONS(1201), - [sym_null_literal] = ACTIONS(1203), - [anon_sym_SQUOTE] = ACTIONS(1205), - [sym_integer_literal] = ACTIONS(1203), - [sym_real_literal] = ACTIONS(1207), - [anon_sym_DQUOTE] = ACTIONS(1209), - [sym_verbatim_string_literal] = ACTIONS(1207), - [aux_sym_preproc_if_token1] = ACTIONS(1211), + [anon_sym_stackalloc] = ACTIONS(1275), + [anon_sym_sizeof] = ACTIONS(1277), + [anon_sym_typeof] = ACTIONS(1279), + [anon_sym___makeref] = ACTIONS(1281), + [anon_sym___reftype] = ACTIONS(1283), + [anon_sym___refvalue] = ACTIONS(1285), + [sym_null_literal] = ACTIONS(1287), + [anon_sym_SQUOTE] = ACTIONS(1289), + [sym_integer_literal] = ACTIONS(1287), + [sym_real_literal] = ACTIONS(1291), + [anon_sym_DQUOTE] = ACTIONS(1293), + [sym_verbatim_string_literal] = ACTIONS(1291), + [aux_sym_preproc_if_token1] = ACTIONS(1295), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -231722,90 +231608,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1213), - [sym_interpolation_verbatim_start] = ACTIONS(1215), - [sym_interpolation_raw_start] = ACTIONS(1217), - [sym_raw_string_start] = ACTIONS(1219), + [sym_interpolation_regular_start] = ACTIONS(1297), + [sym_interpolation_verbatim_start] = ACTIONS(1299), + [sym_interpolation_raw_start] = ACTIONS(1301), + [sym_raw_string_start] = ACTIONS(1303), }, [1124] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2762), - [sym__name] = STATE(5889), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2204), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(4913), - [sym_non_lvalue_expression] = STATE(3438), - [sym_lvalue_expression] = STATE(3548), - [sym__expression_statement_expression] = STATE(3362), - [sym_assignment_expression] = STATE(3449), - [sym_binary_expression] = STATE(3362), - [sym_postfix_unary_expression] = STATE(3449), - [sym_prefix_unary_expression] = STATE(3449), - [sym__pointer_indirection_expression] = STATE(2747), - [sym_query_expression] = STATE(3362), - [sym_from_clause] = STATE(6146), - [sym_conditional_expression] = STATE(3362), - [sym_conditional_access_expression] = STATE(3362), - [sym_as_expression] = STATE(3362), - [sym_is_expression] = STATE(3362), - [sym_is_pattern_expression] = STATE(3362), - [sym_cast_expression] = STATE(3362), - [sym_checked_expression] = STATE(3362), - [sym_invocation_expression] = STATE(3449), - [sym_switch_expression] = STATE(3362), - [sym_await_expression] = STATE(3449), - [sym_throw_expression] = STATE(3362), - [sym_element_access_expression] = STATE(2747), - [sym_interpolated_string_expression] = STATE(3362), - [sym_member_access_expression] = STATE(2747), - [sym_object_creation_expression] = STATE(3449), - [sym_parenthesized_expression] = STATE(3449), - [sym__parenthesized_lvalue_expression] = STATE(2747), - [sym_lambda_expression] = STATE(3362), - [sym__lambda_expression_init] = STATE(7772), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3362), - [sym_anonymous_method_expression] = STATE(3362), - [sym_anonymous_object_creation_expression] = STATE(3362), - [sym_implicit_array_creation_expression] = STATE(3362), - [sym_implicit_object_creation_expression] = STATE(3362), - [sym_implicit_stackalloc_expression] = STATE(3362), - [sym_initializer_expression] = STATE(3362), - [sym_default_expression] = STATE(3362), - [sym_with_expression] = STATE(3362), - [sym_sizeof_expression] = STATE(3362), - [sym_typeof_expression] = STATE(3362), - [sym_makeref_expression] = STATE(3362), - [sym_ref_expression] = STATE(3362), - [sym_reftype_expression] = STATE(3362), - [sym_refvalue_expression] = STATE(3362), - [sym_stackalloc_expression] = STATE(3362), - [sym_range_expression] = STATE(3362), - [sym_tuple_expression] = STATE(2747), - [sym_literal] = STATE(3362), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3362), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2416), + [sym__name] = STATE(5897), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2367), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(5211), + [sym_non_lvalue_expression] = STATE(3040), + [sym_lvalue_expression] = STATE(3600), + [sym__expression_statement_expression] = STATE(3035), + [sym_assignment_expression] = STATE(3043), + [sym_binary_expression] = STATE(3035), + [sym_postfix_unary_expression] = STATE(3043), + [sym_prefix_unary_expression] = STATE(3043), + [sym__pointer_indirection_expression] = STATE(2415), + [sym_query_expression] = STATE(3035), + [sym_from_clause] = STATE(6156), + [sym_conditional_expression] = STATE(3035), + [sym_conditional_access_expression] = STATE(3035), + [sym_as_expression] = STATE(3035), + [sym_is_expression] = STATE(3035), + [sym_is_pattern_expression] = STATE(3035), + [sym_cast_expression] = STATE(3035), + [sym_checked_expression] = STATE(3035), + [sym_invocation_expression] = STATE(3043), + [sym_switch_expression] = STATE(3035), + [sym_await_expression] = STATE(3043), + [sym_throw_expression] = STATE(3035), + [sym_element_access_expression] = STATE(2415), + [sym_interpolated_string_expression] = STATE(3035), + [sym_member_access_expression] = STATE(2415), + [sym_object_creation_expression] = STATE(3043), + [sym_parenthesized_expression] = STATE(3043), + [sym__parenthesized_lvalue_expression] = STATE(2415), + [sym_lambda_expression] = STATE(3035), + [sym__lambda_expression_init] = STATE(7561), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3035), + [sym_anonymous_method_expression] = STATE(3035), + [sym_anonymous_object_creation_expression] = STATE(3035), + [sym_implicit_array_creation_expression] = STATE(3035), + [sym_implicit_object_creation_expression] = STATE(3035), + [sym_implicit_stackalloc_expression] = STATE(3035), + [sym_initializer_expression] = STATE(3035), + [sym_default_expression] = STATE(3035), + [sym_with_expression] = STATE(3035), + [sym_sizeof_expression] = STATE(3035), + [sym_typeof_expression] = STATE(3035), + [sym_makeref_expression] = STATE(3035), + [sym_ref_expression] = STATE(3035), + [sym_reftype_expression] = STATE(3035), + [sym_refvalue_expression] = STATE(3035), + [sym_stackalloc_expression] = STATE(3035), + [sym_range_expression] = STATE(3035), + [sym_tuple_expression] = STATE(2415), + [sym_literal] = STATE(3035), + [sym_character_literal] = STATE(3037), + [sym_string_literal] = STATE(3037), + [sym_raw_string_literal] = STATE(3037), + [sym_boolean_literal] = STATE(3037), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3035), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(1124), [sym_preproc_endregion] = STATE(1124), [sym_preproc_line] = STATE(1124), @@ -231815,47 +231701,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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3385), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3455), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1307), - [anon_sym_LPAREN] = ACTIONS(1789), - [anon_sym_ref] = ACTIONS(1791), - [anon_sym_LBRACE] = ACTIONS(1313), - [anon_sym_delegate] = ACTIONS(1315), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1239), + [anon_sym_LPAREN] = ACTIONS(2217), + [anon_sym_ref] = ACTIONS(2219), + [anon_sym_LBRACE] = ACTIONS(1245), + [anon_sym_delegate] = ACTIONS(1247), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1317), + [anon_sym_new] = ACTIONS(2221), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1319), - [anon_sym_BANG] = ACTIONS(1795), - [anon_sym_TILDE] = ACTIONS(1795), - [anon_sym_PLUS_PLUS] = ACTIONS(1795), - [anon_sym_DASH_DASH] = ACTIONS(1795), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1793), - [anon_sym_DASH] = ACTIONS(1793), - [anon_sym_STAR] = ACTIONS(1797), - [anon_sym_CARET] = ACTIONS(1795), - [anon_sym_AMP] = ACTIONS(1795), - [anon_sym_this] = ACTIONS(1323), + [anon_sym_checked] = ACTIONS(1251), + [anon_sym_BANG] = ACTIONS(2225), + [anon_sym_TILDE] = ACTIONS(2225), + [anon_sym_PLUS_PLUS] = ACTIONS(2225), + [anon_sym_DASH_DASH] = ACTIONS(2225), + [anon_sym_true] = ACTIONS(1257), + [anon_sym_false] = ACTIONS(1257), + [anon_sym_PLUS] = ACTIONS(2223), + [anon_sym_DASH] = ACTIONS(2223), + [anon_sym_STAR] = ACTIONS(2227), + [anon_sym_CARET] = ACTIONS(2225), + [anon_sym_AMP] = ACTIONS(2225), + [anon_sym_this] = ACTIONS(1261), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1325), + [anon_sym_base] = ACTIONS(1263), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1319), + [sym_predefined_type] = ACTIONS(1265), + [anon_sym_unchecked] = ACTIONS(1251), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1799), + [anon_sym_default] = ACTIONS(1267), + [anon_sym_throw] = ACTIONS(2229), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1801), - [anon_sym_DOT_DOT] = ACTIONS(1803), + [anon_sym_await] = ACTIONS(2231), + [anon_sym_DOT_DOT] = ACTIONS(2233), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -231868,19 +231754,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1333), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(1335), - [anon_sym___reftype] = ACTIONS(1337), - [anon_sym___refvalue] = ACTIONS(1339), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1341), + [anon_sym_stackalloc] = ACTIONS(1275), + [anon_sym_sizeof] = ACTIONS(1277), + [anon_sym_typeof] = ACTIONS(1279), + [anon_sym___makeref] = ACTIONS(1281), + [anon_sym___reftype] = ACTIONS(1283), + [anon_sym___refvalue] = ACTIONS(1285), + [sym_null_literal] = ACTIONS(1287), + [anon_sym_SQUOTE] = ACTIONS(1289), + [sym_integer_literal] = ACTIONS(1287), + [sym_real_literal] = ACTIONS(1291), + [anon_sym_DQUOTE] = ACTIONS(1293), + [sym_verbatim_string_literal] = ACTIONS(1291), + [aux_sym_preproc_if_token1] = ACTIONS(1295), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -231891,90 +231777,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(151), - [sym_interpolation_verbatim_start] = ACTIONS(153), - [sym_interpolation_raw_start] = ACTIONS(155), - [sym_raw_string_start] = ACTIONS(157), + [sym_interpolation_regular_start] = ACTIONS(1297), + [sym_interpolation_verbatim_start] = ACTIONS(1299), + [sym_interpolation_raw_start] = ACTIONS(1301), + [sym_raw_string_start] = ACTIONS(1303), }, [1125] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2610), - [sym__name] = STATE(5905), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2395), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(4691), - [sym_non_lvalue_expression] = STATE(3277), - [sym_lvalue_expression] = STATE(3402), - [sym__expression_statement_expression] = STATE(3228), - [sym_assignment_expression] = STATE(3289), - [sym_binary_expression] = STATE(3228), - [sym_postfix_unary_expression] = STATE(3289), - [sym_prefix_unary_expression] = STATE(3289), - [sym__pointer_indirection_expression] = STATE(2609), - [sym_query_expression] = STATE(3228), - [sym_from_clause] = STATE(6166), - [sym_conditional_expression] = STATE(3228), - [sym_conditional_access_expression] = STATE(3228), - [sym_as_expression] = STATE(3228), - [sym_is_expression] = STATE(3228), - [sym_is_pattern_expression] = STATE(3228), - [sym_cast_expression] = STATE(3228), - [sym_checked_expression] = STATE(3228), - [sym_invocation_expression] = STATE(3289), - [sym_switch_expression] = STATE(3228), - [sym_await_expression] = STATE(3289), - [sym_throw_expression] = STATE(3228), - [sym_element_access_expression] = STATE(2609), - [sym_interpolated_string_expression] = STATE(3228), - [sym_member_access_expression] = STATE(2609), - [sym_object_creation_expression] = STATE(3289), - [sym_parenthesized_expression] = STATE(3289), - [sym__parenthesized_lvalue_expression] = STATE(2609), - [sym_lambda_expression] = STATE(3228), - [sym__lambda_expression_init] = STATE(7415), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3228), - [sym_anonymous_method_expression] = STATE(3228), - [sym_anonymous_object_creation_expression] = STATE(3228), - [sym_implicit_array_creation_expression] = STATE(3228), - [sym_implicit_object_creation_expression] = STATE(3228), - [sym_implicit_stackalloc_expression] = STATE(3228), - [sym_initializer_expression] = STATE(3228), - [sym_default_expression] = STATE(3228), - [sym_with_expression] = STATE(3228), - [sym_sizeof_expression] = STATE(3228), - [sym_typeof_expression] = STATE(3228), - [sym_makeref_expression] = STATE(3228), - [sym_ref_expression] = STATE(3228), - [sym_reftype_expression] = STATE(3228), - [sym_refvalue_expression] = STATE(3228), - [sym_stackalloc_expression] = STATE(3228), - [sym_range_expression] = STATE(3228), - [sym_tuple_expression] = STATE(2609), - [sym_literal] = STATE(3228), - [sym_character_literal] = STATE(3278), - [sym_string_literal] = STATE(3278), - [sym_raw_string_literal] = STATE(3278), - [sym_boolean_literal] = STATE(3278), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3228), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2416), + [sym__name] = STATE(5897), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2367), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(5212), + [sym_non_lvalue_expression] = STATE(3040), + [sym_lvalue_expression] = STATE(3600), + [sym__expression_statement_expression] = STATE(3035), + [sym_assignment_expression] = STATE(3043), + [sym_binary_expression] = STATE(3035), + [sym_postfix_unary_expression] = STATE(3043), + [sym_prefix_unary_expression] = STATE(3043), + [sym__pointer_indirection_expression] = STATE(2415), + [sym_query_expression] = STATE(3035), + [sym_from_clause] = STATE(6156), + [sym_conditional_expression] = STATE(3035), + [sym_conditional_access_expression] = STATE(3035), + [sym_as_expression] = STATE(3035), + [sym_is_expression] = STATE(3035), + [sym_is_pattern_expression] = STATE(3035), + [sym_cast_expression] = STATE(3035), + [sym_checked_expression] = STATE(3035), + [sym_invocation_expression] = STATE(3043), + [sym_switch_expression] = STATE(3035), + [sym_await_expression] = STATE(3043), + [sym_throw_expression] = STATE(3035), + [sym_element_access_expression] = STATE(2415), + [sym_interpolated_string_expression] = STATE(3035), + [sym_member_access_expression] = STATE(2415), + [sym_object_creation_expression] = STATE(3043), + [sym_parenthesized_expression] = STATE(3043), + [sym__parenthesized_lvalue_expression] = STATE(2415), + [sym_lambda_expression] = STATE(3035), + [sym__lambda_expression_init] = STATE(7561), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3035), + [sym_anonymous_method_expression] = STATE(3035), + [sym_anonymous_object_creation_expression] = STATE(3035), + [sym_implicit_array_creation_expression] = STATE(3035), + [sym_implicit_object_creation_expression] = STATE(3035), + [sym_implicit_stackalloc_expression] = STATE(3035), + [sym_initializer_expression] = STATE(3035), + [sym_default_expression] = STATE(3035), + [sym_with_expression] = STATE(3035), + [sym_sizeof_expression] = STATE(3035), + [sym_typeof_expression] = STATE(3035), + [sym_makeref_expression] = STATE(3035), + [sym_ref_expression] = STATE(3035), + [sym_reftype_expression] = STATE(3035), + [sym_refvalue_expression] = STATE(3035), + [sym_stackalloc_expression] = STATE(3035), + [sym_range_expression] = STATE(3035), + [sym_tuple_expression] = STATE(2415), + [sym_literal] = STATE(3035), + [sym_character_literal] = STATE(3037), + [sym_string_literal] = STATE(3037), + [sym_raw_string_literal] = STATE(3037), + [sym_boolean_literal] = STATE(3037), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3035), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(1125), [sym_preproc_endregion] = STATE(1125), [sym_preproc_line] = STATE(1125), @@ -231984,47 +231870,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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3396), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3455), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1153), - [anon_sym_LPAREN] = ACTIONS(1915), - [anon_sym_ref] = ACTIONS(1917), - [anon_sym_LBRACE] = ACTIONS(1159), - [anon_sym_delegate] = ACTIONS(1161), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1239), + [anon_sym_LPAREN] = ACTIONS(2217), + [anon_sym_ref] = ACTIONS(2219), + [anon_sym_LBRACE] = ACTIONS(1245), + [anon_sym_delegate] = ACTIONS(1247), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1919), + [anon_sym_new] = ACTIONS(2221), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1167), - [anon_sym_BANG] = ACTIONS(1923), - [anon_sym_TILDE] = ACTIONS(1923), - [anon_sym_PLUS_PLUS] = ACTIONS(1923), - [anon_sym_DASH_DASH] = ACTIONS(1923), - [anon_sym_true] = ACTIONS(1173), - [anon_sym_false] = ACTIONS(1173), - [anon_sym_PLUS] = ACTIONS(1921), - [anon_sym_DASH] = ACTIONS(1921), - [anon_sym_STAR] = ACTIONS(1925), - [anon_sym_CARET] = ACTIONS(1923), - [anon_sym_AMP] = ACTIONS(1923), - [anon_sym_this] = ACTIONS(1177), + [anon_sym_checked] = ACTIONS(1251), + [anon_sym_BANG] = ACTIONS(2225), + [anon_sym_TILDE] = ACTIONS(2225), + [anon_sym_PLUS_PLUS] = ACTIONS(2225), + [anon_sym_DASH_DASH] = ACTIONS(2225), + [anon_sym_true] = ACTIONS(1257), + [anon_sym_false] = ACTIONS(1257), + [anon_sym_PLUS] = ACTIONS(2223), + [anon_sym_DASH] = ACTIONS(2223), + [anon_sym_STAR] = ACTIONS(2227), + [anon_sym_CARET] = ACTIONS(2225), + [anon_sym_AMP] = ACTIONS(2225), + [anon_sym_this] = ACTIONS(1261), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1179), + [anon_sym_base] = ACTIONS(1263), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1181), - [anon_sym_unchecked] = ACTIONS(1167), + [sym_predefined_type] = ACTIONS(1265), + [anon_sym_unchecked] = ACTIONS(1251), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1183), - [anon_sym_throw] = ACTIONS(1927), + [anon_sym_default] = ACTIONS(1267), + [anon_sym_throw] = ACTIONS(2229), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1929), - [anon_sym_DOT_DOT] = ACTIONS(1931), + [anon_sym_await] = ACTIONS(2231), + [anon_sym_DOT_DOT] = ACTIONS(2233), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -232037,19 +231923,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1191), - [anon_sym_sizeof] = ACTIONS(1193), - [anon_sym_typeof] = ACTIONS(1195), - [anon_sym___makeref] = ACTIONS(1197), - [anon_sym___reftype] = ACTIONS(1199), - [anon_sym___refvalue] = ACTIONS(1201), - [sym_null_literal] = ACTIONS(1203), - [anon_sym_SQUOTE] = ACTIONS(1205), - [sym_integer_literal] = ACTIONS(1203), - [sym_real_literal] = ACTIONS(1207), - [anon_sym_DQUOTE] = ACTIONS(1209), - [sym_verbatim_string_literal] = ACTIONS(1207), - [aux_sym_preproc_if_token1] = ACTIONS(1211), + [anon_sym_stackalloc] = ACTIONS(1275), + [anon_sym_sizeof] = ACTIONS(1277), + [anon_sym_typeof] = ACTIONS(1279), + [anon_sym___makeref] = ACTIONS(1281), + [anon_sym___reftype] = ACTIONS(1283), + [anon_sym___refvalue] = ACTIONS(1285), + [sym_null_literal] = ACTIONS(1287), + [anon_sym_SQUOTE] = ACTIONS(1289), + [sym_integer_literal] = ACTIONS(1287), + [sym_real_literal] = ACTIONS(1291), + [anon_sym_DQUOTE] = ACTIONS(1293), + [sym_verbatim_string_literal] = ACTIONS(1291), + [aux_sym_preproc_if_token1] = ACTIONS(1295), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -232060,90 +231946,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1213), - [sym_interpolation_verbatim_start] = ACTIONS(1215), - [sym_interpolation_raw_start] = ACTIONS(1217), - [sym_raw_string_start] = ACTIONS(1219), + [sym_interpolation_regular_start] = ACTIONS(1297), + [sym_interpolation_verbatim_start] = ACTIONS(1299), + [sym_interpolation_raw_start] = ACTIONS(1301), + [sym_raw_string_start] = ACTIONS(1303), }, [1126] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2610), - [sym__name] = STATE(5905), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2395), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(3139), - [sym_non_lvalue_expression] = STATE(3277), - [sym_lvalue_expression] = STATE(3402), - [sym__expression_statement_expression] = STATE(3228), - [sym_assignment_expression] = STATE(3289), - [sym_binary_expression] = STATE(3228), - [sym_postfix_unary_expression] = STATE(3289), - [sym_prefix_unary_expression] = STATE(3289), - [sym__pointer_indirection_expression] = STATE(2609), - [sym_query_expression] = STATE(3228), - [sym_from_clause] = STATE(6166), - [sym_conditional_expression] = STATE(3228), - [sym_conditional_access_expression] = STATE(3228), - [sym_as_expression] = STATE(3228), - [sym_is_expression] = STATE(3228), - [sym_is_pattern_expression] = STATE(3228), - [sym_cast_expression] = STATE(3228), - [sym_checked_expression] = STATE(3228), - [sym_invocation_expression] = STATE(3289), - [sym_switch_expression] = STATE(3228), - [sym_await_expression] = STATE(3289), - [sym_throw_expression] = STATE(3228), - [sym_element_access_expression] = STATE(2609), - [sym_interpolated_string_expression] = STATE(3228), - [sym_member_access_expression] = STATE(2609), - [sym_object_creation_expression] = STATE(3289), - [sym_parenthesized_expression] = STATE(3289), - [sym__parenthesized_lvalue_expression] = STATE(2609), - [sym_lambda_expression] = STATE(3228), - [sym__lambda_expression_init] = STATE(7415), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3228), - [sym_anonymous_method_expression] = STATE(3228), - [sym_anonymous_object_creation_expression] = STATE(3228), - [sym_implicit_array_creation_expression] = STATE(3228), - [sym_implicit_object_creation_expression] = STATE(3228), - [sym_implicit_stackalloc_expression] = STATE(3228), - [sym_initializer_expression] = STATE(3228), - [sym_default_expression] = STATE(3228), - [sym_with_expression] = STATE(3228), - [sym_sizeof_expression] = STATE(3228), - [sym_typeof_expression] = STATE(3228), - [sym_makeref_expression] = STATE(3228), - [sym_ref_expression] = STATE(3228), - [sym_reftype_expression] = STATE(3228), - [sym_refvalue_expression] = STATE(3228), - [sym_stackalloc_expression] = STATE(3228), - [sym_range_expression] = STATE(3228), - [sym_tuple_expression] = STATE(2609), - [sym_literal] = STATE(3228), - [sym_character_literal] = STATE(3278), - [sym_string_literal] = STATE(3278), - [sym_raw_string_literal] = STATE(3278), - [sym_boolean_literal] = STATE(3278), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3228), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2416), + [sym__name] = STATE(5897), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2367), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(5213), + [sym_non_lvalue_expression] = STATE(3040), + [sym_lvalue_expression] = STATE(3600), + [sym__expression_statement_expression] = STATE(3035), + [sym_assignment_expression] = STATE(3043), + [sym_binary_expression] = STATE(3035), + [sym_postfix_unary_expression] = STATE(3043), + [sym_prefix_unary_expression] = STATE(3043), + [sym__pointer_indirection_expression] = STATE(2415), + [sym_query_expression] = STATE(3035), + [sym_from_clause] = STATE(6156), + [sym_conditional_expression] = STATE(3035), + [sym_conditional_access_expression] = STATE(3035), + [sym_as_expression] = STATE(3035), + [sym_is_expression] = STATE(3035), + [sym_is_pattern_expression] = STATE(3035), + [sym_cast_expression] = STATE(3035), + [sym_checked_expression] = STATE(3035), + [sym_invocation_expression] = STATE(3043), + [sym_switch_expression] = STATE(3035), + [sym_await_expression] = STATE(3043), + [sym_throw_expression] = STATE(3035), + [sym_element_access_expression] = STATE(2415), + [sym_interpolated_string_expression] = STATE(3035), + [sym_member_access_expression] = STATE(2415), + [sym_object_creation_expression] = STATE(3043), + [sym_parenthesized_expression] = STATE(3043), + [sym__parenthesized_lvalue_expression] = STATE(2415), + [sym_lambda_expression] = STATE(3035), + [sym__lambda_expression_init] = STATE(7561), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3035), + [sym_anonymous_method_expression] = STATE(3035), + [sym_anonymous_object_creation_expression] = STATE(3035), + [sym_implicit_array_creation_expression] = STATE(3035), + [sym_implicit_object_creation_expression] = STATE(3035), + [sym_implicit_stackalloc_expression] = STATE(3035), + [sym_initializer_expression] = STATE(3035), + [sym_default_expression] = STATE(3035), + [sym_with_expression] = STATE(3035), + [sym_sizeof_expression] = STATE(3035), + [sym_typeof_expression] = STATE(3035), + [sym_makeref_expression] = STATE(3035), + [sym_ref_expression] = STATE(3035), + [sym_reftype_expression] = STATE(3035), + [sym_refvalue_expression] = STATE(3035), + [sym_stackalloc_expression] = STATE(3035), + [sym_range_expression] = STATE(3035), + [sym_tuple_expression] = STATE(2415), + [sym_literal] = STATE(3035), + [sym_character_literal] = STATE(3037), + [sym_string_literal] = STATE(3037), + [sym_raw_string_literal] = STATE(3037), + [sym_boolean_literal] = STATE(3037), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3035), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(1126), [sym_preproc_endregion] = STATE(1126), [sym_preproc_line] = STATE(1126), @@ -232153,47 +232039,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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3396), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3455), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1153), - [anon_sym_LPAREN] = ACTIONS(1915), - [anon_sym_ref] = ACTIONS(1917), - [anon_sym_LBRACE] = ACTIONS(1159), - [anon_sym_delegate] = ACTIONS(1161), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1239), + [anon_sym_LPAREN] = ACTIONS(2217), + [anon_sym_ref] = ACTIONS(2219), + [anon_sym_LBRACE] = ACTIONS(1245), + [anon_sym_delegate] = ACTIONS(1247), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1919), + [anon_sym_new] = ACTIONS(2221), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1167), - [anon_sym_BANG] = ACTIONS(1923), - [anon_sym_TILDE] = ACTIONS(1923), - [anon_sym_PLUS_PLUS] = ACTIONS(1923), - [anon_sym_DASH_DASH] = ACTIONS(1923), - [anon_sym_true] = ACTIONS(1173), - [anon_sym_false] = ACTIONS(1173), - [anon_sym_PLUS] = ACTIONS(1921), - [anon_sym_DASH] = ACTIONS(1921), - [anon_sym_STAR] = ACTIONS(1925), - [anon_sym_CARET] = ACTIONS(1923), - [anon_sym_AMP] = ACTIONS(1923), - [anon_sym_this] = ACTIONS(1177), + [anon_sym_checked] = ACTIONS(1251), + [anon_sym_BANG] = ACTIONS(2225), + [anon_sym_TILDE] = ACTIONS(2225), + [anon_sym_PLUS_PLUS] = ACTIONS(2225), + [anon_sym_DASH_DASH] = ACTIONS(2225), + [anon_sym_true] = ACTIONS(1257), + [anon_sym_false] = ACTIONS(1257), + [anon_sym_PLUS] = ACTIONS(2223), + [anon_sym_DASH] = ACTIONS(2223), + [anon_sym_STAR] = ACTIONS(2227), + [anon_sym_CARET] = ACTIONS(2225), + [anon_sym_AMP] = ACTIONS(2225), + [anon_sym_this] = ACTIONS(1261), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1179), + [anon_sym_base] = ACTIONS(1263), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1181), - [anon_sym_unchecked] = ACTIONS(1167), + [sym_predefined_type] = ACTIONS(1265), + [anon_sym_unchecked] = ACTIONS(1251), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1183), - [anon_sym_throw] = ACTIONS(1927), + [anon_sym_default] = ACTIONS(1267), + [anon_sym_throw] = ACTIONS(2229), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1929), - [anon_sym_DOT_DOT] = ACTIONS(1931), + [anon_sym_await] = ACTIONS(2231), + [anon_sym_DOT_DOT] = ACTIONS(2233), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -232206,19 +232092,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1191), - [anon_sym_sizeof] = ACTIONS(1193), - [anon_sym_typeof] = ACTIONS(1195), - [anon_sym___makeref] = ACTIONS(1197), - [anon_sym___reftype] = ACTIONS(1199), - [anon_sym___refvalue] = ACTIONS(1201), - [sym_null_literal] = ACTIONS(1203), - [anon_sym_SQUOTE] = ACTIONS(1205), - [sym_integer_literal] = ACTIONS(1203), - [sym_real_literal] = ACTIONS(1207), - [anon_sym_DQUOTE] = ACTIONS(1209), - [sym_verbatim_string_literal] = ACTIONS(1207), - [aux_sym_preproc_if_token1] = ACTIONS(1211), + [anon_sym_stackalloc] = ACTIONS(1275), + [anon_sym_sizeof] = ACTIONS(1277), + [anon_sym_typeof] = ACTIONS(1279), + [anon_sym___makeref] = ACTIONS(1281), + [anon_sym___reftype] = ACTIONS(1283), + [anon_sym___refvalue] = ACTIONS(1285), + [sym_null_literal] = ACTIONS(1287), + [anon_sym_SQUOTE] = ACTIONS(1289), + [sym_integer_literal] = ACTIONS(1287), + [sym_real_literal] = ACTIONS(1291), + [anon_sym_DQUOTE] = ACTIONS(1293), + [sym_verbatim_string_literal] = ACTIONS(1291), + [aux_sym_preproc_if_token1] = ACTIONS(1295), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -232229,90 +232115,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1213), - [sym_interpolation_verbatim_start] = ACTIONS(1215), - [sym_interpolation_raw_start] = ACTIONS(1217), - [sym_raw_string_start] = ACTIONS(1219), + [sym_interpolation_regular_start] = ACTIONS(1297), + [sym_interpolation_verbatim_start] = ACTIONS(1299), + [sym_interpolation_raw_start] = ACTIONS(1301), + [sym_raw_string_start] = ACTIONS(1303), }, [1127] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2610), - [sym__name] = STATE(5905), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2395), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(4706), - [sym_non_lvalue_expression] = STATE(3277), - [sym_lvalue_expression] = STATE(3402), - [sym__expression_statement_expression] = STATE(3228), - [sym_assignment_expression] = STATE(3289), - [sym_binary_expression] = STATE(3228), - [sym_postfix_unary_expression] = STATE(3289), - [sym_prefix_unary_expression] = STATE(3289), - [sym__pointer_indirection_expression] = STATE(2609), - [sym_query_expression] = STATE(3228), - [sym_from_clause] = STATE(6166), - [sym_conditional_expression] = STATE(3228), - [sym_conditional_access_expression] = STATE(3228), - [sym_as_expression] = STATE(3228), - [sym_is_expression] = STATE(3228), - [sym_is_pattern_expression] = STATE(3228), - [sym_cast_expression] = STATE(3228), - [sym_checked_expression] = STATE(3228), - [sym_invocation_expression] = STATE(3289), - [sym_switch_expression] = STATE(3228), - [sym_await_expression] = STATE(3289), - [sym_throw_expression] = STATE(3228), - [sym_element_access_expression] = STATE(2609), - [sym_interpolated_string_expression] = STATE(3228), - [sym_member_access_expression] = STATE(2609), - [sym_object_creation_expression] = STATE(3289), - [sym_parenthesized_expression] = STATE(3289), - [sym__parenthesized_lvalue_expression] = STATE(2609), - [sym_lambda_expression] = STATE(3228), - [sym__lambda_expression_init] = STATE(7415), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3228), - [sym_anonymous_method_expression] = STATE(3228), - [sym_anonymous_object_creation_expression] = STATE(3228), - [sym_implicit_array_creation_expression] = STATE(3228), - [sym_implicit_object_creation_expression] = STATE(3228), - [sym_implicit_stackalloc_expression] = STATE(3228), - [sym_initializer_expression] = STATE(3228), - [sym_default_expression] = STATE(3228), - [sym_with_expression] = STATE(3228), - [sym_sizeof_expression] = STATE(3228), - [sym_typeof_expression] = STATE(3228), - [sym_makeref_expression] = STATE(3228), - [sym_ref_expression] = STATE(3228), - [sym_reftype_expression] = STATE(3228), - [sym_refvalue_expression] = STATE(3228), - [sym_stackalloc_expression] = STATE(3228), - [sym_range_expression] = STATE(3228), - [sym_tuple_expression] = STATE(2609), - [sym_literal] = STATE(3228), - [sym_character_literal] = STATE(3278), - [sym_string_literal] = STATE(3278), - [sym_raw_string_literal] = STATE(3278), - [sym_boolean_literal] = STATE(3278), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3228), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2416), + [sym__name] = STATE(5897), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2367), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(5214), + [sym_non_lvalue_expression] = STATE(3040), + [sym_lvalue_expression] = STATE(3600), + [sym__expression_statement_expression] = STATE(3035), + [sym_assignment_expression] = STATE(3043), + [sym_binary_expression] = STATE(3035), + [sym_postfix_unary_expression] = STATE(3043), + [sym_prefix_unary_expression] = STATE(3043), + [sym__pointer_indirection_expression] = STATE(2415), + [sym_query_expression] = STATE(3035), + [sym_from_clause] = STATE(6156), + [sym_conditional_expression] = STATE(3035), + [sym_conditional_access_expression] = STATE(3035), + [sym_as_expression] = STATE(3035), + [sym_is_expression] = STATE(3035), + [sym_is_pattern_expression] = STATE(3035), + [sym_cast_expression] = STATE(3035), + [sym_checked_expression] = STATE(3035), + [sym_invocation_expression] = STATE(3043), + [sym_switch_expression] = STATE(3035), + [sym_await_expression] = STATE(3043), + [sym_throw_expression] = STATE(3035), + [sym_element_access_expression] = STATE(2415), + [sym_interpolated_string_expression] = STATE(3035), + [sym_member_access_expression] = STATE(2415), + [sym_object_creation_expression] = STATE(3043), + [sym_parenthesized_expression] = STATE(3043), + [sym__parenthesized_lvalue_expression] = STATE(2415), + [sym_lambda_expression] = STATE(3035), + [sym__lambda_expression_init] = STATE(7561), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3035), + [sym_anonymous_method_expression] = STATE(3035), + [sym_anonymous_object_creation_expression] = STATE(3035), + [sym_implicit_array_creation_expression] = STATE(3035), + [sym_implicit_object_creation_expression] = STATE(3035), + [sym_implicit_stackalloc_expression] = STATE(3035), + [sym_initializer_expression] = STATE(3035), + [sym_default_expression] = STATE(3035), + [sym_with_expression] = STATE(3035), + [sym_sizeof_expression] = STATE(3035), + [sym_typeof_expression] = STATE(3035), + [sym_makeref_expression] = STATE(3035), + [sym_ref_expression] = STATE(3035), + [sym_reftype_expression] = STATE(3035), + [sym_refvalue_expression] = STATE(3035), + [sym_stackalloc_expression] = STATE(3035), + [sym_range_expression] = STATE(3035), + [sym_tuple_expression] = STATE(2415), + [sym_literal] = STATE(3035), + [sym_character_literal] = STATE(3037), + [sym_string_literal] = STATE(3037), + [sym_raw_string_literal] = STATE(3037), + [sym_boolean_literal] = STATE(3037), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3035), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(1127), [sym_preproc_endregion] = STATE(1127), [sym_preproc_line] = STATE(1127), @@ -232322,47 +232208,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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3396), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3455), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1153), - [anon_sym_LPAREN] = ACTIONS(1915), - [anon_sym_ref] = ACTIONS(1917), - [anon_sym_LBRACE] = ACTIONS(1159), - [anon_sym_delegate] = ACTIONS(1161), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1239), + [anon_sym_LPAREN] = ACTIONS(2217), + [anon_sym_ref] = ACTIONS(2219), + [anon_sym_LBRACE] = ACTIONS(1245), + [anon_sym_delegate] = ACTIONS(1247), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1919), + [anon_sym_new] = ACTIONS(2221), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1167), - [anon_sym_BANG] = ACTIONS(1923), - [anon_sym_TILDE] = ACTIONS(1923), - [anon_sym_PLUS_PLUS] = ACTIONS(1923), - [anon_sym_DASH_DASH] = ACTIONS(1923), - [anon_sym_true] = ACTIONS(1173), - [anon_sym_false] = ACTIONS(1173), - [anon_sym_PLUS] = ACTIONS(1921), - [anon_sym_DASH] = ACTIONS(1921), - [anon_sym_STAR] = ACTIONS(1925), - [anon_sym_CARET] = ACTIONS(1923), - [anon_sym_AMP] = ACTIONS(1923), - [anon_sym_this] = ACTIONS(1177), + [anon_sym_checked] = ACTIONS(1251), + [anon_sym_BANG] = ACTIONS(2225), + [anon_sym_TILDE] = ACTIONS(2225), + [anon_sym_PLUS_PLUS] = ACTIONS(2225), + [anon_sym_DASH_DASH] = ACTIONS(2225), + [anon_sym_true] = ACTIONS(1257), + [anon_sym_false] = ACTIONS(1257), + [anon_sym_PLUS] = ACTIONS(2223), + [anon_sym_DASH] = ACTIONS(2223), + [anon_sym_STAR] = ACTIONS(2227), + [anon_sym_CARET] = ACTIONS(2225), + [anon_sym_AMP] = ACTIONS(2225), + [anon_sym_this] = ACTIONS(1261), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1179), + [anon_sym_base] = ACTIONS(1263), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1181), - [anon_sym_unchecked] = ACTIONS(1167), + [sym_predefined_type] = ACTIONS(1265), + [anon_sym_unchecked] = ACTIONS(1251), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1183), - [anon_sym_throw] = ACTIONS(1927), + [anon_sym_default] = ACTIONS(1267), + [anon_sym_throw] = ACTIONS(2229), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1929), - [anon_sym_DOT_DOT] = ACTIONS(1931), + [anon_sym_await] = ACTIONS(2231), + [anon_sym_DOT_DOT] = ACTIONS(2233), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -232375,19 +232261,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1191), - [anon_sym_sizeof] = ACTIONS(1193), - [anon_sym_typeof] = ACTIONS(1195), - [anon_sym___makeref] = ACTIONS(1197), - [anon_sym___reftype] = ACTIONS(1199), - [anon_sym___refvalue] = ACTIONS(1201), - [sym_null_literal] = ACTIONS(1203), - [anon_sym_SQUOTE] = ACTIONS(1205), - [sym_integer_literal] = ACTIONS(1203), - [sym_real_literal] = ACTIONS(1207), - [anon_sym_DQUOTE] = ACTIONS(1209), - [sym_verbatim_string_literal] = ACTIONS(1207), - [aux_sym_preproc_if_token1] = ACTIONS(1211), + [anon_sym_stackalloc] = ACTIONS(1275), + [anon_sym_sizeof] = ACTIONS(1277), + [anon_sym_typeof] = ACTIONS(1279), + [anon_sym___makeref] = ACTIONS(1281), + [anon_sym___reftype] = ACTIONS(1283), + [anon_sym___refvalue] = ACTIONS(1285), + [sym_null_literal] = ACTIONS(1287), + [anon_sym_SQUOTE] = ACTIONS(1289), + [sym_integer_literal] = ACTIONS(1287), + [sym_real_literal] = ACTIONS(1291), + [anon_sym_DQUOTE] = ACTIONS(1293), + [sym_verbatim_string_literal] = ACTIONS(1291), + [aux_sym_preproc_if_token1] = ACTIONS(1295), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -232398,90 +232284,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1213), - [sym_interpolation_verbatim_start] = ACTIONS(1215), - [sym_interpolation_raw_start] = ACTIONS(1217), - [sym_raw_string_start] = ACTIONS(1219), + [sym_interpolation_regular_start] = ACTIONS(1297), + [sym_interpolation_verbatim_start] = ACTIONS(1299), + [sym_interpolation_raw_start] = ACTIONS(1301), + [sym_raw_string_start] = ACTIONS(1303), }, [1128] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2610), - [sym__name] = STATE(5905), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2395), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(4709), - [sym_non_lvalue_expression] = STATE(3277), - [sym_lvalue_expression] = STATE(3402), - [sym__expression_statement_expression] = STATE(3228), - [sym_assignment_expression] = STATE(3289), - [sym_binary_expression] = STATE(3228), - [sym_postfix_unary_expression] = STATE(3289), - [sym_prefix_unary_expression] = STATE(3289), - [sym__pointer_indirection_expression] = STATE(2609), - [sym_query_expression] = STATE(3228), - [sym_from_clause] = STATE(6166), - [sym_conditional_expression] = STATE(3228), - [sym_conditional_access_expression] = STATE(3228), - [sym_as_expression] = STATE(3228), - [sym_is_expression] = STATE(3228), - [sym_is_pattern_expression] = STATE(3228), - [sym_cast_expression] = STATE(3228), - [sym_checked_expression] = STATE(3228), - [sym_invocation_expression] = STATE(3289), - [sym_switch_expression] = STATE(3228), - [sym_await_expression] = STATE(3289), - [sym_throw_expression] = STATE(3228), - [sym_element_access_expression] = STATE(2609), - [sym_interpolated_string_expression] = STATE(3228), - [sym_member_access_expression] = STATE(2609), - [sym_object_creation_expression] = STATE(3289), - [sym_parenthesized_expression] = STATE(3289), - [sym__parenthesized_lvalue_expression] = STATE(2609), - [sym_lambda_expression] = STATE(3228), - [sym__lambda_expression_init] = STATE(7415), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3228), - [sym_anonymous_method_expression] = STATE(3228), - [sym_anonymous_object_creation_expression] = STATE(3228), - [sym_implicit_array_creation_expression] = STATE(3228), - [sym_implicit_object_creation_expression] = STATE(3228), - [sym_implicit_stackalloc_expression] = STATE(3228), - [sym_initializer_expression] = STATE(3228), - [sym_default_expression] = STATE(3228), - [sym_with_expression] = STATE(3228), - [sym_sizeof_expression] = STATE(3228), - [sym_typeof_expression] = STATE(3228), - [sym_makeref_expression] = STATE(3228), - [sym_ref_expression] = STATE(3228), - [sym_reftype_expression] = STATE(3228), - [sym_refvalue_expression] = STATE(3228), - [sym_stackalloc_expression] = STATE(3228), - [sym_range_expression] = STATE(3228), - [sym_tuple_expression] = STATE(2609), - [sym_literal] = STATE(3228), - [sym_character_literal] = STATE(3278), - [sym_string_literal] = STATE(3278), - [sym_raw_string_literal] = STATE(3278), - [sym_boolean_literal] = STATE(3278), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3228), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2416), + [sym__name] = STATE(5897), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2367), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(5215), + [sym_non_lvalue_expression] = STATE(3040), + [sym_lvalue_expression] = STATE(3600), + [sym__expression_statement_expression] = STATE(3035), + [sym_assignment_expression] = STATE(3043), + [sym_binary_expression] = STATE(3035), + [sym_postfix_unary_expression] = STATE(3043), + [sym_prefix_unary_expression] = STATE(3043), + [sym__pointer_indirection_expression] = STATE(2415), + [sym_query_expression] = STATE(3035), + [sym_from_clause] = STATE(6156), + [sym_conditional_expression] = STATE(3035), + [sym_conditional_access_expression] = STATE(3035), + [sym_as_expression] = STATE(3035), + [sym_is_expression] = STATE(3035), + [sym_is_pattern_expression] = STATE(3035), + [sym_cast_expression] = STATE(3035), + [sym_checked_expression] = STATE(3035), + [sym_invocation_expression] = STATE(3043), + [sym_switch_expression] = STATE(3035), + [sym_await_expression] = STATE(3043), + [sym_throw_expression] = STATE(3035), + [sym_element_access_expression] = STATE(2415), + [sym_interpolated_string_expression] = STATE(3035), + [sym_member_access_expression] = STATE(2415), + [sym_object_creation_expression] = STATE(3043), + [sym_parenthesized_expression] = STATE(3043), + [sym__parenthesized_lvalue_expression] = STATE(2415), + [sym_lambda_expression] = STATE(3035), + [sym__lambda_expression_init] = STATE(7561), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3035), + [sym_anonymous_method_expression] = STATE(3035), + [sym_anonymous_object_creation_expression] = STATE(3035), + [sym_implicit_array_creation_expression] = STATE(3035), + [sym_implicit_object_creation_expression] = STATE(3035), + [sym_implicit_stackalloc_expression] = STATE(3035), + [sym_initializer_expression] = STATE(3035), + [sym_default_expression] = STATE(3035), + [sym_with_expression] = STATE(3035), + [sym_sizeof_expression] = STATE(3035), + [sym_typeof_expression] = STATE(3035), + [sym_makeref_expression] = STATE(3035), + [sym_ref_expression] = STATE(3035), + [sym_reftype_expression] = STATE(3035), + [sym_refvalue_expression] = STATE(3035), + [sym_stackalloc_expression] = STATE(3035), + [sym_range_expression] = STATE(3035), + [sym_tuple_expression] = STATE(2415), + [sym_literal] = STATE(3035), + [sym_character_literal] = STATE(3037), + [sym_string_literal] = STATE(3037), + [sym_raw_string_literal] = STATE(3037), + [sym_boolean_literal] = STATE(3037), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3035), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(1128), [sym_preproc_endregion] = STATE(1128), [sym_preproc_line] = STATE(1128), @@ -232491,47 +232377,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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3396), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3455), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1153), - [anon_sym_LPAREN] = ACTIONS(1915), - [anon_sym_ref] = ACTIONS(1917), - [anon_sym_LBRACE] = ACTIONS(1159), - [anon_sym_delegate] = ACTIONS(1161), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1239), + [anon_sym_LPAREN] = ACTIONS(2217), + [anon_sym_ref] = ACTIONS(2219), + [anon_sym_LBRACE] = ACTIONS(1245), + [anon_sym_delegate] = ACTIONS(1247), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1919), + [anon_sym_new] = ACTIONS(2221), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1167), - [anon_sym_BANG] = ACTIONS(1923), - [anon_sym_TILDE] = ACTIONS(1923), - [anon_sym_PLUS_PLUS] = ACTIONS(1923), - [anon_sym_DASH_DASH] = ACTIONS(1923), - [anon_sym_true] = ACTIONS(1173), - [anon_sym_false] = ACTIONS(1173), - [anon_sym_PLUS] = ACTIONS(1921), - [anon_sym_DASH] = ACTIONS(1921), - [anon_sym_STAR] = ACTIONS(1925), - [anon_sym_CARET] = ACTIONS(1923), - [anon_sym_AMP] = ACTIONS(1923), - [anon_sym_this] = ACTIONS(1177), + [anon_sym_checked] = ACTIONS(1251), + [anon_sym_BANG] = ACTIONS(2225), + [anon_sym_TILDE] = ACTIONS(2225), + [anon_sym_PLUS_PLUS] = ACTIONS(2225), + [anon_sym_DASH_DASH] = ACTIONS(2225), + [anon_sym_true] = ACTIONS(1257), + [anon_sym_false] = ACTIONS(1257), + [anon_sym_PLUS] = ACTIONS(2223), + [anon_sym_DASH] = ACTIONS(2223), + [anon_sym_STAR] = ACTIONS(2227), + [anon_sym_CARET] = ACTIONS(2225), + [anon_sym_AMP] = ACTIONS(2225), + [anon_sym_this] = ACTIONS(1261), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1179), + [anon_sym_base] = ACTIONS(1263), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1181), - [anon_sym_unchecked] = ACTIONS(1167), + [sym_predefined_type] = ACTIONS(1265), + [anon_sym_unchecked] = ACTIONS(1251), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1183), - [anon_sym_throw] = ACTIONS(1927), + [anon_sym_default] = ACTIONS(1267), + [anon_sym_throw] = ACTIONS(2229), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1929), - [anon_sym_DOT_DOT] = ACTIONS(1931), + [anon_sym_await] = ACTIONS(2231), + [anon_sym_DOT_DOT] = ACTIONS(2233), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -232544,19 +232430,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1191), - [anon_sym_sizeof] = ACTIONS(1193), - [anon_sym_typeof] = ACTIONS(1195), - [anon_sym___makeref] = ACTIONS(1197), - [anon_sym___reftype] = ACTIONS(1199), - [anon_sym___refvalue] = ACTIONS(1201), - [sym_null_literal] = ACTIONS(1203), - [anon_sym_SQUOTE] = ACTIONS(1205), - [sym_integer_literal] = ACTIONS(1203), - [sym_real_literal] = ACTIONS(1207), - [anon_sym_DQUOTE] = ACTIONS(1209), - [sym_verbatim_string_literal] = ACTIONS(1207), - [aux_sym_preproc_if_token1] = ACTIONS(1211), + [anon_sym_stackalloc] = ACTIONS(1275), + [anon_sym_sizeof] = ACTIONS(1277), + [anon_sym_typeof] = ACTIONS(1279), + [anon_sym___makeref] = ACTIONS(1281), + [anon_sym___reftype] = ACTIONS(1283), + [anon_sym___refvalue] = ACTIONS(1285), + [sym_null_literal] = ACTIONS(1287), + [anon_sym_SQUOTE] = ACTIONS(1289), + [sym_integer_literal] = ACTIONS(1287), + [sym_real_literal] = ACTIONS(1291), + [anon_sym_DQUOTE] = ACTIONS(1293), + [sym_verbatim_string_literal] = ACTIONS(1291), + [aux_sym_preproc_if_token1] = ACTIONS(1295), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -232567,90 +232453,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1213), - [sym_interpolation_verbatim_start] = ACTIONS(1215), - [sym_interpolation_raw_start] = ACTIONS(1217), - [sym_raw_string_start] = ACTIONS(1219), + [sym_interpolation_regular_start] = ACTIONS(1297), + [sym_interpolation_verbatim_start] = ACTIONS(1299), + [sym_interpolation_raw_start] = ACTIONS(1301), + [sym_raw_string_start] = ACTIONS(1303), }, [1129] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2610), - [sym__name] = STATE(5905), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2395), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(4716), - [sym_non_lvalue_expression] = STATE(3277), - [sym_lvalue_expression] = STATE(3402), - [sym__expression_statement_expression] = STATE(3228), - [sym_assignment_expression] = STATE(3289), - [sym_binary_expression] = STATE(3228), - [sym_postfix_unary_expression] = STATE(3289), - [sym_prefix_unary_expression] = STATE(3289), - [sym__pointer_indirection_expression] = STATE(2609), - [sym_query_expression] = STATE(3228), - [sym_from_clause] = STATE(6166), - [sym_conditional_expression] = STATE(3228), - [sym_conditional_access_expression] = STATE(3228), - [sym_as_expression] = STATE(3228), - [sym_is_expression] = STATE(3228), - [sym_is_pattern_expression] = STATE(3228), - [sym_cast_expression] = STATE(3228), - [sym_checked_expression] = STATE(3228), - [sym_invocation_expression] = STATE(3289), - [sym_switch_expression] = STATE(3228), - [sym_await_expression] = STATE(3289), - [sym_throw_expression] = STATE(3228), - [sym_element_access_expression] = STATE(2609), - [sym_interpolated_string_expression] = STATE(3228), - [sym_member_access_expression] = STATE(2609), - [sym_object_creation_expression] = STATE(3289), - [sym_parenthesized_expression] = STATE(3289), - [sym__parenthesized_lvalue_expression] = STATE(2609), - [sym_lambda_expression] = STATE(3228), - [sym__lambda_expression_init] = STATE(7415), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3228), - [sym_anonymous_method_expression] = STATE(3228), - [sym_anonymous_object_creation_expression] = STATE(3228), - [sym_implicit_array_creation_expression] = STATE(3228), - [sym_implicit_object_creation_expression] = STATE(3228), - [sym_implicit_stackalloc_expression] = STATE(3228), - [sym_initializer_expression] = STATE(3228), - [sym_default_expression] = STATE(3228), - [sym_with_expression] = STATE(3228), - [sym_sizeof_expression] = STATE(3228), - [sym_typeof_expression] = STATE(3228), - [sym_makeref_expression] = STATE(3228), - [sym_ref_expression] = STATE(3228), - [sym_reftype_expression] = STATE(3228), - [sym_refvalue_expression] = STATE(3228), - [sym_stackalloc_expression] = STATE(3228), - [sym_range_expression] = STATE(3228), - [sym_tuple_expression] = STATE(2609), - [sym_literal] = STATE(3228), - [sym_character_literal] = STATE(3278), - [sym_string_literal] = STATE(3278), - [sym_raw_string_literal] = STATE(3278), - [sym_boolean_literal] = STATE(3278), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3228), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2416), + [sym__name] = STATE(5897), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2367), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(5216), + [sym_non_lvalue_expression] = STATE(3040), + [sym_lvalue_expression] = STATE(3600), + [sym__expression_statement_expression] = STATE(3035), + [sym_assignment_expression] = STATE(3043), + [sym_binary_expression] = STATE(3035), + [sym_postfix_unary_expression] = STATE(3043), + [sym_prefix_unary_expression] = STATE(3043), + [sym__pointer_indirection_expression] = STATE(2415), + [sym_query_expression] = STATE(3035), + [sym_from_clause] = STATE(6156), + [sym_conditional_expression] = STATE(3035), + [sym_conditional_access_expression] = STATE(3035), + [sym_as_expression] = STATE(3035), + [sym_is_expression] = STATE(3035), + [sym_is_pattern_expression] = STATE(3035), + [sym_cast_expression] = STATE(3035), + [sym_checked_expression] = STATE(3035), + [sym_invocation_expression] = STATE(3043), + [sym_switch_expression] = STATE(3035), + [sym_await_expression] = STATE(3043), + [sym_throw_expression] = STATE(3035), + [sym_element_access_expression] = STATE(2415), + [sym_interpolated_string_expression] = STATE(3035), + [sym_member_access_expression] = STATE(2415), + [sym_object_creation_expression] = STATE(3043), + [sym_parenthesized_expression] = STATE(3043), + [sym__parenthesized_lvalue_expression] = STATE(2415), + [sym_lambda_expression] = STATE(3035), + [sym__lambda_expression_init] = STATE(7561), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3035), + [sym_anonymous_method_expression] = STATE(3035), + [sym_anonymous_object_creation_expression] = STATE(3035), + [sym_implicit_array_creation_expression] = STATE(3035), + [sym_implicit_object_creation_expression] = STATE(3035), + [sym_implicit_stackalloc_expression] = STATE(3035), + [sym_initializer_expression] = STATE(3035), + [sym_default_expression] = STATE(3035), + [sym_with_expression] = STATE(3035), + [sym_sizeof_expression] = STATE(3035), + [sym_typeof_expression] = STATE(3035), + [sym_makeref_expression] = STATE(3035), + [sym_ref_expression] = STATE(3035), + [sym_reftype_expression] = STATE(3035), + [sym_refvalue_expression] = STATE(3035), + [sym_stackalloc_expression] = STATE(3035), + [sym_range_expression] = STATE(3035), + [sym_tuple_expression] = STATE(2415), + [sym_literal] = STATE(3035), + [sym_character_literal] = STATE(3037), + [sym_string_literal] = STATE(3037), + [sym_raw_string_literal] = STATE(3037), + [sym_boolean_literal] = STATE(3037), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3035), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(1129), [sym_preproc_endregion] = STATE(1129), [sym_preproc_line] = STATE(1129), @@ -232660,47 +232546,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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3396), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3455), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1153), - [anon_sym_LPAREN] = ACTIONS(1915), - [anon_sym_ref] = ACTIONS(1917), - [anon_sym_LBRACE] = ACTIONS(1159), - [anon_sym_delegate] = ACTIONS(1161), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1239), + [anon_sym_LPAREN] = ACTIONS(2217), + [anon_sym_ref] = ACTIONS(2219), + [anon_sym_LBRACE] = ACTIONS(1245), + [anon_sym_delegate] = ACTIONS(1247), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1919), + [anon_sym_new] = ACTIONS(2221), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1167), - [anon_sym_BANG] = ACTIONS(1923), - [anon_sym_TILDE] = ACTIONS(1923), - [anon_sym_PLUS_PLUS] = ACTIONS(1923), - [anon_sym_DASH_DASH] = ACTIONS(1923), - [anon_sym_true] = ACTIONS(1173), - [anon_sym_false] = ACTIONS(1173), - [anon_sym_PLUS] = ACTIONS(1921), - [anon_sym_DASH] = ACTIONS(1921), - [anon_sym_STAR] = ACTIONS(1925), - [anon_sym_CARET] = ACTIONS(1923), - [anon_sym_AMP] = ACTIONS(1923), - [anon_sym_this] = ACTIONS(1177), + [anon_sym_checked] = ACTIONS(1251), + [anon_sym_BANG] = ACTIONS(2225), + [anon_sym_TILDE] = ACTIONS(2225), + [anon_sym_PLUS_PLUS] = ACTIONS(2225), + [anon_sym_DASH_DASH] = ACTIONS(2225), + [anon_sym_true] = ACTIONS(1257), + [anon_sym_false] = ACTIONS(1257), + [anon_sym_PLUS] = ACTIONS(2223), + [anon_sym_DASH] = ACTIONS(2223), + [anon_sym_STAR] = ACTIONS(2227), + [anon_sym_CARET] = ACTIONS(2225), + [anon_sym_AMP] = ACTIONS(2225), + [anon_sym_this] = ACTIONS(1261), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1179), + [anon_sym_base] = ACTIONS(1263), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1181), - [anon_sym_unchecked] = ACTIONS(1167), + [sym_predefined_type] = ACTIONS(1265), + [anon_sym_unchecked] = ACTIONS(1251), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1183), - [anon_sym_throw] = ACTIONS(1927), + [anon_sym_default] = ACTIONS(1267), + [anon_sym_throw] = ACTIONS(2229), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1929), - [anon_sym_DOT_DOT] = ACTIONS(1931), + [anon_sym_await] = ACTIONS(2231), + [anon_sym_DOT_DOT] = ACTIONS(2233), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -232713,19 +232599,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1191), - [anon_sym_sizeof] = ACTIONS(1193), - [anon_sym_typeof] = ACTIONS(1195), - [anon_sym___makeref] = ACTIONS(1197), - [anon_sym___reftype] = ACTIONS(1199), - [anon_sym___refvalue] = ACTIONS(1201), - [sym_null_literal] = ACTIONS(1203), - [anon_sym_SQUOTE] = ACTIONS(1205), - [sym_integer_literal] = ACTIONS(1203), - [sym_real_literal] = ACTIONS(1207), - [anon_sym_DQUOTE] = ACTIONS(1209), - [sym_verbatim_string_literal] = ACTIONS(1207), - [aux_sym_preproc_if_token1] = ACTIONS(1211), + [anon_sym_stackalloc] = ACTIONS(1275), + [anon_sym_sizeof] = ACTIONS(1277), + [anon_sym_typeof] = ACTIONS(1279), + [anon_sym___makeref] = ACTIONS(1281), + [anon_sym___reftype] = ACTIONS(1283), + [anon_sym___refvalue] = ACTIONS(1285), + [sym_null_literal] = ACTIONS(1287), + [anon_sym_SQUOTE] = ACTIONS(1289), + [sym_integer_literal] = ACTIONS(1287), + [sym_real_literal] = ACTIONS(1291), + [anon_sym_DQUOTE] = ACTIONS(1293), + [sym_verbatim_string_literal] = ACTIONS(1291), + [aux_sym_preproc_if_token1] = ACTIONS(1295), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -232736,90 +232622,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1213), - [sym_interpolation_verbatim_start] = ACTIONS(1215), - [sym_interpolation_raw_start] = ACTIONS(1217), - [sym_raw_string_start] = ACTIONS(1219), + [sym_interpolation_regular_start] = ACTIONS(1297), + [sym_interpolation_verbatim_start] = ACTIONS(1299), + [sym_interpolation_raw_start] = ACTIONS(1301), + [sym_raw_string_start] = ACTIONS(1303), }, [1130] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2610), - [sym__name] = STATE(5905), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2395), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(4692), - [sym_non_lvalue_expression] = STATE(3277), - [sym_lvalue_expression] = STATE(3402), - [sym__expression_statement_expression] = STATE(3228), - [sym_assignment_expression] = STATE(3289), - [sym_binary_expression] = STATE(3228), - [sym_postfix_unary_expression] = STATE(3289), - [sym_prefix_unary_expression] = STATE(3289), - [sym__pointer_indirection_expression] = STATE(2609), - [sym_query_expression] = STATE(3228), - [sym_from_clause] = STATE(6166), - [sym_conditional_expression] = STATE(3228), - [sym_conditional_access_expression] = STATE(3228), - [sym_as_expression] = STATE(3228), - [sym_is_expression] = STATE(3228), - [sym_is_pattern_expression] = STATE(3228), - [sym_cast_expression] = STATE(3228), - [sym_checked_expression] = STATE(3228), - [sym_invocation_expression] = STATE(3289), - [sym_switch_expression] = STATE(3228), - [sym_await_expression] = STATE(3289), - [sym_throw_expression] = STATE(3228), - [sym_element_access_expression] = STATE(2609), - [sym_interpolated_string_expression] = STATE(3228), - [sym_member_access_expression] = STATE(2609), - [sym_object_creation_expression] = STATE(3289), - [sym_parenthesized_expression] = STATE(3289), - [sym__parenthesized_lvalue_expression] = STATE(2609), - [sym_lambda_expression] = STATE(3228), - [sym__lambda_expression_init] = STATE(7415), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3228), - [sym_anonymous_method_expression] = STATE(3228), - [sym_anonymous_object_creation_expression] = STATE(3228), - [sym_implicit_array_creation_expression] = STATE(3228), - [sym_implicit_object_creation_expression] = STATE(3228), - [sym_implicit_stackalloc_expression] = STATE(3228), - [sym_initializer_expression] = STATE(3228), - [sym_default_expression] = STATE(3228), - [sym_with_expression] = STATE(3228), - [sym_sizeof_expression] = STATE(3228), - [sym_typeof_expression] = STATE(3228), - [sym_makeref_expression] = STATE(3228), - [sym_ref_expression] = STATE(3228), - [sym_reftype_expression] = STATE(3228), - [sym_refvalue_expression] = STATE(3228), - [sym_stackalloc_expression] = STATE(3228), - [sym_range_expression] = STATE(3228), - [sym_tuple_expression] = STATE(2609), - [sym_literal] = STATE(3228), - [sym_character_literal] = STATE(3278), - [sym_string_literal] = STATE(3278), - [sym_raw_string_literal] = STATE(3278), - [sym_boolean_literal] = STATE(3278), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3228), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2416), + [sym__name] = STATE(5897), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2367), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(5217), + [sym_non_lvalue_expression] = STATE(3040), + [sym_lvalue_expression] = STATE(3600), + [sym__expression_statement_expression] = STATE(3035), + [sym_assignment_expression] = STATE(3043), + [sym_binary_expression] = STATE(3035), + [sym_postfix_unary_expression] = STATE(3043), + [sym_prefix_unary_expression] = STATE(3043), + [sym__pointer_indirection_expression] = STATE(2415), + [sym_query_expression] = STATE(3035), + [sym_from_clause] = STATE(6156), + [sym_conditional_expression] = STATE(3035), + [sym_conditional_access_expression] = STATE(3035), + [sym_as_expression] = STATE(3035), + [sym_is_expression] = STATE(3035), + [sym_is_pattern_expression] = STATE(3035), + [sym_cast_expression] = STATE(3035), + [sym_checked_expression] = STATE(3035), + [sym_invocation_expression] = STATE(3043), + [sym_switch_expression] = STATE(3035), + [sym_await_expression] = STATE(3043), + [sym_throw_expression] = STATE(3035), + [sym_element_access_expression] = STATE(2415), + [sym_interpolated_string_expression] = STATE(3035), + [sym_member_access_expression] = STATE(2415), + [sym_object_creation_expression] = STATE(3043), + [sym_parenthesized_expression] = STATE(3043), + [sym__parenthesized_lvalue_expression] = STATE(2415), + [sym_lambda_expression] = STATE(3035), + [sym__lambda_expression_init] = STATE(7561), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3035), + [sym_anonymous_method_expression] = STATE(3035), + [sym_anonymous_object_creation_expression] = STATE(3035), + [sym_implicit_array_creation_expression] = STATE(3035), + [sym_implicit_object_creation_expression] = STATE(3035), + [sym_implicit_stackalloc_expression] = STATE(3035), + [sym_initializer_expression] = STATE(3035), + [sym_default_expression] = STATE(3035), + [sym_with_expression] = STATE(3035), + [sym_sizeof_expression] = STATE(3035), + [sym_typeof_expression] = STATE(3035), + [sym_makeref_expression] = STATE(3035), + [sym_ref_expression] = STATE(3035), + [sym_reftype_expression] = STATE(3035), + [sym_refvalue_expression] = STATE(3035), + [sym_stackalloc_expression] = STATE(3035), + [sym_range_expression] = STATE(3035), + [sym_tuple_expression] = STATE(2415), + [sym_literal] = STATE(3035), + [sym_character_literal] = STATE(3037), + [sym_string_literal] = STATE(3037), + [sym_raw_string_literal] = STATE(3037), + [sym_boolean_literal] = STATE(3037), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3035), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(1130), [sym_preproc_endregion] = STATE(1130), [sym_preproc_line] = STATE(1130), @@ -232829,47 +232715,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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3396), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3455), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1153), - [anon_sym_LPAREN] = ACTIONS(1915), - [anon_sym_ref] = ACTIONS(1917), - [anon_sym_LBRACE] = ACTIONS(1159), - [anon_sym_delegate] = ACTIONS(1161), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1239), + [anon_sym_LPAREN] = ACTIONS(2217), + [anon_sym_ref] = ACTIONS(2219), + [anon_sym_LBRACE] = ACTIONS(1245), + [anon_sym_delegate] = ACTIONS(1247), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1919), + [anon_sym_new] = ACTIONS(2221), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1167), - [anon_sym_BANG] = ACTIONS(1923), - [anon_sym_TILDE] = ACTIONS(1923), - [anon_sym_PLUS_PLUS] = ACTIONS(1923), - [anon_sym_DASH_DASH] = ACTIONS(1923), - [anon_sym_true] = ACTIONS(1173), - [anon_sym_false] = ACTIONS(1173), - [anon_sym_PLUS] = ACTIONS(1921), - [anon_sym_DASH] = ACTIONS(1921), - [anon_sym_STAR] = ACTIONS(1925), - [anon_sym_CARET] = ACTIONS(1923), - [anon_sym_AMP] = ACTIONS(1923), - [anon_sym_this] = ACTIONS(1177), + [anon_sym_checked] = ACTIONS(1251), + [anon_sym_BANG] = ACTIONS(2225), + [anon_sym_TILDE] = ACTIONS(2225), + [anon_sym_PLUS_PLUS] = ACTIONS(2225), + [anon_sym_DASH_DASH] = ACTIONS(2225), + [anon_sym_true] = ACTIONS(1257), + [anon_sym_false] = ACTIONS(1257), + [anon_sym_PLUS] = ACTIONS(2223), + [anon_sym_DASH] = ACTIONS(2223), + [anon_sym_STAR] = ACTIONS(2227), + [anon_sym_CARET] = ACTIONS(2225), + [anon_sym_AMP] = ACTIONS(2225), + [anon_sym_this] = ACTIONS(1261), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1179), + [anon_sym_base] = ACTIONS(1263), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1181), - [anon_sym_unchecked] = ACTIONS(1167), + [sym_predefined_type] = ACTIONS(1265), + [anon_sym_unchecked] = ACTIONS(1251), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1183), - [anon_sym_throw] = ACTIONS(1927), + [anon_sym_default] = ACTIONS(1267), + [anon_sym_throw] = ACTIONS(2229), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1929), - [anon_sym_DOT_DOT] = ACTIONS(1931), + [anon_sym_await] = ACTIONS(2231), + [anon_sym_DOT_DOT] = ACTIONS(2233), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -232882,19 +232768,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1191), - [anon_sym_sizeof] = ACTIONS(1193), - [anon_sym_typeof] = ACTIONS(1195), - [anon_sym___makeref] = ACTIONS(1197), - [anon_sym___reftype] = ACTIONS(1199), - [anon_sym___refvalue] = ACTIONS(1201), - [sym_null_literal] = ACTIONS(1203), - [anon_sym_SQUOTE] = ACTIONS(1205), - [sym_integer_literal] = ACTIONS(1203), - [sym_real_literal] = ACTIONS(1207), - [anon_sym_DQUOTE] = ACTIONS(1209), - [sym_verbatim_string_literal] = ACTIONS(1207), - [aux_sym_preproc_if_token1] = ACTIONS(1211), + [anon_sym_stackalloc] = ACTIONS(1275), + [anon_sym_sizeof] = ACTIONS(1277), + [anon_sym_typeof] = ACTIONS(1279), + [anon_sym___makeref] = ACTIONS(1281), + [anon_sym___reftype] = ACTIONS(1283), + [anon_sym___refvalue] = ACTIONS(1285), + [sym_null_literal] = ACTIONS(1287), + [anon_sym_SQUOTE] = ACTIONS(1289), + [sym_integer_literal] = ACTIONS(1287), + [sym_real_literal] = ACTIONS(1291), + [anon_sym_DQUOTE] = ACTIONS(1293), + [sym_verbatim_string_literal] = ACTIONS(1291), + [aux_sym_preproc_if_token1] = ACTIONS(1295), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -232905,90 +232791,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1213), - [sym_interpolation_verbatim_start] = ACTIONS(1215), - [sym_interpolation_raw_start] = ACTIONS(1217), - [sym_raw_string_start] = ACTIONS(1219), + [sym_interpolation_regular_start] = ACTIONS(1297), + [sym_interpolation_verbatim_start] = ACTIONS(1299), + [sym_interpolation_raw_start] = ACTIONS(1301), + [sym_raw_string_start] = ACTIONS(1303), }, [1131] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2610), - [sym__name] = STATE(5905), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2395), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(4693), - [sym_non_lvalue_expression] = STATE(3277), - [sym_lvalue_expression] = STATE(3402), - [sym__expression_statement_expression] = STATE(3228), - [sym_assignment_expression] = STATE(3289), - [sym_binary_expression] = STATE(3228), - [sym_postfix_unary_expression] = STATE(3289), - [sym_prefix_unary_expression] = STATE(3289), - [sym__pointer_indirection_expression] = STATE(2609), - [sym_query_expression] = STATE(3228), - [sym_from_clause] = STATE(6166), - [sym_conditional_expression] = STATE(3228), - [sym_conditional_access_expression] = STATE(3228), - [sym_as_expression] = STATE(3228), - [sym_is_expression] = STATE(3228), - [sym_is_pattern_expression] = STATE(3228), - [sym_cast_expression] = STATE(3228), - [sym_checked_expression] = STATE(3228), - [sym_invocation_expression] = STATE(3289), - [sym_switch_expression] = STATE(3228), - [sym_await_expression] = STATE(3289), - [sym_throw_expression] = STATE(3228), - [sym_element_access_expression] = STATE(2609), - [sym_interpolated_string_expression] = STATE(3228), - [sym_member_access_expression] = STATE(2609), - [sym_object_creation_expression] = STATE(3289), - [sym_parenthesized_expression] = STATE(3289), - [sym__parenthesized_lvalue_expression] = STATE(2609), - [sym_lambda_expression] = STATE(3228), - [sym__lambda_expression_init] = STATE(7415), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3228), - [sym_anonymous_method_expression] = STATE(3228), - [sym_anonymous_object_creation_expression] = STATE(3228), - [sym_implicit_array_creation_expression] = STATE(3228), - [sym_implicit_object_creation_expression] = STATE(3228), - [sym_implicit_stackalloc_expression] = STATE(3228), - [sym_initializer_expression] = STATE(3228), - [sym_default_expression] = STATE(3228), - [sym_with_expression] = STATE(3228), - [sym_sizeof_expression] = STATE(3228), - [sym_typeof_expression] = STATE(3228), - [sym_makeref_expression] = STATE(3228), - [sym_ref_expression] = STATE(3228), - [sym_reftype_expression] = STATE(3228), - [sym_refvalue_expression] = STATE(3228), - [sym_stackalloc_expression] = STATE(3228), - [sym_range_expression] = STATE(3228), - [sym_tuple_expression] = STATE(2609), - [sym_literal] = STATE(3228), - [sym_character_literal] = STATE(3278), - [sym_string_literal] = STATE(3278), - [sym_raw_string_literal] = STATE(3278), - [sym_boolean_literal] = STATE(3278), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3228), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2416), + [sym__name] = STATE(5897), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2367), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(5218), + [sym_non_lvalue_expression] = STATE(3040), + [sym_lvalue_expression] = STATE(3600), + [sym__expression_statement_expression] = STATE(3035), + [sym_assignment_expression] = STATE(3043), + [sym_binary_expression] = STATE(3035), + [sym_postfix_unary_expression] = STATE(3043), + [sym_prefix_unary_expression] = STATE(3043), + [sym__pointer_indirection_expression] = STATE(2415), + [sym_query_expression] = STATE(3035), + [sym_from_clause] = STATE(6156), + [sym_conditional_expression] = STATE(3035), + [sym_conditional_access_expression] = STATE(3035), + [sym_as_expression] = STATE(3035), + [sym_is_expression] = STATE(3035), + [sym_is_pattern_expression] = STATE(3035), + [sym_cast_expression] = STATE(3035), + [sym_checked_expression] = STATE(3035), + [sym_invocation_expression] = STATE(3043), + [sym_switch_expression] = STATE(3035), + [sym_await_expression] = STATE(3043), + [sym_throw_expression] = STATE(3035), + [sym_element_access_expression] = STATE(2415), + [sym_interpolated_string_expression] = STATE(3035), + [sym_member_access_expression] = STATE(2415), + [sym_object_creation_expression] = STATE(3043), + [sym_parenthesized_expression] = STATE(3043), + [sym__parenthesized_lvalue_expression] = STATE(2415), + [sym_lambda_expression] = STATE(3035), + [sym__lambda_expression_init] = STATE(7561), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3035), + [sym_anonymous_method_expression] = STATE(3035), + [sym_anonymous_object_creation_expression] = STATE(3035), + [sym_implicit_array_creation_expression] = STATE(3035), + [sym_implicit_object_creation_expression] = STATE(3035), + [sym_implicit_stackalloc_expression] = STATE(3035), + [sym_initializer_expression] = STATE(3035), + [sym_default_expression] = STATE(3035), + [sym_with_expression] = STATE(3035), + [sym_sizeof_expression] = STATE(3035), + [sym_typeof_expression] = STATE(3035), + [sym_makeref_expression] = STATE(3035), + [sym_ref_expression] = STATE(3035), + [sym_reftype_expression] = STATE(3035), + [sym_refvalue_expression] = STATE(3035), + [sym_stackalloc_expression] = STATE(3035), + [sym_range_expression] = STATE(3035), + [sym_tuple_expression] = STATE(2415), + [sym_literal] = STATE(3035), + [sym_character_literal] = STATE(3037), + [sym_string_literal] = STATE(3037), + [sym_raw_string_literal] = STATE(3037), + [sym_boolean_literal] = STATE(3037), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3035), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(1131), [sym_preproc_endregion] = STATE(1131), [sym_preproc_line] = STATE(1131), @@ -232998,47 +232884,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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3396), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3455), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1153), - [anon_sym_LPAREN] = ACTIONS(1915), - [anon_sym_ref] = ACTIONS(1917), - [anon_sym_LBRACE] = ACTIONS(1159), - [anon_sym_delegate] = ACTIONS(1161), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1239), + [anon_sym_LPAREN] = ACTIONS(2217), + [anon_sym_ref] = ACTIONS(2219), + [anon_sym_LBRACE] = ACTIONS(1245), + [anon_sym_delegate] = ACTIONS(1247), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1919), + [anon_sym_new] = ACTIONS(2221), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1167), - [anon_sym_BANG] = ACTIONS(1923), - [anon_sym_TILDE] = ACTIONS(1923), - [anon_sym_PLUS_PLUS] = ACTIONS(1923), - [anon_sym_DASH_DASH] = ACTIONS(1923), - [anon_sym_true] = ACTIONS(1173), - [anon_sym_false] = ACTIONS(1173), - [anon_sym_PLUS] = ACTIONS(1921), - [anon_sym_DASH] = ACTIONS(1921), - [anon_sym_STAR] = ACTIONS(1925), - [anon_sym_CARET] = ACTIONS(1923), - [anon_sym_AMP] = ACTIONS(1923), - [anon_sym_this] = ACTIONS(1177), + [anon_sym_checked] = ACTIONS(1251), + [anon_sym_BANG] = ACTIONS(2225), + [anon_sym_TILDE] = ACTIONS(2225), + [anon_sym_PLUS_PLUS] = ACTIONS(2225), + [anon_sym_DASH_DASH] = ACTIONS(2225), + [anon_sym_true] = ACTIONS(1257), + [anon_sym_false] = ACTIONS(1257), + [anon_sym_PLUS] = ACTIONS(2223), + [anon_sym_DASH] = ACTIONS(2223), + [anon_sym_STAR] = ACTIONS(2227), + [anon_sym_CARET] = ACTIONS(2225), + [anon_sym_AMP] = ACTIONS(2225), + [anon_sym_this] = ACTIONS(1261), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1179), + [anon_sym_base] = ACTIONS(1263), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1181), - [anon_sym_unchecked] = ACTIONS(1167), + [sym_predefined_type] = ACTIONS(1265), + [anon_sym_unchecked] = ACTIONS(1251), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1183), - [anon_sym_throw] = ACTIONS(1927), + [anon_sym_default] = ACTIONS(1267), + [anon_sym_throw] = ACTIONS(2229), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1929), - [anon_sym_DOT_DOT] = ACTIONS(1931), + [anon_sym_await] = ACTIONS(2231), + [anon_sym_DOT_DOT] = ACTIONS(2233), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -233051,19 +232937,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1191), - [anon_sym_sizeof] = ACTIONS(1193), - [anon_sym_typeof] = ACTIONS(1195), - [anon_sym___makeref] = ACTIONS(1197), - [anon_sym___reftype] = ACTIONS(1199), - [anon_sym___refvalue] = ACTIONS(1201), - [sym_null_literal] = ACTIONS(1203), - [anon_sym_SQUOTE] = ACTIONS(1205), - [sym_integer_literal] = ACTIONS(1203), - [sym_real_literal] = ACTIONS(1207), - [anon_sym_DQUOTE] = ACTIONS(1209), - [sym_verbatim_string_literal] = ACTIONS(1207), - [aux_sym_preproc_if_token1] = ACTIONS(1211), + [anon_sym_stackalloc] = ACTIONS(1275), + [anon_sym_sizeof] = ACTIONS(1277), + [anon_sym_typeof] = ACTIONS(1279), + [anon_sym___makeref] = ACTIONS(1281), + [anon_sym___reftype] = ACTIONS(1283), + [anon_sym___refvalue] = ACTIONS(1285), + [sym_null_literal] = ACTIONS(1287), + [anon_sym_SQUOTE] = ACTIONS(1289), + [sym_integer_literal] = ACTIONS(1287), + [sym_real_literal] = ACTIONS(1291), + [anon_sym_DQUOTE] = ACTIONS(1293), + [sym_verbatim_string_literal] = ACTIONS(1291), + [aux_sym_preproc_if_token1] = ACTIONS(1295), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -233074,90 +232960,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1213), - [sym_interpolation_verbatim_start] = ACTIONS(1215), - [sym_interpolation_raw_start] = ACTIONS(1217), - [sym_raw_string_start] = ACTIONS(1219), + [sym_interpolation_regular_start] = ACTIONS(1297), + [sym_interpolation_verbatim_start] = ACTIONS(1299), + [sym_interpolation_raw_start] = ACTIONS(1301), + [sym_raw_string_start] = ACTIONS(1303), }, [1132] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2610), - [sym__name] = STATE(5905), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2395), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(4694), - [sym_non_lvalue_expression] = STATE(3277), - [sym_lvalue_expression] = STATE(3402), - [sym__expression_statement_expression] = STATE(3228), - [sym_assignment_expression] = STATE(3289), - [sym_binary_expression] = STATE(3228), - [sym_postfix_unary_expression] = STATE(3289), - [sym_prefix_unary_expression] = STATE(3289), - [sym__pointer_indirection_expression] = STATE(2609), - [sym_query_expression] = STATE(3228), - [sym_from_clause] = STATE(6166), - [sym_conditional_expression] = STATE(3228), - [sym_conditional_access_expression] = STATE(3228), - [sym_as_expression] = STATE(3228), - [sym_is_expression] = STATE(3228), - [sym_is_pattern_expression] = STATE(3228), - [sym_cast_expression] = STATE(3228), - [sym_checked_expression] = STATE(3228), - [sym_invocation_expression] = STATE(3289), - [sym_switch_expression] = STATE(3228), - [sym_await_expression] = STATE(3289), - [sym_throw_expression] = STATE(3228), - [sym_element_access_expression] = STATE(2609), - [sym_interpolated_string_expression] = STATE(3228), - [sym_member_access_expression] = STATE(2609), - [sym_object_creation_expression] = STATE(3289), - [sym_parenthesized_expression] = STATE(3289), - [sym__parenthesized_lvalue_expression] = STATE(2609), - [sym_lambda_expression] = STATE(3228), - [sym__lambda_expression_init] = STATE(7415), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3228), - [sym_anonymous_method_expression] = STATE(3228), - [sym_anonymous_object_creation_expression] = STATE(3228), - [sym_implicit_array_creation_expression] = STATE(3228), - [sym_implicit_object_creation_expression] = STATE(3228), - [sym_implicit_stackalloc_expression] = STATE(3228), - [sym_initializer_expression] = STATE(3228), - [sym_default_expression] = STATE(3228), - [sym_with_expression] = STATE(3228), - [sym_sizeof_expression] = STATE(3228), - [sym_typeof_expression] = STATE(3228), - [sym_makeref_expression] = STATE(3228), - [sym_ref_expression] = STATE(3228), - [sym_reftype_expression] = STATE(3228), - [sym_refvalue_expression] = STATE(3228), - [sym_stackalloc_expression] = STATE(3228), - [sym_range_expression] = STATE(3228), - [sym_tuple_expression] = STATE(2609), - [sym_literal] = STATE(3228), - [sym_character_literal] = STATE(3278), - [sym_string_literal] = STATE(3278), - [sym_raw_string_literal] = STATE(3278), - [sym_boolean_literal] = STATE(3278), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3228), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2416), + [sym__name] = STATE(5897), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2367), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(5313), + [sym_non_lvalue_expression] = STATE(3040), + [sym_lvalue_expression] = STATE(3600), + [sym__expression_statement_expression] = STATE(3035), + [sym_assignment_expression] = STATE(3043), + [sym_binary_expression] = STATE(3035), + [sym_postfix_unary_expression] = STATE(3043), + [sym_prefix_unary_expression] = STATE(3043), + [sym__pointer_indirection_expression] = STATE(2415), + [sym_query_expression] = STATE(3035), + [sym_from_clause] = STATE(6156), + [sym_conditional_expression] = STATE(3035), + [sym_conditional_access_expression] = STATE(3035), + [sym_as_expression] = STATE(3035), + [sym_is_expression] = STATE(3035), + [sym_is_pattern_expression] = STATE(3035), + [sym_cast_expression] = STATE(3035), + [sym_checked_expression] = STATE(3035), + [sym_invocation_expression] = STATE(3043), + [sym_switch_expression] = STATE(3035), + [sym_await_expression] = STATE(3043), + [sym_throw_expression] = STATE(3035), + [sym_element_access_expression] = STATE(2415), + [sym_interpolated_string_expression] = STATE(3035), + [sym_member_access_expression] = STATE(2415), + [sym_object_creation_expression] = STATE(3043), + [sym_parenthesized_expression] = STATE(3043), + [sym__parenthesized_lvalue_expression] = STATE(2415), + [sym_lambda_expression] = STATE(3035), + [sym__lambda_expression_init] = STATE(7561), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3035), + [sym_anonymous_method_expression] = STATE(3035), + [sym_anonymous_object_creation_expression] = STATE(3035), + [sym_implicit_array_creation_expression] = STATE(3035), + [sym_implicit_object_creation_expression] = STATE(3035), + [sym_implicit_stackalloc_expression] = STATE(3035), + [sym_initializer_expression] = STATE(3035), + [sym_default_expression] = STATE(3035), + [sym_with_expression] = STATE(3035), + [sym_sizeof_expression] = STATE(3035), + [sym_typeof_expression] = STATE(3035), + [sym_makeref_expression] = STATE(3035), + [sym_ref_expression] = STATE(3035), + [sym_reftype_expression] = STATE(3035), + [sym_refvalue_expression] = STATE(3035), + [sym_stackalloc_expression] = STATE(3035), + [sym_range_expression] = STATE(3035), + [sym_tuple_expression] = STATE(2415), + [sym_literal] = STATE(3035), + [sym_character_literal] = STATE(3037), + [sym_string_literal] = STATE(3037), + [sym_raw_string_literal] = STATE(3037), + [sym_boolean_literal] = STATE(3037), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3035), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(1132), [sym_preproc_endregion] = STATE(1132), [sym_preproc_line] = STATE(1132), @@ -233167,47 +233053,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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3396), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3455), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1153), - [anon_sym_LPAREN] = ACTIONS(1915), - [anon_sym_ref] = ACTIONS(1917), - [anon_sym_LBRACE] = ACTIONS(1159), - [anon_sym_delegate] = ACTIONS(1161), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1239), + [anon_sym_LPAREN] = ACTIONS(2217), + [anon_sym_ref] = ACTIONS(2219), + [anon_sym_LBRACE] = ACTIONS(1245), + [anon_sym_delegate] = ACTIONS(1247), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1919), + [anon_sym_new] = ACTIONS(2221), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1167), - [anon_sym_BANG] = ACTIONS(1923), - [anon_sym_TILDE] = ACTIONS(1923), - [anon_sym_PLUS_PLUS] = ACTIONS(1923), - [anon_sym_DASH_DASH] = ACTIONS(1923), - [anon_sym_true] = ACTIONS(1173), - [anon_sym_false] = ACTIONS(1173), - [anon_sym_PLUS] = ACTIONS(1921), - [anon_sym_DASH] = ACTIONS(1921), - [anon_sym_STAR] = ACTIONS(1925), - [anon_sym_CARET] = ACTIONS(1923), - [anon_sym_AMP] = ACTIONS(1923), - [anon_sym_this] = ACTIONS(1177), + [anon_sym_checked] = ACTIONS(1251), + [anon_sym_BANG] = ACTIONS(2225), + [anon_sym_TILDE] = ACTIONS(2225), + [anon_sym_PLUS_PLUS] = ACTIONS(2225), + [anon_sym_DASH_DASH] = ACTIONS(2225), + [anon_sym_true] = ACTIONS(1257), + [anon_sym_false] = ACTIONS(1257), + [anon_sym_PLUS] = ACTIONS(2223), + [anon_sym_DASH] = ACTIONS(2223), + [anon_sym_STAR] = ACTIONS(2227), + [anon_sym_CARET] = ACTIONS(2225), + [anon_sym_AMP] = ACTIONS(2225), + [anon_sym_this] = ACTIONS(1261), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1179), + [anon_sym_base] = ACTIONS(1263), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1181), - [anon_sym_unchecked] = ACTIONS(1167), + [sym_predefined_type] = ACTIONS(1265), + [anon_sym_unchecked] = ACTIONS(1251), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1183), - [anon_sym_throw] = ACTIONS(1927), + [anon_sym_default] = ACTIONS(1267), + [anon_sym_throw] = ACTIONS(2229), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1929), - [anon_sym_DOT_DOT] = ACTIONS(1931), + [anon_sym_await] = ACTIONS(2231), + [anon_sym_DOT_DOT] = ACTIONS(2233), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -233220,19 +233106,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1191), - [anon_sym_sizeof] = ACTIONS(1193), - [anon_sym_typeof] = ACTIONS(1195), - [anon_sym___makeref] = ACTIONS(1197), - [anon_sym___reftype] = ACTIONS(1199), - [anon_sym___refvalue] = ACTIONS(1201), - [sym_null_literal] = ACTIONS(1203), - [anon_sym_SQUOTE] = ACTIONS(1205), - [sym_integer_literal] = ACTIONS(1203), - [sym_real_literal] = ACTIONS(1207), - [anon_sym_DQUOTE] = ACTIONS(1209), - [sym_verbatim_string_literal] = ACTIONS(1207), - [aux_sym_preproc_if_token1] = ACTIONS(1211), + [anon_sym_stackalloc] = ACTIONS(1275), + [anon_sym_sizeof] = ACTIONS(1277), + [anon_sym_typeof] = ACTIONS(1279), + [anon_sym___makeref] = ACTIONS(1281), + [anon_sym___reftype] = ACTIONS(1283), + [anon_sym___refvalue] = ACTIONS(1285), + [sym_null_literal] = ACTIONS(1287), + [anon_sym_SQUOTE] = ACTIONS(1289), + [sym_integer_literal] = ACTIONS(1287), + [sym_real_literal] = ACTIONS(1291), + [anon_sym_DQUOTE] = ACTIONS(1293), + [sym_verbatim_string_literal] = ACTIONS(1291), + [aux_sym_preproc_if_token1] = ACTIONS(1295), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -233243,90 +233129,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1213), - [sym_interpolation_verbatim_start] = ACTIONS(1215), - [sym_interpolation_raw_start] = ACTIONS(1217), - [sym_raw_string_start] = ACTIONS(1219), + [sym_interpolation_regular_start] = ACTIONS(1297), + [sym_interpolation_verbatim_start] = ACTIONS(1299), + [sym_interpolation_raw_start] = ACTIONS(1301), + [sym_raw_string_start] = ACTIONS(1303), }, [1133] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2610), - [sym__name] = STATE(5905), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2395), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(4710), - [sym_non_lvalue_expression] = STATE(3277), - [sym_lvalue_expression] = STATE(3402), - [sym__expression_statement_expression] = STATE(3228), - [sym_assignment_expression] = STATE(3289), - [sym_binary_expression] = STATE(3228), - [sym_postfix_unary_expression] = STATE(3289), - [sym_prefix_unary_expression] = STATE(3289), - [sym__pointer_indirection_expression] = STATE(2609), - [sym_query_expression] = STATE(3228), - [sym_from_clause] = STATE(6166), - [sym_conditional_expression] = STATE(3228), - [sym_conditional_access_expression] = STATE(3228), - [sym_as_expression] = STATE(3228), - [sym_is_expression] = STATE(3228), - [sym_is_pattern_expression] = STATE(3228), - [sym_cast_expression] = STATE(3228), - [sym_checked_expression] = STATE(3228), - [sym_invocation_expression] = STATE(3289), - [sym_switch_expression] = STATE(3228), - [sym_await_expression] = STATE(3289), - [sym_throw_expression] = STATE(3228), - [sym_element_access_expression] = STATE(2609), - [sym_interpolated_string_expression] = STATE(3228), - [sym_member_access_expression] = STATE(2609), - [sym_object_creation_expression] = STATE(3289), - [sym_parenthesized_expression] = STATE(3289), - [sym__parenthesized_lvalue_expression] = STATE(2609), - [sym_lambda_expression] = STATE(3228), - [sym__lambda_expression_init] = STATE(7415), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3228), - [sym_anonymous_method_expression] = STATE(3228), - [sym_anonymous_object_creation_expression] = STATE(3228), - [sym_implicit_array_creation_expression] = STATE(3228), - [sym_implicit_object_creation_expression] = STATE(3228), - [sym_implicit_stackalloc_expression] = STATE(3228), - [sym_initializer_expression] = STATE(3228), - [sym_default_expression] = STATE(3228), - [sym_with_expression] = STATE(3228), - [sym_sizeof_expression] = STATE(3228), - [sym_typeof_expression] = STATE(3228), - [sym_makeref_expression] = STATE(3228), - [sym_ref_expression] = STATE(3228), - [sym_reftype_expression] = STATE(3228), - [sym_refvalue_expression] = STATE(3228), - [sym_stackalloc_expression] = STATE(3228), - [sym_range_expression] = STATE(3228), - [sym_tuple_expression] = STATE(2609), - [sym_literal] = STATE(3228), - [sym_character_literal] = STATE(3278), - [sym_string_literal] = STATE(3278), - [sym_raw_string_literal] = STATE(3278), - [sym_boolean_literal] = STATE(3278), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3228), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2416), + [sym__name] = STATE(5897), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2367), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(2904), + [sym_non_lvalue_expression] = STATE(3040), + [sym_lvalue_expression] = STATE(3600), + [sym__expression_statement_expression] = STATE(3035), + [sym_assignment_expression] = STATE(3043), + [sym_binary_expression] = STATE(3035), + [sym_postfix_unary_expression] = STATE(3043), + [sym_prefix_unary_expression] = STATE(3043), + [sym__pointer_indirection_expression] = STATE(2415), + [sym_query_expression] = STATE(3035), + [sym_from_clause] = STATE(6156), + [sym_conditional_expression] = STATE(3035), + [sym_conditional_access_expression] = STATE(3035), + [sym_as_expression] = STATE(3035), + [sym_is_expression] = STATE(3035), + [sym_is_pattern_expression] = STATE(3035), + [sym_cast_expression] = STATE(3035), + [sym_checked_expression] = STATE(3035), + [sym_invocation_expression] = STATE(3043), + [sym_switch_expression] = STATE(3035), + [sym_await_expression] = STATE(3043), + [sym_throw_expression] = STATE(3035), + [sym_element_access_expression] = STATE(2415), + [sym_interpolated_string_expression] = STATE(3035), + [sym_member_access_expression] = STATE(2415), + [sym_object_creation_expression] = STATE(3043), + [sym_parenthesized_expression] = STATE(3043), + [sym__parenthesized_lvalue_expression] = STATE(2415), + [sym_lambda_expression] = STATE(3035), + [sym__lambda_expression_init] = STATE(7561), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3035), + [sym_anonymous_method_expression] = STATE(3035), + [sym_anonymous_object_creation_expression] = STATE(3035), + [sym_implicit_array_creation_expression] = STATE(3035), + [sym_implicit_object_creation_expression] = STATE(3035), + [sym_implicit_stackalloc_expression] = STATE(3035), + [sym_initializer_expression] = STATE(3035), + [sym_default_expression] = STATE(3035), + [sym_with_expression] = STATE(3035), + [sym_sizeof_expression] = STATE(3035), + [sym_typeof_expression] = STATE(3035), + [sym_makeref_expression] = STATE(3035), + [sym_ref_expression] = STATE(3035), + [sym_reftype_expression] = STATE(3035), + [sym_refvalue_expression] = STATE(3035), + [sym_stackalloc_expression] = STATE(3035), + [sym_range_expression] = STATE(3035), + [sym_tuple_expression] = STATE(2415), + [sym_literal] = STATE(3035), + [sym_character_literal] = STATE(3037), + [sym_string_literal] = STATE(3037), + [sym_raw_string_literal] = STATE(3037), + [sym_boolean_literal] = STATE(3037), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3035), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(1133), [sym_preproc_endregion] = STATE(1133), [sym_preproc_line] = STATE(1133), @@ -233336,47 +233222,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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3396), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3455), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1153), - [anon_sym_LPAREN] = ACTIONS(1915), - [anon_sym_ref] = ACTIONS(1917), - [anon_sym_LBRACE] = ACTIONS(1159), - [anon_sym_delegate] = ACTIONS(1161), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1239), + [anon_sym_LPAREN] = ACTIONS(2217), + [anon_sym_ref] = ACTIONS(2219), + [anon_sym_LBRACE] = ACTIONS(1245), + [anon_sym_delegate] = ACTIONS(1247), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1919), + [anon_sym_new] = ACTIONS(2221), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1167), - [anon_sym_BANG] = ACTIONS(1923), - [anon_sym_TILDE] = ACTIONS(1923), - [anon_sym_PLUS_PLUS] = ACTIONS(1923), - [anon_sym_DASH_DASH] = ACTIONS(1923), - [anon_sym_true] = ACTIONS(1173), - [anon_sym_false] = ACTIONS(1173), - [anon_sym_PLUS] = ACTIONS(1921), - [anon_sym_DASH] = ACTIONS(1921), - [anon_sym_STAR] = ACTIONS(1925), - [anon_sym_CARET] = ACTIONS(1923), - [anon_sym_AMP] = ACTIONS(1923), - [anon_sym_this] = ACTIONS(1177), + [anon_sym_checked] = ACTIONS(1251), + [anon_sym_BANG] = ACTIONS(2225), + [anon_sym_TILDE] = ACTIONS(2225), + [anon_sym_PLUS_PLUS] = ACTIONS(2225), + [anon_sym_DASH_DASH] = ACTIONS(2225), + [anon_sym_true] = ACTIONS(1257), + [anon_sym_false] = ACTIONS(1257), + [anon_sym_PLUS] = ACTIONS(2223), + [anon_sym_DASH] = ACTIONS(2223), + [anon_sym_STAR] = ACTIONS(2227), + [anon_sym_CARET] = ACTIONS(2225), + [anon_sym_AMP] = ACTIONS(2225), + [anon_sym_this] = ACTIONS(1261), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1179), + [anon_sym_base] = ACTIONS(1263), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1181), - [anon_sym_unchecked] = ACTIONS(1167), + [sym_predefined_type] = ACTIONS(1265), + [anon_sym_unchecked] = ACTIONS(1251), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1183), - [anon_sym_throw] = ACTIONS(1927), + [anon_sym_default] = ACTIONS(1267), + [anon_sym_throw] = ACTIONS(2229), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1929), - [anon_sym_DOT_DOT] = ACTIONS(1931), + [anon_sym_await] = ACTIONS(2231), + [anon_sym_DOT_DOT] = ACTIONS(2233), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -233389,19 +233275,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1191), - [anon_sym_sizeof] = ACTIONS(1193), - [anon_sym_typeof] = ACTIONS(1195), - [anon_sym___makeref] = ACTIONS(1197), - [anon_sym___reftype] = ACTIONS(1199), - [anon_sym___refvalue] = ACTIONS(1201), - [sym_null_literal] = ACTIONS(1203), - [anon_sym_SQUOTE] = ACTIONS(1205), - [sym_integer_literal] = ACTIONS(1203), - [sym_real_literal] = ACTIONS(1207), - [anon_sym_DQUOTE] = ACTIONS(1209), - [sym_verbatim_string_literal] = ACTIONS(1207), - [aux_sym_preproc_if_token1] = ACTIONS(1211), + [anon_sym_stackalloc] = ACTIONS(1275), + [anon_sym_sizeof] = ACTIONS(1277), + [anon_sym_typeof] = ACTIONS(1279), + [anon_sym___makeref] = ACTIONS(1281), + [anon_sym___reftype] = ACTIONS(1283), + [anon_sym___refvalue] = ACTIONS(1285), + [sym_null_literal] = ACTIONS(1287), + [anon_sym_SQUOTE] = ACTIONS(1289), + [sym_integer_literal] = ACTIONS(1287), + [sym_real_literal] = ACTIONS(1291), + [anon_sym_DQUOTE] = ACTIONS(1293), + [sym_verbatim_string_literal] = ACTIONS(1291), + [aux_sym_preproc_if_token1] = ACTIONS(1295), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -233412,90 +233298,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1213), - [sym_interpolation_verbatim_start] = ACTIONS(1215), - [sym_interpolation_raw_start] = ACTIONS(1217), - [sym_raw_string_start] = ACTIONS(1219), + [sym_interpolation_regular_start] = ACTIONS(1297), + [sym_interpolation_verbatim_start] = ACTIONS(1299), + [sym_interpolation_raw_start] = ACTIONS(1301), + [sym_raw_string_start] = ACTIONS(1303), }, [1134] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2610), - [sym__name] = STATE(5905), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2395), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(4695), - [sym_non_lvalue_expression] = STATE(3277), - [sym_lvalue_expression] = STATE(3402), - [sym__expression_statement_expression] = STATE(3228), - [sym_assignment_expression] = STATE(3289), - [sym_binary_expression] = STATE(3228), - [sym_postfix_unary_expression] = STATE(3289), - [sym_prefix_unary_expression] = STATE(3289), - [sym__pointer_indirection_expression] = STATE(2609), - [sym_query_expression] = STATE(3228), - [sym_from_clause] = STATE(6166), - [sym_conditional_expression] = STATE(3228), - [sym_conditional_access_expression] = STATE(3228), - [sym_as_expression] = STATE(3228), - [sym_is_expression] = STATE(3228), - [sym_is_pattern_expression] = STATE(3228), - [sym_cast_expression] = STATE(3228), - [sym_checked_expression] = STATE(3228), - [sym_invocation_expression] = STATE(3289), - [sym_switch_expression] = STATE(3228), - [sym_await_expression] = STATE(3289), - [sym_throw_expression] = STATE(3228), - [sym_element_access_expression] = STATE(2609), - [sym_interpolated_string_expression] = STATE(3228), - [sym_member_access_expression] = STATE(2609), - [sym_object_creation_expression] = STATE(3289), - [sym_parenthesized_expression] = STATE(3289), - [sym__parenthesized_lvalue_expression] = STATE(2609), - [sym_lambda_expression] = STATE(3228), - [sym__lambda_expression_init] = STATE(7415), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3228), - [sym_anonymous_method_expression] = STATE(3228), - [sym_anonymous_object_creation_expression] = STATE(3228), - [sym_implicit_array_creation_expression] = STATE(3228), - [sym_implicit_object_creation_expression] = STATE(3228), - [sym_implicit_stackalloc_expression] = STATE(3228), - [sym_initializer_expression] = STATE(3228), - [sym_default_expression] = STATE(3228), - [sym_with_expression] = STATE(3228), - [sym_sizeof_expression] = STATE(3228), - [sym_typeof_expression] = STATE(3228), - [sym_makeref_expression] = STATE(3228), - [sym_ref_expression] = STATE(3228), - [sym_reftype_expression] = STATE(3228), - [sym_refvalue_expression] = STATE(3228), - [sym_stackalloc_expression] = STATE(3228), - [sym_range_expression] = STATE(3228), - [sym_tuple_expression] = STATE(2609), - [sym_literal] = STATE(3228), - [sym_character_literal] = STATE(3278), - [sym_string_literal] = STATE(3278), - [sym_raw_string_literal] = STATE(3278), - [sym_boolean_literal] = STATE(3278), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3228), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2816), + [sym__name] = STATE(5879), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2238), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(4316), + [sym_non_lvalue_expression] = STATE(3495), + [sym_lvalue_expression] = STATE(3197), + [sym__expression_statement_expression] = STATE(3462), + [sym_assignment_expression] = STATE(3497), + [sym_binary_expression] = STATE(3462), + [sym_postfix_unary_expression] = STATE(3497), + [sym_prefix_unary_expression] = STATE(3497), + [sym__pointer_indirection_expression] = STATE(2815), + [sym_query_expression] = STATE(3462), + [sym_from_clause] = STATE(6144), + [sym_conditional_expression] = STATE(3462), + [sym_conditional_access_expression] = STATE(3462), + [sym_as_expression] = STATE(3462), + [sym_is_expression] = STATE(3462), + [sym_is_pattern_expression] = STATE(3462), + [sym_cast_expression] = STATE(3462), + [sym_checked_expression] = STATE(3462), + [sym_invocation_expression] = STATE(3497), + [sym_switch_expression] = STATE(3462), + [sym_await_expression] = STATE(3497), + [sym_throw_expression] = STATE(3462), + [sym_element_access_expression] = STATE(2815), + [sym_interpolated_string_expression] = STATE(3462), + [sym_member_access_expression] = STATE(2815), + [sym_object_creation_expression] = STATE(3497), + [sym_parenthesized_expression] = STATE(3497), + [sym__parenthesized_lvalue_expression] = STATE(2815), + [sym_lambda_expression] = STATE(3462), + [sym__lambda_expression_init] = STATE(7615), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3462), + [sym_anonymous_method_expression] = STATE(3462), + [sym_anonymous_object_creation_expression] = STATE(3462), + [sym_implicit_array_creation_expression] = STATE(3462), + [sym_implicit_object_creation_expression] = STATE(3462), + [sym_implicit_stackalloc_expression] = STATE(3462), + [sym_initializer_expression] = STATE(3462), + [sym_default_expression] = STATE(3462), + [sym_with_expression] = STATE(3462), + [sym_sizeof_expression] = STATE(3462), + [sym_typeof_expression] = STATE(3462), + [sym_makeref_expression] = STATE(3462), + [sym_ref_expression] = STATE(3462), + [sym_reftype_expression] = STATE(3462), + [sym_refvalue_expression] = STATE(3462), + [sym_stackalloc_expression] = STATE(3462), + [sym_range_expression] = STATE(3462), + [sym_tuple_expression] = STATE(2815), + [sym_literal] = STATE(3462), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3462), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(1134), [sym_preproc_endregion] = STATE(1134), [sym_preproc_line] = STATE(1134), @@ -233505,47 +233391,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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3396), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3367), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1153), - [anon_sym_LPAREN] = ACTIONS(1915), - [anon_sym_ref] = ACTIONS(1917), - [anon_sym_LBRACE] = ACTIONS(1159), - [anon_sym_delegate] = ACTIONS(1161), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1305), + [anon_sym_LPAREN] = ACTIONS(1357), + [anon_sym_ref] = ACTIONS(1359), + [anon_sym_LBRACE] = ACTIONS(1311), + [anon_sym_delegate] = ACTIONS(1313), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1919), + [anon_sym_new] = ACTIONS(1315), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1167), - [anon_sym_BANG] = ACTIONS(1923), - [anon_sym_TILDE] = ACTIONS(1923), - [anon_sym_PLUS_PLUS] = ACTIONS(1923), - [anon_sym_DASH_DASH] = ACTIONS(1923), - [anon_sym_true] = ACTIONS(1173), - [anon_sym_false] = ACTIONS(1173), - [anon_sym_PLUS] = ACTIONS(1921), - [anon_sym_DASH] = ACTIONS(1921), - [anon_sym_STAR] = ACTIONS(1925), - [anon_sym_CARET] = ACTIONS(1923), - [anon_sym_AMP] = ACTIONS(1923), - [anon_sym_this] = ACTIONS(1177), + [anon_sym_checked] = ACTIONS(1317), + [anon_sym_BANG] = ACTIONS(1101), + [anon_sym_TILDE] = ACTIONS(1101), + [anon_sym_PLUS_PLUS] = ACTIONS(1101), + [anon_sym_DASH_DASH] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(77), + [anon_sym_false] = ACTIONS(77), + [anon_sym_PLUS] = ACTIONS(1103), + [anon_sym_DASH] = ACTIONS(1103), + [anon_sym_STAR] = ACTIONS(1361), + [anon_sym_CARET] = ACTIONS(1101), + [anon_sym_AMP] = ACTIONS(1101), + [anon_sym_this] = ACTIONS(1321), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1179), + [anon_sym_base] = ACTIONS(1323), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1181), - [anon_sym_unchecked] = ACTIONS(1167), + [sym_predefined_type] = ACTIONS(91), + [anon_sym_unchecked] = ACTIONS(1317), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1183), - [anon_sym_throw] = ACTIONS(1927), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(1363), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1929), - [anon_sym_DOT_DOT] = ACTIONS(1931), + [anon_sym_await] = ACTIONS(1365), + [anon_sym_DOT_DOT] = ACTIONS(1367), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -233558,19 +233444,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1191), - [anon_sym_sizeof] = ACTIONS(1193), - [anon_sym_typeof] = ACTIONS(1195), - [anon_sym___makeref] = ACTIONS(1197), - [anon_sym___reftype] = ACTIONS(1199), - [anon_sym___refvalue] = ACTIONS(1201), - [sym_null_literal] = ACTIONS(1203), - [anon_sym_SQUOTE] = ACTIONS(1205), - [sym_integer_literal] = ACTIONS(1203), - [sym_real_literal] = ACTIONS(1207), - [anon_sym_DQUOTE] = ACTIONS(1209), - [sym_verbatim_string_literal] = ACTIONS(1207), - [aux_sym_preproc_if_token1] = ACTIONS(1211), + [anon_sym_stackalloc] = ACTIONS(1331), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(1333), + [anon_sym___reftype] = ACTIONS(1335), + [anon_sym___refvalue] = ACTIONS(1337), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_literal] = ACTIONS(143), + [anon_sym_DQUOTE] = ACTIONS(145), + [sym_verbatim_string_literal] = ACTIONS(143), + [aux_sym_preproc_if_token1] = ACTIONS(1339), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -233581,90 +233467,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1213), - [sym_interpolation_verbatim_start] = ACTIONS(1215), - [sym_interpolation_raw_start] = ACTIONS(1217), - [sym_raw_string_start] = ACTIONS(1219), + [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(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2610), - [sym__name] = STATE(5905), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2395), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(4696), - [sym_non_lvalue_expression] = STATE(3277), - [sym_lvalue_expression] = STATE(3402), - [sym__expression_statement_expression] = STATE(3228), - [sym_assignment_expression] = STATE(3289), - [sym_binary_expression] = STATE(3228), - [sym_postfix_unary_expression] = STATE(3289), - [sym_prefix_unary_expression] = STATE(3289), - [sym__pointer_indirection_expression] = STATE(2609), - [sym_query_expression] = STATE(3228), - [sym_from_clause] = STATE(6166), - [sym_conditional_expression] = STATE(3228), - [sym_conditional_access_expression] = STATE(3228), - [sym_as_expression] = STATE(3228), - [sym_is_expression] = STATE(3228), - [sym_is_pattern_expression] = STATE(3228), - [sym_cast_expression] = STATE(3228), - [sym_checked_expression] = STATE(3228), - [sym_invocation_expression] = STATE(3289), - [sym_switch_expression] = STATE(3228), - [sym_await_expression] = STATE(3289), - [sym_throw_expression] = STATE(3228), - [sym_element_access_expression] = STATE(2609), - [sym_interpolated_string_expression] = STATE(3228), - [sym_member_access_expression] = STATE(2609), - [sym_object_creation_expression] = STATE(3289), - [sym_parenthesized_expression] = STATE(3289), - [sym__parenthesized_lvalue_expression] = STATE(2609), - [sym_lambda_expression] = STATE(3228), - [sym__lambda_expression_init] = STATE(7415), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3228), - [sym_anonymous_method_expression] = STATE(3228), - [sym_anonymous_object_creation_expression] = STATE(3228), - [sym_implicit_array_creation_expression] = STATE(3228), - [sym_implicit_object_creation_expression] = STATE(3228), - [sym_implicit_stackalloc_expression] = STATE(3228), - [sym_initializer_expression] = STATE(3228), - [sym_default_expression] = STATE(3228), - [sym_with_expression] = STATE(3228), - [sym_sizeof_expression] = STATE(3228), - [sym_typeof_expression] = STATE(3228), - [sym_makeref_expression] = STATE(3228), - [sym_ref_expression] = STATE(3228), - [sym_reftype_expression] = STATE(3228), - [sym_refvalue_expression] = STATE(3228), - [sym_stackalloc_expression] = STATE(3228), - [sym_range_expression] = STATE(3228), - [sym_tuple_expression] = STATE(2609), - [sym_literal] = STATE(3228), - [sym_character_literal] = STATE(3278), - [sym_string_literal] = STATE(3278), - [sym_raw_string_literal] = STATE(3278), - [sym_boolean_literal] = STATE(3278), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3228), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2816), + [sym__name] = STATE(5879), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2238), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(3195), + [sym_non_lvalue_expression] = STATE(3495), + [sym_lvalue_expression] = STATE(3197), + [sym__expression_statement_expression] = STATE(3462), + [sym_assignment_expression] = STATE(3497), + [sym_binary_expression] = STATE(3462), + [sym_postfix_unary_expression] = STATE(3497), + [sym_prefix_unary_expression] = STATE(3497), + [sym__pointer_indirection_expression] = STATE(2815), + [sym_query_expression] = STATE(3462), + [sym_from_clause] = STATE(6144), + [sym_conditional_expression] = STATE(3462), + [sym_conditional_access_expression] = STATE(3462), + [sym_as_expression] = STATE(3462), + [sym_is_expression] = STATE(3462), + [sym_is_pattern_expression] = STATE(3462), + [sym_cast_expression] = STATE(3462), + [sym_checked_expression] = STATE(3462), + [sym_invocation_expression] = STATE(3497), + [sym_switch_expression] = STATE(3462), + [sym_await_expression] = STATE(3497), + [sym_throw_expression] = STATE(3462), + [sym_element_access_expression] = STATE(2815), + [sym_interpolated_string_expression] = STATE(3462), + [sym_member_access_expression] = STATE(2815), + [sym_object_creation_expression] = STATE(3497), + [sym_parenthesized_expression] = STATE(3497), + [sym__parenthesized_lvalue_expression] = STATE(2815), + [sym_lambda_expression] = STATE(3462), + [sym__lambda_expression_init] = STATE(7615), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3462), + [sym_anonymous_method_expression] = STATE(3462), + [sym_anonymous_object_creation_expression] = STATE(3462), + [sym_implicit_array_creation_expression] = STATE(3462), + [sym_implicit_object_creation_expression] = STATE(3462), + [sym_implicit_stackalloc_expression] = STATE(3462), + [sym_initializer_expression] = STATE(3462), + [sym_default_expression] = STATE(3462), + [sym_with_expression] = STATE(3462), + [sym_sizeof_expression] = STATE(3462), + [sym_typeof_expression] = STATE(3462), + [sym_makeref_expression] = STATE(3462), + [sym_ref_expression] = STATE(3462), + [sym_reftype_expression] = STATE(3462), + [sym_refvalue_expression] = STATE(3462), + [sym_stackalloc_expression] = STATE(3462), + [sym_range_expression] = STATE(3462), + [sym_tuple_expression] = STATE(2815), + [sym_literal] = STATE(3462), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3462), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(1135), [sym_preproc_endregion] = STATE(1135), [sym_preproc_line] = STATE(1135), @@ -233674,47 +233560,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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3396), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3367), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1153), - [anon_sym_LPAREN] = ACTIONS(1915), - [anon_sym_ref] = ACTIONS(1917), - [anon_sym_LBRACE] = ACTIONS(1159), - [anon_sym_delegate] = ACTIONS(1161), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1305), + [anon_sym_LPAREN] = ACTIONS(1357), + [anon_sym_ref] = ACTIONS(1359), + [anon_sym_LBRACE] = ACTIONS(1311), + [anon_sym_delegate] = ACTIONS(1313), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1919), + [anon_sym_new] = ACTIONS(1315), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1167), - [anon_sym_BANG] = ACTIONS(1923), - [anon_sym_TILDE] = ACTIONS(1923), - [anon_sym_PLUS_PLUS] = ACTIONS(1923), - [anon_sym_DASH_DASH] = ACTIONS(1923), - [anon_sym_true] = ACTIONS(1173), - [anon_sym_false] = ACTIONS(1173), - [anon_sym_PLUS] = ACTIONS(1921), - [anon_sym_DASH] = ACTIONS(1921), - [anon_sym_STAR] = ACTIONS(1925), - [anon_sym_CARET] = ACTIONS(1923), - [anon_sym_AMP] = ACTIONS(1923), - [anon_sym_this] = ACTIONS(1177), + [anon_sym_checked] = ACTIONS(1317), + [anon_sym_BANG] = ACTIONS(1101), + [anon_sym_TILDE] = ACTIONS(1101), + [anon_sym_PLUS_PLUS] = ACTIONS(1101), + [anon_sym_DASH_DASH] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(77), + [anon_sym_false] = ACTIONS(77), + [anon_sym_PLUS] = ACTIONS(1103), + [anon_sym_DASH] = ACTIONS(1103), + [anon_sym_STAR] = ACTIONS(1361), + [anon_sym_CARET] = ACTIONS(1101), + [anon_sym_AMP] = ACTIONS(1101), + [anon_sym_this] = ACTIONS(1321), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1179), + [anon_sym_base] = ACTIONS(1323), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1181), - [anon_sym_unchecked] = ACTIONS(1167), + [sym_predefined_type] = ACTIONS(91), + [anon_sym_unchecked] = ACTIONS(1317), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1183), - [anon_sym_throw] = ACTIONS(1927), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(1363), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1929), - [anon_sym_DOT_DOT] = ACTIONS(1931), + [anon_sym_await] = ACTIONS(1365), + [anon_sym_DOT_DOT] = ACTIONS(1367), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -233727,19 +233613,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1191), - [anon_sym_sizeof] = ACTIONS(1193), - [anon_sym_typeof] = ACTIONS(1195), - [anon_sym___makeref] = ACTIONS(1197), - [anon_sym___reftype] = ACTIONS(1199), - [anon_sym___refvalue] = ACTIONS(1201), - [sym_null_literal] = ACTIONS(1203), - [anon_sym_SQUOTE] = ACTIONS(1205), - [sym_integer_literal] = ACTIONS(1203), - [sym_real_literal] = ACTIONS(1207), - [anon_sym_DQUOTE] = ACTIONS(1209), - [sym_verbatim_string_literal] = ACTIONS(1207), - [aux_sym_preproc_if_token1] = ACTIONS(1211), + [anon_sym_stackalloc] = ACTIONS(1331), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(1333), + [anon_sym___reftype] = ACTIONS(1335), + [anon_sym___refvalue] = ACTIONS(1337), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_literal] = ACTIONS(143), + [anon_sym_DQUOTE] = ACTIONS(145), + [sym_verbatim_string_literal] = ACTIONS(143), + [aux_sym_preproc_if_token1] = ACTIONS(1339), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -233750,90 +233636,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1213), - [sym_interpolation_verbatim_start] = ACTIONS(1215), - [sym_interpolation_raw_start] = ACTIONS(1217), - [sym_raw_string_start] = ACTIONS(1219), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [sym_interpolation_raw_start] = ACTIONS(155), + [sym_raw_string_start] = ACTIONS(157), }, [1136] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2610), - [sym__name] = STATE(5905), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2395), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(4697), - [sym_non_lvalue_expression] = STATE(3277), - [sym_lvalue_expression] = STATE(3402), - [sym__expression_statement_expression] = STATE(3228), - [sym_assignment_expression] = STATE(3289), - [sym_binary_expression] = STATE(3228), - [sym_postfix_unary_expression] = STATE(3289), - [sym_prefix_unary_expression] = STATE(3289), - [sym__pointer_indirection_expression] = STATE(2609), - [sym_query_expression] = STATE(3228), - [sym_from_clause] = STATE(6166), - [sym_conditional_expression] = STATE(3228), - [sym_conditional_access_expression] = STATE(3228), - [sym_as_expression] = STATE(3228), - [sym_is_expression] = STATE(3228), - [sym_is_pattern_expression] = STATE(3228), - [sym_cast_expression] = STATE(3228), - [sym_checked_expression] = STATE(3228), - [sym_invocation_expression] = STATE(3289), - [sym_switch_expression] = STATE(3228), - [sym_await_expression] = STATE(3289), - [sym_throw_expression] = STATE(3228), - [sym_element_access_expression] = STATE(2609), - [sym_interpolated_string_expression] = STATE(3228), - [sym_member_access_expression] = STATE(2609), - [sym_object_creation_expression] = STATE(3289), - [sym_parenthesized_expression] = STATE(3289), - [sym__parenthesized_lvalue_expression] = STATE(2609), - [sym_lambda_expression] = STATE(3228), - [sym__lambda_expression_init] = STATE(7415), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3228), - [sym_anonymous_method_expression] = STATE(3228), - [sym_anonymous_object_creation_expression] = STATE(3228), - [sym_implicit_array_creation_expression] = STATE(3228), - [sym_implicit_object_creation_expression] = STATE(3228), - [sym_implicit_stackalloc_expression] = STATE(3228), - [sym_initializer_expression] = STATE(3228), - [sym_default_expression] = STATE(3228), - [sym_with_expression] = STATE(3228), - [sym_sizeof_expression] = STATE(3228), - [sym_typeof_expression] = STATE(3228), - [sym_makeref_expression] = STATE(3228), - [sym_ref_expression] = STATE(3228), - [sym_reftype_expression] = STATE(3228), - [sym_refvalue_expression] = STATE(3228), - [sym_stackalloc_expression] = STATE(3228), - [sym_range_expression] = STATE(3228), - [sym_tuple_expression] = STATE(2609), - [sym_literal] = STATE(3228), - [sym_character_literal] = STATE(3278), - [sym_string_literal] = STATE(3278), - [sym_raw_string_literal] = STATE(3278), - [sym_boolean_literal] = STATE(3278), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3228), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(3182), + [sym__name] = STATE(5882), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2306), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2262), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(4338), + [sym_non_lvalue_expression] = STATE(4580), + [sym_lvalue_expression] = STATE(3534), + [sym__expression_statement_expression] = STATE(4573), + [sym_assignment_expression] = STATE(4581), + [sym_binary_expression] = STATE(4573), + [sym_postfix_unary_expression] = STATE(4581), + [sym_prefix_unary_expression] = STATE(4581), + [sym__pointer_indirection_expression] = STATE(3144), + [sym_query_expression] = STATE(4573), + [sym_from_clause] = STATE(6133), + [sym_conditional_expression] = STATE(4573), + [sym_conditional_access_expression] = STATE(4573), + [sym_as_expression] = STATE(4573), + [sym_is_expression] = STATE(4573), + [sym_is_pattern_expression] = STATE(4573), + [sym_cast_expression] = STATE(4573), + [sym_checked_expression] = STATE(4573), + [sym_invocation_expression] = STATE(4581), + [sym_switch_expression] = STATE(4573), + [sym_await_expression] = STATE(4581), + [sym_throw_expression] = STATE(4573), + [sym_element_access_expression] = STATE(3144), + [sym_interpolated_string_expression] = STATE(4573), + [sym_member_access_expression] = STATE(3144), + [sym_object_creation_expression] = STATE(4581), + [sym_parenthesized_expression] = STATE(4581), + [sym__parenthesized_lvalue_expression] = STATE(3144), + [sym_lambda_expression] = STATE(4573), + [sym__lambda_expression_init] = STATE(7592), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(4573), + [sym_anonymous_method_expression] = STATE(4573), + [sym_anonymous_object_creation_expression] = STATE(4573), + [sym_implicit_array_creation_expression] = STATE(4573), + [sym_implicit_object_creation_expression] = STATE(4573), + [sym_implicit_stackalloc_expression] = STATE(4573), + [sym_initializer_expression] = STATE(4573), + [sym_default_expression] = STATE(4573), + [sym_with_expression] = STATE(4573), + [sym_sizeof_expression] = STATE(4573), + [sym_typeof_expression] = STATE(4573), + [sym_makeref_expression] = STATE(4573), + [sym_ref_expression] = STATE(4573), + [sym_reftype_expression] = STATE(4573), + [sym_refvalue_expression] = STATE(4573), + [sym_stackalloc_expression] = STATE(4573), + [sym_range_expression] = STATE(4573), + [sym_tuple_expression] = STATE(3144), + [sym_literal] = STATE(4573), + [sym_character_literal] = STATE(4575), + [sym_string_literal] = STATE(4575), + [sym_raw_string_literal] = STATE(4575), + [sym_boolean_literal] = STATE(4575), + [sym_identifier] = STATE(2237), + [sym__reserved_identifier] = STATE(2229), + [sym_preproc_if_in_expression] = STATE(4573), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(1136), [sym_preproc_endregion] = STATE(1136), [sym_preproc_line] = STATE(1136), @@ -233843,166 +233729,166 @@ 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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3396), - [sym__identifier_token] = ACTIONS(25), - [anon_sym_alias] = ACTIONS(29), - [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1153), - [anon_sym_LPAREN] = ACTIONS(1915), - [anon_sym_ref] = ACTIONS(1917), - [anon_sym_LBRACE] = ACTIONS(1159), - [anon_sym_delegate] = ACTIONS(1161), - [anon_sym_async] = ACTIONS(1047), - [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1919), - [anon_sym_where] = ACTIONS(29), - [anon_sym_notnull] = ACTIONS(29), - [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1167), - [anon_sym_BANG] = ACTIONS(1923), - [anon_sym_TILDE] = ACTIONS(1923), - [anon_sym_PLUS_PLUS] = ACTIONS(1923), - [anon_sym_DASH_DASH] = ACTIONS(1923), - [anon_sym_true] = ACTIONS(1173), - [anon_sym_false] = ACTIONS(1173), - [anon_sym_PLUS] = ACTIONS(1921), - [anon_sym_DASH] = ACTIONS(1921), - [anon_sym_STAR] = ACTIONS(1925), - [anon_sym_CARET] = ACTIONS(1923), - [anon_sym_AMP] = ACTIONS(1923), - [anon_sym_this] = ACTIONS(1177), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1179), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1181), - [anon_sym_unchecked] = ACTIONS(1167), - [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1183), - [anon_sym_throw] = ACTIONS(1927), - [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1929), - [anon_sym_DOT_DOT] = ACTIONS(1931), - [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(1191), - [anon_sym_sizeof] = ACTIONS(1193), - [anon_sym_typeof] = ACTIONS(1195), - [anon_sym___makeref] = ACTIONS(1197), - [anon_sym___reftype] = ACTIONS(1199), - [anon_sym___refvalue] = ACTIONS(1201), - [sym_null_literal] = ACTIONS(1203), - [anon_sym_SQUOTE] = ACTIONS(1205), - [sym_integer_literal] = ACTIONS(1203), - [sym_real_literal] = ACTIONS(1207), - [anon_sym_DQUOTE] = ACTIONS(1209), - [sym_verbatim_string_literal] = ACTIONS(1207), - [aux_sym_preproc_if_token1] = ACTIONS(1211), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1213), - [sym_interpolation_verbatim_start] = ACTIONS(1215), - [sym_interpolation_raw_start] = ACTIONS(1217), - [sym_raw_string_start] = ACTIONS(1219), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3501), + [sym__identifier_token] = ACTIONS(1385), + [anon_sym_alias] = ACTIONS(1387), + [anon_sym_global] = ACTIONS(1387), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1389), + [anon_sym_LPAREN] = ACTIONS(1773), + [anon_sym_ref] = ACTIONS(1775), + [anon_sym_LBRACE] = ACTIONS(1395), + [anon_sym_delegate] = ACTIONS(1397), + [anon_sym_async] = ACTIONS(1045), + [anon_sym_file] = ACTIONS(1387), + [anon_sym_new] = ACTIONS(1465), + [anon_sym_where] = ACTIONS(1387), + [anon_sym_notnull] = ACTIONS(1387), + [anon_sym_unmanaged] = ACTIONS(1387), + [anon_sym_checked] = ACTIONS(1401), + [anon_sym_BANG] = ACTIONS(1779), + [anon_sym_TILDE] = ACTIONS(1779), + [anon_sym_PLUS_PLUS] = ACTIONS(1779), + [anon_sym_DASH_DASH] = ACTIONS(1779), + [anon_sym_true] = ACTIONS(1407), + [anon_sym_false] = ACTIONS(1407), + [anon_sym_PLUS] = ACTIONS(1777), + [anon_sym_DASH] = ACTIONS(1777), + [anon_sym_STAR] = ACTIONS(1471), + [anon_sym_CARET] = ACTIONS(1779), + [anon_sym_AMP] = ACTIONS(1779), + [anon_sym_this] = ACTIONS(1411), + [anon_sym_scoped] = ACTIONS(1413), + [anon_sym_base] = ACTIONS(1415), + [anon_sym_var] = ACTIONS(1417), + [sym_predefined_type] = ACTIONS(1419), + [anon_sym_unchecked] = ACTIONS(1401), + [anon_sym_yield] = ACTIONS(1387), + [anon_sym_default] = ACTIONS(1421), + [anon_sym_throw] = ACTIONS(1781), + [anon_sym_when] = ACTIONS(1387), + [anon_sym_await] = ACTIONS(1783), + [anon_sym_DOT_DOT] = ACTIONS(1785), + [anon_sym_from] = ACTIONS(1429), + [anon_sym_into] = ACTIONS(1387), + [anon_sym_join] = ACTIONS(1387), + [anon_sym_on] = ACTIONS(1387), + [anon_sym_equals] = ACTIONS(1387), + [anon_sym_let] = ACTIONS(1387), + [anon_sym_orderby] = ACTIONS(1387), + [anon_sym_ascending] = ACTIONS(1387), + [anon_sym_descending] = ACTIONS(1387), + [anon_sym_group] = ACTIONS(1387), + [anon_sym_by] = ACTIONS(1387), + [anon_sym_select] = ACTIONS(1387), + [anon_sym_stackalloc] = ACTIONS(1431), + [anon_sym_sizeof] = ACTIONS(1433), + [anon_sym_typeof] = ACTIONS(1435), + [anon_sym___makeref] = ACTIONS(1437), + [anon_sym___reftype] = ACTIONS(1439), + [anon_sym___refvalue] = ACTIONS(1441), + [sym_null_literal] = ACTIONS(1443), + [anon_sym_SQUOTE] = ACTIONS(1445), + [sym_integer_literal] = ACTIONS(1443), + [sym_real_literal] = ACTIONS(1447), + [anon_sym_DQUOTE] = ACTIONS(1449), + [sym_verbatim_string_literal] = ACTIONS(1447), + [aux_sym_preproc_if_token1] = ACTIONS(1451), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + [sym_interpolation_regular_start] = ACTIONS(1453), + [sym_interpolation_verbatim_start] = ACTIONS(1455), + [sym_interpolation_raw_start] = ACTIONS(1457), + [sym_raw_string_start] = ACTIONS(1459), }, [1137] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2610), - [sym__name] = STATE(5905), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2395), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(4698), - [sym_non_lvalue_expression] = STATE(3277), - [sym_lvalue_expression] = STATE(3402), - [sym__expression_statement_expression] = STATE(3228), - [sym_assignment_expression] = STATE(3289), - [sym_binary_expression] = STATE(3228), - [sym_postfix_unary_expression] = STATE(3289), - [sym_prefix_unary_expression] = STATE(3289), - [sym__pointer_indirection_expression] = STATE(2609), - [sym_query_expression] = STATE(3228), - [sym_from_clause] = STATE(6166), - [sym_conditional_expression] = STATE(3228), - [sym_conditional_access_expression] = STATE(3228), - [sym_as_expression] = STATE(3228), - [sym_is_expression] = STATE(3228), - [sym_is_pattern_expression] = STATE(3228), - [sym_cast_expression] = STATE(3228), - [sym_checked_expression] = STATE(3228), - [sym_invocation_expression] = STATE(3289), - [sym_switch_expression] = STATE(3228), - [sym_await_expression] = STATE(3289), - [sym_throw_expression] = STATE(3228), - [sym_element_access_expression] = STATE(2609), - [sym_interpolated_string_expression] = STATE(3228), - [sym_member_access_expression] = STATE(2609), - [sym_object_creation_expression] = STATE(3289), - [sym_parenthesized_expression] = STATE(3289), - [sym__parenthesized_lvalue_expression] = STATE(2609), - [sym_lambda_expression] = STATE(3228), - [sym__lambda_expression_init] = STATE(7415), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3228), - [sym_anonymous_method_expression] = STATE(3228), - [sym_anonymous_object_creation_expression] = STATE(3228), - [sym_implicit_array_creation_expression] = STATE(3228), - [sym_implicit_object_creation_expression] = STATE(3228), - [sym_implicit_stackalloc_expression] = STATE(3228), - [sym_initializer_expression] = STATE(3228), - [sym_default_expression] = STATE(3228), - [sym_with_expression] = STATE(3228), - [sym_sizeof_expression] = STATE(3228), - [sym_typeof_expression] = STATE(3228), - [sym_makeref_expression] = STATE(3228), - [sym_ref_expression] = STATE(3228), - [sym_reftype_expression] = STATE(3228), - [sym_refvalue_expression] = STATE(3228), - [sym_stackalloc_expression] = STATE(3228), - [sym_range_expression] = STATE(3228), - [sym_tuple_expression] = STATE(2609), - [sym_literal] = STATE(3228), - [sym_character_literal] = STATE(3278), - [sym_string_literal] = STATE(3278), - [sym_raw_string_literal] = STATE(3278), - [sym_boolean_literal] = STATE(3278), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3228), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2816), + [sym__name] = STATE(5879), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2238), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(4330), + [sym_non_lvalue_expression] = STATE(3495), + [sym_lvalue_expression] = STATE(3197), + [sym__expression_statement_expression] = STATE(3462), + [sym_assignment_expression] = STATE(3497), + [sym_binary_expression] = STATE(3462), + [sym_postfix_unary_expression] = STATE(3497), + [sym_prefix_unary_expression] = STATE(3497), + [sym__pointer_indirection_expression] = STATE(2815), + [sym_query_expression] = STATE(3462), + [sym_from_clause] = STATE(6144), + [sym_conditional_expression] = STATE(3462), + [sym_conditional_access_expression] = STATE(3462), + [sym_as_expression] = STATE(3462), + [sym_is_expression] = STATE(3462), + [sym_is_pattern_expression] = STATE(3462), + [sym_cast_expression] = STATE(3462), + [sym_checked_expression] = STATE(3462), + [sym_invocation_expression] = STATE(3497), + [sym_switch_expression] = STATE(3462), + [sym_await_expression] = STATE(3497), + [sym_throw_expression] = STATE(3462), + [sym_element_access_expression] = STATE(2815), + [sym_interpolated_string_expression] = STATE(3462), + [sym_member_access_expression] = STATE(2815), + [sym_object_creation_expression] = STATE(3497), + [sym_parenthesized_expression] = STATE(3497), + [sym__parenthesized_lvalue_expression] = STATE(2815), + [sym_lambda_expression] = STATE(3462), + [sym__lambda_expression_init] = STATE(7615), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3462), + [sym_anonymous_method_expression] = STATE(3462), + [sym_anonymous_object_creation_expression] = STATE(3462), + [sym_implicit_array_creation_expression] = STATE(3462), + [sym_implicit_object_creation_expression] = STATE(3462), + [sym_implicit_stackalloc_expression] = STATE(3462), + [sym_initializer_expression] = STATE(3462), + [sym_default_expression] = STATE(3462), + [sym_with_expression] = STATE(3462), + [sym_sizeof_expression] = STATE(3462), + [sym_typeof_expression] = STATE(3462), + [sym_makeref_expression] = STATE(3462), + [sym_ref_expression] = STATE(3462), + [sym_reftype_expression] = STATE(3462), + [sym_refvalue_expression] = STATE(3462), + [sym_stackalloc_expression] = STATE(3462), + [sym_range_expression] = STATE(3462), + [sym_tuple_expression] = STATE(2815), + [sym_literal] = STATE(3462), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3462), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(1137), [sym_preproc_endregion] = STATE(1137), [sym_preproc_line] = STATE(1137), @@ -234012,47 +233898,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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3396), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3367), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1153), - [anon_sym_LPAREN] = ACTIONS(1915), - [anon_sym_ref] = ACTIONS(1917), - [anon_sym_LBRACE] = ACTIONS(1159), - [anon_sym_delegate] = ACTIONS(1161), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1305), + [anon_sym_LPAREN] = ACTIONS(1357), + [anon_sym_ref] = ACTIONS(1359), + [anon_sym_LBRACE] = ACTIONS(1311), + [anon_sym_delegate] = ACTIONS(1313), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1919), + [anon_sym_new] = ACTIONS(1315), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1167), - [anon_sym_BANG] = ACTIONS(1923), - [anon_sym_TILDE] = ACTIONS(1923), - [anon_sym_PLUS_PLUS] = ACTIONS(1923), - [anon_sym_DASH_DASH] = ACTIONS(1923), - [anon_sym_true] = ACTIONS(1173), - [anon_sym_false] = ACTIONS(1173), - [anon_sym_PLUS] = ACTIONS(1921), - [anon_sym_DASH] = ACTIONS(1921), - [anon_sym_STAR] = ACTIONS(1925), - [anon_sym_CARET] = ACTIONS(1923), - [anon_sym_AMP] = ACTIONS(1923), - [anon_sym_this] = ACTIONS(1177), + [anon_sym_checked] = ACTIONS(1317), + [anon_sym_BANG] = ACTIONS(1101), + [anon_sym_TILDE] = ACTIONS(1101), + [anon_sym_PLUS_PLUS] = ACTIONS(1101), + [anon_sym_DASH_DASH] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(77), + [anon_sym_false] = ACTIONS(77), + [anon_sym_PLUS] = ACTIONS(1103), + [anon_sym_DASH] = ACTIONS(1103), + [anon_sym_STAR] = ACTIONS(1361), + [anon_sym_CARET] = ACTIONS(1101), + [anon_sym_AMP] = ACTIONS(1101), + [anon_sym_this] = ACTIONS(1321), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1179), + [anon_sym_base] = ACTIONS(1323), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1181), - [anon_sym_unchecked] = ACTIONS(1167), + [sym_predefined_type] = ACTIONS(91), + [anon_sym_unchecked] = ACTIONS(1317), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1183), - [anon_sym_throw] = ACTIONS(1927), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(1363), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1929), - [anon_sym_DOT_DOT] = ACTIONS(1931), + [anon_sym_await] = ACTIONS(1365), + [anon_sym_DOT_DOT] = ACTIONS(1367), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -234065,19 +233951,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1191), - [anon_sym_sizeof] = ACTIONS(1193), - [anon_sym_typeof] = ACTIONS(1195), - [anon_sym___makeref] = ACTIONS(1197), - [anon_sym___reftype] = ACTIONS(1199), - [anon_sym___refvalue] = ACTIONS(1201), - [sym_null_literal] = ACTIONS(1203), - [anon_sym_SQUOTE] = ACTIONS(1205), - [sym_integer_literal] = ACTIONS(1203), - [sym_real_literal] = ACTIONS(1207), - [anon_sym_DQUOTE] = ACTIONS(1209), - [sym_verbatim_string_literal] = ACTIONS(1207), - [aux_sym_preproc_if_token1] = ACTIONS(1211), + [anon_sym_stackalloc] = ACTIONS(1331), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(1333), + [anon_sym___reftype] = ACTIONS(1335), + [anon_sym___refvalue] = ACTIONS(1337), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_literal] = ACTIONS(143), + [anon_sym_DQUOTE] = ACTIONS(145), + [sym_verbatim_string_literal] = ACTIONS(143), + [aux_sym_preproc_if_token1] = ACTIONS(1339), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -234088,90 +233974,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1213), - [sym_interpolation_verbatim_start] = ACTIONS(1215), - [sym_interpolation_raw_start] = ACTIONS(1217), - [sym_raw_string_start] = ACTIONS(1219), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [sym_interpolation_raw_start] = ACTIONS(155), + [sym_raw_string_start] = ACTIONS(157), }, [1138] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2610), - [sym__name] = STATE(5905), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2395), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(4699), - [sym_non_lvalue_expression] = STATE(3277), - [sym_lvalue_expression] = STATE(3402), - [sym__expression_statement_expression] = STATE(3228), - [sym_assignment_expression] = STATE(3289), - [sym_binary_expression] = STATE(3228), - [sym_postfix_unary_expression] = STATE(3289), - [sym_prefix_unary_expression] = STATE(3289), - [sym__pointer_indirection_expression] = STATE(2609), - [sym_query_expression] = STATE(3228), - [sym_from_clause] = STATE(6166), - [sym_conditional_expression] = STATE(3228), - [sym_conditional_access_expression] = STATE(3228), - [sym_as_expression] = STATE(3228), - [sym_is_expression] = STATE(3228), - [sym_is_pattern_expression] = STATE(3228), - [sym_cast_expression] = STATE(3228), - [sym_checked_expression] = STATE(3228), - [sym_invocation_expression] = STATE(3289), - [sym_switch_expression] = STATE(3228), - [sym_await_expression] = STATE(3289), - [sym_throw_expression] = STATE(3228), - [sym_element_access_expression] = STATE(2609), - [sym_interpolated_string_expression] = STATE(3228), - [sym_member_access_expression] = STATE(2609), - [sym_object_creation_expression] = STATE(3289), - [sym_parenthesized_expression] = STATE(3289), - [sym__parenthesized_lvalue_expression] = STATE(2609), - [sym_lambda_expression] = STATE(3228), - [sym__lambda_expression_init] = STATE(7415), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3228), - [sym_anonymous_method_expression] = STATE(3228), - [sym_anonymous_object_creation_expression] = STATE(3228), - [sym_implicit_array_creation_expression] = STATE(3228), - [sym_implicit_object_creation_expression] = STATE(3228), - [sym_implicit_stackalloc_expression] = STATE(3228), - [sym_initializer_expression] = STATE(3228), - [sym_default_expression] = STATE(3228), - [sym_with_expression] = STATE(3228), - [sym_sizeof_expression] = STATE(3228), - [sym_typeof_expression] = STATE(3228), - [sym_makeref_expression] = STATE(3228), - [sym_ref_expression] = STATE(3228), - [sym_reftype_expression] = STATE(3228), - [sym_refvalue_expression] = STATE(3228), - [sym_stackalloc_expression] = STATE(3228), - [sym_range_expression] = STATE(3228), - [sym_tuple_expression] = STATE(2609), - [sym_literal] = STATE(3228), - [sym_character_literal] = STATE(3278), - [sym_string_literal] = STATE(3278), - [sym_raw_string_literal] = STATE(3278), - [sym_boolean_literal] = STATE(3278), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3228), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2816), + [sym__name] = STATE(5873), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2196), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(3214), + [sym_non_lvalue_expression] = STATE(3495), + [sym_lvalue_expression] = STATE(3208), + [sym__expression_statement_expression] = STATE(3462), + [sym_assignment_expression] = STATE(3497), + [sym_binary_expression] = STATE(3462), + [sym_postfix_unary_expression] = STATE(3497), + [sym_prefix_unary_expression] = STATE(3497), + [sym__pointer_indirection_expression] = STATE(2815), + [sym_query_expression] = STATE(3462), + [sym_from_clause] = STATE(6140), + [sym_conditional_expression] = STATE(3462), + [sym_conditional_access_expression] = STATE(3462), + [sym_as_expression] = STATE(3462), + [sym_is_expression] = STATE(3462), + [sym_is_pattern_expression] = STATE(3462), + [sym_cast_expression] = STATE(3462), + [sym_checked_expression] = STATE(3462), + [sym_invocation_expression] = STATE(3497), + [sym_switch_expression] = STATE(3462), + [sym_await_expression] = STATE(3497), + [sym_throw_expression] = STATE(3462), + [sym_element_access_expression] = STATE(2815), + [sym_interpolated_string_expression] = STATE(3462), + [sym_member_access_expression] = STATE(2815), + [sym_object_creation_expression] = STATE(3497), + [sym_parenthesized_expression] = STATE(3497), + [sym__parenthesized_lvalue_expression] = STATE(2815), + [sym_lambda_expression] = STATE(3462), + [sym__lambda_expression_init] = STATE(7520), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3462), + [sym_anonymous_method_expression] = STATE(3462), + [sym_anonymous_object_creation_expression] = STATE(3462), + [sym_implicit_array_creation_expression] = STATE(3462), + [sym_implicit_object_creation_expression] = STATE(3462), + [sym_implicit_stackalloc_expression] = STATE(3462), + [sym_initializer_expression] = STATE(3462), + [sym_default_expression] = STATE(3462), + [sym_with_expression] = STATE(3462), + [sym_sizeof_expression] = STATE(3462), + [sym_typeof_expression] = STATE(3462), + [sym_makeref_expression] = STATE(3462), + [sym_ref_expression] = STATE(3462), + [sym_reftype_expression] = STATE(3462), + [sym_refvalue_expression] = STATE(3462), + [sym_stackalloc_expression] = STATE(3462), + [sym_range_expression] = STATE(3462), + [sym_tuple_expression] = STATE(2815), + [sym_literal] = STATE(3462), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3462), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(1138), [sym_preproc_endregion] = STATE(1138), [sym_preproc_line] = STATE(1138), @@ -234181,47 +234067,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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3396), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3367), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1153), - [anon_sym_LPAREN] = ACTIONS(1915), - [anon_sym_ref] = ACTIONS(1917), - [anon_sym_LBRACE] = ACTIONS(1159), - [anon_sym_delegate] = ACTIONS(1161), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1305), + [anon_sym_LPAREN] = ACTIONS(1369), + [anon_sym_ref] = ACTIONS(1371), + [anon_sym_LBRACE] = ACTIONS(1311), + [anon_sym_delegate] = ACTIONS(1313), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1919), + [anon_sym_new] = ACTIONS(1315), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1167), - [anon_sym_BANG] = ACTIONS(1923), - [anon_sym_TILDE] = ACTIONS(1923), - [anon_sym_PLUS_PLUS] = ACTIONS(1923), - [anon_sym_DASH_DASH] = ACTIONS(1923), - [anon_sym_true] = ACTIONS(1173), - [anon_sym_false] = ACTIONS(1173), - [anon_sym_PLUS] = ACTIONS(1921), - [anon_sym_DASH] = ACTIONS(1921), - [anon_sym_STAR] = ACTIONS(1925), - [anon_sym_CARET] = ACTIONS(1923), - [anon_sym_AMP] = ACTIONS(1923), - [anon_sym_this] = ACTIONS(1177), + [anon_sym_checked] = ACTIONS(1317), + [anon_sym_BANG] = ACTIONS(1375), + [anon_sym_TILDE] = ACTIONS(1375), + [anon_sym_PLUS_PLUS] = ACTIONS(1375), + [anon_sym_DASH_DASH] = ACTIONS(1375), + [anon_sym_true] = ACTIONS(77), + [anon_sym_false] = ACTIONS(77), + [anon_sym_PLUS] = ACTIONS(1373), + [anon_sym_DASH] = ACTIONS(1373), + [anon_sym_STAR] = ACTIONS(1377), + [anon_sym_CARET] = ACTIONS(1375), + [anon_sym_AMP] = ACTIONS(1375), + [anon_sym_this] = ACTIONS(1321), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1179), + [anon_sym_base] = ACTIONS(1323), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1181), - [anon_sym_unchecked] = ACTIONS(1167), + [sym_predefined_type] = ACTIONS(91), + [anon_sym_unchecked] = ACTIONS(1317), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1183), - [anon_sym_throw] = ACTIONS(1927), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(1379), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1929), - [anon_sym_DOT_DOT] = ACTIONS(1931), + [anon_sym_await] = ACTIONS(1381), + [anon_sym_DOT_DOT] = ACTIONS(1383), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -234234,19 +234120,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1191), - [anon_sym_sizeof] = ACTIONS(1193), - [anon_sym_typeof] = ACTIONS(1195), - [anon_sym___makeref] = ACTIONS(1197), - [anon_sym___reftype] = ACTIONS(1199), - [anon_sym___refvalue] = ACTIONS(1201), - [sym_null_literal] = ACTIONS(1203), - [anon_sym_SQUOTE] = ACTIONS(1205), - [sym_integer_literal] = ACTIONS(1203), - [sym_real_literal] = ACTIONS(1207), - [anon_sym_DQUOTE] = ACTIONS(1209), - [sym_verbatim_string_literal] = ACTIONS(1207), - [aux_sym_preproc_if_token1] = ACTIONS(1211), + [anon_sym_stackalloc] = ACTIONS(1331), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(1333), + [anon_sym___reftype] = ACTIONS(1335), + [anon_sym___refvalue] = ACTIONS(1337), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_literal] = ACTIONS(143), + [anon_sym_DQUOTE] = ACTIONS(145), + [sym_verbatim_string_literal] = ACTIONS(143), + [aux_sym_preproc_if_token1] = ACTIONS(1339), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -234257,90 +234143,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1213), - [sym_interpolation_verbatim_start] = ACTIONS(1215), - [sym_interpolation_raw_start] = ACTIONS(1217), - [sym_raw_string_start] = ACTIONS(1219), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [sym_interpolation_raw_start] = ACTIONS(155), + [sym_raw_string_start] = ACTIONS(157), }, [1139] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2914), - [sym__name] = STATE(5885), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2357), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(3722), - [sym_non_lvalue_expression] = STATE(3880), - [sym_lvalue_expression] = STATE(2986), - [sym__expression_statement_expression] = STATE(3873), - [sym_assignment_expression] = STATE(3881), - [sym_binary_expression] = STATE(3873), - [sym_postfix_unary_expression] = STATE(3881), - [sym_prefix_unary_expression] = STATE(3881), - [sym__pointer_indirection_expression] = STATE(2913), - [sym_query_expression] = STATE(3873), - [sym_from_clause] = STATE(6168), - [sym_conditional_expression] = STATE(3873), - [sym_conditional_access_expression] = STATE(3873), - [sym_as_expression] = STATE(3873), - [sym_is_expression] = STATE(3873), - [sym_is_pattern_expression] = STATE(3873), - [sym_cast_expression] = STATE(3873), - [sym_checked_expression] = STATE(3873), - [sym_invocation_expression] = STATE(3881), - [sym_switch_expression] = STATE(3873), - [sym_await_expression] = STATE(3881), - [sym_throw_expression] = STATE(3873), - [sym_element_access_expression] = STATE(2913), - [sym_interpolated_string_expression] = STATE(3873), - [sym_member_access_expression] = STATE(2913), - [sym_object_creation_expression] = STATE(3881), - [sym_parenthesized_expression] = STATE(3881), - [sym__parenthesized_lvalue_expression] = STATE(2913), - [sym_lambda_expression] = STATE(3873), - [sym__lambda_expression_init] = STATE(7587), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3873), - [sym_anonymous_method_expression] = STATE(3873), - [sym_anonymous_object_creation_expression] = STATE(3873), - [sym_implicit_array_creation_expression] = STATE(3873), - [sym_implicit_object_creation_expression] = STATE(3873), - [sym_implicit_stackalloc_expression] = STATE(3873), - [sym_initializer_expression] = STATE(3873), - [sym_default_expression] = STATE(3873), - [sym_with_expression] = STATE(3873), - [sym_sizeof_expression] = STATE(3873), - [sym_typeof_expression] = STATE(3873), - [sym_makeref_expression] = STATE(3873), - [sym_ref_expression] = STATE(3873), - [sym_reftype_expression] = STATE(3873), - [sym_refvalue_expression] = STATE(3873), - [sym_stackalloc_expression] = STATE(3873), - [sym_range_expression] = STATE(3873), - [sym_tuple_expression] = STATE(2913), - [sym_literal] = STATE(3873), - [sym_character_literal] = STATE(3877), - [sym_string_literal] = STATE(3877), - [sym_raw_string_literal] = STATE(3877), - [sym_boolean_literal] = STATE(3877), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3873), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2816), + [sym__name] = STATE(5879), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2238), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(4332), + [sym_non_lvalue_expression] = STATE(3495), + [sym_lvalue_expression] = STATE(3197), + [sym__expression_statement_expression] = STATE(3462), + [sym_assignment_expression] = STATE(3497), + [sym_binary_expression] = STATE(3462), + [sym_postfix_unary_expression] = STATE(3497), + [sym_prefix_unary_expression] = STATE(3497), + [sym__pointer_indirection_expression] = STATE(2815), + [sym_query_expression] = STATE(3462), + [sym_from_clause] = STATE(6144), + [sym_conditional_expression] = STATE(3462), + [sym_conditional_access_expression] = STATE(3462), + [sym_as_expression] = STATE(3462), + [sym_is_expression] = STATE(3462), + [sym_is_pattern_expression] = STATE(3462), + [sym_cast_expression] = STATE(3462), + [sym_checked_expression] = STATE(3462), + [sym_invocation_expression] = STATE(3497), + [sym_switch_expression] = STATE(3462), + [sym_await_expression] = STATE(3497), + [sym_throw_expression] = STATE(3462), + [sym_element_access_expression] = STATE(2815), + [sym_interpolated_string_expression] = STATE(3462), + [sym_member_access_expression] = STATE(2815), + [sym_object_creation_expression] = STATE(3497), + [sym_parenthesized_expression] = STATE(3497), + [sym__parenthesized_lvalue_expression] = STATE(2815), + [sym_lambda_expression] = STATE(3462), + [sym__lambda_expression_init] = STATE(7615), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3462), + [sym_anonymous_method_expression] = STATE(3462), + [sym_anonymous_object_creation_expression] = STATE(3462), + [sym_implicit_array_creation_expression] = STATE(3462), + [sym_implicit_object_creation_expression] = STATE(3462), + [sym_implicit_stackalloc_expression] = STATE(3462), + [sym_initializer_expression] = STATE(3462), + [sym_default_expression] = STATE(3462), + [sym_with_expression] = STATE(3462), + [sym_sizeof_expression] = STATE(3462), + [sym_typeof_expression] = STATE(3462), + [sym_makeref_expression] = STATE(3462), + [sym_ref_expression] = STATE(3462), + [sym_reftype_expression] = STATE(3462), + [sym_refvalue_expression] = STATE(3462), + [sym_stackalloc_expression] = STATE(3462), + [sym_range_expression] = STATE(3462), + [sym_tuple_expression] = STATE(2815), + [sym_literal] = STATE(3462), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3462), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(1139), [sym_preproc_endregion] = STATE(1139), [sym_preproc_line] = STATE(1139), @@ -234350,47 +234236,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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3382), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3367), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1627), - [anon_sym_LPAREN] = ACTIONS(2079), - [anon_sym_ref] = ACTIONS(2081), - [anon_sym_LBRACE] = ACTIONS(1633), - [anon_sym_delegate] = ACTIONS(1635), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1305), + [anon_sym_LPAREN] = ACTIONS(1357), + [anon_sym_ref] = ACTIONS(1359), + [anon_sym_LBRACE] = ACTIONS(1311), + [anon_sym_delegate] = ACTIONS(1313), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1731), + [anon_sym_new] = ACTIONS(1315), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1639), - [anon_sym_BANG] = ACTIONS(2085), - [anon_sym_TILDE] = ACTIONS(2085), - [anon_sym_PLUS_PLUS] = ACTIONS(2085), - [anon_sym_DASH_DASH] = ACTIONS(2085), - [anon_sym_true] = ACTIONS(1645), - [anon_sym_false] = ACTIONS(1645), - [anon_sym_PLUS] = ACTIONS(2083), - [anon_sym_DASH] = ACTIONS(2083), - [anon_sym_STAR] = ACTIONS(1737), - [anon_sym_CARET] = ACTIONS(2085), - [anon_sym_AMP] = ACTIONS(2085), - [anon_sym_this] = ACTIONS(1649), + [anon_sym_checked] = ACTIONS(1317), + [anon_sym_BANG] = ACTIONS(1101), + [anon_sym_TILDE] = ACTIONS(1101), + [anon_sym_PLUS_PLUS] = ACTIONS(1101), + [anon_sym_DASH_DASH] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(77), + [anon_sym_false] = ACTIONS(77), + [anon_sym_PLUS] = ACTIONS(1103), + [anon_sym_DASH] = ACTIONS(1103), + [anon_sym_STAR] = ACTIONS(1361), + [anon_sym_CARET] = ACTIONS(1101), + [anon_sym_AMP] = ACTIONS(1101), + [anon_sym_this] = ACTIONS(1321), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1651), + [anon_sym_base] = ACTIONS(1323), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1653), - [anon_sym_unchecked] = ACTIONS(1639), + [sym_predefined_type] = ACTIONS(91), + [anon_sym_unchecked] = ACTIONS(1317), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1655), - [anon_sym_throw] = ACTIONS(2087), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(1363), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2089), - [anon_sym_DOT_DOT] = ACTIONS(2091), + [anon_sym_await] = ACTIONS(1365), + [anon_sym_DOT_DOT] = ACTIONS(1367), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -234403,19 +234289,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1663), - [anon_sym_sizeof] = ACTIONS(1665), - [anon_sym_typeof] = ACTIONS(1667), - [anon_sym___makeref] = ACTIONS(1669), - [anon_sym___reftype] = ACTIONS(1671), - [anon_sym___refvalue] = ACTIONS(1673), - [sym_null_literal] = ACTIONS(1675), - [anon_sym_SQUOTE] = ACTIONS(1677), - [sym_integer_literal] = ACTIONS(1675), - [sym_real_literal] = ACTIONS(1679), - [anon_sym_DQUOTE] = ACTIONS(1681), - [sym_verbatim_string_literal] = ACTIONS(1679), - [aux_sym_preproc_if_token1] = ACTIONS(1683), + [anon_sym_stackalloc] = ACTIONS(1331), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(1333), + [anon_sym___reftype] = ACTIONS(1335), + [anon_sym___refvalue] = ACTIONS(1337), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_literal] = ACTIONS(143), + [anon_sym_DQUOTE] = ACTIONS(145), + [sym_verbatim_string_literal] = ACTIONS(143), + [aux_sym_preproc_if_token1] = ACTIONS(1339), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -234426,90 +234312,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1685), - [sym_interpolation_verbatim_start] = ACTIONS(1687), - [sym_interpolation_raw_start] = ACTIONS(1689), - [sym_raw_string_start] = ACTIONS(1691), + [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(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2610), - [sym__name] = STATE(5905), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2395), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(3145), - [sym_non_lvalue_expression] = STATE(3277), - [sym_lvalue_expression] = STATE(3402), - [sym__expression_statement_expression] = STATE(3228), - [sym_assignment_expression] = STATE(3289), - [sym_binary_expression] = STATE(3228), - [sym_postfix_unary_expression] = STATE(3289), - [sym_prefix_unary_expression] = STATE(3289), - [sym__pointer_indirection_expression] = STATE(2609), - [sym_query_expression] = STATE(3228), - [sym_from_clause] = STATE(6166), - [sym_conditional_expression] = STATE(3228), - [sym_conditional_access_expression] = STATE(3228), - [sym_as_expression] = STATE(3228), - [sym_is_expression] = STATE(3228), - [sym_is_pattern_expression] = STATE(3228), - [sym_cast_expression] = STATE(3228), - [sym_checked_expression] = STATE(3228), - [sym_invocation_expression] = STATE(3289), - [sym_switch_expression] = STATE(3228), - [sym_await_expression] = STATE(3289), - [sym_throw_expression] = STATE(3228), - [sym_element_access_expression] = STATE(2609), - [sym_interpolated_string_expression] = STATE(3228), - [sym_member_access_expression] = STATE(2609), - [sym_object_creation_expression] = STATE(3289), - [sym_parenthesized_expression] = STATE(3289), - [sym__parenthesized_lvalue_expression] = STATE(2609), - [sym_lambda_expression] = STATE(3228), - [sym__lambda_expression_init] = STATE(7415), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3228), - [sym_anonymous_method_expression] = STATE(3228), - [sym_anonymous_object_creation_expression] = STATE(3228), - [sym_implicit_array_creation_expression] = STATE(3228), - [sym_implicit_object_creation_expression] = STATE(3228), - [sym_implicit_stackalloc_expression] = STATE(3228), - [sym_initializer_expression] = STATE(3228), - [sym_default_expression] = STATE(3228), - [sym_with_expression] = STATE(3228), - [sym_sizeof_expression] = STATE(3228), - [sym_typeof_expression] = STATE(3228), - [sym_makeref_expression] = STATE(3228), - [sym_ref_expression] = STATE(3228), - [sym_reftype_expression] = STATE(3228), - [sym_refvalue_expression] = STATE(3228), - [sym_stackalloc_expression] = STATE(3228), - [sym_range_expression] = STATE(3228), - [sym_tuple_expression] = STATE(2609), - [sym_literal] = STATE(3228), - [sym_character_literal] = STATE(3278), - [sym_string_literal] = STATE(3278), - [sym_raw_string_literal] = STATE(3278), - [sym_boolean_literal] = STATE(3278), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3228), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2603), + [sym__name] = STATE(5877), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2344), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(4397), + [sym_non_lvalue_expression] = STATE(3220), + [sym_lvalue_expression] = STATE(3281), + [sym__expression_statement_expression] = STATE(3236), + [sym_assignment_expression] = STATE(3221), + [sym_binary_expression] = STATE(3236), + [sym_postfix_unary_expression] = STATE(3221), + [sym_prefix_unary_expression] = STATE(3221), + [sym__pointer_indirection_expression] = STATE(2602), + [sym_query_expression] = STATE(3236), + [sym_from_clause] = STATE(6146), + [sym_conditional_expression] = STATE(3236), + [sym_conditional_access_expression] = STATE(3236), + [sym_as_expression] = STATE(3236), + [sym_is_expression] = STATE(3236), + [sym_is_pattern_expression] = STATE(3236), + [sym_cast_expression] = STATE(3236), + [sym_checked_expression] = STATE(3236), + [sym_invocation_expression] = STATE(3221), + [sym_switch_expression] = STATE(3236), + [sym_await_expression] = STATE(3221), + [sym_throw_expression] = STATE(3236), + [sym_element_access_expression] = STATE(2602), + [sym_interpolated_string_expression] = STATE(3236), + [sym_member_access_expression] = STATE(2602), + [sym_object_creation_expression] = STATE(3221), + [sym_parenthesized_expression] = STATE(3221), + [sym__parenthesized_lvalue_expression] = STATE(2602), + [sym_lambda_expression] = STATE(3236), + [sym__lambda_expression_init] = STATE(7323), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3236), + [sym_anonymous_method_expression] = STATE(3236), + [sym_anonymous_object_creation_expression] = STATE(3236), + [sym_implicit_array_creation_expression] = STATE(3236), + [sym_implicit_object_creation_expression] = STATE(3236), + [sym_implicit_stackalloc_expression] = STATE(3236), + [sym_initializer_expression] = STATE(3236), + [sym_default_expression] = STATE(3236), + [sym_with_expression] = STATE(3236), + [sym_sizeof_expression] = STATE(3236), + [sym_typeof_expression] = STATE(3236), + [sym_makeref_expression] = STATE(3236), + [sym_ref_expression] = STATE(3236), + [sym_reftype_expression] = STATE(3236), + [sym_refvalue_expression] = STATE(3236), + [sym_stackalloc_expression] = STATE(3236), + [sym_range_expression] = STATE(3236), + [sym_tuple_expression] = STATE(2602), + [sym_literal] = STATE(3236), + [sym_character_literal] = STATE(3272), + [sym_string_literal] = STATE(3272), + [sym_raw_string_literal] = STATE(3272), + [sym_boolean_literal] = STATE(3272), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3236), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(1140), [sym_preproc_endregion] = STATE(1140), [sym_preproc_line] = STATE(1140), @@ -234519,47 +234405,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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3396), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3379), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1153), - [anon_sym_LPAREN] = ACTIONS(1915), - [anon_sym_ref] = ACTIONS(1917), - [anon_sym_LBRACE] = ACTIONS(1159), - [anon_sym_delegate] = ACTIONS(1161), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1149), + [anon_sym_LPAREN] = ACTIONS(1531), + [anon_sym_ref] = ACTIONS(1533), + [anon_sym_LBRACE] = ACTIONS(1155), + [anon_sym_delegate] = ACTIONS(1157), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1919), + [anon_sym_new] = ACTIONS(1535), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1167), - [anon_sym_BANG] = ACTIONS(1923), - [anon_sym_TILDE] = ACTIONS(1923), - [anon_sym_PLUS_PLUS] = ACTIONS(1923), - [anon_sym_DASH_DASH] = ACTIONS(1923), - [anon_sym_true] = ACTIONS(1173), - [anon_sym_false] = ACTIONS(1173), - [anon_sym_PLUS] = ACTIONS(1921), - [anon_sym_DASH] = ACTIONS(1921), - [anon_sym_STAR] = ACTIONS(1925), - [anon_sym_CARET] = ACTIONS(1923), - [anon_sym_AMP] = ACTIONS(1923), - [anon_sym_this] = ACTIONS(1177), + [anon_sym_checked] = ACTIONS(1163), + [anon_sym_BANG] = ACTIONS(1539), + [anon_sym_TILDE] = ACTIONS(1539), + [anon_sym_PLUS_PLUS] = ACTIONS(1539), + [anon_sym_DASH_DASH] = ACTIONS(1539), + [anon_sym_true] = ACTIONS(1169), + [anon_sym_false] = ACTIONS(1169), + [anon_sym_PLUS] = ACTIONS(1537), + [anon_sym_DASH] = ACTIONS(1537), + [anon_sym_STAR] = ACTIONS(1541), + [anon_sym_CARET] = ACTIONS(1539), + [anon_sym_AMP] = ACTIONS(1539), + [anon_sym_this] = ACTIONS(1173), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1179), + [anon_sym_base] = ACTIONS(1175), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1181), - [anon_sym_unchecked] = ACTIONS(1167), + [sym_predefined_type] = ACTIONS(1177), + [anon_sym_unchecked] = ACTIONS(1163), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1183), - [anon_sym_throw] = ACTIONS(1927), + [anon_sym_default] = ACTIONS(1179), + [anon_sym_throw] = ACTIONS(1543), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1929), - [anon_sym_DOT_DOT] = ACTIONS(1931), + [anon_sym_await] = ACTIONS(1545), + [anon_sym_DOT_DOT] = ACTIONS(1547), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -234572,19 +234458,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1191), - [anon_sym_sizeof] = ACTIONS(1193), - [anon_sym_typeof] = ACTIONS(1195), - [anon_sym___makeref] = ACTIONS(1197), - [anon_sym___reftype] = ACTIONS(1199), - [anon_sym___refvalue] = ACTIONS(1201), - [sym_null_literal] = ACTIONS(1203), - [anon_sym_SQUOTE] = ACTIONS(1205), - [sym_integer_literal] = ACTIONS(1203), - [sym_real_literal] = ACTIONS(1207), - [anon_sym_DQUOTE] = ACTIONS(1209), - [sym_verbatim_string_literal] = ACTIONS(1207), - [aux_sym_preproc_if_token1] = ACTIONS(1211), + [anon_sym_stackalloc] = ACTIONS(1187), + [anon_sym_sizeof] = ACTIONS(1189), + [anon_sym_typeof] = ACTIONS(1191), + [anon_sym___makeref] = ACTIONS(1193), + [anon_sym___reftype] = ACTIONS(1195), + [anon_sym___refvalue] = ACTIONS(1197), + [sym_null_literal] = ACTIONS(1199), + [anon_sym_SQUOTE] = ACTIONS(1201), + [sym_integer_literal] = ACTIONS(1199), + [sym_real_literal] = ACTIONS(1203), + [anon_sym_DQUOTE] = ACTIONS(1205), + [sym_verbatim_string_literal] = ACTIONS(1203), + [aux_sym_preproc_if_token1] = ACTIONS(1207), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -234595,90 +234481,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1213), - [sym_interpolation_verbatim_start] = ACTIONS(1215), - [sym_interpolation_raw_start] = ACTIONS(1217), - [sym_raw_string_start] = ACTIONS(1219), + [sym_interpolation_regular_start] = ACTIONS(1209), + [sym_interpolation_verbatim_start] = ACTIONS(1211), + [sym_interpolation_raw_start] = ACTIONS(1213), + [sym_raw_string_start] = ACTIONS(1215), }, [1141] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2610), - [sym__name] = STATE(5905), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2395), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(4701), - [sym_non_lvalue_expression] = STATE(3277), - [sym_lvalue_expression] = STATE(3402), - [sym__expression_statement_expression] = STATE(3228), - [sym_assignment_expression] = STATE(3289), - [sym_binary_expression] = STATE(3228), - [sym_postfix_unary_expression] = STATE(3289), - [sym_prefix_unary_expression] = STATE(3289), - [sym__pointer_indirection_expression] = STATE(2609), - [sym_query_expression] = STATE(3228), - [sym_from_clause] = STATE(6166), - [sym_conditional_expression] = STATE(3228), - [sym_conditional_access_expression] = STATE(3228), - [sym_as_expression] = STATE(3228), - [sym_is_expression] = STATE(3228), - [sym_is_pattern_expression] = STATE(3228), - [sym_cast_expression] = STATE(3228), - [sym_checked_expression] = STATE(3228), - [sym_invocation_expression] = STATE(3289), - [sym_switch_expression] = STATE(3228), - [sym_await_expression] = STATE(3289), - [sym_throw_expression] = STATE(3228), - [sym_element_access_expression] = STATE(2609), - [sym_interpolated_string_expression] = STATE(3228), - [sym_member_access_expression] = STATE(2609), - [sym_object_creation_expression] = STATE(3289), - [sym_parenthesized_expression] = STATE(3289), - [sym__parenthesized_lvalue_expression] = STATE(2609), - [sym_lambda_expression] = STATE(3228), - [sym__lambda_expression_init] = STATE(7415), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3228), - [sym_anonymous_method_expression] = STATE(3228), - [sym_anonymous_object_creation_expression] = STATE(3228), - [sym_implicit_array_creation_expression] = STATE(3228), - [sym_implicit_object_creation_expression] = STATE(3228), - [sym_implicit_stackalloc_expression] = STATE(3228), - [sym_initializer_expression] = STATE(3228), - [sym_default_expression] = STATE(3228), - [sym_with_expression] = STATE(3228), - [sym_sizeof_expression] = STATE(3228), - [sym_typeof_expression] = STATE(3228), - [sym_makeref_expression] = STATE(3228), - [sym_ref_expression] = STATE(3228), - [sym_reftype_expression] = STATE(3228), - [sym_refvalue_expression] = STATE(3228), - [sym_stackalloc_expression] = STATE(3228), - [sym_range_expression] = STATE(3228), - [sym_tuple_expression] = STATE(2609), - [sym_literal] = STATE(3228), - [sym_character_literal] = STATE(3278), - [sym_string_literal] = STATE(3278), - [sym_raw_string_literal] = STATE(3278), - [sym_boolean_literal] = STATE(3278), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3228), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2603), + [sym__name] = STATE(5877), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2344), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(3123), + [sym_non_lvalue_expression] = STATE(3220), + [sym_lvalue_expression] = STATE(3281), + [sym__expression_statement_expression] = STATE(3236), + [sym_assignment_expression] = STATE(3221), + [sym_binary_expression] = STATE(3236), + [sym_postfix_unary_expression] = STATE(3221), + [sym_prefix_unary_expression] = STATE(3221), + [sym__pointer_indirection_expression] = STATE(2602), + [sym_query_expression] = STATE(3236), + [sym_from_clause] = STATE(6146), + [sym_conditional_expression] = STATE(3236), + [sym_conditional_access_expression] = STATE(3236), + [sym_as_expression] = STATE(3236), + [sym_is_expression] = STATE(3236), + [sym_is_pattern_expression] = STATE(3236), + [sym_cast_expression] = STATE(3236), + [sym_checked_expression] = STATE(3236), + [sym_invocation_expression] = STATE(3221), + [sym_switch_expression] = STATE(3236), + [sym_await_expression] = STATE(3221), + [sym_throw_expression] = STATE(3236), + [sym_element_access_expression] = STATE(2602), + [sym_interpolated_string_expression] = STATE(3236), + [sym_member_access_expression] = STATE(2602), + [sym_object_creation_expression] = STATE(3221), + [sym_parenthesized_expression] = STATE(3221), + [sym__parenthesized_lvalue_expression] = STATE(2602), + [sym_lambda_expression] = STATE(3236), + [sym__lambda_expression_init] = STATE(7323), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3236), + [sym_anonymous_method_expression] = STATE(3236), + [sym_anonymous_object_creation_expression] = STATE(3236), + [sym_implicit_array_creation_expression] = STATE(3236), + [sym_implicit_object_creation_expression] = STATE(3236), + [sym_implicit_stackalloc_expression] = STATE(3236), + [sym_initializer_expression] = STATE(3236), + [sym_default_expression] = STATE(3236), + [sym_with_expression] = STATE(3236), + [sym_sizeof_expression] = STATE(3236), + [sym_typeof_expression] = STATE(3236), + [sym_makeref_expression] = STATE(3236), + [sym_ref_expression] = STATE(3236), + [sym_reftype_expression] = STATE(3236), + [sym_refvalue_expression] = STATE(3236), + [sym_stackalloc_expression] = STATE(3236), + [sym_range_expression] = STATE(3236), + [sym_tuple_expression] = STATE(2602), + [sym_literal] = STATE(3236), + [sym_character_literal] = STATE(3272), + [sym_string_literal] = STATE(3272), + [sym_raw_string_literal] = STATE(3272), + [sym_boolean_literal] = STATE(3272), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3236), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(1141), [sym_preproc_endregion] = STATE(1141), [sym_preproc_line] = STATE(1141), @@ -234688,47 +234574,47 @@ 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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3396), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3379), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1153), - [anon_sym_LPAREN] = ACTIONS(1915), - [anon_sym_ref] = ACTIONS(1917), - [anon_sym_LBRACE] = ACTIONS(1159), - [anon_sym_delegate] = ACTIONS(1161), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1149), + [anon_sym_LPAREN] = ACTIONS(1531), + [anon_sym_ref] = ACTIONS(1533), + [anon_sym_LBRACE] = ACTIONS(1155), + [anon_sym_delegate] = ACTIONS(1157), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1919), + [anon_sym_new] = ACTIONS(1535), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1167), - [anon_sym_BANG] = ACTIONS(1923), - [anon_sym_TILDE] = ACTIONS(1923), - [anon_sym_PLUS_PLUS] = ACTIONS(1923), - [anon_sym_DASH_DASH] = ACTIONS(1923), - [anon_sym_true] = ACTIONS(1173), - [anon_sym_false] = ACTIONS(1173), - [anon_sym_PLUS] = ACTIONS(1921), - [anon_sym_DASH] = ACTIONS(1921), - [anon_sym_STAR] = ACTIONS(1925), - [anon_sym_CARET] = ACTIONS(1923), - [anon_sym_AMP] = ACTIONS(1923), - [anon_sym_this] = ACTIONS(1177), + [anon_sym_checked] = ACTIONS(1163), + [anon_sym_BANG] = ACTIONS(1539), + [anon_sym_TILDE] = ACTIONS(1539), + [anon_sym_PLUS_PLUS] = ACTIONS(1539), + [anon_sym_DASH_DASH] = ACTIONS(1539), + [anon_sym_true] = ACTIONS(1169), + [anon_sym_false] = ACTIONS(1169), + [anon_sym_PLUS] = ACTIONS(1537), + [anon_sym_DASH] = ACTIONS(1537), + [anon_sym_STAR] = ACTIONS(1541), + [anon_sym_CARET] = ACTIONS(1539), + [anon_sym_AMP] = ACTIONS(1539), + [anon_sym_this] = ACTIONS(1173), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1179), + [anon_sym_base] = ACTIONS(1175), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1181), - [anon_sym_unchecked] = ACTIONS(1167), + [sym_predefined_type] = ACTIONS(1177), + [anon_sym_unchecked] = ACTIONS(1163), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1183), - [anon_sym_throw] = ACTIONS(1927), + [anon_sym_default] = ACTIONS(1179), + [anon_sym_throw] = ACTIONS(1543), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1929), - [anon_sym_DOT_DOT] = ACTIONS(1931), + [anon_sym_await] = ACTIONS(1545), + [anon_sym_DOT_DOT] = ACTIONS(1547), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -234741,19 +234627,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1191), - [anon_sym_sizeof] = ACTIONS(1193), - [anon_sym_typeof] = ACTIONS(1195), - [anon_sym___makeref] = ACTIONS(1197), - [anon_sym___reftype] = ACTIONS(1199), - [anon_sym___refvalue] = ACTIONS(1201), - [sym_null_literal] = ACTIONS(1203), - [anon_sym_SQUOTE] = ACTIONS(1205), - [sym_integer_literal] = ACTIONS(1203), - [sym_real_literal] = ACTIONS(1207), - [anon_sym_DQUOTE] = ACTIONS(1209), - [sym_verbatim_string_literal] = ACTIONS(1207), - [aux_sym_preproc_if_token1] = ACTIONS(1211), + [anon_sym_stackalloc] = ACTIONS(1187), + [anon_sym_sizeof] = ACTIONS(1189), + [anon_sym_typeof] = ACTIONS(1191), + [anon_sym___makeref] = ACTIONS(1193), + [anon_sym___reftype] = ACTIONS(1195), + [anon_sym___refvalue] = ACTIONS(1197), + [sym_null_literal] = ACTIONS(1199), + [anon_sym_SQUOTE] = ACTIONS(1201), + [sym_integer_literal] = ACTIONS(1199), + [sym_real_literal] = ACTIONS(1203), + [anon_sym_DQUOTE] = ACTIONS(1205), + [sym_verbatim_string_literal] = ACTIONS(1203), + [aux_sym_preproc_if_token1] = ACTIONS(1207), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -234764,90 +234650,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1213), - [sym_interpolation_verbatim_start] = ACTIONS(1215), - [sym_interpolation_raw_start] = ACTIONS(1217), - [sym_raw_string_start] = ACTIONS(1219), + [sym_interpolation_regular_start] = ACTIONS(1209), + [sym_interpolation_verbatim_start] = ACTIONS(1211), + [sym_interpolation_raw_start] = ACTIONS(1213), + [sym_raw_string_start] = ACTIONS(1215), }, [1142] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2610), - [sym__name] = STATE(5879), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2197), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(3145), - [sym_non_lvalue_expression] = STATE(3277), - [sym_lvalue_expression] = STATE(3134), - [sym__expression_statement_expression] = STATE(3228), - [sym_assignment_expression] = STATE(3289), - [sym_binary_expression] = STATE(3228), - [sym_postfix_unary_expression] = STATE(3289), - [sym_prefix_unary_expression] = STATE(3289), - [sym__pointer_indirection_expression] = STATE(2609), - [sym_query_expression] = STATE(3228), - [sym_from_clause] = STATE(6162), - [sym_conditional_expression] = STATE(3228), - [sym_conditional_access_expression] = STATE(3228), - [sym_as_expression] = STATE(3228), - [sym_is_expression] = STATE(3228), - [sym_is_pattern_expression] = STATE(3228), - [sym_cast_expression] = STATE(3228), - [sym_checked_expression] = STATE(3228), - [sym_invocation_expression] = STATE(3289), - [sym_switch_expression] = STATE(3228), - [sym_await_expression] = STATE(3289), - [sym_throw_expression] = STATE(3228), - [sym_element_access_expression] = STATE(2609), - [sym_interpolated_string_expression] = STATE(3228), - [sym_member_access_expression] = STATE(2609), - [sym_object_creation_expression] = STATE(3289), - [sym_parenthesized_expression] = STATE(3289), - [sym__parenthesized_lvalue_expression] = STATE(2609), - [sym_lambda_expression] = STATE(3228), - [sym__lambda_expression_init] = STATE(7695), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3228), - [sym_anonymous_method_expression] = STATE(3228), - [sym_anonymous_object_creation_expression] = STATE(3228), - [sym_implicit_array_creation_expression] = STATE(3228), - [sym_implicit_object_creation_expression] = STATE(3228), - [sym_implicit_stackalloc_expression] = STATE(3228), - [sym_initializer_expression] = STATE(3228), - [sym_default_expression] = STATE(3228), - [sym_with_expression] = STATE(3228), - [sym_sizeof_expression] = STATE(3228), - [sym_typeof_expression] = STATE(3228), - [sym_makeref_expression] = STATE(3228), - [sym_ref_expression] = STATE(3228), - [sym_reftype_expression] = STATE(3228), - [sym_refvalue_expression] = STATE(3228), - [sym_stackalloc_expression] = STATE(3228), - [sym_range_expression] = STATE(3228), - [sym_tuple_expression] = STATE(2609), - [sym_literal] = STATE(3228), - [sym_character_literal] = STATE(3278), - [sym_string_literal] = STATE(3278), - [sym_raw_string_literal] = STATE(3278), - [sym_boolean_literal] = STATE(3278), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3228), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2603), + [sym__name] = STATE(5869), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2367), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(4515), + [sym_non_lvalue_expression] = STATE(3220), + [sym_lvalue_expression] = STATE(3377), + [sym__expression_statement_expression] = STATE(3236), + [sym_assignment_expression] = STATE(3221), + [sym_binary_expression] = STATE(3236), + [sym_postfix_unary_expression] = STATE(3221), + [sym_prefix_unary_expression] = STATE(3221), + [sym__pointer_indirection_expression] = STATE(2602), + [sym_query_expression] = STATE(3236), + [sym_from_clause] = STATE(6128), + [sym_conditional_expression] = STATE(3236), + [sym_conditional_access_expression] = STATE(3236), + [sym_as_expression] = STATE(3236), + [sym_is_expression] = STATE(3236), + [sym_is_pattern_expression] = STATE(3236), + [sym_cast_expression] = STATE(3236), + [sym_checked_expression] = STATE(3236), + [sym_invocation_expression] = STATE(3221), + [sym_switch_expression] = STATE(3236), + [sym_await_expression] = STATE(3221), + [sym_throw_expression] = STATE(3236), + [sym_element_access_expression] = STATE(2602), + [sym_interpolated_string_expression] = STATE(3236), + [sym_member_access_expression] = STATE(2602), + [sym_object_creation_expression] = STATE(3221), + [sym_parenthesized_expression] = STATE(3221), + [sym__parenthesized_lvalue_expression] = STATE(2602), + [sym_lambda_expression] = STATE(3236), + [sym__lambda_expression_init] = STATE(7632), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3236), + [sym_anonymous_method_expression] = STATE(3236), + [sym_anonymous_object_creation_expression] = STATE(3236), + [sym_implicit_array_creation_expression] = STATE(3236), + [sym_implicit_object_creation_expression] = STATE(3236), + [sym_implicit_stackalloc_expression] = STATE(3236), + [sym_initializer_expression] = STATE(3236), + [sym_default_expression] = STATE(3236), + [sym_with_expression] = STATE(3236), + [sym_sizeof_expression] = STATE(3236), + [sym_typeof_expression] = STATE(3236), + [sym_makeref_expression] = STATE(3236), + [sym_ref_expression] = STATE(3236), + [sym_reftype_expression] = STATE(3236), + [sym_refvalue_expression] = STATE(3236), + [sym_stackalloc_expression] = STATE(3236), + [sym_range_expression] = STATE(3236), + [sym_tuple_expression] = STATE(2602), + [sym_literal] = STATE(3236), + [sym_character_literal] = STATE(3272), + [sym_string_literal] = STATE(3272), + [sym_raw_string_literal] = STATE(3272), + [sym_boolean_literal] = STATE(3272), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3236), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(1142), [sym_preproc_endregion] = STATE(1142), [sym_preproc_line] = STATE(1142), @@ -234857,47 +234743,47 @@ 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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3396), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3379), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1153), - [anon_sym_LPAREN] = ACTIONS(1371), - [anon_sym_ref] = ACTIONS(1373), - [anon_sym_LBRACE] = ACTIONS(1159), - [anon_sym_delegate] = ACTIONS(1161), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1149), + [anon_sym_LPAREN] = ACTIONS(1913), + [anon_sym_ref] = ACTIONS(1915), + [anon_sym_LBRACE] = ACTIONS(1155), + [anon_sym_delegate] = ACTIONS(1157), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1163), + [anon_sym_new] = ACTIONS(1917), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1167), - [anon_sym_BANG] = ACTIONS(1377), - [anon_sym_TILDE] = ACTIONS(1377), - [anon_sym_PLUS_PLUS] = ACTIONS(1377), - [anon_sym_DASH_DASH] = ACTIONS(1377), - [anon_sym_true] = ACTIONS(1173), - [anon_sym_false] = ACTIONS(1173), - [anon_sym_PLUS] = ACTIONS(1375), - [anon_sym_DASH] = ACTIONS(1375), - [anon_sym_STAR] = ACTIONS(1379), - [anon_sym_CARET] = ACTIONS(1377), - [anon_sym_AMP] = ACTIONS(1377), - [anon_sym_this] = ACTIONS(1177), + [anon_sym_checked] = ACTIONS(1163), + [anon_sym_BANG] = ACTIONS(1921), + [anon_sym_TILDE] = ACTIONS(1921), + [anon_sym_PLUS_PLUS] = ACTIONS(1921), + [anon_sym_DASH_DASH] = ACTIONS(1921), + [anon_sym_true] = ACTIONS(1169), + [anon_sym_false] = ACTIONS(1169), + [anon_sym_PLUS] = ACTIONS(1919), + [anon_sym_DASH] = ACTIONS(1919), + [anon_sym_STAR] = ACTIONS(1923), + [anon_sym_CARET] = ACTIONS(1921), + [anon_sym_AMP] = ACTIONS(1921), + [anon_sym_this] = ACTIONS(1173), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1179), + [anon_sym_base] = ACTIONS(1175), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1181), - [anon_sym_unchecked] = ACTIONS(1167), + [sym_predefined_type] = ACTIONS(1177), + [anon_sym_unchecked] = ACTIONS(1163), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1183), - [anon_sym_throw] = ACTIONS(1381), + [anon_sym_default] = ACTIONS(1179), + [anon_sym_throw] = ACTIONS(1925), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1383), - [anon_sym_DOT_DOT] = ACTIONS(1385), + [anon_sym_await] = ACTIONS(1927), + [anon_sym_DOT_DOT] = ACTIONS(1929), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -234910,19 +234796,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1191), - [anon_sym_sizeof] = ACTIONS(1193), - [anon_sym_typeof] = ACTIONS(1195), - [anon_sym___makeref] = ACTIONS(1197), - [anon_sym___reftype] = ACTIONS(1199), - [anon_sym___refvalue] = ACTIONS(1201), - [sym_null_literal] = ACTIONS(1203), - [anon_sym_SQUOTE] = ACTIONS(1205), - [sym_integer_literal] = ACTIONS(1203), - [sym_real_literal] = ACTIONS(1207), - [anon_sym_DQUOTE] = ACTIONS(1209), - [sym_verbatim_string_literal] = ACTIONS(1207), - [aux_sym_preproc_if_token1] = ACTIONS(1211), + [anon_sym_stackalloc] = ACTIONS(1187), + [anon_sym_sizeof] = ACTIONS(1189), + [anon_sym_typeof] = ACTIONS(1191), + [anon_sym___makeref] = ACTIONS(1193), + [anon_sym___reftype] = ACTIONS(1195), + [anon_sym___refvalue] = ACTIONS(1197), + [sym_null_literal] = ACTIONS(1199), + [anon_sym_SQUOTE] = ACTIONS(1201), + [sym_integer_literal] = ACTIONS(1199), + [sym_real_literal] = ACTIONS(1203), + [anon_sym_DQUOTE] = ACTIONS(1205), + [sym_verbatim_string_literal] = ACTIONS(1203), + [aux_sym_preproc_if_token1] = ACTIONS(1207), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -234933,90 +234819,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1213), - [sym_interpolation_verbatim_start] = ACTIONS(1215), - [sym_interpolation_raw_start] = ACTIONS(1217), - [sym_raw_string_start] = ACTIONS(1219), + [sym_interpolation_regular_start] = ACTIONS(1209), + [sym_interpolation_verbatim_start] = ACTIONS(1211), + [sym_interpolation_raw_start] = ACTIONS(1213), + [sym_raw_string_start] = ACTIONS(1215), }, [1143] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(5160), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2204), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(5540), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3461), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3080), - [sym_postfix_unary_expression] = STATE(3111), - [sym_prefix_unary_expression] = STATE(3111), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6154), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3080), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3111), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3080), - [sym_member_access_expression] = STATE(2484), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3111), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7547), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(3080), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3080), - [sym_typeof_expression] = STATE(3080), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2484), - [sym_literal] = STATE(3080), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2603), + [sym__name] = STATE(5869), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2367), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(4516), + [sym_non_lvalue_expression] = STATE(3220), + [sym_lvalue_expression] = STATE(3377), + [sym__expression_statement_expression] = STATE(3236), + [sym_assignment_expression] = STATE(3221), + [sym_binary_expression] = STATE(3236), + [sym_postfix_unary_expression] = STATE(3221), + [sym_prefix_unary_expression] = STATE(3221), + [sym__pointer_indirection_expression] = STATE(2602), + [sym_query_expression] = STATE(3236), + [sym_from_clause] = STATE(6128), + [sym_conditional_expression] = STATE(3236), + [sym_conditional_access_expression] = STATE(3236), + [sym_as_expression] = STATE(3236), + [sym_is_expression] = STATE(3236), + [sym_is_pattern_expression] = STATE(3236), + [sym_cast_expression] = STATE(3236), + [sym_checked_expression] = STATE(3236), + [sym_invocation_expression] = STATE(3221), + [sym_switch_expression] = STATE(3236), + [sym_await_expression] = STATE(3221), + [sym_throw_expression] = STATE(3236), + [sym_element_access_expression] = STATE(2602), + [sym_interpolated_string_expression] = STATE(3236), + [sym_member_access_expression] = STATE(2602), + [sym_object_creation_expression] = STATE(3221), + [sym_parenthesized_expression] = STATE(3221), + [sym__parenthesized_lvalue_expression] = STATE(2602), + [sym_lambda_expression] = STATE(3236), + [sym__lambda_expression_init] = STATE(7632), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3236), + [sym_anonymous_method_expression] = STATE(3236), + [sym_anonymous_object_creation_expression] = STATE(3236), + [sym_implicit_array_creation_expression] = STATE(3236), + [sym_implicit_object_creation_expression] = STATE(3236), + [sym_implicit_stackalloc_expression] = STATE(3236), + [sym_initializer_expression] = STATE(3236), + [sym_default_expression] = STATE(3236), + [sym_with_expression] = STATE(3236), + [sym_sizeof_expression] = STATE(3236), + [sym_typeof_expression] = STATE(3236), + [sym_makeref_expression] = STATE(3236), + [sym_ref_expression] = STATE(3236), + [sym_reftype_expression] = STATE(3236), + [sym_refvalue_expression] = STATE(3236), + [sym_stackalloc_expression] = STATE(3236), + [sym_range_expression] = STATE(3236), + [sym_tuple_expression] = STATE(2602), + [sym_literal] = STATE(3236), + [sym_character_literal] = STATE(3272), + [sym_string_literal] = STATE(3272), + [sym_raw_string_literal] = STATE(3272), + [sym_boolean_literal] = STATE(3272), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3236), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(1143), [sym_preproc_endregion] = STATE(1143), [sym_preproc_line] = STATE(1143), @@ -235026,47 +234912,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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3379), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1481), - [anon_sym_LPAREN] = ACTIONS(1497), - [anon_sym_ref] = ACTIONS(1499), - [anon_sym_LBRACE] = ACTIONS(1487), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1149), + [anon_sym_LPAREN] = ACTIONS(1913), + [anon_sym_ref] = ACTIONS(1915), + [anon_sym_LBRACE] = ACTIONS(1155), + [anon_sym_delegate] = ACTIONS(1157), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1501), + [anon_sym_new] = ACTIONS(1917), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = 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(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(1163), + [anon_sym_BANG] = ACTIONS(1921), + [anon_sym_TILDE] = ACTIONS(1921), + [anon_sym_PLUS_PLUS] = ACTIONS(1921), + [anon_sym_DASH_DASH] = ACTIONS(1921), + [anon_sym_true] = ACTIONS(1169), + [anon_sym_false] = ACTIONS(1169), + [anon_sym_PLUS] = ACTIONS(1919), + [anon_sym_DASH] = ACTIONS(1919), + [anon_sym_STAR] = ACTIONS(1923), + [anon_sym_CARET] = ACTIONS(1921), + [anon_sym_AMP] = ACTIONS(1921), + [anon_sym_this] = ACTIONS(1173), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), + [anon_sym_base] = ACTIONS(1175), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1067), + [sym_predefined_type] = ACTIONS(1177), + [anon_sym_unchecked] = ACTIONS(1163), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1503), + [anon_sym_default] = ACTIONS(1179), + [anon_sym_throw] = ACTIONS(1925), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1505), - [anon_sym_DOT_DOT] = ACTIONS(1507), + [anon_sym_await] = ACTIONS(1927), + [anon_sym_DOT_DOT] = ACTIONS(1929), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -235079,19 +234965,19 @@ static const uint16_t ts_parse_table[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(1089), + [anon_sym_stackalloc] = ACTIONS(1187), + [anon_sym_sizeof] = ACTIONS(1189), + [anon_sym_typeof] = ACTIONS(1191), + [anon_sym___makeref] = ACTIONS(1193), + [anon_sym___reftype] = ACTIONS(1195), + [anon_sym___refvalue] = ACTIONS(1197), + [sym_null_literal] = ACTIONS(1199), + [anon_sym_SQUOTE] = ACTIONS(1201), + [sym_integer_literal] = ACTIONS(1199), + [sym_real_literal] = ACTIONS(1203), + [anon_sym_DQUOTE] = ACTIONS(1205), + [sym_verbatim_string_literal] = ACTIONS(1203), + [aux_sym_preproc_if_token1] = ACTIONS(1207), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -235102,90 +234988,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(151), - [sym_interpolation_verbatim_start] = ACTIONS(153), - [sym_interpolation_raw_start] = ACTIONS(155), - [sym_raw_string_start] = ACTIONS(157), + [sym_interpolation_regular_start] = ACTIONS(1209), + [sym_interpolation_verbatim_start] = ACTIONS(1211), + [sym_interpolation_raw_start] = ACTIONS(1213), + [sym_raw_string_start] = ACTIONS(1215), }, [1144] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(5890), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2375), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(3543), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3656), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3080), - [sym_postfix_unary_expression] = STATE(3111), - [sym_prefix_unary_expression] = STATE(3111), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6157), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3080), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3111), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3080), - [sym_member_access_expression] = STATE(2484), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3111), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7362), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(3080), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3080), - [sym_typeof_expression] = STATE(3080), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2484), - [sym_literal] = STATE(3080), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2603), + [sym__name] = STATE(5869), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2367), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(4668), + [sym_non_lvalue_expression] = STATE(3220), + [sym_lvalue_expression] = STATE(3377), + [sym__expression_statement_expression] = STATE(3236), + [sym_assignment_expression] = STATE(3221), + [sym_binary_expression] = STATE(3236), + [sym_postfix_unary_expression] = STATE(3221), + [sym_prefix_unary_expression] = STATE(3221), + [sym__pointer_indirection_expression] = STATE(2602), + [sym_query_expression] = STATE(3236), + [sym_from_clause] = STATE(6128), + [sym_conditional_expression] = STATE(3236), + [sym_conditional_access_expression] = STATE(3236), + [sym_as_expression] = STATE(3236), + [sym_is_expression] = STATE(3236), + [sym_is_pattern_expression] = STATE(3236), + [sym_cast_expression] = STATE(3236), + [sym_checked_expression] = STATE(3236), + [sym_invocation_expression] = STATE(3221), + [sym_switch_expression] = STATE(3236), + [sym_await_expression] = STATE(3221), + [sym_throw_expression] = STATE(3236), + [sym_element_access_expression] = STATE(2602), + [sym_interpolated_string_expression] = STATE(3236), + [sym_member_access_expression] = STATE(2602), + [sym_object_creation_expression] = STATE(3221), + [sym_parenthesized_expression] = STATE(3221), + [sym__parenthesized_lvalue_expression] = STATE(2602), + [sym_lambda_expression] = STATE(3236), + [sym__lambda_expression_init] = STATE(7632), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3236), + [sym_anonymous_method_expression] = STATE(3236), + [sym_anonymous_object_creation_expression] = STATE(3236), + [sym_implicit_array_creation_expression] = STATE(3236), + [sym_implicit_object_creation_expression] = STATE(3236), + [sym_implicit_stackalloc_expression] = STATE(3236), + [sym_initializer_expression] = STATE(3236), + [sym_default_expression] = STATE(3236), + [sym_with_expression] = STATE(3236), + [sym_sizeof_expression] = STATE(3236), + [sym_typeof_expression] = STATE(3236), + [sym_makeref_expression] = STATE(3236), + [sym_ref_expression] = STATE(3236), + [sym_reftype_expression] = STATE(3236), + [sym_refvalue_expression] = STATE(3236), + [sym_stackalloc_expression] = STATE(3236), + [sym_range_expression] = STATE(3236), + [sym_tuple_expression] = STATE(2602), + [sym_literal] = STATE(3236), + [sym_character_literal] = STATE(3272), + [sym_string_literal] = STATE(3272), + [sym_raw_string_literal] = STATE(3272), + [sym_boolean_literal] = STATE(3272), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3236), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(1144), [sym_preproc_endregion] = STATE(1144), [sym_preproc_line] = STATE(1144), @@ -235195,47 +235081,47 @@ 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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3379), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1481), - [anon_sym_LPAREN] = ACTIONS(2177), - [anon_sym_ref] = ACTIONS(2179), - [anon_sym_LBRACE] = ACTIONS(1487), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1149), + [anon_sym_LPAREN] = ACTIONS(1913), + [anon_sym_ref] = ACTIONS(1915), + [anon_sym_LBRACE] = ACTIONS(1155), + [anon_sym_delegate] = ACTIONS(1157), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(2181), + [anon_sym_new] = ACTIONS(1917), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1067), - [anon_sym_BANG] = ACTIONS(2185), - [anon_sym_TILDE] = ACTIONS(2185), - [anon_sym_PLUS_PLUS] = ACTIONS(2185), - [anon_sym_DASH_DASH] = ACTIONS(2185), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(2183), - [anon_sym_DASH] = ACTIONS(2183), - [anon_sym_STAR] = ACTIONS(2187), - [anon_sym_CARET] = ACTIONS(2185), - [anon_sym_AMP] = ACTIONS(2185), - [anon_sym_this] = ACTIONS(83), + [anon_sym_checked] = ACTIONS(1163), + [anon_sym_BANG] = ACTIONS(1921), + [anon_sym_TILDE] = ACTIONS(1921), + [anon_sym_PLUS_PLUS] = ACTIONS(1921), + [anon_sym_DASH_DASH] = ACTIONS(1921), + [anon_sym_true] = ACTIONS(1169), + [anon_sym_false] = ACTIONS(1169), + [anon_sym_PLUS] = ACTIONS(1919), + [anon_sym_DASH] = ACTIONS(1919), + [anon_sym_STAR] = ACTIONS(1923), + [anon_sym_CARET] = ACTIONS(1921), + [anon_sym_AMP] = ACTIONS(1921), + [anon_sym_this] = ACTIONS(1173), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), + [anon_sym_base] = ACTIONS(1175), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1067), + [sym_predefined_type] = ACTIONS(1177), + [anon_sym_unchecked] = ACTIONS(1163), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(2189), + [anon_sym_default] = ACTIONS(1179), + [anon_sym_throw] = ACTIONS(1925), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2191), - [anon_sym_DOT_DOT] = ACTIONS(2193), + [anon_sym_await] = ACTIONS(1927), + [anon_sym_DOT_DOT] = ACTIONS(1929), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -235248,19 +235134,19 @@ static const uint16_t ts_parse_table[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(1089), + [anon_sym_stackalloc] = ACTIONS(1187), + [anon_sym_sizeof] = ACTIONS(1189), + [anon_sym_typeof] = ACTIONS(1191), + [anon_sym___makeref] = ACTIONS(1193), + [anon_sym___reftype] = ACTIONS(1195), + [anon_sym___refvalue] = ACTIONS(1197), + [sym_null_literal] = ACTIONS(1199), + [anon_sym_SQUOTE] = ACTIONS(1201), + [sym_integer_literal] = ACTIONS(1199), + [sym_real_literal] = ACTIONS(1203), + [anon_sym_DQUOTE] = ACTIONS(1205), + [sym_verbatim_string_literal] = ACTIONS(1203), + [aux_sym_preproc_if_token1] = ACTIONS(1207), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -235271,90 +235157,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(151), - [sym_interpolation_verbatim_start] = ACTIONS(153), - [sym_interpolation_raw_start] = ACTIONS(155), - [sym_raw_string_start] = ACTIONS(157), + [sym_interpolation_regular_start] = ACTIONS(1209), + [sym_interpolation_verbatim_start] = ACTIONS(1211), + [sym_interpolation_raw_start] = ACTIONS(1213), + [sym_raw_string_start] = ACTIONS(1215), }, [1145] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(5889), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2247), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(5672), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(2465), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3080), - [sym_postfix_unary_expression] = STATE(3111), - [sym_prefix_unary_expression] = STATE(3111), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6154), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3080), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3111), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3080), - [sym_member_access_expression] = STATE(2484), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3111), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7530), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(3080), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3080), - [sym_typeof_expression] = STATE(3080), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2484), - [sym_literal] = STATE(3080), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2603), + [sym__name] = STATE(5869), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2367), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(4501), + [sym_non_lvalue_expression] = STATE(3220), + [sym_lvalue_expression] = STATE(3377), + [sym__expression_statement_expression] = STATE(3236), + [sym_assignment_expression] = STATE(3221), + [sym_binary_expression] = STATE(3236), + [sym_postfix_unary_expression] = STATE(3221), + [sym_prefix_unary_expression] = STATE(3221), + [sym__pointer_indirection_expression] = STATE(2602), + [sym_query_expression] = STATE(3236), + [sym_from_clause] = STATE(6128), + [sym_conditional_expression] = STATE(3236), + [sym_conditional_access_expression] = STATE(3236), + [sym_as_expression] = STATE(3236), + [sym_is_expression] = STATE(3236), + [sym_is_pattern_expression] = STATE(3236), + [sym_cast_expression] = STATE(3236), + [sym_checked_expression] = STATE(3236), + [sym_invocation_expression] = STATE(3221), + [sym_switch_expression] = STATE(3236), + [sym_await_expression] = STATE(3221), + [sym_throw_expression] = STATE(3236), + [sym_element_access_expression] = STATE(2602), + [sym_interpolated_string_expression] = STATE(3236), + [sym_member_access_expression] = STATE(2602), + [sym_object_creation_expression] = STATE(3221), + [sym_parenthesized_expression] = STATE(3221), + [sym__parenthesized_lvalue_expression] = STATE(2602), + [sym_lambda_expression] = STATE(3236), + [sym__lambda_expression_init] = STATE(7632), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3236), + [sym_anonymous_method_expression] = STATE(3236), + [sym_anonymous_object_creation_expression] = STATE(3236), + [sym_implicit_array_creation_expression] = STATE(3236), + [sym_implicit_object_creation_expression] = STATE(3236), + [sym_implicit_stackalloc_expression] = STATE(3236), + [sym_initializer_expression] = STATE(3236), + [sym_default_expression] = STATE(3236), + [sym_with_expression] = STATE(3236), + [sym_sizeof_expression] = STATE(3236), + [sym_typeof_expression] = STATE(3236), + [sym_makeref_expression] = STATE(3236), + [sym_ref_expression] = STATE(3236), + [sym_reftype_expression] = STATE(3236), + [sym_refvalue_expression] = STATE(3236), + [sym_stackalloc_expression] = STATE(3236), + [sym_range_expression] = STATE(3236), + [sym_tuple_expression] = STATE(2602), + [sym_literal] = STATE(3236), + [sym_character_literal] = STATE(3272), + [sym_string_literal] = STATE(3272), + [sym_raw_string_literal] = STATE(3272), + [sym_boolean_literal] = STATE(3272), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3236), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(1145), [sym_preproc_endregion] = STATE(1145), [sym_preproc_line] = STATE(1145), @@ -235364,47 +235250,47 @@ 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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3379), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1481), - [anon_sym_LPAREN] = ACTIONS(43), - [anon_sym_ref] = ACTIONS(661), - [anon_sym_LBRACE] = ACTIONS(1487), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1149), + [anon_sym_LPAREN] = ACTIONS(1913), + [anon_sym_ref] = ACTIONS(1915), + [anon_sym_LBRACE] = ACTIONS(1155), + [anon_sym_delegate] = ACTIONS(1157), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1061), + [anon_sym_new] = ACTIONS(1917), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = 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(1585), - [anon_sym_DASH] = ACTIONS(1585), - [anon_sym_STAR] = ACTIONS(1111), - [anon_sym_CARET] = ACTIONS(1587), - [anon_sym_AMP] = ACTIONS(1587), - [anon_sym_this] = ACTIONS(83), + [anon_sym_checked] = ACTIONS(1163), + [anon_sym_BANG] = ACTIONS(1921), + [anon_sym_TILDE] = ACTIONS(1921), + [anon_sym_PLUS_PLUS] = ACTIONS(1921), + [anon_sym_DASH_DASH] = ACTIONS(1921), + [anon_sym_true] = ACTIONS(1169), + [anon_sym_false] = ACTIONS(1169), + [anon_sym_PLUS] = ACTIONS(1919), + [anon_sym_DASH] = ACTIONS(1919), + [anon_sym_STAR] = ACTIONS(1923), + [anon_sym_CARET] = ACTIONS(1921), + [anon_sym_AMP] = ACTIONS(1921), + [anon_sym_this] = ACTIONS(1173), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), + [anon_sym_base] = ACTIONS(1175), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1067), + [sym_predefined_type] = ACTIONS(1177), + [anon_sym_unchecked] = ACTIONS(1163), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1589), + [anon_sym_default] = ACTIONS(1179), + [anon_sym_throw] = ACTIONS(1925), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1591), - [anon_sym_DOT_DOT] = ACTIONS(123), + [anon_sym_await] = ACTIONS(1927), + [anon_sym_DOT_DOT] = ACTIONS(1929), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -235417,19 +235303,19 @@ static const uint16_t ts_parse_table[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(1089), + [anon_sym_stackalloc] = ACTIONS(1187), + [anon_sym_sizeof] = ACTIONS(1189), + [anon_sym_typeof] = ACTIONS(1191), + [anon_sym___makeref] = ACTIONS(1193), + [anon_sym___reftype] = ACTIONS(1195), + [anon_sym___refvalue] = ACTIONS(1197), + [sym_null_literal] = ACTIONS(1199), + [anon_sym_SQUOTE] = ACTIONS(1201), + [sym_integer_literal] = ACTIONS(1199), + [sym_real_literal] = ACTIONS(1203), + [anon_sym_DQUOTE] = ACTIONS(1205), + [sym_verbatim_string_literal] = ACTIONS(1203), + [aux_sym_preproc_if_token1] = ACTIONS(1207), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -235440,90 +235326,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(151), - [sym_interpolation_verbatim_start] = ACTIONS(153), - [sym_interpolation_raw_start] = ACTIONS(155), - [sym_raw_string_start] = ACTIONS(157), + [sym_interpolation_regular_start] = ACTIONS(1209), + [sym_interpolation_verbatim_start] = ACTIONS(1211), + [sym_interpolation_raw_start] = ACTIONS(1213), + [sym_raw_string_start] = ACTIONS(1215), }, [1146] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(5889), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2247), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(4655), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3408), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3080), - [sym_postfix_unary_expression] = STATE(3111), - [sym_prefix_unary_expression] = STATE(3111), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6161), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3080), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3111), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3080), - [sym_member_access_expression] = STATE(2484), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3111), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7323), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(3080), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3080), - [sym_typeof_expression] = STATE(3080), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2484), - [sym_literal] = STATE(3080), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2603), + [sym__name] = STATE(5869), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2367), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(4502), + [sym_non_lvalue_expression] = STATE(3220), + [sym_lvalue_expression] = STATE(3377), + [sym__expression_statement_expression] = STATE(3236), + [sym_assignment_expression] = STATE(3221), + [sym_binary_expression] = STATE(3236), + [sym_postfix_unary_expression] = STATE(3221), + [sym_prefix_unary_expression] = STATE(3221), + [sym__pointer_indirection_expression] = STATE(2602), + [sym_query_expression] = STATE(3236), + [sym_from_clause] = STATE(6128), + [sym_conditional_expression] = STATE(3236), + [sym_conditional_access_expression] = STATE(3236), + [sym_as_expression] = STATE(3236), + [sym_is_expression] = STATE(3236), + [sym_is_pattern_expression] = STATE(3236), + [sym_cast_expression] = STATE(3236), + [sym_checked_expression] = STATE(3236), + [sym_invocation_expression] = STATE(3221), + [sym_switch_expression] = STATE(3236), + [sym_await_expression] = STATE(3221), + [sym_throw_expression] = STATE(3236), + [sym_element_access_expression] = STATE(2602), + [sym_interpolated_string_expression] = STATE(3236), + [sym_member_access_expression] = STATE(2602), + [sym_object_creation_expression] = STATE(3221), + [sym_parenthesized_expression] = STATE(3221), + [sym__parenthesized_lvalue_expression] = STATE(2602), + [sym_lambda_expression] = STATE(3236), + [sym__lambda_expression_init] = STATE(7632), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3236), + [sym_anonymous_method_expression] = STATE(3236), + [sym_anonymous_object_creation_expression] = STATE(3236), + [sym_implicit_array_creation_expression] = STATE(3236), + [sym_implicit_object_creation_expression] = STATE(3236), + [sym_implicit_stackalloc_expression] = STATE(3236), + [sym_initializer_expression] = STATE(3236), + [sym_default_expression] = STATE(3236), + [sym_with_expression] = STATE(3236), + [sym_sizeof_expression] = STATE(3236), + [sym_typeof_expression] = STATE(3236), + [sym_makeref_expression] = STATE(3236), + [sym_ref_expression] = STATE(3236), + [sym_reftype_expression] = STATE(3236), + [sym_refvalue_expression] = STATE(3236), + [sym_stackalloc_expression] = STATE(3236), + [sym_range_expression] = STATE(3236), + [sym_tuple_expression] = STATE(2602), + [sym_literal] = STATE(3236), + [sym_character_literal] = STATE(3272), + [sym_string_literal] = STATE(3272), + [sym_raw_string_literal] = STATE(3272), + [sym_boolean_literal] = STATE(3272), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3236), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(1146), [sym_preproc_endregion] = STATE(1146), [sym_preproc_line] = STATE(1146), @@ -235533,47 +235419,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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3379), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1481), - [anon_sym_LPAREN] = ACTIONS(1483), - [anon_sym_ref] = ACTIONS(1485), - [anon_sym_LBRACE] = ACTIONS(1487), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1149), + [anon_sym_LPAREN] = ACTIONS(1913), + [anon_sym_ref] = ACTIONS(1915), + [anon_sym_LBRACE] = ACTIONS(1155), + [anon_sym_delegate] = ACTIONS(1157), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1101), + [anon_sym_new] = ACTIONS(1917), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1067), - [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(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1489), - [anon_sym_DASH] = ACTIONS(1489), - [anon_sym_STAR] = ACTIONS(1111), - [anon_sym_CARET] = ACTIONS(1491), - [anon_sym_AMP] = ACTIONS(1491), - [anon_sym_this] = ACTIONS(83), + [anon_sym_checked] = ACTIONS(1163), + [anon_sym_BANG] = ACTIONS(1921), + [anon_sym_TILDE] = ACTIONS(1921), + [anon_sym_PLUS_PLUS] = ACTIONS(1921), + [anon_sym_DASH_DASH] = ACTIONS(1921), + [anon_sym_true] = ACTIONS(1169), + [anon_sym_false] = ACTIONS(1169), + [anon_sym_PLUS] = ACTIONS(1919), + [anon_sym_DASH] = ACTIONS(1919), + [anon_sym_STAR] = ACTIONS(1923), + [anon_sym_CARET] = ACTIONS(1921), + [anon_sym_AMP] = ACTIONS(1921), + [anon_sym_this] = ACTIONS(1173), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), + [anon_sym_base] = ACTIONS(1175), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1067), + [sym_predefined_type] = ACTIONS(1177), + [anon_sym_unchecked] = ACTIONS(1163), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1119), + [anon_sym_default] = ACTIONS(1179), + [anon_sym_throw] = ACTIONS(1925), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1121), - [anon_sym_DOT_DOT] = ACTIONS(1125), + [anon_sym_await] = ACTIONS(1927), + [anon_sym_DOT_DOT] = ACTIONS(1929), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -235586,19 +235472,19 @@ static const uint16_t ts_parse_table[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(1089), + [anon_sym_stackalloc] = ACTIONS(1187), + [anon_sym_sizeof] = ACTIONS(1189), + [anon_sym_typeof] = ACTIONS(1191), + [anon_sym___makeref] = ACTIONS(1193), + [anon_sym___reftype] = ACTIONS(1195), + [anon_sym___refvalue] = ACTIONS(1197), + [sym_null_literal] = ACTIONS(1199), + [anon_sym_SQUOTE] = ACTIONS(1201), + [sym_integer_literal] = ACTIONS(1199), + [sym_real_literal] = ACTIONS(1203), + [anon_sym_DQUOTE] = ACTIONS(1205), + [sym_verbatim_string_literal] = ACTIONS(1203), + [aux_sym_preproc_if_token1] = ACTIONS(1207), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -235609,90 +235495,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(151), - [sym_interpolation_verbatim_start] = ACTIONS(153), - [sym_interpolation_raw_start] = ACTIONS(155), - [sym_raw_string_start] = ACTIONS(157), + [sym_interpolation_regular_start] = ACTIONS(1209), + [sym_interpolation_verbatim_start] = ACTIONS(1211), + [sym_interpolation_raw_start] = ACTIONS(1213), + [sym_raw_string_start] = ACTIONS(1215), }, [1147] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(5889), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2247), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(3521), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3408), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3080), - [sym_postfix_unary_expression] = STATE(3111), - [sym_prefix_unary_expression] = STATE(3111), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6161), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3080), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3111), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3080), - [sym_member_access_expression] = STATE(2484), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3111), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7323), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(3080), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3080), - [sym_typeof_expression] = STATE(3080), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2484), - [sym_literal] = STATE(3080), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2603), + [sym__name] = STATE(5869), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2367), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(4503), + [sym_non_lvalue_expression] = STATE(3220), + [sym_lvalue_expression] = STATE(3377), + [sym__expression_statement_expression] = STATE(3236), + [sym_assignment_expression] = STATE(3221), + [sym_binary_expression] = STATE(3236), + [sym_postfix_unary_expression] = STATE(3221), + [sym_prefix_unary_expression] = STATE(3221), + [sym__pointer_indirection_expression] = STATE(2602), + [sym_query_expression] = STATE(3236), + [sym_from_clause] = STATE(6128), + [sym_conditional_expression] = STATE(3236), + [sym_conditional_access_expression] = STATE(3236), + [sym_as_expression] = STATE(3236), + [sym_is_expression] = STATE(3236), + [sym_is_pattern_expression] = STATE(3236), + [sym_cast_expression] = STATE(3236), + [sym_checked_expression] = STATE(3236), + [sym_invocation_expression] = STATE(3221), + [sym_switch_expression] = STATE(3236), + [sym_await_expression] = STATE(3221), + [sym_throw_expression] = STATE(3236), + [sym_element_access_expression] = STATE(2602), + [sym_interpolated_string_expression] = STATE(3236), + [sym_member_access_expression] = STATE(2602), + [sym_object_creation_expression] = STATE(3221), + [sym_parenthesized_expression] = STATE(3221), + [sym__parenthesized_lvalue_expression] = STATE(2602), + [sym_lambda_expression] = STATE(3236), + [sym__lambda_expression_init] = STATE(7632), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3236), + [sym_anonymous_method_expression] = STATE(3236), + [sym_anonymous_object_creation_expression] = STATE(3236), + [sym_implicit_array_creation_expression] = STATE(3236), + [sym_implicit_object_creation_expression] = STATE(3236), + [sym_implicit_stackalloc_expression] = STATE(3236), + [sym_initializer_expression] = STATE(3236), + [sym_default_expression] = STATE(3236), + [sym_with_expression] = STATE(3236), + [sym_sizeof_expression] = STATE(3236), + [sym_typeof_expression] = STATE(3236), + [sym_makeref_expression] = STATE(3236), + [sym_ref_expression] = STATE(3236), + [sym_reftype_expression] = STATE(3236), + [sym_refvalue_expression] = STATE(3236), + [sym_stackalloc_expression] = STATE(3236), + [sym_range_expression] = STATE(3236), + [sym_tuple_expression] = STATE(2602), + [sym_literal] = STATE(3236), + [sym_character_literal] = STATE(3272), + [sym_string_literal] = STATE(3272), + [sym_raw_string_literal] = STATE(3272), + [sym_boolean_literal] = STATE(3272), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3236), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(1147), [sym_preproc_endregion] = STATE(1147), [sym_preproc_line] = STATE(1147), @@ -235702,47 +235588,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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3379), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1481), - [anon_sym_LPAREN] = ACTIONS(1483), - [anon_sym_ref] = ACTIONS(1485), - [anon_sym_LBRACE] = ACTIONS(1487), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1149), + [anon_sym_LPAREN] = ACTIONS(1913), + [anon_sym_ref] = ACTIONS(1915), + [anon_sym_LBRACE] = ACTIONS(1155), + [anon_sym_delegate] = ACTIONS(1157), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1101), + [anon_sym_new] = ACTIONS(1917), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1067), - [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(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1489), - [anon_sym_DASH] = ACTIONS(1489), - [anon_sym_STAR] = ACTIONS(1111), - [anon_sym_CARET] = ACTIONS(1491), - [anon_sym_AMP] = ACTIONS(1491), - [anon_sym_this] = ACTIONS(83), + [anon_sym_checked] = ACTIONS(1163), + [anon_sym_BANG] = ACTIONS(1921), + [anon_sym_TILDE] = ACTIONS(1921), + [anon_sym_PLUS_PLUS] = ACTIONS(1921), + [anon_sym_DASH_DASH] = ACTIONS(1921), + [anon_sym_true] = ACTIONS(1169), + [anon_sym_false] = ACTIONS(1169), + [anon_sym_PLUS] = ACTIONS(1919), + [anon_sym_DASH] = ACTIONS(1919), + [anon_sym_STAR] = ACTIONS(1923), + [anon_sym_CARET] = ACTIONS(1921), + [anon_sym_AMP] = ACTIONS(1921), + [anon_sym_this] = ACTIONS(1173), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), + [anon_sym_base] = ACTIONS(1175), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1067), + [sym_predefined_type] = ACTIONS(1177), + [anon_sym_unchecked] = ACTIONS(1163), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1119), + [anon_sym_default] = ACTIONS(1179), + [anon_sym_throw] = ACTIONS(1925), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1121), - [anon_sym_DOT_DOT] = ACTIONS(1125), + [anon_sym_await] = ACTIONS(1927), + [anon_sym_DOT_DOT] = ACTIONS(1929), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -235755,19 +235641,19 @@ static const uint16_t ts_parse_table[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(1089), + [anon_sym_stackalloc] = ACTIONS(1187), + [anon_sym_sizeof] = ACTIONS(1189), + [anon_sym_typeof] = ACTIONS(1191), + [anon_sym___makeref] = ACTIONS(1193), + [anon_sym___reftype] = ACTIONS(1195), + [anon_sym___refvalue] = ACTIONS(1197), + [sym_null_literal] = ACTIONS(1199), + [anon_sym_SQUOTE] = ACTIONS(1201), + [sym_integer_literal] = ACTIONS(1199), + [sym_real_literal] = ACTIONS(1203), + [anon_sym_DQUOTE] = ACTIONS(1205), + [sym_verbatim_string_literal] = ACTIONS(1203), + [aux_sym_preproc_if_token1] = ACTIONS(1207), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -235778,90 +235664,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(151), - [sym_interpolation_verbatim_start] = ACTIONS(153), - [sym_interpolation_raw_start] = ACTIONS(155), - [sym_raw_string_start] = ACTIONS(157), + [sym_interpolation_regular_start] = ACTIONS(1209), + [sym_interpolation_verbatim_start] = ACTIONS(1211), + [sym_interpolation_raw_start] = ACTIONS(1213), + [sym_raw_string_start] = ACTIONS(1215), }, [1148] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2610), - [sym__name] = STATE(5886), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2319), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(4455), - [sym_non_lvalue_expression] = STATE(3277), - [sym_lvalue_expression] = STATE(3347), - [sym__expression_statement_expression] = STATE(3228), - [sym_assignment_expression] = STATE(3289), - [sym_binary_expression] = STATE(3228), - [sym_postfix_unary_expression] = STATE(3289), - [sym_prefix_unary_expression] = STATE(3289), - [sym__pointer_indirection_expression] = STATE(2609), - [sym_query_expression] = STATE(3228), - [sym_from_clause] = STATE(6150), - [sym_conditional_expression] = STATE(3228), - [sym_conditional_access_expression] = STATE(3228), - [sym_as_expression] = STATE(3228), - [sym_is_expression] = STATE(3228), - [sym_is_pattern_expression] = STATE(3228), - [sym_cast_expression] = STATE(3228), - [sym_checked_expression] = STATE(3228), - [sym_invocation_expression] = STATE(3289), - [sym_switch_expression] = STATE(3228), - [sym_await_expression] = STATE(3289), - [sym_throw_expression] = STATE(3228), - [sym_element_access_expression] = STATE(2609), - [sym_interpolated_string_expression] = STATE(3228), - [sym_member_access_expression] = STATE(2609), - [sym_object_creation_expression] = STATE(3289), - [sym_parenthesized_expression] = STATE(3289), - [sym__parenthesized_lvalue_expression] = STATE(2609), - [sym_lambda_expression] = STATE(3228), - [sym__lambda_expression_init] = STATE(7531), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3228), - [sym_anonymous_method_expression] = STATE(3228), - [sym_anonymous_object_creation_expression] = STATE(3228), - [sym_implicit_array_creation_expression] = STATE(3228), - [sym_implicit_object_creation_expression] = STATE(3228), - [sym_implicit_stackalloc_expression] = STATE(3228), - [sym_initializer_expression] = STATE(3228), - [sym_default_expression] = STATE(3228), - [sym_with_expression] = STATE(3228), - [sym_sizeof_expression] = STATE(3228), - [sym_typeof_expression] = STATE(3228), - [sym_makeref_expression] = STATE(3228), - [sym_ref_expression] = STATE(3228), - [sym_reftype_expression] = STATE(3228), - [sym_refvalue_expression] = STATE(3228), - [sym_stackalloc_expression] = STATE(3228), - [sym_range_expression] = STATE(3228), - [sym_tuple_expression] = STATE(2609), - [sym_literal] = STATE(3228), - [sym_character_literal] = STATE(3278), - [sym_string_literal] = STATE(3278), - [sym_raw_string_literal] = STATE(3278), - [sym_boolean_literal] = STATE(3278), - [sym_identifier] = STATE(2267), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3228), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2603), + [sym__name] = STATE(5869), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2367), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(4517), + [sym_non_lvalue_expression] = STATE(3220), + [sym_lvalue_expression] = STATE(3377), + [sym__expression_statement_expression] = STATE(3236), + [sym_assignment_expression] = STATE(3221), + [sym_binary_expression] = STATE(3236), + [sym_postfix_unary_expression] = STATE(3221), + [sym_prefix_unary_expression] = STATE(3221), + [sym__pointer_indirection_expression] = STATE(2602), + [sym_query_expression] = STATE(3236), + [sym_from_clause] = STATE(6128), + [sym_conditional_expression] = STATE(3236), + [sym_conditional_access_expression] = STATE(3236), + [sym_as_expression] = STATE(3236), + [sym_is_expression] = STATE(3236), + [sym_is_pattern_expression] = STATE(3236), + [sym_cast_expression] = STATE(3236), + [sym_checked_expression] = STATE(3236), + [sym_invocation_expression] = STATE(3221), + [sym_switch_expression] = STATE(3236), + [sym_await_expression] = STATE(3221), + [sym_throw_expression] = STATE(3236), + [sym_element_access_expression] = STATE(2602), + [sym_interpolated_string_expression] = STATE(3236), + [sym_member_access_expression] = STATE(2602), + [sym_object_creation_expression] = STATE(3221), + [sym_parenthesized_expression] = STATE(3221), + [sym__parenthesized_lvalue_expression] = STATE(2602), + [sym_lambda_expression] = STATE(3236), + [sym__lambda_expression_init] = STATE(7632), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3236), + [sym_anonymous_method_expression] = STATE(3236), + [sym_anonymous_object_creation_expression] = STATE(3236), + [sym_implicit_array_creation_expression] = STATE(3236), + [sym_implicit_object_creation_expression] = STATE(3236), + [sym_implicit_stackalloc_expression] = STATE(3236), + [sym_initializer_expression] = STATE(3236), + [sym_default_expression] = STATE(3236), + [sym_with_expression] = STATE(3236), + [sym_sizeof_expression] = STATE(3236), + [sym_typeof_expression] = STATE(3236), + [sym_makeref_expression] = STATE(3236), + [sym_ref_expression] = STATE(3236), + [sym_reftype_expression] = STATE(3236), + [sym_refvalue_expression] = STATE(3236), + [sym_stackalloc_expression] = STATE(3236), + [sym_range_expression] = STATE(3236), + [sym_tuple_expression] = STATE(2602), + [sym_literal] = STATE(3236), + [sym_character_literal] = STATE(3272), + [sym_string_literal] = STATE(3272), + [sym_raw_string_literal] = STATE(3272), + [sym_boolean_literal] = STATE(3272), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3236), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(1148), [sym_preproc_endregion] = STATE(1148), [sym_preproc_line] = STATE(1148), @@ -235871,47 +235757,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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3396), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3379), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1153), - [anon_sym_LPAREN] = ACTIONS(1525), - [anon_sym_ref] = ACTIONS(1527), - [anon_sym_LBRACE] = ACTIONS(1159), - [anon_sym_delegate] = ACTIONS(1161), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1149), + [anon_sym_LPAREN] = ACTIONS(1913), + [anon_sym_ref] = ACTIONS(1915), + [anon_sym_LBRACE] = ACTIONS(1155), + [anon_sym_delegate] = ACTIONS(1157), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1529), + [anon_sym_new] = ACTIONS(1917), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1167), - [anon_sym_BANG] = ACTIONS(1533), - [anon_sym_TILDE] = ACTIONS(1533), - [anon_sym_PLUS_PLUS] = ACTIONS(1533), - [anon_sym_DASH_DASH] = ACTIONS(1533), - [anon_sym_true] = ACTIONS(1173), - [anon_sym_false] = ACTIONS(1173), - [anon_sym_PLUS] = ACTIONS(1531), - [anon_sym_DASH] = ACTIONS(1531), - [anon_sym_STAR] = ACTIONS(1535), - [anon_sym_CARET] = ACTIONS(1533), - [anon_sym_AMP] = ACTIONS(1533), - [anon_sym_this] = ACTIONS(1177), + [anon_sym_checked] = ACTIONS(1163), + [anon_sym_BANG] = ACTIONS(1921), + [anon_sym_TILDE] = ACTIONS(1921), + [anon_sym_PLUS_PLUS] = ACTIONS(1921), + [anon_sym_DASH_DASH] = ACTIONS(1921), + [anon_sym_true] = ACTIONS(1169), + [anon_sym_false] = ACTIONS(1169), + [anon_sym_PLUS] = ACTIONS(1919), + [anon_sym_DASH] = ACTIONS(1919), + [anon_sym_STAR] = ACTIONS(1923), + [anon_sym_CARET] = ACTIONS(1921), + [anon_sym_AMP] = ACTIONS(1921), + [anon_sym_this] = ACTIONS(1173), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1179), + [anon_sym_base] = ACTIONS(1175), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1181), - [anon_sym_unchecked] = ACTIONS(1167), + [sym_predefined_type] = ACTIONS(1177), + [anon_sym_unchecked] = ACTIONS(1163), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1183), - [anon_sym_throw] = ACTIONS(1537), + [anon_sym_default] = ACTIONS(1179), + [anon_sym_throw] = ACTIONS(1925), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1539), - [anon_sym_DOT_DOT] = ACTIONS(1541), + [anon_sym_await] = ACTIONS(1927), + [anon_sym_DOT_DOT] = ACTIONS(1929), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -235924,19 +235810,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1191), - [anon_sym_sizeof] = ACTIONS(1193), - [anon_sym_typeof] = ACTIONS(1195), - [anon_sym___makeref] = ACTIONS(1197), - [anon_sym___reftype] = ACTIONS(1199), - [anon_sym___refvalue] = ACTIONS(1201), - [sym_null_literal] = ACTIONS(1203), - [anon_sym_SQUOTE] = ACTIONS(1205), - [sym_integer_literal] = ACTIONS(1203), - [sym_real_literal] = ACTIONS(1207), - [anon_sym_DQUOTE] = ACTIONS(1209), - [sym_verbatim_string_literal] = ACTIONS(1207), - [aux_sym_preproc_if_token1] = ACTIONS(1211), + [anon_sym_stackalloc] = ACTIONS(1187), + [anon_sym_sizeof] = ACTIONS(1189), + [anon_sym_typeof] = ACTIONS(1191), + [anon_sym___makeref] = ACTIONS(1193), + [anon_sym___reftype] = ACTIONS(1195), + [anon_sym___refvalue] = ACTIONS(1197), + [sym_null_literal] = ACTIONS(1199), + [anon_sym_SQUOTE] = ACTIONS(1201), + [sym_integer_literal] = ACTIONS(1199), + [sym_real_literal] = ACTIONS(1203), + [anon_sym_DQUOTE] = ACTIONS(1205), + [sym_verbatim_string_literal] = ACTIONS(1203), + [aux_sym_preproc_if_token1] = ACTIONS(1207), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -235947,90 +235833,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1213), - [sym_interpolation_verbatim_start] = ACTIONS(1215), - [sym_interpolation_raw_start] = ACTIONS(1217), - [sym_raw_string_start] = ACTIONS(1219), + [sym_interpolation_regular_start] = ACTIONS(1209), + [sym_interpolation_verbatim_start] = ACTIONS(1211), + [sym_interpolation_raw_start] = ACTIONS(1213), + [sym_raw_string_start] = ACTIONS(1215), }, [1149] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2610), - [sym__name] = STATE(5898), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2197), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(3899), - [sym_non_lvalue_expression] = STATE(3277), - [sym_lvalue_expression] = STATE(3023), - [sym__expression_statement_expression] = STATE(3228), - [sym_assignment_expression] = STATE(3289), - [sym_binary_expression] = STATE(3228), - [sym_postfix_unary_expression] = STATE(3289), - [sym_prefix_unary_expression] = STATE(3289), - [sym__pointer_indirection_expression] = STATE(2609), - [sym_query_expression] = STATE(3228), - [sym_from_clause] = STATE(6172), - [sym_conditional_expression] = STATE(3228), - [sym_conditional_access_expression] = STATE(3228), - [sym_as_expression] = STATE(3228), - [sym_is_expression] = STATE(3228), - [sym_is_pattern_expression] = STATE(3228), - [sym_cast_expression] = STATE(3228), - [sym_checked_expression] = STATE(3228), - [sym_invocation_expression] = STATE(3289), - [sym_switch_expression] = STATE(3228), - [sym_await_expression] = STATE(3289), - [sym_throw_expression] = STATE(3228), - [sym_element_access_expression] = STATE(2609), - [sym_interpolated_string_expression] = STATE(3228), - [sym_member_access_expression] = STATE(2609), - [sym_object_creation_expression] = STATE(3289), - [sym_parenthesized_expression] = STATE(3289), - [sym__parenthesized_lvalue_expression] = STATE(2609), - [sym_lambda_expression] = STATE(3228), - [sym__lambda_expression_init] = STATE(7653), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3228), - [sym_anonymous_method_expression] = STATE(3228), - [sym_anonymous_object_creation_expression] = STATE(3228), - [sym_implicit_array_creation_expression] = STATE(3228), - [sym_implicit_object_creation_expression] = STATE(3228), - [sym_implicit_stackalloc_expression] = STATE(3228), - [sym_initializer_expression] = STATE(3228), - [sym_default_expression] = STATE(3228), - [sym_with_expression] = STATE(3228), - [sym_sizeof_expression] = STATE(3228), - [sym_typeof_expression] = STATE(3228), - [sym_makeref_expression] = STATE(3228), - [sym_ref_expression] = STATE(3228), - [sym_reftype_expression] = STATE(3228), - [sym_refvalue_expression] = STATE(3228), - [sym_stackalloc_expression] = STATE(3228), - [sym_range_expression] = STATE(3228), - [sym_tuple_expression] = STATE(2609), - [sym_literal] = STATE(3228), - [sym_character_literal] = STATE(3278), - [sym_string_literal] = STATE(3278), - [sym_raw_string_literal] = STATE(3278), - [sym_boolean_literal] = STATE(3278), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3228), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2603), + [sym__name] = STATE(5869), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2367), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(4504), + [sym_non_lvalue_expression] = STATE(3220), + [sym_lvalue_expression] = STATE(3377), + [sym__expression_statement_expression] = STATE(3236), + [sym_assignment_expression] = STATE(3221), + [sym_binary_expression] = STATE(3236), + [sym_postfix_unary_expression] = STATE(3221), + [sym_prefix_unary_expression] = STATE(3221), + [sym__pointer_indirection_expression] = STATE(2602), + [sym_query_expression] = STATE(3236), + [sym_from_clause] = STATE(6128), + [sym_conditional_expression] = STATE(3236), + [sym_conditional_access_expression] = STATE(3236), + [sym_as_expression] = STATE(3236), + [sym_is_expression] = STATE(3236), + [sym_is_pattern_expression] = STATE(3236), + [sym_cast_expression] = STATE(3236), + [sym_checked_expression] = STATE(3236), + [sym_invocation_expression] = STATE(3221), + [sym_switch_expression] = STATE(3236), + [sym_await_expression] = STATE(3221), + [sym_throw_expression] = STATE(3236), + [sym_element_access_expression] = STATE(2602), + [sym_interpolated_string_expression] = STATE(3236), + [sym_member_access_expression] = STATE(2602), + [sym_object_creation_expression] = STATE(3221), + [sym_parenthesized_expression] = STATE(3221), + [sym__parenthesized_lvalue_expression] = STATE(2602), + [sym_lambda_expression] = STATE(3236), + [sym__lambda_expression_init] = STATE(7632), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3236), + [sym_anonymous_method_expression] = STATE(3236), + [sym_anonymous_object_creation_expression] = STATE(3236), + [sym_implicit_array_creation_expression] = STATE(3236), + [sym_implicit_object_creation_expression] = STATE(3236), + [sym_implicit_stackalloc_expression] = STATE(3236), + [sym_initializer_expression] = STATE(3236), + [sym_default_expression] = STATE(3236), + [sym_with_expression] = STATE(3236), + [sym_sizeof_expression] = STATE(3236), + [sym_typeof_expression] = STATE(3236), + [sym_makeref_expression] = STATE(3236), + [sym_ref_expression] = STATE(3236), + [sym_reftype_expression] = STATE(3236), + [sym_refvalue_expression] = STATE(3236), + [sym_stackalloc_expression] = STATE(3236), + [sym_range_expression] = STATE(3236), + [sym_tuple_expression] = STATE(2602), + [sym_literal] = STATE(3236), + [sym_character_literal] = STATE(3272), + [sym_string_literal] = STATE(3272), + [sym_raw_string_literal] = STATE(3272), + [sym_boolean_literal] = STATE(3272), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3236), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(1149), [sym_preproc_endregion] = STATE(1149), [sym_preproc_line] = STATE(1149), @@ -236040,47 +235926,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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3396), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3379), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1153), - [anon_sym_LPAREN] = ACTIONS(1155), - [anon_sym_ref] = ACTIONS(1157), - [anon_sym_LBRACE] = ACTIONS(1159), - [anon_sym_delegate] = ACTIONS(1161), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1149), + [anon_sym_LPAREN] = ACTIONS(1913), + [anon_sym_ref] = ACTIONS(1915), + [anon_sym_LBRACE] = ACTIONS(1155), + [anon_sym_delegate] = ACTIONS(1157), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1163), + [anon_sym_new] = ACTIONS(1917), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1167), - [anon_sym_BANG] = ACTIONS(1171), - [anon_sym_TILDE] = ACTIONS(1171), - [anon_sym_PLUS_PLUS] = ACTIONS(1171), - [anon_sym_DASH_DASH] = ACTIONS(1171), - [anon_sym_true] = ACTIONS(1173), - [anon_sym_false] = ACTIONS(1173), - [anon_sym_PLUS] = ACTIONS(1169), - [anon_sym_DASH] = ACTIONS(1169), - [anon_sym_STAR] = ACTIONS(1175), - [anon_sym_CARET] = ACTIONS(1171), - [anon_sym_AMP] = ACTIONS(1171), - [anon_sym_this] = ACTIONS(1177), + [anon_sym_checked] = ACTIONS(1163), + [anon_sym_BANG] = ACTIONS(1921), + [anon_sym_TILDE] = ACTIONS(1921), + [anon_sym_PLUS_PLUS] = ACTIONS(1921), + [anon_sym_DASH_DASH] = ACTIONS(1921), + [anon_sym_true] = ACTIONS(1169), + [anon_sym_false] = ACTIONS(1169), + [anon_sym_PLUS] = ACTIONS(1919), + [anon_sym_DASH] = ACTIONS(1919), + [anon_sym_STAR] = ACTIONS(1923), + [anon_sym_CARET] = ACTIONS(1921), + [anon_sym_AMP] = ACTIONS(1921), + [anon_sym_this] = ACTIONS(1173), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1179), + [anon_sym_base] = ACTIONS(1175), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1181), - [anon_sym_unchecked] = ACTIONS(1167), + [sym_predefined_type] = ACTIONS(1177), + [anon_sym_unchecked] = ACTIONS(1163), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1183), - [anon_sym_throw] = ACTIONS(1185), + [anon_sym_default] = ACTIONS(1179), + [anon_sym_throw] = ACTIONS(1925), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1187), - [anon_sym_DOT_DOT] = ACTIONS(1189), + [anon_sym_await] = ACTIONS(1927), + [anon_sym_DOT_DOT] = ACTIONS(1929), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -236093,19 +235979,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1191), - [anon_sym_sizeof] = ACTIONS(1193), - [anon_sym_typeof] = ACTIONS(1195), - [anon_sym___makeref] = ACTIONS(1197), - [anon_sym___reftype] = ACTIONS(1199), - [anon_sym___refvalue] = ACTIONS(1201), - [sym_null_literal] = ACTIONS(1203), - [anon_sym_SQUOTE] = ACTIONS(1205), - [sym_integer_literal] = ACTIONS(1203), - [sym_real_literal] = ACTIONS(1207), - [anon_sym_DQUOTE] = ACTIONS(1209), - [sym_verbatim_string_literal] = ACTIONS(1207), - [aux_sym_preproc_if_token1] = ACTIONS(1211), + [anon_sym_stackalloc] = ACTIONS(1187), + [anon_sym_sizeof] = ACTIONS(1189), + [anon_sym_typeof] = ACTIONS(1191), + [anon_sym___makeref] = ACTIONS(1193), + [anon_sym___reftype] = ACTIONS(1195), + [anon_sym___refvalue] = ACTIONS(1197), + [sym_null_literal] = ACTIONS(1199), + [anon_sym_SQUOTE] = ACTIONS(1201), + [sym_integer_literal] = ACTIONS(1199), + [sym_real_literal] = ACTIONS(1203), + [anon_sym_DQUOTE] = ACTIONS(1205), + [sym_verbatim_string_literal] = ACTIONS(1203), + [aux_sym_preproc_if_token1] = ACTIONS(1207), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -236116,90 +236002,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1213), - [sym_interpolation_verbatim_start] = ACTIONS(1215), - [sym_interpolation_raw_start] = ACTIONS(1217), - [sym_raw_string_start] = ACTIONS(1219), + [sym_interpolation_regular_start] = ACTIONS(1209), + [sym_interpolation_verbatim_start] = ACTIONS(1211), + [sym_interpolation_raw_start] = ACTIONS(1213), + [sym_raw_string_start] = ACTIONS(1215), }, [1150] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(5889), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2247), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(4810), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3408), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3080), - [sym_postfix_unary_expression] = STATE(3111), - [sym_prefix_unary_expression] = STATE(3111), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6161), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3080), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3111), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3080), - [sym_member_access_expression] = STATE(2484), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3111), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7323), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(3080), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3080), - [sym_typeof_expression] = STATE(3080), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2484), - [sym_literal] = STATE(3080), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2603), + [sym__name] = STATE(5869), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2367), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(4505), + [sym_non_lvalue_expression] = STATE(3220), + [sym_lvalue_expression] = STATE(3377), + [sym__expression_statement_expression] = STATE(3236), + [sym_assignment_expression] = STATE(3221), + [sym_binary_expression] = STATE(3236), + [sym_postfix_unary_expression] = STATE(3221), + [sym_prefix_unary_expression] = STATE(3221), + [sym__pointer_indirection_expression] = STATE(2602), + [sym_query_expression] = STATE(3236), + [sym_from_clause] = STATE(6128), + [sym_conditional_expression] = STATE(3236), + [sym_conditional_access_expression] = STATE(3236), + [sym_as_expression] = STATE(3236), + [sym_is_expression] = STATE(3236), + [sym_is_pattern_expression] = STATE(3236), + [sym_cast_expression] = STATE(3236), + [sym_checked_expression] = STATE(3236), + [sym_invocation_expression] = STATE(3221), + [sym_switch_expression] = STATE(3236), + [sym_await_expression] = STATE(3221), + [sym_throw_expression] = STATE(3236), + [sym_element_access_expression] = STATE(2602), + [sym_interpolated_string_expression] = STATE(3236), + [sym_member_access_expression] = STATE(2602), + [sym_object_creation_expression] = STATE(3221), + [sym_parenthesized_expression] = STATE(3221), + [sym__parenthesized_lvalue_expression] = STATE(2602), + [sym_lambda_expression] = STATE(3236), + [sym__lambda_expression_init] = STATE(7632), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3236), + [sym_anonymous_method_expression] = STATE(3236), + [sym_anonymous_object_creation_expression] = STATE(3236), + [sym_implicit_array_creation_expression] = STATE(3236), + [sym_implicit_object_creation_expression] = STATE(3236), + [sym_implicit_stackalloc_expression] = STATE(3236), + [sym_initializer_expression] = STATE(3236), + [sym_default_expression] = STATE(3236), + [sym_with_expression] = STATE(3236), + [sym_sizeof_expression] = STATE(3236), + [sym_typeof_expression] = STATE(3236), + [sym_makeref_expression] = STATE(3236), + [sym_ref_expression] = STATE(3236), + [sym_reftype_expression] = STATE(3236), + [sym_refvalue_expression] = STATE(3236), + [sym_stackalloc_expression] = STATE(3236), + [sym_range_expression] = STATE(3236), + [sym_tuple_expression] = STATE(2602), + [sym_literal] = STATE(3236), + [sym_character_literal] = STATE(3272), + [sym_string_literal] = STATE(3272), + [sym_raw_string_literal] = STATE(3272), + [sym_boolean_literal] = STATE(3272), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3236), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(1150), [sym_preproc_endregion] = STATE(1150), [sym_preproc_line] = STATE(1150), @@ -236209,47 +236095,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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3379), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1481), - [anon_sym_LPAREN] = ACTIONS(1483), - [anon_sym_ref] = ACTIONS(1485), - [anon_sym_LBRACE] = ACTIONS(1487), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1149), + [anon_sym_LPAREN] = ACTIONS(1913), + [anon_sym_ref] = ACTIONS(1915), + [anon_sym_LBRACE] = ACTIONS(1155), + [anon_sym_delegate] = ACTIONS(1157), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1101), + [anon_sym_new] = ACTIONS(1917), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1067), - [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(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1489), - [anon_sym_DASH] = ACTIONS(1489), - [anon_sym_STAR] = ACTIONS(1111), - [anon_sym_CARET] = ACTIONS(1491), - [anon_sym_AMP] = ACTIONS(1491), - [anon_sym_this] = ACTIONS(83), + [anon_sym_checked] = ACTIONS(1163), + [anon_sym_BANG] = ACTIONS(1921), + [anon_sym_TILDE] = ACTIONS(1921), + [anon_sym_PLUS_PLUS] = ACTIONS(1921), + [anon_sym_DASH_DASH] = ACTIONS(1921), + [anon_sym_true] = ACTIONS(1169), + [anon_sym_false] = ACTIONS(1169), + [anon_sym_PLUS] = ACTIONS(1919), + [anon_sym_DASH] = ACTIONS(1919), + [anon_sym_STAR] = ACTIONS(1923), + [anon_sym_CARET] = ACTIONS(1921), + [anon_sym_AMP] = ACTIONS(1921), + [anon_sym_this] = ACTIONS(1173), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), + [anon_sym_base] = ACTIONS(1175), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1067), + [sym_predefined_type] = ACTIONS(1177), + [anon_sym_unchecked] = ACTIONS(1163), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1119), + [anon_sym_default] = ACTIONS(1179), + [anon_sym_throw] = ACTIONS(1925), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1121), - [anon_sym_DOT_DOT] = ACTIONS(1125), + [anon_sym_await] = ACTIONS(1927), + [anon_sym_DOT_DOT] = ACTIONS(1929), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -236262,19 +236148,19 @@ static const uint16_t ts_parse_table[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(1089), + [anon_sym_stackalloc] = ACTIONS(1187), + [anon_sym_sizeof] = ACTIONS(1189), + [anon_sym_typeof] = ACTIONS(1191), + [anon_sym___makeref] = ACTIONS(1193), + [anon_sym___reftype] = ACTIONS(1195), + [anon_sym___refvalue] = ACTIONS(1197), + [sym_null_literal] = ACTIONS(1199), + [anon_sym_SQUOTE] = ACTIONS(1201), + [sym_integer_literal] = ACTIONS(1199), + [sym_real_literal] = ACTIONS(1203), + [anon_sym_DQUOTE] = ACTIONS(1205), + [sym_verbatim_string_literal] = ACTIONS(1203), + [aux_sym_preproc_if_token1] = ACTIONS(1207), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -236285,90 +236171,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(151), - [sym_interpolation_verbatim_start] = ACTIONS(153), - [sym_interpolation_raw_start] = ACTIONS(155), - [sym_raw_string_start] = ACTIONS(157), + [sym_interpolation_regular_start] = ACTIONS(1209), + [sym_interpolation_verbatim_start] = ACTIONS(1211), + [sym_interpolation_raw_start] = ACTIONS(1213), + [sym_raw_string_start] = ACTIONS(1215), }, [1151] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(5160), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2204), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(5559), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3461), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3080), - [sym_postfix_unary_expression] = STATE(3111), - [sym_prefix_unary_expression] = STATE(3111), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6154), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3080), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3111), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3080), - [sym_member_access_expression] = STATE(2484), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3111), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7547), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(3080), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3080), - [sym_typeof_expression] = STATE(3080), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2484), - [sym_literal] = STATE(3080), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2603), + [sym__name] = STATE(5869), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2367), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(4506), + [sym_non_lvalue_expression] = STATE(3220), + [sym_lvalue_expression] = STATE(3377), + [sym__expression_statement_expression] = STATE(3236), + [sym_assignment_expression] = STATE(3221), + [sym_binary_expression] = STATE(3236), + [sym_postfix_unary_expression] = STATE(3221), + [sym_prefix_unary_expression] = STATE(3221), + [sym__pointer_indirection_expression] = STATE(2602), + [sym_query_expression] = STATE(3236), + [sym_from_clause] = STATE(6128), + [sym_conditional_expression] = STATE(3236), + [sym_conditional_access_expression] = STATE(3236), + [sym_as_expression] = STATE(3236), + [sym_is_expression] = STATE(3236), + [sym_is_pattern_expression] = STATE(3236), + [sym_cast_expression] = STATE(3236), + [sym_checked_expression] = STATE(3236), + [sym_invocation_expression] = STATE(3221), + [sym_switch_expression] = STATE(3236), + [sym_await_expression] = STATE(3221), + [sym_throw_expression] = STATE(3236), + [sym_element_access_expression] = STATE(2602), + [sym_interpolated_string_expression] = STATE(3236), + [sym_member_access_expression] = STATE(2602), + [sym_object_creation_expression] = STATE(3221), + [sym_parenthesized_expression] = STATE(3221), + [sym__parenthesized_lvalue_expression] = STATE(2602), + [sym_lambda_expression] = STATE(3236), + [sym__lambda_expression_init] = STATE(7632), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3236), + [sym_anonymous_method_expression] = STATE(3236), + [sym_anonymous_object_creation_expression] = STATE(3236), + [sym_implicit_array_creation_expression] = STATE(3236), + [sym_implicit_object_creation_expression] = STATE(3236), + [sym_implicit_stackalloc_expression] = STATE(3236), + [sym_initializer_expression] = STATE(3236), + [sym_default_expression] = STATE(3236), + [sym_with_expression] = STATE(3236), + [sym_sizeof_expression] = STATE(3236), + [sym_typeof_expression] = STATE(3236), + [sym_makeref_expression] = STATE(3236), + [sym_ref_expression] = STATE(3236), + [sym_reftype_expression] = STATE(3236), + [sym_refvalue_expression] = STATE(3236), + [sym_stackalloc_expression] = STATE(3236), + [sym_range_expression] = STATE(3236), + [sym_tuple_expression] = STATE(2602), + [sym_literal] = STATE(3236), + [sym_character_literal] = STATE(3272), + [sym_string_literal] = STATE(3272), + [sym_raw_string_literal] = STATE(3272), + [sym_boolean_literal] = STATE(3272), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3236), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(1151), [sym_preproc_endregion] = STATE(1151), [sym_preproc_line] = STATE(1151), @@ -236378,47 +236264,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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3379), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1481), - [anon_sym_LPAREN] = ACTIONS(1497), - [anon_sym_ref] = ACTIONS(1499), - [anon_sym_LBRACE] = ACTIONS(1487), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1149), + [anon_sym_LPAREN] = ACTIONS(1913), + [anon_sym_ref] = ACTIONS(1915), + [anon_sym_LBRACE] = ACTIONS(1155), + [anon_sym_delegate] = ACTIONS(1157), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1501), + [anon_sym_new] = ACTIONS(1917), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = 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(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(1163), + [anon_sym_BANG] = ACTIONS(1921), + [anon_sym_TILDE] = ACTIONS(1921), + [anon_sym_PLUS_PLUS] = ACTIONS(1921), + [anon_sym_DASH_DASH] = ACTIONS(1921), + [anon_sym_true] = ACTIONS(1169), + [anon_sym_false] = ACTIONS(1169), + [anon_sym_PLUS] = ACTIONS(1919), + [anon_sym_DASH] = ACTIONS(1919), + [anon_sym_STAR] = ACTIONS(1923), + [anon_sym_CARET] = ACTIONS(1921), + [anon_sym_AMP] = ACTIONS(1921), + [anon_sym_this] = ACTIONS(1173), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), + [anon_sym_base] = ACTIONS(1175), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1067), + [sym_predefined_type] = ACTIONS(1177), + [anon_sym_unchecked] = ACTIONS(1163), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1503), + [anon_sym_default] = ACTIONS(1179), + [anon_sym_throw] = ACTIONS(1925), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1505), - [anon_sym_DOT_DOT] = ACTIONS(1507), + [anon_sym_await] = ACTIONS(1927), + [anon_sym_DOT_DOT] = ACTIONS(1929), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -236431,19 +236317,19 @@ static const uint16_t ts_parse_table[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(1089), + [anon_sym_stackalloc] = ACTIONS(1187), + [anon_sym_sizeof] = ACTIONS(1189), + [anon_sym_typeof] = ACTIONS(1191), + [anon_sym___makeref] = ACTIONS(1193), + [anon_sym___reftype] = ACTIONS(1195), + [anon_sym___refvalue] = ACTIONS(1197), + [sym_null_literal] = ACTIONS(1199), + [anon_sym_SQUOTE] = ACTIONS(1201), + [sym_integer_literal] = ACTIONS(1199), + [sym_real_literal] = ACTIONS(1203), + [anon_sym_DQUOTE] = ACTIONS(1205), + [sym_verbatim_string_literal] = ACTIONS(1203), + [aux_sym_preproc_if_token1] = ACTIONS(1207), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -236454,90 +236340,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(151), - [sym_interpolation_verbatim_start] = ACTIONS(153), - [sym_interpolation_raw_start] = ACTIONS(155), - [sym_raw_string_start] = ACTIONS(157), + [sym_interpolation_regular_start] = ACTIONS(1209), + [sym_interpolation_verbatim_start] = ACTIONS(1211), + [sym_interpolation_raw_start] = ACTIONS(1213), + [sym_raw_string_start] = ACTIONS(1215), }, [1152] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(5889), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2247), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(4813), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3408), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3080), - [sym_postfix_unary_expression] = STATE(3111), - [sym_prefix_unary_expression] = STATE(3111), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6161), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3080), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3111), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3080), - [sym_member_access_expression] = STATE(2484), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3111), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7323), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(3080), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3080), - [sym_typeof_expression] = STATE(3080), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2484), - [sym_literal] = STATE(3080), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2603), + [sym__name] = STATE(5869), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2367), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(4507), + [sym_non_lvalue_expression] = STATE(3220), + [sym_lvalue_expression] = STATE(3377), + [sym__expression_statement_expression] = STATE(3236), + [sym_assignment_expression] = STATE(3221), + [sym_binary_expression] = STATE(3236), + [sym_postfix_unary_expression] = STATE(3221), + [sym_prefix_unary_expression] = STATE(3221), + [sym__pointer_indirection_expression] = STATE(2602), + [sym_query_expression] = STATE(3236), + [sym_from_clause] = STATE(6128), + [sym_conditional_expression] = STATE(3236), + [sym_conditional_access_expression] = STATE(3236), + [sym_as_expression] = STATE(3236), + [sym_is_expression] = STATE(3236), + [sym_is_pattern_expression] = STATE(3236), + [sym_cast_expression] = STATE(3236), + [sym_checked_expression] = STATE(3236), + [sym_invocation_expression] = STATE(3221), + [sym_switch_expression] = STATE(3236), + [sym_await_expression] = STATE(3221), + [sym_throw_expression] = STATE(3236), + [sym_element_access_expression] = STATE(2602), + [sym_interpolated_string_expression] = STATE(3236), + [sym_member_access_expression] = STATE(2602), + [sym_object_creation_expression] = STATE(3221), + [sym_parenthesized_expression] = STATE(3221), + [sym__parenthesized_lvalue_expression] = STATE(2602), + [sym_lambda_expression] = STATE(3236), + [sym__lambda_expression_init] = STATE(7632), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3236), + [sym_anonymous_method_expression] = STATE(3236), + [sym_anonymous_object_creation_expression] = STATE(3236), + [sym_implicit_array_creation_expression] = STATE(3236), + [sym_implicit_object_creation_expression] = STATE(3236), + [sym_implicit_stackalloc_expression] = STATE(3236), + [sym_initializer_expression] = STATE(3236), + [sym_default_expression] = STATE(3236), + [sym_with_expression] = STATE(3236), + [sym_sizeof_expression] = STATE(3236), + [sym_typeof_expression] = STATE(3236), + [sym_makeref_expression] = STATE(3236), + [sym_ref_expression] = STATE(3236), + [sym_reftype_expression] = STATE(3236), + [sym_refvalue_expression] = STATE(3236), + [sym_stackalloc_expression] = STATE(3236), + [sym_range_expression] = STATE(3236), + [sym_tuple_expression] = STATE(2602), + [sym_literal] = STATE(3236), + [sym_character_literal] = STATE(3272), + [sym_string_literal] = STATE(3272), + [sym_raw_string_literal] = STATE(3272), + [sym_boolean_literal] = STATE(3272), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3236), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(1152), [sym_preproc_endregion] = STATE(1152), [sym_preproc_line] = STATE(1152), @@ -236547,47 +236433,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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3379), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1481), - [anon_sym_LPAREN] = ACTIONS(1483), - [anon_sym_ref] = ACTIONS(1485), - [anon_sym_LBRACE] = ACTIONS(1487), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1149), + [anon_sym_LPAREN] = ACTIONS(1913), + [anon_sym_ref] = ACTIONS(1915), + [anon_sym_LBRACE] = ACTIONS(1155), + [anon_sym_delegate] = ACTIONS(1157), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1101), + [anon_sym_new] = ACTIONS(1917), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1067), - [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(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1489), - [anon_sym_DASH] = ACTIONS(1489), - [anon_sym_STAR] = ACTIONS(1111), - [anon_sym_CARET] = ACTIONS(1491), - [anon_sym_AMP] = ACTIONS(1491), - [anon_sym_this] = ACTIONS(83), + [anon_sym_checked] = ACTIONS(1163), + [anon_sym_BANG] = ACTIONS(1921), + [anon_sym_TILDE] = ACTIONS(1921), + [anon_sym_PLUS_PLUS] = ACTIONS(1921), + [anon_sym_DASH_DASH] = ACTIONS(1921), + [anon_sym_true] = ACTIONS(1169), + [anon_sym_false] = ACTIONS(1169), + [anon_sym_PLUS] = ACTIONS(1919), + [anon_sym_DASH] = ACTIONS(1919), + [anon_sym_STAR] = ACTIONS(1923), + [anon_sym_CARET] = ACTIONS(1921), + [anon_sym_AMP] = ACTIONS(1921), + [anon_sym_this] = ACTIONS(1173), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), + [anon_sym_base] = ACTIONS(1175), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1067), + [sym_predefined_type] = ACTIONS(1177), + [anon_sym_unchecked] = ACTIONS(1163), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1119), + [anon_sym_default] = ACTIONS(1179), + [anon_sym_throw] = ACTIONS(1925), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1121), - [anon_sym_DOT_DOT] = ACTIONS(1125), + [anon_sym_await] = ACTIONS(1927), + [anon_sym_DOT_DOT] = ACTIONS(1929), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -236600,19 +236486,19 @@ static const uint16_t ts_parse_table[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(1089), + [anon_sym_stackalloc] = ACTIONS(1187), + [anon_sym_sizeof] = ACTIONS(1189), + [anon_sym_typeof] = ACTIONS(1191), + [anon_sym___makeref] = ACTIONS(1193), + [anon_sym___reftype] = ACTIONS(1195), + [anon_sym___refvalue] = ACTIONS(1197), + [sym_null_literal] = ACTIONS(1199), + [anon_sym_SQUOTE] = ACTIONS(1201), + [sym_integer_literal] = ACTIONS(1199), + [sym_real_literal] = ACTIONS(1203), + [anon_sym_DQUOTE] = ACTIONS(1205), + [sym_verbatim_string_literal] = ACTIONS(1203), + [aux_sym_preproc_if_token1] = ACTIONS(1207), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -236623,90 +236509,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(151), - [sym_interpolation_verbatim_start] = ACTIONS(153), - [sym_interpolation_raw_start] = ACTIONS(155), - [sym_raw_string_start] = ACTIONS(157), + [sym_interpolation_regular_start] = ACTIONS(1209), + [sym_interpolation_verbatim_start] = ACTIONS(1211), + [sym_interpolation_raw_start] = ACTIONS(1213), + [sym_raw_string_start] = ACTIONS(1215), }, [1153] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(5889), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2247), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(4822), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3408), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3080), - [sym_postfix_unary_expression] = STATE(3111), - [sym_prefix_unary_expression] = STATE(3111), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6161), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3080), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3111), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3080), - [sym_member_access_expression] = STATE(2484), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3111), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2603), + [sym__name] = STATE(5877), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2344), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(4464), + [sym_non_lvalue_expression] = STATE(3220), + [sym_lvalue_expression] = STATE(3281), + [sym__expression_statement_expression] = STATE(3236), + [sym_assignment_expression] = STATE(3221), + [sym_binary_expression] = STATE(3236), + [sym_postfix_unary_expression] = STATE(3221), + [sym_prefix_unary_expression] = STATE(3221), + [sym__pointer_indirection_expression] = STATE(2602), + [sym_query_expression] = STATE(3236), + [sym_from_clause] = STATE(6146), + [sym_conditional_expression] = STATE(3236), + [sym_conditional_access_expression] = STATE(3236), + [sym_as_expression] = STATE(3236), + [sym_is_expression] = STATE(3236), + [sym_is_pattern_expression] = STATE(3236), + [sym_cast_expression] = STATE(3236), + [sym_checked_expression] = STATE(3236), + [sym_invocation_expression] = STATE(3221), + [sym_switch_expression] = STATE(3236), + [sym_await_expression] = STATE(3221), + [sym_throw_expression] = STATE(3236), + [sym_element_access_expression] = STATE(2602), + [sym_interpolated_string_expression] = STATE(3236), + [sym_member_access_expression] = STATE(2602), + [sym_object_creation_expression] = STATE(3221), + [sym_parenthesized_expression] = STATE(3221), + [sym__parenthesized_lvalue_expression] = STATE(2602), + [sym_lambda_expression] = STATE(3236), [sym__lambda_expression_init] = STATE(7323), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(3080), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3080), - [sym_typeof_expression] = STATE(3080), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2484), - [sym_literal] = STATE(3080), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3236), + [sym_anonymous_method_expression] = STATE(3236), + [sym_anonymous_object_creation_expression] = STATE(3236), + [sym_implicit_array_creation_expression] = STATE(3236), + [sym_implicit_object_creation_expression] = STATE(3236), + [sym_implicit_stackalloc_expression] = STATE(3236), + [sym_initializer_expression] = STATE(3236), + [sym_default_expression] = STATE(3236), + [sym_with_expression] = STATE(3236), + [sym_sizeof_expression] = STATE(3236), + [sym_typeof_expression] = STATE(3236), + [sym_makeref_expression] = STATE(3236), + [sym_ref_expression] = STATE(3236), + [sym_reftype_expression] = STATE(3236), + [sym_refvalue_expression] = STATE(3236), + [sym_stackalloc_expression] = STATE(3236), + [sym_range_expression] = STATE(3236), + [sym_tuple_expression] = STATE(2602), + [sym_literal] = STATE(3236), + [sym_character_literal] = STATE(3272), + [sym_string_literal] = STATE(3272), + [sym_raw_string_literal] = STATE(3272), + [sym_boolean_literal] = STATE(3272), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3236), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(1153), [sym_preproc_endregion] = STATE(1153), [sym_preproc_line] = STATE(1153), @@ -236716,47 +236602,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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3379), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1481), - [anon_sym_LPAREN] = ACTIONS(1483), - [anon_sym_ref] = ACTIONS(1485), - [anon_sym_LBRACE] = ACTIONS(1487), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1149), + [anon_sym_LPAREN] = ACTIONS(1531), + [anon_sym_ref] = ACTIONS(1533), + [anon_sym_LBRACE] = ACTIONS(1155), + [anon_sym_delegate] = ACTIONS(1157), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1101), + [anon_sym_new] = ACTIONS(1535), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1067), - [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(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1489), - [anon_sym_DASH] = ACTIONS(1489), - [anon_sym_STAR] = ACTIONS(1111), - [anon_sym_CARET] = ACTIONS(1491), - [anon_sym_AMP] = ACTIONS(1491), - [anon_sym_this] = ACTIONS(83), + [anon_sym_checked] = ACTIONS(1163), + [anon_sym_BANG] = ACTIONS(1539), + [anon_sym_TILDE] = ACTIONS(1539), + [anon_sym_PLUS_PLUS] = ACTIONS(1539), + [anon_sym_DASH_DASH] = ACTIONS(1539), + [anon_sym_true] = ACTIONS(1169), + [anon_sym_false] = ACTIONS(1169), + [anon_sym_PLUS] = ACTIONS(1537), + [anon_sym_DASH] = ACTIONS(1537), + [anon_sym_STAR] = ACTIONS(1541), + [anon_sym_CARET] = ACTIONS(1539), + [anon_sym_AMP] = ACTIONS(1539), + [anon_sym_this] = ACTIONS(1173), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), + [anon_sym_base] = ACTIONS(1175), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1067), + [sym_predefined_type] = ACTIONS(1177), + [anon_sym_unchecked] = ACTIONS(1163), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1119), + [anon_sym_default] = ACTIONS(1179), + [anon_sym_throw] = ACTIONS(1543), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1121), - [anon_sym_DOT_DOT] = ACTIONS(1125), + [anon_sym_await] = ACTIONS(1545), + [anon_sym_DOT_DOT] = ACTIONS(1547), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -236769,19 +236655,19 @@ static const uint16_t ts_parse_table[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(1089), + [anon_sym_stackalloc] = ACTIONS(1187), + [anon_sym_sizeof] = ACTIONS(1189), + [anon_sym_typeof] = ACTIONS(1191), + [anon_sym___makeref] = ACTIONS(1193), + [anon_sym___reftype] = ACTIONS(1195), + [anon_sym___refvalue] = ACTIONS(1197), + [sym_null_literal] = ACTIONS(1199), + [anon_sym_SQUOTE] = ACTIONS(1201), + [sym_integer_literal] = ACTIONS(1199), + [sym_real_literal] = ACTIONS(1203), + [anon_sym_DQUOTE] = ACTIONS(1205), + [sym_verbatim_string_literal] = ACTIONS(1203), + [aux_sym_preproc_if_token1] = ACTIONS(1207), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -236792,90 +236678,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(151), - [sym_interpolation_verbatim_start] = ACTIONS(153), - [sym_interpolation_raw_start] = ACTIONS(155), - [sym_raw_string_start] = ACTIONS(157), + [sym_interpolation_regular_start] = ACTIONS(1209), + [sym_interpolation_verbatim_start] = ACTIONS(1211), + [sym_interpolation_raw_start] = ACTIONS(1213), + [sym_raw_string_start] = ACTIONS(1215), }, [1154] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(5889), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2247), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(4834), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3408), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3080), - [sym_postfix_unary_expression] = STATE(3111), - [sym_prefix_unary_expression] = STATE(3111), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6161), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3080), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3111), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3080), - [sym_member_access_expression] = STATE(2484), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3111), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7323), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(3080), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3080), - [sym_typeof_expression] = STATE(3080), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2484), - [sym_literal] = STATE(3080), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2603), + [sym__name] = STATE(5869), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2367), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(3133), + [sym_non_lvalue_expression] = STATE(3220), + [sym_lvalue_expression] = STATE(3377), + [sym__expression_statement_expression] = STATE(3236), + [sym_assignment_expression] = STATE(3221), + [sym_binary_expression] = STATE(3236), + [sym_postfix_unary_expression] = STATE(3221), + [sym_prefix_unary_expression] = STATE(3221), + [sym__pointer_indirection_expression] = STATE(2602), + [sym_query_expression] = STATE(3236), + [sym_from_clause] = STATE(6128), + [sym_conditional_expression] = STATE(3236), + [sym_conditional_access_expression] = STATE(3236), + [sym_as_expression] = STATE(3236), + [sym_is_expression] = STATE(3236), + [sym_is_pattern_expression] = STATE(3236), + [sym_cast_expression] = STATE(3236), + [sym_checked_expression] = STATE(3236), + [sym_invocation_expression] = STATE(3221), + [sym_switch_expression] = STATE(3236), + [sym_await_expression] = STATE(3221), + [sym_throw_expression] = STATE(3236), + [sym_element_access_expression] = STATE(2602), + [sym_interpolated_string_expression] = STATE(3236), + [sym_member_access_expression] = STATE(2602), + [sym_object_creation_expression] = STATE(3221), + [sym_parenthesized_expression] = STATE(3221), + [sym__parenthesized_lvalue_expression] = STATE(2602), + [sym_lambda_expression] = STATE(3236), + [sym__lambda_expression_init] = STATE(7632), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3236), + [sym_anonymous_method_expression] = STATE(3236), + [sym_anonymous_object_creation_expression] = STATE(3236), + [sym_implicit_array_creation_expression] = STATE(3236), + [sym_implicit_object_creation_expression] = STATE(3236), + [sym_implicit_stackalloc_expression] = STATE(3236), + [sym_initializer_expression] = STATE(3236), + [sym_default_expression] = STATE(3236), + [sym_with_expression] = STATE(3236), + [sym_sizeof_expression] = STATE(3236), + [sym_typeof_expression] = STATE(3236), + [sym_makeref_expression] = STATE(3236), + [sym_ref_expression] = STATE(3236), + [sym_reftype_expression] = STATE(3236), + [sym_refvalue_expression] = STATE(3236), + [sym_stackalloc_expression] = STATE(3236), + [sym_range_expression] = STATE(3236), + [sym_tuple_expression] = STATE(2602), + [sym_literal] = STATE(3236), + [sym_character_literal] = STATE(3272), + [sym_string_literal] = STATE(3272), + [sym_raw_string_literal] = STATE(3272), + [sym_boolean_literal] = STATE(3272), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3236), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(1154), [sym_preproc_endregion] = STATE(1154), [sym_preproc_line] = STATE(1154), @@ -236885,47 +236771,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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3379), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1481), - [anon_sym_LPAREN] = ACTIONS(1483), - [anon_sym_ref] = ACTIONS(1485), - [anon_sym_LBRACE] = ACTIONS(1487), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1149), + [anon_sym_LPAREN] = ACTIONS(1913), + [anon_sym_ref] = ACTIONS(1915), + [anon_sym_LBRACE] = ACTIONS(1155), + [anon_sym_delegate] = ACTIONS(1157), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1101), + [anon_sym_new] = ACTIONS(1917), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1067), - [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(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1489), - [anon_sym_DASH] = ACTIONS(1489), - [anon_sym_STAR] = ACTIONS(1111), - [anon_sym_CARET] = ACTIONS(1491), - [anon_sym_AMP] = ACTIONS(1491), - [anon_sym_this] = ACTIONS(83), + [anon_sym_checked] = ACTIONS(1163), + [anon_sym_BANG] = ACTIONS(1921), + [anon_sym_TILDE] = ACTIONS(1921), + [anon_sym_PLUS_PLUS] = ACTIONS(1921), + [anon_sym_DASH_DASH] = ACTIONS(1921), + [anon_sym_true] = ACTIONS(1169), + [anon_sym_false] = ACTIONS(1169), + [anon_sym_PLUS] = ACTIONS(1919), + [anon_sym_DASH] = ACTIONS(1919), + [anon_sym_STAR] = ACTIONS(1923), + [anon_sym_CARET] = ACTIONS(1921), + [anon_sym_AMP] = ACTIONS(1921), + [anon_sym_this] = ACTIONS(1173), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), + [anon_sym_base] = ACTIONS(1175), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1067), + [sym_predefined_type] = ACTIONS(1177), + [anon_sym_unchecked] = ACTIONS(1163), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1119), + [anon_sym_default] = ACTIONS(1179), + [anon_sym_throw] = ACTIONS(1925), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1121), - [anon_sym_DOT_DOT] = ACTIONS(1125), + [anon_sym_await] = ACTIONS(1927), + [anon_sym_DOT_DOT] = ACTIONS(1929), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -236938,19 +236824,19 @@ static const uint16_t ts_parse_table[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(1089), + [anon_sym_stackalloc] = ACTIONS(1187), + [anon_sym_sizeof] = ACTIONS(1189), + [anon_sym_typeof] = ACTIONS(1191), + [anon_sym___makeref] = ACTIONS(1193), + [anon_sym___reftype] = ACTIONS(1195), + [anon_sym___refvalue] = ACTIONS(1197), + [sym_null_literal] = ACTIONS(1199), + [anon_sym_SQUOTE] = ACTIONS(1201), + [sym_integer_literal] = ACTIONS(1199), + [sym_real_literal] = ACTIONS(1203), + [anon_sym_DQUOTE] = ACTIONS(1205), + [sym_verbatim_string_literal] = ACTIONS(1203), + [aux_sym_preproc_if_token1] = ACTIONS(1207), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -236961,90 +236847,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(151), - [sym_interpolation_verbatim_start] = ACTIONS(153), - [sym_interpolation_raw_start] = ACTIONS(155), - [sym_raw_string_start] = ACTIONS(157), + [sym_interpolation_regular_start] = ACTIONS(1209), + [sym_interpolation_verbatim_start] = ACTIONS(1211), + [sym_interpolation_raw_start] = ACTIONS(1213), + [sym_raw_string_start] = ACTIONS(1215), }, [1155] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(5889), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2247), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(4835), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3408), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3080), - [sym_postfix_unary_expression] = STATE(3111), - [sym_prefix_unary_expression] = STATE(3111), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6161), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3080), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3111), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3080), - [sym_member_access_expression] = STATE(2484), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3111), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2603), + [sym__name] = STATE(5877), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2344), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(4376), + [sym_non_lvalue_expression] = STATE(3220), + [sym_lvalue_expression] = STATE(3281), + [sym__expression_statement_expression] = STATE(3236), + [sym_assignment_expression] = STATE(3221), + [sym_binary_expression] = STATE(3236), + [sym_postfix_unary_expression] = STATE(3221), + [sym_prefix_unary_expression] = STATE(3221), + [sym__pointer_indirection_expression] = STATE(2602), + [sym_query_expression] = STATE(3236), + [sym_from_clause] = STATE(6146), + [sym_conditional_expression] = STATE(3236), + [sym_conditional_access_expression] = STATE(3236), + [sym_as_expression] = STATE(3236), + [sym_is_expression] = STATE(3236), + [sym_is_pattern_expression] = STATE(3236), + [sym_cast_expression] = STATE(3236), + [sym_checked_expression] = STATE(3236), + [sym_invocation_expression] = STATE(3221), + [sym_switch_expression] = STATE(3236), + [sym_await_expression] = STATE(3221), + [sym_throw_expression] = STATE(3236), + [sym_element_access_expression] = STATE(2602), + [sym_interpolated_string_expression] = STATE(3236), + [sym_member_access_expression] = STATE(2602), + [sym_object_creation_expression] = STATE(3221), + [sym_parenthesized_expression] = STATE(3221), + [sym__parenthesized_lvalue_expression] = STATE(2602), + [sym_lambda_expression] = STATE(3236), [sym__lambda_expression_init] = STATE(7323), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(3080), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3080), - [sym_typeof_expression] = STATE(3080), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2484), - [sym_literal] = STATE(3080), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3236), + [sym_anonymous_method_expression] = STATE(3236), + [sym_anonymous_object_creation_expression] = STATE(3236), + [sym_implicit_array_creation_expression] = STATE(3236), + [sym_implicit_object_creation_expression] = STATE(3236), + [sym_implicit_stackalloc_expression] = STATE(3236), + [sym_initializer_expression] = STATE(3236), + [sym_default_expression] = STATE(3236), + [sym_with_expression] = STATE(3236), + [sym_sizeof_expression] = STATE(3236), + [sym_typeof_expression] = STATE(3236), + [sym_makeref_expression] = STATE(3236), + [sym_ref_expression] = STATE(3236), + [sym_reftype_expression] = STATE(3236), + [sym_refvalue_expression] = STATE(3236), + [sym_stackalloc_expression] = STATE(3236), + [sym_range_expression] = STATE(3236), + [sym_tuple_expression] = STATE(2602), + [sym_literal] = STATE(3236), + [sym_character_literal] = STATE(3272), + [sym_string_literal] = STATE(3272), + [sym_raw_string_literal] = STATE(3272), + [sym_boolean_literal] = STATE(3272), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3236), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(1155), [sym_preproc_endregion] = STATE(1155), [sym_preproc_line] = STATE(1155), @@ -237054,47 +236940,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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3379), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1481), - [anon_sym_LPAREN] = ACTIONS(1483), - [anon_sym_ref] = ACTIONS(1485), - [anon_sym_LBRACE] = ACTIONS(1487), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1149), + [anon_sym_LPAREN] = ACTIONS(1531), + [anon_sym_ref] = ACTIONS(1533), + [anon_sym_LBRACE] = ACTIONS(1155), + [anon_sym_delegate] = ACTIONS(1157), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1101), + [anon_sym_new] = ACTIONS(1535), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1067), - [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(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1489), - [anon_sym_DASH] = ACTIONS(1489), - [anon_sym_STAR] = ACTIONS(1111), - [anon_sym_CARET] = ACTIONS(1491), - [anon_sym_AMP] = ACTIONS(1491), - [anon_sym_this] = ACTIONS(83), + [anon_sym_checked] = ACTIONS(1163), + [anon_sym_BANG] = ACTIONS(1539), + [anon_sym_TILDE] = ACTIONS(1539), + [anon_sym_PLUS_PLUS] = ACTIONS(1539), + [anon_sym_DASH_DASH] = ACTIONS(1539), + [anon_sym_true] = ACTIONS(1169), + [anon_sym_false] = ACTIONS(1169), + [anon_sym_PLUS] = ACTIONS(1537), + [anon_sym_DASH] = ACTIONS(1537), + [anon_sym_STAR] = ACTIONS(1541), + [anon_sym_CARET] = ACTIONS(1539), + [anon_sym_AMP] = ACTIONS(1539), + [anon_sym_this] = ACTIONS(1173), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), + [anon_sym_base] = ACTIONS(1175), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1067), + [sym_predefined_type] = ACTIONS(1177), + [anon_sym_unchecked] = ACTIONS(1163), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1119), + [anon_sym_default] = ACTIONS(1179), + [anon_sym_throw] = ACTIONS(1543), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1121), - [anon_sym_DOT_DOT] = ACTIONS(1125), + [anon_sym_await] = ACTIONS(1545), + [anon_sym_DOT_DOT] = ACTIONS(1547), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -237107,19 +236993,19 @@ static const uint16_t ts_parse_table[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(1089), + [anon_sym_stackalloc] = ACTIONS(1187), + [anon_sym_sizeof] = ACTIONS(1189), + [anon_sym_typeof] = ACTIONS(1191), + [anon_sym___makeref] = ACTIONS(1193), + [anon_sym___reftype] = ACTIONS(1195), + [anon_sym___refvalue] = ACTIONS(1197), + [sym_null_literal] = ACTIONS(1199), + [anon_sym_SQUOTE] = ACTIONS(1201), + [sym_integer_literal] = ACTIONS(1199), + [sym_real_literal] = ACTIONS(1203), + [anon_sym_DQUOTE] = ACTIONS(1205), + [sym_verbatim_string_literal] = ACTIONS(1203), + [aux_sym_preproc_if_token1] = ACTIONS(1207), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -237130,90 +237016,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(151), - [sym_interpolation_verbatim_start] = ACTIONS(153), - [sym_interpolation_raw_start] = ACTIONS(155), - [sym_raw_string_start] = ACTIONS(157), + [sym_interpolation_regular_start] = ACTIONS(1209), + [sym_interpolation_verbatim_start] = ACTIONS(1211), + [sym_interpolation_raw_start] = ACTIONS(1213), + [sym_raw_string_start] = ACTIONS(1215), }, [1156] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(5889), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2247), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(4836), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3408), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3080), - [sym_postfix_unary_expression] = STATE(3111), - [sym_prefix_unary_expression] = STATE(3111), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6161), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3080), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3111), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3080), - [sym_member_access_expression] = STATE(2484), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3111), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7323), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(3080), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3080), - [sym_typeof_expression] = STATE(3080), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2484), - [sym_literal] = STATE(3080), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(5881), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2386), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(4111), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3132), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3102), + [sym_postfix_unary_expression] = STATE(3079), + [sym_prefix_unary_expression] = STATE(3079), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6158), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3102), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3079), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3102), + [sym_member_access_expression] = STATE(2472), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3079), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7650), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(3102), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3102), + [sym_typeof_expression] = STATE(3102), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2472), + [sym_literal] = STATE(3102), + [sym_character_literal] = STATE(3037), + [sym_string_literal] = STATE(3037), + [sym_raw_string_literal] = STATE(3037), + [sym_boolean_literal] = STATE(3037), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(1156), [sym_preproc_endregion] = STATE(1156), [sym_preproc_line] = STATE(1156), @@ -237223,47 +237109,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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1481), - [anon_sym_LPAREN] = ACTIONS(1483), - [anon_sym_ref] = ACTIONS(1485), - [anon_sym_LBRACE] = ACTIONS(1487), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1479), + [anon_sym_LPAREN] = ACTIONS(2185), + [anon_sym_ref] = ACTIONS(2187), + [anon_sym_LBRACE] = ACTIONS(1481), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1101), + [anon_sym_new] = ACTIONS(1899), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1067), - [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(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1489), - [anon_sym_DASH] = ACTIONS(1489), - [anon_sym_STAR] = ACTIONS(1111), - [anon_sym_CARET] = ACTIONS(1491), - [anon_sym_AMP] = ACTIONS(1491), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(2191), + [anon_sym_TILDE] = ACTIONS(2191), + [anon_sym_PLUS_PLUS] = ACTIONS(2191), + [anon_sym_DASH_DASH] = ACTIONS(2191), + [anon_sym_true] = ACTIONS(1257), + [anon_sym_false] = ACTIONS(1257), + [anon_sym_PLUS] = ACTIONS(2189), + [anon_sym_DASH] = ACTIONS(2189), + [anon_sym_STAR] = ACTIONS(1905), + [anon_sym_CARET] = ACTIONS(2191), + [anon_sym_AMP] = ACTIONS(2191), [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(1067), + [sym_predefined_type] = ACTIONS(1265), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1119), + [anon_sym_default] = ACTIONS(1267), + [anon_sym_throw] = ACTIONS(2193), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1121), - [anon_sym_DOT_DOT] = ACTIONS(1125), + [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), @@ -237277,18 +237163,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(129), - [anon_sym_typeof] = ACTIONS(131), + [anon_sym_sizeof] = ACTIONS(1277), + [anon_sym_typeof] = ACTIONS(1279), [anon_sym___makeref] = ACTIONS(133), [anon_sym___reftype] = ACTIONS(135), [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1089), + [sym_null_literal] = ACTIONS(1287), + [anon_sym_SQUOTE] = ACTIONS(1289), + [sym_integer_literal] = ACTIONS(1287), + [sym_real_literal] = ACTIONS(1291), + [anon_sym_DQUOTE] = ACTIONS(1293), + [sym_verbatim_string_literal] = ACTIONS(1291), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -237299,90 +237185,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(151), - [sym_interpolation_verbatim_start] = ACTIONS(153), - [sym_interpolation_raw_start] = ACTIONS(155), - [sym_raw_string_start] = ACTIONS(157), + [sym_interpolation_regular_start] = ACTIONS(1297), + [sym_interpolation_verbatim_start] = ACTIONS(1299), + [sym_interpolation_raw_start] = ACTIONS(1301), + [sym_raw_string_start] = ACTIONS(1303), }, [1157] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(5889), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2247), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(4837), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3408), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3080), - [sym_postfix_unary_expression] = STATE(3111), - [sym_prefix_unary_expression] = STATE(3111), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6161), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3080), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3111), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3080), - [sym_member_access_expression] = STATE(2484), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3111), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7323), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(3080), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3080), - [sym_typeof_expression] = STATE(3080), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2484), - [sym_literal] = STATE(3080), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(5893), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2361), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(5660), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(2471), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3102), + [sym_postfix_unary_expression] = STATE(3079), + [sym_prefix_unary_expression] = STATE(3079), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6134), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3102), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3079), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3102), + [sym_member_access_expression] = STATE(2472), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3079), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7425), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(3102), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3102), + [sym_typeof_expression] = STATE(3102), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2472), + [sym_literal] = STATE(3102), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(1157), [sym_preproc_endregion] = STATE(1157), [sym_preproc_line] = STATE(1157), @@ -237392,47 +237278,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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1481), - [anon_sym_LPAREN] = ACTIONS(1483), - [anon_sym_ref] = ACTIONS(1485), - [anon_sym_LBRACE] = ACTIONS(1487), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1479), + [anon_sym_LPAREN] = ACTIONS(43), + [anon_sym_ref] = ACTIONS(715), + [anon_sym_LBRACE] = ACTIONS(1481), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1101), + [anon_sym_new] = ACTIONS(1059), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1067), - [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(1525), + [anon_sym_TILDE] = ACTIONS(1525), + [anon_sym_PLUS_PLUS] = ACTIONS(1525), + [anon_sym_DASH_DASH] = ACTIONS(1525), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1489), - [anon_sym_DASH] = ACTIONS(1489), - [anon_sym_STAR] = ACTIONS(1111), - [anon_sym_CARET] = ACTIONS(1491), - [anon_sym_AMP] = ACTIONS(1491), + [anon_sym_PLUS] = ACTIONS(1523), + [anon_sym_DASH] = ACTIONS(1523), + [anon_sym_STAR] = ACTIONS(2247), + [anon_sym_CARET] = ACTIONS(1525), + [anon_sym_AMP] = ACTIONS(1525), [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(1067), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1119), + [anon_sym_throw] = ACTIONS(1527), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1121), - [anon_sym_DOT_DOT] = ACTIONS(1125), + [anon_sym_await] = ACTIONS(1529), + [anon_sym_DOT_DOT] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -237457,7 +237343,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(1089), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -237474,84 +237360,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [1158] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(5889), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2247), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(4838), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3408), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3080), - [sym_postfix_unary_expression] = STATE(3111), - [sym_prefix_unary_expression] = STATE(3111), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6161), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3080), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3111), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3080), - [sym_member_access_expression] = STATE(2484), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3111), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7323), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(3080), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3080), - [sym_typeof_expression] = STATE(3080), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2484), - [sym_literal] = STATE(3080), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(5528), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2196), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(5552), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3660), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3102), + [sym_postfix_unary_expression] = STATE(3079), + [sym_prefix_unary_expression] = STATE(3079), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6163), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3102), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3079), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3102), + [sym_member_access_expression] = STATE(2472), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3079), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7633), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(3102), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3102), + [sym_typeof_expression] = STATE(3102), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2472), + [sym_literal] = STATE(3102), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(1158), [sym_preproc_endregion] = STATE(1158), [sym_preproc_line] = STATE(1158), @@ -237561,47 +237447,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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1481), - [anon_sym_LPAREN] = ACTIONS(1483), - [anon_sym_ref] = ACTIONS(1485), - [anon_sym_LBRACE] = ACTIONS(1487), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1479), + [anon_sym_LPAREN] = ACTIONS(2009), + [anon_sym_ref] = ACTIONS(2011), + [anon_sym_LBRACE] = ACTIONS(1481), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1101), + [anon_sym_new] = ACTIONS(1095), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1067), - [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(2015), + [anon_sym_TILDE] = ACTIONS(2015), + [anon_sym_PLUS_PLUS] = ACTIONS(2015), + [anon_sym_DASH_DASH] = ACTIONS(2015), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1489), - [anon_sym_DASH] = ACTIONS(1489), - [anon_sym_STAR] = ACTIONS(1111), - [anon_sym_CARET] = ACTIONS(1491), - [anon_sym_AMP] = ACTIONS(1491), + [anon_sym_PLUS] = ACTIONS(2013), + [anon_sym_DASH] = ACTIONS(2013), + [anon_sym_STAR] = ACTIONS(1227), + [anon_sym_CARET] = ACTIONS(2015), + [anon_sym_AMP] = ACTIONS(2015), [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(1067), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1119), + [anon_sym_throw] = ACTIONS(1231), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1121), - [anon_sym_DOT_DOT] = ACTIONS(1125), + [anon_sym_await] = ACTIONS(1233), + [anon_sym_DOT_DOT] = ACTIONS(1235), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -237626,7 +237512,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(1089), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -237643,84 +237529,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [1159] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(5889), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2247), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(4498), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3408), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3080), - [sym_postfix_unary_expression] = STATE(3111), - [sym_prefix_unary_expression] = STATE(3111), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6161), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3080), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3111), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3080), - [sym_member_access_expression] = STATE(2484), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3111), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7323), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(3080), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3080), - [sym_typeof_expression] = STATE(3080), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2484), - [sym_literal] = STATE(3080), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(5528), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2196), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(3528), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3660), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3102), + [sym_postfix_unary_expression] = STATE(3079), + [sym_prefix_unary_expression] = STATE(3079), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6163), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3102), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3079), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3102), + [sym_member_access_expression] = STATE(2472), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3079), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7633), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(3102), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3102), + [sym_typeof_expression] = STATE(3102), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2472), + [sym_literal] = STATE(3102), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(1159), [sym_preproc_endregion] = STATE(1159), [sym_preproc_line] = STATE(1159), @@ -237730,47 +237616,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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1481), - [anon_sym_LPAREN] = ACTIONS(1483), - [anon_sym_ref] = ACTIONS(1485), - [anon_sym_LBRACE] = ACTIONS(1487), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1479), + [anon_sym_LPAREN] = ACTIONS(2009), + [anon_sym_ref] = ACTIONS(2011), + [anon_sym_LBRACE] = ACTIONS(1481), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1101), + [anon_sym_new] = ACTIONS(1095), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1067), - [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(2015), + [anon_sym_TILDE] = ACTIONS(2015), + [anon_sym_PLUS_PLUS] = ACTIONS(2015), + [anon_sym_DASH_DASH] = ACTIONS(2015), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1489), - [anon_sym_DASH] = ACTIONS(1489), - [anon_sym_STAR] = ACTIONS(1111), - [anon_sym_CARET] = ACTIONS(1491), - [anon_sym_AMP] = ACTIONS(1491), + [anon_sym_PLUS] = ACTIONS(2013), + [anon_sym_DASH] = ACTIONS(2013), + [anon_sym_STAR] = ACTIONS(1227), + [anon_sym_CARET] = ACTIONS(2015), + [anon_sym_AMP] = ACTIONS(2015), [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(1067), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1119), + [anon_sym_throw] = ACTIONS(1231), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1121), - [anon_sym_DOT_DOT] = ACTIONS(1125), + [anon_sym_await] = ACTIONS(1233), + [anon_sym_DOT_DOT] = ACTIONS(1235), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -237795,7 +237681,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(1089), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -237812,84 +237698,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [1160] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(5889), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2247), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(4499), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3408), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3080), - [sym_postfix_unary_expression] = STATE(3111), - [sym_prefix_unary_expression] = STATE(3111), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6161), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3080), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3111), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3080), - [sym_member_access_expression] = STATE(2484), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3111), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7323), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(3080), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3080), - [sym_typeof_expression] = STATE(3080), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2484), - [sym_literal] = STATE(3080), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(5881), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2386), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(4112), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3110), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3102), + [sym_postfix_unary_expression] = STATE(3079), + [sym_prefix_unary_expression] = STATE(3079), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6153), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3102), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3079), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3102), + [sym_member_access_expression] = STATE(2472), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3079), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7637), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(3102), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3102), + [sym_typeof_expression] = STATE(3102), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2472), + [sym_literal] = STATE(3102), + [sym_character_literal] = STATE(3037), + [sym_string_literal] = STATE(3037), + [sym_raw_string_literal] = STATE(3037), + [sym_boolean_literal] = STATE(3037), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(1160), [sym_preproc_endregion] = STATE(1160), [sym_preproc_line] = STATE(1160), @@ -237899,47 +237785,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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1481), - [anon_sym_LPAREN] = ACTIONS(1483), - [anon_sym_ref] = ACTIONS(1485), - [anon_sym_LBRACE] = ACTIONS(1487), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1479), + [anon_sym_LPAREN] = ACTIONS(1895), + [anon_sym_ref] = ACTIONS(1897), + [anon_sym_LBRACE] = ACTIONS(1481), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1101), + [anon_sym_new] = ACTIONS(1899), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1067), - [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(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1489), - [anon_sym_DASH] = ACTIONS(1489), - [anon_sym_STAR] = ACTIONS(1111), - [anon_sym_CARET] = ACTIONS(1491), - [anon_sym_AMP] = ACTIONS(1491), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(1903), + [anon_sym_TILDE] = ACTIONS(1903), + [anon_sym_PLUS_PLUS] = ACTIONS(1903), + [anon_sym_DASH_DASH] = ACTIONS(1903), + [anon_sym_true] = ACTIONS(1257), + [anon_sym_false] = ACTIONS(1257), + [anon_sym_PLUS] = ACTIONS(1901), + [anon_sym_DASH] = ACTIONS(1901), + [anon_sym_STAR] = ACTIONS(1905), + [anon_sym_CARET] = ACTIONS(1903), + [anon_sym_AMP] = ACTIONS(1903), [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(1067), + [sym_predefined_type] = ACTIONS(1265), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1119), + [anon_sym_default] = ACTIONS(1267), + [anon_sym_throw] = ACTIONS(1907), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1121), - [anon_sym_DOT_DOT] = ACTIONS(1125), + [anon_sym_await] = ACTIONS(1909), + [anon_sym_DOT_DOT] = ACTIONS(1911), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -237953,18 +237839,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(129), - [anon_sym_typeof] = ACTIONS(131), + [anon_sym_sizeof] = ACTIONS(1277), + [anon_sym_typeof] = ACTIONS(1279), [anon_sym___makeref] = ACTIONS(133), [anon_sym___reftype] = ACTIONS(135), [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1089), + [sym_null_literal] = ACTIONS(1287), + [anon_sym_SQUOTE] = ACTIONS(1289), + [sym_integer_literal] = ACTIONS(1287), + [sym_real_literal] = ACTIONS(1291), + [anon_sym_DQUOTE] = ACTIONS(1293), + [sym_verbatim_string_literal] = ACTIONS(1291), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -237975,90 +237861,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(151), - [sym_interpolation_verbatim_start] = ACTIONS(153), - [sym_interpolation_raw_start] = ACTIONS(155), - [sym_raw_string_start] = ACTIONS(157), + [sym_interpolation_regular_start] = ACTIONS(1297), + [sym_interpolation_verbatim_start] = ACTIONS(1299), + [sym_interpolation_raw_start] = ACTIONS(1301), + [sym_raw_string_start] = ACTIONS(1303), }, [1161] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(5889), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2247), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(4500), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3408), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3080), - [sym_postfix_unary_expression] = STATE(3111), - [sym_prefix_unary_expression] = STATE(3111), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6161), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3080), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3111), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3080), - [sym_member_access_expression] = STATE(2484), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3111), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7323), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(3080), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3080), - [sym_typeof_expression] = STATE(3080), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2484), - [sym_literal] = STATE(3080), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(5528), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2196), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(5627), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3660), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3102), + [sym_postfix_unary_expression] = STATE(3079), + [sym_prefix_unary_expression] = STATE(3079), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6163), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3102), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3079), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3102), + [sym_member_access_expression] = STATE(2472), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3079), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7633), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(3102), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3102), + [sym_typeof_expression] = STATE(3102), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2472), + [sym_literal] = STATE(3102), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(1161), [sym_preproc_endregion] = STATE(1161), [sym_preproc_line] = STATE(1161), @@ -238068,47 +237954,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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1481), - [anon_sym_LPAREN] = ACTIONS(1483), - [anon_sym_ref] = ACTIONS(1485), - [anon_sym_LBRACE] = ACTIONS(1487), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1479), + [anon_sym_LPAREN] = ACTIONS(2009), + [anon_sym_ref] = ACTIONS(2011), + [anon_sym_LBRACE] = ACTIONS(1481), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1101), + [anon_sym_new] = ACTIONS(1095), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1067), - [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(2015), + [anon_sym_TILDE] = ACTIONS(2015), + [anon_sym_PLUS_PLUS] = ACTIONS(2015), + [anon_sym_DASH_DASH] = ACTIONS(2015), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1489), - [anon_sym_DASH] = ACTIONS(1489), - [anon_sym_STAR] = ACTIONS(1111), - [anon_sym_CARET] = ACTIONS(1491), - [anon_sym_AMP] = ACTIONS(1491), + [anon_sym_PLUS] = ACTIONS(2013), + [anon_sym_DASH] = ACTIONS(2013), + [anon_sym_STAR] = ACTIONS(1227), + [anon_sym_CARET] = ACTIONS(2015), + [anon_sym_AMP] = ACTIONS(2015), [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(1067), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1119), + [anon_sym_throw] = ACTIONS(1231), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1121), - [anon_sym_DOT_DOT] = ACTIONS(1125), + [anon_sym_await] = ACTIONS(1233), + [anon_sym_DOT_DOT] = ACTIONS(1235), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -238133,7 +238019,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(1089), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -238150,84 +238036,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [1162] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(5889), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2247), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(4656), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3408), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3080), - [sym_postfix_unary_expression] = STATE(3111), - [sym_prefix_unary_expression] = STATE(3111), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6161), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3080), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3111), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3080), - [sym_member_access_expression] = STATE(2484), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3111), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7323), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(3080), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3080), - [sym_typeof_expression] = STATE(3080), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2484), - [sym_literal] = STATE(3080), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(5528), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2196), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(5629), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3660), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3102), + [sym_postfix_unary_expression] = STATE(3079), + [sym_prefix_unary_expression] = STATE(3079), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6163), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3102), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3079), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3102), + [sym_member_access_expression] = STATE(2472), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3079), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7633), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(3102), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3102), + [sym_typeof_expression] = STATE(3102), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2472), + [sym_literal] = STATE(3102), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(1162), [sym_preproc_endregion] = STATE(1162), [sym_preproc_line] = STATE(1162), @@ -238237,47 +238123,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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1481), - [anon_sym_LPAREN] = ACTIONS(1483), - [anon_sym_ref] = ACTIONS(1485), - [anon_sym_LBRACE] = ACTIONS(1487), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1479), + [anon_sym_LPAREN] = ACTIONS(2009), + [anon_sym_ref] = ACTIONS(2011), + [anon_sym_LBRACE] = ACTIONS(1481), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1101), + [anon_sym_new] = ACTIONS(1095), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1067), - [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(2015), + [anon_sym_TILDE] = ACTIONS(2015), + [anon_sym_PLUS_PLUS] = ACTIONS(2015), + [anon_sym_DASH_DASH] = ACTIONS(2015), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1489), - [anon_sym_DASH] = ACTIONS(1489), - [anon_sym_STAR] = ACTIONS(1111), - [anon_sym_CARET] = ACTIONS(1491), - [anon_sym_AMP] = ACTIONS(1491), + [anon_sym_PLUS] = ACTIONS(2013), + [anon_sym_DASH] = ACTIONS(2013), + [anon_sym_STAR] = ACTIONS(1227), + [anon_sym_CARET] = ACTIONS(2015), + [anon_sym_AMP] = ACTIONS(2015), [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(1067), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1119), + [anon_sym_throw] = ACTIONS(1231), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1121), - [anon_sym_DOT_DOT] = ACTIONS(1125), + [anon_sym_await] = ACTIONS(1233), + [anon_sym_DOT_DOT] = ACTIONS(1235), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -238302,7 +238188,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(1089), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -238319,84 +238205,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [1163] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2610), - [sym__name] = STATE(5886), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2319), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(4376), - [sym_non_lvalue_expression] = STATE(3277), - [sym_lvalue_expression] = STATE(3347), - [sym__expression_statement_expression] = STATE(3228), - [sym_assignment_expression] = STATE(3289), - [sym_binary_expression] = STATE(3228), - [sym_postfix_unary_expression] = STATE(3289), - [sym_prefix_unary_expression] = STATE(3289), - [sym__pointer_indirection_expression] = STATE(2609), - [sym_query_expression] = STATE(3228), - [sym_from_clause] = STATE(6150), - [sym_conditional_expression] = STATE(3228), - [sym_conditional_access_expression] = STATE(3228), - [sym_as_expression] = STATE(3228), - [sym_is_expression] = STATE(3228), - [sym_is_pattern_expression] = STATE(3228), - [sym_cast_expression] = STATE(3228), - [sym_checked_expression] = STATE(3228), - [sym_invocation_expression] = STATE(3289), - [sym_switch_expression] = STATE(3228), - [sym_await_expression] = STATE(3289), - [sym_throw_expression] = STATE(3228), - [sym_element_access_expression] = STATE(2609), - [sym_interpolated_string_expression] = STATE(3228), - [sym_member_access_expression] = STATE(2609), - [sym_object_creation_expression] = STATE(3289), - [sym_parenthesized_expression] = STATE(3289), - [sym__parenthesized_lvalue_expression] = STATE(2609), - [sym_lambda_expression] = STATE(3228), - [sym__lambda_expression_init] = STATE(7531), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3228), - [sym_anonymous_method_expression] = STATE(3228), - [sym_anonymous_object_creation_expression] = STATE(3228), - [sym_implicit_array_creation_expression] = STATE(3228), - [sym_implicit_object_creation_expression] = STATE(3228), - [sym_implicit_stackalloc_expression] = STATE(3228), - [sym_initializer_expression] = STATE(3228), - [sym_default_expression] = STATE(3228), - [sym_with_expression] = STATE(3228), - [sym_sizeof_expression] = STATE(3228), - [sym_typeof_expression] = STATE(3228), - [sym_makeref_expression] = STATE(3228), - [sym_ref_expression] = STATE(3228), - [sym_reftype_expression] = STATE(3228), - [sym_refvalue_expression] = STATE(3228), - [sym_stackalloc_expression] = STATE(3228), - [sym_range_expression] = STATE(3228), - [sym_tuple_expression] = STATE(2609), - [sym_literal] = STATE(3228), - [sym_character_literal] = STATE(3278), - [sym_string_literal] = STATE(3278), - [sym_raw_string_literal] = STATE(3278), - [sym_boolean_literal] = STATE(3278), - [sym_identifier] = STATE(2267), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3228), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(5528), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2196), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(5630), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3660), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3102), + [sym_postfix_unary_expression] = STATE(3079), + [sym_prefix_unary_expression] = STATE(3079), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6163), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3102), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3079), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3102), + [sym_member_access_expression] = STATE(2472), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3079), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7633), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(3102), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3102), + [sym_typeof_expression] = STATE(3102), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2472), + [sym_literal] = STATE(3102), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(1163), [sym_preproc_endregion] = STATE(1163), [sym_preproc_line] = STATE(1163), @@ -238406,47 +238292,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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3396), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1153), - [anon_sym_LPAREN] = ACTIONS(1525), - [anon_sym_ref] = ACTIONS(1527), - [anon_sym_LBRACE] = ACTIONS(1159), - [anon_sym_delegate] = ACTIONS(1161), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1479), + [anon_sym_LPAREN] = ACTIONS(2009), + [anon_sym_ref] = ACTIONS(2011), + [anon_sym_LBRACE] = ACTIONS(1481), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1529), + [anon_sym_new] = ACTIONS(1095), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1167), - [anon_sym_BANG] = ACTIONS(1533), - [anon_sym_TILDE] = ACTIONS(1533), - [anon_sym_PLUS_PLUS] = ACTIONS(1533), - [anon_sym_DASH_DASH] = ACTIONS(1533), - [anon_sym_true] = ACTIONS(1173), - [anon_sym_false] = ACTIONS(1173), - [anon_sym_PLUS] = ACTIONS(1531), - [anon_sym_DASH] = ACTIONS(1531), - [anon_sym_STAR] = ACTIONS(1535), - [anon_sym_CARET] = ACTIONS(1533), - [anon_sym_AMP] = ACTIONS(1533), - [anon_sym_this] = ACTIONS(1177), + [anon_sym_checked] = ACTIONS(1065), + [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(77), + [anon_sym_false] = ACTIONS(77), + [anon_sym_PLUS] = ACTIONS(2013), + [anon_sym_DASH] = ACTIONS(2013), + [anon_sym_STAR] = ACTIONS(1227), + [anon_sym_CARET] = ACTIONS(2015), + [anon_sym_AMP] = ACTIONS(2015), + [anon_sym_this] = ACTIONS(83), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1179), + [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1181), - [anon_sym_unchecked] = ACTIONS(1167), + [sym_predefined_type] = ACTIONS(91), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1183), - [anon_sym_throw] = ACTIONS(1537), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(1231), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1539), - [anon_sym_DOT_DOT] = ACTIONS(1541), + [anon_sym_await] = ACTIONS(1233), + [anon_sym_DOT_DOT] = ACTIONS(1235), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -238459,19 +238345,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1191), - [anon_sym_sizeof] = ACTIONS(1193), - [anon_sym_typeof] = ACTIONS(1195), - [anon_sym___makeref] = ACTIONS(1197), - [anon_sym___reftype] = ACTIONS(1199), - [anon_sym___refvalue] = ACTIONS(1201), - [sym_null_literal] = ACTIONS(1203), - [anon_sym_SQUOTE] = ACTIONS(1205), - [sym_integer_literal] = ACTIONS(1203), - [sym_real_literal] = ACTIONS(1207), - [anon_sym_DQUOTE] = ACTIONS(1209), - [sym_verbatim_string_literal] = ACTIONS(1207), - [aux_sym_preproc_if_token1] = ACTIONS(1211), + [anon_sym_stackalloc] = ACTIONS(127), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_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), @@ -238482,90 +238368,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1213), - [sym_interpolation_verbatim_start] = ACTIONS(1215), - [sym_interpolation_raw_start] = ACTIONS(1217), - [sym_raw_string_start] = ACTIONS(1219), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [sym_interpolation_raw_start] = ACTIONS(155), + [sym_raw_string_start] = ACTIONS(157), }, [1164] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(5889), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2247), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(3519), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3408), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3080), - [sym_postfix_unary_expression] = STATE(3111), - [sym_prefix_unary_expression] = STATE(3111), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6161), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3080), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3111), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3080), - [sym_member_access_expression] = STATE(2484), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3111), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7323), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(3080), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3080), - [sym_typeof_expression] = STATE(3080), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2484), - [sym_literal] = STATE(3080), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(5528), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2196), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(5631), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3660), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3102), + [sym_postfix_unary_expression] = STATE(3079), + [sym_prefix_unary_expression] = STATE(3079), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6163), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3102), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3079), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3102), + [sym_member_access_expression] = STATE(2472), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3079), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7633), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(3102), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3102), + [sym_typeof_expression] = STATE(3102), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2472), + [sym_literal] = STATE(3102), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(1164), [sym_preproc_endregion] = STATE(1164), [sym_preproc_line] = STATE(1164), @@ -238575,47 +238461,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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1481), - [anon_sym_LPAREN] = ACTIONS(1483), - [anon_sym_ref] = ACTIONS(1485), - [anon_sym_LBRACE] = ACTIONS(1487), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1479), + [anon_sym_LPAREN] = ACTIONS(2009), + [anon_sym_ref] = ACTIONS(2011), + [anon_sym_LBRACE] = ACTIONS(1481), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1101), + [anon_sym_new] = ACTIONS(1095), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1067), - [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(2015), + [anon_sym_TILDE] = ACTIONS(2015), + [anon_sym_PLUS_PLUS] = ACTIONS(2015), + [anon_sym_DASH_DASH] = ACTIONS(2015), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1489), - [anon_sym_DASH] = ACTIONS(1489), - [anon_sym_STAR] = ACTIONS(1111), - [anon_sym_CARET] = ACTIONS(1491), - [anon_sym_AMP] = ACTIONS(1491), + [anon_sym_PLUS] = ACTIONS(2013), + [anon_sym_DASH] = ACTIONS(2013), + [anon_sym_STAR] = ACTIONS(1227), + [anon_sym_CARET] = ACTIONS(2015), + [anon_sym_AMP] = ACTIONS(2015), [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(1067), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1119), + [anon_sym_throw] = ACTIONS(1231), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1121), - [anon_sym_DOT_DOT] = ACTIONS(1125), + [anon_sym_await] = ACTIONS(1233), + [anon_sym_DOT_DOT] = ACTIONS(1235), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -238640,7 +238526,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(1089), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -238657,84 +238543,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [1165] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(5910), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2247), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(5618), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3379), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3080), - [sym_postfix_unary_expression] = STATE(3111), - [sym_prefix_unary_expression] = STATE(3111), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6154), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3080), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3111), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3080), - [sym_member_access_expression] = STATE(2484), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3111), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7575), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(3080), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3080), - [sym_typeof_expression] = STATE(3080), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2484), - [sym_literal] = STATE(3080), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(5528), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2196), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(5632), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3660), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3102), + [sym_postfix_unary_expression] = STATE(3079), + [sym_prefix_unary_expression] = STATE(3079), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6163), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3102), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3079), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3102), + [sym_member_access_expression] = STATE(2472), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3079), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7633), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(3102), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3102), + [sym_typeof_expression] = STATE(3102), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2472), + [sym_literal] = STATE(3102), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(1165), [sym_preproc_endregion] = STATE(1165), [sym_preproc_line] = STATE(1165), @@ -238744,47 +238630,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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1481), - [anon_sym_LPAREN] = ACTIONS(895), - [anon_sym_ref] = ACTIONS(897), - [anon_sym_LBRACE] = ACTIONS(1487), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1479), + [anon_sym_LPAREN] = ACTIONS(2009), + [anon_sym_ref] = ACTIONS(2011), + [anon_sym_LBRACE] = ACTIONS(1481), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1061), + [anon_sym_new] = ACTIONS(1095), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1067), - [anon_sym_BANG] = ACTIONS(1495), - [anon_sym_TILDE] = ACTIONS(1495), - [anon_sym_PLUS_PLUS] = ACTIONS(1495), - [anon_sym_DASH_DASH] = ACTIONS(1495), + [anon_sym_checked] = ACTIONS(1065), + [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(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1493), - [anon_sym_DASH] = ACTIONS(1493), - [anon_sym_STAR] = ACTIONS(905), - [anon_sym_CARET] = ACTIONS(1495), - [anon_sym_AMP] = ACTIONS(1495), + [anon_sym_PLUS] = ACTIONS(2013), + [anon_sym_DASH] = ACTIONS(2013), + [anon_sym_STAR] = ACTIONS(1227), + [anon_sym_CARET] = ACTIONS(2015), + [anon_sym_AMP] = ACTIONS(2015), [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(1067), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1079), + [anon_sym_throw] = ACTIONS(1231), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1081), - [anon_sym_DOT_DOT] = ACTIONS(911), + [anon_sym_await] = ACTIONS(1233), + [anon_sym_DOT_DOT] = ACTIONS(1235), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -238809,7 +238695,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(1089), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -238826,84 +238712,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [1166] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2762), - [sym__name] = STATE(5889), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2247), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(4326), - [sym_non_lvalue_expression] = STATE(3438), - [sym_lvalue_expression] = STATE(3224), - [sym__expression_statement_expression] = STATE(3362), - [sym_assignment_expression] = STATE(3449), - [sym_binary_expression] = STATE(3362), - [sym_postfix_unary_expression] = STATE(3449), - [sym_prefix_unary_expression] = STATE(3449), - [sym__pointer_indirection_expression] = STATE(2747), - [sym_query_expression] = STATE(3362), - [sym_from_clause] = STATE(6146), - [sym_conditional_expression] = STATE(3362), - [sym_conditional_access_expression] = STATE(3362), - [sym_as_expression] = STATE(3362), - [sym_is_expression] = STATE(3362), - [sym_is_pattern_expression] = STATE(3362), - [sym_cast_expression] = STATE(3362), - [sym_checked_expression] = STATE(3362), - [sym_invocation_expression] = STATE(3449), - [sym_switch_expression] = STATE(3362), - [sym_await_expression] = STATE(3449), - [sym_throw_expression] = STATE(3362), - [sym_element_access_expression] = STATE(2747), - [sym_interpolated_string_expression] = STATE(3362), - [sym_member_access_expression] = STATE(2747), - [sym_object_creation_expression] = STATE(3449), - [sym_parenthesized_expression] = STATE(3449), - [sym__parenthesized_lvalue_expression] = STATE(2747), - [sym_lambda_expression] = STATE(3362), - [sym__lambda_expression_init] = STATE(7381), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3362), - [sym_anonymous_method_expression] = STATE(3362), - [sym_anonymous_object_creation_expression] = STATE(3362), - [sym_implicit_array_creation_expression] = STATE(3362), - [sym_implicit_object_creation_expression] = STATE(3362), - [sym_implicit_stackalloc_expression] = STATE(3362), - [sym_initializer_expression] = STATE(3362), - [sym_default_expression] = STATE(3362), - [sym_with_expression] = STATE(3362), - [sym_sizeof_expression] = STATE(3362), - [sym_typeof_expression] = STATE(3362), - [sym_makeref_expression] = STATE(3362), - [sym_ref_expression] = STATE(3362), - [sym_reftype_expression] = STATE(3362), - [sym_refvalue_expression] = STATE(3362), - [sym_stackalloc_expression] = STATE(3362), - [sym_range_expression] = STATE(3362), - [sym_tuple_expression] = STATE(2747), - [sym_literal] = STATE(3362), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3362), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(5528), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2196), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(5633), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3660), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3102), + [sym_postfix_unary_expression] = STATE(3079), + [sym_prefix_unary_expression] = STATE(3079), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6163), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3102), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3079), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3102), + [sym_member_access_expression] = STATE(2472), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3079), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7633), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(3102), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3102), + [sym_typeof_expression] = STATE(3102), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2472), + [sym_literal] = STATE(3102), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(1166), [sym_preproc_endregion] = STATE(1166), [sym_preproc_line] = STATE(1166), @@ -238913,47 +238799,47 @@ 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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3385), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1307), - [anon_sym_LPAREN] = ACTIONS(1359), - [anon_sym_ref] = ACTIONS(1361), - [anon_sym_LBRACE] = ACTIONS(1313), - [anon_sym_delegate] = ACTIONS(1315), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1479), + [anon_sym_LPAREN] = ACTIONS(2009), + [anon_sym_ref] = ACTIONS(2011), + [anon_sym_LBRACE] = ACTIONS(1481), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1317), + [anon_sym_new] = ACTIONS(1095), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1319), - [anon_sym_BANG] = ACTIONS(1107), - [anon_sym_TILDE] = ACTIONS(1107), - [anon_sym_PLUS_PLUS] = ACTIONS(1107), - [anon_sym_DASH_DASH] = ACTIONS(1107), + [anon_sym_checked] = ACTIONS(1065), + [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(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1109), - [anon_sym_DASH] = ACTIONS(1109), - [anon_sym_STAR] = ACTIONS(1363), - [anon_sym_CARET] = ACTIONS(1107), - [anon_sym_AMP] = ACTIONS(1107), - [anon_sym_this] = ACTIONS(1323), + [anon_sym_PLUS] = ACTIONS(2013), + [anon_sym_DASH] = ACTIONS(2013), + [anon_sym_STAR] = ACTIONS(1227), + [anon_sym_CARET] = ACTIONS(2015), + [anon_sym_AMP] = ACTIONS(2015), + [anon_sym_this] = ACTIONS(83), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1325), + [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1319), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1365), + [anon_sym_throw] = ACTIONS(1231), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1367), - [anon_sym_DOT_DOT] = ACTIONS(1369), + [anon_sym_await] = ACTIONS(1233), + [anon_sym_DOT_DOT] = ACTIONS(1235), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -238966,19 +238852,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1333), + [anon_sym_stackalloc] = ACTIONS(127), [anon_sym_sizeof] = ACTIONS(129), [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(1335), - [anon_sym___reftype] = ACTIONS(1337), - [anon_sym___refvalue] = ACTIONS(1339), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), [sym_null_literal] = ACTIONS(139), [anon_sym_SQUOTE] = ACTIONS(141), [sym_integer_literal] = ACTIONS(139), [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1341), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -238995,84 +238881,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [1167] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(5889), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2247), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(4502), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3408), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3080), - [sym_postfix_unary_expression] = STATE(3111), - [sym_prefix_unary_expression] = STATE(3111), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6161), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3080), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3111), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3080), - [sym_member_access_expression] = STATE(2484), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3111), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7323), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(3080), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3080), - [sym_typeof_expression] = STATE(3080), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2484), - [sym_literal] = STATE(3080), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(5528), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2196), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(5638), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3660), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3102), + [sym_postfix_unary_expression] = STATE(3079), + [sym_prefix_unary_expression] = STATE(3079), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6163), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3102), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3079), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3102), + [sym_member_access_expression] = STATE(2472), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3079), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7633), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(3102), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3102), + [sym_typeof_expression] = STATE(3102), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2472), + [sym_literal] = STATE(3102), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(1167), [sym_preproc_endregion] = STATE(1167), [sym_preproc_line] = STATE(1167), @@ -239082,47 +238968,47 @@ 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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1481), - [anon_sym_LPAREN] = ACTIONS(1483), - [anon_sym_ref] = ACTIONS(1485), - [anon_sym_LBRACE] = ACTIONS(1487), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1479), + [anon_sym_LPAREN] = ACTIONS(2009), + [anon_sym_ref] = ACTIONS(2011), + [anon_sym_LBRACE] = ACTIONS(1481), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1101), + [anon_sym_new] = ACTIONS(1095), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1067), - [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(2015), + [anon_sym_TILDE] = ACTIONS(2015), + [anon_sym_PLUS_PLUS] = ACTIONS(2015), + [anon_sym_DASH_DASH] = ACTIONS(2015), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1489), - [anon_sym_DASH] = ACTIONS(1489), - [anon_sym_STAR] = ACTIONS(1111), - [anon_sym_CARET] = ACTIONS(1491), - [anon_sym_AMP] = ACTIONS(1491), + [anon_sym_PLUS] = ACTIONS(2013), + [anon_sym_DASH] = ACTIONS(2013), + [anon_sym_STAR] = ACTIONS(1227), + [anon_sym_CARET] = ACTIONS(2015), + [anon_sym_AMP] = ACTIONS(2015), [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(1067), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1119), + [anon_sym_throw] = ACTIONS(1231), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1121), - [anon_sym_DOT_DOT] = ACTIONS(1125), + [anon_sym_await] = ACTIONS(1233), + [anon_sym_DOT_DOT] = ACTIONS(1235), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -239147,7 +239033,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(1089), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -239164,84 +239050,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [1168] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(5907), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2404), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(4212), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3140), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3080), - [sym_postfix_unary_expression] = STATE(3111), - [sym_prefix_unary_expression] = STATE(3111), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6183), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3080), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3111), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3080), - [sym_member_access_expression] = STATE(2484), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3111), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7703), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(3080), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3080), - [sym_typeof_expression] = STATE(3080), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2484), - [sym_literal] = STATE(3080), - [sym_character_literal] = STATE(3011), - [sym_string_literal] = STATE(3011), - [sym_raw_string_literal] = STATE(3011), - [sym_boolean_literal] = STATE(3011), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(5528), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2196), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(5644), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3660), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3102), + [sym_postfix_unary_expression] = STATE(3079), + [sym_prefix_unary_expression] = STATE(3079), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6163), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3102), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3079), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3102), + [sym_member_access_expression] = STATE(2472), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3079), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7633), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(3102), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3102), + [sym_typeof_expression] = STATE(3102), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2472), + [sym_literal] = STATE(3102), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(1168), [sym_preproc_endregion] = STATE(1168), [sym_preproc_line] = STATE(1168), @@ -239251,47 +239137,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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1481), - [anon_sym_LPAREN] = ACTIONS(2251), - [anon_sym_ref] = ACTIONS(2253), - [anon_sym_LBRACE] = ACTIONS(1487), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1479), + [anon_sym_LPAREN] = ACTIONS(2009), + [anon_sym_ref] = ACTIONS(2011), + [anon_sym_LBRACE] = ACTIONS(1481), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1937), + [anon_sym_new] = ACTIONS(1095), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1067), - [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(1259), - [anon_sym_false] = ACTIONS(1259), - [anon_sym_PLUS] = ACTIONS(2255), - [anon_sym_DASH] = ACTIONS(2255), - [anon_sym_STAR] = ACTIONS(1943), - [anon_sym_CARET] = ACTIONS(2257), - [anon_sym_AMP] = ACTIONS(2257), + [anon_sym_checked] = ACTIONS(1065), + [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(77), + [anon_sym_false] = ACTIONS(77), + [anon_sym_PLUS] = ACTIONS(2013), + [anon_sym_DASH] = ACTIONS(2013), + [anon_sym_STAR] = ACTIONS(1227), + [anon_sym_CARET] = ACTIONS(2015), + [anon_sym_AMP] = ACTIONS(2015), [anon_sym_this] = ACTIONS(83), [anon_sym_scoped] = ACTIONS(85), [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1267), - [anon_sym_unchecked] = ACTIONS(1067), + [sym_predefined_type] = ACTIONS(91), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1269), - [anon_sym_throw] = ACTIONS(2259), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(1231), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2261), - [anon_sym_DOT_DOT] = ACTIONS(2263), + [anon_sym_await] = ACTIONS(1233), + [anon_sym_DOT_DOT] = ACTIONS(1235), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -239305,18 +239191,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(1279), - [anon_sym_typeof] = ACTIONS(1281), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), [anon_sym___makeref] = ACTIONS(133), [anon_sym___reftype] = ACTIONS(135), [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(1289), - [anon_sym_SQUOTE] = ACTIONS(1291), - [sym_integer_literal] = ACTIONS(1289), - [sym_real_literal] = ACTIONS(1293), - [anon_sym_DQUOTE] = ACTIONS(1295), - [sym_verbatim_string_literal] = ACTIONS(1293), - [aux_sym_preproc_if_token1] = ACTIONS(1089), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_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), @@ -239327,90 +239213,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1299), - [sym_interpolation_verbatim_start] = ACTIONS(1301), - [sym_interpolation_raw_start] = ACTIONS(1303), - [sym_raw_string_start] = ACTIONS(1305), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [sym_interpolation_raw_start] = ACTIONS(155), + [sym_raw_string_start] = ACTIONS(157), }, [1169] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2610), - [sym__name] = STATE(5886), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2319), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(4384), - [sym_non_lvalue_expression] = STATE(3277), - [sym_lvalue_expression] = STATE(3347), - [sym__expression_statement_expression] = STATE(3228), - [sym_assignment_expression] = STATE(3289), - [sym_binary_expression] = STATE(3228), - [sym_postfix_unary_expression] = STATE(3289), - [sym_prefix_unary_expression] = STATE(3289), - [sym__pointer_indirection_expression] = STATE(2609), - [sym_query_expression] = STATE(3228), - [sym_from_clause] = STATE(6150), - [sym_conditional_expression] = STATE(3228), - [sym_conditional_access_expression] = STATE(3228), - [sym_as_expression] = STATE(3228), - [sym_is_expression] = STATE(3228), - [sym_is_pattern_expression] = STATE(3228), - [sym_cast_expression] = STATE(3228), - [sym_checked_expression] = STATE(3228), - [sym_invocation_expression] = STATE(3289), - [sym_switch_expression] = STATE(3228), - [sym_await_expression] = STATE(3289), - [sym_throw_expression] = STATE(3228), - [sym_element_access_expression] = STATE(2609), - [sym_interpolated_string_expression] = STATE(3228), - [sym_member_access_expression] = STATE(2609), - [sym_object_creation_expression] = STATE(3289), - [sym_parenthesized_expression] = STATE(3289), - [sym__parenthesized_lvalue_expression] = STATE(2609), - [sym_lambda_expression] = STATE(3228), - [sym__lambda_expression_init] = STATE(7531), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3228), - [sym_anonymous_method_expression] = STATE(3228), - [sym_anonymous_object_creation_expression] = STATE(3228), - [sym_implicit_array_creation_expression] = STATE(3228), - [sym_implicit_object_creation_expression] = STATE(3228), - [sym_implicit_stackalloc_expression] = STATE(3228), - [sym_initializer_expression] = STATE(3228), - [sym_default_expression] = STATE(3228), - [sym_with_expression] = STATE(3228), - [sym_sizeof_expression] = STATE(3228), - [sym_typeof_expression] = STATE(3228), - [sym_makeref_expression] = STATE(3228), - [sym_ref_expression] = STATE(3228), - [sym_reftype_expression] = STATE(3228), - [sym_refvalue_expression] = STATE(3228), - [sym_stackalloc_expression] = STATE(3228), - [sym_range_expression] = STATE(3228), - [sym_tuple_expression] = STATE(2609), - [sym_literal] = STATE(3228), - [sym_character_literal] = STATE(3278), - [sym_string_literal] = STATE(3278), - [sym_raw_string_literal] = STATE(3278), - [sym_boolean_literal] = STATE(3278), - [sym_identifier] = STATE(2267), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3228), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(5528), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2196), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(5646), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3660), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3102), + [sym_postfix_unary_expression] = STATE(3079), + [sym_prefix_unary_expression] = STATE(3079), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6163), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3102), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3079), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3102), + [sym_member_access_expression] = STATE(2472), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3079), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7633), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(3102), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3102), + [sym_typeof_expression] = STATE(3102), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2472), + [sym_literal] = STATE(3102), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(1169), [sym_preproc_endregion] = STATE(1169), [sym_preproc_line] = STATE(1169), @@ -239420,385 +239306,47 @@ 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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3396), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1153), - [anon_sym_LPAREN] = ACTIONS(1525), - [anon_sym_ref] = ACTIONS(1527), - [anon_sym_LBRACE] = ACTIONS(1159), - [anon_sym_delegate] = ACTIONS(1161), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1479), + [anon_sym_LPAREN] = ACTIONS(2009), + [anon_sym_ref] = ACTIONS(2011), + [anon_sym_LBRACE] = ACTIONS(1481), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1529), + [anon_sym_new] = ACTIONS(1095), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1167), - [anon_sym_BANG] = ACTIONS(1533), - [anon_sym_TILDE] = ACTIONS(1533), - [anon_sym_PLUS_PLUS] = ACTIONS(1533), - [anon_sym_DASH_DASH] = ACTIONS(1533), - [anon_sym_true] = ACTIONS(1173), - [anon_sym_false] = ACTIONS(1173), - [anon_sym_PLUS] = ACTIONS(1531), - [anon_sym_DASH] = ACTIONS(1531), - [anon_sym_STAR] = ACTIONS(1535), - [anon_sym_CARET] = ACTIONS(1533), - [anon_sym_AMP] = ACTIONS(1533), - [anon_sym_this] = ACTIONS(1177), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1179), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1181), - [anon_sym_unchecked] = ACTIONS(1167), - [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1183), - [anon_sym_throw] = ACTIONS(1537), - [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1539), - [anon_sym_DOT_DOT] = ACTIONS(1541), - [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(1191), - [anon_sym_sizeof] = ACTIONS(1193), - [anon_sym_typeof] = ACTIONS(1195), - [anon_sym___makeref] = ACTIONS(1197), - [anon_sym___reftype] = ACTIONS(1199), - [anon_sym___refvalue] = ACTIONS(1201), - [sym_null_literal] = ACTIONS(1203), - [anon_sym_SQUOTE] = ACTIONS(1205), - [sym_integer_literal] = ACTIONS(1203), - [sym_real_literal] = ACTIONS(1207), - [anon_sym_DQUOTE] = ACTIONS(1209), - [sym_verbatim_string_literal] = ACTIONS(1207), - [aux_sym_preproc_if_token1] = ACTIONS(1211), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1213), - [sym_interpolation_verbatim_start] = ACTIONS(1215), - [sym_interpolation_raw_start] = ACTIONS(1217), - [sym_raw_string_start] = ACTIONS(1219), - }, - [1170] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2914), - [sym__name] = STATE(5885), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2357), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(3567), - [sym_non_lvalue_expression] = STATE(3880), - [sym_lvalue_expression] = STATE(2986), - [sym__expression_statement_expression] = STATE(3873), - [sym_assignment_expression] = STATE(3881), - [sym_binary_expression] = STATE(3873), - [sym_postfix_unary_expression] = STATE(3881), - [sym_prefix_unary_expression] = STATE(3881), - [sym__pointer_indirection_expression] = STATE(2913), - [sym_query_expression] = STATE(3873), - [sym_from_clause] = STATE(6168), - [sym_conditional_expression] = STATE(3873), - [sym_conditional_access_expression] = STATE(3873), - [sym_as_expression] = STATE(3873), - [sym_is_expression] = STATE(3873), - [sym_is_pattern_expression] = STATE(3873), - [sym_cast_expression] = STATE(3873), - [sym_checked_expression] = STATE(3873), - [sym_invocation_expression] = STATE(3881), - [sym_switch_expression] = STATE(3873), - [sym_await_expression] = STATE(3881), - [sym_throw_expression] = STATE(3873), - [sym_element_access_expression] = STATE(2913), - [sym_interpolated_string_expression] = STATE(3873), - [sym_member_access_expression] = STATE(2913), - [sym_object_creation_expression] = STATE(3881), - [sym_parenthesized_expression] = STATE(3881), - [sym__parenthesized_lvalue_expression] = STATE(2913), - [sym_lambda_expression] = STATE(3873), - [sym__lambda_expression_init] = STATE(7587), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3873), - [sym_anonymous_method_expression] = STATE(3873), - [sym_anonymous_object_creation_expression] = STATE(3873), - [sym_implicit_array_creation_expression] = STATE(3873), - [sym_implicit_object_creation_expression] = STATE(3873), - [sym_implicit_stackalloc_expression] = STATE(3873), - [sym_initializer_expression] = STATE(3873), - [sym_default_expression] = STATE(3873), - [sym_with_expression] = STATE(3873), - [sym_sizeof_expression] = STATE(3873), - [sym_typeof_expression] = STATE(3873), - [sym_makeref_expression] = STATE(3873), - [sym_ref_expression] = STATE(3873), - [sym_reftype_expression] = STATE(3873), - [sym_refvalue_expression] = STATE(3873), - [sym_stackalloc_expression] = STATE(3873), - [sym_range_expression] = STATE(3873), - [sym_tuple_expression] = STATE(2913), - [sym_literal] = STATE(3873), - [sym_character_literal] = STATE(3877), - [sym_string_literal] = STATE(3877), - [sym_raw_string_literal] = STATE(3877), - [sym_boolean_literal] = STATE(3877), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3873), - [sym_preproc_if_in_attribute_list] = STATE(5576), - [sym_preproc_region] = STATE(1170), - [sym_preproc_endregion] = STATE(1170), - [sym_preproc_line] = STATE(1170), - [sym_preproc_pragma] = STATE(1170), - [sym_preproc_nullable] = STATE(1170), - [sym_preproc_error] = STATE(1170), - [sym_preproc_warning] = STATE(1170), - [sym_preproc_define] = STATE(1170), - [sym_preproc_undef] = STATE(1170), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3382), - [sym__identifier_token] = ACTIONS(25), - [anon_sym_alias] = ACTIONS(29), - [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1627), - [anon_sym_LPAREN] = ACTIONS(2079), - [anon_sym_ref] = ACTIONS(2081), - [anon_sym_LBRACE] = ACTIONS(1633), - [anon_sym_delegate] = ACTIONS(1635), - [anon_sym_async] = ACTIONS(1047), - [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1731), - [anon_sym_where] = ACTIONS(29), - [anon_sym_notnull] = ACTIONS(29), - [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1639), - [anon_sym_BANG] = ACTIONS(2085), - [anon_sym_TILDE] = ACTIONS(2085), - [anon_sym_PLUS_PLUS] = ACTIONS(2085), - [anon_sym_DASH_DASH] = ACTIONS(2085), - [anon_sym_true] = ACTIONS(1645), - [anon_sym_false] = ACTIONS(1645), - [anon_sym_PLUS] = ACTIONS(2083), - [anon_sym_DASH] = ACTIONS(2083), - [anon_sym_STAR] = ACTIONS(1737), - [anon_sym_CARET] = ACTIONS(2085), - [anon_sym_AMP] = ACTIONS(2085), - [anon_sym_this] = ACTIONS(1649), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1651), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1653), - [anon_sym_unchecked] = ACTIONS(1639), - [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1655), - [anon_sym_throw] = ACTIONS(2087), - [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2089), - [anon_sym_DOT_DOT] = ACTIONS(2091), - [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(1663), - [anon_sym_sizeof] = ACTIONS(1665), - [anon_sym_typeof] = ACTIONS(1667), - [anon_sym___makeref] = ACTIONS(1669), - [anon_sym___reftype] = ACTIONS(1671), - [anon_sym___refvalue] = ACTIONS(1673), - [sym_null_literal] = ACTIONS(1675), - [anon_sym_SQUOTE] = ACTIONS(1677), - [sym_integer_literal] = ACTIONS(1675), - [sym_real_literal] = ACTIONS(1679), - [anon_sym_DQUOTE] = ACTIONS(1681), - [sym_verbatim_string_literal] = ACTIONS(1679), - [aux_sym_preproc_if_token1] = ACTIONS(1683), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1685), - [sym_interpolation_verbatim_start] = ACTIONS(1687), - [sym_interpolation_raw_start] = ACTIONS(1689), - [sym_raw_string_start] = ACTIONS(1691), - }, - [1171] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2762), - [sym__name] = STATE(5890), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2375), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(4862), - [sym_non_lvalue_expression] = STATE(3438), - [sym_lvalue_expression] = STATE(3526), - [sym__expression_statement_expression] = STATE(3362), - [sym_assignment_expression] = STATE(3449), - [sym_binary_expression] = STATE(3362), - [sym_postfix_unary_expression] = STATE(3449), - [sym_prefix_unary_expression] = STATE(3449), - [sym__pointer_indirection_expression] = STATE(2747), - [sym_query_expression] = STATE(3362), - [sym_from_clause] = STATE(6163), - [sym_conditional_expression] = STATE(3362), - [sym_conditional_access_expression] = STATE(3362), - [sym_as_expression] = STATE(3362), - [sym_is_expression] = STATE(3362), - [sym_is_pattern_expression] = STATE(3362), - [sym_cast_expression] = STATE(3362), - [sym_checked_expression] = STATE(3362), - [sym_invocation_expression] = STATE(3449), - [sym_switch_expression] = STATE(3362), - [sym_await_expression] = STATE(3449), - [sym_throw_expression] = STATE(3362), - [sym_element_access_expression] = STATE(2747), - [sym_interpolated_string_expression] = STATE(3362), - [sym_member_access_expression] = STATE(2747), - [sym_object_creation_expression] = STATE(3449), - [sym_parenthesized_expression] = STATE(3449), - [sym__parenthesized_lvalue_expression] = STATE(2747), - [sym_lambda_expression] = STATE(3362), - [sym__lambda_expression_init] = STATE(7529), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3362), - [sym_anonymous_method_expression] = STATE(3362), - [sym_anonymous_object_creation_expression] = STATE(3362), - [sym_implicit_array_creation_expression] = STATE(3362), - [sym_implicit_object_creation_expression] = STATE(3362), - [sym_implicit_stackalloc_expression] = STATE(3362), - [sym_initializer_expression] = STATE(3362), - [sym_default_expression] = STATE(3362), - [sym_with_expression] = STATE(3362), - [sym_sizeof_expression] = STATE(3362), - [sym_typeof_expression] = STATE(3362), - [sym_makeref_expression] = STATE(3362), - [sym_ref_expression] = STATE(3362), - [sym_reftype_expression] = STATE(3362), - [sym_refvalue_expression] = STATE(3362), - [sym_stackalloc_expression] = STATE(3362), - [sym_range_expression] = STATE(3362), - [sym_tuple_expression] = STATE(2747), - [sym_literal] = STATE(3362), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3362), - [sym_preproc_if_in_attribute_list] = STATE(5576), - [sym_preproc_region] = STATE(1171), - [sym_preproc_endregion] = STATE(1171), - [sym_preproc_line] = STATE(1171), - [sym_preproc_pragma] = STATE(1171), - [sym_preproc_nullable] = STATE(1171), - [sym_preproc_error] = STATE(1171), - [sym_preproc_warning] = STATE(1171), - [sym_preproc_define] = STATE(1171), - [sym_preproc_undef] = STATE(1171), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3385), - [sym__identifier_token] = ACTIONS(25), - [anon_sym_alias] = ACTIONS(29), - [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1307), - [anon_sym_LPAREN] = ACTIONS(1805), - [anon_sym_ref] = ACTIONS(1807), - [anon_sym_LBRACE] = ACTIONS(1313), - [anon_sym_delegate] = ACTIONS(1315), - [anon_sym_async] = ACTIONS(1047), - [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1809), - [anon_sym_where] = ACTIONS(29), - [anon_sym_notnull] = ACTIONS(29), - [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1319), - [anon_sym_BANG] = ACTIONS(1813), - [anon_sym_TILDE] = ACTIONS(1813), - [anon_sym_PLUS_PLUS] = ACTIONS(1813), - [anon_sym_DASH_DASH] = ACTIONS(1813), + [anon_sym_checked] = ACTIONS(1065), + [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(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1811), - [anon_sym_DASH] = ACTIONS(1811), - [anon_sym_STAR] = ACTIONS(1815), - [anon_sym_CARET] = ACTIONS(1813), - [anon_sym_AMP] = ACTIONS(1813), - [anon_sym_this] = ACTIONS(1323), + [anon_sym_PLUS] = ACTIONS(2013), + [anon_sym_DASH] = ACTIONS(2013), + [anon_sym_STAR] = ACTIONS(1227), + [anon_sym_CARET] = ACTIONS(2015), + [anon_sym_AMP] = ACTIONS(2015), + [anon_sym_this] = ACTIONS(83), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1325), + [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1319), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1817), + [anon_sym_throw] = ACTIONS(1231), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1819), - [anon_sym_DOT_DOT] = ACTIONS(1821), + [anon_sym_await] = ACTIONS(1233), + [anon_sym_DOT_DOT] = ACTIONS(1235), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -239811,19 +239359,357 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1333), + [anon_sym_stackalloc] = ACTIONS(127), [anon_sym_sizeof] = ACTIONS(129), [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(1335), - [anon_sym___reftype] = ACTIONS(1337), - [anon_sym___refvalue] = ACTIONS(1339), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), [sym_null_literal] = ACTIONS(139), [anon_sym_SQUOTE] = ACTIONS(141), [sym_integer_literal] = ACTIONS(139), [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1341), + [aux_sym_preproc_if_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), + }, + [1170] = { + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(5528), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2196), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(5647), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3660), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3102), + [sym_postfix_unary_expression] = STATE(3079), + [sym_prefix_unary_expression] = STATE(3079), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6163), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3102), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3079), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3102), + [sym_member_access_expression] = STATE(2472), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3079), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7633), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(3102), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3102), + [sym_typeof_expression] = STATE(3102), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2472), + [sym_literal] = STATE(3102), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), + [sym_preproc_region] = STATE(1170), + [sym_preproc_endregion] = STATE(1170), + [sym_preproc_line] = STATE(1170), + [sym_preproc_pragma] = STATE(1170), + [sym_preproc_nullable] = STATE(1170), + [sym_preproc_error] = STATE(1170), + [sym_preproc_warning] = STATE(1170), + [sym_preproc_define] = STATE(1170), + [sym_preproc_undef] = STATE(1170), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), + [sym__identifier_token] = ACTIONS(25), + [anon_sym_alias] = ACTIONS(29), + [anon_sym_global] = ACTIONS(29), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1479), + [anon_sym_LPAREN] = ACTIONS(2009), + [anon_sym_ref] = ACTIONS(2011), + [anon_sym_LBRACE] = ACTIONS(1481), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), + [anon_sym_file] = ACTIONS(29), + [anon_sym_new] = ACTIONS(1095), + [anon_sym_where] = ACTIONS(29), + [anon_sym_notnull] = ACTIONS(29), + [anon_sym_unmanaged] = ACTIONS(29), + [anon_sym_checked] = ACTIONS(1065), + [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(77), + [anon_sym_false] = ACTIONS(77), + [anon_sym_PLUS] = ACTIONS(2013), + [anon_sym_DASH] = ACTIONS(2013), + [anon_sym_STAR] = ACTIONS(1227), + [anon_sym_CARET] = ACTIONS(2015), + [anon_sym_AMP] = ACTIONS(2015), + [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(1231), + [anon_sym_when] = ACTIONS(29), + [anon_sym_await] = ACTIONS(1233), + [anon_sym_DOT_DOT] = ACTIONS(1235), + [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), + }, + [1171] = { + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(5528), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2196), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(5648), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3660), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3102), + [sym_postfix_unary_expression] = STATE(3079), + [sym_prefix_unary_expression] = STATE(3079), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6163), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3102), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3079), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3102), + [sym_member_access_expression] = STATE(2472), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3079), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7633), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(3102), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3102), + [sym_typeof_expression] = STATE(3102), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2472), + [sym_literal] = STATE(3102), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), + [sym_preproc_region] = STATE(1171), + [sym_preproc_endregion] = STATE(1171), + [sym_preproc_line] = STATE(1171), + [sym_preproc_pragma] = STATE(1171), + [sym_preproc_nullable] = STATE(1171), + [sym_preproc_error] = STATE(1171), + [sym_preproc_warning] = STATE(1171), + [sym_preproc_define] = STATE(1171), + [sym_preproc_undef] = STATE(1171), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), + [sym__identifier_token] = ACTIONS(25), + [anon_sym_alias] = ACTIONS(29), + [anon_sym_global] = ACTIONS(29), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1479), + [anon_sym_LPAREN] = ACTIONS(2009), + [anon_sym_ref] = ACTIONS(2011), + [anon_sym_LBRACE] = ACTIONS(1481), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), + [anon_sym_file] = ACTIONS(29), + [anon_sym_new] = ACTIONS(1095), + [anon_sym_where] = ACTIONS(29), + [anon_sym_notnull] = ACTIONS(29), + [anon_sym_unmanaged] = ACTIONS(29), + [anon_sym_checked] = ACTIONS(1065), + [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(77), + [anon_sym_false] = ACTIONS(77), + [anon_sym_PLUS] = ACTIONS(2013), + [anon_sym_DASH] = ACTIONS(2013), + [anon_sym_STAR] = ACTIONS(1227), + [anon_sym_CARET] = ACTIONS(2015), + [anon_sym_AMP] = ACTIONS(2015), + [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(1231), + [anon_sym_when] = ACTIONS(29), + [anon_sym_await] = ACTIONS(1233), + [anon_sym_DOT_DOT] = ACTIONS(1235), + [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), @@ -239840,84 +239726,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [1172] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2762), - [sym__name] = STATE(5890), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2375), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(4887), - [sym_non_lvalue_expression] = STATE(3438), - [sym_lvalue_expression] = STATE(3526), - [sym__expression_statement_expression] = STATE(3362), - [sym_assignment_expression] = STATE(3449), - [sym_binary_expression] = STATE(3362), - [sym_postfix_unary_expression] = STATE(3449), - [sym_prefix_unary_expression] = STATE(3449), - [sym__pointer_indirection_expression] = STATE(2747), - [sym_query_expression] = STATE(3362), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(5528), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2196), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(5585), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3660), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3102), + [sym_postfix_unary_expression] = STATE(3079), + [sym_prefix_unary_expression] = STATE(3079), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), [sym_from_clause] = STATE(6163), - [sym_conditional_expression] = STATE(3362), - [sym_conditional_access_expression] = STATE(3362), - [sym_as_expression] = STATE(3362), - [sym_is_expression] = STATE(3362), - [sym_is_pattern_expression] = STATE(3362), - [sym_cast_expression] = STATE(3362), - [sym_checked_expression] = STATE(3362), - [sym_invocation_expression] = STATE(3449), - [sym_switch_expression] = STATE(3362), - [sym_await_expression] = STATE(3449), - [sym_throw_expression] = STATE(3362), - [sym_element_access_expression] = STATE(2747), - [sym_interpolated_string_expression] = STATE(3362), - [sym_member_access_expression] = STATE(2747), - [sym_object_creation_expression] = STATE(3449), - [sym_parenthesized_expression] = STATE(3449), - [sym__parenthesized_lvalue_expression] = STATE(2747), - [sym_lambda_expression] = STATE(3362), - [sym__lambda_expression_init] = STATE(7529), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3362), - [sym_anonymous_method_expression] = STATE(3362), - [sym_anonymous_object_creation_expression] = STATE(3362), - [sym_implicit_array_creation_expression] = STATE(3362), - [sym_implicit_object_creation_expression] = STATE(3362), - [sym_implicit_stackalloc_expression] = STATE(3362), - [sym_initializer_expression] = STATE(3362), - [sym_default_expression] = STATE(3362), - [sym_with_expression] = STATE(3362), - [sym_sizeof_expression] = STATE(3362), - [sym_typeof_expression] = STATE(3362), - [sym_makeref_expression] = STATE(3362), - [sym_ref_expression] = STATE(3362), - [sym_reftype_expression] = STATE(3362), - [sym_refvalue_expression] = STATE(3362), - [sym_stackalloc_expression] = STATE(3362), - [sym_range_expression] = STATE(3362), - [sym_tuple_expression] = STATE(2747), - [sym_literal] = STATE(3362), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3362), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3102), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3079), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3102), + [sym_member_access_expression] = STATE(2472), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3079), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7633), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(3102), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3102), + [sym_typeof_expression] = STATE(3102), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2472), + [sym_literal] = STATE(3102), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(1172), [sym_preproc_endregion] = STATE(1172), [sym_preproc_line] = STATE(1172), @@ -239927,47 +239813,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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3385), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1307), - [anon_sym_LPAREN] = ACTIONS(1805), - [anon_sym_ref] = ACTIONS(1807), - [anon_sym_LBRACE] = ACTIONS(1313), - [anon_sym_delegate] = ACTIONS(1315), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1479), + [anon_sym_LPAREN] = ACTIONS(2009), + [anon_sym_ref] = ACTIONS(2011), + [anon_sym_LBRACE] = ACTIONS(1481), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1809), + [anon_sym_new] = ACTIONS(1095), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1319), - [anon_sym_BANG] = ACTIONS(1813), - [anon_sym_TILDE] = ACTIONS(1813), - [anon_sym_PLUS_PLUS] = ACTIONS(1813), - [anon_sym_DASH_DASH] = ACTIONS(1813), + [anon_sym_checked] = ACTIONS(1065), + [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(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1811), - [anon_sym_DASH] = ACTIONS(1811), - [anon_sym_STAR] = ACTIONS(1815), - [anon_sym_CARET] = ACTIONS(1813), - [anon_sym_AMP] = ACTIONS(1813), - [anon_sym_this] = ACTIONS(1323), + [anon_sym_PLUS] = ACTIONS(2013), + [anon_sym_DASH] = ACTIONS(2013), + [anon_sym_STAR] = ACTIONS(1227), + [anon_sym_CARET] = ACTIONS(2015), + [anon_sym_AMP] = ACTIONS(2015), + [anon_sym_this] = ACTIONS(83), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1325), + [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1319), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1817), + [anon_sym_throw] = ACTIONS(1231), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1819), - [anon_sym_DOT_DOT] = ACTIONS(1821), + [anon_sym_await] = ACTIONS(1233), + [anon_sym_DOT_DOT] = ACTIONS(1235), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -239980,19 +239866,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1333), + [anon_sym_stackalloc] = ACTIONS(127), [anon_sym_sizeof] = ACTIONS(129), [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(1335), - [anon_sym___reftype] = ACTIONS(1337), - [anon_sym___refvalue] = ACTIONS(1339), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), [sym_null_literal] = ACTIONS(139), [anon_sym_SQUOTE] = ACTIONS(141), [sym_integer_literal] = ACTIONS(139), [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1341), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -240009,84 +239895,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [1173] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2762), - [sym__name] = STATE(5890), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2375), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(4985), - [sym_non_lvalue_expression] = STATE(3438), - [sym_lvalue_expression] = STATE(3526), - [sym__expression_statement_expression] = STATE(3362), - [sym_assignment_expression] = STATE(3449), - [sym_binary_expression] = STATE(3362), - [sym_postfix_unary_expression] = STATE(3449), - [sym_prefix_unary_expression] = STATE(3449), - [sym__pointer_indirection_expression] = STATE(2747), - [sym_query_expression] = STATE(3362), - [sym_from_clause] = STATE(6163), - [sym_conditional_expression] = STATE(3362), - [sym_conditional_access_expression] = STATE(3362), - [sym_as_expression] = STATE(3362), - [sym_is_expression] = STATE(3362), - [sym_is_pattern_expression] = STATE(3362), - [sym_cast_expression] = STATE(3362), - [sym_checked_expression] = STATE(3362), - [sym_invocation_expression] = STATE(3449), - [sym_switch_expression] = STATE(3362), - [sym_await_expression] = STATE(3449), - [sym_throw_expression] = STATE(3362), - [sym_element_access_expression] = STATE(2747), - [sym_interpolated_string_expression] = STATE(3362), - [sym_member_access_expression] = STATE(2747), - [sym_object_creation_expression] = STATE(3449), - [sym_parenthesized_expression] = STATE(3449), - [sym__parenthesized_lvalue_expression] = STATE(2747), - [sym_lambda_expression] = STATE(3362), - [sym__lambda_expression_init] = STATE(7529), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3362), - [sym_anonymous_method_expression] = STATE(3362), - [sym_anonymous_object_creation_expression] = STATE(3362), - [sym_implicit_array_creation_expression] = STATE(3362), - [sym_implicit_object_creation_expression] = STATE(3362), - [sym_implicit_stackalloc_expression] = STATE(3362), - [sym_initializer_expression] = STATE(3362), - [sym_default_expression] = STATE(3362), - [sym_with_expression] = STATE(3362), - [sym_sizeof_expression] = STATE(3362), - [sym_typeof_expression] = STATE(3362), - [sym_makeref_expression] = STATE(3362), - [sym_ref_expression] = STATE(3362), - [sym_reftype_expression] = STATE(3362), - [sym_refvalue_expression] = STATE(3362), - [sym_stackalloc_expression] = STATE(3362), - [sym_range_expression] = STATE(3362), - [sym_tuple_expression] = STATE(2747), - [sym_literal] = STATE(3362), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3362), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2416), + [sym__name] = STATE(5897), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2367), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(5200), + [sym_non_lvalue_expression] = STATE(3040), + [sym_lvalue_expression] = STATE(3600), + [sym__expression_statement_expression] = STATE(3035), + [sym_assignment_expression] = STATE(3043), + [sym_binary_expression] = STATE(3035), + [sym_postfix_unary_expression] = STATE(3043), + [sym_prefix_unary_expression] = STATE(3043), + [sym__pointer_indirection_expression] = STATE(2415), + [sym_query_expression] = STATE(3035), + [sym_from_clause] = STATE(6156), + [sym_conditional_expression] = STATE(3035), + [sym_conditional_access_expression] = STATE(3035), + [sym_as_expression] = STATE(3035), + [sym_is_expression] = STATE(3035), + [sym_is_pattern_expression] = STATE(3035), + [sym_cast_expression] = STATE(3035), + [sym_checked_expression] = STATE(3035), + [sym_invocation_expression] = STATE(3043), + [sym_switch_expression] = STATE(3035), + [sym_await_expression] = STATE(3043), + [sym_throw_expression] = STATE(3035), + [sym_element_access_expression] = STATE(2415), + [sym_interpolated_string_expression] = STATE(3035), + [sym_member_access_expression] = STATE(2415), + [sym_object_creation_expression] = STATE(3043), + [sym_parenthesized_expression] = STATE(3043), + [sym__parenthesized_lvalue_expression] = STATE(2415), + [sym_lambda_expression] = STATE(3035), + [sym__lambda_expression_init] = STATE(7561), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3035), + [sym_anonymous_method_expression] = STATE(3035), + [sym_anonymous_object_creation_expression] = STATE(3035), + [sym_implicit_array_creation_expression] = STATE(3035), + [sym_implicit_object_creation_expression] = STATE(3035), + [sym_implicit_stackalloc_expression] = STATE(3035), + [sym_initializer_expression] = STATE(3035), + [sym_default_expression] = STATE(3035), + [sym_with_expression] = STATE(3035), + [sym_sizeof_expression] = STATE(3035), + [sym_typeof_expression] = STATE(3035), + [sym_makeref_expression] = STATE(3035), + [sym_ref_expression] = STATE(3035), + [sym_reftype_expression] = STATE(3035), + [sym_refvalue_expression] = STATE(3035), + [sym_stackalloc_expression] = STATE(3035), + [sym_range_expression] = STATE(3035), + [sym_tuple_expression] = STATE(2415), + [sym_literal] = STATE(3035), + [sym_character_literal] = STATE(3037), + [sym_string_literal] = STATE(3037), + [sym_raw_string_literal] = STATE(3037), + [sym_boolean_literal] = STATE(3037), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3035), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(1173), [sym_preproc_endregion] = STATE(1173), [sym_preproc_line] = STATE(1173), @@ -240096,47 +239982,47 @@ 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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3385), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3455), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1307), - [anon_sym_LPAREN] = ACTIONS(1805), - [anon_sym_ref] = ACTIONS(1807), - [anon_sym_LBRACE] = ACTIONS(1313), - [anon_sym_delegate] = ACTIONS(1315), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1239), + [anon_sym_LPAREN] = ACTIONS(2217), + [anon_sym_ref] = ACTIONS(2219), + [anon_sym_LBRACE] = ACTIONS(1245), + [anon_sym_delegate] = ACTIONS(1247), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1809), + [anon_sym_new] = ACTIONS(2221), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1319), - [anon_sym_BANG] = ACTIONS(1813), - [anon_sym_TILDE] = ACTIONS(1813), - [anon_sym_PLUS_PLUS] = ACTIONS(1813), - [anon_sym_DASH_DASH] = ACTIONS(1813), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1811), - [anon_sym_DASH] = ACTIONS(1811), - [anon_sym_STAR] = ACTIONS(1815), - [anon_sym_CARET] = ACTIONS(1813), - [anon_sym_AMP] = ACTIONS(1813), - [anon_sym_this] = ACTIONS(1323), + [anon_sym_checked] = ACTIONS(1251), + [anon_sym_BANG] = ACTIONS(2225), + [anon_sym_TILDE] = ACTIONS(2225), + [anon_sym_PLUS_PLUS] = ACTIONS(2225), + [anon_sym_DASH_DASH] = ACTIONS(2225), + [anon_sym_true] = ACTIONS(1257), + [anon_sym_false] = ACTIONS(1257), + [anon_sym_PLUS] = ACTIONS(2223), + [anon_sym_DASH] = ACTIONS(2223), + [anon_sym_STAR] = ACTIONS(2227), + [anon_sym_CARET] = ACTIONS(2225), + [anon_sym_AMP] = ACTIONS(2225), + [anon_sym_this] = ACTIONS(1261), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1325), + [anon_sym_base] = ACTIONS(1263), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1319), + [sym_predefined_type] = ACTIONS(1265), + [anon_sym_unchecked] = ACTIONS(1251), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1817), + [anon_sym_default] = ACTIONS(1267), + [anon_sym_throw] = ACTIONS(2229), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1819), - [anon_sym_DOT_DOT] = ACTIONS(1821), + [anon_sym_await] = ACTIONS(2231), + [anon_sym_DOT_DOT] = ACTIONS(2233), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -240149,19 +240035,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1333), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(1335), - [anon_sym___reftype] = ACTIONS(1337), - [anon_sym___refvalue] = ACTIONS(1339), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1341), + [anon_sym_stackalloc] = ACTIONS(1275), + [anon_sym_sizeof] = ACTIONS(1277), + [anon_sym_typeof] = ACTIONS(1279), + [anon_sym___makeref] = ACTIONS(1281), + [anon_sym___reftype] = ACTIONS(1283), + [anon_sym___refvalue] = ACTIONS(1285), + [sym_null_literal] = ACTIONS(1287), + [anon_sym_SQUOTE] = ACTIONS(1289), + [sym_integer_literal] = ACTIONS(1287), + [sym_real_literal] = ACTIONS(1291), + [anon_sym_DQUOTE] = ACTIONS(1293), + [sym_verbatim_string_literal] = ACTIONS(1291), + [aux_sym_preproc_if_token1] = ACTIONS(1295), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -240172,90 +240058,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(151), - [sym_interpolation_verbatim_start] = ACTIONS(153), - [sym_interpolation_raw_start] = ACTIONS(155), - [sym_raw_string_start] = ACTIONS(157), + [sym_interpolation_regular_start] = ACTIONS(1297), + [sym_interpolation_verbatim_start] = ACTIONS(1299), + [sym_interpolation_raw_start] = ACTIONS(1301), + [sym_raw_string_start] = ACTIONS(1303), }, [1174] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2762), - [sym__name] = STATE(5890), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2375), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(4888), - [sym_non_lvalue_expression] = STATE(3438), - [sym_lvalue_expression] = STATE(3526), - [sym__expression_statement_expression] = STATE(3362), - [sym_assignment_expression] = STATE(3449), - [sym_binary_expression] = STATE(3362), - [sym_postfix_unary_expression] = STATE(3449), - [sym_prefix_unary_expression] = STATE(3449), - [sym__pointer_indirection_expression] = STATE(2747), - [sym_query_expression] = STATE(3362), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(5528), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2196), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(3523), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3660), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3102), + [sym_postfix_unary_expression] = STATE(3079), + [sym_prefix_unary_expression] = STATE(3079), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), [sym_from_clause] = STATE(6163), - [sym_conditional_expression] = STATE(3362), - [sym_conditional_access_expression] = STATE(3362), - [sym_as_expression] = STATE(3362), - [sym_is_expression] = STATE(3362), - [sym_is_pattern_expression] = STATE(3362), - [sym_cast_expression] = STATE(3362), - [sym_checked_expression] = STATE(3362), - [sym_invocation_expression] = STATE(3449), - [sym_switch_expression] = STATE(3362), - [sym_await_expression] = STATE(3449), - [sym_throw_expression] = STATE(3362), - [sym_element_access_expression] = STATE(2747), - [sym_interpolated_string_expression] = STATE(3362), - [sym_member_access_expression] = STATE(2747), - [sym_object_creation_expression] = STATE(3449), - [sym_parenthesized_expression] = STATE(3449), - [sym__parenthesized_lvalue_expression] = STATE(2747), - [sym_lambda_expression] = STATE(3362), - [sym__lambda_expression_init] = STATE(7529), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3362), - [sym_anonymous_method_expression] = STATE(3362), - [sym_anonymous_object_creation_expression] = STATE(3362), - [sym_implicit_array_creation_expression] = STATE(3362), - [sym_implicit_object_creation_expression] = STATE(3362), - [sym_implicit_stackalloc_expression] = STATE(3362), - [sym_initializer_expression] = STATE(3362), - [sym_default_expression] = STATE(3362), - [sym_with_expression] = STATE(3362), - [sym_sizeof_expression] = STATE(3362), - [sym_typeof_expression] = STATE(3362), - [sym_makeref_expression] = STATE(3362), - [sym_ref_expression] = STATE(3362), - [sym_reftype_expression] = STATE(3362), - [sym_refvalue_expression] = STATE(3362), - [sym_stackalloc_expression] = STATE(3362), - [sym_range_expression] = STATE(3362), - [sym_tuple_expression] = STATE(2747), - [sym_literal] = STATE(3362), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3362), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3102), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3079), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3102), + [sym_member_access_expression] = STATE(2472), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3079), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7633), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(3102), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3102), + [sym_typeof_expression] = STATE(3102), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2472), + [sym_literal] = STATE(3102), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(1174), [sym_preproc_endregion] = STATE(1174), [sym_preproc_line] = STATE(1174), @@ -240265,47 +240151,47 @@ 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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3385), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1307), - [anon_sym_LPAREN] = ACTIONS(1805), - [anon_sym_ref] = ACTIONS(1807), - [anon_sym_LBRACE] = ACTIONS(1313), - [anon_sym_delegate] = ACTIONS(1315), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1479), + [anon_sym_LPAREN] = ACTIONS(2009), + [anon_sym_ref] = ACTIONS(2011), + [anon_sym_LBRACE] = ACTIONS(1481), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1809), + [anon_sym_new] = ACTIONS(1095), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1319), - [anon_sym_BANG] = ACTIONS(1813), - [anon_sym_TILDE] = ACTIONS(1813), - [anon_sym_PLUS_PLUS] = ACTIONS(1813), - [anon_sym_DASH_DASH] = ACTIONS(1813), + [anon_sym_checked] = ACTIONS(1065), + [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(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1811), - [anon_sym_DASH] = ACTIONS(1811), - [anon_sym_STAR] = ACTIONS(1815), - [anon_sym_CARET] = ACTIONS(1813), - [anon_sym_AMP] = ACTIONS(1813), - [anon_sym_this] = ACTIONS(1323), + [anon_sym_PLUS] = ACTIONS(2013), + [anon_sym_DASH] = ACTIONS(2013), + [anon_sym_STAR] = ACTIONS(1227), + [anon_sym_CARET] = ACTIONS(2015), + [anon_sym_AMP] = ACTIONS(2015), + [anon_sym_this] = ACTIONS(83), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1325), + [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1319), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1817), + [anon_sym_throw] = ACTIONS(1231), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1819), - [anon_sym_DOT_DOT] = ACTIONS(1821), + [anon_sym_await] = ACTIONS(1233), + [anon_sym_DOT_DOT] = ACTIONS(1235), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -240318,19 +240204,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1333), + [anon_sym_stackalloc] = ACTIONS(127), [anon_sym_sizeof] = ACTIONS(129), [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(1335), - [anon_sym___reftype] = ACTIONS(1337), - [anon_sym___refvalue] = ACTIONS(1339), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), [sym_null_literal] = ACTIONS(139), [anon_sym_SQUOTE] = ACTIONS(141), [sym_integer_literal] = ACTIONS(139), [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1341), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -240347,84 +240233,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [1175] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2762), - [sym__name] = STATE(5890), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2375), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(4897), - [sym_non_lvalue_expression] = STATE(3438), - [sym_lvalue_expression] = STATE(3526), - [sym__expression_statement_expression] = STATE(3362), - [sym_assignment_expression] = STATE(3449), - [sym_binary_expression] = STATE(3362), - [sym_postfix_unary_expression] = STATE(3449), - [sym_prefix_unary_expression] = STATE(3449), - [sym__pointer_indirection_expression] = STATE(2747), - [sym_query_expression] = STATE(3362), - [sym_from_clause] = STATE(6163), - [sym_conditional_expression] = STATE(3362), - [sym_conditional_access_expression] = STATE(3362), - [sym_as_expression] = STATE(3362), - [sym_is_expression] = STATE(3362), - [sym_is_pattern_expression] = STATE(3362), - [sym_cast_expression] = STATE(3362), - [sym_checked_expression] = STATE(3362), - [sym_invocation_expression] = STATE(3449), - [sym_switch_expression] = STATE(3362), - [sym_await_expression] = STATE(3449), - [sym_throw_expression] = STATE(3362), - [sym_element_access_expression] = STATE(2747), - [sym_interpolated_string_expression] = STATE(3362), - [sym_member_access_expression] = STATE(2747), - [sym_object_creation_expression] = STATE(3449), - [sym_parenthesized_expression] = STATE(3449), - [sym__parenthesized_lvalue_expression] = STATE(2747), - [sym_lambda_expression] = STATE(3362), - [sym__lambda_expression_init] = STATE(7529), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3362), - [sym_anonymous_method_expression] = STATE(3362), - [sym_anonymous_object_creation_expression] = STATE(3362), - [sym_implicit_array_creation_expression] = STATE(3362), - [sym_implicit_object_creation_expression] = STATE(3362), - [sym_implicit_stackalloc_expression] = STATE(3362), - [sym_initializer_expression] = STATE(3362), - [sym_default_expression] = STATE(3362), - [sym_with_expression] = STATE(3362), - [sym_sizeof_expression] = STATE(3362), - [sym_typeof_expression] = STATE(3362), - [sym_makeref_expression] = STATE(3362), - [sym_ref_expression] = STATE(3362), - [sym_reftype_expression] = STATE(3362), - [sym_refvalue_expression] = STATE(3362), - [sym_stackalloc_expression] = STATE(3362), - [sym_range_expression] = STATE(3362), - [sym_tuple_expression] = STATE(2747), - [sym_literal] = STATE(3362), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3362), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(5152), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2196), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(3507), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3356), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3102), + [sym_postfix_unary_expression] = STATE(3079), + [sym_prefix_unary_expression] = STATE(3079), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6134), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3102), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3079), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3102), + [sym_member_access_expression] = STATE(2472), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3079), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7627), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(3102), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3102), + [sym_typeof_expression] = STATE(3102), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2472), + [sym_literal] = STATE(3102), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(1175), [sym_preproc_endregion] = STATE(1175), [sym_preproc_line] = STATE(1175), @@ -240434,47 +240320,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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3385), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1307), - [anon_sym_LPAREN] = ACTIONS(1805), - [anon_sym_ref] = ACTIONS(1807), - [anon_sym_LBRACE] = ACTIONS(1313), - [anon_sym_delegate] = ACTIONS(1315), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1479), + [anon_sym_LPAREN] = ACTIONS(1511), + [anon_sym_ref] = ACTIONS(1513), + [anon_sym_LBRACE] = ACTIONS(1481), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1809), + [anon_sym_new] = ACTIONS(1515), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1319), - [anon_sym_BANG] = ACTIONS(1813), - [anon_sym_TILDE] = ACTIONS(1813), - [anon_sym_PLUS_PLUS] = ACTIONS(1813), - [anon_sym_DASH_DASH] = ACTIONS(1813), + [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(1811), - [anon_sym_DASH] = ACTIONS(1811), - [anon_sym_STAR] = ACTIONS(1815), - [anon_sym_CARET] = ACTIONS(1813), - [anon_sym_AMP] = ACTIONS(1813), - [anon_sym_this] = ACTIONS(1323), + [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(1325), + [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1319), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1817), + [anon_sym_throw] = ACTIONS(1517), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1819), - [anon_sym_DOT_DOT] = ACTIONS(1821), + [anon_sym_await] = ACTIONS(1519), + [anon_sym_DOT_DOT] = ACTIONS(1521), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -240487,19 +240373,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1333), + [anon_sym_stackalloc] = ACTIONS(127), [anon_sym_sizeof] = ACTIONS(129), [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(1335), - [anon_sym___reftype] = ACTIONS(1337), - [anon_sym___refvalue] = ACTIONS(1339), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), [sym_null_literal] = ACTIONS(139), [anon_sym_SQUOTE] = ACTIONS(141), [sym_integer_literal] = ACTIONS(139), [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1341), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -240516,84 +240402,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [1176] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2762), - [sym__name] = STATE(5890), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2375), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(4899), - [sym_non_lvalue_expression] = STATE(3438), - [sym_lvalue_expression] = STATE(3526), - [sym__expression_statement_expression] = STATE(3362), - [sym_assignment_expression] = STATE(3449), - [sym_binary_expression] = STATE(3362), - [sym_postfix_unary_expression] = STATE(3449), - [sym_prefix_unary_expression] = STATE(3449), - [sym__pointer_indirection_expression] = STATE(2747), - [sym_query_expression] = STATE(3362), - [sym_from_clause] = STATE(6163), - [sym_conditional_expression] = STATE(3362), - [sym_conditional_access_expression] = STATE(3362), - [sym_as_expression] = STATE(3362), - [sym_is_expression] = STATE(3362), - [sym_is_pattern_expression] = STATE(3362), - [sym_cast_expression] = STATE(3362), - [sym_checked_expression] = STATE(3362), - [sym_invocation_expression] = STATE(3449), - [sym_switch_expression] = STATE(3362), - [sym_await_expression] = STATE(3449), - [sym_throw_expression] = STATE(3362), - [sym_element_access_expression] = STATE(2747), - [sym_interpolated_string_expression] = STATE(3362), - [sym_member_access_expression] = STATE(2747), - [sym_object_creation_expression] = STATE(3449), - [sym_parenthesized_expression] = STATE(3449), - [sym__parenthesized_lvalue_expression] = STATE(2747), - [sym_lambda_expression] = STATE(3362), - [sym__lambda_expression_init] = STATE(7529), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3362), - [sym_anonymous_method_expression] = STATE(3362), - [sym_anonymous_object_creation_expression] = STATE(3362), - [sym_implicit_array_creation_expression] = STATE(3362), - [sym_implicit_object_creation_expression] = STATE(3362), - [sym_implicit_stackalloc_expression] = STATE(3362), - [sym_initializer_expression] = STATE(3362), - [sym_default_expression] = STATE(3362), - [sym_with_expression] = STATE(3362), - [sym_sizeof_expression] = STATE(3362), - [sym_typeof_expression] = STATE(3362), - [sym_makeref_expression] = STATE(3362), - [sym_ref_expression] = STATE(3362), - [sym_reftype_expression] = STATE(3362), - [sym_refvalue_expression] = STATE(3362), - [sym_stackalloc_expression] = STATE(3362), - [sym_range_expression] = STATE(3362), - [sym_tuple_expression] = STATE(2747), - [sym_literal] = STATE(3362), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3362), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2816), + [sym__name] = STATE(5879), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2196), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(4967), + [sym_non_lvalue_expression] = STATE(3495), + [sym_lvalue_expression] = STATE(3539), + [sym__expression_statement_expression] = STATE(3462), + [sym_assignment_expression] = STATE(3497), + [sym_binary_expression] = STATE(3462), + [sym_postfix_unary_expression] = STATE(3497), + [sym_prefix_unary_expression] = STATE(3497), + [sym__pointer_indirection_expression] = STATE(2815), + [sym_query_expression] = STATE(3462), + [sym_from_clause] = STATE(6144), + [sym_conditional_expression] = STATE(3462), + [sym_conditional_access_expression] = STATE(3462), + [sym_as_expression] = STATE(3462), + [sym_is_expression] = STATE(3462), + [sym_is_pattern_expression] = STATE(3462), + [sym_cast_expression] = STATE(3462), + [sym_checked_expression] = STATE(3462), + [sym_invocation_expression] = STATE(3497), + [sym_switch_expression] = STATE(3462), + [sym_await_expression] = STATE(3497), + [sym_throw_expression] = STATE(3462), + [sym_element_access_expression] = STATE(2815), + [sym_interpolated_string_expression] = STATE(3462), + [sym_member_access_expression] = STATE(2815), + [sym_object_creation_expression] = STATE(3497), + [sym_parenthesized_expression] = STATE(3497), + [sym__parenthesized_lvalue_expression] = STATE(2815), + [sym_lambda_expression] = STATE(3462), + [sym__lambda_expression_init] = STATE(7681), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3462), + [sym_anonymous_method_expression] = STATE(3462), + [sym_anonymous_object_creation_expression] = STATE(3462), + [sym_implicit_array_creation_expression] = STATE(3462), + [sym_implicit_object_creation_expression] = STATE(3462), + [sym_implicit_stackalloc_expression] = STATE(3462), + [sym_initializer_expression] = STATE(3462), + [sym_default_expression] = STATE(3462), + [sym_with_expression] = STATE(3462), + [sym_sizeof_expression] = STATE(3462), + [sym_typeof_expression] = STATE(3462), + [sym_makeref_expression] = STATE(3462), + [sym_ref_expression] = STATE(3462), + [sym_reftype_expression] = STATE(3462), + [sym_refvalue_expression] = STATE(3462), + [sym_stackalloc_expression] = STATE(3462), + [sym_range_expression] = STATE(3462), + [sym_tuple_expression] = STATE(2815), + [sym_literal] = STATE(3462), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3462), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(1176), [sym_preproc_endregion] = STATE(1176), [sym_preproc_line] = STATE(1176), @@ -240603,47 +240489,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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3385), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3367), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1307), - [anon_sym_LPAREN] = ACTIONS(1805), - [anon_sym_ref] = ACTIONS(1807), - [anon_sym_LBRACE] = ACTIONS(1313), - [anon_sym_delegate] = ACTIONS(1315), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1305), + [anon_sym_LPAREN] = ACTIONS(1721), + [anon_sym_ref] = ACTIONS(1723), + [anon_sym_LBRACE] = ACTIONS(1311), + [anon_sym_delegate] = ACTIONS(1313), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1809), + [anon_sym_new] = ACTIONS(1315), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1319), - [anon_sym_BANG] = ACTIONS(1813), - [anon_sym_TILDE] = ACTIONS(1813), - [anon_sym_PLUS_PLUS] = ACTIONS(1813), - [anon_sym_DASH_DASH] = ACTIONS(1813), + [anon_sym_checked] = ACTIONS(1317), + [anon_sym_BANG] = ACTIONS(1727), + [anon_sym_TILDE] = ACTIONS(1727), + [anon_sym_PLUS_PLUS] = ACTIONS(1727), + [anon_sym_DASH_DASH] = ACTIONS(1727), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1811), - [anon_sym_DASH] = ACTIONS(1811), - [anon_sym_STAR] = ACTIONS(1815), - [anon_sym_CARET] = ACTIONS(1813), - [anon_sym_AMP] = ACTIONS(1813), - [anon_sym_this] = ACTIONS(1323), + [anon_sym_PLUS] = ACTIONS(1725), + [anon_sym_DASH] = ACTIONS(1725), + [anon_sym_STAR] = ACTIONS(1729), + [anon_sym_CARET] = ACTIONS(1727), + [anon_sym_AMP] = ACTIONS(1727), + [anon_sym_this] = ACTIONS(1321), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1325), + [anon_sym_base] = ACTIONS(1323), [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1319), + [anon_sym_unchecked] = ACTIONS(1317), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1817), + [anon_sym_throw] = ACTIONS(1731), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1819), - [anon_sym_DOT_DOT] = ACTIONS(1821), + [anon_sym_await] = ACTIONS(1733), + [anon_sym_DOT_DOT] = ACTIONS(1735), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -240656,19 +240542,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1333), + [anon_sym_stackalloc] = ACTIONS(1331), [anon_sym_sizeof] = ACTIONS(129), [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(1335), - [anon_sym___reftype] = ACTIONS(1337), - [anon_sym___refvalue] = ACTIONS(1339), + [anon_sym___makeref] = ACTIONS(1333), + [anon_sym___reftype] = ACTIONS(1335), + [anon_sym___refvalue] = ACTIONS(1337), [sym_null_literal] = ACTIONS(139), [anon_sym_SQUOTE] = ACTIONS(141), [sym_integer_literal] = ACTIONS(139), [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1341), + [aux_sym_preproc_if_token1] = ACTIONS(1339), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -240685,84 +240571,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [1177] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2762), - [sym__name] = STATE(5890), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2375), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(4922), - [sym_non_lvalue_expression] = STATE(3438), - [sym_lvalue_expression] = STATE(3526), - [sym__expression_statement_expression] = STATE(3362), - [sym_assignment_expression] = STATE(3449), - [sym_binary_expression] = STATE(3362), - [sym_postfix_unary_expression] = STATE(3449), - [sym_prefix_unary_expression] = STATE(3449), - [sym__pointer_indirection_expression] = STATE(2747), - [sym_query_expression] = STATE(3362), - [sym_from_clause] = STATE(6163), - [sym_conditional_expression] = STATE(3362), - [sym_conditional_access_expression] = STATE(3362), - [sym_as_expression] = STATE(3362), - [sym_is_expression] = STATE(3362), - [sym_is_pattern_expression] = STATE(3362), - [sym_cast_expression] = STATE(3362), - [sym_checked_expression] = STATE(3362), - [sym_invocation_expression] = STATE(3449), - [sym_switch_expression] = STATE(3362), - [sym_await_expression] = STATE(3449), - [sym_throw_expression] = STATE(3362), - [sym_element_access_expression] = STATE(2747), - [sym_interpolated_string_expression] = STATE(3362), - [sym_member_access_expression] = STATE(2747), - [sym_object_creation_expression] = STATE(3449), - [sym_parenthesized_expression] = STATE(3449), - [sym__parenthesized_lvalue_expression] = STATE(2747), - [sym_lambda_expression] = STATE(3362), - [sym__lambda_expression_init] = STATE(7529), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3362), - [sym_anonymous_method_expression] = STATE(3362), - [sym_anonymous_object_creation_expression] = STATE(3362), - [sym_implicit_array_creation_expression] = STATE(3362), - [sym_implicit_object_creation_expression] = STATE(3362), - [sym_implicit_stackalloc_expression] = STATE(3362), - [sym_initializer_expression] = STATE(3362), - [sym_default_expression] = STATE(3362), - [sym_with_expression] = STATE(3362), - [sym_sizeof_expression] = STATE(3362), - [sym_typeof_expression] = STATE(3362), - [sym_makeref_expression] = STATE(3362), - [sym_ref_expression] = STATE(3362), - [sym_reftype_expression] = STATE(3362), - [sym_refvalue_expression] = STATE(3362), - [sym_stackalloc_expression] = STATE(3362), - [sym_range_expression] = STATE(3362), - [sym_tuple_expression] = STATE(2747), - [sym_literal] = STATE(3362), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3362), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(5873), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2238), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(4571), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3468), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3102), + [sym_postfix_unary_expression] = STATE(3079), + [sym_prefix_unary_expression] = STATE(3079), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6134), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3102), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3079), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3102), + [sym_member_access_expression] = STATE(2472), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3079), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7309), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(3102), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3102), + [sym_typeof_expression] = STATE(3102), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2472), + [sym_literal] = STATE(3102), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(1177), [sym_preproc_endregion] = STATE(1177), [sym_preproc_line] = STATE(1177), @@ -240772,47 +240658,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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3385), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1307), - [anon_sym_LPAREN] = ACTIONS(1805), - [anon_sym_ref] = ACTIONS(1807), - [anon_sym_LBRACE] = ACTIONS(1313), - [anon_sym_delegate] = ACTIONS(1315), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1479), + [anon_sym_LPAREN] = ACTIONS(659), + [anon_sym_ref] = ACTIONS(663), + [anon_sym_LBRACE] = ACTIONS(1481), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1809), + [anon_sym_new] = ACTIONS(1059), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1319), - [anon_sym_BANG] = ACTIONS(1813), - [anon_sym_TILDE] = ACTIONS(1813), - [anon_sym_PLUS_PLUS] = ACTIONS(1813), - [anon_sym_DASH_DASH] = ACTIONS(1813), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(1485), + [anon_sym_TILDE] = ACTIONS(1485), + [anon_sym_PLUS_PLUS] = ACTIONS(1485), + [anon_sym_DASH_DASH] = ACTIONS(1485), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1811), - [anon_sym_DASH] = ACTIONS(1811), - [anon_sym_STAR] = ACTIONS(1815), - [anon_sym_CARET] = ACTIONS(1813), - [anon_sym_AMP] = ACTIONS(1813), - [anon_sym_this] = ACTIONS(1323), + [anon_sym_PLUS] = ACTIONS(1483), + [anon_sym_DASH] = ACTIONS(1483), + [anon_sym_STAR] = ACTIONS(683), + [anon_sym_CARET] = ACTIONS(1485), + [anon_sym_AMP] = ACTIONS(1485), + [anon_sym_this] = ACTIONS(83), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1325), + [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1319), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1817), + [anon_sym_throw] = ACTIONS(1077), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1819), - [anon_sym_DOT_DOT] = ACTIONS(1821), + [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), @@ -240825,19 +240711,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1333), + [anon_sym_stackalloc] = ACTIONS(127), [anon_sym_sizeof] = ACTIONS(129), [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(1335), - [anon_sym___reftype] = ACTIONS(1337), - [anon_sym___refvalue] = ACTIONS(1339), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), [sym_null_literal] = ACTIONS(139), [anon_sym_SQUOTE] = ACTIONS(141), [sym_integer_literal] = ACTIONS(139), [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1341), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -240854,84 +240740,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [1178] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2762), - [sym__name] = STATE(5890), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2375), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(4978), - [sym_non_lvalue_expression] = STATE(3438), - [sym_lvalue_expression] = STATE(3526), - [sym__expression_statement_expression] = STATE(3362), - [sym_assignment_expression] = STATE(3449), - [sym_binary_expression] = STATE(3362), - [sym_postfix_unary_expression] = STATE(3449), - [sym_prefix_unary_expression] = STATE(3449), - [sym__pointer_indirection_expression] = STATE(2747), - [sym_query_expression] = STATE(3362), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(5528), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2196), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(5328), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3660), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3102), + [sym_postfix_unary_expression] = STATE(3079), + [sym_prefix_unary_expression] = STATE(3079), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), [sym_from_clause] = STATE(6163), - [sym_conditional_expression] = STATE(3362), - [sym_conditional_access_expression] = STATE(3362), - [sym_as_expression] = STATE(3362), - [sym_is_expression] = STATE(3362), - [sym_is_pattern_expression] = STATE(3362), - [sym_cast_expression] = STATE(3362), - [sym_checked_expression] = STATE(3362), - [sym_invocation_expression] = STATE(3449), - [sym_switch_expression] = STATE(3362), - [sym_await_expression] = STATE(3449), - [sym_throw_expression] = STATE(3362), - [sym_element_access_expression] = STATE(2747), - [sym_interpolated_string_expression] = STATE(3362), - [sym_member_access_expression] = STATE(2747), - [sym_object_creation_expression] = STATE(3449), - [sym_parenthesized_expression] = STATE(3449), - [sym__parenthesized_lvalue_expression] = STATE(2747), - [sym_lambda_expression] = STATE(3362), - [sym__lambda_expression_init] = STATE(7529), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3362), - [sym_anonymous_method_expression] = STATE(3362), - [sym_anonymous_object_creation_expression] = STATE(3362), - [sym_implicit_array_creation_expression] = STATE(3362), - [sym_implicit_object_creation_expression] = STATE(3362), - [sym_implicit_stackalloc_expression] = STATE(3362), - [sym_initializer_expression] = STATE(3362), - [sym_default_expression] = STATE(3362), - [sym_with_expression] = STATE(3362), - [sym_sizeof_expression] = STATE(3362), - [sym_typeof_expression] = STATE(3362), - [sym_makeref_expression] = STATE(3362), - [sym_ref_expression] = STATE(3362), - [sym_reftype_expression] = STATE(3362), - [sym_refvalue_expression] = STATE(3362), - [sym_stackalloc_expression] = STATE(3362), - [sym_range_expression] = STATE(3362), - [sym_tuple_expression] = STATE(2747), - [sym_literal] = STATE(3362), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3362), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3102), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3079), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3102), + [sym_member_access_expression] = STATE(2472), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3079), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7633), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(3102), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3102), + [sym_typeof_expression] = STATE(3102), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2472), + [sym_literal] = STATE(3102), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(1178), [sym_preproc_endregion] = STATE(1178), [sym_preproc_line] = STATE(1178), @@ -240941,47 +240827,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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3385), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1307), - [anon_sym_LPAREN] = ACTIONS(1805), - [anon_sym_ref] = ACTIONS(1807), - [anon_sym_LBRACE] = ACTIONS(1313), - [anon_sym_delegate] = ACTIONS(1315), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1479), + [anon_sym_LPAREN] = ACTIONS(2009), + [anon_sym_ref] = ACTIONS(2011), + [anon_sym_LBRACE] = ACTIONS(1481), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1809), + [anon_sym_new] = ACTIONS(1095), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1319), - [anon_sym_BANG] = ACTIONS(1813), - [anon_sym_TILDE] = ACTIONS(1813), - [anon_sym_PLUS_PLUS] = ACTIONS(1813), - [anon_sym_DASH_DASH] = ACTIONS(1813), + [anon_sym_checked] = ACTIONS(1065), + [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(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1811), - [anon_sym_DASH] = ACTIONS(1811), - [anon_sym_STAR] = ACTIONS(1815), - [anon_sym_CARET] = ACTIONS(1813), - [anon_sym_AMP] = ACTIONS(1813), - [anon_sym_this] = ACTIONS(1323), + [anon_sym_PLUS] = ACTIONS(2013), + [anon_sym_DASH] = ACTIONS(2013), + [anon_sym_STAR] = ACTIONS(1227), + [anon_sym_CARET] = ACTIONS(2015), + [anon_sym_AMP] = ACTIONS(2015), + [anon_sym_this] = ACTIONS(83), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1325), + [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1319), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1817), + [anon_sym_throw] = ACTIONS(1231), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1819), - [anon_sym_DOT_DOT] = ACTIONS(1821), + [anon_sym_await] = ACTIONS(1233), + [anon_sym_DOT_DOT] = ACTIONS(1235), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -240994,19 +240880,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1333), + [anon_sym_stackalloc] = ACTIONS(127), [anon_sym_sizeof] = ACTIONS(129), [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(1335), - [anon_sym___reftype] = ACTIONS(1337), - [anon_sym___refvalue] = ACTIONS(1339), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), [sym_null_literal] = ACTIONS(139), [anon_sym_SQUOTE] = ACTIONS(141), [sym_integer_literal] = ACTIONS(139), [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1341), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -241023,84 +240909,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [1179] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2762), - [sym__name] = STATE(5890), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2375), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(4979), - [sym_non_lvalue_expression] = STATE(3438), - [sym_lvalue_expression] = STATE(3526), - [sym__expression_statement_expression] = STATE(3362), - [sym_assignment_expression] = STATE(3449), - [sym_binary_expression] = STATE(3362), - [sym_postfix_unary_expression] = STATE(3449), - [sym_prefix_unary_expression] = STATE(3449), - [sym__pointer_indirection_expression] = STATE(2747), - [sym_query_expression] = STATE(3362), - [sym_from_clause] = STATE(6163), - [sym_conditional_expression] = STATE(3362), - [sym_conditional_access_expression] = STATE(3362), - [sym_as_expression] = STATE(3362), - [sym_is_expression] = STATE(3362), - [sym_is_pattern_expression] = STATE(3362), - [sym_cast_expression] = STATE(3362), - [sym_checked_expression] = STATE(3362), - [sym_invocation_expression] = STATE(3449), - [sym_switch_expression] = STATE(3362), - [sym_await_expression] = STATE(3449), - [sym_throw_expression] = STATE(3362), - [sym_element_access_expression] = STATE(2747), - [sym_interpolated_string_expression] = STATE(3362), - [sym_member_access_expression] = STATE(2747), - [sym_object_creation_expression] = STATE(3449), - [sym_parenthesized_expression] = STATE(3449), - [sym__parenthesized_lvalue_expression] = STATE(2747), - [sym_lambda_expression] = STATE(3362), - [sym__lambda_expression_init] = STATE(7529), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3362), - [sym_anonymous_method_expression] = STATE(3362), - [sym_anonymous_object_creation_expression] = STATE(3362), - [sym_implicit_array_creation_expression] = STATE(3362), - [sym_implicit_object_creation_expression] = STATE(3362), - [sym_implicit_stackalloc_expression] = STATE(3362), - [sym_initializer_expression] = STATE(3362), - [sym_default_expression] = STATE(3362), - [sym_with_expression] = STATE(3362), - [sym_sizeof_expression] = STATE(3362), - [sym_typeof_expression] = STATE(3362), - [sym_makeref_expression] = STATE(3362), - [sym_ref_expression] = STATE(3362), - [sym_reftype_expression] = STATE(3362), - [sym_refvalue_expression] = STATE(3362), - [sym_stackalloc_expression] = STATE(3362), - [sym_range_expression] = STATE(3362), - [sym_tuple_expression] = STATE(2747), - [sym_literal] = STATE(3362), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3362), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(5881), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2386), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(4192), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3132), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3102), + [sym_postfix_unary_expression] = STATE(3079), + [sym_prefix_unary_expression] = STATE(3079), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6158), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3102), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3079), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3102), + [sym_member_access_expression] = STATE(2472), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3079), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7650), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(3102), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3102), + [sym_typeof_expression] = STATE(3102), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2472), + [sym_literal] = STATE(3102), + [sym_character_literal] = STATE(3037), + [sym_string_literal] = STATE(3037), + [sym_raw_string_literal] = STATE(3037), + [sym_boolean_literal] = STATE(3037), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(1179), [sym_preproc_endregion] = STATE(1179), [sym_preproc_line] = STATE(1179), @@ -241110,47 +240996,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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3385), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1307), - [anon_sym_LPAREN] = ACTIONS(1805), - [anon_sym_ref] = ACTIONS(1807), - [anon_sym_LBRACE] = ACTIONS(1313), - [anon_sym_delegate] = ACTIONS(1315), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1479), + [anon_sym_LPAREN] = ACTIONS(2185), + [anon_sym_ref] = ACTIONS(2187), + [anon_sym_LBRACE] = ACTIONS(1481), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1809), + [anon_sym_new] = ACTIONS(1899), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1319), - [anon_sym_BANG] = ACTIONS(1813), - [anon_sym_TILDE] = ACTIONS(1813), - [anon_sym_PLUS_PLUS] = ACTIONS(1813), - [anon_sym_DASH_DASH] = ACTIONS(1813), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1811), - [anon_sym_DASH] = ACTIONS(1811), - [anon_sym_STAR] = ACTIONS(1815), - [anon_sym_CARET] = ACTIONS(1813), - [anon_sym_AMP] = ACTIONS(1813), - [anon_sym_this] = ACTIONS(1323), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(2191), + [anon_sym_TILDE] = ACTIONS(2191), + [anon_sym_PLUS_PLUS] = ACTIONS(2191), + [anon_sym_DASH_DASH] = ACTIONS(2191), + [anon_sym_true] = ACTIONS(1257), + [anon_sym_false] = ACTIONS(1257), + [anon_sym_PLUS] = ACTIONS(2189), + [anon_sym_DASH] = ACTIONS(2189), + [anon_sym_STAR] = ACTIONS(1905), + [anon_sym_CARET] = ACTIONS(2191), + [anon_sym_AMP] = ACTIONS(2191), + [anon_sym_this] = ACTIONS(83), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1325), + [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1319), + [sym_predefined_type] = ACTIONS(1265), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1817), + [anon_sym_default] = ACTIONS(1267), + [anon_sym_throw] = ACTIONS(2193), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1819), - [anon_sym_DOT_DOT] = ACTIONS(1821), + [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), @@ -241163,19 +241049,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1333), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(1335), - [anon_sym___reftype] = ACTIONS(1337), - [anon_sym___refvalue] = ACTIONS(1339), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1341), + [anon_sym_stackalloc] = ACTIONS(127), + [anon_sym_sizeof] = ACTIONS(1277), + [anon_sym_typeof] = ACTIONS(1279), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), + [sym_null_literal] = ACTIONS(1287), + [anon_sym_SQUOTE] = ACTIONS(1289), + [sym_integer_literal] = ACTIONS(1287), + [sym_real_literal] = ACTIONS(1291), + [anon_sym_DQUOTE] = ACTIONS(1293), + [sym_verbatim_string_literal] = ACTIONS(1291), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -241186,90 +241072,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(151), - [sym_interpolation_verbatim_start] = ACTIONS(153), - [sym_interpolation_raw_start] = ACTIONS(155), - [sym_raw_string_start] = ACTIONS(157), + [sym_interpolation_regular_start] = ACTIONS(1297), + [sym_interpolation_verbatim_start] = ACTIONS(1299), + [sym_interpolation_raw_start] = ACTIONS(1301), + [sym_raw_string_start] = ACTIONS(1303), }, [1180] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2762), - [sym__name] = STATE(5890), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2375), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(4980), - [sym_non_lvalue_expression] = STATE(3438), - [sym_lvalue_expression] = STATE(3526), - [sym__expression_statement_expression] = STATE(3362), - [sym_assignment_expression] = STATE(3449), - [sym_binary_expression] = STATE(3362), - [sym_postfix_unary_expression] = STATE(3449), - [sym_prefix_unary_expression] = STATE(3449), - [sym__pointer_indirection_expression] = STATE(2747), - [sym_query_expression] = STATE(3362), - [sym_from_clause] = STATE(6163), - [sym_conditional_expression] = STATE(3362), - [sym_conditional_access_expression] = STATE(3362), - [sym_as_expression] = STATE(3362), - [sym_is_expression] = STATE(3362), - [sym_is_pattern_expression] = STATE(3362), - [sym_cast_expression] = STATE(3362), - [sym_checked_expression] = STATE(3362), - [sym_invocation_expression] = STATE(3449), - [sym_switch_expression] = STATE(3362), - [sym_await_expression] = STATE(3449), - [sym_throw_expression] = STATE(3362), - [sym_element_access_expression] = STATE(2747), - [sym_interpolated_string_expression] = STATE(3362), - [sym_member_access_expression] = STATE(2747), - [sym_object_creation_expression] = STATE(3449), - [sym_parenthesized_expression] = STATE(3449), - [sym__parenthesized_lvalue_expression] = STATE(2747), - [sym_lambda_expression] = STATE(3362), - [sym__lambda_expression_init] = STATE(7529), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3362), - [sym_anonymous_method_expression] = STATE(3362), - [sym_anonymous_object_creation_expression] = STATE(3362), - [sym_implicit_array_creation_expression] = STATE(3362), - [sym_implicit_object_creation_expression] = STATE(3362), - [sym_implicit_stackalloc_expression] = STATE(3362), - [sym_initializer_expression] = STATE(3362), - [sym_default_expression] = STATE(3362), - [sym_with_expression] = STATE(3362), - [sym_sizeof_expression] = STATE(3362), - [sym_typeof_expression] = STATE(3362), - [sym_makeref_expression] = STATE(3362), - [sym_ref_expression] = STATE(3362), - [sym_reftype_expression] = STATE(3362), - [sym_refvalue_expression] = STATE(3362), - [sym_stackalloc_expression] = STATE(3362), - [sym_range_expression] = STATE(3362), - [sym_tuple_expression] = STATE(2747), - [sym_literal] = STATE(3362), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3362), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(5873), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2238), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(3528), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3468), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3102), + [sym_postfix_unary_expression] = STATE(3079), + [sym_prefix_unary_expression] = STATE(3079), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6134), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3102), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3079), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3102), + [sym_member_access_expression] = STATE(2472), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3079), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7309), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(3102), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3102), + [sym_typeof_expression] = STATE(3102), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2472), + [sym_literal] = STATE(3102), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(1180), [sym_preproc_endregion] = STATE(1180), [sym_preproc_line] = STATE(1180), @@ -241279,47 +241165,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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3385), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1307), - [anon_sym_LPAREN] = ACTIONS(1805), - [anon_sym_ref] = ACTIONS(1807), - [anon_sym_LBRACE] = ACTIONS(1313), - [anon_sym_delegate] = ACTIONS(1315), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1479), + [anon_sym_LPAREN] = ACTIONS(659), + [anon_sym_ref] = ACTIONS(663), + [anon_sym_LBRACE] = ACTIONS(1481), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1809), + [anon_sym_new] = ACTIONS(1059), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1319), - [anon_sym_BANG] = ACTIONS(1813), - [anon_sym_TILDE] = ACTIONS(1813), - [anon_sym_PLUS_PLUS] = ACTIONS(1813), - [anon_sym_DASH_DASH] = ACTIONS(1813), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(1485), + [anon_sym_TILDE] = ACTIONS(1485), + [anon_sym_PLUS_PLUS] = ACTIONS(1485), + [anon_sym_DASH_DASH] = ACTIONS(1485), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1811), - [anon_sym_DASH] = ACTIONS(1811), - [anon_sym_STAR] = ACTIONS(1815), - [anon_sym_CARET] = ACTIONS(1813), - [anon_sym_AMP] = ACTIONS(1813), - [anon_sym_this] = ACTIONS(1323), + [anon_sym_PLUS] = ACTIONS(1483), + [anon_sym_DASH] = ACTIONS(1483), + [anon_sym_STAR] = ACTIONS(683), + [anon_sym_CARET] = ACTIONS(1485), + [anon_sym_AMP] = ACTIONS(1485), + [anon_sym_this] = ACTIONS(83), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1325), + [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1319), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1817), + [anon_sym_throw] = ACTIONS(1077), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1819), - [anon_sym_DOT_DOT] = ACTIONS(1821), + [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), @@ -241332,19 +241218,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1333), + [anon_sym_stackalloc] = ACTIONS(127), [anon_sym_sizeof] = ACTIONS(129), [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(1335), - [anon_sym___reftype] = ACTIONS(1337), - [anon_sym___refvalue] = ACTIONS(1339), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), [sym_null_literal] = ACTIONS(139), [anon_sym_SQUOTE] = ACTIONS(141), [sym_integer_literal] = ACTIONS(139), [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1341), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -241361,84 +241247,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [1181] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2762), - [sym__name] = STATE(5890), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2375), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(5049), - [sym_non_lvalue_expression] = STATE(3438), - [sym_lvalue_expression] = STATE(3526), - [sym__expression_statement_expression] = STATE(3362), - [sym_assignment_expression] = STATE(3449), - [sym_binary_expression] = STATE(3362), - [sym_postfix_unary_expression] = STATE(3449), - [sym_prefix_unary_expression] = STATE(3449), - [sym__pointer_indirection_expression] = STATE(2747), - [sym_query_expression] = STATE(3362), - [sym_from_clause] = STATE(6163), - [sym_conditional_expression] = STATE(3362), - [sym_conditional_access_expression] = STATE(3362), - [sym_as_expression] = STATE(3362), - [sym_is_expression] = STATE(3362), - [sym_is_pattern_expression] = STATE(3362), - [sym_cast_expression] = STATE(3362), - [sym_checked_expression] = STATE(3362), - [sym_invocation_expression] = STATE(3449), - [sym_switch_expression] = STATE(3362), - [sym_await_expression] = STATE(3449), - [sym_throw_expression] = STATE(3362), - [sym_element_access_expression] = STATE(2747), - [sym_interpolated_string_expression] = STATE(3362), - [sym_member_access_expression] = STATE(2747), - [sym_object_creation_expression] = STATE(3449), - [sym_parenthesized_expression] = STATE(3449), - [sym__parenthesized_lvalue_expression] = STATE(2747), - [sym_lambda_expression] = STATE(3362), - [sym__lambda_expression_init] = STATE(7529), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3362), - [sym_anonymous_method_expression] = STATE(3362), - [sym_anonymous_object_creation_expression] = STATE(3362), - [sym_implicit_array_creation_expression] = STATE(3362), - [sym_implicit_object_creation_expression] = STATE(3362), - [sym_implicit_stackalloc_expression] = STATE(3362), - [sym_initializer_expression] = STATE(3362), - [sym_default_expression] = STATE(3362), - [sym_with_expression] = STATE(3362), - [sym_sizeof_expression] = STATE(3362), - [sym_typeof_expression] = STATE(3362), - [sym_makeref_expression] = STATE(3362), - [sym_ref_expression] = STATE(3362), - [sym_reftype_expression] = STATE(3362), - [sym_refvalue_expression] = STATE(3362), - [sym_stackalloc_expression] = STATE(3362), - [sym_range_expression] = STATE(3362), - [sym_tuple_expression] = STATE(2747), - [sym_literal] = STATE(3362), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3362), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2416), + [sym__name] = STATE(5897), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2367), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(5203), + [sym_non_lvalue_expression] = STATE(3040), + [sym_lvalue_expression] = STATE(3600), + [sym__expression_statement_expression] = STATE(3035), + [sym_assignment_expression] = STATE(3043), + [sym_binary_expression] = STATE(3035), + [sym_postfix_unary_expression] = STATE(3043), + [sym_prefix_unary_expression] = STATE(3043), + [sym__pointer_indirection_expression] = STATE(2415), + [sym_query_expression] = STATE(3035), + [sym_from_clause] = STATE(6156), + [sym_conditional_expression] = STATE(3035), + [sym_conditional_access_expression] = STATE(3035), + [sym_as_expression] = STATE(3035), + [sym_is_expression] = STATE(3035), + [sym_is_pattern_expression] = STATE(3035), + [sym_cast_expression] = STATE(3035), + [sym_checked_expression] = STATE(3035), + [sym_invocation_expression] = STATE(3043), + [sym_switch_expression] = STATE(3035), + [sym_await_expression] = STATE(3043), + [sym_throw_expression] = STATE(3035), + [sym_element_access_expression] = STATE(2415), + [sym_interpolated_string_expression] = STATE(3035), + [sym_member_access_expression] = STATE(2415), + [sym_object_creation_expression] = STATE(3043), + [sym_parenthesized_expression] = STATE(3043), + [sym__parenthesized_lvalue_expression] = STATE(2415), + [sym_lambda_expression] = STATE(3035), + [sym__lambda_expression_init] = STATE(7561), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3035), + [sym_anonymous_method_expression] = STATE(3035), + [sym_anonymous_object_creation_expression] = STATE(3035), + [sym_implicit_array_creation_expression] = STATE(3035), + [sym_implicit_object_creation_expression] = STATE(3035), + [sym_implicit_stackalloc_expression] = STATE(3035), + [sym_initializer_expression] = STATE(3035), + [sym_default_expression] = STATE(3035), + [sym_with_expression] = STATE(3035), + [sym_sizeof_expression] = STATE(3035), + [sym_typeof_expression] = STATE(3035), + [sym_makeref_expression] = STATE(3035), + [sym_ref_expression] = STATE(3035), + [sym_reftype_expression] = STATE(3035), + [sym_refvalue_expression] = STATE(3035), + [sym_stackalloc_expression] = STATE(3035), + [sym_range_expression] = STATE(3035), + [sym_tuple_expression] = STATE(2415), + [sym_literal] = STATE(3035), + [sym_character_literal] = STATE(3037), + [sym_string_literal] = STATE(3037), + [sym_raw_string_literal] = STATE(3037), + [sym_boolean_literal] = STATE(3037), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3035), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(1181), [sym_preproc_endregion] = STATE(1181), [sym_preproc_line] = STATE(1181), @@ -241448,47 +241334,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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3385), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3455), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1307), - [anon_sym_LPAREN] = ACTIONS(1805), - [anon_sym_ref] = ACTIONS(1807), - [anon_sym_LBRACE] = ACTIONS(1313), - [anon_sym_delegate] = ACTIONS(1315), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1239), + [anon_sym_LPAREN] = ACTIONS(2217), + [anon_sym_ref] = ACTIONS(2219), + [anon_sym_LBRACE] = ACTIONS(1245), + [anon_sym_delegate] = ACTIONS(1247), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1809), + [anon_sym_new] = ACTIONS(2221), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1319), - [anon_sym_BANG] = ACTIONS(1813), - [anon_sym_TILDE] = ACTIONS(1813), - [anon_sym_PLUS_PLUS] = ACTIONS(1813), - [anon_sym_DASH_DASH] = ACTIONS(1813), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1811), - [anon_sym_DASH] = ACTIONS(1811), - [anon_sym_STAR] = ACTIONS(1815), - [anon_sym_CARET] = ACTIONS(1813), - [anon_sym_AMP] = ACTIONS(1813), - [anon_sym_this] = ACTIONS(1323), + [anon_sym_checked] = ACTIONS(1251), + [anon_sym_BANG] = ACTIONS(2225), + [anon_sym_TILDE] = ACTIONS(2225), + [anon_sym_PLUS_PLUS] = ACTIONS(2225), + [anon_sym_DASH_DASH] = ACTIONS(2225), + [anon_sym_true] = ACTIONS(1257), + [anon_sym_false] = ACTIONS(1257), + [anon_sym_PLUS] = ACTIONS(2223), + [anon_sym_DASH] = ACTIONS(2223), + [anon_sym_STAR] = ACTIONS(2227), + [anon_sym_CARET] = ACTIONS(2225), + [anon_sym_AMP] = ACTIONS(2225), + [anon_sym_this] = ACTIONS(1261), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1325), + [anon_sym_base] = ACTIONS(1263), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1319), + [sym_predefined_type] = ACTIONS(1265), + [anon_sym_unchecked] = ACTIONS(1251), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1817), + [anon_sym_default] = ACTIONS(1267), + [anon_sym_throw] = ACTIONS(2229), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1819), - [anon_sym_DOT_DOT] = ACTIONS(1821), + [anon_sym_await] = ACTIONS(2231), + [anon_sym_DOT_DOT] = ACTIONS(2233), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -241501,19 +241387,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1333), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(1335), - [anon_sym___reftype] = ACTIONS(1337), - [anon_sym___refvalue] = ACTIONS(1339), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1341), + [anon_sym_stackalloc] = ACTIONS(1275), + [anon_sym_sizeof] = ACTIONS(1277), + [anon_sym_typeof] = ACTIONS(1279), + [anon_sym___makeref] = ACTIONS(1281), + [anon_sym___reftype] = ACTIONS(1283), + [anon_sym___refvalue] = ACTIONS(1285), + [sym_null_literal] = ACTIONS(1287), + [anon_sym_SQUOTE] = ACTIONS(1289), + [sym_integer_literal] = ACTIONS(1287), + [sym_real_literal] = ACTIONS(1291), + [anon_sym_DQUOTE] = ACTIONS(1293), + [sym_verbatim_string_literal] = ACTIONS(1291), + [aux_sym_preproc_if_token1] = ACTIONS(1295), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -241524,90 +241410,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(151), - [sym_interpolation_verbatim_start] = ACTIONS(153), - [sym_interpolation_raw_start] = ACTIONS(155), - [sym_raw_string_start] = ACTIONS(157), + [sym_interpolation_regular_start] = ACTIONS(1297), + [sym_interpolation_verbatim_start] = ACTIONS(1299), + [sym_interpolation_raw_start] = ACTIONS(1301), + [sym_raw_string_start] = ACTIONS(1303), }, [1182] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2762), - [sym__name] = STATE(5890), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2375), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(3218), - [sym_non_lvalue_expression] = STATE(3438), - [sym_lvalue_expression] = STATE(3526), - [sym__expression_statement_expression] = STATE(3362), - [sym_assignment_expression] = STATE(3449), - [sym_binary_expression] = STATE(3362), - [sym_postfix_unary_expression] = STATE(3449), - [sym_prefix_unary_expression] = STATE(3449), - [sym__pointer_indirection_expression] = STATE(2747), - [sym_query_expression] = STATE(3362), - [sym_from_clause] = STATE(6163), - [sym_conditional_expression] = STATE(3362), - [sym_conditional_access_expression] = STATE(3362), - [sym_as_expression] = STATE(3362), - [sym_is_expression] = STATE(3362), - [sym_is_pattern_expression] = STATE(3362), - [sym_cast_expression] = STATE(3362), - [sym_checked_expression] = STATE(3362), - [sym_invocation_expression] = STATE(3449), - [sym_switch_expression] = STATE(3362), - [sym_await_expression] = STATE(3449), - [sym_throw_expression] = STATE(3362), - [sym_element_access_expression] = STATE(2747), - [sym_interpolated_string_expression] = STATE(3362), - [sym_member_access_expression] = STATE(2747), - [sym_object_creation_expression] = STATE(3449), - [sym_parenthesized_expression] = STATE(3449), - [sym__parenthesized_lvalue_expression] = STATE(2747), - [sym_lambda_expression] = STATE(3362), - [sym__lambda_expression_init] = STATE(7529), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3362), - [sym_anonymous_method_expression] = STATE(3362), - [sym_anonymous_object_creation_expression] = STATE(3362), - [sym_implicit_array_creation_expression] = STATE(3362), - [sym_implicit_object_creation_expression] = STATE(3362), - [sym_implicit_stackalloc_expression] = STATE(3362), - [sym_initializer_expression] = STATE(3362), - [sym_default_expression] = STATE(3362), - [sym_with_expression] = STATE(3362), - [sym_sizeof_expression] = STATE(3362), - [sym_typeof_expression] = STATE(3362), - [sym_makeref_expression] = STATE(3362), - [sym_ref_expression] = STATE(3362), - [sym_reftype_expression] = STATE(3362), - [sym_refvalue_expression] = STATE(3362), - [sym_stackalloc_expression] = STATE(3362), - [sym_range_expression] = STATE(3362), - [sym_tuple_expression] = STATE(2747), - [sym_literal] = STATE(3362), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3362), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(5152), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2196), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(3523), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3510), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3102), + [sym_postfix_unary_expression] = STATE(3079), + [sym_prefix_unary_expression] = STATE(3079), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6134), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3102), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3079), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3102), + [sym_member_access_expression] = STATE(2472), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3079), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7425), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(3102), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3102), + [sym_typeof_expression] = STATE(3102), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2472), + [sym_literal] = STATE(3102), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(1182), [sym_preproc_endregion] = STATE(1182), [sym_preproc_line] = STATE(1182), @@ -241617,47 +241503,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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3385), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1307), - [anon_sym_LPAREN] = ACTIONS(1805), - [anon_sym_ref] = ACTIONS(1807), - [anon_sym_LBRACE] = ACTIONS(1313), - [anon_sym_delegate] = ACTIONS(1315), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1479), + [anon_sym_LPAREN] = ACTIONS(43), + [anon_sym_ref] = ACTIONS(715), + [anon_sym_LBRACE] = ACTIONS(1481), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1809), + [anon_sym_new] = ACTIONS(1059), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1319), - [anon_sym_BANG] = ACTIONS(1813), - [anon_sym_TILDE] = ACTIONS(1813), - [anon_sym_PLUS_PLUS] = ACTIONS(1813), - [anon_sym_DASH_DASH] = ACTIONS(1813), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(1525), + [anon_sym_TILDE] = ACTIONS(1525), + [anon_sym_PLUS_PLUS] = ACTIONS(1525), + [anon_sym_DASH_DASH] = ACTIONS(1525), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1811), - [anon_sym_DASH] = ACTIONS(1811), - [anon_sym_STAR] = ACTIONS(1815), - [anon_sym_CARET] = ACTIONS(1813), - [anon_sym_AMP] = ACTIONS(1813), - [anon_sym_this] = ACTIONS(1323), + [anon_sym_PLUS] = ACTIONS(1523), + [anon_sym_DASH] = ACTIONS(1523), + [anon_sym_STAR] = ACTIONS(81), + [anon_sym_CARET] = ACTIONS(1525), + [anon_sym_AMP] = ACTIONS(1525), + [anon_sym_this] = ACTIONS(83), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1325), + [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1319), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1817), + [anon_sym_throw] = ACTIONS(1527), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1819), - [anon_sym_DOT_DOT] = ACTIONS(1821), + [anon_sym_await] = ACTIONS(1529), + [anon_sym_DOT_DOT] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -241670,19 +241556,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1333), + [anon_sym_stackalloc] = ACTIONS(127), [anon_sym_sizeof] = ACTIONS(129), [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(1335), - [anon_sym___reftype] = ACTIONS(1337), - [anon_sym___refvalue] = ACTIONS(1339), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), [sym_null_literal] = ACTIONS(139), [anon_sym_SQUOTE] = ACTIONS(141), [sym_integer_literal] = ACTIONS(139), [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1341), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -241699,84 +241585,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [1183] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2420), - [sym__name] = STATE(5887), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2197), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(5290), - [sym_non_lvalue_expression] = STATE(3066), - [sym_lvalue_expression] = STATE(3552), - [sym__expression_statement_expression] = STATE(3006), - [sym_assignment_expression] = STATE(3020), - [sym_binary_expression] = STATE(3006), - [sym_postfix_unary_expression] = STATE(3020), - [sym_prefix_unary_expression] = STATE(3020), - [sym__pointer_indirection_expression] = STATE(2423), - [sym_query_expression] = STATE(3006), - [sym_from_clause] = STATE(6181), - [sym_conditional_expression] = STATE(3006), - [sym_conditional_access_expression] = STATE(3006), - [sym_as_expression] = STATE(3006), - [sym_is_expression] = STATE(3006), - [sym_is_pattern_expression] = STATE(3006), - [sym_cast_expression] = STATE(3006), - [sym_checked_expression] = STATE(3006), - [sym_invocation_expression] = STATE(3020), - [sym_switch_expression] = STATE(3006), - [sym_await_expression] = STATE(3020), - [sym_throw_expression] = STATE(3006), - [sym_element_access_expression] = STATE(2423), - [sym_interpolated_string_expression] = STATE(3006), - [sym_member_access_expression] = STATE(2423), - [sym_object_creation_expression] = STATE(3020), - [sym_parenthesized_expression] = STATE(3020), - [sym__parenthesized_lvalue_expression] = STATE(2423), - [sym_lambda_expression] = STATE(3006), - [sym__lambda_expression_init] = STATE(7493), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3006), - [sym_anonymous_method_expression] = STATE(3006), - [sym_anonymous_object_creation_expression] = STATE(3006), - [sym_implicit_array_creation_expression] = STATE(3006), - [sym_implicit_object_creation_expression] = STATE(3006), - [sym_implicit_stackalloc_expression] = STATE(3006), - [sym_initializer_expression] = STATE(3006), - [sym_default_expression] = STATE(3006), - [sym_with_expression] = STATE(3006), - [sym_sizeof_expression] = STATE(3006), - [sym_typeof_expression] = STATE(3006), - [sym_makeref_expression] = STATE(3006), - [sym_ref_expression] = STATE(3006), - [sym_reftype_expression] = STATE(3006), - [sym_refvalue_expression] = STATE(3006), - [sym_stackalloc_expression] = STATE(3006), - [sym_range_expression] = STATE(3006), - [sym_tuple_expression] = STATE(2423), - [sym_literal] = STATE(3006), - [sym_character_literal] = STATE(3011), - [sym_string_literal] = STATE(3011), - [sym_raw_string_literal] = STATE(3011), - [sym_boolean_literal] = STATE(3011), - [sym_identifier] = STATE(2267), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3006), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(3182), + [sym__name] = STATE(5888), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2286), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2262), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(4659), + [sym_non_lvalue_expression] = STATE(4580), + [sym_lvalue_expression] = STATE(3373), + [sym__expression_statement_expression] = STATE(4573), + [sym_assignment_expression] = STATE(4581), + [sym_binary_expression] = STATE(4573), + [sym_postfix_unary_expression] = STATE(4581), + [sym_prefix_unary_expression] = STATE(4581), + [sym__pointer_indirection_expression] = STATE(3144), + [sym_query_expression] = STATE(4573), + [sym_from_clause] = STATE(6133), + [sym_conditional_expression] = STATE(4573), + [sym_conditional_access_expression] = STATE(4573), + [sym_as_expression] = STATE(4573), + [sym_is_expression] = STATE(4573), + [sym_is_pattern_expression] = STATE(4573), + [sym_cast_expression] = STATE(4573), + [sym_checked_expression] = STATE(4573), + [sym_invocation_expression] = STATE(4581), + [sym_switch_expression] = STATE(4573), + [sym_await_expression] = STATE(4581), + [sym_throw_expression] = STATE(4573), + [sym_element_access_expression] = STATE(3144), + [sym_interpolated_string_expression] = STATE(4573), + [sym_member_access_expression] = STATE(3144), + [sym_object_creation_expression] = STATE(4581), + [sym_parenthesized_expression] = STATE(4581), + [sym__parenthesized_lvalue_expression] = STATE(3144), + [sym_lambda_expression] = STATE(4573), + [sym__lambda_expression_init] = STATE(7614), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(4573), + [sym_anonymous_method_expression] = STATE(4573), + [sym_anonymous_object_creation_expression] = STATE(4573), + [sym_implicit_array_creation_expression] = STATE(4573), + [sym_implicit_object_creation_expression] = STATE(4573), + [sym_implicit_stackalloc_expression] = STATE(4573), + [sym_initializer_expression] = STATE(4573), + [sym_default_expression] = STATE(4573), + [sym_with_expression] = STATE(4573), + [sym_sizeof_expression] = STATE(4573), + [sym_typeof_expression] = STATE(4573), + [sym_makeref_expression] = STATE(4573), + [sym_ref_expression] = STATE(4573), + [sym_reftype_expression] = STATE(4573), + [sym_refvalue_expression] = STATE(4573), + [sym_stackalloc_expression] = STATE(4573), + [sym_range_expression] = STATE(4573), + [sym_tuple_expression] = STATE(3144), + [sym_literal] = STATE(4573), + [sym_character_literal] = STATE(4575), + [sym_string_literal] = STATE(4575), + [sym_raw_string_literal] = STATE(4575), + [sym_boolean_literal] = STATE(4575), + [sym_identifier] = STATE(2237), + [sym__reserved_identifier] = STATE(2229), + [sym_preproc_if_in_expression] = STATE(4573), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(1183), [sym_preproc_endregion] = STATE(1183), [sym_preproc_line] = STATE(1183), @@ -241786,166 +241672,166 @@ 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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3440), - [sym__identifier_token] = ACTIONS(25), - [anon_sym_alias] = ACTIONS(29), - [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1241), - [anon_sym_LPAREN] = ACTIONS(2031), - [anon_sym_ref] = ACTIONS(2033), - [anon_sym_LBRACE] = ACTIONS(1247), - [anon_sym_delegate] = ACTIONS(1249), - [anon_sym_async] = ACTIONS(1047), - [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1251), - [anon_sym_where] = ACTIONS(29), - [anon_sym_notnull] = ACTIONS(29), - [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1253), - [anon_sym_BANG] = ACTIONS(2037), - [anon_sym_TILDE] = ACTIONS(2037), - [anon_sym_PLUS_PLUS] = ACTIONS(2037), - [anon_sym_DASH_DASH] = ACTIONS(2037), - [anon_sym_true] = ACTIONS(1259), - [anon_sym_false] = ACTIONS(1259), - [anon_sym_PLUS] = ACTIONS(2035), - [anon_sym_DASH] = ACTIONS(2035), - [anon_sym_STAR] = ACTIONS(2039), - [anon_sym_CARET] = ACTIONS(2037), - [anon_sym_AMP] = ACTIONS(2037), - [anon_sym_this] = ACTIONS(1263), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1265), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1267), - [anon_sym_unchecked] = ACTIONS(1253), - [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1269), - [anon_sym_throw] = ACTIONS(2041), - [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2043), - [anon_sym_DOT_DOT] = ACTIONS(2045), - [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(1277), - [anon_sym_sizeof] = ACTIONS(1279), - [anon_sym_typeof] = ACTIONS(1281), - [anon_sym___makeref] = ACTIONS(1283), - [anon_sym___reftype] = ACTIONS(1285), - [anon_sym___refvalue] = ACTIONS(1287), - [sym_null_literal] = ACTIONS(1289), - [anon_sym_SQUOTE] = ACTIONS(1291), - [sym_integer_literal] = ACTIONS(1289), - [sym_real_literal] = ACTIONS(1293), - [anon_sym_DQUOTE] = ACTIONS(1295), - [sym_verbatim_string_literal] = ACTIONS(1293), - [aux_sym_preproc_if_token1] = ACTIONS(1297), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1299), - [sym_interpolation_verbatim_start] = ACTIONS(1301), - [sym_interpolation_raw_start] = ACTIONS(1303), - [sym_raw_string_start] = ACTIONS(1305), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3501), + [sym__identifier_token] = ACTIONS(1385), + [anon_sym_alias] = ACTIONS(1387), + [anon_sym_global] = ACTIONS(1387), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1389), + [anon_sym_LPAREN] = ACTIONS(1565), + [anon_sym_ref] = ACTIONS(1567), + [anon_sym_LBRACE] = ACTIONS(1395), + [anon_sym_delegate] = ACTIONS(1397), + [anon_sym_async] = ACTIONS(1045), + [anon_sym_file] = ACTIONS(1387), + [anon_sym_new] = ACTIONS(1399), + [anon_sym_where] = ACTIONS(1387), + [anon_sym_notnull] = ACTIONS(1387), + [anon_sym_unmanaged] = ACTIONS(1387), + [anon_sym_checked] = ACTIONS(1401), + [anon_sym_BANG] = ACTIONS(1571), + [anon_sym_TILDE] = ACTIONS(1571), + [anon_sym_PLUS_PLUS] = ACTIONS(1571), + [anon_sym_DASH_DASH] = ACTIONS(1571), + [anon_sym_true] = ACTIONS(1407), + [anon_sym_false] = ACTIONS(1407), + [anon_sym_PLUS] = ACTIONS(1569), + [anon_sym_DASH] = ACTIONS(1569), + [anon_sym_STAR] = ACTIONS(1409), + [anon_sym_CARET] = ACTIONS(1571), + [anon_sym_AMP] = ACTIONS(1571), + [anon_sym_this] = ACTIONS(1411), + [anon_sym_scoped] = ACTIONS(1413), + [anon_sym_base] = ACTIONS(1415), + [anon_sym_var] = ACTIONS(1417), + [sym_predefined_type] = ACTIONS(1419), + [anon_sym_unchecked] = ACTIONS(1401), + [anon_sym_yield] = ACTIONS(1387), + [anon_sym_default] = ACTIONS(1421), + [anon_sym_throw] = ACTIONS(1573), + [anon_sym_when] = ACTIONS(1387), + [anon_sym_await] = ACTIONS(1575), + [anon_sym_DOT_DOT] = ACTIONS(1577), + [anon_sym_from] = ACTIONS(1429), + [anon_sym_into] = ACTIONS(1387), + [anon_sym_join] = ACTIONS(1387), + [anon_sym_on] = ACTIONS(1387), + [anon_sym_equals] = ACTIONS(1387), + [anon_sym_let] = ACTIONS(1387), + [anon_sym_orderby] = ACTIONS(1387), + [anon_sym_ascending] = ACTIONS(1387), + [anon_sym_descending] = ACTIONS(1387), + [anon_sym_group] = ACTIONS(1387), + [anon_sym_by] = ACTIONS(1387), + [anon_sym_select] = ACTIONS(1387), + [anon_sym_stackalloc] = ACTIONS(1431), + [anon_sym_sizeof] = ACTIONS(1433), + [anon_sym_typeof] = ACTIONS(1435), + [anon_sym___makeref] = ACTIONS(1437), + [anon_sym___reftype] = ACTIONS(1439), + [anon_sym___refvalue] = ACTIONS(1441), + [sym_null_literal] = ACTIONS(1443), + [anon_sym_SQUOTE] = ACTIONS(1445), + [sym_integer_literal] = ACTIONS(1443), + [sym_real_literal] = ACTIONS(1447), + [anon_sym_DQUOTE] = ACTIONS(1449), + [sym_verbatim_string_literal] = ACTIONS(1447), + [aux_sym_preproc_if_token1] = ACTIONS(1451), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + [sym_interpolation_regular_start] = ACTIONS(1453), + [sym_interpolation_verbatim_start] = ACTIONS(1455), + [sym_interpolation_raw_start] = ACTIONS(1457), + [sym_raw_string_start] = ACTIONS(1459), }, [1184] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2420), - [sym__name] = STATE(5887), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2197), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(2908), - [sym_non_lvalue_expression] = STATE(3066), - [sym_lvalue_expression] = STATE(3552), - [sym__expression_statement_expression] = STATE(3006), - [sym_assignment_expression] = STATE(3020), - [sym_binary_expression] = STATE(3006), - [sym_postfix_unary_expression] = STATE(3020), - [sym_prefix_unary_expression] = STATE(3020), - [sym__pointer_indirection_expression] = STATE(2423), - [sym_query_expression] = STATE(3006), - [sym_from_clause] = STATE(6181), - [sym_conditional_expression] = STATE(3006), - [sym_conditional_access_expression] = STATE(3006), - [sym_as_expression] = STATE(3006), - [sym_is_expression] = STATE(3006), - [sym_is_pattern_expression] = STATE(3006), - [sym_cast_expression] = STATE(3006), - [sym_checked_expression] = STATE(3006), - [sym_invocation_expression] = STATE(3020), - [sym_switch_expression] = STATE(3006), - [sym_await_expression] = STATE(3020), - [sym_throw_expression] = STATE(3006), - [sym_element_access_expression] = STATE(2423), - [sym_interpolated_string_expression] = STATE(3006), - [sym_member_access_expression] = STATE(2423), - [sym_object_creation_expression] = STATE(3020), - [sym_parenthesized_expression] = STATE(3020), - [sym__parenthesized_lvalue_expression] = STATE(2423), - [sym_lambda_expression] = STATE(3006), - [sym__lambda_expression_init] = STATE(7493), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3006), - [sym_anonymous_method_expression] = STATE(3006), - [sym_anonymous_object_creation_expression] = STATE(3006), - [sym_implicit_array_creation_expression] = STATE(3006), - [sym_implicit_object_creation_expression] = STATE(3006), - [sym_implicit_stackalloc_expression] = STATE(3006), - [sym_initializer_expression] = STATE(3006), - [sym_default_expression] = STATE(3006), - [sym_with_expression] = STATE(3006), - [sym_sizeof_expression] = STATE(3006), - [sym_typeof_expression] = STATE(3006), - [sym_makeref_expression] = STATE(3006), - [sym_ref_expression] = STATE(3006), - [sym_reftype_expression] = STATE(3006), - [sym_refvalue_expression] = STATE(3006), - [sym_stackalloc_expression] = STATE(3006), - [sym_range_expression] = STATE(3006), - [sym_tuple_expression] = STATE(2423), - [sym_literal] = STATE(3006), - [sym_character_literal] = STATE(3011), - [sym_string_literal] = STATE(3011), - [sym_raw_string_literal] = STATE(3011), - [sym_boolean_literal] = STATE(3011), - [sym_identifier] = STATE(2267), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3006), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2816), + [sym__name] = STATE(5860), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2321), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(4520), + [sym_non_lvalue_expression] = STATE(3495), + [sym_lvalue_expression] = STATE(3349), + [sym__expression_statement_expression] = STATE(3462), + [sym_assignment_expression] = STATE(3497), + [sym_binary_expression] = STATE(3462), + [sym_postfix_unary_expression] = STATE(3497), + [sym_prefix_unary_expression] = STATE(3497), + [sym__pointer_indirection_expression] = STATE(2815), + [sym_query_expression] = STATE(3462), + [sym_from_clause] = STATE(6152), + [sym_conditional_expression] = STATE(3462), + [sym_conditional_access_expression] = STATE(3462), + [sym_as_expression] = STATE(3462), + [sym_is_expression] = STATE(3462), + [sym_is_pattern_expression] = STATE(3462), + [sym_cast_expression] = STATE(3462), + [sym_checked_expression] = STATE(3462), + [sym_invocation_expression] = STATE(3497), + [sym_switch_expression] = STATE(3462), + [sym_await_expression] = STATE(3497), + [sym_throw_expression] = STATE(3462), + [sym_element_access_expression] = STATE(2815), + [sym_interpolated_string_expression] = STATE(3462), + [sym_member_access_expression] = STATE(2815), + [sym_object_creation_expression] = STATE(3497), + [sym_parenthesized_expression] = STATE(3497), + [sym__parenthesized_lvalue_expression] = STATE(2815), + [sym_lambda_expression] = STATE(3462), + [sym__lambda_expression_init] = STATE(7658), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3462), + [sym_anonymous_method_expression] = STATE(3462), + [sym_anonymous_object_creation_expression] = STATE(3462), + [sym_implicit_array_creation_expression] = STATE(3462), + [sym_implicit_object_creation_expression] = STATE(3462), + [sym_implicit_stackalloc_expression] = STATE(3462), + [sym_initializer_expression] = STATE(3462), + [sym_default_expression] = STATE(3462), + [sym_with_expression] = STATE(3462), + [sym_sizeof_expression] = STATE(3462), + [sym_typeof_expression] = STATE(3462), + [sym_makeref_expression] = STATE(3462), + [sym_ref_expression] = STATE(3462), + [sym_reftype_expression] = STATE(3462), + [sym_refvalue_expression] = STATE(3462), + [sym_stackalloc_expression] = STATE(3462), + [sym_range_expression] = STATE(3462), + [sym_tuple_expression] = STATE(2815), + [sym_literal] = STATE(3462), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3462), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(1184), [sym_preproc_endregion] = STATE(1184), [sym_preproc_line] = STATE(1184), @@ -241955,47 +241841,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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3440), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3367), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1241), - [anon_sym_LPAREN] = ACTIONS(2031), - [anon_sym_ref] = ACTIONS(2033), - [anon_sym_LBRACE] = ACTIONS(1247), - [anon_sym_delegate] = ACTIONS(1249), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1305), + [anon_sym_LPAREN] = ACTIONS(1639), + [anon_sym_ref] = ACTIONS(1641), + [anon_sym_LBRACE] = ACTIONS(1311), + [anon_sym_delegate] = ACTIONS(1313), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1251), + [anon_sym_new] = ACTIONS(1583), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1253), - [anon_sym_BANG] = ACTIONS(2037), - [anon_sym_TILDE] = ACTIONS(2037), - [anon_sym_PLUS_PLUS] = ACTIONS(2037), - [anon_sym_DASH_DASH] = ACTIONS(2037), - [anon_sym_true] = ACTIONS(1259), - [anon_sym_false] = ACTIONS(1259), - [anon_sym_PLUS] = ACTIONS(2035), - [anon_sym_DASH] = ACTIONS(2035), - [anon_sym_STAR] = ACTIONS(2039), - [anon_sym_CARET] = ACTIONS(2037), - [anon_sym_AMP] = ACTIONS(2037), - [anon_sym_this] = ACTIONS(1263), + [anon_sym_checked] = ACTIONS(1317), + [anon_sym_BANG] = ACTIONS(1645), + [anon_sym_TILDE] = ACTIONS(1645), + [anon_sym_PLUS_PLUS] = ACTIONS(1645), + [anon_sym_DASH_DASH] = ACTIONS(1645), + [anon_sym_true] = ACTIONS(77), + [anon_sym_false] = ACTIONS(77), + [anon_sym_PLUS] = ACTIONS(1643), + [anon_sym_DASH] = ACTIONS(1643), + [anon_sym_STAR] = ACTIONS(1647), + [anon_sym_CARET] = ACTIONS(1645), + [anon_sym_AMP] = ACTIONS(1645), + [anon_sym_this] = ACTIONS(1321), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1265), + [anon_sym_base] = ACTIONS(1323), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1267), - [anon_sym_unchecked] = ACTIONS(1253), + [sym_predefined_type] = ACTIONS(91), + [anon_sym_unchecked] = ACTIONS(1317), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1269), - [anon_sym_throw] = ACTIONS(2041), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(1649), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2043), - [anon_sym_DOT_DOT] = ACTIONS(2045), + [anon_sym_await] = ACTIONS(1651), + [anon_sym_DOT_DOT] = ACTIONS(1653), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -242008,19 +241894,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1277), - [anon_sym_sizeof] = ACTIONS(1279), - [anon_sym_typeof] = ACTIONS(1281), - [anon_sym___makeref] = ACTIONS(1283), - [anon_sym___reftype] = ACTIONS(1285), - [anon_sym___refvalue] = ACTIONS(1287), - [sym_null_literal] = ACTIONS(1289), - [anon_sym_SQUOTE] = ACTIONS(1291), - [sym_integer_literal] = ACTIONS(1289), - [sym_real_literal] = ACTIONS(1293), - [anon_sym_DQUOTE] = ACTIONS(1295), - [sym_verbatim_string_literal] = ACTIONS(1293), - [aux_sym_preproc_if_token1] = ACTIONS(1297), + [anon_sym_stackalloc] = ACTIONS(1331), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(1333), + [anon_sym___reftype] = ACTIONS(1335), + [anon_sym___refvalue] = ACTIONS(1337), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_literal] = ACTIONS(143), + [anon_sym_DQUOTE] = ACTIONS(145), + [sym_verbatim_string_literal] = ACTIONS(143), + [aux_sym_preproc_if_token1] = ACTIONS(1339), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -242031,90 +241917,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1299), - [sym_interpolation_verbatim_start] = ACTIONS(1301), - [sym_interpolation_raw_start] = ACTIONS(1303), - [sym_raw_string_start] = ACTIONS(1305), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [sym_interpolation_raw_start] = ACTIONS(155), + [sym_raw_string_start] = ACTIONS(157), }, [1185] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2420), - [sym__name] = STATE(5887), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2197), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(5123), - [sym_non_lvalue_expression] = STATE(3066), - [sym_lvalue_expression] = STATE(3552), - [sym__expression_statement_expression] = STATE(3006), - [sym_assignment_expression] = STATE(3020), - [sym_binary_expression] = STATE(3006), - [sym_postfix_unary_expression] = STATE(3020), - [sym_prefix_unary_expression] = STATE(3020), - [sym__pointer_indirection_expression] = STATE(2423), - [sym_query_expression] = STATE(3006), - [sym_from_clause] = STATE(6181), - [sym_conditional_expression] = STATE(3006), - [sym_conditional_access_expression] = STATE(3006), - [sym_as_expression] = STATE(3006), - [sym_is_expression] = STATE(3006), - [sym_is_pattern_expression] = STATE(3006), - [sym_cast_expression] = STATE(3006), - [sym_checked_expression] = STATE(3006), - [sym_invocation_expression] = STATE(3020), - [sym_switch_expression] = STATE(3006), - [sym_await_expression] = STATE(3020), - [sym_throw_expression] = STATE(3006), - [sym_element_access_expression] = STATE(2423), - [sym_interpolated_string_expression] = STATE(3006), - [sym_member_access_expression] = STATE(2423), - [sym_object_creation_expression] = STATE(3020), - [sym_parenthesized_expression] = STATE(3020), - [sym__parenthesized_lvalue_expression] = STATE(2423), - [sym_lambda_expression] = STATE(3006), - [sym__lambda_expression_init] = STATE(7493), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3006), - [sym_anonymous_method_expression] = STATE(3006), - [sym_anonymous_object_creation_expression] = STATE(3006), - [sym_implicit_array_creation_expression] = STATE(3006), - [sym_implicit_object_creation_expression] = STATE(3006), - [sym_implicit_stackalloc_expression] = STATE(3006), - [sym_initializer_expression] = STATE(3006), - [sym_default_expression] = STATE(3006), - [sym_with_expression] = STATE(3006), - [sym_sizeof_expression] = STATE(3006), - [sym_typeof_expression] = STATE(3006), - [sym_makeref_expression] = STATE(3006), - [sym_ref_expression] = STATE(3006), - [sym_reftype_expression] = STATE(3006), - [sym_refvalue_expression] = STATE(3006), - [sym_stackalloc_expression] = STATE(3006), - [sym_range_expression] = STATE(3006), - [sym_tuple_expression] = STATE(2423), - [sym_literal] = STATE(3006), - [sym_character_literal] = STATE(3011), - [sym_string_literal] = STATE(3011), - [sym_raw_string_literal] = STATE(3011), - [sym_boolean_literal] = STATE(3011), - [sym_identifier] = STATE(2267), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3006), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2816), + [sym__name] = STATE(5860), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2321), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(4521), + [sym_non_lvalue_expression] = STATE(3495), + [sym_lvalue_expression] = STATE(3349), + [sym__expression_statement_expression] = STATE(3462), + [sym_assignment_expression] = STATE(3497), + [sym_binary_expression] = STATE(3462), + [sym_postfix_unary_expression] = STATE(3497), + [sym_prefix_unary_expression] = STATE(3497), + [sym__pointer_indirection_expression] = STATE(2815), + [sym_query_expression] = STATE(3462), + [sym_from_clause] = STATE(6152), + [sym_conditional_expression] = STATE(3462), + [sym_conditional_access_expression] = STATE(3462), + [sym_as_expression] = STATE(3462), + [sym_is_expression] = STATE(3462), + [sym_is_pattern_expression] = STATE(3462), + [sym_cast_expression] = STATE(3462), + [sym_checked_expression] = STATE(3462), + [sym_invocation_expression] = STATE(3497), + [sym_switch_expression] = STATE(3462), + [sym_await_expression] = STATE(3497), + [sym_throw_expression] = STATE(3462), + [sym_element_access_expression] = STATE(2815), + [sym_interpolated_string_expression] = STATE(3462), + [sym_member_access_expression] = STATE(2815), + [sym_object_creation_expression] = STATE(3497), + [sym_parenthesized_expression] = STATE(3497), + [sym__parenthesized_lvalue_expression] = STATE(2815), + [sym_lambda_expression] = STATE(3462), + [sym__lambda_expression_init] = STATE(7658), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3462), + [sym_anonymous_method_expression] = STATE(3462), + [sym_anonymous_object_creation_expression] = STATE(3462), + [sym_implicit_array_creation_expression] = STATE(3462), + [sym_implicit_object_creation_expression] = STATE(3462), + [sym_implicit_stackalloc_expression] = STATE(3462), + [sym_initializer_expression] = STATE(3462), + [sym_default_expression] = STATE(3462), + [sym_with_expression] = STATE(3462), + [sym_sizeof_expression] = STATE(3462), + [sym_typeof_expression] = STATE(3462), + [sym_makeref_expression] = STATE(3462), + [sym_ref_expression] = STATE(3462), + [sym_reftype_expression] = STATE(3462), + [sym_refvalue_expression] = STATE(3462), + [sym_stackalloc_expression] = STATE(3462), + [sym_range_expression] = STATE(3462), + [sym_tuple_expression] = STATE(2815), + [sym_literal] = STATE(3462), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3462), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(1185), [sym_preproc_endregion] = STATE(1185), [sym_preproc_line] = STATE(1185), @@ -242124,47 +242010,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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3440), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3367), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1241), - [anon_sym_LPAREN] = ACTIONS(2031), - [anon_sym_ref] = ACTIONS(2033), - [anon_sym_LBRACE] = ACTIONS(1247), - [anon_sym_delegate] = ACTIONS(1249), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1305), + [anon_sym_LPAREN] = ACTIONS(1639), + [anon_sym_ref] = ACTIONS(1641), + [anon_sym_LBRACE] = ACTIONS(1311), + [anon_sym_delegate] = ACTIONS(1313), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1251), + [anon_sym_new] = ACTIONS(1583), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1253), - [anon_sym_BANG] = ACTIONS(2037), - [anon_sym_TILDE] = ACTIONS(2037), - [anon_sym_PLUS_PLUS] = ACTIONS(2037), - [anon_sym_DASH_DASH] = ACTIONS(2037), - [anon_sym_true] = ACTIONS(1259), - [anon_sym_false] = ACTIONS(1259), - [anon_sym_PLUS] = ACTIONS(2035), - [anon_sym_DASH] = ACTIONS(2035), - [anon_sym_STAR] = ACTIONS(2039), - [anon_sym_CARET] = ACTIONS(2037), - [anon_sym_AMP] = ACTIONS(2037), - [anon_sym_this] = ACTIONS(1263), + [anon_sym_checked] = ACTIONS(1317), + [anon_sym_BANG] = ACTIONS(1645), + [anon_sym_TILDE] = ACTIONS(1645), + [anon_sym_PLUS_PLUS] = ACTIONS(1645), + [anon_sym_DASH_DASH] = ACTIONS(1645), + [anon_sym_true] = ACTIONS(77), + [anon_sym_false] = ACTIONS(77), + [anon_sym_PLUS] = ACTIONS(1643), + [anon_sym_DASH] = ACTIONS(1643), + [anon_sym_STAR] = ACTIONS(1647), + [anon_sym_CARET] = ACTIONS(1645), + [anon_sym_AMP] = ACTIONS(1645), + [anon_sym_this] = ACTIONS(1321), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1265), + [anon_sym_base] = ACTIONS(1323), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1267), - [anon_sym_unchecked] = ACTIONS(1253), + [sym_predefined_type] = ACTIONS(91), + [anon_sym_unchecked] = ACTIONS(1317), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1269), - [anon_sym_throw] = ACTIONS(2041), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(1649), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2043), - [anon_sym_DOT_DOT] = ACTIONS(2045), + [anon_sym_await] = ACTIONS(1651), + [anon_sym_DOT_DOT] = ACTIONS(1653), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -242177,19 +242063,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1277), - [anon_sym_sizeof] = ACTIONS(1279), - [anon_sym_typeof] = ACTIONS(1281), - [anon_sym___makeref] = ACTIONS(1283), - [anon_sym___reftype] = ACTIONS(1285), - [anon_sym___refvalue] = ACTIONS(1287), - [sym_null_literal] = ACTIONS(1289), - [anon_sym_SQUOTE] = ACTIONS(1291), - [sym_integer_literal] = ACTIONS(1289), - [sym_real_literal] = ACTIONS(1293), - [anon_sym_DQUOTE] = ACTIONS(1295), - [sym_verbatim_string_literal] = ACTIONS(1293), - [aux_sym_preproc_if_token1] = ACTIONS(1297), + [anon_sym_stackalloc] = ACTIONS(1331), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(1333), + [anon_sym___reftype] = ACTIONS(1335), + [anon_sym___refvalue] = ACTIONS(1337), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_literal] = ACTIONS(143), + [anon_sym_DQUOTE] = ACTIONS(145), + [sym_verbatim_string_literal] = ACTIONS(143), + [aux_sym_preproc_if_token1] = ACTIONS(1339), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -242200,90 +242086,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1299), - [sym_interpolation_verbatim_start] = ACTIONS(1301), - [sym_interpolation_raw_start] = ACTIONS(1303), - [sym_raw_string_start] = ACTIONS(1305), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [sym_interpolation_raw_start] = ACTIONS(155), + [sym_raw_string_start] = ACTIONS(157), }, [1186] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2610), - [sym__name] = STATE(5871), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2319), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(4475), - [sym_non_lvalue_expression] = STATE(3277), - [sym_lvalue_expression] = STATE(3280), - [sym__expression_statement_expression] = STATE(3228), - [sym_assignment_expression] = STATE(3289), - [sym_binary_expression] = STATE(3228), - [sym_postfix_unary_expression] = STATE(3289), - [sym_prefix_unary_expression] = STATE(3289), - [sym__pointer_indirection_expression] = STATE(2609), - [sym_query_expression] = STATE(3228), - [sym_from_clause] = STATE(6177), - [sym_conditional_expression] = STATE(3228), - [sym_conditional_access_expression] = STATE(3228), - [sym_as_expression] = STATE(3228), - [sym_is_expression] = STATE(3228), - [sym_is_pattern_expression] = STATE(3228), - [sym_cast_expression] = STATE(3228), - [sym_checked_expression] = STATE(3228), - [sym_invocation_expression] = STATE(3289), - [sym_switch_expression] = STATE(3228), - [sym_await_expression] = STATE(3289), - [sym_throw_expression] = STATE(3228), - [sym_element_access_expression] = STATE(2609), - [sym_interpolated_string_expression] = STATE(3228), - [sym_member_access_expression] = STATE(2609), - [sym_object_creation_expression] = STATE(3289), - [sym_parenthesized_expression] = STATE(3289), - [sym__parenthesized_lvalue_expression] = STATE(2609), - [sym_lambda_expression] = STATE(3228), - [sym__lambda_expression_init] = STATE(7636), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3228), - [sym_anonymous_method_expression] = STATE(3228), - [sym_anonymous_object_creation_expression] = STATE(3228), - [sym_implicit_array_creation_expression] = STATE(3228), - [sym_implicit_object_creation_expression] = STATE(3228), - [sym_implicit_stackalloc_expression] = STATE(3228), - [sym_initializer_expression] = STATE(3228), - [sym_default_expression] = STATE(3228), - [sym_with_expression] = STATE(3228), - [sym_sizeof_expression] = STATE(3228), - [sym_typeof_expression] = STATE(3228), - [sym_makeref_expression] = STATE(3228), - [sym_ref_expression] = STATE(3228), - [sym_reftype_expression] = STATE(3228), - [sym_refvalue_expression] = STATE(3228), - [sym_stackalloc_expression] = STATE(3228), - [sym_range_expression] = STATE(3228), - [sym_tuple_expression] = STATE(2609), - [sym_literal] = STATE(3228), - [sym_character_literal] = STATE(3278), - [sym_string_literal] = STATE(3278), - [sym_raw_string_literal] = STATE(3278), - [sym_boolean_literal] = STATE(3278), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3228), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2816), + [sym__name] = STATE(5860), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2321), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(4729), + [sym_non_lvalue_expression] = STATE(3495), + [sym_lvalue_expression] = STATE(3349), + [sym__expression_statement_expression] = STATE(3462), + [sym_assignment_expression] = STATE(3497), + [sym_binary_expression] = STATE(3462), + [sym_postfix_unary_expression] = STATE(3497), + [sym_prefix_unary_expression] = STATE(3497), + [sym__pointer_indirection_expression] = STATE(2815), + [sym_query_expression] = STATE(3462), + [sym_from_clause] = STATE(6152), + [sym_conditional_expression] = STATE(3462), + [sym_conditional_access_expression] = STATE(3462), + [sym_as_expression] = STATE(3462), + [sym_is_expression] = STATE(3462), + [sym_is_pattern_expression] = STATE(3462), + [sym_cast_expression] = STATE(3462), + [sym_checked_expression] = STATE(3462), + [sym_invocation_expression] = STATE(3497), + [sym_switch_expression] = STATE(3462), + [sym_await_expression] = STATE(3497), + [sym_throw_expression] = STATE(3462), + [sym_element_access_expression] = STATE(2815), + [sym_interpolated_string_expression] = STATE(3462), + [sym_member_access_expression] = STATE(2815), + [sym_object_creation_expression] = STATE(3497), + [sym_parenthesized_expression] = STATE(3497), + [sym__parenthesized_lvalue_expression] = STATE(2815), + [sym_lambda_expression] = STATE(3462), + [sym__lambda_expression_init] = STATE(7658), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3462), + [sym_anonymous_method_expression] = STATE(3462), + [sym_anonymous_object_creation_expression] = STATE(3462), + [sym_implicit_array_creation_expression] = STATE(3462), + [sym_implicit_object_creation_expression] = STATE(3462), + [sym_implicit_stackalloc_expression] = STATE(3462), + [sym_initializer_expression] = STATE(3462), + [sym_default_expression] = STATE(3462), + [sym_with_expression] = STATE(3462), + [sym_sizeof_expression] = STATE(3462), + [sym_typeof_expression] = STATE(3462), + [sym_makeref_expression] = STATE(3462), + [sym_ref_expression] = STATE(3462), + [sym_reftype_expression] = STATE(3462), + [sym_refvalue_expression] = STATE(3462), + [sym_stackalloc_expression] = STATE(3462), + [sym_range_expression] = STATE(3462), + [sym_tuple_expression] = STATE(2815), + [sym_literal] = STATE(3462), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3462), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(1186), [sym_preproc_endregion] = STATE(1186), [sym_preproc_line] = STATE(1186), @@ -242293,47 +242179,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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3396), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3367), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1153), - [anon_sym_LPAREN] = ACTIONS(1559), - [anon_sym_ref] = ACTIONS(1561), - [anon_sym_LBRACE] = ACTIONS(1159), - [anon_sym_delegate] = ACTIONS(1161), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1305), + [anon_sym_LPAREN] = ACTIONS(1639), + [anon_sym_ref] = ACTIONS(1641), + [anon_sym_LBRACE] = ACTIONS(1311), + [anon_sym_delegate] = ACTIONS(1313), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1529), + [anon_sym_new] = ACTIONS(1583), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1167), - [anon_sym_BANG] = ACTIONS(1565), - [anon_sym_TILDE] = ACTIONS(1565), - [anon_sym_PLUS_PLUS] = ACTIONS(1565), - [anon_sym_DASH_DASH] = ACTIONS(1565), - [anon_sym_true] = ACTIONS(1173), - [anon_sym_false] = ACTIONS(1173), - [anon_sym_PLUS] = ACTIONS(1563), - [anon_sym_DASH] = ACTIONS(1563), - [anon_sym_STAR] = ACTIONS(1567), - [anon_sym_CARET] = ACTIONS(1565), - [anon_sym_AMP] = ACTIONS(1565), - [anon_sym_this] = ACTIONS(1177), + [anon_sym_checked] = ACTIONS(1317), + [anon_sym_BANG] = ACTIONS(1645), + [anon_sym_TILDE] = ACTIONS(1645), + [anon_sym_PLUS_PLUS] = ACTIONS(1645), + [anon_sym_DASH_DASH] = ACTIONS(1645), + [anon_sym_true] = ACTIONS(77), + [anon_sym_false] = ACTIONS(77), + [anon_sym_PLUS] = ACTIONS(1643), + [anon_sym_DASH] = ACTIONS(1643), + [anon_sym_STAR] = ACTIONS(1647), + [anon_sym_CARET] = ACTIONS(1645), + [anon_sym_AMP] = ACTIONS(1645), + [anon_sym_this] = ACTIONS(1321), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1179), + [anon_sym_base] = ACTIONS(1323), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1181), - [anon_sym_unchecked] = ACTIONS(1167), + [sym_predefined_type] = ACTIONS(91), + [anon_sym_unchecked] = ACTIONS(1317), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1183), - [anon_sym_throw] = ACTIONS(1569), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(1649), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1571), - [anon_sym_DOT_DOT] = ACTIONS(1573), + [anon_sym_await] = ACTIONS(1651), + [anon_sym_DOT_DOT] = ACTIONS(1653), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -242346,19 +242232,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1191), - [anon_sym_sizeof] = ACTIONS(1193), - [anon_sym_typeof] = ACTIONS(1195), - [anon_sym___makeref] = ACTIONS(1197), - [anon_sym___reftype] = ACTIONS(1199), - [anon_sym___refvalue] = ACTIONS(1201), - [sym_null_literal] = ACTIONS(1203), - [anon_sym_SQUOTE] = ACTIONS(1205), - [sym_integer_literal] = ACTIONS(1203), - [sym_real_literal] = ACTIONS(1207), - [anon_sym_DQUOTE] = ACTIONS(1209), - [sym_verbatim_string_literal] = ACTIONS(1207), - [aux_sym_preproc_if_token1] = ACTIONS(1211), + [anon_sym_stackalloc] = ACTIONS(1331), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(1333), + [anon_sym___reftype] = ACTIONS(1335), + [anon_sym___refvalue] = ACTIONS(1337), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_literal] = ACTIONS(143), + [anon_sym_DQUOTE] = ACTIONS(145), + [sym_verbatim_string_literal] = ACTIONS(143), + [aux_sym_preproc_if_token1] = ACTIONS(1339), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -242369,90 +242255,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1213), - [sym_interpolation_verbatim_start] = ACTIONS(1215), - [sym_interpolation_raw_start] = ACTIONS(1217), - [sym_raw_string_start] = ACTIONS(1219), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [sym_interpolation_raw_start] = ACTIONS(155), + [sym_raw_string_start] = ACTIONS(157), }, [1187] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2420), - [sym__name] = STATE(5887), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2197), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(5143), - [sym_non_lvalue_expression] = STATE(3066), - [sym_lvalue_expression] = STATE(3552), - [sym__expression_statement_expression] = STATE(3006), - [sym_assignment_expression] = STATE(3020), - [sym_binary_expression] = STATE(3006), - [sym_postfix_unary_expression] = STATE(3020), - [sym_prefix_unary_expression] = STATE(3020), - [sym__pointer_indirection_expression] = STATE(2423), - [sym_query_expression] = STATE(3006), - [sym_from_clause] = STATE(6181), - [sym_conditional_expression] = STATE(3006), - [sym_conditional_access_expression] = STATE(3006), - [sym_as_expression] = STATE(3006), - [sym_is_expression] = STATE(3006), - [sym_is_pattern_expression] = STATE(3006), - [sym_cast_expression] = STATE(3006), - [sym_checked_expression] = STATE(3006), - [sym_invocation_expression] = STATE(3020), - [sym_switch_expression] = STATE(3006), - [sym_await_expression] = STATE(3020), - [sym_throw_expression] = STATE(3006), - [sym_element_access_expression] = STATE(2423), - [sym_interpolated_string_expression] = STATE(3006), - [sym_member_access_expression] = STATE(2423), - [sym_object_creation_expression] = STATE(3020), - [sym_parenthesized_expression] = STATE(3020), - [sym__parenthesized_lvalue_expression] = STATE(2423), - [sym_lambda_expression] = STATE(3006), - [sym__lambda_expression_init] = STATE(7493), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3006), - [sym_anonymous_method_expression] = STATE(3006), - [sym_anonymous_object_creation_expression] = STATE(3006), - [sym_implicit_array_creation_expression] = STATE(3006), - [sym_implicit_object_creation_expression] = STATE(3006), - [sym_implicit_stackalloc_expression] = STATE(3006), - [sym_initializer_expression] = STATE(3006), - [sym_default_expression] = STATE(3006), - [sym_with_expression] = STATE(3006), - [sym_sizeof_expression] = STATE(3006), - [sym_typeof_expression] = STATE(3006), - [sym_makeref_expression] = STATE(3006), - [sym_ref_expression] = STATE(3006), - [sym_reftype_expression] = STATE(3006), - [sym_refvalue_expression] = STATE(3006), - [sym_stackalloc_expression] = STATE(3006), - [sym_range_expression] = STATE(3006), - [sym_tuple_expression] = STATE(2423), - [sym_literal] = STATE(3006), - [sym_character_literal] = STATE(3011), - [sym_string_literal] = STATE(3011), - [sym_raw_string_literal] = STATE(3011), - [sym_boolean_literal] = STATE(3011), - [sym_identifier] = STATE(2267), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3006), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2816), + [sym__name] = STATE(5860), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2321), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(4522), + [sym_non_lvalue_expression] = STATE(3495), + [sym_lvalue_expression] = STATE(3349), + [sym__expression_statement_expression] = STATE(3462), + [sym_assignment_expression] = STATE(3497), + [sym_binary_expression] = STATE(3462), + [sym_postfix_unary_expression] = STATE(3497), + [sym_prefix_unary_expression] = STATE(3497), + [sym__pointer_indirection_expression] = STATE(2815), + [sym_query_expression] = STATE(3462), + [sym_from_clause] = STATE(6152), + [sym_conditional_expression] = STATE(3462), + [sym_conditional_access_expression] = STATE(3462), + [sym_as_expression] = STATE(3462), + [sym_is_expression] = STATE(3462), + [sym_is_pattern_expression] = STATE(3462), + [sym_cast_expression] = STATE(3462), + [sym_checked_expression] = STATE(3462), + [sym_invocation_expression] = STATE(3497), + [sym_switch_expression] = STATE(3462), + [sym_await_expression] = STATE(3497), + [sym_throw_expression] = STATE(3462), + [sym_element_access_expression] = STATE(2815), + [sym_interpolated_string_expression] = STATE(3462), + [sym_member_access_expression] = STATE(2815), + [sym_object_creation_expression] = STATE(3497), + [sym_parenthesized_expression] = STATE(3497), + [sym__parenthesized_lvalue_expression] = STATE(2815), + [sym_lambda_expression] = STATE(3462), + [sym__lambda_expression_init] = STATE(7658), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3462), + [sym_anonymous_method_expression] = STATE(3462), + [sym_anonymous_object_creation_expression] = STATE(3462), + [sym_implicit_array_creation_expression] = STATE(3462), + [sym_implicit_object_creation_expression] = STATE(3462), + [sym_implicit_stackalloc_expression] = STATE(3462), + [sym_initializer_expression] = STATE(3462), + [sym_default_expression] = STATE(3462), + [sym_with_expression] = STATE(3462), + [sym_sizeof_expression] = STATE(3462), + [sym_typeof_expression] = STATE(3462), + [sym_makeref_expression] = STATE(3462), + [sym_ref_expression] = STATE(3462), + [sym_reftype_expression] = STATE(3462), + [sym_refvalue_expression] = STATE(3462), + [sym_stackalloc_expression] = STATE(3462), + [sym_range_expression] = STATE(3462), + [sym_tuple_expression] = STATE(2815), + [sym_literal] = STATE(3462), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3462), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(1187), [sym_preproc_endregion] = STATE(1187), [sym_preproc_line] = STATE(1187), @@ -242462,47 +242348,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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3440), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3367), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1241), - [anon_sym_LPAREN] = ACTIONS(2031), - [anon_sym_ref] = ACTIONS(2033), - [anon_sym_LBRACE] = ACTIONS(1247), - [anon_sym_delegate] = ACTIONS(1249), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1305), + [anon_sym_LPAREN] = ACTIONS(1639), + [anon_sym_ref] = ACTIONS(1641), + [anon_sym_LBRACE] = ACTIONS(1311), + [anon_sym_delegate] = ACTIONS(1313), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1251), + [anon_sym_new] = ACTIONS(1583), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1253), - [anon_sym_BANG] = ACTIONS(2037), - [anon_sym_TILDE] = ACTIONS(2037), - [anon_sym_PLUS_PLUS] = ACTIONS(2037), - [anon_sym_DASH_DASH] = ACTIONS(2037), - [anon_sym_true] = ACTIONS(1259), - [anon_sym_false] = ACTIONS(1259), - [anon_sym_PLUS] = ACTIONS(2035), - [anon_sym_DASH] = ACTIONS(2035), - [anon_sym_STAR] = ACTIONS(2039), - [anon_sym_CARET] = ACTIONS(2037), - [anon_sym_AMP] = ACTIONS(2037), - [anon_sym_this] = ACTIONS(1263), + [anon_sym_checked] = ACTIONS(1317), + [anon_sym_BANG] = ACTIONS(1645), + [anon_sym_TILDE] = ACTIONS(1645), + [anon_sym_PLUS_PLUS] = ACTIONS(1645), + [anon_sym_DASH_DASH] = ACTIONS(1645), + [anon_sym_true] = ACTIONS(77), + [anon_sym_false] = ACTIONS(77), + [anon_sym_PLUS] = ACTIONS(1643), + [anon_sym_DASH] = ACTIONS(1643), + [anon_sym_STAR] = ACTIONS(1647), + [anon_sym_CARET] = ACTIONS(1645), + [anon_sym_AMP] = ACTIONS(1645), + [anon_sym_this] = ACTIONS(1321), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1265), + [anon_sym_base] = ACTIONS(1323), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1267), - [anon_sym_unchecked] = ACTIONS(1253), + [sym_predefined_type] = ACTIONS(91), + [anon_sym_unchecked] = ACTIONS(1317), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1269), - [anon_sym_throw] = ACTIONS(2041), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(1649), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2043), - [anon_sym_DOT_DOT] = ACTIONS(2045), + [anon_sym_await] = ACTIONS(1651), + [anon_sym_DOT_DOT] = ACTIONS(1653), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -242515,19 +242401,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1277), - [anon_sym_sizeof] = ACTIONS(1279), - [anon_sym_typeof] = ACTIONS(1281), - [anon_sym___makeref] = ACTIONS(1283), - [anon_sym___reftype] = ACTIONS(1285), - [anon_sym___refvalue] = ACTIONS(1287), - [sym_null_literal] = ACTIONS(1289), - [anon_sym_SQUOTE] = ACTIONS(1291), - [sym_integer_literal] = ACTIONS(1289), - [sym_real_literal] = ACTIONS(1293), - [anon_sym_DQUOTE] = ACTIONS(1295), - [sym_verbatim_string_literal] = ACTIONS(1293), - [aux_sym_preproc_if_token1] = ACTIONS(1297), + [anon_sym_stackalloc] = ACTIONS(1331), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(1333), + [anon_sym___reftype] = ACTIONS(1335), + [anon_sym___refvalue] = ACTIONS(1337), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_literal] = ACTIONS(143), + [anon_sym_DQUOTE] = ACTIONS(145), + [sym_verbatim_string_literal] = ACTIONS(143), + [aux_sym_preproc_if_token1] = ACTIONS(1339), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -242538,90 +242424,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1299), - [sym_interpolation_verbatim_start] = ACTIONS(1301), - [sym_interpolation_raw_start] = ACTIONS(1303), - [sym_raw_string_start] = ACTIONS(1305), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [sym_interpolation_raw_start] = ACTIONS(155), + [sym_raw_string_start] = ACTIONS(157), }, [1188] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2420), - [sym__name] = STATE(5887), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2197), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(5280), - [sym_non_lvalue_expression] = STATE(3066), - [sym_lvalue_expression] = STATE(3552), - [sym__expression_statement_expression] = STATE(3006), - [sym_assignment_expression] = STATE(3020), - [sym_binary_expression] = STATE(3006), - [sym_postfix_unary_expression] = STATE(3020), - [sym_prefix_unary_expression] = STATE(3020), - [sym__pointer_indirection_expression] = STATE(2423), - [sym_query_expression] = STATE(3006), - [sym_from_clause] = STATE(6181), - [sym_conditional_expression] = STATE(3006), - [sym_conditional_access_expression] = STATE(3006), - [sym_as_expression] = STATE(3006), - [sym_is_expression] = STATE(3006), - [sym_is_pattern_expression] = STATE(3006), - [sym_cast_expression] = STATE(3006), - [sym_checked_expression] = STATE(3006), - [sym_invocation_expression] = STATE(3020), - [sym_switch_expression] = STATE(3006), - [sym_await_expression] = STATE(3020), - [sym_throw_expression] = STATE(3006), - [sym_element_access_expression] = STATE(2423), - [sym_interpolated_string_expression] = STATE(3006), - [sym_member_access_expression] = STATE(2423), - [sym_object_creation_expression] = STATE(3020), - [sym_parenthesized_expression] = STATE(3020), - [sym__parenthesized_lvalue_expression] = STATE(2423), - [sym_lambda_expression] = STATE(3006), - [sym__lambda_expression_init] = STATE(7493), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3006), - [sym_anonymous_method_expression] = STATE(3006), - [sym_anonymous_object_creation_expression] = STATE(3006), - [sym_implicit_array_creation_expression] = STATE(3006), - [sym_implicit_object_creation_expression] = STATE(3006), - [sym_implicit_stackalloc_expression] = STATE(3006), - [sym_initializer_expression] = STATE(3006), - [sym_default_expression] = STATE(3006), - [sym_with_expression] = STATE(3006), - [sym_sizeof_expression] = STATE(3006), - [sym_typeof_expression] = STATE(3006), - [sym_makeref_expression] = STATE(3006), - [sym_ref_expression] = STATE(3006), - [sym_reftype_expression] = STATE(3006), - [sym_refvalue_expression] = STATE(3006), - [sym_stackalloc_expression] = STATE(3006), - [sym_range_expression] = STATE(3006), - [sym_tuple_expression] = STATE(2423), - [sym_literal] = STATE(3006), - [sym_character_literal] = STATE(3011), - [sym_string_literal] = STATE(3011), - [sym_raw_string_literal] = STATE(3011), - [sym_boolean_literal] = STATE(3011), - [sym_identifier] = STATE(2267), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3006), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2816), + [sym__name] = STATE(5860), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2321), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(4523), + [sym_non_lvalue_expression] = STATE(3495), + [sym_lvalue_expression] = STATE(3349), + [sym__expression_statement_expression] = STATE(3462), + [sym_assignment_expression] = STATE(3497), + [sym_binary_expression] = STATE(3462), + [sym_postfix_unary_expression] = STATE(3497), + [sym_prefix_unary_expression] = STATE(3497), + [sym__pointer_indirection_expression] = STATE(2815), + [sym_query_expression] = STATE(3462), + [sym_from_clause] = STATE(6152), + [sym_conditional_expression] = STATE(3462), + [sym_conditional_access_expression] = STATE(3462), + [sym_as_expression] = STATE(3462), + [sym_is_expression] = STATE(3462), + [sym_is_pattern_expression] = STATE(3462), + [sym_cast_expression] = STATE(3462), + [sym_checked_expression] = STATE(3462), + [sym_invocation_expression] = STATE(3497), + [sym_switch_expression] = STATE(3462), + [sym_await_expression] = STATE(3497), + [sym_throw_expression] = STATE(3462), + [sym_element_access_expression] = STATE(2815), + [sym_interpolated_string_expression] = STATE(3462), + [sym_member_access_expression] = STATE(2815), + [sym_object_creation_expression] = STATE(3497), + [sym_parenthesized_expression] = STATE(3497), + [sym__parenthesized_lvalue_expression] = STATE(2815), + [sym_lambda_expression] = STATE(3462), + [sym__lambda_expression_init] = STATE(7658), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3462), + [sym_anonymous_method_expression] = STATE(3462), + [sym_anonymous_object_creation_expression] = STATE(3462), + [sym_implicit_array_creation_expression] = STATE(3462), + [sym_implicit_object_creation_expression] = STATE(3462), + [sym_implicit_stackalloc_expression] = STATE(3462), + [sym_initializer_expression] = STATE(3462), + [sym_default_expression] = STATE(3462), + [sym_with_expression] = STATE(3462), + [sym_sizeof_expression] = STATE(3462), + [sym_typeof_expression] = STATE(3462), + [sym_makeref_expression] = STATE(3462), + [sym_ref_expression] = STATE(3462), + [sym_reftype_expression] = STATE(3462), + [sym_refvalue_expression] = STATE(3462), + [sym_stackalloc_expression] = STATE(3462), + [sym_range_expression] = STATE(3462), + [sym_tuple_expression] = STATE(2815), + [sym_literal] = STATE(3462), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3462), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(1188), [sym_preproc_endregion] = STATE(1188), [sym_preproc_line] = STATE(1188), @@ -242631,47 +242517,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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3440), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3367), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1241), - [anon_sym_LPAREN] = ACTIONS(2031), - [anon_sym_ref] = ACTIONS(2033), - [anon_sym_LBRACE] = ACTIONS(1247), - [anon_sym_delegate] = ACTIONS(1249), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1305), + [anon_sym_LPAREN] = ACTIONS(1639), + [anon_sym_ref] = ACTIONS(1641), + [anon_sym_LBRACE] = ACTIONS(1311), + [anon_sym_delegate] = ACTIONS(1313), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1251), + [anon_sym_new] = ACTIONS(1583), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1253), - [anon_sym_BANG] = ACTIONS(2037), - [anon_sym_TILDE] = ACTIONS(2037), - [anon_sym_PLUS_PLUS] = ACTIONS(2037), - [anon_sym_DASH_DASH] = ACTIONS(2037), - [anon_sym_true] = ACTIONS(1259), - [anon_sym_false] = ACTIONS(1259), - [anon_sym_PLUS] = ACTIONS(2035), - [anon_sym_DASH] = ACTIONS(2035), - [anon_sym_STAR] = ACTIONS(2039), - [anon_sym_CARET] = ACTIONS(2037), - [anon_sym_AMP] = ACTIONS(2037), - [anon_sym_this] = ACTIONS(1263), + [anon_sym_checked] = ACTIONS(1317), + [anon_sym_BANG] = ACTIONS(1645), + [anon_sym_TILDE] = ACTIONS(1645), + [anon_sym_PLUS_PLUS] = ACTIONS(1645), + [anon_sym_DASH_DASH] = ACTIONS(1645), + [anon_sym_true] = ACTIONS(77), + [anon_sym_false] = ACTIONS(77), + [anon_sym_PLUS] = ACTIONS(1643), + [anon_sym_DASH] = ACTIONS(1643), + [anon_sym_STAR] = ACTIONS(1647), + [anon_sym_CARET] = ACTIONS(1645), + [anon_sym_AMP] = ACTIONS(1645), + [anon_sym_this] = ACTIONS(1321), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1265), + [anon_sym_base] = ACTIONS(1323), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1267), - [anon_sym_unchecked] = ACTIONS(1253), + [sym_predefined_type] = ACTIONS(91), + [anon_sym_unchecked] = ACTIONS(1317), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1269), - [anon_sym_throw] = ACTIONS(2041), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(1649), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2043), - [anon_sym_DOT_DOT] = ACTIONS(2045), + [anon_sym_await] = ACTIONS(1651), + [anon_sym_DOT_DOT] = ACTIONS(1653), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -242684,19 +242570,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1277), - [anon_sym_sizeof] = ACTIONS(1279), - [anon_sym_typeof] = ACTIONS(1281), - [anon_sym___makeref] = ACTIONS(1283), - [anon_sym___reftype] = ACTIONS(1285), - [anon_sym___refvalue] = ACTIONS(1287), - [sym_null_literal] = ACTIONS(1289), - [anon_sym_SQUOTE] = ACTIONS(1291), - [sym_integer_literal] = ACTIONS(1289), - [sym_real_literal] = ACTIONS(1293), - [anon_sym_DQUOTE] = ACTIONS(1295), - [sym_verbatim_string_literal] = ACTIONS(1293), - [aux_sym_preproc_if_token1] = ACTIONS(1297), + [anon_sym_stackalloc] = ACTIONS(1331), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(1333), + [anon_sym___reftype] = ACTIONS(1335), + [anon_sym___refvalue] = ACTIONS(1337), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_literal] = ACTIONS(143), + [anon_sym_DQUOTE] = ACTIONS(145), + [sym_verbatim_string_literal] = ACTIONS(143), + [aux_sym_preproc_if_token1] = ACTIONS(1339), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -242707,90 +242593,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1299), - [sym_interpolation_verbatim_start] = ACTIONS(1301), - [sym_interpolation_raw_start] = ACTIONS(1303), - [sym_raw_string_start] = ACTIONS(1305), + [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(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2420), - [sym__name] = STATE(5887), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2197), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(5286), - [sym_non_lvalue_expression] = STATE(3066), - [sym_lvalue_expression] = STATE(3552), - [sym__expression_statement_expression] = STATE(3006), - [sym_assignment_expression] = STATE(3020), - [sym_binary_expression] = STATE(3006), - [sym_postfix_unary_expression] = STATE(3020), - [sym_prefix_unary_expression] = STATE(3020), - [sym__pointer_indirection_expression] = STATE(2423), - [sym_query_expression] = STATE(3006), - [sym_from_clause] = STATE(6181), - [sym_conditional_expression] = STATE(3006), - [sym_conditional_access_expression] = STATE(3006), - [sym_as_expression] = STATE(3006), - [sym_is_expression] = STATE(3006), - [sym_is_pattern_expression] = STATE(3006), - [sym_cast_expression] = STATE(3006), - [sym_checked_expression] = STATE(3006), - [sym_invocation_expression] = STATE(3020), - [sym_switch_expression] = STATE(3006), - [sym_await_expression] = STATE(3020), - [sym_throw_expression] = STATE(3006), - [sym_element_access_expression] = STATE(2423), - [sym_interpolated_string_expression] = STATE(3006), - [sym_member_access_expression] = STATE(2423), - [sym_object_creation_expression] = STATE(3020), - [sym_parenthesized_expression] = STATE(3020), - [sym__parenthesized_lvalue_expression] = STATE(2423), - [sym_lambda_expression] = STATE(3006), - [sym__lambda_expression_init] = STATE(7493), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3006), - [sym_anonymous_method_expression] = STATE(3006), - [sym_anonymous_object_creation_expression] = STATE(3006), - [sym_implicit_array_creation_expression] = STATE(3006), - [sym_implicit_object_creation_expression] = STATE(3006), - [sym_implicit_stackalloc_expression] = STATE(3006), - [sym_initializer_expression] = STATE(3006), - [sym_default_expression] = STATE(3006), - [sym_with_expression] = STATE(3006), - [sym_sizeof_expression] = STATE(3006), - [sym_typeof_expression] = STATE(3006), - [sym_makeref_expression] = STATE(3006), - [sym_ref_expression] = STATE(3006), - [sym_reftype_expression] = STATE(3006), - [sym_refvalue_expression] = STATE(3006), - [sym_stackalloc_expression] = STATE(3006), - [sym_range_expression] = STATE(3006), - [sym_tuple_expression] = STATE(2423), - [sym_literal] = STATE(3006), - [sym_character_literal] = STATE(3011), - [sym_string_literal] = STATE(3011), - [sym_raw_string_literal] = STATE(3011), - [sym_boolean_literal] = STATE(3011), - [sym_identifier] = STATE(2267), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3006), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2816), + [sym__name] = STATE(5860), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2321), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(4524), + [sym_non_lvalue_expression] = STATE(3495), + [sym_lvalue_expression] = STATE(3349), + [sym__expression_statement_expression] = STATE(3462), + [sym_assignment_expression] = STATE(3497), + [sym_binary_expression] = STATE(3462), + [sym_postfix_unary_expression] = STATE(3497), + [sym_prefix_unary_expression] = STATE(3497), + [sym__pointer_indirection_expression] = STATE(2815), + [sym_query_expression] = STATE(3462), + [sym_from_clause] = STATE(6152), + [sym_conditional_expression] = STATE(3462), + [sym_conditional_access_expression] = STATE(3462), + [sym_as_expression] = STATE(3462), + [sym_is_expression] = STATE(3462), + [sym_is_pattern_expression] = STATE(3462), + [sym_cast_expression] = STATE(3462), + [sym_checked_expression] = STATE(3462), + [sym_invocation_expression] = STATE(3497), + [sym_switch_expression] = STATE(3462), + [sym_await_expression] = STATE(3497), + [sym_throw_expression] = STATE(3462), + [sym_element_access_expression] = STATE(2815), + [sym_interpolated_string_expression] = STATE(3462), + [sym_member_access_expression] = STATE(2815), + [sym_object_creation_expression] = STATE(3497), + [sym_parenthesized_expression] = STATE(3497), + [sym__parenthesized_lvalue_expression] = STATE(2815), + [sym_lambda_expression] = STATE(3462), + [sym__lambda_expression_init] = STATE(7658), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3462), + [sym_anonymous_method_expression] = STATE(3462), + [sym_anonymous_object_creation_expression] = STATE(3462), + [sym_implicit_array_creation_expression] = STATE(3462), + [sym_implicit_object_creation_expression] = STATE(3462), + [sym_implicit_stackalloc_expression] = STATE(3462), + [sym_initializer_expression] = STATE(3462), + [sym_default_expression] = STATE(3462), + [sym_with_expression] = STATE(3462), + [sym_sizeof_expression] = STATE(3462), + [sym_typeof_expression] = STATE(3462), + [sym_makeref_expression] = STATE(3462), + [sym_ref_expression] = STATE(3462), + [sym_reftype_expression] = STATE(3462), + [sym_refvalue_expression] = STATE(3462), + [sym_stackalloc_expression] = STATE(3462), + [sym_range_expression] = STATE(3462), + [sym_tuple_expression] = STATE(2815), + [sym_literal] = STATE(3462), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3462), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(1189), [sym_preproc_endregion] = STATE(1189), [sym_preproc_line] = STATE(1189), @@ -242800,47 +242686,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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3440), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3367), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1241), - [anon_sym_LPAREN] = ACTIONS(2031), - [anon_sym_ref] = ACTIONS(2033), - [anon_sym_LBRACE] = ACTIONS(1247), - [anon_sym_delegate] = ACTIONS(1249), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1305), + [anon_sym_LPAREN] = ACTIONS(1639), + [anon_sym_ref] = ACTIONS(1641), + [anon_sym_LBRACE] = ACTIONS(1311), + [anon_sym_delegate] = ACTIONS(1313), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1251), + [anon_sym_new] = ACTIONS(1583), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1253), - [anon_sym_BANG] = ACTIONS(2037), - [anon_sym_TILDE] = ACTIONS(2037), - [anon_sym_PLUS_PLUS] = ACTIONS(2037), - [anon_sym_DASH_DASH] = ACTIONS(2037), - [anon_sym_true] = ACTIONS(1259), - [anon_sym_false] = ACTIONS(1259), - [anon_sym_PLUS] = ACTIONS(2035), - [anon_sym_DASH] = ACTIONS(2035), - [anon_sym_STAR] = ACTIONS(2039), - [anon_sym_CARET] = ACTIONS(2037), - [anon_sym_AMP] = ACTIONS(2037), - [anon_sym_this] = ACTIONS(1263), + [anon_sym_checked] = ACTIONS(1317), + [anon_sym_BANG] = ACTIONS(1645), + [anon_sym_TILDE] = ACTIONS(1645), + [anon_sym_PLUS_PLUS] = ACTIONS(1645), + [anon_sym_DASH_DASH] = ACTIONS(1645), + [anon_sym_true] = ACTIONS(77), + [anon_sym_false] = ACTIONS(77), + [anon_sym_PLUS] = ACTIONS(1643), + [anon_sym_DASH] = ACTIONS(1643), + [anon_sym_STAR] = ACTIONS(1647), + [anon_sym_CARET] = ACTIONS(1645), + [anon_sym_AMP] = ACTIONS(1645), + [anon_sym_this] = ACTIONS(1321), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1265), + [anon_sym_base] = ACTIONS(1323), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1267), - [anon_sym_unchecked] = ACTIONS(1253), + [sym_predefined_type] = ACTIONS(91), + [anon_sym_unchecked] = ACTIONS(1317), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1269), - [anon_sym_throw] = ACTIONS(2041), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(1649), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2043), - [anon_sym_DOT_DOT] = ACTIONS(2045), + [anon_sym_await] = ACTIONS(1651), + [anon_sym_DOT_DOT] = ACTIONS(1653), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -242853,19 +242739,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1277), - [anon_sym_sizeof] = ACTIONS(1279), - [anon_sym_typeof] = ACTIONS(1281), - [anon_sym___makeref] = ACTIONS(1283), - [anon_sym___reftype] = ACTIONS(1285), - [anon_sym___refvalue] = ACTIONS(1287), - [sym_null_literal] = ACTIONS(1289), - [anon_sym_SQUOTE] = ACTIONS(1291), - [sym_integer_literal] = ACTIONS(1289), - [sym_real_literal] = ACTIONS(1293), - [anon_sym_DQUOTE] = ACTIONS(1295), - [sym_verbatim_string_literal] = ACTIONS(1293), - [aux_sym_preproc_if_token1] = ACTIONS(1297), + [anon_sym_stackalloc] = ACTIONS(1331), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(1333), + [anon_sym___reftype] = ACTIONS(1335), + [anon_sym___refvalue] = ACTIONS(1337), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_literal] = ACTIONS(143), + [anon_sym_DQUOTE] = ACTIONS(145), + [sym_verbatim_string_literal] = ACTIONS(143), + [aux_sym_preproc_if_token1] = ACTIONS(1339), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -242876,90 +242762,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1299), - [sym_interpolation_verbatim_start] = ACTIONS(1301), - [sym_interpolation_raw_start] = ACTIONS(1303), - [sym_raw_string_start] = ACTIONS(1305), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [sym_interpolation_raw_start] = ACTIONS(155), + [sym_raw_string_start] = ACTIONS(157), }, [1190] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2420), - [sym__name] = STATE(5887), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2197), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(5220), - [sym_non_lvalue_expression] = STATE(3066), - [sym_lvalue_expression] = STATE(3552), - [sym__expression_statement_expression] = STATE(3006), - [sym_assignment_expression] = STATE(3020), - [sym_binary_expression] = STATE(3006), - [sym_postfix_unary_expression] = STATE(3020), - [sym_prefix_unary_expression] = STATE(3020), - [sym__pointer_indirection_expression] = STATE(2423), - [sym_query_expression] = STATE(3006), - [sym_from_clause] = STATE(6181), - [sym_conditional_expression] = STATE(3006), - [sym_conditional_access_expression] = STATE(3006), - [sym_as_expression] = STATE(3006), - [sym_is_expression] = STATE(3006), - [sym_is_pattern_expression] = STATE(3006), - [sym_cast_expression] = STATE(3006), - [sym_checked_expression] = STATE(3006), - [sym_invocation_expression] = STATE(3020), - [sym_switch_expression] = STATE(3006), - [sym_await_expression] = STATE(3020), - [sym_throw_expression] = STATE(3006), - [sym_element_access_expression] = STATE(2423), - [sym_interpolated_string_expression] = STATE(3006), - [sym_member_access_expression] = STATE(2423), - [sym_object_creation_expression] = STATE(3020), - [sym_parenthesized_expression] = STATE(3020), - [sym__parenthesized_lvalue_expression] = STATE(2423), - [sym_lambda_expression] = STATE(3006), - [sym__lambda_expression_init] = STATE(7493), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3006), - [sym_anonymous_method_expression] = STATE(3006), - [sym_anonymous_object_creation_expression] = STATE(3006), - [sym_implicit_array_creation_expression] = STATE(3006), - [sym_implicit_object_creation_expression] = STATE(3006), - [sym_implicit_stackalloc_expression] = STATE(3006), - [sym_initializer_expression] = STATE(3006), - [sym_default_expression] = STATE(3006), - [sym_with_expression] = STATE(3006), - [sym_sizeof_expression] = STATE(3006), - [sym_typeof_expression] = STATE(3006), - [sym_makeref_expression] = STATE(3006), - [sym_ref_expression] = STATE(3006), - [sym_reftype_expression] = STATE(3006), - [sym_refvalue_expression] = STATE(3006), - [sym_stackalloc_expression] = STATE(3006), - [sym_range_expression] = STATE(3006), - [sym_tuple_expression] = STATE(2423), - [sym_literal] = STATE(3006), - [sym_character_literal] = STATE(3011), - [sym_string_literal] = STATE(3011), - [sym_raw_string_literal] = STATE(3011), - [sym_boolean_literal] = STATE(3011), - [sym_identifier] = STATE(2267), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3006), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2816), + [sym__name] = STATE(5860), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2321), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(4525), + [sym_non_lvalue_expression] = STATE(3495), + [sym_lvalue_expression] = STATE(3349), + [sym__expression_statement_expression] = STATE(3462), + [sym_assignment_expression] = STATE(3497), + [sym_binary_expression] = STATE(3462), + [sym_postfix_unary_expression] = STATE(3497), + [sym_prefix_unary_expression] = STATE(3497), + [sym__pointer_indirection_expression] = STATE(2815), + [sym_query_expression] = STATE(3462), + [sym_from_clause] = STATE(6152), + [sym_conditional_expression] = STATE(3462), + [sym_conditional_access_expression] = STATE(3462), + [sym_as_expression] = STATE(3462), + [sym_is_expression] = STATE(3462), + [sym_is_pattern_expression] = STATE(3462), + [sym_cast_expression] = STATE(3462), + [sym_checked_expression] = STATE(3462), + [sym_invocation_expression] = STATE(3497), + [sym_switch_expression] = STATE(3462), + [sym_await_expression] = STATE(3497), + [sym_throw_expression] = STATE(3462), + [sym_element_access_expression] = STATE(2815), + [sym_interpolated_string_expression] = STATE(3462), + [sym_member_access_expression] = STATE(2815), + [sym_object_creation_expression] = STATE(3497), + [sym_parenthesized_expression] = STATE(3497), + [sym__parenthesized_lvalue_expression] = STATE(2815), + [sym_lambda_expression] = STATE(3462), + [sym__lambda_expression_init] = STATE(7658), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3462), + [sym_anonymous_method_expression] = STATE(3462), + [sym_anonymous_object_creation_expression] = STATE(3462), + [sym_implicit_array_creation_expression] = STATE(3462), + [sym_implicit_object_creation_expression] = STATE(3462), + [sym_implicit_stackalloc_expression] = STATE(3462), + [sym_initializer_expression] = STATE(3462), + [sym_default_expression] = STATE(3462), + [sym_with_expression] = STATE(3462), + [sym_sizeof_expression] = STATE(3462), + [sym_typeof_expression] = STATE(3462), + [sym_makeref_expression] = STATE(3462), + [sym_ref_expression] = STATE(3462), + [sym_reftype_expression] = STATE(3462), + [sym_refvalue_expression] = STATE(3462), + [sym_stackalloc_expression] = STATE(3462), + [sym_range_expression] = STATE(3462), + [sym_tuple_expression] = STATE(2815), + [sym_literal] = STATE(3462), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3462), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(1190), [sym_preproc_endregion] = STATE(1190), [sym_preproc_line] = STATE(1190), @@ -242969,47 +242855,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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3440), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3367), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1241), - [anon_sym_LPAREN] = ACTIONS(2031), - [anon_sym_ref] = ACTIONS(2033), - [anon_sym_LBRACE] = ACTIONS(1247), - [anon_sym_delegate] = ACTIONS(1249), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1305), + [anon_sym_LPAREN] = ACTIONS(1639), + [anon_sym_ref] = ACTIONS(1641), + [anon_sym_LBRACE] = ACTIONS(1311), + [anon_sym_delegate] = ACTIONS(1313), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1251), + [anon_sym_new] = ACTIONS(1583), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1253), - [anon_sym_BANG] = ACTIONS(2037), - [anon_sym_TILDE] = ACTIONS(2037), - [anon_sym_PLUS_PLUS] = ACTIONS(2037), - [anon_sym_DASH_DASH] = ACTIONS(2037), - [anon_sym_true] = ACTIONS(1259), - [anon_sym_false] = ACTIONS(1259), - [anon_sym_PLUS] = ACTIONS(2035), - [anon_sym_DASH] = ACTIONS(2035), - [anon_sym_STAR] = ACTIONS(2039), - [anon_sym_CARET] = ACTIONS(2037), - [anon_sym_AMP] = ACTIONS(2037), - [anon_sym_this] = ACTIONS(1263), + [anon_sym_checked] = ACTIONS(1317), + [anon_sym_BANG] = ACTIONS(1645), + [anon_sym_TILDE] = ACTIONS(1645), + [anon_sym_PLUS_PLUS] = ACTIONS(1645), + [anon_sym_DASH_DASH] = ACTIONS(1645), + [anon_sym_true] = ACTIONS(77), + [anon_sym_false] = ACTIONS(77), + [anon_sym_PLUS] = ACTIONS(1643), + [anon_sym_DASH] = ACTIONS(1643), + [anon_sym_STAR] = ACTIONS(1647), + [anon_sym_CARET] = ACTIONS(1645), + [anon_sym_AMP] = ACTIONS(1645), + [anon_sym_this] = ACTIONS(1321), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1265), + [anon_sym_base] = ACTIONS(1323), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1267), - [anon_sym_unchecked] = ACTIONS(1253), + [sym_predefined_type] = ACTIONS(91), + [anon_sym_unchecked] = ACTIONS(1317), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1269), - [anon_sym_throw] = ACTIONS(2041), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(1649), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2043), - [anon_sym_DOT_DOT] = ACTIONS(2045), + [anon_sym_await] = ACTIONS(1651), + [anon_sym_DOT_DOT] = ACTIONS(1653), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -243022,19 +242908,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1277), - [anon_sym_sizeof] = ACTIONS(1279), - [anon_sym_typeof] = ACTIONS(1281), - [anon_sym___makeref] = ACTIONS(1283), - [anon_sym___reftype] = ACTIONS(1285), - [anon_sym___refvalue] = ACTIONS(1287), - [sym_null_literal] = ACTIONS(1289), - [anon_sym_SQUOTE] = ACTIONS(1291), - [sym_integer_literal] = ACTIONS(1289), - [sym_real_literal] = ACTIONS(1293), - [anon_sym_DQUOTE] = ACTIONS(1295), - [sym_verbatim_string_literal] = ACTIONS(1293), - [aux_sym_preproc_if_token1] = ACTIONS(1297), + [anon_sym_stackalloc] = ACTIONS(1331), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(1333), + [anon_sym___reftype] = ACTIONS(1335), + [anon_sym___refvalue] = ACTIONS(1337), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_literal] = ACTIONS(143), + [anon_sym_DQUOTE] = ACTIONS(145), + [sym_verbatim_string_literal] = ACTIONS(143), + [aux_sym_preproc_if_token1] = ACTIONS(1339), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -243045,90 +242931,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1299), - [sym_interpolation_verbatim_start] = ACTIONS(1301), - [sym_interpolation_raw_start] = ACTIONS(1303), - [sym_raw_string_start] = ACTIONS(1305), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [sym_interpolation_raw_start] = ACTIONS(155), + [sym_raw_string_start] = ACTIONS(157), }, [1191] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2420), - [sym__name] = STATE(5887), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2197), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(5294), - [sym_non_lvalue_expression] = STATE(3066), - [sym_lvalue_expression] = STATE(3552), - [sym__expression_statement_expression] = STATE(3006), - [sym_assignment_expression] = STATE(3020), - [sym_binary_expression] = STATE(3006), - [sym_postfix_unary_expression] = STATE(3020), - [sym_prefix_unary_expression] = STATE(3020), - [sym__pointer_indirection_expression] = STATE(2423), - [sym_query_expression] = STATE(3006), - [sym_from_clause] = STATE(6181), - [sym_conditional_expression] = STATE(3006), - [sym_conditional_access_expression] = STATE(3006), - [sym_as_expression] = STATE(3006), - [sym_is_expression] = STATE(3006), - [sym_is_pattern_expression] = STATE(3006), - [sym_cast_expression] = STATE(3006), - [sym_checked_expression] = STATE(3006), - [sym_invocation_expression] = STATE(3020), - [sym_switch_expression] = STATE(3006), - [sym_await_expression] = STATE(3020), - [sym_throw_expression] = STATE(3006), - [sym_element_access_expression] = STATE(2423), - [sym_interpolated_string_expression] = STATE(3006), - [sym_member_access_expression] = STATE(2423), - [sym_object_creation_expression] = STATE(3020), - [sym_parenthesized_expression] = STATE(3020), - [sym__parenthesized_lvalue_expression] = STATE(2423), - [sym_lambda_expression] = STATE(3006), - [sym__lambda_expression_init] = STATE(7493), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3006), - [sym_anonymous_method_expression] = STATE(3006), - [sym_anonymous_object_creation_expression] = STATE(3006), - [sym_implicit_array_creation_expression] = STATE(3006), - [sym_implicit_object_creation_expression] = STATE(3006), - [sym_implicit_stackalloc_expression] = STATE(3006), - [sym_initializer_expression] = STATE(3006), - [sym_default_expression] = STATE(3006), - [sym_with_expression] = STATE(3006), - [sym_sizeof_expression] = STATE(3006), - [sym_typeof_expression] = STATE(3006), - [sym_makeref_expression] = STATE(3006), - [sym_ref_expression] = STATE(3006), - [sym_reftype_expression] = STATE(3006), - [sym_refvalue_expression] = STATE(3006), - [sym_stackalloc_expression] = STATE(3006), - [sym_range_expression] = STATE(3006), - [sym_tuple_expression] = STATE(2423), - [sym_literal] = STATE(3006), - [sym_character_literal] = STATE(3011), - [sym_string_literal] = STATE(3011), - [sym_raw_string_literal] = STATE(3011), - [sym_boolean_literal] = STATE(3011), - [sym_identifier] = STATE(2267), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3006), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2816), + [sym__name] = STATE(5860), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2321), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(4526), + [sym_non_lvalue_expression] = STATE(3495), + [sym_lvalue_expression] = STATE(3349), + [sym__expression_statement_expression] = STATE(3462), + [sym_assignment_expression] = STATE(3497), + [sym_binary_expression] = STATE(3462), + [sym_postfix_unary_expression] = STATE(3497), + [sym_prefix_unary_expression] = STATE(3497), + [sym__pointer_indirection_expression] = STATE(2815), + [sym_query_expression] = STATE(3462), + [sym_from_clause] = STATE(6152), + [sym_conditional_expression] = STATE(3462), + [sym_conditional_access_expression] = STATE(3462), + [sym_as_expression] = STATE(3462), + [sym_is_expression] = STATE(3462), + [sym_is_pattern_expression] = STATE(3462), + [sym_cast_expression] = STATE(3462), + [sym_checked_expression] = STATE(3462), + [sym_invocation_expression] = STATE(3497), + [sym_switch_expression] = STATE(3462), + [sym_await_expression] = STATE(3497), + [sym_throw_expression] = STATE(3462), + [sym_element_access_expression] = STATE(2815), + [sym_interpolated_string_expression] = STATE(3462), + [sym_member_access_expression] = STATE(2815), + [sym_object_creation_expression] = STATE(3497), + [sym_parenthesized_expression] = STATE(3497), + [sym__parenthesized_lvalue_expression] = STATE(2815), + [sym_lambda_expression] = STATE(3462), + [sym__lambda_expression_init] = STATE(7658), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3462), + [sym_anonymous_method_expression] = STATE(3462), + [sym_anonymous_object_creation_expression] = STATE(3462), + [sym_implicit_array_creation_expression] = STATE(3462), + [sym_implicit_object_creation_expression] = STATE(3462), + [sym_implicit_stackalloc_expression] = STATE(3462), + [sym_initializer_expression] = STATE(3462), + [sym_default_expression] = STATE(3462), + [sym_with_expression] = STATE(3462), + [sym_sizeof_expression] = STATE(3462), + [sym_typeof_expression] = STATE(3462), + [sym_makeref_expression] = STATE(3462), + [sym_ref_expression] = STATE(3462), + [sym_reftype_expression] = STATE(3462), + [sym_refvalue_expression] = STATE(3462), + [sym_stackalloc_expression] = STATE(3462), + [sym_range_expression] = STATE(3462), + [sym_tuple_expression] = STATE(2815), + [sym_literal] = STATE(3462), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3462), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(1191), [sym_preproc_endregion] = STATE(1191), [sym_preproc_line] = STATE(1191), @@ -243138,47 +243024,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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3440), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3367), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1241), - [anon_sym_LPAREN] = ACTIONS(2031), - [anon_sym_ref] = ACTIONS(2033), - [anon_sym_LBRACE] = ACTIONS(1247), - [anon_sym_delegate] = ACTIONS(1249), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1305), + [anon_sym_LPAREN] = ACTIONS(1639), + [anon_sym_ref] = ACTIONS(1641), + [anon_sym_LBRACE] = ACTIONS(1311), + [anon_sym_delegate] = ACTIONS(1313), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1251), + [anon_sym_new] = ACTIONS(1583), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1253), - [anon_sym_BANG] = ACTIONS(2037), - [anon_sym_TILDE] = ACTIONS(2037), - [anon_sym_PLUS_PLUS] = ACTIONS(2037), - [anon_sym_DASH_DASH] = ACTIONS(2037), - [anon_sym_true] = ACTIONS(1259), - [anon_sym_false] = ACTIONS(1259), - [anon_sym_PLUS] = ACTIONS(2035), - [anon_sym_DASH] = ACTIONS(2035), - [anon_sym_STAR] = ACTIONS(2039), - [anon_sym_CARET] = ACTIONS(2037), - [anon_sym_AMP] = ACTIONS(2037), - [anon_sym_this] = ACTIONS(1263), + [anon_sym_checked] = ACTIONS(1317), + [anon_sym_BANG] = ACTIONS(1645), + [anon_sym_TILDE] = ACTIONS(1645), + [anon_sym_PLUS_PLUS] = ACTIONS(1645), + [anon_sym_DASH_DASH] = ACTIONS(1645), + [anon_sym_true] = ACTIONS(77), + [anon_sym_false] = ACTIONS(77), + [anon_sym_PLUS] = ACTIONS(1643), + [anon_sym_DASH] = ACTIONS(1643), + [anon_sym_STAR] = ACTIONS(1647), + [anon_sym_CARET] = ACTIONS(1645), + [anon_sym_AMP] = ACTIONS(1645), + [anon_sym_this] = ACTIONS(1321), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1265), + [anon_sym_base] = ACTIONS(1323), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1267), - [anon_sym_unchecked] = ACTIONS(1253), + [sym_predefined_type] = ACTIONS(91), + [anon_sym_unchecked] = ACTIONS(1317), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1269), - [anon_sym_throw] = ACTIONS(2041), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(1649), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2043), - [anon_sym_DOT_DOT] = ACTIONS(2045), + [anon_sym_await] = ACTIONS(1651), + [anon_sym_DOT_DOT] = ACTIONS(1653), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -243191,19 +243077,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1277), - [anon_sym_sizeof] = ACTIONS(1279), - [anon_sym_typeof] = ACTIONS(1281), - [anon_sym___makeref] = ACTIONS(1283), - [anon_sym___reftype] = ACTIONS(1285), - [anon_sym___refvalue] = ACTIONS(1287), - [sym_null_literal] = ACTIONS(1289), - [anon_sym_SQUOTE] = ACTIONS(1291), - [sym_integer_literal] = ACTIONS(1289), - [sym_real_literal] = ACTIONS(1293), - [anon_sym_DQUOTE] = ACTIONS(1295), - [sym_verbatim_string_literal] = ACTIONS(1293), - [aux_sym_preproc_if_token1] = ACTIONS(1297), + [anon_sym_stackalloc] = ACTIONS(1331), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(1333), + [anon_sym___reftype] = ACTIONS(1335), + [anon_sym___refvalue] = ACTIONS(1337), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_literal] = ACTIONS(143), + [anon_sym_DQUOTE] = ACTIONS(145), + [sym_verbatim_string_literal] = ACTIONS(143), + [aux_sym_preproc_if_token1] = ACTIONS(1339), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -243214,90 +243100,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1299), - [sym_interpolation_verbatim_start] = ACTIONS(1301), - [sym_interpolation_raw_start] = ACTIONS(1303), - [sym_raw_string_start] = ACTIONS(1305), + [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(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2420), - [sym__name] = STATE(5887), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2197), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(5297), - [sym_non_lvalue_expression] = STATE(3066), - [sym_lvalue_expression] = STATE(3552), - [sym__expression_statement_expression] = STATE(3006), - [sym_assignment_expression] = STATE(3020), - [sym_binary_expression] = STATE(3006), - [sym_postfix_unary_expression] = STATE(3020), - [sym_prefix_unary_expression] = STATE(3020), - [sym__pointer_indirection_expression] = STATE(2423), - [sym_query_expression] = STATE(3006), - [sym_from_clause] = STATE(6181), - [sym_conditional_expression] = STATE(3006), - [sym_conditional_access_expression] = STATE(3006), - [sym_as_expression] = STATE(3006), - [sym_is_expression] = STATE(3006), - [sym_is_pattern_expression] = STATE(3006), - [sym_cast_expression] = STATE(3006), - [sym_checked_expression] = STATE(3006), - [sym_invocation_expression] = STATE(3020), - [sym_switch_expression] = STATE(3006), - [sym_await_expression] = STATE(3020), - [sym_throw_expression] = STATE(3006), - [sym_element_access_expression] = STATE(2423), - [sym_interpolated_string_expression] = STATE(3006), - [sym_member_access_expression] = STATE(2423), - [sym_object_creation_expression] = STATE(3020), - [sym_parenthesized_expression] = STATE(3020), - [sym__parenthesized_lvalue_expression] = STATE(2423), - [sym_lambda_expression] = STATE(3006), - [sym__lambda_expression_init] = STATE(7493), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3006), - [sym_anonymous_method_expression] = STATE(3006), - [sym_anonymous_object_creation_expression] = STATE(3006), - [sym_implicit_array_creation_expression] = STATE(3006), - [sym_implicit_object_creation_expression] = STATE(3006), - [sym_implicit_stackalloc_expression] = STATE(3006), - [sym_initializer_expression] = STATE(3006), - [sym_default_expression] = STATE(3006), - [sym_with_expression] = STATE(3006), - [sym_sizeof_expression] = STATE(3006), - [sym_typeof_expression] = STATE(3006), - [sym_makeref_expression] = STATE(3006), - [sym_ref_expression] = STATE(3006), - [sym_reftype_expression] = STATE(3006), - [sym_refvalue_expression] = STATE(3006), - [sym_stackalloc_expression] = STATE(3006), - [sym_range_expression] = STATE(3006), - [sym_tuple_expression] = STATE(2423), - [sym_literal] = STATE(3006), - [sym_character_literal] = STATE(3011), - [sym_string_literal] = STATE(3011), - [sym_raw_string_literal] = STATE(3011), - [sym_boolean_literal] = STATE(3011), - [sym_identifier] = STATE(2267), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3006), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2816), + [sym__name] = STATE(5860), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2321), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(4527), + [sym_non_lvalue_expression] = STATE(3495), + [sym_lvalue_expression] = STATE(3349), + [sym__expression_statement_expression] = STATE(3462), + [sym_assignment_expression] = STATE(3497), + [sym_binary_expression] = STATE(3462), + [sym_postfix_unary_expression] = STATE(3497), + [sym_prefix_unary_expression] = STATE(3497), + [sym__pointer_indirection_expression] = STATE(2815), + [sym_query_expression] = STATE(3462), + [sym_from_clause] = STATE(6152), + [sym_conditional_expression] = STATE(3462), + [sym_conditional_access_expression] = STATE(3462), + [sym_as_expression] = STATE(3462), + [sym_is_expression] = STATE(3462), + [sym_is_pattern_expression] = STATE(3462), + [sym_cast_expression] = STATE(3462), + [sym_checked_expression] = STATE(3462), + [sym_invocation_expression] = STATE(3497), + [sym_switch_expression] = STATE(3462), + [sym_await_expression] = STATE(3497), + [sym_throw_expression] = STATE(3462), + [sym_element_access_expression] = STATE(2815), + [sym_interpolated_string_expression] = STATE(3462), + [sym_member_access_expression] = STATE(2815), + [sym_object_creation_expression] = STATE(3497), + [sym_parenthesized_expression] = STATE(3497), + [sym__parenthesized_lvalue_expression] = STATE(2815), + [sym_lambda_expression] = STATE(3462), + [sym__lambda_expression_init] = STATE(7658), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3462), + [sym_anonymous_method_expression] = STATE(3462), + [sym_anonymous_object_creation_expression] = STATE(3462), + [sym_implicit_array_creation_expression] = STATE(3462), + [sym_implicit_object_creation_expression] = STATE(3462), + [sym_implicit_stackalloc_expression] = STATE(3462), + [sym_initializer_expression] = STATE(3462), + [sym_default_expression] = STATE(3462), + [sym_with_expression] = STATE(3462), + [sym_sizeof_expression] = STATE(3462), + [sym_typeof_expression] = STATE(3462), + [sym_makeref_expression] = STATE(3462), + [sym_ref_expression] = STATE(3462), + [sym_reftype_expression] = STATE(3462), + [sym_refvalue_expression] = STATE(3462), + [sym_stackalloc_expression] = STATE(3462), + [sym_range_expression] = STATE(3462), + [sym_tuple_expression] = STATE(2815), + [sym_literal] = STATE(3462), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3462), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(1192), [sym_preproc_endregion] = STATE(1192), [sym_preproc_line] = STATE(1192), @@ -243307,47 +243193,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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3440), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3367), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1241), - [anon_sym_LPAREN] = ACTIONS(2031), - [anon_sym_ref] = ACTIONS(2033), - [anon_sym_LBRACE] = ACTIONS(1247), - [anon_sym_delegate] = ACTIONS(1249), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1305), + [anon_sym_LPAREN] = ACTIONS(1639), + [anon_sym_ref] = ACTIONS(1641), + [anon_sym_LBRACE] = ACTIONS(1311), + [anon_sym_delegate] = ACTIONS(1313), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1251), + [anon_sym_new] = ACTIONS(1583), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1253), - [anon_sym_BANG] = ACTIONS(2037), - [anon_sym_TILDE] = ACTIONS(2037), - [anon_sym_PLUS_PLUS] = ACTIONS(2037), - [anon_sym_DASH_DASH] = ACTIONS(2037), - [anon_sym_true] = ACTIONS(1259), - [anon_sym_false] = ACTIONS(1259), - [anon_sym_PLUS] = ACTIONS(2035), - [anon_sym_DASH] = ACTIONS(2035), - [anon_sym_STAR] = ACTIONS(2039), - [anon_sym_CARET] = ACTIONS(2037), - [anon_sym_AMP] = ACTIONS(2037), - [anon_sym_this] = ACTIONS(1263), + [anon_sym_checked] = ACTIONS(1317), + [anon_sym_BANG] = ACTIONS(1645), + [anon_sym_TILDE] = ACTIONS(1645), + [anon_sym_PLUS_PLUS] = ACTIONS(1645), + [anon_sym_DASH_DASH] = ACTIONS(1645), + [anon_sym_true] = ACTIONS(77), + [anon_sym_false] = ACTIONS(77), + [anon_sym_PLUS] = ACTIONS(1643), + [anon_sym_DASH] = ACTIONS(1643), + [anon_sym_STAR] = ACTIONS(1647), + [anon_sym_CARET] = ACTIONS(1645), + [anon_sym_AMP] = ACTIONS(1645), + [anon_sym_this] = ACTIONS(1321), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1265), + [anon_sym_base] = ACTIONS(1323), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1267), - [anon_sym_unchecked] = ACTIONS(1253), + [sym_predefined_type] = ACTIONS(91), + [anon_sym_unchecked] = ACTIONS(1317), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1269), - [anon_sym_throw] = ACTIONS(2041), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(1649), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2043), - [anon_sym_DOT_DOT] = ACTIONS(2045), + [anon_sym_await] = ACTIONS(1651), + [anon_sym_DOT_DOT] = ACTIONS(1653), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -243360,19 +243246,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1277), - [anon_sym_sizeof] = ACTIONS(1279), - [anon_sym_typeof] = ACTIONS(1281), - [anon_sym___makeref] = ACTIONS(1283), - [anon_sym___reftype] = ACTIONS(1285), - [anon_sym___refvalue] = ACTIONS(1287), - [sym_null_literal] = ACTIONS(1289), - [anon_sym_SQUOTE] = ACTIONS(1291), - [sym_integer_literal] = ACTIONS(1289), - [sym_real_literal] = ACTIONS(1293), - [anon_sym_DQUOTE] = ACTIONS(1295), - [sym_verbatim_string_literal] = ACTIONS(1293), - [aux_sym_preproc_if_token1] = ACTIONS(1297), + [anon_sym_stackalloc] = ACTIONS(1331), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(1333), + [anon_sym___reftype] = ACTIONS(1335), + [anon_sym___refvalue] = ACTIONS(1337), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_literal] = ACTIONS(143), + [anon_sym_DQUOTE] = ACTIONS(145), + [sym_verbatim_string_literal] = ACTIONS(143), + [aux_sym_preproc_if_token1] = ACTIONS(1339), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -243383,90 +243269,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1299), - [sym_interpolation_verbatim_start] = ACTIONS(1301), - [sym_interpolation_raw_start] = ACTIONS(1303), - [sym_raw_string_start] = ACTIONS(1305), + [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(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2420), - [sym__name] = STATE(5887), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2197), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(5301), - [sym_non_lvalue_expression] = STATE(3066), - [sym_lvalue_expression] = STATE(3552), - [sym__expression_statement_expression] = STATE(3006), - [sym_assignment_expression] = STATE(3020), - [sym_binary_expression] = STATE(3006), - [sym_postfix_unary_expression] = STATE(3020), - [sym_prefix_unary_expression] = STATE(3020), - [sym__pointer_indirection_expression] = STATE(2423), - [sym_query_expression] = STATE(3006), - [sym_from_clause] = STATE(6181), - [sym_conditional_expression] = STATE(3006), - [sym_conditional_access_expression] = STATE(3006), - [sym_as_expression] = STATE(3006), - [sym_is_expression] = STATE(3006), - [sym_is_pattern_expression] = STATE(3006), - [sym_cast_expression] = STATE(3006), - [sym_checked_expression] = STATE(3006), - [sym_invocation_expression] = STATE(3020), - [sym_switch_expression] = STATE(3006), - [sym_await_expression] = STATE(3020), - [sym_throw_expression] = STATE(3006), - [sym_element_access_expression] = STATE(2423), - [sym_interpolated_string_expression] = STATE(3006), - [sym_member_access_expression] = STATE(2423), - [sym_object_creation_expression] = STATE(3020), - [sym_parenthesized_expression] = STATE(3020), - [sym__parenthesized_lvalue_expression] = STATE(2423), - [sym_lambda_expression] = STATE(3006), - [sym__lambda_expression_init] = STATE(7493), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3006), - [sym_anonymous_method_expression] = STATE(3006), - [sym_anonymous_object_creation_expression] = STATE(3006), - [sym_implicit_array_creation_expression] = STATE(3006), - [sym_implicit_object_creation_expression] = STATE(3006), - [sym_implicit_stackalloc_expression] = STATE(3006), - [sym_initializer_expression] = STATE(3006), - [sym_default_expression] = STATE(3006), - [sym_with_expression] = STATE(3006), - [sym_sizeof_expression] = STATE(3006), - [sym_typeof_expression] = STATE(3006), - [sym_makeref_expression] = STATE(3006), - [sym_ref_expression] = STATE(3006), - [sym_reftype_expression] = STATE(3006), - [sym_refvalue_expression] = STATE(3006), - [sym_stackalloc_expression] = STATE(3006), - [sym_range_expression] = STATE(3006), - [sym_tuple_expression] = STATE(2423), - [sym_literal] = STATE(3006), - [sym_character_literal] = STATE(3011), - [sym_string_literal] = STATE(3011), - [sym_raw_string_literal] = STATE(3011), - [sym_boolean_literal] = STATE(3011), - [sym_identifier] = STATE(2267), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3006), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2816), + [sym__name] = STATE(5860), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2321), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(4528), + [sym_non_lvalue_expression] = STATE(3495), + [sym_lvalue_expression] = STATE(3349), + [sym__expression_statement_expression] = STATE(3462), + [sym_assignment_expression] = STATE(3497), + [sym_binary_expression] = STATE(3462), + [sym_postfix_unary_expression] = STATE(3497), + [sym_prefix_unary_expression] = STATE(3497), + [sym__pointer_indirection_expression] = STATE(2815), + [sym_query_expression] = STATE(3462), + [sym_from_clause] = STATE(6152), + [sym_conditional_expression] = STATE(3462), + [sym_conditional_access_expression] = STATE(3462), + [sym_as_expression] = STATE(3462), + [sym_is_expression] = STATE(3462), + [sym_is_pattern_expression] = STATE(3462), + [sym_cast_expression] = STATE(3462), + [sym_checked_expression] = STATE(3462), + [sym_invocation_expression] = STATE(3497), + [sym_switch_expression] = STATE(3462), + [sym_await_expression] = STATE(3497), + [sym_throw_expression] = STATE(3462), + [sym_element_access_expression] = STATE(2815), + [sym_interpolated_string_expression] = STATE(3462), + [sym_member_access_expression] = STATE(2815), + [sym_object_creation_expression] = STATE(3497), + [sym_parenthesized_expression] = STATE(3497), + [sym__parenthesized_lvalue_expression] = STATE(2815), + [sym_lambda_expression] = STATE(3462), + [sym__lambda_expression_init] = STATE(7658), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3462), + [sym_anonymous_method_expression] = STATE(3462), + [sym_anonymous_object_creation_expression] = STATE(3462), + [sym_implicit_array_creation_expression] = STATE(3462), + [sym_implicit_object_creation_expression] = STATE(3462), + [sym_implicit_stackalloc_expression] = STATE(3462), + [sym_initializer_expression] = STATE(3462), + [sym_default_expression] = STATE(3462), + [sym_with_expression] = STATE(3462), + [sym_sizeof_expression] = STATE(3462), + [sym_typeof_expression] = STATE(3462), + [sym_makeref_expression] = STATE(3462), + [sym_ref_expression] = STATE(3462), + [sym_reftype_expression] = STATE(3462), + [sym_refvalue_expression] = STATE(3462), + [sym_stackalloc_expression] = STATE(3462), + [sym_range_expression] = STATE(3462), + [sym_tuple_expression] = STATE(2815), + [sym_literal] = STATE(3462), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3462), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(1193), [sym_preproc_endregion] = STATE(1193), [sym_preproc_line] = STATE(1193), @@ -243476,47 +243362,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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3440), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3367), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1241), - [anon_sym_LPAREN] = ACTIONS(2031), - [anon_sym_ref] = ACTIONS(2033), - [anon_sym_LBRACE] = ACTIONS(1247), - [anon_sym_delegate] = ACTIONS(1249), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1305), + [anon_sym_LPAREN] = ACTIONS(1639), + [anon_sym_ref] = ACTIONS(1641), + [anon_sym_LBRACE] = ACTIONS(1311), + [anon_sym_delegate] = ACTIONS(1313), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1251), + [anon_sym_new] = ACTIONS(1583), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1253), - [anon_sym_BANG] = ACTIONS(2037), - [anon_sym_TILDE] = ACTIONS(2037), - [anon_sym_PLUS_PLUS] = ACTIONS(2037), - [anon_sym_DASH_DASH] = ACTIONS(2037), - [anon_sym_true] = ACTIONS(1259), - [anon_sym_false] = ACTIONS(1259), - [anon_sym_PLUS] = ACTIONS(2035), - [anon_sym_DASH] = ACTIONS(2035), - [anon_sym_STAR] = ACTIONS(2039), - [anon_sym_CARET] = ACTIONS(2037), - [anon_sym_AMP] = ACTIONS(2037), - [anon_sym_this] = ACTIONS(1263), + [anon_sym_checked] = ACTIONS(1317), + [anon_sym_BANG] = ACTIONS(1645), + [anon_sym_TILDE] = ACTIONS(1645), + [anon_sym_PLUS_PLUS] = ACTIONS(1645), + [anon_sym_DASH_DASH] = ACTIONS(1645), + [anon_sym_true] = ACTIONS(77), + [anon_sym_false] = ACTIONS(77), + [anon_sym_PLUS] = ACTIONS(1643), + [anon_sym_DASH] = ACTIONS(1643), + [anon_sym_STAR] = ACTIONS(1647), + [anon_sym_CARET] = ACTIONS(1645), + [anon_sym_AMP] = ACTIONS(1645), + [anon_sym_this] = ACTIONS(1321), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1265), + [anon_sym_base] = ACTIONS(1323), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1267), - [anon_sym_unchecked] = ACTIONS(1253), + [sym_predefined_type] = ACTIONS(91), + [anon_sym_unchecked] = ACTIONS(1317), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1269), - [anon_sym_throw] = ACTIONS(2041), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(1649), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2043), - [anon_sym_DOT_DOT] = ACTIONS(2045), + [anon_sym_await] = ACTIONS(1651), + [anon_sym_DOT_DOT] = ACTIONS(1653), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -243529,19 +243415,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1277), - [anon_sym_sizeof] = ACTIONS(1279), - [anon_sym_typeof] = ACTIONS(1281), - [anon_sym___makeref] = ACTIONS(1283), - [anon_sym___reftype] = ACTIONS(1285), - [anon_sym___refvalue] = ACTIONS(1287), - [sym_null_literal] = ACTIONS(1289), - [anon_sym_SQUOTE] = ACTIONS(1291), - [sym_integer_literal] = ACTIONS(1289), - [sym_real_literal] = ACTIONS(1293), - [anon_sym_DQUOTE] = ACTIONS(1295), - [sym_verbatim_string_literal] = ACTIONS(1293), - [aux_sym_preproc_if_token1] = ACTIONS(1297), + [anon_sym_stackalloc] = ACTIONS(1331), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(1333), + [anon_sym___reftype] = ACTIONS(1335), + [anon_sym___refvalue] = ACTIONS(1337), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_literal] = ACTIONS(143), + [anon_sym_DQUOTE] = ACTIONS(145), + [sym_verbatim_string_literal] = ACTIONS(143), + [aux_sym_preproc_if_token1] = ACTIONS(1339), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -243552,90 +243438,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1299), - [sym_interpolation_verbatim_start] = ACTIONS(1301), - [sym_interpolation_raw_start] = ACTIONS(1303), - [sym_raw_string_start] = ACTIONS(1305), + [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(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2420), - [sym__name] = STATE(5887), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2197), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(5274), - [sym_non_lvalue_expression] = STATE(3066), - [sym_lvalue_expression] = STATE(3552), - [sym__expression_statement_expression] = STATE(3006), - [sym_assignment_expression] = STATE(3020), - [sym_binary_expression] = STATE(3006), - [sym_postfix_unary_expression] = STATE(3020), - [sym_prefix_unary_expression] = STATE(3020), - [sym__pointer_indirection_expression] = STATE(2423), - [sym_query_expression] = STATE(3006), - [sym_from_clause] = STATE(6181), - [sym_conditional_expression] = STATE(3006), - [sym_conditional_access_expression] = STATE(3006), - [sym_as_expression] = STATE(3006), - [sym_is_expression] = STATE(3006), - [sym_is_pattern_expression] = STATE(3006), - [sym_cast_expression] = STATE(3006), - [sym_checked_expression] = STATE(3006), - [sym_invocation_expression] = STATE(3020), - [sym_switch_expression] = STATE(3006), - [sym_await_expression] = STATE(3020), - [sym_throw_expression] = STATE(3006), - [sym_element_access_expression] = STATE(2423), - [sym_interpolated_string_expression] = STATE(3006), - [sym_member_access_expression] = STATE(2423), - [sym_object_creation_expression] = STATE(3020), - [sym_parenthesized_expression] = STATE(3020), - [sym__parenthesized_lvalue_expression] = STATE(2423), - [sym_lambda_expression] = STATE(3006), - [sym__lambda_expression_init] = STATE(7493), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3006), - [sym_anonymous_method_expression] = STATE(3006), - [sym_anonymous_object_creation_expression] = STATE(3006), - [sym_implicit_array_creation_expression] = STATE(3006), - [sym_implicit_object_creation_expression] = STATE(3006), - [sym_implicit_stackalloc_expression] = STATE(3006), - [sym_initializer_expression] = STATE(3006), - [sym_default_expression] = STATE(3006), - [sym_with_expression] = STATE(3006), - [sym_sizeof_expression] = STATE(3006), - [sym_typeof_expression] = STATE(3006), - [sym_makeref_expression] = STATE(3006), - [sym_ref_expression] = STATE(3006), - [sym_reftype_expression] = STATE(3006), - [sym_refvalue_expression] = STATE(3006), - [sym_stackalloc_expression] = STATE(3006), - [sym_range_expression] = STATE(3006), - [sym_tuple_expression] = STATE(2423), - [sym_literal] = STATE(3006), - [sym_character_literal] = STATE(3011), - [sym_string_literal] = STATE(3011), - [sym_raw_string_literal] = STATE(3011), - [sym_boolean_literal] = STATE(3011), - [sym_identifier] = STATE(2267), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3006), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2816), + [sym__name] = STATE(5860), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2321), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(4529), + [sym_non_lvalue_expression] = STATE(3495), + [sym_lvalue_expression] = STATE(3349), + [sym__expression_statement_expression] = STATE(3462), + [sym_assignment_expression] = STATE(3497), + [sym_binary_expression] = STATE(3462), + [sym_postfix_unary_expression] = STATE(3497), + [sym_prefix_unary_expression] = STATE(3497), + [sym__pointer_indirection_expression] = STATE(2815), + [sym_query_expression] = STATE(3462), + [sym_from_clause] = STATE(6152), + [sym_conditional_expression] = STATE(3462), + [sym_conditional_access_expression] = STATE(3462), + [sym_as_expression] = STATE(3462), + [sym_is_expression] = STATE(3462), + [sym_is_pattern_expression] = STATE(3462), + [sym_cast_expression] = STATE(3462), + [sym_checked_expression] = STATE(3462), + [sym_invocation_expression] = STATE(3497), + [sym_switch_expression] = STATE(3462), + [sym_await_expression] = STATE(3497), + [sym_throw_expression] = STATE(3462), + [sym_element_access_expression] = STATE(2815), + [sym_interpolated_string_expression] = STATE(3462), + [sym_member_access_expression] = STATE(2815), + [sym_object_creation_expression] = STATE(3497), + [sym_parenthesized_expression] = STATE(3497), + [sym__parenthesized_lvalue_expression] = STATE(2815), + [sym_lambda_expression] = STATE(3462), + [sym__lambda_expression_init] = STATE(7658), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3462), + [sym_anonymous_method_expression] = STATE(3462), + [sym_anonymous_object_creation_expression] = STATE(3462), + [sym_implicit_array_creation_expression] = STATE(3462), + [sym_implicit_object_creation_expression] = STATE(3462), + [sym_implicit_stackalloc_expression] = STATE(3462), + [sym_initializer_expression] = STATE(3462), + [sym_default_expression] = STATE(3462), + [sym_with_expression] = STATE(3462), + [sym_sizeof_expression] = STATE(3462), + [sym_typeof_expression] = STATE(3462), + [sym_makeref_expression] = STATE(3462), + [sym_ref_expression] = STATE(3462), + [sym_reftype_expression] = STATE(3462), + [sym_refvalue_expression] = STATE(3462), + [sym_stackalloc_expression] = STATE(3462), + [sym_range_expression] = STATE(3462), + [sym_tuple_expression] = STATE(2815), + [sym_literal] = STATE(3462), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3462), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(1194), [sym_preproc_endregion] = STATE(1194), [sym_preproc_line] = STATE(1194), @@ -243645,47 +243531,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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3440), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3367), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1241), - [anon_sym_LPAREN] = ACTIONS(2031), - [anon_sym_ref] = ACTIONS(2033), - [anon_sym_LBRACE] = ACTIONS(1247), - [anon_sym_delegate] = ACTIONS(1249), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1305), + [anon_sym_LPAREN] = ACTIONS(1639), + [anon_sym_ref] = ACTIONS(1641), + [anon_sym_LBRACE] = ACTIONS(1311), + [anon_sym_delegate] = ACTIONS(1313), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1251), + [anon_sym_new] = ACTIONS(1583), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1253), - [anon_sym_BANG] = ACTIONS(2037), - [anon_sym_TILDE] = ACTIONS(2037), - [anon_sym_PLUS_PLUS] = ACTIONS(2037), - [anon_sym_DASH_DASH] = ACTIONS(2037), - [anon_sym_true] = ACTIONS(1259), - [anon_sym_false] = ACTIONS(1259), - [anon_sym_PLUS] = ACTIONS(2035), - [anon_sym_DASH] = ACTIONS(2035), - [anon_sym_STAR] = ACTIONS(2039), - [anon_sym_CARET] = ACTIONS(2037), - [anon_sym_AMP] = ACTIONS(2037), - [anon_sym_this] = ACTIONS(1263), + [anon_sym_checked] = ACTIONS(1317), + [anon_sym_BANG] = ACTIONS(1645), + [anon_sym_TILDE] = ACTIONS(1645), + [anon_sym_PLUS_PLUS] = ACTIONS(1645), + [anon_sym_DASH_DASH] = ACTIONS(1645), + [anon_sym_true] = ACTIONS(77), + [anon_sym_false] = ACTIONS(77), + [anon_sym_PLUS] = ACTIONS(1643), + [anon_sym_DASH] = ACTIONS(1643), + [anon_sym_STAR] = ACTIONS(1647), + [anon_sym_CARET] = ACTIONS(1645), + [anon_sym_AMP] = ACTIONS(1645), + [anon_sym_this] = ACTIONS(1321), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1265), + [anon_sym_base] = ACTIONS(1323), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1267), - [anon_sym_unchecked] = ACTIONS(1253), + [sym_predefined_type] = ACTIONS(91), + [anon_sym_unchecked] = ACTIONS(1317), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1269), - [anon_sym_throw] = ACTIONS(2041), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(1649), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2043), - [anon_sym_DOT_DOT] = ACTIONS(2045), + [anon_sym_await] = ACTIONS(1651), + [anon_sym_DOT_DOT] = ACTIONS(1653), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -243698,19 +243584,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1277), - [anon_sym_sizeof] = ACTIONS(1279), - [anon_sym_typeof] = ACTIONS(1281), - [anon_sym___makeref] = ACTIONS(1283), - [anon_sym___reftype] = ACTIONS(1285), - [anon_sym___refvalue] = ACTIONS(1287), - [sym_null_literal] = ACTIONS(1289), - [anon_sym_SQUOTE] = ACTIONS(1291), - [sym_integer_literal] = ACTIONS(1289), - [sym_real_literal] = ACTIONS(1293), - [anon_sym_DQUOTE] = ACTIONS(1295), - [sym_verbatim_string_literal] = ACTIONS(1293), - [aux_sym_preproc_if_token1] = ACTIONS(1297), + [anon_sym_stackalloc] = ACTIONS(1331), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(1333), + [anon_sym___reftype] = ACTIONS(1335), + [anon_sym___refvalue] = ACTIONS(1337), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_literal] = ACTIONS(143), + [anon_sym_DQUOTE] = ACTIONS(145), + [sym_verbatim_string_literal] = ACTIONS(143), + [aux_sym_preproc_if_token1] = ACTIONS(1339), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -243721,90 +243607,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1299), - [sym_interpolation_verbatim_start] = ACTIONS(1301), - [sym_interpolation_raw_start] = ACTIONS(1303), - [sym_raw_string_start] = ACTIONS(1305), + [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(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2420), - [sym__name] = STATE(5887), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2197), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(5303), - [sym_non_lvalue_expression] = STATE(3066), - [sym_lvalue_expression] = STATE(3552), - [sym__expression_statement_expression] = STATE(3006), - [sym_assignment_expression] = STATE(3020), - [sym_binary_expression] = STATE(3006), - [sym_postfix_unary_expression] = STATE(3020), - [sym_prefix_unary_expression] = STATE(3020), - [sym__pointer_indirection_expression] = STATE(2423), - [sym_query_expression] = STATE(3006), - [sym_from_clause] = STATE(6181), - [sym_conditional_expression] = STATE(3006), - [sym_conditional_access_expression] = STATE(3006), - [sym_as_expression] = STATE(3006), - [sym_is_expression] = STATE(3006), - [sym_is_pattern_expression] = STATE(3006), - [sym_cast_expression] = STATE(3006), - [sym_checked_expression] = STATE(3006), - [sym_invocation_expression] = STATE(3020), - [sym_switch_expression] = STATE(3006), - [sym_await_expression] = STATE(3020), - [sym_throw_expression] = STATE(3006), - [sym_element_access_expression] = STATE(2423), - [sym_interpolated_string_expression] = STATE(3006), - [sym_member_access_expression] = STATE(2423), - [sym_object_creation_expression] = STATE(3020), - [sym_parenthesized_expression] = STATE(3020), - [sym__parenthesized_lvalue_expression] = STATE(2423), - [sym_lambda_expression] = STATE(3006), - [sym__lambda_expression_init] = STATE(7493), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3006), - [sym_anonymous_method_expression] = STATE(3006), - [sym_anonymous_object_creation_expression] = STATE(3006), - [sym_implicit_array_creation_expression] = STATE(3006), - [sym_implicit_object_creation_expression] = STATE(3006), - [sym_implicit_stackalloc_expression] = STATE(3006), - [sym_initializer_expression] = STATE(3006), - [sym_default_expression] = STATE(3006), - [sym_with_expression] = STATE(3006), - [sym_sizeof_expression] = STATE(3006), - [sym_typeof_expression] = STATE(3006), - [sym_makeref_expression] = STATE(3006), - [sym_ref_expression] = STATE(3006), - [sym_reftype_expression] = STATE(3006), - [sym_refvalue_expression] = STATE(3006), - [sym_stackalloc_expression] = STATE(3006), - [sym_range_expression] = STATE(3006), - [sym_tuple_expression] = STATE(2423), - [sym_literal] = STATE(3006), - [sym_character_literal] = STATE(3011), - [sym_string_literal] = STATE(3011), - [sym_raw_string_literal] = STATE(3011), - [sym_boolean_literal] = STATE(3011), - [sym_identifier] = STATE(2267), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3006), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2816), + [sym__name] = STATE(5860), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2321), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(3214), + [sym_non_lvalue_expression] = STATE(3495), + [sym_lvalue_expression] = STATE(3349), + [sym__expression_statement_expression] = STATE(3462), + [sym_assignment_expression] = STATE(3497), + [sym_binary_expression] = STATE(3462), + [sym_postfix_unary_expression] = STATE(3497), + [sym_prefix_unary_expression] = STATE(3497), + [sym__pointer_indirection_expression] = STATE(2815), + [sym_query_expression] = STATE(3462), + [sym_from_clause] = STATE(6152), + [sym_conditional_expression] = STATE(3462), + [sym_conditional_access_expression] = STATE(3462), + [sym_as_expression] = STATE(3462), + [sym_is_expression] = STATE(3462), + [sym_is_pattern_expression] = STATE(3462), + [sym_cast_expression] = STATE(3462), + [sym_checked_expression] = STATE(3462), + [sym_invocation_expression] = STATE(3497), + [sym_switch_expression] = STATE(3462), + [sym_await_expression] = STATE(3497), + [sym_throw_expression] = STATE(3462), + [sym_element_access_expression] = STATE(2815), + [sym_interpolated_string_expression] = STATE(3462), + [sym_member_access_expression] = STATE(2815), + [sym_object_creation_expression] = STATE(3497), + [sym_parenthesized_expression] = STATE(3497), + [sym__parenthesized_lvalue_expression] = STATE(2815), + [sym_lambda_expression] = STATE(3462), + [sym__lambda_expression_init] = STATE(7658), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3462), + [sym_anonymous_method_expression] = STATE(3462), + [sym_anonymous_object_creation_expression] = STATE(3462), + [sym_implicit_array_creation_expression] = STATE(3462), + [sym_implicit_object_creation_expression] = STATE(3462), + [sym_implicit_stackalloc_expression] = STATE(3462), + [sym_initializer_expression] = STATE(3462), + [sym_default_expression] = STATE(3462), + [sym_with_expression] = STATE(3462), + [sym_sizeof_expression] = STATE(3462), + [sym_typeof_expression] = STATE(3462), + [sym_makeref_expression] = STATE(3462), + [sym_ref_expression] = STATE(3462), + [sym_reftype_expression] = STATE(3462), + [sym_refvalue_expression] = STATE(3462), + [sym_stackalloc_expression] = STATE(3462), + [sym_range_expression] = STATE(3462), + [sym_tuple_expression] = STATE(2815), + [sym_literal] = STATE(3462), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3462), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(1195), [sym_preproc_endregion] = STATE(1195), [sym_preproc_line] = STATE(1195), @@ -243814,47 +243700,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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3440), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3367), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1241), - [anon_sym_LPAREN] = ACTIONS(2031), - [anon_sym_ref] = ACTIONS(2033), - [anon_sym_LBRACE] = ACTIONS(1247), - [anon_sym_delegate] = ACTIONS(1249), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1305), + [anon_sym_LPAREN] = ACTIONS(1639), + [anon_sym_ref] = ACTIONS(1641), + [anon_sym_LBRACE] = ACTIONS(1311), + [anon_sym_delegate] = ACTIONS(1313), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1251), + [anon_sym_new] = ACTIONS(1583), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1253), - [anon_sym_BANG] = ACTIONS(2037), - [anon_sym_TILDE] = ACTIONS(2037), - [anon_sym_PLUS_PLUS] = ACTIONS(2037), - [anon_sym_DASH_DASH] = ACTIONS(2037), - [anon_sym_true] = ACTIONS(1259), - [anon_sym_false] = ACTIONS(1259), - [anon_sym_PLUS] = ACTIONS(2035), - [anon_sym_DASH] = ACTIONS(2035), - [anon_sym_STAR] = ACTIONS(2039), - [anon_sym_CARET] = ACTIONS(2037), - [anon_sym_AMP] = ACTIONS(2037), - [anon_sym_this] = ACTIONS(1263), + [anon_sym_checked] = ACTIONS(1317), + [anon_sym_BANG] = ACTIONS(1645), + [anon_sym_TILDE] = ACTIONS(1645), + [anon_sym_PLUS_PLUS] = ACTIONS(1645), + [anon_sym_DASH_DASH] = ACTIONS(1645), + [anon_sym_true] = ACTIONS(77), + [anon_sym_false] = ACTIONS(77), + [anon_sym_PLUS] = ACTIONS(1643), + [anon_sym_DASH] = ACTIONS(1643), + [anon_sym_STAR] = ACTIONS(1647), + [anon_sym_CARET] = ACTIONS(1645), + [anon_sym_AMP] = ACTIONS(1645), + [anon_sym_this] = ACTIONS(1321), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1265), + [anon_sym_base] = ACTIONS(1323), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1267), - [anon_sym_unchecked] = ACTIONS(1253), + [sym_predefined_type] = ACTIONS(91), + [anon_sym_unchecked] = ACTIONS(1317), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1269), - [anon_sym_throw] = ACTIONS(2041), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(1649), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2043), - [anon_sym_DOT_DOT] = ACTIONS(2045), + [anon_sym_await] = ACTIONS(1651), + [anon_sym_DOT_DOT] = ACTIONS(1653), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -243867,19 +243753,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1277), - [anon_sym_sizeof] = ACTIONS(1279), - [anon_sym_typeof] = ACTIONS(1281), - [anon_sym___makeref] = ACTIONS(1283), - [anon_sym___reftype] = ACTIONS(1285), - [anon_sym___refvalue] = ACTIONS(1287), - [sym_null_literal] = ACTIONS(1289), - [anon_sym_SQUOTE] = ACTIONS(1291), - [sym_integer_literal] = ACTIONS(1289), - [sym_real_literal] = ACTIONS(1293), - [anon_sym_DQUOTE] = ACTIONS(1295), - [sym_verbatim_string_literal] = ACTIONS(1293), - [aux_sym_preproc_if_token1] = ACTIONS(1297), + [anon_sym_stackalloc] = ACTIONS(1331), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(1333), + [anon_sym___reftype] = ACTIONS(1335), + [anon_sym___refvalue] = ACTIONS(1337), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_literal] = ACTIONS(143), + [anon_sym_DQUOTE] = ACTIONS(145), + [sym_verbatim_string_literal] = ACTIONS(143), + [aux_sym_preproc_if_token1] = ACTIONS(1339), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -243890,90 +243776,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1299), - [sym_interpolation_verbatim_start] = ACTIONS(1301), - [sym_interpolation_raw_start] = ACTIONS(1303), - [sym_raw_string_start] = ACTIONS(1305), + [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(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2420), - [sym__name] = STATE(5887), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2197), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(5304), - [sym_non_lvalue_expression] = STATE(3066), - [sym_lvalue_expression] = STATE(3552), - [sym__expression_statement_expression] = STATE(3006), - [sym_assignment_expression] = STATE(3020), - [sym_binary_expression] = STATE(3006), - [sym_postfix_unary_expression] = STATE(3020), - [sym_prefix_unary_expression] = STATE(3020), - [sym__pointer_indirection_expression] = STATE(2423), - [sym_query_expression] = STATE(3006), - [sym_from_clause] = STATE(6181), - [sym_conditional_expression] = STATE(3006), - [sym_conditional_access_expression] = STATE(3006), - [sym_as_expression] = STATE(3006), - [sym_is_expression] = STATE(3006), - [sym_is_pattern_expression] = STATE(3006), - [sym_cast_expression] = STATE(3006), - [sym_checked_expression] = STATE(3006), - [sym_invocation_expression] = STATE(3020), - [sym_switch_expression] = STATE(3006), - [sym_await_expression] = STATE(3020), - [sym_throw_expression] = STATE(3006), - [sym_element_access_expression] = STATE(2423), - [sym_interpolated_string_expression] = STATE(3006), - [sym_member_access_expression] = STATE(2423), - [sym_object_creation_expression] = STATE(3020), - [sym_parenthesized_expression] = STATE(3020), - [sym__parenthesized_lvalue_expression] = STATE(2423), - [sym_lambda_expression] = STATE(3006), - [sym__lambda_expression_init] = STATE(7493), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3006), - [sym_anonymous_method_expression] = STATE(3006), - [sym_anonymous_object_creation_expression] = STATE(3006), - [sym_implicit_array_creation_expression] = STATE(3006), - [sym_implicit_object_creation_expression] = STATE(3006), - [sym_implicit_stackalloc_expression] = STATE(3006), - [sym_initializer_expression] = STATE(3006), - [sym_default_expression] = STATE(3006), - [sym_with_expression] = STATE(3006), - [sym_sizeof_expression] = STATE(3006), - [sym_typeof_expression] = STATE(3006), - [sym_makeref_expression] = STATE(3006), - [sym_ref_expression] = STATE(3006), - [sym_reftype_expression] = STATE(3006), - [sym_refvalue_expression] = STATE(3006), - [sym_stackalloc_expression] = STATE(3006), - [sym_range_expression] = STATE(3006), - [sym_tuple_expression] = STATE(2423), - [sym_literal] = STATE(3006), - [sym_character_literal] = STATE(3011), - [sym_string_literal] = STATE(3011), - [sym_raw_string_literal] = STATE(3011), - [sym_boolean_literal] = STATE(3011), - [sym_identifier] = STATE(2267), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3006), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2416), + [sym__name] = STATE(5867), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2379), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(5114), + [sym_non_lvalue_expression] = STATE(3040), + [sym_lvalue_expression] = STATE(3617), + [sym__expression_statement_expression] = STATE(3035), + [sym_assignment_expression] = STATE(3043), + [sym_binary_expression] = STATE(3035), + [sym_postfix_unary_expression] = STATE(3043), + [sym_prefix_unary_expression] = STATE(3043), + [sym__pointer_indirection_expression] = STATE(2415), + [sym_query_expression] = STATE(3035), + [sym_from_clause] = STATE(6161), + [sym_conditional_expression] = STATE(3035), + [sym_conditional_access_expression] = STATE(3035), + [sym_as_expression] = STATE(3035), + [sym_is_expression] = STATE(3035), + [sym_is_pattern_expression] = STATE(3035), + [sym_cast_expression] = STATE(3035), + [sym_checked_expression] = STATE(3035), + [sym_invocation_expression] = STATE(3043), + [sym_switch_expression] = STATE(3035), + [sym_await_expression] = STATE(3043), + [sym_throw_expression] = STATE(3035), + [sym_element_access_expression] = STATE(2415), + [sym_interpolated_string_expression] = STATE(3035), + [sym_member_access_expression] = STATE(2415), + [sym_object_creation_expression] = STATE(3043), + [sym_parenthesized_expression] = STATE(3043), + [sym__parenthesized_lvalue_expression] = STATE(2415), + [sym_lambda_expression] = STATE(3035), + [sym__lambda_expression_init] = STATE(7706), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3035), + [sym_anonymous_method_expression] = STATE(3035), + [sym_anonymous_object_creation_expression] = STATE(3035), + [sym_implicit_array_creation_expression] = STATE(3035), + [sym_implicit_object_creation_expression] = STATE(3035), + [sym_implicit_stackalloc_expression] = STATE(3035), + [sym_initializer_expression] = STATE(3035), + [sym_default_expression] = STATE(3035), + [sym_with_expression] = STATE(3035), + [sym_sizeof_expression] = STATE(3035), + [sym_typeof_expression] = STATE(3035), + [sym_makeref_expression] = STATE(3035), + [sym_ref_expression] = STATE(3035), + [sym_reftype_expression] = STATE(3035), + [sym_refvalue_expression] = STATE(3035), + [sym_stackalloc_expression] = STATE(3035), + [sym_range_expression] = STATE(3035), + [sym_tuple_expression] = STATE(2415), + [sym_literal] = STATE(3035), + [sym_character_literal] = STATE(3037), + [sym_string_literal] = STATE(3037), + [sym_raw_string_literal] = STATE(3037), + [sym_boolean_literal] = STATE(3037), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3035), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(1196), [sym_preproc_endregion] = STATE(1196), [sym_preproc_line] = STATE(1196), @@ -243983,47 +243869,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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3440), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3455), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1241), - [anon_sym_LPAREN] = ACTIONS(2031), - [anon_sym_ref] = ACTIONS(2033), - [anon_sym_LBRACE] = ACTIONS(1247), - [anon_sym_delegate] = ACTIONS(1249), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1239), + [anon_sym_LPAREN] = ACTIONS(2159), + [anon_sym_ref] = ACTIONS(2161), + [anon_sym_LBRACE] = ACTIONS(1245), + [anon_sym_delegate] = ACTIONS(1247), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1251), + [anon_sym_new] = ACTIONS(2163), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1253), - [anon_sym_BANG] = ACTIONS(2037), - [anon_sym_TILDE] = ACTIONS(2037), - [anon_sym_PLUS_PLUS] = ACTIONS(2037), - [anon_sym_DASH_DASH] = ACTIONS(2037), - [anon_sym_true] = ACTIONS(1259), - [anon_sym_false] = ACTIONS(1259), - [anon_sym_PLUS] = ACTIONS(2035), - [anon_sym_DASH] = ACTIONS(2035), - [anon_sym_STAR] = ACTIONS(2039), - [anon_sym_CARET] = ACTIONS(2037), - [anon_sym_AMP] = ACTIONS(2037), - [anon_sym_this] = ACTIONS(1263), + [anon_sym_checked] = ACTIONS(1251), + [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(1257), + [anon_sym_false] = ACTIONS(1257), + [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(1261), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1265), + [anon_sym_base] = ACTIONS(1263), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1267), - [anon_sym_unchecked] = ACTIONS(1253), + [sym_predefined_type] = ACTIONS(1265), + [anon_sym_unchecked] = ACTIONS(1251), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1269), - [anon_sym_throw] = ACTIONS(2041), + [anon_sym_default] = ACTIONS(1267), + [anon_sym_throw] = ACTIONS(2171), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2043), - [anon_sym_DOT_DOT] = ACTIONS(2045), + [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), @@ -244036,19 +243922,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1277), - [anon_sym_sizeof] = ACTIONS(1279), - [anon_sym_typeof] = ACTIONS(1281), - [anon_sym___makeref] = ACTIONS(1283), - [anon_sym___reftype] = ACTIONS(1285), - [anon_sym___refvalue] = ACTIONS(1287), - [sym_null_literal] = ACTIONS(1289), - [anon_sym_SQUOTE] = ACTIONS(1291), - [sym_integer_literal] = ACTIONS(1289), - [sym_real_literal] = ACTIONS(1293), - [anon_sym_DQUOTE] = ACTIONS(1295), - [sym_verbatim_string_literal] = ACTIONS(1293), - [aux_sym_preproc_if_token1] = ACTIONS(1297), + [anon_sym_stackalloc] = ACTIONS(1275), + [anon_sym_sizeof] = ACTIONS(1277), + [anon_sym_typeof] = ACTIONS(1279), + [anon_sym___makeref] = ACTIONS(1281), + [anon_sym___reftype] = ACTIONS(1283), + [anon_sym___refvalue] = ACTIONS(1285), + [sym_null_literal] = ACTIONS(1287), + [anon_sym_SQUOTE] = ACTIONS(1289), + [sym_integer_literal] = ACTIONS(1287), + [sym_real_literal] = ACTIONS(1291), + [anon_sym_DQUOTE] = ACTIONS(1293), + [sym_verbatim_string_literal] = ACTIONS(1291), + [aux_sym_preproc_if_token1] = ACTIONS(1295), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -244059,90 +243945,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1299), - [sym_interpolation_verbatim_start] = ACTIONS(1301), - [sym_interpolation_raw_start] = ACTIONS(1303), - [sym_raw_string_start] = ACTIONS(1305), + [sym_interpolation_regular_start] = ACTIONS(1297), + [sym_interpolation_verbatim_start] = ACTIONS(1299), + [sym_interpolation_raw_start] = ACTIONS(1301), + [sym_raw_string_start] = ACTIONS(1303), }, [1197] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2420), - [sym__name] = STATE(5887), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2197), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(5307), - [sym_non_lvalue_expression] = STATE(3066), - [sym_lvalue_expression] = STATE(3552), - [sym__expression_statement_expression] = STATE(3006), - [sym_assignment_expression] = STATE(3020), - [sym_binary_expression] = STATE(3006), - [sym_postfix_unary_expression] = STATE(3020), - [sym_prefix_unary_expression] = STATE(3020), - [sym__pointer_indirection_expression] = STATE(2423), - [sym_query_expression] = STATE(3006), - [sym_from_clause] = STATE(6181), - [sym_conditional_expression] = STATE(3006), - [sym_conditional_access_expression] = STATE(3006), - [sym_as_expression] = STATE(3006), - [sym_is_expression] = STATE(3006), - [sym_is_pattern_expression] = STATE(3006), - [sym_cast_expression] = STATE(3006), - [sym_checked_expression] = STATE(3006), - [sym_invocation_expression] = STATE(3020), - [sym_switch_expression] = STATE(3006), - [sym_await_expression] = STATE(3020), - [sym_throw_expression] = STATE(3006), - [sym_element_access_expression] = STATE(2423), - [sym_interpolated_string_expression] = STATE(3006), - [sym_member_access_expression] = STATE(2423), - [sym_object_creation_expression] = STATE(3020), - [sym_parenthesized_expression] = STATE(3020), - [sym__parenthesized_lvalue_expression] = STATE(2423), - [sym_lambda_expression] = STATE(3006), - [sym__lambda_expression_init] = STATE(7493), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3006), - [sym_anonymous_method_expression] = STATE(3006), - [sym_anonymous_object_creation_expression] = STATE(3006), - [sym_implicit_array_creation_expression] = STATE(3006), - [sym_implicit_object_creation_expression] = STATE(3006), - [sym_implicit_stackalloc_expression] = STATE(3006), - [sym_initializer_expression] = STATE(3006), - [sym_default_expression] = STATE(3006), - [sym_with_expression] = STATE(3006), - [sym_sizeof_expression] = STATE(3006), - [sym_typeof_expression] = STATE(3006), - [sym_makeref_expression] = STATE(3006), - [sym_ref_expression] = STATE(3006), - [sym_reftype_expression] = STATE(3006), - [sym_refvalue_expression] = STATE(3006), - [sym_stackalloc_expression] = STATE(3006), - [sym_range_expression] = STATE(3006), - [sym_tuple_expression] = STATE(2423), - [sym_literal] = STATE(3006), - [sym_character_literal] = STATE(3011), - [sym_string_literal] = STATE(3011), - [sym_raw_string_literal] = STATE(3011), - [sym_boolean_literal] = STATE(3011), - [sym_identifier] = STATE(2267), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3006), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2416), + [sym__name] = STATE(5867), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2379), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(2893), + [sym_non_lvalue_expression] = STATE(3040), + [sym_lvalue_expression] = STATE(3617), + [sym__expression_statement_expression] = STATE(3035), + [sym_assignment_expression] = STATE(3043), + [sym_binary_expression] = STATE(3035), + [sym_postfix_unary_expression] = STATE(3043), + [sym_prefix_unary_expression] = STATE(3043), + [sym__pointer_indirection_expression] = STATE(2415), + [sym_query_expression] = STATE(3035), + [sym_from_clause] = STATE(6161), + [sym_conditional_expression] = STATE(3035), + [sym_conditional_access_expression] = STATE(3035), + [sym_as_expression] = STATE(3035), + [sym_is_expression] = STATE(3035), + [sym_is_pattern_expression] = STATE(3035), + [sym_cast_expression] = STATE(3035), + [sym_checked_expression] = STATE(3035), + [sym_invocation_expression] = STATE(3043), + [sym_switch_expression] = STATE(3035), + [sym_await_expression] = STATE(3043), + [sym_throw_expression] = STATE(3035), + [sym_element_access_expression] = STATE(2415), + [sym_interpolated_string_expression] = STATE(3035), + [sym_member_access_expression] = STATE(2415), + [sym_object_creation_expression] = STATE(3043), + [sym_parenthesized_expression] = STATE(3043), + [sym__parenthesized_lvalue_expression] = STATE(2415), + [sym_lambda_expression] = STATE(3035), + [sym__lambda_expression_init] = STATE(7706), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3035), + [sym_anonymous_method_expression] = STATE(3035), + [sym_anonymous_object_creation_expression] = STATE(3035), + [sym_implicit_array_creation_expression] = STATE(3035), + [sym_implicit_object_creation_expression] = STATE(3035), + [sym_implicit_stackalloc_expression] = STATE(3035), + [sym_initializer_expression] = STATE(3035), + [sym_default_expression] = STATE(3035), + [sym_with_expression] = STATE(3035), + [sym_sizeof_expression] = STATE(3035), + [sym_typeof_expression] = STATE(3035), + [sym_makeref_expression] = STATE(3035), + [sym_ref_expression] = STATE(3035), + [sym_reftype_expression] = STATE(3035), + [sym_refvalue_expression] = STATE(3035), + [sym_stackalloc_expression] = STATE(3035), + [sym_range_expression] = STATE(3035), + [sym_tuple_expression] = STATE(2415), + [sym_literal] = STATE(3035), + [sym_character_literal] = STATE(3037), + [sym_string_literal] = STATE(3037), + [sym_raw_string_literal] = STATE(3037), + [sym_boolean_literal] = STATE(3037), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3035), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(1197), [sym_preproc_endregion] = STATE(1197), [sym_preproc_line] = STATE(1197), @@ -244152,47 +244038,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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3440), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3455), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1241), - [anon_sym_LPAREN] = ACTIONS(2031), - [anon_sym_ref] = ACTIONS(2033), - [anon_sym_LBRACE] = ACTIONS(1247), - [anon_sym_delegate] = ACTIONS(1249), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1239), + [anon_sym_LPAREN] = ACTIONS(2159), + [anon_sym_ref] = ACTIONS(2161), + [anon_sym_LBRACE] = ACTIONS(1245), + [anon_sym_delegate] = ACTIONS(1247), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1251), + [anon_sym_new] = ACTIONS(2163), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1253), - [anon_sym_BANG] = ACTIONS(2037), - [anon_sym_TILDE] = ACTIONS(2037), - [anon_sym_PLUS_PLUS] = ACTIONS(2037), - [anon_sym_DASH_DASH] = ACTIONS(2037), - [anon_sym_true] = ACTIONS(1259), - [anon_sym_false] = ACTIONS(1259), - [anon_sym_PLUS] = ACTIONS(2035), - [anon_sym_DASH] = ACTIONS(2035), - [anon_sym_STAR] = ACTIONS(2039), - [anon_sym_CARET] = ACTIONS(2037), - [anon_sym_AMP] = ACTIONS(2037), - [anon_sym_this] = ACTIONS(1263), + [anon_sym_checked] = ACTIONS(1251), + [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(1257), + [anon_sym_false] = ACTIONS(1257), + [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(1261), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1265), + [anon_sym_base] = ACTIONS(1263), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1267), - [anon_sym_unchecked] = ACTIONS(1253), + [sym_predefined_type] = ACTIONS(1265), + [anon_sym_unchecked] = ACTIONS(1251), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1269), - [anon_sym_throw] = ACTIONS(2041), + [anon_sym_default] = ACTIONS(1267), + [anon_sym_throw] = ACTIONS(2171), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2043), - [anon_sym_DOT_DOT] = ACTIONS(2045), + [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), @@ -244205,19 +244091,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1277), - [anon_sym_sizeof] = ACTIONS(1279), - [anon_sym_typeof] = ACTIONS(1281), - [anon_sym___makeref] = ACTIONS(1283), - [anon_sym___reftype] = ACTIONS(1285), - [anon_sym___refvalue] = ACTIONS(1287), - [sym_null_literal] = ACTIONS(1289), - [anon_sym_SQUOTE] = ACTIONS(1291), - [sym_integer_literal] = ACTIONS(1289), - [sym_real_literal] = ACTIONS(1293), - [anon_sym_DQUOTE] = ACTIONS(1295), - [sym_verbatim_string_literal] = ACTIONS(1293), - [aux_sym_preproc_if_token1] = ACTIONS(1297), + [anon_sym_stackalloc] = ACTIONS(1275), + [anon_sym_sizeof] = ACTIONS(1277), + [anon_sym_typeof] = ACTIONS(1279), + [anon_sym___makeref] = ACTIONS(1281), + [anon_sym___reftype] = ACTIONS(1283), + [anon_sym___refvalue] = ACTIONS(1285), + [sym_null_literal] = ACTIONS(1287), + [anon_sym_SQUOTE] = ACTIONS(1289), + [sym_integer_literal] = ACTIONS(1287), + [sym_real_literal] = ACTIONS(1291), + [anon_sym_DQUOTE] = ACTIONS(1293), + [sym_verbatim_string_literal] = ACTIONS(1291), + [aux_sym_preproc_if_token1] = ACTIONS(1295), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -244228,90 +244114,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1299), - [sym_interpolation_verbatim_start] = ACTIONS(1301), - [sym_interpolation_raw_start] = ACTIONS(1303), - [sym_raw_string_start] = ACTIONS(1305), + [sym_interpolation_regular_start] = ACTIONS(1297), + [sym_interpolation_verbatim_start] = ACTIONS(1299), + [sym_interpolation_raw_start] = ACTIONS(1301), + [sym_raw_string_start] = ACTIONS(1303), }, [1198] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2420), - [sym__name] = STATE(5887), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2197), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(5310), - [sym_non_lvalue_expression] = STATE(3066), - [sym_lvalue_expression] = STATE(3552), - [sym__expression_statement_expression] = STATE(3006), - [sym_assignment_expression] = STATE(3020), - [sym_binary_expression] = STATE(3006), - [sym_postfix_unary_expression] = STATE(3020), - [sym_prefix_unary_expression] = STATE(3020), - [sym__pointer_indirection_expression] = STATE(2423), - [sym_query_expression] = STATE(3006), - [sym_from_clause] = STATE(6181), - [sym_conditional_expression] = STATE(3006), - [sym_conditional_access_expression] = STATE(3006), - [sym_as_expression] = STATE(3006), - [sym_is_expression] = STATE(3006), - [sym_is_pattern_expression] = STATE(3006), - [sym_cast_expression] = STATE(3006), - [sym_checked_expression] = STATE(3006), - [sym_invocation_expression] = STATE(3020), - [sym_switch_expression] = STATE(3006), - [sym_await_expression] = STATE(3020), - [sym_throw_expression] = STATE(3006), - [sym_element_access_expression] = STATE(2423), - [sym_interpolated_string_expression] = STATE(3006), - [sym_member_access_expression] = STATE(2423), - [sym_object_creation_expression] = STATE(3020), - [sym_parenthesized_expression] = STATE(3020), - [sym__parenthesized_lvalue_expression] = STATE(2423), - [sym_lambda_expression] = STATE(3006), - [sym__lambda_expression_init] = STATE(7493), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3006), - [sym_anonymous_method_expression] = STATE(3006), - [sym_anonymous_object_creation_expression] = STATE(3006), - [sym_implicit_array_creation_expression] = STATE(3006), - [sym_implicit_object_creation_expression] = STATE(3006), - [sym_implicit_stackalloc_expression] = STATE(3006), - [sym_initializer_expression] = STATE(3006), - [sym_default_expression] = STATE(3006), - [sym_with_expression] = STATE(3006), - [sym_sizeof_expression] = STATE(3006), - [sym_typeof_expression] = STATE(3006), - [sym_makeref_expression] = STATE(3006), - [sym_ref_expression] = STATE(3006), - [sym_reftype_expression] = STATE(3006), - [sym_refvalue_expression] = STATE(3006), - [sym_stackalloc_expression] = STATE(3006), - [sym_range_expression] = STATE(3006), - [sym_tuple_expression] = STATE(2423), - [sym_literal] = STATE(3006), - [sym_character_literal] = STATE(3011), - [sym_string_literal] = STATE(3011), - [sym_raw_string_literal] = STATE(3011), - [sym_boolean_literal] = STATE(3011), - [sym_identifier] = STATE(2267), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3006), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2416), + [sym__name] = STATE(5867), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2379), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(5116), + [sym_non_lvalue_expression] = STATE(3040), + [sym_lvalue_expression] = STATE(3617), + [sym__expression_statement_expression] = STATE(3035), + [sym_assignment_expression] = STATE(3043), + [sym_binary_expression] = STATE(3035), + [sym_postfix_unary_expression] = STATE(3043), + [sym_prefix_unary_expression] = STATE(3043), + [sym__pointer_indirection_expression] = STATE(2415), + [sym_query_expression] = STATE(3035), + [sym_from_clause] = STATE(6161), + [sym_conditional_expression] = STATE(3035), + [sym_conditional_access_expression] = STATE(3035), + [sym_as_expression] = STATE(3035), + [sym_is_expression] = STATE(3035), + [sym_is_pattern_expression] = STATE(3035), + [sym_cast_expression] = STATE(3035), + [sym_checked_expression] = STATE(3035), + [sym_invocation_expression] = STATE(3043), + [sym_switch_expression] = STATE(3035), + [sym_await_expression] = STATE(3043), + [sym_throw_expression] = STATE(3035), + [sym_element_access_expression] = STATE(2415), + [sym_interpolated_string_expression] = STATE(3035), + [sym_member_access_expression] = STATE(2415), + [sym_object_creation_expression] = STATE(3043), + [sym_parenthesized_expression] = STATE(3043), + [sym__parenthesized_lvalue_expression] = STATE(2415), + [sym_lambda_expression] = STATE(3035), + [sym__lambda_expression_init] = STATE(7706), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3035), + [sym_anonymous_method_expression] = STATE(3035), + [sym_anonymous_object_creation_expression] = STATE(3035), + [sym_implicit_array_creation_expression] = STATE(3035), + [sym_implicit_object_creation_expression] = STATE(3035), + [sym_implicit_stackalloc_expression] = STATE(3035), + [sym_initializer_expression] = STATE(3035), + [sym_default_expression] = STATE(3035), + [sym_with_expression] = STATE(3035), + [sym_sizeof_expression] = STATE(3035), + [sym_typeof_expression] = STATE(3035), + [sym_makeref_expression] = STATE(3035), + [sym_ref_expression] = STATE(3035), + [sym_reftype_expression] = STATE(3035), + [sym_refvalue_expression] = STATE(3035), + [sym_stackalloc_expression] = STATE(3035), + [sym_range_expression] = STATE(3035), + [sym_tuple_expression] = STATE(2415), + [sym_literal] = STATE(3035), + [sym_character_literal] = STATE(3037), + [sym_string_literal] = STATE(3037), + [sym_raw_string_literal] = STATE(3037), + [sym_boolean_literal] = STATE(3037), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3035), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(1198), [sym_preproc_endregion] = STATE(1198), [sym_preproc_line] = STATE(1198), @@ -244321,47 +244207,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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3440), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3455), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1241), - [anon_sym_LPAREN] = ACTIONS(2031), - [anon_sym_ref] = ACTIONS(2033), - [anon_sym_LBRACE] = ACTIONS(1247), - [anon_sym_delegate] = ACTIONS(1249), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1239), + [anon_sym_LPAREN] = ACTIONS(2159), + [anon_sym_ref] = ACTIONS(2161), + [anon_sym_LBRACE] = ACTIONS(1245), + [anon_sym_delegate] = ACTIONS(1247), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1251), + [anon_sym_new] = ACTIONS(2163), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1253), - [anon_sym_BANG] = ACTIONS(2037), - [anon_sym_TILDE] = ACTIONS(2037), - [anon_sym_PLUS_PLUS] = ACTIONS(2037), - [anon_sym_DASH_DASH] = ACTIONS(2037), - [anon_sym_true] = ACTIONS(1259), - [anon_sym_false] = ACTIONS(1259), - [anon_sym_PLUS] = ACTIONS(2035), - [anon_sym_DASH] = ACTIONS(2035), - [anon_sym_STAR] = ACTIONS(2039), - [anon_sym_CARET] = ACTIONS(2037), - [anon_sym_AMP] = ACTIONS(2037), - [anon_sym_this] = ACTIONS(1263), + [anon_sym_checked] = ACTIONS(1251), + [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(1257), + [anon_sym_false] = ACTIONS(1257), + [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(1261), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1265), + [anon_sym_base] = ACTIONS(1263), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1267), - [anon_sym_unchecked] = ACTIONS(1253), + [sym_predefined_type] = ACTIONS(1265), + [anon_sym_unchecked] = ACTIONS(1251), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1269), - [anon_sym_throw] = ACTIONS(2041), + [anon_sym_default] = ACTIONS(1267), + [anon_sym_throw] = ACTIONS(2171), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2043), - [anon_sym_DOT_DOT] = ACTIONS(2045), + [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), @@ -244374,19 +244260,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1277), - [anon_sym_sizeof] = ACTIONS(1279), - [anon_sym_typeof] = ACTIONS(1281), - [anon_sym___makeref] = ACTIONS(1283), - [anon_sym___reftype] = ACTIONS(1285), - [anon_sym___refvalue] = ACTIONS(1287), - [sym_null_literal] = ACTIONS(1289), - [anon_sym_SQUOTE] = ACTIONS(1291), - [sym_integer_literal] = ACTIONS(1289), - [sym_real_literal] = ACTIONS(1293), - [anon_sym_DQUOTE] = ACTIONS(1295), - [sym_verbatim_string_literal] = ACTIONS(1293), - [aux_sym_preproc_if_token1] = ACTIONS(1297), + [anon_sym_stackalloc] = ACTIONS(1275), + [anon_sym_sizeof] = ACTIONS(1277), + [anon_sym_typeof] = ACTIONS(1279), + [anon_sym___makeref] = ACTIONS(1281), + [anon_sym___reftype] = ACTIONS(1283), + [anon_sym___refvalue] = ACTIONS(1285), + [sym_null_literal] = ACTIONS(1287), + [anon_sym_SQUOTE] = ACTIONS(1289), + [sym_integer_literal] = ACTIONS(1287), + [sym_real_literal] = ACTIONS(1291), + [anon_sym_DQUOTE] = ACTIONS(1293), + [sym_verbatim_string_literal] = ACTIONS(1291), + [aux_sym_preproc_if_token1] = ACTIONS(1295), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -244397,90 +244283,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1299), - [sym_interpolation_verbatim_start] = ACTIONS(1301), - [sym_interpolation_raw_start] = ACTIONS(1303), - [sym_raw_string_start] = ACTIONS(1305), + [sym_interpolation_regular_start] = ACTIONS(1297), + [sym_interpolation_verbatim_start] = ACTIONS(1299), + [sym_interpolation_raw_start] = ACTIONS(1301), + [sym_raw_string_start] = ACTIONS(1303), }, [1199] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2420), - [sym__name] = STATE(5887), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2197), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(2910), - [sym_non_lvalue_expression] = STATE(3066), - [sym_lvalue_expression] = STATE(3552), - [sym__expression_statement_expression] = STATE(3006), - [sym_assignment_expression] = STATE(3020), - [sym_binary_expression] = STATE(3006), - [sym_postfix_unary_expression] = STATE(3020), - [sym_prefix_unary_expression] = STATE(3020), - [sym__pointer_indirection_expression] = STATE(2423), - [sym_query_expression] = STATE(3006), - [sym_from_clause] = STATE(6181), - [sym_conditional_expression] = STATE(3006), - [sym_conditional_access_expression] = STATE(3006), - [sym_as_expression] = STATE(3006), - [sym_is_expression] = STATE(3006), - [sym_is_pattern_expression] = STATE(3006), - [sym_cast_expression] = STATE(3006), - [sym_checked_expression] = STATE(3006), - [sym_invocation_expression] = STATE(3020), - [sym_switch_expression] = STATE(3006), - [sym_await_expression] = STATE(3020), - [sym_throw_expression] = STATE(3006), - [sym_element_access_expression] = STATE(2423), - [sym_interpolated_string_expression] = STATE(3006), - [sym_member_access_expression] = STATE(2423), - [sym_object_creation_expression] = STATE(3020), - [sym_parenthesized_expression] = STATE(3020), - [sym__parenthesized_lvalue_expression] = STATE(2423), - [sym_lambda_expression] = STATE(3006), - [sym__lambda_expression_init] = STATE(7493), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3006), - [sym_anonymous_method_expression] = STATE(3006), - [sym_anonymous_object_creation_expression] = STATE(3006), - [sym_implicit_array_creation_expression] = STATE(3006), - [sym_implicit_object_creation_expression] = STATE(3006), - [sym_implicit_stackalloc_expression] = STATE(3006), - [sym_initializer_expression] = STATE(3006), - [sym_default_expression] = STATE(3006), - [sym_with_expression] = STATE(3006), - [sym_sizeof_expression] = STATE(3006), - [sym_typeof_expression] = STATE(3006), - [sym_makeref_expression] = STATE(3006), - [sym_ref_expression] = STATE(3006), - [sym_reftype_expression] = STATE(3006), - [sym_refvalue_expression] = STATE(3006), - [sym_stackalloc_expression] = STATE(3006), - [sym_range_expression] = STATE(3006), - [sym_tuple_expression] = STATE(2423), - [sym_literal] = STATE(3006), - [sym_character_literal] = STATE(3011), - [sym_string_literal] = STATE(3011), - [sym_raw_string_literal] = STATE(3011), - [sym_boolean_literal] = STATE(3011), - [sym_identifier] = STATE(2267), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3006), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2603), + [sym__name] = STATE(5870), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2379), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(4712), + [sym_non_lvalue_expression] = STATE(3220), + [sym_lvalue_expression] = STATE(3386), + [sym__expression_statement_expression] = STATE(3236), + [sym_assignment_expression] = STATE(3221), + [sym_binary_expression] = STATE(3236), + [sym_postfix_unary_expression] = STATE(3221), + [sym_prefix_unary_expression] = STATE(3221), + [sym__pointer_indirection_expression] = STATE(2602), + [sym_query_expression] = STATE(3236), + [sym_from_clause] = STATE(6166), + [sym_conditional_expression] = STATE(3236), + [sym_conditional_access_expression] = STATE(3236), + [sym_as_expression] = STATE(3236), + [sym_is_expression] = STATE(3236), + [sym_is_pattern_expression] = STATE(3236), + [sym_cast_expression] = STATE(3236), + [sym_checked_expression] = STATE(3236), + [sym_invocation_expression] = STATE(3221), + [sym_switch_expression] = STATE(3236), + [sym_await_expression] = STATE(3221), + [sym_throw_expression] = STATE(3236), + [sym_element_access_expression] = STATE(2602), + [sym_interpolated_string_expression] = STATE(3236), + [sym_member_access_expression] = STATE(2602), + [sym_object_creation_expression] = STATE(3221), + [sym_parenthesized_expression] = STATE(3221), + [sym__parenthesized_lvalue_expression] = STATE(2602), + [sym_lambda_expression] = STATE(3236), + [sym__lambda_expression_init] = STATE(7418), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3236), + [sym_anonymous_method_expression] = STATE(3236), + [sym_anonymous_object_creation_expression] = STATE(3236), + [sym_implicit_array_creation_expression] = STATE(3236), + [sym_implicit_object_creation_expression] = STATE(3236), + [sym_implicit_stackalloc_expression] = STATE(3236), + [sym_initializer_expression] = STATE(3236), + [sym_default_expression] = STATE(3236), + [sym_with_expression] = STATE(3236), + [sym_sizeof_expression] = STATE(3236), + [sym_typeof_expression] = STATE(3236), + [sym_makeref_expression] = STATE(3236), + [sym_ref_expression] = STATE(3236), + [sym_reftype_expression] = STATE(3236), + [sym_refvalue_expression] = STATE(3236), + [sym_stackalloc_expression] = STATE(3236), + [sym_range_expression] = STATE(3236), + [sym_tuple_expression] = STATE(2602), + [sym_literal] = STATE(3236), + [sym_character_literal] = STATE(3272), + [sym_string_literal] = STATE(3272), + [sym_raw_string_literal] = STATE(3272), + [sym_boolean_literal] = STATE(3272), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3236), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(1199), [sym_preproc_endregion] = STATE(1199), [sym_preproc_line] = STATE(1199), @@ -244490,47 +244376,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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3440), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3379), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1241), - [anon_sym_LPAREN] = ACTIONS(2031), - [anon_sym_ref] = ACTIONS(2033), - [anon_sym_LBRACE] = ACTIONS(1247), - [anon_sym_delegate] = ACTIONS(1249), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1149), + [anon_sym_LPAREN] = ACTIONS(1821), + [anon_sym_ref] = ACTIONS(1823), + [anon_sym_LBRACE] = ACTIONS(1155), + [anon_sym_delegate] = ACTIONS(1157), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1251), + [anon_sym_new] = ACTIONS(1825), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1253), - [anon_sym_BANG] = ACTIONS(2037), - [anon_sym_TILDE] = ACTIONS(2037), - [anon_sym_PLUS_PLUS] = ACTIONS(2037), - [anon_sym_DASH_DASH] = ACTIONS(2037), - [anon_sym_true] = ACTIONS(1259), - [anon_sym_false] = ACTIONS(1259), - [anon_sym_PLUS] = ACTIONS(2035), - [anon_sym_DASH] = ACTIONS(2035), - [anon_sym_STAR] = ACTIONS(2039), - [anon_sym_CARET] = ACTIONS(2037), - [anon_sym_AMP] = ACTIONS(2037), - [anon_sym_this] = ACTIONS(1263), + [anon_sym_checked] = ACTIONS(1163), + [anon_sym_BANG] = ACTIONS(1829), + [anon_sym_TILDE] = ACTIONS(1829), + [anon_sym_PLUS_PLUS] = ACTIONS(1829), + [anon_sym_DASH_DASH] = ACTIONS(1829), + [anon_sym_true] = ACTIONS(1169), + [anon_sym_false] = ACTIONS(1169), + [anon_sym_PLUS] = ACTIONS(1827), + [anon_sym_DASH] = ACTIONS(1827), + [anon_sym_STAR] = ACTIONS(1831), + [anon_sym_CARET] = ACTIONS(1829), + [anon_sym_AMP] = ACTIONS(1829), + [anon_sym_this] = ACTIONS(1173), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1265), + [anon_sym_base] = ACTIONS(1175), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1267), - [anon_sym_unchecked] = ACTIONS(1253), + [sym_predefined_type] = ACTIONS(1177), + [anon_sym_unchecked] = ACTIONS(1163), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1269), - [anon_sym_throw] = ACTIONS(2041), + [anon_sym_default] = ACTIONS(1179), + [anon_sym_throw] = ACTIONS(1833), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2043), - [anon_sym_DOT_DOT] = ACTIONS(2045), + [anon_sym_await] = ACTIONS(1835), + [anon_sym_DOT_DOT] = ACTIONS(1837), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -244543,19 +244429,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1277), - [anon_sym_sizeof] = ACTIONS(1279), - [anon_sym_typeof] = ACTIONS(1281), - [anon_sym___makeref] = ACTIONS(1283), - [anon_sym___reftype] = ACTIONS(1285), - [anon_sym___refvalue] = ACTIONS(1287), - [sym_null_literal] = ACTIONS(1289), - [anon_sym_SQUOTE] = ACTIONS(1291), - [sym_integer_literal] = ACTIONS(1289), - [sym_real_literal] = ACTIONS(1293), - [anon_sym_DQUOTE] = ACTIONS(1295), - [sym_verbatim_string_literal] = ACTIONS(1293), - [aux_sym_preproc_if_token1] = ACTIONS(1297), + [anon_sym_stackalloc] = ACTIONS(1187), + [anon_sym_sizeof] = ACTIONS(1189), + [anon_sym_typeof] = ACTIONS(1191), + [anon_sym___makeref] = ACTIONS(1193), + [anon_sym___reftype] = ACTIONS(1195), + [anon_sym___refvalue] = ACTIONS(1197), + [sym_null_literal] = ACTIONS(1199), + [anon_sym_SQUOTE] = ACTIONS(1201), + [sym_integer_literal] = ACTIONS(1199), + [sym_real_literal] = ACTIONS(1203), + [anon_sym_DQUOTE] = ACTIONS(1205), + [sym_verbatim_string_literal] = ACTIONS(1203), + [aux_sym_preproc_if_token1] = ACTIONS(1207), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -244566,90 +244452,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1299), - [sym_interpolation_verbatim_start] = ACTIONS(1301), - [sym_interpolation_raw_start] = ACTIONS(1303), - [sym_raw_string_start] = ACTIONS(1305), + [sym_interpolation_regular_start] = ACTIONS(1209), + [sym_interpolation_verbatim_start] = ACTIONS(1211), + [sym_interpolation_raw_start] = ACTIONS(1213), + [sym_raw_string_start] = ACTIONS(1215), }, [1200] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2762), - [sym__name] = STATE(5890), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2375), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(4984), - [sym_non_lvalue_expression] = STATE(3438), - [sym_lvalue_expression] = STATE(3526), - [sym__expression_statement_expression] = STATE(3362), - [sym_assignment_expression] = STATE(3449), - [sym_binary_expression] = STATE(3362), - [sym_postfix_unary_expression] = STATE(3449), - [sym_prefix_unary_expression] = STATE(3449), - [sym__pointer_indirection_expression] = STATE(2747), - [sym_query_expression] = STATE(3362), - [sym_from_clause] = STATE(6163), - [sym_conditional_expression] = STATE(3362), - [sym_conditional_access_expression] = STATE(3362), - [sym_as_expression] = STATE(3362), - [sym_is_expression] = STATE(3362), - [sym_is_pattern_expression] = STATE(3362), - [sym_cast_expression] = STATE(3362), - [sym_checked_expression] = STATE(3362), - [sym_invocation_expression] = STATE(3449), - [sym_switch_expression] = STATE(3362), - [sym_await_expression] = STATE(3449), - [sym_throw_expression] = STATE(3362), - [sym_element_access_expression] = STATE(2747), - [sym_interpolated_string_expression] = STATE(3362), - [sym_member_access_expression] = STATE(2747), - [sym_object_creation_expression] = STATE(3449), - [sym_parenthesized_expression] = STATE(3449), - [sym__parenthesized_lvalue_expression] = STATE(2747), - [sym_lambda_expression] = STATE(3362), - [sym__lambda_expression_init] = STATE(7529), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3362), - [sym_anonymous_method_expression] = STATE(3362), - [sym_anonymous_object_creation_expression] = STATE(3362), - [sym_implicit_array_creation_expression] = STATE(3362), - [sym_implicit_object_creation_expression] = STATE(3362), - [sym_implicit_stackalloc_expression] = STATE(3362), - [sym_initializer_expression] = STATE(3362), - [sym_default_expression] = STATE(3362), - [sym_with_expression] = STATE(3362), - [sym_sizeof_expression] = STATE(3362), - [sym_typeof_expression] = STATE(3362), - [sym_makeref_expression] = STATE(3362), - [sym_ref_expression] = STATE(3362), - [sym_reftype_expression] = STATE(3362), - [sym_refvalue_expression] = STATE(3362), - [sym_stackalloc_expression] = STATE(3362), - [sym_range_expression] = STATE(3362), - [sym_tuple_expression] = STATE(2747), - [sym_literal] = STATE(3362), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3362), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2416), + [sym__name] = STATE(5867), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2379), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(5118), + [sym_non_lvalue_expression] = STATE(3040), + [sym_lvalue_expression] = STATE(3617), + [sym__expression_statement_expression] = STATE(3035), + [sym_assignment_expression] = STATE(3043), + [sym_binary_expression] = STATE(3035), + [sym_postfix_unary_expression] = STATE(3043), + [sym_prefix_unary_expression] = STATE(3043), + [sym__pointer_indirection_expression] = STATE(2415), + [sym_query_expression] = STATE(3035), + [sym_from_clause] = STATE(6161), + [sym_conditional_expression] = STATE(3035), + [sym_conditional_access_expression] = STATE(3035), + [sym_as_expression] = STATE(3035), + [sym_is_expression] = STATE(3035), + [sym_is_pattern_expression] = STATE(3035), + [sym_cast_expression] = STATE(3035), + [sym_checked_expression] = STATE(3035), + [sym_invocation_expression] = STATE(3043), + [sym_switch_expression] = STATE(3035), + [sym_await_expression] = STATE(3043), + [sym_throw_expression] = STATE(3035), + [sym_element_access_expression] = STATE(2415), + [sym_interpolated_string_expression] = STATE(3035), + [sym_member_access_expression] = STATE(2415), + [sym_object_creation_expression] = STATE(3043), + [sym_parenthesized_expression] = STATE(3043), + [sym__parenthesized_lvalue_expression] = STATE(2415), + [sym_lambda_expression] = STATE(3035), + [sym__lambda_expression_init] = STATE(7706), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3035), + [sym_anonymous_method_expression] = STATE(3035), + [sym_anonymous_object_creation_expression] = STATE(3035), + [sym_implicit_array_creation_expression] = STATE(3035), + [sym_implicit_object_creation_expression] = STATE(3035), + [sym_implicit_stackalloc_expression] = STATE(3035), + [sym_initializer_expression] = STATE(3035), + [sym_default_expression] = STATE(3035), + [sym_with_expression] = STATE(3035), + [sym_sizeof_expression] = STATE(3035), + [sym_typeof_expression] = STATE(3035), + [sym_makeref_expression] = STATE(3035), + [sym_ref_expression] = STATE(3035), + [sym_reftype_expression] = STATE(3035), + [sym_refvalue_expression] = STATE(3035), + [sym_stackalloc_expression] = STATE(3035), + [sym_range_expression] = STATE(3035), + [sym_tuple_expression] = STATE(2415), + [sym_literal] = STATE(3035), + [sym_character_literal] = STATE(3037), + [sym_string_literal] = STATE(3037), + [sym_raw_string_literal] = STATE(3037), + [sym_boolean_literal] = STATE(3037), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3035), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(1200), [sym_preproc_endregion] = STATE(1200), [sym_preproc_line] = STATE(1200), @@ -244659,47 +244545,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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3385), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3455), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1307), - [anon_sym_LPAREN] = ACTIONS(1805), - [anon_sym_ref] = ACTIONS(1807), - [anon_sym_LBRACE] = ACTIONS(1313), - [anon_sym_delegate] = ACTIONS(1315), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1239), + [anon_sym_LPAREN] = ACTIONS(2159), + [anon_sym_ref] = ACTIONS(2161), + [anon_sym_LBRACE] = ACTIONS(1245), + [anon_sym_delegate] = ACTIONS(1247), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1809), + [anon_sym_new] = ACTIONS(2163), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1319), - [anon_sym_BANG] = ACTIONS(1813), - [anon_sym_TILDE] = ACTIONS(1813), - [anon_sym_PLUS_PLUS] = ACTIONS(1813), - [anon_sym_DASH_DASH] = ACTIONS(1813), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1811), - [anon_sym_DASH] = ACTIONS(1811), - [anon_sym_STAR] = ACTIONS(1815), - [anon_sym_CARET] = ACTIONS(1813), - [anon_sym_AMP] = ACTIONS(1813), - [anon_sym_this] = ACTIONS(1323), + [anon_sym_checked] = ACTIONS(1251), + [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(1257), + [anon_sym_false] = ACTIONS(1257), + [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(1261), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1325), + [anon_sym_base] = ACTIONS(1263), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1319), + [sym_predefined_type] = ACTIONS(1265), + [anon_sym_unchecked] = ACTIONS(1251), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1817), + [anon_sym_default] = ACTIONS(1267), + [anon_sym_throw] = ACTIONS(2171), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1819), - [anon_sym_DOT_DOT] = ACTIONS(1821), + [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), @@ -244712,19 +244598,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1333), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(1335), - [anon_sym___reftype] = ACTIONS(1337), - [anon_sym___refvalue] = ACTIONS(1339), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1341), + [anon_sym_stackalloc] = ACTIONS(1275), + [anon_sym_sizeof] = ACTIONS(1277), + [anon_sym_typeof] = ACTIONS(1279), + [anon_sym___makeref] = ACTIONS(1281), + [anon_sym___reftype] = ACTIONS(1283), + [anon_sym___refvalue] = ACTIONS(1285), + [sym_null_literal] = ACTIONS(1287), + [anon_sym_SQUOTE] = ACTIONS(1289), + [sym_integer_literal] = ACTIONS(1287), + [sym_real_literal] = ACTIONS(1291), + [anon_sym_DQUOTE] = ACTIONS(1293), + [sym_verbatim_string_literal] = ACTIONS(1291), + [aux_sym_preproc_if_token1] = ACTIONS(1295), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -244735,90 +244621,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(151), - [sym_interpolation_verbatim_start] = ACTIONS(153), - [sym_interpolation_raw_start] = ACTIONS(155), - [sym_raw_string_start] = ACTIONS(157), + [sym_interpolation_regular_start] = ACTIONS(1297), + [sym_interpolation_verbatim_start] = ACTIONS(1299), + [sym_interpolation_raw_start] = ACTIONS(1301), + [sym_raw_string_start] = ACTIONS(1303), }, [1201] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2762), - [sym__name] = STATE(5890), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2375), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(3163), - [sym_non_lvalue_expression] = STATE(3438), - [sym_lvalue_expression] = STATE(3526), - [sym__expression_statement_expression] = STATE(3362), - [sym_assignment_expression] = STATE(3449), - [sym_binary_expression] = STATE(3362), - [sym_postfix_unary_expression] = STATE(3449), - [sym_prefix_unary_expression] = STATE(3449), - [sym__pointer_indirection_expression] = STATE(2747), - [sym_query_expression] = STATE(3362), - [sym_from_clause] = STATE(6163), - [sym_conditional_expression] = STATE(3362), - [sym_conditional_access_expression] = STATE(3362), - [sym_as_expression] = STATE(3362), - [sym_is_expression] = STATE(3362), - [sym_is_pattern_expression] = STATE(3362), - [sym_cast_expression] = STATE(3362), - [sym_checked_expression] = STATE(3362), - [sym_invocation_expression] = STATE(3449), - [sym_switch_expression] = STATE(3362), - [sym_await_expression] = STATE(3449), - [sym_throw_expression] = STATE(3362), - [sym_element_access_expression] = STATE(2747), - [sym_interpolated_string_expression] = STATE(3362), - [sym_member_access_expression] = STATE(2747), - [sym_object_creation_expression] = STATE(3449), - [sym_parenthesized_expression] = STATE(3449), - [sym__parenthesized_lvalue_expression] = STATE(2747), - [sym_lambda_expression] = STATE(3362), - [sym__lambda_expression_init] = STATE(7529), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3362), - [sym_anonymous_method_expression] = STATE(3362), - [sym_anonymous_object_creation_expression] = STATE(3362), - [sym_implicit_array_creation_expression] = STATE(3362), - [sym_implicit_object_creation_expression] = STATE(3362), - [sym_implicit_stackalloc_expression] = STATE(3362), - [sym_initializer_expression] = STATE(3362), - [sym_default_expression] = STATE(3362), - [sym_with_expression] = STATE(3362), - [sym_sizeof_expression] = STATE(3362), - [sym_typeof_expression] = STATE(3362), - [sym_makeref_expression] = STATE(3362), - [sym_ref_expression] = STATE(3362), - [sym_reftype_expression] = STATE(3362), - [sym_refvalue_expression] = STATE(3362), - [sym_stackalloc_expression] = STATE(3362), - [sym_range_expression] = STATE(3362), - [sym_tuple_expression] = STATE(2747), - [sym_literal] = STATE(3362), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3362), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2416), + [sym__name] = STATE(5867), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2379), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(5120), + [sym_non_lvalue_expression] = STATE(3040), + [sym_lvalue_expression] = STATE(3617), + [sym__expression_statement_expression] = STATE(3035), + [sym_assignment_expression] = STATE(3043), + [sym_binary_expression] = STATE(3035), + [sym_postfix_unary_expression] = STATE(3043), + [sym_prefix_unary_expression] = STATE(3043), + [sym__pointer_indirection_expression] = STATE(2415), + [sym_query_expression] = STATE(3035), + [sym_from_clause] = STATE(6161), + [sym_conditional_expression] = STATE(3035), + [sym_conditional_access_expression] = STATE(3035), + [sym_as_expression] = STATE(3035), + [sym_is_expression] = STATE(3035), + [sym_is_pattern_expression] = STATE(3035), + [sym_cast_expression] = STATE(3035), + [sym_checked_expression] = STATE(3035), + [sym_invocation_expression] = STATE(3043), + [sym_switch_expression] = STATE(3035), + [sym_await_expression] = STATE(3043), + [sym_throw_expression] = STATE(3035), + [sym_element_access_expression] = STATE(2415), + [sym_interpolated_string_expression] = STATE(3035), + [sym_member_access_expression] = STATE(2415), + [sym_object_creation_expression] = STATE(3043), + [sym_parenthesized_expression] = STATE(3043), + [sym__parenthesized_lvalue_expression] = STATE(2415), + [sym_lambda_expression] = STATE(3035), + [sym__lambda_expression_init] = STATE(7706), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3035), + [sym_anonymous_method_expression] = STATE(3035), + [sym_anonymous_object_creation_expression] = STATE(3035), + [sym_implicit_array_creation_expression] = STATE(3035), + [sym_implicit_object_creation_expression] = STATE(3035), + [sym_implicit_stackalloc_expression] = STATE(3035), + [sym_initializer_expression] = STATE(3035), + [sym_default_expression] = STATE(3035), + [sym_with_expression] = STATE(3035), + [sym_sizeof_expression] = STATE(3035), + [sym_typeof_expression] = STATE(3035), + [sym_makeref_expression] = STATE(3035), + [sym_ref_expression] = STATE(3035), + [sym_reftype_expression] = STATE(3035), + [sym_refvalue_expression] = STATE(3035), + [sym_stackalloc_expression] = STATE(3035), + [sym_range_expression] = STATE(3035), + [sym_tuple_expression] = STATE(2415), + [sym_literal] = STATE(3035), + [sym_character_literal] = STATE(3037), + [sym_string_literal] = STATE(3037), + [sym_raw_string_literal] = STATE(3037), + [sym_boolean_literal] = STATE(3037), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3035), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(1201), [sym_preproc_endregion] = STATE(1201), [sym_preproc_line] = STATE(1201), @@ -244828,47 +244714,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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3385), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3455), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1307), - [anon_sym_LPAREN] = ACTIONS(1805), - [anon_sym_ref] = ACTIONS(1807), - [anon_sym_LBRACE] = ACTIONS(1313), - [anon_sym_delegate] = ACTIONS(1315), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1239), + [anon_sym_LPAREN] = ACTIONS(2159), + [anon_sym_ref] = ACTIONS(2161), + [anon_sym_LBRACE] = ACTIONS(1245), + [anon_sym_delegate] = ACTIONS(1247), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1809), + [anon_sym_new] = ACTIONS(2163), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1319), - [anon_sym_BANG] = ACTIONS(1813), - [anon_sym_TILDE] = ACTIONS(1813), - [anon_sym_PLUS_PLUS] = ACTIONS(1813), - [anon_sym_DASH_DASH] = ACTIONS(1813), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1811), - [anon_sym_DASH] = ACTIONS(1811), - [anon_sym_STAR] = ACTIONS(1815), - [anon_sym_CARET] = ACTIONS(1813), - [anon_sym_AMP] = ACTIONS(1813), - [anon_sym_this] = ACTIONS(1323), + [anon_sym_checked] = ACTIONS(1251), + [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(1257), + [anon_sym_false] = ACTIONS(1257), + [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(1261), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1325), + [anon_sym_base] = ACTIONS(1263), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1319), + [sym_predefined_type] = ACTIONS(1265), + [anon_sym_unchecked] = ACTIONS(1251), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1817), + [anon_sym_default] = ACTIONS(1267), + [anon_sym_throw] = ACTIONS(2171), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1819), - [anon_sym_DOT_DOT] = ACTIONS(1821), + [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), @@ -244881,19 +244767,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1333), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(1335), - [anon_sym___reftype] = ACTIONS(1337), - [anon_sym___refvalue] = ACTIONS(1339), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1341), + [anon_sym_stackalloc] = ACTIONS(1275), + [anon_sym_sizeof] = ACTIONS(1277), + [anon_sym_typeof] = ACTIONS(1279), + [anon_sym___makeref] = ACTIONS(1281), + [anon_sym___reftype] = ACTIONS(1283), + [anon_sym___refvalue] = ACTIONS(1285), + [sym_null_literal] = ACTIONS(1287), + [anon_sym_SQUOTE] = ACTIONS(1289), + [sym_integer_literal] = ACTIONS(1287), + [sym_real_literal] = ACTIONS(1291), + [anon_sym_DQUOTE] = ACTIONS(1293), + [sym_verbatim_string_literal] = ACTIONS(1291), + [aux_sym_preproc_if_token1] = ACTIONS(1295), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -244904,90 +244790,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(151), - [sym_interpolation_verbatim_start] = ACTIONS(153), - [sym_interpolation_raw_start] = ACTIONS(155), - [sym_raw_string_start] = ACTIONS(157), + [sym_interpolation_regular_start] = ACTIONS(1297), + [sym_interpolation_verbatim_start] = ACTIONS(1299), + [sym_interpolation_raw_start] = ACTIONS(1301), + [sym_raw_string_start] = ACTIONS(1303), }, [1202] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(5160), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2204), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(5561), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3461), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3080), - [sym_postfix_unary_expression] = STATE(3111), - [sym_prefix_unary_expression] = STATE(3111), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6154), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3080), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3111), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3080), - [sym_member_access_expression] = STATE(2484), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3111), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7547), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(3080), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3080), - [sym_typeof_expression] = STATE(3080), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2484), - [sym_literal] = STATE(3080), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2416), + [sym__name] = STATE(5867), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2379), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(5121), + [sym_non_lvalue_expression] = STATE(3040), + [sym_lvalue_expression] = STATE(3617), + [sym__expression_statement_expression] = STATE(3035), + [sym_assignment_expression] = STATE(3043), + [sym_binary_expression] = STATE(3035), + [sym_postfix_unary_expression] = STATE(3043), + [sym_prefix_unary_expression] = STATE(3043), + [sym__pointer_indirection_expression] = STATE(2415), + [sym_query_expression] = STATE(3035), + [sym_from_clause] = STATE(6161), + [sym_conditional_expression] = STATE(3035), + [sym_conditional_access_expression] = STATE(3035), + [sym_as_expression] = STATE(3035), + [sym_is_expression] = STATE(3035), + [sym_is_pattern_expression] = STATE(3035), + [sym_cast_expression] = STATE(3035), + [sym_checked_expression] = STATE(3035), + [sym_invocation_expression] = STATE(3043), + [sym_switch_expression] = STATE(3035), + [sym_await_expression] = STATE(3043), + [sym_throw_expression] = STATE(3035), + [sym_element_access_expression] = STATE(2415), + [sym_interpolated_string_expression] = STATE(3035), + [sym_member_access_expression] = STATE(2415), + [sym_object_creation_expression] = STATE(3043), + [sym_parenthesized_expression] = STATE(3043), + [sym__parenthesized_lvalue_expression] = STATE(2415), + [sym_lambda_expression] = STATE(3035), + [sym__lambda_expression_init] = STATE(7706), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3035), + [sym_anonymous_method_expression] = STATE(3035), + [sym_anonymous_object_creation_expression] = STATE(3035), + [sym_implicit_array_creation_expression] = STATE(3035), + [sym_implicit_object_creation_expression] = STATE(3035), + [sym_implicit_stackalloc_expression] = STATE(3035), + [sym_initializer_expression] = STATE(3035), + [sym_default_expression] = STATE(3035), + [sym_with_expression] = STATE(3035), + [sym_sizeof_expression] = STATE(3035), + [sym_typeof_expression] = STATE(3035), + [sym_makeref_expression] = STATE(3035), + [sym_ref_expression] = STATE(3035), + [sym_reftype_expression] = STATE(3035), + [sym_refvalue_expression] = STATE(3035), + [sym_stackalloc_expression] = STATE(3035), + [sym_range_expression] = STATE(3035), + [sym_tuple_expression] = STATE(2415), + [sym_literal] = STATE(3035), + [sym_character_literal] = STATE(3037), + [sym_string_literal] = STATE(3037), + [sym_raw_string_literal] = STATE(3037), + [sym_boolean_literal] = STATE(3037), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3035), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(1202), [sym_preproc_endregion] = STATE(1202), [sym_preproc_line] = STATE(1202), @@ -244997,47 +244883,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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3455), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1481), - [anon_sym_LPAREN] = ACTIONS(1497), - [anon_sym_ref] = ACTIONS(1499), - [anon_sym_LBRACE] = ACTIONS(1487), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1239), + [anon_sym_LPAREN] = ACTIONS(2159), + [anon_sym_ref] = ACTIONS(2161), + [anon_sym_LBRACE] = ACTIONS(1245), + [anon_sym_delegate] = ACTIONS(1247), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1501), + [anon_sym_new] = ACTIONS(2163), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = 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(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(1251), + [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(1257), + [anon_sym_false] = ACTIONS(1257), + [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(1261), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), + [anon_sym_base] = ACTIONS(1263), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1067), + [sym_predefined_type] = ACTIONS(1265), + [anon_sym_unchecked] = ACTIONS(1251), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1503), + [anon_sym_default] = ACTIONS(1267), + [anon_sym_throw] = ACTIONS(2171), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1505), - [anon_sym_DOT_DOT] = ACTIONS(1507), + [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), @@ -245050,19 +244936,19 @@ static const uint16_t ts_parse_table[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(1089), + [anon_sym_stackalloc] = ACTIONS(1275), + [anon_sym_sizeof] = ACTIONS(1277), + [anon_sym_typeof] = ACTIONS(1279), + [anon_sym___makeref] = ACTIONS(1281), + [anon_sym___reftype] = ACTIONS(1283), + [anon_sym___refvalue] = ACTIONS(1285), + [sym_null_literal] = ACTIONS(1287), + [anon_sym_SQUOTE] = ACTIONS(1289), + [sym_integer_literal] = ACTIONS(1287), + [sym_real_literal] = ACTIONS(1291), + [anon_sym_DQUOTE] = ACTIONS(1293), + [sym_verbatim_string_literal] = ACTIONS(1291), + [aux_sym_preproc_if_token1] = ACTIONS(1295), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -245073,90 +244959,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(151), - [sym_interpolation_verbatim_start] = ACTIONS(153), - [sym_interpolation_raw_start] = ACTIONS(155), - [sym_raw_string_start] = ACTIONS(157), + [sym_interpolation_regular_start] = ACTIONS(1297), + [sym_interpolation_verbatim_start] = ACTIONS(1299), + [sym_interpolation_raw_start] = ACTIONS(1301), + [sym_raw_string_start] = ACTIONS(1303), }, [1203] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2762), - [sym__name] = STATE(5890), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2375), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(5014), - [sym_non_lvalue_expression] = STATE(3438), - [sym_lvalue_expression] = STATE(3526), - [sym__expression_statement_expression] = STATE(3362), - [sym_assignment_expression] = STATE(3449), - [sym_binary_expression] = STATE(3362), - [sym_postfix_unary_expression] = STATE(3449), - [sym_prefix_unary_expression] = STATE(3449), - [sym__pointer_indirection_expression] = STATE(2747), - [sym_query_expression] = STATE(3362), - [sym_from_clause] = STATE(6163), - [sym_conditional_expression] = STATE(3362), - [sym_conditional_access_expression] = STATE(3362), - [sym_as_expression] = STATE(3362), - [sym_is_expression] = STATE(3362), - [sym_is_pattern_expression] = STATE(3362), - [sym_cast_expression] = STATE(3362), - [sym_checked_expression] = STATE(3362), - [sym_invocation_expression] = STATE(3449), - [sym_switch_expression] = STATE(3362), - [sym_await_expression] = STATE(3449), - [sym_throw_expression] = STATE(3362), - [sym_element_access_expression] = STATE(2747), - [sym_interpolated_string_expression] = STATE(3362), - [sym_member_access_expression] = STATE(2747), - [sym_object_creation_expression] = STATE(3449), - [sym_parenthesized_expression] = STATE(3449), - [sym__parenthesized_lvalue_expression] = STATE(2747), - [sym_lambda_expression] = STATE(3362), - [sym__lambda_expression_init] = STATE(7529), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3362), - [sym_anonymous_method_expression] = STATE(3362), - [sym_anonymous_object_creation_expression] = STATE(3362), - [sym_implicit_array_creation_expression] = STATE(3362), - [sym_implicit_object_creation_expression] = STATE(3362), - [sym_implicit_stackalloc_expression] = STATE(3362), - [sym_initializer_expression] = STATE(3362), - [sym_default_expression] = STATE(3362), - [sym_with_expression] = STATE(3362), - [sym_sizeof_expression] = STATE(3362), - [sym_typeof_expression] = STATE(3362), - [sym_makeref_expression] = STATE(3362), - [sym_ref_expression] = STATE(3362), - [sym_reftype_expression] = STATE(3362), - [sym_refvalue_expression] = STATE(3362), - [sym_stackalloc_expression] = STATE(3362), - [sym_range_expression] = STATE(3362), - [sym_tuple_expression] = STATE(2747), - [sym_literal] = STATE(3362), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3362), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2416), + [sym__name] = STATE(5867), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2379), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(5122), + [sym_non_lvalue_expression] = STATE(3040), + [sym_lvalue_expression] = STATE(3617), + [sym__expression_statement_expression] = STATE(3035), + [sym_assignment_expression] = STATE(3043), + [sym_binary_expression] = STATE(3035), + [sym_postfix_unary_expression] = STATE(3043), + [sym_prefix_unary_expression] = STATE(3043), + [sym__pointer_indirection_expression] = STATE(2415), + [sym_query_expression] = STATE(3035), + [sym_from_clause] = STATE(6161), + [sym_conditional_expression] = STATE(3035), + [sym_conditional_access_expression] = STATE(3035), + [sym_as_expression] = STATE(3035), + [sym_is_expression] = STATE(3035), + [sym_is_pattern_expression] = STATE(3035), + [sym_cast_expression] = STATE(3035), + [sym_checked_expression] = STATE(3035), + [sym_invocation_expression] = STATE(3043), + [sym_switch_expression] = STATE(3035), + [sym_await_expression] = STATE(3043), + [sym_throw_expression] = STATE(3035), + [sym_element_access_expression] = STATE(2415), + [sym_interpolated_string_expression] = STATE(3035), + [sym_member_access_expression] = STATE(2415), + [sym_object_creation_expression] = STATE(3043), + [sym_parenthesized_expression] = STATE(3043), + [sym__parenthesized_lvalue_expression] = STATE(2415), + [sym_lambda_expression] = STATE(3035), + [sym__lambda_expression_init] = STATE(7706), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3035), + [sym_anonymous_method_expression] = STATE(3035), + [sym_anonymous_object_creation_expression] = STATE(3035), + [sym_implicit_array_creation_expression] = STATE(3035), + [sym_implicit_object_creation_expression] = STATE(3035), + [sym_implicit_stackalloc_expression] = STATE(3035), + [sym_initializer_expression] = STATE(3035), + [sym_default_expression] = STATE(3035), + [sym_with_expression] = STATE(3035), + [sym_sizeof_expression] = STATE(3035), + [sym_typeof_expression] = STATE(3035), + [sym_makeref_expression] = STATE(3035), + [sym_ref_expression] = STATE(3035), + [sym_reftype_expression] = STATE(3035), + [sym_refvalue_expression] = STATE(3035), + [sym_stackalloc_expression] = STATE(3035), + [sym_range_expression] = STATE(3035), + [sym_tuple_expression] = STATE(2415), + [sym_literal] = STATE(3035), + [sym_character_literal] = STATE(3037), + [sym_string_literal] = STATE(3037), + [sym_raw_string_literal] = STATE(3037), + [sym_boolean_literal] = STATE(3037), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3035), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(1203), [sym_preproc_endregion] = STATE(1203), [sym_preproc_line] = STATE(1203), @@ -245166,47 +245052,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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3385), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3455), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1307), - [anon_sym_LPAREN] = ACTIONS(1805), - [anon_sym_ref] = ACTIONS(1807), - [anon_sym_LBRACE] = ACTIONS(1313), - [anon_sym_delegate] = ACTIONS(1315), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1239), + [anon_sym_LPAREN] = ACTIONS(2159), + [anon_sym_ref] = ACTIONS(2161), + [anon_sym_LBRACE] = ACTIONS(1245), + [anon_sym_delegate] = ACTIONS(1247), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1809), + [anon_sym_new] = ACTIONS(2163), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1319), - [anon_sym_BANG] = ACTIONS(1813), - [anon_sym_TILDE] = ACTIONS(1813), - [anon_sym_PLUS_PLUS] = ACTIONS(1813), - [anon_sym_DASH_DASH] = ACTIONS(1813), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1811), - [anon_sym_DASH] = ACTIONS(1811), - [anon_sym_STAR] = ACTIONS(1815), - [anon_sym_CARET] = ACTIONS(1813), - [anon_sym_AMP] = ACTIONS(1813), - [anon_sym_this] = ACTIONS(1323), + [anon_sym_checked] = ACTIONS(1251), + [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(1257), + [anon_sym_false] = ACTIONS(1257), + [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(1261), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1325), + [anon_sym_base] = ACTIONS(1263), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1319), + [sym_predefined_type] = ACTIONS(1265), + [anon_sym_unchecked] = ACTIONS(1251), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1817), + [anon_sym_default] = ACTIONS(1267), + [anon_sym_throw] = ACTIONS(2171), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1819), - [anon_sym_DOT_DOT] = ACTIONS(1821), + [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), @@ -245219,19 +245105,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1333), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(1335), - [anon_sym___reftype] = ACTIONS(1337), - [anon_sym___refvalue] = ACTIONS(1339), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1341), + [anon_sym_stackalloc] = ACTIONS(1275), + [anon_sym_sizeof] = ACTIONS(1277), + [anon_sym_typeof] = ACTIONS(1279), + [anon_sym___makeref] = ACTIONS(1281), + [anon_sym___reftype] = ACTIONS(1283), + [anon_sym___refvalue] = ACTIONS(1285), + [sym_null_literal] = ACTIONS(1287), + [anon_sym_SQUOTE] = ACTIONS(1289), + [sym_integer_literal] = ACTIONS(1287), + [sym_real_literal] = ACTIONS(1291), + [anon_sym_DQUOTE] = ACTIONS(1293), + [sym_verbatim_string_literal] = ACTIONS(1291), + [aux_sym_preproc_if_token1] = ACTIONS(1295), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -245242,90 +245128,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(151), - [sym_interpolation_verbatim_start] = ACTIONS(153), - [sym_interpolation_raw_start] = ACTIONS(155), - [sym_raw_string_start] = ACTIONS(157), + [sym_interpolation_regular_start] = ACTIONS(1297), + [sym_interpolation_verbatim_start] = ACTIONS(1299), + [sym_interpolation_raw_start] = ACTIONS(1301), + [sym_raw_string_start] = ACTIONS(1303), }, [1204] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(3184), - [sym__name] = STATE(5883), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2313), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2269), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(4262), - [sym_non_lvalue_expression] = STATE(4541), - [sym_lvalue_expression] = STATE(3527), - [sym__expression_statement_expression] = STATE(4529), - [sym_assignment_expression] = STATE(4543), - [sym_binary_expression] = STATE(4529), - [sym_postfix_unary_expression] = STATE(4543), - [sym_prefix_unary_expression] = STATE(4543), - [sym__pointer_indirection_expression] = STATE(3175), - [sym_query_expression] = STATE(4529), - [sym_from_clause] = STATE(6169), - [sym_conditional_expression] = STATE(4529), - [sym_conditional_access_expression] = STATE(4529), - [sym_as_expression] = STATE(4529), - [sym_is_expression] = STATE(4529), - [sym_is_pattern_expression] = STATE(4529), - [sym_cast_expression] = STATE(4529), - [sym_checked_expression] = STATE(4529), - [sym_invocation_expression] = STATE(4543), - [sym_switch_expression] = STATE(4529), - [sym_await_expression] = STATE(4543), - [sym_throw_expression] = STATE(4529), - [sym_element_access_expression] = STATE(3175), - [sym_interpolated_string_expression] = STATE(4529), - [sym_member_access_expression] = STATE(3175), - [sym_object_creation_expression] = STATE(4543), - [sym_parenthesized_expression] = STATE(4543), - [sym__parenthesized_lvalue_expression] = STATE(3175), - [sym_lambda_expression] = STATE(4529), - [sym__lambda_expression_init] = STATE(7337), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(4529), - [sym_anonymous_method_expression] = STATE(4529), - [sym_anonymous_object_creation_expression] = STATE(4529), - [sym_implicit_array_creation_expression] = STATE(4529), - [sym_implicit_object_creation_expression] = STATE(4529), - [sym_implicit_stackalloc_expression] = STATE(4529), - [sym_initializer_expression] = STATE(4529), - [sym_default_expression] = STATE(4529), - [sym_with_expression] = STATE(4529), - [sym_sizeof_expression] = STATE(4529), - [sym_typeof_expression] = STATE(4529), - [sym_makeref_expression] = STATE(4529), - [sym_ref_expression] = STATE(4529), - [sym_reftype_expression] = STATE(4529), - [sym_refvalue_expression] = STATE(4529), - [sym_stackalloc_expression] = STATE(4529), - [sym_range_expression] = STATE(4529), - [sym_tuple_expression] = STATE(3175), - [sym_literal] = STATE(4529), - [sym_character_literal] = STATE(4536), - [sym_string_literal] = STATE(4536), - [sym_raw_string_literal] = STATE(4536), - [sym_boolean_literal] = STATE(4536), - [sym_identifier] = STATE(2246), - [sym__reserved_identifier] = STATE(2240), - [sym_preproc_if_in_expression] = STATE(4529), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2416), + [sym__name] = STATE(5867), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2379), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(5123), + [sym_non_lvalue_expression] = STATE(3040), + [sym_lvalue_expression] = STATE(3617), + [sym__expression_statement_expression] = STATE(3035), + [sym_assignment_expression] = STATE(3043), + [sym_binary_expression] = STATE(3035), + [sym_postfix_unary_expression] = STATE(3043), + [sym_prefix_unary_expression] = STATE(3043), + [sym__pointer_indirection_expression] = STATE(2415), + [sym_query_expression] = STATE(3035), + [sym_from_clause] = STATE(6161), + [sym_conditional_expression] = STATE(3035), + [sym_conditional_access_expression] = STATE(3035), + [sym_as_expression] = STATE(3035), + [sym_is_expression] = STATE(3035), + [sym_is_pattern_expression] = STATE(3035), + [sym_cast_expression] = STATE(3035), + [sym_checked_expression] = STATE(3035), + [sym_invocation_expression] = STATE(3043), + [sym_switch_expression] = STATE(3035), + [sym_await_expression] = STATE(3043), + [sym_throw_expression] = STATE(3035), + [sym_element_access_expression] = STATE(2415), + [sym_interpolated_string_expression] = STATE(3035), + [sym_member_access_expression] = STATE(2415), + [sym_object_creation_expression] = STATE(3043), + [sym_parenthesized_expression] = STATE(3043), + [sym__parenthesized_lvalue_expression] = STATE(2415), + [sym_lambda_expression] = STATE(3035), + [sym__lambda_expression_init] = STATE(7706), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3035), + [sym_anonymous_method_expression] = STATE(3035), + [sym_anonymous_object_creation_expression] = STATE(3035), + [sym_implicit_array_creation_expression] = STATE(3035), + [sym_implicit_object_creation_expression] = STATE(3035), + [sym_implicit_stackalloc_expression] = STATE(3035), + [sym_initializer_expression] = STATE(3035), + [sym_default_expression] = STATE(3035), + [sym_with_expression] = STATE(3035), + [sym_sizeof_expression] = STATE(3035), + [sym_typeof_expression] = STATE(3035), + [sym_makeref_expression] = STATE(3035), + [sym_ref_expression] = STATE(3035), + [sym_reftype_expression] = STATE(3035), + [sym_refvalue_expression] = STATE(3035), + [sym_stackalloc_expression] = STATE(3035), + [sym_range_expression] = STATE(3035), + [sym_tuple_expression] = STATE(2415), + [sym_literal] = STATE(3035), + [sym_character_literal] = STATE(3037), + [sym_string_literal] = STATE(3037), + [sym_raw_string_literal] = STATE(3037), + [sym_boolean_literal] = STATE(3037), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3035), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(1204), [sym_preproc_endregion] = STATE(1204), [sym_preproc_line] = STATE(1204), @@ -245335,166 +245221,166 @@ 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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3363), - [sym__identifier_token] = ACTIONS(1387), - [anon_sym_alias] = ACTIONS(1389), - [anon_sym_global] = ACTIONS(1389), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1391), - [anon_sym_LPAREN] = ACTIONS(1745), - [anon_sym_ref] = ACTIONS(1747), - [anon_sym_LBRACE] = ACTIONS(1397), - [anon_sym_delegate] = ACTIONS(1399), - [anon_sym_async] = ACTIONS(1047), - [anon_sym_file] = ACTIONS(1389), - [anon_sym_new] = ACTIONS(1467), - [anon_sym_where] = ACTIONS(1389), - [anon_sym_notnull] = ACTIONS(1389), - [anon_sym_unmanaged] = ACTIONS(1389), - [anon_sym_checked] = ACTIONS(1403), - [anon_sym_BANG] = ACTIONS(1751), - [anon_sym_TILDE] = ACTIONS(1751), - [anon_sym_PLUS_PLUS] = ACTIONS(1751), - [anon_sym_DASH_DASH] = ACTIONS(1751), - [anon_sym_true] = ACTIONS(1409), - [anon_sym_false] = ACTIONS(1409), - [anon_sym_PLUS] = ACTIONS(1749), - [anon_sym_DASH] = ACTIONS(1749), - [anon_sym_STAR] = ACTIONS(1473), - [anon_sym_CARET] = ACTIONS(1751), - [anon_sym_AMP] = ACTIONS(1751), - [anon_sym_this] = ACTIONS(1413), - [anon_sym_scoped] = ACTIONS(1415), - [anon_sym_base] = ACTIONS(1417), - [anon_sym_var] = ACTIONS(1419), - [sym_predefined_type] = ACTIONS(1421), - [anon_sym_unchecked] = ACTIONS(1403), - [anon_sym_yield] = ACTIONS(1389), - [anon_sym_default] = ACTIONS(1423), - [anon_sym_throw] = ACTIONS(1753), - [anon_sym_when] = ACTIONS(1389), - [anon_sym_await] = ACTIONS(1755), - [anon_sym_DOT_DOT] = ACTIONS(1757), - [anon_sym_from] = ACTIONS(1431), - [anon_sym_into] = ACTIONS(1389), - [anon_sym_join] = ACTIONS(1389), - [anon_sym_on] = ACTIONS(1389), - [anon_sym_equals] = ACTIONS(1389), - [anon_sym_let] = ACTIONS(1389), - [anon_sym_orderby] = ACTIONS(1389), - [anon_sym_ascending] = ACTIONS(1389), - [anon_sym_descending] = ACTIONS(1389), - [anon_sym_group] = ACTIONS(1389), - [anon_sym_by] = ACTIONS(1389), - [anon_sym_select] = ACTIONS(1389), - [anon_sym_stackalloc] = ACTIONS(1433), - [anon_sym_sizeof] = ACTIONS(1435), - [anon_sym_typeof] = ACTIONS(1437), - [anon_sym___makeref] = ACTIONS(1439), - [anon_sym___reftype] = ACTIONS(1441), - [anon_sym___refvalue] = ACTIONS(1443), - [sym_null_literal] = ACTIONS(1445), - [anon_sym_SQUOTE] = ACTIONS(1447), - [sym_integer_literal] = ACTIONS(1445), - [sym_real_literal] = ACTIONS(1449), - [anon_sym_DQUOTE] = ACTIONS(1451), - [sym_verbatim_string_literal] = ACTIONS(1449), - [aux_sym_preproc_if_token1] = ACTIONS(1453), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1455), - [sym_interpolation_verbatim_start] = ACTIONS(1457), - [sym_interpolation_raw_start] = ACTIONS(1459), - [sym_raw_string_start] = ACTIONS(1461), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3455), + [sym__identifier_token] = ACTIONS(25), + [anon_sym_alias] = ACTIONS(29), + [anon_sym_global] = ACTIONS(29), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1239), + [anon_sym_LPAREN] = ACTIONS(2159), + [anon_sym_ref] = ACTIONS(2161), + [anon_sym_LBRACE] = ACTIONS(1245), + [anon_sym_delegate] = ACTIONS(1247), + [anon_sym_async] = ACTIONS(1045), + [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(1251), + [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(1257), + [anon_sym_false] = ACTIONS(1257), + [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(1261), + [anon_sym_scoped] = ACTIONS(85), + [anon_sym_base] = ACTIONS(1263), + [anon_sym_var] = ACTIONS(89), + [sym_predefined_type] = ACTIONS(1265), + [anon_sym_unchecked] = ACTIONS(1251), + [anon_sym_yield] = ACTIONS(29), + [anon_sym_default] = ACTIONS(1267), + [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(1275), + [anon_sym_sizeof] = ACTIONS(1277), + [anon_sym_typeof] = ACTIONS(1279), + [anon_sym___makeref] = ACTIONS(1281), + [anon_sym___reftype] = ACTIONS(1283), + [anon_sym___refvalue] = ACTIONS(1285), + [sym_null_literal] = ACTIONS(1287), + [anon_sym_SQUOTE] = ACTIONS(1289), + [sym_integer_literal] = ACTIONS(1287), + [sym_real_literal] = ACTIONS(1291), + [anon_sym_DQUOTE] = ACTIONS(1293), + [sym_verbatim_string_literal] = ACTIONS(1291), + [aux_sym_preproc_if_token1] = ACTIONS(1295), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + [sym_interpolation_regular_start] = ACTIONS(1297), + [sym_interpolation_verbatim_start] = ACTIONS(1299), + [sym_interpolation_raw_start] = ACTIONS(1301), + [sym_raw_string_start] = ACTIONS(1303), }, [1205] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2762), - [sym__name] = STATE(5890), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2375), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(5017), - [sym_non_lvalue_expression] = STATE(3438), - [sym_lvalue_expression] = STATE(3526), - [sym__expression_statement_expression] = STATE(3362), - [sym_assignment_expression] = STATE(3449), - [sym_binary_expression] = STATE(3362), - [sym_postfix_unary_expression] = STATE(3449), - [sym_prefix_unary_expression] = STATE(3449), - [sym__pointer_indirection_expression] = STATE(2747), - [sym_query_expression] = STATE(3362), - [sym_from_clause] = STATE(6163), - [sym_conditional_expression] = STATE(3362), - [sym_conditional_access_expression] = STATE(3362), - [sym_as_expression] = STATE(3362), - [sym_is_expression] = STATE(3362), - [sym_is_pattern_expression] = STATE(3362), - [sym_cast_expression] = STATE(3362), - [sym_checked_expression] = STATE(3362), - [sym_invocation_expression] = STATE(3449), - [sym_switch_expression] = STATE(3362), - [sym_await_expression] = STATE(3449), - [sym_throw_expression] = STATE(3362), - [sym_element_access_expression] = STATE(2747), - [sym_interpolated_string_expression] = STATE(3362), - [sym_member_access_expression] = STATE(2747), - [sym_object_creation_expression] = STATE(3449), - [sym_parenthesized_expression] = STATE(3449), - [sym__parenthesized_lvalue_expression] = STATE(2747), - [sym_lambda_expression] = STATE(3362), - [sym__lambda_expression_init] = STATE(7529), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3362), - [sym_anonymous_method_expression] = STATE(3362), - [sym_anonymous_object_creation_expression] = STATE(3362), - [sym_implicit_array_creation_expression] = STATE(3362), - [sym_implicit_object_creation_expression] = STATE(3362), - [sym_implicit_stackalloc_expression] = STATE(3362), - [sym_initializer_expression] = STATE(3362), - [sym_default_expression] = STATE(3362), - [sym_with_expression] = STATE(3362), - [sym_sizeof_expression] = STATE(3362), - [sym_typeof_expression] = STATE(3362), - [sym_makeref_expression] = STATE(3362), - [sym_ref_expression] = STATE(3362), - [sym_reftype_expression] = STATE(3362), - [sym_refvalue_expression] = STATE(3362), - [sym_stackalloc_expression] = STATE(3362), - [sym_range_expression] = STATE(3362), - [sym_tuple_expression] = STATE(2747), - [sym_literal] = STATE(3362), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3362), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2416), + [sym__name] = STATE(5867), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2379), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(5124), + [sym_non_lvalue_expression] = STATE(3040), + [sym_lvalue_expression] = STATE(3617), + [sym__expression_statement_expression] = STATE(3035), + [sym_assignment_expression] = STATE(3043), + [sym_binary_expression] = STATE(3035), + [sym_postfix_unary_expression] = STATE(3043), + [sym_prefix_unary_expression] = STATE(3043), + [sym__pointer_indirection_expression] = STATE(2415), + [sym_query_expression] = STATE(3035), + [sym_from_clause] = STATE(6161), + [sym_conditional_expression] = STATE(3035), + [sym_conditional_access_expression] = STATE(3035), + [sym_as_expression] = STATE(3035), + [sym_is_expression] = STATE(3035), + [sym_is_pattern_expression] = STATE(3035), + [sym_cast_expression] = STATE(3035), + [sym_checked_expression] = STATE(3035), + [sym_invocation_expression] = STATE(3043), + [sym_switch_expression] = STATE(3035), + [sym_await_expression] = STATE(3043), + [sym_throw_expression] = STATE(3035), + [sym_element_access_expression] = STATE(2415), + [sym_interpolated_string_expression] = STATE(3035), + [sym_member_access_expression] = STATE(2415), + [sym_object_creation_expression] = STATE(3043), + [sym_parenthesized_expression] = STATE(3043), + [sym__parenthesized_lvalue_expression] = STATE(2415), + [sym_lambda_expression] = STATE(3035), + [sym__lambda_expression_init] = STATE(7706), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3035), + [sym_anonymous_method_expression] = STATE(3035), + [sym_anonymous_object_creation_expression] = STATE(3035), + [sym_implicit_array_creation_expression] = STATE(3035), + [sym_implicit_object_creation_expression] = STATE(3035), + [sym_implicit_stackalloc_expression] = STATE(3035), + [sym_initializer_expression] = STATE(3035), + [sym_default_expression] = STATE(3035), + [sym_with_expression] = STATE(3035), + [sym_sizeof_expression] = STATE(3035), + [sym_typeof_expression] = STATE(3035), + [sym_makeref_expression] = STATE(3035), + [sym_ref_expression] = STATE(3035), + [sym_reftype_expression] = STATE(3035), + [sym_refvalue_expression] = STATE(3035), + [sym_stackalloc_expression] = STATE(3035), + [sym_range_expression] = STATE(3035), + [sym_tuple_expression] = STATE(2415), + [sym_literal] = STATE(3035), + [sym_character_literal] = STATE(3037), + [sym_string_literal] = STATE(3037), + [sym_raw_string_literal] = STATE(3037), + [sym_boolean_literal] = STATE(3037), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3035), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(1205), [sym_preproc_endregion] = STATE(1205), [sym_preproc_line] = STATE(1205), @@ -245504,47 +245390,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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3385), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3455), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1307), - [anon_sym_LPAREN] = ACTIONS(1805), - [anon_sym_ref] = ACTIONS(1807), - [anon_sym_LBRACE] = ACTIONS(1313), - [anon_sym_delegate] = ACTIONS(1315), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1239), + [anon_sym_LPAREN] = ACTIONS(2159), + [anon_sym_ref] = ACTIONS(2161), + [anon_sym_LBRACE] = ACTIONS(1245), + [anon_sym_delegate] = ACTIONS(1247), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1809), + [anon_sym_new] = ACTIONS(2163), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1319), - [anon_sym_BANG] = ACTIONS(1813), - [anon_sym_TILDE] = ACTIONS(1813), - [anon_sym_PLUS_PLUS] = ACTIONS(1813), - [anon_sym_DASH_DASH] = ACTIONS(1813), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1811), - [anon_sym_DASH] = ACTIONS(1811), - [anon_sym_STAR] = ACTIONS(1815), - [anon_sym_CARET] = ACTIONS(1813), - [anon_sym_AMP] = ACTIONS(1813), - [anon_sym_this] = ACTIONS(1323), + [anon_sym_checked] = ACTIONS(1251), + [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(1257), + [anon_sym_false] = ACTIONS(1257), + [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(1261), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1325), + [anon_sym_base] = ACTIONS(1263), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1319), + [sym_predefined_type] = ACTIONS(1265), + [anon_sym_unchecked] = ACTIONS(1251), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1817), + [anon_sym_default] = ACTIONS(1267), + [anon_sym_throw] = ACTIONS(2171), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1819), - [anon_sym_DOT_DOT] = ACTIONS(1821), + [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), @@ -245557,19 +245443,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1333), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(1335), - [anon_sym___reftype] = ACTIONS(1337), - [anon_sym___refvalue] = ACTIONS(1339), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1341), + [anon_sym_stackalloc] = ACTIONS(1275), + [anon_sym_sizeof] = ACTIONS(1277), + [anon_sym_typeof] = ACTIONS(1279), + [anon_sym___makeref] = ACTIONS(1281), + [anon_sym___reftype] = ACTIONS(1283), + [anon_sym___refvalue] = ACTIONS(1285), + [sym_null_literal] = ACTIONS(1287), + [anon_sym_SQUOTE] = ACTIONS(1289), + [sym_integer_literal] = ACTIONS(1287), + [sym_real_literal] = ACTIONS(1291), + [anon_sym_DQUOTE] = ACTIONS(1293), + [sym_verbatim_string_literal] = ACTIONS(1291), + [aux_sym_preproc_if_token1] = ACTIONS(1295), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -245580,90 +245466,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(151), - [sym_interpolation_verbatim_start] = ACTIONS(153), - [sym_interpolation_raw_start] = ACTIONS(155), - [sym_raw_string_start] = ACTIONS(157), + [sym_interpolation_regular_start] = ACTIONS(1297), + [sym_interpolation_verbatim_start] = ACTIONS(1299), + [sym_interpolation_raw_start] = ACTIONS(1301), + [sym_raw_string_start] = ACTIONS(1303), }, [1206] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2610), - [sym__name] = STATE(5872), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2397), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(4717), - [sym_non_lvalue_expression] = STATE(3277), - [sym_lvalue_expression] = STATE(3407), - [sym__expression_statement_expression] = STATE(3228), - [sym_assignment_expression] = STATE(3289), - [sym_binary_expression] = STATE(3228), - [sym_postfix_unary_expression] = STATE(3289), - [sym_prefix_unary_expression] = STATE(3289), - [sym__pointer_indirection_expression] = STATE(2609), - [sym_query_expression] = STATE(3228), - [sym_from_clause] = STATE(6165), - [sym_conditional_expression] = STATE(3228), - [sym_conditional_access_expression] = STATE(3228), - [sym_as_expression] = STATE(3228), - [sym_is_expression] = STATE(3228), - [sym_is_pattern_expression] = STATE(3228), - [sym_cast_expression] = STATE(3228), - [sym_checked_expression] = STATE(3228), - [sym_invocation_expression] = STATE(3289), - [sym_switch_expression] = STATE(3228), - [sym_await_expression] = STATE(3289), - [sym_throw_expression] = STATE(3228), - [sym_element_access_expression] = STATE(2609), - [sym_interpolated_string_expression] = STATE(3228), - [sym_member_access_expression] = STATE(2609), - [sym_object_creation_expression] = STATE(3289), - [sym_parenthesized_expression] = STATE(3289), - [sym__parenthesized_lvalue_expression] = STATE(2609), - [sym_lambda_expression] = STATE(3228), - [sym__lambda_expression_init] = STATE(7478), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3228), - [sym_anonymous_method_expression] = STATE(3228), - [sym_anonymous_object_creation_expression] = STATE(3228), - [sym_implicit_array_creation_expression] = STATE(3228), - [sym_implicit_object_creation_expression] = STATE(3228), - [sym_implicit_stackalloc_expression] = STATE(3228), - [sym_initializer_expression] = STATE(3228), - [sym_default_expression] = STATE(3228), - [sym_with_expression] = STATE(3228), - [sym_sizeof_expression] = STATE(3228), - [sym_typeof_expression] = STATE(3228), - [sym_makeref_expression] = STATE(3228), - [sym_ref_expression] = STATE(3228), - [sym_reftype_expression] = STATE(3228), - [sym_refvalue_expression] = STATE(3228), - [sym_stackalloc_expression] = STATE(3228), - [sym_range_expression] = STATE(3228), - [sym_tuple_expression] = STATE(2609), - [sym_literal] = STATE(3228), - [sym_character_literal] = STATE(3278), - [sym_string_literal] = STATE(3278), - [sym_raw_string_literal] = STATE(3278), - [sym_boolean_literal] = STATE(3278), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3228), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2416), + [sym__name] = STATE(5867), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2379), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(5125), + [sym_non_lvalue_expression] = STATE(3040), + [sym_lvalue_expression] = STATE(3617), + [sym__expression_statement_expression] = STATE(3035), + [sym_assignment_expression] = STATE(3043), + [sym_binary_expression] = STATE(3035), + [sym_postfix_unary_expression] = STATE(3043), + [sym_prefix_unary_expression] = STATE(3043), + [sym__pointer_indirection_expression] = STATE(2415), + [sym_query_expression] = STATE(3035), + [sym_from_clause] = STATE(6161), + [sym_conditional_expression] = STATE(3035), + [sym_conditional_access_expression] = STATE(3035), + [sym_as_expression] = STATE(3035), + [sym_is_expression] = STATE(3035), + [sym_is_pattern_expression] = STATE(3035), + [sym_cast_expression] = STATE(3035), + [sym_checked_expression] = STATE(3035), + [sym_invocation_expression] = STATE(3043), + [sym_switch_expression] = STATE(3035), + [sym_await_expression] = STATE(3043), + [sym_throw_expression] = STATE(3035), + [sym_element_access_expression] = STATE(2415), + [sym_interpolated_string_expression] = STATE(3035), + [sym_member_access_expression] = STATE(2415), + [sym_object_creation_expression] = STATE(3043), + [sym_parenthesized_expression] = STATE(3043), + [sym__parenthesized_lvalue_expression] = STATE(2415), + [sym_lambda_expression] = STATE(3035), + [sym__lambda_expression_init] = STATE(7706), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3035), + [sym_anonymous_method_expression] = STATE(3035), + [sym_anonymous_object_creation_expression] = STATE(3035), + [sym_implicit_array_creation_expression] = STATE(3035), + [sym_implicit_object_creation_expression] = STATE(3035), + [sym_implicit_stackalloc_expression] = STATE(3035), + [sym_initializer_expression] = STATE(3035), + [sym_default_expression] = STATE(3035), + [sym_with_expression] = STATE(3035), + [sym_sizeof_expression] = STATE(3035), + [sym_typeof_expression] = STATE(3035), + [sym_makeref_expression] = STATE(3035), + [sym_ref_expression] = STATE(3035), + [sym_reftype_expression] = STATE(3035), + [sym_refvalue_expression] = STATE(3035), + [sym_stackalloc_expression] = STATE(3035), + [sym_range_expression] = STATE(3035), + [sym_tuple_expression] = STATE(2415), + [sym_literal] = STATE(3035), + [sym_character_literal] = STATE(3037), + [sym_string_literal] = STATE(3037), + [sym_raw_string_literal] = STATE(3037), + [sym_boolean_literal] = STATE(3037), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3035), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(1206), [sym_preproc_endregion] = STATE(1206), [sym_preproc_line] = STATE(1206), @@ -245673,47 +245559,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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3396), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3455), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1153), - [anon_sym_LPAREN] = ACTIONS(1823), - [anon_sym_ref] = ACTIONS(1825), - [anon_sym_LBRACE] = ACTIONS(1159), - [anon_sym_delegate] = ACTIONS(1161), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1239), + [anon_sym_LPAREN] = ACTIONS(2159), + [anon_sym_ref] = ACTIONS(2161), + [anon_sym_LBRACE] = ACTIONS(1245), + [anon_sym_delegate] = ACTIONS(1247), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1827), + [anon_sym_new] = ACTIONS(2163), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1167), - [anon_sym_BANG] = ACTIONS(1831), - [anon_sym_TILDE] = ACTIONS(1831), - [anon_sym_PLUS_PLUS] = ACTIONS(1831), - [anon_sym_DASH_DASH] = ACTIONS(1831), - [anon_sym_true] = ACTIONS(1173), - [anon_sym_false] = ACTIONS(1173), - [anon_sym_PLUS] = ACTIONS(1829), - [anon_sym_DASH] = ACTIONS(1829), - [anon_sym_STAR] = ACTIONS(1833), - [anon_sym_CARET] = ACTIONS(1831), - [anon_sym_AMP] = ACTIONS(1831), - [anon_sym_this] = ACTIONS(1177), + [anon_sym_checked] = ACTIONS(1251), + [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(1257), + [anon_sym_false] = ACTIONS(1257), + [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(1261), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1179), + [anon_sym_base] = ACTIONS(1263), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1181), - [anon_sym_unchecked] = ACTIONS(1167), + [sym_predefined_type] = ACTIONS(1265), + [anon_sym_unchecked] = ACTIONS(1251), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1183), - [anon_sym_throw] = ACTIONS(1835), + [anon_sym_default] = ACTIONS(1267), + [anon_sym_throw] = ACTIONS(2171), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1837), - [anon_sym_DOT_DOT] = ACTIONS(1839), + [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), @@ -245726,19 +245612,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1191), - [anon_sym_sizeof] = ACTIONS(1193), - [anon_sym_typeof] = ACTIONS(1195), - [anon_sym___makeref] = ACTIONS(1197), - [anon_sym___reftype] = ACTIONS(1199), - [anon_sym___refvalue] = ACTIONS(1201), - [sym_null_literal] = ACTIONS(1203), - [anon_sym_SQUOTE] = ACTIONS(1205), - [sym_integer_literal] = ACTIONS(1203), - [sym_real_literal] = ACTIONS(1207), - [anon_sym_DQUOTE] = ACTIONS(1209), - [sym_verbatim_string_literal] = ACTIONS(1207), - [aux_sym_preproc_if_token1] = ACTIONS(1211), + [anon_sym_stackalloc] = ACTIONS(1275), + [anon_sym_sizeof] = ACTIONS(1277), + [anon_sym_typeof] = ACTIONS(1279), + [anon_sym___makeref] = ACTIONS(1281), + [anon_sym___reftype] = ACTIONS(1283), + [anon_sym___refvalue] = ACTIONS(1285), + [sym_null_literal] = ACTIONS(1287), + [anon_sym_SQUOTE] = ACTIONS(1289), + [sym_integer_literal] = ACTIONS(1287), + [sym_real_literal] = ACTIONS(1291), + [anon_sym_DQUOTE] = ACTIONS(1293), + [sym_verbatim_string_literal] = ACTIONS(1291), + [aux_sym_preproc_if_token1] = ACTIONS(1295), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -245749,90 +245635,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1213), - [sym_interpolation_verbatim_start] = ACTIONS(1215), - [sym_interpolation_raw_start] = ACTIONS(1217), - [sym_raw_string_start] = ACTIONS(1219), + [sym_interpolation_regular_start] = ACTIONS(1297), + [sym_interpolation_verbatim_start] = ACTIONS(1299), + [sym_interpolation_raw_start] = ACTIONS(1301), + [sym_raw_string_start] = ACTIONS(1303), }, [1207] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2610), - [sym__name] = STATE(5872), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2397), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(3139), - [sym_non_lvalue_expression] = STATE(3277), - [sym_lvalue_expression] = STATE(3407), - [sym__expression_statement_expression] = STATE(3228), - [sym_assignment_expression] = STATE(3289), - [sym_binary_expression] = STATE(3228), - [sym_postfix_unary_expression] = STATE(3289), - [sym_prefix_unary_expression] = STATE(3289), - [sym__pointer_indirection_expression] = STATE(2609), - [sym_query_expression] = STATE(3228), - [sym_from_clause] = STATE(6165), - [sym_conditional_expression] = STATE(3228), - [sym_conditional_access_expression] = STATE(3228), - [sym_as_expression] = STATE(3228), - [sym_is_expression] = STATE(3228), - [sym_is_pattern_expression] = STATE(3228), - [sym_cast_expression] = STATE(3228), - [sym_checked_expression] = STATE(3228), - [sym_invocation_expression] = STATE(3289), - [sym_switch_expression] = STATE(3228), - [sym_await_expression] = STATE(3289), - [sym_throw_expression] = STATE(3228), - [sym_element_access_expression] = STATE(2609), - [sym_interpolated_string_expression] = STATE(3228), - [sym_member_access_expression] = STATE(2609), - [sym_object_creation_expression] = STATE(3289), - [sym_parenthesized_expression] = STATE(3289), - [sym__parenthesized_lvalue_expression] = STATE(2609), - [sym_lambda_expression] = STATE(3228), - [sym__lambda_expression_init] = STATE(7478), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3228), - [sym_anonymous_method_expression] = STATE(3228), - [sym_anonymous_object_creation_expression] = STATE(3228), - [sym_implicit_array_creation_expression] = STATE(3228), - [sym_implicit_object_creation_expression] = STATE(3228), - [sym_implicit_stackalloc_expression] = STATE(3228), - [sym_initializer_expression] = STATE(3228), - [sym_default_expression] = STATE(3228), - [sym_with_expression] = STATE(3228), - [sym_sizeof_expression] = STATE(3228), - [sym_typeof_expression] = STATE(3228), - [sym_makeref_expression] = STATE(3228), - [sym_ref_expression] = STATE(3228), - [sym_reftype_expression] = STATE(3228), - [sym_refvalue_expression] = STATE(3228), - [sym_stackalloc_expression] = STATE(3228), - [sym_range_expression] = STATE(3228), - [sym_tuple_expression] = STATE(2609), - [sym_literal] = STATE(3228), - [sym_character_literal] = STATE(3278), - [sym_string_literal] = STATE(3278), - [sym_raw_string_literal] = STATE(3278), - [sym_boolean_literal] = STATE(3278), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3228), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2416), + [sym__name] = STATE(5867), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2379), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(5128), + [sym_non_lvalue_expression] = STATE(3040), + [sym_lvalue_expression] = STATE(3617), + [sym__expression_statement_expression] = STATE(3035), + [sym_assignment_expression] = STATE(3043), + [sym_binary_expression] = STATE(3035), + [sym_postfix_unary_expression] = STATE(3043), + [sym_prefix_unary_expression] = STATE(3043), + [sym__pointer_indirection_expression] = STATE(2415), + [sym_query_expression] = STATE(3035), + [sym_from_clause] = STATE(6161), + [sym_conditional_expression] = STATE(3035), + [sym_conditional_access_expression] = STATE(3035), + [sym_as_expression] = STATE(3035), + [sym_is_expression] = STATE(3035), + [sym_is_pattern_expression] = STATE(3035), + [sym_cast_expression] = STATE(3035), + [sym_checked_expression] = STATE(3035), + [sym_invocation_expression] = STATE(3043), + [sym_switch_expression] = STATE(3035), + [sym_await_expression] = STATE(3043), + [sym_throw_expression] = STATE(3035), + [sym_element_access_expression] = STATE(2415), + [sym_interpolated_string_expression] = STATE(3035), + [sym_member_access_expression] = STATE(2415), + [sym_object_creation_expression] = STATE(3043), + [sym_parenthesized_expression] = STATE(3043), + [sym__parenthesized_lvalue_expression] = STATE(2415), + [sym_lambda_expression] = STATE(3035), + [sym__lambda_expression_init] = STATE(7706), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3035), + [sym_anonymous_method_expression] = STATE(3035), + [sym_anonymous_object_creation_expression] = STATE(3035), + [sym_implicit_array_creation_expression] = STATE(3035), + [sym_implicit_object_creation_expression] = STATE(3035), + [sym_implicit_stackalloc_expression] = STATE(3035), + [sym_initializer_expression] = STATE(3035), + [sym_default_expression] = STATE(3035), + [sym_with_expression] = STATE(3035), + [sym_sizeof_expression] = STATE(3035), + [sym_typeof_expression] = STATE(3035), + [sym_makeref_expression] = STATE(3035), + [sym_ref_expression] = STATE(3035), + [sym_reftype_expression] = STATE(3035), + [sym_refvalue_expression] = STATE(3035), + [sym_stackalloc_expression] = STATE(3035), + [sym_range_expression] = STATE(3035), + [sym_tuple_expression] = STATE(2415), + [sym_literal] = STATE(3035), + [sym_character_literal] = STATE(3037), + [sym_string_literal] = STATE(3037), + [sym_raw_string_literal] = STATE(3037), + [sym_boolean_literal] = STATE(3037), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3035), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(1207), [sym_preproc_endregion] = STATE(1207), [sym_preproc_line] = STATE(1207), @@ -245842,47 +245728,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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3396), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3455), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1153), - [anon_sym_LPAREN] = ACTIONS(1823), - [anon_sym_ref] = ACTIONS(1825), - [anon_sym_LBRACE] = ACTIONS(1159), - [anon_sym_delegate] = ACTIONS(1161), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1239), + [anon_sym_LPAREN] = ACTIONS(2159), + [anon_sym_ref] = ACTIONS(2161), + [anon_sym_LBRACE] = ACTIONS(1245), + [anon_sym_delegate] = ACTIONS(1247), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1827), + [anon_sym_new] = ACTIONS(2163), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1167), - [anon_sym_BANG] = ACTIONS(1831), - [anon_sym_TILDE] = ACTIONS(1831), - [anon_sym_PLUS_PLUS] = ACTIONS(1831), - [anon_sym_DASH_DASH] = ACTIONS(1831), - [anon_sym_true] = ACTIONS(1173), - [anon_sym_false] = ACTIONS(1173), - [anon_sym_PLUS] = ACTIONS(1829), - [anon_sym_DASH] = ACTIONS(1829), - [anon_sym_STAR] = ACTIONS(1833), - [anon_sym_CARET] = ACTIONS(1831), - [anon_sym_AMP] = ACTIONS(1831), - [anon_sym_this] = ACTIONS(1177), + [anon_sym_checked] = ACTIONS(1251), + [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(1257), + [anon_sym_false] = ACTIONS(1257), + [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(1261), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1179), + [anon_sym_base] = ACTIONS(1263), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1181), - [anon_sym_unchecked] = ACTIONS(1167), + [sym_predefined_type] = ACTIONS(1265), + [anon_sym_unchecked] = ACTIONS(1251), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1183), - [anon_sym_throw] = ACTIONS(1835), + [anon_sym_default] = ACTIONS(1267), + [anon_sym_throw] = ACTIONS(2171), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1837), - [anon_sym_DOT_DOT] = ACTIONS(1839), + [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), @@ -245895,19 +245781,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1191), - [anon_sym_sizeof] = ACTIONS(1193), - [anon_sym_typeof] = ACTIONS(1195), - [anon_sym___makeref] = ACTIONS(1197), - [anon_sym___reftype] = ACTIONS(1199), - [anon_sym___refvalue] = ACTIONS(1201), - [sym_null_literal] = ACTIONS(1203), - [anon_sym_SQUOTE] = ACTIONS(1205), - [sym_integer_literal] = ACTIONS(1203), - [sym_real_literal] = ACTIONS(1207), - [anon_sym_DQUOTE] = ACTIONS(1209), - [sym_verbatim_string_literal] = ACTIONS(1207), - [aux_sym_preproc_if_token1] = ACTIONS(1211), + [anon_sym_stackalloc] = ACTIONS(1275), + [anon_sym_sizeof] = ACTIONS(1277), + [anon_sym_typeof] = ACTIONS(1279), + [anon_sym___makeref] = ACTIONS(1281), + [anon_sym___reftype] = ACTIONS(1283), + [anon_sym___refvalue] = ACTIONS(1285), + [sym_null_literal] = ACTIONS(1287), + [anon_sym_SQUOTE] = ACTIONS(1289), + [sym_integer_literal] = ACTIONS(1287), + [sym_real_literal] = ACTIONS(1291), + [anon_sym_DQUOTE] = ACTIONS(1293), + [sym_verbatim_string_literal] = ACTIONS(1291), + [aux_sym_preproc_if_token1] = ACTIONS(1295), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -245918,90 +245804,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1213), - [sym_interpolation_verbatim_start] = ACTIONS(1215), - [sym_interpolation_raw_start] = ACTIONS(1217), - [sym_raw_string_start] = ACTIONS(1219), + [sym_interpolation_regular_start] = ACTIONS(1297), + [sym_interpolation_verbatim_start] = ACTIONS(1299), + [sym_interpolation_raw_start] = ACTIONS(1301), + [sym_raw_string_start] = ACTIONS(1303), }, [1208] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2610), - [sym__name] = STATE(5872), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2397), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(4520), - [sym_non_lvalue_expression] = STATE(3277), - [sym_lvalue_expression] = STATE(3407), - [sym__expression_statement_expression] = STATE(3228), - [sym_assignment_expression] = STATE(3289), - [sym_binary_expression] = STATE(3228), - [sym_postfix_unary_expression] = STATE(3289), - [sym_prefix_unary_expression] = STATE(3289), - [sym__pointer_indirection_expression] = STATE(2609), - [sym_query_expression] = STATE(3228), - [sym_from_clause] = STATE(6165), - [sym_conditional_expression] = STATE(3228), - [sym_conditional_access_expression] = STATE(3228), - [sym_as_expression] = STATE(3228), - [sym_is_expression] = STATE(3228), - [sym_is_pattern_expression] = STATE(3228), - [sym_cast_expression] = STATE(3228), - [sym_checked_expression] = STATE(3228), - [sym_invocation_expression] = STATE(3289), - [sym_switch_expression] = STATE(3228), - [sym_await_expression] = STATE(3289), - [sym_throw_expression] = STATE(3228), - [sym_element_access_expression] = STATE(2609), - [sym_interpolated_string_expression] = STATE(3228), - [sym_member_access_expression] = STATE(2609), - [sym_object_creation_expression] = STATE(3289), - [sym_parenthesized_expression] = STATE(3289), - [sym__parenthesized_lvalue_expression] = STATE(2609), - [sym_lambda_expression] = STATE(3228), - [sym__lambda_expression_init] = STATE(7478), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3228), - [sym_anonymous_method_expression] = STATE(3228), - [sym_anonymous_object_creation_expression] = STATE(3228), - [sym_implicit_array_creation_expression] = STATE(3228), - [sym_implicit_object_creation_expression] = STATE(3228), - [sym_implicit_stackalloc_expression] = STATE(3228), - [sym_initializer_expression] = STATE(3228), - [sym_default_expression] = STATE(3228), - [sym_with_expression] = STATE(3228), - [sym_sizeof_expression] = STATE(3228), - [sym_typeof_expression] = STATE(3228), - [sym_makeref_expression] = STATE(3228), - [sym_ref_expression] = STATE(3228), - [sym_reftype_expression] = STATE(3228), - [sym_refvalue_expression] = STATE(3228), - [sym_stackalloc_expression] = STATE(3228), - [sym_range_expression] = STATE(3228), - [sym_tuple_expression] = STATE(2609), - [sym_literal] = STATE(3228), - [sym_character_literal] = STATE(3278), - [sym_string_literal] = STATE(3278), - [sym_raw_string_literal] = STATE(3278), - [sym_boolean_literal] = STATE(3278), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3228), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2416), + [sym__name] = STATE(5867), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2379), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(5129), + [sym_non_lvalue_expression] = STATE(3040), + [sym_lvalue_expression] = STATE(3617), + [sym__expression_statement_expression] = STATE(3035), + [sym_assignment_expression] = STATE(3043), + [sym_binary_expression] = STATE(3035), + [sym_postfix_unary_expression] = STATE(3043), + [sym_prefix_unary_expression] = STATE(3043), + [sym__pointer_indirection_expression] = STATE(2415), + [sym_query_expression] = STATE(3035), + [sym_from_clause] = STATE(6161), + [sym_conditional_expression] = STATE(3035), + [sym_conditional_access_expression] = STATE(3035), + [sym_as_expression] = STATE(3035), + [sym_is_expression] = STATE(3035), + [sym_is_pattern_expression] = STATE(3035), + [sym_cast_expression] = STATE(3035), + [sym_checked_expression] = STATE(3035), + [sym_invocation_expression] = STATE(3043), + [sym_switch_expression] = STATE(3035), + [sym_await_expression] = STATE(3043), + [sym_throw_expression] = STATE(3035), + [sym_element_access_expression] = STATE(2415), + [sym_interpolated_string_expression] = STATE(3035), + [sym_member_access_expression] = STATE(2415), + [sym_object_creation_expression] = STATE(3043), + [sym_parenthesized_expression] = STATE(3043), + [sym__parenthesized_lvalue_expression] = STATE(2415), + [sym_lambda_expression] = STATE(3035), + [sym__lambda_expression_init] = STATE(7706), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3035), + [sym_anonymous_method_expression] = STATE(3035), + [sym_anonymous_object_creation_expression] = STATE(3035), + [sym_implicit_array_creation_expression] = STATE(3035), + [sym_implicit_object_creation_expression] = STATE(3035), + [sym_implicit_stackalloc_expression] = STATE(3035), + [sym_initializer_expression] = STATE(3035), + [sym_default_expression] = STATE(3035), + [sym_with_expression] = STATE(3035), + [sym_sizeof_expression] = STATE(3035), + [sym_typeof_expression] = STATE(3035), + [sym_makeref_expression] = STATE(3035), + [sym_ref_expression] = STATE(3035), + [sym_reftype_expression] = STATE(3035), + [sym_refvalue_expression] = STATE(3035), + [sym_stackalloc_expression] = STATE(3035), + [sym_range_expression] = STATE(3035), + [sym_tuple_expression] = STATE(2415), + [sym_literal] = STATE(3035), + [sym_character_literal] = STATE(3037), + [sym_string_literal] = STATE(3037), + [sym_raw_string_literal] = STATE(3037), + [sym_boolean_literal] = STATE(3037), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3035), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(1208), [sym_preproc_endregion] = STATE(1208), [sym_preproc_line] = STATE(1208), @@ -246011,47 +245897,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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3396), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3455), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1153), - [anon_sym_LPAREN] = ACTIONS(1823), - [anon_sym_ref] = ACTIONS(1825), - [anon_sym_LBRACE] = ACTIONS(1159), - [anon_sym_delegate] = ACTIONS(1161), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1239), + [anon_sym_LPAREN] = ACTIONS(2159), + [anon_sym_ref] = ACTIONS(2161), + [anon_sym_LBRACE] = ACTIONS(1245), + [anon_sym_delegate] = ACTIONS(1247), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1827), + [anon_sym_new] = ACTIONS(2163), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1167), - [anon_sym_BANG] = ACTIONS(1831), - [anon_sym_TILDE] = ACTIONS(1831), - [anon_sym_PLUS_PLUS] = ACTIONS(1831), - [anon_sym_DASH_DASH] = ACTIONS(1831), - [anon_sym_true] = ACTIONS(1173), - [anon_sym_false] = ACTIONS(1173), - [anon_sym_PLUS] = ACTIONS(1829), - [anon_sym_DASH] = ACTIONS(1829), - [anon_sym_STAR] = ACTIONS(1833), - [anon_sym_CARET] = ACTIONS(1831), - [anon_sym_AMP] = ACTIONS(1831), - [anon_sym_this] = ACTIONS(1177), + [anon_sym_checked] = ACTIONS(1251), + [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(1257), + [anon_sym_false] = ACTIONS(1257), + [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(1261), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1179), + [anon_sym_base] = ACTIONS(1263), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1181), - [anon_sym_unchecked] = ACTIONS(1167), + [sym_predefined_type] = ACTIONS(1265), + [anon_sym_unchecked] = ACTIONS(1251), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1183), - [anon_sym_throw] = ACTIONS(1835), + [anon_sym_default] = ACTIONS(1267), + [anon_sym_throw] = ACTIONS(2171), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1837), - [anon_sym_DOT_DOT] = ACTIONS(1839), + [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), @@ -246064,19 +245950,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1191), - [anon_sym_sizeof] = ACTIONS(1193), - [anon_sym_typeof] = ACTIONS(1195), - [anon_sym___makeref] = ACTIONS(1197), - [anon_sym___reftype] = ACTIONS(1199), - [anon_sym___refvalue] = ACTIONS(1201), - [sym_null_literal] = ACTIONS(1203), - [anon_sym_SQUOTE] = ACTIONS(1205), - [sym_integer_literal] = ACTIONS(1203), - [sym_real_literal] = ACTIONS(1207), - [anon_sym_DQUOTE] = ACTIONS(1209), - [sym_verbatim_string_literal] = ACTIONS(1207), - [aux_sym_preproc_if_token1] = ACTIONS(1211), + [anon_sym_stackalloc] = ACTIONS(1275), + [anon_sym_sizeof] = ACTIONS(1277), + [anon_sym_typeof] = ACTIONS(1279), + [anon_sym___makeref] = ACTIONS(1281), + [anon_sym___reftype] = ACTIONS(1283), + [anon_sym___refvalue] = ACTIONS(1285), + [sym_null_literal] = ACTIONS(1287), + [anon_sym_SQUOTE] = ACTIONS(1289), + [sym_integer_literal] = ACTIONS(1287), + [sym_real_literal] = ACTIONS(1291), + [anon_sym_DQUOTE] = ACTIONS(1293), + [sym_verbatim_string_literal] = ACTIONS(1291), + [aux_sym_preproc_if_token1] = ACTIONS(1295), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -246087,90 +245973,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1213), - [sym_interpolation_verbatim_start] = ACTIONS(1215), - [sym_interpolation_raw_start] = ACTIONS(1217), - [sym_raw_string_start] = ACTIONS(1219), + [sym_interpolation_regular_start] = ACTIONS(1297), + [sym_interpolation_verbatim_start] = ACTIONS(1299), + [sym_interpolation_raw_start] = ACTIONS(1301), + [sym_raw_string_start] = ACTIONS(1303), }, [1209] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2610), - [sym__name] = STATE(5872), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2397), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(4521), - [sym_non_lvalue_expression] = STATE(3277), - [sym_lvalue_expression] = STATE(3407), - [sym__expression_statement_expression] = STATE(3228), - [sym_assignment_expression] = STATE(3289), - [sym_binary_expression] = STATE(3228), - [sym_postfix_unary_expression] = STATE(3289), - [sym_prefix_unary_expression] = STATE(3289), - [sym__pointer_indirection_expression] = STATE(2609), - [sym_query_expression] = STATE(3228), - [sym_from_clause] = STATE(6165), - [sym_conditional_expression] = STATE(3228), - [sym_conditional_access_expression] = STATE(3228), - [sym_as_expression] = STATE(3228), - [sym_is_expression] = STATE(3228), - [sym_is_pattern_expression] = STATE(3228), - [sym_cast_expression] = STATE(3228), - [sym_checked_expression] = STATE(3228), - [sym_invocation_expression] = STATE(3289), - [sym_switch_expression] = STATE(3228), - [sym_await_expression] = STATE(3289), - [sym_throw_expression] = STATE(3228), - [sym_element_access_expression] = STATE(2609), - [sym_interpolated_string_expression] = STATE(3228), - [sym_member_access_expression] = STATE(2609), - [sym_object_creation_expression] = STATE(3289), - [sym_parenthesized_expression] = STATE(3289), - [sym__parenthesized_lvalue_expression] = STATE(2609), - [sym_lambda_expression] = STATE(3228), - [sym__lambda_expression_init] = STATE(7478), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3228), - [sym_anonymous_method_expression] = STATE(3228), - [sym_anonymous_object_creation_expression] = STATE(3228), - [sym_implicit_array_creation_expression] = STATE(3228), - [sym_implicit_object_creation_expression] = STATE(3228), - [sym_implicit_stackalloc_expression] = STATE(3228), - [sym_initializer_expression] = STATE(3228), - [sym_default_expression] = STATE(3228), - [sym_with_expression] = STATE(3228), - [sym_sizeof_expression] = STATE(3228), - [sym_typeof_expression] = STATE(3228), - [sym_makeref_expression] = STATE(3228), - [sym_ref_expression] = STATE(3228), - [sym_reftype_expression] = STATE(3228), - [sym_refvalue_expression] = STATE(3228), - [sym_stackalloc_expression] = STATE(3228), - [sym_range_expression] = STATE(3228), - [sym_tuple_expression] = STATE(2609), - [sym_literal] = STATE(3228), - [sym_character_literal] = STATE(3278), - [sym_string_literal] = STATE(3278), - [sym_raw_string_literal] = STATE(3278), - [sym_boolean_literal] = STATE(3278), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3228), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2416), + [sym__name] = STATE(5867), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2379), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(5131), + [sym_non_lvalue_expression] = STATE(3040), + [sym_lvalue_expression] = STATE(3617), + [sym__expression_statement_expression] = STATE(3035), + [sym_assignment_expression] = STATE(3043), + [sym_binary_expression] = STATE(3035), + [sym_postfix_unary_expression] = STATE(3043), + [sym_prefix_unary_expression] = STATE(3043), + [sym__pointer_indirection_expression] = STATE(2415), + [sym_query_expression] = STATE(3035), + [sym_from_clause] = STATE(6161), + [sym_conditional_expression] = STATE(3035), + [sym_conditional_access_expression] = STATE(3035), + [sym_as_expression] = STATE(3035), + [sym_is_expression] = STATE(3035), + [sym_is_pattern_expression] = STATE(3035), + [sym_cast_expression] = STATE(3035), + [sym_checked_expression] = STATE(3035), + [sym_invocation_expression] = STATE(3043), + [sym_switch_expression] = STATE(3035), + [sym_await_expression] = STATE(3043), + [sym_throw_expression] = STATE(3035), + [sym_element_access_expression] = STATE(2415), + [sym_interpolated_string_expression] = STATE(3035), + [sym_member_access_expression] = STATE(2415), + [sym_object_creation_expression] = STATE(3043), + [sym_parenthesized_expression] = STATE(3043), + [sym__parenthesized_lvalue_expression] = STATE(2415), + [sym_lambda_expression] = STATE(3035), + [sym__lambda_expression_init] = STATE(7706), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3035), + [sym_anonymous_method_expression] = STATE(3035), + [sym_anonymous_object_creation_expression] = STATE(3035), + [sym_implicit_array_creation_expression] = STATE(3035), + [sym_implicit_object_creation_expression] = STATE(3035), + [sym_implicit_stackalloc_expression] = STATE(3035), + [sym_initializer_expression] = STATE(3035), + [sym_default_expression] = STATE(3035), + [sym_with_expression] = STATE(3035), + [sym_sizeof_expression] = STATE(3035), + [sym_typeof_expression] = STATE(3035), + [sym_makeref_expression] = STATE(3035), + [sym_ref_expression] = STATE(3035), + [sym_reftype_expression] = STATE(3035), + [sym_refvalue_expression] = STATE(3035), + [sym_stackalloc_expression] = STATE(3035), + [sym_range_expression] = STATE(3035), + [sym_tuple_expression] = STATE(2415), + [sym_literal] = STATE(3035), + [sym_character_literal] = STATE(3037), + [sym_string_literal] = STATE(3037), + [sym_raw_string_literal] = STATE(3037), + [sym_boolean_literal] = STATE(3037), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3035), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(1209), [sym_preproc_endregion] = STATE(1209), [sym_preproc_line] = STATE(1209), @@ -246180,47 +246066,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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3396), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3455), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1153), - [anon_sym_LPAREN] = ACTIONS(1823), - [anon_sym_ref] = ACTIONS(1825), - [anon_sym_LBRACE] = ACTIONS(1159), - [anon_sym_delegate] = ACTIONS(1161), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1239), + [anon_sym_LPAREN] = ACTIONS(2159), + [anon_sym_ref] = ACTIONS(2161), + [anon_sym_LBRACE] = ACTIONS(1245), + [anon_sym_delegate] = ACTIONS(1247), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1827), + [anon_sym_new] = ACTIONS(2163), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1167), - [anon_sym_BANG] = ACTIONS(1831), - [anon_sym_TILDE] = ACTIONS(1831), - [anon_sym_PLUS_PLUS] = ACTIONS(1831), - [anon_sym_DASH_DASH] = ACTIONS(1831), - [anon_sym_true] = ACTIONS(1173), - [anon_sym_false] = ACTIONS(1173), - [anon_sym_PLUS] = ACTIONS(1829), - [anon_sym_DASH] = ACTIONS(1829), - [anon_sym_STAR] = ACTIONS(1833), - [anon_sym_CARET] = ACTIONS(1831), - [anon_sym_AMP] = ACTIONS(1831), - [anon_sym_this] = ACTIONS(1177), + [anon_sym_checked] = ACTIONS(1251), + [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(1257), + [anon_sym_false] = ACTIONS(1257), + [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(1261), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1179), + [anon_sym_base] = ACTIONS(1263), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1181), - [anon_sym_unchecked] = ACTIONS(1167), + [sym_predefined_type] = ACTIONS(1265), + [anon_sym_unchecked] = ACTIONS(1251), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1183), - [anon_sym_throw] = ACTIONS(1835), + [anon_sym_default] = ACTIONS(1267), + [anon_sym_throw] = ACTIONS(2171), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1837), - [anon_sym_DOT_DOT] = ACTIONS(1839), + [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), @@ -246233,19 +246119,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1191), - [anon_sym_sizeof] = ACTIONS(1193), - [anon_sym_typeof] = ACTIONS(1195), - [anon_sym___makeref] = ACTIONS(1197), - [anon_sym___reftype] = ACTIONS(1199), - [anon_sym___refvalue] = ACTIONS(1201), - [sym_null_literal] = ACTIONS(1203), - [anon_sym_SQUOTE] = ACTIONS(1205), - [sym_integer_literal] = ACTIONS(1203), - [sym_real_literal] = ACTIONS(1207), - [anon_sym_DQUOTE] = ACTIONS(1209), - [sym_verbatim_string_literal] = ACTIONS(1207), - [aux_sym_preproc_if_token1] = ACTIONS(1211), + [anon_sym_stackalloc] = ACTIONS(1275), + [anon_sym_sizeof] = ACTIONS(1277), + [anon_sym_typeof] = ACTIONS(1279), + [anon_sym___makeref] = ACTIONS(1281), + [anon_sym___reftype] = ACTIONS(1283), + [anon_sym___refvalue] = ACTIONS(1285), + [sym_null_literal] = ACTIONS(1287), + [anon_sym_SQUOTE] = ACTIONS(1289), + [sym_integer_literal] = ACTIONS(1287), + [sym_real_literal] = ACTIONS(1291), + [anon_sym_DQUOTE] = ACTIONS(1293), + [sym_verbatim_string_literal] = ACTIONS(1291), + [aux_sym_preproc_if_token1] = ACTIONS(1295), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -246256,90 +246142,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1213), - [sym_interpolation_verbatim_start] = ACTIONS(1215), - [sym_interpolation_raw_start] = ACTIONS(1217), - [sym_raw_string_start] = ACTIONS(1219), + [sym_interpolation_regular_start] = ACTIONS(1297), + [sym_interpolation_verbatim_start] = ACTIONS(1299), + [sym_interpolation_raw_start] = ACTIONS(1301), + [sym_raw_string_start] = ACTIONS(1303), }, [1210] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2610), - [sym__name] = STATE(5872), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2397), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(4739), - [sym_non_lvalue_expression] = STATE(3277), - [sym_lvalue_expression] = STATE(3407), - [sym__expression_statement_expression] = STATE(3228), - [sym_assignment_expression] = STATE(3289), - [sym_binary_expression] = STATE(3228), - [sym_postfix_unary_expression] = STATE(3289), - [sym_prefix_unary_expression] = STATE(3289), - [sym__pointer_indirection_expression] = STATE(2609), - [sym_query_expression] = STATE(3228), - [sym_from_clause] = STATE(6165), - [sym_conditional_expression] = STATE(3228), - [sym_conditional_access_expression] = STATE(3228), - [sym_as_expression] = STATE(3228), - [sym_is_expression] = STATE(3228), - [sym_is_pattern_expression] = STATE(3228), - [sym_cast_expression] = STATE(3228), - [sym_checked_expression] = STATE(3228), - [sym_invocation_expression] = STATE(3289), - [sym_switch_expression] = STATE(3228), - [sym_await_expression] = STATE(3289), - [sym_throw_expression] = STATE(3228), - [sym_element_access_expression] = STATE(2609), - [sym_interpolated_string_expression] = STATE(3228), - [sym_member_access_expression] = STATE(2609), - [sym_object_creation_expression] = STATE(3289), - [sym_parenthesized_expression] = STATE(3289), - [sym__parenthesized_lvalue_expression] = STATE(2609), - [sym_lambda_expression] = STATE(3228), - [sym__lambda_expression_init] = STATE(7478), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3228), - [sym_anonymous_method_expression] = STATE(3228), - [sym_anonymous_object_creation_expression] = STATE(3228), - [sym_implicit_array_creation_expression] = STATE(3228), - [sym_implicit_object_creation_expression] = STATE(3228), - [sym_implicit_stackalloc_expression] = STATE(3228), - [sym_initializer_expression] = STATE(3228), - [sym_default_expression] = STATE(3228), - [sym_with_expression] = STATE(3228), - [sym_sizeof_expression] = STATE(3228), - [sym_typeof_expression] = STATE(3228), - [sym_makeref_expression] = STATE(3228), - [sym_ref_expression] = STATE(3228), - [sym_reftype_expression] = STATE(3228), - [sym_refvalue_expression] = STATE(3228), - [sym_stackalloc_expression] = STATE(3228), - [sym_range_expression] = STATE(3228), - [sym_tuple_expression] = STATE(2609), - [sym_literal] = STATE(3228), - [sym_character_literal] = STATE(3278), - [sym_string_literal] = STATE(3278), - [sym_raw_string_literal] = STATE(3278), - [sym_boolean_literal] = STATE(3278), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3228), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2416), + [sym__name] = STATE(5867), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2379), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(5132), + [sym_non_lvalue_expression] = STATE(3040), + [sym_lvalue_expression] = STATE(3617), + [sym__expression_statement_expression] = STATE(3035), + [sym_assignment_expression] = STATE(3043), + [sym_binary_expression] = STATE(3035), + [sym_postfix_unary_expression] = STATE(3043), + [sym_prefix_unary_expression] = STATE(3043), + [sym__pointer_indirection_expression] = STATE(2415), + [sym_query_expression] = STATE(3035), + [sym_from_clause] = STATE(6161), + [sym_conditional_expression] = STATE(3035), + [sym_conditional_access_expression] = STATE(3035), + [sym_as_expression] = STATE(3035), + [sym_is_expression] = STATE(3035), + [sym_is_pattern_expression] = STATE(3035), + [sym_cast_expression] = STATE(3035), + [sym_checked_expression] = STATE(3035), + [sym_invocation_expression] = STATE(3043), + [sym_switch_expression] = STATE(3035), + [sym_await_expression] = STATE(3043), + [sym_throw_expression] = STATE(3035), + [sym_element_access_expression] = STATE(2415), + [sym_interpolated_string_expression] = STATE(3035), + [sym_member_access_expression] = STATE(2415), + [sym_object_creation_expression] = STATE(3043), + [sym_parenthesized_expression] = STATE(3043), + [sym__parenthesized_lvalue_expression] = STATE(2415), + [sym_lambda_expression] = STATE(3035), + [sym__lambda_expression_init] = STATE(7706), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3035), + [sym_anonymous_method_expression] = STATE(3035), + [sym_anonymous_object_creation_expression] = STATE(3035), + [sym_implicit_array_creation_expression] = STATE(3035), + [sym_implicit_object_creation_expression] = STATE(3035), + [sym_implicit_stackalloc_expression] = STATE(3035), + [sym_initializer_expression] = STATE(3035), + [sym_default_expression] = STATE(3035), + [sym_with_expression] = STATE(3035), + [sym_sizeof_expression] = STATE(3035), + [sym_typeof_expression] = STATE(3035), + [sym_makeref_expression] = STATE(3035), + [sym_ref_expression] = STATE(3035), + [sym_reftype_expression] = STATE(3035), + [sym_refvalue_expression] = STATE(3035), + [sym_stackalloc_expression] = STATE(3035), + [sym_range_expression] = STATE(3035), + [sym_tuple_expression] = STATE(2415), + [sym_literal] = STATE(3035), + [sym_character_literal] = STATE(3037), + [sym_string_literal] = STATE(3037), + [sym_raw_string_literal] = STATE(3037), + [sym_boolean_literal] = STATE(3037), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3035), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(1210), [sym_preproc_endregion] = STATE(1210), [sym_preproc_line] = STATE(1210), @@ -246349,47 +246235,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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3396), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3455), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1153), - [anon_sym_LPAREN] = ACTIONS(1823), - [anon_sym_ref] = ACTIONS(1825), - [anon_sym_LBRACE] = ACTIONS(1159), - [anon_sym_delegate] = ACTIONS(1161), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1239), + [anon_sym_LPAREN] = ACTIONS(2159), + [anon_sym_ref] = ACTIONS(2161), + [anon_sym_LBRACE] = ACTIONS(1245), + [anon_sym_delegate] = ACTIONS(1247), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1827), + [anon_sym_new] = ACTIONS(2163), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1167), - [anon_sym_BANG] = ACTIONS(1831), - [anon_sym_TILDE] = ACTIONS(1831), - [anon_sym_PLUS_PLUS] = ACTIONS(1831), - [anon_sym_DASH_DASH] = ACTIONS(1831), - [anon_sym_true] = ACTIONS(1173), - [anon_sym_false] = ACTIONS(1173), - [anon_sym_PLUS] = ACTIONS(1829), - [anon_sym_DASH] = ACTIONS(1829), - [anon_sym_STAR] = ACTIONS(1833), - [anon_sym_CARET] = ACTIONS(1831), - [anon_sym_AMP] = ACTIONS(1831), - [anon_sym_this] = ACTIONS(1177), + [anon_sym_checked] = ACTIONS(1251), + [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(1257), + [anon_sym_false] = ACTIONS(1257), + [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(1261), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1179), + [anon_sym_base] = ACTIONS(1263), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1181), - [anon_sym_unchecked] = ACTIONS(1167), + [sym_predefined_type] = ACTIONS(1265), + [anon_sym_unchecked] = ACTIONS(1251), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1183), - [anon_sym_throw] = ACTIONS(1835), + [anon_sym_default] = ACTIONS(1267), + [anon_sym_throw] = ACTIONS(2171), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1837), - [anon_sym_DOT_DOT] = ACTIONS(1839), + [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), @@ -246402,19 +246288,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1191), - [anon_sym_sizeof] = ACTIONS(1193), - [anon_sym_typeof] = ACTIONS(1195), - [anon_sym___makeref] = ACTIONS(1197), - [anon_sym___reftype] = ACTIONS(1199), - [anon_sym___refvalue] = ACTIONS(1201), - [sym_null_literal] = ACTIONS(1203), - [anon_sym_SQUOTE] = ACTIONS(1205), - [sym_integer_literal] = ACTIONS(1203), - [sym_real_literal] = ACTIONS(1207), - [anon_sym_DQUOTE] = ACTIONS(1209), - [sym_verbatim_string_literal] = ACTIONS(1207), - [aux_sym_preproc_if_token1] = ACTIONS(1211), + [anon_sym_stackalloc] = ACTIONS(1275), + [anon_sym_sizeof] = ACTIONS(1277), + [anon_sym_typeof] = ACTIONS(1279), + [anon_sym___makeref] = ACTIONS(1281), + [anon_sym___reftype] = ACTIONS(1283), + [anon_sym___refvalue] = ACTIONS(1285), + [sym_null_literal] = ACTIONS(1287), + [anon_sym_SQUOTE] = ACTIONS(1289), + [sym_integer_literal] = ACTIONS(1287), + [sym_real_literal] = ACTIONS(1291), + [anon_sym_DQUOTE] = ACTIONS(1293), + [sym_verbatim_string_literal] = ACTIONS(1291), + [aux_sym_preproc_if_token1] = ACTIONS(1295), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -246425,90 +246311,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1213), - [sym_interpolation_verbatim_start] = ACTIONS(1215), - [sym_interpolation_raw_start] = ACTIONS(1217), - [sym_raw_string_start] = ACTIONS(1219), + [sym_interpolation_regular_start] = ACTIONS(1297), + [sym_interpolation_verbatim_start] = ACTIONS(1299), + [sym_interpolation_raw_start] = ACTIONS(1301), + [sym_raw_string_start] = ACTIONS(1303), }, [1211] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2610), - [sym__name] = STATE(5872), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2397), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(4718), - [sym_non_lvalue_expression] = STATE(3277), - [sym_lvalue_expression] = STATE(3407), - [sym__expression_statement_expression] = STATE(3228), - [sym_assignment_expression] = STATE(3289), - [sym_binary_expression] = STATE(3228), - [sym_postfix_unary_expression] = STATE(3289), - [sym_prefix_unary_expression] = STATE(3289), - [sym__pointer_indirection_expression] = STATE(2609), - [sym_query_expression] = STATE(3228), - [sym_from_clause] = STATE(6165), - [sym_conditional_expression] = STATE(3228), - [sym_conditional_access_expression] = STATE(3228), - [sym_as_expression] = STATE(3228), - [sym_is_expression] = STATE(3228), - [sym_is_pattern_expression] = STATE(3228), - [sym_cast_expression] = STATE(3228), - [sym_checked_expression] = STATE(3228), - [sym_invocation_expression] = STATE(3289), - [sym_switch_expression] = STATE(3228), - [sym_await_expression] = STATE(3289), - [sym_throw_expression] = STATE(3228), - [sym_element_access_expression] = STATE(2609), - [sym_interpolated_string_expression] = STATE(3228), - [sym_member_access_expression] = STATE(2609), - [sym_object_creation_expression] = STATE(3289), - [sym_parenthesized_expression] = STATE(3289), - [sym__parenthesized_lvalue_expression] = STATE(2609), - [sym_lambda_expression] = STATE(3228), - [sym__lambda_expression_init] = STATE(7478), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3228), - [sym_anonymous_method_expression] = STATE(3228), - [sym_anonymous_object_creation_expression] = STATE(3228), - [sym_implicit_array_creation_expression] = STATE(3228), - [sym_implicit_object_creation_expression] = STATE(3228), - [sym_implicit_stackalloc_expression] = STATE(3228), - [sym_initializer_expression] = STATE(3228), - [sym_default_expression] = STATE(3228), - [sym_with_expression] = STATE(3228), - [sym_sizeof_expression] = STATE(3228), - [sym_typeof_expression] = STATE(3228), - [sym_makeref_expression] = STATE(3228), - [sym_ref_expression] = STATE(3228), - [sym_reftype_expression] = STATE(3228), - [sym_refvalue_expression] = STATE(3228), - [sym_stackalloc_expression] = STATE(3228), - [sym_range_expression] = STATE(3228), - [sym_tuple_expression] = STATE(2609), - [sym_literal] = STATE(3228), - [sym_character_literal] = STATE(3278), - [sym_string_literal] = STATE(3278), - [sym_raw_string_literal] = STATE(3278), - [sym_boolean_literal] = STATE(3278), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3228), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2416), + [sym__name] = STATE(5867), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2379), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(5133), + [sym_non_lvalue_expression] = STATE(3040), + [sym_lvalue_expression] = STATE(3617), + [sym__expression_statement_expression] = STATE(3035), + [sym_assignment_expression] = STATE(3043), + [sym_binary_expression] = STATE(3035), + [sym_postfix_unary_expression] = STATE(3043), + [sym_prefix_unary_expression] = STATE(3043), + [sym__pointer_indirection_expression] = STATE(2415), + [sym_query_expression] = STATE(3035), + [sym_from_clause] = STATE(6161), + [sym_conditional_expression] = STATE(3035), + [sym_conditional_access_expression] = STATE(3035), + [sym_as_expression] = STATE(3035), + [sym_is_expression] = STATE(3035), + [sym_is_pattern_expression] = STATE(3035), + [sym_cast_expression] = STATE(3035), + [sym_checked_expression] = STATE(3035), + [sym_invocation_expression] = STATE(3043), + [sym_switch_expression] = STATE(3035), + [sym_await_expression] = STATE(3043), + [sym_throw_expression] = STATE(3035), + [sym_element_access_expression] = STATE(2415), + [sym_interpolated_string_expression] = STATE(3035), + [sym_member_access_expression] = STATE(2415), + [sym_object_creation_expression] = STATE(3043), + [sym_parenthesized_expression] = STATE(3043), + [sym__parenthesized_lvalue_expression] = STATE(2415), + [sym_lambda_expression] = STATE(3035), + [sym__lambda_expression_init] = STATE(7706), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3035), + [sym_anonymous_method_expression] = STATE(3035), + [sym_anonymous_object_creation_expression] = STATE(3035), + [sym_implicit_array_creation_expression] = STATE(3035), + [sym_implicit_object_creation_expression] = STATE(3035), + [sym_implicit_stackalloc_expression] = STATE(3035), + [sym_initializer_expression] = STATE(3035), + [sym_default_expression] = STATE(3035), + [sym_with_expression] = STATE(3035), + [sym_sizeof_expression] = STATE(3035), + [sym_typeof_expression] = STATE(3035), + [sym_makeref_expression] = STATE(3035), + [sym_ref_expression] = STATE(3035), + [sym_reftype_expression] = STATE(3035), + [sym_refvalue_expression] = STATE(3035), + [sym_stackalloc_expression] = STATE(3035), + [sym_range_expression] = STATE(3035), + [sym_tuple_expression] = STATE(2415), + [sym_literal] = STATE(3035), + [sym_character_literal] = STATE(3037), + [sym_string_literal] = STATE(3037), + [sym_raw_string_literal] = STATE(3037), + [sym_boolean_literal] = STATE(3037), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3035), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(1211), [sym_preproc_endregion] = STATE(1211), [sym_preproc_line] = STATE(1211), @@ -246518,47 +246404,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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3396), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3455), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1153), - [anon_sym_LPAREN] = ACTIONS(1823), - [anon_sym_ref] = ACTIONS(1825), - [anon_sym_LBRACE] = ACTIONS(1159), - [anon_sym_delegate] = ACTIONS(1161), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1239), + [anon_sym_LPAREN] = ACTIONS(2159), + [anon_sym_ref] = ACTIONS(2161), + [anon_sym_LBRACE] = ACTIONS(1245), + [anon_sym_delegate] = ACTIONS(1247), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1827), + [anon_sym_new] = ACTIONS(2163), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1167), - [anon_sym_BANG] = ACTIONS(1831), - [anon_sym_TILDE] = ACTIONS(1831), - [anon_sym_PLUS_PLUS] = ACTIONS(1831), - [anon_sym_DASH_DASH] = ACTIONS(1831), - [anon_sym_true] = ACTIONS(1173), - [anon_sym_false] = ACTIONS(1173), - [anon_sym_PLUS] = ACTIONS(1829), - [anon_sym_DASH] = ACTIONS(1829), - [anon_sym_STAR] = ACTIONS(1833), - [anon_sym_CARET] = ACTIONS(1831), - [anon_sym_AMP] = ACTIONS(1831), - [anon_sym_this] = ACTIONS(1177), + [anon_sym_checked] = ACTIONS(1251), + [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(1257), + [anon_sym_false] = ACTIONS(1257), + [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(1261), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1179), + [anon_sym_base] = ACTIONS(1263), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1181), - [anon_sym_unchecked] = ACTIONS(1167), + [sym_predefined_type] = ACTIONS(1265), + [anon_sym_unchecked] = ACTIONS(1251), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1183), - [anon_sym_throw] = ACTIONS(1835), + [anon_sym_default] = ACTIONS(1267), + [anon_sym_throw] = ACTIONS(2171), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1837), - [anon_sym_DOT_DOT] = ACTIONS(1839), + [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), @@ -246571,19 +246457,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1191), - [anon_sym_sizeof] = ACTIONS(1193), - [anon_sym_typeof] = ACTIONS(1195), - [anon_sym___makeref] = ACTIONS(1197), - [anon_sym___reftype] = ACTIONS(1199), - [anon_sym___refvalue] = ACTIONS(1201), - [sym_null_literal] = ACTIONS(1203), - [anon_sym_SQUOTE] = ACTIONS(1205), - [sym_integer_literal] = ACTIONS(1203), - [sym_real_literal] = ACTIONS(1207), - [anon_sym_DQUOTE] = ACTIONS(1209), - [sym_verbatim_string_literal] = ACTIONS(1207), - [aux_sym_preproc_if_token1] = ACTIONS(1211), + [anon_sym_stackalloc] = ACTIONS(1275), + [anon_sym_sizeof] = ACTIONS(1277), + [anon_sym_typeof] = ACTIONS(1279), + [anon_sym___makeref] = ACTIONS(1281), + [anon_sym___reftype] = ACTIONS(1283), + [anon_sym___refvalue] = ACTIONS(1285), + [sym_null_literal] = ACTIONS(1287), + [anon_sym_SQUOTE] = ACTIONS(1289), + [sym_integer_literal] = ACTIONS(1287), + [sym_real_literal] = ACTIONS(1291), + [anon_sym_DQUOTE] = ACTIONS(1293), + [sym_verbatim_string_literal] = ACTIONS(1291), + [aux_sym_preproc_if_token1] = ACTIONS(1295), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -246594,90 +246480,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1213), - [sym_interpolation_verbatim_start] = ACTIONS(1215), - [sym_interpolation_raw_start] = ACTIONS(1217), - [sym_raw_string_start] = ACTIONS(1219), + [sym_interpolation_regular_start] = ACTIONS(1297), + [sym_interpolation_verbatim_start] = ACTIONS(1299), + [sym_interpolation_raw_start] = ACTIONS(1301), + [sym_raw_string_start] = ACTIONS(1303), }, [1212] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2610), - [sym__name] = STATE(5872), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2397), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(4719), - [sym_non_lvalue_expression] = STATE(3277), - [sym_lvalue_expression] = STATE(3407), - [sym__expression_statement_expression] = STATE(3228), - [sym_assignment_expression] = STATE(3289), - [sym_binary_expression] = STATE(3228), - [sym_postfix_unary_expression] = STATE(3289), - [sym_prefix_unary_expression] = STATE(3289), - [sym__pointer_indirection_expression] = STATE(2609), - [sym_query_expression] = STATE(3228), - [sym_from_clause] = STATE(6165), - [sym_conditional_expression] = STATE(3228), - [sym_conditional_access_expression] = STATE(3228), - [sym_as_expression] = STATE(3228), - [sym_is_expression] = STATE(3228), - [sym_is_pattern_expression] = STATE(3228), - [sym_cast_expression] = STATE(3228), - [sym_checked_expression] = STATE(3228), - [sym_invocation_expression] = STATE(3289), - [sym_switch_expression] = STATE(3228), - [sym_await_expression] = STATE(3289), - [sym_throw_expression] = STATE(3228), - [sym_element_access_expression] = STATE(2609), - [sym_interpolated_string_expression] = STATE(3228), - [sym_member_access_expression] = STATE(2609), - [sym_object_creation_expression] = STATE(3289), - [sym_parenthesized_expression] = STATE(3289), - [sym__parenthesized_lvalue_expression] = STATE(2609), - [sym_lambda_expression] = STATE(3228), - [sym__lambda_expression_init] = STATE(7478), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3228), - [sym_anonymous_method_expression] = STATE(3228), - [sym_anonymous_object_creation_expression] = STATE(3228), - [sym_implicit_array_creation_expression] = STATE(3228), - [sym_implicit_object_creation_expression] = STATE(3228), - [sym_implicit_stackalloc_expression] = STATE(3228), - [sym_initializer_expression] = STATE(3228), - [sym_default_expression] = STATE(3228), - [sym_with_expression] = STATE(3228), - [sym_sizeof_expression] = STATE(3228), - [sym_typeof_expression] = STATE(3228), - [sym_makeref_expression] = STATE(3228), - [sym_ref_expression] = STATE(3228), - [sym_reftype_expression] = STATE(3228), - [sym_refvalue_expression] = STATE(3228), - [sym_stackalloc_expression] = STATE(3228), - [sym_range_expression] = STATE(3228), - [sym_tuple_expression] = STATE(2609), - [sym_literal] = STATE(3228), - [sym_character_literal] = STATE(3278), - [sym_string_literal] = STATE(3278), - [sym_raw_string_literal] = STATE(3278), - [sym_boolean_literal] = STATE(3278), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3228), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2416), + [sym__name] = STATE(5867), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2379), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(2904), + [sym_non_lvalue_expression] = STATE(3040), + [sym_lvalue_expression] = STATE(3617), + [sym__expression_statement_expression] = STATE(3035), + [sym_assignment_expression] = STATE(3043), + [sym_binary_expression] = STATE(3035), + [sym_postfix_unary_expression] = STATE(3043), + [sym_prefix_unary_expression] = STATE(3043), + [sym__pointer_indirection_expression] = STATE(2415), + [sym_query_expression] = STATE(3035), + [sym_from_clause] = STATE(6161), + [sym_conditional_expression] = STATE(3035), + [sym_conditional_access_expression] = STATE(3035), + [sym_as_expression] = STATE(3035), + [sym_is_expression] = STATE(3035), + [sym_is_pattern_expression] = STATE(3035), + [sym_cast_expression] = STATE(3035), + [sym_checked_expression] = STATE(3035), + [sym_invocation_expression] = STATE(3043), + [sym_switch_expression] = STATE(3035), + [sym_await_expression] = STATE(3043), + [sym_throw_expression] = STATE(3035), + [sym_element_access_expression] = STATE(2415), + [sym_interpolated_string_expression] = STATE(3035), + [sym_member_access_expression] = STATE(2415), + [sym_object_creation_expression] = STATE(3043), + [sym_parenthesized_expression] = STATE(3043), + [sym__parenthesized_lvalue_expression] = STATE(2415), + [sym_lambda_expression] = STATE(3035), + [sym__lambda_expression_init] = STATE(7706), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3035), + [sym_anonymous_method_expression] = STATE(3035), + [sym_anonymous_object_creation_expression] = STATE(3035), + [sym_implicit_array_creation_expression] = STATE(3035), + [sym_implicit_object_creation_expression] = STATE(3035), + [sym_implicit_stackalloc_expression] = STATE(3035), + [sym_initializer_expression] = STATE(3035), + [sym_default_expression] = STATE(3035), + [sym_with_expression] = STATE(3035), + [sym_sizeof_expression] = STATE(3035), + [sym_typeof_expression] = STATE(3035), + [sym_makeref_expression] = STATE(3035), + [sym_ref_expression] = STATE(3035), + [sym_reftype_expression] = STATE(3035), + [sym_refvalue_expression] = STATE(3035), + [sym_stackalloc_expression] = STATE(3035), + [sym_range_expression] = STATE(3035), + [sym_tuple_expression] = STATE(2415), + [sym_literal] = STATE(3035), + [sym_character_literal] = STATE(3037), + [sym_string_literal] = STATE(3037), + [sym_raw_string_literal] = STATE(3037), + [sym_boolean_literal] = STATE(3037), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3035), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(1212), [sym_preproc_endregion] = STATE(1212), [sym_preproc_line] = STATE(1212), @@ -246687,47 +246573,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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3396), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3455), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1153), - [anon_sym_LPAREN] = ACTIONS(1823), - [anon_sym_ref] = ACTIONS(1825), - [anon_sym_LBRACE] = ACTIONS(1159), - [anon_sym_delegate] = ACTIONS(1161), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1239), + [anon_sym_LPAREN] = ACTIONS(2159), + [anon_sym_ref] = ACTIONS(2161), + [anon_sym_LBRACE] = ACTIONS(1245), + [anon_sym_delegate] = ACTIONS(1247), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1827), + [anon_sym_new] = ACTIONS(2163), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1167), - [anon_sym_BANG] = ACTIONS(1831), - [anon_sym_TILDE] = ACTIONS(1831), - [anon_sym_PLUS_PLUS] = ACTIONS(1831), - [anon_sym_DASH_DASH] = ACTIONS(1831), - [anon_sym_true] = ACTIONS(1173), - [anon_sym_false] = ACTIONS(1173), - [anon_sym_PLUS] = ACTIONS(1829), - [anon_sym_DASH] = ACTIONS(1829), - [anon_sym_STAR] = ACTIONS(1833), - [anon_sym_CARET] = ACTIONS(1831), - [anon_sym_AMP] = ACTIONS(1831), - [anon_sym_this] = ACTIONS(1177), + [anon_sym_checked] = ACTIONS(1251), + [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(1257), + [anon_sym_false] = ACTIONS(1257), + [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(1261), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1179), + [anon_sym_base] = ACTIONS(1263), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1181), - [anon_sym_unchecked] = ACTIONS(1167), + [sym_predefined_type] = ACTIONS(1265), + [anon_sym_unchecked] = ACTIONS(1251), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1183), - [anon_sym_throw] = ACTIONS(1835), + [anon_sym_default] = ACTIONS(1267), + [anon_sym_throw] = ACTIONS(2171), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1837), - [anon_sym_DOT_DOT] = ACTIONS(1839), + [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), @@ -246740,19 +246626,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1191), - [anon_sym_sizeof] = ACTIONS(1193), - [anon_sym_typeof] = ACTIONS(1195), - [anon_sym___makeref] = ACTIONS(1197), - [anon_sym___reftype] = ACTIONS(1199), - [anon_sym___refvalue] = ACTIONS(1201), - [sym_null_literal] = ACTIONS(1203), - [anon_sym_SQUOTE] = ACTIONS(1205), - [sym_integer_literal] = ACTIONS(1203), - [sym_real_literal] = ACTIONS(1207), - [anon_sym_DQUOTE] = ACTIONS(1209), - [sym_verbatim_string_literal] = ACTIONS(1207), - [aux_sym_preproc_if_token1] = ACTIONS(1211), + [anon_sym_stackalloc] = ACTIONS(1275), + [anon_sym_sizeof] = ACTIONS(1277), + [anon_sym_typeof] = ACTIONS(1279), + [anon_sym___makeref] = ACTIONS(1281), + [anon_sym___reftype] = ACTIONS(1283), + [anon_sym___refvalue] = ACTIONS(1285), + [sym_null_literal] = ACTIONS(1287), + [anon_sym_SQUOTE] = ACTIONS(1289), + [sym_integer_literal] = ACTIONS(1287), + [sym_real_literal] = ACTIONS(1291), + [anon_sym_DQUOTE] = ACTIONS(1293), + [sym_verbatim_string_literal] = ACTIONS(1291), + [aux_sym_preproc_if_token1] = ACTIONS(1295), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -246763,90 +246649,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1213), - [sym_interpolation_verbatim_start] = ACTIONS(1215), - [sym_interpolation_raw_start] = ACTIONS(1217), - [sym_raw_string_start] = ACTIONS(1219), + [sym_interpolation_regular_start] = ACTIONS(1297), + [sym_interpolation_verbatim_start] = ACTIONS(1299), + [sym_interpolation_raw_start] = ACTIONS(1301), + [sym_raw_string_start] = ACTIONS(1303), }, [1213] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2610), - [sym__name] = STATE(5872), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2397), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(4720), - [sym_non_lvalue_expression] = STATE(3277), - [sym_lvalue_expression] = STATE(3407), - [sym__expression_statement_expression] = STATE(3228), - [sym_assignment_expression] = STATE(3289), - [sym_binary_expression] = STATE(3228), - [sym_postfix_unary_expression] = STATE(3289), - [sym_prefix_unary_expression] = STATE(3289), - [sym__pointer_indirection_expression] = STATE(2609), - [sym_query_expression] = STATE(3228), - [sym_from_clause] = STATE(6165), - [sym_conditional_expression] = STATE(3228), - [sym_conditional_access_expression] = STATE(3228), - [sym_as_expression] = STATE(3228), - [sym_is_expression] = STATE(3228), - [sym_is_pattern_expression] = STATE(3228), - [sym_cast_expression] = STATE(3228), - [sym_checked_expression] = STATE(3228), - [sym_invocation_expression] = STATE(3289), - [sym_switch_expression] = STATE(3228), - [sym_await_expression] = STATE(3289), - [sym_throw_expression] = STATE(3228), - [sym_element_access_expression] = STATE(2609), - [sym_interpolated_string_expression] = STATE(3228), - [sym_member_access_expression] = STATE(2609), - [sym_object_creation_expression] = STATE(3289), - [sym_parenthesized_expression] = STATE(3289), - [sym__parenthesized_lvalue_expression] = STATE(2609), - [sym_lambda_expression] = STATE(3228), - [sym__lambda_expression_init] = STATE(7478), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3228), - [sym_anonymous_method_expression] = STATE(3228), - [sym_anonymous_object_creation_expression] = STATE(3228), - [sym_implicit_array_creation_expression] = STATE(3228), - [sym_implicit_object_creation_expression] = STATE(3228), - [sym_implicit_stackalloc_expression] = STATE(3228), - [sym_initializer_expression] = STATE(3228), - [sym_default_expression] = STATE(3228), - [sym_with_expression] = STATE(3228), - [sym_sizeof_expression] = STATE(3228), - [sym_typeof_expression] = STATE(3228), - [sym_makeref_expression] = STATE(3228), - [sym_ref_expression] = STATE(3228), - [sym_reftype_expression] = STATE(3228), - [sym_refvalue_expression] = STATE(3228), - [sym_stackalloc_expression] = STATE(3228), - [sym_range_expression] = STATE(3228), - [sym_tuple_expression] = STATE(2609), - [sym_literal] = STATE(3228), - [sym_character_literal] = STATE(3278), - [sym_string_literal] = STATE(3278), - [sym_raw_string_literal] = STATE(3278), - [sym_boolean_literal] = STATE(3278), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3228), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(5873), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2238), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(4915), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3468), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3102), + [sym_postfix_unary_expression] = STATE(3079), + [sym_prefix_unary_expression] = STATE(3079), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6134), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3102), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3079), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3102), + [sym_member_access_expression] = STATE(2472), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3079), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7309), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(3102), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3102), + [sym_typeof_expression] = STATE(3102), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2472), + [sym_literal] = STATE(3102), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(1213), [sym_preproc_endregion] = STATE(1213), [sym_preproc_line] = STATE(1213), @@ -246856,47 +246742,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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3396), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1153), - [anon_sym_LPAREN] = ACTIONS(1823), - [anon_sym_ref] = ACTIONS(1825), - [anon_sym_LBRACE] = ACTIONS(1159), - [anon_sym_delegate] = ACTIONS(1161), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1479), + [anon_sym_LPAREN] = ACTIONS(659), + [anon_sym_ref] = ACTIONS(663), + [anon_sym_LBRACE] = ACTIONS(1481), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1827), + [anon_sym_new] = ACTIONS(1059), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1167), - [anon_sym_BANG] = ACTIONS(1831), - [anon_sym_TILDE] = ACTIONS(1831), - [anon_sym_PLUS_PLUS] = ACTIONS(1831), - [anon_sym_DASH_DASH] = ACTIONS(1831), - [anon_sym_true] = ACTIONS(1173), - [anon_sym_false] = ACTIONS(1173), - [anon_sym_PLUS] = ACTIONS(1829), - [anon_sym_DASH] = ACTIONS(1829), - [anon_sym_STAR] = ACTIONS(1833), - [anon_sym_CARET] = ACTIONS(1831), - [anon_sym_AMP] = ACTIONS(1831), - [anon_sym_this] = ACTIONS(1177), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(1485), + [anon_sym_TILDE] = ACTIONS(1485), + [anon_sym_PLUS_PLUS] = ACTIONS(1485), + [anon_sym_DASH_DASH] = ACTIONS(1485), + [anon_sym_true] = ACTIONS(77), + [anon_sym_false] = ACTIONS(77), + [anon_sym_PLUS] = ACTIONS(1483), + [anon_sym_DASH] = ACTIONS(1483), + [anon_sym_STAR] = ACTIONS(683), + [anon_sym_CARET] = ACTIONS(1485), + [anon_sym_AMP] = ACTIONS(1485), + [anon_sym_this] = ACTIONS(83), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1179), + [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1181), - [anon_sym_unchecked] = ACTIONS(1167), + [sym_predefined_type] = ACTIONS(91), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1183), - [anon_sym_throw] = ACTIONS(1835), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(1077), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1837), - [anon_sym_DOT_DOT] = ACTIONS(1839), + [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), @@ -246909,19 +246795,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1191), - [anon_sym_sizeof] = ACTIONS(1193), - [anon_sym_typeof] = ACTIONS(1195), - [anon_sym___makeref] = ACTIONS(1197), - [anon_sym___reftype] = ACTIONS(1199), - [anon_sym___refvalue] = ACTIONS(1201), - [sym_null_literal] = ACTIONS(1203), - [anon_sym_SQUOTE] = ACTIONS(1205), - [sym_integer_literal] = ACTIONS(1203), - [sym_real_literal] = ACTIONS(1207), - [anon_sym_DQUOTE] = ACTIONS(1209), - [sym_verbatim_string_literal] = ACTIONS(1207), - [aux_sym_preproc_if_token1] = ACTIONS(1211), + [anon_sym_stackalloc] = ACTIONS(127), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_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), @@ -246932,90 +246818,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1213), - [sym_interpolation_verbatim_start] = ACTIONS(1215), - [sym_interpolation_raw_start] = ACTIONS(1217), - [sym_raw_string_start] = ACTIONS(1219), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [sym_interpolation_raw_start] = ACTIONS(155), + [sym_raw_string_start] = ACTIONS(157), }, [1214] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2610), - [sym__name] = STATE(5872), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2397), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(4522), - [sym_non_lvalue_expression] = STATE(3277), - [sym_lvalue_expression] = STATE(3407), - [sym__expression_statement_expression] = STATE(3228), - [sym_assignment_expression] = STATE(3289), - [sym_binary_expression] = STATE(3228), - [sym_postfix_unary_expression] = STATE(3289), - [sym_prefix_unary_expression] = STATE(3289), - [sym__pointer_indirection_expression] = STATE(2609), - [sym_query_expression] = STATE(3228), - [sym_from_clause] = STATE(6165), - [sym_conditional_expression] = STATE(3228), - [sym_conditional_access_expression] = STATE(3228), - [sym_as_expression] = STATE(3228), - [sym_is_expression] = STATE(3228), - [sym_is_pattern_expression] = STATE(3228), - [sym_cast_expression] = STATE(3228), - [sym_checked_expression] = STATE(3228), - [sym_invocation_expression] = STATE(3289), - [sym_switch_expression] = STATE(3228), - [sym_await_expression] = STATE(3289), - [sym_throw_expression] = STATE(3228), - [sym_element_access_expression] = STATE(2609), - [sym_interpolated_string_expression] = STATE(3228), - [sym_member_access_expression] = STATE(2609), - [sym_object_creation_expression] = STATE(3289), - [sym_parenthesized_expression] = STATE(3289), - [sym__parenthesized_lvalue_expression] = STATE(2609), - [sym_lambda_expression] = STATE(3228), - [sym__lambda_expression_init] = STATE(7478), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3228), - [sym_anonymous_method_expression] = STATE(3228), - [sym_anonymous_object_creation_expression] = STATE(3228), - [sym_implicit_array_creation_expression] = STATE(3228), - [sym_implicit_object_creation_expression] = STATE(3228), - [sym_implicit_stackalloc_expression] = STATE(3228), - [sym_initializer_expression] = STATE(3228), - [sym_default_expression] = STATE(3228), - [sym_with_expression] = STATE(3228), - [sym_sizeof_expression] = STATE(3228), - [sym_typeof_expression] = STATE(3228), - [sym_makeref_expression] = STATE(3228), - [sym_ref_expression] = STATE(3228), - [sym_reftype_expression] = STATE(3228), - [sym_refvalue_expression] = STATE(3228), - [sym_stackalloc_expression] = STATE(3228), - [sym_range_expression] = STATE(3228), - [sym_tuple_expression] = STATE(2609), - [sym_literal] = STATE(3228), - [sym_character_literal] = STATE(3278), - [sym_string_literal] = STATE(3278), - [sym_raw_string_literal] = STATE(3278), - [sym_boolean_literal] = STATE(3278), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3228), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2816), + [sym__name] = STATE(5860), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2321), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(4530), + [sym_non_lvalue_expression] = STATE(3495), + [sym_lvalue_expression] = STATE(3349), + [sym__expression_statement_expression] = STATE(3462), + [sym_assignment_expression] = STATE(3497), + [sym_binary_expression] = STATE(3462), + [sym_postfix_unary_expression] = STATE(3497), + [sym_prefix_unary_expression] = STATE(3497), + [sym__pointer_indirection_expression] = STATE(2815), + [sym_query_expression] = STATE(3462), + [sym_from_clause] = STATE(6152), + [sym_conditional_expression] = STATE(3462), + [sym_conditional_access_expression] = STATE(3462), + [sym_as_expression] = STATE(3462), + [sym_is_expression] = STATE(3462), + [sym_is_pattern_expression] = STATE(3462), + [sym_cast_expression] = STATE(3462), + [sym_checked_expression] = STATE(3462), + [sym_invocation_expression] = STATE(3497), + [sym_switch_expression] = STATE(3462), + [sym_await_expression] = STATE(3497), + [sym_throw_expression] = STATE(3462), + [sym_element_access_expression] = STATE(2815), + [sym_interpolated_string_expression] = STATE(3462), + [sym_member_access_expression] = STATE(2815), + [sym_object_creation_expression] = STATE(3497), + [sym_parenthesized_expression] = STATE(3497), + [sym__parenthesized_lvalue_expression] = STATE(2815), + [sym_lambda_expression] = STATE(3462), + [sym__lambda_expression_init] = STATE(7658), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3462), + [sym_anonymous_method_expression] = STATE(3462), + [sym_anonymous_object_creation_expression] = STATE(3462), + [sym_implicit_array_creation_expression] = STATE(3462), + [sym_implicit_object_creation_expression] = STATE(3462), + [sym_implicit_stackalloc_expression] = STATE(3462), + [sym_initializer_expression] = STATE(3462), + [sym_default_expression] = STATE(3462), + [sym_with_expression] = STATE(3462), + [sym_sizeof_expression] = STATE(3462), + [sym_typeof_expression] = STATE(3462), + [sym_makeref_expression] = STATE(3462), + [sym_ref_expression] = STATE(3462), + [sym_reftype_expression] = STATE(3462), + [sym_refvalue_expression] = STATE(3462), + [sym_stackalloc_expression] = STATE(3462), + [sym_range_expression] = STATE(3462), + [sym_tuple_expression] = STATE(2815), + [sym_literal] = STATE(3462), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3462), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(1214), [sym_preproc_endregion] = STATE(1214), [sym_preproc_line] = STATE(1214), @@ -247025,47 +246911,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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3396), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3367), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1153), - [anon_sym_LPAREN] = ACTIONS(1823), - [anon_sym_ref] = ACTIONS(1825), - [anon_sym_LBRACE] = ACTIONS(1159), - [anon_sym_delegate] = ACTIONS(1161), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1305), + [anon_sym_LPAREN] = ACTIONS(1639), + [anon_sym_ref] = ACTIONS(1641), + [anon_sym_LBRACE] = ACTIONS(1311), + [anon_sym_delegate] = ACTIONS(1313), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1827), + [anon_sym_new] = ACTIONS(1583), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1167), - [anon_sym_BANG] = ACTIONS(1831), - [anon_sym_TILDE] = ACTIONS(1831), - [anon_sym_PLUS_PLUS] = ACTIONS(1831), - [anon_sym_DASH_DASH] = ACTIONS(1831), - [anon_sym_true] = ACTIONS(1173), - [anon_sym_false] = ACTIONS(1173), - [anon_sym_PLUS] = ACTIONS(1829), - [anon_sym_DASH] = ACTIONS(1829), - [anon_sym_STAR] = ACTIONS(1833), - [anon_sym_CARET] = ACTIONS(1831), - [anon_sym_AMP] = ACTIONS(1831), - [anon_sym_this] = ACTIONS(1177), + [anon_sym_checked] = ACTIONS(1317), + [anon_sym_BANG] = ACTIONS(1645), + [anon_sym_TILDE] = ACTIONS(1645), + [anon_sym_PLUS_PLUS] = ACTIONS(1645), + [anon_sym_DASH_DASH] = ACTIONS(1645), + [anon_sym_true] = ACTIONS(77), + [anon_sym_false] = ACTIONS(77), + [anon_sym_PLUS] = ACTIONS(1643), + [anon_sym_DASH] = ACTIONS(1643), + [anon_sym_STAR] = ACTIONS(1647), + [anon_sym_CARET] = ACTIONS(1645), + [anon_sym_AMP] = ACTIONS(1645), + [anon_sym_this] = ACTIONS(1321), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1179), + [anon_sym_base] = ACTIONS(1323), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1181), - [anon_sym_unchecked] = ACTIONS(1167), + [sym_predefined_type] = ACTIONS(91), + [anon_sym_unchecked] = ACTIONS(1317), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1183), - [anon_sym_throw] = ACTIONS(1835), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(1649), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1837), - [anon_sym_DOT_DOT] = ACTIONS(1839), + [anon_sym_await] = ACTIONS(1651), + [anon_sym_DOT_DOT] = ACTIONS(1653), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -247078,19 +246964,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1191), - [anon_sym_sizeof] = ACTIONS(1193), - [anon_sym_typeof] = ACTIONS(1195), - [anon_sym___makeref] = ACTIONS(1197), - [anon_sym___reftype] = ACTIONS(1199), - [anon_sym___refvalue] = ACTIONS(1201), - [sym_null_literal] = ACTIONS(1203), - [anon_sym_SQUOTE] = ACTIONS(1205), - [sym_integer_literal] = ACTIONS(1203), - [sym_real_literal] = ACTIONS(1207), - [anon_sym_DQUOTE] = ACTIONS(1209), - [sym_verbatim_string_literal] = ACTIONS(1207), - [aux_sym_preproc_if_token1] = ACTIONS(1211), + [anon_sym_stackalloc] = ACTIONS(1331), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(1333), + [anon_sym___reftype] = ACTIONS(1335), + [anon_sym___refvalue] = ACTIONS(1337), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_literal] = ACTIONS(143), + [anon_sym_DQUOTE] = ACTIONS(145), + [sym_verbatim_string_literal] = ACTIONS(143), + [aux_sym_preproc_if_token1] = ACTIONS(1339), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -247101,90 +246987,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1213), - [sym_interpolation_verbatim_start] = ACTIONS(1215), - [sym_interpolation_raw_start] = ACTIONS(1217), - [sym_raw_string_start] = ACTIONS(1219), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [sym_interpolation_raw_start] = ACTIONS(155), + [sym_raw_string_start] = ACTIONS(157), }, [1215] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2610), - [sym__name] = STATE(5872), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2397), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(4721), - [sym_non_lvalue_expression] = STATE(3277), - [sym_lvalue_expression] = STATE(3407), - [sym__expression_statement_expression] = STATE(3228), - [sym_assignment_expression] = STATE(3289), - [sym_binary_expression] = STATE(3228), - [sym_postfix_unary_expression] = STATE(3289), - [sym_prefix_unary_expression] = STATE(3289), - [sym__pointer_indirection_expression] = STATE(2609), - [sym_query_expression] = STATE(3228), - [sym_from_clause] = STATE(6165), - [sym_conditional_expression] = STATE(3228), - [sym_conditional_access_expression] = STATE(3228), - [sym_as_expression] = STATE(3228), - [sym_is_expression] = STATE(3228), - [sym_is_pattern_expression] = STATE(3228), - [sym_cast_expression] = STATE(3228), - [sym_checked_expression] = STATE(3228), - [sym_invocation_expression] = STATE(3289), - [sym_switch_expression] = STATE(3228), - [sym_await_expression] = STATE(3289), - [sym_throw_expression] = STATE(3228), - [sym_element_access_expression] = STATE(2609), - [sym_interpolated_string_expression] = STATE(3228), - [sym_member_access_expression] = STATE(2609), - [sym_object_creation_expression] = STATE(3289), - [sym_parenthesized_expression] = STATE(3289), - [sym__parenthesized_lvalue_expression] = STATE(2609), - [sym_lambda_expression] = STATE(3228), - [sym__lambda_expression_init] = STATE(7478), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3228), - [sym_anonymous_method_expression] = STATE(3228), - [sym_anonymous_object_creation_expression] = STATE(3228), - [sym_implicit_array_creation_expression] = STATE(3228), - [sym_implicit_object_creation_expression] = STATE(3228), - [sym_implicit_stackalloc_expression] = STATE(3228), - [sym_initializer_expression] = STATE(3228), - [sym_default_expression] = STATE(3228), - [sym_with_expression] = STATE(3228), - [sym_sizeof_expression] = STATE(3228), - [sym_typeof_expression] = STATE(3228), - [sym_makeref_expression] = STATE(3228), - [sym_ref_expression] = STATE(3228), - [sym_reftype_expression] = STATE(3228), - [sym_refvalue_expression] = STATE(3228), - [sym_stackalloc_expression] = STATE(3228), - [sym_range_expression] = STATE(3228), - [sym_tuple_expression] = STATE(2609), - [sym_literal] = STATE(3228), - [sym_character_literal] = STATE(3278), - [sym_string_literal] = STATE(3278), - [sym_raw_string_literal] = STATE(3278), - [sym_boolean_literal] = STATE(3278), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3228), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2816), + [sym__name] = STATE(5860), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2321), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(3195), + [sym_non_lvalue_expression] = STATE(3495), + [sym_lvalue_expression] = STATE(3349), + [sym__expression_statement_expression] = STATE(3462), + [sym_assignment_expression] = STATE(3497), + [sym_binary_expression] = STATE(3462), + [sym_postfix_unary_expression] = STATE(3497), + [sym_prefix_unary_expression] = STATE(3497), + [sym__pointer_indirection_expression] = STATE(2815), + [sym_query_expression] = STATE(3462), + [sym_from_clause] = STATE(6152), + [sym_conditional_expression] = STATE(3462), + [sym_conditional_access_expression] = STATE(3462), + [sym_as_expression] = STATE(3462), + [sym_is_expression] = STATE(3462), + [sym_is_pattern_expression] = STATE(3462), + [sym_cast_expression] = STATE(3462), + [sym_checked_expression] = STATE(3462), + [sym_invocation_expression] = STATE(3497), + [sym_switch_expression] = STATE(3462), + [sym_await_expression] = STATE(3497), + [sym_throw_expression] = STATE(3462), + [sym_element_access_expression] = STATE(2815), + [sym_interpolated_string_expression] = STATE(3462), + [sym_member_access_expression] = STATE(2815), + [sym_object_creation_expression] = STATE(3497), + [sym_parenthesized_expression] = STATE(3497), + [sym__parenthesized_lvalue_expression] = STATE(2815), + [sym_lambda_expression] = STATE(3462), + [sym__lambda_expression_init] = STATE(7658), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3462), + [sym_anonymous_method_expression] = STATE(3462), + [sym_anonymous_object_creation_expression] = STATE(3462), + [sym_implicit_array_creation_expression] = STATE(3462), + [sym_implicit_object_creation_expression] = STATE(3462), + [sym_implicit_stackalloc_expression] = STATE(3462), + [sym_initializer_expression] = STATE(3462), + [sym_default_expression] = STATE(3462), + [sym_with_expression] = STATE(3462), + [sym_sizeof_expression] = STATE(3462), + [sym_typeof_expression] = STATE(3462), + [sym_makeref_expression] = STATE(3462), + [sym_ref_expression] = STATE(3462), + [sym_reftype_expression] = STATE(3462), + [sym_refvalue_expression] = STATE(3462), + [sym_stackalloc_expression] = STATE(3462), + [sym_range_expression] = STATE(3462), + [sym_tuple_expression] = STATE(2815), + [sym_literal] = STATE(3462), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3462), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(1215), [sym_preproc_endregion] = STATE(1215), [sym_preproc_line] = STATE(1215), @@ -247194,47 +247080,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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3396), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3367), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1153), - [anon_sym_LPAREN] = ACTIONS(1823), - [anon_sym_ref] = ACTIONS(1825), - [anon_sym_LBRACE] = ACTIONS(1159), - [anon_sym_delegate] = ACTIONS(1161), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1305), + [anon_sym_LPAREN] = ACTIONS(1639), + [anon_sym_ref] = ACTIONS(1641), + [anon_sym_LBRACE] = ACTIONS(1311), + [anon_sym_delegate] = ACTIONS(1313), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1827), + [anon_sym_new] = ACTIONS(1583), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1167), - [anon_sym_BANG] = ACTIONS(1831), - [anon_sym_TILDE] = ACTIONS(1831), - [anon_sym_PLUS_PLUS] = ACTIONS(1831), - [anon_sym_DASH_DASH] = ACTIONS(1831), - [anon_sym_true] = ACTIONS(1173), - [anon_sym_false] = ACTIONS(1173), - [anon_sym_PLUS] = ACTIONS(1829), - [anon_sym_DASH] = ACTIONS(1829), - [anon_sym_STAR] = ACTIONS(1833), - [anon_sym_CARET] = ACTIONS(1831), - [anon_sym_AMP] = ACTIONS(1831), - [anon_sym_this] = ACTIONS(1177), + [anon_sym_checked] = ACTIONS(1317), + [anon_sym_BANG] = ACTIONS(1645), + [anon_sym_TILDE] = ACTIONS(1645), + [anon_sym_PLUS_PLUS] = ACTIONS(1645), + [anon_sym_DASH_DASH] = ACTIONS(1645), + [anon_sym_true] = ACTIONS(77), + [anon_sym_false] = ACTIONS(77), + [anon_sym_PLUS] = ACTIONS(1643), + [anon_sym_DASH] = ACTIONS(1643), + [anon_sym_STAR] = ACTIONS(1647), + [anon_sym_CARET] = ACTIONS(1645), + [anon_sym_AMP] = ACTIONS(1645), + [anon_sym_this] = ACTIONS(1321), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1179), + [anon_sym_base] = ACTIONS(1323), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1181), - [anon_sym_unchecked] = ACTIONS(1167), + [sym_predefined_type] = ACTIONS(91), + [anon_sym_unchecked] = ACTIONS(1317), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1183), - [anon_sym_throw] = ACTIONS(1835), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(1649), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1837), - [anon_sym_DOT_DOT] = ACTIONS(1839), + [anon_sym_await] = ACTIONS(1651), + [anon_sym_DOT_DOT] = ACTIONS(1653), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -247247,19 +247133,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1191), - [anon_sym_sizeof] = ACTIONS(1193), - [anon_sym_typeof] = ACTIONS(1195), - [anon_sym___makeref] = ACTIONS(1197), - [anon_sym___reftype] = ACTIONS(1199), - [anon_sym___refvalue] = ACTIONS(1201), - [sym_null_literal] = ACTIONS(1203), - [anon_sym_SQUOTE] = ACTIONS(1205), - [sym_integer_literal] = ACTIONS(1203), - [sym_real_literal] = ACTIONS(1207), - [anon_sym_DQUOTE] = ACTIONS(1209), - [sym_verbatim_string_literal] = ACTIONS(1207), - [aux_sym_preproc_if_token1] = ACTIONS(1211), + [anon_sym_stackalloc] = ACTIONS(1331), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(1333), + [anon_sym___reftype] = ACTIONS(1335), + [anon_sym___refvalue] = ACTIONS(1337), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_literal] = ACTIONS(143), + [anon_sym_DQUOTE] = ACTIONS(145), + [sym_verbatim_string_literal] = ACTIONS(143), + [aux_sym_preproc_if_token1] = ACTIONS(1339), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -247270,90 +247156,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1213), - [sym_interpolation_verbatim_start] = ACTIONS(1215), - [sym_interpolation_raw_start] = ACTIONS(1217), - [sym_raw_string_start] = ACTIONS(1219), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [sym_interpolation_raw_start] = ACTIONS(155), + [sym_raw_string_start] = ACTIONS(157), }, [1216] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2610), - [sym__name] = STATE(5872), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2397), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(4722), - [sym_non_lvalue_expression] = STATE(3277), - [sym_lvalue_expression] = STATE(3407), - [sym__expression_statement_expression] = STATE(3228), - [sym_assignment_expression] = STATE(3289), - [sym_binary_expression] = STATE(3228), - [sym_postfix_unary_expression] = STATE(3289), - [sym_prefix_unary_expression] = STATE(3289), - [sym__pointer_indirection_expression] = STATE(2609), - [sym_query_expression] = STATE(3228), - [sym_from_clause] = STATE(6165), - [sym_conditional_expression] = STATE(3228), - [sym_conditional_access_expression] = STATE(3228), - [sym_as_expression] = STATE(3228), - [sym_is_expression] = STATE(3228), - [sym_is_pattern_expression] = STATE(3228), - [sym_cast_expression] = STATE(3228), - [sym_checked_expression] = STATE(3228), - [sym_invocation_expression] = STATE(3289), - [sym_switch_expression] = STATE(3228), - [sym_await_expression] = STATE(3289), - [sym_throw_expression] = STATE(3228), - [sym_element_access_expression] = STATE(2609), - [sym_interpolated_string_expression] = STATE(3228), - [sym_member_access_expression] = STATE(2609), - [sym_object_creation_expression] = STATE(3289), - [sym_parenthesized_expression] = STATE(3289), - [sym__parenthesized_lvalue_expression] = STATE(2609), - [sym_lambda_expression] = STATE(3228), - [sym__lambda_expression_init] = STATE(7478), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3228), - [sym_anonymous_method_expression] = STATE(3228), - [sym_anonymous_object_creation_expression] = STATE(3228), - [sym_implicit_array_creation_expression] = STATE(3228), - [sym_implicit_object_creation_expression] = STATE(3228), - [sym_implicit_stackalloc_expression] = STATE(3228), - [sym_initializer_expression] = STATE(3228), - [sym_default_expression] = STATE(3228), - [sym_with_expression] = STATE(3228), - [sym_sizeof_expression] = STATE(3228), - [sym_typeof_expression] = STATE(3228), - [sym_makeref_expression] = STATE(3228), - [sym_ref_expression] = STATE(3228), - [sym_reftype_expression] = STATE(3228), - [sym_refvalue_expression] = STATE(3228), - [sym_stackalloc_expression] = STATE(3228), - [sym_range_expression] = STATE(3228), - [sym_tuple_expression] = STATE(2609), - [sym_literal] = STATE(3228), - [sym_character_literal] = STATE(3278), - [sym_string_literal] = STATE(3278), - [sym_raw_string_literal] = STATE(3278), - [sym_boolean_literal] = STATE(3278), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3228), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2816), + [sym__name] = STATE(5860), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2321), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(4532), + [sym_non_lvalue_expression] = STATE(3495), + [sym_lvalue_expression] = STATE(3349), + [sym__expression_statement_expression] = STATE(3462), + [sym_assignment_expression] = STATE(3497), + [sym_binary_expression] = STATE(3462), + [sym_postfix_unary_expression] = STATE(3497), + [sym_prefix_unary_expression] = STATE(3497), + [sym__pointer_indirection_expression] = STATE(2815), + [sym_query_expression] = STATE(3462), + [sym_from_clause] = STATE(6152), + [sym_conditional_expression] = STATE(3462), + [sym_conditional_access_expression] = STATE(3462), + [sym_as_expression] = STATE(3462), + [sym_is_expression] = STATE(3462), + [sym_is_pattern_expression] = STATE(3462), + [sym_cast_expression] = STATE(3462), + [sym_checked_expression] = STATE(3462), + [sym_invocation_expression] = STATE(3497), + [sym_switch_expression] = STATE(3462), + [sym_await_expression] = STATE(3497), + [sym_throw_expression] = STATE(3462), + [sym_element_access_expression] = STATE(2815), + [sym_interpolated_string_expression] = STATE(3462), + [sym_member_access_expression] = STATE(2815), + [sym_object_creation_expression] = STATE(3497), + [sym_parenthesized_expression] = STATE(3497), + [sym__parenthesized_lvalue_expression] = STATE(2815), + [sym_lambda_expression] = STATE(3462), + [sym__lambda_expression_init] = STATE(7658), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3462), + [sym_anonymous_method_expression] = STATE(3462), + [sym_anonymous_object_creation_expression] = STATE(3462), + [sym_implicit_array_creation_expression] = STATE(3462), + [sym_implicit_object_creation_expression] = STATE(3462), + [sym_implicit_stackalloc_expression] = STATE(3462), + [sym_initializer_expression] = STATE(3462), + [sym_default_expression] = STATE(3462), + [sym_with_expression] = STATE(3462), + [sym_sizeof_expression] = STATE(3462), + [sym_typeof_expression] = STATE(3462), + [sym_makeref_expression] = STATE(3462), + [sym_ref_expression] = STATE(3462), + [sym_reftype_expression] = STATE(3462), + [sym_refvalue_expression] = STATE(3462), + [sym_stackalloc_expression] = STATE(3462), + [sym_range_expression] = STATE(3462), + [sym_tuple_expression] = STATE(2815), + [sym_literal] = STATE(3462), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3462), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(1216), [sym_preproc_endregion] = STATE(1216), [sym_preproc_line] = STATE(1216), @@ -247363,47 +247249,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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3396), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3367), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1153), - [anon_sym_LPAREN] = ACTIONS(1823), - [anon_sym_ref] = ACTIONS(1825), - [anon_sym_LBRACE] = ACTIONS(1159), - [anon_sym_delegate] = ACTIONS(1161), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1305), + [anon_sym_LPAREN] = ACTIONS(1639), + [anon_sym_ref] = ACTIONS(1641), + [anon_sym_LBRACE] = ACTIONS(1311), + [anon_sym_delegate] = ACTIONS(1313), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1827), + [anon_sym_new] = ACTIONS(1583), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1167), - [anon_sym_BANG] = ACTIONS(1831), - [anon_sym_TILDE] = ACTIONS(1831), - [anon_sym_PLUS_PLUS] = ACTIONS(1831), - [anon_sym_DASH_DASH] = ACTIONS(1831), - [anon_sym_true] = ACTIONS(1173), - [anon_sym_false] = ACTIONS(1173), - [anon_sym_PLUS] = ACTIONS(1829), - [anon_sym_DASH] = ACTIONS(1829), - [anon_sym_STAR] = ACTIONS(1833), - [anon_sym_CARET] = ACTIONS(1831), - [anon_sym_AMP] = ACTIONS(1831), - [anon_sym_this] = ACTIONS(1177), + [anon_sym_checked] = ACTIONS(1317), + [anon_sym_BANG] = ACTIONS(1645), + [anon_sym_TILDE] = ACTIONS(1645), + [anon_sym_PLUS_PLUS] = ACTIONS(1645), + [anon_sym_DASH_DASH] = ACTIONS(1645), + [anon_sym_true] = ACTIONS(77), + [anon_sym_false] = ACTIONS(77), + [anon_sym_PLUS] = ACTIONS(1643), + [anon_sym_DASH] = ACTIONS(1643), + [anon_sym_STAR] = ACTIONS(1647), + [anon_sym_CARET] = ACTIONS(1645), + [anon_sym_AMP] = ACTIONS(1645), + [anon_sym_this] = ACTIONS(1321), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1179), + [anon_sym_base] = ACTIONS(1323), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1181), - [anon_sym_unchecked] = ACTIONS(1167), + [sym_predefined_type] = ACTIONS(91), + [anon_sym_unchecked] = ACTIONS(1317), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1183), - [anon_sym_throw] = ACTIONS(1835), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(1649), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1837), - [anon_sym_DOT_DOT] = ACTIONS(1839), + [anon_sym_await] = ACTIONS(1651), + [anon_sym_DOT_DOT] = ACTIONS(1653), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -247416,19 +247302,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1191), - [anon_sym_sizeof] = ACTIONS(1193), - [anon_sym_typeof] = ACTIONS(1195), - [anon_sym___makeref] = ACTIONS(1197), - [anon_sym___reftype] = ACTIONS(1199), - [anon_sym___refvalue] = ACTIONS(1201), - [sym_null_literal] = ACTIONS(1203), - [anon_sym_SQUOTE] = ACTIONS(1205), - [sym_integer_literal] = ACTIONS(1203), - [sym_real_literal] = ACTIONS(1207), - [anon_sym_DQUOTE] = ACTIONS(1209), - [sym_verbatim_string_literal] = ACTIONS(1207), - [aux_sym_preproc_if_token1] = ACTIONS(1211), + [anon_sym_stackalloc] = ACTIONS(1331), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(1333), + [anon_sym___reftype] = ACTIONS(1335), + [anon_sym___refvalue] = ACTIONS(1337), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_literal] = ACTIONS(143), + [anon_sym_DQUOTE] = ACTIONS(145), + [sym_verbatim_string_literal] = ACTIONS(143), + [aux_sym_preproc_if_token1] = ACTIONS(1339), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -247439,90 +247325,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1213), - [sym_interpolation_verbatim_start] = ACTIONS(1215), - [sym_interpolation_raw_start] = ACTIONS(1217), - [sym_raw_string_start] = ACTIONS(1219), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [sym_interpolation_raw_start] = ACTIONS(155), + [sym_raw_string_start] = ACTIONS(157), }, [1217] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2610), - [sym__name] = STATE(5872), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2397), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(4723), - [sym_non_lvalue_expression] = STATE(3277), - [sym_lvalue_expression] = STATE(3407), - [sym__expression_statement_expression] = STATE(3228), - [sym_assignment_expression] = STATE(3289), - [sym_binary_expression] = STATE(3228), - [sym_postfix_unary_expression] = STATE(3289), - [sym_prefix_unary_expression] = STATE(3289), - [sym__pointer_indirection_expression] = STATE(2609), - [sym_query_expression] = STATE(3228), - [sym_from_clause] = STATE(6165), - [sym_conditional_expression] = STATE(3228), - [sym_conditional_access_expression] = STATE(3228), - [sym_as_expression] = STATE(3228), - [sym_is_expression] = STATE(3228), - [sym_is_pattern_expression] = STATE(3228), - [sym_cast_expression] = STATE(3228), - [sym_checked_expression] = STATE(3228), - [sym_invocation_expression] = STATE(3289), - [sym_switch_expression] = STATE(3228), - [sym_await_expression] = STATE(3289), - [sym_throw_expression] = STATE(3228), - [sym_element_access_expression] = STATE(2609), - [sym_interpolated_string_expression] = STATE(3228), - [sym_member_access_expression] = STATE(2609), - [sym_object_creation_expression] = STATE(3289), - [sym_parenthesized_expression] = STATE(3289), - [sym__parenthesized_lvalue_expression] = STATE(2609), - [sym_lambda_expression] = STATE(3228), - [sym__lambda_expression_init] = STATE(7478), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3228), - [sym_anonymous_method_expression] = STATE(3228), - [sym_anonymous_object_creation_expression] = STATE(3228), - [sym_implicit_array_creation_expression] = STATE(3228), - [sym_implicit_object_creation_expression] = STATE(3228), - [sym_implicit_stackalloc_expression] = STATE(3228), - [sym_initializer_expression] = STATE(3228), - [sym_default_expression] = STATE(3228), - [sym_with_expression] = STATE(3228), - [sym_sizeof_expression] = STATE(3228), - [sym_typeof_expression] = STATE(3228), - [sym_makeref_expression] = STATE(3228), - [sym_ref_expression] = STATE(3228), - [sym_reftype_expression] = STATE(3228), - [sym_refvalue_expression] = STATE(3228), - [sym_stackalloc_expression] = STATE(3228), - [sym_range_expression] = STATE(3228), - [sym_tuple_expression] = STATE(2609), - [sym_literal] = STATE(3228), - [sym_character_literal] = STATE(3278), - [sym_string_literal] = STATE(3278), - [sym_raw_string_literal] = STATE(3278), - [sym_boolean_literal] = STATE(3278), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3228), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2816), + [sym__name] = STATE(5860), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2321), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(4534), + [sym_non_lvalue_expression] = STATE(3495), + [sym_lvalue_expression] = STATE(3349), + [sym__expression_statement_expression] = STATE(3462), + [sym_assignment_expression] = STATE(3497), + [sym_binary_expression] = STATE(3462), + [sym_postfix_unary_expression] = STATE(3497), + [sym_prefix_unary_expression] = STATE(3497), + [sym__pointer_indirection_expression] = STATE(2815), + [sym_query_expression] = STATE(3462), + [sym_from_clause] = STATE(6152), + [sym_conditional_expression] = STATE(3462), + [sym_conditional_access_expression] = STATE(3462), + [sym_as_expression] = STATE(3462), + [sym_is_expression] = STATE(3462), + [sym_is_pattern_expression] = STATE(3462), + [sym_cast_expression] = STATE(3462), + [sym_checked_expression] = STATE(3462), + [sym_invocation_expression] = STATE(3497), + [sym_switch_expression] = STATE(3462), + [sym_await_expression] = STATE(3497), + [sym_throw_expression] = STATE(3462), + [sym_element_access_expression] = STATE(2815), + [sym_interpolated_string_expression] = STATE(3462), + [sym_member_access_expression] = STATE(2815), + [sym_object_creation_expression] = STATE(3497), + [sym_parenthesized_expression] = STATE(3497), + [sym__parenthesized_lvalue_expression] = STATE(2815), + [sym_lambda_expression] = STATE(3462), + [sym__lambda_expression_init] = STATE(7658), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3462), + [sym_anonymous_method_expression] = STATE(3462), + [sym_anonymous_object_creation_expression] = STATE(3462), + [sym_implicit_array_creation_expression] = STATE(3462), + [sym_implicit_object_creation_expression] = STATE(3462), + [sym_implicit_stackalloc_expression] = STATE(3462), + [sym_initializer_expression] = STATE(3462), + [sym_default_expression] = STATE(3462), + [sym_with_expression] = STATE(3462), + [sym_sizeof_expression] = STATE(3462), + [sym_typeof_expression] = STATE(3462), + [sym_makeref_expression] = STATE(3462), + [sym_ref_expression] = STATE(3462), + [sym_reftype_expression] = STATE(3462), + [sym_refvalue_expression] = STATE(3462), + [sym_stackalloc_expression] = STATE(3462), + [sym_range_expression] = STATE(3462), + [sym_tuple_expression] = STATE(2815), + [sym_literal] = STATE(3462), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3462), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(1217), [sym_preproc_endregion] = STATE(1217), [sym_preproc_line] = STATE(1217), @@ -247532,47 +247418,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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3396), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3367), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1153), - [anon_sym_LPAREN] = ACTIONS(1823), - [anon_sym_ref] = ACTIONS(1825), - [anon_sym_LBRACE] = ACTIONS(1159), - [anon_sym_delegate] = ACTIONS(1161), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1305), + [anon_sym_LPAREN] = ACTIONS(1639), + [anon_sym_ref] = ACTIONS(1641), + [anon_sym_LBRACE] = ACTIONS(1311), + [anon_sym_delegate] = ACTIONS(1313), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1827), + [anon_sym_new] = ACTIONS(1583), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1167), - [anon_sym_BANG] = ACTIONS(1831), - [anon_sym_TILDE] = ACTIONS(1831), - [anon_sym_PLUS_PLUS] = ACTIONS(1831), - [anon_sym_DASH_DASH] = ACTIONS(1831), - [anon_sym_true] = ACTIONS(1173), - [anon_sym_false] = ACTIONS(1173), - [anon_sym_PLUS] = ACTIONS(1829), - [anon_sym_DASH] = ACTIONS(1829), - [anon_sym_STAR] = ACTIONS(1833), - [anon_sym_CARET] = ACTIONS(1831), - [anon_sym_AMP] = ACTIONS(1831), - [anon_sym_this] = ACTIONS(1177), + [anon_sym_checked] = ACTIONS(1317), + [anon_sym_BANG] = ACTIONS(1645), + [anon_sym_TILDE] = ACTIONS(1645), + [anon_sym_PLUS_PLUS] = ACTIONS(1645), + [anon_sym_DASH_DASH] = ACTIONS(1645), + [anon_sym_true] = ACTIONS(77), + [anon_sym_false] = ACTIONS(77), + [anon_sym_PLUS] = ACTIONS(1643), + [anon_sym_DASH] = ACTIONS(1643), + [anon_sym_STAR] = ACTIONS(1647), + [anon_sym_CARET] = ACTIONS(1645), + [anon_sym_AMP] = ACTIONS(1645), + [anon_sym_this] = ACTIONS(1321), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1179), + [anon_sym_base] = ACTIONS(1323), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1181), - [anon_sym_unchecked] = ACTIONS(1167), + [sym_predefined_type] = ACTIONS(91), + [anon_sym_unchecked] = ACTIONS(1317), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1183), - [anon_sym_throw] = ACTIONS(1835), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(1649), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1837), - [anon_sym_DOT_DOT] = ACTIONS(1839), + [anon_sym_await] = ACTIONS(1651), + [anon_sym_DOT_DOT] = ACTIONS(1653), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -247585,19 +247471,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1191), - [anon_sym_sizeof] = ACTIONS(1193), - [anon_sym_typeof] = ACTIONS(1195), - [anon_sym___makeref] = ACTIONS(1197), - [anon_sym___reftype] = ACTIONS(1199), - [anon_sym___refvalue] = ACTIONS(1201), - [sym_null_literal] = ACTIONS(1203), - [anon_sym_SQUOTE] = ACTIONS(1205), - [sym_integer_literal] = ACTIONS(1203), - [sym_real_literal] = ACTIONS(1207), - [anon_sym_DQUOTE] = ACTIONS(1209), - [sym_verbatim_string_literal] = ACTIONS(1207), - [aux_sym_preproc_if_token1] = ACTIONS(1211), + [anon_sym_stackalloc] = ACTIONS(1331), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(1333), + [anon_sym___reftype] = ACTIONS(1335), + [anon_sym___refvalue] = ACTIONS(1337), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_literal] = ACTIONS(143), + [anon_sym_DQUOTE] = ACTIONS(145), + [sym_verbatim_string_literal] = ACTIONS(143), + [aux_sym_preproc_if_token1] = ACTIONS(1339), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -247608,90 +247494,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1213), - [sym_interpolation_verbatim_start] = ACTIONS(1215), - [sym_interpolation_raw_start] = ACTIONS(1217), - [sym_raw_string_start] = ACTIONS(1219), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [sym_interpolation_raw_start] = ACTIONS(155), + [sym_raw_string_start] = ACTIONS(157), }, [1218] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2610), - [sym__name] = STATE(5872), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2397), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(4724), - [sym_non_lvalue_expression] = STATE(3277), - [sym_lvalue_expression] = STATE(3407), - [sym__expression_statement_expression] = STATE(3228), - [sym_assignment_expression] = STATE(3289), - [sym_binary_expression] = STATE(3228), - [sym_postfix_unary_expression] = STATE(3289), - [sym_prefix_unary_expression] = STATE(3289), - [sym__pointer_indirection_expression] = STATE(2609), - [sym_query_expression] = STATE(3228), - [sym_from_clause] = STATE(6165), - [sym_conditional_expression] = STATE(3228), - [sym_conditional_access_expression] = STATE(3228), - [sym_as_expression] = STATE(3228), - [sym_is_expression] = STATE(3228), - [sym_is_pattern_expression] = STATE(3228), - [sym_cast_expression] = STATE(3228), - [sym_checked_expression] = STATE(3228), - [sym_invocation_expression] = STATE(3289), - [sym_switch_expression] = STATE(3228), - [sym_await_expression] = STATE(3289), - [sym_throw_expression] = STATE(3228), - [sym_element_access_expression] = STATE(2609), - [sym_interpolated_string_expression] = STATE(3228), - [sym_member_access_expression] = STATE(2609), - [sym_object_creation_expression] = STATE(3289), - [sym_parenthesized_expression] = STATE(3289), - [sym__parenthesized_lvalue_expression] = STATE(2609), - [sym_lambda_expression] = STATE(3228), - [sym__lambda_expression_init] = STATE(7478), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3228), - [sym_anonymous_method_expression] = STATE(3228), - [sym_anonymous_object_creation_expression] = STATE(3228), - [sym_implicit_array_creation_expression] = STATE(3228), - [sym_implicit_object_creation_expression] = STATE(3228), - [sym_implicit_stackalloc_expression] = STATE(3228), - [sym_initializer_expression] = STATE(3228), - [sym_default_expression] = STATE(3228), - [sym_with_expression] = STATE(3228), - [sym_sizeof_expression] = STATE(3228), - [sym_typeof_expression] = STATE(3228), - [sym_makeref_expression] = STATE(3228), - [sym_ref_expression] = STATE(3228), - [sym_reftype_expression] = STATE(3228), - [sym_refvalue_expression] = STATE(3228), - [sym_stackalloc_expression] = STATE(3228), - [sym_range_expression] = STATE(3228), - [sym_tuple_expression] = STATE(2609), - [sym_literal] = STATE(3228), - [sym_character_literal] = STATE(3278), - [sym_string_literal] = STATE(3278), - [sym_raw_string_literal] = STATE(3278), - [sym_boolean_literal] = STATE(3278), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3228), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2603), + [sym__name] = STATE(5869), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2367), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(4673), + [sym_non_lvalue_expression] = STATE(3220), + [sym_lvalue_expression] = STATE(3377), + [sym__expression_statement_expression] = STATE(3236), + [sym_assignment_expression] = STATE(3221), + [sym_binary_expression] = STATE(3236), + [sym_postfix_unary_expression] = STATE(3221), + [sym_prefix_unary_expression] = STATE(3221), + [sym__pointer_indirection_expression] = STATE(2602), + [sym_query_expression] = STATE(3236), + [sym_from_clause] = STATE(6128), + [sym_conditional_expression] = STATE(3236), + [sym_conditional_access_expression] = STATE(3236), + [sym_as_expression] = STATE(3236), + [sym_is_expression] = STATE(3236), + [sym_is_pattern_expression] = STATE(3236), + [sym_cast_expression] = STATE(3236), + [sym_checked_expression] = STATE(3236), + [sym_invocation_expression] = STATE(3221), + [sym_switch_expression] = STATE(3236), + [sym_await_expression] = STATE(3221), + [sym_throw_expression] = STATE(3236), + [sym_element_access_expression] = STATE(2602), + [sym_interpolated_string_expression] = STATE(3236), + [sym_member_access_expression] = STATE(2602), + [sym_object_creation_expression] = STATE(3221), + [sym_parenthesized_expression] = STATE(3221), + [sym__parenthesized_lvalue_expression] = STATE(2602), + [sym_lambda_expression] = STATE(3236), + [sym__lambda_expression_init] = STATE(7632), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3236), + [sym_anonymous_method_expression] = STATE(3236), + [sym_anonymous_object_creation_expression] = STATE(3236), + [sym_implicit_array_creation_expression] = STATE(3236), + [sym_implicit_object_creation_expression] = STATE(3236), + [sym_implicit_stackalloc_expression] = STATE(3236), + [sym_initializer_expression] = STATE(3236), + [sym_default_expression] = STATE(3236), + [sym_with_expression] = STATE(3236), + [sym_sizeof_expression] = STATE(3236), + [sym_typeof_expression] = STATE(3236), + [sym_makeref_expression] = STATE(3236), + [sym_ref_expression] = STATE(3236), + [sym_reftype_expression] = STATE(3236), + [sym_refvalue_expression] = STATE(3236), + [sym_stackalloc_expression] = STATE(3236), + [sym_range_expression] = STATE(3236), + [sym_tuple_expression] = STATE(2602), + [sym_literal] = STATE(3236), + [sym_character_literal] = STATE(3272), + [sym_string_literal] = STATE(3272), + [sym_raw_string_literal] = STATE(3272), + [sym_boolean_literal] = STATE(3272), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3236), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(1218), [sym_preproc_endregion] = STATE(1218), [sym_preproc_line] = STATE(1218), @@ -247701,47 +247587,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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3396), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3379), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1153), - [anon_sym_LPAREN] = ACTIONS(1823), - [anon_sym_ref] = ACTIONS(1825), - [anon_sym_LBRACE] = ACTIONS(1159), - [anon_sym_delegate] = ACTIONS(1161), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1149), + [anon_sym_LPAREN] = ACTIONS(1913), + [anon_sym_ref] = ACTIONS(1915), + [anon_sym_LBRACE] = ACTIONS(1155), + [anon_sym_delegate] = ACTIONS(1157), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1827), + [anon_sym_new] = ACTIONS(1917), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1167), - [anon_sym_BANG] = ACTIONS(1831), - [anon_sym_TILDE] = ACTIONS(1831), - [anon_sym_PLUS_PLUS] = ACTIONS(1831), - [anon_sym_DASH_DASH] = ACTIONS(1831), - [anon_sym_true] = ACTIONS(1173), - [anon_sym_false] = ACTIONS(1173), - [anon_sym_PLUS] = ACTIONS(1829), - [anon_sym_DASH] = ACTIONS(1829), - [anon_sym_STAR] = ACTIONS(1833), - [anon_sym_CARET] = ACTIONS(1831), - [anon_sym_AMP] = ACTIONS(1831), - [anon_sym_this] = ACTIONS(1177), + [anon_sym_checked] = ACTIONS(1163), + [anon_sym_BANG] = ACTIONS(1921), + [anon_sym_TILDE] = ACTIONS(1921), + [anon_sym_PLUS_PLUS] = ACTIONS(1921), + [anon_sym_DASH_DASH] = ACTIONS(1921), + [anon_sym_true] = ACTIONS(1169), + [anon_sym_false] = ACTIONS(1169), + [anon_sym_PLUS] = ACTIONS(1919), + [anon_sym_DASH] = ACTIONS(1919), + [anon_sym_STAR] = ACTIONS(1923), + [anon_sym_CARET] = ACTIONS(1921), + [anon_sym_AMP] = ACTIONS(1921), + [anon_sym_this] = ACTIONS(1173), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1179), + [anon_sym_base] = ACTIONS(1175), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1181), - [anon_sym_unchecked] = ACTIONS(1167), + [sym_predefined_type] = ACTIONS(1177), + [anon_sym_unchecked] = ACTIONS(1163), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1183), - [anon_sym_throw] = ACTIONS(1835), + [anon_sym_default] = ACTIONS(1179), + [anon_sym_throw] = ACTIONS(1925), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1837), - [anon_sym_DOT_DOT] = ACTIONS(1839), + [anon_sym_await] = ACTIONS(1927), + [anon_sym_DOT_DOT] = ACTIONS(1929), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -247754,19 +247640,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1191), - [anon_sym_sizeof] = ACTIONS(1193), - [anon_sym_typeof] = ACTIONS(1195), - [anon_sym___makeref] = ACTIONS(1197), - [anon_sym___reftype] = ACTIONS(1199), - [anon_sym___refvalue] = ACTIONS(1201), - [sym_null_literal] = ACTIONS(1203), - [anon_sym_SQUOTE] = ACTIONS(1205), - [sym_integer_literal] = ACTIONS(1203), - [sym_real_literal] = ACTIONS(1207), - [anon_sym_DQUOTE] = ACTIONS(1209), - [sym_verbatim_string_literal] = ACTIONS(1207), - [aux_sym_preproc_if_token1] = ACTIONS(1211), + [anon_sym_stackalloc] = ACTIONS(1187), + [anon_sym_sizeof] = ACTIONS(1189), + [anon_sym_typeof] = ACTIONS(1191), + [anon_sym___makeref] = ACTIONS(1193), + [anon_sym___reftype] = ACTIONS(1195), + [anon_sym___refvalue] = ACTIONS(1197), + [sym_null_literal] = ACTIONS(1199), + [anon_sym_SQUOTE] = ACTIONS(1201), + [sym_integer_literal] = ACTIONS(1199), + [sym_real_literal] = ACTIONS(1203), + [anon_sym_DQUOTE] = ACTIONS(1205), + [sym_verbatim_string_literal] = ACTIONS(1203), + [aux_sym_preproc_if_token1] = ACTIONS(1207), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -247777,90 +247663,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1213), - [sym_interpolation_verbatim_start] = ACTIONS(1215), - [sym_interpolation_raw_start] = ACTIONS(1217), - [sym_raw_string_start] = ACTIONS(1219), + [sym_interpolation_regular_start] = ACTIONS(1209), + [sym_interpolation_verbatim_start] = ACTIONS(1211), + [sym_interpolation_raw_start] = ACTIONS(1213), + [sym_raw_string_start] = ACTIONS(1215), }, [1219] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2610), - [sym__name] = STATE(5872), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2397), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(4725), - [sym_non_lvalue_expression] = STATE(3277), - [sym_lvalue_expression] = STATE(3407), - [sym__expression_statement_expression] = STATE(3228), - [sym_assignment_expression] = STATE(3289), - [sym_binary_expression] = STATE(3228), - [sym_postfix_unary_expression] = STATE(3289), - [sym_prefix_unary_expression] = STATE(3289), - [sym__pointer_indirection_expression] = STATE(2609), - [sym_query_expression] = STATE(3228), - [sym_from_clause] = STATE(6165), - [sym_conditional_expression] = STATE(3228), - [sym_conditional_access_expression] = STATE(3228), - [sym_as_expression] = STATE(3228), - [sym_is_expression] = STATE(3228), - [sym_is_pattern_expression] = STATE(3228), - [sym_cast_expression] = STATE(3228), - [sym_checked_expression] = STATE(3228), - [sym_invocation_expression] = STATE(3289), - [sym_switch_expression] = STATE(3228), - [sym_await_expression] = STATE(3289), - [sym_throw_expression] = STATE(3228), - [sym_element_access_expression] = STATE(2609), - [sym_interpolated_string_expression] = STATE(3228), - [sym_member_access_expression] = STATE(2609), - [sym_object_creation_expression] = STATE(3289), - [sym_parenthesized_expression] = STATE(3289), - [sym__parenthesized_lvalue_expression] = STATE(2609), - [sym_lambda_expression] = STATE(3228), - [sym__lambda_expression_init] = STATE(7478), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3228), - [sym_anonymous_method_expression] = STATE(3228), - [sym_anonymous_object_creation_expression] = STATE(3228), - [sym_implicit_array_creation_expression] = STATE(3228), - [sym_implicit_object_creation_expression] = STATE(3228), - [sym_implicit_stackalloc_expression] = STATE(3228), - [sym_initializer_expression] = STATE(3228), - [sym_default_expression] = STATE(3228), - [sym_with_expression] = STATE(3228), - [sym_sizeof_expression] = STATE(3228), - [sym_typeof_expression] = STATE(3228), - [sym_makeref_expression] = STATE(3228), - [sym_ref_expression] = STATE(3228), - [sym_reftype_expression] = STATE(3228), - [sym_refvalue_expression] = STATE(3228), - [sym_stackalloc_expression] = STATE(3228), - [sym_range_expression] = STATE(3228), - [sym_tuple_expression] = STATE(2609), - [sym_literal] = STATE(3228), - [sym_character_literal] = STATE(3278), - [sym_string_literal] = STATE(3278), - [sym_raw_string_literal] = STATE(3278), - [sym_boolean_literal] = STATE(3278), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3228), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2603), + [sym__name] = STATE(5869), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2367), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(3123), + [sym_non_lvalue_expression] = STATE(3220), + [sym_lvalue_expression] = STATE(3377), + [sym__expression_statement_expression] = STATE(3236), + [sym_assignment_expression] = STATE(3221), + [sym_binary_expression] = STATE(3236), + [sym_postfix_unary_expression] = STATE(3221), + [sym_prefix_unary_expression] = STATE(3221), + [sym__pointer_indirection_expression] = STATE(2602), + [sym_query_expression] = STATE(3236), + [sym_from_clause] = STATE(6128), + [sym_conditional_expression] = STATE(3236), + [sym_conditional_access_expression] = STATE(3236), + [sym_as_expression] = STATE(3236), + [sym_is_expression] = STATE(3236), + [sym_is_pattern_expression] = STATE(3236), + [sym_cast_expression] = STATE(3236), + [sym_checked_expression] = STATE(3236), + [sym_invocation_expression] = STATE(3221), + [sym_switch_expression] = STATE(3236), + [sym_await_expression] = STATE(3221), + [sym_throw_expression] = STATE(3236), + [sym_element_access_expression] = STATE(2602), + [sym_interpolated_string_expression] = STATE(3236), + [sym_member_access_expression] = STATE(2602), + [sym_object_creation_expression] = STATE(3221), + [sym_parenthesized_expression] = STATE(3221), + [sym__parenthesized_lvalue_expression] = STATE(2602), + [sym_lambda_expression] = STATE(3236), + [sym__lambda_expression_init] = STATE(7632), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3236), + [sym_anonymous_method_expression] = STATE(3236), + [sym_anonymous_object_creation_expression] = STATE(3236), + [sym_implicit_array_creation_expression] = STATE(3236), + [sym_implicit_object_creation_expression] = STATE(3236), + [sym_implicit_stackalloc_expression] = STATE(3236), + [sym_initializer_expression] = STATE(3236), + [sym_default_expression] = STATE(3236), + [sym_with_expression] = STATE(3236), + [sym_sizeof_expression] = STATE(3236), + [sym_typeof_expression] = STATE(3236), + [sym_makeref_expression] = STATE(3236), + [sym_ref_expression] = STATE(3236), + [sym_reftype_expression] = STATE(3236), + [sym_refvalue_expression] = STATE(3236), + [sym_stackalloc_expression] = STATE(3236), + [sym_range_expression] = STATE(3236), + [sym_tuple_expression] = STATE(2602), + [sym_literal] = STATE(3236), + [sym_character_literal] = STATE(3272), + [sym_string_literal] = STATE(3272), + [sym_raw_string_literal] = STATE(3272), + [sym_boolean_literal] = STATE(3272), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3236), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(1219), [sym_preproc_endregion] = STATE(1219), [sym_preproc_line] = STATE(1219), @@ -247870,47 +247756,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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3396), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3379), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1153), - [anon_sym_LPAREN] = ACTIONS(1823), - [anon_sym_ref] = ACTIONS(1825), - [anon_sym_LBRACE] = ACTIONS(1159), - [anon_sym_delegate] = ACTIONS(1161), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1149), + [anon_sym_LPAREN] = ACTIONS(1913), + [anon_sym_ref] = ACTIONS(1915), + [anon_sym_LBRACE] = ACTIONS(1155), + [anon_sym_delegate] = ACTIONS(1157), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1827), + [anon_sym_new] = ACTIONS(1917), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1167), - [anon_sym_BANG] = ACTIONS(1831), - [anon_sym_TILDE] = ACTIONS(1831), - [anon_sym_PLUS_PLUS] = ACTIONS(1831), - [anon_sym_DASH_DASH] = ACTIONS(1831), - [anon_sym_true] = ACTIONS(1173), - [anon_sym_false] = ACTIONS(1173), - [anon_sym_PLUS] = ACTIONS(1829), - [anon_sym_DASH] = ACTIONS(1829), - [anon_sym_STAR] = ACTIONS(1833), - [anon_sym_CARET] = ACTIONS(1831), - [anon_sym_AMP] = ACTIONS(1831), - [anon_sym_this] = ACTIONS(1177), + [anon_sym_checked] = ACTIONS(1163), + [anon_sym_BANG] = ACTIONS(1921), + [anon_sym_TILDE] = ACTIONS(1921), + [anon_sym_PLUS_PLUS] = ACTIONS(1921), + [anon_sym_DASH_DASH] = ACTIONS(1921), + [anon_sym_true] = ACTIONS(1169), + [anon_sym_false] = ACTIONS(1169), + [anon_sym_PLUS] = ACTIONS(1919), + [anon_sym_DASH] = ACTIONS(1919), + [anon_sym_STAR] = ACTIONS(1923), + [anon_sym_CARET] = ACTIONS(1921), + [anon_sym_AMP] = ACTIONS(1921), + [anon_sym_this] = ACTIONS(1173), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1179), + [anon_sym_base] = ACTIONS(1175), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1181), - [anon_sym_unchecked] = ACTIONS(1167), + [sym_predefined_type] = ACTIONS(1177), + [anon_sym_unchecked] = ACTIONS(1163), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1183), - [anon_sym_throw] = ACTIONS(1835), + [anon_sym_default] = ACTIONS(1179), + [anon_sym_throw] = ACTIONS(1925), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1837), - [anon_sym_DOT_DOT] = ACTIONS(1839), + [anon_sym_await] = ACTIONS(1927), + [anon_sym_DOT_DOT] = ACTIONS(1929), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -247923,19 +247809,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1191), - [anon_sym_sizeof] = ACTIONS(1193), - [anon_sym_typeof] = ACTIONS(1195), - [anon_sym___makeref] = ACTIONS(1197), - [anon_sym___reftype] = ACTIONS(1199), - [anon_sym___refvalue] = ACTIONS(1201), - [sym_null_literal] = ACTIONS(1203), - [anon_sym_SQUOTE] = ACTIONS(1205), - [sym_integer_literal] = ACTIONS(1203), - [sym_real_literal] = ACTIONS(1207), - [anon_sym_DQUOTE] = ACTIONS(1209), - [sym_verbatim_string_literal] = ACTIONS(1207), - [aux_sym_preproc_if_token1] = ACTIONS(1211), + [anon_sym_stackalloc] = ACTIONS(1187), + [anon_sym_sizeof] = ACTIONS(1189), + [anon_sym_typeof] = ACTIONS(1191), + [anon_sym___makeref] = ACTIONS(1193), + [anon_sym___reftype] = ACTIONS(1195), + [anon_sym___refvalue] = ACTIONS(1197), + [sym_null_literal] = ACTIONS(1199), + [anon_sym_SQUOTE] = ACTIONS(1201), + [sym_integer_literal] = ACTIONS(1199), + [sym_real_literal] = ACTIONS(1203), + [anon_sym_DQUOTE] = ACTIONS(1205), + [sym_verbatim_string_literal] = ACTIONS(1203), + [aux_sym_preproc_if_token1] = ACTIONS(1207), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -247946,90 +247832,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1213), - [sym_interpolation_verbatim_start] = ACTIONS(1215), - [sym_interpolation_raw_start] = ACTIONS(1217), - [sym_raw_string_start] = ACTIONS(1219), + [sym_interpolation_regular_start] = ACTIONS(1209), + [sym_interpolation_verbatim_start] = ACTIONS(1211), + [sym_interpolation_raw_start] = ACTIONS(1213), + [sym_raw_string_start] = ACTIONS(1215), }, [1220] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(3184), - [sym__name] = STATE(5883), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2313), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2269), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(5662), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3157), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3080), - [sym_postfix_unary_expression] = STATE(3111), - [sym_prefix_unary_expression] = STATE(3111), - [sym__pointer_indirection_expression] = STATE(3175), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6154), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3080), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3111), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(3175), - [sym_interpolated_string_expression] = STATE(3080), - [sym_member_access_expression] = STATE(3175), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3111), - [sym__parenthesized_lvalue_expression] = STATE(3175), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7530), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(3080), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3080), - [sym_typeof_expression] = STATE(3080), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(3175), - [sym_literal] = STATE(3080), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2246), - [sym__reserved_identifier] = STATE(2240), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2603), + [sym__name] = STATE(5877), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2344), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(4379), + [sym_non_lvalue_expression] = STATE(3220), + [sym_lvalue_expression] = STATE(3281), + [sym__expression_statement_expression] = STATE(3236), + [sym_assignment_expression] = STATE(3221), + [sym_binary_expression] = STATE(3236), + [sym_postfix_unary_expression] = STATE(3221), + [sym_prefix_unary_expression] = STATE(3221), + [sym__pointer_indirection_expression] = STATE(2602), + [sym_query_expression] = STATE(3236), + [sym_from_clause] = STATE(6146), + [sym_conditional_expression] = STATE(3236), + [sym_conditional_access_expression] = STATE(3236), + [sym_as_expression] = STATE(3236), + [sym_is_expression] = STATE(3236), + [sym_is_pattern_expression] = STATE(3236), + [sym_cast_expression] = STATE(3236), + [sym_checked_expression] = STATE(3236), + [sym_invocation_expression] = STATE(3221), + [sym_switch_expression] = STATE(3236), + [sym_await_expression] = STATE(3221), + [sym_throw_expression] = STATE(3236), + [sym_element_access_expression] = STATE(2602), + [sym_interpolated_string_expression] = STATE(3236), + [sym_member_access_expression] = STATE(2602), + [sym_object_creation_expression] = STATE(3221), + [sym_parenthesized_expression] = STATE(3221), + [sym__parenthesized_lvalue_expression] = STATE(2602), + [sym_lambda_expression] = STATE(3236), + [sym__lambda_expression_init] = STATE(7323), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3236), + [sym_anonymous_method_expression] = STATE(3236), + [sym_anonymous_object_creation_expression] = STATE(3236), + [sym_implicit_array_creation_expression] = STATE(3236), + [sym_implicit_object_creation_expression] = STATE(3236), + [sym_implicit_stackalloc_expression] = STATE(3236), + [sym_initializer_expression] = STATE(3236), + [sym_default_expression] = STATE(3236), + [sym_with_expression] = STATE(3236), + [sym_sizeof_expression] = STATE(3236), + [sym_typeof_expression] = STATE(3236), + [sym_makeref_expression] = STATE(3236), + [sym_ref_expression] = STATE(3236), + [sym_reftype_expression] = STATE(3236), + [sym_refvalue_expression] = STATE(3236), + [sym_stackalloc_expression] = STATE(3236), + [sym_range_expression] = STATE(3236), + [sym_tuple_expression] = STATE(2602), + [sym_literal] = STATE(3236), + [sym_character_literal] = STATE(3272), + [sym_string_literal] = STATE(3272), + [sym_raw_string_literal] = STATE(3272), + [sym_boolean_literal] = STATE(3272), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3236), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(1220), [sym_preproc_endregion] = STATE(1220), [sym_preproc_line] = STATE(1220), @@ -248039,72 +247925,72 @@ 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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), - [sym__identifier_token] = ACTIONS(1387), - [anon_sym_alias] = ACTIONS(1389), - [anon_sym_global] = ACTIONS(1389), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1391), - [anon_sym_LPAREN] = ACTIONS(2943), - [anon_sym_ref] = ACTIONS(661), - [anon_sym_LBRACE] = ACTIONS(1487), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), - [anon_sym_file] = ACTIONS(1389), - [anon_sym_new] = ACTIONS(1061), - [anon_sym_where] = ACTIONS(1389), - [anon_sym_notnull] = ACTIONS(1389), - [anon_sym_unmanaged] = ACTIONS(1389), - [anon_sym_checked] = 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(1585), - [anon_sym_DASH] = ACTIONS(1585), - [anon_sym_STAR] = ACTIONS(1473), - [anon_sym_CARET] = ACTIONS(1587), - [anon_sym_AMP] = ACTIONS(1587), - [anon_sym_this] = ACTIONS(1413), - [anon_sym_scoped] = ACTIONS(1415), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(1419), - [sym_predefined_type] = ACTIONS(1421), - [anon_sym_unchecked] = ACTIONS(1067), - [anon_sym_yield] = ACTIONS(1389), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1589), - [anon_sym_when] = ACTIONS(1389), - [anon_sym_await] = ACTIONS(1591), - [anon_sym_DOT_DOT] = ACTIONS(123), - [anon_sym_from] = ACTIONS(1431), - [anon_sym_into] = ACTIONS(1389), - [anon_sym_join] = ACTIONS(1389), - [anon_sym_on] = ACTIONS(1389), - [anon_sym_equals] = ACTIONS(1389), - [anon_sym_let] = ACTIONS(1389), - [anon_sym_orderby] = ACTIONS(1389), - [anon_sym_ascending] = ACTIONS(1389), - [anon_sym_descending] = ACTIONS(1389), - [anon_sym_group] = ACTIONS(1389), - [anon_sym_by] = ACTIONS(1389), - [anon_sym_select] = ACTIONS(1389), - [anon_sym_stackalloc] = ACTIONS(127), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(133), - [anon_sym___reftype] = ACTIONS(135), - [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1089), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3379), + [sym__identifier_token] = ACTIONS(25), + [anon_sym_alias] = ACTIONS(29), + [anon_sym_global] = ACTIONS(29), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1149), + [anon_sym_LPAREN] = ACTIONS(1531), + [anon_sym_ref] = ACTIONS(1533), + [anon_sym_LBRACE] = ACTIONS(1155), + [anon_sym_delegate] = ACTIONS(1157), + [anon_sym_async] = ACTIONS(1045), + [anon_sym_file] = ACTIONS(29), + [anon_sym_new] = ACTIONS(1535), + [anon_sym_where] = ACTIONS(29), + [anon_sym_notnull] = ACTIONS(29), + [anon_sym_unmanaged] = ACTIONS(29), + [anon_sym_checked] = ACTIONS(1163), + [anon_sym_BANG] = ACTIONS(1539), + [anon_sym_TILDE] = ACTIONS(1539), + [anon_sym_PLUS_PLUS] = ACTIONS(1539), + [anon_sym_DASH_DASH] = ACTIONS(1539), + [anon_sym_true] = ACTIONS(1169), + [anon_sym_false] = ACTIONS(1169), + [anon_sym_PLUS] = ACTIONS(1537), + [anon_sym_DASH] = ACTIONS(1537), + [anon_sym_STAR] = ACTIONS(1541), + [anon_sym_CARET] = ACTIONS(1539), + [anon_sym_AMP] = ACTIONS(1539), + [anon_sym_this] = ACTIONS(1173), + [anon_sym_scoped] = ACTIONS(85), + [anon_sym_base] = ACTIONS(1175), + [anon_sym_var] = ACTIONS(89), + [sym_predefined_type] = ACTIONS(1177), + [anon_sym_unchecked] = ACTIONS(1163), + [anon_sym_yield] = ACTIONS(29), + [anon_sym_default] = ACTIONS(1179), + [anon_sym_throw] = ACTIONS(1543), + [anon_sym_when] = ACTIONS(29), + [anon_sym_await] = ACTIONS(1545), + [anon_sym_DOT_DOT] = ACTIONS(1547), + [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(1187), + [anon_sym_sizeof] = ACTIONS(1189), + [anon_sym_typeof] = ACTIONS(1191), + [anon_sym___makeref] = ACTIONS(1193), + [anon_sym___reftype] = ACTIONS(1195), + [anon_sym___refvalue] = ACTIONS(1197), + [sym_null_literal] = ACTIONS(1199), + [anon_sym_SQUOTE] = ACTIONS(1201), + [sym_integer_literal] = ACTIONS(1199), + [sym_real_literal] = ACTIONS(1203), + [anon_sym_DQUOTE] = ACTIONS(1205), + [sym_verbatim_string_literal] = ACTIONS(1203), + [aux_sym_preproc_if_token1] = ACTIONS(1207), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -248115,90 +248001,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(151), - [sym_interpolation_verbatim_start] = ACTIONS(153), - [sym_interpolation_raw_start] = ACTIONS(155), - [sym_raw_string_start] = ACTIONS(157), + [sym_interpolation_regular_start] = ACTIONS(1209), + [sym_interpolation_verbatim_start] = ACTIONS(1211), + [sym_interpolation_raw_start] = ACTIONS(1213), + [sym_raw_string_start] = ACTIONS(1215), }, [1221] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2610), - [sym__name] = STATE(5872), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2397), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(3145), - [sym_non_lvalue_expression] = STATE(3277), - [sym_lvalue_expression] = STATE(3407), - [sym__expression_statement_expression] = STATE(3228), - [sym_assignment_expression] = STATE(3289), - [sym_binary_expression] = STATE(3228), - [sym_postfix_unary_expression] = STATE(3289), - [sym_prefix_unary_expression] = STATE(3289), - [sym__pointer_indirection_expression] = STATE(2609), - [sym_query_expression] = STATE(3228), - [sym_from_clause] = STATE(6165), - [sym_conditional_expression] = STATE(3228), - [sym_conditional_access_expression] = STATE(3228), - [sym_as_expression] = STATE(3228), - [sym_is_expression] = STATE(3228), - [sym_is_pattern_expression] = STATE(3228), - [sym_cast_expression] = STATE(3228), - [sym_checked_expression] = STATE(3228), - [sym_invocation_expression] = STATE(3289), - [sym_switch_expression] = STATE(3228), - [sym_await_expression] = STATE(3289), - [sym_throw_expression] = STATE(3228), - [sym_element_access_expression] = STATE(2609), - [sym_interpolated_string_expression] = STATE(3228), - [sym_member_access_expression] = STATE(2609), - [sym_object_creation_expression] = STATE(3289), - [sym_parenthesized_expression] = STATE(3289), - [sym__parenthesized_lvalue_expression] = STATE(2609), - [sym_lambda_expression] = STATE(3228), - [sym__lambda_expression_init] = STATE(7478), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3228), - [sym_anonymous_method_expression] = STATE(3228), - [sym_anonymous_object_creation_expression] = STATE(3228), - [sym_implicit_array_creation_expression] = STATE(3228), - [sym_implicit_object_creation_expression] = STATE(3228), - [sym_implicit_stackalloc_expression] = STATE(3228), - [sym_initializer_expression] = STATE(3228), - [sym_default_expression] = STATE(3228), - [sym_with_expression] = STATE(3228), - [sym_sizeof_expression] = STATE(3228), - [sym_typeof_expression] = STATE(3228), - [sym_makeref_expression] = STATE(3228), - [sym_ref_expression] = STATE(3228), - [sym_reftype_expression] = STATE(3228), - [sym_refvalue_expression] = STATE(3228), - [sym_stackalloc_expression] = STATE(3228), - [sym_range_expression] = STATE(3228), - [sym_tuple_expression] = STATE(2609), - [sym_literal] = STATE(3228), - [sym_character_literal] = STATE(3278), - [sym_string_literal] = STATE(3278), - [sym_raw_string_literal] = STATE(3278), - [sym_boolean_literal] = STATE(3278), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3228), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2603), + [sym__name] = STATE(5877), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2344), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(4390), + [sym_non_lvalue_expression] = STATE(3220), + [sym_lvalue_expression] = STATE(3281), + [sym__expression_statement_expression] = STATE(3236), + [sym_assignment_expression] = STATE(3221), + [sym_binary_expression] = STATE(3236), + [sym_postfix_unary_expression] = STATE(3221), + [sym_prefix_unary_expression] = STATE(3221), + [sym__pointer_indirection_expression] = STATE(2602), + [sym_query_expression] = STATE(3236), + [sym_from_clause] = STATE(6146), + [sym_conditional_expression] = STATE(3236), + [sym_conditional_access_expression] = STATE(3236), + [sym_as_expression] = STATE(3236), + [sym_is_expression] = STATE(3236), + [sym_is_pattern_expression] = STATE(3236), + [sym_cast_expression] = STATE(3236), + [sym_checked_expression] = STATE(3236), + [sym_invocation_expression] = STATE(3221), + [sym_switch_expression] = STATE(3236), + [sym_await_expression] = STATE(3221), + [sym_throw_expression] = STATE(3236), + [sym_element_access_expression] = STATE(2602), + [sym_interpolated_string_expression] = STATE(3236), + [sym_member_access_expression] = STATE(2602), + [sym_object_creation_expression] = STATE(3221), + [sym_parenthesized_expression] = STATE(3221), + [sym__parenthesized_lvalue_expression] = STATE(2602), + [sym_lambda_expression] = STATE(3236), + [sym__lambda_expression_init] = STATE(7323), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3236), + [sym_anonymous_method_expression] = STATE(3236), + [sym_anonymous_object_creation_expression] = STATE(3236), + [sym_implicit_array_creation_expression] = STATE(3236), + [sym_implicit_object_creation_expression] = STATE(3236), + [sym_implicit_stackalloc_expression] = STATE(3236), + [sym_initializer_expression] = STATE(3236), + [sym_default_expression] = STATE(3236), + [sym_with_expression] = STATE(3236), + [sym_sizeof_expression] = STATE(3236), + [sym_typeof_expression] = STATE(3236), + [sym_makeref_expression] = STATE(3236), + [sym_ref_expression] = STATE(3236), + [sym_reftype_expression] = STATE(3236), + [sym_refvalue_expression] = STATE(3236), + [sym_stackalloc_expression] = STATE(3236), + [sym_range_expression] = STATE(3236), + [sym_tuple_expression] = STATE(2602), + [sym_literal] = STATE(3236), + [sym_character_literal] = STATE(3272), + [sym_string_literal] = STATE(3272), + [sym_raw_string_literal] = STATE(3272), + [sym_boolean_literal] = STATE(3272), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3236), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(1221), [sym_preproc_endregion] = STATE(1221), [sym_preproc_line] = STATE(1221), @@ -248208,47 +248094,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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3396), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3379), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1153), - [anon_sym_LPAREN] = ACTIONS(1823), - [anon_sym_ref] = ACTIONS(1825), - [anon_sym_LBRACE] = ACTIONS(1159), - [anon_sym_delegate] = ACTIONS(1161), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1149), + [anon_sym_LPAREN] = ACTIONS(1531), + [anon_sym_ref] = ACTIONS(1533), + [anon_sym_LBRACE] = ACTIONS(1155), + [anon_sym_delegate] = ACTIONS(1157), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1827), + [anon_sym_new] = ACTIONS(1535), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1167), - [anon_sym_BANG] = ACTIONS(1831), - [anon_sym_TILDE] = ACTIONS(1831), - [anon_sym_PLUS_PLUS] = ACTIONS(1831), - [anon_sym_DASH_DASH] = ACTIONS(1831), - [anon_sym_true] = ACTIONS(1173), - [anon_sym_false] = ACTIONS(1173), - [anon_sym_PLUS] = ACTIONS(1829), - [anon_sym_DASH] = ACTIONS(1829), - [anon_sym_STAR] = ACTIONS(1833), - [anon_sym_CARET] = ACTIONS(1831), - [anon_sym_AMP] = ACTIONS(1831), - [anon_sym_this] = ACTIONS(1177), + [anon_sym_checked] = ACTIONS(1163), + [anon_sym_BANG] = ACTIONS(1539), + [anon_sym_TILDE] = ACTIONS(1539), + [anon_sym_PLUS_PLUS] = ACTIONS(1539), + [anon_sym_DASH_DASH] = ACTIONS(1539), + [anon_sym_true] = ACTIONS(1169), + [anon_sym_false] = ACTIONS(1169), + [anon_sym_PLUS] = ACTIONS(1537), + [anon_sym_DASH] = ACTIONS(1537), + [anon_sym_STAR] = ACTIONS(1541), + [anon_sym_CARET] = ACTIONS(1539), + [anon_sym_AMP] = ACTIONS(1539), + [anon_sym_this] = ACTIONS(1173), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1179), + [anon_sym_base] = ACTIONS(1175), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1181), - [anon_sym_unchecked] = ACTIONS(1167), + [sym_predefined_type] = ACTIONS(1177), + [anon_sym_unchecked] = ACTIONS(1163), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1183), - [anon_sym_throw] = ACTIONS(1835), + [anon_sym_default] = ACTIONS(1179), + [anon_sym_throw] = ACTIONS(1543), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1837), - [anon_sym_DOT_DOT] = ACTIONS(1839), + [anon_sym_await] = ACTIONS(1545), + [anon_sym_DOT_DOT] = ACTIONS(1547), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -248261,19 +248147,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1191), - [anon_sym_sizeof] = ACTIONS(1193), - [anon_sym_typeof] = ACTIONS(1195), - [anon_sym___makeref] = ACTIONS(1197), - [anon_sym___reftype] = ACTIONS(1199), - [anon_sym___refvalue] = ACTIONS(1201), - [sym_null_literal] = ACTIONS(1203), - [anon_sym_SQUOTE] = ACTIONS(1205), - [sym_integer_literal] = ACTIONS(1203), - [sym_real_literal] = ACTIONS(1207), - [anon_sym_DQUOTE] = ACTIONS(1209), - [sym_verbatim_string_literal] = ACTIONS(1207), - [aux_sym_preproc_if_token1] = ACTIONS(1211), + [anon_sym_stackalloc] = ACTIONS(1187), + [anon_sym_sizeof] = ACTIONS(1189), + [anon_sym_typeof] = ACTIONS(1191), + [anon_sym___makeref] = ACTIONS(1193), + [anon_sym___reftype] = ACTIONS(1195), + [anon_sym___refvalue] = ACTIONS(1197), + [sym_null_literal] = ACTIONS(1199), + [anon_sym_SQUOTE] = ACTIONS(1201), + [sym_integer_literal] = ACTIONS(1199), + [sym_real_literal] = ACTIONS(1203), + [anon_sym_DQUOTE] = ACTIONS(1205), + [sym_verbatim_string_literal] = ACTIONS(1203), + [aux_sym_preproc_if_token1] = ACTIONS(1207), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -248284,90 +248170,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1213), - [sym_interpolation_verbatim_start] = ACTIONS(1215), - [sym_interpolation_raw_start] = ACTIONS(1217), - [sym_raw_string_start] = ACTIONS(1219), + [sym_interpolation_regular_start] = ACTIONS(1209), + [sym_interpolation_verbatim_start] = ACTIONS(1211), + [sym_interpolation_raw_start] = ACTIONS(1213), + [sym_raw_string_start] = ACTIONS(1215), }, [1222] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2610), - [sym__name] = STATE(5872), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2397), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(4727), - [sym_non_lvalue_expression] = STATE(3277), - [sym_lvalue_expression] = STATE(3407), - [sym__expression_statement_expression] = STATE(3228), - [sym_assignment_expression] = STATE(3289), - [sym_binary_expression] = STATE(3228), - [sym_postfix_unary_expression] = STATE(3289), - [sym_prefix_unary_expression] = STATE(3289), - [sym__pointer_indirection_expression] = STATE(2609), - [sym_query_expression] = STATE(3228), - [sym_from_clause] = STATE(6165), - [sym_conditional_expression] = STATE(3228), - [sym_conditional_access_expression] = STATE(3228), - [sym_as_expression] = STATE(3228), - [sym_is_expression] = STATE(3228), - [sym_is_pattern_expression] = STATE(3228), - [sym_cast_expression] = STATE(3228), - [sym_checked_expression] = STATE(3228), - [sym_invocation_expression] = STATE(3289), - [sym_switch_expression] = STATE(3228), - [sym_await_expression] = STATE(3289), - [sym_throw_expression] = STATE(3228), - [sym_element_access_expression] = STATE(2609), - [sym_interpolated_string_expression] = STATE(3228), - [sym_member_access_expression] = STATE(2609), - [sym_object_creation_expression] = STATE(3289), - [sym_parenthesized_expression] = STATE(3289), - [sym__parenthesized_lvalue_expression] = STATE(2609), - [sym_lambda_expression] = STATE(3228), - [sym__lambda_expression_init] = STATE(7478), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3228), - [sym_anonymous_method_expression] = STATE(3228), - [sym_anonymous_object_creation_expression] = STATE(3228), - [sym_implicit_array_creation_expression] = STATE(3228), - [sym_implicit_object_creation_expression] = STATE(3228), - [sym_implicit_stackalloc_expression] = STATE(3228), - [sym_initializer_expression] = STATE(3228), - [sym_default_expression] = STATE(3228), - [sym_with_expression] = STATE(3228), - [sym_sizeof_expression] = STATE(3228), - [sym_typeof_expression] = STATE(3228), - [sym_makeref_expression] = STATE(3228), - [sym_ref_expression] = STATE(3228), - [sym_reftype_expression] = STATE(3228), - [sym_refvalue_expression] = STATE(3228), - [sym_stackalloc_expression] = STATE(3228), - [sym_range_expression] = STATE(3228), - [sym_tuple_expression] = STATE(2609), - [sym_literal] = STATE(3228), - [sym_character_literal] = STATE(3278), - [sym_string_literal] = STATE(3278), - [sym_raw_string_literal] = STATE(3278), - [sym_boolean_literal] = STATE(3278), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3228), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2603), + [sym__name] = STATE(5877), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2344), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(4449), + [sym_non_lvalue_expression] = STATE(3220), + [sym_lvalue_expression] = STATE(3281), + [sym__expression_statement_expression] = STATE(3236), + [sym_assignment_expression] = STATE(3221), + [sym_binary_expression] = STATE(3236), + [sym_postfix_unary_expression] = STATE(3221), + [sym_prefix_unary_expression] = STATE(3221), + [sym__pointer_indirection_expression] = STATE(2602), + [sym_query_expression] = STATE(3236), + [sym_from_clause] = STATE(6146), + [sym_conditional_expression] = STATE(3236), + [sym_conditional_access_expression] = STATE(3236), + [sym_as_expression] = STATE(3236), + [sym_is_expression] = STATE(3236), + [sym_is_pattern_expression] = STATE(3236), + [sym_cast_expression] = STATE(3236), + [sym_checked_expression] = STATE(3236), + [sym_invocation_expression] = STATE(3221), + [sym_switch_expression] = STATE(3236), + [sym_await_expression] = STATE(3221), + [sym_throw_expression] = STATE(3236), + [sym_element_access_expression] = STATE(2602), + [sym_interpolated_string_expression] = STATE(3236), + [sym_member_access_expression] = STATE(2602), + [sym_object_creation_expression] = STATE(3221), + [sym_parenthesized_expression] = STATE(3221), + [sym__parenthesized_lvalue_expression] = STATE(2602), + [sym_lambda_expression] = STATE(3236), + [sym__lambda_expression_init] = STATE(7323), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3236), + [sym_anonymous_method_expression] = STATE(3236), + [sym_anonymous_object_creation_expression] = STATE(3236), + [sym_implicit_array_creation_expression] = STATE(3236), + [sym_implicit_object_creation_expression] = STATE(3236), + [sym_implicit_stackalloc_expression] = STATE(3236), + [sym_initializer_expression] = STATE(3236), + [sym_default_expression] = STATE(3236), + [sym_with_expression] = STATE(3236), + [sym_sizeof_expression] = STATE(3236), + [sym_typeof_expression] = STATE(3236), + [sym_makeref_expression] = STATE(3236), + [sym_ref_expression] = STATE(3236), + [sym_reftype_expression] = STATE(3236), + [sym_refvalue_expression] = STATE(3236), + [sym_stackalloc_expression] = STATE(3236), + [sym_range_expression] = STATE(3236), + [sym_tuple_expression] = STATE(2602), + [sym_literal] = STATE(3236), + [sym_character_literal] = STATE(3272), + [sym_string_literal] = STATE(3272), + [sym_raw_string_literal] = STATE(3272), + [sym_boolean_literal] = STATE(3272), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3236), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(1222), [sym_preproc_endregion] = STATE(1222), [sym_preproc_line] = STATE(1222), @@ -248377,47 +248263,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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3396), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3379), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1153), - [anon_sym_LPAREN] = ACTIONS(1823), - [anon_sym_ref] = ACTIONS(1825), - [anon_sym_LBRACE] = ACTIONS(1159), - [anon_sym_delegate] = ACTIONS(1161), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1149), + [anon_sym_LPAREN] = ACTIONS(1531), + [anon_sym_ref] = ACTIONS(1533), + [anon_sym_LBRACE] = ACTIONS(1155), + [anon_sym_delegate] = ACTIONS(1157), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1827), + [anon_sym_new] = ACTIONS(1535), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1167), - [anon_sym_BANG] = ACTIONS(1831), - [anon_sym_TILDE] = ACTIONS(1831), - [anon_sym_PLUS_PLUS] = ACTIONS(1831), - [anon_sym_DASH_DASH] = ACTIONS(1831), - [anon_sym_true] = ACTIONS(1173), - [anon_sym_false] = ACTIONS(1173), - [anon_sym_PLUS] = ACTIONS(1829), - [anon_sym_DASH] = ACTIONS(1829), - [anon_sym_STAR] = ACTIONS(1833), - [anon_sym_CARET] = ACTIONS(1831), - [anon_sym_AMP] = ACTIONS(1831), - [anon_sym_this] = ACTIONS(1177), + [anon_sym_checked] = ACTIONS(1163), + [anon_sym_BANG] = ACTIONS(1539), + [anon_sym_TILDE] = ACTIONS(1539), + [anon_sym_PLUS_PLUS] = ACTIONS(1539), + [anon_sym_DASH_DASH] = ACTIONS(1539), + [anon_sym_true] = ACTIONS(1169), + [anon_sym_false] = ACTIONS(1169), + [anon_sym_PLUS] = ACTIONS(1537), + [anon_sym_DASH] = ACTIONS(1537), + [anon_sym_STAR] = ACTIONS(1541), + [anon_sym_CARET] = ACTIONS(1539), + [anon_sym_AMP] = ACTIONS(1539), + [anon_sym_this] = ACTIONS(1173), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1179), + [anon_sym_base] = ACTIONS(1175), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1181), - [anon_sym_unchecked] = ACTIONS(1167), + [sym_predefined_type] = ACTIONS(1177), + [anon_sym_unchecked] = ACTIONS(1163), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1183), - [anon_sym_throw] = ACTIONS(1835), + [anon_sym_default] = ACTIONS(1179), + [anon_sym_throw] = ACTIONS(1543), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1837), - [anon_sym_DOT_DOT] = ACTIONS(1839), + [anon_sym_await] = ACTIONS(1545), + [anon_sym_DOT_DOT] = ACTIONS(1547), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -248430,19 +248316,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1191), - [anon_sym_sizeof] = ACTIONS(1193), - [anon_sym_typeof] = ACTIONS(1195), - [anon_sym___makeref] = ACTIONS(1197), - [anon_sym___reftype] = ACTIONS(1199), - [anon_sym___refvalue] = ACTIONS(1201), - [sym_null_literal] = ACTIONS(1203), - [anon_sym_SQUOTE] = ACTIONS(1205), - [sym_integer_literal] = ACTIONS(1203), - [sym_real_literal] = ACTIONS(1207), - [anon_sym_DQUOTE] = ACTIONS(1209), - [sym_verbatim_string_literal] = ACTIONS(1207), - [aux_sym_preproc_if_token1] = ACTIONS(1211), + [anon_sym_stackalloc] = ACTIONS(1187), + [anon_sym_sizeof] = ACTIONS(1189), + [anon_sym_typeof] = ACTIONS(1191), + [anon_sym___makeref] = ACTIONS(1193), + [anon_sym___reftype] = ACTIONS(1195), + [anon_sym___refvalue] = ACTIONS(1197), + [sym_null_literal] = ACTIONS(1199), + [anon_sym_SQUOTE] = ACTIONS(1201), + [sym_integer_literal] = ACTIONS(1199), + [sym_real_literal] = ACTIONS(1203), + [anon_sym_DQUOTE] = ACTIONS(1205), + [sym_verbatim_string_literal] = ACTIONS(1203), + [aux_sym_preproc_if_token1] = ACTIONS(1207), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -248453,90 +248339,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1213), - [sym_interpolation_verbatim_start] = ACTIONS(1215), - [sym_interpolation_raw_start] = ACTIONS(1217), - [sym_raw_string_start] = ACTIONS(1219), + [sym_interpolation_regular_start] = ACTIONS(1209), + [sym_interpolation_verbatim_start] = ACTIONS(1211), + [sym_interpolation_raw_start] = ACTIONS(1213), + [sym_raw_string_start] = ACTIONS(1215), }, [1223] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2762), - [sym__name] = STATE(5910), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2247), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(4181), - [sym_non_lvalue_expression] = STATE(3438), - [sym_lvalue_expression] = STATE(3136), - [sym__expression_statement_expression] = STATE(3362), - [sym_assignment_expression] = STATE(3449), - [sym_binary_expression] = STATE(3362), - [sym_postfix_unary_expression] = STATE(3449), - [sym_prefix_unary_expression] = STATE(3449), - [sym__pointer_indirection_expression] = STATE(2747), - [sym_query_expression] = STATE(3362), - [sym_from_clause] = STATE(6171), - [sym_conditional_expression] = STATE(3362), - [sym_conditional_access_expression] = STATE(3362), - [sym_as_expression] = STATE(3362), - [sym_is_expression] = STATE(3362), - [sym_is_pattern_expression] = STATE(3362), - [sym_cast_expression] = STATE(3362), - [sym_checked_expression] = STATE(3362), - [sym_invocation_expression] = STATE(3449), - [sym_switch_expression] = STATE(3362), - [sym_await_expression] = STATE(3449), - [sym_throw_expression] = STATE(3362), - [sym_element_access_expression] = STATE(2747), - [sym_interpolated_string_expression] = STATE(3362), - [sym_member_access_expression] = STATE(2747), - [sym_object_creation_expression] = STATE(3449), - [sym_parenthesized_expression] = STATE(3449), - [sym__parenthesized_lvalue_expression] = STATE(2747), - [sym_lambda_expression] = STATE(3362), - [sym__lambda_expression_init] = STATE(7452), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3362), - [sym_anonymous_method_expression] = STATE(3362), - [sym_anonymous_object_creation_expression] = STATE(3362), - [sym_implicit_array_creation_expression] = STATE(3362), - [sym_implicit_object_creation_expression] = STATE(3362), - [sym_implicit_stackalloc_expression] = STATE(3362), - [sym_initializer_expression] = STATE(3362), - [sym_default_expression] = STATE(3362), - [sym_with_expression] = STATE(3362), - [sym_sizeof_expression] = STATE(3362), - [sym_typeof_expression] = STATE(3362), - [sym_makeref_expression] = STATE(3362), - [sym_ref_expression] = STATE(3362), - [sym_reftype_expression] = STATE(3362), - [sym_refvalue_expression] = STATE(3362), - [sym_stackalloc_expression] = STATE(3362), - [sym_range_expression] = STATE(3362), - [sym_tuple_expression] = STATE(2747), - [sym_literal] = STATE(3362), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3362), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2603), + [sym__name] = STATE(5877), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2344), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(4417), + [sym_non_lvalue_expression] = STATE(3220), + [sym_lvalue_expression] = STATE(3281), + [sym__expression_statement_expression] = STATE(3236), + [sym_assignment_expression] = STATE(3221), + [sym_binary_expression] = STATE(3236), + [sym_postfix_unary_expression] = STATE(3221), + [sym_prefix_unary_expression] = STATE(3221), + [sym__pointer_indirection_expression] = STATE(2602), + [sym_query_expression] = STATE(3236), + [sym_from_clause] = STATE(6146), + [sym_conditional_expression] = STATE(3236), + [sym_conditional_access_expression] = STATE(3236), + [sym_as_expression] = STATE(3236), + [sym_is_expression] = STATE(3236), + [sym_is_pattern_expression] = STATE(3236), + [sym_cast_expression] = STATE(3236), + [sym_checked_expression] = STATE(3236), + [sym_invocation_expression] = STATE(3221), + [sym_switch_expression] = STATE(3236), + [sym_await_expression] = STATE(3221), + [sym_throw_expression] = STATE(3236), + [sym_element_access_expression] = STATE(2602), + [sym_interpolated_string_expression] = STATE(3236), + [sym_member_access_expression] = STATE(2602), + [sym_object_creation_expression] = STATE(3221), + [sym_parenthesized_expression] = STATE(3221), + [sym__parenthesized_lvalue_expression] = STATE(2602), + [sym_lambda_expression] = STATE(3236), + [sym__lambda_expression_init] = STATE(7323), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3236), + [sym_anonymous_method_expression] = STATE(3236), + [sym_anonymous_object_creation_expression] = STATE(3236), + [sym_implicit_array_creation_expression] = STATE(3236), + [sym_implicit_object_creation_expression] = STATE(3236), + [sym_implicit_stackalloc_expression] = STATE(3236), + [sym_initializer_expression] = STATE(3236), + [sym_default_expression] = STATE(3236), + [sym_with_expression] = STATE(3236), + [sym_sizeof_expression] = STATE(3236), + [sym_typeof_expression] = STATE(3236), + [sym_makeref_expression] = STATE(3236), + [sym_ref_expression] = STATE(3236), + [sym_reftype_expression] = STATE(3236), + [sym_refvalue_expression] = STATE(3236), + [sym_stackalloc_expression] = STATE(3236), + [sym_range_expression] = STATE(3236), + [sym_tuple_expression] = STATE(2602), + [sym_literal] = STATE(3236), + [sym_character_literal] = STATE(3272), + [sym_string_literal] = STATE(3272), + [sym_raw_string_literal] = STATE(3272), + [sym_boolean_literal] = STATE(3272), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3236), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(1223), [sym_preproc_endregion] = STATE(1223), [sym_preproc_line] = STATE(1223), @@ -248546,47 +248432,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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3385), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3379), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1307), - [anon_sym_LPAREN] = ACTIONS(1309), - [anon_sym_ref] = ACTIONS(1311), - [anon_sym_LBRACE] = ACTIONS(1313), - [anon_sym_delegate] = ACTIONS(1315), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1149), + [anon_sym_LPAREN] = ACTIONS(1531), + [anon_sym_ref] = ACTIONS(1533), + [anon_sym_LBRACE] = ACTIONS(1155), + [anon_sym_delegate] = ACTIONS(1157), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1317), + [anon_sym_new] = ACTIONS(1535), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1319), - [anon_sym_BANG] = ACTIONS(1069), - [anon_sym_TILDE] = ACTIONS(1069), - [anon_sym_PLUS_PLUS] = ACTIONS(1069), - [anon_sym_DASH_DASH] = ACTIONS(1069), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1071), - [anon_sym_DASH] = ACTIONS(1071), - [anon_sym_STAR] = ACTIONS(1321), - [anon_sym_CARET] = ACTIONS(1069), - [anon_sym_AMP] = ACTIONS(1069), - [anon_sym_this] = ACTIONS(1323), + [anon_sym_checked] = ACTIONS(1163), + [anon_sym_BANG] = ACTIONS(1539), + [anon_sym_TILDE] = ACTIONS(1539), + [anon_sym_PLUS_PLUS] = ACTIONS(1539), + [anon_sym_DASH_DASH] = ACTIONS(1539), + [anon_sym_true] = ACTIONS(1169), + [anon_sym_false] = ACTIONS(1169), + [anon_sym_PLUS] = ACTIONS(1537), + [anon_sym_DASH] = ACTIONS(1537), + [anon_sym_STAR] = ACTIONS(1541), + [anon_sym_CARET] = ACTIONS(1539), + [anon_sym_AMP] = ACTIONS(1539), + [anon_sym_this] = ACTIONS(1173), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1325), + [anon_sym_base] = ACTIONS(1175), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1319), + [sym_predefined_type] = ACTIONS(1177), + [anon_sym_unchecked] = ACTIONS(1163), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1327), + [anon_sym_default] = ACTIONS(1179), + [anon_sym_throw] = ACTIONS(1543), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1329), - [anon_sym_DOT_DOT] = ACTIONS(1331), + [anon_sym_await] = ACTIONS(1545), + [anon_sym_DOT_DOT] = ACTIONS(1547), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -248599,19 +248485,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1333), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(1335), - [anon_sym___reftype] = ACTIONS(1337), - [anon_sym___refvalue] = ACTIONS(1339), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1341), + [anon_sym_stackalloc] = ACTIONS(1187), + [anon_sym_sizeof] = ACTIONS(1189), + [anon_sym_typeof] = ACTIONS(1191), + [anon_sym___makeref] = ACTIONS(1193), + [anon_sym___reftype] = ACTIONS(1195), + [anon_sym___refvalue] = ACTIONS(1197), + [sym_null_literal] = ACTIONS(1199), + [anon_sym_SQUOTE] = ACTIONS(1201), + [sym_integer_literal] = ACTIONS(1199), + [sym_real_literal] = ACTIONS(1203), + [anon_sym_DQUOTE] = ACTIONS(1205), + [sym_verbatim_string_literal] = ACTIONS(1203), + [aux_sym_preproc_if_token1] = ACTIONS(1207), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -248622,90 +248508,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(151), - [sym_interpolation_verbatim_start] = ACTIONS(153), - [sym_interpolation_raw_start] = ACTIONS(155), - [sym_raw_string_start] = ACTIONS(157), + [sym_interpolation_regular_start] = ACTIONS(1209), + [sym_interpolation_verbatim_start] = ACTIONS(1211), + [sym_interpolation_raw_start] = ACTIONS(1213), + [sym_raw_string_start] = ACTIONS(1215), }, [1224] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2420), - [sym__name] = STATE(5887), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2197), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(2907), - [sym_non_lvalue_expression] = STATE(3066), - [sym_lvalue_expression] = STATE(3120), - [sym__expression_statement_expression] = STATE(3006), - [sym_assignment_expression] = STATE(3020), - [sym_binary_expression] = STATE(3006), - [sym_postfix_unary_expression] = STATE(3020), - [sym_prefix_unary_expression] = STATE(3020), - [sym__pointer_indirection_expression] = STATE(2423), - [sym_query_expression] = STATE(3006), - [sym_from_clause] = STATE(6152), - [sym_conditional_expression] = STATE(3006), - [sym_conditional_access_expression] = STATE(3006), - [sym_as_expression] = STATE(3006), - [sym_is_expression] = STATE(3006), - [sym_is_pattern_expression] = STATE(3006), - [sym_cast_expression] = STATE(3006), - [sym_checked_expression] = STATE(3006), - [sym_invocation_expression] = STATE(3020), - [sym_switch_expression] = STATE(3006), - [sym_await_expression] = STATE(3020), - [sym_throw_expression] = STATE(3006), - [sym_element_access_expression] = STATE(2423), - [sym_interpolated_string_expression] = STATE(3006), - [sym_member_access_expression] = STATE(2423), - [sym_object_creation_expression] = STATE(3020), - [sym_parenthesized_expression] = STATE(3020), - [sym__parenthesized_lvalue_expression] = STATE(2423), - [sym_lambda_expression] = STATE(3006), - [sym__lambda_expression_init] = STATE(7722), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3006), - [sym_anonymous_method_expression] = STATE(3006), - [sym_anonymous_object_creation_expression] = STATE(3006), - [sym_implicit_array_creation_expression] = STATE(3006), - [sym_implicit_object_creation_expression] = STATE(3006), - [sym_implicit_stackalloc_expression] = STATE(3006), - [sym_initializer_expression] = STATE(3006), - [sym_default_expression] = STATE(3006), - [sym_with_expression] = STATE(3006), - [sym_sizeof_expression] = STATE(3006), - [sym_typeof_expression] = STATE(3006), - [sym_makeref_expression] = STATE(3006), - [sym_ref_expression] = STATE(3006), - [sym_reftype_expression] = STATE(3006), - [sym_refvalue_expression] = STATE(3006), - [sym_stackalloc_expression] = STATE(3006), - [sym_range_expression] = STATE(3006), - [sym_tuple_expression] = STATE(2423), - [sym_literal] = STATE(3006), - [sym_character_literal] = STATE(3011), - [sym_string_literal] = STATE(3011), - [sym_raw_string_literal] = STATE(3011), - [sym_boolean_literal] = STATE(3011), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3006), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2603), + [sym__name] = STATE(5877), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2344), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(4485), + [sym_non_lvalue_expression] = STATE(3220), + [sym_lvalue_expression] = STATE(3281), + [sym__expression_statement_expression] = STATE(3236), + [sym_assignment_expression] = STATE(3221), + [sym_binary_expression] = STATE(3236), + [sym_postfix_unary_expression] = STATE(3221), + [sym_prefix_unary_expression] = STATE(3221), + [sym__pointer_indirection_expression] = STATE(2602), + [sym_query_expression] = STATE(3236), + [sym_from_clause] = STATE(6146), + [sym_conditional_expression] = STATE(3236), + [sym_conditional_access_expression] = STATE(3236), + [sym_as_expression] = STATE(3236), + [sym_is_expression] = STATE(3236), + [sym_is_pattern_expression] = STATE(3236), + [sym_cast_expression] = STATE(3236), + [sym_checked_expression] = STATE(3236), + [sym_invocation_expression] = STATE(3221), + [sym_switch_expression] = STATE(3236), + [sym_await_expression] = STATE(3221), + [sym_throw_expression] = STATE(3236), + [sym_element_access_expression] = STATE(2602), + [sym_interpolated_string_expression] = STATE(3236), + [sym_member_access_expression] = STATE(2602), + [sym_object_creation_expression] = STATE(3221), + [sym_parenthesized_expression] = STATE(3221), + [sym__parenthesized_lvalue_expression] = STATE(2602), + [sym_lambda_expression] = STATE(3236), + [sym__lambda_expression_init] = STATE(7323), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3236), + [sym_anonymous_method_expression] = STATE(3236), + [sym_anonymous_object_creation_expression] = STATE(3236), + [sym_implicit_array_creation_expression] = STATE(3236), + [sym_implicit_object_creation_expression] = STATE(3236), + [sym_implicit_stackalloc_expression] = STATE(3236), + [sym_initializer_expression] = STATE(3236), + [sym_default_expression] = STATE(3236), + [sym_with_expression] = STATE(3236), + [sym_sizeof_expression] = STATE(3236), + [sym_typeof_expression] = STATE(3236), + [sym_makeref_expression] = STATE(3236), + [sym_ref_expression] = STATE(3236), + [sym_reftype_expression] = STATE(3236), + [sym_refvalue_expression] = STATE(3236), + [sym_stackalloc_expression] = STATE(3236), + [sym_range_expression] = STATE(3236), + [sym_tuple_expression] = STATE(2602), + [sym_literal] = STATE(3236), + [sym_character_literal] = STATE(3272), + [sym_string_literal] = STATE(3272), + [sym_raw_string_literal] = STATE(3272), + [sym_boolean_literal] = STATE(3272), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3236), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(1224), [sym_preproc_endregion] = STATE(1224), [sym_preproc_line] = STATE(1224), @@ -248715,47 +248601,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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3440), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3379), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1241), - [anon_sym_LPAREN] = ACTIONS(1243), - [anon_sym_ref] = ACTIONS(1245), - [anon_sym_LBRACE] = ACTIONS(1247), - [anon_sym_delegate] = ACTIONS(1249), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1149), + [anon_sym_LPAREN] = ACTIONS(1531), + [anon_sym_ref] = ACTIONS(1533), + [anon_sym_LBRACE] = ACTIONS(1155), + [anon_sym_delegate] = ACTIONS(1157), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1251), + [anon_sym_new] = ACTIONS(1535), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1253), - [anon_sym_BANG] = ACTIONS(1257), - [anon_sym_TILDE] = ACTIONS(1257), - [anon_sym_PLUS_PLUS] = ACTIONS(1257), - [anon_sym_DASH_DASH] = ACTIONS(1257), - [anon_sym_true] = ACTIONS(1259), - [anon_sym_false] = ACTIONS(1259), - [anon_sym_PLUS] = ACTIONS(1255), - [anon_sym_DASH] = ACTIONS(1255), - [anon_sym_STAR] = ACTIONS(1261), - [anon_sym_CARET] = ACTIONS(1257), - [anon_sym_AMP] = ACTIONS(1257), - [anon_sym_this] = ACTIONS(1263), + [anon_sym_checked] = ACTIONS(1163), + [anon_sym_BANG] = ACTIONS(1539), + [anon_sym_TILDE] = ACTIONS(1539), + [anon_sym_PLUS_PLUS] = ACTIONS(1539), + [anon_sym_DASH_DASH] = ACTIONS(1539), + [anon_sym_true] = ACTIONS(1169), + [anon_sym_false] = ACTIONS(1169), + [anon_sym_PLUS] = ACTIONS(1537), + [anon_sym_DASH] = ACTIONS(1537), + [anon_sym_STAR] = ACTIONS(1541), + [anon_sym_CARET] = ACTIONS(1539), + [anon_sym_AMP] = ACTIONS(1539), + [anon_sym_this] = ACTIONS(1173), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1265), + [anon_sym_base] = ACTIONS(1175), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1267), - [anon_sym_unchecked] = ACTIONS(1253), + [sym_predefined_type] = ACTIONS(1177), + [anon_sym_unchecked] = ACTIONS(1163), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1269), - [anon_sym_throw] = ACTIONS(1271), + [anon_sym_default] = ACTIONS(1179), + [anon_sym_throw] = ACTIONS(1543), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1273), - [anon_sym_DOT_DOT] = ACTIONS(1275), + [anon_sym_await] = ACTIONS(1545), + [anon_sym_DOT_DOT] = ACTIONS(1547), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -248768,19 +248654,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1277), - [anon_sym_sizeof] = ACTIONS(1279), - [anon_sym_typeof] = ACTIONS(1281), - [anon_sym___makeref] = ACTIONS(1283), - [anon_sym___reftype] = ACTIONS(1285), - [anon_sym___refvalue] = ACTIONS(1287), - [sym_null_literal] = ACTIONS(1289), - [anon_sym_SQUOTE] = ACTIONS(1291), - [sym_integer_literal] = ACTIONS(1289), - [sym_real_literal] = ACTIONS(1293), - [anon_sym_DQUOTE] = ACTIONS(1295), - [sym_verbatim_string_literal] = ACTIONS(1293), - [aux_sym_preproc_if_token1] = ACTIONS(1297), + [anon_sym_stackalloc] = ACTIONS(1187), + [anon_sym_sizeof] = ACTIONS(1189), + [anon_sym_typeof] = ACTIONS(1191), + [anon_sym___makeref] = ACTIONS(1193), + [anon_sym___reftype] = ACTIONS(1195), + [anon_sym___refvalue] = ACTIONS(1197), + [sym_null_literal] = ACTIONS(1199), + [anon_sym_SQUOTE] = ACTIONS(1201), + [sym_integer_literal] = ACTIONS(1199), + [sym_real_literal] = ACTIONS(1203), + [anon_sym_DQUOTE] = ACTIONS(1205), + [sym_verbatim_string_literal] = ACTIONS(1203), + [aux_sym_preproc_if_token1] = ACTIONS(1207), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -248791,90 +248677,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1299), - [sym_interpolation_verbatim_start] = ACTIONS(1301), - [sym_interpolation_raw_start] = ACTIONS(1303), - [sym_raw_string_start] = ACTIONS(1305), + [sym_interpolation_regular_start] = ACTIONS(1209), + [sym_interpolation_verbatim_start] = ACTIONS(1211), + [sym_interpolation_raw_start] = ACTIONS(1213), + [sym_raw_string_start] = ACTIONS(1215), }, [1225] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2762), - [sym__name] = STATE(5910), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2204), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(5677), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(2774), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3080), - [sym_postfix_unary_expression] = STATE(3111), - [sym_prefix_unary_expression] = STATE(3111), - [sym__pointer_indirection_expression] = STATE(2747), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6154), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3080), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3111), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2747), - [sym_interpolated_string_expression] = STATE(3080), - [sym_member_access_expression] = STATE(2747), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3111), - [sym__parenthesized_lvalue_expression] = STATE(2747), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7530), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(3080), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3080), - [sym_typeof_expression] = STATE(3080), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2747), - [sym_literal] = STATE(3080), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2603), + [sym__name] = STATE(5877), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2344), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(4419), + [sym_non_lvalue_expression] = STATE(3220), + [sym_lvalue_expression] = STATE(3281), + [sym__expression_statement_expression] = STATE(3236), + [sym_assignment_expression] = STATE(3221), + [sym_binary_expression] = STATE(3236), + [sym_postfix_unary_expression] = STATE(3221), + [sym_prefix_unary_expression] = STATE(3221), + [sym__pointer_indirection_expression] = STATE(2602), + [sym_query_expression] = STATE(3236), + [sym_from_clause] = STATE(6146), + [sym_conditional_expression] = STATE(3236), + [sym_conditional_access_expression] = STATE(3236), + [sym_as_expression] = STATE(3236), + [sym_is_expression] = STATE(3236), + [sym_is_pattern_expression] = STATE(3236), + [sym_cast_expression] = STATE(3236), + [sym_checked_expression] = STATE(3236), + [sym_invocation_expression] = STATE(3221), + [sym_switch_expression] = STATE(3236), + [sym_await_expression] = STATE(3221), + [sym_throw_expression] = STATE(3236), + [sym_element_access_expression] = STATE(2602), + [sym_interpolated_string_expression] = STATE(3236), + [sym_member_access_expression] = STATE(2602), + [sym_object_creation_expression] = STATE(3221), + [sym_parenthesized_expression] = STATE(3221), + [sym__parenthesized_lvalue_expression] = STATE(2602), + [sym_lambda_expression] = STATE(3236), + [sym__lambda_expression_init] = STATE(7323), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3236), + [sym_anonymous_method_expression] = STATE(3236), + [sym_anonymous_object_creation_expression] = STATE(3236), + [sym_implicit_array_creation_expression] = STATE(3236), + [sym_implicit_object_creation_expression] = STATE(3236), + [sym_implicit_stackalloc_expression] = STATE(3236), + [sym_initializer_expression] = STATE(3236), + [sym_default_expression] = STATE(3236), + [sym_with_expression] = STATE(3236), + [sym_sizeof_expression] = STATE(3236), + [sym_typeof_expression] = STATE(3236), + [sym_makeref_expression] = STATE(3236), + [sym_ref_expression] = STATE(3236), + [sym_reftype_expression] = STATE(3236), + [sym_refvalue_expression] = STATE(3236), + [sym_stackalloc_expression] = STATE(3236), + [sym_range_expression] = STATE(3236), + [sym_tuple_expression] = STATE(2602), + [sym_literal] = STATE(3236), + [sym_character_literal] = STATE(3272), + [sym_string_literal] = STATE(3272), + [sym_raw_string_literal] = STATE(3272), + [sym_boolean_literal] = STATE(3272), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3236), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(1225), [sym_preproc_endregion] = STATE(1225), [sym_preproc_line] = STATE(1225), @@ -248884,47 +248770,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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3379), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1307), - [anon_sym_LPAREN] = ACTIONS(2945), - [anon_sym_ref] = ACTIONS(661), - [anon_sym_LBRACE] = ACTIONS(1487), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1149), + [anon_sym_LPAREN] = ACTIONS(1531), + [anon_sym_ref] = ACTIONS(1533), + [anon_sym_LBRACE] = ACTIONS(1155), + [anon_sym_delegate] = ACTIONS(1157), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1061), + [anon_sym_new] = ACTIONS(1535), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = 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(1585), - [anon_sym_DASH] = ACTIONS(1585), - [anon_sym_STAR] = ACTIONS(1351), - [anon_sym_CARET] = ACTIONS(1587), - [anon_sym_AMP] = ACTIONS(1587), - [anon_sym_this] = ACTIONS(1323), + [anon_sym_checked] = ACTIONS(1163), + [anon_sym_BANG] = ACTIONS(1539), + [anon_sym_TILDE] = ACTIONS(1539), + [anon_sym_PLUS_PLUS] = ACTIONS(1539), + [anon_sym_DASH_DASH] = ACTIONS(1539), + [anon_sym_true] = ACTIONS(1169), + [anon_sym_false] = ACTIONS(1169), + [anon_sym_PLUS] = ACTIONS(1537), + [anon_sym_DASH] = ACTIONS(1537), + [anon_sym_STAR] = ACTIONS(1541), + [anon_sym_CARET] = ACTIONS(1539), + [anon_sym_AMP] = ACTIONS(1539), + [anon_sym_this] = ACTIONS(1173), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), + [anon_sym_base] = ACTIONS(1175), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1067), + [sym_predefined_type] = ACTIONS(1177), + [anon_sym_unchecked] = ACTIONS(1163), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1589), + [anon_sym_default] = ACTIONS(1179), + [anon_sym_throw] = ACTIONS(1543), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1591), - [anon_sym_DOT_DOT] = ACTIONS(123), + [anon_sym_await] = ACTIONS(1545), + [anon_sym_DOT_DOT] = ACTIONS(1547), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -248937,19 +248823,19 @@ static const uint16_t ts_parse_table[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(1089), + [anon_sym_stackalloc] = ACTIONS(1187), + [anon_sym_sizeof] = ACTIONS(1189), + [anon_sym_typeof] = ACTIONS(1191), + [anon_sym___makeref] = ACTIONS(1193), + [anon_sym___reftype] = ACTIONS(1195), + [anon_sym___refvalue] = ACTIONS(1197), + [sym_null_literal] = ACTIONS(1199), + [anon_sym_SQUOTE] = ACTIONS(1201), + [sym_integer_literal] = ACTIONS(1199), + [sym_real_literal] = ACTIONS(1203), + [anon_sym_DQUOTE] = ACTIONS(1205), + [sym_verbatim_string_literal] = ACTIONS(1203), + [aux_sym_preproc_if_token1] = ACTIONS(1207), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -248960,90 +248846,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(151), - [sym_interpolation_verbatim_start] = ACTIONS(153), - [sym_interpolation_raw_start] = ACTIONS(155), - [sym_raw_string_start] = ACTIONS(157), + [sym_interpolation_regular_start] = ACTIONS(1209), + [sym_interpolation_verbatim_start] = ACTIONS(1211), + [sym_interpolation_raw_start] = ACTIONS(1213), + [sym_raw_string_start] = ACTIONS(1215), }, [1226] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2762), - [sym__name] = STATE(5910), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2247), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(4182), - [sym_non_lvalue_expression] = STATE(3438), - [sym_lvalue_expression] = STATE(3136), - [sym__expression_statement_expression] = STATE(3362), - [sym_assignment_expression] = STATE(3449), - [sym_binary_expression] = STATE(3362), - [sym_postfix_unary_expression] = STATE(3449), - [sym_prefix_unary_expression] = STATE(3449), - [sym__pointer_indirection_expression] = STATE(2747), - [sym_query_expression] = STATE(3362), - [sym_from_clause] = STATE(6171), - [sym_conditional_expression] = STATE(3362), - [sym_conditional_access_expression] = STATE(3362), - [sym_as_expression] = STATE(3362), - [sym_is_expression] = STATE(3362), - [sym_is_pattern_expression] = STATE(3362), - [sym_cast_expression] = STATE(3362), - [sym_checked_expression] = STATE(3362), - [sym_invocation_expression] = STATE(3449), - [sym_switch_expression] = STATE(3362), - [sym_await_expression] = STATE(3449), - [sym_throw_expression] = STATE(3362), - [sym_element_access_expression] = STATE(2747), - [sym_interpolated_string_expression] = STATE(3362), - [sym_member_access_expression] = STATE(2747), - [sym_object_creation_expression] = STATE(3449), - [sym_parenthesized_expression] = STATE(3449), - [sym__parenthesized_lvalue_expression] = STATE(2747), - [sym_lambda_expression] = STATE(3362), - [sym__lambda_expression_init] = STATE(7452), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3362), - [sym_anonymous_method_expression] = STATE(3362), - [sym_anonymous_object_creation_expression] = STATE(3362), - [sym_implicit_array_creation_expression] = STATE(3362), - [sym_implicit_object_creation_expression] = STATE(3362), - [sym_implicit_stackalloc_expression] = STATE(3362), - [sym_initializer_expression] = STATE(3362), - [sym_default_expression] = STATE(3362), - [sym_with_expression] = STATE(3362), - [sym_sizeof_expression] = STATE(3362), - [sym_typeof_expression] = STATE(3362), - [sym_makeref_expression] = STATE(3362), - [sym_ref_expression] = STATE(3362), - [sym_reftype_expression] = STATE(3362), - [sym_refvalue_expression] = STATE(3362), - [sym_stackalloc_expression] = STATE(3362), - [sym_range_expression] = STATE(3362), - [sym_tuple_expression] = STATE(2747), - [sym_literal] = STATE(3362), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3362), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2603), + [sym__name] = STATE(5877), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2344), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(4392), + [sym_non_lvalue_expression] = STATE(3220), + [sym_lvalue_expression] = STATE(3281), + [sym__expression_statement_expression] = STATE(3236), + [sym_assignment_expression] = STATE(3221), + [sym_binary_expression] = STATE(3236), + [sym_postfix_unary_expression] = STATE(3221), + [sym_prefix_unary_expression] = STATE(3221), + [sym__pointer_indirection_expression] = STATE(2602), + [sym_query_expression] = STATE(3236), + [sym_from_clause] = STATE(6146), + [sym_conditional_expression] = STATE(3236), + [sym_conditional_access_expression] = STATE(3236), + [sym_as_expression] = STATE(3236), + [sym_is_expression] = STATE(3236), + [sym_is_pattern_expression] = STATE(3236), + [sym_cast_expression] = STATE(3236), + [sym_checked_expression] = STATE(3236), + [sym_invocation_expression] = STATE(3221), + [sym_switch_expression] = STATE(3236), + [sym_await_expression] = STATE(3221), + [sym_throw_expression] = STATE(3236), + [sym_element_access_expression] = STATE(2602), + [sym_interpolated_string_expression] = STATE(3236), + [sym_member_access_expression] = STATE(2602), + [sym_object_creation_expression] = STATE(3221), + [sym_parenthesized_expression] = STATE(3221), + [sym__parenthesized_lvalue_expression] = STATE(2602), + [sym_lambda_expression] = STATE(3236), + [sym__lambda_expression_init] = STATE(7323), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3236), + [sym_anonymous_method_expression] = STATE(3236), + [sym_anonymous_object_creation_expression] = STATE(3236), + [sym_implicit_array_creation_expression] = STATE(3236), + [sym_implicit_object_creation_expression] = STATE(3236), + [sym_implicit_stackalloc_expression] = STATE(3236), + [sym_initializer_expression] = STATE(3236), + [sym_default_expression] = STATE(3236), + [sym_with_expression] = STATE(3236), + [sym_sizeof_expression] = STATE(3236), + [sym_typeof_expression] = STATE(3236), + [sym_makeref_expression] = STATE(3236), + [sym_ref_expression] = STATE(3236), + [sym_reftype_expression] = STATE(3236), + [sym_refvalue_expression] = STATE(3236), + [sym_stackalloc_expression] = STATE(3236), + [sym_range_expression] = STATE(3236), + [sym_tuple_expression] = STATE(2602), + [sym_literal] = STATE(3236), + [sym_character_literal] = STATE(3272), + [sym_string_literal] = STATE(3272), + [sym_raw_string_literal] = STATE(3272), + [sym_boolean_literal] = STATE(3272), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3236), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(1226), [sym_preproc_endregion] = STATE(1226), [sym_preproc_line] = STATE(1226), @@ -249053,47 +248939,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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3385), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3379), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1307), - [anon_sym_LPAREN] = ACTIONS(1309), - [anon_sym_ref] = ACTIONS(1311), - [anon_sym_LBRACE] = ACTIONS(1313), - [anon_sym_delegate] = ACTIONS(1315), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1149), + [anon_sym_LPAREN] = ACTIONS(1531), + [anon_sym_ref] = ACTIONS(1533), + [anon_sym_LBRACE] = ACTIONS(1155), + [anon_sym_delegate] = ACTIONS(1157), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1317), + [anon_sym_new] = ACTIONS(1535), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1319), - [anon_sym_BANG] = ACTIONS(1069), - [anon_sym_TILDE] = ACTIONS(1069), - [anon_sym_PLUS_PLUS] = ACTIONS(1069), - [anon_sym_DASH_DASH] = ACTIONS(1069), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1071), - [anon_sym_DASH] = ACTIONS(1071), - [anon_sym_STAR] = ACTIONS(1321), - [anon_sym_CARET] = ACTIONS(1069), - [anon_sym_AMP] = ACTIONS(1069), - [anon_sym_this] = ACTIONS(1323), + [anon_sym_checked] = ACTIONS(1163), + [anon_sym_BANG] = ACTIONS(1539), + [anon_sym_TILDE] = ACTIONS(1539), + [anon_sym_PLUS_PLUS] = ACTIONS(1539), + [anon_sym_DASH_DASH] = ACTIONS(1539), + [anon_sym_true] = ACTIONS(1169), + [anon_sym_false] = ACTIONS(1169), + [anon_sym_PLUS] = ACTIONS(1537), + [anon_sym_DASH] = ACTIONS(1537), + [anon_sym_STAR] = ACTIONS(1541), + [anon_sym_CARET] = ACTIONS(1539), + [anon_sym_AMP] = ACTIONS(1539), + [anon_sym_this] = ACTIONS(1173), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1325), + [anon_sym_base] = ACTIONS(1175), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1319), + [sym_predefined_type] = ACTIONS(1177), + [anon_sym_unchecked] = ACTIONS(1163), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1327), + [anon_sym_default] = ACTIONS(1179), + [anon_sym_throw] = ACTIONS(1543), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1329), - [anon_sym_DOT_DOT] = ACTIONS(1331), + [anon_sym_await] = ACTIONS(1545), + [anon_sym_DOT_DOT] = ACTIONS(1547), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -249106,19 +248992,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1333), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(1335), - [anon_sym___reftype] = ACTIONS(1337), - [anon_sym___refvalue] = ACTIONS(1339), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1341), + [anon_sym_stackalloc] = ACTIONS(1187), + [anon_sym_sizeof] = ACTIONS(1189), + [anon_sym_typeof] = ACTIONS(1191), + [anon_sym___makeref] = ACTIONS(1193), + [anon_sym___reftype] = ACTIONS(1195), + [anon_sym___refvalue] = ACTIONS(1197), + [sym_null_literal] = ACTIONS(1199), + [anon_sym_SQUOTE] = ACTIONS(1201), + [sym_integer_literal] = ACTIONS(1199), + [sym_real_literal] = ACTIONS(1203), + [anon_sym_DQUOTE] = ACTIONS(1205), + [sym_verbatim_string_literal] = ACTIONS(1203), + [aux_sym_preproc_if_token1] = ACTIONS(1207), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -249129,90 +249015,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(151), - [sym_interpolation_verbatim_start] = ACTIONS(153), - [sym_interpolation_raw_start] = ACTIONS(155), - [sym_raw_string_start] = ACTIONS(157), + [sym_interpolation_regular_start] = ACTIONS(1209), + [sym_interpolation_verbatim_start] = ACTIONS(1211), + [sym_interpolation_raw_start] = ACTIONS(1213), + [sym_raw_string_start] = ACTIONS(1215), }, [1227] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(5891), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2372), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(5336), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3653), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3080), - [sym_postfix_unary_expression] = STATE(3111), - [sym_prefix_unary_expression] = STATE(3111), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6158), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3080), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3111), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3080), - [sym_member_access_expression] = STATE(2484), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3111), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7448), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(3080), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3080), - [sym_typeof_expression] = STATE(3080), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2484), - [sym_literal] = STATE(3080), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2603), + [sym__name] = STATE(5877), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2344), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(4420), + [sym_non_lvalue_expression] = STATE(3220), + [sym_lvalue_expression] = STATE(3281), + [sym__expression_statement_expression] = STATE(3236), + [sym_assignment_expression] = STATE(3221), + [sym_binary_expression] = STATE(3236), + [sym_postfix_unary_expression] = STATE(3221), + [sym_prefix_unary_expression] = STATE(3221), + [sym__pointer_indirection_expression] = STATE(2602), + [sym_query_expression] = STATE(3236), + [sym_from_clause] = STATE(6146), + [sym_conditional_expression] = STATE(3236), + [sym_conditional_access_expression] = STATE(3236), + [sym_as_expression] = STATE(3236), + [sym_is_expression] = STATE(3236), + [sym_is_pattern_expression] = STATE(3236), + [sym_cast_expression] = STATE(3236), + [sym_checked_expression] = STATE(3236), + [sym_invocation_expression] = STATE(3221), + [sym_switch_expression] = STATE(3236), + [sym_await_expression] = STATE(3221), + [sym_throw_expression] = STATE(3236), + [sym_element_access_expression] = STATE(2602), + [sym_interpolated_string_expression] = STATE(3236), + [sym_member_access_expression] = STATE(2602), + [sym_object_creation_expression] = STATE(3221), + [sym_parenthesized_expression] = STATE(3221), + [sym__parenthesized_lvalue_expression] = STATE(2602), + [sym_lambda_expression] = STATE(3236), + [sym__lambda_expression_init] = STATE(7323), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3236), + [sym_anonymous_method_expression] = STATE(3236), + [sym_anonymous_object_creation_expression] = STATE(3236), + [sym_implicit_array_creation_expression] = STATE(3236), + [sym_implicit_object_creation_expression] = STATE(3236), + [sym_implicit_stackalloc_expression] = STATE(3236), + [sym_initializer_expression] = STATE(3236), + [sym_default_expression] = STATE(3236), + [sym_with_expression] = STATE(3236), + [sym_sizeof_expression] = STATE(3236), + [sym_typeof_expression] = STATE(3236), + [sym_makeref_expression] = STATE(3236), + [sym_ref_expression] = STATE(3236), + [sym_reftype_expression] = STATE(3236), + [sym_refvalue_expression] = STATE(3236), + [sym_stackalloc_expression] = STATE(3236), + [sym_range_expression] = STATE(3236), + [sym_tuple_expression] = STATE(2602), + [sym_literal] = STATE(3236), + [sym_character_literal] = STATE(3272), + [sym_string_literal] = STATE(3272), + [sym_raw_string_literal] = STATE(3272), + [sym_boolean_literal] = STATE(3272), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3236), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(1227), [sym_preproc_endregion] = STATE(1227), [sym_preproc_line] = STATE(1227), @@ -249222,47 +249108,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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3379), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1481), - [anon_sym_LPAREN] = ACTIONS(2159), - [anon_sym_ref] = ACTIONS(2161), - [anon_sym_LBRACE] = ACTIONS(1487), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1149), + [anon_sym_LPAREN] = ACTIONS(1531), + [anon_sym_ref] = ACTIONS(1533), + [anon_sym_LBRACE] = ACTIONS(1155), + [anon_sym_delegate] = ACTIONS(1157), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(2163), + [anon_sym_new] = ACTIONS(1535), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1067), - [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(77), - [anon_sym_false] = ACTIONS(77), - [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(83), + [anon_sym_checked] = ACTIONS(1163), + [anon_sym_BANG] = ACTIONS(1539), + [anon_sym_TILDE] = ACTIONS(1539), + [anon_sym_PLUS_PLUS] = ACTIONS(1539), + [anon_sym_DASH_DASH] = ACTIONS(1539), + [anon_sym_true] = ACTIONS(1169), + [anon_sym_false] = ACTIONS(1169), + [anon_sym_PLUS] = ACTIONS(1537), + [anon_sym_DASH] = ACTIONS(1537), + [anon_sym_STAR] = ACTIONS(1541), + [anon_sym_CARET] = ACTIONS(1539), + [anon_sym_AMP] = ACTIONS(1539), + [anon_sym_this] = ACTIONS(1173), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), + [anon_sym_base] = ACTIONS(1175), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1067), + [sym_predefined_type] = ACTIONS(1177), + [anon_sym_unchecked] = ACTIONS(1163), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(2171), + [anon_sym_default] = ACTIONS(1179), + [anon_sym_throw] = ACTIONS(1543), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2173), - [anon_sym_DOT_DOT] = ACTIONS(2175), + [anon_sym_await] = ACTIONS(1545), + [anon_sym_DOT_DOT] = ACTIONS(1547), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -249275,19 +249161,19 @@ static const uint16_t ts_parse_table[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(1089), + [anon_sym_stackalloc] = ACTIONS(1187), + [anon_sym_sizeof] = ACTIONS(1189), + [anon_sym_typeof] = ACTIONS(1191), + [anon_sym___makeref] = ACTIONS(1193), + [anon_sym___reftype] = ACTIONS(1195), + [anon_sym___refvalue] = ACTIONS(1197), + [sym_null_literal] = ACTIONS(1199), + [anon_sym_SQUOTE] = ACTIONS(1201), + [sym_integer_literal] = ACTIONS(1199), + [sym_real_literal] = ACTIONS(1203), + [anon_sym_DQUOTE] = ACTIONS(1205), + [sym_verbatim_string_literal] = ACTIONS(1203), + [aux_sym_preproc_if_token1] = ACTIONS(1207), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -249298,90 +249184,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(151), - [sym_interpolation_verbatim_start] = ACTIONS(153), - [sym_interpolation_raw_start] = ACTIONS(155), - [sym_raw_string_start] = ACTIONS(157), + [sym_interpolation_regular_start] = ACTIONS(1209), + [sym_interpolation_verbatim_start] = ACTIONS(1211), + [sym_interpolation_raw_start] = ACTIONS(1213), + [sym_raw_string_start] = ACTIONS(1215), }, [1228] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(5891), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2372), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(3521), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3653), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3080), - [sym_postfix_unary_expression] = STATE(3111), - [sym_prefix_unary_expression] = STATE(3111), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6158), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3080), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3111), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3080), - [sym_member_access_expression] = STATE(2484), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3111), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7448), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(3080), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3080), - [sym_typeof_expression] = STATE(3080), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2484), - [sym_literal] = STATE(3080), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2603), + [sym__name] = STATE(5877), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2344), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(4422), + [sym_non_lvalue_expression] = STATE(3220), + [sym_lvalue_expression] = STATE(3281), + [sym__expression_statement_expression] = STATE(3236), + [sym_assignment_expression] = STATE(3221), + [sym_binary_expression] = STATE(3236), + [sym_postfix_unary_expression] = STATE(3221), + [sym_prefix_unary_expression] = STATE(3221), + [sym__pointer_indirection_expression] = STATE(2602), + [sym_query_expression] = STATE(3236), + [sym_from_clause] = STATE(6146), + [sym_conditional_expression] = STATE(3236), + [sym_conditional_access_expression] = STATE(3236), + [sym_as_expression] = STATE(3236), + [sym_is_expression] = STATE(3236), + [sym_is_pattern_expression] = STATE(3236), + [sym_cast_expression] = STATE(3236), + [sym_checked_expression] = STATE(3236), + [sym_invocation_expression] = STATE(3221), + [sym_switch_expression] = STATE(3236), + [sym_await_expression] = STATE(3221), + [sym_throw_expression] = STATE(3236), + [sym_element_access_expression] = STATE(2602), + [sym_interpolated_string_expression] = STATE(3236), + [sym_member_access_expression] = STATE(2602), + [sym_object_creation_expression] = STATE(3221), + [sym_parenthesized_expression] = STATE(3221), + [sym__parenthesized_lvalue_expression] = STATE(2602), + [sym_lambda_expression] = STATE(3236), + [sym__lambda_expression_init] = STATE(7323), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3236), + [sym_anonymous_method_expression] = STATE(3236), + [sym_anonymous_object_creation_expression] = STATE(3236), + [sym_implicit_array_creation_expression] = STATE(3236), + [sym_implicit_object_creation_expression] = STATE(3236), + [sym_implicit_stackalloc_expression] = STATE(3236), + [sym_initializer_expression] = STATE(3236), + [sym_default_expression] = STATE(3236), + [sym_with_expression] = STATE(3236), + [sym_sizeof_expression] = STATE(3236), + [sym_typeof_expression] = STATE(3236), + [sym_makeref_expression] = STATE(3236), + [sym_ref_expression] = STATE(3236), + [sym_reftype_expression] = STATE(3236), + [sym_refvalue_expression] = STATE(3236), + [sym_stackalloc_expression] = STATE(3236), + [sym_range_expression] = STATE(3236), + [sym_tuple_expression] = STATE(2602), + [sym_literal] = STATE(3236), + [sym_character_literal] = STATE(3272), + [sym_string_literal] = STATE(3272), + [sym_raw_string_literal] = STATE(3272), + [sym_boolean_literal] = STATE(3272), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3236), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(1228), [sym_preproc_endregion] = STATE(1228), [sym_preproc_line] = STATE(1228), @@ -249391,47 +249277,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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3379), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1481), - [anon_sym_LPAREN] = ACTIONS(2159), - [anon_sym_ref] = ACTIONS(2161), - [anon_sym_LBRACE] = ACTIONS(1487), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1149), + [anon_sym_LPAREN] = ACTIONS(1531), + [anon_sym_ref] = ACTIONS(1533), + [anon_sym_LBRACE] = ACTIONS(1155), + [anon_sym_delegate] = ACTIONS(1157), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(2163), + [anon_sym_new] = ACTIONS(1535), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1067), - [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(77), - [anon_sym_false] = ACTIONS(77), - [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(83), + [anon_sym_checked] = ACTIONS(1163), + [anon_sym_BANG] = ACTIONS(1539), + [anon_sym_TILDE] = ACTIONS(1539), + [anon_sym_PLUS_PLUS] = ACTIONS(1539), + [anon_sym_DASH_DASH] = ACTIONS(1539), + [anon_sym_true] = ACTIONS(1169), + [anon_sym_false] = ACTIONS(1169), + [anon_sym_PLUS] = ACTIONS(1537), + [anon_sym_DASH] = ACTIONS(1537), + [anon_sym_STAR] = ACTIONS(1541), + [anon_sym_CARET] = ACTIONS(1539), + [anon_sym_AMP] = ACTIONS(1539), + [anon_sym_this] = ACTIONS(1173), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), + [anon_sym_base] = ACTIONS(1175), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1067), + [sym_predefined_type] = ACTIONS(1177), + [anon_sym_unchecked] = ACTIONS(1163), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(2171), + [anon_sym_default] = ACTIONS(1179), + [anon_sym_throw] = ACTIONS(1543), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2173), - [anon_sym_DOT_DOT] = ACTIONS(2175), + [anon_sym_await] = ACTIONS(1545), + [anon_sym_DOT_DOT] = ACTIONS(1547), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -249444,19 +249330,19 @@ static const uint16_t ts_parse_table[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(1089), + [anon_sym_stackalloc] = ACTIONS(1187), + [anon_sym_sizeof] = ACTIONS(1189), + [anon_sym_typeof] = ACTIONS(1191), + [anon_sym___makeref] = ACTIONS(1193), + [anon_sym___reftype] = ACTIONS(1195), + [anon_sym___refvalue] = ACTIONS(1197), + [sym_null_literal] = ACTIONS(1199), + [anon_sym_SQUOTE] = ACTIONS(1201), + [sym_integer_literal] = ACTIONS(1199), + [sym_real_literal] = ACTIONS(1203), + [anon_sym_DQUOTE] = ACTIONS(1205), + [sym_verbatim_string_literal] = ACTIONS(1203), + [aux_sym_preproc_if_token1] = ACTIONS(1207), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -249467,90 +249353,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(151), - [sym_interpolation_verbatim_start] = ACTIONS(153), - [sym_interpolation_raw_start] = ACTIONS(155), - [sym_raw_string_start] = ACTIONS(157), + [sym_interpolation_regular_start] = ACTIONS(1209), + [sym_interpolation_verbatim_start] = ACTIONS(1211), + [sym_interpolation_raw_start] = ACTIONS(1213), + [sym_raw_string_start] = ACTIONS(1215), }, [1229] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2420), - [sym__name] = STATE(5887), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2197), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(4082), - [sym_non_lvalue_expression] = STATE(3066), - [sym_lvalue_expression] = STATE(3120), - [sym__expression_statement_expression] = STATE(3006), - [sym_assignment_expression] = STATE(3020), - [sym_binary_expression] = STATE(3006), - [sym_postfix_unary_expression] = STATE(3020), - [sym_prefix_unary_expression] = STATE(3020), - [sym__pointer_indirection_expression] = STATE(2423), - [sym_query_expression] = STATE(3006), - [sym_from_clause] = STATE(6152), - [sym_conditional_expression] = STATE(3006), - [sym_conditional_access_expression] = STATE(3006), - [sym_as_expression] = STATE(3006), - [sym_is_expression] = STATE(3006), - [sym_is_pattern_expression] = STATE(3006), - [sym_cast_expression] = STATE(3006), - [sym_checked_expression] = STATE(3006), - [sym_invocation_expression] = STATE(3020), - [sym_switch_expression] = STATE(3006), - [sym_await_expression] = STATE(3020), - [sym_throw_expression] = STATE(3006), - [sym_element_access_expression] = STATE(2423), - [sym_interpolated_string_expression] = STATE(3006), - [sym_member_access_expression] = STATE(2423), - [sym_object_creation_expression] = STATE(3020), - [sym_parenthesized_expression] = STATE(3020), - [sym__parenthesized_lvalue_expression] = STATE(2423), - [sym_lambda_expression] = STATE(3006), - [sym__lambda_expression_init] = STATE(7722), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3006), - [sym_anonymous_method_expression] = STATE(3006), - [sym_anonymous_object_creation_expression] = STATE(3006), - [sym_implicit_array_creation_expression] = STATE(3006), - [sym_implicit_object_creation_expression] = STATE(3006), - [sym_implicit_stackalloc_expression] = STATE(3006), - [sym_initializer_expression] = STATE(3006), - [sym_default_expression] = STATE(3006), - [sym_with_expression] = STATE(3006), - [sym_sizeof_expression] = STATE(3006), - [sym_typeof_expression] = STATE(3006), - [sym_makeref_expression] = STATE(3006), - [sym_ref_expression] = STATE(3006), - [sym_reftype_expression] = STATE(3006), - [sym_refvalue_expression] = STATE(3006), - [sym_stackalloc_expression] = STATE(3006), - [sym_range_expression] = STATE(3006), - [sym_tuple_expression] = STATE(2423), - [sym_literal] = STATE(3006), - [sym_character_literal] = STATE(3011), - [sym_string_literal] = STATE(3011), - [sym_raw_string_literal] = STATE(3011), - [sym_boolean_literal] = STATE(3011), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3006), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2603), + [sym__name] = STATE(5877), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2344), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(4425), + [sym_non_lvalue_expression] = STATE(3220), + [sym_lvalue_expression] = STATE(3281), + [sym__expression_statement_expression] = STATE(3236), + [sym_assignment_expression] = STATE(3221), + [sym_binary_expression] = STATE(3236), + [sym_postfix_unary_expression] = STATE(3221), + [sym_prefix_unary_expression] = STATE(3221), + [sym__pointer_indirection_expression] = STATE(2602), + [sym_query_expression] = STATE(3236), + [sym_from_clause] = STATE(6146), + [sym_conditional_expression] = STATE(3236), + [sym_conditional_access_expression] = STATE(3236), + [sym_as_expression] = STATE(3236), + [sym_is_expression] = STATE(3236), + [sym_is_pattern_expression] = STATE(3236), + [sym_cast_expression] = STATE(3236), + [sym_checked_expression] = STATE(3236), + [sym_invocation_expression] = STATE(3221), + [sym_switch_expression] = STATE(3236), + [sym_await_expression] = STATE(3221), + [sym_throw_expression] = STATE(3236), + [sym_element_access_expression] = STATE(2602), + [sym_interpolated_string_expression] = STATE(3236), + [sym_member_access_expression] = STATE(2602), + [sym_object_creation_expression] = STATE(3221), + [sym_parenthesized_expression] = STATE(3221), + [sym__parenthesized_lvalue_expression] = STATE(2602), + [sym_lambda_expression] = STATE(3236), + [sym__lambda_expression_init] = STATE(7323), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3236), + [sym_anonymous_method_expression] = STATE(3236), + [sym_anonymous_object_creation_expression] = STATE(3236), + [sym_implicit_array_creation_expression] = STATE(3236), + [sym_implicit_object_creation_expression] = STATE(3236), + [sym_implicit_stackalloc_expression] = STATE(3236), + [sym_initializer_expression] = STATE(3236), + [sym_default_expression] = STATE(3236), + [sym_with_expression] = STATE(3236), + [sym_sizeof_expression] = STATE(3236), + [sym_typeof_expression] = STATE(3236), + [sym_makeref_expression] = STATE(3236), + [sym_ref_expression] = STATE(3236), + [sym_reftype_expression] = STATE(3236), + [sym_refvalue_expression] = STATE(3236), + [sym_stackalloc_expression] = STATE(3236), + [sym_range_expression] = STATE(3236), + [sym_tuple_expression] = STATE(2602), + [sym_literal] = STATE(3236), + [sym_character_literal] = STATE(3272), + [sym_string_literal] = STATE(3272), + [sym_raw_string_literal] = STATE(3272), + [sym_boolean_literal] = STATE(3272), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3236), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(1229), [sym_preproc_endregion] = STATE(1229), [sym_preproc_line] = STATE(1229), @@ -249560,47 +249446,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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3440), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3379), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1241), - [anon_sym_LPAREN] = ACTIONS(1243), - [anon_sym_ref] = ACTIONS(1245), - [anon_sym_LBRACE] = ACTIONS(1247), - [anon_sym_delegate] = ACTIONS(1249), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1149), + [anon_sym_LPAREN] = ACTIONS(1531), + [anon_sym_ref] = ACTIONS(1533), + [anon_sym_LBRACE] = ACTIONS(1155), + [anon_sym_delegate] = ACTIONS(1157), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1251), + [anon_sym_new] = ACTIONS(1535), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1253), - [anon_sym_BANG] = ACTIONS(1257), - [anon_sym_TILDE] = ACTIONS(1257), - [anon_sym_PLUS_PLUS] = ACTIONS(1257), - [anon_sym_DASH_DASH] = ACTIONS(1257), - [anon_sym_true] = ACTIONS(1259), - [anon_sym_false] = ACTIONS(1259), - [anon_sym_PLUS] = ACTIONS(1255), - [anon_sym_DASH] = ACTIONS(1255), - [anon_sym_STAR] = ACTIONS(1261), - [anon_sym_CARET] = ACTIONS(1257), - [anon_sym_AMP] = ACTIONS(1257), - [anon_sym_this] = ACTIONS(1263), + [anon_sym_checked] = ACTIONS(1163), + [anon_sym_BANG] = ACTIONS(1539), + [anon_sym_TILDE] = ACTIONS(1539), + [anon_sym_PLUS_PLUS] = ACTIONS(1539), + [anon_sym_DASH_DASH] = ACTIONS(1539), + [anon_sym_true] = ACTIONS(1169), + [anon_sym_false] = ACTIONS(1169), + [anon_sym_PLUS] = ACTIONS(1537), + [anon_sym_DASH] = ACTIONS(1537), + [anon_sym_STAR] = ACTIONS(1541), + [anon_sym_CARET] = ACTIONS(1539), + [anon_sym_AMP] = ACTIONS(1539), + [anon_sym_this] = ACTIONS(1173), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1265), + [anon_sym_base] = ACTIONS(1175), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1267), - [anon_sym_unchecked] = ACTIONS(1253), + [sym_predefined_type] = ACTIONS(1177), + [anon_sym_unchecked] = ACTIONS(1163), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1269), - [anon_sym_throw] = ACTIONS(1271), + [anon_sym_default] = ACTIONS(1179), + [anon_sym_throw] = ACTIONS(1543), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1273), - [anon_sym_DOT_DOT] = ACTIONS(1275), + [anon_sym_await] = ACTIONS(1545), + [anon_sym_DOT_DOT] = ACTIONS(1547), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -249613,19 +249499,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1277), - [anon_sym_sizeof] = ACTIONS(1279), - [anon_sym_typeof] = ACTIONS(1281), - [anon_sym___makeref] = ACTIONS(1283), - [anon_sym___reftype] = ACTIONS(1285), - [anon_sym___refvalue] = ACTIONS(1287), - [sym_null_literal] = ACTIONS(1289), - [anon_sym_SQUOTE] = ACTIONS(1291), - [sym_integer_literal] = ACTIONS(1289), - [sym_real_literal] = ACTIONS(1293), - [anon_sym_DQUOTE] = ACTIONS(1295), - [sym_verbatim_string_literal] = ACTIONS(1293), - [aux_sym_preproc_if_token1] = ACTIONS(1297), + [anon_sym_stackalloc] = ACTIONS(1187), + [anon_sym_sizeof] = ACTIONS(1189), + [anon_sym_typeof] = ACTIONS(1191), + [anon_sym___makeref] = ACTIONS(1193), + [anon_sym___reftype] = ACTIONS(1195), + [anon_sym___refvalue] = ACTIONS(1197), + [sym_null_literal] = ACTIONS(1199), + [anon_sym_SQUOTE] = ACTIONS(1201), + [sym_integer_literal] = ACTIONS(1199), + [sym_real_literal] = ACTIONS(1203), + [anon_sym_DQUOTE] = ACTIONS(1205), + [sym_verbatim_string_literal] = ACTIONS(1203), + [aux_sym_preproc_if_token1] = ACTIONS(1207), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -249636,90 +249522,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1299), - [sym_interpolation_verbatim_start] = ACTIONS(1301), - [sym_interpolation_raw_start] = ACTIONS(1303), - [sym_raw_string_start] = ACTIONS(1305), + [sym_interpolation_regular_start] = ACTIONS(1209), + [sym_interpolation_verbatim_start] = ACTIONS(1211), + [sym_interpolation_raw_start] = ACTIONS(1213), + [sym_raw_string_start] = ACTIONS(1215), }, [1230] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(5891), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2372), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(5389), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3653), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3080), - [sym_postfix_unary_expression] = STATE(3111), - [sym_prefix_unary_expression] = STATE(3111), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6158), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3080), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3111), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3080), - [sym_member_access_expression] = STATE(2484), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3111), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7448), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(3080), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3080), - [sym_typeof_expression] = STATE(3080), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2484), - [sym_literal] = STATE(3080), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2603), + [sym__name] = STATE(5877), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2344), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(4427), + [sym_non_lvalue_expression] = STATE(3220), + [sym_lvalue_expression] = STATE(3281), + [sym__expression_statement_expression] = STATE(3236), + [sym_assignment_expression] = STATE(3221), + [sym_binary_expression] = STATE(3236), + [sym_postfix_unary_expression] = STATE(3221), + [sym_prefix_unary_expression] = STATE(3221), + [sym__pointer_indirection_expression] = STATE(2602), + [sym_query_expression] = STATE(3236), + [sym_from_clause] = STATE(6146), + [sym_conditional_expression] = STATE(3236), + [sym_conditional_access_expression] = STATE(3236), + [sym_as_expression] = STATE(3236), + [sym_is_expression] = STATE(3236), + [sym_is_pattern_expression] = STATE(3236), + [sym_cast_expression] = STATE(3236), + [sym_checked_expression] = STATE(3236), + [sym_invocation_expression] = STATE(3221), + [sym_switch_expression] = STATE(3236), + [sym_await_expression] = STATE(3221), + [sym_throw_expression] = STATE(3236), + [sym_element_access_expression] = STATE(2602), + [sym_interpolated_string_expression] = STATE(3236), + [sym_member_access_expression] = STATE(2602), + [sym_object_creation_expression] = STATE(3221), + [sym_parenthesized_expression] = STATE(3221), + [sym__parenthesized_lvalue_expression] = STATE(2602), + [sym_lambda_expression] = STATE(3236), + [sym__lambda_expression_init] = STATE(7323), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3236), + [sym_anonymous_method_expression] = STATE(3236), + [sym_anonymous_object_creation_expression] = STATE(3236), + [sym_implicit_array_creation_expression] = STATE(3236), + [sym_implicit_object_creation_expression] = STATE(3236), + [sym_implicit_stackalloc_expression] = STATE(3236), + [sym_initializer_expression] = STATE(3236), + [sym_default_expression] = STATE(3236), + [sym_with_expression] = STATE(3236), + [sym_sizeof_expression] = STATE(3236), + [sym_typeof_expression] = STATE(3236), + [sym_makeref_expression] = STATE(3236), + [sym_ref_expression] = STATE(3236), + [sym_reftype_expression] = STATE(3236), + [sym_refvalue_expression] = STATE(3236), + [sym_stackalloc_expression] = STATE(3236), + [sym_range_expression] = STATE(3236), + [sym_tuple_expression] = STATE(2602), + [sym_literal] = STATE(3236), + [sym_character_literal] = STATE(3272), + [sym_string_literal] = STATE(3272), + [sym_raw_string_literal] = STATE(3272), + [sym_boolean_literal] = STATE(3272), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3236), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(1230), [sym_preproc_endregion] = STATE(1230), [sym_preproc_line] = STATE(1230), @@ -249729,47 +249615,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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3379), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1481), - [anon_sym_LPAREN] = ACTIONS(2159), - [anon_sym_ref] = ACTIONS(2161), - [anon_sym_LBRACE] = ACTIONS(1487), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1149), + [anon_sym_LPAREN] = ACTIONS(1531), + [anon_sym_ref] = ACTIONS(1533), + [anon_sym_LBRACE] = ACTIONS(1155), + [anon_sym_delegate] = ACTIONS(1157), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(2163), + [anon_sym_new] = ACTIONS(1535), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1067), - [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(77), - [anon_sym_false] = ACTIONS(77), - [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(83), + [anon_sym_checked] = ACTIONS(1163), + [anon_sym_BANG] = ACTIONS(1539), + [anon_sym_TILDE] = ACTIONS(1539), + [anon_sym_PLUS_PLUS] = ACTIONS(1539), + [anon_sym_DASH_DASH] = ACTIONS(1539), + [anon_sym_true] = ACTIONS(1169), + [anon_sym_false] = ACTIONS(1169), + [anon_sym_PLUS] = ACTIONS(1537), + [anon_sym_DASH] = ACTIONS(1537), + [anon_sym_STAR] = ACTIONS(1541), + [anon_sym_CARET] = ACTIONS(1539), + [anon_sym_AMP] = ACTIONS(1539), + [anon_sym_this] = ACTIONS(1173), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), + [anon_sym_base] = ACTIONS(1175), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1067), + [sym_predefined_type] = ACTIONS(1177), + [anon_sym_unchecked] = ACTIONS(1163), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(2171), + [anon_sym_default] = ACTIONS(1179), + [anon_sym_throw] = ACTIONS(1543), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2173), - [anon_sym_DOT_DOT] = ACTIONS(2175), + [anon_sym_await] = ACTIONS(1545), + [anon_sym_DOT_DOT] = ACTIONS(1547), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -249782,19 +249668,19 @@ static const uint16_t ts_parse_table[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(1089), + [anon_sym_stackalloc] = ACTIONS(1187), + [anon_sym_sizeof] = ACTIONS(1189), + [anon_sym_typeof] = ACTIONS(1191), + [anon_sym___makeref] = ACTIONS(1193), + [anon_sym___reftype] = ACTIONS(1195), + [anon_sym___refvalue] = ACTIONS(1197), + [sym_null_literal] = ACTIONS(1199), + [anon_sym_SQUOTE] = ACTIONS(1201), + [sym_integer_literal] = ACTIONS(1199), + [sym_real_literal] = ACTIONS(1203), + [anon_sym_DQUOTE] = ACTIONS(1205), + [sym_verbatim_string_literal] = ACTIONS(1203), + [aux_sym_preproc_if_token1] = ACTIONS(1207), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -249805,90 +249691,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(151), - [sym_interpolation_verbatim_start] = ACTIONS(153), - [sym_interpolation_raw_start] = ACTIONS(155), - [sym_raw_string_start] = ACTIONS(157), + [sym_interpolation_regular_start] = ACTIONS(1209), + [sym_interpolation_verbatim_start] = ACTIONS(1211), + [sym_interpolation_raw_start] = ACTIONS(1213), + [sym_raw_string_start] = ACTIONS(1215), }, [1231] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2762), - [sym__name] = STATE(5910), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2247), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(4227), - [sym_non_lvalue_expression] = STATE(3438), - [sym_lvalue_expression] = STATE(3136), - [sym__expression_statement_expression] = STATE(3362), - [sym_assignment_expression] = STATE(3449), - [sym_binary_expression] = STATE(3362), - [sym_postfix_unary_expression] = STATE(3449), - [sym_prefix_unary_expression] = STATE(3449), - [sym__pointer_indirection_expression] = STATE(2747), - [sym_query_expression] = STATE(3362), - [sym_from_clause] = STATE(6171), - [sym_conditional_expression] = STATE(3362), - [sym_conditional_access_expression] = STATE(3362), - [sym_as_expression] = STATE(3362), - [sym_is_expression] = STATE(3362), - [sym_is_pattern_expression] = STATE(3362), - [sym_cast_expression] = STATE(3362), - [sym_checked_expression] = STATE(3362), - [sym_invocation_expression] = STATE(3449), - [sym_switch_expression] = STATE(3362), - [sym_await_expression] = STATE(3449), - [sym_throw_expression] = STATE(3362), - [sym_element_access_expression] = STATE(2747), - [sym_interpolated_string_expression] = STATE(3362), - [sym_member_access_expression] = STATE(2747), - [sym_object_creation_expression] = STATE(3449), - [sym_parenthesized_expression] = STATE(3449), - [sym__parenthesized_lvalue_expression] = STATE(2747), - [sym_lambda_expression] = STATE(3362), - [sym__lambda_expression_init] = STATE(7452), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3362), - [sym_anonymous_method_expression] = STATE(3362), - [sym_anonymous_object_creation_expression] = STATE(3362), - [sym_implicit_array_creation_expression] = STATE(3362), - [sym_implicit_object_creation_expression] = STATE(3362), - [sym_implicit_stackalloc_expression] = STATE(3362), - [sym_initializer_expression] = STATE(3362), - [sym_default_expression] = STATE(3362), - [sym_with_expression] = STATE(3362), - [sym_sizeof_expression] = STATE(3362), - [sym_typeof_expression] = STATE(3362), - [sym_makeref_expression] = STATE(3362), - [sym_ref_expression] = STATE(3362), - [sym_reftype_expression] = STATE(3362), - [sym_refvalue_expression] = STATE(3362), - [sym_stackalloc_expression] = STATE(3362), - [sym_range_expression] = STATE(3362), - [sym_tuple_expression] = STATE(2747), - [sym_literal] = STATE(3362), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3362), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2603), + [sym__name] = STATE(5869), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2367), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(4674), + [sym_non_lvalue_expression] = STATE(3220), + [sym_lvalue_expression] = STATE(3377), + [sym__expression_statement_expression] = STATE(3236), + [sym_assignment_expression] = STATE(3221), + [sym_binary_expression] = STATE(3236), + [sym_postfix_unary_expression] = STATE(3221), + [sym_prefix_unary_expression] = STATE(3221), + [sym__pointer_indirection_expression] = STATE(2602), + [sym_query_expression] = STATE(3236), + [sym_from_clause] = STATE(6128), + [sym_conditional_expression] = STATE(3236), + [sym_conditional_access_expression] = STATE(3236), + [sym_as_expression] = STATE(3236), + [sym_is_expression] = STATE(3236), + [sym_is_pattern_expression] = STATE(3236), + [sym_cast_expression] = STATE(3236), + [sym_checked_expression] = STATE(3236), + [sym_invocation_expression] = STATE(3221), + [sym_switch_expression] = STATE(3236), + [sym_await_expression] = STATE(3221), + [sym_throw_expression] = STATE(3236), + [sym_element_access_expression] = STATE(2602), + [sym_interpolated_string_expression] = STATE(3236), + [sym_member_access_expression] = STATE(2602), + [sym_object_creation_expression] = STATE(3221), + [sym_parenthesized_expression] = STATE(3221), + [sym__parenthesized_lvalue_expression] = STATE(2602), + [sym_lambda_expression] = STATE(3236), + [sym__lambda_expression_init] = STATE(7632), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3236), + [sym_anonymous_method_expression] = STATE(3236), + [sym_anonymous_object_creation_expression] = STATE(3236), + [sym_implicit_array_creation_expression] = STATE(3236), + [sym_implicit_object_creation_expression] = STATE(3236), + [sym_implicit_stackalloc_expression] = STATE(3236), + [sym_initializer_expression] = STATE(3236), + [sym_default_expression] = STATE(3236), + [sym_with_expression] = STATE(3236), + [sym_sizeof_expression] = STATE(3236), + [sym_typeof_expression] = STATE(3236), + [sym_makeref_expression] = STATE(3236), + [sym_ref_expression] = STATE(3236), + [sym_reftype_expression] = STATE(3236), + [sym_refvalue_expression] = STATE(3236), + [sym_stackalloc_expression] = STATE(3236), + [sym_range_expression] = STATE(3236), + [sym_tuple_expression] = STATE(2602), + [sym_literal] = STATE(3236), + [sym_character_literal] = STATE(3272), + [sym_string_literal] = STATE(3272), + [sym_raw_string_literal] = STATE(3272), + [sym_boolean_literal] = STATE(3272), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3236), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(1231), [sym_preproc_endregion] = STATE(1231), [sym_preproc_line] = STATE(1231), @@ -249898,47 +249784,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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3385), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3379), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1307), - [anon_sym_LPAREN] = ACTIONS(1309), - [anon_sym_ref] = ACTIONS(1311), - [anon_sym_LBRACE] = ACTIONS(1313), - [anon_sym_delegate] = ACTIONS(1315), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1149), + [anon_sym_LPAREN] = ACTIONS(1913), + [anon_sym_ref] = ACTIONS(1915), + [anon_sym_LBRACE] = ACTIONS(1155), + [anon_sym_delegate] = ACTIONS(1157), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1317), + [anon_sym_new] = ACTIONS(1917), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1319), - [anon_sym_BANG] = ACTIONS(1069), - [anon_sym_TILDE] = ACTIONS(1069), - [anon_sym_PLUS_PLUS] = ACTIONS(1069), - [anon_sym_DASH_DASH] = ACTIONS(1069), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1071), - [anon_sym_DASH] = ACTIONS(1071), - [anon_sym_STAR] = ACTIONS(1321), - [anon_sym_CARET] = ACTIONS(1069), - [anon_sym_AMP] = ACTIONS(1069), - [anon_sym_this] = ACTIONS(1323), + [anon_sym_checked] = ACTIONS(1163), + [anon_sym_BANG] = ACTIONS(1921), + [anon_sym_TILDE] = ACTIONS(1921), + [anon_sym_PLUS_PLUS] = ACTIONS(1921), + [anon_sym_DASH_DASH] = ACTIONS(1921), + [anon_sym_true] = ACTIONS(1169), + [anon_sym_false] = ACTIONS(1169), + [anon_sym_PLUS] = ACTIONS(1919), + [anon_sym_DASH] = ACTIONS(1919), + [anon_sym_STAR] = ACTIONS(1923), + [anon_sym_CARET] = ACTIONS(1921), + [anon_sym_AMP] = ACTIONS(1921), + [anon_sym_this] = ACTIONS(1173), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1325), + [anon_sym_base] = ACTIONS(1175), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1319), + [sym_predefined_type] = ACTIONS(1177), + [anon_sym_unchecked] = ACTIONS(1163), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1327), + [anon_sym_default] = ACTIONS(1179), + [anon_sym_throw] = ACTIONS(1925), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1329), - [anon_sym_DOT_DOT] = ACTIONS(1331), + [anon_sym_await] = ACTIONS(1927), + [anon_sym_DOT_DOT] = ACTIONS(1929), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -249951,19 +249837,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1333), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(1335), - [anon_sym___reftype] = ACTIONS(1337), - [anon_sym___refvalue] = ACTIONS(1339), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1341), + [anon_sym_stackalloc] = ACTIONS(1187), + [anon_sym_sizeof] = ACTIONS(1189), + [anon_sym_typeof] = ACTIONS(1191), + [anon_sym___makeref] = ACTIONS(1193), + [anon_sym___reftype] = ACTIONS(1195), + [anon_sym___refvalue] = ACTIONS(1197), + [sym_null_literal] = ACTIONS(1199), + [anon_sym_SQUOTE] = ACTIONS(1201), + [sym_integer_literal] = ACTIONS(1199), + [sym_real_literal] = ACTIONS(1203), + [anon_sym_DQUOTE] = ACTIONS(1205), + [sym_verbatim_string_literal] = ACTIONS(1203), + [aux_sym_preproc_if_token1] = ACTIONS(1207), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -249974,90 +249860,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(151), - [sym_interpolation_verbatim_start] = ACTIONS(153), - [sym_interpolation_raw_start] = ACTIONS(155), - [sym_raw_string_start] = ACTIONS(157), + [sym_interpolation_regular_start] = ACTIONS(1209), + [sym_interpolation_verbatim_start] = ACTIONS(1211), + [sym_interpolation_raw_start] = ACTIONS(1213), + [sym_raw_string_start] = ACTIONS(1215), }, [1232] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(5891), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2372), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(5391), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3653), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3080), - [sym_postfix_unary_expression] = STATE(3111), - [sym_prefix_unary_expression] = STATE(3111), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6158), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3080), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3111), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3080), - [sym_member_access_expression] = STATE(2484), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3111), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7448), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(3080), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3080), - [sym_typeof_expression] = STATE(3080), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2484), - [sym_literal] = STATE(3080), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2603), + [sym__name] = STATE(5877), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2344), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(3133), + [sym_non_lvalue_expression] = STATE(3220), + [sym_lvalue_expression] = STATE(3281), + [sym__expression_statement_expression] = STATE(3236), + [sym_assignment_expression] = STATE(3221), + [sym_binary_expression] = STATE(3236), + [sym_postfix_unary_expression] = STATE(3221), + [sym_prefix_unary_expression] = STATE(3221), + [sym__pointer_indirection_expression] = STATE(2602), + [sym_query_expression] = STATE(3236), + [sym_from_clause] = STATE(6146), + [sym_conditional_expression] = STATE(3236), + [sym_conditional_access_expression] = STATE(3236), + [sym_as_expression] = STATE(3236), + [sym_is_expression] = STATE(3236), + [sym_is_pattern_expression] = STATE(3236), + [sym_cast_expression] = STATE(3236), + [sym_checked_expression] = STATE(3236), + [sym_invocation_expression] = STATE(3221), + [sym_switch_expression] = STATE(3236), + [sym_await_expression] = STATE(3221), + [sym_throw_expression] = STATE(3236), + [sym_element_access_expression] = STATE(2602), + [sym_interpolated_string_expression] = STATE(3236), + [sym_member_access_expression] = STATE(2602), + [sym_object_creation_expression] = STATE(3221), + [sym_parenthesized_expression] = STATE(3221), + [sym__parenthesized_lvalue_expression] = STATE(2602), + [sym_lambda_expression] = STATE(3236), + [sym__lambda_expression_init] = STATE(7323), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3236), + [sym_anonymous_method_expression] = STATE(3236), + [sym_anonymous_object_creation_expression] = STATE(3236), + [sym_implicit_array_creation_expression] = STATE(3236), + [sym_implicit_object_creation_expression] = STATE(3236), + [sym_implicit_stackalloc_expression] = STATE(3236), + [sym_initializer_expression] = STATE(3236), + [sym_default_expression] = STATE(3236), + [sym_with_expression] = STATE(3236), + [sym_sizeof_expression] = STATE(3236), + [sym_typeof_expression] = STATE(3236), + [sym_makeref_expression] = STATE(3236), + [sym_ref_expression] = STATE(3236), + [sym_reftype_expression] = STATE(3236), + [sym_refvalue_expression] = STATE(3236), + [sym_stackalloc_expression] = STATE(3236), + [sym_range_expression] = STATE(3236), + [sym_tuple_expression] = STATE(2602), + [sym_literal] = STATE(3236), + [sym_character_literal] = STATE(3272), + [sym_string_literal] = STATE(3272), + [sym_raw_string_literal] = STATE(3272), + [sym_boolean_literal] = STATE(3272), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3236), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(1232), [sym_preproc_endregion] = STATE(1232), [sym_preproc_line] = STATE(1232), @@ -250067,47 +249953,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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3379), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1481), - [anon_sym_LPAREN] = ACTIONS(2159), - [anon_sym_ref] = ACTIONS(2161), - [anon_sym_LBRACE] = ACTIONS(1487), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1149), + [anon_sym_LPAREN] = ACTIONS(1531), + [anon_sym_ref] = ACTIONS(1533), + [anon_sym_LBRACE] = ACTIONS(1155), + [anon_sym_delegate] = ACTIONS(1157), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(2163), + [anon_sym_new] = ACTIONS(1535), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1067), - [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(77), - [anon_sym_false] = ACTIONS(77), - [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(83), + [anon_sym_checked] = ACTIONS(1163), + [anon_sym_BANG] = ACTIONS(1539), + [anon_sym_TILDE] = ACTIONS(1539), + [anon_sym_PLUS_PLUS] = ACTIONS(1539), + [anon_sym_DASH_DASH] = ACTIONS(1539), + [anon_sym_true] = ACTIONS(1169), + [anon_sym_false] = ACTIONS(1169), + [anon_sym_PLUS] = ACTIONS(1537), + [anon_sym_DASH] = ACTIONS(1537), + [anon_sym_STAR] = ACTIONS(1541), + [anon_sym_CARET] = ACTIONS(1539), + [anon_sym_AMP] = ACTIONS(1539), + [anon_sym_this] = ACTIONS(1173), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), + [anon_sym_base] = ACTIONS(1175), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1067), + [sym_predefined_type] = ACTIONS(1177), + [anon_sym_unchecked] = ACTIONS(1163), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(2171), + [anon_sym_default] = ACTIONS(1179), + [anon_sym_throw] = ACTIONS(1543), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2173), - [anon_sym_DOT_DOT] = ACTIONS(2175), + [anon_sym_await] = ACTIONS(1545), + [anon_sym_DOT_DOT] = ACTIONS(1547), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -250120,19 +250006,19 @@ static const uint16_t ts_parse_table[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(1089), + [anon_sym_stackalloc] = ACTIONS(1187), + [anon_sym_sizeof] = ACTIONS(1189), + [anon_sym_typeof] = ACTIONS(1191), + [anon_sym___makeref] = ACTIONS(1193), + [anon_sym___reftype] = ACTIONS(1195), + [anon_sym___refvalue] = ACTIONS(1197), + [sym_null_literal] = ACTIONS(1199), + [anon_sym_SQUOTE] = ACTIONS(1201), + [sym_integer_literal] = ACTIONS(1199), + [sym_real_literal] = ACTIONS(1203), + [anon_sym_DQUOTE] = ACTIONS(1205), + [sym_verbatim_string_literal] = ACTIONS(1203), + [aux_sym_preproc_if_token1] = ACTIONS(1207), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -250143,90 +250029,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(151), - [sym_interpolation_verbatim_start] = ACTIONS(153), - [sym_interpolation_raw_start] = ACTIONS(155), - [sym_raw_string_start] = ACTIONS(157), + [sym_interpolation_regular_start] = ACTIONS(1209), + [sym_interpolation_verbatim_start] = ACTIONS(1211), + [sym_interpolation_raw_start] = ACTIONS(1213), + [sym_raw_string_start] = ACTIONS(1215), }, [1233] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(5891), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2372), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(5392), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3653), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3080), - [sym_postfix_unary_expression] = STATE(3111), - [sym_prefix_unary_expression] = STATE(3111), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6158), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3080), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3111), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3080), - [sym_member_access_expression] = STATE(2484), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3111), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7448), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(3080), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3080), - [sym_typeof_expression] = STATE(3080), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2484), - [sym_literal] = STATE(3080), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2603), + [sym__name] = STATE(5869), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2367), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(4676), + [sym_non_lvalue_expression] = STATE(3220), + [sym_lvalue_expression] = STATE(3377), + [sym__expression_statement_expression] = STATE(3236), + [sym_assignment_expression] = STATE(3221), + [sym_binary_expression] = STATE(3236), + [sym_postfix_unary_expression] = STATE(3221), + [sym_prefix_unary_expression] = STATE(3221), + [sym__pointer_indirection_expression] = STATE(2602), + [sym_query_expression] = STATE(3236), + [sym_from_clause] = STATE(6128), + [sym_conditional_expression] = STATE(3236), + [sym_conditional_access_expression] = STATE(3236), + [sym_as_expression] = STATE(3236), + [sym_is_expression] = STATE(3236), + [sym_is_pattern_expression] = STATE(3236), + [sym_cast_expression] = STATE(3236), + [sym_checked_expression] = STATE(3236), + [sym_invocation_expression] = STATE(3221), + [sym_switch_expression] = STATE(3236), + [sym_await_expression] = STATE(3221), + [sym_throw_expression] = STATE(3236), + [sym_element_access_expression] = STATE(2602), + [sym_interpolated_string_expression] = STATE(3236), + [sym_member_access_expression] = STATE(2602), + [sym_object_creation_expression] = STATE(3221), + [sym_parenthesized_expression] = STATE(3221), + [sym__parenthesized_lvalue_expression] = STATE(2602), + [sym_lambda_expression] = STATE(3236), + [sym__lambda_expression_init] = STATE(7632), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3236), + [sym_anonymous_method_expression] = STATE(3236), + [sym_anonymous_object_creation_expression] = STATE(3236), + [sym_implicit_array_creation_expression] = STATE(3236), + [sym_implicit_object_creation_expression] = STATE(3236), + [sym_implicit_stackalloc_expression] = STATE(3236), + [sym_initializer_expression] = STATE(3236), + [sym_default_expression] = STATE(3236), + [sym_with_expression] = STATE(3236), + [sym_sizeof_expression] = STATE(3236), + [sym_typeof_expression] = STATE(3236), + [sym_makeref_expression] = STATE(3236), + [sym_ref_expression] = STATE(3236), + [sym_reftype_expression] = STATE(3236), + [sym_refvalue_expression] = STATE(3236), + [sym_stackalloc_expression] = STATE(3236), + [sym_range_expression] = STATE(3236), + [sym_tuple_expression] = STATE(2602), + [sym_literal] = STATE(3236), + [sym_character_literal] = STATE(3272), + [sym_string_literal] = STATE(3272), + [sym_raw_string_literal] = STATE(3272), + [sym_boolean_literal] = STATE(3272), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3236), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(1233), [sym_preproc_endregion] = STATE(1233), [sym_preproc_line] = STATE(1233), @@ -250236,47 +250122,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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3379), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1481), - [anon_sym_LPAREN] = ACTIONS(2159), - [anon_sym_ref] = ACTIONS(2161), - [anon_sym_LBRACE] = ACTIONS(1487), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1149), + [anon_sym_LPAREN] = ACTIONS(1913), + [anon_sym_ref] = ACTIONS(1915), + [anon_sym_LBRACE] = ACTIONS(1155), + [anon_sym_delegate] = ACTIONS(1157), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(2163), + [anon_sym_new] = ACTIONS(1917), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1067), - [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(77), - [anon_sym_false] = ACTIONS(77), - [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(83), + [anon_sym_checked] = ACTIONS(1163), + [anon_sym_BANG] = ACTIONS(1921), + [anon_sym_TILDE] = ACTIONS(1921), + [anon_sym_PLUS_PLUS] = ACTIONS(1921), + [anon_sym_DASH_DASH] = ACTIONS(1921), + [anon_sym_true] = ACTIONS(1169), + [anon_sym_false] = ACTIONS(1169), + [anon_sym_PLUS] = ACTIONS(1919), + [anon_sym_DASH] = ACTIONS(1919), + [anon_sym_STAR] = ACTIONS(1923), + [anon_sym_CARET] = ACTIONS(1921), + [anon_sym_AMP] = ACTIONS(1921), + [anon_sym_this] = ACTIONS(1173), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), + [anon_sym_base] = ACTIONS(1175), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1067), + [sym_predefined_type] = ACTIONS(1177), + [anon_sym_unchecked] = ACTIONS(1163), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(2171), + [anon_sym_default] = ACTIONS(1179), + [anon_sym_throw] = ACTIONS(1925), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2173), - [anon_sym_DOT_DOT] = ACTIONS(2175), + [anon_sym_await] = ACTIONS(1927), + [anon_sym_DOT_DOT] = ACTIONS(1929), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -250289,19 +250175,19 @@ static const uint16_t ts_parse_table[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(1089), + [anon_sym_stackalloc] = ACTIONS(1187), + [anon_sym_sizeof] = ACTIONS(1189), + [anon_sym_typeof] = ACTIONS(1191), + [anon_sym___makeref] = ACTIONS(1193), + [anon_sym___reftype] = ACTIONS(1195), + [anon_sym___refvalue] = ACTIONS(1197), + [sym_null_literal] = ACTIONS(1199), + [anon_sym_SQUOTE] = ACTIONS(1201), + [sym_integer_literal] = ACTIONS(1199), + [sym_real_literal] = ACTIONS(1203), + [anon_sym_DQUOTE] = ACTIONS(1205), + [sym_verbatim_string_literal] = ACTIONS(1203), + [aux_sym_preproc_if_token1] = ACTIONS(1207), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -250312,90 +250198,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(151), - [sym_interpolation_verbatim_start] = ACTIONS(153), - [sym_interpolation_raw_start] = ACTIONS(155), - [sym_raw_string_start] = ACTIONS(157), + [sym_interpolation_regular_start] = ACTIONS(1209), + [sym_interpolation_verbatim_start] = ACTIONS(1211), + [sym_interpolation_raw_start] = ACTIONS(1213), + [sym_raw_string_start] = ACTIONS(1215), }, [1234] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(5891), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2372), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(5393), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3653), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3080), - [sym_postfix_unary_expression] = STATE(3111), - [sym_prefix_unary_expression] = STATE(3111), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6158), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3080), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3111), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3080), - [sym_member_access_expression] = STATE(2484), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3111), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7448), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(3080), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3080), - [sym_typeof_expression] = STATE(3080), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2484), - [sym_literal] = STATE(3080), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2901), + [sym__name] = STATE(5883), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2359), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(3554), + [sym_non_lvalue_expression] = STATE(3685), + [sym_lvalue_expression] = STATE(3073), + [sym__expression_statement_expression] = STATE(3836), + [sym_assignment_expression] = STATE(3689), + [sym_binary_expression] = STATE(3836), + [sym_postfix_unary_expression] = STATE(3689), + [sym_prefix_unary_expression] = STATE(3689), + [sym__pointer_indirection_expression] = STATE(2906), + [sym_query_expression] = STATE(3836), + [sym_from_clause] = STATE(6157), + [sym_conditional_expression] = STATE(3836), + [sym_conditional_access_expression] = STATE(3836), + [sym_as_expression] = STATE(3836), + [sym_is_expression] = STATE(3836), + [sym_is_pattern_expression] = STATE(3836), + [sym_cast_expression] = STATE(3836), + [sym_checked_expression] = STATE(3836), + [sym_invocation_expression] = STATE(3689), + [sym_switch_expression] = STATE(3836), + [sym_await_expression] = STATE(3689), + [sym_throw_expression] = STATE(3836), + [sym_element_access_expression] = STATE(2906), + [sym_interpolated_string_expression] = STATE(3836), + [sym_member_access_expression] = STATE(2906), + [sym_object_creation_expression] = STATE(3689), + [sym_parenthesized_expression] = STATE(3689), + [sym__parenthesized_lvalue_expression] = STATE(2906), + [sym_lambda_expression] = STATE(3836), + [sym__lambda_expression_init] = STATE(7460), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3836), + [sym_anonymous_method_expression] = STATE(3836), + [sym_anonymous_object_creation_expression] = STATE(3836), + [sym_implicit_array_creation_expression] = STATE(3836), + [sym_implicit_object_creation_expression] = STATE(3836), + [sym_implicit_stackalloc_expression] = STATE(3836), + [sym_initializer_expression] = STATE(3836), + [sym_default_expression] = STATE(3836), + [sym_with_expression] = STATE(3836), + [sym_sizeof_expression] = STATE(3836), + [sym_typeof_expression] = STATE(3836), + [sym_makeref_expression] = STATE(3836), + [sym_ref_expression] = STATE(3836), + [sym_reftype_expression] = STATE(3836), + [sym_refvalue_expression] = STATE(3836), + [sym_stackalloc_expression] = STATE(3836), + [sym_range_expression] = STATE(3836), + [sym_tuple_expression] = STATE(2906), + [sym_literal] = STATE(3836), + [sym_character_literal] = STATE(3843), + [sym_string_literal] = STATE(3843), + [sym_raw_string_literal] = STATE(3843), + [sym_boolean_literal] = STATE(3843), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3836), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(1234), [sym_preproc_endregion] = STATE(1234), [sym_preproc_line] = STATE(1234), @@ -250405,47 +250291,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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3477), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1481), - [anon_sym_LPAREN] = ACTIONS(2159), - [anon_sym_ref] = ACTIONS(2161), - [anon_sym_LBRACE] = ACTIONS(1487), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1655), + [anon_sym_LPAREN] = ACTIONS(2061), + [anon_sym_ref] = ACTIONS(2063), + [anon_sym_LBRACE] = ACTIONS(1661), + [anon_sym_delegate] = ACTIONS(1663), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(2163), + [anon_sym_new] = ACTIONS(1665), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1067), - [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(77), - [anon_sym_false] = ACTIONS(77), - [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(83), + [anon_sym_checked] = ACTIONS(1667), + [anon_sym_BANG] = ACTIONS(2067), + [anon_sym_TILDE] = ACTIONS(2067), + [anon_sym_PLUS_PLUS] = ACTIONS(2067), + [anon_sym_DASH_DASH] = ACTIONS(2067), + [anon_sym_true] = ACTIONS(1673), + [anon_sym_false] = ACTIONS(1673), + [anon_sym_PLUS] = ACTIONS(2065), + [anon_sym_DASH] = ACTIONS(2065), + [anon_sym_STAR] = ACTIONS(1675), + [anon_sym_CARET] = ACTIONS(2067), + [anon_sym_AMP] = ACTIONS(2067), + [anon_sym_this] = ACTIONS(1677), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), + [anon_sym_base] = ACTIONS(1679), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1067), + [sym_predefined_type] = ACTIONS(1681), + [anon_sym_unchecked] = ACTIONS(1667), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(2171), + [anon_sym_default] = ACTIONS(1683), + [anon_sym_throw] = ACTIONS(2069), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2173), - [anon_sym_DOT_DOT] = ACTIONS(2175), + [anon_sym_await] = ACTIONS(2071), + [anon_sym_DOT_DOT] = ACTIONS(2073), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -250458,19 +250344,19 @@ static const uint16_t ts_parse_table[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(1089), + [anon_sym_stackalloc] = ACTIONS(1691), + [anon_sym_sizeof] = ACTIONS(1693), + [anon_sym_typeof] = ACTIONS(1695), + [anon_sym___makeref] = ACTIONS(1697), + [anon_sym___reftype] = ACTIONS(1699), + [anon_sym___refvalue] = ACTIONS(1701), + [sym_null_literal] = ACTIONS(1703), + [anon_sym_SQUOTE] = ACTIONS(1705), + [sym_integer_literal] = ACTIONS(1703), + [sym_real_literal] = ACTIONS(1707), + [anon_sym_DQUOTE] = ACTIONS(1709), + [sym_verbatim_string_literal] = ACTIONS(1707), + [aux_sym_preproc_if_token1] = ACTIONS(1711), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -250481,90 +250367,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(151), - [sym_interpolation_verbatim_start] = ACTIONS(153), - [sym_interpolation_raw_start] = ACTIONS(155), - [sym_raw_string_start] = ACTIONS(157), + [sym_interpolation_regular_start] = ACTIONS(1713), + [sym_interpolation_verbatim_start] = ACTIONS(1715), + [sym_interpolation_raw_start] = ACTIONS(1717), + [sym_raw_string_start] = ACTIONS(1719), }, [1235] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(5891), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2372), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(5394), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3653), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3080), - [sym_postfix_unary_expression] = STATE(3111), - [sym_prefix_unary_expression] = STATE(3111), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6158), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3080), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3111), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3080), - [sym_member_access_expression] = STATE(2484), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3111), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7448), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(3080), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3080), - [sym_typeof_expression] = STATE(3080), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2484), - [sym_literal] = STATE(3080), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2416), + [sym__name] = STATE(5890), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2193), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(5662), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(2417), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3102), + [sym_postfix_unary_expression] = STATE(3079), + [sym_prefix_unary_expression] = STATE(3079), + [sym__pointer_indirection_expression] = STATE(2415), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6134), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3102), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3079), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2415), + [sym_interpolated_string_expression] = STATE(3102), + [sym_member_access_expression] = STATE(2415), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3079), + [sym__parenthesized_lvalue_expression] = STATE(2415), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7425), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(3102), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3102), + [sym_typeof_expression] = STATE(3102), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2415), + [sym_literal] = STATE(3102), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(1235), [sym_preproc_endregion] = STATE(1235), [sym_preproc_line] = STATE(1235), @@ -250574,47 +250460,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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1481), - [anon_sym_LPAREN] = ACTIONS(2159), - [anon_sym_ref] = ACTIONS(2161), - [anon_sym_LBRACE] = ACTIONS(1487), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1239), + [anon_sym_LPAREN] = ACTIONS(2943), + [anon_sym_ref] = ACTIONS(715), + [anon_sym_LBRACE] = ACTIONS(1481), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(2163), + [anon_sym_new] = ACTIONS(1059), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1067), - [anon_sym_BANG] = ACTIONS(2167), - [anon_sym_TILDE] = ACTIONS(2167), - [anon_sym_PLUS_PLUS] = ACTIONS(2167), - [anon_sym_DASH_DASH] = ACTIONS(2167), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(1525), + [anon_sym_TILDE] = ACTIONS(1525), + [anon_sym_PLUS_PLUS] = ACTIONS(1525), + [anon_sym_DASH_DASH] = ACTIONS(1525), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [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(83), + [anon_sym_PLUS] = ACTIONS(1523), + [anon_sym_DASH] = ACTIONS(1523), + [anon_sym_STAR] = ACTIONS(1259), + [anon_sym_CARET] = ACTIONS(1525), + [anon_sym_AMP] = ACTIONS(1525), + [anon_sym_this] = ACTIONS(1261), [anon_sym_scoped] = ACTIONS(85), [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1067), + [sym_predefined_type] = ACTIONS(1265), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(2171), + [anon_sym_throw] = ACTIONS(1527), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2173), - [anon_sym_DOT_DOT] = ACTIONS(2175), + [anon_sym_await] = ACTIONS(1529), + [anon_sym_DOT_DOT] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -250639,7 +250525,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(1089), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -250656,84 +250542,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [1236] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(5891), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2372), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(5395), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3653), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3080), - [sym_postfix_unary_expression] = STATE(3111), - [sym_prefix_unary_expression] = STATE(3111), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6158), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3080), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3111), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3080), - [sym_member_access_expression] = STATE(2484), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3111), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7448), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(3080), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3080), - [sym_typeof_expression] = STATE(3080), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2484), - [sym_literal] = STATE(3080), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(5893), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2361), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(5649), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3673), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3102), + [sym_postfix_unary_expression] = STATE(3079), + [sym_prefix_unary_expression] = STATE(3079), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6159), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3102), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3079), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3102), + [sym_member_access_expression] = STATE(2472), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3079), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7363), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(3102), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3102), + [sym_typeof_expression] = STATE(3102), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2472), + [sym_literal] = STATE(3102), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(1236), [sym_preproc_endregion] = STATE(1236), [sym_preproc_line] = STATE(1236), @@ -250743,47 +250629,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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1481), - [anon_sym_LPAREN] = ACTIONS(2159), - [anon_sym_ref] = ACTIONS(2161), - [anon_sym_LBRACE] = ACTIONS(1487), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1479), + [anon_sym_LPAREN] = ACTIONS(2237), + [anon_sym_ref] = ACTIONS(2239), + [anon_sym_LBRACE] = ACTIONS(1481), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(2163), + [anon_sym_new] = ACTIONS(2241), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1067), - [anon_sym_BANG] = ACTIONS(2167), - [anon_sym_TILDE] = ACTIONS(2167), - [anon_sym_PLUS_PLUS] = ACTIONS(2167), - [anon_sym_DASH_DASH] = ACTIONS(2167), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(2245), + [anon_sym_TILDE] = ACTIONS(2245), + [anon_sym_PLUS_PLUS] = ACTIONS(2245), + [anon_sym_DASH_DASH] = ACTIONS(2245), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [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_PLUS] = ACTIONS(2243), + [anon_sym_DASH] = ACTIONS(2243), + [anon_sym_STAR] = ACTIONS(2247), + [anon_sym_CARET] = ACTIONS(2245), + [anon_sym_AMP] = ACTIONS(2245), [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(1067), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(2171), + [anon_sym_throw] = ACTIONS(2249), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2173), - [anon_sym_DOT_DOT] = ACTIONS(2175), + [anon_sym_await] = ACTIONS(2251), + [anon_sym_DOT_DOT] = ACTIONS(2253), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -250808,7 +250694,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(1089), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -250825,84 +250711,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [1237] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(5891), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2372), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(5396), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3653), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3080), - [sym_postfix_unary_expression] = STATE(3111), - [sym_prefix_unary_expression] = STATE(3111), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6158), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3080), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3111), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3080), - [sym_member_access_expression] = STATE(2484), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3111), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7448), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(3080), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3080), - [sym_typeof_expression] = STATE(3080), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2484), - [sym_literal] = STATE(3080), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(5893), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2361), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(3528), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3673), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3102), + [sym_postfix_unary_expression] = STATE(3079), + [sym_prefix_unary_expression] = STATE(3079), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6159), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3102), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3079), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3102), + [sym_member_access_expression] = STATE(2472), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3079), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7363), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(3102), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3102), + [sym_typeof_expression] = STATE(3102), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2472), + [sym_literal] = STATE(3102), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(1237), [sym_preproc_endregion] = STATE(1237), [sym_preproc_line] = STATE(1237), @@ -250912,47 +250798,47 @@ 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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1481), - [anon_sym_LPAREN] = ACTIONS(2159), - [anon_sym_ref] = ACTIONS(2161), - [anon_sym_LBRACE] = ACTIONS(1487), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1479), + [anon_sym_LPAREN] = ACTIONS(2237), + [anon_sym_ref] = ACTIONS(2239), + [anon_sym_LBRACE] = ACTIONS(1481), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(2163), + [anon_sym_new] = ACTIONS(2241), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1067), - [anon_sym_BANG] = ACTIONS(2167), - [anon_sym_TILDE] = ACTIONS(2167), - [anon_sym_PLUS_PLUS] = ACTIONS(2167), - [anon_sym_DASH_DASH] = ACTIONS(2167), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(2245), + [anon_sym_TILDE] = ACTIONS(2245), + [anon_sym_PLUS_PLUS] = ACTIONS(2245), + [anon_sym_DASH_DASH] = ACTIONS(2245), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [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_PLUS] = ACTIONS(2243), + [anon_sym_DASH] = ACTIONS(2243), + [anon_sym_STAR] = ACTIONS(2247), + [anon_sym_CARET] = ACTIONS(2245), + [anon_sym_AMP] = ACTIONS(2245), [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(1067), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(2171), + [anon_sym_throw] = ACTIONS(2249), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2173), - [anon_sym_DOT_DOT] = ACTIONS(2175), + [anon_sym_await] = ACTIONS(2251), + [anon_sym_DOT_DOT] = ACTIONS(2253), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -250977,7 +250863,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(1089), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -250994,84 +250880,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [1238] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(5891), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2372), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(5397), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3653), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3080), - [sym_postfix_unary_expression] = STATE(3111), - [sym_prefix_unary_expression] = STATE(3111), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6158), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3080), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3111), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3080), - [sym_member_access_expression] = STATE(2484), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3111), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7448), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(3080), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3080), - [sym_typeof_expression] = STATE(3080), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2484), - [sym_literal] = STATE(3080), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(5893), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2361), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(5369), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3673), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3102), + [sym_postfix_unary_expression] = STATE(3079), + [sym_prefix_unary_expression] = STATE(3079), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6159), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3102), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3079), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3102), + [sym_member_access_expression] = STATE(2472), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3079), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7363), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(3102), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3102), + [sym_typeof_expression] = STATE(3102), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2472), + [sym_literal] = STATE(3102), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(1238), [sym_preproc_endregion] = STATE(1238), [sym_preproc_line] = STATE(1238), @@ -251081,47 +250967,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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1481), - [anon_sym_LPAREN] = ACTIONS(2159), - [anon_sym_ref] = ACTIONS(2161), - [anon_sym_LBRACE] = ACTIONS(1487), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1479), + [anon_sym_LPAREN] = ACTIONS(2237), + [anon_sym_ref] = ACTIONS(2239), + [anon_sym_LBRACE] = ACTIONS(1481), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(2163), + [anon_sym_new] = ACTIONS(2241), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1067), - [anon_sym_BANG] = ACTIONS(2167), - [anon_sym_TILDE] = ACTIONS(2167), - [anon_sym_PLUS_PLUS] = ACTIONS(2167), - [anon_sym_DASH_DASH] = ACTIONS(2167), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(2245), + [anon_sym_TILDE] = ACTIONS(2245), + [anon_sym_PLUS_PLUS] = ACTIONS(2245), + [anon_sym_DASH_DASH] = ACTIONS(2245), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [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_PLUS] = ACTIONS(2243), + [anon_sym_DASH] = ACTIONS(2243), + [anon_sym_STAR] = ACTIONS(2247), + [anon_sym_CARET] = ACTIONS(2245), + [anon_sym_AMP] = ACTIONS(2245), [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(1067), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(2171), + [anon_sym_throw] = ACTIONS(2249), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2173), - [anon_sym_DOT_DOT] = ACTIONS(2175), + [anon_sym_await] = ACTIONS(2251), + [anon_sym_DOT_DOT] = ACTIONS(2253), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -251146,7 +251032,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(1089), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -251163,84 +251049,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [1239] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(5891), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2372), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(5399), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3653), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3080), - [sym_postfix_unary_expression] = STATE(3111), - [sym_prefix_unary_expression] = STATE(3111), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6158), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3080), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3111), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3080), - [sym_member_access_expression] = STATE(2484), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3111), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7448), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(3080), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3080), - [sym_typeof_expression] = STATE(3080), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2484), - [sym_literal] = STATE(3080), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2901), + [sym__name] = STATE(5883), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2359), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(4048), + [sym_non_lvalue_expression] = STATE(3685), + [sym_lvalue_expression] = STATE(3073), + [sym__expression_statement_expression] = STATE(3836), + [sym_assignment_expression] = STATE(3689), + [sym_binary_expression] = STATE(3836), + [sym_postfix_unary_expression] = STATE(3689), + [sym_prefix_unary_expression] = STATE(3689), + [sym__pointer_indirection_expression] = STATE(2906), + [sym_query_expression] = STATE(3836), + [sym_from_clause] = STATE(6157), + [sym_conditional_expression] = STATE(3836), + [sym_conditional_access_expression] = STATE(3836), + [sym_as_expression] = STATE(3836), + [sym_is_expression] = STATE(3836), + [sym_is_pattern_expression] = STATE(3836), + [sym_cast_expression] = STATE(3836), + [sym_checked_expression] = STATE(3836), + [sym_invocation_expression] = STATE(3689), + [sym_switch_expression] = STATE(3836), + [sym_await_expression] = STATE(3689), + [sym_throw_expression] = STATE(3836), + [sym_element_access_expression] = STATE(2906), + [sym_interpolated_string_expression] = STATE(3836), + [sym_member_access_expression] = STATE(2906), + [sym_object_creation_expression] = STATE(3689), + [sym_parenthesized_expression] = STATE(3689), + [sym__parenthesized_lvalue_expression] = STATE(2906), + [sym_lambda_expression] = STATE(3836), + [sym__lambda_expression_init] = STATE(7460), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3836), + [sym_anonymous_method_expression] = STATE(3836), + [sym_anonymous_object_creation_expression] = STATE(3836), + [sym_implicit_array_creation_expression] = STATE(3836), + [sym_implicit_object_creation_expression] = STATE(3836), + [sym_implicit_stackalloc_expression] = STATE(3836), + [sym_initializer_expression] = STATE(3836), + [sym_default_expression] = STATE(3836), + [sym_with_expression] = STATE(3836), + [sym_sizeof_expression] = STATE(3836), + [sym_typeof_expression] = STATE(3836), + [sym_makeref_expression] = STATE(3836), + [sym_ref_expression] = STATE(3836), + [sym_reftype_expression] = STATE(3836), + [sym_refvalue_expression] = STATE(3836), + [sym_stackalloc_expression] = STATE(3836), + [sym_range_expression] = STATE(3836), + [sym_tuple_expression] = STATE(2906), + [sym_literal] = STATE(3836), + [sym_character_literal] = STATE(3843), + [sym_string_literal] = STATE(3843), + [sym_raw_string_literal] = STATE(3843), + [sym_boolean_literal] = STATE(3843), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3836), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(1239), [sym_preproc_endregion] = STATE(1239), [sym_preproc_line] = STATE(1239), @@ -251250,47 +251136,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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3477), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1481), - [anon_sym_LPAREN] = ACTIONS(2159), - [anon_sym_ref] = ACTIONS(2161), - [anon_sym_LBRACE] = ACTIONS(1487), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1655), + [anon_sym_LPAREN] = ACTIONS(2061), + [anon_sym_ref] = ACTIONS(2063), + [anon_sym_LBRACE] = ACTIONS(1661), + [anon_sym_delegate] = ACTIONS(1663), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(2163), + [anon_sym_new] = ACTIONS(1665), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1067), - [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(77), - [anon_sym_false] = ACTIONS(77), - [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(83), + [anon_sym_checked] = ACTIONS(1667), + [anon_sym_BANG] = ACTIONS(2067), + [anon_sym_TILDE] = ACTIONS(2067), + [anon_sym_PLUS_PLUS] = ACTIONS(2067), + [anon_sym_DASH_DASH] = ACTIONS(2067), + [anon_sym_true] = ACTIONS(1673), + [anon_sym_false] = ACTIONS(1673), + [anon_sym_PLUS] = ACTIONS(2065), + [anon_sym_DASH] = ACTIONS(2065), + [anon_sym_STAR] = ACTIONS(1675), + [anon_sym_CARET] = ACTIONS(2067), + [anon_sym_AMP] = ACTIONS(2067), + [anon_sym_this] = ACTIONS(1677), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), + [anon_sym_base] = ACTIONS(1679), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1067), + [sym_predefined_type] = ACTIONS(1681), + [anon_sym_unchecked] = ACTIONS(1667), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(2171), + [anon_sym_default] = ACTIONS(1683), + [anon_sym_throw] = ACTIONS(2069), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2173), - [anon_sym_DOT_DOT] = ACTIONS(2175), + [anon_sym_await] = ACTIONS(2071), + [anon_sym_DOT_DOT] = ACTIONS(2073), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -251303,19 +251189,19 @@ static const uint16_t ts_parse_table[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(1089), + [anon_sym_stackalloc] = ACTIONS(1691), + [anon_sym_sizeof] = ACTIONS(1693), + [anon_sym_typeof] = ACTIONS(1695), + [anon_sym___makeref] = ACTIONS(1697), + [anon_sym___reftype] = ACTIONS(1699), + [anon_sym___refvalue] = ACTIONS(1701), + [sym_null_literal] = ACTIONS(1703), + [anon_sym_SQUOTE] = ACTIONS(1705), + [sym_integer_literal] = ACTIONS(1703), + [sym_real_literal] = ACTIONS(1707), + [anon_sym_DQUOTE] = ACTIONS(1709), + [sym_verbatim_string_literal] = ACTIONS(1707), + [aux_sym_preproc_if_token1] = ACTIONS(1711), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -251326,90 +251212,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(151), - [sym_interpolation_verbatim_start] = ACTIONS(153), - [sym_interpolation_raw_start] = ACTIONS(155), - [sym_raw_string_start] = ACTIONS(157), + [sym_interpolation_regular_start] = ACTIONS(1713), + [sym_interpolation_verbatim_start] = ACTIONS(1715), + [sym_interpolation_raw_start] = ACTIONS(1717), + [sym_raw_string_start] = ACTIONS(1719), }, [1240] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(5891), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2372), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(5401), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3653), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3080), - [sym_postfix_unary_expression] = STATE(3111), - [sym_prefix_unary_expression] = STATE(3111), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6158), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3080), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3111), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3080), - [sym_member_access_expression] = STATE(2484), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3111), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7448), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(3080), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3080), - [sym_typeof_expression] = STATE(3080), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2484), - [sym_literal] = STATE(3080), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(5893), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2361), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(5371), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3673), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3102), + [sym_postfix_unary_expression] = STATE(3079), + [sym_prefix_unary_expression] = STATE(3079), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6159), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3102), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3079), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3102), + [sym_member_access_expression] = STATE(2472), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3079), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7363), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(3102), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3102), + [sym_typeof_expression] = STATE(3102), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2472), + [sym_literal] = STATE(3102), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(1240), [sym_preproc_endregion] = STATE(1240), [sym_preproc_line] = STATE(1240), @@ -251419,47 +251305,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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1481), - [anon_sym_LPAREN] = ACTIONS(2159), - [anon_sym_ref] = ACTIONS(2161), - [anon_sym_LBRACE] = ACTIONS(1487), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1479), + [anon_sym_LPAREN] = ACTIONS(2237), + [anon_sym_ref] = ACTIONS(2239), + [anon_sym_LBRACE] = ACTIONS(1481), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(2163), + [anon_sym_new] = ACTIONS(2241), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1067), - [anon_sym_BANG] = ACTIONS(2167), - [anon_sym_TILDE] = ACTIONS(2167), - [anon_sym_PLUS_PLUS] = ACTIONS(2167), - [anon_sym_DASH_DASH] = ACTIONS(2167), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(2245), + [anon_sym_TILDE] = ACTIONS(2245), + [anon_sym_PLUS_PLUS] = ACTIONS(2245), + [anon_sym_DASH_DASH] = ACTIONS(2245), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [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_PLUS] = ACTIONS(2243), + [anon_sym_DASH] = ACTIONS(2243), + [anon_sym_STAR] = ACTIONS(2247), + [anon_sym_CARET] = ACTIONS(2245), + [anon_sym_AMP] = ACTIONS(2245), [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(1067), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(2171), + [anon_sym_throw] = ACTIONS(2249), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2173), - [anon_sym_DOT_DOT] = ACTIONS(2175), + [anon_sym_await] = ACTIONS(2251), + [anon_sym_DOT_DOT] = ACTIONS(2253), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -251484,7 +251370,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(1089), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -251501,84 +251387,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [1241] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(5891), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2372), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(5402), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3653), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3080), - [sym_postfix_unary_expression] = STATE(3111), - [sym_prefix_unary_expression] = STATE(3111), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6158), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3080), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3111), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3080), - [sym_member_access_expression] = STATE(2484), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3111), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7448), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(3080), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3080), - [sym_typeof_expression] = STATE(3080), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2484), - [sym_literal] = STATE(3080), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(5893), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2361), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(5372), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3673), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3102), + [sym_postfix_unary_expression] = STATE(3079), + [sym_prefix_unary_expression] = STATE(3079), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6159), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3102), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3079), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3102), + [sym_member_access_expression] = STATE(2472), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3079), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7363), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(3102), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3102), + [sym_typeof_expression] = STATE(3102), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2472), + [sym_literal] = STATE(3102), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(1241), [sym_preproc_endregion] = STATE(1241), [sym_preproc_line] = STATE(1241), @@ -251588,47 +251474,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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1481), - [anon_sym_LPAREN] = ACTIONS(2159), - [anon_sym_ref] = ACTIONS(2161), - [anon_sym_LBRACE] = ACTIONS(1487), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1479), + [anon_sym_LPAREN] = ACTIONS(2237), + [anon_sym_ref] = ACTIONS(2239), + [anon_sym_LBRACE] = ACTIONS(1481), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(2163), + [anon_sym_new] = ACTIONS(2241), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1067), - [anon_sym_BANG] = ACTIONS(2167), - [anon_sym_TILDE] = ACTIONS(2167), - [anon_sym_PLUS_PLUS] = ACTIONS(2167), - [anon_sym_DASH_DASH] = ACTIONS(2167), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(2245), + [anon_sym_TILDE] = ACTIONS(2245), + [anon_sym_PLUS_PLUS] = ACTIONS(2245), + [anon_sym_DASH_DASH] = ACTIONS(2245), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [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_PLUS] = ACTIONS(2243), + [anon_sym_DASH] = ACTIONS(2243), + [anon_sym_STAR] = ACTIONS(2247), + [anon_sym_CARET] = ACTIONS(2245), + [anon_sym_AMP] = ACTIONS(2245), [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(1067), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(2171), + [anon_sym_throw] = ACTIONS(2249), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2173), - [anon_sym_DOT_DOT] = ACTIONS(2175), + [anon_sym_await] = ACTIONS(2251), + [anon_sym_DOT_DOT] = ACTIONS(2253), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -251653,7 +251539,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(1089), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -251670,84 +251556,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [1242] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(5891), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2372), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(5356), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3653), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3080), - [sym_postfix_unary_expression] = STATE(3111), - [sym_prefix_unary_expression] = STATE(3111), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6158), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3080), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3111), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3080), - [sym_member_access_expression] = STATE(2484), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3111), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7448), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(3080), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3080), - [sym_typeof_expression] = STATE(3080), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2484), - [sym_literal] = STATE(3080), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(5893), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2361), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(5373), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3673), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3102), + [sym_postfix_unary_expression] = STATE(3079), + [sym_prefix_unary_expression] = STATE(3079), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6159), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3102), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3079), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3102), + [sym_member_access_expression] = STATE(2472), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3079), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7363), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(3102), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3102), + [sym_typeof_expression] = STATE(3102), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2472), + [sym_literal] = STATE(3102), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(1242), [sym_preproc_endregion] = STATE(1242), [sym_preproc_line] = STATE(1242), @@ -251757,47 +251643,47 @@ 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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1481), - [anon_sym_LPAREN] = ACTIONS(2159), - [anon_sym_ref] = ACTIONS(2161), - [anon_sym_LBRACE] = ACTIONS(1487), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1479), + [anon_sym_LPAREN] = ACTIONS(2237), + [anon_sym_ref] = ACTIONS(2239), + [anon_sym_LBRACE] = ACTIONS(1481), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(2163), + [anon_sym_new] = ACTIONS(2241), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1067), - [anon_sym_BANG] = ACTIONS(2167), - [anon_sym_TILDE] = ACTIONS(2167), - [anon_sym_PLUS_PLUS] = ACTIONS(2167), - [anon_sym_DASH_DASH] = ACTIONS(2167), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(2245), + [anon_sym_TILDE] = ACTIONS(2245), + [anon_sym_PLUS_PLUS] = ACTIONS(2245), + [anon_sym_DASH_DASH] = ACTIONS(2245), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [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_PLUS] = ACTIONS(2243), + [anon_sym_DASH] = ACTIONS(2243), + [anon_sym_STAR] = ACTIONS(2247), + [anon_sym_CARET] = ACTIONS(2245), + [anon_sym_AMP] = ACTIONS(2245), [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(1067), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(2171), + [anon_sym_throw] = ACTIONS(2249), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2173), - [anon_sym_DOT_DOT] = ACTIONS(2175), + [anon_sym_await] = ACTIONS(2251), + [anon_sym_DOT_DOT] = ACTIONS(2253), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -251822,7 +251708,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(1089), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -251839,84 +251725,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [1243] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2610), - [sym__name] = STATE(5879), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2197), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(4228), - [sym_non_lvalue_expression] = STATE(3277), - [sym_lvalue_expression] = STATE(3134), - [sym__expression_statement_expression] = STATE(3228), - [sym_assignment_expression] = STATE(3289), - [sym_binary_expression] = STATE(3228), - [sym_postfix_unary_expression] = STATE(3289), - [sym_prefix_unary_expression] = STATE(3289), - [sym__pointer_indirection_expression] = STATE(2609), - [sym_query_expression] = STATE(3228), - [sym_from_clause] = STATE(6162), - [sym_conditional_expression] = STATE(3228), - [sym_conditional_access_expression] = STATE(3228), - [sym_as_expression] = STATE(3228), - [sym_is_expression] = STATE(3228), - [sym_is_pattern_expression] = STATE(3228), - [sym_cast_expression] = STATE(3228), - [sym_checked_expression] = STATE(3228), - [sym_invocation_expression] = STATE(3289), - [sym_switch_expression] = STATE(3228), - [sym_await_expression] = STATE(3289), - [sym_throw_expression] = STATE(3228), - [sym_element_access_expression] = STATE(2609), - [sym_interpolated_string_expression] = STATE(3228), - [sym_member_access_expression] = STATE(2609), - [sym_object_creation_expression] = STATE(3289), - [sym_parenthesized_expression] = STATE(3289), - [sym__parenthesized_lvalue_expression] = STATE(2609), - [sym_lambda_expression] = STATE(3228), - [sym__lambda_expression_init] = STATE(7695), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3228), - [sym_anonymous_method_expression] = STATE(3228), - [sym_anonymous_object_creation_expression] = STATE(3228), - [sym_implicit_array_creation_expression] = STATE(3228), - [sym_implicit_object_creation_expression] = STATE(3228), - [sym_implicit_stackalloc_expression] = STATE(3228), - [sym_initializer_expression] = STATE(3228), - [sym_default_expression] = STATE(3228), - [sym_with_expression] = STATE(3228), - [sym_sizeof_expression] = STATE(3228), - [sym_typeof_expression] = STATE(3228), - [sym_makeref_expression] = STATE(3228), - [sym_ref_expression] = STATE(3228), - [sym_reftype_expression] = STATE(3228), - [sym_refvalue_expression] = STATE(3228), - [sym_stackalloc_expression] = STATE(3228), - [sym_range_expression] = STATE(3228), - [sym_tuple_expression] = STATE(2609), - [sym_literal] = STATE(3228), - [sym_character_literal] = STATE(3278), - [sym_string_literal] = STATE(3278), - [sym_raw_string_literal] = STATE(3278), - [sym_boolean_literal] = STATE(3278), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3228), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(5893), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2361), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(5375), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3673), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3102), + [sym_postfix_unary_expression] = STATE(3079), + [sym_prefix_unary_expression] = STATE(3079), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6159), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3102), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3079), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3102), + [sym_member_access_expression] = STATE(2472), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3079), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7363), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(3102), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3102), + [sym_typeof_expression] = STATE(3102), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2472), + [sym_literal] = STATE(3102), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(1243), [sym_preproc_endregion] = STATE(1243), [sym_preproc_line] = STATE(1243), @@ -251926,47 +251812,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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3396), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1153), - [anon_sym_LPAREN] = ACTIONS(1371), - [anon_sym_ref] = ACTIONS(1373), - [anon_sym_LBRACE] = ACTIONS(1159), - [anon_sym_delegate] = ACTIONS(1161), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1479), + [anon_sym_LPAREN] = ACTIONS(2237), + [anon_sym_ref] = ACTIONS(2239), + [anon_sym_LBRACE] = ACTIONS(1481), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1163), + [anon_sym_new] = ACTIONS(2241), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1167), - [anon_sym_BANG] = ACTIONS(1377), - [anon_sym_TILDE] = ACTIONS(1377), - [anon_sym_PLUS_PLUS] = ACTIONS(1377), - [anon_sym_DASH_DASH] = ACTIONS(1377), - [anon_sym_true] = ACTIONS(1173), - [anon_sym_false] = ACTIONS(1173), - [anon_sym_PLUS] = ACTIONS(1375), - [anon_sym_DASH] = ACTIONS(1375), - [anon_sym_STAR] = ACTIONS(1379), - [anon_sym_CARET] = ACTIONS(1377), - [anon_sym_AMP] = ACTIONS(1377), - [anon_sym_this] = ACTIONS(1177), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(2245), + [anon_sym_TILDE] = ACTIONS(2245), + [anon_sym_PLUS_PLUS] = ACTIONS(2245), + [anon_sym_DASH_DASH] = ACTIONS(2245), + [anon_sym_true] = ACTIONS(77), + [anon_sym_false] = ACTIONS(77), + [anon_sym_PLUS] = ACTIONS(2243), + [anon_sym_DASH] = ACTIONS(2243), + [anon_sym_STAR] = ACTIONS(2247), + [anon_sym_CARET] = ACTIONS(2245), + [anon_sym_AMP] = ACTIONS(2245), + [anon_sym_this] = ACTIONS(83), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1179), + [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1181), - [anon_sym_unchecked] = ACTIONS(1167), + [sym_predefined_type] = ACTIONS(91), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1183), - [anon_sym_throw] = ACTIONS(1381), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(2249), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1383), - [anon_sym_DOT_DOT] = ACTIONS(1385), + [anon_sym_await] = ACTIONS(2251), + [anon_sym_DOT_DOT] = ACTIONS(2253), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -251979,19 +251865,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1191), - [anon_sym_sizeof] = ACTIONS(1193), - [anon_sym_typeof] = ACTIONS(1195), - [anon_sym___makeref] = ACTIONS(1197), - [anon_sym___reftype] = ACTIONS(1199), - [anon_sym___refvalue] = ACTIONS(1201), - [sym_null_literal] = ACTIONS(1203), - [anon_sym_SQUOTE] = ACTIONS(1205), - [sym_integer_literal] = ACTIONS(1203), - [sym_real_literal] = ACTIONS(1207), - [anon_sym_DQUOTE] = ACTIONS(1209), - [sym_verbatim_string_literal] = ACTIONS(1207), - [aux_sym_preproc_if_token1] = ACTIONS(1211), + [anon_sym_stackalloc] = ACTIONS(127), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_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), @@ -252002,90 +251888,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1213), - [sym_interpolation_verbatim_start] = ACTIONS(1215), - [sym_interpolation_raw_start] = ACTIONS(1217), - [sym_raw_string_start] = ACTIONS(1219), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [sym_interpolation_raw_start] = ACTIONS(155), + [sym_raw_string_start] = ACTIONS(157), }, [1244] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(5907), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2404), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(4255), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3140), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3080), - [sym_postfix_unary_expression] = STATE(3111), - [sym_prefix_unary_expression] = STATE(3111), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6183), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3080), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3111), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3080), - [sym_member_access_expression] = STATE(2484), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3111), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7703), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(3080), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3080), - [sym_typeof_expression] = STATE(3080), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2484), - [sym_literal] = STATE(3080), - [sym_character_literal] = STATE(3011), - [sym_string_literal] = STATE(3011), - [sym_raw_string_literal] = STATE(3011), - [sym_boolean_literal] = STATE(3011), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(5893), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2361), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(5376), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3673), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3102), + [sym_postfix_unary_expression] = STATE(3079), + [sym_prefix_unary_expression] = STATE(3079), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6159), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3102), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3079), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3102), + [sym_member_access_expression] = STATE(2472), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3079), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7363), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(3102), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3102), + [sym_typeof_expression] = STATE(3102), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2472), + [sym_literal] = STATE(3102), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(1244), [sym_preproc_endregion] = STATE(1244), [sym_preproc_line] = STATE(1244), @@ -252095,47 +251981,47 @@ 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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1481), - [anon_sym_LPAREN] = ACTIONS(2251), - [anon_sym_ref] = ACTIONS(2253), - [anon_sym_LBRACE] = ACTIONS(1487), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1479), + [anon_sym_LPAREN] = ACTIONS(2237), + [anon_sym_ref] = ACTIONS(2239), + [anon_sym_LBRACE] = ACTIONS(1481), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1937), + [anon_sym_new] = ACTIONS(2241), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1067), - [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(1259), - [anon_sym_false] = ACTIONS(1259), - [anon_sym_PLUS] = ACTIONS(2255), - [anon_sym_DASH] = ACTIONS(2255), - [anon_sym_STAR] = ACTIONS(1943), - [anon_sym_CARET] = ACTIONS(2257), - [anon_sym_AMP] = ACTIONS(2257), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(2245), + [anon_sym_TILDE] = ACTIONS(2245), + [anon_sym_PLUS_PLUS] = ACTIONS(2245), + [anon_sym_DASH_DASH] = ACTIONS(2245), + [anon_sym_true] = ACTIONS(77), + [anon_sym_false] = ACTIONS(77), + [anon_sym_PLUS] = ACTIONS(2243), + [anon_sym_DASH] = ACTIONS(2243), + [anon_sym_STAR] = ACTIONS(2247), + [anon_sym_CARET] = ACTIONS(2245), + [anon_sym_AMP] = ACTIONS(2245), [anon_sym_this] = ACTIONS(83), [anon_sym_scoped] = ACTIONS(85), [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1267), - [anon_sym_unchecked] = ACTIONS(1067), + [sym_predefined_type] = ACTIONS(91), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1269), - [anon_sym_throw] = ACTIONS(2259), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(2249), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2261), - [anon_sym_DOT_DOT] = ACTIONS(2263), + [anon_sym_await] = ACTIONS(2251), + [anon_sym_DOT_DOT] = ACTIONS(2253), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -252149,18 +252035,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(1279), - [anon_sym_typeof] = ACTIONS(1281), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), [anon_sym___makeref] = ACTIONS(133), [anon_sym___reftype] = ACTIONS(135), [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(1289), - [anon_sym_SQUOTE] = ACTIONS(1291), - [sym_integer_literal] = ACTIONS(1289), - [sym_real_literal] = ACTIONS(1293), - [anon_sym_DQUOTE] = ACTIONS(1295), - [sym_verbatim_string_literal] = ACTIONS(1293), - [aux_sym_preproc_if_token1] = ACTIONS(1089), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_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), @@ -252171,90 +252057,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1299), - [sym_interpolation_verbatim_start] = ACTIONS(1301), - [sym_interpolation_raw_start] = ACTIONS(1303), - [sym_raw_string_start] = ACTIONS(1305), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [sym_interpolation_raw_start] = ACTIONS(155), + [sym_raw_string_start] = ACTIONS(157), }, [1245] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(5891), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2372), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(3519), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3653), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3080), - [sym_postfix_unary_expression] = STATE(3111), - [sym_prefix_unary_expression] = STATE(3111), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6158), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3080), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3111), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3080), - [sym_member_access_expression] = STATE(2484), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3111), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7448), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(3080), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3080), - [sym_typeof_expression] = STATE(3080), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2484), - [sym_literal] = STATE(3080), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(5893), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2361), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(5378), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3673), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3102), + [sym_postfix_unary_expression] = STATE(3079), + [sym_prefix_unary_expression] = STATE(3079), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6159), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3102), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3079), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3102), + [sym_member_access_expression] = STATE(2472), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3079), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7363), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(3102), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3102), + [sym_typeof_expression] = STATE(3102), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2472), + [sym_literal] = STATE(3102), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(1245), [sym_preproc_endregion] = STATE(1245), [sym_preproc_line] = STATE(1245), @@ -252264,47 +252150,47 @@ 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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1481), - [anon_sym_LPAREN] = ACTIONS(2159), - [anon_sym_ref] = ACTIONS(2161), - [anon_sym_LBRACE] = ACTIONS(1487), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1479), + [anon_sym_LPAREN] = ACTIONS(2237), + [anon_sym_ref] = ACTIONS(2239), + [anon_sym_LBRACE] = ACTIONS(1481), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(2163), + [anon_sym_new] = ACTIONS(2241), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1067), - [anon_sym_BANG] = ACTIONS(2167), - [anon_sym_TILDE] = ACTIONS(2167), - [anon_sym_PLUS_PLUS] = ACTIONS(2167), - [anon_sym_DASH_DASH] = ACTIONS(2167), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(2245), + [anon_sym_TILDE] = ACTIONS(2245), + [anon_sym_PLUS_PLUS] = ACTIONS(2245), + [anon_sym_DASH_DASH] = ACTIONS(2245), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [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_PLUS] = ACTIONS(2243), + [anon_sym_DASH] = ACTIONS(2243), + [anon_sym_STAR] = ACTIONS(2247), + [anon_sym_CARET] = ACTIONS(2245), + [anon_sym_AMP] = ACTIONS(2245), [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(1067), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(2171), + [anon_sym_throw] = ACTIONS(2249), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2173), - [anon_sym_DOT_DOT] = ACTIONS(2175), + [anon_sym_await] = ACTIONS(2251), + [anon_sym_DOT_DOT] = ACTIONS(2253), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -252329,7 +252215,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(1089), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -252346,84 +252232,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [1246] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2762), - [sym__name] = STATE(5891), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2372), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(5002), - [sym_non_lvalue_expression] = STATE(3438), - [sym_lvalue_expression] = STATE(3530), - [sym__expression_statement_expression] = STATE(3362), - [sym_assignment_expression] = STATE(3449), - [sym_binary_expression] = STATE(3362), - [sym_postfix_unary_expression] = STATE(3449), - [sym_prefix_unary_expression] = STATE(3449), - [sym__pointer_indirection_expression] = STATE(2747), - [sym_query_expression] = STATE(3362), - [sym_from_clause] = STATE(6167), - [sym_conditional_expression] = STATE(3362), - [sym_conditional_access_expression] = STATE(3362), - [sym_as_expression] = STATE(3362), - [sym_is_expression] = STATE(3362), - [sym_is_pattern_expression] = STATE(3362), - [sym_cast_expression] = STATE(3362), - [sym_checked_expression] = STATE(3362), - [sym_invocation_expression] = STATE(3449), - [sym_switch_expression] = STATE(3362), - [sym_await_expression] = STATE(3449), - [sym_throw_expression] = STATE(3362), - [sym_element_access_expression] = STATE(2747), - [sym_interpolated_string_expression] = STATE(3362), - [sym_member_access_expression] = STATE(2747), - [sym_object_creation_expression] = STATE(3449), - [sym_parenthesized_expression] = STATE(3449), - [sym__parenthesized_lvalue_expression] = STATE(2747), - [sym_lambda_expression] = STATE(3362), - [sym__lambda_expression_init] = STATE(7468), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3362), - [sym_anonymous_method_expression] = STATE(3362), - [sym_anonymous_object_creation_expression] = STATE(3362), - [sym_implicit_array_creation_expression] = STATE(3362), - [sym_implicit_object_creation_expression] = STATE(3362), - [sym_implicit_stackalloc_expression] = STATE(3362), - [sym_initializer_expression] = STATE(3362), - [sym_default_expression] = STATE(3362), - [sym_with_expression] = STATE(3362), - [sym_sizeof_expression] = STATE(3362), - [sym_typeof_expression] = STATE(3362), - [sym_makeref_expression] = STATE(3362), - [sym_ref_expression] = STATE(3362), - [sym_reftype_expression] = STATE(3362), - [sym_refvalue_expression] = STATE(3362), - [sym_stackalloc_expression] = STATE(3362), - [sym_range_expression] = STATE(3362), - [sym_tuple_expression] = STATE(2747), - [sym_literal] = STATE(3362), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3362), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(5893), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2361), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(5379), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3673), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3102), + [sym_postfix_unary_expression] = STATE(3079), + [sym_prefix_unary_expression] = STATE(3079), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6159), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3102), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3079), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3102), + [sym_member_access_expression] = STATE(2472), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3079), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7363), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(3102), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3102), + [sym_typeof_expression] = STATE(3102), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2472), + [sym_literal] = STATE(3102), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(1246), [sym_preproc_endregion] = STATE(1246), [sym_preproc_line] = STATE(1246), @@ -252433,47 +252319,47 @@ 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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3385), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1307), - [anon_sym_LPAREN] = ACTIONS(1895), - [anon_sym_ref] = ACTIONS(1897), - [anon_sym_LBRACE] = ACTIONS(1313), - [anon_sym_delegate] = ACTIONS(1315), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1479), + [anon_sym_LPAREN] = ACTIONS(2237), + [anon_sym_ref] = ACTIONS(2239), + [anon_sym_LBRACE] = ACTIONS(1481), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1899), + [anon_sym_new] = ACTIONS(2241), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1319), - [anon_sym_BANG] = ACTIONS(1903), - [anon_sym_TILDE] = ACTIONS(1903), - [anon_sym_PLUS_PLUS] = ACTIONS(1903), - [anon_sym_DASH_DASH] = ACTIONS(1903), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(2245), + [anon_sym_TILDE] = ACTIONS(2245), + [anon_sym_PLUS_PLUS] = ACTIONS(2245), + [anon_sym_DASH_DASH] = ACTIONS(2245), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1901), - [anon_sym_DASH] = ACTIONS(1901), - [anon_sym_STAR] = ACTIONS(1905), - [anon_sym_CARET] = ACTIONS(1903), - [anon_sym_AMP] = ACTIONS(1903), - [anon_sym_this] = ACTIONS(1323), + [anon_sym_PLUS] = ACTIONS(2243), + [anon_sym_DASH] = ACTIONS(2243), + [anon_sym_STAR] = ACTIONS(2247), + [anon_sym_CARET] = ACTIONS(2245), + [anon_sym_AMP] = ACTIONS(2245), + [anon_sym_this] = ACTIONS(83), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1325), + [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1319), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1907), + [anon_sym_throw] = ACTIONS(2249), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1909), - [anon_sym_DOT_DOT] = ACTIONS(1911), + [anon_sym_await] = ACTIONS(2251), + [anon_sym_DOT_DOT] = ACTIONS(2253), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -252486,19 +252372,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1333), + [anon_sym_stackalloc] = ACTIONS(127), [anon_sym_sizeof] = ACTIONS(129), [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(1335), - [anon_sym___reftype] = ACTIONS(1337), - [anon_sym___refvalue] = ACTIONS(1339), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), [sym_null_literal] = ACTIONS(139), [anon_sym_SQUOTE] = ACTIONS(141), [sym_integer_literal] = ACTIONS(139), [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1341), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -252515,84 +252401,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [1247] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(5891), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2372), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(5408), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3653), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3080), - [sym_postfix_unary_expression] = STATE(3111), - [sym_prefix_unary_expression] = STATE(3111), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6158), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3080), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3111), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3080), - [sym_member_access_expression] = STATE(2484), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3111), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7448), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(3080), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3080), - [sym_typeof_expression] = STATE(3080), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2484), - [sym_literal] = STATE(3080), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2901), + [sym__name] = STATE(5883), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2359), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(3560), + [sym_non_lvalue_expression] = STATE(3685), + [sym_lvalue_expression] = STATE(3073), + [sym__expression_statement_expression] = STATE(3836), + [sym_assignment_expression] = STATE(3689), + [sym_binary_expression] = STATE(3836), + [sym_postfix_unary_expression] = STATE(3689), + [sym_prefix_unary_expression] = STATE(3689), + [sym__pointer_indirection_expression] = STATE(2906), + [sym_query_expression] = STATE(3836), + [sym_from_clause] = STATE(6157), + [sym_conditional_expression] = STATE(3836), + [sym_conditional_access_expression] = STATE(3836), + [sym_as_expression] = STATE(3836), + [sym_is_expression] = STATE(3836), + [sym_is_pattern_expression] = STATE(3836), + [sym_cast_expression] = STATE(3836), + [sym_checked_expression] = STATE(3836), + [sym_invocation_expression] = STATE(3689), + [sym_switch_expression] = STATE(3836), + [sym_await_expression] = STATE(3689), + [sym_throw_expression] = STATE(3836), + [sym_element_access_expression] = STATE(2906), + [sym_interpolated_string_expression] = STATE(3836), + [sym_member_access_expression] = STATE(2906), + [sym_object_creation_expression] = STATE(3689), + [sym_parenthesized_expression] = STATE(3689), + [sym__parenthesized_lvalue_expression] = STATE(2906), + [sym_lambda_expression] = STATE(3836), + [sym__lambda_expression_init] = STATE(7460), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3836), + [sym_anonymous_method_expression] = STATE(3836), + [sym_anonymous_object_creation_expression] = STATE(3836), + [sym_implicit_array_creation_expression] = STATE(3836), + [sym_implicit_object_creation_expression] = STATE(3836), + [sym_implicit_stackalloc_expression] = STATE(3836), + [sym_initializer_expression] = STATE(3836), + [sym_default_expression] = STATE(3836), + [sym_with_expression] = STATE(3836), + [sym_sizeof_expression] = STATE(3836), + [sym_typeof_expression] = STATE(3836), + [sym_makeref_expression] = STATE(3836), + [sym_ref_expression] = STATE(3836), + [sym_reftype_expression] = STATE(3836), + [sym_refvalue_expression] = STATE(3836), + [sym_stackalloc_expression] = STATE(3836), + [sym_range_expression] = STATE(3836), + [sym_tuple_expression] = STATE(2906), + [sym_literal] = STATE(3836), + [sym_character_literal] = STATE(3843), + [sym_string_literal] = STATE(3843), + [sym_raw_string_literal] = STATE(3843), + [sym_boolean_literal] = STATE(3843), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3836), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(1247), [sym_preproc_endregion] = STATE(1247), [sym_preproc_line] = STATE(1247), @@ -252602,47 +252488,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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3477), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1481), - [anon_sym_LPAREN] = ACTIONS(2159), - [anon_sym_ref] = ACTIONS(2161), - [anon_sym_LBRACE] = ACTIONS(1487), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1655), + [anon_sym_LPAREN] = ACTIONS(2061), + [anon_sym_ref] = ACTIONS(2063), + [anon_sym_LBRACE] = ACTIONS(1661), + [anon_sym_delegate] = ACTIONS(1663), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(2163), + [anon_sym_new] = ACTIONS(1665), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1067), - [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(77), - [anon_sym_false] = ACTIONS(77), - [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(83), + [anon_sym_checked] = ACTIONS(1667), + [anon_sym_BANG] = ACTIONS(2067), + [anon_sym_TILDE] = ACTIONS(2067), + [anon_sym_PLUS_PLUS] = ACTIONS(2067), + [anon_sym_DASH_DASH] = ACTIONS(2067), + [anon_sym_true] = ACTIONS(1673), + [anon_sym_false] = ACTIONS(1673), + [anon_sym_PLUS] = ACTIONS(2065), + [anon_sym_DASH] = ACTIONS(2065), + [anon_sym_STAR] = ACTIONS(1675), + [anon_sym_CARET] = ACTIONS(2067), + [anon_sym_AMP] = ACTIONS(2067), + [anon_sym_this] = ACTIONS(1677), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), + [anon_sym_base] = ACTIONS(1679), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1067), + [sym_predefined_type] = ACTIONS(1681), + [anon_sym_unchecked] = ACTIONS(1667), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(2171), + [anon_sym_default] = ACTIONS(1683), + [anon_sym_throw] = ACTIONS(2069), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2173), - [anon_sym_DOT_DOT] = ACTIONS(2175), + [anon_sym_await] = ACTIONS(2071), + [anon_sym_DOT_DOT] = ACTIONS(2073), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -252655,19 +252541,19 @@ static const uint16_t ts_parse_table[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(1089), + [anon_sym_stackalloc] = ACTIONS(1691), + [anon_sym_sizeof] = ACTIONS(1693), + [anon_sym_typeof] = ACTIONS(1695), + [anon_sym___makeref] = ACTIONS(1697), + [anon_sym___reftype] = ACTIONS(1699), + [anon_sym___refvalue] = ACTIONS(1701), + [sym_null_literal] = ACTIONS(1703), + [anon_sym_SQUOTE] = ACTIONS(1705), + [sym_integer_literal] = ACTIONS(1703), + [sym_real_literal] = ACTIONS(1707), + [anon_sym_DQUOTE] = ACTIONS(1709), + [sym_verbatim_string_literal] = ACTIONS(1707), + [aux_sym_preproc_if_token1] = ACTIONS(1711), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -252678,90 +252564,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(151), - [sym_interpolation_verbatim_start] = ACTIONS(153), - [sym_interpolation_raw_start] = ACTIONS(155), - [sym_raw_string_start] = ACTIONS(157), + [sym_interpolation_regular_start] = ACTIONS(1713), + [sym_interpolation_verbatim_start] = ACTIONS(1715), + [sym_interpolation_raw_start] = ACTIONS(1717), + [sym_raw_string_start] = ACTIONS(1719), }, [1248] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2610), - [sym__name] = STATE(5879), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2197), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(4230), - [sym_non_lvalue_expression] = STATE(3277), - [sym_lvalue_expression] = STATE(3134), - [sym__expression_statement_expression] = STATE(3228), - [sym_assignment_expression] = STATE(3289), - [sym_binary_expression] = STATE(3228), - [sym_postfix_unary_expression] = STATE(3289), - [sym_prefix_unary_expression] = STATE(3289), - [sym__pointer_indirection_expression] = STATE(2609), - [sym_query_expression] = STATE(3228), - [sym_from_clause] = STATE(6162), - [sym_conditional_expression] = STATE(3228), - [sym_conditional_access_expression] = STATE(3228), - [sym_as_expression] = STATE(3228), - [sym_is_expression] = STATE(3228), - [sym_is_pattern_expression] = STATE(3228), - [sym_cast_expression] = STATE(3228), - [sym_checked_expression] = STATE(3228), - [sym_invocation_expression] = STATE(3289), - [sym_switch_expression] = STATE(3228), - [sym_await_expression] = STATE(3289), - [sym_throw_expression] = STATE(3228), - [sym_element_access_expression] = STATE(2609), - [sym_interpolated_string_expression] = STATE(3228), - [sym_member_access_expression] = STATE(2609), - [sym_object_creation_expression] = STATE(3289), - [sym_parenthesized_expression] = STATE(3289), - [sym__parenthesized_lvalue_expression] = STATE(2609), - [sym_lambda_expression] = STATE(3228), - [sym__lambda_expression_init] = STATE(7695), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3228), - [sym_anonymous_method_expression] = STATE(3228), - [sym_anonymous_object_creation_expression] = STATE(3228), - [sym_implicit_array_creation_expression] = STATE(3228), - [sym_implicit_object_creation_expression] = STATE(3228), - [sym_implicit_stackalloc_expression] = STATE(3228), - [sym_initializer_expression] = STATE(3228), - [sym_default_expression] = STATE(3228), - [sym_with_expression] = STATE(3228), - [sym_sizeof_expression] = STATE(3228), - [sym_typeof_expression] = STATE(3228), - [sym_makeref_expression] = STATE(3228), - [sym_ref_expression] = STATE(3228), - [sym_reftype_expression] = STATE(3228), - [sym_refvalue_expression] = STATE(3228), - [sym_stackalloc_expression] = STATE(3228), - [sym_range_expression] = STATE(3228), - [sym_tuple_expression] = STATE(2609), - [sym_literal] = STATE(3228), - [sym_character_literal] = STATE(3278), - [sym_string_literal] = STATE(3278), - [sym_raw_string_literal] = STATE(3278), - [sym_boolean_literal] = STATE(3278), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3228), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(5893), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2361), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(5383), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3673), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3102), + [sym_postfix_unary_expression] = STATE(3079), + [sym_prefix_unary_expression] = STATE(3079), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6159), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3102), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3079), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3102), + [sym_member_access_expression] = STATE(2472), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3079), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7363), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(3102), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3102), + [sym_typeof_expression] = STATE(3102), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2472), + [sym_literal] = STATE(3102), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(1248), [sym_preproc_endregion] = STATE(1248), [sym_preproc_line] = STATE(1248), @@ -252771,47 +252657,47 @@ 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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3396), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1153), - [anon_sym_LPAREN] = ACTIONS(1371), - [anon_sym_ref] = ACTIONS(1373), - [anon_sym_LBRACE] = ACTIONS(1159), - [anon_sym_delegate] = ACTIONS(1161), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1479), + [anon_sym_LPAREN] = ACTIONS(2237), + [anon_sym_ref] = ACTIONS(2239), + [anon_sym_LBRACE] = ACTIONS(1481), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1163), + [anon_sym_new] = ACTIONS(2241), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1167), - [anon_sym_BANG] = ACTIONS(1377), - [anon_sym_TILDE] = ACTIONS(1377), - [anon_sym_PLUS_PLUS] = ACTIONS(1377), - [anon_sym_DASH_DASH] = ACTIONS(1377), - [anon_sym_true] = ACTIONS(1173), - [anon_sym_false] = ACTIONS(1173), - [anon_sym_PLUS] = ACTIONS(1375), - [anon_sym_DASH] = ACTIONS(1375), - [anon_sym_STAR] = ACTIONS(1379), - [anon_sym_CARET] = ACTIONS(1377), - [anon_sym_AMP] = ACTIONS(1377), - [anon_sym_this] = ACTIONS(1177), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(2245), + [anon_sym_TILDE] = ACTIONS(2245), + [anon_sym_PLUS_PLUS] = ACTIONS(2245), + [anon_sym_DASH_DASH] = ACTIONS(2245), + [anon_sym_true] = ACTIONS(77), + [anon_sym_false] = ACTIONS(77), + [anon_sym_PLUS] = ACTIONS(2243), + [anon_sym_DASH] = ACTIONS(2243), + [anon_sym_STAR] = ACTIONS(2247), + [anon_sym_CARET] = ACTIONS(2245), + [anon_sym_AMP] = ACTIONS(2245), + [anon_sym_this] = ACTIONS(83), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1179), + [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1181), - [anon_sym_unchecked] = ACTIONS(1167), + [sym_predefined_type] = ACTIONS(91), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1183), - [anon_sym_throw] = ACTIONS(1381), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(2249), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1383), - [anon_sym_DOT_DOT] = ACTIONS(1385), + [anon_sym_await] = ACTIONS(2251), + [anon_sym_DOT_DOT] = ACTIONS(2253), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -252824,19 +252710,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1191), - [anon_sym_sizeof] = ACTIONS(1193), - [anon_sym_typeof] = ACTIONS(1195), - [anon_sym___makeref] = ACTIONS(1197), - [anon_sym___reftype] = ACTIONS(1199), - [anon_sym___refvalue] = ACTIONS(1201), - [sym_null_literal] = ACTIONS(1203), - [anon_sym_SQUOTE] = ACTIONS(1205), - [sym_integer_literal] = ACTIONS(1203), - [sym_real_literal] = ACTIONS(1207), - [anon_sym_DQUOTE] = ACTIONS(1209), - [sym_verbatim_string_literal] = ACTIONS(1207), - [aux_sym_preproc_if_token1] = ACTIONS(1211), + [anon_sym_stackalloc] = ACTIONS(127), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_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), @@ -252847,90 +252733,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1213), - [sym_interpolation_verbatim_start] = ACTIONS(1215), - [sym_interpolation_raw_start] = ACTIONS(1217), - [sym_raw_string_start] = ACTIONS(1219), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [sym_interpolation_raw_start] = ACTIONS(155), + [sym_raw_string_start] = ACTIONS(157), }, [1249] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2914), - [sym__name] = STATE(5885), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2357), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(3724), - [sym_non_lvalue_expression] = STATE(3880), - [sym_lvalue_expression] = STATE(2986), - [sym__expression_statement_expression] = STATE(3873), - [sym_assignment_expression] = STATE(3881), - [sym_binary_expression] = STATE(3873), - [sym_postfix_unary_expression] = STATE(3881), - [sym_prefix_unary_expression] = STATE(3881), - [sym__pointer_indirection_expression] = STATE(2913), - [sym_query_expression] = STATE(3873), - [sym_from_clause] = STATE(6168), - [sym_conditional_expression] = STATE(3873), - [sym_conditional_access_expression] = STATE(3873), - [sym_as_expression] = STATE(3873), - [sym_is_expression] = STATE(3873), - [sym_is_pattern_expression] = STATE(3873), - [sym_cast_expression] = STATE(3873), - [sym_checked_expression] = STATE(3873), - [sym_invocation_expression] = STATE(3881), - [sym_switch_expression] = STATE(3873), - [sym_await_expression] = STATE(3881), - [sym_throw_expression] = STATE(3873), - [sym_element_access_expression] = STATE(2913), - [sym_interpolated_string_expression] = STATE(3873), - [sym_member_access_expression] = STATE(2913), - [sym_object_creation_expression] = STATE(3881), - [sym_parenthesized_expression] = STATE(3881), - [sym__parenthesized_lvalue_expression] = STATE(2913), - [sym_lambda_expression] = STATE(3873), - [sym__lambda_expression_init] = STATE(7587), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3873), - [sym_anonymous_method_expression] = STATE(3873), - [sym_anonymous_object_creation_expression] = STATE(3873), - [sym_implicit_array_creation_expression] = STATE(3873), - [sym_implicit_object_creation_expression] = STATE(3873), - [sym_implicit_stackalloc_expression] = STATE(3873), - [sym_initializer_expression] = STATE(3873), - [sym_default_expression] = STATE(3873), - [sym_with_expression] = STATE(3873), - [sym_sizeof_expression] = STATE(3873), - [sym_typeof_expression] = STATE(3873), - [sym_makeref_expression] = STATE(3873), - [sym_ref_expression] = STATE(3873), - [sym_reftype_expression] = STATE(3873), - [sym_refvalue_expression] = STATE(3873), - [sym_stackalloc_expression] = STATE(3873), - [sym_range_expression] = STATE(3873), - [sym_tuple_expression] = STATE(2913), - [sym_literal] = STATE(3873), - [sym_character_literal] = STATE(3877), - [sym_string_literal] = STATE(3877), - [sym_raw_string_literal] = STATE(3877), - [sym_boolean_literal] = STATE(3877), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3873), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(5893), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2361), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(5384), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3673), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3102), + [sym_postfix_unary_expression] = STATE(3079), + [sym_prefix_unary_expression] = STATE(3079), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6159), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3102), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3079), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3102), + [sym_member_access_expression] = STATE(2472), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3079), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7363), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(3102), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3102), + [sym_typeof_expression] = STATE(3102), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2472), + [sym_literal] = STATE(3102), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(1249), [sym_preproc_endregion] = STATE(1249), [sym_preproc_line] = STATE(1249), @@ -252940,47 +252826,47 @@ 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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3382), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1627), - [anon_sym_LPAREN] = ACTIONS(2079), - [anon_sym_ref] = ACTIONS(2081), - [anon_sym_LBRACE] = ACTIONS(1633), - [anon_sym_delegate] = ACTIONS(1635), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1479), + [anon_sym_LPAREN] = ACTIONS(2237), + [anon_sym_ref] = ACTIONS(2239), + [anon_sym_LBRACE] = ACTIONS(1481), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1731), + [anon_sym_new] = ACTIONS(2241), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1639), - [anon_sym_BANG] = ACTIONS(2085), - [anon_sym_TILDE] = ACTIONS(2085), - [anon_sym_PLUS_PLUS] = ACTIONS(2085), - [anon_sym_DASH_DASH] = ACTIONS(2085), - [anon_sym_true] = ACTIONS(1645), - [anon_sym_false] = ACTIONS(1645), - [anon_sym_PLUS] = ACTIONS(2083), - [anon_sym_DASH] = ACTIONS(2083), - [anon_sym_STAR] = ACTIONS(1737), - [anon_sym_CARET] = ACTIONS(2085), - [anon_sym_AMP] = ACTIONS(2085), - [anon_sym_this] = ACTIONS(1649), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(2245), + [anon_sym_TILDE] = ACTIONS(2245), + [anon_sym_PLUS_PLUS] = ACTIONS(2245), + [anon_sym_DASH_DASH] = ACTIONS(2245), + [anon_sym_true] = ACTIONS(77), + [anon_sym_false] = ACTIONS(77), + [anon_sym_PLUS] = ACTIONS(2243), + [anon_sym_DASH] = ACTIONS(2243), + [anon_sym_STAR] = ACTIONS(2247), + [anon_sym_CARET] = ACTIONS(2245), + [anon_sym_AMP] = ACTIONS(2245), + [anon_sym_this] = ACTIONS(83), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1651), + [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1653), - [anon_sym_unchecked] = ACTIONS(1639), + [sym_predefined_type] = ACTIONS(91), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1655), - [anon_sym_throw] = ACTIONS(2087), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(2249), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2089), - [anon_sym_DOT_DOT] = ACTIONS(2091), + [anon_sym_await] = ACTIONS(2251), + [anon_sym_DOT_DOT] = ACTIONS(2253), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -252993,19 +252879,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1663), - [anon_sym_sizeof] = ACTIONS(1665), - [anon_sym_typeof] = ACTIONS(1667), - [anon_sym___makeref] = ACTIONS(1669), - [anon_sym___reftype] = ACTIONS(1671), - [anon_sym___refvalue] = ACTIONS(1673), - [sym_null_literal] = ACTIONS(1675), - [anon_sym_SQUOTE] = ACTIONS(1677), - [sym_integer_literal] = ACTIONS(1675), - [sym_real_literal] = ACTIONS(1679), - [anon_sym_DQUOTE] = ACTIONS(1681), - [sym_verbatim_string_literal] = ACTIONS(1679), - [aux_sym_preproc_if_token1] = ACTIONS(1683), + [anon_sym_stackalloc] = ACTIONS(127), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_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), @@ -253016,90 +252902,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1685), - [sym_interpolation_verbatim_start] = ACTIONS(1687), - [sym_interpolation_raw_start] = ACTIONS(1689), - [sym_raw_string_start] = ACTIONS(1691), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [sym_interpolation_raw_start] = ACTIONS(155), + [sym_raw_string_start] = ACTIONS(157), }, [1250] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2762), - [sym__name] = STATE(5891), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2372), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(4929), - [sym_non_lvalue_expression] = STATE(3438), - [sym_lvalue_expression] = STATE(3530), - [sym__expression_statement_expression] = STATE(3362), - [sym_assignment_expression] = STATE(3449), - [sym_binary_expression] = STATE(3362), - [sym_postfix_unary_expression] = STATE(3449), - [sym_prefix_unary_expression] = STATE(3449), - [sym__pointer_indirection_expression] = STATE(2747), - [sym_query_expression] = STATE(3362), - [sym_from_clause] = STATE(6167), - [sym_conditional_expression] = STATE(3362), - [sym_conditional_access_expression] = STATE(3362), - [sym_as_expression] = STATE(3362), - [sym_is_expression] = STATE(3362), - [sym_is_pattern_expression] = STATE(3362), - [sym_cast_expression] = STATE(3362), - [sym_checked_expression] = STATE(3362), - [sym_invocation_expression] = STATE(3449), - [sym_switch_expression] = STATE(3362), - [sym_await_expression] = STATE(3449), - [sym_throw_expression] = STATE(3362), - [sym_element_access_expression] = STATE(2747), - [sym_interpolated_string_expression] = STATE(3362), - [sym_member_access_expression] = STATE(2747), - [sym_object_creation_expression] = STATE(3449), - [sym_parenthesized_expression] = STATE(3449), - [sym__parenthesized_lvalue_expression] = STATE(2747), - [sym_lambda_expression] = STATE(3362), - [sym__lambda_expression_init] = STATE(7468), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3362), - [sym_anonymous_method_expression] = STATE(3362), - [sym_anonymous_object_creation_expression] = STATE(3362), - [sym_implicit_array_creation_expression] = STATE(3362), - [sym_implicit_object_creation_expression] = STATE(3362), - [sym_implicit_stackalloc_expression] = STATE(3362), - [sym_initializer_expression] = STATE(3362), - [sym_default_expression] = STATE(3362), - [sym_with_expression] = STATE(3362), - [sym_sizeof_expression] = STATE(3362), - [sym_typeof_expression] = STATE(3362), - [sym_makeref_expression] = STATE(3362), - [sym_ref_expression] = STATE(3362), - [sym_reftype_expression] = STATE(3362), - [sym_refvalue_expression] = STATE(3362), - [sym_stackalloc_expression] = STATE(3362), - [sym_range_expression] = STATE(3362), - [sym_tuple_expression] = STATE(2747), - [sym_literal] = STATE(3362), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3362), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(5893), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2361), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(5385), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3673), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3102), + [sym_postfix_unary_expression] = STATE(3079), + [sym_prefix_unary_expression] = STATE(3079), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6159), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3102), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3079), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3102), + [sym_member_access_expression] = STATE(2472), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3079), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7363), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(3102), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3102), + [sym_typeof_expression] = STATE(3102), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2472), + [sym_literal] = STATE(3102), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(1250), [sym_preproc_endregion] = STATE(1250), [sym_preproc_line] = STATE(1250), @@ -253109,47 +252995,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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3385), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1307), - [anon_sym_LPAREN] = ACTIONS(1895), - [anon_sym_ref] = ACTIONS(1897), - [anon_sym_LBRACE] = ACTIONS(1313), - [anon_sym_delegate] = ACTIONS(1315), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1479), + [anon_sym_LPAREN] = ACTIONS(2237), + [anon_sym_ref] = ACTIONS(2239), + [anon_sym_LBRACE] = ACTIONS(1481), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1899), + [anon_sym_new] = ACTIONS(2241), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1319), - [anon_sym_BANG] = ACTIONS(1903), - [anon_sym_TILDE] = ACTIONS(1903), - [anon_sym_PLUS_PLUS] = ACTIONS(1903), - [anon_sym_DASH_DASH] = ACTIONS(1903), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(2245), + [anon_sym_TILDE] = ACTIONS(2245), + [anon_sym_PLUS_PLUS] = ACTIONS(2245), + [anon_sym_DASH_DASH] = ACTIONS(2245), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1901), - [anon_sym_DASH] = ACTIONS(1901), - [anon_sym_STAR] = ACTIONS(1905), - [anon_sym_CARET] = ACTIONS(1903), - [anon_sym_AMP] = ACTIONS(1903), - [anon_sym_this] = ACTIONS(1323), + [anon_sym_PLUS] = ACTIONS(2243), + [anon_sym_DASH] = ACTIONS(2243), + [anon_sym_STAR] = ACTIONS(2247), + [anon_sym_CARET] = ACTIONS(2245), + [anon_sym_AMP] = ACTIONS(2245), + [anon_sym_this] = ACTIONS(83), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1325), + [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1319), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1907), + [anon_sym_throw] = ACTIONS(2249), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1909), - [anon_sym_DOT_DOT] = ACTIONS(1911), + [anon_sym_await] = ACTIONS(2251), + [anon_sym_DOT_DOT] = ACTIONS(2253), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -253162,19 +253048,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1333), + [anon_sym_stackalloc] = ACTIONS(127), [anon_sym_sizeof] = ACTIONS(129), [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(1335), - [anon_sym___reftype] = ACTIONS(1337), - [anon_sym___refvalue] = ACTIONS(1339), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), [sym_null_literal] = ACTIONS(139), [anon_sym_SQUOTE] = ACTIONS(141), [sym_integer_literal] = ACTIONS(139), [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1341), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -253191,84 +253077,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [1251] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2762), - [sym__name] = STATE(5891), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2372), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(4932), - [sym_non_lvalue_expression] = STATE(3438), - [sym_lvalue_expression] = STATE(3530), - [sym__expression_statement_expression] = STATE(3362), - [sym_assignment_expression] = STATE(3449), - [sym_binary_expression] = STATE(3362), - [sym_postfix_unary_expression] = STATE(3449), - [sym_prefix_unary_expression] = STATE(3449), - [sym__pointer_indirection_expression] = STATE(2747), - [sym_query_expression] = STATE(3362), - [sym_from_clause] = STATE(6167), - [sym_conditional_expression] = STATE(3362), - [sym_conditional_access_expression] = STATE(3362), - [sym_as_expression] = STATE(3362), - [sym_is_expression] = STATE(3362), - [sym_is_pattern_expression] = STATE(3362), - [sym_cast_expression] = STATE(3362), - [sym_checked_expression] = STATE(3362), - [sym_invocation_expression] = STATE(3449), - [sym_switch_expression] = STATE(3362), - [sym_await_expression] = STATE(3449), - [sym_throw_expression] = STATE(3362), - [sym_element_access_expression] = STATE(2747), - [sym_interpolated_string_expression] = STATE(3362), - [sym_member_access_expression] = STATE(2747), - [sym_object_creation_expression] = STATE(3449), - [sym_parenthesized_expression] = STATE(3449), - [sym__parenthesized_lvalue_expression] = STATE(2747), - [sym_lambda_expression] = STATE(3362), - [sym__lambda_expression_init] = STATE(7468), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3362), - [sym_anonymous_method_expression] = STATE(3362), - [sym_anonymous_object_creation_expression] = STATE(3362), - [sym_implicit_array_creation_expression] = STATE(3362), - [sym_implicit_object_creation_expression] = STATE(3362), - [sym_implicit_stackalloc_expression] = STATE(3362), - [sym_initializer_expression] = STATE(3362), - [sym_default_expression] = STATE(3362), - [sym_with_expression] = STATE(3362), - [sym_sizeof_expression] = STATE(3362), - [sym_typeof_expression] = STATE(3362), - [sym_makeref_expression] = STATE(3362), - [sym_ref_expression] = STATE(3362), - [sym_reftype_expression] = STATE(3362), - [sym_refvalue_expression] = STATE(3362), - [sym_stackalloc_expression] = STATE(3362), - [sym_range_expression] = STATE(3362), - [sym_tuple_expression] = STATE(2747), - [sym_literal] = STATE(3362), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3362), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(5893), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2361), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(5368), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3673), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3102), + [sym_postfix_unary_expression] = STATE(3079), + [sym_prefix_unary_expression] = STATE(3079), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6159), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3102), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3079), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3102), + [sym_member_access_expression] = STATE(2472), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3079), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7363), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(3102), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3102), + [sym_typeof_expression] = STATE(3102), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2472), + [sym_literal] = STATE(3102), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(1251), [sym_preproc_endregion] = STATE(1251), [sym_preproc_line] = STATE(1251), @@ -253278,47 +253164,47 @@ 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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3385), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1307), - [anon_sym_LPAREN] = ACTIONS(1895), - [anon_sym_ref] = ACTIONS(1897), - [anon_sym_LBRACE] = ACTIONS(1313), - [anon_sym_delegate] = ACTIONS(1315), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1479), + [anon_sym_LPAREN] = ACTIONS(2237), + [anon_sym_ref] = ACTIONS(2239), + [anon_sym_LBRACE] = ACTIONS(1481), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1899), + [anon_sym_new] = ACTIONS(2241), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1319), - [anon_sym_BANG] = ACTIONS(1903), - [anon_sym_TILDE] = ACTIONS(1903), - [anon_sym_PLUS_PLUS] = ACTIONS(1903), - [anon_sym_DASH_DASH] = ACTIONS(1903), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(2245), + [anon_sym_TILDE] = ACTIONS(2245), + [anon_sym_PLUS_PLUS] = ACTIONS(2245), + [anon_sym_DASH_DASH] = ACTIONS(2245), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1901), - [anon_sym_DASH] = ACTIONS(1901), - [anon_sym_STAR] = ACTIONS(1905), - [anon_sym_CARET] = ACTIONS(1903), - [anon_sym_AMP] = ACTIONS(1903), - [anon_sym_this] = ACTIONS(1323), + [anon_sym_PLUS] = ACTIONS(2243), + [anon_sym_DASH] = ACTIONS(2243), + [anon_sym_STAR] = ACTIONS(2247), + [anon_sym_CARET] = ACTIONS(2245), + [anon_sym_AMP] = ACTIONS(2245), + [anon_sym_this] = ACTIONS(83), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1325), + [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1319), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1907), + [anon_sym_throw] = ACTIONS(2249), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1909), - [anon_sym_DOT_DOT] = ACTIONS(1911), + [anon_sym_await] = ACTIONS(2251), + [anon_sym_DOT_DOT] = ACTIONS(2253), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -253331,19 +253217,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1333), + [anon_sym_stackalloc] = ACTIONS(127), [anon_sym_sizeof] = ACTIONS(129), [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(1335), - [anon_sym___reftype] = ACTIONS(1337), - [anon_sym___refvalue] = ACTIONS(1339), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), [sym_null_literal] = ACTIONS(139), [anon_sym_SQUOTE] = ACTIONS(141), [sym_integer_literal] = ACTIONS(139), [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1341), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -253360,84 +253246,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [1252] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2762), - [sym__name] = STATE(5891), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2372), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(4997), - [sym_non_lvalue_expression] = STATE(3438), - [sym_lvalue_expression] = STATE(3530), - [sym__expression_statement_expression] = STATE(3362), - [sym_assignment_expression] = STATE(3449), - [sym_binary_expression] = STATE(3362), - [sym_postfix_unary_expression] = STATE(3449), - [sym_prefix_unary_expression] = STATE(3449), - [sym__pointer_indirection_expression] = STATE(2747), - [sym_query_expression] = STATE(3362), - [sym_from_clause] = STATE(6167), - [sym_conditional_expression] = STATE(3362), - [sym_conditional_access_expression] = STATE(3362), - [sym_as_expression] = STATE(3362), - [sym_is_expression] = STATE(3362), - [sym_is_pattern_expression] = STATE(3362), - [sym_cast_expression] = STATE(3362), - [sym_checked_expression] = STATE(3362), - [sym_invocation_expression] = STATE(3449), - [sym_switch_expression] = STATE(3362), - [sym_await_expression] = STATE(3449), - [sym_throw_expression] = STATE(3362), - [sym_element_access_expression] = STATE(2747), - [sym_interpolated_string_expression] = STATE(3362), - [sym_member_access_expression] = STATE(2747), - [sym_object_creation_expression] = STATE(3449), - [sym_parenthesized_expression] = STATE(3449), - [sym__parenthesized_lvalue_expression] = STATE(2747), - [sym_lambda_expression] = STATE(3362), - [sym__lambda_expression_init] = STATE(7468), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3362), - [sym_anonymous_method_expression] = STATE(3362), - [sym_anonymous_object_creation_expression] = STATE(3362), - [sym_implicit_array_creation_expression] = STATE(3362), - [sym_implicit_object_creation_expression] = STATE(3362), - [sym_implicit_stackalloc_expression] = STATE(3362), - [sym_initializer_expression] = STATE(3362), - [sym_default_expression] = STATE(3362), - [sym_with_expression] = STATE(3362), - [sym_sizeof_expression] = STATE(3362), - [sym_typeof_expression] = STATE(3362), - [sym_makeref_expression] = STATE(3362), - [sym_ref_expression] = STATE(3362), - [sym_reftype_expression] = STATE(3362), - [sym_refvalue_expression] = STATE(3362), - [sym_stackalloc_expression] = STATE(3362), - [sym_range_expression] = STATE(3362), - [sym_tuple_expression] = STATE(2747), - [sym_literal] = STATE(3362), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3362), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2603), + [sym__name] = STATE(5862), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2193), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(3793), + [sym_non_lvalue_expression] = STATE(3220), + [sym_lvalue_expression] = STATE(2955), + [sym__expression_statement_expression] = STATE(3236), + [sym_assignment_expression] = STATE(3221), + [sym_binary_expression] = STATE(3236), + [sym_postfix_unary_expression] = STATE(3221), + [sym_prefix_unary_expression] = STATE(3221), + [sym__pointer_indirection_expression] = STATE(2602), + [sym_query_expression] = STATE(3236), + [sym_from_clause] = STATE(6143), + [sym_conditional_expression] = STATE(3236), + [sym_conditional_access_expression] = STATE(3236), + [sym_as_expression] = STATE(3236), + [sym_is_expression] = STATE(3236), + [sym_is_pattern_expression] = STATE(3236), + [sym_cast_expression] = STATE(3236), + [sym_checked_expression] = STATE(3236), + [sym_invocation_expression] = STATE(3221), + [sym_switch_expression] = STATE(3236), + [sym_await_expression] = STATE(3221), + [sym_throw_expression] = STATE(3236), + [sym_element_access_expression] = STATE(2602), + [sym_interpolated_string_expression] = STATE(3236), + [sym_member_access_expression] = STATE(2602), + [sym_object_creation_expression] = STATE(3221), + [sym_parenthesized_expression] = STATE(3221), + [sym__parenthesized_lvalue_expression] = STATE(2602), + [sym_lambda_expression] = STATE(3236), + [sym__lambda_expression_init] = STATE(7668), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3236), + [sym_anonymous_method_expression] = STATE(3236), + [sym_anonymous_object_creation_expression] = STATE(3236), + [sym_implicit_array_creation_expression] = STATE(3236), + [sym_implicit_object_creation_expression] = STATE(3236), + [sym_implicit_stackalloc_expression] = STATE(3236), + [sym_initializer_expression] = STATE(3236), + [sym_default_expression] = STATE(3236), + [sym_with_expression] = STATE(3236), + [sym_sizeof_expression] = STATE(3236), + [sym_typeof_expression] = STATE(3236), + [sym_makeref_expression] = STATE(3236), + [sym_ref_expression] = STATE(3236), + [sym_reftype_expression] = STATE(3236), + [sym_refvalue_expression] = STATE(3236), + [sym_stackalloc_expression] = STATE(3236), + [sym_range_expression] = STATE(3236), + [sym_tuple_expression] = STATE(2602), + [sym_literal] = STATE(3236), + [sym_character_literal] = STATE(3272), + [sym_string_literal] = STATE(3272), + [sym_raw_string_literal] = STATE(3272), + [sym_boolean_literal] = STATE(3272), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3236), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(1252), [sym_preproc_endregion] = STATE(1252), [sym_preproc_line] = STATE(1252), @@ -253447,47 +253333,47 @@ 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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3385), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3379), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1307), - [anon_sym_LPAREN] = ACTIONS(1895), - [anon_sym_ref] = ACTIONS(1897), - [anon_sym_LBRACE] = ACTIONS(1313), - [anon_sym_delegate] = ACTIONS(1315), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1149), + [anon_sym_LPAREN] = ACTIONS(1151), + [anon_sym_ref] = ACTIONS(1153), + [anon_sym_LBRACE] = ACTIONS(1155), + [anon_sym_delegate] = ACTIONS(1157), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1899), + [anon_sym_new] = ACTIONS(1159), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1319), - [anon_sym_BANG] = ACTIONS(1903), - [anon_sym_TILDE] = ACTIONS(1903), - [anon_sym_PLUS_PLUS] = ACTIONS(1903), - [anon_sym_DASH_DASH] = ACTIONS(1903), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1901), - [anon_sym_DASH] = ACTIONS(1901), - [anon_sym_STAR] = ACTIONS(1905), - [anon_sym_CARET] = ACTIONS(1903), - [anon_sym_AMP] = ACTIONS(1903), - [anon_sym_this] = ACTIONS(1323), + [anon_sym_checked] = ACTIONS(1163), + [anon_sym_BANG] = ACTIONS(1167), + [anon_sym_TILDE] = ACTIONS(1167), + [anon_sym_PLUS_PLUS] = ACTIONS(1167), + [anon_sym_DASH_DASH] = ACTIONS(1167), + [anon_sym_true] = ACTIONS(1169), + [anon_sym_false] = ACTIONS(1169), + [anon_sym_PLUS] = ACTIONS(1165), + [anon_sym_DASH] = ACTIONS(1165), + [anon_sym_STAR] = ACTIONS(1171), + [anon_sym_CARET] = ACTIONS(1167), + [anon_sym_AMP] = ACTIONS(1167), + [anon_sym_this] = ACTIONS(1173), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1325), + [anon_sym_base] = ACTIONS(1175), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1319), + [sym_predefined_type] = ACTIONS(1177), + [anon_sym_unchecked] = ACTIONS(1163), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1907), + [anon_sym_default] = ACTIONS(1179), + [anon_sym_throw] = ACTIONS(1181), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1909), - [anon_sym_DOT_DOT] = ACTIONS(1911), + [anon_sym_await] = ACTIONS(1183), + [anon_sym_DOT_DOT] = ACTIONS(1185), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -253500,19 +253386,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1333), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(1335), - [anon_sym___reftype] = ACTIONS(1337), - [anon_sym___refvalue] = ACTIONS(1339), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1341), + [anon_sym_stackalloc] = ACTIONS(1187), + [anon_sym_sizeof] = ACTIONS(1189), + [anon_sym_typeof] = ACTIONS(1191), + [anon_sym___makeref] = ACTIONS(1193), + [anon_sym___reftype] = ACTIONS(1195), + [anon_sym___refvalue] = ACTIONS(1197), + [sym_null_literal] = ACTIONS(1199), + [anon_sym_SQUOTE] = ACTIONS(1201), + [sym_integer_literal] = ACTIONS(1199), + [sym_real_literal] = ACTIONS(1203), + [anon_sym_DQUOTE] = ACTIONS(1205), + [sym_verbatim_string_literal] = ACTIONS(1203), + [aux_sym_preproc_if_token1] = ACTIONS(1207), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -253523,90 +253409,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(151), - [sym_interpolation_verbatim_start] = ACTIONS(153), - [sym_interpolation_raw_start] = ACTIONS(155), - [sym_raw_string_start] = ACTIONS(157), + [sym_interpolation_regular_start] = ACTIONS(1209), + [sym_interpolation_verbatim_start] = ACTIONS(1211), + [sym_interpolation_raw_start] = ACTIONS(1213), + [sym_raw_string_start] = ACTIONS(1215), }, [1253] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2762), - [sym__name] = STATE(5891), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2372), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(4934), - [sym_non_lvalue_expression] = STATE(3438), - [sym_lvalue_expression] = STATE(3530), - [sym__expression_statement_expression] = STATE(3362), - [sym_assignment_expression] = STATE(3449), - [sym_binary_expression] = STATE(3362), - [sym_postfix_unary_expression] = STATE(3449), - [sym_prefix_unary_expression] = STATE(3449), - [sym__pointer_indirection_expression] = STATE(2747), - [sym_query_expression] = STATE(3362), - [sym_from_clause] = STATE(6167), - [sym_conditional_expression] = STATE(3362), - [sym_conditional_access_expression] = STATE(3362), - [sym_as_expression] = STATE(3362), - [sym_is_expression] = STATE(3362), - [sym_is_pattern_expression] = STATE(3362), - [sym_cast_expression] = STATE(3362), - [sym_checked_expression] = STATE(3362), - [sym_invocation_expression] = STATE(3449), - [sym_switch_expression] = STATE(3362), - [sym_await_expression] = STATE(3449), - [sym_throw_expression] = STATE(3362), - [sym_element_access_expression] = STATE(2747), - [sym_interpolated_string_expression] = STATE(3362), - [sym_member_access_expression] = STATE(2747), - [sym_object_creation_expression] = STATE(3449), - [sym_parenthesized_expression] = STATE(3449), - [sym__parenthesized_lvalue_expression] = STATE(2747), - [sym_lambda_expression] = STATE(3362), - [sym__lambda_expression_init] = STATE(7468), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3362), - [sym_anonymous_method_expression] = STATE(3362), - [sym_anonymous_object_creation_expression] = STATE(3362), - [sym_implicit_array_creation_expression] = STATE(3362), - [sym_implicit_object_creation_expression] = STATE(3362), - [sym_implicit_stackalloc_expression] = STATE(3362), - [sym_initializer_expression] = STATE(3362), - [sym_default_expression] = STATE(3362), - [sym_with_expression] = STATE(3362), - [sym_sizeof_expression] = STATE(3362), - [sym_typeof_expression] = STATE(3362), - [sym_makeref_expression] = STATE(3362), - [sym_ref_expression] = STATE(3362), - [sym_reftype_expression] = STATE(3362), - [sym_refvalue_expression] = STATE(3362), - [sym_stackalloc_expression] = STATE(3362), - [sym_range_expression] = STATE(3362), - [sym_tuple_expression] = STATE(2747), - [sym_literal] = STATE(3362), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3362), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(5893), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2361), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(3523), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3673), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3102), + [sym_postfix_unary_expression] = STATE(3079), + [sym_prefix_unary_expression] = STATE(3079), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6159), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3102), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3079), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3102), + [sym_member_access_expression] = STATE(2472), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3079), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7363), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(3102), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3102), + [sym_typeof_expression] = STATE(3102), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2472), + [sym_literal] = STATE(3102), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(1253), [sym_preproc_endregion] = STATE(1253), [sym_preproc_line] = STATE(1253), @@ -253616,47 +253502,47 @@ 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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3385), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1307), - [anon_sym_LPAREN] = ACTIONS(1895), - [anon_sym_ref] = ACTIONS(1897), - [anon_sym_LBRACE] = ACTIONS(1313), - [anon_sym_delegate] = ACTIONS(1315), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1479), + [anon_sym_LPAREN] = ACTIONS(2237), + [anon_sym_ref] = ACTIONS(2239), + [anon_sym_LBRACE] = ACTIONS(1481), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1899), + [anon_sym_new] = ACTIONS(2241), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1319), - [anon_sym_BANG] = ACTIONS(1903), - [anon_sym_TILDE] = ACTIONS(1903), - [anon_sym_PLUS_PLUS] = ACTIONS(1903), - [anon_sym_DASH_DASH] = ACTIONS(1903), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(2245), + [anon_sym_TILDE] = ACTIONS(2245), + [anon_sym_PLUS_PLUS] = ACTIONS(2245), + [anon_sym_DASH_DASH] = ACTIONS(2245), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1901), - [anon_sym_DASH] = ACTIONS(1901), - [anon_sym_STAR] = ACTIONS(1905), - [anon_sym_CARET] = ACTIONS(1903), - [anon_sym_AMP] = ACTIONS(1903), - [anon_sym_this] = ACTIONS(1323), + [anon_sym_PLUS] = ACTIONS(2243), + [anon_sym_DASH] = ACTIONS(2243), + [anon_sym_STAR] = ACTIONS(2247), + [anon_sym_CARET] = ACTIONS(2245), + [anon_sym_AMP] = ACTIONS(2245), + [anon_sym_this] = ACTIONS(83), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1325), + [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1319), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1907), + [anon_sym_throw] = ACTIONS(2249), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1909), - [anon_sym_DOT_DOT] = ACTIONS(1911), + [anon_sym_await] = ACTIONS(2251), + [anon_sym_DOT_DOT] = ACTIONS(2253), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -253669,19 +253555,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1333), + [anon_sym_stackalloc] = ACTIONS(127), [anon_sym_sizeof] = ACTIONS(129), [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(1335), - [anon_sym___reftype] = ACTIONS(1337), - [anon_sym___refvalue] = ACTIONS(1339), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), [sym_null_literal] = ACTIONS(139), [anon_sym_SQUOTE] = ACTIONS(141), [sym_integer_literal] = ACTIONS(139), [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1341), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -253698,84 +253584,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [1254] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2762), - [sym__name] = STATE(5891), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2372), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(4935), - [sym_non_lvalue_expression] = STATE(3438), - [sym_lvalue_expression] = STATE(3530), - [sym__expression_statement_expression] = STATE(3362), - [sym_assignment_expression] = STATE(3449), - [sym_binary_expression] = STATE(3362), - [sym_postfix_unary_expression] = STATE(3449), - [sym_prefix_unary_expression] = STATE(3449), - [sym__pointer_indirection_expression] = STATE(2747), - [sym_query_expression] = STATE(3362), - [sym_from_clause] = STATE(6167), - [sym_conditional_expression] = STATE(3362), - [sym_conditional_access_expression] = STATE(3362), - [sym_as_expression] = STATE(3362), - [sym_is_expression] = STATE(3362), - [sym_is_pattern_expression] = STATE(3362), - [sym_cast_expression] = STATE(3362), - [sym_checked_expression] = STATE(3362), - [sym_invocation_expression] = STATE(3449), - [sym_switch_expression] = STATE(3362), - [sym_await_expression] = STATE(3449), - [sym_throw_expression] = STATE(3362), - [sym_element_access_expression] = STATE(2747), - [sym_interpolated_string_expression] = STATE(3362), - [sym_member_access_expression] = STATE(2747), - [sym_object_creation_expression] = STATE(3449), - [sym_parenthesized_expression] = STATE(3449), - [sym__parenthesized_lvalue_expression] = STATE(2747), - [sym_lambda_expression] = STATE(3362), - [sym__lambda_expression_init] = STATE(7468), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3362), - [sym_anonymous_method_expression] = STATE(3362), - [sym_anonymous_object_creation_expression] = STATE(3362), - [sym_implicit_array_creation_expression] = STATE(3362), - [sym_implicit_object_creation_expression] = STATE(3362), - [sym_implicit_stackalloc_expression] = STATE(3362), - [sym_initializer_expression] = STATE(3362), - [sym_default_expression] = STATE(3362), - [sym_with_expression] = STATE(3362), - [sym_sizeof_expression] = STATE(3362), - [sym_typeof_expression] = STATE(3362), - [sym_makeref_expression] = STATE(3362), - [sym_ref_expression] = STATE(3362), - [sym_reftype_expression] = STATE(3362), - [sym_refvalue_expression] = STATE(3362), - [sym_stackalloc_expression] = STATE(3362), - [sym_range_expression] = STATE(3362), - [sym_tuple_expression] = STATE(2747), - [sym_literal] = STATE(3362), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3362), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2816), + [sym__name] = STATE(5893), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2361), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(4981), + [sym_non_lvalue_expression] = STATE(3495), + [sym_lvalue_expression] = STATE(3509), + [sym__expression_statement_expression] = STATE(3462), + [sym_assignment_expression] = STATE(3497), + [sym_binary_expression] = STATE(3462), + [sym_postfix_unary_expression] = STATE(3497), + [sym_prefix_unary_expression] = STATE(3497), + [sym__pointer_indirection_expression] = STATE(2815), + [sym_query_expression] = STATE(3462), + [sym_from_clause] = STATE(6150), + [sym_conditional_expression] = STATE(3462), + [sym_conditional_access_expression] = STATE(3462), + [sym_as_expression] = STATE(3462), + [sym_is_expression] = STATE(3462), + [sym_is_pattern_expression] = STATE(3462), + [sym_cast_expression] = STATE(3462), + [sym_checked_expression] = STATE(3462), + [sym_invocation_expression] = STATE(3497), + [sym_switch_expression] = STATE(3462), + [sym_await_expression] = STATE(3497), + [sym_throw_expression] = STATE(3462), + [sym_element_access_expression] = STATE(2815), + [sym_interpolated_string_expression] = STATE(3462), + [sym_member_access_expression] = STATE(2815), + [sym_object_creation_expression] = STATE(3497), + [sym_parenthesized_expression] = STATE(3497), + [sym__parenthesized_lvalue_expression] = STATE(2815), + [sym_lambda_expression] = STATE(3462), + [sym__lambda_expression_init] = STATE(7428), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3462), + [sym_anonymous_method_expression] = STATE(3462), + [sym_anonymous_object_creation_expression] = STATE(3462), + [sym_implicit_array_creation_expression] = STATE(3462), + [sym_implicit_object_creation_expression] = STATE(3462), + [sym_implicit_stackalloc_expression] = STATE(3462), + [sym_initializer_expression] = STATE(3462), + [sym_default_expression] = STATE(3462), + [sym_with_expression] = STATE(3462), + [sym_sizeof_expression] = STATE(3462), + [sym_typeof_expression] = STATE(3462), + [sym_makeref_expression] = STATE(3462), + [sym_ref_expression] = STATE(3462), + [sym_reftype_expression] = STATE(3462), + [sym_refvalue_expression] = STATE(3462), + [sym_stackalloc_expression] = STATE(3462), + [sym_range_expression] = STATE(3462), + [sym_tuple_expression] = STATE(2815), + [sym_literal] = STATE(3462), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3462), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(1254), [sym_preproc_endregion] = STATE(1254), [sym_preproc_line] = STATE(1254), @@ -253785,47 +253671,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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3385), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3367), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1307), - [anon_sym_LPAREN] = ACTIONS(1895), - [anon_sym_ref] = ACTIONS(1897), - [anon_sym_LBRACE] = ACTIONS(1313), - [anon_sym_delegate] = ACTIONS(1315), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1305), + [anon_sym_LPAREN] = ACTIONS(1839), + [anon_sym_ref] = ACTIONS(1841), + [anon_sym_LBRACE] = ACTIONS(1311), + [anon_sym_delegate] = ACTIONS(1313), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1899), + [anon_sym_new] = ACTIONS(1843), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1319), - [anon_sym_BANG] = ACTIONS(1903), - [anon_sym_TILDE] = ACTIONS(1903), - [anon_sym_PLUS_PLUS] = ACTIONS(1903), - [anon_sym_DASH_DASH] = ACTIONS(1903), + [anon_sym_checked] = ACTIONS(1317), + [anon_sym_BANG] = ACTIONS(1847), + [anon_sym_TILDE] = ACTIONS(1847), + [anon_sym_PLUS_PLUS] = ACTIONS(1847), + [anon_sym_DASH_DASH] = ACTIONS(1847), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1901), - [anon_sym_DASH] = ACTIONS(1901), - [anon_sym_STAR] = ACTIONS(1905), - [anon_sym_CARET] = ACTIONS(1903), - [anon_sym_AMP] = ACTIONS(1903), - [anon_sym_this] = ACTIONS(1323), + [anon_sym_PLUS] = ACTIONS(1845), + [anon_sym_DASH] = ACTIONS(1845), + [anon_sym_STAR] = ACTIONS(1849), + [anon_sym_CARET] = ACTIONS(1847), + [anon_sym_AMP] = ACTIONS(1847), + [anon_sym_this] = ACTIONS(1321), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1325), + [anon_sym_base] = ACTIONS(1323), [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1319), + [anon_sym_unchecked] = ACTIONS(1317), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1907), + [anon_sym_throw] = ACTIONS(1851), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1909), - [anon_sym_DOT_DOT] = ACTIONS(1911), + [anon_sym_await] = ACTIONS(1853), + [anon_sym_DOT_DOT] = ACTIONS(1855), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -253838,19 +253724,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1333), + [anon_sym_stackalloc] = ACTIONS(1331), [anon_sym_sizeof] = ACTIONS(129), [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(1335), - [anon_sym___reftype] = ACTIONS(1337), - [anon_sym___refvalue] = ACTIONS(1339), + [anon_sym___makeref] = ACTIONS(1333), + [anon_sym___reftype] = ACTIONS(1335), + [anon_sym___refvalue] = ACTIONS(1337), [sym_null_literal] = ACTIONS(139), [anon_sym_SQUOTE] = ACTIONS(141), [sym_integer_literal] = ACTIONS(139), [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1341), + [aux_sym_preproc_if_token1] = ACTIONS(1339), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -253867,84 +253753,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [1255] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2762), - [sym__name] = STATE(5891), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2372), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(4938), - [sym_non_lvalue_expression] = STATE(3438), - [sym_lvalue_expression] = STATE(3530), - [sym__expression_statement_expression] = STATE(3362), - [sym_assignment_expression] = STATE(3449), - [sym_binary_expression] = STATE(3362), - [sym_postfix_unary_expression] = STATE(3449), - [sym_prefix_unary_expression] = STATE(3449), - [sym__pointer_indirection_expression] = STATE(2747), - [sym_query_expression] = STATE(3362), - [sym_from_clause] = STATE(6167), - [sym_conditional_expression] = STATE(3362), - [sym_conditional_access_expression] = STATE(3362), - [sym_as_expression] = STATE(3362), - [sym_is_expression] = STATE(3362), - [sym_is_pattern_expression] = STATE(3362), - [sym_cast_expression] = STATE(3362), - [sym_checked_expression] = STATE(3362), - [sym_invocation_expression] = STATE(3449), - [sym_switch_expression] = STATE(3362), - [sym_await_expression] = STATE(3449), - [sym_throw_expression] = STATE(3362), - [sym_element_access_expression] = STATE(2747), - [sym_interpolated_string_expression] = STATE(3362), - [sym_member_access_expression] = STATE(2747), - [sym_object_creation_expression] = STATE(3449), - [sym_parenthesized_expression] = STATE(3449), - [sym__parenthesized_lvalue_expression] = STATE(2747), - [sym_lambda_expression] = STATE(3362), - [sym__lambda_expression_init] = STATE(7468), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3362), - [sym_anonymous_method_expression] = STATE(3362), - [sym_anonymous_object_creation_expression] = STATE(3362), - [sym_implicit_array_creation_expression] = STATE(3362), - [sym_implicit_object_creation_expression] = STATE(3362), - [sym_implicit_stackalloc_expression] = STATE(3362), - [sym_initializer_expression] = STATE(3362), - [sym_default_expression] = STATE(3362), - [sym_with_expression] = STATE(3362), - [sym_sizeof_expression] = STATE(3362), - [sym_typeof_expression] = STATE(3362), - [sym_makeref_expression] = STATE(3362), - [sym_ref_expression] = STATE(3362), - [sym_reftype_expression] = STATE(3362), - [sym_refvalue_expression] = STATE(3362), - [sym_stackalloc_expression] = STATE(3362), - [sym_range_expression] = STATE(3362), - [sym_tuple_expression] = STATE(2747), - [sym_literal] = STATE(3362), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3362), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(5893), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2361), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(5393), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3673), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3102), + [sym_postfix_unary_expression] = STATE(3079), + [sym_prefix_unary_expression] = STATE(3079), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6159), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3102), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3079), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3102), + [sym_member_access_expression] = STATE(2472), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3079), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7363), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(3102), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3102), + [sym_typeof_expression] = STATE(3102), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2472), + [sym_literal] = STATE(3102), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(1255), [sym_preproc_endregion] = STATE(1255), [sym_preproc_line] = STATE(1255), @@ -253954,47 +253840,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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3385), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1307), - [anon_sym_LPAREN] = ACTIONS(1895), - [anon_sym_ref] = ACTIONS(1897), - [anon_sym_LBRACE] = ACTIONS(1313), - [anon_sym_delegate] = ACTIONS(1315), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1479), + [anon_sym_LPAREN] = ACTIONS(2237), + [anon_sym_ref] = ACTIONS(2239), + [anon_sym_LBRACE] = ACTIONS(1481), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1899), + [anon_sym_new] = ACTIONS(2241), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1319), - [anon_sym_BANG] = ACTIONS(1903), - [anon_sym_TILDE] = ACTIONS(1903), - [anon_sym_PLUS_PLUS] = ACTIONS(1903), - [anon_sym_DASH_DASH] = ACTIONS(1903), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(2245), + [anon_sym_TILDE] = ACTIONS(2245), + [anon_sym_PLUS_PLUS] = ACTIONS(2245), + [anon_sym_DASH_DASH] = ACTIONS(2245), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1901), - [anon_sym_DASH] = ACTIONS(1901), - [anon_sym_STAR] = ACTIONS(1905), - [anon_sym_CARET] = ACTIONS(1903), - [anon_sym_AMP] = ACTIONS(1903), - [anon_sym_this] = ACTIONS(1323), + [anon_sym_PLUS] = ACTIONS(2243), + [anon_sym_DASH] = ACTIONS(2243), + [anon_sym_STAR] = ACTIONS(2247), + [anon_sym_CARET] = ACTIONS(2245), + [anon_sym_AMP] = ACTIONS(2245), + [anon_sym_this] = ACTIONS(83), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1325), + [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1319), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1907), + [anon_sym_throw] = ACTIONS(2249), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1909), - [anon_sym_DOT_DOT] = ACTIONS(1911), + [anon_sym_await] = ACTIONS(2251), + [anon_sym_DOT_DOT] = ACTIONS(2253), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -254007,19 +253893,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1333), + [anon_sym_stackalloc] = ACTIONS(127), [anon_sym_sizeof] = ACTIONS(129), [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(1335), - [anon_sym___reftype] = ACTIONS(1337), - [anon_sym___refvalue] = ACTIONS(1339), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), [sym_null_literal] = ACTIONS(139), [anon_sym_SQUOTE] = ACTIONS(141), [sym_integer_literal] = ACTIONS(139), [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1341), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -254036,84 +253922,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [1256] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2762), - [sym__name] = STATE(5891), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2372), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(4939), - [sym_non_lvalue_expression] = STATE(3438), - [sym_lvalue_expression] = STATE(3530), - [sym__expression_statement_expression] = STATE(3362), - [sym_assignment_expression] = STATE(3449), - [sym_binary_expression] = STATE(3362), - [sym_postfix_unary_expression] = STATE(3449), - [sym_prefix_unary_expression] = STATE(3449), - [sym__pointer_indirection_expression] = STATE(2747), - [sym_query_expression] = STATE(3362), - [sym_from_clause] = STATE(6167), - [sym_conditional_expression] = STATE(3362), - [sym_conditional_access_expression] = STATE(3362), - [sym_as_expression] = STATE(3362), - [sym_is_expression] = STATE(3362), - [sym_is_pattern_expression] = STATE(3362), - [sym_cast_expression] = STATE(3362), - [sym_checked_expression] = STATE(3362), - [sym_invocation_expression] = STATE(3449), - [sym_switch_expression] = STATE(3362), - [sym_await_expression] = STATE(3449), - [sym_throw_expression] = STATE(3362), - [sym_element_access_expression] = STATE(2747), - [sym_interpolated_string_expression] = STATE(3362), - [sym_member_access_expression] = STATE(2747), - [sym_object_creation_expression] = STATE(3449), - [sym_parenthesized_expression] = STATE(3449), - [sym__parenthesized_lvalue_expression] = STATE(2747), - [sym_lambda_expression] = STATE(3362), - [sym__lambda_expression_init] = STATE(7468), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3362), - [sym_anonymous_method_expression] = STATE(3362), - [sym_anonymous_object_creation_expression] = STATE(3362), - [sym_implicit_array_creation_expression] = STATE(3362), - [sym_implicit_object_creation_expression] = STATE(3362), - [sym_implicit_stackalloc_expression] = STATE(3362), - [sym_initializer_expression] = STATE(3362), - [sym_default_expression] = STATE(3362), - [sym_with_expression] = STATE(3362), - [sym_sizeof_expression] = STATE(3362), - [sym_typeof_expression] = STATE(3362), - [sym_makeref_expression] = STATE(3362), - [sym_ref_expression] = STATE(3362), - [sym_reftype_expression] = STATE(3362), - [sym_refvalue_expression] = STATE(3362), - [sym_stackalloc_expression] = STATE(3362), - [sym_range_expression] = STATE(3362), - [sym_tuple_expression] = STATE(2747), - [sym_literal] = STATE(3362), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3362), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(5881), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2386), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(4190), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3132), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3102), + [sym_postfix_unary_expression] = STATE(3079), + [sym_prefix_unary_expression] = STATE(3079), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6158), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3102), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3079), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3102), + [sym_member_access_expression] = STATE(2472), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3079), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7650), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(3102), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3102), + [sym_typeof_expression] = STATE(3102), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2472), + [sym_literal] = STATE(3102), + [sym_character_literal] = STATE(3037), + [sym_string_literal] = STATE(3037), + [sym_raw_string_literal] = STATE(3037), + [sym_boolean_literal] = STATE(3037), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(1256), [sym_preproc_endregion] = STATE(1256), [sym_preproc_line] = STATE(1256), @@ -254123,47 +254009,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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3385), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1307), - [anon_sym_LPAREN] = ACTIONS(1895), - [anon_sym_ref] = ACTIONS(1897), - [anon_sym_LBRACE] = ACTIONS(1313), - [anon_sym_delegate] = ACTIONS(1315), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1479), + [anon_sym_LPAREN] = ACTIONS(2185), + [anon_sym_ref] = ACTIONS(2187), + [anon_sym_LBRACE] = ACTIONS(1481), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), [anon_sym_new] = ACTIONS(1899), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1319), - [anon_sym_BANG] = ACTIONS(1903), - [anon_sym_TILDE] = ACTIONS(1903), - [anon_sym_PLUS_PLUS] = ACTIONS(1903), - [anon_sym_DASH_DASH] = ACTIONS(1903), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1901), - [anon_sym_DASH] = ACTIONS(1901), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(2191), + [anon_sym_TILDE] = ACTIONS(2191), + [anon_sym_PLUS_PLUS] = ACTIONS(2191), + [anon_sym_DASH_DASH] = ACTIONS(2191), + [anon_sym_true] = ACTIONS(1257), + [anon_sym_false] = ACTIONS(1257), + [anon_sym_PLUS] = ACTIONS(2189), + [anon_sym_DASH] = ACTIONS(2189), [anon_sym_STAR] = ACTIONS(1905), - [anon_sym_CARET] = ACTIONS(1903), - [anon_sym_AMP] = ACTIONS(1903), - [anon_sym_this] = ACTIONS(1323), + [anon_sym_CARET] = ACTIONS(2191), + [anon_sym_AMP] = ACTIONS(2191), + [anon_sym_this] = ACTIONS(83), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1325), + [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1319), + [sym_predefined_type] = ACTIONS(1265), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1907), + [anon_sym_default] = ACTIONS(1267), + [anon_sym_throw] = ACTIONS(2193), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1909), - [anon_sym_DOT_DOT] = ACTIONS(1911), + [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), @@ -254176,19 +254062,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1333), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(1335), - [anon_sym___reftype] = ACTIONS(1337), - [anon_sym___refvalue] = ACTIONS(1339), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1341), + [anon_sym_stackalloc] = ACTIONS(127), + [anon_sym_sizeof] = ACTIONS(1277), + [anon_sym_typeof] = ACTIONS(1279), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), + [sym_null_literal] = ACTIONS(1287), + [anon_sym_SQUOTE] = ACTIONS(1289), + [sym_integer_literal] = ACTIONS(1287), + [sym_real_literal] = ACTIONS(1291), + [anon_sym_DQUOTE] = ACTIONS(1293), + [sym_verbatim_string_literal] = ACTIONS(1291), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -254199,90 +254085,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(151), - [sym_interpolation_verbatim_start] = ACTIONS(153), - [sym_interpolation_raw_start] = ACTIONS(155), - [sym_raw_string_start] = ACTIONS(157), + [sym_interpolation_regular_start] = ACTIONS(1297), + [sym_interpolation_verbatim_start] = ACTIONS(1299), + [sym_interpolation_raw_start] = ACTIONS(1301), + [sym_raw_string_start] = ACTIONS(1303), }, [1257] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2762), - [sym__name] = STATE(5891), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2372), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(4940), - [sym_non_lvalue_expression] = STATE(3438), - [sym_lvalue_expression] = STATE(3530), - [sym__expression_statement_expression] = STATE(3362), - [sym_assignment_expression] = STATE(3449), - [sym_binary_expression] = STATE(3362), - [sym_postfix_unary_expression] = STATE(3449), - [sym_prefix_unary_expression] = STATE(3449), - [sym__pointer_indirection_expression] = STATE(2747), - [sym_query_expression] = STATE(3362), - [sym_from_clause] = STATE(6167), - [sym_conditional_expression] = STATE(3362), - [sym_conditional_access_expression] = STATE(3362), - [sym_as_expression] = STATE(3362), - [sym_is_expression] = STATE(3362), - [sym_is_pattern_expression] = STATE(3362), - [sym_cast_expression] = STATE(3362), - [sym_checked_expression] = STATE(3362), - [sym_invocation_expression] = STATE(3449), - [sym_switch_expression] = STATE(3362), - [sym_await_expression] = STATE(3449), - [sym_throw_expression] = STATE(3362), - [sym_element_access_expression] = STATE(2747), - [sym_interpolated_string_expression] = STATE(3362), - [sym_member_access_expression] = STATE(2747), - [sym_object_creation_expression] = STATE(3449), - [sym_parenthesized_expression] = STATE(3449), - [sym__parenthesized_lvalue_expression] = STATE(2747), - [sym_lambda_expression] = STATE(3362), - [sym__lambda_expression_init] = STATE(7468), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3362), - [sym_anonymous_method_expression] = STATE(3362), - [sym_anonymous_object_creation_expression] = STATE(3362), - [sym_implicit_array_creation_expression] = STATE(3362), - [sym_implicit_object_creation_expression] = STATE(3362), - [sym_implicit_stackalloc_expression] = STATE(3362), - [sym_initializer_expression] = STATE(3362), - [sym_default_expression] = STATE(3362), - [sym_with_expression] = STATE(3362), - [sym_sizeof_expression] = STATE(3362), - [sym_typeof_expression] = STATE(3362), - [sym_makeref_expression] = STATE(3362), - [sym_ref_expression] = STATE(3362), - [sym_reftype_expression] = STATE(3362), - [sym_refvalue_expression] = STATE(3362), - [sym_stackalloc_expression] = STATE(3362), - [sym_range_expression] = STATE(3362), - [sym_tuple_expression] = STATE(2747), - [sym_literal] = STATE(3362), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3362), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2603), + [sym__name] = STATE(5862), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2193), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(3698), + [sym_non_lvalue_expression] = STATE(3220), + [sym_lvalue_expression] = STATE(2955), + [sym__expression_statement_expression] = STATE(3236), + [sym_assignment_expression] = STATE(3221), + [sym_binary_expression] = STATE(3236), + [sym_postfix_unary_expression] = STATE(3221), + [sym_prefix_unary_expression] = STATE(3221), + [sym__pointer_indirection_expression] = STATE(2602), + [sym_query_expression] = STATE(3236), + [sym_from_clause] = STATE(6143), + [sym_conditional_expression] = STATE(3236), + [sym_conditional_access_expression] = STATE(3236), + [sym_as_expression] = STATE(3236), + [sym_is_expression] = STATE(3236), + [sym_is_pattern_expression] = STATE(3236), + [sym_cast_expression] = STATE(3236), + [sym_checked_expression] = STATE(3236), + [sym_invocation_expression] = STATE(3221), + [sym_switch_expression] = STATE(3236), + [sym_await_expression] = STATE(3221), + [sym_throw_expression] = STATE(3236), + [sym_element_access_expression] = STATE(2602), + [sym_interpolated_string_expression] = STATE(3236), + [sym_member_access_expression] = STATE(2602), + [sym_object_creation_expression] = STATE(3221), + [sym_parenthesized_expression] = STATE(3221), + [sym__parenthesized_lvalue_expression] = STATE(2602), + [sym_lambda_expression] = STATE(3236), + [sym__lambda_expression_init] = STATE(7668), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3236), + [sym_anonymous_method_expression] = STATE(3236), + [sym_anonymous_object_creation_expression] = STATE(3236), + [sym_implicit_array_creation_expression] = STATE(3236), + [sym_implicit_object_creation_expression] = STATE(3236), + [sym_implicit_stackalloc_expression] = STATE(3236), + [sym_initializer_expression] = STATE(3236), + [sym_default_expression] = STATE(3236), + [sym_with_expression] = STATE(3236), + [sym_sizeof_expression] = STATE(3236), + [sym_typeof_expression] = STATE(3236), + [sym_makeref_expression] = STATE(3236), + [sym_ref_expression] = STATE(3236), + [sym_reftype_expression] = STATE(3236), + [sym_refvalue_expression] = STATE(3236), + [sym_stackalloc_expression] = STATE(3236), + [sym_range_expression] = STATE(3236), + [sym_tuple_expression] = STATE(2602), + [sym_literal] = STATE(3236), + [sym_character_literal] = STATE(3272), + [sym_string_literal] = STATE(3272), + [sym_raw_string_literal] = STATE(3272), + [sym_boolean_literal] = STATE(3272), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3236), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(1257), [sym_preproc_endregion] = STATE(1257), [sym_preproc_line] = STATE(1257), @@ -254292,47 +254178,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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3385), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3379), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1307), - [anon_sym_LPAREN] = ACTIONS(1895), - [anon_sym_ref] = ACTIONS(1897), - [anon_sym_LBRACE] = ACTIONS(1313), - [anon_sym_delegate] = ACTIONS(1315), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1149), + [anon_sym_LPAREN] = ACTIONS(1151), + [anon_sym_ref] = ACTIONS(1153), + [anon_sym_LBRACE] = ACTIONS(1155), + [anon_sym_delegate] = ACTIONS(1157), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1899), + [anon_sym_new] = ACTIONS(1159), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1319), - [anon_sym_BANG] = ACTIONS(1903), - [anon_sym_TILDE] = ACTIONS(1903), - [anon_sym_PLUS_PLUS] = ACTIONS(1903), - [anon_sym_DASH_DASH] = ACTIONS(1903), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1901), - [anon_sym_DASH] = ACTIONS(1901), - [anon_sym_STAR] = ACTIONS(1905), - [anon_sym_CARET] = ACTIONS(1903), - [anon_sym_AMP] = ACTIONS(1903), - [anon_sym_this] = ACTIONS(1323), + [anon_sym_checked] = ACTIONS(1163), + [anon_sym_BANG] = ACTIONS(1167), + [anon_sym_TILDE] = ACTIONS(1167), + [anon_sym_PLUS_PLUS] = ACTIONS(1167), + [anon_sym_DASH_DASH] = ACTIONS(1167), + [anon_sym_true] = ACTIONS(1169), + [anon_sym_false] = ACTIONS(1169), + [anon_sym_PLUS] = ACTIONS(1165), + [anon_sym_DASH] = ACTIONS(1165), + [anon_sym_STAR] = ACTIONS(1171), + [anon_sym_CARET] = ACTIONS(1167), + [anon_sym_AMP] = ACTIONS(1167), + [anon_sym_this] = ACTIONS(1173), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1325), + [anon_sym_base] = ACTIONS(1175), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1319), + [sym_predefined_type] = ACTIONS(1177), + [anon_sym_unchecked] = ACTIONS(1163), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1907), + [anon_sym_default] = ACTIONS(1179), + [anon_sym_throw] = ACTIONS(1181), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1909), - [anon_sym_DOT_DOT] = ACTIONS(1911), + [anon_sym_await] = ACTIONS(1183), + [anon_sym_DOT_DOT] = ACTIONS(1185), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -254345,19 +254231,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1333), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(1335), - [anon_sym___reftype] = ACTIONS(1337), - [anon_sym___refvalue] = ACTIONS(1339), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1341), + [anon_sym_stackalloc] = ACTIONS(1187), + [anon_sym_sizeof] = ACTIONS(1189), + [anon_sym_typeof] = ACTIONS(1191), + [anon_sym___makeref] = ACTIONS(1193), + [anon_sym___reftype] = ACTIONS(1195), + [anon_sym___refvalue] = ACTIONS(1197), + [sym_null_literal] = ACTIONS(1199), + [anon_sym_SQUOTE] = ACTIONS(1201), + [sym_integer_literal] = ACTIONS(1199), + [sym_real_literal] = ACTIONS(1203), + [anon_sym_DQUOTE] = ACTIONS(1205), + [sym_verbatim_string_literal] = ACTIONS(1203), + [aux_sym_preproc_if_token1] = ACTIONS(1207), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -254368,90 +254254,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(151), - [sym_interpolation_verbatim_start] = ACTIONS(153), - [sym_interpolation_raw_start] = ACTIONS(155), - [sym_raw_string_start] = ACTIONS(157), + [sym_interpolation_regular_start] = ACTIONS(1209), + [sym_interpolation_verbatim_start] = ACTIONS(1211), + [sym_interpolation_raw_start] = ACTIONS(1213), + [sym_raw_string_start] = ACTIONS(1215), }, [1258] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2762), - [sym__name] = STATE(5891), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2372), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(4941), - [sym_non_lvalue_expression] = STATE(3438), - [sym_lvalue_expression] = STATE(3530), - [sym__expression_statement_expression] = STATE(3362), - [sym_assignment_expression] = STATE(3449), - [sym_binary_expression] = STATE(3362), - [sym_postfix_unary_expression] = STATE(3449), - [sym_prefix_unary_expression] = STATE(3449), - [sym__pointer_indirection_expression] = STATE(2747), - [sym_query_expression] = STATE(3362), - [sym_from_clause] = STATE(6167), - [sym_conditional_expression] = STATE(3362), - [sym_conditional_access_expression] = STATE(3362), - [sym_as_expression] = STATE(3362), - [sym_is_expression] = STATE(3362), - [sym_is_pattern_expression] = STATE(3362), - [sym_cast_expression] = STATE(3362), - [sym_checked_expression] = STATE(3362), - [sym_invocation_expression] = STATE(3449), - [sym_switch_expression] = STATE(3362), - [sym_await_expression] = STATE(3449), - [sym_throw_expression] = STATE(3362), - [sym_element_access_expression] = STATE(2747), - [sym_interpolated_string_expression] = STATE(3362), - [sym_member_access_expression] = STATE(2747), - [sym_object_creation_expression] = STATE(3449), - [sym_parenthesized_expression] = STATE(3449), - [sym__parenthesized_lvalue_expression] = STATE(2747), - [sym_lambda_expression] = STATE(3362), - [sym__lambda_expression_init] = STATE(7468), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3362), - [sym_anonymous_method_expression] = STATE(3362), - [sym_anonymous_object_creation_expression] = STATE(3362), - [sym_implicit_array_creation_expression] = STATE(3362), - [sym_implicit_object_creation_expression] = STATE(3362), - [sym_implicit_stackalloc_expression] = STATE(3362), - [sym_initializer_expression] = STATE(3362), - [sym_default_expression] = STATE(3362), - [sym_with_expression] = STATE(3362), - [sym_sizeof_expression] = STATE(3362), - [sym_typeof_expression] = STATE(3362), - [sym_makeref_expression] = STATE(3362), - [sym_ref_expression] = STATE(3362), - [sym_reftype_expression] = STATE(3362), - [sym_refvalue_expression] = STATE(3362), - [sym_stackalloc_expression] = STATE(3362), - [sym_range_expression] = STATE(3362), - [sym_tuple_expression] = STATE(2747), - [sym_literal] = STATE(3362), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3362), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(5881), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2386), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(4191), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3132), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3102), + [sym_postfix_unary_expression] = STATE(3079), + [sym_prefix_unary_expression] = STATE(3079), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6158), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3102), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3079), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3102), + [sym_member_access_expression] = STATE(2472), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3079), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7650), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(3102), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3102), + [sym_typeof_expression] = STATE(3102), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2472), + [sym_literal] = STATE(3102), + [sym_character_literal] = STATE(3037), + [sym_string_literal] = STATE(3037), + [sym_raw_string_literal] = STATE(3037), + [sym_boolean_literal] = STATE(3037), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(1258), [sym_preproc_endregion] = STATE(1258), [sym_preproc_line] = STATE(1258), @@ -254461,47 +254347,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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3385), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1307), - [anon_sym_LPAREN] = ACTIONS(1895), - [anon_sym_ref] = ACTIONS(1897), - [anon_sym_LBRACE] = ACTIONS(1313), - [anon_sym_delegate] = ACTIONS(1315), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1479), + [anon_sym_LPAREN] = ACTIONS(2185), + [anon_sym_ref] = ACTIONS(2187), + [anon_sym_LBRACE] = ACTIONS(1481), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), [anon_sym_new] = ACTIONS(1899), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1319), - [anon_sym_BANG] = ACTIONS(1903), - [anon_sym_TILDE] = ACTIONS(1903), - [anon_sym_PLUS_PLUS] = ACTIONS(1903), - [anon_sym_DASH_DASH] = ACTIONS(1903), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1901), - [anon_sym_DASH] = ACTIONS(1901), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(2191), + [anon_sym_TILDE] = ACTIONS(2191), + [anon_sym_PLUS_PLUS] = ACTIONS(2191), + [anon_sym_DASH_DASH] = ACTIONS(2191), + [anon_sym_true] = ACTIONS(1257), + [anon_sym_false] = ACTIONS(1257), + [anon_sym_PLUS] = ACTIONS(2189), + [anon_sym_DASH] = ACTIONS(2189), [anon_sym_STAR] = ACTIONS(1905), - [anon_sym_CARET] = ACTIONS(1903), - [anon_sym_AMP] = ACTIONS(1903), - [anon_sym_this] = ACTIONS(1323), + [anon_sym_CARET] = ACTIONS(2191), + [anon_sym_AMP] = ACTIONS(2191), + [anon_sym_this] = ACTIONS(83), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1325), + [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1319), + [sym_predefined_type] = ACTIONS(1265), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1907), + [anon_sym_default] = ACTIONS(1267), + [anon_sym_throw] = ACTIONS(2193), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1909), - [anon_sym_DOT_DOT] = ACTIONS(1911), + [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), @@ -254514,19 +254400,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1333), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(1335), - [anon_sym___reftype] = ACTIONS(1337), - [anon_sym___refvalue] = ACTIONS(1339), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1341), + [anon_sym_stackalloc] = ACTIONS(127), + [anon_sym_sizeof] = ACTIONS(1277), + [anon_sym_typeof] = ACTIONS(1279), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), + [sym_null_literal] = ACTIONS(1287), + [anon_sym_SQUOTE] = ACTIONS(1289), + [sym_integer_literal] = ACTIONS(1287), + [sym_real_literal] = ACTIONS(1291), + [anon_sym_DQUOTE] = ACTIONS(1293), + [sym_verbatim_string_literal] = ACTIONS(1291), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -254537,90 +254423,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(151), - [sym_interpolation_verbatim_start] = ACTIONS(153), - [sym_interpolation_raw_start] = ACTIONS(155), - [sym_raw_string_start] = ACTIONS(157), + [sym_interpolation_regular_start] = ACTIONS(1297), + [sym_interpolation_verbatim_start] = ACTIONS(1299), + [sym_interpolation_raw_start] = ACTIONS(1301), + [sym_raw_string_start] = ACTIONS(1303), }, [1259] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2762), - [sym__name] = STATE(5891), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2372), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(4942), - [sym_non_lvalue_expression] = STATE(3438), - [sym_lvalue_expression] = STATE(3530), - [sym__expression_statement_expression] = STATE(3362), - [sym_assignment_expression] = STATE(3449), - [sym_binary_expression] = STATE(3362), - [sym_postfix_unary_expression] = STATE(3449), - [sym_prefix_unary_expression] = STATE(3449), - [sym__pointer_indirection_expression] = STATE(2747), - [sym_query_expression] = STATE(3362), - [sym_from_clause] = STATE(6167), - [sym_conditional_expression] = STATE(3362), - [sym_conditional_access_expression] = STATE(3362), - [sym_as_expression] = STATE(3362), - [sym_is_expression] = STATE(3362), - [sym_is_pattern_expression] = STATE(3362), - [sym_cast_expression] = STATE(3362), - [sym_checked_expression] = STATE(3362), - [sym_invocation_expression] = STATE(3449), - [sym_switch_expression] = STATE(3362), - [sym_await_expression] = STATE(3449), - [sym_throw_expression] = STATE(3362), - [sym_element_access_expression] = STATE(2747), - [sym_interpolated_string_expression] = STATE(3362), - [sym_member_access_expression] = STATE(2747), - [sym_object_creation_expression] = STATE(3449), - [sym_parenthesized_expression] = STATE(3449), - [sym__parenthesized_lvalue_expression] = STATE(2747), - [sym_lambda_expression] = STATE(3362), - [sym__lambda_expression_init] = STATE(7468), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3362), - [sym_anonymous_method_expression] = STATE(3362), - [sym_anonymous_object_creation_expression] = STATE(3362), - [sym_implicit_array_creation_expression] = STATE(3362), - [sym_implicit_object_creation_expression] = STATE(3362), - [sym_implicit_stackalloc_expression] = STATE(3362), - [sym_initializer_expression] = STATE(3362), - [sym_default_expression] = STATE(3362), - [sym_with_expression] = STATE(3362), - [sym_sizeof_expression] = STATE(3362), - [sym_typeof_expression] = STATE(3362), - [sym_makeref_expression] = STATE(3362), - [sym_ref_expression] = STATE(3362), - [sym_reftype_expression] = STATE(3362), - [sym_refvalue_expression] = STATE(3362), - [sym_stackalloc_expression] = STATE(3362), - [sym_range_expression] = STATE(3362), - [sym_tuple_expression] = STATE(2747), - [sym_literal] = STATE(3362), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3362), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(5881), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2386), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(4198), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3132), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3102), + [sym_postfix_unary_expression] = STATE(3079), + [sym_prefix_unary_expression] = STATE(3079), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6158), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3102), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3079), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3102), + [sym_member_access_expression] = STATE(2472), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3079), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7650), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(3102), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3102), + [sym_typeof_expression] = STATE(3102), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2472), + [sym_literal] = STATE(3102), + [sym_character_literal] = STATE(3037), + [sym_string_literal] = STATE(3037), + [sym_raw_string_literal] = STATE(3037), + [sym_boolean_literal] = STATE(3037), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(1259), [sym_preproc_endregion] = STATE(1259), [sym_preproc_line] = STATE(1259), @@ -254630,47 +254516,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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3385), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1307), - [anon_sym_LPAREN] = ACTIONS(1895), - [anon_sym_ref] = ACTIONS(1897), - [anon_sym_LBRACE] = ACTIONS(1313), - [anon_sym_delegate] = ACTIONS(1315), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1479), + [anon_sym_LPAREN] = ACTIONS(2185), + [anon_sym_ref] = ACTIONS(2187), + [anon_sym_LBRACE] = ACTIONS(1481), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), [anon_sym_new] = ACTIONS(1899), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1319), - [anon_sym_BANG] = ACTIONS(1903), - [anon_sym_TILDE] = ACTIONS(1903), - [anon_sym_PLUS_PLUS] = ACTIONS(1903), - [anon_sym_DASH_DASH] = ACTIONS(1903), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1901), - [anon_sym_DASH] = ACTIONS(1901), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(2191), + [anon_sym_TILDE] = ACTIONS(2191), + [anon_sym_PLUS_PLUS] = ACTIONS(2191), + [anon_sym_DASH_DASH] = ACTIONS(2191), + [anon_sym_true] = ACTIONS(1257), + [anon_sym_false] = ACTIONS(1257), + [anon_sym_PLUS] = ACTIONS(2189), + [anon_sym_DASH] = ACTIONS(2189), [anon_sym_STAR] = ACTIONS(1905), - [anon_sym_CARET] = ACTIONS(1903), - [anon_sym_AMP] = ACTIONS(1903), - [anon_sym_this] = ACTIONS(1323), + [anon_sym_CARET] = ACTIONS(2191), + [anon_sym_AMP] = ACTIONS(2191), + [anon_sym_this] = ACTIONS(83), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1325), + [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1319), + [sym_predefined_type] = ACTIONS(1265), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1907), + [anon_sym_default] = ACTIONS(1267), + [anon_sym_throw] = ACTIONS(2193), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1909), - [anon_sym_DOT_DOT] = ACTIONS(1911), + [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), @@ -254683,19 +254569,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1333), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(1335), - [anon_sym___reftype] = ACTIONS(1337), - [anon_sym___refvalue] = ACTIONS(1339), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1341), + [anon_sym_stackalloc] = ACTIONS(127), + [anon_sym_sizeof] = ACTIONS(1277), + [anon_sym_typeof] = ACTIONS(1279), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), + [sym_null_literal] = ACTIONS(1287), + [anon_sym_SQUOTE] = ACTIONS(1289), + [sym_integer_literal] = ACTIONS(1287), + [sym_real_literal] = ACTIONS(1291), + [anon_sym_DQUOTE] = ACTIONS(1293), + [sym_verbatim_string_literal] = ACTIONS(1291), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -254706,90 +254592,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(151), - [sym_interpolation_verbatim_start] = ACTIONS(153), - [sym_interpolation_raw_start] = ACTIONS(155), - [sym_raw_string_start] = ACTIONS(157), + [sym_interpolation_regular_start] = ACTIONS(1297), + [sym_interpolation_verbatim_start] = ACTIONS(1299), + [sym_interpolation_raw_start] = ACTIONS(1301), + [sym_raw_string_start] = ACTIONS(1303), }, [1260] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2762), - [sym__name] = STATE(5891), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2372), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(4952), - [sym_non_lvalue_expression] = STATE(3438), - [sym_lvalue_expression] = STATE(3530), - [sym__expression_statement_expression] = STATE(3362), - [sym_assignment_expression] = STATE(3449), - [sym_binary_expression] = STATE(3362), - [sym_postfix_unary_expression] = STATE(3449), - [sym_prefix_unary_expression] = STATE(3449), - [sym__pointer_indirection_expression] = STATE(2747), - [sym_query_expression] = STATE(3362), - [sym_from_clause] = STATE(6167), - [sym_conditional_expression] = STATE(3362), - [sym_conditional_access_expression] = STATE(3362), - [sym_as_expression] = STATE(3362), - [sym_is_expression] = STATE(3362), - [sym_is_pattern_expression] = STATE(3362), - [sym_cast_expression] = STATE(3362), - [sym_checked_expression] = STATE(3362), - [sym_invocation_expression] = STATE(3449), - [sym_switch_expression] = STATE(3362), - [sym_await_expression] = STATE(3449), - [sym_throw_expression] = STATE(3362), - [sym_element_access_expression] = STATE(2747), - [sym_interpolated_string_expression] = STATE(3362), - [sym_member_access_expression] = STATE(2747), - [sym_object_creation_expression] = STATE(3449), - [sym_parenthesized_expression] = STATE(3449), - [sym__parenthesized_lvalue_expression] = STATE(2747), - [sym_lambda_expression] = STATE(3362), - [sym__lambda_expression_init] = STATE(7468), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3362), - [sym_anonymous_method_expression] = STATE(3362), - [sym_anonymous_object_creation_expression] = STATE(3362), - [sym_implicit_array_creation_expression] = STATE(3362), - [sym_implicit_object_creation_expression] = STATE(3362), - [sym_implicit_stackalloc_expression] = STATE(3362), - [sym_initializer_expression] = STATE(3362), - [sym_default_expression] = STATE(3362), - [sym_with_expression] = STATE(3362), - [sym_sizeof_expression] = STATE(3362), - [sym_typeof_expression] = STATE(3362), - [sym_makeref_expression] = STATE(3362), - [sym_ref_expression] = STATE(3362), - [sym_reftype_expression] = STATE(3362), - [sym_refvalue_expression] = STATE(3362), - [sym_stackalloc_expression] = STATE(3362), - [sym_range_expression] = STATE(3362), - [sym_tuple_expression] = STATE(2747), - [sym_literal] = STATE(3362), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3362), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(5881), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2386), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(4169), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3132), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3102), + [sym_postfix_unary_expression] = STATE(3079), + [sym_prefix_unary_expression] = STATE(3079), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6158), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3102), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3079), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3102), + [sym_member_access_expression] = STATE(2472), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3079), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7650), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(3102), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3102), + [sym_typeof_expression] = STATE(3102), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2472), + [sym_literal] = STATE(3102), + [sym_character_literal] = STATE(3037), + [sym_string_literal] = STATE(3037), + [sym_raw_string_literal] = STATE(3037), + [sym_boolean_literal] = STATE(3037), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(1260), [sym_preproc_endregion] = STATE(1260), [sym_preproc_line] = STATE(1260), @@ -254799,47 +254685,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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3385), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1307), - [anon_sym_LPAREN] = ACTIONS(1895), - [anon_sym_ref] = ACTIONS(1897), - [anon_sym_LBRACE] = ACTIONS(1313), - [anon_sym_delegate] = ACTIONS(1315), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1479), + [anon_sym_LPAREN] = ACTIONS(2185), + [anon_sym_ref] = ACTIONS(2187), + [anon_sym_LBRACE] = ACTIONS(1481), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), [anon_sym_new] = ACTIONS(1899), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1319), - [anon_sym_BANG] = ACTIONS(1903), - [anon_sym_TILDE] = ACTIONS(1903), - [anon_sym_PLUS_PLUS] = ACTIONS(1903), - [anon_sym_DASH_DASH] = ACTIONS(1903), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1901), - [anon_sym_DASH] = ACTIONS(1901), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(2191), + [anon_sym_TILDE] = ACTIONS(2191), + [anon_sym_PLUS_PLUS] = ACTIONS(2191), + [anon_sym_DASH_DASH] = ACTIONS(2191), + [anon_sym_true] = ACTIONS(1257), + [anon_sym_false] = ACTIONS(1257), + [anon_sym_PLUS] = ACTIONS(2189), + [anon_sym_DASH] = ACTIONS(2189), [anon_sym_STAR] = ACTIONS(1905), - [anon_sym_CARET] = ACTIONS(1903), - [anon_sym_AMP] = ACTIONS(1903), - [anon_sym_this] = ACTIONS(1323), + [anon_sym_CARET] = ACTIONS(2191), + [anon_sym_AMP] = ACTIONS(2191), + [anon_sym_this] = ACTIONS(83), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1325), + [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1319), + [sym_predefined_type] = ACTIONS(1265), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1907), + [anon_sym_default] = ACTIONS(1267), + [anon_sym_throw] = ACTIONS(2193), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1909), - [anon_sym_DOT_DOT] = ACTIONS(1911), + [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), @@ -254852,19 +254738,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1333), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(1335), - [anon_sym___reftype] = ACTIONS(1337), - [anon_sym___refvalue] = ACTIONS(1339), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1341), + [anon_sym_stackalloc] = ACTIONS(127), + [anon_sym_sizeof] = ACTIONS(1277), + [anon_sym_typeof] = ACTIONS(1279), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), + [sym_null_literal] = ACTIONS(1287), + [anon_sym_SQUOTE] = ACTIONS(1289), + [sym_integer_literal] = ACTIONS(1287), + [sym_real_literal] = ACTIONS(1291), + [anon_sym_DQUOTE] = ACTIONS(1293), + [sym_verbatim_string_literal] = ACTIONS(1291), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -254875,90 +254761,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(151), - [sym_interpolation_verbatim_start] = ACTIONS(153), - [sym_interpolation_raw_start] = ACTIONS(155), - [sym_raw_string_start] = ACTIONS(157), + [sym_interpolation_regular_start] = ACTIONS(1297), + [sym_interpolation_verbatim_start] = ACTIONS(1299), + [sym_interpolation_raw_start] = ACTIONS(1301), + [sym_raw_string_start] = ACTIONS(1303), }, [1261] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2762), - [sym__name] = STATE(5891), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2372), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(3218), - [sym_non_lvalue_expression] = STATE(3438), - [sym_lvalue_expression] = STATE(3530), - [sym__expression_statement_expression] = STATE(3362), - [sym_assignment_expression] = STATE(3449), - [sym_binary_expression] = STATE(3362), - [sym_postfix_unary_expression] = STATE(3449), - [sym_prefix_unary_expression] = STATE(3449), - [sym__pointer_indirection_expression] = STATE(2747), - [sym_query_expression] = STATE(3362), - [sym_from_clause] = STATE(6167), - [sym_conditional_expression] = STATE(3362), - [sym_conditional_access_expression] = STATE(3362), - [sym_as_expression] = STATE(3362), - [sym_is_expression] = STATE(3362), - [sym_is_pattern_expression] = STATE(3362), - [sym_cast_expression] = STATE(3362), - [sym_checked_expression] = STATE(3362), - [sym_invocation_expression] = STATE(3449), - [sym_switch_expression] = STATE(3362), - [sym_await_expression] = STATE(3449), - [sym_throw_expression] = STATE(3362), - [sym_element_access_expression] = STATE(2747), - [sym_interpolated_string_expression] = STATE(3362), - [sym_member_access_expression] = STATE(2747), - [sym_object_creation_expression] = STATE(3449), - [sym_parenthesized_expression] = STATE(3449), - [sym__parenthesized_lvalue_expression] = STATE(2747), - [sym_lambda_expression] = STATE(3362), - [sym__lambda_expression_init] = STATE(7468), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3362), - [sym_anonymous_method_expression] = STATE(3362), - [sym_anonymous_object_creation_expression] = STATE(3362), - [sym_implicit_array_creation_expression] = STATE(3362), - [sym_implicit_object_creation_expression] = STATE(3362), - [sym_implicit_stackalloc_expression] = STATE(3362), - [sym_initializer_expression] = STATE(3362), - [sym_default_expression] = STATE(3362), - [sym_with_expression] = STATE(3362), - [sym_sizeof_expression] = STATE(3362), - [sym_typeof_expression] = STATE(3362), - [sym_makeref_expression] = STATE(3362), - [sym_ref_expression] = STATE(3362), - [sym_reftype_expression] = STATE(3362), - [sym_refvalue_expression] = STATE(3362), - [sym_stackalloc_expression] = STATE(3362), - [sym_range_expression] = STATE(3362), - [sym_tuple_expression] = STATE(2747), - [sym_literal] = STATE(3362), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3362), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(5881), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2386), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(4213), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3132), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3102), + [sym_postfix_unary_expression] = STATE(3079), + [sym_prefix_unary_expression] = STATE(3079), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6158), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3102), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3079), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3102), + [sym_member_access_expression] = STATE(2472), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3079), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7650), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(3102), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3102), + [sym_typeof_expression] = STATE(3102), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2472), + [sym_literal] = STATE(3102), + [sym_character_literal] = STATE(3037), + [sym_string_literal] = STATE(3037), + [sym_raw_string_literal] = STATE(3037), + [sym_boolean_literal] = STATE(3037), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(1261), [sym_preproc_endregion] = STATE(1261), [sym_preproc_line] = STATE(1261), @@ -254968,47 +254854,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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3385), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1307), - [anon_sym_LPAREN] = ACTIONS(1895), - [anon_sym_ref] = ACTIONS(1897), - [anon_sym_LBRACE] = ACTIONS(1313), - [anon_sym_delegate] = ACTIONS(1315), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1479), + [anon_sym_LPAREN] = ACTIONS(2185), + [anon_sym_ref] = ACTIONS(2187), + [anon_sym_LBRACE] = ACTIONS(1481), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), [anon_sym_new] = ACTIONS(1899), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1319), - [anon_sym_BANG] = ACTIONS(1903), - [anon_sym_TILDE] = ACTIONS(1903), - [anon_sym_PLUS_PLUS] = ACTIONS(1903), - [anon_sym_DASH_DASH] = ACTIONS(1903), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1901), - [anon_sym_DASH] = ACTIONS(1901), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(2191), + [anon_sym_TILDE] = ACTIONS(2191), + [anon_sym_PLUS_PLUS] = ACTIONS(2191), + [anon_sym_DASH_DASH] = ACTIONS(2191), + [anon_sym_true] = ACTIONS(1257), + [anon_sym_false] = ACTIONS(1257), + [anon_sym_PLUS] = ACTIONS(2189), + [anon_sym_DASH] = ACTIONS(2189), [anon_sym_STAR] = ACTIONS(1905), - [anon_sym_CARET] = ACTIONS(1903), - [anon_sym_AMP] = ACTIONS(1903), - [anon_sym_this] = ACTIONS(1323), + [anon_sym_CARET] = ACTIONS(2191), + [anon_sym_AMP] = ACTIONS(2191), + [anon_sym_this] = ACTIONS(83), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1325), + [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1319), + [sym_predefined_type] = ACTIONS(1265), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1907), + [anon_sym_default] = ACTIONS(1267), + [anon_sym_throw] = ACTIONS(2193), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1909), - [anon_sym_DOT_DOT] = ACTIONS(1911), + [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), @@ -255021,19 +254907,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1333), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(1335), - [anon_sym___reftype] = ACTIONS(1337), - [anon_sym___refvalue] = ACTIONS(1339), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1341), + [anon_sym_stackalloc] = ACTIONS(127), + [anon_sym_sizeof] = ACTIONS(1277), + [anon_sym_typeof] = ACTIONS(1279), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), + [sym_null_literal] = ACTIONS(1287), + [anon_sym_SQUOTE] = ACTIONS(1289), + [sym_integer_literal] = ACTIONS(1287), + [sym_real_literal] = ACTIONS(1291), + [anon_sym_DQUOTE] = ACTIONS(1293), + [sym_verbatim_string_literal] = ACTIONS(1291), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -255044,90 +254930,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(151), - [sym_interpolation_verbatim_start] = ACTIONS(153), - [sym_interpolation_raw_start] = ACTIONS(155), - [sym_raw_string_start] = ACTIONS(157), + [sym_interpolation_regular_start] = ACTIONS(1297), + [sym_interpolation_verbatim_start] = ACTIONS(1299), + [sym_interpolation_raw_start] = ACTIONS(1301), + [sym_raw_string_start] = ACTIONS(1303), }, [1262] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2610), - [sym__name] = STATE(5898), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2197), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(4650), - [sym_non_lvalue_expression] = STATE(3277), - [sym_lvalue_expression] = STATE(3413), - [sym__expression_statement_expression] = STATE(3228), - [sym_assignment_expression] = STATE(3289), - [sym_binary_expression] = STATE(3228), - [sym_postfix_unary_expression] = STATE(3289), - [sym_prefix_unary_expression] = STATE(3289), - [sym__pointer_indirection_expression] = STATE(2609), - [sym_query_expression] = STATE(3228), - [sym_from_clause] = STATE(6160), - [sym_conditional_expression] = STATE(3228), - [sym_conditional_access_expression] = STATE(3228), - [sym_as_expression] = STATE(3228), - [sym_is_expression] = STATE(3228), - [sym_is_pattern_expression] = STATE(3228), - [sym_cast_expression] = STATE(3228), - [sym_checked_expression] = STATE(3228), - [sym_invocation_expression] = STATE(3289), - [sym_switch_expression] = STATE(3228), - [sym_await_expression] = STATE(3289), - [sym_throw_expression] = STATE(3228), - [sym_element_access_expression] = STATE(2609), - [sym_interpolated_string_expression] = STATE(3228), - [sym_member_access_expression] = STATE(2609), - [sym_object_creation_expression] = STATE(3289), - [sym_parenthesized_expression] = STATE(3289), - [sym__parenthesized_lvalue_expression] = STATE(2609), - [sym_lambda_expression] = STATE(3228), - [sym__lambda_expression_init] = STATE(7523), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3228), - [sym_anonymous_method_expression] = STATE(3228), - [sym_anonymous_object_creation_expression] = STATE(3228), - [sym_implicit_array_creation_expression] = STATE(3228), - [sym_implicit_object_creation_expression] = STATE(3228), - [sym_implicit_stackalloc_expression] = STATE(3228), - [sym_initializer_expression] = STATE(3228), - [sym_default_expression] = STATE(3228), - [sym_with_expression] = STATE(3228), - [sym_sizeof_expression] = STATE(3228), - [sym_typeof_expression] = STATE(3228), - [sym_makeref_expression] = STATE(3228), - [sym_ref_expression] = STATE(3228), - [sym_reftype_expression] = STATE(3228), - [sym_refvalue_expression] = STATE(3228), - [sym_stackalloc_expression] = STATE(3228), - [sym_range_expression] = STATE(3228), - [sym_tuple_expression] = STATE(2609), - [sym_literal] = STATE(3228), - [sym_character_literal] = STATE(3278), - [sym_string_literal] = STATE(3278), - [sym_raw_string_literal] = STATE(3278), - [sym_boolean_literal] = STATE(3278), - [sym_identifier] = STATE(2267), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3228), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2816), + [sym__name] = STATE(5879), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2196), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(5023), + [sym_non_lvalue_expression] = STATE(3495), + [sym_lvalue_expression] = STATE(3539), + [sym__expression_statement_expression] = STATE(3462), + [sym_assignment_expression] = STATE(3497), + [sym_binary_expression] = STATE(3462), + [sym_postfix_unary_expression] = STATE(3497), + [sym_prefix_unary_expression] = STATE(3497), + [sym__pointer_indirection_expression] = STATE(2815), + [sym_query_expression] = STATE(3462), + [sym_from_clause] = STATE(6144), + [sym_conditional_expression] = STATE(3462), + [sym_conditional_access_expression] = STATE(3462), + [sym_as_expression] = STATE(3462), + [sym_is_expression] = STATE(3462), + [sym_is_pattern_expression] = STATE(3462), + [sym_cast_expression] = STATE(3462), + [sym_checked_expression] = STATE(3462), + [sym_invocation_expression] = STATE(3497), + [sym_switch_expression] = STATE(3462), + [sym_await_expression] = STATE(3497), + [sym_throw_expression] = STATE(3462), + [sym_element_access_expression] = STATE(2815), + [sym_interpolated_string_expression] = STATE(3462), + [sym_member_access_expression] = STATE(2815), + [sym_object_creation_expression] = STATE(3497), + [sym_parenthesized_expression] = STATE(3497), + [sym__parenthesized_lvalue_expression] = STATE(2815), + [sym_lambda_expression] = STATE(3462), + [sym__lambda_expression_init] = STATE(7681), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3462), + [sym_anonymous_method_expression] = STATE(3462), + [sym_anonymous_object_creation_expression] = STATE(3462), + [sym_implicit_array_creation_expression] = STATE(3462), + [sym_implicit_object_creation_expression] = STATE(3462), + [sym_implicit_stackalloc_expression] = STATE(3462), + [sym_initializer_expression] = STATE(3462), + [sym_default_expression] = STATE(3462), + [sym_with_expression] = STATE(3462), + [sym_sizeof_expression] = STATE(3462), + [sym_typeof_expression] = STATE(3462), + [sym_makeref_expression] = STATE(3462), + [sym_ref_expression] = STATE(3462), + [sym_reftype_expression] = STATE(3462), + [sym_refvalue_expression] = STATE(3462), + [sym_stackalloc_expression] = STATE(3462), + [sym_range_expression] = STATE(3462), + [sym_tuple_expression] = STATE(2815), + [sym_literal] = STATE(3462), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3462), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(1262), [sym_preproc_endregion] = STATE(1262), [sym_preproc_line] = STATE(1262), @@ -255137,47 +255023,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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3396), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3367), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1153), - [anon_sym_LPAREN] = ACTIONS(1593), - [anon_sym_ref] = ACTIONS(1595), - [anon_sym_LBRACE] = ACTIONS(1159), - [anon_sym_delegate] = ACTIONS(1161), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1305), + [anon_sym_LPAREN] = ACTIONS(1721), + [anon_sym_ref] = ACTIONS(1723), + [anon_sym_LBRACE] = ACTIONS(1311), + [anon_sym_delegate] = ACTIONS(1313), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1163), + [anon_sym_new] = ACTIONS(1315), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1167), - [anon_sym_BANG] = ACTIONS(1599), - [anon_sym_TILDE] = ACTIONS(1599), - [anon_sym_PLUS_PLUS] = ACTIONS(1599), - [anon_sym_DASH_DASH] = ACTIONS(1599), - [anon_sym_true] = ACTIONS(1173), - [anon_sym_false] = ACTIONS(1173), - [anon_sym_PLUS] = ACTIONS(1597), - [anon_sym_DASH] = ACTIONS(1597), - [anon_sym_STAR] = ACTIONS(1601), - [anon_sym_CARET] = ACTIONS(1599), - [anon_sym_AMP] = ACTIONS(1599), - [anon_sym_this] = ACTIONS(1177), + [anon_sym_checked] = ACTIONS(1317), + [anon_sym_BANG] = ACTIONS(1727), + [anon_sym_TILDE] = ACTIONS(1727), + [anon_sym_PLUS_PLUS] = ACTIONS(1727), + [anon_sym_DASH_DASH] = ACTIONS(1727), + [anon_sym_true] = ACTIONS(77), + [anon_sym_false] = ACTIONS(77), + [anon_sym_PLUS] = ACTIONS(1725), + [anon_sym_DASH] = ACTIONS(1725), + [anon_sym_STAR] = ACTIONS(1729), + [anon_sym_CARET] = ACTIONS(1727), + [anon_sym_AMP] = ACTIONS(1727), + [anon_sym_this] = ACTIONS(1321), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1179), + [anon_sym_base] = ACTIONS(1323), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1181), - [anon_sym_unchecked] = ACTIONS(1167), + [sym_predefined_type] = ACTIONS(91), + [anon_sym_unchecked] = ACTIONS(1317), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1183), - [anon_sym_throw] = ACTIONS(1603), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(1731), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1605), - [anon_sym_DOT_DOT] = ACTIONS(1607), + [anon_sym_await] = ACTIONS(1733), + [anon_sym_DOT_DOT] = ACTIONS(1735), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -255190,19 +255076,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1191), - [anon_sym_sizeof] = ACTIONS(1193), - [anon_sym_typeof] = ACTIONS(1195), - [anon_sym___makeref] = ACTIONS(1197), - [anon_sym___reftype] = ACTIONS(1199), - [anon_sym___refvalue] = ACTIONS(1201), - [sym_null_literal] = ACTIONS(1203), - [anon_sym_SQUOTE] = ACTIONS(1205), - [sym_integer_literal] = ACTIONS(1203), - [sym_real_literal] = ACTIONS(1207), - [anon_sym_DQUOTE] = ACTIONS(1209), - [sym_verbatim_string_literal] = ACTIONS(1207), - [aux_sym_preproc_if_token1] = ACTIONS(1211), + [anon_sym_stackalloc] = ACTIONS(1331), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(1333), + [anon_sym___reftype] = ACTIONS(1335), + [anon_sym___refvalue] = ACTIONS(1337), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_literal] = ACTIONS(143), + [anon_sym_DQUOTE] = ACTIONS(145), + [sym_verbatim_string_literal] = ACTIONS(143), + [aux_sym_preproc_if_token1] = ACTIONS(1339), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -255213,90 +255099,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1213), - [sym_interpolation_verbatim_start] = ACTIONS(1215), - [sym_interpolation_raw_start] = ACTIONS(1217), - [sym_raw_string_start] = ACTIONS(1219), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [sym_interpolation_raw_start] = ACTIONS(155), + [sym_raw_string_start] = ACTIONS(157), }, [1263] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2762), - [sym__name] = STATE(5891), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2372), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(4961), - [sym_non_lvalue_expression] = STATE(3438), - [sym_lvalue_expression] = STATE(3530), - [sym__expression_statement_expression] = STATE(3362), - [sym_assignment_expression] = STATE(3449), - [sym_binary_expression] = STATE(3362), - [sym_postfix_unary_expression] = STATE(3449), - [sym_prefix_unary_expression] = STATE(3449), - [sym__pointer_indirection_expression] = STATE(2747), - [sym_query_expression] = STATE(3362), - [sym_from_clause] = STATE(6167), - [sym_conditional_expression] = STATE(3362), - [sym_conditional_access_expression] = STATE(3362), - [sym_as_expression] = STATE(3362), - [sym_is_expression] = STATE(3362), - [sym_is_pattern_expression] = STATE(3362), - [sym_cast_expression] = STATE(3362), - [sym_checked_expression] = STATE(3362), - [sym_invocation_expression] = STATE(3449), - [sym_switch_expression] = STATE(3362), - [sym_await_expression] = STATE(3449), - [sym_throw_expression] = STATE(3362), - [sym_element_access_expression] = STATE(2747), - [sym_interpolated_string_expression] = STATE(3362), - [sym_member_access_expression] = STATE(2747), - [sym_object_creation_expression] = STATE(3449), - [sym_parenthesized_expression] = STATE(3449), - [sym__parenthesized_lvalue_expression] = STATE(2747), - [sym_lambda_expression] = STATE(3362), - [sym__lambda_expression_init] = STATE(7468), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3362), - [sym_anonymous_method_expression] = STATE(3362), - [sym_anonymous_object_creation_expression] = STATE(3362), - [sym_implicit_array_creation_expression] = STATE(3362), - [sym_implicit_object_creation_expression] = STATE(3362), - [sym_implicit_stackalloc_expression] = STATE(3362), - [sym_initializer_expression] = STATE(3362), - [sym_default_expression] = STATE(3362), - [sym_with_expression] = STATE(3362), - [sym_sizeof_expression] = STATE(3362), - [sym_typeof_expression] = STATE(3362), - [sym_makeref_expression] = STATE(3362), - [sym_ref_expression] = STATE(3362), - [sym_reftype_expression] = STATE(3362), - [sym_refvalue_expression] = STATE(3362), - [sym_stackalloc_expression] = STATE(3362), - [sym_range_expression] = STATE(3362), - [sym_tuple_expression] = STATE(2747), - [sym_literal] = STATE(3362), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3362), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2816), + [sym__name] = STATE(5879), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2196), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(5025), + [sym_non_lvalue_expression] = STATE(3495), + [sym_lvalue_expression] = STATE(3539), + [sym__expression_statement_expression] = STATE(3462), + [sym_assignment_expression] = STATE(3497), + [sym_binary_expression] = STATE(3462), + [sym_postfix_unary_expression] = STATE(3497), + [sym_prefix_unary_expression] = STATE(3497), + [sym__pointer_indirection_expression] = STATE(2815), + [sym_query_expression] = STATE(3462), + [sym_from_clause] = STATE(6144), + [sym_conditional_expression] = STATE(3462), + [sym_conditional_access_expression] = STATE(3462), + [sym_as_expression] = STATE(3462), + [sym_is_expression] = STATE(3462), + [sym_is_pattern_expression] = STATE(3462), + [sym_cast_expression] = STATE(3462), + [sym_checked_expression] = STATE(3462), + [sym_invocation_expression] = STATE(3497), + [sym_switch_expression] = STATE(3462), + [sym_await_expression] = STATE(3497), + [sym_throw_expression] = STATE(3462), + [sym_element_access_expression] = STATE(2815), + [sym_interpolated_string_expression] = STATE(3462), + [sym_member_access_expression] = STATE(2815), + [sym_object_creation_expression] = STATE(3497), + [sym_parenthesized_expression] = STATE(3497), + [sym__parenthesized_lvalue_expression] = STATE(2815), + [sym_lambda_expression] = STATE(3462), + [sym__lambda_expression_init] = STATE(7681), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3462), + [sym_anonymous_method_expression] = STATE(3462), + [sym_anonymous_object_creation_expression] = STATE(3462), + [sym_implicit_array_creation_expression] = STATE(3462), + [sym_implicit_object_creation_expression] = STATE(3462), + [sym_implicit_stackalloc_expression] = STATE(3462), + [sym_initializer_expression] = STATE(3462), + [sym_default_expression] = STATE(3462), + [sym_with_expression] = STATE(3462), + [sym_sizeof_expression] = STATE(3462), + [sym_typeof_expression] = STATE(3462), + [sym_makeref_expression] = STATE(3462), + [sym_ref_expression] = STATE(3462), + [sym_reftype_expression] = STATE(3462), + [sym_refvalue_expression] = STATE(3462), + [sym_stackalloc_expression] = STATE(3462), + [sym_range_expression] = STATE(3462), + [sym_tuple_expression] = STATE(2815), + [sym_literal] = STATE(3462), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3462), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(1263), [sym_preproc_endregion] = STATE(1263), [sym_preproc_line] = STATE(1263), @@ -255306,47 +255192,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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3385), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3367), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1307), - [anon_sym_LPAREN] = ACTIONS(1895), - [anon_sym_ref] = ACTIONS(1897), - [anon_sym_LBRACE] = ACTIONS(1313), - [anon_sym_delegate] = ACTIONS(1315), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1305), + [anon_sym_LPAREN] = ACTIONS(1721), + [anon_sym_ref] = ACTIONS(1723), + [anon_sym_LBRACE] = ACTIONS(1311), + [anon_sym_delegate] = ACTIONS(1313), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1899), + [anon_sym_new] = ACTIONS(1315), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1319), - [anon_sym_BANG] = ACTIONS(1903), - [anon_sym_TILDE] = ACTIONS(1903), - [anon_sym_PLUS_PLUS] = ACTIONS(1903), - [anon_sym_DASH_DASH] = ACTIONS(1903), + [anon_sym_checked] = ACTIONS(1317), + [anon_sym_BANG] = ACTIONS(1727), + [anon_sym_TILDE] = ACTIONS(1727), + [anon_sym_PLUS_PLUS] = ACTIONS(1727), + [anon_sym_DASH_DASH] = ACTIONS(1727), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1901), - [anon_sym_DASH] = ACTIONS(1901), - [anon_sym_STAR] = ACTIONS(1905), - [anon_sym_CARET] = ACTIONS(1903), - [anon_sym_AMP] = ACTIONS(1903), - [anon_sym_this] = ACTIONS(1323), + [anon_sym_PLUS] = ACTIONS(1725), + [anon_sym_DASH] = ACTIONS(1725), + [anon_sym_STAR] = ACTIONS(1729), + [anon_sym_CARET] = ACTIONS(1727), + [anon_sym_AMP] = ACTIONS(1727), + [anon_sym_this] = ACTIONS(1321), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1325), + [anon_sym_base] = ACTIONS(1323), [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1319), + [anon_sym_unchecked] = ACTIONS(1317), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1907), + [anon_sym_throw] = ACTIONS(1731), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1909), - [anon_sym_DOT_DOT] = ACTIONS(1911), + [anon_sym_await] = ACTIONS(1733), + [anon_sym_DOT_DOT] = ACTIONS(1735), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -255359,19 +255245,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1333), + [anon_sym_stackalloc] = ACTIONS(1331), [anon_sym_sizeof] = ACTIONS(129), [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(1335), - [anon_sym___reftype] = ACTIONS(1337), - [anon_sym___refvalue] = ACTIONS(1339), + [anon_sym___makeref] = ACTIONS(1333), + [anon_sym___reftype] = ACTIONS(1335), + [anon_sym___refvalue] = ACTIONS(1337), [sym_null_literal] = ACTIONS(139), [anon_sym_SQUOTE] = ACTIONS(141), [sym_integer_literal] = ACTIONS(139), [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1341), + [aux_sym_preproc_if_token1] = ACTIONS(1339), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -255388,84 +255274,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [1264] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2762), - [sym__name] = STATE(5891), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2372), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(3163), - [sym_non_lvalue_expression] = STATE(3438), - [sym_lvalue_expression] = STATE(3530), - [sym__expression_statement_expression] = STATE(3362), - [sym_assignment_expression] = STATE(3449), - [sym_binary_expression] = STATE(3362), - [sym_postfix_unary_expression] = STATE(3449), - [sym_prefix_unary_expression] = STATE(3449), - [sym__pointer_indirection_expression] = STATE(2747), - [sym_query_expression] = STATE(3362), - [sym_from_clause] = STATE(6167), - [sym_conditional_expression] = STATE(3362), - [sym_conditional_access_expression] = STATE(3362), - [sym_as_expression] = STATE(3362), - [sym_is_expression] = STATE(3362), - [sym_is_pattern_expression] = STATE(3362), - [sym_cast_expression] = STATE(3362), - [sym_checked_expression] = STATE(3362), - [sym_invocation_expression] = STATE(3449), - [sym_switch_expression] = STATE(3362), - [sym_await_expression] = STATE(3449), - [sym_throw_expression] = STATE(3362), - [sym_element_access_expression] = STATE(2747), - [sym_interpolated_string_expression] = STATE(3362), - [sym_member_access_expression] = STATE(2747), - [sym_object_creation_expression] = STATE(3449), - [sym_parenthesized_expression] = STATE(3449), - [sym__parenthesized_lvalue_expression] = STATE(2747), - [sym_lambda_expression] = STATE(3362), - [sym__lambda_expression_init] = STATE(7468), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3362), - [sym_anonymous_method_expression] = STATE(3362), - [sym_anonymous_object_creation_expression] = STATE(3362), - [sym_implicit_array_creation_expression] = STATE(3362), - [sym_implicit_object_creation_expression] = STATE(3362), - [sym_implicit_stackalloc_expression] = STATE(3362), - [sym_initializer_expression] = STATE(3362), - [sym_default_expression] = STATE(3362), - [sym_with_expression] = STATE(3362), - [sym_sizeof_expression] = STATE(3362), - [sym_typeof_expression] = STATE(3362), - [sym_makeref_expression] = STATE(3362), - [sym_ref_expression] = STATE(3362), - [sym_reftype_expression] = STATE(3362), - [sym_refvalue_expression] = STATE(3362), - [sym_stackalloc_expression] = STATE(3362), - [sym_range_expression] = STATE(3362), - [sym_tuple_expression] = STATE(2747), - [sym_literal] = STATE(3362), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3362), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2816), + [sym__name] = STATE(5879), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2196), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(4971), + [sym_non_lvalue_expression] = STATE(3495), + [sym_lvalue_expression] = STATE(3539), + [sym__expression_statement_expression] = STATE(3462), + [sym_assignment_expression] = STATE(3497), + [sym_binary_expression] = STATE(3462), + [sym_postfix_unary_expression] = STATE(3497), + [sym_prefix_unary_expression] = STATE(3497), + [sym__pointer_indirection_expression] = STATE(2815), + [sym_query_expression] = STATE(3462), + [sym_from_clause] = STATE(6144), + [sym_conditional_expression] = STATE(3462), + [sym_conditional_access_expression] = STATE(3462), + [sym_as_expression] = STATE(3462), + [sym_is_expression] = STATE(3462), + [sym_is_pattern_expression] = STATE(3462), + [sym_cast_expression] = STATE(3462), + [sym_checked_expression] = STATE(3462), + [sym_invocation_expression] = STATE(3497), + [sym_switch_expression] = STATE(3462), + [sym_await_expression] = STATE(3497), + [sym_throw_expression] = STATE(3462), + [sym_element_access_expression] = STATE(2815), + [sym_interpolated_string_expression] = STATE(3462), + [sym_member_access_expression] = STATE(2815), + [sym_object_creation_expression] = STATE(3497), + [sym_parenthesized_expression] = STATE(3497), + [sym__parenthesized_lvalue_expression] = STATE(2815), + [sym_lambda_expression] = STATE(3462), + [sym__lambda_expression_init] = STATE(7681), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3462), + [sym_anonymous_method_expression] = STATE(3462), + [sym_anonymous_object_creation_expression] = STATE(3462), + [sym_implicit_array_creation_expression] = STATE(3462), + [sym_implicit_object_creation_expression] = STATE(3462), + [sym_implicit_stackalloc_expression] = STATE(3462), + [sym_initializer_expression] = STATE(3462), + [sym_default_expression] = STATE(3462), + [sym_with_expression] = STATE(3462), + [sym_sizeof_expression] = STATE(3462), + [sym_typeof_expression] = STATE(3462), + [sym_makeref_expression] = STATE(3462), + [sym_ref_expression] = STATE(3462), + [sym_reftype_expression] = STATE(3462), + [sym_refvalue_expression] = STATE(3462), + [sym_stackalloc_expression] = STATE(3462), + [sym_range_expression] = STATE(3462), + [sym_tuple_expression] = STATE(2815), + [sym_literal] = STATE(3462), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3462), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(1264), [sym_preproc_endregion] = STATE(1264), [sym_preproc_line] = STATE(1264), @@ -255475,47 +255361,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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3385), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3367), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1307), - [anon_sym_LPAREN] = ACTIONS(1895), - [anon_sym_ref] = ACTIONS(1897), - [anon_sym_LBRACE] = ACTIONS(1313), - [anon_sym_delegate] = ACTIONS(1315), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1305), + [anon_sym_LPAREN] = ACTIONS(1721), + [anon_sym_ref] = ACTIONS(1723), + [anon_sym_LBRACE] = ACTIONS(1311), + [anon_sym_delegate] = ACTIONS(1313), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1899), + [anon_sym_new] = ACTIONS(1315), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1319), - [anon_sym_BANG] = ACTIONS(1903), - [anon_sym_TILDE] = ACTIONS(1903), - [anon_sym_PLUS_PLUS] = ACTIONS(1903), - [anon_sym_DASH_DASH] = ACTIONS(1903), + [anon_sym_checked] = ACTIONS(1317), + [anon_sym_BANG] = ACTIONS(1727), + [anon_sym_TILDE] = ACTIONS(1727), + [anon_sym_PLUS_PLUS] = ACTIONS(1727), + [anon_sym_DASH_DASH] = ACTIONS(1727), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1901), - [anon_sym_DASH] = ACTIONS(1901), - [anon_sym_STAR] = ACTIONS(1905), - [anon_sym_CARET] = ACTIONS(1903), - [anon_sym_AMP] = ACTIONS(1903), - [anon_sym_this] = ACTIONS(1323), + [anon_sym_PLUS] = ACTIONS(1725), + [anon_sym_DASH] = ACTIONS(1725), + [anon_sym_STAR] = ACTIONS(1729), + [anon_sym_CARET] = ACTIONS(1727), + [anon_sym_AMP] = ACTIONS(1727), + [anon_sym_this] = ACTIONS(1321), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1325), + [anon_sym_base] = ACTIONS(1323), [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1319), + [anon_sym_unchecked] = ACTIONS(1317), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1907), + [anon_sym_throw] = ACTIONS(1731), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1909), - [anon_sym_DOT_DOT] = ACTIONS(1911), + [anon_sym_await] = ACTIONS(1733), + [anon_sym_DOT_DOT] = ACTIONS(1735), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -255528,19 +255414,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1333), + [anon_sym_stackalloc] = ACTIONS(1331), [anon_sym_sizeof] = ACTIONS(129), [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(1335), - [anon_sym___reftype] = ACTIONS(1337), - [anon_sym___refvalue] = ACTIONS(1339), + [anon_sym___makeref] = ACTIONS(1333), + [anon_sym___reftype] = ACTIONS(1335), + [anon_sym___refvalue] = ACTIONS(1337), [sym_null_literal] = ACTIONS(139), [anon_sym_SQUOTE] = ACTIONS(141), [sym_integer_literal] = ACTIONS(139), [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1341), + [aux_sym_preproc_if_token1] = ACTIONS(1339), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -255557,84 +255443,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [1265] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(5160), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2204), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(5513), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3461), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3080), - [sym_postfix_unary_expression] = STATE(3111), - [sym_prefix_unary_expression] = STATE(3111), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6154), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3080), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3111), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3080), - [sym_member_access_expression] = STATE(2484), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3111), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7547), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(3080), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3080), - [sym_typeof_expression] = STATE(3080), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2484), - [sym_literal] = STATE(3080), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2816), + [sym__name] = STATE(5879), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2196), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(5026), + [sym_non_lvalue_expression] = STATE(3495), + [sym_lvalue_expression] = STATE(3539), + [sym__expression_statement_expression] = STATE(3462), + [sym_assignment_expression] = STATE(3497), + [sym_binary_expression] = STATE(3462), + [sym_postfix_unary_expression] = STATE(3497), + [sym_prefix_unary_expression] = STATE(3497), + [sym__pointer_indirection_expression] = STATE(2815), + [sym_query_expression] = STATE(3462), + [sym_from_clause] = STATE(6144), + [sym_conditional_expression] = STATE(3462), + [sym_conditional_access_expression] = STATE(3462), + [sym_as_expression] = STATE(3462), + [sym_is_expression] = STATE(3462), + [sym_is_pattern_expression] = STATE(3462), + [sym_cast_expression] = STATE(3462), + [sym_checked_expression] = STATE(3462), + [sym_invocation_expression] = STATE(3497), + [sym_switch_expression] = STATE(3462), + [sym_await_expression] = STATE(3497), + [sym_throw_expression] = STATE(3462), + [sym_element_access_expression] = STATE(2815), + [sym_interpolated_string_expression] = STATE(3462), + [sym_member_access_expression] = STATE(2815), + [sym_object_creation_expression] = STATE(3497), + [sym_parenthesized_expression] = STATE(3497), + [sym__parenthesized_lvalue_expression] = STATE(2815), + [sym_lambda_expression] = STATE(3462), + [sym__lambda_expression_init] = STATE(7681), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3462), + [sym_anonymous_method_expression] = STATE(3462), + [sym_anonymous_object_creation_expression] = STATE(3462), + [sym_implicit_array_creation_expression] = STATE(3462), + [sym_implicit_object_creation_expression] = STATE(3462), + [sym_implicit_stackalloc_expression] = STATE(3462), + [sym_initializer_expression] = STATE(3462), + [sym_default_expression] = STATE(3462), + [sym_with_expression] = STATE(3462), + [sym_sizeof_expression] = STATE(3462), + [sym_typeof_expression] = STATE(3462), + [sym_makeref_expression] = STATE(3462), + [sym_ref_expression] = STATE(3462), + [sym_reftype_expression] = STATE(3462), + [sym_refvalue_expression] = STATE(3462), + [sym_stackalloc_expression] = STATE(3462), + [sym_range_expression] = STATE(3462), + [sym_tuple_expression] = STATE(2815), + [sym_literal] = STATE(3462), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3462), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(1265), [sym_preproc_endregion] = STATE(1265), [sym_preproc_line] = STATE(1265), @@ -255644,47 +255530,47 @@ 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(3067), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), [aux_sym__lambda_expression_init_repeat1] = STATE(3367), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1481), - [anon_sym_LPAREN] = ACTIONS(1497), - [anon_sym_ref] = ACTIONS(1499), - [anon_sym_LBRACE] = ACTIONS(1487), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1305), + [anon_sym_LPAREN] = ACTIONS(1721), + [anon_sym_ref] = ACTIONS(1723), + [anon_sym_LBRACE] = ACTIONS(1311), + [anon_sym_delegate] = ACTIONS(1313), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1501), + [anon_sym_new] = ACTIONS(1315), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = 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_checked] = ACTIONS(1317), + [anon_sym_BANG] = ACTIONS(1727), + [anon_sym_TILDE] = ACTIONS(1727), + [anon_sym_PLUS_PLUS] = ACTIONS(1727), + [anon_sym_DASH_DASH] = ACTIONS(1727), [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(1725), + [anon_sym_DASH] = ACTIONS(1725), + [anon_sym_STAR] = ACTIONS(1729), + [anon_sym_CARET] = ACTIONS(1727), + [anon_sym_AMP] = ACTIONS(1727), + [anon_sym_this] = ACTIONS(1321), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), + [anon_sym_base] = ACTIONS(1323), [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1067), + [anon_sym_unchecked] = ACTIONS(1317), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1503), + [anon_sym_throw] = ACTIONS(1731), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1505), - [anon_sym_DOT_DOT] = ACTIONS(1507), + [anon_sym_await] = ACTIONS(1733), + [anon_sym_DOT_DOT] = ACTIONS(1735), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -255697,19 +255583,19 @@ static const uint16_t ts_parse_table[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(1331), [anon_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(1333), + [anon_sym___reftype] = ACTIONS(1335), + [anon_sym___refvalue] = ACTIONS(1337), [sym_null_literal] = ACTIONS(139), [anon_sym_SQUOTE] = ACTIONS(141), [sym_integer_literal] = ACTIONS(139), [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1089), + [aux_sym_preproc_if_token1] = ACTIONS(1339), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -255726,84 +255612,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [1266] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2762), - [sym__name] = STATE(5891), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2372), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(4964), - [sym_non_lvalue_expression] = STATE(3438), - [sym_lvalue_expression] = STATE(3530), - [sym__expression_statement_expression] = STATE(3362), - [sym_assignment_expression] = STATE(3449), - [sym_binary_expression] = STATE(3362), - [sym_postfix_unary_expression] = STATE(3449), - [sym_prefix_unary_expression] = STATE(3449), - [sym__pointer_indirection_expression] = STATE(2747), - [sym_query_expression] = STATE(3362), - [sym_from_clause] = STATE(6167), - [sym_conditional_expression] = STATE(3362), - [sym_conditional_access_expression] = STATE(3362), - [sym_as_expression] = STATE(3362), - [sym_is_expression] = STATE(3362), - [sym_is_pattern_expression] = STATE(3362), - [sym_cast_expression] = STATE(3362), - [sym_checked_expression] = STATE(3362), - [sym_invocation_expression] = STATE(3449), - [sym_switch_expression] = STATE(3362), - [sym_await_expression] = STATE(3449), - [sym_throw_expression] = STATE(3362), - [sym_element_access_expression] = STATE(2747), - [sym_interpolated_string_expression] = STATE(3362), - [sym_member_access_expression] = STATE(2747), - [sym_object_creation_expression] = STATE(3449), - [sym_parenthesized_expression] = STATE(3449), - [sym__parenthesized_lvalue_expression] = STATE(2747), - [sym_lambda_expression] = STATE(3362), - [sym__lambda_expression_init] = STATE(7468), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3362), - [sym_anonymous_method_expression] = STATE(3362), - [sym_anonymous_object_creation_expression] = STATE(3362), - [sym_implicit_array_creation_expression] = STATE(3362), - [sym_implicit_object_creation_expression] = STATE(3362), - [sym_implicit_stackalloc_expression] = STATE(3362), - [sym_initializer_expression] = STATE(3362), - [sym_default_expression] = STATE(3362), - [sym_with_expression] = STATE(3362), - [sym_sizeof_expression] = STATE(3362), - [sym_typeof_expression] = STATE(3362), - [sym_makeref_expression] = STATE(3362), - [sym_ref_expression] = STATE(3362), - [sym_reftype_expression] = STATE(3362), - [sym_refvalue_expression] = STATE(3362), - [sym_stackalloc_expression] = STATE(3362), - [sym_range_expression] = STATE(3362), - [sym_tuple_expression] = STATE(2747), - [sym_literal] = STATE(3362), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3362), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2816), + [sym__name] = STATE(5879), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2196), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(5027), + [sym_non_lvalue_expression] = STATE(3495), + [sym_lvalue_expression] = STATE(3539), + [sym__expression_statement_expression] = STATE(3462), + [sym_assignment_expression] = STATE(3497), + [sym_binary_expression] = STATE(3462), + [sym_postfix_unary_expression] = STATE(3497), + [sym_prefix_unary_expression] = STATE(3497), + [sym__pointer_indirection_expression] = STATE(2815), + [sym_query_expression] = STATE(3462), + [sym_from_clause] = STATE(6144), + [sym_conditional_expression] = STATE(3462), + [sym_conditional_access_expression] = STATE(3462), + [sym_as_expression] = STATE(3462), + [sym_is_expression] = STATE(3462), + [sym_is_pattern_expression] = STATE(3462), + [sym_cast_expression] = STATE(3462), + [sym_checked_expression] = STATE(3462), + [sym_invocation_expression] = STATE(3497), + [sym_switch_expression] = STATE(3462), + [sym_await_expression] = STATE(3497), + [sym_throw_expression] = STATE(3462), + [sym_element_access_expression] = STATE(2815), + [sym_interpolated_string_expression] = STATE(3462), + [sym_member_access_expression] = STATE(2815), + [sym_object_creation_expression] = STATE(3497), + [sym_parenthesized_expression] = STATE(3497), + [sym__parenthesized_lvalue_expression] = STATE(2815), + [sym_lambda_expression] = STATE(3462), + [sym__lambda_expression_init] = STATE(7681), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3462), + [sym_anonymous_method_expression] = STATE(3462), + [sym_anonymous_object_creation_expression] = STATE(3462), + [sym_implicit_array_creation_expression] = STATE(3462), + [sym_implicit_object_creation_expression] = STATE(3462), + [sym_implicit_stackalloc_expression] = STATE(3462), + [sym_initializer_expression] = STATE(3462), + [sym_default_expression] = STATE(3462), + [sym_with_expression] = STATE(3462), + [sym_sizeof_expression] = STATE(3462), + [sym_typeof_expression] = STATE(3462), + [sym_makeref_expression] = STATE(3462), + [sym_ref_expression] = STATE(3462), + [sym_reftype_expression] = STATE(3462), + [sym_refvalue_expression] = STATE(3462), + [sym_stackalloc_expression] = STATE(3462), + [sym_range_expression] = STATE(3462), + [sym_tuple_expression] = STATE(2815), + [sym_literal] = STATE(3462), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3462), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(1266), [sym_preproc_endregion] = STATE(1266), [sym_preproc_line] = STATE(1266), @@ -255813,47 +255699,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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3385), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3367), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1307), - [anon_sym_LPAREN] = ACTIONS(1895), - [anon_sym_ref] = ACTIONS(1897), - [anon_sym_LBRACE] = ACTIONS(1313), - [anon_sym_delegate] = ACTIONS(1315), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1305), + [anon_sym_LPAREN] = ACTIONS(1721), + [anon_sym_ref] = ACTIONS(1723), + [anon_sym_LBRACE] = ACTIONS(1311), + [anon_sym_delegate] = ACTIONS(1313), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1899), + [anon_sym_new] = ACTIONS(1315), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1319), - [anon_sym_BANG] = ACTIONS(1903), - [anon_sym_TILDE] = ACTIONS(1903), - [anon_sym_PLUS_PLUS] = ACTIONS(1903), - [anon_sym_DASH_DASH] = ACTIONS(1903), + [anon_sym_checked] = ACTIONS(1317), + [anon_sym_BANG] = ACTIONS(1727), + [anon_sym_TILDE] = ACTIONS(1727), + [anon_sym_PLUS_PLUS] = ACTIONS(1727), + [anon_sym_DASH_DASH] = ACTIONS(1727), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1901), - [anon_sym_DASH] = ACTIONS(1901), - [anon_sym_STAR] = ACTIONS(1905), - [anon_sym_CARET] = ACTIONS(1903), - [anon_sym_AMP] = ACTIONS(1903), - [anon_sym_this] = ACTIONS(1323), + [anon_sym_PLUS] = ACTIONS(1725), + [anon_sym_DASH] = ACTIONS(1725), + [anon_sym_STAR] = ACTIONS(1729), + [anon_sym_CARET] = ACTIONS(1727), + [anon_sym_AMP] = ACTIONS(1727), + [anon_sym_this] = ACTIONS(1321), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1325), + [anon_sym_base] = ACTIONS(1323), [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1319), + [anon_sym_unchecked] = ACTIONS(1317), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1907), + [anon_sym_throw] = ACTIONS(1731), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1909), - [anon_sym_DOT_DOT] = ACTIONS(1911), + [anon_sym_await] = ACTIONS(1733), + [anon_sym_DOT_DOT] = ACTIONS(1735), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -255866,19 +255752,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1333), + [anon_sym_stackalloc] = ACTIONS(1331), [anon_sym_sizeof] = ACTIONS(129), [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(1335), - [anon_sym___reftype] = ACTIONS(1337), - [anon_sym___refvalue] = ACTIONS(1339), + [anon_sym___makeref] = ACTIONS(1333), + [anon_sym___reftype] = ACTIONS(1335), + [anon_sym___refvalue] = ACTIONS(1337), [sym_null_literal] = ACTIONS(139), [anon_sym_SQUOTE] = ACTIONS(141), [sym_integer_literal] = ACTIONS(139), [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1341), + [aux_sym_preproc_if_token1] = ACTIONS(1339), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -255895,84 +255781,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [1267] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(5907), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2404), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(4067), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3140), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3080), - [sym_postfix_unary_expression] = STATE(3111), - [sym_prefix_unary_expression] = STATE(3111), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6183), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3080), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3111), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3080), - [sym_member_access_expression] = STATE(2484), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3111), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7703), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(3080), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3080), - [sym_typeof_expression] = STATE(3080), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2484), - [sym_literal] = STATE(3080), - [sym_character_literal] = STATE(3011), - [sym_string_literal] = STATE(3011), - [sym_raw_string_literal] = STATE(3011), - [sym_boolean_literal] = STATE(3011), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2816), + [sym__name] = STATE(5879), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2196), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(5028), + [sym_non_lvalue_expression] = STATE(3495), + [sym_lvalue_expression] = STATE(3539), + [sym__expression_statement_expression] = STATE(3462), + [sym_assignment_expression] = STATE(3497), + [sym_binary_expression] = STATE(3462), + [sym_postfix_unary_expression] = STATE(3497), + [sym_prefix_unary_expression] = STATE(3497), + [sym__pointer_indirection_expression] = STATE(2815), + [sym_query_expression] = STATE(3462), + [sym_from_clause] = STATE(6144), + [sym_conditional_expression] = STATE(3462), + [sym_conditional_access_expression] = STATE(3462), + [sym_as_expression] = STATE(3462), + [sym_is_expression] = STATE(3462), + [sym_is_pattern_expression] = STATE(3462), + [sym_cast_expression] = STATE(3462), + [sym_checked_expression] = STATE(3462), + [sym_invocation_expression] = STATE(3497), + [sym_switch_expression] = STATE(3462), + [sym_await_expression] = STATE(3497), + [sym_throw_expression] = STATE(3462), + [sym_element_access_expression] = STATE(2815), + [sym_interpolated_string_expression] = STATE(3462), + [sym_member_access_expression] = STATE(2815), + [sym_object_creation_expression] = STATE(3497), + [sym_parenthesized_expression] = STATE(3497), + [sym__parenthesized_lvalue_expression] = STATE(2815), + [sym_lambda_expression] = STATE(3462), + [sym__lambda_expression_init] = STATE(7681), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3462), + [sym_anonymous_method_expression] = STATE(3462), + [sym_anonymous_object_creation_expression] = STATE(3462), + [sym_implicit_array_creation_expression] = STATE(3462), + [sym_implicit_object_creation_expression] = STATE(3462), + [sym_implicit_stackalloc_expression] = STATE(3462), + [sym_initializer_expression] = STATE(3462), + [sym_default_expression] = STATE(3462), + [sym_with_expression] = STATE(3462), + [sym_sizeof_expression] = STATE(3462), + [sym_typeof_expression] = STATE(3462), + [sym_makeref_expression] = STATE(3462), + [sym_ref_expression] = STATE(3462), + [sym_reftype_expression] = STATE(3462), + [sym_refvalue_expression] = STATE(3462), + [sym_stackalloc_expression] = STATE(3462), + [sym_range_expression] = STATE(3462), + [sym_tuple_expression] = STATE(2815), + [sym_literal] = STATE(3462), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3462), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(1267), [sym_preproc_endregion] = STATE(1267), [sym_preproc_line] = STATE(1267), @@ -255982,47 +255868,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(3067), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), [aux_sym__lambda_expression_init_repeat1] = STATE(3367), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1481), - [anon_sym_LPAREN] = ACTIONS(2251), - [anon_sym_ref] = ACTIONS(2253), - [anon_sym_LBRACE] = ACTIONS(1487), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1305), + [anon_sym_LPAREN] = ACTIONS(1721), + [anon_sym_ref] = ACTIONS(1723), + [anon_sym_LBRACE] = ACTIONS(1311), + [anon_sym_delegate] = ACTIONS(1313), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1937), + [anon_sym_new] = ACTIONS(1315), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1067), - [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(1259), - [anon_sym_false] = ACTIONS(1259), - [anon_sym_PLUS] = ACTIONS(2255), - [anon_sym_DASH] = ACTIONS(2255), - [anon_sym_STAR] = ACTIONS(1943), - [anon_sym_CARET] = ACTIONS(2257), - [anon_sym_AMP] = ACTIONS(2257), - [anon_sym_this] = ACTIONS(83), + [anon_sym_checked] = ACTIONS(1317), + [anon_sym_BANG] = ACTIONS(1727), + [anon_sym_TILDE] = ACTIONS(1727), + [anon_sym_PLUS_PLUS] = ACTIONS(1727), + [anon_sym_DASH_DASH] = ACTIONS(1727), + [anon_sym_true] = ACTIONS(77), + [anon_sym_false] = ACTIONS(77), + [anon_sym_PLUS] = ACTIONS(1725), + [anon_sym_DASH] = ACTIONS(1725), + [anon_sym_STAR] = ACTIONS(1729), + [anon_sym_CARET] = ACTIONS(1727), + [anon_sym_AMP] = ACTIONS(1727), + [anon_sym_this] = ACTIONS(1321), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), + [anon_sym_base] = ACTIONS(1323), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1267), - [anon_sym_unchecked] = ACTIONS(1067), + [sym_predefined_type] = ACTIONS(91), + [anon_sym_unchecked] = ACTIONS(1317), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1269), - [anon_sym_throw] = ACTIONS(2259), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(1731), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2261), - [anon_sym_DOT_DOT] = ACTIONS(2263), + [anon_sym_await] = ACTIONS(1733), + [anon_sym_DOT_DOT] = ACTIONS(1735), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -256035,19 +255921,19 @@ static const uint16_t ts_parse_table[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(1279), - [anon_sym_typeof] = ACTIONS(1281), - [anon_sym___makeref] = ACTIONS(133), - [anon_sym___reftype] = ACTIONS(135), - [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(1289), - [anon_sym_SQUOTE] = ACTIONS(1291), - [sym_integer_literal] = ACTIONS(1289), - [sym_real_literal] = ACTIONS(1293), - [anon_sym_DQUOTE] = ACTIONS(1295), - [sym_verbatim_string_literal] = ACTIONS(1293), - [aux_sym_preproc_if_token1] = ACTIONS(1089), + [anon_sym_stackalloc] = ACTIONS(1331), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(1333), + [anon_sym___reftype] = ACTIONS(1335), + [anon_sym___refvalue] = ACTIONS(1337), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_literal] = ACTIONS(143), + [anon_sym_DQUOTE] = ACTIONS(145), + [sym_verbatim_string_literal] = ACTIONS(143), + [aux_sym_preproc_if_token1] = ACTIONS(1339), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -256058,90 +255944,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1299), - [sym_interpolation_verbatim_start] = ACTIONS(1301), - [sym_interpolation_raw_start] = ACTIONS(1303), - [sym_raw_string_start] = ACTIONS(1305), + [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(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2762), - [sym__name] = STATE(5891), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2372), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(4967), - [sym_non_lvalue_expression] = STATE(3438), - [sym_lvalue_expression] = STATE(3530), - [sym__expression_statement_expression] = STATE(3362), - [sym_assignment_expression] = STATE(3449), - [sym_binary_expression] = STATE(3362), - [sym_postfix_unary_expression] = STATE(3449), - [sym_prefix_unary_expression] = STATE(3449), - [sym__pointer_indirection_expression] = STATE(2747), - [sym_query_expression] = STATE(3362), - [sym_from_clause] = STATE(6167), - [sym_conditional_expression] = STATE(3362), - [sym_conditional_access_expression] = STATE(3362), - [sym_as_expression] = STATE(3362), - [sym_is_expression] = STATE(3362), - [sym_is_pattern_expression] = STATE(3362), - [sym_cast_expression] = STATE(3362), - [sym_checked_expression] = STATE(3362), - [sym_invocation_expression] = STATE(3449), - [sym_switch_expression] = STATE(3362), - [sym_await_expression] = STATE(3449), - [sym_throw_expression] = STATE(3362), - [sym_element_access_expression] = STATE(2747), - [sym_interpolated_string_expression] = STATE(3362), - [sym_member_access_expression] = STATE(2747), - [sym_object_creation_expression] = STATE(3449), - [sym_parenthesized_expression] = STATE(3449), - [sym__parenthesized_lvalue_expression] = STATE(2747), - [sym_lambda_expression] = STATE(3362), - [sym__lambda_expression_init] = STATE(7468), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3362), - [sym_anonymous_method_expression] = STATE(3362), - [sym_anonymous_object_creation_expression] = STATE(3362), - [sym_implicit_array_creation_expression] = STATE(3362), - [sym_implicit_object_creation_expression] = STATE(3362), - [sym_implicit_stackalloc_expression] = STATE(3362), - [sym_initializer_expression] = STATE(3362), - [sym_default_expression] = STATE(3362), - [sym_with_expression] = STATE(3362), - [sym_sizeof_expression] = STATE(3362), - [sym_typeof_expression] = STATE(3362), - [sym_makeref_expression] = STATE(3362), - [sym_ref_expression] = STATE(3362), - [sym_reftype_expression] = STATE(3362), - [sym_refvalue_expression] = STATE(3362), - [sym_stackalloc_expression] = STATE(3362), - [sym_range_expression] = STATE(3362), - [sym_tuple_expression] = STATE(2747), - [sym_literal] = STATE(3362), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3362), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2816), + [sym__name] = STATE(5879), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2196), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(5029), + [sym_non_lvalue_expression] = STATE(3495), + [sym_lvalue_expression] = STATE(3539), + [sym__expression_statement_expression] = STATE(3462), + [sym_assignment_expression] = STATE(3497), + [sym_binary_expression] = STATE(3462), + [sym_postfix_unary_expression] = STATE(3497), + [sym_prefix_unary_expression] = STATE(3497), + [sym__pointer_indirection_expression] = STATE(2815), + [sym_query_expression] = STATE(3462), + [sym_from_clause] = STATE(6144), + [sym_conditional_expression] = STATE(3462), + [sym_conditional_access_expression] = STATE(3462), + [sym_as_expression] = STATE(3462), + [sym_is_expression] = STATE(3462), + [sym_is_pattern_expression] = STATE(3462), + [sym_cast_expression] = STATE(3462), + [sym_checked_expression] = STATE(3462), + [sym_invocation_expression] = STATE(3497), + [sym_switch_expression] = STATE(3462), + [sym_await_expression] = STATE(3497), + [sym_throw_expression] = STATE(3462), + [sym_element_access_expression] = STATE(2815), + [sym_interpolated_string_expression] = STATE(3462), + [sym_member_access_expression] = STATE(2815), + [sym_object_creation_expression] = STATE(3497), + [sym_parenthesized_expression] = STATE(3497), + [sym__parenthesized_lvalue_expression] = STATE(2815), + [sym_lambda_expression] = STATE(3462), + [sym__lambda_expression_init] = STATE(7681), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3462), + [sym_anonymous_method_expression] = STATE(3462), + [sym_anonymous_object_creation_expression] = STATE(3462), + [sym_implicit_array_creation_expression] = STATE(3462), + [sym_implicit_object_creation_expression] = STATE(3462), + [sym_implicit_stackalloc_expression] = STATE(3462), + [sym_initializer_expression] = STATE(3462), + [sym_default_expression] = STATE(3462), + [sym_with_expression] = STATE(3462), + [sym_sizeof_expression] = STATE(3462), + [sym_typeof_expression] = STATE(3462), + [sym_makeref_expression] = STATE(3462), + [sym_ref_expression] = STATE(3462), + [sym_reftype_expression] = STATE(3462), + [sym_refvalue_expression] = STATE(3462), + [sym_stackalloc_expression] = STATE(3462), + [sym_range_expression] = STATE(3462), + [sym_tuple_expression] = STATE(2815), + [sym_literal] = STATE(3462), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3462), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(1268), [sym_preproc_endregion] = STATE(1268), [sym_preproc_line] = STATE(1268), @@ -256151,47 +256037,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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3385), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3367), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1307), - [anon_sym_LPAREN] = ACTIONS(1895), - [anon_sym_ref] = ACTIONS(1897), - [anon_sym_LBRACE] = ACTIONS(1313), - [anon_sym_delegate] = ACTIONS(1315), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1305), + [anon_sym_LPAREN] = ACTIONS(1721), + [anon_sym_ref] = ACTIONS(1723), + [anon_sym_LBRACE] = ACTIONS(1311), + [anon_sym_delegate] = ACTIONS(1313), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1899), + [anon_sym_new] = ACTIONS(1315), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1319), - [anon_sym_BANG] = ACTIONS(1903), - [anon_sym_TILDE] = ACTIONS(1903), - [anon_sym_PLUS_PLUS] = ACTIONS(1903), - [anon_sym_DASH_DASH] = ACTIONS(1903), + [anon_sym_checked] = ACTIONS(1317), + [anon_sym_BANG] = ACTIONS(1727), + [anon_sym_TILDE] = ACTIONS(1727), + [anon_sym_PLUS_PLUS] = ACTIONS(1727), + [anon_sym_DASH_DASH] = ACTIONS(1727), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1901), - [anon_sym_DASH] = ACTIONS(1901), - [anon_sym_STAR] = ACTIONS(1905), - [anon_sym_CARET] = ACTIONS(1903), - [anon_sym_AMP] = ACTIONS(1903), - [anon_sym_this] = ACTIONS(1323), + [anon_sym_PLUS] = ACTIONS(1725), + [anon_sym_DASH] = ACTIONS(1725), + [anon_sym_STAR] = ACTIONS(1729), + [anon_sym_CARET] = ACTIONS(1727), + [anon_sym_AMP] = ACTIONS(1727), + [anon_sym_this] = ACTIONS(1321), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1325), + [anon_sym_base] = ACTIONS(1323), [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1319), + [anon_sym_unchecked] = ACTIONS(1317), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1907), + [anon_sym_throw] = ACTIONS(1731), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1909), - [anon_sym_DOT_DOT] = ACTIONS(1911), + [anon_sym_await] = ACTIONS(1733), + [anon_sym_DOT_DOT] = ACTIONS(1735), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -256204,19 +256090,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1333), + [anon_sym_stackalloc] = ACTIONS(1331), [anon_sym_sizeof] = ACTIONS(129), [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(1335), - [anon_sym___reftype] = ACTIONS(1337), - [anon_sym___refvalue] = ACTIONS(1339), + [anon_sym___makeref] = ACTIONS(1333), + [anon_sym___reftype] = ACTIONS(1335), + [anon_sym___refvalue] = ACTIONS(1337), [sym_null_literal] = ACTIONS(139), [anon_sym_SQUOTE] = ACTIONS(141), [sym_integer_literal] = ACTIONS(139), [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1341), + [aux_sym_preproc_if_token1] = ACTIONS(1339), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -256233,84 +256119,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [1269] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2610), - [sym__name] = STATE(5898), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2197), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(4741), - [sym_non_lvalue_expression] = STATE(3277), - [sym_lvalue_expression] = STATE(3413), - [sym__expression_statement_expression] = STATE(3228), - [sym_assignment_expression] = STATE(3289), - [sym_binary_expression] = STATE(3228), - [sym_postfix_unary_expression] = STATE(3289), - [sym_prefix_unary_expression] = STATE(3289), - [sym__pointer_indirection_expression] = STATE(2609), - [sym_query_expression] = STATE(3228), - [sym_from_clause] = STATE(6160), - [sym_conditional_expression] = STATE(3228), - [sym_conditional_access_expression] = STATE(3228), - [sym_as_expression] = STATE(3228), - [sym_is_expression] = STATE(3228), - [sym_is_pattern_expression] = STATE(3228), - [sym_cast_expression] = STATE(3228), - [sym_checked_expression] = STATE(3228), - [sym_invocation_expression] = STATE(3289), - [sym_switch_expression] = STATE(3228), - [sym_await_expression] = STATE(3289), - [sym_throw_expression] = STATE(3228), - [sym_element_access_expression] = STATE(2609), - [sym_interpolated_string_expression] = STATE(3228), - [sym_member_access_expression] = STATE(2609), - [sym_object_creation_expression] = STATE(3289), - [sym_parenthesized_expression] = STATE(3289), - [sym__parenthesized_lvalue_expression] = STATE(2609), - [sym_lambda_expression] = STATE(3228), - [sym__lambda_expression_init] = STATE(7523), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3228), - [sym_anonymous_method_expression] = STATE(3228), - [sym_anonymous_object_creation_expression] = STATE(3228), - [sym_implicit_array_creation_expression] = STATE(3228), - [sym_implicit_object_creation_expression] = STATE(3228), - [sym_implicit_stackalloc_expression] = STATE(3228), - [sym_initializer_expression] = STATE(3228), - [sym_default_expression] = STATE(3228), - [sym_with_expression] = STATE(3228), - [sym_sizeof_expression] = STATE(3228), - [sym_typeof_expression] = STATE(3228), - [sym_makeref_expression] = STATE(3228), - [sym_ref_expression] = STATE(3228), - [sym_reftype_expression] = STATE(3228), - [sym_refvalue_expression] = STATE(3228), - [sym_stackalloc_expression] = STATE(3228), - [sym_range_expression] = STATE(3228), - [sym_tuple_expression] = STATE(2609), - [sym_literal] = STATE(3228), - [sym_character_literal] = STATE(3278), - [sym_string_literal] = STATE(3278), - [sym_raw_string_literal] = STATE(3278), - [sym_boolean_literal] = STATE(3278), - [sym_identifier] = STATE(2267), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3228), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2816), + [sym__name] = STATE(5879), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2196), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(5030), + [sym_non_lvalue_expression] = STATE(3495), + [sym_lvalue_expression] = STATE(3539), + [sym__expression_statement_expression] = STATE(3462), + [sym_assignment_expression] = STATE(3497), + [sym_binary_expression] = STATE(3462), + [sym_postfix_unary_expression] = STATE(3497), + [sym_prefix_unary_expression] = STATE(3497), + [sym__pointer_indirection_expression] = STATE(2815), + [sym_query_expression] = STATE(3462), + [sym_from_clause] = STATE(6144), + [sym_conditional_expression] = STATE(3462), + [sym_conditional_access_expression] = STATE(3462), + [sym_as_expression] = STATE(3462), + [sym_is_expression] = STATE(3462), + [sym_is_pattern_expression] = STATE(3462), + [sym_cast_expression] = STATE(3462), + [sym_checked_expression] = STATE(3462), + [sym_invocation_expression] = STATE(3497), + [sym_switch_expression] = STATE(3462), + [sym_await_expression] = STATE(3497), + [sym_throw_expression] = STATE(3462), + [sym_element_access_expression] = STATE(2815), + [sym_interpolated_string_expression] = STATE(3462), + [sym_member_access_expression] = STATE(2815), + [sym_object_creation_expression] = STATE(3497), + [sym_parenthesized_expression] = STATE(3497), + [sym__parenthesized_lvalue_expression] = STATE(2815), + [sym_lambda_expression] = STATE(3462), + [sym__lambda_expression_init] = STATE(7681), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3462), + [sym_anonymous_method_expression] = STATE(3462), + [sym_anonymous_object_creation_expression] = STATE(3462), + [sym_implicit_array_creation_expression] = STATE(3462), + [sym_implicit_object_creation_expression] = STATE(3462), + [sym_implicit_stackalloc_expression] = STATE(3462), + [sym_initializer_expression] = STATE(3462), + [sym_default_expression] = STATE(3462), + [sym_with_expression] = STATE(3462), + [sym_sizeof_expression] = STATE(3462), + [sym_typeof_expression] = STATE(3462), + [sym_makeref_expression] = STATE(3462), + [sym_ref_expression] = STATE(3462), + [sym_reftype_expression] = STATE(3462), + [sym_refvalue_expression] = STATE(3462), + [sym_stackalloc_expression] = STATE(3462), + [sym_range_expression] = STATE(3462), + [sym_tuple_expression] = STATE(2815), + [sym_literal] = STATE(3462), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3462), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(1269), [sym_preproc_endregion] = STATE(1269), [sym_preproc_line] = STATE(1269), @@ -256320,47 +256206,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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3396), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3367), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1153), - [anon_sym_LPAREN] = ACTIONS(1593), - [anon_sym_ref] = ACTIONS(1595), - [anon_sym_LBRACE] = ACTIONS(1159), - [anon_sym_delegate] = ACTIONS(1161), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1305), + [anon_sym_LPAREN] = ACTIONS(1721), + [anon_sym_ref] = ACTIONS(1723), + [anon_sym_LBRACE] = ACTIONS(1311), + [anon_sym_delegate] = ACTIONS(1313), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1163), + [anon_sym_new] = ACTIONS(1315), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1167), - [anon_sym_BANG] = ACTIONS(1599), - [anon_sym_TILDE] = ACTIONS(1599), - [anon_sym_PLUS_PLUS] = ACTIONS(1599), - [anon_sym_DASH_DASH] = ACTIONS(1599), - [anon_sym_true] = ACTIONS(1173), - [anon_sym_false] = ACTIONS(1173), - [anon_sym_PLUS] = ACTIONS(1597), - [anon_sym_DASH] = ACTIONS(1597), - [anon_sym_STAR] = ACTIONS(1601), - [anon_sym_CARET] = ACTIONS(1599), - [anon_sym_AMP] = ACTIONS(1599), - [anon_sym_this] = ACTIONS(1177), + [anon_sym_checked] = ACTIONS(1317), + [anon_sym_BANG] = ACTIONS(1727), + [anon_sym_TILDE] = ACTIONS(1727), + [anon_sym_PLUS_PLUS] = ACTIONS(1727), + [anon_sym_DASH_DASH] = ACTIONS(1727), + [anon_sym_true] = ACTIONS(77), + [anon_sym_false] = ACTIONS(77), + [anon_sym_PLUS] = ACTIONS(1725), + [anon_sym_DASH] = ACTIONS(1725), + [anon_sym_STAR] = ACTIONS(1729), + [anon_sym_CARET] = ACTIONS(1727), + [anon_sym_AMP] = ACTIONS(1727), + [anon_sym_this] = ACTIONS(1321), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1179), + [anon_sym_base] = ACTIONS(1323), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1181), - [anon_sym_unchecked] = ACTIONS(1167), + [sym_predefined_type] = ACTIONS(91), + [anon_sym_unchecked] = ACTIONS(1317), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1183), - [anon_sym_throw] = ACTIONS(1603), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(1731), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1605), - [anon_sym_DOT_DOT] = ACTIONS(1607), + [anon_sym_await] = ACTIONS(1733), + [anon_sym_DOT_DOT] = ACTIONS(1735), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -256373,19 +256259,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1191), - [anon_sym_sizeof] = ACTIONS(1193), - [anon_sym_typeof] = ACTIONS(1195), - [anon_sym___makeref] = ACTIONS(1197), - [anon_sym___reftype] = ACTIONS(1199), - [anon_sym___refvalue] = ACTIONS(1201), - [sym_null_literal] = ACTIONS(1203), - [anon_sym_SQUOTE] = ACTIONS(1205), - [sym_integer_literal] = ACTIONS(1203), - [sym_real_literal] = ACTIONS(1207), - [anon_sym_DQUOTE] = ACTIONS(1209), - [sym_verbatim_string_literal] = ACTIONS(1207), - [aux_sym_preproc_if_token1] = ACTIONS(1211), + [anon_sym_stackalloc] = ACTIONS(1331), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(1333), + [anon_sym___reftype] = ACTIONS(1335), + [anon_sym___refvalue] = ACTIONS(1337), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_literal] = ACTIONS(143), + [anon_sym_DQUOTE] = ACTIONS(145), + [sym_verbatim_string_literal] = ACTIONS(143), + [aux_sym_preproc_if_token1] = ACTIONS(1339), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -256396,90 +256282,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1213), - [sym_interpolation_verbatim_start] = ACTIONS(1215), - [sym_interpolation_raw_start] = ACTIONS(1217), - [sym_raw_string_start] = ACTIONS(1219), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [sym_interpolation_raw_start] = ACTIONS(155), + [sym_raw_string_start] = ACTIONS(157), }, [1270] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2610), - [sym__name] = STATE(5898), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2197), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(3139), - [sym_non_lvalue_expression] = STATE(3277), - [sym_lvalue_expression] = STATE(3413), - [sym__expression_statement_expression] = STATE(3228), - [sym_assignment_expression] = STATE(3289), - [sym_binary_expression] = STATE(3228), - [sym_postfix_unary_expression] = STATE(3289), - [sym_prefix_unary_expression] = STATE(3289), - [sym__pointer_indirection_expression] = STATE(2609), - [sym_query_expression] = STATE(3228), - [sym_from_clause] = STATE(6160), - [sym_conditional_expression] = STATE(3228), - [sym_conditional_access_expression] = STATE(3228), - [sym_as_expression] = STATE(3228), - [sym_is_expression] = STATE(3228), - [sym_is_pattern_expression] = STATE(3228), - [sym_cast_expression] = STATE(3228), - [sym_checked_expression] = STATE(3228), - [sym_invocation_expression] = STATE(3289), - [sym_switch_expression] = STATE(3228), - [sym_await_expression] = STATE(3289), - [sym_throw_expression] = STATE(3228), - [sym_element_access_expression] = STATE(2609), - [sym_interpolated_string_expression] = STATE(3228), - [sym_member_access_expression] = STATE(2609), - [sym_object_creation_expression] = STATE(3289), - [sym_parenthesized_expression] = STATE(3289), - [sym__parenthesized_lvalue_expression] = STATE(2609), - [sym_lambda_expression] = STATE(3228), - [sym__lambda_expression_init] = STATE(7523), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3228), - [sym_anonymous_method_expression] = STATE(3228), - [sym_anonymous_object_creation_expression] = STATE(3228), - [sym_implicit_array_creation_expression] = STATE(3228), - [sym_implicit_object_creation_expression] = STATE(3228), - [sym_implicit_stackalloc_expression] = STATE(3228), - [sym_initializer_expression] = STATE(3228), - [sym_default_expression] = STATE(3228), - [sym_with_expression] = STATE(3228), - [sym_sizeof_expression] = STATE(3228), - [sym_typeof_expression] = STATE(3228), - [sym_makeref_expression] = STATE(3228), - [sym_ref_expression] = STATE(3228), - [sym_reftype_expression] = STATE(3228), - [sym_refvalue_expression] = STATE(3228), - [sym_stackalloc_expression] = STATE(3228), - [sym_range_expression] = STATE(3228), - [sym_tuple_expression] = STATE(2609), - [sym_literal] = STATE(3228), - [sym_character_literal] = STATE(3278), - [sym_string_literal] = STATE(3278), - [sym_raw_string_literal] = STATE(3278), - [sym_boolean_literal] = STATE(3278), - [sym_identifier] = STATE(2267), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3228), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2816), + [sym__name] = STATE(5879), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2196), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(5031), + [sym_non_lvalue_expression] = STATE(3495), + [sym_lvalue_expression] = STATE(3539), + [sym__expression_statement_expression] = STATE(3462), + [sym_assignment_expression] = STATE(3497), + [sym_binary_expression] = STATE(3462), + [sym_postfix_unary_expression] = STATE(3497), + [sym_prefix_unary_expression] = STATE(3497), + [sym__pointer_indirection_expression] = STATE(2815), + [sym_query_expression] = STATE(3462), + [sym_from_clause] = STATE(6144), + [sym_conditional_expression] = STATE(3462), + [sym_conditional_access_expression] = STATE(3462), + [sym_as_expression] = STATE(3462), + [sym_is_expression] = STATE(3462), + [sym_is_pattern_expression] = STATE(3462), + [sym_cast_expression] = STATE(3462), + [sym_checked_expression] = STATE(3462), + [sym_invocation_expression] = STATE(3497), + [sym_switch_expression] = STATE(3462), + [sym_await_expression] = STATE(3497), + [sym_throw_expression] = STATE(3462), + [sym_element_access_expression] = STATE(2815), + [sym_interpolated_string_expression] = STATE(3462), + [sym_member_access_expression] = STATE(2815), + [sym_object_creation_expression] = STATE(3497), + [sym_parenthesized_expression] = STATE(3497), + [sym__parenthesized_lvalue_expression] = STATE(2815), + [sym_lambda_expression] = STATE(3462), + [sym__lambda_expression_init] = STATE(7681), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3462), + [sym_anonymous_method_expression] = STATE(3462), + [sym_anonymous_object_creation_expression] = STATE(3462), + [sym_implicit_array_creation_expression] = STATE(3462), + [sym_implicit_object_creation_expression] = STATE(3462), + [sym_implicit_stackalloc_expression] = STATE(3462), + [sym_initializer_expression] = STATE(3462), + [sym_default_expression] = STATE(3462), + [sym_with_expression] = STATE(3462), + [sym_sizeof_expression] = STATE(3462), + [sym_typeof_expression] = STATE(3462), + [sym_makeref_expression] = STATE(3462), + [sym_ref_expression] = STATE(3462), + [sym_reftype_expression] = STATE(3462), + [sym_refvalue_expression] = STATE(3462), + [sym_stackalloc_expression] = STATE(3462), + [sym_range_expression] = STATE(3462), + [sym_tuple_expression] = STATE(2815), + [sym_literal] = STATE(3462), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3462), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(1270), [sym_preproc_endregion] = STATE(1270), [sym_preproc_line] = STATE(1270), @@ -256489,47 +256375,47 @@ 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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3396), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3367), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1153), - [anon_sym_LPAREN] = ACTIONS(1593), - [anon_sym_ref] = ACTIONS(1595), - [anon_sym_LBRACE] = ACTIONS(1159), - [anon_sym_delegate] = ACTIONS(1161), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1305), + [anon_sym_LPAREN] = ACTIONS(1721), + [anon_sym_ref] = ACTIONS(1723), + [anon_sym_LBRACE] = ACTIONS(1311), + [anon_sym_delegate] = ACTIONS(1313), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1163), + [anon_sym_new] = ACTIONS(1315), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1167), - [anon_sym_BANG] = ACTIONS(1599), - [anon_sym_TILDE] = ACTIONS(1599), - [anon_sym_PLUS_PLUS] = ACTIONS(1599), - [anon_sym_DASH_DASH] = ACTIONS(1599), - [anon_sym_true] = ACTIONS(1173), - [anon_sym_false] = ACTIONS(1173), - [anon_sym_PLUS] = ACTIONS(1597), - [anon_sym_DASH] = ACTIONS(1597), - [anon_sym_STAR] = ACTIONS(1601), - [anon_sym_CARET] = ACTIONS(1599), - [anon_sym_AMP] = ACTIONS(1599), - [anon_sym_this] = ACTIONS(1177), + [anon_sym_checked] = ACTIONS(1317), + [anon_sym_BANG] = ACTIONS(1727), + [anon_sym_TILDE] = ACTIONS(1727), + [anon_sym_PLUS_PLUS] = ACTIONS(1727), + [anon_sym_DASH_DASH] = ACTIONS(1727), + [anon_sym_true] = ACTIONS(77), + [anon_sym_false] = ACTIONS(77), + [anon_sym_PLUS] = ACTIONS(1725), + [anon_sym_DASH] = ACTIONS(1725), + [anon_sym_STAR] = ACTIONS(1729), + [anon_sym_CARET] = ACTIONS(1727), + [anon_sym_AMP] = ACTIONS(1727), + [anon_sym_this] = ACTIONS(1321), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1179), + [anon_sym_base] = ACTIONS(1323), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1181), - [anon_sym_unchecked] = ACTIONS(1167), + [sym_predefined_type] = ACTIONS(91), + [anon_sym_unchecked] = ACTIONS(1317), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1183), - [anon_sym_throw] = ACTIONS(1603), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(1731), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1605), - [anon_sym_DOT_DOT] = ACTIONS(1607), + [anon_sym_await] = ACTIONS(1733), + [anon_sym_DOT_DOT] = ACTIONS(1735), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -256542,19 +256428,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1191), - [anon_sym_sizeof] = ACTIONS(1193), - [anon_sym_typeof] = ACTIONS(1195), - [anon_sym___makeref] = ACTIONS(1197), - [anon_sym___reftype] = ACTIONS(1199), - [anon_sym___refvalue] = ACTIONS(1201), - [sym_null_literal] = ACTIONS(1203), - [anon_sym_SQUOTE] = ACTIONS(1205), - [sym_integer_literal] = ACTIONS(1203), - [sym_real_literal] = ACTIONS(1207), - [anon_sym_DQUOTE] = ACTIONS(1209), - [sym_verbatim_string_literal] = ACTIONS(1207), - [aux_sym_preproc_if_token1] = ACTIONS(1211), + [anon_sym_stackalloc] = ACTIONS(1331), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(1333), + [anon_sym___reftype] = ACTIONS(1335), + [anon_sym___refvalue] = ACTIONS(1337), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_literal] = ACTIONS(143), + [anon_sym_DQUOTE] = ACTIONS(145), + [sym_verbatim_string_literal] = ACTIONS(143), + [aux_sym_preproc_if_token1] = ACTIONS(1339), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -256565,90 +256451,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1213), - [sym_interpolation_verbatim_start] = ACTIONS(1215), - [sym_interpolation_raw_start] = ACTIONS(1217), - [sym_raw_string_start] = ACTIONS(1219), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [sym_interpolation_raw_start] = ACTIONS(155), + [sym_raw_string_start] = ACTIONS(157), }, [1271] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2610), - [sym__name] = STATE(5898), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2197), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(4532), - [sym_non_lvalue_expression] = STATE(3277), - [sym_lvalue_expression] = STATE(3413), - [sym__expression_statement_expression] = STATE(3228), - [sym_assignment_expression] = STATE(3289), - [sym_binary_expression] = STATE(3228), - [sym_postfix_unary_expression] = STATE(3289), - [sym_prefix_unary_expression] = STATE(3289), - [sym__pointer_indirection_expression] = STATE(2609), - [sym_query_expression] = STATE(3228), - [sym_from_clause] = STATE(6160), - [sym_conditional_expression] = STATE(3228), - [sym_conditional_access_expression] = STATE(3228), - [sym_as_expression] = STATE(3228), - [sym_is_expression] = STATE(3228), - [sym_is_pattern_expression] = STATE(3228), - [sym_cast_expression] = STATE(3228), - [sym_checked_expression] = STATE(3228), - [sym_invocation_expression] = STATE(3289), - [sym_switch_expression] = STATE(3228), - [sym_await_expression] = STATE(3289), - [sym_throw_expression] = STATE(3228), - [sym_element_access_expression] = STATE(2609), - [sym_interpolated_string_expression] = STATE(3228), - [sym_member_access_expression] = STATE(2609), - [sym_object_creation_expression] = STATE(3289), - [sym_parenthesized_expression] = STATE(3289), - [sym__parenthesized_lvalue_expression] = STATE(2609), - [sym_lambda_expression] = STATE(3228), - [sym__lambda_expression_init] = STATE(7523), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3228), - [sym_anonymous_method_expression] = STATE(3228), - [sym_anonymous_object_creation_expression] = STATE(3228), - [sym_implicit_array_creation_expression] = STATE(3228), - [sym_implicit_object_creation_expression] = STATE(3228), - [sym_implicit_stackalloc_expression] = STATE(3228), - [sym_initializer_expression] = STATE(3228), - [sym_default_expression] = STATE(3228), - [sym_with_expression] = STATE(3228), - [sym_sizeof_expression] = STATE(3228), - [sym_typeof_expression] = STATE(3228), - [sym_makeref_expression] = STATE(3228), - [sym_ref_expression] = STATE(3228), - [sym_reftype_expression] = STATE(3228), - [sym_refvalue_expression] = STATE(3228), - [sym_stackalloc_expression] = STATE(3228), - [sym_range_expression] = STATE(3228), - [sym_tuple_expression] = STATE(2609), - [sym_literal] = STATE(3228), - [sym_character_literal] = STATE(3278), - [sym_string_literal] = STATE(3278), - [sym_raw_string_literal] = STATE(3278), - [sym_boolean_literal] = STATE(3278), - [sym_identifier] = STATE(2267), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3228), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2816), + [sym__name] = STATE(5879), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2196), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(5032), + [sym_non_lvalue_expression] = STATE(3495), + [sym_lvalue_expression] = STATE(3539), + [sym__expression_statement_expression] = STATE(3462), + [sym_assignment_expression] = STATE(3497), + [sym_binary_expression] = STATE(3462), + [sym_postfix_unary_expression] = STATE(3497), + [sym_prefix_unary_expression] = STATE(3497), + [sym__pointer_indirection_expression] = STATE(2815), + [sym_query_expression] = STATE(3462), + [sym_from_clause] = STATE(6144), + [sym_conditional_expression] = STATE(3462), + [sym_conditional_access_expression] = STATE(3462), + [sym_as_expression] = STATE(3462), + [sym_is_expression] = STATE(3462), + [sym_is_pattern_expression] = STATE(3462), + [sym_cast_expression] = STATE(3462), + [sym_checked_expression] = STATE(3462), + [sym_invocation_expression] = STATE(3497), + [sym_switch_expression] = STATE(3462), + [sym_await_expression] = STATE(3497), + [sym_throw_expression] = STATE(3462), + [sym_element_access_expression] = STATE(2815), + [sym_interpolated_string_expression] = STATE(3462), + [sym_member_access_expression] = STATE(2815), + [sym_object_creation_expression] = STATE(3497), + [sym_parenthesized_expression] = STATE(3497), + [sym__parenthesized_lvalue_expression] = STATE(2815), + [sym_lambda_expression] = STATE(3462), + [sym__lambda_expression_init] = STATE(7681), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3462), + [sym_anonymous_method_expression] = STATE(3462), + [sym_anonymous_object_creation_expression] = STATE(3462), + [sym_implicit_array_creation_expression] = STATE(3462), + [sym_implicit_object_creation_expression] = STATE(3462), + [sym_implicit_stackalloc_expression] = STATE(3462), + [sym_initializer_expression] = STATE(3462), + [sym_default_expression] = STATE(3462), + [sym_with_expression] = STATE(3462), + [sym_sizeof_expression] = STATE(3462), + [sym_typeof_expression] = STATE(3462), + [sym_makeref_expression] = STATE(3462), + [sym_ref_expression] = STATE(3462), + [sym_reftype_expression] = STATE(3462), + [sym_refvalue_expression] = STATE(3462), + [sym_stackalloc_expression] = STATE(3462), + [sym_range_expression] = STATE(3462), + [sym_tuple_expression] = STATE(2815), + [sym_literal] = STATE(3462), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3462), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(1271), [sym_preproc_endregion] = STATE(1271), [sym_preproc_line] = STATE(1271), @@ -256658,47 +256544,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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3396), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3367), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1153), - [anon_sym_LPAREN] = ACTIONS(1593), - [anon_sym_ref] = ACTIONS(1595), - [anon_sym_LBRACE] = ACTIONS(1159), - [anon_sym_delegate] = ACTIONS(1161), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1305), + [anon_sym_LPAREN] = ACTIONS(1721), + [anon_sym_ref] = ACTIONS(1723), + [anon_sym_LBRACE] = ACTIONS(1311), + [anon_sym_delegate] = ACTIONS(1313), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1163), + [anon_sym_new] = ACTIONS(1315), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1167), - [anon_sym_BANG] = ACTIONS(1599), - [anon_sym_TILDE] = ACTIONS(1599), - [anon_sym_PLUS_PLUS] = ACTIONS(1599), - [anon_sym_DASH_DASH] = ACTIONS(1599), - [anon_sym_true] = ACTIONS(1173), - [anon_sym_false] = ACTIONS(1173), - [anon_sym_PLUS] = ACTIONS(1597), - [anon_sym_DASH] = ACTIONS(1597), - [anon_sym_STAR] = ACTIONS(1601), - [anon_sym_CARET] = ACTIONS(1599), - [anon_sym_AMP] = ACTIONS(1599), - [anon_sym_this] = ACTIONS(1177), + [anon_sym_checked] = ACTIONS(1317), + [anon_sym_BANG] = ACTIONS(1727), + [anon_sym_TILDE] = ACTIONS(1727), + [anon_sym_PLUS_PLUS] = ACTIONS(1727), + [anon_sym_DASH_DASH] = ACTIONS(1727), + [anon_sym_true] = ACTIONS(77), + [anon_sym_false] = ACTIONS(77), + [anon_sym_PLUS] = ACTIONS(1725), + [anon_sym_DASH] = ACTIONS(1725), + [anon_sym_STAR] = ACTIONS(1729), + [anon_sym_CARET] = ACTIONS(1727), + [anon_sym_AMP] = ACTIONS(1727), + [anon_sym_this] = ACTIONS(1321), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1179), + [anon_sym_base] = ACTIONS(1323), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1181), - [anon_sym_unchecked] = ACTIONS(1167), + [sym_predefined_type] = ACTIONS(91), + [anon_sym_unchecked] = ACTIONS(1317), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1183), - [anon_sym_throw] = ACTIONS(1603), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(1731), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1605), - [anon_sym_DOT_DOT] = ACTIONS(1607), + [anon_sym_await] = ACTIONS(1733), + [anon_sym_DOT_DOT] = ACTIONS(1735), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -256711,19 +256597,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1191), - [anon_sym_sizeof] = ACTIONS(1193), - [anon_sym_typeof] = ACTIONS(1195), - [anon_sym___makeref] = ACTIONS(1197), - [anon_sym___reftype] = ACTIONS(1199), - [anon_sym___refvalue] = ACTIONS(1201), - [sym_null_literal] = ACTIONS(1203), - [anon_sym_SQUOTE] = ACTIONS(1205), - [sym_integer_literal] = ACTIONS(1203), - [sym_real_literal] = ACTIONS(1207), - [anon_sym_DQUOTE] = ACTIONS(1209), - [sym_verbatim_string_literal] = ACTIONS(1207), - [aux_sym_preproc_if_token1] = ACTIONS(1211), + [anon_sym_stackalloc] = ACTIONS(1331), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(1333), + [anon_sym___reftype] = ACTIONS(1335), + [anon_sym___refvalue] = ACTIONS(1337), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_literal] = ACTIONS(143), + [anon_sym_DQUOTE] = ACTIONS(145), + [sym_verbatim_string_literal] = ACTIONS(143), + [aux_sym_preproc_if_token1] = ACTIONS(1339), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -256734,90 +256620,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1213), - [sym_interpolation_verbatim_start] = ACTIONS(1215), - [sym_interpolation_raw_start] = ACTIONS(1217), - [sym_raw_string_start] = ACTIONS(1219), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [sym_interpolation_raw_start] = ACTIONS(155), + [sym_raw_string_start] = ACTIONS(157), }, [1272] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2610), - [sym__name] = STATE(5898), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2197), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(4533), - [sym_non_lvalue_expression] = STATE(3277), - [sym_lvalue_expression] = STATE(3413), - [sym__expression_statement_expression] = STATE(3228), - [sym_assignment_expression] = STATE(3289), - [sym_binary_expression] = STATE(3228), - [sym_postfix_unary_expression] = STATE(3289), - [sym_prefix_unary_expression] = STATE(3289), - [sym__pointer_indirection_expression] = STATE(2609), - [sym_query_expression] = STATE(3228), - [sym_from_clause] = STATE(6160), - [sym_conditional_expression] = STATE(3228), - [sym_conditional_access_expression] = STATE(3228), - [sym_as_expression] = STATE(3228), - [sym_is_expression] = STATE(3228), - [sym_is_pattern_expression] = STATE(3228), - [sym_cast_expression] = STATE(3228), - [sym_checked_expression] = STATE(3228), - [sym_invocation_expression] = STATE(3289), - [sym_switch_expression] = STATE(3228), - [sym_await_expression] = STATE(3289), - [sym_throw_expression] = STATE(3228), - [sym_element_access_expression] = STATE(2609), - [sym_interpolated_string_expression] = STATE(3228), - [sym_member_access_expression] = STATE(2609), - [sym_object_creation_expression] = STATE(3289), - [sym_parenthesized_expression] = STATE(3289), - [sym__parenthesized_lvalue_expression] = STATE(2609), - [sym_lambda_expression] = STATE(3228), - [sym__lambda_expression_init] = STATE(7523), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3228), - [sym_anonymous_method_expression] = STATE(3228), - [sym_anonymous_object_creation_expression] = STATE(3228), - [sym_implicit_array_creation_expression] = STATE(3228), - [sym_implicit_object_creation_expression] = STATE(3228), - [sym_implicit_stackalloc_expression] = STATE(3228), - [sym_initializer_expression] = STATE(3228), - [sym_default_expression] = STATE(3228), - [sym_with_expression] = STATE(3228), - [sym_sizeof_expression] = STATE(3228), - [sym_typeof_expression] = STATE(3228), - [sym_makeref_expression] = STATE(3228), - [sym_ref_expression] = STATE(3228), - [sym_reftype_expression] = STATE(3228), - [sym_refvalue_expression] = STATE(3228), - [sym_stackalloc_expression] = STATE(3228), - [sym_range_expression] = STATE(3228), - [sym_tuple_expression] = STATE(2609), - [sym_literal] = STATE(3228), - [sym_character_literal] = STATE(3278), - [sym_string_literal] = STATE(3278), - [sym_raw_string_literal] = STATE(3278), - [sym_boolean_literal] = STATE(3278), - [sym_identifier] = STATE(2267), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3228), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2816), + [sym__name] = STATE(5879), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2196), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(5033), + [sym_non_lvalue_expression] = STATE(3495), + [sym_lvalue_expression] = STATE(3539), + [sym__expression_statement_expression] = STATE(3462), + [sym_assignment_expression] = STATE(3497), + [sym_binary_expression] = STATE(3462), + [sym_postfix_unary_expression] = STATE(3497), + [sym_prefix_unary_expression] = STATE(3497), + [sym__pointer_indirection_expression] = STATE(2815), + [sym_query_expression] = STATE(3462), + [sym_from_clause] = STATE(6144), + [sym_conditional_expression] = STATE(3462), + [sym_conditional_access_expression] = STATE(3462), + [sym_as_expression] = STATE(3462), + [sym_is_expression] = STATE(3462), + [sym_is_pattern_expression] = STATE(3462), + [sym_cast_expression] = STATE(3462), + [sym_checked_expression] = STATE(3462), + [sym_invocation_expression] = STATE(3497), + [sym_switch_expression] = STATE(3462), + [sym_await_expression] = STATE(3497), + [sym_throw_expression] = STATE(3462), + [sym_element_access_expression] = STATE(2815), + [sym_interpolated_string_expression] = STATE(3462), + [sym_member_access_expression] = STATE(2815), + [sym_object_creation_expression] = STATE(3497), + [sym_parenthesized_expression] = STATE(3497), + [sym__parenthesized_lvalue_expression] = STATE(2815), + [sym_lambda_expression] = STATE(3462), + [sym__lambda_expression_init] = STATE(7681), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3462), + [sym_anonymous_method_expression] = STATE(3462), + [sym_anonymous_object_creation_expression] = STATE(3462), + [sym_implicit_array_creation_expression] = STATE(3462), + [sym_implicit_object_creation_expression] = STATE(3462), + [sym_implicit_stackalloc_expression] = STATE(3462), + [sym_initializer_expression] = STATE(3462), + [sym_default_expression] = STATE(3462), + [sym_with_expression] = STATE(3462), + [sym_sizeof_expression] = STATE(3462), + [sym_typeof_expression] = STATE(3462), + [sym_makeref_expression] = STATE(3462), + [sym_ref_expression] = STATE(3462), + [sym_reftype_expression] = STATE(3462), + [sym_refvalue_expression] = STATE(3462), + [sym_stackalloc_expression] = STATE(3462), + [sym_range_expression] = STATE(3462), + [sym_tuple_expression] = STATE(2815), + [sym_literal] = STATE(3462), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3462), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(1272), [sym_preproc_endregion] = STATE(1272), [sym_preproc_line] = STATE(1272), @@ -256827,47 +256713,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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3396), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3367), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1153), - [anon_sym_LPAREN] = ACTIONS(1593), - [anon_sym_ref] = ACTIONS(1595), - [anon_sym_LBRACE] = ACTIONS(1159), - [anon_sym_delegate] = ACTIONS(1161), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1305), + [anon_sym_LPAREN] = ACTIONS(1721), + [anon_sym_ref] = ACTIONS(1723), + [anon_sym_LBRACE] = ACTIONS(1311), + [anon_sym_delegate] = ACTIONS(1313), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1163), + [anon_sym_new] = ACTIONS(1315), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1167), - [anon_sym_BANG] = ACTIONS(1599), - [anon_sym_TILDE] = ACTIONS(1599), - [anon_sym_PLUS_PLUS] = ACTIONS(1599), - [anon_sym_DASH_DASH] = ACTIONS(1599), - [anon_sym_true] = ACTIONS(1173), - [anon_sym_false] = ACTIONS(1173), - [anon_sym_PLUS] = ACTIONS(1597), - [anon_sym_DASH] = ACTIONS(1597), - [anon_sym_STAR] = ACTIONS(1601), - [anon_sym_CARET] = ACTIONS(1599), - [anon_sym_AMP] = ACTIONS(1599), - [anon_sym_this] = ACTIONS(1177), + [anon_sym_checked] = ACTIONS(1317), + [anon_sym_BANG] = ACTIONS(1727), + [anon_sym_TILDE] = ACTIONS(1727), + [anon_sym_PLUS_PLUS] = ACTIONS(1727), + [anon_sym_DASH_DASH] = ACTIONS(1727), + [anon_sym_true] = ACTIONS(77), + [anon_sym_false] = ACTIONS(77), + [anon_sym_PLUS] = ACTIONS(1725), + [anon_sym_DASH] = ACTIONS(1725), + [anon_sym_STAR] = ACTIONS(1729), + [anon_sym_CARET] = ACTIONS(1727), + [anon_sym_AMP] = ACTIONS(1727), + [anon_sym_this] = ACTIONS(1321), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1179), + [anon_sym_base] = ACTIONS(1323), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1181), - [anon_sym_unchecked] = ACTIONS(1167), + [sym_predefined_type] = ACTIONS(91), + [anon_sym_unchecked] = ACTIONS(1317), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1183), - [anon_sym_throw] = ACTIONS(1603), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(1731), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1605), - [anon_sym_DOT_DOT] = ACTIONS(1607), + [anon_sym_await] = ACTIONS(1733), + [anon_sym_DOT_DOT] = ACTIONS(1735), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -256880,19 +256766,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1191), - [anon_sym_sizeof] = ACTIONS(1193), - [anon_sym_typeof] = ACTIONS(1195), - [anon_sym___makeref] = ACTIONS(1197), - [anon_sym___reftype] = ACTIONS(1199), - [anon_sym___refvalue] = ACTIONS(1201), - [sym_null_literal] = ACTIONS(1203), - [anon_sym_SQUOTE] = ACTIONS(1205), - [sym_integer_literal] = ACTIONS(1203), - [sym_real_literal] = ACTIONS(1207), - [anon_sym_DQUOTE] = ACTIONS(1209), - [sym_verbatim_string_literal] = ACTIONS(1207), - [aux_sym_preproc_if_token1] = ACTIONS(1211), + [anon_sym_stackalloc] = ACTIONS(1331), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(1333), + [anon_sym___reftype] = ACTIONS(1335), + [anon_sym___refvalue] = ACTIONS(1337), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_literal] = ACTIONS(143), + [anon_sym_DQUOTE] = ACTIONS(145), + [sym_verbatim_string_literal] = ACTIONS(143), + [aux_sym_preproc_if_token1] = ACTIONS(1339), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -256903,90 +256789,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1213), - [sym_interpolation_verbatim_start] = ACTIONS(1215), - [sym_interpolation_raw_start] = ACTIONS(1217), - [sym_raw_string_start] = ACTIONS(1219), + [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(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2610), - [sym__name] = STATE(5898), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2197), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(4749), - [sym_non_lvalue_expression] = STATE(3277), - [sym_lvalue_expression] = STATE(3413), - [sym__expression_statement_expression] = STATE(3228), - [sym_assignment_expression] = STATE(3289), - [sym_binary_expression] = STATE(3228), - [sym_postfix_unary_expression] = STATE(3289), - [sym_prefix_unary_expression] = STATE(3289), - [sym__pointer_indirection_expression] = STATE(2609), - [sym_query_expression] = STATE(3228), - [sym_from_clause] = STATE(6160), - [sym_conditional_expression] = STATE(3228), - [sym_conditional_access_expression] = STATE(3228), - [sym_as_expression] = STATE(3228), - [sym_is_expression] = STATE(3228), - [sym_is_pattern_expression] = STATE(3228), - [sym_cast_expression] = STATE(3228), - [sym_checked_expression] = STATE(3228), - [sym_invocation_expression] = STATE(3289), - [sym_switch_expression] = STATE(3228), - [sym_await_expression] = STATE(3289), - [sym_throw_expression] = STATE(3228), - [sym_element_access_expression] = STATE(2609), - [sym_interpolated_string_expression] = STATE(3228), - [sym_member_access_expression] = STATE(2609), - [sym_object_creation_expression] = STATE(3289), - [sym_parenthesized_expression] = STATE(3289), - [sym__parenthesized_lvalue_expression] = STATE(2609), - [sym_lambda_expression] = STATE(3228), - [sym__lambda_expression_init] = STATE(7523), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3228), - [sym_anonymous_method_expression] = STATE(3228), - [sym_anonymous_object_creation_expression] = STATE(3228), - [sym_implicit_array_creation_expression] = STATE(3228), - [sym_implicit_object_creation_expression] = STATE(3228), - [sym_implicit_stackalloc_expression] = STATE(3228), - [sym_initializer_expression] = STATE(3228), - [sym_default_expression] = STATE(3228), - [sym_with_expression] = STATE(3228), - [sym_sizeof_expression] = STATE(3228), - [sym_typeof_expression] = STATE(3228), - [sym_makeref_expression] = STATE(3228), - [sym_ref_expression] = STATE(3228), - [sym_reftype_expression] = STATE(3228), - [sym_refvalue_expression] = STATE(3228), - [sym_stackalloc_expression] = STATE(3228), - [sym_range_expression] = STATE(3228), - [sym_tuple_expression] = STATE(2609), - [sym_literal] = STATE(3228), - [sym_character_literal] = STATE(3278), - [sym_string_literal] = STATE(3278), - [sym_raw_string_literal] = STATE(3278), - [sym_boolean_literal] = STATE(3278), - [sym_identifier] = STATE(2267), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3228), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(5881), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2386), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(4218), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3132), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3102), + [sym_postfix_unary_expression] = STATE(3079), + [sym_prefix_unary_expression] = STATE(3079), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6158), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3102), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3079), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3102), + [sym_member_access_expression] = STATE(2472), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3079), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7650), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(3102), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3102), + [sym_typeof_expression] = STATE(3102), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2472), + [sym_literal] = STATE(3102), + [sym_character_literal] = STATE(3037), + [sym_string_literal] = STATE(3037), + [sym_raw_string_literal] = STATE(3037), + [sym_boolean_literal] = STATE(3037), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(1273), [sym_preproc_endregion] = STATE(1273), [sym_preproc_line] = STATE(1273), @@ -256996,47 +256882,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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3396), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1153), - [anon_sym_LPAREN] = ACTIONS(1593), - [anon_sym_ref] = ACTIONS(1595), - [anon_sym_LBRACE] = ACTIONS(1159), - [anon_sym_delegate] = ACTIONS(1161), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1479), + [anon_sym_LPAREN] = ACTIONS(2185), + [anon_sym_ref] = ACTIONS(2187), + [anon_sym_LBRACE] = ACTIONS(1481), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1163), + [anon_sym_new] = ACTIONS(1899), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1167), - [anon_sym_BANG] = ACTIONS(1599), - [anon_sym_TILDE] = ACTIONS(1599), - [anon_sym_PLUS_PLUS] = ACTIONS(1599), - [anon_sym_DASH_DASH] = ACTIONS(1599), - [anon_sym_true] = ACTIONS(1173), - [anon_sym_false] = ACTIONS(1173), - [anon_sym_PLUS] = ACTIONS(1597), - [anon_sym_DASH] = ACTIONS(1597), - [anon_sym_STAR] = ACTIONS(1601), - [anon_sym_CARET] = ACTIONS(1599), - [anon_sym_AMP] = ACTIONS(1599), - [anon_sym_this] = ACTIONS(1177), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(2191), + [anon_sym_TILDE] = ACTIONS(2191), + [anon_sym_PLUS_PLUS] = ACTIONS(2191), + [anon_sym_DASH_DASH] = ACTIONS(2191), + [anon_sym_true] = ACTIONS(1257), + [anon_sym_false] = ACTIONS(1257), + [anon_sym_PLUS] = ACTIONS(2189), + [anon_sym_DASH] = ACTIONS(2189), + [anon_sym_STAR] = ACTIONS(1905), + [anon_sym_CARET] = ACTIONS(2191), + [anon_sym_AMP] = ACTIONS(2191), + [anon_sym_this] = ACTIONS(83), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1179), + [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1181), - [anon_sym_unchecked] = ACTIONS(1167), + [sym_predefined_type] = ACTIONS(1265), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1183), - [anon_sym_throw] = ACTIONS(1603), + [anon_sym_default] = ACTIONS(1267), + [anon_sym_throw] = ACTIONS(2193), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1605), - [anon_sym_DOT_DOT] = ACTIONS(1607), + [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), @@ -257049,19 +256935,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1191), - [anon_sym_sizeof] = ACTIONS(1193), - [anon_sym_typeof] = ACTIONS(1195), - [anon_sym___makeref] = ACTIONS(1197), - [anon_sym___reftype] = ACTIONS(1199), - [anon_sym___refvalue] = ACTIONS(1201), - [sym_null_literal] = ACTIONS(1203), - [anon_sym_SQUOTE] = ACTIONS(1205), - [sym_integer_literal] = ACTIONS(1203), - [sym_real_literal] = ACTIONS(1207), - [anon_sym_DQUOTE] = ACTIONS(1209), - [sym_verbatim_string_literal] = ACTIONS(1207), - [aux_sym_preproc_if_token1] = ACTIONS(1211), + [anon_sym_stackalloc] = ACTIONS(127), + [anon_sym_sizeof] = ACTIONS(1277), + [anon_sym_typeof] = ACTIONS(1279), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), + [sym_null_literal] = ACTIONS(1287), + [anon_sym_SQUOTE] = ACTIONS(1289), + [sym_integer_literal] = ACTIONS(1287), + [sym_real_literal] = ACTIONS(1291), + [anon_sym_DQUOTE] = ACTIONS(1293), + [sym_verbatim_string_literal] = ACTIONS(1291), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -257072,90 +256958,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1213), - [sym_interpolation_verbatim_start] = ACTIONS(1215), - [sym_interpolation_raw_start] = ACTIONS(1217), - [sym_raw_string_start] = ACTIONS(1219), + [sym_interpolation_regular_start] = ACTIONS(1297), + [sym_interpolation_verbatim_start] = ACTIONS(1299), + [sym_interpolation_raw_start] = ACTIONS(1301), + [sym_raw_string_start] = ACTIONS(1303), }, [1274] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2610), - [sym__name] = STATE(5898), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2197), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(4746), - [sym_non_lvalue_expression] = STATE(3277), - [sym_lvalue_expression] = STATE(3413), - [sym__expression_statement_expression] = STATE(3228), - [sym_assignment_expression] = STATE(3289), - [sym_binary_expression] = STATE(3228), - [sym_postfix_unary_expression] = STATE(3289), - [sym_prefix_unary_expression] = STATE(3289), - [sym__pointer_indirection_expression] = STATE(2609), - [sym_query_expression] = STATE(3228), - [sym_from_clause] = STATE(6160), - [sym_conditional_expression] = STATE(3228), - [sym_conditional_access_expression] = STATE(3228), - [sym_as_expression] = STATE(3228), - [sym_is_expression] = STATE(3228), - [sym_is_pattern_expression] = STATE(3228), - [sym_cast_expression] = STATE(3228), - [sym_checked_expression] = STATE(3228), - [sym_invocation_expression] = STATE(3289), - [sym_switch_expression] = STATE(3228), - [sym_await_expression] = STATE(3289), - [sym_throw_expression] = STATE(3228), - [sym_element_access_expression] = STATE(2609), - [sym_interpolated_string_expression] = STATE(3228), - [sym_member_access_expression] = STATE(2609), - [sym_object_creation_expression] = STATE(3289), - [sym_parenthesized_expression] = STATE(3289), - [sym__parenthesized_lvalue_expression] = STATE(2609), - [sym_lambda_expression] = STATE(3228), - [sym__lambda_expression_init] = STATE(7523), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3228), - [sym_anonymous_method_expression] = STATE(3228), - [sym_anonymous_object_creation_expression] = STATE(3228), - [sym_implicit_array_creation_expression] = STATE(3228), - [sym_implicit_object_creation_expression] = STATE(3228), - [sym_implicit_stackalloc_expression] = STATE(3228), - [sym_initializer_expression] = STATE(3228), - [sym_default_expression] = STATE(3228), - [sym_with_expression] = STATE(3228), - [sym_sizeof_expression] = STATE(3228), - [sym_typeof_expression] = STATE(3228), - [sym_makeref_expression] = STATE(3228), - [sym_ref_expression] = STATE(3228), - [sym_reftype_expression] = STATE(3228), - [sym_refvalue_expression] = STATE(3228), - [sym_stackalloc_expression] = STATE(3228), - [sym_range_expression] = STATE(3228), - [sym_tuple_expression] = STATE(2609), - [sym_literal] = STATE(3228), - [sym_character_literal] = STATE(3278), - [sym_string_literal] = STATE(3278), - [sym_raw_string_literal] = STATE(3278), - [sym_boolean_literal] = STATE(3278), - [sym_identifier] = STATE(2267), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3228), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2816), + [sym__name] = STATE(5879), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2196), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(3214), + [sym_non_lvalue_expression] = STATE(3495), + [sym_lvalue_expression] = STATE(3539), + [sym__expression_statement_expression] = STATE(3462), + [sym_assignment_expression] = STATE(3497), + [sym_binary_expression] = STATE(3462), + [sym_postfix_unary_expression] = STATE(3497), + [sym_prefix_unary_expression] = STATE(3497), + [sym__pointer_indirection_expression] = STATE(2815), + [sym_query_expression] = STATE(3462), + [sym_from_clause] = STATE(6144), + [sym_conditional_expression] = STATE(3462), + [sym_conditional_access_expression] = STATE(3462), + [sym_as_expression] = STATE(3462), + [sym_is_expression] = STATE(3462), + [sym_is_pattern_expression] = STATE(3462), + [sym_cast_expression] = STATE(3462), + [sym_checked_expression] = STATE(3462), + [sym_invocation_expression] = STATE(3497), + [sym_switch_expression] = STATE(3462), + [sym_await_expression] = STATE(3497), + [sym_throw_expression] = STATE(3462), + [sym_element_access_expression] = STATE(2815), + [sym_interpolated_string_expression] = STATE(3462), + [sym_member_access_expression] = STATE(2815), + [sym_object_creation_expression] = STATE(3497), + [sym_parenthesized_expression] = STATE(3497), + [sym__parenthesized_lvalue_expression] = STATE(2815), + [sym_lambda_expression] = STATE(3462), + [sym__lambda_expression_init] = STATE(7681), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3462), + [sym_anonymous_method_expression] = STATE(3462), + [sym_anonymous_object_creation_expression] = STATE(3462), + [sym_implicit_array_creation_expression] = STATE(3462), + [sym_implicit_object_creation_expression] = STATE(3462), + [sym_implicit_stackalloc_expression] = STATE(3462), + [sym_initializer_expression] = STATE(3462), + [sym_default_expression] = STATE(3462), + [sym_with_expression] = STATE(3462), + [sym_sizeof_expression] = STATE(3462), + [sym_typeof_expression] = STATE(3462), + [sym_makeref_expression] = STATE(3462), + [sym_ref_expression] = STATE(3462), + [sym_reftype_expression] = STATE(3462), + [sym_refvalue_expression] = STATE(3462), + [sym_stackalloc_expression] = STATE(3462), + [sym_range_expression] = STATE(3462), + [sym_tuple_expression] = STATE(2815), + [sym_literal] = STATE(3462), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3462), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(1274), [sym_preproc_endregion] = STATE(1274), [sym_preproc_line] = STATE(1274), @@ -257165,47 +257051,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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3396), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3367), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1153), - [anon_sym_LPAREN] = ACTIONS(1593), - [anon_sym_ref] = ACTIONS(1595), - [anon_sym_LBRACE] = ACTIONS(1159), - [anon_sym_delegate] = ACTIONS(1161), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1305), + [anon_sym_LPAREN] = ACTIONS(1721), + [anon_sym_ref] = ACTIONS(1723), + [anon_sym_LBRACE] = ACTIONS(1311), + [anon_sym_delegate] = ACTIONS(1313), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1163), + [anon_sym_new] = ACTIONS(1315), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1167), - [anon_sym_BANG] = ACTIONS(1599), - [anon_sym_TILDE] = ACTIONS(1599), - [anon_sym_PLUS_PLUS] = ACTIONS(1599), - [anon_sym_DASH_DASH] = ACTIONS(1599), - [anon_sym_true] = ACTIONS(1173), - [anon_sym_false] = ACTIONS(1173), - [anon_sym_PLUS] = ACTIONS(1597), - [anon_sym_DASH] = ACTIONS(1597), - [anon_sym_STAR] = ACTIONS(1601), - [anon_sym_CARET] = ACTIONS(1599), - [anon_sym_AMP] = ACTIONS(1599), - [anon_sym_this] = ACTIONS(1177), + [anon_sym_checked] = ACTIONS(1317), + [anon_sym_BANG] = ACTIONS(1727), + [anon_sym_TILDE] = ACTIONS(1727), + [anon_sym_PLUS_PLUS] = ACTIONS(1727), + [anon_sym_DASH_DASH] = ACTIONS(1727), + [anon_sym_true] = ACTIONS(77), + [anon_sym_false] = ACTIONS(77), + [anon_sym_PLUS] = ACTIONS(1725), + [anon_sym_DASH] = ACTIONS(1725), + [anon_sym_STAR] = ACTIONS(1729), + [anon_sym_CARET] = ACTIONS(1727), + [anon_sym_AMP] = ACTIONS(1727), + [anon_sym_this] = ACTIONS(1321), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1179), + [anon_sym_base] = ACTIONS(1323), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1181), - [anon_sym_unchecked] = ACTIONS(1167), + [sym_predefined_type] = ACTIONS(91), + [anon_sym_unchecked] = ACTIONS(1317), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1183), - [anon_sym_throw] = ACTIONS(1603), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(1731), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1605), - [anon_sym_DOT_DOT] = ACTIONS(1607), + [anon_sym_await] = ACTIONS(1733), + [anon_sym_DOT_DOT] = ACTIONS(1735), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -257218,19 +257104,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1191), - [anon_sym_sizeof] = ACTIONS(1193), - [anon_sym_typeof] = ACTIONS(1195), - [anon_sym___makeref] = ACTIONS(1197), - [anon_sym___reftype] = ACTIONS(1199), - [anon_sym___refvalue] = ACTIONS(1201), - [sym_null_literal] = ACTIONS(1203), - [anon_sym_SQUOTE] = ACTIONS(1205), - [sym_integer_literal] = ACTIONS(1203), - [sym_real_literal] = ACTIONS(1207), - [anon_sym_DQUOTE] = ACTIONS(1209), - [sym_verbatim_string_literal] = ACTIONS(1207), - [aux_sym_preproc_if_token1] = ACTIONS(1211), + [anon_sym_stackalloc] = ACTIONS(1331), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(1333), + [anon_sym___reftype] = ACTIONS(1335), + [anon_sym___refvalue] = ACTIONS(1337), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_literal] = ACTIONS(143), + [anon_sym_DQUOTE] = ACTIONS(145), + [sym_verbatim_string_literal] = ACTIONS(143), + [aux_sym_preproc_if_token1] = ACTIONS(1339), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -257241,90 +257127,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1213), - [sym_interpolation_verbatim_start] = ACTIONS(1215), - [sym_interpolation_raw_start] = ACTIONS(1217), - [sym_raw_string_start] = ACTIONS(1219), + [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(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2610), - [sym__name] = STATE(5898), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2197), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(4770), - [sym_non_lvalue_expression] = STATE(3277), - [sym_lvalue_expression] = STATE(3413), - [sym__expression_statement_expression] = STATE(3228), - [sym_assignment_expression] = STATE(3289), - [sym_binary_expression] = STATE(3228), - [sym_postfix_unary_expression] = STATE(3289), - [sym_prefix_unary_expression] = STATE(3289), - [sym__pointer_indirection_expression] = STATE(2609), - [sym_query_expression] = STATE(3228), - [sym_from_clause] = STATE(6160), - [sym_conditional_expression] = STATE(3228), - [sym_conditional_access_expression] = STATE(3228), - [sym_as_expression] = STATE(3228), - [sym_is_expression] = STATE(3228), - [sym_is_pattern_expression] = STATE(3228), - [sym_cast_expression] = STATE(3228), - [sym_checked_expression] = STATE(3228), - [sym_invocation_expression] = STATE(3289), - [sym_switch_expression] = STATE(3228), - [sym_await_expression] = STATE(3289), - [sym_throw_expression] = STATE(3228), - [sym_element_access_expression] = STATE(2609), - [sym_interpolated_string_expression] = STATE(3228), - [sym_member_access_expression] = STATE(2609), - [sym_object_creation_expression] = STATE(3289), - [sym_parenthesized_expression] = STATE(3289), - [sym__parenthesized_lvalue_expression] = STATE(2609), - [sym_lambda_expression] = STATE(3228), - [sym__lambda_expression_init] = STATE(7523), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3228), - [sym_anonymous_method_expression] = STATE(3228), - [sym_anonymous_object_creation_expression] = STATE(3228), - [sym_implicit_array_creation_expression] = STATE(3228), - [sym_implicit_object_creation_expression] = STATE(3228), - [sym_implicit_stackalloc_expression] = STATE(3228), - [sym_initializer_expression] = STATE(3228), - [sym_default_expression] = STATE(3228), - [sym_with_expression] = STATE(3228), - [sym_sizeof_expression] = STATE(3228), - [sym_typeof_expression] = STATE(3228), - [sym_makeref_expression] = STATE(3228), - [sym_ref_expression] = STATE(3228), - [sym_reftype_expression] = STATE(3228), - [sym_refvalue_expression] = STATE(3228), - [sym_stackalloc_expression] = STATE(3228), - [sym_range_expression] = STATE(3228), - [sym_tuple_expression] = STATE(2609), - [sym_literal] = STATE(3228), - [sym_character_literal] = STATE(3278), - [sym_string_literal] = STATE(3278), - [sym_raw_string_literal] = STATE(3278), - [sym_boolean_literal] = STATE(3278), - [sym_identifier] = STATE(2267), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3228), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(5881), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2386), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(4219), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3132), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3102), + [sym_postfix_unary_expression] = STATE(3079), + [sym_prefix_unary_expression] = STATE(3079), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6158), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3102), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3079), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3102), + [sym_member_access_expression] = STATE(2472), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3079), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7650), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(3102), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3102), + [sym_typeof_expression] = STATE(3102), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2472), + [sym_literal] = STATE(3102), + [sym_character_literal] = STATE(3037), + [sym_string_literal] = STATE(3037), + [sym_raw_string_literal] = STATE(3037), + [sym_boolean_literal] = STATE(3037), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(1275), [sym_preproc_endregion] = STATE(1275), [sym_preproc_line] = STATE(1275), @@ -257334,47 +257220,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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3396), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1153), - [anon_sym_LPAREN] = ACTIONS(1593), - [anon_sym_ref] = ACTIONS(1595), - [anon_sym_LBRACE] = ACTIONS(1159), - [anon_sym_delegate] = ACTIONS(1161), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1479), + [anon_sym_LPAREN] = ACTIONS(2185), + [anon_sym_ref] = ACTIONS(2187), + [anon_sym_LBRACE] = ACTIONS(1481), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1163), + [anon_sym_new] = ACTIONS(1899), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1167), - [anon_sym_BANG] = ACTIONS(1599), - [anon_sym_TILDE] = ACTIONS(1599), - [anon_sym_PLUS_PLUS] = ACTIONS(1599), - [anon_sym_DASH_DASH] = ACTIONS(1599), - [anon_sym_true] = ACTIONS(1173), - [anon_sym_false] = ACTIONS(1173), - [anon_sym_PLUS] = ACTIONS(1597), - [anon_sym_DASH] = ACTIONS(1597), - [anon_sym_STAR] = ACTIONS(1601), - [anon_sym_CARET] = ACTIONS(1599), - [anon_sym_AMP] = ACTIONS(1599), - [anon_sym_this] = ACTIONS(1177), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(2191), + [anon_sym_TILDE] = ACTIONS(2191), + [anon_sym_PLUS_PLUS] = ACTIONS(2191), + [anon_sym_DASH_DASH] = ACTIONS(2191), + [anon_sym_true] = ACTIONS(1257), + [anon_sym_false] = ACTIONS(1257), + [anon_sym_PLUS] = ACTIONS(2189), + [anon_sym_DASH] = ACTIONS(2189), + [anon_sym_STAR] = ACTIONS(1905), + [anon_sym_CARET] = ACTIONS(2191), + [anon_sym_AMP] = ACTIONS(2191), + [anon_sym_this] = ACTIONS(83), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1179), + [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1181), - [anon_sym_unchecked] = ACTIONS(1167), + [sym_predefined_type] = ACTIONS(1265), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1183), - [anon_sym_throw] = ACTIONS(1603), + [anon_sym_default] = ACTIONS(1267), + [anon_sym_throw] = ACTIONS(2193), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1605), - [anon_sym_DOT_DOT] = ACTIONS(1607), + [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), @@ -257387,19 +257273,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1191), - [anon_sym_sizeof] = ACTIONS(1193), - [anon_sym_typeof] = ACTIONS(1195), - [anon_sym___makeref] = ACTIONS(1197), - [anon_sym___reftype] = ACTIONS(1199), - [anon_sym___refvalue] = ACTIONS(1201), - [sym_null_literal] = ACTIONS(1203), - [anon_sym_SQUOTE] = ACTIONS(1205), - [sym_integer_literal] = ACTIONS(1203), - [sym_real_literal] = ACTIONS(1207), - [anon_sym_DQUOTE] = ACTIONS(1209), - [sym_verbatim_string_literal] = ACTIONS(1207), - [aux_sym_preproc_if_token1] = ACTIONS(1211), + [anon_sym_stackalloc] = ACTIONS(127), + [anon_sym_sizeof] = ACTIONS(1277), + [anon_sym_typeof] = ACTIONS(1279), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), + [sym_null_literal] = ACTIONS(1287), + [anon_sym_SQUOTE] = ACTIONS(1289), + [sym_integer_literal] = ACTIONS(1287), + [sym_real_literal] = ACTIONS(1291), + [anon_sym_DQUOTE] = ACTIONS(1293), + [sym_verbatim_string_literal] = ACTIONS(1291), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -257410,90 +257296,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1213), - [sym_interpolation_verbatim_start] = ACTIONS(1215), - [sym_interpolation_raw_start] = ACTIONS(1217), - [sym_raw_string_start] = ACTIONS(1219), + [sym_interpolation_regular_start] = ACTIONS(1297), + [sym_interpolation_verbatim_start] = ACTIONS(1299), + [sym_interpolation_raw_start] = ACTIONS(1301), + [sym_raw_string_start] = ACTIONS(1303), }, [1276] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2610), - [sym__name] = STATE(5898), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2197), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(4787), - [sym_non_lvalue_expression] = STATE(3277), - [sym_lvalue_expression] = STATE(3413), - [sym__expression_statement_expression] = STATE(3228), - [sym_assignment_expression] = STATE(3289), - [sym_binary_expression] = STATE(3228), - [sym_postfix_unary_expression] = STATE(3289), - [sym_prefix_unary_expression] = STATE(3289), - [sym__pointer_indirection_expression] = STATE(2609), - [sym_query_expression] = STATE(3228), - [sym_from_clause] = STATE(6160), - [sym_conditional_expression] = STATE(3228), - [sym_conditional_access_expression] = STATE(3228), - [sym_as_expression] = STATE(3228), - [sym_is_expression] = STATE(3228), - [sym_is_pattern_expression] = STATE(3228), - [sym_cast_expression] = STATE(3228), - [sym_checked_expression] = STATE(3228), - [sym_invocation_expression] = STATE(3289), - [sym_switch_expression] = STATE(3228), - [sym_await_expression] = STATE(3289), - [sym_throw_expression] = STATE(3228), - [sym_element_access_expression] = STATE(2609), - [sym_interpolated_string_expression] = STATE(3228), - [sym_member_access_expression] = STATE(2609), - [sym_object_creation_expression] = STATE(3289), - [sym_parenthesized_expression] = STATE(3289), - [sym__parenthesized_lvalue_expression] = STATE(2609), - [sym_lambda_expression] = STATE(3228), - [sym__lambda_expression_init] = STATE(7523), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3228), - [sym_anonymous_method_expression] = STATE(3228), - [sym_anonymous_object_creation_expression] = STATE(3228), - [sym_implicit_array_creation_expression] = STATE(3228), - [sym_implicit_object_creation_expression] = STATE(3228), - [sym_implicit_stackalloc_expression] = STATE(3228), - [sym_initializer_expression] = STATE(3228), - [sym_default_expression] = STATE(3228), - [sym_with_expression] = STATE(3228), - [sym_sizeof_expression] = STATE(3228), - [sym_typeof_expression] = STATE(3228), - [sym_makeref_expression] = STATE(3228), - [sym_ref_expression] = STATE(3228), - [sym_reftype_expression] = STATE(3228), - [sym_refvalue_expression] = STATE(3228), - [sym_stackalloc_expression] = STATE(3228), - [sym_range_expression] = STATE(3228), - [sym_tuple_expression] = STATE(2609), - [sym_literal] = STATE(3228), - [sym_character_literal] = STATE(3278), - [sym_string_literal] = STATE(3278), - [sym_raw_string_literal] = STATE(3278), - [sym_boolean_literal] = STATE(3278), - [sym_identifier] = STATE(2267), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3228), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2416), + [sym__name] = STATE(5868), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2387), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(5164), + [sym_non_lvalue_expression] = STATE(3040), + [sym_lvalue_expression] = STATE(3634), + [sym__expression_statement_expression] = STATE(3035), + [sym_assignment_expression] = STATE(3043), + [sym_binary_expression] = STATE(3035), + [sym_postfix_unary_expression] = STATE(3043), + [sym_prefix_unary_expression] = STATE(3043), + [sym__pointer_indirection_expression] = STATE(2415), + [sym_query_expression] = STATE(3035), + [sym_from_clause] = STATE(6130), + [sym_conditional_expression] = STATE(3035), + [sym_conditional_access_expression] = STATE(3035), + [sym_as_expression] = STATE(3035), + [sym_is_expression] = STATE(3035), + [sym_is_pattern_expression] = STATE(3035), + [sym_cast_expression] = STATE(3035), + [sym_checked_expression] = STATE(3035), + [sym_invocation_expression] = STATE(3043), + [sym_switch_expression] = STATE(3035), + [sym_await_expression] = STATE(3043), + [sym_throw_expression] = STATE(3035), + [sym_element_access_expression] = STATE(2415), + [sym_interpolated_string_expression] = STATE(3035), + [sym_member_access_expression] = STATE(2415), + [sym_object_creation_expression] = STATE(3043), + [sym_parenthesized_expression] = STATE(3043), + [sym__parenthesized_lvalue_expression] = STATE(2415), + [sym_lambda_expression] = STATE(3035), + [sym__lambda_expression_init] = STATE(7324), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3035), + [sym_anonymous_method_expression] = STATE(3035), + [sym_anonymous_object_creation_expression] = STATE(3035), + [sym_implicit_array_creation_expression] = STATE(3035), + [sym_implicit_object_creation_expression] = STATE(3035), + [sym_implicit_stackalloc_expression] = STATE(3035), + [sym_initializer_expression] = STATE(3035), + [sym_default_expression] = STATE(3035), + [sym_with_expression] = STATE(3035), + [sym_sizeof_expression] = STATE(3035), + [sym_typeof_expression] = STATE(3035), + [sym_makeref_expression] = STATE(3035), + [sym_ref_expression] = STATE(3035), + [sym_reftype_expression] = STATE(3035), + [sym_refvalue_expression] = STATE(3035), + [sym_stackalloc_expression] = STATE(3035), + [sym_range_expression] = STATE(3035), + [sym_tuple_expression] = STATE(2415), + [sym_literal] = STATE(3035), + [sym_character_literal] = STATE(3037), + [sym_string_literal] = STATE(3037), + [sym_raw_string_literal] = STATE(3037), + [sym_boolean_literal] = STATE(3037), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3035), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(1276), [sym_preproc_endregion] = STATE(1276), [sym_preproc_line] = STATE(1276), @@ -257503,47 +257389,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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3396), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3455), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1153), - [anon_sym_LPAREN] = ACTIONS(1593), - [anon_sym_ref] = ACTIONS(1595), - [anon_sym_LBRACE] = ACTIONS(1159), - [anon_sym_delegate] = ACTIONS(1161), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1239), + [anon_sym_LPAREN] = ACTIONS(2281), + [anon_sym_ref] = ACTIONS(2283), + [anon_sym_LBRACE] = ACTIONS(1245), + [anon_sym_delegate] = ACTIONS(1247), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1163), + [anon_sym_new] = ACTIONS(2285), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1167), - [anon_sym_BANG] = ACTIONS(1599), - [anon_sym_TILDE] = ACTIONS(1599), - [anon_sym_PLUS_PLUS] = ACTIONS(1599), - [anon_sym_DASH_DASH] = ACTIONS(1599), - [anon_sym_true] = ACTIONS(1173), - [anon_sym_false] = ACTIONS(1173), - [anon_sym_PLUS] = ACTIONS(1597), - [anon_sym_DASH] = ACTIONS(1597), - [anon_sym_STAR] = ACTIONS(1601), - [anon_sym_CARET] = ACTIONS(1599), - [anon_sym_AMP] = ACTIONS(1599), - [anon_sym_this] = ACTIONS(1177), + [anon_sym_checked] = ACTIONS(1251), + [anon_sym_BANG] = ACTIONS(2289), + [anon_sym_TILDE] = ACTIONS(2289), + [anon_sym_PLUS_PLUS] = ACTIONS(2289), + [anon_sym_DASH_DASH] = ACTIONS(2289), + [anon_sym_true] = ACTIONS(1257), + [anon_sym_false] = ACTIONS(1257), + [anon_sym_PLUS] = ACTIONS(2287), + [anon_sym_DASH] = ACTIONS(2287), + [anon_sym_STAR] = ACTIONS(2291), + [anon_sym_CARET] = ACTIONS(2289), + [anon_sym_AMP] = ACTIONS(2289), + [anon_sym_this] = ACTIONS(1261), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1179), + [anon_sym_base] = ACTIONS(1263), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1181), - [anon_sym_unchecked] = ACTIONS(1167), + [sym_predefined_type] = ACTIONS(1265), + [anon_sym_unchecked] = ACTIONS(1251), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1183), - [anon_sym_throw] = ACTIONS(1603), + [anon_sym_default] = ACTIONS(1267), + [anon_sym_throw] = ACTIONS(2293), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1605), - [anon_sym_DOT_DOT] = ACTIONS(1607), + [anon_sym_await] = ACTIONS(2295), + [anon_sym_DOT_DOT] = ACTIONS(2297), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -257556,19 +257442,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1191), - [anon_sym_sizeof] = ACTIONS(1193), - [anon_sym_typeof] = ACTIONS(1195), - [anon_sym___makeref] = ACTIONS(1197), - [anon_sym___reftype] = ACTIONS(1199), - [anon_sym___refvalue] = ACTIONS(1201), - [sym_null_literal] = ACTIONS(1203), - [anon_sym_SQUOTE] = ACTIONS(1205), - [sym_integer_literal] = ACTIONS(1203), - [sym_real_literal] = ACTIONS(1207), - [anon_sym_DQUOTE] = ACTIONS(1209), - [sym_verbatim_string_literal] = ACTIONS(1207), - [aux_sym_preproc_if_token1] = ACTIONS(1211), + [anon_sym_stackalloc] = ACTIONS(1275), + [anon_sym_sizeof] = ACTIONS(1277), + [anon_sym_typeof] = ACTIONS(1279), + [anon_sym___makeref] = ACTIONS(1281), + [anon_sym___reftype] = ACTIONS(1283), + [anon_sym___refvalue] = ACTIONS(1285), + [sym_null_literal] = ACTIONS(1287), + [anon_sym_SQUOTE] = ACTIONS(1289), + [sym_integer_literal] = ACTIONS(1287), + [sym_real_literal] = ACTIONS(1291), + [anon_sym_DQUOTE] = ACTIONS(1293), + [sym_verbatim_string_literal] = ACTIONS(1291), + [aux_sym_preproc_if_token1] = ACTIONS(1295), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -257579,90 +257465,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1213), - [sym_interpolation_verbatim_start] = ACTIONS(1215), - [sym_interpolation_raw_start] = ACTIONS(1217), - [sym_raw_string_start] = ACTIONS(1219), + [sym_interpolation_regular_start] = ACTIONS(1297), + [sym_interpolation_verbatim_start] = ACTIONS(1299), + [sym_interpolation_raw_start] = ACTIONS(1301), + [sym_raw_string_start] = ACTIONS(1303), }, [1277] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2610), - [sym__name] = STATE(5898), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2197), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(4534), - [sym_non_lvalue_expression] = STATE(3277), - [sym_lvalue_expression] = STATE(3413), - [sym__expression_statement_expression] = STATE(3228), - [sym_assignment_expression] = STATE(3289), - [sym_binary_expression] = STATE(3228), - [sym_postfix_unary_expression] = STATE(3289), - [sym_prefix_unary_expression] = STATE(3289), - [sym__pointer_indirection_expression] = STATE(2609), - [sym_query_expression] = STATE(3228), - [sym_from_clause] = STATE(6160), - [sym_conditional_expression] = STATE(3228), - [sym_conditional_access_expression] = STATE(3228), - [sym_as_expression] = STATE(3228), - [sym_is_expression] = STATE(3228), - [sym_is_pattern_expression] = STATE(3228), - [sym_cast_expression] = STATE(3228), - [sym_checked_expression] = STATE(3228), - [sym_invocation_expression] = STATE(3289), - [sym_switch_expression] = STATE(3228), - [sym_await_expression] = STATE(3289), - [sym_throw_expression] = STATE(3228), - [sym_element_access_expression] = STATE(2609), - [sym_interpolated_string_expression] = STATE(3228), - [sym_member_access_expression] = STATE(2609), - [sym_object_creation_expression] = STATE(3289), - [sym_parenthesized_expression] = STATE(3289), - [sym__parenthesized_lvalue_expression] = STATE(2609), - [sym_lambda_expression] = STATE(3228), - [sym__lambda_expression_init] = STATE(7523), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3228), - [sym_anonymous_method_expression] = STATE(3228), - [sym_anonymous_object_creation_expression] = STATE(3228), - [sym_implicit_array_creation_expression] = STATE(3228), - [sym_implicit_object_creation_expression] = STATE(3228), - [sym_implicit_stackalloc_expression] = STATE(3228), - [sym_initializer_expression] = STATE(3228), - [sym_default_expression] = STATE(3228), - [sym_with_expression] = STATE(3228), - [sym_sizeof_expression] = STATE(3228), - [sym_typeof_expression] = STATE(3228), - [sym_makeref_expression] = STATE(3228), - [sym_ref_expression] = STATE(3228), - [sym_reftype_expression] = STATE(3228), - [sym_refvalue_expression] = STATE(3228), - [sym_stackalloc_expression] = STATE(3228), - [sym_range_expression] = STATE(3228), - [sym_tuple_expression] = STATE(2609), - [sym_literal] = STATE(3228), - [sym_character_literal] = STATE(3278), - [sym_string_literal] = STATE(3278), - [sym_raw_string_literal] = STATE(3278), - [sym_boolean_literal] = STATE(3278), - [sym_identifier] = STATE(2267), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3228), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2416), + [sym__name] = STATE(5868), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2387), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(2893), + [sym_non_lvalue_expression] = STATE(3040), + [sym_lvalue_expression] = STATE(3634), + [sym__expression_statement_expression] = STATE(3035), + [sym_assignment_expression] = STATE(3043), + [sym_binary_expression] = STATE(3035), + [sym_postfix_unary_expression] = STATE(3043), + [sym_prefix_unary_expression] = STATE(3043), + [sym__pointer_indirection_expression] = STATE(2415), + [sym_query_expression] = STATE(3035), + [sym_from_clause] = STATE(6130), + [sym_conditional_expression] = STATE(3035), + [sym_conditional_access_expression] = STATE(3035), + [sym_as_expression] = STATE(3035), + [sym_is_expression] = STATE(3035), + [sym_is_pattern_expression] = STATE(3035), + [sym_cast_expression] = STATE(3035), + [sym_checked_expression] = STATE(3035), + [sym_invocation_expression] = STATE(3043), + [sym_switch_expression] = STATE(3035), + [sym_await_expression] = STATE(3043), + [sym_throw_expression] = STATE(3035), + [sym_element_access_expression] = STATE(2415), + [sym_interpolated_string_expression] = STATE(3035), + [sym_member_access_expression] = STATE(2415), + [sym_object_creation_expression] = STATE(3043), + [sym_parenthesized_expression] = STATE(3043), + [sym__parenthesized_lvalue_expression] = STATE(2415), + [sym_lambda_expression] = STATE(3035), + [sym__lambda_expression_init] = STATE(7324), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3035), + [sym_anonymous_method_expression] = STATE(3035), + [sym_anonymous_object_creation_expression] = STATE(3035), + [sym_implicit_array_creation_expression] = STATE(3035), + [sym_implicit_object_creation_expression] = STATE(3035), + [sym_implicit_stackalloc_expression] = STATE(3035), + [sym_initializer_expression] = STATE(3035), + [sym_default_expression] = STATE(3035), + [sym_with_expression] = STATE(3035), + [sym_sizeof_expression] = STATE(3035), + [sym_typeof_expression] = STATE(3035), + [sym_makeref_expression] = STATE(3035), + [sym_ref_expression] = STATE(3035), + [sym_reftype_expression] = STATE(3035), + [sym_refvalue_expression] = STATE(3035), + [sym_stackalloc_expression] = STATE(3035), + [sym_range_expression] = STATE(3035), + [sym_tuple_expression] = STATE(2415), + [sym_literal] = STATE(3035), + [sym_character_literal] = STATE(3037), + [sym_string_literal] = STATE(3037), + [sym_raw_string_literal] = STATE(3037), + [sym_boolean_literal] = STATE(3037), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3035), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(1277), [sym_preproc_endregion] = STATE(1277), [sym_preproc_line] = STATE(1277), @@ -257672,47 +257558,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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3396), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3455), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1153), - [anon_sym_LPAREN] = ACTIONS(1593), - [anon_sym_ref] = ACTIONS(1595), - [anon_sym_LBRACE] = ACTIONS(1159), - [anon_sym_delegate] = ACTIONS(1161), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1239), + [anon_sym_LPAREN] = ACTIONS(2281), + [anon_sym_ref] = ACTIONS(2283), + [anon_sym_LBRACE] = ACTIONS(1245), + [anon_sym_delegate] = ACTIONS(1247), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1163), + [anon_sym_new] = ACTIONS(2285), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1167), - [anon_sym_BANG] = ACTIONS(1599), - [anon_sym_TILDE] = ACTIONS(1599), - [anon_sym_PLUS_PLUS] = ACTIONS(1599), - [anon_sym_DASH_DASH] = ACTIONS(1599), - [anon_sym_true] = ACTIONS(1173), - [anon_sym_false] = ACTIONS(1173), - [anon_sym_PLUS] = ACTIONS(1597), - [anon_sym_DASH] = ACTIONS(1597), - [anon_sym_STAR] = ACTIONS(1601), - [anon_sym_CARET] = ACTIONS(1599), - [anon_sym_AMP] = ACTIONS(1599), - [anon_sym_this] = ACTIONS(1177), + [anon_sym_checked] = ACTIONS(1251), + [anon_sym_BANG] = ACTIONS(2289), + [anon_sym_TILDE] = ACTIONS(2289), + [anon_sym_PLUS_PLUS] = ACTIONS(2289), + [anon_sym_DASH_DASH] = ACTIONS(2289), + [anon_sym_true] = ACTIONS(1257), + [anon_sym_false] = ACTIONS(1257), + [anon_sym_PLUS] = ACTIONS(2287), + [anon_sym_DASH] = ACTIONS(2287), + [anon_sym_STAR] = ACTIONS(2291), + [anon_sym_CARET] = ACTIONS(2289), + [anon_sym_AMP] = ACTIONS(2289), + [anon_sym_this] = ACTIONS(1261), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1179), + [anon_sym_base] = ACTIONS(1263), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1181), - [anon_sym_unchecked] = ACTIONS(1167), + [sym_predefined_type] = ACTIONS(1265), + [anon_sym_unchecked] = ACTIONS(1251), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1183), - [anon_sym_throw] = ACTIONS(1603), + [anon_sym_default] = ACTIONS(1267), + [anon_sym_throw] = ACTIONS(2293), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1605), - [anon_sym_DOT_DOT] = ACTIONS(1607), + [anon_sym_await] = ACTIONS(2295), + [anon_sym_DOT_DOT] = ACTIONS(2297), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -257725,19 +257611,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1191), - [anon_sym_sizeof] = ACTIONS(1193), - [anon_sym_typeof] = ACTIONS(1195), - [anon_sym___makeref] = ACTIONS(1197), - [anon_sym___reftype] = ACTIONS(1199), - [anon_sym___refvalue] = ACTIONS(1201), - [sym_null_literal] = ACTIONS(1203), - [anon_sym_SQUOTE] = ACTIONS(1205), - [sym_integer_literal] = ACTIONS(1203), - [sym_real_literal] = ACTIONS(1207), - [anon_sym_DQUOTE] = ACTIONS(1209), - [sym_verbatim_string_literal] = ACTIONS(1207), - [aux_sym_preproc_if_token1] = ACTIONS(1211), + [anon_sym_stackalloc] = ACTIONS(1275), + [anon_sym_sizeof] = ACTIONS(1277), + [anon_sym_typeof] = ACTIONS(1279), + [anon_sym___makeref] = ACTIONS(1281), + [anon_sym___reftype] = ACTIONS(1283), + [anon_sym___refvalue] = ACTIONS(1285), + [sym_null_literal] = ACTIONS(1287), + [anon_sym_SQUOTE] = ACTIONS(1289), + [sym_integer_literal] = ACTIONS(1287), + [sym_real_literal] = ACTIONS(1291), + [anon_sym_DQUOTE] = ACTIONS(1293), + [sym_verbatim_string_literal] = ACTIONS(1291), + [aux_sym_preproc_if_token1] = ACTIONS(1295), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -257748,90 +257634,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1213), - [sym_interpolation_verbatim_start] = ACTIONS(1215), - [sym_interpolation_raw_start] = ACTIONS(1217), - [sym_raw_string_start] = ACTIONS(1219), + [sym_interpolation_regular_start] = ACTIONS(1297), + [sym_interpolation_verbatim_start] = ACTIONS(1299), + [sym_interpolation_raw_start] = ACTIONS(1301), + [sym_raw_string_start] = ACTIONS(1303), }, [1278] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2610), - [sym__name] = STATE(5898), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2197), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(4788), - [sym_non_lvalue_expression] = STATE(3277), - [sym_lvalue_expression] = STATE(3413), - [sym__expression_statement_expression] = STATE(3228), - [sym_assignment_expression] = STATE(3289), - [sym_binary_expression] = STATE(3228), - [sym_postfix_unary_expression] = STATE(3289), - [sym_prefix_unary_expression] = STATE(3289), - [sym__pointer_indirection_expression] = STATE(2609), - [sym_query_expression] = STATE(3228), - [sym_from_clause] = STATE(6160), - [sym_conditional_expression] = STATE(3228), - [sym_conditional_access_expression] = STATE(3228), - [sym_as_expression] = STATE(3228), - [sym_is_expression] = STATE(3228), - [sym_is_pattern_expression] = STATE(3228), - [sym_cast_expression] = STATE(3228), - [sym_checked_expression] = STATE(3228), - [sym_invocation_expression] = STATE(3289), - [sym_switch_expression] = STATE(3228), - [sym_await_expression] = STATE(3289), - [sym_throw_expression] = STATE(3228), - [sym_element_access_expression] = STATE(2609), - [sym_interpolated_string_expression] = STATE(3228), - [sym_member_access_expression] = STATE(2609), - [sym_object_creation_expression] = STATE(3289), - [sym_parenthesized_expression] = STATE(3289), - [sym__parenthesized_lvalue_expression] = STATE(2609), - [sym_lambda_expression] = STATE(3228), - [sym__lambda_expression_init] = STATE(7523), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3228), - [sym_anonymous_method_expression] = STATE(3228), - [sym_anonymous_object_creation_expression] = STATE(3228), - [sym_implicit_array_creation_expression] = STATE(3228), - [sym_implicit_object_creation_expression] = STATE(3228), - [sym_implicit_stackalloc_expression] = STATE(3228), - [sym_initializer_expression] = STATE(3228), - [sym_default_expression] = STATE(3228), - [sym_with_expression] = STATE(3228), - [sym_sizeof_expression] = STATE(3228), - [sym_typeof_expression] = STATE(3228), - [sym_makeref_expression] = STATE(3228), - [sym_ref_expression] = STATE(3228), - [sym_reftype_expression] = STATE(3228), - [sym_refvalue_expression] = STATE(3228), - [sym_stackalloc_expression] = STATE(3228), - [sym_range_expression] = STATE(3228), - [sym_tuple_expression] = STATE(2609), - [sym_literal] = STATE(3228), - [sym_character_literal] = STATE(3278), - [sym_string_literal] = STATE(3278), - [sym_raw_string_literal] = STATE(3278), - [sym_boolean_literal] = STATE(3278), - [sym_identifier] = STATE(2267), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3228), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(5881), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2386), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(4228), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3132), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3102), + [sym_postfix_unary_expression] = STATE(3079), + [sym_prefix_unary_expression] = STATE(3079), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6158), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3102), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3079), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3102), + [sym_member_access_expression] = STATE(2472), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3079), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7650), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(3102), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3102), + [sym_typeof_expression] = STATE(3102), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2472), + [sym_literal] = STATE(3102), + [sym_character_literal] = STATE(3037), + [sym_string_literal] = STATE(3037), + [sym_raw_string_literal] = STATE(3037), + [sym_boolean_literal] = STATE(3037), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(1278), [sym_preproc_endregion] = STATE(1278), [sym_preproc_line] = STATE(1278), @@ -257841,47 +257727,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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3396), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1153), - [anon_sym_LPAREN] = ACTIONS(1593), - [anon_sym_ref] = ACTIONS(1595), - [anon_sym_LBRACE] = ACTIONS(1159), - [anon_sym_delegate] = ACTIONS(1161), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1479), + [anon_sym_LPAREN] = ACTIONS(2185), + [anon_sym_ref] = ACTIONS(2187), + [anon_sym_LBRACE] = ACTIONS(1481), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1163), + [anon_sym_new] = ACTIONS(1899), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1167), - [anon_sym_BANG] = ACTIONS(1599), - [anon_sym_TILDE] = ACTIONS(1599), - [anon_sym_PLUS_PLUS] = ACTIONS(1599), - [anon_sym_DASH_DASH] = ACTIONS(1599), - [anon_sym_true] = ACTIONS(1173), - [anon_sym_false] = ACTIONS(1173), - [anon_sym_PLUS] = ACTIONS(1597), - [anon_sym_DASH] = ACTIONS(1597), - [anon_sym_STAR] = ACTIONS(1601), - [anon_sym_CARET] = ACTIONS(1599), - [anon_sym_AMP] = ACTIONS(1599), - [anon_sym_this] = ACTIONS(1177), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(2191), + [anon_sym_TILDE] = ACTIONS(2191), + [anon_sym_PLUS_PLUS] = ACTIONS(2191), + [anon_sym_DASH_DASH] = ACTIONS(2191), + [anon_sym_true] = ACTIONS(1257), + [anon_sym_false] = ACTIONS(1257), + [anon_sym_PLUS] = ACTIONS(2189), + [anon_sym_DASH] = ACTIONS(2189), + [anon_sym_STAR] = ACTIONS(1905), + [anon_sym_CARET] = ACTIONS(2191), + [anon_sym_AMP] = ACTIONS(2191), + [anon_sym_this] = ACTIONS(83), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1179), + [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1181), - [anon_sym_unchecked] = ACTIONS(1167), + [sym_predefined_type] = ACTIONS(1265), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1183), - [anon_sym_throw] = ACTIONS(1603), + [anon_sym_default] = ACTIONS(1267), + [anon_sym_throw] = ACTIONS(2193), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1605), - [anon_sym_DOT_DOT] = ACTIONS(1607), + [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), @@ -257894,19 +257780,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1191), - [anon_sym_sizeof] = ACTIONS(1193), - [anon_sym_typeof] = ACTIONS(1195), - [anon_sym___makeref] = ACTIONS(1197), - [anon_sym___reftype] = ACTIONS(1199), - [anon_sym___refvalue] = ACTIONS(1201), - [sym_null_literal] = ACTIONS(1203), - [anon_sym_SQUOTE] = ACTIONS(1205), - [sym_integer_literal] = ACTIONS(1203), - [sym_real_literal] = ACTIONS(1207), - [anon_sym_DQUOTE] = ACTIONS(1209), - [sym_verbatim_string_literal] = ACTIONS(1207), - [aux_sym_preproc_if_token1] = ACTIONS(1211), + [anon_sym_stackalloc] = ACTIONS(127), + [anon_sym_sizeof] = ACTIONS(1277), + [anon_sym_typeof] = ACTIONS(1279), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), + [sym_null_literal] = ACTIONS(1287), + [anon_sym_SQUOTE] = ACTIONS(1289), + [sym_integer_literal] = ACTIONS(1287), + [sym_real_literal] = ACTIONS(1291), + [anon_sym_DQUOTE] = ACTIONS(1293), + [sym_verbatim_string_literal] = ACTIONS(1291), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -257917,90 +257803,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1213), - [sym_interpolation_verbatim_start] = ACTIONS(1215), - [sym_interpolation_raw_start] = ACTIONS(1217), - [sym_raw_string_start] = ACTIONS(1219), + [sym_interpolation_regular_start] = ACTIONS(1297), + [sym_interpolation_verbatim_start] = ACTIONS(1299), + [sym_interpolation_raw_start] = ACTIONS(1301), + [sym_raw_string_start] = ACTIONS(1303), }, [1279] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2610), - [sym__name] = STATE(5898), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2197), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(4789), - [sym_non_lvalue_expression] = STATE(3277), - [sym_lvalue_expression] = STATE(3413), - [sym__expression_statement_expression] = STATE(3228), - [sym_assignment_expression] = STATE(3289), - [sym_binary_expression] = STATE(3228), - [sym_postfix_unary_expression] = STATE(3289), - [sym_prefix_unary_expression] = STATE(3289), - [sym__pointer_indirection_expression] = STATE(2609), - [sym_query_expression] = STATE(3228), - [sym_from_clause] = STATE(6160), - [sym_conditional_expression] = STATE(3228), - [sym_conditional_access_expression] = STATE(3228), - [sym_as_expression] = STATE(3228), - [sym_is_expression] = STATE(3228), - [sym_is_pattern_expression] = STATE(3228), - [sym_cast_expression] = STATE(3228), - [sym_checked_expression] = STATE(3228), - [sym_invocation_expression] = STATE(3289), - [sym_switch_expression] = STATE(3228), - [sym_await_expression] = STATE(3289), - [sym_throw_expression] = STATE(3228), - [sym_element_access_expression] = STATE(2609), - [sym_interpolated_string_expression] = STATE(3228), - [sym_member_access_expression] = STATE(2609), - [sym_object_creation_expression] = STATE(3289), - [sym_parenthesized_expression] = STATE(3289), - [sym__parenthesized_lvalue_expression] = STATE(2609), - [sym_lambda_expression] = STATE(3228), - [sym__lambda_expression_init] = STATE(7523), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3228), - [sym_anonymous_method_expression] = STATE(3228), - [sym_anonymous_object_creation_expression] = STATE(3228), - [sym_implicit_array_creation_expression] = STATE(3228), - [sym_implicit_object_creation_expression] = STATE(3228), - [sym_implicit_stackalloc_expression] = STATE(3228), - [sym_initializer_expression] = STATE(3228), - [sym_default_expression] = STATE(3228), - [sym_with_expression] = STATE(3228), - [sym_sizeof_expression] = STATE(3228), - [sym_typeof_expression] = STATE(3228), - [sym_makeref_expression] = STATE(3228), - [sym_ref_expression] = STATE(3228), - [sym_reftype_expression] = STATE(3228), - [sym_refvalue_expression] = STATE(3228), - [sym_stackalloc_expression] = STATE(3228), - [sym_range_expression] = STATE(3228), - [sym_tuple_expression] = STATE(2609), - [sym_literal] = STATE(3228), - [sym_character_literal] = STATE(3278), - [sym_string_literal] = STATE(3278), - [sym_raw_string_literal] = STATE(3278), - [sym_boolean_literal] = STATE(3278), - [sym_identifier] = STATE(2267), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3228), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2416), + [sym__name] = STATE(5868), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2387), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(5166), + [sym_non_lvalue_expression] = STATE(3040), + [sym_lvalue_expression] = STATE(3634), + [sym__expression_statement_expression] = STATE(3035), + [sym_assignment_expression] = STATE(3043), + [sym_binary_expression] = STATE(3035), + [sym_postfix_unary_expression] = STATE(3043), + [sym_prefix_unary_expression] = STATE(3043), + [sym__pointer_indirection_expression] = STATE(2415), + [sym_query_expression] = STATE(3035), + [sym_from_clause] = STATE(6130), + [sym_conditional_expression] = STATE(3035), + [sym_conditional_access_expression] = STATE(3035), + [sym_as_expression] = STATE(3035), + [sym_is_expression] = STATE(3035), + [sym_is_pattern_expression] = STATE(3035), + [sym_cast_expression] = STATE(3035), + [sym_checked_expression] = STATE(3035), + [sym_invocation_expression] = STATE(3043), + [sym_switch_expression] = STATE(3035), + [sym_await_expression] = STATE(3043), + [sym_throw_expression] = STATE(3035), + [sym_element_access_expression] = STATE(2415), + [sym_interpolated_string_expression] = STATE(3035), + [sym_member_access_expression] = STATE(2415), + [sym_object_creation_expression] = STATE(3043), + [sym_parenthesized_expression] = STATE(3043), + [sym__parenthesized_lvalue_expression] = STATE(2415), + [sym_lambda_expression] = STATE(3035), + [sym__lambda_expression_init] = STATE(7324), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3035), + [sym_anonymous_method_expression] = STATE(3035), + [sym_anonymous_object_creation_expression] = STATE(3035), + [sym_implicit_array_creation_expression] = STATE(3035), + [sym_implicit_object_creation_expression] = STATE(3035), + [sym_implicit_stackalloc_expression] = STATE(3035), + [sym_initializer_expression] = STATE(3035), + [sym_default_expression] = STATE(3035), + [sym_with_expression] = STATE(3035), + [sym_sizeof_expression] = STATE(3035), + [sym_typeof_expression] = STATE(3035), + [sym_makeref_expression] = STATE(3035), + [sym_ref_expression] = STATE(3035), + [sym_reftype_expression] = STATE(3035), + [sym_refvalue_expression] = STATE(3035), + [sym_stackalloc_expression] = STATE(3035), + [sym_range_expression] = STATE(3035), + [sym_tuple_expression] = STATE(2415), + [sym_literal] = STATE(3035), + [sym_character_literal] = STATE(3037), + [sym_string_literal] = STATE(3037), + [sym_raw_string_literal] = STATE(3037), + [sym_boolean_literal] = STATE(3037), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3035), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(1279), [sym_preproc_endregion] = STATE(1279), [sym_preproc_line] = STATE(1279), @@ -258010,47 +257896,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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3396), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3455), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1153), - [anon_sym_LPAREN] = ACTIONS(1593), - [anon_sym_ref] = ACTIONS(1595), - [anon_sym_LBRACE] = ACTIONS(1159), - [anon_sym_delegate] = ACTIONS(1161), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1239), + [anon_sym_LPAREN] = ACTIONS(2281), + [anon_sym_ref] = ACTIONS(2283), + [anon_sym_LBRACE] = ACTIONS(1245), + [anon_sym_delegate] = ACTIONS(1247), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1163), + [anon_sym_new] = ACTIONS(2285), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1167), - [anon_sym_BANG] = ACTIONS(1599), - [anon_sym_TILDE] = ACTIONS(1599), - [anon_sym_PLUS_PLUS] = ACTIONS(1599), - [anon_sym_DASH_DASH] = ACTIONS(1599), - [anon_sym_true] = ACTIONS(1173), - [anon_sym_false] = ACTIONS(1173), - [anon_sym_PLUS] = ACTIONS(1597), - [anon_sym_DASH] = ACTIONS(1597), - [anon_sym_STAR] = ACTIONS(1601), - [anon_sym_CARET] = ACTIONS(1599), - [anon_sym_AMP] = ACTIONS(1599), - [anon_sym_this] = ACTIONS(1177), + [anon_sym_checked] = ACTIONS(1251), + [anon_sym_BANG] = ACTIONS(2289), + [anon_sym_TILDE] = ACTIONS(2289), + [anon_sym_PLUS_PLUS] = ACTIONS(2289), + [anon_sym_DASH_DASH] = ACTIONS(2289), + [anon_sym_true] = ACTIONS(1257), + [anon_sym_false] = ACTIONS(1257), + [anon_sym_PLUS] = ACTIONS(2287), + [anon_sym_DASH] = ACTIONS(2287), + [anon_sym_STAR] = ACTIONS(2291), + [anon_sym_CARET] = ACTIONS(2289), + [anon_sym_AMP] = ACTIONS(2289), + [anon_sym_this] = ACTIONS(1261), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1179), + [anon_sym_base] = ACTIONS(1263), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1181), - [anon_sym_unchecked] = ACTIONS(1167), + [sym_predefined_type] = ACTIONS(1265), + [anon_sym_unchecked] = ACTIONS(1251), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1183), - [anon_sym_throw] = ACTIONS(1603), + [anon_sym_default] = ACTIONS(1267), + [anon_sym_throw] = ACTIONS(2293), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1605), - [anon_sym_DOT_DOT] = ACTIONS(1607), + [anon_sym_await] = ACTIONS(2295), + [anon_sym_DOT_DOT] = ACTIONS(2297), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -258063,19 +257949,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1191), - [anon_sym_sizeof] = ACTIONS(1193), - [anon_sym_typeof] = ACTIONS(1195), - [anon_sym___makeref] = ACTIONS(1197), - [anon_sym___reftype] = ACTIONS(1199), - [anon_sym___refvalue] = ACTIONS(1201), - [sym_null_literal] = ACTIONS(1203), - [anon_sym_SQUOTE] = ACTIONS(1205), - [sym_integer_literal] = ACTIONS(1203), - [sym_real_literal] = ACTIONS(1207), - [anon_sym_DQUOTE] = ACTIONS(1209), - [sym_verbatim_string_literal] = ACTIONS(1207), - [aux_sym_preproc_if_token1] = ACTIONS(1211), + [anon_sym_stackalloc] = ACTIONS(1275), + [anon_sym_sizeof] = ACTIONS(1277), + [anon_sym_typeof] = ACTIONS(1279), + [anon_sym___makeref] = ACTIONS(1281), + [anon_sym___reftype] = ACTIONS(1283), + [anon_sym___refvalue] = ACTIONS(1285), + [sym_null_literal] = ACTIONS(1287), + [anon_sym_SQUOTE] = ACTIONS(1289), + [sym_integer_literal] = ACTIONS(1287), + [sym_real_literal] = ACTIONS(1291), + [anon_sym_DQUOTE] = ACTIONS(1293), + [sym_verbatim_string_literal] = ACTIONS(1291), + [aux_sym_preproc_if_token1] = ACTIONS(1295), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -258086,90 +257972,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1213), - [sym_interpolation_verbatim_start] = ACTIONS(1215), - [sym_interpolation_raw_start] = ACTIONS(1217), - [sym_raw_string_start] = ACTIONS(1219), + [sym_interpolation_regular_start] = ACTIONS(1297), + [sym_interpolation_verbatim_start] = ACTIONS(1299), + [sym_interpolation_raw_start] = ACTIONS(1301), + [sym_raw_string_start] = ACTIONS(1303), }, [1280] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2610), - [sym__name] = STATE(5898), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2197), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(4504), - [sym_non_lvalue_expression] = STATE(3277), - [sym_lvalue_expression] = STATE(3413), - [sym__expression_statement_expression] = STATE(3228), - [sym_assignment_expression] = STATE(3289), - [sym_binary_expression] = STATE(3228), - [sym_postfix_unary_expression] = STATE(3289), - [sym_prefix_unary_expression] = STATE(3289), - [sym__pointer_indirection_expression] = STATE(2609), - [sym_query_expression] = STATE(3228), - [sym_from_clause] = STATE(6160), - [sym_conditional_expression] = STATE(3228), - [sym_conditional_access_expression] = STATE(3228), - [sym_as_expression] = STATE(3228), - [sym_is_expression] = STATE(3228), - [sym_is_pattern_expression] = STATE(3228), - [sym_cast_expression] = STATE(3228), - [sym_checked_expression] = STATE(3228), - [sym_invocation_expression] = STATE(3289), - [sym_switch_expression] = STATE(3228), - [sym_await_expression] = STATE(3289), - [sym_throw_expression] = STATE(3228), - [sym_element_access_expression] = STATE(2609), - [sym_interpolated_string_expression] = STATE(3228), - [sym_member_access_expression] = STATE(2609), - [sym_object_creation_expression] = STATE(3289), - [sym_parenthesized_expression] = STATE(3289), - [sym__parenthesized_lvalue_expression] = STATE(2609), - [sym_lambda_expression] = STATE(3228), - [sym__lambda_expression_init] = STATE(7523), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3228), - [sym_anonymous_method_expression] = STATE(3228), - [sym_anonymous_object_creation_expression] = STATE(3228), - [sym_implicit_array_creation_expression] = STATE(3228), - [sym_implicit_object_creation_expression] = STATE(3228), - [sym_implicit_stackalloc_expression] = STATE(3228), - [sym_initializer_expression] = STATE(3228), - [sym_default_expression] = STATE(3228), - [sym_with_expression] = STATE(3228), - [sym_sizeof_expression] = STATE(3228), - [sym_typeof_expression] = STATE(3228), - [sym_makeref_expression] = STATE(3228), - [sym_ref_expression] = STATE(3228), - [sym_reftype_expression] = STATE(3228), - [sym_refvalue_expression] = STATE(3228), - [sym_stackalloc_expression] = STATE(3228), - [sym_range_expression] = STATE(3228), - [sym_tuple_expression] = STATE(2609), - [sym_literal] = STATE(3228), - [sym_character_literal] = STATE(3278), - [sym_string_literal] = STATE(3278), - [sym_raw_string_literal] = STATE(3278), - [sym_boolean_literal] = STATE(3278), - [sym_identifier] = STATE(2267), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3228), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2603), + [sym__name] = STATE(5872), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2387), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(4731), + [sym_non_lvalue_expression] = STATE(3220), + [sym_lvalue_expression] = STATE(3395), + [sym__expression_statement_expression] = STATE(3236), + [sym_assignment_expression] = STATE(3221), + [sym_binary_expression] = STATE(3236), + [sym_postfix_unary_expression] = STATE(3221), + [sym_prefix_unary_expression] = STATE(3221), + [sym__pointer_indirection_expression] = STATE(2602), + [sym_query_expression] = STATE(3236), + [sym_from_clause] = STATE(6141), + [sym_conditional_expression] = STATE(3236), + [sym_conditional_access_expression] = STATE(3236), + [sym_as_expression] = STATE(3236), + [sym_is_expression] = STATE(3236), + [sym_is_pattern_expression] = STATE(3236), + [sym_cast_expression] = STATE(3236), + [sym_checked_expression] = STATE(3236), + [sym_invocation_expression] = STATE(3221), + [sym_switch_expression] = STATE(3236), + [sym_await_expression] = STATE(3221), + [sym_throw_expression] = STATE(3236), + [sym_element_access_expression] = STATE(2602), + [sym_interpolated_string_expression] = STATE(3236), + [sym_member_access_expression] = STATE(2602), + [sym_object_creation_expression] = STATE(3221), + [sym_parenthesized_expression] = STATE(3221), + [sym__parenthesized_lvalue_expression] = STATE(2602), + [sym_lambda_expression] = STATE(3236), + [sym__lambda_expression_init] = STATE(7446), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3236), + [sym_anonymous_method_expression] = STATE(3236), + [sym_anonymous_object_creation_expression] = STATE(3236), + [sym_implicit_array_creation_expression] = STATE(3236), + [sym_implicit_object_creation_expression] = STATE(3236), + [sym_implicit_stackalloc_expression] = STATE(3236), + [sym_initializer_expression] = STATE(3236), + [sym_default_expression] = STATE(3236), + [sym_with_expression] = STATE(3236), + [sym_sizeof_expression] = STATE(3236), + [sym_typeof_expression] = STATE(3236), + [sym_makeref_expression] = STATE(3236), + [sym_ref_expression] = STATE(3236), + [sym_reftype_expression] = STATE(3236), + [sym_refvalue_expression] = STATE(3236), + [sym_stackalloc_expression] = STATE(3236), + [sym_range_expression] = STATE(3236), + [sym_tuple_expression] = STATE(2602), + [sym_literal] = STATE(3236), + [sym_character_literal] = STATE(3272), + [sym_string_literal] = STATE(3272), + [sym_raw_string_literal] = STATE(3272), + [sym_boolean_literal] = STATE(3272), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3236), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(1280), [sym_preproc_endregion] = STATE(1280), [sym_preproc_line] = STATE(1280), @@ -258179,47 +258065,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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3396), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3379), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1153), - [anon_sym_LPAREN] = ACTIONS(1593), - [anon_sym_ref] = ACTIONS(1595), - [anon_sym_LBRACE] = ACTIONS(1159), - [anon_sym_delegate] = ACTIONS(1161), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1149), + [anon_sym_LPAREN] = ACTIONS(1857), + [anon_sym_ref] = ACTIONS(1859), + [anon_sym_LBRACE] = ACTIONS(1155), + [anon_sym_delegate] = ACTIONS(1157), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1163), + [anon_sym_new] = ACTIONS(1861), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1167), - [anon_sym_BANG] = ACTIONS(1599), - [anon_sym_TILDE] = ACTIONS(1599), - [anon_sym_PLUS_PLUS] = ACTIONS(1599), - [anon_sym_DASH_DASH] = ACTIONS(1599), - [anon_sym_true] = ACTIONS(1173), - [anon_sym_false] = ACTIONS(1173), - [anon_sym_PLUS] = ACTIONS(1597), - [anon_sym_DASH] = ACTIONS(1597), - [anon_sym_STAR] = ACTIONS(1601), - [anon_sym_CARET] = ACTIONS(1599), - [anon_sym_AMP] = ACTIONS(1599), - [anon_sym_this] = ACTIONS(1177), + [anon_sym_checked] = ACTIONS(1163), + [anon_sym_BANG] = ACTIONS(1865), + [anon_sym_TILDE] = ACTIONS(1865), + [anon_sym_PLUS_PLUS] = ACTIONS(1865), + [anon_sym_DASH_DASH] = ACTIONS(1865), + [anon_sym_true] = ACTIONS(1169), + [anon_sym_false] = ACTIONS(1169), + [anon_sym_PLUS] = ACTIONS(1863), + [anon_sym_DASH] = ACTIONS(1863), + [anon_sym_STAR] = ACTIONS(1867), + [anon_sym_CARET] = ACTIONS(1865), + [anon_sym_AMP] = ACTIONS(1865), + [anon_sym_this] = ACTIONS(1173), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1179), + [anon_sym_base] = ACTIONS(1175), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1181), - [anon_sym_unchecked] = ACTIONS(1167), + [sym_predefined_type] = ACTIONS(1177), + [anon_sym_unchecked] = ACTIONS(1163), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1183), - [anon_sym_throw] = ACTIONS(1603), + [anon_sym_default] = ACTIONS(1179), + [anon_sym_throw] = ACTIONS(1869), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1605), - [anon_sym_DOT_DOT] = ACTIONS(1607), + [anon_sym_await] = ACTIONS(1871), + [anon_sym_DOT_DOT] = ACTIONS(1873), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -258232,19 +258118,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1191), - [anon_sym_sizeof] = ACTIONS(1193), - [anon_sym_typeof] = ACTIONS(1195), - [anon_sym___makeref] = ACTIONS(1197), - [anon_sym___reftype] = ACTIONS(1199), - [anon_sym___refvalue] = ACTIONS(1201), - [sym_null_literal] = ACTIONS(1203), - [anon_sym_SQUOTE] = ACTIONS(1205), - [sym_integer_literal] = ACTIONS(1203), - [sym_real_literal] = ACTIONS(1207), - [anon_sym_DQUOTE] = ACTIONS(1209), - [sym_verbatim_string_literal] = ACTIONS(1207), - [aux_sym_preproc_if_token1] = ACTIONS(1211), + [anon_sym_stackalloc] = ACTIONS(1187), + [anon_sym_sizeof] = ACTIONS(1189), + [anon_sym_typeof] = ACTIONS(1191), + [anon_sym___makeref] = ACTIONS(1193), + [anon_sym___reftype] = ACTIONS(1195), + [anon_sym___refvalue] = ACTIONS(1197), + [sym_null_literal] = ACTIONS(1199), + [anon_sym_SQUOTE] = ACTIONS(1201), + [sym_integer_literal] = ACTIONS(1199), + [sym_real_literal] = ACTIONS(1203), + [anon_sym_DQUOTE] = ACTIONS(1205), + [sym_verbatim_string_literal] = ACTIONS(1203), + [aux_sym_preproc_if_token1] = ACTIONS(1207), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -258255,90 +258141,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1213), - [sym_interpolation_verbatim_start] = ACTIONS(1215), - [sym_interpolation_raw_start] = ACTIONS(1217), - [sym_raw_string_start] = ACTIONS(1219), + [sym_interpolation_regular_start] = ACTIONS(1209), + [sym_interpolation_verbatim_start] = ACTIONS(1211), + [sym_interpolation_raw_start] = ACTIONS(1213), + [sym_raw_string_start] = ACTIONS(1215), }, [1281] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2610), - [sym__name] = STATE(5898), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2197), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(4507), - [sym_non_lvalue_expression] = STATE(3277), - [sym_lvalue_expression] = STATE(3413), - [sym__expression_statement_expression] = STATE(3228), - [sym_assignment_expression] = STATE(3289), - [sym_binary_expression] = STATE(3228), - [sym_postfix_unary_expression] = STATE(3289), - [sym_prefix_unary_expression] = STATE(3289), - [sym__pointer_indirection_expression] = STATE(2609), - [sym_query_expression] = STATE(3228), - [sym_from_clause] = STATE(6160), - [sym_conditional_expression] = STATE(3228), - [sym_conditional_access_expression] = STATE(3228), - [sym_as_expression] = STATE(3228), - [sym_is_expression] = STATE(3228), - [sym_is_pattern_expression] = STATE(3228), - [sym_cast_expression] = STATE(3228), - [sym_checked_expression] = STATE(3228), - [sym_invocation_expression] = STATE(3289), - [sym_switch_expression] = STATE(3228), - [sym_await_expression] = STATE(3289), - [sym_throw_expression] = STATE(3228), - [sym_element_access_expression] = STATE(2609), - [sym_interpolated_string_expression] = STATE(3228), - [sym_member_access_expression] = STATE(2609), - [sym_object_creation_expression] = STATE(3289), - [sym_parenthesized_expression] = STATE(3289), - [sym__parenthesized_lvalue_expression] = STATE(2609), - [sym_lambda_expression] = STATE(3228), - [sym__lambda_expression_init] = STATE(7523), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3228), - [sym_anonymous_method_expression] = STATE(3228), - [sym_anonymous_object_creation_expression] = STATE(3228), - [sym_implicit_array_creation_expression] = STATE(3228), - [sym_implicit_object_creation_expression] = STATE(3228), - [sym_implicit_stackalloc_expression] = STATE(3228), - [sym_initializer_expression] = STATE(3228), - [sym_default_expression] = STATE(3228), - [sym_with_expression] = STATE(3228), - [sym_sizeof_expression] = STATE(3228), - [sym_typeof_expression] = STATE(3228), - [sym_makeref_expression] = STATE(3228), - [sym_ref_expression] = STATE(3228), - [sym_reftype_expression] = STATE(3228), - [sym_refvalue_expression] = STATE(3228), - [sym_stackalloc_expression] = STATE(3228), - [sym_range_expression] = STATE(3228), - [sym_tuple_expression] = STATE(2609), - [sym_literal] = STATE(3228), - [sym_character_literal] = STATE(3278), - [sym_string_literal] = STATE(3278), - [sym_raw_string_literal] = STATE(3278), - [sym_boolean_literal] = STATE(3278), - [sym_identifier] = STATE(2267), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3228), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2416), + [sym__name] = STATE(5868), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2387), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(5168), + [sym_non_lvalue_expression] = STATE(3040), + [sym_lvalue_expression] = STATE(3634), + [sym__expression_statement_expression] = STATE(3035), + [sym_assignment_expression] = STATE(3043), + [sym_binary_expression] = STATE(3035), + [sym_postfix_unary_expression] = STATE(3043), + [sym_prefix_unary_expression] = STATE(3043), + [sym__pointer_indirection_expression] = STATE(2415), + [sym_query_expression] = STATE(3035), + [sym_from_clause] = STATE(6130), + [sym_conditional_expression] = STATE(3035), + [sym_conditional_access_expression] = STATE(3035), + [sym_as_expression] = STATE(3035), + [sym_is_expression] = STATE(3035), + [sym_is_pattern_expression] = STATE(3035), + [sym_cast_expression] = STATE(3035), + [sym_checked_expression] = STATE(3035), + [sym_invocation_expression] = STATE(3043), + [sym_switch_expression] = STATE(3035), + [sym_await_expression] = STATE(3043), + [sym_throw_expression] = STATE(3035), + [sym_element_access_expression] = STATE(2415), + [sym_interpolated_string_expression] = STATE(3035), + [sym_member_access_expression] = STATE(2415), + [sym_object_creation_expression] = STATE(3043), + [sym_parenthesized_expression] = STATE(3043), + [sym__parenthesized_lvalue_expression] = STATE(2415), + [sym_lambda_expression] = STATE(3035), + [sym__lambda_expression_init] = STATE(7324), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3035), + [sym_anonymous_method_expression] = STATE(3035), + [sym_anonymous_object_creation_expression] = STATE(3035), + [sym_implicit_array_creation_expression] = STATE(3035), + [sym_implicit_object_creation_expression] = STATE(3035), + [sym_implicit_stackalloc_expression] = STATE(3035), + [sym_initializer_expression] = STATE(3035), + [sym_default_expression] = STATE(3035), + [sym_with_expression] = STATE(3035), + [sym_sizeof_expression] = STATE(3035), + [sym_typeof_expression] = STATE(3035), + [sym_makeref_expression] = STATE(3035), + [sym_ref_expression] = STATE(3035), + [sym_reftype_expression] = STATE(3035), + [sym_refvalue_expression] = STATE(3035), + [sym_stackalloc_expression] = STATE(3035), + [sym_range_expression] = STATE(3035), + [sym_tuple_expression] = STATE(2415), + [sym_literal] = STATE(3035), + [sym_character_literal] = STATE(3037), + [sym_string_literal] = STATE(3037), + [sym_raw_string_literal] = STATE(3037), + [sym_boolean_literal] = STATE(3037), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3035), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(1281), [sym_preproc_endregion] = STATE(1281), [sym_preproc_line] = STATE(1281), @@ -258348,47 +258234,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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3396), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3455), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1153), - [anon_sym_LPAREN] = ACTIONS(1593), - [anon_sym_ref] = ACTIONS(1595), - [anon_sym_LBRACE] = ACTIONS(1159), - [anon_sym_delegate] = ACTIONS(1161), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1239), + [anon_sym_LPAREN] = ACTIONS(2281), + [anon_sym_ref] = ACTIONS(2283), + [anon_sym_LBRACE] = ACTIONS(1245), + [anon_sym_delegate] = ACTIONS(1247), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1163), + [anon_sym_new] = ACTIONS(2285), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1167), - [anon_sym_BANG] = ACTIONS(1599), - [anon_sym_TILDE] = ACTIONS(1599), - [anon_sym_PLUS_PLUS] = ACTIONS(1599), - [anon_sym_DASH_DASH] = ACTIONS(1599), - [anon_sym_true] = ACTIONS(1173), - [anon_sym_false] = ACTIONS(1173), - [anon_sym_PLUS] = ACTIONS(1597), - [anon_sym_DASH] = ACTIONS(1597), - [anon_sym_STAR] = ACTIONS(1601), - [anon_sym_CARET] = ACTIONS(1599), - [anon_sym_AMP] = ACTIONS(1599), - [anon_sym_this] = ACTIONS(1177), + [anon_sym_checked] = ACTIONS(1251), + [anon_sym_BANG] = ACTIONS(2289), + [anon_sym_TILDE] = ACTIONS(2289), + [anon_sym_PLUS_PLUS] = ACTIONS(2289), + [anon_sym_DASH_DASH] = ACTIONS(2289), + [anon_sym_true] = ACTIONS(1257), + [anon_sym_false] = ACTIONS(1257), + [anon_sym_PLUS] = ACTIONS(2287), + [anon_sym_DASH] = ACTIONS(2287), + [anon_sym_STAR] = ACTIONS(2291), + [anon_sym_CARET] = ACTIONS(2289), + [anon_sym_AMP] = ACTIONS(2289), + [anon_sym_this] = ACTIONS(1261), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1179), + [anon_sym_base] = ACTIONS(1263), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1181), - [anon_sym_unchecked] = ACTIONS(1167), + [sym_predefined_type] = ACTIONS(1265), + [anon_sym_unchecked] = ACTIONS(1251), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1183), - [anon_sym_throw] = ACTIONS(1603), + [anon_sym_default] = ACTIONS(1267), + [anon_sym_throw] = ACTIONS(2293), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1605), - [anon_sym_DOT_DOT] = ACTIONS(1607), + [anon_sym_await] = ACTIONS(2295), + [anon_sym_DOT_DOT] = ACTIONS(2297), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -258401,19 +258287,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1191), - [anon_sym_sizeof] = ACTIONS(1193), - [anon_sym_typeof] = ACTIONS(1195), - [anon_sym___makeref] = ACTIONS(1197), - [anon_sym___reftype] = ACTIONS(1199), - [anon_sym___refvalue] = ACTIONS(1201), - [sym_null_literal] = ACTIONS(1203), - [anon_sym_SQUOTE] = ACTIONS(1205), - [sym_integer_literal] = ACTIONS(1203), - [sym_real_literal] = ACTIONS(1207), - [anon_sym_DQUOTE] = ACTIONS(1209), - [sym_verbatim_string_literal] = ACTIONS(1207), - [aux_sym_preproc_if_token1] = ACTIONS(1211), + [anon_sym_stackalloc] = ACTIONS(1275), + [anon_sym_sizeof] = ACTIONS(1277), + [anon_sym_typeof] = ACTIONS(1279), + [anon_sym___makeref] = ACTIONS(1281), + [anon_sym___reftype] = ACTIONS(1283), + [anon_sym___refvalue] = ACTIONS(1285), + [sym_null_literal] = ACTIONS(1287), + [anon_sym_SQUOTE] = ACTIONS(1289), + [sym_integer_literal] = ACTIONS(1287), + [sym_real_literal] = ACTIONS(1291), + [anon_sym_DQUOTE] = ACTIONS(1293), + [sym_verbatim_string_literal] = ACTIONS(1291), + [aux_sym_preproc_if_token1] = ACTIONS(1295), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -258424,90 +258310,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1213), - [sym_interpolation_verbatim_start] = ACTIONS(1215), - [sym_interpolation_raw_start] = ACTIONS(1217), - [sym_raw_string_start] = ACTIONS(1219), + [sym_interpolation_regular_start] = ACTIONS(1297), + [sym_interpolation_verbatim_start] = ACTIONS(1299), + [sym_interpolation_raw_start] = ACTIONS(1301), + [sym_raw_string_start] = ACTIONS(1303), }, [1282] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2610), - [sym__name] = STATE(5898), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2197), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(4509), - [sym_non_lvalue_expression] = STATE(3277), - [sym_lvalue_expression] = STATE(3413), - [sym__expression_statement_expression] = STATE(3228), - [sym_assignment_expression] = STATE(3289), - [sym_binary_expression] = STATE(3228), - [sym_postfix_unary_expression] = STATE(3289), - [sym_prefix_unary_expression] = STATE(3289), - [sym__pointer_indirection_expression] = STATE(2609), - [sym_query_expression] = STATE(3228), - [sym_from_clause] = STATE(6160), - [sym_conditional_expression] = STATE(3228), - [sym_conditional_access_expression] = STATE(3228), - [sym_as_expression] = STATE(3228), - [sym_is_expression] = STATE(3228), - [sym_is_pattern_expression] = STATE(3228), - [sym_cast_expression] = STATE(3228), - [sym_checked_expression] = STATE(3228), - [sym_invocation_expression] = STATE(3289), - [sym_switch_expression] = STATE(3228), - [sym_await_expression] = STATE(3289), - [sym_throw_expression] = STATE(3228), - [sym_element_access_expression] = STATE(2609), - [sym_interpolated_string_expression] = STATE(3228), - [sym_member_access_expression] = STATE(2609), - [sym_object_creation_expression] = STATE(3289), - [sym_parenthesized_expression] = STATE(3289), - [sym__parenthesized_lvalue_expression] = STATE(2609), - [sym_lambda_expression] = STATE(3228), - [sym__lambda_expression_init] = STATE(7523), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3228), - [sym_anonymous_method_expression] = STATE(3228), - [sym_anonymous_object_creation_expression] = STATE(3228), - [sym_implicit_array_creation_expression] = STATE(3228), - [sym_implicit_object_creation_expression] = STATE(3228), - [sym_implicit_stackalloc_expression] = STATE(3228), - [sym_initializer_expression] = STATE(3228), - [sym_default_expression] = STATE(3228), - [sym_with_expression] = STATE(3228), - [sym_sizeof_expression] = STATE(3228), - [sym_typeof_expression] = STATE(3228), - [sym_makeref_expression] = STATE(3228), - [sym_ref_expression] = STATE(3228), - [sym_reftype_expression] = STATE(3228), - [sym_refvalue_expression] = STATE(3228), - [sym_stackalloc_expression] = STATE(3228), - [sym_range_expression] = STATE(3228), - [sym_tuple_expression] = STATE(2609), - [sym_literal] = STATE(3228), - [sym_character_literal] = STATE(3278), - [sym_string_literal] = STATE(3278), - [sym_raw_string_literal] = STATE(3278), - [sym_boolean_literal] = STATE(3278), - [sym_identifier] = STATE(2267), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3228), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2416), + [sym__name] = STATE(5868), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2387), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(5170), + [sym_non_lvalue_expression] = STATE(3040), + [sym_lvalue_expression] = STATE(3634), + [sym__expression_statement_expression] = STATE(3035), + [sym_assignment_expression] = STATE(3043), + [sym_binary_expression] = STATE(3035), + [sym_postfix_unary_expression] = STATE(3043), + [sym_prefix_unary_expression] = STATE(3043), + [sym__pointer_indirection_expression] = STATE(2415), + [sym_query_expression] = STATE(3035), + [sym_from_clause] = STATE(6130), + [sym_conditional_expression] = STATE(3035), + [sym_conditional_access_expression] = STATE(3035), + [sym_as_expression] = STATE(3035), + [sym_is_expression] = STATE(3035), + [sym_is_pattern_expression] = STATE(3035), + [sym_cast_expression] = STATE(3035), + [sym_checked_expression] = STATE(3035), + [sym_invocation_expression] = STATE(3043), + [sym_switch_expression] = STATE(3035), + [sym_await_expression] = STATE(3043), + [sym_throw_expression] = STATE(3035), + [sym_element_access_expression] = STATE(2415), + [sym_interpolated_string_expression] = STATE(3035), + [sym_member_access_expression] = STATE(2415), + [sym_object_creation_expression] = STATE(3043), + [sym_parenthesized_expression] = STATE(3043), + [sym__parenthesized_lvalue_expression] = STATE(2415), + [sym_lambda_expression] = STATE(3035), + [sym__lambda_expression_init] = STATE(7324), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3035), + [sym_anonymous_method_expression] = STATE(3035), + [sym_anonymous_object_creation_expression] = STATE(3035), + [sym_implicit_array_creation_expression] = STATE(3035), + [sym_implicit_object_creation_expression] = STATE(3035), + [sym_implicit_stackalloc_expression] = STATE(3035), + [sym_initializer_expression] = STATE(3035), + [sym_default_expression] = STATE(3035), + [sym_with_expression] = STATE(3035), + [sym_sizeof_expression] = STATE(3035), + [sym_typeof_expression] = STATE(3035), + [sym_makeref_expression] = STATE(3035), + [sym_ref_expression] = STATE(3035), + [sym_reftype_expression] = STATE(3035), + [sym_refvalue_expression] = STATE(3035), + [sym_stackalloc_expression] = STATE(3035), + [sym_range_expression] = STATE(3035), + [sym_tuple_expression] = STATE(2415), + [sym_literal] = STATE(3035), + [sym_character_literal] = STATE(3037), + [sym_string_literal] = STATE(3037), + [sym_raw_string_literal] = STATE(3037), + [sym_boolean_literal] = STATE(3037), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3035), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(1282), [sym_preproc_endregion] = STATE(1282), [sym_preproc_line] = STATE(1282), @@ -258517,47 +258403,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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3396), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3455), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1153), - [anon_sym_LPAREN] = ACTIONS(1593), - [anon_sym_ref] = ACTIONS(1595), - [anon_sym_LBRACE] = ACTIONS(1159), - [anon_sym_delegate] = ACTIONS(1161), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1239), + [anon_sym_LPAREN] = ACTIONS(2281), + [anon_sym_ref] = ACTIONS(2283), + [anon_sym_LBRACE] = ACTIONS(1245), + [anon_sym_delegate] = ACTIONS(1247), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1163), + [anon_sym_new] = ACTIONS(2285), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1167), - [anon_sym_BANG] = ACTIONS(1599), - [anon_sym_TILDE] = ACTIONS(1599), - [anon_sym_PLUS_PLUS] = ACTIONS(1599), - [anon_sym_DASH_DASH] = ACTIONS(1599), - [anon_sym_true] = ACTIONS(1173), - [anon_sym_false] = ACTIONS(1173), - [anon_sym_PLUS] = ACTIONS(1597), - [anon_sym_DASH] = ACTIONS(1597), - [anon_sym_STAR] = ACTIONS(1601), - [anon_sym_CARET] = ACTIONS(1599), - [anon_sym_AMP] = ACTIONS(1599), - [anon_sym_this] = ACTIONS(1177), + [anon_sym_checked] = ACTIONS(1251), + [anon_sym_BANG] = ACTIONS(2289), + [anon_sym_TILDE] = ACTIONS(2289), + [anon_sym_PLUS_PLUS] = ACTIONS(2289), + [anon_sym_DASH_DASH] = ACTIONS(2289), + [anon_sym_true] = ACTIONS(1257), + [anon_sym_false] = ACTIONS(1257), + [anon_sym_PLUS] = ACTIONS(2287), + [anon_sym_DASH] = ACTIONS(2287), + [anon_sym_STAR] = ACTIONS(2291), + [anon_sym_CARET] = ACTIONS(2289), + [anon_sym_AMP] = ACTIONS(2289), + [anon_sym_this] = ACTIONS(1261), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1179), + [anon_sym_base] = ACTIONS(1263), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1181), - [anon_sym_unchecked] = ACTIONS(1167), + [sym_predefined_type] = ACTIONS(1265), + [anon_sym_unchecked] = ACTIONS(1251), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1183), - [anon_sym_throw] = ACTIONS(1603), + [anon_sym_default] = ACTIONS(1267), + [anon_sym_throw] = ACTIONS(2293), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1605), - [anon_sym_DOT_DOT] = ACTIONS(1607), + [anon_sym_await] = ACTIONS(2295), + [anon_sym_DOT_DOT] = ACTIONS(2297), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -258570,19 +258456,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1191), - [anon_sym_sizeof] = ACTIONS(1193), - [anon_sym_typeof] = ACTIONS(1195), - [anon_sym___makeref] = ACTIONS(1197), - [anon_sym___reftype] = ACTIONS(1199), - [anon_sym___refvalue] = ACTIONS(1201), - [sym_null_literal] = ACTIONS(1203), - [anon_sym_SQUOTE] = ACTIONS(1205), - [sym_integer_literal] = ACTIONS(1203), - [sym_real_literal] = ACTIONS(1207), - [anon_sym_DQUOTE] = ACTIONS(1209), - [sym_verbatim_string_literal] = ACTIONS(1207), - [aux_sym_preproc_if_token1] = ACTIONS(1211), + [anon_sym_stackalloc] = ACTIONS(1275), + [anon_sym_sizeof] = ACTIONS(1277), + [anon_sym_typeof] = ACTIONS(1279), + [anon_sym___makeref] = ACTIONS(1281), + [anon_sym___reftype] = ACTIONS(1283), + [anon_sym___refvalue] = ACTIONS(1285), + [sym_null_literal] = ACTIONS(1287), + [anon_sym_SQUOTE] = ACTIONS(1289), + [sym_integer_literal] = ACTIONS(1287), + [sym_real_literal] = ACTIONS(1291), + [anon_sym_DQUOTE] = ACTIONS(1293), + [sym_verbatim_string_literal] = ACTIONS(1291), + [aux_sym_preproc_if_token1] = ACTIONS(1295), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -258593,90 +258479,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1213), - [sym_interpolation_verbatim_start] = ACTIONS(1215), - [sym_interpolation_raw_start] = ACTIONS(1217), - [sym_raw_string_start] = ACTIONS(1219), + [sym_interpolation_regular_start] = ACTIONS(1297), + [sym_interpolation_verbatim_start] = ACTIONS(1299), + [sym_interpolation_raw_start] = ACTIONS(1301), + [sym_raw_string_start] = ACTIONS(1303), }, [1283] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(5910), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2247), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(3543), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3529), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3080), - [sym_postfix_unary_expression] = STATE(3111), - [sym_prefix_unary_expression] = STATE(3111), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6154), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3080), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3111), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3080), - [sym_member_access_expression] = STATE(2484), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3111), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7444), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(3080), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3080), - [sym_typeof_expression] = STATE(3080), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2484), - [sym_literal] = STATE(3080), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2416), + [sym__name] = STATE(5868), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2387), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(5172), + [sym_non_lvalue_expression] = STATE(3040), + [sym_lvalue_expression] = STATE(3634), + [sym__expression_statement_expression] = STATE(3035), + [sym_assignment_expression] = STATE(3043), + [sym_binary_expression] = STATE(3035), + [sym_postfix_unary_expression] = STATE(3043), + [sym_prefix_unary_expression] = STATE(3043), + [sym__pointer_indirection_expression] = STATE(2415), + [sym_query_expression] = STATE(3035), + [sym_from_clause] = STATE(6130), + [sym_conditional_expression] = STATE(3035), + [sym_conditional_access_expression] = STATE(3035), + [sym_as_expression] = STATE(3035), + [sym_is_expression] = STATE(3035), + [sym_is_pattern_expression] = STATE(3035), + [sym_cast_expression] = STATE(3035), + [sym_checked_expression] = STATE(3035), + [sym_invocation_expression] = STATE(3043), + [sym_switch_expression] = STATE(3035), + [sym_await_expression] = STATE(3043), + [sym_throw_expression] = STATE(3035), + [sym_element_access_expression] = STATE(2415), + [sym_interpolated_string_expression] = STATE(3035), + [sym_member_access_expression] = STATE(2415), + [sym_object_creation_expression] = STATE(3043), + [sym_parenthesized_expression] = STATE(3043), + [sym__parenthesized_lvalue_expression] = STATE(2415), + [sym_lambda_expression] = STATE(3035), + [sym__lambda_expression_init] = STATE(7324), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3035), + [sym_anonymous_method_expression] = STATE(3035), + [sym_anonymous_object_creation_expression] = STATE(3035), + [sym_implicit_array_creation_expression] = STATE(3035), + [sym_implicit_object_creation_expression] = STATE(3035), + [sym_implicit_stackalloc_expression] = STATE(3035), + [sym_initializer_expression] = STATE(3035), + [sym_default_expression] = STATE(3035), + [sym_with_expression] = STATE(3035), + [sym_sizeof_expression] = STATE(3035), + [sym_typeof_expression] = STATE(3035), + [sym_makeref_expression] = STATE(3035), + [sym_ref_expression] = STATE(3035), + [sym_reftype_expression] = STATE(3035), + [sym_refvalue_expression] = STATE(3035), + [sym_stackalloc_expression] = STATE(3035), + [sym_range_expression] = STATE(3035), + [sym_tuple_expression] = STATE(2415), + [sym_literal] = STATE(3035), + [sym_character_literal] = STATE(3037), + [sym_string_literal] = STATE(3037), + [sym_raw_string_literal] = STATE(3037), + [sym_boolean_literal] = STATE(3037), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3035), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(1283), [sym_preproc_endregion] = STATE(1283), [sym_preproc_line] = STATE(1283), @@ -258686,47 +258572,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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3455), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1481), - [anon_sym_LPAREN] = ACTIONS(1575), - [anon_sym_ref] = ACTIONS(1577), - [anon_sym_LBRACE] = ACTIONS(1487), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1239), + [anon_sym_LPAREN] = ACTIONS(2281), + [anon_sym_ref] = ACTIONS(2283), + [anon_sym_LBRACE] = ACTIONS(1245), + [anon_sym_delegate] = ACTIONS(1247), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1501), + [anon_sym_new] = ACTIONS(2285), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1067), - [anon_sym_BANG] = ACTIONS(901), - [anon_sym_TILDE] = ACTIONS(901), - [anon_sym_PLUS_PLUS] = ACTIONS(901), - [anon_sym_DASH_DASH] = ACTIONS(901), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(903), - [anon_sym_DASH] = ACTIONS(903), - [anon_sym_STAR] = ACTIONS(905), - [anon_sym_CARET] = ACTIONS(901), - [anon_sym_AMP] = ACTIONS(901), - [anon_sym_this] = ACTIONS(83), + [anon_sym_checked] = ACTIONS(1251), + [anon_sym_BANG] = ACTIONS(2289), + [anon_sym_TILDE] = ACTIONS(2289), + [anon_sym_PLUS_PLUS] = ACTIONS(2289), + [anon_sym_DASH_DASH] = ACTIONS(2289), + [anon_sym_true] = ACTIONS(1257), + [anon_sym_false] = ACTIONS(1257), + [anon_sym_PLUS] = ACTIONS(2287), + [anon_sym_DASH] = ACTIONS(2287), + [anon_sym_STAR] = ACTIONS(2291), + [anon_sym_CARET] = ACTIONS(2289), + [anon_sym_AMP] = ACTIONS(2289), + [anon_sym_this] = ACTIONS(1261), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), + [anon_sym_base] = ACTIONS(1263), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1067), + [sym_predefined_type] = ACTIONS(1265), + [anon_sym_unchecked] = ACTIONS(1251), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1579), + [anon_sym_default] = ACTIONS(1267), + [anon_sym_throw] = ACTIONS(2293), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1581), - [anon_sym_DOT_DOT] = ACTIONS(1583), + [anon_sym_await] = ACTIONS(2295), + [anon_sym_DOT_DOT] = ACTIONS(2297), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -258739,19 +258625,19 @@ static const uint16_t ts_parse_table[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(1089), + [anon_sym_stackalloc] = ACTIONS(1275), + [anon_sym_sizeof] = ACTIONS(1277), + [anon_sym_typeof] = ACTIONS(1279), + [anon_sym___makeref] = ACTIONS(1281), + [anon_sym___reftype] = ACTIONS(1283), + [anon_sym___refvalue] = ACTIONS(1285), + [sym_null_literal] = ACTIONS(1287), + [anon_sym_SQUOTE] = ACTIONS(1289), + [sym_integer_literal] = ACTIONS(1287), + [sym_real_literal] = ACTIONS(1291), + [anon_sym_DQUOTE] = ACTIONS(1293), + [sym_verbatim_string_literal] = ACTIONS(1291), + [aux_sym_preproc_if_token1] = ACTIONS(1295), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -258762,90 +258648,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(151), - [sym_interpolation_verbatim_start] = ACTIONS(153), - [sym_interpolation_raw_start] = ACTIONS(155), - [sym_raw_string_start] = ACTIONS(157), + [sym_interpolation_regular_start] = ACTIONS(1297), + [sym_interpolation_verbatim_start] = ACTIONS(1299), + [sym_interpolation_raw_start] = ACTIONS(1301), + [sym_raw_string_start] = ACTIONS(1303), }, [1284] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2610), - [sym__name] = STATE(5898), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2197), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(3145), - [sym_non_lvalue_expression] = STATE(3277), - [sym_lvalue_expression] = STATE(3413), - [sym__expression_statement_expression] = STATE(3228), - [sym_assignment_expression] = STATE(3289), - [sym_binary_expression] = STATE(3228), - [sym_postfix_unary_expression] = STATE(3289), - [sym_prefix_unary_expression] = STATE(3289), - [sym__pointer_indirection_expression] = STATE(2609), - [sym_query_expression] = STATE(3228), - [sym_from_clause] = STATE(6160), - [sym_conditional_expression] = STATE(3228), - [sym_conditional_access_expression] = STATE(3228), - [sym_as_expression] = STATE(3228), - [sym_is_expression] = STATE(3228), - [sym_is_pattern_expression] = STATE(3228), - [sym_cast_expression] = STATE(3228), - [sym_checked_expression] = STATE(3228), - [sym_invocation_expression] = STATE(3289), - [sym_switch_expression] = STATE(3228), - [sym_await_expression] = STATE(3289), - [sym_throw_expression] = STATE(3228), - [sym_element_access_expression] = STATE(2609), - [sym_interpolated_string_expression] = STATE(3228), - [sym_member_access_expression] = STATE(2609), - [sym_object_creation_expression] = STATE(3289), - [sym_parenthesized_expression] = STATE(3289), - [sym__parenthesized_lvalue_expression] = STATE(2609), - [sym_lambda_expression] = STATE(3228), - [sym__lambda_expression_init] = STATE(7523), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3228), - [sym_anonymous_method_expression] = STATE(3228), - [sym_anonymous_object_creation_expression] = STATE(3228), - [sym_implicit_array_creation_expression] = STATE(3228), - [sym_implicit_object_creation_expression] = STATE(3228), - [sym_implicit_stackalloc_expression] = STATE(3228), - [sym_initializer_expression] = STATE(3228), - [sym_default_expression] = STATE(3228), - [sym_with_expression] = STATE(3228), - [sym_sizeof_expression] = STATE(3228), - [sym_typeof_expression] = STATE(3228), - [sym_makeref_expression] = STATE(3228), - [sym_ref_expression] = STATE(3228), - [sym_reftype_expression] = STATE(3228), - [sym_refvalue_expression] = STATE(3228), - [sym_stackalloc_expression] = STATE(3228), - [sym_range_expression] = STATE(3228), - [sym_tuple_expression] = STATE(2609), - [sym_literal] = STATE(3228), - [sym_character_literal] = STATE(3278), - [sym_string_literal] = STATE(3278), - [sym_raw_string_literal] = STATE(3278), - [sym_boolean_literal] = STATE(3278), - [sym_identifier] = STATE(2267), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3228), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2416), + [sym__name] = STATE(5868), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2387), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(5173), + [sym_non_lvalue_expression] = STATE(3040), + [sym_lvalue_expression] = STATE(3634), + [sym__expression_statement_expression] = STATE(3035), + [sym_assignment_expression] = STATE(3043), + [sym_binary_expression] = STATE(3035), + [sym_postfix_unary_expression] = STATE(3043), + [sym_prefix_unary_expression] = STATE(3043), + [sym__pointer_indirection_expression] = STATE(2415), + [sym_query_expression] = STATE(3035), + [sym_from_clause] = STATE(6130), + [sym_conditional_expression] = STATE(3035), + [sym_conditional_access_expression] = STATE(3035), + [sym_as_expression] = STATE(3035), + [sym_is_expression] = STATE(3035), + [sym_is_pattern_expression] = STATE(3035), + [sym_cast_expression] = STATE(3035), + [sym_checked_expression] = STATE(3035), + [sym_invocation_expression] = STATE(3043), + [sym_switch_expression] = STATE(3035), + [sym_await_expression] = STATE(3043), + [sym_throw_expression] = STATE(3035), + [sym_element_access_expression] = STATE(2415), + [sym_interpolated_string_expression] = STATE(3035), + [sym_member_access_expression] = STATE(2415), + [sym_object_creation_expression] = STATE(3043), + [sym_parenthesized_expression] = STATE(3043), + [sym__parenthesized_lvalue_expression] = STATE(2415), + [sym_lambda_expression] = STATE(3035), + [sym__lambda_expression_init] = STATE(7324), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3035), + [sym_anonymous_method_expression] = STATE(3035), + [sym_anonymous_object_creation_expression] = STATE(3035), + [sym_implicit_array_creation_expression] = STATE(3035), + [sym_implicit_object_creation_expression] = STATE(3035), + [sym_implicit_stackalloc_expression] = STATE(3035), + [sym_initializer_expression] = STATE(3035), + [sym_default_expression] = STATE(3035), + [sym_with_expression] = STATE(3035), + [sym_sizeof_expression] = STATE(3035), + [sym_typeof_expression] = STATE(3035), + [sym_makeref_expression] = STATE(3035), + [sym_ref_expression] = STATE(3035), + [sym_reftype_expression] = STATE(3035), + [sym_refvalue_expression] = STATE(3035), + [sym_stackalloc_expression] = STATE(3035), + [sym_range_expression] = STATE(3035), + [sym_tuple_expression] = STATE(2415), + [sym_literal] = STATE(3035), + [sym_character_literal] = STATE(3037), + [sym_string_literal] = STATE(3037), + [sym_raw_string_literal] = STATE(3037), + [sym_boolean_literal] = STATE(3037), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3035), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(1284), [sym_preproc_endregion] = STATE(1284), [sym_preproc_line] = STATE(1284), @@ -258855,47 +258741,47 @@ 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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3396), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3455), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1153), - [anon_sym_LPAREN] = ACTIONS(1593), - [anon_sym_ref] = ACTIONS(1595), - [anon_sym_LBRACE] = ACTIONS(1159), - [anon_sym_delegate] = ACTIONS(1161), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1239), + [anon_sym_LPAREN] = ACTIONS(2281), + [anon_sym_ref] = ACTIONS(2283), + [anon_sym_LBRACE] = ACTIONS(1245), + [anon_sym_delegate] = ACTIONS(1247), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1163), + [anon_sym_new] = ACTIONS(2285), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1167), - [anon_sym_BANG] = ACTIONS(1599), - [anon_sym_TILDE] = ACTIONS(1599), - [anon_sym_PLUS_PLUS] = ACTIONS(1599), - [anon_sym_DASH_DASH] = ACTIONS(1599), - [anon_sym_true] = ACTIONS(1173), - [anon_sym_false] = ACTIONS(1173), - [anon_sym_PLUS] = ACTIONS(1597), - [anon_sym_DASH] = ACTIONS(1597), - [anon_sym_STAR] = ACTIONS(1601), - [anon_sym_CARET] = ACTIONS(1599), - [anon_sym_AMP] = ACTIONS(1599), - [anon_sym_this] = ACTIONS(1177), + [anon_sym_checked] = ACTIONS(1251), + [anon_sym_BANG] = ACTIONS(2289), + [anon_sym_TILDE] = ACTIONS(2289), + [anon_sym_PLUS_PLUS] = ACTIONS(2289), + [anon_sym_DASH_DASH] = ACTIONS(2289), + [anon_sym_true] = ACTIONS(1257), + [anon_sym_false] = ACTIONS(1257), + [anon_sym_PLUS] = ACTIONS(2287), + [anon_sym_DASH] = ACTIONS(2287), + [anon_sym_STAR] = ACTIONS(2291), + [anon_sym_CARET] = ACTIONS(2289), + [anon_sym_AMP] = ACTIONS(2289), + [anon_sym_this] = ACTIONS(1261), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1179), + [anon_sym_base] = ACTIONS(1263), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1181), - [anon_sym_unchecked] = ACTIONS(1167), + [sym_predefined_type] = ACTIONS(1265), + [anon_sym_unchecked] = ACTIONS(1251), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1183), - [anon_sym_throw] = ACTIONS(1603), + [anon_sym_default] = ACTIONS(1267), + [anon_sym_throw] = ACTIONS(2293), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1605), - [anon_sym_DOT_DOT] = ACTIONS(1607), + [anon_sym_await] = ACTIONS(2295), + [anon_sym_DOT_DOT] = ACTIONS(2297), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -258908,19 +258794,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1191), - [anon_sym_sizeof] = ACTIONS(1193), - [anon_sym_typeof] = ACTIONS(1195), - [anon_sym___makeref] = ACTIONS(1197), - [anon_sym___reftype] = ACTIONS(1199), - [anon_sym___refvalue] = ACTIONS(1201), - [sym_null_literal] = ACTIONS(1203), - [anon_sym_SQUOTE] = ACTIONS(1205), - [sym_integer_literal] = ACTIONS(1203), - [sym_real_literal] = ACTIONS(1207), - [anon_sym_DQUOTE] = ACTIONS(1209), - [sym_verbatim_string_literal] = ACTIONS(1207), - [aux_sym_preproc_if_token1] = ACTIONS(1211), + [anon_sym_stackalloc] = ACTIONS(1275), + [anon_sym_sizeof] = ACTIONS(1277), + [anon_sym_typeof] = ACTIONS(1279), + [anon_sym___makeref] = ACTIONS(1281), + [anon_sym___reftype] = ACTIONS(1283), + [anon_sym___refvalue] = ACTIONS(1285), + [sym_null_literal] = ACTIONS(1287), + [anon_sym_SQUOTE] = ACTIONS(1289), + [sym_integer_literal] = ACTIONS(1287), + [sym_real_literal] = ACTIONS(1291), + [anon_sym_DQUOTE] = ACTIONS(1293), + [sym_verbatim_string_literal] = ACTIONS(1291), + [aux_sym_preproc_if_token1] = ACTIONS(1295), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -258931,90 +258817,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1213), - [sym_interpolation_verbatim_start] = ACTIONS(1215), - [sym_interpolation_raw_start] = ACTIONS(1217), - [sym_raw_string_start] = ACTIONS(1219), + [sym_interpolation_regular_start] = ACTIONS(1297), + [sym_interpolation_verbatim_start] = ACTIONS(1299), + [sym_interpolation_raw_start] = ACTIONS(1301), + [sym_raw_string_start] = ACTIONS(1303), }, [1285] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2610), - [sym__name] = STATE(5898), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2197), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(4524), - [sym_non_lvalue_expression] = STATE(3277), - [sym_lvalue_expression] = STATE(3413), - [sym__expression_statement_expression] = STATE(3228), - [sym_assignment_expression] = STATE(3289), - [sym_binary_expression] = STATE(3228), - [sym_postfix_unary_expression] = STATE(3289), - [sym_prefix_unary_expression] = STATE(3289), - [sym__pointer_indirection_expression] = STATE(2609), - [sym_query_expression] = STATE(3228), - [sym_from_clause] = STATE(6160), - [sym_conditional_expression] = STATE(3228), - [sym_conditional_access_expression] = STATE(3228), - [sym_as_expression] = STATE(3228), - [sym_is_expression] = STATE(3228), - [sym_is_pattern_expression] = STATE(3228), - [sym_cast_expression] = STATE(3228), - [sym_checked_expression] = STATE(3228), - [sym_invocation_expression] = STATE(3289), - [sym_switch_expression] = STATE(3228), - [sym_await_expression] = STATE(3289), - [sym_throw_expression] = STATE(3228), - [sym_element_access_expression] = STATE(2609), - [sym_interpolated_string_expression] = STATE(3228), - [sym_member_access_expression] = STATE(2609), - [sym_object_creation_expression] = STATE(3289), - [sym_parenthesized_expression] = STATE(3289), - [sym__parenthesized_lvalue_expression] = STATE(2609), - [sym_lambda_expression] = STATE(3228), - [sym__lambda_expression_init] = STATE(7523), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3228), - [sym_anonymous_method_expression] = STATE(3228), - [sym_anonymous_object_creation_expression] = STATE(3228), - [sym_implicit_array_creation_expression] = STATE(3228), - [sym_implicit_object_creation_expression] = STATE(3228), - [sym_implicit_stackalloc_expression] = STATE(3228), - [sym_initializer_expression] = STATE(3228), - [sym_default_expression] = STATE(3228), - [sym_with_expression] = STATE(3228), - [sym_sizeof_expression] = STATE(3228), - [sym_typeof_expression] = STATE(3228), - [sym_makeref_expression] = STATE(3228), - [sym_ref_expression] = STATE(3228), - [sym_reftype_expression] = STATE(3228), - [sym_refvalue_expression] = STATE(3228), - [sym_stackalloc_expression] = STATE(3228), - [sym_range_expression] = STATE(3228), - [sym_tuple_expression] = STATE(2609), - [sym_literal] = STATE(3228), - [sym_character_literal] = STATE(3278), - [sym_string_literal] = STATE(3278), - [sym_raw_string_literal] = STATE(3278), - [sym_boolean_literal] = STATE(3278), - [sym_identifier] = STATE(2267), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3228), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2416), + [sym__name] = STATE(5868), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2387), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(5174), + [sym_non_lvalue_expression] = STATE(3040), + [sym_lvalue_expression] = STATE(3634), + [sym__expression_statement_expression] = STATE(3035), + [sym_assignment_expression] = STATE(3043), + [sym_binary_expression] = STATE(3035), + [sym_postfix_unary_expression] = STATE(3043), + [sym_prefix_unary_expression] = STATE(3043), + [sym__pointer_indirection_expression] = STATE(2415), + [sym_query_expression] = STATE(3035), + [sym_from_clause] = STATE(6130), + [sym_conditional_expression] = STATE(3035), + [sym_conditional_access_expression] = STATE(3035), + [sym_as_expression] = STATE(3035), + [sym_is_expression] = STATE(3035), + [sym_is_pattern_expression] = STATE(3035), + [sym_cast_expression] = STATE(3035), + [sym_checked_expression] = STATE(3035), + [sym_invocation_expression] = STATE(3043), + [sym_switch_expression] = STATE(3035), + [sym_await_expression] = STATE(3043), + [sym_throw_expression] = STATE(3035), + [sym_element_access_expression] = STATE(2415), + [sym_interpolated_string_expression] = STATE(3035), + [sym_member_access_expression] = STATE(2415), + [sym_object_creation_expression] = STATE(3043), + [sym_parenthesized_expression] = STATE(3043), + [sym__parenthesized_lvalue_expression] = STATE(2415), + [sym_lambda_expression] = STATE(3035), + [sym__lambda_expression_init] = STATE(7324), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3035), + [sym_anonymous_method_expression] = STATE(3035), + [sym_anonymous_object_creation_expression] = STATE(3035), + [sym_implicit_array_creation_expression] = STATE(3035), + [sym_implicit_object_creation_expression] = STATE(3035), + [sym_implicit_stackalloc_expression] = STATE(3035), + [sym_initializer_expression] = STATE(3035), + [sym_default_expression] = STATE(3035), + [sym_with_expression] = STATE(3035), + [sym_sizeof_expression] = STATE(3035), + [sym_typeof_expression] = STATE(3035), + [sym_makeref_expression] = STATE(3035), + [sym_ref_expression] = STATE(3035), + [sym_reftype_expression] = STATE(3035), + [sym_refvalue_expression] = STATE(3035), + [sym_stackalloc_expression] = STATE(3035), + [sym_range_expression] = STATE(3035), + [sym_tuple_expression] = STATE(2415), + [sym_literal] = STATE(3035), + [sym_character_literal] = STATE(3037), + [sym_string_literal] = STATE(3037), + [sym_raw_string_literal] = STATE(3037), + [sym_boolean_literal] = STATE(3037), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3035), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(1285), [sym_preproc_endregion] = STATE(1285), [sym_preproc_line] = STATE(1285), @@ -259024,47 +258910,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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3396), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3455), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1153), - [anon_sym_LPAREN] = ACTIONS(1593), - [anon_sym_ref] = ACTIONS(1595), - [anon_sym_LBRACE] = ACTIONS(1159), - [anon_sym_delegate] = ACTIONS(1161), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1239), + [anon_sym_LPAREN] = ACTIONS(2281), + [anon_sym_ref] = ACTIONS(2283), + [anon_sym_LBRACE] = ACTIONS(1245), + [anon_sym_delegate] = ACTIONS(1247), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1163), + [anon_sym_new] = ACTIONS(2285), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1167), - [anon_sym_BANG] = ACTIONS(1599), - [anon_sym_TILDE] = ACTIONS(1599), - [anon_sym_PLUS_PLUS] = ACTIONS(1599), - [anon_sym_DASH_DASH] = ACTIONS(1599), - [anon_sym_true] = ACTIONS(1173), - [anon_sym_false] = ACTIONS(1173), - [anon_sym_PLUS] = ACTIONS(1597), - [anon_sym_DASH] = ACTIONS(1597), - [anon_sym_STAR] = ACTIONS(1601), - [anon_sym_CARET] = ACTIONS(1599), - [anon_sym_AMP] = ACTIONS(1599), - [anon_sym_this] = ACTIONS(1177), + [anon_sym_checked] = ACTIONS(1251), + [anon_sym_BANG] = ACTIONS(2289), + [anon_sym_TILDE] = ACTIONS(2289), + [anon_sym_PLUS_PLUS] = ACTIONS(2289), + [anon_sym_DASH_DASH] = ACTIONS(2289), + [anon_sym_true] = ACTIONS(1257), + [anon_sym_false] = ACTIONS(1257), + [anon_sym_PLUS] = ACTIONS(2287), + [anon_sym_DASH] = ACTIONS(2287), + [anon_sym_STAR] = ACTIONS(2291), + [anon_sym_CARET] = ACTIONS(2289), + [anon_sym_AMP] = ACTIONS(2289), + [anon_sym_this] = ACTIONS(1261), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1179), + [anon_sym_base] = ACTIONS(1263), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1181), - [anon_sym_unchecked] = ACTIONS(1167), + [sym_predefined_type] = ACTIONS(1265), + [anon_sym_unchecked] = ACTIONS(1251), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1183), - [anon_sym_throw] = ACTIONS(1603), + [anon_sym_default] = ACTIONS(1267), + [anon_sym_throw] = ACTIONS(2293), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1605), - [anon_sym_DOT_DOT] = ACTIONS(1607), + [anon_sym_await] = ACTIONS(2295), + [anon_sym_DOT_DOT] = ACTIONS(2297), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -259077,19 +258963,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1191), - [anon_sym_sizeof] = ACTIONS(1193), - [anon_sym_typeof] = ACTIONS(1195), - [anon_sym___makeref] = ACTIONS(1197), - [anon_sym___reftype] = ACTIONS(1199), - [anon_sym___refvalue] = ACTIONS(1201), - [sym_null_literal] = ACTIONS(1203), - [anon_sym_SQUOTE] = ACTIONS(1205), - [sym_integer_literal] = ACTIONS(1203), - [sym_real_literal] = ACTIONS(1207), - [anon_sym_DQUOTE] = ACTIONS(1209), - [sym_verbatim_string_literal] = ACTIONS(1207), - [aux_sym_preproc_if_token1] = ACTIONS(1211), + [anon_sym_stackalloc] = ACTIONS(1275), + [anon_sym_sizeof] = ACTIONS(1277), + [anon_sym_typeof] = ACTIONS(1279), + [anon_sym___makeref] = ACTIONS(1281), + [anon_sym___reftype] = ACTIONS(1283), + [anon_sym___refvalue] = ACTIONS(1285), + [sym_null_literal] = ACTIONS(1287), + [anon_sym_SQUOTE] = ACTIONS(1289), + [sym_integer_literal] = ACTIONS(1287), + [sym_real_literal] = ACTIONS(1291), + [anon_sym_DQUOTE] = ACTIONS(1293), + [sym_verbatim_string_literal] = ACTIONS(1291), + [aux_sym_preproc_if_token1] = ACTIONS(1295), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -259100,90 +258986,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1213), - [sym_interpolation_verbatim_start] = ACTIONS(1215), - [sym_interpolation_raw_start] = ACTIONS(1217), - [sym_raw_string_start] = ACTIONS(1219), + [sym_interpolation_regular_start] = ACTIONS(1297), + [sym_interpolation_verbatim_start] = ACTIONS(1299), + [sym_interpolation_raw_start] = ACTIONS(1301), + [sym_raw_string_start] = ACTIONS(1303), }, [1286] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(5907), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2404), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(5702), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(2465), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3080), - [sym_postfix_unary_expression] = STATE(3111), - [sym_prefix_unary_expression] = STATE(3111), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6154), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3080), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3111), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3080), - [sym_member_access_expression] = STATE(2484), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3111), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7530), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(3080), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3080), - [sym_typeof_expression] = STATE(3080), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2484), - [sym_literal] = STATE(3080), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2416), + [sym__name] = STATE(5868), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2387), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(5175), + [sym_non_lvalue_expression] = STATE(3040), + [sym_lvalue_expression] = STATE(3634), + [sym__expression_statement_expression] = STATE(3035), + [sym_assignment_expression] = STATE(3043), + [sym_binary_expression] = STATE(3035), + [sym_postfix_unary_expression] = STATE(3043), + [sym_prefix_unary_expression] = STATE(3043), + [sym__pointer_indirection_expression] = STATE(2415), + [sym_query_expression] = STATE(3035), + [sym_from_clause] = STATE(6130), + [sym_conditional_expression] = STATE(3035), + [sym_conditional_access_expression] = STATE(3035), + [sym_as_expression] = STATE(3035), + [sym_is_expression] = STATE(3035), + [sym_is_pattern_expression] = STATE(3035), + [sym_cast_expression] = STATE(3035), + [sym_checked_expression] = STATE(3035), + [sym_invocation_expression] = STATE(3043), + [sym_switch_expression] = STATE(3035), + [sym_await_expression] = STATE(3043), + [sym_throw_expression] = STATE(3035), + [sym_element_access_expression] = STATE(2415), + [sym_interpolated_string_expression] = STATE(3035), + [sym_member_access_expression] = STATE(2415), + [sym_object_creation_expression] = STATE(3043), + [sym_parenthesized_expression] = STATE(3043), + [sym__parenthesized_lvalue_expression] = STATE(2415), + [sym_lambda_expression] = STATE(3035), + [sym__lambda_expression_init] = STATE(7324), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3035), + [sym_anonymous_method_expression] = STATE(3035), + [sym_anonymous_object_creation_expression] = STATE(3035), + [sym_implicit_array_creation_expression] = STATE(3035), + [sym_implicit_object_creation_expression] = STATE(3035), + [sym_implicit_stackalloc_expression] = STATE(3035), + [sym_initializer_expression] = STATE(3035), + [sym_default_expression] = STATE(3035), + [sym_with_expression] = STATE(3035), + [sym_sizeof_expression] = STATE(3035), + [sym_typeof_expression] = STATE(3035), + [sym_makeref_expression] = STATE(3035), + [sym_ref_expression] = STATE(3035), + [sym_reftype_expression] = STATE(3035), + [sym_refvalue_expression] = STATE(3035), + [sym_stackalloc_expression] = STATE(3035), + [sym_range_expression] = STATE(3035), + [sym_tuple_expression] = STATE(2415), + [sym_literal] = STATE(3035), + [sym_character_literal] = STATE(3037), + [sym_string_literal] = STATE(3037), + [sym_raw_string_literal] = STATE(3037), + [sym_boolean_literal] = STATE(3037), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3035), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(1286), [sym_preproc_endregion] = STATE(1286), [sym_preproc_line] = STATE(1286), @@ -259193,47 +259079,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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3455), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1481), - [anon_sym_LPAREN] = ACTIONS(2947), - [anon_sym_ref] = ACTIONS(661), - [anon_sym_LBRACE] = ACTIONS(1487), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1239), + [anon_sym_LPAREN] = ACTIONS(2281), + [anon_sym_ref] = ACTIONS(2283), + [anon_sym_LBRACE] = ACTIONS(1245), + [anon_sym_delegate] = ACTIONS(1247), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1061), + [anon_sym_new] = ACTIONS(2285), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = 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(1585), - [anon_sym_DASH] = ACTIONS(1585), - [anon_sym_STAR] = ACTIONS(1943), - [anon_sym_CARET] = ACTIONS(1587), - [anon_sym_AMP] = ACTIONS(1587), - [anon_sym_this] = ACTIONS(83), + [anon_sym_checked] = ACTIONS(1251), + [anon_sym_BANG] = ACTIONS(2289), + [anon_sym_TILDE] = ACTIONS(2289), + [anon_sym_PLUS_PLUS] = ACTIONS(2289), + [anon_sym_DASH_DASH] = ACTIONS(2289), + [anon_sym_true] = ACTIONS(1257), + [anon_sym_false] = ACTIONS(1257), + [anon_sym_PLUS] = ACTIONS(2287), + [anon_sym_DASH] = ACTIONS(2287), + [anon_sym_STAR] = ACTIONS(2291), + [anon_sym_CARET] = ACTIONS(2289), + [anon_sym_AMP] = ACTIONS(2289), + [anon_sym_this] = ACTIONS(1261), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), + [anon_sym_base] = ACTIONS(1263), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1267), - [anon_sym_unchecked] = ACTIONS(1067), + [sym_predefined_type] = ACTIONS(1265), + [anon_sym_unchecked] = ACTIONS(1251), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1589), + [anon_sym_default] = ACTIONS(1267), + [anon_sym_throw] = ACTIONS(2293), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1591), - [anon_sym_DOT_DOT] = ACTIONS(123), + [anon_sym_await] = ACTIONS(2295), + [anon_sym_DOT_DOT] = ACTIONS(2297), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -259246,19 +259132,19 @@ static const uint16_t ts_parse_table[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(1089), + [anon_sym_stackalloc] = ACTIONS(1275), + [anon_sym_sizeof] = ACTIONS(1277), + [anon_sym_typeof] = ACTIONS(1279), + [anon_sym___makeref] = ACTIONS(1281), + [anon_sym___reftype] = ACTIONS(1283), + [anon_sym___refvalue] = ACTIONS(1285), + [sym_null_literal] = ACTIONS(1287), + [anon_sym_SQUOTE] = ACTIONS(1289), + [sym_integer_literal] = ACTIONS(1287), + [sym_real_literal] = ACTIONS(1291), + [anon_sym_DQUOTE] = ACTIONS(1293), + [sym_verbatim_string_literal] = ACTIONS(1291), + [aux_sym_preproc_if_token1] = ACTIONS(1295), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -259269,90 +259155,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(151), - [sym_interpolation_verbatim_start] = ACTIONS(153), - [sym_interpolation_raw_start] = ACTIONS(155), - [sym_raw_string_start] = ACTIONS(157), + [sym_interpolation_regular_start] = ACTIONS(1297), + [sym_interpolation_verbatim_start] = ACTIONS(1299), + [sym_interpolation_raw_start] = ACTIONS(1301), + [sym_raw_string_start] = ACTIONS(1303), }, [1287] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2762), - [sym__name] = STATE(5910), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2247), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(4183), - [sym_non_lvalue_expression] = STATE(3438), - [sym_lvalue_expression] = STATE(3136), - [sym__expression_statement_expression] = STATE(3362), - [sym_assignment_expression] = STATE(3449), - [sym_binary_expression] = STATE(3362), - [sym_postfix_unary_expression] = STATE(3449), - [sym_prefix_unary_expression] = STATE(3449), - [sym__pointer_indirection_expression] = STATE(2747), - [sym_query_expression] = STATE(3362), - [sym_from_clause] = STATE(6171), - [sym_conditional_expression] = STATE(3362), - [sym_conditional_access_expression] = STATE(3362), - [sym_as_expression] = STATE(3362), - [sym_is_expression] = STATE(3362), - [sym_is_pattern_expression] = STATE(3362), - [sym_cast_expression] = STATE(3362), - [sym_checked_expression] = STATE(3362), - [sym_invocation_expression] = STATE(3449), - [sym_switch_expression] = STATE(3362), - [sym_await_expression] = STATE(3449), - [sym_throw_expression] = STATE(3362), - [sym_element_access_expression] = STATE(2747), - [sym_interpolated_string_expression] = STATE(3362), - [sym_member_access_expression] = STATE(2747), - [sym_object_creation_expression] = STATE(3449), - [sym_parenthesized_expression] = STATE(3449), - [sym__parenthesized_lvalue_expression] = STATE(2747), - [sym_lambda_expression] = STATE(3362), - [sym__lambda_expression_init] = STATE(7452), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3362), - [sym_anonymous_method_expression] = STATE(3362), - [sym_anonymous_object_creation_expression] = STATE(3362), - [sym_implicit_array_creation_expression] = STATE(3362), - [sym_implicit_object_creation_expression] = STATE(3362), - [sym_implicit_stackalloc_expression] = STATE(3362), - [sym_initializer_expression] = STATE(3362), - [sym_default_expression] = STATE(3362), - [sym_with_expression] = STATE(3362), - [sym_sizeof_expression] = STATE(3362), - [sym_typeof_expression] = STATE(3362), - [sym_makeref_expression] = STATE(3362), - [sym_ref_expression] = STATE(3362), - [sym_reftype_expression] = STATE(3362), - [sym_refvalue_expression] = STATE(3362), - [sym_stackalloc_expression] = STATE(3362), - [sym_range_expression] = STATE(3362), - [sym_tuple_expression] = STATE(2747), - [sym_literal] = STATE(3362), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3362), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2416), + [sym__name] = STATE(5868), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2387), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(5176), + [sym_non_lvalue_expression] = STATE(3040), + [sym_lvalue_expression] = STATE(3634), + [sym__expression_statement_expression] = STATE(3035), + [sym_assignment_expression] = STATE(3043), + [sym_binary_expression] = STATE(3035), + [sym_postfix_unary_expression] = STATE(3043), + [sym_prefix_unary_expression] = STATE(3043), + [sym__pointer_indirection_expression] = STATE(2415), + [sym_query_expression] = STATE(3035), + [sym_from_clause] = STATE(6130), + [sym_conditional_expression] = STATE(3035), + [sym_conditional_access_expression] = STATE(3035), + [sym_as_expression] = STATE(3035), + [sym_is_expression] = STATE(3035), + [sym_is_pattern_expression] = STATE(3035), + [sym_cast_expression] = STATE(3035), + [sym_checked_expression] = STATE(3035), + [sym_invocation_expression] = STATE(3043), + [sym_switch_expression] = STATE(3035), + [sym_await_expression] = STATE(3043), + [sym_throw_expression] = STATE(3035), + [sym_element_access_expression] = STATE(2415), + [sym_interpolated_string_expression] = STATE(3035), + [sym_member_access_expression] = STATE(2415), + [sym_object_creation_expression] = STATE(3043), + [sym_parenthesized_expression] = STATE(3043), + [sym__parenthesized_lvalue_expression] = STATE(2415), + [sym_lambda_expression] = STATE(3035), + [sym__lambda_expression_init] = STATE(7324), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3035), + [sym_anonymous_method_expression] = STATE(3035), + [sym_anonymous_object_creation_expression] = STATE(3035), + [sym_implicit_array_creation_expression] = STATE(3035), + [sym_implicit_object_creation_expression] = STATE(3035), + [sym_implicit_stackalloc_expression] = STATE(3035), + [sym_initializer_expression] = STATE(3035), + [sym_default_expression] = STATE(3035), + [sym_with_expression] = STATE(3035), + [sym_sizeof_expression] = STATE(3035), + [sym_typeof_expression] = STATE(3035), + [sym_makeref_expression] = STATE(3035), + [sym_ref_expression] = STATE(3035), + [sym_reftype_expression] = STATE(3035), + [sym_refvalue_expression] = STATE(3035), + [sym_stackalloc_expression] = STATE(3035), + [sym_range_expression] = STATE(3035), + [sym_tuple_expression] = STATE(2415), + [sym_literal] = STATE(3035), + [sym_character_literal] = STATE(3037), + [sym_string_literal] = STATE(3037), + [sym_raw_string_literal] = STATE(3037), + [sym_boolean_literal] = STATE(3037), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3035), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(1287), [sym_preproc_endregion] = STATE(1287), [sym_preproc_line] = STATE(1287), @@ -259362,47 +259248,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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3385), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3455), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1307), - [anon_sym_LPAREN] = ACTIONS(1309), - [anon_sym_ref] = ACTIONS(1311), - [anon_sym_LBRACE] = ACTIONS(1313), - [anon_sym_delegate] = ACTIONS(1315), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1239), + [anon_sym_LPAREN] = ACTIONS(2281), + [anon_sym_ref] = ACTIONS(2283), + [anon_sym_LBRACE] = ACTIONS(1245), + [anon_sym_delegate] = ACTIONS(1247), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1317), + [anon_sym_new] = ACTIONS(2285), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1319), - [anon_sym_BANG] = ACTIONS(1069), - [anon_sym_TILDE] = ACTIONS(1069), - [anon_sym_PLUS_PLUS] = ACTIONS(1069), - [anon_sym_DASH_DASH] = ACTIONS(1069), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1071), - [anon_sym_DASH] = ACTIONS(1071), - [anon_sym_STAR] = ACTIONS(1321), - [anon_sym_CARET] = ACTIONS(1069), - [anon_sym_AMP] = ACTIONS(1069), - [anon_sym_this] = ACTIONS(1323), + [anon_sym_checked] = ACTIONS(1251), + [anon_sym_BANG] = ACTIONS(2289), + [anon_sym_TILDE] = ACTIONS(2289), + [anon_sym_PLUS_PLUS] = ACTIONS(2289), + [anon_sym_DASH_DASH] = ACTIONS(2289), + [anon_sym_true] = ACTIONS(1257), + [anon_sym_false] = ACTIONS(1257), + [anon_sym_PLUS] = ACTIONS(2287), + [anon_sym_DASH] = ACTIONS(2287), + [anon_sym_STAR] = ACTIONS(2291), + [anon_sym_CARET] = ACTIONS(2289), + [anon_sym_AMP] = ACTIONS(2289), + [anon_sym_this] = ACTIONS(1261), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1325), + [anon_sym_base] = ACTIONS(1263), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1319), + [sym_predefined_type] = ACTIONS(1265), + [anon_sym_unchecked] = ACTIONS(1251), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1327), + [anon_sym_default] = ACTIONS(1267), + [anon_sym_throw] = ACTIONS(2293), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1329), - [anon_sym_DOT_DOT] = ACTIONS(1331), + [anon_sym_await] = ACTIONS(2295), + [anon_sym_DOT_DOT] = ACTIONS(2297), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -259415,19 +259301,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1333), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(1335), - [anon_sym___reftype] = ACTIONS(1337), - [anon_sym___refvalue] = ACTIONS(1339), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1341), + [anon_sym_stackalloc] = ACTIONS(1275), + [anon_sym_sizeof] = ACTIONS(1277), + [anon_sym_typeof] = ACTIONS(1279), + [anon_sym___makeref] = ACTIONS(1281), + [anon_sym___reftype] = ACTIONS(1283), + [anon_sym___refvalue] = ACTIONS(1285), + [sym_null_literal] = ACTIONS(1287), + [anon_sym_SQUOTE] = ACTIONS(1289), + [sym_integer_literal] = ACTIONS(1287), + [sym_real_literal] = ACTIONS(1291), + [anon_sym_DQUOTE] = ACTIONS(1293), + [sym_verbatim_string_literal] = ACTIONS(1291), + [aux_sym_preproc_if_token1] = ACTIONS(1295), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -259438,90 +259324,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(151), - [sym_interpolation_verbatim_start] = ACTIONS(153), - [sym_interpolation_raw_start] = ACTIONS(155), - [sym_raw_string_start] = ACTIONS(157), + [sym_interpolation_regular_start] = ACTIONS(1297), + [sym_interpolation_verbatim_start] = ACTIONS(1299), + [sym_interpolation_raw_start] = ACTIONS(1301), + [sym_raw_string_start] = ACTIONS(1303), }, [1288] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2762), - [sym__name] = STATE(5910), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2247), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(3194), - [sym_non_lvalue_expression] = STATE(3438), - [sym_lvalue_expression] = STATE(3136), - [sym__expression_statement_expression] = STATE(3362), - [sym_assignment_expression] = STATE(3449), - [sym_binary_expression] = STATE(3362), - [sym_postfix_unary_expression] = STATE(3449), - [sym_prefix_unary_expression] = STATE(3449), - [sym__pointer_indirection_expression] = STATE(2747), - [sym_query_expression] = STATE(3362), - [sym_from_clause] = STATE(6171), - [sym_conditional_expression] = STATE(3362), - [sym_conditional_access_expression] = STATE(3362), - [sym_as_expression] = STATE(3362), - [sym_is_expression] = STATE(3362), - [sym_is_pattern_expression] = STATE(3362), - [sym_cast_expression] = STATE(3362), - [sym_checked_expression] = STATE(3362), - [sym_invocation_expression] = STATE(3449), - [sym_switch_expression] = STATE(3362), - [sym_await_expression] = STATE(3449), - [sym_throw_expression] = STATE(3362), - [sym_element_access_expression] = STATE(2747), - [sym_interpolated_string_expression] = STATE(3362), - [sym_member_access_expression] = STATE(2747), - [sym_object_creation_expression] = STATE(3449), - [sym_parenthesized_expression] = STATE(3449), - [sym__parenthesized_lvalue_expression] = STATE(2747), - [sym_lambda_expression] = STATE(3362), - [sym__lambda_expression_init] = STATE(7452), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3362), - [sym_anonymous_method_expression] = STATE(3362), - [sym_anonymous_object_creation_expression] = STATE(3362), - [sym_implicit_array_creation_expression] = STATE(3362), - [sym_implicit_object_creation_expression] = STATE(3362), - [sym_implicit_stackalloc_expression] = STATE(3362), - [sym_initializer_expression] = STATE(3362), - [sym_default_expression] = STATE(3362), - [sym_with_expression] = STATE(3362), - [sym_sizeof_expression] = STATE(3362), - [sym_typeof_expression] = STATE(3362), - [sym_makeref_expression] = STATE(3362), - [sym_ref_expression] = STATE(3362), - [sym_reftype_expression] = STATE(3362), - [sym_refvalue_expression] = STATE(3362), - [sym_stackalloc_expression] = STATE(3362), - [sym_range_expression] = STATE(3362), - [sym_tuple_expression] = STATE(2747), - [sym_literal] = STATE(3362), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3362), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2416), + [sym__name] = STATE(5868), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2387), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(5177), + [sym_non_lvalue_expression] = STATE(3040), + [sym_lvalue_expression] = STATE(3634), + [sym__expression_statement_expression] = STATE(3035), + [sym_assignment_expression] = STATE(3043), + [sym_binary_expression] = STATE(3035), + [sym_postfix_unary_expression] = STATE(3043), + [sym_prefix_unary_expression] = STATE(3043), + [sym__pointer_indirection_expression] = STATE(2415), + [sym_query_expression] = STATE(3035), + [sym_from_clause] = STATE(6130), + [sym_conditional_expression] = STATE(3035), + [sym_conditional_access_expression] = STATE(3035), + [sym_as_expression] = STATE(3035), + [sym_is_expression] = STATE(3035), + [sym_is_pattern_expression] = STATE(3035), + [sym_cast_expression] = STATE(3035), + [sym_checked_expression] = STATE(3035), + [sym_invocation_expression] = STATE(3043), + [sym_switch_expression] = STATE(3035), + [sym_await_expression] = STATE(3043), + [sym_throw_expression] = STATE(3035), + [sym_element_access_expression] = STATE(2415), + [sym_interpolated_string_expression] = STATE(3035), + [sym_member_access_expression] = STATE(2415), + [sym_object_creation_expression] = STATE(3043), + [sym_parenthesized_expression] = STATE(3043), + [sym__parenthesized_lvalue_expression] = STATE(2415), + [sym_lambda_expression] = STATE(3035), + [sym__lambda_expression_init] = STATE(7324), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3035), + [sym_anonymous_method_expression] = STATE(3035), + [sym_anonymous_object_creation_expression] = STATE(3035), + [sym_implicit_array_creation_expression] = STATE(3035), + [sym_implicit_object_creation_expression] = STATE(3035), + [sym_implicit_stackalloc_expression] = STATE(3035), + [sym_initializer_expression] = STATE(3035), + [sym_default_expression] = STATE(3035), + [sym_with_expression] = STATE(3035), + [sym_sizeof_expression] = STATE(3035), + [sym_typeof_expression] = STATE(3035), + [sym_makeref_expression] = STATE(3035), + [sym_ref_expression] = STATE(3035), + [sym_reftype_expression] = STATE(3035), + [sym_refvalue_expression] = STATE(3035), + [sym_stackalloc_expression] = STATE(3035), + [sym_range_expression] = STATE(3035), + [sym_tuple_expression] = STATE(2415), + [sym_literal] = STATE(3035), + [sym_character_literal] = STATE(3037), + [sym_string_literal] = STATE(3037), + [sym_raw_string_literal] = STATE(3037), + [sym_boolean_literal] = STATE(3037), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3035), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(1288), [sym_preproc_endregion] = STATE(1288), [sym_preproc_line] = STATE(1288), @@ -259531,47 +259417,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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3385), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3455), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1307), - [anon_sym_LPAREN] = ACTIONS(1309), - [anon_sym_ref] = ACTIONS(1311), - [anon_sym_LBRACE] = ACTIONS(1313), - [anon_sym_delegate] = ACTIONS(1315), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1239), + [anon_sym_LPAREN] = ACTIONS(2281), + [anon_sym_ref] = ACTIONS(2283), + [anon_sym_LBRACE] = ACTIONS(1245), + [anon_sym_delegate] = ACTIONS(1247), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1317), + [anon_sym_new] = ACTIONS(2285), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1319), - [anon_sym_BANG] = ACTIONS(1069), - [anon_sym_TILDE] = ACTIONS(1069), - [anon_sym_PLUS_PLUS] = ACTIONS(1069), - [anon_sym_DASH_DASH] = ACTIONS(1069), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1071), - [anon_sym_DASH] = ACTIONS(1071), - [anon_sym_STAR] = ACTIONS(1321), - [anon_sym_CARET] = ACTIONS(1069), - [anon_sym_AMP] = ACTIONS(1069), - [anon_sym_this] = ACTIONS(1323), + [anon_sym_checked] = ACTIONS(1251), + [anon_sym_BANG] = ACTIONS(2289), + [anon_sym_TILDE] = ACTIONS(2289), + [anon_sym_PLUS_PLUS] = ACTIONS(2289), + [anon_sym_DASH_DASH] = ACTIONS(2289), + [anon_sym_true] = ACTIONS(1257), + [anon_sym_false] = ACTIONS(1257), + [anon_sym_PLUS] = ACTIONS(2287), + [anon_sym_DASH] = ACTIONS(2287), + [anon_sym_STAR] = ACTIONS(2291), + [anon_sym_CARET] = ACTIONS(2289), + [anon_sym_AMP] = ACTIONS(2289), + [anon_sym_this] = ACTIONS(1261), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1325), + [anon_sym_base] = ACTIONS(1263), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1319), + [sym_predefined_type] = ACTIONS(1265), + [anon_sym_unchecked] = ACTIONS(1251), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1327), + [anon_sym_default] = ACTIONS(1267), + [anon_sym_throw] = ACTIONS(2293), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1329), - [anon_sym_DOT_DOT] = ACTIONS(1331), + [anon_sym_await] = ACTIONS(2295), + [anon_sym_DOT_DOT] = ACTIONS(2297), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -259584,19 +259470,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1333), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(1335), - [anon_sym___reftype] = ACTIONS(1337), - [anon_sym___refvalue] = ACTIONS(1339), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1341), + [anon_sym_stackalloc] = ACTIONS(1275), + [anon_sym_sizeof] = ACTIONS(1277), + [anon_sym_typeof] = ACTIONS(1279), + [anon_sym___makeref] = ACTIONS(1281), + [anon_sym___reftype] = ACTIONS(1283), + [anon_sym___refvalue] = ACTIONS(1285), + [sym_null_literal] = ACTIONS(1287), + [anon_sym_SQUOTE] = ACTIONS(1289), + [sym_integer_literal] = ACTIONS(1287), + [sym_real_literal] = ACTIONS(1291), + [anon_sym_DQUOTE] = ACTIONS(1293), + [sym_verbatim_string_literal] = ACTIONS(1291), + [aux_sym_preproc_if_token1] = ACTIONS(1295), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -259607,90 +259493,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(151), - [sym_interpolation_verbatim_start] = ACTIONS(153), - [sym_interpolation_raw_start] = ACTIONS(155), - [sym_raw_string_start] = ACTIONS(157), + [sym_interpolation_regular_start] = ACTIONS(1297), + [sym_interpolation_verbatim_start] = ACTIONS(1299), + [sym_interpolation_raw_start] = ACTIONS(1301), + [sym_raw_string_start] = ACTIONS(1303), }, [1289] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2762), - [sym__name] = STATE(5910), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2247), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(5677), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(2774), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3080), - [sym_postfix_unary_expression] = STATE(3111), - [sym_prefix_unary_expression] = STATE(3111), - [sym__pointer_indirection_expression] = STATE(2747), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6154), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3080), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3111), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2747), - [sym_interpolated_string_expression] = STATE(3080), - [sym_member_access_expression] = STATE(2747), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3111), - [sym__parenthesized_lvalue_expression] = STATE(2747), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7530), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(3080), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3080), - [sym_typeof_expression] = STATE(3080), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2747), - [sym_literal] = STATE(3080), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2416), + [sym__name] = STATE(5868), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2387), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(5178), + [sym_non_lvalue_expression] = STATE(3040), + [sym_lvalue_expression] = STATE(3634), + [sym__expression_statement_expression] = STATE(3035), + [sym_assignment_expression] = STATE(3043), + [sym_binary_expression] = STATE(3035), + [sym_postfix_unary_expression] = STATE(3043), + [sym_prefix_unary_expression] = STATE(3043), + [sym__pointer_indirection_expression] = STATE(2415), + [sym_query_expression] = STATE(3035), + [sym_from_clause] = STATE(6130), + [sym_conditional_expression] = STATE(3035), + [sym_conditional_access_expression] = STATE(3035), + [sym_as_expression] = STATE(3035), + [sym_is_expression] = STATE(3035), + [sym_is_pattern_expression] = STATE(3035), + [sym_cast_expression] = STATE(3035), + [sym_checked_expression] = STATE(3035), + [sym_invocation_expression] = STATE(3043), + [sym_switch_expression] = STATE(3035), + [sym_await_expression] = STATE(3043), + [sym_throw_expression] = STATE(3035), + [sym_element_access_expression] = STATE(2415), + [sym_interpolated_string_expression] = STATE(3035), + [sym_member_access_expression] = STATE(2415), + [sym_object_creation_expression] = STATE(3043), + [sym_parenthesized_expression] = STATE(3043), + [sym__parenthesized_lvalue_expression] = STATE(2415), + [sym_lambda_expression] = STATE(3035), + [sym__lambda_expression_init] = STATE(7324), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3035), + [sym_anonymous_method_expression] = STATE(3035), + [sym_anonymous_object_creation_expression] = STATE(3035), + [sym_implicit_array_creation_expression] = STATE(3035), + [sym_implicit_object_creation_expression] = STATE(3035), + [sym_implicit_stackalloc_expression] = STATE(3035), + [sym_initializer_expression] = STATE(3035), + [sym_default_expression] = STATE(3035), + [sym_with_expression] = STATE(3035), + [sym_sizeof_expression] = STATE(3035), + [sym_typeof_expression] = STATE(3035), + [sym_makeref_expression] = STATE(3035), + [sym_ref_expression] = STATE(3035), + [sym_reftype_expression] = STATE(3035), + [sym_refvalue_expression] = STATE(3035), + [sym_stackalloc_expression] = STATE(3035), + [sym_range_expression] = STATE(3035), + [sym_tuple_expression] = STATE(2415), + [sym_literal] = STATE(3035), + [sym_character_literal] = STATE(3037), + [sym_string_literal] = STATE(3037), + [sym_raw_string_literal] = STATE(3037), + [sym_boolean_literal] = STATE(3037), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3035), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(1289), [sym_preproc_endregion] = STATE(1289), [sym_preproc_line] = STATE(1289), @@ -259700,47 +259586,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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3455), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1307), - [anon_sym_LPAREN] = ACTIONS(2945), - [anon_sym_ref] = ACTIONS(661), - [anon_sym_LBRACE] = ACTIONS(1487), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1239), + [anon_sym_LPAREN] = ACTIONS(2281), + [anon_sym_ref] = ACTIONS(2283), + [anon_sym_LBRACE] = ACTIONS(1245), + [anon_sym_delegate] = ACTIONS(1247), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1061), + [anon_sym_new] = ACTIONS(2285), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = 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(1585), - [anon_sym_DASH] = ACTIONS(1585), - [anon_sym_STAR] = ACTIONS(1321), - [anon_sym_CARET] = ACTIONS(1587), - [anon_sym_AMP] = ACTIONS(1587), - [anon_sym_this] = ACTIONS(1323), + [anon_sym_checked] = ACTIONS(1251), + [anon_sym_BANG] = ACTIONS(2289), + [anon_sym_TILDE] = ACTIONS(2289), + [anon_sym_PLUS_PLUS] = ACTIONS(2289), + [anon_sym_DASH_DASH] = ACTIONS(2289), + [anon_sym_true] = ACTIONS(1257), + [anon_sym_false] = ACTIONS(1257), + [anon_sym_PLUS] = ACTIONS(2287), + [anon_sym_DASH] = ACTIONS(2287), + [anon_sym_STAR] = ACTIONS(2291), + [anon_sym_CARET] = ACTIONS(2289), + [anon_sym_AMP] = ACTIONS(2289), + [anon_sym_this] = ACTIONS(1261), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), + [anon_sym_base] = ACTIONS(1263), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1067), + [sym_predefined_type] = ACTIONS(1265), + [anon_sym_unchecked] = ACTIONS(1251), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1589), + [anon_sym_default] = ACTIONS(1267), + [anon_sym_throw] = ACTIONS(2293), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1591), - [anon_sym_DOT_DOT] = ACTIONS(123), + [anon_sym_await] = ACTIONS(2295), + [anon_sym_DOT_DOT] = ACTIONS(2297), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -259753,19 +259639,19 @@ static const uint16_t ts_parse_table[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(1089), + [anon_sym_stackalloc] = ACTIONS(1275), + [anon_sym_sizeof] = ACTIONS(1277), + [anon_sym_typeof] = ACTIONS(1279), + [anon_sym___makeref] = ACTIONS(1281), + [anon_sym___reftype] = ACTIONS(1283), + [anon_sym___refvalue] = ACTIONS(1285), + [sym_null_literal] = ACTIONS(1287), + [anon_sym_SQUOTE] = ACTIONS(1289), + [sym_integer_literal] = ACTIONS(1287), + [sym_real_literal] = ACTIONS(1291), + [anon_sym_DQUOTE] = ACTIONS(1293), + [sym_verbatim_string_literal] = ACTIONS(1291), + [aux_sym_preproc_if_token1] = ACTIONS(1295), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -259776,90 +259662,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(151), - [sym_interpolation_verbatim_start] = ACTIONS(153), - [sym_interpolation_raw_start] = ACTIONS(155), - [sym_raw_string_start] = ACTIONS(157), + [sym_interpolation_regular_start] = ACTIONS(1297), + [sym_interpolation_verbatim_start] = ACTIONS(1299), + [sym_interpolation_raw_start] = ACTIONS(1301), + [sym_raw_string_start] = ACTIONS(1303), }, [1290] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(5876), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2376), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(5412), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3681), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3080), - [sym_postfix_unary_expression] = STATE(3111), - [sym_prefix_unary_expression] = STATE(3111), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6170), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3080), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3111), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3080), - [sym_member_access_expression] = STATE(2484), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3111), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7511), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(3080), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3080), - [sym_typeof_expression] = STATE(3080), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2484), - [sym_literal] = STATE(3080), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2416), + [sym__name] = STATE(5868), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2387), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(5179), + [sym_non_lvalue_expression] = STATE(3040), + [sym_lvalue_expression] = STATE(3634), + [sym__expression_statement_expression] = STATE(3035), + [sym_assignment_expression] = STATE(3043), + [sym_binary_expression] = STATE(3035), + [sym_postfix_unary_expression] = STATE(3043), + [sym_prefix_unary_expression] = STATE(3043), + [sym__pointer_indirection_expression] = STATE(2415), + [sym_query_expression] = STATE(3035), + [sym_from_clause] = STATE(6130), + [sym_conditional_expression] = STATE(3035), + [sym_conditional_access_expression] = STATE(3035), + [sym_as_expression] = STATE(3035), + [sym_is_expression] = STATE(3035), + [sym_is_pattern_expression] = STATE(3035), + [sym_cast_expression] = STATE(3035), + [sym_checked_expression] = STATE(3035), + [sym_invocation_expression] = STATE(3043), + [sym_switch_expression] = STATE(3035), + [sym_await_expression] = STATE(3043), + [sym_throw_expression] = STATE(3035), + [sym_element_access_expression] = STATE(2415), + [sym_interpolated_string_expression] = STATE(3035), + [sym_member_access_expression] = STATE(2415), + [sym_object_creation_expression] = STATE(3043), + [sym_parenthesized_expression] = STATE(3043), + [sym__parenthesized_lvalue_expression] = STATE(2415), + [sym_lambda_expression] = STATE(3035), + [sym__lambda_expression_init] = STATE(7324), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3035), + [sym_anonymous_method_expression] = STATE(3035), + [sym_anonymous_object_creation_expression] = STATE(3035), + [sym_implicit_array_creation_expression] = STATE(3035), + [sym_implicit_object_creation_expression] = STATE(3035), + [sym_implicit_stackalloc_expression] = STATE(3035), + [sym_initializer_expression] = STATE(3035), + [sym_default_expression] = STATE(3035), + [sym_with_expression] = STATE(3035), + [sym_sizeof_expression] = STATE(3035), + [sym_typeof_expression] = STATE(3035), + [sym_makeref_expression] = STATE(3035), + [sym_ref_expression] = STATE(3035), + [sym_reftype_expression] = STATE(3035), + [sym_refvalue_expression] = STATE(3035), + [sym_stackalloc_expression] = STATE(3035), + [sym_range_expression] = STATE(3035), + [sym_tuple_expression] = STATE(2415), + [sym_literal] = STATE(3035), + [sym_character_literal] = STATE(3037), + [sym_string_literal] = STATE(3037), + [sym_raw_string_literal] = STATE(3037), + [sym_boolean_literal] = STATE(3037), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3035), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(1290), [sym_preproc_endregion] = STATE(1290), [sym_preproc_line] = STATE(1290), @@ -259869,47 +259755,47 @@ 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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3455), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1481), - [anon_sym_LPAREN] = ACTIONS(2231), - [anon_sym_ref] = ACTIONS(2233), - [anon_sym_LBRACE] = ACTIONS(1487), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1239), + [anon_sym_LPAREN] = ACTIONS(2281), + [anon_sym_ref] = ACTIONS(2283), + [anon_sym_LBRACE] = ACTIONS(1245), + [anon_sym_delegate] = ACTIONS(1247), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(2235), + [anon_sym_new] = ACTIONS(2285), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1067), - [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_checked] = ACTIONS(1251), + [anon_sym_BANG] = ACTIONS(2289), + [anon_sym_TILDE] = ACTIONS(2289), + [anon_sym_PLUS_PLUS] = ACTIONS(2289), + [anon_sym_DASH_DASH] = ACTIONS(2289), + [anon_sym_true] = ACTIONS(1257), + [anon_sym_false] = ACTIONS(1257), + [anon_sym_PLUS] = ACTIONS(2287), + [anon_sym_DASH] = ACTIONS(2287), + [anon_sym_STAR] = ACTIONS(2291), + [anon_sym_CARET] = ACTIONS(2289), + [anon_sym_AMP] = ACTIONS(2289), + [anon_sym_this] = ACTIONS(1261), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), + [anon_sym_base] = ACTIONS(1263), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1067), + [sym_predefined_type] = ACTIONS(1265), + [anon_sym_unchecked] = ACTIONS(1251), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(2243), + [anon_sym_default] = ACTIONS(1267), + [anon_sym_throw] = ACTIONS(2293), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2245), - [anon_sym_DOT_DOT] = ACTIONS(2247), + [anon_sym_await] = ACTIONS(2295), + [anon_sym_DOT_DOT] = ACTIONS(2297), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -259922,19 +259808,19 @@ static const uint16_t ts_parse_table[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(1089), + [anon_sym_stackalloc] = ACTIONS(1275), + [anon_sym_sizeof] = ACTIONS(1277), + [anon_sym_typeof] = ACTIONS(1279), + [anon_sym___makeref] = ACTIONS(1281), + [anon_sym___reftype] = ACTIONS(1283), + [anon_sym___refvalue] = ACTIONS(1285), + [sym_null_literal] = ACTIONS(1287), + [anon_sym_SQUOTE] = ACTIONS(1289), + [sym_integer_literal] = ACTIONS(1287), + [sym_real_literal] = ACTIONS(1291), + [anon_sym_DQUOTE] = ACTIONS(1293), + [sym_verbatim_string_literal] = ACTIONS(1291), + [aux_sym_preproc_if_token1] = ACTIONS(1295), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -259945,90 +259831,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(151), - [sym_interpolation_verbatim_start] = ACTIONS(153), - [sym_interpolation_raw_start] = ACTIONS(155), - [sym_raw_string_start] = ACTIONS(157), + [sym_interpolation_regular_start] = ACTIONS(1297), + [sym_interpolation_verbatim_start] = ACTIONS(1299), + [sym_interpolation_raw_start] = ACTIONS(1301), + [sym_raw_string_start] = ACTIONS(1303), }, [1291] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(5876), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2376), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(3521), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3681), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3080), - [sym_postfix_unary_expression] = STATE(3111), - [sym_prefix_unary_expression] = STATE(3111), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6170), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3080), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3111), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3080), - [sym_member_access_expression] = STATE(2484), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3111), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7511), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(3080), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3080), - [sym_typeof_expression] = STATE(3080), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2484), - [sym_literal] = STATE(3080), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2416), + [sym__name] = STATE(5868), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2387), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(5180), + [sym_non_lvalue_expression] = STATE(3040), + [sym_lvalue_expression] = STATE(3634), + [sym__expression_statement_expression] = STATE(3035), + [sym_assignment_expression] = STATE(3043), + [sym_binary_expression] = STATE(3035), + [sym_postfix_unary_expression] = STATE(3043), + [sym_prefix_unary_expression] = STATE(3043), + [sym__pointer_indirection_expression] = STATE(2415), + [sym_query_expression] = STATE(3035), + [sym_from_clause] = STATE(6130), + [sym_conditional_expression] = STATE(3035), + [sym_conditional_access_expression] = STATE(3035), + [sym_as_expression] = STATE(3035), + [sym_is_expression] = STATE(3035), + [sym_is_pattern_expression] = STATE(3035), + [sym_cast_expression] = STATE(3035), + [sym_checked_expression] = STATE(3035), + [sym_invocation_expression] = STATE(3043), + [sym_switch_expression] = STATE(3035), + [sym_await_expression] = STATE(3043), + [sym_throw_expression] = STATE(3035), + [sym_element_access_expression] = STATE(2415), + [sym_interpolated_string_expression] = STATE(3035), + [sym_member_access_expression] = STATE(2415), + [sym_object_creation_expression] = STATE(3043), + [sym_parenthesized_expression] = STATE(3043), + [sym__parenthesized_lvalue_expression] = STATE(2415), + [sym_lambda_expression] = STATE(3035), + [sym__lambda_expression_init] = STATE(7324), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3035), + [sym_anonymous_method_expression] = STATE(3035), + [sym_anonymous_object_creation_expression] = STATE(3035), + [sym_implicit_array_creation_expression] = STATE(3035), + [sym_implicit_object_creation_expression] = STATE(3035), + [sym_implicit_stackalloc_expression] = STATE(3035), + [sym_initializer_expression] = STATE(3035), + [sym_default_expression] = STATE(3035), + [sym_with_expression] = STATE(3035), + [sym_sizeof_expression] = STATE(3035), + [sym_typeof_expression] = STATE(3035), + [sym_makeref_expression] = STATE(3035), + [sym_ref_expression] = STATE(3035), + [sym_reftype_expression] = STATE(3035), + [sym_refvalue_expression] = STATE(3035), + [sym_stackalloc_expression] = STATE(3035), + [sym_range_expression] = STATE(3035), + [sym_tuple_expression] = STATE(2415), + [sym_literal] = STATE(3035), + [sym_character_literal] = STATE(3037), + [sym_string_literal] = STATE(3037), + [sym_raw_string_literal] = STATE(3037), + [sym_boolean_literal] = STATE(3037), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3035), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(1291), [sym_preproc_endregion] = STATE(1291), [sym_preproc_line] = STATE(1291), @@ -260038,47 +259924,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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3455), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1481), - [anon_sym_LPAREN] = ACTIONS(2231), - [anon_sym_ref] = ACTIONS(2233), - [anon_sym_LBRACE] = ACTIONS(1487), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1239), + [anon_sym_LPAREN] = ACTIONS(2281), + [anon_sym_ref] = ACTIONS(2283), + [anon_sym_LBRACE] = ACTIONS(1245), + [anon_sym_delegate] = ACTIONS(1247), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(2235), + [anon_sym_new] = ACTIONS(2285), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1067), - [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_checked] = ACTIONS(1251), + [anon_sym_BANG] = ACTIONS(2289), + [anon_sym_TILDE] = ACTIONS(2289), + [anon_sym_PLUS_PLUS] = ACTIONS(2289), + [anon_sym_DASH_DASH] = ACTIONS(2289), + [anon_sym_true] = ACTIONS(1257), + [anon_sym_false] = ACTIONS(1257), + [anon_sym_PLUS] = ACTIONS(2287), + [anon_sym_DASH] = ACTIONS(2287), + [anon_sym_STAR] = ACTIONS(2291), + [anon_sym_CARET] = ACTIONS(2289), + [anon_sym_AMP] = ACTIONS(2289), + [anon_sym_this] = ACTIONS(1261), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), + [anon_sym_base] = ACTIONS(1263), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1067), + [sym_predefined_type] = ACTIONS(1265), + [anon_sym_unchecked] = ACTIONS(1251), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(2243), + [anon_sym_default] = ACTIONS(1267), + [anon_sym_throw] = ACTIONS(2293), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2245), - [anon_sym_DOT_DOT] = ACTIONS(2247), + [anon_sym_await] = ACTIONS(2295), + [anon_sym_DOT_DOT] = ACTIONS(2297), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -260091,19 +259977,19 @@ static const uint16_t ts_parse_table[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(1089), + [anon_sym_stackalloc] = ACTIONS(1275), + [anon_sym_sizeof] = ACTIONS(1277), + [anon_sym_typeof] = ACTIONS(1279), + [anon_sym___makeref] = ACTIONS(1281), + [anon_sym___reftype] = ACTIONS(1283), + [anon_sym___refvalue] = ACTIONS(1285), + [sym_null_literal] = ACTIONS(1287), + [anon_sym_SQUOTE] = ACTIONS(1289), + [sym_integer_literal] = ACTIONS(1287), + [sym_real_literal] = ACTIONS(1291), + [anon_sym_DQUOTE] = ACTIONS(1293), + [sym_verbatim_string_literal] = ACTIONS(1291), + [aux_sym_preproc_if_token1] = ACTIONS(1295), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -260114,90 +260000,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(151), - [sym_interpolation_verbatim_start] = ACTIONS(153), - [sym_interpolation_raw_start] = ACTIONS(155), - [sym_raw_string_start] = ACTIONS(157), + [sym_interpolation_regular_start] = ACTIONS(1297), + [sym_interpolation_verbatim_start] = ACTIONS(1299), + [sym_interpolation_raw_start] = ACTIONS(1301), + [sym_raw_string_start] = ACTIONS(1303), }, [1292] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2914), - [sym__name] = STATE(5885), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2357), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(3605), - [sym_non_lvalue_expression] = STATE(3880), - [sym_lvalue_expression] = STATE(2911), - [sym__expression_statement_expression] = STATE(3873), - [sym_assignment_expression] = STATE(3881), - [sym_binary_expression] = STATE(3873), - [sym_postfix_unary_expression] = STATE(3881), - [sym_prefix_unary_expression] = STATE(3881), - [sym__pointer_indirection_expression] = STATE(2913), - [sym_query_expression] = STATE(3873), - [sym_from_clause] = STATE(6182), - [sym_conditional_expression] = STATE(3873), - [sym_conditional_access_expression] = STATE(3873), - [sym_as_expression] = STATE(3873), - [sym_is_expression] = STATE(3873), - [sym_is_pattern_expression] = STATE(3873), - [sym_cast_expression] = STATE(3873), - [sym_checked_expression] = STATE(3873), - [sym_invocation_expression] = STATE(3881), - [sym_switch_expression] = STATE(3873), - [sym_await_expression] = STATE(3881), - [sym_throw_expression] = STATE(3873), - [sym_element_access_expression] = STATE(2913), - [sym_interpolated_string_expression] = STATE(3873), - [sym_member_access_expression] = STATE(2913), - [sym_object_creation_expression] = STATE(3881), - [sym_parenthesized_expression] = STATE(3881), - [sym__parenthesized_lvalue_expression] = STATE(2913), - [sym_lambda_expression] = STATE(3873), - [sym__lambda_expression_init] = STATE(7316), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3873), - [sym_anonymous_method_expression] = STATE(3873), - [sym_anonymous_object_creation_expression] = STATE(3873), - [sym_implicit_array_creation_expression] = STATE(3873), - [sym_implicit_object_creation_expression] = STATE(3873), - [sym_implicit_stackalloc_expression] = STATE(3873), - [sym_initializer_expression] = STATE(3873), - [sym_default_expression] = STATE(3873), - [sym_with_expression] = STATE(3873), - [sym_sizeof_expression] = STATE(3873), - [sym_typeof_expression] = STATE(3873), - [sym_makeref_expression] = STATE(3873), - [sym_ref_expression] = STATE(3873), - [sym_reftype_expression] = STATE(3873), - [sym_refvalue_expression] = STATE(3873), - [sym_stackalloc_expression] = STATE(3873), - [sym_range_expression] = STATE(3873), - [sym_tuple_expression] = STATE(2913), - [sym_literal] = STATE(3873), - [sym_character_literal] = STATE(3877), - [sym_string_literal] = STATE(3877), - [sym_raw_string_literal] = STATE(3877), - [sym_boolean_literal] = STATE(3877), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3873), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2416), + [sym__name] = STATE(5868), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2387), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(5181), + [sym_non_lvalue_expression] = STATE(3040), + [sym_lvalue_expression] = STATE(3634), + [sym__expression_statement_expression] = STATE(3035), + [sym_assignment_expression] = STATE(3043), + [sym_binary_expression] = STATE(3035), + [sym_postfix_unary_expression] = STATE(3043), + [sym_prefix_unary_expression] = STATE(3043), + [sym__pointer_indirection_expression] = STATE(2415), + [sym_query_expression] = STATE(3035), + [sym_from_clause] = STATE(6130), + [sym_conditional_expression] = STATE(3035), + [sym_conditional_access_expression] = STATE(3035), + [sym_as_expression] = STATE(3035), + [sym_is_expression] = STATE(3035), + [sym_is_pattern_expression] = STATE(3035), + [sym_cast_expression] = STATE(3035), + [sym_checked_expression] = STATE(3035), + [sym_invocation_expression] = STATE(3043), + [sym_switch_expression] = STATE(3035), + [sym_await_expression] = STATE(3043), + [sym_throw_expression] = STATE(3035), + [sym_element_access_expression] = STATE(2415), + [sym_interpolated_string_expression] = STATE(3035), + [sym_member_access_expression] = STATE(2415), + [sym_object_creation_expression] = STATE(3043), + [sym_parenthesized_expression] = STATE(3043), + [sym__parenthesized_lvalue_expression] = STATE(2415), + [sym_lambda_expression] = STATE(3035), + [sym__lambda_expression_init] = STATE(7324), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3035), + [sym_anonymous_method_expression] = STATE(3035), + [sym_anonymous_object_creation_expression] = STATE(3035), + [sym_implicit_array_creation_expression] = STATE(3035), + [sym_implicit_object_creation_expression] = STATE(3035), + [sym_implicit_stackalloc_expression] = STATE(3035), + [sym_initializer_expression] = STATE(3035), + [sym_default_expression] = STATE(3035), + [sym_with_expression] = STATE(3035), + [sym_sizeof_expression] = STATE(3035), + [sym_typeof_expression] = STATE(3035), + [sym_makeref_expression] = STATE(3035), + [sym_ref_expression] = STATE(3035), + [sym_reftype_expression] = STATE(3035), + [sym_refvalue_expression] = STATE(3035), + [sym_stackalloc_expression] = STATE(3035), + [sym_range_expression] = STATE(3035), + [sym_tuple_expression] = STATE(2415), + [sym_literal] = STATE(3035), + [sym_character_literal] = STATE(3037), + [sym_string_literal] = STATE(3037), + [sym_raw_string_literal] = STATE(3037), + [sym_boolean_literal] = STATE(3037), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3035), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(1292), [sym_preproc_endregion] = STATE(1292), [sym_preproc_line] = STATE(1292), @@ -260207,47 +260093,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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3382), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3455), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1627), - [anon_sym_LPAREN] = ACTIONS(1727), - [anon_sym_ref] = ACTIONS(1729), - [anon_sym_LBRACE] = ACTIONS(1633), - [anon_sym_delegate] = ACTIONS(1635), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1239), + [anon_sym_LPAREN] = ACTIONS(2281), + [anon_sym_ref] = ACTIONS(2283), + [anon_sym_LBRACE] = ACTIONS(1245), + [anon_sym_delegate] = ACTIONS(1247), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1731), + [anon_sym_new] = ACTIONS(2285), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1639), - [anon_sym_BANG] = ACTIONS(1735), - [anon_sym_TILDE] = ACTIONS(1735), - [anon_sym_PLUS_PLUS] = ACTIONS(1735), - [anon_sym_DASH_DASH] = ACTIONS(1735), - [anon_sym_true] = ACTIONS(1645), - [anon_sym_false] = ACTIONS(1645), - [anon_sym_PLUS] = ACTIONS(1733), - [anon_sym_DASH] = ACTIONS(1733), - [anon_sym_STAR] = ACTIONS(1737), - [anon_sym_CARET] = ACTIONS(1735), - [anon_sym_AMP] = ACTIONS(1735), - [anon_sym_this] = ACTIONS(1649), + [anon_sym_checked] = ACTIONS(1251), + [anon_sym_BANG] = ACTIONS(2289), + [anon_sym_TILDE] = ACTIONS(2289), + [anon_sym_PLUS_PLUS] = ACTIONS(2289), + [anon_sym_DASH_DASH] = ACTIONS(2289), + [anon_sym_true] = ACTIONS(1257), + [anon_sym_false] = ACTIONS(1257), + [anon_sym_PLUS] = ACTIONS(2287), + [anon_sym_DASH] = ACTIONS(2287), + [anon_sym_STAR] = ACTIONS(2291), + [anon_sym_CARET] = ACTIONS(2289), + [anon_sym_AMP] = ACTIONS(2289), + [anon_sym_this] = ACTIONS(1261), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1651), + [anon_sym_base] = ACTIONS(1263), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1653), - [anon_sym_unchecked] = ACTIONS(1639), + [sym_predefined_type] = ACTIONS(1265), + [anon_sym_unchecked] = ACTIONS(1251), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1655), - [anon_sym_throw] = ACTIONS(1739), + [anon_sym_default] = ACTIONS(1267), + [anon_sym_throw] = ACTIONS(2293), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1741), - [anon_sym_DOT_DOT] = ACTIONS(1743), + [anon_sym_await] = ACTIONS(2295), + [anon_sym_DOT_DOT] = ACTIONS(2297), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -260260,19 +260146,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1663), - [anon_sym_sizeof] = ACTIONS(1665), - [anon_sym_typeof] = ACTIONS(1667), - [anon_sym___makeref] = ACTIONS(1669), - [anon_sym___reftype] = ACTIONS(1671), - [anon_sym___refvalue] = ACTIONS(1673), - [sym_null_literal] = ACTIONS(1675), - [anon_sym_SQUOTE] = ACTIONS(1677), - [sym_integer_literal] = ACTIONS(1675), - [sym_real_literal] = ACTIONS(1679), - [anon_sym_DQUOTE] = ACTIONS(1681), - [sym_verbatim_string_literal] = ACTIONS(1679), - [aux_sym_preproc_if_token1] = ACTIONS(1683), + [anon_sym_stackalloc] = ACTIONS(1275), + [anon_sym_sizeof] = ACTIONS(1277), + [anon_sym_typeof] = ACTIONS(1279), + [anon_sym___makeref] = ACTIONS(1281), + [anon_sym___reftype] = ACTIONS(1283), + [anon_sym___refvalue] = ACTIONS(1285), + [sym_null_literal] = ACTIONS(1287), + [anon_sym_SQUOTE] = ACTIONS(1289), + [sym_integer_literal] = ACTIONS(1287), + [sym_real_literal] = ACTIONS(1291), + [anon_sym_DQUOTE] = ACTIONS(1293), + [sym_verbatim_string_literal] = ACTIONS(1291), + [aux_sym_preproc_if_token1] = ACTIONS(1295), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -260283,90 +260169,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1685), - [sym_interpolation_verbatim_start] = ACTIONS(1687), - [sym_interpolation_raw_start] = ACTIONS(1689), - [sym_raw_string_start] = ACTIONS(1691), + [sym_interpolation_regular_start] = ACTIONS(1297), + [sym_interpolation_verbatim_start] = ACTIONS(1299), + [sym_interpolation_raw_start] = ACTIONS(1301), + [sym_raw_string_start] = ACTIONS(1303), }, [1293] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(5876), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2376), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(5435), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3681), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3080), - [sym_postfix_unary_expression] = STATE(3111), - [sym_prefix_unary_expression] = STATE(3111), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6170), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3080), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3111), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3080), - [sym_member_access_expression] = STATE(2484), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3111), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7511), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(3080), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3080), - [sym_typeof_expression] = STATE(3080), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2484), - [sym_literal] = STATE(3080), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2416), + [sym__name] = STATE(5868), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2387), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(2904), + [sym_non_lvalue_expression] = STATE(3040), + [sym_lvalue_expression] = STATE(3634), + [sym__expression_statement_expression] = STATE(3035), + [sym_assignment_expression] = STATE(3043), + [sym_binary_expression] = STATE(3035), + [sym_postfix_unary_expression] = STATE(3043), + [sym_prefix_unary_expression] = STATE(3043), + [sym__pointer_indirection_expression] = STATE(2415), + [sym_query_expression] = STATE(3035), + [sym_from_clause] = STATE(6130), + [sym_conditional_expression] = STATE(3035), + [sym_conditional_access_expression] = STATE(3035), + [sym_as_expression] = STATE(3035), + [sym_is_expression] = STATE(3035), + [sym_is_pattern_expression] = STATE(3035), + [sym_cast_expression] = STATE(3035), + [sym_checked_expression] = STATE(3035), + [sym_invocation_expression] = STATE(3043), + [sym_switch_expression] = STATE(3035), + [sym_await_expression] = STATE(3043), + [sym_throw_expression] = STATE(3035), + [sym_element_access_expression] = STATE(2415), + [sym_interpolated_string_expression] = STATE(3035), + [sym_member_access_expression] = STATE(2415), + [sym_object_creation_expression] = STATE(3043), + [sym_parenthesized_expression] = STATE(3043), + [sym__parenthesized_lvalue_expression] = STATE(2415), + [sym_lambda_expression] = STATE(3035), + [sym__lambda_expression_init] = STATE(7324), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3035), + [sym_anonymous_method_expression] = STATE(3035), + [sym_anonymous_object_creation_expression] = STATE(3035), + [sym_implicit_array_creation_expression] = STATE(3035), + [sym_implicit_object_creation_expression] = STATE(3035), + [sym_implicit_stackalloc_expression] = STATE(3035), + [sym_initializer_expression] = STATE(3035), + [sym_default_expression] = STATE(3035), + [sym_with_expression] = STATE(3035), + [sym_sizeof_expression] = STATE(3035), + [sym_typeof_expression] = STATE(3035), + [sym_makeref_expression] = STATE(3035), + [sym_ref_expression] = STATE(3035), + [sym_reftype_expression] = STATE(3035), + [sym_refvalue_expression] = STATE(3035), + [sym_stackalloc_expression] = STATE(3035), + [sym_range_expression] = STATE(3035), + [sym_tuple_expression] = STATE(2415), + [sym_literal] = STATE(3035), + [sym_character_literal] = STATE(3037), + [sym_string_literal] = STATE(3037), + [sym_raw_string_literal] = STATE(3037), + [sym_boolean_literal] = STATE(3037), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3035), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(1293), [sym_preproc_endregion] = STATE(1293), [sym_preproc_line] = STATE(1293), @@ -260376,47 +260262,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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3455), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1481), - [anon_sym_LPAREN] = ACTIONS(2231), - [anon_sym_ref] = ACTIONS(2233), - [anon_sym_LBRACE] = ACTIONS(1487), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1239), + [anon_sym_LPAREN] = ACTIONS(2281), + [anon_sym_ref] = ACTIONS(2283), + [anon_sym_LBRACE] = ACTIONS(1245), + [anon_sym_delegate] = ACTIONS(1247), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(2235), + [anon_sym_new] = ACTIONS(2285), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1067), - [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_checked] = ACTIONS(1251), + [anon_sym_BANG] = ACTIONS(2289), + [anon_sym_TILDE] = ACTIONS(2289), + [anon_sym_PLUS_PLUS] = ACTIONS(2289), + [anon_sym_DASH_DASH] = ACTIONS(2289), + [anon_sym_true] = ACTIONS(1257), + [anon_sym_false] = ACTIONS(1257), + [anon_sym_PLUS] = ACTIONS(2287), + [anon_sym_DASH] = ACTIONS(2287), + [anon_sym_STAR] = ACTIONS(2291), + [anon_sym_CARET] = ACTIONS(2289), + [anon_sym_AMP] = ACTIONS(2289), + [anon_sym_this] = ACTIONS(1261), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), + [anon_sym_base] = ACTIONS(1263), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1067), + [sym_predefined_type] = ACTIONS(1265), + [anon_sym_unchecked] = ACTIONS(1251), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(2243), + [anon_sym_default] = ACTIONS(1267), + [anon_sym_throw] = ACTIONS(2293), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2245), - [anon_sym_DOT_DOT] = ACTIONS(2247), + [anon_sym_await] = ACTIONS(2295), + [anon_sym_DOT_DOT] = ACTIONS(2297), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -260429,19 +260315,19 @@ static const uint16_t ts_parse_table[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(1089), + [anon_sym_stackalloc] = ACTIONS(1275), + [anon_sym_sizeof] = ACTIONS(1277), + [anon_sym_typeof] = ACTIONS(1279), + [anon_sym___makeref] = ACTIONS(1281), + [anon_sym___reftype] = ACTIONS(1283), + [anon_sym___refvalue] = ACTIONS(1285), + [sym_null_literal] = ACTIONS(1287), + [anon_sym_SQUOTE] = ACTIONS(1289), + [sym_integer_literal] = ACTIONS(1287), + [sym_real_literal] = ACTIONS(1291), + [anon_sym_DQUOTE] = ACTIONS(1293), + [sym_verbatim_string_literal] = ACTIONS(1291), + [aux_sym_preproc_if_token1] = ACTIONS(1295), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -260452,90 +260338,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(151), - [sym_interpolation_verbatim_start] = ACTIONS(153), - [sym_interpolation_raw_start] = ACTIONS(155), - [sym_raw_string_start] = ACTIONS(157), + [sym_interpolation_regular_start] = ACTIONS(1297), + [sym_interpolation_verbatim_start] = ACTIONS(1299), + [sym_interpolation_raw_start] = ACTIONS(1301), + [sym_raw_string_start] = ACTIONS(1303), }, [1294] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2914), - [sym__name] = STATE(5885), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2357), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(3726), - [sym_non_lvalue_expression] = STATE(3880), - [sym_lvalue_expression] = STATE(2986), - [sym__expression_statement_expression] = STATE(3873), - [sym_assignment_expression] = STATE(3881), - [sym_binary_expression] = STATE(3873), - [sym_postfix_unary_expression] = STATE(3881), - [sym_prefix_unary_expression] = STATE(3881), - [sym__pointer_indirection_expression] = STATE(2913), - [sym_query_expression] = STATE(3873), - [sym_from_clause] = STATE(6168), - [sym_conditional_expression] = STATE(3873), - [sym_conditional_access_expression] = STATE(3873), - [sym_as_expression] = STATE(3873), - [sym_is_expression] = STATE(3873), - [sym_is_pattern_expression] = STATE(3873), - [sym_cast_expression] = STATE(3873), - [sym_checked_expression] = STATE(3873), - [sym_invocation_expression] = STATE(3881), - [sym_switch_expression] = STATE(3873), - [sym_await_expression] = STATE(3881), - [sym_throw_expression] = STATE(3873), - [sym_element_access_expression] = STATE(2913), - [sym_interpolated_string_expression] = STATE(3873), - [sym_member_access_expression] = STATE(2913), - [sym_object_creation_expression] = STATE(3881), - [sym_parenthesized_expression] = STATE(3881), - [sym__parenthesized_lvalue_expression] = STATE(2913), - [sym_lambda_expression] = STATE(3873), - [sym__lambda_expression_init] = STATE(7587), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3873), - [sym_anonymous_method_expression] = STATE(3873), - [sym_anonymous_object_creation_expression] = STATE(3873), - [sym_implicit_array_creation_expression] = STATE(3873), - [sym_implicit_object_creation_expression] = STATE(3873), - [sym_implicit_stackalloc_expression] = STATE(3873), - [sym_initializer_expression] = STATE(3873), - [sym_default_expression] = STATE(3873), - [sym_with_expression] = STATE(3873), - [sym_sizeof_expression] = STATE(3873), - [sym_typeof_expression] = STATE(3873), - [sym_makeref_expression] = STATE(3873), - [sym_ref_expression] = STATE(3873), - [sym_reftype_expression] = STATE(3873), - [sym_refvalue_expression] = STATE(3873), - [sym_stackalloc_expression] = STATE(3873), - [sym_range_expression] = STATE(3873), - [sym_tuple_expression] = STATE(2913), - [sym_literal] = STATE(3873), - [sym_character_literal] = STATE(3877), - [sym_string_literal] = STATE(3877), - [sym_raw_string_literal] = STATE(3877), - [sym_boolean_literal] = STATE(3877), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3873), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(5881), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2386), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(4231), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3132), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3102), + [sym_postfix_unary_expression] = STATE(3079), + [sym_prefix_unary_expression] = STATE(3079), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6158), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3102), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3079), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3102), + [sym_member_access_expression] = STATE(2472), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3079), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7650), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(3102), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3102), + [sym_typeof_expression] = STATE(3102), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2472), + [sym_literal] = STATE(3102), + [sym_character_literal] = STATE(3037), + [sym_string_literal] = STATE(3037), + [sym_raw_string_literal] = STATE(3037), + [sym_boolean_literal] = STATE(3037), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(1294), [sym_preproc_endregion] = STATE(1294), [sym_preproc_line] = STATE(1294), @@ -260545,47 +260431,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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3382), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1627), - [anon_sym_LPAREN] = ACTIONS(2079), - [anon_sym_ref] = ACTIONS(2081), - [anon_sym_LBRACE] = ACTIONS(1633), - [anon_sym_delegate] = ACTIONS(1635), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1479), + [anon_sym_LPAREN] = ACTIONS(2185), + [anon_sym_ref] = ACTIONS(2187), + [anon_sym_LBRACE] = ACTIONS(1481), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1731), + [anon_sym_new] = ACTIONS(1899), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1639), - [anon_sym_BANG] = ACTIONS(2085), - [anon_sym_TILDE] = ACTIONS(2085), - [anon_sym_PLUS_PLUS] = ACTIONS(2085), - [anon_sym_DASH_DASH] = ACTIONS(2085), - [anon_sym_true] = ACTIONS(1645), - [anon_sym_false] = ACTIONS(1645), - [anon_sym_PLUS] = ACTIONS(2083), - [anon_sym_DASH] = ACTIONS(2083), - [anon_sym_STAR] = ACTIONS(1737), - [anon_sym_CARET] = ACTIONS(2085), - [anon_sym_AMP] = ACTIONS(2085), - [anon_sym_this] = ACTIONS(1649), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(2191), + [anon_sym_TILDE] = ACTIONS(2191), + [anon_sym_PLUS_PLUS] = ACTIONS(2191), + [anon_sym_DASH_DASH] = ACTIONS(2191), + [anon_sym_true] = ACTIONS(1257), + [anon_sym_false] = ACTIONS(1257), + [anon_sym_PLUS] = ACTIONS(2189), + [anon_sym_DASH] = ACTIONS(2189), + [anon_sym_STAR] = ACTIONS(1905), + [anon_sym_CARET] = ACTIONS(2191), + [anon_sym_AMP] = ACTIONS(2191), + [anon_sym_this] = ACTIONS(83), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1651), + [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1653), - [anon_sym_unchecked] = ACTIONS(1639), + [sym_predefined_type] = ACTIONS(1265), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1655), - [anon_sym_throw] = ACTIONS(2087), + [anon_sym_default] = ACTIONS(1267), + [anon_sym_throw] = ACTIONS(2193), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2089), - [anon_sym_DOT_DOT] = ACTIONS(2091), + [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), @@ -260598,19 +260484,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1663), - [anon_sym_sizeof] = ACTIONS(1665), - [anon_sym_typeof] = ACTIONS(1667), - [anon_sym___makeref] = ACTIONS(1669), - [anon_sym___reftype] = ACTIONS(1671), - [anon_sym___refvalue] = ACTIONS(1673), - [sym_null_literal] = ACTIONS(1675), - [anon_sym_SQUOTE] = ACTIONS(1677), - [sym_integer_literal] = ACTIONS(1675), - [sym_real_literal] = ACTIONS(1679), - [anon_sym_DQUOTE] = ACTIONS(1681), - [sym_verbatim_string_literal] = ACTIONS(1679), - [aux_sym_preproc_if_token1] = ACTIONS(1683), + [anon_sym_stackalloc] = ACTIONS(127), + [anon_sym_sizeof] = ACTIONS(1277), + [anon_sym_typeof] = ACTIONS(1279), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), + [sym_null_literal] = ACTIONS(1287), + [anon_sym_SQUOTE] = ACTIONS(1289), + [sym_integer_literal] = ACTIONS(1287), + [sym_real_literal] = ACTIONS(1291), + [anon_sym_DQUOTE] = ACTIONS(1293), + [sym_verbatim_string_literal] = ACTIONS(1291), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -260621,90 +260507,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1685), - [sym_interpolation_verbatim_start] = ACTIONS(1687), - [sym_interpolation_raw_start] = ACTIONS(1689), - [sym_raw_string_start] = ACTIONS(1691), + [sym_interpolation_regular_start] = ACTIONS(1297), + [sym_interpolation_verbatim_start] = ACTIONS(1299), + [sym_interpolation_raw_start] = ACTIONS(1301), + [sym_raw_string_start] = ACTIONS(1303), }, [1295] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(5876), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2376), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(5437), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3681), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3080), - [sym_postfix_unary_expression] = STATE(3111), - [sym_prefix_unary_expression] = STATE(3111), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6170), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3080), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3111), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3080), - [sym_member_access_expression] = STATE(2484), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3111), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7511), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(3080), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3080), - [sym_typeof_expression] = STATE(3080), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2484), - [sym_literal] = STATE(3080), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2816), + [sym__name] = STATE(5879), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2196), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(5035), + [sym_non_lvalue_expression] = STATE(3495), + [sym_lvalue_expression] = STATE(3539), + [sym__expression_statement_expression] = STATE(3462), + [sym_assignment_expression] = STATE(3497), + [sym_binary_expression] = STATE(3462), + [sym_postfix_unary_expression] = STATE(3497), + [sym_prefix_unary_expression] = STATE(3497), + [sym__pointer_indirection_expression] = STATE(2815), + [sym_query_expression] = STATE(3462), + [sym_from_clause] = STATE(6144), + [sym_conditional_expression] = STATE(3462), + [sym_conditional_access_expression] = STATE(3462), + [sym_as_expression] = STATE(3462), + [sym_is_expression] = STATE(3462), + [sym_is_pattern_expression] = STATE(3462), + [sym_cast_expression] = STATE(3462), + [sym_checked_expression] = STATE(3462), + [sym_invocation_expression] = STATE(3497), + [sym_switch_expression] = STATE(3462), + [sym_await_expression] = STATE(3497), + [sym_throw_expression] = STATE(3462), + [sym_element_access_expression] = STATE(2815), + [sym_interpolated_string_expression] = STATE(3462), + [sym_member_access_expression] = STATE(2815), + [sym_object_creation_expression] = STATE(3497), + [sym_parenthesized_expression] = STATE(3497), + [sym__parenthesized_lvalue_expression] = STATE(2815), + [sym_lambda_expression] = STATE(3462), + [sym__lambda_expression_init] = STATE(7681), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3462), + [sym_anonymous_method_expression] = STATE(3462), + [sym_anonymous_object_creation_expression] = STATE(3462), + [sym_implicit_array_creation_expression] = STATE(3462), + [sym_implicit_object_creation_expression] = STATE(3462), + [sym_implicit_stackalloc_expression] = STATE(3462), + [sym_initializer_expression] = STATE(3462), + [sym_default_expression] = STATE(3462), + [sym_with_expression] = STATE(3462), + [sym_sizeof_expression] = STATE(3462), + [sym_typeof_expression] = STATE(3462), + [sym_makeref_expression] = STATE(3462), + [sym_ref_expression] = STATE(3462), + [sym_reftype_expression] = STATE(3462), + [sym_refvalue_expression] = STATE(3462), + [sym_stackalloc_expression] = STATE(3462), + [sym_range_expression] = STATE(3462), + [sym_tuple_expression] = STATE(2815), + [sym_literal] = STATE(3462), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3462), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(1295), [sym_preproc_endregion] = STATE(1295), [sym_preproc_line] = STATE(1295), @@ -260714,47 +260600,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(3067), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), [aux_sym__lambda_expression_init_repeat1] = STATE(3367), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1481), - [anon_sym_LPAREN] = ACTIONS(2231), - [anon_sym_ref] = ACTIONS(2233), - [anon_sym_LBRACE] = ACTIONS(1487), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1305), + [anon_sym_LPAREN] = ACTIONS(1721), + [anon_sym_ref] = ACTIONS(1723), + [anon_sym_LBRACE] = ACTIONS(1311), + [anon_sym_delegate] = ACTIONS(1313), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(2235), + [anon_sym_new] = ACTIONS(1315), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1067), - [anon_sym_BANG] = ACTIONS(2239), - [anon_sym_TILDE] = ACTIONS(2239), - [anon_sym_PLUS_PLUS] = ACTIONS(2239), - [anon_sym_DASH_DASH] = ACTIONS(2239), + [anon_sym_checked] = ACTIONS(1317), + [anon_sym_BANG] = ACTIONS(1727), + [anon_sym_TILDE] = ACTIONS(1727), + [anon_sym_PLUS_PLUS] = ACTIONS(1727), + [anon_sym_DASH_DASH] = ACTIONS(1727), [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_PLUS] = ACTIONS(1725), + [anon_sym_DASH] = ACTIONS(1725), + [anon_sym_STAR] = ACTIONS(1729), + [anon_sym_CARET] = ACTIONS(1727), + [anon_sym_AMP] = ACTIONS(1727), + [anon_sym_this] = ACTIONS(1321), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), + [anon_sym_base] = ACTIONS(1323), [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1067), + [anon_sym_unchecked] = ACTIONS(1317), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(2243), + [anon_sym_throw] = ACTIONS(1731), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2245), - [anon_sym_DOT_DOT] = ACTIONS(2247), + [anon_sym_await] = ACTIONS(1733), + [anon_sym_DOT_DOT] = ACTIONS(1735), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -260767,19 +260653,19 @@ static const uint16_t ts_parse_table[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(1331), [anon_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(1333), + [anon_sym___reftype] = ACTIONS(1335), + [anon_sym___refvalue] = ACTIONS(1337), [sym_null_literal] = ACTIONS(139), [anon_sym_SQUOTE] = ACTIONS(141), [sym_integer_literal] = ACTIONS(139), [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1089), + [aux_sym_preproc_if_token1] = ACTIONS(1339), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -260796,84 +260682,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [1296] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(5876), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2376), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(5438), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3681), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3080), - [sym_postfix_unary_expression] = STATE(3111), - [sym_prefix_unary_expression] = STATE(3111), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6170), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3080), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3111), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3080), - [sym_member_access_expression] = STATE(2484), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3111), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7511), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(3080), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3080), - [sym_typeof_expression] = STATE(3080), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2484), - [sym_literal] = STATE(3080), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2816), + [sym__name] = STATE(5879), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2196), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(3195), + [sym_non_lvalue_expression] = STATE(3495), + [sym_lvalue_expression] = STATE(3539), + [sym__expression_statement_expression] = STATE(3462), + [sym_assignment_expression] = STATE(3497), + [sym_binary_expression] = STATE(3462), + [sym_postfix_unary_expression] = STATE(3497), + [sym_prefix_unary_expression] = STATE(3497), + [sym__pointer_indirection_expression] = STATE(2815), + [sym_query_expression] = STATE(3462), + [sym_from_clause] = STATE(6144), + [sym_conditional_expression] = STATE(3462), + [sym_conditional_access_expression] = STATE(3462), + [sym_as_expression] = STATE(3462), + [sym_is_expression] = STATE(3462), + [sym_is_pattern_expression] = STATE(3462), + [sym_cast_expression] = STATE(3462), + [sym_checked_expression] = STATE(3462), + [sym_invocation_expression] = STATE(3497), + [sym_switch_expression] = STATE(3462), + [sym_await_expression] = STATE(3497), + [sym_throw_expression] = STATE(3462), + [sym_element_access_expression] = STATE(2815), + [sym_interpolated_string_expression] = STATE(3462), + [sym_member_access_expression] = STATE(2815), + [sym_object_creation_expression] = STATE(3497), + [sym_parenthesized_expression] = STATE(3497), + [sym__parenthesized_lvalue_expression] = STATE(2815), + [sym_lambda_expression] = STATE(3462), + [sym__lambda_expression_init] = STATE(7681), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3462), + [sym_anonymous_method_expression] = STATE(3462), + [sym_anonymous_object_creation_expression] = STATE(3462), + [sym_implicit_array_creation_expression] = STATE(3462), + [sym_implicit_object_creation_expression] = STATE(3462), + [sym_implicit_stackalloc_expression] = STATE(3462), + [sym_initializer_expression] = STATE(3462), + [sym_default_expression] = STATE(3462), + [sym_with_expression] = STATE(3462), + [sym_sizeof_expression] = STATE(3462), + [sym_typeof_expression] = STATE(3462), + [sym_makeref_expression] = STATE(3462), + [sym_ref_expression] = STATE(3462), + [sym_reftype_expression] = STATE(3462), + [sym_refvalue_expression] = STATE(3462), + [sym_stackalloc_expression] = STATE(3462), + [sym_range_expression] = STATE(3462), + [sym_tuple_expression] = STATE(2815), + [sym_literal] = STATE(3462), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3462), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(1296), [sym_preproc_endregion] = STATE(1296), [sym_preproc_line] = STATE(1296), @@ -260883,47 +260769,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(3067), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), [aux_sym__lambda_expression_init_repeat1] = STATE(3367), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1481), - [anon_sym_LPAREN] = ACTIONS(2231), - [anon_sym_ref] = ACTIONS(2233), - [anon_sym_LBRACE] = ACTIONS(1487), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1305), + [anon_sym_LPAREN] = ACTIONS(1721), + [anon_sym_ref] = ACTIONS(1723), + [anon_sym_LBRACE] = ACTIONS(1311), + [anon_sym_delegate] = ACTIONS(1313), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(2235), + [anon_sym_new] = ACTIONS(1315), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1067), - [anon_sym_BANG] = ACTIONS(2239), - [anon_sym_TILDE] = ACTIONS(2239), - [anon_sym_PLUS_PLUS] = ACTIONS(2239), - [anon_sym_DASH_DASH] = ACTIONS(2239), + [anon_sym_checked] = ACTIONS(1317), + [anon_sym_BANG] = ACTIONS(1727), + [anon_sym_TILDE] = ACTIONS(1727), + [anon_sym_PLUS_PLUS] = ACTIONS(1727), + [anon_sym_DASH_DASH] = ACTIONS(1727), [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_PLUS] = ACTIONS(1725), + [anon_sym_DASH] = ACTIONS(1725), + [anon_sym_STAR] = ACTIONS(1729), + [anon_sym_CARET] = ACTIONS(1727), + [anon_sym_AMP] = ACTIONS(1727), + [anon_sym_this] = ACTIONS(1321), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), + [anon_sym_base] = ACTIONS(1323), [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1067), + [anon_sym_unchecked] = ACTIONS(1317), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(2243), + [anon_sym_throw] = ACTIONS(1731), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2245), - [anon_sym_DOT_DOT] = ACTIONS(2247), + [anon_sym_await] = ACTIONS(1733), + [anon_sym_DOT_DOT] = ACTIONS(1735), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -260936,19 +260822,19 @@ static const uint16_t ts_parse_table[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(1331), [anon_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(1333), + [anon_sym___reftype] = ACTIONS(1335), + [anon_sym___refvalue] = ACTIONS(1337), [sym_null_literal] = ACTIONS(139), [anon_sym_SQUOTE] = ACTIONS(141), [sym_integer_literal] = ACTIONS(139), [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1089), + [aux_sym_preproc_if_token1] = ACTIONS(1339), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -260965,84 +260851,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [1297] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(5876), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2376), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(5439), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3681), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3080), - [sym_postfix_unary_expression] = STATE(3111), - [sym_prefix_unary_expression] = STATE(3111), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6170), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3080), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3111), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3080), - [sym_member_access_expression] = STATE(2484), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3111), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7511), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(3080), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3080), - [sym_typeof_expression] = STATE(3080), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2484), - [sym_literal] = STATE(3080), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(5881), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2386), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(4234), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3132), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3102), + [sym_postfix_unary_expression] = STATE(3079), + [sym_prefix_unary_expression] = STATE(3079), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6158), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3102), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3079), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3102), + [sym_member_access_expression] = STATE(2472), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3079), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7650), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(3102), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3102), + [sym_typeof_expression] = STATE(3102), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2472), + [sym_literal] = STATE(3102), + [sym_character_literal] = STATE(3037), + [sym_string_literal] = STATE(3037), + [sym_raw_string_literal] = STATE(3037), + [sym_boolean_literal] = STATE(3037), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(1297), [sym_preproc_endregion] = STATE(1297), [sym_preproc_line] = STATE(1297), @@ -261052,47 +260938,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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1481), - [anon_sym_LPAREN] = ACTIONS(2231), - [anon_sym_ref] = ACTIONS(2233), - [anon_sym_LBRACE] = ACTIONS(1487), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1479), + [anon_sym_LPAREN] = ACTIONS(2185), + [anon_sym_ref] = ACTIONS(2187), + [anon_sym_LBRACE] = ACTIONS(1481), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(2235), + [anon_sym_new] = ACTIONS(1899), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1067), - [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_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(2191), + [anon_sym_TILDE] = ACTIONS(2191), + [anon_sym_PLUS_PLUS] = ACTIONS(2191), + [anon_sym_DASH_DASH] = ACTIONS(2191), + [anon_sym_true] = ACTIONS(1257), + [anon_sym_false] = ACTIONS(1257), + [anon_sym_PLUS] = ACTIONS(2189), + [anon_sym_DASH] = ACTIONS(2189), + [anon_sym_STAR] = ACTIONS(1905), + [anon_sym_CARET] = ACTIONS(2191), + [anon_sym_AMP] = ACTIONS(2191), [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(1067), + [sym_predefined_type] = ACTIONS(1265), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(2243), + [anon_sym_default] = ACTIONS(1267), + [anon_sym_throw] = ACTIONS(2193), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2245), - [anon_sym_DOT_DOT] = ACTIONS(2247), + [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), @@ -261106,18 +260992,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(129), - [anon_sym_typeof] = ACTIONS(131), + [anon_sym_sizeof] = ACTIONS(1277), + [anon_sym_typeof] = ACTIONS(1279), [anon_sym___makeref] = ACTIONS(133), [anon_sym___reftype] = ACTIONS(135), [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1089), + [sym_null_literal] = ACTIONS(1287), + [anon_sym_SQUOTE] = ACTIONS(1289), + [sym_integer_literal] = ACTIONS(1287), + [sym_real_literal] = ACTIONS(1291), + [anon_sym_DQUOTE] = ACTIONS(1293), + [sym_verbatim_string_literal] = ACTIONS(1291), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -261128,90 +261014,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(151), - [sym_interpolation_verbatim_start] = ACTIONS(153), - [sym_interpolation_raw_start] = ACTIONS(155), - [sym_raw_string_start] = ACTIONS(157), + [sym_interpolation_regular_start] = ACTIONS(1297), + [sym_interpolation_verbatim_start] = ACTIONS(1299), + [sym_interpolation_raw_start] = ACTIONS(1301), + [sym_raw_string_start] = ACTIONS(1303), }, [1298] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(5876), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2376), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(5440), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3681), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3080), - [sym_postfix_unary_expression] = STATE(3111), - [sym_prefix_unary_expression] = STATE(3111), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6170), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3080), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3111), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3080), - [sym_member_access_expression] = STATE(2484), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3111), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7511), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(3080), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3080), - [sym_typeof_expression] = STATE(3080), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2484), - [sym_literal] = STATE(3080), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(5881), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2386), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(4235), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3132), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3102), + [sym_postfix_unary_expression] = STATE(3079), + [sym_prefix_unary_expression] = STATE(3079), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6158), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3102), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3079), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3102), + [sym_member_access_expression] = STATE(2472), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3079), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7650), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(3102), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3102), + [sym_typeof_expression] = STATE(3102), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2472), + [sym_literal] = STATE(3102), + [sym_character_literal] = STATE(3037), + [sym_string_literal] = STATE(3037), + [sym_raw_string_literal] = STATE(3037), + [sym_boolean_literal] = STATE(3037), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(1298), [sym_preproc_endregion] = STATE(1298), [sym_preproc_line] = STATE(1298), @@ -261221,47 +261107,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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1481), - [anon_sym_LPAREN] = ACTIONS(2231), - [anon_sym_ref] = ACTIONS(2233), - [anon_sym_LBRACE] = ACTIONS(1487), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1479), + [anon_sym_LPAREN] = ACTIONS(2185), + [anon_sym_ref] = ACTIONS(2187), + [anon_sym_LBRACE] = ACTIONS(1481), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(2235), + [anon_sym_new] = ACTIONS(1899), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1067), - [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_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(2191), + [anon_sym_TILDE] = ACTIONS(2191), + [anon_sym_PLUS_PLUS] = ACTIONS(2191), + [anon_sym_DASH_DASH] = ACTIONS(2191), + [anon_sym_true] = ACTIONS(1257), + [anon_sym_false] = ACTIONS(1257), + [anon_sym_PLUS] = ACTIONS(2189), + [anon_sym_DASH] = ACTIONS(2189), + [anon_sym_STAR] = ACTIONS(1905), + [anon_sym_CARET] = ACTIONS(2191), + [anon_sym_AMP] = ACTIONS(2191), [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(1067), + [sym_predefined_type] = ACTIONS(1265), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(2243), + [anon_sym_default] = ACTIONS(1267), + [anon_sym_throw] = ACTIONS(2193), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2245), - [anon_sym_DOT_DOT] = ACTIONS(2247), + [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), @@ -261275,18 +261161,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(129), - [anon_sym_typeof] = ACTIONS(131), + [anon_sym_sizeof] = ACTIONS(1277), + [anon_sym_typeof] = ACTIONS(1279), [anon_sym___makeref] = ACTIONS(133), [anon_sym___reftype] = ACTIONS(135), [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1089), + [sym_null_literal] = ACTIONS(1287), + [anon_sym_SQUOTE] = ACTIONS(1289), + [sym_integer_literal] = ACTIONS(1287), + [sym_real_literal] = ACTIONS(1291), + [anon_sym_DQUOTE] = ACTIONS(1293), + [sym_verbatim_string_literal] = ACTIONS(1291), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -261297,90 +261183,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(151), - [sym_interpolation_verbatim_start] = ACTIONS(153), - [sym_interpolation_raw_start] = ACTIONS(155), - [sym_raw_string_start] = ACTIONS(157), + [sym_interpolation_regular_start] = ACTIONS(1297), + [sym_interpolation_verbatim_start] = ACTIONS(1299), + [sym_interpolation_raw_start] = ACTIONS(1301), + [sym_raw_string_start] = ACTIONS(1303), }, [1299] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(5876), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2376), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(5441), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3681), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3080), - [sym_postfix_unary_expression] = STATE(3111), - [sym_prefix_unary_expression] = STATE(3111), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6170), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3080), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3111), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3080), - [sym_member_access_expression] = STATE(2484), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3111), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7511), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(3080), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3080), - [sym_typeof_expression] = STATE(3080), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2484), - [sym_literal] = STATE(3080), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2816), + [sym__name] = STATE(5879), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2196), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(5039), + [sym_non_lvalue_expression] = STATE(3495), + [sym_lvalue_expression] = STATE(3539), + [sym__expression_statement_expression] = STATE(3462), + [sym_assignment_expression] = STATE(3497), + [sym_binary_expression] = STATE(3462), + [sym_postfix_unary_expression] = STATE(3497), + [sym_prefix_unary_expression] = STATE(3497), + [sym__pointer_indirection_expression] = STATE(2815), + [sym_query_expression] = STATE(3462), + [sym_from_clause] = STATE(6144), + [sym_conditional_expression] = STATE(3462), + [sym_conditional_access_expression] = STATE(3462), + [sym_as_expression] = STATE(3462), + [sym_is_expression] = STATE(3462), + [sym_is_pattern_expression] = STATE(3462), + [sym_cast_expression] = STATE(3462), + [sym_checked_expression] = STATE(3462), + [sym_invocation_expression] = STATE(3497), + [sym_switch_expression] = STATE(3462), + [sym_await_expression] = STATE(3497), + [sym_throw_expression] = STATE(3462), + [sym_element_access_expression] = STATE(2815), + [sym_interpolated_string_expression] = STATE(3462), + [sym_member_access_expression] = STATE(2815), + [sym_object_creation_expression] = STATE(3497), + [sym_parenthesized_expression] = STATE(3497), + [sym__parenthesized_lvalue_expression] = STATE(2815), + [sym_lambda_expression] = STATE(3462), + [sym__lambda_expression_init] = STATE(7681), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3462), + [sym_anonymous_method_expression] = STATE(3462), + [sym_anonymous_object_creation_expression] = STATE(3462), + [sym_implicit_array_creation_expression] = STATE(3462), + [sym_implicit_object_creation_expression] = STATE(3462), + [sym_implicit_stackalloc_expression] = STATE(3462), + [sym_initializer_expression] = STATE(3462), + [sym_default_expression] = STATE(3462), + [sym_with_expression] = STATE(3462), + [sym_sizeof_expression] = STATE(3462), + [sym_typeof_expression] = STATE(3462), + [sym_makeref_expression] = STATE(3462), + [sym_ref_expression] = STATE(3462), + [sym_reftype_expression] = STATE(3462), + [sym_refvalue_expression] = STATE(3462), + [sym_stackalloc_expression] = STATE(3462), + [sym_range_expression] = STATE(3462), + [sym_tuple_expression] = STATE(2815), + [sym_literal] = STATE(3462), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3462), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(1299), [sym_preproc_endregion] = STATE(1299), [sym_preproc_line] = STATE(1299), @@ -261390,47 +261276,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(3067), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), [aux_sym__lambda_expression_init_repeat1] = STATE(3367), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1481), - [anon_sym_LPAREN] = ACTIONS(2231), - [anon_sym_ref] = ACTIONS(2233), - [anon_sym_LBRACE] = ACTIONS(1487), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1305), + [anon_sym_LPAREN] = ACTIONS(1721), + [anon_sym_ref] = ACTIONS(1723), + [anon_sym_LBRACE] = ACTIONS(1311), + [anon_sym_delegate] = ACTIONS(1313), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(2235), + [anon_sym_new] = ACTIONS(1315), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1067), - [anon_sym_BANG] = ACTIONS(2239), - [anon_sym_TILDE] = ACTIONS(2239), - [anon_sym_PLUS_PLUS] = ACTIONS(2239), - [anon_sym_DASH_DASH] = ACTIONS(2239), + [anon_sym_checked] = ACTIONS(1317), + [anon_sym_BANG] = ACTIONS(1727), + [anon_sym_TILDE] = ACTIONS(1727), + [anon_sym_PLUS_PLUS] = ACTIONS(1727), + [anon_sym_DASH_DASH] = ACTIONS(1727), [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_PLUS] = ACTIONS(1725), + [anon_sym_DASH] = ACTIONS(1725), + [anon_sym_STAR] = ACTIONS(1729), + [anon_sym_CARET] = ACTIONS(1727), + [anon_sym_AMP] = ACTIONS(1727), + [anon_sym_this] = ACTIONS(1321), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), + [anon_sym_base] = ACTIONS(1323), [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1067), + [anon_sym_unchecked] = ACTIONS(1317), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(2243), + [anon_sym_throw] = ACTIONS(1731), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2245), - [anon_sym_DOT_DOT] = ACTIONS(2247), + [anon_sym_await] = ACTIONS(1733), + [anon_sym_DOT_DOT] = ACTIONS(1735), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -261443,19 +261329,19 @@ static const uint16_t ts_parse_table[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(1331), [anon_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(1333), + [anon_sym___reftype] = ACTIONS(1335), + [anon_sym___refvalue] = ACTIONS(1337), [sym_null_literal] = ACTIONS(139), [anon_sym_SQUOTE] = ACTIONS(141), [sym_integer_literal] = ACTIONS(139), [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1089), + [aux_sym_preproc_if_token1] = ACTIONS(1339), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -261472,84 +261358,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [1300] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(5876), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2376), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(5442), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3681), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3080), - [sym_postfix_unary_expression] = STATE(3111), - [sym_prefix_unary_expression] = STATE(3111), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6170), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3080), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3111), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3080), - [sym_member_access_expression] = STATE(2484), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3111), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7511), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(3080), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3080), - [sym_typeof_expression] = STATE(3080), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2484), - [sym_literal] = STATE(3080), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2816), + [sym__name] = STATE(5879), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2196), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(5041), + [sym_non_lvalue_expression] = STATE(3495), + [sym_lvalue_expression] = STATE(3539), + [sym__expression_statement_expression] = STATE(3462), + [sym_assignment_expression] = STATE(3497), + [sym_binary_expression] = STATE(3462), + [sym_postfix_unary_expression] = STATE(3497), + [sym_prefix_unary_expression] = STATE(3497), + [sym__pointer_indirection_expression] = STATE(2815), + [sym_query_expression] = STATE(3462), + [sym_from_clause] = STATE(6144), + [sym_conditional_expression] = STATE(3462), + [sym_conditional_access_expression] = STATE(3462), + [sym_as_expression] = STATE(3462), + [sym_is_expression] = STATE(3462), + [sym_is_pattern_expression] = STATE(3462), + [sym_cast_expression] = STATE(3462), + [sym_checked_expression] = STATE(3462), + [sym_invocation_expression] = STATE(3497), + [sym_switch_expression] = STATE(3462), + [sym_await_expression] = STATE(3497), + [sym_throw_expression] = STATE(3462), + [sym_element_access_expression] = STATE(2815), + [sym_interpolated_string_expression] = STATE(3462), + [sym_member_access_expression] = STATE(2815), + [sym_object_creation_expression] = STATE(3497), + [sym_parenthesized_expression] = STATE(3497), + [sym__parenthesized_lvalue_expression] = STATE(2815), + [sym_lambda_expression] = STATE(3462), + [sym__lambda_expression_init] = STATE(7681), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3462), + [sym_anonymous_method_expression] = STATE(3462), + [sym_anonymous_object_creation_expression] = STATE(3462), + [sym_implicit_array_creation_expression] = STATE(3462), + [sym_implicit_object_creation_expression] = STATE(3462), + [sym_implicit_stackalloc_expression] = STATE(3462), + [sym_initializer_expression] = STATE(3462), + [sym_default_expression] = STATE(3462), + [sym_with_expression] = STATE(3462), + [sym_sizeof_expression] = STATE(3462), + [sym_typeof_expression] = STATE(3462), + [sym_makeref_expression] = STATE(3462), + [sym_ref_expression] = STATE(3462), + [sym_reftype_expression] = STATE(3462), + [sym_refvalue_expression] = STATE(3462), + [sym_stackalloc_expression] = STATE(3462), + [sym_range_expression] = STATE(3462), + [sym_tuple_expression] = STATE(2815), + [sym_literal] = STATE(3462), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3462), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(1300), [sym_preproc_endregion] = STATE(1300), [sym_preproc_line] = STATE(1300), @@ -261559,47 +261445,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(3067), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), [aux_sym__lambda_expression_init_repeat1] = STATE(3367), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1481), - [anon_sym_LPAREN] = ACTIONS(2231), - [anon_sym_ref] = ACTIONS(2233), - [anon_sym_LBRACE] = ACTIONS(1487), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1305), + [anon_sym_LPAREN] = ACTIONS(1721), + [anon_sym_ref] = ACTIONS(1723), + [anon_sym_LBRACE] = ACTIONS(1311), + [anon_sym_delegate] = ACTIONS(1313), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(2235), + [anon_sym_new] = ACTIONS(1315), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1067), - [anon_sym_BANG] = ACTIONS(2239), - [anon_sym_TILDE] = ACTIONS(2239), - [anon_sym_PLUS_PLUS] = ACTIONS(2239), - [anon_sym_DASH_DASH] = ACTIONS(2239), + [anon_sym_checked] = ACTIONS(1317), + [anon_sym_BANG] = ACTIONS(1727), + [anon_sym_TILDE] = ACTIONS(1727), + [anon_sym_PLUS_PLUS] = ACTIONS(1727), + [anon_sym_DASH_DASH] = ACTIONS(1727), [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_PLUS] = ACTIONS(1725), + [anon_sym_DASH] = ACTIONS(1725), + [anon_sym_STAR] = ACTIONS(1729), + [anon_sym_CARET] = ACTIONS(1727), + [anon_sym_AMP] = ACTIONS(1727), + [anon_sym_this] = ACTIONS(1321), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), + [anon_sym_base] = ACTIONS(1323), [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1067), + [anon_sym_unchecked] = ACTIONS(1317), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(2243), + [anon_sym_throw] = ACTIONS(1731), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2245), - [anon_sym_DOT_DOT] = ACTIONS(2247), + [anon_sym_await] = ACTIONS(1733), + [anon_sym_DOT_DOT] = ACTIONS(1735), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -261612,19 +261498,19 @@ static const uint16_t ts_parse_table[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(1331), [anon_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(1333), + [anon_sym___reftype] = ACTIONS(1335), + [anon_sym___refvalue] = ACTIONS(1337), [sym_null_literal] = ACTIONS(139), [anon_sym_SQUOTE] = ACTIONS(141), [sym_integer_literal] = ACTIONS(139), [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1089), + [aux_sym_preproc_if_token1] = ACTIONS(1339), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -261641,84 +261527,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [1301] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(5876), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2376), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(5443), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3681), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3080), - [sym_postfix_unary_expression] = STATE(3111), - [sym_prefix_unary_expression] = STATE(3111), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6170), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3080), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3111), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3080), - [sym_member_access_expression] = STATE(2484), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3111), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7511), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(3080), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3080), - [sym_typeof_expression] = STATE(3080), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2484), - [sym_literal] = STATE(3080), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2901), + [sym__name] = STATE(5883), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2359), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(3943), + [sym_non_lvalue_expression] = STATE(3685), + [sym_lvalue_expression] = STATE(3073), + [sym__expression_statement_expression] = STATE(3836), + [sym_assignment_expression] = STATE(3689), + [sym_binary_expression] = STATE(3836), + [sym_postfix_unary_expression] = STATE(3689), + [sym_prefix_unary_expression] = STATE(3689), + [sym__pointer_indirection_expression] = STATE(2906), + [sym_query_expression] = STATE(3836), + [sym_from_clause] = STATE(6157), + [sym_conditional_expression] = STATE(3836), + [sym_conditional_access_expression] = STATE(3836), + [sym_as_expression] = STATE(3836), + [sym_is_expression] = STATE(3836), + [sym_is_pattern_expression] = STATE(3836), + [sym_cast_expression] = STATE(3836), + [sym_checked_expression] = STATE(3836), + [sym_invocation_expression] = STATE(3689), + [sym_switch_expression] = STATE(3836), + [sym_await_expression] = STATE(3689), + [sym_throw_expression] = STATE(3836), + [sym_element_access_expression] = STATE(2906), + [sym_interpolated_string_expression] = STATE(3836), + [sym_member_access_expression] = STATE(2906), + [sym_object_creation_expression] = STATE(3689), + [sym_parenthesized_expression] = STATE(3689), + [sym__parenthesized_lvalue_expression] = STATE(2906), + [sym_lambda_expression] = STATE(3836), + [sym__lambda_expression_init] = STATE(7460), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3836), + [sym_anonymous_method_expression] = STATE(3836), + [sym_anonymous_object_creation_expression] = STATE(3836), + [sym_implicit_array_creation_expression] = STATE(3836), + [sym_implicit_object_creation_expression] = STATE(3836), + [sym_implicit_stackalloc_expression] = STATE(3836), + [sym_initializer_expression] = STATE(3836), + [sym_default_expression] = STATE(3836), + [sym_with_expression] = STATE(3836), + [sym_sizeof_expression] = STATE(3836), + [sym_typeof_expression] = STATE(3836), + [sym_makeref_expression] = STATE(3836), + [sym_ref_expression] = STATE(3836), + [sym_reftype_expression] = STATE(3836), + [sym_refvalue_expression] = STATE(3836), + [sym_stackalloc_expression] = STATE(3836), + [sym_range_expression] = STATE(3836), + [sym_tuple_expression] = STATE(2906), + [sym_literal] = STATE(3836), + [sym_character_literal] = STATE(3843), + [sym_string_literal] = STATE(3843), + [sym_raw_string_literal] = STATE(3843), + [sym_boolean_literal] = STATE(3843), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3836), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(1301), [sym_preproc_endregion] = STATE(1301), [sym_preproc_line] = STATE(1301), @@ -261728,47 +261614,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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3477), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1481), - [anon_sym_LPAREN] = ACTIONS(2231), - [anon_sym_ref] = ACTIONS(2233), - [anon_sym_LBRACE] = ACTIONS(1487), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1655), + [anon_sym_LPAREN] = ACTIONS(2061), + [anon_sym_ref] = ACTIONS(2063), + [anon_sym_LBRACE] = ACTIONS(1661), + [anon_sym_delegate] = ACTIONS(1663), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(2235), + [anon_sym_new] = ACTIONS(1665), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1067), - [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_checked] = ACTIONS(1667), + [anon_sym_BANG] = ACTIONS(2067), + [anon_sym_TILDE] = ACTIONS(2067), + [anon_sym_PLUS_PLUS] = ACTIONS(2067), + [anon_sym_DASH_DASH] = ACTIONS(2067), + [anon_sym_true] = ACTIONS(1673), + [anon_sym_false] = ACTIONS(1673), + [anon_sym_PLUS] = ACTIONS(2065), + [anon_sym_DASH] = ACTIONS(2065), + [anon_sym_STAR] = ACTIONS(1675), + [anon_sym_CARET] = ACTIONS(2067), + [anon_sym_AMP] = ACTIONS(2067), + [anon_sym_this] = ACTIONS(1677), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), + [anon_sym_base] = ACTIONS(1679), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1067), + [sym_predefined_type] = ACTIONS(1681), + [anon_sym_unchecked] = ACTIONS(1667), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(2243), + [anon_sym_default] = ACTIONS(1683), + [anon_sym_throw] = ACTIONS(2069), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2245), - [anon_sym_DOT_DOT] = ACTIONS(2247), + [anon_sym_await] = ACTIONS(2071), + [anon_sym_DOT_DOT] = ACTIONS(2073), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -261781,19 +261667,19 @@ static const uint16_t ts_parse_table[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(1089), + [anon_sym_stackalloc] = ACTIONS(1691), + [anon_sym_sizeof] = ACTIONS(1693), + [anon_sym_typeof] = ACTIONS(1695), + [anon_sym___makeref] = ACTIONS(1697), + [anon_sym___reftype] = ACTIONS(1699), + [anon_sym___refvalue] = ACTIONS(1701), + [sym_null_literal] = ACTIONS(1703), + [anon_sym_SQUOTE] = ACTIONS(1705), + [sym_integer_literal] = ACTIONS(1703), + [sym_real_literal] = ACTIONS(1707), + [anon_sym_DQUOTE] = ACTIONS(1709), + [sym_verbatim_string_literal] = ACTIONS(1707), + [aux_sym_preproc_if_token1] = ACTIONS(1711), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -261804,90 +261690,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(151), - [sym_interpolation_verbatim_start] = ACTIONS(153), - [sym_interpolation_raw_start] = ACTIONS(155), - [sym_raw_string_start] = ACTIONS(157), + [sym_interpolation_regular_start] = ACTIONS(1713), + [sym_interpolation_verbatim_start] = ACTIONS(1715), + [sym_interpolation_raw_start] = ACTIONS(1717), + [sym_raw_string_start] = ACTIONS(1719), }, [1302] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(5876), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2376), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(5445), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3681), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3080), - [sym_postfix_unary_expression] = STATE(3111), - [sym_prefix_unary_expression] = STATE(3111), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6170), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3080), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3111), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3080), - [sym_member_access_expression] = STATE(2484), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3111), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7511), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(3080), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3080), - [sym_typeof_expression] = STATE(3080), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2484), - [sym_literal] = STATE(3080), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2603), + [sym__name] = STATE(5870), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2379), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(4692), + [sym_non_lvalue_expression] = STATE(3220), + [sym_lvalue_expression] = STATE(3386), + [sym__expression_statement_expression] = STATE(3236), + [sym_assignment_expression] = STATE(3221), + [sym_binary_expression] = STATE(3236), + [sym_postfix_unary_expression] = STATE(3221), + [sym_prefix_unary_expression] = STATE(3221), + [sym__pointer_indirection_expression] = STATE(2602), + [sym_query_expression] = STATE(3236), + [sym_from_clause] = STATE(6166), + [sym_conditional_expression] = STATE(3236), + [sym_conditional_access_expression] = STATE(3236), + [sym_as_expression] = STATE(3236), + [sym_is_expression] = STATE(3236), + [sym_is_pattern_expression] = STATE(3236), + [sym_cast_expression] = STATE(3236), + [sym_checked_expression] = STATE(3236), + [sym_invocation_expression] = STATE(3221), + [sym_switch_expression] = STATE(3236), + [sym_await_expression] = STATE(3221), + [sym_throw_expression] = STATE(3236), + [sym_element_access_expression] = STATE(2602), + [sym_interpolated_string_expression] = STATE(3236), + [sym_member_access_expression] = STATE(2602), + [sym_object_creation_expression] = STATE(3221), + [sym_parenthesized_expression] = STATE(3221), + [sym__parenthesized_lvalue_expression] = STATE(2602), + [sym_lambda_expression] = STATE(3236), + [sym__lambda_expression_init] = STATE(7418), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3236), + [sym_anonymous_method_expression] = STATE(3236), + [sym_anonymous_object_creation_expression] = STATE(3236), + [sym_implicit_array_creation_expression] = STATE(3236), + [sym_implicit_object_creation_expression] = STATE(3236), + [sym_implicit_stackalloc_expression] = STATE(3236), + [sym_initializer_expression] = STATE(3236), + [sym_default_expression] = STATE(3236), + [sym_with_expression] = STATE(3236), + [sym_sizeof_expression] = STATE(3236), + [sym_typeof_expression] = STATE(3236), + [sym_makeref_expression] = STATE(3236), + [sym_ref_expression] = STATE(3236), + [sym_reftype_expression] = STATE(3236), + [sym_refvalue_expression] = STATE(3236), + [sym_stackalloc_expression] = STATE(3236), + [sym_range_expression] = STATE(3236), + [sym_tuple_expression] = STATE(2602), + [sym_literal] = STATE(3236), + [sym_character_literal] = STATE(3272), + [sym_string_literal] = STATE(3272), + [sym_raw_string_literal] = STATE(3272), + [sym_boolean_literal] = STATE(3272), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3236), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(1302), [sym_preproc_endregion] = STATE(1302), [sym_preproc_line] = STATE(1302), @@ -261897,47 +261783,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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3379), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1481), - [anon_sym_LPAREN] = ACTIONS(2231), - [anon_sym_ref] = ACTIONS(2233), - [anon_sym_LBRACE] = ACTIONS(1487), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1149), + [anon_sym_LPAREN] = ACTIONS(1821), + [anon_sym_ref] = ACTIONS(1823), + [anon_sym_LBRACE] = ACTIONS(1155), + [anon_sym_delegate] = ACTIONS(1157), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(2235), + [anon_sym_new] = ACTIONS(1825), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1067), - [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_checked] = ACTIONS(1163), + [anon_sym_BANG] = ACTIONS(1829), + [anon_sym_TILDE] = ACTIONS(1829), + [anon_sym_PLUS_PLUS] = ACTIONS(1829), + [anon_sym_DASH_DASH] = ACTIONS(1829), + [anon_sym_true] = ACTIONS(1169), + [anon_sym_false] = ACTIONS(1169), + [anon_sym_PLUS] = ACTIONS(1827), + [anon_sym_DASH] = ACTIONS(1827), + [anon_sym_STAR] = ACTIONS(1831), + [anon_sym_CARET] = ACTIONS(1829), + [anon_sym_AMP] = ACTIONS(1829), + [anon_sym_this] = ACTIONS(1173), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), + [anon_sym_base] = ACTIONS(1175), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1067), + [sym_predefined_type] = ACTIONS(1177), + [anon_sym_unchecked] = ACTIONS(1163), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(2243), + [anon_sym_default] = ACTIONS(1179), + [anon_sym_throw] = ACTIONS(1833), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2245), - [anon_sym_DOT_DOT] = ACTIONS(2247), + [anon_sym_await] = ACTIONS(1835), + [anon_sym_DOT_DOT] = ACTIONS(1837), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -261950,19 +261836,19 @@ static const uint16_t ts_parse_table[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(1089), + [anon_sym_stackalloc] = ACTIONS(1187), + [anon_sym_sizeof] = ACTIONS(1189), + [anon_sym_typeof] = ACTIONS(1191), + [anon_sym___makeref] = ACTIONS(1193), + [anon_sym___reftype] = ACTIONS(1195), + [anon_sym___refvalue] = ACTIONS(1197), + [sym_null_literal] = ACTIONS(1199), + [anon_sym_SQUOTE] = ACTIONS(1201), + [sym_integer_literal] = ACTIONS(1199), + [sym_real_literal] = ACTIONS(1203), + [anon_sym_DQUOTE] = ACTIONS(1205), + [sym_verbatim_string_literal] = ACTIONS(1203), + [aux_sym_preproc_if_token1] = ACTIONS(1207), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -261973,90 +261859,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(151), - [sym_interpolation_verbatim_start] = ACTIONS(153), - [sym_interpolation_raw_start] = ACTIONS(155), - [sym_raw_string_start] = ACTIONS(157), + [sym_interpolation_regular_start] = ACTIONS(1209), + [sym_interpolation_verbatim_start] = ACTIONS(1211), + [sym_interpolation_raw_start] = ACTIONS(1213), + [sym_raw_string_start] = ACTIONS(1215), }, [1303] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(5876), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2376), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(5446), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3681), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3080), - [sym_postfix_unary_expression] = STATE(3111), - [sym_prefix_unary_expression] = STATE(3111), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6170), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3080), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3111), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3080), - [sym_member_access_expression] = STATE(2484), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3111), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7511), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(3080), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3080), - [sym_typeof_expression] = STATE(3080), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2484), - [sym_literal] = STATE(3080), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2603), + [sym__name] = STATE(5870), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2379), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(3123), + [sym_non_lvalue_expression] = STATE(3220), + [sym_lvalue_expression] = STATE(3386), + [sym__expression_statement_expression] = STATE(3236), + [sym_assignment_expression] = STATE(3221), + [sym_binary_expression] = STATE(3236), + [sym_postfix_unary_expression] = STATE(3221), + [sym_prefix_unary_expression] = STATE(3221), + [sym__pointer_indirection_expression] = STATE(2602), + [sym_query_expression] = STATE(3236), + [sym_from_clause] = STATE(6166), + [sym_conditional_expression] = STATE(3236), + [sym_conditional_access_expression] = STATE(3236), + [sym_as_expression] = STATE(3236), + [sym_is_expression] = STATE(3236), + [sym_is_pattern_expression] = STATE(3236), + [sym_cast_expression] = STATE(3236), + [sym_checked_expression] = STATE(3236), + [sym_invocation_expression] = STATE(3221), + [sym_switch_expression] = STATE(3236), + [sym_await_expression] = STATE(3221), + [sym_throw_expression] = STATE(3236), + [sym_element_access_expression] = STATE(2602), + [sym_interpolated_string_expression] = STATE(3236), + [sym_member_access_expression] = STATE(2602), + [sym_object_creation_expression] = STATE(3221), + [sym_parenthesized_expression] = STATE(3221), + [sym__parenthesized_lvalue_expression] = STATE(2602), + [sym_lambda_expression] = STATE(3236), + [sym__lambda_expression_init] = STATE(7418), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3236), + [sym_anonymous_method_expression] = STATE(3236), + [sym_anonymous_object_creation_expression] = STATE(3236), + [sym_implicit_array_creation_expression] = STATE(3236), + [sym_implicit_object_creation_expression] = STATE(3236), + [sym_implicit_stackalloc_expression] = STATE(3236), + [sym_initializer_expression] = STATE(3236), + [sym_default_expression] = STATE(3236), + [sym_with_expression] = STATE(3236), + [sym_sizeof_expression] = STATE(3236), + [sym_typeof_expression] = STATE(3236), + [sym_makeref_expression] = STATE(3236), + [sym_ref_expression] = STATE(3236), + [sym_reftype_expression] = STATE(3236), + [sym_refvalue_expression] = STATE(3236), + [sym_stackalloc_expression] = STATE(3236), + [sym_range_expression] = STATE(3236), + [sym_tuple_expression] = STATE(2602), + [sym_literal] = STATE(3236), + [sym_character_literal] = STATE(3272), + [sym_string_literal] = STATE(3272), + [sym_raw_string_literal] = STATE(3272), + [sym_boolean_literal] = STATE(3272), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3236), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(1303), [sym_preproc_endregion] = STATE(1303), [sym_preproc_line] = STATE(1303), @@ -262066,47 +261952,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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3379), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1481), - [anon_sym_LPAREN] = ACTIONS(2231), - [anon_sym_ref] = ACTIONS(2233), - [anon_sym_LBRACE] = ACTIONS(1487), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1149), + [anon_sym_LPAREN] = ACTIONS(1821), + [anon_sym_ref] = ACTIONS(1823), + [anon_sym_LBRACE] = ACTIONS(1155), + [anon_sym_delegate] = ACTIONS(1157), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(2235), + [anon_sym_new] = ACTIONS(1825), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1067), - [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_checked] = ACTIONS(1163), + [anon_sym_BANG] = ACTIONS(1829), + [anon_sym_TILDE] = ACTIONS(1829), + [anon_sym_PLUS_PLUS] = ACTIONS(1829), + [anon_sym_DASH_DASH] = ACTIONS(1829), + [anon_sym_true] = ACTIONS(1169), + [anon_sym_false] = ACTIONS(1169), + [anon_sym_PLUS] = ACTIONS(1827), + [anon_sym_DASH] = ACTIONS(1827), + [anon_sym_STAR] = ACTIONS(1831), + [anon_sym_CARET] = ACTIONS(1829), + [anon_sym_AMP] = ACTIONS(1829), + [anon_sym_this] = ACTIONS(1173), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), + [anon_sym_base] = ACTIONS(1175), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1067), + [sym_predefined_type] = ACTIONS(1177), + [anon_sym_unchecked] = ACTIONS(1163), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(2243), + [anon_sym_default] = ACTIONS(1179), + [anon_sym_throw] = ACTIONS(1833), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2245), - [anon_sym_DOT_DOT] = ACTIONS(2247), + [anon_sym_await] = ACTIONS(1835), + [anon_sym_DOT_DOT] = ACTIONS(1837), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -262119,19 +262005,19 @@ static const uint16_t ts_parse_table[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(1089), + [anon_sym_stackalloc] = ACTIONS(1187), + [anon_sym_sizeof] = ACTIONS(1189), + [anon_sym_typeof] = ACTIONS(1191), + [anon_sym___makeref] = ACTIONS(1193), + [anon_sym___reftype] = ACTIONS(1195), + [anon_sym___refvalue] = ACTIONS(1197), + [sym_null_literal] = ACTIONS(1199), + [anon_sym_SQUOTE] = ACTIONS(1201), + [sym_integer_literal] = ACTIONS(1199), + [sym_real_literal] = ACTIONS(1203), + [anon_sym_DQUOTE] = ACTIONS(1205), + [sym_verbatim_string_literal] = ACTIONS(1203), + [aux_sym_preproc_if_token1] = ACTIONS(1207), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -262142,90 +262028,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(151), - [sym_interpolation_verbatim_start] = ACTIONS(153), - [sym_interpolation_raw_start] = ACTIONS(155), - [sym_raw_string_start] = ACTIONS(157), + [sym_interpolation_regular_start] = ACTIONS(1209), + [sym_interpolation_verbatim_start] = ACTIONS(1211), + [sym_interpolation_raw_start] = ACTIONS(1213), + [sym_raw_string_start] = ACTIONS(1215), }, [1304] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(5876), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2376), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(5447), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3681), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3080), - [sym_postfix_unary_expression] = STATE(3111), - [sym_prefix_unary_expression] = STATE(3111), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6170), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3080), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3111), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3080), - [sym_member_access_expression] = STATE(2484), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3111), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7511), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(3080), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3080), - [sym_typeof_expression] = STATE(3080), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2484), - [sym_literal] = STATE(3080), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2603), + [sym__name] = STATE(5870), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2379), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(4543), + [sym_non_lvalue_expression] = STATE(3220), + [sym_lvalue_expression] = STATE(3386), + [sym__expression_statement_expression] = STATE(3236), + [sym_assignment_expression] = STATE(3221), + [sym_binary_expression] = STATE(3236), + [sym_postfix_unary_expression] = STATE(3221), + [sym_prefix_unary_expression] = STATE(3221), + [sym__pointer_indirection_expression] = STATE(2602), + [sym_query_expression] = STATE(3236), + [sym_from_clause] = STATE(6166), + [sym_conditional_expression] = STATE(3236), + [sym_conditional_access_expression] = STATE(3236), + [sym_as_expression] = STATE(3236), + [sym_is_expression] = STATE(3236), + [sym_is_pattern_expression] = STATE(3236), + [sym_cast_expression] = STATE(3236), + [sym_checked_expression] = STATE(3236), + [sym_invocation_expression] = STATE(3221), + [sym_switch_expression] = STATE(3236), + [sym_await_expression] = STATE(3221), + [sym_throw_expression] = STATE(3236), + [sym_element_access_expression] = STATE(2602), + [sym_interpolated_string_expression] = STATE(3236), + [sym_member_access_expression] = STATE(2602), + [sym_object_creation_expression] = STATE(3221), + [sym_parenthesized_expression] = STATE(3221), + [sym__parenthesized_lvalue_expression] = STATE(2602), + [sym_lambda_expression] = STATE(3236), + [sym__lambda_expression_init] = STATE(7418), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3236), + [sym_anonymous_method_expression] = STATE(3236), + [sym_anonymous_object_creation_expression] = STATE(3236), + [sym_implicit_array_creation_expression] = STATE(3236), + [sym_implicit_object_creation_expression] = STATE(3236), + [sym_implicit_stackalloc_expression] = STATE(3236), + [sym_initializer_expression] = STATE(3236), + [sym_default_expression] = STATE(3236), + [sym_with_expression] = STATE(3236), + [sym_sizeof_expression] = STATE(3236), + [sym_typeof_expression] = STATE(3236), + [sym_makeref_expression] = STATE(3236), + [sym_ref_expression] = STATE(3236), + [sym_reftype_expression] = STATE(3236), + [sym_refvalue_expression] = STATE(3236), + [sym_stackalloc_expression] = STATE(3236), + [sym_range_expression] = STATE(3236), + [sym_tuple_expression] = STATE(2602), + [sym_literal] = STATE(3236), + [sym_character_literal] = STATE(3272), + [sym_string_literal] = STATE(3272), + [sym_raw_string_literal] = STATE(3272), + [sym_boolean_literal] = STATE(3272), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3236), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(1304), [sym_preproc_endregion] = STATE(1304), [sym_preproc_line] = STATE(1304), @@ -262235,47 +262121,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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3379), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1481), - [anon_sym_LPAREN] = ACTIONS(2231), - [anon_sym_ref] = ACTIONS(2233), - [anon_sym_LBRACE] = ACTIONS(1487), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1149), + [anon_sym_LPAREN] = ACTIONS(1821), + [anon_sym_ref] = ACTIONS(1823), + [anon_sym_LBRACE] = ACTIONS(1155), + [anon_sym_delegate] = ACTIONS(1157), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(2235), + [anon_sym_new] = ACTIONS(1825), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1067), - [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_checked] = ACTIONS(1163), + [anon_sym_BANG] = ACTIONS(1829), + [anon_sym_TILDE] = ACTIONS(1829), + [anon_sym_PLUS_PLUS] = ACTIONS(1829), + [anon_sym_DASH_DASH] = ACTIONS(1829), + [anon_sym_true] = ACTIONS(1169), + [anon_sym_false] = ACTIONS(1169), + [anon_sym_PLUS] = ACTIONS(1827), + [anon_sym_DASH] = ACTIONS(1827), + [anon_sym_STAR] = ACTIONS(1831), + [anon_sym_CARET] = ACTIONS(1829), + [anon_sym_AMP] = ACTIONS(1829), + [anon_sym_this] = ACTIONS(1173), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), + [anon_sym_base] = ACTIONS(1175), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1067), + [sym_predefined_type] = ACTIONS(1177), + [anon_sym_unchecked] = ACTIONS(1163), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(2243), + [anon_sym_default] = ACTIONS(1179), + [anon_sym_throw] = ACTIONS(1833), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2245), - [anon_sym_DOT_DOT] = ACTIONS(2247), + [anon_sym_await] = ACTIONS(1835), + [anon_sym_DOT_DOT] = ACTIONS(1837), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -262288,19 +262174,19 @@ static const uint16_t ts_parse_table[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(1089), + [anon_sym_stackalloc] = ACTIONS(1187), + [anon_sym_sizeof] = ACTIONS(1189), + [anon_sym_typeof] = ACTIONS(1191), + [anon_sym___makeref] = ACTIONS(1193), + [anon_sym___reftype] = ACTIONS(1195), + [anon_sym___refvalue] = ACTIONS(1197), + [sym_null_literal] = ACTIONS(1199), + [anon_sym_SQUOTE] = ACTIONS(1201), + [sym_integer_literal] = ACTIONS(1199), + [sym_real_literal] = ACTIONS(1203), + [anon_sym_DQUOTE] = ACTIONS(1205), + [sym_verbatim_string_literal] = ACTIONS(1203), + [aux_sym_preproc_if_token1] = ACTIONS(1207), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -262311,90 +262197,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(151), - [sym_interpolation_verbatim_start] = ACTIONS(153), - [sym_interpolation_raw_start] = ACTIONS(155), - [sym_raw_string_start] = ACTIONS(157), + [sym_interpolation_regular_start] = ACTIONS(1209), + [sym_interpolation_verbatim_start] = ACTIONS(1211), + [sym_interpolation_raw_start] = ACTIONS(1213), + [sym_raw_string_start] = ACTIONS(1215), }, [1305] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(5876), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2376), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(5414), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3681), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3080), - [sym_postfix_unary_expression] = STATE(3111), - [sym_prefix_unary_expression] = STATE(3111), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6170), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3080), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3111), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3080), - [sym_member_access_expression] = STATE(2484), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3111), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7511), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(3080), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3080), - [sym_typeof_expression] = STATE(3080), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2484), - [sym_literal] = STATE(3080), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2603), + [sym__name] = STATE(5870), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2379), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(4544), + [sym_non_lvalue_expression] = STATE(3220), + [sym_lvalue_expression] = STATE(3386), + [sym__expression_statement_expression] = STATE(3236), + [sym_assignment_expression] = STATE(3221), + [sym_binary_expression] = STATE(3236), + [sym_postfix_unary_expression] = STATE(3221), + [sym_prefix_unary_expression] = STATE(3221), + [sym__pointer_indirection_expression] = STATE(2602), + [sym_query_expression] = STATE(3236), + [sym_from_clause] = STATE(6166), + [sym_conditional_expression] = STATE(3236), + [sym_conditional_access_expression] = STATE(3236), + [sym_as_expression] = STATE(3236), + [sym_is_expression] = STATE(3236), + [sym_is_pattern_expression] = STATE(3236), + [sym_cast_expression] = STATE(3236), + [sym_checked_expression] = STATE(3236), + [sym_invocation_expression] = STATE(3221), + [sym_switch_expression] = STATE(3236), + [sym_await_expression] = STATE(3221), + [sym_throw_expression] = STATE(3236), + [sym_element_access_expression] = STATE(2602), + [sym_interpolated_string_expression] = STATE(3236), + [sym_member_access_expression] = STATE(2602), + [sym_object_creation_expression] = STATE(3221), + [sym_parenthesized_expression] = STATE(3221), + [sym__parenthesized_lvalue_expression] = STATE(2602), + [sym_lambda_expression] = STATE(3236), + [sym__lambda_expression_init] = STATE(7418), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3236), + [sym_anonymous_method_expression] = STATE(3236), + [sym_anonymous_object_creation_expression] = STATE(3236), + [sym_implicit_array_creation_expression] = STATE(3236), + [sym_implicit_object_creation_expression] = STATE(3236), + [sym_implicit_stackalloc_expression] = STATE(3236), + [sym_initializer_expression] = STATE(3236), + [sym_default_expression] = STATE(3236), + [sym_with_expression] = STATE(3236), + [sym_sizeof_expression] = STATE(3236), + [sym_typeof_expression] = STATE(3236), + [sym_makeref_expression] = STATE(3236), + [sym_ref_expression] = STATE(3236), + [sym_reftype_expression] = STATE(3236), + [sym_refvalue_expression] = STATE(3236), + [sym_stackalloc_expression] = STATE(3236), + [sym_range_expression] = STATE(3236), + [sym_tuple_expression] = STATE(2602), + [sym_literal] = STATE(3236), + [sym_character_literal] = STATE(3272), + [sym_string_literal] = STATE(3272), + [sym_raw_string_literal] = STATE(3272), + [sym_boolean_literal] = STATE(3272), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3236), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(1305), [sym_preproc_endregion] = STATE(1305), [sym_preproc_line] = STATE(1305), @@ -262404,47 +262290,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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3379), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1481), - [anon_sym_LPAREN] = ACTIONS(2231), - [anon_sym_ref] = ACTIONS(2233), - [anon_sym_LBRACE] = ACTIONS(1487), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1149), + [anon_sym_LPAREN] = ACTIONS(1821), + [anon_sym_ref] = ACTIONS(1823), + [anon_sym_LBRACE] = ACTIONS(1155), + [anon_sym_delegate] = ACTIONS(1157), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(2235), + [anon_sym_new] = ACTIONS(1825), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1067), - [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_checked] = ACTIONS(1163), + [anon_sym_BANG] = ACTIONS(1829), + [anon_sym_TILDE] = ACTIONS(1829), + [anon_sym_PLUS_PLUS] = ACTIONS(1829), + [anon_sym_DASH_DASH] = ACTIONS(1829), + [anon_sym_true] = ACTIONS(1169), + [anon_sym_false] = ACTIONS(1169), + [anon_sym_PLUS] = ACTIONS(1827), + [anon_sym_DASH] = ACTIONS(1827), + [anon_sym_STAR] = ACTIONS(1831), + [anon_sym_CARET] = ACTIONS(1829), + [anon_sym_AMP] = ACTIONS(1829), + [anon_sym_this] = ACTIONS(1173), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), + [anon_sym_base] = ACTIONS(1175), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1067), + [sym_predefined_type] = ACTIONS(1177), + [anon_sym_unchecked] = ACTIONS(1163), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(2243), + [anon_sym_default] = ACTIONS(1179), + [anon_sym_throw] = ACTIONS(1833), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2245), - [anon_sym_DOT_DOT] = ACTIONS(2247), + [anon_sym_await] = ACTIONS(1835), + [anon_sym_DOT_DOT] = ACTIONS(1837), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -262457,19 +262343,19 @@ static const uint16_t ts_parse_table[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(1089), + [anon_sym_stackalloc] = ACTIONS(1187), + [anon_sym_sizeof] = ACTIONS(1189), + [anon_sym_typeof] = ACTIONS(1191), + [anon_sym___makeref] = ACTIONS(1193), + [anon_sym___reftype] = ACTIONS(1195), + [anon_sym___refvalue] = ACTIONS(1197), + [sym_null_literal] = ACTIONS(1199), + [anon_sym_SQUOTE] = ACTIONS(1201), + [sym_integer_literal] = ACTIONS(1199), + [sym_real_literal] = ACTIONS(1203), + [anon_sym_DQUOTE] = ACTIONS(1205), + [sym_verbatim_string_literal] = ACTIONS(1203), + [aux_sym_preproc_if_token1] = ACTIONS(1207), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -262480,90 +262366,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(151), - [sym_interpolation_verbatim_start] = ACTIONS(153), - [sym_interpolation_raw_start] = ACTIONS(155), - [sym_raw_string_start] = ACTIONS(157), + [sym_interpolation_regular_start] = ACTIONS(1209), + [sym_interpolation_verbatim_start] = ACTIONS(1211), + [sym_interpolation_raw_start] = ACTIONS(1213), + [sym_raw_string_start] = ACTIONS(1215), }, [1306] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2420), - [sym__name] = STATE(5904), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2395), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(5199), - [sym_non_lvalue_expression] = STATE(3066), - [sym_lvalue_expression] = STATE(3557), - [sym__expression_statement_expression] = STATE(3006), - [sym_assignment_expression] = STATE(3020), - [sym_binary_expression] = STATE(3006), - [sym_postfix_unary_expression] = STATE(3020), - [sym_prefix_unary_expression] = STATE(3020), - [sym__pointer_indirection_expression] = STATE(2423), - [sym_query_expression] = STATE(3006), - [sym_from_clause] = STATE(6176), - [sym_conditional_expression] = STATE(3006), - [sym_conditional_access_expression] = STATE(3006), - [sym_as_expression] = STATE(3006), - [sym_is_expression] = STATE(3006), - [sym_is_pattern_expression] = STATE(3006), - [sym_cast_expression] = STATE(3006), - [sym_checked_expression] = STATE(3006), - [sym_invocation_expression] = STATE(3020), - [sym_switch_expression] = STATE(3006), - [sym_await_expression] = STATE(3020), - [sym_throw_expression] = STATE(3006), - [sym_element_access_expression] = STATE(2423), - [sym_interpolated_string_expression] = STATE(3006), - [sym_member_access_expression] = STATE(2423), - [sym_object_creation_expression] = STATE(3020), - [sym_parenthesized_expression] = STATE(3020), - [sym__parenthesized_lvalue_expression] = STATE(2423), - [sym_lambda_expression] = STATE(3006), - [sym__lambda_expression_init] = STATE(7473), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3006), - [sym_anonymous_method_expression] = STATE(3006), - [sym_anonymous_object_creation_expression] = STATE(3006), - [sym_implicit_array_creation_expression] = STATE(3006), - [sym_implicit_object_creation_expression] = STATE(3006), - [sym_implicit_stackalloc_expression] = STATE(3006), - [sym_initializer_expression] = STATE(3006), - [sym_default_expression] = STATE(3006), - [sym_with_expression] = STATE(3006), - [sym_sizeof_expression] = STATE(3006), - [sym_typeof_expression] = STATE(3006), - [sym_makeref_expression] = STATE(3006), - [sym_ref_expression] = STATE(3006), - [sym_reftype_expression] = STATE(3006), - [sym_refvalue_expression] = STATE(3006), - [sym_stackalloc_expression] = STATE(3006), - [sym_range_expression] = STATE(3006), - [sym_tuple_expression] = STATE(2423), - [sym_literal] = STATE(3006), - [sym_character_literal] = STATE(3011), - [sym_string_literal] = STATE(3011), - [sym_raw_string_literal] = STATE(3011), - [sym_boolean_literal] = STATE(3011), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3006), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2603), + [sym__name] = STATE(5870), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2379), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(4714), + [sym_non_lvalue_expression] = STATE(3220), + [sym_lvalue_expression] = STATE(3386), + [sym__expression_statement_expression] = STATE(3236), + [sym_assignment_expression] = STATE(3221), + [sym_binary_expression] = STATE(3236), + [sym_postfix_unary_expression] = STATE(3221), + [sym_prefix_unary_expression] = STATE(3221), + [sym__pointer_indirection_expression] = STATE(2602), + [sym_query_expression] = STATE(3236), + [sym_from_clause] = STATE(6166), + [sym_conditional_expression] = STATE(3236), + [sym_conditional_access_expression] = STATE(3236), + [sym_as_expression] = STATE(3236), + [sym_is_expression] = STATE(3236), + [sym_is_pattern_expression] = STATE(3236), + [sym_cast_expression] = STATE(3236), + [sym_checked_expression] = STATE(3236), + [sym_invocation_expression] = STATE(3221), + [sym_switch_expression] = STATE(3236), + [sym_await_expression] = STATE(3221), + [sym_throw_expression] = STATE(3236), + [sym_element_access_expression] = STATE(2602), + [sym_interpolated_string_expression] = STATE(3236), + [sym_member_access_expression] = STATE(2602), + [sym_object_creation_expression] = STATE(3221), + [sym_parenthesized_expression] = STATE(3221), + [sym__parenthesized_lvalue_expression] = STATE(2602), + [sym_lambda_expression] = STATE(3236), + [sym__lambda_expression_init] = STATE(7418), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3236), + [sym_anonymous_method_expression] = STATE(3236), + [sym_anonymous_object_creation_expression] = STATE(3236), + [sym_implicit_array_creation_expression] = STATE(3236), + [sym_implicit_object_creation_expression] = STATE(3236), + [sym_implicit_stackalloc_expression] = STATE(3236), + [sym_initializer_expression] = STATE(3236), + [sym_default_expression] = STATE(3236), + [sym_with_expression] = STATE(3236), + [sym_sizeof_expression] = STATE(3236), + [sym_typeof_expression] = STATE(3236), + [sym_makeref_expression] = STATE(3236), + [sym_ref_expression] = STATE(3236), + [sym_reftype_expression] = STATE(3236), + [sym_refvalue_expression] = STATE(3236), + [sym_stackalloc_expression] = STATE(3236), + [sym_range_expression] = STATE(3236), + [sym_tuple_expression] = STATE(2602), + [sym_literal] = STATE(3236), + [sym_character_literal] = STATE(3272), + [sym_string_literal] = STATE(3272), + [sym_raw_string_literal] = STATE(3272), + [sym_boolean_literal] = STATE(3272), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3236), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(1306), [sym_preproc_endregion] = STATE(1306), [sym_preproc_line] = STATE(1306), @@ -262573,47 +262459,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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3440), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3379), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1241), - [anon_sym_LPAREN] = ACTIONS(2141), - [anon_sym_ref] = ACTIONS(2143), - [anon_sym_LBRACE] = ACTIONS(1247), - [anon_sym_delegate] = ACTIONS(1249), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1149), + [anon_sym_LPAREN] = ACTIONS(1821), + [anon_sym_ref] = ACTIONS(1823), + [anon_sym_LBRACE] = ACTIONS(1155), + [anon_sym_delegate] = ACTIONS(1157), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(2145), + [anon_sym_new] = ACTIONS(1825), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1253), - [anon_sym_BANG] = ACTIONS(2149), - [anon_sym_TILDE] = ACTIONS(2149), - [anon_sym_PLUS_PLUS] = ACTIONS(2149), - [anon_sym_DASH_DASH] = ACTIONS(2149), - [anon_sym_true] = ACTIONS(1259), - [anon_sym_false] = ACTIONS(1259), - [anon_sym_PLUS] = ACTIONS(2147), - [anon_sym_DASH] = ACTIONS(2147), - [anon_sym_STAR] = ACTIONS(2151), - [anon_sym_CARET] = ACTIONS(2149), - [anon_sym_AMP] = ACTIONS(2149), - [anon_sym_this] = ACTIONS(1263), + [anon_sym_checked] = ACTIONS(1163), + [anon_sym_BANG] = ACTIONS(1829), + [anon_sym_TILDE] = ACTIONS(1829), + [anon_sym_PLUS_PLUS] = ACTIONS(1829), + [anon_sym_DASH_DASH] = ACTIONS(1829), + [anon_sym_true] = ACTIONS(1169), + [anon_sym_false] = ACTIONS(1169), + [anon_sym_PLUS] = ACTIONS(1827), + [anon_sym_DASH] = ACTIONS(1827), + [anon_sym_STAR] = ACTIONS(1831), + [anon_sym_CARET] = ACTIONS(1829), + [anon_sym_AMP] = ACTIONS(1829), + [anon_sym_this] = ACTIONS(1173), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1265), + [anon_sym_base] = ACTIONS(1175), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1267), - [anon_sym_unchecked] = ACTIONS(1253), + [sym_predefined_type] = ACTIONS(1177), + [anon_sym_unchecked] = ACTIONS(1163), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1269), - [anon_sym_throw] = ACTIONS(2153), + [anon_sym_default] = ACTIONS(1179), + [anon_sym_throw] = ACTIONS(1833), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2155), - [anon_sym_DOT_DOT] = ACTIONS(2157), + [anon_sym_await] = ACTIONS(1835), + [anon_sym_DOT_DOT] = ACTIONS(1837), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -262626,19 +262512,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1277), - [anon_sym_sizeof] = ACTIONS(1279), - [anon_sym_typeof] = ACTIONS(1281), - [anon_sym___makeref] = ACTIONS(1283), - [anon_sym___reftype] = ACTIONS(1285), - [anon_sym___refvalue] = ACTIONS(1287), - [sym_null_literal] = ACTIONS(1289), - [anon_sym_SQUOTE] = ACTIONS(1291), - [sym_integer_literal] = ACTIONS(1289), - [sym_real_literal] = ACTIONS(1293), - [anon_sym_DQUOTE] = ACTIONS(1295), - [sym_verbatim_string_literal] = ACTIONS(1293), - [aux_sym_preproc_if_token1] = ACTIONS(1297), + [anon_sym_stackalloc] = ACTIONS(1187), + [anon_sym_sizeof] = ACTIONS(1189), + [anon_sym_typeof] = ACTIONS(1191), + [anon_sym___makeref] = ACTIONS(1193), + [anon_sym___reftype] = ACTIONS(1195), + [anon_sym___refvalue] = ACTIONS(1197), + [sym_null_literal] = ACTIONS(1199), + [anon_sym_SQUOTE] = ACTIONS(1201), + [sym_integer_literal] = ACTIONS(1199), + [sym_real_literal] = ACTIONS(1203), + [anon_sym_DQUOTE] = ACTIONS(1205), + [sym_verbatim_string_literal] = ACTIONS(1203), + [aux_sym_preproc_if_token1] = ACTIONS(1207), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -262649,90 +262535,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1299), - [sym_interpolation_verbatim_start] = ACTIONS(1301), - [sym_interpolation_raw_start] = ACTIONS(1303), - [sym_raw_string_start] = ACTIONS(1305), + [sym_interpolation_regular_start] = ACTIONS(1209), + [sym_interpolation_verbatim_start] = ACTIONS(1211), + [sym_interpolation_raw_start] = ACTIONS(1213), + [sym_raw_string_start] = ACTIONS(1215), }, [1307] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(5876), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2376), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(3519), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3681), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3080), - [sym_postfix_unary_expression] = STATE(3111), - [sym_prefix_unary_expression] = STATE(3111), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6170), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3080), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3111), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3080), - [sym_member_access_expression] = STATE(2484), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3111), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7511), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(3080), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3080), - [sym_typeof_expression] = STATE(3080), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2484), - [sym_literal] = STATE(3080), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2603), + [sym__name] = STATE(5870), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2379), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(4693), + [sym_non_lvalue_expression] = STATE(3220), + [sym_lvalue_expression] = STATE(3386), + [sym__expression_statement_expression] = STATE(3236), + [sym_assignment_expression] = STATE(3221), + [sym_binary_expression] = STATE(3236), + [sym_postfix_unary_expression] = STATE(3221), + [sym_prefix_unary_expression] = STATE(3221), + [sym__pointer_indirection_expression] = STATE(2602), + [sym_query_expression] = STATE(3236), + [sym_from_clause] = STATE(6166), + [sym_conditional_expression] = STATE(3236), + [sym_conditional_access_expression] = STATE(3236), + [sym_as_expression] = STATE(3236), + [sym_is_expression] = STATE(3236), + [sym_is_pattern_expression] = STATE(3236), + [sym_cast_expression] = STATE(3236), + [sym_checked_expression] = STATE(3236), + [sym_invocation_expression] = STATE(3221), + [sym_switch_expression] = STATE(3236), + [sym_await_expression] = STATE(3221), + [sym_throw_expression] = STATE(3236), + [sym_element_access_expression] = STATE(2602), + [sym_interpolated_string_expression] = STATE(3236), + [sym_member_access_expression] = STATE(2602), + [sym_object_creation_expression] = STATE(3221), + [sym_parenthesized_expression] = STATE(3221), + [sym__parenthesized_lvalue_expression] = STATE(2602), + [sym_lambda_expression] = STATE(3236), + [sym__lambda_expression_init] = STATE(7418), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3236), + [sym_anonymous_method_expression] = STATE(3236), + [sym_anonymous_object_creation_expression] = STATE(3236), + [sym_implicit_array_creation_expression] = STATE(3236), + [sym_implicit_object_creation_expression] = STATE(3236), + [sym_implicit_stackalloc_expression] = STATE(3236), + [sym_initializer_expression] = STATE(3236), + [sym_default_expression] = STATE(3236), + [sym_with_expression] = STATE(3236), + [sym_sizeof_expression] = STATE(3236), + [sym_typeof_expression] = STATE(3236), + [sym_makeref_expression] = STATE(3236), + [sym_ref_expression] = STATE(3236), + [sym_reftype_expression] = STATE(3236), + [sym_refvalue_expression] = STATE(3236), + [sym_stackalloc_expression] = STATE(3236), + [sym_range_expression] = STATE(3236), + [sym_tuple_expression] = STATE(2602), + [sym_literal] = STATE(3236), + [sym_character_literal] = STATE(3272), + [sym_string_literal] = STATE(3272), + [sym_raw_string_literal] = STATE(3272), + [sym_boolean_literal] = STATE(3272), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3236), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(1307), [sym_preproc_endregion] = STATE(1307), [sym_preproc_line] = STATE(1307), @@ -262742,47 +262628,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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3379), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1481), - [anon_sym_LPAREN] = ACTIONS(2231), - [anon_sym_ref] = ACTIONS(2233), - [anon_sym_LBRACE] = ACTIONS(1487), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1149), + [anon_sym_LPAREN] = ACTIONS(1821), + [anon_sym_ref] = ACTIONS(1823), + [anon_sym_LBRACE] = ACTIONS(1155), + [anon_sym_delegate] = ACTIONS(1157), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(2235), + [anon_sym_new] = ACTIONS(1825), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1067), - [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_checked] = ACTIONS(1163), + [anon_sym_BANG] = ACTIONS(1829), + [anon_sym_TILDE] = ACTIONS(1829), + [anon_sym_PLUS_PLUS] = ACTIONS(1829), + [anon_sym_DASH_DASH] = ACTIONS(1829), + [anon_sym_true] = ACTIONS(1169), + [anon_sym_false] = ACTIONS(1169), + [anon_sym_PLUS] = ACTIONS(1827), + [anon_sym_DASH] = ACTIONS(1827), + [anon_sym_STAR] = ACTIONS(1831), + [anon_sym_CARET] = ACTIONS(1829), + [anon_sym_AMP] = ACTIONS(1829), + [anon_sym_this] = ACTIONS(1173), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), + [anon_sym_base] = ACTIONS(1175), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1067), + [sym_predefined_type] = ACTIONS(1177), + [anon_sym_unchecked] = ACTIONS(1163), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(2243), + [anon_sym_default] = ACTIONS(1179), + [anon_sym_throw] = ACTIONS(1833), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2245), - [anon_sym_DOT_DOT] = ACTIONS(2247), + [anon_sym_await] = ACTIONS(1835), + [anon_sym_DOT_DOT] = ACTIONS(1837), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -262795,19 +262681,19 @@ static const uint16_t ts_parse_table[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(1089), + [anon_sym_stackalloc] = ACTIONS(1187), + [anon_sym_sizeof] = ACTIONS(1189), + [anon_sym_typeof] = ACTIONS(1191), + [anon_sym___makeref] = ACTIONS(1193), + [anon_sym___reftype] = ACTIONS(1195), + [anon_sym___refvalue] = ACTIONS(1197), + [sym_null_literal] = ACTIONS(1199), + [anon_sym_SQUOTE] = ACTIONS(1201), + [sym_integer_literal] = ACTIONS(1199), + [sym_real_literal] = ACTIONS(1203), + [anon_sym_DQUOTE] = ACTIONS(1205), + [sym_verbatim_string_literal] = ACTIONS(1203), + [aux_sym_preproc_if_token1] = ACTIONS(1207), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -262818,90 +262704,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(151), - [sym_interpolation_verbatim_start] = ACTIONS(153), - [sym_interpolation_raw_start] = ACTIONS(155), - [sym_raw_string_start] = ACTIONS(157), + [sym_interpolation_regular_start] = ACTIONS(1209), + [sym_interpolation_verbatim_start] = ACTIONS(1211), + [sym_interpolation_raw_start] = ACTIONS(1213), + [sym_raw_string_start] = ACTIONS(1215), }, [1308] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2762), - [sym__name] = STATE(5876), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2376), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(5008), - [sym_non_lvalue_expression] = STATE(3438), - [sym_lvalue_expression] = STATE(3533), - [sym__expression_statement_expression] = STATE(3362), - [sym_assignment_expression] = STATE(3449), - [sym_binary_expression] = STATE(3362), - [sym_postfix_unary_expression] = STATE(3449), - [sym_prefix_unary_expression] = STATE(3449), - [sym__pointer_indirection_expression] = STATE(2747), - [sym_query_expression] = STATE(3362), - [sym_from_clause] = STATE(6175), - [sym_conditional_expression] = STATE(3362), - [sym_conditional_access_expression] = STATE(3362), - [sym_as_expression] = STATE(3362), - [sym_is_expression] = STATE(3362), - [sym_is_pattern_expression] = STATE(3362), - [sym_cast_expression] = STATE(3362), - [sym_checked_expression] = STATE(3362), - [sym_invocation_expression] = STATE(3449), - [sym_switch_expression] = STATE(3362), - [sym_await_expression] = STATE(3449), - [sym_throw_expression] = STATE(3362), - [sym_element_access_expression] = STATE(2747), - [sym_interpolated_string_expression] = STATE(3362), - [sym_member_access_expression] = STATE(2747), - [sym_object_creation_expression] = STATE(3449), - [sym_parenthesized_expression] = STATE(3449), - [sym__parenthesized_lvalue_expression] = STATE(2747), - [sym_lambda_expression] = STATE(3362), - [sym__lambda_expression_init] = STATE(7619), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3362), - [sym_anonymous_method_expression] = STATE(3362), - [sym_anonymous_object_creation_expression] = STATE(3362), - [sym_implicit_array_creation_expression] = STATE(3362), - [sym_implicit_object_creation_expression] = STATE(3362), - [sym_implicit_stackalloc_expression] = STATE(3362), - [sym_initializer_expression] = STATE(3362), - [sym_default_expression] = STATE(3362), - [sym_with_expression] = STATE(3362), - [sym_sizeof_expression] = STATE(3362), - [sym_typeof_expression] = STATE(3362), - [sym_makeref_expression] = STATE(3362), - [sym_ref_expression] = STATE(3362), - [sym_reftype_expression] = STATE(3362), - [sym_refvalue_expression] = STATE(3362), - [sym_stackalloc_expression] = STATE(3362), - [sym_range_expression] = STATE(3362), - [sym_tuple_expression] = STATE(2747), - [sym_literal] = STATE(3362), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3362), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2603), + [sym__name] = STATE(5870), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2379), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(4694), + [sym_non_lvalue_expression] = STATE(3220), + [sym_lvalue_expression] = STATE(3386), + [sym__expression_statement_expression] = STATE(3236), + [sym_assignment_expression] = STATE(3221), + [sym_binary_expression] = STATE(3236), + [sym_postfix_unary_expression] = STATE(3221), + [sym_prefix_unary_expression] = STATE(3221), + [sym__pointer_indirection_expression] = STATE(2602), + [sym_query_expression] = STATE(3236), + [sym_from_clause] = STATE(6166), + [sym_conditional_expression] = STATE(3236), + [sym_conditional_access_expression] = STATE(3236), + [sym_as_expression] = STATE(3236), + [sym_is_expression] = STATE(3236), + [sym_is_pattern_expression] = STATE(3236), + [sym_cast_expression] = STATE(3236), + [sym_checked_expression] = STATE(3236), + [sym_invocation_expression] = STATE(3221), + [sym_switch_expression] = STATE(3236), + [sym_await_expression] = STATE(3221), + [sym_throw_expression] = STATE(3236), + [sym_element_access_expression] = STATE(2602), + [sym_interpolated_string_expression] = STATE(3236), + [sym_member_access_expression] = STATE(2602), + [sym_object_creation_expression] = STATE(3221), + [sym_parenthesized_expression] = STATE(3221), + [sym__parenthesized_lvalue_expression] = STATE(2602), + [sym_lambda_expression] = STATE(3236), + [sym__lambda_expression_init] = STATE(7418), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3236), + [sym_anonymous_method_expression] = STATE(3236), + [sym_anonymous_object_creation_expression] = STATE(3236), + [sym_implicit_array_creation_expression] = STATE(3236), + [sym_implicit_object_creation_expression] = STATE(3236), + [sym_implicit_stackalloc_expression] = STATE(3236), + [sym_initializer_expression] = STATE(3236), + [sym_default_expression] = STATE(3236), + [sym_with_expression] = STATE(3236), + [sym_sizeof_expression] = STATE(3236), + [sym_typeof_expression] = STATE(3236), + [sym_makeref_expression] = STATE(3236), + [sym_ref_expression] = STATE(3236), + [sym_reftype_expression] = STATE(3236), + [sym_refvalue_expression] = STATE(3236), + [sym_stackalloc_expression] = STATE(3236), + [sym_range_expression] = STATE(3236), + [sym_tuple_expression] = STATE(2602), + [sym_literal] = STATE(3236), + [sym_character_literal] = STATE(3272), + [sym_string_literal] = STATE(3272), + [sym_raw_string_literal] = STATE(3272), + [sym_boolean_literal] = STATE(3272), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3236), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(1308), [sym_preproc_endregion] = STATE(1308), [sym_preproc_line] = STATE(1308), @@ -262911,47 +262797,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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3385), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3379), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1307), - [anon_sym_LPAREN] = ACTIONS(1877), - [anon_sym_ref] = ACTIONS(1879), - [anon_sym_LBRACE] = ACTIONS(1313), - [anon_sym_delegate] = ACTIONS(1315), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1149), + [anon_sym_LPAREN] = ACTIONS(1821), + [anon_sym_ref] = ACTIONS(1823), + [anon_sym_LBRACE] = ACTIONS(1155), + [anon_sym_delegate] = ACTIONS(1157), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1881), + [anon_sym_new] = ACTIONS(1825), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1319), - [anon_sym_BANG] = ACTIONS(1885), - [anon_sym_TILDE] = ACTIONS(1885), - [anon_sym_PLUS_PLUS] = ACTIONS(1885), - [anon_sym_DASH_DASH] = ACTIONS(1885), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1883), - [anon_sym_DASH] = ACTIONS(1883), - [anon_sym_STAR] = ACTIONS(1887), - [anon_sym_CARET] = ACTIONS(1885), - [anon_sym_AMP] = ACTIONS(1885), - [anon_sym_this] = ACTIONS(1323), + [anon_sym_checked] = ACTIONS(1163), + [anon_sym_BANG] = ACTIONS(1829), + [anon_sym_TILDE] = ACTIONS(1829), + [anon_sym_PLUS_PLUS] = ACTIONS(1829), + [anon_sym_DASH_DASH] = ACTIONS(1829), + [anon_sym_true] = ACTIONS(1169), + [anon_sym_false] = ACTIONS(1169), + [anon_sym_PLUS] = ACTIONS(1827), + [anon_sym_DASH] = ACTIONS(1827), + [anon_sym_STAR] = ACTIONS(1831), + [anon_sym_CARET] = ACTIONS(1829), + [anon_sym_AMP] = ACTIONS(1829), + [anon_sym_this] = ACTIONS(1173), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1325), + [anon_sym_base] = ACTIONS(1175), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1319), + [sym_predefined_type] = ACTIONS(1177), + [anon_sym_unchecked] = ACTIONS(1163), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1889), + [anon_sym_default] = ACTIONS(1179), + [anon_sym_throw] = ACTIONS(1833), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1891), - [anon_sym_DOT_DOT] = ACTIONS(1893), + [anon_sym_await] = ACTIONS(1835), + [anon_sym_DOT_DOT] = ACTIONS(1837), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -262964,19 +262850,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1333), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(1335), - [anon_sym___reftype] = ACTIONS(1337), - [anon_sym___refvalue] = ACTIONS(1339), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1341), + [anon_sym_stackalloc] = ACTIONS(1187), + [anon_sym_sizeof] = ACTIONS(1189), + [anon_sym_typeof] = ACTIONS(1191), + [anon_sym___makeref] = ACTIONS(1193), + [anon_sym___reftype] = ACTIONS(1195), + [anon_sym___refvalue] = ACTIONS(1197), + [sym_null_literal] = ACTIONS(1199), + [anon_sym_SQUOTE] = ACTIONS(1201), + [sym_integer_literal] = ACTIONS(1199), + [sym_real_literal] = ACTIONS(1203), + [anon_sym_DQUOTE] = ACTIONS(1205), + [sym_verbatim_string_literal] = ACTIONS(1203), + [aux_sym_preproc_if_token1] = ACTIONS(1207), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -262987,90 +262873,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(151), - [sym_interpolation_verbatim_start] = ACTIONS(153), - [sym_interpolation_raw_start] = ACTIONS(155), - [sym_raw_string_start] = ACTIONS(157), + [sym_interpolation_regular_start] = ACTIONS(1209), + [sym_interpolation_verbatim_start] = ACTIONS(1211), + [sym_interpolation_raw_start] = ACTIONS(1213), + [sym_raw_string_start] = ACTIONS(1215), }, [1309] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(5876), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2376), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(5449), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3681), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3080), - [sym_postfix_unary_expression] = STATE(3111), - [sym_prefix_unary_expression] = STATE(3111), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6170), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3080), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3111), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3080), - [sym_member_access_expression] = STATE(2484), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3111), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7511), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(3080), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3080), - [sym_typeof_expression] = STATE(3080), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2484), - [sym_literal] = STATE(3080), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2603), + [sym__name] = STATE(5870), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2379), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(4695), + [sym_non_lvalue_expression] = STATE(3220), + [sym_lvalue_expression] = STATE(3386), + [sym__expression_statement_expression] = STATE(3236), + [sym_assignment_expression] = STATE(3221), + [sym_binary_expression] = STATE(3236), + [sym_postfix_unary_expression] = STATE(3221), + [sym_prefix_unary_expression] = STATE(3221), + [sym__pointer_indirection_expression] = STATE(2602), + [sym_query_expression] = STATE(3236), + [sym_from_clause] = STATE(6166), + [sym_conditional_expression] = STATE(3236), + [sym_conditional_access_expression] = STATE(3236), + [sym_as_expression] = STATE(3236), + [sym_is_expression] = STATE(3236), + [sym_is_pattern_expression] = STATE(3236), + [sym_cast_expression] = STATE(3236), + [sym_checked_expression] = STATE(3236), + [sym_invocation_expression] = STATE(3221), + [sym_switch_expression] = STATE(3236), + [sym_await_expression] = STATE(3221), + [sym_throw_expression] = STATE(3236), + [sym_element_access_expression] = STATE(2602), + [sym_interpolated_string_expression] = STATE(3236), + [sym_member_access_expression] = STATE(2602), + [sym_object_creation_expression] = STATE(3221), + [sym_parenthesized_expression] = STATE(3221), + [sym__parenthesized_lvalue_expression] = STATE(2602), + [sym_lambda_expression] = STATE(3236), + [sym__lambda_expression_init] = STATE(7418), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3236), + [sym_anonymous_method_expression] = STATE(3236), + [sym_anonymous_object_creation_expression] = STATE(3236), + [sym_implicit_array_creation_expression] = STATE(3236), + [sym_implicit_object_creation_expression] = STATE(3236), + [sym_implicit_stackalloc_expression] = STATE(3236), + [sym_initializer_expression] = STATE(3236), + [sym_default_expression] = STATE(3236), + [sym_with_expression] = STATE(3236), + [sym_sizeof_expression] = STATE(3236), + [sym_typeof_expression] = STATE(3236), + [sym_makeref_expression] = STATE(3236), + [sym_ref_expression] = STATE(3236), + [sym_reftype_expression] = STATE(3236), + [sym_refvalue_expression] = STATE(3236), + [sym_stackalloc_expression] = STATE(3236), + [sym_range_expression] = STATE(3236), + [sym_tuple_expression] = STATE(2602), + [sym_literal] = STATE(3236), + [sym_character_literal] = STATE(3272), + [sym_string_literal] = STATE(3272), + [sym_raw_string_literal] = STATE(3272), + [sym_boolean_literal] = STATE(3272), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3236), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(1309), [sym_preproc_endregion] = STATE(1309), [sym_preproc_line] = STATE(1309), @@ -263080,47 +262966,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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3379), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1481), - [anon_sym_LPAREN] = ACTIONS(2231), - [anon_sym_ref] = ACTIONS(2233), - [anon_sym_LBRACE] = ACTIONS(1487), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1149), + [anon_sym_LPAREN] = ACTIONS(1821), + [anon_sym_ref] = ACTIONS(1823), + [anon_sym_LBRACE] = ACTIONS(1155), + [anon_sym_delegate] = ACTIONS(1157), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(2235), + [anon_sym_new] = ACTIONS(1825), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1067), - [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_checked] = ACTIONS(1163), + [anon_sym_BANG] = ACTIONS(1829), + [anon_sym_TILDE] = ACTIONS(1829), + [anon_sym_PLUS_PLUS] = ACTIONS(1829), + [anon_sym_DASH_DASH] = ACTIONS(1829), + [anon_sym_true] = ACTIONS(1169), + [anon_sym_false] = ACTIONS(1169), + [anon_sym_PLUS] = ACTIONS(1827), + [anon_sym_DASH] = ACTIONS(1827), + [anon_sym_STAR] = ACTIONS(1831), + [anon_sym_CARET] = ACTIONS(1829), + [anon_sym_AMP] = ACTIONS(1829), + [anon_sym_this] = ACTIONS(1173), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), + [anon_sym_base] = ACTIONS(1175), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1067), + [sym_predefined_type] = ACTIONS(1177), + [anon_sym_unchecked] = ACTIONS(1163), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(2243), + [anon_sym_default] = ACTIONS(1179), + [anon_sym_throw] = ACTIONS(1833), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2245), - [anon_sym_DOT_DOT] = ACTIONS(2247), + [anon_sym_await] = ACTIONS(1835), + [anon_sym_DOT_DOT] = ACTIONS(1837), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -263133,19 +263019,19 @@ static const uint16_t ts_parse_table[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(1089), + [anon_sym_stackalloc] = ACTIONS(1187), + [anon_sym_sizeof] = ACTIONS(1189), + [anon_sym_typeof] = ACTIONS(1191), + [anon_sym___makeref] = ACTIONS(1193), + [anon_sym___reftype] = ACTIONS(1195), + [anon_sym___refvalue] = ACTIONS(1197), + [sym_null_literal] = ACTIONS(1199), + [anon_sym_SQUOTE] = ACTIONS(1201), + [sym_integer_literal] = ACTIONS(1199), + [sym_real_literal] = ACTIONS(1203), + [anon_sym_DQUOTE] = ACTIONS(1205), + [sym_verbatim_string_literal] = ACTIONS(1203), + [aux_sym_preproc_if_token1] = ACTIONS(1207), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -263156,90 +263042,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(151), - [sym_interpolation_verbatim_start] = ACTIONS(153), - [sym_interpolation_raw_start] = ACTIONS(155), - [sym_raw_string_start] = ACTIONS(157), + [sym_interpolation_regular_start] = ACTIONS(1209), + [sym_interpolation_verbatim_start] = ACTIONS(1211), + [sym_interpolation_raw_start] = ACTIONS(1213), + [sym_raw_string_start] = ACTIONS(1215), }, [1310] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2420), - [sym__name] = STATE(5904), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2395), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(5206), - [sym_non_lvalue_expression] = STATE(3066), - [sym_lvalue_expression] = STATE(3557), - [sym__expression_statement_expression] = STATE(3006), - [sym_assignment_expression] = STATE(3020), - [sym_binary_expression] = STATE(3006), - [sym_postfix_unary_expression] = STATE(3020), - [sym_prefix_unary_expression] = STATE(3020), - [sym__pointer_indirection_expression] = STATE(2423), - [sym_query_expression] = STATE(3006), - [sym_from_clause] = STATE(6176), - [sym_conditional_expression] = STATE(3006), - [sym_conditional_access_expression] = STATE(3006), - [sym_as_expression] = STATE(3006), - [sym_is_expression] = STATE(3006), - [sym_is_pattern_expression] = STATE(3006), - [sym_cast_expression] = STATE(3006), - [sym_checked_expression] = STATE(3006), - [sym_invocation_expression] = STATE(3020), - [sym_switch_expression] = STATE(3006), - [sym_await_expression] = STATE(3020), - [sym_throw_expression] = STATE(3006), - [sym_element_access_expression] = STATE(2423), - [sym_interpolated_string_expression] = STATE(3006), - [sym_member_access_expression] = STATE(2423), - [sym_object_creation_expression] = STATE(3020), - [sym_parenthesized_expression] = STATE(3020), - [sym__parenthesized_lvalue_expression] = STATE(2423), - [sym_lambda_expression] = STATE(3006), - [sym__lambda_expression_init] = STATE(7473), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3006), - [sym_anonymous_method_expression] = STATE(3006), - [sym_anonymous_object_creation_expression] = STATE(3006), - [sym_implicit_array_creation_expression] = STATE(3006), - [sym_implicit_object_creation_expression] = STATE(3006), - [sym_implicit_stackalloc_expression] = STATE(3006), - [sym_initializer_expression] = STATE(3006), - [sym_default_expression] = STATE(3006), - [sym_with_expression] = STATE(3006), - [sym_sizeof_expression] = STATE(3006), - [sym_typeof_expression] = STATE(3006), - [sym_makeref_expression] = STATE(3006), - [sym_ref_expression] = STATE(3006), - [sym_reftype_expression] = STATE(3006), - [sym_refvalue_expression] = STATE(3006), - [sym_stackalloc_expression] = STATE(3006), - [sym_range_expression] = STATE(3006), - [sym_tuple_expression] = STATE(2423), - [sym_literal] = STATE(3006), - [sym_character_literal] = STATE(3011), - [sym_string_literal] = STATE(3011), - [sym_raw_string_literal] = STATE(3011), - [sym_boolean_literal] = STATE(3011), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3006), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2603), + [sym__name] = STATE(5870), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2379), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(4545), + [sym_non_lvalue_expression] = STATE(3220), + [sym_lvalue_expression] = STATE(3386), + [sym__expression_statement_expression] = STATE(3236), + [sym_assignment_expression] = STATE(3221), + [sym_binary_expression] = STATE(3236), + [sym_postfix_unary_expression] = STATE(3221), + [sym_prefix_unary_expression] = STATE(3221), + [sym__pointer_indirection_expression] = STATE(2602), + [sym_query_expression] = STATE(3236), + [sym_from_clause] = STATE(6166), + [sym_conditional_expression] = STATE(3236), + [sym_conditional_access_expression] = STATE(3236), + [sym_as_expression] = STATE(3236), + [sym_is_expression] = STATE(3236), + [sym_is_pattern_expression] = STATE(3236), + [sym_cast_expression] = STATE(3236), + [sym_checked_expression] = STATE(3236), + [sym_invocation_expression] = STATE(3221), + [sym_switch_expression] = STATE(3236), + [sym_await_expression] = STATE(3221), + [sym_throw_expression] = STATE(3236), + [sym_element_access_expression] = STATE(2602), + [sym_interpolated_string_expression] = STATE(3236), + [sym_member_access_expression] = STATE(2602), + [sym_object_creation_expression] = STATE(3221), + [sym_parenthesized_expression] = STATE(3221), + [sym__parenthesized_lvalue_expression] = STATE(2602), + [sym_lambda_expression] = STATE(3236), + [sym__lambda_expression_init] = STATE(7418), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3236), + [sym_anonymous_method_expression] = STATE(3236), + [sym_anonymous_object_creation_expression] = STATE(3236), + [sym_implicit_array_creation_expression] = STATE(3236), + [sym_implicit_object_creation_expression] = STATE(3236), + [sym_implicit_stackalloc_expression] = STATE(3236), + [sym_initializer_expression] = STATE(3236), + [sym_default_expression] = STATE(3236), + [sym_with_expression] = STATE(3236), + [sym_sizeof_expression] = STATE(3236), + [sym_typeof_expression] = STATE(3236), + [sym_makeref_expression] = STATE(3236), + [sym_ref_expression] = STATE(3236), + [sym_reftype_expression] = STATE(3236), + [sym_refvalue_expression] = STATE(3236), + [sym_stackalloc_expression] = STATE(3236), + [sym_range_expression] = STATE(3236), + [sym_tuple_expression] = STATE(2602), + [sym_literal] = STATE(3236), + [sym_character_literal] = STATE(3272), + [sym_string_literal] = STATE(3272), + [sym_raw_string_literal] = STATE(3272), + [sym_boolean_literal] = STATE(3272), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3236), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(1310), [sym_preproc_endregion] = STATE(1310), [sym_preproc_line] = STATE(1310), @@ -263249,47 +263135,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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3440), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3379), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1241), - [anon_sym_LPAREN] = ACTIONS(2141), - [anon_sym_ref] = ACTIONS(2143), - [anon_sym_LBRACE] = ACTIONS(1247), - [anon_sym_delegate] = ACTIONS(1249), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1149), + [anon_sym_LPAREN] = ACTIONS(1821), + [anon_sym_ref] = ACTIONS(1823), + [anon_sym_LBRACE] = ACTIONS(1155), + [anon_sym_delegate] = ACTIONS(1157), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(2145), + [anon_sym_new] = ACTIONS(1825), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1253), - [anon_sym_BANG] = ACTIONS(2149), - [anon_sym_TILDE] = ACTIONS(2149), - [anon_sym_PLUS_PLUS] = ACTIONS(2149), - [anon_sym_DASH_DASH] = ACTIONS(2149), - [anon_sym_true] = ACTIONS(1259), - [anon_sym_false] = ACTIONS(1259), - [anon_sym_PLUS] = ACTIONS(2147), - [anon_sym_DASH] = ACTIONS(2147), - [anon_sym_STAR] = ACTIONS(2151), - [anon_sym_CARET] = ACTIONS(2149), - [anon_sym_AMP] = ACTIONS(2149), - [anon_sym_this] = ACTIONS(1263), + [anon_sym_checked] = ACTIONS(1163), + [anon_sym_BANG] = ACTIONS(1829), + [anon_sym_TILDE] = ACTIONS(1829), + [anon_sym_PLUS_PLUS] = ACTIONS(1829), + [anon_sym_DASH_DASH] = ACTIONS(1829), + [anon_sym_true] = ACTIONS(1169), + [anon_sym_false] = ACTIONS(1169), + [anon_sym_PLUS] = ACTIONS(1827), + [anon_sym_DASH] = ACTIONS(1827), + [anon_sym_STAR] = ACTIONS(1831), + [anon_sym_CARET] = ACTIONS(1829), + [anon_sym_AMP] = ACTIONS(1829), + [anon_sym_this] = ACTIONS(1173), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1265), + [anon_sym_base] = ACTIONS(1175), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1267), - [anon_sym_unchecked] = ACTIONS(1253), + [sym_predefined_type] = ACTIONS(1177), + [anon_sym_unchecked] = ACTIONS(1163), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1269), - [anon_sym_throw] = ACTIONS(2153), + [anon_sym_default] = ACTIONS(1179), + [anon_sym_throw] = ACTIONS(1833), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2155), - [anon_sym_DOT_DOT] = ACTIONS(2157), + [anon_sym_await] = ACTIONS(1835), + [anon_sym_DOT_DOT] = ACTIONS(1837), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -263302,19 +263188,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1277), - [anon_sym_sizeof] = ACTIONS(1279), - [anon_sym_typeof] = ACTIONS(1281), - [anon_sym___makeref] = ACTIONS(1283), - [anon_sym___reftype] = ACTIONS(1285), - [anon_sym___refvalue] = ACTIONS(1287), - [sym_null_literal] = ACTIONS(1289), - [anon_sym_SQUOTE] = ACTIONS(1291), - [sym_integer_literal] = ACTIONS(1289), - [sym_real_literal] = ACTIONS(1293), - [anon_sym_DQUOTE] = ACTIONS(1295), - [sym_verbatim_string_literal] = ACTIONS(1293), - [aux_sym_preproc_if_token1] = ACTIONS(1297), + [anon_sym_stackalloc] = ACTIONS(1187), + [anon_sym_sizeof] = ACTIONS(1189), + [anon_sym_typeof] = ACTIONS(1191), + [anon_sym___makeref] = ACTIONS(1193), + [anon_sym___reftype] = ACTIONS(1195), + [anon_sym___refvalue] = ACTIONS(1197), + [sym_null_literal] = ACTIONS(1199), + [anon_sym_SQUOTE] = ACTIONS(1201), + [sym_integer_literal] = ACTIONS(1199), + [sym_real_literal] = ACTIONS(1203), + [anon_sym_DQUOTE] = ACTIONS(1205), + [sym_verbatim_string_literal] = ACTIONS(1203), + [aux_sym_preproc_if_token1] = ACTIONS(1207), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -263325,90 +263211,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1299), - [sym_interpolation_verbatim_start] = ACTIONS(1301), - [sym_interpolation_raw_start] = ACTIONS(1303), - [sym_raw_string_start] = ACTIONS(1305), + [sym_interpolation_regular_start] = ACTIONS(1209), + [sym_interpolation_verbatim_start] = ACTIONS(1211), + [sym_interpolation_raw_start] = ACTIONS(1213), + [sym_raw_string_start] = ACTIONS(1215), }, [1311] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2762), - [sym__name] = STATE(5910), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2247), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(4184), - [sym_non_lvalue_expression] = STATE(3438), - [sym_lvalue_expression] = STATE(3136), - [sym__expression_statement_expression] = STATE(3362), - [sym_assignment_expression] = STATE(3449), - [sym_binary_expression] = STATE(3362), - [sym_postfix_unary_expression] = STATE(3449), - [sym_prefix_unary_expression] = STATE(3449), - [sym__pointer_indirection_expression] = STATE(2747), - [sym_query_expression] = STATE(3362), - [sym_from_clause] = STATE(6171), - [sym_conditional_expression] = STATE(3362), - [sym_conditional_access_expression] = STATE(3362), - [sym_as_expression] = STATE(3362), - [sym_is_expression] = STATE(3362), - [sym_is_pattern_expression] = STATE(3362), - [sym_cast_expression] = STATE(3362), - [sym_checked_expression] = STATE(3362), - [sym_invocation_expression] = STATE(3449), - [sym_switch_expression] = STATE(3362), - [sym_await_expression] = STATE(3449), - [sym_throw_expression] = STATE(3362), - [sym_element_access_expression] = STATE(2747), - [sym_interpolated_string_expression] = STATE(3362), - [sym_member_access_expression] = STATE(2747), - [sym_object_creation_expression] = STATE(3449), - [sym_parenthesized_expression] = STATE(3449), - [sym__parenthesized_lvalue_expression] = STATE(2747), - [sym_lambda_expression] = STATE(3362), - [sym__lambda_expression_init] = STATE(7452), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3362), - [sym_anonymous_method_expression] = STATE(3362), - [sym_anonymous_object_creation_expression] = STATE(3362), - [sym_implicit_array_creation_expression] = STATE(3362), - [sym_implicit_object_creation_expression] = STATE(3362), - [sym_implicit_stackalloc_expression] = STATE(3362), - [sym_initializer_expression] = STATE(3362), - [sym_default_expression] = STATE(3362), - [sym_with_expression] = STATE(3362), - [sym_sizeof_expression] = STATE(3362), - [sym_typeof_expression] = STATE(3362), - [sym_makeref_expression] = STATE(3362), - [sym_ref_expression] = STATE(3362), - [sym_reftype_expression] = STATE(3362), - [sym_refvalue_expression] = STATE(3362), - [sym_stackalloc_expression] = STATE(3362), - [sym_range_expression] = STATE(3362), - [sym_tuple_expression] = STATE(2747), - [sym_literal] = STATE(3362), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3362), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2603), + [sym__name] = STATE(5870), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2379), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(4696), + [sym_non_lvalue_expression] = STATE(3220), + [sym_lvalue_expression] = STATE(3386), + [sym__expression_statement_expression] = STATE(3236), + [sym_assignment_expression] = STATE(3221), + [sym_binary_expression] = STATE(3236), + [sym_postfix_unary_expression] = STATE(3221), + [sym_prefix_unary_expression] = STATE(3221), + [sym__pointer_indirection_expression] = STATE(2602), + [sym_query_expression] = STATE(3236), + [sym_from_clause] = STATE(6166), + [sym_conditional_expression] = STATE(3236), + [sym_conditional_access_expression] = STATE(3236), + [sym_as_expression] = STATE(3236), + [sym_is_expression] = STATE(3236), + [sym_is_pattern_expression] = STATE(3236), + [sym_cast_expression] = STATE(3236), + [sym_checked_expression] = STATE(3236), + [sym_invocation_expression] = STATE(3221), + [sym_switch_expression] = STATE(3236), + [sym_await_expression] = STATE(3221), + [sym_throw_expression] = STATE(3236), + [sym_element_access_expression] = STATE(2602), + [sym_interpolated_string_expression] = STATE(3236), + [sym_member_access_expression] = STATE(2602), + [sym_object_creation_expression] = STATE(3221), + [sym_parenthesized_expression] = STATE(3221), + [sym__parenthesized_lvalue_expression] = STATE(2602), + [sym_lambda_expression] = STATE(3236), + [sym__lambda_expression_init] = STATE(7418), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3236), + [sym_anonymous_method_expression] = STATE(3236), + [sym_anonymous_object_creation_expression] = STATE(3236), + [sym_implicit_array_creation_expression] = STATE(3236), + [sym_implicit_object_creation_expression] = STATE(3236), + [sym_implicit_stackalloc_expression] = STATE(3236), + [sym_initializer_expression] = STATE(3236), + [sym_default_expression] = STATE(3236), + [sym_with_expression] = STATE(3236), + [sym_sizeof_expression] = STATE(3236), + [sym_typeof_expression] = STATE(3236), + [sym_makeref_expression] = STATE(3236), + [sym_ref_expression] = STATE(3236), + [sym_reftype_expression] = STATE(3236), + [sym_refvalue_expression] = STATE(3236), + [sym_stackalloc_expression] = STATE(3236), + [sym_range_expression] = STATE(3236), + [sym_tuple_expression] = STATE(2602), + [sym_literal] = STATE(3236), + [sym_character_literal] = STATE(3272), + [sym_string_literal] = STATE(3272), + [sym_raw_string_literal] = STATE(3272), + [sym_boolean_literal] = STATE(3272), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3236), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(1311), [sym_preproc_endregion] = STATE(1311), [sym_preproc_line] = STATE(1311), @@ -263418,47 +263304,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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3385), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3379), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1307), - [anon_sym_LPAREN] = ACTIONS(1309), - [anon_sym_ref] = ACTIONS(1311), - [anon_sym_LBRACE] = ACTIONS(1313), - [anon_sym_delegate] = ACTIONS(1315), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1149), + [anon_sym_LPAREN] = ACTIONS(1821), + [anon_sym_ref] = ACTIONS(1823), + [anon_sym_LBRACE] = ACTIONS(1155), + [anon_sym_delegate] = ACTIONS(1157), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1317), + [anon_sym_new] = ACTIONS(1825), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1319), - [anon_sym_BANG] = ACTIONS(1069), - [anon_sym_TILDE] = ACTIONS(1069), - [anon_sym_PLUS_PLUS] = ACTIONS(1069), - [anon_sym_DASH_DASH] = ACTIONS(1069), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1071), - [anon_sym_DASH] = ACTIONS(1071), - [anon_sym_STAR] = ACTIONS(1321), - [anon_sym_CARET] = ACTIONS(1069), - [anon_sym_AMP] = ACTIONS(1069), - [anon_sym_this] = ACTIONS(1323), + [anon_sym_checked] = ACTIONS(1163), + [anon_sym_BANG] = ACTIONS(1829), + [anon_sym_TILDE] = ACTIONS(1829), + [anon_sym_PLUS_PLUS] = ACTIONS(1829), + [anon_sym_DASH_DASH] = ACTIONS(1829), + [anon_sym_true] = ACTIONS(1169), + [anon_sym_false] = ACTIONS(1169), + [anon_sym_PLUS] = ACTIONS(1827), + [anon_sym_DASH] = ACTIONS(1827), + [anon_sym_STAR] = ACTIONS(1831), + [anon_sym_CARET] = ACTIONS(1829), + [anon_sym_AMP] = ACTIONS(1829), + [anon_sym_this] = ACTIONS(1173), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1325), + [anon_sym_base] = ACTIONS(1175), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1319), + [sym_predefined_type] = ACTIONS(1177), + [anon_sym_unchecked] = ACTIONS(1163), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1327), + [anon_sym_default] = ACTIONS(1179), + [anon_sym_throw] = ACTIONS(1833), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1329), - [anon_sym_DOT_DOT] = ACTIONS(1331), + [anon_sym_await] = ACTIONS(1835), + [anon_sym_DOT_DOT] = ACTIONS(1837), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -263471,19 +263357,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1333), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(1335), - [anon_sym___reftype] = ACTIONS(1337), - [anon_sym___refvalue] = ACTIONS(1339), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1341), + [anon_sym_stackalloc] = ACTIONS(1187), + [anon_sym_sizeof] = ACTIONS(1189), + [anon_sym_typeof] = ACTIONS(1191), + [anon_sym___makeref] = ACTIONS(1193), + [anon_sym___reftype] = ACTIONS(1195), + [anon_sym___refvalue] = ACTIONS(1197), + [sym_null_literal] = ACTIONS(1199), + [anon_sym_SQUOTE] = ACTIONS(1201), + [sym_integer_literal] = ACTIONS(1199), + [sym_real_literal] = ACTIONS(1203), + [anon_sym_DQUOTE] = ACTIONS(1205), + [sym_verbatim_string_literal] = ACTIONS(1203), + [aux_sym_preproc_if_token1] = ACTIONS(1207), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -263494,90 +263380,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(151), - [sym_interpolation_verbatim_start] = ACTIONS(153), - [sym_interpolation_raw_start] = ACTIONS(155), - [sym_raw_string_start] = ACTIONS(157), + [sym_interpolation_regular_start] = ACTIONS(1209), + [sym_interpolation_verbatim_start] = ACTIONS(1211), + [sym_interpolation_raw_start] = ACTIONS(1213), + [sym_raw_string_start] = ACTIONS(1215), }, [1312] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2762), - [sym__name] = STATE(5876), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2376), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(5056), - [sym_non_lvalue_expression] = STATE(3438), - [sym_lvalue_expression] = STATE(3533), - [sym__expression_statement_expression] = STATE(3362), - [sym_assignment_expression] = STATE(3449), - [sym_binary_expression] = STATE(3362), - [sym_postfix_unary_expression] = STATE(3449), - [sym_prefix_unary_expression] = STATE(3449), - [sym__pointer_indirection_expression] = STATE(2747), - [sym_query_expression] = STATE(3362), - [sym_from_clause] = STATE(6175), - [sym_conditional_expression] = STATE(3362), - [sym_conditional_access_expression] = STATE(3362), - [sym_as_expression] = STATE(3362), - [sym_is_expression] = STATE(3362), - [sym_is_pattern_expression] = STATE(3362), - [sym_cast_expression] = STATE(3362), - [sym_checked_expression] = STATE(3362), - [sym_invocation_expression] = STATE(3449), - [sym_switch_expression] = STATE(3362), - [sym_await_expression] = STATE(3449), - [sym_throw_expression] = STATE(3362), - [sym_element_access_expression] = STATE(2747), - [sym_interpolated_string_expression] = STATE(3362), - [sym_member_access_expression] = STATE(2747), - [sym_object_creation_expression] = STATE(3449), - [sym_parenthesized_expression] = STATE(3449), - [sym__parenthesized_lvalue_expression] = STATE(2747), - [sym_lambda_expression] = STATE(3362), - [sym__lambda_expression_init] = STATE(7619), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3362), - [sym_anonymous_method_expression] = STATE(3362), - [sym_anonymous_object_creation_expression] = STATE(3362), - [sym_implicit_array_creation_expression] = STATE(3362), - [sym_implicit_object_creation_expression] = STATE(3362), - [sym_implicit_stackalloc_expression] = STATE(3362), - [sym_initializer_expression] = STATE(3362), - [sym_default_expression] = STATE(3362), - [sym_with_expression] = STATE(3362), - [sym_sizeof_expression] = STATE(3362), - [sym_typeof_expression] = STATE(3362), - [sym_makeref_expression] = STATE(3362), - [sym_ref_expression] = STATE(3362), - [sym_reftype_expression] = STATE(3362), - [sym_refvalue_expression] = STATE(3362), - [sym_stackalloc_expression] = STATE(3362), - [sym_range_expression] = STATE(3362), - [sym_tuple_expression] = STATE(2747), - [sym_literal] = STATE(3362), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3362), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2603), + [sym__name] = STATE(5870), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2379), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(4697), + [sym_non_lvalue_expression] = STATE(3220), + [sym_lvalue_expression] = STATE(3386), + [sym__expression_statement_expression] = STATE(3236), + [sym_assignment_expression] = STATE(3221), + [sym_binary_expression] = STATE(3236), + [sym_postfix_unary_expression] = STATE(3221), + [sym_prefix_unary_expression] = STATE(3221), + [sym__pointer_indirection_expression] = STATE(2602), + [sym_query_expression] = STATE(3236), + [sym_from_clause] = STATE(6166), + [sym_conditional_expression] = STATE(3236), + [sym_conditional_access_expression] = STATE(3236), + [sym_as_expression] = STATE(3236), + [sym_is_expression] = STATE(3236), + [sym_is_pattern_expression] = STATE(3236), + [sym_cast_expression] = STATE(3236), + [sym_checked_expression] = STATE(3236), + [sym_invocation_expression] = STATE(3221), + [sym_switch_expression] = STATE(3236), + [sym_await_expression] = STATE(3221), + [sym_throw_expression] = STATE(3236), + [sym_element_access_expression] = STATE(2602), + [sym_interpolated_string_expression] = STATE(3236), + [sym_member_access_expression] = STATE(2602), + [sym_object_creation_expression] = STATE(3221), + [sym_parenthesized_expression] = STATE(3221), + [sym__parenthesized_lvalue_expression] = STATE(2602), + [sym_lambda_expression] = STATE(3236), + [sym__lambda_expression_init] = STATE(7418), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3236), + [sym_anonymous_method_expression] = STATE(3236), + [sym_anonymous_object_creation_expression] = STATE(3236), + [sym_implicit_array_creation_expression] = STATE(3236), + [sym_implicit_object_creation_expression] = STATE(3236), + [sym_implicit_stackalloc_expression] = STATE(3236), + [sym_initializer_expression] = STATE(3236), + [sym_default_expression] = STATE(3236), + [sym_with_expression] = STATE(3236), + [sym_sizeof_expression] = STATE(3236), + [sym_typeof_expression] = STATE(3236), + [sym_makeref_expression] = STATE(3236), + [sym_ref_expression] = STATE(3236), + [sym_reftype_expression] = STATE(3236), + [sym_refvalue_expression] = STATE(3236), + [sym_stackalloc_expression] = STATE(3236), + [sym_range_expression] = STATE(3236), + [sym_tuple_expression] = STATE(2602), + [sym_literal] = STATE(3236), + [sym_character_literal] = STATE(3272), + [sym_string_literal] = STATE(3272), + [sym_raw_string_literal] = STATE(3272), + [sym_boolean_literal] = STATE(3272), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3236), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(1312), [sym_preproc_endregion] = STATE(1312), [sym_preproc_line] = STATE(1312), @@ -263587,47 +263473,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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3385), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3379), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1307), - [anon_sym_LPAREN] = ACTIONS(1877), - [anon_sym_ref] = ACTIONS(1879), - [anon_sym_LBRACE] = ACTIONS(1313), - [anon_sym_delegate] = ACTIONS(1315), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1149), + [anon_sym_LPAREN] = ACTIONS(1821), + [anon_sym_ref] = ACTIONS(1823), + [anon_sym_LBRACE] = ACTIONS(1155), + [anon_sym_delegate] = ACTIONS(1157), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1881), + [anon_sym_new] = ACTIONS(1825), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1319), - [anon_sym_BANG] = ACTIONS(1885), - [anon_sym_TILDE] = ACTIONS(1885), - [anon_sym_PLUS_PLUS] = ACTIONS(1885), - [anon_sym_DASH_DASH] = ACTIONS(1885), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1883), - [anon_sym_DASH] = ACTIONS(1883), - [anon_sym_STAR] = ACTIONS(1887), - [anon_sym_CARET] = ACTIONS(1885), - [anon_sym_AMP] = ACTIONS(1885), - [anon_sym_this] = ACTIONS(1323), + [anon_sym_checked] = ACTIONS(1163), + [anon_sym_BANG] = ACTIONS(1829), + [anon_sym_TILDE] = ACTIONS(1829), + [anon_sym_PLUS_PLUS] = ACTIONS(1829), + [anon_sym_DASH_DASH] = ACTIONS(1829), + [anon_sym_true] = ACTIONS(1169), + [anon_sym_false] = ACTIONS(1169), + [anon_sym_PLUS] = ACTIONS(1827), + [anon_sym_DASH] = ACTIONS(1827), + [anon_sym_STAR] = ACTIONS(1831), + [anon_sym_CARET] = ACTIONS(1829), + [anon_sym_AMP] = ACTIONS(1829), + [anon_sym_this] = ACTIONS(1173), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1325), + [anon_sym_base] = ACTIONS(1175), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1319), + [sym_predefined_type] = ACTIONS(1177), + [anon_sym_unchecked] = ACTIONS(1163), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1889), + [anon_sym_default] = ACTIONS(1179), + [anon_sym_throw] = ACTIONS(1833), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1891), - [anon_sym_DOT_DOT] = ACTIONS(1893), + [anon_sym_await] = ACTIONS(1835), + [anon_sym_DOT_DOT] = ACTIONS(1837), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -263640,19 +263526,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1333), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(1335), - [anon_sym___reftype] = ACTIONS(1337), - [anon_sym___refvalue] = ACTIONS(1339), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1341), + [anon_sym_stackalloc] = ACTIONS(1187), + [anon_sym_sizeof] = ACTIONS(1189), + [anon_sym_typeof] = ACTIONS(1191), + [anon_sym___makeref] = ACTIONS(1193), + [anon_sym___reftype] = ACTIONS(1195), + [anon_sym___refvalue] = ACTIONS(1197), + [sym_null_literal] = ACTIONS(1199), + [anon_sym_SQUOTE] = ACTIONS(1201), + [sym_integer_literal] = ACTIONS(1199), + [sym_real_literal] = ACTIONS(1203), + [anon_sym_DQUOTE] = ACTIONS(1205), + [sym_verbatim_string_literal] = ACTIONS(1203), + [aux_sym_preproc_if_token1] = ACTIONS(1207), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -263663,90 +263549,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(151), - [sym_interpolation_verbatim_start] = ACTIONS(153), - [sym_interpolation_raw_start] = ACTIONS(155), - [sym_raw_string_start] = ACTIONS(157), + [sym_interpolation_regular_start] = ACTIONS(1209), + [sym_interpolation_verbatim_start] = ACTIONS(1211), + [sym_interpolation_raw_start] = ACTIONS(1213), + [sym_raw_string_start] = ACTIONS(1215), }, [1313] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2762), - [sym__name] = STATE(5876), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2376), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(5060), - [sym_non_lvalue_expression] = STATE(3438), - [sym_lvalue_expression] = STATE(3533), - [sym__expression_statement_expression] = STATE(3362), - [sym_assignment_expression] = STATE(3449), - [sym_binary_expression] = STATE(3362), - [sym_postfix_unary_expression] = STATE(3449), - [sym_prefix_unary_expression] = STATE(3449), - [sym__pointer_indirection_expression] = STATE(2747), - [sym_query_expression] = STATE(3362), - [sym_from_clause] = STATE(6175), - [sym_conditional_expression] = STATE(3362), - [sym_conditional_access_expression] = STATE(3362), - [sym_as_expression] = STATE(3362), - [sym_is_expression] = STATE(3362), - [sym_is_pattern_expression] = STATE(3362), - [sym_cast_expression] = STATE(3362), - [sym_checked_expression] = STATE(3362), - [sym_invocation_expression] = STATE(3449), - [sym_switch_expression] = STATE(3362), - [sym_await_expression] = STATE(3449), - [sym_throw_expression] = STATE(3362), - [sym_element_access_expression] = STATE(2747), - [sym_interpolated_string_expression] = STATE(3362), - [sym_member_access_expression] = STATE(2747), - [sym_object_creation_expression] = STATE(3449), - [sym_parenthesized_expression] = STATE(3449), - [sym__parenthesized_lvalue_expression] = STATE(2747), - [sym_lambda_expression] = STATE(3362), - [sym__lambda_expression_init] = STATE(7619), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3362), - [sym_anonymous_method_expression] = STATE(3362), - [sym_anonymous_object_creation_expression] = STATE(3362), - [sym_implicit_array_creation_expression] = STATE(3362), - [sym_implicit_object_creation_expression] = STATE(3362), - [sym_implicit_stackalloc_expression] = STATE(3362), - [sym_initializer_expression] = STATE(3362), - [sym_default_expression] = STATE(3362), - [sym_with_expression] = STATE(3362), - [sym_sizeof_expression] = STATE(3362), - [sym_typeof_expression] = STATE(3362), - [sym_makeref_expression] = STATE(3362), - [sym_ref_expression] = STATE(3362), - [sym_reftype_expression] = STATE(3362), - [sym_refvalue_expression] = STATE(3362), - [sym_stackalloc_expression] = STATE(3362), - [sym_range_expression] = STATE(3362), - [sym_tuple_expression] = STATE(2747), - [sym_literal] = STATE(3362), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3362), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2603), + [sym__name] = STATE(5870), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2379), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(4698), + [sym_non_lvalue_expression] = STATE(3220), + [sym_lvalue_expression] = STATE(3386), + [sym__expression_statement_expression] = STATE(3236), + [sym_assignment_expression] = STATE(3221), + [sym_binary_expression] = STATE(3236), + [sym_postfix_unary_expression] = STATE(3221), + [sym_prefix_unary_expression] = STATE(3221), + [sym__pointer_indirection_expression] = STATE(2602), + [sym_query_expression] = STATE(3236), + [sym_from_clause] = STATE(6166), + [sym_conditional_expression] = STATE(3236), + [sym_conditional_access_expression] = STATE(3236), + [sym_as_expression] = STATE(3236), + [sym_is_expression] = STATE(3236), + [sym_is_pattern_expression] = STATE(3236), + [sym_cast_expression] = STATE(3236), + [sym_checked_expression] = STATE(3236), + [sym_invocation_expression] = STATE(3221), + [sym_switch_expression] = STATE(3236), + [sym_await_expression] = STATE(3221), + [sym_throw_expression] = STATE(3236), + [sym_element_access_expression] = STATE(2602), + [sym_interpolated_string_expression] = STATE(3236), + [sym_member_access_expression] = STATE(2602), + [sym_object_creation_expression] = STATE(3221), + [sym_parenthesized_expression] = STATE(3221), + [sym__parenthesized_lvalue_expression] = STATE(2602), + [sym_lambda_expression] = STATE(3236), + [sym__lambda_expression_init] = STATE(7418), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3236), + [sym_anonymous_method_expression] = STATE(3236), + [sym_anonymous_object_creation_expression] = STATE(3236), + [sym_implicit_array_creation_expression] = STATE(3236), + [sym_implicit_object_creation_expression] = STATE(3236), + [sym_implicit_stackalloc_expression] = STATE(3236), + [sym_initializer_expression] = STATE(3236), + [sym_default_expression] = STATE(3236), + [sym_with_expression] = STATE(3236), + [sym_sizeof_expression] = STATE(3236), + [sym_typeof_expression] = STATE(3236), + [sym_makeref_expression] = STATE(3236), + [sym_ref_expression] = STATE(3236), + [sym_reftype_expression] = STATE(3236), + [sym_refvalue_expression] = STATE(3236), + [sym_stackalloc_expression] = STATE(3236), + [sym_range_expression] = STATE(3236), + [sym_tuple_expression] = STATE(2602), + [sym_literal] = STATE(3236), + [sym_character_literal] = STATE(3272), + [sym_string_literal] = STATE(3272), + [sym_raw_string_literal] = STATE(3272), + [sym_boolean_literal] = STATE(3272), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3236), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(1313), [sym_preproc_endregion] = STATE(1313), [sym_preproc_line] = STATE(1313), @@ -263756,47 +263642,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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3385), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3379), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1307), - [anon_sym_LPAREN] = ACTIONS(1877), - [anon_sym_ref] = ACTIONS(1879), - [anon_sym_LBRACE] = ACTIONS(1313), - [anon_sym_delegate] = ACTIONS(1315), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1149), + [anon_sym_LPAREN] = ACTIONS(1821), + [anon_sym_ref] = ACTIONS(1823), + [anon_sym_LBRACE] = ACTIONS(1155), + [anon_sym_delegate] = ACTIONS(1157), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1881), + [anon_sym_new] = ACTIONS(1825), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1319), - [anon_sym_BANG] = ACTIONS(1885), - [anon_sym_TILDE] = ACTIONS(1885), - [anon_sym_PLUS_PLUS] = ACTIONS(1885), - [anon_sym_DASH_DASH] = ACTIONS(1885), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1883), - [anon_sym_DASH] = ACTIONS(1883), - [anon_sym_STAR] = ACTIONS(1887), - [anon_sym_CARET] = ACTIONS(1885), - [anon_sym_AMP] = ACTIONS(1885), - [anon_sym_this] = ACTIONS(1323), + [anon_sym_checked] = ACTIONS(1163), + [anon_sym_BANG] = ACTIONS(1829), + [anon_sym_TILDE] = ACTIONS(1829), + [anon_sym_PLUS_PLUS] = ACTIONS(1829), + [anon_sym_DASH_DASH] = ACTIONS(1829), + [anon_sym_true] = ACTIONS(1169), + [anon_sym_false] = ACTIONS(1169), + [anon_sym_PLUS] = ACTIONS(1827), + [anon_sym_DASH] = ACTIONS(1827), + [anon_sym_STAR] = ACTIONS(1831), + [anon_sym_CARET] = ACTIONS(1829), + [anon_sym_AMP] = ACTIONS(1829), + [anon_sym_this] = ACTIONS(1173), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1325), + [anon_sym_base] = ACTIONS(1175), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1319), + [sym_predefined_type] = ACTIONS(1177), + [anon_sym_unchecked] = ACTIONS(1163), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1889), + [anon_sym_default] = ACTIONS(1179), + [anon_sym_throw] = ACTIONS(1833), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1891), - [anon_sym_DOT_DOT] = ACTIONS(1893), + [anon_sym_await] = ACTIONS(1835), + [anon_sym_DOT_DOT] = ACTIONS(1837), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -263809,19 +263695,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1333), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(1335), - [anon_sym___reftype] = ACTIONS(1337), - [anon_sym___refvalue] = ACTIONS(1339), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1341), + [anon_sym_stackalloc] = ACTIONS(1187), + [anon_sym_sizeof] = ACTIONS(1189), + [anon_sym_typeof] = ACTIONS(1191), + [anon_sym___makeref] = ACTIONS(1193), + [anon_sym___reftype] = ACTIONS(1195), + [anon_sym___refvalue] = ACTIONS(1197), + [sym_null_literal] = ACTIONS(1199), + [anon_sym_SQUOTE] = ACTIONS(1201), + [sym_integer_literal] = ACTIONS(1199), + [sym_real_literal] = ACTIONS(1203), + [anon_sym_DQUOTE] = ACTIONS(1205), + [sym_verbatim_string_literal] = ACTIONS(1203), + [aux_sym_preproc_if_token1] = ACTIONS(1207), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -263832,90 +263718,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(151), - [sym_interpolation_verbatim_start] = ACTIONS(153), - [sym_interpolation_raw_start] = ACTIONS(155), - [sym_raw_string_start] = ACTIONS(157), + [sym_interpolation_regular_start] = ACTIONS(1209), + [sym_interpolation_verbatim_start] = ACTIONS(1211), + [sym_interpolation_raw_start] = ACTIONS(1213), + [sym_raw_string_start] = ACTIONS(1215), }, [1314] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2762), - [sym__name] = STATE(5876), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2376), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(5003), - [sym_non_lvalue_expression] = STATE(3438), - [sym_lvalue_expression] = STATE(3533), - [sym__expression_statement_expression] = STATE(3362), - [sym_assignment_expression] = STATE(3449), - [sym_binary_expression] = STATE(3362), - [sym_postfix_unary_expression] = STATE(3449), - [sym_prefix_unary_expression] = STATE(3449), - [sym__pointer_indirection_expression] = STATE(2747), - [sym_query_expression] = STATE(3362), - [sym_from_clause] = STATE(6175), - [sym_conditional_expression] = STATE(3362), - [sym_conditional_access_expression] = STATE(3362), - [sym_as_expression] = STATE(3362), - [sym_is_expression] = STATE(3362), - [sym_is_pattern_expression] = STATE(3362), - [sym_cast_expression] = STATE(3362), - [sym_checked_expression] = STATE(3362), - [sym_invocation_expression] = STATE(3449), - [sym_switch_expression] = STATE(3362), - [sym_await_expression] = STATE(3449), - [sym_throw_expression] = STATE(3362), - [sym_element_access_expression] = STATE(2747), - [sym_interpolated_string_expression] = STATE(3362), - [sym_member_access_expression] = STATE(2747), - [sym_object_creation_expression] = STATE(3449), - [sym_parenthesized_expression] = STATE(3449), - [sym__parenthesized_lvalue_expression] = STATE(2747), - [sym_lambda_expression] = STATE(3362), - [sym__lambda_expression_init] = STATE(7619), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3362), - [sym_anonymous_method_expression] = STATE(3362), - [sym_anonymous_object_creation_expression] = STATE(3362), - [sym_implicit_array_creation_expression] = STATE(3362), - [sym_implicit_object_creation_expression] = STATE(3362), - [sym_implicit_stackalloc_expression] = STATE(3362), - [sym_initializer_expression] = STATE(3362), - [sym_default_expression] = STATE(3362), - [sym_with_expression] = STATE(3362), - [sym_sizeof_expression] = STATE(3362), - [sym_typeof_expression] = STATE(3362), - [sym_makeref_expression] = STATE(3362), - [sym_ref_expression] = STATE(3362), - [sym_reftype_expression] = STATE(3362), - [sym_refvalue_expression] = STATE(3362), - [sym_stackalloc_expression] = STATE(3362), - [sym_range_expression] = STATE(3362), - [sym_tuple_expression] = STATE(2747), - [sym_literal] = STATE(3362), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3362), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2603), + [sym__name] = STATE(5870), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2379), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(4699), + [sym_non_lvalue_expression] = STATE(3220), + [sym_lvalue_expression] = STATE(3386), + [sym__expression_statement_expression] = STATE(3236), + [sym_assignment_expression] = STATE(3221), + [sym_binary_expression] = STATE(3236), + [sym_postfix_unary_expression] = STATE(3221), + [sym_prefix_unary_expression] = STATE(3221), + [sym__pointer_indirection_expression] = STATE(2602), + [sym_query_expression] = STATE(3236), + [sym_from_clause] = STATE(6166), + [sym_conditional_expression] = STATE(3236), + [sym_conditional_access_expression] = STATE(3236), + [sym_as_expression] = STATE(3236), + [sym_is_expression] = STATE(3236), + [sym_is_pattern_expression] = STATE(3236), + [sym_cast_expression] = STATE(3236), + [sym_checked_expression] = STATE(3236), + [sym_invocation_expression] = STATE(3221), + [sym_switch_expression] = STATE(3236), + [sym_await_expression] = STATE(3221), + [sym_throw_expression] = STATE(3236), + [sym_element_access_expression] = STATE(2602), + [sym_interpolated_string_expression] = STATE(3236), + [sym_member_access_expression] = STATE(2602), + [sym_object_creation_expression] = STATE(3221), + [sym_parenthesized_expression] = STATE(3221), + [sym__parenthesized_lvalue_expression] = STATE(2602), + [sym_lambda_expression] = STATE(3236), + [sym__lambda_expression_init] = STATE(7418), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3236), + [sym_anonymous_method_expression] = STATE(3236), + [sym_anonymous_object_creation_expression] = STATE(3236), + [sym_implicit_array_creation_expression] = STATE(3236), + [sym_implicit_object_creation_expression] = STATE(3236), + [sym_implicit_stackalloc_expression] = STATE(3236), + [sym_initializer_expression] = STATE(3236), + [sym_default_expression] = STATE(3236), + [sym_with_expression] = STATE(3236), + [sym_sizeof_expression] = STATE(3236), + [sym_typeof_expression] = STATE(3236), + [sym_makeref_expression] = STATE(3236), + [sym_ref_expression] = STATE(3236), + [sym_reftype_expression] = STATE(3236), + [sym_refvalue_expression] = STATE(3236), + [sym_stackalloc_expression] = STATE(3236), + [sym_range_expression] = STATE(3236), + [sym_tuple_expression] = STATE(2602), + [sym_literal] = STATE(3236), + [sym_character_literal] = STATE(3272), + [sym_string_literal] = STATE(3272), + [sym_raw_string_literal] = STATE(3272), + [sym_boolean_literal] = STATE(3272), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3236), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(1314), [sym_preproc_endregion] = STATE(1314), [sym_preproc_line] = STATE(1314), @@ -263925,47 +263811,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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3385), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3379), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1307), - [anon_sym_LPAREN] = ACTIONS(1877), - [anon_sym_ref] = ACTIONS(1879), - [anon_sym_LBRACE] = ACTIONS(1313), - [anon_sym_delegate] = ACTIONS(1315), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1149), + [anon_sym_LPAREN] = ACTIONS(1821), + [anon_sym_ref] = ACTIONS(1823), + [anon_sym_LBRACE] = ACTIONS(1155), + [anon_sym_delegate] = ACTIONS(1157), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1881), + [anon_sym_new] = ACTIONS(1825), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1319), - [anon_sym_BANG] = ACTIONS(1885), - [anon_sym_TILDE] = ACTIONS(1885), - [anon_sym_PLUS_PLUS] = ACTIONS(1885), - [anon_sym_DASH_DASH] = ACTIONS(1885), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1883), - [anon_sym_DASH] = ACTIONS(1883), - [anon_sym_STAR] = ACTIONS(1887), - [anon_sym_CARET] = ACTIONS(1885), - [anon_sym_AMP] = ACTIONS(1885), - [anon_sym_this] = ACTIONS(1323), + [anon_sym_checked] = ACTIONS(1163), + [anon_sym_BANG] = ACTIONS(1829), + [anon_sym_TILDE] = ACTIONS(1829), + [anon_sym_PLUS_PLUS] = ACTIONS(1829), + [anon_sym_DASH_DASH] = ACTIONS(1829), + [anon_sym_true] = ACTIONS(1169), + [anon_sym_false] = ACTIONS(1169), + [anon_sym_PLUS] = ACTIONS(1827), + [anon_sym_DASH] = ACTIONS(1827), + [anon_sym_STAR] = ACTIONS(1831), + [anon_sym_CARET] = ACTIONS(1829), + [anon_sym_AMP] = ACTIONS(1829), + [anon_sym_this] = ACTIONS(1173), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1325), + [anon_sym_base] = ACTIONS(1175), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1319), + [sym_predefined_type] = ACTIONS(1177), + [anon_sym_unchecked] = ACTIONS(1163), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1889), + [anon_sym_default] = ACTIONS(1179), + [anon_sym_throw] = ACTIONS(1833), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1891), - [anon_sym_DOT_DOT] = ACTIONS(1893), + [anon_sym_await] = ACTIONS(1835), + [anon_sym_DOT_DOT] = ACTIONS(1837), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -263978,19 +263864,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1333), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(1335), - [anon_sym___reftype] = ACTIONS(1337), - [anon_sym___refvalue] = ACTIONS(1339), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1341), + [anon_sym_stackalloc] = ACTIONS(1187), + [anon_sym_sizeof] = ACTIONS(1189), + [anon_sym_typeof] = ACTIONS(1191), + [anon_sym___makeref] = ACTIONS(1193), + [anon_sym___reftype] = ACTIONS(1195), + [anon_sym___refvalue] = ACTIONS(1197), + [sym_null_literal] = ACTIONS(1199), + [anon_sym_SQUOTE] = ACTIONS(1201), + [sym_integer_literal] = ACTIONS(1199), + [sym_real_literal] = ACTIONS(1203), + [anon_sym_DQUOTE] = ACTIONS(1205), + [sym_verbatim_string_literal] = ACTIONS(1203), + [aux_sym_preproc_if_token1] = ACTIONS(1207), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -264001,90 +263887,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(151), - [sym_interpolation_verbatim_start] = ACTIONS(153), - [sym_interpolation_raw_start] = ACTIONS(155), - [sym_raw_string_start] = ACTIONS(157), + [sym_interpolation_regular_start] = ACTIONS(1209), + [sym_interpolation_verbatim_start] = ACTIONS(1211), + [sym_interpolation_raw_start] = ACTIONS(1213), + [sym_raw_string_start] = ACTIONS(1215), }, [1315] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2762), - [sym__name] = STATE(5876), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2376), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(5063), - [sym_non_lvalue_expression] = STATE(3438), - [sym_lvalue_expression] = STATE(3533), - [sym__expression_statement_expression] = STATE(3362), - [sym_assignment_expression] = STATE(3449), - [sym_binary_expression] = STATE(3362), - [sym_postfix_unary_expression] = STATE(3449), - [sym_prefix_unary_expression] = STATE(3449), - [sym__pointer_indirection_expression] = STATE(2747), - [sym_query_expression] = STATE(3362), - [sym_from_clause] = STATE(6175), - [sym_conditional_expression] = STATE(3362), - [sym_conditional_access_expression] = STATE(3362), - [sym_as_expression] = STATE(3362), - [sym_is_expression] = STATE(3362), - [sym_is_pattern_expression] = STATE(3362), - [sym_cast_expression] = STATE(3362), - [sym_checked_expression] = STATE(3362), - [sym_invocation_expression] = STATE(3449), - [sym_switch_expression] = STATE(3362), - [sym_await_expression] = STATE(3449), - [sym_throw_expression] = STATE(3362), - [sym_element_access_expression] = STATE(2747), - [sym_interpolated_string_expression] = STATE(3362), - [sym_member_access_expression] = STATE(2747), - [sym_object_creation_expression] = STATE(3449), - [sym_parenthesized_expression] = STATE(3449), - [sym__parenthesized_lvalue_expression] = STATE(2747), - [sym_lambda_expression] = STATE(3362), - [sym__lambda_expression_init] = STATE(7619), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3362), - [sym_anonymous_method_expression] = STATE(3362), - [sym_anonymous_object_creation_expression] = STATE(3362), - [sym_implicit_array_creation_expression] = STATE(3362), - [sym_implicit_object_creation_expression] = STATE(3362), - [sym_implicit_stackalloc_expression] = STATE(3362), - [sym_initializer_expression] = STATE(3362), - [sym_default_expression] = STATE(3362), - [sym_with_expression] = STATE(3362), - [sym_sizeof_expression] = STATE(3362), - [sym_typeof_expression] = STATE(3362), - [sym_makeref_expression] = STATE(3362), - [sym_ref_expression] = STATE(3362), - [sym_reftype_expression] = STATE(3362), - [sym_refvalue_expression] = STATE(3362), - [sym_stackalloc_expression] = STATE(3362), - [sym_range_expression] = STATE(3362), - [sym_tuple_expression] = STATE(2747), - [sym_literal] = STATE(3362), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3362), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2603), + [sym__name] = STATE(5870), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2379), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(4700), + [sym_non_lvalue_expression] = STATE(3220), + [sym_lvalue_expression] = STATE(3386), + [sym__expression_statement_expression] = STATE(3236), + [sym_assignment_expression] = STATE(3221), + [sym_binary_expression] = STATE(3236), + [sym_postfix_unary_expression] = STATE(3221), + [sym_prefix_unary_expression] = STATE(3221), + [sym__pointer_indirection_expression] = STATE(2602), + [sym_query_expression] = STATE(3236), + [sym_from_clause] = STATE(6166), + [sym_conditional_expression] = STATE(3236), + [sym_conditional_access_expression] = STATE(3236), + [sym_as_expression] = STATE(3236), + [sym_is_expression] = STATE(3236), + [sym_is_pattern_expression] = STATE(3236), + [sym_cast_expression] = STATE(3236), + [sym_checked_expression] = STATE(3236), + [sym_invocation_expression] = STATE(3221), + [sym_switch_expression] = STATE(3236), + [sym_await_expression] = STATE(3221), + [sym_throw_expression] = STATE(3236), + [sym_element_access_expression] = STATE(2602), + [sym_interpolated_string_expression] = STATE(3236), + [sym_member_access_expression] = STATE(2602), + [sym_object_creation_expression] = STATE(3221), + [sym_parenthesized_expression] = STATE(3221), + [sym__parenthesized_lvalue_expression] = STATE(2602), + [sym_lambda_expression] = STATE(3236), + [sym__lambda_expression_init] = STATE(7418), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3236), + [sym_anonymous_method_expression] = STATE(3236), + [sym_anonymous_object_creation_expression] = STATE(3236), + [sym_implicit_array_creation_expression] = STATE(3236), + [sym_implicit_object_creation_expression] = STATE(3236), + [sym_implicit_stackalloc_expression] = STATE(3236), + [sym_initializer_expression] = STATE(3236), + [sym_default_expression] = STATE(3236), + [sym_with_expression] = STATE(3236), + [sym_sizeof_expression] = STATE(3236), + [sym_typeof_expression] = STATE(3236), + [sym_makeref_expression] = STATE(3236), + [sym_ref_expression] = STATE(3236), + [sym_reftype_expression] = STATE(3236), + [sym_refvalue_expression] = STATE(3236), + [sym_stackalloc_expression] = STATE(3236), + [sym_range_expression] = STATE(3236), + [sym_tuple_expression] = STATE(2602), + [sym_literal] = STATE(3236), + [sym_character_literal] = STATE(3272), + [sym_string_literal] = STATE(3272), + [sym_raw_string_literal] = STATE(3272), + [sym_boolean_literal] = STATE(3272), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3236), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(1315), [sym_preproc_endregion] = STATE(1315), [sym_preproc_line] = STATE(1315), @@ -264094,47 +263980,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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3385), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3379), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1307), - [anon_sym_LPAREN] = ACTIONS(1877), - [anon_sym_ref] = ACTIONS(1879), - [anon_sym_LBRACE] = ACTIONS(1313), - [anon_sym_delegate] = ACTIONS(1315), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1149), + [anon_sym_LPAREN] = ACTIONS(1821), + [anon_sym_ref] = ACTIONS(1823), + [anon_sym_LBRACE] = ACTIONS(1155), + [anon_sym_delegate] = ACTIONS(1157), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1881), + [anon_sym_new] = ACTIONS(1825), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1319), - [anon_sym_BANG] = ACTIONS(1885), - [anon_sym_TILDE] = ACTIONS(1885), - [anon_sym_PLUS_PLUS] = ACTIONS(1885), - [anon_sym_DASH_DASH] = ACTIONS(1885), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1883), - [anon_sym_DASH] = ACTIONS(1883), - [anon_sym_STAR] = ACTIONS(1887), - [anon_sym_CARET] = ACTIONS(1885), - [anon_sym_AMP] = ACTIONS(1885), - [anon_sym_this] = ACTIONS(1323), + [anon_sym_checked] = ACTIONS(1163), + [anon_sym_BANG] = ACTIONS(1829), + [anon_sym_TILDE] = ACTIONS(1829), + [anon_sym_PLUS_PLUS] = ACTIONS(1829), + [anon_sym_DASH_DASH] = ACTIONS(1829), + [anon_sym_true] = ACTIONS(1169), + [anon_sym_false] = ACTIONS(1169), + [anon_sym_PLUS] = ACTIONS(1827), + [anon_sym_DASH] = ACTIONS(1827), + [anon_sym_STAR] = ACTIONS(1831), + [anon_sym_CARET] = ACTIONS(1829), + [anon_sym_AMP] = ACTIONS(1829), + [anon_sym_this] = ACTIONS(1173), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1325), + [anon_sym_base] = ACTIONS(1175), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1319), + [sym_predefined_type] = ACTIONS(1177), + [anon_sym_unchecked] = ACTIONS(1163), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1889), + [anon_sym_default] = ACTIONS(1179), + [anon_sym_throw] = ACTIONS(1833), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1891), - [anon_sym_DOT_DOT] = ACTIONS(1893), + [anon_sym_await] = ACTIONS(1835), + [anon_sym_DOT_DOT] = ACTIONS(1837), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -264147,19 +264033,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1333), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(1335), - [anon_sym___reftype] = ACTIONS(1337), - [anon_sym___refvalue] = ACTIONS(1339), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1341), + [anon_sym_stackalloc] = ACTIONS(1187), + [anon_sym_sizeof] = ACTIONS(1189), + [anon_sym_typeof] = ACTIONS(1191), + [anon_sym___makeref] = ACTIONS(1193), + [anon_sym___reftype] = ACTIONS(1195), + [anon_sym___refvalue] = ACTIONS(1197), + [sym_null_literal] = ACTIONS(1199), + [anon_sym_SQUOTE] = ACTIONS(1201), + [sym_integer_literal] = ACTIONS(1199), + [sym_real_literal] = ACTIONS(1203), + [anon_sym_DQUOTE] = ACTIONS(1205), + [sym_verbatim_string_literal] = ACTIONS(1203), + [aux_sym_preproc_if_token1] = ACTIONS(1207), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -264170,90 +264056,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(151), - [sym_interpolation_verbatim_start] = ACTIONS(153), - [sym_interpolation_raw_start] = ACTIONS(155), - [sym_raw_string_start] = ACTIONS(157), + [sym_interpolation_regular_start] = ACTIONS(1209), + [sym_interpolation_verbatim_start] = ACTIONS(1211), + [sym_interpolation_raw_start] = ACTIONS(1213), + [sym_raw_string_start] = ACTIONS(1215), }, [1316] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2762), - [sym__name] = STATE(5876), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2376), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(5064), - [sym_non_lvalue_expression] = STATE(3438), - [sym_lvalue_expression] = STATE(3533), - [sym__expression_statement_expression] = STATE(3362), - [sym_assignment_expression] = STATE(3449), - [sym_binary_expression] = STATE(3362), - [sym_postfix_unary_expression] = STATE(3449), - [sym_prefix_unary_expression] = STATE(3449), - [sym__pointer_indirection_expression] = STATE(2747), - [sym_query_expression] = STATE(3362), - [sym_from_clause] = STATE(6175), - [sym_conditional_expression] = STATE(3362), - [sym_conditional_access_expression] = STATE(3362), - [sym_as_expression] = STATE(3362), - [sym_is_expression] = STATE(3362), - [sym_is_pattern_expression] = STATE(3362), - [sym_cast_expression] = STATE(3362), - [sym_checked_expression] = STATE(3362), - [sym_invocation_expression] = STATE(3449), - [sym_switch_expression] = STATE(3362), - [sym_await_expression] = STATE(3449), - [sym_throw_expression] = STATE(3362), - [sym_element_access_expression] = STATE(2747), - [sym_interpolated_string_expression] = STATE(3362), - [sym_member_access_expression] = STATE(2747), - [sym_object_creation_expression] = STATE(3449), - [sym_parenthesized_expression] = STATE(3449), - [sym__parenthesized_lvalue_expression] = STATE(2747), - [sym_lambda_expression] = STATE(3362), - [sym__lambda_expression_init] = STATE(7619), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3362), - [sym_anonymous_method_expression] = STATE(3362), - [sym_anonymous_object_creation_expression] = STATE(3362), - [sym_implicit_array_creation_expression] = STATE(3362), - [sym_implicit_object_creation_expression] = STATE(3362), - [sym_implicit_stackalloc_expression] = STATE(3362), - [sym_initializer_expression] = STATE(3362), - [sym_default_expression] = STATE(3362), - [sym_with_expression] = STATE(3362), - [sym_sizeof_expression] = STATE(3362), - [sym_typeof_expression] = STATE(3362), - [sym_makeref_expression] = STATE(3362), - [sym_ref_expression] = STATE(3362), - [sym_reftype_expression] = STATE(3362), - [sym_refvalue_expression] = STATE(3362), - [sym_stackalloc_expression] = STATE(3362), - [sym_range_expression] = STATE(3362), - [sym_tuple_expression] = STATE(2747), - [sym_literal] = STATE(3362), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3362), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2603), + [sym__name] = STATE(5870), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2379), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(3133), + [sym_non_lvalue_expression] = STATE(3220), + [sym_lvalue_expression] = STATE(3386), + [sym__expression_statement_expression] = STATE(3236), + [sym_assignment_expression] = STATE(3221), + [sym_binary_expression] = STATE(3236), + [sym_postfix_unary_expression] = STATE(3221), + [sym_prefix_unary_expression] = STATE(3221), + [sym__pointer_indirection_expression] = STATE(2602), + [sym_query_expression] = STATE(3236), + [sym_from_clause] = STATE(6166), + [sym_conditional_expression] = STATE(3236), + [sym_conditional_access_expression] = STATE(3236), + [sym_as_expression] = STATE(3236), + [sym_is_expression] = STATE(3236), + [sym_is_pattern_expression] = STATE(3236), + [sym_cast_expression] = STATE(3236), + [sym_checked_expression] = STATE(3236), + [sym_invocation_expression] = STATE(3221), + [sym_switch_expression] = STATE(3236), + [sym_await_expression] = STATE(3221), + [sym_throw_expression] = STATE(3236), + [sym_element_access_expression] = STATE(2602), + [sym_interpolated_string_expression] = STATE(3236), + [sym_member_access_expression] = STATE(2602), + [sym_object_creation_expression] = STATE(3221), + [sym_parenthesized_expression] = STATE(3221), + [sym__parenthesized_lvalue_expression] = STATE(2602), + [sym_lambda_expression] = STATE(3236), + [sym__lambda_expression_init] = STATE(7418), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3236), + [sym_anonymous_method_expression] = STATE(3236), + [sym_anonymous_object_creation_expression] = STATE(3236), + [sym_implicit_array_creation_expression] = STATE(3236), + [sym_implicit_object_creation_expression] = STATE(3236), + [sym_implicit_stackalloc_expression] = STATE(3236), + [sym_initializer_expression] = STATE(3236), + [sym_default_expression] = STATE(3236), + [sym_with_expression] = STATE(3236), + [sym_sizeof_expression] = STATE(3236), + [sym_typeof_expression] = STATE(3236), + [sym_makeref_expression] = STATE(3236), + [sym_ref_expression] = STATE(3236), + [sym_reftype_expression] = STATE(3236), + [sym_refvalue_expression] = STATE(3236), + [sym_stackalloc_expression] = STATE(3236), + [sym_range_expression] = STATE(3236), + [sym_tuple_expression] = STATE(2602), + [sym_literal] = STATE(3236), + [sym_character_literal] = STATE(3272), + [sym_string_literal] = STATE(3272), + [sym_raw_string_literal] = STATE(3272), + [sym_boolean_literal] = STATE(3272), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3236), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(1316), [sym_preproc_endregion] = STATE(1316), [sym_preproc_line] = STATE(1316), @@ -264263,47 +264149,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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3385), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3379), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1307), - [anon_sym_LPAREN] = ACTIONS(1877), - [anon_sym_ref] = ACTIONS(1879), - [anon_sym_LBRACE] = ACTIONS(1313), - [anon_sym_delegate] = ACTIONS(1315), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1149), + [anon_sym_LPAREN] = ACTIONS(1821), + [anon_sym_ref] = ACTIONS(1823), + [anon_sym_LBRACE] = ACTIONS(1155), + [anon_sym_delegate] = ACTIONS(1157), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1881), + [anon_sym_new] = ACTIONS(1825), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1319), - [anon_sym_BANG] = ACTIONS(1885), - [anon_sym_TILDE] = ACTIONS(1885), - [anon_sym_PLUS_PLUS] = ACTIONS(1885), - [anon_sym_DASH_DASH] = ACTIONS(1885), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1883), - [anon_sym_DASH] = ACTIONS(1883), - [anon_sym_STAR] = ACTIONS(1887), - [anon_sym_CARET] = ACTIONS(1885), - [anon_sym_AMP] = ACTIONS(1885), - [anon_sym_this] = ACTIONS(1323), + [anon_sym_checked] = ACTIONS(1163), + [anon_sym_BANG] = ACTIONS(1829), + [anon_sym_TILDE] = ACTIONS(1829), + [anon_sym_PLUS_PLUS] = ACTIONS(1829), + [anon_sym_DASH_DASH] = ACTIONS(1829), + [anon_sym_true] = ACTIONS(1169), + [anon_sym_false] = ACTIONS(1169), + [anon_sym_PLUS] = ACTIONS(1827), + [anon_sym_DASH] = ACTIONS(1827), + [anon_sym_STAR] = ACTIONS(1831), + [anon_sym_CARET] = ACTIONS(1829), + [anon_sym_AMP] = ACTIONS(1829), + [anon_sym_this] = ACTIONS(1173), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1325), + [anon_sym_base] = ACTIONS(1175), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1319), + [sym_predefined_type] = ACTIONS(1177), + [anon_sym_unchecked] = ACTIONS(1163), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1889), + [anon_sym_default] = ACTIONS(1179), + [anon_sym_throw] = ACTIONS(1833), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1891), - [anon_sym_DOT_DOT] = ACTIONS(1893), + [anon_sym_await] = ACTIONS(1835), + [anon_sym_DOT_DOT] = ACTIONS(1837), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -264316,19 +264202,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1333), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(1335), - [anon_sym___reftype] = ACTIONS(1337), - [anon_sym___refvalue] = ACTIONS(1339), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1341), + [anon_sym_stackalloc] = ACTIONS(1187), + [anon_sym_sizeof] = ACTIONS(1189), + [anon_sym_typeof] = ACTIONS(1191), + [anon_sym___makeref] = ACTIONS(1193), + [anon_sym___reftype] = ACTIONS(1195), + [anon_sym___refvalue] = ACTIONS(1197), + [sym_null_literal] = ACTIONS(1199), + [anon_sym_SQUOTE] = ACTIONS(1201), + [sym_integer_literal] = ACTIONS(1199), + [sym_real_literal] = ACTIONS(1203), + [anon_sym_DQUOTE] = ACTIONS(1205), + [sym_verbatim_string_literal] = ACTIONS(1203), + [aux_sym_preproc_if_token1] = ACTIONS(1207), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -264339,90 +264225,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(151), - [sym_interpolation_verbatim_start] = ACTIONS(153), - [sym_interpolation_raw_start] = ACTIONS(155), - [sym_raw_string_start] = ACTIONS(157), + [sym_interpolation_regular_start] = ACTIONS(1209), + [sym_interpolation_verbatim_start] = ACTIONS(1211), + [sym_interpolation_raw_start] = ACTIONS(1213), + [sym_raw_string_start] = ACTIONS(1215), }, [1317] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2762), - [sym__name] = STATE(5876), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2376), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(5068), - [sym_non_lvalue_expression] = STATE(3438), - [sym_lvalue_expression] = STATE(3533), - [sym__expression_statement_expression] = STATE(3362), - [sym_assignment_expression] = STATE(3449), - [sym_binary_expression] = STATE(3362), - [sym_postfix_unary_expression] = STATE(3449), - [sym_prefix_unary_expression] = STATE(3449), - [sym__pointer_indirection_expression] = STATE(2747), - [sym_query_expression] = STATE(3362), - [sym_from_clause] = STATE(6175), - [sym_conditional_expression] = STATE(3362), - [sym_conditional_access_expression] = STATE(3362), - [sym_as_expression] = STATE(3362), - [sym_is_expression] = STATE(3362), - [sym_is_pattern_expression] = STATE(3362), - [sym_cast_expression] = STATE(3362), - [sym_checked_expression] = STATE(3362), - [sym_invocation_expression] = STATE(3449), - [sym_switch_expression] = STATE(3362), - [sym_await_expression] = STATE(3449), - [sym_throw_expression] = STATE(3362), - [sym_element_access_expression] = STATE(2747), - [sym_interpolated_string_expression] = STATE(3362), - [sym_member_access_expression] = STATE(2747), - [sym_object_creation_expression] = STATE(3449), - [sym_parenthesized_expression] = STATE(3449), - [sym__parenthesized_lvalue_expression] = STATE(2747), - [sym_lambda_expression] = STATE(3362), - [sym__lambda_expression_init] = STATE(7619), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3362), - [sym_anonymous_method_expression] = STATE(3362), - [sym_anonymous_object_creation_expression] = STATE(3362), - [sym_implicit_array_creation_expression] = STATE(3362), - [sym_implicit_object_creation_expression] = STATE(3362), - [sym_implicit_stackalloc_expression] = STATE(3362), - [sym_initializer_expression] = STATE(3362), - [sym_default_expression] = STATE(3362), - [sym_with_expression] = STATE(3362), - [sym_sizeof_expression] = STATE(3362), - [sym_typeof_expression] = STATE(3362), - [sym_makeref_expression] = STATE(3362), - [sym_ref_expression] = STATE(3362), - [sym_reftype_expression] = STATE(3362), - [sym_refvalue_expression] = STATE(3362), - [sym_stackalloc_expression] = STATE(3362), - [sym_range_expression] = STATE(3362), - [sym_tuple_expression] = STATE(2747), - [sym_literal] = STATE(3362), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3362), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2603), + [sym__name] = STATE(5870), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2379), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(4702), + [sym_non_lvalue_expression] = STATE(3220), + [sym_lvalue_expression] = STATE(3386), + [sym__expression_statement_expression] = STATE(3236), + [sym_assignment_expression] = STATE(3221), + [sym_binary_expression] = STATE(3236), + [sym_postfix_unary_expression] = STATE(3221), + [sym_prefix_unary_expression] = STATE(3221), + [sym__pointer_indirection_expression] = STATE(2602), + [sym_query_expression] = STATE(3236), + [sym_from_clause] = STATE(6166), + [sym_conditional_expression] = STATE(3236), + [sym_conditional_access_expression] = STATE(3236), + [sym_as_expression] = STATE(3236), + [sym_is_expression] = STATE(3236), + [sym_is_pattern_expression] = STATE(3236), + [sym_cast_expression] = STATE(3236), + [sym_checked_expression] = STATE(3236), + [sym_invocation_expression] = STATE(3221), + [sym_switch_expression] = STATE(3236), + [sym_await_expression] = STATE(3221), + [sym_throw_expression] = STATE(3236), + [sym_element_access_expression] = STATE(2602), + [sym_interpolated_string_expression] = STATE(3236), + [sym_member_access_expression] = STATE(2602), + [sym_object_creation_expression] = STATE(3221), + [sym_parenthesized_expression] = STATE(3221), + [sym__parenthesized_lvalue_expression] = STATE(2602), + [sym_lambda_expression] = STATE(3236), + [sym__lambda_expression_init] = STATE(7418), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3236), + [sym_anonymous_method_expression] = STATE(3236), + [sym_anonymous_object_creation_expression] = STATE(3236), + [sym_implicit_array_creation_expression] = STATE(3236), + [sym_implicit_object_creation_expression] = STATE(3236), + [sym_implicit_stackalloc_expression] = STATE(3236), + [sym_initializer_expression] = STATE(3236), + [sym_default_expression] = STATE(3236), + [sym_with_expression] = STATE(3236), + [sym_sizeof_expression] = STATE(3236), + [sym_typeof_expression] = STATE(3236), + [sym_makeref_expression] = STATE(3236), + [sym_ref_expression] = STATE(3236), + [sym_reftype_expression] = STATE(3236), + [sym_refvalue_expression] = STATE(3236), + [sym_stackalloc_expression] = STATE(3236), + [sym_range_expression] = STATE(3236), + [sym_tuple_expression] = STATE(2602), + [sym_literal] = STATE(3236), + [sym_character_literal] = STATE(3272), + [sym_string_literal] = STATE(3272), + [sym_raw_string_literal] = STATE(3272), + [sym_boolean_literal] = STATE(3272), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3236), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(1317), [sym_preproc_endregion] = STATE(1317), [sym_preproc_line] = STATE(1317), @@ -264432,47 +264318,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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3385), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3379), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1307), - [anon_sym_LPAREN] = ACTIONS(1877), - [anon_sym_ref] = ACTIONS(1879), - [anon_sym_LBRACE] = ACTIONS(1313), - [anon_sym_delegate] = ACTIONS(1315), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1149), + [anon_sym_LPAREN] = ACTIONS(1821), + [anon_sym_ref] = ACTIONS(1823), + [anon_sym_LBRACE] = ACTIONS(1155), + [anon_sym_delegate] = ACTIONS(1157), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1881), + [anon_sym_new] = ACTIONS(1825), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1319), - [anon_sym_BANG] = ACTIONS(1885), - [anon_sym_TILDE] = ACTIONS(1885), - [anon_sym_PLUS_PLUS] = ACTIONS(1885), - [anon_sym_DASH_DASH] = ACTIONS(1885), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1883), - [anon_sym_DASH] = ACTIONS(1883), - [anon_sym_STAR] = ACTIONS(1887), - [anon_sym_CARET] = ACTIONS(1885), - [anon_sym_AMP] = ACTIONS(1885), - [anon_sym_this] = ACTIONS(1323), + [anon_sym_checked] = ACTIONS(1163), + [anon_sym_BANG] = ACTIONS(1829), + [anon_sym_TILDE] = ACTIONS(1829), + [anon_sym_PLUS_PLUS] = ACTIONS(1829), + [anon_sym_DASH_DASH] = ACTIONS(1829), + [anon_sym_true] = ACTIONS(1169), + [anon_sym_false] = ACTIONS(1169), + [anon_sym_PLUS] = ACTIONS(1827), + [anon_sym_DASH] = ACTIONS(1827), + [anon_sym_STAR] = ACTIONS(1831), + [anon_sym_CARET] = ACTIONS(1829), + [anon_sym_AMP] = ACTIONS(1829), + [anon_sym_this] = ACTIONS(1173), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1325), + [anon_sym_base] = ACTIONS(1175), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1319), + [sym_predefined_type] = ACTIONS(1177), + [anon_sym_unchecked] = ACTIONS(1163), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1889), + [anon_sym_default] = ACTIONS(1179), + [anon_sym_throw] = ACTIONS(1833), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1891), - [anon_sym_DOT_DOT] = ACTIONS(1893), + [anon_sym_await] = ACTIONS(1835), + [anon_sym_DOT_DOT] = ACTIONS(1837), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -264485,19 +264371,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1333), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(1335), - [anon_sym___reftype] = ACTIONS(1337), - [anon_sym___refvalue] = ACTIONS(1339), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1341), + [anon_sym_stackalloc] = ACTIONS(1187), + [anon_sym_sizeof] = ACTIONS(1189), + [anon_sym_typeof] = ACTIONS(1191), + [anon_sym___makeref] = ACTIONS(1193), + [anon_sym___reftype] = ACTIONS(1195), + [anon_sym___refvalue] = ACTIONS(1197), + [sym_null_literal] = ACTIONS(1199), + [anon_sym_SQUOTE] = ACTIONS(1201), + [sym_integer_literal] = ACTIONS(1199), + [sym_real_literal] = ACTIONS(1203), + [anon_sym_DQUOTE] = ACTIONS(1205), + [sym_verbatim_string_literal] = ACTIONS(1203), + [aux_sym_preproc_if_token1] = ACTIONS(1207), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -264508,90 +264394,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(151), - [sym_interpolation_verbatim_start] = ACTIONS(153), - [sym_interpolation_raw_start] = ACTIONS(155), - [sym_raw_string_start] = ACTIONS(157), + [sym_interpolation_regular_start] = ACTIONS(1209), + [sym_interpolation_verbatim_start] = ACTIONS(1211), + [sym_interpolation_raw_start] = ACTIONS(1213), + [sym_raw_string_start] = ACTIONS(1215), }, [1318] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2762), - [sym__name] = STATE(5876), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2376), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(5069), - [sym_non_lvalue_expression] = STATE(3438), - [sym_lvalue_expression] = STATE(3533), - [sym__expression_statement_expression] = STATE(3362), - [sym_assignment_expression] = STATE(3449), - [sym_binary_expression] = STATE(3362), - [sym_postfix_unary_expression] = STATE(3449), - [sym_prefix_unary_expression] = STATE(3449), - [sym__pointer_indirection_expression] = STATE(2747), - [sym_query_expression] = STATE(3362), - [sym_from_clause] = STATE(6175), - [sym_conditional_expression] = STATE(3362), - [sym_conditional_access_expression] = STATE(3362), - [sym_as_expression] = STATE(3362), - [sym_is_expression] = STATE(3362), - [sym_is_pattern_expression] = STATE(3362), - [sym_cast_expression] = STATE(3362), - [sym_checked_expression] = STATE(3362), - [sym_invocation_expression] = STATE(3449), - [sym_switch_expression] = STATE(3362), - [sym_await_expression] = STATE(3449), - [sym_throw_expression] = STATE(3362), - [sym_element_access_expression] = STATE(2747), - [sym_interpolated_string_expression] = STATE(3362), - [sym_member_access_expression] = STATE(2747), - [sym_object_creation_expression] = STATE(3449), - [sym_parenthesized_expression] = STATE(3449), - [sym__parenthesized_lvalue_expression] = STATE(2747), - [sym_lambda_expression] = STATE(3362), - [sym__lambda_expression_init] = STATE(7619), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3362), - [sym_anonymous_method_expression] = STATE(3362), - [sym_anonymous_object_creation_expression] = STATE(3362), - [sym_implicit_array_creation_expression] = STATE(3362), - [sym_implicit_object_creation_expression] = STATE(3362), - [sym_implicit_stackalloc_expression] = STATE(3362), - [sym_initializer_expression] = STATE(3362), - [sym_default_expression] = STATE(3362), - [sym_with_expression] = STATE(3362), - [sym_sizeof_expression] = STATE(3362), - [sym_typeof_expression] = STATE(3362), - [sym_makeref_expression] = STATE(3362), - [sym_ref_expression] = STATE(3362), - [sym_reftype_expression] = STATE(3362), - [sym_refvalue_expression] = STATE(3362), - [sym_stackalloc_expression] = STATE(3362), - [sym_range_expression] = STATE(3362), - [sym_tuple_expression] = STATE(2747), - [sym_literal] = STATE(3362), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3362), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(5881), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2386), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(4067), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3132), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3102), + [sym_postfix_unary_expression] = STATE(3079), + [sym_prefix_unary_expression] = STATE(3079), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6158), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3102), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3079), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3102), + [sym_member_access_expression] = STATE(2472), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3079), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7650), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(3102), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3102), + [sym_typeof_expression] = STATE(3102), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2472), + [sym_literal] = STATE(3102), + [sym_character_literal] = STATE(3037), + [sym_string_literal] = STATE(3037), + [sym_raw_string_literal] = STATE(3037), + [sym_boolean_literal] = STATE(3037), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(1318), [sym_preproc_endregion] = STATE(1318), [sym_preproc_line] = STATE(1318), @@ -264601,47 +264487,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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3385), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1307), - [anon_sym_LPAREN] = ACTIONS(1877), - [anon_sym_ref] = ACTIONS(1879), - [anon_sym_LBRACE] = ACTIONS(1313), - [anon_sym_delegate] = ACTIONS(1315), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1479), + [anon_sym_LPAREN] = ACTIONS(2185), + [anon_sym_ref] = ACTIONS(2187), + [anon_sym_LBRACE] = ACTIONS(1481), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1881), + [anon_sym_new] = ACTIONS(1899), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1319), - [anon_sym_BANG] = ACTIONS(1885), - [anon_sym_TILDE] = ACTIONS(1885), - [anon_sym_PLUS_PLUS] = ACTIONS(1885), - [anon_sym_DASH_DASH] = ACTIONS(1885), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1883), - [anon_sym_DASH] = ACTIONS(1883), - [anon_sym_STAR] = ACTIONS(1887), - [anon_sym_CARET] = ACTIONS(1885), - [anon_sym_AMP] = ACTIONS(1885), - [anon_sym_this] = ACTIONS(1323), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(2191), + [anon_sym_TILDE] = ACTIONS(2191), + [anon_sym_PLUS_PLUS] = ACTIONS(2191), + [anon_sym_DASH_DASH] = ACTIONS(2191), + [anon_sym_true] = ACTIONS(1257), + [anon_sym_false] = ACTIONS(1257), + [anon_sym_PLUS] = ACTIONS(2189), + [anon_sym_DASH] = ACTIONS(2189), + [anon_sym_STAR] = ACTIONS(1905), + [anon_sym_CARET] = ACTIONS(2191), + [anon_sym_AMP] = ACTIONS(2191), + [anon_sym_this] = ACTIONS(83), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1325), + [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1319), + [sym_predefined_type] = ACTIONS(1265), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1889), + [anon_sym_default] = ACTIONS(1267), + [anon_sym_throw] = ACTIONS(2193), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1891), - [anon_sym_DOT_DOT] = ACTIONS(1893), + [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), @@ -264654,19 +264540,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1333), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(1335), - [anon_sym___reftype] = ACTIONS(1337), - [anon_sym___refvalue] = ACTIONS(1339), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1341), + [anon_sym_stackalloc] = ACTIONS(127), + [anon_sym_sizeof] = ACTIONS(1277), + [anon_sym_typeof] = ACTIONS(1279), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), + [sym_null_literal] = ACTIONS(1287), + [anon_sym_SQUOTE] = ACTIONS(1289), + [sym_integer_literal] = ACTIONS(1287), + [sym_real_literal] = ACTIONS(1291), + [anon_sym_DQUOTE] = ACTIONS(1293), + [sym_verbatim_string_literal] = ACTIONS(1291), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -264677,90 +264563,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(151), - [sym_interpolation_verbatim_start] = ACTIONS(153), - [sym_interpolation_raw_start] = ACTIONS(155), - [sym_raw_string_start] = ACTIONS(157), + [sym_interpolation_regular_start] = ACTIONS(1297), + [sym_interpolation_verbatim_start] = ACTIONS(1299), + [sym_interpolation_raw_start] = ACTIONS(1301), + [sym_raw_string_start] = ACTIONS(1303), }, [1319] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2762), - [sym__name] = STATE(5876), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2376), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(5072), - [sym_non_lvalue_expression] = STATE(3438), - [sym_lvalue_expression] = STATE(3533), - [sym__expression_statement_expression] = STATE(3362), - [sym_assignment_expression] = STATE(3449), - [sym_binary_expression] = STATE(3362), - [sym_postfix_unary_expression] = STATE(3449), - [sym_prefix_unary_expression] = STATE(3449), - [sym__pointer_indirection_expression] = STATE(2747), - [sym_query_expression] = STATE(3362), - [sym_from_clause] = STATE(6175), - [sym_conditional_expression] = STATE(3362), - [sym_conditional_access_expression] = STATE(3362), - [sym_as_expression] = STATE(3362), - [sym_is_expression] = STATE(3362), - [sym_is_pattern_expression] = STATE(3362), - [sym_cast_expression] = STATE(3362), - [sym_checked_expression] = STATE(3362), - [sym_invocation_expression] = STATE(3449), - [sym_switch_expression] = STATE(3362), - [sym_await_expression] = STATE(3449), - [sym_throw_expression] = STATE(3362), - [sym_element_access_expression] = STATE(2747), - [sym_interpolated_string_expression] = STATE(3362), - [sym_member_access_expression] = STATE(2747), - [sym_object_creation_expression] = STATE(3449), - [sym_parenthesized_expression] = STATE(3449), - [sym__parenthesized_lvalue_expression] = STATE(2747), - [sym_lambda_expression] = STATE(3362), - [sym__lambda_expression_init] = STATE(7619), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3362), - [sym_anonymous_method_expression] = STATE(3362), - [sym_anonymous_object_creation_expression] = STATE(3362), - [sym_implicit_array_creation_expression] = STATE(3362), - [sym_implicit_object_creation_expression] = STATE(3362), - [sym_implicit_stackalloc_expression] = STATE(3362), - [sym_initializer_expression] = STATE(3362), - [sym_default_expression] = STATE(3362), - [sym_with_expression] = STATE(3362), - [sym_sizeof_expression] = STATE(3362), - [sym_typeof_expression] = STATE(3362), - [sym_makeref_expression] = STATE(3362), - [sym_ref_expression] = STATE(3362), - [sym_reftype_expression] = STATE(3362), - [sym_refvalue_expression] = STATE(3362), - [sym_stackalloc_expression] = STATE(3362), - [sym_range_expression] = STATE(3362), - [sym_tuple_expression] = STATE(2747), - [sym_literal] = STATE(3362), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3362), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(5893), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2361), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(3507), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3673), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3102), + [sym_postfix_unary_expression] = STATE(3079), + [sym_prefix_unary_expression] = STATE(3079), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6159), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3102), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3079), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3102), + [sym_member_access_expression] = STATE(2472), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3079), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7363), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(3102), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3102), + [sym_typeof_expression] = STATE(3102), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2472), + [sym_literal] = STATE(3102), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(1319), [sym_preproc_endregion] = STATE(1319), [sym_preproc_line] = STATE(1319), @@ -264770,47 +264656,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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3385), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1307), - [anon_sym_LPAREN] = ACTIONS(1877), - [anon_sym_ref] = ACTIONS(1879), - [anon_sym_LBRACE] = ACTIONS(1313), - [anon_sym_delegate] = ACTIONS(1315), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1479), + [anon_sym_LPAREN] = ACTIONS(2237), + [anon_sym_ref] = ACTIONS(2239), + [anon_sym_LBRACE] = ACTIONS(1481), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1881), + [anon_sym_new] = ACTIONS(2241), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1319), - [anon_sym_BANG] = ACTIONS(1885), - [anon_sym_TILDE] = ACTIONS(1885), - [anon_sym_PLUS_PLUS] = ACTIONS(1885), - [anon_sym_DASH_DASH] = ACTIONS(1885), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(2245), + [anon_sym_TILDE] = ACTIONS(2245), + [anon_sym_PLUS_PLUS] = ACTIONS(2245), + [anon_sym_DASH_DASH] = ACTIONS(2245), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1883), - [anon_sym_DASH] = ACTIONS(1883), - [anon_sym_STAR] = ACTIONS(1887), - [anon_sym_CARET] = ACTIONS(1885), - [anon_sym_AMP] = ACTIONS(1885), - [anon_sym_this] = ACTIONS(1323), + [anon_sym_PLUS] = ACTIONS(2243), + [anon_sym_DASH] = ACTIONS(2243), + [anon_sym_STAR] = ACTIONS(2247), + [anon_sym_CARET] = ACTIONS(2245), + [anon_sym_AMP] = ACTIONS(2245), + [anon_sym_this] = ACTIONS(83), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1325), + [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1319), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1889), + [anon_sym_throw] = ACTIONS(2249), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1891), - [anon_sym_DOT_DOT] = ACTIONS(1893), + [anon_sym_await] = ACTIONS(2251), + [anon_sym_DOT_DOT] = ACTIONS(2253), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -264823,19 +264709,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1333), + [anon_sym_stackalloc] = ACTIONS(127), [anon_sym_sizeof] = ACTIONS(129), [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(1335), - [anon_sym___reftype] = ACTIONS(1337), - [anon_sym___refvalue] = ACTIONS(1339), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), [sym_null_literal] = ACTIONS(139), [anon_sym_SQUOTE] = ACTIONS(141), [sym_integer_literal] = ACTIONS(139), [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1341), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -264852,84 +264738,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [1320] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2762), - [sym__name] = STATE(5876), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2376), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(5074), - [sym_non_lvalue_expression] = STATE(3438), - [sym_lvalue_expression] = STATE(3533), - [sym__expression_statement_expression] = STATE(3362), - [sym_assignment_expression] = STATE(3449), - [sym_binary_expression] = STATE(3362), - [sym_postfix_unary_expression] = STATE(3449), - [sym_prefix_unary_expression] = STATE(3449), - [sym__pointer_indirection_expression] = STATE(2747), - [sym_query_expression] = STATE(3362), - [sym_from_clause] = STATE(6175), - [sym_conditional_expression] = STATE(3362), - [sym_conditional_access_expression] = STATE(3362), - [sym_as_expression] = STATE(3362), - [sym_is_expression] = STATE(3362), - [sym_is_pattern_expression] = STATE(3362), - [sym_cast_expression] = STATE(3362), - [sym_checked_expression] = STATE(3362), - [sym_invocation_expression] = STATE(3449), - [sym_switch_expression] = STATE(3362), - [sym_await_expression] = STATE(3449), - [sym_throw_expression] = STATE(3362), - [sym_element_access_expression] = STATE(2747), - [sym_interpolated_string_expression] = STATE(3362), - [sym_member_access_expression] = STATE(2747), - [sym_object_creation_expression] = STATE(3449), - [sym_parenthesized_expression] = STATE(3449), - [sym__parenthesized_lvalue_expression] = STATE(2747), - [sym_lambda_expression] = STATE(3362), - [sym__lambda_expression_init] = STATE(7619), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3362), - [sym_anonymous_method_expression] = STATE(3362), - [sym_anonymous_object_creation_expression] = STATE(3362), - [sym_implicit_array_creation_expression] = STATE(3362), - [sym_implicit_object_creation_expression] = STATE(3362), - [sym_implicit_stackalloc_expression] = STATE(3362), - [sym_initializer_expression] = STATE(3362), - [sym_default_expression] = STATE(3362), - [sym_with_expression] = STATE(3362), - [sym_sizeof_expression] = STATE(3362), - [sym_typeof_expression] = STATE(3362), - [sym_makeref_expression] = STATE(3362), - [sym_ref_expression] = STATE(3362), - [sym_reftype_expression] = STATE(3362), - [sym_refvalue_expression] = STATE(3362), - [sym_stackalloc_expression] = STATE(3362), - [sym_range_expression] = STATE(3362), - [sym_tuple_expression] = STATE(2747), - [sym_literal] = STATE(3362), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3362), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(5879), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2238), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(5660), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(2471), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3102), + [sym_postfix_unary_expression] = STATE(3079), + [sym_prefix_unary_expression] = STATE(3079), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6134), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3102), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3079), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3102), + [sym_member_access_expression] = STATE(2472), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3079), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7425), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(3102), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3102), + [sym_typeof_expression] = STATE(3102), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2472), + [sym_literal] = STATE(3102), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(1320), [sym_preproc_endregion] = STATE(1320), [sym_preproc_line] = STATE(1320), @@ -264939,47 +264825,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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3385), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1307), - [anon_sym_LPAREN] = ACTIONS(1877), - [anon_sym_ref] = ACTIONS(1879), - [anon_sym_LBRACE] = ACTIONS(1313), - [anon_sym_delegate] = ACTIONS(1315), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1479), + [anon_sym_LPAREN] = ACTIONS(43), + [anon_sym_ref] = ACTIONS(715), + [anon_sym_LBRACE] = ACTIONS(1481), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1881), + [anon_sym_new] = ACTIONS(1059), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1319), - [anon_sym_BANG] = ACTIONS(1885), - [anon_sym_TILDE] = ACTIONS(1885), - [anon_sym_PLUS_PLUS] = ACTIONS(1885), - [anon_sym_DASH_DASH] = ACTIONS(1885), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(1525), + [anon_sym_TILDE] = ACTIONS(1525), + [anon_sym_PLUS_PLUS] = ACTIONS(1525), + [anon_sym_DASH_DASH] = ACTIONS(1525), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1883), - [anon_sym_DASH] = ACTIONS(1883), - [anon_sym_STAR] = ACTIONS(1887), - [anon_sym_CARET] = ACTIONS(1885), - [anon_sym_AMP] = ACTIONS(1885), - [anon_sym_this] = ACTIONS(1323), + [anon_sym_PLUS] = ACTIONS(1523), + [anon_sym_DASH] = ACTIONS(1523), + [anon_sym_STAR] = ACTIONS(1105), + [anon_sym_CARET] = ACTIONS(1525), + [anon_sym_AMP] = ACTIONS(1525), + [anon_sym_this] = ACTIONS(83), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1325), + [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1319), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1889), + [anon_sym_throw] = ACTIONS(1527), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1891), - [anon_sym_DOT_DOT] = ACTIONS(1893), + [anon_sym_await] = ACTIONS(1529), + [anon_sym_DOT_DOT] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -264992,19 +264878,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1333), + [anon_sym_stackalloc] = ACTIONS(127), [anon_sym_sizeof] = ACTIONS(129), [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(1335), - [anon_sym___reftype] = ACTIONS(1337), - [anon_sym___refvalue] = ACTIONS(1339), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), [sym_null_literal] = ACTIONS(139), [anon_sym_SQUOTE] = ACTIONS(141), [sym_integer_literal] = ACTIONS(139), [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1341), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -265021,84 +264907,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [1321] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2762), - [sym__name] = STATE(5876), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2376), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(5076), - [sym_non_lvalue_expression] = STATE(3438), - [sym_lvalue_expression] = STATE(3533), - [sym__expression_statement_expression] = STATE(3362), - [sym_assignment_expression] = STATE(3449), - [sym_binary_expression] = STATE(3362), - [sym_postfix_unary_expression] = STATE(3449), - [sym_prefix_unary_expression] = STATE(3449), - [sym__pointer_indirection_expression] = STATE(2747), - [sym_query_expression] = STATE(3362), - [sym_from_clause] = STATE(6175), - [sym_conditional_expression] = STATE(3362), - [sym_conditional_access_expression] = STATE(3362), - [sym_as_expression] = STATE(3362), - [sym_is_expression] = STATE(3362), - [sym_is_pattern_expression] = STATE(3362), - [sym_cast_expression] = STATE(3362), - [sym_checked_expression] = STATE(3362), - [sym_invocation_expression] = STATE(3449), - [sym_switch_expression] = STATE(3362), - [sym_await_expression] = STATE(3449), - [sym_throw_expression] = STATE(3362), - [sym_element_access_expression] = STATE(2747), - [sym_interpolated_string_expression] = STATE(3362), - [sym_member_access_expression] = STATE(2747), - [sym_object_creation_expression] = STATE(3449), - [sym_parenthesized_expression] = STATE(3449), - [sym__parenthesized_lvalue_expression] = STATE(2747), - [sym_lambda_expression] = STATE(3362), - [sym__lambda_expression_init] = STATE(7619), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3362), - [sym_anonymous_method_expression] = STATE(3362), - [sym_anonymous_object_creation_expression] = STATE(3362), - [sym_implicit_array_creation_expression] = STATE(3362), - [sym_implicit_object_creation_expression] = STATE(3362), - [sym_implicit_stackalloc_expression] = STATE(3362), - [sym_initializer_expression] = STATE(3362), - [sym_default_expression] = STATE(3362), - [sym_with_expression] = STATE(3362), - [sym_sizeof_expression] = STATE(3362), - [sym_typeof_expression] = STATE(3362), - [sym_makeref_expression] = STATE(3362), - [sym_ref_expression] = STATE(3362), - [sym_reftype_expression] = STATE(3362), - [sym_refvalue_expression] = STATE(3362), - [sym_stackalloc_expression] = STATE(3362), - [sym_range_expression] = STATE(3362), - [sym_tuple_expression] = STATE(2747), - [sym_literal] = STATE(3362), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3362), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(5879), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2238), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(4671), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3398), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3102), + [sym_postfix_unary_expression] = STATE(3079), + [sym_prefix_unary_expression] = STATE(3079), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6163), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3102), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3079), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3102), + [sym_member_access_expression] = STATE(2472), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3079), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7496), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(3102), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3102), + [sym_typeof_expression] = STATE(3102), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2472), + [sym_literal] = STATE(3102), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(1321), [sym_preproc_endregion] = STATE(1321), [sym_preproc_line] = STATE(1321), @@ -265108,47 +264994,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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3385), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1307), - [anon_sym_LPAREN] = ACTIONS(1877), - [anon_sym_ref] = ACTIONS(1879), - [anon_sym_LBRACE] = ACTIONS(1313), - [anon_sym_delegate] = ACTIONS(1315), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1479), + [anon_sym_LPAREN] = ACTIONS(1487), + [anon_sym_ref] = ACTIONS(1489), + [anon_sym_LBRACE] = ACTIONS(1481), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1881), + [anon_sym_new] = ACTIONS(1095), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1319), - [anon_sym_BANG] = ACTIONS(1885), - [anon_sym_TILDE] = ACTIONS(1885), - [anon_sym_PLUS_PLUS] = ACTIONS(1885), - [anon_sym_DASH_DASH] = ACTIONS(1885), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(1493), + [anon_sym_TILDE] = ACTIONS(1493), + [anon_sym_PLUS_PLUS] = ACTIONS(1493), + [anon_sym_DASH_DASH] = ACTIONS(1493), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1883), - [anon_sym_DASH] = ACTIONS(1883), - [anon_sym_STAR] = ACTIONS(1887), - [anon_sym_CARET] = ACTIONS(1885), - [anon_sym_AMP] = ACTIONS(1885), - [anon_sym_this] = ACTIONS(1323), + [anon_sym_PLUS] = ACTIONS(1491), + [anon_sym_DASH] = ACTIONS(1491), + [anon_sym_STAR] = ACTIONS(1105), + [anon_sym_CARET] = ACTIONS(1493), + [anon_sym_AMP] = ACTIONS(1493), + [anon_sym_this] = ACTIONS(83), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1325), + [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1319), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1889), + [anon_sym_throw] = ACTIONS(1113), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1891), - [anon_sym_DOT_DOT] = ACTIONS(1893), + [anon_sym_await] = ACTIONS(1115), + [anon_sym_DOT_DOT] = ACTIONS(1119), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -265161,19 +265047,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1333), + [anon_sym_stackalloc] = ACTIONS(127), [anon_sym_sizeof] = ACTIONS(129), [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(1335), - [anon_sym___reftype] = ACTIONS(1337), - [anon_sym___refvalue] = ACTIONS(1339), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), [sym_null_literal] = ACTIONS(139), [anon_sym_SQUOTE] = ACTIONS(141), [sym_integer_literal] = ACTIONS(139), [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1341), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -265190,84 +265076,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [1322] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2762), - [sym__name] = STATE(5876), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2376), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(5077), - [sym_non_lvalue_expression] = STATE(3438), - [sym_lvalue_expression] = STATE(3533), - [sym__expression_statement_expression] = STATE(3362), - [sym_assignment_expression] = STATE(3449), - [sym_binary_expression] = STATE(3362), - [sym_postfix_unary_expression] = STATE(3449), - [sym_prefix_unary_expression] = STATE(3449), - [sym__pointer_indirection_expression] = STATE(2747), - [sym_query_expression] = STATE(3362), - [sym_from_clause] = STATE(6175), - [sym_conditional_expression] = STATE(3362), - [sym_conditional_access_expression] = STATE(3362), - [sym_as_expression] = STATE(3362), - [sym_is_expression] = STATE(3362), - [sym_is_pattern_expression] = STATE(3362), - [sym_cast_expression] = STATE(3362), - [sym_checked_expression] = STATE(3362), - [sym_invocation_expression] = STATE(3449), - [sym_switch_expression] = STATE(3362), - [sym_await_expression] = STATE(3449), - [sym_throw_expression] = STATE(3362), - [sym_element_access_expression] = STATE(2747), - [sym_interpolated_string_expression] = STATE(3362), - [sym_member_access_expression] = STATE(2747), - [sym_object_creation_expression] = STATE(3449), - [sym_parenthesized_expression] = STATE(3449), - [sym__parenthesized_lvalue_expression] = STATE(2747), - [sym_lambda_expression] = STATE(3362), - [sym__lambda_expression_init] = STATE(7619), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3362), - [sym_anonymous_method_expression] = STATE(3362), - [sym_anonymous_object_creation_expression] = STATE(3362), - [sym_implicit_array_creation_expression] = STATE(3362), - [sym_implicit_object_creation_expression] = STATE(3362), - [sym_implicit_stackalloc_expression] = STATE(3362), - [sym_initializer_expression] = STATE(3362), - [sym_default_expression] = STATE(3362), - [sym_with_expression] = STATE(3362), - [sym_sizeof_expression] = STATE(3362), - [sym_typeof_expression] = STATE(3362), - [sym_makeref_expression] = STATE(3362), - [sym_ref_expression] = STATE(3362), - [sym_reftype_expression] = STATE(3362), - [sym_refvalue_expression] = STATE(3362), - [sym_stackalloc_expression] = STATE(3362), - [sym_range_expression] = STATE(3362), - [sym_tuple_expression] = STATE(2747), - [sym_literal] = STATE(3362), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3362), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(5879), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2238), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(3528), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3398), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3102), + [sym_postfix_unary_expression] = STATE(3079), + [sym_prefix_unary_expression] = STATE(3079), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6163), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3102), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3079), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3102), + [sym_member_access_expression] = STATE(2472), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3079), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7496), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(3102), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3102), + [sym_typeof_expression] = STATE(3102), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2472), + [sym_literal] = STATE(3102), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(1322), [sym_preproc_endregion] = STATE(1322), [sym_preproc_line] = STATE(1322), @@ -265277,47 +265163,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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3385), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1307), - [anon_sym_LPAREN] = ACTIONS(1877), - [anon_sym_ref] = ACTIONS(1879), - [anon_sym_LBRACE] = ACTIONS(1313), - [anon_sym_delegate] = ACTIONS(1315), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1479), + [anon_sym_LPAREN] = ACTIONS(1487), + [anon_sym_ref] = ACTIONS(1489), + [anon_sym_LBRACE] = ACTIONS(1481), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1881), + [anon_sym_new] = ACTIONS(1095), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1319), - [anon_sym_BANG] = ACTIONS(1885), - [anon_sym_TILDE] = ACTIONS(1885), - [anon_sym_PLUS_PLUS] = ACTIONS(1885), - [anon_sym_DASH_DASH] = ACTIONS(1885), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(1493), + [anon_sym_TILDE] = ACTIONS(1493), + [anon_sym_PLUS_PLUS] = ACTIONS(1493), + [anon_sym_DASH_DASH] = ACTIONS(1493), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1883), - [anon_sym_DASH] = ACTIONS(1883), - [anon_sym_STAR] = ACTIONS(1887), - [anon_sym_CARET] = ACTIONS(1885), - [anon_sym_AMP] = ACTIONS(1885), - [anon_sym_this] = ACTIONS(1323), + [anon_sym_PLUS] = ACTIONS(1491), + [anon_sym_DASH] = ACTIONS(1491), + [anon_sym_STAR] = ACTIONS(1105), + [anon_sym_CARET] = ACTIONS(1493), + [anon_sym_AMP] = ACTIONS(1493), + [anon_sym_this] = ACTIONS(83), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1325), + [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1319), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1889), + [anon_sym_throw] = ACTIONS(1113), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1891), - [anon_sym_DOT_DOT] = ACTIONS(1893), + [anon_sym_await] = ACTIONS(1115), + [anon_sym_DOT_DOT] = ACTIONS(1119), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -265330,19 +265216,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1333), + [anon_sym_stackalloc] = ACTIONS(127), [anon_sym_sizeof] = ACTIONS(129), [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(1335), - [anon_sym___reftype] = ACTIONS(1337), - [anon_sym___refvalue] = ACTIONS(1339), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), [sym_null_literal] = ACTIONS(139), [anon_sym_SQUOTE] = ACTIONS(141), [sym_integer_literal] = ACTIONS(139), [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1341), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -265359,84 +265245,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [1323] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2762), - [sym__name] = STATE(5876), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2376), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(3218), - [sym_non_lvalue_expression] = STATE(3438), - [sym_lvalue_expression] = STATE(3533), - [sym__expression_statement_expression] = STATE(3362), - [sym_assignment_expression] = STATE(3449), - [sym_binary_expression] = STATE(3362), - [sym_postfix_unary_expression] = STATE(3449), - [sym_prefix_unary_expression] = STATE(3449), - [sym__pointer_indirection_expression] = STATE(2747), - [sym_query_expression] = STATE(3362), - [sym_from_clause] = STATE(6175), - [sym_conditional_expression] = STATE(3362), - [sym_conditional_access_expression] = STATE(3362), - [sym_as_expression] = STATE(3362), - [sym_is_expression] = STATE(3362), - [sym_is_pattern_expression] = STATE(3362), - [sym_cast_expression] = STATE(3362), - [sym_checked_expression] = STATE(3362), - [sym_invocation_expression] = STATE(3449), - [sym_switch_expression] = STATE(3362), - [sym_await_expression] = STATE(3449), - [sym_throw_expression] = STATE(3362), - [sym_element_access_expression] = STATE(2747), - [sym_interpolated_string_expression] = STATE(3362), - [sym_member_access_expression] = STATE(2747), - [sym_object_creation_expression] = STATE(3449), - [sym_parenthesized_expression] = STATE(3449), - [sym__parenthesized_lvalue_expression] = STATE(2747), - [sym_lambda_expression] = STATE(3362), - [sym__lambda_expression_init] = STATE(7619), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3362), - [sym_anonymous_method_expression] = STATE(3362), - [sym_anonymous_object_creation_expression] = STATE(3362), - [sym_implicit_array_creation_expression] = STATE(3362), - [sym_implicit_object_creation_expression] = STATE(3362), - [sym_implicit_stackalloc_expression] = STATE(3362), - [sym_initializer_expression] = STATE(3362), - [sym_default_expression] = STATE(3362), - [sym_with_expression] = STATE(3362), - [sym_sizeof_expression] = STATE(3362), - [sym_typeof_expression] = STATE(3362), - [sym_makeref_expression] = STATE(3362), - [sym_ref_expression] = STATE(3362), - [sym_reftype_expression] = STATE(3362), - [sym_refvalue_expression] = STATE(3362), - [sym_stackalloc_expression] = STATE(3362), - [sym_range_expression] = STATE(3362), - [sym_tuple_expression] = STATE(2747), - [sym_literal] = STATE(3362), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3362), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2901), + [sym__name] = STATE(5883), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2359), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(3649), + [sym_non_lvalue_expression] = STATE(3685), + [sym_lvalue_expression] = STATE(2944), + [sym__expression_statement_expression] = STATE(3836), + [sym_assignment_expression] = STATE(3689), + [sym_binary_expression] = STATE(3836), + [sym_postfix_unary_expression] = STATE(3689), + [sym_prefix_unary_expression] = STATE(3689), + [sym__pointer_indirection_expression] = STATE(2906), + [sym_query_expression] = STATE(3836), + [sym_from_clause] = STATE(6139), + [sym_conditional_expression] = STATE(3836), + [sym_conditional_access_expression] = STATE(3836), + [sym_as_expression] = STATE(3836), + [sym_is_expression] = STATE(3836), + [sym_is_pattern_expression] = STATE(3836), + [sym_cast_expression] = STATE(3836), + [sym_checked_expression] = STATE(3836), + [sym_invocation_expression] = STATE(3689), + [sym_switch_expression] = STATE(3836), + [sym_await_expression] = STATE(3689), + [sym_throw_expression] = STATE(3836), + [sym_element_access_expression] = STATE(2906), + [sym_interpolated_string_expression] = STATE(3836), + [sym_member_access_expression] = STATE(2906), + [sym_object_creation_expression] = STATE(3689), + [sym_parenthesized_expression] = STATE(3689), + [sym__parenthesized_lvalue_expression] = STATE(2906), + [sym_lambda_expression] = STATE(3836), + [sym__lambda_expression_init] = STATE(7516), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3836), + [sym_anonymous_method_expression] = STATE(3836), + [sym_anonymous_object_creation_expression] = STATE(3836), + [sym_implicit_array_creation_expression] = STATE(3836), + [sym_implicit_object_creation_expression] = STATE(3836), + [sym_implicit_stackalloc_expression] = STATE(3836), + [sym_initializer_expression] = STATE(3836), + [sym_default_expression] = STATE(3836), + [sym_with_expression] = STATE(3836), + [sym_sizeof_expression] = STATE(3836), + [sym_typeof_expression] = STATE(3836), + [sym_makeref_expression] = STATE(3836), + [sym_ref_expression] = STATE(3836), + [sym_reftype_expression] = STATE(3836), + [sym_refvalue_expression] = STATE(3836), + [sym_stackalloc_expression] = STATE(3836), + [sym_range_expression] = STATE(3836), + [sym_tuple_expression] = STATE(2906), + [sym_literal] = STATE(3836), + [sym_character_literal] = STATE(3843), + [sym_string_literal] = STATE(3843), + [sym_raw_string_literal] = STATE(3843), + [sym_boolean_literal] = STATE(3843), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3836), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(1323), [sym_preproc_endregion] = STATE(1323), [sym_preproc_line] = STATE(1323), @@ -265446,47 +265332,47 @@ 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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3385), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3477), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1307), - [anon_sym_LPAREN] = ACTIONS(1877), - [anon_sym_ref] = ACTIONS(1879), - [anon_sym_LBRACE] = ACTIONS(1313), - [anon_sym_delegate] = ACTIONS(1315), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1655), + [anon_sym_LPAREN] = ACTIONS(1657), + [anon_sym_ref] = ACTIONS(1659), + [anon_sym_LBRACE] = ACTIONS(1661), + [anon_sym_delegate] = ACTIONS(1663), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1881), + [anon_sym_new] = ACTIONS(1665), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1319), - [anon_sym_BANG] = ACTIONS(1885), - [anon_sym_TILDE] = ACTIONS(1885), - [anon_sym_PLUS_PLUS] = ACTIONS(1885), - [anon_sym_DASH_DASH] = ACTIONS(1885), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1883), - [anon_sym_DASH] = ACTIONS(1883), - [anon_sym_STAR] = ACTIONS(1887), - [anon_sym_CARET] = ACTIONS(1885), - [anon_sym_AMP] = ACTIONS(1885), - [anon_sym_this] = ACTIONS(1323), + [anon_sym_checked] = ACTIONS(1667), + [anon_sym_BANG] = ACTIONS(1671), + [anon_sym_TILDE] = ACTIONS(1671), + [anon_sym_PLUS_PLUS] = ACTIONS(1671), + [anon_sym_DASH_DASH] = ACTIONS(1671), + [anon_sym_true] = ACTIONS(1673), + [anon_sym_false] = ACTIONS(1673), + [anon_sym_PLUS] = ACTIONS(1669), + [anon_sym_DASH] = ACTIONS(1669), + [anon_sym_STAR] = ACTIONS(1675), + [anon_sym_CARET] = ACTIONS(1671), + [anon_sym_AMP] = ACTIONS(1671), + [anon_sym_this] = ACTIONS(1677), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1325), + [anon_sym_base] = ACTIONS(1679), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1319), + [sym_predefined_type] = ACTIONS(1681), + [anon_sym_unchecked] = ACTIONS(1667), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1889), + [anon_sym_default] = ACTIONS(1683), + [anon_sym_throw] = ACTIONS(1685), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1891), - [anon_sym_DOT_DOT] = ACTIONS(1893), + [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), @@ -265499,19 +265385,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1333), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(1335), - [anon_sym___reftype] = ACTIONS(1337), - [anon_sym___refvalue] = ACTIONS(1339), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1341), + [anon_sym_stackalloc] = ACTIONS(1691), + [anon_sym_sizeof] = ACTIONS(1693), + [anon_sym_typeof] = ACTIONS(1695), + [anon_sym___makeref] = ACTIONS(1697), + [anon_sym___reftype] = ACTIONS(1699), + [anon_sym___refvalue] = ACTIONS(1701), + [sym_null_literal] = ACTIONS(1703), + [anon_sym_SQUOTE] = ACTIONS(1705), + [sym_integer_literal] = ACTIONS(1703), + [sym_real_literal] = ACTIONS(1707), + [anon_sym_DQUOTE] = ACTIONS(1709), + [sym_verbatim_string_literal] = ACTIONS(1707), + [aux_sym_preproc_if_token1] = ACTIONS(1711), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -265522,90 +265408,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(151), - [sym_interpolation_verbatim_start] = ACTIONS(153), - [sym_interpolation_raw_start] = ACTIONS(155), - [sym_raw_string_start] = ACTIONS(157), + [sym_interpolation_regular_start] = ACTIONS(1713), + [sym_interpolation_verbatim_start] = ACTIONS(1715), + [sym_interpolation_raw_start] = ACTIONS(1717), + [sym_raw_string_start] = ACTIONS(1719), }, [1324] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(5910), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2247), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(5142), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3529), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3080), - [sym_postfix_unary_expression] = STATE(3111), - [sym_prefix_unary_expression] = STATE(3111), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6154), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3080), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3111), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3080), - [sym_member_access_expression] = STATE(2484), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3111), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7444), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(3080), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3080), - [sym_typeof_expression] = STATE(3080), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2484), - [sym_literal] = STATE(3080), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(5879), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2238), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(4549), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3398), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3102), + [sym_postfix_unary_expression] = STATE(3079), + [sym_prefix_unary_expression] = STATE(3079), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6163), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3102), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3079), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3102), + [sym_member_access_expression] = STATE(2472), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3079), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7496), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(3102), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3102), + [sym_typeof_expression] = STATE(3102), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2472), + [sym_literal] = STATE(3102), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(1324), [sym_preproc_endregion] = STATE(1324), [sym_preproc_line] = STATE(1324), @@ -265615,47 +265501,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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1481), - [anon_sym_LPAREN] = ACTIONS(1575), - [anon_sym_ref] = ACTIONS(1577), - [anon_sym_LBRACE] = ACTIONS(1487), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1479), + [anon_sym_LPAREN] = ACTIONS(1487), + [anon_sym_ref] = ACTIONS(1489), + [anon_sym_LBRACE] = ACTIONS(1481), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1501), + [anon_sym_new] = ACTIONS(1095), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1067), - [anon_sym_BANG] = ACTIONS(901), - [anon_sym_TILDE] = ACTIONS(901), - [anon_sym_PLUS_PLUS] = ACTIONS(901), - [anon_sym_DASH_DASH] = ACTIONS(901), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(1493), + [anon_sym_TILDE] = ACTIONS(1493), + [anon_sym_PLUS_PLUS] = ACTIONS(1493), + [anon_sym_DASH_DASH] = ACTIONS(1493), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(903), - [anon_sym_DASH] = ACTIONS(903), - [anon_sym_STAR] = ACTIONS(905), - [anon_sym_CARET] = ACTIONS(901), - [anon_sym_AMP] = ACTIONS(901), + [anon_sym_PLUS] = ACTIONS(1491), + [anon_sym_DASH] = ACTIONS(1491), + [anon_sym_STAR] = ACTIONS(1105), + [anon_sym_CARET] = ACTIONS(1493), + [anon_sym_AMP] = ACTIONS(1493), [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(1067), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1579), + [anon_sym_throw] = ACTIONS(1113), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1581), - [anon_sym_DOT_DOT] = ACTIONS(1583), + [anon_sym_await] = ACTIONS(1115), + [anon_sym_DOT_DOT] = ACTIONS(1119), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -265680,7 +265566,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(1089), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -265697,84 +265583,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [1325] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2762), - [sym__name] = STATE(5876), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2376), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(5106), - [sym_non_lvalue_expression] = STATE(3438), - [sym_lvalue_expression] = STATE(3533), - [sym__expression_statement_expression] = STATE(3362), - [sym_assignment_expression] = STATE(3449), - [sym_binary_expression] = STATE(3362), - [sym_postfix_unary_expression] = STATE(3449), - [sym_prefix_unary_expression] = STATE(3449), - [sym__pointer_indirection_expression] = STATE(2747), - [sym_query_expression] = STATE(3362), - [sym_from_clause] = STATE(6175), - [sym_conditional_expression] = STATE(3362), - [sym_conditional_access_expression] = STATE(3362), - [sym_as_expression] = STATE(3362), - [sym_is_expression] = STATE(3362), - [sym_is_pattern_expression] = STATE(3362), - [sym_cast_expression] = STATE(3362), - [sym_checked_expression] = STATE(3362), - [sym_invocation_expression] = STATE(3449), - [sym_switch_expression] = STATE(3362), - [sym_await_expression] = STATE(3449), - [sym_throw_expression] = STATE(3362), - [sym_element_access_expression] = STATE(2747), - [sym_interpolated_string_expression] = STATE(3362), - [sym_member_access_expression] = STATE(2747), - [sym_object_creation_expression] = STATE(3449), - [sym_parenthesized_expression] = STATE(3449), - [sym__parenthesized_lvalue_expression] = STATE(2747), - [sym_lambda_expression] = STATE(3362), - [sym__lambda_expression_init] = STATE(7619), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3362), - [sym_anonymous_method_expression] = STATE(3362), - [sym_anonymous_object_creation_expression] = STATE(3362), - [sym_implicit_array_creation_expression] = STATE(3362), - [sym_implicit_object_creation_expression] = STATE(3362), - [sym_implicit_stackalloc_expression] = STATE(3362), - [sym_initializer_expression] = STATE(3362), - [sym_default_expression] = STATE(3362), - [sym_with_expression] = STATE(3362), - [sym_sizeof_expression] = STATE(3362), - [sym_typeof_expression] = STATE(3362), - [sym_makeref_expression] = STATE(3362), - [sym_ref_expression] = STATE(3362), - [sym_reftype_expression] = STATE(3362), - [sym_refvalue_expression] = STATE(3362), - [sym_stackalloc_expression] = STATE(3362), - [sym_range_expression] = STATE(3362), - [sym_tuple_expression] = STATE(2747), - [sym_literal] = STATE(3362), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3362), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(5879), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2238), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(4550), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3398), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3102), + [sym_postfix_unary_expression] = STATE(3079), + [sym_prefix_unary_expression] = STATE(3079), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6163), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3102), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3079), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3102), + [sym_member_access_expression] = STATE(2472), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3079), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7496), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(3102), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3102), + [sym_typeof_expression] = STATE(3102), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2472), + [sym_literal] = STATE(3102), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(1325), [sym_preproc_endregion] = STATE(1325), [sym_preproc_line] = STATE(1325), @@ -265784,47 +265670,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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3385), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1307), - [anon_sym_LPAREN] = ACTIONS(1877), - [anon_sym_ref] = ACTIONS(1879), - [anon_sym_LBRACE] = ACTIONS(1313), - [anon_sym_delegate] = ACTIONS(1315), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1479), + [anon_sym_LPAREN] = ACTIONS(1487), + [anon_sym_ref] = ACTIONS(1489), + [anon_sym_LBRACE] = ACTIONS(1481), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1881), + [anon_sym_new] = ACTIONS(1095), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1319), - [anon_sym_BANG] = ACTIONS(1885), - [anon_sym_TILDE] = ACTIONS(1885), - [anon_sym_PLUS_PLUS] = ACTIONS(1885), - [anon_sym_DASH_DASH] = ACTIONS(1885), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(1493), + [anon_sym_TILDE] = ACTIONS(1493), + [anon_sym_PLUS_PLUS] = ACTIONS(1493), + [anon_sym_DASH_DASH] = ACTIONS(1493), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1883), - [anon_sym_DASH] = ACTIONS(1883), - [anon_sym_STAR] = ACTIONS(1887), - [anon_sym_CARET] = ACTIONS(1885), - [anon_sym_AMP] = ACTIONS(1885), - [anon_sym_this] = ACTIONS(1323), + [anon_sym_PLUS] = ACTIONS(1491), + [anon_sym_DASH] = ACTIONS(1491), + [anon_sym_STAR] = ACTIONS(1105), + [anon_sym_CARET] = ACTIONS(1493), + [anon_sym_AMP] = ACTIONS(1493), + [anon_sym_this] = ACTIONS(83), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1325), + [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1319), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1889), + [anon_sym_throw] = ACTIONS(1113), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1891), - [anon_sym_DOT_DOT] = ACTIONS(1893), + [anon_sym_await] = ACTIONS(1115), + [anon_sym_DOT_DOT] = ACTIONS(1119), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -265837,19 +265723,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1333), + [anon_sym_stackalloc] = ACTIONS(127), [anon_sym_sizeof] = ACTIONS(129), [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(1335), - [anon_sym___reftype] = ACTIONS(1337), - [anon_sym___refvalue] = ACTIONS(1339), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), [sym_null_literal] = ACTIONS(139), [anon_sym_SQUOTE] = ACTIONS(141), [sym_integer_literal] = ACTIONS(139), [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1341), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -265866,84 +265752,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [1326] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2762), - [sym__name] = STATE(5876), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2376), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(3163), - [sym_non_lvalue_expression] = STATE(3438), - [sym_lvalue_expression] = STATE(3533), - [sym__expression_statement_expression] = STATE(3362), - [sym_assignment_expression] = STATE(3449), - [sym_binary_expression] = STATE(3362), - [sym_postfix_unary_expression] = STATE(3449), - [sym_prefix_unary_expression] = STATE(3449), - [sym__pointer_indirection_expression] = STATE(2747), - [sym_query_expression] = STATE(3362), - [sym_from_clause] = STATE(6175), - [sym_conditional_expression] = STATE(3362), - [sym_conditional_access_expression] = STATE(3362), - [sym_as_expression] = STATE(3362), - [sym_is_expression] = STATE(3362), - [sym_is_pattern_expression] = STATE(3362), - [sym_cast_expression] = STATE(3362), - [sym_checked_expression] = STATE(3362), - [sym_invocation_expression] = STATE(3449), - [sym_switch_expression] = STATE(3362), - [sym_await_expression] = STATE(3449), - [sym_throw_expression] = STATE(3362), - [sym_element_access_expression] = STATE(2747), - [sym_interpolated_string_expression] = STATE(3362), - [sym_member_access_expression] = STATE(2747), - [sym_object_creation_expression] = STATE(3449), - [sym_parenthesized_expression] = STATE(3449), - [sym__parenthesized_lvalue_expression] = STATE(2747), - [sym_lambda_expression] = STATE(3362), - [sym__lambda_expression_init] = STATE(7619), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3362), - [sym_anonymous_method_expression] = STATE(3362), - [sym_anonymous_object_creation_expression] = STATE(3362), - [sym_implicit_array_creation_expression] = STATE(3362), - [sym_implicit_object_creation_expression] = STATE(3362), - [sym_implicit_stackalloc_expression] = STATE(3362), - [sym_initializer_expression] = STATE(3362), - [sym_default_expression] = STATE(3362), - [sym_with_expression] = STATE(3362), - [sym_sizeof_expression] = STATE(3362), - [sym_typeof_expression] = STATE(3362), - [sym_makeref_expression] = STATE(3362), - [sym_ref_expression] = STATE(3362), - [sym_reftype_expression] = STATE(3362), - [sym_refvalue_expression] = STATE(3362), - [sym_stackalloc_expression] = STATE(3362), - [sym_range_expression] = STATE(3362), - [sym_tuple_expression] = STATE(2747), - [sym_literal] = STATE(3362), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3362), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(5879), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2238), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(4551), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3398), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3102), + [sym_postfix_unary_expression] = STATE(3079), + [sym_prefix_unary_expression] = STATE(3079), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6163), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3102), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3079), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3102), + [sym_member_access_expression] = STATE(2472), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3079), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7496), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(3102), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3102), + [sym_typeof_expression] = STATE(3102), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2472), + [sym_literal] = STATE(3102), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(1326), [sym_preproc_endregion] = STATE(1326), [sym_preproc_line] = STATE(1326), @@ -265953,47 +265839,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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3385), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1307), - [anon_sym_LPAREN] = ACTIONS(1877), - [anon_sym_ref] = ACTIONS(1879), - [anon_sym_LBRACE] = ACTIONS(1313), - [anon_sym_delegate] = ACTIONS(1315), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1479), + [anon_sym_LPAREN] = ACTIONS(1487), + [anon_sym_ref] = ACTIONS(1489), + [anon_sym_LBRACE] = ACTIONS(1481), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1881), + [anon_sym_new] = ACTIONS(1095), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1319), - [anon_sym_BANG] = ACTIONS(1885), - [anon_sym_TILDE] = ACTIONS(1885), - [anon_sym_PLUS_PLUS] = ACTIONS(1885), - [anon_sym_DASH_DASH] = ACTIONS(1885), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(1493), + [anon_sym_TILDE] = ACTIONS(1493), + [anon_sym_PLUS_PLUS] = ACTIONS(1493), + [anon_sym_DASH_DASH] = ACTIONS(1493), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1883), - [anon_sym_DASH] = ACTIONS(1883), - [anon_sym_STAR] = ACTIONS(1887), - [anon_sym_CARET] = ACTIONS(1885), - [anon_sym_AMP] = ACTIONS(1885), - [anon_sym_this] = ACTIONS(1323), + [anon_sym_PLUS] = ACTIONS(1491), + [anon_sym_DASH] = ACTIONS(1491), + [anon_sym_STAR] = ACTIONS(1105), + [anon_sym_CARET] = ACTIONS(1493), + [anon_sym_AMP] = ACTIONS(1493), + [anon_sym_this] = ACTIONS(83), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1325), + [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1319), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1889), + [anon_sym_throw] = ACTIONS(1113), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1891), - [anon_sym_DOT_DOT] = ACTIONS(1893), + [anon_sym_await] = ACTIONS(1115), + [anon_sym_DOT_DOT] = ACTIONS(1119), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -266006,19 +265892,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1333), + [anon_sym_stackalloc] = ACTIONS(127), [anon_sym_sizeof] = ACTIONS(129), [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(1335), - [anon_sym___reftype] = ACTIONS(1337), - [anon_sym___refvalue] = ACTIONS(1339), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), [sym_null_literal] = ACTIONS(139), [anon_sym_SQUOTE] = ACTIONS(141), [sym_integer_literal] = ACTIONS(139), [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1341), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -266035,84 +265921,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [1327] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(3184), - [sym__name] = STATE(5883), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2313), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2269), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(4975), - [sym_non_lvalue_expression] = STATE(4541), - [sym_lvalue_expression] = STATE(3527), - [sym__expression_statement_expression] = STATE(4529), - [sym_assignment_expression] = STATE(4543), - [sym_binary_expression] = STATE(4529), - [sym_postfix_unary_expression] = STATE(4543), - [sym_prefix_unary_expression] = STATE(4543), - [sym__pointer_indirection_expression] = STATE(3175), - [sym_query_expression] = STATE(4529), - [sym_from_clause] = STATE(6169), - [sym_conditional_expression] = STATE(4529), - [sym_conditional_access_expression] = STATE(4529), - [sym_as_expression] = STATE(4529), - [sym_is_expression] = STATE(4529), - [sym_is_pattern_expression] = STATE(4529), - [sym_cast_expression] = STATE(4529), - [sym_checked_expression] = STATE(4529), - [sym_invocation_expression] = STATE(4543), - [sym_switch_expression] = STATE(4529), - [sym_await_expression] = STATE(4543), - [sym_throw_expression] = STATE(4529), - [sym_element_access_expression] = STATE(3175), - [sym_interpolated_string_expression] = STATE(4529), - [sym_member_access_expression] = STATE(3175), - [sym_object_creation_expression] = STATE(4543), - [sym_parenthesized_expression] = STATE(4543), - [sym__parenthesized_lvalue_expression] = STATE(3175), - [sym_lambda_expression] = STATE(4529), - [sym__lambda_expression_init] = STATE(7337), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(4529), - [sym_anonymous_method_expression] = STATE(4529), - [sym_anonymous_object_creation_expression] = STATE(4529), - [sym_implicit_array_creation_expression] = STATE(4529), - [sym_implicit_object_creation_expression] = STATE(4529), - [sym_implicit_stackalloc_expression] = STATE(4529), - [sym_initializer_expression] = STATE(4529), - [sym_default_expression] = STATE(4529), - [sym_with_expression] = STATE(4529), - [sym_sizeof_expression] = STATE(4529), - [sym_typeof_expression] = STATE(4529), - [sym_makeref_expression] = STATE(4529), - [sym_ref_expression] = STATE(4529), - [sym_reftype_expression] = STATE(4529), - [sym_refvalue_expression] = STATE(4529), - [sym_stackalloc_expression] = STATE(4529), - [sym_range_expression] = STATE(4529), - [sym_tuple_expression] = STATE(3175), - [sym_literal] = STATE(4529), - [sym_character_literal] = STATE(4536), - [sym_string_literal] = STATE(4536), - [sym_raw_string_literal] = STATE(4536), - [sym_boolean_literal] = STATE(4536), - [sym_identifier] = STATE(2246), - [sym__reserved_identifier] = STATE(2240), - [sym_preproc_if_in_expression] = STATE(4529), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(5879), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2238), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(4552), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3398), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3102), + [sym_postfix_unary_expression] = STATE(3079), + [sym_prefix_unary_expression] = STATE(3079), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6163), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3102), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3079), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3102), + [sym_member_access_expression] = STATE(2472), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3079), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7496), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(3102), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3102), + [sym_typeof_expression] = STATE(3102), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2472), + [sym_literal] = STATE(3102), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(1327), [sym_preproc_endregion] = STATE(1327), [sym_preproc_line] = STATE(1327), @@ -266122,216 +266008,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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3363), - [sym__identifier_token] = ACTIONS(1387), - [anon_sym_alias] = ACTIONS(1389), - [anon_sym_global] = ACTIONS(1389), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1391), - [anon_sym_LPAREN] = ACTIONS(1745), - [anon_sym_ref] = ACTIONS(1747), - [anon_sym_LBRACE] = ACTIONS(1397), - [anon_sym_delegate] = ACTIONS(1399), - [anon_sym_async] = ACTIONS(1047), - [anon_sym_file] = ACTIONS(1389), - [anon_sym_new] = ACTIONS(1467), - [anon_sym_where] = ACTIONS(1389), - [anon_sym_notnull] = ACTIONS(1389), - [anon_sym_unmanaged] = ACTIONS(1389), - [anon_sym_checked] = ACTIONS(1403), - [anon_sym_BANG] = ACTIONS(1751), - [anon_sym_TILDE] = ACTIONS(1751), - [anon_sym_PLUS_PLUS] = ACTIONS(1751), - [anon_sym_DASH_DASH] = ACTIONS(1751), - [anon_sym_true] = ACTIONS(1409), - [anon_sym_false] = ACTIONS(1409), - [anon_sym_PLUS] = ACTIONS(1749), - [anon_sym_DASH] = ACTIONS(1749), - [anon_sym_STAR] = ACTIONS(1473), - [anon_sym_CARET] = ACTIONS(1751), - [anon_sym_AMP] = ACTIONS(1751), - [anon_sym_this] = ACTIONS(1413), - [anon_sym_scoped] = ACTIONS(1415), - [anon_sym_base] = ACTIONS(1417), - [anon_sym_var] = ACTIONS(1419), - [sym_predefined_type] = ACTIONS(1421), - [anon_sym_unchecked] = ACTIONS(1403), - [anon_sym_yield] = ACTIONS(1389), - [anon_sym_default] = ACTIONS(1423), - [anon_sym_throw] = ACTIONS(1753), - [anon_sym_when] = ACTIONS(1389), - [anon_sym_await] = ACTIONS(1755), - [anon_sym_DOT_DOT] = ACTIONS(1757), - [anon_sym_from] = ACTIONS(1431), - [anon_sym_into] = ACTIONS(1389), - [anon_sym_join] = ACTIONS(1389), - [anon_sym_on] = ACTIONS(1389), - [anon_sym_equals] = ACTIONS(1389), - [anon_sym_let] = ACTIONS(1389), - [anon_sym_orderby] = ACTIONS(1389), - [anon_sym_ascending] = ACTIONS(1389), - [anon_sym_descending] = ACTIONS(1389), - [anon_sym_group] = ACTIONS(1389), - [anon_sym_by] = ACTIONS(1389), - [anon_sym_select] = ACTIONS(1389), - [anon_sym_stackalloc] = ACTIONS(1433), - [anon_sym_sizeof] = ACTIONS(1435), - [anon_sym_typeof] = ACTIONS(1437), - [anon_sym___makeref] = ACTIONS(1439), - [anon_sym___reftype] = ACTIONS(1441), - [anon_sym___refvalue] = ACTIONS(1443), - [sym_null_literal] = ACTIONS(1445), - [anon_sym_SQUOTE] = ACTIONS(1447), - [sym_integer_literal] = ACTIONS(1445), - [sym_real_literal] = ACTIONS(1449), - [anon_sym_DQUOTE] = ACTIONS(1451), - [sym_verbatim_string_literal] = ACTIONS(1449), - [aux_sym_preproc_if_token1] = ACTIONS(1453), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1455), - [sym_interpolation_verbatim_start] = ACTIONS(1457), - [sym_interpolation_raw_start] = ACTIONS(1459), - [sym_raw_string_start] = ACTIONS(1461), - }, - [1328] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2762), - [sym__name] = STATE(5876), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2376), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(5111), - [sym_non_lvalue_expression] = STATE(3438), - [sym_lvalue_expression] = STATE(3533), - [sym__expression_statement_expression] = STATE(3362), - [sym_assignment_expression] = STATE(3449), - [sym_binary_expression] = STATE(3362), - [sym_postfix_unary_expression] = STATE(3449), - [sym_prefix_unary_expression] = STATE(3449), - [sym__pointer_indirection_expression] = STATE(2747), - [sym_query_expression] = STATE(3362), - [sym_from_clause] = STATE(6175), - [sym_conditional_expression] = STATE(3362), - [sym_conditional_access_expression] = STATE(3362), - [sym_as_expression] = STATE(3362), - [sym_is_expression] = STATE(3362), - [sym_is_pattern_expression] = STATE(3362), - [sym_cast_expression] = STATE(3362), - [sym_checked_expression] = STATE(3362), - [sym_invocation_expression] = STATE(3449), - [sym_switch_expression] = STATE(3362), - [sym_await_expression] = STATE(3449), - [sym_throw_expression] = STATE(3362), - [sym_element_access_expression] = STATE(2747), - [sym_interpolated_string_expression] = STATE(3362), - [sym_member_access_expression] = STATE(2747), - [sym_object_creation_expression] = STATE(3449), - [sym_parenthesized_expression] = STATE(3449), - [sym__parenthesized_lvalue_expression] = STATE(2747), - [sym_lambda_expression] = STATE(3362), - [sym__lambda_expression_init] = STATE(7619), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3362), - [sym_anonymous_method_expression] = STATE(3362), - [sym_anonymous_object_creation_expression] = STATE(3362), - [sym_implicit_array_creation_expression] = STATE(3362), - [sym_implicit_object_creation_expression] = STATE(3362), - [sym_implicit_stackalloc_expression] = STATE(3362), - [sym_initializer_expression] = STATE(3362), - [sym_default_expression] = STATE(3362), - [sym_with_expression] = STATE(3362), - [sym_sizeof_expression] = STATE(3362), - [sym_typeof_expression] = STATE(3362), - [sym_makeref_expression] = STATE(3362), - [sym_ref_expression] = STATE(3362), - [sym_reftype_expression] = STATE(3362), - [sym_refvalue_expression] = STATE(3362), - [sym_stackalloc_expression] = STATE(3362), - [sym_range_expression] = STATE(3362), - [sym_tuple_expression] = STATE(2747), - [sym_literal] = STATE(3362), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3362), - [sym_preproc_if_in_attribute_list] = STATE(5576), - [sym_preproc_region] = STATE(1328), - [sym_preproc_endregion] = STATE(1328), - [sym_preproc_line] = STATE(1328), - [sym_preproc_pragma] = STATE(1328), - [sym_preproc_nullable] = STATE(1328), - [sym_preproc_error] = STATE(1328), - [sym_preproc_warning] = STATE(1328), - [sym_preproc_define] = STATE(1328), - [sym_preproc_undef] = STATE(1328), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3385), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1307), - [anon_sym_LPAREN] = ACTIONS(1877), - [anon_sym_ref] = ACTIONS(1879), - [anon_sym_LBRACE] = ACTIONS(1313), - [anon_sym_delegate] = ACTIONS(1315), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1479), + [anon_sym_LPAREN] = ACTIONS(1487), + [anon_sym_ref] = ACTIONS(1489), + [anon_sym_LBRACE] = ACTIONS(1481), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1881), + [anon_sym_new] = ACTIONS(1095), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1319), - [anon_sym_BANG] = ACTIONS(1885), - [anon_sym_TILDE] = ACTIONS(1885), - [anon_sym_PLUS_PLUS] = ACTIONS(1885), - [anon_sym_DASH_DASH] = ACTIONS(1885), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(1493), + [anon_sym_TILDE] = ACTIONS(1493), + [anon_sym_PLUS_PLUS] = ACTIONS(1493), + [anon_sym_DASH_DASH] = ACTIONS(1493), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1883), - [anon_sym_DASH] = ACTIONS(1883), - [anon_sym_STAR] = ACTIONS(1887), - [anon_sym_CARET] = ACTIONS(1885), - [anon_sym_AMP] = ACTIONS(1885), - [anon_sym_this] = ACTIONS(1323), + [anon_sym_PLUS] = ACTIONS(1491), + [anon_sym_DASH] = ACTIONS(1491), + [anon_sym_STAR] = ACTIONS(1105), + [anon_sym_CARET] = ACTIONS(1493), + [anon_sym_AMP] = ACTIONS(1493), + [anon_sym_this] = ACTIONS(83), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1325), + [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1319), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1889), + [anon_sym_throw] = ACTIONS(1113), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1891), - [anon_sym_DOT_DOT] = ACTIONS(1893), + [anon_sym_await] = ACTIONS(1115), + [anon_sym_DOT_DOT] = ACTIONS(1119), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -266344,19 +266061,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1333), + [anon_sym_stackalloc] = ACTIONS(127), [anon_sym_sizeof] = ACTIONS(129), [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(1335), - [anon_sym___reftype] = ACTIONS(1337), - [anon_sym___refvalue] = ACTIONS(1339), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), [sym_null_literal] = ACTIONS(139), [anon_sym_SQUOTE] = ACTIONS(141), [sym_integer_literal] = ACTIONS(139), [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1341), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -266372,135 +266089,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), }, - [1329] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(5160), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2204), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(4878), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3520), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3080), - [sym_postfix_unary_expression] = STATE(3111), - [sym_prefix_unary_expression] = STATE(3111), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6154), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3080), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3111), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3080), - [sym_member_access_expression] = STATE(2484), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3111), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7530), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(3080), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3080), - [sym_typeof_expression] = STATE(3080), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2484), - [sym_literal] = STATE(3080), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), - [sym_preproc_region] = STATE(1329), - [sym_preproc_endregion] = STATE(1329), - [sym_preproc_line] = STATE(1329), - [sym_preproc_pragma] = STATE(1329), - [sym_preproc_nullable] = STATE(1329), - [sym_preproc_error] = STATE(1329), - [sym_preproc_warning] = STATE(1329), - [sym_preproc_define] = STATE(1329), - [sym_preproc_undef] = STATE(1329), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [1328] = { + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(5879), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2238), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(4553), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3398), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3102), + [sym_postfix_unary_expression] = STATE(3079), + [sym_prefix_unary_expression] = STATE(3079), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6163), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3102), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3079), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3102), + [sym_member_access_expression] = STATE(2472), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3079), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7496), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(3102), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3102), + [sym_typeof_expression] = STATE(3102), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2472), + [sym_literal] = STATE(3102), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), + [sym_preproc_region] = STATE(1328), + [sym_preproc_endregion] = STATE(1328), + [sym_preproc_line] = STATE(1328), + [sym_preproc_pragma] = STATE(1328), + [sym_preproc_nullable] = STATE(1328), + [sym_preproc_error] = STATE(1328), + [sym_preproc_warning] = STATE(1328), + [sym_preproc_define] = STATE(1328), + [sym_preproc_undef] = STATE(1328), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1481), - [anon_sym_LPAREN] = ACTIONS(43), - [anon_sym_ref] = ACTIONS(661), - [anon_sym_LBRACE] = ACTIONS(1487), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1479), + [anon_sym_LPAREN] = ACTIONS(1487), + [anon_sym_ref] = ACTIONS(1489), + [anon_sym_LBRACE] = ACTIONS(1481), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1061), + [anon_sym_new] = ACTIONS(1095), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = 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_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(1493), + [anon_sym_TILDE] = ACTIONS(1493), + [anon_sym_PLUS_PLUS] = ACTIONS(1493), + [anon_sym_DASH_DASH] = ACTIONS(1493), [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_PLUS] = ACTIONS(1491), + [anon_sym_DASH] = ACTIONS(1491), + [anon_sym_STAR] = ACTIONS(1105), + [anon_sym_CARET] = ACTIONS(1493), + [anon_sym_AMP] = ACTIONS(1493), [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(1067), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1589), + [anon_sym_throw] = ACTIONS(1113), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1591), - [anon_sym_DOT_DOT] = ACTIONS(123), + [anon_sym_await] = ACTIONS(1115), + [anon_sym_DOT_DOT] = ACTIONS(1119), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -266525,7 +266242,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(1089), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -266541,135 +266258,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), }, - [1330] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2762), - [sym__name] = STATE(5876), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2376), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(4846), - [sym_non_lvalue_expression] = STATE(3438), - [sym_lvalue_expression] = STATE(3533), - [sym__expression_statement_expression] = STATE(3362), - [sym_assignment_expression] = STATE(3449), - [sym_binary_expression] = STATE(3362), - [sym_postfix_unary_expression] = STATE(3449), - [sym_prefix_unary_expression] = STATE(3449), - [sym__pointer_indirection_expression] = STATE(2747), - [sym_query_expression] = STATE(3362), - [sym_from_clause] = STATE(6175), - [sym_conditional_expression] = STATE(3362), - [sym_conditional_access_expression] = STATE(3362), - [sym_as_expression] = STATE(3362), - [sym_is_expression] = STATE(3362), - [sym_is_pattern_expression] = STATE(3362), - [sym_cast_expression] = STATE(3362), - [sym_checked_expression] = STATE(3362), - [sym_invocation_expression] = STATE(3449), - [sym_switch_expression] = STATE(3362), - [sym_await_expression] = STATE(3449), - [sym_throw_expression] = STATE(3362), - [sym_element_access_expression] = STATE(2747), - [sym_interpolated_string_expression] = STATE(3362), - [sym_member_access_expression] = STATE(2747), - [sym_object_creation_expression] = STATE(3449), - [sym_parenthesized_expression] = STATE(3449), - [sym__parenthesized_lvalue_expression] = STATE(2747), - [sym_lambda_expression] = STATE(3362), - [sym__lambda_expression_init] = STATE(7619), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3362), - [sym_anonymous_method_expression] = STATE(3362), - [sym_anonymous_object_creation_expression] = STATE(3362), - [sym_implicit_array_creation_expression] = STATE(3362), - [sym_implicit_object_creation_expression] = STATE(3362), - [sym_implicit_stackalloc_expression] = STATE(3362), - [sym_initializer_expression] = STATE(3362), - [sym_default_expression] = STATE(3362), - [sym_with_expression] = STATE(3362), - [sym_sizeof_expression] = STATE(3362), - [sym_typeof_expression] = STATE(3362), - [sym_makeref_expression] = STATE(3362), - [sym_ref_expression] = STATE(3362), - [sym_reftype_expression] = STATE(3362), - [sym_refvalue_expression] = STATE(3362), - [sym_stackalloc_expression] = STATE(3362), - [sym_range_expression] = STATE(3362), - [sym_tuple_expression] = STATE(2747), - [sym_literal] = STATE(3362), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3362), - [sym_preproc_if_in_attribute_list] = STATE(5576), - [sym_preproc_region] = STATE(1330), - [sym_preproc_endregion] = STATE(1330), - [sym_preproc_line] = STATE(1330), - [sym_preproc_pragma] = STATE(1330), - [sym_preproc_nullable] = STATE(1330), - [sym_preproc_error] = STATE(1330), - [sym_preproc_warning] = STATE(1330), - [sym_preproc_define] = STATE(1330), - [sym_preproc_undef] = STATE(1330), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3385), + [1329] = { + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(5879), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2238), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(4554), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3398), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3102), + [sym_postfix_unary_expression] = STATE(3079), + [sym_prefix_unary_expression] = STATE(3079), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6163), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3102), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3079), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3102), + [sym_member_access_expression] = STATE(2472), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3079), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7496), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(3102), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3102), + [sym_typeof_expression] = STATE(3102), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2472), + [sym_literal] = STATE(3102), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), + [sym_preproc_region] = STATE(1329), + [sym_preproc_endregion] = STATE(1329), + [sym_preproc_line] = STATE(1329), + [sym_preproc_pragma] = STATE(1329), + [sym_preproc_nullable] = STATE(1329), + [sym_preproc_error] = STATE(1329), + [sym_preproc_warning] = STATE(1329), + [sym_preproc_define] = STATE(1329), + [sym_preproc_undef] = STATE(1329), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1307), - [anon_sym_LPAREN] = ACTIONS(1877), - [anon_sym_ref] = ACTIONS(1879), - [anon_sym_LBRACE] = ACTIONS(1313), - [anon_sym_delegate] = ACTIONS(1315), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1479), + [anon_sym_LPAREN] = ACTIONS(1487), + [anon_sym_ref] = ACTIONS(1489), + [anon_sym_LBRACE] = ACTIONS(1481), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1881), + [anon_sym_new] = ACTIONS(1095), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1319), - [anon_sym_BANG] = ACTIONS(1885), - [anon_sym_TILDE] = ACTIONS(1885), - [anon_sym_PLUS_PLUS] = ACTIONS(1885), - [anon_sym_DASH_DASH] = ACTIONS(1885), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(1493), + [anon_sym_TILDE] = ACTIONS(1493), + [anon_sym_PLUS_PLUS] = ACTIONS(1493), + [anon_sym_DASH_DASH] = ACTIONS(1493), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1883), - [anon_sym_DASH] = ACTIONS(1883), - [anon_sym_STAR] = ACTIONS(1887), - [anon_sym_CARET] = ACTIONS(1885), - [anon_sym_AMP] = ACTIONS(1885), - [anon_sym_this] = ACTIONS(1323), + [anon_sym_PLUS] = ACTIONS(1491), + [anon_sym_DASH] = ACTIONS(1491), + [anon_sym_STAR] = ACTIONS(1105), + [anon_sym_CARET] = ACTIONS(1493), + [anon_sym_AMP] = ACTIONS(1493), + [anon_sym_this] = ACTIONS(83), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1325), + [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1319), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1889), + [anon_sym_throw] = ACTIONS(1113), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1891), - [anon_sym_DOT_DOT] = ACTIONS(1893), + [anon_sym_await] = ACTIONS(1115), + [anon_sym_DOT_DOT] = ACTIONS(1119), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -266682,19 +266399,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1333), + [anon_sym_stackalloc] = ACTIONS(127), [anon_sym_sizeof] = ACTIONS(129), [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(1335), - [anon_sym___reftype] = ACTIONS(1337), - [anon_sym___refvalue] = ACTIONS(1339), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), [sym_null_literal] = ACTIONS(139), [anon_sym_SQUOTE] = ACTIONS(141), [sym_integer_literal] = ACTIONS(139), [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1341), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -266710,135 +266427,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), }, - [1331] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(5160), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2204), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(3521), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3520), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3080), - [sym_postfix_unary_expression] = STATE(3111), - [sym_prefix_unary_expression] = STATE(3111), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6154), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3080), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3111), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3080), - [sym_member_access_expression] = STATE(2484), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3111), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7530), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(3080), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3080), - [sym_typeof_expression] = STATE(3080), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2484), - [sym_literal] = STATE(3080), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), - [sym_preproc_region] = STATE(1331), - [sym_preproc_endregion] = STATE(1331), - [sym_preproc_line] = STATE(1331), - [sym_preproc_pragma] = STATE(1331), - [sym_preproc_nullable] = STATE(1331), - [sym_preproc_error] = STATE(1331), - [sym_preproc_warning] = STATE(1331), - [sym_preproc_define] = STATE(1331), - [sym_preproc_undef] = STATE(1331), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [1330] = { + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(5879), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2238), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(4555), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3398), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3102), + [sym_postfix_unary_expression] = STATE(3079), + [sym_prefix_unary_expression] = STATE(3079), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6163), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3102), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3079), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3102), + [sym_member_access_expression] = STATE(2472), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3079), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7496), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(3102), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3102), + [sym_typeof_expression] = STATE(3102), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2472), + [sym_literal] = STATE(3102), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), + [sym_preproc_region] = STATE(1330), + [sym_preproc_endregion] = STATE(1330), + [sym_preproc_line] = STATE(1330), + [sym_preproc_pragma] = STATE(1330), + [sym_preproc_nullable] = STATE(1330), + [sym_preproc_error] = STATE(1330), + [sym_preproc_warning] = STATE(1330), + [sym_preproc_define] = STATE(1330), + [sym_preproc_undef] = STATE(1330), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1481), - [anon_sym_LPAREN] = ACTIONS(43), - [anon_sym_ref] = ACTIONS(661), - [anon_sym_LBRACE] = ACTIONS(1487), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1479), + [anon_sym_LPAREN] = ACTIONS(1487), + [anon_sym_ref] = ACTIONS(1489), + [anon_sym_LBRACE] = ACTIONS(1481), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1061), + [anon_sym_new] = ACTIONS(1095), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = 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_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(1493), + [anon_sym_TILDE] = ACTIONS(1493), + [anon_sym_PLUS_PLUS] = ACTIONS(1493), + [anon_sym_DASH_DASH] = ACTIONS(1493), [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_PLUS] = ACTIONS(1491), + [anon_sym_DASH] = ACTIONS(1491), + [anon_sym_STAR] = ACTIONS(1105), + [anon_sym_CARET] = ACTIONS(1493), + [anon_sym_AMP] = ACTIONS(1493), [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(1067), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1589), + [anon_sym_throw] = ACTIONS(1113), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1591), - [anon_sym_DOT_DOT] = ACTIONS(123), + [anon_sym_await] = ACTIONS(1115), + [anon_sym_DOT_DOT] = ACTIONS(1119), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -266863,7 +266580,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(1089), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -266879,304 +266596,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), }, - [1332] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(3184), - [sym__name] = STATE(5883), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2313), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2269), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(4265), - [sym_non_lvalue_expression] = STATE(4541), - [sym_lvalue_expression] = STATE(3527), - [sym__expression_statement_expression] = STATE(4529), - [sym_assignment_expression] = STATE(4543), - [sym_binary_expression] = STATE(4529), - [sym_postfix_unary_expression] = STATE(4543), - [sym_prefix_unary_expression] = STATE(4543), - [sym__pointer_indirection_expression] = STATE(3175), - [sym_query_expression] = STATE(4529), - [sym_from_clause] = STATE(6169), - [sym_conditional_expression] = STATE(4529), - [sym_conditional_access_expression] = STATE(4529), - [sym_as_expression] = STATE(4529), - [sym_is_expression] = STATE(4529), - [sym_is_pattern_expression] = STATE(4529), - [sym_cast_expression] = STATE(4529), - [sym_checked_expression] = STATE(4529), - [sym_invocation_expression] = STATE(4543), - [sym_switch_expression] = STATE(4529), - [sym_await_expression] = STATE(4543), - [sym_throw_expression] = STATE(4529), - [sym_element_access_expression] = STATE(3175), - [sym_interpolated_string_expression] = STATE(4529), - [sym_member_access_expression] = STATE(3175), - [sym_object_creation_expression] = STATE(4543), - [sym_parenthesized_expression] = STATE(4543), - [sym__parenthesized_lvalue_expression] = STATE(3175), - [sym_lambda_expression] = STATE(4529), - [sym__lambda_expression_init] = STATE(7337), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(4529), - [sym_anonymous_method_expression] = STATE(4529), - [sym_anonymous_object_creation_expression] = STATE(4529), - [sym_implicit_array_creation_expression] = STATE(4529), - [sym_implicit_object_creation_expression] = STATE(4529), - [sym_implicit_stackalloc_expression] = STATE(4529), - [sym_initializer_expression] = STATE(4529), - [sym_default_expression] = STATE(4529), - [sym_with_expression] = STATE(4529), - [sym_sizeof_expression] = STATE(4529), - [sym_typeof_expression] = STATE(4529), - [sym_makeref_expression] = STATE(4529), - [sym_ref_expression] = STATE(4529), - [sym_reftype_expression] = STATE(4529), - [sym_refvalue_expression] = STATE(4529), - [sym_stackalloc_expression] = STATE(4529), - [sym_range_expression] = STATE(4529), - [sym_tuple_expression] = STATE(3175), - [sym_literal] = STATE(4529), - [sym_character_literal] = STATE(4536), - [sym_string_literal] = STATE(4536), - [sym_raw_string_literal] = STATE(4536), - [sym_boolean_literal] = STATE(4536), - [sym_identifier] = STATE(2246), - [sym__reserved_identifier] = STATE(2240), - [sym_preproc_if_in_expression] = STATE(4529), - [sym_preproc_if_in_attribute_list] = STATE(5576), - [sym_preproc_region] = STATE(1332), - [sym_preproc_endregion] = STATE(1332), - [sym_preproc_line] = STATE(1332), - [sym_preproc_pragma] = STATE(1332), - [sym_preproc_nullable] = STATE(1332), - [sym_preproc_error] = STATE(1332), - [sym_preproc_warning] = STATE(1332), - [sym_preproc_define] = STATE(1332), - [sym_preproc_undef] = STATE(1332), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3363), - [sym__identifier_token] = ACTIONS(1387), - [anon_sym_alias] = ACTIONS(1389), - [anon_sym_global] = ACTIONS(1389), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1391), - [anon_sym_LPAREN] = ACTIONS(1745), - [anon_sym_ref] = ACTIONS(1747), - [anon_sym_LBRACE] = ACTIONS(1397), - [anon_sym_delegate] = ACTIONS(1399), - [anon_sym_async] = ACTIONS(1047), - [anon_sym_file] = ACTIONS(1389), - [anon_sym_new] = ACTIONS(1467), - [anon_sym_where] = ACTIONS(1389), - [anon_sym_notnull] = ACTIONS(1389), - [anon_sym_unmanaged] = ACTIONS(1389), - [anon_sym_checked] = ACTIONS(1403), - [anon_sym_BANG] = ACTIONS(1751), - [anon_sym_TILDE] = ACTIONS(1751), - [anon_sym_PLUS_PLUS] = ACTIONS(1751), - [anon_sym_DASH_DASH] = ACTIONS(1751), - [anon_sym_true] = ACTIONS(1409), - [anon_sym_false] = ACTIONS(1409), - [anon_sym_PLUS] = ACTIONS(1749), - [anon_sym_DASH] = ACTIONS(1749), - [anon_sym_STAR] = ACTIONS(1473), - [anon_sym_CARET] = ACTIONS(1751), - [anon_sym_AMP] = ACTIONS(1751), - [anon_sym_this] = ACTIONS(1413), - [anon_sym_scoped] = ACTIONS(1415), - [anon_sym_base] = ACTIONS(1417), - [anon_sym_var] = ACTIONS(1419), - [sym_predefined_type] = ACTIONS(1421), - [anon_sym_unchecked] = ACTIONS(1403), - [anon_sym_yield] = ACTIONS(1389), - [anon_sym_default] = ACTIONS(1423), - [anon_sym_throw] = ACTIONS(1753), - [anon_sym_when] = ACTIONS(1389), - [anon_sym_await] = ACTIONS(1755), - [anon_sym_DOT_DOT] = ACTIONS(1757), - [anon_sym_from] = ACTIONS(1431), - [anon_sym_into] = ACTIONS(1389), - [anon_sym_join] = ACTIONS(1389), - [anon_sym_on] = ACTIONS(1389), - [anon_sym_equals] = ACTIONS(1389), - [anon_sym_let] = ACTIONS(1389), - [anon_sym_orderby] = ACTIONS(1389), - [anon_sym_ascending] = ACTIONS(1389), - [anon_sym_descending] = ACTIONS(1389), - [anon_sym_group] = ACTIONS(1389), - [anon_sym_by] = ACTIONS(1389), - [anon_sym_select] = ACTIONS(1389), - [anon_sym_stackalloc] = ACTIONS(1433), - [anon_sym_sizeof] = ACTIONS(1435), - [anon_sym_typeof] = ACTIONS(1437), - [anon_sym___makeref] = ACTIONS(1439), - [anon_sym___reftype] = ACTIONS(1441), - [anon_sym___refvalue] = ACTIONS(1443), - [sym_null_literal] = ACTIONS(1445), - [anon_sym_SQUOTE] = ACTIONS(1447), - [sym_integer_literal] = ACTIONS(1445), - [sym_real_literal] = ACTIONS(1449), - [anon_sym_DQUOTE] = ACTIONS(1451), - [sym_verbatim_string_literal] = ACTIONS(1449), - [aux_sym_preproc_if_token1] = ACTIONS(1453), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1455), - [sym_interpolation_verbatim_start] = ACTIONS(1457), - [sym_interpolation_raw_start] = ACTIONS(1459), - [sym_raw_string_start] = ACTIONS(1461), - }, - [1333] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2762), - [sym__name] = STATE(5892), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2316), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(3194), - [sym_non_lvalue_expression] = STATE(3438), - [sym_lvalue_expression] = STATE(3500), - [sym__expression_statement_expression] = STATE(3362), - [sym_assignment_expression] = STATE(3449), - [sym_binary_expression] = STATE(3362), - [sym_postfix_unary_expression] = STATE(3449), - [sym_prefix_unary_expression] = STATE(3449), - [sym__pointer_indirection_expression] = STATE(2747), - [sym_query_expression] = STATE(3362), - [sym_from_clause] = STATE(6147), - [sym_conditional_expression] = STATE(3362), - [sym_conditional_access_expression] = STATE(3362), - [sym_as_expression] = STATE(3362), - [sym_is_expression] = STATE(3362), - [sym_is_pattern_expression] = STATE(3362), - [sym_cast_expression] = STATE(3362), - [sym_checked_expression] = STATE(3362), - [sym_invocation_expression] = STATE(3449), - [sym_switch_expression] = STATE(3362), - [sym_await_expression] = STATE(3449), - [sym_throw_expression] = STATE(3362), - [sym_element_access_expression] = STATE(2747), - [sym_interpolated_string_expression] = STATE(3362), - [sym_member_access_expression] = STATE(2747), - [sym_object_creation_expression] = STATE(3449), - [sym_parenthesized_expression] = STATE(3449), - [sym__parenthesized_lvalue_expression] = STATE(2747), - [sym_lambda_expression] = STATE(3362), - [sym__lambda_expression_init] = STATE(7516), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3362), - [sym_anonymous_method_expression] = STATE(3362), - [sym_anonymous_object_creation_expression] = STATE(3362), - [sym_implicit_array_creation_expression] = STATE(3362), - [sym_implicit_object_creation_expression] = STATE(3362), - [sym_implicit_stackalloc_expression] = STATE(3362), - [sym_initializer_expression] = STATE(3362), - [sym_default_expression] = STATE(3362), - [sym_with_expression] = STATE(3362), - [sym_sizeof_expression] = STATE(3362), - [sym_typeof_expression] = STATE(3362), - [sym_makeref_expression] = STATE(3362), - [sym_ref_expression] = STATE(3362), - [sym_reftype_expression] = STATE(3362), - [sym_refvalue_expression] = STATE(3362), - [sym_stackalloc_expression] = STATE(3362), - [sym_range_expression] = STATE(3362), - [sym_tuple_expression] = STATE(2747), - [sym_literal] = STATE(3362), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2267), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3362), - [sym_preproc_if_in_attribute_list] = STATE(5576), - [sym_preproc_region] = STATE(1333), - [sym_preproc_endregion] = STATE(1333), - [sym_preproc_line] = STATE(1333), - [sym_preproc_pragma] = STATE(1333), - [sym_preproc_nullable] = STATE(1333), - [sym_preproc_error] = STATE(1333), - [sym_preproc_warning] = STATE(1333), - [sym_preproc_define] = STATE(1333), - [sym_preproc_undef] = STATE(1333), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3385), + [1331] = { + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(5879), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2238), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(4556), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3398), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3102), + [sym_postfix_unary_expression] = STATE(3079), + [sym_prefix_unary_expression] = STATE(3079), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6163), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3102), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3079), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3102), + [sym_member_access_expression] = STATE(2472), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3079), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7496), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(3102), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3102), + [sym_typeof_expression] = STATE(3102), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2472), + [sym_literal] = STATE(3102), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), + [sym_preproc_region] = STATE(1331), + [sym_preproc_endregion] = STATE(1331), + [sym_preproc_line] = STATE(1331), + [sym_preproc_pragma] = STATE(1331), + [sym_preproc_nullable] = STATE(1331), + [sym_preproc_error] = STATE(1331), + [sym_preproc_warning] = STATE(1331), + [sym_preproc_define] = STATE(1331), + [sym_preproc_undef] = STATE(1331), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1307), - [anon_sym_LPAREN] = ACTIONS(1609), - [anon_sym_ref] = ACTIONS(1611), - [anon_sym_LBRACE] = ACTIONS(1313), - [anon_sym_delegate] = ACTIONS(1315), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1479), + [anon_sym_LPAREN] = ACTIONS(1487), + [anon_sym_ref] = ACTIONS(1489), + [anon_sym_LBRACE] = ACTIONS(1481), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1613), + [anon_sym_new] = ACTIONS(1095), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1319), - [anon_sym_BANG] = ACTIONS(1617), - [anon_sym_TILDE] = ACTIONS(1617), - [anon_sym_PLUS_PLUS] = ACTIONS(1617), - [anon_sym_DASH_DASH] = ACTIONS(1617), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(1493), + [anon_sym_TILDE] = ACTIONS(1493), + [anon_sym_PLUS_PLUS] = ACTIONS(1493), + [anon_sym_DASH_DASH] = ACTIONS(1493), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1615), - [anon_sym_DASH] = ACTIONS(1615), - [anon_sym_STAR] = ACTIONS(1619), - [anon_sym_CARET] = ACTIONS(1617), - [anon_sym_AMP] = ACTIONS(1617), - [anon_sym_this] = ACTIONS(1323), + [anon_sym_PLUS] = ACTIONS(1491), + [anon_sym_DASH] = ACTIONS(1491), + [anon_sym_STAR] = ACTIONS(1105), + [anon_sym_CARET] = ACTIONS(1493), + [anon_sym_AMP] = ACTIONS(1493), + [anon_sym_this] = ACTIONS(83), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1325), + [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1319), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1621), + [anon_sym_throw] = ACTIONS(1113), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1623), - [anon_sym_DOT_DOT] = ACTIONS(1625), + [anon_sym_await] = ACTIONS(1115), + [anon_sym_DOT_DOT] = ACTIONS(1119), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -267189,19 +266737,357 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1333), + [anon_sym_stackalloc] = ACTIONS(127), [anon_sym_sizeof] = ACTIONS(129), [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(1335), - [anon_sym___reftype] = ACTIONS(1337), - [anon_sym___refvalue] = ACTIONS(1339), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), [sym_null_literal] = ACTIONS(139), [anon_sym_SQUOTE] = ACTIONS(141), [sym_integer_literal] = ACTIONS(139), [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1341), + [aux_sym_preproc_if_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), + }, + [1332] = { + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(5879), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2238), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(4558), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3398), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3102), + [sym_postfix_unary_expression] = STATE(3079), + [sym_prefix_unary_expression] = STATE(3079), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6163), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3102), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3079), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3102), + [sym_member_access_expression] = STATE(2472), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3079), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7496), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(3102), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3102), + [sym_typeof_expression] = STATE(3102), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2472), + [sym_literal] = STATE(3102), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), + [sym_preproc_region] = STATE(1332), + [sym_preproc_endregion] = STATE(1332), + [sym_preproc_line] = STATE(1332), + [sym_preproc_pragma] = STATE(1332), + [sym_preproc_nullable] = STATE(1332), + [sym_preproc_error] = STATE(1332), + [sym_preproc_warning] = STATE(1332), + [sym_preproc_define] = STATE(1332), + [sym_preproc_undef] = STATE(1332), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), + [sym__identifier_token] = ACTIONS(25), + [anon_sym_alias] = ACTIONS(29), + [anon_sym_global] = ACTIONS(29), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1479), + [anon_sym_LPAREN] = ACTIONS(1487), + [anon_sym_ref] = ACTIONS(1489), + [anon_sym_LBRACE] = ACTIONS(1481), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), + [anon_sym_file] = ACTIONS(29), + [anon_sym_new] = ACTIONS(1095), + [anon_sym_where] = ACTIONS(29), + [anon_sym_notnull] = ACTIONS(29), + [anon_sym_unmanaged] = ACTIONS(29), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(1493), + [anon_sym_TILDE] = ACTIONS(1493), + [anon_sym_PLUS_PLUS] = ACTIONS(1493), + [anon_sym_DASH_DASH] = ACTIONS(1493), + [anon_sym_true] = ACTIONS(77), + [anon_sym_false] = ACTIONS(77), + [anon_sym_PLUS] = ACTIONS(1491), + [anon_sym_DASH] = ACTIONS(1491), + [anon_sym_STAR] = ACTIONS(1105), + [anon_sym_CARET] = ACTIONS(1493), + [anon_sym_AMP] = ACTIONS(1493), + [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(1113), + [anon_sym_when] = ACTIONS(29), + [anon_sym_await] = ACTIONS(1115), + [anon_sym_DOT_DOT] = ACTIONS(1119), + [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), + }, + [1333] = { + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(5879), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2238), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(4559), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3398), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3102), + [sym_postfix_unary_expression] = STATE(3079), + [sym_prefix_unary_expression] = STATE(3079), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6163), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3102), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3079), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3102), + [sym_member_access_expression] = STATE(2472), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3079), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7496), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(3102), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3102), + [sym_typeof_expression] = STATE(3102), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2472), + [sym_literal] = STATE(3102), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), + [sym_preproc_region] = STATE(1333), + [sym_preproc_endregion] = STATE(1333), + [sym_preproc_line] = STATE(1333), + [sym_preproc_pragma] = STATE(1333), + [sym_preproc_nullable] = STATE(1333), + [sym_preproc_error] = STATE(1333), + [sym_preproc_warning] = STATE(1333), + [sym_preproc_define] = STATE(1333), + [sym_preproc_undef] = STATE(1333), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), + [sym__identifier_token] = ACTIONS(25), + [anon_sym_alias] = ACTIONS(29), + [anon_sym_global] = ACTIONS(29), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1479), + [anon_sym_LPAREN] = ACTIONS(1487), + [anon_sym_ref] = ACTIONS(1489), + [anon_sym_LBRACE] = ACTIONS(1481), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), + [anon_sym_file] = ACTIONS(29), + [anon_sym_new] = ACTIONS(1095), + [anon_sym_where] = ACTIONS(29), + [anon_sym_notnull] = ACTIONS(29), + [anon_sym_unmanaged] = ACTIONS(29), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(1493), + [anon_sym_TILDE] = ACTIONS(1493), + [anon_sym_PLUS_PLUS] = ACTIONS(1493), + [anon_sym_DASH_DASH] = ACTIONS(1493), + [anon_sym_true] = ACTIONS(77), + [anon_sym_false] = ACTIONS(77), + [anon_sym_PLUS] = ACTIONS(1491), + [anon_sym_DASH] = ACTIONS(1491), + [anon_sym_STAR] = ACTIONS(1105), + [anon_sym_CARET] = ACTIONS(1493), + [anon_sym_AMP] = ACTIONS(1493), + [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(1113), + [anon_sym_when] = ACTIONS(29), + [anon_sym_await] = ACTIONS(1115), + [anon_sym_DOT_DOT] = ACTIONS(1119), + [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), @@ -267218,84 +267104,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [1334] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2420), - [sym__name] = STATE(5911), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2197), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(5688), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(2447), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3080), - [sym_postfix_unary_expression] = STATE(3111), - [sym_prefix_unary_expression] = STATE(3111), - [sym__pointer_indirection_expression] = STATE(2423), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6154), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3080), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3111), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2423), - [sym_interpolated_string_expression] = STATE(3080), - [sym_member_access_expression] = STATE(2423), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3111), - [sym__parenthesized_lvalue_expression] = STATE(2423), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7530), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(3080), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3080), - [sym_typeof_expression] = STATE(3080), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2423), - [sym_literal] = STATE(3080), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(5879), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2238), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(4560), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3398), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3102), + [sym_postfix_unary_expression] = STATE(3079), + [sym_prefix_unary_expression] = STATE(3079), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6163), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3102), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3079), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3102), + [sym_member_access_expression] = STATE(2472), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3079), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7496), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(3102), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3102), + [sym_typeof_expression] = STATE(3102), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2472), + [sym_literal] = STATE(3102), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(1334), [sym_preproc_endregion] = STATE(1334), [sym_preproc_line] = STATE(1334), @@ -267305,47 +267191,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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1241), - [anon_sym_LPAREN] = ACTIONS(2941), - [anon_sym_ref] = ACTIONS(661), - [anon_sym_LBRACE] = ACTIONS(1487), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1479), + [anon_sym_LPAREN] = ACTIONS(1487), + [anon_sym_ref] = ACTIONS(1489), + [anon_sym_LBRACE] = ACTIONS(1481), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1061), + [anon_sym_new] = ACTIONS(1095), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = 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_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(1493), + [anon_sym_TILDE] = ACTIONS(1493), + [anon_sym_PLUS_PLUS] = ACTIONS(1493), + [anon_sym_DASH_DASH] = ACTIONS(1493), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1585), - [anon_sym_DASH] = ACTIONS(1585), - [anon_sym_STAR] = ACTIONS(1517), - [anon_sym_CARET] = ACTIONS(1587), - [anon_sym_AMP] = ACTIONS(1587), - [anon_sym_this] = ACTIONS(1263), + [anon_sym_PLUS] = ACTIONS(1491), + [anon_sym_DASH] = ACTIONS(1491), + [anon_sym_STAR] = ACTIONS(1105), + [anon_sym_CARET] = ACTIONS(1493), + [anon_sym_AMP] = ACTIONS(1493), + [anon_sym_this] = ACTIONS(83), [anon_sym_scoped] = ACTIONS(85), [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1267), - [anon_sym_unchecked] = ACTIONS(1067), + [sym_predefined_type] = ACTIONS(91), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1589), + [anon_sym_throw] = ACTIONS(1113), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1591), - [anon_sym_DOT_DOT] = ACTIONS(123), + [anon_sym_await] = ACTIONS(1115), + [anon_sym_DOT_DOT] = ACTIONS(1119), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -267370,7 +267256,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(1089), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -267387,84 +267273,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [1335] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2420), - [sym__name] = STATE(5911), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2197), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(4415), - [sym_non_lvalue_expression] = STATE(3066), - [sym_lvalue_expression] = STATE(3327), - [sym__expression_statement_expression] = STATE(3006), - [sym_assignment_expression] = STATE(3020), - [sym_binary_expression] = STATE(3006), - [sym_postfix_unary_expression] = STATE(3020), - [sym_prefix_unary_expression] = STATE(3020), - [sym__pointer_indirection_expression] = STATE(2423), - [sym_query_expression] = STATE(3006), - [sym_from_clause] = STATE(6159), - [sym_conditional_expression] = STATE(3006), - [sym_conditional_access_expression] = STATE(3006), - [sym_as_expression] = STATE(3006), - [sym_is_expression] = STATE(3006), - [sym_is_pattern_expression] = STATE(3006), - [sym_cast_expression] = STATE(3006), - [sym_checked_expression] = STATE(3006), - [sym_invocation_expression] = STATE(3020), - [sym_switch_expression] = STATE(3006), - [sym_await_expression] = STATE(3020), - [sym_throw_expression] = STATE(3006), - [sym_element_access_expression] = STATE(2423), - [sym_interpolated_string_expression] = STATE(3006), - [sym_member_access_expression] = STATE(2423), - [sym_object_creation_expression] = STATE(3020), - [sym_parenthesized_expression] = STATE(3020), - [sym__parenthesized_lvalue_expression] = STATE(2423), - [sym_lambda_expression] = STATE(3006), - [sym__lambda_expression_init] = STATE(7674), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3006), - [sym_anonymous_method_expression] = STATE(3006), - [sym_anonymous_object_creation_expression] = STATE(3006), - [sym_implicit_array_creation_expression] = STATE(3006), - [sym_implicit_object_creation_expression] = STATE(3006), - [sym_implicit_stackalloc_expression] = STATE(3006), - [sym_initializer_expression] = STATE(3006), - [sym_default_expression] = STATE(3006), - [sym_with_expression] = STATE(3006), - [sym_sizeof_expression] = STATE(3006), - [sym_typeof_expression] = STATE(3006), - [sym_makeref_expression] = STATE(3006), - [sym_ref_expression] = STATE(3006), - [sym_reftype_expression] = STATE(3006), - [sym_refvalue_expression] = STATE(3006), - [sym_stackalloc_expression] = STATE(3006), - [sym_range_expression] = STATE(3006), - [sym_tuple_expression] = STATE(2423), - [sym_literal] = STATE(3006), - [sym_character_literal] = STATE(3011), - [sym_string_literal] = STATE(3011), - [sym_raw_string_literal] = STATE(3011), - [sym_boolean_literal] = STATE(3011), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3006), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(5879), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2238), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(4672), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3398), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3102), + [sym_postfix_unary_expression] = STATE(3079), + [sym_prefix_unary_expression] = STATE(3079), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6163), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3102), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3079), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3102), + [sym_member_access_expression] = STATE(2472), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3079), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7496), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(3102), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3102), + [sym_typeof_expression] = STATE(3102), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2472), + [sym_literal] = STATE(3102), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(1335), [sym_preproc_endregion] = STATE(1335), [sym_preproc_line] = STATE(1335), @@ -267474,47 +267360,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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3440), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1241), - [anon_sym_LPAREN] = ACTIONS(1509), - [anon_sym_ref] = ACTIONS(1511), - [anon_sym_LBRACE] = ACTIONS(1247), - [anon_sym_delegate] = ACTIONS(1249), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1479), + [anon_sym_LPAREN] = ACTIONS(1487), + [anon_sym_ref] = ACTIONS(1489), + [anon_sym_LBRACE] = ACTIONS(1481), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1251), + [anon_sym_new] = ACTIONS(1095), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1253), - [anon_sym_BANG] = ACTIONS(1515), - [anon_sym_TILDE] = ACTIONS(1515), - [anon_sym_PLUS_PLUS] = ACTIONS(1515), - [anon_sym_DASH_DASH] = ACTIONS(1515), - [anon_sym_true] = ACTIONS(1259), - [anon_sym_false] = ACTIONS(1259), - [anon_sym_PLUS] = ACTIONS(1513), - [anon_sym_DASH] = ACTIONS(1513), - [anon_sym_STAR] = ACTIONS(1517), - [anon_sym_CARET] = ACTIONS(1515), - [anon_sym_AMP] = ACTIONS(1515), - [anon_sym_this] = ACTIONS(1263), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(1493), + [anon_sym_TILDE] = ACTIONS(1493), + [anon_sym_PLUS_PLUS] = ACTIONS(1493), + [anon_sym_DASH_DASH] = ACTIONS(1493), + [anon_sym_true] = ACTIONS(77), + [anon_sym_false] = ACTIONS(77), + [anon_sym_PLUS] = ACTIONS(1491), + [anon_sym_DASH] = ACTIONS(1491), + [anon_sym_STAR] = ACTIONS(1105), + [anon_sym_CARET] = ACTIONS(1493), + [anon_sym_AMP] = ACTIONS(1493), + [anon_sym_this] = ACTIONS(83), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1265), + [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1267), - [anon_sym_unchecked] = ACTIONS(1253), + [sym_predefined_type] = ACTIONS(91), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1269), - [anon_sym_throw] = ACTIONS(1519), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(1113), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1521), - [anon_sym_DOT_DOT] = ACTIONS(1523), + [anon_sym_await] = ACTIONS(1115), + [anon_sym_DOT_DOT] = ACTIONS(1119), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -267527,19 +267413,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1277), - [anon_sym_sizeof] = ACTIONS(1279), - [anon_sym_typeof] = ACTIONS(1281), - [anon_sym___makeref] = ACTIONS(1283), - [anon_sym___reftype] = ACTIONS(1285), - [anon_sym___refvalue] = ACTIONS(1287), - [sym_null_literal] = ACTIONS(1289), - [anon_sym_SQUOTE] = ACTIONS(1291), - [sym_integer_literal] = ACTIONS(1289), - [sym_real_literal] = ACTIONS(1293), - [anon_sym_DQUOTE] = ACTIONS(1295), - [sym_verbatim_string_literal] = ACTIONS(1293), - [aux_sym_preproc_if_token1] = ACTIONS(1297), + [anon_sym_stackalloc] = ACTIONS(127), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_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), @@ -267550,90 +267436,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1299), - [sym_interpolation_verbatim_start] = ACTIONS(1301), - [sym_interpolation_raw_start] = ACTIONS(1303), - [sym_raw_string_start] = ACTIONS(1305), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [sym_interpolation_raw_start] = ACTIONS(155), + [sym_raw_string_start] = ACTIONS(157), }, [1336] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(5160), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2204), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(5451), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3677), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3080), - [sym_postfix_unary_expression] = STATE(3111), - [sym_prefix_unary_expression] = STATE(3111), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6153), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3080), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3111), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3080), - [sym_member_access_expression] = STATE(2484), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3111), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7549), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(3080), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3080), - [sym_typeof_expression] = STATE(3080), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2484), - [sym_literal] = STATE(3080), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2267), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2603), + [sym__name] = STATE(5865), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2344), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(4454), + [sym_non_lvalue_expression] = STATE(3220), + [sym_lvalue_expression] = STATE(3234), + [sym__expression_statement_expression] = STATE(3236), + [sym_assignment_expression] = STATE(3221), + [sym_binary_expression] = STATE(3236), + [sym_postfix_unary_expression] = STATE(3221), + [sym_prefix_unary_expression] = STATE(3221), + [sym__pointer_indirection_expression] = STATE(2602), + [sym_query_expression] = STATE(3236), + [sym_from_clause] = STATE(6151), + [sym_conditional_expression] = STATE(3236), + [sym_conditional_access_expression] = STATE(3236), + [sym_as_expression] = STATE(3236), + [sym_is_expression] = STATE(3236), + [sym_is_pattern_expression] = STATE(3236), + [sym_cast_expression] = STATE(3236), + [sym_checked_expression] = STATE(3236), + [sym_invocation_expression] = STATE(3221), + [sym_switch_expression] = STATE(3236), + [sym_await_expression] = STATE(3221), + [sym_throw_expression] = STATE(3236), + [sym_element_access_expression] = STATE(2602), + [sym_interpolated_string_expression] = STATE(3236), + [sym_member_access_expression] = STATE(2602), + [sym_object_creation_expression] = STATE(3221), + [sym_parenthesized_expression] = STATE(3221), + [sym__parenthesized_lvalue_expression] = STATE(2602), + [sym_lambda_expression] = STATE(3236), + [sym__lambda_expression_init] = STATE(7276), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3236), + [sym_anonymous_method_expression] = STATE(3236), + [sym_anonymous_object_creation_expression] = STATE(3236), + [sym_implicit_array_creation_expression] = STATE(3236), + [sym_implicit_object_creation_expression] = STATE(3236), + [sym_implicit_stackalloc_expression] = STATE(3236), + [sym_initializer_expression] = STATE(3236), + [sym_default_expression] = STATE(3236), + [sym_with_expression] = STATE(3236), + [sym_sizeof_expression] = STATE(3236), + [sym_typeof_expression] = STATE(3236), + [sym_makeref_expression] = STATE(3236), + [sym_ref_expression] = STATE(3236), + [sym_reftype_expression] = STATE(3236), + [sym_refvalue_expression] = STATE(3236), + [sym_stackalloc_expression] = STATE(3236), + [sym_range_expression] = STATE(3236), + [sym_tuple_expression] = STATE(2602), + [sym_literal] = STATE(3236), + [sym_character_literal] = STATE(3272), + [sym_string_literal] = STATE(3272), + [sym_raw_string_literal] = STATE(3272), + [sym_boolean_literal] = STATE(3272), + [sym_identifier] = STATE(2261), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3236), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(1336), [sym_preproc_endregion] = STATE(1336), [sym_preproc_line] = STATE(1336), @@ -267643,47 +267529,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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3379), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1481), - [anon_sym_LPAREN] = ACTIONS(2047), - [anon_sym_ref] = ACTIONS(2049), - [anon_sym_LBRACE] = ACTIONS(1487), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1149), + [anon_sym_LPAREN] = ACTIONS(1597), + [anon_sym_ref] = ACTIONS(1599), + [anon_sym_LBRACE] = ACTIONS(1155), + [anon_sym_delegate] = ACTIONS(1157), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1061), + [anon_sym_new] = ACTIONS(1535), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1067), - [anon_sym_BANG] = ACTIONS(2053), - [anon_sym_TILDE] = ACTIONS(2053), - [anon_sym_PLUS_PLUS] = ACTIONS(2053), - [anon_sym_DASH_DASH] = ACTIONS(2053), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(2051), - [anon_sym_DASH] = ACTIONS(2051), - [anon_sym_STAR] = ACTIONS(2055), - [anon_sym_CARET] = ACTIONS(2053), - [anon_sym_AMP] = ACTIONS(2053), - [anon_sym_this] = ACTIONS(83), + [anon_sym_checked] = ACTIONS(1163), + [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(1169), + [anon_sym_false] = ACTIONS(1169), + [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(1173), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), + [anon_sym_base] = ACTIONS(1175), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1067), + [sym_predefined_type] = ACTIONS(1177), + [anon_sym_unchecked] = ACTIONS(1163), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(2057), + [anon_sym_default] = ACTIONS(1179), + [anon_sym_throw] = ACTIONS(1607), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2059), - [anon_sym_DOT_DOT] = ACTIONS(2061), + [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), @@ -267696,19 +267582,19 @@ static const uint16_t ts_parse_table[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(1089), + [anon_sym_stackalloc] = ACTIONS(1187), + [anon_sym_sizeof] = ACTIONS(1189), + [anon_sym_typeof] = ACTIONS(1191), + [anon_sym___makeref] = ACTIONS(1193), + [anon_sym___reftype] = ACTIONS(1195), + [anon_sym___refvalue] = ACTIONS(1197), + [sym_null_literal] = ACTIONS(1199), + [anon_sym_SQUOTE] = ACTIONS(1201), + [sym_integer_literal] = ACTIONS(1199), + [sym_real_literal] = ACTIONS(1203), + [anon_sym_DQUOTE] = ACTIONS(1205), + [sym_verbatim_string_literal] = ACTIONS(1203), + [aux_sym_preproc_if_token1] = ACTIONS(1207), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -267719,90 +267605,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(151), - [sym_interpolation_verbatim_start] = ACTIONS(153), - [sym_interpolation_raw_start] = ACTIONS(155), - [sym_raw_string_start] = ACTIONS(157), + [sym_interpolation_regular_start] = ACTIONS(1209), + [sym_interpolation_verbatim_start] = ACTIONS(1211), + [sym_interpolation_raw_start] = ACTIONS(1213), + [sym_raw_string_start] = ACTIONS(1215), }, [1337] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(5160), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2204), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(3521), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3677), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3080), - [sym_postfix_unary_expression] = STATE(3111), - [sym_prefix_unary_expression] = STATE(3111), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6153), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3080), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3111), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3080), - [sym_member_access_expression] = STATE(2484), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3111), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7549), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(3080), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3080), - [sym_typeof_expression] = STATE(3080), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2484), - [sym_literal] = STATE(3080), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2267), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(5879), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2238), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(3523), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3398), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3102), + [sym_postfix_unary_expression] = STATE(3079), + [sym_prefix_unary_expression] = STATE(3079), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6163), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3102), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3079), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3102), + [sym_member_access_expression] = STATE(2472), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3079), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7496), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(3102), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3102), + [sym_typeof_expression] = STATE(3102), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2472), + [sym_literal] = STATE(3102), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(1337), [sym_preproc_endregion] = STATE(1337), [sym_preproc_line] = STATE(1337), @@ -267812,47 +267698,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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1481), - [anon_sym_LPAREN] = ACTIONS(2047), - [anon_sym_ref] = ACTIONS(2049), - [anon_sym_LBRACE] = ACTIONS(1487), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1479), + [anon_sym_LPAREN] = ACTIONS(1487), + [anon_sym_ref] = ACTIONS(1489), + [anon_sym_LBRACE] = ACTIONS(1481), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1061), + [anon_sym_new] = ACTIONS(1095), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1067), - [anon_sym_BANG] = ACTIONS(2053), - [anon_sym_TILDE] = ACTIONS(2053), - [anon_sym_PLUS_PLUS] = ACTIONS(2053), - [anon_sym_DASH_DASH] = ACTIONS(2053), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(1493), + [anon_sym_TILDE] = ACTIONS(1493), + [anon_sym_PLUS_PLUS] = ACTIONS(1493), + [anon_sym_DASH_DASH] = ACTIONS(1493), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(2051), - [anon_sym_DASH] = ACTIONS(2051), - [anon_sym_STAR] = ACTIONS(2055), - [anon_sym_CARET] = ACTIONS(2053), - [anon_sym_AMP] = ACTIONS(2053), + [anon_sym_PLUS] = ACTIONS(1491), + [anon_sym_DASH] = ACTIONS(1491), + [anon_sym_STAR] = ACTIONS(1105), + [anon_sym_CARET] = ACTIONS(1493), + [anon_sym_AMP] = ACTIONS(1493), [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(1067), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(2057), + [anon_sym_throw] = ACTIONS(1113), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2059), - [anon_sym_DOT_DOT] = ACTIONS(2061), + [anon_sym_await] = ACTIONS(1115), + [anon_sym_DOT_DOT] = ACTIONS(1119), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -267877,7 +267763,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(1089), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -267894,84 +267780,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [1338] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(5160), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2204), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(5481), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3677), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3080), - [sym_postfix_unary_expression] = STATE(3111), - [sym_prefix_unary_expression] = STATE(3111), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6153), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3080), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3111), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3080), - [sym_member_access_expression] = STATE(2484), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3111), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7549), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(3080), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3080), - [sym_typeof_expression] = STATE(3080), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2484), - [sym_literal] = STATE(3080), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2267), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2816), + [sym__name] = STATE(5879), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2238), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(4304), + [sym_non_lvalue_expression] = STATE(3495), + [sym_lvalue_expression] = STATE(3197), + [sym__expression_statement_expression] = STATE(3462), + [sym_assignment_expression] = STATE(3497), + [sym_binary_expression] = STATE(3462), + [sym_postfix_unary_expression] = STATE(3497), + [sym_prefix_unary_expression] = STATE(3497), + [sym__pointer_indirection_expression] = STATE(2815), + [sym_query_expression] = STATE(3462), + [sym_from_clause] = STATE(6144), + [sym_conditional_expression] = STATE(3462), + [sym_conditional_access_expression] = STATE(3462), + [sym_as_expression] = STATE(3462), + [sym_is_expression] = STATE(3462), + [sym_is_pattern_expression] = STATE(3462), + [sym_cast_expression] = STATE(3462), + [sym_checked_expression] = STATE(3462), + [sym_invocation_expression] = STATE(3497), + [sym_switch_expression] = STATE(3462), + [sym_await_expression] = STATE(3497), + [sym_throw_expression] = STATE(3462), + [sym_element_access_expression] = STATE(2815), + [sym_interpolated_string_expression] = STATE(3462), + [sym_member_access_expression] = STATE(2815), + [sym_object_creation_expression] = STATE(3497), + [sym_parenthesized_expression] = STATE(3497), + [sym__parenthesized_lvalue_expression] = STATE(2815), + [sym_lambda_expression] = STATE(3462), + [sym__lambda_expression_init] = STATE(7615), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3462), + [sym_anonymous_method_expression] = STATE(3462), + [sym_anonymous_object_creation_expression] = STATE(3462), + [sym_implicit_array_creation_expression] = STATE(3462), + [sym_implicit_object_creation_expression] = STATE(3462), + [sym_implicit_stackalloc_expression] = STATE(3462), + [sym_initializer_expression] = STATE(3462), + [sym_default_expression] = STATE(3462), + [sym_with_expression] = STATE(3462), + [sym_sizeof_expression] = STATE(3462), + [sym_typeof_expression] = STATE(3462), + [sym_makeref_expression] = STATE(3462), + [sym_ref_expression] = STATE(3462), + [sym_reftype_expression] = STATE(3462), + [sym_refvalue_expression] = STATE(3462), + [sym_stackalloc_expression] = STATE(3462), + [sym_range_expression] = STATE(3462), + [sym_tuple_expression] = STATE(2815), + [sym_literal] = STATE(3462), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3462), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(1338), [sym_preproc_endregion] = STATE(1338), [sym_preproc_line] = STATE(1338), @@ -267981,47 +267867,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(3067), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), [aux_sym__lambda_expression_init_repeat1] = STATE(3367), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1481), - [anon_sym_LPAREN] = ACTIONS(2047), - [anon_sym_ref] = ACTIONS(2049), - [anon_sym_LBRACE] = ACTIONS(1487), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1305), + [anon_sym_LPAREN] = ACTIONS(1357), + [anon_sym_ref] = ACTIONS(1359), + [anon_sym_LBRACE] = ACTIONS(1311), + [anon_sym_delegate] = ACTIONS(1313), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1061), + [anon_sym_new] = ACTIONS(1315), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1067), - [anon_sym_BANG] = ACTIONS(2053), - [anon_sym_TILDE] = ACTIONS(2053), - [anon_sym_PLUS_PLUS] = ACTIONS(2053), - [anon_sym_DASH_DASH] = ACTIONS(2053), + [anon_sym_checked] = ACTIONS(1317), + [anon_sym_BANG] = ACTIONS(1101), + [anon_sym_TILDE] = ACTIONS(1101), + [anon_sym_PLUS_PLUS] = ACTIONS(1101), + [anon_sym_DASH_DASH] = ACTIONS(1101), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(2051), - [anon_sym_DASH] = ACTIONS(2051), - [anon_sym_STAR] = ACTIONS(2055), - [anon_sym_CARET] = ACTIONS(2053), - [anon_sym_AMP] = ACTIONS(2053), - [anon_sym_this] = ACTIONS(83), + [anon_sym_PLUS] = ACTIONS(1103), + [anon_sym_DASH] = ACTIONS(1103), + [anon_sym_STAR] = ACTIONS(1361), + [anon_sym_CARET] = ACTIONS(1101), + [anon_sym_AMP] = ACTIONS(1101), + [anon_sym_this] = ACTIONS(1321), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), + [anon_sym_base] = ACTIONS(1323), [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1067), + [anon_sym_unchecked] = ACTIONS(1317), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(2057), + [anon_sym_throw] = ACTIONS(1363), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2059), - [anon_sym_DOT_DOT] = ACTIONS(2061), + [anon_sym_await] = ACTIONS(1365), + [anon_sym_DOT_DOT] = ACTIONS(1367), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -268034,19 +267920,19 @@ static const uint16_t ts_parse_table[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(1331), [anon_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(1333), + [anon_sym___reftype] = ACTIONS(1335), + [anon_sym___refvalue] = ACTIONS(1337), [sym_null_literal] = ACTIONS(139), [anon_sym_SQUOTE] = ACTIONS(141), [sym_integer_literal] = ACTIONS(139), [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1089), + [aux_sym_preproc_if_token1] = ACTIONS(1339), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -268063,84 +267949,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [1339] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2762), - [sym__name] = STATE(5910), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2204), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(4258), - [sym_non_lvalue_expression] = STATE(3438), - [sym_lvalue_expression] = STATE(3162), - [sym__expression_statement_expression] = STATE(3362), - [sym_assignment_expression] = STATE(3449), - [sym_binary_expression] = STATE(3362), - [sym_postfix_unary_expression] = STATE(3449), - [sym_prefix_unary_expression] = STATE(3449), - [sym__pointer_indirection_expression] = STATE(2747), - [sym_query_expression] = STATE(3362), - [sym_from_clause] = STATE(6171), - [sym_conditional_expression] = STATE(3362), - [sym_conditional_access_expression] = STATE(3362), - [sym_as_expression] = STATE(3362), - [sym_is_expression] = STATE(3362), - [sym_is_pattern_expression] = STATE(3362), - [sym_cast_expression] = STATE(3362), - [sym_checked_expression] = STATE(3362), - [sym_invocation_expression] = STATE(3449), - [sym_switch_expression] = STATE(3362), - [sym_await_expression] = STATE(3449), - [sym_throw_expression] = STATE(3362), - [sym_element_access_expression] = STATE(2747), - [sym_interpolated_string_expression] = STATE(3362), - [sym_member_access_expression] = STATE(2747), - [sym_object_creation_expression] = STATE(3449), - [sym_parenthesized_expression] = STATE(3449), - [sym__parenthesized_lvalue_expression] = STATE(2747), - [sym_lambda_expression] = STATE(3362), - [sym__lambda_expression_init] = STATE(7320), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3362), - [sym_anonymous_method_expression] = STATE(3362), - [sym_anonymous_object_creation_expression] = STATE(3362), - [sym_implicit_array_creation_expression] = STATE(3362), - [sym_implicit_object_creation_expression] = STATE(3362), - [sym_implicit_stackalloc_expression] = STATE(3362), - [sym_initializer_expression] = STATE(3362), - [sym_default_expression] = STATE(3362), - [sym_with_expression] = STATE(3362), - [sym_sizeof_expression] = STATE(3362), - [sym_typeof_expression] = STATE(3362), - [sym_makeref_expression] = STATE(3362), - [sym_ref_expression] = STATE(3362), - [sym_reftype_expression] = STATE(3362), - [sym_refvalue_expression] = STATE(3362), - [sym_stackalloc_expression] = STATE(3362), - [sym_range_expression] = STATE(3362), - [sym_tuple_expression] = STATE(2747), - [sym_literal] = STATE(3362), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3362), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(5879), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2238), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(4562), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3398), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3102), + [sym_postfix_unary_expression] = STATE(3079), + [sym_prefix_unary_expression] = STATE(3079), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6163), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3102), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3079), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3102), + [sym_member_access_expression] = STATE(2472), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3079), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7496), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(3102), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3102), + [sym_typeof_expression] = STATE(3102), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2472), + [sym_literal] = STATE(3102), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(1339), [sym_preproc_endregion] = STATE(1339), [sym_preproc_line] = STATE(1339), @@ -268150,47 +268036,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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3385), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1307), - [anon_sym_LPAREN] = ACTIONS(1343), - [anon_sym_ref] = ACTIONS(1345), - [anon_sym_LBRACE] = ACTIONS(1313), - [anon_sym_delegate] = ACTIONS(1315), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1479), + [anon_sym_LPAREN] = ACTIONS(1487), + [anon_sym_ref] = ACTIONS(1489), + [anon_sym_LBRACE] = ACTIONS(1481), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1317), + [anon_sym_new] = ACTIONS(1095), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1319), - [anon_sym_BANG] = ACTIONS(1349), - [anon_sym_TILDE] = ACTIONS(1349), - [anon_sym_PLUS_PLUS] = ACTIONS(1349), - [anon_sym_DASH_DASH] = ACTIONS(1349), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(1493), + [anon_sym_TILDE] = ACTIONS(1493), + [anon_sym_PLUS_PLUS] = ACTIONS(1493), + [anon_sym_DASH_DASH] = ACTIONS(1493), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1347), - [anon_sym_DASH] = ACTIONS(1347), - [anon_sym_STAR] = ACTIONS(1351), - [anon_sym_CARET] = ACTIONS(1349), - [anon_sym_AMP] = ACTIONS(1349), - [anon_sym_this] = ACTIONS(1323), + [anon_sym_PLUS] = ACTIONS(1491), + [anon_sym_DASH] = ACTIONS(1491), + [anon_sym_STAR] = ACTIONS(1105), + [anon_sym_CARET] = ACTIONS(1493), + [anon_sym_AMP] = ACTIONS(1493), + [anon_sym_this] = ACTIONS(83), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1325), + [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1319), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1353), + [anon_sym_throw] = ACTIONS(1113), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1355), - [anon_sym_DOT_DOT] = ACTIONS(1357), + [anon_sym_await] = ACTIONS(1115), + [anon_sym_DOT_DOT] = ACTIONS(1119), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -268203,19 +268089,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1333), + [anon_sym_stackalloc] = ACTIONS(127), [anon_sym_sizeof] = ACTIONS(129), [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(1335), - [anon_sym___reftype] = ACTIONS(1337), - [anon_sym___refvalue] = ACTIONS(1339), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), [sym_null_literal] = ACTIONS(139), [anon_sym_SQUOTE] = ACTIONS(141), [sym_integer_literal] = ACTIONS(139), [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1341), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -268232,84 +268118,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [1340] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(5160), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2204), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(5484), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3677), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3080), - [sym_postfix_unary_expression] = STATE(3111), - [sym_prefix_unary_expression] = STATE(3111), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6153), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3080), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3111), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3080), - [sym_member_access_expression] = STATE(2484), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3111), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7549), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(3080), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3080), - [sym_typeof_expression] = STATE(3080), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2484), - [sym_literal] = STATE(3080), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2267), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2603), + [sym__name] = STATE(5865), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2344), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(4371), + [sym_non_lvalue_expression] = STATE(3220), + [sym_lvalue_expression] = STATE(3234), + [sym__expression_statement_expression] = STATE(3236), + [sym_assignment_expression] = STATE(3221), + [sym_binary_expression] = STATE(3236), + [sym_postfix_unary_expression] = STATE(3221), + [sym_prefix_unary_expression] = STATE(3221), + [sym__pointer_indirection_expression] = STATE(2602), + [sym_query_expression] = STATE(3236), + [sym_from_clause] = STATE(6151), + [sym_conditional_expression] = STATE(3236), + [sym_conditional_access_expression] = STATE(3236), + [sym_as_expression] = STATE(3236), + [sym_is_expression] = STATE(3236), + [sym_is_pattern_expression] = STATE(3236), + [sym_cast_expression] = STATE(3236), + [sym_checked_expression] = STATE(3236), + [sym_invocation_expression] = STATE(3221), + [sym_switch_expression] = STATE(3236), + [sym_await_expression] = STATE(3221), + [sym_throw_expression] = STATE(3236), + [sym_element_access_expression] = STATE(2602), + [sym_interpolated_string_expression] = STATE(3236), + [sym_member_access_expression] = STATE(2602), + [sym_object_creation_expression] = STATE(3221), + [sym_parenthesized_expression] = STATE(3221), + [sym__parenthesized_lvalue_expression] = STATE(2602), + [sym_lambda_expression] = STATE(3236), + [sym__lambda_expression_init] = STATE(7276), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3236), + [sym_anonymous_method_expression] = STATE(3236), + [sym_anonymous_object_creation_expression] = STATE(3236), + [sym_implicit_array_creation_expression] = STATE(3236), + [sym_implicit_object_creation_expression] = STATE(3236), + [sym_implicit_stackalloc_expression] = STATE(3236), + [sym_initializer_expression] = STATE(3236), + [sym_default_expression] = STATE(3236), + [sym_with_expression] = STATE(3236), + [sym_sizeof_expression] = STATE(3236), + [sym_typeof_expression] = STATE(3236), + [sym_makeref_expression] = STATE(3236), + [sym_ref_expression] = STATE(3236), + [sym_reftype_expression] = STATE(3236), + [sym_refvalue_expression] = STATE(3236), + [sym_stackalloc_expression] = STATE(3236), + [sym_range_expression] = STATE(3236), + [sym_tuple_expression] = STATE(2602), + [sym_literal] = STATE(3236), + [sym_character_literal] = STATE(3272), + [sym_string_literal] = STATE(3272), + [sym_raw_string_literal] = STATE(3272), + [sym_boolean_literal] = STATE(3272), + [sym_identifier] = STATE(2261), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3236), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(1340), [sym_preproc_endregion] = STATE(1340), [sym_preproc_line] = STATE(1340), @@ -268319,47 +268205,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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3379), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1481), - [anon_sym_LPAREN] = ACTIONS(2047), - [anon_sym_ref] = ACTIONS(2049), - [anon_sym_LBRACE] = ACTIONS(1487), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1149), + [anon_sym_LPAREN] = ACTIONS(1597), + [anon_sym_ref] = ACTIONS(1599), + [anon_sym_LBRACE] = ACTIONS(1155), + [anon_sym_delegate] = ACTIONS(1157), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1061), + [anon_sym_new] = ACTIONS(1535), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1067), - [anon_sym_BANG] = ACTIONS(2053), - [anon_sym_TILDE] = ACTIONS(2053), - [anon_sym_PLUS_PLUS] = ACTIONS(2053), - [anon_sym_DASH_DASH] = ACTIONS(2053), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(2051), - [anon_sym_DASH] = ACTIONS(2051), - [anon_sym_STAR] = ACTIONS(2055), - [anon_sym_CARET] = ACTIONS(2053), - [anon_sym_AMP] = ACTIONS(2053), - [anon_sym_this] = ACTIONS(83), + [anon_sym_checked] = ACTIONS(1163), + [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(1169), + [anon_sym_false] = ACTIONS(1169), + [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(1173), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), + [anon_sym_base] = ACTIONS(1175), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1067), + [sym_predefined_type] = ACTIONS(1177), + [anon_sym_unchecked] = ACTIONS(1163), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(2057), + [anon_sym_default] = ACTIONS(1179), + [anon_sym_throw] = ACTIONS(1607), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2059), - [anon_sym_DOT_DOT] = ACTIONS(2061), + [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), @@ -268372,19 +268258,19 @@ static const uint16_t ts_parse_table[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(1089), + [anon_sym_stackalloc] = ACTIONS(1187), + [anon_sym_sizeof] = ACTIONS(1189), + [anon_sym_typeof] = ACTIONS(1191), + [anon_sym___makeref] = ACTIONS(1193), + [anon_sym___reftype] = ACTIONS(1195), + [anon_sym___refvalue] = ACTIONS(1197), + [sym_null_literal] = ACTIONS(1199), + [anon_sym_SQUOTE] = ACTIONS(1201), + [sym_integer_literal] = ACTIONS(1199), + [sym_real_literal] = ACTIONS(1203), + [anon_sym_DQUOTE] = ACTIONS(1205), + [sym_verbatim_string_literal] = ACTIONS(1203), + [aux_sym_preproc_if_token1] = ACTIONS(1207), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -268395,90 +268281,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(151), - [sym_interpolation_verbatim_start] = ACTIONS(153), - [sym_interpolation_raw_start] = ACTIONS(155), - [sym_raw_string_start] = ACTIONS(157), + [sym_interpolation_regular_start] = ACTIONS(1209), + [sym_interpolation_verbatim_start] = ACTIONS(1211), + [sym_interpolation_raw_start] = ACTIONS(1213), + [sym_raw_string_start] = ACTIONS(1215), }, [1341] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(5160), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2204), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(5485), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3677), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3080), - [sym_postfix_unary_expression] = STATE(3111), - [sym_prefix_unary_expression] = STATE(3111), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6153), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3080), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3111), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3080), - [sym_member_access_expression] = STATE(2484), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3111), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7549), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(3080), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3080), - [sym_typeof_expression] = STATE(3080), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2484), - [sym_literal] = STATE(3080), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2267), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2816), + [sym__name] = STATE(5893), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2361), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(4843), + [sym_non_lvalue_expression] = STATE(3495), + [sym_lvalue_expression] = STATE(3509), + [sym__expression_statement_expression] = STATE(3462), + [sym_assignment_expression] = STATE(3497), + [sym_binary_expression] = STATE(3462), + [sym_postfix_unary_expression] = STATE(3497), + [sym_prefix_unary_expression] = STATE(3497), + [sym__pointer_indirection_expression] = STATE(2815), + [sym_query_expression] = STATE(3462), + [sym_from_clause] = STATE(6150), + [sym_conditional_expression] = STATE(3462), + [sym_conditional_access_expression] = STATE(3462), + [sym_as_expression] = STATE(3462), + [sym_is_expression] = STATE(3462), + [sym_is_pattern_expression] = STATE(3462), + [sym_cast_expression] = STATE(3462), + [sym_checked_expression] = STATE(3462), + [sym_invocation_expression] = STATE(3497), + [sym_switch_expression] = STATE(3462), + [sym_await_expression] = STATE(3497), + [sym_throw_expression] = STATE(3462), + [sym_element_access_expression] = STATE(2815), + [sym_interpolated_string_expression] = STATE(3462), + [sym_member_access_expression] = STATE(2815), + [sym_object_creation_expression] = STATE(3497), + [sym_parenthesized_expression] = STATE(3497), + [sym__parenthesized_lvalue_expression] = STATE(2815), + [sym_lambda_expression] = STATE(3462), + [sym__lambda_expression_init] = STATE(7428), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3462), + [sym_anonymous_method_expression] = STATE(3462), + [sym_anonymous_object_creation_expression] = STATE(3462), + [sym_implicit_array_creation_expression] = STATE(3462), + [sym_implicit_object_creation_expression] = STATE(3462), + [sym_implicit_stackalloc_expression] = STATE(3462), + [sym_initializer_expression] = STATE(3462), + [sym_default_expression] = STATE(3462), + [sym_with_expression] = STATE(3462), + [sym_sizeof_expression] = STATE(3462), + [sym_typeof_expression] = STATE(3462), + [sym_makeref_expression] = STATE(3462), + [sym_ref_expression] = STATE(3462), + [sym_reftype_expression] = STATE(3462), + [sym_refvalue_expression] = STATE(3462), + [sym_stackalloc_expression] = STATE(3462), + [sym_range_expression] = STATE(3462), + [sym_tuple_expression] = STATE(2815), + [sym_literal] = STATE(3462), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3462), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(1341), [sym_preproc_endregion] = STATE(1341), [sym_preproc_line] = STATE(1341), @@ -268488,47 +268374,47 @@ 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(3067), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), [aux_sym__lambda_expression_init_repeat1] = STATE(3367), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1481), - [anon_sym_LPAREN] = ACTIONS(2047), - [anon_sym_ref] = ACTIONS(2049), - [anon_sym_LBRACE] = ACTIONS(1487), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1305), + [anon_sym_LPAREN] = ACTIONS(1839), + [anon_sym_ref] = ACTIONS(1841), + [anon_sym_LBRACE] = ACTIONS(1311), + [anon_sym_delegate] = ACTIONS(1313), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1061), + [anon_sym_new] = ACTIONS(1843), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1067), - [anon_sym_BANG] = ACTIONS(2053), - [anon_sym_TILDE] = ACTIONS(2053), - [anon_sym_PLUS_PLUS] = ACTIONS(2053), - [anon_sym_DASH_DASH] = ACTIONS(2053), + [anon_sym_checked] = ACTIONS(1317), + [anon_sym_BANG] = ACTIONS(1847), + [anon_sym_TILDE] = ACTIONS(1847), + [anon_sym_PLUS_PLUS] = ACTIONS(1847), + [anon_sym_DASH_DASH] = ACTIONS(1847), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(2051), - [anon_sym_DASH] = ACTIONS(2051), - [anon_sym_STAR] = ACTIONS(2055), - [anon_sym_CARET] = ACTIONS(2053), - [anon_sym_AMP] = ACTIONS(2053), - [anon_sym_this] = ACTIONS(83), + [anon_sym_PLUS] = ACTIONS(1845), + [anon_sym_DASH] = ACTIONS(1845), + [anon_sym_STAR] = ACTIONS(1849), + [anon_sym_CARET] = ACTIONS(1847), + [anon_sym_AMP] = ACTIONS(1847), + [anon_sym_this] = ACTIONS(1321), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), + [anon_sym_base] = ACTIONS(1323), [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1067), + [anon_sym_unchecked] = ACTIONS(1317), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(2057), + [anon_sym_throw] = ACTIONS(1851), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2059), - [anon_sym_DOT_DOT] = ACTIONS(2061), + [anon_sym_await] = ACTIONS(1853), + [anon_sym_DOT_DOT] = ACTIONS(1855), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -268541,19 +268427,19 @@ static const uint16_t ts_parse_table[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(1331), [anon_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(1333), + [anon_sym___reftype] = ACTIONS(1335), + [anon_sym___refvalue] = ACTIONS(1337), [sym_null_literal] = ACTIONS(139), [anon_sym_SQUOTE] = ACTIONS(141), [sym_integer_literal] = ACTIONS(139), [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1089), + [aux_sym_preproc_if_token1] = ACTIONS(1339), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -268570,84 +268456,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [1342] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(5160), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2204), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(5486), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3677), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3080), - [sym_postfix_unary_expression] = STATE(3111), - [sym_prefix_unary_expression] = STATE(3111), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6153), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3080), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3111), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3080), - [sym_member_access_expression] = STATE(2484), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3111), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7549), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(3080), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3080), - [sym_typeof_expression] = STATE(3080), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2484), - [sym_literal] = STATE(3080), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2267), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2816), + [sym__name] = STATE(5893), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2361), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(4844), + [sym_non_lvalue_expression] = STATE(3495), + [sym_lvalue_expression] = STATE(3509), + [sym__expression_statement_expression] = STATE(3462), + [sym_assignment_expression] = STATE(3497), + [sym_binary_expression] = STATE(3462), + [sym_postfix_unary_expression] = STATE(3497), + [sym_prefix_unary_expression] = STATE(3497), + [sym__pointer_indirection_expression] = STATE(2815), + [sym_query_expression] = STATE(3462), + [sym_from_clause] = STATE(6150), + [sym_conditional_expression] = STATE(3462), + [sym_conditional_access_expression] = STATE(3462), + [sym_as_expression] = STATE(3462), + [sym_is_expression] = STATE(3462), + [sym_is_pattern_expression] = STATE(3462), + [sym_cast_expression] = STATE(3462), + [sym_checked_expression] = STATE(3462), + [sym_invocation_expression] = STATE(3497), + [sym_switch_expression] = STATE(3462), + [sym_await_expression] = STATE(3497), + [sym_throw_expression] = STATE(3462), + [sym_element_access_expression] = STATE(2815), + [sym_interpolated_string_expression] = STATE(3462), + [sym_member_access_expression] = STATE(2815), + [sym_object_creation_expression] = STATE(3497), + [sym_parenthesized_expression] = STATE(3497), + [sym__parenthesized_lvalue_expression] = STATE(2815), + [sym_lambda_expression] = STATE(3462), + [sym__lambda_expression_init] = STATE(7428), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3462), + [sym_anonymous_method_expression] = STATE(3462), + [sym_anonymous_object_creation_expression] = STATE(3462), + [sym_implicit_array_creation_expression] = STATE(3462), + [sym_implicit_object_creation_expression] = STATE(3462), + [sym_implicit_stackalloc_expression] = STATE(3462), + [sym_initializer_expression] = STATE(3462), + [sym_default_expression] = STATE(3462), + [sym_with_expression] = STATE(3462), + [sym_sizeof_expression] = STATE(3462), + [sym_typeof_expression] = STATE(3462), + [sym_makeref_expression] = STATE(3462), + [sym_ref_expression] = STATE(3462), + [sym_reftype_expression] = STATE(3462), + [sym_refvalue_expression] = STATE(3462), + [sym_stackalloc_expression] = STATE(3462), + [sym_range_expression] = STATE(3462), + [sym_tuple_expression] = STATE(2815), + [sym_literal] = STATE(3462), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3462), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(1342), [sym_preproc_endregion] = STATE(1342), [sym_preproc_line] = STATE(1342), @@ -268657,47 +268543,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(3067), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), [aux_sym__lambda_expression_init_repeat1] = STATE(3367), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1481), - [anon_sym_LPAREN] = ACTIONS(2047), - [anon_sym_ref] = ACTIONS(2049), - [anon_sym_LBRACE] = ACTIONS(1487), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1305), + [anon_sym_LPAREN] = ACTIONS(1839), + [anon_sym_ref] = ACTIONS(1841), + [anon_sym_LBRACE] = ACTIONS(1311), + [anon_sym_delegate] = ACTIONS(1313), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1061), + [anon_sym_new] = ACTIONS(1843), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1067), - [anon_sym_BANG] = ACTIONS(2053), - [anon_sym_TILDE] = ACTIONS(2053), - [anon_sym_PLUS_PLUS] = ACTIONS(2053), - [anon_sym_DASH_DASH] = ACTIONS(2053), + [anon_sym_checked] = ACTIONS(1317), + [anon_sym_BANG] = ACTIONS(1847), + [anon_sym_TILDE] = ACTIONS(1847), + [anon_sym_PLUS_PLUS] = ACTIONS(1847), + [anon_sym_DASH_DASH] = ACTIONS(1847), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(2051), - [anon_sym_DASH] = ACTIONS(2051), - [anon_sym_STAR] = ACTIONS(2055), - [anon_sym_CARET] = ACTIONS(2053), - [anon_sym_AMP] = ACTIONS(2053), - [anon_sym_this] = ACTIONS(83), + [anon_sym_PLUS] = ACTIONS(1845), + [anon_sym_DASH] = ACTIONS(1845), + [anon_sym_STAR] = ACTIONS(1849), + [anon_sym_CARET] = ACTIONS(1847), + [anon_sym_AMP] = ACTIONS(1847), + [anon_sym_this] = ACTIONS(1321), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), + [anon_sym_base] = ACTIONS(1323), [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1067), + [anon_sym_unchecked] = ACTIONS(1317), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(2057), + [anon_sym_throw] = ACTIONS(1851), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2059), - [anon_sym_DOT_DOT] = ACTIONS(2061), + [anon_sym_await] = ACTIONS(1853), + [anon_sym_DOT_DOT] = ACTIONS(1855), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -268710,19 +268596,19 @@ static const uint16_t ts_parse_table[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(1331), [anon_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(1333), + [anon_sym___reftype] = ACTIONS(1335), + [anon_sym___refvalue] = ACTIONS(1337), [sym_null_literal] = ACTIONS(139), [anon_sym_SQUOTE] = ACTIONS(141), [sym_integer_literal] = ACTIONS(139), [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1089), + [aux_sym_preproc_if_token1] = ACTIONS(1339), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -268739,84 +268625,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [1343] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(5160), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2204), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(5487), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3677), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3080), - [sym_postfix_unary_expression] = STATE(3111), - [sym_prefix_unary_expression] = STATE(3111), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6153), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3080), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3111), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3080), - [sym_member_access_expression] = STATE(2484), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3111), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7549), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(3080), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3080), - [sym_typeof_expression] = STATE(3080), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2484), - [sym_literal] = STATE(3080), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2267), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2816), + [sym__name] = STATE(5893), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2361), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(4982), + [sym_non_lvalue_expression] = STATE(3495), + [sym_lvalue_expression] = STATE(3509), + [sym__expression_statement_expression] = STATE(3462), + [sym_assignment_expression] = STATE(3497), + [sym_binary_expression] = STATE(3462), + [sym_postfix_unary_expression] = STATE(3497), + [sym_prefix_unary_expression] = STATE(3497), + [sym__pointer_indirection_expression] = STATE(2815), + [sym_query_expression] = STATE(3462), + [sym_from_clause] = STATE(6150), + [sym_conditional_expression] = STATE(3462), + [sym_conditional_access_expression] = STATE(3462), + [sym_as_expression] = STATE(3462), + [sym_is_expression] = STATE(3462), + [sym_is_pattern_expression] = STATE(3462), + [sym_cast_expression] = STATE(3462), + [sym_checked_expression] = STATE(3462), + [sym_invocation_expression] = STATE(3497), + [sym_switch_expression] = STATE(3462), + [sym_await_expression] = STATE(3497), + [sym_throw_expression] = STATE(3462), + [sym_element_access_expression] = STATE(2815), + [sym_interpolated_string_expression] = STATE(3462), + [sym_member_access_expression] = STATE(2815), + [sym_object_creation_expression] = STATE(3497), + [sym_parenthesized_expression] = STATE(3497), + [sym__parenthesized_lvalue_expression] = STATE(2815), + [sym_lambda_expression] = STATE(3462), + [sym__lambda_expression_init] = STATE(7428), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3462), + [sym_anonymous_method_expression] = STATE(3462), + [sym_anonymous_object_creation_expression] = STATE(3462), + [sym_implicit_array_creation_expression] = STATE(3462), + [sym_implicit_object_creation_expression] = STATE(3462), + [sym_implicit_stackalloc_expression] = STATE(3462), + [sym_initializer_expression] = STATE(3462), + [sym_default_expression] = STATE(3462), + [sym_with_expression] = STATE(3462), + [sym_sizeof_expression] = STATE(3462), + [sym_typeof_expression] = STATE(3462), + [sym_makeref_expression] = STATE(3462), + [sym_ref_expression] = STATE(3462), + [sym_reftype_expression] = STATE(3462), + [sym_refvalue_expression] = STATE(3462), + [sym_stackalloc_expression] = STATE(3462), + [sym_range_expression] = STATE(3462), + [sym_tuple_expression] = STATE(2815), + [sym_literal] = STATE(3462), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3462), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(1343), [sym_preproc_endregion] = STATE(1343), [sym_preproc_line] = STATE(1343), @@ -268826,47 +268712,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(3067), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), [aux_sym__lambda_expression_init_repeat1] = STATE(3367), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1481), - [anon_sym_LPAREN] = ACTIONS(2047), - [anon_sym_ref] = ACTIONS(2049), - [anon_sym_LBRACE] = ACTIONS(1487), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1305), + [anon_sym_LPAREN] = ACTIONS(1839), + [anon_sym_ref] = ACTIONS(1841), + [anon_sym_LBRACE] = ACTIONS(1311), + [anon_sym_delegate] = ACTIONS(1313), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1061), + [anon_sym_new] = ACTIONS(1843), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1067), - [anon_sym_BANG] = ACTIONS(2053), - [anon_sym_TILDE] = ACTIONS(2053), - [anon_sym_PLUS_PLUS] = ACTIONS(2053), - [anon_sym_DASH_DASH] = ACTIONS(2053), + [anon_sym_checked] = ACTIONS(1317), + [anon_sym_BANG] = ACTIONS(1847), + [anon_sym_TILDE] = ACTIONS(1847), + [anon_sym_PLUS_PLUS] = ACTIONS(1847), + [anon_sym_DASH_DASH] = ACTIONS(1847), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(2051), - [anon_sym_DASH] = ACTIONS(2051), - [anon_sym_STAR] = ACTIONS(2055), - [anon_sym_CARET] = ACTIONS(2053), - [anon_sym_AMP] = ACTIONS(2053), - [anon_sym_this] = ACTIONS(83), + [anon_sym_PLUS] = ACTIONS(1845), + [anon_sym_DASH] = ACTIONS(1845), + [anon_sym_STAR] = ACTIONS(1849), + [anon_sym_CARET] = ACTIONS(1847), + [anon_sym_AMP] = ACTIONS(1847), + [anon_sym_this] = ACTIONS(1321), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), + [anon_sym_base] = ACTIONS(1323), [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1067), + [anon_sym_unchecked] = ACTIONS(1317), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(2057), + [anon_sym_throw] = ACTIONS(1851), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2059), - [anon_sym_DOT_DOT] = ACTIONS(2061), + [anon_sym_await] = ACTIONS(1853), + [anon_sym_DOT_DOT] = ACTIONS(1855), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -268879,19 +268765,19 @@ static const uint16_t ts_parse_table[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(1331), [anon_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(1333), + [anon_sym___reftype] = ACTIONS(1335), + [anon_sym___refvalue] = ACTIONS(1337), [sym_null_literal] = ACTIONS(139), [anon_sym_SQUOTE] = ACTIONS(141), [sym_integer_literal] = ACTIONS(139), [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1089), + [aux_sym_preproc_if_token1] = ACTIONS(1339), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -268908,84 +268794,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [1344] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(5160), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2204), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(5488), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3677), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3080), - [sym_postfix_unary_expression] = STATE(3111), - [sym_prefix_unary_expression] = STATE(3111), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6153), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3080), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3111), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3080), - [sym_member_access_expression] = STATE(2484), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3111), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7549), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(3080), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3080), - [sym_typeof_expression] = STATE(3080), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2484), - [sym_literal] = STATE(3080), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2267), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2816), + [sym__name] = STATE(5893), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2361), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(4845), + [sym_non_lvalue_expression] = STATE(3495), + [sym_lvalue_expression] = STATE(3509), + [sym__expression_statement_expression] = STATE(3462), + [sym_assignment_expression] = STATE(3497), + [sym_binary_expression] = STATE(3462), + [sym_postfix_unary_expression] = STATE(3497), + [sym_prefix_unary_expression] = STATE(3497), + [sym__pointer_indirection_expression] = STATE(2815), + [sym_query_expression] = STATE(3462), + [sym_from_clause] = STATE(6150), + [sym_conditional_expression] = STATE(3462), + [sym_conditional_access_expression] = STATE(3462), + [sym_as_expression] = STATE(3462), + [sym_is_expression] = STATE(3462), + [sym_is_pattern_expression] = STATE(3462), + [sym_cast_expression] = STATE(3462), + [sym_checked_expression] = STATE(3462), + [sym_invocation_expression] = STATE(3497), + [sym_switch_expression] = STATE(3462), + [sym_await_expression] = STATE(3497), + [sym_throw_expression] = STATE(3462), + [sym_element_access_expression] = STATE(2815), + [sym_interpolated_string_expression] = STATE(3462), + [sym_member_access_expression] = STATE(2815), + [sym_object_creation_expression] = STATE(3497), + [sym_parenthesized_expression] = STATE(3497), + [sym__parenthesized_lvalue_expression] = STATE(2815), + [sym_lambda_expression] = STATE(3462), + [sym__lambda_expression_init] = STATE(7428), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3462), + [sym_anonymous_method_expression] = STATE(3462), + [sym_anonymous_object_creation_expression] = STATE(3462), + [sym_implicit_array_creation_expression] = STATE(3462), + [sym_implicit_object_creation_expression] = STATE(3462), + [sym_implicit_stackalloc_expression] = STATE(3462), + [sym_initializer_expression] = STATE(3462), + [sym_default_expression] = STATE(3462), + [sym_with_expression] = STATE(3462), + [sym_sizeof_expression] = STATE(3462), + [sym_typeof_expression] = STATE(3462), + [sym_makeref_expression] = STATE(3462), + [sym_ref_expression] = STATE(3462), + [sym_reftype_expression] = STATE(3462), + [sym_refvalue_expression] = STATE(3462), + [sym_stackalloc_expression] = STATE(3462), + [sym_range_expression] = STATE(3462), + [sym_tuple_expression] = STATE(2815), + [sym_literal] = STATE(3462), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3462), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(1344), [sym_preproc_endregion] = STATE(1344), [sym_preproc_line] = STATE(1344), @@ -268995,47 +268881,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(3067), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), [aux_sym__lambda_expression_init_repeat1] = STATE(3367), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1481), - [anon_sym_LPAREN] = ACTIONS(2047), - [anon_sym_ref] = ACTIONS(2049), - [anon_sym_LBRACE] = ACTIONS(1487), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1305), + [anon_sym_LPAREN] = ACTIONS(1839), + [anon_sym_ref] = ACTIONS(1841), + [anon_sym_LBRACE] = ACTIONS(1311), + [anon_sym_delegate] = ACTIONS(1313), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1061), + [anon_sym_new] = ACTIONS(1843), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1067), - [anon_sym_BANG] = ACTIONS(2053), - [anon_sym_TILDE] = ACTIONS(2053), - [anon_sym_PLUS_PLUS] = ACTIONS(2053), - [anon_sym_DASH_DASH] = ACTIONS(2053), + [anon_sym_checked] = ACTIONS(1317), + [anon_sym_BANG] = ACTIONS(1847), + [anon_sym_TILDE] = ACTIONS(1847), + [anon_sym_PLUS_PLUS] = ACTIONS(1847), + [anon_sym_DASH_DASH] = ACTIONS(1847), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(2051), - [anon_sym_DASH] = ACTIONS(2051), - [anon_sym_STAR] = ACTIONS(2055), - [anon_sym_CARET] = ACTIONS(2053), - [anon_sym_AMP] = ACTIONS(2053), - [anon_sym_this] = ACTIONS(83), + [anon_sym_PLUS] = ACTIONS(1845), + [anon_sym_DASH] = ACTIONS(1845), + [anon_sym_STAR] = ACTIONS(1849), + [anon_sym_CARET] = ACTIONS(1847), + [anon_sym_AMP] = ACTIONS(1847), + [anon_sym_this] = ACTIONS(1321), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), + [anon_sym_base] = ACTIONS(1323), [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1067), + [anon_sym_unchecked] = ACTIONS(1317), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(2057), + [anon_sym_throw] = ACTIONS(1851), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2059), - [anon_sym_DOT_DOT] = ACTIONS(2061), + [anon_sym_await] = ACTIONS(1853), + [anon_sym_DOT_DOT] = ACTIONS(1855), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -269048,19 +268934,19 @@ static const uint16_t ts_parse_table[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(1331), [anon_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(1333), + [anon_sym___reftype] = ACTIONS(1335), + [anon_sym___refvalue] = ACTIONS(1337), [sym_null_literal] = ACTIONS(139), [anon_sym_SQUOTE] = ACTIONS(141), [sym_integer_literal] = ACTIONS(139), [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1089), + [aux_sym_preproc_if_token1] = ACTIONS(1339), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -269077,84 +268963,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [1345] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(5160), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2204), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(5489), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3677), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3080), - [sym_postfix_unary_expression] = STATE(3111), - [sym_prefix_unary_expression] = STATE(3111), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6153), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3080), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3111), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3080), - [sym_member_access_expression] = STATE(2484), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3111), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7549), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(3080), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3080), - [sym_typeof_expression] = STATE(3080), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2484), - [sym_literal] = STATE(3080), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2267), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2816), + [sym__name] = STATE(5893), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2361), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(4847), + [sym_non_lvalue_expression] = STATE(3495), + [sym_lvalue_expression] = STATE(3509), + [sym__expression_statement_expression] = STATE(3462), + [sym_assignment_expression] = STATE(3497), + [sym_binary_expression] = STATE(3462), + [sym_postfix_unary_expression] = STATE(3497), + [sym_prefix_unary_expression] = STATE(3497), + [sym__pointer_indirection_expression] = STATE(2815), + [sym_query_expression] = STATE(3462), + [sym_from_clause] = STATE(6150), + [sym_conditional_expression] = STATE(3462), + [sym_conditional_access_expression] = STATE(3462), + [sym_as_expression] = STATE(3462), + [sym_is_expression] = STATE(3462), + [sym_is_pattern_expression] = STATE(3462), + [sym_cast_expression] = STATE(3462), + [sym_checked_expression] = STATE(3462), + [sym_invocation_expression] = STATE(3497), + [sym_switch_expression] = STATE(3462), + [sym_await_expression] = STATE(3497), + [sym_throw_expression] = STATE(3462), + [sym_element_access_expression] = STATE(2815), + [sym_interpolated_string_expression] = STATE(3462), + [sym_member_access_expression] = STATE(2815), + [sym_object_creation_expression] = STATE(3497), + [sym_parenthesized_expression] = STATE(3497), + [sym__parenthesized_lvalue_expression] = STATE(2815), + [sym_lambda_expression] = STATE(3462), + [sym__lambda_expression_init] = STATE(7428), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3462), + [sym_anonymous_method_expression] = STATE(3462), + [sym_anonymous_object_creation_expression] = STATE(3462), + [sym_implicit_array_creation_expression] = STATE(3462), + [sym_implicit_object_creation_expression] = STATE(3462), + [sym_implicit_stackalloc_expression] = STATE(3462), + [sym_initializer_expression] = STATE(3462), + [sym_default_expression] = STATE(3462), + [sym_with_expression] = STATE(3462), + [sym_sizeof_expression] = STATE(3462), + [sym_typeof_expression] = STATE(3462), + [sym_makeref_expression] = STATE(3462), + [sym_ref_expression] = STATE(3462), + [sym_reftype_expression] = STATE(3462), + [sym_refvalue_expression] = STATE(3462), + [sym_stackalloc_expression] = STATE(3462), + [sym_range_expression] = STATE(3462), + [sym_tuple_expression] = STATE(2815), + [sym_literal] = STATE(3462), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3462), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(1345), [sym_preproc_endregion] = STATE(1345), [sym_preproc_line] = STATE(1345), @@ -269164,47 +269050,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(3067), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), [aux_sym__lambda_expression_init_repeat1] = STATE(3367), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1481), - [anon_sym_LPAREN] = ACTIONS(2047), - [anon_sym_ref] = ACTIONS(2049), - [anon_sym_LBRACE] = ACTIONS(1487), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1305), + [anon_sym_LPAREN] = ACTIONS(1839), + [anon_sym_ref] = ACTIONS(1841), + [anon_sym_LBRACE] = ACTIONS(1311), + [anon_sym_delegate] = ACTIONS(1313), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1061), + [anon_sym_new] = ACTIONS(1843), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1067), - [anon_sym_BANG] = ACTIONS(2053), - [anon_sym_TILDE] = ACTIONS(2053), - [anon_sym_PLUS_PLUS] = ACTIONS(2053), - [anon_sym_DASH_DASH] = ACTIONS(2053), + [anon_sym_checked] = ACTIONS(1317), + [anon_sym_BANG] = ACTIONS(1847), + [anon_sym_TILDE] = ACTIONS(1847), + [anon_sym_PLUS_PLUS] = ACTIONS(1847), + [anon_sym_DASH_DASH] = ACTIONS(1847), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(2051), - [anon_sym_DASH] = ACTIONS(2051), - [anon_sym_STAR] = ACTIONS(2055), - [anon_sym_CARET] = ACTIONS(2053), - [anon_sym_AMP] = ACTIONS(2053), - [anon_sym_this] = ACTIONS(83), + [anon_sym_PLUS] = ACTIONS(1845), + [anon_sym_DASH] = ACTIONS(1845), + [anon_sym_STAR] = ACTIONS(1849), + [anon_sym_CARET] = ACTIONS(1847), + [anon_sym_AMP] = ACTIONS(1847), + [anon_sym_this] = ACTIONS(1321), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), + [anon_sym_base] = ACTIONS(1323), [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1067), + [anon_sym_unchecked] = ACTIONS(1317), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(2057), + [anon_sym_throw] = ACTIONS(1851), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2059), - [anon_sym_DOT_DOT] = ACTIONS(2061), + [anon_sym_await] = ACTIONS(1853), + [anon_sym_DOT_DOT] = ACTIONS(1855), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -269217,19 +269103,19 @@ static const uint16_t ts_parse_table[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(1331), [anon_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(1333), + [anon_sym___reftype] = ACTIONS(1335), + [anon_sym___refvalue] = ACTIONS(1337), [sym_null_literal] = ACTIONS(139), [anon_sym_SQUOTE] = ACTIONS(141), [sym_integer_literal] = ACTIONS(139), [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1089), + [aux_sym_preproc_if_token1] = ACTIONS(1339), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -269246,84 +269132,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [1346] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(5160), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2204), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(5490), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3677), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3080), - [sym_postfix_unary_expression] = STATE(3111), - [sym_prefix_unary_expression] = STATE(3111), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6153), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3080), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3111), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3080), - [sym_member_access_expression] = STATE(2484), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3111), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7549), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(3080), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3080), - [sym_typeof_expression] = STATE(3080), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2484), - [sym_literal] = STATE(3080), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2267), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2816), + [sym__name] = STATE(5893), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2361), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(4849), + [sym_non_lvalue_expression] = STATE(3495), + [sym_lvalue_expression] = STATE(3509), + [sym__expression_statement_expression] = STATE(3462), + [sym_assignment_expression] = STATE(3497), + [sym_binary_expression] = STATE(3462), + [sym_postfix_unary_expression] = STATE(3497), + [sym_prefix_unary_expression] = STATE(3497), + [sym__pointer_indirection_expression] = STATE(2815), + [sym_query_expression] = STATE(3462), + [sym_from_clause] = STATE(6150), + [sym_conditional_expression] = STATE(3462), + [sym_conditional_access_expression] = STATE(3462), + [sym_as_expression] = STATE(3462), + [sym_is_expression] = STATE(3462), + [sym_is_pattern_expression] = STATE(3462), + [sym_cast_expression] = STATE(3462), + [sym_checked_expression] = STATE(3462), + [sym_invocation_expression] = STATE(3497), + [sym_switch_expression] = STATE(3462), + [sym_await_expression] = STATE(3497), + [sym_throw_expression] = STATE(3462), + [sym_element_access_expression] = STATE(2815), + [sym_interpolated_string_expression] = STATE(3462), + [sym_member_access_expression] = STATE(2815), + [sym_object_creation_expression] = STATE(3497), + [sym_parenthesized_expression] = STATE(3497), + [sym__parenthesized_lvalue_expression] = STATE(2815), + [sym_lambda_expression] = STATE(3462), + [sym__lambda_expression_init] = STATE(7428), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3462), + [sym_anonymous_method_expression] = STATE(3462), + [sym_anonymous_object_creation_expression] = STATE(3462), + [sym_implicit_array_creation_expression] = STATE(3462), + [sym_implicit_object_creation_expression] = STATE(3462), + [sym_implicit_stackalloc_expression] = STATE(3462), + [sym_initializer_expression] = STATE(3462), + [sym_default_expression] = STATE(3462), + [sym_with_expression] = STATE(3462), + [sym_sizeof_expression] = STATE(3462), + [sym_typeof_expression] = STATE(3462), + [sym_makeref_expression] = STATE(3462), + [sym_ref_expression] = STATE(3462), + [sym_reftype_expression] = STATE(3462), + [sym_refvalue_expression] = STATE(3462), + [sym_stackalloc_expression] = STATE(3462), + [sym_range_expression] = STATE(3462), + [sym_tuple_expression] = STATE(2815), + [sym_literal] = STATE(3462), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3462), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(1346), [sym_preproc_endregion] = STATE(1346), [sym_preproc_line] = STATE(1346), @@ -269333,47 +269219,47 @@ 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(3067), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), [aux_sym__lambda_expression_init_repeat1] = STATE(3367), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1481), - [anon_sym_LPAREN] = ACTIONS(2047), - [anon_sym_ref] = ACTIONS(2049), - [anon_sym_LBRACE] = ACTIONS(1487), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1305), + [anon_sym_LPAREN] = ACTIONS(1839), + [anon_sym_ref] = ACTIONS(1841), + [anon_sym_LBRACE] = ACTIONS(1311), + [anon_sym_delegate] = ACTIONS(1313), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1061), + [anon_sym_new] = ACTIONS(1843), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1067), - [anon_sym_BANG] = ACTIONS(2053), - [anon_sym_TILDE] = ACTIONS(2053), - [anon_sym_PLUS_PLUS] = ACTIONS(2053), - [anon_sym_DASH_DASH] = ACTIONS(2053), + [anon_sym_checked] = ACTIONS(1317), + [anon_sym_BANG] = ACTIONS(1847), + [anon_sym_TILDE] = ACTIONS(1847), + [anon_sym_PLUS_PLUS] = ACTIONS(1847), + [anon_sym_DASH_DASH] = ACTIONS(1847), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(2051), - [anon_sym_DASH] = ACTIONS(2051), - [anon_sym_STAR] = ACTIONS(2055), - [anon_sym_CARET] = ACTIONS(2053), - [anon_sym_AMP] = ACTIONS(2053), - [anon_sym_this] = ACTIONS(83), + [anon_sym_PLUS] = ACTIONS(1845), + [anon_sym_DASH] = ACTIONS(1845), + [anon_sym_STAR] = ACTIONS(1849), + [anon_sym_CARET] = ACTIONS(1847), + [anon_sym_AMP] = ACTIONS(1847), + [anon_sym_this] = ACTIONS(1321), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), + [anon_sym_base] = ACTIONS(1323), [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1067), + [anon_sym_unchecked] = ACTIONS(1317), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(2057), + [anon_sym_throw] = ACTIONS(1851), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2059), - [anon_sym_DOT_DOT] = ACTIONS(2061), + [anon_sym_await] = ACTIONS(1853), + [anon_sym_DOT_DOT] = ACTIONS(1855), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -269386,19 +269272,19 @@ static const uint16_t ts_parse_table[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(1331), [anon_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(1333), + [anon_sym___reftype] = ACTIONS(1335), + [anon_sym___refvalue] = ACTIONS(1337), [sym_null_literal] = ACTIONS(139), [anon_sym_SQUOTE] = ACTIONS(141), [sym_integer_literal] = ACTIONS(139), [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1089), + [aux_sym_preproc_if_token1] = ACTIONS(1339), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -269415,84 +269301,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [1347] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2420), - [sym__name] = STATE(5887), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2197), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(4071), - [sym_non_lvalue_expression] = STATE(3066), - [sym_lvalue_expression] = STATE(3120), - [sym__expression_statement_expression] = STATE(3006), - [sym_assignment_expression] = STATE(3020), - [sym_binary_expression] = STATE(3006), - [sym_postfix_unary_expression] = STATE(3020), - [sym_prefix_unary_expression] = STATE(3020), - [sym__pointer_indirection_expression] = STATE(2423), - [sym_query_expression] = STATE(3006), - [sym_from_clause] = STATE(6152), - [sym_conditional_expression] = STATE(3006), - [sym_conditional_access_expression] = STATE(3006), - [sym_as_expression] = STATE(3006), - [sym_is_expression] = STATE(3006), - [sym_is_pattern_expression] = STATE(3006), - [sym_cast_expression] = STATE(3006), - [sym_checked_expression] = STATE(3006), - [sym_invocation_expression] = STATE(3020), - [sym_switch_expression] = STATE(3006), - [sym_await_expression] = STATE(3020), - [sym_throw_expression] = STATE(3006), - [sym_element_access_expression] = STATE(2423), - [sym_interpolated_string_expression] = STATE(3006), - [sym_member_access_expression] = STATE(2423), - [sym_object_creation_expression] = STATE(3020), - [sym_parenthesized_expression] = STATE(3020), - [sym__parenthesized_lvalue_expression] = STATE(2423), - [sym_lambda_expression] = STATE(3006), - [sym__lambda_expression_init] = STATE(7722), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3006), - [sym_anonymous_method_expression] = STATE(3006), - [sym_anonymous_object_creation_expression] = STATE(3006), - [sym_implicit_array_creation_expression] = STATE(3006), - [sym_implicit_object_creation_expression] = STATE(3006), - [sym_implicit_stackalloc_expression] = STATE(3006), - [sym_initializer_expression] = STATE(3006), - [sym_default_expression] = STATE(3006), - [sym_with_expression] = STATE(3006), - [sym_sizeof_expression] = STATE(3006), - [sym_typeof_expression] = STATE(3006), - [sym_makeref_expression] = STATE(3006), - [sym_ref_expression] = STATE(3006), - [sym_reftype_expression] = STATE(3006), - [sym_refvalue_expression] = STATE(3006), - [sym_stackalloc_expression] = STATE(3006), - [sym_range_expression] = STATE(3006), - [sym_tuple_expression] = STATE(2423), - [sym_literal] = STATE(3006), - [sym_character_literal] = STATE(3011), - [sym_string_literal] = STATE(3011), - [sym_raw_string_literal] = STATE(3011), - [sym_boolean_literal] = STATE(3011), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3006), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2816), + [sym__name] = STATE(5893), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2361), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(4852), + [sym_non_lvalue_expression] = STATE(3495), + [sym_lvalue_expression] = STATE(3509), + [sym__expression_statement_expression] = STATE(3462), + [sym_assignment_expression] = STATE(3497), + [sym_binary_expression] = STATE(3462), + [sym_postfix_unary_expression] = STATE(3497), + [sym_prefix_unary_expression] = STATE(3497), + [sym__pointer_indirection_expression] = STATE(2815), + [sym_query_expression] = STATE(3462), + [sym_from_clause] = STATE(6150), + [sym_conditional_expression] = STATE(3462), + [sym_conditional_access_expression] = STATE(3462), + [sym_as_expression] = STATE(3462), + [sym_is_expression] = STATE(3462), + [sym_is_pattern_expression] = STATE(3462), + [sym_cast_expression] = STATE(3462), + [sym_checked_expression] = STATE(3462), + [sym_invocation_expression] = STATE(3497), + [sym_switch_expression] = STATE(3462), + [sym_await_expression] = STATE(3497), + [sym_throw_expression] = STATE(3462), + [sym_element_access_expression] = STATE(2815), + [sym_interpolated_string_expression] = STATE(3462), + [sym_member_access_expression] = STATE(2815), + [sym_object_creation_expression] = STATE(3497), + [sym_parenthesized_expression] = STATE(3497), + [sym__parenthesized_lvalue_expression] = STATE(2815), + [sym_lambda_expression] = STATE(3462), + [sym__lambda_expression_init] = STATE(7428), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3462), + [sym_anonymous_method_expression] = STATE(3462), + [sym_anonymous_object_creation_expression] = STATE(3462), + [sym_implicit_array_creation_expression] = STATE(3462), + [sym_implicit_object_creation_expression] = STATE(3462), + [sym_implicit_stackalloc_expression] = STATE(3462), + [sym_initializer_expression] = STATE(3462), + [sym_default_expression] = STATE(3462), + [sym_with_expression] = STATE(3462), + [sym_sizeof_expression] = STATE(3462), + [sym_typeof_expression] = STATE(3462), + [sym_makeref_expression] = STATE(3462), + [sym_ref_expression] = STATE(3462), + [sym_reftype_expression] = STATE(3462), + [sym_refvalue_expression] = STATE(3462), + [sym_stackalloc_expression] = STATE(3462), + [sym_range_expression] = STATE(3462), + [sym_tuple_expression] = STATE(2815), + [sym_literal] = STATE(3462), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3462), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(1347), [sym_preproc_endregion] = STATE(1347), [sym_preproc_line] = STATE(1347), @@ -269502,47 +269388,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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3440), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3367), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1241), - [anon_sym_LPAREN] = ACTIONS(1243), - [anon_sym_ref] = ACTIONS(1245), - [anon_sym_LBRACE] = ACTIONS(1247), - [anon_sym_delegate] = ACTIONS(1249), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1305), + [anon_sym_LPAREN] = ACTIONS(1839), + [anon_sym_ref] = ACTIONS(1841), + [anon_sym_LBRACE] = ACTIONS(1311), + [anon_sym_delegate] = ACTIONS(1313), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1251), + [anon_sym_new] = ACTIONS(1843), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1253), - [anon_sym_BANG] = ACTIONS(1257), - [anon_sym_TILDE] = ACTIONS(1257), - [anon_sym_PLUS_PLUS] = ACTIONS(1257), - [anon_sym_DASH_DASH] = ACTIONS(1257), - [anon_sym_true] = ACTIONS(1259), - [anon_sym_false] = ACTIONS(1259), - [anon_sym_PLUS] = ACTIONS(1255), - [anon_sym_DASH] = ACTIONS(1255), - [anon_sym_STAR] = ACTIONS(1261), - [anon_sym_CARET] = ACTIONS(1257), - [anon_sym_AMP] = ACTIONS(1257), - [anon_sym_this] = ACTIONS(1263), + [anon_sym_checked] = ACTIONS(1317), + [anon_sym_BANG] = ACTIONS(1847), + [anon_sym_TILDE] = ACTIONS(1847), + [anon_sym_PLUS_PLUS] = ACTIONS(1847), + [anon_sym_DASH_DASH] = ACTIONS(1847), + [anon_sym_true] = ACTIONS(77), + [anon_sym_false] = ACTIONS(77), + [anon_sym_PLUS] = ACTIONS(1845), + [anon_sym_DASH] = ACTIONS(1845), + [anon_sym_STAR] = ACTIONS(1849), + [anon_sym_CARET] = ACTIONS(1847), + [anon_sym_AMP] = ACTIONS(1847), + [anon_sym_this] = ACTIONS(1321), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1265), + [anon_sym_base] = ACTIONS(1323), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1267), - [anon_sym_unchecked] = ACTIONS(1253), + [sym_predefined_type] = ACTIONS(91), + [anon_sym_unchecked] = ACTIONS(1317), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1269), - [anon_sym_throw] = ACTIONS(1271), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(1851), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1273), - [anon_sym_DOT_DOT] = ACTIONS(1275), + [anon_sym_await] = ACTIONS(1853), + [anon_sym_DOT_DOT] = ACTIONS(1855), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -269555,19 +269441,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1277), - [anon_sym_sizeof] = ACTIONS(1279), - [anon_sym_typeof] = ACTIONS(1281), - [anon_sym___makeref] = ACTIONS(1283), - [anon_sym___reftype] = ACTIONS(1285), - [anon_sym___refvalue] = ACTIONS(1287), - [sym_null_literal] = ACTIONS(1289), - [anon_sym_SQUOTE] = ACTIONS(1291), - [sym_integer_literal] = ACTIONS(1289), - [sym_real_literal] = ACTIONS(1293), - [anon_sym_DQUOTE] = ACTIONS(1295), - [sym_verbatim_string_literal] = ACTIONS(1293), - [aux_sym_preproc_if_token1] = ACTIONS(1297), + [anon_sym_stackalloc] = ACTIONS(1331), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(1333), + [anon_sym___reftype] = ACTIONS(1335), + [anon_sym___refvalue] = ACTIONS(1337), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_literal] = ACTIONS(143), + [anon_sym_DQUOTE] = ACTIONS(145), + [sym_verbatim_string_literal] = ACTIONS(143), + [aux_sym_preproc_if_token1] = ACTIONS(1339), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -269578,90 +269464,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1299), - [sym_interpolation_verbatim_start] = ACTIONS(1301), - [sym_interpolation_raw_start] = ACTIONS(1303), - [sym_raw_string_start] = ACTIONS(1305), + [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(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(5160), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2204), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(5492), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3677), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3080), - [sym_postfix_unary_expression] = STATE(3111), - [sym_prefix_unary_expression] = STATE(3111), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6153), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3080), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3111), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3080), - [sym_member_access_expression] = STATE(2484), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3111), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7549), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(3080), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3080), - [sym_typeof_expression] = STATE(3080), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2484), - [sym_literal] = STATE(3080), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2267), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2816), + [sym__name] = STATE(5893), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2361), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(4856), + [sym_non_lvalue_expression] = STATE(3495), + [sym_lvalue_expression] = STATE(3509), + [sym__expression_statement_expression] = STATE(3462), + [sym_assignment_expression] = STATE(3497), + [sym_binary_expression] = STATE(3462), + [sym_postfix_unary_expression] = STATE(3497), + [sym_prefix_unary_expression] = STATE(3497), + [sym__pointer_indirection_expression] = STATE(2815), + [sym_query_expression] = STATE(3462), + [sym_from_clause] = STATE(6150), + [sym_conditional_expression] = STATE(3462), + [sym_conditional_access_expression] = STATE(3462), + [sym_as_expression] = STATE(3462), + [sym_is_expression] = STATE(3462), + [sym_is_pattern_expression] = STATE(3462), + [sym_cast_expression] = STATE(3462), + [sym_checked_expression] = STATE(3462), + [sym_invocation_expression] = STATE(3497), + [sym_switch_expression] = STATE(3462), + [sym_await_expression] = STATE(3497), + [sym_throw_expression] = STATE(3462), + [sym_element_access_expression] = STATE(2815), + [sym_interpolated_string_expression] = STATE(3462), + [sym_member_access_expression] = STATE(2815), + [sym_object_creation_expression] = STATE(3497), + [sym_parenthesized_expression] = STATE(3497), + [sym__parenthesized_lvalue_expression] = STATE(2815), + [sym_lambda_expression] = STATE(3462), + [sym__lambda_expression_init] = STATE(7428), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3462), + [sym_anonymous_method_expression] = STATE(3462), + [sym_anonymous_object_creation_expression] = STATE(3462), + [sym_implicit_array_creation_expression] = STATE(3462), + [sym_implicit_object_creation_expression] = STATE(3462), + [sym_implicit_stackalloc_expression] = STATE(3462), + [sym_initializer_expression] = STATE(3462), + [sym_default_expression] = STATE(3462), + [sym_with_expression] = STATE(3462), + [sym_sizeof_expression] = STATE(3462), + [sym_typeof_expression] = STATE(3462), + [sym_makeref_expression] = STATE(3462), + [sym_ref_expression] = STATE(3462), + [sym_reftype_expression] = STATE(3462), + [sym_refvalue_expression] = STATE(3462), + [sym_stackalloc_expression] = STATE(3462), + [sym_range_expression] = STATE(3462), + [sym_tuple_expression] = STATE(2815), + [sym_literal] = STATE(3462), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3462), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(1348), [sym_preproc_endregion] = STATE(1348), [sym_preproc_line] = STATE(1348), @@ -269671,47 +269557,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(3067), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), [aux_sym__lambda_expression_init_repeat1] = STATE(3367), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1481), - [anon_sym_LPAREN] = ACTIONS(2047), - [anon_sym_ref] = ACTIONS(2049), - [anon_sym_LBRACE] = ACTIONS(1487), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1305), + [anon_sym_LPAREN] = ACTIONS(1839), + [anon_sym_ref] = ACTIONS(1841), + [anon_sym_LBRACE] = ACTIONS(1311), + [anon_sym_delegate] = ACTIONS(1313), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1061), + [anon_sym_new] = ACTIONS(1843), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1067), - [anon_sym_BANG] = ACTIONS(2053), - [anon_sym_TILDE] = ACTIONS(2053), - [anon_sym_PLUS_PLUS] = ACTIONS(2053), - [anon_sym_DASH_DASH] = ACTIONS(2053), + [anon_sym_checked] = ACTIONS(1317), + [anon_sym_BANG] = ACTIONS(1847), + [anon_sym_TILDE] = ACTIONS(1847), + [anon_sym_PLUS_PLUS] = ACTIONS(1847), + [anon_sym_DASH_DASH] = ACTIONS(1847), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(2051), - [anon_sym_DASH] = ACTIONS(2051), - [anon_sym_STAR] = ACTIONS(2055), - [anon_sym_CARET] = ACTIONS(2053), - [anon_sym_AMP] = ACTIONS(2053), - [anon_sym_this] = ACTIONS(83), + [anon_sym_PLUS] = ACTIONS(1845), + [anon_sym_DASH] = ACTIONS(1845), + [anon_sym_STAR] = ACTIONS(1849), + [anon_sym_CARET] = ACTIONS(1847), + [anon_sym_AMP] = ACTIONS(1847), + [anon_sym_this] = ACTIONS(1321), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), + [anon_sym_base] = ACTIONS(1323), [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1067), + [anon_sym_unchecked] = ACTIONS(1317), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(2057), + [anon_sym_throw] = ACTIONS(1851), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2059), - [anon_sym_DOT_DOT] = ACTIONS(2061), + [anon_sym_await] = ACTIONS(1853), + [anon_sym_DOT_DOT] = ACTIONS(1855), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -269724,19 +269610,19 @@ static const uint16_t ts_parse_table[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(1331), [anon_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(1333), + [anon_sym___reftype] = ACTIONS(1335), + [anon_sym___refvalue] = ACTIONS(1337), [sym_null_literal] = ACTIONS(139), [anon_sym_SQUOTE] = ACTIONS(141), [sym_integer_literal] = ACTIONS(139), [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1089), + [aux_sym_preproc_if_token1] = ACTIONS(1339), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -269753,84 +269639,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [1349] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(5160), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2204), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(5493), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3677), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3080), - [sym_postfix_unary_expression] = STATE(3111), - [sym_prefix_unary_expression] = STATE(3111), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6153), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3080), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3111), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3080), - [sym_member_access_expression] = STATE(2484), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3111), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7549), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(3080), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3080), - [sym_typeof_expression] = STATE(3080), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2484), - [sym_literal] = STATE(3080), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2267), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2816), + [sym__name] = STATE(5893), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2361), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(4859), + [sym_non_lvalue_expression] = STATE(3495), + [sym_lvalue_expression] = STATE(3509), + [sym__expression_statement_expression] = STATE(3462), + [sym_assignment_expression] = STATE(3497), + [sym_binary_expression] = STATE(3462), + [sym_postfix_unary_expression] = STATE(3497), + [sym_prefix_unary_expression] = STATE(3497), + [sym__pointer_indirection_expression] = STATE(2815), + [sym_query_expression] = STATE(3462), + [sym_from_clause] = STATE(6150), + [sym_conditional_expression] = STATE(3462), + [sym_conditional_access_expression] = STATE(3462), + [sym_as_expression] = STATE(3462), + [sym_is_expression] = STATE(3462), + [sym_is_pattern_expression] = STATE(3462), + [sym_cast_expression] = STATE(3462), + [sym_checked_expression] = STATE(3462), + [sym_invocation_expression] = STATE(3497), + [sym_switch_expression] = STATE(3462), + [sym_await_expression] = STATE(3497), + [sym_throw_expression] = STATE(3462), + [sym_element_access_expression] = STATE(2815), + [sym_interpolated_string_expression] = STATE(3462), + [sym_member_access_expression] = STATE(2815), + [sym_object_creation_expression] = STATE(3497), + [sym_parenthesized_expression] = STATE(3497), + [sym__parenthesized_lvalue_expression] = STATE(2815), + [sym_lambda_expression] = STATE(3462), + [sym__lambda_expression_init] = STATE(7428), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3462), + [sym_anonymous_method_expression] = STATE(3462), + [sym_anonymous_object_creation_expression] = STATE(3462), + [sym_implicit_array_creation_expression] = STATE(3462), + [sym_implicit_object_creation_expression] = STATE(3462), + [sym_implicit_stackalloc_expression] = STATE(3462), + [sym_initializer_expression] = STATE(3462), + [sym_default_expression] = STATE(3462), + [sym_with_expression] = STATE(3462), + [sym_sizeof_expression] = STATE(3462), + [sym_typeof_expression] = STATE(3462), + [sym_makeref_expression] = STATE(3462), + [sym_ref_expression] = STATE(3462), + [sym_reftype_expression] = STATE(3462), + [sym_refvalue_expression] = STATE(3462), + [sym_stackalloc_expression] = STATE(3462), + [sym_range_expression] = STATE(3462), + [sym_tuple_expression] = STATE(2815), + [sym_literal] = STATE(3462), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3462), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(1349), [sym_preproc_endregion] = STATE(1349), [sym_preproc_line] = STATE(1349), @@ -269840,47 +269726,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(3067), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), [aux_sym__lambda_expression_init_repeat1] = STATE(3367), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1481), - [anon_sym_LPAREN] = ACTIONS(2047), - [anon_sym_ref] = ACTIONS(2049), - [anon_sym_LBRACE] = ACTIONS(1487), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1305), + [anon_sym_LPAREN] = ACTIONS(1839), + [anon_sym_ref] = ACTIONS(1841), + [anon_sym_LBRACE] = ACTIONS(1311), + [anon_sym_delegate] = ACTIONS(1313), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1061), + [anon_sym_new] = ACTIONS(1843), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1067), - [anon_sym_BANG] = ACTIONS(2053), - [anon_sym_TILDE] = ACTIONS(2053), - [anon_sym_PLUS_PLUS] = ACTIONS(2053), - [anon_sym_DASH_DASH] = ACTIONS(2053), + [anon_sym_checked] = ACTIONS(1317), + [anon_sym_BANG] = ACTIONS(1847), + [anon_sym_TILDE] = ACTIONS(1847), + [anon_sym_PLUS_PLUS] = ACTIONS(1847), + [anon_sym_DASH_DASH] = ACTIONS(1847), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(2051), - [anon_sym_DASH] = ACTIONS(2051), - [anon_sym_STAR] = ACTIONS(2055), - [anon_sym_CARET] = ACTIONS(2053), - [anon_sym_AMP] = ACTIONS(2053), - [anon_sym_this] = ACTIONS(83), + [anon_sym_PLUS] = ACTIONS(1845), + [anon_sym_DASH] = ACTIONS(1845), + [anon_sym_STAR] = ACTIONS(1849), + [anon_sym_CARET] = ACTIONS(1847), + [anon_sym_AMP] = ACTIONS(1847), + [anon_sym_this] = ACTIONS(1321), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), + [anon_sym_base] = ACTIONS(1323), [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1067), + [anon_sym_unchecked] = ACTIONS(1317), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(2057), + [anon_sym_throw] = ACTIONS(1851), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2059), - [anon_sym_DOT_DOT] = ACTIONS(2061), + [anon_sym_await] = ACTIONS(1853), + [anon_sym_DOT_DOT] = ACTIONS(1855), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -269893,19 +269779,19 @@ static const uint16_t ts_parse_table[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(1331), [anon_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(1333), + [anon_sym___reftype] = ACTIONS(1335), + [anon_sym___refvalue] = ACTIONS(1337), [sym_null_literal] = ACTIONS(139), [anon_sym_SQUOTE] = ACTIONS(141), [sym_integer_literal] = ACTIONS(139), [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1089), + [aux_sym_preproc_if_token1] = ACTIONS(1339), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -269922,84 +269808,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [1350] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(5160), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2204), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(5494), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3677), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3080), - [sym_postfix_unary_expression] = STATE(3111), - [sym_prefix_unary_expression] = STATE(3111), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6153), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3080), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3111), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3080), - [sym_member_access_expression] = STATE(2484), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3111), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7549), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(3080), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3080), - [sym_typeof_expression] = STATE(3080), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2484), - [sym_literal] = STATE(3080), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2267), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2816), + [sym__name] = STATE(5893), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2361), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(4860), + [sym_non_lvalue_expression] = STATE(3495), + [sym_lvalue_expression] = STATE(3509), + [sym__expression_statement_expression] = STATE(3462), + [sym_assignment_expression] = STATE(3497), + [sym_binary_expression] = STATE(3462), + [sym_postfix_unary_expression] = STATE(3497), + [sym_prefix_unary_expression] = STATE(3497), + [sym__pointer_indirection_expression] = STATE(2815), + [sym_query_expression] = STATE(3462), + [sym_from_clause] = STATE(6150), + [sym_conditional_expression] = STATE(3462), + [sym_conditional_access_expression] = STATE(3462), + [sym_as_expression] = STATE(3462), + [sym_is_expression] = STATE(3462), + [sym_is_pattern_expression] = STATE(3462), + [sym_cast_expression] = STATE(3462), + [sym_checked_expression] = STATE(3462), + [sym_invocation_expression] = STATE(3497), + [sym_switch_expression] = STATE(3462), + [sym_await_expression] = STATE(3497), + [sym_throw_expression] = STATE(3462), + [sym_element_access_expression] = STATE(2815), + [sym_interpolated_string_expression] = STATE(3462), + [sym_member_access_expression] = STATE(2815), + [sym_object_creation_expression] = STATE(3497), + [sym_parenthesized_expression] = STATE(3497), + [sym__parenthesized_lvalue_expression] = STATE(2815), + [sym_lambda_expression] = STATE(3462), + [sym__lambda_expression_init] = STATE(7428), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3462), + [sym_anonymous_method_expression] = STATE(3462), + [sym_anonymous_object_creation_expression] = STATE(3462), + [sym_implicit_array_creation_expression] = STATE(3462), + [sym_implicit_object_creation_expression] = STATE(3462), + [sym_implicit_stackalloc_expression] = STATE(3462), + [sym_initializer_expression] = STATE(3462), + [sym_default_expression] = STATE(3462), + [sym_with_expression] = STATE(3462), + [sym_sizeof_expression] = STATE(3462), + [sym_typeof_expression] = STATE(3462), + [sym_makeref_expression] = STATE(3462), + [sym_ref_expression] = STATE(3462), + [sym_reftype_expression] = STATE(3462), + [sym_refvalue_expression] = STATE(3462), + [sym_stackalloc_expression] = STATE(3462), + [sym_range_expression] = STATE(3462), + [sym_tuple_expression] = STATE(2815), + [sym_literal] = STATE(3462), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3462), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(1350), [sym_preproc_endregion] = STATE(1350), [sym_preproc_line] = STATE(1350), @@ -270009,47 +269895,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(3067), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), [aux_sym__lambda_expression_init_repeat1] = STATE(3367), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1481), - [anon_sym_LPAREN] = ACTIONS(2047), - [anon_sym_ref] = ACTIONS(2049), - [anon_sym_LBRACE] = ACTIONS(1487), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1305), + [anon_sym_LPAREN] = ACTIONS(1839), + [anon_sym_ref] = ACTIONS(1841), + [anon_sym_LBRACE] = ACTIONS(1311), + [anon_sym_delegate] = ACTIONS(1313), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1061), + [anon_sym_new] = ACTIONS(1843), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1067), - [anon_sym_BANG] = ACTIONS(2053), - [anon_sym_TILDE] = ACTIONS(2053), - [anon_sym_PLUS_PLUS] = ACTIONS(2053), - [anon_sym_DASH_DASH] = ACTIONS(2053), + [anon_sym_checked] = ACTIONS(1317), + [anon_sym_BANG] = ACTIONS(1847), + [anon_sym_TILDE] = ACTIONS(1847), + [anon_sym_PLUS_PLUS] = ACTIONS(1847), + [anon_sym_DASH_DASH] = ACTIONS(1847), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(2051), - [anon_sym_DASH] = ACTIONS(2051), - [anon_sym_STAR] = ACTIONS(2055), - [anon_sym_CARET] = ACTIONS(2053), - [anon_sym_AMP] = ACTIONS(2053), - [anon_sym_this] = ACTIONS(83), + [anon_sym_PLUS] = ACTIONS(1845), + [anon_sym_DASH] = ACTIONS(1845), + [anon_sym_STAR] = ACTIONS(1849), + [anon_sym_CARET] = ACTIONS(1847), + [anon_sym_AMP] = ACTIONS(1847), + [anon_sym_this] = ACTIONS(1321), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), + [anon_sym_base] = ACTIONS(1323), [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1067), + [anon_sym_unchecked] = ACTIONS(1317), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(2057), + [anon_sym_throw] = ACTIONS(1851), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2059), - [anon_sym_DOT_DOT] = ACTIONS(2061), + [anon_sym_await] = ACTIONS(1853), + [anon_sym_DOT_DOT] = ACTIONS(1855), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -270062,19 +269948,19 @@ static const uint16_t ts_parse_table[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(1331), [anon_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(1333), + [anon_sym___reftype] = ACTIONS(1335), + [anon_sym___refvalue] = ACTIONS(1337), [sym_null_literal] = ACTIONS(139), [anon_sym_SQUOTE] = ACTIONS(141), [sym_integer_literal] = ACTIONS(139), [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1089), + [aux_sym_preproc_if_token1] = ACTIONS(1339), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -270091,84 +269977,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [1351] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2420), - [sym__name] = STATE(5887), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2197), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(4072), - [sym_non_lvalue_expression] = STATE(3066), - [sym_lvalue_expression] = STATE(3120), - [sym__expression_statement_expression] = STATE(3006), - [sym_assignment_expression] = STATE(3020), - [sym_binary_expression] = STATE(3006), - [sym_postfix_unary_expression] = STATE(3020), - [sym_prefix_unary_expression] = STATE(3020), - [sym__pointer_indirection_expression] = STATE(2423), - [sym_query_expression] = STATE(3006), - [sym_from_clause] = STATE(6152), - [sym_conditional_expression] = STATE(3006), - [sym_conditional_access_expression] = STATE(3006), - [sym_as_expression] = STATE(3006), - [sym_is_expression] = STATE(3006), - [sym_is_pattern_expression] = STATE(3006), - [sym_cast_expression] = STATE(3006), - [sym_checked_expression] = STATE(3006), - [sym_invocation_expression] = STATE(3020), - [sym_switch_expression] = STATE(3006), - [sym_await_expression] = STATE(3020), - [sym_throw_expression] = STATE(3006), - [sym_element_access_expression] = STATE(2423), - [sym_interpolated_string_expression] = STATE(3006), - [sym_member_access_expression] = STATE(2423), - [sym_object_creation_expression] = STATE(3020), - [sym_parenthesized_expression] = STATE(3020), - [sym__parenthesized_lvalue_expression] = STATE(2423), - [sym_lambda_expression] = STATE(3006), - [sym__lambda_expression_init] = STATE(7722), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3006), - [sym_anonymous_method_expression] = STATE(3006), - [sym_anonymous_object_creation_expression] = STATE(3006), - [sym_implicit_array_creation_expression] = STATE(3006), - [sym_implicit_object_creation_expression] = STATE(3006), - [sym_implicit_stackalloc_expression] = STATE(3006), - [sym_initializer_expression] = STATE(3006), - [sym_default_expression] = STATE(3006), - [sym_with_expression] = STATE(3006), - [sym_sizeof_expression] = STATE(3006), - [sym_typeof_expression] = STATE(3006), - [sym_makeref_expression] = STATE(3006), - [sym_ref_expression] = STATE(3006), - [sym_reftype_expression] = STATE(3006), - [sym_refvalue_expression] = STATE(3006), - [sym_stackalloc_expression] = STATE(3006), - [sym_range_expression] = STATE(3006), - [sym_tuple_expression] = STATE(2423), - [sym_literal] = STATE(3006), - [sym_character_literal] = STATE(3011), - [sym_string_literal] = STATE(3011), - [sym_raw_string_literal] = STATE(3011), - [sym_boolean_literal] = STATE(3011), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3006), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2816), + [sym__name] = STATE(5893), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2361), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(4861), + [sym_non_lvalue_expression] = STATE(3495), + [sym_lvalue_expression] = STATE(3509), + [sym__expression_statement_expression] = STATE(3462), + [sym_assignment_expression] = STATE(3497), + [sym_binary_expression] = STATE(3462), + [sym_postfix_unary_expression] = STATE(3497), + [sym_prefix_unary_expression] = STATE(3497), + [sym__pointer_indirection_expression] = STATE(2815), + [sym_query_expression] = STATE(3462), + [sym_from_clause] = STATE(6150), + [sym_conditional_expression] = STATE(3462), + [sym_conditional_access_expression] = STATE(3462), + [sym_as_expression] = STATE(3462), + [sym_is_expression] = STATE(3462), + [sym_is_pattern_expression] = STATE(3462), + [sym_cast_expression] = STATE(3462), + [sym_checked_expression] = STATE(3462), + [sym_invocation_expression] = STATE(3497), + [sym_switch_expression] = STATE(3462), + [sym_await_expression] = STATE(3497), + [sym_throw_expression] = STATE(3462), + [sym_element_access_expression] = STATE(2815), + [sym_interpolated_string_expression] = STATE(3462), + [sym_member_access_expression] = STATE(2815), + [sym_object_creation_expression] = STATE(3497), + [sym_parenthesized_expression] = STATE(3497), + [sym__parenthesized_lvalue_expression] = STATE(2815), + [sym_lambda_expression] = STATE(3462), + [sym__lambda_expression_init] = STATE(7428), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3462), + [sym_anonymous_method_expression] = STATE(3462), + [sym_anonymous_object_creation_expression] = STATE(3462), + [sym_implicit_array_creation_expression] = STATE(3462), + [sym_implicit_object_creation_expression] = STATE(3462), + [sym_implicit_stackalloc_expression] = STATE(3462), + [sym_initializer_expression] = STATE(3462), + [sym_default_expression] = STATE(3462), + [sym_with_expression] = STATE(3462), + [sym_sizeof_expression] = STATE(3462), + [sym_typeof_expression] = STATE(3462), + [sym_makeref_expression] = STATE(3462), + [sym_ref_expression] = STATE(3462), + [sym_reftype_expression] = STATE(3462), + [sym_refvalue_expression] = STATE(3462), + [sym_stackalloc_expression] = STATE(3462), + [sym_range_expression] = STATE(3462), + [sym_tuple_expression] = STATE(2815), + [sym_literal] = STATE(3462), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3462), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(1351), [sym_preproc_endregion] = STATE(1351), [sym_preproc_line] = STATE(1351), @@ -270178,47 +270064,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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3440), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3367), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1241), - [anon_sym_LPAREN] = ACTIONS(1243), - [anon_sym_ref] = ACTIONS(1245), - [anon_sym_LBRACE] = ACTIONS(1247), - [anon_sym_delegate] = ACTIONS(1249), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1305), + [anon_sym_LPAREN] = ACTIONS(1839), + [anon_sym_ref] = ACTIONS(1841), + [anon_sym_LBRACE] = ACTIONS(1311), + [anon_sym_delegate] = ACTIONS(1313), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1251), + [anon_sym_new] = ACTIONS(1843), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1253), - [anon_sym_BANG] = ACTIONS(1257), - [anon_sym_TILDE] = ACTIONS(1257), - [anon_sym_PLUS_PLUS] = ACTIONS(1257), - [anon_sym_DASH_DASH] = ACTIONS(1257), - [anon_sym_true] = ACTIONS(1259), - [anon_sym_false] = ACTIONS(1259), - [anon_sym_PLUS] = ACTIONS(1255), - [anon_sym_DASH] = ACTIONS(1255), - [anon_sym_STAR] = ACTIONS(1261), - [anon_sym_CARET] = ACTIONS(1257), - [anon_sym_AMP] = ACTIONS(1257), - [anon_sym_this] = ACTIONS(1263), + [anon_sym_checked] = ACTIONS(1317), + [anon_sym_BANG] = ACTIONS(1847), + [anon_sym_TILDE] = ACTIONS(1847), + [anon_sym_PLUS_PLUS] = ACTIONS(1847), + [anon_sym_DASH_DASH] = ACTIONS(1847), + [anon_sym_true] = ACTIONS(77), + [anon_sym_false] = ACTIONS(77), + [anon_sym_PLUS] = ACTIONS(1845), + [anon_sym_DASH] = ACTIONS(1845), + [anon_sym_STAR] = ACTIONS(1849), + [anon_sym_CARET] = ACTIONS(1847), + [anon_sym_AMP] = ACTIONS(1847), + [anon_sym_this] = ACTIONS(1321), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1265), + [anon_sym_base] = ACTIONS(1323), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1267), - [anon_sym_unchecked] = ACTIONS(1253), + [sym_predefined_type] = ACTIONS(91), + [anon_sym_unchecked] = ACTIONS(1317), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1269), - [anon_sym_throw] = ACTIONS(1271), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(1851), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1273), - [anon_sym_DOT_DOT] = ACTIONS(1275), + [anon_sym_await] = ACTIONS(1853), + [anon_sym_DOT_DOT] = ACTIONS(1855), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -270231,19 +270117,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1277), - [anon_sym_sizeof] = ACTIONS(1279), - [anon_sym_typeof] = ACTIONS(1281), - [anon_sym___makeref] = ACTIONS(1283), - [anon_sym___reftype] = ACTIONS(1285), - [anon_sym___refvalue] = ACTIONS(1287), - [sym_null_literal] = ACTIONS(1289), - [anon_sym_SQUOTE] = ACTIONS(1291), - [sym_integer_literal] = ACTIONS(1289), - [sym_real_literal] = ACTIONS(1293), - [anon_sym_DQUOTE] = ACTIONS(1295), - [sym_verbatim_string_literal] = ACTIONS(1293), - [aux_sym_preproc_if_token1] = ACTIONS(1297), + [anon_sym_stackalloc] = ACTIONS(1331), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(1333), + [anon_sym___reftype] = ACTIONS(1335), + [anon_sym___refvalue] = ACTIONS(1337), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_literal] = ACTIONS(143), + [anon_sym_DQUOTE] = ACTIONS(145), + [sym_verbatim_string_literal] = ACTIONS(143), + [aux_sym_preproc_if_token1] = ACTIONS(1339), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -270254,90 +270140,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1299), - [sym_interpolation_verbatim_start] = ACTIONS(1301), - [sym_interpolation_raw_start] = ACTIONS(1303), - [sym_raw_string_start] = ACTIONS(1305), + [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(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(5160), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2204), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(5498), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3677), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3080), - [sym_postfix_unary_expression] = STATE(3111), - [sym_prefix_unary_expression] = STATE(3111), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6153), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3080), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3111), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3080), - [sym_member_access_expression] = STATE(2484), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3111), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7549), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(3080), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3080), - [sym_typeof_expression] = STATE(3080), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2484), - [sym_literal] = STATE(3080), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2267), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2816), + [sym__name] = STATE(5893), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2361), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(3214), + [sym_non_lvalue_expression] = STATE(3495), + [sym_lvalue_expression] = STATE(3509), + [sym__expression_statement_expression] = STATE(3462), + [sym_assignment_expression] = STATE(3497), + [sym_binary_expression] = STATE(3462), + [sym_postfix_unary_expression] = STATE(3497), + [sym_prefix_unary_expression] = STATE(3497), + [sym__pointer_indirection_expression] = STATE(2815), + [sym_query_expression] = STATE(3462), + [sym_from_clause] = STATE(6150), + [sym_conditional_expression] = STATE(3462), + [sym_conditional_access_expression] = STATE(3462), + [sym_as_expression] = STATE(3462), + [sym_is_expression] = STATE(3462), + [sym_is_pattern_expression] = STATE(3462), + [sym_cast_expression] = STATE(3462), + [sym_checked_expression] = STATE(3462), + [sym_invocation_expression] = STATE(3497), + [sym_switch_expression] = STATE(3462), + [sym_await_expression] = STATE(3497), + [sym_throw_expression] = STATE(3462), + [sym_element_access_expression] = STATE(2815), + [sym_interpolated_string_expression] = STATE(3462), + [sym_member_access_expression] = STATE(2815), + [sym_object_creation_expression] = STATE(3497), + [sym_parenthesized_expression] = STATE(3497), + [sym__parenthesized_lvalue_expression] = STATE(2815), + [sym_lambda_expression] = STATE(3462), + [sym__lambda_expression_init] = STATE(7428), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3462), + [sym_anonymous_method_expression] = STATE(3462), + [sym_anonymous_object_creation_expression] = STATE(3462), + [sym_implicit_array_creation_expression] = STATE(3462), + [sym_implicit_object_creation_expression] = STATE(3462), + [sym_implicit_stackalloc_expression] = STATE(3462), + [sym_initializer_expression] = STATE(3462), + [sym_default_expression] = STATE(3462), + [sym_with_expression] = STATE(3462), + [sym_sizeof_expression] = STATE(3462), + [sym_typeof_expression] = STATE(3462), + [sym_makeref_expression] = STATE(3462), + [sym_ref_expression] = STATE(3462), + [sym_reftype_expression] = STATE(3462), + [sym_refvalue_expression] = STATE(3462), + [sym_stackalloc_expression] = STATE(3462), + [sym_range_expression] = STATE(3462), + [sym_tuple_expression] = STATE(2815), + [sym_literal] = STATE(3462), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3462), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(1352), [sym_preproc_endregion] = STATE(1352), [sym_preproc_line] = STATE(1352), @@ -270347,47 +270233,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(3067), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), [aux_sym__lambda_expression_init_repeat1] = STATE(3367), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1481), - [anon_sym_LPAREN] = ACTIONS(2047), - [anon_sym_ref] = ACTIONS(2049), - [anon_sym_LBRACE] = ACTIONS(1487), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1305), + [anon_sym_LPAREN] = ACTIONS(1839), + [anon_sym_ref] = ACTIONS(1841), + [anon_sym_LBRACE] = ACTIONS(1311), + [anon_sym_delegate] = ACTIONS(1313), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1061), + [anon_sym_new] = ACTIONS(1843), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1067), - [anon_sym_BANG] = ACTIONS(2053), - [anon_sym_TILDE] = ACTIONS(2053), - [anon_sym_PLUS_PLUS] = ACTIONS(2053), - [anon_sym_DASH_DASH] = ACTIONS(2053), + [anon_sym_checked] = ACTIONS(1317), + [anon_sym_BANG] = ACTIONS(1847), + [anon_sym_TILDE] = ACTIONS(1847), + [anon_sym_PLUS_PLUS] = ACTIONS(1847), + [anon_sym_DASH_DASH] = ACTIONS(1847), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(2051), - [anon_sym_DASH] = ACTIONS(2051), - [anon_sym_STAR] = ACTIONS(2055), - [anon_sym_CARET] = ACTIONS(2053), - [anon_sym_AMP] = ACTIONS(2053), - [anon_sym_this] = ACTIONS(83), + [anon_sym_PLUS] = ACTIONS(1845), + [anon_sym_DASH] = ACTIONS(1845), + [anon_sym_STAR] = ACTIONS(1849), + [anon_sym_CARET] = ACTIONS(1847), + [anon_sym_AMP] = ACTIONS(1847), + [anon_sym_this] = ACTIONS(1321), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), + [anon_sym_base] = ACTIONS(1323), [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1067), + [anon_sym_unchecked] = ACTIONS(1317), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(2057), + [anon_sym_throw] = ACTIONS(1851), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2059), - [anon_sym_DOT_DOT] = ACTIONS(2061), + [anon_sym_await] = ACTIONS(1853), + [anon_sym_DOT_DOT] = ACTIONS(1855), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -270400,19 +270286,19 @@ static const uint16_t ts_parse_table[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(1331), [anon_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(1333), + [anon_sym___reftype] = ACTIONS(1335), + [anon_sym___refvalue] = ACTIONS(1337), [sym_null_literal] = ACTIONS(139), [anon_sym_SQUOTE] = ACTIONS(141), [sym_integer_literal] = ACTIONS(139), [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1089), + [aux_sym_preproc_if_token1] = ACTIONS(1339), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -270429,84 +270315,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [1353] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2420), - [sym__name] = STATE(5897), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2397), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(5236), - [sym_non_lvalue_expression] = STATE(3066), - [sym_lvalue_expression] = STATE(3632), - [sym__expression_statement_expression] = STATE(3006), - [sym_assignment_expression] = STATE(3020), - [sym_binary_expression] = STATE(3006), - [sym_postfix_unary_expression] = STATE(3020), - [sym_prefix_unary_expression] = STATE(3020), - [sym__pointer_indirection_expression] = STATE(2423), - [sym_query_expression] = STATE(3006), - [sym_from_clause] = STATE(6184), - [sym_conditional_expression] = STATE(3006), - [sym_conditional_access_expression] = STATE(3006), - [sym_as_expression] = STATE(3006), - [sym_is_expression] = STATE(3006), - [sym_is_pattern_expression] = STATE(3006), - [sym_cast_expression] = STATE(3006), - [sym_checked_expression] = STATE(3006), - [sym_invocation_expression] = STATE(3020), - [sym_switch_expression] = STATE(3006), - [sym_await_expression] = STATE(3020), - [sym_throw_expression] = STATE(3006), - [sym_element_access_expression] = STATE(2423), - [sym_interpolated_string_expression] = STATE(3006), - [sym_member_access_expression] = STATE(2423), - [sym_object_creation_expression] = STATE(3020), - [sym_parenthesized_expression] = STATE(3020), - [sym__parenthesized_lvalue_expression] = STATE(2423), - [sym_lambda_expression] = STATE(3006), - [sym__lambda_expression_init] = STATE(7393), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3006), - [sym_anonymous_method_expression] = STATE(3006), - [sym_anonymous_object_creation_expression] = STATE(3006), - [sym_implicit_array_creation_expression] = STATE(3006), - [sym_implicit_object_creation_expression] = STATE(3006), - [sym_implicit_stackalloc_expression] = STATE(3006), - [sym_initializer_expression] = STATE(3006), - [sym_default_expression] = STATE(3006), - [sym_with_expression] = STATE(3006), - [sym_sizeof_expression] = STATE(3006), - [sym_typeof_expression] = STATE(3006), - [sym_makeref_expression] = STATE(3006), - [sym_ref_expression] = STATE(3006), - [sym_reftype_expression] = STATE(3006), - [sym_refvalue_expression] = STATE(3006), - [sym_stackalloc_expression] = STATE(3006), - [sym_range_expression] = STATE(3006), - [sym_tuple_expression] = STATE(2423), - [sym_literal] = STATE(3006), - [sym_character_literal] = STATE(3011), - [sym_string_literal] = STATE(3011), - [sym_raw_string_literal] = STATE(3011), - [sym_boolean_literal] = STATE(3011), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3006), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2416), + [sym__name] = STATE(5890), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2193), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(5220), + [sym_non_lvalue_expression] = STATE(3040), + [sym_lvalue_expression] = STATE(3549), + [sym__expression_statement_expression] = STATE(3035), + [sym_assignment_expression] = STATE(3043), + [sym_binary_expression] = STATE(3035), + [sym_postfix_unary_expression] = STATE(3043), + [sym_prefix_unary_expression] = STATE(3043), + [sym__pointer_indirection_expression] = STATE(2415), + [sym_query_expression] = STATE(3035), + [sym_from_clause] = STATE(6131), + [sym_conditional_expression] = STATE(3035), + [sym_conditional_access_expression] = STATE(3035), + [sym_as_expression] = STATE(3035), + [sym_is_expression] = STATE(3035), + [sym_is_pattern_expression] = STATE(3035), + [sym_cast_expression] = STATE(3035), + [sym_checked_expression] = STATE(3035), + [sym_invocation_expression] = STATE(3043), + [sym_switch_expression] = STATE(3035), + [sym_await_expression] = STATE(3043), + [sym_throw_expression] = STATE(3035), + [sym_element_access_expression] = STATE(2415), + [sym_interpolated_string_expression] = STATE(3035), + [sym_member_access_expression] = STATE(2415), + [sym_object_creation_expression] = STATE(3043), + [sym_parenthesized_expression] = STATE(3043), + [sym__parenthesized_lvalue_expression] = STATE(2415), + [sym_lambda_expression] = STATE(3035), + [sym__lambda_expression_init] = STATE(7412), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3035), + [sym_anonymous_method_expression] = STATE(3035), + [sym_anonymous_object_creation_expression] = STATE(3035), + [sym_implicit_array_creation_expression] = STATE(3035), + [sym_implicit_object_creation_expression] = STATE(3035), + [sym_implicit_stackalloc_expression] = STATE(3035), + [sym_initializer_expression] = STATE(3035), + [sym_default_expression] = STATE(3035), + [sym_with_expression] = STATE(3035), + [sym_sizeof_expression] = STATE(3035), + [sym_typeof_expression] = STATE(3035), + [sym_makeref_expression] = STATE(3035), + [sym_ref_expression] = STATE(3035), + [sym_reftype_expression] = STATE(3035), + [sym_refvalue_expression] = STATE(3035), + [sym_stackalloc_expression] = STATE(3035), + [sym_range_expression] = STATE(3035), + [sym_tuple_expression] = STATE(2415), + [sym_literal] = STATE(3035), + [sym_character_literal] = STATE(3037), + [sym_string_literal] = STATE(3037), + [sym_raw_string_literal] = STATE(3037), + [sym_boolean_literal] = STATE(3037), + [sym_identifier] = STATE(2261), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3035), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(1353), [sym_preproc_endregion] = STATE(1353), [sym_preproc_line] = STATE(1353), @@ -270516,47 +270402,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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3440), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3455), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1241), - [anon_sym_LPAREN] = ACTIONS(2213), - [anon_sym_ref] = ACTIONS(2215), - [anon_sym_LBRACE] = ACTIONS(1247), - [anon_sym_delegate] = ACTIONS(1249), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1239), + [anon_sym_LPAREN] = ACTIONS(1949), + [anon_sym_ref] = ACTIONS(1951), + [anon_sym_LBRACE] = ACTIONS(1245), + [anon_sym_delegate] = ACTIONS(1247), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(2217), + [anon_sym_new] = ACTIONS(1249), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1253), - [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(1259), - [anon_sym_false] = ACTIONS(1259), - [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(1263), + [anon_sym_checked] = ACTIONS(1251), + [anon_sym_BANG] = ACTIONS(1955), + [anon_sym_TILDE] = ACTIONS(1955), + [anon_sym_PLUS_PLUS] = ACTIONS(1955), + [anon_sym_DASH_DASH] = ACTIONS(1955), + [anon_sym_true] = ACTIONS(1257), + [anon_sym_false] = ACTIONS(1257), + [anon_sym_PLUS] = ACTIONS(1953), + [anon_sym_DASH] = ACTIONS(1953), + [anon_sym_STAR] = ACTIONS(1957), + [anon_sym_CARET] = ACTIONS(1955), + [anon_sym_AMP] = ACTIONS(1955), + [anon_sym_this] = ACTIONS(1261), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1265), + [anon_sym_base] = ACTIONS(1263), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1267), - [anon_sym_unchecked] = ACTIONS(1253), + [sym_predefined_type] = ACTIONS(1265), + [anon_sym_unchecked] = ACTIONS(1251), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1269), - [anon_sym_throw] = ACTIONS(2225), + [anon_sym_default] = ACTIONS(1267), + [anon_sym_throw] = ACTIONS(1959), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2227), - [anon_sym_DOT_DOT] = ACTIONS(2229), + [anon_sym_await] = ACTIONS(1961), + [anon_sym_DOT_DOT] = ACTIONS(1963), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -270569,19 +270455,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1277), - [anon_sym_sizeof] = ACTIONS(1279), - [anon_sym_typeof] = ACTIONS(1281), - [anon_sym___makeref] = ACTIONS(1283), - [anon_sym___reftype] = ACTIONS(1285), - [anon_sym___refvalue] = ACTIONS(1287), - [sym_null_literal] = ACTIONS(1289), - [anon_sym_SQUOTE] = ACTIONS(1291), - [sym_integer_literal] = ACTIONS(1289), - [sym_real_literal] = ACTIONS(1293), - [anon_sym_DQUOTE] = ACTIONS(1295), - [sym_verbatim_string_literal] = ACTIONS(1293), - [aux_sym_preproc_if_token1] = ACTIONS(1297), + [anon_sym_stackalloc] = ACTIONS(1275), + [anon_sym_sizeof] = ACTIONS(1277), + [anon_sym_typeof] = ACTIONS(1279), + [anon_sym___makeref] = ACTIONS(1281), + [anon_sym___reftype] = ACTIONS(1283), + [anon_sym___refvalue] = ACTIONS(1285), + [sym_null_literal] = ACTIONS(1287), + [anon_sym_SQUOTE] = ACTIONS(1289), + [sym_integer_literal] = ACTIONS(1287), + [sym_real_literal] = ACTIONS(1291), + [anon_sym_DQUOTE] = ACTIONS(1293), + [sym_verbatim_string_literal] = ACTIONS(1291), + [aux_sym_preproc_if_token1] = ACTIONS(1295), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -270592,90 +270478,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1299), - [sym_interpolation_verbatim_start] = ACTIONS(1301), - [sym_interpolation_raw_start] = ACTIONS(1303), - [sym_raw_string_start] = ACTIONS(1305), + [sym_interpolation_regular_start] = ACTIONS(1297), + [sym_interpolation_verbatim_start] = ACTIONS(1299), + [sym_interpolation_raw_start] = ACTIONS(1301), + [sym_raw_string_start] = ACTIONS(1303), }, [1354] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2762), - [sym__name] = STATE(5910), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2204), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(4267), - [sym_non_lvalue_expression] = STATE(3438), - [sym_lvalue_expression] = STATE(3162), - [sym__expression_statement_expression] = STATE(3362), - [sym_assignment_expression] = STATE(3449), - [sym_binary_expression] = STATE(3362), - [sym_postfix_unary_expression] = STATE(3449), - [sym_prefix_unary_expression] = STATE(3449), - [sym__pointer_indirection_expression] = STATE(2747), - [sym_query_expression] = STATE(3362), - [sym_from_clause] = STATE(6171), - [sym_conditional_expression] = STATE(3362), - [sym_conditional_access_expression] = STATE(3362), - [sym_as_expression] = STATE(3362), - [sym_is_expression] = STATE(3362), - [sym_is_pattern_expression] = STATE(3362), - [sym_cast_expression] = STATE(3362), - [sym_checked_expression] = STATE(3362), - [sym_invocation_expression] = STATE(3449), - [sym_switch_expression] = STATE(3362), - [sym_await_expression] = STATE(3449), - [sym_throw_expression] = STATE(3362), - [sym_element_access_expression] = STATE(2747), - [sym_interpolated_string_expression] = STATE(3362), - [sym_member_access_expression] = STATE(2747), - [sym_object_creation_expression] = STATE(3449), - [sym_parenthesized_expression] = STATE(3449), - [sym__parenthesized_lvalue_expression] = STATE(2747), - [sym_lambda_expression] = STATE(3362), - [sym__lambda_expression_init] = STATE(7320), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3362), - [sym_anonymous_method_expression] = STATE(3362), - [sym_anonymous_object_creation_expression] = STATE(3362), - [sym_implicit_array_creation_expression] = STATE(3362), - [sym_implicit_object_creation_expression] = STATE(3362), - [sym_implicit_stackalloc_expression] = STATE(3362), - [sym_initializer_expression] = STATE(3362), - [sym_default_expression] = STATE(3362), - [sym_with_expression] = STATE(3362), - [sym_sizeof_expression] = STATE(3362), - [sym_typeof_expression] = STATE(3362), - [sym_makeref_expression] = STATE(3362), - [sym_ref_expression] = STATE(3362), - [sym_reftype_expression] = STATE(3362), - [sym_refvalue_expression] = STATE(3362), - [sym_stackalloc_expression] = STATE(3362), - [sym_range_expression] = STATE(3362), - [sym_tuple_expression] = STATE(2747), - [sym_literal] = STATE(3362), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3362), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2416), + [sym__name] = STATE(5890), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2193), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(2893), + [sym_non_lvalue_expression] = STATE(3040), + [sym_lvalue_expression] = STATE(3549), + [sym__expression_statement_expression] = STATE(3035), + [sym_assignment_expression] = STATE(3043), + [sym_binary_expression] = STATE(3035), + [sym_postfix_unary_expression] = STATE(3043), + [sym_prefix_unary_expression] = STATE(3043), + [sym__pointer_indirection_expression] = STATE(2415), + [sym_query_expression] = STATE(3035), + [sym_from_clause] = STATE(6131), + [sym_conditional_expression] = STATE(3035), + [sym_conditional_access_expression] = STATE(3035), + [sym_as_expression] = STATE(3035), + [sym_is_expression] = STATE(3035), + [sym_is_pattern_expression] = STATE(3035), + [sym_cast_expression] = STATE(3035), + [sym_checked_expression] = STATE(3035), + [sym_invocation_expression] = STATE(3043), + [sym_switch_expression] = STATE(3035), + [sym_await_expression] = STATE(3043), + [sym_throw_expression] = STATE(3035), + [sym_element_access_expression] = STATE(2415), + [sym_interpolated_string_expression] = STATE(3035), + [sym_member_access_expression] = STATE(2415), + [sym_object_creation_expression] = STATE(3043), + [sym_parenthesized_expression] = STATE(3043), + [sym__parenthesized_lvalue_expression] = STATE(2415), + [sym_lambda_expression] = STATE(3035), + [sym__lambda_expression_init] = STATE(7412), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3035), + [sym_anonymous_method_expression] = STATE(3035), + [sym_anonymous_object_creation_expression] = STATE(3035), + [sym_implicit_array_creation_expression] = STATE(3035), + [sym_implicit_object_creation_expression] = STATE(3035), + [sym_implicit_stackalloc_expression] = STATE(3035), + [sym_initializer_expression] = STATE(3035), + [sym_default_expression] = STATE(3035), + [sym_with_expression] = STATE(3035), + [sym_sizeof_expression] = STATE(3035), + [sym_typeof_expression] = STATE(3035), + [sym_makeref_expression] = STATE(3035), + [sym_ref_expression] = STATE(3035), + [sym_reftype_expression] = STATE(3035), + [sym_refvalue_expression] = STATE(3035), + [sym_stackalloc_expression] = STATE(3035), + [sym_range_expression] = STATE(3035), + [sym_tuple_expression] = STATE(2415), + [sym_literal] = STATE(3035), + [sym_character_literal] = STATE(3037), + [sym_string_literal] = STATE(3037), + [sym_raw_string_literal] = STATE(3037), + [sym_boolean_literal] = STATE(3037), + [sym_identifier] = STATE(2261), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3035), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(1354), [sym_preproc_endregion] = STATE(1354), [sym_preproc_line] = STATE(1354), @@ -270685,47 +270571,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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3385), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3455), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1307), - [anon_sym_LPAREN] = ACTIONS(1343), - [anon_sym_ref] = ACTIONS(1345), - [anon_sym_LBRACE] = ACTIONS(1313), - [anon_sym_delegate] = ACTIONS(1315), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1239), + [anon_sym_LPAREN] = ACTIONS(1949), + [anon_sym_ref] = ACTIONS(1951), + [anon_sym_LBRACE] = ACTIONS(1245), + [anon_sym_delegate] = ACTIONS(1247), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1317), + [anon_sym_new] = ACTIONS(1249), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1319), - [anon_sym_BANG] = ACTIONS(1349), - [anon_sym_TILDE] = ACTIONS(1349), - [anon_sym_PLUS_PLUS] = ACTIONS(1349), - [anon_sym_DASH_DASH] = ACTIONS(1349), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1347), - [anon_sym_DASH] = ACTIONS(1347), - [anon_sym_STAR] = ACTIONS(1351), - [anon_sym_CARET] = ACTIONS(1349), - [anon_sym_AMP] = ACTIONS(1349), - [anon_sym_this] = ACTIONS(1323), + [anon_sym_checked] = ACTIONS(1251), + [anon_sym_BANG] = ACTIONS(1955), + [anon_sym_TILDE] = ACTIONS(1955), + [anon_sym_PLUS_PLUS] = ACTIONS(1955), + [anon_sym_DASH_DASH] = ACTIONS(1955), + [anon_sym_true] = ACTIONS(1257), + [anon_sym_false] = ACTIONS(1257), + [anon_sym_PLUS] = ACTIONS(1953), + [anon_sym_DASH] = ACTIONS(1953), + [anon_sym_STAR] = ACTIONS(1957), + [anon_sym_CARET] = ACTIONS(1955), + [anon_sym_AMP] = ACTIONS(1955), + [anon_sym_this] = ACTIONS(1261), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1325), + [anon_sym_base] = ACTIONS(1263), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1319), + [sym_predefined_type] = ACTIONS(1265), + [anon_sym_unchecked] = ACTIONS(1251), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1353), + [anon_sym_default] = ACTIONS(1267), + [anon_sym_throw] = ACTIONS(1959), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1355), - [anon_sym_DOT_DOT] = ACTIONS(1357), + [anon_sym_await] = ACTIONS(1961), + [anon_sym_DOT_DOT] = ACTIONS(1963), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -270738,19 +270624,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1333), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(1335), - [anon_sym___reftype] = ACTIONS(1337), - [anon_sym___refvalue] = ACTIONS(1339), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1341), + [anon_sym_stackalloc] = ACTIONS(1275), + [anon_sym_sizeof] = ACTIONS(1277), + [anon_sym_typeof] = ACTIONS(1279), + [anon_sym___makeref] = ACTIONS(1281), + [anon_sym___reftype] = ACTIONS(1283), + [anon_sym___refvalue] = ACTIONS(1285), + [sym_null_literal] = ACTIONS(1287), + [anon_sym_SQUOTE] = ACTIONS(1289), + [sym_integer_literal] = ACTIONS(1287), + [sym_real_literal] = ACTIONS(1291), + [anon_sym_DQUOTE] = ACTIONS(1293), + [sym_verbatim_string_literal] = ACTIONS(1291), + [aux_sym_preproc_if_token1] = ACTIONS(1295), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -270761,90 +270647,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(151), - [sym_interpolation_verbatim_start] = ACTIONS(153), - [sym_interpolation_raw_start] = ACTIONS(155), - [sym_raw_string_start] = ACTIONS(157), + [sym_interpolation_regular_start] = ACTIONS(1297), + [sym_interpolation_verbatim_start] = ACTIONS(1299), + [sym_interpolation_raw_start] = ACTIONS(1301), + [sym_raw_string_start] = ACTIONS(1303), }, [1355] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(5160), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2204), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(3519), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3677), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3080), - [sym_postfix_unary_expression] = STATE(3111), - [sym_prefix_unary_expression] = STATE(3111), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6153), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3080), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3111), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3080), - [sym_member_access_expression] = STATE(2484), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3111), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7549), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(3080), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3080), - [sym_typeof_expression] = STATE(3080), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2484), - [sym_literal] = STATE(3080), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2267), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2416), + [sym__name] = STATE(5890), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2193), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(5241), + [sym_non_lvalue_expression] = STATE(3040), + [sym_lvalue_expression] = STATE(3549), + [sym__expression_statement_expression] = STATE(3035), + [sym_assignment_expression] = STATE(3043), + [sym_binary_expression] = STATE(3035), + [sym_postfix_unary_expression] = STATE(3043), + [sym_prefix_unary_expression] = STATE(3043), + [sym__pointer_indirection_expression] = STATE(2415), + [sym_query_expression] = STATE(3035), + [sym_from_clause] = STATE(6131), + [sym_conditional_expression] = STATE(3035), + [sym_conditional_access_expression] = STATE(3035), + [sym_as_expression] = STATE(3035), + [sym_is_expression] = STATE(3035), + [sym_is_pattern_expression] = STATE(3035), + [sym_cast_expression] = STATE(3035), + [sym_checked_expression] = STATE(3035), + [sym_invocation_expression] = STATE(3043), + [sym_switch_expression] = STATE(3035), + [sym_await_expression] = STATE(3043), + [sym_throw_expression] = STATE(3035), + [sym_element_access_expression] = STATE(2415), + [sym_interpolated_string_expression] = STATE(3035), + [sym_member_access_expression] = STATE(2415), + [sym_object_creation_expression] = STATE(3043), + [sym_parenthesized_expression] = STATE(3043), + [sym__parenthesized_lvalue_expression] = STATE(2415), + [sym_lambda_expression] = STATE(3035), + [sym__lambda_expression_init] = STATE(7412), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3035), + [sym_anonymous_method_expression] = STATE(3035), + [sym_anonymous_object_creation_expression] = STATE(3035), + [sym_implicit_array_creation_expression] = STATE(3035), + [sym_implicit_object_creation_expression] = STATE(3035), + [sym_implicit_stackalloc_expression] = STATE(3035), + [sym_initializer_expression] = STATE(3035), + [sym_default_expression] = STATE(3035), + [sym_with_expression] = STATE(3035), + [sym_sizeof_expression] = STATE(3035), + [sym_typeof_expression] = STATE(3035), + [sym_makeref_expression] = STATE(3035), + [sym_ref_expression] = STATE(3035), + [sym_reftype_expression] = STATE(3035), + [sym_refvalue_expression] = STATE(3035), + [sym_stackalloc_expression] = STATE(3035), + [sym_range_expression] = STATE(3035), + [sym_tuple_expression] = STATE(2415), + [sym_literal] = STATE(3035), + [sym_character_literal] = STATE(3037), + [sym_string_literal] = STATE(3037), + [sym_raw_string_literal] = STATE(3037), + [sym_boolean_literal] = STATE(3037), + [sym_identifier] = STATE(2261), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3035), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(1355), [sym_preproc_endregion] = STATE(1355), [sym_preproc_line] = STATE(1355), @@ -270854,47 +270740,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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3455), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1481), - [anon_sym_LPAREN] = ACTIONS(2047), - [anon_sym_ref] = ACTIONS(2049), - [anon_sym_LBRACE] = ACTIONS(1487), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1239), + [anon_sym_LPAREN] = ACTIONS(1949), + [anon_sym_ref] = ACTIONS(1951), + [anon_sym_LBRACE] = ACTIONS(1245), + [anon_sym_delegate] = ACTIONS(1247), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1061), + [anon_sym_new] = ACTIONS(1249), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1067), - [anon_sym_BANG] = ACTIONS(2053), - [anon_sym_TILDE] = ACTIONS(2053), - [anon_sym_PLUS_PLUS] = ACTIONS(2053), - [anon_sym_DASH_DASH] = ACTIONS(2053), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(2051), - [anon_sym_DASH] = ACTIONS(2051), - [anon_sym_STAR] = ACTIONS(2055), - [anon_sym_CARET] = ACTIONS(2053), - [anon_sym_AMP] = ACTIONS(2053), - [anon_sym_this] = ACTIONS(83), + [anon_sym_checked] = ACTIONS(1251), + [anon_sym_BANG] = ACTIONS(1955), + [anon_sym_TILDE] = ACTIONS(1955), + [anon_sym_PLUS_PLUS] = ACTIONS(1955), + [anon_sym_DASH_DASH] = ACTIONS(1955), + [anon_sym_true] = ACTIONS(1257), + [anon_sym_false] = ACTIONS(1257), + [anon_sym_PLUS] = ACTIONS(1953), + [anon_sym_DASH] = ACTIONS(1953), + [anon_sym_STAR] = ACTIONS(1957), + [anon_sym_CARET] = ACTIONS(1955), + [anon_sym_AMP] = ACTIONS(1955), + [anon_sym_this] = ACTIONS(1261), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), + [anon_sym_base] = ACTIONS(1263), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1067), + [sym_predefined_type] = ACTIONS(1265), + [anon_sym_unchecked] = ACTIONS(1251), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(2057), + [anon_sym_default] = ACTIONS(1267), + [anon_sym_throw] = ACTIONS(1959), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2059), - [anon_sym_DOT_DOT] = ACTIONS(2061), + [anon_sym_await] = ACTIONS(1961), + [anon_sym_DOT_DOT] = ACTIONS(1963), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -270907,19 +270793,19 @@ static const uint16_t ts_parse_table[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(1089), + [anon_sym_stackalloc] = ACTIONS(1275), + [anon_sym_sizeof] = ACTIONS(1277), + [anon_sym_typeof] = ACTIONS(1279), + [anon_sym___makeref] = ACTIONS(1281), + [anon_sym___reftype] = ACTIONS(1283), + [anon_sym___refvalue] = ACTIONS(1285), + [sym_null_literal] = ACTIONS(1287), + [anon_sym_SQUOTE] = ACTIONS(1289), + [sym_integer_literal] = ACTIONS(1287), + [sym_real_literal] = ACTIONS(1291), + [anon_sym_DQUOTE] = ACTIONS(1293), + [sym_verbatim_string_literal] = ACTIONS(1291), + [aux_sym_preproc_if_token1] = ACTIONS(1295), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -270930,90 +270816,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(151), - [sym_interpolation_verbatim_start] = ACTIONS(153), - [sym_interpolation_raw_start] = ACTIONS(155), - [sym_raw_string_start] = ACTIONS(157), + [sym_interpolation_regular_start] = ACTIONS(1297), + [sym_interpolation_verbatim_start] = ACTIONS(1299), + [sym_interpolation_raw_start] = ACTIONS(1301), + [sym_raw_string_start] = ACTIONS(1303), }, [1356] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2420), - [sym__name] = STATE(5887), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2197), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(4073), - [sym_non_lvalue_expression] = STATE(3066), - [sym_lvalue_expression] = STATE(3120), - [sym__expression_statement_expression] = STATE(3006), - [sym_assignment_expression] = STATE(3020), - [sym_binary_expression] = STATE(3006), - [sym_postfix_unary_expression] = STATE(3020), - [sym_prefix_unary_expression] = STATE(3020), - [sym__pointer_indirection_expression] = STATE(2423), - [sym_query_expression] = STATE(3006), - [sym_from_clause] = STATE(6152), - [sym_conditional_expression] = STATE(3006), - [sym_conditional_access_expression] = STATE(3006), - [sym_as_expression] = STATE(3006), - [sym_is_expression] = STATE(3006), - [sym_is_pattern_expression] = STATE(3006), - [sym_cast_expression] = STATE(3006), - [sym_checked_expression] = STATE(3006), - [sym_invocation_expression] = STATE(3020), - [sym_switch_expression] = STATE(3006), - [sym_await_expression] = STATE(3020), - [sym_throw_expression] = STATE(3006), - [sym_element_access_expression] = STATE(2423), - [sym_interpolated_string_expression] = STATE(3006), - [sym_member_access_expression] = STATE(2423), - [sym_object_creation_expression] = STATE(3020), - [sym_parenthesized_expression] = STATE(3020), - [sym__parenthesized_lvalue_expression] = STATE(2423), - [sym_lambda_expression] = STATE(3006), - [sym__lambda_expression_init] = STATE(7722), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3006), - [sym_anonymous_method_expression] = STATE(3006), - [sym_anonymous_object_creation_expression] = STATE(3006), - [sym_implicit_array_creation_expression] = STATE(3006), - [sym_implicit_object_creation_expression] = STATE(3006), - [sym_implicit_stackalloc_expression] = STATE(3006), - [sym_initializer_expression] = STATE(3006), - [sym_default_expression] = STATE(3006), - [sym_with_expression] = STATE(3006), - [sym_sizeof_expression] = STATE(3006), - [sym_typeof_expression] = STATE(3006), - [sym_makeref_expression] = STATE(3006), - [sym_ref_expression] = STATE(3006), - [sym_reftype_expression] = STATE(3006), - [sym_refvalue_expression] = STATE(3006), - [sym_stackalloc_expression] = STATE(3006), - [sym_range_expression] = STATE(3006), - [sym_tuple_expression] = STATE(2423), - [sym_literal] = STATE(3006), - [sym_character_literal] = STATE(3011), - [sym_string_literal] = STATE(3011), - [sym_raw_string_literal] = STATE(3011), - [sym_boolean_literal] = STATE(3011), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3006), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2603), + [sym__name] = STATE(5877), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2344), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(4450), + [sym_non_lvalue_expression] = STATE(3220), + [sym_lvalue_expression] = STATE(3281), + [sym__expression_statement_expression] = STATE(3236), + [sym_assignment_expression] = STATE(3221), + [sym_binary_expression] = STATE(3236), + [sym_postfix_unary_expression] = STATE(3221), + [sym_prefix_unary_expression] = STATE(3221), + [sym__pointer_indirection_expression] = STATE(2602), + [sym_query_expression] = STATE(3236), + [sym_from_clause] = STATE(6146), + [sym_conditional_expression] = STATE(3236), + [sym_conditional_access_expression] = STATE(3236), + [sym_as_expression] = STATE(3236), + [sym_is_expression] = STATE(3236), + [sym_is_pattern_expression] = STATE(3236), + [sym_cast_expression] = STATE(3236), + [sym_checked_expression] = STATE(3236), + [sym_invocation_expression] = STATE(3221), + [sym_switch_expression] = STATE(3236), + [sym_await_expression] = STATE(3221), + [sym_throw_expression] = STATE(3236), + [sym_element_access_expression] = STATE(2602), + [sym_interpolated_string_expression] = STATE(3236), + [sym_member_access_expression] = STATE(2602), + [sym_object_creation_expression] = STATE(3221), + [sym_parenthesized_expression] = STATE(3221), + [sym__parenthesized_lvalue_expression] = STATE(2602), + [sym_lambda_expression] = STATE(3236), + [sym__lambda_expression_init] = STATE(7323), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3236), + [sym_anonymous_method_expression] = STATE(3236), + [sym_anonymous_object_creation_expression] = STATE(3236), + [sym_implicit_array_creation_expression] = STATE(3236), + [sym_implicit_object_creation_expression] = STATE(3236), + [sym_implicit_stackalloc_expression] = STATE(3236), + [sym_initializer_expression] = STATE(3236), + [sym_default_expression] = STATE(3236), + [sym_with_expression] = STATE(3236), + [sym_sizeof_expression] = STATE(3236), + [sym_typeof_expression] = STATE(3236), + [sym_makeref_expression] = STATE(3236), + [sym_ref_expression] = STATE(3236), + [sym_reftype_expression] = STATE(3236), + [sym_refvalue_expression] = STATE(3236), + [sym_stackalloc_expression] = STATE(3236), + [sym_range_expression] = STATE(3236), + [sym_tuple_expression] = STATE(2602), + [sym_literal] = STATE(3236), + [sym_character_literal] = STATE(3272), + [sym_string_literal] = STATE(3272), + [sym_raw_string_literal] = STATE(3272), + [sym_boolean_literal] = STATE(3272), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3236), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(1356), [sym_preproc_endregion] = STATE(1356), [sym_preproc_line] = STATE(1356), @@ -271023,47 +270909,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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3440), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3379), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1241), - [anon_sym_LPAREN] = ACTIONS(1243), - [anon_sym_ref] = ACTIONS(1245), - [anon_sym_LBRACE] = ACTIONS(1247), - [anon_sym_delegate] = ACTIONS(1249), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1149), + [anon_sym_LPAREN] = ACTIONS(1531), + [anon_sym_ref] = ACTIONS(1533), + [anon_sym_LBRACE] = ACTIONS(1155), + [anon_sym_delegate] = ACTIONS(1157), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1251), + [anon_sym_new] = ACTIONS(1535), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1253), - [anon_sym_BANG] = ACTIONS(1257), - [anon_sym_TILDE] = ACTIONS(1257), - [anon_sym_PLUS_PLUS] = ACTIONS(1257), - [anon_sym_DASH_DASH] = ACTIONS(1257), - [anon_sym_true] = ACTIONS(1259), - [anon_sym_false] = ACTIONS(1259), - [anon_sym_PLUS] = ACTIONS(1255), - [anon_sym_DASH] = ACTIONS(1255), - [anon_sym_STAR] = ACTIONS(1261), - [anon_sym_CARET] = ACTIONS(1257), - [anon_sym_AMP] = ACTIONS(1257), - [anon_sym_this] = ACTIONS(1263), + [anon_sym_checked] = ACTIONS(1163), + [anon_sym_BANG] = ACTIONS(1539), + [anon_sym_TILDE] = ACTIONS(1539), + [anon_sym_PLUS_PLUS] = ACTIONS(1539), + [anon_sym_DASH_DASH] = ACTIONS(1539), + [anon_sym_true] = ACTIONS(1169), + [anon_sym_false] = ACTIONS(1169), + [anon_sym_PLUS] = ACTIONS(1537), + [anon_sym_DASH] = ACTIONS(1537), + [anon_sym_STAR] = ACTIONS(1541), + [anon_sym_CARET] = ACTIONS(1539), + [anon_sym_AMP] = ACTIONS(1539), + [anon_sym_this] = ACTIONS(1173), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1265), + [anon_sym_base] = ACTIONS(1175), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1267), - [anon_sym_unchecked] = ACTIONS(1253), + [sym_predefined_type] = ACTIONS(1177), + [anon_sym_unchecked] = ACTIONS(1163), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1269), - [anon_sym_throw] = ACTIONS(1271), + [anon_sym_default] = ACTIONS(1179), + [anon_sym_throw] = ACTIONS(1543), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1273), - [anon_sym_DOT_DOT] = ACTIONS(1275), + [anon_sym_await] = ACTIONS(1545), + [anon_sym_DOT_DOT] = ACTIONS(1547), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -271076,19 +270962,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1277), - [anon_sym_sizeof] = ACTIONS(1279), - [anon_sym_typeof] = ACTIONS(1281), - [anon_sym___makeref] = ACTIONS(1283), - [anon_sym___reftype] = ACTIONS(1285), - [anon_sym___refvalue] = ACTIONS(1287), - [sym_null_literal] = ACTIONS(1289), - [anon_sym_SQUOTE] = ACTIONS(1291), - [sym_integer_literal] = ACTIONS(1289), - [sym_real_literal] = ACTIONS(1293), - [anon_sym_DQUOTE] = ACTIONS(1295), - [sym_verbatim_string_literal] = ACTIONS(1293), - [aux_sym_preproc_if_token1] = ACTIONS(1297), + [anon_sym_stackalloc] = ACTIONS(1187), + [anon_sym_sizeof] = ACTIONS(1189), + [anon_sym_typeof] = ACTIONS(1191), + [anon_sym___makeref] = ACTIONS(1193), + [anon_sym___reftype] = ACTIONS(1195), + [anon_sym___refvalue] = ACTIONS(1197), + [sym_null_literal] = ACTIONS(1199), + [anon_sym_SQUOTE] = ACTIONS(1201), + [sym_integer_literal] = ACTIONS(1199), + [sym_real_literal] = ACTIONS(1203), + [anon_sym_DQUOTE] = ACTIONS(1205), + [sym_verbatim_string_literal] = ACTIONS(1203), + [aux_sym_preproc_if_token1] = ACTIONS(1207), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -271099,90 +270985,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1299), - [sym_interpolation_verbatim_start] = ACTIONS(1301), - [sym_interpolation_raw_start] = ACTIONS(1303), - [sym_raw_string_start] = ACTIONS(1305), + [sym_interpolation_regular_start] = ACTIONS(1209), + [sym_interpolation_verbatim_start] = ACTIONS(1211), + [sym_interpolation_raw_start] = ACTIONS(1213), + [sym_raw_string_start] = ACTIONS(1215), }, [1357] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2420), - [sym__name] = STATE(5911), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2197), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(2908), - [sym_non_lvalue_expression] = STATE(3066), - [sym_lvalue_expression] = STATE(3327), - [sym__expression_statement_expression] = STATE(3006), - [sym_assignment_expression] = STATE(3020), - [sym_binary_expression] = STATE(3006), - [sym_postfix_unary_expression] = STATE(3020), - [sym_prefix_unary_expression] = STATE(3020), - [sym__pointer_indirection_expression] = STATE(2423), - [sym_query_expression] = STATE(3006), - [sym_from_clause] = STATE(6159), - [sym_conditional_expression] = STATE(3006), - [sym_conditional_access_expression] = STATE(3006), - [sym_as_expression] = STATE(3006), - [sym_is_expression] = STATE(3006), - [sym_is_pattern_expression] = STATE(3006), - [sym_cast_expression] = STATE(3006), - [sym_checked_expression] = STATE(3006), - [sym_invocation_expression] = STATE(3020), - [sym_switch_expression] = STATE(3006), - [sym_await_expression] = STATE(3020), - [sym_throw_expression] = STATE(3006), - [sym_element_access_expression] = STATE(2423), - [sym_interpolated_string_expression] = STATE(3006), - [sym_member_access_expression] = STATE(2423), - [sym_object_creation_expression] = STATE(3020), - [sym_parenthesized_expression] = STATE(3020), - [sym__parenthesized_lvalue_expression] = STATE(2423), - [sym_lambda_expression] = STATE(3006), - [sym__lambda_expression_init] = STATE(7674), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3006), - [sym_anonymous_method_expression] = STATE(3006), - [sym_anonymous_object_creation_expression] = STATE(3006), - [sym_implicit_array_creation_expression] = STATE(3006), - [sym_implicit_object_creation_expression] = STATE(3006), - [sym_implicit_stackalloc_expression] = STATE(3006), - [sym_initializer_expression] = STATE(3006), - [sym_default_expression] = STATE(3006), - [sym_with_expression] = STATE(3006), - [sym_sizeof_expression] = STATE(3006), - [sym_typeof_expression] = STATE(3006), - [sym_makeref_expression] = STATE(3006), - [sym_ref_expression] = STATE(3006), - [sym_reftype_expression] = STATE(3006), - [sym_refvalue_expression] = STATE(3006), - [sym_stackalloc_expression] = STATE(3006), - [sym_range_expression] = STATE(3006), - [sym_tuple_expression] = STATE(2423), - [sym_literal] = STATE(3006), - [sym_character_literal] = STATE(3011), - [sym_string_literal] = STATE(3011), - [sym_raw_string_literal] = STATE(3011), - [sym_boolean_literal] = STATE(3011), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3006), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2416), + [sym__name] = STATE(5890), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2193), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(5247), + [sym_non_lvalue_expression] = STATE(3040), + [sym_lvalue_expression] = STATE(3549), + [sym__expression_statement_expression] = STATE(3035), + [sym_assignment_expression] = STATE(3043), + [sym_binary_expression] = STATE(3035), + [sym_postfix_unary_expression] = STATE(3043), + [sym_prefix_unary_expression] = STATE(3043), + [sym__pointer_indirection_expression] = STATE(2415), + [sym_query_expression] = STATE(3035), + [sym_from_clause] = STATE(6131), + [sym_conditional_expression] = STATE(3035), + [sym_conditional_access_expression] = STATE(3035), + [sym_as_expression] = STATE(3035), + [sym_is_expression] = STATE(3035), + [sym_is_pattern_expression] = STATE(3035), + [sym_cast_expression] = STATE(3035), + [sym_checked_expression] = STATE(3035), + [sym_invocation_expression] = STATE(3043), + [sym_switch_expression] = STATE(3035), + [sym_await_expression] = STATE(3043), + [sym_throw_expression] = STATE(3035), + [sym_element_access_expression] = STATE(2415), + [sym_interpolated_string_expression] = STATE(3035), + [sym_member_access_expression] = STATE(2415), + [sym_object_creation_expression] = STATE(3043), + [sym_parenthesized_expression] = STATE(3043), + [sym__parenthesized_lvalue_expression] = STATE(2415), + [sym_lambda_expression] = STATE(3035), + [sym__lambda_expression_init] = STATE(7412), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3035), + [sym_anonymous_method_expression] = STATE(3035), + [sym_anonymous_object_creation_expression] = STATE(3035), + [sym_implicit_array_creation_expression] = STATE(3035), + [sym_implicit_object_creation_expression] = STATE(3035), + [sym_implicit_stackalloc_expression] = STATE(3035), + [sym_initializer_expression] = STATE(3035), + [sym_default_expression] = STATE(3035), + [sym_with_expression] = STATE(3035), + [sym_sizeof_expression] = STATE(3035), + [sym_typeof_expression] = STATE(3035), + [sym_makeref_expression] = STATE(3035), + [sym_ref_expression] = STATE(3035), + [sym_reftype_expression] = STATE(3035), + [sym_refvalue_expression] = STATE(3035), + [sym_stackalloc_expression] = STATE(3035), + [sym_range_expression] = STATE(3035), + [sym_tuple_expression] = STATE(2415), + [sym_literal] = STATE(3035), + [sym_character_literal] = STATE(3037), + [sym_string_literal] = STATE(3037), + [sym_raw_string_literal] = STATE(3037), + [sym_boolean_literal] = STATE(3037), + [sym_identifier] = STATE(2261), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3035), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(1357), [sym_preproc_endregion] = STATE(1357), [sym_preproc_line] = STATE(1357), @@ -271192,47 +271078,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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3440), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3455), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1241), - [anon_sym_LPAREN] = ACTIONS(1509), - [anon_sym_ref] = ACTIONS(1511), - [anon_sym_LBRACE] = ACTIONS(1247), - [anon_sym_delegate] = ACTIONS(1249), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1239), + [anon_sym_LPAREN] = ACTIONS(1949), + [anon_sym_ref] = ACTIONS(1951), + [anon_sym_LBRACE] = ACTIONS(1245), + [anon_sym_delegate] = ACTIONS(1247), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1251), + [anon_sym_new] = ACTIONS(1249), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1253), - [anon_sym_BANG] = ACTIONS(1515), - [anon_sym_TILDE] = ACTIONS(1515), - [anon_sym_PLUS_PLUS] = ACTIONS(1515), - [anon_sym_DASH_DASH] = ACTIONS(1515), - [anon_sym_true] = ACTIONS(1259), - [anon_sym_false] = ACTIONS(1259), - [anon_sym_PLUS] = ACTIONS(1513), - [anon_sym_DASH] = ACTIONS(1513), - [anon_sym_STAR] = ACTIONS(1517), - [anon_sym_CARET] = ACTIONS(1515), - [anon_sym_AMP] = ACTIONS(1515), - [anon_sym_this] = ACTIONS(1263), + [anon_sym_checked] = ACTIONS(1251), + [anon_sym_BANG] = ACTIONS(1955), + [anon_sym_TILDE] = ACTIONS(1955), + [anon_sym_PLUS_PLUS] = ACTIONS(1955), + [anon_sym_DASH_DASH] = ACTIONS(1955), + [anon_sym_true] = ACTIONS(1257), + [anon_sym_false] = ACTIONS(1257), + [anon_sym_PLUS] = ACTIONS(1953), + [anon_sym_DASH] = ACTIONS(1953), + [anon_sym_STAR] = ACTIONS(1957), + [anon_sym_CARET] = ACTIONS(1955), + [anon_sym_AMP] = ACTIONS(1955), + [anon_sym_this] = ACTIONS(1261), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1265), + [anon_sym_base] = ACTIONS(1263), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1267), - [anon_sym_unchecked] = ACTIONS(1253), + [sym_predefined_type] = ACTIONS(1265), + [anon_sym_unchecked] = ACTIONS(1251), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1269), - [anon_sym_throw] = ACTIONS(1519), + [anon_sym_default] = ACTIONS(1267), + [anon_sym_throw] = ACTIONS(1959), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1521), - [anon_sym_DOT_DOT] = ACTIONS(1523), + [anon_sym_await] = ACTIONS(1961), + [anon_sym_DOT_DOT] = ACTIONS(1963), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -271245,19 +271131,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1277), - [anon_sym_sizeof] = ACTIONS(1279), - [anon_sym_typeof] = ACTIONS(1281), - [anon_sym___makeref] = ACTIONS(1283), - [anon_sym___reftype] = ACTIONS(1285), - [anon_sym___refvalue] = ACTIONS(1287), - [sym_null_literal] = ACTIONS(1289), - [anon_sym_SQUOTE] = ACTIONS(1291), - [sym_integer_literal] = ACTIONS(1289), - [sym_real_literal] = ACTIONS(1293), - [anon_sym_DQUOTE] = ACTIONS(1295), - [sym_verbatim_string_literal] = ACTIONS(1293), - [aux_sym_preproc_if_token1] = ACTIONS(1297), + [anon_sym_stackalloc] = ACTIONS(1275), + [anon_sym_sizeof] = ACTIONS(1277), + [anon_sym_typeof] = ACTIONS(1279), + [anon_sym___makeref] = ACTIONS(1281), + [anon_sym___reftype] = ACTIONS(1283), + [anon_sym___refvalue] = ACTIONS(1285), + [sym_null_literal] = ACTIONS(1287), + [anon_sym_SQUOTE] = ACTIONS(1289), + [sym_integer_literal] = ACTIONS(1287), + [sym_real_literal] = ACTIONS(1291), + [anon_sym_DQUOTE] = ACTIONS(1293), + [sym_verbatim_string_literal] = ACTIONS(1291), + [aux_sym_preproc_if_token1] = ACTIONS(1295), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -271268,90 +271154,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1299), - [sym_interpolation_verbatim_start] = ACTIONS(1301), - [sym_interpolation_raw_start] = ACTIONS(1303), - [sym_raw_string_start] = ACTIONS(1305), + [sym_interpolation_regular_start] = ACTIONS(1297), + [sym_interpolation_verbatim_start] = ACTIONS(1299), + [sym_interpolation_raw_start] = ACTIONS(1301), + [sym_raw_string_start] = ACTIONS(1303), }, [1358] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(5160), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2204), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(5502), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3677), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3080), - [sym_postfix_unary_expression] = STATE(3111), - [sym_prefix_unary_expression] = STATE(3111), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6153), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3080), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3111), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3080), - [sym_member_access_expression] = STATE(2484), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3111), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7549), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(3080), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3080), - [sym_typeof_expression] = STATE(3080), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2484), - [sym_literal] = STATE(3080), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2267), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2416), + [sym__name] = STATE(5890), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2193), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(5251), + [sym_non_lvalue_expression] = STATE(3040), + [sym_lvalue_expression] = STATE(3549), + [sym__expression_statement_expression] = STATE(3035), + [sym_assignment_expression] = STATE(3043), + [sym_binary_expression] = STATE(3035), + [sym_postfix_unary_expression] = STATE(3043), + [sym_prefix_unary_expression] = STATE(3043), + [sym__pointer_indirection_expression] = STATE(2415), + [sym_query_expression] = STATE(3035), + [sym_from_clause] = STATE(6131), + [sym_conditional_expression] = STATE(3035), + [sym_conditional_access_expression] = STATE(3035), + [sym_as_expression] = STATE(3035), + [sym_is_expression] = STATE(3035), + [sym_is_pattern_expression] = STATE(3035), + [sym_cast_expression] = STATE(3035), + [sym_checked_expression] = STATE(3035), + [sym_invocation_expression] = STATE(3043), + [sym_switch_expression] = STATE(3035), + [sym_await_expression] = STATE(3043), + [sym_throw_expression] = STATE(3035), + [sym_element_access_expression] = STATE(2415), + [sym_interpolated_string_expression] = STATE(3035), + [sym_member_access_expression] = STATE(2415), + [sym_object_creation_expression] = STATE(3043), + [sym_parenthesized_expression] = STATE(3043), + [sym__parenthesized_lvalue_expression] = STATE(2415), + [sym_lambda_expression] = STATE(3035), + [sym__lambda_expression_init] = STATE(7412), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3035), + [sym_anonymous_method_expression] = STATE(3035), + [sym_anonymous_object_creation_expression] = STATE(3035), + [sym_implicit_array_creation_expression] = STATE(3035), + [sym_implicit_object_creation_expression] = STATE(3035), + [sym_implicit_stackalloc_expression] = STATE(3035), + [sym_initializer_expression] = STATE(3035), + [sym_default_expression] = STATE(3035), + [sym_with_expression] = STATE(3035), + [sym_sizeof_expression] = STATE(3035), + [sym_typeof_expression] = STATE(3035), + [sym_makeref_expression] = STATE(3035), + [sym_ref_expression] = STATE(3035), + [sym_reftype_expression] = STATE(3035), + [sym_refvalue_expression] = STATE(3035), + [sym_stackalloc_expression] = STATE(3035), + [sym_range_expression] = STATE(3035), + [sym_tuple_expression] = STATE(2415), + [sym_literal] = STATE(3035), + [sym_character_literal] = STATE(3037), + [sym_string_literal] = STATE(3037), + [sym_raw_string_literal] = STATE(3037), + [sym_boolean_literal] = STATE(3037), + [sym_identifier] = STATE(2261), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3035), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(1358), [sym_preproc_endregion] = STATE(1358), [sym_preproc_line] = STATE(1358), @@ -271361,47 +271247,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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3455), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1481), - [anon_sym_LPAREN] = ACTIONS(2047), - [anon_sym_ref] = ACTIONS(2049), - [anon_sym_LBRACE] = ACTIONS(1487), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1239), + [anon_sym_LPAREN] = ACTIONS(1949), + [anon_sym_ref] = ACTIONS(1951), + [anon_sym_LBRACE] = ACTIONS(1245), + [anon_sym_delegate] = ACTIONS(1247), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1061), + [anon_sym_new] = ACTIONS(1249), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1067), - [anon_sym_BANG] = ACTIONS(2053), - [anon_sym_TILDE] = ACTIONS(2053), - [anon_sym_PLUS_PLUS] = ACTIONS(2053), - [anon_sym_DASH_DASH] = ACTIONS(2053), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(2051), - [anon_sym_DASH] = ACTIONS(2051), - [anon_sym_STAR] = ACTIONS(2055), - [anon_sym_CARET] = ACTIONS(2053), - [anon_sym_AMP] = ACTIONS(2053), - [anon_sym_this] = ACTIONS(83), + [anon_sym_checked] = ACTIONS(1251), + [anon_sym_BANG] = ACTIONS(1955), + [anon_sym_TILDE] = ACTIONS(1955), + [anon_sym_PLUS_PLUS] = ACTIONS(1955), + [anon_sym_DASH_DASH] = ACTIONS(1955), + [anon_sym_true] = ACTIONS(1257), + [anon_sym_false] = ACTIONS(1257), + [anon_sym_PLUS] = ACTIONS(1953), + [anon_sym_DASH] = ACTIONS(1953), + [anon_sym_STAR] = ACTIONS(1957), + [anon_sym_CARET] = ACTIONS(1955), + [anon_sym_AMP] = ACTIONS(1955), + [anon_sym_this] = ACTIONS(1261), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), + [anon_sym_base] = ACTIONS(1263), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1067), + [sym_predefined_type] = ACTIONS(1265), + [anon_sym_unchecked] = ACTIONS(1251), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(2057), + [anon_sym_default] = ACTIONS(1267), + [anon_sym_throw] = ACTIONS(1959), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2059), - [anon_sym_DOT_DOT] = ACTIONS(2061), + [anon_sym_await] = ACTIONS(1961), + [anon_sym_DOT_DOT] = ACTIONS(1963), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -271414,19 +271300,19 @@ static const uint16_t ts_parse_table[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(1089), + [anon_sym_stackalloc] = ACTIONS(1275), + [anon_sym_sizeof] = ACTIONS(1277), + [anon_sym_typeof] = ACTIONS(1279), + [anon_sym___makeref] = ACTIONS(1281), + [anon_sym___reftype] = ACTIONS(1283), + [anon_sym___refvalue] = ACTIONS(1285), + [sym_null_literal] = ACTIONS(1287), + [anon_sym_SQUOTE] = ACTIONS(1289), + [sym_integer_literal] = ACTIONS(1287), + [sym_real_literal] = ACTIONS(1291), + [anon_sym_DQUOTE] = ACTIONS(1293), + [sym_verbatim_string_literal] = ACTIONS(1291), + [aux_sym_preproc_if_token1] = ACTIONS(1295), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -271437,90 +271323,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(151), - [sym_interpolation_verbatim_start] = ACTIONS(153), - [sym_interpolation_raw_start] = ACTIONS(155), - [sym_raw_string_start] = ACTIONS(157), + [sym_interpolation_regular_start] = ACTIONS(1297), + [sym_interpolation_verbatim_start] = ACTIONS(1299), + [sym_interpolation_raw_start] = ACTIONS(1301), + [sym_raw_string_start] = ACTIONS(1303), }, [1359] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2420), - [sym__name] = STATE(5897), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2397), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(5246), - [sym_non_lvalue_expression] = STATE(3066), - [sym_lvalue_expression] = STATE(3632), - [sym__expression_statement_expression] = STATE(3006), - [sym_assignment_expression] = STATE(3020), - [sym_binary_expression] = STATE(3006), - [sym_postfix_unary_expression] = STATE(3020), - [sym_prefix_unary_expression] = STATE(3020), - [sym__pointer_indirection_expression] = STATE(2423), - [sym_query_expression] = STATE(3006), - [sym_from_clause] = STATE(6184), - [sym_conditional_expression] = STATE(3006), - [sym_conditional_access_expression] = STATE(3006), - [sym_as_expression] = STATE(3006), - [sym_is_expression] = STATE(3006), - [sym_is_pattern_expression] = STATE(3006), - [sym_cast_expression] = STATE(3006), - [sym_checked_expression] = STATE(3006), - [sym_invocation_expression] = STATE(3020), - [sym_switch_expression] = STATE(3006), - [sym_await_expression] = STATE(3020), - [sym_throw_expression] = STATE(3006), - [sym_element_access_expression] = STATE(2423), - [sym_interpolated_string_expression] = STATE(3006), - [sym_member_access_expression] = STATE(2423), - [sym_object_creation_expression] = STATE(3020), - [sym_parenthesized_expression] = STATE(3020), - [sym__parenthesized_lvalue_expression] = STATE(2423), - [sym_lambda_expression] = STATE(3006), - [sym__lambda_expression_init] = STATE(7393), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3006), - [sym_anonymous_method_expression] = STATE(3006), - [sym_anonymous_object_creation_expression] = STATE(3006), - [sym_implicit_array_creation_expression] = STATE(3006), - [sym_implicit_object_creation_expression] = STATE(3006), - [sym_implicit_stackalloc_expression] = STATE(3006), - [sym_initializer_expression] = STATE(3006), - [sym_default_expression] = STATE(3006), - [sym_with_expression] = STATE(3006), - [sym_sizeof_expression] = STATE(3006), - [sym_typeof_expression] = STATE(3006), - [sym_makeref_expression] = STATE(3006), - [sym_ref_expression] = STATE(3006), - [sym_reftype_expression] = STATE(3006), - [sym_refvalue_expression] = STATE(3006), - [sym_stackalloc_expression] = STATE(3006), - [sym_range_expression] = STATE(3006), - [sym_tuple_expression] = STATE(2423), - [sym_literal] = STATE(3006), - [sym_character_literal] = STATE(3011), - [sym_string_literal] = STATE(3011), - [sym_raw_string_literal] = STATE(3011), - [sym_boolean_literal] = STATE(3011), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3006), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2416), + [sym__name] = STATE(5890), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2193), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(5253), + [sym_non_lvalue_expression] = STATE(3040), + [sym_lvalue_expression] = STATE(3549), + [sym__expression_statement_expression] = STATE(3035), + [sym_assignment_expression] = STATE(3043), + [sym_binary_expression] = STATE(3035), + [sym_postfix_unary_expression] = STATE(3043), + [sym_prefix_unary_expression] = STATE(3043), + [sym__pointer_indirection_expression] = STATE(2415), + [sym_query_expression] = STATE(3035), + [sym_from_clause] = STATE(6131), + [sym_conditional_expression] = STATE(3035), + [sym_conditional_access_expression] = STATE(3035), + [sym_as_expression] = STATE(3035), + [sym_is_expression] = STATE(3035), + [sym_is_pattern_expression] = STATE(3035), + [sym_cast_expression] = STATE(3035), + [sym_checked_expression] = STATE(3035), + [sym_invocation_expression] = STATE(3043), + [sym_switch_expression] = STATE(3035), + [sym_await_expression] = STATE(3043), + [sym_throw_expression] = STATE(3035), + [sym_element_access_expression] = STATE(2415), + [sym_interpolated_string_expression] = STATE(3035), + [sym_member_access_expression] = STATE(2415), + [sym_object_creation_expression] = STATE(3043), + [sym_parenthesized_expression] = STATE(3043), + [sym__parenthesized_lvalue_expression] = STATE(2415), + [sym_lambda_expression] = STATE(3035), + [sym__lambda_expression_init] = STATE(7412), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3035), + [sym_anonymous_method_expression] = STATE(3035), + [sym_anonymous_object_creation_expression] = STATE(3035), + [sym_implicit_array_creation_expression] = STATE(3035), + [sym_implicit_object_creation_expression] = STATE(3035), + [sym_implicit_stackalloc_expression] = STATE(3035), + [sym_initializer_expression] = STATE(3035), + [sym_default_expression] = STATE(3035), + [sym_with_expression] = STATE(3035), + [sym_sizeof_expression] = STATE(3035), + [sym_typeof_expression] = STATE(3035), + [sym_makeref_expression] = STATE(3035), + [sym_ref_expression] = STATE(3035), + [sym_reftype_expression] = STATE(3035), + [sym_refvalue_expression] = STATE(3035), + [sym_stackalloc_expression] = STATE(3035), + [sym_range_expression] = STATE(3035), + [sym_tuple_expression] = STATE(2415), + [sym_literal] = STATE(3035), + [sym_character_literal] = STATE(3037), + [sym_string_literal] = STATE(3037), + [sym_raw_string_literal] = STATE(3037), + [sym_boolean_literal] = STATE(3037), + [sym_identifier] = STATE(2261), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3035), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(1359), [sym_preproc_endregion] = STATE(1359), [sym_preproc_line] = STATE(1359), @@ -271530,47 +271416,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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3440), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3455), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1241), - [anon_sym_LPAREN] = ACTIONS(2213), - [anon_sym_ref] = ACTIONS(2215), - [anon_sym_LBRACE] = ACTIONS(1247), - [anon_sym_delegate] = ACTIONS(1249), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1239), + [anon_sym_LPAREN] = ACTIONS(1949), + [anon_sym_ref] = ACTIONS(1951), + [anon_sym_LBRACE] = ACTIONS(1245), + [anon_sym_delegate] = ACTIONS(1247), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(2217), + [anon_sym_new] = ACTIONS(1249), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1253), - [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(1259), - [anon_sym_false] = ACTIONS(1259), - [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(1263), + [anon_sym_checked] = ACTIONS(1251), + [anon_sym_BANG] = ACTIONS(1955), + [anon_sym_TILDE] = ACTIONS(1955), + [anon_sym_PLUS_PLUS] = ACTIONS(1955), + [anon_sym_DASH_DASH] = ACTIONS(1955), + [anon_sym_true] = ACTIONS(1257), + [anon_sym_false] = ACTIONS(1257), + [anon_sym_PLUS] = ACTIONS(1953), + [anon_sym_DASH] = ACTIONS(1953), + [anon_sym_STAR] = ACTIONS(1957), + [anon_sym_CARET] = ACTIONS(1955), + [anon_sym_AMP] = ACTIONS(1955), + [anon_sym_this] = ACTIONS(1261), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1265), + [anon_sym_base] = ACTIONS(1263), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1267), - [anon_sym_unchecked] = ACTIONS(1253), + [sym_predefined_type] = ACTIONS(1265), + [anon_sym_unchecked] = ACTIONS(1251), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1269), - [anon_sym_throw] = ACTIONS(2225), + [anon_sym_default] = ACTIONS(1267), + [anon_sym_throw] = ACTIONS(1959), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2227), - [anon_sym_DOT_DOT] = ACTIONS(2229), + [anon_sym_await] = ACTIONS(1961), + [anon_sym_DOT_DOT] = ACTIONS(1963), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -271583,19 +271469,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1277), - [anon_sym_sizeof] = ACTIONS(1279), - [anon_sym_typeof] = ACTIONS(1281), - [anon_sym___makeref] = ACTIONS(1283), - [anon_sym___reftype] = ACTIONS(1285), - [anon_sym___refvalue] = ACTIONS(1287), - [sym_null_literal] = ACTIONS(1289), - [anon_sym_SQUOTE] = ACTIONS(1291), - [sym_integer_literal] = ACTIONS(1289), - [sym_real_literal] = ACTIONS(1293), - [anon_sym_DQUOTE] = ACTIONS(1295), - [sym_verbatim_string_literal] = ACTIONS(1293), - [aux_sym_preproc_if_token1] = ACTIONS(1297), + [anon_sym_stackalloc] = ACTIONS(1275), + [anon_sym_sizeof] = ACTIONS(1277), + [anon_sym_typeof] = ACTIONS(1279), + [anon_sym___makeref] = ACTIONS(1281), + [anon_sym___reftype] = ACTIONS(1283), + [anon_sym___refvalue] = ACTIONS(1285), + [sym_null_literal] = ACTIONS(1287), + [anon_sym_SQUOTE] = ACTIONS(1289), + [sym_integer_literal] = ACTIONS(1287), + [sym_real_literal] = ACTIONS(1291), + [anon_sym_DQUOTE] = ACTIONS(1293), + [sym_verbatim_string_literal] = ACTIONS(1291), + [aux_sym_preproc_if_token1] = ACTIONS(1295), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -271606,90 +271492,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1299), - [sym_interpolation_verbatim_start] = ACTIONS(1301), - [sym_interpolation_raw_start] = ACTIONS(1303), - [sym_raw_string_start] = ACTIONS(1305), + [sym_interpolation_regular_start] = ACTIONS(1297), + [sym_interpolation_verbatim_start] = ACTIONS(1299), + [sym_interpolation_raw_start] = ACTIONS(1301), + [sym_raw_string_start] = ACTIONS(1303), }, [1360] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2762), - [sym__name] = STATE(5910), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2204), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(4276), - [sym_non_lvalue_expression] = STATE(3438), - [sym_lvalue_expression] = STATE(3162), - [sym__expression_statement_expression] = STATE(3362), - [sym_assignment_expression] = STATE(3449), - [sym_binary_expression] = STATE(3362), - [sym_postfix_unary_expression] = STATE(3449), - [sym_prefix_unary_expression] = STATE(3449), - [sym__pointer_indirection_expression] = STATE(2747), - [sym_query_expression] = STATE(3362), - [sym_from_clause] = STATE(6171), - [sym_conditional_expression] = STATE(3362), - [sym_conditional_access_expression] = STATE(3362), - [sym_as_expression] = STATE(3362), - [sym_is_expression] = STATE(3362), - [sym_is_pattern_expression] = STATE(3362), - [sym_cast_expression] = STATE(3362), - [sym_checked_expression] = STATE(3362), - [sym_invocation_expression] = STATE(3449), - [sym_switch_expression] = STATE(3362), - [sym_await_expression] = STATE(3449), - [sym_throw_expression] = STATE(3362), - [sym_element_access_expression] = STATE(2747), - [sym_interpolated_string_expression] = STATE(3362), - [sym_member_access_expression] = STATE(2747), - [sym_object_creation_expression] = STATE(3449), - [sym_parenthesized_expression] = STATE(3449), - [sym__parenthesized_lvalue_expression] = STATE(2747), - [sym_lambda_expression] = STATE(3362), - [sym__lambda_expression_init] = STATE(7320), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3362), - [sym_anonymous_method_expression] = STATE(3362), - [sym_anonymous_object_creation_expression] = STATE(3362), - [sym_implicit_array_creation_expression] = STATE(3362), - [sym_implicit_object_creation_expression] = STATE(3362), - [sym_implicit_stackalloc_expression] = STATE(3362), - [sym_initializer_expression] = STATE(3362), - [sym_default_expression] = STATE(3362), - [sym_with_expression] = STATE(3362), - [sym_sizeof_expression] = STATE(3362), - [sym_typeof_expression] = STATE(3362), - [sym_makeref_expression] = STATE(3362), - [sym_ref_expression] = STATE(3362), - [sym_reftype_expression] = STATE(3362), - [sym_refvalue_expression] = STATE(3362), - [sym_stackalloc_expression] = STATE(3362), - [sym_range_expression] = STATE(3362), - [sym_tuple_expression] = STATE(2747), - [sym_literal] = STATE(3362), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3362), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2416), + [sym__name] = STATE(5890), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2193), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(5254), + [sym_non_lvalue_expression] = STATE(3040), + [sym_lvalue_expression] = STATE(3549), + [sym__expression_statement_expression] = STATE(3035), + [sym_assignment_expression] = STATE(3043), + [sym_binary_expression] = STATE(3035), + [sym_postfix_unary_expression] = STATE(3043), + [sym_prefix_unary_expression] = STATE(3043), + [sym__pointer_indirection_expression] = STATE(2415), + [sym_query_expression] = STATE(3035), + [sym_from_clause] = STATE(6131), + [sym_conditional_expression] = STATE(3035), + [sym_conditional_access_expression] = STATE(3035), + [sym_as_expression] = STATE(3035), + [sym_is_expression] = STATE(3035), + [sym_is_pattern_expression] = STATE(3035), + [sym_cast_expression] = STATE(3035), + [sym_checked_expression] = STATE(3035), + [sym_invocation_expression] = STATE(3043), + [sym_switch_expression] = STATE(3035), + [sym_await_expression] = STATE(3043), + [sym_throw_expression] = STATE(3035), + [sym_element_access_expression] = STATE(2415), + [sym_interpolated_string_expression] = STATE(3035), + [sym_member_access_expression] = STATE(2415), + [sym_object_creation_expression] = STATE(3043), + [sym_parenthesized_expression] = STATE(3043), + [sym__parenthesized_lvalue_expression] = STATE(2415), + [sym_lambda_expression] = STATE(3035), + [sym__lambda_expression_init] = STATE(7412), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3035), + [sym_anonymous_method_expression] = STATE(3035), + [sym_anonymous_object_creation_expression] = STATE(3035), + [sym_implicit_array_creation_expression] = STATE(3035), + [sym_implicit_object_creation_expression] = STATE(3035), + [sym_implicit_stackalloc_expression] = STATE(3035), + [sym_initializer_expression] = STATE(3035), + [sym_default_expression] = STATE(3035), + [sym_with_expression] = STATE(3035), + [sym_sizeof_expression] = STATE(3035), + [sym_typeof_expression] = STATE(3035), + [sym_makeref_expression] = STATE(3035), + [sym_ref_expression] = STATE(3035), + [sym_reftype_expression] = STATE(3035), + [sym_refvalue_expression] = STATE(3035), + [sym_stackalloc_expression] = STATE(3035), + [sym_range_expression] = STATE(3035), + [sym_tuple_expression] = STATE(2415), + [sym_literal] = STATE(3035), + [sym_character_literal] = STATE(3037), + [sym_string_literal] = STATE(3037), + [sym_raw_string_literal] = STATE(3037), + [sym_boolean_literal] = STATE(3037), + [sym_identifier] = STATE(2261), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3035), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(1360), [sym_preproc_endregion] = STATE(1360), [sym_preproc_line] = STATE(1360), @@ -271699,47 +271585,47 @@ 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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3385), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3455), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1307), - [anon_sym_LPAREN] = ACTIONS(1343), - [anon_sym_ref] = ACTIONS(1345), - [anon_sym_LBRACE] = ACTIONS(1313), - [anon_sym_delegate] = ACTIONS(1315), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1239), + [anon_sym_LPAREN] = ACTIONS(1949), + [anon_sym_ref] = ACTIONS(1951), + [anon_sym_LBRACE] = ACTIONS(1245), + [anon_sym_delegate] = ACTIONS(1247), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1317), + [anon_sym_new] = ACTIONS(1249), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1319), - [anon_sym_BANG] = ACTIONS(1349), - [anon_sym_TILDE] = ACTIONS(1349), - [anon_sym_PLUS_PLUS] = ACTIONS(1349), - [anon_sym_DASH_DASH] = ACTIONS(1349), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1347), - [anon_sym_DASH] = ACTIONS(1347), - [anon_sym_STAR] = ACTIONS(1351), - [anon_sym_CARET] = ACTIONS(1349), - [anon_sym_AMP] = ACTIONS(1349), - [anon_sym_this] = ACTIONS(1323), + [anon_sym_checked] = ACTIONS(1251), + [anon_sym_BANG] = ACTIONS(1955), + [anon_sym_TILDE] = ACTIONS(1955), + [anon_sym_PLUS_PLUS] = ACTIONS(1955), + [anon_sym_DASH_DASH] = ACTIONS(1955), + [anon_sym_true] = ACTIONS(1257), + [anon_sym_false] = ACTIONS(1257), + [anon_sym_PLUS] = ACTIONS(1953), + [anon_sym_DASH] = ACTIONS(1953), + [anon_sym_STAR] = ACTIONS(1957), + [anon_sym_CARET] = ACTIONS(1955), + [anon_sym_AMP] = ACTIONS(1955), + [anon_sym_this] = ACTIONS(1261), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1325), + [anon_sym_base] = ACTIONS(1263), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1319), + [sym_predefined_type] = ACTIONS(1265), + [anon_sym_unchecked] = ACTIONS(1251), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1353), + [anon_sym_default] = ACTIONS(1267), + [anon_sym_throw] = ACTIONS(1959), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1355), - [anon_sym_DOT_DOT] = ACTIONS(1357), + [anon_sym_await] = ACTIONS(1961), + [anon_sym_DOT_DOT] = ACTIONS(1963), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -271752,19 +271638,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1333), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(1335), - [anon_sym___reftype] = ACTIONS(1337), - [anon_sym___refvalue] = ACTIONS(1339), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1341), + [anon_sym_stackalloc] = ACTIONS(1275), + [anon_sym_sizeof] = ACTIONS(1277), + [anon_sym_typeof] = ACTIONS(1279), + [anon_sym___makeref] = ACTIONS(1281), + [anon_sym___reftype] = ACTIONS(1283), + [anon_sym___refvalue] = ACTIONS(1285), + [sym_null_literal] = ACTIONS(1287), + [anon_sym_SQUOTE] = ACTIONS(1289), + [sym_integer_literal] = ACTIONS(1287), + [sym_real_literal] = ACTIONS(1291), + [anon_sym_DQUOTE] = ACTIONS(1293), + [sym_verbatim_string_literal] = ACTIONS(1291), + [aux_sym_preproc_if_token1] = ACTIONS(1295), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -271775,90 +271661,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(151), - [sym_interpolation_verbatim_start] = ACTIONS(153), - [sym_interpolation_raw_start] = ACTIONS(155), - [sym_raw_string_start] = ACTIONS(157), + [sym_interpolation_regular_start] = ACTIONS(1297), + [sym_interpolation_verbatim_start] = ACTIONS(1299), + [sym_interpolation_raw_start] = ACTIONS(1301), + [sym_raw_string_start] = ACTIONS(1303), }, [1361] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2762), - [sym__name] = STATE(5910), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2204), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(4872), - [sym_non_lvalue_expression] = STATE(3438), - [sym_lvalue_expression] = STATE(3535), - [sym__expression_statement_expression] = STATE(3362), - [sym_assignment_expression] = STATE(3449), - [sym_binary_expression] = STATE(3362), - [sym_postfix_unary_expression] = STATE(3449), - [sym_prefix_unary_expression] = STATE(3449), - [sym__pointer_indirection_expression] = STATE(2747), - [sym_query_expression] = STATE(3362), - [sym_from_clause] = STATE(6178), - [sym_conditional_expression] = STATE(3362), - [sym_conditional_access_expression] = STATE(3362), - [sym_as_expression] = STATE(3362), - [sym_is_expression] = STATE(3362), - [sym_is_pattern_expression] = STATE(3362), - [sym_cast_expression] = STATE(3362), - [sym_checked_expression] = STATE(3362), - [sym_invocation_expression] = STATE(3449), - [sym_switch_expression] = STATE(3362), - [sym_await_expression] = STATE(3449), - [sym_throw_expression] = STATE(3362), - [sym_element_access_expression] = STATE(2747), - [sym_interpolated_string_expression] = STATE(3362), - [sym_member_access_expression] = STATE(2747), - [sym_object_creation_expression] = STATE(3449), - [sym_parenthesized_expression] = STATE(3449), - [sym__parenthesized_lvalue_expression] = STATE(2747), - [sym_lambda_expression] = STATE(3362), - [sym__lambda_expression_init] = STATE(7384), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3362), - [sym_anonymous_method_expression] = STATE(3362), - [sym_anonymous_object_creation_expression] = STATE(3362), - [sym_implicit_array_creation_expression] = STATE(3362), - [sym_implicit_object_creation_expression] = STATE(3362), - [sym_implicit_stackalloc_expression] = STATE(3362), - [sym_initializer_expression] = STATE(3362), - [sym_default_expression] = STATE(3362), - [sym_with_expression] = STATE(3362), - [sym_sizeof_expression] = STATE(3362), - [sym_typeof_expression] = STATE(3362), - [sym_makeref_expression] = STATE(3362), - [sym_ref_expression] = STATE(3362), - [sym_reftype_expression] = STATE(3362), - [sym_refvalue_expression] = STATE(3362), - [sym_stackalloc_expression] = STATE(3362), - [sym_range_expression] = STATE(3362), - [sym_tuple_expression] = STATE(2747), - [sym_literal] = STATE(3362), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2267), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3362), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2416), + [sym__name] = STATE(5890), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2193), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(5224), + [sym_non_lvalue_expression] = STATE(3040), + [sym_lvalue_expression] = STATE(3549), + [sym__expression_statement_expression] = STATE(3035), + [sym_assignment_expression] = STATE(3043), + [sym_binary_expression] = STATE(3035), + [sym_postfix_unary_expression] = STATE(3043), + [sym_prefix_unary_expression] = STATE(3043), + [sym__pointer_indirection_expression] = STATE(2415), + [sym_query_expression] = STATE(3035), + [sym_from_clause] = STATE(6131), + [sym_conditional_expression] = STATE(3035), + [sym_conditional_access_expression] = STATE(3035), + [sym_as_expression] = STATE(3035), + [sym_is_expression] = STATE(3035), + [sym_is_pattern_expression] = STATE(3035), + [sym_cast_expression] = STATE(3035), + [sym_checked_expression] = STATE(3035), + [sym_invocation_expression] = STATE(3043), + [sym_switch_expression] = STATE(3035), + [sym_await_expression] = STATE(3043), + [sym_throw_expression] = STATE(3035), + [sym_element_access_expression] = STATE(2415), + [sym_interpolated_string_expression] = STATE(3035), + [sym_member_access_expression] = STATE(2415), + [sym_object_creation_expression] = STATE(3043), + [sym_parenthesized_expression] = STATE(3043), + [sym__parenthesized_lvalue_expression] = STATE(2415), + [sym_lambda_expression] = STATE(3035), + [sym__lambda_expression_init] = STATE(7412), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3035), + [sym_anonymous_method_expression] = STATE(3035), + [sym_anonymous_object_creation_expression] = STATE(3035), + [sym_implicit_array_creation_expression] = STATE(3035), + [sym_implicit_object_creation_expression] = STATE(3035), + [sym_implicit_stackalloc_expression] = STATE(3035), + [sym_initializer_expression] = STATE(3035), + [sym_default_expression] = STATE(3035), + [sym_with_expression] = STATE(3035), + [sym_sizeof_expression] = STATE(3035), + [sym_typeof_expression] = STATE(3035), + [sym_makeref_expression] = STATE(3035), + [sym_ref_expression] = STATE(3035), + [sym_reftype_expression] = STATE(3035), + [sym_refvalue_expression] = STATE(3035), + [sym_stackalloc_expression] = STATE(3035), + [sym_range_expression] = STATE(3035), + [sym_tuple_expression] = STATE(2415), + [sym_literal] = STATE(3035), + [sym_character_literal] = STATE(3037), + [sym_string_literal] = STATE(3037), + [sym_raw_string_literal] = STATE(3037), + [sym_boolean_literal] = STATE(3037), + [sym_identifier] = STATE(2261), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3035), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(1361), [sym_preproc_endregion] = STATE(1361), [sym_preproc_line] = STATE(1361), @@ -271868,47 +271754,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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3385), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3455), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1307), - [anon_sym_LPAREN] = ACTIONS(1543), - [anon_sym_ref] = ACTIONS(1545), - [anon_sym_LBRACE] = ACTIONS(1313), - [anon_sym_delegate] = ACTIONS(1315), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1239), + [anon_sym_LPAREN] = ACTIONS(1949), + [anon_sym_ref] = ACTIONS(1951), + [anon_sym_LBRACE] = ACTIONS(1245), + [anon_sym_delegate] = ACTIONS(1247), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1317), + [anon_sym_new] = ACTIONS(1249), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1319), - [anon_sym_BANG] = ACTIONS(1549), - [anon_sym_TILDE] = ACTIONS(1549), - [anon_sym_PLUS_PLUS] = ACTIONS(1549), - [anon_sym_DASH_DASH] = ACTIONS(1549), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1547), - [anon_sym_DASH] = ACTIONS(1547), - [anon_sym_STAR] = ACTIONS(1551), - [anon_sym_CARET] = ACTIONS(1549), - [anon_sym_AMP] = ACTIONS(1549), - [anon_sym_this] = ACTIONS(1323), + [anon_sym_checked] = ACTIONS(1251), + [anon_sym_BANG] = ACTIONS(1955), + [anon_sym_TILDE] = ACTIONS(1955), + [anon_sym_PLUS_PLUS] = ACTIONS(1955), + [anon_sym_DASH_DASH] = ACTIONS(1955), + [anon_sym_true] = ACTIONS(1257), + [anon_sym_false] = ACTIONS(1257), + [anon_sym_PLUS] = ACTIONS(1953), + [anon_sym_DASH] = ACTIONS(1953), + [anon_sym_STAR] = ACTIONS(1957), + [anon_sym_CARET] = ACTIONS(1955), + [anon_sym_AMP] = ACTIONS(1955), + [anon_sym_this] = ACTIONS(1261), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1325), + [anon_sym_base] = ACTIONS(1263), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1319), + [sym_predefined_type] = ACTIONS(1265), + [anon_sym_unchecked] = ACTIONS(1251), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1553), + [anon_sym_default] = ACTIONS(1267), + [anon_sym_throw] = ACTIONS(1959), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1555), - [anon_sym_DOT_DOT] = ACTIONS(1557), + [anon_sym_await] = ACTIONS(1961), + [anon_sym_DOT_DOT] = ACTIONS(1963), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -271921,19 +271807,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1333), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(1335), - [anon_sym___reftype] = ACTIONS(1337), - [anon_sym___refvalue] = ACTIONS(1339), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1341), + [anon_sym_stackalloc] = ACTIONS(1275), + [anon_sym_sizeof] = ACTIONS(1277), + [anon_sym_typeof] = ACTIONS(1279), + [anon_sym___makeref] = ACTIONS(1281), + [anon_sym___reftype] = ACTIONS(1283), + [anon_sym___refvalue] = ACTIONS(1285), + [sym_null_literal] = ACTIONS(1287), + [anon_sym_SQUOTE] = ACTIONS(1289), + [sym_integer_literal] = ACTIONS(1287), + [sym_real_literal] = ACTIONS(1291), + [anon_sym_DQUOTE] = ACTIONS(1293), + [sym_verbatim_string_literal] = ACTIONS(1291), + [aux_sym_preproc_if_token1] = ACTIONS(1295), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -271944,90 +271830,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(151), - [sym_interpolation_verbatim_start] = ACTIONS(153), - [sym_interpolation_raw_start] = ACTIONS(155), - [sym_raw_string_start] = ACTIONS(157), + [sym_interpolation_regular_start] = ACTIONS(1297), + [sym_interpolation_verbatim_start] = ACTIONS(1299), + [sym_interpolation_raw_start] = ACTIONS(1301), + [sym_raw_string_start] = ACTIONS(1303), }, [1362] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2762), - [sym__name] = STATE(5910), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2204), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(4874), - [sym_non_lvalue_expression] = STATE(3438), - [sym_lvalue_expression] = STATE(3535), - [sym__expression_statement_expression] = STATE(3362), - [sym_assignment_expression] = STATE(3449), - [sym_binary_expression] = STATE(3362), - [sym_postfix_unary_expression] = STATE(3449), - [sym_prefix_unary_expression] = STATE(3449), - [sym__pointer_indirection_expression] = STATE(2747), - [sym_query_expression] = STATE(3362), - [sym_from_clause] = STATE(6178), - [sym_conditional_expression] = STATE(3362), - [sym_conditional_access_expression] = STATE(3362), - [sym_as_expression] = STATE(3362), - [sym_is_expression] = STATE(3362), - [sym_is_pattern_expression] = STATE(3362), - [sym_cast_expression] = STATE(3362), - [sym_checked_expression] = STATE(3362), - [sym_invocation_expression] = STATE(3449), - [sym_switch_expression] = STATE(3362), - [sym_await_expression] = STATE(3449), - [sym_throw_expression] = STATE(3362), - [sym_element_access_expression] = STATE(2747), - [sym_interpolated_string_expression] = STATE(3362), - [sym_member_access_expression] = STATE(2747), - [sym_object_creation_expression] = STATE(3449), - [sym_parenthesized_expression] = STATE(3449), - [sym__parenthesized_lvalue_expression] = STATE(2747), - [sym_lambda_expression] = STATE(3362), - [sym__lambda_expression_init] = STATE(7384), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3362), - [sym_anonymous_method_expression] = STATE(3362), - [sym_anonymous_object_creation_expression] = STATE(3362), - [sym_implicit_array_creation_expression] = STATE(3362), - [sym_implicit_object_creation_expression] = STATE(3362), - [sym_implicit_stackalloc_expression] = STATE(3362), - [sym_initializer_expression] = STATE(3362), - [sym_default_expression] = STATE(3362), - [sym_with_expression] = STATE(3362), - [sym_sizeof_expression] = STATE(3362), - [sym_typeof_expression] = STATE(3362), - [sym_makeref_expression] = STATE(3362), - [sym_ref_expression] = STATE(3362), - [sym_reftype_expression] = STATE(3362), - [sym_refvalue_expression] = STATE(3362), - [sym_stackalloc_expression] = STATE(3362), - [sym_range_expression] = STATE(3362), - [sym_tuple_expression] = STATE(2747), - [sym_literal] = STATE(3362), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2267), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3362), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2416), + [sym__name] = STATE(5890), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2193), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(5227), + [sym_non_lvalue_expression] = STATE(3040), + [sym_lvalue_expression] = STATE(3549), + [sym__expression_statement_expression] = STATE(3035), + [sym_assignment_expression] = STATE(3043), + [sym_binary_expression] = STATE(3035), + [sym_postfix_unary_expression] = STATE(3043), + [sym_prefix_unary_expression] = STATE(3043), + [sym__pointer_indirection_expression] = STATE(2415), + [sym_query_expression] = STATE(3035), + [sym_from_clause] = STATE(6131), + [sym_conditional_expression] = STATE(3035), + [sym_conditional_access_expression] = STATE(3035), + [sym_as_expression] = STATE(3035), + [sym_is_expression] = STATE(3035), + [sym_is_pattern_expression] = STATE(3035), + [sym_cast_expression] = STATE(3035), + [sym_checked_expression] = STATE(3035), + [sym_invocation_expression] = STATE(3043), + [sym_switch_expression] = STATE(3035), + [sym_await_expression] = STATE(3043), + [sym_throw_expression] = STATE(3035), + [sym_element_access_expression] = STATE(2415), + [sym_interpolated_string_expression] = STATE(3035), + [sym_member_access_expression] = STATE(2415), + [sym_object_creation_expression] = STATE(3043), + [sym_parenthesized_expression] = STATE(3043), + [sym__parenthesized_lvalue_expression] = STATE(2415), + [sym_lambda_expression] = STATE(3035), + [sym__lambda_expression_init] = STATE(7412), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3035), + [sym_anonymous_method_expression] = STATE(3035), + [sym_anonymous_object_creation_expression] = STATE(3035), + [sym_implicit_array_creation_expression] = STATE(3035), + [sym_implicit_object_creation_expression] = STATE(3035), + [sym_implicit_stackalloc_expression] = STATE(3035), + [sym_initializer_expression] = STATE(3035), + [sym_default_expression] = STATE(3035), + [sym_with_expression] = STATE(3035), + [sym_sizeof_expression] = STATE(3035), + [sym_typeof_expression] = STATE(3035), + [sym_makeref_expression] = STATE(3035), + [sym_ref_expression] = STATE(3035), + [sym_reftype_expression] = STATE(3035), + [sym_refvalue_expression] = STATE(3035), + [sym_stackalloc_expression] = STATE(3035), + [sym_range_expression] = STATE(3035), + [sym_tuple_expression] = STATE(2415), + [sym_literal] = STATE(3035), + [sym_character_literal] = STATE(3037), + [sym_string_literal] = STATE(3037), + [sym_raw_string_literal] = STATE(3037), + [sym_boolean_literal] = STATE(3037), + [sym_identifier] = STATE(2261), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3035), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(1362), [sym_preproc_endregion] = STATE(1362), [sym_preproc_line] = STATE(1362), @@ -272037,47 +271923,47 @@ 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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3385), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3455), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1307), - [anon_sym_LPAREN] = ACTIONS(1543), - [anon_sym_ref] = ACTIONS(1545), - [anon_sym_LBRACE] = ACTIONS(1313), - [anon_sym_delegate] = ACTIONS(1315), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1239), + [anon_sym_LPAREN] = ACTIONS(1949), + [anon_sym_ref] = ACTIONS(1951), + [anon_sym_LBRACE] = ACTIONS(1245), + [anon_sym_delegate] = ACTIONS(1247), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1317), + [anon_sym_new] = ACTIONS(1249), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1319), - [anon_sym_BANG] = ACTIONS(1549), - [anon_sym_TILDE] = ACTIONS(1549), - [anon_sym_PLUS_PLUS] = ACTIONS(1549), - [anon_sym_DASH_DASH] = ACTIONS(1549), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1547), - [anon_sym_DASH] = ACTIONS(1547), - [anon_sym_STAR] = ACTIONS(1551), - [anon_sym_CARET] = ACTIONS(1549), - [anon_sym_AMP] = ACTIONS(1549), - [anon_sym_this] = ACTIONS(1323), + [anon_sym_checked] = ACTIONS(1251), + [anon_sym_BANG] = ACTIONS(1955), + [anon_sym_TILDE] = ACTIONS(1955), + [anon_sym_PLUS_PLUS] = ACTIONS(1955), + [anon_sym_DASH_DASH] = ACTIONS(1955), + [anon_sym_true] = ACTIONS(1257), + [anon_sym_false] = ACTIONS(1257), + [anon_sym_PLUS] = ACTIONS(1953), + [anon_sym_DASH] = ACTIONS(1953), + [anon_sym_STAR] = ACTIONS(1957), + [anon_sym_CARET] = ACTIONS(1955), + [anon_sym_AMP] = ACTIONS(1955), + [anon_sym_this] = ACTIONS(1261), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1325), + [anon_sym_base] = ACTIONS(1263), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1319), + [sym_predefined_type] = ACTIONS(1265), + [anon_sym_unchecked] = ACTIONS(1251), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1553), + [anon_sym_default] = ACTIONS(1267), + [anon_sym_throw] = ACTIONS(1959), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1555), - [anon_sym_DOT_DOT] = ACTIONS(1557), + [anon_sym_await] = ACTIONS(1961), + [anon_sym_DOT_DOT] = ACTIONS(1963), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -272090,19 +271976,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1333), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(1335), - [anon_sym___reftype] = ACTIONS(1337), - [anon_sym___refvalue] = ACTIONS(1339), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1341), + [anon_sym_stackalloc] = ACTIONS(1275), + [anon_sym_sizeof] = ACTIONS(1277), + [anon_sym_typeof] = ACTIONS(1279), + [anon_sym___makeref] = ACTIONS(1281), + [anon_sym___reftype] = ACTIONS(1283), + [anon_sym___refvalue] = ACTIONS(1285), + [sym_null_literal] = ACTIONS(1287), + [anon_sym_SQUOTE] = ACTIONS(1289), + [sym_integer_literal] = ACTIONS(1287), + [sym_real_literal] = ACTIONS(1291), + [anon_sym_DQUOTE] = ACTIONS(1293), + [sym_verbatim_string_literal] = ACTIONS(1291), + [aux_sym_preproc_if_token1] = ACTIONS(1295), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -272113,90 +271999,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(151), - [sym_interpolation_verbatim_start] = ACTIONS(153), - [sym_interpolation_raw_start] = ACTIONS(155), - [sym_raw_string_start] = ACTIONS(157), + [sym_interpolation_regular_start] = ACTIONS(1297), + [sym_interpolation_verbatim_start] = ACTIONS(1299), + [sym_interpolation_raw_start] = ACTIONS(1301), + [sym_raw_string_start] = ACTIONS(1303), }, [1363] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2762), - [sym__name] = STATE(5910), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2204), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(5009), - [sym_non_lvalue_expression] = STATE(3438), - [sym_lvalue_expression] = STATE(3535), - [sym__expression_statement_expression] = STATE(3362), - [sym_assignment_expression] = STATE(3449), - [sym_binary_expression] = STATE(3362), - [sym_postfix_unary_expression] = STATE(3449), - [sym_prefix_unary_expression] = STATE(3449), - [sym__pointer_indirection_expression] = STATE(2747), - [sym_query_expression] = STATE(3362), - [sym_from_clause] = STATE(6178), - [sym_conditional_expression] = STATE(3362), - [sym_conditional_access_expression] = STATE(3362), - [sym_as_expression] = STATE(3362), - [sym_is_expression] = STATE(3362), - [sym_is_pattern_expression] = STATE(3362), - [sym_cast_expression] = STATE(3362), - [sym_checked_expression] = STATE(3362), - [sym_invocation_expression] = STATE(3449), - [sym_switch_expression] = STATE(3362), - [sym_await_expression] = STATE(3449), - [sym_throw_expression] = STATE(3362), - [sym_element_access_expression] = STATE(2747), - [sym_interpolated_string_expression] = STATE(3362), - [sym_member_access_expression] = STATE(2747), - [sym_object_creation_expression] = STATE(3449), - [sym_parenthesized_expression] = STATE(3449), - [sym__parenthesized_lvalue_expression] = STATE(2747), - [sym_lambda_expression] = STATE(3362), - [sym__lambda_expression_init] = STATE(7384), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3362), - [sym_anonymous_method_expression] = STATE(3362), - [sym_anonymous_object_creation_expression] = STATE(3362), - [sym_implicit_array_creation_expression] = STATE(3362), - [sym_implicit_object_creation_expression] = STATE(3362), - [sym_implicit_stackalloc_expression] = STATE(3362), - [sym_initializer_expression] = STATE(3362), - [sym_default_expression] = STATE(3362), - [sym_with_expression] = STATE(3362), - [sym_sizeof_expression] = STATE(3362), - [sym_typeof_expression] = STATE(3362), - [sym_makeref_expression] = STATE(3362), - [sym_ref_expression] = STATE(3362), - [sym_reftype_expression] = STATE(3362), - [sym_refvalue_expression] = STATE(3362), - [sym_stackalloc_expression] = STATE(3362), - [sym_range_expression] = STATE(3362), - [sym_tuple_expression] = STATE(2747), - [sym_literal] = STATE(3362), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2267), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3362), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2416), + [sym__name] = STATE(5890), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2193), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(5228), + [sym_non_lvalue_expression] = STATE(3040), + [sym_lvalue_expression] = STATE(3549), + [sym__expression_statement_expression] = STATE(3035), + [sym_assignment_expression] = STATE(3043), + [sym_binary_expression] = STATE(3035), + [sym_postfix_unary_expression] = STATE(3043), + [sym_prefix_unary_expression] = STATE(3043), + [sym__pointer_indirection_expression] = STATE(2415), + [sym_query_expression] = STATE(3035), + [sym_from_clause] = STATE(6131), + [sym_conditional_expression] = STATE(3035), + [sym_conditional_access_expression] = STATE(3035), + [sym_as_expression] = STATE(3035), + [sym_is_expression] = STATE(3035), + [sym_is_pattern_expression] = STATE(3035), + [sym_cast_expression] = STATE(3035), + [sym_checked_expression] = STATE(3035), + [sym_invocation_expression] = STATE(3043), + [sym_switch_expression] = STATE(3035), + [sym_await_expression] = STATE(3043), + [sym_throw_expression] = STATE(3035), + [sym_element_access_expression] = STATE(2415), + [sym_interpolated_string_expression] = STATE(3035), + [sym_member_access_expression] = STATE(2415), + [sym_object_creation_expression] = STATE(3043), + [sym_parenthesized_expression] = STATE(3043), + [sym__parenthesized_lvalue_expression] = STATE(2415), + [sym_lambda_expression] = STATE(3035), + [sym__lambda_expression_init] = STATE(7412), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3035), + [sym_anonymous_method_expression] = STATE(3035), + [sym_anonymous_object_creation_expression] = STATE(3035), + [sym_implicit_array_creation_expression] = STATE(3035), + [sym_implicit_object_creation_expression] = STATE(3035), + [sym_implicit_stackalloc_expression] = STATE(3035), + [sym_initializer_expression] = STATE(3035), + [sym_default_expression] = STATE(3035), + [sym_with_expression] = STATE(3035), + [sym_sizeof_expression] = STATE(3035), + [sym_typeof_expression] = STATE(3035), + [sym_makeref_expression] = STATE(3035), + [sym_ref_expression] = STATE(3035), + [sym_reftype_expression] = STATE(3035), + [sym_refvalue_expression] = STATE(3035), + [sym_stackalloc_expression] = STATE(3035), + [sym_range_expression] = STATE(3035), + [sym_tuple_expression] = STATE(2415), + [sym_literal] = STATE(3035), + [sym_character_literal] = STATE(3037), + [sym_string_literal] = STATE(3037), + [sym_raw_string_literal] = STATE(3037), + [sym_boolean_literal] = STATE(3037), + [sym_identifier] = STATE(2261), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3035), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(1363), [sym_preproc_endregion] = STATE(1363), [sym_preproc_line] = STATE(1363), @@ -272206,47 +272092,47 @@ 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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3385), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3455), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1307), - [anon_sym_LPAREN] = ACTIONS(1543), - [anon_sym_ref] = ACTIONS(1545), - [anon_sym_LBRACE] = ACTIONS(1313), - [anon_sym_delegate] = ACTIONS(1315), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1239), + [anon_sym_LPAREN] = ACTIONS(1949), + [anon_sym_ref] = ACTIONS(1951), + [anon_sym_LBRACE] = ACTIONS(1245), + [anon_sym_delegate] = ACTIONS(1247), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1317), + [anon_sym_new] = ACTIONS(1249), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1319), - [anon_sym_BANG] = ACTIONS(1549), - [anon_sym_TILDE] = ACTIONS(1549), - [anon_sym_PLUS_PLUS] = ACTIONS(1549), - [anon_sym_DASH_DASH] = ACTIONS(1549), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1547), - [anon_sym_DASH] = ACTIONS(1547), - [anon_sym_STAR] = ACTIONS(1551), - [anon_sym_CARET] = ACTIONS(1549), - [anon_sym_AMP] = ACTIONS(1549), - [anon_sym_this] = ACTIONS(1323), + [anon_sym_checked] = ACTIONS(1251), + [anon_sym_BANG] = ACTIONS(1955), + [anon_sym_TILDE] = ACTIONS(1955), + [anon_sym_PLUS_PLUS] = ACTIONS(1955), + [anon_sym_DASH_DASH] = ACTIONS(1955), + [anon_sym_true] = ACTIONS(1257), + [anon_sym_false] = ACTIONS(1257), + [anon_sym_PLUS] = ACTIONS(1953), + [anon_sym_DASH] = ACTIONS(1953), + [anon_sym_STAR] = ACTIONS(1957), + [anon_sym_CARET] = ACTIONS(1955), + [anon_sym_AMP] = ACTIONS(1955), + [anon_sym_this] = ACTIONS(1261), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1325), + [anon_sym_base] = ACTIONS(1263), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1319), + [sym_predefined_type] = ACTIONS(1265), + [anon_sym_unchecked] = ACTIONS(1251), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1553), + [anon_sym_default] = ACTIONS(1267), + [anon_sym_throw] = ACTIONS(1959), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1555), - [anon_sym_DOT_DOT] = ACTIONS(1557), + [anon_sym_await] = ACTIONS(1961), + [anon_sym_DOT_DOT] = ACTIONS(1963), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -272259,19 +272145,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1333), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(1335), - [anon_sym___reftype] = ACTIONS(1337), - [anon_sym___refvalue] = ACTIONS(1339), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1341), + [anon_sym_stackalloc] = ACTIONS(1275), + [anon_sym_sizeof] = ACTIONS(1277), + [anon_sym_typeof] = ACTIONS(1279), + [anon_sym___makeref] = ACTIONS(1281), + [anon_sym___reftype] = ACTIONS(1283), + [anon_sym___refvalue] = ACTIONS(1285), + [sym_null_literal] = ACTIONS(1287), + [anon_sym_SQUOTE] = ACTIONS(1289), + [sym_integer_literal] = ACTIONS(1287), + [sym_real_literal] = ACTIONS(1291), + [anon_sym_DQUOTE] = ACTIONS(1293), + [sym_verbatim_string_literal] = ACTIONS(1291), + [aux_sym_preproc_if_token1] = ACTIONS(1295), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -272282,90 +272168,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(151), - [sym_interpolation_verbatim_start] = ACTIONS(153), - [sym_interpolation_raw_start] = ACTIONS(155), - [sym_raw_string_start] = ACTIONS(157), + [sym_interpolation_regular_start] = ACTIONS(1297), + [sym_interpolation_verbatim_start] = ACTIONS(1299), + [sym_interpolation_raw_start] = ACTIONS(1301), + [sym_raw_string_start] = ACTIONS(1303), }, [1364] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2762), - [sym__name] = STATE(5910), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2204), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(4875), - [sym_non_lvalue_expression] = STATE(3438), - [sym_lvalue_expression] = STATE(3535), - [sym__expression_statement_expression] = STATE(3362), - [sym_assignment_expression] = STATE(3449), - [sym_binary_expression] = STATE(3362), - [sym_postfix_unary_expression] = STATE(3449), - [sym_prefix_unary_expression] = STATE(3449), - [sym__pointer_indirection_expression] = STATE(2747), - [sym_query_expression] = STATE(3362), - [sym_from_clause] = STATE(6178), - [sym_conditional_expression] = STATE(3362), - [sym_conditional_access_expression] = STATE(3362), - [sym_as_expression] = STATE(3362), - [sym_is_expression] = STATE(3362), - [sym_is_pattern_expression] = STATE(3362), - [sym_cast_expression] = STATE(3362), - [sym_checked_expression] = STATE(3362), - [sym_invocation_expression] = STATE(3449), - [sym_switch_expression] = STATE(3362), - [sym_await_expression] = STATE(3449), - [sym_throw_expression] = STATE(3362), - [sym_element_access_expression] = STATE(2747), - [sym_interpolated_string_expression] = STATE(3362), - [sym_member_access_expression] = STATE(2747), - [sym_object_creation_expression] = STATE(3449), - [sym_parenthesized_expression] = STATE(3449), - [sym__parenthesized_lvalue_expression] = STATE(2747), - [sym_lambda_expression] = STATE(3362), - [sym__lambda_expression_init] = STATE(7384), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3362), - [sym_anonymous_method_expression] = STATE(3362), - [sym_anonymous_object_creation_expression] = STATE(3362), - [sym_implicit_array_creation_expression] = STATE(3362), - [sym_implicit_object_creation_expression] = STATE(3362), - [sym_implicit_stackalloc_expression] = STATE(3362), - [sym_initializer_expression] = STATE(3362), - [sym_default_expression] = STATE(3362), - [sym_with_expression] = STATE(3362), - [sym_sizeof_expression] = STATE(3362), - [sym_typeof_expression] = STATE(3362), - [sym_makeref_expression] = STATE(3362), - [sym_ref_expression] = STATE(3362), - [sym_reftype_expression] = STATE(3362), - [sym_refvalue_expression] = STATE(3362), - [sym_stackalloc_expression] = STATE(3362), - [sym_range_expression] = STATE(3362), - [sym_tuple_expression] = STATE(2747), - [sym_literal] = STATE(3362), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2267), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3362), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2416), + [sym__name] = STATE(5890), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2193), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(5255), + [sym_non_lvalue_expression] = STATE(3040), + [sym_lvalue_expression] = STATE(3549), + [sym__expression_statement_expression] = STATE(3035), + [sym_assignment_expression] = STATE(3043), + [sym_binary_expression] = STATE(3035), + [sym_postfix_unary_expression] = STATE(3043), + [sym_prefix_unary_expression] = STATE(3043), + [sym__pointer_indirection_expression] = STATE(2415), + [sym_query_expression] = STATE(3035), + [sym_from_clause] = STATE(6131), + [sym_conditional_expression] = STATE(3035), + [sym_conditional_access_expression] = STATE(3035), + [sym_as_expression] = STATE(3035), + [sym_is_expression] = STATE(3035), + [sym_is_pattern_expression] = STATE(3035), + [sym_cast_expression] = STATE(3035), + [sym_checked_expression] = STATE(3035), + [sym_invocation_expression] = STATE(3043), + [sym_switch_expression] = STATE(3035), + [sym_await_expression] = STATE(3043), + [sym_throw_expression] = STATE(3035), + [sym_element_access_expression] = STATE(2415), + [sym_interpolated_string_expression] = STATE(3035), + [sym_member_access_expression] = STATE(2415), + [sym_object_creation_expression] = STATE(3043), + [sym_parenthesized_expression] = STATE(3043), + [sym__parenthesized_lvalue_expression] = STATE(2415), + [sym_lambda_expression] = STATE(3035), + [sym__lambda_expression_init] = STATE(7412), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3035), + [sym_anonymous_method_expression] = STATE(3035), + [sym_anonymous_object_creation_expression] = STATE(3035), + [sym_implicit_array_creation_expression] = STATE(3035), + [sym_implicit_object_creation_expression] = STATE(3035), + [sym_implicit_stackalloc_expression] = STATE(3035), + [sym_initializer_expression] = STATE(3035), + [sym_default_expression] = STATE(3035), + [sym_with_expression] = STATE(3035), + [sym_sizeof_expression] = STATE(3035), + [sym_typeof_expression] = STATE(3035), + [sym_makeref_expression] = STATE(3035), + [sym_ref_expression] = STATE(3035), + [sym_reftype_expression] = STATE(3035), + [sym_refvalue_expression] = STATE(3035), + [sym_stackalloc_expression] = STATE(3035), + [sym_range_expression] = STATE(3035), + [sym_tuple_expression] = STATE(2415), + [sym_literal] = STATE(3035), + [sym_character_literal] = STATE(3037), + [sym_string_literal] = STATE(3037), + [sym_raw_string_literal] = STATE(3037), + [sym_boolean_literal] = STATE(3037), + [sym_identifier] = STATE(2261), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3035), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(1364), [sym_preproc_endregion] = STATE(1364), [sym_preproc_line] = STATE(1364), @@ -272375,47 +272261,47 @@ 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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3385), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3455), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1307), - [anon_sym_LPAREN] = ACTIONS(1543), - [anon_sym_ref] = ACTIONS(1545), - [anon_sym_LBRACE] = ACTIONS(1313), - [anon_sym_delegate] = ACTIONS(1315), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1239), + [anon_sym_LPAREN] = ACTIONS(1949), + [anon_sym_ref] = ACTIONS(1951), + [anon_sym_LBRACE] = ACTIONS(1245), + [anon_sym_delegate] = ACTIONS(1247), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1317), + [anon_sym_new] = ACTIONS(1249), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1319), - [anon_sym_BANG] = ACTIONS(1549), - [anon_sym_TILDE] = ACTIONS(1549), - [anon_sym_PLUS_PLUS] = ACTIONS(1549), - [anon_sym_DASH_DASH] = ACTIONS(1549), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1547), - [anon_sym_DASH] = ACTIONS(1547), - [anon_sym_STAR] = ACTIONS(1551), - [anon_sym_CARET] = ACTIONS(1549), - [anon_sym_AMP] = ACTIONS(1549), - [anon_sym_this] = ACTIONS(1323), + [anon_sym_checked] = ACTIONS(1251), + [anon_sym_BANG] = ACTIONS(1955), + [anon_sym_TILDE] = ACTIONS(1955), + [anon_sym_PLUS_PLUS] = ACTIONS(1955), + [anon_sym_DASH_DASH] = ACTIONS(1955), + [anon_sym_true] = ACTIONS(1257), + [anon_sym_false] = ACTIONS(1257), + [anon_sym_PLUS] = ACTIONS(1953), + [anon_sym_DASH] = ACTIONS(1953), + [anon_sym_STAR] = ACTIONS(1957), + [anon_sym_CARET] = ACTIONS(1955), + [anon_sym_AMP] = ACTIONS(1955), + [anon_sym_this] = ACTIONS(1261), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1325), + [anon_sym_base] = ACTIONS(1263), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1319), + [sym_predefined_type] = ACTIONS(1265), + [anon_sym_unchecked] = ACTIONS(1251), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1553), + [anon_sym_default] = ACTIONS(1267), + [anon_sym_throw] = ACTIONS(1959), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1555), - [anon_sym_DOT_DOT] = ACTIONS(1557), + [anon_sym_await] = ACTIONS(1961), + [anon_sym_DOT_DOT] = ACTIONS(1963), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -272428,19 +272314,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1333), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(1335), - [anon_sym___reftype] = ACTIONS(1337), - [anon_sym___refvalue] = ACTIONS(1339), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1341), + [anon_sym_stackalloc] = ACTIONS(1275), + [anon_sym_sizeof] = ACTIONS(1277), + [anon_sym_typeof] = ACTIONS(1279), + [anon_sym___makeref] = ACTIONS(1281), + [anon_sym___reftype] = ACTIONS(1283), + [anon_sym___refvalue] = ACTIONS(1285), + [sym_null_literal] = ACTIONS(1287), + [anon_sym_SQUOTE] = ACTIONS(1289), + [sym_integer_literal] = ACTIONS(1287), + [sym_real_literal] = ACTIONS(1291), + [anon_sym_DQUOTE] = ACTIONS(1293), + [sym_verbatim_string_literal] = ACTIONS(1291), + [aux_sym_preproc_if_token1] = ACTIONS(1295), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -272451,90 +272337,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(151), - [sym_interpolation_verbatim_start] = ACTIONS(153), - [sym_interpolation_raw_start] = ACTIONS(155), - [sym_raw_string_start] = ACTIONS(157), + [sym_interpolation_regular_start] = ACTIONS(1297), + [sym_interpolation_verbatim_start] = ACTIONS(1299), + [sym_interpolation_raw_start] = ACTIONS(1301), + [sym_raw_string_start] = ACTIONS(1303), }, [1365] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2762), - [sym__name] = STATE(5910), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2204), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(4876), - [sym_non_lvalue_expression] = STATE(3438), - [sym_lvalue_expression] = STATE(3535), - [sym__expression_statement_expression] = STATE(3362), - [sym_assignment_expression] = STATE(3449), - [sym_binary_expression] = STATE(3362), - [sym_postfix_unary_expression] = STATE(3449), - [sym_prefix_unary_expression] = STATE(3449), - [sym__pointer_indirection_expression] = STATE(2747), - [sym_query_expression] = STATE(3362), - [sym_from_clause] = STATE(6178), - [sym_conditional_expression] = STATE(3362), - [sym_conditional_access_expression] = STATE(3362), - [sym_as_expression] = STATE(3362), - [sym_is_expression] = STATE(3362), - [sym_is_pattern_expression] = STATE(3362), - [sym_cast_expression] = STATE(3362), - [sym_checked_expression] = STATE(3362), - [sym_invocation_expression] = STATE(3449), - [sym_switch_expression] = STATE(3362), - [sym_await_expression] = STATE(3449), - [sym_throw_expression] = STATE(3362), - [sym_element_access_expression] = STATE(2747), - [sym_interpolated_string_expression] = STATE(3362), - [sym_member_access_expression] = STATE(2747), - [sym_object_creation_expression] = STATE(3449), - [sym_parenthesized_expression] = STATE(3449), - [sym__parenthesized_lvalue_expression] = STATE(2747), - [sym_lambda_expression] = STATE(3362), - [sym__lambda_expression_init] = STATE(7384), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3362), - [sym_anonymous_method_expression] = STATE(3362), - [sym_anonymous_object_creation_expression] = STATE(3362), - [sym_implicit_array_creation_expression] = STATE(3362), - [sym_implicit_object_creation_expression] = STATE(3362), - [sym_implicit_stackalloc_expression] = STATE(3362), - [sym_initializer_expression] = STATE(3362), - [sym_default_expression] = STATE(3362), - [sym_with_expression] = STATE(3362), - [sym_sizeof_expression] = STATE(3362), - [sym_typeof_expression] = STATE(3362), - [sym_makeref_expression] = STATE(3362), - [sym_ref_expression] = STATE(3362), - [sym_reftype_expression] = STATE(3362), - [sym_refvalue_expression] = STATE(3362), - [sym_stackalloc_expression] = STATE(3362), - [sym_range_expression] = STATE(3362), - [sym_tuple_expression] = STATE(2747), - [sym_literal] = STATE(3362), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2267), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3362), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2416), + [sym__name] = STATE(5890), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2193), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(5229), + [sym_non_lvalue_expression] = STATE(3040), + [sym_lvalue_expression] = STATE(3549), + [sym__expression_statement_expression] = STATE(3035), + [sym_assignment_expression] = STATE(3043), + [sym_binary_expression] = STATE(3035), + [sym_postfix_unary_expression] = STATE(3043), + [sym_prefix_unary_expression] = STATE(3043), + [sym__pointer_indirection_expression] = STATE(2415), + [sym_query_expression] = STATE(3035), + [sym_from_clause] = STATE(6131), + [sym_conditional_expression] = STATE(3035), + [sym_conditional_access_expression] = STATE(3035), + [sym_as_expression] = STATE(3035), + [sym_is_expression] = STATE(3035), + [sym_is_pattern_expression] = STATE(3035), + [sym_cast_expression] = STATE(3035), + [sym_checked_expression] = STATE(3035), + [sym_invocation_expression] = STATE(3043), + [sym_switch_expression] = STATE(3035), + [sym_await_expression] = STATE(3043), + [sym_throw_expression] = STATE(3035), + [sym_element_access_expression] = STATE(2415), + [sym_interpolated_string_expression] = STATE(3035), + [sym_member_access_expression] = STATE(2415), + [sym_object_creation_expression] = STATE(3043), + [sym_parenthesized_expression] = STATE(3043), + [sym__parenthesized_lvalue_expression] = STATE(2415), + [sym_lambda_expression] = STATE(3035), + [sym__lambda_expression_init] = STATE(7412), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3035), + [sym_anonymous_method_expression] = STATE(3035), + [sym_anonymous_object_creation_expression] = STATE(3035), + [sym_implicit_array_creation_expression] = STATE(3035), + [sym_implicit_object_creation_expression] = STATE(3035), + [sym_implicit_stackalloc_expression] = STATE(3035), + [sym_initializer_expression] = STATE(3035), + [sym_default_expression] = STATE(3035), + [sym_with_expression] = STATE(3035), + [sym_sizeof_expression] = STATE(3035), + [sym_typeof_expression] = STATE(3035), + [sym_makeref_expression] = STATE(3035), + [sym_ref_expression] = STATE(3035), + [sym_reftype_expression] = STATE(3035), + [sym_refvalue_expression] = STATE(3035), + [sym_stackalloc_expression] = STATE(3035), + [sym_range_expression] = STATE(3035), + [sym_tuple_expression] = STATE(2415), + [sym_literal] = STATE(3035), + [sym_character_literal] = STATE(3037), + [sym_string_literal] = STATE(3037), + [sym_raw_string_literal] = STATE(3037), + [sym_boolean_literal] = STATE(3037), + [sym_identifier] = STATE(2261), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3035), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(1365), [sym_preproc_endregion] = STATE(1365), [sym_preproc_line] = STATE(1365), @@ -272544,47 +272430,47 @@ 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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3385), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3455), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1307), - [anon_sym_LPAREN] = ACTIONS(1543), - [anon_sym_ref] = ACTIONS(1545), - [anon_sym_LBRACE] = ACTIONS(1313), - [anon_sym_delegate] = ACTIONS(1315), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1239), + [anon_sym_LPAREN] = ACTIONS(1949), + [anon_sym_ref] = ACTIONS(1951), + [anon_sym_LBRACE] = ACTIONS(1245), + [anon_sym_delegate] = ACTIONS(1247), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1317), + [anon_sym_new] = ACTIONS(1249), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1319), - [anon_sym_BANG] = ACTIONS(1549), - [anon_sym_TILDE] = ACTIONS(1549), - [anon_sym_PLUS_PLUS] = ACTIONS(1549), - [anon_sym_DASH_DASH] = ACTIONS(1549), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1547), - [anon_sym_DASH] = ACTIONS(1547), - [anon_sym_STAR] = ACTIONS(1551), - [anon_sym_CARET] = ACTIONS(1549), - [anon_sym_AMP] = ACTIONS(1549), - [anon_sym_this] = ACTIONS(1323), + [anon_sym_checked] = ACTIONS(1251), + [anon_sym_BANG] = ACTIONS(1955), + [anon_sym_TILDE] = ACTIONS(1955), + [anon_sym_PLUS_PLUS] = ACTIONS(1955), + [anon_sym_DASH_DASH] = ACTIONS(1955), + [anon_sym_true] = ACTIONS(1257), + [anon_sym_false] = ACTIONS(1257), + [anon_sym_PLUS] = ACTIONS(1953), + [anon_sym_DASH] = ACTIONS(1953), + [anon_sym_STAR] = ACTIONS(1957), + [anon_sym_CARET] = ACTIONS(1955), + [anon_sym_AMP] = ACTIONS(1955), + [anon_sym_this] = ACTIONS(1261), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1325), + [anon_sym_base] = ACTIONS(1263), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1319), + [sym_predefined_type] = ACTIONS(1265), + [anon_sym_unchecked] = ACTIONS(1251), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1553), + [anon_sym_default] = ACTIONS(1267), + [anon_sym_throw] = ACTIONS(1959), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1555), - [anon_sym_DOT_DOT] = ACTIONS(1557), + [anon_sym_await] = ACTIONS(1961), + [anon_sym_DOT_DOT] = ACTIONS(1963), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -272597,19 +272483,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1333), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(1335), - [anon_sym___reftype] = ACTIONS(1337), - [anon_sym___refvalue] = ACTIONS(1339), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1341), + [anon_sym_stackalloc] = ACTIONS(1275), + [anon_sym_sizeof] = ACTIONS(1277), + [anon_sym_typeof] = ACTIONS(1279), + [anon_sym___makeref] = ACTIONS(1281), + [anon_sym___reftype] = ACTIONS(1283), + [anon_sym___refvalue] = ACTIONS(1285), + [sym_null_literal] = ACTIONS(1287), + [anon_sym_SQUOTE] = ACTIONS(1289), + [sym_integer_literal] = ACTIONS(1287), + [sym_real_literal] = ACTIONS(1291), + [anon_sym_DQUOTE] = ACTIONS(1293), + [sym_verbatim_string_literal] = ACTIONS(1291), + [aux_sym_preproc_if_token1] = ACTIONS(1295), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -272620,90 +272506,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(151), - [sym_interpolation_verbatim_start] = ACTIONS(153), - [sym_interpolation_raw_start] = ACTIONS(155), - [sym_raw_string_start] = ACTIONS(157), + [sym_interpolation_regular_start] = ACTIONS(1297), + [sym_interpolation_verbatim_start] = ACTIONS(1299), + [sym_interpolation_raw_start] = ACTIONS(1301), + [sym_raw_string_start] = ACTIONS(1303), }, [1366] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2762), - [sym__name] = STATE(5910), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2204), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(4877), - [sym_non_lvalue_expression] = STATE(3438), - [sym_lvalue_expression] = STATE(3535), - [sym__expression_statement_expression] = STATE(3362), - [sym_assignment_expression] = STATE(3449), - [sym_binary_expression] = STATE(3362), - [sym_postfix_unary_expression] = STATE(3449), - [sym_prefix_unary_expression] = STATE(3449), - [sym__pointer_indirection_expression] = STATE(2747), - [sym_query_expression] = STATE(3362), - [sym_from_clause] = STATE(6178), - [sym_conditional_expression] = STATE(3362), - [sym_conditional_access_expression] = STATE(3362), - [sym_as_expression] = STATE(3362), - [sym_is_expression] = STATE(3362), - [sym_is_pattern_expression] = STATE(3362), - [sym_cast_expression] = STATE(3362), - [sym_checked_expression] = STATE(3362), - [sym_invocation_expression] = STATE(3449), - [sym_switch_expression] = STATE(3362), - [sym_await_expression] = STATE(3449), - [sym_throw_expression] = STATE(3362), - [sym_element_access_expression] = STATE(2747), - [sym_interpolated_string_expression] = STATE(3362), - [sym_member_access_expression] = STATE(2747), - [sym_object_creation_expression] = STATE(3449), - [sym_parenthesized_expression] = STATE(3449), - [sym__parenthesized_lvalue_expression] = STATE(2747), - [sym_lambda_expression] = STATE(3362), - [sym__lambda_expression_init] = STATE(7384), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3362), - [sym_anonymous_method_expression] = STATE(3362), - [sym_anonymous_object_creation_expression] = STATE(3362), - [sym_implicit_array_creation_expression] = STATE(3362), - [sym_implicit_object_creation_expression] = STATE(3362), - [sym_implicit_stackalloc_expression] = STATE(3362), - [sym_initializer_expression] = STATE(3362), - [sym_default_expression] = STATE(3362), - [sym_with_expression] = STATE(3362), - [sym_sizeof_expression] = STATE(3362), - [sym_typeof_expression] = STATE(3362), - [sym_makeref_expression] = STATE(3362), - [sym_ref_expression] = STATE(3362), - [sym_reftype_expression] = STATE(3362), - [sym_refvalue_expression] = STATE(3362), - [sym_stackalloc_expression] = STATE(3362), - [sym_range_expression] = STATE(3362), - [sym_tuple_expression] = STATE(2747), - [sym_literal] = STATE(3362), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2267), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3362), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2416), + [sym__name] = STATE(5890), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2193), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(5230), + [sym_non_lvalue_expression] = STATE(3040), + [sym_lvalue_expression] = STATE(3549), + [sym__expression_statement_expression] = STATE(3035), + [sym_assignment_expression] = STATE(3043), + [sym_binary_expression] = STATE(3035), + [sym_postfix_unary_expression] = STATE(3043), + [sym_prefix_unary_expression] = STATE(3043), + [sym__pointer_indirection_expression] = STATE(2415), + [sym_query_expression] = STATE(3035), + [sym_from_clause] = STATE(6131), + [sym_conditional_expression] = STATE(3035), + [sym_conditional_access_expression] = STATE(3035), + [sym_as_expression] = STATE(3035), + [sym_is_expression] = STATE(3035), + [sym_is_pattern_expression] = STATE(3035), + [sym_cast_expression] = STATE(3035), + [sym_checked_expression] = STATE(3035), + [sym_invocation_expression] = STATE(3043), + [sym_switch_expression] = STATE(3035), + [sym_await_expression] = STATE(3043), + [sym_throw_expression] = STATE(3035), + [sym_element_access_expression] = STATE(2415), + [sym_interpolated_string_expression] = STATE(3035), + [sym_member_access_expression] = STATE(2415), + [sym_object_creation_expression] = STATE(3043), + [sym_parenthesized_expression] = STATE(3043), + [sym__parenthesized_lvalue_expression] = STATE(2415), + [sym_lambda_expression] = STATE(3035), + [sym__lambda_expression_init] = STATE(7412), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3035), + [sym_anonymous_method_expression] = STATE(3035), + [sym_anonymous_object_creation_expression] = STATE(3035), + [sym_implicit_array_creation_expression] = STATE(3035), + [sym_implicit_object_creation_expression] = STATE(3035), + [sym_implicit_stackalloc_expression] = STATE(3035), + [sym_initializer_expression] = STATE(3035), + [sym_default_expression] = STATE(3035), + [sym_with_expression] = STATE(3035), + [sym_sizeof_expression] = STATE(3035), + [sym_typeof_expression] = STATE(3035), + [sym_makeref_expression] = STATE(3035), + [sym_ref_expression] = STATE(3035), + [sym_reftype_expression] = STATE(3035), + [sym_refvalue_expression] = STATE(3035), + [sym_stackalloc_expression] = STATE(3035), + [sym_range_expression] = STATE(3035), + [sym_tuple_expression] = STATE(2415), + [sym_literal] = STATE(3035), + [sym_character_literal] = STATE(3037), + [sym_string_literal] = STATE(3037), + [sym_raw_string_literal] = STATE(3037), + [sym_boolean_literal] = STATE(3037), + [sym_identifier] = STATE(2261), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3035), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(1366), [sym_preproc_endregion] = STATE(1366), [sym_preproc_line] = STATE(1366), @@ -272713,47 +272599,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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3385), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3455), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1307), - [anon_sym_LPAREN] = ACTIONS(1543), - [anon_sym_ref] = ACTIONS(1545), - [anon_sym_LBRACE] = ACTIONS(1313), - [anon_sym_delegate] = ACTIONS(1315), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1239), + [anon_sym_LPAREN] = ACTIONS(1949), + [anon_sym_ref] = ACTIONS(1951), + [anon_sym_LBRACE] = ACTIONS(1245), + [anon_sym_delegate] = ACTIONS(1247), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1317), + [anon_sym_new] = ACTIONS(1249), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1319), - [anon_sym_BANG] = ACTIONS(1549), - [anon_sym_TILDE] = ACTIONS(1549), - [anon_sym_PLUS_PLUS] = ACTIONS(1549), - [anon_sym_DASH_DASH] = ACTIONS(1549), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1547), - [anon_sym_DASH] = ACTIONS(1547), - [anon_sym_STAR] = ACTIONS(1551), - [anon_sym_CARET] = ACTIONS(1549), - [anon_sym_AMP] = ACTIONS(1549), - [anon_sym_this] = ACTIONS(1323), + [anon_sym_checked] = ACTIONS(1251), + [anon_sym_BANG] = ACTIONS(1955), + [anon_sym_TILDE] = ACTIONS(1955), + [anon_sym_PLUS_PLUS] = ACTIONS(1955), + [anon_sym_DASH_DASH] = ACTIONS(1955), + [anon_sym_true] = ACTIONS(1257), + [anon_sym_false] = ACTIONS(1257), + [anon_sym_PLUS] = ACTIONS(1953), + [anon_sym_DASH] = ACTIONS(1953), + [anon_sym_STAR] = ACTIONS(1957), + [anon_sym_CARET] = ACTIONS(1955), + [anon_sym_AMP] = ACTIONS(1955), + [anon_sym_this] = ACTIONS(1261), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1325), + [anon_sym_base] = ACTIONS(1263), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1319), + [sym_predefined_type] = ACTIONS(1265), + [anon_sym_unchecked] = ACTIONS(1251), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1553), + [anon_sym_default] = ACTIONS(1267), + [anon_sym_throw] = ACTIONS(1959), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1555), - [anon_sym_DOT_DOT] = ACTIONS(1557), + [anon_sym_await] = ACTIONS(1961), + [anon_sym_DOT_DOT] = ACTIONS(1963), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -272766,19 +272652,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1333), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(1335), - [anon_sym___reftype] = ACTIONS(1337), - [anon_sym___refvalue] = ACTIONS(1339), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1341), + [anon_sym_stackalloc] = ACTIONS(1275), + [anon_sym_sizeof] = ACTIONS(1277), + [anon_sym_typeof] = ACTIONS(1279), + [anon_sym___makeref] = ACTIONS(1281), + [anon_sym___reftype] = ACTIONS(1283), + [anon_sym___refvalue] = ACTIONS(1285), + [sym_null_literal] = ACTIONS(1287), + [anon_sym_SQUOTE] = ACTIONS(1289), + [sym_integer_literal] = ACTIONS(1287), + [sym_real_literal] = ACTIONS(1291), + [anon_sym_DQUOTE] = ACTIONS(1293), + [sym_verbatim_string_literal] = ACTIONS(1291), + [aux_sym_preproc_if_token1] = ACTIONS(1295), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -272789,90 +272675,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(151), - [sym_interpolation_verbatim_start] = ACTIONS(153), - [sym_interpolation_raw_start] = ACTIONS(155), - [sym_raw_string_start] = ACTIONS(157), + [sym_interpolation_regular_start] = ACTIONS(1297), + [sym_interpolation_verbatim_start] = ACTIONS(1299), + [sym_interpolation_raw_start] = ACTIONS(1301), + [sym_raw_string_start] = ACTIONS(1303), }, [1367] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2762), - [sym__name] = STATE(5910), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2204), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(4881), - [sym_non_lvalue_expression] = STATE(3438), - [sym_lvalue_expression] = STATE(3535), - [sym__expression_statement_expression] = STATE(3362), - [sym_assignment_expression] = STATE(3449), - [sym_binary_expression] = STATE(3362), - [sym_postfix_unary_expression] = STATE(3449), - [sym_prefix_unary_expression] = STATE(3449), - [sym__pointer_indirection_expression] = STATE(2747), - [sym_query_expression] = STATE(3362), - [sym_from_clause] = STATE(6178), - [sym_conditional_expression] = STATE(3362), - [sym_conditional_access_expression] = STATE(3362), - [sym_as_expression] = STATE(3362), - [sym_is_expression] = STATE(3362), - [sym_is_pattern_expression] = STATE(3362), - [sym_cast_expression] = STATE(3362), - [sym_checked_expression] = STATE(3362), - [sym_invocation_expression] = STATE(3449), - [sym_switch_expression] = STATE(3362), - [sym_await_expression] = STATE(3449), - [sym_throw_expression] = STATE(3362), - [sym_element_access_expression] = STATE(2747), - [sym_interpolated_string_expression] = STATE(3362), - [sym_member_access_expression] = STATE(2747), - [sym_object_creation_expression] = STATE(3449), - [sym_parenthesized_expression] = STATE(3449), - [sym__parenthesized_lvalue_expression] = STATE(2747), - [sym_lambda_expression] = STATE(3362), - [sym__lambda_expression_init] = STATE(7384), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3362), - [sym_anonymous_method_expression] = STATE(3362), - [sym_anonymous_object_creation_expression] = STATE(3362), - [sym_implicit_array_creation_expression] = STATE(3362), - [sym_implicit_object_creation_expression] = STATE(3362), - [sym_implicit_stackalloc_expression] = STATE(3362), - [sym_initializer_expression] = STATE(3362), - [sym_default_expression] = STATE(3362), - [sym_with_expression] = STATE(3362), - [sym_sizeof_expression] = STATE(3362), - [sym_typeof_expression] = STATE(3362), - [sym_makeref_expression] = STATE(3362), - [sym_ref_expression] = STATE(3362), - [sym_reftype_expression] = STATE(3362), - [sym_refvalue_expression] = STATE(3362), - [sym_stackalloc_expression] = STATE(3362), - [sym_range_expression] = STATE(3362), - [sym_tuple_expression] = STATE(2747), - [sym_literal] = STATE(3362), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2267), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3362), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2416), + [sym__name] = STATE(5890), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2193), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(5232), + [sym_non_lvalue_expression] = STATE(3040), + [sym_lvalue_expression] = STATE(3549), + [sym__expression_statement_expression] = STATE(3035), + [sym_assignment_expression] = STATE(3043), + [sym_binary_expression] = STATE(3035), + [sym_postfix_unary_expression] = STATE(3043), + [sym_prefix_unary_expression] = STATE(3043), + [sym__pointer_indirection_expression] = STATE(2415), + [sym_query_expression] = STATE(3035), + [sym_from_clause] = STATE(6131), + [sym_conditional_expression] = STATE(3035), + [sym_conditional_access_expression] = STATE(3035), + [sym_as_expression] = STATE(3035), + [sym_is_expression] = STATE(3035), + [sym_is_pattern_expression] = STATE(3035), + [sym_cast_expression] = STATE(3035), + [sym_checked_expression] = STATE(3035), + [sym_invocation_expression] = STATE(3043), + [sym_switch_expression] = STATE(3035), + [sym_await_expression] = STATE(3043), + [sym_throw_expression] = STATE(3035), + [sym_element_access_expression] = STATE(2415), + [sym_interpolated_string_expression] = STATE(3035), + [sym_member_access_expression] = STATE(2415), + [sym_object_creation_expression] = STATE(3043), + [sym_parenthesized_expression] = STATE(3043), + [sym__parenthesized_lvalue_expression] = STATE(2415), + [sym_lambda_expression] = STATE(3035), + [sym__lambda_expression_init] = STATE(7412), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3035), + [sym_anonymous_method_expression] = STATE(3035), + [sym_anonymous_object_creation_expression] = STATE(3035), + [sym_implicit_array_creation_expression] = STATE(3035), + [sym_implicit_object_creation_expression] = STATE(3035), + [sym_implicit_stackalloc_expression] = STATE(3035), + [sym_initializer_expression] = STATE(3035), + [sym_default_expression] = STATE(3035), + [sym_with_expression] = STATE(3035), + [sym_sizeof_expression] = STATE(3035), + [sym_typeof_expression] = STATE(3035), + [sym_makeref_expression] = STATE(3035), + [sym_ref_expression] = STATE(3035), + [sym_reftype_expression] = STATE(3035), + [sym_refvalue_expression] = STATE(3035), + [sym_stackalloc_expression] = STATE(3035), + [sym_range_expression] = STATE(3035), + [sym_tuple_expression] = STATE(2415), + [sym_literal] = STATE(3035), + [sym_character_literal] = STATE(3037), + [sym_string_literal] = STATE(3037), + [sym_raw_string_literal] = STATE(3037), + [sym_boolean_literal] = STATE(3037), + [sym_identifier] = STATE(2261), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3035), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(1367), [sym_preproc_endregion] = STATE(1367), [sym_preproc_line] = STATE(1367), @@ -272882,47 +272768,47 @@ 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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3385), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3455), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1307), - [anon_sym_LPAREN] = ACTIONS(1543), - [anon_sym_ref] = ACTIONS(1545), - [anon_sym_LBRACE] = ACTIONS(1313), - [anon_sym_delegate] = ACTIONS(1315), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1239), + [anon_sym_LPAREN] = ACTIONS(1949), + [anon_sym_ref] = ACTIONS(1951), + [anon_sym_LBRACE] = ACTIONS(1245), + [anon_sym_delegate] = ACTIONS(1247), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1317), + [anon_sym_new] = ACTIONS(1249), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1319), - [anon_sym_BANG] = ACTIONS(1549), - [anon_sym_TILDE] = ACTIONS(1549), - [anon_sym_PLUS_PLUS] = ACTIONS(1549), - [anon_sym_DASH_DASH] = ACTIONS(1549), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1547), - [anon_sym_DASH] = ACTIONS(1547), - [anon_sym_STAR] = ACTIONS(1551), - [anon_sym_CARET] = ACTIONS(1549), - [anon_sym_AMP] = ACTIONS(1549), - [anon_sym_this] = ACTIONS(1323), + [anon_sym_checked] = ACTIONS(1251), + [anon_sym_BANG] = ACTIONS(1955), + [anon_sym_TILDE] = ACTIONS(1955), + [anon_sym_PLUS_PLUS] = ACTIONS(1955), + [anon_sym_DASH_DASH] = ACTIONS(1955), + [anon_sym_true] = ACTIONS(1257), + [anon_sym_false] = ACTIONS(1257), + [anon_sym_PLUS] = ACTIONS(1953), + [anon_sym_DASH] = ACTIONS(1953), + [anon_sym_STAR] = ACTIONS(1957), + [anon_sym_CARET] = ACTIONS(1955), + [anon_sym_AMP] = ACTIONS(1955), + [anon_sym_this] = ACTIONS(1261), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1325), + [anon_sym_base] = ACTIONS(1263), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1319), + [sym_predefined_type] = ACTIONS(1265), + [anon_sym_unchecked] = ACTIONS(1251), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1553), + [anon_sym_default] = ACTIONS(1267), + [anon_sym_throw] = ACTIONS(1959), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1555), - [anon_sym_DOT_DOT] = ACTIONS(1557), + [anon_sym_await] = ACTIONS(1961), + [anon_sym_DOT_DOT] = ACTIONS(1963), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -272935,19 +272821,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1333), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(1335), - [anon_sym___reftype] = ACTIONS(1337), - [anon_sym___refvalue] = ACTIONS(1339), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1341), + [anon_sym_stackalloc] = ACTIONS(1275), + [anon_sym_sizeof] = ACTIONS(1277), + [anon_sym_typeof] = ACTIONS(1279), + [anon_sym___makeref] = ACTIONS(1281), + [anon_sym___reftype] = ACTIONS(1283), + [anon_sym___refvalue] = ACTIONS(1285), + [sym_null_literal] = ACTIONS(1287), + [anon_sym_SQUOTE] = ACTIONS(1289), + [sym_integer_literal] = ACTIONS(1287), + [sym_real_literal] = ACTIONS(1291), + [anon_sym_DQUOTE] = ACTIONS(1293), + [sym_verbatim_string_literal] = ACTIONS(1291), + [aux_sym_preproc_if_token1] = ACTIONS(1295), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -272958,90 +272844,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(151), - [sym_interpolation_verbatim_start] = ACTIONS(153), - [sym_interpolation_raw_start] = ACTIONS(155), - [sym_raw_string_start] = ACTIONS(157), + [sym_interpolation_regular_start] = ACTIONS(1297), + [sym_interpolation_verbatim_start] = ACTIONS(1299), + [sym_interpolation_raw_start] = ACTIONS(1301), + [sym_raw_string_start] = ACTIONS(1303), }, [1368] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2762), - [sym__name] = STATE(5910), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2204), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(4882), - [sym_non_lvalue_expression] = STATE(3438), - [sym_lvalue_expression] = STATE(3535), - [sym__expression_statement_expression] = STATE(3362), - [sym_assignment_expression] = STATE(3449), - [sym_binary_expression] = STATE(3362), - [sym_postfix_unary_expression] = STATE(3449), - [sym_prefix_unary_expression] = STATE(3449), - [sym__pointer_indirection_expression] = STATE(2747), - [sym_query_expression] = STATE(3362), - [sym_from_clause] = STATE(6178), - [sym_conditional_expression] = STATE(3362), - [sym_conditional_access_expression] = STATE(3362), - [sym_as_expression] = STATE(3362), - [sym_is_expression] = STATE(3362), - [sym_is_pattern_expression] = STATE(3362), - [sym_cast_expression] = STATE(3362), - [sym_checked_expression] = STATE(3362), - [sym_invocation_expression] = STATE(3449), - [sym_switch_expression] = STATE(3362), - [sym_await_expression] = STATE(3449), - [sym_throw_expression] = STATE(3362), - [sym_element_access_expression] = STATE(2747), - [sym_interpolated_string_expression] = STATE(3362), - [sym_member_access_expression] = STATE(2747), - [sym_object_creation_expression] = STATE(3449), - [sym_parenthesized_expression] = STATE(3449), - [sym__parenthesized_lvalue_expression] = STATE(2747), - [sym_lambda_expression] = STATE(3362), - [sym__lambda_expression_init] = STATE(7384), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3362), - [sym_anonymous_method_expression] = STATE(3362), - [sym_anonymous_object_creation_expression] = STATE(3362), - [sym_implicit_array_creation_expression] = STATE(3362), - [sym_implicit_object_creation_expression] = STATE(3362), - [sym_implicit_stackalloc_expression] = STATE(3362), - [sym_initializer_expression] = STATE(3362), - [sym_default_expression] = STATE(3362), - [sym_with_expression] = STATE(3362), - [sym_sizeof_expression] = STATE(3362), - [sym_typeof_expression] = STATE(3362), - [sym_makeref_expression] = STATE(3362), - [sym_ref_expression] = STATE(3362), - [sym_reftype_expression] = STATE(3362), - [sym_refvalue_expression] = STATE(3362), - [sym_stackalloc_expression] = STATE(3362), - [sym_range_expression] = STATE(3362), - [sym_tuple_expression] = STATE(2747), - [sym_literal] = STATE(3362), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2267), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3362), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2416), + [sym__name] = STATE(5890), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2193), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(5233), + [sym_non_lvalue_expression] = STATE(3040), + [sym_lvalue_expression] = STATE(3549), + [sym__expression_statement_expression] = STATE(3035), + [sym_assignment_expression] = STATE(3043), + [sym_binary_expression] = STATE(3035), + [sym_postfix_unary_expression] = STATE(3043), + [sym_prefix_unary_expression] = STATE(3043), + [sym__pointer_indirection_expression] = STATE(2415), + [sym_query_expression] = STATE(3035), + [sym_from_clause] = STATE(6131), + [sym_conditional_expression] = STATE(3035), + [sym_conditional_access_expression] = STATE(3035), + [sym_as_expression] = STATE(3035), + [sym_is_expression] = STATE(3035), + [sym_is_pattern_expression] = STATE(3035), + [sym_cast_expression] = STATE(3035), + [sym_checked_expression] = STATE(3035), + [sym_invocation_expression] = STATE(3043), + [sym_switch_expression] = STATE(3035), + [sym_await_expression] = STATE(3043), + [sym_throw_expression] = STATE(3035), + [sym_element_access_expression] = STATE(2415), + [sym_interpolated_string_expression] = STATE(3035), + [sym_member_access_expression] = STATE(2415), + [sym_object_creation_expression] = STATE(3043), + [sym_parenthesized_expression] = STATE(3043), + [sym__parenthesized_lvalue_expression] = STATE(2415), + [sym_lambda_expression] = STATE(3035), + [sym__lambda_expression_init] = STATE(7412), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3035), + [sym_anonymous_method_expression] = STATE(3035), + [sym_anonymous_object_creation_expression] = STATE(3035), + [sym_implicit_array_creation_expression] = STATE(3035), + [sym_implicit_object_creation_expression] = STATE(3035), + [sym_implicit_stackalloc_expression] = STATE(3035), + [sym_initializer_expression] = STATE(3035), + [sym_default_expression] = STATE(3035), + [sym_with_expression] = STATE(3035), + [sym_sizeof_expression] = STATE(3035), + [sym_typeof_expression] = STATE(3035), + [sym_makeref_expression] = STATE(3035), + [sym_ref_expression] = STATE(3035), + [sym_reftype_expression] = STATE(3035), + [sym_refvalue_expression] = STATE(3035), + [sym_stackalloc_expression] = STATE(3035), + [sym_range_expression] = STATE(3035), + [sym_tuple_expression] = STATE(2415), + [sym_literal] = STATE(3035), + [sym_character_literal] = STATE(3037), + [sym_string_literal] = STATE(3037), + [sym_raw_string_literal] = STATE(3037), + [sym_boolean_literal] = STATE(3037), + [sym_identifier] = STATE(2261), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3035), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(1368), [sym_preproc_endregion] = STATE(1368), [sym_preproc_line] = STATE(1368), @@ -273051,47 +272937,47 @@ 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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3385), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3455), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1307), - [anon_sym_LPAREN] = ACTIONS(1543), - [anon_sym_ref] = ACTIONS(1545), - [anon_sym_LBRACE] = ACTIONS(1313), - [anon_sym_delegate] = ACTIONS(1315), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1239), + [anon_sym_LPAREN] = ACTIONS(1949), + [anon_sym_ref] = ACTIONS(1951), + [anon_sym_LBRACE] = ACTIONS(1245), + [anon_sym_delegate] = ACTIONS(1247), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1317), + [anon_sym_new] = ACTIONS(1249), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1319), - [anon_sym_BANG] = ACTIONS(1549), - [anon_sym_TILDE] = ACTIONS(1549), - [anon_sym_PLUS_PLUS] = ACTIONS(1549), - [anon_sym_DASH_DASH] = ACTIONS(1549), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1547), - [anon_sym_DASH] = ACTIONS(1547), - [anon_sym_STAR] = ACTIONS(1551), - [anon_sym_CARET] = ACTIONS(1549), - [anon_sym_AMP] = ACTIONS(1549), - [anon_sym_this] = ACTIONS(1323), + [anon_sym_checked] = ACTIONS(1251), + [anon_sym_BANG] = ACTIONS(1955), + [anon_sym_TILDE] = ACTIONS(1955), + [anon_sym_PLUS_PLUS] = ACTIONS(1955), + [anon_sym_DASH_DASH] = ACTIONS(1955), + [anon_sym_true] = ACTIONS(1257), + [anon_sym_false] = ACTIONS(1257), + [anon_sym_PLUS] = ACTIONS(1953), + [anon_sym_DASH] = ACTIONS(1953), + [anon_sym_STAR] = ACTIONS(1957), + [anon_sym_CARET] = ACTIONS(1955), + [anon_sym_AMP] = ACTIONS(1955), + [anon_sym_this] = ACTIONS(1261), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1325), + [anon_sym_base] = ACTIONS(1263), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1319), + [sym_predefined_type] = ACTIONS(1265), + [anon_sym_unchecked] = ACTIONS(1251), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1553), + [anon_sym_default] = ACTIONS(1267), + [anon_sym_throw] = ACTIONS(1959), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1555), - [anon_sym_DOT_DOT] = ACTIONS(1557), + [anon_sym_await] = ACTIONS(1961), + [anon_sym_DOT_DOT] = ACTIONS(1963), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -273104,19 +272990,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1333), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(1335), - [anon_sym___reftype] = ACTIONS(1337), - [anon_sym___refvalue] = ACTIONS(1339), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1341), + [anon_sym_stackalloc] = ACTIONS(1275), + [anon_sym_sizeof] = ACTIONS(1277), + [anon_sym_typeof] = ACTIONS(1279), + [anon_sym___makeref] = ACTIONS(1281), + [anon_sym___reftype] = ACTIONS(1283), + [anon_sym___refvalue] = ACTIONS(1285), + [sym_null_literal] = ACTIONS(1287), + [anon_sym_SQUOTE] = ACTIONS(1289), + [sym_integer_literal] = ACTIONS(1287), + [sym_real_literal] = ACTIONS(1291), + [anon_sym_DQUOTE] = ACTIONS(1293), + [sym_verbatim_string_literal] = ACTIONS(1291), + [aux_sym_preproc_if_token1] = ACTIONS(1295), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -273127,90 +273013,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(151), - [sym_interpolation_verbatim_start] = ACTIONS(153), - [sym_interpolation_raw_start] = ACTIONS(155), - [sym_raw_string_start] = ACTIONS(157), + [sym_interpolation_regular_start] = ACTIONS(1297), + [sym_interpolation_verbatim_start] = ACTIONS(1299), + [sym_interpolation_raw_start] = ACTIONS(1301), + [sym_raw_string_start] = ACTIONS(1303), }, [1369] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2762), - [sym__name] = STATE(5910), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2204), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(4883), - [sym_non_lvalue_expression] = STATE(3438), - [sym_lvalue_expression] = STATE(3535), - [sym__expression_statement_expression] = STATE(3362), - [sym_assignment_expression] = STATE(3449), - [sym_binary_expression] = STATE(3362), - [sym_postfix_unary_expression] = STATE(3449), - [sym_prefix_unary_expression] = STATE(3449), - [sym__pointer_indirection_expression] = STATE(2747), - [sym_query_expression] = STATE(3362), - [sym_from_clause] = STATE(6178), - [sym_conditional_expression] = STATE(3362), - [sym_conditional_access_expression] = STATE(3362), - [sym_as_expression] = STATE(3362), - [sym_is_expression] = STATE(3362), - [sym_is_pattern_expression] = STATE(3362), - [sym_cast_expression] = STATE(3362), - [sym_checked_expression] = STATE(3362), - [sym_invocation_expression] = STATE(3449), - [sym_switch_expression] = STATE(3362), - [sym_await_expression] = STATE(3449), - [sym_throw_expression] = STATE(3362), - [sym_element_access_expression] = STATE(2747), - [sym_interpolated_string_expression] = STATE(3362), - [sym_member_access_expression] = STATE(2747), - [sym_object_creation_expression] = STATE(3449), - [sym_parenthesized_expression] = STATE(3449), - [sym__parenthesized_lvalue_expression] = STATE(2747), - [sym_lambda_expression] = STATE(3362), - [sym__lambda_expression_init] = STATE(7384), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3362), - [sym_anonymous_method_expression] = STATE(3362), - [sym_anonymous_object_creation_expression] = STATE(3362), - [sym_implicit_array_creation_expression] = STATE(3362), - [sym_implicit_object_creation_expression] = STATE(3362), - [sym_implicit_stackalloc_expression] = STATE(3362), - [sym_initializer_expression] = STATE(3362), - [sym_default_expression] = STATE(3362), - [sym_with_expression] = STATE(3362), - [sym_sizeof_expression] = STATE(3362), - [sym_typeof_expression] = STATE(3362), - [sym_makeref_expression] = STATE(3362), - [sym_ref_expression] = STATE(3362), - [sym_reftype_expression] = STATE(3362), - [sym_refvalue_expression] = STATE(3362), - [sym_stackalloc_expression] = STATE(3362), - [sym_range_expression] = STATE(3362), - [sym_tuple_expression] = STATE(2747), - [sym_literal] = STATE(3362), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2267), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3362), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2416), + [sym__name] = STATE(5890), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2193), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(2904), + [sym_non_lvalue_expression] = STATE(3040), + [sym_lvalue_expression] = STATE(3549), + [sym__expression_statement_expression] = STATE(3035), + [sym_assignment_expression] = STATE(3043), + [sym_binary_expression] = STATE(3035), + [sym_postfix_unary_expression] = STATE(3043), + [sym_prefix_unary_expression] = STATE(3043), + [sym__pointer_indirection_expression] = STATE(2415), + [sym_query_expression] = STATE(3035), + [sym_from_clause] = STATE(6131), + [sym_conditional_expression] = STATE(3035), + [sym_conditional_access_expression] = STATE(3035), + [sym_as_expression] = STATE(3035), + [sym_is_expression] = STATE(3035), + [sym_is_pattern_expression] = STATE(3035), + [sym_cast_expression] = STATE(3035), + [sym_checked_expression] = STATE(3035), + [sym_invocation_expression] = STATE(3043), + [sym_switch_expression] = STATE(3035), + [sym_await_expression] = STATE(3043), + [sym_throw_expression] = STATE(3035), + [sym_element_access_expression] = STATE(2415), + [sym_interpolated_string_expression] = STATE(3035), + [sym_member_access_expression] = STATE(2415), + [sym_object_creation_expression] = STATE(3043), + [sym_parenthesized_expression] = STATE(3043), + [sym__parenthesized_lvalue_expression] = STATE(2415), + [sym_lambda_expression] = STATE(3035), + [sym__lambda_expression_init] = STATE(7412), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3035), + [sym_anonymous_method_expression] = STATE(3035), + [sym_anonymous_object_creation_expression] = STATE(3035), + [sym_implicit_array_creation_expression] = STATE(3035), + [sym_implicit_object_creation_expression] = STATE(3035), + [sym_implicit_stackalloc_expression] = STATE(3035), + [sym_initializer_expression] = STATE(3035), + [sym_default_expression] = STATE(3035), + [sym_with_expression] = STATE(3035), + [sym_sizeof_expression] = STATE(3035), + [sym_typeof_expression] = STATE(3035), + [sym_makeref_expression] = STATE(3035), + [sym_ref_expression] = STATE(3035), + [sym_reftype_expression] = STATE(3035), + [sym_refvalue_expression] = STATE(3035), + [sym_stackalloc_expression] = STATE(3035), + [sym_range_expression] = STATE(3035), + [sym_tuple_expression] = STATE(2415), + [sym_literal] = STATE(3035), + [sym_character_literal] = STATE(3037), + [sym_string_literal] = STATE(3037), + [sym_raw_string_literal] = STATE(3037), + [sym_boolean_literal] = STATE(3037), + [sym_identifier] = STATE(2261), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3035), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(1369), [sym_preproc_endregion] = STATE(1369), [sym_preproc_line] = STATE(1369), @@ -273220,47 +273106,47 @@ 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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3385), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3455), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1307), - [anon_sym_LPAREN] = ACTIONS(1543), - [anon_sym_ref] = ACTIONS(1545), - [anon_sym_LBRACE] = ACTIONS(1313), - [anon_sym_delegate] = ACTIONS(1315), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1239), + [anon_sym_LPAREN] = ACTIONS(1949), + [anon_sym_ref] = ACTIONS(1951), + [anon_sym_LBRACE] = ACTIONS(1245), + [anon_sym_delegate] = ACTIONS(1247), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1317), + [anon_sym_new] = ACTIONS(1249), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1319), - [anon_sym_BANG] = ACTIONS(1549), - [anon_sym_TILDE] = ACTIONS(1549), - [anon_sym_PLUS_PLUS] = ACTIONS(1549), - [anon_sym_DASH_DASH] = ACTIONS(1549), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1547), - [anon_sym_DASH] = ACTIONS(1547), - [anon_sym_STAR] = ACTIONS(1551), - [anon_sym_CARET] = ACTIONS(1549), - [anon_sym_AMP] = ACTIONS(1549), - [anon_sym_this] = ACTIONS(1323), + [anon_sym_checked] = ACTIONS(1251), + [anon_sym_BANG] = ACTIONS(1955), + [anon_sym_TILDE] = ACTIONS(1955), + [anon_sym_PLUS_PLUS] = ACTIONS(1955), + [anon_sym_DASH_DASH] = ACTIONS(1955), + [anon_sym_true] = ACTIONS(1257), + [anon_sym_false] = ACTIONS(1257), + [anon_sym_PLUS] = ACTIONS(1953), + [anon_sym_DASH] = ACTIONS(1953), + [anon_sym_STAR] = ACTIONS(1957), + [anon_sym_CARET] = ACTIONS(1955), + [anon_sym_AMP] = ACTIONS(1955), + [anon_sym_this] = ACTIONS(1261), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1325), + [anon_sym_base] = ACTIONS(1263), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1319), + [sym_predefined_type] = ACTIONS(1265), + [anon_sym_unchecked] = ACTIONS(1251), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1553), + [anon_sym_default] = ACTIONS(1267), + [anon_sym_throw] = ACTIONS(1959), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1555), - [anon_sym_DOT_DOT] = ACTIONS(1557), + [anon_sym_await] = ACTIONS(1961), + [anon_sym_DOT_DOT] = ACTIONS(1963), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -273273,19 +273159,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1333), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(1335), - [anon_sym___reftype] = ACTIONS(1337), - [anon_sym___refvalue] = ACTIONS(1339), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1341), + [anon_sym_stackalloc] = ACTIONS(1275), + [anon_sym_sizeof] = ACTIONS(1277), + [anon_sym_typeof] = ACTIONS(1279), + [anon_sym___makeref] = ACTIONS(1281), + [anon_sym___reftype] = ACTIONS(1283), + [anon_sym___refvalue] = ACTIONS(1285), + [sym_null_literal] = ACTIONS(1287), + [anon_sym_SQUOTE] = ACTIONS(1289), + [sym_integer_literal] = ACTIONS(1287), + [sym_real_literal] = ACTIONS(1291), + [anon_sym_DQUOTE] = ACTIONS(1293), + [sym_verbatim_string_literal] = ACTIONS(1291), + [aux_sym_preproc_if_token1] = ACTIONS(1295), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -273296,90 +273182,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(151), - [sym_interpolation_verbatim_start] = ACTIONS(153), - [sym_interpolation_raw_start] = ACTIONS(155), - [sym_raw_string_start] = ACTIONS(157), + [sym_interpolation_regular_start] = ACTIONS(1297), + [sym_interpolation_verbatim_start] = ACTIONS(1299), + [sym_interpolation_raw_start] = ACTIONS(1301), + [sym_raw_string_start] = ACTIONS(1303), }, [1370] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2762), - [sym__name] = STATE(5910), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2204), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(4885), - [sym_non_lvalue_expression] = STATE(3438), - [sym_lvalue_expression] = STATE(3535), - [sym__expression_statement_expression] = STATE(3362), - [sym_assignment_expression] = STATE(3449), - [sym_binary_expression] = STATE(3362), - [sym_postfix_unary_expression] = STATE(3449), - [sym_prefix_unary_expression] = STATE(3449), - [sym__pointer_indirection_expression] = STATE(2747), - [sym_query_expression] = STATE(3362), - [sym_from_clause] = STATE(6178), - [sym_conditional_expression] = STATE(3362), - [sym_conditional_access_expression] = STATE(3362), - [sym_as_expression] = STATE(3362), - [sym_is_expression] = STATE(3362), - [sym_is_pattern_expression] = STATE(3362), - [sym_cast_expression] = STATE(3362), - [sym_checked_expression] = STATE(3362), - [sym_invocation_expression] = STATE(3449), - [sym_switch_expression] = STATE(3362), - [sym_await_expression] = STATE(3449), - [sym_throw_expression] = STATE(3362), - [sym_element_access_expression] = STATE(2747), - [sym_interpolated_string_expression] = STATE(3362), - [sym_member_access_expression] = STATE(2747), - [sym_object_creation_expression] = STATE(3449), - [sym_parenthesized_expression] = STATE(3449), - [sym__parenthesized_lvalue_expression] = STATE(2747), - [sym_lambda_expression] = STATE(3362), - [sym__lambda_expression_init] = STATE(7384), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3362), - [sym_anonymous_method_expression] = STATE(3362), - [sym_anonymous_object_creation_expression] = STATE(3362), - [sym_implicit_array_creation_expression] = STATE(3362), - [sym_implicit_object_creation_expression] = STATE(3362), - [sym_implicit_stackalloc_expression] = STATE(3362), - [sym_initializer_expression] = STATE(3362), - [sym_default_expression] = STATE(3362), - [sym_with_expression] = STATE(3362), - [sym_sizeof_expression] = STATE(3362), - [sym_typeof_expression] = STATE(3362), - [sym_makeref_expression] = STATE(3362), - [sym_ref_expression] = STATE(3362), - [sym_reftype_expression] = STATE(3362), - [sym_refvalue_expression] = STATE(3362), - [sym_stackalloc_expression] = STATE(3362), - [sym_range_expression] = STATE(3362), - [sym_tuple_expression] = STATE(2747), - [sym_literal] = STATE(3362), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2267), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3362), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2901), + [sym__name] = STATE(5883), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2359), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(3988), + [sym_non_lvalue_expression] = STATE(3685), + [sym_lvalue_expression] = STATE(3073), + [sym__expression_statement_expression] = STATE(3836), + [sym_assignment_expression] = STATE(3689), + [sym_binary_expression] = STATE(3836), + [sym_postfix_unary_expression] = STATE(3689), + [sym_prefix_unary_expression] = STATE(3689), + [sym__pointer_indirection_expression] = STATE(2906), + [sym_query_expression] = STATE(3836), + [sym_from_clause] = STATE(6157), + [sym_conditional_expression] = STATE(3836), + [sym_conditional_access_expression] = STATE(3836), + [sym_as_expression] = STATE(3836), + [sym_is_expression] = STATE(3836), + [sym_is_pattern_expression] = STATE(3836), + [sym_cast_expression] = STATE(3836), + [sym_checked_expression] = STATE(3836), + [sym_invocation_expression] = STATE(3689), + [sym_switch_expression] = STATE(3836), + [sym_await_expression] = STATE(3689), + [sym_throw_expression] = STATE(3836), + [sym_element_access_expression] = STATE(2906), + [sym_interpolated_string_expression] = STATE(3836), + [sym_member_access_expression] = STATE(2906), + [sym_object_creation_expression] = STATE(3689), + [sym_parenthesized_expression] = STATE(3689), + [sym__parenthesized_lvalue_expression] = STATE(2906), + [sym_lambda_expression] = STATE(3836), + [sym__lambda_expression_init] = STATE(7460), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3836), + [sym_anonymous_method_expression] = STATE(3836), + [sym_anonymous_object_creation_expression] = STATE(3836), + [sym_implicit_array_creation_expression] = STATE(3836), + [sym_implicit_object_creation_expression] = STATE(3836), + [sym_implicit_stackalloc_expression] = STATE(3836), + [sym_initializer_expression] = STATE(3836), + [sym_default_expression] = STATE(3836), + [sym_with_expression] = STATE(3836), + [sym_sizeof_expression] = STATE(3836), + [sym_typeof_expression] = STATE(3836), + [sym_makeref_expression] = STATE(3836), + [sym_ref_expression] = STATE(3836), + [sym_reftype_expression] = STATE(3836), + [sym_refvalue_expression] = STATE(3836), + [sym_stackalloc_expression] = STATE(3836), + [sym_range_expression] = STATE(3836), + [sym_tuple_expression] = STATE(2906), + [sym_literal] = STATE(3836), + [sym_character_literal] = STATE(3843), + [sym_string_literal] = STATE(3843), + [sym_raw_string_literal] = STATE(3843), + [sym_boolean_literal] = STATE(3843), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3836), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(1370), [sym_preproc_endregion] = STATE(1370), [sym_preproc_line] = STATE(1370), @@ -273389,47 +273275,47 @@ 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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3385), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3477), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1307), - [anon_sym_LPAREN] = ACTIONS(1543), - [anon_sym_ref] = ACTIONS(1545), - [anon_sym_LBRACE] = ACTIONS(1313), - [anon_sym_delegate] = ACTIONS(1315), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1655), + [anon_sym_LPAREN] = ACTIONS(2061), + [anon_sym_ref] = ACTIONS(2063), + [anon_sym_LBRACE] = ACTIONS(1661), + [anon_sym_delegate] = ACTIONS(1663), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1317), + [anon_sym_new] = ACTIONS(1665), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1319), - [anon_sym_BANG] = ACTIONS(1549), - [anon_sym_TILDE] = ACTIONS(1549), - [anon_sym_PLUS_PLUS] = ACTIONS(1549), - [anon_sym_DASH_DASH] = ACTIONS(1549), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1547), - [anon_sym_DASH] = ACTIONS(1547), - [anon_sym_STAR] = ACTIONS(1551), - [anon_sym_CARET] = ACTIONS(1549), - [anon_sym_AMP] = ACTIONS(1549), - [anon_sym_this] = ACTIONS(1323), + [anon_sym_checked] = ACTIONS(1667), + [anon_sym_BANG] = ACTIONS(2067), + [anon_sym_TILDE] = ACTIONS(2067), + [anon_sym_PLUS_PLUS] = ACTIONS(2067), + [anon_sym_DASH_DASH] = ACTIONS(2067), + [anon_sym_true] = ACTIONS(1673), + [anon_sym_false] = ACTIONS(1673), + [anon_sym_PLUS] = ACTIONS(2065), + [anon_sym_DASH] = ACTIONS(2065), + [anon_sym_STAR] = ACTIONS(1675), + [anon_sym_CARET] = ACTIONS(2067), + [anon_sym_AMP] = ACTIONS(2067), + [anon_sym_this] = ACTIONS(1677), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1325), + [anon_sym_base] = ACTIONS(1679), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1319), + [sym_predefined_type] = ACTIONS(1681), + [anon_sym_unchecked] = ACTIONS(1667), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1553), + [anon_sym_default] = ACTIONS(1683), + [anon_sym_throw] = ACTIONS(2069), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1555), - [anon_sym_DOT_DOT] = ACTIONS(1557), + [anon_sym_await] = ACTIONS(2071), + [anon_sym_DOT_DOT] = ACTIONS(2073), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -273442,19 +273328,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1333), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(1335), - [anon_sym___reftype] = ACTIONS(1337), - [anon_sym___refvalue] = ACTIONS(1339), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1341), + [anon_sym_stackalloc] = ACTIONS(1691), + [anon_sym_sizeof] = ACTIONS(1693), + [anon_sym_typeof] = ACTIONS(1695), + [anon_sym___makeref] = ACTIONS(1697), + [anon_sym___reftype] = ACTIONS(1699), + [anon_sym___refvalue] = ACTIONS(1701), + [sym_null_literal] = ACTIONS(1703), + [anon_sym_SQUOTE] = ACTIONS(1705), + [sym_integer_literal] = ACTIONS(1703), + [sym_real_literal] = ACTIONS(1707), + [anon_sym_DQUOTE] = ACTIONS(1709), + [sym_verbatim_string_literal] = ACTIONS(1707), + [aux_sym_preproc_if_token1] = ACTIONS(1711), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -273465,90 +273351,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(151), - [sym_interpolation_verbatim_start] = ACTIONS(153), - [sym_interpolation_raw_start] = ACTIONS(155), - [sym_raw_string_start] = ACTIONS(157), + [sym_interpolation_regular_start] = ACTIONS(1713), + [sym_interpolation_verbatim_start] = ACTIONS(1715), + [sym_interpolation_raw_start] = ACTIONS(1717), + [sym_raw_string_start] = ACTIONS(1719), }, [1371] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2762), - [sym__name] = STATE(5910), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2204), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(4886), - [sym_non_lvalue_expression] = STATE(3438), - [sym_lvalue_expression] = STATE(3535), - [sym__expression_statement_expression] = STATE(3362), - [sym_assignment_expression] = STATE(3449), - [sym_binary_expression] = STATE(3362), - [sym_postfix_unary_expression] = STATE(3449), - [sym_prefix_unary_expression] = STATE(3449), - [sym__pointer_indirection_expression] = STATE(2747), - [sym_query_expression] = STATE(3362), - [sym_from_clause] = STATE(6178), - [sym_conditional_expression] = STATE(3362), - [sym_conditional_access_expression] = STATE(3362), - [sym_as_expression] = STATE(3362), - [sym_is_expression] = STATE(3362), - [sym_is_pattern_expression] = STATE(3362), - [sym_cast_expression] = STATE(3362), - [sym_checked_expression] = STATE(3362), - [sym_invocation_expression] = STATE(3449), - [sym_switch_expression] = STATE(3362), - [sym_await_expression] = STATE(3449), - [sym_throw_expression] = STATE(3362), - [sym_element_access_expression] = STATE(2747), - [sym_interpolated_string_expression] = STATE(3362), - [sym_member_access_expression] = STATE(2747), - [sym_object_creation_expression] = STATE(3449), - [sym_parenthesized_expression] = STATE(3449), - [sym__parenthesized_lvalue_expression] = STATE(2747), - [sym_lambda_expression] = STATE(3362), - [sym__lambda_expression_init] = STATE(7384), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3362), - [sym_anonymous_method_expression] = STATE(3362), - [sym_anonymous_object_creation_expression] = STATE(3362), - [sym_implicit_array_creation_expression] = STATE(3362), - [sym_implicit_object_creation_expression] = STATE(3362), - [sym_implicit_stackalloc_expression] = STATE(3362), - [sym_initializer_expression] = STATE(3362), - [sym_default_expression] = STATE(3362), - [sym_with_expression] = STATE(3362), - [sym_sizeof_expression] = STATE(3362), - [sym_typeof_expression] = STATE(3362), - [sym_makeref_expression] = STATE(3362), - [sym_ref_expression] = STATE(3362), - [sym_reftype_expression] = STATE(3362), - [sym_refvalue_expression] = STATE(3362), - [sym_stackalloc_expression] = STATE(3362), - [sym_range_expression] = STATE(3362), - [sym_tuple_expression] = STATE(2747), - [sym_literal] = STATE(3362), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2267), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3362), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2816), + [sym__name] = STATE(5893), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2361), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(4865), + [sym_non_lvalue_expression] = STATE(3495), + [sym_lvalue_expression] = STATE(3509), + [sym__expression_statement_expression] = STATE(3462), + [sym_assignment_expression] = STATE(3497), + [sym_binary_expression] = STATE(3462), + [sym_postfix_unary_expression] = STATE(3497), + [sym_prefix_unary_expression] = STATE(3497), + [sym__pointer_indirection_expression] = STATE(2815), + [sym_query_expression] = STATE(3462), + [sym_from_clause] = STATE(6150), + [sym_conditional_expression] = STATE(3462), + [sym_conditional_access_expression] = STATE(3462), + [sym_as_expression] = STATE(3462), + [sym_is_expression] = STATE(3462), + [sym_is_pattern_expression] = STATE(3462), + [sym_cast_expression] = STATE(3462), + [sym_checked_expression] = STATE(3462), + [sym_invocation_expression] = STATE(3497), + [sym_switch_expression] = STATE(3462), + [sym_await_expression] = STATE(3497), + [sym_throw_expression] = STATE(3462), + [sym_element_access_expression] = STATE(2815), + [sym_interpolated_string_expression] = STATE(3462), + [sym_member_access_expression] = STATE(2815), + [sym_object_creation_expression] = STATE(3497), + [sym_parenthesized_expression] = STATE(3497), + [sym__parenthesized_lvalue_expression] = STATE(2815), + [sym_lambda_expression] = STATE(3462), + [sym__lambda_expression_init] = STATE(7428), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3462), + [sym_anonymous_method_expression] = STATE(3462), + [sym_anonymous_object_creation_expression] = STATE(3462), + [sym_implicit_array_creation_expression] = STATE(3462), + [sym_implicit_object_creation_expression] = STATE(3462), + [sym_implicit_stackalloc_expression] = STATE(3462), + [sym_initializer_expression] = STATE(3462), + [sym_default_expression] = STATE(3462), + [sym_with_expression] = STATE(3462), + [sym_sizeof_expression] = STATE(3462), + [sym_typeof_expression] = STATE(3462), + [sym_makeref_expression] = STATE(3462), + [sym_ref_expression] = STATE(3462), + [sym_reftype_expression] = STATE(3462), + [sym_refvalue_expression] = STATE(3462), + [sym_stackalloc_expression] = STATE(3462), + [sym_range_expression] = STATE(3462), + [sym_tuple_expression] = STATE(2815), + [sym_literal] = STATE(3462), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3462), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(1371), [sym_preproc_endregion] = STATE(1371), [sym_preproc_line] = STATE(1371), @@ -273558,47 +273444,47 @@ 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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3385), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3367), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1307), - [anon_sym_LPAREN] = ACTIONS(1543), - [anon_sym_ref] = ACTIONS(1545), - [anon_sym_LBRACE] = ACTIONS(1313), - [anon_sym_delegate] = ACTIONS(1315), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1305), + [anon_sym_LPAREN] = ACTIONS(1839), + [anon_sym_ref] = ACTIONS(1841), + [anon_sym_LBRACE] = ACTIONS(1311), + [anon_sym_delegate] = ACTIONS(1313), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1317), + [anon_sym_new] = ACTIONS(1843), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1319), - [anon_sym_BANG] = ACTIONS(1549), - [anon_sym_TILDE] = ACTIONS(1549), - [anon_sym_PLUS_PLUS] = ACTIONS(1549), - [anon_sym_DASH_DASH] = ACTIONS(1549), + [anon_sym_checked] = ACTIONS(1317), + [anon_sym_BANG] = ACTIONS(1847), + [anon_sym_TILDE] = ACTIONS(1847), + [anon_sym_PLUS_PLUS] = ACTIONS(1847), + [anon_sym_DASH_DASH] = ACTIONS(1847), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1547), - [anon_sym_DASH] = ACTIONS(1547), - [anon_sym_STAR] = ACTIONS(1551), - [anon_sym_CARET] = ACTIONS(1549), - [anon_sym_AMP] = ACTIONS(1549), - [anon_sym_this] = ACTIONS(1323), + [anon_sym_PLUS] = ACTIONS(1845), + [anon_sym_DASH] = ACTIONS(1845), + [anon_sym_STAR] = ACTIONS(1849), + [anon_sym_CARET] = ACTIONS(1847), + [anon_sym_AMP] = ACTIONS(1847), + [anon_sym_this] = ACTIONS(1321), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1325), + [anon_sym_base] = ACTIONS(1323), [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1319), + [anon_sym_unchecked] = ACTIONS(1317), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1553), + [anon_sym_throw] = ACTIONS(1851), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1555), - [anon_sym_DOT_DOT] = ACTIONS(1557), + [anon_sym_await] = ACTIONS(1853), + [anon_sym_DOT_DOT] = ACTIONS(1855), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -273611,19 +273497,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1333), + [anon_sym_stackalloc] = ACTIONS(1331), [anon_sym_sizeof] = ACTIONS(129), [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(1335), - [anon_sym___reftype] = ACTIONS(1337), - [anon_sym___refvalue] = ACTIONS(1339), + [anon_sym___makeref] = ACTIONS(1333), + [anon_sym___reftype] = ACTIONS(1335), + [anon_sym___refvalue] = ACTIONS(1337), [sym_null_literal] = ACTIONS(139), [anon_sym_SQUOTE] = ACTIONS(141), [sym_integer_literal] = ACTIONS(139), [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1341), + [aux_sym_preproc_if_token1] = ACTIONS(1339), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -273640,84 +273526,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [1372] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2420), - [sym__name] = STATE(5887), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2197), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(4074), - [sym_non_lvalue_expression] = STATE(3066), - [sym_lvalue_expression] = STATE(3120), - [sym__expression_statement_expression] = STATE(3006), - [sym_assignment_expression] = STATE(3020), - [sym_binary_expression] = STATE(3006), - [sym_postfix_unary_expression] = STATE(3020), - [sym_prefix_unary_expression] = STATE(3020), - [sym__pointer_indirection_expression] = STATE(2423), - [sym_query_expression] = STATE(3006), - [sym_from_clause] = STATE(6152), - [sym_conditional_expression] = STATE(3006), - [sym_conditional_access_expression] = STATE(3006), - [sym_as_expression] = STATE(3006), - [sym_is_expression] = STATE(3006), - [sym_is_pattern_expression] = STATE(3006), - [sym_cast_expression] = STATE(3006), - [sym_checked_expression] = STATE(3006), - [sym_invocation_expression] = STATE(3020), - [sym_switch_expression] = STATE(3006), - [sym_await_expression] = STATE(3020), - [sym_throw_expression] = STATE(3006), - [sym_element_access_expression] = STATE(2423), - [sym_interpolated_string_expression] = STATE(3006), - [sym_member_access_expression] = STATE(2423), - [sym_object_creation_expression] = STATE(3020), - [sym_parenthesized_expression] = STATE(3020), - [sym__parenthesized_lvalue_expression] = STATE(2423), - [sym_lambda_expression] = STATE(3006), - [sym__lambda_expression_init] = STATE(7722), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3006), - [sym_anonymous_method_expression] = STATE(3006), - [sym_anonymous_object_creation_expression] = STATE(3006), - [sym_implicit_array_creation_expression] = STATE(3006), - [sym_implicit_object_creation_expression] = STATE(3006), - [sym_implicit_stackalloc_expression] = STATE(3006), - [sym_initializer_expression] = STATE(3006), - [sym_default_expression] = STATE(3006), - [sym_with_expression] = STATE(3006), - [sym_sizeof_expression] = STATE(3006), - [sym_typeof_expression] = STATE(3006), - [sym_makeref_expression] = STATE(3006), - [sym_ref_expression] = STATE(3006), - [sym_reftype_expression] = STATE(3006), - [sym_refvalue_expression] = STATE(3006), - [sym_stackalloc_expression] = STATE(3006), - [sym_range_expression] = STATE(3006), - [sym_tuple_expression] = STATE(2423), - [sym_literal] = STATE(3006), - [sym_character_literal] = STATE(3011), - [sym_string_literal] = STATE(3011), - [sym_raw_string_literal] = STATE(3011), - [sym_boolean_literal] = STATE(3011), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3006), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2816), + [sym__name] = STATE(5893), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2361), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(3195), + [sym_non_lvalue_expression] = STATE(3495), + [sym_lvalue_expression] = STATE(3509), + [sym__expression_statement_expression] = STATE(3462), + [sym_assignment_expression] = STATE(3497), + [sym_binary_expression] = STATE(3462), + [sym_postfix_unary_expression] = STATE(3497), + [sym_prefix_unary_expression] = STATE(3497), + [sym__pointer_indirection_expression] = STATE(2815), + [sym_query_expression] = STATE(3462), + [sym_from_clause] = STATE(6150), + [sym_conditional_expression] = STATE(3462), + [sym_conditional_access_expression] = STATE(3462), + [sym_as_expression] = STATE(3462), + [sym_is_expression] = STATE(3462), + [sym_is_pattern_expression] = STATE(3462), + [sym_cast_expression] = STATE(3462), + [sym_checked_expression] = STATE(3462), + [sym_invocation_expression] = STATE(3497), + [sym_switch_expression] = STATE(3462), + [sym_await_expression] = STATE(3497), + [sym_throw_expression] = STATE(3462), + [sym_element_access_expression] = STATE(2815), + [sym_interpolated_string_expression] = STATE(3462), + [sym_member_access_expression] = STATE(2815), + [sym_object_creation_expression] = STATE(3497), + [sym_parenthesized_expression] = STATE(3497), + [sym__parenthesized_lvalue_expression] = STATE(2815), + [sym_lambda_expression] = STATE(3462), + [sym__lambda_expression_init] = STATE(7428), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3462), + [sym_anonymous_method_expression] = STATE(3462), + [sym_anonymous_object_creation_expression] = STATE(3462), + [sym_implicit_array_creation_expression] = STATE(3462), + [sym_implicit_object_creation_expression] = STATE(3462), + [sym_implicit_stackalloc_expression] = STATE(3462), + [sym_initializer_expression] = STATE(3462), + [sym_default_expression] = STATE(3462), + [sym_with_expression] = STATE(3462), + [sym_sizeof_expression] = STATE(3462), + [sym_typeof_expression] = STATE(3462), + [sym_makeref_expression] = STATE(3462), + [sym_ref_expression] = STATE(3462), + [sym_reftype_expression] = STATE(3462), + [sym_refvalue_expression] = STATE(3462), + [sym_stackalloc_expression] = STATE(3462), + [sym_range_expression] = STATE(3462), + [sym_tuple_expression] = STATE(2815), + [sym_literal] = STATE(3462), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3462), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(1372), [sym_preproc_endregion] = STATE(1372), [sym_preproc_line] = STATE(1372), @@ -273727,47 +273613,47 @@ 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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3440), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3367), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1241), - [anon_sym_LPAREN] = ACTIONS(1243), - [anon_sym_ref] = ACTIONS(1245), - [anon_sym_LBRACE] = ACTIONS(1247), - [anon_sym_delegate] = ACTIONS(1249), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1305), + [anon_sym_LPAREN] = ACTIONS(1839), + [anon_sym_ref] = ACTIONS(1841), + [anon_sym_LBRACE] = ACTIONS(1311), + [anon_sym_delegate] = ACTIONS(1313), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1251), + [anon_sym_new] = ACTIONS(1843), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1253), - [anon_sym_BANG] = ACTIONS(1257), - [anon_sym_TILDE] = ACTIONS(1257), - [anon_sym_PLUS_PLUS] = ACTIONS(1257), - [anon_sym_DASH_DASH] = ACTIONS(1257), - [anon_sym_true] = ACTIONS(1259), - [anon_sym_false] = ACTIONS(1259), - [anon_sym_PLUS] = ACTIONS(1255), - [anon_sym_DASH] = ACTIONS(1255), - [anon_sym_STAR] = ACTIONS(1261), - [anon_sym_CARET] = ACTIONS(1257), - [anon_sym_AMP] = ACTIONS(1257), - [anon_sym_this] = ACTIONS(1263), + [anon_sym_checked] = ACTIONS(1317), + [anon_sym_BANG] = ACTIONS(1847), + [anon_sym_TILDE] = ACTIONS(1847), + [anon_sym_PLUS_PLUS] = ACTIONS(1847), + [anon_sym_DASH_DASH] = ACTIONS(1847), + [anon_sym_true] = ACTIONS(77), + [anon_sym_false] = ACTIONS(77), + [anon_sym_PLUS] = ACTIONS(1845), + [anon_sym_DASH] = ACTIONS(1845), + [anon_sym_STAR] = ACTIONS(1849), + [anon_sym_CARET] = ACTIONS(1847), + [anon_sym_AMP] = ACTIONS(1847), + [anon_sym_this] = ACTIONS(1321), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1265), + [anon_sym_base] = ACTIONS(1323), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1267), - [anon_sym_unchecked] = ACTIONS(1253), + [sym_predefined_type] = ACTIONS(91), + [anon_sym_unchecked] = ACTIONS(1317), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1269), - [anon_sym_throw] = ACTIONS(1271), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(1851), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1273), - [anon_sym_DOT_DOT] = ACTIONS(1275), + [anon_sym_await] = ACTIONS(1853), + [anon_sym_DOT_DOT] = ACTIONS(1855), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -273780,19 +273666,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1277), - [anon_sym_sizeof] = ACTIONS(1279), - [anon_sym_typeof] = ACTIONS(1281), - [anon_sym___makeref] = ACTIONS(1283), - [anon_sym___reftype] = ACTIONS(1285), - [anon_sym___refvalue] = ACTIONS(1287), - [sym_null_literal] = ACTIONS(1289), - [anon_sym_SQUOTE] = ACTIONS(1291), - [sym_integer_literal] = ACTIONS(1289), - [sym_real_literal] = ACTIONS(1293), - [anon_sym_DQUOTE] = ACTIONS(1295), - [sym_verbatim_string_literal] = ACTIONS(1293), - [aux_sym_preproc_if_token1] = ACTIONS(1297), + [anon_sym_stackalloc] = ACTIONS(1331), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(1333), + [anon_sym___reftype] = ACTIONS(1335), + [anon_sym___refvalue] = ACTIONS(1337), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_literal] = ACTIONS(143), + [anon_sym_DQUOTE] = ACTIONS(145), + [sym_verbatim_string_literal] = ACTIONS(143), + [aux_sym_preproc_if_token1] = ACTIONS(1339), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -273803,90 +273689,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1299), - [sym_interpolation_verbatim_start] = ACTIONS(1301), - [sym_interpolation_raw_start] = ACTIONS(1303), - [sym_raw_string_start] = ACTIONS(1305), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [sym_interpolation_raw_start] = ACTIONS(155), + [sym_raw_string_start] = ACTIONS(157), }, [1373] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2762), - [sym__name] = STATE(5910), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2204), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(3218), - [sym_non_lvalue_expression] = STATE(3438), - [sym_lvalue_expression] = STATE(3535), - [sym__expression_statement_expression] = STATE(3362), - [sym_assignment_expression] = STATE(3449), - [sym_binary_expression] = STATE(3362), - [sym_postfix_unary_expression] = STATE(3449), - [sym_prefix_unary_expression] = STATE(3449), - [sym__pointer_indirection_expression] = STATE(2747), - [sym_query_expression] = STATE(3362), - [sym_from_clause] = STATE(6178), - [sym_conditional_expression] = STATE(3362), - [sym_conditional_access_expression] = STATE(3362), - [sym_as_expression] = STATE(3362), - [sym_is_expression] = STATE(3362), - [sym_is_pattern_expression] = STATE(3362), - [sym_cast_expression] = STATE(3362), - [sym_checked_expression] = STATE(3362), - [sym_invocation_expression] = STATE(3449), - [sym_switch_expression] = STATE(3362), - [sym_await_expression] = STATE(3449), - [sym_throw_expression] = STATE(3362), - [sym_element_access_expression] = STATE(2747), - [sym_interpolated_string_expression] = STATE(3362), - [sym_member_access_expression] = STATE(2747), - [sym_object_creation_expression] = STATE(3449), - [sym_parenthesized_expression] = STATE(3449), - [sym__parenthesized_lvalue_expression] = STATE(2747), - [sym_lambda_expression] = STATE(3362), - [sym__lambda_expression_init] = STATE(7384), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3362), - [sym_anonymous_method_expression] = STATE(3362), - [sym_anonymous_object_creation_expression] = STATE(3362), - [sym_implicit_array_creation_expression] = STATE(3362), - [sym_implicit_object_creation_expression] = STATE(3362), - [sym_implicit_stackalloc_expression] = STATE(3362), - [sym_initializer_expression] = STATE(3362), - [sym_default_expression] = STATE(3362), - [sym_with_expression] = STATE(3362), - [sym_sizeof_expression] = STATE(3362), - [sym_typeof_expression] = STATE(3362), - [sym_makeref_expression] = STATE(3362), - [sym_ref_expression] = STATE(3362), - [sym_reftype_expression] = STATE(3362), - [sym_refvalue_expression] = STATE(3362), - [sym_stackalloc_expression] = STATE(3362), - [sym_range_expression] = STATE(3362), - [sym_tuple_expression] = STATE(2747), - [sym_literal] = STATE(3362), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2267), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3362), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2816), + [sym__name] = STATE(5893), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2361), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(4867), + [sym_non_lvalue_expression] = STATE(3495), + [sym_lvalue_expression] = STATE(3509), + [sym__expression_statement_expression] = STATE(3462), + [sym_assignment_expression] = STATE(3497), + [sym_binary_expression] = STATE(3462), + [sym_postfix_unary_expression] = STATE(3497), + [sym_prefix_unary_expression] = STATE(3497), + [sym__pointer_indirection_expression] = STATE(2815), + [sym_query_expression] = STATE(3462), + [sym_from_clause] = STATE(6150), + [sym_conditional_expression] = STATE(3462), + [sym_conditional_access_expression] = STATE(3462), + [sym_as_expression] = STATE(3462), + [sym_is_expression] = STATE(3462), + [sym_is_pattern_expression] = STATE(3462), + [sym_cast_expression] = STATE(3462), + [sym_checked_expression] = STATE(3462), + [sym_invocation_expression] = STATE(3497), + [sym_switch_expression] = STATE(3462), + [sym_await_expression] = STATE(3497), + [sym_throw_expression] = STATE(3462), + [sym_element_access_expression] = STATE(2815), + [sym_interpolated_string_expression] = STATE(3462), + [sym_member_access_expression] = STATE(2815), + [sym_object_creation_expression] = STATE(3497), + [sym_parenthesized_expression] = STATE(3497), + [sym__parenthesized_lvalue_expression] = STATE(2815), + [sym_lambda_expression] = STATE(3462), + [sym__lambda_expression_init] = STATE(7428), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3462), + [sym_anonymous_method_expression] = STATE(3462), + [sym_anonymous_object_creation_expression] = STATE(3462), + [sym_implicit_array_creation_expression] = STATE(3462), + [sym_implicit_object_creation_expression] = STATE(3462), + [sym_implicit_stackalloc_expression] = STATE(3462), + [sym_initializer_expression] = STATE(3462), + [sym_default_expression] = STATE(3462), + [sym_with_expression] = STATE(3462), + [sym_sizeof_expression] = STATE(3462), + [sym_typeof_expression] = STATE(3462), + [sym_makeref_expression] = STATE(3462), + [sym_ref_expression] = STATE(3462), + [sym_reftype_expression] = STATE(3462), + [sym_refvalue_expression] = STATE(3462), + [sym_stackalloc_expression] = STATE(3462), + [sym_range_expression] = STATE(3462), + [sym_tuple_expression] = STATE(2815), + [sym_literal] = STATE(3462), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3462), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(1373), [sym_preproc_endregion] = STATE(1373), [sym_preproc_line] = STATE(1373), @@ -273896,47 +273782,47 @@ 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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3385), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3367), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1307), - [anon_sym_LPAREN] = ACTIONS(1543), - [anon_sym_ref] = ACTIONS(1545), - [anon_sym_LBRACE] = ACTIONS(1313), - [anon_sym_delegate] = ACTIONS(1315), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1305), + [anon_sym_LPAREN] = ACTIONS(1839), + [anon_sym_ref] = ACTIONS(1841), + [anon_sym_LBRACE] = ACTIONS(1311), + [anon_sym_delegate] = ACTIONS(1313), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1317), + [anon_sym_new] = ACTIONS(1843), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1319), - [anon_sym_BANG] = ACTIONS(1549), - [anon_sym_TILDE] = ACTIONS(1549), - [anon_sym_PLUS_PLUS] = ACTIONS(1549), - [anon_sym_DASH_DASH] = ACTIONS(1549), + [anon_sym_checked] = ACTIONS(1317), + [anon_sym_BANG] = ACTIONS(1847), + [anon_sym_TILDE] = ACTIONS(1847), + [anon_sym_PLUS_PLUS] = ACTIONS(1847), + [anon_sym_DASH_DASH] = ACTIONS(1847), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1547), - [anon_sym_DASH] = ACTIONS(1547), - [anon_sym_STAR] = ACTIONS(1551), - [anon_sym_CARET] = ACTIONS(1549), - [anon_sym_AMP] = ACTIONS(1549), - [anon_sym_this] = ACTIONS(1323), + [anon_sym_PLUS] = ACTIONS(1845), + [anon_sym_DASH] = ACTIONS(1845), + [anon_sym_STAR] = ACTIONS(1849), + [anon_sym_CARET] = ACTIONS(1847), + [anon_sym_AMP] = ACTIONS(1847), + [anon_sym_this] = ACTIONS(1321), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1325), + [anon_sym_base] = ACTIONS(1323), [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1319), + [anon_sym_unchecked] = ACTIONS(1317), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1553), + [anon_sym_throw] = ACTIONS(1851), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1555), - [anon_sym_DOT_DOT] = ACTIONS(1557), + [anon_sym_await] = ACTIONS(1853), + [anon_sym_DOT_DOT] = ACTIONS(1855), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -273949,19 +273835,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1333), + [anon_sym_stackalloc] = ACTIONS(1331), [anon_sym_sizeof] = ACTIONS(129), [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(1335), - [anon_sym___reftype] = ACTIONS(1337), - [anon_sym___refvalue] = ACTIONS(1339), + [anon_sym___makeref] = ACTIONS(1333), + [anon_sym___reftype] = ACTIONS(1335), + [anon_sym___refvalue] = ACTIONS(1337), [sym_null_literal] = ACTIONS(139), [anon_sym_SQUOTE] = ACTIONS(141), [sym_integer_literal] = ACTIONS(139), [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1341), + [aux_sym_preproc_if_token1] = ACTIONS(1339), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -273978,84 +273864,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [1374] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2420), - [sym__name] = STATE(5887), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2197), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(4075), - [sym_non_lvalue_expression] = STATE(3066), - [sym_lvalue_expression] = STATE(3120), - [sym__expression_statement_expression] = STATE(3006), - [sym_assignment_expression] = STATE(3020), - [sym_binary_expression] = STATE(3006), - [sym_postfix_unary_expression] = STATE(3020), - [sym_prefix_unary_expression] = STATE(3020), - [sym__pointer_indirection_expression] = STATE(2423), - [sym_query_expression] = STATE(3006), - [sym_from_clause] = STATE(6152), - [sym_conditional_expression] = STATE(3006), - [sym_conditional_access_expression] = STATE(3006), - [sym_as_expression] = STATE(3006), - [sym_is_expression] = STATE(3006), - [sym_is_pattern_expression] = STATE(3006), - [sym_cast_expression] = STATE(3006), - [sym_checked_expression] = STATE(3006), - [sym_invocation_expression] = STATE(3020), - [sym_switch_expression] = STATE(3006), - [sym_await_expression] = STATE(3020), - [sym_throw_expression] = STATE(3006), - [sym_element_access_expression] = STATE(2423), - [sym_interpolated_string_expression] = STATE(3006), - [sym_member_access_expression] = STATE(2423), - [sym_object_creation_expression] = STATE(3020), - [sym_parenthesized_expression] = STATE(3020), - [sym__parenthesized_lvalue_expression] = STATE(2423), - [sym_lambda_expression] = STATE(3006), - [sym__lambda_expression_init] = STATE(7722), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3006), - [sym_anonymous_method_expression] = STATE(3006), - [sym_anonymous_object_creation_expression] = STATE(3006), - [sym_implicit_array_creation_expression] = STATE(3006), - [sym_implicit_object_creation_expression] = STATE(3006), - [sym_implicit_stackalloc_expression] = STATE(3006), - [sym_initializer_expression] = STATE(3006), - [sym_default_expression] = STATE(3006), - [sym_with_expression] = STATE(3006), - [sym_sizeof_expression] = STATE(3006), - [sym_typeof_expression] = STATE(3006), - [sym_makeref_expression] = STATE(3006), - [sym_ref_expression] = STATE(3006), - [sym_reftype_expression] = STATE(3006), - [sym_refvalue_expression] = STATE(3006), - [sym_stackalloc_expression] = STATE(3006), - [sym_range_expression] = STATE(3006), - [sym_tuple_expression] = STATE(2423), - [sym_literal] = STATE(3006), - [sym_character_literal] = STATE(3011), - [sym_string_literal] = STATE(3011), - [sym_raw_string_literal] = STATE(3011), - [sym_boolean_literal] = STATE(3011), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3006), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(5152), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2196), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5876), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(5381), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3640), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3102), + [sym_postfix_unary_expression] = STATE(3079), + [sym_prefix_unary_expression] = STATE(3079), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6137), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3102), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3079), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3102), + [sym_member_access_expression] = STATE(2472), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3079), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7645), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(3102), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3102), + [sym_typeof_expression] = STATE(3102), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2472), + [sym_literal] = STATE(3102), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(1374), [sym_preproc_endregion] = STATE(1374), [sym_preproc_line] = STATE(1374), @@ -274065,47 +273951,47 @@ 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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3440), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1241), - [anon_sym_LPAREN] = ACTIONS(1243), - [anon_sym_ref] = ACTIONS(1245), - [anon_sym_LBRACE] = ACTIONS(1247), - [anon_sym_delegate] = ACTIONS(1249), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1479), + [anon_sym_LPAREN] = ACTIONS(2081), + [anon_sym_ref] = ACTIONS(2083), + [anon_sym_LBRACE] = ACTIONS(1481), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1251), + [anon_sym_new] = ACTIONS(1059), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1253), - [anon_sym_BANG] = ACTIONS(1257), - [anon_sym_TILDE] = ACTIONS(1257), - [anon_sym_PLUS_PLUS] = ACTIONS(1257), - [anon_sym_DASH_DASH] = ACTIONS(1257), - [anon_sym_true] = ACTIONS(1259), - [anon_sym_false] = ACTIONS(1259), - [anon_sym_PLUS] = ACTIONS(1255), - [anon_sym_DASH] = ACTIONS(1255), - [anon_sym_STAR] = ACTIONS(1261), - [anon_sym_CARET] = ACTIONS(1257), - [anon_sym_AMP] = ACTIONS(1257), - [anon_sym_this] = ACTIONS(1263), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(2087), + [anon_sym_TILDE] = ACTIONS(2087), + [anon_sym_PLUS_PLUS] = ACTIONS(2087), + [anon_sym_DASH_DASH] = ACTIONS(2087), + [anon_sym_true] = ACTIONS(77), + [anon_sym_false] = ACTIONS(77), + [anon_sym_PLUS] = ACTIONS(2085), + [anon_sym_DASH] = ACTIONS(2085), + [anon_sym_STAR] = ACTIONS(81), + [anon_sym_CARET] = ACTIONS(2087), + [anon_sym_AMP] = ACTIONS(2087), + [anon_sym_this] = ACTIONS(83), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1265), + [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1267), - [anon_sym_unchecked] = ACTIONS(1253), + [sym_predefined_type] = ACTIONS(91), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1269), - [anon_sym_throw] = ACTIONS(1271), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(2089), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1273), - [anon_sym_DOT_DOT] = ACTIONS(1275), + [anon_sym_await] = ACTIONS(2091), + [anon_sym_DOT_DOT] = ACTIONS(2093), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -274118,19 +274004,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1277), - [anon_sym_sizeof] = ACTIONS(1279), - [anon_sym_typeof] = ACTIONS(1281), - [anon_sym___makeref] = ACTIONS(1283), - [anon_sym___reftype] = ACTIONS(1285), - [anon_sym___refvalue] = ACTIONS(1287), - [sym_null_literal] = ACTIONS(1289), - [anon_sym_SQUOTE] = ACTIONS(1291), - [sym_integer_literal] = ACTIONS(1289), - [sym_real_literal] = ACTIONS(1293), - [anon_sym_DQUOTE] = ACTIONS(1295), - [sym_verbatim_string_literal] = ACTIONS(1293), - [aux_sym_preproc_if_token1] = ACTIONS(1297), + [anon_sym_stackalloc] = ACTIONS(127), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_literal] = ACTIONS(143), + [anon_sym_DQUOTE] = ACTIONS(145), + [sym_verbatim_string_literal] = ACTIONS(143), + [aux_sym_preproc_if_token1] = ACTIONS(2095), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -274141,90 +274027,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1299), - [sym_interpolation_verbatim_start] = ACTIONS(1301), - [sym_interpolation_raw_start] = ACTIONS(1303), - [sym_raw_string_start] = ACTIONS(1305), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [sym_interpolation_raw_start] = ACTIONS(155), + [sym_raw_string_start] = ACTIONS(157), }, [1375] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2762), - [sym__name] = STATE(5910), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2204), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(4890), - [sym_non_lvalue_expression] = STATE(3438), - [sym_lvalue_expression] = STATE(3535), - [sym__expression_statement_expression] = STATE(3362), - [sym_assignment_expression] = STATE(3449), - [sym_binary_expression] = STATE(3362), - [sym_postfix_unary_expression] = STATE(3449), - [sym_prefix_unary_expression] = STATE(3449), - [sym__pointer_indirection_expression] = STATE(2747), - [sym_query_expression] = STATE(3362), - [sym_from_clause] = STATE(6178), - [sym_conditional_expression] = STATE(3362), - [sym_conditional_access_expression] = STATE(3362), - [sym_as_expression] = STATE(3362), - [sym_is_expression] = STATE(3362), - [sym_is_pattern_expression] = STATE(3362), - [sym_cast_expression] = STATE(3362), - [sym_checked_expression] = STATE(3362), - [sym_invocation_expression] = STATE(3449), - [sym_switch_expression] = STATE(3362), - [sym_await_expression] = STATE(3449), - [sym_throw_expression] = STATE(3362), - [sym_element_access_expression] = STATE(2747), - [sym_interpolated_string_expression] = STATE(3362), - [sym_member_access_expression] = STATE(2747), - [sym_object_creation_expression] = STATE(3449), - [sym_parenthesized_expression] = STATE(3449), - [sym__parenthesized_lvalue_expression] = STATE(2747), - [sym_lambda_expression] = STATE(3362), - [sym__lambda_expression_init] = STATE(7384), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3362), - [sym_anonymous_method_expression] = STATE(3362), - [sym_anonymous_object_creation_expression] = STATE(3362), - [sym_implicit_array_creation_expression] = STATE(3362), - [sym_implicit_object_creation_expression] = STATE(3362), - [sym_implicit_stackalloc_expression] = STATE(3362), - [sym_initializer_expression] = STATE(3362), - [sym_default_expression] = STATE(3362), - [sym_with_expression] = STATE(3362), - [sym_sizeof_expression] = STATE(3362), - [sym_typeof_expression] = STATE(3362), - [sym_makeref_expression] = STATE(3362), - [sym_ref_expression] = STATE(3362), - [sym_reftype_expression] = STATE(3362), - [sym_refvalue_expression] = STATE(3362), - [sym_stackalloc_expression] = STATE(3362), - [sym_range_expression] = STATE(3362), - [sym_tuple_expression] = STATE(2747), - [sym_literal] = STATE(3362), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2267), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3362), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2816), + [sym__name] = STATE(5893), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2361), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(4870), + [sym_non_lvalue_expression] = STATE(3495), + [sym_lvalue_expression] = STATE(3509), + [sym__expression_statement_expression] = STATE(3462), + [sym_assignment_expression] = STATE(3497), + [sym_binary_expression] = STATE(3462), + [sym_postfix_unary_expression] = STATE(3497), + [sym_prefix_unary_expression] = STATE(3497), + [sym__pointer_indirection_expression] = STATE(2815), + [sym_query_expression] = STATE(3462), + [sym_from_clause] = STATE(6150), + [sym_conditional_expression] = STATE(3462), + [sym_conditional_access_expression] = STATE(3462), + [sym_as_expression] = STATE(3462), + [sym_is_expression] = STATE(3462), + [sym_is_pattern_expression] = STATE(3462), + [sym_cast_expression] = STATE(3462), + [sym_checked_expression] = STATE(3462), + [sym_invocation_expression] = STATE(3497), + [sym_switch_expression] = STATE(3462), + [sym_await_expression] = STATE(3497), + [sym_throw_expression] = STATE(3462), + [sym_element_access_expression] = STATE(2815), + [sym_interpolated_string_expression] = STATE(3462), + [sym_member_access_expression] = STATE(2815), + [sym_object_creation_expression] = STATE(3497), + [sym_parenthesized_expression] = STATE(3497), + [sym__parenthesized_lvalue_expression] = STATE(2815), + [sym_lambda_expression] = STATE(3462), + [sym__lambda_expression_init] = STATE(7428), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3462), + [sym_anonymous_method_expression] = STATE(3462), + [sym_anonymous_object_creation_expression] = STATE(3462), + [sym_implicit_array_creation_expression] = STATE(3462), + [sym_implicit_object_creation_expression] = STATE(3462), + [sym_implicit_stackalloc_expression] = STATE(3462), + [sym_initializer_expression] = STATE(3462), + [sym_default_expression] = STATE(3462), + [sym_with_expression] = STATE(3462), + [sym_sizeof_expression] = STATE(3462), + [sym_typeof_expression] = STATE(3462), + [sym_makeref_expression] = STATE(3462), + [sym_ref_expression] = STATE(3462), + [sym_reftype_expression] = STATE(3462), + [sym_refvalue_expression] = STATE(3462), + [sym_stackalloc_expression] = STATE(3462), + [sym_range_expression] = STATE(3462), + [sym_tuple_expression] = STATE(2815), + [sym_literal] = STATE(3462), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3462), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(1375), [sym_preproc_endregion] = STATE(1375), [sym_preproc_line] = STATE(1375), @@ -274234,47 +274120,47 @@ 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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3385), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3367), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1307), - [anon_sym_LPAREN] = ACTIONS(1543), - [anon_sym_ref] = ACTIONS(1545), - [anon_sym_LBRACE] = ACTIONS(1313), - [anon_sym_delegate] = ACTIONS(1315), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1305), + [anon_sym_LPAREN] = ACTIONS(1839), + [anon_sym_ref] = ACTIONS(1841), + [anon_sym_LBRACE] = ACTIONS(1311), + [anon_sym_delegate] = ACTIONS(1313), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1317), + [anon_sym_new] = ACTIONS(1843), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1319), - [anon_sym_BANG] = ACTIONS(1549), - [anon_sym_TILDE] = ACTIONS(1549), - [anon_sym_PLUS_PLUS] = ACTIONS(1549), - [anon_sym_DASH_DASH] = ACTIONS(1549), + [anon_sym_checked] = ACTIONS(1317), + [anon_sym_BANG] = ACTIONS(1847), + [anon_sym_TILDE] = ACTIONS(1847), + [anon_sym_PLUS_PLUS] = ACTIONS(1847), + [anon_sym_DASH_DASH] = ACTIONS(1847), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1547), - [anon_sym_DASH] = ACTIONS(1547), - [anon_sym_STAR] = ACTIONS(1551), - [anon_sym_CARET] = ACTIONS(1549), - [anon_sym_AMP] = ACTIONS(1549), - [anon_sym_this] = ACTIONS(1323), + [anon_sym_PLUS] = ACTIONS(1845), + [anon_sym_DASH] = ACTIONS(1845), + [anon_sym_STAR] = ACTIONS(1849), + [anon_sym_CARET] = ACTIONS(1847), + [anon_sym_AMP] = ACTIONS(1847), + [anon_sym_this] = ACTIONS(1321), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1325), + [anon_sym_base] = ACTIONS(1323), [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1319), + [anon_sym_unchecked] = ACTIONS(1317), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1553), + [anon_sym_throw] = ACTIONS(1851), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1555), - [anon_sym_DOT_DOT] = ACTIONS(1557), + [anon_sym_await] = ACTIONS(1853), + [anon_sym_DOT_DOT] = ACTIONS(1855), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -274287,19 +274173,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1333), + [anon_sym_stackalloc] = ACTIONS(1331), [anon_sym_sizeof] = ACTIONS(129), [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(1335), - [anon_sym___reftype] = ACTIONS(1337), - [anon_sym___refvalue] = ACTIONS(1339), + [anon_sym___makeref] = ACTIONS(1333), + [anon_sym___reftype] = ACTIONS(1335), + [anon_sym___refvalue] = ACTIONS(1337), [sym_null_literal] = ACTIONS(139), [anon_sym_SQUOTE] = ACTIONS(141), [sym_integer_literal] = ACTIONS(139), [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1341), + [aux_sym_preproc_if_token1] = ACTIONS(1339), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -274316,84 +274202,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [1376] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2762), - [sym__name] = STATE(5910), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2204), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(3163), - [sym_non_lvalue_expression] = STATE(3438), - [sym_lvalue_expression] = STATE(3535), - [sym__expression_statement_expression] = STATE(3362), - [sym_assignment_expression] = STATE(3449), - [sym_binary_expression] = STATE(3362), - [sym_postfix_unary_expression] = STATE(3449), - [sym_prefix_unary_expression] = STATE(3449), - [sym__pointer_indirection_expression] = STATE(2747), - [sym_query_expression] = STATE(3362), - [sym_from_clause] = STATE(6178), - [sym_conditional_expression] = STATE(3362), - [sym_conditional_access_expression] = STATE(3362), - [sym_as_expression] = STATE(3362), - [sym_is_expression] = STATE(3362), - [sym_is_pattern_expression] = STATE(3362), - [sym_cast_expression] = STATE(3362), - [sym_checked_expression] = STATE(3362), - [sym_invocation_expression] = STATE(3449), - [sym_switch_expression] = STATE(3362), - [sym_await_expression] = STATE(3449), - [sym_throw_expression] = STATE(3362), - [sym_element_access_expression] = STATE(2747), - [sym_interpolated_string_expression] = STATE(3362), - [sym_member_access_expression] = STATE(2747), - [sym_object_creation_expression] = STATE(3449), - [sym_parenthesized_expression] = STATE(3449), - [sym__parenthesized_lvalue_expression] = STATE(2747), - [sym_lambda_expression] = STATE(3362), - [sym__lambda_expression_init] = STATE(7384), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3362), - [sym_anonymous_method_expression] = STATE(3362), - [sym_anonymous_object_creation_expression] = STATE(3362), - [sym_implicit_array_creation_expression] = STATE(3362), - [sym_implicit_object_creation_expression] = STATE(3362), - [sym_implicit_stackalloc_expression] = STATE(3362), - [sym_initializer_expression] = STATE(3362), - [sym_default_expression] = STATE(3362), - [sym_with_expression] = STATE(3362), - [sym_sizeof_expression] = STATE(3362), - [sym_typeof_expression] = STATE(3362), - [sym_makeref_expression] = STATE(3362), - [sym_ref_expression] = STATE(3362), - [sym_reftype_expression] = STATE(3362), - [sym_refvalue_expression] = STATE(3362), - [sym_stackalloc_expression] = STATE(3362), - [sym_range_expression] = STATE(3362), - [sym_tuple_expression] = STATE(2747), - [sym_literal] = STATE(3362), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2267), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3362), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2603), + [sym__name] = STATE(5872), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2387), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(4715), + [sym_non_lvalue_expression] = STATE(3220), + [sym_lvalue_expression] = STATE(3395), + [sym__expression_statement_expression] = STATE(3236), + [sym_assignment_expression] = STATE(3221), + [sym_binary_expression] = STATE(3236), + [sym_postfix_unary_expression] = STATE(3221), + [sym_prefix_unary_expression] = STATE(3221), + [sym__pointer_indirection_expression] = STATE(2602), + [sym_query_expression] = STATE(3236), + [sym_from_clause] = STATE(6141), + [sym_conditional_expression] = STATE(3236), + [sym_conditional_access_expression] = STATE(3236), + [sym_as_expression] = STATE(3236), + [sym_is_expression] = STATE(3236), + [sym_is_pattern_expression] = STATE(3236), + [sym_cast_expression] = STATE(3236), + [sym_checked_expression] = STATE(3236), + [sym_invocation_expression] = STATE(3221), + [sym_switch_expression] = STATE(3236), + [sym_await_expression] = STATE(3221), + [sym_throw_expression] = STATE(3236), + [sym_element_access_expression] = STATE(2602), + [sym_interpolated_string_expression] = STATE(3236), + [sym_member_access_expression] = STATE(2602), + [sym_object_creation_expression] = STATE(3221), + [sym_parenthesized_expression] = STATE(3221), + [sym__parenthesized_lvalue_expression] = STATE(2602), + [sym_lambda_expression] = STATE(3236), + [sym__lambda_expression_init] = STATE(7446), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3236), + [sym_anonymous_method_expression] = STATE(3236), + [sym_anonymous_object_creation_expression] = STATE(3236), + [sym_implicit_array_creation_expression] = STATE(3236), + [sym_implicit_object_creation_expression] = STATE(3236), + [sym_implicit_stackalloc_expression] = STATE(3236), + [sym_initializer_expression] = STATE(3236), + [sym_default_expression] = STATE(3236), + [sym_with_expression] = STATE(3236), + [sym_sizeof_expression] = STATE(3236), + [sym_typeof_expression] = STATE(3236), + [sym_makeref_expression] = STATE(3236), + [sym_ref_expression] = STATE(3236), + [sym_reftype_expression] = STATE(3236), + [sym_refvalue_expression] = STATE(3236), + [sym_stackalloc_expression] = STATE(3236), + [sym_range_expression] = STATE(3236), + [sym_tuple_expression] = STATE(2602), + [sym_literal] = STATE(3236), + [sym_character_literal] = STATE(3272), + [sym_string_literal] = STATE(3272), + [sym_raw_string_literal] = STATE(3272), + [sym_boolean_literal] = STATE(3272), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3236), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(1376), [sym_preproc_endregion] = STATE(1376), [sym_preproc_line] = STATE(1376), @@ -274403,47 +274289,47 @@ 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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3385), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3379), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1307), - [anon_sym_LPAREN] = ACTIONS(1543), - [anon_sym_ref] = ACTIONS(1545), - [anon_sym_LBRACE] = ACTIONS(1313), - [anon_sym_delegate] = ACTIONS(1315), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1149), + [anon_sym_LPAREN] = ACTIONS(1857), + [anon_sym_ref] = ACTIONS(1859), + [anon_sym_LBRACE] = ACTIONS(1155), + [anon_sym_delegate] = ACTIONS(1157), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1317), + [anon_sym_new] = ACTIONS(1861), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1319), - [anon_sym_BANG] = ACTIONS(1549), - [anon_sym_TILDE] = ACTIONS(1549), - [anon_sym_PLUS_PLUS] = ACTIONS(1549), - [anon_sym_DASH_DASH] = ACTIONS(1549), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1547), - [anon_sym_DASH] = ACTIONS(1547), - [anon_sym_STAR] = ACTIONS(1551), - [anon_sym_CARET] = ACTIONS(1549), - [anon_sym_AMP] = ACTIONS(1549), - [anon_sym_this] = ACTIONS(1323), + [anon_sym_checked] = ACTIONS(1163), + [anon_sym_BANG] = ACTIONS(1865), + [anon_sym_TILDE] = ACTIONS(1865), + [anon_sym_PLUS_PLUS] = ACTIONS(1865), + [anon_sym_DASH_DASH] = ACTIONS(1865), + [anon_sym_true] = ACTIONS(1169), + [anon_sym_false] = ACTIONS(1169), + [anon_sym_PLUS] = ACTIONS(1863), + [anon_sym_DASH] = ACTIONS(1863), + [anon_sym_STAR] = ACTIONS(1867), + [anon_sym_CARET] = ACTIONS(1865), + [anon_sym_AMP] = ACTIONS(1865), + [anon_sym_this] = ACTIONS(1173), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1325), + [anon_sym_base] = ACTIONS(1175), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1319), + [sym_predefined_type] = ACTIONS(1177), + [anon_sym_unchecked] = ACTIONS(1163), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1553), + [anon_sym_default] = ACTIONS(1179), + [anon_sym_throw] = ACTIONS(1869), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1555), - [anon_sym_DOT_DOT] = ACTIONS(1557), + [anon_sym_await] = ACTIONS(1871), + [anon_sym_DOT_DOT] = ACTIONS(1873), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -274456,19 +274342,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1333), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(1335), - [anon_sym___reftype] = ACTIONS(1337), - [anon_sym___refvalue] = ACTIONS(1339), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1341), + [anon_sym_stackalloc] = ACTIONS(1187), + [anon_sym_sizeof] = ACTIONS(1189), + [anon_sym_typeof] = ACTIONS(1191), + [anon_sym___makeref] = ACTIONS(1193), + [anon_sym___reftype] = ACTIONS(1195), + [anon_sym___refvalue] = ACTIONS(1197), + [sym_null_literal] = ACTIONS(1199), + [anon_sym_SQUOTE] = ACTIONS(1201), + [sym_integer_literal] = ACTIONS(1199), + [sym_real_literal] = ACTIONS(1203), + [anon_sym_DQUOTE] = ACTIONS(1205), + [sym_verbatim_string_literal] = ACTIONS(1203), + [aux_sym_preproc_if_token1] = ACTIONS(1207), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -274479,90 +274365,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(151), - [sym_interpolation_verbatim_start] = ACTIONS(153), - [sym_interpolation_raw_start] = ACTIONS(155), - [sym_raw_string_start] = ACTIONS(157), + [sym_interpolation_regular_start] = ACTIONS(1209), + [sym_interpolation_verbatim_start] = ACTIONS(1211), + [sym_interpolation_raw_start] = ACTIONS(1213), + [sym_raw_string_start] = ACTIONS(1215), }, [1377] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2420), - [sym__name] = STATE(5887), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2197), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(4076), - [sym_non_lvalue_expression] = STATE(3066), - [sym_lvalue_expression] = STATE(3120), - [sym__expression_statement_expression] = STATE(3006), - [sym_assignment_expression] = STATE(3020), - [sym_binary_expression] = STATE(3006), - [sym_postfix_unary_expression] = STATE(3020), - [sym_prefix_unary_expression] = STATE(3020), - [sym__pointer_indirection_expression] = STATE(2423), - [sym_query_expression] = STATE(3006), - [sym_from_clause] = STATE(6152), - [sym_conditional_expression] = STATE(3006), - [sym_conditional_access_expression] = STATE(3006), - [sym_as_expression] = STATE(3006), - [sym_is_expression] = STATE(3006), - [sym_is_pattern_expression] = STATE(3006), - [sym_cast_expression] = STATE(3006), - [sym_checked_expression] = STATE(3006), - [sym_invocation_expression] = STATE(3020), - [sym_switch_expression] = STATE(3006), - [sym_await_expression] = STATE(3020), - [sym_throw_expression] = STATE(3006), - [sym_element_access_expression] = STATE(2423), - [sym_interpolated_string_expression] = STATE(3006), - [sym_member_access_expression] = STATE(2423), - [sym_object_creation_expression] = STATE(3020), - [sym_parenthesized_expression] = STATE(3020), - [sym__parenthesized_lvalue_expression] = STATE(2423), - [sym_lambda_expression] = STATE(3006), - [sym__lambda_expression_init] = STATE(7722), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3006), - [sym_anonymous_method_expression] = STATE(3006), - [sym_anonymous_object_creation_expression] = STATE(3006), - [sym_implicit_array_creation_expression] = STATE(3006), - [sym_implicit_object_creation_expression] = STATE(3006), - [sym_implicit_stackalloc_expression] = STATE(3006), - [sym_initializer_expression] = STATE(3006), - [sym_default_expression] = STATE(3006), - [sym_with_expression] = STATE(3006), - [sym_sizeof_expression] = STATE(3006), - [sym_typeof_expression] = STATE(3006), - [sym_makeref_expression] = STATE(3006), - [sym_ref_expression] = STATE(3006), - [sym_reftype_expression] = STATE(3006), - [sym_refvalue_expression] = STATE(3006), - [sym_stackalloc_expression] = STATE(3006), - [sym_range_expression] = STATE(3006), - [sym_tuple_expression] = STATE(2423), - [sym_literal] = STATE(3006), - [sym_character_literal] = STATE(3011), - [sym_string_literal] = STATE(3011), - [sym_raw_string_literal] = STATE(3011), - [sym_boolean_literal] = STATE(3011), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3006), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2603), + [sym__name] = STATE(5872), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2387), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(3123), + [sym_non_lvalue_expression] = STATE(3220), + [sym_lvalue_expression] = STATE(3395), + [sym__expression_statement_expression] = STATE(3236), + [sym_assignment_expression] = STATE(3221), + [sym_binary_expression] = STATE(3236), + [sym_postfix_unary_expression] = STATE(3221), + [sym_prefix_unary_expression] = STATE(3221), + [sym__pointer_indirection_expression] = STATE(2602), + [sym_query_expression] = STATE(3236), + [sym_from_clause] = STATE(6141), + [sym_conditional_expression] = STATE(3236), + [sym_conditional_access_expression] = STATE(3236), + [sym_as_expression] = STATE(3236), + [sym_is_expression] = STATE(3236), + [sym_is_pattern_expression] = STATE(3236), + [sym_cast_expression] = STATE(3236), + [sym_checked_expression] = STATE(3236), + [sym_invocation_expression] = STATE(3221), + [sym_switch_expression] = STATE(3236), + [sym_await_expression] = STATE(3221), + [sym_throw_expression] = STATE(3236), + [sym_element_access_expression] = STATE(2602), + [sym_interpolated_string_expression] = STATE(3236), + [sym_member_access_expression] = STATE(2602), + [sym_object_creation_expression] = STATE(3221), + [sym_parenthesized_expression] = STATE(3221), + [sym__parenthesized_lvalue_expression] = STATE(2602), + [sym_lambda_expression] = STATE(3236), + [sym__lambda_expression_init] = STATE(7446), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3236), + [sym_anonymous_method_expression] = STATE(3236), + [sym_anonymous_object_creation_expression] = STATE(3236), + [sym_implicit_array_creation_expression] = STATE(3236), + [sym_implicit_object_creation_expression] = STATE(3236), + [sym_implicit_stackalloc_expression] = STATE(3236), + [sym_initializer_expression] = STATE(3236), + [sym_default_expression] = STATE(3236), + [sym_with_expression] = STATE(3236), + [sym_sizeof_expression] = STATE(3236), + [sym_typeof_expression] = STATE(3236), + [sym_makeref_expression] = STATE(3236), + [sym_ref_expression] = STATE(3236), + [sym_reftype_expression] = STATE(3236), + [sym_refvalue_expression] = STATE(3236), + [sym_stackalloc_expression] = STATE(3236), + [sym_range_expression] = STATE(3236), + [sym_tuple_expression] = STATE(2602), + [sym_literal] = STATE(3236), + [sym_character_literal] = STATE(3272), + [sym_string_literal] = STATE(3272), + [sym_raw_string_literal] = STATE(3272), + [sym_boolean_literal] = STATE(3272), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3236), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(1377), [sym_preproc_endregion] = STATE(1377), [sym_preproc_line] = STATE(1377), @@ -274572,47 +274458,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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3440), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3379), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1241), - [anon_sym_LPAREN] = ACTIONS(1243), - [anon_sym_ref] = ACTIONS(1245), - [anon_sym_LBRACE] = ACTIONS(1247), - [anon_sym_delegate] = ACTIONS(1249), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1149), + [anon_sym_LPAREN] = ACTIONS(1857), + [anon_sym_ref] = ACTIONS(1859), + [anon_sym_LBRACE] = ACTIONS(1155), + [anon_sym_delegate] = ACTIONS(1157), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1251), + [anon_sym_new] = ACTIONS(1861), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1253), - [anon_sym_BANG] = ACTIONS(1257), - [anon_sym_TILDE] = ACTIONS(1257), - [anon_sym_PLUS_PLUS] = ACTIONS(1257), - [anon_sym_DASH_DASH] = ACTIONS(1257), - [anon_sym_true] = ACTIONS(1259), - [anon_sym_false] = ACTIONS(1259), - [anon_sym_PLUS] = ACTIONS(1255), - [anon_sym_DASH] = ACTIONS(1255), - [anon_sym_STAR] = ACTIONS(1261), - [anon_sym_CARET] = ACTIONS(1257), - [anon_sym_AMP] = ACTIONS(1257), - [anon_sym_this] = ACTIONS(1263), + [anon_sym_checked] = ACTIONS(1163), + [anon_sym_BANG] = ACTIONS(1865), + [anon_sym_TILDE] = ACTIONS(1865), + [anon_sym_PLUS_PLUS] = ACTIONS(1865), + [anon_sym_DASH_DASH] = ACTIONS(1865), + [anon_sym_true] = ACTIONS(1169), + [anon_sym_false] = ACTIONS(1169), + [anon_sym_PLUS] = ACTIONS(1863), + [anon_sym_DASH] = ACTIONS(1863), + [anon_sym_STAR] = ACTIONS(1867), + [anon_sym_CARET] = ACTIONS(1865), + [anon_sym_AMP] = ACTIONS(1865), + [anon_sym_this] = ACTIONS(1173), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1265), + [anon_sym_base] = ACTIONS(1175), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1267), - [anon_sym_unchecked] = ACTIONS(1253), + [sym_predefined_type] = ACTIONS(1177), + [anon_sym_unchecked] = ACTIONS(1163), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1269), - [anon_sym_throw] = ACTIONS(1271), + [anon_sym_default] = ACTIONS(1179), + [anon_sym_throw] = ACTIONS(1869), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1273), - [anon_sym_DOT_DOT] = ACTIONS(1275), + [anon_sym_await] = ACTIONS(1871), + [anon_sym_DOT_DOT] = ACTIONS(1873), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -274625,19 +274511,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1277), - [anon_sym_sizeof] = ACTIONS(1279), - [anon_sym_typeof] = ACTIONS(1281), - [anon_sym___makeref] = ACTIONS(1283), - [anon_sym___reftype] = ACTIONS(1285), - [anon_sym___refvalue] = ACTIONS(1287), - [sym_null_literal] = ACTIONS(1289), - [anon_sym_SQUOTE] = ACTIONS(1291), - [sym_integer_literal] = ACTIONS(1289), - [sym_real_literal] = ACTIONS(1293), - [anon_sym_DQUOTE] = ACTIONS(1295), - [sym_verbatim_string_literal] = ACTIONS(1293), - [aux_sym_preproc_if_token1] = ACTIONS(1297), + [anon_sym_stackalloc] = ACTIONS(1187), + [anon_sym_sizeof] = ACTIONS(1189), + [anon_sym_typeof] = ACTIONS(1191), + [anon_sym___makeref] = ACTIONS(1193), + [anon_sym___reftype] = ACTIONS(1195), + [anon_sym___refvalue] = ACTIONS(1197), + [sym_null_literal] = ACTIONS(1199), + [anon_sym_SQUOTE] = ACTIONS(1201), + [sym_integer_literal] = ACTIONS(1199), + [sym_real_literal] = ACTIONS(1203), + [anon_sym_DQUOTE] = ACTIONS(1205), + [sym_verbatim_string_literal] = ACTIONS(1203), + [aux_sym_preproc_if_token1] = ACTIONS(1207), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -274648,90 +274534,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1299), - [sym_interpolation_verbatim_start] = ACTIONS(1301), - [sym_interpolation_raw_start] = ACTIONS(1303), - [sym_raw_string_start] = ACTIONS(1305), + [sym_interpolation_regular_start] = ACTIONS(1209), + [sym_interpolation_verbatim_start] = ACTIONS(1211), + [sym_interpolation_raw_start] = ACTIONS(1213), + [sym_raw_string_start] = ACTIONS(1215), }, [1378] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2762), - [sym__name] = STATE(5910), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2204), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(4892), - [sym_non_lvalue_expression] = STATE(3438), - [sym_lvalue_expression] = STATE(3535), - [sym__expression_statement_expression] = STATE(3362), - [sym_assignment_expression] = STATE(3449), - [sym_binary_expression] = STATE(3362), - [sym_postfix_unary_expression] = STATE(3449), - [sym_prefix_unary_expression] = STATE(3449), - [sym__pointer_indirection_expression] = STATE(2747), - [sym_query_expression] = STATE(3362), - [sym_from_clause] = STATE(6178), - [sym_conditional_expression] = STATE(3362), - [sym_conditional_access_expression] = STATE(3362), - [sym_as_expression] = STATE(3362), - [sym_is_expression] = STATE(3362), - [sym_is_pattern_expression] = STATE(3362), - [sym_cast_expression] = STATE(3362), - [sym_checked_expression] = STATE(3362), - [sym_invocation_expression] = STATE(3449), - [sym_switch_expression] = STATE(3362), - [sym_await_expression] = STATE(3449), - [sym_throw_expression] = STATE(3362), - [sym_element_access_expression] = STATE(2747), - [sym_interpolated_string_expression] = STATE(3362), - [sym_member_access_expression] = STATE(2747), - [sym_object_creation_expression] = STATE(3449), - [sym_parenthesized_expression] = STATE(3449), - [sym__parenthesized_lvalue_expression] = STATE(2747), - [sym_lambda_expression] = STATE(3362), - [sym__lambda_expression_init] = STATE(7384), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3362), - [sym_anonymous_method_expression] = STATE(3362), - [sym_anonymous_object_creation_expression] = STATE(3362), - [sym_implicit_array_creation_expression] = STATE(3362), - [sym_implicit_object_creation_expression] = STATE(3362), - [sym_implicit_stackalloc_expression] = STATE(3362), - [sym_initializer_expression] = STATE(3362), - [sym_default_expression] = STATE(3362), - [sym_with_expression] = STATE(3362), - [sym_sizeof_expression] = STATE(3362), - [sym_typeof_expression] = STATE(3362), - [sym_makeref_expression] = STATE(3362), - [sym_ref_expression] = STATE(3362), - [sym_reftype_expression] = STATE(3362), - [sym_refvalue_expression] = STATE(3362), - [sym_stackalloc_expression] = STATE(3362), - [sym_range_expression] = STATE(3362), - [sym_tuple_expression] = STATE(2747), - [sym_literal] = STATE(3362), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2267), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3362), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2603), + [sym__name] = STATE(5872), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2387), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(4567), + [sym_non_lvalue_expression] = STATE(3220), + [sym_lvalue_expression] = STATE(3395), + [sym__expression_statement_expression] = STATE(3236), + [sym_assignment_expression] = STATE(3221), + [sym_binary_expression] = STATE(3236), + [sym_postfix_unary_expression] = STATE(3221), + [sym_prefix_unary_expression] = STATE(3221), + [sym__pointer_indirection_expression] = STATE(2602), + [sym_query_expression] = STATE(3236), + [sym_from_clause] = STATE(6141), + [sym_conditional_expression] = STATE(3236), + [sym_conditional_access_expression] = STATE(3236), + [sym_as_expression] = STATE(3236), + [sym_is_expression] = STATE(3236), + [sym_is_pattern_expression] = STATE(3236), + [sym_cast_expression] = STATE(3236), + [sym_checked_expression] = STATE(3236), + [sym_invocation_expression] = STATE(3221), + [sym_switch_expression] = STATE(3236), + [sym_await_expression] = STATE(3221), + [sym_throw_expression] = STATE(3236), + [sym_element_access_expression] = STATE(2602), + [sym_interpolated_string_expression] = STATE(3236), + [sym_member_access_expression] = STATE(2602), + [sym_object_creation_expression] = STATE(3221), + [sym_parenthesized_expression] = STATE(3221), + [sym__parenthesized_lvalue_expression] = STATE(2602), + [sym_lambda_expression] = STATE(3236), + [sym__lambda_expression_init] = STATE(7446), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3236), + [sym_anonymous_method_expression] = STATE(3236), + [sym_anonymous_object_creation_expression] = STATE(3236), + [sym_implicit_array_creation_expression] = STATE(3236), + [sym_implicit_object_creation_expression] = STATE(3236), + [sym_implicit_stackalloc_expression] = STATE(3236), + [sym_initializer_expression] = STATE(3236), + [sym_default_expression] = STATE(3236), + [sym_with_expression] = STATE(3236), + [sym_sizeof_expression] = STATE(3236), + [sym_typeof_expression] = STATE(3236), + [sym_makeref_expression] = STATE(3236), + [sym_ref_expression] = STATE(3236), + [sym_reftype_expression] = STATE(3236), + [sym_refvalue_expression] = STATE(3236), + [sym_stackalloc_expression] = STATE(3236), + [sym_range_expression] = STATE(3236), + [sym_tuple_expression] = STATE(2602), + [sym_literal] = STATE(3236), + [sym_character_literal] = STATE(3272), + [sym_string_literal] = STATE(3272), + [sym_raw_string_literal] = STATE(3272), + [sym_boolean_literal] = STATE(3272), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3236), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(1378), [sym_preproc_endregion] = STATE(1378), [sym_preproc_line] = STATE(1378), @@ -274741,47 +274627,47 @@ 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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3385), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3379), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1307), - [anon_sym_LPAREN] = ACTIONS(1543), - [anon_sym_ref] = ACTIONS(1545), - [anon_sym_LBRACE] = ACTIONS(1313), - [anon_sym_delegate] = ACTIONS(1315), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1149), + [anon_sym_LPAREN] = ACTIONS(1857), + [anon_sym_ref] = ACTIONS(1859), + [anon_sym_LBRACE] = ACTIONS(1155), + [anon_sym_delegate] = ACTIONS(1157), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1317), + [anon_sym_new] = ACTIONS(1861), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1319), - [anon_sym_BANG] = ACTIONS(1549), - [anon_sym_TILDE] = ACTIONS(1549), - [anon_sym_PLUS_PLUS] = ACTIONS(1549), - [anon_sym_DASH_DASH] = ACTIONS(1549), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1547), - [anon_sym_DASH] = ACTIONS(1547), - [anon_sym_STAR] = ACTIONS(1551), - [anon_sym_CARET] = ACTIONS(1549), - [anon_sym_AMP] = ACTIONS(1549), - [anon_sym_this] = ACTIONS(1323), + [anon_sym_checked] = ACTIONS(1163), + [anon_sym_BANG] = ACTIONS(1865), + [anon_sym_TILDE] = ACTIONS(1865), + [anon_sym_PLUS_PLUS] = ACTIONS(1865), + [anon_sym_DASH_DASH] = ACTIONS(1865), + [anon_sym_true] = ACTIONS(1169), + [anon_sym_false] = ACTIONS(1169), + [anon_sym_PLUS] = ACTIONS(1863), + [anon_sym_DASH] = ACTIONS(1863), + [anon_sym_STAR] = ACTIONS(1867), + [anon_sym_CARET] = ACTIONS(1865), + [anon_sym_AMP] = ACTIONS(1865), + [anon_sym_this] = ACTIONS(1173), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1325), + [anon_sym_base] = ACTIONS(1175), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1319), + [sym_predefined_type] = ACTIONS(1177), + [anon_sym_unchecked] = ACTIONS(1163), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1553), + [anon_sym_default] = ACTIONS(1179), + [anon_sym_throw] = ACTIONS(1869), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1555), - [anon_sym_DOT_DOT] = ACTIONS(1557), + [anon_sym_await] = ACTIONS(1871), + [anon_sym_DOT_DOT] = ACTIONS(1873), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -274794,19 +274680,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1333), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(1335), - [anon_sym___reftype] = ACTIONS(1337), - [anon_sym___refvalue] = ACTIONS(1339), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1341), + [anon_sym_stackalloc] = ACTIONS(1187), + [anon_sym_sizeof] = ACTIONS(1189), + [anon_sym_typeof] = ACTIONS(1191), + [anon_sym___makeref] = ACTIONS(1193), + [anon_sym___reftype] = ACTIONS(1195), + [anon_sym___refvalue] = ACTIONS(1197), + [sym_null_literal] = ACTIONS(1199), + [anon_sym_SQUOTE] = ACTIONS(1201), + [sym_integer_literal] = ACTIONS(1199), + [sym_real_literal] = ACTIONS(1203), + [anon_sym_DQUOTE] = ACTIONS(1205), + [sym_verbatim_string_literal] = ACTIONS(1203), + [aux_sym_preproc_if_token1] = ACTIONS(1207), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -274817,90 +274703,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(151), - [sym_interpolation_verbatim_start] = ACTIONS(153), - [sym_interpolation_raw_start] = ACTIONS(155), - [sym_raw_string_start] = ACTIONS(157), + [sym_interpolation_regular_start] = ACTIONS(1209), + [sym_interpolation_verbatim_start] = ACTIONS(1211), + [sym_interpolation_raw_start] = ACTIONS(1213), + [sym_raw_string_start] = ACTIONS(1215), }, [1379] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2762), - [sym__name] = STATE(5910), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2204), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(4277), - [sym_non_lvalue_expression] = STATE(3438), - [sym_lvalue_expression] = STATE(3162), - [sym__expression_statement_expression] = STATE(3362), - [sym_assignment_expression] = STATE(3449), - [sym_binary_expression] = STATE(3362), - [sym_postfix_unary_expression] = STATE(3449), - [sym_prefix_unary_expression] = STATE(3449), - [sym__pointer_indirection_expression] = STATE(2747), - [sym_query_expression] = STATE(3362), - [sym_from_clause] = STATE(6171), - [sym_conditional_expression] = STATE(3362), - [sym_conditional_access_expression] = STATE(3362), - [sym_as_expression] = STATE(3362), - [sym_is_expression] = STATE(3362), - [sym_is_pattern_expression] = STATE(3362), - [sym_cast_expression] = STATE(3362), - [sym_checked_expression] = STATE(3362), - [sym_invocation_expression] = STATE(3449), - [sym_switch_expression] = STATE(3362), - [sym_await_expression] = STATE(3449), - [sym_throw_expression] = STATE(3362), - [sym_element_access_expression] = STATE(2747), - [sym_interpolated_string_expression] = STATE(3362), - [sym_member_access_expression] = STATE(2747), - [sym_object_creation_expression] = STATE(3449), - [sym_parenthesized_expression] = STATE(3449), - [sym__parenthesized_lvalue_expression] = STATE(2747), - [sym_lambda_expression] = STATE(3362), - [sym__lambda_expression_init] = STATE(7320), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3362), - [sym_anonymous_method_expression] = STATE(3362), - [sym_anonymous_object_creation_expression] = STATE(3362), - [sym_implicit_array_creation_expression] = STATE(3362), - [sym_implicit_object_creation_expression] = STATE(3362), - [sym_implicit_stackalloc_expression] = STATE(3362), - [sym_initializer_expression] = STATE(3362), - [sym_default_expression] = STATE(3362), - [sym_with_expression] = STATE(3362), - [sym_sizeof_expression] = STATE(3362), - [sym_typeof_expression] = STATE(3362), - [sym_makeref_expression] = STATE(3362), - [sym_ref_expression] = STATE(3362), - [sym_reftype_expression] = STATE(3362), - [sym_refvalue_expression] = STATE(3362), - [sym_stackalloc_expression] = STATE(3362), - [sym_range_expression] = STATE(3362), - [sym_tuple_expression] = STATE(2747), - [sym_literal] = STATE(3362), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3362), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2603), + [sym__name] = STATE(5872), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2387), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(4568), + [sym_non_lvalue_expression] = STATE(3220), + [sym_lvalue_expression] = STATE(3395), + [sym__expression_statement_expression] = STATE(3236), + [sym_assignment_expression] = STATE(3221), + [sym_binary_expression] = STATE(3236), + [sym_postfix_unary_expression] = STATE(3221), + [sym_prefix_unary_expression] = STATE(3221), + [sym__pointer_indirection_expression] = STATE(2602), + [sym_query_expression] = STATE(3236), + [sym_from_clause] = STATE(6141), + [sym_conditional_expression] = STATE(3236), + [sym_conditional_access_expression] = STATE(3236), + [sym_as_expression] = STATE(3236), + [sym_is_expression] = STATE(3236), + [sym_is_pattern_expression] = STATE(3236), + [sym_cast_expression] = STATE(3236), + [sym_checked_expression] = STATE(3236), + [sym_invocation_expression] = STATE(3221), + [sym_switch_expression] = STATE(3236), + [sym_await_expression] = STATE(3221), + [sym_throw_expression] = STATE(3236), + [sym_element_access_expression] = STATE(2602), + [sym_interpolated_string_expression] = STATE(3236), + [sym_member_access_expression] = STATE(2602), + [sym_object_creation_expression] = STATE(3221), + [sym_parenthesized_expression] = STATE(3221), + [sym__parenthesized_lvalue_expression] = STATE(2602), + [sym_lambda_expression] = STATE(3236), + [sym__lambda_expression_init] = STATE(7446), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3236), + [sym_anonymous_method_expression] = STATE(3236), + [sym_anonymous_object_creation_expression] = STATE(3236), + [sym_implicit_array_creation_expression] = STATE(3236), + [sym_implicit_object_creation_expression] = STATE(3236), + [sym_implicit_stackalloc_expression] = STATE(3236), + [sym_initializer_expression] = STATE(3236), + [sym_default_expression] = STATE(3236), + [sym_with_expression] = STATE(3236), + [sym_sizeof_expression] = STATE(3236), + [sym_typeof_expression] = STATE(3236), + [sym_makeref_expression] = STATE(3236), + [sym_ref_expression] = STATE(3236), + [sym_reftype_expression] = STATE(3236), + [sym_refvalue_expression] = STATE(3236), + [sym_stackalloc_expression] = STATE(3236), + [sym_range_expression] = STATE(3236), + [sym_tuple_expression] = STATE(2602), + [sym_literal] = STATE(3236), + [sym_character_literal] = STATE(3272), + [sym_string_literal] = STATE(3272), + [sym_raw_string_literal] = STATE(3272), + [sym_boolean_literal] = STATE(3272), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3236), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(1379), [sym_preproc_endregion] = STATE(1379), [sym_preproc_line] = STATE(1379), @@ -274910,47 +274796,47 @@ 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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3385), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3379), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1307), - [anon_sym_LPAREN] = ACTIONS(1343), - [anon_sym_ref] = ACTIONS(1345), - [anon_sym_LBRACE] = ACTIONS(1313), - [anon_sym_delegate] = ACTIONS(1315), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1149), + [anon_sym_LPAREN] = ACTIONS(1857), + [anon_sym_ref] = ACTIONS(1859), + [anon_sym_LBRACE] = ACTIONS(1155), + [anon_sym_delegate] = ACTIONS(1157), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1317), + [anon_sym_new] = ACTIONS(1861), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1319), - [anon_sym_BANG] = ACTIONS(1349), - [anon_sym_TILDE] = ACTIONS(1349), - [anon_sym_PLUS_PLUS] = ACTIONS(1349), - [anon_sym_DASH_DASH] = ACTIONS(1349), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1347), - [anon_sym_DASH] = ACTIONS(1347), - [anon_sym_STAR] = ACTIONS(1351), - [anon_sym_CARET] = ACTIONS(1349), - [anon_sym_AMP] = ACTIONS(1349), - [anon_sym_this] = ACTIONS(1323), + [anon_sym_checked] = ACTIONS(1163), + [anon_sym_BANG] = ACTIONS(1865), + [anon_sym_TILDE] = ACTIONS(1865), + [anon_sym_PLUS_PLUS] = ACTIONS(1865), + [anon_sym_DASH_DASH] = ACTIONS(1865), + [anon_sym_true] = ACTIONS(1169), + [anon_sym_false] = ACTIONS(1169), + [anon_sym_PLUS] = ACTIONS(1863), + [anon_sym_DASH] = ACTIONS(1863), + [anon_sym_STAR] = ACTIONS(1867), + [anon_sym_CARET] = ACTIONS(1865), + [anon_sym_AMP] = ACTIONS(1865), + [anon_sym_this] = ACTIONS(1173), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1325), + [anon_sym_base] = ACTIONS(1175), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1319), + [sym_predefined_type] = ACTIONS(1177), + [anon_sym_unchecked] = ACTIONS(1163), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1353), + [anon_sym_default] = ACTIONS(1179), + [anon_sym_throw] = ACTIONS(1869), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1355), - [anon_sym_DOT_DOT] = ACTIONS(1357), + [anon_sym_await] = ACTIONS(1871), + [anon_sym_DOT_DOT] = ACTIONS(1873), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -274963,19 +274849,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1333), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(1335), - [anon_sym___reftype] = ACTIONS(1337), - [anon_sym___refvalue] = ACTIONS(1339), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1341), + [anon_sym_stackalloc] = ACTIONS(1187), + [anon_sym_sizeof] = ACTIONS(1189), + [anon_sym_typeof] = ACTIONS(1191), + [anon_sym___makeref] = ACTIONS(1193), + [anon_sym___reftype] = ACTIONS(1195), + [anon_sym___refvalue] = ACTIONS(1197), + [sym_null_literal] = ACTIONS(1199), + [anon_sym_SQUOTE] = ACTIONS(1201), + [sym_integer_literal] = ACTIONS(1199), + [sym_real_literal] = ACTIONS(1203), + [anon_sym_DQUOTE] = ACTIONS(1205), + [sym_verbatim_string_literal] = ACTIONS(1203), + [aux_sym_preproc_if_token1] = ACTIONS(1207), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -274986,90 +274872,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(151), - [sym_interpolation_verbatim_start] = ACTIONS(153), - [sym_interpolation_raw_start] = ACTIONS(155), - [sym_raw_string_start] = ACTIONS(157), + [sym_interpolation_regular_start] = ACTIONS(1209), + [sym_interpolation_verbatim_start] = ACTIONS(1211), + [sym_interpolation_raw_start] = ACTIONS(1213), + [sym_raw_string_start] = ACTIONS(1215), }, [1380] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2762), - [sym__name] = STATE(5910), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2204), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(4894), - [sym_non_lvalue_expression] = STATE(3438), - [sym_lvalue_expression] = STATE(3535), - [sym__expression_statement_expression] = STATE(3362), - [sym_assignment_expression] = STATE(3449), - [sym_binary_expression] = STATE(3362), - [sym_postfix_unary_expression] = STATE(3449), - [sym_prefix_unary_expression] = STATE(3449), - [sym__pointer_indirection_expression] = STATE(2747), - [sym_query_expression] = STATE(3362), - [sym_from_clause] = STATE(6178), - [sym_conditional_expression] = STATE(3362), - [sym_conditional_access_expression] = STATE(3362), - [sym_as_expression] = STATE(3362), - [sym_is_expression] = STATE(3362), - [sym_is_pattern_expression] = STATE(3362), - [sym_cast_expression] = STATE(3362), - [sym_checked_expression] = STATE(3362), - [sym_invocation_expression] = STATE(3449), - [sym_switch_expression] = STATE(3362), - [sym_await_expression] = STATE(3449), - [sym_throw_expression] = STATE(3362), - [sym_element_access_expression] = STATE(2747), - [sym_interpolated_string_expression] = STATE(3362), - [sym_member_access_expression] = STATE(2747), - [sym_object_creation_expression] = STATE(3449), - [sym_parenthesized_expression] = STATE(3449), - [sym__parenthesized_lvalue_expression] = STATE(2747), - [sym_lambda_expression] = STATE(3362), - [sym__lambda_expression_init] = STATE(7384), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3362), - [sym_anonymous_method_expression] = STATE(3362), - [sym_anonymous_object_creation_expression] = STATE(3362), - [sym_implicit_array_creation_expression] = STATE(3362), - [sym_implicit_object_creation_expression] = STATE(3362), - [sym_implicit_stackalloc_expression] = STATE(3362), - [sym_initializer_expression] = STATE(3362), - [sym_default_expression] = STATE(3362), - [sym_with_expression] = STATE(3362), - [sym_sizeof_expression] = STATE(3362), - [sym_typeof_expression] = STATE(3362), - [sym_makeref_expression] = STATE(3362), - [sym_ref_expression] = STATE(3362), - [sym_reftype_expression] = STATE(3362), - [sym_refvalue_expression] = STATE(3362), - [sym_stackalloc_expression] = STATE(3362), - [sym_range_expression] = STATE(3362), - [sym_tuple_expression] = STATE(2747), - [sym_literal] = STATE(3362), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2267), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3362), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2603), + [sym__name] = STATE(5872), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2387), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(4735), + [sym_non_lvalue_expression] = STATE(3220), + [sym_lvalue_expression] = STATE(3395), + [sym__expression_statement_expression] = STATE(3236), + [sym_assignment_expression] = STATE(3221), + [sym_binary_expression] = STATE(3236), + [sym_postfix_unary_expression] = STATE(3221), + [sym_prefix_unary_expression] = STATE(3221), + [sym__pointer_indirection_expression] = STATE(2602), + [sym_query_expression] = STATE(3236), + [sym_from_clause] = STATE(6141), + [sym_conditional_expression] = STATE(3236), + [sym_conditional_access_expression] = STATE(3236), + [sym_as_expression] = STATE(3236), + [sym_is_expression] = STATE(3236), + [sym_is_pattern_expression] = STATE(3236), + [sym_cast_expression] = STATE(3236), + [sym_checked_expression] = STATE(3236), + [sym_invocation_expression] = STATE(3221), + [sym_switch_expression] = STATE(3236), + [sym_await_expression] = STATE(3221), + [sym_throw_expression] = STATE(3236), + [sym_element_access_expression] = STATE(2602), + [sym_interpolated_string_expression] = STATE(3236), + [sym_member_access_expression] = STATE(2602), + [sym_object_creation_expression] = STATE(3221), + [sym_parenthesized_expression] = STATE(3221), + [sym__parenthesized_lvalue_expression] = STATE(2602), + [sym_lambda_expression] = STATE(3236), + [sym__lambda_expression_init] = STATE(7446), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3236), + [sym_anonymous_method_expression] = STATE(3236), + [sym_anonymous_object_creation_expression] = STATE(3236), + [sym_implicit_array_creation_expression] = STATE(3236), + [sym_implicit_object_creation_expression] = STATE(3236), + [sym_implicit_stackalloc_expression] = STATE(3236), + [sym_initializer_expression] = STATE(3236), + [sym_default_expression] = STATE(3236), + [sym_with_expression] = STATE(3236), + [sym_sizeof_expression] = STATE(3236), + [sym_typeof_expression] = STATE(3236), + [sym_makeref_expression] = STATE(3236), + [sym_ref_expression] = STATE(3236), + [sym_reftype_expression] = STATE(3236), + [sym_refvalue_expression] = STATE(3236), + [sym_stackalloc_expression] = STATE(3236), + [sym_range_expression] = STATE(3236), + [sym_tuple_expression] = STATE(2602), + [sym_literal] = STATE(3236), + [sym_character_literal] = STATE(3272), + [sym_string_literal] = STATE(3272), + [sym_raw_string_literal] = STATE(3272), + [sym_boolean_literal] = STATE(3272), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3236), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(1380), [sym_preproc_endregion] = STATE(1380), [sym_preproc_line] = STATE(1380), @@ -275079,47 +274965,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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3385), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3379), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1307), - [anon_sym_LPAREN] = ACTIONS(1543), - [anon_sym_ref] = ACTIONS(1545), - [anon_sym_LBRACE] = ACTIONS(1313), - [anon_sym_delegate] = ACTIONS(1315), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1149), + [anon_sym_LPAREN] = ACTIONS(1857), + [anon_sym_ref] = ACTIONS(1859), + [anon_sym_LBRACE] = ACTIONS(1155), + [anon_sym_delegate] = ACTIONS(1157), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1317), + [anon_sym_new] = ACTIONS(1861), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1319), - [anon_sym_BANG] = ACTIONS(1549), - [anon_sym_TILDE] = ACTIONS(1549), - [anon_sym_PLUS_PLUS] = ACTIONS(1549), - [anon_sym_DASH_DASH] = ACTIONS(1549), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1547), - [anon_sym_DASH] = ACTIONS(1547), - [anon_sym_STAR] = ACTIONS(1551), - [anon_sym_CARET] = ACTIONS(1549), - [anon_sym_AMP] = ACTIONS(1549), - [anon_sym_this] = ACTIONS(1323), + [anon_sym_checked] = ACTIONS(1163), + [anon_sym_BANG] = ACTIONS(1865), + [anon_sym_TILDE] = ACTIONS(1865), + [anon_sym_PLUS_PLUS] = ACTIONS(1865), + [anon_sym_DASH_DASH] = ACTIONS(1865), + [anon_sym_true] = ACTIONS(1169), + [anon_sym_false] = ACTIONS(1169), + [anon_sym_PLUS] = ACTIONS(1863), + [anon_sym_DASH] = ACTIONS(1863), + [anon_sym_STAR] = ACTIONS(1867), + [anon_sym_CARET] = ACTIONS(1865), + [anon_sym_AMP] = ACTIONS(1865), + [anon_sym_this] = ACTIONS(1173), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1325), + [anon_sym_base] = ACTIONS(1175), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1319), + [sym_predefined_type] = ACTIONS(1177), + [anon_sym_unchecked] = ACTIONS(1163), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1553), + [anon_sym_default] = ACTIONS(1179), + [anon_sym_throw] = ACTIONS(1869), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1555), - [anon_sym_DOT_DOT] = ACTIONS(1557), + [anon_sym_await] = ACTIONS(1871), + [anon_sym_DOT_DOT] = ACTIONS(1873), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -275132,19 +275018,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1333), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(1335), - [anon_sym___reftype] = ACTIONS(1337), - [anon_sym___refvalue] = ACTIONS(1339), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1341), + [anon_sym_stackalloc] = ACTIONS(1187), + [anon_sym_sizeof] = ACTIONS(1189), + [anon_sym_typeof] = ACTIONS(1191), + [anon_sym___makeref] = ACTIONS(1193), + [anon_sym___reftype] = ACTIONS(1195), + [anon_sym___refvalue] = ACTIONS(1197), + [sym_null_literal] = ACTIONS(1199), + [anon_sym_SQUOTE] = ACTIONS(1201), + [sym_integer_literal] = ACTIONS(1199), + [sym_real_literal] = ACTIONS(1203), + [anon_sym_DQUOTE] = ACTIONS(1205), + [sym_verbatim_string_literal] = ACTIONS(1203), + [aux_sym_preproc_if_token1] = ACTIONS(1207), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -275155,90 +275041,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(151), - [sym_interpolation_verbatim_start] = ACTIONS(153), - [sym_interpolation_raw_start] = ACTIONS(155), - [sym_raw_string_start] = ACTIONS(157), + [sym_interpolation_regular_start] = ACTIONS(1209), + [sym_interpolation_verbatim_start] = ACTIONS(1211), + [sym_interpolation_raw_start] = ACTIONS(1213), + [sym_raw_string_start] = ACTIONS(1215), }, [1381] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2762), - [sym__name] = STATE(5910), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2204), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(4281), - [sym_non_lvalue_expression] = STATE(3438), - [sym_lvalue_expression] = STATE(3162), - [sym__expression_statement_expression] = STATE(3362), - [sym_assignment_expression] = STATE(3449), - [sym_binary_expression] = STATE(3362), - [sym_postfix_unary_expression] = STATE(3449), - [sym_prefix_unary_expression] = STATE(3449), - [sym__pointer_indirection_expression] = STATE(2747), - [sym_query_expression] = STATE(3362), - [sym_from_clause] = STATE(6171), - [sym_conditional_expression] = STATE(3362), - [sym_conditional_access_expression] = STATE(3362), - [sym_as_expression] = STATE(3362), - [sym_is_expression] = STATE(3362), - [sym_is_pattern_expression] = STATE(3362), - [sym_cast_expression] = STATE(3362), - [sym_checked_expression] = STATE(3362), - [sym_invocation_expression] = STATE(3449), - [sym_switch_expression] = STATE(3362), - [sym_await_expression] = STATE(3449), - [sym_throw_expression] = STATE(3362), - [sym_element_access_expression] = STATE(2747), - [sym_interpolated_string_expression] = STATE(3362), - [sym_member_access_expression] = STATE(2747), - [sym_object_creation_expression] = STATE(3449), - [sym_parenthesized_expression] = STATE(3449), - [sym__parenthesized_lvalue_expression] = STATE(2747), - [sym_lambda_expression] = STATE(3362), - [sym__lambda_expression_init] = STATE(7320), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3362), - [sym_anonymous_method_expression] = STATE(3362), - [sym_anonymous_object_creation_expression] = STATE(3362), - [sym_implicit_array_creation_expression] = STATE(3362), - [sym_implicit_object_creation_expression] = STATE(3362), - [sym_implicit_stackalloc_expression] = STATE(3362), - [sym_initializer_expression] = STATE(3362), - [sym_default_expression] = STATE(3362), - [sym_with_expression] = STATE(3362), - [sym_sizeof_expression] = STATE(3362), - [sym_typeof_expression] = STATE(3362), - [sym_makeref_expression] = STATE(3362), - [sym_ref_expression] = STATE(3362), - [sym_reftype_expression] = STATE(3362), - [sym_refvalue_expression] = STATE(3362), - [sym_stackalloc_expression] = STATE(3362), - [sym_range_expression] = STATE(3362), - [sym_tuple_expression] = STATE(2747), - [sym_literal] = STATE(3362), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3362), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2603), + [sym__name] = STATE(5872), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2387), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(4716), + [sym_non_lvalue_expression] = STATE(3220), + [sym_lvalue_expression] = STATE(3395), + [sym__expression_statement_expression] = STATE(3236), + [sym_assignment_expression] = STATE(3221), + [sym_binary_expression] = STATE(3236), + [sym_postfix_unary_expression] = STATE(3221), + [sym_prefix_unary_expression] = STATE(3221), + [sym__pointer_indirection_expression] = STATE(2602), + [sym_query_expression] = STATE(3236), + [sym_from_clause] = STATE(6141), + [sym_conditional_expression] = STATE(3236), + [sym_conditional_access_expression] = STATE(3236), + [sym_as_expression] = STATE(3236), + [sym_is_expression] = STATE(3236), + [sym_is_pattern_expression] = STATE(3236), + [sym_cast_expression] = STATE(3236), + [sym_checked_expression] = STATE(3236), + [sym_invocation_expression] = STATE(3221), + [sym_switch_expression] = STATE(3236), + [sym_await_expression] = STATE(3221), + [sym_throw_expression] = STATE(3236), + [sym_element_access_expression] = STATE(2602), + [sym_interpolated_string_expression] = STATE(3236), + [sym_member_access_expression] = STATE(2602), + [sym_object_creation_expression] = STATE(3221), + [sym_parenthesized_expression] = STATE(3221), + [sym__parenthesized_lvalue_expression] = STATE(2602), + [sym_lambda_expression] = STATE(3236), + [sym__lambda_expression_init] = STATE(7446), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3236), + [sym_anonymous_method_expression] = STATE(3236), + [sym_anonymous_object_creation_expression] = STATE(3236), + [sym_implicit_array_creation_expression] = STATE(3236), + [sym_implicit_object_creation_expression] = STATE(3236), + [sym_implicit_stackalloc_expression] = STATE(3236), + [sym_initializer_expression] = STATE(3236), + [sym_default_expression] = STATE(3236), + [sym_with_expression] = STATE(3236), + [sym_sizeof_expression] = STATE(3236), + [sym_typeof_expression] = STATE(3236), + [sym_makeref_expression] = STATE(3236), + [sym_ref_expression] = STATE(3236), + [sym_reftype_expression] = STATE(3236), + [sym_refvalue_expression] = STATE(3236), + [sym_stackalloc_expression] = STATE(3236), + [sym_range_expression] = STATE(3236), + [sym_tuple_expression] = STATE(2602), + [sym_literal] = STATE(3236), + [sym_character_literal] = STATE(3272), + [sym_string_literal] = STATE(3272), + [sym_raw_string_literal] = STATE(3272), + [sym_boolean_literal] = STATE(3272), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3236), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(1381), [sym_preproc_endregion] = STATE(1381), [sym_preproc_line] = STATE(1381), @@ -275248,47 +275134,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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3385), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3379), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1307), - [anon_sym_LPAREN] = ACTIONS(1343), - [anon_sym_ref] = ACTIONS(1345), - [anon_sym_LBRACE] = ACTIONS(1313), - [anon_sym_delegate] = ACTIONS(1315), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1149), + [anon_sym_LPAREN] = ACTIONS(1857), + [anon_sym_ref] = ACTIONS(1859), + [anon_sym_LBRACE] = ACTIONS(1155), + [anon_sym_delegate] = ACTIONS(1157), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1317), + [anon_sym_new] = ACTIONS(1861), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1319), - [anon_sym_BANG] = ACTIONS(1349), - [anon_sym_TILDE] = ACTIONS(1349), - [anon_sym_PLUS_PLUS] = ACTIONS(1349), - [anon_sym_DASH_DASH] = ACTIONS(1349), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1347), - [anon_sym_DASH] = ACTIONS(1347), - [anon_sym_STAR] = ACTIONS(1351), - [anon_sym_CARET] = ACTIONS(1349), - [anon_sym_AMP] = ACTIONS(1349), - [anon_sym_this] = ACTIONS(1323), + [anon_sym_checked] = ACTIONS(1163), + [anon_sym_BANG] = ACTIONS(1865), + [anon_sym_TILDE] = ACTIONS(1865), + [anon_sym_PLUS_PLUS] = ACTIONS(1865), + [anon_sym_DASH_DASH] = ACTIONS(1865), + [anon_sym_true] = ACTIONS(1169), + [anon_sym_false] = ACTIONS(1169), + [anon_sym_PLUS] = ACTIONS(1863), + [anon_sym_DASH] = ACTIONS(1863), + [anon_sym_STAR] = ACTIONS(1867), + [anon_sym_CARET] = ACTIONS(1865), + [anon_sym_AMP] = ACTIONS(1865), + [anon_sym_this] = ACTIONS(1173), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1325), + [anon_sym_base] = ACTIONS(1175), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1319), + [sym_predefined_type] = ACTIONS(1177), + [anon_sym_unchecked] = ACTIONS(1163), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1353), + [anon_sym_default] = ACTIONS(1179), + [anon_sym_throw] = ACTIONS(1869), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1355), - [anon_sym_DOT_DOT] = ACTIONS(1357), + [anon_sym_await] = ACTIONS(1871), + [anon_sym_DOT_DOT] = ACTIONS(1873), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -275301,19 +275187,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1333), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(1335), - [anon_sym___reftype] = ACTIONS(1337), - [anon_sym___refvalue] = ACTIONS(1339), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1341), + [anon_sym_stackalloc] = ACTIONS(1187), + [anon_sym_sizeof] = ACTIONS(1189), + [anon_sym_typeof] = ACTIONS(1191), + [anon_sym___makeref] = ACTIONS(1193), + [anon_sym___reftype] = ACTIONS(1195), + [anon_sym___refvalue] = ACTIONS(1197), + [sym_null_literal] = ACTIONS(1199), + [anon_sym_SQUOTE] = ACTIONS(1201), + [sym_integer_literal] = ACTIONS(1199), + [sym_real_literal] = ACTIONS(1203), + [anon_sym_DQUOTE] = ACTIONS(1205), + [sym_verbatim_string_literal] = ACTIONS(1203), + [aux_sym_preproc_if_token1] = ACTIONS(1207), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -275324,90 +275210,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(151), - [sym_interpolation_verbatim_start] = ACTIONS(153), - [sym_interpolation_raw_start] = ACTIONS(155), - [sym_raw_string_start] = ACTIONS(157), + [sym_interpolation_regular_start] = ACTIONS(1209), + [sym_interpolation_verbatim_start] = ACTIONS(1211), + [sym_interpolation_raw_start] = ACTIONS(1213), + [sym_raw_string_start] = ACTIONS(1215), }, [1382] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2762), - [sym__name] = STATE(5889), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2247), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(3194), - [sym_non_lvalue_expression] = STATE(3438), - [sym_lvalue_expression] = STATE(3224), - [sym__expression_statement_expression] = STATE(3362), - [sym_assignment_expression] = STATE(3449), - [sym_binary_expression] = STATE(3362), - [sym_postfix_unary_expression] = STATE(3449), - [sym_prefix_unary_expression] = STATE(3449), - [sym__pointer_indirection_expression] = STATE(2747), - [sym_query_expression] = STATE(3362), - [sym_from_clause] = STATE(6146), - [sym_conditional_expression] = STATE(3362), - [sym_conditional_access_expression] = STATE(3362), - [sym_as_expression] = STATE(3362), - [sym_is_expression] = STATE(3362), - [sym_is_pattern_expression] = STATE(3362), - [sym_cast_expression] = STATE(3362), - [sym_checked_expression] = STATE(3362), - [sym_invocation_expression] = STATE(3449), - [sym_switch_expression] = STATE(3362), - [sym_await_expression] = STATE(3449), - [sym_throw_expression] = STATE(3362), - [sym_element_access_expression] = STATE(2747), - [sym_interpolated_string_expression] = STATE(3362), - [sym_member_access_expression] = STATE(2747), - [sym_object_creation_expression] = STATE(3449), - [sym_parenthesized_expression] = STATE(3449), - [sym__parenthesized_lvalue_expression] = STATE(2747), - [sym_lambda_expression] = STATE(3362), - [sym__lambda_expression_init] = STATE(7381), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3362), - [sym_anonymous_method_expression] = STATE(3362), - [sym_anonymous_object_creation_expression] = STATE(3362), - [sym_implicit_array_creation_expression] = STATE(3362), - [sym_implicit_object_creation_expression] = STATE(3362), - [sym_implicit_stackalloc_expression] = STATE(3362), - [sym_initializer_expression] = STATE(3362), - [sym_default_expression] = STATE(3362), - [sym_with_expression] = STATE(3362), - [sym_sizeof_expression] = STATE(3362), - [sym_typeof_expression] = STATE(3362), - [sym_makeref_expression] = STATE(3362), - [sym_ref_expression] = STATE(3362), - [sym_reftype_expression] = STATE(3362), - [sym_refvalue_expression] = STATE(3362), - [sym_stackalloc_expression] = STATE(3362), - [sym_range_expression] = STATE(3362), - [sym_tuple_expression] = STATE(2747), - [sym_literal] = STATE(3362), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3362), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2603), + [sym__name] = STATE(5872), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2387), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(4717), + [sym_non_lvalue_expression] = STATE(3220), + [sym_lvalue_expression] = STATE(3395), + [sym__expression_statement_expression] = STATE(3236), + [sym_assignment_expression] = STATE(3221), + [sym_binary_expression] = STATE(3236), + [sym_postfix_unary_expression] = STATE(3221), + [sym_prefix_unary_expression] = STATE(3221), + [sym__pointer_indirection_expression] = STATE(2602), + [sym_query_expression] = STATE(3236), + [sym_from_clause] = STATE(6141), + [sym_conditional_expression] = STATE(3236), + [sym_conditional_access_expression] = STATE(3236), + [sym_as_expression] = STATE(3236), + [sym_is_expression] = STATE(3236), + [sym_is_pattern_expression] = STATE(3236), + [sym_cast_expression] = STATE(3236), + [sym_checked_expression] = STATE(3236), + [sym_invocation_expression] = STATE(3221), + [sym_switch_expression] = STATE(3236), + [sym_await_expression] = STATE(3221), + [sym_throw_expression] = STATE(3236), + [sym_element_access_expression] = STATE(2602), + [sym_interpolated_string_expression] = STATE(3236), + [sym_member_access_expression] = STATE(2602), + [sym_object_creation_expression] = STATE(3221), + [sym_parenthesized_expression] = STATE(3221), + [sym__parenthesized_lvalue_expression] = STATE(2602), + [sym_lambda_expression] = STATE(3236), + [sym__lambda_expression_init] = STATE(7446), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3236), + [sym_anonymous_method_expression] = STATE(3236), + [sym_anonymous_object_creation_expression] = STATE(3236), + [sym_implicit_array_creation_expression] = STATE(3236), + [sym_implicit_object_creation_expression] = STATE(3236), + [sym_implicit_stackalloc_expression] = STATE(3236), + [sym_initializer_expression] = STATE(3236), + [sym_default_expression] = STATE(3236), + [sym_with_expression] = STATE(3236), + [sym_sizeof_expression] = STATE(3236), + [sym_typeof_expression] = STATE(3236), + [sym_makeref_expression] = STATE(3236), + [sym_ref_expression] = STATE(3236), + [sym_reftype_expression] = STATE(3236), + [sym_refvalue_expression] = STATE(3236), + [sym_stackalloc_expression] = STATE(3236), + [sym_range_expression] = STATE(3236), + [sym_tuple_expression] = STATE(2602), + [sym_literal] = STATE(3236), + [sym_character_literal] = STATE(3272), + [sym_string_literal] = STATE(3272), + [sym_raw_string_literal] = STATE(3272), + [sym_boolean_literal] = STATE(3272), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3236), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(1382), [sym_preproc_endregion] = STATE(1382), [sym_preproc_line] = STATE(1382), @@ -275417,47 +275303,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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3385), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3379), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1307), - [anon_sym_LPAREN] = ACTIONS(1359), - [anon_sym_ref] = ACTIONS(1361), - [anon_sym_LBRACE] = ACTIONS(1313), - [anon_sym_delegate] = ACTIONS(1315), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1149), + [anon_sym_LPAREN] = ACTIONS(1857), + [anon_sym_ref] = ACTIONS(1859), + [anon_sym_LBRACE] = ACTIONS(1155), + [anon_sym_delegate] = ACTIONS(1157), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1317), + [anon_sym_new] = ACTIONS(1861), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1319), - [anon_sym_BANG] = ACTIONS(1107), - [anon_sym_TILDE] = ACTIONS(1107), - [anon_sym_PLUS_PLUS] = ACTIONS(1107), - [anon_sym_DASH_DASH] = ACTIONS(1107), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1109), - [anon_sym_DASH] = ACTIONS(1109), - [anon_sym_STAR] = ACTIONS(1363), - [anon_sym_CARET] = ACTIONS(1107), - [anon_sym_AMP] = ACTIONS(1107), - [anon_sym_this] = ACTIONS(1323), + [anon_sym_checked] = ACTIONS(1163), + [anon_sym_BANG] = ACTIONS(1865), + [anon_sym_TILDE] = ACTIONS(1865), + [anon_sym_PLUS_PLUS] = ACTIONS(1865), + [anon_sym_DASH_DASH] = ACTIONS(1865), + [anon_sym_true] = ACTIONS(1169), + [anon_sym_false] = ACTIONS(1169), + [anon_sym_PLUS] = ACTIONS(1863), + [anon_sym_DASH] = ACTIONS(1863), + [anon_sym_STAR] = ACTIONS(1867), + [anon_sym_CARET] = ACTIONS(1865), + [anon_sym_AMP] = ACTIONS(1865), + [anon_sym_this] = ACTIONS(1173), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1325), + [anon_sym_base] = ACTIONS(1175), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1319), + [sym_predefined_type] = ACTIONS(1177), + [anon_sym_unchecked] = ACTIONS(1163), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1365), + [anon_sym_default] = ACTIONS(1179), + [anon_sym_throw] = ACTIONS(1869), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1367), - [anon_sym_DOT_DOT] = ACTIONS(1369), + [anon_sym_await] = ACTIONS(1871), + [anon_sym_DOT_DOT] = ACTIONS(1873), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -275470,19 +275356,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1333), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(1335), - [anon_sym___reftype] = ACTIONS(1337), - [anon_sym___refvalue] = ACTIONS(1339), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1341), + [anon_sym_stackalloc] = ACTIONS(1187), + [anon_sym_sizeof] = ACTIONS(1189), + [anon_sym_typeof] = ACTIONS(1191), + [anon_sym___makeref] = ACTIONS(1193), + [anon_sym___reftype] = ACTIONS(1195), + [anon_sym___refvalue] = ACTIONS(1197), + [sym_null_literal] = ACTIONS(1199), + [anon_sym_SQUOTE] = ACTIONS(1201), + [sym_integer_literal] = ACTIONS(1199), + [sym_real_literal] = ACTIONS(1203), + [anon_sym_DQUOTE] = ACTIONS(1205), + [sym_verbatim_string_literal] = ACTIONS(1203), + [aux_sym_preproc_if_token1] = ACTIONS(1207), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -275493,90 +275379,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(151), - [sym_interpolation_verbatim_start] = ACTIONS(153), - [sym_interpolation_raw_start] = ACTIONS(155), - [sym_raw_string_start] = ACTIONS(157), + [sym_interpolation_regular_start] = ACTIONS(1209), + [sym_interpolation_verbatim_start] = ACTIONS(1211), + [sym_interpolation_raw_start] = ACTIONS(1213), + [sym_raw_string_start] = ACTIONS(1215), }, [1383] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2762), - [sym__name] = STATE(5892), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2316), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(5677), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(2774), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3080), - [sym_postfix_unary_expression] = STATE(3111), - [sym_prefix_unary_expression] = STATE(3111), - [sym__pointer_indirection_expression] = STATE(2747), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6154), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3080), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3111), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2747), - [sym_interpolated_string_expression] = STATE(3080), - [sym_member_access_expression] = STATE(2747), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3111), - [sym__parenthesized_lvalue_expression] = STATE(2747), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7530), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(3080), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3080), - [sym_typeof_expression] = STATE(3080), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2747), - [sym_literal] = STATE(3080), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2267), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2603), + [sym__name] = STATE(5872), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2387), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(4718), + [sym_non_lvalue_expression] = STATE(3220), + [sym_lvalue_expression] = STATE(3395), + [sym__expression_statement_expression] = STATE(3236), + [sym_assignment_expression] = STATE(3221), + [sym_binary_expression] = STATE(3236), + [sym_postfix_unary_expression] = STATE(3221), + [sym_prefix_unary_expression] = STATE(3221), + [sym__pointer_indirection_expression] = STATE(2602), + [sym_query_expression] = STATE(3236), + [sym_from_clause] = STATE(6141), + [sym_conditional_expression] = STATE(3236), + [sym_conditional_access_expression] = STATE(3236), + [sym_as_expression] = STATE(3236), + [sym_is_expression] = STATE(3236), + [sym_is_pattern_expression] = STATE(3236), + [sym_cast_expression] = STATE(3236), + [sym_checked_expression] = STATE(3236), + [sym_invocation_expression] = STATE(3221), + [sym_switch_expression] = STATE(3236), + [sym_await_expression] = STATE(3221), + [sym_throw_expression] = STATE(3236), + [sym_element_access_expression] = STATE(2602), + [sym_interpolated_string_expression] = STATE(3236), + [sym_member_access_expression] = STATE(2602), + [sym_object_creation_expression] = STATE(3221), + [sym_parenthesized_expression] = STATE(3221), + [sym__parenthesized_lvalue_expression] = STATE(2602), + [sym_lambda_expression] = STATE(3236), + [sym__lambda_expression_init] = STATE(7446), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3236), + [sym_anonymous_method_expression] = STATE(3236), + [sym_anonymous_object_creation_expression] = STATE(3236), + [sym_implicit_array_creation_expression] = STATE(3236), + [sym_implicit_object_creation_expression] = STATE(3236), + [sym_implicit_stackalloc_expression] = STATE(3236), + [sym_initializer_expression] = STATE(3236), + [sym_default_expression] = STATE(3236), + [sym_with_expression] = STATE(3236), + [sym_sizeof_expression] = STATE(3236), + [sym_typeof_expression] = STATE(3236), + [sym_makeref_expression] = STATE(3236), + [sym_ref_expression] = STATE(3236), + [sym_reftype_expression] = STATE(3236), + [sym_refvalue_expression] = STATE(3236), + [sym_stackalloc_expression] = STATE(3236), + [sym_range_expression] = STATE(3236), + [sym_tuple_expression] = STATE(2602), + [sym_literal] = STATE(3236), + [sym_character_literal] = STATE(3272), + [sym_string_literal] = STATE(3272), + [sym_raw_string_literal] = STATE(3272), + [sym_boolean_literal] = STATE(3272), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3236), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(1383), [sym_preproc_endregion] = STATE(1383), [sym_preproc_line] = STATE(1383), @@ -275586,47 +275472,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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3379), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1307), - [anon_sym_LPAREN] = ACTIONS(2945), - [anon_sym_ref] = ACTIONS(661), - [anon_sym_LBRACE] = ACTIONS(1487), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1149), + [anon_sym_LPAREN] = ACTIONS(1857), + [anon_sym_ref] = ACTIONS(1859), + [anon_sym_LBRACE] = ACTIONS(1155), + [anon_sym_delegate] = ACTIONS(1157), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1061), + [anon_sym_new] = ACTIONS(1861), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = 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(1585), - [anon_sym_DASH] = ACTIONS(1585), - [anon_sym_STAR] = ACTIONS(1619), - [anon_sym_CARET] = ACTIONS(1587), - [anon_sym_AMP] = ACTIONS(1587), - [anon_sym_this] = ACTIONS(1323), + [anon_sym_checked] = ACTIONS(1163), + [anon_sym_BANG] = ACTIONS(1865), + [anon_sym_TILDE] = ACTIONS(1865), + [anon_sym_PLUS_PLUS] = ACTIONS(1865), + [anon_sym_DASH_DASH] = ACTIONS(1865), + [anon_sym_true] = ACTIONS(1169), + [anon_sym_false] = ACTIONS(1169), + [anon_sym_PLUS] = ACTIONS(1863), + [anon_sym_DASH] = ACTIONS(1863), + [anon_sym_STAR] = ACTIONS(1867), + [anon_sym_CARET] = ACTIONS(1865), + [anon_sym_AMP] = ACTIONS(1865), + [anon_sym_this] = ACTIONS(1173), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), + [anon_sym_base] = ACTIONS(1175), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1067), + [sym_predefined_type] = ACTIONS(1177), + [anon_sym_unchecked] = ACTIONS(1163), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1589), + [anon_sym_default] = ACTIONS(1179), + [anon_sym_throw] = ACTIONS(1869), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1591), - [anon_sym_DOT_DOT] = ACTIONS(123), + [anon_sym_await] = ACTIONS(1871), + [anon_sym_DOT_DOT] = ACTIONS(1873), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -275639,19 +275525,19 @@ static const uint16_t ts_parse_table[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(1089), + [anon_sym_stackalloc] = ACTIONS(1187), + [anon_sym_sizeof] = ACTIONS(1189), + [anon_sym_typeof] = ACTIONS(1191), + [anon_sym___makeref] = ACTIONS(1193), + [anon_sym___reftype] = ACTIONS(1195), + [anon_sym___refvalue] = ACTIONS(1197), + [sym_null_literal] = ACTIONS(1199), + [anon_sym_SQUOTE] = ACTIONS(1201), + [sym_integer_literal] = ACTIONS(1199), + [sym_real_literal] = ACTIONS(1203), + [anon_sym_DQUOTE] = ACTIONS(1205), + [sym_verbatim_string_literal] = ACTIONS(1203), + [aux_sym_preproc_if_token1] = ACTIONS(1207), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -275662,90 +275548,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(151), - [sym_interpolation_verbatim_start] = ACTIONS(153), - [sym_interpolation_raw_start] = ACTIONS(155), - [sym_raw_string_start] = ACTIONS(157), + [sym_interpolation_regular_start] = ACTIONS(1209), + [sym_interpolation_verbatim_start] = ACTIONS(1211), + [sym_interpolation_raw_start] = ACTIONS(1213), + [sym_raw_string_start] = ACTIONS(1215), }, [1384] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2420), - [sym__name] = STATE(5887), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2197), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(4077), - [sym_non_lvalue_expression] = STATE(3066), - [sym_lvalue_expression] = STATE(3120), - [sym__expression_statement_expression] = STATE(3006), - [sym_assignment_expression] = STATE(3020), - [sym_binary_expression] = STATE(3006), - [sym_postfix_unary_expression] = STATE(3020), - [sym_prefix_unary_expression] = STATE(3020), - [sym__pointer_indirection_expression] = STATE(2423), - [sym_query_expression] = STATE(3006), - [sym_from_clause] = STATE(6152), - [sym_conditional_expression] = STATE(3006), - [sym_conditional_access_expression] = STATE(3006), - [sym_as_expression] = STATE(3006), - [sym_is_expression] = STATE(3006), - [sym_is_pattern_expression] = STATE(3006), - [sym_cast_expression] = STATE(3006), - [sym_checked_expression] = STATE(3006), - [sym_invocation_expression] = STATE(3020), - [sym_switch_expression] = STATE(3006), - [sym_await_expression] = STATE(3020), - [sym_throw_expression] = STATE(3006), - [sym_element_access_expression] = STATE(2423), - [sym_interpolated_string_expression] = STATE(3006), - [sym_member_access_expression] = STATE(2423), - [sym_object_creation_expression] = STATE(3020), - [sym_parenthesized_expression] = STATE(3020), - [sym__parenthesized_lvalue_expression] = STATE(2423), - [sym_lambda_expression] = STATE(3006), - [sym__lambda_expression_init] = STATE(7722), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3006), - [sym_anonymous_method_expression] = STATE(3006), - [sym_anonymous_object_creation_expression] = STATE(3006), - [sym_implicit_array_creation_expression] = STATE(3006), - [sym_implicit_object_creation_expression] = STATE(3006), - [sym_implicit_stackalloc_expression] = STATE(3006), - [sym_initializer_expression] = STATE(3006), - [sym_default_expression] = STATE(3006), - [sym_with_expression] = STATE(3006), - [sym_sizeof_expression] = STATE(3006), - [sym_typeof_expression] = STATE(3006), - [sym_makeref_expression] = STATE(3006), - [sym_ref_expression] = STATE(3006), - [sym_reftype_expression] = STATE(3006), - [sym_refvalue_expression] = STATE(3006), - [sym_stackalloc_expression] = STATE(3006), - [sym_range_expression] = STATE(3006), - [sym_tuple_expression] = STATE(2423), - [sym_literal] = STATE(3006), - [sym_character_literal] = STATE(3011), - [sym_string_literal] = STATE(3011), - [sym_raw_string_literal] = STATE(3011), - [sym_boolean_literal] = STATE(3011), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3006), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2603), + [sym__name] = STATE(5872), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2387), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(4569), + [sym_non_lvalue_expression] = STATE(3220), + [sym_lvalue_expression] = STATE(3395), + [sym__expression_statement_expression] = STATE(3236), + [sym_assignment_expression] = STATE(3221), + [sym_binary_expression] = STATE(3236), + [sym_postfix_unary_expression] = STATE(3221), + [sym_prefix_unary_expression] = STATE(3221), + [sym__pointer_indirection_expression] = STATE(2602), + [sym_query_expression] = STATE(3236), + [sym_from_clause] = STATE(6141), + [sym_conditional_expression] = STATE(3236), + [sym_conditional_access_expression] = STATE(3236), + [sym_as_expression] = STATE(3236), + [sym_is_expression] = STATE(3236), + [sym_is_pattern_expression] = STATE(3236), + [sym_cast_expression] = STATE(3236), + [sym_checked_expression] = STATE(3236), + [sym_invocation_expression] = STATE(3221), + [sym_switch_expression] = STATE(3236), + [sym_await_expression] = STATE(3221), + [sym_throw_expression] = STATE(3236), + [sym_element_access_expression] = STATE(2602), + [sym_interpolated_string_expression] = STATE(3236), + [sym_member_access_expression] = STATE(2602), + [sym_object_creation_expression] = STATE(3221), + [sym_parenthesized_expression] = STATE(3221), + [sym__parenthesized_lvalue_expression] = STATE(2602), + [sym_lambda_expression] = STATE(3236), + [sym__lambda_expression_init] = STATE(7446), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3236), + [sym_anonymous_method_expression] = STATE(3236), + [sym_anonymous_object_creation_expression] = STATE(3236), + [sym_implicit_array_creation_expression] = STATE(3236), + [sym_implicit_object_creation_expression] = STATE(3236), + [sym_implicit_stackalloc_expression] = STATE(3236), + [sym_initializer_expression] = STATE(3236), + [sym_default_expression] = STATE(3236), + [sym_with_expression] = STATE(3236), + [sym_sizeof_expression] = STATE(3236), + [sym_typeof_expression] = STATE(3236), + [sym_makeref_expression] = STATE(3236), + [sym_ref_expression] = STATE(3236), + [sym_reftype_expression] = STATE(3236), + [sym_refvalue_expression] = STATE(3236), + [sym_stackalloc_expression] = STATE(3236), + [sym_range_expression] = STATE(3236), + [sym_tuple_expression] = STATE(2602), + [sym_literal] = STATE(3236), + [sym_character_literal] = STATE(3272), + [sym_string_literal] = STATE(3272), + [sym_raw_string_literal] = STATE(3272), + [sym_boolean_literal] = STATE(3272), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3236), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(1384), [sym_preproc_endregion] = STATE(1384), [sym_preproc_line] = STATE(1384), @@ -275755,47 +275641,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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3440), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3379), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1241), - [anon_sym_LPAREN] = ACTIONS(1243), - [anon_sym_ref] = ACTIONS(1245), - [anon_sym_LBRACE] = ACTIONS(1247), - [anon_sym_delegate] = ACTIONS(1249), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1149), + [anon_sym_LPAREN] = ACTIONS(1857), + [anon_sym_ref] = ACTIONS(1859), + [anon_sym_LBRACE] = ACTIONS(1155), + [anon_sym_delegate] = ACTIONS(1157), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1251), + [anon_sym_new] = ACTIONS(1861), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1253), - [anon_sym_BANG] = ACTIONS(1257), - [anon_sym_TILDE] = ACTIONS(1257), - [anon_sym_PLUS_PLUS] = ACTIONS(1257), - [anon_sym_DASH_DASH] = ACTIONS(1257), - [anon_sym_true] = ACTIONS(1259), - [anon_sym_false] = ACTIONS(1259), - [anon_sym_PLUS] = ACTIONS(1255), - [anon_sym_DASH] = ACTIONS(1255), - [anon_sym_STAR] = ACTIONS(1261), - [anon_sym_CARET] = ACTIONS(1257), - [anon_sym_AMP] = ACTIONS(1257), - [anon_sym_this] = ACTIONS(1263), + [anon_sym_checked] = ACTIONS(1163), + [anon_sym_BANG] = ACTIONS(1865), + [anon_sym_TILDE] = ACTIONS(1865), + [anon_sym_PLUS_PLUS] = ACTIONS(1865), + [anon_sym_DASH_DASH] = ACTIONS(1865), + [anon_sym_true] = ACTIONS(1169), + [anon_sym_false] = ACTIONS(1169), + [anon_sym_PLUS] = ACTIONS(1863), + [anon_sym_DASH] = ACTIONS(1863), + [anon_sym_STAR] = ACTIONS(1867), + [anon_sym_CARET] = ACTIONS(1865), + [anon_sym_AMP] = ACTIONS(1865), + [anon_sym_this] = ACTIONS(1173), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1265), + [anon_sym_base] = ACTIONS(1175), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1267), - [anon_sym_unchecked] = ACTIONS(1253), + [sym_predefined_type] = ACTIONS(1177), + [anon_sym_unchecked] = ACTIONS(1163), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1269), - [anon_sym_throw] = ACTIONS(1271), + [anon_sym_default] = ACTIONS(1179), + [anon_sym_throw] = ACTIONS(1869), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1273), - [anon_sym_DOT_DOT] = ACTIONS(1275), + [anon_sym_await] = ACTIONS(1871), + [anon_sym_DOT_DOT] = ACTIONS(1873), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -275808,19 +275694,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1277), - [anon_sym_sizeof] = ACTIONS(1279), - [anon_sym_typeof] = ACTIONS(1281), - [anon_sym___makeref] = ACTIONS(1283), - [anon_sym___reftype] = ACTIONS(1285), - [anon_sym___refvalue] = ACTIONS(1287), - [sym_null_literal] = ACTIONS(1289), - [anon_sym_SQUOTE] = ACTIONS(1291), - [sym_integer_literal] = ACTIONS(1289), - [sym_real_literal] = ACTIONS(1293), - [anon_sym_DQUOTE] = ACTIONS(1295), - [sym_verbatim_string_literal] = ACTIONS(1293), - [aux_sym_preproc_if_token1] = ACTIONS(1297), + [anon_sym_stackalloc] = ACTIONS(1187), + [anon_sym_sizeof] = ACTIONS(1189), + [anon_sym_typeof] = ACTIONS(1191), + [anon_sym___makeref] = ACTIONS(1193), + [anon_sym___reftype] = ACTIONS(1195), + [anon_sym___refvalue] = ACTIONS(1197), + [sym_null_literal] = ACTIONS(1199), + [anon_sym_SQUOTE] = ACTIONS(1201), + [sym_integer_literal] = ACTIONS(1199), + [sym_real_literal] = ACTIONS(1203), + [anon_sym_DQUOTE] = ACTIONS(1205), + [sym_verbatim_string_literal] = ACTIONS(1203), + [aux_sym_preproc_if_token1] = ACTIONS(1207), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -275831,90 +275717,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1299), - [sym_interpolation_verbatim_start] = ACTIONS(1301), - [sym_interpolation_raw_start] = ACTIONS(1303), - [sym_raw_string_start] = ACTIONS(1305), + [sym_interpolation_regular_start] = ACTIONS(1209), + [sym_interpolation_verbatim_start] = ACTIONS(1211), + [sym_interpolation_raw_start] = ACTIONS(1213), + [sym_raw_string_start] = ACTIONS(1215), }, [1385] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2420), - [sym__name] = STATE(5887), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2197), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(4078), - [sym_non_lvalue_expression] = STATE(3066), - [sym_lvalue_expression] = STATE(3120), - [sym__expression_statement_expression] = STATE(3006), - [sym_assignment_expression] = STATE(3020), - [sym_binary_expression] = STATE(3006), - [sym_postfix_unary_expression] = STATE(3020), - [sym_prefix_unary_expression] = STATE(3020), - [sym__pointer_indirection_expression] = STATE(2423), - [sym_query_expression] = STATE(3006), - [sym_from_clause] = STATE(6152), - [sym_conditional_expression] = STATE(3006), - [sym_conditional_access_expression] = STATE(3006), - [sym_as_expression] = STATE(3006), - [sym_is_expression] = STATE(3006), - [sym_is_pattern_expression] = STATE(3006), - [sym_cast_expression] = STATE(3006), - [sym_checked_expression] = STATE(3006), - [sym_invocation_expression] = STATE(3020), - [sym_switch_expression] = STATE(3006), - [sym_await_expression] = STATE(3020), - [sym_throw_expression] = STATE(3006), - [sym_element_access_expression] = STATE(2423), - [sym_interpolated_string_expression] = STATE(3006), - [sym_member_access_expression] = STATE(2423), - [sym_object_creation_expression] = STATE(3020), - [sym_parenthesized_expression] = STATE(3020), - [sym__parenthesized_lvalue_expression] = STATE(2423), - [sym_lambda_expression] = STATE(3006), - [sym__lambda_expression_init] = STATE(7722), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3006), - [sym_anonymous_method_expression] = STATE(3006), - [sym_anonymous_object_creation_expression] = STATE(3006), - [sym_implicit_array_creation_expression] = STATE(3006), - [sym_implicit_object_creation_expression] = STATE(3006), - [sym_implicit_stackalloc_expression] = STATE(3006), - [sym_initializer_expression] = STATE(3006), - [sym_default_expression] = STATE(3006), - [sym_with_expression] = STATE(3006), - [sym_sizeof_expression] = STATE(3006), - [sym_typeof_expression] = STATE(3006), - [sym_makeref_expression] = STATE(3006), - [sym_ref_expression] = STATE(3006), - [sym_reftype_expression] = STATE(3006), - [sym_refvalue_expression] = STATE(3006), - [sym_stackalloc_expression] = STATE(3006), - [sym_range_expression] = STATE(3006), - [sym_tuple_expression] = STATE(2423), - [sym_literal] = STATE(3006), - [sym_character_literal] = STATE(3011), - [sym_string_literal] = STATE(3011), - [sym_raw_string_literal] = STATE(3011), - [sym_boolean_literal] = STATE(3011), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3006), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2603), + [sym__name] = STATE(5872), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2387), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(4719), + [sym_non_lvalue_expression] = STATE(3220), + [sym_lvalue_expression] = STATE(3395), + [sym__expression_statement_expression] = STATE(3236), + [sym_assignment_expression] = STATE(3221), + [sym_binary_expression] = STATE(3236), + [sym_postfix_unary_expression] = STATE(3221), + [sym_prefix_unary_expression] = STATE(3221), + [sym__pointer_indirection_expression] = STATE(2602), + [sym_query_expression] = STATE(3236), + [sym_from_clause] = STATE(6141), + [sym_conditional_expression] = STATE(3236), + [sym_conditional_access_expression] = STATE(3236), + [sym_as_expression] = STATE(3236), + [sym_is_expression] = STATE(3236), + [sym_is_pattern_expression] = STATE(3236), + [sym_cast_expression] = STATE(3236), + [sym_checked_expression] = STATE(3236), + [sym_invocation_expression] = STATE(3221), + [sym_switch_expression] = STATE(3236), + [sym_await_expression] = STATE(3221), + [sym_throw_expression] = STATE(3236), + [sym_element_access_expression] = STATE(2602), + [sym_interpolated_string_expression] = STATE(3236), + [sym_member_access_expression] = STATE(2602), + [sym_object_creation_expression] = STATE(3221), + [sym_parenthesized_expression] = STATE(3221), + [sym__parenthesized_lvalue_expression] = STATE(2602), + [sym_lambda_expression] = STATE(3236), + [sym__lambda_expression_init] = STATE(7446), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3236), + [sym_anonymous_method_expression] = STATE(3236), + [sym_anonymous_object_creation_expression] = STATE(3236), + [sym_implicit_array_creation_expression] = STATE(3236), + [sym_implicit_object_creation_expression] = STATE(3236), + [sym_implicit_stackalloc_expression] = STATE(3236), + [sym_initializer_expression] = STATE(3236), + [sym_default_expression] = STATE(3236), + [sym_with_expression] = STATE(3236), + [sym_sizeof_expression] = STATE(3236), + [sym_typeof_expression] = STATE(3236), + [sym_makeref_expression] = STATE(3236), + [sym_ref_expression] = STATE(3236), + [sym_reftype_expression] = STATE(3236), + [sym_refvalue_expression] = STATE(3236), + [sym_stackalloc_expression] = STATE(3236), + [sym_range_expression] = STATE(3236), + [sym_tuple_expression] = STATE(2602), + [sym_literal] = STATE(3236), + [sym_character_literal] = STATE(3272), + [sym_string_literal] = STATE(3272), + [sym_raw_string_literal] = STATE(3272), + [sym_boolean_literal] = STATE(3272), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3236), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(1385), [sym_preproc_endregion] = STATE(1385), [sym_preproc_line] = STATE(1385), @@ -275924,47 +275810,47 @@ 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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3440), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3379), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1241), - [anon_sym_LPAREN] = ACTIONS(1243), - [anon_sym_ref] = ACTIONS(1245), - [anon_sym_LBRACE] = ACTIONS(1247), - [anon_sym_delegate] = ACTIONS(1249), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1149), + [anon_sym_LPAREN] = ACTIONS(1857), + [anon_sym_ref] = ACTIONS(1859), + [anon_sym_LBRACE] = ACTIONS(1155), + [anon_sym_delegate] = ACTIONS(1157), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1251), + [anon_sym_new] = ACTIONS(1861), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1253), - [anon_sym_BANG] = ACTIONS(1257), - [anon_sym_TILDE] = ACTIONS(1257), - [anon_sym_PLUS_PLUS] = ACTIONS(1257), - [anon_sym_DASH_DASH] = ACTIONS(1257), - [anon_sym_true] = ACTIONS(1259), - [anon_sym_false] = ACTIONS(1259), - [anon_sym_PLUS] = ACTIONS(1255), - [anon_sym_DASH] = ACTIONS(1255), - [anon_sym_STAR] = ACTIONS(1261), - [anon_sym_CARET] = ACTIONS(1257), - [anon_sym_AMP] = ACTIONS(1257), - [anon_sym_this] = ACTIONS(1263), + [anon_sym_checked] = ACTIONS(1163), + [anon_sym_BANG] = ACTIONS(1865), + [anon_sym_TILDE] = ACTIONS(1865), + [anon_sym_PLUS_PLUS] = ACTIONS(1865), + [anon_sym_DASH_DASH] = ACTIONS(1865), + [anon_sym_true] = ACTIONS(1169), + [anon_sym_false] = ACTIONS(1169), + [anon_sym_PLUS] = ACTIONS(1863), + [anon_sym_DASH] = ACTIONS(1863), + [anon_sym_STAR] = ACTIONS(1867), + [anon_sym_CARET] = ACTIONS(1865), + [anon_sym_AMP] = ACTIONS(1865), + [anon_sym_this] = ACTIONS(1173), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1265), + [anon_sym_base] = ACTIONS(1175), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1267), - [anon_sym_unchecked] = ACTIONS(1253), + [sym_predefined_type] = ACTIONS(1177), + [anon_sym_unchecked] = ACTIONS(1163), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1269), - [anon_sym_throw] = ACTIONS(1271), + [anon_sym_default] = ACTIONS(1179), + [anon_sym_throw] = ACTIONS(1869), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1273), - [anon_sym_DOT_DOT] = ACTIONS(1275), + [anon_sym_await] = ACTIONS(1871), + [anon_sym_DOT_DOT] = ACTIONS(1873), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -275977,19 +275863,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1277), - [anon_sym_sizeof] = ACTIONS(1279), - [anon_sym_typeof] = ACTIONS(1281), - [anon_sym___makeref] = ACTIONS(1283), - [anon_sym___reftype] = ACTIONS(1285), - [anon_sym___refvalue] = ACTIONS(1287), - [sym_null_literal] = ACTIONS(1289), - [anon_sym_SQUOTE] = ACTIONS(1291), - [sym_integer_literal] = ACTIONS(1289), - [sym_real_literal] = ACTIONS(1293), - [anon_sym_DQUOTE] = ACTIONS(1295), - [sym_verbatim_string_literal] = ACTIONS(1293), - [aux_sym_preproc_if_token1] = ACTIONS(1297), + [anon_sym_stackalloc] = ACTIONS(1187), + [anon_sym_sizeof] = ACTIONS(1189), + [anon_sym_typeof] = ACTIONS(1191), + [anon_sym___makeref] = ACTIONS(1193), + [anon_sym___reftype] = ACTIONS(1195), + [anon_sym___refvalue] = ACTIONS(1197), + [sym_null_literal] = ACTIONS(1199), + [anon_sym_SQUOTE] = ACTIONS(1201), + [sym_integer_literal] = ACTIONS(1199), + [sym_real_literal] = ACTIONS(1203), + [anon_sym_DQUOTE] = ACTIONS(1205), + [sym_verbatim_string_literal] = ACTIONS(1203), + [aux_sym_preproc_if_token1] = ACTIONS(1207), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -276000,90 +275886,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1299), - [sym_interpolation_verbatim_start] = ACTIONS(1301), - [sym_interpolation_raw_start] = ACTIONS(1303), - [sym_raw_string_start] = ACTIONS(1305), + [sym_interpolation_regular_start] = ACTIONS(1209), + [sym_interpolation_verbatim_start] = ACTIONS(1211), + [sym_interpolation_raw_start] = ACTIONS(1213), + [sym_raw_string_start] = ACTIONS(1215), }, [1386] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(5910), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2247), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(5189), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3529), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3080), - [sym_postfix_unary_expression] = STATE(3111), - [sym_prefix_unary_expression] = STATE(3111), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6154), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3080), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3111), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3080), - [sym_member_access_expression] = STATE(2484), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3111), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7444), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(3080), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3080), - [sym_typeof_expression] = STATE(3080), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2484), - [sym_literal] = STATE(3080), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2603), + [sym__name] = STATE(5872), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2387), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(4720), + [sym_non_lvalue_expression] = STATE(3220), + [sym_lvalue_expression] = STATE(3395), + [sym__expression_statement_expression] = STATE(3236), + [sym_assignment_expression] = STATE(3221), + [sym_binary_expression] = STATE(3236), + [sym_postfix_unary_expression] = STATE(3221), + [sym_prefix_unary_expression] = STATE(3221), + [sym__pointer_indirection_expression] = STATE(2602), + [sym_query_expression] = STATE(3236), + [sym_from_clause] = STATE(6141), + [sym_conditional_expression] = STATE(3236), + [sym_conditional_access_expression] = STATE(3236), + [sym_as_expression] = STATE(3236), + [sym_is_expression] = STATE(3236), + [sym_is_pattern_expression] = STATE(3236), + [sym_cast_expression] = STATE(3236), + [sym_checked_expression] = STATE(3236), + [sym_invocation_expression] = STATE(3221), + [sym_switch_expression] = STATE(3236), + [sym_await_expression] = STATE(3221), + [sym_throw_expression] = STATE(3236), + [sym_element_access_expression] = STATE(2602), + [sym_interpolated_string_expression] = STATE(3236), + [sym_member_access_expression] = STATE(2602), + [sym_object_creation_expression] = STATE(3221), + [sym_parenthesized_expression] = STATE(3221), + [sym__parenthesized_lvalue_expression] = STATE(2602), + [sym_lambda_expression] = STATE(3236), + [sym__lambda_expression_init] = STATE(7446), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3236), + [sym_anonymous_method_expression] = STATE(3236), + [sym_anonymous_object_creation_expression] = STATE(3236), + [sym_implicit_array_creation_expression] = STATE(3236), + [sym_implicit_object_creation_expression] = STATE(3236), + [sym_implicit_stackalloc_expression] = STATE(3236), + [sym_initializer_expression] = STATE(3236), + [sym_default_expression] = STATE(3236), + [sym_with_expression] = STATE(3236), + [sym_sizeof_expression] = STATE(3236), + [sym_typeof_expression] = STATE(3236), + [sym_makeref_expression] = STATE(3236), + [sym_ref_expression] = STATE(3236), + [sym_reftype_expression] = STATE(3236), + [sym_refvalue_expression] = STATE(3236), + [sym_stackalloc_expression] = STATE(3236), + [sym_range_expression] = STATE(3236), + [sym_tuple_expression] = STATE(2602), + [sym_literal] = STATE(3236), + [sym_character_literal] = STATE(3272), + [sym_string_literal] = STATE(3272), + [sym_raw_string_literal] = STATE(3272), + [sym_boolean_literal] = STATE(3272), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3236), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(1386), [sym_preproc_endregion] = STATE(1386), [sym_preproc_line] = STATE(1386), @@ -276093,47 +275979,47 @@ 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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3379), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1481), - [anon_sym_LPAREN] = ACTIONS(1575), - [anon_sym_ref] = ACTIONS(1577), - [anon_sym_LBRACE] = ACTIONS(1487), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1149), + [anon_sym_LPAREN] = ACTIONS(1857), + [anon_sym_ref] = ACTIONS(1859), + [anon_sym_LBRACE] = ACTIONS(1155), + [anon_sym_delegate] = ACTIONS(1157), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1501), + [anon_sym_new] = ACTIONS(1861), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1067), - [anon_sym_BANG] = ACTIONS(901), - [anon_sym_TILDE] = ACTIONS(901), - [anon_sym_PLUS_PLUS] = ACTIONS(901), - [anon_sym_DASH_DASH] = ACTIONS(901), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(903), - [anon_sym_DASH] = ACTIONS(903), - [anon_sym_STAR] = ACTIONS(905), - [anon_sym_CARET] = ACTIONS(901), - [anon_sym_AMP] = ACTIONS(901), - [anon_sym_this] = ACTIONS(83), + [anon_sym_checked] = ACTIONS(1163), + [anon_sym_BANG] = ACTIONS(1865), + [anon_sym_TILDE] = ACTIONS(1865), + [anon_sym_PLUS_PLUS] = ACTIONS(1865), + [anon_sym_DASH_DASH] = ACTIONS(1865), + [anon_sym_true] = ACTIONS(1169), + [anon_sym_false] = ACTIONS(1169), + [anon_sym_PLUS] = ACTIONS(1863), + [anon_sym_DASH] = ACTIONS(1863), + [anon_sym_STAR] = ACTIONS(1867), + [anon_sym_CARET] = ACTIONS(1865), + [anon_sym_AMP] = ACTIONS(1865), + [anon_sym_this] = ACTIONS(1173), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), + [anon_sym_base] = ACTIONS(1175), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1067), + [sym_predefined_type] = ACTIONS(1177), + [anon_sym_unchecked] = ACTIONS(1163), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1579), + [anon_sym_default] = ACTIONS(1179), + [anon_sym_throw] = ACTIONS(1869), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1581), - [anon_sym_DOT_DOT] = ACTIONS(1583), + [anon_sym_await] = ACTIONS(1871), + [anon_sym_DOT_DOT] = ACTIONS(1873), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -276146,19 +276032,19 @@ static const uint16_t ts_parse_table[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(1089), + [anon_sym_stackalloc] = ACTIONS(1187), + [anon_sym_sizeof] = ACTIONS(1189), + [anon_sym_typeof] = ACTIONS(1191), + [anon_sym___makeref] = ACTIONS(1193), + [anon_sym___reftype] = ACTIONS(1195), + [anon_sym___refvalue] = ACTIONS(1197), + [sym_null_literal] = ACTIONS(1199), + [anon_sym_SQUOTE] = ACTIONS(1201), + [sym_integer_literal] = ACTIONS(1199), + [sym_real_literal] = ACTIONS(1203), + [anon_sym_DQUOTE] = ACTIONS(1205), + [sym_verbatim_string_literal] = ACTIONS(1203), + [aux_sym_preproc_if_token1] = ACTIONS(1207), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -276169,90 +276055,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(151), - [sym_interpolation_verbatim_start] = ACTIONS(153), - [sym_interpolation_raw_start] = ACTIONS(155), - [sym_raw_string_start] = ACTIONS(157), + [sym_interpolation_regular_start] = ACTIONS(1209), + [sym_interpolation_verbatim_start] = ACTIONS(1211), + [sym_interpolation_raw_start] = ACTIONS(1213), + [sym_raw_string_start] = ACTIONS(1215), }, [1387] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2610), - [sym__name] = STATE(5871), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2319), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(4460), - [sym_non_lvalue_expression] = STATE(3277), - [sym_lvalue_expression] = STATE(3280), - [sym__expression_statement_expression] = STATE(3228), - [sym_assignment_expression] = STATE(3289), - [sym_binary_expression] = STATE(3228), - [sym_postfix_unary_expression] = STATE(3289), - [sym_prefix_unary_expression] = STATE(3289), - [sym__pointer_indirection_expression] = STATE(2609), - [sym_query_expression] = STATE(3228), - [sym_from_clause] = STATE(6177), - [sym_conditional_expression] = STATE(3228), - [sym_conditional_access_expression] = STATE(3228), - [sym_as_expression] = STATE(3228), - [sym_is_expression] = STATE(3228), - [sym_is_pattern_expression] = STATE(3228), - [sym_cast_expression] = STATE(3228), - [sym_checked_expression] = STATE(3228), - [sym_invocation_expression] = STATE(3289), - [sym_switch_expression] = STATE(3228), - [sym_await_expression] = STATE(3289), - [sym_throw_expression] = STATE(3228), - [sym_element_access_expression] = STATE(2609), - [sym_interpolated_string_expression] = STATE(3228), - [sym_member_access_expression] = STATE(2609), - [sym_object_creation_expression] = STATE(3289), - [sym_parenthesized_expression] = STATE(3289), - [sym__parenthesized_lvalue_expression] = STATE(2609), - [sym_lambda_expression] = STATE(3228), - [sym__lambda_expression_init] = STATE(7636), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3228), - [sym_anonymous_method_expression] = STATE(3228), - [sym_anonymous_object_creation_expression] = STATE(3228), - [sym_implicit_array_creation_expression] = STATE(3228), - [sym_implicit_object_creation_expression] = STATE(3228), - [sym_implicit_stackalloc_expression] = STATE(3228), - [sym_initializer_expression] = STATE(3228), - [sym_default_expression] = STATE(3228), - [sym_with_expression] = STATE(3228), - [sym_sizeof_expression] = STATE(3228), - [sym_typeof_expression] = STATE(3228), - [sym_makeref_expression] = STATE(3228), - [sym_ref_expression] = STATE(3228), - [sym_reftype_expression] = STATE(3228), - [sym_refvalue_expression] = STATE(3228), - [sym_stackalloc_expression] = STATE(3228), - [sym_range_expression] = STATE(3228), - [sym_tuple_expression] = STATE(2609), - [sym_literal] = STATE(3228), - [sym_character_literal] = STATE(3278), - [sym_string_literal] = STATE(3278), - [sym_raw_string_literal] = STATE(3278), - [sym_boolean_literal] = STATE(3278), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3228), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2603), + [sym__name] = STATE(5872), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2387), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(4721), + [sym_non_lvalue_expression] = STATE(3220), + [sym_lvalue_expression] = STATE(3395), + [sym__expression_statement_expression] = STATE(3236), + [sym_assignment_expression] = STATE(3221), + [sym_binary_expression] = STATE(3236), + [sym_postfix_unary_expression] = STATE(3221), + [sym_prefix_unary_expression] = STATE(3221), + [sym__pointer_indirection_expression] = STATE(2602), + [sym_query_expression] = STATE(3236), + [sym_from_clause] = STATE(6141), + [sym_conditional_expression] = STATE(3236), + [sym_conditional_access_expression] = STATE(3236), + [sym_as_expression] = STATE(3236), + [sym_is_expression] = STATE(3236), + [sym_is_pattern_expression] = STATE(3236), + [sym_cast_expression] = STATE(3236), + [sym_checked_expression] = STATE(3236), + [sym_invocation_expression] = STATE(3221), + [sym_switch_expression] = STATE(3236), + [sym_await_expression] = STATE(3221), + [sym_throw_expression] = STATE(3236), + [sym_element_access_expression] = STATE(2602), + [sym_interpolated_string_expression] = STATE(3236), + [sym_member_access_expression] = STATE(2602), + [sym_object_creation_expression] = STATE(3221), + [sym_parenthesized_expression] = STATE(3221), + [sym__parenthesized_lvalue_expression] = STATE(2602), + [sym_lambda_expression] = STATE(3236), + [sym__lambda_expression_init] = STATE(7446), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3236), + [sym_anonymous_method_expression] = STATE(3236), + [sym_anonymous_object_creation_expression] = STATE(3236), + [sym_implicit_array_creation_expression] = STATE(3236), + [sym_implicit_object_creation_expression] = STATE(3236), + [sym_implicit_stackalloc_expression] = STATE(3236), + [sym_initializer_expression] = STATE(3236), + [sym_default_expression] = STATE(3236), + [sym_with_expression] = STATE(3236), + [sym_sizeof_expression] = STATE(3236), + [sym_typeof_expression] = STATE(3236), + [sym_makeref_expression] = STATE(3236), + [sym_ref_expression] = STATE(3236), + [sym_reftype_expression] = STATE(3236), + [sym_refvalue_expression] = STATE(3236), + [sym_stackalloc_expression] = STATE(3236), + [sym_range_expression] = STATE(3236), + [sym_tuple_expression] = STATE(2602), + [sym_literal] = STATE(3236), + [sym_character_literal] = STATE(3272), + [sym_string_literal] = STATE(3272), + [sym_raw_string_literal] = STATE(3272), + [sym_boolean_literal] = STATE(3272), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3236), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(1387), [sym_preproc_endregion] = STATE(1387), [sym_preproc_line] = STATE(1387), @@ -276262,47 +276148,47 @@ 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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3396), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3379), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1153), - [anon_sym_LPAREN] = ACTIONS(1559), - [anon_sym_ref] = ACTIONS(1561), - [anon_sym_LBRACE] = ACTIONS(1159), - [anon_sym_delegate] = ACTIONS(1161), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1149), + [anon_sym_LPAREN] = ACTIONS(1857), + [anon_sym_ref] = ACTIONS(1859), + [anon_sym_LBRACE] = ACTIONS(1155), + [anon_sym_delegate] = ACTIONS(1157), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1529), + [anon_sym_new] = ACTIONS(1861), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1167), - [anon_sym_BANG] = ACTIONS(1565), - [anon_sym_TILDE] = ACTIONS(1565), - [anon_sym_PLUS_PLUS] = ACTIONS(1565), - [anon_sym_DASH_DASH] = ACTIONS(1565), - [anon_sym_true] = ACTIONS(1173), - [anon_sym_false] = ACTIONS(1173), - [anon_sym_PLUS] = ACTIONS(1563), - [anon_sym_DASH] = ACTIONS(1563), - [anon_sym_STAR] = ACTIONS(1567), - [anon_sym_CARET] = ACTIONS(1565), - [anon_sym_AMP] = ACTIONS(1565), - [anon_sym_this] = ACTIONS(1177), + [anon_sym_checked] = ACTIONS(1163), + [anon_sym_BANG] = ACTIONS(1865), + [anon_sym_TILDE] = ACTIONS(1865), + [anon_sym_PLUS_PLUS] = ACTIONS(1865), + [anon_sym_DASH_DASH] = ACTIONS(1865), + [anon_sym_true] = ACTIONS(1169), + [anon_sym_false] = ACTIONS(1169), + [anon_sym_PLUS] = ACTIONS(1863), + [anon_sym_DASH] = ACTIONS(1863), + [anon_sym_STAR] = ACTIONS(1867), + [anon_sym_CARET] = ACTIONS(1865), + [anon_sym_AMP] = ACTIONS(1865), + [anon_sym_this] = ACTIONS(1173), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1179), + [anon_sym_base] = ACTIONS(1175), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1181), - [anon_sym_unchecked] = ACTIONS(1167), + [sym_predefined_type] = ACTIONS(1177), + [anon_sym_unchecked] = ACTIONS(1163), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1183), - [anon_sym_throw] = ACTIONS(1569), + [anon_sym_default] = ACTIONS(1179), + [anon_sym_throw] = ACTIONS(1869), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1571), - [anon_sym_DOT_DOT] = ACTIONS(1573), + [anon_sym_await] = ACTIONS(1871), + [anon_sym_DOT_DOT] = ACTIONS(1873), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -276315,19 +276201,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1191), - [anon_sym_sizeof] = ACTIONS(1193), - [anon_sym_typeof] = ACTIONS(1195), - [anon_sym___makeref] = ACTIONS(1197), - [anon_sym___reftype] = ACTIONS(1199), - [anon_sym___refvalue] = ACTIONS(1201), - [sym_null_literal] = ACTIONS(1203), - [anon_sym_SQUOTE] = ACTIONS(1205), - [sym_integer_literal] = ACTIONS(1203), - [sym_real_literal] = ACTIONS(1207), - [anon_sym_DQUOTE] = ACTIONS(1209), - [sym_verbatim_string_literal] = ACTIONS(1207), - [aux_sym_preproc_if_token1] = ACTIONS(1211), + [anon_sym_stackalloc] = ACTIONS(1187), + [anon_sym_sizeof] = ACTIONS(1189), + [anon_sym_typeof] = ACTIONS(1191), + [anon_sym___makeref] = ACTIONS(1193), + [anon_sym___reftype] = ACTIONS(1195), + [anon_sym___refvalue] = ACTIONS(1197), + [sym_null_literal] = ACTIONS(1199), + [anon_sym_SQUOTE] = ACTIONS(1201), + [sym_integer_literal] = ACTIONS(1199), + [sym_real_literal] = ACTIONS(1203), + [anon_sym_DQUOTE] = ACTIONS(1205), + [sym_verbatim_string_literal] = ACTIONS(1203), + [aux_sym_preproc_if_token1] = ACTIONS(1207), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -276338,90 +276224,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1213), - [sym_interpolation_verbatim_start] = ACTIONS(1215), - [sym_interpolation_raw_start] = ACTIONS(1217), - [sym_raw_string_start] = ACTIONS(1219), + [sym_interpolation_regular_start] = ACTIONS(1209), + [sym_interpolation_verbatim_start] = ACTIONS(1211), + [sym_interpolation_raw_start] = ACTIONS(1213), + [sym_raw_string_start] = ACTIONS(1215), }, [1388] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2420), - [sym__name] = STATE(5887), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2197), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(4079), - [sym_non_lvalue_expression] = STATE(3066), - [sym_lvalue_expression] = STATE(3120), - [sym__expression_statement_expression] = STATE(3006), - [sym_assignment_expression] = STATE(3020), - [sym_binary_expression] = STATE(3006), - [sym_postfix_unary_expression] = STATE(3020), - [sym_prefix_unary_expression] = STATE(3020), - [sym__pointer_indirection_expression] = STATE(2423), - [sym_query_expression] = STATE(3006), - [sym_from_clause] = STATE(6152), - [sym_conditional_expression] = STATE(3006), - [sym_conditional_access_expression] = STATE(3006), - [sym_as_expression] = STATE(3006), - [sym_is_expression] = STATE(3006), - [sym_is_pattern_expression] = STATE(3006), - [sym_cast_expression] = STATE(3006), - [sym_checked_expression] = STATE(3006), - [sym_invocation_expression] = STATE(3020), - [sym_switch_expression] = STATE(3006), - [sym_await_expression] = STATE(3020), - [sym_throw_expression] = STATE(3006), - [sym_element_access_expression] = STATE(2423), - [sym_interpolated_string_expression] = STATE(3006), - [sym_member_access_expression] = STATE(2423), - [sym_object_creation_expression] = STATE(3020), - [sym_parenthesized_expression] = STATE(3020), - [sym__parenthesized_lvalue_expression] = STATE(2423), - [sym_lambda_expression] = STATE(3006), - [sym__lambda_expression_init] = STATE(7722), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3006), - [sym_anonymous_method_expression] = STATE(3006), - [sym_anonymous_object_creation_expression] = STATE(3006), - [sym_implicit_array_creation_expression] = STATE(3006), - [sym_implicit_object_creation_expression] = STATE(3006), - [sym_implicit_stackalloc_expression] = STATE(3006), - [sym_initializer_expression] = STATE(3006), - [sym_default_expression] = STATE(3006), - [sym_with_expression] = STATE(3006), - [sym_sizeof_expression] = STATE(3006), - [sym_typeof_expression] = STATE(3006), - [sym_makeref_expression] = STATE(3006), - [sym_ref_expression] = STATE(3006), - [sym_reftype_expression] = STATE(3006), - [sym_refvalue_expression] = STATE(3006), - [sym_stackalloc_expression] = STATE(3006), - [sym_range_expression] = STATE(3006), - [sym_tuple_expression] = STATE(2423), - [sym_literal] = STATE(3006), - [sym_character_literal] = STATE(3011), - [sym_string_literal] = STATE(3011), - [sym_raw_string_literal] = STATE(3011), - [sym_boolean_literal] = STATE(3011), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3006), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2603), + [sym__name] = STATE(5872), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2387), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(4722), + [sym_non_lvalue_expression] = STATE(3220), + [sym_lvalue_expression] = STATE(3395), + [sym__expression_statement_expression] = STATE(3236), + [sym_assignment_expression] = STATE(3221), + [sym_binary_expression] = STATE(3236), + [sym_postfix_unary_expression] = STATE(3221), + [sym_prefix_unary_expression] = STATE(3221), + [sym__pointer_indirection_expression] = STATE(2602), + [sym_query_expression] = STATE(3236), + [sym_from_clause] = STATE(6141), + [sym_conditional_expression] = STATE(3236), + [sym_conditional_access_expression] = STATE(3236), + [sym_as_expression] = STATE(3236), + [sym_is_expression] = STATE(3236), + [sym_is_pattern_expression] = STATE(3236), + [sym_cast_expression] = STATE(3236), + [sym_checked_expression] = STATE(3236), + [sym_invocation_expression] = STATE(3221), + [sym_switch_expression] = STATE(3236), + [sym_await_expression] = STATE(3221), + [sym_throw_expression] = STATE(3236), + [sym_element_access_expression] = STATE(2602), + [sym_interpolated_string_expression] = STATE(3236), + [sym_member_access_expression] = STATE(2602), + [sym_object_creation_expression] = STATE(3221), + [sym_parenthesized_expression] = STATE(3221), + [sym__parenthesized_lvalue_expression] = STATE(2602), + [sym_lambda_expression] = STATE(3236), + [sym__lambda_expression_init] = STATE(7446), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3236), + [sym_anonymous_method_expression] = STATE(3236), + [sym_anonymous_object_creation_expression] = STATE(3236), + [sym_implicit_array_creation_expression] = STATE(3236), + [sym_implicit_object_creation_expression] = STATE(3236), + [sym_implicit_stackalloc_expression] = STATE(3236), + [sym_initializer_expression] = STATE(3236), + [sym_default_expression] = STATE(3236), + [sym_with_expression] = STATE(3236), + [sym_sizeof_expression] = STATE(3236), + [sym_typeof_expression] = STATE(3236), + [sym_makeref_expression] = STATE(3236), + [sym_ref_expression] = STATE(3236), + [sym_reftype_expression] = STATE(3236), + [sym_refvalue_expression] = STATE(3236), + [sym_stackalloc_expression] = STATE(3236), + [sym_range_expression] = STATE(3236), + [sym_tuple_expression] = STATE(2602), + [sym_literal] = STATE(3236), + [sym_character_literal] = STATE(3272), + [sym_string_literal] = STATE(3272), + [sym_raw_string_literal] = STATE(3272), + [sym_boolean_literal] = STATE(3272), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3236), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(1388), [sym_preproc_endregion] = STATE(1388), [sym_preproc_line] = STATE(1388), @@ -276431,47 +276317,47 @@ 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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3440), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3379), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1241), - [anon_sym_LPAREN] = ACTIONS(1243), - [anon_sym_ref] = ACTIONS(1245), - [anon_sym_LBRACE] = ACTIONS(1247), - [anon_sym_delegate] = ACTIONS(1249), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1149), + [anon_sym_LPAREN] = ACTIONS(1857), + [anon_sym_ref] = ACTIONS(1859), + [anon_sym_LBRACE] = ACTIONS(1155), + [anon_sym_delegate] = ACTIONS(1157), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1251), + [anon_sym_new] = ACTIONS(1861), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1253), - [anon_sym_BANG] = ACTIONS(1257), - [anon_sym_TILDE] = ACTIONS(1257), - [anon_sym_PLUS_PLUS] = ACTIONS(1257), - [anon_sym_DASH_DASH] = ACTIONS(1257), - [anon_sym_true] = ACTIONS(1259), - [anon_sym_false] = ACTIONS(1259), - [anon_sym_PLUS] = ACTIONS(1255), - [anon_sym_DASH] = ACTIONS(1255), - [anon_sym_STAR] = ACTIONS(1261), - [anon_sym_CARET] = ACTIONS(1257), - [anon_sym_AMP] = ACTIONS(1257), - [anon_sym_this] = ACTIONS(1263), + [anon_sym_checked] = ACTIONS(1163), + [anon_sym_BANG] = ACTIONS(1865), + [anon_sym_TILDE] = ACTIONS(1865), + [anon_sym_PLUS_PLUS] = ACTIONS(1865), + [anon_sym_DASH_DASH] = ACTIONS(1865), + [anon_sym_true] = ACTIONS(1169), + [anon_sym_false] = ACTIONS(1169), + [anon_sym_PLUS] = ACTIONS(1863), + [anon_sym_DASH] = ACTIONS(1863), + [anon_sym_STAR] = ACTIONS(1867), + [anon_sym_CARET] = ACTIONS(1865), + [anon_sym_AMP] = ACTIONS(1865), + [anon_sym_this] = ACTIONS(1173), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1265), + [anon_sym_base] = ACTIONS(1175), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1267), - [anon_sym_unchecked] = ACTIONS(1253), + [sym_predefined_type] = ACTIONS(1177), + [anon_sym_unchecked] = ACTIONS(1163), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1269), - [anon_sym_throw] = ACTIONS(1271), + [anon_sym_default] = ACTIONS(1179), + [anon_sym_throw] = ACTIONS(1869), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1273), - [anon_sym_DOT_DOT] = ACTIONS(1275), + [anon_sym_await] = ACTIONS(1871), + [anon_sym_DOT_DOT] = ACTIONS(1873), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -276484,19 +276370,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1277), - [anon_sym_sizeof] = ACTIONS(1279), - [anon_sym_typeof] = ACTIONS(1281), - [anon_sym___makeref] = ACTIONS(1283), - [anon_sym___reftype] = ACTIONS(1285), - [anon_sym___refvalue] = ACTIONS(1287), - [sym_null_literal] = ACTIONS(1289), - [anon_sym_SQUOTE] = ACTIONS(1291), - [sym_integer_literal] = ACTIONS(1289), - [sym_real_literal] = ACTIONS(1293), - [anon_sym_DQUOTE] = ACTIONS(1295), - [sym_verbatim_string_literal] = ACTIONS(1293), - [aux_sym_preproc_if_token1] = ACTIONS(1297), + [anon_sym_stackalloc] = ACTIONS(1187), + [anon_sym_sizeof] = ACTIONS(1189), + [anon_sym_typeof] = ACTIONS(1191), + [anon_sym___makeref] = ACTIONS(1193), + [anon_sym___reftype] = ACTIONS(1195), + [anon_sym___refvalue] = ACTIONS(1197), + [sym_null_literal] = ACTIONS(1199), + [anon_sym_SQUOTE] = ACTIONS(1201), + [sym_integer_literal] = ACTIONS(1199), + [sym_real_literal] = ACTIONS(1203), + [anon_sym_DQUOTE] = ACTIONS(1205), + [sym_verbatim_string_literal] = ACTIONS(1203), + [aux_sym_preproc_if_token1] = ACTIONS(1207), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -276507,90 +276393,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1299), - [sym_interpolation_verbatim_start] = ACTIONS(1301), - [sym_interpolation_raw_start] = ACTIONS(1303), - [sym_raw_string_start] = ACTIONS(1305), + [sym_interpolation_regular_start] = ACTIONS(1209), + [sym_interpolation_verbatim_start] = ACTIONS(1211), + [sym_interpolation_raw_start] = ACTIONS(1213), + [sym_raw_string_start] = ACTIONS(1215), }, [1389] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2610), - [sym__name] = STATE(5871), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2319), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(4461), - [sym_non_lvalue_expression] = STATE(3277), - [sym_lvalue_expression] = STATE(3280), - [sym__expression_statement_expression] = STATE(3228), - [sym_assignment_expression] = STATE(3289), - [sym_binary_expression] = STATE(3228), - [sym_postfix_unary_expression] = STATE(3289), - [sym_prefix_unary_expression] = STATE(3289), - [sym__pointer_indirection_expression] = STATE(2609), - [sym_query_expression] = STATE(3228), - [sym_from_clause] = STATE(6177), - [sym_conditional_expression] = STATE(3228), - [sym_conditional_access_expression] = STATE(3228), - [sym_as_expression] = STATE(3228), - [sym_is_expression] = STATE(3228), - [sym_is_pattern_expression] = STATE(3228), - [sym_cast_expression] = STATE(3228), - [sym_checked_expression] = STATE(3228), - [sym_invocation_expression] = STATE(3289), - [sym_switch_expression] = STATE(3228), - [sym_await_expression] = STATE(3289), - [sym_throw_expression] = STATE(3228), - [sym_element_access_expression] = STATE(2609), - [sym_interpolated_string_expression] = STATE(3228), - [sym_member_access_expression] = STATE(2609), - [sym_object_creation_expression] = STATE(3289), - [sym_parenthesized_expression] = STATE(3289), - [sym__parenthesized_lvalue_expression] = STATE(2609), - [sym_lambda_expression] = STATE(3228), - [sym__lambda_expression_init] = STATE(7636), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3228), - [sym_anonymous_method_expression] = STATE(3228), - [sym_anonymous_object_creation_expression] = STATE(3228), - [sym_implicit_array_creation_expression] = STATE(3228), - [sym_implicit_object_creation_expression] = STATE(3228), - [sym_implicit_stackalloc_expression] = STATE(3228), - [sym_initializer_expression] = STATE(3228), - [sym_default_expression] = STATE(3228), - [sym_with_expression] = STATE(3228), - [sym_sizeof_expression] = STATE(3228), - [sym_typeof_expression] = STATE(3228), - [sym_makeref_expression] = STATE(3228), - [sym_ref_expression] = STATE(3228), - [sym_reftype_expression] = STATE(3228), - [sym_refvalue_expression] = STATE(3228), - [sym_stackalloc_expression] = STATE(3228), - [sym_range_expression] = STATE(3228), - [sym_tuple_expression] = STATE(2609), - [sym_literal] = STATE(3228), - [sym_character_literal] = STATE(3278), - [sym_string_literal] = STATE(3278), - [sym_raw_string_literal] = STATE(3278), - [sym_boolean_literal] = STATE(3278), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3228), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2603), + [sym__name] = STATE(5872), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2387), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(4723), + [sym_non_lvalue_expression] = STATE(3220), + [sym_lvalue_expression] = STATE(3395), + [sym__expression_statement_expression] = STATE(3236), + [sym_assignment_expression] = STATE(3221), + [sym_binary_expression] = STATE(3236), + [sym_postfix_unary_expression] = STATE(3221), + [sym_prefix_unary_expression] = STATE(3221), + [sym__pointer_indirection_expression] = STATE(2602), + [sym_query_expression] = STATE(3236), + [sym_from_clause] = STATE(6141), + [sym_conditional_expression] = STATE(3236), + [sym_conditional_access_expression] = STATE(3236), + [sym_as_expression] = STATE(3236), + [sym_is_expression] = STATE(3236), + [sym_is_pattern_expression] = STATE(3236), + [sym_cast_expression] = STATE(3236), + [sym_checked_expression] = STATE(3236), + [sym_invocation_expression] = STATE(3221), + [sym_switch_expression] = STATE(3236), + [sym_await_expression] = STATE(3221), + [sym_throw_expression] = STATE(3236), + [sym_element_access_expression] = STATE(2602), + [sym_interpolated_string_expression] = STATE(3236), + [sym_member_access_expression] = STATE(2602), + [sym_object_creation_expression] = STATE(3221), + [sym_parenthesized_expression] = STATE(3221), + [sym__parenthesized_lvalue_expression] = STATE(2602), + [sym_lambda_expression] = STATE(3236), + [sym__lambda_expression_init] = STATE(7446), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3236), + [sym_anonymous_method_expression] = STATE(3236), + [sym_anonymous_object_creation_expression] = STATE(3236), + [sym_implicit_array_creation_expression] = STATE(3236), + [sym_implicit_object_creation_expression] = STATE(3236), + [sym_implicit_stackalloc_expression] = STATE(3236), + [sym_initializer_expression] = STATE(3236), + [sym_default_expression] = STATE(3236), + [sym_with_expression] = STATE(3236), + [sym_sizeof_expression] = STATE(3236), + [sym_typeof_expression] = STATE(3236), + [sym_makeref_expression] = STATE(3236), + [sym_ref_expression] = STATE(3236), + [sym_reftype_expression] = STATE(3236), + [sym_refvalue_expression] = STATE(3236), + [sym_stackalloc_expression] = STATE(3236), + [sym_range_expression] = STATE(3236), + [sym_tuple_expression] = STATE(2602), + [sym_literal] = STATE(3236), + [sym_character_literal] = STATE(3272), + [sym_string_literal] = STATE(3272), + [sym_raw_string_literal] = STATE(3272), + [sym_boolean_literal] = STATE(3272), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3236), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(1389), [sym_preproc_endregion] = STATE(1389), [sym_preproc_line] = STATE(1389), @@ -276600,47 +276486,47 @@ 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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3396), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3379), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1153), - [anon_sym_LPAREN] = ACTIONS(1559), - [anon_sym_ref] = ACTIONS(1561), - [anon_sym_LBRACE] = ACTIONS(1159), - [anon_sym_delegate] = ACTIONS(1161), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1149), + [anon_sym_LPAREN] = ACTIONS(1857), + [anon_sym_ref] = ACTIONS(1859), + [anon_sym_LBRACE] = ACTIONS(1155), + [anon_sym_delegate] = ACTIONS(1157), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1529), + [anon_sym_new] = ACTIONS(1861), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1167), - [anon_sym_BANG] = ACTIONS(1565), - [anon_sym_TILDE] = ACTIONS(1565), - [anon_sym_PLUS_PLUS] = ACTIONS(1565), - [anon_sym_DASH_DASH] = ACTIONS(1565), - [anon_sym_true] = ACTIONS(1173), - [anon_sym_false] = ACTIONS(1173), - [anon_sym_PLUS] = ACTIONS(1563), - [anon_sym_DASH] = ACTIONS(1563), - [anon_sym_STAR] = ACTIONS(1567), - [anon_sym_CARET] = ACTIONS(1565), - [anon_sym_AMP] = ACTIONS(1565), - [anon_sym_this] = ACTIONS(1177), + [anon_sym_checked] = ACTIONS(1163), + [anon_sym_BANG] = ACTIONS(1865), + [anon_sym_TILDE] = ACTIONS(1865), + [anon_sym_PLUS_PLUS] = ACTIONS(1865), + [anon_sym_DASH_DASH] = ACTIONS(1865), + [anon_sym_true] = ACTIONS(1169), + [anon_sym_false] = ACTIONS(1169), + [anon_sym_PLUS] = ACTIONS(1863), + [anon_sym_DASH] = ACTIONS(1863), + [anon_sym_STAR] = ACTIONS(1867), + [anon_sym_CARET] = ACTIONS(1865), + [anon_sym_AMP] = ACTIONS(1865), + [anon_sym_this] = ACTIONS(1173), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1179), + [anon_sym_base] = ACTIONS(1175), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1181), - [anon_sym_unchecked] = ACTIONS(1167), + [sym_predefined_type] = ACTIONS(1177), + [anon_sym_unchecked] = ACTIONS(1163), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1183), - [anon_sym_throw] = ACTIONS(1569), + [anon_sym_default] = ACTIONS(1179), + [anon_sym_throw] = ACTIONS(1869), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1571), - [anon_sym_DOT_DOT] = ACTIONS(1573), + [anon_sym_await] = ACTIONS(1871), + [anon_sym_DOT_DOT] = ACTIONS(1873), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -276653,19 +276539,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1191), - [anon_sym_sizeof] = ACTIONS(1193), - [anon_sym_typeof] = ACTIONS(1195), - [anon_sym___makeref] = ACTIONS(1197), - [anon_sym___reftype] = ACTIONS(1199), - [anon_sym___refvalue] = ACTIONS(1201), - [sym_null_literal] = ACTIONS(1203), - [anon_sym_SQUOTE] = ACTIONS(1205), - [sym_integer_literal] = ACTIONS(1203), - [sym_real_literal] = ACTIONS(1207), - [anon_sym_DQUOTE] = ACTIONS(1209), - [sym_verbatim_string_literal] = ACTIONS(1207), - [aux_sym_preproc_if_token1] = ACTIONS(1211), + [anon_sym_stackalloc] = ACTIONS(1187), + [anon_sym_sizeof] = ACTIONS(1189), + [anon_sym_typeof] = ACTIONS(1191), + [anon_sym___makeref] = ACTIONS(1193), + [anon_sym___reftype] = ACTIONS(1195), + [anon_sym___refvalue] = ACTIONS(1197), + [sym_null_literal] = ACTIONS(1199), + [anon_sym_SQUOTE] = ACTIONS(1201), + [sym_integer_literal] = ACTIONS(1199), + [sym_real_literal] = ACTIONS(1203), + [anon_sym_DQUOTE] = ACTIONS(1205), + [sym_verbatim_string_literal] = ACTIONS(1203), + [aux_sym_preproc_if_token1] = ACTIONS(1207), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -276676,90 +276562,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1213), - [sym_interpolation_verbatim_start] = ACTIONS(1215), - [sym_interpolation_raw_start] = ACTIONS(1217), - [sym_raw_string_start] = ACTIONS(1219), + [sym_interpolation_regular_start] = ACTIONS(1209), + [sym_interpolation_verbatim_start] = ACTIONS(1211), + [sym_interpolation_raw_start] = ACTIONS(1213), + [sym_raw_string_start] = ACTIONS(1215), }, [1390] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2762), - [sym__name] = STATE(5910), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2204), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(4283), - [sym_non_lvalue_expression] = STATE(3438), - [sym_lvalue_expression] = STATE(3162), - [sym__expression_statement_expression] = STATE(3362), - [sym_assignment_expression] = STATE(3449), - [sym_binary_expression] = STATE(3362), - [sym_postfix_unary_expression] = STATE(3449), - [sym_prefix_unary_expression] = STATE(3449), - [sym__pointer_indirection_expression] = STATE(2747), - [sym_query_expression] = STATE(3362), - [sym_from_clause] = STATE(6171), - [sym_conditional_expression] = STATE(3362), - [sym_conditional_access_expression] = STATE(3362), - [sym_as_expression] = STATE(3362), - [sym_is_expression] = STATE(3362), - [sym_is_pattern_expression] = STATE(3362), - [sym_cast_expression] = STATE(3362), - [sym_checked_expression] = STATE(3362), - [sym_invocation_expression] = STATE(3449), - [sym_switch_expression] = STATE(3362), - [sym_await_expression] = STATE(3449), - [sym_throw_expression] = STATE(3362), - [sym_element_access_expression] = STATE(2747), - [sym_interpolated_string_expression] = STATE(3362), - [sym_member_access_expression] = STATE(2747), - [sym_object_creation_expression] = STATE(3449), - [sym_parenthesized_expression] = STATE(3449), - [sym__parenthesized_lvalue_expression] = STATE(2747), - [sym_lambda_expression] = STATE(3362), - [sym__lambda_expression_init] = STATE(7320), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3362), - [sym_anonymous_method_expression] = STATE(3362), - [sym_anonymous_object_creation_expression] = STATE(3362), - [sym_implicit_array_creation_expression] = STATE(3362), - [sym_implicit_object_creation_expression] = STATE(3362), - [sym_implicit_stackalloc_expression] = STATE(3362), - [sym_initializer_expression] = STATE(3362), - [sym_default_expression] = STATE(3362), - [sym_with_expression] = STATE(3362), - [sym_sizeof_expression] = STATE(3362), - [sym_typeof_expression] = STATE(3362), - [sym_makeref_expression] = STATE(3362), - [sym_ref_expression] = STATE(3362), - [sym_reftype_expression] = STATE(3362), - [sym_refvalue_expression] = STATE(3362), - [sym_stackalloc_expression] = STATE(3362), - [sym_range_expression] = STATE(3362), - [sym_tuple_expression] = STATE(2747), - [sym_literal] = STATE(3362), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3362), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2603), + [sym__name] = STATE(5872), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2387), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(3133), + [sym_non_lvalue_expression] = STATE(3220), + [sym_lvalue_expression] = STATE(3395), + [sym__expression_statement_expression] = STATE(3236), + [sym_assignment_expression] = STATE(3221), + [sym_binary_expression] = STATE(3236), + [sym_postfix_unary_expression] = STATE(3221), + [sym_prefix_unary_expression] = STATE(3221), + [sym__pointer_indirection_expression] = STATE(2602), + [sym_query_expression] = STATE(3236), + [sym_from_clause] = STATE(6141), + [sym_conditional_expression] = STATE(3236), + [sym_conditional_access_expression] = STATE(3236), + [sym_as_expression] = STATE(3236), + [sym_is_expression] = STATE(3236), + [sym_is_pattern_expression] = STATE(3236), + [sym_cast_expression] = STATE(3236), + [sym_checked_expression] = STATE(3236), + [sym_invocation_expression] = STATE(3221), + [sym_switch_expression] = STATE(3236), + [sym_await_expression] = STATE(3221), + [sym_throw_expression] = STATE(3236), + [sym_element_access_expression] = STATE(2602), + [sym_interpolated_string_expression] = STATE(3236), + [sym_member_access_expression] = STATE(2602), + [sym_object_creation_expression] = STATE(3221), + [sym_parenthesized_expression] = STATE(3221), + [sym__parenthesized_lvalue_expression] = STATE(2602), + [sym_lambda_expression] = STATE(3236), + [sym__lambda_expression_init] = STATE(7446), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3236), + [sym_anonymous_method_expression] = STATE(3236), + [sym_anonymous_object_creation_expression] = STATE(3236), + [sym_implicit_array_creation_expression] = STATE(3236), + [sym_implicit_object_creation_expression] = STATE(3236), + [sym_implicit_stackalloc_expression] = STATE(3236), + [sym_initializer_expression] = STATE(3236), + [sym_default_expression] = STATE(3236), + [sym_with_expression] = STATE(3236), + [sym_sizeof_expression] = STATE(3236), + [sym_typeof_expression] = STATE(3236), + [sym_makeref_expression] = STATE(3236), + [sym_ref_expression] = STATE(3236), + [sym_reftype_expression] = STATE(3236), + [sym_refvalue_expression] = STATE(3236), + [sym_stackalloc_expression] = STATE(3236), + [sym_range_expression] = STATE(3236), + [sym_tuple_expression] = STATE(2602), + [sym_literal] = STATE(3236), + [sym_character_literal] = STATE(3272), + [sym_string_literal] = STATE(3272), + [sym_raw_string_literal] = STATE(3272), + [sym_boolean_literal] = STATE(3272), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3236), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(1390), [sym_preproc_endregion] = STATE(1390), [sym_preproc_line] = STATE(1390), @@ -276769,47 +276655,47 @@ 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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3385), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3379), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1307), - [anon_sym_LPAREN] = ACTIONS(1343), - [anon_sym_ref] = ACTIONS(1345), - [anon_sym_LBRACE] = ACTIONS(1313), - [anon_sym_delegate] = ACTIONS(1315), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1149), + [anon_sym_LPAREN] = ACTIONS(1857), + [anon_sym_ref] = ACTIONS(1859), + [anon_sym_LBRACE] = ACTIONS(1155), + [anon_sym_delegate] = ACTIONS(1157), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1317), + [anon_sym_new] = ACTIONS(1861), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1319), - [anon_sym_BANG] = ACTIONS(1349), - [anon_sym_TILDE] = ACTIONS(1349), - [anon_sym_PLUS_PLUS] = ACTIONS(1349), - [anon_sym_DASH_DASH] = ACTIONS(1349), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1347), - [anon_sym_DASH] = ACTIONS(1347), - [anon_sym_STAR] = ACTIONS(1351), - [anon_sym_CARET] = ACTIONS(1349), - [anon_sym_AMP] = ACTIONS(1349), - [anon_sym_this] = ACTIONS(1323), + [anon_sym_checked] = ACTIONS(1163), + [anon_sym_BANG] = ACTIONS(1865), + [anon_sym_TILDE] = ACTIONS(1865), + [anon_sym_PLUS_PLUS] = ACTIONS(1865), + [anon_sym_DASH_DASH] = ACTIONS(1865), + [anon_sym_true] = ACTIONS(1169), + [anon_sym_false] = ACTIONS(1169), + [anon_sym_PLUS] = ACTIONS(1863), + [anon_sym_DASH] = ACTIONS(1863), + [anon_sym_STAR] = ACTIONS(1867), + [anon_sym_CARET] = ACTIONS(1865), + [anon_sym_AMP] = ACTIONS(1865), + [anon_sym_this] = ACTIONS(1173), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1325), + [anon_sym_base] = ACTIONS(1175), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1319), + [sym_predefined_type] = ACTIONS(1177), + [anon_sym_unchecked] = ACTIONS(1163), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1353), + [anon_sym_default] = ACTIONS(1179), + [anon_sym_throw] = ACTIONS(1869), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1355), - [anon_sym_DOT_DOT] = ACTIONS(1357), + [anon_sym_await] = ACTIONS(1871), + [anon_sym_DOT_DOT] = ACTIONS(1873), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -276822,19 +276708,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1333), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(1335), - [anon_sym___reftype] = ACTIONS(1337), - [anon_sym___refvalue] = ACTIONS(1339), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1341), + [anon_sym_stackalloc] = ACTIONS(1187), + [anon_sym_sizeof] = ACTIONS(1189), + [anon_sym_typeof] = ACTIONS(1191), + [anon_sym___makeref] = ACTIONS(1193), + [anon_sym___reftype] = ACTIONS(1195), + [anon_sym___refvalue] = ACTIONS(1197), + [sym_null_literal] = ACTIONS(1199), + [anon_sym_SQUOTE] = ACTIONS(1201), + [sym_integer_literal] = ACTIONS(1199), + [sym_real_literal] = ACTIONS(1203), + [anon_sym_DQUOTE] = ACTIONS(1205), + [sym_verbatim_string_literal] = ACTIONS(1203), + [aux_sym_preproc_if_token1] = ACTIONS(1207), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -276845,90 +276731,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(151), - [sym_interpolation_verbatim_start] = ACTIONS(153), - [sym_interpolation_raw_start] = ACTIONS(155), - [sym_raw_string_start] = ACTIONS(157), + [sym_interpolation_regular_start] = ACTIONS(1209), + [sym_interpolation_verbatim_start] = ACTIONS(1211), + [sym_interpolation_raw_start] = ACTIONS(1213), + [sym_raw_string_start] = ACTIONS(1215), }, [1391] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2420), - [sym__name] = STATE(5887), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2197), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(4080), - [sym_non_lvalue_expression] = STATE(3066), - [sym_lvalue_expression] = STATE(3120), - [sym__expression_statement_expression] = STATE(3006), - [sym_assignment_expression] = STATE(3020), - [sym_binary_expression] = STATE(3006), - [sym_postfix_unary_expression] = STATE(3020), - [sym_prefix_unary_expression] = STATE(3020), - [sym__pointer_indirection_expression] = STATE(2423), - [sym_query_expression] = STATE(3006), - [sym_from_clause] = STATE(6152), - [sym_conditional_expression] = STATE(3006), - [sym_conditional_access_expression] = STATE(3006), - [sym_as_expression] = STATE(3006), - [sym_is_expression] = STATE(3006), - [sym_is_pattern_expression] = STATE(3006), - [sym_cast_expression] = STATE(3006), - [sym_checked_expression] = STATE(3006), - [sym_invocation_expression] = STATE(3020), - [sym_switch_expression] = STATE(3006), - [sym_await_expression] = STATE(3020), - [sym_throw_expression] = STATE(3006), - [sym_element_access_expression] = STATE(2423), - [sym_interpolated_string_expression] = STATE(3006), - [sym_member_access_expression] = STATE(2423), - [sym_object_creation_expression] = STATE(3020), - [sym_parenthesized_expression] = STATE(3020), - [sym__parenthesized_lvalue_expression] = STATE(2423), - [sym_lambda_expression] = STATE(3006), - [sym__lambda_expression_init] = STATE(7722), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3006), - [sym_anonymous_method_expression] = STATE(3006), - [sym_anonymous_object_creation_expression] = STATE(3006), - [sym_implicit_array_creation_expression] = STATE(3006), - [sym_implicit_object_creation_expression] = STATE(3006), - [sym_implicit_stackalloc_expression] = STATE(3006), - [sym_initializer_expression] = STATE(3006), - [sym_default_expression] = STATE(3006), - [sym_with_expression] = STATE(3006), - [sym_sizeof_expression] = STATE(3006), - [sym_typeof_expression] = STATE(3006), - [sym_makeref_expression] = STATE(3006), - [sym_ref_expression] = STATE(3006), - [sym_reftype_expression] = STATE(3006), - [sym_refvalue_expression] = STATE(3006), - [sym_stackalloc_expression] = STATE(3006), - [sym_range_expression] = STATE(3006), - [sym_tuple_expression] = STATE(2423), - [sym_literal] = STATE(3006), - [sym_character_literal] = STATE(3011), - [sym_string_literal] = STATE(3011), - [sym_raw_string_literal] = STATE(3011), - [sym_boolean_literal] = STATE(3011), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3006), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2603), + [sym__name] = STATE(5872), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2387), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(4725), + [sym_non_lvalue_expression] = STATE(3220), + [sym_lvalue_expression] = STATE(3395), + [sym__expression_statement_expression] = STATE(3236), + [sym_assignment_expression] = STATE(3221), + [sym_binary_expression] = STATE(3236), + [sym_postfix_unary_expression] = STATE(3221), + [sym_prefix_unary_expression] = STATE(3221), + [sym__pointer_indirection_expression] = STATE(2602), + [sym_query_expression] = STATE(3236), + [sym_from_clause] = STATE(6141), + [sym_conditional_expression] = STATE(3236), + [sym_conditional_access_expression] = STATE(3236), + [sym_as_expression] = STATE(3236), + [sym_is_expression] = STATE(3236), + [sym_is_pattern_expression] = STATE(3236), + [sym_cast_expression] = STATE(3236), + [sym_checked_expression] = STATE(3236), + [sym_invocation_expression] = STATE(3221), + [sym_switch_expression] = STATE(3236), + [sym_await_expression] = STATE(3221), + [sym_throw_expression] = STATE(3236), + [sym_element_access_expression] = STATE(2602), + [sym_interpolated_string_expression] = STATE(3236), + [sym_member_access_expression] = STATE(2602), + [sym_object_creation_expression] = STATE(3221), + [sym_parenthesized_expression] = STATE(3221), + [sym__parenthesized_lvalue_expression] = STATE(2602), + [sym_lambda_expression] = STATE(3236), + [sym__lambda_expression_init] = STATE(7446), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3236), + [sym_anonymous_method_expression] = STATE(3236), + [sym_anonymous_object_creation_expression] = STATE(3236), + [sym_implicit_array_creation_expression] = STATE(3236), + [sym_implicit_object_creation_expression] = STATE(3236), + [sym_implicit_stackalloc_expression] = STATE(3236), + [sym_initializer_expression] = STATE(3236), + [sym_default_expression] = STATE(3236), + [sym_with_expression] = STATE(3236), + [sym_sizeof_expression] = STATE(3236), + [sym_typeof_expression] = STATE(3236), + [sym_makeref_expression] = STATE(3236), + [sym_ref_expression] = STATE(3236), + [sym_reftype_expression] = STATE(3236), + [sym_refvalue_expression] = STATE(3236), + [sym_stackalloc_expression] = STATE(3236), + [sym_range_expression] = STATE(3236), + [sym_tuple_expression] = STATE(2602), + [sym_literal] = STATE(3236), + [sym_character_literal] = STATE(3272), + [sym_string_literal] = STATE(3272), + [sym_raw_string_literal] = STATE(3272), + [sym_boolean_literal] = STATE(3272), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3236), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(1391), [sym_preproc_endregion] = STATE(1391), [sym_preproc_line] = STATE(1391), @@ -276938,47 +276824,47 @@ 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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3440), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3379), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1241), - [anon_sym_LPAREN] = ACTIONS(1243), - [anon_sym_ref] = ACTIONS(1245), - [anon_sym_LBRACE] = ACTIONS(1247), - [anon_sym_delegate] = ACTIONS(1249), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1149), + [anon_sym_LPAREN] = ACTIONS(1857), + [anon_sym_ref] = ACTIONS(1859), + [anon_sym_LBRACE] = ACTIONS(1155), + [anon_sym_delegate] = ACTIONS(1157), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1251), + [anon_sym_new] = ACTIONS(1861), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1253), - [anon_sym_BANG] = ACTIONS(1257), - [anon_sym_TILDE] = ACTIONS(1257), - [anon_sym_PLUS_PLUS] = ACTIONS(1257), - [anon_sym_DASH_DASH] = ACTIONS(1257), - [anon_sym_true] = ACTIONS(1259), - [anon_sym_false] = ACTIONS(1259), - [anon_sym_PLUS] = ACTIONS(1255), - [anon_sym_DASH] = ACTIONS(1255), - [anon_sym_STAR] = ACTIONS(1261), - [anon_sym_CARET] = ACTIONS(1257), - [anon_sym_AMP] = ACTIONS(1257), - [anon_sym_this] = ACTIONS(1263), + [anon_sym_checked] = ACTIONS(1163), + [anon_sym_BANG] = ACTIONS(1865), + [anon_sym_TILDE] = ACTIONS(1865), + [anon_sym_PLUS_PLUS] = ACTIONS(1865), + [anon_sym_DASH_DASH] = ACTIONS(1865), + [anon_sym_true] = ACTIONS(1169), + [anon_sym_false] = ACTIONS(1169), + [anon_sym_PLUS] = ACTIONS(1863), + [anon_sym_DASH] = ACTIONS(1863), + [anon_sym_STAR] = ACTIONS(1867), + [anon_sym_CARET] = ACTIONS(1865), + [anon_sym_AMP] = ACTIONS(1865), + [anon_sym_this] = ACTIONS(1173), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1265), + [anon_sym_base] = ACTIONS(1175), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1267), - [anon_sym_unchecked] = ACTIONS(1253), + [sym_predefined_type] = ACTIONS(1177), + [anon_sym_unchecked] = ACTIONS(1163), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1269), - [anon_sym_throw] = ACTIONS(1271), + [anon_sym_default] = ACTIONS(1179), + [anon_sym_throw] = ACTIONS(1869), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1273), - [anon_sym_DOT_DOT] = ACTIONS(1275), + [anon_sym_await] = ACTIONS(1871), + [anon_sym_DOT_DOT] = ACTIONS(1873), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -276991,19 +276877,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1277), - [anon_sym_sizeof] = ACTIONS(1279), - [anon_sym_typeof] = ACTIONS(1281), - [anon_sym___makeref] = ACTIONS(1283), - [anon_sym___reftype] = ACTIONS(1285), - [anon_sym___refvalue] = ACTIONS(1287), - [sym_null_literal] = ACTIONS(1289), - [anon_sym_SQUOTE] = ACTIONS(1291), - [sym_integer_literal] = ACTIONS(1289), - [sym_real_literal] = ACTIONS(1293), - [anon_sym_DQUOTE] = ACTIONS(1295), - [sym_verbatim_string_literal] = ACTIONS(1293), - [aux_sym_preproc_if_token1] = ACTIONS(1297), + [anon_sym_stackalloc] = ACTIONS(1187), + [anon_sym_sizeof] = ACTIONS(1189), + [anon_sym_typeof] = ACTIONS(1191), + [anon_sym___makeref] = ACTIONS(1193), + [anon_sym___reftype] = ACTIONS(1195), + [anon_sym___refvalue] = ACTIONS(1197), + [sym_null_literal] = ACTIONS(1199), + [anon_sym_SQUOTE] = ACTIONS(1201), + [sym_integer_literal] = ACTIONS(1199), + [sym_real_literal] = ACTIONS(1203), + [anon_sym_DQUOTE] = ACTIONS(1205), + [sym_verbatim_string_literal] = ACTIONS(1203), + [aux_sym_preproc_if_token1] = ACTIONS(1207), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -277014,90 +276900,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1299), - [sym_interpolation_verbatim_start] = ACTIONS(1301), - [sym_interpolation_raw_start] = ACTIONS(1303), - [sym_raw_string_start] = ACTIONS(1305), + [sym_interpolation_regular_start] = ACTIONS(1209), + [sym_interpolation_verbatim_start] = ACTIONS(1211), + [sym_interpolation_raw_start] = ACTIONS(1213), + [sym_raw_string_start] = ACTIONS(1215), }, [1392] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2762), - [sym__name] = STATE(5893), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2316), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(3194), - [sym_non_lvalue_expression] = STATE(3438), - [sym_lvalue_expression] = STATE(3391), - [sym__expression_statement_expression] = STATE(3362), - [sym_assignment_expression] = STATE(3449), - [sym_binary_expression] = STATE(3362), - [sym_postfix_unary_expression] = STATE(3449), - [sym_prefix_unary_expression] = STATE(3449), - [sym__pointer_indirection_expression] = STATE(2747), - [sym_query_expression] = STATE(3362), - [sym_from_clause] = STATE(6155), - [sym_conditional_expression] = STATE(3362), - [sym_conditional_access_expression] = STATE(3362), - [sym_as_expression] = STATE(3362), - [sym_is_expression] = STATE(3362), - [sym_is_pattern_expression] = STATE(3362), - [sym_cast_expression] = STATE(3362), - [sym_checked_expression] = STATE(3362), - [sym_invocation_expression] = STATE(3449), - [sym_switch_expression] = STATE(3362), - [sym_await_expression] = STATE(3449), - [sym_throw_expression] = STATE(3362), - [sym_element_access_expression] = STATE(2747), - [sym_interpolated_string_expression] = STATE(3362), - [sym_member_access_expression] = STATE(2747), - [sym_object_creation_expression] = STATE(3449), - [sym_parenthesized_expression] = STATE(3449), - [sym__parenthesized_lvalue_expression] = STATE(2747), - [sym_lambda_expression] = STATE(3362), - [sym__lambda_expression_init] = STATE(7726), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3362), - [sym_anonymous_method_expression] = STATE(3362), - [sym_anonymous_object_creation_expression] = STATE(3362), - [sym_implicit_array_creation_expression] = STATE(3362), - [sym_implicit_object_creation_expression] = STATE(3362), - [sym_implicit_stackalloc_expression] = STATE(3362), - [sym_initializer_expression] = STATE(3362), - [sym_default_expression] = STATE(3362), - [sym_with_expression] = STATE(3362), - [sym_sizeof_expression] = STATE(3362), - [sym_typeof_expression] = STATE(3362), - [sym_makeref_expression] = STATE(3362), - [sym_ref_expression] = STATE(3362), - [sym_reftype_expression] = STATE(3362), - [sym_refvalue_expression] = STATE(3362), - [sym_stackalloc_expression] = STATE(3362), - [sym_range_expression] = STATE(3362), - [sym_tuple_expression] = STATE(2747), - [sym_literal] = STATE(3362), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3362), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2416), + [sym__name] = STATE(5890), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2193), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(2902), + [sym_non_lvalue_expression] = STATE(3040), + [sym_lvalue_expression] = STATE(3109), + [sym__expression_statement_expression] = STATE(3035), + [sym_assignment_expression] = STATE(3043), + [sym_binary_expression] = STATE(3035), + [sym_postfix_unary_expression] = STATE(3043), + [sym_prefix_unary_expression] = STATE(3043), + [sym__pointer_indirection_expression] = STATE(2415), + [sym_query_expression] = STATE(3035), + [sym_from_clause] = STATE(6138), + [sym_conditional_expression] = STATE(3035), + [sym_conditional_access_expression] = STATE(3035), + [sym_as_expression] = STATE(3035), + [sym_is_expression] = STATE(3035), + [sym_is_pattern_expression] = STATE(3035), + [sym_cast_expression] = STATE(3035), + [sym_checked_expression] = STATE(3035), + [sym_invocation_expression] = STATE(3043), + [sym_switch_expression] = STATE(3035), + [sym_await_expression] = STATE(3043), + [sym_throw_expression] = STATE(3035), + [sym_element_access_expression] = STATE(2415), + [sym_interpolated_string_expression] = STATE(3035), + [sym_member_access_expression] = STATE(2415), + [sym_object_creation_expression] = STATE(3043), + [sym_parenthesized_expression] = STATE(3043), + [sym__parenthesized_lvalue_expression] = STATE(2415), + [sym_lambda_expression] = STATE(3035), + [sym__lambda_expression_init] = STATE(7374), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3035), + [sym_anonymous_method_expression] = STATE(3035), + [sym_anonymous_object_creation_expression] = STATE(3035), + [sym_implicit_array_creation_expression] = STATE(3035), + [sym_implicit_object_creation_expression] = STATE(3035), + [sym_implicit_stackalloc_expression] = STATE(3035), + [sym_initializer_expression] = STATE(3035), + [sym_default_expression] = STATE(3035), + [sym_with_expression] = STATE(3035), + [sym_sizeof_expression] = STATE(3035), + [sym_typeof_expression] = STATE(3035), + [sym_makeref_expression] = STATE(3035), + [sym_ref_expression] = STATE(3035), + [sym_reftype_expression] = STATE(3035), + [sym_refvalue_expression] = STATE(3035), + [sym_stackalloc_expression] = STATE(3035), + [sym_range_expression] = STATE(3035), + [sym_tuple_expression] = STATE(2415), + [sym_literal] = STATE(3035), + [sym_character_literal] = STATE(3037), + [sym_string_literal] = STATE(3037), + [sym_raw_string_literal] = STATE(3037), + [sym_boolean_literal] = STATE(3037), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3035), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(1392), [sym_preproc_endregion] = STATE(1392), [sym_preproc_line] = STATE(1392), @@ -277107,47 +276993,47 @@ 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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3385), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3455), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1307), - [anon_sym_LPAREN] = ACTIONS(1711), - [anon_sym_ref] = ACTIONS(1713), - [anon_sym_LBRACE] = ACTIONS(1313), - [anon_sym_delegate] = ACTIONS(1315), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1239), + [anon_sym_LPAREN] = ACTIONS(1241), + [anon_sym_ref] = ACTIONS(1243), + [anon_sym_LBRACE] = ACTIONS(1245), + [anon_sym_delegate] = ACTIONS(1247), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1613), + [anon_sym_new] = ACTIONS(1249), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1319), - [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(77), - [anon_sym_false] = ACTIONS(77), - [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(1323), + [anon_sym_checked] = ACTIONS(1251), + [anon_sym_BANG] = ACTIONS(1255), + [anon_sym_TILDE] = ACTIONS(1255), + [anon_sym_PLUS_PLUS] = ACTIONS(1255), + [anon_sym_DASH_DASH] = ACTIONS(1255), + [anon_sym_true] = ACTIONS(1257), + [anon_sym_false] = ACTIONS(1257), + [anon_sym_PLUS] = ACTIONS(1253), + [anon_sym_DASH] = ACTIONS(1253), + [anon_sym_STAR] = ACTIONS(1259), + [anon_sym_CARET] = ACTIONS(1255), + [anon_sym_AMP] = ACTIONS(1255), + [anon_sym_this] = ACTIONS(1261), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1325), + [anon_sym_base] = ACTIONS(1263), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1319), + [sym_predefined_type] = ACTIONS(1265), + [anon_sym_unchecked] = ACTIONS(1251), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1721), + [anon_sym_default] = ACTIONS(1267), + [anon_sym_throw] = ACTIONS(1269), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1723), - [anon_sym_DOT_DOT] = ACTIONS(1725), + [anon_sym_await] = ACTIONS(1271), + [anon_sym_DOT_DOT] = ACTIONS(1273), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -277160,19 +277046,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1333), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(1335), - [anon_sym___reftype] = ACTIONS(1337), - [anon_sym___refvalue] = ACTIONS(1339), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1341), + [anon_sym_stackalloc] = ACTIONS(1275), + [anon_sym_sizeof] = ACTIONS(1277), + [anon_sym_typeof] = ACTIONS(1279), + [anon_sym___makeref] = ACTIONS(1281), + [anon_sym___reftype] = ACTIONS(1283), + [anon_sym___refvalue] = ACTIONS(1285), + [sym_null_literal] = ACTIONS(1287), + [anon_sym_SQUOTE] = ACTIONS(1289), + [sym_integer_literal] = ACTIONS(1287), + [sym_real_literal] = ACTIONS(1291), + [anon_sym_DQUOTE] = ACTIONS(1293), + [sym_verbatim_string_literal] = ACTIONS(1291), + [aux_sym_preproc_if_token1] = ACTIONS(1295), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -277183,90 +277069,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(151), - [sym_interpolation_verbatim_start] = ACTIONS(153), - [sym_interpolation_raw_start] = ACTIONS(155), - [sym_raw_string_start] = ACTIONS(157), + [sym_interpolation_regular_start] = ACTIONS(1297), + [sym_interpolation_verbatim_start] = ACTIONS(1299), + [sym_interpolation_raw_start] = ACTIONS(1301), + [sym_raw_string_start] = ACTIONS(1303), }, [1393] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2762), - [sym__name] = STATE(5889), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2247), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(5677), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(2774), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3080), - [sym_postfix_unary_expression] = STATE(3111), - [sym_prefix_unary_expression] = STATE(3111), - [sym__pointer_indirection_expression] = STATE(2747), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6154), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3080), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3111), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2747), - [sym_interpolated_string_expression] = STATE(3080), - [sym_member_access_expression] = STATE(2747), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3111), - [sym__parenthesized_lvalue_expression] = STATE(2747), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7530), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(3080), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3080), - [sym_typeof_expression] = STATE(3080), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2747), - [sym_literal] = STATE(3080), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2816), + [sym__name] = STATE(5873), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2196), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(5697), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(2830), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3102), + [sym_postfix_unary_expression] = STATE(3079), + [sym_prefix_unary_expression] = STATE(3079), + [sym__pointer_indirection_expression] = STATE(2815), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6134), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3102), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3079), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2815), + [sym_interpolated_string_expression] = STATE(3102), + [sym_member_access_expression] = STATE(2815), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3079), + [sym__parenthesized_lvalue_expression] = STATE(2815), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7425), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(3102), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3102), + [sym_typeof_expression] = STATE(3102), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2815), + [sym_literal] = STATE(3102), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(1393), [sym_preproc_endregion] = STATE(1393), [sym_preproc_line] = STATE(1393), @@ -277276,46 +277162,46 @@ 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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1307), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1305), [anon_sym_LPAREN] = ACTIONS(2945), - [anon_sym_ref] = ACTIONS(661), - [anon_sym_LBRACE] = ACTIONS(1487), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_ref] = ACTIONS(715), + [anon_sym_LBRACE] = ACTIONS(1481), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1061), + [anon_sym_new] = ACTIONS(1059), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = 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_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(1525), + [anon_sym_TILDE] = ACTIONS(1525), + [anon_sym_PLUS_PLUS] = ACTIONS(1525), + [anon_sym_DASH_DASH] = ACTIONS(1525), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1585), - [anon_sym_DASH] = ACTIONS(1585), - [anon_sym_STAR] = ACTIONS(1363), - [anon_sym_CARET] = ACTIONS(1587), - [anon_sym_AMP] = ACTIONS(1587), - [anon_sym_this] = ACTIONS(1323), + [anon_sym_PLUS] = ACTIONS(1523), + [anon_sym_DASH] = ACTIONS(1523), + [anon_sym_STAR] = ACTIONS(1377), + [anon_sym_CARET] = ACTIONS(1525), + [anon_sym_AMP] = ACTIONS(1525), + [anon_sym_this] = ACTIONS(1321), [anon_sym_scoped] = ACTIONS(85), [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1067), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1589), + [anon_sym_throw] = ACTIONS(1527), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1591), + [anon_sym_await] = ACTIONS(1529), [anon_sym_DOT_DOT] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), @@ -277341,7 +277227,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(1089), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -277358,84 +277244,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [1394] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2420), - [sym__name] = STATE(5887), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2197), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(4081), - [sym_non_lvalue_expression] = STATE(3066), - [sym_lvalue_expression] = STATE(3120), - [sym__expression_statement_expression] = STATE(3006), - [sym_assignment_expression] = STATE(3020), - [sym_binary_expression] = STATE(3006), - [sym_postfix_unary_expression] = STATE(3020), - [sym_prefix_unary_expression] = STATE(3020), - [sym__pointer_indirection_expression] = STATE(2423), - [sym_query_expression] = STATE(3006), - [sym_from_clause] = STATE(6152), - [sym_conditional_expression] = STATE(3006), - [sym_conditional_access_expression] = STATE(3006), - [sym_as_expression] = STATE(3006), - [sym_is_expression] = STATE(3006), - [sym_is_pattern_expression] = STATE(3006), - [sym_cast_expression] = STATE(3006), - [sym_checked_expression] = STATE(3006), - [sym_invocation_expression] = STATE(3020), - [sym_switch_expression] = STATE(3006), - [sym_await_expression] = STATE(3020), - [sym_throw_expression] = STATE(3006), - [sym_element_access_expression] = STATE(2423), - [sym_interpolated_string_expression] = STATE(3006), - [sym_member_access_expression] = STATE(2423), - [sym_object_creation_expression] = STATE(3020), - [sym_parenthesized_expression] = STATE(3020), - [sym__parenthesized_lvalue_expression] = STATE(2423), - [sym_lambda_expression] = STATE(3006), - [sym__lambda_expression_init] = STATE(7722), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3006), - [sym_anonymous_method_expression] = STATE(3006), - [sym_anonymous_object_creation_expression] = STATE(3006), - [sym_implicit_array_creation_expression] = STATE(3006), - [sym_implicit_object_creation_expression] = STATE(3006), - [sym_implicit_stackalloc_expression] = STATE(3006), - [sym_initializer_expression] = STATE(3006), - [sym_default_expression] = STATE(3006), - [sym_with_expression] = STATE(3006), - [sym_sizeof_expression] = STATE(3006), - [sym_typeof_expression] = STATE(3006), - [sym_makeref_expression] = STATE(3006), - [sym_ref_expression] = STATE(3006), - [sym_reftype_expression] = STATE(3006), - [sym_refvalue_expression] = STATE(3006), - [sym_stackalloc_expression] = STATE(3006), - [sym_range_expression] = STATE(3006), - [sym_tuple_expression] = STATE(2423), - [sym_literal] = STATE(3006), - [sym_character_literal] = STATE(3011), - [sym_string_literal] = STATE(3011), - [sym_raw_string_literal] = STATE(3011), - [sym_boolean_literal] = STATE(3011), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3006), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(5895), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2376), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(5617), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3643), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3102), + [sym_postfix_unary_expression] = STATE(3079), + [sym_prefix_unary_expression] = STATE(3079), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6148), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3102), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3079), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3102), + [sym_member_access_expression] = STATE(2472), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3079), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7304), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(3102), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3102), + [sym_typeof_expression] = STATE(3102), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2472), + [sym_literal] = STATE(3102), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(1394), [sym_preproc_endregion] = STATE(1394), [sym_preproc_line] = STATE(1394), @@ -277445,47 +277331,47 @@ 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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3440), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1241), - [anon_sym_LPAREN] = ACTIONS(1243), - [anon_sym_ref] = ACTIONS(1245), - [anon_sym_LBRACE] = ACTIONS(1247), - [anon_sym_delegate] = ACTIONS(1249), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1479), + [anon_sym_LPAREN] = ACTIONS(2199), + [anon_sym_ref] = ACTIONS(2201), + [anon_sym_LBRACE] = ACTIONS(1481), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1251), + [anon_sym_new] = ACTIONS(2203), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1253), - [anon_sym_BANG] = ACTIONS(1257), - [anon_sym_TILDE] = ACTIONS(1257), - [anon_sym_PLUS_PLUS] = ACTIONS(1257), - [anon_sym_DASH_DASH] = ACTIONS(1257), - [anon_sym_true] = ACTIONS(1259), - [anon_sym_false] = ACTIONS(1259), - [anon_sym_PLUS] = ACTIONS(1255), - [anon_sym_DASH] = ACTIONS(1255), - [anon_sym_STAR] = ACTIONS(1261), - [anon_sym_CARET] = ACTIONS(1257), - [anon_sym_AMP] = ACTIONS(1257), - [anon_sym_this] = ACTIONS(1263), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(2207), + [anon_sym_TILDE] = ACTIONS(2207), + [anon_sym_PLUS_PLUS] = ACTIONS(2207), + [anon_sym_DASH_DASH] = ACTIONS(2207), + [anon_sym_true] = ACTIONS(77), + [anon_sym_false] = ACTIONS(77), + [anon_sym_PLUS] = ACTIONS(2205), + [anon_sym_DASH] = ACTIONS(2205), + [anon_sym_STAR] = ACTIONS(2209), + [anon_sym_CARET] = ACTIONS(2207), + [anon_sym_AMP] = ACTIONS(2207), + [anon_sym_this] = ACTIONS(83), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1265), + [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1267), - [anon_sym_unchecked] = ACTIONS(1253), + [sym_predefined_type] = ACTIONS(91), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1269), - [anon_sym_throw] = ACTIONS(1271), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(2211), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1273), - [anon_sym_DOT_DOT] = ACTIONS(1275), + [anon_sym_await] = ACTIONS(2213), + [anon_sym_DOT_DOT] = ACTIONS(2215), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -277498,19 +277384,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1277), - [anon_sym_sizeof] = ACTIONS(1279), - [anon_sym_typeof] = ACTIONS(1281), - [anon_sym___makeref] = ACTIONS(1283), - [anon_sym___reftype] = ACTIONS(1285), - [anon_sym___refvalue] = ACTIONS(1287), - [sym_null_literal] = ACTIONS(1289), - [anon_sym_SQUOTE] = ACTIONS(1291), - [sym_integer_literal] = ACTIONS(1289), - [sym_real_literal] = ACTIONS(1293), - [anon_sym_DQUOTE] = ACTIONS(1295), - [sym_verbatim_string_literal] = ACTIONS(1293), - [aux_sym_preproc_if_token1] = ACTIONS(1297), + [anon_sym_stackalloc] = ACTIONS(127), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_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), @@ -277521,90 +277407,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1299), - [sym_interpolation_verbatim_start] = ACTIONS(1301), - [sym_interpolation_raw_start] = ACTIONS(1303), - [sym_raw_string_start] = ACTIONS(1305), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [sym_interpolation_raw_start] = ACTIONS(155), + [sym_raw_string_start] = ACTIONS(157), }, [1395] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2420), - [sym__name] = STATE(5887), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2197), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(5308), - [sym_non_lvalue_expression] = STATE(3066), - [sym_lvalue_expression] = STATE(3552), - [sym__expression_statement_expression] = STATE(3006), - [sym_assignment_expression] = STATE(3020), - [sym_binary_expression] = STATE(3006), - [sym_postfix_unary_expression] = STATE(3020), - [sym_prefix_unary_expression] = STATE(3020), - [sym__pointer_indirection_expression] = STATE(2423), - [sym_query_expression] = STATE(3006), - [sym_from_clause] = STATE(6181), - [sym_conditional_expression] = STATE(3006), - [sym_conditional_access_expression] = STATE(3006), - [sym_as_expression] = STATE(3006), - [sym_is_expression] = STATE(3006), - [sym_is_pattern_expression] = STATE(3006), - [sym_cast_expression] = STATE(3006), - [sym_checked_expression] = STATE(3006), - [sym_invocation_expression] = STATE(3020), - [sym_switch_expression] = STATE(3006), - [sym_await_expression] = STATE(3020), - [sym_throw_expression] = STATE(3006), - [sym_element_access_expression] = STATE(2423), - [sym_interpolated_string_expression] = STATE(3006), - [sym_member_access_expression] = STATE(2423), - [sym_object_creation_expression] = STATE(3020), - [sym_parenthesized_expression] = STATE(3020), - [sym__parenthesized_lvalue_expression] = STATE(2423), - [sym_lambda_expression] = STATE(3006), - [sym__lambda_expression_init] = STATE(7493), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3006), - [sym_anonymous_method_expression] = STATE(3006), - [sym_anonymous_object_creation_expression] = STATE(3006), - [sym_implicit_array_creation_expression] = STATE(3006), - [sym_implicit_object_creation_expression] = STATE(3006), - [sym_implicit_stackalloc_expression] = STATE(3006), - [sym_initializer_expression] = STATE(3006), - [sym_default_expression] = STATE(3006), - [sym_with_expression] = STATE(3006), - [sym_sizeof_expression] = STATE(3006), - [sym_typeof_expression] = STATE(3006), - [sym_makeref_expression] = STATE(3006), - [sym_ref_expression] = STATE(3006), - [sym_reftype_expression] = STATE(3006), - [sym_refvalue_expression] = STATE(3006), - [sym_stackalloc_expression] = STATE(3006), - [sym_range_expression] = STATE(3006), - [sym_tuple_expression] = STATE(2423), - [sym_literal] = STATE(3006), - [sym_character_literal] = STATE(3011), - [sym_string_literal] = STATE(3011), - [sym_raw_string_literal] = STATE(3011), - [sym_boolean_literal] = STATE(3011), - [sym_identifier] = STATE(2267), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3006), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(5895), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2376), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(3528), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3643), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3102), + [sym_postfix_unary_expression] = STATE(3079), + [sym_prefix_unary_expression] = STATE(3079), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6148), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3102), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3079), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3102), + [sym_member_access_expression] = STATE(2472), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3079), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7304), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(3102), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3102), + [sym_typeof_expression] = STATE(3102), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2472), + [sym_literal] = STATE(3102), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(1395), [sym_preproc_endregion] = STATE(1395), [sym_preproc_line] = STATE(1395), @@ -277614,47 +277500,47 @@ 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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3440), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1241), - [anon_sym_LPAREN] = ACTIONS(2031), - [anon_sym_ref] = ACTIONS(2033), - [anon_sym_LBRACE] = ACTIONS(1247), - [anon_sym_delegate] = ACTIONS(1249), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1479), + [anon_sym_LPAREN] = ACTIONS(2199), + [anon_sym_ref] = ACTIONS(2201), + [anon_sym_LBRACE] = ACTIONS(1481), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1251), + [anon_sym_new] = ACTIONS(2203), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1253), - [anon_sym_BANG] = ACTIONS(2037), - [anon_sym_TILDE] = ACTIONS(2037), - [anon_sym_PLUS_PLUS] = ACTIONS(2037), - [anon_sym_DASH_DASH] = ACTIONS(2037), - [anon_sym_true] = ACTIONS(1259), - [anon_sym_false] = ACTIONS(1259), - [anon_sym_PLUS] = ACTIONS(2035), - [anon_sym_DASH] = ACTIONS(2035), - [anon_sym_STAR] = ACTIONS(2039), - [anon_sym_CARET] = ACTIONS(2037), - [anon_sym_AMP] = ACTIONS(2037), - [anon_sym_this] = ACTIONS(1263), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(2207), + [anon_sym_TILDE] = ACTIONS(2207), + [anon_sym_PLUS_PLUS] = ACTIONS(2207), + [anon_sym_DASH_DASH] = ACTIONS(2207), + [anon_sym_true] = ACTIONS(77), + [anon_sym_false] = ACTIONS(77), + [anon_sym_PLUS] = ACTIONS(2205), + [anon_sym_DASH] = ACTIONS(2205), + [anon_sym_STAR] = ACTIONS(2209), + [anon_sym_CARET] = ACTIONS(2207), + [anon_sym_AMP] = ACTIONS(2207), + [anon_sym_this] = ACTIONS(83), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1265), + [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1267), - [anon_sym_unchecked] = ACTIONS(1253), + [sym_predefined_type] = ACTIONS(91), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1269), - [anon_sym_throw] = ACTIONS(2041), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(2211), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2043), - [anon_sym_DOT_DOT] = ACTIONS(2045), + [anon_sym_await] = ACTIONS(2213), + [anon_sym_DOT_DOT] = ACTIONS(2215), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -277667,19 +277553,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1277), - [anon_sym_sizeof] = ACTIONS(1279), - [anon_sym_typeof] = ACTIONS(1281), - [anon_sym___makeref] = ACTIONS(1283), - [anon_sym___reftype] = ACTIONS(1285), - [anon_sym___refvalue] = ACTIONS(1287), - [sym_null_literal] = ACTIONS(1289), - [anon_sym_SQUOTE] = ACTIONS(1291), - [sym_integer_literal] = ACTIONS(1289), - [sym_real_literal] = ACTIONS(1293), - [anon_sym_DQUOTE] = ACTIONS(1295), - [sym_verbatim_string_literal] = ACTIONS(1293), - [aux_sym_preproc_if_token1] = ACTIONS(1297), + [anon_sym_stackalloc] = ACTIONS(127), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_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), @@ -277690,90 +277576,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1299), - [sym_interpolation_verbatim_start] = ACTIONS(1301), - [sym_interpolation_raw_start] = ACTIONS(1303), - [sym_raw_string_start] = ACTIONS(1305), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [sym_interpolation_raw_start] = ACTIONS(155), + [sym_raw_string_start] = ACTIONS(157), }, [1396] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(5160), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2204), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(5104), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3520), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3080), - [sym_postfix_unary_expression] = STATE(3111), - [sym_prefix_unary_expression] = STATE(3111), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6154), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3080), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3111), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3080), - [sym_member_access_expression] = STATE(2484), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3111), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7530), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(3080), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3080), - [sym_typeof_expression] = STATE(3080), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2484), - [sym_literal] = STATE(3080), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(5881), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2386), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(4196), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3132), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3102), + [sym_postfix_unary_expression] = STATE(3079), + [sym_prefix_unary_expression] = STATE(3079), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6158), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3102), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3079), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3102), + [sym_member_access_expression] = STATE(2472), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3079), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7650), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(3102), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3102), + [sym_typeof_expression] = STATE(3102), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2472), + [sym_literal] = STATE(3102), + [sym_character_literal] = STATE(3037), + [sym_string_literal] = STATE(3037), + [sym_raw_string_literal] = STATE(3037), + [sym_boolean_literal] = STATE(3037), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(1396), [sym_preproc_endregion] = STATE(1396), [sym_preproc_line] = STATE(1396), @@ -277783,47 +277669,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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1481), - [anon_sym_LPAREN] = ACTIONS(43), - [anon_sym_ref] = ACTIONS(661), - [anon_sym_LBRACE] = ACTIONS(1487), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1479), + [anon_sym_LPAREN] = ACTIONS(2185), + [anon_sym_ref] = ACTIONS(2187), + [anon_sym_LBRACE] = ACTIONS(1481), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1061), + [anon_sym_new] = ACTIONS(1899), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = 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(1585), - [anon_sym_DASH] = ACTIONS(1585), - [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(1587), - [anon_sym_AMP] = ACTIONS(1587), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(2191), + [anon_sym_TILDE] = ACTIONS(2191), + [anon_sym_PLUS_PLUS] = ACTIONS(2191), + [anon_sym_DASH_DASH] = ACTIONS(2191), + [anon_sym_true] = ACTIONS(1257), + [anon_sym_false] = ACTIONS(1257), + [anon_sym_PLUS] = ACTIONS(2189), + [anon_sym_DASH] = ACTIONS(2189), + [anon_sym_STAR] = ACTIONS(1905), + [anon_sym_CARET] = ACTIONS(2191), + [anon_sym_AMP] = ACTIONS(2191), [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(1067), + [sym_predefined_type] = ACTIONS(1265), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1589), + [anon_sym_default] = ACTIONS(1267), + [anon_sym_throw] = ACTIONS(2193), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1591), - [anon_sym_DOT_DOT] = ACTIONS(123), + [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), @@ -277837,18 +277723,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(129), - [anon_sym_typeof] = ACTIONS(131), + [anon_sym_sizeof] = ACTIONS(1277), + [anon_sym_typeof] = ACTIONS(1279), [anon_sym___makeref] = ACTIONS(133), [anon_sym___reftype] = ACTIONS(135), [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1089), + [sym_null_literal] = ACTIONS(1287), + [anon_sym_SQUOTE] = ACTIONS(1289), + [sym_integer_literal] = ACTIONS(1287), + [sym_real_literal] = ACTIONS(1291), + [anon_sym_DQUOTE] = ACTIONS(1293), + [sym_verbatim_string_literal] = ACTIONS(1291), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -277859,90 +277745,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(151), - [sym_interpolation_verbatim_start] = ACTIONS(153), - [sym_interpolation_raw_start] = ACTIONS(155), - [sym_raw_string_start] = ACTIONS(157), + [sym_interpolation_regular_start] = ACTIONS(1297), + [sym_interpolation_verbatim_start] = ACTIONS(1299), + [sym_interpolation_raw_start] = ACTIONS(1301), + [sym_raw_string_start] = ACTIONS(1303), }, [1397] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2420), - [sym__name] = STATE(5887), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2197), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(5167), - [sym_non_lvalue_expression] = STATE(3066), - [sym_lvalue_expression] = STATE(3552), - [sym__expression_statement_expression] = STATE(3006), - [sym_assignment_expression] = STATE(3020), - [sym_binary_expression] = STATE(3006), - [sym_postfix_unary_expression] = STATE(3020), - [sym_prefix_unary_expression] = STATE(3020), - [sym__pointer_indirection_expression] = STATE(2423), - [sym_query_expression] = STATE(3006), - [sym_from_clause] = STATE(6181), - [sym_conditional_expression] = STATE(3006), - [sym_conditional_access_expression] = STATE(3006), - [sym_as_expression] = STATE(3006), - [sym_is_expression] = STATE(3006), - [sym_is_pattern_expression] = STATE(3006), - [sym_cast_expression] = STATE(3006), - [sym_checked_expression] = STATE(3006), - [sym_invocation_expression] = STATE(3020), - [sym_switch_expression] = STATE(3006), - [sym_await_expression] = STATE(3020), - [sym_throw_expression] = STATE(3006), - [sym_element_access_expression] = STATE(2423), - [sym_interpolated_string_expression] = STATE(3006), - [sym_member_access_expression] = STATE(2423), - [sym_object_creation_expression] = STATE(3020), - [sym_parenthesized_expression] = STATE(3020), - [sym__parenthesized_lvalue_expression] = STATE(2423), - [sym_lambda_expression] = STATE(3006), - [sym__lambda_expression_init] = STATE(7493), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3006), - [sym_anonymous_method_expression] = STATE(3006), - [sym_anonymous_object_creation_expression] = STATE(3006), - [sym_implicit_array_creation_expression] = STATE(3006), - [sym_implicit_object_creation_expression] = STATE(3006), - [sym_implicit_stackalloc_expression] = STATE(3006), - [sym_initializer_expression] = STATE(3006), - [sym_default_expression] = STATE(3006), - [sym_with_expression] = STATE(3006), - [sym_sizeof_expression] = STATE(3006), - [sym_typeof_expression] = STATE(3006), - [sym_makeref_expression] = STATE(3006), - [sym_ref_expression] = STATE(3006), - [sym_reftype_expression] = STATE(3006), - [sym_refvalue_expression] = STATE(3006), - [sym_stackalloc_expression] = STATE(3006), - [sym_range_expression] = STATE(3006), - [sym_tuple_expression] = STATE(2423), - [sym_literal] = STATE(3006), - [sym_character_literal] = STATE(3011), - [sym_string_literal] = STATE(3011), - [sym_raw_string_literal] = STATE(3011), - [sym_boolean_literal] = STATE(3011), - [sym_identifier] = STATE(2267), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3006), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(5895), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2376), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(5567), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3643), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3102), + [sym_postfix_unary_expression] = STATE(3079), + [sym_prefix_unary_expression] = STATE(3079), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6148), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3102), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3079), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3102), + [sym_member_access_expression] = STATE(2472), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3079), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7304), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(3102), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3102), + [sym_typeof_expression] = STATE(3102), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2472), + [sym_literal] = STATE(3102), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(1397), [sym_preproc_endregion] = STATE(1397), [sym_preproc_line] = STATE(1397), @@ -277952,47 +277838,47 @@ 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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3440), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1241), - [anon_sym_LPAREN] = ACTIONS(2031), - [anon_sym_ref] = ACTIONS(2033), - [anon_sym_LBRACE] = ACTIONS(1247), - [anon_sym_delegate] = ACTIONS(1249), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1479), + [anon_sym_LPAREN] = ACTIONS(2199), + [anon_sym_ref] = ACTIONS(2201), + [anon_sym_LBRACE] = ACTIONS(1481), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1251), + [anon_sym_new] = ACTIONS(2203), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1253), - [anon_sym_BANG] = ACTIONS(2037), - [anon_sym_TILDE] = ACTIONS(2037), - [anon_sym_PLUS_PLUS] = ACTIONS(2037), - [anon_sym_DASH_DASH] = ACTIONS(2037), - [anon_sym_true] = ACTIONS(1259), - [anon_sym_false] = ACTIONS(1259), - [anon_sym_PLUS] = ACTIONS(2035), - [anon_sym_DASH] = ACTIONS(2035), - [anon_sym_STAR] = ACTIONS(2039), - [anon_sym_CARET] = ACTIONS(2037), - [anon_sym_AMP] = ACTIONS(2037), - [anon_sym_this] = ACTIONS(1263), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(2207), + [anon_sym_TILDE] = ACTIONS(2207), + [anon_sym_PLUS_PLUS] = ACTIONS(2207), + [anon_sym_DASH_DASH] = ACTIONS(2207), + [anon_sym_true] = ACTIONS(77), + [anon_sym_false] = ACTIONS(77), + [anon_sym_PLUS] = ACTIONS(2205), + [anon_sym_DASH] = ACTIONS(2205), + [anon_sym_STAR] = ACTIONS(2209), + [anon_sym_CARET] = ACTIONS(2207), + [anon_sym_AMP] = ACTIONS(2207), + [anon_sym_this] = ACTIONS(83), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1265), + [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1267), - [anon_sym_unchecked] = ACTIONS(1253), + [sym_predefined_type] = ACTIONS(91), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1269), - [anon_sym_throw] = ACTIONS(2041), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(2211), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2043), - [anon_sym_DOT_DOT] = ACTIONS(2045), + [anon_sym_await] = ACTIONS(2213), + [anon_sym_DOT_DOT] = ACTIONS(2215), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -278005,19 +277891,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1277), - [anon_sym_sizeof] = ACTIONS(1279), - [anon_sym_typeof] = ACTIONS(1281), - [anon_sym___makeref] = ACTIONS(1283), - [anon_sym___reftype] = ACTIONS(1285), - [anon_sym___refvalue] = ACTIONS(1287), - [sym_null_literal] = ACTIONS(1289), - [anon_sym_SQUOTE] = ACTIONS(1291), - [sym_integer_literal] = ACTIONS(1289), - [sym_real_literal] = ACTIONS(1293), - [anon_sym_DQUOTE] = ACTIONS(1295), - [sym_verbatim_string_literal] = ACTIONS(1293), - [aux_sym_preproc_if_token1] = ACTIONS(1297), + [anon_sym_stackalloc] = ACTIONS(127), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_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), @@ -278028,90 +277914,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1299), - [sym_interpolation_verbatim_start] = ACTIONS(1301), - [sym_interpolation_raw_start] = ACTIONS(1303), - [sym_raw_string_start] = ACTIONS(1305), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [sym_interpolation_raw_start] = ACTIONS(155), + [sym_raw_string_start] = ACTIONS(157), }, [1398] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2610), - [sym__name] = STATE(5879), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2197), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(4208), - [sym_non_lvalue_expression] = STATE(3277), - [sym_lvalue_expression] = STATE(3134), - [sym__expression_statement_expression] = STATE(3228), - [sym_assignment_expression] = STATE(3289), - [sym_binary_expression] = STATE(3228), - [sym_postfix_unary_expression] = STATE(3289), - [sym_prefix_unary_expression] = STATE(3289), - [sym__pointer_indirection_expression] = STATE(2609), - [sym_query_expression] = STATE(3228), - [sym_from_clause] = STATE(6162), - [sym_conditional_expression] = STATE(3228), - [sym_conditional_access_expression] = STATE(3228), - [sym_as_expression] = STATE(3228), - [sym_is_expression] = STATE(3228), - [sym_is_pattern_expression] = STATE(3228), - [sym_cast_expression] = STATE(3228), - [sym_checked_expression] = STATE(3228), - [sym_invocation_expression] = STATE(3289), - [sym_switch_expression] = STATE(3228), - [sym_await_expression] = STATE(3289), - [sym_throw_expression] = STATE(3228), - [sym_element_access_expression] = STATE(2609), - [sym_interpolated_string_expression] = STATE(3228), - [sym_member_access_expression] = STATE(2609), - [sym_object_creation_expression] = STATE(3289), - [sym_parenthesized_expression] = STATE(3289), - [sym__parenthesized_lvalue_expression] = STATE(2609), - [sym_lambda_expression] = STATE(3228), - [sym__lambda_expression_init] = STATE(7695), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3228), - [sym_anonymous_method_expression] = STATE(3228), - [sym_anonymous_object_creation_expression] = STATE(3228), - [sym_implicit_array_creation_expression] = STATE(3228), - [sym_implicit_object_creation_expression] = STATE(3228), - [sym_implicit_stackalloc_expression] = STATE(3228), - [sym_initializer_expression] = STATE(3228), - [sym_default_expression] = STATE(3228), - [sym_with_expression] = STATE(3228), - [sym_sizeof_expression] = STATE(3228), - [sym_typeof_expression] = STATE(3228), - [sym_makeref_expression] = STATE(3228), - [sym_ref_expression] = STATE(3228), - [sym_reftype_expression] = STATE(3228), - [sym_refvalue_expression] = STATE(3228), - [sym_stackalloc_expression] = STATE(3228), - [sym_range_expression] = STATE(3228), - [sym_tuple_expression] = STATE(2609), - [sym_literal] = STATE(3228), - [sym_character_literal] = STATE(3278), - [sym_string_literal] = STATE(3278), - [sym_raw_string_literal] = STATE(3278), - [sym_boolean_literal] = STATE(3278), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3228), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(5895), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2376), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(5570), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3643), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3102), + [sym_postfix_unary_expression] = STATE(3079), + [sym_prefix_unary_expression] = STATE(3079), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6148), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3102), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3079), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3102), + [sym_member_access_expression] = STATE(2472), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3079), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7304), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(3102), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3102), + [sym_typeof_expression] = STATE(3102), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2472), + [sym_literal] = STATE(3102), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(1398), [sym_preproc_endregion] = STATE(1398), [sym_preproc_line] = STATE(1398), @@ -278121,47 +278007,47 @@ 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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3396), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1153), - [anon_sym_LPAREN] = ACTIONS(1371), - [anon_sym_ref] = ACTIONS(1373), - [anon_sym_LBRACE] = ACTIONS(1159), - [anon_sym_delegate] = ACTIONS(1161), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1479), + [anon_sym_LPAREN] = ACTIONS(2199), + [anon_sym_ref] = ACTIONS(2201), + [anon_sym_LBRACE] = ACTIONS(1481), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1163), + [anon_sym_new] = ACTIONS(2203), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1167), - [anon_sym_BANG] = ACTIONS(1377), - [anon_sym_TILDE] = ACTIONS(1377), - [anon_sym_PLUS_PLUS] = ACTIONS(1377), - [anon_sym_DASH_DASH] = ACTIONS(1377), - [anon_sym_true] = ACTIONS(1173), - [anon_sym_false] = ACTIONS(1173), - [anon_sym_PLUS] = ACTIONS(1375), - [anon_sym_DASH] = ACTIONS(1375), - [anon_sym_STAR] = ACTIONS(1379), - [anon_sym_CARET] = ACTIONS(1377), - [anon_sym_AMP] = ACTIONS(1377), - [anon_sym_this] = ACTIONS(1177), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(2207), + [anon_sym_TILDE] = ACTIONS(2207), + [anon_sym_PLUS_PLUS] = ACTIONS(2207), + [anon_sym_DASH_DASH] = ACTIONS(2207), + [anon_sym_true] = ACTIONS(77), + [anon_sym_false] = ACTIONS(77), + [anon_sym_PLUS] = ACTIONS(2205), + [anon_sym_DASH] = ACTIONS(2205), + [anon_sym_STAR] = ACTIONS(2209), + [anon_sym_CARET] = ACTIONS(2207), + [anon_sym_AMP] = ACTIONS(2207), + [anon_sym_this] = ACTIONS(83), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1179), + [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1181), - [anon_sym_unchecked] = ACTIONS(1167), + [sym_predefined_type] = ACTIONS(91), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1183), - [anon_sym_throw] = ACTIONS(1381), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(2211), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1383), - [anon_sym_DOT_DOT] = ACTIONS(1385), + [anon_sym_await] = ACTIONS(2213), + [anon_sym_DOT_DOT] = ACTIONS(2215), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -278174,19 +278060,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1191), - [anon_sym_sizeof] = ACTIONS(1193), - [anon_sym_typeof] = ACTIONS(1195), - [anon_sym___makeref] = ACTIONS(1197), - [anon_sym___reftype] = ACTIONS(1199), - [anon_sym___refvalue] = ACTIONS(1201), - [sym_null_literal] = ACTIONS(1203), - [anon_sym_SQUOTE] = ACTIONS(1205), - [sym_integer_literal] = ACTIONS(1203), - [sym_real_literal] = ACTIONS(1207), - [anon_sym_DQUOTE] = ACTIONS(1209), - [sym_verbatim_string_literal] = ACTIONS(1207), - [aux_sym_preproc_if_token1] = ACTIONS(1211), + [anon_sym_stackalloc] = ACTIONS(127), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_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), @@ -278197,90 +278083,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1213), - [sym_interpolation_verbatim_start] = ACTIONS(1215), - [sym_interpolation_raw_start] = ACTIONS(1217), - [sym_raw_string_start] = ACTIONS(1219), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [sym_interpolation_raw_start] = ACTIONS(155), + [sym_raw_string_start] = ACTIONS(157), }, [1399] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(3184), - [sym__name] = STATE(5883), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2313), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2269), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(5054), - [sym_non_lvalue_expression] = STATE(4541), - [sym_lvalue_expression] = STATE(3527), - [sym__expression_statement_expression] = STATE(4529), - [sym_assignment_expression] = STATE(4543), - [sym_binary_expression] = STATE(4529), - [sym_postfix_unary_expression] = STATE(4543), - [sym_prefix_unary_expression] = STATE(4543), - [sym__pointer_indirection_expression] = STATE(3175), - [sym_query_expression] = STATE(4529), - [sym_from_clause] = STATE(6169), - [sym_conditional_expression] = STATE(4529), - [sym_conditional_access_expression] = STATE(4529), - [sym_as_expression] = STATE(4529), - [sym_is_expression] = STATE(4529), - [sym_is_pattern_expression] = STATE(4529), - [sym_cast_expression] = STATE(4529), - [sym_checked_expression] = STATE(4529), - [sym_invocation_expression] = STATE(4543), - [sym_switch_expression] = STATE(4529), - [sym_await_expression] = STATE(4543), - [sym_throw_expression] = STATE(4529), - [sym_element_access_expression] = STATE(3175), - [sym_interpolated_string_expression] = STATE(4529), - [sym_member_access_expression] = STATE(3175), - [sym_object_creation_expression] = STATE(4543), - [sym_parenthesized_expression] = STATE(4543), - [sym__parenthesized_lvalue_expression] = STATE(3175), - [sym_lambda_expression] = STATE(4529), - [sym__lambda_expression_init] = STATE(7337), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(4529), - [sym_anonymous_method_expression] = STATE(4529), - [sym_anonymous_object_creation_expression] = STATE(4529), - [sym_implicit_array_creation_expression] = STATE(4529), - [sym_implicit_object_creation_expression] = STATE(4529), - [sym_implicit_stackalloc_expression] = STATE(4529), - [sym_initializer_expression] = STATE(4529), - [sym_default_expression] = STATE(4529), - [sym_with_expression] = STATE(4529), - [sym_sizeof_expression] = STATE(4529), - [sym_typeof_expression] = STATE(4529), - [sym_makeref_expression] = STATE(4529), - [sym_ref_expression] = STATE(4529), - [sym_reftype_expression] = STATE(4529), - [sym_refvalue_expression] = STATE(4529), - [sym_stackalloc_expression] = STATE(4529), - [sym_range_expression] = STATE(4529), - [sym_tuple_expression] = STATE(3175), - [sym_literal] = STATE(4529), - [sym_character_literal] = STATE(4536), - [sym_string_literal] = STATE(4536), - [sym_raw_string_literal] = STATE(4536), - [sym_boolean_literal] = STATE(4536), - [sym_identifier] = STATE(2246), - [sym__reserved_identifier] = STATE(2240), - [sym_preproc_if_in_expression] = STATE(4529), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(5895), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2376), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(5571), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3643), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3102), + [sym_postfix_unary_expression] = STATE(3079), + [sym_prefix_unary_expression] = STATE(3079), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6148), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3102), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3079), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3102), + [sym_member_access_expression] = STATE(2472), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3079), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7304), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(3102), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3102), + [sym_typeof_expression] = STATE(3102), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2472), + [sym_literal] = STATE(3102), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(1399), [sym_preproc_endregion] = STATE(1399), [sym_preproc_line] = STATE(1399), @@ -278290,216 +278176,47 @@ 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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3363), - [sym__identifier_token] = ACTIONS(1387), - [anon_sym_alias] = ACTIONS(1389), - [anon_sym_global] = ACTIONS(1389), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1391), - [anon_sym_LPAREN] = ACTIONS(1745), - [anon_sym_ref] = ACTIONS(1747), - [anon_sym_LBRACE] = ACTIONS(1397), - [anon_sym_delegate] = ACTIONS(1399), - [anon_sym_async] = ACTIONS(1047), - [anon_sym_file] = ACTIONS(1389), - [anon_sym_new] = ACTIONS(1467), - [anon_sym_where] = ACTIONS(1389), - [anon_sym_notnull] = ACTIONS(1389), - [anon_sym_unmanaged] = ACTIONS(1389), - [anon_sym_checked] = ACTIONS(1403), - [anon_sym_BANG] = ACTIONS(1751), - [anon_sym_TILDE] = ACTIONS(1751), - [anon_sym_PLUS_PLUS] = ACTIONS(1751), - [anon_sym_DASH_DASH] = ACTIONS(1751), - [anon_sym_true] = ACTIONS(1409), - [anon_sym_false] = ACTIONS(1409), - [anon_sym_PLUS] = ACTIONS(1749), - [anon_sym_DASH] = ACTIONS(1749), - [anon_sym_STAR] = ACTIONS(1473), - [anon_sym_CARET] = ACTIONS(1751), - [anon_sym_AMP] = ACTIONS(1751), - [anon_sym_this] = ACTIONS(1413), - [anon_sym_scoped] = ACTIONS(1415), - [anon_sym_base] = ACTIONS(1417), - [anon_sym_var] = ACTIONS(1419), - [sym_predefined_type] = ACTIONS(1421), - [anon_sym_unchecked] = ACTIONS(1403), - [anon_sym_yield] = ACTIONS(1389), - [anon_sym_default] = ACTIONS(1423), - [anon_sym_throw] = ACTIONS(1753), - [anon_sym_when] = ACTIONS(1389), - [anon_sym_await] = ACTIONS(1755), - [anon_sym_DOT_DOT] = ACTIONS(1757), - [anon_sym_from] = ACTIONS(1431), - [anon_sym_into] = ACTIONS(1389), - [anon_sym_join] = ACTIONS(1389), - [anon_sym_on] = ACTIONS(1389), - [anon_sym_equals] = ACTIONS(1389), - [anon_sym_let] = ACTIONS(1389), - [anon_sym_orderby] = ACTIONS(1389), - [anon_sym_ascending] = ACTIONS(1389), - [anon_sym_descending] = ACTIONS(1389), - [anon_sym_group] = ACTIONS(1389), - [anon_sym_by] = ACTIONS(1389), - [anon_sym_select] = ACTIONS(1389), - [anon_sym_stackalloc] = ACTIONS(1433), - [anon_sym_sizeof] = ACTIONS(1435), - [anon_sym_typeof] = ACTIONS(1437), - [anon_sym___makeref] = ACTIONS(1439), - [anon_sym___reftype] = ACTIONS(1441), - [anon_sym___refvalue] = ACTIONS(1443), - [sym_null_literal] = ACTIONS(1445), - [anon_sym_SQUOTE] = ACTIONS(1447), - [sym_integer_literal] = ACTIONS(1445), - [sym_real_literal] = ACTIONS(1449), - [anon_sym_DQUOTE] = ACTIONS(1451), - [sym_verbatim_string_literal] = ACTIONS(1449), - [aux_sym_preproc_if_token1] = ACTIONS(1453), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1455), - [sym_interpolation_verbatim_start] = ACTIONS(1457), - [sym_interpolation_raw_start] = ACTIONS(1459), - [sym_raw_string_start] = ACTIONS(1461), - }, - [1400] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2762), - [sym__name] = STATE(5889), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2204), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(3194), - [sym_non_lvalue_expression] = STATE(3438), - [sym_lvalue_expression] = STATE(3548), - [sym__expression_statement_expression] = STATE(3362), - [sym_assignment_expression] = STATE(3449), - [sym_binary_expression] = STATE(3362), - [sym_postfix_unary_expression] = STATE(3449), - [sym_prefix_unary_expression] = STATE(3449), - [sym__pointer_indirection_expression] = STATE(2747), - [sym_query_expression] = STATE(3362), - [sym_from_clause] = STATE(6146), - [sym_conditional_expression] = STATE(3362), - [sym_conditional_access_expression] = STATE(3362), - [sym_as_expression] = STATE(3362), - [sym_is_expression] = STATE(3362), - [sym_is_pattern_expression] = STATE(3362), - [sym_cast_expression] = STATE(3362), - [sym_checked_expression] = STATE(3362), - [sym_invocation_expression] = STATE(3449), - [sym_switch_expression] = STATE(3362), - [sym_await_expression] = STATE(3449), - [sym_throw_expression] = STATE(3362), - [sym_element_access_expression] = STATE(2747), - [sym_interpolated_string_expression] = STATE(3362), - [sym_member_access_expression] = STATE(2747), - [sym_object_creation_expression] = STATE(3449), - [sym_parenthesized_expression] = STATE(3449), - [sym__parenthesized_lvalue_expression] = STATE(2747), - [sym_lambda_expression] = STATE(3362), - [sym__lambda_expression_init] = STATE(7772), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3362), - [sym_anonymous_method_expression] = STATE(3362), - [sym_anonymous_object_creation_expression] = STATE(3362), - [sym_implicit_array_creation_expression] = STATE(3362), - [sym_implicit_object_creation_expression] = STATE(3362), - [sym_implicit_stackalloc_expression] = STATE(3362), - [sym_initializer_expression] = STATE(3362), - [sym_default_expression] = STATE(3362), - [sym_with_expression] = STATE(3362), - [sym_sizeof_expression] = STATE(3362), - [sym_typeof_expression] = STATE(3362), - [sym_makeref_expression] = STATE(3362), - [sym_ref_expression] = STATE(3362), - [sym_reftype_expression] = STATE(3362), - [sym_refvalue_expression] = STATE(3362), - [sym_stackalloc_expression] = STATE(3362), - [sym_range_expression] = STATE(3362), - [sym_tuple_expression] = STATE(2747), - [sym_literal] = STATE(3362), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3362), - [sym_preproc_if_in_attribute_list] = STATE(5576), - [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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3385), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1307), - [anon_sym_LPAREN] = ACTIONS(1789), - [anon_sym_ref] = ACTIONS(1791), - [anon_sym_LBRACE] = ACTIONS(1313), - [anon_sym_delegate] = ACTIONS(1315), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1479), + [anon_sym_LPAREN] = ACTIONS(2199), + [anon_sym_ref] = ACTIONS(2201), + [anon_sym_LBRACE] = ACTIONS(1481), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1317), + [anon_sym_new] = ACTIONS(2203), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1319), - [anon_sym_BANG] = ACTIONS(1795), - [anon_sym_TILDE] = ACTIONS(1795), - [anon_sym_PLUS_PLUS] = ACTIONS(1795), - [anon_sym_DASH_DASH] = ACTIONS(1795), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(2207), + [anon_sym_TILDE] = ACTIONS(2207), + [anon_sym_PLUS_PLUS] = ACTIONS(2207), + [anon_sym_DASH_DASH] = ACTIONS(2207), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1793), - [anon_sym_DASH] = ACTIONS(1793), - [anon_sym_STAR] = ACTIONS(1797), - [anon_sym_CARET] = ACTIONS(1795), - [anon_sym_AMP] = ACTIONS(1795), - [anon_sym_this] = ACTIONS(1323), + [anon_sym_PLUS] = ACTIONS(2205), + [anon_sym_DASH] = ACTIONS(2205), + [anon_sym_STAR] = ACTIONS(2209), + [anon_sym_CARET] = ACTIONS(2207), + [anon_sym_AMP] = ACTIONS(2207), + [anon_sym_this] = ACTIONS(83), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1325), + [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1319), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1799), + [anon_sym_throw] = ACTIONS(2211), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1801), - [anon_sym_DOT_DOT] = ACTIONS(1803), + [anon_sym_await] = ACTIONS(2213), + [anon_sym_DOT_DOT] = ACTIONS(2215), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -278512,19 +278229,188 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1333), + [anon_sym_stackalloc] = ACTIONS(127), [anon_sym_sizeof] = ACTIONS(129), [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(1335), - [anon_sym___reftype] = ACTIONS(1337), - [anon_sym___refvalue] = ACTIONS(1339), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), [sym_null_literal] = ACTIONS(139), [anon_sym_SQUOTE] = ACTIONS(141), [sym_integer_literal] = ACTIONS(139), [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1341), + [aux_sym_preproc_if_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), + }, + [1400] = { + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(5895), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2376), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(5572), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3643), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3102), + [sym_postfix_unary_expression] = STATE(3079), + [sym_prefix_unary_expression] = STATE(3079), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6148), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3102), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3079), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3102), + [sym_member_access_expression] = STATE(2472), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3079), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7304), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(3102), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3102), + [sym_typeof_expression] = STATE(3102), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2472), + [sym_literal] = STATE(3102), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), + [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(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), + [sym__identifier_token] = ACTIONS(25), + [anon_sym_alias] = ACTIONS(29), + [anon_sym_global] = ACTIONS(29), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1479), + [anon_sym_LPAREN] = ACTIONS(2199), + [anon_sym_ref] = ACTIONS(2201), + [anon_sym_LBRACE] = ACTIONS(1481), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), + [anon_sym_file] = ACTIONS(29), + [anon_sym_new] = ACTIONS(2203), + [anon_sym_where] = ACTIONS(29), + [anon_sym_notnull] = ACTIONS(29), + [anon_sym_unmanaged] = ACTIONS(29), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(2207), + [anon_sym_TILDE] = ACTIONS(2207), + [anon_sym_PLUS_PLUS] = ACTIONS(2207), + [anon_sym_DASH_DASH] = ACTIONS(2207), + [anon_sym_true] = ACTIONS(77), + [anon_sym_false] = ACTIONS(77), + [anon_sym_PLUS] = ACTIONS(2205), + [anon_sym_DASH] = ACTIONS(2205), + [anon_sym_STAR] = ACTIONS(2209), + [anon_sym_CARET] = ACTIONS(2207), + [anon_sym_AMP] = ACTIONS(2207), + [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(2211), + [anon_sym_when] = ACTIONS(29), + [anon_sym_await] = ACTIONS(2213), + [anon_sym_DOT_DOT] = ACTIONS(2215), + [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), @@ -278541,84 +278427,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [1401] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2420), - [sym__name] = STATE(5875), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2369), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(5688), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(2447), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3080), - [sym_postfix_unary_expression] = STATE(3111), - [sym_prefix_unary_expression] = STATE(3111), - [sym__pointer_indirection_expression] = STATE(2423), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6154), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3080), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3111), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2423), - [sym_interpolated_string_expression] = STATE(3080), - [sym_member_access_expression] = STATE(2423), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3111), - [sym__parenthesized_lvalue_expression] = STATE(2423), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7530), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(3080), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3080), - [sym_typeof_expression] = STATE(3080), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2423), - [sym_literal] = STATE(3080), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(5895), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2376), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(5573), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3643), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3102), + [sym_postfix_unary_expression] = STATE(3079), + [sym_prefix_unary_expression] = STATE(3079), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6148), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3102), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3079), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3102), + [sym_member_access_expression] = STATE(2472), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3079), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7304), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(3102), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3102), + [sym_typeof_expression] = STATE(3102), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2472), + [sym_literal] = STATE(3102), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(1401), [sym_preproc_endregion] = STATE(1401), [sym_preproc_line] = STATE(1401), @@ -278628,47 +278514,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1401), [sym_preproc_define] = STATE(1401), [sym_preproc_undef] = STATE(1401), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1241), - [anon_sym_LPAREN] = ACTIONS(2941), - [anon_sym_ref] = ACTIONS(661), - [anon_sym_LBRACE] = ACTIONS(1487), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1479), + [anon_sym_LPAREN] = ACTIONS(2199), + [anon_sym_ref] = ACTIONS(2201), + [anon_sym_LBRACE] = ACTIONS(1481), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1061), + [anon_sym_new] = ACTIONS(2203), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = 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_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(2207), + [anon_sym_TILDE] = ACTIONS(2207), + [anon_sym_PLUS_PLUS] = ACTIONS(2207), + [anon_sym_DASH_DASH] = ACTIONS(2207), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1585), - [anon_sym_DASH] = ACTIONS(1585), - [anon_sym_STAR] = ACTIONS(1851), - [anon_sym_CARET] = ACTIONS(1587), - [anon_sym_AMP] = ACTIONS(1587), - [anon_sym_this] = ACTIONS(1263), + [anon_sym_PLUS] = ACTIONS(2205), + [anon_sym_DASH] = ACTIONS(2205), + [anon_sym_STAR] = ACTIONS(2209), + [anon_sym_CARET] = ACTIONS(2207), + [anon_sym_AMP] = ACTIONS(2207), + [anon_sym_this] = ACTIONS(83), [anon_sym_scoped] = ACTIONS(85), [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1267), - [anon_sym_unchecked] = ACTIONS(1067), + [sym_predefined_type] = ACTIONS(91), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1589), + [anon_sym_throw] = ACTIONS(2211), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1591), - [anon_sym_DOT_DOT] = ACTIONS(123), + [anon_sym_await] = ACTIONS(2213), + [anon_sym_DOT_DOT] = ACTIONS(2215), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -278693,7 +278579,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(1089), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -278710,84 +278596,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [1402] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2914), - [sym__name] = STATE(5885), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2357), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(3730), - [sym_non_lvalue_expression] = STATE(3880), - [sym_lvalue_expression] = STATE(2986), - [sym__expression_statement_expression] = STATE(3873), - [sym_assignment_expression] = STATE(3881), - [sym_binary_expression] = STATE(3873), - [sym_postfix_unary_expression] = STATE(3881), - [sym_prefix_unary_expression] = STATE(3881), - [sym__pointer_indirection_expression] = STATE(2913), - [sym_query_expression] = STATE(3873), - [sym_from_clause] = STATE(6168), - [sym_conditional_expression] = STATE(3873), - [sym_conditional_access_expression] = STATE(3873), - [sym_as_expression] = STATE(3873), - [sym_is_expression] = STATE(3873), - [sym_is_pattern_expression] = STATE(3873), - [sym_cast_expression] = STATE(3873), - [sym_checked_expression] = STATE(3873), - [sym_invocation_expression] = STATE(3881), - [sym_switch_expression] = STATE(3873), - [sym_await_expression] = STATE(3881), - [sym_throw_expression] = STATE(3873), - [sym_element_access_expression] = STATE(2913), - [sym_interpolated_string_expression] = STATE(3873), - [sym_member_access_expression] = STATE(2913), - [sym_object_creation_expression] = STATE(3881), - [sym_parenthesized_expression] = STATE(3881), - [sym__parenthesized_lvalue_expression] = STATE(2913), - [sym_lambda_expression] = STATE(3873), - [sym__lambda_expression_init] = STATE(7587), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3873), - [sym_anonymous_method_expression] = STATE(3873), - [sym_anonymous_object_creation_expression] = STATE(3873), - [sym_implicit_array_creation_expression] = STATE(3873), - [sym_implicit_object_creation_expression] = STATE(3873), - [sym_implicit_stackalloc_expression] = STATE(3873), - [sym_initializer_expression] = STATE(3873), - [sym_default_expression] = STATE(3873), - [sym_with_expression] = STATE(3873), - [sym_sizeof_expression] = STATE(3873), - [sym_typeof_expression] = STATE(3873), - [sym_makeref_expression] = STATE(3873), - [sym_ref_expression] = STATE(3873), - [sym_reftype_expression] = STATE(3873), - [sym_refvalue_expression] = STATE(3873), - [sym_stackalloc_expression] = STATE(3873), - [sym_range_expression] = STATE(3873), - [sym_tuple_expression] = STATE(2913), - [sym_literal] = STATE(3873), - [sym_character_literal] = STATE(3877), - [sym_string_literal] = STATE(3877), - [sym_raw_string_literal] = STATE(3877), - [sym_boolean_literal] = STATE(3877), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3873), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(5895), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2376), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(5574), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3643), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3102), + [sym_postfix_unary_expression] = STATE(3079), + [sym_prefix_unary_expression] = STATE(3079), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6148), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3102), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3079), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3102), + [sym_member_access_expression] = STATE(2472), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3079), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7304), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(3102), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3102), + [sym_typeof_expression] = STATE(3102), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2472), + [sym_literal] = STATE(3102), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(1402), [sym_preproc_endregion] = STATE(1402), [sym_preproc_line] = STATE(1402), @@ -278797,47 +278683,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1402), [sym_preproc_define] = STATE(1402), [sym_preproc_undef] = STATE(1402), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3382), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1627), - [anon_sym_LPAREN] = ACTIONS(2079), - [anon_sym_ref] = ACTIONS(2081), - [anon_sym_LBRACE] = ACTIONS(1633), - [anon_sym_delegate] = ACTIONS(1635), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1479), + [anon_sym_LPAREN] = ACTIONS(2199), + [anon_sym_ref] = ACTIONS(2201), + [anon_sym_LBRACE] = ACTIONS(1481), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1731), + [anon_sym_new] = ACTIONS(2203), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1639), - [anon_sym_BANG] = ACTIONS(2085), - [anon_sym_TILDE] = ACTIONS(2085), - [anon_sym_PLUS_PLUS] = ACTIONS(2085), - [anon_sym_DASH_DASH] = ACTIONS(2085), - [anon_sym_true] = ACTIONS(1645), - [anon_sym_false] = ACTIONS(1645), - [anon_sym_PLUS] = ACTIONS(2083), - [anon_sym_DASH] = ACTIONS(2083), - [anon_sym_STAR] = ACTIONS(1737), - [anon_sym_CARET] = ACTIONS(2085), - [anon_sym_AMP] = ACTIONS(2085), - [anon_sym_this] = ACTIONS(1649), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(2207), + [anon_sym_TILDE] = ACTIONS(2207), + [anon_sym_PLUS_PLUS] = ACTIONS(2207), + [anon_sym_DASH_DASH] = ACTIONS(2207), + [anon_sym_true] = ACTIONS(77), + [anon_sym_false] = ACTIONS(77), + [anon_sym_PLUS] = ACTIONS(2205), + [anon_sym_DASH] = ACTIONS(2205), + [anon_sym_STAR] = ACTIONS(2209), + [anon_sym_CARET] = ACTIONS(2207), + [anon_sym_AMP] = ACTIONS(2207), + [anon_sym_this] = ACTIONS(83), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1651), + [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1653), - [anon_sym_unchecked] = ACTIONS(1639), + [sym_predefined_type] = ACTIONS(91), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1655), - [anon_sym_throw] = ACTIONS(2087), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(2211), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2089), - [anon_sym_DOT_DOT] = ACTIONS(2091), + [anon_sym_await] = ACTIONS(2213), + [anon_sym_DOT_DOT] = ACTIONS(2215), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -278850,19 +278736,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1663), - [anon_sym_sizeof] = ACTIONS(1665), - [anon_sym_typeof] = ACTIONS(1667), - [anon_sym___makeref] = ACTIONS(1669), - [anon_sym___reftype] = ACTIONS(1671), - [anon_sym___refvalue] = ACTIONS(1673), - [sym_null_literal] = ACTIONS(1675), - [anon_sym_SQUOTE] = ACTIONS(1677), - [sym_integer_literal] = ACTIONS(1675), - [sym_real_literal] = ACTIONS(1679), - [anon_sym_DQUOTE] = ACTIONS(1681), - [sym_verbatim_string_literal] = ACTIONS(1679), - [aux_sym_preproc_if_token1] = ACTIONS(1683), + [anon_sym_stackalloc] = ACTIONS(127), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_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), @@ -278873,90 +278759,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1685), - [sym_interpolation_verbatim_start] = ACTIONS(1687), - [sym_interpolation_raw_start] = ACTIONS(1689), - [sym_raw_string_start] = ACTIONS(1691), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [sym_interpolation_raw_start] = ACTIONS(155), + [sym_raw_string_start] = ACTIONS(157), }, [1403] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2610), - [sym__name] = STATE(5896), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2384), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(4711), - [sym_non_lvalue_expression] = STATE(3277), - [sym_lvalue_expression] = STATE(3392), - [sym__expression_statement_expression] = STATE(3228), - [sym_assignment_expression] = STATE(3289), - [sym_binary_expression] = STATE(3228), - [sym_postfix_unary_expression] = STATE(3289), - [sym_prefix_unary_expression] = STATE(3289), - [sym__pointer_indirection_expression] = STATE(2609), - [sym_query_expression] = STATE(3228), - [sym_from_clause] = STATE(6173), - [sym_conditional_expression] = STATE(3228), - [sym_conditional_access_expression] = STATE(3228), - [sym_as_expression] = STATE(3228), - [sym_is_expression] = STATE(3228), - [sym_is_pattern_expression] = STATE(3228), - [sym_cast_expression] = STATE(3228), - [sym_checked_expression] = STATE(3228), - [sym_invocation_expression] = STATE(3289), - [sym_switch_expression] = STATE(3228), - [sym_await_expression] = STATE(3289), - [sym_throw_expression] = STATE(3228), - [sym_element_access_expression] = STATE(2609), - [sym_interpolated_string_expression] = STATE(3228), - [sym_member_access_expression] = STATE(2609), - [sym_object_creation_expression] = STATE(3289), - [sym_parenthesized_expression] = STATE(3289), - [sym__parenthesized_lvalue_expression] = STATE(2609), - [sym_lambda_expression] = STATE(3228), - [sym__lambda_expression_init] = STATE(7334), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3228), - [sym_anonymous_method_expression] = STATE(3228), - [sym_anonymous_object_creation_expression] = STATE(3228), - [sym_implicit_array_creation_expression] = STATE(3228), - [sym_implicit_object_creation_expression] = STATE(3228), - [sym_implicit_stackalloc_expression] = STATE(3228), - [sym_initializer_expression] = STATE(3228), - [sym_default_expression] = STATE(3228), - [sym_with_expression] = STATE(3228), - [sym_sizeof_expression] = STATE(3228), - [sym_typeof_expression] = STATE(3228), - [sym_makeref_expression] = STATE(3228), - [sym_ref_expression] = STATE(3228), - [sym_reftype_expression] = STATE(3228), - [sym_refvalue_expression] = STATE(3228), - [sym_stackalloc_expression] = STATE(3228), - [sym_range_expression] = STATE(3228), - [sym_tuple_expression] = STATE(2609), - [sym_literal] = STATE(3228), - [sym_character_literal] = STATE(3278), - [sym_string_literal] = STATE(3278), - [sym_raw_string_literal] = STATE(3278), - [sym_boolean_literal] = STATE(3278), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3228), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(5895), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2376), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(5575), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3643), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3102), + [sym_postfix_unary_expression] = STATE(3079), + [sym_prefix_unary_expression] = STATE(3079), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6148), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3102), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3079), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3102), + [sym_member_access_expression] = STATE(2472), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3079), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7304), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(3102), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3102), + [sym_typeof_expression] = STATE(3102), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2472), + [sym_literal] = STATE(3102), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(1403), [sym_preproc_endregion] = STATE(1403), [sym_preproc_line] = STATE(1403), @@ -278966,47 +278852,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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3396), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1153), - [anon_sym_LPAREN] = ACTIONS(1859), - [anon_sym_ref] = ACTIONS(1861), - [anon_sym_LBRACE] = ACTIONS(1159), - [anon_sym_delegate] = ACTIONS(1161), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1479), + [anon_sym_LPAREN] = ACTIONS(2199), + [anon_sym_ref] = ACTIONS(2201), + [anon_sym_LBRACE] = ACTIONS(1481), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1863), + [anon_sym_new] = ACTIONS(2203), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1167), - [anon_sym_BANG] = ACTIONS(1867), - [anon_sym_TILDE] = ACTIONS(1867), - [anon_sym_PLUS_PLUS] = ACTIONS(1867), - [anon_sym_DASH_DASH] = ACTIONS(1867), - [anon_sym_true] = ACTIONS(1173), - [anon_sym_false] = ACTIONS(1173), - [anon_sym_PLUS] = ACTIONS(1865), - [anon_sym_DASH] = ACTIONS(1865), - [anon_sym_STAR] = ACTIONS(1869), - [anon_sym_CARET] = ACTIONS(1867), - [anon_sym_AMP] = ACTIONS(1867), - [anon_sym_this] = ACTIONS(1177), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(2207), + [anon_sym_TILDE] = ACTIONS(2207), + [anon_sym_PLUS_PLUS] = ACTIONS(2207), + [anon_sym_DASH_DASH] = ACTIONS(2207), + [anon_sym_true] = ACTIONS(77), + [anon_sym_false] = ACTIONS(77), + [anon_sym_PLUS] = ACTIONS(2205), + [anon_sym_DASH] = ACTIONS(2205), + [anon_sym_STAR] = ACTIONS(2209), + [anon_sym_CARET] = ACTIONS(2207), + [anon_sym_AMP] = ACTIONS(2207), + [anon_sym_this] = ACTIONS(83), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1179), + [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1181), - [anon_sym_unchecked] = ACTIONS(1167), + [sym_predefined_type] = ACTIONS(91), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1183), - [anon_sym_throw] = ACTIONS(1871), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(2211), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1873), - [anon_sym_DOT_DOT] = ACTIONS(1875), + [anon_sym_await] = ACTIONS(2213), + [anon_sym_DOT_DOT] = ACTIONS(2215), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -279019,19 +278905,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1191), - [anon_sym_sizeof] = ACTIONS(1193), - [anon_sym_typeof] = ACTIONS(1195), - [anon_sym___makeref] = ACTIONS(1197), - [anon_sym___reftype] = ACTIONS(1199), - [anon_sym___refvalue] = ACTIONS(1201), - [sym_null_literal] = ACTIONS(1203), - [anon_sym_SQUOTE] = ACTIONS(1205), - [sym_integer_literal] = ACTIONS(1203), - [sym_real_literal] = ACTIONS(1207), - [anon_sym_DQUOTE] = ACTIONS(1209), - [sym_verbatim_string_literal] = ACTIONS(1207), - [aux_sym_preproc_if_token1] = ACTIONS(1211), + [anon_sym_stackalloc] = ACTIONS(127), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_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), @@ -279042,90 +278928,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1213), - [sym_interpolation_verbatim_start] = ACTIONS(1215), - [sym_interpolation_raw_start] = ACTIONS(1217), - [sym_raw_string_start] = ACTIONS(1219), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [sym_interpolation_raw_start] = ACTIONS(155), + [sym_raw_string_start] = ACTIONS(157), }, [1404] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2420), - [sym__name] = STATE(5887), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2197), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(2910), - [sym_non_lvalue_expression] = STATE(3066), - [sym_lvalue_expression] = STATE(3120), - [sym__expression_statement_expression] = STATE(3006), - [sym_assignment_expression] = STATE(3020), - [sym_binary_expression] = STATE(3006), - [sym_postfix_unary_expression] = STATE(3020), - [sym_prefix_unary_expression] = STATE(3020), - [sym__pointer_indirection_expression] = STATE(2423), - [sym_query_expression] = STATE(3006), - [sym_from_clause] = STATE(6152), - [sym_conditional_expression] = STATE(3006), - [sym_conditional_access_expression] = STATE(3006), - [sym_as_expression] = STATE(3006), - [sym_is_expression] = STATE(3006), - [sym_is_pattern_expression] = STATE(3006), - [sym_cast_expression] = STATE(3006), - [sym_checked_expression] = STATE(3006), - [sym_invocation_expression] = STATE(3020), - [sym_switch_expression] = STATE(3006), - [sym_await_expression] = STATE(3020), - [sym_throw_expression] = STATE(3006), - [sym_element_access_expression] = STATE(2423), - [sym_interpolated_string_expression] = STATE(3006), - [sym_member_access_expression] = STATE(2423), - [sym_object_creation_expression] = STATE(3020), - [sym_parenthesized_expression] = STATE(3020), - [sym__parenthesized_lvalue_expression] = STATE(2423), - [sym_lambda_expression] = STATE(3006), - [sym__lambda_expression_init] = STATE(7722), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3006), - [sym_anonymous_method_expression] = STATE(3006), - [sym_anonymous_object_creation_expression] = STATE(3006), - [sym_implicit_array_creation_expression] = STATE(3006), - [sym_implicit_object_creation_expression] = STATE(3006), - [sym_implicit_stackalloc_expression] = STATE(3006), - [sym_initializer_expression] = STATE(3006), - [sym_default_expression] = STATE(3006), - [sym_with_expression] = STATE(3006), - [sym_sizeof_expression] = STATE(3006), - [sym_typeof_expression] = STATE(3006), - [sym_makeref_expression] = STATE(3006), - [sym_ref_expression] = STATE(3006), - [sym_reftype_expression] = STATE(3006), - [sym_refvalue_expression] = STATE(3006), - [sym_stackalloc_expression] = STATE(3006), - [sym_range_expression] = STATE(3006), - [sym_tuple_expression] = STATE(2423), - [sym_literal] = STATE(3006), - [sym_character_literal] = STATE(3011), - [sym_string_literal] = STATE(3011), - [sym_raw_string_literal] = STATE(3011), - [sym_boolean_literal] = STATE(3011), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3006), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(5895), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2376), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(5576), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3643), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3102), + [sym_postfix_unary_expression] = STATE(3079), + [sym_prefix_unary_expression] = STATE(3079), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6148), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3102), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3079), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3102), + [sym_member_access_expression] = STATE(2472), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3079), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7304), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(3102), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3102), + [sym_typeof_expression] = STATE(3102), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2472), + [sym_literal] = STATE(3102), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(1404), [sym_preproc_endregion] = STATE(1404), [sym_preproc_line] = STATE(1404), @@ -279135,47 +279021,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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3440), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1241), - [anon_sym_LPAREN] = ACTIONS(1243), - [anon_sym_ref] = ACTIONS(1245), - [anon_sym_LBRACE] = ACTIONS(1247), - [anon_sym_delegate] = ACTIONS(1249), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1479), + [anon_sym_LPAREN] = ACTIONS(2199), + [anon_sym_ref] = ACTIONS(2201), + [anon_sym_LBRACE] = ACTIONS(1481), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1251), + [anon_sym_new] = ACTIONS(2203), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1253), - [anon_sym_BANG] = ACTIONS(1257), - [anon_sym_TILDE] = ACTIONS(1257), - [anon_sym_PLUS_PLUS] = ACTIONS(1257), - [anon_sym_DASH_DASH] = ACTIONS(1257), - [anon_sym_true] = ACTIONS(1259), - [anon_sym_false] = ACTIONS(1259), - [anon_sym_PLUS] = ACTIONS(1255), - [anon_sym_DASH] = ACTIONS(1255), - [anon_sym_STAR] = ACTIONS(1261), - [anon_sym_CARET] = ACTIONS(1257), - [anon_sym_AMP] = ACTIONS(1257), - [anon_sym_this] = ACTIONS(1263), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(2207), + [anon_sym_TILDE] = ACTIONS(2207), + [anon_sym_PLUS_PLUS] = ACTIONS(2207), + [anon_sym_DASH_DASH] = ACTIONS(2207), + [anon_sym_true] = ACTIONS(77), + [anon_sym_false] = ACTIONS(77), + [anon_sym_PLUS] = ACTIONS(2205), + [anon_sym_DASH] = ACTIONS(2205), + [anon_sym_STAR] = ACTIONS(2209), + [anon_sym_CARET] = ACTIONS(2207), + [anon_sym_AMP] = ACTIONS(2207), + [anon_sym_this] = ACTIONS(83), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1265), + [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1267), - [anon_sym_unchecked] = ACTIONS(1253), + [sym_predefined_type] = ACTIONS(91), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1269), - [anon_sym_throw] = ACTIONS(1271), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(2211), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1273), - [anon_sym_DOT_DOT] = ACTIONS(1275), + [anon_sym_await] = ACTIONS(2213), + [anon_sym_DOT_DOT] = ACTIONS(2215), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -279188,19 +279074,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1277), - [anon_sym_sizeof] = ACTIONS(1279), - [anon_sym_typeof] = ACTIONS(1281), - [anon_sym___makeref] = ACTIONS(1283), - [anon_sym___reftype] = ACTIONS(1285), - [anon_sym___refvalue] = ACTIONS(1287), - [sym_null_literal] = ACTIONS(1289), - [anon_sym_SQUOTE] = ACTIONS(1291), - [sym_integer_literal] = ACTIONS(1289), - [sym_real_literal] = ACTIONS(1293), - [anon_sym_DQUOTE] = ACTIONS(1295), - [sym_verbatim_string_literal] = ACTIONS(1293), - [aux_sym_preproc_if_token1] = ACTIONS(1297), + [anon_sym_stackalloc] = ACTIONS(127), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_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), @@ -279211,90 +279097,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1299), - [sym_interpolation_verbatim_start] = ACTIONS(1301), - [sym_interpolation_raw_start] = ACTIONS(1303), - [sym_raw_string_start] = ACTIONS(1305), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [sym_interpolation_raw_start] = ACTIONS(155), + [sym_raw_string_start] = ACTIONS(157), }, [1405] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2610), - [sym__name] = STATE(5896), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2384), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(4713), - [sym_non_lvalue_expression] = STATE(3277), - [sym_lvalue_expression] = STATE(3392), - [sym__expression_statement_expression] = STATE(3228), - [sym_assignment_expression] = STATE(3289), - [sym_binary_expression] = STATE(3228), - [sym_postfix_unary_expression] = STATE(3289), - [sym_prefix_unary_expression] = STATE(3289), - [sym__pointer_indirection_expression] = STATE(2609), - [sym_query_expression] = STATE(3228), - [sym_from_clause] = STATE(6173), - [sym_conditional_expression] = STATE(3228), - [sym_conditional_access_expression] = STATE(3228), - [sym_as_expression] = STATE(3228), - [sym_is_expression] = STATE(3228), - [sym_is_pattern_expression] = STATE(3228), - [sym_cast_expression] = STATE(3228), - [sym_checked_expression] = STATE(3228), - [sym_invocation_expression] = STATE(3289), - [sym_switch_expression] = STATE(3228), - [sym_await_expression] = STATE(3289), - [sym_throw_expression] = STATE(3228), - [sym_element_access_expression] = STATE(2609), - [sym_interpolated_string_expression] = STATE(3228), - [sym_member_access_expression] = STATE(2609), - [sym_object_creation_expression] = STATE(3289), - [sym_parenthesized_expression] = STATE(3289), - [sym__parenthesized_lvalue_expression] = STATE(2609), - [sym_lambda_expression] = STATE(3228), - [sym__lambda_expression_init] = STATE(7334), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3228), - [sym_anonymous_method_expression] = STATE(3228), - [sym_anonymous_object_creation_expression] = STATE(3228), - [sym_implicit_array_creation_expression] = STATE(3228), - [sym_implicit_object_creation_expression] = STATE(3228), - [sym_implicit_stackalloc_expression] = STATE(3228), - [sym_initializer_expression] = STATE(3228), - [sym_default_expression] = STATE(3228), - [sym_with_expression] = STATE(3228), - [sym_sizeof_expression] = STATE(3228), - [sym_typeof_expression] = STATE(3228), - [sym_makeref_expression] = STATE(3228), - [sym_ref_expression] = STATE(3228), - [sym_reftype_expression] = STATE(3228), - [sym_refvalue_expression] = STATE(3228), - [sym_stackalloc_expression] = STATE(3228), - [sym_range_expression] = STATE(3228), - [sym_tuple_expression] = STATE(2609), - [sym_literal] = STATE(3228), - [sym_character_literal] = STATE(3278), - [sym_string_literal] = STATE(3278), - [sym_raw_string_literal] = STATE(3278), - [sym_boolean_literal] = STATE(3278), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3228), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(5895), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2376), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(5578), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3643), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3102), + [sym_postfix_unary_expression] = STATE(3079), + [sym_prefix_unary_expression] = STATE(3079), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6148), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3102), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3079), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3102), + [sym_member_access_expression] = STATE(2472), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3079), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7304), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(3102), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3102), + [sym_typeof_expression] = STATE(3102), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2472), + [sym_literal] = STATE(3102), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(1405), [sym_preproc_endregion] = STATE(1405), [sym_preproc_line] = STATE(1405), @@ -279304,47 +279190,47 @@ 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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3396), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1153), - [anon_sym_LPAREN] = ACTIONS(1859), - [anon_sym_ref] = ACTIONS(1861), - [anon_sym_LBRACE] = ACTIONS(1159), - [anon_sym_delegate] = ACTIONS(1161), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1479), + [anon_sym_LPAREN] = ACTIONS(2199), + [anon_sym_ref] = ACTIONS(2201), + [anon_sym_LBRACE] = ACTIONS(1481), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1863), + [anon_sym_new] = ACTIONS(2203), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1167), - [anon_sym_BANG] = ACTIONS(1867), - [anon_sym_TILDE] = ACTIONS(1867), - [anon_sym_PLUS_PLUS] = ACTIONS(1867), - [anon_sym_DASH_DASH] = ACTIONS(1867), - [anon_sym_true] = ACTIONS(1173), - [anon_sym_false] = ACTIONS(1173), - [anon_sym_PLUS] = ACTIONS(1865), - [anon_sym_DASH] = ACTIONS(1865), - [anon_sym_STAR] = ACTIONS(1869), - [anon_sym_CARET] = ACTIONS(1867), - [anon_sym_AMP] = ACTIONS(1867), - [anon_sym_this] = ACTIONS(1177), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(2207), + [anon_sym_TILDE] = ACTIONS(2207), + [anon_sym_PLUS_PLUS] = ACTIONS(2207), + [anon_sym_DASH_DASH] = ACTIONS(2207), + [anon_sym_true] = ACTIONS(77), + [anon_sym_false] = ACTIONS(77), + [anon_sym_PLUS] = ACTIONS(2205), + [anon_sym_DASH] = ACTIONS(2205), + [anon_sym_STAR] = ACTIONS(2209), + [anon_sym_CARET] = ACTIONS(2207), + [anon_sym_AMP] = ACTIONS(2207), + [anon_sym_this] = ACTIONS(83), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1179), + [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1181), - [anon_sym_unchecked] = ACTIONS(1167), + [sym_predefined_type] = ACTIONS(91), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1183), - [anon_sym_throw] = ACTIONS(1871), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(2211), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1873), - [anon_sym_DOT_DOT] = ACTIONS(1875), + [anon_sym_await] = ACTIONS(2213), + [anon_sym_DOT_DOT] = ACTIONS(2215), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -279357,19 +279243,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1191), - [anon_sym_sizeof] = ACTIONS(1193), - [anon_sym_typeof] = ACTIONS(1195), - [anon_sym___makeref] = ACTIONS(1197), - [anon_sym___reftype] = ACTIONS(1199), - [anon_sym___refvalue] = ACTIONS(1201), - [sym_null_literal] = ACTIONS(1203), - [anon_sym_SQUOTE] = ACTIONS(1205), - [sym_integer_literal] = ACTIONS(1203), - [sym_real_literal] = ACTIONS(1207), - [anon_sym_DQUOTE] = ACTIONS(1209), - [sym_verbatim_string_literal] = ACTIONS(1207), - [aux_sym_preproc_if_token1] = ACTIONS(1211), + [anon_sym_stackalloc] = ACTIONS(127), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_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), @@ -279380,90 +279266,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1213), - [sym_interpolation_verbatim_start] = ACTIONS(1215), - [sym_interpolation_raw_start] = ACTIONS(1217), - [sym_raw_string_start] = ACTIONS(1219), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [sym_interpolation_raw_start] = ACTIONS(155), + [sym_raw_string_start] = ACTIONS(157), }, [1406] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(3184), - [sym__name] = STATE(5883), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2313), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2269), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(4379), - [sym_non_lvalue_expression] = STATE(4541), - [sym_lvalue_expression] = STATE(3314), - [sym__expression_statement_expression] = STATE(4529), - [sym_assignment_expression] = STATE(4543), - [sym_binary_expression] = STATE(4529), - [sym_postfix_unary_expression] = STATE(4543), - [sym_prefix_unary_expression] = STATE(4543), - [sym__pointer_indirection_expression] = STATE(3175), - [sym_query_expression] = STATE(4529), - [sym_from_clause] = STATE(6156), - [sym_conditional_expression] = STATE(4529), - [sym_conditional_access_expression] = STATE(4529), - [sym_as_expression] = STATE(4529), - [sym_is_expression] = STATE(4529), - [sym_is_pattern_expression] = STATE(4529), - [sym_cast_expression] = STATE(4529), - [sym_checked_expression] = STATE(4529), - [sym_invocation_expression] = STATE(4543), - [sym_switch_expression] = STATE(4529), - [sym_await_expression] = STATE(4543), - [sym_throw_expression] = STATE(4529), - [sym_element_access_expression] = STATE(3175), - [sym_interpolated_string_expression] = STATE(4529), - [sym_member_access_expression] = STATE(3175), - [sym_object_creation_expression] = STATE(4543), - [sym_parenthesized_expression] = STATE(4543), - [sym__parenthesized_lvalue_expression] = STATE(3175), - [sym_lambda_expression] = STATE(4529), - [sym__lambda_expression_init] = STATE(7552), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(4529), - [sym_anonymous_method_expression] = STATE(4529), - [sym_anonymous_object_creation_expression] = STATE(4529), - [sym_implicit_array_creation_expression] = STATE(4529), - [sym_implicit_object_creation_expression] = STATE(4529), - [sym_implicit_stackalloc_expression] = STATE(4529), - [sym_initializer_expression] = STATE(4529), - [sym_default_expression] = STATE(4529), - [sym_with_expression] = STATE(4529), - [sym_sizeof_expression] = STATE(4529), - [sym_typeof_expression] = STATE(4529), - [sym_makeref_expression] = STATE(4529), - [sym_ref_expression] = STATE(4529), - [sym_reftype_expression] = STATE(4529), - [sym_refvalue_expression] = STATE(4529), - [sym_stackalloc_expression] = STATE(4529), - [sym_range_expression] = STATE(4529), - [sym_tuple_expression] = STATE(3175), - [sym_literal] = STATE(4529), - [sym_character_literal] = STATE(4536), - [sym_string_literal] = STATE(4536), - [sym_raw_string_literal] = STATE(4536), - [sym_boolean_literal] = STATE(4536), - [sym_identifier] = STATE(2246), - [sym__reserved_identifier] = STATE(2240), - [sym_preproc_if_in_expression] = STATE(4529), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(5895), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2376), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(5580), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3643), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3102), + [sym_postfix_unary_expression] = STATE(3079), + [sym_prefix_unary_expression] = STATE(3079), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6148), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3102), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3079), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3102), + [sym_member_access_expression] = STATE(2472), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3079), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7304), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(3102), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3102), + [sym_typeof_expression] = STATE(3102), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2472), + [sym_literal] = STATE(3102), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(1406), [sym_preproc_endregion] = STATE(1406), [sym_preproc_line] = STATE(1406), @@ -279473,166 +279359,166 @@ 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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3363), - [sym__identifier_token] = ACTIONS(1387), - [anon_sym_alias] = ACTIONS(1389), - [anon_sym_global] = ACTIONS(1389), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1391), - [anon_sym_LPAREN] = ACTIONS(1463), - [anon_sym_ref] = ACTIONS(1465), - [anon_sym_LBRACE] = ACTIONS(1397), - [anon_sym_delegate] = ACTIONS(1399), - [anon_sym_async] = ACTIONS(1047), - [anon_sym_file] = ACTIONS(1389), - [anon_sym_new] = ACTIONS(1467), - [anon_sym_where] = ACTIONS(1389), - [anon_sym_notnull] = ACTIONS(1389), - [anon_sym_unmanaged] = ACTIONS(1389), - [anon_sym_checked] = ACTIONS(1403), - [anon_sym_BANG] = ACTIONS(1471), - [anon_sym_TILDE] = ACTIONS(1471), - [anon_sym_PLUS_PLUS] = ACTIONS(1471), - [anon_sym_DASH_DASH] = ACTIONS(1471), - [anon_sym_true] = ACTIONS(1409), - [anon_sym_false] = ACTIONS(1409), - [anon_sym_PLUS] = ACTIONS(1469), - [anon_sym_DASH] = ACTIONS(1469), - [anon_sym_STAR] = ACTIONS(1473), - [anon_sym_CARET] = ACTIONS(1471), - [anon_sym_AMP] = ACTIONS(1471), - [anon_sym_this] = ACTIONS(1413), - [anon_sym_scoped] = ACTIONS(1415), - [anon_sym_base] = ACTIONS(1417), - [anon_sym_var] = ACTIONS(1419), - [sym_predefined_type] = ACTIONS(1421), - [anon_sym_unchecked] = ACTIONS(1403), - [anon_sym_yield] = ACTIONS(1389), - [anon_sym_default] = ACTIONS(1423), - [anon_sym_throw] = ACTIONS(1475), - [anon_sym_when] = ACTIONS(1389), - [anon_sym_await] = ACTIONS(1477), - [anon_sym_DOT_DOT] = ACTIONS(1479), - [anon_sym_from] = ACTIONS(1431), - [anon_sym_into] = ACTIONS(1389), - [anon_sym_join] = ACTIONS(1389), - [anon_sym_on] = ACTIONS(1389), - [anon_sym_equals] = ACTIONS(1389), - [anon_sym_let] = ACTIONS(1389), - [anon_sym_orderby] = ACTIONS(1389), - [anon_sym_ascending] = ACTIONS(1389), - [anon_sym_descending] = ACTIONS(1389), - [anon_sym_group] = ACTIONS(1389), - [anon_sym_by] = ACTIONS(1389), - [anon_sym_select] = ACTIONS(1389), - [anon_sym_stackalloc] = ACTIONS(1433), - [anon_sym_sizeof] = ACTIONS(1435), - [anon_sym_typeof] = ACTIONS(1437), - [anon_sym___makeref] = ACTIONS(1439), - [anon_sym___reftype] = ACTIONS(1441), - [anon_sym___refvalue] = ACTIONS(1443), - [sym_null_literal] = ACTIONS(1445), - [anon_sym_SQUOTE] = ACTIONS(1447), - [sym_integer_literal] = ACTIONS(1445), - [sym_real_literal] = ACTIONS(1449), - [anon_sym_DQUOTE] = ACTIONS(1451), - [sym_verbatim_string_literal] = ACTIONS(1449), - [aux_sym_preproc_if_token1] = ACTIONS(1453), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1455), - [sym_interpolation_verbatim_start] = ACTIONS(1457), - [sym_interpolation_raw_start] = ACTIONS(1459), - [sym_raw_string_start] = ACTIONS(1461), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), + [sym__identifier_token] = ACTIONS(25), + [anon_sym_alias] = ACTIONS(29), + [anon_sym_global] = ACTIONS(29), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1479), + [anon_sym_LPAREN] = ACTIONS(2199), + [anon_sym_ref] = ACTIONS(2201), + [anon_sym_LBRACE] = ACTIONS(1481), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), + [anon_sym_file] = ACTIONS(29), + [anon_sym_new] = ACTIONS(2203), + [anon_sym_where] = ACTIONS(29), + [anon_sym_notnull] = ACTIONS(29), + [anon_sym_unmanaged] = ACTIONS(29), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(2207), + [anon_sym_TILDE] = ACTIONS(2207), + [anon_sym_PLUS_PLUS] = ACTIONS(2207), + [anon_sym_DASH_DASH] = ACTIONS(2207), + [anon_sym_true] = ACTIONS(77), + [anon_sym_false] = ACTIONS(77), + [anon_sym_PLUS] = ACTIONS(2205), + [anon_sym_DASH] = ACTIONS(2205), + [anon_sym_STAR] = ACTIONS(2209), + [anon_sym_CARET] = ACTIONS(2207), + [anon_sym_AMP] = ACTIONS(2207), + [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(2211), + [anon_sym_when] = ACTIONS(29), + [anon_sym_await] = ACTIONS(2213), + [anon_sym_DOT_DOT] = ACTIONS(2215), + [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), }, [1407] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2420), - [sym__name] = STATE(5911), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2197), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(2907), - [sym_non_lvalue_expression] = STATE(3066), - [sym_lvalue_expression] = STATE(3327), - [sym__expression_statement_expression] = STATE(3006), - [sym_assignment_expression] = STATE(3020), - [sym_binary_expression] = STATE(3006), - [sym_postfix_unary_expression] = STATE(3020), - [sym_prefix_unary_expression] = STATE(3020), - [sym__pointer_indirection_expression] = STATE(2423), - [sym_query_expression] = STATE(3006), - [sym_from_clause] = STATE(6159), - [sym_conditional_expression] = STATE(3006), - [sym_conditional_access_expression] = STATE(3006), - [sym_as_expression] = STATE(3006), - [sym_is_expression] = STATE(3006), - [sym_is_pattern_expression] = STATE(3006), - [sym_cast_expression] = STATE(3006), - [sym_checked_expression] = STATE(3006), - [sym_invocation_expression] = STATE(3020), - [sym_switch_expression] = STATE(3006), - [sym_await_expression] = STATE(3020), - [sym_throw_expression] = STATE(3006), - [sym_element_access_expression] = STATE(2423), - [sym_interpolated_string_expression] = STATE(3006), - [sym_member_access_expression] = STATE(2423), - [sym_object_creation_expression] = STATE(3020), - [sym_parenthesized_expression] = STATE(3020), - [sym__parenthesized_lvalue_expression] = STATE(2423), - [sym_lambda_expression] = STATE(3006), - [sym__lambda_expression_init] = STATE(7674), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3006), - [sym_anonymous_method_expression] = STATE(3006), - [sym_anonymous_object_creation_expression] = STATE(3006), - [sym_implicit_array_creation_expression] = STATE(3006), - [sym_implicit_object_creation_expression] = STATE(3006), - [sym_implicit_stackalloc_expression] = STATE(3006), - [sym_initializer_expression] = STATE(3006), - [sym_default_expression] = STATE(3006), - [sym_with_expression] = STATE(3006), - [sym_sizeof_expression] = STATE(3006), - [sym_typeof_expression] = STATE(3006), - [sym_makeref_expression] = STATE(3006), - [sym_ref_expression] = STATE(3006), - [sym_reftype_expression] = STATE(3006), - [sym_refvalue_expression] = STATE(3006), - [sym_stackalloc_expression] = STATE(3006), - [sym_range_expression] = STATE(3006), - [sym_tuple_expression] = STATE(2423), - [sym_literal] = STATE(3006), - [sym_character_literal] = STATE(3011), - [sym_string_literal] = STATE(3011), - [sym_raw_string_literal] = STATE(3011), - [sym_boolean_literal] = STATE(3011), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3006), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(5895), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2376), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(5581), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3643), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3102), + [sym_postfix_unary_expression] = STATE(3079), + [sym_prefix_unary_expression] = STATE(3079), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6148), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3102), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3079), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3102), + [sym_member_access_expression] = STATE(2472), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3079), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7304), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(3102), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3102), + [sym_typeof_expression] = STATE(3102), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2472), + [sym_literal] = STATE(3102), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(1407), [sym_preproc_endregion] = STATE(1407), [sym_preproc_line] = STATE(1407), @@ -279642,47 +279528,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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3440), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1241), - [anon_sym_LPAREN] = ACTIONS(1509), - [anon_sym_ref] = ACTIONS(1511), - [anon_sym_LBRACE] = ACTIONS(1247), - [anon_sym_delegate] = ACTIONS(1249), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1479), + [anon_sym_LPAREN] = ACTIONS(2199), + [anon_sym_ref] = ACTIONS(2201), + [anon_sym_LBRACE] = ACTIONS(1481), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1251), + [anon_sym_new] = ACTIONS(2203), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1253), - [anon_sym_BANG] = ACTIONS(1515), - [anon_sym_TILDE] = ACTIONS(1515), - [anon_sym_PLUS_PLUS] = ACTIONS(1515), - [anon_sym_DASH_DASH] = ACTIONS(1515), - [anon_sym_true] = ACTIONS(1259), - [anon_sym_false] = ACTIONS(1259), - [anon_sym_PLUS] = ACTIONS(1513), - [anon_sym_DASH] = ACTIONS(1513), - [anon_sym_STAR] = ACTIONS(1517), - [anon_sym_CARET] = ACTIONS(1515), - [anon_sym_AMP] = ACTIONS(1515), - [anon_sym_this] = ACTIONS(1263), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(2207), + [anon_sym_TILDE] = ACTIONS(2207), + [anon_sym_PLUS_PLUS] = ACTIONS(2207), + [anon_sym_DASH_DASH] = ACTIONS(2207), + [anon_sym_true] = ACTIONS(77), + [anon_sym_false] = ACTIONS(77), + [anon_sym_PLUS] = ACTIONS(2205), + [anon_sym_DASH] = ACTIONS(2205), + [anon_sym_STAR] = ACTIONS(2209), + [anon_sym_CARET] = ACTIONS(2207), + [anon_sym_AMP] = ACTIONS(2207), + [anon_sym_this] = ACTIONS(83), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1265), + [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1267), - [anon_sym_unchecked] = ACTIONS(1253), + [sym_predefined_type] = ACTIONS(91), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1269), - [anon_sym_throw] = ACTIONS(1519), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(2211), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1521), - [anon_sym_DOT_DOT] = ACTIONS(1523), + [anon_sym_await] = ACTIONS(2213), + [anon_sym_DOT_DOT] = ACTIONS(2215), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -279695,19 +279581,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1277), - [anon_sym_sizeof] = ACTIONS(1279), - [anon_sym_typeof] = ACTIONS(1281), - [anon_sym___makeref] = ACTIONS(1283), - [anon_sym___reftype] = ACTIONS(1285), - [anon_sym___refvalue] = ACTIONS(1287), - [sym_null_literal] = ACTIONS(1289), - [anon_sym_SQUOTE] = ACTIONS(1291), - [sym_integer_literal] = ACTIONS(1289), - [sym_real_literal] = ACTIONS(1293), - [anon_sym_DQUOTE] = ACTIONS(1295), - [sym_verbatim_string_literal] = ACTIONS(1293), - [aux_sym_preproc_if_token1] = ACTIONS(1297), + [anon_sym_stackalloc] = ACTIONS(127), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_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), @@ -279718,90 +279604,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1299), - [sym_interpolation_verbatim_start] = ACTIONS(1301), - [sym_interpolation_raw_start] = ACTIONS(1303), - [sym_raw_string_start] = ACTIONS(1305), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [sym_interpolation_raw_start] = ACTIONS(155), + [sym_raw_string_start] = ACTIONS(157), }, [1408] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(5891), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2372), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(5672), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(2465), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3080), - [sym_postfix_unary_expression] = STATE(3111), - [sym_prefix_unary_expression] = STATE(3111), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6154), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3080), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3111), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3080), - [sym_member_access_expression] = STATE(2484), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3111), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7530), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(3080), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3080), - [sym_typeof_expression] = STATE(3080), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2484), - [sym_literal] = STATE(3080), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(5895), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2376), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(5494), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3643), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3102), + [sym_postfix_unary_expression] = STATE(3079), + [sym_prefix_unary_expression] = STATE(3079), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6148), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3102), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3079), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3102), + [sym_member_access_expression] = STATE(2472), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3079), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7304), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(3102), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3102), + [sym_typeof_expression] = STATE(3102), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2472), + [sym_literal] = STATE(3102), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(1408), [sym_preproc_endregion] = STATE(1408), [sym_preproc_line] = STATE(1408), @@ -279811,47 +279697,47 @@ 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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1481), - [anon_sym_LPAREN] = ACTIONS(43), - [anon_sym_ref] = ACTIONS(661), - [anon_sym_LBRACE] = ACTIONS(1487), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1479), + [anon_sym_LPAREN] = ACTIONS(2199), + [anon_sym_ref] = ACTIONS(2201), + [anon_sym_LBRACE] = ACTIONS(1481), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1061), + [anon_sym_new] = ACTIONS(2203), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = 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_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(2207), + [anon_sym_TILDE] = ACTIONS(2207), + [anon_sym_PLUS_PLUS] = ACTIONS(2207), + [anon_sym_DASH_DASH] = ACTIONS(2207), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1585), - [anon_sym_DASH] = ACTIONS(1585), - [anon_sym_STAR] = ACTIONS(2169), - [anon_sym_CARET] = ACTIONS(1587), - [anon_sym_AMP] = ACTIONS(1587), + [anon_sym_PLUS] = ACTIONS(2205), + [anon_sym_DASH] = ACTIONS(2205), + [anon_sym_STAR] = ACTIONS(2209), + [anon_sym_CARET] = ACTIONS(2207), + [anon_sym_AMP] = ACTIONS(2207), [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(1067), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1589), + [anon_sym_throw] = ACTIONS(2211), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1591), - [anon_sym_DOT_DOT] = ACTIONS(123), + [anon_sym_await] = ACTIONS(2213), + [anon_sym_DOT_DOT] = ACTIONS(2215), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -279876,7 +279762,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(1089), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -279893,84 +279779,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [1409] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(5910), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2247), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(4705), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3379), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3080), - [sym_postfix_unary_expression] = STATE(3111), - [sym_prefix_unary_expression] = STATE(3111), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6154), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3080), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3111), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3080), - [sym_member_access_expression] = STATE(2484), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3111), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7575), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(3080), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3080), - [sym_typeof_expression] = STATE(3080), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2484), - [sym_literal] = STATE(3080), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2603), + [sym__name] = STATE(5894), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2193), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(4208), + [sym_non_lvalue_expression] = STATE(3220), + [sym_lvalue_expression] = STATE(3126), + [sym__expression_statement_expression] = STATE(3236), + [sym_assignment_expression] = STATE(3221), + [sym_binary_expression] = STATE(3236), + [sym_postfix_unary_expression] = STATE(3221), + [sym_prefix_unary_expression] = STATE(3221), + [sym__pointer_indirection_expression] = STATE(2602), + [sym_query_expression] = STATE(3236), + [sym_from_clause] = STATE(6165), + [sym_conditional_expression] = STATE(3236), + [sym_conditional_access_expression] = STATE(3236), + [sym_as_expression] = STATE(3236), + [sym_is_expression] = STATE(3236), + [sym_is_pattern_expression] = STATE(3236), + [sym_cast_expression] = STATE(3236), + [sym_checked_expression] = STATE(3236), + [sym_invocation_expression] = STATE(3221), + [sym_switch_expression] = STATE(3236), + [sym_await_expression] = STATE(3221), + [sym_throw_expression] = STATE(3236), + [sym_element_access_expression] = STATE(2602), + [sym_interpolated_string_expression] = STATE(3236), + [sym_member_access_expression] = STATE(2602), + [sym_object_creation_expression] = STATE(3221), + [sym_parenthesized_expression] = STATE(3221), + [sym__parenthesized_lvalue_expression] = STATE(2602), + [sym_lambda_expression] = STATE(3236), + [sym__lambda_expression_init] = STATE(7487), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3236), + [sym_anonymous_method_expression] = STATE(3236), + [sym_anonymous_object_creation_expression] = STATE(3236), + [sym_implicit_array_creation_expression] = STATE(3236), + [sym_implicit_object_creation_expression] = STATE(3236), + [sym_implicit_stackalloc_expression] = STATE(3236), + [sym_initializer_expression] = STATE(3236), + [sym_default_expression] = STATE(3236), + [sym_with_expression] = STATE(3236), + [sym_sizeof_expression] = STATE(3236), + [sym_typeof_expression] = STATE(3236), + [sym_makeref_expression] = STATE(3236), + [sym_ref_expression] = STATE(3236), + [sym_reftype_expression] = STATE(3236), + [sym_refvalue_expression] = STATE(3236), + [sym_stackalloc_expression] = STATE(3236), + [sym_range_expression] = STATE(3236), + [sym_tuple_expression] = STATE(2602), + [sym_literal] = STATE(3236), + [sym_character_literal] = STATE(3272), + [sym_string_literal] = STATE(3272), + [sym_raw_string_literal] = STATE(3272), + [sym_boolean_literal] = STATE(3272), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3236), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(1409), [sym_preproc_endregion] = STATE(1409), [sym_preproc_line] = STATE(1409), @@ -279980,47 +279866,47 @@ 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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3379), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1481), - [anon_sym_LPAREN] = ACTIONS(895), - [anon_sym_ref] = ACTIONS(897), - [anon_sym_LBRACE] = ACTIONS(1487), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1149), + [anon_sym_LPAREN] = ACTIONS(1341), + [anon_sym_ref] = ACTIONS(1343), + [anon_sym_LBRACE] = ACTIONS(1155), + [anon_sym_delegate] = ACTIONS(1157), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1061), + [anon_sym_new] = ACTIONS(1159), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1067), - [anon_sym_BANG] = ACTIONS(1495), - [anon_sym_TILDE] = ACTIONS(1495), - [anon_sym_PLUS_PLUS] = ACTIONS(1495), - [anon_sym_DASH_DASH] = ACTIONS(1495), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1493), - [anon_sym_DASH] = ACTIONS(1493), - [anon_sym_STAR] = ACTIONS(905), - [anon_sym_CARET] = ACTIONS(1495), - [anon_sym_AMP] = ACTIONS(1495), - [anon_sym_this] = ACTIONS(83), + [anon_sym_checked] = ACTIONS(1163), + [anon_sym_BANG] = ACTIONS(1347), + [anon_sym_TILDE] = ACTIONS(1347), + [anon_sym_PLUS_PLUS] = ACTIONS(1347), + [anon_sym_DASH_DASH] = ACTIONS(1347), + [anon_sym_true] = ACTIONS(1169), + [anon_sym_false] = ACTIONS(1169), + [anon_sym_PLUS] = ACTIONS(1345), + [anon_sym_DASH] = ACTIONS(1345), + [anon_sym_STAR] = ACTIONS(1349), + [anon_sym_CARET] = ACTIONS(1347), + [anon_sym_AMP] = ACTIONS(1347), + [anon_sym_this] = ACTIONS(1173), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), + [anon_sym_base] = ACTIONS(1175), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1067), + [sym_predefined_type] = ACTIONS(1177), + [anon_sym_unchecked] = ACTIONS(1163), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1079), + [anon_sym_default] = ACTIONS(1179), + [anon_sym_throw] = ACTIONS(1351), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1081), - [anon_sym_DOT_DOT] = ACTIONS(911), + [anon_sym_await] = ACTIONS(1353), + [anon_sym_DOT_DOT] = ACTIONS(1355), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -280033,19 +279919,19 @@ static const uint16_t ts_parse_table[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(1089), + [anon_sym_stackalloc] = ACTIONS(1187), + [anon_sym_sizeof] = ACTIONS(1189), + [anon_sym_typeof] = ACTIONS(1191), + [anon_sym___makeref] = ACTIONS(1193), + [anon_sym___reftype] = ACTIONS(1195), + [anon_sym___refvalue] = ACTIONS(1197), + [sym_null_literal] = ACTIONS(1199), + [anon_sym_SQUOTE] = ACTIONS(1201), + [sym_integer_literal] = ACTIONS(1199), + [sym_real_literal] = ACTIONS(1203), + [anon_sym_DQUOTE] = ACTIONS(1205), + [sym_verbatim_string_literal] = ACTIONS(1203), + [aux_sym_preproc_if_token1] = ACTIONS(1207), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -280056,90 +279942,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(151), - [sym_interpolation_verbatim_start] = ACTIONS(153), - [sym_interpolation_raw_start] = ACTIONS(155), - [sym_raw_string_start] = ACTIONS(157), + [sym_interpolation_regular_start] = ACTIONS(1209), + [sym_interpolation_verbatim_start] = ACTIONS(1211), + [sym_interpolation_raw_start] = ACTIONS(1213), + [sym_raw_string_start] = ACTIONS(1215), }, [1410] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2610), - [sym__name] = STATE(5905), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2395), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(4734), - [sym_non_lvalue_expression] = STATE(3277), - [sym_lvalue_expression] = STATE(3402), - [sym__expression_statement_expression] = STATE(3228), - [sym_assignment_expression] = STATE(3289), - [sym_binary_expression] = STATE(3228), - [sym_postfix_unary_expression] = STATE(3289), - [sym_prefix_unary_expression] = STATE(3289), - [sym__pointer_indirection_expression] = STATE(2609), - [sym_query_expression] = STATE(3228), - [sym_from_clause] = STATE(6166), - [sym_conditional_expression] = STATE(3228), - [sym_conditional_access_expression] = STATE(3228), - [sym_as_expression] = STATE(3228), - [sym_is_expression] = STATE(3228), - [sym_is_pattern_expression] = STATE(3228), - [sym_cast_expression] = STATE(3228), - [sym_checked_expression] = STATE(3228), - [sym_invocation_expression] = STATE(3289), - [sym_switch_expression] = STATE(3228), - [sym_await_expression] = STATE(3289), - [sym_throw_expression] = STATE(3228), - [sym_element_access_expression] = STATE(2609), - [sym_interpolated_string_expression] = STATE(3228), - [sym_member_access_expression] = STATE(2609), - [sym_object_creation_expression] = STATE(3289), - [sym_parenthesized_expression] = STATE(3289), - [sym__parenthesized_lvalue_expression] = STATE(2609), - [sym_lambda_expression] = STATE(3228), - [sym__lambda_expression_init] = STATE(7415), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3228), - [sym_anonymous_method_expression] = STATE(3228), - [sym_anonymous_object_creation_expression] = STATE(3228), - [sym_implicit_array_creation_expression] = STATE(3228), - [sym_implicit_object_creation_expression] = STATE(3228), - [sym_implicit_stackalloc_expression] = STATE(3228), - [sym_initializer_expression] = STATE(3228), - [sym_default_expression] = STATE(3228), - [sym_with_expression] = STATE(3228), - [sym_sizeof_expression] = STATE(3228), - [sym_typeof_expression] = STATE(3228), - [sym_makeref_expression] = STATE(3228), - [sym_ref_expression] = STATE(3228), - [sym_reftype_expression] = STATE(3228), - [sym_refvalue_expression] = STATE(3228), - [sym_stackalloc_expression] = STATE(3228), - [sym_range_expression] = STATE(3228), - [sym_tuple_expression] = STATE(2609), - [sym_literal] = STATE(3228), - [sym_character_literal] = STATE(3278), - [sym_string_literal] = STATE(3278), - [sym_raw_string_literal] = STATE(3278), - [sym_boolean_literal] = STATE(3278), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3228), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2416), + [sym__name] = STATE(5890), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2193), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(4088), + [sym_non_lvalue_expression] = STATE(3040), + [sym_lvalue_expression] = STATE(3109), + [sym__expression_statement_expression] = STATE(3035), + [sym_assignment_expression] = STATE(3043), + [sym_binary_expression] = STATE(3035), + [sym_postfix_unary_expression] = STATE(3043), + [sym_prefix_unary_expression] = STATE(3043), + [sym__pointer_indirection_expression] = STATE(2415), + [sym_query_expression] = STATE(3035), + [sym_from_clause] = STATE(6138), + [sym_conditional_expression] = STATE(3035), + [sym_conditional_access_expression] = STATE(3035), + [sym_as_expression] = STATE(3035), + [sym_is_expression] = STATE(3035), + [sym_is_pattern_expression] = STATE(3035), + [sym_cast_expression] = STATE(3035), + [sym_checked_expression] = STATE(3035), + [sym_invocation_expression] = STATE(3043), + [sym_switch_expression] = STATE(3035), + [sym_await_expression] = STATE(3043), + [sym_throw_expression] = STATE(3035), + [sym_element_access_expression] = STATE(2415), + [sym_interpolated_string_expression] = STATE(3035), + [sym_member_access_expression] = STATE(2415), + [sym_object_creation_expression] = STATE(3043), + [sym_parenthesized_expression] = STATE(3043), + [sym__parenthesized_lvalue_expression] = STATE(2415), + [sym_lambda_expression] = STATE(3035), + [sym__lambda_expression_init] = STATE(7374), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3035), + [sym_anonymous_method_expression] = STATE(3035), + [sym_anonymous_object_creation_expression] = STATE(3035), + [sym_implicit_array_creation_expression] = STATE(3035), + [sym_implicit_object_creation_expression] = STATE(3035), + [sym_implicit_stackalloc_expression] = STATE(3035), + [sym_initializer_expression] = STATE(3035), + [sym_default_expression] = STATE(3035), + [sym_with_expression] = STATE(3035), + [sym_sizeof_expression] = STATE(3035), + [sym_typeof_expression] = STATE(3035), + [sym_makeref_expression] = STATE(3035), + [sym_ref_expression] = STATE(3035), + [sym_reftype_expression] = STATE(3035), + [sym_refvalue_expression] = STATE(3035), + [sym_stackalloc_expression] = STATE(3035), + [sym_range_expression] = STATE(3035), + [sym_tuple_expression] = STATE(2415), + [sym_literal] = STATE(3035), + [sym_character_literal] = STATE(3037), + [sym_string_literal] = STATE(3037), + [sym_raw_string_literal] = STATE(3037), + [sym_boolean_literal] = STATE(3037), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3035), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(1410), [sym_preproc_endregion] = STATE(1410), [sym_preproc_line] = STATE(1410), @@ -280149,47 +280035,47 @@ 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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3396), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3455), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1153), - [anon_sym_LPAREN] = ACTIONS(1915), - [anon_sym_ref] = ACTIONS(1917), - [anon_sym_LBRACE] = ACTIONS(1159), - [anon_sym_delegate] = ACTIONS(1161), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1239), + [anon_sym_LPAREN] = ACTIONS(1241), + [anon_sym_ref] = ACTIONS(1243), + [anon_sym_LBRACE] = ACTIONS(1245), + [anon_sym_delegate] = ACTIONS(1247), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1919), + [anon_sym_new] = ACTIONS(1249), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1167), - [anon_sym_BANG] = ACTIONS(1923), - [anon_sym_TILDE] = ACTIONS(1923), - [anon_sym_PLUS_PLUS] = ACTIONS(1923), - [anon_sym_DASH_DASH] = ACTIONS(1923), - [anon_sym_true] = ACTIONS(1173), - [anon_sym_false] = ACTIONS(1173), - [anon_sym_PLUS] = ACTIONS(1921), - [anon_sym_DASH] = ACTIONS(1921), - [anon_sym_STAR] = ACTIONS(1925), - [anon_sym_CARET] = ACTIONS(1923), - [anon_sym_AMP] = ACTIONS(1923), - [anon_sym_this] = ACTIONS(1177), + [anon_sym_checked] = ACTIONS(1251), + [anon_sym_BANG] = ACTIONS(1255), + [anon_sym_TILDE] = ACTIONS(1255), + [anon_sym_PLUS_PLUS] = ACTIONS(1255), + [anon_sym_DASH_DASH] = ACTIONS(1255), + [anon_sym_true] = ACTIONS(1257), + [anon_sym_false] = ACTIONS(1257), + [anon_sym_PLUS] = ACTIONS(1253), + [anon_sym_DASH] = ACTIONS(1253), + [anon_sym_STAR] = ACTIONS(1259), + [anon_sym_CARET] = ACTIONS(1255), + [anon_sym_AMP] = ACTIONS(1255), + [anon_sym_this] = ACTIONS(1261), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1179), + [anon_sym_base] = ACTIONS(1263), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1181), - [anon_sym_unchecked] = ACTIONS(1167), + [sym_predefined_type] = ACTIONS(1265), + [anon_sym_unchecked] = ACTIONS(1251), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1183), - [anon_sym_throw] = ACTIONS(1927), + [anon_sym_default] = ACTIONS(1267), + [anon_sym_throw] = ACTIONS(1269), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1929), - [anon_sym_DOT_DOT] = ACTIONS(1931), + [anon_sym_await] = ACTIONS(1271), + [anon_sym_DOT_DOT] = ACTIONS(1273), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -280202,19 +280088,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1191), - [anon_sym_sizeof] = ACTIONS(1193), - [anon_sym_typeof] = ACTIONS(1195), - [anon_sym___makeref] = ACTIONS(1197), - [anon_sym___reftype] = ACTIONS(1199), - [anon_sym___refvalue] = ACTIONS(1201), - [sym_null_literal] = ACTIONS(1203), - [anon_sym_SQUOTE] = ACTIONS(1205), - [sym_integer_literal] = ACTIONS(1203), - [sym_real_literal] = ACTIONS(1207), - [anon_sym_DQUOTE] = ACTIONS(1209), - [sym_verbatim_string_literal] = ACTIONS(1207), - [aux_sym_preproc_if_token1] = ACTIONS(1211), + [anon_sym_stackalloc] = ACTIONS(1275), + [anon_sym_sizeof] = ACTIONS(1277), + [anon_sym_typeof] = ACTIONS(1279), + [anon_sym___makeref] = ACTIONS(1281), + [anon_sym___reftype] = ACTIONS(1283), + [anon_sym___refvalue] = ACTIONS(1285), + [sym_null_literal] = ACTIONS(1287), + [anon_sym_SQUOTE] = ACTIONS(1289), + [sym_integer_literal] = ACTIONS(1287), + [sym_real_literal] = ACTIONS(1291), + [anon_sym_DQUOTE] = ACTIONS(1293), + [sym_verbatim_string_literal] = ACTIONS(1291), + [aux_sym_preproc_if_token1] = ACTIONS(1295), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -280225,90 +280111,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1213), - [sym_interpolation_verbatim_start] = ACTIONS(1215), - [sym_interpolation_raw_start] = ACTIONS(1217), - [sym_raw_string_start] = ACTIONS(1219), + [sym_interpolation_regular_start] = ACTIONS(1297), + [sym_interpolation_verbatim_start] = ACTIONS(1299), + [sym_interpolation_raw_start] = ACTIONS(1301), + [sym_raw_string_start] = ACTIONS(1303), }, [1411] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(3184), - [sym__name] = STATE(5883), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2313), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2269), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(4889), - [sym_non_lvalue_expression] = STATE(4541), - [sym_lvalue_expression] = STATE(3527), - [sym__expression_statement_expression] = STATE(4529), - [sym_assignment_expression] = STATE(4543), - [sym_binary_expression] = STATE(4529), - [sym_postfix_unary_expression] = STATE(4543), - [sym_prefix_unary_expression] = STATE(4543), - [sym__pointer_indirection_expression] = STATE(3175), - [sym_query_expression] = STATE(4529), - [sym_from_clause] = STATE(6169), - [sym_conditional_expression] = STATE(4529), - [sym_conditional_access_expression] = STATE(4529), - [sym_as_expression] = STATE(4529), - [sym_is_expression] = STATE(4529), - [sym_is_pattern_expression] = STATE(4529), - [sym_cast_expression] = STATE(4529), - [sym_checked_expression] = STATE(4529), - [sym_invocation_expression] = STATE(4543), - [sym_switch_expression] = STATE(4529), - [sym_await_expression] = STATE(4543), - [sym_throw_expression] = STATE(4529), - [sym_element_access_expression] = STATE(3175), - [sym_interpolated_string_expression] = STATE(4529), - [sym_member_access_expression] = STATE(3175), - [sym_object_creation_expression] = STATE(4543), - [sym_parenthesized_expression] = STATE(4543), - [sym__parenthesized_lvalue_expression] = STATE(3175), - [sym_lambda_expression] = STATE(4529), - [sym__lambda_expression_init] = STATE(7337), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(4529), - [sym_anonymous_method_expression] = STATE(4529), - [sym_anonymous_object_creation_expression] = STATE(4529), - [sym_implicit_array_creation_expression] = STATE(4529), - [sym_implicit_object_creation_expression] = STATE(4529), - [sym_implicit_stackalloc_expression] = STATE(4529), - [sym_initializer_expression] = STATE(4529), - [sym_default_expression] = STATE(4529), - [sym_with_expression] = STATE(4529), - [sym_sizeof_expression] = STATE(4529), - [sym_typeof_expression] = STATE(4529), - [sym_makeref_expression] = STATE(4529), - [sym_ref_expression] = STATE(4529), - [sym_reftype_expression] = STATE(4529), - [sym_refvalue_expression] = STATE(4529), - [sym_stackalloc_expression] = STATE(4529), - [sym_range_expression] = STATE(4529), - [sym_tuple_expression] = STATE(3175), - [sym_literal] = STATE(4529), - [sym_character_literal] = STATE(4536), - [sym_string_literal] = STATE(4536), - [sym_raw_string_literal] = STATE(4536), - [sym_boolean_literal] = STATE(4536), - [sym_identifier] = STATE(2246), - [sym__reserved_identifier] = STATE(2240), - [sym_preproc_if_in_expression] = STATE(4529), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(5895), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2376), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(3523), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3643), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3102), + [sym_postfix_unary_expression] = STATE(3079), + [sym_prefix_unary_expression] = STATE(3079), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6148), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3102), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3079), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3102), + [sym_member_access_expression] = STATE(2472), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3079), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7304), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(3102), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3102), + [sym_typeof_expression] = STATE(3102), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2472), + [sym_literal] = STATE(3102), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(1411), [sym_preproc_endregion] = STATE(1411), [sym_preproc_line] = STATE(1411), @@ -280318,166 +280204,166 @@ 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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3363), - [sym__identifier_token] = ACTIONS(1387), - [anon_sym_alias] = ACTIONS(1389), - [anon_sym_global] = ACTIONS(1389), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1391), - [anon_sym_LPAREN] = ACTIONS(1745), - [anon_sym_ref] = ACTIONS(1747), - [anon_sym_LBRACE] = ACTIONS(1397), - [anon_sym_delegate] = ACTIONS(1399), - [anon_sym_async] = ACTIONS(1047), - [anon_sym_file] = ACTIONS(1389), - [anon_sym_new] = ACTIONS(1467), - [anon_sym_where] = ACTIONS(1389), - [anon_sym_notnull] = ACTIONS(1389), - [anon_sym_unmanaged] = ACTIONS(1389), - [anon_sym_checked] = ACTIONS(1403), - [anon_sym_BANG] = ACTIONS(1751), - [anon_sym_TILDE] = ACTIONS(1751), - [anon_sym_PLUS_PLUS] = ACTIONS(1751), - [anon_sym_DASH_DASH] = ACTIONS(1751), - [anon_sym_true] = ACTIONS(1409), - [anon_sym_false] = ACTIONS(1409), - [anon_sym_PLUS] = ACTIONS(1749), - [anon_sym_DASH] = ACTIONS(1749), - [anon_sym_STAR] = ACTIONS(1473), - [anon_sym_CARET] = ACTIONS(1751), - [anon_sym_AMP] = ACTIONS(1751), - [anon_sym_this] = ACTIONS(1413), - [anon_sym_scoped] = ACTIONS(1415), - [anon_sym_base] = ACTIONS(1417), - [anon_sym_var] = ACTIONS(1419), - [sym_predefined_type] = ACTIONS(1421), - [anon_sym_unchecked] = ACTIONS(1403), - [anon_sym_yield] = ACTIONS(1389), - [anon_sym_default] = ACTIONS(1423), - [anon_sym_throw] = ACTIONS(1753), - [anon_sym_when] = ACTIONS(1389), - [anon_sym_await] = ACTIONS(1755), - [anon_sym_DOT_DOT] = ACTIONS(1757), - [anon_sym_from] = ACTIONS(1431), - [anon_sym_into] = ACTIONS(1389), - [anon_sym_join] = ACTIONS(1389), - [anon_sym_on] = ACTIONS(1389), - [anon_sym_equals] = ACTIONS(1389), - [anon_sym_let] = ACTIONS(1389), - [anon_sym_orderby] = ACTIONS(1389), - [anon_sym_ascending] = ACTIONS(1389), - [anon_sym_descending] = ACTIONS(1389), - [anon_sym_group] = ACTIONS(1389), - [anon_sym_by] = ACTIONS(1389), - [anon_sym_select] = ACTIONS(1389), - [anon_sym_stackalloc] = ACTIONS(1433), - [anon_sym_sizeof] = ACTIONS(1435), - [anon_sym_typeof] = ACTIONS(1437), - [anon_sym___makeref] = ACTIONS(1439), - [anon_sym___reftype] = ACTIONS(1441), - [anon_sym___refvalue] = ACTIONS(1443), - [sym_null_literal] = ACTIONS(1445), - [anon_sym_SQUOTE] = ACTIONS(1447), - [sym_integer_literal] = ACTIONS(1445), - [sym_real_literal] = ACTIONS(1449), - [anon_sym_DQUOTE] = ACTIONS(1451), - [sym_verbatim_string_literal] = ACTIONS(1449), - [aux_sym_preproc_if_token1] = ACTIONS(1453), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1455), - [sym_interpolation_verbatim_start] = ACTIONS(1457), - [sym_interpolation_raw_start] = ACTIONS(1459), - [sym_raw_string_start] = ACTIONS(1461), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), + [sym__identifier_token] = ACTIONS(25), + [anon_sym_alias] = ACTIONS(29), + [anon_sym_global] = ACTIONS(29), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1479), + [anon_sym_LPAREN] = ACTIONS(2199), + [anon_sym_ref] = ACTIONS(2201), + [anon_sym_LBRACE] = ACTIONS(1481), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), + [anon_sym_file] = ACTIONS(29), + [anon_sym_new] = ACTIONS(2203), + [anon_sym_where] = ACTIONS(29), + [anon_sym_notnull] = ACTIONS(29), + [anon_sym_unmanaged] = ACTIONS(29), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(2207), + [anon_sym_TILDE] = ACTIONS(2207), + [anon_sym_PLUS_PLUS] = ACTIONS(2207), + [anon_sym_DASH_DASH] = ACTIONS(2207), + [anon_sym_true] = ACTIONS(77), + [anon_sym_false] = ACTIONS(77), + [anon_sym_PLUS] = ACTIONS(2205), + [anon_sym_DASH] = ACTIONS(2205), + [anon_sym_STAR] = ACTIONS(2209), + [anon_sym_CARET] = ACTIONS(2207), + [anon_sym_AMP] = ACTIONS(2207), + [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(2211), + [anon_sym_when] = ACTIONS(29), + [anon_sym_await] = ACTIONS(2213), + [anon_sym_DOT_DOT] = ACTIONS(2215), + [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), }, [1412] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2610), - [sym__name] = STATE(5905), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2395), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(4736), - [sym_non_lvalue_expression] = STATE(3277), - [sym_lvalue_expression] = STATE(3402), - [sym__expression_statement_expression] = STATE(3228), - [sym_assignment_expression] = STATE(3289), - [sym_binary_expression] = STATE(3228), - [sym_postfix_unary_expression] = STATE(3289), - [sym_prefix_unary_expression] = STATE(3289), - [sym__pointer_indirection_expression] = STATE(2609), - [sym_query_expression] = STATE(3228), - [sym_from_clause] = STATE(6166), - [sym_conditional_expression] = STATE(3228), - [sym_conditional_access_expression] = STATE(3228), - [sym_as_expression] = STATE(3228), - [sym_is_expression] = STATE(3228), - [sym_is_pattern_expression] = STATE(3228), - [sym_cast_expression] = STATE(3228), - [sym_checked_expression] = STATE(3228), - [sym_invocation_expression] = STATE(3289), - [sym_switch_expression] = STATE(3228), - [sym_await_expression] = STATE(3289), - [sym_throw_expression] = STATE(3228), - [sym_element_access_expression] = STATE(2609), - [sym_interpolated_string_expression] = STATE(3228), - [sym_member_access_expression] = STATE(2609), - [sym_object_creation_expression] = STATE(3289), - [sym_parenthesized_expression] = STATE(3289), - [sym__parenthesized_lvalue_expression] = STATE(2609), - [sym_lambda_expression] = STATE(3228), - [sym__lambda_expression_init] = STATE(7415), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3228), - [sym_anonymous_method_expression] = STATE(3228), - [sym_anonymous_object_creation_expression] = STATE(3228), - [sym_implicit_array_creation_expression] = STATE(3228), - [sym_implicit_object_creation_expression] = STATE(3228), - [sym_implicit_stackalloc_expression] = STATE(3228), - [sym_initializer_expression] = STATE(3228), - [sym_default_expression] = STATE(3228), - [sym_with_expression] = STATE(3228), - [sym_sizeof_expression] = STATE(3228), - [sym_typeof_expression] = STATE(3228), - [sym_makeref_expression] = STATE(3228), - [sym_ref_expression] = STATE(3228), - [sym_reftype_expression] = STATE(3228), - [sym_refvalue_expression] = STATE(3228), - [sym_stackalloc_expression] = STATE(3228), - [sym_range_expression] = STATE(3228), - [sym_tuple_expression] = STATE(2609), - [sym_literal] = STATE(3228), - [sym_character_literal] = STATE(3278), - [sym_string_literal] = STATE(3278), - [sym_raw_string_literal] = STATE(3278), - [sym_boolean_literal] = STATE(3278), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3228), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2416), + [sym__name] = STATE(5890), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2193), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(2893), + [sym_non_lvalue_expression] = STATE(3040), + [sym_lvalue_expression] = STATE(3109), + [sym__expression_statement_expression] = STATE(3035), + [sym_assignment_expression] = STATE(3043), + [sym_binary_expression] = STATE(3035), + [sym_postfix_unary_expression] = STATE(3043), + [sym_prefix_unary_expression] = STATE(3043), + [sym__pointer_indirection_expression] = STATE(2415), + [sym_query_expression] = STATE(3035), + [sym_from_clause] = STATE(6138), + [sym_conditional_expression] = STATE(3035), + [sym_conditional_access_expression] = STATE(3035), + [sym_as_expression] = STATE(3035), + [sym_is_expression] = STATE(3035), + [sym_is_pattern_expression] = STATE(3035), + [sym_cast_expression] = STATE(3035), + [sym_checked_expression] = STATE(3035), + [sym_invocation_expression] = STATE(3043), + [sym_switch_expression] = STATE(3035), + [sym_await_expression] = STATE(3043), + [sym_throw_expression] = STATE(3035), + [sym_element_access_expression] = STATE(2415), + [sym_interpolated_string_expression] = STATE(3035), + [sym_member_access_expression] = STATE(2415), + [sym_object_creation_expression] = STATE(3043), + [sym_parenthesized_expression] = STATE(3043), + [sym__parenthesized_lvalue_expression] = STATE(2415), + [sym_lambda_expression] = STATE(3035), + [sym__lambda_expression_init] = STATE(7374), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3035), + [sym_anonymous_method_expression] = STATE(3035), + [sym_anonymous_object_creation_expression] = STATE(3035), + [sym_implicit_array_creation_expression] = STATE(3035), + [sym_implicit_object_creation_expression] = STATE(3035), + [sym_implicit_stackalloc_expression] = STATE(3035), + [sym_initializer_expression] = STATE(3035), + [sym_default_expression] = STATE(3035), + [sym_with_expression] = STATE(3035), + [sym_sizeof_expression] = STATE(3035), + [sym_typeof_expression] = STATE(3035), + [sym_makeref_expression] = STATE(3035), + [sym_ref_expression] = STATE(3035), + [sym_reftype_expression] = STATE(3035), + [sym_refvalue_expression] = STATE(3035), + [sym_stackalloc_expression] = STATE(3035), + [sym_range_expression] = STATE(3035), + [sym_tuple_expression] = STATE(2415), + [sym_literal] = STATE(3035), + [sym_character_literal] = STATE(3037), + [sym_string_literal] = STATE(3037), + [sym_raw_string_literal] = STATE(3037), + [sym_boolean_literal] = STATE(3037), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3035), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(1412), [sym_preproc_endregion] = STATE(1412), [sym_preproc_line] = STATE(1412), @@ -280487,47 +280373,47 @@ 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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3396), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3455), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1153), - [anon_sym_LPAREN] = ACTIONS(1915), - [anon_sym_ref] = ACTIONS(1917), - [anon_sym_LBRACE] = ACTIONS(1159), - [anon_sym_delegate] = ACTIONS(1161), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1239), + [anon_sym_LPAREN] = ACTIONS(1241), + [anon_sym_ref] = ACTIONS(1243), + [anon_sym_LBRACE] = ACTIONS(1245), + [anon_sym_delegate] = ACTIONS(1247), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1919), + [anon_sym_new] = ACTIONS(1249), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1167), - [anon_sym_BANG] = ACTIONS(1923), - [anon_sym_TILDE] = ACTIONS(1923), - [anon_sym_PLUS_PLUS] = ACTIONS(1923), - [anon_sym_DASH_DASH] = ACTIONS(1923), - [anon_sym_true] = ACTIONS(1173), - [anon_sym_false] = ACTIONS(1173), - [anon_sym_PLUS] = ACTIONS(1921), - [anon_sym_DASH] = ACTIONS(1921), - [anon_sym_STAR] = ACTIONS(1925), - [anon_sym_CARET] = ACTIONS(1923), - [anon_sym_AMP] = ACTIONS(1923), - [anon_sym_this] = ACTIONS(1177), + [anon_sym_checked] = ACTIONS(1251), + [anon_sym_BANG] = ACTIONS(1255), + [anon_sym_TILDE] = ACTIONS(1255), + [anon_sym_PLUS_PLUS] = ACTIONS(1255), + [anon_sym_DASH_DASH] = ACTIONS(1255), + [anon_sym_true] = ACTIONS(1257), + [anon_sym_false] = ACTIONS(1257), + [anon_sym_PLUS] = ACTIONS(1253), + [anon_sym_DASH] = ACTIONS(1253), + [anon_sym_STAR] = ACTIONS(1259), + [anon_sym_CARET] = ACTIONS(1255), + [anon_sym_AMP] = ACTIONS(1255), + [anon_sym_this] = ACTIONS(1261), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1179), + [anon_sym_base] = ACTIONS(1263), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1181), - [anon_sym_unchecked] = ACTIONS(1167), + [sym_predefined_type] = ACTIONS(1265), + [anon_sym_unchecked] = ACTIONS(1251), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1183), - [anon_sym_throw] = ACTIONS(1927), + [anon_sym_default] = ACTIONS(1267), + [anon_sym_throw] = ACTIONS(1269), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1929), - [anon_sym_DOT_DOT] = ACTIONS(1931), + [anon_sym_await] = ACTIONS(1271), + [anon_sym_DOT_DOT] = ACTIONS(1273), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -280540,19 +280426,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1191), - [anon_sym_sizeof] = ACTIONS(1193), - [anon_sym_typeof] = ACTIONS(1195), - [anon_sym___makeref] = ACTIONS(1197), - [anon_sym___reftype] = ACTIONS(1199), - [anon_sym___refvalue] = ACTIONS(1201), - [sym_null_literal] = ACTIONS(1203), - [anon_sym_SQUOTE] = ACTIONS(1205), - [sym_integer_literal] = ACTIONS(1203), - [sym_real_literal] = ACTIONS(1207), - [anon_sym_DQUOTE] = ACTIONS(1209), - [sym_verbatim_string_literal] = ACTIONS(1207), - [aux_sym_preproc_if_token1] = ACTIONS(1211), + [anon_sym_stackalloc] = ACTIONS(1275), + [anon_sym_sizeof] = ACTIONS(1277), + [anon_sym_typeof] = ACTIONS(1279), + [anon_sym___makeref] = ACTIONS(1281), + [anon_sym___reftype] = ACTIONS(1283), + [anon_sym___refvalue] = ACTIONS(1285), + [sym_null_literal] = ACTIONS(1287), + [anon_sym_SQUOTE] = ACTIONS(1289), + [sym_integer_literal] = ACTIONS(1287), + [sym_real_literal] = ACTIONS(1291), + [anon_sym_DQUOTE] = ACTIONS(1293), + [sym_verbatim_string_literal] = ACTIONS(1291), + [aux_sym_preproc_if_token1] = ACTIONS(1295), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -280563,90 +280449,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1213), - [sym_interpolation_verbatim_start] = ACTIONS(1215), - [sym_interpolation_raw_start] = ACTIONS(1217), - [sym_raw_string_start] = ACTIONS(1219), + [sym_interpolation_regular_start] = ACTIONS(1297), + [sym_interpolation_verbatim_start] = ACTIONS(1299), + [sym_interpolation_raw_start] = ACTIONS(1301), + [sym_raw_string_start] = ACTIONS(1303), }, [1413] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(5910), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2247), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(3521), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3379), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3080), - [sym_postfix_unary_expression] = STATE(3111), - [sym_prefix_unary_expression] = STATE(3111), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6154), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3080), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3111), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3080), - [sym_member_access_expression] = STATE(2484), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3111), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7575), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(3080), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3080), - [sym_typeof_expression] = STATE(3080), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2484), - [sym_literal] = STATE(3080), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2816), + [sym__name] = STATE(5895), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2376), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(4990), + [sym_non_lvalue_expression] = STATE(3495), + [sym_lvalue_expression] = STATE(3512), + [sym__expression_statement_expression] = STATE(3462), + [sym_assignment_expression] = STATE(3497), + [sym_binary_expression] = STATE(3462), + [sym_postfix_unary_expression] = STATE(3497), + [sym_prefix_unary_expression] = STATE(3497), + [sym__pointer_indirection_expression] = STATE(2815), + [sym_query_expression] = STATE(3462), + [sym_from_clause] = STATE(6167), + [sym_conditional_expression] = STATE(3462), + [sym_conditional_access_expression] = STATE(3462), + [sym_as_expression] = STATE(3462), + [sym_is_expression] = STATE(3462), + [sym_is_pattern_expression] = STATE(3462), + [sym_cast_expression] = STATE(3462), + [sym_checked_expression] = STATE(3462), + [sym_invocation_expression] = STATE(3497), + [sym_switch_expression] = STATE(3462), + [sym_await_expression] = STATE(3497), + [sym_throw_expression] = STATE(3462), + [sym_element_access_expression] = STATE(2815), + [sym_interpolated_string_expression] = STATE(3462), + [sym_member_access_expression] = STATE(2815), + [sym_object_creation_expression] = STATE(3497), + [sym_parenthesized_expression] = STATE(3497), + [sym__parenthesized_lvalue_expression] = STATE(2815), + [sym_lambda_expression] = STATE(3462), + [sym__lambda_expression_init] = STATE(7716), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3462), + [sym_anonymous_method_expression] = STATE(3462), + [sym_anonymous_object_creation_expression] = STATE(3462), + [sym_implicit_array_creation_expression] = STATE(3462), + [sym_implicit_object_creation_expression] = STATE(3462), + [sym_implicit_stackalloc_expression] = STATE(3462), + [sym_initializer_expression] = STATE(3462), + [sym_default_expression] = STATE(3462), + [sym_with_expression] = STATE(3462), + [sym_sizeof_expression] = STATE(3462), + [sym_typeof_expression] = STATE(3462), + [sym_makeref_expression] = STATE(3462), + [sym_ref_expression] = STATE(3462), + [sym_reftype_expression] = STATE(3462), + [sym_refvalue_expression] = STATE(3462), + [sym_stackalloc_expression] = STATE(3462), + [sym_range_expression] = STATE(3462), + [sym_tuple_expression] = STATE(2815), + [sym_literal] = STATE(3462), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3462), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(1413), [sym_preproc_endregion] = STATE(1413), [sym_preproc_line] = STATE(1413), @@ -280656,47 +280542,47 @@ 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(3067), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), [aux_sym__lambda_expression_init_repeat1] = STATE(3367), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1481), - [anon_sym_LPAREN] = ACTIONS(895), - [anon_sym_ref] = ACTIONS(897), - [anon_sym_LBRACE] = ACTIONS(1487), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1305), + [anon_sym_LPAREN] = ACTIONS(1803), + [anon_sym_ref] = ACTIONS(1805), + [anon_sym_LBRACE] = ACTIONS(1311), + [anon_sym_delegate] = ACTIONS(1313), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1061), + [anon_sym_new] = ACTIONS(1807), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1067), - [anon_sym_BANG] = ACTIONS(1495), - [anon_sym_TILDE] = ACTIONS(1495), - [anon_sym_PLUS_PLUS] = ACTIONS(1495), - [anon_sym_DASH_DASH] = ACTIONS(1495), + [anon_sym_checked] = ACTIONS(1317), + [anon_sym_BANG] = ACTIONS(1811), + [anon_sym_TILDE] = ACTIONS(1811), + [anon_sym_PLUS_PLUS] = ACTIONS(1811), + [anon_sym_DASH_DASH] = ACTIONS(1811), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1493), - [anon_sym_DASH] = ACTIONS(1493), - [anon_sym_STAR] = ACTIONS(905), - [anon_sym_CARET] = ACTIONS(1495), - [anon_sym_AMP] = ACTIONS(1495), - [anon_sym_this] = ACTIONS(83), + [anon_sym_PLUS] = ACTIONS(1809), + [anon_sym_DASH] = ACTIONS(1809), + [anon_sym_STAR] = ACTIONS(1813), + [anon_sym_CARET] = ACTIONS(1811), + [anon_sym_AMP] = ACTIONS(1811), + [anon_sym_this] = ACTIONS(1321), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), + [anon_sym_base] = ACTIONS(1323), [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1067), + [anon_sym_unchecked] = ACTIONS(1317), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1079), + [anon_sym_throw] = ACTIONS(1815), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1081), - [anon_sym_DOT_DOT] = ACTIONS(911), + [anon_sym_await] = ACTIONS(1817), + [anon_sym_DOT_DOT] = ACTIONS(1819), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -280709,19 +280595,19 @@ static const uint16_t ts_parse_table[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(1331), [anon_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(1333), + [anon_sym___reftype] = ACTIONS(1335), + [anon_sym___refvalue] = ACTIONS(1337), [sym_null_literal] = ACTIONS(139), [anon_sym_SQUOTE] = ACTIONS(141), [sym_integer_literal] = ACTIONS(139), [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1089), + [aux_sym_preproc_if_token1] = ACTIONS(1339), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -280738,84 +280624,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [1414] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(5889), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2247), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(3543), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3408), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3080), - [sym_postfix_unary_expression] = STATE(3111), - [sym_prefix_unary_expression] = STATE(3111), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6161), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3080), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3111), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3080), - [sym_member_access_expression] = STATE(2484), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3111), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7323), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(3080), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3080), - [sym_typeof_expression] = STATE(3080), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2484), - [sym_literal] = STATE(3080), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(5895), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2376), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(5588), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3643), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3102), + [sym_postfix_unary_expression] = STATE(3079), + [sym_prefix_unary_expression] = STATE(3079), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6148), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3102), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3079), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3102), + [sym_member_access_expression] = STATE(2472), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3079), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7304), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(3102), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3102), + [sym_typeof_expression] = STATE(3102), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2472), + [sym_literal] = STATE(3102), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(1414), [sym_preproc_endregion] = STATE(1414), [sym_preproc_line] = STATE(1414), @@ -280825,47 +280711,47 @@ 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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1481), - [anon_sym_LPAREN] = ACTIONS(1483), - [anon_sym_ref] = ACTIONS(1485), - [anon_sym_LBRACE] = ACTIONS(1487), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1479), + [anon_sym_LPAREN] = ACTIONS(2199), + [anon_sym_ref] = ACTIONS(2201), + [anon_sym_LBRACE] = ACTIONS(1481), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1101), + [anon_sym_new] = ACTIONS(2203), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1067), - [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(2207), + [anon_sym_TILDE] = ACTIONS(2207), + [anon_sym_PLUS_PLUS] = ACTIONS(2207), + [anon_sym_DASH_DASH] = ACTIONS(2207), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1489), - [anon_sym_DASH] = ACTIONS(1489), - [anon_sym_STAR] = ACTIONS(1111), - [anon_sym_CARET] = ACTIONS(1491), - [anon_sym_AMP] = ACTIONS(1491), + [anon_sym_PLUS] = ACTIONS(2205), + [anon_sym_DASH] = ACTIONS(2205), + [anon_sym_STAR] = ACTIONS(2209), + [anon_sym_CARET] = ACTIONS(2207), + [anon_sym_AMP] = ACTIONS(2207), [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(1067), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1119), + [anon_sym_throw] = ACTIONS(2211), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1121), - [anon_sym_DOT_DOT] = ACTIONS(1125), + [anon_sym_await] = ACTIONS(2213), + [anon_sym_DOT_DOT] = ACTIONS(2215), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -280890,7 +280776,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(1089), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -280907,84 +280793,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [1415] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(5876), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2376), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(5672), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(2465), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3080), - [sym_postfix_unary_expression] = STATE(3111), - [sym_prefix_unary_expression] = STATE(3111), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6154), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3080), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3111), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3080), - [sym_member_access_expression] = STATE(2484), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3111), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7530), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(3080), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3080), - [sym_typeof_expression] = STATE(3080), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2484), - [sym_literal] = STATE(3080), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2603), + [sym__name] = STATE(5894), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2193), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(4243), + [sym_non_lvalue_expression] = STATE(3220), + [sym_lvalue_expression] = STATE(3126), + [sym__expression_statement_expression] = STATE(3236), + [sym_assignment_expression] = STATE(3221), + [sym_binary_expression] = STATE(3236), + [sym_postfix_unary_expression] = STATE(3221), + [sym_prefix_unary_expression] = STATE(3221), + [sym__pointer_indirection_expression] = STATE(2602), + [sym_query_expression] = STATE(3236), + [sym_from_clause] = STATE(6165), + [sym_conditional_expression] = STATE(3236), + [sym_conditional_access_expression] = STATE(3236), + [sym_as_expression] = STATE(3236), + [sym_is_expression] = STATE(3236), + [sym_is_pattern_expression] = STATE(3236), + [sym_cast_expression] = STATE(3236), + [sym_checked_expression] = STATE(3236), + [sym_invocation_expression] = STATE(3221), + [sym_switch_expression] = STATE(3236), + [sym_await_expression] = STATE(3221), + [sym_throw_expression] = STATE(3236), + [sym_element_access_expression] = STATE(2602), + [sym_interpolated_string_expression] = STATE(3236), + [sym_member_access_expression] = STATE(2602), + [sym_object_creation_expression] = STATE(3221), + [sym_parenthesized_expression] = STATE(3221), + [sym__parenthesized_lvalue_expression] = STATE(2602), + [sym_lambda_expression] = STATE(3236), + [sym__lambda_expression_init] = STATE(7487), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3236), + [sym_anonymous_method_expression] = STATE(3236), + [sym_anonymous_object_creation_expression] = STATE(3236), + [sym_implicit_array_creation_expression] = STATE(3236), + [sym_implicit_object_creation_expression] = STATE(3236), + [sym_implicit_stackalloc_expression] = STATE(3236), + [sym_initializer_expression] = STATE(3236), + [sym_default_expression] = STATE(3236), + [sym_with_expression] = STATE(3236), + [sym_sizeof_expression] = STATE(3236), + [sym_typeof_expression] = STATE(3236), + [sym_makeref_expression] = STATE(3236), + [sym_ref_expression] = STATE(3236), + [sym_reftype_expression] = STATE(3236), + [sym_refvalue_expression] = STATE(3236), + [sym_stackalloc_expression] = STATE(3236), + [sym_range_expression] = STATE(3236), + [sym_tuple_expression] = STATE(2602), + [sym_literal] = STATE(3236), + [sym_character_literal] = STATE(3272), + [sym_string_literal] = STATE(3272), + [sym_raw_string_literal] = STATE(3272), + [sym_boolean_literal] = STATE(3272), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3236), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(1415), [sym_preproc_endregion] = STATE(1415), [sym_preproc_line] = STATE(1415), @@ -280994,47 +280880,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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3379), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1481), - [anon_sym_LPAREN] = ACTIONS(43), - [anon_sym_ref] = ACTIONS(661), - [anon_sym_LBRACE] = ACTIONS(1487), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1149), + [anon_sym_LPAREN] = ACTIONS(1341), + [anon_sym_ref] = ACTIONS(1343), + [anon_sym_LBRACE] = ACTIONS(1155), + [anon_sym_delegate] = ACTIONS(1157), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1061), + [anon_sym_new] = ACTIONS(1159), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = 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(1585), - [anon_sym_DASH] = ACTIONS(1585), - [anon_sym_STAR] = ACTIONS(2241), - [anon_sym_CARET] = ACTIONS(1587), - [anon_sym_AMP] = ACTIONS(1587), - [anon_sym_this] = ACTIONS(83), + [anon_sym_checked] = ACTIONS(1163), + [anon_sym_BANG] = ACTIONS(1347), + [anon_sym_TILDE] = ACTIONS(1347), + [anon_sym_PLUS_PLUS] = ACTIONS(1347), + [anon_sym_DASH_DASH] = ACTIONS(1347), + [anon_sym_true] = ACTIONS(1169), + [anon_sym_false] = ACTIONS(1169), + [anon_sym_PLUS] = ACTIONS(1345), + [anon_sym_DASH] = ACTIONS(1345), + [anon_sym_STAR] = ACTIONS(1349), + [anon_sym_CARET] = ACTIONS(1347), + [anon_sym_AMP] = ACTIONS(1347), + [anon_sym_this] = ACTIONS(1173), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), + [anon_sym_base] = ACTIONS(1175), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1067), + [sym_predefined_type] = ACTIONS(1177), + [anon_sym_unchecked] = ACTIONS(1163), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1589), + [anon_sym_default] = ACTIONS(1179), + [anon_sym_throw] = ACTIONS(1351), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1591), - [anon_sym_DOT_DOT] = ACTIONS(123), + [anon_sym_await] = ACTIONS(1353), + [anon_sym_DOT_DOT] = ACTIONS(1355), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -281047,19 +280933,19 @@ static const uint16_t ts_parse_table[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(1089), + [anon_sym_stackalloc] = ACTIONS(1187), + [anon_sym_sizeof] = ACTIONS(1189), + [anon_sym_typeof] = ACTIONS(1191), + [anon_sym___makeref] = ACTIONS(1193), + [anon_sym___reftype] = ACTIONS(1195), + [anon_sym___refvalue] = ACTIONS(1197), + [sym_null_literal] = ACTIONS(1199), + [anon_sym_SQUOTE] = ACTIONS(1201), + [sym_integer_literal] = ACTIONS(1199), + [sym_real_literal] = ACTIONS(1203), + [anon_sym_DQUOTE] = ACTIONS(1205), + [sym_verbatim_string_literal] = ACTIONS(1203), + [aux_sym_preproc_if_token1] = ACTIONS(1207), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -281070,90 +280956,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(151), - [sym_interpolation_verbatim_start] = ACTIONS(153), - [sym_interpolation_raw_start] = ACTIONS(155), - [sym_raw_string_start] = ACTIONS(157), + [sym_interpolation_regular_start] = ACTIONS(1209), + [sym_interpolation_verbatim_start] = ACTIONS(1211), + [sym_interpolation_raw_start] = ACTIONS(1213), + [sym_raw_string_start] = ACTIONS(1215), }, [1416] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(5160), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2204), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(4973), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3520), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3080), - [sym_postfix_unary_expression] = STATE(3111), - [sym_prefix_unary_expression] = STATE(3111), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6154), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3080), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3111), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3080), - [sym_member_access_expression] = STATE(2484), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3111), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7530), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(3080), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3080), - [sym_typeof_expression] = STATE(3080), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2484), - [sym_literal] = STATE(3080), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2816), + [sym__name] = STATE(5895), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2376), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(4884), + [sym_non_lvalue_expression] = STATE(3495), + [sym_lvalue_expression] = STATE(3512), + [sym__expression_statement_expression] = STATE(3462), + [sym_assignment_expression] = STATE(3497), + [sym_binary_expression] = STATE(3462), + [sym_postfix_unary_expression] = STATE(3497), + [sym_prefix_unary_expression] = STATE(3497), + [sym__pointer_indirection_expression] = STATE(2815), + [sym_query_expression] = STATE(3462), + [sym_from_clause] = STATE(6167), + [sym_conditional_expression] = STATE(3462), + [sym_conditional_access_expression] = STATE(3462), + [sym_as_expression] = STATE(3462), + [sym_is_expression] = STATE(3462), + [sym_is_pattern_expression] = STATE(3462), + [sym_cast_expression] = STATE(3462), + [sym_checked_expression] = STATE(3462), + [sym_invocation_expression] = STATE(3497), + [sym_switch_expression] = STATE(3462), + [sym_await_expression] = STATE(3497), + [sym_throw_expression] = STATE(3462), + [sym_element_access_expression] = STATE(2815), + [sym_interpolated_string_expression] = STATE(3462), + [sym_member_access_expression] = STATE(2815), + [sym_object_creation_expression] = STATE(3497), + [sym_parenthesized_expression] = STATE(3497), + [sym__parenthesized_lvalue_expression] = STATE(2815), + [sym_lambda_expression] = STATE(3462), + [sym__lambda_expression_init] = STATE(7716), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3462), + [sym_anonymous_method_expression] = STATE(3462), + [sym_anonymous_object_creation_expression] = STATE(3462), + [sym_implicit_array_creation_expression] = STATE(3462), + [sym_implicit_object_creation_expression] = STATE(3462), + [sym_implicit_stackalloc_expression] = STATE(3462), + [sym_initializer_expression] = STATE(3462), + [sym_default_expression] = STATE(3462), + [sym_with_expression] = STATE(3462), + [sym_sizeof_expression] = STATE(3462), + [sym_typeof_expression] = STATE(3462), + [sym_makeref_expression] = STATE(3462), + [sym_ref_expression] = STATE(3462), + [sym_reftype_expression] = STATE(3462), + [sym_refvalue_expression] = STATE(3462), + [sym_stackalloc_expression] = STATE(3462), + [sym_range_expression] = STATE(3462), + [sym_tuple_expression] = STATE(2815), + [sym_literal] = STATE(3462), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3462), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(1416), [sym_preproc_endregion] = STATE(1416), [sym_preproc_line] = STATE(1416), @@ -281163,47 +281049,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(3067), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), [aux_sym__lambda_expression_init_repeat1] = STATE(3367), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1481), - [anon_sym_LPAREN] = ACTIONS(43), - [anon_sym_ref] = ACTIONS(661), - [anon_sym_LBRACE] = ACTIONS(1487), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1305), + [anon_sym_LPAREN] = ACTIONS(1803), + [anon_sym_ref] = ACTIONS(1805), + [anon_sym_LBRACE] = ACTIONS(1311), + [anon_sym_delegate] = ACTIONS(1313), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1061), + [anon_sym_new] = ACTIONS(1807), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = 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_checked] = ACTIONS(1317), + [anon_sym_BANG] = ACTIONS(1811), + [anon_sym_TILDE] = ACTIONS(1811), + [anon_sym_PLUS_PLUS] = ACTIONS(1811), + [anon_sym_DASH_DASH] = ACTIONS(1811), [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_this] = ACTIONS(83), + [anon_sym_PLUS] = ACTIONS(1809), + [anon_sym_DASH] = ACTIONS(1809), + [anon_sym_STAR] = ACTIONS(1813), + [anon_sym_CARET] = ACTIONS(1811), + [anon_sym_AMP] = ACTIONS(1811), + [anon_sym_this] = ACTIONS(1321), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), + [anon_sym_base] = ACTIONS(1323), [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1067), + [anon_sym_unchecked] = ACTIONS(1317), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1589), + [anon_sym_throw] = ACTIONS(1815), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1591), - [anon_sym_DOT_DOT] = ACTIONS(123), + [anon_sym_await] = ACTIONS(1817), + [anon_sym_DOT_DOT] = ACTIONS(1819), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -281216,19 +281102,19 @@ static const uint16_t ts_parse_table[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(1331), [anon_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(1333), + [anon_sym___reftype] = ACTIONS(1335), + [anon_sym___refvalue] = ACTIONS(1337), [sym_null_literal] = ACTIONS(139), [anon_sym_SQUOTE] = ACTIONS(141), [sym_integer_literal] = ACTIONS(139), [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1089), + [aux_sym_preproc_if_token1] = ACTIONS(1339), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -281245,84 +281131,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [1417] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2610), - [sym__name] = STATE(5872), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2397), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(4745), - [sym_non_lvalue_expression] = STATE(3277), - [sym_lvalue_expression] = STATE(3407), - [sym__expression_statement_expression] = STATE(3228), - [sym_assignment_expression] = STATE(3289), - [sym_binary_expression] = STATE(3228), - [sym_postfix_unary_expression] = STATE(3289), - [sym_prefix_unary_expression] = STATE(3289), - [sym__pointer_indirection_expression] = STATE(2609), - [sym_query_expression] = STATE(3228), - [sym_from_clause] = STATE(6165), - [sym_conditional_expression] = STATE(3228), - [sym_conditional_access_expression] = STATE(3228), - [sym_as_expression] = STATE(3228), - [sym_is_expression] = STATE(3228), - [sym_is_pattern_expression] = STATE(3228), - [sym_cast_expression] = STATE(3228), - [sym_checked_expression] = STATE(3228), - [sym_invocation_expression] = STATE(3289), - [sym_switch_expression] = STATE(3228), - [sym_await_expression] = STATE(3289), - [sym_throw_expression] = STATE(3228), - [sym_element_access_expression] = STATE(2609), - [sym_interpolated_string_expression] = STATE(3228), - [sym_member_access_expression] = STATE(2609), - [sym_object_creation_expression] = STATE(3289), - [sym_parenthesized_expression] = STATE(3289), - [sym__parenthesized_lvalue_expression] = STATE(2609), - [sym_lambda_expression] = STATE(3228), - [sym__lambda_expression_init] = STATE(7478), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3228), - [sym_anonymous_method_expression] = STATE(3228), - [sym_anonymous_object_creation_expression] = STATE(3228), - [sym_implicit_array_creation_expression] = STATE(3228), - [sym_implicit_object_creation_expression] = STATE(3228), - [sym_implicit_stackalloc_expression] = STATE(3228), - [sym_initializer_expression] = STATE(3228), - [sym_default_expression] = STATE(3228), - [sym_with_expression] = STATE(3228), - [sym_sizeof_expression] = STATE(3228), - [sym_typeof_expression] = STATE(3228), - [sym_makeref_expression] = STATE(3228), - [sym_ref_expression] = STATE(3228), - [sym_reftype_expression] = STATE(3228), - [sym_refvalue_expression] = STATE(3228), - [sym_stackalloc_expression] = STATE(3228), - [sym_range_expression] = STATE(3228), - [sym_tuple_expression] = STATE(2609), - [sym_literal] = STATE(3228), - [sym_character_literal] = STATE(3278), - [sym_string_literal] = STATE(3278), - [sym_raw_string_literal] = STATE(3278), - [sym_boolean_literal] = STATE(3278), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3228), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2816), + [sym__name] = STATE(5895), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2376), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(4888), + [sym_non_lvalue_expression] = STATE(3495), + [sym_lvalue_expression] = STATE(3512), + [sym__expression_statement_expression] = STATE(3462), + [sym_assignment_expression] = STATE(3497), + [sym_binary_expression] = STATE(3462), + [sym_postfix_unary_expression] = STATE(3497), + [sym_prefix_unary_expression] = STATE(3497), + [sym__pointer_indirection_expression] = STATE(2815), + [sym_query_expression] = STATE(3462), + [sym_from_clause] = STATE(6167), + [sym_conditional_expression] = STATE(3462), + [sym_conditional_access_expression] = STATE(3462), + [sym_as_expression] = STATE(3462), + [sym_is_expression] = STATE(3462), + [sym_is_pattern_expression] = STATE(3462), + [sym_cast_expression] = STATE(3462), + [sym_checked_expression] = STATE(3462), + [sym_invocation_expression] = STATE(3497), + [sym_switch_expression] = STATE(3462), + [sym_await_expression] = STATE(3497), + [sym_throw_expression] = STATE(3462), + [sym_element_access_expression] = STATE(2815), + [sym_interpolated_string_expression] = STATE(3462), + [sym_member_access_expression] = STATE(2815), + [sym_object_creation_expression] = STATE(3497), + [sym_parenthesized_expression] = STATE(3497), + [sym__parenthesized_lvalue_expression] = STATE(2815), + [sym_lambda_expression] = STATE(3462), + [sym__lambda_expression_init] = STATE(7716), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3462), + [sym_anonymous_method_expression] = STATE(3462), + [sym_anonymous_object_creation_expression] = STATE(3462), + [sym_implicit_array_creation_expression] = STATE(3462), + [sym_implicit_object_creation_expression] = STATE(3462), + [sym_implicit_stackalloc_expression] = STATE(3462), + [sym_initializer_expression] = STATE(3462), + [sym_default_expression] = STATE(3462), + [sym_with_expression] = STATE(3462), + [sym_sizeof_expression] = STATE(3462), + [sym_typeof_expression] = STATE(3462), + [sym_makeref_expression] = STATE(3462), + [sym_ref_expression] = STATE(3462), + [sym_reftype_expression] = STATE(3462), + [sym_refvalue_expression] = STATE(3462), + [sym_stackalloc_expression] = STATE(3462), + [sym_range_expression] = STATE(3462), + [sym_tuple_expression] = STATE(2815), + [sym_literal] = STATE(3462), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3462), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(1417), [sym_preproc_endregion] = STATE(1417), [sym_preproc_line] = STATE(1417), @@ -281332,47 +281218,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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3396), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3367), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1153), - [anon_sym_LPAREN] = ACTIONS(1823), - [anon_sym_ref] = ACTIONS(1825), - [anon_sym_LBRACE] = ACTIONS(1159), - [anon_sym_delegate] = ACTIONS(1161), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1305), + [anon_sym_LPAREN] = ACTIONS(1803), + [anon_sym_ref] = ACTIONS(1805), + [anon_sym_LBRACE] = ACTIONS(1311), + [anon_sym_delegate] = ACTIONS(1313), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1827), + [anon_sym_new] = ACTIONS(1807), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1167), - [anon_sym_BANG] = ACTIONS(1831), - [anon_sym_TILDE] = ACTIONS(1831), - [anon_sym_PLUS_PLUS] = ACTIONS(1831), - [anon_sym_DASH_DASH] = ACTIONS(1831), - [anon_sym_true] = ACTIONS(1173), - [anon_sym_false] = ACTIONS(1173), - [anon_sym_PLUS] = ACTIONS(1829), - [anon_sym_DASH] = ACTIONS(1829), - [anon_sym_STAR] = ACTIONS(1833), - [anon_sym_CARET] = ACTIONS(1831), - [anon_sym_AMP] = ACTIONS(1831), - [anon_sym_this] = ACTIONS(1177), + [anon_sym_checked] = ACTIONS(1317), + [anon_sym_BANG] = ACTIONS(1811), + [anon_sym_TILDE] = ACTIONS(1811), + [anon_sym_PLUS_PLUS] = ACTIONS(1811), + [anon_sym_DASH_DASH] = ACTIONS(1811), + [anon_sym_true] = ACTIONS(77), + [anon_sym_false] = ACTIONS(77), + [anon_sym_PLUS] = ACTIONS(1809), + [anon_sym_DASH] = ACTIONS(1809), + [anon_sym_STAR] = ACTIONS(1813), + [anon_sym_CARET] = ACTIONS(1811), + [anon_sym_AMP] = ACTIONS(1811), + [anon_sym_this] = ACTIONS(1321), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1179), + [anon_sym_base] = ACTIONS(1323), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1181), - [anon_sym_unchecked] = ACTIONS(1167), + [sym_predefined_type] = ACTIONS(91), + [anon_sym_unchecked] = ACTIONS(1317), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1183), - [anon_sym_throw] = ACTIONS(1835), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(1815), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1837), - [anon_sym_DOT_DOT] = ACTIONS(1839), + [anon_sym_await] = ACTIONS(1817), + [anon_sym_DOT_DOT] = ACTIONS(1819), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -281385,19 +281271,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1191), - [anon_sym_sizeof] = ACTIONS(1193), - [anon_sym_typeof] = ACTIONS(1195), - [anon_sym___makeref] = ACTIONS(1197), - [anon_sym___reftype] = ACTIONS(1199), - [anon_sym___refvalue] = ACTIONS(1201), - [sym_null_literal] = ACTIONS(1203), - [anon_sym_SQUOTE] = ACTIONS(1205), - [sym_integer_literal] = ACTIONS(1203), - [sym_real_literal] = ACTIONS(1207), - [anon_sym_DQUOTE] = ACTIONS(1209), - [sym_verbatim_string_literal] = ACTIONS(1207), - [aux_sym_preproc_if_token1] = ACTIONS(1211), + [anon_sym_stackalloc] = ACTIONS(1331), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(1333), + [anon_sym___reftype] = ACTIONS(1335), + [anon_sym___refvalue] = ACTIONS(1337), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_literal] = ACTIONS(143), + [anon_sym_DQUOTE] = ACTIONS(145), + [sym_verbatim_string_literal] = ACTIONS(143), + [aux_sym_preproc_if_token1] = ACTIONS(1339), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -281408,90 +281294,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1213), - [sym_interpolation_verbatim_start] = ACTIONS(1215), - [sym_interpolation_raw_start] = ACTIONS(1217), - [sym_raw_string_start] = ACTIONS(1219), + [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(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(5160), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2204), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(4560), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3461), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3080), - [sym_postfix_unary_expression] = STATE(3111), - [sym_prefix_unary_expression] = STATE(3111), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6154), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3080), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3111), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3080), - [sym_member_access_expression] = STATE(2484), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3111), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7547), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(3080), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3080), - [sym_typeof_expression] = STATE(3080), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2484), - [sym_literal] = STATE(3080), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2816), + [sym__name] = STATE(5895), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2376), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(4986), + [sym_non_lvalue_expression] = STATE(3495), + [sym_lvalue_expression] = STATE(3512), + [sym__expression_statement_expression] = STATE(3462), + [sym_assignment_expression] = STATE(3497), + [sym_binary_expression] = STATE(3462), + [sym_postfix_unary_expression] = STATE(3497), + [sym_prefix_unary_expression] = STATE(3497), + [sym__pointer_indirection_expression] = STATE(2815), + [sym_query_expression] = STATE(3462), + [sym_from_clause] = STATE(6167), + [sym_conditional_expression] = STATE(3462), + [sym_conditional_access_expression] = STATE(3462), + [sym_as_expression] = STATE(3462), + [sym_is_expression] = STATE(3462), + [sym_is_pattern_expression] = STATE(3462), + [sym_cast_expression] = STATE(3462), + [sym_checked_expression] = STATE(3462), + [sym_invocation_expression] = STATE(3497), + [sym_switch_expression] = STATE(3462), + [sym_await_expression] = STATE(3497), + [sym_throw_expression] = STATE(3462), + [sym_element_access_expression] = STATE(2815), + [sym_interpolated_string_expression] = STATE(3462), + [sym_member_access_expression] = STATE(2815), + [sym_object_creation_expression] = STATE(3497), + [sym_parenthesized_expression] = STATE(3497), + [sym__parenthesized_lvalue_expression] = STATE(2815), + [sym_lambda_expression] = STATE(3462), + [sym__lambda_expression_init] = STATE(7716), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3462), + [sym_anonymous_method_expression] = STATE(3462), + [sym_anonymous_object_creation_expression] = STATE(3462), + [sym_implicit_array_creation_expression] = STATE(3462), + [sym_implicit_object_creation_expression] = STATE(3462), + [sym_implicit_stackalloc_expression] = STATE(3462), + [sym_initializer_expression] = STATE(3462), + [sym_default_expression] = STATE(3462), + [sym_with_expression] = STATE(3462), + [sym_sizeof_expression] = STATE(3462), + [sym_typeof_expression] = STATE(3462), + [sym_makeref_expression] = STATE(3462), + [sym_ref_expression] = STATE(3462), + [sym_reftype_expression] = STATE(3462), + [sym_refvalue_expression] = STATE(3462), + [sym_stackalloc_expression] = STATE(3462), + [sym_range_expression] = STATE(3462), + [sym_tuple_expression] = STATE(2815), + [sym_literal] = STATE(3462), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3462), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(1418), [sym_preproc_endregion] = STATE(1418), [sym_preproc_line] = STATE(1418), @@ -281501,47 +281387,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(3067), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), [aux_sym__lambda_expression_init_repeat1] = STATE(3367), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1481), - [anon_sym_LPAREN] = ACTIONS(1497), - [anon_sym_ref] = ACTIONS(1499), - [anon_sym_LBRACE] = ACTIONS(1487), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1305), + [anon_sym_LPAREN] = ACTIONS(1803), + [anon_sym_ref] = ACTIONS(1805), + [anon_sym_LBRACE] = ACTIONS(1311), + [anon_sym_delegate] = ACTIONS(1313), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1501), + [anon_sym_new] = ACTIONS(1807), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = 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_checked] = ACTIONS(1317), + [anon_sym_BANG] = ACTIONS(1811), + [anon_sym_TILDE] = ACTIONS(1811), + [anon_sym_PLUS_PLUS] = ACTIONS(1811), + [anon_sym_DASH_DASH] = ACTIONS(1811), [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(1809), + [anon_sym_DASH] = ACTIONS(1809), + [anon_sym_STAR] = ACTIONS(1813), + [anon_sym_CARET] = ACTIONS(1811), + [anon_sym_AMP] = ACTIONS(1811), + [anon_sym_this] = ACTIONS(1321), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), + [anon_sym_base] = ACTIONS(1323), [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1067), + [anon_sym_unchecked] = ACTIONS(1317), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1503), + [anon_sym_throw] = ACTIONS(1815), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1505), - [anon_sym_DOT_DOT] = ACTIONS(1507), + [anon_sym_await] = ACTIONS(1817), + [anon_sym_DOT_DOT] = ACTIONS(1819), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -281554,19 +281440,19 @@ static const uint16_t ts_parse_table[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(1331), [anon_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(1333), + [anon_sym___reftype] = ACTIONS(1335), + [anon_sym___refvalue] = ACTIONS(1337), [sym_null_literal] = ACTIONS(139), [anon_sym_SQUOTE] = ACTIONS(141), [sym_integer_literal] = ACTIONS(139), [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1089), + [aux_sym_preproc_if_token1] = ACTIONS(1339), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -281583,84 +281469,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [1419] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2610), - [sym__name] = STATE(5872), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2397), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(4747), - [sym_non_lvalue_expression] = STATE(3277), - [sym_lvalue_expression] = STATE(3407), - [sym__expression_statement_expression] = STATE(3228), - [sym_assignment_expression] = STATE(3289), - [sym_binary_expression] = STATE(3228), - [sym_postfix_unary_expression] = STATE(3289), - [sym_prefix_unary_expression] = STATE(3289), - [sym__pointer_indirection_expression] = STATE(2609), - [sym_query_expression] = STATE(3228), - [sym_from_clause] = STATE(6165), - [sym_conditional_expression] = STATE(3228), - [sym_conditional_access_expression] = STATE(3228), - [sym_as_expression] = STATE(3228), - [sym_is_expression] = STATE(3228), - [sym_is_pattern_expression] = STATE(3228), - [sym_cast_expression] = STATE(3228), - [sym_checked_expression] = STATE(3228), - [sym_invocation_expression] = STATE(3289), - [sym_switch_expression] = STATE(3228), - [sym_await_expression] = STATE(3289), - [sym_throw_expression] = STATE(3228), - [sym_element_access_expression] = STATE(2609), - [sym_interpolated_string_expression] = STATE(3228), - [sym_member_access_expression] = STATE(2609), - [sym_object_creation_expression] = STATE(3289), - [sym_parenthesized_expression] = STATE(3289), - [sym__parenthesized_lvalue_expression] = STATE(2609), - [sym_lambda_expression] = STATE(3228), - [sym__lambda_expression_init] = STATE(7478), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3228), - [sym_anonymous_method_expression] = STATE(3228), - [sym_anonymous_object_creation_expression] = STATE(3228), - [sym_implicit_array_creation_expression] = STATE(3228), - [sym_implicit_object_creation_expression] = STATE(3228), - [sym_implicit_stackalloc_expression] = STATE(3228), - [sym_initializer_expression] = STATE(3228), - [sym_default_expression] = STATE(3228), - [sym_with_expression] = STATE(3228), - [sym_sizeof_expression] = STATE(3228), - [sym_typeof_expression] = STATE(3228), - [sym_makeref_expression] = STATE(3228), - [sym_ref_expression] = STATE(3228), - [sym_reftype_expression] = STATE(3228), - [sym_refvalue_expression] = STATE(3228), - [sym_stackalloc_expression] = STATE(3228), - [sym_range_expression] = STATE(3228), - [sym_tuple_expression] = STATE(2609), - [sym_literal] = STATE(3228), - [sym_character_literal] = STATE(3278), - [sym_string_literal] = STATE(3278), - [sym_raw_string_literal] = STATE(3278), - [sym_boolean_literal] = STATE(3278), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3228), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2816), + [sym__name] = STATE(5895), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2376), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(4891), + [sym_non_lvalue_expression] = STATE(3495), + [sym_lvalue_expression] = STATE(3512), + [sym__expression_statement_expression] = STATE(3462), + [sym_assignment_expression] = STATE(3497), + [sym_binary_expression] = STATE(3462), + [sym_postfix_unary_expression] = STATE(3497), + [sym_prefix_unary_expression] = STATE(3497), + [sym__pointer_indirection_expression] = STATE(2815), + [sym_query_expression] = STATE(3462), + [sym_from_clause] = STATE(6167), + [sym_conditional_expression] = STATE(3462), + [sym_conditional_access_expression] = STATE(3462), + [sym_as_expression] = STATE(3462), + [sym_is_expression] = STATE(3462), + [sym_is_pattern_expression] = STATE(3462), + [sym_cast_expression] = STATE(3462), + [sym_checked_expression] = STATE(3462), + [sym_invocation_expression] = STATE(3497), + [sym_switch_expression] = STATE(3462), + [sym_await_expression] = STATE(3497), + [sym_throw_expression] = STATE(3462), + [sym_element_access_expression] = STATE(2815), + [sym_interpolated_string_expression] = STATE(3462), + [sym_member_access_expression] = STATE(2815), + [sym_object_creation_expression] = STATE(3497), + [sym_parenthesized_expression] = STATE(3497), + [sym__parenthesized_lvalue_expression] = STATE(2815), + [sym_lambda_expression] = STATE(3462), + [sym__lambda_expression_init] = STATE(7716), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3462), + [sym_anonymous_method_expression] = STATE(3462), + [sym_anonymous_object_creation_expression] = STATE(3462), + [sym_implicit_array_creation_expression] = STATE(3462), + [sym_implicit_object_creation_expression] = STATE(3462), + [sym_implicit_stackalloc_expression] = STATE(3462), + [sym_initializer_expression] = STATE(3462), + [sym_default_expression] = STATE(3462), + [sym_with_expression] = STATE(3462), + [sym_sizeof_expression] = STATE(3462), + [sym_typeof_expression] = STATE(3462), + [sym_makeref_expression] = STATE(3462), + [sym_ref_expression] = STATE(3462), + [sym_reftype_expression] = STATE(3462), + [sym_refvalue_expression] = STATE(3462), + [sym_stackalloc_expression] = STATE(3462), + [sym_range_expression] = STATE(3462), + [sym_tuple_expression] = STATE(2815), + [sym_literal] = STATE(3462), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3462), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(1419), [sym_preproc_endregion] = STATE(1419), [sym_preproc_line] = STATE(1419), @@ -281670,47 +281556,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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3396), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3367), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1153), - [anon_sym_LPAREN] = ACTIONS(1823), - [anon_sym_ref] = ACTIONS(1825), - [anon_sym_LBRACE] = ACTIONS(1159), - [anon_sym_delegate] = ACTIONS(1161), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1305), + [anon_sym_LPAREN] = ACTIONS(1803), + [anon_sym_ref] = ACTIONS(1805), + [anon_sym_LBRACE] = ACTIONS(1311), + [anon_sym_delegate] = ACTIONS(1313), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1827), + [anon_sym_new] = ACTIONS(1807), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1167), - [anon_sym_BANG] = ACTIONS(1831), - [anon_sym_TILDE] = ACTIONS(1831), - [anon_sym_PLUS_PLUS] = ACTIONS(1831), - [anon_sym_DASH_DASH] = ACTIONS(1831), - [anon_sym_true] = ACTIONS(1173), - [anon_sym_false] = ACTIONS(1173), - [anon_sym_PLUS] = ACTIONS(1829), - [anon_sym_DASH] = ACTIONS(1829), - [anon_sym_STAR] = ACTIONS(1833), - [anon_sym_CARET] = ACTIONS(1831), - [anon_sym_AMP] = ACTIONS(1831), - [anon_sym_this] = ACTIONS(1177), + [anon_sym_checked] = ACTIONS(1317), + [anon_sym_BANG] = ACTIONS(1811), + [anon_sym_TILDE] = ACTIONS(1811), + [anon_sym_PLUS_PLUS] = ACTIONS(1811), + [anon_sym_DASH_DASH] = ACTIONS(1811), + [anon_sym_true] = ACTIONS(77), + [anon_sym_false] = ACTIONS(77), + [anon_sym_PLUS] = ACTIONS(1809), + [anon_sym_DASH] = ACTIONS(1809), + [anon_sym_STAR] = ACTIONS(1813), + [anon_sym_CARET] = ACTIONS(1811), + [anon_sym_AMP] = ACTIONS(1811), + [anon_sym_this] = ACTIONS(1321), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1179), + [anon_sym_base] = ACTIONS(1323), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1181), - [anon_sym_unchecked] = ACTIONS(1167), + [sym_predefined_type] = ACTIONS(91), + [anon_sym_unchecked] = ACTIONS(1317), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1183), - [anon_sym_throw] = ACTIONS(1835), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(1815), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1837), - [anon_sym_DOT_DOT] = ACTIONS(1839), + [anon_sym_await] = ACTIONS(1817), + [anon_sym_DOT_DOT] = ACTIONS(1819), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -281723,19 +281609,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1191), - [anon_sym_sizeof] = ACTIONS(1193), - [anon_sym_typeof] = ACTIONS(1195), - [anon_sym___makeref] = ACTIONS(1197), - [anon_sym___reftype] = ACTIONS(1199), - [anon_sym___refvalue] = ACTIONS(1201), - [sym_null_literal] = ACTIONS(1203), - [anon_sym_SQUOTE] = ACTIONS(1205), - [sym_integer_literal] = ACTIONS(1203), - [sym_real_literal] = ACTIONS(1207), - [anon_sym_DQUOTE] = ACTIONS(1209), - [sym_verbatim_string_literal] = ACTIONS(1207), - [aux_sym_preproc_if_token1] = ACTIONS(1211), + [anon_sym_stackalloc] = ACTIONS(1331), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(1333), + [anon_sym___reftype] = ACTIONS(1335), + [anon_sym___refvalue] = ACTIONS(1337), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_literal] = ACTIONS(143), + [anon_sym_DQUOTE] = ACTIONS(145), + [sym_verbatim_string_literal] = ACTIONS(143), + [aux_sym_preproc_if_token1] = ACTIONS(1339), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -281746,90 +281632,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1213), - [sym_interpolation_verbatim_start] = ACTIONS(1215), - [sym_interpolation_raw_start] = ACTIONS(1217), - [sym_raw_string_start] = ACTIONS(1219), + [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(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2762), - [sym__name] = STATE(5910), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2204), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(4269), - [sym_non_lvalue_expression] = STATE(3438), - [sym_lvalue_expression] = STATE(3162), - [sym__expression_statement_expression] = STATE(3362), - [sym_assignment_expression] = STATE(3449), - [sym_binary_expression] = STATE(3362), - [sym_postfix_unary_expression] = STATE(3449), - [sym_prefix_unary_expression] = STATE(3449), - [sym__pointer_indirection_expression] = STATE(2747), - [sym_query_expression] = STATE(3362), - [sym_from_clause] = STATE(6171), - [sym_conditional_expression] = STATE(3362), - [sym_conditional_access_expression] = STATE(3362), - [sym_as_expression] = STATE(3362), - [sym_is_expression] = STATE(3362), - [sym_is_pattern_expression] = STATE(3362), - [sym_cast_expression] = STATE(3362), - [sym_checked_expression] = STATE(3362), - [sym_invocation_expression] = STATE(3449), - [sym_switch_expression] = STATE(3362), - [sym_await_expression] = STATE(3449), - [sym_throw_expression] = STATE(3362), - [sym_element_access_expression] = STATE(2747), - [sym_interpolated_string_expression] = STATE(3362), - [sym_member_access_expression] = STATE(2747), - [sym_object_creation_expression] = STATE(3449), - [sym_parenthesized_expression] = STATE(3449), - [sym__parenthesized_lvalue_expression] = STATE(2747), - [sym_lambda_expression] = STATE(3362), - [sym__lambda_expression_init] = STATE(7320), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3362), - [sym_anonymous_method_expression] = STATE(3362), - [sym_anonymous_object_creation_expression] = STATE(3362), - [sym_implicit_array_creation_expression] = STATE(3362), - [sym_implicit_object_creation_expression] = STATE(3362), - [sym_implicit_stackalloc_expression] = STATE(3362), - [sym_initializer_expression] = STATE(3362), - [sym_default_expression] = STATE(3362), - [sym_with_expression] = STATE(3362), - [sym_sizeof_expression] = STATE(3362), - [sym_typeof_expression] = STATE(3362), - [sym_makeref_expression] = STATE(3362), - [sym_ref_expression] = STATE(3362), - [sym_reftype_expression] = STATE(3362), - [sym_refvalue_expression] = STATE(3362), - [sym_stackalloc_expression] = STATE(3362), - [sym_range_expression] = STATE(3362), - [sym_tuple_expression] = STATE(2747), - [sym_literal] = STATE(3362), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3362), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2816), + [sym__name] = STATE(5895), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2376), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(4892), + [sym_non_lvalue_expression] = STATE(3495), + [sym_lvalue_expression] = STATE(3512), + [sym__expression_statement_expression] = STATE(3462), + [sym_assignment_expression] = STATE(3497), + [sym_binary_expression] = STATE(3462), + [sym_postfix_unary_expression] = STATE(3497), + [sym_prefix_unary_expression] = STATE(3497), + [sym__pointer_indirection_expression] = STATE(2815), + [sym_query_expression] = STATE(3462), + [sym_from_clause] = STATE(6167), + [sym_conditional_expression] = STATE(3462), + [sym_conditional_access_expression] = STATE(3462), + [sym_as_expression] = STATE(3462), + [sym_is_expression] = STATE(3462), + [sym_is_pattern_expression] = STATE(3462), + [sym_cast_expression] = STATE(3462), + [sym_checked_expression] = STATE(3462), + [sym_invocation_expression] = STATE(3497), + [sym_switch_expression] = STATE(3462), + [sym_await_expression] = STATE(3497), + [sym_throw_expression] = STATE(3462), + [sym_element_access_expression] = STATE(2815), + [sym_interpolated_string_expression] = STATE(3462), + [sym_member_access_expression] = STATE(2815), + [sym_object_creation_expression] = STATE(3497), + [sym_parenthesized_expression] = STATE(3497), + [sym__parenthesized_lvalue_expression] = STATE(2815), + [sym_lambda_expression] = STATE(3462), + [sym__lambda_expression_init] = STATE(7716), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3462), + [sym_anonymous_method_expression] = STATE(3462), + [sym_anonymous_object_creation_expression] = STATE(3462), + [sym_implicit_array_creation_expression] = STATE(3462), + [sym_implicit_object_creation_expression] = STATE(3462), + [sym_implicit_stackalloc_expression] = STATE(3462), + [sym_initializer_expression] = STATE(3462), + [sym_default_expression] = STATE(3462), + [sym_with_expression] = STATE(3462), + [sym_sizeof_expression] = STATE(3462), + [sym_typeof_expression] = STATE(3462), + [sym_makeref_expression] = STATE(3462), + [sym_ref_expression] = STATE(3462), + [sym_reftype_expression] = STATE(3462), + [sym_refvalue_expression] = STATE(3462), + [sym_stackalloc_expression] = STATE(3462), + [sym_range_expression] = STATE(3462), + [sym_tuple_expression] = STATE(2815), + [sym_literal] = STATE(3462), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3462), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(1420), [sym_preproc_endregion] = STATE(1420), [sym_preproc_line] = STATE(1420), @@ -281839,47 +281725,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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3385), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3367), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1307), - [anon_sym_LPAREN] = ACTIONS(1343), - [anon_sym_ref] = ACTIONS(1345), - [anon_sym_LBRACE] = ACTIONS(1313), - [anon_sym_delegate] = ACTIONS(1315), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1305), + [anon_sym_LPAREN] = ACTIONS(1803), + [anon_sym_ref] = ACTIONS(1805), + [anon_sym_LBRACE] = ACTIONS(1311), + [anon_sym_delegate] = ACTIONS(1313), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1317), + [anon_sym_new] = ACTIONS(1807), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1319), - [anon_sym_BANG] = ACTIONS(1349), - [anon_sym_TILDE] = ACTIONS(1349), - [anon_sym_PLUS_PLUS] = ACTIONS(1349), - [anon_sym_DASH_DASH] = ACTIONS(1349), + [anon_sym_checked] = ACTIONS(1317), + [anon_sym_BANG] = ACTIONS(1811), + [anon_sym_TILDE] = ACTIONS(1811), + [anon_sym_PLUS_PLUS] = ACTIONS(1811), + [anon_sym_DASH_DASH] = ACTIONS(1811), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1347), - [anon_sym_DASH] = ACTIONS(1347), - [anon_sym_STAR] = ACTIONS(1351), - [anon_sym_CARET] = ACTIONS(1349), - [anon_sym_AMP] = ACTIONS(1349), - [anon_sym_this] = ACTIONS(1323), + [anon_sym_PLUS] = ACTIONS(1809), + [anon_sym_DASH] = ACTIONS(1809), + [anon_sym_STAR] = ACTIONS(1813), + [anon_sym_CARET] = ACTIONS(1811), + [anon_sym_AMP] = ACTIONS(1811), + [anon_sym_this] = ACTIONS(1321), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1325), + [anon_sym_base] = ACTIONS(1323), [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1319), + [anon_sym_unchecked] = ACTIONS(1317), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1353), + [anon_sym_throw] = ACTIONS(1815), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1355), - [anon_sym_DOT_DOT] = ACTIONS(1357), + [anon_sym_await] = ACTIONS(1817), + [anon_sym_DOT_DOT] = ACTIONS(1819), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -281892,19 +281778,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1333), + [anon_sym_stackalloc] = ACTIONS(1331), [anon_sym_sizeof] = ACTIONS(129), [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(1335), - [anon_sym___reftype] = ACTIONS(1337), - [anon_sym___refvalue] = ACTIONS(1339), + [anon_sym___makeref] = ACTIONS(1333), + [anon_sym___reftype] = ACTIONS(1335), + [anon_sym___refvalue] = ACTIONS(1337), [sym_null_literal] = ACTIONS(139), [anon_sym_SQUOTE] = ACTIONS(141), [sym_integer_literal] = ACTIONS(139), [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1341), + [aux_sym_preproc_if_token1] = ACTIONS(1339), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -281921,84 +281807,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [1421] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2420), - [sym__name] = STATE(5875), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2369), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(2907), - [sym_non_lvalue_expression] = STATE(3066), - [sym_lvalue_expression] = STATE(3125), - [sym__expression_statement_expression] = STATE(3006), - [sym_assignment_expression] = STATE(3020), - [sym_binary_expression] = STATE(3006), - [sym_postfix_unary_expression] = STATE(3020), - [sym_prefix_unary_expression] = STATE(3020), - [sym__pointer_indirection_expression] = STATE(2423), - [sym_query_expression] = STATE(3006), - [sym_from_clause] = STATE(6145), - [sym_conditional_expression] = STATE(3006), - [sym_conditional_access_expression] = STATE(3006), - [sym_as_expression] = STATE(3006), - [sym_is_expression] = STATE(3006), - [sym_is_pattern_expression] = STATE(3006), - [sym_cast_expression] = STATE(3006), - [sym_checked_expression] = STATE(3006), - [sym_invocation_expression] = STATE(3020), - [sym_switch_expression] = STATE(3006), - [sym_await_expression] = STATE(3020), - [sym_throw_expression] = STATE(3006), - [sym_element_access_expression] = STATE(2423), - [sym_interpolated_string_expression] = STATE(3006), - [sym_member_access_expression] = STATE(2423), - [sym_object_creation_expression] = STATE(3020), - [sym_parenthesized_expression] = STATE(3020), - [sym__parenthesized_lvalue_expression] = STATE(2423), - [sym_lambda_expression] = STATE(3006), - [sym__lambda_expression_init] = STATE(7538), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3006), - [sym_anonymous_method_expression] = STATE(3006), - [sym_anonymous_object_creation_expression] = STATE(3006), - [sym_implicit_array_creation_expression] = STATE(3006), - [sym_implicit_object_creation_expression] = STATE(3006), - [sym_implicit_stackalloc_expression] = STATE(3006), - [sym_initializer_expression] = STATE(3006), - [sym_default_expression] = STATE(3006), - [sym_with_expression] = STATE(3006), - [sym_sizeof_expression] = STATE(3006), - [sym_typeof_expression] = STATE(3006), - [sym_makeref_expression] = STATE(3006), - [sym_ref_expression] = STATE(3006), - [sym_reftype_expression] = STATE(3006), - [sym_refvalue_expression] = STATE(3006), - [sym_stackalloc_expression] = STATE(3006), - [sym_range_expression] = STATE(3006), - [sym_tuple_expression] = STATE(2423), - [sym_literal] = STATE(3006), - [sym_character_literal] = STATE(3011), - [sym_string_literal] = STATE(3011), - [sym_raw_string_literal] = STATE(3011), - [sym_boolean_literal] = STATE(3011), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3006), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2816), + [sym__name] = STATE(5895), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2376), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(4893), + [sym_non_lvalue_expression] = STATE(3495), + [sym_lvalue_expression] = STATE(3512), + [sym__expression_statement_expression] = STATE(3462), + [sym_assignment_expression] = STATE(3497), + [sym_binary_expression] = STATE(3462), + [sym_postfix_unary_expression] = STATE(3497), + [sym_prefix_unary_expression] = STATE(3497), + [sym__pointer_indirection_expression] = STATE(2815), + [sym_query_expression] = STATE(3462), + [sym_from_clause] = STATE(6167), + [sym_conditional_expression] = STATE(3462), + [sym_conditional_access_expression] = STATE(3462), + [sym_as_expression] = STATE(3462), + [sym_is_expression] = STATE(3462), + [sym_is_pattern_expression] = STATE(3462), + [sym_cast_expression] = STATE(3462), + [sym_checked_expression] = STATE(3462), + [sym_invocation_expression] = STATE(3497), + [sym_switch_expression] = STATE(3462), + [sym_await_expression] = STATE(3497), + [sym_throw_expression] = STATE(3462), + [sym_element_access_expression] = STATE(2815), + [sym_interpolated_string_expression] = STATE(3462), + [sym_member_access_expression] = STATE(2815), + [sym_object_creation_expression] = STATE(3497), + [sym_parenthesized_expression] = STATE(3497), + [sym__parenthesized_lvalue_expression] = STATE(2815), + [sym_lambda_expression] = STATE(3462), + [sym__lambda_expression_init] = STATE(7716), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3462), + [sym_anonymous_method_expression] = STATE(3462), + [sym_anonymous_object_creation_expression] = STATE(3462), + [sym_implicit_array_creation_expression] = STATE(3462), + [sym_implicit_object_creation_expression] = STATE(3462), + [sym_implicit_stackalloc_expression] = STATE(3462), + [sym_initializer_expression] = STATE(3462), + [sym_default_expression] = STATE(3462), + [sym_with_expression] = STATE(3462), + [sym_sizeof_expression] = STATE(3462), + [sym_typeof_expression] = STATE(3462), + [sym_makeref_expression] = STATE(3462), + [sym_ref_expression] = STATE(3462), + [sym_reftype_expression] = STATE(3462), + [sym_refvalue_expression] = STATE(3462), + [sym_stackalloc_expression] = STATE(3462), + [sym_range_expression] = STATE(3462), + [sym_tuple_expression] = STATE(2815), + [sym_literal] = STATE(3462), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3462), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(1421), [sym_preproc_endregion] = STATE(1421), [sym_preproc_line] = STATE(1421), @@ -282008,47 +281894,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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3440), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3367), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1241), - [anon_sym_LPAREN] = ACTIONS(2195), - [anon_sym_ref] = ACTIONS(2197), - [anon_sym_LBRACE] = ACTIONS(1247), - [anon_sym_delegate] = ACTIONS(1249), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1305), + [anon_sym_LPAREN] = ACTIONS(1803), + [anon_sym_ref] = ACTIONS(1805), + [anon_sym_LBRACE] = ACTIONS(1311), + [anon_sym_delegate] = ACTIONS(1313), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1845), + [anon_sym_new] = ACTIONS(1807), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1253), - [anon_sym_BANG] = ACTIONS(2201), - [anon_sym_TILDE] = ACTIONS(2201), - [anon_sym_PLUS_PLUS] = ACTIONS(2201), - [anon_sym_DASH_DASH] = ACTIONS(2201), - [anon_sym_true] = ACTIONS(1259), - [anon_sym_false] = ACTIONS(1259), - [anon_sym_PLUS] = ACTIONS(2199), - [anon_sym_DASH] = ACTIONS(2199), - [anon_sym_STAR] = ACTIONS(1851), - [anon_sym_CARET] = ACTIONS(2201), - [anon_sym_AMP] = ACTIONS(2201), - [anon_sym_this] = ACTIONS(1263), + [anon_sym_checked] = ACTIONS(1317), + [anon_sym_BANG] = ACTIONS(1811), + [anon_sym_TILDE] = ACTIONS(1811), + [anon_sym_PLUS_PLUS] = ACTIONS(1811), + [anon_sym_DASH_DASH] = ACTIONS(1811), + [anon_sym_true] = ACTIONS(77), + [anon_sym_false] = ACTIONS(77), + [anon_sym_PLUS] = ACTIONS(1809), + [anon_sym_DASH] = ACTIONS(1809), + [anon_sym_STAR] = ACTIONS(1813), + [anon_sym_CARET] = ACTIONS(1811), + [anon_sym_AMP] = ACTIONS(1811), + [anon_sym_this] = ACTIONS(1321), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1265), + [anon_sym_base] = ACTIONS(1323), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1267), - [anon_sym_unchecked] = ACTIONS(1253), + [sym_predefined_type] = ACTIONS(91), + [anon_sym_unchecked] = ACTIONS(1317), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1269), - [anon_sym_throw] = ACTIONS(2203), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(1815), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2205), - [anon_sym_DOT_DOT] = ACTIONS(2207), + [anon_sym_await] = ACTIONS(1817), + [anon_sym_DOT_DOT] = ACTIONS(1819), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -282061,19 +281947,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1277), - [anon_sym_sizeof] = ACTIONS(1279), - [anon_sym_typeof] = ACTIONS(1281), - [anon_sym___makeref] = ACTIONS(1283), - [anon_sym___reftype] = ACTIONS(1285), - [anon_sym___refvalue] = ACTIONS(1287), - [sym_null_literal] = ACTIONS(1289), - [anon_sym_SQUOTE] = ACTIONS(1291), - [sym_integer_literal] = ACTIONS(1289), - [sym_real_literal] = ACTIONS(1293), - [anon_sym_DQUOTE] = ACTIONS(1295), - [sym_verbatim_string_literal] = ACTIONS(1293), - [aux_sym_preproc_if_token1] = ACTIONS(1297), + [anon_sym_stackalloc] = ACTIONS(1331), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(1333), + [anon_sym___reftype] = ACTIONS(1335), + [anon_sym___refvalue] = ACTIONS(1337), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_literal] = ACTIONS(143), + [anon_sym_DQUOTE] = ACTIONS(145), + [sym_verbatim_string_literal] = ACTIONS(143), + [aux_sym_preproc_if_token1] = ACTIONS(1339), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -282084,90 +281970,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1299), - [sym_interpolation_verbatim_start] = ACTIONS(1301), - [sym_interpolation_raw_start] = ACTIONS(1303), - [sym_raw_string_start] = ACTIONS(1305), + [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(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2914), - [sym__name] = STATE(5885), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2357), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(5705), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(2899), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3080), - [sym_postfix_unary_expression] = STATE(3111), - [sym_prefix_unary_expression] = STATE(3111), - [sym__pointer_indirection_expression] = STATE(2913), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6154), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3080), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3111), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2913), - [sym_interpolated_string_expression] = STATE(3080), - [sym_member_access_expression] = STATE(2913), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3111), - [sym__parenthesized_lvalue_expression] = STATE(2913), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7530), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(3080), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3080), - [sym_typeof_expression] = STATE(3080), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2913), - [sym_literal] = STATE(3080), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2816), + [sym__name] = STATE(5895), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2376), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(4894), + [sym_non_lvalue_expression] = STATE(3495), + [sym_lvalue_expression] = STATE(3512), + [sym__expression_statement_expression] = STATE(3462), + [sym_assignment_expression] = STATE(3497), + [sym_binary_expression] = STATE(3462), + [sym_postfix_unary_expression] = STATE(3497), + [sym_prefix_unary_expression] = STATE(3497), + [sym__pointer_indirection_expression] = STATE(2815), + [sym_query_expression] = STATE(3462), + [sym_from_clause] = STATE(6167), + [sym_conditional_expression] = STATE(3462), + [sym_conditional_access_expression] = STATE(3462), + [sym_as_expression] = STATE(3462), + [sym_is_expression] = STATE(3462), + [sym_is_pattern_expression] = STATE(3462), + [sym_cast_expression] = STATE(3462), + [sym_checked_expression] = STATE(3462), + [sym_invocation_expression] = STATE(3497), + [sym_switch_expression] = STATE(3462), + [sym_await_expression] = STATE(3497), + [sym_throw_expression] = STATE(3462), + [sym_element_access_expression] = STATE(2815), + [sym_interpolated_string_expression] = STATE(3462), + [sym_member_access_expression] = STATE(2815), + [sym_object_creation_expression] = STATE(3497), + [sym_parenthesized_expression] = STATE(3497), + [sym__parenthesized_lvalue_expression] = STATE(2815), + [sym_lambda_expression] = STATE(3462), + [sym__lambda_expression_init] = STATE(7716), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3462), + [sym_anonymous_method_expression] = STATE(3462), + [sym_anonymous_object_creation_expression] = STATE(3462), + [sym_implicit_array_creation_expression] = STATE(3462), + [sym_implicit_object_creation_expression] = STATE(3462), + [sym_implicit_stackalloc_expression] = STATE(3462), + [sym_initializer_expression] = STATE(3462), + [sym_default_expression] = STATE(3462), + [sym_with_expression] = STATE(3462), + [sym_sizeof_expression] = STATE(3462), + [sym_typeof_expression] = STATE(3462), + [sym_makeref_expression] = STATE(3462), + [sym_ref_expression] = STATE(3462), + [sym_reftype_expression] = STATE(3462), + [sym_refvalue_expression] = STATE(3462), + [sym_stackalloc_expression] = STATE(3462), + [sym_range_expression] = STATE(3462), + [sym_tuple_expression] = STATE(2815), + [sym_literal] = STATE(3462), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3462), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(1422), [sym_preproc_endregion] = STATE(1422), [sym_preproc_line] = STATE(1422), @@ -282177,47 +282063,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(3067), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), [aux_sym__lambda_expression_init_repeat1] = STATE(3367), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1627), - [anon_sym_LPAREN] = ACTIONS(2939), - [anon_sym_ref] = ACTIONS(661), - [anon_sym_LBRACE] = ACTIONS(1487), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1305), + [anon_sym_LPAREN] = ACTIONS(1803), + [anon_sym_ref] = ACTIONS(1805), + [anon_sym_LBRACE] = ACTIONS(1311), + [anon_sym_delegate] = ACTIONS(1313), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1061), + [anon_sym_new] = ACTIONS(1807), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = 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_checked] = ACTIONS(1317), + [anon_sym_BANG] = ACTIONS(1811), + [anon_sym_TILDE] = ACTIONS(1811), + [anon_sym_PLUS_PLUS] = ACTIONS(1811), + [anon_sym_DASH_DASH] = ACTIONS(1811), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1585), - [anon_sym_DASH] = ACTIONS(1585), - [anon_sym_STAR] = ACTIONS(1737), - [anon_sym_CARET] = ACTIONS(1587), - [anon_sym_AMP] = ACTIONS(1587), - [anon_sym_this] = ACTIONS(1649), + [anon_sym_PLUS] = ACTIONS(1809), + [anon_sym_DASH] = ACTIONS(1809), + [anon_sym_STAR] = ACTIONS(1813), + [anon_sym_CARET] = ACTIONS(1811), + [anon_sym_AMP] = ACTIONS(1811), + [anon_sym_this] = ACTIONS(1321), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), + [anon_sym_base] = ACTIONS(1323), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1653), - [anon_sym_unchecked] = ACTIONS(1067), + [sym_predefined_type] = ACTIONS(91), + [anon_sym_unchecked] = ACTIONS(1317), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1589), + [anon_sym_throw] = ACTIONS(1815), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1591), - [anon_sym_DOT_DOT] = ACTIONS(123), + [anon_sym_await] = ACTIONS(1817), + [anon_sym_DOT_DOT] = ACTIONS(1819), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -282230,19 +282116,19 @@ static const uint16_t ts_parse_table[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(1331), [anon_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(1333), + [anon_sym___reftype] = ACTIONS(1335), + [anon_sym___refvalue] = ACTIONS(1337), [sym_null_literal] = ACTIONS(139), [anon_sym_SQUOTE] = ACTIONS(141), [sym_integer_literal] = ACTIONS(139), [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1089), + [aux_sym_preproc_if_token1] = ACTIONS(1339), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -282259,84 +282145,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [1423] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2762), - [sym__name] = STATE(5910), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2204), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(3163), - [sym_non_lvalue_expression] = STATE(3438), - [sym_lvalue_expression] = STATE(3162), - [sym__expression_statement_expression] = STATE(3362), - [sym_assignment_expression] = STATE(3449), - [sym_binary_expression] = STATE(3362), - [sym_postfix_unary_expression] = STATE(3449), - [sym_prefix_unary_expression] = STATE(3449), - [sym__pointer_indirection_expression] = STATE(2747), - [sym_query_expression] = STATE(3362), - [sym_from_clause] = STATE(6171), - [sym_conditional_expression] = STATE(3362), - [sym_conditional_access_expression] = STATE(3362), - [sym_as_expression] = STATE(3362), - [sym_is_expression] = STATE(3362), - [sym_is_pattern_expression] = STATE(3362), - [sym_cast_expression] = STATE(3362), - [sym_checked_expression] = STATE(3362), - [sym_invocation_expression] = STATE(3449), - [sym_switch_expression] = STATE(3362), - [sym_await_expression] = STATE(3449), - [sym_throw_expression] = STATE(3362), - [sym_element_access_expression] = STATE(2747), - [sym_interpolated_string_expression] = STATE(3362), - [sym_member_access_expression] = STATE(2747), - [sym_object_creation_expression] = STATE(3449), - [sym_parenthesized_expression] = STATE(3449), - [sym__parenthesized_lvalue_expression] = STATE(2747), - [sym_lambda_expression] = STATE(3362), - [sym__lambda_expression_init] = STATE(7320), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3362), - [sym_anonymous_method_expression] = STATE(3362), - [sym_anonymous_object_creation_expression] = STATE(3362), - [sym_implicit_array_creation_expression] = STATE(3362), - [sym_implicit_object_creation_expression] = STATE(3362), - [sym_implicit_stackalloc_expression] = STATE(3362), - [sym_initializer_expression] = STATE(3362), - [sym_default_expression] = STATE(3362), - [sym_with_expression] = STATE(3362), - [sym_sizeof_expression] = STATE(3362), - [sym_typeof_expression] = STATE(3362), - [sym_makeref_expression] = STATE(3362), - [sym_ref_expression] = STATE(3362), - [sym_reftype_expression] = STATE(3362), - [sym_refvalue_expression] = STATE(3362), - [sym_stackalloc_expression] = STATE(3362), - [sym_range_expression] = STATE(3362), - [sym_tuple_expression] = STATE(2747), - [sym_literal] = STATE(3362), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3362), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2816), + [sym__name] = STATE(5895), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2376), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(4895), + [sym_non_lvalue_expression] = STATE(3495), + [sym_lvalue_expression] = STATE(3512), + [sym__expression_statement_expression] = STATE(3462), + [sym_assignment_expression] = STATE(3497), + [sym_binary_expression] = STATE(3462), + [sym_postfix_unary_expression] = STATE(3497), + [sym_prefix_unary_expression] = STATE(3497), + [sym__pointer_indirection_expression] = STATE(2815), + [sym_query_expression] = STATE(3462), + [sym_from_clause] = STATE(6167), + [sym_conditional_expression] = STATE(3462), + [sym_conditional_access_expression] = STATE(3462), + [sym_as_expression] = STATE(3462), + [sym_is_expression] = STATE(3462), + [sym_is_pattern_expression] = STATE(3462), + [sym_cast_expression] = STATE(3462), + [sym_checked_expression] = STATE(3462), + [sym_invocation_expression] = STATE(3497), + [sym_switch_expression] = STATE(3462), + [sym_await_expression] = STATE(3497), + [sym_throw_expression] = STATE(3462), + [sym_element_access_expression] = STATE(2815), + [sym_interpolated_string_expression] = STATE(3462), + [sym_member_access_expression] = STATE(2815), + [sym_object_creation_expression] = STATE(3497), + [sym_parenthesized_expression] = STATE(3497), + [sym__parenthesized_lvalue_expression] = STATE(2815), + [sym_lambda_expression] = STATE(3462), + [sym__lambda_expression_init] = STATE(7716), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3462), + [sym_anonymous_method_expression] = STATE(3462), + [sym_anonymous_object_creation_expression] = STATE(3462), + [sym_implicit_array_creation_expression] = STATE(3462), + [sym_implicit_object_creation_expression] = STATE(3462), + [sym_implicit_stackalloc_expression] = STATE(3462), + [sym_initializer_expression] = STATE(3462), + [sym_default_expression] = STATE(3462), + [sym_with_expression] = STATE(3462), + [sym_sizeof_expression] = STATE(3462), + [sym_typeof_expression] = STATE(3462), + [sym_makeref_expression] = STATE(3462), + [sym_ref_expression] = STATE(3462), + [sym_reftype_expression] = STATE(3462), + [sym_refvalue_expression] = STATE(3462), + [sym_stackalloc_expression] = STATE(3462), + [sym_range_expression] = STATE(3462), + [sym_tuple_expression] = STATE(2815), + [sym_literal] = STATE(3462), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3462), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(1423), [sym_preproc_endregion] = STATE(1423), [sym_preproc_line] = STATE(1423), @@ -282346,47 +282232,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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3385), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3367), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1307), - [anon_sym_LPAREN] = ACTIONS(1343), - [anon_sym_ref] = ACTIONS(1345), - [anon_sym_LBRACE] = ACTIONS(1313), - [anon_sym_delegate] = ACTIONS(1315), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1305), + [anon_sym_LPAREN] = ACTIONS(1803), + [anon_sym_ref] = ACTIONS(1805), + [anon_sym_LBRACE] = ACTIONS(1311), + [anon_sym_delegate] = ACTIONS(1313), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1317), + [anon_sym_new] = ACTIONS(1807), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1319), - [anon_sym_BANG] = ACTIONS(1349), - [anon_sym_TILDE] = ACTIONS(1349), - [anon_sym_PLUS_PLUS] = ACTIONS(1349), - [anon_sym_DASH_DASH] = ACTIONS(1349), + [anon_sym_checked] = ACTIONS(1317), + [anon_sym_BANG] = ACTIONS(1811), + [anon_sym_TILDE] = ACTIONS(1811), + [anon_sym_PLUS_PLUS] = ACTIONS(1811), + [anon_sym_DASH_DASH] = ACTIONS(1811), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1347), - [anon_sym_DASH] = ACTIONS(1347), - [anon_sym_STAR] = ACTIONS(1351), - [anon_sym_CARET] = ACTIONS(1349), - [anon_sym_AMP] = ACTIONS(1349), - [anon_sym_this] = ACTIONS(1323), + [anon_sym_PLUS] = ACTIONS(1809), + [anon_sym_DASH] = ACTIONS(1809), + [anon_sym_STAR] = ACTIONS(1813), + [anon_sym_CARET] = ACTIONS(1811), + [anon_sym_AMP] = ACTIONS(1811), + [anon_sym_this] = ACTIONS(1321), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1325), + [anon_sym_base] = ACTIONS(1323), [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1319), + [anon_sym_unchecked] = ACTIONS(1317), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1353), + [anon_sym_throw] = ACTIONS(1815), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1355), - [anon_sym_DOT_DOT] = ACTIONS(1357), + [anon_sym_await] = ACTIONS(1817), + [anon_sym_DOT_DOT] = ACTIONS(1819), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -282399,19 +282285,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1333), + [anon_sym_stackalloc] = ACTIONS(1331), [anon_sym_sizeof] = ACTIONS(129), [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(1335), - [anon_sym___reftype] = ACTIONS(1337), - [anon_sym___refvalue] = ACTIONS(1339), + [anon_sym___makeref] = ACTIONS(1333), + [anon_sym___reftype] = ACTIONS(1335), + [anon_sym___refvalue] = ACTIONS(1337), [sym_null_literal] = ACTIONS(139), [anon_sym_SQUOTE] = ACTIONS(141), [sym_integer_literal] = ACTIONS(139), [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1341), + [aux_sym_preproc_if_token1] = ACTIONS(1339), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -282428,84 +282314,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [1424] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2610), - [sym__name] = STATE(5898), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2197), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(4577), - [sym_non_lvalue_expression] = STATE(3277), - [sym_lvalue_expression] = STATE(3413), - [sym__expression_statement_expression] = STATE(3228), - [sym_assignment_expression] = STATE(3289), - [sym_binary_expression] = STATE(3228), - [sym_postfix_unary_expression] = STATE(3289), - [sym_prefix_unary_expression] = STATE(3289), - [sym__pointer_indirection_expression] = STATE(2609), - [sym_query_expression] = STATE(3228), - [sym_from_clause] = STATE(6160), - [sym_conditional_expression] = STATE(3228), - [sym_conditional_access_expression] = STATE(3228), - [sym_as_expression] = STATE(3228), - [sym_is_expression] = STATE(3228), - [sym_is_pattern_expression] = STATE(3228), - [sym_cast_expression] = STATE(3228), - [sym_checked_expression] = STATE(3228), - [sym_invocation_expression] = STATE(3289), - [sym_switch_expression] = STATE(3228), - [sym_await_expression] = STATE(3289), - [sym_throw_expression] = STATE(3228), - [sym_element_access_expression] = STATE(2609), - [sym_interpolated_string_expression] = STATE(3228), - [sym_member_access_expression] = STATE(2609), - [sym_object_creation_expression] = STATE(3289), - [sym_parenthesized_expression] = STATE(3289), - [sym__parenthesized_lvalue_expression] = STATE(2609), - [sym_lambda_expression] = STATE(3228), - [sym__lambda_expression_init] = STATE(7523), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3228), - [sym_anonymous_method_expression] = STATE(3228), - [sym_anonymous_object_creation_expression] = STATE(3228), - [sym_implicit_array_creation_expression] = STATE(3228), - [sym_implicit_object_creation_expression] = STATE(3228), - [sym_implicit_stackalloc_expression] = STATE(3228), - [sym_initializer_expression] = STATE(3228), - [sym_default_expression] = STATE(3228), - [sym_with_expression] = STATE(3228), - [sym_sizeof_expression] = STATE(3228), - [sym_typeof_expression] = STATE(3228), - [sym_makeref_expression] = STATE(3228), - [sym_ref_expression] = STATE(3228), - [sym_reftype_expression] = STATE(3228), - [sym_refvalue_expression] = STATE(3228), - [sym_stackalloc_expression] = STATE(3228), - [sym_range_expression] = STATE(3228), - [sym_tuple_expression] = STATE(2609), - [sym_literal] = STATE(3228), - [sym_character_literal] = STATE(3278), - [sym_string_literal] = STATE(3278), - [sym_raw_string_literal] = STATE(3278), - [sym_boolean_literal] = STATE(3278), - [sym_identifier] = STATE(2267), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3228), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2816), + [sym__name] = STATE(5895), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2376), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(4896), + [sym_non_lvalue_expression] = STATE(3495), + [sym_lvalue_expression] = STATE(3512), + [sym__expression_statement_expression] = STATE(3462), + [sym_assignment_expression] = STATE(3497), + [sym_binary_expression] = STATE(3462), + [sym_postfix_unary_expression] = STATE(3497), + [sym_prefix_unary_expression] = STATE(3497), + [sym__pointer_indirection_expression] = STATE(2815), + [sym_query_expression] = STATE(3462), + [sym_from_clause] = STATE(6167), + [sym_conditional_expression] = STATE(3462), + [sym_conditional_access_expression] = STATE(3462), + [sym_as_expression] = STATE(3462), + [sym_is_expression] = STATE(3462), + [sym_is_pattern_expression] = STATE(3462), + [sym_cast_expression] = STATE(3462), + [sym_checked_expression] = STATE(3462), + [sym_invocation_expression] = STATE(3497), + [sym_switch_expression] = STATE(3462), + [sym_await_expression] = STATE(3497), + [sym_throw_expression] = STATE(3462), + [sym_element_access_expression] = STATE(2815), + [sym_interpolated_string_expression] = STATE(3462), + [sym_member_access_expression] = STATE(2815), + [sym_object_creation_expression] = STATE(3497), + [sym_parenthesized_expression] = STATE(3497), + [sym__parenthesized_lvalue_expression] = STATE(2815), + [sym_lambda_expression] = STATE(3462), + [sym__lambda_expression_init] = STATE(7716), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3462), + [sym_anonymous_method_expression] = STATE(3462), + [sym_anonymous_object_creation_expression] = STATE(3462), + [sym_implicit_array_creation_expression] = STATE(3462), + [sym_implicit_object_creation_expression] = STATE(3462), + [sym_implicit_stackalloc_expression] = STATE(3462), + [sym_initializer_expression] = STATE(3462), + [sym_default_expression] = STATE(3462), + [sym_with_expression] = STATE(3462), + [sym_sizeof_expression] = STATE(3462), + [sym_typeof_expression] = STATE(3462), + [sym_makeref_expression] = STATE(3462), + [sym_ref_expression] = STATE(3462), + [sym_reftype_expression] = STATE(3462), + [sym_refvalue_expression] = STATE(3462), + [sym_stackalloc_expression] = STATE(3462), + [sym_range_expression] = STATE(3462), + [sym_tuple_expression] = STATE(2815), + [sym_literal] = STATE(3462), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3462), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(1424), [sym_preproc_endregion] = STATE(1424), [sym_preproc_line] = STATE(1424), @@ -282515,47 +282401,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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3396), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3367), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1153), - [anon_sym_LPAREN] = ACTIONS(1593), - [anon_sym_ref] = ACTIONS(1595), - [anon_sym_LBRACE] = ACTIONS(1159), - [anon_sym_delegate] = ACTIONS(1161), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1305), + [anon_sym_LPAREN] = ACTIONS(1803), + [anon_sym_ref] = ACTIONS(1805), + [anon_sym_LBRACE] = ACTIONS(1311), + [anon_sym_delegate] = ACTIONS(1313), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1163), + [anon_sym_new] = ACTIONS(1807), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1167), - [anon_sym_BANG] = ACTIONS(1599), - [anon_sym_TILDE] = ACTIONS(1599), - [anon_sym_PLUS_PLUS] = ACTIONS(1599), - [anon_sym_DASH_DASH] = ACTIONS(1599), - [anon_sym_true] = ACTIONS(1173), - [anon_sym_false] = ACTIONS(1173), - [anon_sym_PLUS] = ACTIONS(1597), - [anon_sym_DASH] = ACTIONS(1597), - [anon_sym_STAR] = ACTIONS(1601), - [anon_sym_CARET] = ACTIONS(1599), - [anon_sym_AMP] = ACTIONS(1599), - [anon_sym_this] = ACTIONS(1177), + [anon_sym_checked] = ACTIONS(1317), + [anon_sym_BANG] = ACTIONS(1811), + [anon_sym_TILDE] = ACTIONS(1811), + [anon_sym_PLUS_PLUS] = ACTIONS(1811), + [anon_sym_DASH_DASH] = ACTIONS(1811), + [anon_sym_true] = ACTIONS(77), + [anon_sym_false] = ACTIONS(77), + [anon_sym_PLUS] = ACTIONS(1809), + [anon_sym_DASH] = ACTIONS(1809), + [anon_sym_STAR] = ACTIONS(1813), + [anon_sym_CARET] = ACTIONS(1811), + [anon_sym_AMP] = ACTIONS(1811), + [anon_sym_this] = ACTIONS(1321), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1179), + [anon_sym_base] = ACTIONS(1323), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1181), - [anon_sym_unchecked] = ACTIONS(1167), + [sym_predefined_type] = ACTIONS(91), + [anon_sym_unchecked] = ACTIONS(1317), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1183), - [anon_sym_throw] = ACTIONS(1603), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(1815), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1605), - [anon_sym_DOT_DOT] = ACTIONS(1607), + [anon_sym_await] = ACTIONS(1817), + [anon_sym_DOT_DOT] = ACTIONS(1819), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -282568,19 +282454,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1191), - [anon_sym_sizeof] = ACTIONS(1193), - [anon_sym_typeof] = ACTIONS(1195), - [anon_sym___makeref] = ACTIONS(1197), - [anon_sym___reftype] = ACTIONS(1199), - [anon_sym___refvalue] = ACTIONS(1201), - [sym_null_literal] = ACTIONS(1203), - [anon_sym_SQUOTE] = ACTIONS(1205), - [sym_integer_literal] = ACTIONS(1203), - [sym_real_literal] = ACTIONS(1207), - [anon_sym_DQUOTE] = ACTIONS(1209), - [sym_verbatim_string_literal] = ACTIONS(1207), - [aux_sym_preproc_if_token1] = ACTIONS(1211), + [anon_sym_stackalloc] = ACTIONS(1331), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(1333), + [anon_sym___reftype] = ACTIONS(1335), + [anon_sym___refvalue] = ACTIONS(1337), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_literal] = ACTIONS(143), + [anon_sym_DQUOTE] = ACTIONS(145), + [sym_verbatim_string_literal] = ACTIONS(143), + [aux_sym_preproc_if_token1] = ACTIONS(1339), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -282591,90 +282477,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1213), - [sym_interpolation_verbatim_start] = ACTIONS(1215), - [sym_interpolation_raw_start] = ACTIONS(1217), - [sym_raw_string_start] = ACTIONS(1219), + [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(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(5160), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2204), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(4561), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3461), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3080), - [sym_postfix_unary_expression] = STATE(3111), - [sym_prefix_unary_expression] = STATE(3111), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6154), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3080), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3111), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3080), - [sym_member_access_expression] = STATE(2484), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3111), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7547), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(3080), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3080), - [sym_typeof_expression] = STATE(3080), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2484), - [sym_literal] = STATE(3080), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2816), + [sym__name] = STATE(5895), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2376), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(4898), + [sym_non_lvalue_expression] = STATE(3495), + [sym_lvalue_expression] = STATE(3512), + [sym__expression_statement_expression] = STATE(3462), + [sym_assignment_expression] = STATE(3497), + [sym_binary_expression] = STATE(3462), + [sym_postfix_unary_expression] = STATE(3497), + [sym_prefix_unary_expression] = STATE(3497), + [sym__pointer_indirection_expression] = STATE(2815), + [sym_query_expression] = STATE(3462), + [sym_from_clause] = STATE(6167), + [sym_conditional_expression] = STATE(3462), + [sym_conditional_access_expression] = STATE(3462), + [sym_as_expression] = STATE(3462), + [sym_is_expression] = STATE(3462), + [sym_is_pattern_expression] = STATE(3462), + [sym_cast_expression] = STATE(3462), + [sym_checked_expression] = STATE(3462), + [sym_invocation_expression] = STATE(3497), + [sym_switch_expression] = STATE(3462), + [sym_await_expression] = STATE(3497), + [sym_throw_expression] = STATE(3462), + [sym_element_access_expression] = STATE(2815), + [sym_interpolated_string_expression] = STATE(3462), + [sym_member_access_expression] = STATE(2815), + [sym_object_creation_expression] = STATE(3497), + [sym_parenthesized_expression] = STATE(3497), + [sym__parenthesized_lvalue_expression] = STATE(2815), + [sym_lambda_expression] = STATE(3462), + [sym__lambda_expression_init] = STATE(7716), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3462), + [sym_anonymous_method_expression] = STATE(3462), + [sym_anonymous_object_creation_expression] = STATE(3462), + [sym_implicit_array_creation_expression] = STATE(3462), + [sym_implicit_object_creation_expression] = STATE(3462), + [sym_implicit_stackalloc_expression] = STATE(3462), + [sym_initializer_expression] = STATE(3462), + [sym_default_expression] = STATE(3462), + [sym_with_expression] = STATE(3462), + [sym_sizeof_expression] = STATE(3462), + [sym_typeof_expression] = STATE(3462), + [sym_makeref_expression] = STATE(3462), + [sym_ref_expression] = STATE(3462), + [sym_reftype_expression] = STATE(3462), + [sym_refvalue_expression] = STATE(3462), + [sym_stackalloc_expression] = STATE(3462), + [sym_range_expression] = STATE(3462), + [sym_tuple_expression] = STATE(2815), + [sym_literal] = STATE(3462), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3462), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(1425), [sym_preproc_endregion] = STATE(1425), [sym_preproc_line] = STATE(1425), @@ -282684,47 +282570,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(3067), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), [aux_sym__lambda_expression_init_repeat1] = STATE(3367), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1481), - [anon_sym_LPAREN] = ACTIONS(1497), - [anon_sym_ref] = ACTIONS(1499), - [anon_sym_LBRACE] = ACTIONS(1487), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1305), + [anon_sym_LPAREN] = ACTIONS(1803), + [anon_sym_ref] = ACTIONS(1805), + [anon_sym_LBRACE] = ACTIONS(1311), + [anon_sym_delegate] = ACTIONS(1313), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1501), + [anon_sym_new] = ACTIONS(1807), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = 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_checked] = ACTIONS(1317), + [anon_sym_BANG] = ACTIONS(1811), + [anon_sym_TILDE] = ACTIONS(1811), + [anon_sym_PLUS_PLUS] = ACTIONS(1811), + [anon_sym_DASH_DASH] = ACTIONS(1811), [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(1809), + [anon_sym_DASH] = ACTIONS(1809), + [anon_sym_STAR] = ACTIONS(1813), + [anon_sym_CARET] = ACTIONS(1811), + [anon_sym_AMP] = ACTIONS(1811), + [anon_sym_this] = ACTIONS(1321), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), + [anon_sym_base] = ACTIONS(1323), [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1067), + [anon_sym_unchecked] = ACTIONS(1317), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1503), + [anon_sym_throw] = ACTIONS(1815), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1505), - [anon_sym_DOT_DOT] = ACTIONS(1507), + [anon_sym_await] = ACTIONS(1817), + [anon_sym_DOT_DOT] = ACTIONS(1819), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -282737,19 +282623,19 @@ static const uint16_t ts_parse_table[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(1331), [anon_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(1333), + [anon_sym___reftype] = ACTIONS(1335), + [anon_sym___refvalue] = ACTIONS(1337), [sym_null_literal] = ACTIONS(139), [anon_sym_SQUOTE] = ACTIONS(141), [sym_integer_literal] = ACTIONS(139), [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1089), + [aux_sym_preproc_if_token1] = ACTIONS(1339), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -282766,84 +282652,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [1426] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2610), - [sym__name] = STATE(5898), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2197), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(4765), - [sym_non_lvalue_expression] = STATE(3277), - [sym_lvalue_expression] = STATE(3413), - [sym__expression_statement_expression] = STATE(3228), - [sym_assignment_expression] = STATE(3289), - [sym_binary_expression] = STATE(3228), - [sym_postfix_unary_expression] = STATE(3289), - [sym_prefix_unary_expression] = STATE(3289), - [sym__pointer_indirection_expression] = STATE(2609), - [sym_query_expression] = STATE(3228), - [sym_from_clause] = STATE(6160), - [sym_conditional_expression] = STATE(3228), - [sym_conditional_access_expression] = STATE(3228), - [sym_as_expression] = STATE(3228), - [sym_is_expression] = STATE(3228), - [sym_is_pattern_expression] = STATE(3228), - [sym_cast_expression] = STATE(3228), - [sym_checked_expression] = STATE(3228), - [sym_invocation_expression] = STATE(3289), - [sym_switch_expression] = STATE(3228), - [sym_await_expression] = STATE(3289), - [sym_throw_expression] = STATE(3228), - [sym_element_access_expression] = STATE(2609), - [sym_interpolated_string_expression] = STATE(3228), - [sym_member_access_expression] = STATE(2609), - [sym_object_creation_expression] = STATE(3289), - [sym_parenthesized_expression] = STATE(3289), - [sym__parenthesized_lvalue_expression] = STATE(2609), - [sym_lambda_expression] = STATE(3228), - [sym__lambda_expression_init] = STATE(7523), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3228), - [sym_anonymous_method_expression] = STATE(3228), - [sym_anonymous_object_creation_expression] = STATE(3228), - [sym_implicit_array_creation_expression] = STATE(3228), - [sym_implicit_object_creation_expression] = STATE(3228), - [sym_implicit_stackalloc_expression] = STATE(3228), - [sym_initializer_expression] = STATE(3228), - [sym_default_expression] = STATE(3228), - [sym_with_expression] = STATE(3228), - [sym_sizeof_expression] = STATE(3228), - [sym_typeof_expression] = STATE(3228), - [sym_makeref_expression] = STATE(3228), - [sym_ref_expression] = STATE(3228), - [sym_reftype_expression] = STATE(3228), - [sym_refvalue_expression] = STATE(3228), - [sym_stackalloc_expression] = STATE(3228), - [sym_range_expression] = STATE(3228), - [sym_tuple_expression] = STATE(2609), - [sym_literal] = STATE(3228), - [sym_character_literal] = STATE(3278), - [sym_string_literal] = STATE(3278), - [sym_raw_string_literal] = STATE(3278), - [sym_boolean_literal] = STATE(3278), - [sym_identifier] = STATE(2267), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3228), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2816), + [sym__name] = STATE(5895), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2376), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(4899), + [sym_non_lvalue_expression] = STATE(3495), + [sym_lvalue_expression] = STATE(3512), + [sym__expression_statement_expression] = STATE(3462), + [sym_assignment_expression] = STATE(3497), + [sym_binary_expression] = STATE(3462), + [sym_postfix_unary_expression] = STATE(3497), + [sym_prefix_unary_expression] = STATE(3497), + [sym__pointer_indirection_expression] = STATE(2815), + [sym_query_expression] = STATE(3462), + [sym_from_clause] = STATE(6167), + [sym_conditional_expression] = STATE(3462), + [sym_conditional_access_expression] = STATE(3462), + [sym_as_expression] = STATE(3462), + [sym_is_expression] = STATE(3462), + [sym_is_pattern_expression] = STATE(3462), + [sym_cast_expression] = STATE(3462), + [sym_checked_expression] = STATE(3462), + [sym_invocation_expression] = STATE(3497), + [sym_switch_expression] = STATE(3462), + [sym_await_expression] = STATE(3497), + [sym_throw_expression] = STATE(3462), + [sym_element_access_expression] = STATE(2815), + [sym_interpolated_string_expression] = STATE(3462), + [sym_member_access_expression] = STATE(2815), + [sym_object_creation_expression] = STATE(3497), + [sym_parenthesized_expression] = STATE(3497), + [sym__parenthesized_lvalue_expression] = STATE(2815), + [sym_lambda_expression] = STATE(3462), + [sym__lambda_expression_init] = STATE(7716), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3462), + [sym_anonymous_method_expression] = STATE(3462), + [sym_anonymous_object_creation_expression] = STATE(3462), + [sym_implicit_array_creation_expression] = STATE(3462), + [sym_implicit_object_creation_expression] = STATE(3462), + [sym_implicit_stackalloc_expression] = STATE(3462), + [sym_initializer_expression] = STATE(3462), + [sym_default_expression] = STATE(3462), + [sym_with_expression] = STATE(3462), + [sym_sizeof_expression] = STATE(3462), + [sym_typeof_expression] = STATE(3462), + [sym_makeref_expression] = STATE(3462), + [sym_ref_expression] = STATE(3462), + [sym_reftype_expression] = STATE(3462), + [sym_refvalue_expression] = STATE(3462), + [sym_stackalloc_expression] = STATE(3462), + [sym_range_expression] = STATE(3462), + [sym_tuple_expression] = STATE(2815), + [sym_literal] = STATE(3462), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3462), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(1426), [sym_preproc_endregion] = STATE(1426), [sym_preproc_line] = STATE(1426), @@ -282853,47 +282739,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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3396), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3367), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1153), - [anon_sym_LPAREN] = ACTIONS(1593), - [anon_sym_ref] = ACTIONS(1595), - [anon_sym_LBRACE] = ACTIONS(1159), - [anon_sym_delegate] = ACTIONS(1161), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1305), + [anon_sym_LPAREN] = ACTIONS(1803), + [anon_sym_ref] = ACTIONS(1805), + [anon_sym_LBRACE] = ACTIONS(1311), + [anon_sym_delegate] = ACTIONS(1313), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1163), + [anon_sym_new] = ACTIONS(1807), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1167), - [anon_sym_BANG] = ACTIONS(1599), - [anon_sym_TILDE] = ACTIONS(1599), - [anon_sym_PLUS_PLUS] = ACTIONS(1599), - [anon_sym_DASH_DASH] = ACTIONS(1599), - [anon_sym_true] = ACTIONS(1173), - [anon_sym_false] = ACTIONS(1173), - [anon_sym_PLUS] = ACTIONS(1597), - [anon_sym_DASH] = ACTIONS(1597), - [anon_sym_STAR] = ACTIONS(1601), - [anon_sym_CARET] = ACTIONS(1599), - [anon_sym_AMP] = ACTIONS(1599), - [anon_sym_this] = ACTIONS(1177), + [anon_sym_checked] = ACTIONS(1317), + [anon_sym_BANG] = ACTIONS(1811), + [anon_sym_TILDE] = ACTIONS(1811), + [anon_sym_PLUS_PLUS] = ACTIONS(1811), + [anon_sym_DASH_DASH] = ACTIONS(1811), + [anon_sym_true] = ACTIONS(77), + [anon_sym_false] = ACTIONS(77), + [anon_sym_PLUS] = ACTIONS(1809), + [anon_sym_DASH] = ACTIONS(1809), + [anon_sym_STAR] = ACTIONS(1813), + [anon_sym_CARET] = ACTIONS(1811), + [anon_sym_AMP] = ACTIONS(1811), + [anon_sym_this] = ACTIONS(1321), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1179), + [anon_sym_base] = ACTIONS(1323), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1181), - [anon_sym_unchecked] = ACTIONS(1167), + [sym_predefined_type] = ACTIONS(91), + [anon_sym_unchecked] = ACTIONS(1317), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1183), - [anon_sym_throw] = ACTIONS(1603), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(1815), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1605), - [anon_sym_DOT_DOT] = ACTIONS(1607), + [anon_sym_await] = ACTIONS(1817), + [anon_sym_DOT_DOT] = ACTIONS(1819), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -282906,19 +282792,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1191), - [anon_sym_sizeof] = ACTIONS(1193), - [anon_sym_typeof] = ACTIONS(1195), - [anon_sym___makeref] = ACTIONS(1197), - [anon_sym___reftype] = ACTIONS(1199), - [anon_sym___refvalue] = ACTIONS(1201), - [sym_null_literal] = ACTIONS(1203), - [anon_sym_SQUOTE] = ACTIONS(1205), - [sym_integer_literal] = ACTIONS(1203), - [sym_real_literal] = ACTIONS(1207), - [anon_sym_DQUOTE] = ACTIONS(1209), - [sym_verbatim_string_literal] = ACTIONS(1207), - [aux_sym_preproc_if_token1] = ACTIONS(1211), + [anon_sym_stackalloc] = ACTIONS(1331), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(1333), + [anon_sym___reftype] = ACTIONS(1335), + [anon_sym___refvalue] = ACTIONS(1337), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_literal] = ACTIONS(143), + [anon_sym_DQUOTE] = ACTIONS(145), + [sym_verbatim_string_literal] = ACTIONS(143), + [aux_sym_preproc_if_token1] = ACTIONS(1339), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -282929,90 +282815,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1213), - [sym_interpolation_verbatim_start] = ACTIONS(1215), - [sym_interpolation_raw_start] = ACTIONS(1217), - [sym_raw_string_start] = ACTIONS(1219), + [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(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(5891), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2372), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(3543), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3653), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3080), - [sym_postfix_unary_expression] = STATE(3111), - [sym_prefix_unary_expression] = STATE(3111), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6158), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3080), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3111), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3080), - [sym_member_access_expression] = STATE(2484), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3111), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7448), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(3080), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3080), - [sym_typeof_expression] = STATE(3080), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2484), - [sym_literal] = STATE(3080), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2816), + [sym__name] = STATE(5895), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2376), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(3214), + [sym_non_lvalue_expression] = STATE(3495), + [sym_lvalue_expression] = STATE(3512), + [sym__expression_statement_expression] = STATE(3462), + [sym_assignment_expression] = STATE(3497), + [sym_binary_expression] = STATE(3462), + [sym_postfix_unary_expression] = STATE(3497), + [sym_prefix_unary_expression] = STATE(3497), + [sym__pointer_indirection_expression] = STATE(2815), + [sym_query_expression] = STATE(3462), + [sym_from_clause] = STATE(6167), + [sym_conditional_expression] = STATE(3462), + [sym_conditional_access_expression] = STATE(3462), + [sym_as_expression] = STATE(3462), + [sym_is_expression] = STATE(3462), + [sym_is_pattern_expression] = STATE(3462), + [sym_cast_expression] = STATE(3462), + [sym_checked_expression] = STATE(3462), + [sym_invocation_expression] = STATE(3497), + [sym_switch_expression] = STATE(3462), + [sym_await_expression] = STATE(3497), + [sym_throw_expression] = STATE(3462), + [sym_element_access_expression] = STATE(2815), + [sym_interpolated_string_expression] = STATE(3462), + [sym_member_access_expression] = STATE(2815), + [sym_object_creation_expression] = STATE(3497), + [sym_parenthesized_expression] = STATE(3497), + [sym__parenthesized_lvalue_expression] = STATE(2815), + [sym_lambda_expression] = STATE(3462), + [sym__lambda_expression_init] = STATE(7716), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3462), + [sym_anonymous_method_expression] = STATE(3462), + [sym_anonymous_object_creation_expression] = STATE(3462), + [sym_implicit_array_creation_expression] = STATE(3462), + [sym_implicit_object_creation_expression] = STATE(3462), + [sym_implicit_stackalloc_expression] = STATE(3462), + [sym_initializer_expression] = STATE(3462), + [sym_default_expression] = STATE(3462), + [sym_with_expression] = STATE(3462), + [sym_sizeof_expression] = STATE(3462), + [sym_typeof_expression] = STATE(3462), + [sym_makeref_expression] = STATE(3462), + [sym_ref_expression] = STATE(3462), + [sym_reftype_expression] = STATE(3462), + [sym_refvalue_expression] = STATE(3462), + [sym_stackalloc_expression] = STATE(3462), + [sym_range_expression] = STATE(3462), + [sym_tuple_expression] = STATE(2815), + [sym_literal] = STATE(3462), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3462), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(1427), [sym_preproc_endregion] = STATE(1427), [sym_preproc_line] = STATE(1427), @@ -283022,47 +282908,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(3067), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), [aux_sym__lambda_expression_init_repeat1] = STATE(3367), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1481), - [anon_sym_LPAREN] = ACTIONS(2159), - [anon_sym_ref] = ACTIONS(2161), - [anon_sym_LBRACE] = ACTIONS(1487), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1305), + [anon_sym_LPAREN] = ACTIONS(1803), + [anon_sym_ref] = ACTIONS(1805), + [anon_sym_LBRACE] = ACTIONS(1311), + [anon_sym_delegate] = ACTIONS(1313), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(2163), + [anon_sym_new] = ACTIONS(1807), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1067), - [anon_sym_BANG] = ACTIONS(2167), - [anon_sym_TILDE] = ACTIONS(2167), - [anon_sym_PLUS_PLUS] = ACTIONS(2167), - [anon_sym_DASH_DASH] = ACTIONS(2167), + [anon_sym_checked] = ACTIONS(1317), + [anon_sym_BANG] = ACTIONS(1811), + [anon_sym_TILDE] = ACTIONS(1811), + [anon_sym_PLUS_PLUS] = ACTIONS(1811), + [anon_sym_DASH_DASH] = ACTIONS(1811), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [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(83), + [anon_sym_PLUS] = ACTIONS(1809), + [anon_sym_DASH] = ACTIONS(1809), + [anon_sym_STAR] = ACTIONS(1813), + [anon_sym_CARET] = ACTIONS(1811), + [anon_sym_AMP] = ACTIONS(1811), + [anon_sym_this] = ACTIONS(1321), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), + [anon_sym_base] = ACTIONS(1323), [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1067), + [anon_sym_unchecked] = ACTIONS(1317), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(2171), + [anon_sym_throw] = ACTIONS(1815), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2173), - [anon_sym_DOT_DOT] = ACTIONS(2175), + [anon_sym_await] = ACTIONS(1817), + [anon_sym_DOT_DOT] = ACTIONS(1819), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -283075,19 +282961,19 @@ static const uint16_t ts_parse_table[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(1331), [anon_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(1333), + [anon_sym___reftype] = ACTIONS(1335), + [anon_sym___refvalue] = ACTIONS(1337), [sym_null_literal] = ACTIONS(139), [anon_sym_SQUOTE] = ACTIONS(141), [sym_integer_literal] = ACTIONS(139), [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1089), + [aux_sym_preproc_if_token1] = ACTIONS(1339), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -283104,84 +282990,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [1428] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2420), - [sym__name] = STATE(5888), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2384), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(5688), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(2447), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3080), - [sym_postfix_unary_expression] = STATE(3111), - [sym_prefix_unary_expression] = STATE(3111), - [sym__pointer_indirection_expression] = STATE(2423), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6154), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3080), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3111), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2423), - [sym_interpolated_string_expression] = STATE(3080), - [sym_member_access_expression] = STATE(2423), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3111), - [sym__parenthesized_lvalue_expression] = STATE(2423), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7530), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(3080), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3080), - [sym_typeof_expression] = STATE(3080), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2423), - [sym_literal] = STATE(3080), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2603), + [sym__name] = STATE(5862), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2193), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(4728), + [sym_non_lvalue_expression] = STATE(3220), + [sym_lvalue_expression] = STATE(3403), + [sym__expression_statement_expression] = STATE(3236), + [sym_assignment_expression] = STATE(3221), + [sym_binary_expression] = STATE(3236), + [sym_postfix_unary_expression] = STATE(3221), + [sym_prefix_unary_expression] = STATE(3221), + [sym__pointer_indirection_expression] = STATE(2602), + [sym_query_expression] = STATE(3236), + [sym_from_clause] = STATE(6145), + [sym_conditional_expression] = STATE(3236), + [sym_conditional_access_expression] = STATE(3236), + [sym_as_expression] = STATE(3236), + [sym_is_expression] = STATE(3236), + [sym_is_pattern_expression] = STATE(3236), + [sym_cast_expression] = STATE(3236), + [sym_checked_expression] = STATE(3236), + [sym_invocation_expression] = STATE(3221), + [sym_switch_expression] = STATE(3236), + [sym_await_expression] = STATE(3221), + [sym_throw_expression] = STATE(3236), + [sym_element_access_expression] = STATE(2602), + [sym_interpolated_string_expression] = STATE(3236), + [sym_member_access_expression] = STATE(2602), + [sym_object_creation_expression] = STATE(3221), + [sym_parenthesized_expression] = STATE(3221), + [sym__parenthesized_lvalue_expression] = STATE(2602), + [sym_lambda_expression] = STATE(3236), + [sym__lambda_expression_init] = STATE(7639), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3236), + [sym_anonymous_method_expression] = STATE(3236), + [sym_anonymous_object_creation_expression] = STATE(3236), + [sym_implicit_array_creation_expression] = STATE(3236), + [sym_implicit_object_creation_expression] = STATE(3236), + [sym_implicit_stackalloc_expression] = STATE(3236), + [sym_initializer_expression] = STATE(3236), + [sym_default_expression] = STATE(3236), + [sym_with_expression] = STATE(3236), + [sym_sizeof_expression] = STATE(3236), + [sym_typeof_expression] = STATE(3236), + [sym_makeref_expression] = STATE(3236), + [sym_ref_expression] = STATE(3236), + [sym_reftype_expression] = STATE(3236), + [sym_refvalue_expression] = STATE(3236), + [sym_stackalloc_expression] = STATE(3236), + [sym_range_expression] = STATE(3236), + [sym_tuple_expression] = STATE(2602), + [sym_literal] = STATE(3236), + [sym_character_literal] = STATE(3272), + [sym_string_literal] = STATE(3272), + [sym_raw_string_literal] = STATE(3272), + [sym_boolean_literal] = STATE(3272), + [sym_identifier] = STATE(2261), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3236), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(1428), [sym_preproc_endregion] = STATE(1428), [sym_preproc_line] = STATE(1428), @@ -283191,47 +283077,216 @@ 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(3067), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3379), + [sym__identifier_token] = ACTIONS(25), + [anon_sym_alias] = ACTIONS(29), + [anon_sym_global] = ACTIONS(29), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1149), + [anon_sym_LPAREN] = ACTIONS(1549), + [anon_sym_ref] = ACTIONS(1551), + [anon_sym_LBRACE] = ACTIONS(1155), + [anon_sym_delegate] = ACTIONS(1157), + [anon_sym_async] = ACTIONS(1045), + [anon_sym_file] = ACTIONS(29), + [anon_sym_new] = ACTIONS(1159), + [anon_sym_where] = ACTIONS(29), + [anon_sym_notnull] = ACTIONS(29), + [anon_sym_unmanaged] = ACTIONS(29), + [anon_sym_checked] = ACTIONS(1163), + [anon_sym_BANG] = ACTIONS(1555), + [anon_sym_TILDE] = ACTIONS(1555), + [anon_sym_PLUS_PLUS] = ACTIONS(1555), + [anon_sym_DASH_DASH] = ACTIONS(1555), + [anon_sym_true] = ACTIONS(1169), + [anon_sym_false] = ACTIONS(1169), + [anon_sym_PLUS] = ACTIONS(1553), + [anon_sym_DASH] = ACTIONS(1553), + [anon_sym_STAR] = ACTIONS(1557), + [anon_sym_CARET] = ACTIONS(1555), + [anon_sym_AMP] = ACTIONS(1555), + [anon_sym_this] = ACTIONS(1173), + [anon_sym_scoped] = ACTIONS(85), + [anon_sym_base] = ACTIONS(1175), + [anon_sym_var] = ACTIONS(89), + [sym_predefined_type] = ACTIONS(1177), + [anon_sym_unchecked] = ACTIONS(1163), + [anon_sym_yield] = ACTIONS(29), + [anon_sym_default] = ACTIONS(1179), + [anon_sym_throw] = ACTIONS(1559), + [anon_sym_when] = ACTIONS(29), + [anon_sym_await] = ACTIONS(1561), + [anon_sym_DOT_DOT] = ACTIONS(1563), + [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(1187), + [anon_sym_sizeof] = ACTIONS(1189), + [anon_sym_typeof] = ACTIONS(1191), + [anon_sym___makeref] = ACTIONS(1193), + [anon_sym___reftype] = ACTIONS(1195), + [anon_sym___refvalue] = ACTIONS(1197), + [sym_null_literal] = ACTIONS(1199), + [anon_sym_SQUOTE] = ACTIONS(1201), + [sym_integer_literal] = ACTIONS(1199), + [sym_real_literal] = ACTIONS(1203), + [anon_sym_DQUOTE] = ACTIONS(1205), + [sym_verbatim_string_literal] = ACTIONS(1203), + [aux_sym_preproc_if_token1] = ACTIONS(1207), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + [sym_interpolation_regular_start] = ACTIONS(1209), + [sym_interpolation_verbatim_start] = ACTIONS(1211), + [sym_interpolation_raw_start] = ACTIONS(1213), + [sym_raw_string_start] = ACTIONS(1215), + }, + [1429] = { + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2816), + [sym__name] = STATE(5895), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2376), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(4900), + [sym_non_lvalue_expression] = STATE(3495), + [sym_lvalue_expression] = STATE(3512), + [sym__expression_statement_expression] = STATE(3462), + [sym_assignment_expression] = STATE(3497), + [sym_binary_expression] = STATE(3462), + [sym_postfix_unary_expression] = STATE(3497), + [sym_prefix_unary_expression] = STATE(3497), + [sym__pointer_indirection_expression] = STATE(2815), + [sym_query_expression] = STATE(3462), + [sym_from_clause] = STATE(6167), + [sym_conditional_expression] = STATE(3462), + [sym_conditional_access_expression] = STATE(3462), + [sym_as_expression] = STATE(3462), + [sym_is_expression] = STATE(3462), + [sym_is_pattern_expression] = STATE(3462), + [sym_cast_expression] = STATE(3462), + [sym_checked_expression] = STATE(3462), + [sym_invocation_expression] = STATE(3497), + [sym_switch_expression] = STATE(3462), + [sym_await_expression] = STATE(3497), + [sym_throw_expression] = STATE(3462), + [sym_element_access_expression] = STATE(2815), + [sym_interpolated_string_expression] = STATE(3462), + [sym_member_access_expression] = STATE(2815), + [sym_object_creation_expression] = STATE(3497), + [sym_parenthesized_expression] = STATE(3497), + [sym__parenthesized_lvalue_expression] = STATE(2815), + [sym_lambda_expression] = STATE(3462), + [sym__lambda_expression_init] = STATE(7716), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3462), + [sym_anonymous_method_expression] = STATE(3462), + [sym_anonymous_object_creation_expression] = STATE(3462), + [sym_implicit_array_creation_expression] = STATE(3462), + [sym_implicit_object_creation_expression] = STATE(3462), + [sym_implicit_stackalloc_expression] = STATE(3462), + [sym_initializer_expression] = STATE(3462), + [sym_default_expression] = STATE(3462), + [sym_with_expression] = STATE(3462), + [sym_sizeof_expression] = STATE(3462), + [sym_typeof_expression] = STATE(3462), + [sym_makeref_expression] = STATE(3462), + [sym_ref_expression] = STATE(3462), + [sym_reftype_expression] = STATE(3462), + [sym_refvalue_expression] = STATE(3462), + [sym_stackalloc_expression] = STATE(3462), + [sym_range_expression] = STATE(3462), + [sym_tuple_expression] = STATE(2815), + [sym_literal] = STATE(3462), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3462), + [sym_preproc_if_in_attribute_list] = STATE(5583), + [sym_preproc_region] = STATE(1429), + [sym_preproc_endregion] = STATE(1429), + [sym_preproc_line] = STATE(1429), + [sym_preproc_pragma] = STATE(1429), + [sym_preproc_nullable] = STATE(1429), + [sym_preproc_error] = STATE(1429), + [sym_preproc_warning] = STATE(1429), + [sym_preproc_define] = STATE(1429), + [sym_preproc_undef] = STATE(1429), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), [aux_sym__lambda_expression_init_repeat1] = STATE(3367), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1241), - [anon_sym_LPAREN] = ACTIONS(2941), - [anon_sym_ref] = ACTIONS(661), - [anon_sym_LBRACE] = ACTIONS(1487), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1305), + [anon_sym_LPAREN] = ACTIONS(1803), + [anon_sym_ref] = ACTIONS(1805), + [anon_sym_LBRACE] = ACTIONS(1311), + [anon_sym_delegate] = ACTIONS(1313), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1061), + [anon_sym_new] = ACTIONS(1807), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = 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_checked] = ACTIONS(1317), + [anon_sym_BANG] = ACTIONS(1811), + [anon_sym_TILDE] = ACTIONS(1811), + [anon_sym_PLUS_PLUS] = ACTIONS(1811), + [anon_sym_DASH_DASH] = ACTIONS(1811), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1585), - [anon_sym_DASH] = ACTIONS(1585), - [anon_sym_STAR] = ACTIONS(2291), - [anon_sym_CARET] = ACTIONS(1587), - [anon_sym_AMP] = ACTIONS(1587), - [anon_sym_this] = ACTIONS(1263), + [anon_sym_PLUS] = ACTIONS(1809), + [anon_sym_DASH] = ACTIONS(1809), + [anon_sym_STAR] = ACTIONS(1813), + [anon_sym_CARET] = ACTIONS(1811), + [anon_sym_AMP] = ACTIONS(1811), + [anon_sym_this] = ACTIONS(1321), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), + [anon_sym_base] = ACTIONS(1323), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1267), - [anon_sym_unchecked] = ACTIONS(1067), + [sym_predefined_type] = ACTIONS(91), + [anon_sym_unchecked] = ACTIONS(1317), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1589), + [anon_sym_throw] = ACTIONS(1815), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1591), - [anon_sym_DOT_DOT] = ACTIONS(123), + [anon_sym_await] = ACTIONS(1817), + [anon_sym_DOT_DOT] = ACTIONS(1819), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -283244,19 +283299,19 @@ static const uint16_t ts_parse_table[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(1331), [anon_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(1333), + [anon_sym___reftype] = ACTIONS(1335), + [anon_sym___refvalue] = ACTIONS(1337), [sym_null_literal] = ACTIONS(139), [anon_sym_SQUOTE] = ACTIONS(141), [sym_integer_literal] = ACTIONS(139), [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1089), + [aux_sym_preproc_if_token1] = ACTIONS(1339), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -283272,254 +283327,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), }, - [1429] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(3184), - [sym__name] = STATE(5883), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2313), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2269), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(4944), - [sym_non_lvalue_expression] = STATE(4541), - [sym_lvalue_expression] = STATE(3527), - [sym__expression_statement_expression] = STATE(4529), - [sym_assignment_expression] = STATE(4543), - [sym_binary_expression] = STATE(4529), - [sym_postfix_unary_expression] = STATE(4543), - [sym_prefix_unary_expression] = STATE(4543), - [sym__pointer_indirection_expression] = STATE(3175), - [sym_query_expression] = STATE(4529), - [sym_from_clause] = STATE(6169), - [sym_conditional_expression] = STATE(4529), - [sym_conditional_access_expression] = STATE(4529), - [sym_as_expression] = STATE(4529), - [sym_is_expression] = STATE(4529), - [sym_is_pattern_expression] = STATE(4529), - [sym_cast_expression] = STATE(4529), - [sym_checked_expression] = STATE(4529), - [sym_invocation_expression] = STATE(4543), - [sym_switch_expression] = STATE(4529), - [sym_await_expression] = STATE(4543), - [sym_throw_expression] = STATE(4529), - [sym_element_access_expression] = STATE(3175), - [sym_interpolated_string_expression] = STATE(4529), - [sym_member_access_expression] = STATE(3175), - [sym_object_creation_expression] = STATE(4543), - [sym_parenthesized_expression] = STATE(4543), - [sym__parenthesized_lvalue_expression] = STATE(3175), - [sym_lambda_expression] = STATE(4529), - [sym__lambda_expression_init] = STATE(7337), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(4529), - [sym_anonymous_method_expression] = STATE(4529), - [sym_anonymous_object_creation_expression] = STATE(4529), - [sym_implicit_array_creation_expression] = STATE(4529), - [sym_implicit_object_creation_expression] = STATE(4529), - [sym_implicit_stackalloc_expression] = STATE(4529), - [sym_initializer_expression] = STATE(4529), - [sym_default_expression] = STATE(4529), - [sym_with_expression] = STATE(4529), - [sym_sizeof_expression] = STATE(4529), - [sym_typeof_expression] = STATE(4529), - [sym_makeref_expression] = STATE(4529), - [sym_ref_expression] = STATE(4529), - [sym_reftype_expression] = STATE(4529), - [sym_refvalue_expression] = STATE(4529), - [sym_stackalloc_expression] = STATE(4529), - [sym_range_expression] = STATE(4529), - [sym_tuple_expression] = STATE(3175), - [sym_literal] = STATE(4529), - [sym_character_literal] = STATE(4536), - [sym_string_literal] = STATE(4536), - [sym_raw_string_literal] = STATE(4536), - [sym_boolean_literal] = STATE(4536), - [sym_identifier] = STATE(2246), - [sym__reserved_identifier] = STATE(2240), - [sym_preproc_if_in_expression] = STATE(4529), - [sym_preproc_if_in_attribute_list] = STATE(5576), - [sym_preproc_region] = STATE(1429), - [sym_preproc_endregion] = STATE(1429), - [sym_preproc_line] = STATE(1429), - [sym_preproc_pragma] = STATE(1429), - [sym_preproc_nullable] = STATE(1429), - [sym_preproc_error] = STATE(1429), - [sym_preproc_warning] = STATE(1429), - [sym_preproc_define] = STATE(1429), - [sym_preproc_undef] = STATE(1429), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3363), - [sym__identifier_token] = ACTIONS(1387), - [anon_sym_alias] = ACTIONS(1389), - [anon_sym_global] = ACTIONS(1389), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1391), - [anon_sym_LPAREN] = ACTIONS(1745), - [anon_sym_ref] = ACTIONS(1747), - [anon_sym_LBRACE] = ACTIONS(1397), - [anon_sym_delegate] = ACTIONS(1399), - [anon_sym_async] = ACTIONS(1047), - [anon_sym_file] = ACTIONS(1389), - [anon_sym_new] = ACTIONS(1467), - [anon_sym_where] = ACTIONS(1389), - [anon_sym_notnull] = ACTIONS(1389), - [anon_sym_unmanaged] = ACTIONS(1389), - [anon_sym_checked] = ACTIONS(1403), - [anon_sym_BANG] = ACTIONS(1751), - [anon_sym_TILDE] = ACTIONS(1751), - [anon_sym_PLUS_PLUS] = ACTIONS(1751), - [anon_sym_DASH_DASH] = ACTIONS(1751), - [anon_sym_true] = ACTIONS(1409), - [anon_sym_false] = ACTIONS(1409), - [anon_sym_PLUS] = ACTIONS(1749), - [anon_sym_DASH] = ACTIONS(1749), - [anon_sym_STAR] = ACTIONS(1473), - [anon_sym_CARET] = ACTIONS(1751), - [anon_sym_AMP] = ACTIONS(1751), - [anon_sym_this] = ACTIONS(1413), - [anon_sym_scoped] = ACTIONS(1415), - [anon_sym_base] = ACTIONS(1417), - [anon_sym_var] = ACTIONS(1419), - [sym_predefined_type] = ACTIONS(1421), - [anon_sym_unchecked] = ACTIONS(1403), - [anon_sym_yield] = ACTIONS(1389), - [anon_sym_default] = ACTIONS(1423), - [anon_sym_throw] = ACTIONS(1753), - [anon_sym_when] = ACTIONS(1389), - [anon_sym_await] = ACTIONS(1755), - [anon_sym_DOT_DOT] = ACTIONS(1757), - [anon_sym_from] = ACTIONS(1431), - [anon_sym_into] = ACTIONS(1389), - [anon_sym_join] = ACTIONS(1389), - [anon_sym_on] = ACTIONS(1389), - [anon_sym_equals] = ACTIONS(1389), - [anon_sym_let] = ACTIONS(1389), - [anon_sym_orderby] = ACTIONS(1389), - [anon_sym_ascending] = ACTIONS(1389), - [anon_sym_descending] = ACTIONS(1389), - [anon_sym_group] = ACTIONS(1389), - [anon_sym_by] = ACTIONS(1389), - [anon_sym_select] = ACTIONS(1389), - [anon_sym_stackalloc] = ACTIONS(1433), - [anon_sym_sizeof] = ACTIONS(1435), - [anon_sym_typeof] = ACTIONS(1437), - [anon_sym___makeref] = ACTIONS(1439), - [anon_sym___reftype] = ACTIONS(1441), - [anon_sym___refvalue] = ACTIONS(1443), - [sym_null_literal] = ACTIONS(1445), - [anon_sym_SQUOTE] = ACTIONS(1447), - [sym_integer_literal] = ACTIONS(1445), - [sym_real_literal] = ACTIONS(1449), - [anon_sym_DQUOTE] = ACTIONS(1451), - [sym_verbatim_string_literal] = ACTIONS(1449), - [aux_sym_preproc_if_token1] = ACTIONS(1453), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1455), - [sym_interpolation_verbatim_start] = ACTIONS(1457), - [sym_interpolation_raw_start] = ACTIONS(1459), - [sym_raw_string_start] = ACTIONS(1461), - }, [1430] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(5876), - [sym_alias_qualified_name] = STATE(4096), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2816), + [sym__name] = STATE(5895), + [sym_alias_qualified_name] = STATE(4068), [sym__simple_name] = STATE(2376), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(3543), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3681), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3080), - [sym_postfix_unary_expression] = STATE(3111), - [sym_prefix_unary_expression] = STATE(3111), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6170), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3080), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3111), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3080), - [sym_member_access_expression] = STATE(2484), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3111), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7511), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(3080), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3080), - [sym_typeof_expression] = STATE(3080), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2484), - [sym_literal] = STATE(3080), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(3195), + [sym_non_lvalue_expression] = STATE(3495), + [sym_lvalue_expression] = STATE(3512), + [sym__expression_statement_expression] = STATE(3462), + [sym_assignment_expression] = STATE(3497), + [sym_binary_expression] = STATE(3462), + [sym_postfix_unary_expression] = STATE(3497), + [sym_prefix_unary_expression] = STATE(3497), + [sym__pointer_indirection_expression] = STATE(2815), + [sym_query_expression] = STATE(3462), + [sym_from_clause] = STATE(6167), + [sym_conditional_expression] = STATE(3462), + [sym_conditional_access_expression] = STATE(3462), + [sym_as_expression] = STATE(3462), + [sym_is_expression] = STATE(3462), + [sym_is_pattern_expression] = STATE(3462), + [sym_cast_expression] = STATE(3462), + [sym_checked_expression] = STATE(3462), + [sym_invocation_expression] = STATE(3497), + [sym_switch_expression] = STATE(3462), + [sym_await_expression] = STATE(3497), + [sym_throw_expression] = STATE(3462), + [sym_element_access_expression] = STATE(2815), + [sym_interpolated_string_expression] = STATE(3462), + [sym_member_access_expression] = STATE(2815), + [sym_object_creation_expression] = STATE(3497), + [sym_parenthesized_expression] = STATE(3497), + [sym__parenthesized_lvalue_expression] = STATE(2815), + [sym_lambda_expression] = STATE(3462), + [sym__lambda_expression_init] = STATE(7716), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3462), + [sym_anonymous_method_expression] = STATE(3462), + [sym_anonymous_object_creation_expression] = STATE(3462), + [sym_implicit_array_creation_expression] = STATE(3462), + [sym_implicit_object_creation_expression] = STATE(3462), + [sym_implicit_stackalloc_expression] = STATE(3462), + [sym_initializer_expression] = STATE(3462), + [sym_default_expression] = STATE(3462), + [sym_with_expression] = STATE(3462), + [sym_sizeof_expression] = STATE(3462), + [sym_typeof_expression] = STATE(3462), + [sym_makeref_expression] = STATE(3462), + [sym_ref_expression] = STATE(3462), + [sym_reftype_expression] = STATE(3462), + [sym_refvalue_expression] = STATE(3462), + [sym_stackalloc_expression] = STATE(3462), + [sym_range_expression] = STATE(3462), + [sym_tuple_expression] = STATE(2815), + [sym_literal] = STATE(3462), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3462), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(1430), [sym_preproc_endregion] = STATE(1430), [sym_preproc_line] = STATE(1430), @@ -283529,47 +283415,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(3067), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), [aux_sym__lambda_expression_init_repeat1] = STATE(3367), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1481), - [anon_sym_LPAREN] = ACTIONS(2231), - [anon_sym_ref] = ACTIONS(2233), - [anon_sym_LBRACE] = ACTIONS(1487), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1305), + [anon_sym_LPAREN] = ACTIONS(1803), + [anon_sym_ref] = ACTIONS(1805), + [anon_sym_LBRACE] = ACTIONS(1311), + [anon_sym_delegate] = ACTIONS(1313), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(2235), + [anon_sym_new] = ACTIONS(1807), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1067), - [anon_sym_BANG] = ACTIONS(2239), - [anon_sym_TILDE] = ACTIONS(2239), - [anon_sym_PLUS_PLUS] = ACTIONS(2239), - [anon_sym_DASH_DASH] = ACTIONS(2239), + [anon_sym_checked] = ACTIONS(1317), + [anon_sym_BANG] = ACTIONS(1811), + [anon_sym_TILDE] = ACTIONS(1811), + [anon_sym_PLUS_PLUS] = ACTIONS(1811), + [anon_sym_DASH_DASH] = ACTIONS(1811), [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_PLUS] = ACTIONS(1809), + [anon_sym_DASH] = ACTIONS(1809), + [anon_sym_STAR] = ACTIONS(1813), + [anon_sym_CARET] = ACTIONS(1811), + [anon_sym_AMP] = ACTIONS(1811), + [anon_sym_this] = ACTIONS(1321), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), + [anon_sym_base] = ACTIONS(1323), [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1067), + [anon_sym_unchecked] = ACTIONS(1317), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(2243), + [anon_sym_throw] = ACTIONS(1815), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2245), - [anon_sym_DOT_DOT] = ACTIONS(2247), + [anon_sym_await] = ACTIONS(1817), + [anon_sym_DOT_DOT] = ACTIONS(1819), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -283582,19 +283468,19 @@ static const uint16_t ts_parse_table[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(1331), [anon_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(1333), + [anon_sym___reftype] = ACTIONS(1335), + [anon_sym___refvalue] = ACTIONS(1337), [sym_null_literal] = ACTIONS(139), [anon_sym_SQUOTE] = ACTIONS(141), [sym_integer_literal] = ACTIONS(139), [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1089), + [aux_sym_preproc_if_token1] = ACTIONS(1339), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -283611,84 +283497,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [1431] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2762), - [sym__name] = STATE(5893), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2316), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(5677), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(2774), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3080), - [sym_postfix_unary_expression] = STATE(3111), - [sym_prefix_unary_expression] = STATE(3111), - [sym__pointer_indirection_expression] = STATE(2747), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6154), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3080), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3111), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2747), - [sym_interpolated_string_expression] = STATE(3080), - [sym_member_access_expression] = STATE(2747), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3111), - [sym__parenthesized_lvalue_expression] = STATE(2747), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7530), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(3080), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3080), - [sym_typeof_expression] = STATE(3080), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2747), - [sym_literal] = STATE(3080), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2816), + [sym__name] = STATE(5895), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2376), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(4904), + [sym_non_lvalue_expression] = STATE(3495), + [sym_lvalue_expression] = STATE(3512), + [sym__expression_statement_expression] = STATE(3462), + [sym_assignment_expression] = STATE(3497), + [sym_binary_expression] = STATE(3462), + [sym_postfix_unary_expression] = STATE(3497), + [sym_prefix_unary_expression] = STATE(3497), + [sym__pointer_indirection_expression] = STATE(2815), + [sym_query_expression] = STATE(3462), + [sym_from_clause] = STATE(6167), + [sym_conditional_expression] = STATE(3462), + [sym_conditional_access_expression] = STATE(3462), + [sym_as_expression] = STATE(3462), + [sym_is_expression] = STATE(3462), + [sym_is_pattern_expression] = STATE(3462), + [sym_cast_expression] = STATE(3462), + [sym_checked_expression] = STATE(3462), + [sym_invocation_expression] = STATE(3497), + [sym_switch_expression] = STATE(3462), + [sym_await_expression] = STATE(3497), + [sym_throw_expression] = STATE(3462), + [sym_element_access_expression] = STATE(2815), + [sym_interpolated_string_expression] = STATE(3462), + [sym_member_access_expression] = STATE(2815), + [sym_object_creation_expression] = STATE(3497), + [sym_parenthesized_expression] = STATE(3497), + [sym__parenthesized_lvalue_expression] = STATE(2815), + [sym_lambda_expression] = STATE(3462), + [sym__lambda_expression_init] = STATE(7716), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3462), + [sym_anonymous_method_expression] = STATE(3462), + [sym_anonymous_object_creation_expression] = STATE(3462), + [sym_implicit_array_creation_expression] = STATE(3462), + [sym_implicit_object_creation_expression] = STATE(3462), + [sym_implicit_stackalloc_expression] = STATE(3462), + [sym_initializer_expression] = STATE(3462), + [sym_default_expression] = STATE(3462), + [sym_with_expression] = STATE(3462), + [sym_sizeof_expression] = STATE(3462), + [sym_typeof_expression] = STATE(3462), + [sym_makeref_expression] = STATE(3462), + [sym_ref_expression] = STATE(3462), + [sym_reftype_expression] = STATE(3462), + [sym_refvalue_expression] = STATE(3462), + [sym_stackalloc_expression] = STATE(3462), + [sym_range_expression] = STATE(3462), + [sym_tuple_expression] = STATE(2815), + [sym_literal] = STATE(3462), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3462), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(1431), [sym_preproc_endregion] = STATE(1431), [sym_preproc_line] = STATE(1431), @@ -283698,47 +283584,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(3067), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), [aux_sym__lambda_expression_init_repeat1] = STATE(3367), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1307), - [anon_sym_LPAREN] = ACTIONS(2945), - [anon_sym_ref] = ACTIONS(661), - [anon_sym_LBRACE] = ACTIONS(1487), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1305), + [anon_sym_LPAREN] = ACTIONS(1803), + [anon_sym_ref] = ACTIONS(1805), + [anon_sym_LBRACE] = ACTIONS(1311), + [anon_sym_delegate] = ACTIONS(1313), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1061), + [anon_sym_new] = ACTIONS(1807), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = 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_checked] = ACTIONS(1317), + [anon_sym_BANG] = ACTIONS(1811), + [anon_sym_TILDE] = ACTIONS(1811), + [anon_sym_PLUS_PLUS] = ACTIONS(1811), + [anon_sym_DASH_DASH] = ACTIONS(1811), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1585), - [anon_sym_DASH] = ACTIONS(1585), - [anon_sym_STAR] = ACTIONS(1719), - [anon_sym_CARET] = ACTIONS(1587), - [anon_sym_AMP] = ACTIONS(1587), - [anon_sym_this] = ACTIONS(1323), + [anon_sym_PLUS] = ACTIONS(1809), + [anon_sym_DASH] = ACTIONS(1809), + [anon_sym_STAR] = ACTIONS(1813), + [anon_sym_CARET] = ACTIONS(1811), + [anon_sym_AMP] = ACTIONS(1811), + [anon_sym_this] = ACTIONS(1321), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), + [anon_sym_base] = ACTIONS(1323), [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1067), + [anon_sym_unchecked] = ACTIONS(1317), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1589), + [anon_sym_throw] = ACTIONS(1815), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1591), - [anon_sym_DOT_DOT] = ACTIONS(123), + [anon_sym_await] = ACTIONS(1817), + [anon_sym_DOT_DOT] = ACTIONS(1819), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -283751,19 +283637,19 @@ static const uint16_t ts_parse_table[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(1331), [anon_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(1333), + [anon_sym___reftype] = ACTIONS(1335), + [anon_sym___refvalue] = ACTIONS(1337), [sym_null_literal] = ACTIONS(139), [anon_sym_SQUOTE] = ACTIONS(141), [sym_integer_literal] = ACTIONS(139), [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1089), + [aux_sym_preproc_if_token1] = ACTIONS(1339), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -283780,84 +283666,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [1432] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2914), - [sym__name] = STATE(5885), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2357), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(3607), - [sym_non_lvalue_expression] = STATE(3880), - [sym_lvalue_expression] = STATE(2986), - [sym__expression_statement_expression] = STATE(3873), - [sym_assignment_expression] = STATE(3881), - [sym_binary_expression] = STATE(3873), - [sym_postfix_unary_expression] = STATE(3881), - [sym_prefix_unary_expression] = STATE(3881), - [sym__pointer_indirection_expression] = STATE(2913), - [sym_query_expression] = STATE(3873), - [sym_from_clause] = STATE(6168), - [sym_conditional_expression] = STATE(3873), - [sym_conditional_access_expression] = STATE(3873), - [sym_as_expression] = STATE(3873), - [sym_is_expression] = STATE(3873), - [sym_is_pattern_expression] = STATE(3873), - [sym_cast_expression] = STATE(3873), - [sym_checked_expression] = STATE(3873), - [sym_invocation_expression] = STATE(3881), - [sym_switch_expression] = STATE(3873), - [sym_await_expression] = STATE(3881), - [sym_throw_expression] = STATE(3873), - [sym_element_access_expression] = STATE(2913), - [sym_interpolated_string_expression] = STATE(3873), - [sym_member_access_expression] = STATE(2913), - [sym_object_creation_expression] = STATE(3881), - [sym_parenthesized_expression] = STATE(3881), - [sym__parenthesized_lvalue_expression] = STATE(2913), - [sym_lambda_expression] = STATE(3873), - [sym__lambda_expression_init] = STATE(7587), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3873), - [sym_anonymous_method_expression] = STATE(3873), - [sym_anonymous_object_creation_expression] = STATE(3873), - [sym_implicit_array_creation_expression] = STATE(3873), - [sym_implicit_object_creation_expression] = STATE(3873), - [sym_implicit_stackalloc_expression] = STATE(3873), - [sym_initializer_expression] = STATE(3873), - [sym_default_expression] = STATE(3873), - [sym_with_expression] = STATE(3873), - [sym_sizeof_expression] = STATE(3873), - [sym_typeof_expression] = STATE(3873), - [sym_makeref_expression] = STATE(3873), - [sym_ref_expression] = STATE(3873), - [sym_reftype_expression] = STATE(3873), - [sym_refvalue_expression] = STATE(3873), - [sym_stackalloc_expression] = STATE(3873), - [sym_range_expression] = STATE(3873), - [sym_tuple_expression] = STATE(2913), - [sym_literal] = STATE(3873), - [sym_character_literal] = STATE(3877), - [sym_string_literal] = STATE(3877), - [sym_raw_string_literal] = STATE(3877), - [sym_boolean_literal] = STATE(3877), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3873), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2816), + [sym__name] = STATE(5895), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2376), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(4906), + [sym_non_lvalue_expression] = STATE(3495), + [sym_lvalue_expression] = STATE(3512), + [sym__expression_statement_expression] = STATE(3462), + [sym_assignment_expression] = STATE(3497), + [sym_binary_expression] = STATE(3462), + [sym_postfix_unary_expression] = STATE(3497), + [sym_prefix_unary_expression] = STATE(3497), + [sym__pointer_indirection_expression] = STATE(2815), + [sym_query_expression] = STATE(3462), + [sym_from_clause] = STATE(6167), + [sym_conditional_expression] = STATE(3462), + [sym_conditional_access_expression] = STATE(3462), + [sym_as_expression] = STATE(3462), + [sym_is_expression] = STATE(3462), + [sym_is_pattern_expression] = STATE(3462), + [sym_cast_expression] = STATE(3462), + [sym_checked_expression] = STATE(3462), + [sym_invocation_expression] = STATE(3497), + [sym_switch_expression] = STATE(3462), + [sym_await_expression] = STATE(3497), + [sym_throw_expression] = STATE(3462), + [sym_element_access_expression] = STATE(2815), + [sym_interpolated_string_expression] = STATE(3462), + [sym_member_access_expression] = STATE(2815), + [sym_object_creation_expression] = STATE(3497), + [sym_parenthesized_expression] = STATE(3497), + [sym__parenthesized_lvalue_expression] = STATE(2815), + [sym_lambda_expression] = STATE(3462), + [sym__lambda_expression_init] = STATE(7716), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3462), + [sym_anonymous_method_expression] = STATE(3462), + [sym_anonymous_object_creation_expression] = STATE(3462), + [sym_implicit_array_creation_expression] = STATE(3462), + [sym_implicit_object_creation_expression] = STATE(3462), + [sym_implicit_stackalloc_expression] = STATE(3462), + [sym_initializer_expression] = STATE(3462), + [sym_default_expression] = STATE(3462), + [sym_with_expression] = STATE(3462), + [sym_sizeof_expression] = STATE(3462), + [sym_typeof_expression] = STATE(3462), + [sym_makeref_expression] = STATE(3462), + [sym_ref_expression] = STATE(3462), + [sym_reftype_expression] = STATE(3462), + [sym_refvalue_expression] = STATE(3462), + [sym_stackalloc_expression] = STATE(3462), + [sym_range_expression] = STATE(3462), + [sym_tuple_expression] = STATE(2815), + [sym_literal] = STATE(3462), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3462), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(1432), [sym_preproc_endregion] = STATE(1432), [sym_preproc_line] = STATE(1432), @@ -283867,47 +283753,47 @@ 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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3382), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3367), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1627), - [anon_sym_LPAREN] = ACTIONS(2079), - [anon_sym_ref] = ACTIONS(2081), - [anon_sym_LBRACE] = ACTIONS(1633), - [anon_sym_delegate] = ACTIONS(1635), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1305), + [anon_sym_LPAREN] = ACTIONS(1803), + [anon_sym_ref] = ACTIONS(1805), + [anon_sym_LBRACE] = ACTIONS(1311), + [anon_sym_delegate] = ACTIONS(1313), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1731), + [anon_sym_new] = ACTIONS(1807), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1639), - [anon_sym_BANG] = ACTIONS(2085), - [anon_sym_TILDE] = ACTIONS(2085), - [anon_sym_PLUS_PLUS] = ACTIONS(2085), - [anon_sym_DASH_DASH] = ACTIONS(2085), - [anon_sym_true] = ACTIONS(1645), - [anon_sym_false] = ACTIONS(1645), - [anon_sym_PLUS] = ACTIONS(2083), - [anon_sym_DASH] = ACTIONS(2083), - [anon_sym_STAR] = ACTIONS(1737), - [anon_sym_CARET] = ACTIONS(2085), - [anon_sym_AMP] = ACTIONS(2085), - [anon_sym_this] = ACTIONS(1649), + [anon_sym_checked] = ACTIONS(1317), + [anon_sym_BANG] = ACTIONS(1811), + [anon_sym_TILDE] = ACTIONS(1811), + [anon_sym_PLUS_PLUS] = ACTIONS(1811), + [anon_sym_DASH_DASH] = ACTIONS(1811), + [anon_sym_true] = ACTIONS(77), + [anon_sym_false] = ACTIONS(77), + [anon_sym_PLUS] = ACTIONS(1809), + [anon_sym_DASH] = ACTIONS(1809), + [anon_sym_STAR] = ACTIONS(1813), + [anon_sym_CARET] = ACTIONS(1811), + [anon_sym_AMP] = ACTIONS(1811), + [anon_sym_this] = ACTIONS(1321), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1651), + [anon_sym_base] = ACTIONS(1323), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1653), - [anon_sym_unchecked] = ACTIONS(1639), + [sym_predefined_type] = ACTIONS(91), + [anon_sym_unchecked] = ACTIONS(1317), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1655), - [anon_sym_throw] = ACTIONS(2087), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(1815), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2089), - [anon_sym_DOT_DOT] = ACTIONS(2091), + [anon_sym_await] = ACTIONS(1817), + [anon_sym_DOT_DOT] = ACTIONS(1819), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -283920,19 +283806,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1663), - [anon_sym_sizeof] = ACTIONS(1665), - [anon_sym_typeof] = ACTIONS(1667), - [anon_sym___makeref] = ACTIONS(1669), - [anon_sym___reftype] = ACTIONS(1671), - [anon_sym___refvalue] = ACTIONS(1673), - [sym_null_literal] = ACTIONS(1675), - [anon_sym_SQUOTE] = ACTIONS(1677), - [sym_integer_literal] = ACTIONS(1675), - [sym_real_literal] = ACTIONS(1679), - [anon_sym_DQUOTE] = ACTIONS(1681), - [sym_verbatim_string_literal] = ACTIONS(1679), - [aux_sym_preproc_if_token1] = ACTIONS(1683), + [anon_sym_stackalloc] = ACTIONS(1331), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(1333), + [anon_sym___reftype] = ACTIONS(1335), + [anon_sym___refvalue] = ACTIONS(1337), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_literal] = ACTIONS(143), + [anon_sym_DQUOTE] = ACTIONS(145), + [sym_verbatim_string_literal] = ACTIONS(143), + [aux_sym_preproc_if_token1] = ACTIONS(1339), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -283943,90 +283829,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1685), - [sym_interpolation_verbatim_start] = ACTIONS(1687), - [sym_interpolation_raw_start] = ACTIONS(1689), - [sym_raw_string_start] = ACTIONS(1691), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [sym_interpolation_raw_start] = ACTIONS(155), + [sym_raw_string_start] = ACTIONS(157), }, [1433] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2762), - [sym__name] = STATE(5889), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2204), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(5677), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(2774), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3080), - [sym_postfix_unary_expression] = STATE(3111), - [sym_prefix_unary_expression] = STATE(3111), - [sym__pointer_indirection_expression] = STATE(2747), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6154), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3080), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3111), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2747), - [sym_interpolated_string_expression] = STATE(3080), - [sym_member_access_expression] = STATE(2747), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3111), - [sym__parenthesized_lvalue_expression] = STATE(2747), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7530), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(3080), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3080), - [sym_typeof_expression] = STATE(3080), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2747), - [sym_literal] = STATE(3080), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2603), + [sym__name] = STATE(5862), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2193), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(4736), + [sym_non_lvalue_expression] = STATE(3220), + [sym_lvalue_expression] = STATE(3403), + [sym__expression_statement_expression] = STATE(3236), + [sym_assignment_expression] = STATE(3221), + [sym_binary_expression] = STATE(3236), + [sym_postfix_unary_expression] = STATE(3221), + [sym_prefix_unary_expression] = STATE(3221), + [sym__pointer_indirection_expression] = STATE(2602), + [sym_query_expression] = STATE(3236), + [sym_from_clause] = STATE(6145), + [sym_conditional_expression] = STATE(3236), + [sym_conditional_access_expression] = STATE(3236), + [sym_as_expression] = STATE(3236), + [sym_is_expression] = STATE(3236), + [sym_is_pattern_expression] = STATE(3236), + [sym_cast_expression] = STATE(3236), + [sym_checked_expression] = STATE(3236), + [sym_invocation_expression] = STATE(3221), + [sym_switch_expression] = STATE(3236), + [sym_await_expression] = STATE(3221), + [sym_throw_expression] = STATE(3236), + [sym_element_access_expression] = STATE(2602), + [sym_interpolated_string_expression] = STATE(3236), + [sym_member_access_expression] = STATE(2602), + [sym_object_creation_expression] = STATE(3221), + [sym_parenthesized_expression] = STATE(3221), + [sym__parenthesized_lvalue_expression] = STATE(2602), + [sym_lambda_expression] = STATE(3236), + [sym__lambda_expression_init] = STATE(7639), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3236), + [sym_anonymous_method_expression] = STATE(3236), + [sym_anonymous_object_creation_expression] = STATE(3236), + [sym_implicit_array_creation_expression] = STATE(3236), + [sym_implicit_object_creation_expression] = STATE(3236), + [sym_implicit_stackalloc_expression] = STATE(3236), + [sym_initializer_expression] = STATE(3236), + [sym_default_expression] = STATE(3236), + [sym_with_expression] = STATE(3236), + [sym_sizeof_expression] = STATE(3236), + [sym_typeof_expression] = STATE(3236), + [sym_makeref_expression] = STATE(3236), + [sym_ref_expression] = STATE(3236), + [sym_reftype_expression] = STATE(3236), + [sym_refvalue_expression] = STATE(3236), + [sym_stackalloc_expression] = STATE(3236), + [sym_range_expression] = STATE(3236), + [sym_tuple_expression] = STATE(2602), + [sym_literal] = STATE(3236), + [sym_character_literal] = STATE(3272), + [sym_string_literal] = STATE(3272), + [sym_raw_string_literal] = STATE(3272), + [sym_boolean_literal] = STATE(3272), + [sym_identifier] = STATE(2261), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3236), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(1433), [sym_preproc_endregion] = STATE(1433), [sym_preproc_line] = STATE(1433), @@ -284036,47 +283922,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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3379), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1307), - [anon_sym_LPAREN] = ACTIONS(2945), - [anon_sym_ref] = ACTIONS(661), - [anon_sym_LBRACE] = ACTIONS(1487), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1149), + [anon_sym_LPAREN] = ACTIONS(1549), + [anon_sym_ref] = ACTIONS(1551), + [anon_sym_LBRACE] = ACTIONS(1155), + [anon_sym_delegate] = ACTIONS(1157), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1061), + [anon_sym_new] = ACTIONS(1159), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = 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(1585), - [anon_sym_DASH] = ACTIONS(1585), - [anon_sym_STAR] = ACTIONS(1797), - [anon_sym_CARET] = ACTIONS(1587), - [anon_sym_AMP] = ACTIONS(1587), - [anon_sym_this] = ACTIONS(1323), + [anon_sym_checked] = ACTIONS(1163), + [anon_sym_BANG] = ACTIONS(1555), + [anon_sym_TILDE] = ACTIONS(1555), + [anon_sym_PLUS_PLUS] = ACTIONS(1555), + [anon_sym_DASH_DASH] = ACTIONS(1555), + [anon_sym_true] = ACTIONS(1169), + [anon_sym_false] = ACTIONS(1169), + [anon_sym_PLUS] = ACTIONS(1553), + [anon_sym_DASH] = ACTIONS(1553), + [anon_sym_STAR] = ACTIONS(1557), + [anon_sym_CARET] = ACTIONS(1555), + [anon_sym_AMP] = ACTIONS(1555), + [anon_sym_this] = ACTIONS(1173), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), + [anon_sym_base] = ACTIONS(1175), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1067), + [sym_predefined_type] = ACTIONS(1177), + [anon_sym_unchecked] = ACTIONS(1163), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1589), + [anon_sym_default] = ACTIONS(1179), + [anon_sym_throw] = ACTIONS(1559), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1591), - [anon_sym_DOT_DOT] = ACTIONS(123), + [anon_sym_await] = ACTIONS(1561), + [anon_sym_DOT_DOT] = ACTIONS(1563), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -284089,19 +283975,19 @@ static const uint16_t ts_parse_table[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(1089), + [anon_sym_stackalloc] = ACTIONS(1187), + [anon_sym_sizeof] = ACTIONS(1189), + [anon_sym_typeof] = ACTIONS(1191), + [anon_sym___makeref] = ACTIONS(1193), + [anon_sym___reftype] = ACTIONS(1195), + [anon_sym___refvalue] = ACTIONS(1197), + [sym_null_literal] = ACTIONS(1199), + [anon_sym_SQUOTE] = ACTIONS(1201), + [sym_integer_literal] = ACTIONS(1199), + [sym_real_literal] = ACTIONS(1203), + [anon_sym_DQUOTE] = ACTIONS(1205), + [sym_verbatim_string_literal] = ACTIONS(1203), + [aux_sym_preproc_if_token1] = ACTIONS(1207), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -284112,90 +283998,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(151), - [sym_interpolation_verbatim_start] = ACTIONS(153), - [sym_interpolation_raw_start] = ACTIONS(155), - [sym_raw_string_start] = ACTIONS(157), + [sym_interpolation_regular_start] = ACTIONS(1209), + [sym_interpolation_verbatim_start] = ACTIONS(1211), + [sym_interpolation_raw_start] = ACTIONS(1213), + [sym_raw_string_start] = ACTIONS(1215), }, [1434] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2762), - [sym__name] = STATE(5890), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2375), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(3194), - [sym_non_lvalue_expression] = STATE(3438), - [sym_lvalue_expression] = STATE(3526), - [sym__expression_statement_expression] = STATE(3362), - [sym_assignment_expression] = STATE(3449), - [sym_binary_expression] = STATE(3362), - [sym_postfix_unary_expression] = STATE(3449), - [sym_prefix_unary_expression] = STATE(3449), - [sym__pointer_indirection_expression] = STATE(2747), - [sym_query_expression] = STATE(3362), - [sym_from_clause] = STATE(6163), - [sym_conditional_expression] = STATE(3362), - [sym_conditional_access_expression] = STATE(3362), - [sym_as_expression] = STATE(3362), - [sym_is_expression] = STATE(3362), - [sym_is_pattern_expression] = STATE(3362), - [sym_cast_expression] = STATE(3362), - [sym_checked_expression] = STATE(3362), - [sym_invocation_expression] = STATE(3449), - [sym_switch_expression] = STATE(3362), - [sym_await_expression] = STATE(3449), - [sym_throw_expression] = STATE(3362), - [sym_element_access_expression] = STATE(2747), - [sym_interpolated_string_expression] = STATE(3362), - [sym_member_access_expression] = STATE(2747), - [sym_object_creation_expression] = STATE(3449), - [sym_parenthesized_expression] = STATE(3449), - [sym__parenthesized_lvalue_expression] = STATE(2747), - [sym_lambda_expression] = STATE(3362), - [sym__lambda_expression_init] = STATE(7529), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3362), - [sym_anonymous_method_expression] = STATE(3362), - [sym_anonymous_object_creation_expression] = STATE(3362), - [sym_implicit_array_creation_expression] = STATE(3362), - [sym_implicit_object_creation_expression] = STATE(3362), - [sym_implicit_stackalloc_expression] = STATE(3362), - [sym_initializer_expression] = STATE(3362), - [sym_default_expression] = STATE(3362), - [sym_with_expression] = STATE(3362), - [sym_sizeof_expression] = STATE(3362), - [sym_typeof_expression] = STATE(3362), - [sym_makeref_expression] = STATE(3362), - [sym_ref_expression] = STATE(3362), - [sym_reftype_expression] = STATE(3362), - [sym_refvalue_expression] = STATE(3362), - [sym_stackalloc_expression] = STATE(3362), - [sym_range_expression] = STATE(3362), - [sym_tuple_expression] = STATE(2747), - [sym_literal] = STATE(3362), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3362), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(5893), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2361), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(5639), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3673), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3102), + [sym_postfix_unary_expression] = STATE(3079), + [sym_prefix_unary_expression] = STATE(3079), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6159), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3102), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3079), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3102), + [sym_member_access_expression] = STATE(2472), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3079), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7363), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(3102), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3102), + [sym_typeof_expression] = STATE(3102), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2472), + [sym_literal] = STATE(3102), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(1434), [sym_preproc_endregion] = STATE(1434), [sym_preproc_line] = STATE(1434), @@ -284205,47 +284091,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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3385), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1307), - [anon_sym_LPAREN] = ACTIONS(1805), - [anon_sym_ref] = ACTIONS(1807), - [anon_sym_LBRACE] = ACTIONS(1313), - [anon_sym_delegate] = ACTIONS(1315), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1479), + [anon_sym_LPAREN] = ACTIONS(2237), + [anon_sym_ref] = ACTIONS(2239), + [anon_sym_LBRACE] = ACTIONS(1481), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1809), + [anon_sym_new] = ACTIONS(2241), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1319), - [anon_sym_BANG] = ACTIONS(1813), - [anon_sym_TILDE] = ACTIONS(1813), - [anon_sym_PLUS_PLUS] = ACTIONS(1813), - [anon_sym_DASH_DASH] = ACTIONS(1813), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(2245), + [anon_sym_TILDE] = ACTIONS(2245), + [anon_sym_PLUS_PLUS] = ACTIONS(2245), + [anon_sym_DASH_DASH] = ACTIONS(2245), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1811), - [anon_sym_DASH] = ACTIONS(1811), - [anon_sym_STAR] = ACTIONS(1815), - [anon_sym_CARET] = ACTIONS(1813), - [anon_sym_AMP] = ACTIONS(1813), - [anon_sym_this] = ACTIONS(1323), + [anon_sym_PLUS] = ACTIONS(2243), + [anon_sym_DASH] = ACTIONS(2243), + [anon_sym_STAR] = ACTIONS(2247), + [anon_sym_CARET] = ACTIONS(2245), + [anon_sym_AMP] = ACTIONS(2245), + [anon_sym_this] = ACTIONS(83), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1325), + [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1319), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1817), + [anon_sym_throw] = ACTIONS(2249), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1819), - [anon_sym_DOT_DOT] = ACTIONS(1821), + [anon_sym_await] = ACTIONS(2251), + [anon_sym_DOT_DOT] = ACTIONS(2253), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -284258,19 +284144,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1333), + [anon_sym_stackalloc] = ACTIONS(127), [anon_sym_sizeof] = ACTIONS(129), [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(1335), - [anon_sym___reftype] = ACTIONS(1337), - [anon_sym___refvalue] = ACTIONS(1339), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), [sym_null_literal] = ACTIONS(139), [anon_sym_SQUOTE] = ACTIONS(141), [sym_integer_literal] = ACTIONS(139), [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1341), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -284287,84 +284173,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [1435] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(5160), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2204), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(5672), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(2465), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3080), - [sym_postfix_unary_expression] = STATE(3111), - [sym_prefix_unary_expression] = STATE(3111), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6154), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3080), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3111), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3080), - [sym_member_access_expression] = STATE(2484), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3111), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7530), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(3080), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3080), - [sym_typeof_expression] = STATE(3080), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2484), - [sym_literal] = STATE(3080), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2267), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2603), + [sym__name] = STATE(5862), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2193), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(4576), + [sym_non_lvalue_expression] = STATE(3220), + [sym_lvalue_expression] = STATE(3403), + [sym__expression_statement_expression] = STATE(3236), + [sym_assignment_expression] = STATE(3221), + [sym_binary_expression] = STATE(3236), + [sym_postfix_unary_expression] = STATE(3221), + [sym_prefix_unary_expression] = STATE(3221), + [sym__pointer_indirection_expression] = STATE(2602), + [sym_query_expression] = STATE(3236), + [sym_from_clause] = STATE(6145), + [sym_conditional_expression] = STATE(3236), + [sym_conditional_access_expression] = STATE(3236), + [sym_as_expression] = STATE(3236), + [sym_is_expression] = STATE(3236), + [sym_is_pattern_expression] = STATE(3236), + [sym_cast_expression] = STATE(3236), + [sym_checked_expression] = STATE(3236), + [sym_invocation_expression] = STATE(3221), + [sym_switch_expression] = STATE(3236), + [sym_await_expression] = STATE(3221), + [sym_throw_expression] = STATE(3236), + [sym_element_access_expression] = STATE(2602), + [sym_interpolated_string_expression] = STATE(3236), + [sym_member_access_expression] = STATE(2602), + [sym_object_creation_expression] = STATE(3221), + [sym_parenthesized_expression] = STATE(3221), + [sym__parenthesized_lvalue_expression] = STATE(2602), + [sym_lambda_expression] = STATE(3236), + [sym__lambda_expression_init] = STATE(7639), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3236), + [sym_anonymous_method_expression] = STATE(3236), + [sym_anonymous_object_creation_expression] = STATE(3236), + [sym_implicit_array_creation_expression] = STATE(3236), + [sym_implicit_object_creation_expression] = STATE(3236), + [sym_implicit_stackalloc_expression] = STATE(3236), + [sym_initializer_expression] = STATE(3236), + [sym_default_expression] = STATE(3236), + [sym_with_expression] = STATE(3236), + [sym_sizeof_expression] = STATE(3236), + [sym_typeof_expression] = STATE(3236), + [sym_makeref_expression] = STATE(3236), + [sym_ref_expression] = STATE(3236), + [sym_reftype_expression] = STATE(3236), + [sym_refvalue_expression] = STATE(3236), + [sym_stackalloc_expression] = STATE(3236), + [sym_range_expression] = STATE(3236), + [sym_tuple_expression] = STATE(2602), + [sym_literal] = STATE(3236), + [sym_character_literal] = STATE(3272), + [sym_string_literal] = STATE(3272), + [sym_raw_string_literal] = STATE(3272), + [sym_boolean_literal] = STATE(3272), + [sym_identifier] = STATE(2261), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3236), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(1435), [sym_preproc_endregion] = STATE(1435), [sym_preproc_line] = STATE(1435), @@ -284374,47 +284260,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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3379), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1481), - [anon_sym_LPAREN] = ACTIONS(43), - [anon_sym_ref] = ACTIONS(661), - [anon_sym_LBRACE] = ACTIONS(1487), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1149), + [anon_sym_LPAREN] = ACTIONS(1549), + [anon_sym_ref] = ACTIONS(1551), + [anon_sym_LBRACE] = ACTIONS(1155), + [anon_sym_delegate] = ACTIONS(1157), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1061), + [anon_sym_new] = ACTIONS(1159), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = 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(1585), - [anon_sym_DASH] = ACTIONS(1585), - [anon_sym_STAR] = ACTIONS(2055), - [anon_sym_CARET] = ACTIONS(1587), - [anon_sym_AMP] = ACTIONS(1587), - [anon_sym_this] = ACTIONS(83), + [anon_sym_checked] = ACTIONS(1163), + [anon_sym_BANG] = ACTIONS(1555), + [anon_sym_TILDE] = ACTIONS(1555), + [anon_sym_PLUS_PLUS] = ACTIONS(1555), + [anon_sym_DASH_DASH] = ACTIONS(1555), + [anon_sym_true] = ACTIONS(1169), + [anon_sym_false] = ACTIONS(1169), + [anon_sym_PLUS] = ACTIONS(1553), + [anon_sym_DASH] = ACTIONS(1553), + [anon_sym_STAR] = ACTIONS(1557), + [anon_sym_CARET] = ACTIONS(1555), + [anon_sym_AMP] = ACTIONS(1555), + [anon_sym_this] = ACTIONS(1173), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), + [anon_sym_base] = ACTIONS(1175), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1067), + [sym_predefined_type] = ACTIONS(1177), + [anon_sym_unchecked] = ACTIONS(1163), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1589), + [anon_sym_default] = ACTIONS(1179), + [anon_sym_throw] = ACTIONS(1559), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1591), - [anon_sym_DOT_DOT] = ACTIONS(123), + [anon_sym_await] = ACTIONS(1561), + [anon_sym_DOT_DOT] = ACTIONS(1563), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -284427,19 +284313,19 @@ static const uint16_t ts_parse_table[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(1089), + [anon_sym_stackalloc] = ACTIONS(1187), + [anon_sym_sizeof] = ACTIONS(1189), + [anon_sym_typeof] = ACTIONS(1191), + [anon_sym___makeref] = ACTIONS(1193), + [anon_sym___reftype] = ACTIONS(1195), + [anon_sym___refvalue] = ACTIONS(1197), + [sym_null_literal] = ACTIONS(1199), + [anon_sym_SQUOTE] = ACTIONS(1201), + [sym_integer_literal] = ACTIONS(1199), + [sym_real_literal] = ACTIONS(1203), + [anon_sym_DQUOTE] = ACTIONS(1205), + [sym_verbatim_string_literal] = ACTIONS(1203), + [aux_sym_preproc_if_token1] = ACTIONS(1207), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -284450,90 +284336,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(151), - [sym_interpolation_verbatim_start] = ACTIONS(153), - [sym_interpolation_raw_start] = ACTIONS(155), - [sym_raw_string_start] = ACTIONS(157), + [sym_interpolation_regular_start] = ACTIONS(1209), + [sym_interpolation_verbatim_start] = ACTIONS(1211), + [sym_interpolation_raw_start] = ACTIONS(1213), + [sym_raw_string_start] = ACTIONS(1215), }, [1436] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2420), - [sym__name] = STATE(5888), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2384), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(2907), - [sym_non_lvalue_expression] = STATE(3066), - [sym_lvalue_expression] = STATE(3554), - [sym__expression_statement_expression] = STATE(3006), - [sym_assignment_expression] = STATE(3020), - [sym_binary_expression] = STATE(3006), - [sym_postfix_unary_expression] = STATE(3020), - [sym_prefix_unary_expression] = STATE(3020), - [sym__pointer_indirection_expression] = STATE(2423), - [sym_query_expression] = STATE(3006), - [sym_from_clause] = STATE(6151), - [sym_conditional_expression] = STATE(3006), - [sym_conditional_access_expression] = STATE(3006), - [sym_as_expression] = STATE(3006), - [sym_is_expression] = STATE(3006), - [sym_is_pattern_expression] = STATE(3006), - [sym_cast_expression] = STATE(3006), - [sym_checked_expression] = STATE(3006), - [sym_invocation_expression] = STATE(3020), - [sym_switch_expression] = STATE(3006), - [sym_await_expression] = STATE(3020), - [sym_throw_expression] = STATE(3006), - [sym_element_access_expression] = STATE(2423), - [sym_interpolated_string_expression] = STATE(3006), - [sym_member_access_expression] = STATE(2423), - [sym_object_creation_expression] = STATE(3020), - [sym_parenthesized_expression] = STATE(3020), - [sym__parenthesized_lvalue_expression] = STATE(2423), - [sym_lambda_expression] = STATE(3006), - [sym__lambda_expression_init] = STATE(7640), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3006), - [sym_anonymous_method_expression] = STATE(3006), - [sym_anonymous_object_creation_expression] = STATE(3006), - [sym_implicit_array_creation_expression] = STATE(3006), - [sym_implicit_object_creation_expression] = STATE(3006), - [sym_implicit_stackalloc_expression] = STATE(3006), - [sym_initializer_expression] = STATE(3006), - [sym_default_expression] = STATE(3006), - [sym_with_expression] = STATE(3006), - [sym_sizeof_expression] = STATE(3006), - [sym_typeof_expression] = STATE(3006), - [sym_makeref_expression] = STATE(3006), - [sym_ref_expression] = STATE(3006), - [sym_reftype_expression] = STATE(3006), - [sym_refvalue_expression] = STATE(3006), - [sym_stackalloc_expression] = STATE(3006), - [sym_range_expression] = STATE(3006), - [sym_tuple_expression] = STATE(2423), - [sym_literal] = STATE(3006), - [sym_character_literal] = STATE(3011), - [sym_string_literal] = STATE(3011), - [sym_raw_string_literal] = STATE(3011), - [sym_boolean_literal] = STATE(3011), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3006), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2603), + [sym__name] = STATE(5862), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2193), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(4577), + [sym_non_lvalue_expression] = STATE(3220), + [sym_lvalue_expression] = STATE(3403), + [sym__expression_statement_expression] = STATE(3236), + [sym_assignment_expression] = STATE(3221), + [sym_binary_expression] = STATE(3236), + [sym_postfix_unary_expression] = STATE(3221), + [sym_prefix_unary_expression] = STATE(3221), + [sym__pointer_indirection_expression] = STATE(2602), + [sym_query_expression] = STATE(3236), + [sym_from_clause] = STATE(6145), + [sym_conditional_expression] = STATE(3236), + [sym_conditional_access_expression] = STATE(3236), + [sym_as_expression] = STATE(3236), + [sym_is_expression] = STATE(3236), + [sym_is_pattern_expression] = STATE(3236), + [sym_cast_expression] = STATE(3236), + [sym_checked_expression] = STATE(3236), + [sym_invocation_expression] = STATE(3221), + [sym_switch_expression] = STATE(3236), + [sym_await_expression] = STATE(3221), + [sym_throw_expression] = STATE(3236), + [sym_element_access_expression] = STATE(2602), + [sym_interpolated_string_expression] = STATE(3236), + [sym_member_access_expression] = STATE(2602), + [sym_object_creation_expression] = STATE(3221), + [sym_parenthesized_expression] = STATE(3221), + [sym__parenthesized_lvalue_expression] = STATE(2602), + [sym_lambda_expression] = STATE(3236), + [sym__lambda_expression_init] = STATE(7639), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3236), + [sym_anonymous_method_expression] = STATE(3236), + [sym_anonymous_object_creation_expression] = STATE(3236), + [sym_implicit_array_creation_expression] = STATE(3236), + [sym_implicit_object_creation_expression] = STATE(3236), + [sym_implicit_stackalloc_expression] = STATE(3236), + [sym_initializer_expression] = STATE(3236), + [sym_default_expression] = STATE(3236), + [sym_with_expression] = STATE(3236), + [sym_sizeof_expression] = STATE(3236), + [sym_typeof_expression] = STATE(3236), + [sym_makeref_expression] = STATE(3236), + [sym_ref_expression] = STATE(3236), + [sym_reftype_expression] = STATE(3236), + [sym_refvalue_expression] = STATE(3236), + [sym_stackalloc_expression] = STATE(3236), + [sym_range_expression] = STATE(3236), + [sym_tuple_expression] = STATE(2602), + [sym_literal] = STATE(3236), + [sym_character_literal] = STATE(3272), + [sym_string_literal] = STATE(3272), + [sym_raw_string_literal] = STATE(3272), + [sym_boolean_literal] = STATE(3272), + [sym_identifier] = STATE(2261), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3236), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(1436), [sym_preproc_endregion] = STATE(1436), [sym_preproc_line] = STATE(1436), @@ -284543,47 +284429,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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3440), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3379), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1241), - [anon_sym_LPAREN] = ACTIONS(2281), - [anon_sym_ref] = ACTIONS(2283), - [anon_sym_LBRACE] = ACTIONS(1247), - [anon_sym_delegate] = ACTIONS(1249), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1149), + [anon_sym_LPAREN] = ACTIONS(1549), + [anon_sym_ref] = ACTIONS(1551), + [anon_sym_LBRACE] = ACTIONS(1155), + [anon_sym_delegate] = ACTIONS(1157), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(2285), + [anon_sym_new] = ACTIONS(1159), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1253), - [anon_sym_BANG] = ACTIONS(2289), - [anon_sym_TILDE] = ACTIONS(2289), - [anon_sym_PLUS_PLUS] = ACTIONS(2289), - [anon_sym_DASH_DASH] = ACTIONS(2289), - [anon_sym_true] = ACTIONS(1259), - [anon_sym_false] = ACTIONS(1259), - [anon_sym_PLUS] = ACTIONS(2287), - [anon_sym_DASH] = ACTIONS(2287), - [anon_sym_STAR] = ACTIONS(2291), - [anon_sym_CARET] = ACTIONS(2289), - [anon_sym_AMP] = ACTIONS(2289), - [anon_sym_this] = ACTIONS(1263), + [anon_sym_checked] = ACTIONS(1163), + [anon_sym_BANG] = ACTIONS(1555), + [anon_sym_TILDE] = ACTIONS(1555), + [anon_sym_PLUS_PLUS] = ACTIONS(1555), + [anon_sym_DASH_DASH] = ACTIONS(1555), + [anon_sym_true] = ACTIONS(1169), + [anon_sym_false] = ACTIONS(1169), + [anon_sym_PLUS] = ACTIONS(1553), + [anon_sym_DASH] = ACTIONS(1553), + [anon_sym_STAR] = ACTIONS(1557), + [anon_sym_CARET] = ACTIONS(1555), + [anon_sym_AMP] = ACTIONS(1555), + [anon_sym_this] = ACTIONS(1173), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1265), + [anon_sym_base] = ACTIONS(1175), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1267), - [anon_sym_unchecked] = ACTIONS(1253), + [sym_predefined_type] = ACTIONS(1177), + [anon_sym_unchecked] = ACTIONS(1163), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1269), - [anon_sym_throw] = ACTIONS(2293), + [anon_sym_default] = ACTIONS(1179), + [anon_sym_throw] = ACTIONS(1559), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2295), - [anon_sym_DOT_DOT] = ACTIONS(2297), + [anon_sym_await] = ACTIONS(1561), + [anon_sym_DOT_DOT] = ACTIONS(1563), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -284596,19 +284482,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1277), - [anon_sym_sizeof] = ACTIONS(1279), - [anon_sym_typeof] = ACTIONS(1281), - [anon_sym___makeref] = ACTIONS(1283), - [anon_sym___reftype] = ACTIONS(1285), - [anon_sym___refvalue] = ACTIONS(1287), - [sym_null_literal] = ACTIONS(1289), - [anon_sym_SQUOTE] = ACTIONS(1291), - [sym_integer_literal] = ACTIONS(1289), - [sym_real_literal] = ACTIONS(1293), - [anon_sym_DQUOTE] = ACTIONS(1295), - [sym_verbatim_string_literal] = ACTIONS(1293), - [aux_sym_preproc_if_token1] = ACTIONS(1297), + [anon_sym_stackalloc] = ACTIONS(1187), + [anon_sym_sizeof] = ACTIONS(1189), + [anon_sym_typeof] = ACTIONS(1191), + [anon_sym___makeref] = ACTIONS(1193), + [anon_sym___reftype] = ACTIONS(1195), + [anon_sym___refvalue] = ACTIONS(1197), + [sym_null_literal] = ACTIONS(1199), + [anon_sym_SQUOTE] = ACTIONS(1201), + [sym_integer_literal] = ACTIONS(1199), + [sym_real_literal] = ACTIONS(1203), + [anon_sym_DQUOTE] = ACTIONS(1205), + [sym_verbatim_string_literal] = ACTIONS(1203), + [aux_sym_preproc_if_token1] = ACTIONS(1207), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -284619,90 +284505,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1299), - [sym_interpolation_verbatim_start] = ACTIONS(1301), - [sym_interpolation_raw_start] = ACTIONS(1303), - [sym_raw_string_start] = ACTIONS(1305), + [sym_interpolation_regular_start] = ACTIONS(1209), + [sym_interpolation_verbatim_start] = ACTIONS(1211), + [sym_interpolation_raw_start] = ACTIONS(1213), + [sym_raw_string_start] = ACTIONS(1215), }, [1437] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2610), - [sym__name] = STATE(5898), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2197), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(5681), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(2612), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3080), - [sym_postfix_unary_expression] = STATE(3111), - [sym_prefix_unary_expression] = STATE(3111), - [sym__pointer_indirection_expression] = STATE(2609), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6154), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3080), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3111), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2609), - [sym_interpolated_string_expression] = STATE(3080), - [sym_member_access_expression] = STATE(2609), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3111), - [sym__parenthesized_lvalue_expression] = STATE(2609), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7530), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(3080), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3080), - [sym_typeof_expression] = STATE(3080), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2609), - [sym_literal] = STATE(3080), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2603), + [sym__name] = STATE(5862), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2193), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(4753), + [sym_non_lvalue_expression] = STATE(3220), + [sym_lvalue_expression] = STATE(3403), + [sym__expression_statement_expression] = STATE(3236), + [sym_assignment_expression] = STATE(3221), + [sym_binary_expression] = STATE(3236), + [sym_postfix_unary_expression] = STATE(3221), + [sym_prefix_unary_expression] = STATE(3221), + [sym__pointer_indirection_expression] = STATE(2602), + [sym_query_expression] = STATE(3236), + [sym_from_clause] = STATE(6145), + [sym_conditional_expression] = STATE(3236), + [sym_conditional_access_expression] = STATE(3236), + [sym_as_expression] = STATE(3236), + [sym_is_expression] = STATE(3236), + [sym_is_pattern_expression] = STATE(3236), + [sym_cast_expression] = STATE(3236), + [sym_checked_expression] = STATE(3236), + [sym_invocation_expression] = STATE(3221), + [sym_switch_expression] = STATE(3236), + [sym_await_expression] = STATE(3221), + [sym_throw_expression] = STATE(3236), + [sym_element_access_expression] = STATE(2602), + [sym_interpolated_string_expression] = STATE(3236), + [sym_member_access_expression] = STATE(2602), + [sym_object_creation_expression] = STATE(3221), + [sym_parenthesized_expression] = STATE(3221), + [sym__parenthesized_lvalue_expression] = STATE(2602), + [sym_lambda_expression] = STATE(3236), + [sym__lambda_expression_init] = STATE(7639), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3236), + [sym_anonymous_method_expression] = STATE(3236), + [sym_anonymous_object_creation_expression] = STATE(3236), + [sym_implicit_array_creation_expression] = STATE(3236), + [sym_implicit_object_creation_expression] = STATE(3236), + [sym_implicit_stackalloc_expression] = STATE(3236), + [sym_initializer_expression] = STATE(3236), + [sym_default_expression] = STATE(3236), + [sym_with_expression] = STATE(3236), + [sym_sizeof_expression] = STATE(3236), + [sym_typeof_expression] = STATE(3236), + [sym_makeref_expression] = STATE(3236), + [sym_ref_expression] = STATE(3236), + [sym_reftype_expression] = STATE(3236), + [sym_refvalue_expression] = STATE(3236), + [sym_stackalloc_expression] = STATE(3236), + [sym_range_expression] = STATE(3236), + [sym_tuple_expression] = STATE(2602), + [sym_literal] = STATE(3236), + [sym_character_literal] = STATE(3272), + [sym_string_literal] = STATE(3272), + [sym_raw_string_literal] = STATE(3272), + [sym_boolean_literal] = STATE(3272), + [sym_identifier] = STATE(2261), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3236), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(1437), [sym_preproc_endregion] = STATE(1437), [sym_preproc_line] = STATE(1437), @@ -284712,47 +284598,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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3379), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1153), - [anon_sym_LPAREN] = ACTIONS(2949), - [anon_sym_ref] = ACTIONS(661), - [anon_sym_LBRACE] = ACTIONS(1487), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1149), + [anon_sym_LPAREN] = ACTIONS(1549), + [anon_sym_ref] = ACTIONS(1551), + [anon_sym_LBRACE] = ACTIONS(1155), + [anon_sym_delegate] = ACTIONS(1157), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1061), + [anon_sym_new] = ACTIONS(1159), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = 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(1585), - [anon_sym_DASH] = ACTIONS(1585), - [anon_sym_STAR] = ACTIONS(1175), - [anon_sym_CARET] = ACTIONS(1587), - [anon_sym_AMP] = ACTIONS(1587), - [anon_sym_this] = ACTIONS(1177), + [anon_sym_checked] = ACTIONS(1163), + [anon_sym_BANG] = ACTIONS(1555), + [anon_sym_TILDE] = ACTIONS(1555), + [anon_sym_PLUS_PLUS] = ACTIONS(1555), + [anon_sym_DASH_DASH] = ACTIONS(1555), + [anon_sym_true] = ACTIONS(1169), + [anon_sym_false] = ACTIONS(1169), + [anon_sym_PLUS] = ACTIONS(1553), + [anon_sym_DASH] = ACTIONS(1553), + [anon_sym_STAR] = ACTIONS(1557), + [anon_sym_CARET] = ACTIONS(1555), + [anon_sym_AMP] = ACTIONS(1555), + [anon_sym_this] = ACTIONS(1173), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), + [anon_sym_base] = ACTIONS(1175), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1181), - [anon_sym_unchecked] = ACTIONS(1067), + [sym_predefined_type] = ACTIONS(1177), + [anon_sym_unchecked] = ACTIONS(1163), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1589), + [anon_sym_default] = ACTIONS(1179), + [anon_sym_throw] = ACTIONS(1559), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1591), - [anon_sym_DOT_DOT] = ACTIONS(123), + [anon_sym_await] = ACTIONS(1561), + [anon_sym_DOT_DOT] = ACTIONS(1563), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -284765,19 +284651,19 @@ static const uint16_t ts_parse_table[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(1089), + [anon_sym_stackalloc] = ACTIONS(1187), + [anon_sym_sizeof] = ACTIONS(1189), + [anon_sym_typeof] = ACTIONS(1191), + [anon_sym___makeref] = ACTIONS(1193), + [anon_sym___reftype] = ACTIONS(1195), + [anon_sym___refvalue] = ACTIONS(1197), + [sym_null_literal] = ACTIONS(1199), + [anon_sym_SQUOTE] = ACTIONS(1201), + [sym_integer_literal] = ACTIONS(1199), + [sym_real_literal] = ACTIONS(1203), + [anon_sym_DQUOTE] = ACTIONS(1205), + [sym_verbatim_string_literal] = ACTIONS(1203), + [aux_sym_preproc_if_token1] = ACTIONS(1207), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -284788,90 +284674,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(151), - [sym_interpolation_verbatim_start] = ACTIONS(153), - [sym_interpolation_raw_start] = ACTIONS(155), - [sym_raw_string_start] = ACTIONS(157), + [sym_interpolation_regular_start] = ACTIONS(1209), + [sym_interpolation_verbatim_start] = ACTIONS(1211), + [sym_interpolation_raw_start] = ACTIONS(1213), + [sym_raw_string_start] = ACTIONS(1215), }, [1438] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2610), - [sym__name] = STATE(5898), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2197), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(3142), - [sym_non_lvalue_expression] = STATE(3277), - [sym_lvalue_expression] = STATE(3023), - [sym__expression_statement_expression] = STATE(3228), - [sym_assignment_expression] = STATE(3289), - [sym_binary_expression] = STATE(3228), - [sym_postfix_unary_expression] = STATE(3289), - [sym_prefix_unary_expression] = STATE(3289), - [sym__pointer_indirection_expression] = STATE(2609), - [sym_query_expression] = STATE(3228), - [sym_from_clause] = STATE(6172), - [sym_conditional_expression] = STATE(3228), - [sym_conditional_access_expression] = STATE(3228), - [sym_as_expression] = STATE(3228), - [sym_is_expression] = STATE(3228), - [sym_is_pattern_expression] = STATE(3228), - [sym_cast_expression] = STATE(3228), - [sym_checked_expression] = STATE(3228), - [sym_invocation_expression] = STATE(3289), - [sym_switch_expression] = STATE(3228), - [sym_await_expression] = STATE(3289), - [sym_throw_expression] = STATE(3228), - [sym_element_access_expression] = STATE(2609), - [sym_interpolated_string_expression] = STATE(3228), - [sym_member_access_expression] = STATE(2609), - [sym_object_creation_expression] = STATE(3289), - [sym_parenthesized_expression] = STATE(3289), - [sym__parenthesized_lvalue_expression] = STATE(2609), - [sym_lambda_expression] = STATE(3228), - [sym__lambda_expression_init] = STATE(7653), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3228), - [sym_anonymous_method_expression] = STATE(3228), - [sym_anonymous_object_creation_expression] = STATE(3228), - [sym_implicit_array_creation_expression] = STATE(3228), - [sym_implicit_object_creation_expression] = STATE(3228), - [sym_implicit_stackalloc_expression] = STATE(3228), - [sym_initializer_expression] = STATE(3228), - [sym_default_expression] = STATE(3228), - [sym_with_expression] = STATE(3228), - [sym_sizeof_expression] = STATE(3228), - [sym_typeof_expression] = STATE(3228), - [sym_makeref_expression] = STATE(3228), - [sym_ref_expression] = STATE(3228), - [sym_reftype_expression] = STATE(3228), - [sym_refvalue_expression] = STATE(3228), - [sym_stackalloc_expression] = STATE(3228), - [sym_range_expression] = STATE(3228), - [sym_tuple_expression] = STATE(2609), - [sym_literal] = STATE(3228), - [sym_character_literal] = STATE(3278), - [sym_string_literal] = STATE(3278), - [sym_raw_string_literal] = STATE(3278), - [sym_boolean_literal] = STATE(3278), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3228), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2603), + [sym__name] = STATE(5862), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2193), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(4737), + [sym_non_lvalue_expression] = STATE(3220), + [sym_lvalue_expression] = STATE(3403), + [sym__expression_statement_expression] = STATE(3236), + [sym_assignment_expression] = STATE(3221), + [sym_binary_expression] = STATE(3236), + [sym_postfix_unary_expression] = STATE(3221), + [sym_prefix_unary_expression] = STATE(3221), + [sym__pointer_indirection_expression] = STATE(2602), + [sym_query_expression] = STATE(3236), + [sym_from_clause] = STATE(6145), + [sym_conditional_expression] = STATE(3236), + [sym_conditional_access_expression] = STATE(3236), + [sym_as_expression] = STATE(3236), + [sym_is_expression] = STATE(3236), + [sym_is_pattern_expression] = STATE(3236), + [sym_cast_expression] = STATE(3236), + [sym_checked_expression] = STATE(3236), + [sym_invocation_expression] = STATE(3221), + [sym_switch_expression] = STATE(3236), + [sym_await_expression] = STATE(3221), + [sym_throw_expression] = STATE(3236), + [sym_element_access_expression] = STATE(2602), + [sym_interpolated_string_expression] = STATE(3236), + [sym_member_access_expression] = STATE(2602), + [sym_object_creation_expression] = STATE(3221), + [sym_parenthesized_expression] = STATE(3221), + [sym__parenthesized_lvalue_expression] = STATE(2602), + [sym_lambda_expression] = STATE(3236), + [sym__lambda_expression_init] = STATE(7639), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3236), + [sym_anonymous_method_expression] = STATE(3236), + [sym_anonymous_object_creation_expression] = STATE(3236), + [sym_implicit_array_creation_expression] = STATE(3236), + [sym_implicit_object_creation_expression] = STATE(3236), + [sym_implicit_stackalloc_expression] = STATE(3236), + [sym_initializer_expression] = STATE(3236), + [sym_default_expression] = STATE(3236), + [sym_with_expression] = STATE(3236), + [sym_sizeof_expression] = STATE(3236), + [sym_typeof_expression] = STATE(3236), + [sym_makeref_expression] = STATE(3236), + [sym_ref_expression] = STATE(3236), + [sym_reftype_expression] = STATE(3236), + [sym_refvalue_expression] = STATE(3236), + [sym_stackalloc_expression] = STATE(3236), + [sym_range_expression] = STATE(3236), + [sym_tuple_expression] = STATE(2602), + [sym_literal] = STATE(3236), + [sym_character_literal] = STATE(3272), + [sym_string_literal] = STATE(3272), + [sym_raw_string_literal] = STATE(3272), + [sym_boolean_literal] = STATE(3272), + [sym_identifier] = STATE(2261), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3236), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(1438), [sym_preproc_endregion] = STATE(1438), [sym_preproc_line] = STATE(1438), @@ -284881,47 +284767,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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3396), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3379), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1153), - [anon_sym_LPAREN] = ACTIONS(1155), - [anon_sym_ref] = ACTIONS(1157), - [anon_sym_LBRACE] = ACTIONS(1159), - [anon_sym_delegate] = ACTIONS(1161), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1149), + [anon_sym_LPAREN] = ACTIONS(1549), + [anon_sym_ref] = ACTIONS(1551), + [anon_sym_LBRACE] = ACTIONS(1155), + [anon_sym_delegate] = ACTIONS(1157), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1163), + [anon_sym_new] = ACTIONS(1159), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1167), - [anon_sym_BANG] = ACTIONS(1171), - [anon_sym_TILDE] = ACTIONS(1171), - [anon_sym_PLUS_PLUS] = ACTIONS(1171), - [anon_sym_DASH_DASH] = ACTIONS(1171), - [anon_sym_true] = ACTIONS(1173), - [anon_sym_false] = ACTIONS(1173), - [anon_sym_PLUS] = ACTIONS(1169), - [anon_sym_DASH] = ACTIONS(1169), - [anon_sym_STAR] = ACTIONS(1175), - [anon_sym_CARET] = ACTIONS(1171), - [anon_sym_AMP] = ACTIONS(1171), - [anon_sym_this] = ACTIONS(1177), + [anon_sym_checked] = ACTIONS(1163), + [anon_sym_BANG] = ACTIONS(1555), + [anon_sym_TILDE] = ACTIONS(1555), + [anon_sym_PLUS_PLUS] = ACTIONS(1555), + [anon_sym_DASH_DASH] = ACTIONS(1555), + [anon_sym_true] = ACTIONS(1169), + [anon_sym_false] = ACTIONS(1169), + [anon_sym_PLUS] = ACTIONS(1553), + [anon_sym_DASH] = ACTIONS(1553), + [anon_sym_STAR] = ACTIONS(1557), + [anon_sym_CARET] = ACTIONS(1555), + [anon_sym_AMP] = ACTIONS(1555), + [anon_sym_this] = ACTIONS(1173), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1179), + [anon_sym_base] = ACTIONS(1175), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1181), - [anon_sym_unchecked] = ACTIONS(1167), + [sym_predefined_type] = ACTIONS(1177), + [anon_sym_unchecked] = ACTIONS(1163), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1183), - [anon_sym_throw] = ACTIONS(1185), + [anon_sym_default] = ACTIONS(1179), + [anon_sym_throw] = ACTIONS(1559), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1187), - [anon_sym_DOT_DOT] = ACTIONS(1189), + [anon_sym_await] = ACTIONS(1561), + [anon_sym_DOT_DOT] = ACTIONS(1563), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -284934,19 +284820,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1191), - [anon_sym_sizeof] = ACTIONS(1193), - [anon_sym_typeof] = ACTIONS(1195), - [anon_sym___makeref] = ACTIONS(1197), - [anon_sym___reftype] = ACTIONS(1199), - [anon_sym___refvalue] = ACTIONS(1201), - [sym_null_literal] = ACTIONS(1203), - [anon_sym_SQUOTE] = ACTIONS(1205), - [sym_integer_literal] = ACTIONS(1203), - [sym_real_literal] = ACTIONS(1207), - [anon_sym_DQUOTE] = ACTIONS(1209), - [sym_verbatim_string_literal] = ACTIONS(1207), - [aux_sym_preproc_if_token1] = ACTIONS(1211), + [anon_sym_stackalloc] = ACTIONS(1187), + [anon_sym_sizeof] = ACTIONS(1189), + [anon_sym_typeof] = ACTIONS(1191), + [anon_sym___makeref] = ACTIONS(1193), + [anon_sym___reftype] = ACTIONS(1195), + [anon_sym___refvalue] = ACTIONS(1197), + [sym_null_literal] = ACTIONS(1199), + [anon_sym_SQUOTE] = ACTIONS(1201), + [sym_integer_literal] = ACTIONS(1199), + [sym_real_literal] = ACTIONS(1203), + [anon_sym_DQUOTE] = ACTIONS(1205), + [sym_verbatim_string_literal] = ACTIONS(1203), + [aux_sym_preproc_if_token1] = ACTIONS(1207), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -284957,90 +284843,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1213), - [sym_interpolation_verbatim_start] = ACTIONS(1215), - [sym_interpolation_raw_start] = ACTIONS(1217), - [sym_raw_string_start] = ACTIONS(1219), + [sym_interpolation_regular_start] = ACTIONS(1209), + [sym_interpolation_verbatim_start] = ACTIONS(1211), + [sym_interpolation_raw_start] = ACTIONS(1213), + [sym_raw_string_start] = ACTIONS(1215), }, [1439] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2762), - [sym__name] = STATE(5890), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2375), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(5677), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(2774), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3080), - [sym_postfix_unary_expression] = STATE(3111), - [sym_prefix_unary_expression] = STATE(3111), - [sym__pointer_indirection_expression] = STATE(2747), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6154), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3080), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3111), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2747), - [sym_interpolated_string_expression] = STATE(3080), - [sym_member_access_expression] = STATE(2747), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3111), - [sym__parenthesized_lvalue_expression] = STATE(2747), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7530), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(3080), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3080), - [sym_typeof_expression] = STATE(3080), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2747), - [sym_literal] = STATE(3080), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2603), + [sym__name] = STATE(5862), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2193), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(4738), + [sym_non_lvalue_expression] = STATE(3220), + [sym_lvalue_expression] = STATE(3403), + [sym__expression_statement_expression] = STATE(3236), + [sym_assignment_expression] = STATE(3221), + [sym_binary_expression] = STATE(3236), + [sym_postfix_unary_expression] = STATE(3221), + [sym_prefix_unary_expression] = STATE(3221), + [sym__pointer_indirection_expression] = STATE(2602), + [sym_query_expression] = STATE(3236), + [sym_from_clause] = STATE(6145), + [sym_conditional_expression] = STATE(3236), + [sym_conditional_access_expression] = STATE(3236), + [sym_as_expression] = STATE(3236), + [sym_is_expression] = STATE(3236), + [sym_is_pattern_expression] = STATE(3236), + [sym_cast_expression] = STATE(3236), + [sym_checked_expression] = STATE(3236), + [sym_invocation_expression] = STATE(3221), + [sym_switch_expression] = STATE(3236), + [sym_await_expression] = STATE(3221), + [sym_throw_expression] = STATE(3236), + [sym_element_access_expression] = STATE(2602), + [sym_interpolated_string_expression] = STATE(3236), + [sym_member_access_expression] = STATE(2602), + [sym_object_creation_expression] = STATE(3221), + [sym_parenthesized_expression] = STATE(3221), + [sym__parenthesized_lvalue_expression] = STATE(2602), + [sym_lambda_expression] = STATE(3236), + [sym__lambda_expression_init] = STATE(7639), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3236), + [sym_anonymous_method_expression] = STATE(3236), + [sym_anonymous_object_creation_expression] = STATE(3236), + [sym_implicit_array_creation_expression] = STATE(3236), + [sym_implicit_object_creation_expression] = STATE(3236), + [sym_implicit_stackalloc_expression] = STATE(3236), + [sym_initializer_expression] = STATE(3236), + [sym_default_expression] = STATE(3236), + [sym_with_expression] = STATE(3236), + [sym_sizeof_expression] = STATE(3236), + [sym_typeof_expression] = STATE(3236), + [sym_makeref_expression] = STATE(3236), + [sym_ref_expression] = STATE(3236), + [sym_reftype_expression] = STATE(3236), + [sym_refvalue_expression] = STATE(3236), + [sym_stackalloc_expression] = STATE(3236), + [sym_range_expression] = STATE(3236), + [sym_tuple_expression] = STATE(2602), + [sym_literal] = STATE(3236), + [sym_character_literal] = STATE(3272), + [sym_string_literal] = STATE(3272), + [sym_raw_string_literal] = STATE(3272), + [sym_boolean_literal] = STATE(3272), + [sym_identifier] = STATE(2261), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3236), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(1439), [sym_preproc_endregion] = STATE(1439), [sym_preproc_line] = STATE(1439), @@ -285050,47 +284936,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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3379), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1307), - [anon_sym_LPAREN] = ACTIONS(2945), - [anon_sym_ref] = ACTIONS(661), - [anon_sym_LBRACE] = ACTIONS(1487), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1149), + [anon_sym_LPAREN] = ACTIONS(1549), + [anon_sym_ref] = ACTIONS(1551), + [anon_sym_LBRACE] = ACTIONS(1155), + [anon_sym_delegate] = ACTIONS(1157), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1061), + [anon_sym_new] = ACTIONS(1159), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = 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(1585), - [anon_sym_DASH] = ACTIONS(1585), - [anon_sym_STAR] = ACTIONS(1815), - [anon_sym_CARET] = ACTIONS(1587), - [anon_sym_AMP] = ACTIONS(1587), - [anon_sym_this] = ACTIONS(1323), + [anon_sym_checked] = ACTIONS(1163), + [anon_sym_BANG] = ACTIONS(1555), + [anon_sym_TILDE] = ACTIONS(1555), + [anon_sym_PLUS_PLUS] = ACTIONS(1555), + [anon_sym_DASH_DASH] = ACTIONS(1555), + [anon_sym_true] = ACTIONS(1169), + [anon_sym_false] = ACTIONS(1169), + [anon_sym_PLUS] = ACTIONS(1553), + [anon_sym_DASH] = ACTIONS(1553), + [anon_sym_STAR] = ACTIONS(1557), + [anon_sym_CARET] = ACTIONS(1555), + [anon_sym_AMP] = ACTIONS(1555), + [anon_sym_this] = ACTIONS(1173), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), + [anon_sym_base] = ACTIONS(1175), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1067), + [sym_predefined_type] = ACTIONS(1177), + [anon_sym_unchecked] = ACTIONS(1163), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1589), + [anon_sym_default] = ACTIONS(1179), + [anon_sym_throw] = ACTIONS(1559), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1591), - [anon_sym_DOT_DOT] = ACTIONS(123), + [anon_sym_await] = ACTIONS(1561), + [anon_sym_DOT_DOT] = ACTIONS(1563), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -285103,19 +284989,19 @@ static const uint16_t ts_parse_table[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(1089), + [anon_sym_stackalloc] = ACTIONS(1187), + [anon_sym_sizeof] = ACTIONS(1189), + [anon_sym_typeof] = ACTIONS(1191), + [anon_sym___makeref] = ACTIONS(1193), + [anon_sym___reftype] = ACTIONS(1195), + [anon_sym___refvalue] = ACTIONS(1197), + [sym_null_literal] = ACTIONS(1199), + [anon_sym_SQUOTE] = ACTIONS(1201), + [sym_integer_literal] = ACTIONS(1199), + [sym_real_literal] = ACTIONS(1203), + [anon_sym_DQUOTE] = ACTIONS(1205), + [sym_verbatim_string_literal] = ACTIONS(1203), + [aux_sym_preproc_if_token1] = ACTIONS(1207), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -285126,90 +285012,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(151), - [sym_interpolation_verbatim_start] = ACTIONS(153), - [sym_interpolation_raw_start] = ACTIONS(155), - [sym_raw_string_start] = ACTIONS(157), + [sym_interpolation_regular_start] = ACTIONS(1209), + [sym_interpolation_verbatim_start] = ACTIONS(1211), + [sym_interpolation_raw_start] = ACTIONS(1213), + [sym_raw_string_start] = ACTIONS(1215), }, [1440] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(5160), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2204), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(3543), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3677), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3080), - [sym_postfix_unary_expression] = STATE(3111), - [sym_prefix_unary_expression] = STATE(3111), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6153), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3080), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3111), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3080), - [sym_member_access_expression] = STATE(2484), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3111), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7549), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(3080), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3080), - [sym_typeof_expression] = STATE(3080), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2484), - [sym_literal] = STATE(3080), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2267), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2603), + [sym__name] = STATE(5862), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2193), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(4739), + [sym_non_lvalue_expression] = STATE(3220), + [sym_lvalue_expression] = STATE(3403), + [sym__expression_statement_expression] = STATE(3236), + [sym_assignment_expression] = STATE(3221), + [sym_binary_expression] = STATE(3236), + [sym_postfix_unary_expression] = STATE(3221), + [sym_prefix_unary_expression] = STATE(3221), + [sym__pointer_indirection_expression] = STATE(2602), + [sym_query_expression] = STATE(3236), + [sym_from_clause] = STATE(6145), + [sym_conditional_expression] = STATE(3236), + [sym_conditional_access_expression] = STATE(3236), + [sym_as_expression] = STATE(3236), + [sym_is_expression] = STATE(3236), + [sym_is_pattern_expression] = STATE(3236), + [sym_cast_expression] = STATE(3236), + [sym_checked_expression] = STATE(3236), + [sym_invocation_expression] = STATE(3221), + [sym_switch_expression] = STATE(3236), + [sym_await_expression] = STATE(3221), + [sym_throw_expression] = STATE(3236), + [sym_element_access_expression] = STATE(2602), + [sym_interpolated_string_expression] = STATE(3236), + [sym_member_access_expression] = STATE(2602), + [sym_object_creation_expression] = STATE(3221), + [sym_parenthesized_expression] = STATE(3221), + [sym__parenthesized_lvalue_expression] = STATE(2602), + [sym_lambda_expression] = STATE(3236), + [sym__lambda_expression_init] = STATE(7639), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3236), + [sym_anonymous_method_expression] = STATE(3236), + [sym_anonymous_object_creation_expression] = STATE(3236), + [sym_implicit_array_creation_expression] = STATE(3236), + [sym_implicit_object_creation_expression] = STATE(3236), + [sym_implicit_stackalloc_expression] = STATE(3236), + [sym_initializer_expression] = STATE(3236), + [sym_default_expression] = STATE(3236), + [sym_with_expression] = STATE(3236), + [sym_sizeof_expression] = STATE(3236), + [sym_typeof_expression] = STATE(3236), + [sym_makeref_expression] = STATE(3236), + [sym_ref_expression] = STATE(3236), + [sym_reftype_expression] = STATE(3236), + [sym_refvalue_expression] = STATE(3236), + [sym_stackalloc_expression] = STATE(3236), + [sym_range_expression] = STATE(3236), + [sym_tuple_expression] = STATE(2602), + [sym_literal] = STATE(3236), + [sym_character_literal] = STATE(3272), + [sym_string_literal] = STATE(3272), + [sym_raw_string_literal] = STATE(3272), + [sym_boolean_literal] = STATE(3272), + [sym_identifier] = STATE(2261), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3236), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(1440), [sym_preproc_endregion] = STATE(1440), [sym_preproc_line] = STATE(1440), @@ -285219,47 +285105,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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3379), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1481), - [anon_sym_LPAREN] = ACTIONS(2047), - [anon_sym_ref] = ACTIONS(2049), - [anon_sym_LBRACE] = ACTIONS(1487), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1149), + [anon_sym_LPAREN] = ACTIONS(1549), + [anon_sym_ref] = ACTIONS(1551), + [anon_sym_LBRACE] = ACTIONS(1155), + [anon_sym_delegate] = ACTIONS(1157), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1061), + [anon_sym_new] = ACTIONS(1159), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1067), - [anon_sym_BANG] = ACTIONS(2053), - [anon_sym_TILDE] = ACTIONS(2053), - [anon_sym_PLUS_PLUS] = ACTIONS(2053), - [anon_sym_DASH_DASH] = ACTIONS(2053), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(2051), - [anon_sym_DASH] = ACTIONS(2051), - [anon_sym_STAR] = ACTIONS(2055), - [anon_sym_CARET] = ACTIONS(2053), - [anon_sym_AMP] = ACTIONS(2053), - [anon_sym_this] = ACTIONS(83), + [anon_sym_checked] = ACTIONS(1163), + [anon_sym_BANG] = ACTIONS(1555), + [anon_sym_TILDE] = ACTIONS(1555), + [anon_sym_PLUS_PLUS] = ACTIONS(1555), + [anon_sym_DASH_DASH] = ACTIONS(1555), + [anon_sym_true] = ACTIONS(1169), + [anon_sym_false] = ACTIONS(1169), + [anon_sym_PLUS] = ACTIONS(1553), + [anon_sym_DASH] = ACTIONS(1553), + [anon_sym_STAR] = ACTIONS(1557), + [anon_sym_CARET] = ACTIONS(1555), + [anon_sym_AMP] = ACTIONS(1555), + [anon_sym_this] = ACTIONS(1173), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), + [anon_sym_base] = ACTIONS(1175), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1067), + [sym_predefined_type] = ACTIONS(1177), + [anon_sym_unchecked] = ACTIONS(1163), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(2057), + [anon_sym_default] = ACTIONS(1179), + [anon_sym_throw] = ACTIONS(1559), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2059), - [anon_sym_DOT_DOT] = ACTIONS(2061), + [anon_sym_await] = ACTIONS(1561), + [anon_sym_DOT_DOT] = ACTIONS(1563), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -285272,19 +285158,19 @@ static const uint16_t ts_parse_table[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(1089), + [anon_sym_stackalloc] = ACTIONS(1187), + [anon_sym_sizeof] = ACTIONS(1189), + [anon_sym_typeof] = ACTIONS(1191), + [anon_sym___makeref] = ACTIONS(1193), + [anon_sym___reftype] = ACTIONS(1195), + [anon_sym___refvalue] = ACTIONS(1197), + [sym_null_literal] = ACTIONS(1199), + [anon_sym_SQUOTE] = ACTIONS(1201), + [sym_integer_literal] = ACTIONS(1199), + [sym_real_literal] = ACTIONS(1203), + [anon_sym_DQUOTE] = ACTIONS(1205), + [sym_verbatim_string_literal] = ACTIONS(1203), + [aux_sym_preproc_if_token1] = ACTIONS(1207), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -285295,90 +285181,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(151), - [sym_interpolation_verbatim_start] = ACTIONS(153), - [sym_interpolation_raw_start] = ACTIONS(155), - [sym_raw_string_start] = ACTIONS(157), + [sym_interpolation_regular_start] = ACTIONS(1209), + [sym_interpolation_verbatim_start] = ACTIONS(1211), + [sym_interpolation_raw_start] = ACTIONS(1213), + [sym_raw_string_start] = ACTIONS(1215), }, [1441] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2610), - [sym__name] = STATE(5886), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2319), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(5681), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(2612), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3080), - [sym_postfix_unary_expression] = STATE(3111), - [sym_prefix_unary_expression] = STATE(3111), - [sym__pointer_indirection_expression] = STATE(2609), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6154), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3080), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3111), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2609), - [sym_interpolated_string_expression] = STATE(3080), - [sym_member_access_expression] = STATE(2609), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3111), - [sym__parenthesized_lvalue_expression] = STATE(2609), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7530), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(3080), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3080), - [sym_typeof_expression] = STATE(3080), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2609), - [sym_literal] = STATE(3080), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2267), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2603), + [sym__name] = STATE(5862), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2193), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(4578), + [sym_non_lvalue_expression] = STATE(3220), + [sym_lvalue_expression] = STATE(3403), + [sym__expression_statement_expression] = STATE(3236), + [sym_assignment_expression] = STATE(3221), + [sym_binary_expression] = STATE(3236), + [sym_postfix_unary_expression] = STATE(3221), + [sym_prefix_unary_expression] = STATE(3221), + [sym__pointer_indirection_expression] = STATE(2602), + [sym_query_expression] = STATE(3236), + [sym_from_clause] = STATE(6145), + [sym_conditional_expression] = STATE(3236), + [sym_conditional_access_expression] = STATE(3236), + [sym_as_expression] = STATE(3236), + [sym_is_expression] = STATE(3236), + [sym_is_pattern_expression] = STATE(3236), + [sym_cast_expression] = STATE(3236), + [sym_checked_expression] = STATE(3236), + [sym_invocation_expression] = STATE(3221), + [sym_switch_expression] = STATE(3236), + [sym_await_expression] = STATE(3221), + [sym_throw_expression] = STATE(3236), + [sym_element_access_expression] = STATE(2602), + [sym_interpolated_string_expression] = STATE(3236), + [sym_member_access_expression] = STATE(2602), + [sym_object_creation_expression] = STATE(3221), + [sym_parenthesized_expression] = STATE(3221), + [sym__parenthesized_lvalue_expression] = STATE(2602), + [sym_lambda_expression] = STATE(3236), + [sym__lambda_expression_init] = STATE(7639), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3236), + [sym_anonymous_method_expression] = STATE(3236), + [sym_anonymous_object_creation_expression] = STATE(3236), + [sym_implicit_array_creation_expression] = STATE(3236), + [sym_implicit_object_creation_expression] = STATE(3236), + [sym_implicit_stackalloc_expression] = STATE(3236), + [sym_initializer_expression] = STATE(3236), + [sym_default_expression] = STATE(3236), + [sym_with_expression] = STATE(3236), + [sym_sizeof_expression] = STATE(3236), + [sym_typeof_expression] = STATE(3236), + [sym_makeref_expression] = STATE(3236), + [sym_ref_expression] = STATE(3236), + [sym_reftype_expression] = STATE(3236), + [sym_refvalue_expression] = STATE(3236), + [sym_stackalloc_expression] = STATE(3236), + [sym_range_expression] = STATE(3236), + [sym_tuple_expression] = STATE(2602), + [sym_literal] = STATE(3236), + [sym_character_literal] = STATE(3272), + [sym_string_literal] = STATE(3272), + [sym_raw_string_literal] = STATE(3272), + [sym_boolean_literal] = STATE(3272), + [sym_identifier] = STATE(2261), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3236), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(1441), [sym_preproc_endregion] = STATE(1441), [sym_preproc_line] = STATE(1441), @@ -285388,47 +285274,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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3379), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1153), - [anon_sym_LPAREN] = ACTIONS(2949), - [anon_sym_ref] = ACTIONS(661), - [anon_sym_LBRACE] = ACTIONS(1487), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1149), + [anon_sym_LPAREN] = ACTIONS(1549), + [anon_sym_ref] = ACTIONS(1551), + [anon_sym_LBRACE] = ACTIONS(1155), + [anon_sym_delegate] = ACTIONS(1157), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1061), + [anon_sym_new] = ACTIONS(1159), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = 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(1585), - [anon_sym_DASH] = ACTIONS(1585), - [anon_sym_STAR] = ACTIONS(1535), - [anon_sym_CARET] = ACTIONS(1587), - [anon_sym_AMP] = ACTIONS(1587), - [anon_sym_this] = ACTIONS(1177), + [anon_sym_checked] = ACTIONS(1163), + [anon_sym_BANG] = ACTIONS(1555), + [anon_sym_TILDE] = ACTIONS(1555), + [anon_sym_PLUS_PLUS] = ACTIONS(1555), + [anon_sym_DASH_DASH] = ACTIONS(1555), + [anon_sym_true] = ACTIONS(1169), + [anon_sym_false] = ACTIONS(1169), + [anon_sym_PLUS] = ACTIONS(1553), + [anon_sym_DASH] = ACTIONS(1553), + [anon_sym_STAR] = ACTIONS(1557), + [anon_sym_CARET] = ACTIONS(1555), + [anon_sym_AMP] = ACTIONS(1555), + [anon_sym_this] = ACTIONS(1173), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), + [anon_sym_base] = ACTIONS(1175), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1181), - [anon_sym_unchecked] = ACTIONS(1067), + [sym_predefined_type] = ACTIONS(1177), + [anon_sym_unchecked] = ACTIONS(1163), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1589), + [anon_sym_default] = ACTIONS(1179), + [anon_sym_throw] = ACTIONS(1559), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1591), - [anon_sym_DOT_DOT] = ACTIONS(123), + [anon_sym_await] = ACTIONS(1561), + [anon_sym_DOT_DOT] = ACTIONS(1563), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -285441,19 +285327,19 @@ static const uint16_t ts_parse_table[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(1089), + [anon_sym_stackalloc] = ACTIONS(1187), + [anon_sym_sizeof] = ACTIONS(1189), + [anon_sym_typeof] = ACTIONS(1191), + [anon_sym___makeref] = ACTIONS(1193), + [anon_sym___reftype] = ACTIONS(1195), + [anon_sym___refvalue] = ACTIONS(1197), + [sym_null_literal] = ACTIONS(1199), + [anon_sym_SQUOTE] = ACTIONS(1201), + [sym_integer_literal] = ACTIONS(1199), + [sym_real_literal] = ACTIONS(1203), + [anon_sym_DQUOTE] = ACTIONS(1205), + [sym_verbatim_string_literal] = ACTIONS(1203), + [aux_sym_preproc_if_token1] = ACTIONS(1207), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -285464,90 +285350,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(151), - [sym_interpolation_verbatim_start] = ACTIONS(153), - [sym_interpolation_raw_start] = ACTIONS(155), - [sym_raw_string_start] = ACTIONS(157), + [sym_interpolation_regular_start] = ACTIONS(1209), + [sym_interpolation_verbatim_start] = ACTIONS(1211), + [sym_interpolation_raw_start] = ACTIONS(1213), + [sym_raw_string_start] = ACTIONS(1215), }, [1442] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2610), - [sym__name] = STATE(5879), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2197), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(3142), - [sym_non_lvalue_expression] = STATE(3277), - [sym_lvalue_expression] = STATE(3134), - [sym__expression_statement_expression] = STATE(3228), - [sym_assignment_expression] = STATE(3289), - [sym_binary_expression] = STATE(3228), - [sym_postfix_unary_expression] = STATE(3289), - [sym_prefix_unary_expression] = STATE(3289), - [sym__pointer_indirection_expression] = STATE(2609), - [sym_query_expression] = STATE(3228), - [sym_from_clause] = STATE(6162), - [sym_conditional_expression] = STATE(3228), - [sym_conditional_access_expression] = STATE(3228), - [sym_as_expression] = STATE(3228), - [sym_is_expression] = STATE(3228), - [sym_is_pattern_expression] = STATE(3228), - [sym_cast_expression] = STATE(3228), - [sym_checked_expression] = STATE(3228), - [sym_invocation_expression] = STATE(3289), - [sym_switch_expression] = STATE(3228), - [sym_await_expression] = STATE(3289), - [sym_throw_expression] = STATE(3228), - [sym_element_access_expression] = STATE(2609), - [sym_interpolated_string_expression] = STATE(3228), - [sym_member_access_expression] = STATE(2609), - [sym_object_creation_expression] = STATE(3289), - [sym_parenthesized_expression] = STATE(3289), - [sym__parenthesized_lvalue_expression] = STATE(2609), - [sym_lambda_expression] = STATE(3228), - [sym__lambda_expression_init] = STATE(7695), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3228), - [sym_anonymous_method_expression] = STATE(3228), - [sym_anonymous_object_creation_expression] = STATE(3228), - [sym_implicit_array_creation_expression] = STATE(3228), - [sym_implicit_object_creation_expression] = STATE(3228), - [sym_implicit_stackalloc_expression] = STATE(3228), - [sym_initializer_expression] = STATE(3228), - [sym_default_expression] = STATE(3228), - [sym_with_expression] = STATE(3228), - [sym_sizeof_expression] = STATE(3228), - [sym_typeof_expression] = STATE(3228), - [sym_makeref_expression] = STATE(3228), - [sym_ref_expression] = STATE(3228), - [sym_reftype_expression] = STATE(3228), - [sym_refvalue_expression] = STATE(3228), - [sym_stackalloc_expression] = STATE(3228), - [sym_range_expression] = STATE(3228), - [sym_tuple_expression] = STATE(2609), - [sym_literal] = STATE(3228), - [sym_character_literal] = STATE(3278), - [sym_string_literal] = STATE(3278), - [sym_raw_string_literal] = STATE(3278), - [sym_boolean_literal] = STATE(3278), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3228), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2603), + [sym__name] = STATE(5862), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2193), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(4740), + [sym_non_lvalue_expression] = STATE(3220), + [sym_lvalue_expression] = STATE(3403), + [sym__expression_statement_expression] = STATE(3236), + [sym_assignment_expression] = STATE(3221), + [sym_binary_expression] = STATE(3236), + [sym_postfix_unary_expression] = STATE(3221), + [sym_prefix_unary_expression] = STATE(3221), + [sym__pointer_indirection_expression] = STATE(2602), + [sym_query_expression] = STATE(3236), + [sym_from_clause] = STATE(6145), + [sym_conditional_expression] = STATE(3236), + [sym_conditional_access_expression] = STATE(3236), + [sym_as_expression] = STATE(3236), + [sym_is_expression] = STATE(3236), + [sym_is_pattern_expression] = STATE(3236), + [sym_cast_expression] = STATE(3236), + [sym_checked_expression] = STATE(3236), + [sym_invocation_expression] = STATE(3221), + [sym_switch_expression] = STATE(3236), + [sym_await_expression] = STATE(3221), + [sym_throw_expression] = STATE(3236), + [sym_element_access_expression] = STATE(2602), + [sym_interpolated_string_expression] = STATE(3236), + [sym_member_access_expression] = STATE(2602), + [sym_object_creation_expression] = STATE(3221), + [sym_parenthesized_expression] = STATE(3221), + [sym__parenthesized_lvalue_expression] = STATE(2602), + [sym_lambda_expression] = STATE(3236), + [sym__lambda_expression_init] = STATE(7639), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3236), + [sym_anonymous_method_expression] = STATE(3236), + [sym_anonymous_object_creation_expression] = STATE(3236), + [sym_implicit_array_creation_expression] = STATE(3236), + [sym_implicit_object_creation_expression] = STATE(3236), + [sym_implicit_stackalloc_expression] = STATE(3236), + [sym_initializer_expression] = STATE(3236), + [sym_default_expression] = STATE(3236), + [sym_with_expression] = STATE(3236), + [sym_sizeof_expression] = STATE(3236), + [sym_typeof_expression] = STATE(3236), + [sym_makeref_expression] = STATE(3236), + [sym_ref_expression] = STATE(3236), + [sym_reftype_expression] = STATE(3236), + [sym_refvalue_expression] = STATE(3236), + [sym_stackalloc_expression] = STATE(3236), + [sym_range_expression] = STATE(3236), + [sym_tuple_expression] = STATE(2602), + [sym_literal] = STATE(3236), + [sym_character_literal] = STATE(3272), + [sym_string_literal] = STATE(3272), + [sym_raw_string_literal] = STATE(3272), + [sym_boolean_literal] = STATE(3272), + [sym_identifier] = STATE(2261), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3236), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(1442), [sym_preproc_endregion] = STATE(1442), [sym_preproc_line] = STATE(1442), @@ -285557,47 +285443,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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3396), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3379), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1153), - [anon_sym_LPAREN] = ACTIONS(1371), - [anon_sym_ref] = ACTIONS(1373), - [anon_sym_LBRACE] = ACTIONS(1159), - [anon_sym_delegate] = ACTIONS(1161), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1149), + [anon_sym_LPAREN] = ACTIONS(1549), + [anon_sym_ref] = ACTIONS(1551), + [anon_sym_LBRACE] = ACTIONS(1155), + [anon_sym_delegate] = ACTIONS(1157), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1163), + [anon_sym_new] = ACTIONS(1159), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1167), - [anon_sym_BANG] = ACTIONS(1377), - [anon_sym_TILDE] = ACTIONS(1377), - [anon_sym_PLUS_PLUS] = ACTIONS(1377), - [anon_sym_DASH_DASH] = ACTIONS(1377), - [anon_sym_true] = ACTIONS(1173), - [anon_sym_false] = ACTIONS(1173), - [anon_sym_PLUS] = ACTIONS(1375), - [anon_sym_DASH] = ACTIONS(1375), - [anon_sym_STAR] = ACTIONS(1379), - [anon_sym_CARET] = ACTIONS(1377), - [anon_sym_AMP] = ACTIONS(1377), - [anon_sym_this] = ACTIONS(1177), + [anon_sym_checked] = ACTIONS(1163), + [anon_sym_BANG] = ACTIONS(1555), + [anon_sym_TILDE] = ACTIONS(1555), + [anon_sym_PLUS_PLUS] = ACTIONS(1555), + [anon_sym_DASH_DASH] = ACTIONS(1555), + [anon_sym_true] = ACTIONS(1169), + [anon_sym_false] = ACTIONS(1169), + [anon_sym_PLUS] = ACTIONS(1553), + [anon_sym_DASH] = ACTIONS(1553), + [anon_sym_STAR] = ACTIONS(1557), + [anon_sym_CARET] = ACTIONS(1555), + [anon_sym_AMP] = ACTIONS(1555), + [anon_sym_this] = ACTIONS(1173), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1179), + [anon_sym_base] = ACTIONS(1175), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1181), - [anon_sym_unchecked] = ACTIONS(1167), + [sym_predefined_type] = ACTIONS(1177), + [anon_sym_unchecked] = ACTIONS(1163), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1183), - [anon_sym_throw] = ACTIONS(1381), + [anon_sym_default] = ACTIONS(1179), + [anon_sym_throw] = ACTIONS(1559), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1383), - [anon_sym_DOT_DOT] = ACTIONS(1385), + [anon_sym_await] = ACTIONS(1561), + [anon_sym_DOT_DOT] = ACTIONS(1563), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -285610,19 +285496,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1191), - [anon_sym_sizeof] = ACTIONS(1193), - [anon_sym_typeof] = ACTIONS(1195), - [anon_sym___makeref] = ACTIONS(1197), - [anon_sym___reftype] = ACTIONS(1199), - [anon_sym___refvalue] = ACTIONS(1201), - [sym_null_literal] = ACTIONS(1203), - [anon_sym_SQUOTE] = ACTIONS(1205), - [sym_integer_literal] = ACTIONS(1203), - [sym_real_literal] = ACTIONS(1207), - [anon_sym_DQUOTE] = ACTIONS(1209), - [sym_verbatim_string_literal] = ACTIONS(1207), - [aux_sym_preproc_if_token1] = ACTIONS(1211), + [anon_sym_stackalloc] = ACTIONS(1187), + [anon_sym_sizeof] = ACTIONS(1189), + [anon_sym_typeof] = ACTIONS(1191), + [anon_sym___makeref] = ACTIONS(1193), + [anon_sym___reftype] = ACTIONS(1195), + [anon_sym___refvalue] = ACTIONS(1197), + [sym_null_literal] = ACTIONS(1199), + [anon_sym_SQUOTE] = ACTIONS(1201), + [sym_integer_literal] = ACTIONS(1199), + [sym_real_literal] = ACTIONS(1203), + [anon_sym_DQUOTE] = ACTIONS(1205), + [sym_verbatim_string_literal] = ACTIONS(1203), + [aux_sym_preproc_if_token1] = ACTIONS(1207), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -285633,90 +285519,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1213), - [sym_interpolation_verbatim_start] = ACTIONS(1215), - [sym_interpolation_raw_start] = ACTIONS(1217), - [sym_raw_string_start] = ACTIONS(1219), + [sym_interpolation_regular_start] = ACTIONS(1209), + [sym_interpolation_verbatim_start] = ACTIONS(1211), + [sym_interpolation_raw_start] = ACTIONS(1213), + [sym_raw_string_start] = ACTIONS(1215), }, [1443] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2610), - [sym__name] = STATE(5879), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2197), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(5681), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(2612), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3080), - [sym_postfix_unary_expression] = STATE(3111), - [sym_prefix_unary_expression] = STATE(3111), - [sym__pointer_indirection_expression] = STATE(2609), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6154), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3080), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3111), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2609), - [sym_interpolated_string_expression] = STATE(3080), - [sym_member_access_expression] = STATE(2609), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3111), - [sym__parenthesized_lvalue_expression] = STATE(2609), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7530), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(3080), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3080), - [sym_typeof_expression] = STATE(3080), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2609), - [sym_literal] = STATE(3080), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2603), + [sym__name] = STATE(5862), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2193), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(4741), + [sym_non_lvalue_expression] = STATE(3220), + [sym_lvalue_expression] = STATE(3403), + [sym__expression_statement_expression] = STATE(3236), + [sym_assignment_expression] = STATE(3221), + [sym_binary_expression] = STATE(3236), + [sym_postfix_unary_expression] = STATE(3221), + [sym_prefix_unary_expression] = STATE(3221), + [sym__pointer_indirection_expression] = STATE(2602), + [sym_query_expression] = STATE(3236), + [sym_from_clause] = STATE(6145), + [sym_conditional_expression] = STATE(3236), + [sym_conditional_access_expression] = STATE(3236), + [sym_as_expression] = STATE(3236), + [sym_is_expression] = STATE(3236), + [sym_is_pattern_expression] = STATE(3236), + [sym_cast_expression] = STATE(3236), + [sym_checked_expression] = STATE(3236), + [sym_invocation_expression] = STATE(3221), + [sym_switch_expression] = STATE(3236), + [sym_await_expression] = STATE(3221), + [sym_throw_expression] = STATE(3236), + [sym_element_access_expression] = STATE(2602), + [sym_interpolated_string_expression] = STATE(3236), + [sym_member_access_expression] = STATE(2602), + [sym_object_creation_expression] = STATE(3221), + [sym_parenthesized_expression] = STATE(3221), + [sym__parenthesized_lvalue_expression] = STATE(2602), + [sym_lambda_expression] = STATE(3236), + [sym__lambda_expression_init] = STATE(7639), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3236), + [sym_anonymous_method_expression] = STATE(3236), + [sym_anonymous_object_creation_expression] = STATE(3236), + [sym_implicit_array_creation_expression] = STATE(3236), + [sym_implicit_object_creation_expression] = STATE(3236), + [sym_implicit_stackalloc_expression] = STATE(3236), + [sym_initializer_expression] = STATE(3236), + [sym_default_expression] = STATE(3236), + [sym_with_expression] = STATE(3236), + [sym_sizeof_expression] = STATE(3236), + [sym_typeof_expression] = STATE(3236), + [sym_makeref_expression] = STATE(3236), + [sym_ref_expression] = STATE(3236), + [sym_reftype_expression] = STATE(3236), + [sym_refvalue_expression] = STATE(3236), + [sym_stackalloc_expression] = STATE(3236), + [sym_range_expression] = STATE(3236), + [sym_tuple_expression] = STATE(2602), + [sym_literal] = STATE(3236), + [sym_character_literal] = STATE(3272), + [sym_string_literal] = STATE(3272), + [sym_raw_string_literal] = STATE(3272), + [sym_boolean_literal] = STATE(3272), + [sym_identifier] = STATE(2261), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3236), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(1443), [sym_preproc_endregion] = STATE(1443), [sym_preproc_line] = STATE(1443), @@ -285726,47 +285612,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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3379), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1153), - [anon_sym_LPAREN] = ACTIONS(2949), - [anon_sym_ref] = ACTIONS(661), - [anon_sym_LBRACE] = ACTIONS(1487), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1149), + [anon_sym_LPAREN] = ACTIONS(1549), + [anon_sym_ref] = ACTIONS(1551), + [anon_sym_LBRACE] = ACTIONS(1155), + [anon_sym_delegate] = ACTIONS(1157), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1061), + [anon_sym_new] = ACTIONS(1159), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = 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(1585), - [anon_sym_DASH] = ACTIONS(1585), - [anon_sym_STAR] = ACTIONS(1379), - [anon_sym_CARET] = ACTIONS(1587), - [anon_sym_AMP] = ACTIONS(1587), - [anon_sym_this] = ACTIONS(1177), + [anon_sym_checked] = ACTIONS(1163), + [anon_sym_BANG] = ACTIONS(1555), + [anon_sym_TILDE] = ACTIONS(1555), + [anon_sym_PLUS_PLUS] = ACTIONS(1555), + [anon_sym_DASH_DASH] = ACTIONS(1555), + [anon_sym_true] = ACTIONS(1169), + [anon_sym_false] = ACTIONS(1169), + [anon_sym_PLUS] = ACTIONS(1553), + [anon_sym_DASH] = ACTIONS(1553), + [anon_sym_STAR] = ACTIONS(1557), + [anon_sym_CARET] = ACTIONS(1555), + [anon_sym_AMP] = ACTIONS(1555), + [anon_sym_this] = ACTIONS(1173), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), + [anon_sym_base] = ACTIONS(1175), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1181), - [anon_sym_unchecked] = ACTIONS(1067), + [sym_predefined_type] = ACTIONS(1177), + [anon_sym_unchecked] = ACTIONS(1163), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1589), + [anon_sym_default] = ACTIONS(1179), + [anon_sym_throw] = ACTIONS(1559), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1591), - [anon_sym_DOT_DOT] = ACTIONS(123), + [anon_sym_await] = ACTIONS(1561), + [anon_sym_DOT_DOT] = ACTIONS(1563), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -285779,19 +285665,19 @@ static const uint16_t ts_parse_table[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(1089), + [anon_sym_stackalloc] = ACTIONS(1187), + [anon_sym_sizeof] = ACTIONS(1189), + [anon_sym_typeof] = ACTIONS(1191), + [anon_sym___makeref] = ACTIONS(1193), + [anon_sym___reftype] = ACTIONS(1195), + [anon_sym___refvalue] = ACTIONS(1197), + [sym_null_literal] = ACTIONS(1199), + [anon_sym_SQUOTE] = ACTIONS(1201), + [sym_integer_literal] = ACTIONS(1199), + [sym_real_literal] = ACTIONS(1203), + [anon_sym_DQUOTE] = ACTIONS(1205), + [sym_verbatim_string_literal] = ACTIONS(1203), + [aux_sym_preproc_if_token1] = ACTIONS(1207), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -285802,90 +285688,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(151), - [sym_interpolation_verbatim_start] = ACTIONS(153), - [sym_interpolation_raw_start] = ACTIONS(155), - [sym_raw_string_start] = ACTIONS(157), + [sym_interpolation_regular_start] = ACTIONS(1209), + [sym_interpolation_verbatim_start] = ACTIONS(1211), + [sym_interpolation_raw_start] = ACTIONS(1213), + [sym_raw_string_start] = ACTIONS(1215), }, [1444] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2610), - [sym__name] = STATE(5886), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2319), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(3142), - [sym_non_lvalue_expression] = STATE(3277), - [sym_lvalue_expression] = STATE(3347), - [sym__expression_statement_expression] = STATE(3228), - [sym_assignment_expression] = STATE(3289), - [sym_binary_expression] = STATE(3228), - [sym_postfix_unary_expression] = STATE(3289), - [sym_prefix_unary_expression] = STATE(3289), - [sym__pointer_indirection_expression] = STATE(2609), - [sym_query_expression] = STATE(3228), - [sym_from_clause] = STATE(6150), - [sym_conditional_expression] = STATE(3228), - [sym_conditional_access_expression] = STATE(3228), - [sym_as_expression] = STATE(3228), - [sym_is_expression] = STATE(3228), - [sym_is_pattern_expression] = STATE(3228), - [sym_cast_expression] = STATE(3228), - [sym_checked_expression] = STATE(3228), - [sym_invocation_expression] = STATE(3289), - [sym_switch_expression] = STATE(3228), - [sym_await_expression] = STATE(3289), - [sym_throw_expression] = STATE(3228), - [sym_element_access_expression] = STATE(2609), - [sym_interpolated_string_expression] = STATE(3228), - [sym_member_access_expression] = STATE(2609), - [sym_object_creation_expression] = STATE(3289), - [sym_parenthesized_expression] = STATE(3289), - [sym__parenthesized_lvalue_expression] = STATE(2609), - [sym_lambda_expression] = STATE(3228), - [sym__lambda_expression_init] = STATE(7531), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3228), - [sym_anonymous_method_expression] = STATE(3228), - [sym_anonymous_object_creation_expression] = STATE(3228), - [sym_implicit_array_creation_expression] = STATE(3228), - [sym_implicit_object_creation_expression] = STATE(3228), - [sym_implicit_stackalloc_expression] = STATE(3228), - [sym_initializer_expression] = STATE(3228), - [sym_default_expression] = STATE(3228), - [sym_with_expression] = STATE(3228), - [sym_sizeof_expression] = STATE(3228), - [sym_typeof_expression] = STATE(3228), - [sym_makeref_expression] = STATE(3228), - [sym_ref_expression] = STATE(3228), - [sym_reftype_expression] = STATE(3228), - [sym_refvalue_expression] = STATE(3228), - [sym_stackalloc_expression] = STATE(3228), - [sym_range_expression] = STATE(3228), - [sym_tuple_expression] = STATE(2609), - [sym_literal] = STATE(3228), - [sym_character_literal] = STATE(3278), - [sym_string_literal] = STATE(3278), - [sym_raw_string_literal] = STATE(3278), - [sym_boolean_literal] = STATE(3278), - [sym_identifier] = STATE(2267), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3228), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2603), + [sym__name] = STATE(5862), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2193), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(4742), + [sym_non_lvalue_expression] = STATE(3220), + [sym_lvalue_expression] = STATE(3403), + [sym__expression_statement_expression] = STATE(3236), + [sym_assignment_expression] = STATE(3221), + [sym_binary_expression] = STATE(3236), + [sym_postfix_unary_expression] = STATE(3221), + [sym_prefix_unary_expression] = STATE(3221), + [sym__pointer_indirection_expression] = STATE(2602), + [sym_query_expression] = STATE(3236), + [sym_from_clause] = STATE(6145), + [sym_conditional_expression] = STATE(3236), + [sym_conditional_access_expression] = STATE(3236), + [sym_as_expression] = STATE(3236), + [sym_is_expression] = STATE(3236), + [sym_is_pattern_expression] = STATE(3236), + [sym_cast_expression] = STATE(3236), + [sym_checked_expression] = STATE(3236), + [sym_invocation_expression] = STATE(3221), + [sym_switch_expression] = STATE(3236), + [sym_await_expression] = STATE(3221), + [sym_throw_expression] = STATE(3236), + [sym_element_access_expression] = STATE(2602), + [sym_interpolated_string_expression] = STATE(3236), + [sym_member_access_expression] = STATE(2602), + [sym_object_creation_expression] = STATE(3221), + [sym_parenthesized_expression] = STATE(3221), + [sym__parenthesized_lvalue_expression] = STATE(2602), + [sym_lambda_expression] = STATE(3236), + [sym__lambda_expression_init] = STATE(7639), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3236), + [sym_anonymous_method_expression] = STATE(3236), + [sym_anonymous_object_creation_expression] = STATE(3236), + [sym_implicit_array_creation_expression] = STATE(3236), + [sym_implicit_object_creation_expression] = STATE(3236), + [sym_implicit_stackalloc_expression] = STATE(3236), + [sym_initializer_expression] = STATE(3236), + [sym_default_expression] = STATE(3236), + [sym_with_expression] = STATE(3236), + [sym_sizeof_expression] = STATE(3236), + [sym_typeof_expression] = STATE(3236), + [sym_makeref_expression] = STATE(3236), + [sym_ref_expression] = STATE(3236), + [sym_reftype_expression] = STATE(3236), + [sym_refvalue_expression] = STATE(3236), + [sym_stackalloc_expression] = STATE(3236), + [sym_range_expression] = STATE(3236), + [sym_tuple_expression] = STATE(2602), + [sym_literal] = STATE(3236), + [sym_character_literal] = STATE(3272), + [sym_string_literal] = STATE(3272), + [sym_raw_string_literal] = STATE(3272), + [sym_boolean_literal] = STATE(3272), + [sym_identifier] = STATE(2261), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3236), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(1444), [sym_preproc_endregion] = STATE(1444), [sym_preproc_line] = STATE(1444), @@ -285895,47 +285781,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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3396), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3379), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1153), - [anon_sym_LPAREN] = ACTIONS(1525), - [anon_sym_ref] = ACTIONS(1527), - [anon_sym_LBRACE] = ACTIONS(1159), - [anon_sym_delegate] = ACTIONS(1161), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1149), + [anon_sym_LPAREN] = ACTIONS(1549), + [anon_sym_ref] = ACTIONS(1551), + [anon_sym_LBRACE] = ACTIONS(1155), + [anon_sym_delegate] = ACTIONS(1157), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1529), + [anon_sym_new] = ACTIONS(1159), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1167), - [anon_sym_BANG] = ACTIONS(1533), - [anon_sym_TILDE] = ACTIONS(1533), - [anon_sym_PLUS_PLUS] = ACTIONS(1533), - [anon_sym_DASH_DASH] = ACTIONS(1533), - [anon_sym_true] = ACTIONS(1173), - [anon_sym_false] = ACTIONS(1173), - [anon_sym_PLUS] = ACTIONS(1531), - [anon_sym_DASH] = ACTIONS(1531), - [anon_sym_STAR] = ACTIONS(1535), - [anon_sym_CARET] = ACTIONS(1533), - [anon_sym_AMP] = ACTIONS(1533), - [anon_sym_this] = ACTIONS(1177), + [anon_sym_checked] = ACTIONS(1163), + [anon_sym_BANG] = ACTIONS(1555), + [anon_sym_TILDE] = ACTIONS(1555), + [anon_sym_PLUS_PLUS] = ACTIONS(1555), + [anon_sym_DASH_DASH] = ACTIONS(1555), + [anon_sym_true] = ACTIONS(1169), + [anon_sym_false] = ACTIONS(1169), + [anon_sym_PLUS] = ACTIONS(1553), + [anon_sym_DASH] = ACTIONS(1553), + [anon_sym_STAR] = ACTIONS(1557), + [anon_sym_CARET] = ACTIONS(1555), + [anon_sym_AMP] = ACTIONS(1555), + [anon_sym_this] = ACTIONS(1173), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1179), + [anon_sym_base] = ACTIONS(1175), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1181), - [anon_sym_unchecked] = ACTIONS(1167), + [sym_predefined_type] = ACTIONS(1177), + [anon_sym_unchecked] = ACTIONS(1163), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1183), - [anon_sym_throw] = ACTIONS(1537), + [anon_sym_default] = ACTIONS(1179), + [anon_sym_throw] = ACTIONS(1559), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1539), - [anon_sym_DOT_DOT] = ACTIONS(1541), + [anon_sym_await] = ACTIONS(1561), + [anon_sym_DOT_DOT] = ACTIONS(1563), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -285948,19 +285834,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1191), - [anon_sym_sizeof] = ACTIONS(1193), - [anon_sym_typeof] = ACTIONS(1195), - [anon_sym___makeref] = ACTIONS(1197), - [anon_sym___reftype] = ACTIONS(1199), - [anon_sym___refvalue] = ACTIONS(1201), - [sym_null_literal] = ACTIONS(1203), - [anon_sym_SQUOTE] = ACTIONS(1205), - [sym_integer_literal] = ACTIONS(1203), - [sym_real_literal] = ACTIONS(1207), - [anon_sym_DQUOTE] = ACTIONS(1209), - [sym_verbatim_string_literal] = ACTIONS(1207), - [aux_sym_preproc_if_token1] = ACTIONS(1211), + [anon_sym_stackalloc] = ACTIONS(1187), + [anon_sym_sizeof] = ACTIONS(1189), + [anon_sym_typeof] = ACTIONS(1191), + [anon_sym___makeref] = ACTIONS(1193), + [anon_sym___reftype] = ACTIONS(1195), + [anon_sym___refvalue] = ACTIONS(1197), + [sym_null_literal] = ACTIONS(1199), + [anon_sym_SQUOTE] = ACTIONS(1201), + [sym_integer_literal] = ACTIONS(1199), + [sym_real_literal] = ACTIONS(1203), + [anon_sym_DQUOTE] = ACTIONS(1205), + [sym_verbatim_string_literal] = ACTIONS(1203), + [aux_sym_preproc_if_token1] = ACTIONS(1207), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -285971,90 +285857,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1213), - [sym_interpolation_verbatim_start] = ACTIONS(1215), - [sym_interpolation_raw_start] = ACTIONS(1217), - [sym_raw_string_start] = ACTIONS(1219), + [sym_interpolation_regular_start] = ACTIONS(1209), + [sym_interpolation_verbatim_start] = ACTIONS(1211), + [sym_interpolation_raw_start] = ACTIONS(1213), + [sym_raw_string_start] = ACTIONS(1215), }, [1445] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2420), - [sym__name] = STATE(5904), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2395), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(5688), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(2447), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3080), - [sym_postfix_unary_expression] = STATE(3111), - [sym_prefix_unary_expression] = STATE(3111), - [sym__pointer_indirection_expression] = STATE(2423), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6154), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3080), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3111), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2423), - [sym_interpolated_string_expression] = STATE(3080), - [sym_member_access_expression] = STATE(2423), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3111), - [sym__parenthesized_lvalue_expression] = STATE(2423), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7530), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(3080), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3080), - [sym_typeof_expression] = STATE(3080), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2423), - [sym_literal] = STATE(3080), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2603), + [sym__name] = STATE(5862), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2193), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(4743), + [sym_non_lvalue_expression] = STATE(3220), + [sym_lvalue_expression] = STATE(3403), + [sym__expression_statement_expression] = STATE(3236), + [sym_assignment_expression] = STATE(3221), + [sym_binary_expression] = STATE(3236), + [sym_postfix_unary_expression] = STATE(3221), + [sym_prefix_unary_expression] = STATE(3221), + [sym__pointer_indirection_expression] = STATE(2602), + [sym_query_expression] = STATE(3236), + [sym_from_clause] = STATE(6145), + [sym_conditional_expression] = STATE(3236), + [sym_conditional_access_expression] = STATE(3236), + [sym_as_expression] = STATE(3236), + [sym_is_expression] = STATE(3236), + [sym_is_pattern_expression] = STATE(3236), + [sym_cast_expression] = STATE(3236), + [sym_checked_expression] = STATE(3236), + [sym_invocation_expression] = STATE(3221), + [sym_switch_expression] = STATE(3236), + [sym_await_expression] = STATE(3221), + [sym_throw_expression] = STATE(3236), + [sym_element_access_expression] = STATE(2602), + [sym_interpolated_string_expression] = STATE(3236), + [sym_member_access_expression] = STATE(2602), + [sym_object_creation_expression] = STATE(3221), + [sym_parenthesized_expression] = STATE(3221), + [sym__parenthesized_lvalue_expression] = STATE(2602), + [sym_lambda_expression] = STATE(3236), + [sym__lambda_expression_init] = STATE(7639), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3236), + [sym_anonymous_method_expression] = STATE(3236), + [sym_anonymous_object_creation_expression] = STATE(3236), + [sym_implicit_array_creation_expression] = STATE(3236), + [sym_implicit_object_creation_expression] = STATE(3236), + [sym_implicit_stackalloc_expression] = STATE(3236), + [sym_initializer_expression] = STATE(3236), + [sym_default_expression] = STATE(3236), + [sym_with_expression] = STATE(3236), + [sym_sizeof_expression] = STATE(3236), + [sym_typeof_expression] = STATE(3236), + [sym_makeref_expression] = STATE(3236), + [sym_ref_expression] = STATE(3236), + [sym_reftype_expression] = STATE(3236), + [sym_refvalue_expression] = STATE(3236), + [sym_stackalloc_expression] = STATE(3236), + [sym_range_expression] = STATE(3236), + [sym_tuple_expression] = STATE(2602), + [sym_literal] = STATE(3236), + [sym_character_literal] = STATE(3272), + [sym_string_literal] = STATE(3272), + [sym_raw_string_literal] = STATE(3272), + [sym_boolean_literal] = STATE(3272), + [sym_identifier] = STATE(2261), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3236), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(1445), [sym_preproc_endregion] = STATE(1445), [sym_preproc_line] = STATE(1445), @@ -286064,47 +285950,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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3379), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1241), - [anon_sym_LPAREN] = ACTIONS(2941), - [anon_sym_ref] = ACTIONS(661), - [anon_sym_LBRACE] = ACTIONS(1487), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1149), + [anon_sym_LPAREN] = ACTIONS(1549), + [anon_sym_ref] = ACTIONS(1551), + [anon_sym_LBRACE] = ACTIONS(1155), + [anon_sym_delegate] = ACTIONS(1157), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1061), + [anon_sym_new] = ACTIONS(1159), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = 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(1585), - [anon_sym_DASH] = ACTIONS(1585), - [anon_sym_STAR] = ACTIONS(2151), - [anon_sym_CARET] = ACTIONS(1587), - [anon_sym_AMP] = ACTIONS(1587), - [anon_sym_this] = ACTIONS(1263), + [anon_sym_checked] = ACTIONS(1163), + [anon_sym_BANG] = ACTIONS(1555), + [anon_sym_TILDE] = ACTIONS(1555), + [anon_sym_PLUS_PLUS] = ACTIONS(1555), + [anon_sym_DASH_DASH] = ACTIONS(1555), + [anon_sym_true] = ACTIONS(1169), + [anon_sym_false] = ACTIONS(1169), + [anon_sym_PLUS] = ACTIONS(1553), + [anon_sym_DASH] = ACTIONS(1553), + [anon_sym_STAR] = ACTIONS(1557), + [anon_sym_CARET] = ACTIONS(1555), + [anon_sym_AMP] = ACTIONS(1555), + [anon_sym_this] = ACTIONS(1173), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), + [anon_sym_base] = ACTIONS(1175), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1267), - [anon_sym_unchecked] = ACTIONS(1067), + [sym_predefined_type] = ACTIONS(1177), + [anon_sym_unchecked] = ACTIONS(1163), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1589), + [anon_sym_default] = ACTIONS(1179), + [anon_sym_throw] = ACTIONS(1559), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1591), - [anon_sym_DOT_DOT] = ACTIONS(123), + [anon_sym_await] = ACTIONS(1561), + [anon_sym_DOT_DOT] = ACTIONS(1563), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -286117,19 +286003,19 @@ static const uint16_t ts_parse_table[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(1089), + [anon_sym_stackalloc] = ACTIONS(1187), + [anon_sym_sizeof] = ACTIONS(1189), + [anon_sym_typeof] = ACTIONS(1191), + [anon_sym___makeref] = ACTIONS(1193), + [anon_sym___reftype] = ACTIONS(1195), + [anon_sym___refvalue] = ACTIONS(1197), + [sym_null_literal] = ACTIONS(1199), + [anon_sym_SQUOTE] = ACTIONS(1201), + [sym_integer_literal] = ACTIONS(1199), + [sym_real_literal] = ACTIONS(1203), + [anon_sym_DQUOTE] = ACTIONS(1205), + [sym_verbatim_string_literal] = ACTIONS(1203), + [aux_sym_preproc_if_token1] = ACTIONS(1207), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -286140,90 +286026,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(151), - [sym_interpolation_verbatim_start] = ACTIONS(153), - [sym_interpolation_raw_start] = ACTIONS(155), - [sym_raw_string_start] = ACTIONS(157), + [sym_interpolation_regular_start] = ACTIONS(1209), + [sym_interpolation_verbatim_start] = ACTIONS(1211), + [sym_interpolation_raw_start] = ACTIONS(1213), + [sym_raw_string_start] = ACTIONS(1215), }, [1446] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2762), - [sym__name] = STATE(5891), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2372), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(3194), - [sym_non_lvalue_expression] = STATE(3438), - [sym_lvalue_expression] = STATE(3530), - [sym__expression_statement_expression] = STATE(3362), - [sym_assignment_expression] = STATE(3449), - [sym_binary_expression] = STATE(3362), - [sym_postfix_unary_expression] = STATE(3449), - [sym_prefix_unary_expression] = STATE(3449), - [sym__pointer_indirection_expression] = STATE(2747), - [sym_query_expression] = STATE(3362), - [sym_from_clause] = STATE(6167), - [sym_conditional_expression] = STATE(3362), - [sym_conditional_access_expression] = STATE(3362), - [sym_as_expression] = STATE(3362), - [sym_is_expression] = STATE(3362), - [sym_is_pattern_expression] = STATE(3362), - [sym_cast_expression] = STATE(3362), - [sym_checked_expression] = STATE(3362), - [sym_invocation_expression] = STATE(3449), - [sym_switch_expression] = STATE(3362), - [sym_await_expression] = STATE(3449), - [sym_throw_expression] = STATE(3362), - [sym_element_access_expression] = STATE(2747), - [sym_interpolated_string_expression] = STATE(3362), - [sym_member_access_expression] = STATE(2747), - [sym_object_creation_expression] = STATE(3449), - [sym_parenthesized_expression] = STATE(3449), - [sym__parenthesized_lvalue_expression] = STATE(2747), - [sym_lambda_expression] = STATE(3362), - [sym__lambda_expression_init] = STATE(7468), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3362), - [sym_anonymous_method_expression] = STATE(3362), - [sym_anonymous_object_creation_expression] = STATE(3362), - [sym_implicit_array_creation_expression] = STATE(3362), - [sym_implicit_object_creation_expression] = STATE(3362), - [sym_implicit_stackalloc_expression] = STATE(3362), - [sym_initializer_expression] = STATE(3362), - [sym_default_expression] = STATE(3362), - [sym_with_expression] = STATE(3362), - [sym_sizeof_expression] = STATE(3362), - [sym_typeof_expression] = STATE(3362), - [sym_makeref_expression] = STATE(3362), - [sym_ref_expression] = STATE(3362), - [sym_reftype_expression] = STATE(3362), - [sym_refvalue_expression] = STATE(3362), - [sym_stackalloc_expression] = STATE(3362), - [sym_range_expression] = STATE(3362), - [sym_tuple_expression] = STATE(2747), - [sym_literal] = STATE(3362), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3362), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2603), + [sym__name] = STATE(5862), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2193), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(4744), + [sym_non_lvalue_expression] = STATE(3220), + [sym_lvalue_expression] = STATE(3403), + [sym__expression_statement_expression] = STATE(3236), + [sym_assignment_expression] = STATE(3221), + [sym_binary_expression] = STATE(3236), + [sym_postfix_unary_expression] = STATE(3221), + [sym_prefix_unary_expression] = STATE(3221), + [sym__pointer_indirection_expression] = STATE(2602), + [sym_query_expression] = STATE(3236), + [sym_from_clause] = STATE(6145), + [sym_conditional_expression] = STATE(3236), + [sym_conditional_access_expression] = STATE(3236), + [sym_as_expression] = STATE(3236), + [sym_is_expression] = STATE(3236), + [sym_is_pattern_expression] = STATE(3236), + [sym_cast_expression] = STATE(3236), + [sym_checked_expression] = STATE(3236), + [sym_invocation_expression] = STATE(3221), + [sym_switch_expression] = STATE(3236), + [sym_await_expression] = STATE(3221), + [sym_throw_expression] = STATE(3236), + [sym_element_access_expression] = STATE(2602), + [sym_interpolated_string_expression] = STATE(3236), + [sym_member_access_expression] = STATE(2602), + [sym_object_creation_expression] = STATE(3221), + [sym_parenthesized_expression] = STATE(3221), + [sym__parenthesized_lvalue_expression] = STATE(2602), + [sym_lambda_expression] = STATE(3236), + [sym__lambda_expression_init] = STATE(7639), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3236), + [sym_anonymous_method_expression] = STATE(3236), + [sym_anonymous_object_creation_expression] = STATE(3236), + [sym_implicit_array_creation_expression] = STATE(3236), + [sym_implicit_object_creation_expression] = STATE(3236), + [sym_implicit_stackalloc_expression] = STATE(3236), + [sym_initializer_expression] = STATE(3236), + [sym_default_expression] = STATE(3236), + [sym_with_expression] = STATE(3236), + [sym_sizeof_expression] = STATE(3236), + [sym_typeof_expression] = STATE(3236), + [sym_makeref_expression] = STATE(3236), + [sym_ref_expression] = STATE(3236), + [sym_reftype_expression] = STATE(3236), + [sym_refvalue_expression] = STATE(3236), + [sym_stackalloc_expression] = STATE(3236), + [sym_range_expression] = STATE(3236), + [sym_tuple_expression] = STATE(2602), + [sym_literal] = STATE(3236), + [sym_character_literal] = STATE(3272), + [sym_string_literal] = STATE(3272), + [sym_raw_string_literal] = STATE(3272), + [sym_boolean_literal] = STATE(3272), + [sym_identifier] = STATE(2261), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3236), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(1446), [sym_preproc_endregion] = STATE(1446), [sym_preproc_line] = STATE(1446), @@ -286233,47 +286119,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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3385), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3379), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1307), - [anon_sym_LPAREN] = ACTIONS(1895), - [anon_sym_ref] = ACTIONS(1897), - [anon_sym_LBRACE] = ACTIONS(1313), - [anon_sym_delegate] = ACTIONS(1315), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1149), + [anon_sym_LPAREN] = ACTIONS(1549), + [anon_sym_ref] = ACTIONS(1551), + [anon_sym_LBRACE] = ACTIONS(1155), + [anon_sym_delegate] = ACTIONS(1157), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1899), + [anon_sym_new] = ACTIONS(1159), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1319), - [anon_sym_BANG] = ACTIONS(1903), - [anon_sym_TILDE] = ACTIONS(1903), - [anon_sym_PLUS_PLUS] = ACTIONS(1903), - [anon_sym_DASH_DASH] = ACTIONS(1903), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1901), - [anon_sym_DASH] = ACTIONS(1901), - [anon_sym_STAR] = ACTIONS(1905), - [anon_sym_CARET] = ACTIONS(1903), - [anon_sym_AMP] = ACTIONS(1903), - [anon_sym_this] = ACTIONS(1323), + [anon_sym_checked] = ACTIONS(1163), + [anon_sym_BANG] = ACTIONS(1555), + [anon_sym_TILDE] = ACTIONS(1555), + [anon_sym_PLUS_PLUS] = ACTIONS(1555), + [anon_sym_DASH_DASH] = ACTIONS(1555), + [anon_sym_true] = ACTIONS(1169), + [anon_sym_false] = ACTIONS(1169), + [anon_sym_PLUS] = ACTIONS(1553), + [anon_sym_DASH] = ACTIONS(1553), + [anon_sym_STAR] = ACTIONS(1557), + [anon_sym_CARET] = ACTIONS(1555), + [anon_sym_AMP] = ACTIONS(1555), + [anon_sym_this] = ACTIONS(1173), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1325), + [anon_sym_base] = ACTIONS(1175), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1319), + [sym_predefined_type] = ACTIONS(1177), + [anon_sym_unchecked] = ACTIONS(1163), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1907), + [anon_sym_default] = ACTIONS(1179), + [anon_sym_throw] = ACTIONS(1559), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1909), - [anon_sym_DOT_DOT] = ACTIONS(1911), + [anon_sym_await] = ACTIONS(1561), + [anon_sym_DOT_DOT] = ACTIONS(1563), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -286286,19 +286172,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1333), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(1335), - [anon_sym___reftype] = ACTIONS(1337), - [anon_sym___refvalue] = ACTIONS(1339), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1341), + [anon_sym_stackalloc] = ACTIONS(1187), + [anon_sym_sizeof] = ACTIONS(1189), + [anon_sym_typeof] = ACTIONS(1191), + [anon_sym___makeref] = ACTIONS(1193), + [anon_sym___reftype] = ACTIONS(1195), + [anon_sym___refvalue] = ACTIONS(1197), + [sym_null_literal] = ACTIONS(1199), + [anon_sym_SQUOTE] = ACTIONS(1201), + [sym_integer_literal] = ACTIONS(1199), + [sym_real_literal] = ACTIONS(1203), + [anon_sym_DQUOTE] = ACTIONS(1205), + [sym_verbatim_string_literal] = ACTIONS(1203), + [aux_sym_preproc_if_token1] = ACTIONS(1207), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -286309,90 +286195,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(151), - [sym_interpolation_verbatim_start] = ACTIONS(153), - [sym_interpolation_raw_start] = ACTIONS(155), - [sym_raw_string_start] = ACTIONS(157), + [sym_interpolation_regular_start] = ACTIONS(1209), + [sym_interpolation_verbatim_start] = ACTIONS(1211), + [sym_interpolation_raw_start] = ACTIONS(1213), + [sym_raw_string_start] = ACTIONS(1215), }, [1447] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2420), - [sym__name] = STATE(5897), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2397), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(5688), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(2447), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3080), - [sym_postfix_unary_expression] = STATE(3111), - [sym_prefix_unary_expression] = STATE(3111), - [sym__pointer_indirection_expression] = STATE(2423), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6154), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3080), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3111), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2423), - [sym_interpolated_string_expression] = STATE(3080), - [sym_member_access_expression] = STATE(2423), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3111), - [sym__parenthesized_lvalue_expression] = STATE(2423), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7530), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(3080), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3080), - [sym_typeof_expression] = STATE(3080), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2423), - [sym_literal] = STATE(3080), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2603), + [sym__name] = STATE(5862), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2193), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(3133), + [sym_non_lvalue_expression] = STATE(3220), + [sym_lvalue_expression] = STATE(3403), + [sym__expression_statement_expression] = STATE(3236), + [sym_assignment_expression] = STATE(3221), + [sym_binary_expression] = STATE(3236), + [sym_postfix_unary_expression] = STATE(3221), + [sym_prefix_unary_expression] = STATE(3221), + [sym__pointer_indirection_expression] = STATE(2602), + [sym_query_expression] = STATE(3236), + [sym_from_clause] = STATE(6145), + [sym_conditional_expression] = STATE(3236), + [sym_conditional_access_expression] = STATE(3236), + [sym_as_expression] = STATE(3236), + [sym_is_expression] = STATE(3236), + [sym_is_pattern_expression] = STATE(3236), + [sym_cast_expression] = STATE(3236), + [sym_checked_expression] = STATE(3236), + [sym_invocation_expression] = STATE(3221), + [sym_switch_expression] = STATE(3236), + [sym_await_expression] = STATE(3221), + [sym_throw_expression] = STATE(3236), + [sym_element_access_expression] = STATE(2602), + [sym_interpolated_string_expression] = STATE(3236), + [sym_member_access_expression] = STATE(2602), + [sym_object_creation_expression] = STATE(3221), + [sym_parenthesized_expression] = STATE(3221), + [sym__parenthesized_lvalue_expression] = STATE(2602), + [sym_lambda_expression] = STATE(3236), + [sym__lambda_expression_init] = STATE(7639), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3236), + [sym_anonymous_method_expression] = STATE(3236), + [sym_anonymous_object_creation_expression] = STATE(3236), + [sym_implicit_array_creation_expression] = STATE(3236), + [sym_implicit_object_creation_expression] = STATE(3236), + [sym_implicit_stackalloc_expression] = STATE(3236), + [sym_initializer_expression] = STATE(3236), + [sym_default_expression] = STATE(3236), + [sym_with_expression] = STATE(3236), + [sym_sizeof_expression] = STATE(3236), + [sym_typeof_expression] = STATE(3236), + [sym_makeref_expression] = STATE(3236), + [sym_ref_expression] = STATE(3236), + [sym_reftype_expression] = STATE(3236), + [sym_refvalue_expression] = STATE(3236), + [sym_stackalloc_expression] = STATE(3236), + [sym_range_expression] = STATE(3236), + [sym_tuple_expression] = STATE(2602), + [sym_literal] = STATE(3236), + [sym_character_literal] = STATE(3272), + [sym_string_literal] = STATE(3272), + [sym_raw_string_literal] = STATE(3272), + [sym_boolean_literal] = STATE(3272), + [sym_identifier] = STATE(2261), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3236), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(1447), [sym_preproc_endregion] = STATE(1447), [sym_preproc_line] = STATE(1447), @@ -286402,47 +286288,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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3379), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1241), - [anon_sym_LPAREN] = ACTIONS(2941), - [anon_sym_ref] = ACTIONS(661), - [anon_sym_LBRACE] = ACTIONS(1487), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1149), + [anon_sym_LPAREN] = ACTIONS(1549), + [anon_sym_ref] = ACTIONS(1551), + [anon_sym_LBRACE] = ACTIONS(1155), + [anon_sym_delegate] = ACTIONS(1157), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1061), + [anon_sym_new] = ACTIONS(1159), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = 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(1585), - [anon_sym_DASH] = ACTIONS(1585), - [anon_sym_STAR] = ACTIONS(2223), - [anon_sym_CARET] = ACTIONS(1587), - [anon_sym_AMP] = ACTIONS(1587), - [anon_sym_this] = ACTIONS(1263), + [anon_sym_checked] = ACTIONS(1163), + [anon_sym_BANG] = ACTIONS(1555), + [anon_sym_TILDE] = ACTIONS(1555), + [anon_sym_PLUS_PLUS] = ACTIONS(1555), + [anon_sym_DASH_DASH] = ACTIONS(1555), + [anon_sym_true] = ACTIONS(1169), + [anon_sym_false] = ACTIONS(1169), + [anon_sym_PLUS] = ACTIONS(1553), + [anon_sym_DASH] = ACTIONS(1553), + [anon_sym_STAR] = ACTIONS(1557), + [anon_sym_CARET] = ACTIONS(1555), + [anon_sym_AMP] = ACTIONS(1555), + [anon_sym_this] = ACTIONS(1173), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), + [anon_sym_base] = ACTIONS(1175), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1267), - [anon_sym_unchecked] = ACTIONS(1067), + [sym_predefined_type] = ACTIONS(1177), + [anon_sym_unchecked] = ACTIONS(1163), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1589), + [anon_sym_default] = ACTIONS(1179), + [anon_sym_throw] = ACTIONS(1559), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1591), - [anon_sym_DOT_DOT] = ACTIONS(123), + [anon_sym_await] = ACTIONS(1561), + [anon_sym_DOT_DOT] = ACTIONS(1563), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -286455,19 +286341,19 @@ static const uint16_t ts_parse_table[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(1089), + [anon_sym_stackalloc] = ACTIONS(1187), + [anon_sym_sizeof] = ACTIONS(1189), + [anon_sym_typeof] = ACTIONS(1191), + [anon_sym___makeref] = ACTIONS(1193), + [anon_sym___reftype] = ACTIONS(1195), + [anon_sym___refvalue] = ACTIONS(1197), + [sym_null_literal] = ACTIONS(1199), + [anon_sym_SQUOTE] = ACTIONS(1201), + [sym_integer_literal] = ACTIONS(1199), + [sym_real_literal] = ACTIONS(1203), + [anon_sym_DQUOTE] = ACTIONS(1205), + [sym_verbatim_string_literal] = ACTIONS(1203), + [aux_sym_preproc_if_token1] = ACTIONS(1207), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -286478,90 +286364,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(151), - [sym_interpolation_verbatim_start] = ACTIONS(153), - [sym_interpolation_raw_start] = ACTIONS(155), - [sym_raw_string_start] = ACTIONS(157), + [sym_interpolation_regular_start] = ACTIONS(1209), + [sym_interpolation_verbatim_start] = ACTIONS(1211), + [sym_interpolation_raw_start] = ACTIONS(1213), + [sym_raw_string_start] = ACTIONS(1215), }, [1448] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2420), - [sym__name] = STATE(5904), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2395), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(2907), - [sym_non_lvalue_expression] = STATE(3066), - [sym_lvalue_expression] = STATE(3557), - [sym__expression_statement_expression] = STATE(3006), - [sym_assignment_expression] = STATE(3020), - [sym_binary_expression] = STATE(3006), - [sym_postfix_unary_expression] = STATE(3020), - [sym_prefix_unary_expression] = STATE(3020), - [sym__pointer_indirection_expression] = STATE(2423), - [sym_query_expression] = STATE(3006), - [sym_from_clause] = STATE(6176), - [sym_conditional_expression] = STATE(3006), - [sym_conditional_access_expression] = STATE(3006), - [sym_as_expression] = STATE(3006), - [sym_is_expression] = STATE(3006), - [sym_is_pattern_expression] = STATE(3006), - [sym_cast_expression] = STATE(3006), - [sym_checked_expression] = STATE(3006), - [sym_invocation_expression] = STATE(3020), - [sym_switch_expression] = STATE(3006), - [sym_await_expression] = STATE(3020), - [sym_throw_expression] = STATE(3006), - [sym_element_access_expression] = STATE(2423), - [sym_interpolated_string_expression] = STATE(3006), - [sym_member_access_expression] = STATE(2423), - [sym_object_creation_expression] = STATE(3020), - [sym_parenthesized_expression] = STATE(3020), - [sym__parenthesized_lvalue_expression] = STATE(2423), - [sym_lambda_expression] = STATE(3006), - [sym__lambda_expression_init] = STATE(7473), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3006), - [sym_anonymous_method_expression] = STATE(3006), - [sym_anonymous_object_creation_expression] = STATE(3006), - [sym_implicit_array_creation_expression] = STATE(3006), - [sym_implicit_object_creation_expression] = STATE(3006), - [sym_implicit_stackalloc_expression] = STATE(3006), - [sym_initializer_expression] = STATE(3006), - [sym_default_expression] = STATE(3006), - [sym_with_expression] = STATE(3006), - [sym_sizeof_expression] = STATE(3006), - [sym_typeof_expression] = STATE(3006), - [sym_makeref_expression] = STATE(3006), - [sym_ref_expression] = STATE(3006), - [sym_reftype_expression] = STATE(3006), - [sym_refvalue_expression] = STATE(3006), - [sym_stackalloc_expression] = STATE(3006), - [sym_range_expression] = STATE(3006), - [sym_tuple_expression] = STATE(2423), - [sym_literal] = STATE(3006), - [sym_character_literal] = STATE(3011), - [sym_string_literal] = STATE(3011), - [sym_raw_string_literal] = STATE(3011), - [sym_boolean_literal] = STATE(3011), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3006), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2603), + [sym__name] = STATE(5862), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2193), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(4748), + [sym_non_lvalue_expression] = STATE(3220), + [sym_lvalue_expression] = STATE(3403), + [sym__expression_statement_expression] = STATE(3236), + [sym_assignment_expression] = STATE(3221), + [sym_binary_expression] = STATE(3236), + [sym_postfix_unary_expression] = STATE(3221), + [sym_prefix_unary_expression] = STATE(3221), + [sym__pointer_indirection_expression] = STATE(2602), + [sym_query_expression] = STATE(3236), + [sym_from_clause] = STATE(6145), + [sym_conditional_expression] = STATE(3236), + [sym_conditional_access_expression] = STATE(3236), + [sym_as_expression] = STATE(3236), + [sym_is_expression] = STATE(3236), + [sym_is_pattern_expression] = STATE(3236), + [sym_cast_expression] = STATE(3236), + [sym_checked_expression] = STATE(3236), + [sym_invocation_expression] = STATE(3221), + [sym_switch_expression] = STATE(3236), + [sym_await_expression] = STATE(3221), + [sym_throw_expression] = STATE(3236), + [sym_element_access_expression] = STATE(2602), + [sym_interpolated_string_expression] = STATE(3236), + [sym_member_access_expression] = STATE(2602), + [sym_object_creation_expression] = STATE(3221), + [sym_parenthesized_expression] = STATE(3221), + [sym__parenthesized_lvalue_expression] = STATE(2602), + [sym_lambda_expression] = STATE(3236), + [sym__lambda_expression_init] = STATE(7639), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3236), + [sym_anonymous_method_expression] = STATE(3236), + [sym_anonymous_object_creation_expression] = STATE(3236), + [sym_implicit_array_creation_expression] = STATE(3236), + [sym_implicit_object_creation_expression] = STATE(3236), + [sym_implicit_stackalloc_expression] = STATE(3236), + [sym_initializer_expression] = STATE(3236), + [sym_default_expression] = STATE(3236), + [sym_with_expression] = STATE(3236), + [sym_sizeof_expression] = STATE(3236), + [sym_typeof_expression] = STATE(3236), + [sym_makeref_expression] = STATE(3236), + [sym_ref_expression] = STATE(3236), + [sym_reftype_expression] = STATE(3236), + [sym_refvalue_expression] = STATE(3236), + [sym_stackalloc_expression] = STATE(3236), + [sym_range_expression] = STATE(3236), + [sym_tuple_expression] = STATE(2602), + [sym_literal] = STATE(3236), + [sym_character_literal] = STATE(3272), + [sym_string_literal] = STATE(3272), + [sym_raw_string_literal] = STATE(3272), + [sym_boolean_literal] = STATE(3272), + [sym_identifier] = STATE(2261), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3236), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(1448), [sym_preproc_endregion] = STATE(1448), [sym_preproc_line] = STATE(1448), @@ -286571,47 +286457,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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3440), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3379), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1241), - [anon_sym_LPAREN] = ACTIONS(2141), - [anon_sym_ref] = ACTIONS(2143), - [anon_sym_LBRACE] = ACTIONS(1247), - [anon_sym_delegate] = ACTIONS(1249), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1149), + [anon_sym_LPAREN] = ACTIONS(1549), + [anon_sym_ref] = ACTIONS(1551), + [anon_sym_LBRACE] = ACTIONS(1155), + [anon_sym_delegate] = ACTIONS(1157), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(2145), + [anon_sym_new] = ACTIONS(1159), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1253), - [anon_sym_BANG] = ACTIONS(2149), - [anon_sym_TILDE] = ACTIONS(2149), - [anon_sym_PLUS_PLUS] = ACTIONS(2149), - [anon_sym_DASH_DASH] = ACTIONS(2149), - [anon_sym_true] = ACTIONS(1259), - [anon_sym_false] = ACTIONS(1259), - [anon_sym_PLUS] = ACTIONS(2147), - [anon_sym_DASH] = ACTIONS(2147), - [anon_sym_STAR] = ACTIONS(2151), - [anon_sym_CARET] = ACTIONS(2149), - [anon_sym_AMP] = ACTIONS(2149), - [anon_sym_this] = ACTIONS(1263), + [anon_sym_checked] = ACTIONS(1163), + [anon_sym_BANG] = ACTIONS(1555), + [anon_sym_TILDE] = ACTIONS(1555), + [anon_sym_PLUS_PLUS] = ACTIONS(1555), + [anon_sym_DASH_DASH] = ACTIONS(1555), + [anon_sym_true] = ACTIONS(1169), + [anon_sym_false] = ACTIONS(1169), + [anon_sym_PLUS] = ACTIONS(1553), + [anon_sym_DASH] = ACTIONS(1553), + [anon_sym_STAR] = ACTIONS(1557), + [anon_sym_CARET] = ACTIONS(1555), + [anon_sym_AMP] = ACTIONS(1555), + [anon_sym_this] = ACTIONS(1173), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1265), + [anon_sym_base] = ACTIONS(1175), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1267), - [anon_sym_unchecked] = ACTIONS(1253), + [sym_predefined_type] = ACTIONS(1177), + [anon_sym_unchecked] = ACTIONS(1163), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1269), - [anon_sym_throw] = ACTIONS(2153), + [anon_sym_default] = ACTIONS(1179), + [anon_sym_throw] = ACTIONS(1559), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2155), - [anon_sym_DOT_DOT] = ACTIONS(2157), + [anon_sym_await] = ACTIONS(1561), + [anon_sym_DOT_DOT] = ACTIONS(1563), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -286624,19 +286510,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1277), - [anon_sym_sizeof] = ACTIONS(1279), - [anon_sym_typeof] = ACTIONS(1281), - [anon_sym___makeref] = ACTIONS(1283), - [anon_sym___reftype] = ACTIONS(1285), - [anon_sym___refvalue] = ACTIONS(1287), - [sym_null_literal] = ACTIONS(1289), - [anon_sym_SQUOTE] = ACTIONS(1291), - [sym_integer_literal] = ACTIONS(1289), - [sym_real_literal] = ACTIONS(1293), - [anon_sym_DQUOTE] = ACTIONS(1295), - [sym_verbatim_string_literal] = ACTIONS(1293), - [aux_sym_preproc_if_token1] = ACTIONS(1297), + [anon_sym_stackalloc] = ACTIONS(1187), + [anon_sym_sizeof] = ACTIONS(1189), + [anon_sym_typeof] = ACTIONS(1191), + [anon_sym___makeref] = ACTIONS(1193), + [anon_sym___reftype] = ACTIONS(1195), + [anon_sym___refvalue] = ACTIONS(1197), + [sym_null_literal] = ACTIONS(1199), + [anon_sym_SQUOTE] = ACTIONS(1201), + [sym_integer_literal] = ACTIONS(1199), + [sym_real_literal] = ACTIONS(1203), + [anon_sym_DQUOTE] = ACTIONS(1205), + [sym_verbatim_string_literal] = ACTIONS(1203), + [aux_sym_preproc_if_token1] = ACTIONS(1207), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -286647,90 +286533,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1299), - [sym_interpolation_verbatim_start] = ACTIONS(1301), - [sym_interpolation_raw_start] = ACTIONS(1303), - [sym_raw_string_start] = ACTIONS(1305), + [sym_interpolation_regular_start] = ACTIONS(1209), + [sym_interpolation_verbatim_start] = ACTIONS(1211), + [sym_interpolation_raw_start] = ACTIONS(1213), + [sym_raw_string_start] = ACTIONS(1215), }, [1449] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2610), - [sym__name] = STATE(5871), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2319), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(5681), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(2612), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3080), - [sym_postfix_unary_expression] = STATE(3111), - [sym_prefix_unary_expression] = STATE(3111), - [sym__pointer_indirection_expression] = STATE(2609), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6154), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3080), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3111), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2609), - [sym_interpolated_string_expression] = STATE(3080), - [sym_member_access_expression] = STATE(2609), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3111), - [sym__parenthesized_lvalue_expression] = STATE(2609), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7530), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(3080), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3080), - [sym_typeof_expression] = STATE(3080), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2609), - [sym_literal] = STATE(3080), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2816), + [sym__name] = STATE(5873), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2238), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(3212), + [sym_non_lvalue_expression] = STATE(3495), + [sym_lvalue_expression] = STATE(3131), + [sym__expression_statement_expression] = STATE(3462), + [sym_assignment_expression] = STATE(3497), + [sym_binary_expression] = STATE(3462), + [sym_postfix_unary_expression] = STATE(3497), + [sym_prefix_unary_expression] = STATE(3497), + [sym__pointer_indirection_expression] = STATE(2815), + [sym_query_expression] = STATE(3462), + [sym_from_clause] = STATE(6140), + [sym_conditional_expression] = STATE(3462), + [sym_conditional_access_expression] = STATE(3462), + [sym_as_expression] = STATE(3462), + [sym_is_expression] = STATE(3462), + [sym_is_pattern_expression] = STATE(3462), + [sym_cast_expression] = STATE(3462), + [sym_checked_expression] = STATE(3462), + [sym_invocation_expression] = STATE(3497), + [sym_switch_expression] = STATE(3462), + [sym_await_expression] = STATE(3497), + [sym_throw_expression] = STATE(3462), + [sym_element_access_expression] = STATE(2815), + [sym_interpolated_string_expression] = STATE(3462), + [sym_member_access_expression] = STATE(2815), + [sym_object_creation_expression] = STATE(3497), + [sym_parenthesized_expression] = STATE(3497), + [sym__parenthesized_lvalue_expression] = STATE(2815), + [sym_lambda_expression] = STATE(3462), + [sym__lambda_expression_init] = STATE(7423), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3462), + [sym_anonymous_method_expression] = STATE(3462), + [sym_anonymous_object_creation_expression] = STATE(3462), + [sym_implicit_array_creation_expression] = STATE(3462), + [sym_implicit_object_creation_expression] = STATE(3462), + [sym_implicit_stackalloc_expression] = STATE(3462), + [sym_initializer_expression] = STATE(3462), + [sym_default_expression] = STATE(3462), + [sym_with_expression] = STATE(3462), + [sym_sizeof_expression] = STATE(3462), + [sym_typeof_expression] = STATE(3462), + [sym_makeref_expression] = STATE(3462), + [sym_ref_expression] = STATE(3462), + [sym_reftype_expression] = STATE(3462), + [sym_refvalue_expression] = STATE(3462), + [sym_stackalloc_expression] = STATE(3462), + [sym_range_expression] = STATE(3462), + [sym_tuple_expression] = STATE(2815), + [sym_literal] = STATE(3462), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3462), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(1449), [sym_preproc_endregion] = STATE(1449), [sym_preproc_line] = STATE(1449), @@ -286740,47 +286626,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(3067), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), [aux_sym__lambda_expression_init_repeat1] = STATE(3367), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1153), - [anon_sym_LPAREN] = ACTIONS(2949), - [anon_sym_ref] = ACTIONS(661), - [anon_sym_LBRACE] = ACTIONS(1487), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1305), + [anon_sym_LPAREN] = ACTIONS(1307), + [anon_sym_ref] = ACTIONS(1309), + [anon_sym_LBRACE] = ACTIONS(1311), + [anon_sym_delegate] = ACTIONS(1313), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1061), + [anon_sym_new] = ACTIONS(1315), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = 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_checked] = ACTIONS(1317), + [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(1585), - [anon_sym_DASH] = ACTIONS(1585), - [anon_sym_STAR] = ACTIONS(1567), - [anon_sym_CARET] = ACTIONS(1587), - [anon_sym_AMP] = ACTIONS(1587), - [anon_sym_this] = ACTIONS(1177), + [anon_sym_PLUS] = ACTIONS(1069), + [anon_sym_DASH] = ACTIONS(1069), + [anon_sym_STAR] = ACTIONS(1319), + [anon_sym_CARET] = ACTIONS(1067), + [anon_sym_AMP] = ACTIONS(1067), + [anon_sym_this] = ACTIONS(1321), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), + [anon_sym_base] = ACTIONS(1323), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1181), - [anon_sym_unchecked] = ACTIONS(1067), + [sym_predefined_type] = ACTIONS(91), + [anon_sym_unchecked] = ACTIONS(1317), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1589), + [anon_sym_throw] = ACTIONS(1325), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1591), - [anon_sym_DOT_DOT] = ACTIONS(123), + [anon_sym_await] = ACTIONS(1327), + [anon_sym_DOT_DOT] = ACTIONS(1329), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -286793,19 +286679,19 @@ static const uint16_t ts_parse_table[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(1331), [anon_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(1333), + [anon_sym___reftype] = ACTIONS(1335), + [anon_sym___refvalue] = ACTIONS(1337), [sym_null_literal] = ACTIONS(139), [anon_sym_SQUOTE] = ACTIONS(141), [sym_integer_literal] = ACTIONS(139), [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1089), + [aux_sym_preproc_if_token1] = ACTIONS(1339), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -286822,84 +286708,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [1450] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2762), - [sym__name] = STATE(5876), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2376), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(3194), - [sym_non_lvalue_expression] = STATE(3438), - [sym_lvalue_expression] = STATE(3533), - [sym__expression_statement_expression] = STATE(3362), - [sym_assignment_expression] = STATE(3449), - [sym_binary_expression] = STATE(3362), - [sym_postfix_unary_expression] = STATE(3449), - [sym_prefix_unary_expression] = STATE(3449), - [sym__pointer_indirection_expression] = STATE(2747), - [sym_query_expression] = STATE(3362), - [sym_from_clause] = STATE(6175), - [sym_conditional_expression] = STATE(3362), - [sym_conditional_access_expression] = STATE(3362), - [sym_as_expression] = STATE(3362), - [sym_is_expression] = STATE(3362), - [sym_is_pattern_expression] = STATE(3362), - [sym_cast_expression] = STATE(3362), - [sym_checked_expression] = STATE(3362), - [sym_invocation_expression] = STATE(3449), - [sym_switch_expression] = STATE(3362), - [sym_await_expression] = STATE(3449), - [sym_throw_expression] = STATE(3362), - [sym_element_access_expression] = STATE(2747), - [sym_interpolated_string_expression] = STATE(3362), - [sym_member_access_expression] = STATE(2747), - [sym_object_creation_expression] = STATE(3449), - [sym_parenthesized_expression] = STATE(3449), - [sym__parenthesized_lvalue_expression] = STATE(2747), - [sym_lambda_expression] = STATE(3362), - [sym__lambda_expression_init] = STATE(7619), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3362), - [sym_anonymous_method_expression] = STATE(3362), - [sym_anonymous_object_creation_expression] = STATE(3362), - [sym_implicit_array_creation_expression] = STATE(3362), - [sym_implicit_object_creation_expression] = STATE(3362), - [sym_implicit_stackalloc_expression] = STATE(3362), - [sym_initializer_expression] = STATE(3362), - [sym_default_expression] = STATE(3362), - [sym_with_expression] = STATE(3362), - [sym_sizeof_expression] = STATE(3362), - [sym_typeof_expression] = STATE(3362), - [sym_makeref_expression] = STATE(3362), - [sym_ref_expression] = STATE(3362), - [sym_reftype_expression] = STATE(3362), - [sym_refvalue_expression] = STATE(3362), - [sym_stackalloc_expression] = STATE(3362), - [sym_range_expression] = STATE(3362), - [sym_tuple_expression] = STATE(2747), - [sym_literal] = STATE(3362), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3362), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2816), + [sym__name] = STATE(5873), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2238), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(5697), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(2830), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3102), + [sym_postfix_unary_expression] = STATE(3079), + [sym_prefix_unary_expression] = STATE(3079), + [sym__pointer_indirection_expression] = STATE(2815), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6134), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3102), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3079), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2815), + [sym_interpolated_string_expression] = STATE(3102), + [sym_member_access_expression] = STATE(2815), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3079), + [sym__parenthesized_lvalue_expression] = STATE(2815), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7425), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(3102), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3102), + [sym_typeof_expression] = STATE(3102), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2815), + [sym_literal] = STATE(3102), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(1450), [sym_preproc_endregion] = STATE(1450), [sym_preproc_line] = STATE(1450), @@ -286909,47 +286795,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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3385), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1307), - [anon_sym_LPAREN] = ACTIONS(1877), - [anon_sym_ref] = ACTIONS(1879), - [anon_sym_LBRACE] = ACTIONS(1313), - [anon_sym_delegate] = ACTIONS(1315), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1305), + [anon_sym_LPAREN] = ACTIONS(2945), + [anon_sym_ref] = ACTIONS(715), + [anon_sym_LBRACE] = ACTIONS(1481), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1881), + [anon_sym_new] = ACTIONS(1059), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1319), - [anon_sym_BANG] = ACTIONS(1885), - [anon_sym_TILDE] = ACTIONS(1885), - [anon_sym_PLUS_PLUS] = ACTIONS(1885), - [anon_sym_DASH_DASH] = ACTIONS(1885), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(1525), + [anon_sym_TILDE] = ACTIONS(1525), + [anon_sym_PLUS_PLUS] = ACTIONS(1525), + [anon_sym_DASH_DASH] = ACTIONS(1525), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1883), - [anon_sym_DASH] = ACTIONS(1883), - [anon_sym_STAR] = ACTIONS(1887), - [anon_sym_CARET] = ACTIONS(1885), - [anon_sym_AMP] = ACTIONS(1885), - [anon_sym_this] = ACTIONS(1323), + [anon_sym_PLUS] = ACTIONS(1523), + [anon_sym_DASH] = ACTIONS(1523), + [anon_sym_STAR] = ACTIONS(1319), + [anon_sym_CARET] = ACTIONS(1525), + [anon_sym_AMP] = ACTIONS(1525), + [anon_sym_this] = ACTIONS(1321), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1325), + [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1319), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1889), + [anon_sym_throw] = ACTIONS(1527), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1891), - [anon_sym_DOT_DOT] = ACTIONS(1893), + [anon_sym_await] = ACTIONS(1529), + [anon_sym_DOT_DOT] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -286962,19 +286848,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1333), + [anon_sym_stackalloc] = ACTIONS(127), [anon_sym_sizeof] = ACTIONS(129), [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(1335), - [anon_sym___reftype] = ACTIONS(1337), - [anon_sym___refvalue] = ACTIONS(1339), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), [sym_null_literal] = ACTIONS(139), [anon_sym_SQUOTE] = ACTIONS(141), [sym_integer_literal] = ACTIONS(139), [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1341), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -286991,84 +286877,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [1451] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2420), - [sym__name] = STATE(5887), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2197), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(5688), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(2447), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3080), - [sym_postfix_unary_expression] = STATE(3111), - [sym_prefix_unary_expression] = STATE(3111), - [sym__pointer_indirection_expression] = STATE(2423), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6154), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3080), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3111), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2423), - [sym_interpolated_string_expression] = STATE(3080), - [sym_member_access_expression] = STATE(2423), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3111), - [sym__parenthesized_lvalue_expression] = STATE(2423), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7530), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(3080), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3080), - [sym_typeof_expression] = STATE(3080), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2423), - [sym_literal] = STATE(3080), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2267), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(5896), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2362), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(5419), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3661), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3102), + [sym_postfix_unary_expression] = STATE(3079), + [sym_prefix_unary_expression] = STATE(3079), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6129), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3102), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3079), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3102), + [sym_member_access_expression] = STATE(2472), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3079), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7367), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(3102), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3102), + [sym_typeof_expression] = STATE(3102), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2472), + [sym_literal] = STATE(3102), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(1451), [sym_preproc_endregion] = STATE(1451), [sym_preproc_line] = STATE(1451), @@ -287078,47 +286964,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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1241), - [anon_sym_LPAREN] = ACTIONS(2941), - [anon_sym_ref] = ACTIONS(661), - [anon_sym_LBRACE] = ACTIONS(1487), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1479), + [anon_sym_LPAREN] = ACTIONS(2135), + [anon_sym_ref] = ACTIONS(2137), + [anon_sym_LBRACE] = ACTIONS(1481), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1061), + [anon_sym_new] = ACTIONS(2139), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = 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_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(2143), + [anon_sym_TILDE] = ACTIONS(2143), + [anon_sym_PLUS_PLUS] = ACTIONS(2143), + [anon_sym_DASH_DASH] = ACTIONS(2143), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1585), - [anon_sym_DASH] = ACTIONS(1585), - [anon_sym_STAR] = ACTIONS(2039), - [anon_sym_CARET] = ACTIONS(1587), - [anon_sym_AMP] = ACTIONS(1587), - [anon_sym_this] = ACTIONS(1263), + [anon_sym_PLUS] = ACTIONS(2141), + [anon_sym_DASH] = ACTIONS(2141), + [anon_sym_STAR] = ACTIONS(2145), + [anon_sym_CARET] = ACTIONS(2143), + [anon_sym_AMP] = ACTIONS(2143), + [anon_sym_this] = ACTIONS(83), [anon_sym_scoped] = ACTIONS(85), [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1267), - [anon_sym_unchecked] = ACTIONS(1067), + [sym_predefined_type] = ACTIONS(91), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1589), + [anon_sym_throw] = ACTIONS(2147), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1591), - [anon_sym_DOT_DOT] = ACTIONS(123), + [anon_sym_await] = ACTIONS(2149), + [anon_sym_DOT_DOT] = ACTIONS(2151), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -287143,7 +287029,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(1089), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -287160,84 +287046,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [1452] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2420), - [sym__name] = STATE(5897), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2397), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(2907), - [sym_non_lvalue_expression] = STATE(3066), - [sym_lvalue_expression] = STATE(3632), - [sym__expression_statement_expression] = STATE(3006), - [sym_assignment_expression] = STATE(3020), - [sym_binary_expression] = STATE(3006), - [sym_postfix_unary_expression] = STATE(3020), - [sym_prefix_unary_expression] = STATE(3020), - [sym__pointer_indirection_expression] = STATE(2423), - [sym_query_expression] = STATE(3006), - [sym_from_clause] = STATE(6184), - [sym_conditional_expression] = STATE(3006), - [sym_conditional_access_expression] = STATE(3006), - [sym_as_expression] = STATE(3006), - [sym_is_expression] = STATE(3006), - [sym_is_pattern_expression] = STATE(3006), - [sym_cast_expression] = STATE(3006), - [sym_checked_expression] = STATE(3006), - [sym_invocation_expression] = STATE(3020), - [sym_switch_expression] = STATE(3006), - [sym_await_expression] = STATE(3020), - [sym_throw_expression] = STATE(3006), - [sym_element_access_expression] = STATE(2423), - [sym_interpolated_string_expression] = STATE(3006), - [sym_member_access_expression] = STATE(2423), - [sym_object_creation_expression] = STATE(3020), - [sym_parenthesized_expression] = STATE(3020), - [sym__parenthesized_lvalue_expression] = STATE(2423), - [sym_lambda_expression] = STATE(3006), - [sym__lambda_expression_init] = STATE(7393), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3006), - [sym_anonymous_method_expression] = STATE(3006), - [sym_anonymous_object_creation_expression] = STATE(3006), - [sym_implicit_array_creation_expression] = STATE(3006), - [sym_implicit_object_creation_expression] = STATE(3006), - [sym_implicit_stackalloc_expression] = STATE(3006), - [sym_initializer_expression] = STATE(3006), - [sym_default_expression] = STATE(3006), - [sym_with_expression] = STATE(3006), - [sym_sizeof_expression] = STATE(3006), - [sym_typeof_expression] = STATE(3006), - [sym_makeref_expression] = STATE(3006), - [sym_ref_expression] = STATE(3006), - [sym_reftype_expression] = STATE(3006), - [sym_refvalue_expression] = STATE(3006), - [sym_stackalloc_expression] = STATE(3006), - [sym_range_expression] = STATE(3006), - [sym_tuple_expression] = STATE(2423), - [sym_literal] = STATE(3006), - [sym_character_literal] = STATE(3011), - [sym_string_literal] = STATE(3011), - [sym_raw_string_literal] = STATE(3011), - [sym_boolean_literal] = STATE(3011), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3006), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(5896), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2362), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(3528), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3661), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3102), + [sym_postfix_unary_expression] = STATE(3079), + [sym_prefix_unary_expression] = STATE(3079), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6129), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3102), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3079), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3102), + [sym_member_access_expression] = STATE(2472), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3079), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7367), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(3102), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3102), + [sym_typeof_expression] = STATE(3102), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2472), + [sym_literal] = STATE(3102), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(1452), [sym_preproc_endregion] = STATE(1452), [sym_preproc_line] = STATE(1452), @@ -287247,47 +287133,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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3440), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1241), - [anon_sym_LPAREN] = ACTIONS(2213), - [anon_sym_ref] = ACTIONS(2215), - [anon_sym_LBRACE] = ACTIONS(1247), - [anon_sym_delegate] = ACTIONS(1249), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1479), + [anon_sym_LPAREN] = ACTIONS(2135), + [anon_sym_ref] = ACTIONS(2137), + [anon_sym_LBRACE] = ACTIONS(1481), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(2217), + [anon_sym_new] = ACTIONS(2139), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1253), - [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(1259), - [anon_sym_false] = ACTIONS(1259), - [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(1263), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(2143), + [anon_sym_TILDE] = ACTIONS(2143), + [anon_sym_PLUS_PLUS] = ACTIONS(2143), + [anon_sym_DASH_DASH] = ACTIONS(2143), + [anon_sym_true] = ACTIONS(77), + [anon_sym_false] = ACTIONS(77), + [anon_sym_PLUS] = ACTIONS(2141), + [anon_sym_DASH] = ACTIONS(2141), + [anon_sym_STAR] = ACTIONS(2145), + [anon_sym_CARET] = ACTIONS(2143), + [anon_sym_AMP] = ACTIONS(2143), + [anon_sym_this] = ACTIONS(83), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1265), + [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1267), - [anon_sym_unchecked] = ACTIONS(1253), + [sym_predefined_type] = ACTIONS(91), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1269), - [anon_sym_throw] = ACTIONS(2225), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(2147), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2227), - [anon_sym_DOT_DOT] = ACTIONS(2229), + [anon_sym_await] = ACTIONS(2149), + [anon_sym_DOT_DOT] = ACTIONS(2151), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -287300,19 +287186,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1277), - [anon_sym_sizeof] = ACTIONS(1279), - [anon_sym_typeof] = ACTIONS(1281), - [anon_sym___makeref] = ACTIONS(1283), - [anon_sym___reftype] = ACTIONS(1285), - [anon_sym___refvalue] = ACTIONS(1287), - [sym_null_literal] = ACTIONS(1289), - [anon_sym_SQUOTE] = ACTIONS(1291), - [sym_integer_literal] = ACTIONS(1289), - [sym_real_literal] = ACTIONS(1293), - [anon_sym_DQUOTE] = ACTIONS(1295), - [sym_verbatim_string_literal] = ACTIONS(1293), - [aux_sym_preproc_if_token1] = ACTIONS(1297), + [anon_sym_stackalloc] = ACTIONS(127), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_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), @@ -287323,90 +287209,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1299), - [sym_interpolation_verbatim_start] = ACTIONS(1301), - [sym_interpolation_raw_start] = ACTIONS(1303), - [sym_raw_string_start] = ACTIONS(1305), + [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(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2762), - [sym__name] = STATE(5891), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2372), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(5677), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(2774), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3080), - [sym_postfix_unary_expression] = STATE(3111), - [sym_prefix_unary_expression] = STATE(3111), - [sym__pointer_indirection_expression] = STATE(2747), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6154), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3080), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3111), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2747), - [sym_interpolated_string_expression] = STATE(3080), - [sym_member_access_expression] = STATE(2747), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3111), - [sym__parenthesized_lvalue_expression] = STATE(2747), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7530), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(3080), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3080), - [sym_typeof_expression] = STATE(3080), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2747), - [sym_literal] = STATE(3080), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2901), + [sym__name] = STATE(5883), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2359), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(3906), + [sym_non_lvalue_expression] = STATE(3685), + [sym_lvalue_expression] = STATE(3073), + [sym__expression_statement_expression] = STATE(3836), + [sym_assignment_expression] = STATE(3689), + [sym_binary_expression] = STATE(3836), + [sym_postfix_unary_expression] = STATE(3689), + [sym_prefix_unary_expression] = STATE(3689), + [sym__pointer_indirection_expression] = STATE(2906), + [sym_query_expression] = STATE(3836), + [sym_from_clause] = STATE(6157), + [sym_conditional_expression] = STATE(3836), + [sym_conditional_access_expression] = STATE(3836), + [sym_as_expression] = STATE(3836), + [sym_is_expression] = STATE(3836), + [sym_is_pattern_expression] = STATE(3836), + [sym_cast_expression] = STATE(3836), + [sym_checked_expression] = STATE(3836), + [sym_invocation_expression] = STATE(3689), + [sym_switch_expression] = STATE(3836), + [sym_await_expression] = STATE(3689), + [sym_throw_expression] = STATE(3836), + [sym_element_access_expression] = STATE(2906), + [sym_interpolated_string_expression] = STATE(3836), + [sym_member_access_expression] = STATE(2906), + [sym_object_creation_expression] = STATE(3689), + [sym_parenthesized_expression] = STATE(3689), + [sym__parenthesized_lvalue_expression] = STATE(2906), + [sym_lambda_expression] = STATE(3836), + [sym__lambda_expression_init] = STATE(7460), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3836), + [sym_anonymous_method_expression] = STATE(3836), + [sym_anonymous_object_creation_expression] = STATE(3836), + [sym_implicit_array_creation_expression] = STATE(3836), + [sym_implicit_object_creation_expression] = STATE(3836), + [sym_implicit_stackalloc_expression] = STATE(3836), + [sym_initializer_expression] = STATE(3836), + [sym_default_expression] = STATE(3836), + [sym_with_expression] = STATE(3836), + [sym_sizeof_expression] = STATE(3836), + [sym_typeof_expression] = STATE(3836), + [sym_makeref_expression] = STATE(3836), + [sym_ref_expression] = STATE(3836), + [sym_reftype_expression] = STATE(3836), + [sym_refvalue_expression] = STATE(3836), + [sym_stackalloc_expression] = STATE(3836), + [sym_range_expression] = STATE(3836), + [sym_tuple_expression] = STATE(2906), + [sym_literal] = STATE(3836), + [sym_character_literal] = STATE(3843), + [sym_string_literal] = STATE(3843), + [sym_raw_string_literal] = STATE(3843), + [sym_boolean_literal] = STATE(3843), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3836), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(1453), [sym_preproc_endregion] = STATE(1453), [sym_preproc_line] = STATE(1453), @@ -287416,47 +287302,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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3477), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1307), - [anon_sym_LPAREN] = ACTIONS(2945), - [anon_sym_ref] = ACTIONS(661), - [anon_sym_LBRACE] = ACTIONS(1487), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1655), + [anon_sym_LPAREN] = ACTIONS(2061), + [anon_sym_ref] = ACTIONS(2063), + [anon_sym_LBRACE] = ACTIONS(1661), + [anon_sym_delegate] = ACTIONS(1663), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1061), + [anon_sym_new] = ACTIONS(1665), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = 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(1585), - [anon_sym_DASH] = ACTIONS(1585), - [anon_sym_STAR] = ACTIONS(1905), - [anon_sym_CARET] = ACTIONS(1587), - [anon_sym_AMP] = ACTIONS(1587), - [anon_sym_this] = ACTIONS(1323), + [anon_sym_checked] = ACTIONS(1667), + [anon_sym_BANG] = ACTIONS(2067), + [anon_sym_TILDE] = ACTIONS(2067), + [anon_sym_PLUS_PLUS] = ACTIONS(2067), + [anon_sym_DASH_DASH] = ACTIONS(2067), + [anon_sym_true] = ACTIONS(1673), + [anon_sym_false] = ACTIONS(1673), + [anon_sym_PLUS] = ACTIONS(2065), + [anon_sym_DASH] = ACTIONS(2065), + [anon_sym_STAR] = ACTIONS(1675), + [anon_sym_CARET] = ACTIONS(2067), + [anon_sym_AMP] = ACTIONS(2067), + [anon_sym_this] = ACTIONS(1677), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), + [anon_sym_base] = ACTIONS(1679), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1067), + [sym_predefined_type] = ACTIONS(1681), + [anon_sym_unchecked] = ACTIONS(1667), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1589), + [anon_sym_default] = ACTIONS(1683), + [anon_sym_throw] = ACTIONS(2069), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1591), - [anon_sym_DOT_DOT] = ACTIONS(123), + [anon_sym_await] = ACTIONS(2071), + [anon_sym_DOT_DOT] = ACTIONS(2073), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -287469,19 +287355,19 @@ static const uint16_t ts_parse_table[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(1089), + [anon_sym_stackalloc] = ACTIONS(1691), + [anon_sym_sizeof] = ACTIONS(1693), + [anon_sym_typeof] = ACTIONS(1695), + [anon_sym___makeref] = ACTIONS(1697), + [anon_sym___reftype] = ACTIONS(1699), + [anon_sym___refvalue] = ACTIONS(1701), + [sym_null_literal] = ACTIONS(1703), + [anon_sym_SQUOTE] = ACTIONS(1705), + [sym_integer_literal] = ACTIONS(1703), + [sym_real_literal] = ACTIONS(1707), + [anon_sym_DQUOTE] = ACTIONS(1709), + [sym_verbatim_string_literal] = ACTIONS(1707), + [aux_sym_preproc_if_token1] = ACTIONS(1711), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -287492,90 +287378,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(151), - [sym_interpolation_verbatim_start] = ACTIONS(153), - [sym_interpolation_raw_start] = ACTIONS(155), - [sym_raw_string_start] = ACTIONS(157), + [sym_interpolation_regular_start] = ACTIONS(1713), + [sym_interpolation_verbatim_start] = ACTIONS(1715), + [sym_interpolation_raw_start] = ACTIONS(1717), + [sym_raw_string_start] = ACTIONS(1719), }, [1454] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2610), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2459), [sym__name] = STATE(5896), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2384), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(3142), - [sym_non_lvalue_expression] = STATE(3277), - [sym_lvalue_expression] = STATE(3392), - [sym__expression_statement_expression] = STATE(3228), - [sym_assignment_expression] = STATE(3289), - [sym_binary_expression] = STATE(3228), - [sym_postfix_unary_expression] = STATE(3289), - [sym_prefix_unary_expression] = STATE(3289), - [sym__pointer_indirection_expression] = STATE(2609), - [sym_query_expression] = STATE(3228), - [sym_from_clause] = STATE(6173), - [sym_conditional_expression] = STATE(3228), - [sym_conditional_access_expression] = STATE(3228), - [sym_as_expression] = STATE(3228), - [sym_is_expression] = STATE(3228), - [sym_is_pattern_expression] = STATE(3228), - [sym_cast_expression] = STATE(3228), - [sym_checked_expression] = STATE(3228), - [sym_invocation_expression] = STATE(3289), - [sym_switch_expression] = STATE(3228), - [sym_await_expression] = STATE(3289), - [sym_throw_expression] = STATE(3228), - [sym_element_access_expression] = STATE(2609), - [sym_interpolated_string_expression] = STATE(3228), - [sym_member_access_expression] = STATE(2609), - [sym_object_creation_expression] = STATE(3289), - [sym_parenthesized_expression] = STATE(3289), - [sym__parenthesized_lvalue_expression] = STATE(2609), - [sym_lambda_expression] = STATE(3228), - [sym__lambda_expression_init] = STATE(7334), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3228), - [sym_anonymous_method_expression] = STATE(3228), - [sym_anonymous_object_creation_expression] = STATE(3228), - [sym_implicit_array_creation_expression] = STATE(3228), - [sym_implicit_object_creation_expression] = STATE(3228), - [sym_implicit_stackalloc_expression] = STATE(3228), - [sym_initializer_expression] = STATE(3228), - [sym_default_expression] = STATE(3228), - [sym_with_expression] = STATE(3228), - [sym_sizeof_expression] = STATE(3228), - [sym_typeof_expression] = STATE(3228), - [sym_makeref_expression] = STATE(3228), - [sym_ref_expression] = STATE(3228), - [sym_reftype_expression] = STATE(3228), - [sym_refvalue_expression] = STATE(3228), - [sym_stackalloc_expression] = STATE(3228), - [sym_range_expression] = STATE(3228), - [sym_tuple_expression] = STATE(2609), - [sym_literal] = STATE(3228), - [sym_character_literal] = STATE(3278), - [sym_string_literal] = STATE(3278), - [sym_raw_string_literal] = STATE(3278), - [sym_boolean_literal] = STATE(3278), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3228), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2362), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(5415), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3661), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3102), + [sym_postfix_unary_expression] = STATE(3079), + [sym_prefix_unary_expression] = STATE(3079), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6129), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3102), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3079), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3102), + [sym_member_access_expression] = STATE(2472), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3079), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7367), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(3102), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3102), + [sym_typeof_expression] = STATE(3102), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2472), + [sym_literal] = STATE(3102), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(1454), [sym_preproc_endregion] = STATE(1454), [sym_preproc_line] = STATE(1454), @@ -287585,47 +287471,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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3396), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1153), - [anon_sym_LPAREN] = ACTIONS(1859), - [anon_sym_ref] = ACTIONS(1861), - [anon_sym_LBRACE] = ACTIONS(1159), - [anon_sym_delegate] = ACTIONS(1161), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1479), + [anon_sym_LPAREN] = ACTIONS(2135), + [anon_sym_ref] = ACTIONS(2137), + [anon_sym_LBRACE] = ACTIONS(1481), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1863), + [anon_sym_new] = ACTIONS(2139), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1167), - [anon_sym_BANG] = ACTIONS(1867), - [anon_sym_TILDE] = ACTIONS(1867), - [anon_sym_PLUS_PLUS] = ACTIONS(1867), - [anon_sym_DASH_DASH] = ACTIONS(1867), - [anon_sym_true] = ACTIONS(1173), - [anon_sym_false] = ACTIONS(1173), - [anon_sym_PLUS] = ACTIONS(1865), - [anon_sym_DASH] = ACTIONS(1865), - [anon_sym_STAR] = ACTIONS(1869), - [anon_sym_CARET] = ACTIONS(1867), - [anon_sym_AMP] = ACTIONS(1867), - [anon_sym_this] = ACTIONS(1177), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(2143), + [anon_sym_TILDE] = ACTIONS(2143), + [anon_sym_PLUS_PLUS] = ACTIONS(2143), + [anon_sym_DASH_DASH] = ACTIONS(2143), + [anon_sym_true] = ACTIONS(77), + [anon_sym_false] = ACTIONS(77), + [anon_sym_PLUS] = ACTIONS(2141), + [anon_sym_DASH] = ACTIONS(2141), + [anon_sym_STAR] = ACTIONS(2145), + [anon_sym_CARET] = ACTIONS(2143), + [anon_sym_AMP] = ACTIONS(2143), + [anon_sym_this] = ACTIONS(83), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1179), + [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1181), - [anon_sym_unchecked] = ACTIONS(1167), + [sym_predefined_type] = ACTIONS(91), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1183), - [anon_sym_throw] = ACTIONS(1871), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(2147), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1873), - [anon_sym_DOT_DOT] = ACTIONS(1875), + [anon_sym_await] = ACTIONS(2149), + [anon_sym_DOT_DOT] = ACTIONS(2151), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -287638,19 +287524,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1191), - [anon_sym_sizeof] = ACTIONS(1193), - [anon_sym_typeof] = ACTIONS(1195), - [anon_sym___makeref] = ACTIONS(1197), - [anon_sym___reftype] = ACTIONS(1199), - [anon_sym___refvalue] = ACTIONS(1201), - [sym_null_literal] = ACTIONS(1203), - [anon_sym_SQUOTE] = ACTIONS(1205), - [sym_integer_literal] = ACTIONS(1203), - [sym_real_literal] = ACTIONS(1207), - [anon_sym_DQUOTE] = ACTIONS(1209), - [sym_verbatim_string_literal] = ACTIONS(1207), - [aux_sym_preproc_if_token1] = ACTIONS(1211), + [anon_sym_stackalloc] = ACTIONS(127), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_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), @@ -287661,90 +287547,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1213), - [sym_interpolation_verbatim_start] = ACTIONS(1215), - [sym_interpolation_raw_start] = ACTIONS(1217), - [sym_raw_string_start] = ACTIONS(1219), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [sym_interpolation_raw_start] = ACTIONS(155), + [sym_raw_string_start] = ACTIONS(157), }, [1455] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2762), - [sym__name] = STATE(5876), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2376), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(5677), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(2774), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3080), - [sym_postfix_unary_expression] = STATE(3111), - [sym_prefix_unary_expression] = STATE(3111), - [sym__pointer_indirection_expression] = STATE(2747), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6154), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3080), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3111), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2747), - [sym_interpolated_string_expression] = STATE(3080), - [sym_member_access_expression] = STATE(2747), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3111), - [sym__parenthesized_lvalue_expression] = STATE(2747), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7530), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(3080), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3080), - [sym_typeof_expression] = STATE(3080), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2747), - [sym_literal] = STATE(3080), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2901), + [sym__name] = STATE(5883), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2359), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(3908), + [sym_non_lvalue_expression] = STATE(3685), + [sym_lvalue_expression] = STATE(3073), + [sym__expression_statement_expression] = STATE(3836), + [sym_assignment_expression] = STATE(3689), + [sym_binary_expression] = STATE(3836), + [sym_postfix_unary_expression] = STATE(3689), + [sym_prefix_unary_expression] = STATE(3689), + [sym__pointer_indirection_expression] = STATE(2906), + [sym_query_expression] = STATE(3836), + [sym_from_clause] = STATE(6157), + [sym_conditional_expression] = STATE(3836), + [sym_conditional_access_expression] = STATE(3836), + [sym_as_expression] = STATE(3836), + [sym_is_expression] = STATE(3836), + [sym_is_pattern_expression] = STATE(3836), + [sym_cast_expression] = STATE(3836), + [sym_checked_expression] = STATE(3836), + [sym_invocation_expression] = STATE(3689), + [sym_switch_expression] = STATE(3836), + [sym_await_expression] = STATE(3689), + [sym_throw_expression] = STATE(3836), + [sym_element_access_expression] = STATE(2906), + [sym_interpolated_string_expression] = STATE(3836), + [sym_member_access_expression] = STATE(2906), + [sym_object_creation_expression] = STATE(3689), + [sym_parenthesized_expression] = STATE(3689), + [sym__parenthesized_lvalue_expression] = STATE(2906), + [sym_lambda_expression] = STATE(3836), + [sym__lambda_expression_init] = STATE(7460), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3836), + [sym_anonymous_method_expression] = STATE(3836), + [sym_anonymous_object_creation_expression] = STATE(3836), + [sym_implicit_array_creation_expression] = STATE(3836), + [sym_implicit_object_creation_expression] = STATE(3836), + [sym_implicit_stackalloc_expression] = STATE(3836), + [sym_initializer_expression] = STATE(3836), + [sym_default_expression] = STATE(3836), + [sym_with_expression] = STATE(3836), + [sym_sizeof_expression] = STATE(3836), + [sym_typeof_expression] = STATE(3836), + [sym_makeref_expression] = STATE(3836), + [sym_ref_expression] = STATE(3836), + [sym_reftype_expression] = STATE(3836), + [sym_refvalue_expression] = STATE(3836), + [sym_stackalloc_expression] = STATE(3836), + [sym_range_expression] = STATE(3836), + [sym_tuple_expression] = STATE(2906), + [sym_literal] = STATE(3836), + [sym_character_literal] = STATE(3843), + [sym_string_literal] = STATE(3843), + [sym_raw_string_literal] = STATE(3843), + [sym_boolean_literal] = STATE(3843), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3836), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(1455), [sym_preproc_endregion] = STATE(1455), [sym_preproc_line] = STATE(1455), @@ -287754,47 +287640,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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3477), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1307), - [anon_sym_LPAREN] = ACTIONS(2945), - [anon_sym_ref] = ACTIONS(661), - [anon_sym_LBRACE] = ACTIONS(1487), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1655), + [anon_sym_LPAREN] = ACTIONS(2061), + [anon_sym_ref] = ACTIONS(2063), + [anon_sym_LBRACE] = ACTIONS(1661), + [anon_sym_delegate] = ACTIONS(1663), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1061), + [anon_sym_new] = ACTIONS(1665), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = 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(1585), - [anon_sym_DASH] = ACTIONS(1585), - [anon_sym_STAR] = ACTIONS(1887), - [anon_sym_CARET] = ACTIONS(1587), - [anon_sym_AMP] = ACTIONS(1587), - [anon_sym_this] = ACTIONS(1323), + [anon_sym_checked] = ACTIONS(1667), + [anon_sym_BANG] = ACTIONS(2067), + [anon_sym_TILDE] = ACTIONS(2067), + [anon_sym_PLUS_PLUS] = ACTIONS(2067), + [anon_sym_DASH_DASH] = ACTIONS(2067), + [anon_sym_true] = ACTIONS(1673), + [anon_sym_false] = ACTIONS(1673), + [anon_sym_PLUS] = ACTIONS(2065), + [anon_sym_DASH] = ACTIONS(2065), + [anon_sym_STAR] = ACTIONS(1675), + [anon_sym_CARET] = ACTIONS(2067), + [anon_sym_AMP] = ACTIONS(2067), + [anon_sym_this] = ACTIONS(1677), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), + [anon_sym_base] = ACTIONS(1679), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1067), + [sym_predefined_type] = ACTIONS(1681), + [anon_sym_unchecked] = ACTIONS(1667), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1589), + [anon_sym_default] = ACTIONS(1683), + [anon_sym_throw] = ACTIONS(2069), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1591), - [anon_sym_DOT_DOT] = ACTIONS(123), + [anon_sym_await] = ACTIONS(2071), + [anon_sym_DOT_DOT] = ACTIONS(2073), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -287807,19 +287693,19 @@ static const uint16_t ts_parse_table[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(1089), + [anon_sym_stackalloc] = ACTIONS(1691), + [anon_sym_sizeof] = ACTIONS(1693), + [anon_sym_typeof] = ACTIONS(1695), + [anon_sym___makeref] = ACTIONS(1697), + [anon_sym___reftype] = ACTIONS(1699), + [anon_sym___refvalue] = ACTIONS(1701), + [sym_null_literal] = ACTIONS(1703), + [anon_sym_SQUOTE] = ACTIONS(1705), + [sym_integer_literal] = ACTIONS(1703), + [sym_real_literal] = ACTIONS(1707), + [anon_sym_DQUOTE] = ACTIONS(1709), + [sym_verbatim_string_literal] = ACTIONS(1707), + [aux_sym_preproc_if_token1] = ACTIONS(1711), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -287830,90 +287716,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(151), - [sym_interpolation_verbatim_start] = ACTIONS(153), - [sym_interpolation_raw_start] = ACTIONS(155), - [sym_raw_string_start] = ACTIONS(157), + [sym_interpolation_regular_start] = ACTIONS(1713), + [sym_interpolation_verbatim_start] = ACTIONS(1715), + [sym_interpolation_raw_start] = ACTIONS(1717), + [sym_raw_string_start] = ACTIONS(1719), }, [1456] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2610), - [sym__name] = STATE(5871), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2319), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(3142), - [sym_non_lvalue_expression] = STATE(3277), - [sym_lvalue_expression] = STATE(3280), - [sym__expression_statement_expression] = STATE(3228), - [sym_assignment_expression] = STATE(3289), - [sym_binary_expression] = STATE(3228), - [sym_postfix_unary_expression] = STATE(3289), - [sym_prefix_unary_expression] = STATE(3289), - [sym__pointer_indirection_expression] = STATE(2609), - [sym_query_expression] = STATE(3228), - [sym_from_clause] = STATE(6177), - [sym_conditional_expression] = STATE(3228), - [sym_conditional_access_expression] = STATE(3228), - [sym_as_expression] = STATE(3228), - [sym_is_expression] = STATE(3228), - [sym_is_pattern_expression] = STATE(3228), - [sym_cast_expression] = STATE(3228), - [sym_checked_expression] = STATE(3228), - [sym_invocation_expression] = STATE(3289), - [sym_switch_expression] = STATE(3228), - [sym_await_expression] = STATE(3289), - [sym_throw_expression] = STATE(3228), - [sym_element_access_expression] = STATE(2609), - [sym_interpolated_string_expression] = STATE(3228), - [sym_member_access_expression] = STATE(2609), - [sym_object_creation_expression] = STATE(3289), - [sym_parenthesized_expression] = STATE(3289), - [sym__parenthesized_lvalue_expression] = STATE(2609), - [sym_lambda_expression] = STATE(3228), - [sym__lambda_expression_init] = STATE(7636), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3228), - [sym_anonymous_method_expression] = STATE(3228), - [sym_anonymous_object_creation_expression] = STATE(3228), - [sym_implicit_array_creation_expression] = STATE(3228), - [sym_implicit_object_creation_expression] = STATE(3228), - [sym_implicit_stackalloc_expression] = STATE(3228), - [sym_initializer_expression] = STATE(3228), - [sym_default_expression] = STATE(3228), - [sym_with_expression] = STATE(3228), - [sym_sizeof_expression] = STATE(3228), - [sym_typeof_expression] = STATE(3228), - [sym_makeref_expression] = STATE(3228), - [sym_ref_expression] = STATE(3228), - [sym_reftype_expression] = STATE(3228), - [sym_refvalue_expression] = STATE(3228), - [sym_stackalloc_expression] = STATE(3228), - [sym_range_expression] = STATE(3228), - [sym_tuple_expression] = STATE(2609), - [sym_literal] = STATE(3228), - [sym_character_literal] = STATE(3278), - [sym_string_literal] = STATE(3278), - [sym_raw_string_literal] = STATE(3278), - [sym_boolean_literal] = STATE(3278), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3228), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(5896), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2362), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(5481), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3661), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3102), + [sym_postfix_unary_expression] = STATE(3079), + [sym_prefix_unary_expression] = STATE(3079), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6129), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3102), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3079), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3102), + [sym_member_access_expression] = STATE(2472), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3079), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7367), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(3102), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3102), + [sym_typeof_expression] = STATE(3102), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2472), + [sym_literal] = STATE(3102), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(1456), [sym_preproc_endregion] = STATE(1456), [sym_preproc_line] = STATE(1456), @@ -287923,47 +287809,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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3396), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1153), - [anon_sym_LPAREN] = ACTIONS(1559), - [anon_sym_ref] = ACTIONS(1561), - [anon_sym_LBRACE] = ACTIONS(1159), - [anon_sym_delegate] = ACTIONS(1161), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1479), + [anon_sym_LPAREN] = ACTIONS(2135), + [anon_sym_ref] = ACTIONS(2137), + [anon_sym_LBRACE] = ACTIONS(1481), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1529), + [anon_sym_new] = ACTIONS(2139), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1167), - [anon_sym_BANG] = ACTIONS(1565), - [anon_sym_TILDE] = ACTIONS(1565), - [anon_sym_PLUS_PLUS] = ACTIONS(1565), - [anon_sym_DASH_DASH] = ACTIONS(1565), - [anon_sym_true] = ACTIONS(1173), - [anon_sym_false] = ACTIONS(1173), - [anon_sym_PLUS] = ACTIONS(1563), - [anon_sym_DASH] = ACTIONS(1563), - [anon_sym_STAR] = ACTIONS(1567), - [anon_sym_CARET] = ACTIONS(1565), - [anon_sym_AMP] = ACTIONS(1565), - [anon_sym_this] = ACTIONS(1177), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(2143), + [anon_sym_TILDE] = ACTIONS(2143), + [anon_sym_PLUS_PLUS] = ACTIONS(2143), + [anon_sym_DASH_DASH] = ACTIONS(2143), + [anon_sym_true] = ACTIONS(77), + [anon_sym_false] = ACTIONS(77), + [anon_sym_PLUS] = ACTIONS(2141), + [anon_sym_DASH] = ACTIONS(2141), + [anon_sym_STAR] = ACTIONS(2145), + [anon_sym_CARET] = ACTIONS(2143), + [anon_sym_AMP] = ACTIONS(2143), + [anon_sym_this] = ACTIONS(83), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1179), + [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1181), - [anon_sym_unchecked] = ACTIONS(1167), + [sym_predefined_type] = ACTIONS(91), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1183), - [anon_sym_throw] = ACTIONS(1569), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(2147), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1571), - [anon_sym_DOT_DOT] = ACTIONS(1573), + [anon_sym_await] = ACTIONS(2149), + [anon_sym_DOT_DOT] = ACTIONS(2151), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -287976,19 +287862,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1191), - [anon_sym_sizeof] = ACTIONS(1193), - [anon_sym_typeof] = ACTIONS(1195), - [anon_sym___makeref] = ACTIONS(1197), - [anon_sym___reftype] = ACTIONS(1199), - [anon_sym___refvalue] = ACTIONS(1201), - [sym_null_literal] = ACTIONS(1203), - [anon_sym_SQUOTE] = ACTIONS(1205), - [sym_integer_literal] = ACTIONS(1203), - [sym_real_literal] = ACTIONS(1207), - [anon_sym_DQUOTE] = ACTIONS(1209), - [sym_verbatim_string_literal] = ACTIONS(1207), - [aux_sym_preproc_if_token1] = ACTIONS(1211), + [anon_sym_stackalloc] = ACTIONS(127), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_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), @@ -287999,90 +287885,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1213), - [sym_interpolation_verbatim_start] = ACTIONS(1215), - [sym_interpolation_raw_start] = ACTIONS(1217), - [sym_raw_string_start] = ACTIONS(1219), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [sym_interpolation_raw_start] = ACTIONS(155), + [sym_raw_string_start] = ACTIONS(157), }, [1457] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2610), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2459), [sym__name] = STATE(5896), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2384), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(5681), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(2612), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3080), - [sym_postfix_unary_expression] = STATE(3111), - [sym_prefix_unary_expression] = STATE(3111), - [sym__pointer_indirection_expression] = STATE(2609), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6154), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3080), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3111), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2609), - [sym_interpolated_string_expression] = STATE(3080), - [sym_member_access_expression] = STATE(2609), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3111), - [sym__parenthesized_lvalue_expression] = STATE(2609), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7530), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(3080), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3080), - [sym_typeof_expression] = STATE(3080), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2609), - [sym_literal] = STATE(3080), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2362), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(5319), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3661), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3102), + [sym_postfix_unary_expression] = STATE(3079), + [sym_prefix_unary_expression] = STATE(3079), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6129), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3102), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3079), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3102), + [sym_member_access_expression] = STATE(2472), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3079), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7367), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(3102), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3102), + [sym_typeof_expression] = STATE(3102), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2472), + [sym_literal] = STATE(3102), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(1457), [sym_preproc_endregion] = STATE(1457), [sym_preproc_line] = STATE(1457), @@ -288092,47 +287978,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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1153), - [anon_sym_LPAREN] = ACTIONS(2949), - [anon_sym_ref] = ACTIONS(661), - [anon_sym_LBRACE] = ACTIONS(1487), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1479), + [anon_sym_LPAREN] = ACTIONS(2135), + [anon_sym_ref] = ACTIONS(2137), + [anon_sym_LBRACE] = ACTIONS(1481), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1061), + [anon_sym_new] = ACTIONS(2139), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = 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_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(2143), + [anon_sym_TILDE] = ACTIONS(2143), + [anon_sym_PLUS_PLUS] = ACTIONS(2143), + [anon_sym_DASH_DASH] = ACTIONS(2143), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1585), - [anon_sym_DASH] = ACTIONS(1585), - [anon_sym_STAR] = ACTIONS(1869), - [anon_sym_CARET] = ACTIONS(1587), - [anon_sym_AMP] = ACTIONS(1587), - [anon_sym_this] = ACTIONS(1177), + [anon_sym_PLUS] = ACTIONS(2141), + [anon_sym_DASH] = ACTIONS(2141), + [anon_sym_STAR] = ACTIONS(2145), + [anon_sym_CARET] = ACTIONS(2143), + [anon_sym_AMP] = ACTIONS(2143), + [anon_sym_this] = ACTIONS(83), [anon_sym_scoped] = ACTIONS(85), [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1181), - [anon_sym_unchecked] = ACTIONS(1067), + [sym_predefined_type] = ACTIONS(91), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1589), + [anon_sym_throw] = ACTIONS(2147), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1591), - [anon_sym_DOT_DOT] = ACTIONS(123), + [anon_sym_await] = ACTIONS(2149), + [anon_sym_DOT_DOT] = ACTIONS(2151), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -288157,7 +288043,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(1089), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -288174,84 +288060,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [1458] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2762), - [sym__name] = STATE(5910), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2204), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(3194), - [sym_non_lvalue_expression] = STATE(3438), - [sym_lvalue_expression] = STATE(3535), - [sym__expression_statement_expression] = STATE(3362), - [sym_assignment_expression] = STATE(3449), - [sym_binary_expression] = STATE(3362), - [sym_postfix_unary_expression] = STATE(3449), - [sym_prefix_unary_expression] = STATE(3449), - [sym__pointer_indirection_expression] = STATE(2747), - [sym_query_expression] = STATE(3362), - [sym_from_clause] = STATE(6178), - [sym_conditional_expression] = STATE(3362), - [sym_conditional_access_expression] = STATE(3362), - [sym_as_expression] = STATE(3362), - [sym_is_expression] = STATE(3362), - [sym_is_pattern_expression] = STATE(3362), - [sym_cast_expression] = STATE(3362), - [sym_checked_expression] = STATE(3362), - [sym_invocation_expression] = STATE(3449), - [sym_switch_expression] = STATE(3362), - [sym_await_expression] = STATE(3449), - [sym_throw_expression] = STATE(3362), - [sym_element_access_expression] = STATE(2747), - [sym_interpolated_string_expression] = STATE(3362), - [sym_member_access_expression] = STATE(2747), - [sym_object_creation_expression] = STATE(3449), - [sym_parenthesized_expression] = STATE(3449), - [sym__parenthesized_lvalue_expression] = STATE(2747), - [sym_lambda_expression] = STATE(3362), - [sym__lambda_expression_init] = STATE(7384), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3362), - [sym_anonymous_method_expression] = STATE(3362), - [sym_anonymous_object_creation_expression] = STATE(3362), - [sym_implicit_array_creation_expression] = STATE(3362), - [sym_implicit_object_creation_expression] = STATE(3362), - [sym_implicit_stackalloc_expression] = STATE(3362), - [sym_initializer_expression] = STATE(3362), - [sym_default_expression] = STATE(3362), - [sym_with_expression] = STATE(3362), - [sym_sizeof_expression] = STATE(3362), - [sym_typeof_expression] = STATE(3362), - [sym_makeref_expression] = STATE(3362), - [sym_ref_expression] = STATE(3362), - [sym_reftype_expression] = STATE(3362), - [sym_refvalue_expression] = STATE(3362), - [sym_stackalloc_expression] = STATE(3362), - [sym_range_expression] = STATE(3362), - [sym_tuple_expression] = STATE(2747), - [sym_literal] = STATE(3362), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2267), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3362), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(5896), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2362), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(5446), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3661), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3102), + [sym_postfix_unary_expression] = STATE(3079), + [sym_prefix_unary_expression] = STATE(3079), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6129), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3102), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3079), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3102), + [sym_member_access_expression] = STATE(2472), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3079), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7367), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(3102), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3102), + [sym_typeof_expression] = STATE(3102), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2472), + [sym_literal] = STATE(3102), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(1458), [sym_preproc_endregion] = STATE(1458), [sym_preproc_line] = STATE(1458), @@ -288261,47 +288147,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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3385), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1307), - [anon_sym_LPAREN] = ACTIONS(1543), - [anon_sym_ref] = ACTIONS(1545), - [anon_sym_LBRACE] = ACTIONS(1313), - [anon_sym_delegate] = ACTIONS(1315), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1479), + [anon_sym_LPAREN] = ACTIONS(2135), + [anon_sym_ref] = ACTIONS(2137), + [anon_sym_LBRACE] = ACTIONS(1481), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1317), + [anon_sym_new] = ACTIONS(2139), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1319), - [anon_sym_BANG] = ACTIONS(1549), - [anon_sym_TILDE] = ACTIONS(1549), - [anon_sym_PLUS_PLUS] = ACTIONS(1549), - [anon_sym_DASH_DASH] = ACTIONS(1549), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(2143), + [anon_sym_TILDE] = ACTIONS(2143), + [anon_sym_PLUS_PLUS] = ACTIONS(2143), + [anon_sym_DASH_DASH] = ACTIONS(2143), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1547), - [anon_sym_DASH] = ACTIONS(1547), - [anon_sym_STAR] = ACTIONS(1551), - [anon_sym_CARET] = ACTIONS(1549), - [anon_sym_AMP] = ACTIONS(1549), - [anon_sym_this] = ACTIONS(1323), + [anon_sym_PLUS] = ACTIONS(2141), + [anon_sym_DASH] = ACTIONS(2141), + [anon_sym_STAR] = ACTIONS(2145), + [anon_sym_CARET] = ACTIONS(2143), + [anon_sym_AMP] = ACTIONS(2143), + [anon_sym_this] = ACTIONS(83), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1325), + [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1319), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1553), + [anon_sym_throw] = ACTIONS(2147), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1555), - [anon_sym_DOT_DOT] = ACTIONS(1557), + [anon_sym_await] = ACTIONS(2149), + [anon_sym_DOT_DOT] = ACTIONS(2151), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -288314,19 +288200,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1333), + [anon_sym_stackalloc] = ACTIONS(127), [anon_sym_sizeof] = ACTIONS(129), [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(1335), - [anon_sym___reftype] = ACTIONS(1337), - [anon_sym___refvalue] = ACTIONS(1339), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), [sym_null_literal] = ACTIONS(139), [anon_sym_SQUOTE] = ACTIONS(141), [sym_integer_literal] = ACTIONS(139), [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1341), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -288343,84 +288229,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [1459] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2762), - [sym__name] = STATE(5910), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2204), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(5677), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(2774), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3080), - [sym_postfix_unary_expression] = STATE(3111), - [sym_prefix_unary_expression] = STATE(3111), - [sym__pointer_indirection_expression] = STATE(2747), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6154), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3080), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3111), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2747), - [sym_interpolated_string_expression] = STATE(3080), - [sym_member_access_expression] = STATE(2747), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3111), - [sym__parenthesized_lvalue_expression] = STATE(2747), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7530), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(3080), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3080), - [sym_typeof_expression] = STATE(3080), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2747), - [sym_literal] = STATE(3080), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2267), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(5896), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2362), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(5447), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3661), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3102), + [sym_postfix_unary_expression] = STATE(3079), + [sym_prefix_unary_expression] = STATE(3079), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6129), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3102), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3079), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3102), + [sym_member_access_expression] = STATE(2472), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3079), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7367), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(3102), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3102), + [sym_typeof_expression] = STATE(3102), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2472), + [sym_literal] = STATE(3102), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(1459), [sym_preproc_endregion] = STATE(1459), [sym_preproc_line] = STATE(1459), @@ -288430,47 +288316,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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1307), - [anon_sym_LPAREN] = ACTIONS(2945), - [anon_sym_ref] = ACTIONS(661), - [anon_sym_LBRACE] = ACTIONS(1487), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1479), + [anon_sym_LPAREN] = ACTIONS(2135), + [anon_sym_ref] = ACTIONS(2137), + [anon_sym_LBRACE] = ACTIONS(1481), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1061), + [anon_sym_new] = ACTIONS(2139), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = 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_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(2143), + [anon_sym_TILDE] = ACTIONS(2143), + [anon_sym_PLUS_PLUS] = ACTIONS(2143), + [anon_sym_DASH_DASH] = ACTIONS(2143), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1585), - [anon_sym_DASH] = ACTIONS(1585), - [anon_sym_STAR] = ACTIONS(1551), - [anon_sym_CARET] = ACTIONS(1587), - [anon_sym_AMP] = ACTIONS(1587), - [anon_sym_this] = ACTIONS(1323), + [anon_sym_PLUS] = ACTIONS(2141), + [anon_sym_DASH] = ACTIONS(2141), + [anon_sym_STAR] = ACTIONS(2145), + [anon_sym_CARET] = ACTIONS(2143), + [anon_sym_AMP] = ACTIONS(2143), + [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(1067), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1589), + [anon_sym_throw] = ACTIONS(2147), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1591), - [anon_sym_DOT_DOT] = ACTIONS(123), + [anon_sym_await] = ACTIONS(2149), + [anon_sym_DOT_DOT] = ACTIONS(2151), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -288495,7 +288381,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(1089), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -288512,84 +288398,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [1460] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2420), - [sym__name] = STATE(5887), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2197), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(2907), - [sym_non_lvalue_expression] = STATE(3066), - [sym_lvalue_expression] = STATE(3552), - [sym__expression_statement_expression] = STATE(3006), - [sym_assignment_expression] = STATE(3020), - [sym_binary_expression] = STATE(3006), - [sym_postfix_unary_expression] = STATE(3020), - [sym_prefix_unary_expression] = STATE(3020), - [sym__pointer_indirection_expression] = STATE(2423), - [sym_query_expression] = STATE(3006), - [sym_from_clause] = STATE(6181), - [sym_conditional_expression] = STATE(3006), - [sym_conditional_access_expression] = STATE(3006), - [sym_as_expression] = STATE(3006), - [sym_is_expression] = STATE(3006), - [sym_is_pattern_expression] = STATE(3006), - [sym_cast_expression] = STATE(3006), - [sym_checked_expression] = STATE(3006), - [sym_invocation_expression] = STATE(3020), - [sym_switch_expression] = STATE(3006), - [sym_await_expression] = STATE(3020), - [sym_throw_expression] = STATE(3006), - [sym_element_access_expression] = STATE(2423), - [sym_interpolated_string_expression] = STATE(3006), - [sym_member_access_expression] = STATE(2423), - [sym_object_creation_expression] = STATE(3020), - [sym_parenthesized_expression] = STATE(3020), - [sym__parenthesized_lvalue_expression] = STATE(2423), - [sym_lambda_expression] = STATE(3006), - [sym__lambda_expression_init] = STATE(7493), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3006), - [sym_anonymous_method_expression] = STATE(3006), - [sym_anonymous_object_creation_expression] = STATE(3006), - [sym_implicit_array_creation_expression] = STATE(3006), - [sym_implicit_object_creation_expression] = STATE(3006), - [sym_implicit_stackalloc_expression] = STATE(3006), - [sym_initializer_expression] = STATE(3006), - [sym_default_expression] = STATE(3006), - [sym_with_expression] = STATE(3006), - [sym_sizeof_expression] = STATE(3006), - [sym_typeof_expression] = STATE(3006), - [sym_makeref_expression] = STATE(3006), - [sym_ref_expression] = STATE(3006), - [sym_reftype_expression] = STATE(3006), - [sym_refvalue_expression] = STATE(3006), - [sym_stackalloc_expression] = STATE(3006), - [sym_range_expression] = STATE(3006), - [sym_tuple_expression] = STATE(2423), - [sym_literal] = STATE(3006), - [sym_character_literal] = STATE(3011), - [sym_string_literal] = STATE(3011), - [sym_raw_string_literal] = STATE(3011), - [sym_boolean_literal] = STATE(3011), - [sym_identifier] = STATE(2267), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3006), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(5896), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2362), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(5450), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3661), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3102), + [sym_postfix_unary_expression] = STATE(3079), + [sym_prefix_unary_expression] = STATE(3079), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6129), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3102), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3079), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3102), + [sym_member_access_expression] = STATE(2472), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3079), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7367), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(3102), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3102), + [sym_typeof_expression] = STATE(3102), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2472), + [sym_literal] = STATE(3102), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(1460), [sym_preproc_endregion] = STATE(1460), [sym_preproc_line] = STATE(1460), @@ -288599,47 +288485,47 @@ 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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3440), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1241), - [anon_sym_LPAREN] = ACTIONS(2031), - [anon_sym_ref] = ACTIONS(2033), - [anon_sym_LBRACE] = ACTIONS(1247), - [anon_sym_delegate] = ACTIONS(1249), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1479), + [anon_sym_LPAREN] = ACTIONS(2135), + [anon_sym_ref] = ACTIONS(2137), + [anon_sym_LBRACE] = ACTIONS(1481), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1251), + [anon_sym_new] = ACTIONS(2139), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1253), - [anon_sym_BANG] = ACTIONS(2037), - [anon_sym_TILDE] = ACTIONS(2037), - [anon_sym_PLUS_PLUS] = ACTIONS(2037), - [anon_sym_DASH_DASH] = ACTIONS(2037), - [anon_sym_true] = ACTIONS(1259), - [anon_sym_false] = ACTIONS(1259), - [anon_sym_PLUS] = ACTIONS(2035), - [anon_sym_DASH] = ACTIONS(2035), - [anon_sym_STAR] = ACTIONS(2039), - [anon_sym_CARET] = ACTIONS(2037), - [anon_sym_AMP] = ACTIONS(2037), - [anon_sym_this] = ACTIONS(1263), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(2143), + [anon_sym_TILDE] = ACTIONS(2143), + [anon_sym_PLUS_PLUS] = ACTIONS(2143), + [anon_sym_DASH_DASH] = ACTIONS(2143), + [anon_sym_true] = ACTIONS(77), + [anon_sym_false] = ACTIONS(77), + [anon_sym_PLUS] = ACTIONS(2141), + [anon_sym_DASH] = ACTIONS(2141), + [anon_sym_STAR] = ACTIONS(2145), + [anon_sym_CARET] = ACTIONS(2143), + [anon_sym_AMP] = ACTIONS(2143), + [anon_sym_this] = ACTIONS(83), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1265), + [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1267), - [anon_sym_unchecked] = ACTIONS(1253), + [sym_predefined_type] = ACTIONS(91), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1269), - [anon_sym_throw] = ACTIONS(2041), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(2147), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2043), - [anon_sym_DOT_DOT] = ACTIONS(2045), + [anon_sym_await] = ACTIONS(2149), + [anon_sym_DOT_DOT] = ACTIONS(2151), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -288652,19 +288538,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1277), - [anon_sym_sizeof] = ACTIONS(1279), - [anon_sym_typeof] = ACTIONS(1281), - [anon_sym___makeref] = ACTIONS(1283), - [anon_sym___reftype] = ACTIONS(1285), - [anon_sym___refvalue] = ACTIONS(1287), - [sym_null_literal] = ACTIONS(1289), - [anon_sym_SQUOTE] = ACTIONS(1291), - [sym_integer_literal] = ACTIONS(1289), - [sym_real_literal] = ACTIONS(1293), - [anon_sym_DQUOTE] = ACTIONS(1295), - [sym_verbatim_string_literal] = ACTIONS(1293), - [aux_sym_preproc_if_token1] = ACTIONS(1297), + [anon_sym_stackalloc] = ACTIONS(127), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_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), @@ -288675,90 +288561,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1299), - [sym_interpolation_verbatim_start] = ACTIONS(1301), - [sym_interpolation_raw_start] = ACTIONS(1303), - [sym_raw_string_start] = ACTIONS(1305), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [sym_interpolation_raw_start] = ACTIONS(155), + [sym_raw_string_start] = ACTIONS(157), }, [1461] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2610), - [sym__name] = STATE(5905), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2395), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(5681), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(2612), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3080), - [sym_postfix_unary_expression] = STATE(3111), - [sym_prefix_unary_expression] = STATE(3111), - [sym__pointer_indirection_expression] = STATE(2609), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6154), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3080), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3111), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2609), - [sym_interpolated_string_expression] = STATE(3080), - [sym_member_access_expression] = STATE(2609), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3111), - [sym__parenthesized_lvalue_expression] = STATE(2609), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7530), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(3080), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3080), - [sym_typeof_expression] = STATE(3080), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2609), - [sym_literal] = STATE(3080), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(5896), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2362), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(5464), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3661), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3102), + [sym_postfix_unary_expression] = STATE(3079), + [sym_prefix_unary_expression] = STATE(3079), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6129), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3102), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3079), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3102), + [sym_member_access_expression] = STATE(2472), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3079), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7367), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(3102), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3102), + [sym_typeof_expression] = STATE(3102), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2472), + [sym_literal] = STATE(3102), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(1461), [sym_preproc_endregion] = STATE(1461), [sym_preproc_line] = STATE(1461), @@ -288768,47 +288654,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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1153), - [anon_sym_LPAREN] = ACTIONS(2949), - [anon_sym_ref] = ACTIONS(661), - [anon_sym_LBRACE] = ACTIONS(1487), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1479), + [anon_sym_LPAREN] = ACTIONS(2135), + [anon_sym_ref] = ACTIONS(2137), + [anon_sym_LBRACE] = ACTIONS(1481), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1061), + [anon_sym_new] = ACTIONS(2139), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = 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_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(2143), + [anon_sym_TILDE] = ACTIONS(2143), + [anon_sym_PLUS_PLUS] = ACTIONS(2143), + [anon_sym_DASH_DASH] = ACTIONS(2143), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1585), - [anon_sym_DASH] = ACTIONS(1585), - [anon_sym_STAR] = ACTIONS(1925), - [anon_sym_CARET] = ACTIONS(1587), - [anon_sym_AMP] = ACTIONS(1587), - [anon_sym_this] = ACTIONS(1177), + [anon_sym_PLUS] = ACTIONS(2141), + [anon_sym_DASH] = ACTIONS(2141), + [anon_sym_STAR] = ACTIONS(2145), + [anon_sym_CARET] = ACTIONS(2143), + [anon_sym_AMP] = ACTIONS(2143), + [anon_sym_this] = ACTIONS(83), [anon_sym_scoped] = ACTIONS(85), [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1181), - [anon_sym_unchecked] = ACTIONS(1067), + [sym_predefined_type] = ACTIONS(91), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1589), + [anon_sym_throw] = ACTIONS(2147), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1591), - [anon_sym_DOT_DOT] = ACTIONS(123), + [anon_sym_await] = ACTIONS(2149), + [anon_sym_DOT_DOT] = ACTIONS(2151), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -288833,7 +288719,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(1089), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -288850,84 +288736,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [1462] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2610), - [sym__name] = STATE(5905), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2395), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(3142), - [sym_non_lvalue_expression] = STATE(3277), - [sym_lvalue_expression] = STATE(3402), - [sym__expression_statement_expression] = STATE(3228), - [sym_assignment_expression] = STATE(3289), - [sym_binary_expression] = STATE(3228), - [sym_postfix_unary_expression] = STATE(3289), - [sym_prefix_unary_expression] = STATE(3289), - [sym__pointer_indirection_expression] = STATE(2609), - [sym_query_expression] = STATE(3228), - [sym_from_clause] = STATE(6166), - [sym_conditional_expression] = STATE(3228), - [sym_conditional_access_expression] = STATE(3228), - [sym_as_expression] = STATE(3228), - [sym_is_expression] = STATE(3228), - [sym_is_pattern_expression] = STATE(3228), - [sym_cast_expression] = STATE(3228), - [sym_checked_expression] = STATE(3228), - [sym_invocation_expression] = STATE(3289), - [sym_switch_expression] = STATE(3228), - [sym_await_expression] = STATE(3289), - [sym_throw_expression] = STATE(3228), - [sym_element_access_expression] = STATE(2609), - [sym_interpolated_string_expression] = STATE(3228), - [sym_member_access_expression] = STATE(2609), - [sym_object_creation_expression] = STATE(3289), - [sym_parenthesized_expression] = STATE(3289), - [sym__parenthesized_lvalue_expression] = STATE(2609), - [sym_lambda_expression] = STATE(3228), - [sym__lambda_expression_init] = STATE(7415), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3228), - [sym_anonymous_method_expression] = STATE(3228), - [sym_anonymous_object_creation_expression] = STATE(3228), - [sym_implicit_array_creation_expression] = STATE(3228), - [sym_implicit_object_creation_expression] = STATE(3228), - [sym_implicit_stackalloc_expression] = STATE(3228), - [sym_initializer_expression] = STATE(3228), - [sym_default_expression] = STATE(3228), - [sym_with_expression] = STATE(3228), - [sym_sizeof_expression] = STATE(3228), - [sym_typeof_expression] = STATE(3228), - [sym_makeref_expression] = STATE(3228), - [sym_ref_expression] = STATE(3228), - [sym_reftype_expression] = STATE(3228), - [sym_refvalue_expression] = STATE(3228), - [sym_stackalloc_expression] = STATE(3228), - [sym_range_expression] = STATE(3228), - [sym_tuple_expression] = STATE(2609), - [sym_literal] = STATE(3228), - [sym_character_literal] = STATE(3278), - [sym_string_literal] = STATE(3278), - [sym_raw_string_literal] = STATE(3278), - [sym_boolean_literal] = STATE(3278), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3228), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(5896), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2362), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(5471), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3661), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3102), + [sym_postfix_unary_expression] = STATE(3079), + [sym_prefix_unary_expression] = STATE(3079), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6129), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3102), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3079), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3102), + [sym_member_access_expression] = STATE(2472), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3079), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7367), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(3102), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3102), + [sym_typeof_expression] = STATE(3102), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2472), + [sym_literal] = STATE(3102), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(1462), [sym_preproc_endregion] = STATE(1462), [sym_preproc_line] = STATE(1462), @@ -288937,47 +288823,47 @@ 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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3396), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1153), - [anon_sym_LPAREN] = ACTIONS(1915), - [anon_sym_ref] = ACTIONS(1917), - [anon_sym_LBRACE] = ACTIONS(1159), - [anon_sym_delegate] = ACTIONS(1161), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1479), + [anon_sym_LPAREN] = ACTIONS(2135), + [anon_sym_ref] = ACTIONS(2137), + [anon_sym_LBRACE] = ACTIONS(1481), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1919), + [anon_sym_new] = ACTIONS(2139), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1167), - [anon_sym_BANG] = ACTIONS(1923), - [anon_sym_TILDE] = ACTIONS(1923), - [anon_sym_PLUS_PLUS] = ACTIONS(1923), - [anon_sym_DASH_DASH] = ACTIONS(1923), - [anon_sym_true] = ACTIONS(1173), - [anon_sym_false] = ACTIONS(1173), - [anon_sym_PLUS] = ACTIONS(1921), - [anon_sym_DASH] = ACTIONS(1921), - [anon_sym_STAR] = ACTIONS(1925), - [anon_sym_CARET] = ACTIONS(1923), - [anon_sym_AMP] = ACTIONS(1923), - [anon_sym_this] = ACTIONS(1177), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(2143), + [anon_sym_TILDE] = ACTIONS(2143), + [anon_sym_PLUS_PLUS] = ACTIONS(2143), + [anon_sym_DASH_DASH] = ACTIONS(2143), + [anon_sym_true] = ACTIONS(77), + [anon_sym_false] = ACTIONS(77), + [anon_sym_PLUS] = ACTIONS(2141), + [anon_sym_DASH] = ACTIONS(2141), + [anon_sym_STAR] = ACTIONS(2145), + [anon_sym_CARET] = ACTIONS(2143), + [anon_sym_AMP] = ACTIONS(2143), + [anon_sym_this] = ACTIONS(83), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1179), + [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1181), - [anon_sym_unchecked] = ACTIONS(1167), + [sym_predefined_type] = ACTIONS(91), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1183), - [anon_sym_throw] = ACTIONS(1927), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(2147), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1929), - [anon_sym_DOT_DOT] = ACTIONS(1931), + [anon_sym_await] = ACTIONS(2149), + [anon_sym_DOT_DOT] = ACTIONS(2151), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -288990,19 +288876,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1191), - [anon_sym_sizeof] = ACTIONS(1193), - [anon_sym_typeof] = ACTIONS(1195), - [anon_sym___makeref] = ACTIONS(1197), - [anon_sym___reftype] = ACTIONS(1199), - [anon_sym___refvalue] = ACTIONS(1201), - [sym_null_literal] = ACTIONS(1203), - [anon_sym_SQUOTE] = ACTIONS(1205), - [sym_integer_literal] = ACTIONS(1203), - [sym_real_literal] = ACTIONS(1207), - [anon_sym_DQUOTE] = ACTIONS(1209), - [sym_verbatim_string_literal] = ACTIONS(1207), - [aux_sym_preproc_if_token1] = ACTIONS(1211), + [anon_sym_stackalloc] = ACTIONS(127), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_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), @@ -289013,90 +288899,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1213), - [sym_interpolation_verbatim_start] = ACTIONS(1215), - [sym_interpolation_raw_start] = ACTIONS(1217), - [sym_raw_string_start] = ACTIONS(1219), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [sym_interpolation_raw_start] = ACTIONS(155), + [sym_raw_string_start] = ACTIONS(157), }, [1463] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2610), - [sym__name] = STATE(5872), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2397), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(5681), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(2612), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3080), - [sym_postfix_unary_expression] = STATE(3111), - [sym_prefix_unary_expression] = STATE(3111), - [sym__pointer_indirection_expression] = STATE(2609), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6154), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3080), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3111), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2609), - [sym_interpolated_string_expression] = STATE(3080), - [sym_member_access_expression] = STATE(2609), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3111), - [sym__parenthesized_lvalue_expression] = STATE(2609), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7530), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(3080), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3080), - [sym_typeof_expression] = STATE(3080), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2609), - [sym_literal] = STATE(3080), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2901), + [sym__name] = STATE(5883), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2359), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(3909), + [sym_non_lvalue_expression] = STATE(3685), + [sym_lvalue_expression] = STATE(3073), + [sym__expression_statement_expression] = STATE(3836), + [sym_assignment_expression] = STATE(3689), + [sym_binary_expression] = STATE(3836), + [sym_postfix_unary_expression] = STATE(3689), + [sym_prefix_unary_expression] = STATE(3689), + [sym__pointer_indirection_expression] = STATE(2906), + [sym_query_expression] = STATE(3836), + [sym_from_clause] = STATE(6157), + [sym_conditional_expression] = STATE(3836), + [sym_conditional_access_expression] = STATE(3836), + [sym_as_expression] = STATE(3836), + [sym_is_expression] = STATE(3836), + [sym_is_pattern_expression] = STATE(3836), + [sym_cast_expression] = STATE(3836), + [sym_checked_expression] = STATE(3836), + [sym_invocation_expression] = STATE(3689), + [sym_switch_expression] = STATE(3836), + [sym_await_expression] = STATE(3689), + [sym_throw_expression] = STATE(3836), + [sym_element_access_expression] = STATE(2906), + [sym_interpolated_string_expression] = STATE(3836), + [sym_member_access_expression] = STATE(2906), + [sym_object_creation_expression] = STATE(3689), + [sym_parenthesized_expression] = STATE(3689), + [sym__parenthesized_lvalue_expression] = STATE(2906), + [sym_lambda_expression] = STATE(3836), + [sym__lambda_expression_init] = STATE(7460), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3836), + [sym_anonymous_method_expression] = STATE(3836), + [sym_anonymous_object_creation_expression] = STATE(3836), + [sym_implicit_array_creation_expression] = STATE(3836), + [sym_implicit_object_creation_expression] = STATE(3836), + [sym_implicit_stackalloc_expression] = STATE(3836), + [sym_initializer_expression] = STATE(3836), + [sym_default_expression] = STATE(3836), + [sym_with_expression] = STATE(3836), + [sym_sizeof_expression] = STATE(3836), + [sym_typeof_expression] = STATE(3836), + [sym_makeref_expression] = STATE(3836), + [sym_ref_expression] = STATE(3836), + [sym_reftype_expression] = STATE(3836), + [sym_refvalue_expression] = STATE(3836), + [sym_stackalloc_expression] = STATE(3836), + [sym_range_expression] = STATE(3836), + [sym_tuple_expression] = STATE(2906), + [sym_literal] = STATE(3836), + [sym_character_literal] = STATE(3843), + [sym_string_literal] = STATE(3843), + [sym_raw_string_literal] = STATE(3843), + [sym_boolean_literal] = STATE(3843), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3836), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(1463), [sym_preproc_endregion] = STATE(1463), [sym_preproc_line] = STATE(1463), @@ -289106,47 +288992,47 @@ 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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3477), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1153), - [anon_sym_LPAREN] = ACTIONS(2949), - [anon_sym_ref] = ACTIONS(661), - [anon_sym_LBRACE] = ACTIONS(1487), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1655), + [anon_sym_LPAREN] = ACTIONS(2061), + [anon_sym_ref] = ACTIONS(2063), + [anon_sym_LBRACE] = ACTIONS(1661), + [anon_sym_delegate] = ACTIONS(1663), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1061), + [anon_sym_new] = ACTIONS(1665), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = 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(1585), - [anon_sym_DASH] = ACTIONS(1585), - [anon_sym_STAR] = ACTIONS(1833), - [anon_sym_CARET] = ACTIONS(1587), - [anon_sym_AMP] = ACTIONS(1587), - [anon_sym_this] = ACTIONS(1177), + [anon_sym_checked] = ACTIONS(1667), + [anon_sym_BANG] = ACTIONS(2067), + [anon_sym_TILDE] = ACTIONS(2067), + [anon_sym_PLUS_PLUS] = ACTIONS(2067), + [anon_sym_DASH_DASH] = ACTIONS(2067), + [anon_sym_true] = ACTIONS(1673), + [anon_sym_false] = ACTIONS(1673), + [anon_sym_PLUS] = ACTIONS(2065), + [anon_sym_DASH] = ACTIONS(2065), + [anon_sym_STAR] = ACTIONS(1675), + [anon_sym_CARET] = ACTIONS(2067), + [anon_sym_AMP] = ACTIONS(2067), + [anon_sym_this] = ACTIONS(1677), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), + [anon_sym_base] = ACTIONS(1679), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1181), - [anon_sym_unchecked] = ACTIONS(1067), + [sym_predefined_type] = ACTIONS(1681), + [anon_sym_unchecked] = ACTIONS(1667), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1589), + [anon_sym_default] = ACTIONS(1683), + [anon_sym_throw] = ACTIONS(2069), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1591), - [anon_sym_DOT_DOT] = ACTIONS(123), + [anon_sym_await] = ACTIONS(2071), + [anon_sym_DOT_DOT] = ACTIONS(2073), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -289159,19 +289045,19 @@ static const uint16_t ts_parse_table[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(1089), + [anon_sym_stackalloc] = ACTIONS(1691), + [anon_sym_sizeof] = ACTIONS(1693), + [anon_sym_typeof] = ACTIONS(1695), + [anon_sym___makeref] = ACTIONS(1697), + [anon_sym___reftype] = ACTIONS(1699), + [anon_sym___refvalue] = ACTIONS(1701), + [sym_null_literal] = ACTIONS(1703), + [anon_sym_SQUOTE] = ACTIONS(1705), + [sym_integer_literal] = ACTIONS(1703), + [sym_real_literal] = ACTIONS(1707), + [anon_sym_DQUOTE] = ACTIONS(1709), + [sym_verbatim_string_literal] = ACTIONS(1707), + [aux_sym_preproc_if_token1] = ACTIONS(1711), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -289182,90 +289068,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(151), - [sym_interpolation_verbatim_start] = ACTIONS(153), - [sym_interpolation_raw_start] = ACTIONS(155), - [sym_raw_string_start] = ACTIONS(157), + [sym_interpolation_regular_start] = ACTIONS(1713), + [sym_interpolation_verbatim_start] = ACTIONS(1715), + [sym_interpolation_raw_start] = ACTIONS(1717), + [sym_raw_string_start] = ACTIONS(1719), }, [1464] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2610), - [sym__name] = STATE(5872), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2397), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(3142), - [sym_non_lvalue_expression] = STATE(3277), - [sym_lvalue_expression] = STATE(3407), - [sym__expression_statement_expression] = STATE(3228), - [sym_assignment_expression] = STATE(3289), - [sym_binary_expression] = STATE(3228), - [sym_postfix_unary_expression] = STATE(3289), - [sym_prefix_unary_expression] = STATE(3289), - [sym__pointer_indirection_expression] = STATE(2609), - [sym_query_expression] = STATE(3228), - [sym_from_clause] = STATE(6165), - [sym_conditional_expression] = STATE(3228), - [sym_conditional_access_expression] = STATE(3228), - [sym_as_expression] = STATE(3228), - [sym_is_expression] = STATE(3228), - [sym_is_pattern_expression] = STATE(3228), - [sym_cast_expression] = STATE(3228), - [sym_checked_expression] = STATE(3228), - [sym_invocation_expression] = STATE(3289), - [sym_switch_expression] = STATE(3228), - [sym_await_expression] = STATE(3289), - [sym_throw_expression] = STATE(3228), - [sym_element_access_expression] = STATE(2609), - [sym_interpolated_string_expression] = STATE(3228), - [sym_member_access_expression] = STATE(2609), - [sym_object_creation_expression] = STATE(3289), - [sym_parenthesized_expression] = STATE(3289), - [sym__parenthesized_lvalue_expression] = STATE(2609), - [sym_lambda_expression] = STATE(3228), - [sym__lambda_expression_init] = STATE(7478), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3228), - [sym_anonymous_method_expression] = STATE(3228), - [sym_anonymous_object_creation_expression] = STATE(3228), - [sym_implicit_array_creation_expression] = STATE(3228), - [sym_implicit_object_creation_expression] = STATE(3228), - [sym_implicit_stackalloc_expression] = STATE(3228), - [sym_initializer_expression] = STATE(3228), - [sym_default_expression] = STATE(3228), - [sym_with_expression] = STATE(3228), - [sym_sizeof_expression] = STATE(3228), - [sym_typeof_expression] = STATE(3228), - [sym_makeref_expression] = STATE(3228), - [sym_ref_expression] = STATE(3228), - [sym_reftype_expression] = STATE(3228), - [sym_refvalue_expression] = STATE(3228), - [sym_stackalloc_expression] = STATE(3228), - [sym_range_expression] = STATE(3228), - [sym_tuple_expression] = STATE(2609), - [sym_literal] = STATE(3228), - [sym_character_literal] = STATE(3278), - [sym_string_literal] = STATE(3278), - [sym_raw_string_literal] = STATE(3278), - [sym_boolean_literal] = STATE(3278), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3228), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(5896), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2362), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(5473), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3661), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3102), + [sym_postfix_unary_expression] = STATE(3079), + [sym_prefix_unary_expression] = STATE(3079), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6129), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3102), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3079), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3102), + [sym_member_access_expression] = STATE(2472), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3079), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7367), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(3102), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3102), + [sym_typeof_expression] = STATE(3102), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2472), + [sym_literal] = STATE(3102), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(1464), [sym_preproc_endregion] = STATE(1464), [sym_preproc_line] = STATE(1464), @@ -289275,47 +289161,47 @@ 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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3396), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1153), - [anon_sym_LPAREN] = ACTIONS(1823), - [anon_sym_ref] = ACTIONS(1825), - [anon_sym_LBRACE] = ACTIONS(1159), - [anon_sym_delegate] = ACTIONS(1161), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1479), + [anon_sym_LPAREN] = ACTIONS(2135), + [anon_sym_ref] = ACTIONS(2137), + [anon_sym_LBRACE] = ACTIONS(1481), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1827), + [anon_sym_new] = ACTIONS(2139), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1167), - [anon_sym_BANG] = ACTIONS(1831), - [anon_sym_TILDE] = ACTIONS(1831), - [anon_sym_PLUS_PLUS] = ACTIONS(1831), - [anon_sym_DASH_DASH] = ACTIONS(1831), - [anon_sym_true] = ACTIONS(1173), - [anon_sym_false] = ACTIONS(1173), - [anon_sym_PLUS] = ACTIONS(1829), - [anon_sym_DASH] = ACTIONS(1829), - [anon_sym_STAR] = ACTIONS(1833), - [anon_sym_CARET] = ACTIONS(1831), - [anon_sym_AMP] = ACTIONS(1831), - [anon_sym_this] = ACTIONS(1177), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(2143), + [anon_sym_TILDE] = ACTIONS(2143), + [anon_sym_PLUS_PLUS] = ACTIONS(2143), + [anon_sym_DASH_DASH] = ACTIONS(2143), + [anon_sym_true] = ACTIONS(77), + [anon_sym_false] = ACTIONS(77), + [anon_sym_PLUS] = ACTIONS(2141), + [anon_sym_DASH] = ACTIONS(2141), + [anon_sym_STAR] = ACTIONS(2145), + [anon_sym_CARET] = ACTIONS(2143), + [anon_sym_AMP] = ACTIONS(2143), + [anon_sym_this] = ACTIONS(83), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1179), + [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1181), - [anon_sym_unchecked] = ACTIONS(1167), + [sym_predefined_type] = ACTIONS(91), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1183), - [anon_sym_throw] = ACTIONS(1835), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(2147), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1837), - [anon_sym_DOT_DOT] = ACTIONS(1839), + [anon_sym_await] = ACTIONS(2149), + [anon_sym_DOT_DOT] = ACTIONS(2151), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -289328,19 +289214,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1191), - [anon_sym_sizeof] = ACTIONS(1193), - [anon_sym_typeof] = ACTIONS(1195), - [anon_sym___makeref] = ACTIONS(1197), - [anon_sym___reftype] = ACTIONS(1199), - [anon_sym___refvalue] = ACTIONS(1201), - [sym_null_literal] = ACTIONS(1203), - [anon_sym_SQUOTE] = ACTIONS(1205), - [sym_integer_literal] = ACTIONS(1203), - [sym_real_literal] = ACTIONS(1207), - [anon_sym_DQUOTE] = ACTIONS(1209), - [sym_verbatim_string_literal] = ACTIONS(1207), - [aux_sym_preproc_if_token1] = ACTIONS(1211), + [anon_sym_stackalloc] = ACTIONS(127), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_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), @@ -289351,90 +289237,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1213), - [sym_interpolation_verbatim_start] = ACTIONS(1215), - [sym_interpolation_raw_start] = ACTIONS(1217), - [sym_raw_string_start] = ACTIONS(1219), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [sym_interpolation_raw_start] = ACTIONS(155), + [sym_raw_string_start] = ACTIONS(157), }, [1465] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2610), - [sym__name] = STATE(5898), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2197), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(5681), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(2612), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3080), - [sym_postfix_unary_expression] = STATE(3111), - [sym_prefix_unary_expression] = STATE(3111), - [sym__pointer_indirection_expression] = STATE(2609), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6154), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3080), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3111), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2609), - [sym_interpolated_string_expression] = STATE(3080), - [sym_member_access_expression] = STATE(2609), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3111), - [sym__parenthesized_lvalue_expression] = STATE(2609), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7530), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(3080), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3080), - [sym_typeof_expression] = STATE(3080), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2609), - [sym_literal] = STATE(3080), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2267), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(5896), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2362), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(5474), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3661), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3102), + [sym_postfix_unary_expression] = STATE(3079), + [sym_prefix_unary_expression] = STATE(3079), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6129), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3102), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3079), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3102), + [sym_member_access_expression] = STATE(2472), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3079), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7367), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(3102), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3102), + [sym_typeof_expression] = STATE(3102), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2472), + [sym_literal] = STATE(3102), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(1465), [sym_preproc_endregion] = STATE(1465), [sym_preproc_line] = STATE(1465), @@ -289444,47 +289330,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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1153), - [anon_sym_LPAREN] = ACTIONS(2949), - [anon_sym_ref] = ACTIONS(661), - [anon_sym_LBRACE] = ACTIONS(1487), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1479), + [anon_sym_LPAREN] = ACTIONS(2135), + [anon_sym_ref] = ACTIONS(2137), + [anon_sym_LBRACE] = ACTIONS(1481), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1061), + [anon_sym_new] = ACTIONS(2139), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = 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_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(2143), + [anon_sym_TILDE] = ACTIONS(2143), + [anon_sym_PLUS_PLUS] = ACTIONS(2143), + [anon_sym_DASH_DASH] = ACTIONS(2143), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1585), - [anon_sym_DASH] = ACTIONS(1585), - [anon_sym_STAR] = ACTIONS(1601), - [anon_sym_CARET] = ACTIONS(1587), - [anon_sym_AMP] = ACTIONS(1587), - [anon_sym_this] = ACTIONS(1177), + [anon_sym_PLUS] = ACTIONS(2141), + [anon_sym_DASH] = ACTIONS(2141), + [anon_sym_STAR] = ACTIONS(2145), + [anon_sym_CARET] = ACTIONS(2143), + [anon_sym_AMP] = ACTIONS(2143), + [anon_sym_this] = ACTIONS(83), [anon_sym_scoped] = ACTIONS(85), [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1181), - [anon_sym_unchecked] = ACTIONS(1067), + [sym_predefined_type] = ACTIONS(91), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1589), + [anon_sym_throw] = ACTIONS(2147), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1591), - [anon_sym_DOT_DOT] = ACTIONS(123), + [anon_sym_await] = ACTIONS(2149), + [anon_sym_DOT_DOT] = ACTIONS(2151), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -289509,7 +289395,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(1089), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -289526,84 +289412,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [1466] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2610), - [sym__name] = STATE(5898), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2197), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(3142), - [sym_non_lvalue_expression] = STATE(3277), - [sym_lvalue_expression] = STATE(3413), - [sym__expression_statement_expression] = STATE(3228), - [sym_assignment_expression] = STATE(3289), - [sym_binary_expression] = STATE(3228), - [sym_postfix_unary_expression] = STATE(3289), - [sym_prefix_unary_expression] = STATE(3289), - [sym__pointer_indirection_expression] = STATE(2609), - [sym_query_expression] = STATE(3228), - [sym_from_clause] = STATE(6160), - [sym_conditional_expression] = STATE(3228), - [sym_conditional_access_expression] = STATE(3228), - [sym_as_expression] = STATE(3228), - [sym_is_expression] = STATE(3228), - [sym_is_pattern_expression] = STATE(3228), - [sym_cast_expression] = STATE(3228), - [sym_checked_expression] = STATE(3228), - [sym_invocation_expression] = STATE(3289), - [sym_switch_expression] = STATE(3228), - [sym_await_expression] = STATE(3289), - [sym_throw_expression] = STATE(3228), - [sym_element_access_expression] = STATE(2609), - [sym_interpolated_string_expression] = STATE(3228), - [sym_member_access_expression] = STATE(2609), - [sym_object_creation_expression] = STATE(3289), - [sym_parenthesized_expression] = STATE(3289), - [sym__parenthesized_lvalue_expression] = STATE(2609), - [sym_lambda_expression] = STATE(3228), - [sym__lambda_expression_init] = STATE(7523), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3228), - [sym_anonymous_method_expression] = STATE(3228), - [sym_anonymous_object_creation_expression] = STATE(3228), - [sym_implicit_array_creation_expression] = STATE(3228), - [sym_implicit_object_creation_expression] = STATE(3228), - [sym_implicit_stackalloc_expression] = STATE(3228), - [sym_initializer_expression] = STATE(3228), - [sym_default_expression] = STATE(3228), - [sym_with_expression] = STATE(3228), - [sym_sizeof_expression] = STATE(3228), - [sym_typeof_expression] = STATE(3228), - [sym_makeref_expression] = STATE(3228), - [sym_ref_expression] = STATE(3228), - [sym_reftype_expression] = STATE(3228), - [sym_refvalue_expression] = STATE(3228), - [sym_stackalloc_expression] = STATE(3228), - [sym_range_expression] = STATE(3228), - [sym_tuple_expression] = STATE(2609), - [sym_literal] = STATE(3228), - [sym_character_literal] = STATE(3278), - [sym_string_literal] = STATE(3278), - [sym_raw_string_literal] = STATE(3278), - [sym_boolean_literal] = STATE(3278), - [sym_identifier] = STATE(2267), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3228), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(5896), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2362), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(5476), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3661), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3102), + [sym_postfix_unary_expression] = STATE(3079), + [sym_prefix_unary_expression] = STATE(3079), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6129), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3102), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3079), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3102), + [sym_member_access_expression] = STATE(2472), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3079), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7367), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(3102), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3102), + [sym_typeof_expression] = STATE(3102), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2472), + [sym_literal] = STATE(3102), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(1466), [sym_preproc_endregion] = STATE(1466), [sym_preproc_line] = STATE(1466), @@ -289613,47 +289499,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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3396), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1153), - [anon_sym_LPAREN] = ACTIONS(1593), - [anon_sym_ref] = ACTIONS(1595), - [anon_sym_LBRACE] = ACTIONS(1159), - [anon_sym_delegate] = ACTIONS(1161), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1479), + [anon_sym_LPAREN] = ACTIONS(2135), + [anon_sym_ref] = ACTIONS(2137), + [anon_sym_LBRACE] = ACTIONS(1481), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1163), + [anon_sym_new] = ACTIONS(2139), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1167), - [anon_sym_BANG] = ACTIONS(1599), - [anon_sym_TILDE] = ACTIONS(1599), - [anon_sym_PLUS_PLUS] = ACTIONS(1599), - [anon_sym_DASH_DASH] = ACTIONS(1599), - [anon_sym_true] = ACTIONS(1173), - [anon_sym_false] = ACTIONS(1173), - [anon_sym_PLUS] = ACTIONS(1597), - [anon_sym_DASH] = ACTIONS(1597), - [anon_sym_STAR] = ACTIONS(1601), - [anon_sym_CARET] = ACTIONS(1599), - [anon_sym_AMP] = ACTIONS(1599), - [anon_sym_this] = ACTIONS(1177), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(2143), + [anon_sym_TILDE] = ACTIONS(2143), + [anon_sym_PLUS_PLUS] = ACTIONS(2143), + [anon_sym_DASH_DASH] = ACTIONS(2143), + [anon_sym_true] = ACTIONS(77), + [anon_sym_false] = ACTIONS(77), + [anon_sym_PLUS] = ACTIONS(2141), + [anon_sym_DASH] = ACTIONS(2141), + [anon_sym_STAR] = ACTIONS(2145), + [anon_sym_CARET] = ACTIONS(2143), + [anon_sym_AMP] = ACTIONS(2143), + [anon_sym_this] = ACTIONS(83), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1179), + [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1181), - [anon_sym_unchecked] = ACTIONS(1167), + [sym_predefined_type] = ACTIONS(91), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1183), - [anon_sym_throw] = ACTIONS(1603), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(2147), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1605), - [anon_sym_DOT_DOT] = ACTIONS(1607), + [anon_sym_await] = ACTIONS(2149), + [anon_sym_DOT_DOT] = ACTIONS(2151), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -289666,19 +289552,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1191), - [anon_sym_sizeof] = ACTIONS(1193), - [anon_sym_typeof] = ACTIONS(1195), - [anon_sym___makeref] = ACTIONS(1197), - [anon_sym___reftype] = ACTIONS(1199), - [anon_sym___refvalue] = ACTIONS(1201), - [sym_null_literal] = ACTIONS(1203), - [anon_sym_SQUOTE] = ACTIONS(1205), - [sym_integer_literal] = ACTIONS(1203), - [sym_real_literal] = ACTIONS(1207), - [anon_sym_DQUOTE] = ACTIONS(1209), - [sym_verbatim_string_literal] = ACTIONS(1207), - [aux_sym_preproc_if_token1] = ACTIONS(1211), + [anon_sym_stackalloc] = ACTIONS(127), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_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), @@ -289689,90 +289575,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1213), - [sym_interpolation_verbatim_start] = ACTIONS(1215), - [sym_interpolation_raw_start] = ACTIONS(1217), - [sym_raw_string_start] = ACTIONS(1219), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [sym_interpolation_raw_start] = ACTIONS(155), + [sym_raw_string_start] = ACTIONS(157), }, [1467] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(3184), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2901), [sym__name] = STATE(5883), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2313), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2269), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(4945), - [sym_non_lvalue_expression] = STATE(4541), - [sym_lvalue_expression] = STATE(3527), - [sym__expression_statement_expression] = STATE(4529), - [sym_assignment_expression] = STATE(4543), - [sym_binary_expression] = STATE(4529), - [sym_postfix_unary_expression] = STATE(4543), - [sym_prefix_unary_expression] = STATE(4543), - [sym__pointer_indirection_expression] = STATE(3175), - [sym_query_expression] = STATE(4529), - [sym_from_clause] = STATE(6169), - [sym_conditional_expression] = STATE(4529), - [sym_conditional_access_expression] = STATE(4529), - [sym_as_expression] = STATE(4529), - [sym_is_expression] = STATE(4529), - [sym_is_pattern_expression] = STATE(4529), - [sym_cast_expression] = STATE(4529), - [sym_checked_expression] = STATE(4529), - [sym_invocation_expression] = STATE(4543), - [sym_switch_expression] = STATE(4529), - [sym_await_expression] = STATE(4543), - [sym_throw_expression] = STATE(4529), - [sym_element_access_expression] = STATE(3175), - [sym_interpolated_string_expression] = STATE(4529), - [sym_member_access_expression] = STATE(3175), - [sym_object_creation_expression] = STATE(4543), - [sym_parenthesized_expression] = STATE(4543), - [sym__parenthesized_lvalue_expression] = STATE(3175), - [sym_lambda_expression] = STATE(4529), - [sym__lambda_expression_init] = STATE(7337), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(4529), - [sym_anonymous_method_expression] = STATE(4529), - [sym_anonymous_object_creation_expression] = STATE(4529), - [sym_implicit_array_creation_expression] = STATE(4529), - [sym_implicit_object_creation_expression] = STATE(4529), - [sym_implicit_stackalloc_expression] = STATE(4529), - [sym_initializer_expression] = STATE(4529), - [sym_default_expression] = STATE(4529), - [sym_with_expression] = STATE(4529), - [sym_sizeof_expression] = STATE(4529), - [sym_typeof_expression] = STATE(4529), - [sym_makeref_expression] = STATE(4529), - [sym_ref_expression] = STATE(4529), - [sym_reftype_expression] = STATE(4529), - [sym_refvalue_expression] = STATE(4529), - [sym_stackalloc_expression] = STATE(4529), - [sym_range_expression] = STATE(4529), - [sym_tuple_expression] = STATE(3175), - [sym_literal] = STATE(4529), - [sym_character_literal] = STATE(4536), - [sym_string_literal] = STATE(4536), - [sym_raw_string_literal] = STATE(4536), - [sym_boolean_literal] = STATE(4536), - [sym_identifier] = STATE(2246), - [sym__reserved_identifier] = STATE(2240), - [sym_preproc_if_in_expression] = STATE(4529), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2359), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(3910), + [sym_non_lvalue_expression] = STATE(3685), + [sym_lvalue_expression] = STATE(3073), + [sym__expression_statement_expression] = STATE(3836), + [sym_assignment_expression] = STATE(3689), + [sym_binary_expression] = STATE(3836), + [sym_postfix_unary_expression] = STATE(3689), + [sym_prefix_unary_expression] = STATE(3689), + [sym__pointer_indirection_expression] = STATE(2906), + [sym_query_expression] = STATE(3836), + [sym_from_clause] = STATE(6157), + [sym_conditional_expression] = STATE(3836), + [sym_conditional_access_expression] = STATE(3836), + [sym_as_expression] = STATE(3836), + [sym_is_expression] = STATE(3836), + [sym_is_pattern_expression] = STATE(3836), + [sym_cast_expression] = STATE(3836), + [sym_checked_expression] = STATE(3836), + [sym_invocation_expression] = STATE(3689), + [sym_switch_expression] = STATE(3836), + [sym_await_expression] = STATE(3689), + [sym_throw_expression] = STATE(3836), + [sym_element_access_expression] = STATE(2906), + [sym_interpolated_string_expression] = STATE(3836), + [sym_member_access_expression] = STATE(2906), + [sym_object_creation_expression] = STATE(3689), + [sym_parenthesized_expression] = STATE(3689), + [sym__parenthesized_lvalue_expression] = STATE(2906), + [sym_lambda_expression] = STATE(3836), + [sym__lambda_expression_init] = STATE(7460), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3836), + [sym_anonymous_method_expression] = STATE(3836), + [sym_anonymous_object_creation_expression] = STATE(3836), + [sym_implicit_array_creation_expression] = STATE(3836), + [sym_implicit_object_creation_expression] = STATE(3836), + [sym_implicit_stackalloc_expression] = STATE(3836), + [sym_initializer_expression] = STATE(3836), + [sym_default_expression] = STATE(3836), + [sym_with_expression] = STATE(3836), + [sym_sizeof_expression] = STATE(3836), + [sym_typeof_expression] = STATE(3836), + [sym_makeref_expression] = STATE(3836), + [sym_ref_expression] = STATE(3836), + [sym_reftype_expression] = STATE(3836), + [sym_refvalue_expression] = STATE(3836), + [sym_stackalloc_expression] = STATE(3836), + [sym_range_expression] = STATE(3836), + [sym_tuple_expression] = STATE(2906), + [sym_literal] = STATE(3836), + [sym_character_literal] = STATE(3843), + [sym_string_literal] = STATE(3843), + [sym_raw_string_literal] = STATE(3843), + [sym_boolean_literal] = STATE(3843), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3836), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(1467), [sym_preproc_endregion] = STATE(1467), [sym_preproc_line] = STATE(1467), @@ -289782,166 +289668,166 @@ 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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3363), - [sym__identifier_token] = ACTIONS(1387), - [anon_sym_alias] = ACTIONS(1389), - [anon_sym_global] = ACTIONS(1389), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1391), - [anon_sym_LPAREN] = ACTIONS(1745), - [anon_sym_ref] = ACTIONS(1747), - [anon_sym_LBRACE] = ACTIONS(1397), - [anon_sym_delegate] = ACTIONS(1399), - [anon_sym_async] = ACTIONS(1047), - [anon_sym_file] = ACTIONS(1389), - [anon_sym_new] = ACTIONS(1467), - [anon_sym_where] = ACTIONS(1389), - [anon_sym_notnull] = ACTIONS(1389), - [anon_sym_unmanaged] = ACTIONS(1389), - [anon_sym_checked] = ACTIONS(1403), - [anon_sym_BANG] = ACTIONS(1751), - [anon_sym_TILDE] = ACTIONS(1751), - [anon_sym_PLUS_PLUS] = ACTIONS(1751), - [anon_sym_DASH_DASH] = ACTIONS(1751), - [anon_sym_true] = ACTIONS(1409), - [anon_sym_false] = ACTIONS(1409), - [anon_sym_PLUS] = ACTIONS(1749), - [anon_sym_DASH] = ACTIONS(1749), - [anon_sym_STAR] = ACTIONS(1473), - [anon_sym_CARET] = ACTIONS(1751), - [anon_sym_AMP] = ACTIONS(1751), - [anon_sym_this] = ACTIONS(1413), - [anon_sym_scoped] = ACTIONS(1415), - [anon_sym_base] = ACTIONS(1417), - [anon_sym_var] = ACTIONS(1419), - [sym_predefined_type] = ACTIONS(1421), - [anon_sym_unchecked] = ACTIONS(1403), - [anon_sym_yield] = ACTIONS(1389), - [anon_sym_default] = ACTIONS(1423), - [anon_sym_throw] = ACTIONS(1753), - [anon_sym_when] = ACTIONS(1389), - [anon_sym_await] = ACTIONS(1755), - [anon_sym_DOT_DOT] = ACTIONS(1757), - [anon_sym_from] = ACTIONS(1431), - [anon_sym_into] = ACTIONS(1389), - [anon_sym_join] = ACTIONS(1389), - [anon_sym_on] = ACTIONS(1389), - [anon_sym_equals] = ACTIONS(1389), - [anon_sym_let] = ACTIONS(1389), - [anon_sym_orderby] = ACTIONS(1389), - [anon_sym_ascending] = ACTIONS(1389), - [anon_sym_descending] = ACTIONS(1389), - [anon_sym_group] = ACTIONS(1389), - [anon_sym_by] = ACTIONS(1389), - [anon_sym_select] = ACTIONS(1389), - [anon_sym_stackalloc] = ACTIONS(1433), - [anon_sym_sizeof] = ACTIONS(1435), - [anon_sym_typeof] = ACTIONS(1437), - [anon_sym___makeref] = ACTIONS(1439), - [anon_sym___reftype] = ACTIONS(1441), - [anon_sym___refvalue] = ACTIONS(1443), - [sym_null_literal] = ACTIONS(1445), - [anon_sym_SQUOTE] = ACTIONS(1447), - [sym_integer_literal] = ACTIONS(1445), - [sym_real_literal] = ACTIONS(1449), - [anon_sym_DQUOTE] = ACTIONS(1451), - [sym_verbatim_string_literal] = ACTIONS(1449), - [aux_sym_preproc_if_token1] = ACTIONS(1453), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1455), - [sym_interpolation_verbatim_start] = ACTIONS(1457), - [sym_interpolation_raw_start] = ACTIONS(1459), - [sym_raw_string_start] = ACTIONS(1461), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3477), + [sym__identifier_token] = ACTIONS(25), + [anon_sym_alias] = ACTIONS(29), + [anon_sym_global] = ACTIONS(29), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1655), + [anon_sym_LPAREN] = ACTIONS(2061), + [anon_sym_ref] = ACTIONS(2063), + [anon_sym_LBRACE] = ACTIONS(1661), + [anon_sym_delegate] = ACTIONS(1663), + [anon_sym_async] = ACTIONS(1045), + [anon_sym_file] = ACTIONS(29), + [anon_sym_new] = ACTIONS(1665), + [anon_sym_where] = ACTIONS(29), + [anon_sym_notnull] = ACTIONS(29), + [anon_sym_unmanaged] = ACTIONS(29), + [anon_sym_checked] = ACTIONS(1667), + [anon_sym_BANG] = ACTIONS(2067), + [anon_sym_TILDE] = ACTIONS(2067), + [anon_sym_PLUS_PLUS] = ACTIONS(2067), + [anon_sym_DASH_DASH] = ACTIONS(2067), + [anon_sym_true] = ACTIONS(1673), + [anon_sym_false] = ACTIONS(1673), + [anon_sym_PLUS] = ACTIONS(2065), + [anon_sym_DASH] = ACTIONS(2065), + [anon_sym_STAR] = ACTIONS(1675), + [anon_sym_CARET] = ACTIONS(2067), + [anon_sym_AMP] = ACTIONS(2067), + [anon_sym_this] = ACTIONS(1677), + [anon_sym_scoped] = ACTIONS(85), + [anon_sym_base] = ACTIONS(1679), + [anon_sym_var] = ACTIONS(89), + [sym_predefined_type] = ACTIONS(1681), + [anon_sym_unchecked] = ACTIONS(1667), + [anon_sym_yield] = ACTIONS(29), + [anon_sym_default] = ACTIONS(1683), + [anon_sym_throw] = ACTIONS(2069), + [anon_sym_when] = ACTIONS(29), + [anon_sym_await] = ACTIONS(2071), + [anon_sym_DOT_DOT] = ACTIONS(2073), + [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(1691), + [anon_sym_sizeof] = ACTIONS(1693), + [anon_sym_typeof] = ACTIONS(1695), + [anon_sym___makeref] = ACTIONS(1697), + [anon_sym___reftype] = ACTIONS(1699), + [anon_sym___refvalue] = ACTIONS(1701), + [sym_null_literal] = ACTIONS(1703), + [anon_sym_SQUOTE] = ACTIONS(1705), + [sym_integer_literal] = ACTIONS(1703), + [sym_real_literal] = ACTIONS(1707), + [anon_sym_DQUOTE] = ACTIONS(1709), + [sym_verbatim_string_literal] = ACTIONS(1707), + [aux_sym_preproc_if_token1] = ACTIONS(1711), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + [sym_interpolation_regular_start] = ACTIONS(1713), + [sym_interpolation_verbatim_start] = ACTIONS(1715), + [sym_interpolation_raw_start] = ACTIONS(1717), + [sym_raw_string_start] = ACTIONS(1719), }, [1468] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(5160), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2204), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(3543), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3520), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3080), - [sym_postfix_unary_expression] = STATE(3111), - [sym_prefix_unary_expression] = STATE(3111), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6154), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3080), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3111), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3080), - [sym_member_access_expression] = STATE(2484), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3111), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7530), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(3080), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3080), - [sym_typeof_expression] = STATE(3080), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2484), - [sym_literal] = STATE(3080), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(5896), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2362), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(5421), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3661), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3102), + [sym_postfix_unary_expression] = STATE(3079), + [sym_prefix_unary_expression] = STATE(3079), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6129), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3102), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3079), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3102), + [sym_member_access_expression] = STATE(2472), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3079), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7367), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(3102), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3102), + [sym_typeof_expression] = STATE(3102), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2472), + [sym_literal] = STATE(3102), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(1468), [sym_preproc_endregion] = STATE(1468), [sym_preproc_line] = STATE(1468), @@ -289951,47 +289837,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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1481), - [anon_sym_LPAREN] = ACTIONS(43), - [anon_sym_ref] = ACTIONS(661), - [anon_sym_LBRACE] = ACTIONS(1487), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1479), + [anon_sym_LPAREN] = ACTIONS(2135), + [anon_sym_ref] = ACTIONS(2137), + [anon_sym_LBRACE] = ACTIONS(1481), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1061), + [anon_sym_new] = ACTIONS(2139), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = 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_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(2143), + [anon_sym_TILDE] = ACTIONS(2143), + [anon_sym_PLUS_PLUS] = ACTIONS(2143), + [anon_sym_DASH_DASH] = ACTIONS(2143), [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_PLUS] = ACTIONS(2141), + [anon_sym_DASH] = ACTIONS(2141), + [anon_sym_STAR] = ACTIONS(2145), + [anon_sym_CARET] = ACTIONS(2143), + [anon_sym_AMP] = ACTIONS(2143), [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(1067), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1589), + [anon_sym_throw] = ACTIONS(2147), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1591), - [anon_sym_DOT_DOT] = ACTIONS(123), + [anon_sym_await] = ACTIONS(2149), + [anon_sym_DOT_DOT] = ACTIONS(2151), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -290016,7 +289902,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(1089), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -290033,84 +289919,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [1469] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(5634), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2204), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(5672), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(2465), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3080), - [sym_postfix_unary_expression] = STATE(3111), - [sym_prefix_unary_expression] = STATE(3111), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6154), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3080), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3111), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3080), - [sym_member_access_expression] = STATE(2484), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3111), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7530), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(3080), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3080), - [sym_typeof_expression] = STATE(3080), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2484), - [sym_literal] = STATE(3080), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2416), + [sym__name] = STATE(5867), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2379), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(5222), + [sym_non_lvalue_expression] = STATE(3040), + [sym_lvalue_expression] = STATE(3617), + [sym__expression_statement_expression] = STATE(3035), + [sym_assignment_expression] = STATE(3043), + [sym_binary_expression] = STATE(3035), + [sym_postfix_unary_expression] = STATE(3043), + [sym_prefix_unary_expression] = STATE(3043), + [sym__pointer_indirection_expression] = STATE(2415), + [sym_query_expression] = STATE(3035), + [sym_from_clause] = STATE(6161), + [sym_conditional_expression] = STATE(3035), + [sym_conditional_access_expression] = STATE(3035), + [sym_as_expression] = STATE(3035), + [sym_is_expression] = STATE(3035), + [sym_is_pattern_expression] = STATE(3035), + [sym_cast_expression] = STATE(3035), + [sym_checked_expression] = STATE(3035), + [sym_invocation_expression] = STATE(3043), + [sym_switch_expression] = STATE(3035), + [sym_await_expression] = STATE(3043), + [sym_throw_expression] = STATE(3035), + [sym_element_access_expression] = STATE(2415), + [sym_interpolated_string_expression] = STATE(3035), + [sym_member_access_expression] = STATE(2415), + [sym_object_creation_expression] = STATE(3043), + [sym_parenthesized_expression] = STATE(3043), + [sym__parenthesized_lvalue_expression] = STATE(2415), + [sym_lambda_expression] = STATE(3035), + [sym__lambda_expression_init] = STATE(7706), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3035), + [sym_anonymous_method_expression] = STATE(3035), + [sym_anonymous_object_creation_expression] = STATE(3035), + [sym_implicit_array_creation_expression] = STATE(3035), + [sym_implicit_object_creation_expression] = STATE(3035), + [sym_implicit_stackalloc_expression] = STATE(3035), + [sym_initializer_expression] = STATE(3035), + [sym_default_expression] = STATE(3035), + [sym_with_expression] = STATE(3035), + [sym_sizeof_expression] = STATE(3035), + [sym_typeof_expression] = STATE(3035), + [sym_makeref_expression] = STATE(3035), + [sym_ref_expression] = STATE(3035), + [sym_reftype_expression] = STATE(3035), + [sym_refvalue_expression] = STATE(3035), + [sym_stackalloc_expression] = STATE(3035), + [sym_range_expression] = STATE(3035), + [sym_tuple_expression] = STATE(2415), + [sym_literal] = STATE(3035), + [sym_character_literal] = STATE(3037), + [sym_string_literal] = STATE(3037), + [sym_raw_string_literal] = STATE(3037), + [sym_boolean_literal] = STATE(3037), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3035), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(1469), [sym_preproc_endregion] = STATE(1469), [sym_preproc_line] = STATE(1469), @@ -290120,47 +290006,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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3455), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1481), - [anon_sym_LPAREN] = ACTIONS(43), - [anon_sym_ref] = ACTIONS(661), - [anon_sym_LBRACE] = ACTIONS(1487), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1239), + [anon_sym_LPAREN] = ACTIONS(2159), + [anon_sym_ref] = ACTIONS(2161), + [anon_sym_LBRACE] = ACTIONS(1245), + [anon_sym_delegate] = ACTIONS(1247), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1061), + [anon_sym_new] = ACTIONS(2163), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = 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(1585), - [anon_sym_DASH] = ACTIONS(1585), - [anon_sym_STAR] = ACTIONS(1229), - [anon_sym_CARET] = ACTIONS(1587), - [anon_sym_AMP] = ACTIONS(1587), - [anon_sym_this] = ACTIONS(83), + [anon_sym_checked] = ACTIONS(1251), + [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(1257), + [anon_sym_false] = ACTIONS(1257), + [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(1261), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), + [anon_sym_base] = ACTIONS(1263), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1067), + [sym_predefined_type] = ACTIONS(1265), + [anon_sym_unchecked] = ACTIONS(1251), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1589), + [anon_sym_default] = ACTIONS(1267), + [anon_sym_throw] = ACTIONS(2171), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1591), - [anon_sym_DOT_DOT] = ACTIONS(123), + [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), @@ -290173,19 +290059,19 @@ static const uint16_t ts_parse_table[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(1089), + [anon_sym_stackalloc] = ACTIONS(1275), + [anon_sym_sizeof] = ACTIONS(1277), + [anon_sym_typeof] = ACTIONS(1279), + [anon_sym___makeref] = ACTIONS(1281), + [anon_sym___reftype] = ACTIONS(1283), + [anon_sym___refvalue] = ACTIONS(1285), + [sym_null_literal] = ACTIONS(1287), + [anon_sym_SQUOTE] = ACTIONS(1289), + [sym_integer_literal] = ACTIONS(1287), + [sym_real_literal] = ACTIONS(1291), + [anon_sym_DQUOTE] = ACTIONS(1293), + [sym_verbatim_string_literal] = ACTIONS(1291), + [aux_sym_preproc_if_token1] = ACTIONS(1295), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -290196,90 +290082,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(151), - [sym_interpolation_verbatim_start] = ACTIONS(153), - [sym_interpolation_raw_start] = ACTIONS(155), - [sym_raw_string_start] = ACTIONS(157), + [sym_interpolation_regular_start] = ACTIONS(1297), + [sym_interpolation_verbatim_start] = ACTIONS(1299), + [sym_interpolation_raw_start] = ACTIONS(1301), + [sym_raw_string_start] = ACTIONS(1303), }, [1470] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(3184), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2901), [sym__name] = STATE(5883), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2313), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2269), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(4946), - [sym_non_lvalue_expression] = STATE(4541), - [sym_lvalue_expression] = STATE(3527), - [sym__expression_statement_expression] = STATE(4529), - [sym_assignment_expression] = STATE(4543), - [sym_binary_expression] = STATE(4529), - [sym_postfix_unary_expression] = STATE(4543), - [sym_prefix_unary_expression] = STATE(4543), - [sym__pointer_indirection_expression] = STATE(3175), - [sym_query_expression] = STATE(4529), - [sym_from_clause] = STATE(6169), - [sym_conditional_expression] = STATE(4529), - [sym_conditional_access_expression] = STATE(4529), - [sym_as_expression] = STATE(4529), - [sym_is_expression] = STATE(4529), - [sym_is_pattern_expression] = STATE(4529), - [sym_cast_expression] = STATE(4529), - [sym_checked_expression] = STATE(4529), - [sym_invocation_expression] = STATE(4543), - [sym_switch_expression] = STATE(4529), - [sym_await_expression] = STATE(4543), - [sym_throw_expression] = STATE(4529), - [sym_element_access_expression] = STATE(3175), - [sym_interpolated_string_expression] = STATE(4529), - [sym_member_access_expression] = STATE(3175), - [sym_object_creation_expression] = STATE(4543), - [sym_parenthesized_expression] = STATE(4543), - [sym__parenthesized_lvalue_expression] = STATE(3175), - [sym_lambda_expression] = STATE(4529), - [sym__lambda_expression_init] = STATE(7337), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(4529), - [sym_anonymous_method_expression] = STATE(4529), - [sym_anonymous_object_creation_expression] = STATE(4529), - [sym_implicit_array_creation_expression] = STATE(4529), - [sym_implicit_object_creation_expression] = STATE(4529), - [sym_implicit_stackalloc_expression] = STATE(4529), - [sym_initializer_expression] = STATE(4529), - [sym_default_expression] = STATE(4529), - [sym_with_expression] = STATE(4529), - [sym_sizeof_expression] = STATE(4529), - [sym_typeof_expression] = STATE(4529), - [sym_makeref_expression] = STATE(4529), - [sym_ref_expression] = STATE(4529), - [sym_reftype_expression] = STATE(4529), - [sym_refvalue_expression] = STATE(4529), - [sym_stackalloc_expression] = STATE(4529), - [sym_range_expression] = STATE(4529), - [sym_tuple_expression] = STATE(3175), - [sym_literal] = STATE(4529), - [sym_character_literal] = STATE(4536), - [sym_string_literal] = STATE(4536), - [sym_raw_string_literal] = STATE(4536), - [sym_boolean_literal] = STATE(4536), - [sym_identifier] = STATE(2246), - [sym__reserved_identifier] = STATE(2240), - [sym_preproc_if_in_expression] = STATE(4529), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2359), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(3889), + [sym_non_lvalue_expression] = STATE(3685), + [sym_lvalue_expression] = STATE(3073), + [sym__expression_statement_expression] = STATE(3836), + [sym_assignment_expression] = STATE(3689), + [sym_binary_expression] = STATE(3836), + [sym_postfix_unary_expression] = STATE(3689), + [sym_prefix_unary_expression] = STATE(3689), + [sym__pointer_indirection_expression] = STATE(2906), + [sym_query_expression] = STATE(3836), + [sym_from_clause] = STATE(6157), + [sym_conditional_expression] = STATE(3836), + [sym_conditional_access_expression] = STATE(3836), + [sym_as_expression] = STATE(3836), + [sym_is_expression] = STATE(3836), + [sym_is_pattern_expression] = STATE(3836), + [sym_cast_expression] = STATE(3836), + [sym_checked_expression] = STATE(3836), + [sym_invocation_expression] = STATE(3689), + [sym_switch_expression] = STATE(3836), + [sym_await_expression] = STATE(3689), + [sym_throw_expression] = STATE(3836), + [sym_element_access_expression] = STATE(2906), + [sym_interpolated_string_expression] = STATE(3836), + [sym_member_access_expression] = STATE(2906), + [sym_object_creation_expression] = STATE(3689), + [sym_parenthesized_expression] = STATE(3689), + [sym__parenthesized_lvalue_expression] = STATE(2906), + [sym_lambda_expression] = STATE(3836), + [sym__lambda_expression_init] = STATE(7460), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3836), + [sym_anonymous_method_expression] = STATE(3836), + [sym_anonymous_object_creation_expression] = STATE(3836), + [sym_implicit_array_creation_expression] = STATE(3836), + [sym_implicit_object_creation_expression] = STATE(3836), + [sym_implicit_stackalloc_expression] = STATE(3836), + [sym_initializer_expression] = STATE(3836), + [sym_default_expression] = STATE(3836), + [sym_with_expression] = STATE(3836), + [sym_sizeof_expression] = STATE(3836), + [sym_typeof_expression] = STATE(3836), + [sym_makeref_expression] = STATE(3836), + [sym_ref_expression] = STATE(3836), + [sym_reftype_expression] = STATE(3836), + [sym_refvalue_expression] = STATE(3836), + [sym_stackalloc_expression] = STATE(3836), + [sym_range_expression] = STATE(3836), + [sym_tuple_expression] = STATE(2906), + [sym_literal] = STATE(3836), + [sym_character_literal] = STATE(3843), + [sym_string_literal] = STATE(3843), + [sym_raw_string_literal] = STATE(3843), + [sym_boolean_literal] = STATE(3843), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3836), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(1470), [sym_preproc_endregion] = STATE(1470), [sym_preproc_line] = STATE(1470), @@ -290289,166 +290175,166 @@ 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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3363), - [sym__identifier_token] = ACTIONS(1387), - [anon_sym_alias] = ACTIONS(1389), - [anon_sym_global] = ACTIONS(1389), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1391), - [anon_sym_LPAREN] = ACTIONS(1745), - [anon_sym_ref] = ACTIONS(1747), - [anon_sym_LBRACE] = ACTIONS(1397), - [anon_sym_delegate] = ACTIONS(1399), - [anon_sym_async] = ACTIONS(1047), - [anon_sym_file] = ACTIONS(1389), - [anon_sym_new] = ACTIONS(1467), - [anon_sym_where] = ACTIONS(1389), - [anon_sym_notnull] = ACTIONS(1389), - [anon_sym_unmanaged] = ACTIONS(1389), - [anon_sym_checked] = ACTIONS(1403), - [anon_sym_BANG] = ACTIONS(1751), - [anon_sym_TILDE] = ACTIONS(1751), - [anon_sym_PLUS_PLUS] = ACTIONS(1751), - [anon_sym_DASH_DASH] = ACTIONS(1751), - [anon_sym_true] = ACTIONS(1409), - [anon_sym_false] = ACTIONS(1409), - [anon_sym_PLUS] = ACTIONS(1749), - [anon_sym_DASH] = ACTIONS(1749), - [anon_sym_STAR] = ACTIONS(1473), - [anon_sym_CARET] = ACTIONS(1751), - [anon_sym_AMP] = ACTIONS(1751), - [anon_sym_this] = ACTIONS(1413), - [anon_sym_scoped] = ACTIONS(1415), - [anon_sym_base] = ACTIONS(1417), - [anon_sym_var] = ACTIONS(1419), - [sym_predefined_type] = ACTIONS(1421), - [anon_sym_unchecked] = ACTIONS(1403), - [anon_sym_yield] = ACTIONS(1389), - [anon_sym_default] = ACTIONS(1423), - [anon_sym_throw] = ACTIONS(1753), - [anon_sym_when] = ACTIONS(1389), - [anon_sym_await] = ACTIONS(1755), - [anon_sym_DOT_DOT] = ACTIONS(1757), - [anon_sym_from] = ACTIONS(1431), - [anon_sym_into] = ACTIONS(1389), - [anon_sym_join] = ACTIONS(1389), - [anon_sym_on] = ACTIONS(1389), - [anon_sym_equals] = ACTIONS(1389), - [anon_sym_let] = ACTIONS(1389), - [anon_sym_orderby] = ACTIONS(1389), - [anon_sym_ascending] = ACTIONS(1389), - [anon_sym_descending] = ACTIONS(1389), - [anon_sym_group] = ACTIONS(1389), - [anon_sym_by] = ACTIONS(1389), - [anon_sym_select] = ACTIONS(1389), - [anon_sym_stackalloc] = ACTIONS(1433), - [anon_sym_sizeof] = ACTIONS(1435), - [anon_sym_typeof] = ACTIONS(1437), - [anon_sym___makeref] = ACTIONS(1439), - [anon_sym___reftype] = ACTIONS(1441), - [anon_sym___refvalue] = ACTIONS(1443), - [sym_null_literal] = ACTIONS(1445), - [anon_sym_SQUOTE] = ACTIONS(1447), - [sym_integer_literal] = ACTIONS(1445), - [sym_real_literal] = ACTIONS(1449), - [anon_sym_DQUOTE] = ACTIONS(1451), - [sym_verbatim_string_literal] = ACTIONS(1449), - [aux_sym_preproc_if_token1] = ACTIONS(1453), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1455), - [sym_interpolation_verbatim_start] = ACTIONS(1457), - [sym_interpolation_raw_start] = ACTIONS(1459), - [sym_raw_string_start] = ACTIONS(1461), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3477), + [sym__identifier_token] = ACTIONS(25), + [anon_sym_alias] = ACTIONS(29), + [anon_sym_global] = ACTIONS(29), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1655), + [anon_sym_LPAREN] = ACTIONS(2061), + [anon_sym_ref] = ACTIONS(2063), + [anon_sym_LBRACE] = ACTIONS(1661), + [anon_sym_delegate] = ACTIONS(1663), + [anon_sym_async] = ACTIONS(1045), + [anon_sym_file] = ACTIONS(29), + [anon_sym_new] = ACTIONS(1665), + [anon_sym_where] = ACTIONS(29), + [anon_sym_notnull] = ACTIONS(29), + [anon_sym_unmanaged] = ACTIONS(29), + [anon_sym_checked] = ACTIONS(1667), + [anon_sym_BANG] = ACTIONS(2067), + [anon_sym_TILDE] = ACTIONS(2067), + [anon_sym_PLUS_PLUS] = ACTIONS(2067), + [anon_sym_DASH_DASH] = ACTIONS(2067), + [anon_sym_true] = ACTIONS(1673), + [anon_sym_false] = ACTIONS(1673), + [anon_sym_PLUS] = ACTIONS(2065), + [anon_sym_DASH] = ACTIONS(2065), + [anon_sym_STAR] = ACTIONS(1675), + [anon_sym_CARET] = ACTIONS(2067), + [anon_sym_AMP] = ACTIONS(2067), + [anon_sym_this] = ACTIONS(1677), + [anon_sym_scoped] = ACTIONS(85), + [anon_sym_base] = ACTIONS(1679), + [anon_sym_var] = ACTIONS(89), + [sym_predefined_type] = ACTIONS(1681), + [anon_sym_unchecked] = ACTIONS(1667), + [anon_sym_yield] = ACTIONS(29), + [anon_sym_default] = ACTIONS(1683), + [anon_sym_throw] = ACTIONS(2069), + [anon_sym_when] = ACTIONS(29), + [anon_sym_await] = ACTIONS(2071), + [anon_sym_DOT_DOT] = ACTIONS(2073), + [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(1691), + [anon_sym_sizeof] = ACTIONS(1693), + [anon_sym_typeof] = ACTIONS(1695), + [anon_sym___makeref] = ACTIONS(1697), + [anon_sym___reftype] = ACTIONS(1699), + [anon_sym___refvalue] = ACTIONS(1701), + [sym_null_literal] = ACTIONS(1703), + [anon_sym_SQUOTE] = ACTIONS(1705), + [sym_integer_literal] = ACTIONS(1703), + [sym_real_literal] = ACTIONS(1707), + [anon_sym_DQUOTE] = ACTIONS(1709), + [sym_verbatim_string_literal] = ACTIONS(1707), + [aux_sym_preproc_if_token1] = ACTIONS(1711), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + [sym_interpolation_regular_start] = ACTIONS(1713), + [sym_interpolation_verbatim_start] = ACTIONS(1715), + [sym_interpolation_raw_start] = ACTIONS(1717), + [sym_raw_string_start] = ACTIONS(1719), }, [1471] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(3184), - [sym__name] = STATE(5883), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2313), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2269), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(4947), - [sym_non_lvalue_expression] = STATE(4541), - [sym_lvalue_expression] = STATE(3527), - [sym__expression_statement_expression] = STATE(4529), - [sym_assignment_expression] = STATE(4543), - [sym_binary_expression] = STATE(4529), - [sym_postfix_unary_expression] = STATE(4543), - [sym_prefix_unary_expression] = STATE(4543), - [sym__pointer_indirection_expression] = STATE(3175), - [sym_query_expression] = STATE(4529), - [sym_from_clause] = STATE(6169), - [sym_conditional_expression] = STATE(4529), - [sym_conditional_access_expression] = STATE(4529), - [sym_as_expression] = STATE(4529), - [sym_is_expression] = STATE(4529), - [sym_is_pattern_expression] = STATE(4529), - [sym_cast_expression] = STATE(4529), - [sym_checked_expression] = STATE(4529), - [sym_invocation_expression] = STATE(4543), - [sym_switch_expression] = STATE(4529), - [sym_await_expression] = STATE(4543), - [sym_throw_expression] = STATE(4529), - [sym_element_access_expression] = STATE(3175), - [sym_interpolated_string_expression] = STATE(4529), - [sym_member_access_expression] = STATE(3175), - [sym_object_creation_expression] = STATE(4543), - [sym_parenthesized_expression] = STATE(4543), - [sym__parenthesized_lvalue_expression] = STATE(3175), - [sym_lambda_expression] = STATE(4529), - [sym__lambda_expression_init] = STATE(7337), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(4529), - [sym_anonymous_method_expression] = STATE(4529), - [sym_anonymous_object_creation_expression] = STATE(4529), - [sym_implicit_array_creation_expression] = STATE(4529), - [sym_implicit_object_creation_expression] = STATE(4529), - [sym_implicit_stackalloc_expression] = STATE(4529), - [sym_initializer_expression] = STATE(4529), - [sym_default_expression] = STATE(4529), - [sym_with_expression] = STATE(4529), - [sym_sizeof_expression] = STATE(4529), - [sym_typeof_expression] = STATE(4529), - [sym_makeref_expression] = STATE(4529), - [sym_ref_expression] = STATE(4529), - [sym_reftype_expression] = STATE(4529), - [sym_refvalue_expression] = STATE(4529), - [sym_stackalloc_expression] = STATE(4529), - [sym_range_expression] = STATE(4529), - [sym_tuple_expression] = STATE(3175), - [sym_literal] = STATE(4529), - [sym_character_literal] = STATE(4536), - [sym_string_literal] = STATE(4536), - [sym_raw_string_literal] = STATE(4536), - [sym_boolean_literal] = STATE(4536), - [sym_identifier] = STATE(2246), - [sym__reserved_identifier] = STATE(2240), - [sym_preproc_if_in_expression] = STATE(4529), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(5896), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2362), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(3523), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3661), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3102), + [sym_postfix_unary_expression] = STATE(3079), + [sym_prefix_unary_expression] = STATE(3079), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6129), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3102), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3079), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3102), + [sym_member_access_expression] = STATE(2472), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3079), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7367), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(3102), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3102), + [sym_typeof_expression] = STATE(3102), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2472), + [sym_literal] = STATE(3102), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(1471), [sym_preproc_endregion] = STATE(1471), [sym_preproc_line] = STATE(1471), @@ -290458,216 +290344,47 @@ 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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3363), - [sym__identifier_token] = ACTIONS(1387), - [anon_sym_alias] = ACTIONS(1389), - [anon_sym_global] = ACTIONS(1389), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1391), - [anon_sym_LPAREN] = ACTIONS(1745), - [anon_sym_ref] = ACTIONS(1747), - [anon_sym_LBRACE] = ACTIONS(1397), - [anon_sym_delegate] = ACTIONS(1399), - [anon_sym_async] = ACTIONS(1047), - [anon_sym_file] = ACTIONS(1389), - [anon_sym_new] = ACTIONS(1467), - [anon_sym_where] = ACTIONS(1389), - [anon_sym_notnull] = ACTIONS(1389), - [anon_sym_unmanaged] = ACTIONS(1389), - [anon_sym_checked] = ACTIONS(1403), - [anon_sym_BANG] = ACTIONS(1751), - [anon_sym_TILDE] = ACTIONS(1751), - [anon_sym_PLUS_PLUS] = ACTIONS(1751), - [anon_sym_DASH_DASH] = ACTIONS(1751), - [anon_sym_true] = ACTIONS(1409), - [anon_sym_false] = ACTIONS(1409), - [anon_sym_PLUS] = ACTIONS(1749), - [anon_sym_DASH] = ACTIONS(1749), - [anon_sym_STAR] = ACTIONS(1473), - [anon_sym_CARET] = ACTIONS(1751), - [anon_sym_AMP] = ACTIONS(1751), - [anon_sym_this] = ACTIONS(1413), - [anon_sym_scoped] = ACTIONS(1415), - [anon_sym_base] = ACTIONS(1417), - [anon_sym_var] = ACTIONS(1419), - [sym_predefined_type] = ACTIONS(1421), - [anon_sym_unchecked] = ACTIONS(1403), - [anon_sym_yield] = ACTIONS(1389), - [anon_sym_default] = ACTIONS(1423), - [anon_sym_throw] = ACTIONS(1753), - [anon_sym_when] = ACTIONS(1389), - [anon_sym_await] = ACTIONS(1755), - [anon_sym_DOT_DOT] = ACTIONS(1757), - [anon_sym_from] = ACTIONS(1431), - [anon_sym_into] = ACTIONS(1389), - [anon_sym_join] = ACTIONS(1389), - [anon_sym_on] = ACTIONS(1389), - [anon_sym_equals] = ACTIONS(1389), - [anon_sym_let] = ACTIONS(1389), - [anon_sym_orderby] = ACTIONS(1389), - [anon_sym_ascending] = ACTIONS(1389), - [anon_sym_descending] = ACTIONS(1389), - [anon_sym_group] = ACTIONS(1389), - [anon_sym_by] = ACTIONS(1389), - [anon_sym_select] = ACTIONS(1389), - [anon_sym_stackalloc] = ACTIONS(1433), - [anon_sym_sizeof] = ACTIONS(1435), - [anon_sym_typeof] = ACTIONS(1437), - [anon_sym___makeref] = ACTIONS(1439), - [anon_sym___reftype] = ACTIONS(1441), - [anon_sym___refvalue] = ACTIONS(1443), - [sym_null_literal] = ACTIONS(1445), - [anon_sym_SQUOTE] = ACTIONS(1447), - [sym_integer_literal] = ACTIONS(1445), - [sym_real_literal] = ACTIONS(1449), - [anon_sym_DQUOTE] = ACTIONS(1451), - [sym_verbatim_string_literal] = ACTIONS(1449), - [aux_sym_preproc_if_token1] = ACTIONS(1453), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1455), - [sym_interpolation_verbatim_start] = ACTIONS(1457), - [sym_interpolation_raw_start] = ACTIONS(1459), - [sym_raw_string_start] = ACTIONS(1461), - }, - [1472] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(5160), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2204), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(4562), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3461), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3080), - [sym_postfix_unary_expression] = STATE(3111), - [sym_prefix_unary_expression] = STATE(3111), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6154), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3080), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3111), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3080), - [sym_member_access_expression] = STATE(2484), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3111), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7547), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(3080), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3080), - [sym_typeof_expression] = STATE(3080), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2484), - [sym_literal] = STATE(3080), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), - [sym_preproc_region] = STATE(1472), - [sym_preproc_endregion] = STATE(1472), - [sym_preproc_line] = STATE(1472), - [sym_preproc_pragma] = STATE(1472), - [sym_preproc_nullable] = STATE(1472), - [sym_preproc_error] = STATE(1472), - [sym_preproc_warning] = STATE(1472), - [sym_preproc_define] = STATE(1472), - [sym_preproc_undef] = STATE(1472), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1481), - [anon_sym_LPAREN] = ACTIONS(1497), - [anon_sym_ref] = ACTIONS(1499), - [anon_sym_LBRACE] = ACTIONS(1487), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1479), + [anon_sym_LPAREN] = ACTIONS(2135), + [anon_sym_ref] = ACTIONS(2137), + [anon_sym_LBRACE] = ACTIONS(1481), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1501), + [anon_sym_new] = ACTIONS(2139), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = 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_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(2143), + [anon_sym_TILDE] = ACTIONS(2143), + [anon_sym_PLUS_PLUS] = ACTIONS(2143), + [anon_sym_DASH_DASH] = ACTIONS(2143), [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(2141), + [anon_sym_DASH] = ACTIONS(2141), + [anon_sym_STAR] = ACTIONS(2145), + [anon_sym_CARET] = ACTIONS(2143), + [anon_sym_AMP] = ACTIONS(2143), [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(1067), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1503), + [anon_sym_throw] = ACTIONS(2147), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1505), - [anon_sym_DOT_DOT] = ACTIONS(1507), + [anon_sym_await] = ACTIONS(2149), + [anon_sym_DOT_DOT] = ACTIONS(2151), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -290692,7 +290409,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(1089), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -290708,85 +290425,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), }, - [1473] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(3184), + [1472] = { + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2901), [sym__name] = STATE(5883), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2313), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2269), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(4948), - [sym_non_lvalue_expression] = STATE(4541), - [sym_lvalue_expression] = STATE(3527), - [sym__expression_statement_expression] = STATE(4529), - [sym_assignment_expression] = STATE(4543), - [sym_binary_expression] = STATE(4529), - [sym_postfix_unary_expression] = STATE(4543), - [sym_prefix_unary_expression] = STATE(4543), - [sym__pointer_indirection_expression] = STATE(3175), - [sym_query_expression] = STATE(4529), - [sym_from_clause] = STATE(6169), - [sym_conditional_expression] = STATE(4529), - [sym_conditional_access_expression] = STATE(4529), - [sym_as_expression] = STATE(4529), - [sym_is_expression] = STATE(4529), - [sym_is_pattern_expression] = STATE(4529), - [sym_cast_expression] = STATE(4529), - [sym_checked_expression] = STATE(4529), - [sym_invocation_expression] = STATE(4543), - [sym_switch_expression] = STATE(4529), - [sym_await_expression] = STATE(4543), - [sym_throw_expression] = STATE(4529), - [sym_element_access_expression] = STATE(3175), - [sym_interpolated_string_expression] = STATE(4529), - [sym_member_access_expression] = STATE(3175), - [sym_object_creation_expression] = STATE(4543), - [sym_parenthesized_expression] = STATE(4543), - [sym__parenthesized_lvalue_expression] = STATE(3175), - [sym_lambda_expression] = STATE(4529), - [sym__lambda_expression_init] = STATE(7337), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(4529), - [sym_anonymous_method_expression] = STATE(4529), - [sym_anonymous_object_creation_expression] = STATE(4529), - [sym_implicit_array_creation_expression] = STATE(4529), - [sym_implicit_object_creation_expression] = STATE(4529), - [sym_implicit_stackalloc_expression] = STATE(4529), - [sym_initializer_expression] = STATE(4529), - [sym_default_expression] = STATE(4529), - [sym_with_expression] = STATE(4529), - [sym_sizeof_expression] = STATE(4529), - [sym_typeof_expression] = STATE(4529), - [sym_makeref_expression] = STATE(4529), - [sym_ref_expression] = STATE(4529), - [sym_reftype_expression] = STATE(4529), - [sym_refvalue_expression] = STATE(4529), - [sym_stackalloc_expression] = STATE(4529), - [sym_range_expression] = STATE(4529), - [sym_tuple_expression] = STATE(3175), - [sym_literal] = STATE(4529), - [sym_character_literal] = STATE(4536), - [sym_string_literal] = STATE(4536), - [sym_raw_string_literal] = STATE(4536), - [sym_boolean_literal] = STATE(4536), - [sym_identifier] = STATE(2246), - [sym__reserved_identifier] = STATE(2240), - [sym_preproc_if_in_expression] = STATE(4529), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2359), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(3912), + [sym_non_lvalue_expression] = STATE(3685), + [sym_lvalue_expression] = STATE(3073), + [sym__expression_statement_expression] = STATE(3836), + [sym_assignment_expression] = STATE(3689), + [sym_binary_expression] = STATE(3836), + [sym_postfix_unary_expression] = STATE(3689), + [sym_prefix_unary_expression] = STATE(3689), + [sym__pointer_indirection_expression] = STATE(2906), + [sym_query_expression] = STATE(3836), + [sym_from_clause] = STATE(6157), + [sym_conditional_expression] = STATE(3836), + [sym_conditional_access_expression] = STATE(3836), + [sym_as_expression] = STATE(3836), + [sym_is_expression] = STATE(3836), + [sym_is_pattern_expression] = STATE(3836), + [sym_cast_expression] = STATE(3836), + [sym_checked_expression] = STATE(3836), + [sym_invocation_expression] = STATE(3689), + [sym_switch_expression] = STATE(3836), + [sym_await_expression] = STATE(3689), + [sym_throw_expression] = STATE(3836), + [sym_element_access_expression] = STATE(2906), + [sym_interpolated_string_expression] = STATE(3836), + [sym_member_access_expression] = STATE(2906), + [sym_object_creation_expression] = STATE(3689), + [sym_parenthesized_expression] = STATE(3689), + [sym__parenthesized_lvalue_expression] = STATE(2906), + [sym_lambda_expression] = STATE(3836), + [sym__lambda_expression_init] = STATE(7460), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3836), + [sym_anonymous_method_expression] = STATE(3836), + [sym_anonymous_object_creation_expression] = STATE(3836), + [sym_implicit_array_creation_expression] = STATE(3836), + [sym_implicit_object_creation_expression] = STATE(3836), + [sym_implicit_stackalloc_expression] = STATE(3836), + [sym_initializer_expression] = STATE(3836), + [sym_default_expression] = STATE(3836), + [sym_with_expression] = STATE(3836), + [sym_sizeof_expression] = STATE(3836), + [sym_typeof_expression] = STATE(3836), + [sym_makeref_expression] = STATE(3836), + [sym_ref_expression] = STATE(3836), + [sym_reftype_expression] = STATE(3836), + [sym_refvalue_expression] = STATE(3836), + [sym_stackalloc_expression] = STATE(3836), + [sym_range_expression] = STATE(3836), + [sym_tuple_expression] = STATE(2906), + [sym_literal] = STATE(3836), + [sym_character_literal] = STATE(3843), + [sym_string_literal] = STATE(3843), + [sym_raw_string_literal] = STATE(3843), + [sym_boolean_literal] = STATE(3843), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3836), + [sym_preproc_if_in_attribute_list] = STATE(5583), + [sym_preproc_region] = STATE(1472), + [sym_preproc_endregion] = STATE(1472), + [sym_preproc_line] = STATE(1472), + [sym_preproc_pragma] = STATE(1472), + [sym_preproc_nullable] = STATE(1472), + [sym_preproc_error] = STATE(1472), + [sym_preproc_warning] = STATE(1472), + [sym_preproc_define] = STATE(1472), + [sym_preproc_undef] = STATE(1472), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3477), + [sym__identifier_token] = ACTIONS(25), + [anon_sym_alias] = ACTIONS(29), + [anon_sym_global] = ACTIONS(29), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1655), + [anon_sym_LPAREN] = ACTIONS(2061), + [anon_sym_ref] = ACTIONS(2063), + [anon_sym_LBRACE] = ACTIONS(1661), + [anon_sym_delegate] = ACTIONS(1663), + [anon_sym_async] = ACTIONS(1045), + [anon_sym_file] = ACTIONS(29), + [anon_sym_new] = ACTIONS(1665), + [anon_sym_where] = ACTIONS(29), + [anon_sym_notnull] = ACTIONS(29), + [anon_sym_unmanaged] = ACTIONS(29), + [anon_sym_checked] = ACTIONS(1667), + [anon_sym_BANG] = ACTIONS(2067), + [anon_sym_TILDE] = ACTIONS(2067), + [anon_sym_PLUS_PLUS] = ACTIONS(2067), + [anon_sym_DASH_DASH] = ACTIONS(2067), + [anon_sym_true] = ACTIONS(1673), + [anon_sym_false] = ACTIONS(1673), + [anon_sym_PLUS] = ACTIONS(2065), + [anon_sym_DASH] = ACTIONS(2065), + [anon_sym_STAR] = ACTIONS(1675), + [anon_sym_CARET] = ACTIONS(2067), + [anon_sym_AMP] = ACTIONS(2067), + [anon_sym_this] = ACTIONS(1677), + [anon_sym_scoped] = ACTIONS(85), + [anon_sym_base] = ACTIONS(1679), + [anon_sym_var] = ACTIONS(89), + [sym_predefined_type] = ACTIONS(1681), + [anon_sym_unchecked] = ACTIONS(1667), + [anon_sym_yield] = ACTIONS(29), + [anon_sym_default] = ACTIONS(1683), + [anon_sym_throw] = ACTIONS(2069), + [anon_sym_when] = ACTIONS(29), + [anon_sym_await] = ACTIONS(2071), + [anon_sym_DOT_DOT] = ACTIONS(2073), + [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(1691), + [anon_sym_sizeof] = ACTIONS(1693), + [anon_sym_typeof] = ACTIONS(1695), + [anon_sym___makeref] = ACTIONS(1697), + [anon_sym___reftype] = ACTIONS(1699), + [anon_sym___refvalue] = ACTIONS(1701), + [sym_null_literal] = ACTIONS(1703), + [anon_sym_SQUOTE] = ACTIONS(1705), + [sym_integer_literal] = ACTIONS(1703), + [sym_real_literal] = ACTIONS(1707), + [anon_sym_DQUOTE] = ACTIONS(1709), + [sym_verbatim_string_literal] = ACTIONS(1707), + [aux_sym_preproc_if_token1] = ACTIONS(1711), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + [sym_interpolation_regular_start] = ACTIONS(1713), + [sym_interpolation_verbatim_start] = ACTIONS(1715), + [sym_interpolation_raw_start] = ACTIONS(1717), + [sym_raw_string_start] = ACTIONS(1719), + }, + [1473] = { + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2816), + [sym__name] = STATE(5896), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2362), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(4994), + [sym_non_lvalue_expression] = STATE(3495), + [sym_lvalue_expression] = STATE(3513), + [sym__expression_statement_expression] = STATE(3462), + [sym_assignment_expression] = STATE(3497), + [sym_binary_expression] = STATE(3462), + [sym_postfix_unary_expression] = STATE(3497), + [sym_prefix_unary_expression] = STATE(3497), + [sym__pointer_indirection_expression] = STATE(2815), + [sym_query_expression] = STATE(3462), + [sym_from_clause] = STATE(6132), + [sym_conditional_expression] = STATE(3462), + [sym_conditional_access_expression] = STATE(3462), + [sym_as_expression] = STATE(3462), + [sym_is_expression] = STATE(3462), + [sym_is_pattern_expression] = STATE(3462), + [sym_cast_expression] = STATE(3462), + [sym_checked_expression] = STATE(3462), + [sym_invocation_expression] = STATE(3497), + [sym_switch_expression] = STATE(3462), + [sym_await_expression] = STATE(3497), + [sym_throw_expression] = STATE(3462), + [sym_element_access_expression] = STATE(2815), + [sym_interpolated_string_expression] = STATE(3462), + [sym_member_access_expression] = STATE(2815), + [sym_object_creation_expression] = STATE(3497), + [sym_parenthesized_expression] = STATE(3497), + [sym__parenthesized_lvalue_expression] = STATE(2815), + [sym_lambda_expression] = STATE(3462), + [sym__lambda_expression_init] = STATE(7527), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3462), + [sym_anonymous_method_expression] = STATE(3462), + [sym_anonymous_object_creation_expression] = STATE(3462), + [sym_implicit_array_creation_expression] = STATE(3462), + [sym_implicit_object_creation_expression] = STATE(3462), + [sym_implicit_stackalloc_expression] = STATE(3462), + [sym_initializer_expression] = STATE(3462), + [sym_default_expression] = STATE(3462), + [sym_with_expression] = STATE(3462), + [sym_sizeof_expression] = STATE(3462), + [sym_typeof_expression] = STATE(3462), + [sym_makeref_expression] = STATE(3462), + [sym_ref_expression] = STATE(3462), + [sym_reftype_expression] = STATE(3462), + [sym_refvalue_expression] = STATE(3462), + [sym_stackalloc_expression] = STATE(3462), + [sym_range_expression] = STATE(3462), + [sym_tuple_expression] = STATE(2815), + [sym_literal] = STATE(3462), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3462), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(1473), [sym_preproc_endregion] = STATE(1473), [sym_preproc_line] = STATE(1473), @@ -290796,166 +290682,166 @@ 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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3363), - [sym__identifier_token] = ACTIONS(1387), - [anon_sym_alias] = ACTIONS(1389), - [anon_sym_global] = ACTIONS(1389), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1391), - [anon_sym_LPAREN] = ACTIONS(1745), - [anon_sym_ref] = ACTIONS(1747), - [anon_sym_LBRACE] = ACTIONS(1397), - [anon_sym_delegate] = ACTIONS(1399), - [anon_sym_async] = ACTIONS(1047), - [anon_sym_file] = ACTIONS(1389), - [anon_sym_new] = ACTIONS(1467), - [anon_sym_where] = ACTIONS(1389), - [anon_sym_notnull] = ACTIONS(1389), - [anon_sym_unmanaged] = ACTIONS(1389), - [anon_sym_checked] = ACTIONS(1403), - [anon_sym_BANG] = ACTIONS(1751), - [anon_sym_TILDE] = ACTIONS(1751), - [anon_sym_PLUS_PLUS] = ACTIONS(1751), - [anon_sym_DASH_DASH] = ACTIONS(1751), - [anon_sym_true] = ACTIONS(1409), - [anon_sym_false] = ACTIONS(1409), - [anon_sym_PLUS] = ACTIONS(1749), - [anon_sym_DASH] = ACTIONS(1749), - [anon_sym_STAR] = ACTIONS(1473), - [anon_sym_CARET] = ACTIONS(1751), - [anon_sym_AMP] = ACTIONS(1751), - [anon_sym_this] = ACTIONS(1413), - [anon_sym_scoped] = ACTIONS(1415), - [anon_sym_base] = ACTIONS(1417), - [anon_sym_var] = ACTIONS(1419), - [sym_predefined_type] = ACTIONS(1421), - [anon_sym_unchecked] = ACTIONS(1403), - [anon_sym_yield] = ACTIONS(1389), - [anon_sym_default] = ACTIONS(1423), - [anon_sym_throw] = ACTIONS(1753), - [anon_sym_when] = ACTIONS(1389), - [anon_sym_await] = ACTIONS(1755), - [anon_sym_DOT_DOT] = ACTIONS(1757), - [anon_sym_from] = ACTIONS(1431), - [anon_sym_into] = ACTIONS(1389), - [anon_sym_join] = ACTIONS(1389), - [anon_sym_on] = ACTIONS(1389), - [anon_sym_equals] = ACTIONS(1389), - [anon_sym_let] = ACTIONS(1389), - [anon_sym_orderby] = ACTIONS(1389), - [anon_sym_ascending] = ACTIONS(1389), - [anon_sym_descending] = ACTIONS(1389), - [anon_sym_group] = ACTIONS(1389), - [anon_sym_by] = ACTIONS(1389), - [anon_sym_select] = ACTIONS(1389), - [anon_sym_stackalloc] = ACTIONS(1433), - [anon_sym_sizeof] = ACTIONS(1435), - [anon_sym_typeof] = ACTIONS(1437), - [anon_sym___makeref] = ACTIONS(1439), - [anon_sym___reftype] = ACTIONS(1441), - [anon_sym___refvalue] = ACTIONS(1443), - [sym_null_literal] = ACTIONS(1445), - [anon_sym_SQUOTE] = ACTIONS(1447), - [sym_integer_literal] = ACTIONS(1445), - [sym_real_literal] = ACTIONS(1449), - [anon_sym_DQUOTE] = ACTIONS(1451), - [sym_verbatim_string_literal] = ACTIONS(1449), - [aux_sym_preproc_if_token1] = ACTIONS(1453), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1455), - [sym_interpolation_verbatim_start] = ACTIONS(1457), - [sym_interpolation_raw_start] = ACTIONS(1459), - [sym_raw_string_start] = ACTIONS(1461), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [sym__identifier_token] = ACTIONS(25), + [anon_sym_alias] = ACTIONS(29), + [anon_sym_global] = ACTIONS(29), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1305), + [anon_sym_LPAREN] = ACTIONS(1875), + [anon_sym_ref] = ACTIONS(1877), + [anon_sym_LBRACE] = ACTIONS(1311), + [anon_sym_delegate] = ACTIONS(1313), + [anon_sym_async] = ACTIONS(1045), + [anon_sym_file] = ACTIONS(29), + [anon_sym_new] = ACTIONS(1879), + [anon_sym_where] = ACTIONS(29), + [anon_sym_notnull] = ACTIONS(29), + [anon_sym_unmanaged] = ACTIONS(29), + [anon_sym_checked] = ACTIONS(1317), + [anon_sym_BANG] = ACTIONS(1883), + [anon_sym_TILDE] = ACTIONS(1883), + [anon_sym_PLUS_PLUS] = ACTIONS(1883), + [anon_sym_DASH_DASH] = ACTIONS(1883), + [anon_sym_true] = ACTIONS(77), + [anon_sym_false] = ACTIONS(77), + [anon_sym_PLUS] = ACTIONS(1881), + [anon_sym_DASH] = ACTIONS(1881), + [anon_sym_STAR] = ACTIONS(1885), + [anon_sym_CARET] = ACTIONS(1883), + [anon_sym_AMP] = ACTIONS(1883), + [anon_sym_this] = ACTIONS(1321), + [anon_sym_scoped] = ACTIONS(85), + [anon_sym_base] = ACTIONS(1323), + [anon_sym_var] = ACTIONS(89), + [sym_predefined_type] = ACTIONS(91), + [anon_sym_unchecked] = ACTIONS(1317), + [anon_sym_yield] = ACTIONS(29), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(1887), + [anon_sym_when] = ACTIONS(29), + [anon_sym_await] = ACTIONS(1889), + [anon_sym_DOT_DOT] = ACTIONS(1891), + [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(1331), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(1333), + [anon_sym___reftype] = ACTIONS(1335), + [anon_sym___refvalue] = ACTIONS(1337), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_literal] = ACTIONS(143), + [anon_sym_DQUOTE] = ACTIONS(145), + [sym_verbatim_string_literal] = ACTIONS(143), + [aux_sym_preproc_if_token1] = ACTIONS(1339), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(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), }, [1474] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(5910), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2247), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(5361), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3379), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3080), - [sym_postfix_unary_expression] = STATE(3111), - [sym_prefix_unary_expression] = STATE(3111), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6154), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3080), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3111), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3080), - [sym_member_access_expression] = STATE(2484), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3111), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7575), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(3080), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3080), - [sym_typeof_expression] = STATE(3080), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2484), - [sym_literal] = STATE(3080), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(5896), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2362), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(5478), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3661), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3102), + [sym_postfix_unary_expression] = STATE(3079), + [sym_prefix_unary_expression] = STATE(3079), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6129), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3102), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3079), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3102), + [sym_member_access_expression] = STATE(2472), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3079), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7367), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(3102), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3102), + [sym_typeof_expression] = STATE(3102), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2472), + [sym_literal] = STATE(3102), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(1474), [sym_preproc_endregion] = STATE(1474), [sym_preproc_line] = STATE(1474), @@ -290965,47 +290851,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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1481), - [anon_sym_LPAREN] = ACTIONS(895), - [anon_sym_ref] = ACTIONS(897), - [anon_sym_LBRACE] = ACTIONS(1487), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1479), + [anon_sym_LPAREN] = ACTIONS(2135), + [anon_sym_ref] = ACTIONS(2137), + [anon_sym_LBRACE] = ACTIONS(1481), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1061), + [anon_sym_new] = ACTIONS(2139), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1067), - [anon_sym_BANG] = ACTIONS(1495), - [anon_sym_TILDE] = ACTIONS(1495), - [anon_sym_PLUS_PLUS] = ACTIONS(1495), - [anon_sym_DASH_DASH] = ACTIONS(1495), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(2143), + [anon_sym_TILDE] = ACTIONS(2143), + [anon_sym_PLUS_PLUS] = ACTIONS(2143), + [anon_sym_DASH_DASH] = ACTIONS(2143), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1493), - [anon_sym_DASH] = ACTIONS(1493), - [anon_sym_STAR] = ACTIONS(905), - [anon_sym_CARET] = ACTIONS(1495), - [anon_sym_AMP] = ACTIONS(1495), + [anon_sym_PLUS] = ACTIONS(2141), + [anon_sym_DASH] = ACTIONS(2141), + [anon_sym_STAR] = ACTIONS(2145), + [anon_sym_CARET] = ACTIONS(2143), + [anon_sym_AMP] = ACTIONS(2143), [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(1067), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1079), + [anon_sym_throw] = ACTIONS(2147), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1081), - [anon_sym_DOT_DOT] = ACTIONS(911), + [anon_sym_await] = ACTIONS(2149), + [anon_sym_DOT_DOT] = ACTIONS(2151), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -291030,7 +290916,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(1089), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -291047,84 +290933,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [1475] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(5910), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2247), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(5362), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3379), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3080), - [sym_postfix_unary_expression] = STATE(3111), - [sym_prefix_unary_expression] = STATE(3111), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6154), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3080), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3111), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3080), - [sym_member_access_expression] = STATE(2484), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3111), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7575), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(3080), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3080), - [sym_typeof_expression] = STATE(3080), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2484), - [sym_literal] = STATE(3080), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2416), + [sym__name] = STATE(5867), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2379), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(5223), + [sym_non_lvalue_expression] = STATE(3040), + [sym_lvalue_expression] = STATE(3617), + [sym__expression_statement_expression] = STATE(3035), + [sym_assignment_expression] = STATE(3043), + [sym_binary_expression] = STATE(3035), + [sym_postfix_unary_expression] = STATE(3043), + [sym_prefix_unary_expression] = STATE(3043), + [sym__pointer_indirection_expression] = STATE(2415), + [sym_query_expression] = STATE(3035), + [sym_from_clause] = STATE(6161), + [sym_conditional_expression] = STATE(3035), + [sym_conditional_access_expression] = STATE(3035), + [sym_as_expression] = STATE(3035), + [sym_is_expression] = STATE(3035), + [sym_is_pattern_expression] = STATE(3035), + [sym_cast_expression] = STATE(3035), + [sym_checked_expression] = STATE(3035), + [sym_invocation_expression] = STATE(3043), + [sym_switch_expression] = STATE(3035), + [sym_await_expression] = STATE(3043), + [sym_throw_expression] = STATE(3035), + [sym_element_access_expression] = STATE(2415), + [sym_interpolated_string_expression] = STATE(3035), + [sym_member_access_expression] = STATE(2415), + [sym_object_creation_expression] = STATE(3043), + [sym_parenthesized_expression] = STATE(3043), + [sym__parenthesized_lvalue_expression] = STATE(2415), + [sym_lambda_expression] = STATE(3035), + [sym__lambda_expression_init] = STATE(7706), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3035), + [sym_anonymous_method_expression] = STATE(3035), + [sym_anonymous_object_creation_expression] = STATE(3035), + [sym_implicit_array_creation_expression] = STATE(3035), + [sym_implicit_object_creation_expression] = STATE(3035), + [sym_implicit_stackalloc_expression] = STATE(3035), + [sym_initializer_expression] = STATE(3035), + [sym_default_expression] = STATE(3035), + [sym_with_expression] = STATE(3035), + [sym_sizeof_expression] = STATE(3035), + [sym_typeof_expression] = STATE(3035), + [sym_makeref_expression] = STATE(3035), + [sym_ref_expression] = STATE(3035), + [sym_reftype_expression] = STATE(3035), + [sym_refvalue_expression] = STATE(3035), + [sym_stackalloc_expression] = STATE(3035), + [sym_range_expression] = STATE(3035), + [sym_tuple_expression] = STATE(2415), + [sym_literal] = STATE(3035), + [sym_character_literal] = STATE(3037), + [sym_string_literal] = STATE(3037), + [sym_raw_string_literal] = STATE(3037), + [sym_boolean_literal] = STATE(3037), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3035), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(1475), [sym_preproc_endregion] = STATE(1475), [sym_preproc_line] = STATE(1475), @@ -291134,47 +291020,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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3455), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1481), - [anon_sym_LPAREN] = ACTIONS(895), - [anon_sym_ref] = ACTIONS(897), - [anon_sym_LBRACE] = ACTIONS(1487), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1239), + [anon_sym_LPAREN] = ACTIONS(2159), + [anon_sym_ref] = ACTIONS(2161), + [anon_sym_LBRACE] = ACTIONS(1245), + [anon_sym_delegate] = ACTIONS(1247), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1061), + [anon_sym_new] = ACTIONS(2163), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1067), - [anon_sym_BANG] = ACTIONS(1495), - [anon_sym_TILDE] = ACTIONS(1495), - [anon_sym_PLUS_PLUS] = ACTIONS(1495), - [anon_sym_DASH_DASH] = ACTIONS(1495), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1493), - [anon_sym_DASH] = ACTIONS(1493), - [anon_sym_STAR] = ACTIONS(905), - [anon_sym_CARET] = ACTIONS(1495), - [anon_sym_AMP] = ACTIONS(1495), - [anon_sym_this] = ACTIONS(83), + [anon_sym_checked] = ACTIONS(1251), + [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(1257), + [anon_sym_false] = ACTIONS(1257), + [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(1261), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), + [anon_sym_base] = ACTIONS(1263), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1067), + [sym_predefined_type] = ACTIONS(1265), + [anon_sym_unchecked] = ACTIONS(1251), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1079), + [anon_sym_default] = ACTIONS(1267), + [anon_sym_throw] = ACTIONS(2171), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1081), - [anon_sym_DOT_DOT] = ACTIONS(911), + [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), @@ -291187,19 +291073,19 @@ static const uint16_t ts_parse_table[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(1089), + [anon_sym_stackalloc] = ACTIONS(1275), + [anon_sym_sizeof] = ACTIONS(1277), + [anon_sym_typeof] = ACTIONS(1279), + [anon_sym___makeref] = ACTIONS(1281), + [anon_sym___reftype] = ACTIONS(1283), + [anon_sym___refvalue] = ACTIONS(1285), + [sym_null_literal] = ACTIONS(1287), + [anon_sym_SQUOTE] = ACTIONS(1289), + [sym_integer_literal] = ACTIONS(1287), + [sym_real_literal] = ACTIONS(1291), + [anon_sym_DQUOTE] = ACTIONS(1293), + [sym_verbatim_string_literal] = ACTIONS(1291), + [aux_sym_preproc_if_token1] = ACTIONS(1295), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -291210,90 +291096,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(151), - [sym_interpolation_verbatim_start] = ACTIONS(153), - [sym_interpolation_raw_start] = ACTIONS(155), - [sym_raw_string_start] = ACTIONS(157), + [sym_interpolation_regular_start] = ACTIONS(1297), + [sym_interpolation_verbatim_start] = ACTIONS(1299), + [sym_interpolation_raw_start] = ACTIONS(1301), + [sym_raw_string_start] = ACTIONS(1303), }, [1476] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(5910), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2247), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(5368), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3379), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3080), - [sym_postfix_unary_expression] = STATE(3111), - [sym_prefix_unary_expression] = STATE(3111), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6154), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3080), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3111), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3080), - [sym_member_access_expression] = STATE(2484), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3111), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7575), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(3080), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3080), - [sym_typeof_expression] = STATE(3080), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2484), - [sym_literal] = STATE(3080), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2901), + [sym__name] = STATE(5883), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2359), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(3913), + [sym_non_lvalue_expression] = STATE(3685), + [sym_lvalue_expression] = STATE(3073), + [sym__expression_statement_expression] = STATE(3836), + [sym_assignment_expression] = STATE(3689), + [sym_binary_expression] = STATE(3836), + [sym_postfix_unary_expression] = STATE(3689), + [sym_prefix_unary_expression] = STATE(3689), + [sym__pointer_indirection_expression] = STATE(2906), + [sym_query_expression] = STATE(3836), + [sym_from_clause] = STATE(6157), + [sym_conditional_expression] = STATE(3836), + [sym_conditional_access_expression] = STATE(3836), + [sym_as_expression] = STATE(3836), + [sym_is_expression] = STATE(3836), + [sym_is_pattern_expression] = STATE(3836), + [sym_cast_expression] = STATE(3836), + [sym_checked_expression] = STATE(3836), + [sym_invocation_expression] = STATE(3689), + [sym_switch_expression] = STATE(3836), + [sym_await_expression] = STATE(3689), + [sym_throw_expression] = STATE(3836), + [sym_element_access_expression] = STATE(2906), + [sym_interpolated_string_expression] = STATE(3836), + [sym_member_access_expression] = STATE(2906), + [sym_object_creation_expression] = STATE(3689), + [sym_parenthesized_expression] = STATE(3689), + [sym__parenthesized_lvalue_expression] = STATE(2906), + [sym_lambda_expression] = STATE(3836), + [sym__lambda_expression_init] = STATE(7460), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3836), + [sym_anonymous_method_expression] = STATE(3836), + [sym_anonymous_object_creation_expression] = STATE(3836), + [sym_implicit_array_creation_expression] = STATE(3836), + [sym_implicit_object_creation_expression] = STATE(3836), + [sym_implicit_stackalloc_expression] = STATE(3836), + [sym_initializer_expression] = STATE(3836), + [sym_default_expression] = STATE(3836), + [sym_with_expression] = STATE(3836), + [sym_sizeof_expression] = STATE(3836), + [sym_typeof_expression] = STATE(3836), + [sym_makeref_expression] = STATE(3836), + [sym_ref_expression] = STATE(3836), + [sym_reftype_expression] = STATE(3836), + [sym_refvalue_expression] = STATE(3836), + [sym_stackalloc_expression] = STATE(3836), + [sym_range_expression] = STATE(3836), + [sym_tuple_expression] = STATE(2906), + [sym_literal] = STATE(3836), + [sym_character_literal] = STATE(3843), + [sym_string_literal] = STATE(3843), + [sym_raw_string_literal] = STATE(3843), + [sym_boolean_literal] = STATE(3843), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3836), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(1476), [sym_preproc_endregion] = STATE(1476), [sym_preproc_line] = STATE(1476), @@ -291303,47 +291189,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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3477), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1481), - [anon_sym_LPAREN] = ACTIONS(895), - [anon_sym_ref] = ACTIONS(897), - [anon_sym_LBRACE] = ACTIONS(1487), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1655), + [anon_sym_LPAREN] = ACTIONS(2061), + [anon_sym_ref] = ACTIONS(2063), + [anon_sym_LBRACE] = ACTIONS(1661), + [anon_sym_delegate] = ACTIONS(1663), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1061), + [anon_sym_new] = ACTIONS(1665), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1067), - [anon_sym_BANG] = ACTIONS(1495), - [anon_sym_TILDE] = ACTIONS(1495), - [anon_sym_PLUS_PLUS] = ACTIONS(1495), - [anon_sym_DASH_DASH] = ACTIONS(1495), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1493), - [anon_sym_DASH] = ACTIONS(1493), - [anon_sym_STAR] = ACTIONS(905), - [anon_sym_CARET] = ACTIONS(1495), - [anon_sym_AMP] = ACTIONS(1495), - [anon_sym_this] = ACTIONS(83), + [anon_sym_checked] = ACTIONS(1667), + [anon_sym_BANG] = ACTIONS(2067), + [anon_sym_TILDE] = ACTIONS(2067), + [anon_sym_PLUS_PLUS] = ACTIONS(2067), + [anon_sym_DASH_DASH] = ACTIONS(2067), + [anon_sym_true] = ACTIONS(1673), + [anon_sym_false] = ACTIONS(1673), + [anon_sym_PLUS] = ACTIONS(2065), + [anon_sym_DASH] = ACTIONS(2065), + [anon_sym_STAR] = ACTIONS(1675), + [anon_sym_CARET] = ACTIONS(2067), + [anon_sym_AMP] = ACTIONS(2067), + [anon_sym_this] = ACTIONS(1677), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), + [anon_sym_base] = ACTIONS(1679), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1067), + [sym_predefined_type] = ACTIONS(1681), + [anon_sym_unchecked] = ACTIONS(1667), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1079), + [anon_sym_default] = ACTIONS(1683), + [anon_sym_throw] = ACTIONS(2069), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1081), - [anon_sym_DOT_DOT] = ACTIONS(911), + [anon_sym_await] = ACTIONS(2071), + [anon_sym_DOT_DOT] = ACTIONS(2073), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -291356,19 +291242,19 @@ static const uint16_t ts_parse_table[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(1089), + [anon_sym_stackalloc] = ACTIONS(1691), + [anon_sym_sizeof] = ACTIONS(1693), + [anon_sym_typeof] = ACTIONS(1695), + [anon_sym___makeref] = ACTIONS(1697), + [anon_sym___reftype] = ACTIONS(1699), + [anon_sym___refvalue] = ACTIONS(1701), + [sym_null_literal] = ACTIONS(1703), + [anon_sym_SQUOTE] = ACTIONS(1705), + [sym_integer_literal] = ACTIONS(1703), + [sym_real_literal] = ACTIONS(1707), + [anon_sym_DQUOTE] = ACTIONS(1709), + [sym_verbatim_string_literal] = ACTIONS(1707), + [aux_sym_preproc_if_token1] = ACTIONS(1711), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -291379,90 +291265,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(151), - [sym_interpolation_verbatim_start] = ACTIONS(153), - [sym_interpolation_raw_start] = ACTIONS(155), - [sym_raw_string_start] = ACTIONS(157), + [sym_interpolation_regular_start] = ACTIONS(1713), + [sym_interpolation_verbatim_start] = ACTIONS(1715), + [sym_interpolation_raw_start] = ACTIONS(1717), + [sym_raw_string_start] = ACTIONS(1719), }, [1477] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(5160), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2204), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(5370), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3461), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3080), - [sym_postfix_unary_expression] = STATE(3111), - [sym_prefix_unary_expression] = STATE(3111), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6154), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3080), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3111), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3080), - [sym_member_access_expression] = STATE(2484), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3111), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7547), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(3080), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3080), - [sym_typeof_expression] = STATE(3080), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2484), - [sym_literal] = STATE(3080), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2816), + [sym__name] = STATE(5896), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2362), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(4928), + [sym_non_lvalue_expression] = STATE(3495), + [sym_lvalue_expression] = STATE(3513), + [sym__expression_statement_expression] = STATE(3462), + [sym_assignment_expression] = STATE(3497), + [sym_binary_expression] = STATE(3462), + [sym_postfix_unary_expression] = STATE(3497), + [sym_prefix_unary_expression] = STATE(3497), + [sym__pointer_indirection_expression] = STATE(2815), + [sym_query_expression] = STATE(3462), + [sym_from_clause] = STATE(6132), + [sym_conditional_expression] = STATE(3462), + [sym_conditional_access_expression] = STATE(3462), + [sym_as_expression] = STATE(3462), + [sym_is_expression] = STATE(3462), + [sym_is_pattern_expression] = STATE(3462), + [sym_cast_expression] = STATE(3462), + [sym_checked_expression] = STATE(3462), + [sym_invocation_expression] = STATE(3497), + [sym_switch_expression] = STATE(3462), + [sym_await_expression] = STATE(3497), + [sym_throw_expression] = STATE(3462), + [sym_element_access_expression] = STATE(2815), + [sym_interpolated_string_expression] = STATE(3462), + [sym_member_access_expression] = STATE(2815), + [sym_object_creation_expression] = STATE(3497), + [sym_parenthesized_expression] = STATE(3497), + [sym__parenthesized_lvalue_expression] = STATE(2815), + [sym_lambda_expression] = STATE(3462), + [sym__lambda_expression_init] = STATE(7527), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3462), + [sym_anonymous_method_expression] = STATE(3462), + [sym_anonymous_object_creation_expression] = STATE(3462), + [sym_implicit_array_creation_expression] = STATE(3462), + [sym_implicit_object_creation_expression] = STATE(3462), + [sym_implicit_stackalloc_expression] = STATE(3462), + [sym_initializer_expression] = STATE(3462), + [sym_default_expression] = STATE(3462), + [sym_with_expression] = STATE(3462), + [sym_sizeof_expression] = STATE(3462), + [sym_typeof_expression] = STATE(3462), + [sym_makeref_expression] = STATE(3462), + [sym_ref_expression] = STATE(3462), + [sym_reftype_expression] = STATE(3462), + [sym_refvalue_expression] = STATE(3462), + [sym_stackalloc_expression] = STATE(3462), + [sym_range_expression] = STATE(3462), + [sym_tuple_expression] = STATE(2815), + [sym_literal] = STATE(3462), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3462), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(1477), [sym_preproc_endregion] = STATE(1477), [sym_preproc_line] = STATE(1477), @@ -291472,47 +291358,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(3067), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), [aux_sym__lambda_expression_init_repeat1] = STATE(3367), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1481), - [anon_sym_LPAREN] = ACTIONS(1497), - [anon_sym_ref] = ACTIONS(1499), - [anon_sym_LBRACE] = ACTIONS(1487), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1305), + [anon_sym_LPAREN] = ACTIONS(1875), + [anon_sym_ref] = ACTIONS(1877), + [anon_sym_LBRACE] = ACTIONS(1311), + [anon_sym_delegate] = ACTIONS(1313), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1501), + [anon_sym_new] = ACTIONS(1879), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = 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_checked] = ACTIONS(1317), + [anon_sym_BANG] = ACTIONS(1883), + [anon_sym_TILDE] = ACTIONS(1883), + [anon_sym_PLUS_PLUS] = ACTIONS(1883), + [anon_sym_DASH_DASH] = ACTIONS(1883), [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(1881), + [anon_sym_DASH] = ACTIONS(1881), + [anon_sym_STAR] = ACTIONS(1885), + [anon_sym_CARET] = ACTIONS(1883), + [anon_sym_AMP] = ACTIONS(1883), + [anon_sym_this] = ACTIONS(1321), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), + [anon_sym_base] = ACTIONS(1323), [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1067), + [anon_sym_unchecked] = ACTIONS(1317), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1503), + [anon_sym_throw] = ACTIONS(1887), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1505), - [anon_sym_DOT_DOT] = ACTIONS(1507), + [anon_sym_await] = ACTIONS(1889), + [anon_sym_DOT_DOT] = ACTIONS(1891), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -291525,19 +291411,19 @@ static const uint16_t ts_parse_table[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(1331), [anon_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(1333), + [anon_sym___reftype] = ACTIONS(1335), + [anon_sym___refvalue] = ACTIONS(1337), [sym_null_literal] = ACTIONS(139), [anon_sym_SQUOTE] = ACTIONS(141), [sym_integer_literal] = ACTIONS(139), [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1089), + [aux_sym_preproc_if_token1] = ACTIONS(1339), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -291554,84 +291440,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [1478] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(5910), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2247), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(5417), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3379), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3080), - [sym_postfix_unary_expression] = STATE(3111), - [sym_prefix_unary_expression] = STATE(3111), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6154), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3080), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3111), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3080), - [sym_member_access_expression] = STATE(2484), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3111), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7575), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(3080), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3080), - [sym_typeof_expression] = STATE(3080), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2484), - [sym_literal] = STATE(3080), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2816), + [sym__name] = STATE(5896), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2362), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(4929), + [sym_non_lvalue_expression] = STATE(3495), + [sym_lvalue_expression] = STATE(3513), + [sym__expression_statement_expression] = STATE(3462), + [sym_assignment_expression] = STATE(3497), + [sym_binary_expression] = STATE(3462), + [sym_postfix_unary_expression] = STATE(3497), + [sym_prefix_unary_expression] = STATE(3497), + [sym__pointer_indirection_expression] = STATE(2815), + [sym_query_expression] = STATE(3462), + [sym_from_clause] = STATE(6132), + [sym_conditional_expression] = STATE(3462), + [sym_conditional_access_expression] = STATE(3462), + [sym_as_expression] = STATE(3462), + [sym_is_expression] = STATE(3462), + [sym_is_pattern_expression] = STATE(3462), + [sym_cast_expression] = STATE(3462), + [sym_checked_expression] = STATE(3462), + [sym_invocation_expression] = STATE(3497), + [sym_switch_expression] = STATE(3462), + [sym_await_expression] = STATE(3497), + [sym_throw_expression] = STATE(3462), + [sym_element_access_expression] = STATE(2815), + [sym_interpolated_string_expression] = STATE(3462), + [sym_member_access_expression] = STATE(2815), + [sym_object_creation_expression] = STATE(3497), + [sym_parenthesized_expression] = STATE(3497), + [sym__parenthesized_lvalue_expression] = STATE(2815), + [sym_lambda_expression] = STATE(3462), + [sym__lambda_expression_init] = STATE(7527), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3462), + [sym_anonymous_method_expression] = STATE(3462), + [sym_anonymous_object_creation_expression] = STATE(3462), + [sym_implicit_array_creation_expression] = STATE(3462), + [sym_implicit_object_creation_expression] = STATE(3462), + [sym_implicit_stackalloc_expression] = STATE(3462), + [sym_initializer_expression] = STATE(3462), + [sym_default_expression] = STATE(3462), + [sym_with_expression] = STATE(3462), + [sym_sizeof_expression] = STATE(3462), + [sym_typeof_expression] = STATE(3462), + [sym_makeref_expression] = STATE(3462), + [sym_ref_expression] = STATE(3462), + [sym_reftype_expression] = STATE(3462), + [sym_refvalue_expression] = STATE(3462), + [sym_stackalloc_expression] = STATE(3462), + [sym_range_expression] = STATE(3462), + [sym_tuple_expression] = STATE(2815), + [sym_literal] = STATE(3462), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3462), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(1478), [sym_preproc_endregion] = STATE(1478), [sym_preproc_line] = STATE(1478), @@ -291641,47 +291527,47 @@ 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(3067), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), [aux_sym__lambda_expression_init_repeat1] = STATE(3367), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1481), - [anon_sym_LPAREN] = ACTIONS(895), - [anon_sym_ref] = ACTIONS(897), - [anon_sym_LBRACE] = ACTIONS(1487), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1305), + [anon_sym_LPAREN] = ACTIONS(1875), + [anon_sym_ref] = ACTIONS(1877), + [anon_sym_LBRACE] = ACTIONS(1311), + [anon_sym_delegate] = ACTIONS(1313), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1061), + [anon_sym_new] = ACTIONS(1879), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1067), - [anon_sym_BANG] = ACTIONS(1495), - [anon_sym_TILDE] = ACTIONS(1495), - [anon_sym_PLUS_PLUS] = ACTIONS(1495), - [anon_sym_DASH_DASH] = ACTIONS(1495), + [anon_sym_checked] = ACTIONS(1317), + [anon_sym_BANG] = ACTIONS(1883), + [anon_sym_TILDE] = ACTIONS(1883), + [anon_sym_PLUS_PLUS] = ACTIONS(1883), + [anon_sym_DASH_DASH] = ACTIONS(1883), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1493), - [anon_sym_DASH] = ACTIONS(1493), - [anon_sym_STAR] = ACTIONS(905), - [anon_sym_CARET] = ACTIONS(1495), - [anon_sym_AMP] = ACTIONS(1495), - [anon_sym_this] = ACTIONS(83), + [anon_sym_PLUS] = ACTIONS(1881), + [anon_sym_DASH] = ACTIONS(1881), + [anon_sym_STAR] = ACTIONS(1885), + [anon_sym_CARET] = ACTIONS(1883), + [anon_sym_AMP] = ACTIONS(1883), + [anon_sym_this] = ACTIONS(1321), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), + [anon_sym_base] = ACTIONS(1323), [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1067), + [anon_sym_unchecked] = ACTIONS(1317), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1079), + [anon_sym_throw] = ACTIONS(1887), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1081), - [anon_sym_DOT_DOT] = ACTIONS(911), + [anon_sym_await] = ACTIONS(1889), + [anon_sym_DOT_DOT] = ACTIONS(1891), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -291694,19 +291580,19 @@ static const uint16_t ts_parse_table[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(1331), [anon_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(1333), + [anon_sym___reftype] = ACTIONS(1335), + [anon_sym___refvalue] = ACTIONS(1337), [sym_null_literal] = ACTIONS(139), [anon_sym_SQUOTE] = ACTIONS(141), [sym_integer_literal] = ACTIONS(139), [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1089), + [aux_sym_preproc_if_token1] = ACTIONS(1339), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -291723,84 +291609,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [1479] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(5910), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2247), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(5423), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3379), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3080), - [sym_postfix_unary_expression] = STATE(3111), - [sym_prefix_unary_expression] = STATE(3111), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6154), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3080), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3111), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3080), - [sym_member_access_expression] = STATE(2484), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3111), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7575), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(3080), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3080), - [sym_typeof_expression] = STATE(3080), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2484), - [sym_literal] = STATE(3080), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2816), + [sym__name] = STATE(5896), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2362), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(4991), + [sym_non_lvalue_expression] = STATE(3495), + [sym_lvalue_expression] = STATE(3513), + [sym__expression_statement_expression] = STATE(3462), + [sym_assignment_expression] = STATE(3497), + [sym_binary_expression] = STATE(3462), + [sym_postfix_unary_expression] = STATE(3497), + [sym_prefix_unary_expression] = STATE(3497), + [sym__pointer_indirection_expression] = STATE(2815), + [sym_query_expression] = STATE(3462), + [sym_from_clause] = STATE(6132), + [sym_conditional_expression] = STATE(3462), + [sym_conditional_access_expression] = STATE(3462), + [sym_as_expression] = STATE(3462), + [sym_is_expression] = STATE(3462), + [sym_is_pattern_expression] = STATE(3462), + [sym_cast_expression] = STATE(3462), + [sym_checked_expression] = STATE(3462), + [sym_invocation_expression] = STATE(3497), + [sym_switch_expression] = STATE(3462), + [sym_await_expression] = STATE(3497), + [sym_throw_expression] = STATE(3462), + [sym_element_access_expression] = STATE(2815), + [sym_interpolated_string_expression] = STATE(3462), + [sym_member_access_expression] = STATE(2815), + [sym_object_creation_expression] = STATE(3497), + [sym_parenthesized_expression] = STATE(3497), + [sym__parenthesized_lvalue_expression] = STATE(2815), + [sym_lambda_expression] = STATE(3462), + [sym__lambda_expression_init] = STATE(7527), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3462), + [sym_anonymous_method_expression] = STATE(3462), + [sym_anonymous_object_creation_expression] = STATE(3462), + [sym_implicit_array_creation_expression] = STATE(3462), + [sym_implicit_object_creation_expression] = STATE(3462), + [sym_implicit_stackalloc_expression] = STATE(3462), + [sym_initializer_expression] = STATE(3462), + [sym_default_expression] = STATE(3462), + [sym_with_expression] = STATE(3462), + [sym_sizeof_expression] = STATE(3462), + [sym_typeof_expression] = STATE(3462), + [sym_makeref_expression] = STATE(3462), + [sym_ref_expression] = STATE(3462), + [sym_reftype_expression] = STATE(3462), + [sym_refvalue_expression] = STATE(3462), + [sym_stackalloc_expression] = STATE(3462), + [sym_range_expression] = STATE(3462), + [sym_tuple_expression] = STATE(2815), + [sym_literal] = STATE(3462), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3462), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(1479), [sym_preproc_endregion] = STATE(1479), [sym_preproc_line] = STATE(1479), @@ -291810,47 +291696,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(3067), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), [aux_sym__lambda_expression_init_repeat1] = STATE(3367), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1481), - [anon_sym_LPAREN] = ACTIONS(895), - [anon_sym_ref] = ACTIONS(897), - [anon_sym_LBRACE] = ACTIONS(1487), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1305), + [anon_sym_LPAREN] = ACTIONS(1875), + [anon_sym_ref] = ACTIONS(1877), + [anon_sym_LBRACE] = ACTIONS(1311), + [anon_sym_delegate] = ACTIONS(1313), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1061), + [anon_sym_new] = ACTIONS(1879), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1067), - [anon_sym_BANG] = ACTIONS(1495), - [anon_sym_TILDE] = ACTIONS(1495), - [anon_sym_PLUS_PLUS] = ACTIONS(1495), - [anon_sym_DASH_DASH] = ACTIONS(1495), + [anon_sym_checked] = ACTIONS(1317), + [anon_sym_BANG] = ACTIONS(1883), + [anon_sym_TILDE] = ACTIONS(1883), + [anon_sym_PLUS_PLUS] = ACTIONS(1883), + [anon_sym_DASH_DASH] = ACTIONS(1883), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1493), - [anon_sym_DASH] = ACTIONS(1493), - [anon_sym_STAR] = ACTIONS(905), - [anon_sym_CARET] = ACTIONS(1495), - [anon_sym_AMP] = ACTIONS(1495), - [anon_sym_this] = ACTIONS(83), + [anon_sym_PLUS] = ACTIONS(1881), + [anon_sym_DASH] = ACTIONS(1881), + [anon_sym_STAR] = ACTIONS(1885), + [anon_sym_CARET] = ACTIONS(1883), + [anon_sym_AMP] = ACTIONS(1883), + [anon_sym_this] = ACTIONS(1321), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), + [anon_sym_base] = ACTIONS(1323), [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1067), + [anon_sym_unchecked] = ACTIONS(1317), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1079), + [anon_sym_throw] = ACTIONS(1887), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1081), - [anon_sym_DOT_DOT] = ACTIONS(911), + [anon_sym_await] = ACTIONS(1889), + [anon_sym_DOT_DOT] = ACTIONS(1891), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -291863,19 +291749,19 @@ static const uint16_t ts_parse_table[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(1331), [anon_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(1333), + [anon_sym___reftype] = ACTIONS(1335), + [anon_sym___refvalue] = ACTIONS(1337), [sym_null_literal] = ACTIONS(139), [anon_sym_SQUOTE] = ACTIONS(141), [sym_integer_literal] = ACTIONS(139), [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1089), + [aux_sym_preproc_if_token1] = ACTIONS(1339), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -291892,84 +291778,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [1480] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(5910), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2247), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(5424), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3379), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3080), - [sym_postfix_unary_expression] = STATE(3111), - [sym_prefix_unary_expression] = STATE(3111), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6154), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3080), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3111), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3080), - [sym_member_access_expression] = STATE(2484), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3111), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7575), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(3080), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3080), - [sym_typeof_expression] = STATE(3080), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2484), - [sym_literal] = STATE(3080), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2816), + [sym__name] = STATE(5896), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2362), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(4930), + [sym_non_lvalue_expression] = STATE(3495), + [sym_lvalue_expression] = STATE(3513), + [sym__expression_statement_expression] = STATE(3462), + [sym_assignment_expression] = STATE(3497), + [sym_binary_expression] = STATE(3462), + [sym_postfix_unary_expression] = STATE(3497), + [sym_prefix_unary_expression] = STATE(3497), + [sym__pointer_indirection_expression] = STATE(2815), + [sym_query_expression] = STATE(3462), + [sym_from_clause] = STATE(6132), + [sym_conditional_expression] = STATE(3462), + [sym_conditional_access_expression] = STATE(3462), + [sym_as_expression] = STATE(3462), + [sym_is_expression] = STATE(3462), + [sym_is_pattern_expression] = STATE(3462), + [sym_cast_expression] = STATE(3462), + [sym_checked_expression] = STATE(3462), + [sym_invocation_expression] = STATE(3497), + [sym_switch_expression] = STATE(3462), + [sym_await_expression] = STATE(3497), + [sym_throw_expression] = STATE(3462), + [sym_element_access_expression] = STATE(2815), + [sym_interpolated_string_expression] = STATE(3462), + [sym_member_access_expression] = STATE(2815), + [sym_object_creation_expression] = STATE(3497), + [sym_parenthesized_expression] = STATE(3497), + [sym__parenthesized_lvalue_expression] = STATE(2815), + [sym_lambda_expression] = STATE(3462), + [sym__lambda_expression_init] = STATE(7527), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3462), + [sym_anonymous_method_expression] = STATE(3462), + [sym_anonymous_object_creation_expression] = STATE(3462), + [sym_implicit_array_creation_expression] = STATE(3462), + [sym_implicit_object_creation_expression] = STATE(3462), + [sym_implicit_stackalloc_expression] = STATE(3462), + [sym_initializer_expression] = STATE(3462), + [sym_default_expression] = STATE(3462), + [sym_with_expression] = STATE(3462), + [sym_sizeof_expression] = STATE(3462), + [sym_typeof_expression] = STATE(3462), + [sym_makeref_expression] = STATE(3462), + [sym_ref_expression] = STATE(3462), + [sym_reftype_expression] = STATE(3462), + [sym_refvalue_expression] = STATE(3462), + [sym_stackalloc_expression] = STATE(3462), + [sym_range_expression] = STATE(3462), + [sym_tuple_expression] = STATE(2815), + [sym_literal] = STATE(3462), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3462), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(1480), [sym_preproc_endregion] = STATE(1480), [sym_preproc_line] = STATE(1480), @@ -291979,47 +291865,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(3067), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), [aux_sym__lambda_expression_init_repeat1] = STATE(3367), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1481), - [anon_sym_LPAREN] = ACTIONS(895), - [anon_sym_ref] = ACTIONS(897), - [anon_sym_LBRACE] = ACTIONS(1487), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1305), + [anon_sym_LPAREN] = ACTIONS(1875), + [anon_sym_ref] = ACTIONS(1877), + [anon_sym_LBRACE] = ACTIONS(1311), + [anon_sym_delegate] = ACTIONS(1313), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1061), + [anon_sym_new] = ACTIONS(1879), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1067), - [anon_sym_BANG] = ACTIONS(1495), - [anon_sym_TILDE] = ACTIONS(1495), - [anon_sym_PLUS_PLUS] = ACTIONS(1495), - [anon_sym_DASH_DASH] = ACTIONS(1495), + [anon_sym_checked] = ACTIONS(1317), + [anon_sym_BANG] = ACTIONS(1883), + [anon_sym_TILDE] = ACTIONS(1883), + [anon_sym_PLUS_PLUS] = ACTIONS(1883), + [anon_sym_DASH_DASH] = ACTIONS(1883), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1493), - [anon_sym_DASH] = ACTIONS(1493), - [anon_sym_STAR] = ACTIONS(905), - [anon_sym_CARET] = ACTIONS(1495), - [anon_sym_AMP] = ACTIONS(1495), - [anon_sym_this] = ACTIONS(83), + [anon_sym_PLUS] = ACTIONS(1881), + [anon_sym_DASH] = ACTIONS(1881), + [anon_sym_STAR] = ACTIONS(1885), + [anon_sym_CARET] = ACTIONS(1883), + [anon_sym_AMP] = ACTIONS(1883), + [anon_sym_this] = ACTIONS(1321), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), + [anon_sym_base] = ACTIONS(1323), [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1067), + [anon_sym_unchecked] = ACTIONS(1317), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1079), + [anon_sym_throw] = ACTIONS(1887), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1081), - [anon_sym_DOT_DOT] = ACTIONS(911), + [anon_sym_await] = ACTIONS(1889), + [anon_sym_DOT_DOT] = ACTIONS(1891), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -292032,19 +291918,19 @@ static const uint16_t ts_parse_table[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(1331), [anon_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(1333), + [anon_sym___reftype] = ACTIONS(1335), + [anon_sym___refvalue] = ACTIONS(1337), [sym_null_literal] = ACTIONS(139), [anon_sym_SQUOTE] = ACTIONS(141), [sym_integer_literal] = ACTIONS(139), [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1089), + [aux_sym_preproc_if_token1] = ACTIONS(1339), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -292061,84 +291947,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [1481] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(5160), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2204), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(4563), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3461), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3080), - [sym_postfix_unary_expression] = STATE(3111), - [sym_prefix_unary_expression] = STATE(3111), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6154), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3080), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3111), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3080), - [sym_member_access_expression] = STATE(2484), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3111), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7547), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(3080), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3080), - [sym_typeof_expression] = STATE(3080), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2484), - [sym_literal] = STATE(3080), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2816), + [sym__name] = STATE(5896), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2362), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(4931), + [sym_non_lvalue_expression] = STATE(3495), + [sym_lvalue_expression] = STATE(3513), + [sym__expression_statement_expression] = STATE(3462), + [sym_assignment_expression] = STATE(3497), + [sym_binary_expression] = STATE(3462), + [sym_postfix_unary_expression] = STATE(3497), + [sym_prefix_unary_expression] = STATE(3497), + [sym__pointer_indirection_expression] = STATE(2815), + [sym_query_expression] = STATE(3462), + [sym_from_clause] = STATE(6132), + [sym_conditional_expression] = STATE(3462), + [sym_conditional_access_expression] = STATE(3462), + [sym_as_expression] = STATE(3462), + [sym_is_expression] = STATE(3462), + [sym_is_pattern_expression] = STATE(3462), + [sym_cast_expression] = STATE(3462), + [sym_checked_expression] = STATE(3462), + [sym_invocation_expression] = STATE(3497), + [sym_switch_expression] = STATE(3462), + [sym_await_expression] = STATE(3497), + [sym_throw_expression] = STATE(3462), + [sym_element_access_expression] = STATE(2815), + [sym_interpolated_string_expression] = STATE(3462), + [sym_member_access_expression] = STATE(2815), + [sym_object_creation_expression] = STATE(3497), + [sym_parenthesized_expression] = STATE(3497), + [sym__parenthesized_lvalue_expression] = STATE(2815), + [sym_lambda_expression] = STATE(3462), + [sym__lambda_expression_init] = STATE(7527), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3462), + [sym_anonymous_method_expression] = STATE(3462), + [sym_anonymous_object_creation_expression] = STATE(3462), + [sym_implicit_array_creation_expression] = STATE(3462), + [sym_implicit_object_creation_expression] = STATE(3462), + [sym_implicit_stackalloc_expression] = STATE(3462), + [sym_initializer_expression] = STATE(3462), + [sym_default_expression] = STATE(3462), + [sym_with_expression] = STATE(3462), + [sym_sizeof_expression] = STATE(3462), + [sym_typeof_expression] = STATE(3462), + [sym_makeref_expression] = STATE(3462), + [sym_ref_expression] = STATE(3462), + [sym_reftype_expression] = STATE(3462), + [sym_refvalue_expression] = STATE(3462), + [sym_stackalloc_expression] = STATE(3462), + [sym_range_expression] = STATE(3462), + [sym_tuple_expression] = STATE(2815), + [sym_literal] = STATE(3462), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3462), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(1481), [sym_preproc_endregion] = STATE(1481), [sym_preproc_line] = STATE(1481), @@ -292148,47 +292034,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(3067), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), [aux_sym__lambda_expression_init_repeat1] = STATE(3367), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1481), - [anon_sym_LPAREN] = ACTIONS(1497), - [anon_sym_ref] = ACTIONS(1499), - [anon_sym_LBRACE] = ACTIONS(1487), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1305), + [anon_sym_LPAREN] = ACTIONS(1875), + [anon_sym_ref] = ACTIONS(1877), + [anon_sym_LBRACE] = ACTIONS(1311), + [anon_sym_delegate] = ACTIONS(1313), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1501), + [anon_sym_new] = ACTIONS(1879), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = 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_checked] = ACTIONS(1317), + [anon_sym_BANG] = ACTIONS(1883), + [anon_sym_TILDE] = ACTIONS(1883), + [anon_sym_PLUS_PLUS] = ACTIONS(1883), + [anon_sym_DASH_DASH] = ACTIONS(1883), [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(1881), + [anon_sym_DASH] = ACTIONS(1881), + [anon_sym_STAR] = ACTIONS(1885), + [anon_sym_CARET] = ACTIONS(1883), + [anon_sym_AMP] = ACTIONS(1883), + [anon_sym_this] = ACTIONS(1321), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), + [anon_sym_base] = ACTIONS(1323), [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1067), + [anon_sym_unchecked] = ACTIONS(1317), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1503), + [anon_sym_throw] = ACTIONS(1887), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1505), - [anon_sym_DOT_DOT] = ACTIONS(1507), + [anon_sym_await] = ACTIONS(1889), + [anon_sym_DOT_DOT] = ACTIONS(1891), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -292201,19 +292087,19 @@ static const uint16_t ts_parse_table[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(1331), [anon_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(1333), + [anon_sym___reftype] = ACTIONS(1335), + [anon_sym___refvalue] = ACTIONS(1337), [sym_null_literal] = ACTIONS(139), [anon_sym_SQUOTE] = ACTIONS(141), [sym_integer_literal] = ACTIONS(139), [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1089), + [aux_sym_preproc_if_token1] = ACTIONS(1339), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -292230,84 +292116,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [1482] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(3184), - [sym__name] = STATE(5883), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2313), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2269), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(4949), - [sym_non_lvalue_expression] = STATE(4541), - [sym_lvalue_expression] = STATE(3527), - [sym__expression_statement_expression] = STATE(4529), - [sym_assignment_expression] = STATE(4543), - [sym_binary_expression] = STATE(4529), - [sym_postfix_unary_expression] = STATE(4543), - [sym_prefix_unary_expression] = STATE(4543), - [sym__pointer_indirection_expression] = STATE(3175), - [sym_query_expression] = STATE(4529), - [sym_from_clause] = STATE(6169), - [sym_conditional_expression] = STATE(4529), - [sym_conditional_access_expression] = STATE(4529), - [sym_as_expression] = STATE(4529), - [sym_is_expression] = STATE(4529), - [sym_is_pattern_expression] = STATE(4529), - [sym_cast_expression] = STATE(4529), - [sym_checked_expression] = STATE(4529), - [sym_invocation_expression] = STATE(4543), - [sym_switch_expression] = STATE(4529), - [sym_await_expression] = STATE(4543), - [sym_throw_expression] = STATE(4529), - [sym_element_access_expression] = STATE(3175), - [sym_interpolated_string_expression] = STATE(4529), - [sym_member_access_expression] = STATE(3175), - [sym_object_creation_expression] = STATE(4543), - [sym_parenthesized_expression] = STATE(4543), - [sym__parenthesized_lvalue_expression] = STATE(3175), - [sym_lambda_expression] = STATE(4529), - [sym__lambda_expression_init] = STATE(7337), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(4529), - [sym_anonymous_method_expression] = STATE(4529), - [sym_anonymous_object_creation_expression] = STATE(4529), - [sym_implicit_array_creation_expression] = STATE(4529), - [sym_implicit_object_creation_expression] = STATE(4529), - [sym_implicit_stackalloc_expression] = STATE(4529), - [sym_initializer_expression] = STATE(4529), - [sym_default_expression] = STATE(4529), - [sym_with_expression] = STATE(4529), - [sym_sizeof_expression] = STATE(4529), - [sym_typeof_expression] = STATE(4529), - [sym_makeref_expression] = STATE(4529), - [sym_ref_expression] = STATE(4529), - [sym_reftype_expression] = STATE(4529), - [sym_refvalue_expression] = STATE(4529), - [sym_stackalloc_expression] = STATE(4529), - [sym_range_expression] = STATE(4529), - [sym_tuple_expression] = STATE(3175), - [sym_literal] = STATE(4529), - [sym_character_literal] = STATE(4536), - [sym_string_literal] = STATE(4536), - [sym_raw_string_literal] = STATE(4536), - [sym_boolean_literal] = STATE(4536), - [sym_identifier] = STATE(2246), - [sym__reserved_identifier] = STATE(2240), - [sym_preproc_if_in_expression] = STATE(4529), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2816), + [sym__name] = STATE(5896), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2362), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(4932), + [sym_non_lvalue_expression] = STATE(3495), + [sym_lvalue_expression] = STATE(3513), + [sym__expression_statement_expression] = STATE(3462), + [sym_assignment_expression] = STATE(3497), + [sym_binary_expression] = STATE(3462), + [sym_postfix_unary_expression] = STATE(3497), + [sym_prefix_unary_expression] = STATE(3497), + [sym__pointer_indirection_expression] = STATE(2815), + [sym_query_expression] = STATE(3462), + [sym_from_clause] = STATE(6132), + [sym_conditional_expression] = STATE(3462), + [sym_conditional_access_expression] = STATE(3462), + [sym_as_expression] = STATE(3462), + [sym_is_expression] = STATE(3462), + [sym_is_pattern_expression] = STATE(3462), + [sym_cast_expression] = STATE(3462), + [sym_checked_expression] = STATE(3462), + [sym_invocation_expression] = STATE(3497), + [sym_switch_expression] = STATE(3462), + [sym_await_expression] = STATE(3497), + [sym_throw_expression] = STATE(3462), + [sym_element_access_expression] = STATE(2815), + [sym_interpolated_string_expression] = STATE(3462), + [sym_member_access_expression] = STATE(2815), + [sym_object_creation_expression] = STATE(3497), + [sym_parenthesized_expression] = STATE(3497), + [sym__parenthesized_lvalue_expression] = STATE(2815), + [sym_lambda_expression] = STATE(3462), + [sym__lambda_expression_init] = STATE(7527), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3462), + [sym_anonymous_method_expression] = STATE(3462), + [sym_anonymous_object_creation_expression] = STATE(3462), + [sym_implicit_array_creation_expression] = STATE(3462), + [sym_implicit_object_creation_expression] = STATE(3462), + [sym_implicit_stackalloc_expression] = STATE(3462), + [sym_initializer_expression] = STATE(3462), + [sym_default_expression] = STATE(3462), + [sym_with_expression] = STATE(3462), + [sym_sizeof_expression] = STATE(3462), + [sym_typeof_expression] = STATE(3462), + [sym_makeref_expression] = STATE(3462), + [sym_ref_expression] = STATE(3462), + [sym_reftype_expression] = STATE(3462), + [sym_refvalue_expression] = STATE(3462), + [sym_stackalloc_expression] = STATE(3462), + [sym_range_expression] = STATE(3462), + [sym_tuple_expression] = STATE(2815), + [sym_literal] = STATE(3462), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3462), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(1482), [sym_preproc_endregion] = STATE(1482), [sym_preproc_line] = STATE(1482), @@ -292317,166 +292203,166 @@ 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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3363), - [sym__identifier_token] = ACTIONS(1387), - [anon_sym_alias] = ACTIONS(1389), - [anon_sym_global] = ACTIONS(1389), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1391), - [anon_sym_LPAREN] = ACTIONS(1745), - [anon_sym_ref] = ACTIONS(1747), - [anon_sym_LBRACE] = ACTIONS(1397), - [anon_sym_delegate] = ACTIONS(1399), - [anon_sym_async] = ACTIONS(1047), - [anon_sym_file] = ACTIONS(1389), - [anon_sym_new] = ACTIONS(1467), - [anon_sym_where] = ACTIONS(1389), - [anon_sym_notnull] = ACTIONS(1389), - [anon_sym_unmanaged] = ACTIONS(1389), - [anon_sym_checked] = ACTIONS(1403), - [anon_sym_BANG] = ACTIONS(1751), - [anon_sym_TILDE] = ACTIONS(1751), - [anon_sym_PLUS_PLUS] = ACTIONS(1751), - [anon_sym_DASH_DASH] = ACTIONS(1751), - [anon_sym_true] = ACTIONS(1409), - [anon_sym_false] = ACTIONS(1409), - [anon_sym_PLUS] = ACTIONS(1749), - [anon_sym_DASH] = ACTIONS(1749), - [anon_sym_STAR] = ACTIONS(1473), - [anon_sym_CARET] = ACTIONS(1751), - [anon_sym_AMP] = ACTIONS(1751), - [anon_sym_this] = ACTIONS(1413), - [anon_sym_scoped] = ACTIONS(1415), - [anon_sym_base] = ACTIONS(1417), - [anon_sym_var] = ACTIONS(1419), - [sym_predefined_type] = ACTIONS(1421), - [anon_sym_unchecked] = ACTIONS(1403), - [anon_sym_yield] = ACTIONS(1389), - [anon_sym_default] = ACTIONS(1423), - [anon_sym_throw] = ACTIONS(1753), - [anon_sym_when] = ACTIONS(1389), - [anon_sym_await] = ACTIONS(1755), - [anon_sym_DOT_DOT] = ACTIONS(1757), - [anon_sym_from] = ACTIONS(1431), - [anon_sym_into] = ACTIONS(1389), - [anon_sym_join] = ACTIONS(1389), - [anon_sym_on] = ACTIONS(1389), - [anon_sym_equals] = ACTIONS(1389), - [anon_sym_let] = ACTIONS(1389), - [anon_sym_orderby] = ACTIONS(1389), - [anon_sym_ascending] = ACTIONS(1389), - [anon_sym_descending] = ACTIONS(1389), - [anon_sym_group] = ACTIONS(1389), - [anon_sym_by] = ACTIONS(1389), - [anon_sym_select] = ACTIONS(1389), - [anon_sym_stackalloc] = ACTIONS(1433), - [anon_sym_sizeof] = ACTIONS(1435), - [anon_sym_typeof] = ACTIONS(1437), - [anon_sym___makeref] = ACTIONS(1439), - [anon_sym___reftype] = ACTIONS(1441), - [anon_sym___refvalue] = ACTIONS(1443), - [sym_null_literal] = ACTIONS(1445), - [anon_sym_SQUOTE] = ACTIONS(1447), - [sym_integer_literal] = ACTIONS(1445), - [sym_real_literal] = ACTIONS(1449), - [anon_sym_DQUOTE] = ACTIONS(1451), - [sym_verbatim_string_literal] = ACTIONS(1449), - [aux_sym_preproc_if_token1] = ACTIONS(1453), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1455), - [sym_interpolation_verbatim_start] = ACTIONS(1457), - [sym_interpolation_raw_start] = ACTIONS(1459), - [sym_raw_string_start] = ACTIONS(1461), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [sym__identifier_token] = ACTIONS(25), + [anon_sym_alias] = ACTIONS(29), + [anon_sym_global] = ACTIONS(29), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1305), + [anon_sym_LPAREN] = ACTIONS(1875), + [anon_sym_ref] = ACTIONS(1877), + [anon_sym_LBRACE] = ACTIONS(1311), + [anon_sym_delegate] = ACTIONS(1313), + [anon_sym_async] = ACTIONS(1045), + [anon_sym_file] = ACTIONS(29), + [anon_sym_new] = ACTIONS(1879), + [anon_sym_where] = ACTIONS(29), + [anon_sym_notnull] = ACTIONS(29), + [anon_sym_unmanaged] = ACTIONS(29), + [anon_sym_checked] = ACTIONS(1317), + [anon_sym_BANG] = ACTIONS(1883), + [anon_sym_TILDE] = ACTIONS(1883), + [anon_sym_PLUS_PLUS] = ACTIONS(1883), + [anon_sym_DASH_DASH] = ACTIONS(1883), + [anon_sym_true] = ACTIONS(77), + [anon_sym_false] = ACTIONS(77), + [anon_sym_PLUS] = ACTIONS(1881), + [anon_sym_DASH] = ACTIONS(1881), + [anon_sym_STAR] = ACTIONS(1885), + [anon_sym_CARET] = ACTIONS(1883), + [anon_sym_AMP] = ACTIONS(1883), + [anon_sym_this] = ACTIONS(1321), + [anon_sym_scoped] = ACTIONS(85), + [anon_sym_base] = ACTIONS(1323), + [anon_sym_var] = ACTIONS(89), + [sym_predefined_type] = ACTIONS(91), + [anon_sym_unchecked] = ACTIONS(1317), + [anon_sym_yield] = ACTIONS(29), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(1887), + [anon_sym_when] = ACTIONS(29), + [anon_sym_await] = ACTIONS(1889), + [anon_sym_DOT_DOT] = ACTIONS(1891), + [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(1331), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(1333), + [anon_sym___reftype] = ACTIONS(1335), + [anon_sym___refvalue] = ACTIONS(1337), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_literal] = ACTIONS(143), + [anon_sym_DQUOTE] = ACTIONS(145), + [sym_verbatim_string_literal] = ACTIONS(143), + [aux_sym_preproc_if_token1] = ACTIONS(1339), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(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), }, [1483] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(5890), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2375), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(5450), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3656), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3080), - [sym_postfix_unary_expression] = STATE(3111), - [sym_prefix_unary_expression] = STATE(3111), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6157), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3080), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3111), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3080), - [sym_member_access_expression] = STATE(2484), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3111), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7362), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(3080), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3080), - [sym_typeof_expression] = STATE(3080), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2484), - [sym_literal] = STATE(3080), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2816), + [sym__name] = STATE(5896), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2362), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(4933), + [sym_non_lvalue_expression] = STATE(3495), + [sym_lvalue_expression] = STATE(3513), + [sym__expression_statement_expression] = STATE(3462), + [sym_assignment_expression] = STATE(3497), + [sym_binary_expression] = STATE(3462), + [sym_postfix_unary_expression] = STATE(3497), + [sym_prefix_unary_expression] = STATE(3497), + [sym__pointer_indirection_expression] = STATE(2815), + [sym_query_expression] = STATE(3462), + [sym_from_clause] = STATE(6132), + [sym_conditional_expression] = STATE(3462), + [sym_conditional_access_expression] = STATE(3462), + [sym_as_expression] = STATE(3462), + [sym_is_expression] = STATE(3462), + [sym_is_pattern_expression] = STATE(3462), + [sym_cast_expression] = STATE(3462), + [sym_checked_expression] = STATE(3462), + [sym_invocation_expression] = STATE(3497), + [sym_switch_expression] = STATE(3462), + [sym_await_expression] = STATE(3497), + [sym_throw_expression] = STATE(3462), + [sym_element_access_expression] = STATE(2815), + [sym_interpolated_string_expression] = STATE(3462), + [sym_member_access_expression] = STATE(2815), + [sym_object_creation_expression] = STATE(3497), + [sym_parenthesized_expression] = STATE(3497), + [sym__parenthesized_lvalue_expression] = STATE(2815), + [sym_lambda_expression] = STATE(3462), + [sym__lambda_expression_init] = STATE(7527), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3462), + [sym_anonymous_method_expression] = STATE(3462), + [sym_anonymous_object_creation_expression] = STATE(3462), + [sym_implicit_array_creation_expression] = STATE(3462), + [sym_implicit_object_creation_expression] = STATE(3462), + [sym_implicit_stackalloc_expression] = STATE(3462), + [sym_initializer_expression] = STATE(3462), + [sym_default_expression] = STATE(3462), + [sym_with_expression] = STATE(3462), + [sym_sizeof_expression] = STATE(3462), + [sym_typeof_expression] = STATE(3462), + [sym_makeref_expression] = STATE(3462), + [sym_ref_expression] = STATE(3462), + [sym_reftype_expression] = STATE(3462), + [sym_refvalue_expression] = STATE(3462), + [sym_stackalloc_expression] = STATE(3462), + [sym_range_expression] = STATE(3462), + [sym_tuple_expression] = STATE(2815), + [sym_literal] = STATE(3462), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3462), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(1483), [sym_preproc_endregion] = STATE(1483), [sym_preproc_line] = STATE(1483), @@ -292486,47 +292372,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(3067), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), [aux_sym__lambda_expression_init_repeat1] = STATE(3367), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1481), - [anon_sym_LPAREN] = ACTIONS(2177), - [anon_sym_ref] = ACTIONS(2179), - [anon_sym_LBRACE] = ACTIONS(1487), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1305), + [anon_sym_LPAREN] = ACTIONS(1875), + [anon_sym_ref] = ACTIONS(1877), + [anon_sym_LBRACE] = ACTIONS(1311), + [anon_sym_delegate] = ACTIONS(1313), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(2181), + [anon_sym_new] = ACTIONS(1879), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1067), - [anon_sym_BANG] = ACTIONS(2185), - [anon_sym_TILDE] = ACTIONS(2185), - [anon_sym_PLUS_PLUS] = ACTIONS(2185), - [anon_sym_DASH_DASH] = ACTIONS(2185), + [anon_sym_checked] = ACTIONS(1317), + [anon_sym_BANG] = ACTIONS(1883), + [anon_sym_TILDE] = ACTIONS(1883), + [anon_sym_PLUS_PLUS] = ACTIONS(1883), + [anon_sym_DASH_DASH] = ACTIONS(1883), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(2183), - [anon_sym_DASH] = ACTIONS(2183), - [anon_sym_STAR] = ACTIONS(2187), - [anon_sym_CARET] = ACTIONS(2185), - [anon_sym_AMP] = ACTIONS(2185), - [anon_sym_this] = ACTIONS(83), + [anon_sym_PLUS] = ACTIONS(1881), + [anon_sym_DASH] = ACTIONS(1881), + [anon_sym_STAR] = ACTIONS(1885), + [anon_sym_CARET] = ACTIONS(1883), + [anon_sym_AMP] = ACTIONS(1883), + [anon_sym_this] = ACTIONS(1321), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), + [anon_sym_base] = ACTIONS(1323), [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1067), + [anon_sym_unchecked] = ACTIONS(1317), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(2189), + [anon_sym_throw] = ACTIONS(1887), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2191), - [anon_sym_DOT_DOT] = ACTIONS(2193), + [anon_sym_await] = ACTIONS(1889), + [anon_sym_DOT_DOT] = ACTIONS(1891), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -292539,19 +292425,19 @@ static const uint16_t ts_parse_table[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(1331), [anon_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(1333), + [anon_sym___reftype] = ACTIONS(1335), + [anon_sym___refvalue] = ACTIONS(1337), [sym_null_literal] = ACTIONS(139), [anon_sym_SQUOTE] = ACTIONS(141), [sym_integer_literal] = ACTIONS(139), [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1089), + [aux_sym_preproc_if_token1] = ACTIONS(1339), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -292568,84 +292454,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [1484] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(5160), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2204), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(4564), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3461), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3080), - [sym_postfix_unary_expression] = STATE(3111), - [sym_prefix_unary_expression] = STATE(3111), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6154), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3080), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3111), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3080), - [sym_member_access_expression] = STATE(2484), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3111), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7547), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(3080), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3080), - [sym_typeof_expression] = STATE(3080), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2484), - [sym_literal] = STATE(3080), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2816), + [sym__name] = STATE(5896), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2362), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(4934), + [sym_non_lvalue_expression] = STATE(3495), + [sym_lvalue_expression] = STATE(3513), + [sym__expression_statement_expression] = STATE(3462), + [sym_assignment_expression] = STATE(3497), + [sym_binary_expression] = STATE(3462), + [sym_postfix_unary_expression] = STATE(3497), + [sym_prefix_unary_expression] = STATE(3497), + [sym__pointer_indirection_expression] = STATE(2815), + [sym_query_expression] = STATE(3462), + [sym_from_clause] = STATE(6132), + [sym_conditional_expression] = STATE(3462), + [sym_conditional_access_expression] = STATE(3462), + [sym_as_expression] = STATE(3462), + [sym_is_expression] = STATE(3462), + [sym_is_pattern_expression] = STATE(3462), + [sym_cast_expression] = STATE(3462), + [sym_checked_expression] = STATE(3462), + [sym_invocation_expression] = STATE(3497), + [sym_switch_expression] = STATE(3462), + [sym_await_expression] = STATE(3497), + [sym_throw_expression] = STATE(3462), + [sym_element_access_expression] = STATE(2815), + [sym_interpolated_string_expression] = STATE(3462), + [sym_member_access_expression] = STATE(2815), + [sym_object_creation_expression] = STATE(3497), + [sym_parenthesized_expression] = STATE(3497), + [sym__parenthesized_lvalue_expression] = STATE(2815), + [sym_lambda_expression] = STATE(3462), + [sym__lambda_expression_init] = STATE(7527), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3462), + [sym_anonymous_method_expression] = STATE(3462), + [sym_anonymous_object_creation_expression] = STATE(3462), + [sym_implicit_array_creation_expression] = STATE(3462), + [sym_implicit_object_creation_expression] = STATE(3462), + [sym_implicit_stackalloc_expression] = STATE(3462), + [sym_initializer_expression] = STATE(3462), + [sym_default_expression] = STATE(3462), + [sym_with_expression] = STATE(3462), + [sym_sizeof_expression] = STATE(3462), + [sym_typeof_expression] = STATE(3462), + [sym_makeref_expression] = STATE(3462), + [sym_ref_expression] = STATE(3462), + [sym_reftype_expression] = STATE(3462), + [sym_refvalue_expression] = STATE(3462), + [sym_stackalloc_expression] = STATE(3462), + [sym_range_expression] = STATE(3462), + [sym_tuple_expression] = STATE(2815), + [sym_literal] = STATE(3462), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3462), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(1484), [sym_preproc_endregion] = STATE(1484), [sym_preproc_line] = STATE(1484), @@ -292655,47 +292541,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(3067), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), [aux_sym__lambda_expression_init_repeat1] = STATE(3367), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1481), - [anon_sym_LPAREN] = ACTIONS(1497), - [anon_sym_ref] = ACTIONS(1499), - [anon_sym_LBRACE] = ACTIONS(1487), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1305), + [anon_sym_LPAREN] = ACTIONS(1875), + [anon_sym_ref] = ACTIONS(1877), + [anon_sym_LBRACE] = ACTIONS(1311), + [anon_sym_delegate] = ACTIONS(1313), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1501), + [anon_sym_new] = ACTIONS(1879), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = 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_checked] = ACTIONS(1317), + [anon_sym_BANG] = ACTIONS(1883), + [anon_sym_TILDE] = ACTIONS(1883), + [anon_sym_PLUS_PLUS] = ACTIONS(1883), + [anon_sym_DASH_DASH] = ACTIONS(1883), [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(1881), + [anon_sym_DASH] = ACTIONS(1881), + [anon_sym_STAR] = ACTIONS(1885), + [anon_sym_CARET] = ACTIONS(1883), + [anon_sym_AMP] = ACTIONS(1883), + [anon_sym_this] = ACTIONS(1321), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), + [anon_sym_base] = ACTIONS(1323), [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1067), + [anon_sym_unchecked] = ACTIONS(1317), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1503), + [anon_sym_throw] = ACTIONS(1887), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1505), - [anon_sym_DOT_DOT] = ACTIONS(1507), + [anon_sym_await] = ACTIONS(1889), + [anon_sym_DOT_DOT] = ACTIONS(1891), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -292708,19 +292594,19 @@ static const uint16_t ts_parse_table[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(1331), [anon_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(1333), + [anon_sym___reftype] = ACTIONS(1335), + [anon_sym___refvalue] = ACTIONS(1337), [sym_null_literal] = ACTIONS(139), [anon_sym_SQUOTE] = ACTIONS(141), [sym_integer_literal] = ACTIONS(139), [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1089), + [aux_sym_preproc_if_token1] = ACTIONS(1339), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -292737,84 +292623,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [1485] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(3184), - [sym__name] = STATE(5883), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2313), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2269), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(4950), - [sym_non_lvalue_expression] = STATE(4541), - [sym_lvalue_expression] = STATE(3527), - [sym__expression_statement_expression] = STATE(4529), - [sym_assignment_expression] = STATE(4543), - [sym_binary_expression] = STATE(4529), - [sym_postfix_unary_expression] = STATE(4543), - [sym_prefix_unary_expression] = STATE(4543), - [sym__pointer_indirection_expression] = STATE(3175), - [sym_query_expression] = STATE(4529), - [sym_from_clause] = STATE(6169), - [sym_conditional_expression] = STATE(4529), - [sym_conditional_access_expression] = STATE(4529), - [sym_as_expression] = STATE(4529), - [sym_is_expression] = STATE(4529), - [sym_is_pattern_expression] = STATE(4529), - [sym_cast_expression] = STATE(4529), - [sym_checked_expression] = STATE(4529), - [sym_invocation_expression] = STATE(4543), - [sym_switch_expression] = STATE(4529), - [sym_await_expression] = STATE(4543), - [sym_throw_expression] = STATE(4529), - [sym_element_access_expression] = STATE(3175), - [sym_interpolated_string_expression] = STATE(4529), - [sym_member_access_expression] = STATE(3175), - [sym_object_creation_expression] = STATE(4543), - [sym_parenthesized_expression] = STATE(4543), - [sym__parenthesized_lvalue_expression] = STATE(3175), - [sym_lambda_expression] = STATE(4529), - [sym__lambda_expression_init] = STATE(7337), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(4529), - [sym_anonymous_method_expression] = STATE(4529), - [sym_anonymous_object_creation_expression] = STATE(4529), - [sym_implicit_array_creation_expression] = STATE(4529), - [sym_implicit_object_creation_expression] = STATE(4529), - [sym_implicit_stackalloc_expression] = STATE(4529), - [sym_initializer_expression] = STATE(4529), - [sym_default_expression] = STATE(4529), - [sym_with_expression] = STATE(4529), - [sym_sizeof_expression] = STATE(4529), - [sym_typeof_expression] = STATE(4529), - [sym_makeref_expression] = STATE(4529), - [sym_ref_expression] = STATE(4529), - [sym_reftype_expression] = STATE(4529), - [sym_refvalue_expression] = STATE(4529), - [sym_stackalloc_expression] = STATE(4529), - [sym_range_expression] = STATE(4529), - [sym_tuple_expression] = STATE(3175), - [sym_literal] = STATE(4529), - [sym_character_literal] = STATE(4536), - [sym_string_literal] = STATE(4536), - [sym_raw_string_literal] = STATE(4536), - [sym_boolean_literal] = STATE(4536), - [sym_identifier] = STATE(2246), - [sym__reserved_identifier] = STATE(2240), - [sym_preproc_if_in_expression] = STATE(4529), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2816), + [sym__name] = STATE(5896), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2362), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(4935), + [sym_non_lvalue_expression] = STATE(3495), + [sym_lvalue_expression] = STATE(3513), + [sym__expression_statement_expression] = STATE(3462), + [sym_assignment_expression] = STATE(3497), + [sym_binary_expression] = STATE(3462), + [sym_postfix_unary_expression] = STATE(3497), + [sym_prefix_unary_expression] = STATE(3497), + [sym__pointer_indirection_expression] = STATE(2815), + [sym_query_expression] = STATE(3462), + [sym_from_clause] = STATE(6132), + [sym_conditional_expression] = STATE(3462), + [sym_conditional_access_expression] = STATE(3462), + [sym_as_expression] = STATE(3462), + [sym_is_expression] = STATE(3462), + [sym_is_pattern_expression] = STATE(3462), + [sym_cast_expression] = STATE(3462), + [sym_checked_expression] = STATE(3462), + [sym_invocation_expression] = STATE(3497), + [sym_switch_expression] = STATE(3462), + [sym_await_expression] = STATE(3497), + [sym_throw_expression] = STATE(3462), + [sym_element_access_expression] = STATE(2815), + [sym_interpolated_string_expression] = STATE(3462), + [sym_member_access_expression] = STATE(2815), + [sym_object_creation_expression] = STATE(3497), + [sym_parenthesized_expression] = STATE(3497), + [sym__parenthesized_lvalue_expression] = STATE(2815), + [sym_lambda_expression] = STATE(3462), + [sym__lambda_expression_init] = STATE(7527), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3462), + [sym_anonymous_method_expression] = STATE(3462), + [sym_anonymous_object_creation_expression] = STATE(3462), + [sym_implicit_array_creation_expression] = STATE(3462), + [sym_implicit_object_creation_expression] = STATE(3462), + [sym_implicit_stackalloc_expression] = STATE(3462), + [sym_initializer_expression] = STATE(3462), + [sym_default_expression] = STATE(3462), + [sym_with_expression] = STATE(3462), + [sym_sizeof_expression] = STATE(3462), + [sym_typeof_expression] = STATE(3462), + [sym_makeref_expression] = STATE(3462), + [sym_ref_expression] = STATE(3462), + [sym_reftype_expression] = STATE(3462), + [sym_refvalue_expression] = STATE(3462), + [sym_stackalloc_expression] = STATE(3462), + [sym_range_expression] = STATE(3462), + [sym_tuple_expression] = STATE(2815), + [sym_literal] = STATE(3462), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3462), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(1485), [sym_preproc_endregion] = STATE(1485), [sym_preproc_line] = STATE(1485), @@ -292824,166 +292710,166 @@ 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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3363), - [sym__identifier_token] = ACTIONS(1387), - [anon_sym_alias] = ACTIONS(1389), - [anon_sym_global] = ACTIONS(1389), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1391), - [anon_sym_LPAREN] = ACTIONS(1745), - [anon_sym_ref] = ACTIONS(1747), - [anon_sym_LBRACE] = ACTIONS(1397), - [anon_sym_delegate] = ACTIONS(1399), - [anon_sym_async] = ACTIONS(1047), - [anon_sym_file] = ACTIONS(1389), - [anon_sym_new] = ACTIONS(1467), - [anon_sym_where] = ACTIONS(1389), - [anon_sym_notnull] = ACTIONS(1389), - [anon_sym_unmanaged] = ACTIONS(1389), - [anon_sym_checked] = ACTIONS(1403), - [anon_sym_BANG] = ACTIONS(1751), - [anon_sym_TILDE] = ACTIONS(1751), - [anon_sym_PLUS_PLUS] = ACTIONS(1751), - [anon_sym_DASH_DASH] = ACTIONS(1751), - [anon_sym_true] = ACTIONS(1409), - [anon_sym_false] = ACTIONS(1409), - [anon_sym_PLUS] = ACTIONS(1749), - [anon_sym_DASH] = ACTIONS(1749), - [anon_sym_STAR] = ACTIONS(1473), - [anon_sym_CARET] = ACTIONS(1751), - [anon_sym_AMP] = ACTIONS(1751), - [anon_sym_this] = ACTIONS(1413), - [anon_sym_scoped] = ACTIONS(1415), - [anon_sym_base] = ACTIONS(1417), - [anon_sym_var] = ACTIONS(1419), - [sym_predefined_type] = ACTIONS(1421), - [anon_sym_unchecked] = ACTIONS(1403), - [anon_sym_yield] = ACTIONS(1389), - [anon_sym_default] = ACTIONS(1423), - [anon_sym_throw] = ACTIONS(1753), - [anon_sym_when] = ACTIONS(1389), - [anon_sym_await] = ACTIONS(1755), - [anon_sym_DOT_DOT] = ACTIONS(1757), - [anon_sym_from] = ACTIONS(1431), - [anon_sym_into] = ACTIONS(1389), - [anon_sym_join] = ACTIONS(1389), - [anon_sym_on] = ACTIONS(1389), - [anon_sym_equals] = ACTIONS(1389), - [anon_sym_let] = ACTIONS(1389), - [anon_sym_orderby] = ACTIONS(1389), - [anon_sym_ascending] = ACTIONS(1389), - [anon_sym_descending] = ACTIONS(1389), - [anon_sym_group] = ACTIONS(1389), - [anon_sym_by] = ACTIONS(1389), - [anon_sym_select] = ACTIONS(1389), - [anon_sym_stackalloc] = ACTIONS(1433), - [anon_sym_sizeof] = ACTIONS(1435), - [anon_sym_typeof] = ACTIONS(1437), - [anon_sym___makeref] = ACTIONS(1439), - [anon_sym___reftype] = ACTIONS(1441), - [anon_sym___refvalue] = ACTIONS(1443), - [sym_null_literal] = ACTIONS(1445), - [anon_sym_SQUOTE] = ACTIONS(1447), - [sym_integer_literal] = ACTIONS(1445), - [sym_real_literal] = ACTIONS(1449), - [anon_sym_DQUOTE] = ACTIONS(1451), - [sym_verbatim_string_literal] = ACTIONS(1449), - [aux_sym_preproc_if_token1] = ACTIONS(1453), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1455), - [sym_interpolation_verbatim_start] = ACTIONS(1457), - [sym_interpolation_raw_start] = ACTIONS(1459), - [sym_raw_string_start] = ACTIONS(1461), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [sym__identifier_token] = ACTIONS(25), + [anon_sym_alias] = ACTIONS(29), + [anon_sym_global] = ACTIONS(29), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1305), + [anon_sym_LPAREN] = ACTIONS(1875), + [anon_sym_ref] = ACTIONS(1877), + [anon_sym_LBRACE] = ACTIONS(1311), + [anon_sym_delegate] = ACTIONS(1313), + [anon_sym_async] = ACTIONS(1045), + [anon_sym_file] = ACTIONS(29), + [anon_sym_new] = ACTIONS(1879), + [anon_sym_where] = ACTIONS(29), + [anon_sym_notnull] = ACTIONS(29), + [anon_sym_unmanaged] = ACTIONS(29), + [anon_sym_checked] = ACTIONS(1317), + [anon_sym_BANG] = ACTIONS(1883), + [anon_sym_TILDE] = ACTIONS(1883), + [anon_sym_PLUS_PLUS] = ACTIONS(1883), + [anon_sym_DASH_DASH] = ACTIONS(1883), + [anon_sym_true] = ACTIONS(77), + [anon_sym_false] = ACTIONS(77), + [anon_sym_PLUS] = ACTIONS(1881), + [anon_sym_DASH] = ACTIONS(1881), + [anon_sym_STAR] = ACTIONS(1885), + [anon_sym_CARET] = ACTIONS(1883), + [anon_sym_AMP] = ACTIONS(1883), + [anon_sym_this] = ACTIONS(1321), + [anon_sym_scoped] = ACTIONS(85), + [anon_sym_base] = ACTIONS(1323), + [anon_sym_var] = ACTIONS(89), + [sym_predefined_type] = ACTIONS(91), + [anon_sym_unchecked] = ACTIONS(1317), + [anon_sym_yield] = ACTIONS(29), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(1887), + [anon_sym_when] = ACTIONS(29), + [anon_sym_await] = ACTIONS(1889), + [anon_sym_DOT_DOT] = ACTIONS(1891), + [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(1331), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(1333), + [anon_sym___reftype] = ACTIONS(1335), + [anon_sym___refvalue] = ACTIONS(1337), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_literal] = ACTIONS(143), + [anon_sym_DQUOTE] = ACTIONS(145), + [sym_verbatim_string_literal] = ACTIONS(143), + [aux_sym_preproc_if_token1] = ACTIONS(1339), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(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), }, [1486] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(3184), - [sym__name] = STATE(5883), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2313), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2269), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(4951), - [sym_non_lvalue_expression] = STATE(4541), - [sym_lvalue_expression] = STATE(3527), - [sym__expression_statement_expression] = STATE(4529), - [sym_assignment_expression] = STATE(4543), - [sym_binary_expression] = STATE(4529), - [sym_postfix_unary_expression] = STATE(4543), - [sym_prefix_unary_expression] = STATE(4543), - [sym__pointer_indirection_expression] = STATE(3175), - [sym_query_expression] = STATE(4529), - [sym_from_clause] = STATE(6169), - [sym_conditional_expression] = STATE(4529), - [sym_conditional_access_expression] = STATE(4529), - [sym_as_expression] = STATE(4529), - [sym_is_expression] = STATE(4529), - [sym_is_pattern_expression] = STATE(4529), - [sym_cast_expression] = STATE(4529), - [sym_checked_expression] = STATE(4529), - [sym_invocation_expression] = STATE(4543), - [sym_switch_expression] = STATE(4529), - [sym_await_expression] = STATE(4543), - [sym_throw_expression] = STATE(4529), - [sym_element_access_expression] = STATE(3175), - [sym_interpolated_string_expression] = STATE(4529), - [sym_member_access_expression] = STATE(3175), - [sym_object_creation_expression] = STATE(4543), - [sym_parenthesized_expression] = STATE(4543), - [sym__parenthesized_lvalue_expression] = STATE(3175), - [sym_lambda_expression] = STATE(4529), - [sym__lambda_expression_init] = STATE(7337), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(4529), - [sym_anonymous_method_expression] = STATE(4529), - [sym_anonymous_object_creation_expression] = STATE(4529), - [sym_implicit_array_creation_expression] = STATE(4529), - [sym_implicit_object_creation_expression] = STATE(4529), - [sym_implicit_stackalloc_expression] = STATE(4529), - [sym_initializer_expression] = STATE(4529), - [sym_default_expression] = STATE(4529), - [sym_with_expression] = STATE(4529), - [sym_sizeof_expression] = STATE(4529), - [sym_typeof_expression] = STATE(4529), - [sym_makeref_expression] = STATE(4529), - [sym_ref_expression] = STATE(4529), - [sym_reftype_expression] = STATE(4529), - [sym_refvalue_expression] = STATE(4529), - [sym_stackalloc_expression] = STATE(4529), - [sym_range_expression] = STATE(4529), - [sym_tuple_expression] = STATE(3175), - [sym_literal] = STATE(4529), - [sym_character_literal] = STATE(4536), - [sym_string_literal] = STATE(4536), - [sym_raw_string_literal] = STATE(4536), - [sym_boolean_literal] = STATE(4536), - [sym_identifier] = STATE(2246), - [sym__reserved_identifier] = STATE(2240), - [sym_preproc_if_in_expression] = STATE(4529), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2816), + [sym__name] = STATE(5896), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2362), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(4936), + [sym_non_lvalue_expression] = STATE(3495), + [sym_lvalue_expression] = STATE(3513), + [sym__expression_statement_expression] = STATE(3462), + [sym_assignment_expression] = STATE(3497), + [sym_binary_expression] = STATE(3462), + [sym_postfix_unary_expression] = STATE(3497), + [sym_prefix_unary_expression] = STATE(3497), + [sym__pointer_indirection_expression] = STATE(2815), + [sym_query_expression] = STATE(3462), + [sym_from_clause] = STATE(6132), + [sym_conditional_expression] = STATE(3462), + [sym_conditional_access_expression] = STATE(3462), + [sym_as_expression] = STATE(3462), + [sym_is_expression] = STATE(3462), + [sym_is_pattern_expression] = STATE(3462), + [sym_cast_expression] = STATE(3462), + [sym_checked_expression] = STATE(3462), + [sym_invocation_expression] = STATE(3497), + [sym_switch_expression] = STATE(3462), + [sym_await_expression] = STATE(3497), + [sym_throw_expression] = STATE(3462), + [sym_element_access_expression] = STATE(2815), + [sym_interpolated_string_expression] = STATE(3462), + [sym_member_access_expression] = STATE(2815), + [sym_object_creation_expression] = STATE(3497), + [sym_parenthesized_expression] = STATE(3497), + [sym__parenthesized_lvalue_expression] = STATE(2815), + [sym_lambda_expression] = STATE(3462), + [sym__lambda_expression_init] = STATE(7527), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3462), + [sym_anonymous_method_expression] = STATE(3462), + [sym_anonymous_object_creation_expression] = STATE(3462), + [sym_implicit_array_creation_expression] = STATE(3462), + [sym_implicit_object_creation_expression] = STATE(3462), + [sym_implicit_stackalloc_expression] = STATE(3462), + [sym_initializer_expression] = STATE(3462), + [sym_default_expression] = STATE(3462), + [sym_with_expression] = STATE(3462), + [sym_sizeof_expression] = STATE(3462), + [sym_typeof_expression] = STATE(3462), + [sym_makeref_expression] = STATE(3462), + [sym_ref_expression] = STATE(3462), + [sym_reftype_expression] = STATE(3462), + [sym_refvalue_expression] = STATE(3462), + [sym_stackalloc_expression] = STATE(3462), + [sym_range_expression] = STATE(3462), + [sym_tuple_expression] = STATE(2815), + [sym_literal] = STATE(3462), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3462), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(1486), [sym_preproc_endregion] = STATE(1486), [sym_preproc_line] = STATE(1486), @@ -292993,166 +292879,166 @@ 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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3363), - [sym__identifier_token] = ACTIONS(1387), - [anon_sym_alias] = ACTIONS(1389), - [anon_sym_global] = ACTIONS(1389), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1391), - [anon_sym_LPAREN] = ACTIONS(1745), - [anon_sym_ref] = ACTIONS(1747), - [anon_sym_LBRACE] = ACTIONS(1397), - [anon_sym_delegate] = ACTIONS(1399), - [anon_sym_async] = ACTIONS(1047), - [anon_sym_file] = ACTIONS(1389), - [anon_sym_new] = ACTIONS(1467), - [anon_sym_where] = ACTIONS(1389), - [anon_sym_notnull] = ACTIONS(1389), - [anon_sym_unmanaged] = ACTIONS(1389), - [anon_sym_checked] = ACTIONS(1403), - [anon_sym_BANG] = ACTIONS(1751), - [anon_sym_TILDE] = ACTIONS(1751), - [anon_sym_PLUS_PLUS] = ACTIONS(1751), - [anon_sym_DASH_DASH] = ACTIONS(1751), - [anon_sym_true] = ACTIONS(1409), - [anon_sym_false] = ACTIONS(1409), - [anon_sym_PLUS] = ACTIONS(1749), - [anon_sym_DASH] = ACTIONS(1749), - [anon_sym_STAR] = ACTIONS(1473), - [anon_sym_CARET] = ACTIONS(1751), - [anon_sym_AMP] = ACTIONS(1751), - [anon_sym_this] = ACTIONS(1413), - [anon_sym_scoped] = ACTIONS(1415), - [anon_sym_base] = ACTIONS(1417), - [anon_sym_var] = ACTIONS(1419), - [sym_predefined_type] = ACTIONS(1421), - [anon_sym_unchecked] = ACTIONS(1403), - [anon_sym_yield] = ACTIONS(1389), - [anon_sym_default] = ACTIONS(1423), - [anon_sym_throw] = ACTIONS(1753), - [anon_sym_when] = ACTIONS(1389), - [anon_sym_await] = ACTIONS(1755), - [anon_sym_DOT_DOT] = ACTIONS(1757), - [anon_sym_from] = ACTIONS(1431), - [anon_sym_into] = ACTIONS(1389), - [anon_sym_join] = ACTIONS(1389), - [anon_sym_on] = ACTIONS(1389), - [anon_sym_equals] = ACTIONS(1389), - [anon_sym_let] = ACTIONS(1389), - [anon_sym_orderby] = ACTIONS(1389), - [anon_sym_ascending] = ACTIONS(1389), - [anon_sym_descending] = ACTIONS(1389), - [anon_sym_group] = ACTIONS(1389), - [anon_sym_by] = ACTIONS(1389), - [anon_sym_select] = ACTIONS(1389), - [anon_sym_stackalloc] = ACTIONS(1433), - [anon_sym_sizeof] = ACTIONS(1435), - [anon_sym_typeof] = ACTIONS(1437), - [anon_sym___makeref] = ACTIONS(1439), - [anon_sym___reftype] = ACTIONS(1441), - [anon_sym___refvalue] = ACTIONS(1443), - [sym_null_literal] = ACTIONS(1445), - [anon_sym_SQUOTE] = ACTIONS(1447), - [sym_integer_literal] = ACTIONS(1445), - [sym_real_literal] = ACTIONS(1449), - [anon_sym_DQUOTE] = ACTIONS(1451), - [sym_verbatim_string_literal] = ACTIONS(1449), - [aux_sym_preproc_if_token1] = ACTIONS(1453), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1455), - [sym_interpolation_verbatim_start] = ACTIONS(1457), - [sym_interpolation_raw_start] = ACTIONS(1459), - [sym_raw_string_start] = ACTIONS(1461), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [sym__identifier_token] = ACTIONS(25), + [anon_sym_alias] = ACTIONS(29), + [anon_sym_global] = ACTIONS(29), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1305), + [anon_sym_LPAREN] = ACTIONS(1875), + [anon_sym_ref] = ACTIONS(1877), + [anon_sym_LBRACE] = ACTIONS(1311), + [anon_sym_delegate] = ACTIONS(1313), + [anon_sym_async] = ACTIONS(1045), + [anon_sym_file] = ACTIONS(29), + [anon_sym_new] = ACTIONS(1879), + [anon_sym_where] = ACTIONS(29), + [anon_sym_notnull] = ACTIONS(29), + [anon_sym_unmanaged] = ACTIONS(29), + [anon_sym_checked] = ACTIONS(1317), + [anon_sym_BANG] = ACTIONS(1883), + [anon_sym_TILDE] = ACTIONS(1883), + [anon_sym_PLUS_PLUS] = ACTIONS(1883), + [anon_sym_DASH_DASH] = ACTIONS(1883), + [anon_sym_true] = ACTIONS(77), + [anon_sym_false] = ACTIONS(77), + [anon_sym_PLUS] = ACTIONS(1881), + [anon_sym_DASH] = ACTIONS(1881), + [anon_sym_STAR] = ACTIONS(1885), + [anon_sym_CARET] = ACTIONS(1883), + [anon_sym_AMP] = ACTIONS(1883), + [anon_sym_this] = ACTIONS(1321), + [anon_sym_scoped] = ACTIONS(85), + [anon_sym_base] = ACTIONS(1323), + [anon_sym_var] = ACTIONS(89), + [sym_predefined_type] = ACTIONS(91), + [anon_sym_unchecked] = ACTIONS(1317), + [anon_sym_yield] = ACTIONS(29), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(1887), + [anon_sym_when] = ACTIONS(29), + [anon_sym_await] = ACTIONS(1889), + [anon_sym_DOT_DOT] = ACTIONS(1891), + [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(1331), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(1333), + [anon_sym___reftype] = ACTIONS(1335), + [anon_sym___refvalue] = ACTIONS(1337), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_literal] = ACTIONS(143), + [anon_sym_DQUOTE] = ACTIONS(145), + [sym_verbatim_string_literal] = ACTIONS(143), + [aux_sym_preproc_if_token1] = ACTIONS(1339), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(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), }, [1487] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2762), - [sym__name] = STATE(5910), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2204), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(4957), - [sym_non_lvalue_expression] = STATE(3438), - [sym_lvalue_expression] = STATE(3524), - [sym__expression_statement_expression] = STATE(3362), - [sym_assignment_expression] = STATE(3449), - [sym_binary_expression] = STATE(3362), - [sym_postfix_unary_expression] = STATE(3449), - [sym_prefix_unary_expression] = STATE(3449), - [sym__pointer_indirection_expression] = STATE(2747), - [sym_query_expression] = STATE(3362), - [sym_from_clause] = STATE(6174), - [sym_conditional_expression] = STATE(3362), - [sym_conditional_access_expression] = STATE(3362), - [sym_as_expression] = STATE(3362), - [sym_is_expression] = STATE(3362), - [sym_is_pattern_expression] = STATE(3362), - [sym_cast_expression] = STATE(3362), - [sym_checked_expression] = STATE(3362), - [sym_invocation_expression] = STATE(3449), - [sym_switch_expression] = STATE(3362), - [sym_await_expression] = STATE(3449), - [sym_throw_expression] = STATE(3362), - [sym_element_access_expression] = STATE(2747), - [sym_interpolated_string_expression] = STATE(3362), - [sym_member_access_expression] = STATE(2747), - [sym_object_creation_expression] = STATE(3449), - [sym_parenthesized_expression] = STATE(3449), - [sym__parenthesized_lvalue_expression] = STATE(2747), - [sym_lambda_expression] = STATE(3362), - [sym__lambda_expression_init] = STATE(7407), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3362), - [sym_anonymous_method_expression] = STATE(3362), - [sym_anonymous_object_creation_expression] = STATE(3362), - [sym_implicit_array_creation_expression] = STATE(3362), - [sym_implicit_object_creation_expression] = STATE(3362), - [sym_implicit_stackalloc_expression] = STATE(3362), - [sym_initializer_expression] = STATE(3362), - [sym_default_expression] = STATE(3362), - [sym_with_expression] = STATE(3362), - [sym_sizeof_expression] = STATE(3362), - [sym_typeof_expression] = STATE(3362), - [sym_makeref_expression] = STATE(3362), - [sym_ref_expression] = STATE(3362), - [sym_reftype_expression] = STATE(3362), - [sym_refvalue_expression] = STATE(3362), - [sym_stackalloc_expression] = STATE(3362), - [sym_range_expression] = STATE(3362), - [sym_tuple_expression] = STATE(2747), - [sym_literal] = STATE(3362), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3362), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2816), + [sym__name] = STATE(5896), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2362), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(4937), + [sym_non_lvalue_expression] = STATE(3495), + [sym_lvalue_expression] = STATE(3513), + [sym__expression_statement_expression] = STATE(3462), + [sym_assignment_expression] = STATE(3497), + [sym_binary_expression] = STATE(3462), + [sym_postfix_unary_expression] = STATE(3497), + [sym_prefix_unary_expression] = STATE(3497), + [sym__pointer_indirection_expression] = STATE(2815), + [sym_query_expression] = STATE(3462), + [sym_from_clause] = STATE(6132), + [sym_conditional_expression] = STATE(3462), + [sym_conditional_access_expression] = STATE(3462), + [sym_as_expression] = STATE(3462), + [sym_is_expression] = STATE(3462), + [sym_is_pattern_expression] = STATE(3462), + [sym_cast_expression] = STATE(3462), + [sym_checked_expression] = STATE(3462), + [sym_invocation_expression] = STATE(3497), + [sym_switch_expression] = STATE(3462), + [sym_await_expression] = STATE(3497), + [sym_throw_expression] = STATE(3462), + [sym_element_access_expression] = STATE(2815), + [sym_interpolated_string_expression] = STATE(3462), + [sym_member_access_expression] = STATE(2815), + [sym_object_creation_expression] = STATE(3497), + [sym_parenthesized_expression] = STATE(3497), + [sym__parenthesized_lvalue_expression] = STATE(2815), + [sym_lambda_expression] = STATE(3462), + [sym__lambda_expression_init] = STATE(7527), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3462), + [sym_anonymous_method_expression] = STATE(3462), + [sym_anonymous_object_creation_expression] = STATE(3462), + [sym_implicit_array_creation_expression] = STATE(3462), + [sym_implicit_object_creation_expression] = STATE(3462), + [sym_implicit_stackalloc_expression] = STATE(3462), + [sym_initializer_expression] = STATE(3462), + [sym_default_expression] = STATE(3462), + [sym_with_expression] = STATE(3462), + [sym_sizeof_expression] = STATE(3462), + [sym_typeof_expression] = STATE(3462), + [sym_makeref_expression] = STATE(3462), + [sym_ref_expression] = STATE(3462), + [sym_reftype_expression] = STATE(3462), + [sym_refvalue_expression] = STATE(3462), + [sym_stackalloc_expression] = STATE(3462), + [sym_range_expression] = STATE(3462), + [sym_tuple_expression] = STATE(2815), + [sym_literal] = STATE(3462), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3462), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(1487), [sym_preproc_endregion] = STATE(1487), [sym_preproc_line] = STATE(1487), @@ -293162,47 +293048,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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3385), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3367), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1307), - [anon_sym_LPAREN] = ACTIONS(1693), - [anon_sym_ref] = ACTIONS(1695), - [anon_sym_LBRACE] = ACTIONS(1313), - [anon_sym_delegate] = ACTIONS(1315), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1305), + [anon_sym_LPAREN] = ACTIONS(1875), + [anon_sym_ref] = ACTIONS(1877), + [anon_sym_LBRACE] = ACTIONS(1311), + [anon_sym_delegate] = ACTIONS(1313), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1697), + [anon_sym_new] = ACTIONS(1879), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1319), - [anon_sym_BANG] = ACTIONS(1701), - [anon_sym_TILDE] = ACTIONS(1701), - [anon_sym_PLUS_PLUS] = ACTIONS(1701), - [anon_sym_DASH_DASH] = ACTIONS(1701), + [anon_sym_checked] = ACTIONS(1317), + [anon_sym_BANG] = ACTIONS(1883), + [anon_sym_TILDE] = ACTIONS(1883), + [anon_sym_PLUS_PLUS] = ACTIONS(1883), + [anon_sym_DASH_DASH] = ACTIONS(1883), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1699), - [anon_sym_DASH] = ACTIONS(1699), - [anon_sym_STAR] = ACTIONS(1351), - [anon_sym_CARET] = ACTIONS(1701), - [anon_sym_AMP] = ACTIONS(1701), - [anon_sym_this] = ACTIONS(1323), + [anon_sym_PLUS] = ACTIONS(1881), + [anon_sym_DASH] = ACTIONS(1881), + [anon_sym_STAR] = ACTIONS(1885), + [anon_sym_CARET] = ACTIONS(1883), + [anon_sym_AMP] = ACTIONS(1883), + [anon_sym_this] = ACTIONS(1321), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1325), + [anon_sym_base] = ACTIONS(1323), [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1319), + [anon_sym_unchecked] = ACTIONS(1317), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1703), + [anon_sym_throw] = ACTIONS(1887), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1705), - [anon_sym_DOT_DOT] = ACTIONS(1707), + [anon_sym_await] = ACTIONS(1889), + [anon_sym_DOT_DOT] = ACTIONS(1891), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -293215,19 +293101,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1333), + [anon_sym_stackalloc] = ACTIONS(1331), [anon_sym_sizeof] = ACTIONS(129), [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(1335), - [anon_sym___reftype] = ACTIONS(1337), - [anon_sym___refvalue] = ACTIONS(1339), + [anon_sym___makeref] = ACTIONS(1333), + [anon_sym___reftype] = ACTIONS(1335), + [anon_sym___refvalue] = ACTIONS(1337), [sym_null_literal] = ACTIONS(139), [anon_sym_SQUOTE] = ACTIONS(141), [sym_integer_literal] = ACTIONS(139), [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1709), + [aux_sym_preproc_if_token1] = ACTIONS(1339), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -293244,84 +293130,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [1488] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(5160), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2204), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(4981), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3520), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3080), - [sym_postfix_unary_expression] = STATE(3111), - [sym_prefix_unary_expression] = STATE(3111), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6154), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3080), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3111), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3080), - [sym_member_access_expression] = STATE(2484), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3111), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7530), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(3080), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3080), - [sym_typeof_expression] = STATE(3080), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2484), - [sym_literal] = STATE(3080), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2901), + [sym__name] = STATE(5883), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2359), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(3914), + [sym_non_lvalue_expression] = STATE(3685), + [sym_lvalue_expression] = STATE(3073), + [sym__expression_statement_expression] = STATE(3836), + [sym_assignment_expression] = STATE(3689), + [sym_binary_expression] = STATE(3836), + [sym_postfix_unary_expression] = STATE(3689), + [sym_prefix_unary_expression] = STATE(3689), + [sym__pointer_indirection_expression] = STATE(2906), + [sym_query_expression] = STATE(3836), + [sym_from_clause] = STATE(6157), + [sym_conditional_expression] = STATE(3836), + [sym_conditional_access_expression] = STATE(3836), + [sym_as_expression] = STATE(3836), + [sym_is_expression] = STATE(3836), + [sym_is_pattern_expression] = STATE(3836), + [sym_cast_expression] = STATE(3836), + [sym_checked_expression] = STATE(3836), + [sym_invocation_expression] = STATE(3689), + [sym_switch_expression] = STATE(3836), + [sym_await_expression] = STATE(3689), + [sym_throw_expression] = STATE(3836), + [sym_element_access_expression] = STATE(2906), + [sym_interpolated_string_expression] = STATE(3836), + [sym_member_access_expression] = STATE(2906), + [sym_object_creation_expression] = STATE(3689), + [sym_parenthesized_expression] = STATE(3689), + [sym__parenthesized_lvalue_expression] = STATE(2906), + [sym_lambda_expression] = STATE(3836), + [sym__lambda_expression_init] = STATE(7460), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3836), + [sym_anonymous_method_expression] = STATE(3836), + [sym_anonymous_object_creation_expression] = STATE(3836), + [sym_implicit_array_creation_expression] = STATE(3836), + [sym_implicit_object_creation_expression] = STATE(3836), + [sym_implicit_stackalloc_expression] = STATE(3836), + [sym_initializer_expression] = STATE(3836), + [sym_default_expression] = STATE(3836), + [sym_with_expression] = STATE(3836), + [sym_sizeof_expression] = STATE(3836), + [sym_typeof_expression] = STATE(3836), + [sym_makeref_expression] = STATE(3836), + [sym_ref_expression] = STATE(3836), + [sym_reftype_expression] = STATE(3836), + [sym_refvalue_expression] = STATE(3836), + [sym_stackalloc_expression] = STATE(3836), + [sym_range_expression] = STATE(3836), + [sym_tuple_expression] = STATE(2906), + [sym_literal] = STATE(3836), + [sym_character_literal] = STATE(3843), + [sym_string_literal] = STATE(3843), + [sym_raw_string_literal] = STATE(3843), + [sym_boolean_literal] = STATE(3843), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3836), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(1488), [sym_preproc_endregion] = STATE(1488), [sym_preproc_line] = STATE(1488), @@ -293331,47 +293217,216 @@ 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(3067), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3477), + [sym__identifier_token] = ACTIONS(25), + [anon_sym_alias] = ACTIONS(29), + [anon_sym_global] = ACTIONS(29), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1655), + [anon_sym_LPAREN] = ACTIONS(2061), + [anon_sym_ref] = ACTIONS(2063), + [anon_sym_LBRACE] = ACTIONS(1661), + [anon_sym_delegate] = ACTIONS(1663), + [anon_sym_async] = ACTIONS(1045), + [anon_sym_file] = ACTIONS(29), + [anon_sym_new] = ACTIONS(1665), + [anon_sym_where] = ACTIONS(29), + [anon_sym_notnull] = ACTIONS(29), + [anon_sym_unmanaged] = ACTIONS(29), + [anon_sym_checked] = ACTIONS(1667), + [anon_sym_BANG] = ACTIONS(2067), + [anon_sym_TILDE] = ACTIONS(2067), + [anon_sym_PLUS_PLUS] = ACTIONS(2067), + [anon_sym_DASH_DASH] = ACTIONS(2067), + [anon_sym_true] = ACTIONS(1673), + [anon_sym_false] = ACTIONS(1673), + [anon_sym_PLUS] = ACTIONS(2065), + [anon_sym_DASH] = ACTIONS(2065), + [anon_sym_STAR] = ACTIONS(1675), + [anon_sym_CARET] = ACTIONS(2067), + [anon_sym_AMP] = ACTIONS(2067), + [anon_sym_this] = ACTIONS(1677), + [anon_sym_scoped] = ACTIONS(85), + [anon_sym_base] = ACTIONS(1679), + [anon_sym_var] = ACTIONS(89), + [sym_predefined_type] = ACTIONS(1681), + [anon_sym_unchecked] = ACTIONS(1667), + [anon_sym_yield] = ACTIONS(29), + [anon_sym_default] = ACTIONS(1683), + [anon_sym_throw] = ACTIONS(2069), + [anon_sym_when] = ACTIONS(29), + [anon_sym_await] = ACTIONS(2071), + [anon_sym_DOT_DOT] = ACTIONS(2073), + [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(1691), + [anon_sym_sizeof] = ACTIONS(1693), + [anon_sym_typeof] = ACTIONS(1695), + [anon_sym___makeref] = ACTIONS(1697), + [anon_sym___reftype] = ACTIONS(1699), + [anon_sym___refvalue] = ACTIONS(1701), + [sym_null_literal] = ACTIONS(1703), + [anon_sym_SQUOTE] = ACTIONS(1705), + [sym_integer_literal] = ACTIONS(1703), + [sym_real_literal] = ACTIONS(1707), + [anon_sym_DQUOTE] = ACTIONS(1709), + [sym_verbatim_string_literal] = ACTIONS(1707), + [aux_sym_preproc_if_token1] = ACTIONS(1711), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + [sym_interpolation_regular_start] = ACTIONS(1713), + [sym_interpolation_verbatim_start] = ACTIONS(1715), + [sym_interpolation_raw_start] = ACTIONS(1717), + [sym_raw_string_start] = ACTIONS(1719), + }, + [1489] = { + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2816), + [sym__name] = STATE(5896), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2362), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(3214), + [sym_non_lvalue_expression] = STATE(3495), + [sym_lvalue_expression] = STATE(3513), + [sym__expression_statement_expression] = STATE(3462), + [sym_assignment_expression] = STATE(3497), + [sym_binary_expression] = STATE(3462), + [sym_postfix_unary_expression] = STATE(3497), + [sym_prefix_unary_expression] = STATE(3497), + [sym__pointer_indirection_expression] = STATE(2815), + [sym_query_expression] = STATE(3462), + [sym_from_clause] = STATE(6132), + [sym_conditional_expression] = STATE(3462), + [sym_conditional_access_expression] = STATE(3462), + [sym_as_expression] = STATE(3462), + [sym_is_expression] = STATE(3462), + [sym_is_pattern_expression] = STATE(3462), + [sym_cast_expression] = STATE(3462), + [sym_checked_expression] = STATE(3462), + [sym_invocation_expression] = STATE(3497), + [sym_switch_expression] = STATE(3462), + [sym_await_expression] = STATE(3497), + [sym_throw_expression] = STATE(3462), + [sym_element_access_expression] = STATE(2815), + [sym_interpolated_string_expression] = STATE(3462), + [sym_member_access_expression] = STATE(2815), + [sym_object_creation_expression] = STATE(3497), + [sym_parenthesized_expression] = STATE(3497), + [sym__parenthesized_lvalue_expression] = STATE(2815), + [sym_lambda_expression] = STATE(3462), + [sym__lambda_expression_init] = STATE(7527), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3462), + [sym_anonymous_method_expression] = STATE(3462), + [sym_anonymous_object_creation_expression] = STATE(3462), + [sym_implicit_array_creation_expression] = STATE(3462), + [sym_implicit_object_creation_expression] = STATE(3462), + [sym_implicit_stackalloc_expression] = STATE(3462), + [sym_initializer_expression] = STATE(3462), + [sym_default_expression] = STATE(3462), + [sym_with_expression] = STATE(3462), + [sym_sizeof_expression] = STATE(3462), + [sym_typeof_expression] = STATE(3462), + [sym_makeref_expression] = STATE(3462), + [sym_ref_expression] = STATE(3462), + [sym_reftype_expression] = STATE(3462), + [sym_refvalue_expression] = STATE(3462), + [sym_stackalloc_expression] = STATE(3462), + [sym_range_expression] = STATE(3462), + [sym_tuple_expression] = STATE(2815), + [sym_literal] = STATE(3462), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3462), + [sym_preproc_if_in_attribute_list] = STATE(5583), + [sym_preproc_region] = STATE(1489), + [sym_preproc_endregion] = STATE(1489), + [sym_preproc_line] = STATE(1489), + [sym_preproc_pragma] = STATE(1489), + [sym_preproc_nullable] = STATE(1489), + [sym_preproc_error] = STATE(1489), + [sym_preproc_warning] = STATE(1489), + [sym_preproc_define] = STATE(1489), + [sym_preproc_undef] = STATE(1489), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), [aux_sym__lambda_expression_init_repeat1] = STATE(3367), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1481), - [anon_sym_LPAREN] = ACTIONS(43), - [anon_sym_ref] = ACTIONS(661), - [anon_sym_LBRACE] = ACTIONS(1487), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1305), + [anon_sym_LPAREN] = ACTIONS(1875), + [anon_sym_ref] = ACTIONS(1877), + [anon_sym_LBRACE] = ACTIONS(1311), + [anon_sym_delegate] = ACTIONS(1313), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1061), + [anon_sym_new] = ACTIONS(1879), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = 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_checked] = ACTIONS(1317), + [anon_sym_BANG] = ACTIONS(1883), + [anon_sym_TILDE] = ACTIONS(1883), + [anon_sym_PLUS_PLUS] = ACTIONS(1883), + [anon_sym_DASH_DASH] = ACTIONS(1883), [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_this] = ACTIONS(83), + [anon_sym_PLUS] = ACTIONS(1881), + [anon_sym_DASH] = ACTIONS(1881), + [anon_sym_STAR] = ACTIONS(1885), + [anon_sym_CARET] = ACTIONS(1883), + [anon_sym_AMP] = ACTIONS(1883), + [anon_sym_this] = ACTIONS(1321), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), + [anon_sym_base] = ACTIONS(1323), [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1067), + [anon_sym_unchecked] = ACTIONS(1317), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1589), + [anon_sym_throw] = ACTIONS(1887), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1591), - [anon_sym_DOT_DOT] = ACTIONS(123), + [anon_sym_await] = ACTIONS(1889), + [anon_sym_DOT_DOT] = ACTIONS(1891), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -293384,19 +293439,19 @@ static const uint16_t ts_parse_table[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(1331), [anon_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(1333), + [anon_sym___reftype] = ACTIONS(1335), + [anon_sym___refvalue] = ACTIONS(1337), [sym_null_literal] = ACTIONS(139), [anon_sym_SQUOTE] = ACTIONS(141), [sym_integer_literal] = ACTIONS(139), [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1089), + [aux_sym_preproc_if_token1] = ACTIONS(1339), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -293412,254 +293467,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), }, - [1489] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(3184), - [sym__name] = STATE(5883), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2313), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2269), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(4954), - [sym_non_lvalue_expression] = STATE(4541), - [sym_lvalue_expression] = STATE(3527), - [sym__expression_statement_expression] = STATE(4529), - [sym_assignment_expression] = STATE(4543), - [sym_binary_expression] = STATE(4529), - [sym_postfix_unary_expression] = STATE(4543), - [sym_prefix_unary_expression] = STATE(4543), - [sym__pointer_indirection_expression] = STATE(3175), - [sym_query_expression] = STATE(4529), - [sym_from_clause] = STATE(6169), - [sym_conditional_expression] = STATE(4529), - [sym_conditional_access_expression] = STATE(4529), - [sym_as_expression] = STATE(4529), - [sym_is_expression] = STATE(4529), - [sym_is_pattern_expression] = STATE(4529), - [sym_cast_expression] = STATE(4529), - [sym_checked_expression] = STATE(4529), - [sym_invocation_expression] = STATE(4543), - [sym_switch_expression] = STATE(4529), - [sym_await_expression] = STATE(4543), - [sym_throw_expression] = STATE(4529), - [sym_element_access_expression] = STATE(3175), - [sym_interpolated_string_expression] = STATE(4529), - [sym_member_access_expression] = STATE(3175), - [sym_object_creation_expression] = STATE(4543), - [sym_parenthesized_expression] = STATE(4543), - [sym__parenthesized_lvalue_expression] = STATE(3175), - [sym_lambda_expression] = STATE(4529), - [sym__lambda_expression_init] = STATE(7337), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(4529), - [sym_anonymous_method_expression] = STATE(4529), - [sym_anonymous_object_creation_expression] = STATE(4529), - [sym_implicit_array_creation_expression] = STATE(4529), - [sym_implicit_object_creation_expression] = STATE(4529), - [sym_implicit_stackalloc_expression] = STATE(4529), - [sym_initializer_expression] = STATE(4529), - [sym_default_expression] = STATE(4529), - [sym_with_expression] = STATE(4529), - [sym_sizeof_expression] = STATE(4529), - [sym_typeof_expression] = STATE(4529), - [sym_makeref_expression] = STATE(4529), - [sym_ref_expression] = STATE(4529), - [sym_reftype_expression] = STATE(4529), - [sym_refvalue_expression] = STATE(4529), - [sym_stackalloc_expression] = STATE(4529), - [sym_range_expression] = STATE(4529), - [sym_tuple_expression] = STATE(3175), - [sym_literal] = STATE(4529), - [sym_character_literal] = STATE(4536), - [sym_string_literal] = STATE(4536), - [sym_raw_string_literal] = STATE(4536), - [sym_boolean_literal] = STATE(4536), - [sym_identifier] = STATE(2246), - [sym__reserved_identifier] = STATE(2240), - [sym_preproc_if_in_expression] = STATE(4529), - [sym_preproc_if_in_attribute_list] = STATE(5576), - [sym_preproc_region] = STATE(1489), - [sym_preproc_endregion] = STATE(1489), - [sym_preproc_line] = STATE(1489), - [sym_preproc_pragma] = STATE(1489), - [sym_preproc_nullable] = STATE(1489), - [sym_preproc_error] = STATE(1489), - [sym_preproc_warning] = STATE(1489), - [sym_preproc_define] = STATE(1489), - [sym_preproc_undef] = STATE(1489), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3363), - [sym__identifier_token] = ACTIONS(1387), - [anon_sym_alias] = ACTIONS(1389), - [anon_sym_global] = ACTIONS(1389), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1391), - [anon_sym_LPAREN] = ACTIONS(1745), - [anon_sym_ref] = ACTIONS(1747), - [anon_sym_LBRACE] = ACTIONS(1397), - [anon_sym_delegate] = ACTIONS(1399), - [anon_sym_async] = ACTIONS(1047), - [anon_sym_file] = ACTIONS(1389), - [anon_sym_new] = ACTIONS(1467), - [anon_sym_where] = ACTIONS(1389), - [anon_sym_notnull] = ACTIONS(1389), - [anon_sym_unmanaged] = ACTIONS(1389), - [anon_sym_checked] = ACTIONS(1403), - [anon_sym_BANG] = ACTIONS(1751), - [anon_sym_TILDE] = ACTIONS(1751), - [anon_sym_PLUS_PLUS] = ACTIONS(1751), - [anon_sym_DASH_DASH] = ACTIONS(1751), - [anon_sym_true] = ACTIONS(1409), - [anon_sym_false] = ACTIONS(1409), - [anon_sym_PLUS] = ACTIONS(1749), - [anon_sym_DASH] = ACTIONS(1749), - [anon_sym_STAR] = ACTIONS(1473), - [anon_sym_CARET] = ACTIONS(1751), - [anon_sym_AMP] = ACTIONS(1751), - [anon_sym_this] = ACTIONS(1413), - [anon_sym_scoped] = ACTIONS(1415), - [anon_sym_base] = ACTIONS(1417), - [anon_sym_var] = ACTIONS(1419), - [sym_predefined_type] = ACTIONS(1421), - [anon_sym_unchecked] = ACTIONS(1403), - [anon_sym_yield] = ACTIONS(1389), - [anon_sym_default] = ACTIONS(1423), - [anon_sym_throw] = ACTIONS(1753), - [anon_sym_when] = ACTIONS(1389), - [anon_sym_await] = ACTIONS(1755), - [anon_sym_DOT_DOT] = ACTIONS(1757), - [anon_sym_from] = ACTIONS(1431), - [anon_sym_into] = ACTIONS(1389), - [anon_sym_join] = ACTIONS(1389), - [anon_sym_on] = ACTIONS(1389), - [anon_sym_equals] = ACTIONS(1389), - [anon_sym_let] = ACTIONS(1389), - [anon_sym_orderby] = ACTIONS(1389), - [anon_sym_ascending] = ACTIONS(1389), - [anon_sym_descending] = ACTIONS(1389), - [anon_sym_group] = ACTIONS(1389), - [anon_sym_by] = ACTIONS(1389), - [anon_sym_select] = ACTIONS(1389), - [anon_sym_stackalloc] = ACTIONS(1433), - [anon_sym_sizeof] = ACTIONS(1435), - [anon_sym_typeof] = ACTIONS(1437), - [anon_sym___makeref] = ACTIONS(1439), - [anon_sym___reftype] = ACTIONS(1441), - [anon_sym___refvalue] = ACTIONS(1443), - [sym_null_literal] = ACTIONS(1445), - [anon_sym_SQUOTE] = ACTIONS(1447), - [sym_integer_literal] = ACTIONS(1445), - [sym_real_literal] = ACTIONS(1449), - [anon_sym_DQUOTE] = ACTIONS(1451), - [sym_verbatim_string_literal] = ACTIONS(1449), - [aux_sym_preproc_if_token1] = ACTIONS(1453), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1455), - [sym_interpolation_verbatim_start] = ACTIONS(1457), - [sym_interpolation_raw_start] = ACTIONS(1459), - [sym_raw_string_start] = ACTIONS(1461), - }, [1490] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(3184), - [sym__name] = STATE(5883), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2313), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2269), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(4958), - [sym_non_lvalue_expression] = STATE(4541), - [sym_lvalue_expression] = STATE(3527), - [sym__expression_statement_expression] = STATE(4529), - [sym_assignment_expression] = STATE(4543), - [sym_binary_expression] = STATE(4529), - [sym_postfix_unary_expression] = STATE(4543), - [sym_prefix_unary_expression] = STATE(4543), - [sym__pointer_indirection_expression] = STATE(3175), - [sym_query_expression] = STATE(4529), - [sym_from_clause] = STATE(6169), - [sym_conditional_expression] = STATE(4529), - [sym_conditional_access_expression] = STATE(4529), - [sym_as_expression] = STATE(4529), - [sym_is_expression] = STATE(4529), - [sym_is_pattern_expression] = STATE(4529), - [sym_cast_expression] = STATE(4529), - [sym_checked_expression] = STATE(4529), - [sym_invocation_expression] = STATE(4543), - [sym_switch_expression] = STATE(4529), - [sym_await_expression] = STATE(4543), - [sym_throw_expression] = STATE(4529), - [sym_element_access_expression] = STATE(3175), - [sym_interpolated_string_expression] = STATE(4529), - [sym_member_access_expression] = STATE(3175), - [sym_object_creation_expression] = STATE(4543), - [sym_parenthesized_expression] = STATE(4543), - [sym__parenthesized_lvalue_expression] = STATE(3175), - [sym_lambda_expression] = STATE(4529), - [sym__lambda_expression_init] = STATE(7337), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(4529), - [sym_anonymous_method_expression] = STATE(4529), - [sym_anonymous_object_creation_expression] = STATE(4529), - [sym_implicit_array_creation_expression] = STATE(4529), - [sym_implicit_object_creation_expression] = STATE(4529), - [sym_implicit_stackalloc_expression] = STATE(4529), - [sym_initializer_expression] = STATE(4529), - [sym_default_expression] = STATE(4529), - [sym_with_expression] = STATE(4529), - [sym_sizeof_expression] = STATE(4529), - [sym_typeof_expression] = STATE(4529), - [sym_makeref_expression] = STATE(4529), - [sym_ref_expression] = STATE(4529), - [sym_reftype_expression] = STATE(4529), - [sym_refvalue_expression] = STATE(4529), - [sym_stackalloc_expression] = STATE(4529), - [sym_range_expression] = STATE(4529), - [sym_tuple_expression] = STATE(3175), - [sym_literal] = STATE(4529), - [sym_character_literal] = STATE(4536), - [sym_string_literal] = STATE(4536), - [sym_raw_string_literal] = STATE(4536), - [sym_boolean_literal] = STATE(4536), - [sym_identifier] = STATE(2246), - [sym__reserved_identifier] = STATE(2240), - [sym_preproc_if_in_expression] = STATE(4529), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2816), + [sym__name] = STATE(5896), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2362), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(4940), + [sym_non_lvalue_expression] = STATE(3495), + [sym_lvalue_expression] = STATE(3513), + [sym__expression_statement_expression] = STATE(3462), + [sym_assignment_expression] = STATE(3497), + [sym_binary_expression] = STATE(3462), + [sym_postfix_unary_expression] = STATE(3497), + [sym_prefix_unary_expression] = STATE(3497), + [sym__pointer_indirection_expression] = STATE(2815), + [sym_query_expression] = STATE(3462), + [sym_from_clause] = STATE(6132), + [sym_conditional_expression] = STATE(3462), + [sym_conditional_access_expression] = STATE(3462), + [sym_as_expression] = STATE(3462), + [sym_is_expression] = STATE(3462), + [sym_is_pattern_expression] = STATE(3462), + [sym_cast_expression] = STATE(3462), + [sym_checked_expression] = STATE(3462), + [sym_invocation_expression] = STATE(3497), + [sym_switch_expression] = STATE(3462), + [sym_await_expression] = STATE(3497), + [sym_throw_expression] = STATE(3462), + [sym_element_access_expression] = STATE(2815), + [sym_interpolated_string_expression] = STATE(3462), + [sym_member_access_expression] = STATE(2815), + [sym_object_creation_expression] = STATE(3497), + [sym_parenthesized_expression] = STATE(3497), + [sym__parenthesized_lvalue_expression] = STATE(2815), + [sym_lambda_expression] = STATE(3462), + [sym__lambda_expression_init] = STATE(7527), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3462), + [sym_anonymous_method_expression] = STATE(3462), + [sym_anonymous_object_creation_expression] = STATE(3462), + [sym_implicit_array_creation_expression] = STATE(3462), + [sym_implicit_object_creation_expression] = STATE(3462), + [sym_implicit_stackalloc_expression] = STATE(3462), + [sym_initializer_expression] = STATE(3462), + [sym_default_expression] = STATE(3462), + [sym_with_expression] = STATE(3462), + [sym_sizeof_expression] = STATE(3462), + [sym_typeof_expression] = STATE(3462), + [sym_makeref_expression] = STATE(3462), + [sym_ref_expression] = STATE(3462), + [sym_reftype_expression] = STATE(3462), + [sym_refvalue_expression] = STATE(3462), + [sym_stackalloc_expression] = STATE(3462), + [sym_range_expression] = STATE(3462), + [sym_tuple_expression] = STATE(2815), + [sym_literal] = STATE(3462), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3462), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(1490), [sym_preproc_endregion] = STATE(1490), [sym_preproc_line] = STATE(1490), @@ -293669,166 +293555,166 @@ 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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3363), - [sym__identifier_token] = ACTIONS(1387), - [anon_sym_alias] = ACTIONS(1389), - [anon_sym_global] = ACTIONS(1389), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1391), - [anon_sym_LPAREN] = ACTIONS(1745), - [anon_sym_ref] = ACTIONS(1747), - [anon_sym_LBRACE] = ACTIONS(1397), - [anon_sym_delegate] = ACTIONS(1399), - [anon_sym_async] = ACTIONS(1047), - [anon_sym_file] = ACTIONS(1389), - [anon_sym_new] = ACTIONS(1467), - [anon_sym_where] = ACTIONS(1389), - [anon_sym_notnull] = ACTIONS(1389), - [anon_sym_unmanaged] = ACTIONS(1389), - [anon_sym_checked] = ACTIONS(1403), - [anon_sym_BANG] = ACTIONS(1751), - [anon_sym_TILDE] = ACTIONS(1751), - [anon_sym_PLUS_PLUS] = ACTIONS(1751), - [anon_sym_DASH_DASH] = ACTIONS(1751), - [anon_sym_true] = ACTIONS(1409), - [anon_sym_false] = ACTIONS(1409), - [anon_sym_PLUS] = ACTIONS(1749), - [anon_sym_DASH] = ACTIONS(1749), - [anon_sym_STAR] = ACTIONS(1473), - [anon_sym_CARET] = ACTIONS(1751), - [anon_sym_AMP] = ACTIONS(1751), - [anon_sym_this] = ACTIONS(1413), - [anon_sym_scoped] = ACTIONS(1415), - [anon_sym_base] = ACTIONS(1417), - [anon_sym_var] = ACTIONS(1419), - [sym_predefined_type] = ACTIONS(1421), - [anon_sym_unchecked] = ACTIONS(1403), - [anon_sym_yield] = ACTIONS(1389), - [anon_sym_default] = ACTIONS(1423), - [anon_sym_throw] = ACTIONS(1753), - [anon_sym_when] = ACTIONS(1389), - [anon_sym_await] = ACTIONS(1755), - [anon_sym_DOT_DOT] = ACTIONS(1757), - [anon_sym_from] = ACTIONS(1431), - [anon_sym_into] = ACTIONS(1389), - [anon_sym_join] = ACTIONS(1389), - [anon_sym_on] = ACTIONS(1389), - [anon_sym_equals] = ACTIONS(1389), - [anon_sym_let] = ACTIONS(1389), - [anon_sym_orderby] = ACTIONS(1389), - [anon_sym_ascending] = ACTIONS(1389), - [anon_sym_descending] = ACTIONS(1389), - [anon_sym_group] = ACTIONS(1389), - [anon_sym_by] = ACTIONS(1389), - [anon_sym_select] = ACTIONS(1389), - [anon_sym_stackalloc] = ACTIONS(1433), - [anon_sym_sizeof] = ACTIONS(1435), - [anon_sym_typeof] = ACTIONS(1437), - [anon_sym___makeref] = ACTIONS(1439), - [anon_sym___reftype] = ACTIONS(1441), - [anon_sym___refvalue] = ACTIONS(1443), - [sym_null_literal] = ACTIONS(1445), - [anon_sym_SQUOTE] = ACTIONS(1447), - [sym_integer_literal] = ACTIONS(1445), - [sym_real_literal] = ACTIONS(1449), - [anon_sym_DQUOTE] = ACTIONS(1451), - [sym_verbatim_string_literal] = ACTIONS(1449), - [aux_sym_preproc_if_token1] = ACTIONS(1453), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1455), - [sym_interpolation_verbatim_start] = ACTIONS(1457), - [sym_interpolation_raw_start] = ACTIONS(1459), - [sym_raw_string_start] = ACTIONS(1461), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [sym__identifier_token] = ACTIONS(25), + [anon_sym_alias] = ACTIONS(29), + [anon_sym_global] = ACTIONS(29), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1305), + [anon_sym_LPAREN] = ACTIONS(1875), + [anon_sym_ref] = ACTIONS(1877), + [anon_sym_LBRACE] = ACTIONS(1311), + [anon_sym_delegate] = ACTIONS(1313), + [anon_sym_async] = ACTIONS(1045), + [anon_sym_file] = ACTIONS(29), + [anon_sym_new] = ACTIONS(1879), + [anon_sym_where] = ACTIONS(29), + [anon_sym_notnull] = ACTIONS(29), + [anon_sym_unmanaged] = ACTIONS(29), + [anon_sym_checked] = ACTIONS(1317), + [anon_sym_BANG] = ACTIONS(1883), + [anon_sym_TILDE] = ACTIONS(1883), + [anon_sym_PLUS_PLUS] = ACTIONS(1883), + [anon_sym_DASH_DASH] = ACTIONS(1883), + [anon_sym_true] = ACTIONS(77), + [anon_sym_false] = ACTIONS(77), + [anon_sym_PLUS] = ACTIONS(1881), + [anon_sym_DASH] = ACTIONS(1881), + [anon_sym_STAR] = ACTIONS(1885), + [anon_sym_CARET] = ACTIONS(1883), + [anon_sym_AMP] = ACTIONS(1883), + [anon_sym_this] = ACTIONS(1321), + [anon_sym_scoped] = ACTIONS(85), + [anon_sym_base] = ACTIONS(1323), + [anon_sym_var] = ACTIONS(89), + [sym_predefined_type] = ACTIONS(91), + [anon_sym_unchecked] = ACTIONS(1317), + [anon_sym_yield] = ACTIONS(29), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(1887), + [anon_sym_when] = ACTIONS(29), + [anon_sym_await] = ACTIONS(1889), + [anon_sym_DOT_DOT] = ACTIONS(1891), + [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(1331), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(1333), + [anon_sym___reftype] = ACTIONS(1335), + [anon_sym___refvalue] = ACTIONS(1337), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_literal] = ACTIONS(143), + [anon_sym_DQUOTE] = ACTIONS(145), + [sym_verbatim_string_literal] = ACTIONS(143), + [aux_sym_preproc_if_token1] = ACTIONS(1339), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(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), }, [1491] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(3184), - [sym__name] = STATE(5883), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2313), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2269), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(4960), - [sym_non_lvalue_expression] = STATE(4541), - [sym_lvalue_expression] = STATE(3527), - [sym__expression_statement_expression] = STATE(4529), - [sym_assignment_expression] = STATE(4543), - [sym_binary_expression] = STATE(4529), - [sym_postfix_unary_expression] = STATE(4543), - [sym_prefix_unary_expression] = STATE(4543), - [sym__pointer_indirection_expression] = STATE(3175), - [sym_query_expression] = STATE(4529), - [sym_from_clause] = STATE(6169), - [sym_conditional_expression] = STATE(4529), - [sym_conditional_access_expression] = STATE(4529), - [sym_as_expression] = STATE(4529), - [sym_is_expression] = STATE(4529), - [sym_is_pattern_expression] = STATE(4529), - [sym_cast_expression] = STATE(4529), - [sym_checked_expression] = STATE(4529), - [sym_invocation_expression] = STATE(4543), - [sym_switch_expression] = STATE(4529), - [sym_await_expression] = STATE(4543), - [sym_throw_expression] = STATE(4529), - [sym_element_access_expression] = STATE(3175), - [sym_interpolated_string_expression] = STATE(4529), - [sym_member_access_expression] = STATE(3175), - [sym_object_creation_expression] = STATE(4543), - [sym_parenthesized_expression] = STATE(4543), - [sym__parenthesized_lvalue_expression] = STATE(3175), - [sym_lambda_expression] = STATE(4529), - [sym__lambda_expression_init] = STATE(7337), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(4529), - [sym_anonymous_method_expression] = STATE(4529), - [sym_anonymous_object_creation_expression] = STATE(4529), - [sym_implicit_array_creation_expression] = STATE(4529), - [sym_implicit_object_creation_expression] = STATE(4529), - [sym_implicit_stackalloc_expression] = STATE(4529), - [sym_initializer_expression] = STATE(4529), - [sym_default_expression] = STATE(4529), - [sym_with_expression] = STATE(4529), - [sym_sizeof_expression] = STATE(4529), - [sym_typeof_expression] = STATE(4529), - [sym_makeref_expression] = STATE(4529), - [sym_ref_expression] = STATE(4529), - [sym_reftype_expression] = STATE(4529), - [sym_refvalue_expression] = STATE(4529), - [sym_stackalloc_expression] = STATE(4529), - [sym_range_expression] = STATE(4529), - [sym_tuple_expression] = STATE(3175), - [sym_literal] = STATE(4529), - [sym_character_literal] = STATE(4536), - [sym_string_literal] = STATE(4536), - [sym_raw_string_literal] = STATE(4536), - [sym_boolean_literal] = STATE(4536), - [sym_identifier] = STATE(2246), - [sym__reserved_identifier] = STATE(2240), - [sym_preproc_if_in_expression] = STATE(4529), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2816), + [sym__name] = STATE(5896), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2362), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(3195), + [sym_non_lvalue_expression] = STATE(3495), + [sym_lvalue_expression] = STATE(3513), + [sym__expression_statement_expression] = STATE(3462), + [sym_assignment_expression] = STATE(3497), + [sym_binary_expression] = STATE(3462), + [sym_postfix_unary_expression] = STATE(3497), + [sym_prefix_unary_expression] = STATE(3497), + [sym__pointer_indirection_expression] = STATE(2815), + [sym_query_expression] = STATE(3462), + [sym_from_clause] = STATE(6132), + [sym_conditional_expression] = STATE(3462), + [sym_conditional_access_expression] = STATE(3462), + [sym_as_expression] = STATE(3462), + [sym_is_expression] = STATE(3462), + [sym_is_pattern_expression] = STATE(3462), + [sym_cast_expression] = STATE(3462), + [sym_checked_expression] = STATE(3462), + [sym_invocation_expression] = STATE(3497), + [sym_switch_expression] = STATE(3462), + [sym_await_expression] = STATE(3497), + [sym_throw_expression] = STATE(3462), + [sym_element_access_expression] = STATE(2815), + [sym_interpolated_string_expression] = STATE(3462), + [sym_member_access_expression] = STATE(2815), + [sym_object_creation_expression] = STATE(3497), + [sym_parenthesized_expression] = STATE(3497), + [sym__parenthesized_lvalue_expression] = STATE(2815), + [sym_lambda_expression] = STATE(3462), + [sym__lambda_expression_init] = STATE(7527), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3462), + [sym_anonymous_method_expression] = STATE(3462), + [sym_anonymous_object_creation_expression] = STATE(3462), + [sym_implicit_array_creation_expression] = STATE(3462), + [sym_implicit_object_creation_expression] = STATE(3462), + [sym_implicit_stackalloc_expression] = STATE(3462), + [sym_initializer_expression] = STATE(3462), + [sym_default_expression] = STATE(3462), + [sym_with_expression] = STATE(3462), + [sym_sizeof_expression] = STATE(3462), + [sym_typeof_expression] = STATE(3462), + [sym_makeref_expression] = STATE(3462), + [sym_ref_expression] = STATE(3462), + [sym_reftype_expression] = STATE(3462), + [sym_refvalue_expression] = STATE(3462), + [sym_stackalloc_expression] = STATE(3462), + [sym_range_expression] = STATE(3462), + [sym_tuple_expression] = STATE(2815), + [sym_literal] = STATE(3462), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3462), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(1491), [sym_preproc_endregion] = STATE(1491), [sym_preproc_line] = STATE(1491), @@ -293838,166 +293724,166 @@ 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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3363), - [sym__identifier_token] = ACTIONS(1387), - [anon_sym_alias] = ACTIONS(1389), - [anon_sym_global] = ACTIONS(1389), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1391), - [anon_sym_LPAREN] = ACTIONS(1745), - [anon_sym_ref] = ACTIONS(1747), - [anon_sym_LBRACE] = ACTIONS(1397), - [anon_sym_delegate] = ACTIONS(1399), - [anon_sym_async] = ACTIONS(1047), - [anon_sym_file] = ACTIONS(1389), - [anon_sym_new] = ACTIONS(1467), - [anon_sym_where] = ACTIONS(1389), - [anon_sym_notnull] = ACTIONS(1389), - [anon_sym_unmanaged] = ACTIONS(1389), - [anon_sym_checked] = ACTIONS(1403), - [anon_sym_BANG] = ACTIONS(1751), - [anon_sym_TILDE] = ACTIONS(1751), - [anon_sym_PLUS_PLUS] = ACTIONS(1751), - [anon_sym_DASH_DASH] = ACTIONS(1751), - [anon_sym_true] = ACTIONS(1409), - [anon_sym_false] = ACTIONS(1409), - [anon_sym_PLUS] = ACTIONS(1749), - [anon_sym_DASH] = ACTIONS(1749), - [anon_sym_STAR] = ACTIONS(1473), - [anon_sym_CARET] = ACTIONS(1751), - [anon_sym_AMP] = ACTIONS(1751), - [anon_sym_this] = ACTIONS(1413), - [anon_sym_scoped] = ACTIONS(1415), - [anon_sym_base] = ACTIONS(1417), - [anon_sym_var] = ACTIONS(1419), - [sym_predefined_type] = ACTIONS(1421), - [anon_sym_unchecked] = ACTIONS(1403), - [anon_sym_yield] = ACTIONS(1389), - [anon_sym_default] = ACTIONS(1423), - [anon_sym_throw] = ACTIONS(1753), - [anon_sym_when] = ACTIONS(1389), - [anon_sym_await] = ACTIONS(1755), - [anon_sym_DOT_DOT] = ACTIONS(1757), - [anon_sym_from] = ACTIONS(1431), - [anon_sym_into] = ACTIONS(1389), - [anon_sym_join] = ACTIONS(1389), - [anon_sym_on] = ACTIONS(1389), - [anon_sym_equals] = ACTIONS(1389), - [anon_sym_let] = ACTIONS(1389), - [anon_sym_orderby] = ACTIONS(1389), - [anon_sym_ascending] = ACTIONS(1389), - [anon_sym_descending] = ACTIONS(1389), - [anon_sym_group] = ACTIONS(1389), - [anon_sym_by] = ACTIONS(1389), - [anon_sym_select] = ACTIONS(1389), - [anon_sym_stackalloc] = ACTIONS(1433), - [anon_sym_sizeof] = ACTIONS(1435), - [anon_sym_typeof] = ACTIONS(1437), - [anon_sym___makeref] = ACTIONS(1439), - [anon_sym___reftype] = ACTIONS(1441), - [anon_sym___refvalue] = ACTIONS(1443), - [sym_null_literal] = ACTIONS(1445), - [anon_sym_SQUOTE] = ACTIONS(1447), - [sym_integer_literal] = ACTIONS(1445), - [sym_real_literal] = ACTIONS(1449), - [anon_sym_DQUOTE] = ACTIONS(1451), - [sym_verbatim_string_literal] = ACTIONS(1449), - [aux_sym_preproc_if_token1] = ACTIONS(1453), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1455), - [sym_interpolation_verbatim_start] = ACTIONS(1457), - [sym_interpolation_raw_start] = ACTIONS(1459), - [sym_raw_string_start] = ACTIONS(1461), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [sym__identifier_token] = ACTIONS(25), + [anon_sym_alias] = ACTIONS(29), + [anon_sym_global] = ACTIONS(29), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1305), + [anon_sym_LPAREN] = ACTIONS(1875), + [anon_sym_ref] = ACTIONS(1877), + [anon_sym_LBRACE] = ACTIONS(1311), + [anon_sym_delegate] = ACTIONS(1313), + [anon_sym_async] = ACTIONS(1045), + [anon_sym_file] = ACTIONS(29), + [anon_sym_new] = ACTIONS(1879), + [anon_sym_where] = ACTIONS(29), + [anon_sym_notnull] = ACTIONS(29), + [anon_sym_unmanaged] = ACTIONS(29), + [anon_sym_checked] = ACTIONS(1317), + [anon_sym_BANG] = ACTIONS(1883), + [anon_sym_TILDE] = ACTIONS(1883), + [anon_sym_PLUS_PLUS] = ACTIONS(1883), + [anon_sym_DASH_DASH] = ACTIONS(1883), + [anon_sym_true] = ACTIONS(77), + [anon_sym_false] = ACTIONS(77), + [anon_sym_PLUS] = ACTIONS(1881), + [anon_sym_DASH] = ACTIONS(1881), + [anon_sym_STAR] = ACTIONS(1885), + [anon_sym_CARET] = ACTIONS(1883), + [anon_sym_AMP] = ACTIONS(1883), + [anon_sym_this] = ACTIONS(1321), + [anon_sym_scoped] = ACTIONS(85), + [anon_sym_base] = ACTIONS(1323), + [anon_sym_var] = ACTIONS(89), + [sym_predefined_type] = ACTIONS(91), + [anon_sym_unchecked] = ACTIONS(1317), + [anon_sym_yield] = ACTIONS(29), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(1887), + [anon_sym_when] = ACTIONS(29), + [anon_sym_await] = ACTIONS(1889), + [anon_sym_DOT_DOT] = ACTIONS(1891), + [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(1331), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(1333), + [anon_sym___reftype] = ACTIONS(1335), + [anon_sym___refvalue] = ACTIONS(1337), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_literal] = ACTIONS(143), + [anon_sym_DQUOTE] = ACTIONS(145), + [sym_verbatim_string_literal] = ACTIONS(143), + [aux_sym_preproc_if_token1] = ACTIONS(1339), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(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(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(5907), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2404), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(4092), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3122), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3080), - [sym_postfix_unary_expression] = STATE(3111), - [sym_prefix_unary_expression] = STATE(3111), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6149), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3080), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3111), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3080), - [sym_member_access_expression] = STATE(2484), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3111), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7563), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(3080), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3080), - [sym_typeof_expression] = STATE(3080), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2484), - [sym_literal] = STATE(3080), - [sym_character_literal] = STATE(3011), - [sym_string_literal] = STATE(3011), - [sym_raw_string_literal] = STATE(3011), - [sym_boolean_literal] = STATE(3011), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2901), + [sym__name] = STATE(5883), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2359), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(3916), + [sym_non_lvalue_expression] = STATE(3685), + [sym_lvalue_expression] = STATE(3073), + [sym__expression_statement_expression] = STATE(3836), + [sym_assignment_expression] = STATE(3689), + [sym_binary_expression] = STATE(3836), + [sym_postfix_unary_expression] = STATE(3689), + [sym_prefix_unary_expression] = STATE(3689), + [sym__pointer_indirection_expression] = STATE(2906), + [sym_query_expression] = STATE(3836), + [sym_from_clause] = STATE(6157), + [sym_conditional_expression] = STATE(3836), + [sym_conditional_access_expression] = STATE(3836), + [sym_as_expression] = STATE(3836), + [sym_is_expression] = STATE(3836), + [sym_is_pattern_expression] = STATE(3836), + [sym_cast_expression] = STATE(3836), + [sym_checked_expression] = STATE(3836), + [sym_invocation_expression] = STATE(3689), + [sym_switch_expression] = STATE(3836), + [sym_await_expression] = STATE(3689), + [sym_throw_expression] = STATE(3836), + [sym_element_access_expression] = STATE(2906), + [sym_interpolated_string_expression] = STATE(3836), + [sym_member_access_expression] = STATE(2906), + [sym_object_creation_expression] = STATE(3689), + [sym_parenthesized_expression] = STATE(3689), + [sym__parenthesized_lvalue_expression] = STATE(2906), + [sym_lambda_expression] = STATE(3836), + [sym__lambda_expression_init] = STATE(7460), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3836), + [sym_anonymous_method_expression] = STATE(3836), + [sym_anonymous_object_creation_expression] = STATE(3836), + [sym_implicit_array_creation_expression] = STATE(3836), + [sym_implicit_object_creation_expression] = STATE(3836), + [sym_implicit_stackalloc_expression] = STATE(3836), + [sym_initializer_expression] = STATE(3836), + [sym_default_expression] = STATE(3836), + [sym_with_expression] = STATE(3836), + [sym_sizeof_expression] = STATE(3836), + [sym_typeof_expression] = STATE(3836), + [sym_makeref_expression] = STATE(3836), + [sym_ref_expression] = STATE(3836), + [sym_reftype_expression] = STATE(3836), + [sym_refvalue_expression] = STATE(3836), + [sym_stackalloc_expression] = STATE(3836), + [sym_range_expression] = STATE(3836), + [sym_tuple_expression] = STATE(2906), + [sym_literal] = STATE(3836), + [sym_character_literal] = STATE(3843), + [sym_string_literal] = STATE(3843), + [sym_raw_string_literal] = STATE(3843), + [sym_boolean_literal] = STATE(3843), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3836), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(1492), [sym_preproc_endregion] = STATE(1492), [sym_preproc_line] = STATE(1492), @@ -294007,47 +293893,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1492), [sym_preproc_define] = STATE(1492), [sym_preproc_undef] = STATE(1492), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3477), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1481), - [anon_sym_LPAREN] = ACTIONS(1933), - [anon_sym_ref] = ACTIONS(1935), - [anon_sym_LBRACE] = ACTIONS(1487), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1655), + [anon_sym_LPAREN] = ACTIONS(2061), + [anon_sym_ref] = ACTIONS(2063), + [anon_sym_LBRACE] = ACTIONS(1661), + [anon_sym_delegate] = ACTIONS(1663), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1937), + [anon_sym_new] = ACTIONS(1665), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1067), - [anon_sym_BANG] = ACTIONS(1941), - [anon_sym_TILDE] = ACTIONS(1941), - [anon_sym_PLUS_PLUS] = ACTIONS(1941), - [anon_sym_DASH_DASH] = ACTIONS(1941), - [anon_sym_true] = ACTIONS(1259), - [anon_sym_false] = ACTIONS(1259), - [anon_sym_PLUS] = ACTIONS(1939), - [anon_sym_DASH] = ACTIONS(1939), - [anon_sym_STAR] = ACTIONS(1943), - [anon_sym_CARET] = ACTIONS(1941), - [anon_sym_AMP] = ACTIONS(1941), - [anon_sym_this] = ACTIONS(83), + [anon_sym_checked] = ACTIONS(1667), + [anon_sym_BANG] = ACTIONS(2067), + [anon_sym_TILDE] = ACTIONS(2067), + [anon_sym_PLUS_PLUS] = ACTIONS(2067), + [anon_sym_DASH_DASH] = ACTIONS(2067), + [anon_sym_true] = ACTIONS(1673), + [anon_sym_false] = ACTIONS(1673), + [anon_sym_PLUS] = ACTIONS(2065), + [anon_sym_DASH] = ACTIONS(2065), + [anon_sym_STAR] = ACTIONS(1675), + [anon_sym_CARET] = ACTIONS(2067), + [anon_sym_AMP] = ACTIONS(2067), + [anon_sym_this] = ACTIONS(1677), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), + [anon_sym_base] = ACTIONS(1679), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1267), - [anon_sym_unchecked] = ACTIONS(1067), + [sym_predefined_type] = ACTIONS(1681), + [anon_sym_unchecked] = ACTIONS(1667), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1269), - [anon_sym_throw] = ACTIONS(1945), + [anon_sym_default] = ACTIONS(1683), + [anon_sym_throw] = ACTIONS(2069), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1947), - [anon_sym_DOT_DOT] = ACTIONS(1949), + [anon_sym_await] = ACTIONS(2071), + [anon_sym_DOT_DOT] = ACTIONS(2073), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -294060,19 +293946,19 @@ static const uint16_t ts_parse_table[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(1279), - [anon_sym_typeof] = ACTIONS(1281), - [anon_sym___makeref] = ACTIONS(133), - [anon_sym___reftype] = ACTIONS(135), - [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(1289), - [anon_sym_SQUOTE] = ACTIONS(1291), - [sym_integer_literal] = ACTIONS(1289), - [sym_real_literal] = ACTIONS(1293), - [anon_sym_DQUOTE] = ACTIONS(1295), - [sym_verbatim_string_literal] = ACTIONS(1293), - [aux_sym_preproc_if_token1] = ACTIONS(1089), + [anon_sym_stackalloc] = ACTIONS(1691), + [anon_sym_sizeof] = ACTIONS(1693), + [anon_sym_typeof] = ACTIONS(1695), + [anon_sym___makeref] = ACTIONS(1697), + [anon_sym___reftype] = ACTIONS(1699), + [anon_sym___refvalue] = ACTIONS(1701), + [sym_null_literal] = ACTIONS(1703), + [anon_sym_SQUOTE] = ACTIONS(1705), + [sym_integer_literal] = ACTIONS(1703), + [sym_real_literal] = ACTIONS(1707), + [anon_sym_DQUOTE] = ACTIONS(1709), + [sym_verbatim_string_literal] = ACTIONS(1707), + [aux_sym_preproc_if_token1] = ACTIONS(1711), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -294083,90 +293969,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1299), - [sym_interpolation_verbatim_start] = ACTIONS(1301), - [sym_interpolation_raw_start] = ACTIONS(1303), - [sym_raw_string_start] = ACTIONS(1305), + [sym_interpolation_regular_start] = ACTIONS(1713), + [sym_interpolation_verbatim_start] = ACTIONS(1715), + [sym_interpolation_raw_start] = ACTIONS(1717), + [sym_raw_string_start] = ACTIONS(1719), }, [1493] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(5907), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2404), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(4067), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3122), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3080), - [sym_postfix_unary_expression] = STATE(3111), - [sym_prefix_unary_expression] = STATE(3111), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6149), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3080), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3111), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3080), - [sym_member_access_expression] = STATE(2484), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3111), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7563), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(3080), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3080), - [sym_typeof_expression] = STATE(3080), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2484), - [sym_literal] = STATE(3080), - [sym_character_literal] = STATE(3011), - [sym_string_literal] = STATE(3011), - [sym_raw_string_literal] = STATE(3011), - [sym_boolean_literal] = STATE(3011), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2816), + [sym__name] = STATE(5896), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2362), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(4942), + [sym_non_lvalue_expression] = STATE(3495), + [sym_lvalue_expression] = STATE(3513), + [sym__expression_statement_expression] = STATE(3462), + [sym_assignment_expression] = STATE(3497), + [sym_binary_expression] = STATE(3462), + [sym_postfix_unary_expression] = STATE(3497), + [sym_prefix_unary_expression] = STATE(3497), + [sym__pointer_indirection_expression] = STATE(2815), + [sym_query_expression] = STATE(3462), + [sym_from_clause] = STATE(6132), + [sym_conditional_expression] = STATE(3462), + [sym_conditional_access_expression] = STATE(3462), + [sym_as_expression] = STATE(3462), + [sym_is_expression] = STATE(3462), + [sym_is_pattern_expression] = STATE(3462), + [sym_cast_expression] = STATE(3462), + [sym_checked_expression] = STATE(3462), + [sym_invocation_expression] = STATE(3497), + [sym_switch_expression] = STATE(3462), + [sym_await_expression] = STATE(3497), + [sym_throw_expression] = STATE(3462), + [sym_element_access_expression] = STATE(2815), + [sym_interpolated_string_expression] = STATE(3462), + [sym_member_access_expression] = STATE(2815), + [sym_object_creation_expression] = STATE(3497), + [sym_parenthesized_expression] = STATE(3497), + [sym__parenthesized_lvalue_expression] = STATE(2815), + [sym_lambda_expression] = STATE(3462), + [sym__lambda_expression_init] = STATE(7527), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3462), + [sym_anonymous_method_expression] = STATE(3462), + [sym_anonymous_object_creation_expression] = STATE(3462), + [sym_implicit_array_creation_expression] = STATE(3462), + [sym_implicit_object_creation_expression] = STATE(3462), + [sym_implicit_stackalloc_expression] = STATE(3462), + [sym_initializer_expression] = STATE(3462), + [sym_default_expression] = STATE(3462), + [sym_with_expression] = STATE(3462), + [sym_sizeof_expression] = STATE(3462), + [sym_typeof_expression] = STATE(3462), + [sym_makeref_expression] = STATE(3462), + [sym_ref_expression] = STATE(3462), + [sym_reftype_expression] = STATE(3462), + [sym_refvalue_expression] = STATE(3462), + [sym_stackalloc_expression] = STATE(3462), + [sym_range_expression] = STATE(3462), + [sym_tuple_expression] = STATE(2815), + [sym_literal] = STATE(3462), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3462), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(1493), [sym_preproc_endregion] = STATE(1493), [sym_preproc_line] = STATE(1493), @@ -294176,47 +294062,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(3067), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), [aux_sym__lambda_expression_init_repeat1] = STATE(3367), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1481), - [anon_sym_LPAREN] = ACTIONS(1933), - [anon_sym_ref] = ACTIONS(1935), - [anon_sym_LBRACE] = ACTIONS(1487), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1305), + [anon_sym_LPAREN] = ACTIONS(1875), + [anon_sym_ref] = ACTIONS(1877), + [anon_sym_LBRACE] = ACTIONS(1311), + [anon_sym_delegate] = ACTIONS(1313), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1937), + [anon_sym_new] = ACTIONS(1879), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1067), - [anon_sym_BANG] = ACTIONS(1941), - [anon_sym_TILDE] = ACTIONS(1941), - [anon_sym_PLUS_PLUS] = ACTIONS(1941), - [anon_sym_DASH_DASH] = ACTIONS(1941), - [anon_sym_true] = ACTIONS(1259), - [anon_sym_false] = ACTIONS(1259), - [anon_sym_PLUS] = ACTIONS(1939), - [anon_sym_DASH] = ACTIONS(1939), - [anon_sym_STAR] = ACTIONS(1943), - [anon_sym_CARET] = ACTIONS(1941), - [anon_sym_AMP] = ACTIONS(1941), - [anon_sym_this] = ACTIONS(83), + [anon_sym_checked] = ACTIONS(1317), + [anon_sym_BANG] = ACTIONS(1883), + [anon_sym_TILDE] = ACTIONS(1883), + [anon_sym_PLUS_PLUS] = ACTIONS(1883), + [anon_sym_DASH_DASH] = ACTIONS(1883), + [anon_sym_true] = ACTIONS(77), + [anon_sym_false] = ACTIONS(77), + [anon_sym_PLUS] = ACTIONS(1881), + [anon_sym_DASH] = ACTIONS(1881), + [anon_sym_STAR] = ACTIONS(1885), + [anon_sym_CARET] = ACTIONS(1883), + [anon_sym_AMP] = ACTIONS(1883), + [anon_sym_this] = ACTIONS(1321), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), + [anon_sym_base] = ACTIONS(1323), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1267), - [anon_sym_unchecked] = ACTIONS(1067), + [sym_predefined_type] = ACTIONS(91), + [anon_sym_unchecked] = ACTIONS(1317), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1269), - [anon_sym_throw] = ACTIONS(1945), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(1887), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1947), - [anon_sym_DOT_DOT] = ACTIONS(1949), + [anon_sym_await] = ACTIONS(1889), + [anon_sym_DOT_DOT] = ACTIONS(1891), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -294229,19 +294115,19 @@ static const uint16_t ts_parse_table[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(1279), - [anon_sym_typeof] = ACTIONS(1281), - [anon_sym___makeref] = ACTIONS(133), - [anon_sym___reftype] = ACTIONS(135), - [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(1289), - [anon_sym_SQUOTE] = ACTIONS(1291), - [sym_integer_literal] = ACTIONS(1289), - [sym_real_literal] = ACTIONS(1293), - [anon_sym_DQUOTE] = ACTIONS(1295), - [sym_verbatim_string_literal] = ACTIONS(1293), - [aux_sym_preproc_if_token1] = ACTIONS(1089), + [anon_sym_stackalloc] = ACTIONS(1331), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(1333), + [anon_sym___reftype] = ACTIONS(1335), + [anon_sym___refvalue] = ACTIONS(1337), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_literal] = ACTIONS(143), + [anon_sym_DQUOTE] = ACTIONS(145), + [sym_verbatim_string_literal] = ACTIONS(143), + [aux_sym_preproc_if_token1] = ACTIONS(1339), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -294252,90 +294138,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1299), - [sym_interpolation_verbatim_start] = ACTIONS(1301), - [sym_interpolation_raw_start] = ACTIONS(1303), - [sym_raw_string_start] = ACTIONS(1305), + [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(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2762), - [sym__name] = STATE(5910), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2204), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(5031), - [sym_non_lvalue_expression] = STATE(3438), - [sym_lvalue_expression] = STATE(3524), - [sym__expression_statement_expression] = STATE(3362), - [sym_assignment_expression] = STATE(3449), - [sym_binary_expression] = STATE(3362), - [sym_postfix_unary_expression] = STATE(3449), - [sym_prefix_unary_expression] = STATE(3449), - [sym__pointer_indirection_expression] = STATE(2747), - [sym_query_expression] = STATE(3362), - [sym_from_clause] = STATE(6174), - [sym_conditional_expression] = STATE(3362), - [sym_conditional_access_expression] = STATE(3362), - [sym_as_expression] = STATE(3362), - [sym_is_expression] = STATE(3362), - [sym_is_pattern_expression] = STATE(3362), - [sym_cast_expression] = STATE(3362), - [sym_checked_expression] = STATE(3362), - [sym_invocation_expression] = STATE(3449), - [sym_switch_expression] = STATE(3362), - [sym_await_expression] = STATE(3449), - [sym_throw_expression] = STATE(3362), - [sym_element_access_expression] = STATE(2747), - [sym_interpolated_string_expression] = STATE(3362), - [sym_member_access_expression] = STATE(2747), - [sym_object_creation_expression] = STATE(3449), - [sym_parenthesized_expression] = STATE(3449), - [sym__parenthesized_lvalue_expression] = STATE(2747), - [sym_lambda_expression] = STATE(3362), - [sym__lambda_expression_init] = STATE(7407), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3362), - [sym_anonymous_method_expression] = STATE(3362), - [sym_anonymous_object_creation_expression] = STATE(3362), - [sym_implicit_array_creation_expression] = STATE(3362), - [sym_implicit_object_creation_expression] = STATE(3362), - [sym_implicit_stackalloc_expression] = STATE(3362), - [sym_initializer_expression] = STATE(3362), - [sym_default_expression] = STATE(3362), - [sym_with_expression] = STATE(3362), - [sym_sizeof_expression] = STATE(3362), - [sym_typeof_expression] = STATE(3362), - [sym_makeref_expression] = STATE(3362), - [sym_ref_expression] = STATE(3362), - [sym_reftype_expression] = STATE(3362), - [sym_refvalue_expression] = STATE(3362), - [sym_stackalloc_expression] = STATE(3362), - [sym_range_expression] = STATE(3362), - [sym_tuple_expression] = STATE(2747), - [sym_literal] = STATE(3362), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3362), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2901), + [sym__name] = STATE(5883), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2359), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(3917), + [sym_non_lvalue_expression] = STATE(3685), + [sym_lvalue_expression] = STATE(3073), + [sym__expression_statement_expression] = STATE(3836), + [sym_assignment_expression] = STATE(3689), + [sym_binary_expression] = STATE(3836), + [sym_postfix_unary_expression] = STATE(3689), + [sym_prefix_unary_expression] = STATE(3689), + [sym__pointer_indirection_expression] = STATE(2906), + [sym_query_expression] = STATE(3836), + [sym_from_clause] = STATE(6157), + [sym_conditional_expression] = STATE(3836), + [sym_conditional_access_expression] = STATE(3836), + [sym_as_expression] = STATE(3836), + [sym_is_expression] = STATE(3836), + [sym_is_pattern_expression] = STATE(3836), + [sym_cast_expression] = STATE(3836), + [sym_checked_expression] = STATE(3836), + [sym_invocation_expression] = STATE(3689), + [sym_switch_expression] = STATE(3836), + [sym_await_expression] = STATE(3689), + [sym_throw_expression] = STATE(3836), + [sym_element_access_expression] = STATE(2906), + [sym_interpolated_string_expression] = STATE(3836), + [sym_member_access_expression] = STATE(2906), + [sym_object_creation_expression] = STATE(3689), + [sym_parenthesized_expression] = STATE(3689), + [sym__parenthesized_lvalue_expression] = STATE(2906), + [sym_lambda_expression] = STATE(3836), + [sym__lambda_expression_init] = STATE(7460), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3836), + [sym_anonymous_method_expression] = STATE(3836), + [sym_anonymous_object_creation_expression] = STATE(3836), + [sym_implicit_array_creation_expression] = STATE(3836), + [sym_implicit_object_creation_expression] = STATE(3836), + [sym_implicit_stackalloc_expression] = STATE(3836), + [sym_initializer_expression] = STATE(3836), + [sym_default_expression] = STATE(3836), + [sym_with_expression] = STATE(3836), + [sym_sizeof_expression] = STATE(3836), + [sym_typeof_expression] = STATE(3836), + [sym_makeref_expression] = STATE(3836), + [sym_ref_expression] = STATE(3836), + [sym_reftype_expression] = STATE(3836), + [sym_refvalue_expression] = STATE(3836), + [sym_stackalloc_expression] = STATE(3836), + [sym_range_expression] = STATE(3836), + [sym_tuple_expression] = STATE(2906), + [sym_literal] = STATE(3836), + [sym_character_literal] = STATE(3843), + [sym_string_literal] = STATE(3843), + [sym_raw_string_literal] = STATE(3843), + [sym_boolean_literal] = STATE(3843), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3836), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(1494), [sym_preproc_endregion] = STATE(1494), [sym_preproc_line] = STATE(1494), @@ -294345,47 +294231,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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3385), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3477), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1307), - [anon_sym_LPAREN] = ACTIONS(1693), - [anon_sym_ref] = ACTIONS(1695), - [anon_sym_LBRACE] = ACTIONS(1313), - [anon_sym_delegate] = ACTIONS(1315), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1655), + [anon_sym_LPAREN] = ACTIONS(2061), + [anon_sym_ref] = ACTIONS(2063), + [anon_sym_LBRACE] = ACTIONS(1661), + [anon_sym_delegate] = ACTIONS(1663), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1697), + [anon_sym_new] = ACTIONS(1665), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1319), - [anon_sym_BANG] = ACTIONS(1701), - [anon_sym_TILDE] = ACTIONS(1701), - [anon_sym_PLUS_PLUS] = ACTIONS(1701), - [anon_sym_DASH_DASH] = ACTIONS(1701), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1699), - [anon_sym_DASH] = ACTIONS(1699), - [anon_sym_STAR] = ACTIONS(1351), - [anon_sym_CARET] = ACTIONS(1701), - [anon_sym_AMP] = ACTIONS(1701), - [anon_sym_this] = ACTIONS(1323), + [anon_sym_checked] = ACTIONS(1667), + [anon_sym_BANG] = ACTIONS(2067), + [anon_sym_TILDE] = ACTIONS(2067), + [anon_sym_PLUS_PLUS] = ACTIONS(2067), + [anon_sym_DASH_DASH] = ACTIONS(2067), + [anon_sym_true] = ACTIONS(1673), + [anon_sym_false] = ACTIONS(1673), + [anon_sym_PLUS] = ACTIONS(2065), + [anon_sym_DASH] = ACTIONS(2065), + [anon_sym_STAR] = ACTIONS(1675), + [anon_sym_CARET] = ACTIONS(2067), + [anon_sym_AMP] = ACTIONS(2067), + [anon_sym_this] = ACTIONS(1677), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1325), + [anon_sym_base] = ACTIONS(1679), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1319), + [sym_predefined_type] = ACTIONS(1681), + [anon_sym_unchecked] = ACTIONS(1667), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1703), + [anon_sym_default] = ACTIONS(1683), + [anon_sym_throw] = ACTIONS(2069), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1705), - [anon_sym_DOT_DOT] = ACTIONS(1707), + [anon_sym_await] = ACTIONS(2071), + [anon_sym_DOT_DOT] = ACTIONS(2073), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -294398,19 +294284,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1333), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(1335), - [anon_sym___reftype] = ACTIONS(1337), - [anon_sym___refvalue] = ACTIONS(1339), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1709), + [anon_sym_stackalloc] = ACTIONS(1691), + [anon_sym_sizeof] = ACTIONS(1693), + [anon_sym_typeof] = ACTIONS(1695), + [anon_sym___makeref] = ACTIONS(1697), + [anon_sym___reftype] = ACTIONS(1699), + [anon_sym___refvalue] = ACTIONS(1701), + [sym_null_literal] = ACTIONS(1703), + [anon_sym_SQUOTE] = ACTIONS(1705), + [sym_integer_literal] = ACTIONS(1703), + [sym_real_literal] = ACTIONS(1707), + [anon_sym_DQUOTE] = ACTIONS(1709), + [sym_verbatim_string_literal] = ACTIONS(1707), + [aux_sym_preproc_if_token1] = ACTIONS(1711), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -294421,90 +294307,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(151), - [sym_interpolation_verbatim_start] = ACTIONS(153), - [sym_interpolation_raw_start] = ACTIONS(155), - [sym_raw_string_start] = ACTIONS(157), + [sym_interpolation_regular_start] = ACTIONS(1713), + [sym_interpolation_verbatim_start] = ACTIONS(1715), + [sym_interpolation_raw_start] = ACTIONS(1717), + [sym_raw_string_start] = ACTIONS(1719), }, [1495] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2762), - [sym__name] = STATE(5910), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2204), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(5032), - [sym_non_lvalue_expression] = STATE(3438), - [sym_lvalue_expression] = STATE(3524), - [sym__expression_statement_expression] = STATE(3362), - [sym_assignment_expression] = STATE(3449), - [sym_binary_expression] = STATE(3362), - [sym_postfix_unary_expression] = STATE(3449), - [sym_prefix_unary_expression] = STATE(3449), - [sym__pointer_indirection_expression] = STATE(2747), - [sym_query_expression] = STATE(3362), - [sym_from_clause] = STATE(6174), - [sym_conditional_expression] = STATE(3362), - [sym_conditional_access_expression] = STATE(3362), - [sym_as_expression] = STATE(3362), - [sym_is_expression] = STATE(3362), - [sym_is_pattern_expression] = STATE(3362), - [sym_cast_expression] = STATE(3362), - [sym_checked_expression] = STATE(3362), - [sym_invocation_expression] = STATE(3449), - [sym_switch_expression] = STATE(3362), - [sym_await_expression] = STATE(3449), - [sym_throw_expression] = STATE(3362), - [sym_element_access_expression] = STATE(2747), - [sym_interpolated_string_expression] = STATE(3362), - [sym_member_access_expression] = STATE(2747), - [sym_object_creation_expression] = STATE(3449), - [sym_parenthesized_expression] = STATE(3449), - [sym__parenthesized_lvalue_expression] = STATE(2747), - [sym_lambda_expression] = STATE(3362), - [sym__lambda_expression_init] = STATE(7407), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3362), - [sym_anonymous_method_expression] = STATE(3362), - [sym_anonymous_object_creation_expression] = STATE(3362), - [sym_implicit_array_creation_expression] = STATE(3362), - [sym_implicit_object_creation_expression] = STATE(3362), - [sym_implicit_stackalloc_expression] = STATE(3362), - [sym_initializer_expression] = STATE(3362), - [sym_default_expression] = STATE(3362), - [sym_with_expression] = STATE(3362), - [sym_sizeof_expression] = STATE(3362), - [sym_typeof_expression] = STATE(3362), - [sym_makeref_expression] = STATE(3362), - [sym_ref_expression] = STATE(3362), - [sym_reftype_expression] = STATE(3362), - [sym_refvalue_expression] = STATE(3362), - [sym_stackalloc_expression] = STATE(3362), - [sym_range_expression] = STATE(3362), - [sym_tuple_expression] = STATE(2747), - [sym_literal] = STATE(3362), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3362), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2816), + [sym__name] = STATE(5896), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2362), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(4948), + [sym_non_lvalue_expression] = STATE(3495), + [sym_lvalue_expression] = STATE(3513), + [sym__expression_statement_expression] = STATE(3462), + [sym_assignment_expression] = STATE(3497), + [sym_binary_expression] = STATE(3462), + [sym_postfix_unary_expression] = STATE(3497), + [sym_prefix_unary_expression] = STATE(3497), + [sym__pointer_indirection_expression] = STATE(2815), + [sym_query_expression] = STATE(3462), + [sym_from_clause] = STATE(6132), + [sym_conditional_expression] = STATE(3462), + [sym_conditional_access_expression] = STATE(3462), + [sym_as_expression] = STATE(3462), + [sym_is_expression] = STATE(3462), + [sym_is_pattern_expression] = STATE(3462), + [sym_cast_expression] = STATE(3462), + [sym_checked_expression] = STATE(3462), + [sym_invocation_expression] = STATE(3497), + [sym_switch_expression] = STATE(3462), + [sym_await_expression] = STATE(3497), + [sym_throw_expression] = STATE(3462), + [sym_element_access_expression] = STATE(2815), + [sym_interpolated_string_expression] = STATE(3462), + [sym_member_access_expression] = STATE(2815), + [sym_object_creation_expression] = STATE(3497), + [sym_parenthesized_expression] = STATE(3497), + [sym__parenthesized_lvalue_expression] = STATE(2815), + [sym_lambda_expression] = STATE(3462), + [sym__lambda_expression_init] = STATE(7527), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3462), + [sym_anonymous_method_expression] = STATE(3462), + [sym_anonymous_object_creation_expression] = STATE(3462), + [sym_implicit_array_creation_expression] = STATE(3462), + [sym_implicit_object_creation_expression] = STATE(3462), + [sym_implicit_stackalloc_expression] = STATE(3462), + [sym_initializer_expression] = STATE(3462), + [sym_default_expression] = STATE(3462), + [sym_with_expression] = STATE(3462), + [sym_sizeof_expression] = STATE(3462), + [sym_typeof_expression] = STATE(3462), + [sym_makeref_expression] = STATE(3462), + [sym_ref_expression] = STATE(3462), + [sym_reftype_expression] = STATE(3462), + [sym_refvalue_expression] = STATE(3462), + [sym_stackalloc_expression] = STATE(3462), + [sym_range_expression] = STATE(3462), + [sym_tuple_expression] = STATE(2815), + [sym_literal] = STATE(3462), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3462), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(1495), [sym_preproc_endregion] = STATE(1495), [sym_preproc_line] = STATE(1495), @@ -294514,47 +294400,47 @@ 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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3385), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3367), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1307), - [anon_sym_LPAREN] = ACTIONS(1693), - [anon_sym_ref] = ACTIONS(1695), - [anon_sym_LBRACE] = ACTIONS(1313), - [anon_sym_delegate] = ACTIONS(1315), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1305), + [anon_sym_LPAREN] = ACTIONS(1875), + [anon_sym_ref] = ACTIONS(1877), + [anon_sym_LBRACE] = ACTIONS(1311), + [anon_sym_delegate] = ACTIONS(1313), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1697), + [anon_sym_new] = ACTIONS(1879), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1319), - [anon_sym_BANG] = ACTIONS(1701), - [anon_sym_TILDE] = ACTIONS(1701), - [anon_sym_PLUS_PLUS] = ACTIONS(1701), - [anon_sym_DASH_DASH] = ACTIONS(1701), + [anon_sym_checked] = ACTIONS(1317), + [anon_sym_BANG] = ACTIONS(1883), + [anon_sym_TILDE] = ACTIONS(1883), + [anon_sym_PLUS_PLUS] = ACTIONS(1883), + [anon_sym_DASH_DASH] = ACTIONS(1883), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1699), - [anon_sym_DASH] = ACTIONS(1699), - [anon_sym_STAR] = ACTIONS(1351), - [anon_sym_CARET] = ACTIONS(1701), - [anon_sym_AMP] = ACTIONS(1701), - [anon_sym_this] = ACTIONS(1323), + [anon_sym_PLUS] = ACTIONS(1881), + [anon_sym_DASH] = ACTIONS(1881), + [anon_sym_STAR] = ACTIONS(1885), + [anon_sym_CARET] = ACTIONS(1883), + [anon_sym_AMP] = ACTIONS(1883), + [anon_sym_this] = ACTIONS(1321), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1325), + [anon_sym_base] = ACTIONS(1323), [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1319), + [anon_sym_unchecked] = ACTIONS(1317), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1703), + [anon_sym_throw] = ACTIONS(1887), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1705), - [anon_sym_DOT_DOT] = ACTIONS(1707), + [anon_sym_await] = ACTIONS(1889), + [anon_sym_DOT_DOT] = ACTIONS(1891), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -294567,19 +294453,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1333), + [anon_sym_stackalloc] = ACTIONS(1331), [anon_sym_sizeof] = ACTIONS(129), [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(1335), - [anon_sym___reftype] = ACTIONS(1337), - [anon_sym___refvalue] = ACTIONS(1339), + [anon_sym___makeref] = ACTIONS(1333), + [anon_sym___reftype] = ACTIONS(1335), + [anon_sym___refvalue] = ACTIONS(1337), [sym_null_literal] = ACTIONS(139), [anon_sym_SQUOTE] = ACTIONS(141), [sym_integer_literal] = ACTIONS(139), [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1709), + [aux_sym_preproc_if_token1] = ACTIONS(1339), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -294596,84 +294482,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [1496] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2762), - [sym__name] = STATE(5910), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2204), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(5028), - [sym_non_lvalue_expression] = STATE(3438), - [sym_lvalue_expression] = STATE(3524), - [sym__expression_statement_expression] = STATE(3362), - [sym_assignment_expression] = STATE(3449), - [sym_binary_expression] = STATE(3362), - [sym_postfix_unary_expression] = STATE(3449), - [sym_prefix_unary_expression] = STATE(3449), - [sym__pointer_indirection_expression] = STATE(2747), - [sym_query_expression] = STATE(3362), - [sym_from_clause] = STATE(6174), - [sym_conditional_expression] = STATE(3362), - [sym_conditional_access_expression] = STATE(3362), - [sym_as_expression] = STATE(3362), - [sym_is_expression] = STATE(3362), - [sym_is_pattern_expression] = STATE(3362), - [sym_cast_expression] = STATE(3362), - [sym_checked_expression] = STATE(3362), - [sym_invocation_expression] = STATE(3449), - [sym_switch_expression] = STATE(3362), - [sym_await_expression] = STATE(3449), - [sym_throw_expression] = STATE(3362), - [sym_element_access_expression] = STATE(2747), - [sym_interpolated_string_expression] = STATE(3362), - [sym_member_access_expression] = STATE(2747), - [sym_object_creation_expression] = STATE(3449), - [sym_parenthesized_expression] = STATE(3449), - [sym__parenthesized_lvalue_expression] = STATE(2747), - [sym_lambda_expression] = STATE(3362), - [sym__lambda_expression_init] = STATE(7407), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3362), - [sym_anonymous_method_expression] = STATE(3362), - [sym_anonymous_object_creation_expression] = STATE(3362), - [sym_implicit_array_creation_expression] = STATE(3362), - [sym_implicit_object_creation_expression] = STATE(3362), - [sym_implicit_stackalloc_expression] = STATE(3362), - [sym_initializer_expression] = STATE(3362), - [sym_default_expression] = STATE(3362), - [sym_with_expression] = STATE(3362), - [sym_sizeof_expression] = STATE(3362), - [sym_typeof_expression] = STATE(3362), - [sym_makeref_expression] = STATE(3362), - [sym_ref_expression] = STATE(3362), - [sym_reftype_expression] = STATE(3362), - [sym_refvalue_expression] = STATE(3362), - [sym_stackalloc_expression] = STATE(3362), - [sym_range_expression] = STATE(3362), - [sym_tuple_expression] = STATE(2747), - [sym_literal] = STATE(3362), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3362), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2901), + [sym__name] = STATE(5883), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2359), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(3918), + [sym_non_lvalue_expression] = STATE(3685), + [sym_lvalue_expression] = STATE(3073), + [sym__expression_statement_expression] = STATE(3836), + [sym_assignment_expression] = STATE(3689), + [sym_binary_expression] = STATE(3836), + [sym_postfix_unary_expression] = STATE(3689), + [sym_prefix_unary_expression] = STATE(3689), + [sym__pointer_indirection_expression] = STATE(2906), + [sym_query_expression] = STATE(3836), + [sym_from_clause] = STATE(6157), + [sym_conditional_expression] = STATE(3836), + [sym_conditional_access_expression] = STATE(3836), + [sym_as_expression] = STATE(3836), + [sym_is_expression] = STATE(3836), + [sym_is_pattern_expression] = STATE(3836), + [sym_cast_expression] = STATE(3836), + [sym_checked_expression] = STATE(3836), + [sym_invocation_expression] = STATE(3689), + [sym_switch_expression] = STATE(3836), + [sym_await_expression] = STATE(3689), + [sym_throw_expression] = STATE(3836), + [sym_element_access_expression] = STATE(2906), + [sym_interpolated_string_expression] = STATE(3836), + [sym_member_access_expression] = STATE(2906), + [sym_object_creation_expression] = STATE(3689), + [sym_parenthesized_expression] = STATE(3689), + [sym__parenthesized_lvalue_expression] = STATE(2906), + [sym_lambda_expression] = STATE(3836), + [sym__lambda_expression_init] = STATE(7460), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3836), + [sym_anonymous_method_expression] = STATE(3836), + [sym_anonymous_object_creation_expression] = STATE(3836), + [sym_implicit_array_creation_expression] = STATE(3836), + [sym_implicit_object_creation_expression] = STATE(3836), + [sym_implicit_stackalloc_expression] = STATE(3836), + [sym_initializer_expression] = STATE(3836), + [sym_default_expression] = STATE(3836), + [sym_with_expression] = STATE(3836), + [sym_sizeof_expression] = STATE(3836), + [sym_typeof_expression] = STATE(3836), + [sym_makeref_expression] = STATE(3836), + [sym_ref_expression] = STATE(3836), + [sym_reftype_expression] = STATE(3836), + [sym_refvalue_expression] = STATE(3836), + [sym_stackalloc_expression] = STATE(3836), + [sym_range_expression] = STATE(3836), + [sym_tuple_expression] = STATE(2906), + [sym_literal] = STATE(3836), + [sym_character_literal] = STATE(3843), + [sym_string_literal] = STATE(3843), + [sym_raw_string_literal] = STATE(3843), + [sym_boolean_literal] = STATE(3843), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3836), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(1496), [sym_preproc_endregion] = STATE(1496), [sym_preproc_line] = STATE(1496), @@ -294683,47 +294569,47 @@ 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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3385), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3477), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1307), - [anon_sym_LPAREN] = ACTIONS(1693), - [anon_sym_ref] = ACTIONS(1695), - [anon_sym_LBRACE] = ACTIONS(1313), - [anon_sym_delegate] = ACTIONS(1315), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1655), + [anon_sym_LPAREN] = ACTIONS(2061), + [anon_sym_ref] = ACTIONS(2063), + [anon_sym_LBRACE] = ACTIONS(1661), + [anon_sym_delegate] = ACTIONS(1663), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1697), + [anon_sym_new] = ACTIONS(1665), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1319), - [anon_sym_BANG] = ACTIONS(1701), - [anon_sym_TILDE] = ACTIONS(1701), - [anon_sym_PLUS_PLUS] = ACTIONS(1701), - [anon_sym_DASH_DASH] = ACTIONS(1701), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1699), - [anon_sym_DASH] = ACTIONS(1699), - [anon_sym_STAR] = ACTIONS(1351), - [anon_sym_CARET] = ACTIONS(1701), - [anon_sym_AMP] = ACTIONS(1701), - [anon_sym_this] = ACTIONS(1323), + [anon_sym_checked] = ACTIONS(1667), + [anon_sym_BANG] = ACTIONS(2067), + [anon_sym_TILDE] = ACTIONS(2067), + [anon_sym_PLUS_PLUS] = ACTIONS(2067), + [anon_sym_DASH_DASH] = ACTIONS(2067), + [anon_sym_true] = ACTIONS(1673), + [anon_sym_false] = ACTIONS(1673), + [anon_sym_PLUS] = ACTIONS(2065), + [anon_sym_DASH] = ACTIONS(2065), + [anon_sym_STAR] = ACTIONS(1675), + [anon_sym_CARET] = ACTIONS(2067), + [anon_sym_AMP] = ACTIONS(2067), + [anon_sym_this] = ACTIONS(1677), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1325), + [anon_sym_base] = ACTIONS(1679), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1319), + [sym_predefined_type] = ACTIONS(1681), + [anon_sym_unchecked] = ACTIONS(1667), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1703), + [anon_sym_default] = ACTIONS(1683), + [anon_sym_throw] = ACTIONS(2069), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1705), - [anon_sym_DOT_DOT] = ACTIONS(1707), + [anon_sym_await] = ACTIONS(2071), + [anon_sym_DOT_DOT] = ACTIONS(2073), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -294736,19 +294622,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1333), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(1335), - [anon_sym___reftype] = ACTIONS(1337), - [anon_sym___refvalue] = ACTIONS(1339), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1709), + [anon_sym_stackalloc] = ACTIONS(1691), + [anon_sym_sizeof] = ACTIONS(1693), + [anon_sym_typeof] = ACTIONS(1695), + [anon_sym___makeref] = ACTIONS(1697), + [anon_sym___reftype] = ACTIONS(1699), + [anon_sym___refvalue] = ACTIONS(1701), + [sym_null_literal] = ACTIONS(1703), + [anon_sym_SQUOTE] = ACTIONS(1705), + [sym_integer_literal] = ACTIONS(1703), + [sym_real_literal] = ACTIONS(1707), + [anon_sym_DQUOTE] = ACTIONS(1709), + [sym_verbatim_string_literal] = ACTIONS(1707), + [aux_sym_preproc_if_token1] = ACTIONS(1711), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -294759,90 +294645,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(151), - [sym_interpolation_verbatim_start] = ACTIONS(153), - [sym_interpolation_raw_start] = ACTIONS(155), - [sym_raw_string_start] = ACTIONS(157), + [sym_interpolation_regular_start] = ACTIONS(1713), + [sym_interpolation_verbatim_start] = ACTIONS(1715), + [sym_interpolation_raw_start] = ACTIONS(1717), + [sym_raw_string_start] = ACTIONS(1719), }, [1497] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2762), - [sym__name] = STATE(5910), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2204), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(5034), - [sym_non_lvalue_expression] = STATE(3438), - [sym_lvalue_expression] = STATE(3524), - [sym__expression_statement_expression] = STATE(3362), - [sym_assignment_expression] = STATE(3449), - [sym_binary_expression] = STATE(3362), - [sym_postfix_unary_expression] = STATE(3449), - [sym_prefix_unary_expression] = STATE(3449), - [sym__pointer_indirection_expression] = STATE(2747), - [sym_query_expression] = STATE(3362), - [sym_from_clause] = STATE(6174), - [sym_conditional_expression] = STATE(3362), - [sym_conditional_access_expression] = STATE(3362), - [sym_as_expression] = STATE(3362), - [sym_is_expression] = STATE(3362), - [sym_is_pattern_expression] = STATE(3362), - [sym_cast_expression] = STATE(3362), - [sym_checked_expression] = STATE(3362), - [sym_invocation_expression] = STATE(3449), - [sym_switch_expression] = STATE(3362), - [sym_await_expression] = STATE(3449), - [sym_throw_expression] = STATE(3362), - [sym_element_access_expression] = STATE(2747), - [sym_interpolated_string_expression] = STATE(3362), - [sym_member_access_expression] = STATE(2747), - [sym_object_creation_expression] = STATE(3449), - [sym_parenthesized_expression] = STATE(3449), - [sym__parenthesized_lvalue_expression] = STATE(2747), - [sym_lambda_expression] = STATE(3362), - [sym__lambda_expression_init] = STATE(7407), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3362), - [sym_anonymous_method_expression] = STATE(3362), - [sym_anonymous_object_creation_expression] = STATE(3362), - [sym_implicit_array_creation_expression] = STATE(3362), - [sym_implicit_object_creation_expression] = STATE(3362), - [sym_implicit_stackalloc_expression] = STATE(3362), - [sym_initializer_expression] = STATE(3362), - [sym_default_expression] = STATE(3362), - [sym_with_expression] = STATE(3362), - [sym_sizeof_expression] = STATE(3362), - [sym_typeof_expression] = STATE(3362), - [sym_makeref_expression] = STATE(3362), - [sym_ref_expression] = STATE(3362), - [sym_reftype_expression] = STATE(3362), - [sym_refvalue_expression] = STATE(3362), - [sym_stackalloc_expression] = STATE(3362), - [sym_range_expression] = STATE(3362), - [sym_tuple_expression] = STATE(2747), - [sym_literal] = STATE(3362), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3362), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2816), + [sym__name] = STATE(5875), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2321), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(3212), + [sym_non_lvalue_expression] = STATE(3495), + [sym_lvalue_expression] = STATE(3484), + [sym__expression_statement_expression] = STATE(3462), + [sym_assignment_expression] = STATE(3497), + [sym_binary_expression] = STATE(3462), + [sym_postfix_unary_expression] = STATE(3497), + [sym_prefix_unary_expression] = STATE(3497), + [sym__pointer_indirection_expression] = STATE(2815), + [sym_query_expression] = STATE(3462), + [sym_from_clause] = STATE(6142), + [sym_conditional_expression] = STATE(3462), + [sym_conditional_access_expression] = STATE(3462), + [sym_as_expression] = STATE(3462), + [sym_is_expression] = STATE(3462), + [sym_is_pattern_expression] = STATE(3462), + [sym_cast_expression] = STATE(3462), + [sym_checked_expression] = STATE(3462), + [sym_invocation_expression] = STATE(3497), + [sym_switch_expression] = STATE(3462), + [sym_await_expression] = STATE(3497), + [sym_throw_expression] = STATE(3462), + [sym_element_access_expression] = STATE(2815), + [sym_interpolated_string_expression] = STATE(3462), + [sym_member_access_expression] = STATE(2815), + [sym_object_creation_expression] = STATE(3497), + [sym_parenthesized_expression] = STATE(3497), + [sym__parenthesized_lvalue_expression] = STATE(2815), + [sym_lambda_expression] = STATE(3462), + [sym__lambda_expression_init] = STATE(7384), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3462), + [sym_anonymous_method_expression] = STATE(3462), + [sym_anonymous_object_creation_expression] = STATE(3462), + [sym_implicit_array_creation_expression] = STATE(3462), + [sym_implicit_object_creation_expression] = STATE(3462), + [sym_implicit_stackalloc_expression] = STATE(3462), + [sym_initializer_expression] = STATE(3462), + [sym_default_expression] = STATE(3462), + [sym_with_expression] = STATE(3462), + [sym_sizeof_expression] = STATE(3462), + [sym_typeof_expression] = STATE(3462), + [sym_makeref_expression] = STATE(3462), + [sym_ref_expression] = STATE(3462), + [sym_reftype_expression] = STATE(3462), + [sym_refvalue_expression] = STATE(3462), + [sym_stackalloc_expression] = STATE(3462), + [sym_range_expression] = STATE(3462), + [sym_tuple_expression] = STATE(2815), + [sym_literal] = STATE(3462), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2261), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3462), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(1497), [sym_preproc_endregion] = STATE(1497), [sym_preproc_line] = STATE(1497), @@ -294852,47 +294738,47 @@ 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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3385), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3367), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1307), - [anon_sym_LPAREN] = ACTIONS(1693), - [anon_sym_ref] = ACTIONS(1695), - [anon_sym_LBRACE] = ACTIONS(1313), - [anon_sym_delegate] = ACTIONS(1315), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1305), + [anon_sym_LPAREN] = ACTIONS(1579), + [anon_sym_ref] = ACTIONS(1581), + [anon_sym_LBRACE] = ACTIONS(1311), + [anon_sym_delegate] = ACTIONS(1313), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1697), + [anon_sym_new] = ACTIONS(1583), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1319), - [anon_sym_BANG] = ACTIONS(1701), - [anon_sym_TILDE] = ACTIONS(1701), - [anon_sym_PLUS_PLUS] = ACTIONS(1701), - [anon_sym_DASH_DASH] = ACTIONS(1701), + [anon_sym_checked] = ACTIONS(1317), + [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(1699), - [anon_sym_DASH] = ACTIONS(1699), - [anon_sym_STAR] = ACTIONS(1351), - [anon_sym_CARET] = ACTIONS(1701), - [anon_sym_AMP] = ACTIONS(1701), - [anon_sym_this] = ACTIONS(1323), + [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(1321), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1325), + [anon_sym_base] = ACTIONS(1323), [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1319), + [anon_sym_unchecked] = ACTIONS(1317), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1703), + [anon_sym_throw] = ACTIONS(1591), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1705), - [anon_sym_DOT_DOT] = ACTIONS(1707), + [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), @@ -294905,19 +294791,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1333), + [anon_sym_stackalloc] = ACTIONS(1331), [anon_sym_sizeof] = ACTIONS(129), [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(1335), - [anon_sym___reftype] = ACTIONS(1337), - [anon_sym___refvalue] = ACTIONS(1339), + [anon_sym___makeref] = ACTIONS(1333), + [anon_sym___reftype] = ACTIONS(1335), + [anon_sym___refvalue] = ACTIONS(1337), [sym_null_literal] = ACTIONS(139), [anon_sym_SQUOTE] = ACTIONS(141), [sym_integer_literal] = ACTIONS(139), [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1709), + [aux_sym_preproc_if_token1] = ACTIONS(1339), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -294934,84 +294820,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [1498] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2762), - [sym__name] = STATE(5910), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2204), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(5035), - [sym_non_lvalue_expression] = STATE(3438), - [sym_lvalue_expression] = STATE(3524), - [sym__expression_statement_expression] = STATE(3362), - [sym_assignment_expression] = STATE(3449), - [sym_binary_expression] = STATE(3362), - [sym_postfix_unary_expression] = STATE(3449), - [sym_prefix_unary_expression] = STATE(3449), - [sym__pointer_indirection_expression] = STATE(2747), - [sym_query_expression] = STATE(3362), - [sym_from_clause] = STATE(6174), - [sym_conditional_expression] = STATE(3362), - [sym_conditional_access_expression] = STATE(3362), - [sym_as_expression] = STATE(3362), - [sym_is_expression] = STATE(3362), - [sym_is_pattern_expression] = STATE(3362), - [sym_cast_expression] = STATE(3362), - [sym_checked_expression] = STATE(3362), - [sym_invocation_expression] = STATE(3449), - [sym_switch_expression] = STATE(3362), - [sym_await_expression] = STATE(3449), - [sym_throw_expression] = STATE(3362), - [sym_element_access_expression] = STATE(2747), - [sym_interpolated_string_expression] = STATE(3362), - [sym_member_access_expression] = STATE(2747), - [sym_object_creation_expression] = STATE(3449), - [sym_parenthesized_expression] = STATE(3449), - [sym__parenthesized_lvalue_expression] = STATE(2747), - [sym_lambda_expression] = STATE(3362), - [sym__lambda_expression_init] = STATE(7407), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3362), - [sym_anonymous_method_expression] = STATE(3362), - [sym_anonymous_object_creation_expression] = STATE(3362), - [sym_implicit_array_creation_expression] = STATE(3362), - [sym_implicit_object_creation_expression] = STATE(3362), - [sym_implicit_stackalloc_expression] = STATE(3362), - [sym_initializer_expression] = STATE(3362), - [sym_default_expression] = STATE(3362), - [sym_with_expression] = STATE(3362), - [sym_sizeof_expression] = STATE(3362), - [sym_typeof_expression] = STATE(3362), - [sym_makeref_expression] = STATE(3362), - [sym_ref_expression] = STATE(3362), - [sym_reftype_expression] = STATE(3362), - [sym_refvalue_expression] = STATE(3362), - [sym_stackalloc_expression] = STATE(3362), - [sym_range_expression] = STATE(3362), - [sym_tuple_expression] = STATE(2747), - [sym_literal] = STATE(3362), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3362), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2416), + [sym__name] = STATE(5900), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2193), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(5662), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(2417), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3102), + [sym_postfix_unary_expression] = STATE(3079), + [sym_prefix_unary_expression] = STATE(3079), + [sym__pointer_indirection_expression] = STATE(2415), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6134), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3102), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3079), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2415), + [sym_interpolated_string_expression] = STATE(3102), + [sym_member_access_expression] = STATE(2415), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3079), + [sym__parenthesized_lvalue_expression] = STATE(2415), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7425), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(3102), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3102), + [sym_typeof_expression] = STATE(3102), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2415), + [sym_literal] = STATE(3102), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(1498), [sym_preproc_endregion] = STATE(1498), [sym_preproc_line] = STATE(1498), @@ -295021,47 +294907,47 @@ 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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3385), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1307), - [anon_sym_LPAREN] = ACTIONS(1693), - [anon_sym_ref] = ACTIONS(1695), - [anon_sym_LBRACE] = ACTIONS(1313), - [anon_sym_delegate] = ACTIONS(1315), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1239), + [anon_sym_LPAREN] = ACTIONS(2943), + [anon_sym_ref] = ACTIONS(715), + [anon_sym_LBRACE] = ACTIONS(1481), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1697), + [anon_sym_new] = ACTIONS(1059), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1319), - [anon_sym_BANG] = ACTIONS(1701), - [anon_sym_TILDE] = ACTIONS(1701), - [anon_sym_PLUS_PLUS] = ACTIONS(1701), - [anon_sym_DASH_DASH] = ACTIONS(1701), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(1525), + [anon_sym_TILDE] = ACTIONS(1525), + [anon_sym_PLUS_PLUS] = ACTIONS(1525), + [anon_sym_DASH_DASH] = ACTIONS(1525), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1699), - [anon_sym_DASH] = ACTIONS(1699), - [anon_sym_STAR] = ACTIONS(1351), - [anon_sym_CARET] = ACTIONS(1701), - [anon_sym_AMP] = ACTIONS(1701), - [anon_sym_this] = ACTIONS(1323), + [anon_sym_PLUS] = ACTIONS(1523), + [anon_sym_DASH] = ACTIONS(1523), + [anon_sym_STAR] = ACTIONS(1503), + [anon_sym_CARET] = ACTIONS(1525), + [anon_sym_AMP] = ACTIONS(1525), + [anon_sym_this] = ACTIONS(1261), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1325), + [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1319), + [sym_predefined_type] = ACTIONS(1265), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1703), + [anon_sym_throw] = ACTIONS(1527), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1705), - [anon_sym_DOT_DOT] = ACTIONS(1707), + [anon_sym_await] = ACTIONS(1529), + [anon_sym_DOT_DOT] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -295074,19 +294960,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1333), + [anon_sym_stackalloc] = ACTIONS(127), [anon_sym_sizeof] = ACTIONS(129), [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(1335), - [anon_sym___reftype] = ACTIONS(1337), - [anon_sym___refvalue] = ACTIONS(1339), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), [sym_null_literal] = ACTIONS(139), [anon_sym_SQUOTE] = ACTIONS(141), [sym_integer_literal] = ACTIONS(139), [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1709), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -295103,84 +294989,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [1499] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2762), - [sym__name] = STATE(5910), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2204), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(5036), - [sym_non_lvalue_expression] = STATE(3438), - [sym_lvalue_expression] = STATE(3524), - [sym__expression_statement_expression] = STATE(3362), - [sym_assignment_expression] = STATE(3449), - [sym_binary_expression] = STATE(3362), - [sym_postfix_unary_expression] = STATE(3449), - [sym_prefix_unary_expression] = STATE(3449), - [sym__pointer_indirection_expression] = STATE(2747), - [sym_query_expression] = STATE(3362), - [sym_from_clause] = STATE(6174), - [sym_conditional_expression] = STATE(3362), - [sym_conditional_access_expression] = STATE(3362), - [sym_as_expression] = STATE(3362), - [sym_is_expression] = STATE(3362), - [sym_is_pattern_expression] = STATE(3362), - [sym_cast_expression] = STATE(3362), - [sym_checked_expression] = STATE(3362), - [sym_invocation_expression] = STATE(3449), - [sym_switch_expression] = STATE(3362), - [sym_await_expression] = STATE(3449), - [sym_throw_expression] = STATE(3362), - [sym_element_access_expression] = STATE(2747), - [sym_interpolated_string_expression] = STATE(3362), - [sym_member_access_expression] = STATE(2747), - [sym_object_creation_expression] = STATE(3449), - [sym_parenthesized_expression] = STATE(3449), - [sym__parenthesized_lvalue_expression] = STATE(2747), - [sym_lambda_expression] = STATE(3362), - [sym__lambda_expression_init] = STATE(7407), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3362), - [sym_anonymous_method_expression] = STATE(3362), - [sym_anonymous_object_creation_expression] = STATE(3362), - [sym_implicit_array_creation_expression] = STATE(3362), - [sym_implicit_object_creation_expression] = STATE(3362), - [sym_implicit_stackalloc_expression] = STATE(3362), - [sym_initializer_expression] = STATE(3362), - [sym_default_expression] = STATE(3362), - [sym_with_expression] = STATE(3362), - [sym_sizeof_expression] = STATE(3362), - [sym_typeof_expression] = STATE(3362), - [sym_makeref_expression] = STATE(3362), - [sym_ref_expression] = STATE(3362), - [sym_reftype_expression] = STATE(3362), - [sym_refvalue_expression] = STATE(3362), - [sym_stackalloc_expression] = STATE(3362), - [sym_range_expression] = STATE(3362), - [sym_tuple_expression] = STATE(2747), - [sym_literal] = STATE(3362), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3362), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2416), + [sym__name] = STATE(5890), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2193), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(4086), + [sym_non_lvalue_expression] = STATE(3040), + [sym_lvalue_expression] = STATE(3109), + [sym__expression_statement_expression] = STATE(3035), + [sym_assignment_expression] = STATE(3043), + [sym_binary_expression] = STATE(3035), + [sym_postfix_unary_expression] = STATE(3043), + [sym_prefix_unary_expression] = STATE(3043), + [sym__pointer_indirection_expression] = STATE(2415), + [sym_query_expression] = STATE(3035), + [sym_from_clause] = STATE(6138), + [sym_conditional_expression] = STATE(3035), + [sym_conditional_access_expression] = STATE(3035), + [sym_as_expression] = STATE(3035), + [sym_is_expression] = STATE(3035), + [sym_is_pattern_expression] = STATE(3035), + [sym_cast_expression] = STATE(3035), + [sym_checked_expression] = STATE(3035), + [sym_invocation_expression] = STATE(3043), + [sym_switch_expression] = STATE(3035), + [sym_await_expression] = STATE(3043), + [sym_throw_expression] = STATE(3035), + [sym_element_access_expression] = STATE(2415), + [sym_interpolated_string_expression] = STATE(3035), + [sym_member_access_expression] = STATE(2415), + [sym_object_creation_expression] = STATE(3043), + [sym_parenthesized_expression] = STATE(3043), + [sym__parenthesized_lvalue_expression] = STATE(2415), + [sym_lambda_expression] = STATE(3035), + [sym__lambda_expression_init] = STATE(7374), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3035), + [sym_anonymous_method_expression] = STATE(3035), + [sym_anonymous_object_creation_expression] = STATE(3035), + [sym_implicit_array_creation_expression] = STATE(3035), + [sym_implicit_object_creation_expression] = STATE(3035), + [sym_implicit_stackalloc_expression] = STATE(3035), + [sym_initializer_expression] = STATE(3035), + [sym_default_expression] = STATE(3035), + [sym_with_expression] = STATE(3035), + [sym_sizeof_expression] = STATE(3035), + [sym_typeof_expression] = STATE(3035), + [sym_makeref_expression] = STATE(3035), + [sym_ref_expression] = STATE(3035), + [sym_reftype_expression] = STATE(3035), + [sym_refvalue_expression] = STATE(3035), + [sym_stackalloc_expression] = STATE(3035), + [sym_range_expression] = STATE(3035), + [sym_tuple_expression] = STATE(2415), + [sym_literal] = STATE(3035), + [sym_character_literal] = STATE(3037), + [sym_string_literal] = STATE(3037), + [sym_raw_string_literal] = STATE(3037), + [sym_boolean_literal] = STATE(3037), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3035), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(1499), [sym_preproc_endregion] = STATE(1499), [sym_preproc_line] = STATE(1499), @@ -295190,47 +295076,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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3385), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3455), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1307), - [anon_sym_LPAREN] = ACTIONS(1693), - [anon_sym_ref] = ACTIONS(1695), - [anon_sym_LBRACE] = ACTIONS(1313), - [anon_sym_delegate] = ACTIONS(1315), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1239), + [anon_sym_LPAREN] = ACTIONS(1241), + [anon_sym_ref] = ACTIONS(1243), + [anon_sym_LBRACE] = ACTIONS(1245), + [anon_sym_delegate] = ACTIONS(1247), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1697), + [anon_sym_new] = ACTIONS(1249), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1319), - [anon_sym_BANG] = ACTIONS(1701), - [anon_sym_TILDE] = ACTIONS(1701), - [anon_sym_PLUS_PLUS] = ACTIONS(1701), - [anon_sym_DASH_DASH] = ACTIONS(1701), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1699), - [anon_sym_DASH] = ACTIONS(1699), - [anon_sym_STAR] = ACTIONS(1351), - [anon_sym_CARET] = ACTIONS(1701), - [anon_sym_AMP] = ACTIONS(1701), - [anon_sym_this] = ACTIONS(1323), + [anon_sym_checked] = ACTIONS(1251), + [anon_sym_BANG] = ACTIONS(1255), + [anon_sym_TILDE] = ACTIONS(1255), + [anon_sym_PLUS_PLUS] = ACTIONS(1255), + [anon_sym_DASH_DASH] = ACTIONS(1255), + [anon_sym_true] = ACTIONS(1257), + [anon_sym_false] = ACTIONS(1257), + [anon_sym_PLUS] = ACTIONS(1253), + [anon_sym_DASH] = ACTIONS(1253), + [anon_sym_STAR] = ACTIONS(1259), + [anon_sym_CARET] = ACTIONS(1255), + [anon_sym_AMP] = ACTIONS(1255), + [anon_sym_this] = ACTIONS(1261), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1325), + [anon_sym_base] = ACTIONS(1263), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1319), + [sym_predefined_type] = ACTIONS(1265), + [anon_sym_unchecked] = ACTIONS(1251), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1703), + [anon_sym_default] = ACTIONS(1267), + [anon_sym_throw] = ACTIONS(1269), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1705), - [anon_sym_DOT_DOT] = ACTIONS(1707), + [anon_sym_await] = ACTIONS(1271), + [anon_sym_DOT_DOT] = ACTIONS(1273), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -295243,19 +295129,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1333), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(1335), - [anon_sym___reftype] = ACTIONS(1337), - [anon_sym___refvalue] = ACTIONS(1339), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1709), + [anon_sym_stackalloc] = ACTIONS(1275), + [anon_sym_sizeof] = ACTIONS(1277), + [anon_sym_typeof] = ACTIONS(1279), + [anon_sym___makeref] = ACTIONS(1281), + [anon_sym___reftype] = ACTIONS(1283), + [anon_sym___refvalue] = ACTIONS(1285), + [sym_null_literal] = ACTIONS(1287), + [anon_sym_SQUOTE] = ACTIONS(1289), + [sym_integer_literal] = ACTIONS(1287), + [sym_real_literal] = ACTIONS(1291), + [anon_sym_DQUOTE] = ACTIONS(1293), + [sym_verbatim_string_literal] = ACTIONS(1291), + [aux_sym_preproc_if_token1] = ACTIONS(1295), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -295266,90 +295152,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(151), - [sym_interpolation_verbatim_start] = ACTIONS(153), - [sym_interpolation_raw_start] = ACTIONS(155), - [sym_raw_string_start] = ACTIONS(157), + [sym_interpolation_regular_start] = ACTIONS(1297), + [sym_interpolation_verbatim_start] = ACTIONS(1299), + [sym_interpolation_raw_start] = ACTIONS(1301), + [sym_raw_string_start] = ACTIONS(1303), }, [1500] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2762), - [sym__name] = STATE(5910), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2204), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(5037), - [sym_non_lvalue_expression] = STATE(3438), - [sym_lvalue_expression] = STATE(3524), - [sym__expression_statement_expression] = STATE(3362), - [sym_assignment_expression] = STATE(3449), - [sym_binary_expression] = STATE(3362), - [sym_postfix_unary_expression] = STATE(3449), - [sym_prefix_unary_expression] = STATE(3449), - [sym__pointer_indirection_expression] = STATE(2747), - [sym_query_expression] = STATE(3362), - [sym_from_clause] = STATE(6174), - [sym_conditional_expression] = STATE(3362), - [sym_conditional_access_expression] = STATE(3362), - [sym_as_expression] = STATE(3362), - [sym_is_expression] = STATE(3362), - [sym_is_pattern_expression] = STATE(3362), - [sym_cast_expression] = STATE(3362), - [sym_checked_expression] = STATE(3362), - [sym_invocation_expression] = STATE(3449), - [sym_switch_expression] = STATE(3362), - [sym_await_expression] = STATE(3449), - [sym_throw_expression] = STATE(3362), - [sym_element_access_expression] = STATE(2747), - [sym_interpolated_string_expression] = STATE(3362), - [sym_member_access_expression] = STATE(2747), - [sym_object_creation_expression] = STATE(3449), - [sym_parenthesized_expression] = STATE(3449), - [sym__parenthesized_lvalue_expression] = STATE(2747), - [sym_lambda_expression] = STATE(3362), - [sym__lambda_expression_init] = STATE(7407), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3362), - [sym_anonymous_method_expression] = STATE(3362), - [sym_anonymous_object_creation_expression] = STATE(3362), - [sym_implicit_array_creation_expression] = STATE(3362), - [sym_implicit_object_creation_expression] = STATE(3362), - [sym_implicit_stackalloc_expression] = STATE(3362), - [sym_initializer_expression] = STATE(3362), - [sym_default_expression] = STATE(3362), - [sym_with_expression] = STATE(3362), - [sym_sizeof_expression] = STATE(3362), - [sym_typeof_expression] = STATE(3362), - [sym_makeref_expression] = STATE(3362), - [sym_ref_expression] = STATE(3362), - [sym_reftype_expression] = STATE(3362), - [sym_refvalue_expression] = STATE(3362), - [sym_stackalloc_expression] = STATE(3362), - [sym_range_expression] = STATE(3362), - [sym_tuple_expression] = STATE(2747), - [sym_literal] = STATE(3362), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3362), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(5152), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2196), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(5363), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3683), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3102), + [sym_postfix_unary_expression] = STATE(3079), + [sym_prefix_unary_expression] = STATE(3079), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6147), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3102), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3079), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3102), + [sym_member_access_expression] = STATE(2472), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3079), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7404), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(3102), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3102), + [sym_typeof_expression] = STATE(3102), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2472), + [sym_literal] = STATE(3102), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2261), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(1500), [sym_preproc_endregion] = STATE(1500), [sym_preproc_line] = STATE(1500), @@ -295359,47 +295245,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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3385), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1307), - [anon_sym_LPAREN] = ACTIONS(1693), - [anon_sym_ref] = ACTIONS(1695), - [anon_sym_LBRACE] = ACTIONS(1313), - [anon_sym_delegate] = ACTIONS(1315), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1479), + [anon_sym_LPAREN] = ACTIONS(1965), + [anon_sym_ref] = ACTIONS(1967), + [anon_sym_LBRACE] = ACTIONS(1481), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1697), + [anon_sym_new] = ACTIONS(1059), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1319), - [anon_sym_BANG] = ACTIONS(1701), - [anon_sym_TILDE] = ACTIONS(1701), - [anon_sym_PLUS_PLUS] = ACTIONS(1701), - [anon_sym_DASH_DASH] = ACTIONS(1701), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(1971), + [anon_sym_TILDE] = ACTIONS(1971), + [anon_sym_PLUS_PLUS] = ACTIONS(1971), + [anon_sym_DASH_DASH] = ACTIONS(1971), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1699), - [anon_sym_DASH] = ACTIONS(1699), - [anon_sym_STAR] = ACTIONS(1351), - [anon_sym_CARET] = ACTIONS(1701), - [anon_sym_AMP] = ACTIONS(1701), - [anon_sym_this] = ACTIONS(1323), + [anon_sym_PLUS] = ACTIONS(1969), + [anon_sym_DASH] = ACTIONS(1969), + [anon_sym_STAR] = ACTIONS(1973), + [anon_sym_CARET] = ACTIONS(1971), + [anon_sym_AMP] = ACTIONS(1971), + [anon_sym_this] = ACTIONS(83), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1325), + [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1319), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1703), + [anon_sym_throw] = ACTIONS(1975), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1705), - [anon_sym_DOT_DOT] = ACTIONS(1707), + [anon_sym_await] = ACTIONS(1977), + [anon_sym_DOT_DOT] = ACTIONS(1979), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -295412,19 +295298,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1333), + [anon_sym_stackalloc] = ACTIONS(127), [anon_sym_sizeof] = ACTIONS(129), [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(1335), - [anon_sym___reftype] = ACTIONS(1337), - [anon_sym___refvalue] = ACTIONS(1339), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), [sym_null_literal] = ACTIONS(139), [anon_sym_SQUOTE] = ACTIONS(141), [sym_integer_literal] = ACTIONS(139), [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1709), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -295441,84 +295327,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [1501] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2762), - [sym__name] = STATE(5910), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2204), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(5039), - [sym_non_lvalue_expression] = STATE(3438), - [sym_lvalue_expression] = STATE(3524), - [sym__expression_statement_expression] = STATE(3362), - [sym_assignment_expression] = STATE(3449), - [sym_binary_expression] = STATE(3362), - [sym_postfix_unary_expression] = STATE(3449), - [sym_prefix_unary_expression] = STATE(3449), - [sym__pointer_indirection_expression] = STATE(2747), - [sym_query_expression] = STATE(3362), - [sym_from_clause] = STATE(6174), - [sym_conditional_expression] = STATE(3362), - [sym_conditional_access_expression] = STATE(3362), - [sym_as_expression] = STATE(3362), - [sym_is_expression] = STATE(3362), - [sym_is_pattern_expression] = STATE(3362), - [sym_cast_expression] = STATE(3362), - [sym_checked_expression] = STATE(3362), - [sym_invocation_expression] = STATE(3449), - [sym_switch_expression] = STATE(3362), - [sym_await_expression] = STATE(3449), - [sym_throw_expression] = STATE(3362), - [sym_element_access_expression] = STATE(2747), - [sym_interpolated_string_expression] = STATE(3362), - [sym_member_access_expression] = STATE(2747), - [sym_object_creation_expression] = STATE(3449), - [sym_parenthesized_expression] = STATE(3449), - [sym__parenthesized_lvalue_expression] = STATE(2747), - [sym_lambda_expression] = STATE(3362), - [sym__lambda_expression_init] = STATE(7407), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3362), - [sym_anonymous_method_expression] = STATE(3362), - [sym_anonymous_object_creation_expression] = STATE(3362), - [sym_implicit_array_creation_expression] = STATE(3362), - [sym_implicit_object_creation_expression] = STATE(3362), - [sym_implicit_stackalloc_expression] = STATE(3362), - [sym_initializer_expression] = STATE(3362), - [sym_default_expression] = STATE(3362), - [sym_with_expression] = STATE(3362), - [sym_sizeof_expression] = STATE(3362), - [sym_typeof_expression] = STATE(3362), - [sym_makeref_expression] = STATE(3362), - [sym_ref_expression] = STATE(3362), - [sym_reftype_expression] = STATE(3362), - [sym_refvalue_expression] = STATE(3362), - [sym_stackalloc_expression] = STATE(3362), - [sym_range_expression] = STATE(3362), - [sym_tuple_expression] = STATE(2747), - [sym_literal] = STATE(3362), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3362), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(5152), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2196), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(3528), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3683), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3102), + [sym_postfix_unary_expression] = STATE(3079), + [sym_prefix_unary_expression] = STATE(3079), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6147), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3102), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3079), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3102), + [sym_member_access_expression] = STATE(2472), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3079), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7404), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(3102), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3102), + [sym_typeof_expression] = STATE(3102), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2472), + [sym_literal] = STATE(3102), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2261), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(1501), [sym_preproc_endregion] = STATE(1501), [sym_preproc_line] = STATE(1501), @@ -295528,47 +295414,47 @@ 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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3385), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1307), - [anon_sym_LPAREN] = ACTIONS(1693), - [anon_sym_ref] = ACTIONS(1695), - [anon_sym_LBRACE] = ACTIONS(1313), - [anon_sym_delegate] = ACTIONS(1315), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1479), + [anon_sym_LPAREN] = ACTIONS(1965), + [anon_sym_ref] = ACTIONS(1967), + [anon_sym_LBRACE] = ACTIONS(1481), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1697), + [anon_sym_new] = ACTIONS(1059), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1319), - [anon_sym_BANG] = ACTIONS(1701), - [anon_sym_TILDE] = ACTIONS(1701), - [anon_sym_PLUS_PLUS] = ACTIONS(1701), - [anon_sym_DASH_DASH] = ACTIONS(1701), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(1971), + [anon_sym_TILDE] = ACTIONS(1971), + [anon_sym_PLUS_PLUS] = ACTIONS(1971), + [anon_sym_DASH_DASH] = ACTIONS(1971), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1699), - [anon_sym_DASH] = ACTIONS(1699), - [anon_sym_STAR] = ACTIONS(1351), - [anon_sym_CARET] = ACTIONS(1701), - [anon_sym_AMP] = ACTIONS(1701), - [anon_sym_this] = ACTIONS(1323), + [anon_sym_PLUS] = ACTIONS(1969), + [anon_sym_DASH] = ACTIONS(1969), + [anon_sym_STAR] = ACTIONS(1973), + [anon_sym_CARET] = ACTIONS(1971), + [anon_sym_AMP] = ACTIONS(1971), + [anon_sym_this] = ACTIONS(83), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1325), + [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1319), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1703), + [anon_sym_throw] = ACTIONS(1975), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1705), - [anon_sym_DOT_DOT] = ACTIONS(1707), + [anon_sym_await] = ACTIONS(1977), + [anon_sym_DOT_DOT] = ACTIONS(1979), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -295581,19 +295467,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1333), + [anon_sym_stackalloc] = ACTIONS(127), [anon_sym_sizeof] = ACTIONS(129), [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(1335), - [anon_sym___reftype] = ACTIONS(1337), - [anon_sym___refvalue] = ACTIONS(1339), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), [sym_null_literal] = ACTIONS(139), [anon_sym_SQUOTE] = ACTIONS(141), [sym_integer_literal] = ACTIONS(139), [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1709), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -295610,84 +295496,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [1502] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2762), - [sym__name] = STATE(5910), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2204), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(4257), - [sym_non_lvalue_expression] = STATE(3438), - [sym_lvalue_expression] = STATE(3162), - [sym__expression_statement_expression] = STATE(3362), - [sym_assignment_expression] = STATE(3449), - [sym_binary_expression] = STATE(3362), - [sym_postfix_unary_expression] = STATE(3449), - [sym_prefix_unary_expression] = STATE(3449), - [sym__pointer_indirection_expression] = STATE(2747), - [sym_query_expression] = STATE(3362), - [sym_from_clause] = STATE(6171), - [sym_conditional_expression] = STATE(3362), - [sym_conditional_access_expression] = STATE(3362), - [sym_as_expression] = STATE(3362), - [sym_is_expression] = STATE(3362), - [sym_is_pattern_expression] = STATE(3362), - [sym_cast_expression] = STATE(3362), - [sym_checked_expression] = STATE(3362), - [sym_invocation_expression] = STATE(3449), - [sym_switch_expression] = STATE(3362), - [sym_await_expression] = STATE(3449), - [sym_throw_expression] = STATE(3362), - [sym_element_access_expression] = STATE(2747), - [sym_interpolated_string_expression] = STATE(3362), - [sym_member_access_expression] = STATE(2747), - [sym_object_creation_expression] = STATE(3449), - [sym_parenthesized_expression] = STATE(3449), - [sym__parenthesized_lvalue_expression] = STATE(2747), - [sym_lambda_expression] = STATE(3362), - [sym__lambda_expression_init] = STATE(7320), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3362), - [sym_anonymous_method_expression] = STATE(3362), - [sym_anonymous_object_creation_expression] = STATE(3362), - [sym_implicit_array_creation_expression] = STATE(3362), - [sym_implicit_object_creation_expression] = STATE(3362), - [sym_implicit_stackalloc_expression] = STATE(3362), - [sym_initializer_expression] = STATE(3362), - [sym_default_expression] = STATE(3362), - [sym_with_expression] = STATE(3362), - [sym_sizeof_expression] = STATE(3362), - [sym_typeof_expression] = STATE(3362), - [sym_makeref_expression] = STATE(3362), - [sym_ref_expression] = STATE(3362), - [sym_reftype_expression] = STATE(3362), - [sym_refvalue_expression] = STATE(3362), - [sym_stackalloc_expression] = STATE(3362), - [sym_range_expression] = STATE(3362), - [sym_tuple_expression] = STATE(2747), - [sym_literal] = STATE(3362), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3362), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(5152), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2196), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(5407), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3683), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3102), + [sym_postfix_unary_expression] = STATE(3079), + [sym_prefix_unary_expression] = STATE(3079), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6147), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3102), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3079), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3102), + [sym_member_access_expression] = STATE(2472), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3079), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7404), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(3102), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3102), + [sym_typeof_expression] = STATE(3102), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2472), + [sym_literal] = STATE(3102), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2261), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(1502), [sym_preproc_endregion] = STATE(1502), [sym_preproc_line] = STATE(1502), @@ -295697,47 +295583,47 @@ 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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3385), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1307), - [anon_sym_LPAREN] = ACTIONS(1343), - [anon_sym_ref] = ACTIONS(1345), - [anon_sym_LBRACE] = ACTIONS(1313), - [anon_sym_delegate] = ACTIONS(1315), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1479), + [anon_sym_LPAREN] = ACTIONS(1965), + [anon_sym_ref] = ACTIONS(1967), + [anon_sym_LBRACE] = ACTIONS(1481), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1317), + [anon_sym_new] = ACTIONS(1059), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1319), - [anon_sym_BANG] = ACTIONS(1349), - [anon_sym_TILDE] = ACTIONS(1349), - [anon_sym_PLUS_PLUS] = ACTIONS(1349), - [anon_sym_DASH_DASH] = ACTIONS(1349), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(1971), + [anon_sym_TILDE] = ACTIONS(1971), + [anon_sym_PLUS_PLUS] = ACTIONS(1971), + [anon_sym_DASH_DASH] = ACTIONS(1971), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1347), - [anon_sym_DASH] = ACTIONS(1347), - [anon_sym_STAR] = ACTIONS(1351), - [anon_sym_CARET] = ACTIONS(1349), - [anon_sym_AMP] = ACTIONS(1349), - [anon_sym_this] = ACTIONS(1323), + [anon_sym_PLUS] = ACTIONS(1969), + [anon_sym_DASH] = ACTIONS(1969), + [anon_sym_STAR] = ACTIONS(1973), + [anon_sym_CARET] = ACTIONS(1971), + [anon_sym_AMP] = ACTIONS(1971), + [anon_sym_this] = ACTIONS(83), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1325), + [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1319), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1353), + [anon_sym_throw] = ACTIONS(1975), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1355), - [anon_sym_DOT_DOT] = ACTIONS(1357), + [anon_sym_await] = ACTIONS(1977), + [anon_sym_DOT_DOT] = ACTIONS(1979), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -295750,19 +295636,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1333), + [anon_sym_stackalloc] = ACTIONS(127), [anon_sym_sizeof] = ACTIONS(129), [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(1335), - [anon_sym___reftype] = ACTIONS(1337), - [anon_sym___refvalue] = ACTIONS(1339), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), [sym_null_literal] = ACTIONS(139), [anon_sym_SQUOTE] = ACTIONS(141), [sym_integer_literal] = ACTIONS(139), [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1341), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -295779,84 +295665,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [1503] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2762), - [sym__name] = STATE(5910), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2204), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(5041), - [sym_non_lvalue_expression] = STATE(3438), - [sym_lvalue_expression] = STATE(3524), - [sym__expression_statement_expression] = STATE(3362), - [sym_assignment_expression] = STATE(3449), - [sym_binary_expression] = STATE(3362), - [sym_postfix_unary_expression] = STATE(3449), - [sym_prefix_unary_expression] = STATE(3449), - [sym__pointer_indirection_expression] = STATE(2747), - [sym_query_expression] = STATE(3362), - [sym_from_clause] = STATE(6174), - [sym_conditional_expression] = STATE(3362), - [sym_conditional_access_expression] = STATE(3362), - [sym_as_expression] = STATE(3362), - [sym_is_expression] = STATE(3362), - [sym_is_pattern_expression] = STATE(3362), - [sym_cast_expression] = STATE(3362), - [sym_checked_expression] = STATE(3362), - [sym_invocation_expression] = STATE(3449), - [sym_switch_expression] = STATE(3362), - [sym_await_expression] = STATE(3449), - [sym_throw_expression] = STATE(3362), - [sym_element_access_expression] = STATE(2747), - [sym_interpolated_string_expression] = STATE(3362), - [sym_member_access_expression] = STATE(2747), - [sym_object_creation_expression] = STATE(3449), - [sym_parenthesized_expression] = STATE(3449), - [sym__parenthesized_lvalue_expression] = STATE(2747), - [sym_lambda_expression] = STATE(3362), - [sym__lambda_expression_init] = STATE(7407), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3362), - [sym_anonymous_method_expression] = STATE(3362), - [sym_anonymous_object_creation_expression] = STATE(3362), - [sym_implicit_array_creation_expression] = STATE(3362), - [sym_implicit_object_creation_expression] = STATE(3362), - [sym_implicit_stackalloc_expression] = STATE(3362), - [sym_initializer_expression] = STATE(3362), - [sym_default_expression] = STATE(3362), - [sym_with_expression] = STATE(3362), - [sym_sizeof_expression] = STATE(3362), - [sym_typeof_expression] = STATE(3362), - [sym_makeref_expression] = STATE(3362), - [sym_ref_expression] = STATE(3362), - [sym_reftype_expression] = STATE(3362), - [sym_refvalue_expression] = STATE(3362), - [sym_stackalloc_expression] = STATE(3362), - [sym_range_expression] = STATE(3362), - [sym_tuple_expression] = STATE(2747), - [sym_literal] = STATE(3362), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3362), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(5152), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2196), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(5410), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3683), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3102), + [sym_postfix_unary_expression] = STATE(3079), + [sym_prefix_unary_expression] = STATE(3079), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6147), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3102), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3079), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3102), + [sym_member_access_expression] = STATE(2472), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3079), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7404), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(3102), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3102), + [sym_typeof_expression] = STATE(3102), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2472), + [sym_literal] = STATE(3102), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2261), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(1503), [sym_preproc_endregion] = STATE(1503), [sym_preproc_line] = STATE(1503), @@ -295866,47 +295752,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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3385), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1307), - [anon_sym_LPAREN] = ACTIONS(1693), - [anon_sym_ref] = ACTIONS(1695), - [anon_sym_LBRACE] = ACTIONS(1313), - [anon_sym_delegate] = ACTIONS(1315), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1479), + [anon_sym_LPAREN] = ACTIONS(1965), + [anon_sym_ref] = ACTIONS(1967), + [anon_sym_LBRACE] = ACTIONS(1481), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1697), + [anon_sym_new] = ACTIONS(1059), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1319), - [anon_sym_BANG] = ACTIONS(1701), - [anon_sym_TILDE] = ACTIONS(1701), - [anon_sym_PLUS_PLUS] = ACTIONS(1701), - [anon_sym_DASH_DASH] = ACTIONS(1701), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(1971), + [anon_sym_TILDE] = ACTIONS(1971), + [anon_sym_PLUS_PLUS] = ACTIONS(1971), + [anon_sym_DASH_DASH] = ACTIONS(1971), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1699), - [anon_sym_DASH] = ACTIONS(1699), - [anon_sym_STAR] = ACTIONS(1351), - [anon_sym_CARET] = ACTIONS(1701), - [anon_sym_AMP] = ACTIONS(1701), - [anon_sym_this] = ACTIONS(1323), + [anon_sym_PLUS] = ACTIONS(1969), + [anon_sym_DASH] = ACTIONS(1969), + [anon_sym_STAR] = ACTIONS(1973), + [anon_sym_CARET] = ACTIONS(1971), + [anon_sym_AMP] = ACTIONS(1971), + [anon_sym_this] = ACTIONS(83), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1325), + [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1319), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1703), + [anon_sym_throw] = ACTIONS(1975), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1705), - [anon_sym_DOT_DOT] = ACTIONS(1707), + [anon_sym_await] = ACTIONS(1977), + [anon_sym_DOT_DOT] = ACTIONS(1979), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -295919,19 +295805,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1333), + [anon_sym_stackalloc] = ACTIONS(127), [anon_sym_sizeof] = ACTIONS(129), [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(1335), - [anon_sym___reftype] = ACTIONS(1337), - [anon_sym___refvalue] = ACTIONS(1339), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), [sym_null_literal] = ACTIONS(139), [anon_sym_SQUOTE] = ACTIONS(141), [sym_integer_literal] = ACTIONS(139), [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1709), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -295948,84 +295834,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [1504] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2762), - [sym__name] = STATE(5910), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2204), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(5042), - [sym_non_lvalue_expression] = STATE(3438), - [sym_lvalue_expression] = STATE(3524), - [sym__expression_statement_expression] = STATE(3362), - [sym_assignment_expression] = STATE(3449), - [sym_binary_expression] = STATE(3362), - [sym_postfix_unary_expression] = STATE(3449), - [sym_prefix_unary_expression] = STATE(3449), - [sym__pointer_indirection_expression] = STATE(2747), - [sym_query_expression] = STATE(3362), - [sym_from_clause] = STATE(6174), - [sym_conditional_expression] = STATE(3362), - [sym_conditional_access_expression] = STATE(3362), - [sym_as_expression] = STATE(3362), - [sym_is_expression] = STATE(3362), - [sym_is_pattern_expression] = STATE(3362), - [sym_cast_expression] = STATE(3362), - [sym_checked_expression] = STATE(3362), - [sym_invocation_expression] = STATE(3449), - [sym_switch_expression] = STATE(3362), - [sym_await_expression] = STATE(3449), - [sym_throw_expression] = STATE(3362), - [sym_element_access_expression] = STATE(2747), - [sym_interpolated_string_expression] = STATE(3362), - [sym_member_access_expression] = STATE(2747), - [sym_object_creation_expression] = STATE(3449), - [sym_parenthesized_expression] = STATE(3449), - [sym__parenthesized_lvalue_expression] = STATE(2747), - [sym_lambda_expression] = STATE(3362), - [sym__lambda_expression_init] = STATE(7407), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3362), - [sym_anonymous_method_expression] = STATE(3362), - [sym_anonymous_object_creation_expression] = STATE(3362), - [sym_implicit_array_creation_expression] = STATE(3362), - [sym_implicit_object_creation_expression] = STATE(3362), - [sym_implicit_stackalloc_expression] = STATE(3362), - [sym_initializer_expression] = STATE(3362), - [sym_default_expression] = STATE(3362), - [sym_with_expression] = STATE(3362), - [sym_sizeof_expression] = STATE(3362), - [sym_typeof_expression] = STATE(3362), - [sym_makeref_expression] = STATE(3362), - [sym_ref_expression] = STATE(3362), - [sym_reftype_expression] = STATE(3362), - [sym_refvalue_expression] = STATE(3362), - [sym_stackalloc_expression] = STATE(3362), - [sym_range_expression] = STATE(3362), - [sym_tuple_expression] = STATE(2747), - [sym_literal] = STATE(3362), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3362), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(5152), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2196), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(5414), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3683), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3102), + [sym_postfix_unary_expression] = STATE(3079), + [sym_prefix_unary_expression] = STATE(3079), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6147), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3102), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3079), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3102), + [sym_member_access_expression] = STATE(2472), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3079), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7404), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(3102), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3102), + [sym_typeof_expression] = STATE(3102), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2472), + [sym_literal] = STATE(3102), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2261), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(1504), [sym_preproc_endregion] = STATE(1504), [sym_preproc_line] = STATE(1504), @@ -296035,47 +295921,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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3385), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1307), - [anon_sym_LPAREN] = ACTIONS(1693), - [anon_sym_ref] = ACTIONS(1695), - [anon_sym_LBRACE] = ACTIONS(1313), - [anon_sym_delegate] = ACTIONS(1315), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1479), + [anon_sym_LPAREN] = ACTIONS(1965), + [anon_sym_ref] = ACTIONS(1967), + [anon_sym_LBRACE] = ACTIONS(1481), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1697), + [anon_sym_new] = ACTIONS(1059), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1319), - [anon_sym_BANG] = ACTIONS(1701), - [anon_sym_TILDE] = ACTIONS(1701), - [anon_sym_PLUS_PLUS] = ACTIONS(1701), - [anon_sym_DASH_DASH] = ACTIONS(1701), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(1971), + [anon_sym_TILDE] = ACTIONS(1971), + [anon_sym_PLUS_PLUS] = ACTIONS(1971), + [anon_sym_DASH_DASH] = ACTIONS(1971), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1699), - [anon_sym_DASH] = ACTIONS(1699), - [anon_sym_STAR] = ACTIONS(1351), - [anon_sym_CARET] = ACTIONS(1701), - [anon_sym_AMP] = ACTIONS(1701), - [anon_sym_this] = ACTIONS(1323), + [anon_sym_PLUS] = ACTIONS(1969), + [anon_sym_DASH] = ACTIONS(1969), + [anon_sym_STAR] = ACTIONS(1973), + [anon_sym_CARET] = ACTIONS(1971), + [anon_sym_AMP] = ACTIONS(1971), + [anon_sym_this] = ACTIONS(83), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1325), + [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1319), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1703), + [anon_sym_throw] = ACTIONS(1975), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1705), - [anon_sym_DOT_DOT] = ACTIONS(1707), + [anon_sym_await] = ACTIONS(1977), + [anon_sym_DOT_DOT] = ACTIONS(1979), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -296088,19 +295974,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1333), + [anon_sym_stackalloc] = ACTIONS(127), [anon_sym_sizeof] = ACTIONS(129), [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(1335), - [anon_sym___reftype] = ACTIONS(1337), - [anon_sym___refvalue] = ACTIONS(1339), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), [sym_null_literal] = ACTIONS(139), [anon_sym_SQUOTE] = ACTIONS(141), [sym_integer_literal] = ACTIONS(139), [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1709), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -296117,84 +296003,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [1505] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2762), - [sym__name] = STATE(5910), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2204), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(5043), - [sym_non_lvalue_expression] = STATE(3438), - [sym_lvalue_expression] = STATE(3524), - [sym__expression_statement_expression] = STATE(3362), - [sym_assignment_expression] = STATE(3449), - [sym_binary_expression] = STATE(3362), - [sym_postfix_unary_expression] = STATE(3449), - [sym_prefix_unary_expression] = STATE(3449), - [sym__pointer_indirection_expression] = STATE(2747), - [sym_query_expression] = STATE(3362), - [sym_from_clause] = STATE(6174), - [sym_conditional_expression] = STATE(3362), - [sym_conditional_access_expression] = STATE(3362), - [sym_as_expression] = STATE(3362), - [sym_is_expression] = STATE(3362), - [sym_is_pattern_expression] = STATE(3362), - [sym_cast_expression] = STATE(3362), - [sym_checked_expression] = STATE(3362), - [sym_invocation_expression] = STATE(3449), - [sym_switch_expression] = STATE(3362), - [sym_await_expression] = STATE(3449), - [sym_throw_expression] = STATE(3362), - [sym_element_access_expression] = STATE(2747), - [sym_interpolated_string_expression] = STATE(3362), - [sym_member_access_expression] = STATE(2747), - [sym_object_creation_expression] = STATE(3449), - [sym_parenthesized_expression] = STATE(3449), - [sym__parenthesized_lvalue_expression] = STATE(2747), - [sym_lambda_expression] = STATE(3362), - [sym__lambda_expression_init] = STATE(7407), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3362), - [sym_anonymous_method_expression] = STATE(3362), - [sym_anonymous_object_creation_expression] = STATE(3362), - [sym_implicit_array_creation_expression] = STATE(3362), - [sym_implicit_object_creation_expression] = STATE(3362), - [sym_implicit_stackalloc_expression] = STATE(3362), - [sym_initializer_expression] = STATE(3362), - [sym_default_expression] = STATE(3362), - [sym_with_expression] = STATE(3362), - [sym_sizeof_expression] = STATE(3362), - [sym_typeof_expression] = STATE(3362), - [sym_makeref_expression] = STATE(3362), - [sym_ref_expression] = STATE(3362), - [sym_reftype_expression] = STATE(3362), - [sym_refvalue_expression] = STATE(3362), - [sym_stackalloc_expression] = STATE(3362), - [sym_range_expression] = STATE(3362), - [sym_tuple_expression] = STATE(2747), - [sym_literal] = STATE(3362), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3362), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(5152), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2196), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(5314), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3683), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3102), + [sym_postfix_unary_expression] = STATE(3079), + [sym_prefix_unary_expression] = STATE(3079), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6147), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3102), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3079), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3102), + [sym_member_access_expression] = STATE(2472), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3079), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7404), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(3102), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3102), + [sym_typeof_expression] = STATE(3102), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2472), + [sym_literal] = STATE(3102), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2261), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(1505), [sym_preproc_endregion] = STATE(1505), [sym_preproc_line] = STATE(1505), @@ -296204,47 +296090,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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3385), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1307), - [anon_sym_LPAREN] = ACTIONS(1693), - [anon_sym_ref] = ACTIONS(1695), - [anon_sym_LBRACE] = ACTIONS(1313), - [anon_sym_delegate] = ACTIONS(1315), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1479), + [anon_sym_LPAREN] = ACTIONS(1965), + [anon_sym_ref] = ACTIONS(1967), + [anon_sym_LBRACE] = ACTIONS(1481), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1697), + [anon_sym_new] = ACTIONS(1059), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1319), - [anon_sym_BANG] = ACTIONS(1701), - [anon_sym_TILDE] = ACTIONS(1701), - [anon_sym_PLUS_PLUS] = ACTIONS(1701), - [anon_sym_DASH_DASH] = ACTIONS(1701), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(1971), + [anon_sym_TILDE] = ACTIONS(1971), + [anon_sym_PLUS_PLUS] = ACTIONS(1971), + [anon_sym_DASH_DASH] = ACTIONS(1971), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1699), - [anon_sym_DASH] = ACTIONS(1699), - [anon_sym_STAR] = ACTIONS(1351), - [anon_sym_CARET] = ACTIONS(1701), - [anon_sym_AMP] = ACTIONS(1701), - [anon_sym_this] = ACTIONS(1323), + [anon_sym_PLUS] = ACTIONS(1969), + [anon_sym_DASH] = ACTIONS(1969), + [anon_sym_STAR] = ACTIONS(1973), + [anon_sym_CARET] = ACTIONS(1971), + [anon_sym_AMP] = ACTIONS(1971), + [anon_sym_this] = ACTIONS(83), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1325), + [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1319), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1703), + [anon_sym_throw] = ACTIONS(1975), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1705), - [anon_sym_DOT_DOT] = ACTIONS(1707), + [anon_sym_await] = ACTIONS(1977), + [anon_sym_DOT_DOT] = ACTIONS(1979), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -296257,19 +296143,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1333), + [anon_sym_stackalloc] = ACTIONS(127), [anon_sym_sizeof] = ACTIONS(129), [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(1335), - [anon_sym___reftype] = ACTIONS(1337), - [anon_sym___refvalue] = ACTIONS(1339), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), [sym_null_literal] = ACTIONS(139), [anon_sym_SQUOTE] = ACTIONS(141), [sym_integer_literal] = ACTIONS(139), [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1709), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -296286,84 +296172,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [1506] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(5907), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2404), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(4102), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3122), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3080), - [sym_postfix_unary_expression] = STATE(3111), - [sym_prefix_unary_expression] = STATE(3111), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6149), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3080), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3111), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3080), - [sym_member_access_expression] = STATE(2484), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3111), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7563), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(3080), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3080), - [sym_typeof_expression] = STATE(3080), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2484), - [sym_literal] = STATE(3080), - [sym_character_literal] = STATE(3011), - [sym_string_literal] = STATE(3011), - [sym_raw_string_literal] = STATE(3011), - [sym_boolean_literal] = STATE(3011), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(5152), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2196), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(5416), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3683), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3102), + [sym_postfix_unary_expression] = STATE(3079), + [sym_prefix_unary_expression] = STATE(3079), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6147), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3102), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3079), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3102), + [sym_member_access_expression] = STATE(2472), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3079), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7404), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(3102), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3102), + [sym_typeof_expression] = STATE(3102), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2472), + [sym_literal] = STATE(3102), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2261), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(1506), [sym_preproc_endregion] = STATE(1506), [sym_preproc_line] = STATE(1506), @@ -296373,47 +296259,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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1481), - [anon_sym_LPAREN] = ACTIONS(1933), - [anon_sym_ref] = ACTIONS(1935), - [anon_sym_LBRACE] = ACTIONS(1487), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1479), + [anon_sym_LPAREN] = ACTIONS(1965), + [anon_sym_ref] = ACTIONS(1967), + [anon_sym_LBRACE] = ACTIONS(1481), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1937), + [anon_sym_new] = ACTIONS(1059), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1067), - [anon_sym_BANG] = ACTIONS(1941), - [anon_sym_TILDE] = ACTIONS(1941), - [anon_sym_PLUS_PLUS] = ACTIONS(1941), - [anon_sym_DASH_DASH] = ACTIONS(1941), - [anon_sym_true] = ACTIONS(1259), - [anon_sym_false] = ACTIONS(1259), - [anon_sym_PLUS] = ACTIONS(1939), - [anon_sym_DASH] = ACTIONS(1939), - [anon_sym_STAR] = ACTIONS(1943), - [anon_sym_CARET] = ACTIONS(1941), - [anon_sym_AMP] = ACTIONS(1941), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(1971), + [anon_sym_TILDE] = ACTIONS(1971), + [anon_sym_PLUS_PLUS] = ACTIONS(1971), + [anon_sym_DASH_DASH] = ACTIONS(1971), + [anon_sym_true] = ACTIONS(77), + [anon_sym_false] = ACTIONS(77), + [anon_sym_PLUS] = ACTIONS(1969), + [anon_sym_DASH] = ACTIONS(1969), + [anon_sym_STAR] = ACTIONS(1973), + [anon_sym_CARET] = ACTIONS(1971), + [anon_sym_AMP] = ACTIONS(1971), [anon_sym_this] = ACTIONS(83), [anon_sym_scoped] = ACTIONS(85), [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1267), - [anon_sym_unchecked] = ACTIONS(1067), + [sym_predefined_type] = ACTIONS(91), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1269), - [anon_sym_throw] = ACTIONS(1945), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(1975), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1947), - [anon_sym_DOT_DOT] = ACTIONS(1949), + [anon_sym_await] = ACTIONS(1977), + [anon_sym_DOT_DOT] = ACTIONS(1979), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -296427,18 +296313,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(1279), - [anon_sym_typeof] = ACTIONS(1281), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), [anon_sym___makeref] = ACTIONS(133), [anon_sym___reftype] = ACTIONS(135), [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(1289), - [anon_sym_SQUOTE] = ACTIONS(1291), - [sym_integer_literal] = ACTIONS(1289), - [sym_real_literal] = ACTIONS(1293), - [anon_sym_DQUOTE] = ACTIONS(1295), - [sym_verbatim_string_literal] = ACTIONS(1293), - [aux_sym_preproc_if_token1] = ACTIONS(1089), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_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), @@ -296449,90 +296335,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1299), - [sym_interpolation_verbatim_start] = ACTIONS(1301), - [sym_interpolation_raw_start] = ACTIONS(1303), - [sym_raw_string_start] = ACTIONS(1305), + [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(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(5160), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2204), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(4565), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3461), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3080), - [sym_postfix_unary_expression] = STATE(3111), - [sym_prefix_unary_expression] = STATE(3111), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6154), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3080), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3111), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3080), - [sym_member_access_expression] = STATE(2484), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3111), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7547), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(3080), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3080), - [sym_typeof_expression] = STATE(3080), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2484), - [sym_literal] = STATE(3080), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(5152), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2196), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(5417), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3683), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3102), + [sym_postfix_unary_expression] = STATE(3079), + [sym_prefix_unary_expression] = STATE(3079), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6147), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3102), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3079), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3102), + [sym_member_access_expression] = STATE(2472), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3079), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7404), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(3102), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3102), + [sym_typeof_expression] = STATE(3102), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2472), + [sym_literal] = STATE(3102), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2261), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(1507), [sym_preproc_endregion] = STATE(1507), [sym_preproc_line] = STATE(1507), @@ -296542,47 +296428,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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1481), - [anon_sym_LPAREN] = ACTIONS(1497), - [anon_sym_ref] = ACTIONS(1499), - [anon_sym_LBRACE] = ACTIONS(1487), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1479), + [anon_sym_LPAREN] = ACTIONS(1965), + [anon_sym_ref] = ACTIONS(1967), + [anon_sym_LBRACE] = ACTIONS(1481), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1501), + [anon_sym_new] = ACTIONS(1059), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = 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_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(1971), + [anon_sym_TILDE] = ACTIONS(1971), + [anon_sym_PLUS_PLUS] = ACTIONS(1971), + [anon_sym_DASH_DASH] = ACTIONS(1971), [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(1969), + [anon_sym_DASH] = ACTIONS(1969), + [anon_sym_STAR] = ACTIONS(1973), + [anon_sym_CARET] = ACTIONS(1971), + [anon_sym_AMP] = ACTIONS(1971), [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(1067), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1503), + [anon_sym_throw] = ACTIONS(1975), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1505), - [anon_sym_DOT_DOT] = ACTIONS(1507), + [anon_sym_await] = ACTIONS(1977), + [anon_sym_DOT_DOT] = ACTIONS(1979), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -296607,7 +296493,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(1089), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -296624,84 +296510,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [1508] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2762), - [sym__name] = STATE(5910), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2204), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(3218), - [sym_non_lvalue_expression] = STATE(3438), - [sym_lvalue_expression] = STATE(3524), - [sym__expression_statement_expression] = STATE(3362), - [sym_assignment_expression] = STATE(3449), - [sym_binary_expression] = STATE(3362), - [sym_postfix_unary_expression] = STATE(3449), - [sym_prefix_unary_expression] = STATE(3449), - [sym__pointer_indirection_expression] = STATE(2747), - [sym_query_expression] = STATE(3362), - [sym_from_clause] = STATE(6174), - [sym_conditional_expression] = STATE(3362), - [sym_conditional_access_expression] = STATE(3362), - [sym_as_expression] = STATE(3362), - [sym_is_expression] = STATE(3362), - [sym_is_pattern_expression] = STATE(3362), - [sym_cast_expression] = STATE(3362), - [sym_checked_expression] = STATE(3362), - [sym_invocation_expression] = STATE(3449), - [sym_switch_expression] = STATE(3362), - [sym_await_expression] = STATE(3449), - [sym_throw_expression] = STATE(3362), - [sym_element_access_expression] = STATE(2747), - [sym_interpolated_string_expression] = STATE(3362), - [sym_member_access_expression] = STATE(2747), - [sym_object_creation_expression] = STATE(3449), - [sym_parenthesized_expression] = STATE(3449), - [sym__parenthesized_lvalue_expression] = STATE(2747), - [sym_lambda_expression] = STATE(3362), - [sym__lambda_expression_init] = STATE(7407), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3362), - [sym_anonymous_method_expression] = STATE(3362), - [sym_anonymous_object_creation_expression] = STATE(3362), - [sym_implicit_array_creation_expression] = STATE(3362), - [sym_implicit_object_creation_expression] = STATE(3362), - [sym_implicit_stackalloc_expression] = STATE(3362), - [sym_initializer_expression] = STATE(3362), - [sym_default_expression] = STATE(3362), - [sym_with_expression] = STATE(3362), - [sym_sizeof_expression] = STATE(3362), - [sym_typeof_expression] = STATE(3362), - [sym_makeref_expression] = STATE(3362), - [sym_ref_expression] = STATE(3362), - [sym_reftype_expression] = STATE(3362), - [sym_refvalue_expression] = STATE(3362), - [sym_stackalloc_expression] = STATE(3362), - [sym_range_expression] = STATE(3362), - [sym_tuple_expression] = STATE(2747), - [sym_literal] = STATE(3362), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3362), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(5152), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2196), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(5418), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3683), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3102), + [sym_postfix_unary_expression] = STATE(3079), + [sym_prefix_unary_expression] = STATE(3079), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6147), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3102), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3079), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3102), + [sym_member_access_expression] = STATE(2472), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3079), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7404), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(3102), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3102), + [sym_typeof_expression] = STATE(3102), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2472), + [sym_literal] = STATE(3102), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2261), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(1508), [sym_preproc_endregion] = STATE(1508), [sym_preproc_line] = STATE(1508), @@ -296711,47 +296597,47 @@ 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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3385), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1307), - [anon_sym_LPAREN] = ACTIONS(1693), - [anon_sym_ref] = ACTIONS(1695), - [anon_sym_LBRACE] = ACTIONS(1313), - [anon_sym_delegate] = ACTIONS(1315), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1479), + [anon_sym_LPAREN] = ACTIONS(1965), + [anon_sym_ref] = ACTIONS(1967), + [anon_sym_LBRACE] = ACTIONS(1481), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1697), + [anon_sym_new] = ACTIONS(1059), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1319), - [anon_sym_BANG] = ACTIONS(1701), - [anon_sym_TILDE] = ACTIONS(1701), - [anon_sym_PLUS_PLUS] = ACTIONS(1701), - [anon_sym_DASH_DASH] = ACTIONS(1701), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(1971), + [anon_sym_TILDE] = ACTIONS(1971), + [anon_sym_PLUS_PLUS] = ACTIONS(1971), + [anon_sym_DASH_DASH] = ACTIONS(1971), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1699), - [anon_sym_DASH] = ACTIONS(1699), - [anon_sym_STAR] = ACTIONS(1351), - [anon_sym_CARET] = ACTIONS(1701), - [anon_sym_AMP] = ACTIONS(1701), - [anon_sym_this] = ACTIONS(1323), + [anon_sym_PLUS] = ACTIONS(1969), + [anon_sym_DASH] = ACTIONS(1969), + [anon_sym_STAR] = ACTIONS(1973), + [anon_sym_CARET] = ACTIONS(1971), + [anon_sym_AMP] = ACTIONS(1971), + [anon_sym_this] = ACTIONS(83), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1325), + [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1319), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1703), + [anon_sym_throw] = ACTIONS(1975), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1705), - [anon_sym_DOT_DOT] = ACTIONS(1707), + [anon_sym_await] = ACTIONS(1977), + [anon_sym_DOT_DOT] = ACTIONS(1979), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -296764,19 +296650,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1333), + [anon_sym_stackalloc] = ACTIONS(127), [anon_sym_sizeof] = ACTIONS(129), [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(1335), - [anon_sym___reftype] = ACTIONS(1337), - [anon_sym___refvalue] = ACTIONS(1339), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), [sym_null_literal] = ACTIONS(139), [anon_sym_SQUOTE] = ACTIONS(141), [sym_integer_literal] = ACTIONS(139), [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1709), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -296793,84 +296679,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [1509] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(5907), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2404), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(4064), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3122), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3080), - [sym_postfix_unary_expression] = STATE(3111), - [sym_prefix_unary_expression] = STATE(3111), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6149), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3080), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3111), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3080), - [sym_member_access_expression] = STATE(2484), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3111), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7563), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(3080), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3080), - [sym_typeof_expression] = STATE(3080), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2484), - [sym_literal] = STATE(3080), - [sym_character_literal] = STATE(3011), - [sym_string_literal] = STATE(3011), - [sym_raw_string_literal] = STATE(3011), - [sym_boolean_literal] = STATE(3011), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(5152), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2196), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(5426), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3683), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3102), + [sym_postfix_unary_expression] = STATE(3079), + [sym_prefix_unary_expression] = STATE(3079), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6147), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3102), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3079), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3102), + [sym_member_access_expression] = STATE(2472), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3079), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7404), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(3102), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3102), + [sym_typeof_expression] = STATE(3102), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2472), + [sym_literal] = STATE(3102), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2261), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(1509), [sym_preproc_endregion] = STATE(1509), [sym_preproc_line] = STATE(1509), @@ -296880,47 +296766,47 @@ 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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1481), - [anon_sym_LPAREN] = ACTIONS(1933), - [anon_sym_ref] = ACTIONS(1935), - [anon_sym_LBRACE] = ACTIONS(1487), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1479), + [anon_sym_LPAREN] = ACTIONS(1965), + [anon_sym_ref] = ACTIONS(1967), + [anon_sym_LBRACE] = ACTIONS(1481), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1937), + [anon_sym_new] = ACTIONS(1059), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1067), - [anon_sym_BANG] = ACTIONS(1941), - [anon_sym_TILDE] = ACTIONS(1941), - [anon_sym_PLUS_PLUS] = ACTIONS(1941), - [anon_sym_DASH_DASH] = ACTIONS(1941), - [anon_sym_true] = ACTIONS(1259), - [anon_sym_false] = ACTIONS(1259), - [anon_sym_PLUS] = ACTIONS(1939), - [anon_sym_DASH] = ACTIONS(1939), - [anon_sym_STAR] = ACTIONS(1943), - [anon_sym_CARET] = ACTIONS(1941), - [anon_sym_AMP] = ACTIONS(1941), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(1971), + [anon_sym_TILDE] = ACTIONS(1971), + [anon_sym_PLUS_PLUS] = ACTIONS(1971), + [anon_sym_DASH_DASH] = ACTIONS(1971), + [anon_sym_true] = ACTIONS(77), + [anon_sym_false] = ACTIONS(77), + [anon_sym_PLUS] = ACTIONS(1969), + [anon_sym_DASH] = ACTIONS(1969), + [anon_sym_STAR] = ACTIONS(1973), + [anon_sym_CARET] = ACTIONS(1971), + [anon_sym_AMP] = ACTIONS(1971), [anon_sym_this] = ACTIONS(83), [anon_sym_scoped] = ACTIONS(85), [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1267), - [anon_sym_unchecked] = ACTIONS(1067), + [sym_predefined_type] = ACTIONS(91), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1269), - [anon_sym_throw] = ACTIONS(1945), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(1975), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1947), - [anon_sym_DOT_DOT] = ACTIONS(1949), + [anon_sym_await] = ACTIONS(1977), + [anon_sym_DOT_DOT] = ACTIONS(1979), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -296934,18 +296820,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(1279), - [anon_sym_typeof] = ACTIONS(1281), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), [anon_sym___makeref] = ACTIONS(133), [anon_sym___reftype] = ACTIONS(135), [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(1289), - [anon_sym_SQUOTE] = ACTIONS(1291), - [sym_integer_literal] = ACTIONS(1289), - [sym_real_literal] = ACTIONS(1293), - [anon_sym_DQUOTE] = ACTIONS(1295), - [sym_verbatim_string_literal] = ACTIONS(1293), - [aux_sym_preproc_if_token1] = ACTIONS(1089), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_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), @@ -296956,90 +296842,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1299), - [sym_interpolation_verbatim_start] = ACTIONS(1301), - [sym_interpolation_raw_start] = ACTIONS(1303), - [sym_raw_string_start] = ACTIONS(1305), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [sym_interpolation_raw_start] = ACTIONS(155), + [sym_raw_string_start] = ACTIONS(157), }, [1510] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2914), - [sym__name] = STATE(5873), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2362), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(3682), - [sym_non_lvalue_expression] = STATE(3880), - [sym_lvalue_expression] = STATE(2949), - [sym__expression_statement_expression] = STATE(3873), - [sym_assignment_expression] = STATE(3881), - [sym_binary_expression] = STATE(3873), - [sym_postfix_unary_expression] = STATE(3881), - [sym_prefix_unary_expression] = STATE(3881), - [sym__pointer_indirection_expression] = STATE(2913), - [sym_query_expression] = STATE(3873), - [sym_from_clause] = STATE(6182), - [sym_conditional_expression] = STATE(3873), - [sym_conditional_access_expression] = STATE(3873), - [sym_as_expression] = STATE(3873), - [sym_is_expression] = STATE(3873), - [sym_is_pattern_expression] = STATE(3873), - [sym_cast_expression] = STATE(3873), - [sym_checked_expression] = STATE(3873), - [sym_invocation_expression] = STATE(3881), - [sym_switch_expression] = STATE(3873), - [sym_await_expression] = STATE(3881), - [sym_throw_expression] = STATE(3873), - [sym_element_access_expression] = STATE(2913), - [sym_interpolated_string_expression] = STATE(3873), - [sym_member_access_expression] = STATE(2913), - [sym_object_creation_expression] = STATE(3881), - [sym_parenthesized_expression] = STATE(3881), - [sym__parenthesized_lvalue_expression] = STATE(2913), - [sym_lambda_expression] = STATE(3873), - [sym__lambda_expression_init] = STATE(7721), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3873), - [sym_anonymous_method_expression] = STATE(3873), - [sym_anonymous_object_creation_expression] = STATE(3873), - [sym_implicit_array_creation_expression] = STATE(3873), - [sym_implicit_object_creation_expression] = STATE(3873), - [sym_implicit_stackalloc_expression] = STATE(3873), - [sym_initializer_expression] = STATE(3873), - [sym_default_expression] = STATE(3873), - [sym_with_expression] = STATE(3873), - [sym_sizeof_expression] = STATE(3873), - [sym_typeof_expression] = STATE(3873), - [sym_makeref_expression] = STATE(3873), - [sym_ref_expression] = STATE(3873), - [sym_reftype_expression] = STATE(3873), - [sym_refvalue_expression] = STATE(3873), - [sym_stackalloc_expression] = STATE(3873), - [sym_range_expression] = STATE(3873), - [sym_tuple_expression] = STATE(2913), - [sym_literal] = STATE(3873), - [sym_character_literal] = STATE(3877), - [sym_string_literal] = STATE(3877), - [sym_raw_string_literal] = STATE(3877), - [sym_boolean_literal] = STATE(3877), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3873), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(5152), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2196), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(5429), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3683), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3102), + [sym_postfix_unary_expression] = STATE(3079), + [sym_prefix_unary_expression] = STATE(3079), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6147), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3102), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3079), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3102), + [sym_member_access_expression] = STATE(2472), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3079), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7404), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(3102), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3102), + [sym_typeof_expression] = STATE(3102), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2472), + [sym_literal] = STATE(3102), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2261), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(1510), [sym_preproc_endregion] = STATE(1510), [sym_preproc_line] = STATE(1510), @@ -297049,47 +296935,47 @@ 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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3382), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1627), - [anon_sym_LPAREN] = ACTIONS(1629), - [anon_sym_ref] = ACTIONS(1631), - [anon_sym_LBRACE] = ACTIONS(1633), - [anon_sym_delegate] = ACTIONS(1635), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1479), + [anon_sym_LPAREN] = ACTIONS(1965), + [anon_sym_ref] = ACTIONS(1967), + [anon_sym_LBRACE] = ACTIONS(1481), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1637), + [anon_sym_new] = ACTIONS(1059), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1639), - [anon_sym_BANG] = ACTIONS(1643), - [anon_sym_TILDE] = ACTIONS(1643), - [anon_sym_PLUS_PLUS] = ACTIONS(1643), - [anon_sym_DASH_DASH] = ACTIONS(1643), - [anon_sym_true] = ACTIONS(1645), - [anon_sym_false] = ACTIONS(1645), - [anon_sym_PLUS] = ACTIONS(1641), - [anon_sym_DASH] = ACTIONS(1641), - [anon_sym_STAR] = ACTIONS(1647), - [anon_sym_CARET] = ACTIONS(1643), - [anon_sym_AMP] = ACTIONS(1643), - [anon_sym_this] = ACTIONS(1649), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(1971), + [anon_sym_TILDE] = ACTIONS(1971), + [anon_sym_PLUS_PLUS] = ACTIONS(1971), + [anon_sym_DASH_DASH] = ACTIONS(1971), + [anon_sym_true] = ACTIONS(77), + [anon_sym_false] = ACTIONS(77), + [anon_sym_PLUS] = ACTIONS(1969), + [anon_sym_DASH] = ACTIONS(1969), + [anon_sym_STAR] = ACTIONS(1973), + [anon_sym_CARET] = ACTIONS(1971), + [anon_sym_AMP] = ACTIONS(1971), + [anon_sym_this] = ACTIONS(83), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1651), + [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1653), - [anon_sym_unchecked] = ACTIONS(1639), + [sym_predefined_type] = ACTIONS(91), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1655), - [anon_sym_throw] = ACTIONS(1657), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(1975), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1659), - [anon_sym_DOT_DOT] = ACTIONS(1661), + [anon_sym_await] = ACTIONS(1977), + [anon_sym_DOT_DOT] = ACTIONS(1979), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -297102,19 +296988,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1663), - [anon_sym_sizeof] = ACTIONS(1665), - [anon_sym_typeof] = ACTIONS(1667), - [anon_sym___makeref] = ACTIONS(1669), - [anon_sym___reftype] = ACTIONS(1671), - [anon_sym___refvalue] = ACTIONS(1673), - [sym_null_literal] = ACTIONS(1675), - [anon_sym_SQUOTE] = ACTIONS(1677), - [sym_integer_literal] = ACTIONS(1675), - [sym_real_literal] = ACTIONS(1679), - [anon_sym_DQUOTE] = ACTIONS(1681), - [sym_verbatim_string_literal] = ACTIONS(1679), - [aux_sym_preproc_if_token1] = ACTIONS(1683), + [anon_sym_stackalloc] = ACTIONS(127), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_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), @@ -297125,90 +297011,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1685), - [sym_interpolation_verbatim_start] = ACTIONS(1687), - [sym_interpolation_raw_start] = ACTIONS(1689), - [sym_raw_string_start] = ACTIONS(1691), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [sym_interpolation_raw_start] = ACTIONS(155), + [sym_raw_string_start] = ACTIONS(157), }, [1511] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2914), - [sym__name] = STATE(5873), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2362), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(3567), - [sym_non_lvalue_expression] = STATE(3880), - [sym_lvalue_expression] = STATE(2949), - [sym__expression_statement_expression] = STATE(3873), - [sym_assignment_expression] = STATE(3881), - [sym_binary_expression] = STATE(3873), - [sym_postfix_unary_expression] = STATE(3881), - [sym_prefix_unary_expression] = STATE(3881), - [sym__pointer_indirection_expression] = STATE(2913), - [sym_query_expression] = STATE(3873), - [sym_from_clause] = STATE(6182), - [sym_conditional_expression] = STATE(3873), - [sym_conditional_access_expression] = STATE(3873), - [sym_as_expression] = STATE(3873), - [sym_is_expression] = STATE(3873), - [sym_is_pattern_expression] = STATE(3873), - [sym_cast_expression] = STATE(3873), - [sym_checked_expression] = STATE(3873), - [sym_invocation_expression] = STATE(3881), - [sym_switch_expression] = STATE(3873), - [sym_await_expression] = STATE(3881), - [sym_throw_expression] = STATE(3873), - [sym_element_access_expression] = STATE(2913), - [sym_interpolated_string_expression] = STATE(3873), - [sym_member_access_expression] = STATE(2913), - [sym_object_creation_expression] = STATE(3881), - [sym_parenthesized_expression] = STATE(3881), - [sym__parenthesized_lvalue_expression] = STATE(2913), - [sym_lambda_expression] = STATE(3873), - [sym__lambda_expression_init] = STATE(7721), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3873), - [sym_anonymous_method_expression] = STATE(3873), - [sym_anonymous_object_creation_expression] = STATE(3873), - [sym_implicit_array_creation_expression] = STATE(3873), - [sym_implicit_object_creation_expression] = STATE(3873), - [sym_implicit_stackalloc_expression] = STATE(3873), - [sym_initializer_expression] = STATE(3873), - [sym_default_expression] = STATE(3873), - [sym_with_expression] = STATE(3873), - [sym_sizeof_expression] = STATE(3873), - [sym_typeof_expression] = STATE(3873), - [sym_makeref_expression] = STATE(3873), - [sym_ref_expression] = STATE(3873), - [sym_reftype_expression] = STATE(3873), - [sym_refvalue_expression] = STATE(3873), - [sym_stackalloc_expression] = STATE(3873), - [sym_range_expression] = STATE(3873), - [sym_tuple_expression] = STATE(2913), - [sym_literal] = STATE(3873), - [sym_character_literal] = STATE(3877), - [sym_string_literal] = STATE(3877), - [sym_raw_string_literal] = STATE(3877), - [sym_boolean_literal] = STATE(3877), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3873), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(5152), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2196), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(5430), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3683), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3102), + [sym_postfix_unary_expression] = STATE(3079), + [sym_prefix_unary_expression] = STATE(3079), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6147), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3102), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3079), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3102), + [sym_member_access_expression] = STATE(2472), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3079), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7404), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(3102), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3102), + [sym_typeof_expression] = STATE(3102), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2472), + [sym_literal] = STATE(3102), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2261), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(1511), [sym_preproc_endregion] = STATE(1511), [sym_preproc_line] = STATE(1511), @@ -297218,47 +297104,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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3382), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1627), - [anon_sym_LPAREN] = ACTIONS(1629), - [anon_sym_ref] = ACTIONS(1631), - [anon_sym_LBRACE] = ACTIONS(1633), - [anon_sym_delegate] = ACTIONS(1635), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1479), + [anon_sym_LPAREN] = ACTIONS(1965), + [anon_sym_ref] = ACTIONS(1967), + [anon_sym_LBRACE] = ACTIONS(1481), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1637), + [anon_sym_new] = ACTIONS(1059), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1639), - [anon_sym_BANG] = ACTIONS(1643), - [anon_sym_TILDE] = ACTIONS(1643), - [anon_sym_PLUS_PLUS] = ACTIONS(1643), - [anon_sym_DASH_DASH] = ACTIONS(1643), - [anon_sym_true] = ACTIONS(1645), - [anon_sym_false] = ACTIONS(1645), - [anon_sym_PLUS] = ACTIONS(1641), - [anon_sym_DASH] = ACTIONS(1641), - [anon_sym_STAR] = ACTIONS(1647), - [anon_sym_CARET] = ACTIONS(1643), - [anon_sym_AMP] = ACTIONS(1643), - [anon_sym_this] = ACTIONS(1649), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(1971), + [anon_sym_TILDE] = ACTIONS(1971), + [anon_sym_PLUS_PLUS] = ACTIONS(1971), + [anon_sym_DASH_DASH] = ACTIONS(1971), + [anon_sym_true] = ACTIONS(77), + [anon_sym_false] = ACTIONS(77), + [anon_sym_PLUS] = ACTIONS(1969), + [anon_sym_DASH] = ACTIONS(1969), + [anon_sym_STAR] = ACTIONS(1973), + [anon_sym_CARET] = ACTIONS(1971), + [anon_sym_AMP] = ACTIONS(1971), + [anon_sym_this] = ACTIONS(83), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1651), + [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1653), - [anon_sym_unchecked] = ACTIONS(1639), + [sym_predefined_type] = ACTIONS(91), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1655), - [anon_sym_throw] = ACTIONS(1657), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(1975), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1659), - [anon_sym_DOT_DOT] = ACTIONS(1661), + [anon_sym_await] = ACTIONS(1977), + [anon_sym_DOT_DOT] = ACTIONS(1979), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -297271,19 +297157,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1663), - [anon_sym_sizeof] = ACTIONS(1665), - [anon_sym_typeof] = ACTIONS(1667), - [anon_sym___makeref] = ACTIONS(1669), - [anon_sym___reftype] = ACTIONS(1671), - [anon_sym___refvalue] = ACTIONS(1673), - [sym_null_literal] = ACTIONS(1675), - [anon_sym_SQUOTE] = ACTIONS(1677), - [sym_integer_literal] = ACTIONS(1675), - [sym_real_literal] = ACTIONS(1679), - [anon_sym_DQUOTE] = ACTIONS(1681), - [sym_verbatim_string_literal] = ACTIONS(1679), - [aux_sym_preproc_if_token1] = ACTIONS(1683), + [anon_sym_stackalloc] = ACTIONS(127), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_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), @@ -297294,90 +297180,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1685), - [sym_interpolation_verbatim_start] = ACTIONS(1687), - [sym_interpolation_raw_start] = ACTIONS(1689), - [sym_raw_string_start] = ACTIONS(1691), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [sym_interpolation_raw_start] = ACTIONS(155), + [sym_raw_string_start] = ACTIONS(157), }, [1512] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(5907), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2404), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(4097), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3122), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3080), - [sym_postfix_unary_expression] = STATE(3111), - [sym_prefix_unary_expression] = STATE(3111), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6149), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3080), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3111), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3080), - [sym_member_access_expression] = STATE(2484), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3111), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7563), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(3080), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3080), - [sym_typeof_expression] = STATE(3080), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2484), - [sym_literal] = STATE(3080), - [sym_character_literal] = STATE(3011), - [sym_string_literal] = STATE(3011), - [sym_raw_string_literal] = STATE(3011), - [sym_boolean_literal] = STATE(3011), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(5152), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2196), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(5431), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3683), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3102), + [sym_postfix_unary_expression] = STATE(3079), + [sym_prefix_unary_expression] = STATE(3079), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6147), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3102), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3079), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3102), + [sym_member_access_expression] = STATE(2472), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3079), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7404), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(3102), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3102), + [sym_typeof_expression] = STATE(3102), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2472), + [sym_literal] = STATE(3102), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2261), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(1512), [sym_preproc_endregion] = STATE(1512), [sym_preproc_line] = STATE(1512), @@ -297387,47 +297273,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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1481), - [anon_sym_LPAREN] = ACTIONS(1933), - [anon_sym_ref] = ACTIONS(1935), - [anon_sym_LBRACE] = ACTIONS(1487), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1479), + [anon_sym_LPAREN] = ACTIONS(1965), + [anon_sym_ref] = ACTIONS(1967), + [anon_sym_LBRACE] = ACTIONS(1481), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1937), + [anon_sym_new] = ACTIONS(1059), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1067), - [anon_sym_BANG] = ACTIONS(1941), - [anon_sym_TILDE] = ACTIONS(1941), - [anon_sym_PLUS_PLUS] = ACTIONS(1941), - [anon_sym_DASH_DASH] = ACTIONS(1941), - [anon_sym_true] = ACTIONS(1259), - [anon_sym_false] = ACTIONS(1259), - [anon_sym_PLUS] = ACTIONS(1939), - [anon_sym_DASH] = ACTIONS(1939), - [anon_sym_STAR] = ACTIONS(1943), - [anon_sym_CARET] = ACTIONS(1941), - [anon_sym_AMP] = ACTIONS(1941), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(1971), + [anon_sym_TILDE] = ACTIONS(1971), + [anon_sym_PLUS_PLUS] = ACTIONS(1971), + [anon_sym_DASH_DASH] = ACTIONS(1971), + [anon_sym_true] = ACTIONS(77), + [anon_sym_false] = ACTIONS(77), + [anon_sym_PLUS] = ACTIONS(1969), + [anon_sym_DASH] = ACTIONS(1969), + [anon_sym_STAR] = ACTIONS(1973), + [anon_sym_CARET] = ACTIONS(1971), + [anon_sym_AMP] = ACTIONS(1971), [anon_sym_this] = ACTIONS(83), [anon_sym_scoped] = ACTIONS(85), [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1267), - [anon_sym_unchecked] = ACTIONS(1067), + [sym_predefined_type] = ACTIONS(91), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1269), - [anon_sym_throw] = ACTIONS(1945), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(1975), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1947), - [anon_sym_DOT_DOT] = ACTIONS(1949), + [anon_sym_await] = ACTIONS(1977), + [anon_sym_DOT_DOT] = ACTIONS(1979), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -297441,18 +297327,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(1279), - [anon_sym_typeof] = ACTIONS(1281), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), [anon_sym___makeref] = ACTIONS(133), [anon_sym___reftype] = ACTIONS(135), [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(1289), - [anon_sym_SQUOTE] = ACTIONS(1291), - [sym_integer_literal] = ACTIONS(1289), - [sym_real_literal] = ACTIONS(1293), - [anon_sym_DQUOTE] = ACTIONS(1295), - [sym_verbatim_string_literal] = ACTIONS(1293), - [aux_sym_preproc_if_token1] = ACTIONS(1089), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_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), @@ -297463,90 +297349,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1299), - [sym_interpolation_verbatim_start] = ACTIONS(1301), - [sym_interpolation_raw_start] = ACTIONS(1303), - [sym_raw_string_start] = ACTIONS(1305), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [sym_interpolation_raw_start] = ACTIONS(155), + [sym_raw_string_start] = ACTIONS(157), }, [1513] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(5907), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2404), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(4098), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3122), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3080), - [sym_postfix_unary_expression] = STATE(3111), - [sym_prefix_unary_expression] = STATE(3111), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6149), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3080), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3111), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3080), - [sym_member_access_expression] = STATE(2484), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3111), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7563), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(3080), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3080), - [sym_typeof_expression] = STATE(3080), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2484), - [sym_literal] = STATE(3080), - [sym_character_literal] = STATE(3011), - [sym_string_literal] = STATE(3011), - [sym_raw_string_literal] = STATE(3011), - [sym_boolean_literal] = STATE(3011), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2901), + [sym__name] = STATE(5883), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2359), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(3564), + [sym_non_lvalue_expression] = STATE(3685), + [sym_lvalue_expression] = STATE(3073), + [sym__expression_statement_expression] = STATE(3836), + [sym_assignment_expression] = STATE(3689), + [sym_binary_expression] = STATE(3836), + [sym_postfix_unary_expression] = STATE(3689), + [sym_prefix_unary_expression] = STATE(3689), + [sym__pointer_indirection_expression] = STATE(2906), + [sym_query_expression] = STATE(3836), + [sym_from_clause] = STATE(6157), + [sym_conditional_expression] = STATE(3836), + [sym_conditional_access_expression] = STATE(3836), + [sym_as_expression] = STATE(3836), + [sym_is_expression] = STATE(3836), + [sym_is_pattern_expression] = STATE(3836), + [sym_cast_expression] = STATE(3836), + [sym_checked_expression] = STATE(3836), + [sym_invocation_expression] = STATE(3689), + [sym_switch_expression] = STATE(3836), + [sym_await_expression] = STATE(3689), + [sym_throw_expression] = STATE(3836), + [sym_element_access_expression] = STATE(2906), + [sym_interpolated_string_expression] = STATE(3836), + [sym_member_access_expression] = STATE(2906), + [sym_object_creation_expression] = STATE(3689), + [sym_parenthesized_expression] = STATE(3689), + [sym__parenthesized_lvalue_expression] = STATE(2906), + [sym_lambda_expression] = STATE(3836), + [sym__lambda_expression_init] = STATE(7460), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3836), + [sym_anonymous_method_expression] = STATE(3836), + [sym_anonymous_object_creation_expression] = STATE(3836), + [sym_implicit_array_creation_expression] = STATE(3836), + [sym_implicit_object_creation_expression] = STATE(3836), + [sym_implicit_stackalloc_expression] = STATE(3836), + [sym_initializer_expression] = STATE(3836), + [sym_default_expression] = STATE(3836), + [sym_with_expression] = STATE(3836), + [sym_sizeof_expression] = STATE(3836), + [sym_typeof_expression] = STATE(3836), + [sym_makeref_expression] = STATE(3836), + [sym_ref_expression] = STATE(3836), + [sym_reftype_expression] = STATE(3836), + [sym_refvalue_expression] = STATE(3836), + [sym_stackalloc_expression] = STATE(3836), + [sym_range_expression] = STATE(3836), + [sym_tuple_expression] = STATE(2906), + [sym_literal] = STATE(3836), + [sym_character_literal] = STATE(3843), + [sym_string_literal] = STATE(3843), + [sym_raw_string_literal] = STATE(3843), + [sym_boolean_literal] = STATE(3843), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3836), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(1513), [sym_preproc_endregion] = STATE(1513), [sym_preproc_line] = STATE(1513), @@ -297556,47 +297442,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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3477), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1481), - [anon_sym_LPAREN] = ACTIONS(1933), - [anon_sym_ref] = ACTIONS(1935), - [anon_sym_LBRACE] = ACTIONS(1487), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1655), + [anon_sym_LPAREN] = ACTIONS(2061), + [anon_sym_ref] = ACTIONS(2063), + [anon_sym_LBRACE] = ACTIONS(1661), + [anon_sym_delegate] = ACTIONS(1663), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1937), + [anon_sym_new] = ACTIONS(1665), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1067), - [anon_sym_BANG] = ACTIONS(1941), - [anon_sym_TILDE] = ACTIONS(1941), - [anon_sym_PLUS_PLUS] = ACTIONS(1941), - [anon_sym_DASH_DASH] = ACTIONS(1941), - [anon_sym_true] = ACTIONS(1259), - [anon_sym_false] = ACTIONS(1259), - [anon_sym_PLUS] = ACTIONS(1939), - [anon_sym_DASH] = ACTIONS(1939), - [anon_sym_STAR] = ACTIONS(1943), - [anon_sym_CARET] = ACTIONS(1941), - [anon_sym_AMP] = ACTIONS(1941), - [anon_sym_this] = ACTIONS(83), + [anon_sym_checked] = ACTIONS(1667), + [anon_sym_BANG] = ACTIONS(2067), + [anon_sym_TILDE] = ACTIONS(2067), + [anon_sym_PLUS_PLUS] = ACTIONS(2067), + [anon_sym_DASH_DASH] = ACTIONS(2067), + [anon_sym_true] = ACTIONS(1673), + [anon_sym_false] = ACTIONS(1673), + [anon_sym_PLUS] = ACTIONS(2065), + [anon_sym_DASH] = ACTIONS(2065), + [anon_sym_STAR] = ACTIONS(1675), + [anon_sym_CARET] = ACTIONS(2067), + [anon_sym_AMP] = ACTIONS(2067), + [anon_sym_this] = ACTIONS(1677), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), + [anon_sym_base] = ACTIONS(1679), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1267), - [anon_sym_unchecked] = ACTIONS(1067), + [sym_predefined_type] = ACTIONS(1681), + [anon_sym_unchecked] = ACTIONS(1667), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1269), - [anon_sym_throw] = ACTIONS(1945), + [anon_sym_default] = ACTIONS(1683), + [anon_sym_throw] = ACTIONS(2069), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1947), - [anon_sym_DOT_DOT] = ACTIONS(1949), + [anon_sym_await] = ACTIONS(2071), + [anon_sym_DOT_DOT] = ACTIONS(2073), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -297609,19 +297495,19 @@ static const uint16_t ts_parse_table[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(1279), - [anon_sym_typeof] = ACTIONS(1281), - [anon_sym___makeref] = ACTIONS(133), - [anon_sym___reftype] = ACTIONS(135), - [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(1289), - [anon_sym_SQUOTE] = ACTIONS(1291), - [sym_integer_literal] = ACTIONS(1289), - [sym_real_literal] = ACTIONS(1293), - [anon_sym_DQUOTE] = ACTIONS(1295), - [sym_verbatim_string_literal] = ACTIONS(1293), - [aux_sym_preproc_if_token1] = ACTIONS(1089), + [anon_sym_stackalloc] = ACTIONS(1691), + [anon_sym_sizeof] = ACTIONS(1693), + [anon_sym_typeof] = ACTIONS(1695), + [anon_sym___makeref] = ACTIONS(1697), + [anon_sym___reftype] = ACTIONS(1699), + [anon_sym___refvalue] = ACTIONS(1701), + [sym_null_literal] = ACTIONS(1703), + [anon_sym_SQUOTE] = ACTIONS(1705), + [sym_integer_literal] = ACTIONS(1703), + [sym_real_literal] = ACTIONS(1707), + [anon_sym_DQUOTE] = ACTIONS(1709), + [sym_verbatim_string_literal] = ACTIONS(1707), + [aux_sym_preproc_if_token1] = ACTIONS(1711), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -297632,90 +297518,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1299), - [sym_interpolation_verbatim_start] = ACTIONS(1301), - [sym_interpolation_raw_start] = ACTIONS(1303), - [sym_raw_string_start] = ACTIONS(1305), + [sym_interpolation_regular_start] = ACTIONS(1713), + [sym_interpolation_verbatim_start] = ACTIONS(1715), + [sym_interpolation_raw_start] = ACTIONS(1717), + [sym_raw_string_start] = ACTIONS(1719), }, [1514] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(5907), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2404), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(4124), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3122), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3080), - [sym_postfix_unary_expression] = STATE(3111), - [sym_prefix_unary_expression] = STATE(3111), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6149), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3080), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3111), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3080), - [sym_member_access_expression] = STATE(2484), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3111), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7563), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(3080), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3080), - [sym_typeof_expression] = STATE(3080), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2484), - [sym_literal] = STATE(3080), - [sym_character_literal] = STATE(3011), - [sym_string_literal] = STATE(3011), - [sym_raw_string_literal] = STATE(3011), - [sym_boolean_literal] = STATE(3011), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(5152), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2196), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(5386), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3683), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3102), + [sym_postfix_unary_expression] = STATE(3079), + [sym_prefix_unary_expression] = STATE(3079), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6147), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3102), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3079), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3102), + [sym_member_access_expression] = STATE(2472), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3079), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7404), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(3102), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3102), + [sym_typeof_expression] = STATE(3102), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2472), + [sym_literal] = STATE(3102), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2261), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(1514), [sym_preproc_endregion] = STATE(1514), [sym_preproc_line] = STATE(1514), @@ -297725,47 +297611,47 @@ 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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1481), - [anon_sym_LPAREN] = ACTIONS(1933), - [anon_sym_ref] = ACTIONS(1935), - [anon_sym_LBRACE] = ACTIONS(1487), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1479), + [anon_sym_LPAREN] = ACTIONS(1965), + [anon_sym_ref] = ACTIONS(1967), + [anon_sym_LBRACE] = ACTIONS(1481), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1937), + [anon_sym_new] = ACTIONS(1059), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1067), - [anon_sym_BANG] = ACTIONS(1941), - [anon_sym_TILDE] = ACTIONS(1941), - [anon_sym_PLUS_PLUS] = ACTIONS(1941), - [anon_sym_DASH_DASH] = ACTIONS(1941), - [anon_sym_true] = ACTIONS(1259), - [anon_sym_false] = ACTIONS(1259), - [anon_sym_PLUS] = ACTIONS(1939), - [anon_sym_DASH] = ACTIONS(1939), - [anon_sym_STAR] = ACTIONS(1943), - [anon_sym_CARET] = ACTIONS(1941), - [anon_sym_AMP] = ACTIONS(1941), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(1971), + [anon_sym_TILDE] = ACTIONS(1971), + [anon_sym_PLUS_PLUS] = ACTIONS(1971), + [anon_sym_DASH_DASH] = ACTIONS(1971), + [anon_sym_true] = ACTIONS(77), + [anon_sym_false] = ACTIONS(77), + [anon_sym_PLUS] = ACTIONS(1969), + [anon_sym_DASH] = ACTIONS(1969), + [anon_sym_STAR] = ACTIONS(1973), + [anon_sym_CARET] = ACTIONS(1971), + [anon_sym_AMP] = ACTIONS(1971), [anon_sym_this] = ACTIONS(83), [anon_sym_scoped] = ACTIONS(85), [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1267), - [anon_sym_unchecked] = ACTIONS(1067), + [sym_predefined_type] = ACTIONS(91), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1269), - [anon_sym_throw] = ACTIONS(1945), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(1975), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1947), - [anon_sym_DOT_DOT] = ACTIONS(1949), + [anon_sym_await] = ACTIONS(1977), + [anon_sym_DOT_DOT] = ACTIONS(1979), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -297779,18 +297665,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(1279), - [anon_sym_typeof] = ACTIONS(1281), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), [anon_sym___makeref] = ACTIONS(133), [anon_sym___reftype] = ACTIONS(135), [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(1289), - [anon_sym_SQUOTE] = ACTIONS(1291), - [sym_integer_literal] = ACTIONS(1289), - [sym_real_literal] = ACTIONS(1293), - [anon_sym_DQUOTE] = ACTIONS(1295), - [sym_verbatim_string_literal] = ACTIONS(1293), - [aux_sym_preproc_if_token1] = ACTIONS(1089), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_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), @@ -297801,90 +297687,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1299), - [sym_interpolation_verbatim_start] = ACTIONS(1301), - [sym_interpolation_raw_start] = ACTIONS(1303), - [sym_raw_string_start] = ACTIONS(1305), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [sym_interpolation_raw_start] = ACTIONS(155), + [sym_raw_string_start] = ACTIONS(157), }, [1515] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(5907), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2404), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(4103), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3122), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3080), - [sym_postfix_unary_expression] = STATE(3111), - [sym_prefix_unary_expression] = STATE(3111), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6149), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3080), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3111), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3080), - [sym_member_access_expression] = STATE(2484), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3111), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7563), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(3080), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3080), - [sym_typeof_expression] = STATE(3080), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2484), - [sym_literal] = STATE(3080), - [sym_character_literal] = STATE(3011), - [sym_string_literal] = STATE(3011), - [sym_raw_string_literal] = STATE(3011), - [sym_boolean_literal] = STATE(3011), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2416), + [sym__name] = STATE(5868), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2387), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(5235), + [sym_non_lvalue_expression] = STATE(3040), + [sym_lvalue_expression] = STATE(3634), + [sym__expression_statement_expression] = STATE(3035), + [sym_assignment_expression] = STATE(3043), + [sym_binary_expression] = STATE(3035), + [sym_postfix_unary_expression] = STATE(3043), + [sym_prefix_unary_expression] = STATE(3043), + [sym__pointer_indirection_expression] = STATE(2415), + [sym_query_expression] = STATE(3035), + [sym_from_clause] = STATE(6130), + [sym_conditional_expression] = STATE(3035), + [sym_conditional_access_expression] = STATE(3035), + [sym_as_expression] = STATE(3035), + [sym_is_expression] = STATE(3035), + [sym_is_pattern_expression] = STATE(3035), + [sym_cast_expression] = STATE(3035), + [sym_checked_expression] = STATE(3035), + [sym_invocation_expression] = STATE(3043), + [sym_switch_expression] = STATE(3035), + [sym_await_expression] = STATE(3043), + [sym_throw_expression] = STATE(3035), + [sym_element_access_expression] = STATE(2415), + [sym_interpolated_string_expression] = STATE(3035), + [sym_member_access_expression] = STATE(2415), + [sym_object_creation_expression] = STATE(3043), + [sym_parenthesized_expression] = STATE(3043), + [sym__parenthesized_lvalue_expression] = STATE(2415), + [sym_lambda_expression] = STATE(3035), + [sym__lambda_expression_init] = STATE(7324), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3035), + [sym_anonymous_method_expression] = STATE(3035), + [sym_anonymous_object_creation_expression] = STATE(3035), + [sym_implicit_array_creation_expression] = STATE(3035), + [sym_implicit_object_creation_expression] = STATE(3035), + [sym_implicit_stackalloc_expression] = STATE(3035), + [sym_initializer_expression] = STATE(3035), + [sym_default_expression] = STATE(3035), + [sym_with_expression] = STATE(3035), + [sym_sizeof_expression] = STATE(3035), + [sym_typeof_expression] = STATE(3035), + [sym_makeref_expression] = STATE(3035), + [sym_ref_expression] = STATE(3035), + [sym_reftype_expression] = STATE(3035), + [sym_refvalue_expression] = STATE(3035), + [sym_stackalloc_expression] = STATE(3035), + [sym_range_expression] = STATE(3035), + [sym_tuple_expression] = STATE(2415), + [sym_literal] = STATE(3035), + [sym_character_literal] = STATE(3037), + [sym_string_literal] = STATE(3037), + [sym_raw_string_literal] = STATE(3037), + [sym_boolean_literal] = STATE(3037), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3035), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(1515), [sym_preproc_endregion] = STATE(1515), [sym_preproc_line] = STATE(1515), @@ -297894,47 +297780,47 @@ 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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3455), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1481), - [anon_sym_LPAREN] = ACTIONS(1933), - [anon_sym_ref] = ACTIONS(1935), - [anon_sym_LBRACE] = ACTIONS(1487), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1239), + [anon_sym_LPAREN] = ACTIONS(2281), + [anon_sym_ref] = ACTIONS(2283), + [anon_sym_LBRACE] = ACTIONS(1245), + [anon_sym_delegate] = ACTIONS(1247), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1937), + [anon_sym_new] = ACTIONS(2285), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1067), - [anon_sym_BANG] = ACTIONS(1941), - [anon_sym_TILDE] = ACTIONS(1941), - [anon_sym_PLUS_PLUS] = ACTIONS(1941), - [anon_sym_DASH_DASH] = ACTIONS(1941), - [anon_sym_true] = ACTIONS(1259), - [anon_sym_false] = ACTIONS(1259), - [anon_sym_PLUS] = ACTIONS(1939), - [anon_sym_DASH] = ACTIONS(1939), - [anon_sym_STAR] = ACTIONS(1943), - [anon_sym_CARET] = ACTIONS(1941), - [anon_sym_AMP] = ACTIONS(1941), - [anon_sym_this] = ACTIONS(83), + [anon_sym_checked] = ACTIONS(1251), + [anon_sym_BANG] = ACTIONS(2289), + [anon_sym_TILDE] = ACTIONS(2289), + [anon_sym_PLUS_PLUS] = ACTIONS(2289), + [anon_sym_DASH_DASH] = ACTIONS(2289), + [anon_sym_true] = ACTIONS(1257), + [anon_sym_false] = ACTIONS(1257), + [anon_sym_PLUS] = ACTIONS(2287), + [anon_sym_DASH] = ACTIONS(2287), + [anon_sym_STAR] = ACTIONS(2291), + [anon_sym_CARET] = ACTIONS(2289), + [anon_sym_AMP] = ACTIONS(2289), + [anon_sym_this] = ACTIONS(1261), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), + [anon_sym_base] = ACTIONS(1263), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1267), - [anon_sym_unchecked] = ACTIONS(1067), + [sym_predefined_type] = ACTIONS(1265), + [anon_sym_unchecked] = ACTIONS(1251), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1269), - [anon_sym_throw] = ACTIONS(1945), + [anon_sym_default] = ACTIONS(1267), + [anon_sym_throw] = ACTIONS(2293), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1947), - [anon_sym_DOT_DOT] = ACTIONS(1949), + [anon_sym_await] = ACTIONS(2295), + [anon_sym_DOT_DOT] = ACTIONS(2297), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -297947,19 +297833,19 @@ static const uint16_t ts_parse_table[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(1279), - [anon_sym_typeof] = ACTIONS(1281), - [anon_sym___makeref] = ACTIONS(133), - [anon_sym___reftype] = ACTIONS(135), - [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(1289), - [anon_sym_SQUOTE] = ACTIONS(1291), - [sym_integer_literal] = ACTIONS(1289), - [sym_real_literal] = ACTIONS(1293), - [anon_sym_DQUOTE] = ACTIONS(1295), - [sym_verbatim_string_literal] = ACTIONS(1293), - [aux_sym_preproc_if_token1] = ACTIONS(1089), + [anon_sym_stackalloc] = ACTIONS(1275), + [anon_sym_sizeof] = ACTIONS(1277), + [anon_sym_typeof] = ACTIONS(1279), + [anon_sym___makeref] = ACTIONS(1281), + [anon_sym___reftype] = ACTIONS(1283), + [anon_sym___refvalue] = ACTIONS(1285), + [sym_null_literal] = ACTIONS(1287), + [anon_sym_SQUOTE] = ACTIONS(1289), + [sym_integer_literal] = ACTIONS(1287), + [sym_real_literal] = ACTIONS(1291), + [anon_sym_DQUOTE] = ACTIONS(1293), + [sym_verbatim_string_literal] = ACTIONS(1291), + [aux_sym_preproc_if_token1] = ACTIONS(1295), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -297970,90 +297856,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1299), - [sym_interpolation_verbatim_start] = ACTIONS(1301), - [sym_interpolation_raw_start] = ACTIONS(1303), - [sym_raw_string_start] = ACTIONS(1305), + [sym_interpolation_regular_start] = ACTIONS(1297), + [sym_interpolation_verbatim_start] = ACTIONS(1299), + [sym_interpolation_raw_start] = ACTIONS(1301), + [sym_raw_string_start] = ACTIONS(1303), }, [1516] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(5907), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2404), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(4104), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3122), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3080), - [sym_postfix_unary_expression] = STATE(3111), - [sym_prefix_unary_expression] = STATE(3111), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6149), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3080), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3111), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3080), - [sym_member_access_expression] = STATE(2484), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3111), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7563), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(3080), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3080), - [sym_typeof_expression] = STATE(3080), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2484), - [sym_literal] = STATE(3080), - [sym_character_literal] = STATE(3011), - [sym_string_literal] = STATE(3011), - [sym_raw_string_literal] = STATE(3011), - [sym_boolean_literal] = STATE(3011), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(5152), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2196), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(3523), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3683), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3102), + [sym_postfix_unary_expression] = STATE(3079), + [sym_prefix_unary_expression] = STATE(3079), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6147), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3102), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3079), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3102), + [sym_member_access_expression] = STATE(2472), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3079), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7404), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(3102), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3102), + [sym_typeof_expression] = STATE(3102), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2472), + [sym_literal] = STATE(3102), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2261), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(1516), [sym_preproc_endregion] = STATE(1516), [sym_preproc_line] = STATE(1516), @@ -298063,47 +297949,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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1481), - [anon_sym_LPAREN] = ACTIONS(1933), - [anon_sym_ref] = ACTIONS(1935), - [anon_sym_LBRACE] = ACTIONS(1487), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1479), + [anon_sym_LPAREN] = ACTIONS(1965), + [anon_sym_ref] = ACTIONS(1967), + [anon_sym_LBRACE] = ACTIONS(1481), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1937), + [anon_sym_new] = ACTIONS(1059), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1067), - [anon_sym_BANG] = ACTIONS(1941), - [anon_sym_TILDE] = ACTIONS(1941), - [anon_sym_PLUS_PLUS] = ACTIONS(1941), - [anon_sym_DASH_DASH] = ACTIONS(1941), - [anon_sym_true] = ACTIONS(1259), - [anon_sym_false] = ACTIONS(1259), - [anon_sym_PLUS] = ACTIONS(1939), - [anon_sym_DASH] = ACTIONS(1939), - [anon_sym_STAR] = ACTIONS(1943), - [anon_sym_CARET] = ACTIONS(1941), - [anon_sym_AMP] = ACTIONS(1941), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(1971), + [anon_sym_TILDE] = ACTIONS(1971), + [anon_sym_PLUS_PLUS] = ACTIONS(1971), + [anon_sym_DASH_DASH] = ACTIONS(1971), + [anon_sym_true] = ACTIONS(77), + [anon_sym_false] = ACTIONS(77), + [anon_sym_PLUS] = ACTIONS(1969), + [anon_sym_DASH] = ACTIONS(1969), + [anon_sym_STAR] = ACTIONS(1973), + [anon_sym_CARET] = ACTIONS(1971), + [anon_sym_AMP] = ACTIONS(1971), [anon_sym_this] = ACTIONS(83), [anon_sym_scoped] = ACTIONS(85), [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1267), - [anon_sym_unchecked] = ACTIONS(1067), + [sym_predefined_type] = ACTIONS(91), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1269), - [anon_sym_throw] = ACTIONS(1945), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(1975), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1947), - [anon_sym_DOT_DOT] = ACTIONS(1949), + [anon_sym_await] = ACTIONS(1977), + [anon_sym_DOT_DOT] = ACTIONS(1979), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -298117,18 +298003,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(1279), - [anon_sym_typeof] = ACTIONS(1281), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), [anon_sym___makeref] = ACTIONS(133), [anon_sym___reftype] = ACTIONS(135), [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(1289), - [anon_sym_SQUOTE] = ACTIONS(1291), - [sym_integer_literal] = ACTIONS(1289), - [sym_real_literal] = ACTIONS(1293), - [anon_sym_DQUOTE] = ACTIONS(1295), - [sym_verbatim_string_literal] = ACTIONS(1293), - [aux_sym_preproc_if_token1] = ACTIONS(1089), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_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), @@ -298139,90 +298025,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1299), - [sym_interpolation_verbatim_start] = ACTIONS(1301), - [sym_interpolation_raw_start] = ACTIONS(1303), - [sym_raw_string_start] = ACTIONS(1305), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [sym_interpolation_raw_start] = ACTIONS(155), + [sym_raw_string_start] = ACTIONS(157), }, [1517] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(5907), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2404), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(4111), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3122), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3080), - [sym_postfix_unary_expression] = STATE(3111), - [sym_prefix_unary_expression] = STATE(3111), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6149), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3080), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3111), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3080), - [sym_member_access_expression] = STATE(2484), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3111), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7563), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(3080), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3080), - [sym_typeof_expression] = STATE(3080), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2484), - [sym_literal] = STATE(3080), - [sym_character_literal] = STATE(3011), - [sym_string_literal] = STATE(3011), - [sym_raw_string_literal] = STATE(3011), - [sym_boolean_literal] = STATE(3011), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2816), + [sym__name] = STATE(5873), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2196), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(4997), + [sym_non_lvalue_expression] = STATE(3495), + [sym_lvalue_expression] = STATE(3514), + [sym__expression_statement_expression] = STATE(3462), + [sym_assignment_expression] = STATE(3497), + [sym_binary_expression] = STATE(3462), + [sym_postfix_unary_expression] = STATE(3497), + [sym_prefix_unary_expression] = STATE(3497), + [sym__pointer_indirection_expression] = STATE(2815), + [sym_query_expression] = STATE(3462), + [sym_from_clause] = STATE(6154), + [sym_conditional_expression] = STATE(3462), + [sym_conditional_access_expression] = STATE(3462), + [sym_as_expression] = STATE(3462), + [sym_is_expression] = STATE(3462), + [sym_is_pattern_expression] = STATE(3462), + [sym_cast_expression] = STATE(3462), + [sym_checked_expression] = STATE(3462), + [sym_invocation_expression] = STATE(3497), + [sym_switch_expression] = STATE(3462), + [sym_await_expression] = STATE(3497), + [sym_throw_expression] = STATE(3462), + [sym_element_access_expression] = STATE(2815), + [sym_interpolated_string_expression] = STATE(3462), + [sym_member_access_expression] = STATE(2815), + [sym_object_creation_expression] = STATE(3497), + [sym_parenthesized_expression] = STATE(3497), + [sym__parenthesized_lvalue_expression] = STATE(2815), + [sym_lambda_expression] = STATE(3462), + [sym__lambda_expression_init] = STATE(7685), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3462), + [sym_anonymous_method_expression] = STATE(3462), + [sym_anonymous_object_creation_expression] = STATE(3462), + [sym_implicit_array_creation_expression] = STATE(3462), + [sym_implicit_object_creation_expression] = STATE(3462), + [sym_implicit_stackalloc_expression] = STATE(3462), + [sym_initializer_expression] = STATE(3462), + [sym_default_expression] = STATE(3462), + [sym_with_expression] = STATE(3462), + [sym_sizeof_expression] = STATE(3462), + [sym_typeof_expression] = STATE(3462), + [sym_makeref_expression] = STATE(3462), + [sym_ref_expression] = STATE(3462), + [sym_reftype_expression] = STATE(3462), + [sym_refvalue_expression] = STATE(3462), + [sym_stackalloc_expression] = STATE(3462), + [sym_range_expression] = STATE(3462), + [sym_tuple_expression] = STATE(2815), + [sym_literal] = STATE(3462), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2261), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3462), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(1517), [sym_preproc_endregion] = STATE(1517), [sym_preproc_line] = STATE(1517), @@ -298232,47 +298118,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(3067), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), [aux_sym__lambda_expression_init_repeat1] = STATE(3367), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1481), - [anon_sym_LPAREN] = ACTIONS(1933), - [anon_sym_ref] = ACTIONS(1935), - [anon_sym_LBRACE] = ACTIONS(1487), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1305), + [anon_sym_LPAREN] = ACTIONS(1613), + [anon_sym_ref] = ACTIONS(1615), + [anon_sym_LBRACE] = ACTIONS(1311), + [anon_sym_delegate] = ACTIONS(1313), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1937), + [anon_sym_new] = ACTIONS(1315), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1067), - [anon_sym_BANG] = ACTIONS(1941), - [anon_sym_TILDE] = ACTIONS(1941), - [anon_sym_PLUS_PLUS] = ACTIONS(1941), - [anon_sym_DASH_DASH] = ACTIONS(1941), - [anon_sym_true] = ACTIONS(1259), - [anon_sym_false] = ACTIONS(1259), - [anon_sym_PLUS] = ACTIONS(1939), - [anon_sym_DASH] = ACTIONS(1939), - [anon_sym_STAR] = ACTIONS(1943), - [anon_sym_CARET] = ACTIONS(1941), - [anon_sym_AMP] = ACTIONS(1941), - [anon_sym_this] = ACTIONS(83), + [anon_sym_checked] = ACTIONS(1317), + [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(1321), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), + [anon_sym_base] = ACTIONS(1323), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1267), - [anon_sym_unchecked] = ACTIONS(1067), + [sym_predefined_type] = ACTIONS(91), + [anon_sym_unchecked] = ACTIONS(1317), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1269), - [anon_sym_throw] = ACTIONS(1945), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(1623), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1947), - [anon_sym_DOT_DOT] = ACTIONS(1949), + [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), @@ -298285,19 +298171,19 @@ static const uint16_t ts_parse_table[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(1279), - [anon_sym_typeof] = ACTIONS(1281), - [anon_sym___makeref] = ACTIONS(133), - [anon_sym___reftype] = ACTIONS(135), - [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(1289), - [anon_sym_SQUOTE] = ACTIONS(1291), - [sym_integer_literal] = ACTIONS(1289), - [sym_real_literal] = ACTIONS(1293), - [anon_sym_DQUOTE] = ACTIONS(1295), - [sym_verbatim_string_literal] = ACTIONS(1293), - [aux_sym_preproc_if_token1] = ACTIONS(1089), + [anon_sym_stackalloc] = ACTIONS(1331), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(1333), + [anon_sym___reftype] = ACTIONS(1335), + [anon_sym___refvalue] = ACTIONS(1337), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_literal] = ACTIONS(143), + [anon_sym_DQUOTE] = ACTIONS(145), + [sym_verbatim_string_literal] = ACTIONS(143), + [aux_sym_preproc_if_token1] = ACTIONS(1339), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -298308,90 +298194,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1299), - [sym_interpolation_verbatim_start] = ACTIONS(1301), - [sym_interpolation_raw_start] = ACTIONS(1303), - [sym_raw_string_start] = ACTIONS(1305), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [sym_interpolation_raw_start] = ACTIONS(155), + [sym_raw_string_start] = ACTIONS(157), }, [1518] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(5907), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2404), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(4101), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3122), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3080), - [sym_postfix_unary_expression] = STATE(3111), - [sym_prefix_unary_expression] = STATE(3111), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6149), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3080), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3111), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3080), - [sym_member_access_expression] = STATE(2484), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3111), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7563), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(3080), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3080), - [sym_typeof_expression] = STATE(3080), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2484), - [sym_literal] = STATE(3080), - [sym_character_literal] = STATE(3011), - [sym_string_literal] = STATE(3011), - [sym_raw_string_literal] = STATE(3011), - [sym_boolean_literal] = STATE(3011), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(5152), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2196), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(5445), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3683), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3102), + [sym_postfix_unary_expression] = STATE(3079), + [sym_prefix_unary_expression] = STATE(3079), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6147), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3102), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3079), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3102), + [sym_member_access_expression] = STATE(2472), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3079), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7404), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(3102), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3102), + [sym_typeof_expression] = STATE(3102), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2472), + [sym_literal] = STATE(3102), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2261), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(1518), [sym_preproc_endregion] = STATE(1518), [sym_preproc_line] = STATE(1518), @@ -298401,47 +298287,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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1481), - [anon_sym_LPAREN] = ACTIONS(1933), - [anon_sym_ref] = ACTIONS(1935), - [anon_sym_LBRACE] = ACTIONS(1487), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1479), + [anon_sym_LPAREN] = ACTIONS(1965), + [anon_sym_ref] = ACTIONS(1967), + [anon_sym_LBRACE] = ACTIONS(1481), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1937), + [anon_sym_new] = ACTIONS(1059), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1067), - [anon_sym_BANG] = ACTIONS(1941), - [anon_sym_TILDE] = ACTIONS(1941), - [anon_sym_PLUS_PLUS] = ACTIONS(1941), - [anon_sym_DASH_DASH] = ACTIONS(1941), - [anon_sym_true] = ACTIONS(1259), - [anon_sym_false] = ACTIONS(1259), - [anon_sym_PLUS] = ACTIONS(1939), - [anon_sym_DASH] = ACTIONS(1939), - [anon_sym_STAR] = ACTIONS(1943), - [anon_sym_CARET] = ACTIONS(1941), - [anon_sym_AMP] = ACTIONS(1941), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(1971), + [anon_sym_TILDE] = ACTIONS(1971), + [anon_sym_PLUS_PLUS] = ACTIONS(1971), + [anon_sym_DASH_DASH] = ACTIONS(1971), + [anon_sym_true] = ACTIONS(77), + [anon_sym_false] = ACTIONS(77), + [anon_sym_PLUS] = ACTIONS(1969), + [anon_sym_DASH] = ACTIONS(1969), + [anon_sym_STAR] = ACTIONS(1973), + [anon_sym_CARET] = ACTIONS(1971), + [anon_sym_AMP] = ACTIONS(1971), [anon_sym_this] = ACTIONS(83), [anon_sym_scoped] = ACTIONS(85), [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1267), - [anon_sym_unchecked] = ACTIONS(1067), + [sym_predefined_type] = ACTIONS(91), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1269), - [anon_sym_throw] = ACTIONS(1945), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(1975), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1947), - [anon_sym_DOT_DOT] = ACTIONS(1949), + [anon_sym_await] = ACTIONS(1977), + [anon_sym_DOT_DOT] = ACTIONS(1979), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -298455,18 +298341,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(1279), - [anon_sym_typeof] = ACTIONS(1281), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), [anon_sym___makeref] = ACTIONS(133), [anon_sym___reftype] = ACTIONS(135), [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(1289), - [anon_sym_SQUOTE] = ACTIONS(1291), - [sym_integer_literal] = ACTIONS(1289), - [sym_real_literal] = ACTIONS(1293), - [anon_sym_DQUOTE] = ACTIONS(1295), - [sym_verbatim_string_literal] = ACTIONS(1293), - [aux_sym_preproc_if_token1] = ACTIONS(1089), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_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), @@ -298477,90 +298363,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1299), - [sym_interpolation_verbatim_start] = ACTIONS(1301), - [sym_interpolation_raw_start] = ACTIONS(1303), - [sym_raw_string_start] = ACTIONS(1305), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [sym_interpolation_raw_start] = ACTIONS(155), + [sym_raw_string_start] = ACTIONS(157), }, [1519] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(5907), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2404), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(4112), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3122), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3080), - [sym_postfix_unary_expression] = STATE(3111), - [sym_prefix_unary_expression] = STATE(3111), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6149), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3080), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3111), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3080), - [sym_member_access_expression] = STATE(2484), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3111), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7563), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(3080), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3080), - [sym_typeof_expression] = STATE(3080), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2484), - [sym_literal] = STATE(3080), - [sym_character_literal] = STATE(3011), - [sym_string_literal] = STATE(3011), - [sym_raw_string_literal] = STATE(3011), - [sym_boolean_literal] = STATE(3011), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2416), + [sym__name] = STATE(5868), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2387), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(5240), + [sym_non_lvalue_expression] = STATE(3040), + [sym_lvalue_expression] = STATE(3634), + [sym__expression_statement_expression] = STATE(3035), + [sym_assignment_expression] = STATE(3043), + [sym_binary_expression] = STATE(3035), + [sym_postfix_unary_expression] = STATE(3043), + [sym_prefix_unary_expression] = STATE(3043), + [sym__pointer_indirection_expression] = STATE(2415), + [sym_query_expression] = STATE(3035), + [sym_from_clause] = STATE(6130), + [sym_conditional_expression] = STATE(3035), + [sym_conditional_access_expression] = STATE(3035), + [sym_as_expression] = STATE(3035), + [sym_is_expression] = STATE(3035), + [sym_is_pattern_expression] = STATE(3035), + [sym_cast_expression] = STATE(3035), + [sym_checked_expression] = STATE(3035), + [sym_invocation_expression] = STATE(3043), + [sym_switch_expression] = STATE(3035), + [sym_await_expression] = STATE(3043), + [sym_throw_expression] = STATE(3035), + [sym_element_access_expression] = STATE(2415), + [sym_interpolated_string_expression] = STATE(3035), + [sym_member_access_expression] = STATE(2415), + [sym_object_creation_expression] = STATE(3043), + [sym_parenthesized_expression] = STATE(3043), + [sym__parenthesized_lvalue_expression] = STATE(2415), + [sym_lambda_expression] = STATE(3035), + [sym__lambda_expression_init] = STATE(7324), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3035), + [sym_anonymous_method_expression] = STATE(3035), + [sym_anonymous_object_creation_expression] = STATE(3035), + [sym_implicit_array_creation_expression] = STATE(3035), + [sym_implicit_object_creation_expression] = STATE(3035), + [sym_implicit_stackalloc_expression] = STATE(3035), + [sym_initializer_expression] = STATE(3035), + [sym_default_expression] = STATE(3035), + [sym_with_expression] = STATE(3035), + [sym_sizeof_expression] = STATE(3035), + [sym_typeof_expression] = STATE(3035), + [sym_makeref_expression] = STATE(3035), + [sym_ref_expression] = STATE(3035), + [sym_reftype_expression] = STATE(3035), + [sym_refvalue_expression] = STATE(3035), + [sym_stackalloc_expression] = STATE(3035), + [sym_range_expression] = STATE(3035), + [sym_tuple_expression] = STATE(2415), + [sym_literal] = STATE(3035), + [sym_character_literal] = STATE(3037), + [sym_string_literal] = STATE(3037), + [sym_raw_string_literal] = STATE(3037), + [sym_boolean_literal] = STATE(3037), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3035), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(1519), [sym_preproc_endregion] = STATE(1519), [sym_preproc_line] = STATE(1519), @@ -298570,47 +298456,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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3455), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1481), - [anon_sym_LPAREN] = ACTIONS(1933), - [anon_sym_ref] = ACTIONS(1935), - [anon_sym_LBRACE] = ACTIONS(1487), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1239), + [anon_sym_LPAREN] = ACTIONS(2281), + [anon_sym_ref] = ACTIONS(2283), + [anon_sym_LBRACE] = ACTIONS(1245), + [anon_sym_delegate] = ACTIONS(1247), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1937), + [anon_sym_new] = ACTIONS(2285), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1067), - [anon_sym_BANG] = ACTIONS(1941), - [anon_sym_TILDE] = ACTIONS(1941), - [anon_sym_PLUS_PLUS] = ACTIONS(1941), - [anon_sym_DASH_DASH] = ACTIONS(1941), - [anon_sym_true] = ACTIONS(1259), - [anon_sym_false] = ACTIONS(1259), - [anon_sym_PLUS] = ACTIONS(1939), - [anon_sym_DASH] = ACTIONS(1939), - [anon_sym_STAR] = ACTIONS(1943), - [anon_sym_CARET] = ACTIONS(1941), - [anon_sym_AMP] = ACTIONS(1941), - [anon_sym_this] = ACTIONS(83), + [anon_sym_checked] = ACTIONS(1251), + [anon_sym_BANG] = ACTIONS(2289), + [anon_sym_TILDE] = ACTIONS(2289), + [anon_sym_PLUS_PLUS] = ACTIONS(2289), + [anon_sym_DASH_DASH] = ACTIONS(2289), + [anon_sym_true] = ACTIONS(1257), + [anon_sym_false] = ACTIONS(1257), + [anon_sym_PLUS] = ACTIONS(2287), + [anon_sym_DASH] = ACTIONS(2287), + [anon_sym_STAR] = ACTIONS(2291), + [anon_sym_CARET] = ACTIONS(2289), + [anon_sym_AMP] = ACTIONS(2289), + [anon_sym_this] = ACTIONS(1261), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), + [anon_sym_base] = ACTIONS(1263), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1267), - [anon_sym_unchecked] = ACTIONS(1067), + [sym_predefined_type] = ACTIONS(1265), + [anon_sym_unchecked] = ACTIONS(1251), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1269), - [anon_sym_throw] = ACTIONS(1945), + [anon_sym_default] = ACTIONS(1267), + [anon_sym_throw] = ACTIONS(2293), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1947), - [anon_sym_DOT_DOT] = ACTIONS(1949), + [anon_sym_await] = ACTIONS(2295), + [anon_sym_DOT_DOT] = ACTIONS(2297), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -298623,19 +298509,19 @@ static const uint16_t ts_parse_table[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(1279), - [anon_sym_typeof] = ACTIONS(1281), - [anon_sym___makeref] = ACTIONS(133), - [anon_sym___reftype] = ACTIONS(135), - [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(1289), - [anon_sym_SQUOTE] = ACTIONS(1291), - [sym_integer_literal] = ACTIONS(1289), - [sym_real_literal] = ACTIONS(1293), - [anon_sym_DQUOTE] = ACTIONS(1295), - [sym_verbatim_string_literal] = ACTIONS(1293), - [aux_sym_preproc_if_token1] = ACTIONS(1089), + [anon_sym_stackalloc] = ACTIONS(1275), + [anon_sym_sizeof] = ACTIONS(1277), + [anon_sym_typeof] = ACTIONS(1279), + [anon_sym___makeref] = ACTIONS(1281), + [anon_sym___reftype] = ACTIONS(1283), + [anon_sym___refvalue] = ACTIONS(1285), + [sym_null_literal] = ACTIONS(1287), + [anon_sym_SQUOTE] = ACTIONS(1289), + [sym_integer_literal] = ACTIONS(1287), + [sym_real_literal] = ACTIONS(1291), + [anon_sym_DQUOTE] = ACTIONS(1293), + [sym_verbatim_string_literal] = ACTIONS(1291), + [aux_sym_preproc_if_token1] = ACTIONS(1295), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -298646,90 +298532,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1299), - [sym_interpolation_verbatim_start] = ACTIONS(1301), - [sym_interpolation_raw_start] = ACTIONS(1303), - [sym_raw_string_start] = ACTIONS(1305), + [sym_interpolation_regular_start] = ACTIONS(1297), + [sym_interpolation_verbatim_start] = ACTIONS(1299), + [sym_interpolation_raw_start] = ACTIONS(1301), + [sym_raw_string_start] = ACTIONS(1303), }, [1520] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(5160), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2204), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(4566), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3461), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3080), - [sym_postfix_unary_expression] = STATE(3111), - [sym_prefix_unary_expression] = STATE(3111), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2816), + [sym__name] = STATE(5873), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2196), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(4965), + [sym_non_lvalue_expression] = STATE(3495), + [sym_lvalue_expression] = STATE(3514), + [sym__expression_statement_expression] = STATE(3462), + [sym_assignment_expression] = STATE(3497), + [sym_binary_expression] = STATE(3462), + [sym_postfix_unary_expression] = STATE(3497), + [sym_prefix_unary_expression] = STATE(3497), + [sym__pointer_indirection_expression] = STATE(2815), + [sym_query_expression] = STATE(3462), [sym_from_clause] = STATE(6154), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3080), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3111), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3080), - [sym_member_access_expression] = STATE(2484), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3111), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7547), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(3080), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3080), - [sym_typeof_expression] = STATE(3080), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2484), - [sym_literal] = STATE(3080), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_conditional_expression] = STATE(3462), + [sym_conditional_access_expression] = STATE(3462), + [sym_as_expression] = STATE(3462), + [sym_is_expression] = STATE(3462), + [sym_is_pattern_expression] = STATE(3462), + [sym_cast_expression] = STATE(3462), + [sym_checked_expression] = STATE(3462), + [sym_invocation_expression] = STATE(3497), + [sym_switch_expression] = STATE(3462), + [sym_await_expression] = STATE(3497), + [sym_throw_expression] = STATE(3462), + [sym_element_access_expression] = STATE(2815), + [sym_interpolated_string_expression] = STATE(3462), + [sym_member_access_expression] = STATE(2815), + [sym_object_creation_expression] = STATE(3497), + [sym_parenthesized_expression] = STATE(3497), + [sym__parenthesized_lvalue_expression] = STATE(2815), + [sym_lambda_expression] = STATE(3462), + [sym__lambda_expression_init] = STATE(7685), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3462), + [sym_anonymous_method_expression] = STATE(3462), + [sym_anonymous_object_creation_expression] = STATE(3462), + [sym_implicit_array_creation_expression] = STATE(3462), + [sym_implicit_object_creation_expression] = STATE(3462), + [sym_implicit_stackalloc_expression] = STATE(3462), + [sym_initializer_expression] = STATE(3462), + [sym_default_expression] = STATE(3462), + [sym_with_expression] = STATE(3462), + [sym_sizeof_expression] = STATE(3462), + [sym_typeof_expression] = STATE(3462), + [sym_makeref_expression] = STATE(3462), + [sym_ref_expression] = STATE(3462), + [sym_reftype_expression] = STATE(3462), + [sym_refvalue_expression] = STATE(3462), + [sym_stackalloc_expression] = STATE(3462), + [sym_range_expression] = STATE(3462), + [sym_tuple_expression] = STATE(2815), + [sym_literal] = STATE(3462), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2261), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3462), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(1520), [sym_preproc_endregion] = STATE(1520), [sym_preproc_line] = STATE(1520), @@ -298739,47 +298625,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(3067), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), [aux_sym__lambda_expression_init_repeat1] = STATE(3367), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1481), - [anon_sym_LPAREN] = ACTIONS(1497), - [anon_sym_ref] = ACTIONS(1499), - [anon_sym_LBRACE] = ACTIONS(1487), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1305), + [anon_sym_LPAREN] = ACTIONS(1613), + [anon_sym_ref] = ACTIONS(1615), + [anon_sym_LBRACE] = ACTIONS(1311), + [anon_sym_delegate] = ACTIONS(1313), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1501), + [anon_sym_new] = ACTIONS(1315), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = 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_checked] = ACTIONS(1317), + [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(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(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(1321), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), + [anon_sym_base] = ACTIONS(1323), [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1067), + [anon_sym_unchecked] = ACTIONS(1317), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1503), + [anon_sym_throw] = ACTIONS(1623), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1505), - [anon_sym_DOT_DOT] = ACTIONS(1507), + [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), @@ -298792,19 +298678,19 @@ static const uint16_t ts_parse_table[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(1331), [anon_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(1333), + [anon_sym___reftype] = ACTIONS(1335), + [anon_sym___refvalue] = ACTIONS(1337), [sym_null_literal] = ACTIONS(139), [anon_sym_SQUOTE] = ACTIONS(141), [sym_integer_literal] = ACTIONS(139), [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1089), + [aux_sym_preproc_if_token1] = ACTIONS(1339), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -298821,84 +298707,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [1521] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(5907), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2404), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(4119), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3122), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3080), - [sym_postfix_unary_expression] = STATE(3111), - [sym_prefix_unary_expression] = STATE(3111), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6149), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3080), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3111), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3080), - [sym_member_access_expression] = STATE(2484), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3111), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7563), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(3080), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3080), - [sym_typeof_expression] = STATE(3080), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2484), - [sym_literal] = STATE(3080), - [sym_character_literal] = STATE(3011), - [sym_string_literal] = STATE(3011), - [sym_raw_string_literal] = STATE(3011), - [sym_boolean_literal] = STATE(3011), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2816), + [sym__name] = STATE(5873), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2196), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(4968), + [sym_non_lvalue_expression] = STATE(3495), + [sym_lvalue_expression] = STATE(3514), + [sym__expression_statement_expression] = STATE(3462), + [sym_assignment_expression] = STATE(3497), + [sym_binary_expression] = STATE(3462), + [sym_postfix_unary_expression] = STATE(3497), + [sym_prefix_unary_expression] = STATE(3497), + [sym__pointer_indirection_expression] = STATE(2815), + [sym_query_expression] = STATE(3462), + [sym_from_clause] = STATE(6154), + [sym_conditional_expression] = STATE(3462), + [sym_conditional_access_expression] = STATE(3462), + [sym_as_expression] = STATE(3462), + [sym_is_expression] = STATE(3462), + [sym_is_pattern_expression] = STATE(3462), + [sym_cast_expression] = STATE(3462), + [sym_checked_expression] = STATE(3462), + [sym_invocation_expression] = STATE(3497), + [sym_switch_expression] = STATE(3462), + [sym_await_expression] = STATE(3497), + [sym_throw_expression] = STATE(3462), + [sym_element_access_expression] = STATE(2815), + [sym_interpolated_string_expression] = STATE(3462), + [sym_member_access_expression] = STATE(2815), + [sym_object_creation_expression] = STATE(3497), + [sym_parenthesized_expression] = STATE(3497), + [sym__parenthesized_lvalue_expression] = STATE(2815), + [sym_lambda_expression] = STATE(3462), + [sym__lambda_expression_init] = STATE(7685), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3462), + [sym_anonymous_method_expression] = STATE(3462), + [sym_anonymous_object_creation_expression] = STATE(3462), + [sym_implicit_array_creation_expression] = STATE(3462), + [sym_implicit_object_creation_expression] = STATE(3462), + [sym_implicit_stackalloc_expression] = STATE(3462), + [sym_initializer_expression] = STATE(3462), + [sym_default_expression] = STATE(3462), + [sym_with_expression] = STATE(3462), + [sym_sizeof_expression] = STATE(3462), + [sym_typeof_expression] = STATE(3462), + [sym_makeref_expression] = STATE(3462), + [sym_ref_expression] = STATE(3462), + [sym_reftype_expression] = STATE(3462), + [sym_refvalue_expression] = STATE(3462), + [sym_stackalloc_expression] = STATE(3462), + [sym_range_expression] = STATE(3462), + [sym_tuple_expression] = STATE(2815), + [sym_literal] = STATE(3462), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2261), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3462), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(1521), [sym_preproc_endregion] = STATE(1521), [sym_preproc_line] = STATE(1521), @@ -298908,47 +298794,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(3067), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), [aux_sym__lambda_expression_init_repeat1] = STATE(3367), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1481), - [anon_sym_LPAREN] = ACTIONS(1933), - [anon_sym_ref] = ACTIONS(1935), - [anon_sym_LBRACE] = ACTIONS(1487), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1305), + [anon_sym_LPAREN] = ACTIONS(1613), + [anon_sym_ref] = ACTIONS(1615), + [anon_sym_LBRACE] = ACTIONS(1311), + [anon_sym_delegate] = ACTIONS(1313), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1937), + [anon_sym_new] = ACTIONS(1315), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1067), - [anon_sym_BANG] = ACTIONS(1941), - [anon_sym_TILDE] = ACTIONS(1941), - [anon_sym_PLUS_PLUS] = ACTIONS(1941), - [anon_sym_DASH_DASH] = ACTIONS(1941), - [anon_sym_true] = ACTIONS(1259), - [anon_sym_false] = ACTIONS(1259), - [anon_sym_PLUS] = ACTIONS(1939), - [anon_sym_DASH] = ACTIONS(1939), - [anon_sym_STAR] = ACTIONS(1943), - [anon_sym_CARET] = ACTIONS(1941), - [anon_sym_AMP] = ACTIONS(1941), - [anon_sym_this] = ACTIONS(83), + [anon_sym_checked] = ACTIONS(1317), + [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(1321), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), + [anon_sym_base] = ACTIONS(1323), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1267), - [anon_sym_unchecked] = ACTIONS(1067), + [sym_predefined_type] = ACTIONS(91), + [anon_sym_unchecked] = ACTIONS(1317), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1269), - [anon_sym_throw] = ACTIONS(1945), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(1623), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1947), - [anon_sym_DOT_DOT] = ACTIONS(1949), + [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), @@ -298961,19 +298847,19 @@ static const uint16_t ts_parse_table[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(1279), - [anon_sym_typeof] = ACTIONS(1281), - [anon_sym___makeref] = ACTIONS(133), - [anon_sym___reftype] = ACTIONS(135), - [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(1289), - [anon_sym_SQUOTE] = ACTIONS(1291), - [sym_integer_literal] = ACTIONS(1289), - [sym_real_literal] = ACTIONS(1293), - [anon_sym_DQUOTE] = ACTIONS(1295), - [sym_verbatim_string_literal] = ACTIONS(1293), - [aux_sym_preproc_if_token1] = ACTIONS(1089), + [anon_sym_stackalloc] = ACTIONS(1331), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(1333), + [anon_sym___reftype] = ACTIONS(1335), + [anon_sym___refvalue] = ACTIONS(1337), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_literal] = ACTIONS(143), + [anon_sym_DQUOTE] = ACTIONS(145), + [sym_verbatim_string_literal] = ACTIONS(143), + [aux_sym_preproc_if_token1] = ACTIONS(1339), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -298984,90 +298870,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1299), - [sym_interpolation_verbatim_start] = ACTIONS(1301), - [sym_interpolation_raw_start] = ACTIONS(1303), - [sym_raw_string_start] = ACTIONS(1305), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [sym_interpolation_raw_start] = ACTIONS(155), + [sym_raw_string_start] = ACTIONS(157), }, [1522] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(5907), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2404), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(4120), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3122), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3080), - [sym_postfix_unary_expression] = STATE(3111), - [sym_prefix_unary_expression] = STATE(3111), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6149), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3080), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3111), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3080), - [sym_member_access_expression] = STATE(2484), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3111), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7563), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(3080), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3080), - [sym_typeof_expression] = STATE(3080), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2484), - [sym_literal] = STATE(3080), - [sym_character_literal] = STATE(3011), - [sym_string_literal] = STATE(3011), - [sym_raw_string_literal] = STATE(3011), - [sym_boolean_literal] = STATE(3011), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2816), + [sym__name] = STATE(5873), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2196), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(4995), + [sym_non_lvalue_expression] = STATE(3495), + [sym_lvalue_expression] = STATE(3514), + [sym__expression_statement_expression] = STATE(3462), + [sym_assignment_expression] = STATE(3497), + [sym_binary_expression] = STATE(3462), + [sym_postfix_unary_expression] = STATE(3497), + [sym_prefix_unary_expression] = STATE(3497), + [sym__pointer_indirection_expression] = STATE(2815), + [sym_query_expression] = STATE(3462), + [sym_from_clause] = STATE(6154), + [sym_conditional_expression] = STATE(3462), + [sym_conditional_access_expression] = STATE(3462), + [sym_as_expression] = STATE(3462), + [sym_is_expression] = STATE(3462), + [sym_is_pattern_expression] = STATE(3462), + [sym_cast_expression] = STATE(3462), + [sym_checked_expression] = STATE(3462), + [sym_invocation_expression] = STATE(3497), + [sym_switch_expression] = STATE(3462), + [sym_await_expression] = STATE(3497), + [sym_throw_expression] = STATE(3462), + [sym_element_access_expression] = STATE(2815), + [sym_interpolated_string_expression] = STATE(3462), + [sym_member_access_expression] = STATE(2815), + [sym_object_creation_expression] = STATE(3497), + [sym_parenthesized_expression] = STATE(3497), + [sym__parenthesized_lvalue_expression] = STATE(2815), + [sym_lambda_expression] = STATE(3462), + [sym__lambda_expression_init] = STATE(7685), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3462), + [sym_anonymous_method_expression] = STATE(3462), + [sym_anonymous_object_creation_expression] = STATE(3462), + [sym_implicit_array_creation_expression] = STATE(3462), + [sym_implicit_object_creation_expression] = STATE(3462), + [sym_implicit_stackalloc_expression] = STATE(3462), + [sym_initializer_expression] = STATE(3462), + [sym_default_expression] = STATE(3462), + [sym_with_expression] = STATE(3462), + [sym_sizeof_expression] = STATE(3462), + [sym_typeof_expression] = STATE(3462), + [sym_makeref_expression] = STATE(3462), + [sym_ref_expression] = STATE(3462), + [sym_reftype_expression] = STATE(3462), + [sym_refvalue_expression] = STATE(3462), + [sym_stackalloc_expression] = STATE(3462), + [sym_range_expression] = STATE(3462), + [sym_tuple_expression] = STATE(2815), + [sym_literal] = STATE(3462), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2261), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3462), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(1522), [sym_preproc_endregion] = STATE(1522), [sym_preproc_line] = STATE(1522), @@ -299077,47 +298963,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(3067), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), [aux_sym__lambda_expression_init_repeat1] = STATE(3367), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1481), - [anon_sym_LPAREN] = ACTIONS(1933), - [anon_sym_ref] = ACTIONS(1935), - [anon_sym_LBRACE] = ACTIONS(1487), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1305), + [anon_sym_LPAREN] = ACTIONS(1613), + [anon_sym_ref] = ACTIONS(1615), + [anon_sym_LBRACE] = ACTIONS(1311), + [anon_sym_delegate] = ACTIONS(1313), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1937), + [anon_sym_new] = ACTIONS(1315), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1067), - [anon_sym_BANG] = ACTIONS(1941), - [anon_sym_TILDE] = ACTIONS(1941), - [anon_sym_PLUS_PLUS] = ACTIONS(1941), - [anon_sym_DASH_DASH] = ACTIONS(1941), - [anon_sym_true] = ACTIONS(1259), - [anon_sym_false] = ACTIONS(1259), - [anon_sym_PLUS] = ACTIONS(1939), - [anon_sym_DASH] = ACTIONS(1939), - [anon_sym_STAR] = ACTIONS(1943), - [anon_sym_CARET] = ACTIONS(1941), - [anon_sym_AMP] = ACTIONS(1941), - [anon_sym_this] = ACTIONS(83), + [anon_sym_checked] = ACTIONS(1317), + [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(1321), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), + [anon_sym_base] = ACTIONS(1323), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1267), - [anon_sym_unchecked] = ACTIONS(1067), + [sym_predefined_type] = ACTIONS(91), + [anon_sym_unchecked] = ACTIONS(1317), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1269), - [anon_sym_throw] = ACTIONS(1945), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(1623), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1947), - [anon_sym_DOT_DOT] = ACTIONS(1949), + [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), @@ -299130,19 +299016,19 @@ static const uint16_t ts_parse_table[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(1279), - [anon_sym_typeof] = ACTIONS(1281), - [anon_sym___makeref] = ACTIONS(133), - [anon_sym___reftype] = ACTIONS(135), - [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(1289), - [anon_sym_SQUOTE] = ACTIONS(1291), - [sym_integer_literal] = ACTIONS(1289), - [sym_real_literal] = ACTIONS(1293), - [anon_sym_DQUOTE] = ACTIONS(1295), - [sym_verbatim_string_literal] = ACTIONS(1293), - [aux_sym_preproc_if_token1] = ACTIONS(1089), + [anon_sym_stackalloc] = ACTIONS(1331), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(1333), + [anon_sym___reftype] = ACTIONS(1335), + [anon_sym___refvalue] = ACTIONS(1337), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_literal] = ACTIONS(143), + [anon_sym_DQUOTE] = ACTIONS(145), + [sym_verbatim_string_literal] = ACTIONS(143), + [aux_sym_preproc_if_token1] = ACTIONS(1339), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -299153,90 +299039,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1299), - [sym_interpolation_verbatim_start] = ACTIONS(1301), - [sym_interpolation_raw_start] = ACTIONS(1303), - [sym_raw_string_start] = ACTIONS(1305), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [sym_interpolation_raw_start] = ACTIONS(155), + [sym_raw_string_start] = ACTIONS(157), }, [1523] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(5907), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2404), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(4121), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3122), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3080), - [sym_postfix_unary_expression] = STATE(3111), - [sym_prefix_unary_expression] = STATE(3111), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6149), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3080), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3111), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3080), - [sym_member_access_expression] = STATE(2484), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3111), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7563), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(3080), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3080), - [sym_typeof_expression] = STATE(3080), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2484), - [sym_literal] = STATE(3080), - [sym_character_literal] = STATE(3011), - [sym_string_literal] = STATE(3011), - [sym_raw_string_literal] = STATE(3011), - [sym_boolean_literal] = STATE(3011), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2816), + [sym__name] = STATE(5873), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2196), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(4969), + [sym_non_lvalue_expression] = STATE(3495), + [sym_lvalue_expression] = STATE(3514), + [sym__expression_statement_expression] = STATE(3462), + [sym_assignment_expression] = STATE(3497), + [sym_binary_expression] = STATE(3462), + [sym_postfix_unary_expression] = STATE(3497), + [sym_prefix_unary_expression] = STATE(3497), + [sym__pointer_indirection_expression] = STATE(2815), + [sym_query_expression] = STATE(3462), + [sym_from_clause] = STATE(6154), + [sym_conditional_expression] = STATE(3462), + [sym_conditional_access_expression] = STATE(3462), + [sym_as_expression] = STATE(3462), + [sym_is_expression] = STATE(3462), + [sym_is_pattern_expression] = STATE(3462), + [sym_cast_expression] = STATE(3462), + [sym_checked_expression] = STATE(3462), + [sym_invocation_expression] = STATE(3497), + [sym_switch_expression] = STATE(3462), + [sym_await_expression] = STATE(3497), + [sym_throw_expression] = STATE(3462), + [sym_element_access_expression] = STATE(2815), + [sym_interpolated_string_expression] = STATE(3462), + [sym_member_access_expression] = STATE(2815), + [sym_object_creation_expression] = STATE(3497), + [sym_parenthesized_expression] = STATE(3497), + [sym__parenthesized_lvalue_expression] = STATE(2815), + [sym_lambda_expression] = STATE(3462), + [sym__lambda_expression_init] = STATE(7685), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3462), + [sym_anonymous_method_expression] = STATE(3462), + [sym_anonymous_object_creation_expression] = STATE(3462), + [sym_implicit_array_creation_expression] = STATE(3462), + [sym_implicit_object_creation_expression] = STATE(3462), + [sym_implicit_stackalloc_expression] = STATE(3462), + [sym_initializer_expression] = STATE(3462), + [sym_default_expression] = STATE(3462), + [sym_with_expression] = STATE(3462), + [sym_sizeof_expression] = STATE(3462), + [sym_typeof_expression] = STATE(3462), + [sym_makeref_expression] = STATE(3462), + [sym_ref_expression] = STATE(3462), + [sym_reftype_expression] = STATE(3462), + [sym_refvalue_expression] = STATE(3462), + [sym_stackalloc_expression] = STATE(3462), + [sym_range_expression] = STATE(3462), + [sym_tuple_expression] = STATE(2815), + [sym_literal] = STATE(3462), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2261), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3462), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(1523), [sym_preproc_endregion] = STATE(1523), [sym_preproc_line] = STATE(1523), @@ -299246,47 +299132,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(3067), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), [aux_sym__lambda_expression_init_repeat1] = STATE(3367), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1481), - [anon_sym_LPAREN] = ACTIONS(1933), - [anon_sym_ref] = ACTIONS(1935), - [anon_sym_LBRACE] = ACTIONS(1487), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1305), + [anon_sym_LPAREN] = ACTIONS(1613), + [anon_sym_ref] = ACTIONS(1615), + [anon_sym_LBRACE] = ACTIONS(1311), + [anon_sym_delegate] = ACTIONS(1313), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1937), + [anon_sym_new] = ACTIONS(1315), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1067), - [anon_sym_BANG] = ACTIONS(1941), - [anon_sym_TILDE] = ACTIONS(1941), - [anon_sym_PLUS_PLUS] = ACTIONS(1941), - [anon_sym_DASH_DASH] = ACTIONS(1941), - [anon_sym_true] = ACTIONS(1259), - [anon_sym_false] = ACTIONS(1259), - [anon_sym_PLUS] = ACTIONS(1939), - [anon_sym_DASH] = ACTIONS(1939), - [anon_sym_STAR] = ACTIONS(1943), - [anon_sym_CARET] = ACTIONS(1941), - [anon_sym_AMP] = ACTIONS(1941), - [anon_sym_this] = ACTIONS(83), + [anon_sym_checked] = ACTIONS(1317), + [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(1321), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), + [anon_sym_base] = ACTIONS(1323), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1267), - [anon_sym_unchecked] = ACTIONS(1067), + [sym_predefined_type] = ACTIONS(91), + [anon_sym_unchecked] = ACTIONS(1317), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1269), - [anon_sym_throw] = ACTIONS(1945), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(1623), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1947), - [anon_sym_DOT_DOT] = ACTIONS(1949), + [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), @@ -299299,19 +299185,19 @@ static const uint16_t ts_parse_table[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(1279), - [anon_sym_typeof] = ACTIONS(1281), - [anon_sym___makeref] = ACTIONS(133), - [anon_sym___reftype] = ACTIONS(135), - [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(1289), - [anon_sym_SQUOTE] = ACTIONS(1291), - [sym_integer_literal] = ACTIONS(1289), - [sym_real_literal] = ACTIONS(1293), - [anon_sym_DQUOTE] = ACTIONS(1295), - [sym_verbatim_string_literal] = ACTIONS(1293), - [aux_sym_preproc_if_token1] = ACTIONS(1089), + [anon_sym_stackalloc] = ACTIONS(1331), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(1333), + [anon_sym___reftype] = ACTIONS(1335), + [anon_sym___refvalue] = ACTIONS(1337), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_literal] = ACTIONS(143), + [anon_sym_DQUOTE] = ACTIONS(145), + [sym_verbatim_string_literal] = ACTIONS(143), + [aux_sym_preproc_if_token1] = ACTIONS(1339), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -299322,90 +299208,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1299), - [sym_interpolation_verbatim_start] = ACTIONS(1301), - [sym_interpolation_raw_start] = ACTIONS(1303), - [sym_raw_string_start] = ACTIONS(1305), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [sym_interpolation_raw_start] = ACTIONS(155), + [sym_raw_string_start] = ACTIONS(157), }, [1524] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2914), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2816), [sym__name] = STATE(5873), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2362), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(3680), - [sym_non_lvalue_expression] = STATE(3880), - [sym_lvalue_expression] = STATE(2949), - [sym__expression_statement_expression] = STATE(3873), - [sym_assignment_expression] = STATE(3881), - [sym_binary_expression] = STATE(3873), - [sym_postfix_unary_expression] = STATE(3881), - [sym_prefix_unary_expression] = STATE(3881), - [sym__pointer_indirection_expression] = STATE(2913), - [sym_query_expression] = STATE(3873), - [sym_from_clause] = STATE(6182), - [sym_conditional_expression] = STATE(3873), - [sym_conditional_access_expression] = STATE(3873), - [sym_as_expression] = STATE(3873), - [sym_is_expression] = STATE(3873), - [sym_is_pattern_expression] = STATE(3873), - [sym_cast_expression] = STATE(3873), - [sym_checked_expression] = STATE(3873), - [sym_invocation_expression] = STATE(3881), - [sym_switch_expression] = STATE(3873), - [sym_await_expression] = STATE(3881), - [sym_throw_expression] = STATE(3873), - [sym_element_access_expression] = STATE(2913), - [sym_interpolated_string_expression] = STATE(3873), - [sym_member_access_expression] = STATE(2913), - [sym_object_creation_expression] = STATE(3881), - [sym_parenthesized_expression] = STATE(3881), - [sym__parenthesized_lvalue_expression] = STATE(2913), - [sym_lambda_expression] = STATE(3873), - [sym__lambda_expression_init] = STATE(7721), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3873), - [sym_anonymous_method_expression] = STATE(3873), - [sym_anonymous_object_creation_expression] = STATE(3873), - [sym_implicit_array_creation_expression] = STATE(3873), - [sym_implicit_object_creation_expression] = STATE(3873), - [sym_implicit_stackalloc_expression] = STATE(3873), - [sym_initializer_expression] = STATE(3873), - [sym_default_expression] = STATE(3873), - [sym_with_expression] = STATE(3873), - [sym_sizeof_expression] = STATE(3873), - [sym_typeof_expression] = STATE(3873), - [sym_makeref_expression] = STATE(3873), - [sym_ref_expression] = STATE(3873), - [sym_reftype_expression] = STATE(3873), - [sym_refvalue_expression] = STATE(3873), - [sym_stackalloc_expression] = STATE(3873), - [sym_range_expression] = STATE(3873), - [sym_tuple_expression] = STATE(2913), - [sym_literal] = STATE(3873), - [sym_character_literal] = STATE(3877), - [sym_string_literal] = STATE(3877), - [sym_raw_string_literal] = STATE(3877), - [sym_boolean_literal] = STATE(3877), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3873), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2196), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(4970), + [sym_non_lvalue_expression] = STATE(3495), + [sym_lvalue_expression] = STATE(3514), + [sym__expression_statement_expression] = STATE(3462), + [sym_assignment_expression] = STATE(3497), + [sym_binary_expression] = STATE(3462), + [sym_postfix_unary_expression] = STATE(3497), + [sym_prefix_unary_expression] = STATE(3497), + [sym__pointer_indirection_expression] = STATE(2815), + [sym_query_expression] = STATE(3462), + [sym_from_clause] = STATE(6154), + [sym_conditional_expression] = STATE(3462), + [sym_conditional_access_expression] = STATE(3462), + [sym_as_expression] = STATE(3462), + [sym_is_expression] = STATE(3462), + [sym_is_pattern_expression] = STATE(3462), + [sym_cast_expression] = STATE(3462), + [sym_checked_expression] = STATE(3462), + [sym_invocation_expression] = STATE(3497), + [sym_switch_expression] = STATE(3462), + [sym_await_expression] = STATE(3497), + [sym_throw_expression] = STATE(3462), + [sym_element_access_expression] = STATE(2815), + [sym_interpolated_string_expression] = STATE(3462), + [sym_member_access_expression] = STATE(2815), + [sym_object_creation_expression] = STATE(3497), + [sym_parenthesized_expression] = STATE(3497), + [sym__parenthesized_lvalue_expression] = STATE(2815), + [sym_lambda_expression] = STATE(3462), + [sym__lambda_expression_init] = STATE(7685), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3462), + [sym_anonymous_method_expression] = STATE(3462), + [sym_anonymous_object_creation_expression] = STATE(3462), + [sym_implicit_array_creation_expression] = STATE(3462), + [sym_implicit_object_creation_expression] = STATE(3462), + [sym_implicit_stackalloc_expression] = STATE(3462), + [sym_initializer_expression] = STATE(3462), + [sym_default_expression] = STATE(3462), + [sym_with_expression] = STATE(3462), + [sym_sizeof_expression] = STATE(3462), + [sym_typeof_expression] = STATE(3462), + [sym_makeref_expression] = STATE(3462), + [sym_ref_expression] = STATE(3462), + [sym_reftype_expression] = STATE(3462), + [sym_refvalue_expression] = STATE(3462), + [sym_stackalloc_expression] = STATE(3462), + [sym_range_expression] = STATE(3462), + [sym_tuple_expression] = STATE(2815), + [sym_literal] = STATE(3462), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2261), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3462), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(1524), [sym_preproc_endregion] = STATE(1524), [sym_preproc_line] = STATE(1524), @@ -299415,47 +299301,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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3382), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3367), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1627), - [anon_sym_LPAREN] = ACTIONS(1629), - [anon_sym_ref] = ACTIONS(1631), - [anon_sym_LBRACE] = ACTIONS(1633), - [anon_sym_delegate] = ACTIONS(1635), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1305), + [anon_sym_LPAREN] = ACTIONS(1613), + [anon_sym_ref] = ACTIONS(1615), + [anon_sym_LBRACE] = ACTIONS(1311), + [anon_sym_delegate] = ACTIONS(1313), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1637), + [anon_sym_new] = ACTIONS(1315), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1639), - [anon_sym_BANG] = ACTIONS(1643), - [anon_sym_TILDE] = ACTIONS(1643), - [anon_sym_PLUS_PLUS] = ACTIONS(1643), - [anon_sym_DASH_DASH] = ACTIONS(1643), - [anon_sym_true] = ACTIONS(1645), - [anon_sym_false] = ACTIONS(1645), - [anon_sym_PLUS] = ACTIONS(1641), - [anon_sym_DASH] = ACTIONS(1641), - [anon_sym_STAR] = ACTIONS(1647), - [anon_sym_CARET] = ACTIONS(1643), - [anon_sym_AMP] = ACTIONS(1643), - [anon_sym_this] = ACTIONS(1649), + [anon_sym_checked] = ACTIONS(1317), + [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(1321), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1651), + [anon_sym_base] = ACTIONS(1323), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1653), - [anon_sym_unchecked] = ACTIONS(1639), + [sym_predefined_type] = ACTIONS(91), + [anon_sym_unchecked] = ACTIONS(1317), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1655), - [anon_sym_throw] = ACTIONS(1657), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(1623), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1659), - [anon_sym_DOT_DOT] = ACTIONS(1661), + [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), @@ -299468,19 +299354,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1663), - [anon_sym_sizeof] = ACTIONS(1665), - [anon_sym_typeof] = ACTIONS(1667), - [anon_sym___makeref] = ACTIONS(1669), - [anon_sym___reftype] = ACTIONS(1671), - [anon_sym___refvalue] = ACTIONS(1673), - [sym_null_literal] = ACTIONS(1675), - [anon_sym_SQUOTE] = ACTIONS(1677), - [sym_integer_literal] = ACTIONS(1675), - [sym_real_literal] = ACTIONS(1679), - [anon_sym_DQUOTE] = ACTIONS(1681), - [sym_verbatim_string_literal] = ACTIONS(1679), - [aux_sym_preproc_if_token1] = ACTIONS(1683), + [anon_sym_stackalloc] = ACTIONS(1331), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(1333), + [anon_sym___reftype] = ACTIONS(1335), + [anon_sym___refvalue] = ACTIONS(1337), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_literal] = ACTIONS(143), + [anon_sym_DQUOTE] = ACTIONS(145), + [sym_verbatim_string_literal] = ACTIONS(143), + [aux_sym_preproc_if_token1] = ACTIONS(1339), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -299491,90 +299377,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1685), - [sym_interpolation_verbatim_start] = ACTIONS(1687), - [sym_interpolation_raw_start] = ACTIONS(1689), - [sym_raw_string_start] = ACTIONS(1691), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [sym_interpolation_raw_start] = ACTIONS(155), + [sym_raw_string_start] = ACTIONS(157), }, [1525] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2762), - [sym__name] = STATE(5910), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2204), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(4291), - [sym_non_lvalue_expression] = STATE(3438), - [sym_lvalue_expression] = STATE(3162), - [sym__expression_statement_expression] = STATE(3362), - [sym_assignment_expression] = STATE(3449), - [sym_binary_expression] = STATE(3362), - [sym_postfix_unary_expression] = STATE(3449), - [sym_prefix_unary_expression] = STATE(3449), - [sym__pointer_indirection_expression] = STATE(2747), - [sym_query_expression] = STATE(3362), - [sym_from_clause] = STATE(6171), - [sym_conditional_expression] = STATE(3362), - [sym_conditional_access_expression] = STATE(3362), - [sym_as_expression] = STATE(3362), - [sym_is_expression] = STATE(3362), - [sym_is_pattern_expression] = STATE(3362), - [sym_cast_expression] = STATE(3362), - [sym_checked_expression] = STATE(3362), - [sym_invocation_expression] = STATE(3449), - [sym_switch_expression] = STATE(3362), - [sym_await_expression] = STATE(3449), - [sym_throw_expression] = STATE(3362), - [sym_element_access_expression] = STATE(2747), - [sym_interpolated_string_expression] = STATE(3362), - [sym_member_access_expression] = STATE(2747), - [sym_object_creation_expression] = STATE(3449), - [sym_parenthesized_expression] = STATE(3449), - [sym__parenthesized_lvalue_expression] = STATE(2747), - [sym_lambda_expression] = STATE(3362), - [sym__lambda_expression_init] = STATE(7320), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3362), - [sym_anonymous_method_expression] = STATE(3362), - [sym_anonymous_object_creation_expression] = STATE(3362), - [sym_implicit_array_creation_expression] = STATE(3362), - [sym_implicit_object_creation_expression] = STATE(3362), - [sym_implicit_stackalloc_expression] = STATE(3362), - [sym_initializer_expression] = STATE(3362), - [sym_default_expression] = STATE(3362), - [sym_with_expression] = STATE(3362), - [sym_sizeof_expression] = STATE(3362), - [sym_typeof_expression] = STATE(3362), - [sym_makeref_expression] = STATE(3362), - [sym_ref_expression] = STATE(3362), - [sym_reftype_expression] = STATE(3362), - [sym_refvalue_expression] = STATE(3362), - [sym_stackalloc_expression] = STATE(3362), - [sym_range_expression] = STATE(3362), - [sym_tuple_expression] = STATE(2747), - [sym_literal] = STATE(3362), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3362), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2816), + [sym__name] = STATE(5873), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2196), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(4972), + [sym_non_lvalue_expression] = STATE(3495), + [sym_lvalue_expression] = STATE(3514), + [sym__expression_statement_expression] = STATE(3462), + [sym_assignment_expression] = STATE(3497), + [sym_binary_expression] = STATE(3462), + [sym_postfix_unary_expression] = STATE(3497), + [sym_prefix_unary_expression] = STATE(3497), + [sym__pointer_indirection_expression] = STATE(2815), + [sym_query_expression] = STATE(3462), + [sym_from_clause] = STATE(6154), + [sym_conditional_expression] = STATE(3462), + [sym_conditional_access_expression] = STATE(3462), + [sym_as_expression] = STATE(3462), + [sym_is_expression] = STATE(3462), + [sym_is_pattern_expression] = STATE(3462), + [sym_cast_expression] = STATE(3462), + [sym_checked_expression] = STATE(3462), + [sym_invocation_expression] = STATE(3497), + [sym_switch_expression] = STATE(3462), + [sym_await_expression] = STATE(3497), + [sym_throw_expression] = STATE(3462), + [sym_element_access_expression] = STATE(2815), + [sym_interpolated_string_expression] = STATE(3462), + [sym_member_access_expression] = STATE(2815), + [sym_object_creation_expression] = STATE(3497), + [sym_parenthesized_expression] = STATE(3497), + [sym__parenthesized_lvalue_expression] = STATE(2815), + [sym_lambda_expression] = STATE(3462), + [sym__lambda_expression_init] = STATE(7685), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3462), + [sym_anonymous_method_expression] = STATE(3462), + [sym_anonymous_object_creation_expression] = STATE(3462), + [sym_implicit_array_creation_expression] = STATE(3462), + [sym_implicit_object_creation_expression] = STATE(3462), + [sym_implicit_stackalloc_expression] = STATE(3462), + [sym_initializer_expression] = STATE(3462), + [sym_default_expression] = STATE(3462), + [sym_with_expression] = STATE(3462), + [sym_sizeof_expression] = STATE(3462), + [sym_typeof_expression] = STATE(3462), + [sym_makeref_expression] = STATE(3462), + [sym_ref_expression] = STATE(3462), + [sym_reftype_expression] = STATE(3462), + [sym_refvalue_expression] = STATE(3462), + [sym_stackalloc_expression] = STATE(3462), + [sym_range_expression] = STATE(3462), + [sym_tuple_expression] = STATE(2815), + [sym_literal] = STATE(3462), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2261), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3462), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(1525), [sym_preproc_endregion] = STATE(1525), [sym_preproc_line] = STATE(1525), @@ -299584,47 +299470,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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3385), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3367), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1307), - [anon_sym_LPAREN] = ACTIONS(1343), - [anon_sym_ref] = ACTIONS(1345), - [anon_sym_LBRACE] = ACTIONS(1313), - [anon_sym_delegate] = ACTIONS(1315), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1305), + [anon_sym_LPAREN] = ACTIONS(1613), + [anon_sym_ref] = ACTIONS(1615), + [anon_sym_LBRACE] = ACTIONS(1311), + [anon_sym_delegate] = ACTIONS(1313), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1317), + [anon_sym_new] = ACTIONS(1315), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1319), - [anon_sym_BANG] = ACTIONS(1349), - [anon_sym_TILDE] = ACTIONS(1349), - [anon_sym_PLUS_PLUS] = ACTIONS(1349), - [anon_sym_DASH_DASH] = ACTIONS(1349), + [anon_sym_checked] = ACTIONS(1317), + [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(1347), - [anon_sym_DASH] = ACTIONS(1347), - [anon_sym_STAR] = ACTIONS(1351), - [anon_sym_CARET] = ACTIONS(1349), - [anon_sym_AMP] = ACTIONS(1349), - [anon_sym_this] = ACTIONS(1323), + [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(1321), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1325), + [anon_sym_base] = ACTIONS(1323), [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1319), + [anon_sym_unchecked] = ACTIONS(1317), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1353), + [anon_sym_throw] = ACTIONS(1623), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1355), - [anon_sym_DOT_DOT] = ACTIONS(1357), + [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), @@ -299637,19 +299523,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1333), + [anon_sym_stackalloc] = ACTIONS(1331), [anon_sym_sizeof] = ACTIONS(129), [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(1335), - [anon_sym___reftype] = ACTIONS(1337), - [anon_sym___refvalue] = ACTIONS(1339), + [anon_sym___makeref] = ACTIONS(1333), + [anon_sym___reftype] = ACTIONS(1335), + [anon_sym___refvalue] = ACTIONS(1337), [sym_null_literal] = ACTIONS(139), [anon_sym_SQUOTE] = ACTIONS(141), [sym_integer_literal] = ACTIONS(139), [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1341), + [aux_sym_preproc_if_token1] = ACTIONS(1339), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -299666,84 +299552,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [1526] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(5907), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2404), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(4123), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3122), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3080), - [sym_postfix_unary_expression] = STATE(3111), - [sym_prefix_unary_expression] = STATE(3111), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6149), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3080), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3111), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3080), - [sym_member_access_expression] = STATE(2484), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3111), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7563), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(3080), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3080), - [sym_typeof_expression] = STATE(3080), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2484), - [sym_literal] = STATE(3080), - [sym_character_literal] = STATE(3011), - [sym_string_literal] = STATE(3011), - [sym_raw_string_literal] = STATE(3011), - [sym_boolean_literal] = STATE(3011), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2816), + [sym__name] = STATE(5873), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2196), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(4973), + [sym_non_lvalue_expression] = STATE(3495), + [sym_lvalue_expression] = STATE(3514), + [sym__expression_statement_expression] = STATE(3462), + [sym_assignment_expression] = STATE(3497), + [sym_binary_expression] = STATE(3462), + [sym_postfix_unary_expression] = STATE(3497), + [sym_prefix_unary_expression] = STATE(3497), + [sym__pointer_indirection_expression] = STATE(2815), + [sym_query_expression] = STATE(3462), + [sym_from_clause] = STATE(6154), + [sym_conditional_expression] = STATE(3462), + [sym_conditional_access_expression] = STATE(3462), + [sym_as_expression] = STATE(3462), + [sym_is_expression] = STATE(3462), + [sym_is_pattern_expression] = STATE(3462), + [sym_cast_expression] = STATE(3462), + [sym_checked_expression] = STATE(3462), + [sym_invocation_expression] = STATE(3497), + [sym_switch_expression] = STATE(3462), + [sym_await_expression] = STATE(3497), + [sym_throw_expression] = STATE(3462), + [sym_element_access_expression] = STATE(2815), + [sym_interpolated_string_expression] = STATE(3462), + [sym_member_access_expression] = STATE(2815), + [sym_object_creation_expression] = STATE(3497), + [sym_parenthesized_expression] = STATE(3497), + [sym__parenthesized_lvalue_expression] = STATE(2815), + [sym_lambda_expression] = STATE(3462), + [sym__lambda_expression_init] = STATE(7685), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3462), + [sym_anonymous_method_expression] = STATE(3462), + [sym_anonymous_object_creation_expression] = STATE(3462), + [sym_implicit_array_creation_expression] = STATE(3462), + [sym_implicit_object_creation_expression] = STATE(3462), + [sym_implicit_stackalloc_expression] = STATE(3462), + [sym_initializer_expression] = STATE(3462), + [sym_default_expression] = STATE(3462), + [sym_with_expression] = STATE(3462), + [sym_sizeof_expression] = STATE(3462), + [sym_typeof_expression] = STATE(3462), + [sym_makeref_expression] = STATE(3462), + [sym_ref_expression] = STATE(3462), + [sym_reftype_expression] = STATE(3462), + [sym_refvalue_expression] = STATE(3462), + [sym_stackalloc_expression] = STATE(3462), + [sym_range_expression] = STATE(3462), + [sym_tuple_expression] = STATE(2815), + [sym_literal] = STATE(3462), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2261), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3462), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(1526), [sym_preproc_endregion] = STATE(1526), [sym_preproc_line] = STATE(1526), @@ -299753,47 +299639,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(3067), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), [aux_sym__lambda_expression_init_repeat1] = STATE(3367), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1481), - [anon_sym_LPAREN] = ACTIONS(1933), - [anon_sym_ref] = ACTIONS(1935), - [anon_sym_LBRACE] = ACTIONS(1487), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1305), + [anon_sym_LPAREN] = ACTIONS(1613), + [anon_sym_ref] = ACTIONS(1615), + [anon_sym_LBRACE] = ACTIONS(1311), + [anon_sym_delegate] = ACTIONS(1313), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1937), + [anon_sym_new] = ACTIONS(1315), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1067), - [anon_sym_BANG] = ACTIONS(1941), - [anon_sym_TILDE] = ACTIONS(1941), - [anon_sym_PLUS_PLUS] = ACTIONS(1941), - [anon_sym_DASH_DASH] = ACTIONS(1941), - [anon_sym_true] = ACTIONS(1259), - [anon_sym_false] = ACTIONS(1259), - [anon_sym_PLUS] = ACTIONS(1939), - [anon_sym_DASH] = ACTIONS(1939), - [anon_sym_STAR] = ACTIONS(1943), - [anon_sym_CARET] = ACTIONS(1941), - [anon_sym_AMP] = ACTIONS(1941), - [anon_sym_this] = ACTIONS(83), + [anon_sym_checked] = ACTIONS(1317), + [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(1321), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), + [anon_sym_base] = ACTIONS(1323), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1267), - [anon_sym_unchecked] = ACTIONS(1067), + [sym_predefined_type] = ACTIONS(91), + [anon_sym_unchecked] = ACTIONS(1317), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1269), - [anon_sym_throw] = ACTIONS(1945), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(1623), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1947), - [anon_sym_DOT_DOT] = ACTIONS(1949), + [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), @@ -299806,19 +299692,19 @@ static const uint16_t ts_parse_table[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(1279), - [anon_sym_typeof] = ACTIONS(1281), - [anon_sym___makeref] = ACTIONS(133), - [anon_sym___reftype] = ACTIONS(135), - [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(1289), - [anon_sym_SQUOTE] = ACTIONS(1291), - [sym_integer_literal] = ACTIONS(1289), - [sym_real_literal] = ACTIONS(1293), - [anon_sym_DQUOTE] = ACTIONS(1295), - [sym_verbatim_string_literal] = ACTIONS(1293), - [aux_sym_preproc_if_token1] = ACTIONS(1089), + [anon_sym_stackalloc] = ACTIONS(1331), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(1333), + [anon_sym___reftype] = ACTIONS(1335), + [anon_sym___refvalue] = ACTIONS(1337), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_literal] = ACTIONS(143), + [anon_sym_DQUOTE] = ACTIONS(145), + [sym_verbatim_string_literal] = ACTIONS(143), + [aux_sym_preproc_if_token1] = ACTIONS(1339), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -299829,90 +299715,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1299), - [sym_interpolation_verbatim_start] = ACTIONS(1301), - [sym_interpolation_raw_start] = ACTIONS(1303), - [sym_raw_string_start] = ACTIONS(1305), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [sym_interpolation_raw_start] = ACTIONS(155), + [sym_raw_string_start] = ACTIONS(157), }, [1527] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(3184), - [sym__name] = STATE(5883), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2313), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2269), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(4327), - [sym_non_lvalue_expression] = STATE(4541), - [sym_lvalue_expression] = STATE(3527), - [sym__expression_statement_expression] = STATE(4529), - [sym_assignment_expression] = STATE(4543), - [sym_binary_expression] = STATE(4529), - [sym_postfix_unary_expression] = STATE(4543), - [sym_prefix_unary_expression] = STATE(4543), - [sym__pointer_indirection_expression] = STATE(3175), - [sym_query_expression] = STATE(4529), - [sym_from_clause] = STATE(6169), - [sym_conditional_expression] = STATE(4529), - [sym_conditional_access_expression] = STATE(4529), - [sym_as_expression] = STATE(4529), - [sym_is_expression] = STATE(4529), - [sym_is_pattern_expression] = STATE(4529), - [sym_cast_expression] = STATE(4529), - [sym_checked_expression] = STATE(4529), - [sym_invocation_expression] = STATE(4543), - [sym_switch_expression] = STATE(4529), - [sym_await_expression] = STATE(4543), - [sym_throw_expression] = STATE(4529), - [sym_element_access_expression] = STATE(3175), - [sym_interpolated_string_expression] = STATE(4529), - [sym_member_access_expression] = STATE(3175), - [sym_object_creation_expression] = STATE(4543), - [sym_parenthesized_expression] = STATE(4543), - [sym__parenthesized_lvalue_expression] = STATE(3175), - [sym_lambda_expression] = STATE(4529), - [sym__lambda_expression_init] = STATE(7337), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(4529), - [sym_anonymous_method_expression] = STATE(4529), - [sym_anonymous_object_creation_expression] = STATE(4529), - [sym_implicit_array_creation_expression] = STATE(4529), - [sym_implicit_object_creation_expression] = STATE(4529), - [sym_implicit_stackalloc_expression] = STATE(4529), - [sym_initializer_expression] = STATE(4529), - [sym_default_expression] = STATE(4529), - [sym_with_expression] = STATE(4529), - [sym_sizeof_expression] = STATE(4529), - [sym_typeof_expression] = STATE(4529), - [sym_makeref_expression] = STATE(4529), - [sym_ref_expression] = STATE(4529), - [sym_reftype_expression] = STATE(4529), - [sym_refvalue_expression] = STATE(4529), - [sym_stackalloc_expression] = STATE(4529), - [sym_range_expression] = STATE(4529), - [sym_tuple_expression] = STATE(3175), - [sym_literal] = STATE(4529), - [sym_character_literal] = STATE(4536), - [sym_string_literal] = STATE(4536), - [sym_raw_string_literal] = STATE(4536), - [sym_boolean_literal] = STATE(4536), - [sym_identifier] = STATE(2246), - [sym__reserved_identifier] = STATE(2240), - [sym_preproc_if_in_expression] = STATE(4529), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2816), + [sym__name] = STATE(5873), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2196), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(4976), + [sym_non_lvalue_expression] = STATE(3495), + [sym_lvalue_expression] = STATE(3514), + [sym__expression_statement_expression] = STATE(3462), + [sym_assignment_expression] = STATE(3497), + [sym_binary_expression] = STATE(3462), + [sym_postfix_unary_expression] = STATE(3497), + [sym_prefix_unary_expression] = STATE(3497), + [sym__pointer_indirection_expression] = STATE(2815), + [sym_query_expression] = STATE(3462), + [sym_from_clause] = STATE(6154), + [sym_conditional_expression] = STATE(3462), + [sym_conditional_access_expression] = STATE(3462), + [sym_as_expression] = STATE(3462), + [sym_is_expression] = STATE(3462), + [sym_is_pattern_expression] = STATE(3462), + [sym_cast_expression] = STATE(3462), + [sym_checked_expression] = STATE(3462), + [sym_invocation_expression] = STATE(3497), + [sym_switch_expression] = STATE(3462), + [sym_await_expression] = STATE(3497), + [sym_throw_expression] = STATE(3462), + [sym_element_access_expression] = STATE(2815), + [sym_interpolated_string_expression] = STATE(3462), + [sym_member_access_expression] = STATE(2815), + [sym_object_creation_expression] = STATE(3497), + [sym_parenthesized_expression] = STATE(3497), + [sym__parenthesized_lvalue_expression] = STATE(2815), + [sym_lambda_expression] = STATE(3462), + [sym__lambda_expression_init] = STATE(7685), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3462), + [sym_anonymous_method_expression] = STATE(3462), + [sym_anonymous_object_creation_expression] = STATE(3462), + [sym_implicit_array_creation_expression] = STATE(3462), + [sym_implicit_object_creation_expression] = STATE(3462), + [sym_implicit_stackalloc_expression] = STATE(3462), + [sym_initializer_expression] = STATE(3462), + [sym_default_expression] = STATE(3462), + [sym_with_expression] = STATE(3462), + [sym_sizeof_expression] = STATE(3462), + [sym_typeof_expression] = STATE(3462), + [sym_makeref_expression] = STATE(3462), + [sym_ref_expression] = STATE(3462), + [sym_reftype_expression] = STATE(3462), + [sym_refvalue_expression] = STATE(3462), + [sym_stackalloc_expression] = STATE(3462), + [sym_range_expression] = STATE(3462), + [sym_tuple_expression] = STATE(2815), + [sym_literal] = STATE(3462), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2261), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3462), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(1527), [sym_preproc_endregion] = STATE(1527), [sym_preproc_line] = STATE(1527), @@ -299922,166 +299808,166 @@ 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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3363), - [sym__identifier_token] = ACTIONS(1387), - [anon_sym_alias] = ACTIONS(1389), - [anon_sym_global] = ACTIONS(1389), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1391), - [anon_sym_LPAREN] = ACTIONS(1745), - [anon_sym_ref] = ACTIONS(1747), - [anon_sym_LBRACE] = ACTIONS(1397), - [anon_sym_delegate] = ACTIONS(1399), - [anon_sym_async] = ACTIONS(1047), - [anon_sym_file] = ACTIONS(1389), - [anon_sym_new] = ACTIONS(1467), - [anon_sym_where] = ACTIONS(1389), - [anon_sym_notnull] = ACTIONS(1389), - [anon_sym_unmanaged] = ACTIONS(1389), - [anon_sym_checked] = ACTIONS(1403), - [anon_sym_BANG] = ACTIONS(1751), - [anon_sym_TILDE] = ACTIONS(1751), - [anon_sym_PLUS_PLUS] = ACTIONS(1751), - [anon_sym_DASH_DASH] = ACTIONS(1751), - [anon_sym_true] = ACTIONS(1409), - [anon_sym_false] = ACTIONS(1409), - [anon_sym_PLUS] = ACTIONS(1749), - [anon_sym_DASH] = ACTIONS(1749), - [anon_sym_STAR] = ACTIONS(1473), - [anon_sym_CARET] = ACTIONS(1751), - [anon_sym_AMP] = ACTIONS(1751), - [anon_sym_this] = ACTIONS(1413), - [anon_sym_scoped] = ACTIONS(1415), - [anon_sym_base] = ACTIONS(1417), - [anon_sym_var] = ACTIONS(1419), - [sym_predefined_type] = ACTIONS(1421), - [anon_sym_unchecked] = ACTIONS(1403), - [anon_sym_yield] = ACTIONS(1389), - [anon_sym_default] = ACTIONS(1423), - [anon_sym_throw] = ACTIONS(1753), - [anon_sym_when] = ACTIONS(1389), - [anon_sym_await] = ACTIONS(1755), - [anon_sym_DOT_DOT] = ACTIONS(1757), - [anon_sym_from] = ACTIONS(1431), - [anon_sym_into] = ACTIONS(1389), - [anon_sym_join] = ACTIONS(1389), - [anon_sym_on] = ACTIONS(1389), - [anon_sym_equals] = ACTIONS(1389), - [anon_sym_let] = ACTIONS(1389), - [anon_sym_orderby] = ACTIONS(1389), - [anon_sym_ascending] = ACTIONS(1389), - [anon_sym_descending] = ACTIONS(1389), - [anon_sym_group] = ACTIONS(1389), - [anon_sym_by] = ACTIONS(1389), - [anon_sym_select] = ACTIONS(1389), - [anon_sym_stackalloc] = ACTIONS(1433), - [anon_sym_sizeof] = ACTIONS(1435), - [anon_sym_typeof] = ACTIONS(1437), - [anon_sym___makeref] = ACTIONS(1439), - [anon_sym___reftype] = ACTIONS(1441), - [anon_sym___refvalue] = ACTIONS(1443), - [sym_null_literal] = ACTIONS(1445), - [anon_sym_SQUOTE] = ACTIONS(1447), - [sym_integer_literal] = ACTIONS(1445), - [sym_real_literal] = ACTIONS(1449), - [anon_sym_DQUOTE] = ACTIONS(1451), - [sym_verbatim_string_literal] = ACTIONS(1449), - [aux_sym_preproc_if_token1] = ACTIONS(1453), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1455), - [sym_interpolation_verbatim_start] = ACTIONS(1457), - [sym_interpolation_raw_start] = ACTIONS(1459), - [sym_raw_string_start] = ACTIONS(1461), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [sym__identifier_token] = ACTIONS(25), + [anon_sym_alias] = ACTIONS(29), + [anon_sym_global] = ACTIONS(29), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1305), + [anon_sym_LPAREN] = ACTIONS(1613), + [anon_sym_ref] = ACTIONS(1615), + [anon_sym_LBRACE] = ACTIONS(1311), + [anon_sym_delegate] = ACTIONS(1313), + [anon_sym_async] = ACTIONS(1045), + [anon_sym_file] = ACTIONS(29), + [anon_sym_new] = ACTIONS(1315), + [anon_sym_where] = ACTIONS(29), + [anon_sym_notnull] = ACTIONS(29), + [anon_sym_unmanaged] = ACTIONS(29), + [anon_sym_checked] = ACTIONS(1317), + [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(1321), + [anon_sym_scoped] = ACTIONS(85), + [anon_sym_base] = ACTIONS(1323), + [anon_sym_var] = ACTIONS(89), + [sym_predefined_type] = ACTIONS(91), + [anon_sym_unchecked] = ACTIONS(1317), + [anon_sym_yield] = ACTIONS(29), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(1623), + [anon_sym_when] = ACTIONS(29), + [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), + [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(1331), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(1333), + [anon_sym___reftype] = ACTIONS(1335), + [anon_sym___refvalue] = ACTIONS(1337), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_literal] = ACTIONS(143), + [anon_sym_DQUOTE] = ACTIONS(145), + [sym_verbatim_string_literal] = ACTIONS(143), + [aux_sym_preproc_if_token1] = ACTIONS(1339), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(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), }, [1528] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2914), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2816), [sym__name] = STATE(5873), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2362), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(3658), - [sym_non_lvalue_expression] = STATE(3880), - [sym_lvalue_expression] = STATE(2949), - [sym__expression_statement_expression] = STATE(3873), - [sym_assignment_expression] = STATE(3881), - [sym_binary_expression] = STATE(3873), - [sym_postfix_unary_expression] = STATE(3881), - [sym_prefix_unary_expression] = STATE(3881), - [sym__pointer_indirection_expression] = STATE(2913), - [sym_query_expression] = STATE(3873), - [sym_from_clause] = STATE(6182), - [sym_conditional_expression] = STATE(3873), - [sym_conditional_access_expression] = STATE(3873), - [sym_as_expression] = STATE(3873), - [sym_is_expression] = STATE(3873), - [sym_is_pattern_expression] = STATE(3873), - [sym_cast_expression] = STATE(3873), - [sym_checked_expression] = STATE(3873), - [sym_invocation_expression] = STATE(3881), - [sym_switch_expression] = STATE(3873), - [sym_await_expression] = STATE(3881), - [sym_throw_expression] = STATE(3873), - [sym_element_access_expression] = STATE(2913), - [sym_interpolated_string_expression] = STATE(3873), - [sym_member_access_expression] = STATE(2913), - [sym_object_creation_expression] = STATE(3881), - [sym_parenthesized_expression] = STATE(3881), - [sym__parenthesized_lvalue_expression] = STATE(2913), - [sym_lambda_expression] = STATE(3873), - [sym__lambda_expression_init] = STATE(7721), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3873), - [sym_anonymous_method_expression] = STATE(3873), - [sym_anonymous_object_creation_expression] = STATE(3873), - [sym_implicit_array_creation_expression] = STATE(3873), - [sym_implicit_object_creation_expression] = STATE(3873), - [sym_implicit_stackalloc_expression] = STATE(3873), - [sym_initializer_expression] = STATE(3873), - [sym_default_expression] = STATE(3873), - [sym_with_expression] = STATE(3873), - [sym_sizeof_expression] = STATE(3873), - [sym_typeof_expression] = STATE(3873), - [sym_makeref_expression] = STATE(3873), - [sym_ref_expression] = STATE(3873), - [sym_reftype_expression] = STATE(3873), - [sym_refvalue_expression] = STATE(3873), - [sym_stackalloc_expression] = STATE(3873), - [sym_range_expression] = STATE(3873), - [sym_tuple_expression] = STATE(2913), - [sym_literal] = STATE(3873), - [sym_character_literal] = STATE(3877), - [sym_string_literal] = STATE(3877), - [sym_raw_string_literal] = STATE(3877), - [sym_boolean_literal] = STATE(3877), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3873), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2196), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(4977), + [sym_non_lvalue_expression] = STATE(3495), + [sym_lvalue_expression] = STATE(3514), + [sym__expression_statement_expression] = STATE(3462), + [sym_assignment_expression] = STATE(3497), + [sym_binary_expression] = STATE(3462), + [sym_postfix_unary_expression] = STATE(3497), + [sym_prefix_unary_expression] = STATE(3497), + [sym__pointer_indirection_expression] = STATE(2815), + [sym_query_expression] = STATE(3462), + [sym_from_clause] = STATE(6154), + [sym_conditional_expression] = STATE(3462), + [sym_conditional_access_expression] = STATE(3462), + [sym_as_expression] = STATE(3462), + [sym_is_expression] = STATE(3462), + [sym_is_pattern_expression] = STATE(3462), + [sym_cast_expression] = STATE(3462), + [sym_checked_expression] = STATE(3462), + [sym_invocation_expression] = STATE(3497), + [sym_switch_expression] = STATE(3462), + [sym_await_expression] = STATE(3497), + [sym_throw_expression] = STATE(3462), + [sym_element_access_expression] = STATE(2815), + [sym_interpolated_string_expression] = STATE(3462), + [sym_member_access_expression] = STATE(2815), + [sym_object_creation_expression] = STATE(3497), + [sym_parenthesized_expression] = STATE(3497), + [sym__parenthesized_lvalue_expression] = STATE(2815), + [sym_lambda_expression] = STATE(3462), + [sym__lambda_expression_init] = STATE(7685), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3462), + [sym_anonymous_method_expression] = STATE(3462), + [sym_anonymous_object_creation_expression] = STATE(3462), + [sym_implicit_array_creation_expression] = STATE(3462), + [sym_implicit_object_creation_expression] = STATE(3462), + [sym_implicit_stackalloc_expression] = STATE(3462), + [sym_initializer_expression] = STATE(3462), + [sym_default_expression] = STATE(3462), + [sym_with_expression] = STATE(3462), + [sym_sizeof_expression] = STATE(3462), + [sym_typeof_expression] = STATE(3462), + [sym_makeref_expression] = STATE(3462), + [sym_ref_expression] = STATE(3462), + [sym_reftype_expression] = STATE(3462), + [sym_refvalue_expression] = STATE(3462), + [sym_stackalloc_expression] = STATE(3462), + [sym_range_expression] = STATE(3462), + [sym_tuple_expression] = STATE(2815), + [sym_literal] = STATE(3462), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2261), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3462), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(1528), [sym_preproc_endregion] = STATE(1528), [sym_preproc_line] = STATE(1528), @@ -300091,47 +299977,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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3382), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3367), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1627), - [anon_sym_LPAREN] = ACTIONS(1629), - [anon_sym_ref] = ACTIONS(1631), - [anon_sym_LBRACE] = ACTIONS(1633), - [anon_sym_delegate] = ACTIONS(1635), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1305), + [anon_sym_LPAREN] = ACTIONS(1613), + [anon_sym_ref] = ACTIONS(1615), + [anon_sym_LBRACE] = ACTIONS(1311), + [anon_sym_delegate] = ACTIONS(1313), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1637), + [anon_sym_new] = ACTIONS(1315), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1639), - [anon_sym_BANG] = ACTIONS(1643), - [anon_sym_TILDE] = ACTIONS(1643), - [anon_sym_PLUS_PLUS] = ACTIONS(1643), - [anon_sym_DASH_DASH] = ACTIONS(1643), - [anon_sym_true] = ACTIONS(1645), - [anon_sym_false] = ACTIONS(1645), - [anon_sym_PLUS] = ACTIONS(1641), - [anon_sym_DASH] = ACTIONS(1641), - [anon_sym_STAR] = ACTIONS(1647), - [anon_sym_CARET] = ACTIONS(1643), - [anon_sym_AMP] = ACTIONS(1643), - [anon_sym_this] = ACTIONS(1649), + [anon_sym_checked] = ACTIONS(1317), + [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(1321), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1651), + [anon_sym_base] = ACTIONS(1323), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1653), - [anon_sym_unchecked] = ACTIONS(1639), + [sym_predefined_type] = ACTIONS(91), + [anon_sym_unchecked] = ACTIONS(1317), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1655), - [anon_sym_throw] = ACTIONS(1657), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(1623), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1659), - [anon_sym_DOT_DOT] = ACTIONS(1661), + [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), @@ -300144,19 +300030,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1663), - [anon_sym_sizeof] = ACTIONS(1665), - [anon_sym_typeof] = ACTIONS(1667), - [anon_sym___makeref] = ACTIONS(1669), - [anon_sym___reftype] = ACTIONS(1671), - [anon_sym___refvalue] = ACTIONS(1673), - [sym_null_literal] = ACTIONS(1675), - [anon_sym_SQUOTE] = ACTIONS(1677), - [sym_integer_literal] = ACTIONS(1675), - [sym_real_literal] = ACTIONS(1679), - [anon_sym_DQUOTE] = ACTIONS(1681), - [sym_verbatim_string_literal] = ACTIONS(1679), - [aux_sym_preproc_if_token1] = ACTIONS(1683), + [anon_sym_stackalloc] = ACTIONS(1331), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(1333), + [anon_sym___reftype] = ACTIONS(1335), + [anon_sym___refvalue] = ACTIONS(1337), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_literal] = ACTIONS(143), + [anon_sym_DQUOTE] = ACTIONS(145), + [sym_verbatim_string_literal] = ACTIONS(143), + [aux_sym_preproc_if_token1] = ACTIONS(1339), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -300167,90 +300053,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1685), - [sym_interpolation_verbatim_start] = ACTIONS(1687), - [sym_interpolation_raw_start] = ACTIONS(1689), - [sym_raw_string_start] = ACTIONS(1691), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [sym_interpolation_raw_start] = ACTIONS(155), + [sym_raw_string_start] = ACTIONS(157), }, [1529] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2420), - [sym__name] = STATE(5875), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2369), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(3989), - [sym_non_lvalue_expression] = STATE(3066), - [sym_lvalue_expression] = STATE(3109), - [sym__expression_statement_expression] = STATE(3006), - [sym_assignment_expression] = STATE(3020), - [sym_binary_expression] = STATE(3006), - [sym_postfix_unary_expression] = STATE(3020), - [sym_prefix_unary_expression] = STATE(3020), - [sym__pointer_indirection_expression] = STATE(2423), - [sym_query_expression] = STATE(3006), - [sym_from_clause] = STATE(6179), - [sym_conditional_expression] = STATE(3006), - [sym_conditional_access_expression] = STATE(3006), - [sym_as_expression] = STATE(3006), - [sym_is_expression] = STATE(3006), - [sym_is_pattern_expression] = STATE(3006), - [sym_cast_expression] = STATE(3006), - [sym_checked_expression] = STATE(3006), - [sym_invocation_expression] = STATE(3020), - [sym_switch_expression] = STATE(3006), - [sym_await_expression] = STATE(3020), - [sym_throw_expression] = STATE(3006), - [sym_element_access_expression] = STATE(2423), - [sym_interpolated_string_expression] = STATE(3006), - [sym_member_access_expression] = STATE(2423), - [sym_object_creation_expression] = STATE(3020), - [sym_parenthesized_expression] = STATE(3020), - [sym__parenthesized_lvalue_expression] = STATE(2423), - [sym_lambda_expression] = STATE(3006), - [sym__lambda_expression_init] = STATE(7522), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3006), - [sym_anonymous_method_expression] = STATE(3006), - [sym_anonymous_object_creation_expression] = STATE(3006), - [sym_implicit_array_creation_expression] = STATE(3006), - [sym_implicit_object_creation_expression] = STATE(3006), - [sym_implicit_stackalloc_expression] = STATE(3006), - [sym_initializer_expression] = STATE(3006), - [sym_default_expression] = STATE(3006), - [sym_with_expression] = STATE(3006), - [sym_sizeof_expression] = STATE(3006), - [sym_typeof_expression] = STATE(3006), - [sym_makeref_expression] = STATE(3006), - [sym_ref_expression] = STATE(3006), - [sym_reftype_expression] = STATE(3006), - [sym_refvalue_expression] = STATE(3006), - [sym_stackalloc_expression] = STATE(3006), - [sym_range_expression] = STATE(3006), - [sym_tuple_expression] = STATE(2423), - [sym_literal] = STATE(3006), - [sym_character_literal] = STATE(3011), - [sym_string_literal] = STATE(3011), - [sym_raw_string_literal] = STATE(3011), - [sym_boolean_literal] = STATE(3011), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3006), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2816), + [sym__name] = STATE(5873), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2196), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(4978), + [sym_non_lvalue_expression] = STATE(3495), + [sym_lvalue_expression] = STATE(3514), + [sym__expression_statement_expression] = STATE(3462), + [sym_assignment_expression] = STATE(3497), + [sym_binary_expression] = STATE(3462), + [sym_postfix_unary_expression] = STATE(3497), + [sym_prefix_unary_expression] = STATE(3497), + [sym__pointer_indirection_expression] = STATE(2815), + [sym_query_expression] = STATE(3462), + [sym_from_clause] = STATE(6154), + [sym_conditional_expression] = STATE(3462), + [sym_conditional_access_expression] = STATE(3462), + [sym_as_expression] = STATE(3462), + [sym_is_expression] = STATE(3462), + [sym_is_pattern_expression] = STATE(3462), + [sym_cast_expression] = STATE(3462), + [sym_checked_expression] = STATE(3462), + [sym_invocation_expression] = STATE(3497), + [sym_switch_expression] = STATE(3462), + [sym_await_expression] = STATE(3497), + [sym_throw_expression] = STATE(3462), + [sym_element_access_expression] = STATE(2815), + [sym_interpolated_string_expression] = STATE(3462), + [sym_member_access_expression] = STATE(2815), + [sym_object_creation_expression] = STATE(3497), + [sym_parenthesized_expression] = STATE(3497), + [sym__parenthesized_lvalue_expression] = STATE(2815), + [sym_lambda_expression] = STATE(3462), + [sym__lambda_expression_init] = STATE(7685), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3462), + [sym_anonymous_method_expression] = STATE(3462), + [sym_anonymous_object_creation_expression] = STATE(3462), + [sym_implicit_array_creation_expression] = STATE(3462), + [sym_implicit_object_creation_expression] = STATE(3462), + [sym_implicit_stackalloc_expression] = STATE(3462), + [sym_initializer_expression] = STATE(3462), + [sym_default_expression] = STATE(3462), + [sym_with_expression] = STATE(3462), + [sym_sizeof_expression] = STATE(3462), + [sym_typeof_expression] = STATE(3462), + [sym_makeref_expression] = STATE(3462), + [sym_ref_expression] = STATE(3462), + [sym_reftype_expression] = STATE(3462), + [sym_refvalue_expression] = STATE(3462), + [sym_stackalloc_expression] = STATE(3462), + [sym_range_expression] = STATE(3462), + [sym_tuple_expression] = STATE(2815), + [sym_literal] = STATE(3462), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2261), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3462), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(1529), [sym_preproc_endregion] = STATE(1529), [sym_preproc_line] = STATE(1529), @@ -300260,47 +300146,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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3440), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3367), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1241), - [anon_sym_LPAREN] = ACTIONS(1841), - [anon_sym_ref] = ACTIONS(1843), - [anon_sym_LBRACE] = ACTIONS(1247), - [anon_sym_delegate] = ACTIONS(1249), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1305), + [anon_sym_LPAREN] = ACTIONS(1613), + [anon_sym_ref] = ACTIONS(1615), + [anon_sym_LBRACE] = ACTIONS(1311), + [anon_sym_delegate] = ACTIONS(1313), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1845), + [anon_sym_new] = ACTIONS(1315), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1253), - [anon_sym_BANG] = ACTIONS(1849), - [anon_sym_TILDE] = ACTIONS(1849), - [anon_sym_PLUS_PLUS] = ACTIONS(1849), - [anon_sym_DASH_DASH] = ACTIONS(1849), - [anon_sym_true] = ACTIONS(1259), - [anon_sym_false] = ACTIONS(1259), - [anon_sym_PLUS] = ACTIONS(1847), - [anon_sym_DASH] = ACTIONS(1847), - [anon_sym_STAR] = ACTIONS(1851), - [anon_sym_CARET] = ACTIONS(1849), - [anon_sym_AMP] = ACTIONS(1849), - [anon_sym_this] = ACTIONS(1263), + [anon_sym_checked] = ACTIONS(1317), + [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(1321), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1265), + [anon_sym_base] = ACTIONS(1323), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1267), - [anon_sym_unchecked] = ACTIONS(1253), + [sym_predefined_type] = ACTIONS(91), + [anon_sym_unchecked] = ACTIONS(1317), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1269), - [anon_sym_throw] = ACTIONS(1853), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(1623), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1855), - [anon_sym_DOT_DOT] = ACTIONS(1857), + [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), @@ -300313,19 +300199,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1277), - [anon_sym_sizeof] = ACTIONS(1279), - [anon_sym_typeof] = ACTIONS(1281), - [anon_sym___makeref] = ACTIONS(1283), - [anon_sym___reftype] = ACTIONS(1285), - [anon_sym___refvalue] = ACTIONS(1287), - [sym_null_literal] = ACTIONS(1289), - [anon_sym_SQUOTE] = ACTIONS(1291), - [sym_integer_literal] = ACTIONS(1289), - [sym_real_literal] = ACTIONS(1293), - [anon_sym_DQUOTE] = ACTIONS(1295), - [sym_verbatim_string_literal] = ACTIONS(1293), - [aux_sym_preproc_if_token1] = ACTIONS(1297), + [anon_sym_stackalloc] = ACTIONS(1331), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(1333), + [anon_sym___reftype] = ACTIONS(1335), + [anon_sym___refvalue] = ACTIONS(1337), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_literal] = ACTIONS(143), + [anon_sym_DQUOTE] = ACTIONS(145), + [sym_verbatim_string_literal] = ACTIONS(143), + [aux_sym_preproc_if_token1] = ACTIONS(1339), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -300336,90 +300222,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1299), - [sym_interpolation_verbatim_start] = ACTIONS(1301), - [sym_interpolation_raw_start] = ACTIONS(1303), - [sym_raw_string_start] = ACTIONS(1305), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [sym_interpolation_raw_start] = ACTIONS(155), + [sym_raw_string_start] = ACTIONS(157), }, [1530] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(5891), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2372), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(5409), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3653), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3080), - [sym_postfix_unary_expression] = STATE(3111), - [sym_prefix_unary_expression] = STATE(3111), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6158), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3080), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3111), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3080), - [sym_member_access_expression] = STATE(2484), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3111), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7448), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(3080), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3080), - [sym_typeof_expression] = STATE(3080), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2484), - [sym_literal] = STATE(3080), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2816), + [sym__name] = STATE(5873), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2196), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(4979), + [sym_non_lvalue_expression] = STATE(3495), + [sym_lvalue_expression] = STATE(3514), + [sym__expression_statement_expression] = STATE(3462), + [sym_assignment_expression] = STATE(3497), + [sym_binary_expression] = STATE(3462), + [sym_postfix_unary_expression] = STATE(3497), + [sym_prefix_unary_expression] = STATE(3497), + [sym__pointer_indirection_expression] = STATE(2815), + [sym_query_expression] = STATE(3462), + [sym_from_clause] = STATE(6154), + [sym_conditional_expression] = STATE(3462), + [sym_conditional_access_expression] = STATE(3462), + [sym_as_expression] = STATE(3462), + [sym_is_expression] = STATE(3462), + [sym_is_pattern_expression] = STATE(3462), + [sym_cast_expression] = STATE(3462), + [sym_checked_expression] = STATE(3462), + [sym_invocation_expression] = STATE(3497), + [sym_switch_expression] = STATE(3462), + [sym_await_expression] = STATE(3497), + [sym_throw_expression] = STATE(3462), + [sym_element_access_expression] = STATE(2815), + [sym_interpolated_string_expression] = STATE(3462), + [sym_member_access_expression] = STATE(2815), + [sym_object_creation_expression] = STATE(3497), + [sym_parenthesized_expression] = STATE(3497), + [sym__parenthesized_lvalue_expression] = STATE(2815), + [sym_lambda_expression] = STATE(3462), + [sym__lambda_expression_init] = STATE(7685), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3462), + [sym_anonymous_method_expression] = STATE(3462), + [sym_anonymous_object_creation_expression] = STATE(3462), + [sym_implicit_array_creation_expression] = STATE(3462), + [sym_implicit_object_creation_expression] = STATE(3462), + [sym_implicit_stackalloc_expression] = STATE(3462), + [sym_initializer_expression] = STATE(3462), + [sym_default_expression] = STATE(3462), + [sym_with_expression] = STATE(3462), + [sym_sizeof_expression] = STATE(3462), + [sym_typeof_expression] = STATE(3462), + [sym_makeref_expression] = STATE(3462), + [sym_ref_expression] = STATE(3462), + [sym_reftype_expression] = STATE(3462), + [sym_refvalue_expression] = STATE(3462), + [sym_stackalloc_expression] = STATE(3462), + [sym_range_expression] = STATE(3462), + [sym_tuple_expression] = STATE(2815), + [sym_literal] = STATE(3462), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2261), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3462), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(1530), [sym_preproc_endregion] = STATE(1530), [sym_preproc_line] = STATE(1530), @@ -300429,47 +300315,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(3067), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), [aux_sym__lambda_expression_init_repeat1] = STATE(3367), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1481), - [anon_sym_LPAREN] = ACTIONS(2159), - [anon_sym_ref] = ACTIONS(2161), - [anon_sym_LBRACE] = ACTIONS(1487), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1305), + [anon_sym_LPAREN] = ACTIONS(1613), + [anon_sym_ref] = ACTIONS(1615), + [anon_sym_LBRACE] = ACTIONS(1311), + [anon_sym_delegate] = ACTIONS(1313), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(2163), + [anon_sym_new] = ACTIONS(1315), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1067), - [anon_sym_BANG] = ACTIONS(2167), - [anon_sym_TILDE] = ACTIONS(2167), - [anon_sym_PLUS_PLUS] = ACTIONS(2167), - [anon_sym_DASH_DASH] = ACTIONS(2167), + [anon_sym_checked] = ACTIONS(1317), + [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(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(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(1321), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), + [anon_sym_base] = ACTIONS(1323), [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1067), + [anon_sym_unchecked] = ACTIONS(1317), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(2171), + [anon_sym_throw] = ACTIONS(1623), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2173), - [anon_sym_DOT_DOT] = ACTIONS(2175), + [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), @@ -300482,19 +300368,19 @@ static const uint16_t ts_parse_table[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(1331), [anon_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(1333), + [anon_sym___reftype] = ACTIONS(1335), + [anon_sym___refvalue] = ACTIONS(1337), [sym_null_literal] = ACTIONS(139), [anon_sym_SQUOTE] = ACTIONS(141), [sym_integer_literal] = ACTIONS(139), [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1089), + [aux_sym_preproc_if_token1] = ACTIONS(1339), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -300511,84 +300397,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [1531] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(5160), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2204), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(4568), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3461), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3080), - [sym_postfix_unary_expression] = STATE(3111), - [sym_prefix_unary_expression] = STATE(3111), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2816), + [sym__name] = STATE(5873), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2196), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(3214), + [sym_non_lvalue_expression] = STATE(3495), + [sym_lvalue_expression] = STATE(3514), + [sym__expression_statement_expression] = STATE(3462), + [sym_assignment_expression] = STATE(3497), + [sym_binary_expression] = STATE(3462), + [sym_postfix_unary_expression] = STATE(3497), + [sym_prefix_unary_expression] = STATE(3497), + [sym__pointer_indirection_expression] = STATE(2815), + [sym_query_expression] = STATE(3462), [sym_from_clause] = STATE(6154), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3080), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3111), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3080), - [sym_member_access_expression] = STATE(2484), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3111), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7547), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(3080), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3080), - [sym_typeof_expression] = STATE(3080), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2484), - [sym_literal] = STATE(3080), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_conditional_expression] = STATE(3462), + [sym_conditional_access_expression] = STATE(3462), + [sym_as_expression] = STATE(3462), + [sym_is_expression] = STATE(3462), + [sym_is_pattern_expression] = STATE(3462), + [sym_cast_expression] = STATE(3462), + [sym_checked_expression] = STATE(3462), + [sym_invocation_expression] = STATE(3497), + [sym_switch_expression] = STATE(3462), + [sym_await_expression] = STATE(3497), + [sym_throw_expression] = STATE(3462), + [sym_element_access_expression] = STATE(2815), + [sym_interpolated_string_expression] = STATE(3462), + [sym_member_access_expression] = STATE(2815), + [sym_object_creation_expression] = STATE(3497), + [sym_parenthesized_expression] = STATE(3497), + [sym__parenthesized_lvalue_expression] = STATE(2815), + [sym_lambda_expression] = STATE(3462), + [sym__lambda_expression_init] = STATE(7685), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3462), + [sym_anonymous_method_expression] = STATE(3462), + [sym_anonymous_object_creation_expression] = STATE(3462), + [sym_implicit_array_creation_expression] = STATE(3462), + [sym_implicit_object_creation_expression] = STATE(3462), + [sym_implicit_stackalloc_expression] = STATE(3462), + [sym_initializer_expression] = STATE(3462), + [sym_default_expression] = STATE(3462), + [sym_with_expression] = STATE(3462), + [sym_sizeof_expression] = STATE(3462), + [sym_typeof_expression] = STATE(3462), + [sym_makeref_expression] = STATE(3462), + [sym_ref_expression] = STATE(3462), + [sym_reftype_expression] = STATE(3462), + [sym_refvalue_expression] = STATE(3462), + [sym_stackalloc_expression] = STATE(3462), + [sym_range_expression] = STATE(3462), + [sym_tuple_expression] = STATE(2815), + [sym_literal] = STATE(3462), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2261), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3462), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(1531), [sym_preproc_endregion] = STATE(1531), [sym_preproc_line] = STATE(1531), @@ -300598,47 +300484,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(3067), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), [aux_sym__lambda_expression_init_repeat1] = STATE(3367), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1481), - [anon_sym_LPAREN] = ACTIONS(1497), - [anon_sym_ref] = ACTIONS(1499), - [anon_sym_LBRACE] = ACTIONS(1487), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1305), + [anon_sym_LPAREN] = ACTIONS(1613), + [anon_sym_ref] = ACTIONS(1615), + [anon_sym_LBRACE] = ACTIONS(1311), + [anon_sym_delegate] = ACTIONS(1313), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1501), + [anon_sym_new] = ACTIONS(1315), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = 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_checked] = ACTIONS(1317), + [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(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(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(1321), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), + [anon_sym_base] = ACTIONS(1323), [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1067), + [anon_sym_unchecked] = ACTIONS(1317), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1503), + [anon_sym_throw] = ACTIONS(1623), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1505), - [anon_sym_DOT_DOT] = ACTIONS(1507), + [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), @@ -300651,19 +300537,19 @@ static const uint16_t ts_parse_table[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(1331), [anon_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(1333), + [anon_sym___reftype] = ACTIONS(1335), + [anon_sym___refvalue] = ACTIONS(1337), [sym_null_literal] = ACTIONS(139), [anon_sym_SQUOTE] = ACTIONS(141), [sym_integer_literal] = ACTIONS(139), [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1089), + [aux_sym_preproc_if_token1] = ACTIONS(1339), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -300680,84 +300566,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [1532] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2914), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2816), [sym__name] = STATE(5873), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2362), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(3671), - [sym_non_lvalue_expression] = STATE(3880), - [sym_lvalue_expression] = STATE(2949), - [sym__expression_statement_expression] = STATE(3873), - [sym_assignment_expression] = STATE(3881), - [sym_binary_expression] = STATE(3873), - [sym_postfix_unary_expression] = STATE(3881), - [sym_prefix_unary_expression] = STATE(3881), - [sym__pointer_indirection_expression] = STATE(2913), - [sym_query_expression] = STATE(3873), - [sym_from_clause] = STATE(6182), - [sym_conditional_expression] = STATE(3873), - [sym_conditional_access_expression] = STATE(3873), - [sym_as_expression] = STATE(3873), - [sym_is_expression] = STATE(3873), - [sym_is_pattern_expression] = STATE(3873), - [sym_cast_expression] = STATE(3873), - [sym_checked_expression] = STATE(3873), - [sym_invocation_expression] = STATE(3881), - [sym_switch_expression] = STATE(3873), - [sym_await_expression] = STATE(3881), - [sym_throw_expression] = STATE(3873), - [sym_element_access_expression] = STATE(2913), - [sym_interpolated_string_expression] = STATE(3873), - [sym_member_access_expression] = STATE(2913), - [sym_object_creation_expression] = STATE(3881), - [sym_parenthesized_expression] = STATE(3881), - [sym__parenthesized_lvalue_expression] = STATE(2913), - [sym_lambda_expression] = STATE(3873), - [sym__lambda_expression_init] = STATE(7721), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3873), - [sym_anonymous_method_expression] = STATE(3873), - [sym_anonymous_object_creation_expression] = STATE(3873), - [sym_implicit_array_creation_expression] = STATE(3873), - [sym_implicit_object_creation_expression] = STATE(3873), - [sym_implicit_stackalloc_expression] = STATE(3873), - [sym_initializer_expression] = STATE(3873), - [sym_default_expression] = STATE(3873), - [sym_with_expression] = STATE(3873), - [sym_sizeof_expression] = STATE(3873), - [sym_typeof_expression] = STATE(3873), - [sym_makeref_expression] = STATE(3873), - [sym_ref_expression] = STATE(3873), - [sym_reftype_expression] = STATE(3873), - [sym_refvalue_expression] = STATE(3873), - [sym_stackalloc_expression] = STATE(3873), - [sym_range_expression] = STATE(3873), - [sym_tuple_expression] = STATE(2913), - [sym_literal] = STATE(3873), - [sym_character_literal] = STATE(3877), - [sym_string_literal] = STATE(3877), - [sym_raw_string_literal] = STATE(3877), - [sym_boolean_literal] = STATE(3877), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3873), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2196), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(4833), + [sym_non_lvalue_expression] = STATE(3495), + [sym_lvalue_expression] = STATE(3514), + [sym__expression_statement_expression] = STATE(3462), + [sym_assignment_expression] = STATE(3497), + [sym_binary_expression] = STATE(3462), + [sym_postfix_unary_expression] = STATE(3497), + [sym_prefix_unary_expression] = STATE(3497), + [sym__pointer_indirection_expression] = STATE(2815), + [sym_query_expression] = STATE(3462), + [sym_from_clause] = STATE(6154), + [sym_conditional_expression] = STATE(3462), + [sym_conditional_access_expression] = STATE(3462), + [sym_as_expression] = STATE(3462), + [sym_is_expression] = STATE(3462), + [sym_is_pattern_expression] = STATE(3462), + [sym_cast_expression] = STATE(3462), + [sym_checked_expression] = STATE(3462), + [sym_invocation_expression] = STATE(3497), + [sym_switch_expression] = STATE(3462), + [sym_await_expression] = STATE(3497), + [sym_throw_expression] = STATE(3462), + [sym_element_access_expression] = STATE(2815), + [sym_interpolated_string_expression] = STATE(3462), + [sym_member_access_expression] = STATE(2815), + [sym_object_creation_expression] = STATE(3497), + [sym_parenthesized_expression] = STATE(3497), + [sym__parenthesized_lvalue_expression] = STATE(2815), + [sym_lambda_expression] = STATE(3462), + [sym__lambda_expression_init] = STATE(7685), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3462), + [sym_anonymous_method_expression] = STATE(3462), + [sym_anonymous_object_creation_expression] = STATE(3462), + [sym_implicit_array_creation_expression] = STATE(3462), + [sym_implicit_object_creation_expression] = STATE(3462), + [sym_implicit_stackalloc_expression] = STATE(3462), + [sym_initializer_expression] = STATE(3462), + [sym_default_expression] = STATE(3462), + [sym_with_expression] = STATE(3462), + [sym_sizeof_expression] = STATE(3462), + [sym_typeof_expression] = STATE(3462), + [sym_makeref_expression] = STATE(3462), + [sym_ref_expression] = STATE(3462), + [sym_reftype_expression] = STATE(3462), + [sym_refvalue_expression] = STATE(3462), + [sym_stackalloc_expression] = STATE(3462), + [sym_range_expression] = STATE(3462), + [sym_tuple_expression] = STATE(2815), + [sym_literal] = STATE(3462), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2261), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3462), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(1532), [sym_preproc_endregion] = STATE(1532), [sym_preproc_line] = STATE(1532), @@ -300767,47 +300653,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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3382), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3367), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1627), - [anon_sym_LPAREN] = ACTIONS(1629), - [anon_sym_ref] = ACTIONS(1631), - [anon_sym_LBRACE] = ACTIONS(1633), - [anon_sym_delegate] = ACTIONS(1635), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1305), + [anon_sym_LPAREN] = ACTIONS(1613), + [anon_sym_ref] = ACTIONS(1615), + [anon_sym_LBRACE] = ACTIONS(1311), + [anon_sym_delegate] = ACTIONS(1313), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1637), + [anon_sym_new] = ACTIONS(1315), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1639), - [anon_sym_BANG] = ACTIONS(1643), - [anon_sym_TILDE] = ACTIONS(1643), - [anon_sym_PLUS_PLUS] = ACTIONS(1643), - [anon_sym_DASH_DASH] = ACTIONS(1643), - [anon_sym_true] = ACTIONS(1645), - [anon_sym_false] = ACTIONS(1645), - [anon_sym_PLUS] = ACTIONS(1641), - [anon_sym_DASH] = ACTIONS(1641), - [anon_sym_STAR] = ACTIONS(1647), - [anon_sym_CARET] = ACTIONS(1643), - [anon_sym_AMP] = ACTIONS(1643), - [anon_sym_this] = ACTIONS(1649), + [anon_sym_checked] = ACTIONS(1317), + [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(1321), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1651), + [anon_sym_base] = ACTIONS(1323), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1653), - [anon_sym_unchecked] = ACTIONS(1639), + [sym_predefined_type] = ACTIONS(91), + [anon_sym_unchecked] = ACTIONS(1317), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1655), - [anon_sym_throw] = ACTIONS(1657), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(1623), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1659), - [anon_sym_DOT_DOT] = ACTIONS(1661), + [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), @@ -300820,19 +300706,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1663), - [anon_sym_sizeof] = ACTIONS(1665), - [anon_sym_typeof] = ACTIONS(1667), - [anon_sym___makeref] = ACTIONS(1669), - [anon_sym___reftype] = ACTIONS(1671), - [anon_sym___refvalue] = ACTIONS(1673), - [sym_null_literal] = ACTIONS(1675), - [anon_sym_SQUOTE] = ACTIONS(1677), - [sym_integer_literal] = ACTIONS(1675), - [sym_real_literal] = ACTIONS(1679), - [anon_sym_DQUOTE] = ACTIONS(1681), - [sym_verbatim_string_literal] = ACTIONS(1679), - [aux_sym_preproc_if_token1] = ACTIONS(1683), + [anon_sym_stackalloc] = ACTIONS(1331), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(1333), + [anon_sym___reftype] = ACTIONS(1335), + [anon_sym___refvalue] = ACTIONS(1337), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_literal] = ACTIONS(143), + [anon_sym_DQUOTE] = ACTIONS(145), + [sym_verbatim_string_literal] = ACTIONS(143), + [aux_sym_preproc_if_token1] = ACTIONS(1339), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -300843,90 +300729,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1685), - [sym_interpolation_verbatim_start] = ACTIONS(1687), - [sym_interpolation_raw_start] = ACTIONS(1689), - [sym_raw_string_start] = ACTIONS(1691), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [sym_interpolation_raw_start] = ACTIONS(155), + [sym_raw_string_start] = ACTIONS(157), }, [1533] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2914), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2816), [sym__name] = STATE(5873), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2362), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(3672), - [sym_non_lvalue_expression] = STATE(3880), - [sym_lvalue_expression] = STATE(2949), - [sym__expression_statement_expression] = STATE(3873), - [sym_assignment_expression] = STATE(3881), - [sym_binary_expression] = STATE(3873), - [sym_postfix_unary_expression] = STATE(3881), - [sym_prefix_unary_expression] = STATE(3881), - [sym__pointer_indirection_expression] = STATE(2913), - [sym_query_expression] = STATE(3873), - [sym_from_clause] = STATE(6182), - [sym_conditional_expression] = STATE(3873), - [sym_conditional_access_expression] = STATE(3873), - [sym_as_expression] = STATE(3873), - [sym_is_expression] = STATE(3873), - [sym_is_pattern_expression] = STATE(3873), - [sym_cast_expression] = STATE(3873), - [sym_checked_expression] = STATE(3873), - [sym_invocation_expression] = STATE(3881), - [sym_switch_expression] = STATE(3873), - [sym_await_expression] = STATE(3881), - [sym_throw_expression] = STATE(3873), - [sym_element_access_expression] = STATE(2913), - [sym_interpolated_string_expression] = STATE(3873), - [sym_member_access_expression] = STATE(2913), - [sym_object_creation_expression] = STATE(3881), - [sym_parenthesized_expression] = STATE(3881), - [sym__parenthesized_lvalue_expression] = STATE(2913), - [sym_lambda_expression] = STATE(3873), - [sym__lambda_expression_init] = STATE(7721), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3873), - [sym_anonymous_method_expression] = STATE(3873), - [sym_anonymous_object_creation_expression] = STATE(3873), - [sym_implicit_array_creation_expression] = STATE(3873), - [sym_implicit_object_creation_expression] = STATE(3873), - [sym_implicit_stackalloc_expression] = STATE(3873), - [sym_initializer_expression] = STATE(3873), - [sym_default_expression] = STATE(3873), - [sym_with_expression] = STATE(3873), - [sym_sizeof_expression] = STATE(3873), - [sym_typeof_expression] = STATE(3873), - [sym_makeref_expression] = STATE(3873), - [sym_ref_expression] = STATE(3873), - [sym_reftype_expression] = STATE(3873), - [sym_refvalue_expression] = STATE(3873), - [sym_stackalloc_expression] = STATE(3873), - [sym_range_expression] = STATE(3873), - [sym_tuple_expression] = STATE(2913), - [sym_literal] = STATE(3873), - [sym_character_literal] = STATE(3877), - [sym_string_literal] = STATE(3877), - [sym_raw_string_literal] = STATE(3877), - [sym_boolean_literal] = STATE(3877), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3873), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2196), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(3195), + [sym_non_lvalue_expression] = STATE(3495), + [sym_lvalue_expression] = STATE(3514), + [sym__expression_statement_expression] = STATE(3462), + [sym_assignment_expression] = STATE(3497), + [sym_binary_expression] = STATE(3462), + [sym_postfix_unary_expression] = STATE(3497), + [sym_prefix_unary_expression] = STATE(3497), + [sym__pointer_indirection_expression] = STATE(2815), + [sym_query_expression] = STATE(3462), + [sym_from_clause] = STATE(6154), + [sym_conditional_expression] = STATE(3462), + [sym_conditional_access_expression] = STATE(3462), + [sym_as_expression] = STATE(3462), + [sym_is_expression] = STATE(3462), + [sym_is_pattern_expression] = STATE(3462), + [sym_cast_expression] = STATE(3462), + [sym_checked_expression] = STATE(3462), + [sym_invocation_expression] = STATE(3497), + [sym_switch_expression] = STATE(3462), + [sym_await_expression] = STATE(3497), + [sym_throw_expression] = STATE(3462), + [sym_element_access_expression] = STATE(2815), + [sym_interpolated_string_expression] = STATE(3462), + [sym_member_access_expression] = STATE(2815), + [sym_object_creation_expression] = STATE(3497), + [sym_parenthesized_expression] = STATE(3497), + [sym__parenthesized_lvalue_expression] = STATE(2815), + [sym_lambda_expression] = STATE(3462), + [sym__lambda_expression_init] = STATE(7685), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3462), + [sym_anonymous_method_expression] = STATE(3462), + [sym_anonymous_object_creation_expression] = STATE(3462), + [sym_implicit_array_creation_expression] = STATE(3462), + [sym_implicit_object_creation_expression] = STATE(3462), + [sym_implicit_stackalloc_expression] = STATE(3462), + [sym_initializer_expression] = STATE(3462), + [sym_default_expression] = STATE(3462), + [sym_with_expression] = STATE(3462), + [sym_sizeof_expression] = STATE(3462), + [sym_typeof_expression] = STATE(3462), + [sym_makeref_expression] = STATE(3462), + [sym_ref_expression] = STATE(3462), + [sym_reftype_expression] = STATE(3462), + [sym_refvalue_expression] = STATE(3462), + [sym_stackalloc_expression] = STATE(3462), + [sym_range_expression] = STATE(3462), + [sym_tuple_expression] = STATE(2815), + [sym_literal] = STATE(3462), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2261), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3462), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(1533), [sym_preproc_endregion] = STATE(1533), [sym_preproc_line] = STATE(1533), @@ -300936,47 +300822,47 @@ 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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3382), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3367), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1627), - [anon_sym_LPAREN] = ACTIONS(1629), - [anon_sym_ref] = ACTIONS(1631), - [anon_sym_LBRACE] = ACTIONS(1633), - [anon_sym_delegate] = ACTIONS(1635), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1305), + [anon_sym_LPAREN] = ACTIONS(1613), + [anon_sym_ref] = ACTIONS(1615), + [anon_sym_LBRACE] = ACTIONS(1311), + [anon_sym_delegate] = ACTIONS(1313), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1637), + [anon_sym_new] = ACTIONS(1315), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1639), - [anon_sym_BANG] = ACTIONS(1643), - [anon_sym_TILDE] = ACTIONS(1643), - [anon_sym_PLUS_PLUS] = ACTIONS(1643), - [anon_sym_DASH_DASH] = ACTIONS(1643), - [anon_sym_true] = ACTIONS(1645), - [anon_sym_false] = ACTIONS(1645), - [anon_sym_PLUS] = ACTIONS(1641), - [anon_sym_DASH] = ACTIONS(1641), - [anon_sym_STAR] = ACTIONS(1647), - [anon_sym_CARET] = ACTIONS(1643), - [anon_sym_AMP] = ACTIONS(1643), - [anon_sym_this] = ACTIONS(1649), + [anon_sym_checked] = ACTIONS(1317), + [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(1321), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1651), + [anon_sym_base] = ACTIONS(1323), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1653), - [anon_sym_unchecked] = ACTIONS(1639), + [sym_predefined_type] = ACTIONS(91), + [anon_sym_unchecked] = ACTIONS(1317), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1655), - [anon_sym_throw] = ACTIONS(1657), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(1623), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1659), - [anon_sym_DOT_DOT] = ACTIONS(1661), + [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), @@ -300989,19 +300875,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1663), - [anon_sym_sizeof] = ACTIONS(1665), - [anon_sym_typeof] = ACTIONS(1667), - [anon_sym___makeref] = ACTIONS(1669), - [anon_sym___reftype] = ACTIONS(1671), - [anon_sym___refvalue] = ACTIONS(1673), - [sym_null_literal] = ACTIONS(1675), - [anon_sym_SQUOTE] = ACTIONS(1677), - [sym_integer_literal] = ACTIONS(1675), - [sym_real_literal] = ACTIONS(1679), - [anon_sym_DQUOTE] = ACTIONS(1681), - [sym_verbatim_string_literal] = ACTIONS(1679), - [aux_sym_preproc_if_token1] = ACTIONS(1683), + [anon_sym_stackalloc] = ACTIONS(1331), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(1333), + [anon_sym___reftype] = ACTIONS(1335), + [anon_sym___refvalue] = ACTIONS(1337), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_literal] = ACTIONS(143), + [anon_sym_DQUOTE] = ACTIONS(145), + [sym_verbatim_string_literal] = ACTIONS(143), + [aux_sym_preproc_if_token1] = ACTIONS(1339), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -301012,90 +300898,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1685), - [sym_interpolation_verbatim_start] = ACTIONS(1687), - [sym_interpolation_raw_start] = ACTIONS(1689), - [sym_raw_string_start] = ACTIONS(1691), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [sym_interpolation_raw_start] = ACTIONS(155), + [sym_raw_string_start] = ACTIONS(157), }, [1534] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2914), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2816), [sym__name] = STATE(5873), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2362), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(3673), - [sym_non_lvalue_expression] = STATE(3880), - [sym_lvalue_expression] = STATE(2949), - [sym__expression_statement_expression] = STATE(3873), - [sym_assignment_expression] = STATE(3881), - [sym_binary_expression] = STATE(3873), - [sym_postfix_unary_expression] = STATE(3881), - [sym_prefix_unary_expression] = STATE(3881), - [sym__pointer_indirection_expression] = STATE(2913), - [sym_query_expression] = STATE(3873), - [sym_from_clause] = STATE(6182), - [sym_conditional_expression] = STATE(3873), - [sym_conditional_access_expression] = STATE(3873), - [sym_as_expression] = STATE(3873), - [sym_is_expression] = STATE(3873), - [sym_is_pattern_expression] = STATE(3873), - [sym_cast_expression] = STATE(3873), - [sym_checked_expression] = STATE(3873), - [sym_invocation_expression] = STATE(3881), - [sym_switch_expression] = STATE(3873), - [sym_await_expression] = STATE(3881), - [sym_throw_expression] = STATE(3873), - [sym_element_access_expression] = STATE(2913), - [sym_interpolated_string_expression] = STATE(3873), - [sym_member_access_expression] = STATE(2913), - [sym_object_creation_expression] = STATE(3881), - [sym_parenthesized_expression] = STATE(3881), - [sym__parenthesized_lvalue_expression] = STATE(2913), - [sym_lambda_expression] = STATE(3873), - [sym__lambda_expression_init] = STATE(7721), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3873), - [sym_anonymous_method_expression] = STATE(3873), - [sym_anonymous_object_creation_expression] = STATE(3873), - [sym_implicit_array_creation_expression] = STATE(3873), - [sym_implicit_object_creation_expression] = STATE(3873), - [sym_implicit_stackalloc_expression] = STATE(3873), - [sym_initializer_expression] = STATE(3873), - [sym_default_expression] = STATE(3873), - [sym_with_expression] = STATE(3873), - [sym_sizeof_expression] = STATE(3873), - [sym_typeof_expression] = STATE(3873), - [sym_makeref_expression] = STATE(3873), - [sym_ref_expression] = STATE(3873), - [sym_reftype_expression] = STATE(3873), - [sym_refvalue_expression] = STATE(3873), - [sym_stackalloc_expression] = STATE(3873), - [sym_range_expression] = STATE(3873), - [sym_tuple_expression] = STATE(2913), - [sym_literal] = STATE(3873), - [sym_character_literal] = STATE(3877), - [sym_string_literal] = STATE(3877), - [sym_raw_string_literal] = STATE(3877), - [sym_boolean_literal] = STATE(3877), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3873), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2196), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(4999), + [sym_non_lvalue_expression] = STATE(3495), + [sym_lvalue_expression] = STATE(3514), + [sym__expression_statement_expression] = STATE(3462), + [sym_assignment_expression] = STATE(3497), + [sym_binary_expression] = STATE(3462), + [sym_postfix_unary_expression] = STATE(3497), + [sym_prefix_unary_expression] = STATE(3497), + [sym__pointer_indirection_expression] = STATE(2815), + [sym_query_expression] = STATE(3462), + [sym_from_clause] = STATE(6154), + [sym_conditional_expression] = STATE(3462), + [sym_conditional_access_expression] = STATE(3462), + [sym_as_expression] = STATE(3462), + [sym_is_expression] = STATE(3462), + [sym_is_pattern_expression] = STATE(3462), + [sym_cast_expression] = STATE(3462), + [sym_checked_expression] = STATE(3462), + [sym_invocation_expression] = STATE(3497), + [sym_switch_expression] = STATE(3462), + [sym_await_expression] = STATE(3497), + [sym_throw_expression] = STATE(3462), + [sym_element_access_expression] = STATE(2815), + [sym_interpolated_string_expression] = STATE(3462), + [sym_member_access_expression] = STATE(2815), + [sym_object_creation_expression] = STATE(3497), + [sym_parenthesized_expression] = STATE(3497), + [sym__parenthesized_lvalue_expression] = STATE(2815), + [sym_lambda_expression] = STATE(3462), + [sym__lambda_expression_init] = STATE(7685), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3462), + [sym_anonymous_method_expression] = STATE(3462), + [sym_anonymous_object_creation_expression] = STATE(3462), + [sym_implicit_array_creation_expression] = STATE(3462), + [sym_implicit_object_creation_expression] = STATE(3462), + [sym_implicit_stackalloc_expression] = STATE(3462), + [sym_initializer_expression] = STATE(3462), + [sym_default_expression] = STATE(3462), + [sym_with_expression] = STATE(3462), + [sym_sizeof_expression] = STATE(3462), + [sym_typeof_expression] = STATE(3462), + [sym_makeref_expression] = STATE(3462), + [sym_ref_expression] = STATE(3462), + [sym_reftype_expression] = STATE(3462), + [sym_refvalue_expression] = STATE(3462), + [sym_stackalloc_expression] = STATE(3462), + [sym_range_expression] = STATE(3462), + [sym_tuple_expression] = STATE(2815), + [sym_literal] = STATE(3462), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2261), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3462), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(1534), [sym_preproc_endregion] = STATE(1534), [sym_preproc_line] = STATE(1534), @@ -301105,47 +300991,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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3382), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3367), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1627), - [anon_sym_LPAREN] = ACTIONS(1629), - [anon_sym_ref] = ACTIONS(1631), - [anon_sym_LBRACE] = ACTIONS(1633), - [anon_sym_delegate] = ACTIONS(1635), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1305), + [anon_sym_LPAREN] = ACTIONS(1613), + [anon_sym_ref] = ACTIONS(1615), + [anon_sym_LBRACE] = ACTIONS(1311), + [anon_sym_delegate] = ACTIONS(1313), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1637), + [anon_sym_new] = ACTIONS(1315), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1639), - [anon_sym_BANG] = ACTIONS(1643), - [anon_sym_TILDE] = ACTIONS(1643), - [anon_sym_PLUS_PLUS] = ACTIONS(1643), - [anon_sym_DASH_DASH] = ACTIONS(1643), - [anon_sym_true] = ACTIONS(1645), - [anon_sym_false] = ACTIONS(1645), - [anon_sym_PLUS] = ACTIONS(1641), - [anon_sym_DASH] = ACTIONS(1641), - [anon_sym_STAR] = ACTIONS(1647), - [anon_sym_CARET] = ACTIONS(1643), - [anon_sym_AMP] = ACTIONS(1643), - [anon_sym_this] = ACTIONS(1649), + [anon_sym_checked] = ACTIONS(1317), + [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(1321), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1651), + [anon_sym_base] = ACTIONS(1323), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1653), - [anon_sym_unchecked] = ACTIONS(1639), + [sym_predefined_type] = ACTIONS(91), + [anon_sym_unchecked] = ACTIONS(1317), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1655), - [anon_sym_throw] = ACTIONS(1657), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(1623), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1659), - [anon_sym_DOT_DOT] = ACTIONS(1661), + [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), @@ -301158,19 +301044,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1663), - [anon_sym_sizeof] = ACTIONS(1665), - [anon_sym_typeof] = ACTIONS(1667), - [anon_sym___makeref] = ACTIONS(1669), - [anon_sym___reftype] = ACTIONS(1671), - [anon_sym___refvalue] = ACTIONS(1673), - [sym_null_literal] = ACTIONS(1675), - [anon_sym_SQUOTE] = ACTIONS(1677), - [sym_integer_literal] = ACTIONS(1675), - [sym_real_literal] = ACTIONS(1679), - [anon_sym_DQUOTE] = ACTIONS(1681), - [sym_verbatim_string_literal] = ACTIONS(1679), - [aux_sym_preproc_if_token1] = ACTIONS(1683), + [anon_sym_stackalloc] = ACTIONS(1331), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(1333), + [anon_sym___reftype] = ACTIONS(1335), + [anon_sym___refvalue] = ACTIONS(1337), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_literal] = ACTIONS(143), + [anon_sym_DQUOTE] = ACTIONS(145), + [sym_verbatim_string_literal] = ACTIONS(143), + [aux_sym_preproc_if_token1] = ACTIONS(1339), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -301181,90 +301067,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1685), - [sym_interpolation_verbatim_start] = ACTIONS(1687), - [sym_interpolation_raw_start] = ACTIONS(1689), - [sym_raw_string_start] = ACTIONS(1691), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [sym_interpolation_raw_start] = ACTIONS(155), + [sym_raw_string_start] = ACTIONS(157), }, [1535] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2914), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2816), [sym__name] = STATE(5873), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2362), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(3679), - [sym_non_lvalue_expression] = STATE(3880), - [sym_lvalue_expression] = STATE(2949), - [sym__expression_statement_expression] = STATE(3873), - [sym_assignment_expression] = STATE(3881), - [sym_binary_expression] = STATE(3873), - [sym_postfix_unary_expression] = STATE(3881), - [sym_prefix_unary_expression] = STATE(3881), - [sym__pointer_indirection_expression] = STATE(2913), - [sym_query_expression] = STATE(3873), - [sym_from_clause] = STATE(6182), - [sym_conditional_expression] = STATE(3873), - [sym_conditional_access_expression] = STATE(3873), - [sym_as_expression] = STATE(3873), - [sym_is_expression] = STATE(3873), - [sym_is_pattern_expression] = STATE(3873), - [sym_cast_expression] = STATE(3873), - [sym_checked_expression] = STATE(3873), - [sym_invocation_expression] = STATE(3881), - [sym_switch_expression] = STATE(3873), - [sym_await_expression] = STATE(3881), - [sym_throw_expression] = STATE(3873), - [sym_element_access_expression] = STATE(2913), - [sym_interpolated_string_expression] = STATE(3873), - [sym_member_access_expression] = STATE(2913), - [sym_object_creation_expression] = STATE(3881), - [sym_parenthesized_expression] = STATE(3881), - [sym__parenthesized_lvalue_expression] = STATE(2913), - [sym_lambda_expression] = STATE(3873), - [sym__lambda_expression_init] = STATE(7721), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3873), - [sym_anonymous_method_expression] = STATE(3873), - [sym_anonymous_object_creation_expression] = STATE(3873), - [sym_implicit_array_creation_expression] = STATE(3873), - [sym_implicit_object_creation_expression] = STATE(3873), - [sym_implicit_stackalloc_expression] = STATE(3873), - [sym_initializer_expression] = STATE(3873), - [sym_default_expression] = STATE(3873), - [sym_with_expression] = STATE(3873), - [sym_sizeof_expression] = STATE(3873), - [sym_typeof_expression] = STATE(3873), - [sym_makeref_expression] = STATE(3873), - [sym_ref_expression] = STATE(3873), - [sym_reftype_expression] = STATE(3873), - [sym_refvalue_expression] = STATE(3873), - [sym_stackalloc_expression] = STATE(3873), - [sym_range_expression] = STATE(3873), - [sym_tuple_expression] = STATE(2913), - [sym_literal] = STATE(3873), - [sym_character_literal] = STATE(3877), - [sym_string_literal] = STATE(3877), - [sym_raw_string_literal] = STATE(3877), - [sym_boolean_literal] = STATE(3877), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3873), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2196), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(5001), + [sym_non_lvalue_expression] = STATE(3495), + [sym_lvalue_expression] = STATE(3514), + [sym__expression_statement_expression] = STATE(3462), + [sym_assignment_expression] = STATE(3497), + [sym_binary_expression] = STATE(3462), + [sym_postfix_unary_expression] = STATE(3497), + [sym_prefix_unary_expression] = STATE(3497), + [sym__pointer_indirection_expression] = STATE(2815), + [sym_query_expression] = STATE(3462), + [sym_from_clause] = STATE(6154), + [sym_conditional_expression] = STATE(3462), + [sym_conditional_access_expression] = STATE(3462), + [sym_as_expression] = STATE(3462), + [sym_is_expression] = STATE(3462), + [sym_is_pattern_expression] = STATE(3462), + [sym_cast_expression] = STATE(3462), + [sym_checked_expression] = STATE(3462), + [sym_invocation_expression] = STATE(3497), + [sym_switch_expression] = STATE(3462), + [sym_await_expression] = STATE(3497), + [sym_throw_expression] = STATE(3462), + [sym_element_access_expression] = STATE(2815), + [sym_interpolated_string_expression] = STATE(3462), + [sym_member_access_expression] = STATE(2815), + [sym_object_creation_expression] = STATE(3497), + [sym_parenthesized_expression] = STATE(3497), + [sym__parenthesized_lvalue_expression] = STATE(2815), + [sym_lambda_expression] = STATE(3462), + [sym__lambda_expression_init] = STATE(7685), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3462), + [sym_anonymous_method_expression] = STATE(3462), + [sym_anonymous_object_creation_expression] = STATE(3462), + [sym_implicit_array_creation_expression] = STATE(3462), + [sym_implicit_object_creation_expression] = STATE(3462), + [sym_implicit_stackalloc_expression] = STATE(3462), + [sym_initializer_expression] = STATE(3462), + [sym_default_expression] = STATE(3462), + [sym_with_expression] = STATE(3462), + [sym_sizeof_expression] = STATE(3462), + [sym_typeof_expression] = STATE(3462), + [sym_makeref_expression] = STATE(3462), + [sym_ref_expression] = STATE(3462), + [sym_reftype_expression] = STATE(3462), + [sym_refvalue_expression] = STATE(3462), + [sym_stackalloc_expression] = STATE(3462), + [sym_range_expression] = STATE(3462), + [sym_tuple_expression] = STATE(2815), + [sym_literal] = STATE(3462), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2261), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3462), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(1535), [sym_preproc_endregion] = STATE(1535), [sym_preproc_line] = STATE(1535), @@ -301274,47 +301160,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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3382), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3367), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1627), - [anon_sym_LPAREN] = ACTIONS(1629), - [anon_sym_ref] = ACTIONS(1631), - [anon_sym_LBRACE] = ACTIONS(1633), - [anon_sym_delegate] = ACTIONS(1635), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1305), + [anon_sym_LPAREN] = ACTIONS(1613), + [anon_sym_ref] = ACTIONS(1615), + [anon_sym_LBRACE] = ACTIONS(1311), + [anon_sym_delegate] = ACTIONS(1313), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1637), + [anon_sym_new] = ACTIONS(1315), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1639), - [anon_sym_BANG] = ACTIONS(1643), - [anon_sym_TILDE] = ACTIONS(1643), - [anon_sym_PLUS_PLUS] = ACTIONS(1643), - [anon_sym_DASH_DASH] = ACTIONS(1643), - [anon_sym_true] = ACTIONS(1645), - [anon_sym_false] = ACTIONS(1645), - [anon_sym_PLUS] = ACTIONS(1641), - [anon_sym_DASH] = ACTIONS(1641), - [anon_sym_STAR] = ACTIONS(1647), - [anon_sym_CARET] = ACTIONS(1643), - [anon_sym_AMP] = ACTIONS(1643), - [anon_sym_this] = ACTIONS(1649), + [anon_sym_checked] = ACTIONS(1317), + [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(1321), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1651), + [anon_sym_base] = ACTIONS(1323), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1653), - [anon_sym_unchecked] = ACTIONS(1639), + [sym_predefined_type] = ACTIONS(91), + [anon_sym_unchecked] = ACTIONS(1317), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1655), - [anon_sym_throw] = ACTIONS(1657), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(1623), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1659), - [anon_sym_DOT_DOT] = ACTIONS(1661), + [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), @@ -301327,19 +301213,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1663), - [anon_sym_sizeof] = ACTIONS(1665), - [anon_sym_typeof] = ACTIONS(1667), - [anon_sym___makeref] = ACTIONS(1669), - [anon_sym___reftype] = ACTIONS(1671), - [anon_sym___refvalue] = ACTIONS(1673), - [sym_null_literal] = ACTIONS(1675), - [anon_sym_SQUOTE] = ACTIONS(1677), - [sym_integer_literal] = ACTIONS(1675), - [sym_real_literal] = ACTIONS(1679), - [anon_sym_DQUOTE] = ACTIONS(1681), - [sym_verbatim_string_literal] = ACTIONS(1679), - [aux_sym_preproc_if_token1] = ACTIONS(1683), + [anon_sym_stackalloc] = ACTIONS(1331), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(1333), + [anon_sym___reftype] = ACTIONS(1335), + [anon_sym___refvalue] = ACTIONS(1337), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_literal] = ACTIONS(143), + [anon_sym_DQUOTE] = ACTIONS(145), + [sym_verbatim_string_literal] = ACTIONS(143), + [aux_sym_preproc_if_token1] = ACTIONS(1339), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -301350,90 +301236,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1685), - [sym_interpolation_verbatim_start] = ACTIONS(1687), - [sym_interpolation_raw_start] = ACTIONS(1689), - [sym_raw_string_start] = ACTIONS(1691), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [sym_interpolation_raw_start] = ACTIONS(155), + [sym_raw_string_start] = ACTIONS(157), }, [1536] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2914), - [sym__name] = STATE(5873), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2362), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(3686), - [sym_non_lvalue_expression] = STATE(3880), - [sym_lvalue_expression] = STATE(2949), - [sym__expression_statement_expression] = STATE(3873), - [sym_assignment_expression] = STATE(3881), - [sym_binary_expression] = STATE(3873), - [sym_postfix_unary_expression] = STATE(3881), - [sym_prefix_unary_expression] = STATE(3881), - [sym__pointer_indirection_expression] = STATE(2913), - [sym_query_expression] = STATE(3873), - [sym_from_clause] = STATE(6182), - [sym_conditional_expression] = STATE(3873), - [sym_conditional_access_expression] = STATE(3873), - [sym_as_expression] = STATE(3873), - [sym_is_expression] = STATE(3873), - [sym_is_pattern_expression] = STATE(3873), - [sym_cast_expression] = STATE(3873), - [sym_checked_expression] = STATE(3873), - [sym_invocation_expression] = STATE(3881), - [sym_switch_expression] = STATE(3873), - [sym_await_expression] = STATE(3881), - [sym_throw_expression] = STATE(3873), - [sym_element_access_expression] = STATE(2913), - [sym_interpolated_string_expression] = STATE(3873), - [sym_member_access_expression] = STATE(2913), - [sym_object_creation_expression] = STATE(3881), - [sym_parenthesized_expression] = STATE(3881), - [sym__parenthesized_lvalue_expression] = STATE(2913), - [sym_lambda_expression] = STATE(3873), - [sym__lambda_expression_init] = STATE(7721), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3873), - [sym_anonymous_method_expression] = STATE(3873), - [sym_anonymous_object_creation_expression] = STATE(3873), - [sym_implicit_array_creation_expression] = STATE(3873), - [sym_implicit_object_creation_expression] = STATE(3873), - [sym_implicit_stackalloc_expression] = STATE(3873), - [sym_initializer_expression] = STATE(3873), - [sym_default_expression] = STATE(3873), - [sym_with_expression] = STATE(3873), - [sym_sizeof_expression] = STATE(3873), - [sym_typeof_expression] = STATE(3873), - [sym_makeref_expression] = STATE(3873), - [sym_ref_expression] = STATE(3873), - [sym_reftype_expression] = STATE(3873), - [sym_refvalue_expression] = STATE(3873), - [sym_stackalloc_expression] = STATE(3873), - [sym_range_expression] = STATE(3873), - [sym_tuple_expression] = STATE(2913), - [sym_literal] = STATE(3873), - [sym_character_literal] = STATE(3877), - [sym_string_literal] = STATE(3877), - [sym_raw_string_literal] = STATE(3877), - [sym_boolean_literal] = STATE(3877), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3873), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2816), + [sym__name] = STATE(5879), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2238), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(3212), + [sym_non_lvalue_expression] = STATE(3495), + [sym_lvalue_expression] = STATE(3197), + [sym__expression_statement_expression] = STATE(3462), + [sym_assignment_expression] = STATE(3497), + [sym_binary_expression] = STATE(3462), + [sym_postfix_unary_expression] = STATE(3497), + [sym_prefix_unary_expression] = STATE(3497), + [sym__pointer_indirection_expression] = STATE(2815), + [sym_query_expression] = STATE(3462), + [sym_from_clause] = STATE(6144), + [sym_conditional_expression] = STATE(3462), + [sym_conditional_access_expression] = STATE(3462), + [sym_as_expression] = STATE(3462), + [sym_is_expression] = STATE(3462), + [sym_is_pattern_expression] = STATE(3462), + [sym_cast_expression] = STATE(3462), + [sym_checked_expression] = STATE(3462), + [sym_invocation_expression] = STATE(3497), + [sym_switch_expression] = STATE(3462), + [sym_await_expression] = STATE(3497), + [sym_throw_expression] = STATE(3462), + [sym_element_access_expression] = STATE(2815), + [sym_interpolated_string_expression] = STATE(3462), + [sym_member_access_expression] = STATE(2815), + [sym_object_creation_expression] = STATE(3497), + [sym_parenthesized_expression] = STATE(3497), + [sym__parenthesized_lvalue_expression] = STATE(2815), + [sym_lambda_expression] = STATE(3462), + [sym__lambda_expression_init] = STATE(7615), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3462), + [sym_anonymous_method_expression] = STATE(3462), + [sym_anonymous_object_creation_expression] = STATE(3462), + [sym_implicit_array_creation_expression] = STATE(3462), + [sym_implicit_object_creation_expression] = STATE(3462), + [sym_implicit_stackalloc_expression] = STATE(3462), + [sym_initializer_expression] = STATE(3462), + [sym_default_expression] = STATE(3462), + [sym_with_expression] = STATE(3462), + [sym_sizeof_expression] = STATE(3462), + [sym_typeof_expression] = STATE(3462), + [sym_makeref_expression] = STATE(3462), + [sym_ref_expression] = STATE(3462), + [sym_reftype_expression] = STATE(3462), + [sym_refvalue_expression] = STATE(3462), + [sym_stackalloc_expression] = STATE(3462), + [sym_range_expression] = STATE(3462), + [sym_tuple_expression] = STATE(2815), + [sym_literal] = STATE(3462), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3462), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(1536), [sym_preproc_endregion] = STATE(1536), [sym_preproc_line] = STATE(1536), @@ -301443,47 +301329,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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3382), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3367), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1627), - [anon_sym_LPAREN] = ACTIONS(1629), - [anon_sym_ref] = ACTIONS(1631), - [anon_sym_LBRACE] = ACTIONS(1633), - [anon_sym_delegate] = ACTIONS(1635), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1305), + [anon_sym_LPAREN] = ACTIONS(1357), + [anon_sym_ref] = ACTIONS(1359), + [anon_sym_LBRACE] = ACTIONS(1311), + [anon_sym_delegate] = ACTIONS(1313), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1637), + [anon_sym_new] = ACTIONS(1315), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1639), - [anon_sym_BANG] = ACTIONS(1643), - [anon_sym_TILDE] = ACTIONS(1643), - [anon_sym_PLUS_PLUS] = ACTIONS(1643), - [anon_sym_DASH_DASH] = ACTIONS(1643), - [anon_sym_true] = ACTIONS(1645), - [anon_sym_false] = ACTIONS(1645), - [anon_sym_PLUS] = ACTIONS(1641), - [anon_sym_DASH] = ACTIONS(1641), - [anon_sym_STAR] = ACTIONS(1647), - [anon_sym_CARET] = ACTIONS(1643), - [anon_sym_AMP] = ACTIONS(1643), - [anon_sym_this] = ACTIONS(1649), + [anon_sym_checked] = ACTIONS(1317), + [anon_sym_BANG] = ACTIONS(1101), + [anon_sym_TILDE] = ACTIONS(1101), + [anon_sym_PLUS_PLUS] = ACTIONS(1101), + [anon_sym_DASH_DASH] = ACTIONS(1101), + [anon_sym_true] = ACTIONS(77), + [anon_sym_false] = ACTIONS(77), + [anon_sym_PLUS] = ACTIONS(1103), + [anon_sym_DASH] = ACTIONS(1103), + [anon_sym_STAR] = ACTIONS(1361), + [anon_sym_CARET] = ACTIONS(1101), + [anon_sym_AMP] = ACTIONS(1101), + [anon_sym_this] = ACTIONS(1321), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1651), + [anon_sym_base] = ACTIONS(1323), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1653), - [anon_sym_unchecked] = ACTIONS(1639), + [sym_predefined_type] = ACTIONS(91), + [anon_sym_unchecked] = ACTIONS(1317), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1655), - [anon_sym_throw] = ACTIONS(1657), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(1363), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1659), - [anon_sym_DOT_DOT] = ACTIONS(1661), + [anon_sym_await] = ACTIONS(1365), + [anon_sym_DOT_DOT] = ACTIONS(1367), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -301496,19 +301382,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1663), - [anon_sym_sizeof] = ACTIONS(1665), - [anon_sym_typeof] = ACTIONS(1667), - [anon_sym___makeref] = ACTIONS(1669), - [anon_sym___reftype] = ACTIONS(1671), - [anon_sym___refvalue] = ACTIONS(1673), - [sym_null_literal] = ACTIONS(1675), - [anon_sym_SQUOTE] = ACTIONS(1677), - [sym_integer_literal] = ACTIONS(1675), - [sym_real_literal] = ACTIONS(1679), - [anon_sym_DQUOTE] = ACTIONS(1681), - [sym_verbatim_string_literal] = ACTIONS(1679), - [aux_sym_preproc_if_token1] = ACTIONS(1683), + [anon_sym_stackalloc] = ACTIONS(1331), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(1333), + [anon_sym___reftype] = ACTIONS(1335), + [anon_sym___refvalue] = ACTIONS(1337), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_literal] = ACTIONS(143), + [anon_sym_DQUOTE] = ACTIONS(145), + [sym_verbatim_string_literal] = ACTIONS(143), + [aux_sym_preproc_if_token1] = ACTIONS(1339), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -301519,90 +301405,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1685), - [sym_interpolation_verbatim_start] = ACTIONS(1687), - [sym_interpolation_raw_start] = ACTIONS(1689), - [sym_raw_string_start] = ACTIONS(1691), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [sym_interpolation_raw_start] = ACTIONS(155), + [sym_raw_string_start] = ACTIONS(157), }, [1537] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2914), - [sym__name] = STATE(5873), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2362), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(3661), - [sym_non_lvalue_expression] = STATE(3880), - [sym_lvalue_expression] = STATE(2949), - [sym__expression_statement_expression] = STATE(3873), - [sym_assignment_expression] = STATE(3881), - [sym_binary_expression] = STATE(3873), - [sym_postfix_unary_expression] = STATE(3881), - [sym_prefix_unary_expression] = STATE(3881), - [sym__pointer_indirection_expression] = STATE(2913), - [sym_query_expression] = STATE(3873), - [sym_from_clause] = STATE(6182), - [sym_conditional_expression] = STATE(3873), - [sym_conditional_access_expression] = STATE(3873), - [sym_as_expression] = STATE(3873), - [sym_is_expression] = STATE(3873), - [sym_is_pattern_expression] = STATE(3873), - [sym_cast_expression] = STATE(3873), - [sym_checked_expression] = STATE(3873), - [sym_invocation_expression] = STATE(3881), - [sym_switch_expression] = STATE(3873), - [sym_await_expression] = STATE(3881), - [sym_throw_expression] = STATE(3873), - [sym_element_access_expression] = STATE(2913), - [sym_interpolated_string_expression] = STATE(3873), - [sym_member_access_expression] = STATE(2913), - [sym_object_creation_expression] = STATE(3881), - [sym_parenthesized_expression] = STATE(3881), - [sym__parenthesized_lvalue_expression] = STATE(2913), - [sym_lambda_expression] = STATE(3873), - [sym__lambda_expression_init] = STATE(7721), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3873), - [sym_anonymous_method_expression] = STATE(3873), - [sym_anonymous_object_creation_expression] = STATE(3873), - [sym_implicit_array_creation_expression] = STATE(3873), - [sym_implicit_object_creation_expression] = STATE(3873), - [sym_implicit_stackalloc_expression] = STATE(3873), - [sym_initializer_expression] = STATE(3873), - [sym_default_expression] = STATE(3873), - [sym_with_expression] = STATE(3873), - [sym_sizeof_expression] = STATE(3873), - [sym_typeof_expression] = STATE(3873), - [sym_makeref_expression] = STATE(3873), - [sym_ref_expression] = STATE(3873), - [sym_reftype_expression] = STATE(3873), - [sym_refvalue_expression] = STATE(3873), - [sym_stackalloc_expression] = STATE(3873), - [sym_range_expression] = STATE(3873), - [sym_tuple_expression] = STATE(2913), - [sym_literal] = STATE(3873), - [sym_character_literal] = STATE(3877), - [sym_string_literal] = STATE(3877), - [sym_raw_string_literal] = STATE(3877), - [sym_boolean_literal] = STATE(3877), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3873), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2816), + [sym__name] = STATE(5875), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2321), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(5697), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(2830), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3102), + [sym_postfix_unary_expression] = STATE(3079), + [sym_prefix_unary_expression] = STATE(3079), + [sym__pointer_indirection_expression] = STATE(2815), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6134), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3102), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3079), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2815), + [sym_interpolated_string_expression] = STATE(3102), + [sym_member_access_expression] = STATE(2815), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3079), + [sym__parenthesized_lvalue_expression] = STATE(2815), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7425), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(3102), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3102), + [sym_typeof_expression] = STATE(3102), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2815), + [sym_literal] = STATE(3102), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2261), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(1537), [sym_preproc_endregion] = STATE(1537), [sym_preproc_line] = STATE(1537), @@ -301612,47 +301498,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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3382), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1627), - [anon_sym_LPAREN] = ACTIONS(1629), - [anon_sym_ref] = ACTIONS(1631), - [anon_sym_LBRACE] = ACTIONS(1633), - [anon_sym_delegate] = ACTIONS(1635), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1305), + [anon_sym_LPAREN] = ACTIONS(2945), + [anon_sym_ref] = ACTIONS(715), + [anon_sym_LBRACE] = ACTIONS(1481), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1637), + [anon_sym_new] = ACTIONS(1059), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1639), - [anon_sym_BANG] = ACTIONS(1643), - [anon_sym_TILDE] = ACTIONS(1643), - [anon_sym_PLUS_PLUS] = ACTIONS(1643), - [anon_sym_DASH_DASH] = ACTIONS(1643), - [anon_sym_true] = ACTIONS(1645), - [anon_sym_false] = ACTIONS(1645), - [anon_sym_PLUS] = ACTIONS(1641), - [anon_sym_DASH] = ACTIONS(1641), - [anon_sym_STAR] = ACTIONS(1647), - [anon_sym_CARET] = ACTIONS(1643), - [anon_sym_AMP] = ACTIONS(1643), - [anon_sym_this] = ACTIONS(1649), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(1525), + [anon_sym_TILDE] = ACTIONS(1525), + [anon_sym_PLUS_PLUS] = ACTIONS(1525), + [anon_sym_DASH_DASH] = ACTIONS(1525), + [anon_sym_true] = ACTIONS(77), + [anon_sym_false] = ACTIONS(77), + [anon_sym_PLUS] = ACTIONS(1523), + [anon_sym_DASH] = ACTIONS(1523), + [anon_sym_STAR] = ACTIONS(1589), + [anon_sym_CARET] = ACTIONS(1525), + [anon_sym_AMP] = ACTIONS(1525), + [anon_sym_this] = ACTIONS(1321), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1651), + [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1653), - [anon_sym_unchecked] = ACTIONS(1639), + [sym_predefined_type] = ACTIONS(91), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1655), - [anon_sym_throw] = ACTIONS(1657), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(1527), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1659), - [anon_sym_DOT_DOT] = ACTIONS(1661), + [anon_sym_await] = ACTIONS(1529), + [anon_sym_DOT_DOT] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -301665,19 +301551,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1663), - [anon_sym_sizeof] = ACTIONS(1665), - [anon_sym_typeof] = ACTIONS(1667), - [anon_sym___makeref] = ACTIONS(1669), - [anon_sym___reftype] = ACTIONS(1671), - [anon_sym___refvalue] = ACTIONS(1673), - [sym_null_literal] = ACTIONS(1675), - [anon_sym_SQUOTE] = ACTIONS(1677), - [sym_integer_literal] = ACTIONS(1675), - [sym_real_literal] = ACTIONS(1679), - [anon_sym_DQUOTE] = ACTIONS(1681), - [sym_verbatim_string_literal] = ACTIONS(1679), - [aux_sym_preproc_if_token1] = ACTIONS(1683), + [anon_sym_stackalloc] = ACTIONS(127), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_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), @@ -301688,90 +301574,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1685), - [sym_interpolation_verbatim_start] = ACTIONS(1687), - [sym_interpolation_raw_start] = ACTIONS(1689), - [sym_raw_string_start] = ACTIONS(1691), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [sym_interpolation_raw_start] = ACTIONS(155), + [sym_raw_string_start] = ACTIONS(157), }, [1538] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2914), - [sym__name] = STATE(5873), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2362), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(3675), - [sym_non_lvalue_expression] = STATE(3880), - [sym_lvalue_expression] = STATE(2949), - [sym__expression_statement_expression] = STATE(3873), - [sym_assignment_expression] = STATE(3881), - [sym_binary_expression] = STATE(3873), - [sym_postfix_unary_expression] = STATE(3881), - [sym_prefix_unary_expression] = STATE(3881), - [sym__pointer_indirection_expression] = STATE(2913), - [sym_query_expression] = STATE(3873), - [sym_from_clause] = STATE(6182), - [sym_conditional_expression] = STATE(3873), - [sym_conditional_access_expression] = STATE(3873), - [sym_as_expression] = STATE(3873), - [sym_is_expression] = STATE(3873), - [sym_is_pattern_expression] = STATE(3873), - [sym_cast_expression] = STATE(3873), - [sym_checked_expression] = STATE(3873), - [sym_invocation_expression] = STATE(3881), - [sym_switch_expression] = STATE(3873), - [sym_await_expression] = STATE(3881), - [sym_throw_expression] = STATE(3873), - [sym_element_access_expression] = STATE(2913), - [sym_interpolated_string_expression] = STATE(3873), - [sym_member_access_expression] = STATE(2913), - [sym_object_creation_expression] = STATE(3881), - [sym_parenthesized_expression] = STATE(3881), - [sym__parenthesized_lvalue_expression] = STATE(2913), - [sym_lambda_expression] = STATE(3873), - [sym__lambda_expression_init] = STATE(7721), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3873), - [sym_anonymous_method_expression] = STATE(3873), - [sym_anonymous_object_creation_expression] = STATE(3873), - [sym_implicit_array_creation_expression] = STATE(3873), - [sym_implicit_object_creation_expression] = STATE(3873), - [sym_implicit_stackalloc_expression] = STATE(3873), - [sym_initializer_expression] = STATE(3873), - [sym_default_expression] = STATE(3873), - [sym_with_expression] = STATE(3873), - [sym_sizeof_expression] = STATE(3873), - [sym_typeof_expression] = STATE(3873), - [sym_makeref_expression] = STATE(3873), - [sym_ref_expression] = STATE(3873), - [sym_reftype_expression] = STATE(3873), - [sym_refvalue_expression] = STATE(3873), - [sym_stackalloc_expression] = STATE(3873), - [sym_range_expression] = STATE(3873), - [sym_tuple_expression] = STATE(2913), - [sym_literal] = STATE(3873), - [sym_character_literal] = STATE(3877), - [sym_string_literal] = STATE(3877), - [sym_raw_string_literal] = STATE(3877), - [sym_boolean_literal] = STATE(3877), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3873), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2603), + [sym__name] = STATE(5877), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2344), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(4444), + [sym_non_lvalue_expression] = STATE(3220), + [sym_lvalue_expression] = STATE(3281), + [sym__expression_statement_expression] = STATE(3236), + [sym_assignment_expression] = STATE(3221), + [sym_binary_expression] = STATE(3236), + [sym_postfix_unary_expression] = STATE(3221), + [sym_prefix_unary_expression] = STATE(3221), + [sym__pointer_indirection_expression] = STATE(2602), + [sym_query_expression] = STATE(3236), + [sym_from_clause] = STATE(6146), + [sym_conditional_expression] = STATE(3236), + [sym_conditional_access_expression] = STATE(3236), + [sym_as_expression] = STATE(3236), + [sym_is_expression] = STATE(3236), + [sym_is_pattern_expression] = STATE(3236), + [sym_cast_expression] = STATE(3236), + [sym_checked_expression] = STATE(3236), + [sym_invocation_expression] = STATE(3221), + [sym_switch_expression] = STATE(3236), + [sym_await_expression] = STATE(3221), + [sym_throw_expression] = STATE(3236), + [sym_element_access_expression] = STATE(2602), + [sym_interpolated_string_expression] = STATE(3236), + [sym_member_access_expression] = STATE(2602), + [sym_object_creation_expression] = STATE(3221), + [sym_parenthesized_expression] = STATE(3221), + [sym__parenthesized_lvalue_expression] = STATE(2602), + [sym_lambda_expression] = STATE(3236), + [sym__lambda_expression_init] = STATE(7323), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3236), + [sym_anonymous_method_expression] = STATE(3236), + [sym_anonymous_object_creation_expression] = STATE(3236), + [sym_implicit_array_creation_expression] = STATE(3236), + [sym_implicit_object_creation_expression] = STATE(3236), + [sym_implicit_stackalloc_expression] = STATE(3236), + [sym_initializer_expression] = STATE(3236), + [sym_default_expression] = STATE(3236), + [sym_with_expression] = STATE(3236), + [sym_sizeof_expression] = STATE(3236), + [sym_typeof_expression] = STATE(3236), + [sym_makeref_expression] = STATE(3236), + [sym_ref_expression] = STATE(3236), + [sym_reftype_expression] = STATE(3236), + [sym_refvalue_expression] = STATE(3236), + [sym_stackalloc_expression] = STATE(3236), + [sym_range_expression] = STATE(3236), + [sym_tuple_expression] = STATE(2602), + [sym_literal] = STATE(3236), + [sym_character_literal] = STATE(3272), + [sym_string_literal] = STATE(3272), + [sym_raw_string_literal] = STATE(3272), + [sym_boolean_literal] = STATE(3272), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3236), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(1538), [sym_preproc_endregion] = STATE(1538), [sym_preproc_line] = STATE(1538), @@ -301781,47 +301667,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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3382), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3379), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1627), - [anon_sym_LPAREN] = ACTIONS(1629), - [anon_sym_ref] = ACTIONS(1631), - [anon_sym_LBRACE] = ACTIONS(1633), - [anon_sym_delegate] = ACTIONS(1635), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1149), + [anon_sym_LPAREN] = ACTIONS(1531), + [anon_sym_ref] = ACTIONS(1533), + [anon_sym_LBRACE] = ACTIONS(1155), + [anon_sym_delegate] = ACTIONS(1157), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1637), + [anon_sym_new] = ACTIONS(1535), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1639), - [anon_sym_BANG] = ACTIONS(1643), - [anon_sym_TILDE] = ACTIONS(1643), - [anon_sym_PLUS_PLUS] = ACTIONS(1643), - [anon_sym_DASH_DASH] = ACTIONS(1643), - [anon_sym_true] = ACTIONS(1645), - [anon_sym_false] = ACTIONS(1645), - [anon_sym_PLUS] = ACTIONS(1641), - [anon_sym_DASH] = ACTIONS(1641), - [anon_sym_STAR] = ACTIONS(1647), - [anon_sym_CARET] = ACTIONS(1643), - [anon_sym_AMP] = ACTIONS(1643), - [anon_sym_this] = ACTIONS(1649), + [anon_sym_checked] = ACTIONS(1163), + [anon_sym_BANG] = ACTIONS(1539), + [anon_sym_TILDE] = ACTIONS(1539), + [anon_sym_PLUS_PLUS] = ACTIONS(1539), + [anon_sym_DASH_DASH] = ACTIONS(1539), + [anon_sym_true] = ACTIONS(1169), + [anon_sym_false] = ACTIONS(1169), + [anon_sym_PLUS] = ACTIONS(1537), + [anon_sym_DASH] = ACTIONS(1537), + [anon_sym_STAR] = ACTIONS(1541), + [anon_sym_CARET] = ACTIONS(1539), + [anon_sym_AMP] = ACTIONS(1539), + [anon_sym_this] = ACTIONS(1173), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1651), + [anon_sym_base] = ACTIONS(1175), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1653), - [anon_sym_unchecked] = ACTIONS(1639), + [sym_predefined_type] = ACTIONS(1177), + [anon_sym_unchecked] = ACTIONS(1163), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1655), - [anon_sym_throw] = ACTIONS(1657), + [anon_sym_default] = ACTIONS(1179), + [anon_sym_throw] = ACTIONS(1543), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1659), - [anon_sym_DOT_DOT] = ACTIONS(1661), + [anon_sym_await] = ACTIONS(1545), + [anon_sym_DOT_DOT] = ACTIONS(1547), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -301834,19 +301720,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1663), - [anon_sym_sizeof] = ACTIONS(1665), - [anon_sym_typeof] = ACTIONS(1667), - [anon_sym___makeref] = ACTIONS(1669), - [anon_sym___reftype] = ACTIONS(1671), - [anon_sym___refvalue] = ACTIONS(1673), - [sym_null_literal] = ACTIONS(1675), - [anon_sym_SQUOTE] = ACTIONS(1677), - [sym_integer_literal] = ACTIONS(1675), - [sym_real_literal] = ACTIONS(1679), - [anon_sym_DQUOTE] = ACTIONS(1681), - [sym_verbatim_string_literal] = ACTIONS(1679), - [aux_sym_preproc_if_token1] = ACTIONS(1683), + [anon_sym_stackalloc] = ACTIONS(1187), + [anon_sym_sizeof] = ACTIONS(1189), + [anon_sym_typeof] = ACTIONS(1191), + [anon_sym___makeref] = ACTIONS(1193), + [anon_sym___reftype] = ACTIONS(1195), + [anon_sym___refvalue] = ACTIONS(1197), + [sym_null_literal] = ACTIONS(1199), + [anon_sym_SQUOTE] = ACTIONS(1201), + [sym_integer_literal] = ACTIONS(1199), + [sym_real_literal] = ACTIONS(1203), + [anon_sym_DQUOTE] = ACTIONS(1205), + [sym_verbatim_string_literal] = ACTIONS(1203), + [aux_sym_preproc_if_token1] = ACTIONS(1207), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -301857,90 +301743,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1685), - [sym_interpolation_verbatim_start] = ACTIONS(1687), - [sym_interpolation_raw_start] = ACTIONS(1689), - [sym_raw_string_start] = ACTIONS(1691), + [sym_interpolation_regular_start] = ACTIONS(1209), + [sym_interpolation_verbatim_start] = ACTIONS(1211), + [sym_interpolation_raw_start] = ACTIONS(1213), + [sym_raw_string_start] = ACTIONS(1215), }, [1539] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2914), - [sym__name] = STATE(5873), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2362), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(3674), - [sym_non_lvalue_expression] = STATE(3880), - [sym_lvalue_expression] = STATE(2949), - [sym__expression_statement_expression] = STATE(3873), - [sym_assignment_expression] = STATE(3881), - [sym_binary_expression] = STATE(3873), - [sym_postfix_unary_expression] = STATE(3881), - [sym_prefix_unary_expression] = STATE(3881), - [sym__pointer_indirection_expression] = STATE(2913), - [sym_query_expression] = STATE(3873), - [sym_from_clause] = STATE(6182), - [sym_conditional_expression] = STATE(3873), - [sym_conditional_access_expression] = STATE(3873), - [sym_as_expression] = STATE(3873), - [sym_is_expression] = STATE(3873), - [sym_is_pattern_expression] = STATE(3873), - [sym_cast_expression] = STATE(3873), - [sym_checked_expression] = STATE(3873), - [sym_invocation_expression] = STATE(3881), - [sym_switch_expression] = STATE(3873), - [sym_await_expression] = STATE(3881), - [sym_throw_expression] = STATE(3873), - [sym_element_access_expression] = STATE(2913), - [sym_interpolated_string_expression] = STATE(3873), - [sym_member_access_expression] = STATE(2913), - [sym_object_creation_expression] = STATE(3881), - [sym_parenthesized_expression] = STATE(3881), - [sym__parenthesized_lvalue_expression] = STATE(2913), - [sym_lambda_expression] = STATE(3873), - [sym__lambda_expression_init] = STATE(7721), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3873), - [sym_anonymous_method_expression] = STATE(3873), - [sym_anonymous_object_creation_expression] = STATE(3873), - [sym_implicit_array_creation_expression] = STATE(3873), - [sym_implicit_object_creation_expression] = STATE(3873), - [sym_implicit_stackalloc_expression] = STATE(3873), - [sym_initializer_expression] = STATE(3873), - [sym_default_expression] = STATE(3873), - [sym_with_expression] = STATE(3873), - [sym_sizeof_expression] = STATE(3873), - [sym_typeof_expression] = STATE(3873), - [sym_makeref_expression] = STATE(3873), - [sym_ref_expression] = STATE(3873), - [sym_reftype_expression] = STATE(3873), - [sym_refvalue_expression] = STATE(3873), - [sym_stackalloc_expression] = STATE(3873), - [sym_range_expression] = STATE(3873), - [sym_tuple_expression] = STATE(2913), - [sym_literal] = STATE(3873), - [sym_character_literal] = STATE(3877), - [sym_string_literal] = STATE(3877), - [sym_raw_string_literal] = STATE(3877), - [sym_boolean_literal] = STATE(3877), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3873), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2603), + [sym__name] = STATE(5877), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2344), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(4445), + [sym_non_lvalue_expression] = STATE(3220), + [sym_lvalue_expression] = STATE(3281), + [sym__expression_statement_expression] = STATE(3236), + [sym_assignment_expression] = STATE(3221), + [sym_binary_expression] = STATE(3236), + [sym_postfix_unary_expression] = STATE(3221), + [sym_prefix_unary_expression] = STATE(3221), + [sym__pointer_indirection_expression] = STATE(2602), + [sym_query_expression] = STATE(3236), + [sym_from_clause] = STATE(6146), + [sym_conditional_expression] = STATE(3236), + [sym_conditional_access_expression] = STATE(3236), + [sym_as_expression] = STATE(3236), + [sym_is_expression] = STATE(3236), + [sym_is_pattern_expression] = STATE(3236), + [sym_cast_expression] = STATE(3236), + [sym_checked_expression] = STATE(3236), + [sym_invocation_expression] = STATE(3221), + [sym_switch_expression] = STATE(3236), + [sym_await_expression] = STATE(3221), + [sym_throw_expression] = STATE(3236), + [sym_element_access_expression] = STATE(2602), + [sym_interpolated_string_expression] = STATE(3236), + [sym_member_access_expression] = STATE(2602), + [sym_object_creation_expression] = STATE(3221), + [sym_parenthesized_expression] = STATE(3221), + [sym__parenthesized_lvalue_expression] = STATE(2602), + [sym_lambda_expression] = STATE(3236), + [sym__lambda_expression_init] = STATE(7323), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3236), + [sym_anonymous_method_expression] = STATE(3236), + [sym_anonymous_object_creation_expression] = STATE(3236), + [sym_implicit_array_creation_expression] = STATE(3236), + [sym_implicit_object_creation_expression] = STATE(3236), + [sym_implicit_stackalloc_expression] = STATE(3236), + [sym_initializer_expression] = STATE(3236), + [sym_default_expression] = STATE(3236), + [sym_with_expression] = STATE(3236), + [sym_sizeof_expression] = STATE(3236), + [sym_typeof_expression] = STATE(3236), + [sym_makeref_expression] = STATE(3236), + [sym_ref_expression] = STATE(3236), + [sym_reftype_expression] = STATE(3236), + [sym_refvalue_expression] = STATE(3236), + [sym_stackalloc_expression] = STATE(3236), + [sym_range_expression] = STATE(3236), + [sym_tuple_expression] = STATE(2602), + [sym_literal] = STATE(3236), + [sym_character_literal] = STATE(3272), + [sym_string_literal] = STATE(3272), + [sym_raw_string_literal] = STATE(3272), + [sym_boolean_literal] = STATE(3272), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3236), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(1539), [sym_preproc_endregion] = STATE(1539), [sym_preproc_line] = STATE(1539), @@ -301950,47 +301836,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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3382), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3379), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1627), - [anon_sym_LPAREN] = ACTIONS(1629), - [anon_sym_ref] = ACTIONS(1631), - [anon_sym_LBRACE] = ACTIONS(1633), - [anon_sym_delegate] = ACTIONS(1635), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1149), + [anon_sym_LPAREN] = ACTIONS(1531), + [anon_sym_ref] = ACTIONS(1533), + [anon_sym_LBRACE] = ACTIONS(1155), + [anon_sym_delegate] = ACTIONS(1157), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1637), + [anon_sym_new] = ACTIONS(1535), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1639), - [anon_sym_BANG] = ACTIONS(1643), - [anon_sym_TILDE] = ACTIONS(1643), - [anon_sym_PLUS_PLUS] = ACTIONS(1643), - [anon_sym_DASH_DASH] = ACTIONS(1643), - [anon_sym_true] = ACTIONS(1645), - [anon_sym_false] = ACTIONS(1645), - [anon_sym_PLUS] = ACTIONS(1641), - [anon_sym_DASH] = ACTIONS(1641), - [anon_sym_STAR] = ACTIONS(1647), - [anon_sym_CARET] = ACTIONS(1643), - [anon_sym_AMP] = ACTIONS(1643), - [anon_sym_this] = ACTIONS(1649), + [anon_sym_checked] = ACTIONS(1163), + [anon_sym_BANG] = ACTIONS(1539), + [anon_sym_TILDE] = ACTIONS(1539), + [anon_sym_PLUS_PLUS] = ACTIONS(1539), + [anon_sym_DASH_DASH] = ACTIONS(1539), + [anon_sym_true] = ACTIONS(1169), + [anon_sym_false] = ACTIONS(1169), + [anon_sym_PLUS] = ACTIONS(1537), + [anon_sym_DASH] = ACTIONS(1537), + [anon_sym_STAR] = ACTIONS(1541), + [anon_sym_CARET] = ACTIONS(1539), + [anon_sym_AMP] = ACTIONS(1539), + [anon_sym_this] = ACTIONS(1173), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1651), + [anon_sym_base] = ACTIONS(1175), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1653), - [anon_sym_unchecked] = ACTIONS(1639), + [sym_predefined_type] = ACTIONS(1177), + [anon_sym_unchecked] = ACTIONS(1163), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1655), - [anon_sym_throw] = ACTIONS(1657), + [anon_sym_default] = ACTIONS(1179), + [anon_sym_throw] = ACTIONS(1543), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1659), - [anon_sym_DOT_DOT] = ACTIONS(1661), + [anon_sym_await] = ACTIONS(1545), + [anon_sym_DOT_DOT] = ACTIONS(1547), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -302003,19 +301889,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1663), - [anon_sym_sizeof] = ACTIONS(1665), - [anon_sym_typeof] = ACTIONS(1667), - [anon_sym___makeref] = ACTIONS(1669), - [anon_sym___reftype] = ACTIONS(1671), - [anon_sym___refvalue] = ACTIONS(1673), - [sym_null_literal] = ACTIONS(1675), - [anon_sym_SQUOTE] = ACTIONS(1677), - [sym_integer_literal] = ACTIONS(1675), - [sym_real_literal] = ACTIONS(1679), - [anon_sym_DQUOTE] = ACTIONS(1681), - [sym_verbatim_string_literal] = ACTIONS(1679), - [aux_sym_preproc_if_token1] = ACTIONS(1683), + [anon_sym_stackalloc] = ACTIONS(1187), + [anon_sym_sizeof] = ACTIONS(1189), + [anon_sym_typeof] = ACTIONS(1191), + [anon_sym___makeref] = ACTIONS(1193), + [anon_sym___reftype] = ACTIONS(1195), + [anon_sym___refvalue] = ACTIONS(1197), + [sym_null_literal] = ACTIONS(1199), + [anon_sym_SQUOTE] = ACTIONS(1201), + [sym_integer_literal] = ACTIONS(1199), + [sym_real_literal] = ACTIONS(1203), + [anon_sym_DQUOTE] = ACTIONS(1205), + [sym_verbatim_string_literal] = ACTIONS(1203), + [aux_sym_preproc_if_token1] = ACTIONS(1207), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -302026,90 +301912,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1685), - [sym_interpolation_verbatim_start] = ACTIONS(1687), - [sym_interpolation_raw_start] = ACTIONS(1689), - [sym_raw_string_start] = ACTIONS(1691), + [sym_interpolation_regular_start] = ACTIONS(1209), + [sym_interpolation_verbatim_start] = ACTIONS(1211), + [sym_interpolation_raw_start] = ACTIONS(1213), + [sym_raw_string_start] = ACTIONS(1215), }, [1540] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2914), - [sym__name] = STATE(5873), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2362), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(3676), - [sym_non_lvalue_expression] = STATE(3880), - [sym_lvalue_expression] = STATE(2949), - [sym__expression_statement_expression] = STATE(3873), - [sym_assignment_expression] = STATE(3881), - [sym_binary_expression] = STATE(3873), - [sym_postfix_unary_expression] = STATE(3881), - [sym_prefix_unary_expression] = STATE(3881), - [sym__pointer_indirection_expression] = STATE(2913), - [sym_query_expression] = STATE(3873), - [sym_from_clause] = STATE(6182), - [sym_conditional_expression] = STATE(3873), - [sym_conditional_access_expression] = STATE(3873), - [sym_as_expression] = STATE(3873), - [sym_is_expression] = STATE(3873), - [sym_is_pattern_expression] = STATE(3873), - [sym_cast_expression] = STATE(3873), - [sym_checked_expression] = STATE(3873), - [sym_invocation_expression] = STATE(3881), - [sym_switch_expression] = STATE(3873), - [sym_await_expression] = STATE(3881), - [sym_throw_expression] = STATE(3873), - [sym_element_access_expression] = STATE(2913), - [sym_interpolated_string_expression] = STATE(3873), - [sym_member_access_expression] = STATE(2913), - [sym_object_creation_expression] = STATE(3881), - [sym_parenthesized_expression] = STATE(3881), - [sym__parenthesized_lvalue_expression] = STATE(2913), - [sym_lambda_expression] = STATE(3873), - [sym__lambda_expression_init] = STATE(7721), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3873), - [sym_anonymous_method_expression] = STATE(3873), - [sym_anonymous_object_creation_expression] = STATE(3873), - [sym_implicit_array_creation_expression] = STATE(3873), - [sym_implicit_object_creation_expression] = STATE(3873), - [sym_implicit_stackalloc_expression] = STATE(3873), - [sym_initializer_expression] = STATE(3873), - [sym_default_expression] = STATE(3873), - [sym_with_expression] = STATE(3873), - [sym_sizeof_expression] = STATE(3873), - [sym_typeof_expression] = STATE(3873), - [sym_makeref_expression] = STATE(3873), - [sym_ref_expression] = STATE(3873), - [sym_reftype_expression] = STATE(3873), - [sym_refvalue_expression] = STATE(3873), - [sym_stackalloc_expression] = STATE(3873), - [sym_range_expression] = STATE(3873), - [sym_tuple_expression] = STATE(2913), - [sym_literal] = STATE(3873), - [sym_character_literal] = STATE(3877), - [sym_string_literal] = STATE(3877), - [sym_raw_string_literal] = STATE(3877), - [sym_boolean_literal] = STATE(3877), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3873), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2603), + [sym__name] = STATE(5862), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2193), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(3816), + [sym_non_lvalue_expression] = STATE(3220), + [sym_lvalue_expression] = STATE(2955), + [sym__expression_statement_expression] = STATE(3236), + [sym_assignment_expression] = STATE(3221), + [sym_binary_expression] = STATE(3236), + [sym_postfix_unary_expression] = STATE(3221), + [sym_prefix_unary_expression] = STATE(3221), + [sym__pointer_indirection_expression] = STATE(2602), + [sym_query_expression] = STATE(3236), + [sym_from_clause] = STATE(6143), + [sym_conditional_expression] = STATE(3236), + [sym_conditional_access_expression] = STATE(3236), + [sym_as_expression] = STATE(3236), + [sym_is_expression] = STATE(3236), + [sym_is_pattern_expression] = STATE(3236), + [sym_cast_expression] = STATE(3236), + [sym_checked_expression] = STATE(3236), + [sym_invocation_expression] = STATE(3221), + [sym_switch_expression] = STATE(3236), + [sym_await_expression] = STATE(3221), + [sym_throw_expression] = STATE(3236), + [sym_element_access_expression] = STATE(2602), + [sym_interpolated_string_expression] = STATE(3236), + [sym_member_access_expression] = STATE(2602), + [sym_object_creation_expression] = STATE(3221), + [sym_parenthesized_expression] = STATE(3221), + [sym__parenthesized_lvalue_expression] = STATE(2602), + [sym_lambda_expression] = STATE(3236), + [sym__lambda_expression_init] = STATE(7668), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3236), + [sym_anonymous_method_expression] = STATE(3236), + [sym_anonymous_object_creation_expression] = STATE(3236), + [sym_implicit_array_creation_expression] = STATE(3236), + [sym_implicit_object_creation_expression] = STATE(3236), + [sym_implicit_stackalloc_expression] = STATE(3236), + [sym_initializer_expression] = STATE(3236), + [sym_default_expression] = STATE(3236), + [sym_with_expression] = STATE(3236), + [sym_sizeof_expression] = STATE(3236), + [sym_typeof_expression] = STATE(3236), + [sym_makeref_expression] = STATE(3236), + [sym_ref_expression] = STATE(3236), + [sym_reftype_expression] = STATE(3236), + [sym_refvalue_expression] = STATE(3236), + [sym_stackalloc_expression] = STATE(3236), + [sym_range_expression] = STATE(3236), + [sym_tuple_expression] = STATE(2602), + [sym_literal] = STATE(3236), + [sym_character_literal] = STATE(3272), + [sym_string_literal] = STATE(3272), + [sym_raw_string_literal] = STATE(3272), + [sym_boolean_literal] = STATE(3272), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3236), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(1540), [sym_preproc_endregion] = STATE(1540), [sym_preproc_line] = STATE(1540), @@ -302119,47 +302005,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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3382), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3379), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1627), - [anon_sym_LPAREN] = ACTIONS(1629), - [anon_sym_ref] = ACTIONS(1631), - [anon_sym_LBRACE] = ACTIONS(1633), - [anon_sym_delegate] = ACTIONS(1635), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1149), + [anon_sym_LPAREN] = ACTIONS(1151), + [anon_sym_ref] = ACTIONS(1153), + [anon_sym_LBRACE] = ACTIONS(1155), + [anon_sym_delegate] = ACTIONS(1157), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1637), + [anon_sym_new] = ACTIONS(1159), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1639), - [anon_sym_BANG] = ACTIONS(1643), - [anon_sym_TILDE] = ACTIONS(1643), - [anon_sym_PLUS_PLUS] = ACTIONS(1643), - [anon_sym_DASH_DASH] = ACTIONS(1643), - [anon_sym_true] = ACTIONS(1645), - [anon_sym_false] = ACTIONS(1645), - [anon_sym_PLUS] = ACTIONS(1641), - [anon_sym_DASH] = ACTIONS(1641), - [anon_sym_STAR] = ACTIONS(1647), - [anon_sym_CARET] = ACTIONS(1643), - [anon_sym_AMP] = ACTIONS(1643), - [anon_sym_this] = ACTIONS(1649), + [anon_sym_checked] = ACTIONS(1163), + [anon_sym_BANG] = ACTIONS(1167), + [anon_sym_TILDE] = ACTIONS(1167), + [anon_sym_PLUS_PLUS] = ACTIONS(1167), + [anon_sym_DASH_DASH] = ACTIONS(1167), + [anon_sym_true] = ACTIONS(1169), + [anon_sym_false] = ACTIONS(1169), + [anon_sym_PLUS] = ACTIONS(1165), + [anon_sym_DASH] = ACTIONS(1165), + [anon_sym_STAR] = ACTIONS(1171), + [anon_sym_CARET] = ACTIONS(1167), + [anon_sym_AMP] = ACTIONS(1167), + [anon_sym_this] = ACTIONS(1173), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1651), + [anon_sym_base] = ACTIONS(1175), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1653), - [anon_sym_unchecked] = ACTIONS(1639), + [sym_predefined_type] = ACTIONS(1177), + [anon_sym_unchecked] = ACTIONS(1163), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1655), - [anon_sym_throw] = ACTIONS(1657), + [anon_sym_default] = ACTIONS(1179), + [anon_sym_throw] = ACTIONS(1181), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1659), - [anon_sym_DOT_DOT] = ACTIONS(1661), + [anon_sym_await] = ACTIONS(1183), + [anon_sym_DOT_DOT] = ACTIONS(1185), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -302172,19 +302058,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1663), - [anon_sym_sizeof] = ACTIONS(1665), - [anon_sym_typeof] = ACTIONS(1667), - [anon_sym___makeref] = ACTIONS(1669), - [anon_sym___reftype] = ACTIONS(1671), - [anon_sym___refvalue] = ACTIONS(1673), - [sym_null_literal] = ACTIONS(1675), - [anon_sym_SQUOTE] = ACTIONS(1677), - [sym_integer_literal] = ACTIONS(1675), - [sym_real_literal] = ACTIONS(1679), - [anon_sym_DQUOTE] = ACTIONS(1681), - [sym_verbatim_string_literal] = ACTIONS(1679), - [aux_sym_preproc_if_token1] = ACTIONS(1683), + [anon_sym_stackalloc] = ACTIONS(1187), + [anon_sym_sizeof] = ACTIONS(1189), + [anon_sym_typeof] = ACTIONS(1191), + [anon_sym___makeref] = ACTIONS(1193), + [anon_sym___reftype] = ACTIONS(1195), + [anon_sym___refvalue] = ACTIONS(1197), + [sym_null_literal] = ACTIONS(1199), + [anon_sym_SQUOTE] = ACTIONS(1201), + [sym_integer_literal] = ACTIONS(1199), + [sym_real_literal] = ACTIONS(1203), + [anon_sym_DQUOTE] = ACTIONS(1205), + [sym_verbatim_string_literal] = ACTIONS(1203), + [aux_sym_preproc_if_token1] = ACTIONS(1207), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -302195,90 +302081,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1685), - [sym_interpolation_verbatim_start] = ACTIONS(1687), - [sym_interpolation_raw_start] = ACTIONS(1689), - [sym_raw_string_start] = ACTIONS(1691), + [sym_interpolation_regular_start] = ACTIONS(1209), + [sym_interpolation_verbatim_start] = ACTIONS(1211), + [sym_interpolation_raw_start] = ACTIONS(1213), + [sym_raw_string_start] = ACTIONS(1215), }, [1541] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2914), - [sym__name] = STATE(5873), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2362), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(3692), - [sym_non_lvalue_expression] = STATE(3880), - [sym_lvalue_expression] = STATE(2949), - [sym__expression_statement_expression] = STATE(3873), - [sym_assignment_expression] = STATE(3881), - [sym_binary_expression] = STATE(3873), - [sym_postfix_unary_expression] = STATE(3881), - [sym_prefix_unary_expression] = STATE(3881), - [sym__pointer_indirection_expression] = STATE(2913), - [sym_query_expression] = STATE(3873), - [sym_from_clause] = STATE(6182), - [sym_conditional_expression] = STATE(3873), - [sym_conditional_access_expression] = STATE(3873), - [sym_as_expression] = STATE(3873), - [sym_is_expression] = STATE(3873), - [sym_is_pattern_expression] = STATE(3873), - [sym_cast_expression] = STATE(3873), - [sym_checked_expression] = STATE(3873), - [sym_invocation_expression] = STATE(3881), - [sym_switch_expression] = STATE(3873), - [sym_await_expression] = STATE(3881), - [sym_throw_expression] = STATE(3873), - [sym_element_access_expression] = STATE(2913), - [sym_interpolated_string_expression] = STATE(3873), - [sym_member_access_expression] = STATE(2913), - [sym_object_creation_expression] = STATE(3881), - [sym_parenthesized_expression] = STATE(3881), - [sym__parenthesized_lvalue_expression] = STATE(2913), - [sym_lambda_expression] = STATE(3873), - [sym__lambda_expression_init] = STATE(7721), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3873), - [sym_anonymous_method_expression] = STATE(3873), - [sym_anonymous_object_creation_expression] = STATE(3873), - [sym_implicit_array_creation_expression] = STATE(3873), - [sym_implicit_object_creation_expression] = STATE(3873), - [sym_implicit_stackalloc_expression] = STATE(3873), - [sym_initializer_expression] = STATE(3873), - [sym_default_expression] = STATE(3873), - [sym_with_expression] = STATE(3873), - [sym_sizeof_expression] = STATE(3873), - [sym_typeof_expression] = STATE(3873), - [sym_makeref_expression] = STATE(3873), - [sym_ref_expression] = STATE(3873), - [sym_reftype_expression] = STATE(3873), - [sym_refvalue_expression] = STATE(3873), - [sym_stackalloc_expression] = STATE(3873), - [sym_range_expression] = STATE(3873), - [sym_tuple_expression] = STATE(2913), - [sym_literal] = STATE(3873), - [sym_character_literal] = STATE(3877), - [sym_string_literal] = STATE(3877), - [sym_raw_string_literal] = STATE(3877), - [sym_boolean_literal] = STATE(3877), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3873), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2816), + [sym__name] = STATE(5860), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2321), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(3212), + [sym_non_lvalue_expression] = STATE(3495), + [sym_lvalue_expression] = STATE(3349), + [sym__expression_statement_expression] = STATE(3462), + [sym_assignment_expression] = STATE(3497), + [sym_binary_expression] = STATE(3462), + [sym_postfix_unary_expression] = STATE(3497), + [sym_prefix_unary_expression] = STATE(3497), + [sym__pointer_indirection_expression] = STATE(2815), + [sym_query_expression] = STATE(3462), + [sym_from_clause] = STATE(6152), + [sym_conditional_expression] = STATE(3462), + [sym_conditional_access_expression] = STATE(3462), + [sym_as_expression] = STATE(3462), + [sym_is_expression] = STATE(3462), + [sym_is_pattern_expression] = STATE(3462), + [sym_cast_expression] = STATE(3462), + [sym_checked_expression] = STATE(3462), + [sym_invocation_expression] = STATE(3497), + [sym_switch_expression] = STATE(3462), + [sym_await_expression] = STATE(3497), + [sym_throw_expression] = STATE(3462), + [sym_element_access_expression] = STATE(2815), + [sym_interpolated_string_expression] = STATE(3462), + [sym_member_access_expression] = STATE(2815), + [sym_object_creation_expression] = STATE(3497), + [sym_parenthesized_expression] = STATE(3497), + [sym__parenthesized_lvalue_expression] = STATE(2815), + [sym_lambda_expression] = STATE(3462), + [sym__lambda_expression_init] = STATE(7658), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3462), + [sym_anonymous_method_expression] = STATE(3462), + [sym_anonymous_object_creation_expression] = STATE(3462), + [sym_implicit_array_creation_expression] = STATE(3462), + [sym_implicit_object_creation_expression] = STATE(3462), + [sym_implicit_stackalloc_expression] = STATE(3462), + [sym_initializer_expression] = STATE(3462), + [sym_default_expression] = STATE(3462), + [sym_with_expression] = STATE(3462), + [sym_sizeof_expression] = STATE(3462), + [sym_typeof_expression] = STATE(3462), + [sym_makeref_expression] = STATE(3462), + [sym_ref_expression] = STATE(3462), + [sym_reftype_expression] = STATE(3462), + [sym_refvalue_expression] = STATE(3462), + [sym_stackalloc_expression] = STATE(3462), + [sym_range_expression] = STATE(3462), + [sym_tuple_expression] = STATE(2815), + [sym_literal] = STATE(3462), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3462), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(1541), [sym_preproc_endregion] = STATE(1541), [sym_preproc_line] = STATE(1541), @@ -302288,47 +302174,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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3382), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3367), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1627), - [anon_sym_LPAREN] = ACTIONS(1629), - [anon_sym_ref] = ACTIONS(1631), - [anon_sym_LBRACE] = ACTIONS(1633), - [anon_sym_delegate] = ACTIONS(1635), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1305), + [anon_sym_LPAREN] = ACTIONS(1639), + [anon_sym_ref] = ACTIONS(1641), + [anon_sym_LBRACE] = ACTIONS(1311), + [anon_sym_delegate] = ACTIONS(1313), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1637), + [anon_sym_new] = ACTIONS(1583), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1639), - [anon_sym_BANG] = ACTIONS(1643), - [anon_sym_TILDE] = ACTIONS(1643), - [anon_sym_PLUS_PLUS] = ACTIONS(1643), - [anon_sym_DASH_DASH] = ACTIONS(1643), - [anon_sym_true] = ACTIONS(1645), - [anon_sym_false] = ACTIONS(1645), - [anon_sym_PLUS] = ACTIONS(1641), - [anon_sym_DASH] = ACTIONS(1641), + [anon_sym_checked] = ACTIONS(1317), + [anon_sym_BANG] = ACTIONS(1645), + [anon_sym_TILDE] = ACTIONS(1645), + [anon_sym_PLUS_PLUS] = ACTIONS(1645), + [anon_sym_DASH_DASH] = ACTIONS(1645), + [anon_sym_true] = ACTIONS(77), + [anon_sym_false] = ACTIONS(77), + [anon_sym_PLUS] = ACTIONS(1643), + [anon_sym_DASH] = ACTIONS(1643), [anon_sym_STAR] = ACTIONS(1647), - [anon_sym_CARET] = ACTIONS(1643), - [anon_sym_AMP] = ACTIONS(1643), - [anon_sym_this] = ACTIONS(1649), + [anon_sym_CARET] = ACTIONS(1645), + [anon_sym_AMP] = ACTIONS(1645), + [anon_sym_this] = ACTIONS(1321), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1651), + [anon_sym_base] = ACTIONS(1323), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1653), - [anon_sym_unchecked] = ACTIONS(1639), + [sym_predefined_type] = ACTIONS(91), + [anon_sym_unchecked] = ACTIONS(1317), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1655), - [anon_sym_throw] = ACTIONS(1657), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(1649), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1659), - [anon_sym_DOT_DOT] = ACTIONS(1661), + [anon_sym_await] = ACTIONS(1651), + [anon_sym_DOT_DOT] = ACTIONS(1653), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -302341,19 +302227,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1663), - [anon_sym_sizeof] = ACTIONS(1665), - [anon_sym_typeof] = ACTIONS(1667), - [anon_sym___makeref] = ACTIONS(1669), - [anon_sym___reftype] = ACTIONS(1671), - [anon_sym___refvalue] = ACTIONS(1673), - [sym_null_literal] = ACTIONS(1675), - [anon_sym_SQUOTE] = ACTIONS(1677), - [sym_integer_literal] = ACTIONS(1675), - [sym_real_literal] = ACTIONS(1679), - [anon_sym_DQUOTE] = ACTIONS(1681), - [sym_verbatim_string_literal] = ACTIONS(1679), - [aux_sym_preproc_if_token1] = ACTIONS(1683), + [anon_sym_stackalloc] = ACTIONS(1331), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(1333), + [anon_sym___reftype] = ACTIONS(1335), + [anon_sym___refvalue] = ACTIONS(1337), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_literal] = ACTIONS(143), + [anon_sym_DQUOTE] = ACTIONS(145), + [sym_verbatim_string_literal] = ACTIONS(143), + [aux_sym_preproc_if_token1] = ACTIONS(1339), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -302364,90 +302250,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1685), - [sym_interpolation_verbatim_start] = ACTIONS(1687), - [sym_interpolation_raw_start] = ACTIONS(1689), - [sym_raw_string_start] = ACTIONS(1691), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [sym_interpolation_raw_start] = ACTIONS(155), + [sym_raw_string_start] = ACTIONS(157), }, [1542] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2914), - [sym__name] = STATE(5873), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2362), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(3654), - [sym_non_lvalue_expression] = STATE(3880), - [sym_lvalue_expression] = STATE(2949), - [sym__expression_statement_expression] = STATE(3873), - [sym_assignment_expression] = STATE(3881), - [sym_binary_expression] = STATE(3873), - [sym_postfix_unary_expression] = STATE(3881), - [sym_prefix_unary_expression] = STATE(3881), - [sym__pointer_indirection_expression] = STATE(2913), - [sym_query_expression] = STATE(3873), - [sym_from_clause] = STATE(6182), - [sym_conditional_expression] = STATE(3873), - [sym_conditional_access_expression] = STATE(3873), - [sym_as_expression] = STATE(3873), - [sym_is_expression] = STATE(3873), - [sym_is_pattern_expression] = STATE(3873), - [sym_cast_expression] = STATE(3873), - [sym_checked_expression] = STATE(3873), - [sym_invocation_expression] = STATE(3881), - [sym_switch_expression] = STATE(3873), - [sym_await_expression] = STATE(3881), - [sym_throw_expression] = STATE(3873), - [sym_element_access_expression] = STATE(2913), - [sym_interpolated_string_expression] = STATE(3873), - [sym_member_access_expression] = STATE(2913), - [sym_object_creation_expression] = STATE(3881), - [sym_parenthesized_expression] = STATE(3881), - [sym__parenthesized_lvalue_expression] = STATE(2913), - [sym_lambda_expression] = STATE(3873), - [sym__lambda_expression_init] = STATE(7721), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3873), - [sym_anonymous_method_expression] = STATE(3873), - [sym_anonymous_object_creation_expression] = STATE(3873), - [sym_implicit_array_creation_expression] = STATE(3873), - [sym_implicit_object_creation_expression] = STATE(3873), - [sym_implicit_stackalloc_expression] = STATE(3873), - [sym_initializer_expression] = STATE(3873), - [sym_default_expression] = STATE(3873), - [sym_with_expression] = STATE(3873), - [sym_sizeof_expression] = STATE(3873), - [sym_typeof_expression] = STATE(3873), - [sym_makeref_expression] = STATE(3873), - [sym_ref_expression] = STATE(3873), - [sym_reftype_expression] = STATE(3873), - [sym_refvalue_expression] = STATE(3873), - [sym_stackalloc_expression] = STATE(3873), - [sym_range_expression] = STATE(3873), - [sym_tuple_expression] = STATE(2913), - [sym_literal] = STATE(3873), - [sym_character_literal] = STATE(3877), - [sym_string_literal] = STATE(3877), - [sym_raw_string_literal] = STATE(3877), - [sym_boolean_literal] = STATE(3877), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3873), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2816), + [sym__name] = STATE(5879), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2238), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(5697), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(2830), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3102), + [sym_postfix_unary_expression] = STATE(3079), + [sym_prefix_unary_expression] = STATE(3079), + [sym__pointer_indirection_expression] = STATE(2815), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6134), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3102), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3079), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2815), + [sym_interpolated_string_expression] = STATE(3102), + [sym_member_access_expression] = STATE(2815), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3079), + [sym__parenthesized_lvalue_expression] = STATE(2815), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7425), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(3102), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3102), + [sym_typeof_expression] = STATE(3102), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2815), + [sym_literal] = STATE(3102), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(1542), [sym_preproc_endregion] = STATE(1542), [sym_preproc_line] = STATE(1542), @@ -302457,47 +302343,47 @@ 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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3382), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1627), - [anon_sym_LPAREN] = ACTIONS(1629), - [anon_sym_ref] = ACTIONS(1631), - [anon_sym_LBRACE] = ACTIONS(1633), - [anon_sym_delegate] = ACTIONS(1635), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1305), + [anon_sym_LPAREN] = ACTIONS(2945), + [anon_sym_ref] = ACTIONS(715), + [anon_sym_LBRACE] = ACTIONS(1481), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1637), + [anon_sym_new] = ACTIONS(1059), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1639), - [anon_sym_BANG] = ACTIONS(1643), - [anon_sym_TILDE] = ACTIONS(1643), - [anon_sym_PLUS_PLUS] = ACTIONS(1643), - [anon_sym_DASH_DASH] = ACTIONS(1643), - [anon_sym_true] = ACTIONS(1645), - [anon_sym_false] = ACTIONS(1645), - [anon_sym_PLUS] = ACTIONS(1641), - [anon_sym_DASH] = ACTIONS(1641), - [anon_sym_STAR] = ACTIONS(1647), - [anon_sym_CARET] = ACTIONS(1643), - [anon_sym_AMP] = ACTIONS(1643), - [anon_sym_this] = ACTIONS(1649), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(1525), + [anon_sym_TILDE] = ACTIONS(1525), + [anon_sym_PLUS_PLUS] = ACTIONS(1525), + [anon_sym_DASH_DASH] = ACTIONS(1525), + [anon_sym_true] = ACTIONS(77), + [anon_sym_false] = ACTIONS(77), + [anon_sym_PLUS] = ACTIONS(1523), + [anon_sym_DASH] = ACTIONS(1523), + [anon_sym_STAR] = ACTIONS(1361), + [anon_sym_CARET] = ACTIONS(1525), + [anon_sym_AMP] = ACTIONS(1525), + [anon_sym_this] = ACTIONS(1321), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1651), + [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1653), - [anon_sym_unchecked] = ACTIONS(1639), + [sym_predefined_type] = ACTIONS(91), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1655), - [anon_sym_throw] = ACTIONS(1657), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(1527), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1659), - [anon_sym_DOT_DOT] = ACTIONS(1661), + [anon_sym_await] = ACTIONS(1529), + [anon_sym_DOT_DOT] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -302510,19 +302396,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1663), - [anon_sym_sizeof] = ACTIONS(1665), - [anon_sym_typeof] = ACTIONS(1667), - [anon_sym___makeref] = ACTIONS(1669), - [anon_sym___reftype] = ACTIONS(1671), - [anon_sym___refvalue] = ACTIONS(1673), - [sym_null_literal] = ACTIONS(1675), - [anon_sym_SQUOTE] = ACTIONS(1677), - [sym_integer_literal] = ACTIONS(1675), - [sym_real_literal] = ACTIONS(1679), - [anon_sym_DQUOTE] = ACTIONS(1681), - [sym_verbatim_string_literal] = ACTIONS(1679), - [aux_sym_preproc_if_token1] = ACTIONS(1683), + [anon_sym_stackalloc] = ACTIONS(127), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_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), @@ -302533,90 +302419,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1685), - [sym_interpolation_verbatim_start] = ACTIONS(1687), - [sym_interpolation_raw_start] = ACTIONS(1689), - [sym_raw_string_start] = ACTIONS(1691), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [sym_interpolation_raw_start] = ACTIONS(155), + [sym_raw_string_start] = ACTIONS(157), }, [1543] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2914), - [sym__name] = STATE(5873), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2362), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(3597), - [sym_non_lvalue_expression] = STATE(3880), - [sym_lvalue_expression] = STATE(2949), - [sym__expression_statement_expression] = STATE(3873), - [sym_assignment_expression] = STATE(3881), - [sym_binary_expression] = STATE(3873), - [sym_postfix_unary_expression] = STATE(3881), - [sym_prefix_unary_expression] = STATE(3881), - [sym__pointer_indirection_expression] = STATE(2913), - [sym_query_expression] = STATE(3873), - [sym_from_clause] = STATE(6182), - [sym_conditional_expression] = STATE(3873), - [sym_conditional_access_expression] = STATE(3873), - [sym_as_expression] = STATE(3873), - [sym_is_expression] = STATE(3873), - [sym_is_pattern_expression] = STATE(3873), - [sym_cast_expression] = STATE(3873), - [sym_checked_expression] = STATE(3873), - [sym_invocation_expression] = STATE(3881), - [sym_switch_expression] = STATE(3873), - [sym_await_expression] = STATE(3881), - [sym_throw_expression] = STATE(3873), - [sym_element_access_expression] = STATE(2913), - [sym_interpolated_string_expression] = STATE(3873), - [sym_member_access_expression] = STATE(2913), - [sym_object_creation_expression] = STATE(3881), - [sym_parenthesized_expression] = STATE(3881), - [sym__parenthesized_lvalue_expression] = STATE(2913), - [sym_lambda_expression] = STATE(3873), - [sym__lambda_expression_init] = STATE(7721), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3873), - [sym_anonymous_method_expression] = STATE(3873), - [sym_anonymous_object_creation_expression] = STATE(3873), - [sym_implicit_array_creation_expression] = STATE(3873), - [sym_implicit_object_creation_expression] = STATE(3873), - [sym_implicit_stackalloc_expression] = STATE(3873), - [sym_initializer_expression] = STATE(3873), - [sym_default_expression] = STATE(3873), - [sym_with_expression] = STATE(3873), - [sym_sizeof_expression] = STATE(3873), - [sym_typeof_expression] = STATE(3873), - [sym_makeref_expression] = STATE(3873), - [sym_ref_expression] = STATE(3873), - [sym_reftype_expression] = STATE(3873), - [sym_refvalue_expression] = STATE(3873), - [sym_stackalloc_expression] = STATE(3873), - [sym_range_expression] = STATE(3873), - [sym_tuple_expression] = STATE(2913), - [sym_literal] = STATE(3873), - [sym_character_literal] = STATE(3877), - [sym_string_literal] = STATE(3877), - [sym_raw_string_literal] = STATE(3877), - [sym_boolean_literal] = STATE(3877), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3873), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2416), + [sym__name] = STATE(5890), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2193), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(5151), + [sym_non_lvalue_expression] = STATE(3040), + [sym_lvalue_expression] = STATE(3549), + [sym__expression_statement_expression] = STATE(3035), + [sym_assignment_expression] = STATE(3043), + [sym_binary_expression] = STATE(3035), + [sym_postfix_unary_expression] = STATE(3043), + [sym_prefix_unary_expression] = STATE(3043), + [sym__pointer_indirection_expression] = STATE(2415), + [sym_query_expression] = STATE(3035), + [sym_from_clause] = STATE(6131), + [sym_conditional_expression] = STATE(3035), + [sym_conditional_access_expression] = STATE(3035), + [sym_as_expression] = STATE(3035), + [sym_is_expression] = STATE(3035), + [sym_is_pattern_expression] = STATE(3035), + [sym_cast_expression] = STATE(3035), + [sym_checked_expression] = STATE(3035), + [sym_invocation_expression] = STATE(3043), + [sym_switch_expression] = STATE(3035), + [sym_await_expression] = STATE(3043), + [sym_throw_expression] = STATE(3035), + [sym_element_access_expression] = STATE(2415), + [sym_interpolated_string_expression] = STATE(3035), + [sym_member_access_expression] = STATE(2415), + [sym_object_creation_expression] = STATE(3043), + [sym_parenthesized_expression] = STATE(3043), + [sym__parenthesized_lvalue_expression] = STATE(2415), + [sym_lambda_expression] = STATE(3035), + [sym__lambda_expression_init] = STATE(7412), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3035), + [sym_anonymous_method_expression] = STATE(3035), + [sym_anonymous_object_creation_expression] = STATE(3035), + [sym_implicit_array_creation_expression] = STATE(3035), + [sym_implicit_object_creation_expression] = STATE(3035), + [sym_implicit_stackalloc_expression] = STATE(3035), + [sym_initializer_expression] = STATE(3035), + [sym_default_expression] = STATE(3035), + [sym_with_expression] = STATE(3035), + [sym_sizeof_expression] = STATE(3035), + [sym_typeof_expression] = STATE(3035), + [sym_makeref_expression] = STATE(3035), + [sym_ref_expression] = STATE(3035), + [sym_reftype_expression] = STATE(3035), + [sym_refvalue_expression] = STATE(3035), + [sym_stackalloc_expression] = STATE(3035), + [sym_range_expression] = STATE(3035), + [sym_tuple_expression] = STATE(2415), + [sym_literal] = STATE(3035), + [sym_character_literal] = STATE(3037), + [sym_string_literal] = STATE(3037), + [sym_raw_string_literal] = STATE(3037), + [sym_boolean_literal] = STATE(3037), + [sym_identifier] = STATE(2261), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3035), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(1543), [sym_preproc_endregion] = STATE(1543), [sym_preproc_line] = STATE(1543), @@ -302626,47 +302512,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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3382), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3455), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1627), - [anon_sym_LPAREN] = ACTIONS(1629), - [anon_sym_ref] = ACTIONS(1631), - [anon_sym_LBRACE] = ACTIONS(1633), - [anon_sym_delegate] = ACTIONS(1635), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1239), + [anon_sym_LPAREN] = ACTIONS(1949), + [anon_sym_ref] = ACTIONS(1951), + [anon_sym_LBRACE] = ACTIONS(1245), + [anon_sym_delegate] = ACTIONS(1247), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1637), + [anon_sym_new] = ACTIONS(1249), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1639), - [anon_sym_BANG] = ACTIONS(1643), - [anon_sym_TILDE] = ACTIONS(1643), - [anon_sym_PLUS_PLUS] = ACTIONS(1643), - [anon_sym_DASH_DASH] = ACTIONS(1643), - [anon_sym_true] = ACTIONS(1645), - [anon_sym_false] = ACTIONS(1645), - [anon_sym_PLUS] = ACTIONS(1641), - [anon_sym_DASH] = ACTIONS(1641), - [anon_sym_STAR] = ACTIONS(1647), - [anon_sym_CARET] = ACTIONS(1643), - [anon_sym_AMP] = ACTIONS(1643), - [anon_sym_this] = ACTIONS(1649), + [anon_sym_checked] = ACTIONS(1251), + [anon_sym_BANG] = ACTIONS(1955), + [anon_sym_TILDE] = ACTIONS(1955), + [anon_sym_PLUS_PLUS] = ACTIONS(1955), + [anon_sym_DASH_DASH] = ACTIONS(1955), + [anon_sym_true] = ACTIONS(1257), + [anon_sym_false] = ACTIONS(1257), + [anon_sym_PLUS] = ACTIONS(1953), + [anon_sym_DASH] = ACTIONS(1953), + [anon_sym_STAR] = ACTIONS(1957), + [anon_sym_CARET] = ACTIONS(1955), + [anon_sym_AMP] = ACTIONS(1955), + [anon_sym_this] = ACTIONS(1261), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1651), + [anon_sym_base] = ACTIONS(1263), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1653), - [anon_sym_unchecked] = ACTIONS(1639), + [sym_predefined_type] = ACTIONS(1265), + [anon_sym_unchecked] = ACTIONS(1251), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1655), - [anon_sym_throw] = ACTIONS(1657), + [anon_sym_default] = ACTIONS(1267), + [anon_sym_throw] = ACTIONS(1959), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1659), - [anon_sym_DOT_DOT] = ACTIONS(1661), + [anon_sym_await] = ACTIONS(1961), + [anon_sym_DOT_DOT] = ACTIONS(1963), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -302679,19 +302565,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1663), - [anon_sym_sizeof] = ACTIONS(1665), - [anon_sym_typeof] = ACTIONS(1667), - [anon_sym___makeref] = ACTIONS(1669), - [anon_sym___reftype] = ACTIONS(1671), - [anon_sym___refvalue] = ACTIONS(1673), - [sym_null_literal] = ACTIONS(1675), - [anon_sym_SQUOTE] = ACTIONS(1677), - [sym_integer_literal] = ACTIONS(1675), - [sym_real_literal] = ACTIONS(1679), - [anon_sym_DQUOTE] = ACTIONS(1681), - [sym_verbatim_string_literal] = ACTIONS(1679), - [aux_sym_preproc_if_token1] = ACTIONS(1683), + [anon_sym_stackalloc] = ACTIONS(1275), + [anon_sym_sizeof] = ACTIONS(1277), + [anon_sym_typeof] = ACTIONS(1279), + [anon_sym___makeref] = ACTIONS(1281), + [anon_sym___reftype] = ACTIONS(1283), + [anon_sym___refvalue] = ACTIONS(1285), + [sym_null_literal] = ACTIONS(1287), + [anon_sym_SQUOTE] = ACTIONS(1289), + [sym_integer_literal] = ACTIONS(1287), + [sym_real_literal] = ACTIONS(1291), + [anon_sym_DQUOTE] = ACTIONS(1293), + [sym_verbatim_string_literal] = ACTIONS(1291), + [aux_sym_preproc_if_token1] = ACTIONS(1295), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -302702,90 +302588,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1685), - [sym_interpolation_verbatim_start] = ACTIONS(1687), - [sym_interpolation_raw_start] = ACTIONS(1689), - [sym_raw_string_start] = ACTIONS(1691), + [sym_interpolation_regular_start] = ACTIONS(1297), + [sym_interpolation_verbatim_start] = ACTIONS(1299), + [sym_interpolation_raw_start] = ACTIONS(1301), + [sym_raw_string_start] = ACTIONS(1303), }, [1544] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(3184), - [sym__name] = STATE(5883), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2313), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2269), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(4421), - [sym_non_lvalue_expression] = STATE(4541), - [sym_lvalue_expression] = STATE(3314), - [sym__expression_statement_expression] = STATE(4529), - [sym_assignment_expression] = STATE(4543), - [sym_binary_expression] = STATE(4529), - [sym_postfix_unary_expression] = STATE(4543), - [sym_prefix_unary_expression] = STATE(4543), - [sym__pointer_indirection_expression] = STATE(3175), - [sym_query_expression] = STATE(4529), - [sym_from_clause] = STATE(6156), - [sym_conditional_expression] = STATE(4529), - [sym_conditional_access_expression] = STATE(4529), - [sym_as_expression] = STATE(4529), - [sym_is_expression] = STATE(4529), - [sym_is_pattern_expression] = STATE(4529), - [sym_cast_expression] = STATE(4529), - [sym_checked_expression] = STATE(4529), - [sym_invocation_expression] = STATE(4543), - [sym_switch_expression] = STATE(4529), - [sym_await_expression] = STATE(4543), - [sym_throw_expression] = STATE(4529), - [sym_element_access_expression] = STATE(3175), - [sym_interpolated_string_expression] = STATE(4529), - [sym_member_access_expression] = STATE(3175), - [sym_object_creation_expression] = STATE(4543), - [sym_parenthesized_expression] = STATE(4543), - [sym__parenthesized_lvalue_expression] = STATE(3175), - [sym_lambda_expression] = STATE(4529), - [sym__lambda_expression_init] = STATE(7552), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(4529), - [sym_anonymous_method_expression] = STATE(4529), - [sym_anonymous_object_creation_expression] = STATE(4529), - [sym_implicit_array_creation_expression] = STATE(4529), - [sym_implicit_object_creation_expression] = STATE(4529), - [sym_implicit_stackalloc_expression] = STATE(4529), - [sym_initializer_expression] = STATE(4529), - [sym_default_expression] = STATE(4529), - [sym_with_expression] = STATE(4529), - [sym_sizeof_expression] = STATE(4529), - [sym_typeof_expression] = STATE(4529), - [sym_makeref_expression] = STATE(4529), - [sym_ref_expression] = STATE(4529), - [sym_reftype_expression] = STATE(4529), - [sym_refvalue_expression] = STATE(4529), - [sym_stackalloc_expression] = STATE(4529), - [sym_range_expression] = STATE(4529), - [sym_tuple_expression] = STATE(3175), - [sym_literal] = STATE(4529), - [sym_character_literal] = STATE(4536), - [sym_string_literal] = STATE(4536), - [sym_raw_string_literal] = STATE(4536), - [sym_boolean_literal] = STATE(4536), - [sym_identifier] = STATE(2246), - [sym__reserved_identifier] = STATE(2240), - [sym_preproc_if_in_expression] = STATE(4529), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2416), + [sym__name] = STATE(5890), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2193), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(5161), + [sym_non_lvalue_expression] = STATE(3040), + [sym_lvalue_expression] = STATE(3549), + [sym__expression_statement_expression] = STATE(3035), + [sym_assignment_expression] = STATE(3043), + [sym_binary_expression] = STATE(3035), + [sym_postfix_unary_expression] = STATE(3043), + [sym_prefix_unary_expression] = STATE(3043), + [sym__pointer_indirection_expression] = STATE(2415), + [sym_query_expression] = STATE(3035), + [sym_from_clause] = STATE(6131), + [sym_conditional_expression] = STATE(3035), + [sym_conditional_access_expression] = STATE(3035), + [sym_as_expression] = STATE(3035), + [sym_is_expression] = STATE(3035), + [sym_is_pattern_expression] = STATE(3035), + [sym_cast_expression] = STATE(3035), + [sym_checked_expression] = STATE(3035), + [sym_invocation_expression] = STATE(3043), + [sym_switch_expression] = STATE(3035), + [sym_await_expression] = STATE(3043), + [sym_throw_expression] = STATE(3035), + [sym_element_access_expression] = STATE(2415), + [sym_interpolated_string_expression] = STATE(3035), + [sym_member_access_expression] = STATE(2415), + [sym_object_creation_expression] = STATE(3043), + [sym_parenthesized_expression] = STATE(3043), + [sym__parenthesized_lvalue_expression] = STATE(2415), + [sym_lambda_expression] = STATE(3035), + [sym__lambda_expression_init] = STATE(7412), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3035), + [sym_anonymous_method_expression] = STATE(3035), + [sym_anonymous_object_creation_expression] = STATE(3035), + [sym_implicit_array_creation_expression] = STATE(3035), + [sym_implicit_object_creation_expression] = STATE(3035), + [sym_implicit_stackalloc_expression] = STATE(3035), + [sym_initializer_expression] = STATE(3035), + [sym_default_expression] = STATE(3035), + [sym_with_expression] = STATE(3035), + [sym_sizeof_expression] = STATE(3035), + [sym_typeof_expression] = STATE(3035), + [sym_makeref_expression] = STATE(3035), + [sym_ref_expression] = STATE(3035), + [sym_reftype_expression] = STATE(3035), + [sym_refvalue_expression] = STATE(3035), + [sym_stackalloc_expression] = STATE(3035), + [sym_range_expression] = STATE(3035), + [sym_tuple_expression] = STATE(2415), + [sym_literal] = STATE(3035), + [sym_character_literal] = STATE(3037), + [sym_string_literal] = STATE(3037), + [sym_raw_string_literal] = STATE(3037), + [sym_boolean_literal] = STATE(3037), + [sym_identifier] = STATE(2261), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3035), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(1544), [sym_preproc_endregion] = STATE(1544), [sym_preproc_line] = STATE(1544), @@ -302795,166 +302681,166 @@ 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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3363), - [sym__identifier_token] = ACTIONS(1387), - [anon_sym_alias] = ACTIONS(1389), - [anon_sym_global] = ACTIONS(1389), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1391), - [anon_sym_LPAREN] = ACTIONS(1463), - [anon_sym_ref] = ACTIONS(1465), - [anon_sym_LBRACE] = ACTIONS(1397), - [anon_sym_delegate] = ACTIONS(1399), - [anon_sym_async] = ACTIONS(1047), - [anon_sym_file] = ACTIONS(1389), - [anon_sym_new] = ACTIONS(1467), - [anon_sym_where] = ACTIONS(1389), - [anon_sym_notnull] = ACTIONS(1389), - [anon_sym_unmanaged] = ACTIONS(1389), - [anon_sym_checked] = ACTIONS(1403), - [anon_sym_BANG] = ACTIONS(1471), - [anon_sym_TILDE] = ACTIONS(1471), - [anon_sym_PLUS_PLUS] = ACTIONS(1471), - [anon_sym_DASH_DASH] = ACTIONS(1471), - [anon_sym_true] = ACTIONS(1409), - [anon_sym_false] = ACTIONS(1409), - [anon_sym_PLUS] = ACTIONS(1469), - [anon_sym_DASH] = ACTIONS(1469), - [anon_sym_STAR] = ACTIONS(1473), - [anon_sym_CARET] = ACTIONS(1471), - [anon_sym_AMP] = ACTIONS(1471), - [anon_sym_this] = ACTIONS(1413), - [anon_sym_scoped] = ACTIONS(1415), - [anon_sym_base] = ACTIONS(1417), - [anon_sym_var] = ACTIONS(1419), - [sym_predefined_type] = ACTIONS(1421), - [anon_sym_unchecked] = ACTIONS(1403), - [anon_sym_yield] = ACTIONS(1389), - [anon_sym_default] = ACTIONS(1423), - [anon_sym_throw] = ACTIONS(1475), - [anon_sym_when] = ACTIONS(1389), - [anon_sym_await] = ACTIONS(1477), - [anon_sym_DOT_DOT] = ACTIONS(1479), - [anon_sym_from] = ACTIONS(1431), - [anon_sym_into] = ACTIONS(1389), - [anon_sym_join] = ACTIONS(1389), - [anon_sym_on] = ACTIONS(1389), - [anon_sym_equals] = ACTIONS(1389), - [anon_sym_let] = ACTIONS(1389), - [anon_sym_orderby] = ACTIONS(1389), - [anon_sym_ascending] = ACTIONS(1389), - [anon_sym_descending] = ACTIONS(1389), - [anon_sym_group] = ACTIONS(1389), - [anon_sym_by] = ACTIONS(1389), - [anon_sym_select] = ACTIONS(1389), - [anon_sym_stackalloc] = ACTIONS(1433), - [anon_sym_sizeof] = ACTIONS(1435), - [anon_sym_typeof] = ACTIONS(1437), - [anon_sym___makeref] = ACTIONS(1439), - [anon_sym___reftype] = ACTIONS(1441), - [anon_sym___refvalue] = ACTIONS(1443), - [sym_null_literal] = ACTIONS(1445), - [anon_sym_SQUOTE] = ACTIONS(1447), - [sym_integer_literal] = ACTIONS(1445), - [sym_real_literal] = ACTIONS(1449), - [anon_sym_DQUOTE] = ACTIONS(1451), - [sym_verbatim_string_literal] = ACTIONS(1449), - [aux_sym_preproc_if_token1] = ACTIONS(1453), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1455), - [sym_interpolation_verbatim_start] = ACTIONS(1457), - [sym_interpolation_raw_start] = ACTIONS(1459), - [sym_raw_string_start] = ACTIONS(1461), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3455), + [sym__identifier_token] = ACTIONS(25), + [anon_sym_alias] = ACTIONS(29), + [anon_sym_global] = ACTIONS(29), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1239), + [anon_sym_LPAREN] = ACTIONS(1949), + [anon_sym_ref] = ACTIONS(1951), + [anon_sym_LBRACE] = ACTIONS(1245), + [anon_sym_delegate] = ACTIONS(1247), + [anon_sym_async] = ACTIONS(1045), + [anon_sym_file] = ACTIONS(29), + [anon_sym_new] = ACTIONS(1249), + [anon_sym_where] = ACTIONS(29), + [anon_sym_notnull] = ACTIONS(29), + [anon_sym_unmanaged] = ACTIONS(29), + [anon_sym_checked] = ACTIONS(1251), + [anon_sym_BANG] = ACTIONS(1955), + [anon_sym_TILDE] = ACTIONS(1955), + [anon_sym_PLUS_PLUS] = ACTIONS(1955), + [anon_sym_DASH_DASH] = ACTIONS(1955), + [anon_sym_true] = ACTIONS(1257), + [anon_sym_false] = ACTIONS(1257), + [anon_sym_PLUS] = ACTIONS(1953), + [anon_sym_DASH] = ACTIONS(1953), + [anon_sym_STAR] = ACTIONS(1957), + [anon_sym_CARET] = ACTIONS(1955), + [anon_sym_AMP] = ACTIONS(1955), + [anon_sym_this] = ACTIONS(1261), + [anon_sym_scoped] = ACTIONS(85), + [anon_sym_base] = ACTIONS(1263), + [anon_sym_var] = ACTIONS(89), + [sym_predefined_type] = ACTIONS(1265), + [anon_sym_unchecked] = ACTIONS(1251), + [anon_sym_yield] = ACTIONS(29), + [anon_sym_default] = ACTIONS(1267), + [anon_sym_throw] = ACTIONS(1959), + [anon_sym_when] = ACTIONS(29), + [anon_sym_await] = ACTIONS(1961), + [anon_sym_DOT_DOT] = ACTIONS(1963), + [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(1275), + [anon_sym_sizeof] = ACTIONS(1277), + [anon_sym_typeof] = ACTIONS(1279), + [anon_sym___makeref] = ACTIONS(1281), + [anon_sym___reftype] = ACTIONS(1283), + [anon_sym___refvalue] = ACTIONS(1285), + [sym_null_literal] = ACTIONS(1287), + [anon_sym_SQUOTE] = ACTIONS(1289), + [sym_integer_literal] = ACTIONS(1287), + [sym_real_literal] = ACTIONS(1291), + [anon_sym_DQUOTE] = ACTIONS(1293), + [sym_verbatim_string_literal] = ACTIONS(1291), + [aux_sym_preproc_if_token1] = ACTIONS(1295), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + [sym_interpolation_regular_start] = ACTIONS(1297), + [sym_interpolation_verbatim_start] = ACTIONS(1299), + [sym_interpolation_raw_start] = ACTIONS(1301), + [sym_raw_string_start] = ACTIONS(1303), }, [1545] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(3184), - [sym__name] = STATE(5883), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2313), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2269), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(4265), - [sym_non_lvalue_expression] = STATE(4541), - [sym_lvalue_expression] = STATE(3314), - [sym__expression_statement_expression] = STATE(4529), - [sym_assignment_expression] = STATE(4543), - [sym_binary_expression] = STATE(4529), - [sym_postfix_unary_expression] = STATE(4543), - [sym_prefix_unary_expression] = STATE(4543), - [sym__pointer_indirection_expression] = STATE(3175), - [sym_query_expression] = STATE(4529), - [sym_from_clause] = STATE(6156), - [sym_conditional_expression] = STATE(4529), - [sym_conditional_access_expression] = STATE(4529), - [sym_as_expression] = STATE(4529), - [sym_is_expression] = STATE(4529), - [sym_is_pattern_expression] = STATE(4529), - [sym_cast_expression] = STATE(4529), - [sym_checked_expression] = STATE(4529), - [sym_invocation_expression] = STATE(4543), - [sym_switch_expression] = STATE(4529), - [sym_await_expression] = STATE(4543), - [sym_throw_expression] = STATE(4529), - [sym_element_access_expression] = STATE(3175), - [sym_interpolated_string_expression] = STATE(4529), - [sym_member_access_expression] = STATE(3175), - [sym_object_creation_expression] = STATE(4543), - [sym_parenthesized_expression] = STATE(4543), - [sym__parenthesized_lvalue_expression] = STATE(3175), - [sym_lambda_expression] = STATE(4529), - [sym__lambda_expression_init] = STATE(7552), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(4529), - [sym_anonymous_method_expression] = STATE(4529), - [sym_anonymous_object_creation_expression] = STATE(4529), - [sym_implicit_array_creation_expression] = STATE(4529), - [sym_implicit_object_creation_expression] = STATE(4529), - [sym_implicit_stackalloc_expression] = STATE(4529), - [sym_initializer_expression] = STATE(4529), - [sym_default_expression] = STATE(4529), - [sym_with_expression] = STATE(4529), - [sym_sizeof_expression] = STATE(4529), - [sym_typeof_expression] = STATE(4529), - [sym_makeref_expression] = STATE(4529), - [sym_ref_expression] = STATE(4529), - [sym_reftype_expression] = STATE(4529), - [sym_refvalue_expression] = STATE(4529), - [sym_stackalloc_expression] = STATE(4529), - [sym_range_expression] = STATE(4529), - [sym_tuple_expression] = STATE(3175), - [sym_literal] = STATE(4529), - [sym_character_literal] = STATE(4536), - [sym_string_literal] = STATE(4536), - [sym_raw_string_literal] = STATE(4536), - [sym_boolean_literal] = STATE(4536), - [sym_identifier] = STATE(2246), - [sym__reserved_identifier] = STATE(2240), - [sym_preproc_if_in_expression] = STATE(4529), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2816), + [sym__name] = STATE(5879), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2196), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(3212), + [sym_non_lvalue_expression] = STATE(3495), + [sym_lvalue_expression] = STATE(3539), + [sym__expression_statement_expression] = STATE(3462), + [sym_assignment_expression] = STATE(3497), + [sym_binary_expression] = STATE(3462), + [sym_postfix_unary_expression] = STATE(3497), + [sym_prefix_unary_expression] = STATE(3497), + [sym__pointer_indirection_expression] = STATE(2815), + [sym_query_expression] = STATE(3462), + [sym_from_clause] = STATE(6144), + [sym_conditional_expression] = STATE(3462), + [sym_conditional_access_expression] = STATE(3462), + [sym_as_expression] = STATE(3462), + [sym_is_expression] = STATE(3462), + [sym_is_pattern_expression] = STATE(3462), + [sym_cast_expression] = STATE(3462), + [sym_checked_expression] = STATE(3462), + [sym_invocation_expression] = STATE(3497), + [sym_switch_expression] = STATE(3462), + [sym_await_expression] = STATE(3497), + [sym_throw_expression] = STATE(3462), + [sym_element_access_expression] = STATE(2815), + [sym_interpolated_string_expression] = STATE(3462), + [sym_member_access_expression] = STATE(2815), + [sym_object_creation_expression] = STATE(3497), + [sym_parenthesized_expression] = STATE(3497), + [sym__parenthesized_lvalue_expression] = STATE(2815), + [sym_lambda_expression] = STATE(3462), + [sym__lambda_expression_init] = STATE(7681), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3462), + [sym_anonymous_method_expression] = STATE(3462), + [sym_anonymous_object_creation_expression] = STATE(3462), + [sym_implicit_array_creation_expression] = STATE(3462), + [sym_implicit_object_creation_expression] = STATE(3462), + [sym_implicit_stackalloc_expression] = STATE(3462), + [sym_initializer_expression] = STATE(3462), + [sym_default_expression] = STATE(3462), + [sym_with_expression] = STATE(3462), + [sym_sizeof_expression] = STATE(3462), + [sym_typeof_expression] = STATE(3462), + [sym_makeref_expression] = STATE(3462), + [sym_ref_expression] = STATE(3462), + [sym_reftype_expression] = STATE(3462), + [sym_refvalue_expression] = STATE(3462), + [sym_stackalloc_expression] = STATE(3462), + [sym_range_expression] = STATE(3462), + [sym_tuple_expression] = STATE(2815), + [sym_literal] = STATE(3462), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3462), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(1545), [sym_preproc_endregion] = STATE(1545), [sym_preproc_line] = STATE(1545), @@ -302964,166 +302850,166 @@ 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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3363), - [sym__identifier_token] = ACTIONS(1387), - [anon_sym_alias] = ACTIONS(1389), - [anon_sym_global] = ACTIONS(1389), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1391), - [anon_sym_LPAREN] = ACTIONS(1463), - [anon_sym_ref] = ACTIONS(1465), - [anon_sym_LBRACE] = ACTIONS(1397), - [anon_sym_delegate] = ACTIONS(1399), - [anon_sym_async] = ACTIONS(1047), - [anon_sym_file] = ACTIONS(1389), - [anon_sym_new] = ACTIONS(1467), - [anon_sym_where] = ACTIONS(1389), - [anon_sym_notnull] = ACTIONS(1389), - [anon_sym_unmanaged] = ACTIONS(1389), - [anon_sym_checked] = ACTIONS(1403), - [anon_sym_BANG] = ACTIONS(1471), - [anon_sym_TILDE] = ACTIONS(1471), - [anon_sym_PLUS_PLUS] = ACTIONS(1471), - [anon_sym_DASH_DASH] = ACTIONS(1471), - [anon_sym_true] = ACTIONS(1409), - [anon_sym_false] = ACTIONS(1409), - [anon_sym_PLUS] = ACTIONS(1469), - [anon_sym_DASH] = ACTIONS(1469), - [anon_sym_STAR] = ACTIONS(1473), - [anon_sym_CARET] = ACTIONS(1471), - [anon_sym_AMP] = ACTIONS(1471), - [anon_sym_this] = ACTIONS(1413), - [anon_sym_scoped] = ACTIONS(1415), - [anon_sym_base] = ACTIONS(1417), - [anon_sym_var] = ACTIONS(1419), - [sym_predefined_type] = ACTIONS(1421), - [anon_sym_unchecked] = ACTIONS(1403), - [anon_sym_yield] = ACTIONS(1389), - [anon_sym_default] = ACTIONS(1423), - [anon_sym_throw] = ACTIONS(1475), - [anon_sym_when] = ACTIONS(1389), - [anon_sym_await] = ACTIONS(1477), - [anon_sym_DOT_DOT] = ACTIONS(1479), - [anon_sym_from] = ACTIONS(1431), - [anon_sym_into] = ACTIONS(1389), - [anon_sym_join] = ACTIONS(1389), - [anon_sym_on] = ACTIONS(1389), - [anon_sym_equals] = ACTIONS(1389), - [anon_sym_let] = ACTIONS(1389), - [anon_sym_orderby] = ACTIONS(1389), - [anon_sym_ascending] = ACTIONS(1389), - [anon_sym_descending] = ACTIONS(1389), - [anon_sym_group] = ACTIONS(1389), - [anon_sym_by] = ACTIONS(1389), - [anon_sym_select] = ACTIONS(1389), - [anon_sym_stackalloc] = ACTIONS(1433), - [anon_sym_sizeof] = ACTIONS(1435), - [anon_sym_typeof] = ACTIONS(1437), - [anon_sym___makeref] = ACTIONS(1439), - [anon_sym___reftype] = ACTIONS(1441), - [anon_sym___refvalue] = ACTIONS(1443), - [sym_null_literal] = ACTIONS(1445), - [anon_sym_SQUOTE] = ACTIONS(1447), - [sym_integer_literal] = ACTIONS(1445), - [sym_real_literal] = ACTIONS(1449), - [anon_sym_DQUOTE] = ACTIONS(1451), - [sym_verbatim_string_literal] = ACTIONS(1449), - [aux_sym_preproc_if_token1] = ACTIONS(1453), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1455), - [sym_interpolation_verbatim_start] = ACTIONS(1457), - [sym_interpolation_raw_start] = ACTIONS(1459), - [sym_raw_string_start] = ACTIONS(1461), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [sym__identifier_token] = ACTIONS(25), + [anon_sym_alias] = ACTIONS(29), + [anon_sym_global] = ACTIONS(29), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1305), + [anon_sym_LPAREN] = ACTIONS(1721), + [anon_sym_ref] = ACTIONS(1723), + [anon_sym_LBRACE] = ACTIONS(1311), + [anon_sym_delegate] = ACTIONS(1313), + [anon_sym_async] = ACTIONS(1045), + [anon_sym_file] = ACTIONS(29), + [anon_sym_new] = ACTIONS(1315), + [anon_sym_where] = ACTIONS(29), + [anon_sym_notnull] = ACTIONS(29), + [anon_sym_unmanaged] = ACTIONS(29), + [anon_sym_checked] = ACTIONS(1317), + [anon_sym_BANG] = ACTIONS(1727), + [anon_sym_TILDE] = ACTIONS(1727), + [anon_sym_PLUS_PLUS] = ACTIONS(1727), + [anon_sym_DASH_DASH] = ACTIONS(1727), + [anon_sym_true] = ACTIONS(77), + [anon_sym_false] = ACTIONS(77), + [anon_sym_PLUS] = ACTIONS(1725), + [anon_sym_DASH] = ACTIONS(1725), + [anon_sym_STAR] = ACTIONS(1729), + [anon_sym_CARET] = ACTIONS(1727), + [anon_sym_AMP] = ACTIONS(1727), + [anon_sym_this] = ACTIONS(1321), + [anon_sym_scoped] = ACTIONS(85), + [anon_sym_base] = ACTIONS(1323), + [anon_sym_var] = ACTIONS(89), + [sym_predefined_type] = ACTIONS(91), + [anon_sym_unchecked] = ACTIONS(1317), + [anon_sym_yield] = ACTIONS(29), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(1731), + [anon_sym_when] = ACTIONS(29), + [anon_sym_await] = ACTIONS(1733), + [anon_sym_DOT_DOT] = ACTIONS(1735), + [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(1331), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(1333), + [anon_sym___reftype] = ACTIONS(1335), + [anon_sym___refvalue] = ACTIONS(1337), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_literal] = ACTIONS(143), + [anon_sym_DQUOTE] = ACTIONS(145), + [sym_verbatim_string_literal] = ACTIONS(143), + [aux_sym_preproc_if_token1] = ACTIONS(1339), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(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), }, [1546] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(5160), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2204), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(4569), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3461), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3080), - [sym_postfix_unary_expression] = STATE(3111), - [sym_prefix_unary_expression] = STATE(3111), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6154), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3080), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3111), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3080), - [sym_member_access_expression] = STATE(2484), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3111), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7547), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(3080), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3080), - [sym_typeof_expression] = STATE(3080), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2484), - [sym_literal] = STATE(3080), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2416), + [sym__name] = STATE(5885), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2404), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(5662), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(2417), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3102), + [sym_postfix_unary_expression] = STATE(3079), + [sym_prefix_unary_expression] = STATE(3079), + [sym__pointer_indirection_expression] = STATE(2415), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6134), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3102), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3079), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2415), + [sym_interpolated_string_expression] = STATE(3102), + [sym_member_access_expression] = STATE(2415), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3079), + [sym__parenthesized_lvalue_expression] = STATE(2415), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7425), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(3102), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3102), + [sym_typeof_expression] = STATE(3102), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2415), + [sym_literal] = STATE(3102), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(1546), [sym_preproc_endregion] = STATE(1546), [sym_preproc_line] = STATE(1546), @@ -303133,47 +303019,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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1481), - [anon_sym_LPAREN] = ACTIONS(1497), - [anon_sym_ref] = ACTIONS(1499), - [anon_sym_LBRACE] = ACTIONS(1487), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1239), + [anon_sym_LPAREN] = ACTIONS(2943), + [anon_sym_ref] = ACTIONS(715), + [anon_sym_LBRACE] = ACTIONS(1481), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1501), + [anon_sym_new] = ACTIONS(1059), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = 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_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(1525), + [anon_sym_TILDE] = ACTIONS(1525), + [anon_sym_PLUS_PLUS] = ACTIONS(1525), + [anon_sym_DASH_DASH] = ACTIONS(1525), [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(1523), + [anon_sym_DASH] = ACTIONS(1523), + [anon_sym_STAR] = ACTIONS(1941), + [anon_sym_CARET] = ACTIONS(1525), + [anon_sym_AMP] = ACTIONS(1525), + [anon_sym_this] = ACTIONS(1261), [anon_sym_scoped] = ACTIONS(85), [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1067), + [sym_predefined_type] = ACTIONS(1265), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1503), + [anon_sym_throw] = ACTIONS(1527), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1505), - [anon_sym_DOT_DOT] = ACTIONS(1507), + [anon_sym_await] = ACTIONS(1529), + [anon_sym_DOT_DOT] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -303198,7 +303084,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(1089), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -303215,84 +303101,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [1547] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2762), - [sym__name] = STATE(5910), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2204), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(4278), - [sym_non_lvalue_expression] = STATE(3438), - [sym_lvalue_expression] = STATE(3162), - [sym__expression_statement_expression] = STATE(3362), - [sym_assignment_expression] = STATE(3449), - [sym_binary_expression] = STATE(3362), - [sym_postfix_unary_expression] = STATE(3449), - [sym_prefix_unary_expression] = STATE(3449), - [sym__pointer_indirection_expression] = STATE(2747), - [sym_query_expression] = STATE(3362), - [sym_from_clause] = STATE(6171), - [sym_conditional_expression] = STATE(3362), - [sym_conditional_access_expression] = STATE(3362), - [sym_as_expression] = STATE(3362), - [sym_is_expression] = STATE(3362), - [sym_is_pattern_expression] = STATE(3362), - [sym_cast_expression] = STATE(3362), - [sym_checked_expression] = STATE(3362), - [sym_invocation_expression] = STATE(3449), - [sym_switch_expression] = STATE(3362), - [sym_await_expression] = STATE(3449), - [sym_throw_expression] = STATE(3362), - [sym_element_access_expression] = STATE(2747), - [sym_interpolated_string_expression] = STATE(3362), - [sym_member_access_expression] = STATE(2747), - [sym_object_creation_expression] = STATE(3449), - [sym_parenthesized_expression] = STATE(3449), - [sym__parenthesized_lvalue_expression] = STATE(2747), - [sym_lambda_expression] = STATE(3362), - [sym__lambda_expression_init] = STATE(7320), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3362), - [sym_anonymous_method_expression] = STATE(3362), - [sym_anonymous_object_creation_expression] = STATE(3362), - [sym_implicit_array_creation_expression] = STATE(3362), - [sym_implicit_object_creation_expression] = STATE(3362), - [sym_implicit_stackalloc_expression] = STATE(3362), - [sym_initializer_expression] = STATE(3362), - [sym_default_expression] = STATE(3362), - [sym_with_expression] = STATE(3362), - [sym_sizeof_expression] = STATE(3362), - [sym_typeof_expression] = STATE(3362), - [sym_makeref_expression] = STATE(3362), - [sym_ref_expression] = STATE(3362), - [sym_reftype_expression] = STATE(3362), - [sym_refvalue_expression] = STATE(3362), - [sym_stackalloc_expression] = STATE(3362), - [sym_range_expression] = STATE(3362), - [sym_tuple_expression] = STATE(2747), - [sym_literal] = STATE(3362), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3362), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(5873), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2238), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(5194), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3526), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3102), + [sym_postfix_unary_expression] = STATE(3079), + [sym_prefix_unary_expression] = STATE(3079), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6134), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3102), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3079), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3102), + [sym_member_access_expression] = STATE(2472), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3079), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7455), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(3102), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3102), + [sym_typeof_expression] = STATE(3102), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2472), + [sym_literal] = STATE(3102), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(1547), [sym_preproc_endregion] = STATE(1547), [sym_preproc_line] = STATE(1547), @@ -303302,47 +303188,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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3385), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1307), - [anon_sym_LPAREN] = ACTIONS(1343), - [anon_sym_ref] = ACTIONS(1345), - [anon_sym_LBRACE] = ACTIONS(1313), - [anon_sym_delegate] = ACTIONS(1315), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1479), + [anon_sym_LPAREN] = ACTIONS(1629), + [anon_sym_ref] = ACTIONS(1631), + [anon_sym_LBRACE] = ACTIONS(1481), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1317), + [anon_sym_new] = ACTIONS(1515), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1319), - [anon_sym_BANG] = ACTIONS(1349), - [anon_sym_TILDE] = ACTIONS(1349), - [anon_sym_PLUS_PLUS] = ACTIONS(1349), - [anon_sym_DASH_DASH] = ACTIONS(1349), + [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(1347), - [anon_sym_DASH] = ACTIONS(1347), - [anon_sym_STAR] = ACTIONS(1351), - [anon_sym_CARET] = ACTIONS(1349), - [anon_sym_AMP] = ACTIONS(1349), - [anon_sym_this] = ACTIONS(1323), + [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_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1325), + [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1319), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1353), + [anon_sym_throw] = ACTIONS(1633), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1355), - [anon_sym_DOT_DOT] = ACTIONS(1357), + [anon_sym_await] = ACTIONS(1635), + [anon_sym_DOT_DOT] = ACTIONS(1637), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -303355,19 +303241,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1333), + [anon_sym_stackalloc] = ACTIONS(127), [anon_sym_sizeof] = ACTIONS(129), [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(1335), - [anon_sym___reftype] = ACTIONS(1337), - [anon_sym___refvalue] = ACTIONS(1339), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), [sym_null_literal] = ACTIONS(139), [anon_sym_SQUOTE] = ACTIONS(141), [sym_integer_literal] = ACTIONS(139), [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1341), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -303384,84 +303270,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [1548] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(3184), - [sym__name] = STATE(5883), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2313), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2269), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(4434), - [sym_non_lvalue_expression] = STATE(4541), - [sym_lvalue_expression] = STATE(3314), - [sym__expression_statement_expression] = STATE(4529), - [sym_assignment_expression] = STATE(4543), - [sym_binary_expression] = STATE(4529), - [sym_postfix_unary_expression] = STATE(4543), - [sym_prefix_unary_expression] = STATE(4543), - [sym__pointer_indirection_expression] = STATE(3175), - [sym_query_expression] = STATE(4529), - [sym_from_clause] = STATE(6156), - [sym_conditional_expression] = STATE(4529), - [sym_conditional_access_expression] = STATE(4529), - [sym_as_expression] = STATE(4529), - [sym_is_expression] = STATE(4529), - [sym_is_pattern_expression] = STATE(4529), - [sym_cast_expression] = STATE(4529), - [sym_checked_expression] = STATE(4529), - [sym_invocation_expression] = STATE(4543), - [sym_switch_expression] = STATE(4529), - [sym_await_expression] = STATE(4543), - [sym_throw_expression] = STATE(4529), - [sym_element_access_expression] = STATE(3175), - [sym_interpolated_string_expression] = STATE(4529), - [sym_member_access_expression] = STATE(3175), - [sym_object_creation_expression] = STATE(4543), - [sym_parenthesized_expression] = STATE(4543), - [sym__parenthesized_lvalue_expression] = STATE(3175), - [sym_lambda_expression] = STATE(4529), - [sym__lambda_expression_init] = STATE(7552), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(4529), - [sym_anonymous_method_expression] = STATE(4529), - [sym_anonymous_object_creation_expression] = STATE(4529), - [sym_implicit_array_creation_expression] = STATE(4529), - [sym_implicit_object_creation_expression] = STATE(4529), - [sym_implicit_stackalloc_expression] = STATE(4529), - [sym_initializer_expression] = STATE(4529), - [sym_default_expression] = STATE(4529), - [sym_with_expression] = STATE(4529), - [sym_sizeof_expression] = STATE(4529), - [sym_typeof_expression] = STATE(4529), - [sym_makeref_expression] = STATE(4529), - [sym_ref_expression] = STATE(4529), - [sym_reftype_expression] = STATE(4529), - [sym_refvalue_expression] = STATE(4529), - [sym_stackalloc_expression] = STATE(4529), - [sym_range_expression] = STATE(4529), - [sym_tuple_expression] = STATE(3175), - [sym_literal] = STATE(4529), - [sym_character_literal] = STATE(4536), - [sym_string_literal] = STATE(4536), - [sym_raw_string_literal] = STATE(4536), - [sym_boolean_literal] = STATE(4536), - [sym_identifier] = STATE(2246), - [sym__reserved_identifier] = STATE(2240), - [sym_preproc_if_in_expression] = STATE(4529), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2603), + [sym__name] = STATE(5869), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2367), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(4711), + [sym_non_lvalue_expression] = STATE(3220), + [sym_lvalue_expression] = STATE(3377), + [sym__expression_statement_expression] = STATE(3236), + [sym_assignment_expression] = STATE(3221), + [sym_binary_expression] = STATE(3236), + [sym_postfix_unary_expression] = STATE(3221), + [sym_prefix_unary_expression] = STATE(3221), + [sym__pointer_indirection_expression] = STATE(2602), + [sym_query_expression] = STATE(3236), + [sym_from_clause] = STATE(6128), + [sym_conditional_expression] = STATE(3236), + [sym_conditional_access_expression] = STATE(3236), + [sym_as_expression] = STATE(3236), + [sym_is_expression] = STATE(3236), + [sym_is_pattern_expression] = STATE(3236), + [sym_cast_expression] = STATE(3236), + [sym_checked_expression] = STATE(3236), + [sym_invocation_expression] = STATE(3221), + [sym_switch_expression] = STATE(3236), + [sym_await_expression] = STATE(3221), + [sym_throw_expression] = STATE(3236), + [sym_element_access_expression] = STATE(2602), + [sym_interpolated_string_expression] = STATE(3236), + [sym_member_access_expression] = STATE(2602), + [sym_object_creation_expression] = STATE(3221), + [sym_parenthesized_expression] = STATE(3221), + [sym__parenthesized_lvalue_expression] = STATE(2602), + [sym_lambda_expression] = STATE(3236), + [sym__lambda_expression_init] = STATE(7632), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3236), + [sym_anonymous_method_expression] = STATE(3236), + [sym_anonymous_object_creation_expression] = STATE(3236), + [sym_implicit_array_creation_expression] = STATE(3236), + [sym_implicit_object_creation_expression] = STATE(3236), + [sym_implicit_stackalloc_expression] = STATE(3236), + [sym_initializer_expression] = STATE(3236), + [sym_default_expression] = STATE(3236), + [sym_with_expression] = STATE(3236), + [sym_sizeof_expression] = STATE(3236), + [sym_typeof_expression] = STATE(3236), + [sym_makeref_expression] = STATE(3236), + [sym_ref_expression] = STATE(3236), + [sym_reftype_expression] = STATE(3236), + [sym_refvalue_expression] = STATE(3236), + [sym_stackalloc_expression] = STATE(3236), + [sym_range_expression] = STATE(3236), + [sym_tuple_expression] = STATE(2602), + [sym_literal] = STATE(3236), + [sym_character_literal] = STATE(3272), + [sym_string_literal] = STATE(3272), + [sym_raw_string_literal] = STATE(3272), + [sym_boolean_literal] = STATE(3272), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3236), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(1548), [sym_preproc_endregion] = STATE(1548), [sym_preproc_line] = STATE(1548), @@ -303471,166 +303357,166 @@ 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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3363), - [sym__identifier_token] = ACTIONS(1387), - [anon_sym_alias] = ACTIONS(1389), - [anon_sym_global] = ACTIONS(1389), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1391), - [anon_sym_LPAREN] = ACTIONS(1463), - [anon_sym_ref] = ACTIONS(1465), - [anon_sym_LBRACE] = ACTIONS(1397), - [anon_sym_delegate] = ACTIONS(1399), - [anon_sym_async] = ACTIONS(1047), - [anon_sym_file] = ACTIONS(1389), - [anon_sym_new] = ACTIONS(1467), - [anon_sym_where] = ACTIONS(1389), - [anon_sym_notnull] = ACTIONS(1389), - [anon_sym_unmanaged] = ACTIONS(1389), - [anon_sym_checked] = ACTIONS(1403), - [anon_sym_BANG] = ACTIONS(1471), - [anon_sym_TILDE] = ACTIONS(1471), - [anon_sym_PLUS_PLUS] = ACTIONS(1471), - [anon_sym_DASH_DASH] = ACTIONS(1471), - [anon_sym_true] = ACTIONS(1409), - [anon_sym_false] = ACTIONS(1409), - [anon_sym_PLUS] = ACTIONS(1469), - [anon_sym_DASH] = ACTIONS(1469), - [anon_sym_STAR] = ACTIONS(1473), - [anon_sym_CARET] = ACTIONS(1471), - [anon_sym_AMP] = ACTIONS(1471), - [anon_sym_this] = ACTIONS(1413), - [anon_sym_scoped] = ACTIONS(1415), - [anon_sym_base] = ACTIONS(1417), - [anon_sym_var] = ACTIONS(1419), - [sym_predefined_type] = ACTIONS(1421), - [anon_sym_unchecked] = ACTIONS(1403), - [anon_sym_yield] = ACTIONS(1389), - [anon_sym_default] = ACTIONS(1423), - [anon_sym_throw] = ACTIONS(1475), - [anon_sym_when] = ACTIONS(1389), - [anon_sym_await] = ACTIONS(1477), - [anon_sym_DOT_DOT] = ACTIONS(1479), - [anon_sym_from] = ACTIONS(1431), - [anon_sym_into] = ACTIONS(1389), - [anon_sym_join] = ACTIONS(1389), - [anon_sym_on] = ACTIONS(1389), - [anon_sym_equals] = ACTIONS(1389), - [anon_sym_let] = ACTIONS(1389), - [anon_sym_orderby] = ACTIONS(1389), - [anon_sym_ascending] = ACTIONS(1389), - [anon_sym_descending] = ACTIONS(1389), - [anon_sym_group] = ACTIONS(1389), - [anon_sym_by] = ACTIONS(1389), - [anon_sym_select] = ACTIONS(1389), - [anon_sym_stackalloc] = ACTIONS(1433), - [anon_sym_sizeof] = ACTIONS(1435), - [anon_sym_typeof] = ACTIONS(1437), - [anon_sym___makeref] = ACTIONS(1439), - [anon_sym___reftype] = ACTIONS(1441), - [anon_sym___refvalue] = ACTIONS(1443), - [sym_null_literal] = ACTIONS(1445), - [anon_sym_SQUOTE] = ACTIONS(1447), - [sym_integer_literal] = ACTIONS(1445), - [sym_real_literal] = ACTIONS(1449), - [anon_sym_DQUOTE] = ACTIONS(1451), - [sym_verbatim_string_literal] = ACTIONS(1449), - [aux_sym_preproc_if_token1] = ACTIONS(1453), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1455), - [sym_interpolation_verbatim_start] = ACTIONS(1457), - [sym_interpolation_raw_start] = ACTIONS(1459), - [sym_raw_string_start] = ACTIONS(1461), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3379), + [sym__identifier_token] = ACTIONS(25), + [anon_sym_alias] = ACTIONS(29), + [anon_sym_global] = ACTIONS(29), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1149), + [anon_sym_LPAREN] = ACTIONS(1913), + [anon_sym_ref] = ACTIONS(1915), + [anon_sym_LBRACE] = ACTIONS(1155), + [anon_sym_delegate] = ACTIONS(1157), + [anon_sym_async] = ACTIONS(1045), + [anon_sym_file] = ACTIONS(29), + [anon_sym_new] = ACTIONS(1917), + [anon_sym_where] = ACTIONS(29), + [anon_sym_notnull] = ACTIONS(29), + [anon_sym_unmanaged] = ACTIONS(29), + [anon_sym_checked] = ACTIONS(1163), + [anon_sym_BANG] = ACTIONS(1921), + [anon_sym_TILDE] = ACTIONS(1921), + [anon_sym_PLUS_PLUS] = ACTIONS(1921), + [anon_sym_DASH_DASH] = ACTIONS(1921), + [anon_sym_true] = ACTIONS(1169), + [anon_sym_false] = ACTIONS(1169), + [anon_sym_PLUS] = ACTIONS(1919), + [anon_sym_DASH] = ACTIONS(1919), + [anon_sym_STAR] = ACTIONS(1923), + [anon_sym_CARET] = ACTIONS(1921), + [anon_sym_AMP] = ACTIONS(1921), + [anon_sym_this] = ACTIONS(1173), + [anon_sym_scoped] = ACTIONS(85), + [anon_sym_base] = ACTIONS(1175), + [anon_sym_var] = ACTIONS(89), + [sym_predefined_type] = ACTIONS(1177), + [anon_sym_unchecked] = ACTIONS(1163), + [anon_sym_yield] = ACTIONS(29), + [anon_sym_default] = ACTIONS(1179), + [anon_sym_throw] = ACTIONS(1925), + [anon_sym_when] = ACTIONS(29), + [anon_sym_await] = ACTIONS(1927), + [anon_sym_DOT_DOT] = ACTIONS(1929), + [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(1187), + [anon_sym_sizeof] = ACTIONS(1189), + [anon_sym_typeof] = ACTIONS(1191), + [anon_sym___makeref] = ACTIONS(1193), + [anon_sym___reftype] = ACTIONS(1195), + [anon_sym___refvalue] = ACTIONS(1197), + [sym_null_literal] = ACTIONS(1199), + [anon_sym_SQUOTE] = ACTIONS(1201), + [sym_integer_literal] = ACTIONS(1199), + [sym_real_literal] = ACTIONS(1203), + [anon_sym_DQUOTE] = ACTIONS(1205), + [sym_verbatim_string_literal] = ACTIONS(1203), + [aux_sym_preproc_if_token1] = ACTIONS(1207), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + [sym_interpolation_regular_start] = ACTIONS(1209), + [sym_interpolation_verbatim_start] = ACTIONS(1211), + [sym_interpolation_raw_start] = ACTIONS(1213), + [sym_raw_string_start] = ACTIONS(1215), }, [1549] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(5160), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2204), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(4570), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3461), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3080), - [sym_postfix_unary_expression] = STATE(3111), - [sym_prefix_unary_expression] = STATE(3111), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6154), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3080), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3111), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3080), - [sym_member_access_expression] = STATE(2484), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3111), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7547), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(3080), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3080), - [sym_typeof_expression] = STATE(3080), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2484), - [sym_literal] = STATE(3080), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2603), + [sym__name] = STATE(5869), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2367), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(4713), + [sym_non_lvalue_expression] = STATE(3220), + [sym_lvalue_expression] = STATE(3377), + [sym__expression_statement_expression] = STATE(3236), + [sym_assignment_expression] = STATE(3221), + [sym_binary_expression] = STATE(3236), + [sym_postfix_unary_expression] = STATE(3221), + [sym_prefix_unary_expression] = STATE(3221), + [sym__pointer_indirection_expression] = STATE(2602), + [sym_query_expression] = STATE(3236), + [sym_from_clause] = STATE(6128), + [sym_conditional_expression] = STATE(3236), + [sym_conditional_access_expression] = STATE(3236), + [sym_as_expression] = STATE(3236), + [sym_is_expression] = STATE(3236), + [sym_is_pattern_expression] = STATE(3236), + [sym_cast_expression] = STATE(3236), + [sym_checked_expression] = STATE(3236), + [sym_invocation_expression] = STATE(3221), + [sym_switch_expression] = STATE(3236), + [sym_await_expression] = STATE(3221), + [sym_throw_expression] = STATE(3236), + [sym_element_access_expression] = STATE(2602), + [sym_interpolated_string_expression] = STATE(3236), + [sym_member_access_expression] = STATE(2602), + [sym_object_creation_expression] = STATE(3221), + [sym_parenthesized_expression] = STATE(3221), + [sym__parenthesized_lvalue_expression] = STATE(2602), + [sym_lambda_expression] = STATE(3236), + [sym__lambda_expression_init] = STATE(7632), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3236), + [sym_anonymous_method_expression] = STATE(3236), + [sym_anonymous_object_creation_expression] = STATE(3236), + [sym_implicit_array_creation_expression] = STATE(3236), + [sym_implicit_object_creation_expression] = STATE(3236), + [sym_implicit_stackalloc_expression] = STATE(3236), + [sym_initializer_expression] = STATE(3236), + [sym_default_expression] = STATE(3236), + [sym_with_expression] = STATE(3236), + [sym_sizeof_expression] = STATE(3236), + [sym_typeof_expression] = STATE(3236), + [sym_makeref_expression] = STATE(3236), + [sym_ref_expression] = STATE(3236), + [sym_reftype_expression] = STATE(3236), + [sym_refvalue_expression] = STATE(3236), + [sym_stackalloc_expression] = STATE(3236), + [sym_range_expression] = STATE(3236), + [sym_tuple_expression] = STATE(2602), + [sym_literal] = STATE(3236), + [sym_character_literal] = STATE(3272), + [sym_string_literal] = STATE(3272), + [sym_raw_string_literal] = STATE(3272), + [sym_boolean_literal] = STATE(3272), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3236), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(1549), [sym_preproc_endregion] = STATE(1549), [sym_preproc_line] = STATE(1549), @@ -303640,47 +303526,47 @@ 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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3379), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1481), - [anon_sym_LPAREN] = ACTIONS(1497), - [anon_sym_ref] = ACTIONS(1499), - [anon_sym_LBRACE] = ACTIONS(1487), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1149), + [anon_sym_LPAREN] = ACTIONS(1913), + [anon_sym_ref] = ACTIONS(1915), + [anon_sym_LBRACE] = ACTIONS(1155), + [anon_sym_delegate] = ACTIONS(1157), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1501), + [anon_sym_new] = ACTIONS(1917), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = 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(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(1163), + [anon_sym_BANG] = ACTIONS(1921), + [anon_sym_TILDE] = ACTIONS(1921), + [anon_sym_PLUS_PLUS] = ACTIONS(1921), + [anon_sym_DASH_DASH] = ACTIONS(1921), + [anon_sym_true] = ACTIONS(1169), + [anon_sym_false] = ACTIONS(1169), + [anon_sym_PLUS] = ACTIONS(1919), + [anon_sym_DASH] = ACTIONS(1919), + [anon_sym_STAR] = ACTIONS(1923), + [anon_sym_CARET] = ACTIONS(1921), + [anon_sym_AMP] = ACTIONS(1921), + [anon_sym_this] = ACTIONS(1173), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), + [anon_sym_base] = ACTIONS(1175), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1067), + [sym_predefined_type] = ACTIONS(1177), + [anon_sym_unchecked] = ACTIONS(1163), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1503), + [anon_sym_default] = ACTIONS(1179), + [anon_sym_throw] = ACTIONS(1925), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1505), - [anon_sym_DOT_DOT] = ACTIONS(1507), + [anon_sym_await] = ACTIONS(1927), + [anon_sym_DOT_DOT] = ACTIONS(1929), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -303693,19 +303579,19 @@ static const uint16_t ts_parse_table[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(1089), + [anon_sym_stackalloc] = ACTIONS(1187), + [anon_sym_sizeof] = ACTIONS(1189), + [anon_sym_typeof] = ACTIONS(1191), + [anon_sym___makeref] = ACTIONS(1193), + [anon_sym___reftype] = ACTIONS(1195), + [anon_sym___refvalue] = ACTIONS(1197), + [sym_null_literal] = ACTIONS(1199), + [anon_sym_SQUOTE] = ACTIONS(1201), + [sym_integer_literal] = ACTIONS(1199), + [sym_real_literal] = ACTIONS(1203), + [anon_sym_DQUOTE] = ACTIONS(1205), + [sym_verbatim_string_literal] = ACTIONS(1203), + [aux_sym_preproc_if_token1] = ACTIONS(1207), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -303716,90 +303602,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(151), - [sym_interpolation_verbatim_start] = ACTIONS(153), - [sym_interpolation_raw_start] = ACTIONS(155), - [sym_raw_string_start] = ACTIONS(157), + [sym_interpolation_regular_start] = ACTIONS(1209), + [sym_interpolation_verbatim_start] = ACTIONS(1211), + [sym_interpolation_raw_start] = ACTIONS(1213), + [sym_raw_string_start] = ACTIONS(1215), }, [1550] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(3184), - [sym__name] = STATE(5883), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2313), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2269), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(4436), - [sym_non_lvalue_expression] = STATE(4541), - [sym_lvalue_expression] = STATE(3314), - [sym__expression_statement_expression] = STATE(4529), - [sym_assignment_expression] = STATE(4543), - [sym_binary_expression] = STATE(4529), - [sym_postfix_unary_expression] = STATE(4543), - [sym_prefix_unary_expression] = STATE(4543), - [sym__pointer_indirection_expression] = STATE(3175), - [sym_query_expression] = STATE(4529), - [sym_from_clause] = STATE(6156), - [sym_conditional_expression] = STATE(4529), - [sym_conditional_access_expression] = STATE(4529), - [sym_as_expression] = STATE(4529), - [sym_is_expression] = STATE(4529), - [sym_is_pattern_expression] = STATE(4529), - [sym_cast_expression] = STATE(4529), - [sym_checked_expression] = STATE(4529), - [sym_invocation_expression] = STATE(4543), - [sym_switch_expression] = STATE(4529), - [sym_await_expression] = STATE(4543), - [sym_throw_expression] = STATE(4529), - [sym_element_access_expression] = STATE(3175), - [sym_interpolated_string_expression] = STATE(4529), - [sym_member_access_expression] = STATE(3175), - [sym_object_creation_expression] = STATE(4543), - [sym_parenthesized_expression] = STATE(4543), - [sym__parenthesized_lvalue_expression] = STATE(3175), - [sym_lambda_expression] = STATE(4529), - [sym__lambda_expression_init] = STATE(7552), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(4529), - [sym_anonymous_method_expression] = STATE(4529), - [sym_anonymous_object_creation_expression] = STATE(4529), - [sym_implicit_array_creation_expression] = STATE(4529), - [sym_implicit_object_creation_expression] = STATE(4529), - [sym_implicit_stackalloc_expression] = STATE(4529), - [sym_initializer_expression] = STATE(4529), - [sym_default_expression] = STATE(4529), - [sym_with_expression] = STATE(4529), - [sym_sizeof_expression] = STATE(4529), - [sym_typeof_expression] = STATE(4529), - [sym_makeref_expression] = STATE(4529), - [sym_ref_expression] = STATE(4529), - [sym_reftype_expression] = STATE(4529), - [sym_refvalue_expression] = STATE(4529), - [sym_stackalloc_expression] = STATE(4529), - [sym_range_expression] = STATE(4529), - [sym_tuple_expression] = STATE(3175), - [sym_literal] = STATE(4529), - [sym_character_literal] = STATE(4536), - [sym_string_literal] = STATE(4536), - [sym_raw_string_literal] = STATE(4536), - [sym_boolean_literal] = STATE(4536), - [sym_identifier] = STATE(2246), - [sym__reserved_identifier] = STATE(2240), - [sym_preproc_if_in_expression] = STATE(4529), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(5873), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2238), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(5195), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3526), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3102), + [sym_postfix_unary_expression] = STATE(3079), + [sym_prefix_unary_expression] = STATE(3079), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6134), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3102), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3079), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3102), + [sym_member_access_expression] = STATE(2472), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3079), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7455), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(3102), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3102), + [sym_typeof_expression] = STATE(3102), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2472), + [sym_literal] = STATE(3102), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(1550), [sym_preproc_endregion] = STATE(1550), [sym_preproc_line] = STATE(1550), @@ -303809,216 +303695,47 @@ 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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3363), - [sym__identifier_token] = ACTIONS(1387), - [anon_sym_alias] = ACTIONS(1389), - [anon_sym_global] = ACTIONS(1389), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1391), - [anon_sym_LPAREN] = ACTIONS(1463), - [anon_sym_ref] = ACTIONS(1465), - [anon_sym_LBRACE] = ACTIONS(1397), - [anon_sym_delegate] = ACTIONS(1399), - [anon_sym_async] = ACTIONS(1047), - [anon_sym_file] = ACTIONS(1389), - [anon_sym_new] = ACTIONS(1467), - [anon_sym_where] = ACTIONS(1389), - [anon_sym_notnull] = ACTIONS(1389), - [anon_sym_unmanaged] = ACTIONS(1389), - [anon_sym_checked] = ACTIONS(1403), - [anon_sym_BANG] = ACTIONS(1471), - [anon_sym_TILDE] = ACTIONS(1471), - [anon_sym_PLUS_PLUS] = ACTIONS(1471), - [anon_sym_DASH_DASH] = ACTIONS(1471), - [anon_sym_true] = ACTIONS(1409), - [anon_sym_false] = ACTIONS(1409), - [anon_sym_PLUS] = ACTIONS(1469), - [anon_sym_DASH] = ACTIONS(1469), - [anon_sym_STAR] = ACTIONS(1473), - [anon_sym_CARET] = ACTIONS(1471), - [anon_sym_AMP] = ACTIONS(1471), - [anon_sym_this] = ACTIONS(1413), - [anon_sym_scoped] = ACTIONS(1415), - [anon_sym_base] = ACTIONS(1417), - [anon_sym_var] = ACTIONS(1419), - [sym_predefined_type] = ACTIONS(1421), - [anon_sym_unchecked] = ACTIONS(1403), - [anon_sym_yield] = ACTIONS(1389), - [anon_sym_default] = ACTIONS(1423), - [anon_sym_throw] = ACTIONS(1475), - [anon_sym_when] = ACTIONS(1389), - [anon_sym_await] = ACTIONS(1477), - [anon_sym_DOT_DOT] = ACTIONS(1479), - [anon_sym_from] = ACTIONS(1431), - [anon_sym_into] = ACTIONS(1389), - [anon_sym_join] = ACTIONS(1389), - [anon_sym_on] = ACTIONS(1389), - [anon_sym_equals] = ACTIONS(1389), - [anon_sym_let] = ACTIONS(1389), - [anon_sym_orderby] = ACTIONS(1389), - [anon_sym_ascending] = ACTIONS(1389), - [anon_sym_descending] = ACTIONS(1389), - [anon_sym_group] = ACTIONS(1389), - [anon_sym_by] = ACTIONS(1389), - [anon_sym_select] = ACTIONS(1389), - [anon_sym_stackalloc] = ACTIONS(1433), - [anon_sym_sizeof] = ACTIONS(1435), - [anon_sym_typeof] = ACTIONS(1437), - [anon_sym___makeref] = ACTIONS(1439), - [anon_sym___reftype] = ACTIONS(1441), - [anon_sym___refvalue] = ACTIONS(1443), - [sym_null_literal] = ACTIONS(1445), - [anon_sym_SQUOTE] = ACTIONS(1447), - [sym_integer_literal] = ACTIONS(1445), - [sym_real_literal] = ACTIONS(1449), - [anon_sym_DQUOTE] = ACTIONS(1451), - [sym_verbatim_string_literal] = ACTIONS(1449), - [aux_sym_preproc_if_token1] = ACTIONS(1453), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1455), - [sym_interpolation_verbatim_start] = ACTIONS(1457), - [sym_interpolation_raw_start] = ACTIONS(1459), - [sym_raw_string_start] = ACTIONS(1461), - }, - [1551] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(5876), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2376), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(5410), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3681), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3080), - [sym_postfix_unary_expression] = STATE(3111), - [sym_prefix_unary_expression] = STATE(3111), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6170), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3080), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3111), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3080), - [sym_member_access_expression] = STATE(2484), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3111), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7511), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(3080), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3080), - [sym_typeof_expression] = STATE(3080), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2484), - [sym_literal] = STATE(3080), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), - [sym_preproc_region] = STATE(1551), - [sym_preproc_endregion] = STATE(1551), - [sym_preproc_line] = STATE(1551), - [sym_preproc_pragma] = STATE(1551), - [sym_preproc_nullable] = STATE(1551), - [sym_preproc_error] = STATE(1551), - [sym_preproc_warning] = STATE(1551), - [sym_preproc_define] = STATE(1551), - [sym_preproc_undef] = STATE(1551), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1481), - [anon_sym_LPAREN] = ACTIONS(2231), - [anon_sym_ref] = ACTIONS(2233), - [anon_sym_LBRACE] = ACTIONS(1487), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1479), + [anon_sym_LPAREN] = ACTIONS(1629), + [anon_sym_ref] = ACTIONS(1631), + [anon_sym_LBRACE] = ACTIONS(1481), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(2235), + [anon_sym_new] = ACTIONS(1515), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1067), - [anon_sym_BANG] = ACTIONS(2239), - [anon_sym_TILDE] = ACTIONS(2239), - [anon_sym_PLUS_PLUS] = ACTIONS(2239), - [anon_sym_DASH_DASH] = ACTIONS(2239), + [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(2237), - [anon_sym_DASH] = ACTIONS(2237), - [anon_sym_STAR] = ACTIONS(2241), - [anon_sym_CARET] = ACTIONS(2239), - [anon_sym_AMP] = ACTIONS(2239), + [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_scoped] = ACTIONS(85), [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1067), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(2243), + [anon_sym_throw] = ACTIONS(1633), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2245), - [anon_sym_DOT_DOT] = ACTIONS(2247), + [anon_sym_await] = ACTIONS(1635), + [anon_sym_DOT_DOT] = ACTIONS(1637), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -304043,7 +303760,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(1089), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -304059,85 +303776,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), }, + [1551] = { + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2416), + [sym__name] = STATE(5900), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2193), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(2902), + [sym_non_lvalue_expression] = STATE(3040), + [sym_lvalue_expression] = STATE(3231), + [sym__expression_statement_expression] = STATE(3035), + [sym_assignment_expression] = STATE(3043), + [sym_binary_expression] = STATE(3035), + [sym_postfix_unary_expression] = STATE(3043), + [sym_prefix_unary_expression] = STATE(3043), + [sym__pointer_indirection_expression] = STATE(2415), + [sym_query_expression] = STATE(3035), + [sym_from_clause] = STATE(6149), + [sym_conditional_expression] = STATE(3035), + [sym_conditional_access_expression] = STATE(3035), + [sym_as_expression] = STATE(3035), + [sym_is_expression] = STATE(3035), + [sym_is_pattern_expression] = STATE(3035), + [sym_cast_expression] = STATE(3035), + [sym_checked_expression] = STATE(3035), + [sym_invocation_expression] = STATE(3043), + [sym_switch_expression] = STATE(3035), + [sym_await_expression] = STATE(3043), + [sym_throw_expression] = STATE(3035), + [sym_element_access_expression] = STATE(2415), + [sym_interpolated_string_expression] = STATE(3035), + [sym_member_access_expression] = STATE(2415), + [sym_object_creation_expression] = STATE(3043), + [sym_parenthesized_expression] = STATE(3043), + [sym__parenthesized_lvalue_expression] = STATE(2415), + [sym_lambda_expression] = STATE(3035), + [sym__lambda_expression_init] = STATE(7405), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3035), + [sym_anonymous_method_expression] = STATE(3035), + [sym_anonymous_object_creation_expression] = STATE(3035), + [sym_implicit_array_creation_expression] = STATE(3035), + [sym_implicit_object_creation_expression] = STATE(3035), + [sym_implicit_stackalloc_expression] = STATE(3035), + [sym_initializer_expression] = STATE(3035), + [sym_default_expression] = STATE(3035), + [sym_with_expression] = STATE(3035), + [sym_sizeof_expression] = STATE(3035), + [sym_typeof_expression] = STATE(3035), + [sym_makeref_expression] = STATE(3035), + [sym_ref_expression] = STATE(3035), + [sym_reftype_expression] = STATE(3035), + [sym_refvalue_expression] = STATE(3035), + [sym_stackalloc_expression] = STATE(3035), + [sym_range_expression] = STATE(3035), + [sym_tuple_expression] = STATE(2415), + [sym_literal] = STATE(3035), + [sym_character_literal] = STATE(3037), + [sym_string_literal] = STATE(3037), + [sym_raw_string_literal] = STATE(3037), + [sym_boolean_literal] = STATE(3037), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3035), + [sym_preproc_if_in_attribute_list] = STATE(5583), + [sym_preproc_region] = STATE(1551), + [sym_preproc_endregion] = STATE(1551), + [sym_preproc_line] = STATE(1551), + [sym_preproc_pragma] = STATE(1551), + [sym_preproc_nullable] = STATE(1551), + [sym_preproc_error] = STATE(1551), + [sym_preproc_warning] = STATE(1551), + [sym_preproc_define] = STATE(1551), + [sym_preproc_undef] = STATE(1551), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3455), + [sym__identifier_token] = ACTIONS(25), + [anon_sym_alias] = ACTIONS(29), + [anon_sym_global] = ACTIONS(29), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1239), + [anon_sym_LPAREN] = ACTIONS(1495), + [anon_sym_ref] = ACTIONS(1497), + [anon_sym_LBRACE] = ACTIONS(1245), + [anon_sym_delegate] = ACTIONS(1247), + [anon_sym_async] = ACTIONS(1045), + [anon_sym_file] = ACTIONS(29), + [anon_sym_new] = ACTIONS(1249), + [anon_sym_where] = ACTIONS(29), + [anon_sym_notnull] = ACTIONS(29), + [anon_sym_unmanaged] = ACTIONS(29), + [anon_sym_checked] = ACTIONS(1251), + [anon_sym_BANG] = ACTIONS(1501), + [anon_sym_TILDE] = ACTIONS(1501), + [anon_sym_PLUS_PLUS] = ACTIONS(1501), + [anon_sym_DASH_DASH] = ACTIONS(1501), + [anon_sym_true] = ACTIONS(1257), + [anon_sym_false] = ACTIONS(1257), + [anon_sym_PLUS] = ACTIONS(1499), + [anon_sym_DASH] = ACTIONS(1499), + [anon_sym_STAR] = ACTIONS(1503), + [anon_sym_CARET] = ACTIONS(1501), + [anon_sym_AMP] = ACTIONS(1501), + [anon_sym_this] = ACTIONS(1261), + [anon_sym_scoped] = ACTIONS(85), + [anon_sym_base] = ACTIONS(1263), + [anon_sym_var] = ACTIONS(89), + [sym_predefined_type] = ACTIONS(1265), + [anon_sym_unchecked] = ACTIONS(1251), + [anon_sym_yield] = ACTIONS(29), + [anon_sym_default] = ACTIONS(1267), + [anon_sym_throw] = ACTIONS(1505), + [anon_sym_when] = ACTIONS(29), + [anon_sym_await] = ACTIONS(1507), + [anon_sym_DOT_DOT] = ACTIONS(1509), + [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(1275), + [anon_sym_sizeof] = ACTIONS(1277), + [anon_sym_typeof] = ACTIONS(1279), + [anon_sym___makeref] = ACTIONS(1281), + [anon_sym___reftype] = ACTIONS(1283), + [anon_sym___refvalue] = ACTIONS(1285), + [sym_null_literal] = ACTIONS(1287), + [anon_sym_SQUOTE] = ACTIONS(1289), + [sym_integer_literal] = ACTIONS(1287), + [sym_real_literal] = ACTIONS(1291), + [anon_sym_DQUOTE] = ACTIONS(1293), + [sym_verbatim_string_literal] = ACTIONS(1291), + [aux_sym_preproc_if_token1] = ACTIONS(1295), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + [sym_interpolation_regular_start] = ACTIONS(1297), + [sym_interpolation_verbatim_start] = ACTIONS(1299), + [sym_interpolation_raw_start] = ACTIONS(1301), + [sym_raw_string_start] = ACTIONS(1303), + }, [1552] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2762), - [sym__name] = STATE(5910), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2204), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(5114), - [sym_non_lvalue_expression] = STATE(3438), - [sym_lvalue_expression] = STATE(3524), - [sym__expression_statement_expression] = STATE(3362), - [sym_assignment_expression] = STATE(3449), - [sym_binary_expression] = STATE(3362), - [sym_postfix_unary_expression] = STATE(3449), - [sym_prefix_unary_expression] = STATE(3449), - [sym__pointer_indirection_expression] = STATE(2747), - [sym_query_expression] = STATE(3362), - [sym_from_clause] = STATE(6174), - [sym_conditional_expression] = STATE(3362), - [sym_conditional_access_expression] = STATE(3362), - [sym_as_expression] = STATE(3362), - [sym_is_expression] = STATE(3362), - [sym_is_pattern_expression] = STATE(3362), - [sym_cast_expression] = STATE(3362), - [sym_checked_expression] = STATE(3362), - [sym_invocation_expression] = STATE(3449), - [sym_switch_expression] = STATE(3362), - [sym_await_expression] = STATE(3449), - [sym_throw_expression] = STATE(3362), - [sym_element_access_expression] = STATE(2747), - [sym_interpolated_string_expression] = STATE(3362), - [sym_member_access_expression] = STATE(2747), - [sym_object_creation_expression] = STATE(3449), - [sym_parenthesized_expression] = STATE(3449), - [sym__parenthesized_lvalue_expression] = STATE(2747), - [sym_lambda_expression] = STATE(3362), - [sym__lambda_expression_init] = STATE(7407), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3362), - [sym_anonymous_method_expression] = STATE(3362), - [sym_anonymous_object_creation_expression] = STATE(3362), - [sym_implicit_array_creation_expression] = STATE(3362), - [sym_implicit_object_creation_expression] = STATE(3362), - [sym_implicit_stackalloc_expression] = STATE(3362), - [sym_initializer_expression] = STATE(3362), - [sym_default_expression] = STATE(3362), - [sym_with_expression] = STATE(3362), - [sym_sizeof_expression] = STATE(3362), - [sym_typeof_expression] = STATE(3362), - [sym_makeref_expression] = STATE(3362), - [sym_ref_expression] = STATE(3362), - [sym_reftype_expression] = STATE(3362), - [sym_refvalue_expression] = STATE(3362), - [sym_stackalloc_expression] = STATE(3362), - [sym_range_expression] = STATE(3362), - [sym_tuple_expression] = STATE(2747), - [sym_literal] = STATE(3362), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3362), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(5895), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2376), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(5660), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(2471), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3102), + [sym_postfix_unary_expression] = STATE(3079), + [sym_prefix_unary_expression] = STATE(3079), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6134), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3102), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3079), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3102), + [sym_member_access_expression] = STATE(2472), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3079), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7425), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(3102), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3102), + [sym_typeof_expression] = STATE(3102), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2472), + [sym_literal] = STATE(3102), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(1552), [sym_preproc_endregion] = STATE(1552), [sym_preproc_line] = STATE(1552), @@ -304147,47 +304033,47 @@ 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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3385), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1307), - [anon_sym_LPAREN] = ACTIONS(1693), - [anon_sym_ref] = ACTIONS(1695), - [anon_sym_LBRACE] = ACTIONS(1313), - [anon_sym_delegate] = ACTIONS(1315), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1479), + [anon_sym_LPAREN] = ACTIONS(43), + [anon_sym_ref] = ACTIONS(715), + [anon_sym_LBRACE] = ACTIONS(1481), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1697), + [anon_sym_new] = ACTIONS(1059), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1319), - [anon_sym_BANG] = ACTIONS(1701), - [anon_sym_TILDE] = ACTIONS(1701), - [anon_sym_PLUS_PLUS] = ACTIONS(1701), - [anon_sym_DASH_DASH] = ACTIONS(1701), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(1525), + [anon_sym_TILDE] = ACTIONS(1525), + [anon_sym_PLUS_PLUS] = ACTIONS(1525), + [anon_sym_DASH_DASH] = ACTIONS(1525), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1699), - [anon_sym_DASH] = ACTIONS(1699), - [anon_sym_STAR] = ACTIONS(1351), - [anon_sym_CARET] = ACTIONS(1701), - [anon_sym_AMP] = ACTIONS(1701), - [anon_sym_this] = ACTIONS(1323), + [anon_sym_PLUS] = ACTIONS(1523), + [anon_sym_DASH] = ACTIONS(1523), + [anon_sym_STAR] = ACTIONS(2209), + [anon_sym_CARET] = ACTIONS(1525), + [anon_sym_AMP] = ACTIONS(1525), + [anon_sym_this] = ACTIONS(83), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1325), + [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1319), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1703), + [anon_sym_throw] = ACTIONS(1527), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1705), - [anon_sym_DOT_DOT] = ACTIONS(1707), + [anon_sym_await] = ACTIONS(1529), + [anon_sym_DOT_DOT] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -304200,19 +304086,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1333), + [anon_sym_stackalloc] = ACTIONS(127), [anon_sym_sizeof] = ACTIONS(129), [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(1335), - [anon_sym___reftype] = ACTIONS(1337), - [anon_sym___refvalue] = ACTIONS(1339), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), [sym_null_literal] = ACTIONS(139), [anon_sym_SQUOTE] = ACTIONS(141), [sym_integer_literal] = ACTIONS(139), [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1709), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -304229,84 +304115,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [1553] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2762), - [sym__name] = STATE(5910), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2204), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(3163), - [sym_non_lvalue_expression] = STATE(3438), - [sym_lvalue_expression] = STATE(3524), - [sym__expression_statement_expression] = STATE(3362), - [sym_assignment_expression] = STATE(3449), - [sym_binary_expression] = STATE(3362), - [sym_postfix_unary_expression] = STATE(3449), - [sym_prefix_unary_expression] = STATE(3449), - [sym__pointer_indirection_expression] = STATE(2747), - [sym_query_expression] = STATE(3362), - [sym_from_clause] = STATE(6174), - [sym_conditional_expression] = STATE(3362), - [sym_conditional_access_expression] = STATE(3362), - [sym_as_expression] = STATE(3362), - [sym_is_expression] = STATE(3362), - [sym_is_pattern_expression] = STATE(3362), - [sym_cast_expression] = STATE(3362), - [sym_checked_expression] = STATE(3362), - [sym_invocation_expression] = STATE(3449), - [sym_switch_expression] = STATE(3362), - [sym_await_expression] = STATE(3449), - [sym_throw_expression] = STATE(3362), - [sym_element_access_expression] = STATE(2747), - [sym_interpolated_string_expression] = STATE(3362), - [sym_member_access_expression] = STATE(2747), - [sym_object_creation_expression] = STATE(3449), - [sym_parenthesized_expression] = STATE(3449), - [sym__parenthesized_lvalue_expression] = STATE(2747), - [sym_lambda_expression] = STATE(3362), - [sym__lambda_expression_init] = STATE(7407), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3362), - [sym_anonymous_method_expression] = STATE(3362), - [sym_anonymous_object_creation_expression] = STATE(3362), - [sym_implicit_array_creation_expression] = STATE(3362), - [sym_implicit_object_creation_expression] = STATE(3362), - [sym_implicit_stackalloc_expression] = STATE(3362), - [sym_initializer_expression] = STATE(3362), - [sym_default_expression] = STATE(3362), - [sym_with_expression] = STATE(3362), - [sym_sizeof_expression] = STATE(3362), - [sym_typeof_expression] = STATE(3362), - [sym_makeref_expression] = STATE(3362), - [sym_ref_expression] = STATE(3362), - [sym_reftype_expression] = STATE(3362), - [sym_refvalue_expression] = STATE(3362), - [sym_stackalloc_expression] = STATE(3362), - [sym_range_expression] = STATE(3362), - [sym_tuple_expression] = STATE(2747), - [sym_literal] = STATE(3362), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3362), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2603), + [sym__name] = STATE(5870), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2379), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(4730), + [sym_non_lvalue_expression] = STATE(3220), + [sym_lvalue_expression] = STATE(3386), + [sym__expression_statement_expression] = STATE(3236), + [sym_assignment_expression] = STATE(3221), + [sym_binary_expression] = STATE(3236), + [sym_postfix_unary_expression] = STATE(3221), + [sym_prefix_unary_expression] = STATE(3221), + [sym__pointer_indirection_expression] = STATE(2602), + [sym_query_expression] = STATE(3236), + [sym_from_clause] = STATE(6166), + [sym_conditional_expression] = STATE(3236), + [sym_conditional_access_expression] = STATE(3236), + [sym_as_expression] = STATE(3236), + [sym_is_expression] = STATE(3236), + [sym_is_pattern_expression] = STATE(3236), + [sym_cast_expression] = STATE(3236), + [sym_checked_expression] = STATE(3236), + [sym_invocation_expression] = STATE(3221), + [sym_switch_expression] = STATE(3236), + [sym_await_expression] = STATE(3221), + [sym_throw_expression] = STATE(3236), + [sym_element_access_expression] = STATE(2602), + [sym_interpolated_string_expression] = STATE(3236), + [sym_member_access_expression] = STATE(2602), + [sym_object_creation_expression] = STATE(3221), + [sym_parenthesized_expression] = STATE(3221), + [sym__parenthesized_lvalue_expression] = STATE(2602), + [sym_lambda_expression] = STATE(3236), + [sym__lambda_expression_init] = STATE(7418), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3236), + [sym_anonymous_method_expression] = STATE(3236), + [sym_anonymous_object_creation_expression] = STATE(3236), + [sym_implicit_array_creation_expression] = STATE(3236), + [sym_implicit_object_creation_expression] = STATE(3236), + [sym_implicit_stackalloc_expression] = STATE(3236), + [sym_initializer_expression] = STATE(3236), + [sym_default_expression] = STATE(3236), + [sym_with_expression] = STATE(3236), + [sym_sizeof_expression] = STATE(3236), + [sym_typeof_expression] = STATE(3236), + [sym_makeref_expression] = STATE(3236), + [sym_ref_expression] = STATE(3236), + [sym_reftype_expression] = STATE(3236), + [sym_refvalue_expression] = STATE(3236), + [sym_stackalloc_expression] = STATE(3236), + [sym_range_expression] = STATE(3236), + [sym_tuple_expression] = STATE(2602), + [sym_literal] = STATE(3236), + [sym_character_literal] = STATE(3272), + [sym_string_literal] = STATE(3272), + [sym_raw_string_literal] = STATE(3272), + [sym_boolean_literal] = STATE(3272), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3236), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(1553), [sym_preproc_endregion] = STATE(1553), [sym_preproc_line] = STATE(1553), @@ -304316,47 +304202,47 @@ 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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3385), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3379), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1307), - [anon_sym_LPAREN] = ACTIONS(1693), - [anon_sym_ref] = ACTIONS(1695), - [anon_sym_LBRACE] = ACTIONS(1313), - [anon_sym_delegate] = ACTIONS(1315), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1149), + [anon_sym_LPAREN] = ACTIONS(1821), + [anon_sym_ref] = ACTIONS(1823), + [anon_sym_LBRACE] = ACTIONS(1155), + [anon_sym_delegate] = ACTIONS(1157), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1697), + [anon_sym_new] = ACTIONS(1825), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1319), - [anon_sym_BANG] = ACTIONS(1701), - [anon_sym_TILDE] = ACTIONS(1701), - [anon_sym_PLUS_PLUS] = ACTIONS(1701), - [anon_sym_DASH_DASH] = ACTIONS(1701), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1699), - [anon_sym_DASH] = ACTIONS(1699), - [anon_sym_STAR] = ACTIONS(1351), - [anon_sym_CARET] = ACTIONS(1701), - [anon_sym_AMP] = ACTIONS(1701), - [anon_sym_this] = ACTIONS(1323), + [anon_sym_checked] = ACTIONS(1163), + [anon_sym_BANG] = ACTIONS(1829), + [anon_sym_TILDE] = ACTIONS(1829), + [anon_sym_PLUS_PLUS] = ACTIONS(1829), + [anon_sym_DASH_DASH] = ACTIONS(1829), + [anon_sym_true] = ACTIONS(1169), + [anon_sym_false] = ACTIONS(1169), + [anon_sym_PLUS] = ACTIONS(1827), + [anon_sym_DASH] = ACTIONS(1827), + [anon_sym_STAR] = ACTIONS(1831), + [anon_sym_CARET] = ACTIONS(1829), + [anon_sym_AMP] = ACTIONS(1829), + [anon_sym_this] = ACTIONS(1173), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1325), + [anon_sym_base] = ACTIONS(1175), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1319), + [sym_predefined_type] = ACTIONS(1177), + [anon_sym_unchecked] = ACTIONS(1163), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1703), + [anon_sym_default] = ACTIONS(1179), + [anon_sym_throw] = ACTIONS(1833), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1705), - [anon_sym_DOT_DOT] = ACTIONS(1707), + [anon_sym_await] = ACTIONS(1835), + [anon_sym_DOT_DOT] = ACTIONS(1837), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -304369,19 +304255,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1333), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(1335), - [anon_sym___reftype] = ACTIONS(1337), - [anon_sym___refvalue] = ACTIONS(1339), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1709), + [anon_sym_stackalloc] = ACTIONS(1187), + [anon_sym_sizeof] = ACTIONS(1189), + [anon_sym_typeof] = ACTIONS(1191), + [anon_sym___makeref] = ACTIONS(1193), + [anon_sym___reftype] = ACTIONS(1195), + [anon_sym___refvalue] = ACTIONS(1197), + [sym_null_literal] = ACTIONS(1199), + [anon_sym_SQUOTE] = ACTIONS(1201), + [sym_integer_literal] = ACTIONS(1199), + [sym_real_literal] = ACTIONS(1203), + [anon_sym_DQUOTE] = ACTIONS(1205), + [sym_verbatim_string_literal] = ACTIONS(1203), + [aux_sym_preproc_if_token1] = ACTIONS(1207), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -304392,90 +304278,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(151), - [sym_interpolation_verbatim_start] = ACTIONS(153), - [sym_interpolation_raw_start] = ACTIONS(155), - [sym_raw_string_start] = ACTIONS(157), + [sym_interpolation_regular_start] = ACTIONS(1209), + [sym_interpolation_verbatim_start] = ACTIONS(1211), + [sym_interpolation_raw_start] = ACTIONS(1213), + [sym_raw_string_start] = ACTIONS(1215), }, [1554] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(3184), - [sym__name] = STATE(5883), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2313), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2269), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(4411), - [sym_non_lvalue_expression] = STATE(4541), - [sym_lvalue_expression] = STATE(3314), - [sym__expression_statement_expression] = STATE(4529), - [sym_assignment_expression] = STATE(4543), - [sym_binary_expression] = STATE(4529), - [sym_postfix_unary_expression] = STATE(4543), - [sym_prefix_unary_expression] = STATE(4543), - [sym__pointer_indirection_expression] = STATE(3175), - [sym_query_expression] = STATE(4529), - [sym_from_clause] = STATE(6156), - [sym_conditional_expression] = STATE(4529), - [sym_conditional_access_expression] = STATE(4529), - [sym_as_expression] = STATE(4529), - [sym_is_expression] = STATE(4529), - [sym_is_pattern_expression] = STATE(4529), - [sym_cast_expression] = STATE(4529), - [sym_checked_expression] = STATE(4529), - [sym_invocation_expression] = STATE(4543), - [sym_switch_expression] = STATE(4529), - [sym_await_expression] = STATE(4543), - [sym_throw_expression] = STATE(4529), - [sym_element_access_expression] = STATE(3175), - [sym_interpolated_string_expression] = STATE(4529), - [sym_member_access_expression] = STATE(3175), - [sym_object_creation_expression] = STATE(4543), - [sym_parenthesized_expression] = STATE(4543), - [sym__parenthesized_lvalue_expression] = STATE(3175), - [sym_lambda_expression] = STATE(4529), - [sym__lambda_expression_init] = STATE(7552), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(4529), - [sym_anonymous_method_expression] = STATE(4529), - [sym_anonymous_object_creation_expression] = STATE(4529), - [sym_implicit_array_creation_expression] = STATE(4529), - [sym_implicit_object_creation_expression] = STATE(4529), - [sym_implicit_stackalloc_expression] = STATE(4529), - [sym_initializer_expression] = STATE(4529), - [sym_default_expression] = STATE(4529), - [sym_with_expression] = STATE(4529), - [sym_sizeof_expression] = STATE(4529), - [sym_typeof_expression] = STATE(4529), - [sym_makeref_expression] = STATE(4529), - [sym_ref_expression] = STATE(4529), - [sym_reftype_expression] = STATE(4529), - [sym_refvalue_expression] = STATE(4529), - [sym_stackalloc_expression] = STATE(4529), - [sym_range_expression] = STATE(4529), - [sym_tuple_expression] = STATE(3175), - [sym_literal] = STATE(4529), - [sym_character_literal] = STATE(4536), - [sym_string_literal] = STATE(4536), - [sym_raw_string_literal] = STATE(4536), - [sym_boolean_literal] = STATE(4536), - [sym_identifier] = STATE(2246), - [sym__reserved_identifier] = STATE(2240), - [sym_preproc_if_in_expression] = STATE(4529), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2603), + [sym__name] = STATE(5870), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2379), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(4732), + [sym_non_lvalue_expression] = STATE(3220), + [sym_lvalue_expression] = STATE(3386), + [sym__expression_statement_expression] = STATE(3236), + [sym_assignment_expression] = STATE(3221), + [sym_binary_expression] = STATE(3236), + [sym_postfix_unary_expression] = STATE(3221), + [sym_prefix_unary_expression] = STATE(3221), + [sym__pointer_indirection_expression] = STATE(2602), + [sym_query_expression] = STATE(3236), + [sym_from_clause] = STATE(6166), + [sym_conditional_expression] = STATE(3236), + [sym_conditional_access_expression] = STATE(3236), + [sym_as_expression] = STATE(3236), + [sym_is_expression] = STATE(3236), + [sym_is_pattern_expression] = STATE(3236), + [sym_cast_expression] = STATE(3236), + [sym_checked_expression] = STATE(3236), + [sym_invocation_expression] = STATE(3221), + [sym_switch_expression] = STATE(3236), + [sym_await_expression] = STATE(3221), + [sym_throw_expression] = STATE(3236), + [sym_element_access_expression] = STATE(2602), + [sym_interpolated_string_expression] = STATE(3236), + [sym_member_access_expression] = STATE(2602), + [sym_object_creation_expression] = STATE(3221), + [sym_parenthesized_expression] = STATE(3221), + [sym__parenthesized_lvalue_expression] = STATE(2602), + [sym_lambda_expression] = STATE(3236), + [sym__lambda_expression_init] = STATE(7418), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3236), + [sym_anonymous_method_expression] = STATE(3236), + [sym_anonymous_object_creation_expression] = STATE(3236), + [sym_implicit_array_creation_expression] = STATE(3236), + [sym_implicit_object_creation_expression] = STATE(3236), + [sym_implicit_stackalloc_expression] = STATE(3236), + [sym_initializer_expression] = STATE(3236), + [sym_default_expression] = STATE(3236), + [sym_with_expression] = STATE(3236), + [sym_sizeof_expression] = STATE(3236), + [sym_typeof_expression] = STATE(3236), + [sym_makeref_expression] = STATE(3236), + [sym_ref_expression] = STATE(3236), + [sym_reftype_expression] = STATE(3236), + [sym_refvalue_expression] = STATE(3236), + [sym_stackalloc_expression] = STATE(3236), + [sym_range_expression] = STATE(3236), + [sym_tuple_expression] = STATE(2602), + [sym_literal] = STATE(3236), + [sym_character_literal] = STATE(3272), + [sym_string_literal] = STATE(3272), + [sym_raw_string_literal] = STATE(3272), + [sym_boolean_literal] = STATE(3272), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3236), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(1554), [sym_preproc_endregion] = STATE(1554), [sym_preproc_line] = STATE(1554), @@ -304485,166 +304371,166 @@ 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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3363), - [sym__identifier_token] = ACTIONS(1387), - [anon_sym_alias] = ACTIONS(1389), - [anon_sym_global] = ACTIONS(1389), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1391), - [anon_sym_LPAREN] = ACTIONS(1463), - [anon_sym_ref] = ACTIONS(1465), - [anon_sym_LBRACE] = ACTIONS(1397), - [anon_sym_delegate] = ACTIONS(1399), - [anon_sym_async] = ACTIONS(1047), - [anon_sym_file] = ACTIONS(1389), - [anon_sym_new] = ACTIONS(1467), - [anon_sym_where] = ACTIONS(1389), - [anon_sym_notnull] = ACTIONS(1389), - [anon_sym_unmanaged] = ACTIONS(1389), - [anon_sym_checked] = ACTIONS(1403), - [anon_sym_BANG] = ACTIONS(1471), - [anon_sym_TILDE] = ACTIONS(1471), - [anon_sym_PLUS_PLUS] = ACTIONS(1471), - [anon_sym_DASH_DASH] = ACTIONS(1471), - [anon_sym_true] = ACTIONS(1409), - [anon_sym_false] = ACTIONS(1409), - [anon_sym_PLUS] = ACTIONS(1469), - [anon_sym_DASH] = ACTIONS(1469), - [anon_sym_STAR] = ACTIONS(1473), - [anon_sym_CARET] = ACTIONS(1471), - [anon_sym_AMP] = ACTIONS(1471), - [anon_sym_this] = ACTIONS(1413), - [anon_sym_scoped] = ACTIONS(1415), - [anon_sym_base] = ACTIONS(1417), - [anon_sym_var] = ACTIONS(1419), - [sym_predefined_type] = ACTIONS(1421), - [anon_sym_unchecked] = ACTIONS(1403), - [anon_sym_yield] = ACTIONS(1389), - [anon_sym_default] = ACTIONS(1423), - [anon_sym_throw] = ACTIONS(1475), - [anon_sym_when] = ACTIONS(1389), - [anon_sym_await] = ACTIONS(1477), - [anon_sym_DOT_DOT] = ACTIONS(1479), - [anon_sym_from] = ACTIONS(1431), - [anon_sym_into] = ACTIONS(1389), - [anon_sym_join] = ACTIONS(1389), - [anon_sym_on] = ACTIONS(1389), - [anon_sym_equals] = ACTIONS(1389), - [anon_sym_let] = ACTIONS(1389), - [anon_sym_orderby] = ACTIONS(1389), - [anon_sym_ascending] = ACTIONS(1389), - [anon_sym_descending] = ACTIONS(1389), - [anon_sym_group] = ACTIONS(1389), - [anon_sym_by] = ACTIONS(1389), - [anon_sym_select] = ACTIONS(1389), - [anon_sym_stackalloc] = ACTIONS(1433), - [anon_sym_sizeof] = ACTIONS(1435), - [anon_sym_typeof] = ACTIONS(1437), - [anon_sym___makeref] = ACTIONS(1439), - [anon_sym___reftype] = ACTIONS(1441), - [anon_sym___refvalue] = ACTIONS(1443), - [sym_null_literal] = ACTIONS(1445), - [anon_sym_SQUOTE] = ACTIONS(1447), - [sym_integer_literal] = ACTIONS(1445), - [sym_real_literal] = ACTIONS(1449), - [anon_sym_DQUOTE] = ACTIONS(1451), - [sym_verbatim_string_literal] = ACTIONS(1449), - [aux_sym_preproc_if_token1] = ACTIONS(1453), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1455), - [sym_interpolation_verbatim_start] = ACTIONS(1457), - [sym_interpolation_raw_start] = ACTIONS(1459), - [sym_raw_string_start] = ACTIONS(1461), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3379), + [sym__identifier_token] = ACTIONS(25), + [anon_sym_alias] = ACTIONS(29), + [anon_sym_global] = ACTIONS(29), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1149), + [anon_sym_LPAREN] = ACTIONS(1821), + [anon_sym_ref] = ACTIONS(1823), + [anon_sym_LBRACE] = ACTIONS(1155), + [anon_sym_delegate] = ACTIONS(1157), + [anon_sym_async] = ACTIONS(1045), + [anon_sym_file] = ACTIONS(29), + [anon_sym_new] = ACTIONS(1825), + [anon_sym_where] = ACTIONS(29), + [anon_sym_notnull] = ACTIONS(29), + [anon_sym_unmanaged] = ACTIONS(29), + [anon_sym_checked] = ACTIONS(1163), + [anon_sym_BANG] = ACTIONS(1829), + [anon_sym_TILDE] = ACTIONS(1829), + [anon_sym_PLUS_PLUS] = ACTIONS(1829), + [anon_sym_DASH_DASH] = ACTIONS(1829), + [anon_sym_true] = ACTIONS(1169), + [anon_sym_false] = ACTIONS(1169), + [anon_sym_PLUS] = ACTIONS(1827), + [anon_sym_DASH] = ACTIONS(1827), + [anon_sym_STAR] = ACTIONS(1831), + [anon_sym_CARET] = ACTIONS(1829), + [anon_sym_AMP] = ACTIONS(1829), + [anon_sym_this] = ACTIONS(1173), + [anon_sym_scoped] = ACTIONS(85), + [anon_sym_base] = ACTIONS(1175), + [anon_sym_var] = ACTIONS(89), + [sym_predefined_type] = ACTIONS(1177), + [anon_sym_unchecked] = ACTIONS(1163), + [anon_sym_yield] = ACTIONS(29), + [anon_sym_default] = ACTIONS(1179), + [anon_sym_throw] = ACTIONS(1833), + [anon_sym_when] = ACTIONS(29), + [anon_sym_await] = ACTIONS(1835), + [anon_sym_DOT_DOT] = ACTIONS(1837), + [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(1187), + [anon_sym_sizeof] = ACTIONS(1189), + [anon_sym_typeof] = ACTIONS(1191), + [anon_sym___makeref] = ACTIONS(1193), + [anon_sym___reftype] = ACTIONS(1195), + [anon_sym___refvalue] = ACTIONS(1197), + [sym_null_literal] = ACTIONS(1199), + [anon_sym_SQUOTE] = ACTIONS(1201), + [sym_integer_literal] = ACTIONS(1199), + [sym_real_literal] = ACTIONS(1203), + [anon_sym_DQUOTE] = ACTIONS(1205), + [sym_verbatim_string_literal] = ACTIONS(1203), + [aux_sym_preproc_if_token1] = ACTIONS(1207), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + [sym_interpolation_regular_start] = ACTIONS(1209), + [sym_interpolation_verbatim_start] = ACTIONS(1211), + [sym_interpolation_raw_start] = ACTIONS(1213), + [sym_raw_string_start] = ACTIONS(1215), }, [1555] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(3184), - [sym__name] = STATE(5883), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2313), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2269), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(4412), - [sym_non_lvalue_expression] = STATE(4541), - [sym_lvalue_expression] = STATE(3314), - [sym__expression_statement_expression] = STATE(4529), - [sym_assignment_expression] = STATE(4543), - [sym_binary_expression] = STATE(4529), - [sym_postfix_unary_expression] = STATE(4543), - [sym_prefix_unary_expression] = STATE(4543), - [sym__pointer_indirection_expression] = STATE(3175), - [sym_query_expression] = STATE(4529), - [sym_from_clause] = STATE(6156), - [sym_conditional_expression] = STATE(4529), - [sym_conditional_access_expression] = STATE(4529), - [sym_as_expression] = STATE(4529), - [sym_is_expression] = STATE(4529), - [sym_is_pattern_expression] = STATE(4529), - [sym_cast_expression] = STATE(4529), - [sym_checked_expression] = STATE(4529), - [sym_invocation_expression] = STATE(4543), - [sym_switch_expression] = STATE(4529), - [sym_await_expression] = STATE(4543), - [sym_throw_expression] = STATE(4529), - [sym_element_access_expression] = STATE(3175), - [sym_interpolated_string_expression] = STATE(4529), - [sym_member_access_expression] = STATE(3175), - [sym_object_creation_expression] = STATE(4543), - [sym_parenthesized_expression] = STATE(4543), - [sym__parenthesized_lvalue_expression] = STATE(3175), - [sym_lambda_expression] = STATE(4529), - [sym__lambda_expression_init] = STATE(7552), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(4529), - [sym_anonymous_method_expression] = STATE(4529), - [sym_anonymous_object_creation_expression] = STATE(4529), - [sym_implicit_array_creation_expression] = STATE(4529), - [sym_implicit_object_creation_expression] = STATE(4529), - [sym_implicit_stackalloc_expression] = STATE(4529), - [sym_initializer_expression] = STATE(4529), - [sym_default_expression] = STATE(4529), - [sym_with_expression] = STATE(4529), - [sym_sizeof_expression] = STATE(4529), - [sym_typeof_expression] = STATE(4529), - [sym_makeref_expression] = STATE(4529), - [sym_ref_expression] = STATE(4529), - [sym_reftype_expression] = STATE(4529), - [sym_refvalue_expression] = STATE(4529), - [sym_stackalloc_expression] = STATE(4529), - [sym_range_expression] = STATE(4529), - [sym_tuple_expression] = STATE(3175), - [sym_literal] = STATE(4529), - [sym_character_literal] = STATE(4536), - [sym_string_literal] = STATE(4536), - [sym_raw_string_literal] = STATE(4536), - [sym_boolean_literal] = STATE(4536), - [sym_identifier] = STATE(2246), - [sym__reserved_identifier] = STATE(2240), - [sym_preproc_if_in_expression] = STATE(4529), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(5879), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2238), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(3507), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3398), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3102), + [sym_postfix_unary_expression] = STATE(3079), + [sym_prefix_unary_expression] = STATE(3079), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6163), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3102), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3079), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3102), + [sym_member_access_expression] = STATE(2472), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3079), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7496), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(3102), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3102), + [sym_typeof_expression] = STATE(3102), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2472), + [sym_literal] = STATE(3102), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(1555), [sym_preproc_endregion] = STATE(1555), [sym_preproc_line] = STATE(1555), @@ -304654,166 +304540,166 @@ 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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3363), - [sym__identifier_token] = ACTIONS(1387), - [anon_sym_alias] = ACTIONS(1389), - [anon_sym_global] = ACTIONS(1389), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1391), - [anon_sym_LPAREN] = ACTIONS(1463), - [anon_sym_ref] = ACTIONS(1465), - [anon_sym_LBRACE] = ACTIONS(1397), - [anon_sym_delegate] = ACTIONS(1399), - [anon_sym_async] = ACTIONS(1047), - [anon_sym_file] = ACTIONS(1389), - [anon_sym_new] = ACTIONS(1467), - [anon_sym_where] = ACTIONS(1389), - [anon_sym_notnull] = ACTIONS(1389), - [anon_sym_unmanaged] = ACTIONS(1389), - [anon_sym_checked] = ACTIONS(1403), - [anon_sym_BANG] = ACTIONS(1471), - [anon_sym_TILDE] = ACTIONS(1471), - [anon_sym_PLUS_PLUS] = ACTIONS(1471), - [anon_sym_DASH_DASH] = ACTIONS(1471), - [anon_sym_true] = ACTIONS(1409), - [anon_sym_false] = ACTIONS(1409), - [anon_sym_PLUS] = ACTIONS(1469), - [anon_sym_DASH] = ACTIONS(1469), - [anon_sym_STAR] = ACTIONS(1473), - [anon_sym_CARET] = ACTIONS(1471), - [anon_sym_AMP] = ACTIONS(1471), - [anon_sym_this] = ACTIONS(1413), - [anon_sym_scoped] = ACTIONS(1415), - [anon_sym_base] = ACTIONS(1417), - [anon_sym_var] = ACTIONS(1419), - [sym_predefined_type] = ACTIONS(1421), - [anon_sym_unchecked] = ACTIONS(1403), - [anon_sym_yield] = ACTIONS(1389), - [anon_sym_default] = ACTIONS(1423), - [anon_sym_throw] = ACTIONS(1475), - [anon_sym_when] = ACTIONS(1389), - [anon_sym_await] = ACTIONS(1477), - [anon_sym_DOT_DOT] = ACTIONS(1479), - [anon_sym_from] = ACTIONS(1431), - [anon_sym_into] = ACTIONS(1389), - [anon_sym_join] = ACTIONS(1389), - [anon_sym_on] = ACTIONS(1389), - [anon_sym_equals] = ACTIONS(1389), - [anon_sym_let] = ACTIONS(1389), - [anon_sym_orderby] = ACTIONS(1389), - [anon_sym_ascending] = ACTIONS(1389), - [anon_sym_descending] = ACTIONS(1389), - [anon_sym_group] = ACTIONS(1389), - [anon_sym_by] = ACTIONS(1389), - [anon_sym_select] = ACTIONS(1389), - [anon_sym_stackalloc] = ACTIONS(1433), - [anon_sym_sizeof] = ACTIONS(1435), - [anon_sym_typeof] = ACTIONS(1437), - [anon_sym___makeref] = ACTIONS(1439), - [anon_sym___reftype] = ACTIONS(1441), - [anon_sym___refvalue] = ACTIONS(1443), - [sym_null_literal] = ACTIONS(1445), - [anon_sym_SQUOTE] = ACTIONS(1447), - [sym_integer_literal] = ACTIONS(1445), - [sym_real_literal] = ACTIONS(1449), - [anon_sym_DQUOTE] = ACTIONS(1451), - [sym_verbatim_string_literal] = ACTIONS(1449), - [aux_sym_preproc_if_token1] = ACTIONS(1453), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1455), - [sym_interpolation_verbatim_start] = ACTIONS(1457), - [sym_interpolation_raw_start] = ACTIONS(1459), - [sym_raw_string_start] = ACTIONS(1461), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), + [sym__identifier_token] = ACTIONS(25), + [anon_sym_alias] = ACTIONS(29), + [anon_sym_global] = ACTIONS(29), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1479), + [anon_sym_LPAREN] = ACTIONS(1487), + [anon_sym_ref] = ACTIONS(1489), + [anon_sym_LBRACE] = ACTIONS(1481), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), + [anon_sym_file] = ACTIONS(29), + [anon_sym_new] = ACTIONS(1095), + [anon_sym_where] = ACTIONS(29), + [anon_sym_notnull] = ACTIONS(29), + [anon_sym_unmanaged] = ACTIONS(29), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(1493), + [anon_sym_TILDE] = ACTIONS(1493), + [anon_sym_PLUS_PLUS] = ACTIONS(1493), + [anon_sym_DASH_DASH] = ACTIONS(1493), + [anon_sym_true] = ACTIONS(77), + [anon_sym_false] = ACTIONS(77), + [anon_sym_PLUS] = ACTIONS(1491), + [anon_sym_DASH] = ACTIONS(1491), + [anon_sym_STAR] = ACTIONS(1105), + [anon_sym_CARET] = ACTIONS(1493), + [anon_sym_AMP] = ACTIONS(1493), + [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(1113), + [anon_sym_when] = ACTIONS(29), + [anon_sym_await] = ACTIONS(1115), + [anon_sym_DOT_DOT] = ACTIONS(1119), + [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), }, [1556] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(3184), - [sym__name] = STATE(5883), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2313), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2269), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(4413), - [sym_non_lvalue_expression] = STATE(4541), - [sym_lvalue_expression] = STATE(3314), - [sym__expression_statement_expression] = STATE(4529), - [sym_assignment_expression] = STATE(4543), - [sym_binary_expression] = STATE(4529), - [sym_postfix_unary_expression] = STATE(4543), - [sym_prefix_unary_expression] = STATE(4543), - [sym__pointer_indirection_expression] = STATE(3175), - [sym_query_expression] = STATE(4529), - [sym_from_clause] = STATE(6156), - [sym_conditional_expression] = STATE(4529), - [sym_conditional_access_expression] = STATE(4529), - [sym_as_expression] = STATE(4529), - [sym_is_expression] = STATE(4529), - [sym_is_pattern_expression] = STATE(4529), - [sym_cast_expression] = STATE(4529), - [sym_checked_expression] = STATE(4529), - [sym_invocation_expression] = STATE(4543), - [sym_switch_expression] = STATE(4529), - [sym_await_expression] = STATE(4543), - [sym_throw_expression] = STATE(4529), - [sym_element_access_expression] = STATE(3175), - [sym_interpolated_string_expression] = STATE(4529), - [sym_member_access_expression] = STATE(3175), - [sym_object_creation_expression] = STATE(4543), - [sym_parenthesized_expression] = STATE(4543), - [sym__parenthesized_lvalue_expression] = STATE(3175), - [sym_lambda_expression] = STATE(4529), - [sym__lambda_expression_init] = STATE(7552), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(4529), - [sym_anonymous_method_expression] = STATE(4529), - [sym_anonymous_object_creation_expression] = STATE(4529), - [sym_implicit_array_creation_expression] = STATE(4529), - [sym_implicit_object_creation_expression] = STATE(4529), - [sym_implicit_stackalloc_expression] = STATE(4529), - [sym_initializer_expression] = STATE(4529), - [sym_default_expression] = STATE(4529), - [sym_with_expression] = STATE(4529), - [sym_sizeof_expression] = STATE(4529), - [sym_typeof_expression] = STATE(4529), - [sym_makeref_expression] = STATE(4529), - [sym_ref_expression] = STATE(4529), - [sym_reftype_expression] = STATE(4529), - [sym_refvalue_expression] = STATE(4529), - [sym_stackalloc_expression] = STATE(4529), - [sym_range_expression] = STATE(4529), - [sym_tuple_expression] = STATE(3175), - [sym_literal] = STATE(4529), - [sym_character_literal] = STATE(4536), - [sym_string_literal] = STATE(4536), - [sym_raw_string_literal] = STATE(4536), - [sym_boolean_literal] = STATE(4536), - [sym_identifier] = STATE(2246), - [sym__reserved_identifier] = STATE(2240), - [sym_preproc_if_in_expression] = STATE(4529), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(5896), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2362), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(5660), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(2471), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3102), + [sym_postfix_unary_expression] = STATE(3079), + [sym_prefix_unary_expression] = STATE(3079), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6134), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3102), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3079), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3102), + [sym_member_access_expression] = STATE(2472), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3079), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7425), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(3102), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3102), + [sym_typeof_expression] = STATE(3102), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2472), + [sym_literal] = STATE(3102), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(1556), [sym_preproc_endregion] = STATE(1556), [sym_preproc_line] = STATE(1556), @@ -304823,166 +304709,166 @@ 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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3363), - [sym__identifier_token] = ACTIONS(1387), - [anon_sym_alias] = ACTIONS(1389), - [anon_sym_global] = ACTIONS(1389), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1391), - [anon_sym_LPAREN] = ACTIONS(1463), - [anon_sym_ref] = ACTIONS(1465), - [anon_sym_LBRACE] = ACTIONS(1397), - [anon_sym_delegate] = ACTIONS(1399), - [anon_sym_async] = ACTIONS(1047), - [anon_sym_file] = ACTIONS(1389), - [anon_sym_new] = ACTIONS(1467), - [anon_sym_where] = ACTIONS(1389), - [anon_sym_notnull] = ACTIONS(1389), - [anon_sym_unmanaged] = ACTIONS(1389), - [anon_sym_checked] = ACTIONS(1403), - [anon_sym_BANG] = ACTIONS(1471), - [anon_sym_TILDE] = ACTIONS(1471), - [anon_sym_PLUS_PLUS] = ACTIONS(1471), - [anon_sym_DASH_DASH] = ACTIONS(1471), - [anon_sym_true] = ACTIONS(1409), - [anon_sym_false] = ACTIONS(1409), - [anon_sym_PLUS] = ACTIONS(1469), - [anon_sym_DASH] = ACTIONS(1469), - [anon_sym_STAR] = ACTIONS(1473), - [anon_sym_CARET] = ACTIONS(1471), - [anon_sym_AMP] = ACTIONS(1471), - [anon_sym_this] = ACTIONS(1413), - [anon_sym_scoped] = ACTIONS(1415), - [anon_sym_base] = ACTIONS(1417), - [anon_sym_var] = ACTIONS(1419), - [sym_predefined_type] = ACTIONS(1421), - [anon_sym_unchecked] = ACTIONS(1403), - [anon_sym_yield] = ACTIONS(1389), - [anon_sym_default] = ACTIONS(1423), - [anon_sym_throw] = ACTIONS(1475), - [anon_sym_when] = ACTIONS(1389), - [anon_sym_await] = ACTIONS(1477), - [anon_sym_DOT_DOT] = ACTIONS(1479), - [anon_sym_from] = ACTIONS(1431), - [anon_sym_into] = ACTIONS(1389), - [anon_sym_join] = ACTIONS(1389), - [anon_sym_on] = ACTIONS(1389), - [anon_sym_equals] = ACTIONS(1389), - [anon_sym_let] = ACTIONS(1389), - [anon_sym_orderby] = ACTIONS(1389), - [anon_sym_ascending] = ACTIONS(1389), - [anon_sym_descending] = ACTIONS(1389), - [anon_sym_group] = ACTIONS(1389), - [anon_sym_by] = ACTIONS(1389), - [anon_sym_select] = ACTIONS(1389), - [anon_sym_stackalloc] = ACTIONS(1433), - [anon_sym_sizeof] = ACTIONS(1435), - [anon_sym_typeof] = ACTIONS(1437), - [anon_sym___makeref] = ACTIONS(1439), - [anon_sym___reftype] = ACTIONS(1441), - [anon_sym___refvalue] = ACTIONS(1443), - [sym_null_literal] = ACTIONS(1445), - [anon_sym_SQUOTE] = ACTIONS(1447), - [sym_integer_literal] = ACTIONS(1445), - [sym_real_literal] = ACTIONS(1449), - [anon_sym_DQUOTE] = ACTIONS(1451), - [sym_verbatim_string_literal] = ACTIONS(1449), - [aux_sym_preproc_if_token1] = ACTIONS(1453), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1455), - [sym_interpolation_verbatim_start] = ACTIONS(1457), - [sym_interpolation_raw_start] = ACTIONS(1459), - [sym_raw_string_start] = ACTIONS(1461), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), + [sym__identifier_token] = ACTIONS(25), + [anon_sym_alias] = ACTIONS(29), + [anon_sym_global] = ACTIONS(29), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1479), + [anon_sym_LPAREN] = ACTIONS(43), + [anon_sym_ref] = ACTIONS(715), + [anon_sym_LBRACE] = ACTIONS(1481), + [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(1525), + [anon_sym_TILDE] = ACTIONS(1525), + [anon_sym_PLUS_PLUS] = ACTIONS(1525), + [anon_sym_DASH_DASH] = ACTIONS(1525), + [anon_sym_true] = ACTIONS(77), + [anon_sym_false] = ACTIONS(77), + [anon_sym_PLUS] = ACTIONS(1523), + [anon_sym_DASH] = ACTIONS(1523), + [anon_sym_STAR] = ACTIONS(2145), + [anon_sym_CARET] = ACTIONS(1525), + [anon_sym_AMP] = ACTIONS(1525), + [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(1527), + [anon_sym_when] = ACTIONS(29), + [anon_sym_await] = ACTIONS(1529), + [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), }, [1557] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(3184), - [sym__name] = STATE(5883), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2313), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2269), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(4428), - [sym_non_lvalue_expression] = STATE(4541), - [sym_lvalue_expression] = STATE(3314), - [sym__expression_statement_expression] = STATE(4529), - [sym_assignment_expression] = STATE(4543), - [sym_binary_expression] = STATE(4529), - [sym_postfix_unary_expression] = STATE(4543), - [sym_prefix_unary_expression] = STATE(4543), - [sym__pointer_indirection_expression] = STATE(3175), - [sym_query_expression] = STATE(4529), - [sym_from_clause] = STATE(6156), - [sym_conditional_expression] = STATE(4529), - [sym_conditional_access_expression] = STATE(4529), - [sym_as_expression] = STATE(4529), - [sym_is_expression] = STATE(4529), - [sym_is_pattern_expression] = STATE(4529), - [sym_cast_expression] = STATE(4529), - [sym_checked_expression] = STATE(4529), - [sym_invocation_expression] = STATE(4543), - [sym_switch_expression] = STATE(4529), - [sym_await_expression] = STATE(4543), - [sym_throw_expression] = STATE(4529), - [sym_element_access_expression] = STATE(3175), - [sym_interpolated_string_expression] = STATE(4529), - [sym_member_access_expression] = STATE(3175), - [sym_object_creation_expression] = STATE(4543), - [sym_parenthesized_expression] = STATE(4543), - [sym__parenthesized_lvalue_expression] = STATE(3175), - [sym_lambda_expression] = STATE(4529), - [sym__lambda_expression_init] = STATE(7552), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(4529), - [sym_anonymous_method_expression] = STATE(4529), - [sym_anonymous_object_creation_expression] = STATE(4529), - [sym_implicit_array_creation_expression] = STATE(4529), - [sym_implicit_object_creation_expression] = STATE(4529), - [sym_implicit_stackalloc_expression] = STATE(4529), - [sym_initializer_expression] = STATE(4529), - [sym_default_expression] = STATE(4529), - [sym_with_expression] = STATE(4529), - [sym_sizeof_expression] = STATE(4529), - [sym_typeof_expression] = STATE(4529), - [sym_makeref_expression] = STATE(4529), - [sym_ref_expression] = STATE(4529), - [sym_reftype_expression] = STATE(4529), - [sym_refvalue_expression] = STATE(4529), - [sym_stackalloc_expression] = STATE(4529), - [sym_range_expression] = STATE(4529), - [sym_tuple_expression] = STATE(3175), - [sym_literal] = STATE(4529), - [sym_character_literal] = STATE(4536), - [sym_string_literal] = STATE(4536), - [sym_raw_string_literal] = STATE(4536), - [sym_boolean_literal] = STATE(4536), - [sym_identifier] = STATE(2246), - [sym__reserved_identifier] = STATE(2240), - [sym_preproc_if_in_expression] = STATE(4529), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2603), + [sym__name] = STATE(5872), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2387), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(4750), + [sym_non_lvalue_expression] = STATE(3220), + [sym_lvalue_expression] = STATE(3395), + [sym__expression_statement_expression] = STATE(3236), + [sym_assignment_expression] = STATE(3221), + [sym_binary_expression] = STATE(3236), + [sym_postfix_unary_expression] = STATE(3221), + [sym_prefix_unary_expression] = STATE(3221), + [sym__pointer_indirection_expression] = STATE(2602), + [sym_query_expression] = STATE(3236), + [sym_from_clause] = STATE(6141), + [sym_conditional_expression] = STATE(3236), + [sym_conditional_access_expression] = STATE(3236), + [sym_as_expression] = STATE(3236), + [sym_is_expression] = STATE(3236), + [sym_is_pattern_expression] = STATE(3236), + [sym_cast_expression] = STATE(3236), + [sym_checked_expression] = STATE(3236), + [sym_invocation_expression] = STATE(3221), + [sym_switch_expression] = STATE(3236), + [sym_await_expression] = STATE(3221), + [sym_throw_expression] = STATE(3236), + [sym_element_access_expression] = STATE(2602), + [sym_interpolated_string_expression] = STATE(3236), + [sym_member_access_expression] = STATE(2602), + [sym_object_creation_expression] = STATE(3221), + [sym_parenthesized_expression] = STATE(3221), + [sym__parenthesized_lvalue_expression] = STATE(2602), + [sym_lambda_expression] = STATE(3236), + [sym__lambda_expression_init] = STATE(7446), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3236), + [sym_anonymous_method_expression] = STATE(3236), + [sym_anonymous_object_creation_expression] = STATE(3236), + [sym_implicit_array_creation_expression] = STATE(3236), + [sym_implicit_object_creation_expression] = STATE(3236), + [sym_implicit_stackalloc_expression] = STATE(3236), + [sym_initializer_expression] = STATE(3236), + [sym_default_expression] = STATE(3236), + [sym_with_expression] = STATE(3236), + [sym_sizeof_expression] = STATE(3236), + [sym_typeof_expression] = STATE(3236), + [sym_makeref_expression] = STATE(3236), + [sym_ref_expression] = STATE(3236), + [sym_reftype_expression] = STATE(3236), + [sym_refvalue_expression] = STATE(3236), + [sym_stackalloc_expression] = STATE(3236), + [sym_range_expression] = STATE(3236), + [sym_tuple_expression] = STATE(2602), + [sym_literal] = STATE(3236), + [sym_character_literal] = STATE(3272), + [sym_string_literal] = STATE(3272), + [sym_raw_string_literal] = STATE(3272), + [sym_boolean_literal] = STATE(3272), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3236), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(1557), [sym_preproc_endregion] = STATE(1557), [sym_preproc_line] = STATE(1557), @@ -304992,166 +304878,166 @@ 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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3363), - [sym__identifier_token] = ACTIONS(1387), - [anon_sym_alias] = ACTIONS(1389), - [anon_sym_global] = ACTIONS(1389), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1391), - [anon_sym_LPAREN] = ACTIONS(1463), - [anon_sym_ref] = ACTIONS(1465), - [anon_sym_LBRACE] = ACTIONS(1397), - [anon_sym_delegate] = ACTIONS(1399), - [anon_sym_async] = ACTIONS(1047), - [anon_sym_file] = ACTIONS(1389), - [anon_sym_new] = ACTIONS(1467), - [anon_sym_where] = ACTIONS(1389), - [anon_sym_notnull] = ACTIONS(1389), - [anon_sym_unmanaged] = ACTIONS(1389), - [anon_sym_checked] = ACTIONS(1403), - [anon_sym_BANG] = ACTIONS(1471), - [anon_sym_TILDE] = ACTIONS(1471), - [anon_sym_PLUS_PLUS] = ACTIONS(1471), - [anon_sym_DASH_DASH] = ACTIONS(1471), - [anon_sym_true] = ACTIONS(1409), - [anon_sym_false] = ACTIONS(1409), - [anon_sym_PLUS] = ACTIONS(1469), - [anon_sym_DASH] = ACTIONS(1469), - [anon_sym_STAR] = ACTIONS(1473), - [anon_sym_CARET] = ACTIONS(1471), - [anon_sym_AMP] = ACTIONS(1471), - [anon_sym_this] = ACTIONS(1413), - [anon_sym_scoped] = ACTIONS(1415), - [anon_sym_base] = ACTIONS(1417), - [anon_sym_var] = ACTIONS(1419), - [sym_predefined_type] = ACTIONS(1421), - [anon_sym_unchecked] = ACTIONS(1403), - [anon_sym_yield] = ACTIONS(1389), - [anon_sym_default] = ACTIONS(1423), - [anon_sym_throw] = ACTIONS(1475), - [anon_sym_when] = ACTIONS(1389), - [anon_sym_await] = ACTIONS(1477), - [anon_sym_DOT_DOT] = ACTIONS(1479), - [anon_sym_from] = ACTIONS(1431), - [anon_sym_into] = ACTIONS(1389), - [anon_sym_join] = ACTIONS(1389), - [anon_sym_on] = ACTIONS(1389), - [anon_sym_equals] = ACTIONS(1389), - [anon_sym_let] = ACTIONS(1389), - [anon_sym_orderby] = ACTIONS(1389), - [anon_sym_ascending] = ACTIONS(1389), - [anon_sym_descending] = ACTIONS(1389), - [anon_sym_group] = ACTIONS(1389), - [anon_sym_by] = ACTIONS(1389), - [anon_sym_select] = ACTIONS(1389), - [anon_sym_stackalloc] = ACTIONS(1433), - [anon_sym_sizeof] = ACTIONS(1435), - [anon_sym_typeof] = ACTIONS(1437), - [anon_sym___makeref] = ACTIONS(1439), - [anon_sym___reftype] = ACTIONS(1441), - [anon_sym___refvalue] = ACTIONS(1443), - [sym_null_literal] = ACTIONS(1445), - [anon_sym_SQUOTE] = ACTIONS(1447), - [sym_integer_literal] = ACTIONS(1445), - [sym_real_literal] = ACTIONS(1449), - [anon_sym_DQUOTE] = ACTIONS(1451), - [sym_verbatim_string_literal] = ACTIONS(1449), - [aux_sym_preproc_if_token1] = ACTIONS(1453), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1455), - [sym_interpolation_verbatim_start] = ACTIONS(1457), - [sym_interpolation_raw_start] = ACTIONS(1459), - [sym_raw_string_start] = ACTIONS(1461), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3379), + [sym__identifier_token] = ACTIONS(25), + [anon_sym_alias] = ACTIONS(29), + [anon_sym_global] = ACTIONS(29), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1149), + [anon_sym_LPAREN] = ACTIONS(1857), + [anon_sym_ref] = ACTIONS(1859), + [anon_sym_LBRACE] = ACTIONS(1155), + [anon_sym_delegate] = ACTIONS(1157), + [anon_sym_async] = ACTIONS(1045), + [anon_sym_file] = ACTIONS(29), + [anon_sym_new] = ACTIONS(1861), + [anon_sym_where] = ACTIONS(29), + [anon_sym_notnull] = ACTIONS(29), + [anon_sym_unmanaged] = ACTIONS(29), + [anon_sym_checked] = ACTIONS(1163), + [anon_sym_BANG] = ACTIONS(1865), + [anon_sym_TILDE] = ACTIONS(1865), + [anon_sym_PLUS_PLUS] = ACTIONS(1865), + [anon_sym_DASH_DASH] = ACTIONS(1865), + [anon_sym_true] = ACTIONS(1169), + [anon_sym_false] = ACTIONS(1169), + [anon_sym_PLUS] = ACTIONS(1863), + [anon_sym_DASH] = ACTIONS(1863), + [anon_sym_STAR] = ACTIONS(1867), + [anon_sym_CARET] = ACTIONS(1865), + [anon_sym_AMP] = ACTIONS(1865), + [anon_sym_this] = ACTIONS(1173), + [anon_sym_scoped] = ACTIONS(85), + [anon_sym_base] = ACTIONS(1175), + [anon_sym_var] = ACTIONS(89), + [sym_predefined_type] = ACTIONS(1177), + [anon_sym_unchecked] = ACTIONS(1163), + [anon_sym_yield] = ACTIONS(29), + [anon_sym_default] = ACTIONS(1179), + [anon_sym_throw] = ACTIONS(1869), + [anon_sym_when] = ACTIONS(29), + [anon_sym_await] = ACTIONS(1871), + [anon_sym_DOT_DOT] = ACTIONS(1873), + [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(1187), + [anon_sym_sizeof] = ACTIONS(1189), + [anon_sym_typeof] = ACTIONS(1191), + [anon_sym___makeref] = ACTIONS(1193), + [anon_sym___reftype] = ACTIONS(1195), + [anon_sym___refvalue] = ACTIONS(1197), + [sym_null_literal] = ACTIONS(1199), + [anon_sym_SQUOTE] = ACTIONS(1201), + [sym_integer_literal] = ACTIONS(1199), + [sym_real_literal] = ACTIONS(1203), + [anon_sym_DQUOTE] = ACTIONS(1205), + [sym_verbatim_string_literal] = ACTIONS(1203), + [aux_sym_preproc_if_token1] = ACTIONS(1207), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + [sym_interpolation_regular_start] = ACTIONS(1209), + [sym_interpolation_verbatim_start] = ACTIONS(1211), + [sym_interpolation_raw_start] = ACTIONS(1213), + [sym_raw_string_start] = ACTIONS(1215), }, [1558] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(3184), - [sym__name] = STATE(5883), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2313), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2269), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(4496), - [sym_non_lvalue_expression] = STATE(4541), - [sym_lvalue_expression] = STATE(3314), - [sym__expression_statement_expression] = STATE(4529), - [sym_assignment_expression] = STATE(4543), - [sym_binary_expression] = STATE(4529), - [sym_postfix_unary_expression] = STATE(4543), - [sym_prefix_unary_expression] = STATE(4543), - [sym__pointer_indirection_expression] = STATE(3175), - [sym_query_expression] = STATE(4529), - [sym_from_clause] = STATE(6156), - [sym_conditional_expression] = STATE(4529), - [sym_conditional_access_expression] = STATE(4529), - [sym_as_expression] = STATE(4529), - [sym_is_expression] = STATE(4529), - [sym_is_pattern_expression] = STATE(4529), - [sym_cast_expression] = STATE(4529), - [sym_checked_expression] = STATE(4529), - [sym_invocation_expression] = STATE(4543), - [sym_switch_expression] = STATE(4529), - [sym_await_expression] = STATE(4543), - [sym_throw_expression] = STATE(4529), - [sym_element_access_expression] = STATE(3175), - [sym_interpolated_string_expression] = STATE(4529), - [sym_member_access_expression] = STATE(3175), - [sym_object_creation_expression] = STATE(4543), - [sym_parenthesized_expression] = STATE(4543), - [sym__parenthesized_lvalue_expression] = STATE(3175), - [sym_lambda_expression] = STATE(4529), - [sym__lambda_expression_init] = STATE(7552), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(4529), - [sym_anonymous_method_expression] = STATE(4529), - [sym_anonymous_object_creation_expression] = STATE(4529), - [sym_implicit_array_creation_expression] = STATE(4529), - [sym_implicit_object_creation_expression] = STATE(4529), - [sym_implicit_stackalloc_expression] = STATE(4529), - [sym_initializer_expression] = STATE(4529), - [sym_default_expression] = STATE(4529), - [sym_with_expression] = STATE(4529), - [sym_sizeof_expression] = STATE(4529), - [sym_typeof_expression] = STATE(4529), - [sym_makeref_expression] = STATE(4529), - [sym_ref_expression] = STATE(4529), - [sym_reftype_expression] = STATE(4529), - [sym_refvalue_expression] = STATE(4529), - [sym_stackalloc_expression] = STATE(4529), - [sym_range_expression] = STATE(4529), - [sym_tuple_expression] = STATE(3175), - [sym_literal] = STATE(4529), - [sym_character_literal] = STATE(4536), - [sym_string_literal] = STATE(4536), - [sym_raw_string_literal] = STATE(4536), - [sym_boolean_literal] = STATE(4536), - [sym_identifier] = STATE(2246), - [sym__reserved_identifier] = STATE(2240), - [sym_preproc_if_in_expression] = STATE(4529), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2603), + [sym__name] = STATE(5872), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2387), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(4751), + [sym_non_lvalue_expression] = STATE(3220), + [sym_lvalue_expression] = STATE(3395), + [sym__expression_statement_expression] = STATE(3236), + [sym_assignment_expression] = STATE(3221), + [sym_binary_expression] = STATE(3236), + [sym_postfix_unary_expression] = STATE(3221), + [sym_prefix_unary_expression] = STATE(3221), + [sym__pointer_indirection_expression] = STATE(2602), + [sym_query_expression] = STATE(3236), + [sym_from_clause] = STATE(6141), + [sym_conditional_expression] = STATE(3236), + [sym_conditional_access_expression] = STATE(3236), + [sym_as_expression] = STATE(3236), + [sym_is_expression] = STATE(3236), + [sym_is_pattern_expression] = STATE(3236), + [sym_cast_expression] = STATE(3236), + [sym_checked_expression] = STATE(3236), + [sym_invocation_expression] = STATE(3221), + [sym_switch_expression] = STATE(3236), + [sym_await_expression] = STATE(3221), + [sym_throw_expression] = STATE(3236), + [sym_element_access_expression] = STATE(2602), + [sym_interpolated_string_expression] = STATE(3236), + [sym_member_access_expression] = STATE(2602), + [sym_object_creation_expression] = STATE(3221), + [sym_parenthesized_expression] = STATE(3221), + [sym__parenthesized_lvalue_expression] = STATE(2602), + [sym_lambda_expression] = STATE(3236), + [sym__lambda_expression_init] = STATE(7446), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3236), + [sym_anonymous_method_expression] = STATE(3236), + [sym_anonymous_object_creation_expression] = STATE(3236), + [sym_implicit_array_creation_expression] = STATE(3236), + [sym_implicit_object_creation_expression] = STATE(3236), + [sym_implicit_stackalloc_expression] = STATE(3236), + [sym_initializer_expression] = STATE(3236), + [sym_default_expression] = STATE(3236), + [sym_with_expression] = STATE(3236), + [sym_sizeof_expression] = STATE(3236), + [sym_typeof_expression] = STATE(3236), + [sym_makeref_expression] = STATE(3236), + [sym_ref_expression] = STATE(3236), + [sym_reftype_expression] = STATE(3236), + [sym_refvalue_expression] = STATE(3236), + [sym_stackalloc_expression] = STATE(3236), + [sym_range_expression] = STATE(3236), + [sym_tuple_expression] = STATE(2602), + [sym_literal] = STATE(3236), + [sym_character_literal] = STATE(3272), + [sym_string_literal] = STATE(3272), + [sym_raw_string_literal] = STATE(3272), + [sym_boolean_literal] = STATE(3272), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3236), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(1558), [sym_preproc_endregion] = STATE(1558), [sym_preproc_line] = STATE(1558), @@ -305161,166 +305047,166 @@ 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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3363), - [sym__identifier_token] = ACTIONS(1387), - [anon_sym_alias] = ACTIONS(1389), - [anon_sym_global] = ACTIONS(1389), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1391), - [anon_sym_LPAREN] = ACTIONS(1463), - [anon_sym_ref] = ACTIONS(1465), - [anon_sym_LBRACE] = ACTIONS(1397), - [anon_sym_delegate] = ACTIONS(1399), - [anon_sym_async] = ACTIONS(1047), - [anon_sym_file] = ACTIONS(1389), - [anon_sym_new] = ACTIONS(1467), - [anon_sym_where] = ACTIONS(1389), - [anon_sym_notnull] = ACTIONS(1389), - [anon_sym_unmanaged] = ACTIONS(1389), - [anon_sym_checked] = ACTIONS(1403), - [anon_sym_BANG] = ACTIONS(1471), - [anon_sym_TILDE] = ACTIONS(1471), - [anon_sym_PLUS_PLUS] = ACTIONS(1471), - [anon_sym_DASH_DASH] = ACTIONS(1471), - [anon_sym_true] = ACTIONS(1409), - [anon_sym_false] = ACTIONS(1409), - [anon_sym_PLUS] = ACTIONS(1469), - [anon_sym_DASH] = ACTIONS(1469), - [anon_sym_STAR] = ACTIONS(1473), - [anon_sym_CARET] = ACTIONS(1471), - [anon_sym_AMP] = ACTIONS(1471), - [anon_sym_this] = ACTIONS(1413), - [anon_sym_scoped] = ACTIONS(1415), - [anon_sym_base] = ACTIONS(1417), - [anon_sym_var] = ACTIONS(1419), - [sym_predefined_type] = ACTIONS(1421), - [anon_sym_unchecked] = ACTIONS(1403), - [anon_sym_yield] = ACTIONS(1389), - [anon_sym_default] = ACTIONS(1423), - [anon_sym_throw] = ACTIONS(1475), - [anon_sym_when] = ACTIONS(1389), - [anon_sym_await] = ACTIONS(1477), - [anon_sym_DOT_DOT] = ACTIONS(1479), - [anon_sym_from] = ACTIONS(1431), - [anon_sym_into] = ACTIONS(1389), - [anon_sym_join] = ACTIONS(1389), - [anon_sym_on] = ACTIONS(1389), - [anon_sym_equals] = ACTIONS(1389), - [anon_sym_let] = ACTIONS(1389), - [anon_sym_orderby] = ACTIONS(1389), - [anon_sym_ascending] = ACTIONS(1389), - [anon_sym_descending] = ACTIONS(1389), - [anon_sym_group] = ACTIONS(1389), - [anon_sym_by] = ACTIONS(1389), - [anon_sym_select] = ACTIONS(1389), - [anon_sym_stackalloc] = ACTIONS(1433), - [anon_sym_sizeof] = ACTIONS(1435), - [anon_sym_typeof] = ACTIONS(1437), - [anon_sym___makeref] = ACTIONS(1439), - [anon_sym___reftype] = ACTIONS(1441), - [anon_sym___refvalue] = ACTIONS(1443), - [sym_null_literal] = ACTIONS(1445), - [anon_sym_SQUOTE] = ACTIONS(1447), - [sym_integer_literal] = ACTIONS(1445), - [sym_real_literal] = ACTIONS(1449), - [anon_sym_DQUOTE] = ACTIONS(1451), - [sym_verbatim_string_literal] = ACTIONS(1449), - [aux_sym_preproc_if_token1] = ACTIONS(1453), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1455), - [sym_interpolation_verbatim_start] = ACTIONS(1457), - [sym_interpolation_raw_start] = ACTIONS(1459), - [sym_raw_string_start] = ACTIONS(1461), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3379), + [sym__identifier_token] = ACTIONS(25), + [anon_sym_alias] = ACTIONS(29), + [anon_sym_global] = ACTIONS(29), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1149), + [anon_sym_LPAREN] = ACTIONS(1857), + [anon_sym_ref] = ACTIONS(1859), + [anon_sym_LBRACE] = ACTIONS(1155), + [anon_sym_delegate] = ACTIONS(1157), + [anon_sym_async] = ACTIONS(1045), + [anon_sym_file] = ACTIONS(29), + [anon_sym_new] = ACTIONS(1861), + [anon_sym_where] = ACTIONS(29), + [anon_sym_notnull] = ACTIONS(29), + [anon_sym_unmanaged] = ACTIONS(29), + [anon_sym_checked] = ACTIONS(1163), + [anon_sym_BANG] = ACTIONS(1865), + [anon_sym_TILDE] = ACTIONS(1865), + [anon_sym_PLUS_PLUS] = ACTIONS(1865), + [anon_sym_DASH_DASH] = ACTIONS(1865), + [anon_sym_true] = ACTIONS(1169), + [anon_sym_false] = ACTIONS(1169), + [anon_sym_PLUS] = ACTIONS(1863), + [anon_sym_DASH] = ACTIONS(1863), + [anon_sym_STAR] = ACTIONS(1867), + [anon_sym_CARET] = ACTIONS(1865), + [anon_sym_AMP] = ACTIONS(1865), + [anon_sym_this] = ACTIONS(1173), + [anon_sym_scoped] = ACTIONS(85), + [anon_sym_base] = ACTIONS(1175), + [anon_sym_var] = ACTIONS(89), + [sym_predefined_type] = ACTIONS(1177), + [anon_sym_unchecked] = ACTIONS(1163), + [anon_sym_yield] = ACTIONS(29), + [anon_sym_default] = ACTIONS(1179), + [anon_sym_throw] = ACTIONS(1869), + [anon_sym_when] = ACTIONS(29), + [anon_sym_await] = ACTIONS(1871), + [anon_sym_DOT_DOT] = ACTIONS(1873), + [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(1187), + [anon_sym_sizeof] = ACTIONS(1189), + [anon_sym_typeof] = ACTIONS(1191), + [anon_sym___makeref] = ACTIONS(1193), + [anon_sym___reftype] = ACTIONS(1195), + [anon_sym___refvalue] = ACTIONS(1197), + [sym_null_literal] = ACTIONS(1199), + [anon_sym_SQUOTE] = ACTIONS(1201), + [sym_integer_literal] = ACTIONS(1199), + [sym_real_literal] = ACTIONS(1203), + [anon_sym_DQUOTE] = ACTIONS(1205), + [sym_verbatim_string_literal] = ACTIONS(1203), + [aux_sym_preproc_if_token1] = ACTIONS(1207), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + [sym_interpolation_regular_start] = ACTIONS(1209), + [sym_interpolation_verbatim_start] = ACTIONS(1211), + [sym_interpolation_raw_start] = ACTIONS(1213), + [sym_raw_string_start] = ACTIONS(1215), }, [1559] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(3184), - [sym__name] = STATE(5883), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2313), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2269), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(4430), - [sym_non_lvalue_expression] = STATE(4541), - [sym_lvalue_expression] = STATE(3314), - [sym__expression_statement_expression] = STATE(4529), - [sym_assignment_expression] = STATE(4543), - [sym_binary_expression] = STATE(4529), - [sym_postfix_unary_expression] = STATE(4543), - [sym_prefix_unary_expression] = STATE(4543), - [sym__pointer_indirection_expression] = STATE(3175), - [sym_query_expression] = STATE(4529), - [sym_from_clause] = STATE(6156), - [sym_conditional_expression] = STATE(4529), - [sym_conditional_access_expression] = STATE(4529), - [sym_as_expression] = STATE(4529), - [sym_is_expression] = STATE(4529), - [sym_is_pattern_expression] = STATE(4529), - [sym_cast_expression] = STATE(4529), - [sym_checked_expression] = STATE(4529), - [sym_invocation_expression] = STATE(4543), - [sym_switch_expression] = STATE(4529), - [sym_await_expression] = STATE(4543), - [sym_throw_expression] = STATE(4529), - [sym_element_access_expression] = STATE(3175), - [sym_interpolated_string_expression] = STATE(4529), - [sym_member_access_expression] = STATE(3175), - [sym_object_creation_expression] = STATE(4543), - [sym_parenthesized_expression] = STATE(4543), - [sym__parenthesized_lvalue_expression] = STATE(3175), - [sym_lambda_expression] = STATE(4529), - [sym__lambda_expression_init] = STATE(7552), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(4529), - [sym_anonymous_method_expression] = STATE(4529), - [sym_anonymous_object_creation_expression] = STATE(4529), - [sym_implicit_array_creation_expression] = STATE(4529), - [sym_implicit_object_creation_expression] = STATE(4529), - [sym_implicit_stackalloc_expression] = STATE(4529), - [sym_initializer_expression] = STATE(4529), - [sym_default_expression] = STATE(4529), - [sym_with_expression] = STATE(4529), - [sym_sizeof_expression] = STATE(4529), - [sym_typeof_expression] = STATE(4529), - [sym_makeref_expression] = STATE(4529), - [sym_ref_expression] = STATE(4529), - [sym_reftype_expression] = STATE(4529), - [sym_refvalue_expression] = STATE(4529), - [sym_stackalloc_expression] = STATE(4529), - [sym_range_expression] = STATE(4529), - [sym_tuple_expression] = STATE(3175), - [sym_literal] = STATE(4529), - [sym_character_literal] = STATE(4536), - [sym_string_literal] = STATE(4536), - [sym_raw_string_literal] = STATE(4536), - [sym_boolean_literal] = STATE(4536), - [sym_identifier] = STATE(2246), - [sym__reserved_identifier] = STATE(2240), - [sym_preproc_if_in_expression] = STATE(4529), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2416), + [sym__name] = STATE(5885), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2404), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(2902), + [sym_non_lvalue_expression] = STATE(3040), + [sym_lvalue_expression] = STATE(3115), + [sym__expression_statement_expression] = STATE(3035), + [sym_assignment_expression] = STATE(3043), + [sym_binary_expression] = STATE(3035), + [sym_postfix_unary_expression] = STATE(3043), + [sym_prefix_unary_expression] = STATE(3043), + [sym__pointer_indirection_expression] = STATE(2415), + [sym_query_expression] = STATE(3035), + [sym_from_clause] = STATE(6162), + [sym_conditional_expression] = STATE(3035), + [sym_conditional_access_expression] = STATE(3035), + [sym_as_expression] = STATE(3035), + [sym_is_expression] = STATE(3035), + [sym_is_pattern_expression] = STATE(3035), + [sym_cast_expression] = STATE(3035), + [sym_checked_expression] = STATE(3035), + [sym_invocation_expression] = STATE(3043), + [sym_switch_expression] = STATE(3035), + [sym_await_expression] = STATE(3043), + [sym_throw_expression] = STATE(3035), + [sym_element_access_expression] = STATE(2415), + [sym_interpolated_string_expression] = STATE(3035), + [sym_member_access_expression] = STATE(2415), + [sym_object_creation_expression] = STATE(3043), + [sym_parenthesized_expression] = STATE(3043), + [sym__parenthesized_lvalue_expression] = STATE(2415), + [sym_lambda_expression] = STATE(3035), + [sym__lambda_expression_init] = STATE(7416), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3035), + [sym_anonymous_method_expression] = STATE(3035), + [sym_anonymous_object_creation_expression] = STATE(3035), + [sym_implicit_array_creation_expression] = STATE(3035), + [sym_implicit_object_creation_expression] = STATE(3035), + [sym_implicit_stackalloc_expression] = STATE(3035), + [sym_initializer_expression] = STATE(3035), + [sym_default_expression] = STATE(3035), + [sym_with_expression] = STATE(3035), + [sym_sizeof_expression] = STATE(3035), + [sym_typeof_expression] = STATE(3035), + [sym_makeref_expression] = STATE(3035), + [sym_ref_expression] = STATE(3035), + [sym_reftype_expression] = STATE(3035), + [sym_refvalue_expression] = STATE(3035), + [sym_stackalloc_expression] = STATE(3035), + [sym_range_expression] = STATE(3035), + [sym_tuple_expression] = STATE(2415), + [sym_literal] = STATE(3035), + [sym_character_literal] = STATE(3037), + [sym_string_literal] = STATE(3037), + [sym_raw_string_literal] = STATE(3037), + [sym_boolean_literal] = STATE(3037), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3035), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(1559), [sym_preproc_endregion] = STATE(1559), [sym_preproc_line] = STATE(1559), @@ -305330,166 +305216,166 @@ 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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3363), - [sym__identifier_token] = ACTIONS(1387), - [anon_sym_alias] = ACTIONS(1389), - [anon_sym_global] = ACTIONS(1389), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1391), - [anon_sym_LPAREN] = ACTIONS(1463), - [anon_sym_ref] = ACTIONS(1465), - [anon_sym_LBRACE] = ACTIONS(1397), - [anon_sym_delegate] = ACTIONS(1399), - [anon_sym_async] = ACTIONS(1047), - [anon_sym_file] = ACTIONS(1389), - [anon_sym_new] = ACTIONS(1467), - [anon_sym_where] = ACTIONS(1389), - [anon_sym_notnull] = ACTIONS(1389), - [anon_sym_unmanaged] = ACTIONS(1389), - [anon_sym_checked] = ACTIONS(1403), - [anon_sym_BANG] = ACTIONS(1471), - [anon_sym_TILDE] = ACTIONS(1471), - [anon_sym_PLUS_PLUS] = ACTIONS(1471), - [anon_sym_DASH_DASH] = ACTIONS(1471), - [anon_sym_true] = ACTIONS(1409), - [anon_sym_false] = ACTIONS(1409), - [anon_sym_PLUS] = ACTIONS(1469), - [anon_sym_DASH] = ACTIONS(1469), - [anon_sym_STAR] = ACTIONS(1473), - [anon_sym_CARET] = ACTIONS(1471), - [anon_sym_AMP] = ACTIONS(1471), - [anon_sym_this] = ACTIONS(1413), - [anon_sym_scoped] = ACTIONS(1415), - [anon_sym_base] = ACTIONS(1417), - [anon_sym_var] = ACTIONS(1419), - [sym_predefined_type] = ACTIONS(1421), - [anon_sym_unchecked] = ACTIONS(1403), - [anon_sym_yield] = ACTIONS(1389), - [anon_sym_default] = ACTIONS(1423), - [anon_sym_throw] = ACTIONS(1475), - [anon_sym_when] = ACTIONS(1389), - [anon_sym_await] = ACTIONS(1477), - [anon_sym_DOT_DOT] = ACTIONS(1479), - [anon_sym_from] = ACTIONS(1431), - [anon_sym_into] = ACTIONS(1389), - [anon_sym_join] = ACTIONS(1389), - [anon_sym_on] = ACTIONS(1389), - [anon_sym_equals] = ACTIONS(1389), - [anon_sym_let] = ACTIONS(1389), - [anon_sym_orderby] = ACTIONS(1389), - [anon_sym_ascending] = ACTIONS(1389), - [anon_sym_descending] = ACTIONS(1389), - [anon_sym_group] = ACTIONS(1389), - [anon_sym_by] = ACTIONS(1389), - [anon_sym_select] = ACTIONS(1389), - [anon_sym_stackalloc] = ACTIONS(1433), - [anon_sym_sizeof] = ACTIONS(1435), - [anon_sym_typeof] = ACTIONS(1437), - [anon_sym___makeref] = ACTIONS(1439), - [anon_sym___reftype] = ACTIONS(1441), - [anon_sym___refvalue] = ACTIONS(1443), - [sym_null_literal] = ACTIONS(1445), - [anon_sym_SQUOTE] = ACTIONS(1447), - [sym_integer_literal] = ACTIONS(1445), - [sym_real_literal] = ACTIONS(1449), - [anon_sym_DQUOTE] = ACTIONS(1451), - [sym_verbatim_string_literal] = ACTIONS(1449), - [aux_sym_preproc_if_token1] = ACTIONS(1453), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1455), - [sym_interpolation_verbatim_start] = ACTIONS(1457), - [sym_interpolation_raw_start] = ACTIONS(1459), - [sym_raw_string_start] = ACTIONS(1461), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3455), + [sym__identifier_token] = ACTIONS(25), + [anon_sym_alias] = ACTIONS(29), + [anon_sym_global] = ACTIONS(29), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1239), + [anon_sym_LPAREN] = ACTIONS(2261), + [anon_sym_ref] = ACTIONS(2263), + [anon_sym_LBRACE] = ACTIONS(1245), + [anon_sym_delegate] = ACTIONS(1247), + [anon_sym_async] = ACTIONS(1045), + [anon_sym_file] = ACTIONS(29), + [anon_sym_new] = ACTIONS(1935), + [anon_sym_where] = ACTIONS(29), + [anon_sym_notnull] = ACTIONS(29), + [anon_sym_unmanaged] = ACTIONS(29), + [anon_sym_checked] = ACTIONS(1251), + [anon_sym_BANG] = ACTIONS(2267), + [anon_sym_TILDE] = ACTIONS(2267), + [anon_sym_PLUS_PLUS] = ACTIONS(2267), + [anon_sym_DASH_DASH] = ACTIONS(2267), + [anon_sym_true] = ACTIONS(1257), + [anon_sym_false] = ACTIONS(1257), + [anon_sym_PLUS] = ACTIONS(2265), + [anon_sym_DASH] = ACTIONS(2265), + [anon_sym_STAR] = ACTIONS(1941), + [anon_sym_CARET] = ACTIONS(2267), + [anon_sym_AMP] = ACTIONS(2267), + [anon_sym_this] = ACTIONS(1261), + [anon_sym_scoped] = ACTIONS(85), + [anon_sym_base] = ACTIONS(1263), + [anon_sym_var] = ACTIONS(89), + [sym_predefined_type] = ACTIONS(1265), + [anon_sym_unchecked] = ACTIONS(1251), + [anon_sym_yield] = ACTIONS(29), + [anon_sym_default] = ACTIONS(1267), + [anon_sym_throw] = ACTIONS(2269), + [anon_sym_when] = ACTIONS(29), + [anon_sym_await] = ACTIONS(2271), + [anon_sym_DOT_DOT] = ACTIONS(2273), + [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(1275), + [anon_sym_sizeof] = ACTIONS(1277), + [anon_sym_typeof] = ACTIONS(1279), + [anon_sym___makeref] = ACTIONS(1281), + [anon_sym___reftype] = ACTIONS(1283), + [anon_sym___refvalue] = ACTIONS(1285), + [sym_null_literal] = ACTIONS(1287), + [anon_sym_SQUOTE] = ACTIONS(1289), + [sym_integer_literal] = ACTIONS(1287), + [sym_real_literal] = ACTIONS(1291), + [anon_sym_DQUOTE] = ACTIONS(1293), + [sym_verbatim_string_literal] = ACTIONS(1291), + [aux_sym_preproc_if_token1] = ACTIONS(1295), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + [sym_interpolation_regular_start] = ACTIONS(1297), + [sym_interpolation_verbatim_start] = ACTIONS(1299), + [sym_interpolation_raw_start] = ACTIONS(1301), + [sym_raw_string_start] = ACTIONS(1303), }, [1560] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(3184), - [sym__name] = STATE(5883), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2313), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2269), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(4414), - [sym_non_lvalue_expression] = STATE(4541), - [sym_lvalue_expression] = STATE(3314), - [sym__expression_statement_expression] = STATE(4529), - [sym_assignment_expression] = STATE(4543), - [sym_binary_expression] = STATE(4529), - [sym_postfix_unary_expression] = STATE(4543), - [sym_prefix_unary_expression] = STATE(4543), - [sym__pointer_indirection_expression] = STATE(3175), - [sym_query_expression] = STATE(4529), - [sym_from_clause] = STATE(6156), - [sym_conditional_expression] = STATE(4529), - [sym_conditional_access_expression] = STATE(4529), - [sym_as_expression] = STATE(4529), - [sym_is_expression] = STATE(4529), - [sym_is_pattern_expression] = STATE(4529), - [sym_cast_expression] = STATE(4529), - [sym_checked_expression] = STATE(4529), - [sym_invocation_expression] = STATE(4543), - [sym_switch_expression] = STATE(4529), - [sym_await_expression] = STATE(4543), - [sym_throw_expression] = STATE(4529), - [sym_element_access_expression] = STATE(3175), - [sym_interpolated_string_expression] = STATE(4529), - [sym_member_access_expression] = STATE(3175), - [sym_object_creation_expression] = STATE(4543), - [sym_parenthesized_expression] = STATE(4543), - [sym__parenthesized_lvalue_expression] = STATE(3175), - [sym_lambda_expression] = STATE(4529), - [sym__lambda_expression_init] = STATE(7552), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(4529), - [sym_anonymous_method_expression] = STATE(4529), - [sym_anonymous_object_creation_expression] = STATE(4529), - [sym_implicit_array_creation_expression] = STATE(4529), - [sym_implicit_object_creation_expression] = STATE(4529), - [sym_implicit_stackalloc_expression] = STATE(4529), - [sym_initializer_expression] = STATE(4529), - [sym_default_expression] = STATE(4529), - [sym_with_expression] = STATE(4529), - [sym_sizeof_expression] = STATE(4529), - [sym_typeof_expression] = STATE(4529), - [sym_makeref_expression] = STATE(4529), - [sym_ref_expression] = STATE(4529), - [sym_reftype_expression] = STATE(4529), - [sym_refvalue_expression] = STATE(4529), - [sym_stackalloc_expression] = STATE(4529), - [sym_range_expression] = STATE(4529), - [sym_tuple_expression] = STATE(3175), - [sym_literal] = STATE(4529), - [sym_character_literal] = STATE(4536), - [sym_string_literal] = STATE(4536), - [sym_raw_string_literal] = STATE(4536), - [sym_boolean_literal] = STATE(4536), - [sym_identifier] = STATE(2246), - [sym__reserved_identifier] = STATE(2240), - [sym_preproc_if_in_expression] = STATE(4529), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2901), + [sym__name] = STATE(5889), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2349), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(5681), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(2905), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3102), + [sym_postfix_unary_expression] = STATE(3079), + [sym_prefix_unary_expression] = STATE(3079), + [sym__pointer_indirection_expression] = STATE(2906), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6134), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3102), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3079), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2906), + [sym_interpolated_string_expression] = STATE(3102), + [sym_member_access_expression] = STATE(2906), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3079), + [sym__parenthesized_lvalue_expression] = STATE(2906), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7425), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(3102), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3102), + [sym_typeof_expression] = STATE(3102), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2906), + [sym_literal] = STATE(3102), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(1560), [sym_preproc_endregion] = STATE(1560), [sym_preproc_line] = STATE(1560), @@ -305499,166 +305385,166 @@ 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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3363), - [sym__identifier_token] = ACTIONS(1387), - [anon_sym_alias] = ACTIONS(1389), - [anon_sym_global] = ACTIONS(1389), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1391), - [anon_sym_LPAREN] = ACTIONS(1463), - [anon_sym_ref] = ACTIONS(1465), - [anon_sym_LBRACE] = ACTIONS(1397), - [anon_sym_delegate] = ACTIONS(1399), - [anon_sym_async] = ACTIONS(1047), - [anon_sym_file] = ACTIONS(1389), - [anon_sym_new] = ACTIONS(1467), - [anon_sym_where] = ACTIONS(1389), - [anon_sym_notnull] = ACTIONS(1389), - [anon_sym_unmanaged] = ACTIONS(1389), - [anon_sym_checked] = ACTIONS(1403), - [anon_sym_BANG] = ACTIONS(1471), - [anon_sym_TILDE] = ACTIONS(1471), - [anon_sym_PLUS_PLUS] = ACTIONS(1471), - [anon_sym_DASH_DASH] = ACTIONS(1471), - [anon_sym_true] = ACTIONS(1409), - [anon_sym_false] = ACTIONS(1409), - [anon_sym_PLUS] = ACTIONS(1469), - [anon_sym_DASH] = ACTIONS(1469), - [anon_sym_STAR] = ACTIONS(1473), - [anon_sym_CARET] = ACTIONS(1471), - [anon_sym_AMP] = ACTIONS(1471), - [anon_sym_this] = ACTIONS(1413), - [anon_sym_scoped] = ACTIONS(1415), - [anon_sym_base] = ACTIONS(1417), - [anon_sym_var] = ACTIONS(1419), - [sym_predefined_type] = ACTIONS(1421), - [anon_sym_unchecked] = ACTIONS(1403), - [anon_sym_yield] = ACTIONS(1389), - [anon_sym_default] = ACTIONS(1423), - [anon_sym_throw] = ACTIONS(1475), - [anon_sym_when] = ACTIONS(1389), - [anon_sym_await] = ACTIONS(1477), - [anon_sym_DOT_DOT] = ACTIONS(1479), - [anon_sym_from] = ACTIONS(1431), - [anon_sym_into] = ACTIONS(1389), - [anon_sym_join] = ACTIONS(1389), - [anon_sym_on] = ACTIONS(1389), - [anon_sym_equals] = ACTIONS(1389), - [anon_sym_let] = ACTIONS(1389), - [anon_sym_orderby] = ACTIONS(1389), - [anon_sym_ascending] = ACTIONS(1389), - [anon_sym_descending] = ACTIONS(1389), - [anon_sym_group] = ACTIONS(1389), - [anon_sym_by] = ACTIONS(1389), - [anon_sym_select] = ACTIONS(1389), - [anon_sym_stackalloc] = ACTIONS(1433), - [anon_sym_sizeof] = ACTIONS(1435), - [anon_sym_typeof] = ACTIONS(1437), - [anon_sym___makeref] = ACTIONS(1439), - [anon_sym___reftype] = ACTIONS(1441), - [anon_sym___refvalue] = ACTIONS(1443), - [sym_null_literal] = ACTIONS(1445), - [anon_sym_SQUOTE] = ACTIONS(1447), - [sym_integer_literal] = ACTIONS(1445), - [sym_real_literal] = ACTIONS(1449), - [anon_sym_DQUOTE] = ACTIONS(1451), - [sym_verbatim_string_literal] = ACTIONS(1449), - [aux_sym_preproc_if_token1] = ACTIONS(1453), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1455), - [sym_interpolation_verbatim_start] = ACTIONS(1457), - [sym_interpolation_raw_start] = ACTIONS(1459), - [sym_raw_string_start] = ACTIONS(1461), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), + [sym__identifier_token] = ACTIONS(25), + [anon_sym_alias] = ACTIONS(29), + [anon_sym_global] = ACTIONS(29), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1655), + [anon_sym_LPAREN] = ACTIONS(2941), + [anon_sym_ref] = ACTIONS(715), + [anon_sym_LBRACE] = ACTIONS(1481), + [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(1525), + [anon_sym_TILDE] = ACTIONS(1525), + [anon_sym_PLUS_PLUS] = ACTIONS(1525), + [anon_sym_DASH_DASH] = ACTIONS(1525), + [anon_sym_true] = ACTIONS(77), + [anon_sym_false] = ACTIONS(77), + [anon_sym_PLUS] = ACTIONS(1523), + [anon_sym_DASH] = ACTIONS(1523), + [anon_sym_STAR] = ACTIONS(1765), + [anon_sym_CARET] = ACTIONS(1525), + [anon_sym_AMP] = ACTIONS(1525), + [anon_sym_this] = ACTIONS(1677), + [anon_sym_scoped] = ACTIONS(85), + [anon_sym_base] = ACTIONS(87), + [anon_sym_var] = ACTIONS(89), + [sym_predefined_type] = ACTIONS(1681), + [anon_sym_unchecked] = ACTIONS(1065), + [anon_sym_yield] = ACTIONS(29), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(1527), + [anon_sym_when] = ACTIONS(29), + [anon_sym_await] = ACTIONS(1529), + [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), }, [1561] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(3184), - [sym__name] = STATE(5883), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2313), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2269), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(4433), - [sym_non_lvalue_expression] = STATE(4541), - [sym_lvalue_expression] = STATE(3314), - [sym__expression_statement_expression] = STATE(4529), - [sym_assignment_expression] = STATE(4543), - [sym_binary_expression] = STATE(4529), - [sym_postfix_unary_expression] = STATE(4543), - [sym_prefix_unary_expression] = STATE(4543), - [sym__pointer_indirection_expression] = STATE(3175), - [sym_query_expression] = STATE(4529), - [sym_from_clause] = STATE(6156), - [sym_conditional_expression] = STATE(4529), - [sym_conditional_access_expression] = STATE(4529), - [sym_as_expression] = STATE(4529), - [sym_is_expression] = STATE(4529), - [sym_is_pattern_expression] = STATE(4529), - [sym_cast_expression] = STATE(4529), - [sym_checked_expression] = STATE(4529), - [sym_invocation_expression] = STATE(4543), - [sym_switch_expression] = STATE(4529), - [sym_await_expression] = STATE(4543), - [sym_throw_expression] = STATE(4529), - [sym_element_access_expression] = STATE(3175), - [sym_interpolated_string_expression] = STATE(4529), - [sym_member_access_expression] = STATE(3175), - [sym_object_creation_expression] = STATE(4543), - [sym_parenthesized_expression] = STATE(4543), - [sym__parenthesized_lvalue_expression] = STATE(3175), - [sym_lambda_expression] = STATE(4529), - [sym__lambda_expression_init] = STATE(7552), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(4529), - [sym_anonymous_method_expression] = STATE(4529), - [sym_anonymous_object_creation_expression] = STATE(4529), - [sym_implicit_array_creation_expression] = STATE(4529), - [sym_implicit_object_creation_expression] = STATE(4529), - [sym_implicit_stackalloc_expression] = STATE(4529), - [sym_initializer_expression] = STATE(4529), - [sym_default_expression] = STATE(4529), - [sym_with_expression] = STATE(4529), - [sym_sizeof_expression] = STATE(4529), - [sym_typeof_expression] = STATE(4529), - [sym_makeref_expression] = STATE(4529), - [sym_ref_expression] = STATE(4529), - [sym_reftype_expression] = STATE(4529), - [sym_refvalue_expression] = STATE(4529), - [sym_stackalloc_expression] = STATE(4529), - [sym_range_expression] = STATE(4529), - [sym_tuple_expression] = STATE(3175), - [sym_literal] = STATE(4529), - [sym_character_literal] = STATE(4536), - [sym_string_literal] = STATE(4536), - [sym_raw_string_literal] = STATE(4536), - [sym_boolean_literal] = STATE(4536), - [sym_identifier] = STATE(2246), - [sym__reserved_identifier] = STATE(2240), - [sym_preproc_if_in_expression] = STATE(4529), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2603), + [sym__name] = STATE(5862), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2193), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(4685), + [sym_non_lvalue_expression] = STATE(3220), + [sym_lvalue_expression] = STATE(3403), + [sym__expression_statement_expression] = STATE(3236), + [sym_assignment_expression] = STATE(3221), + [sym_binary_expression] = STATE(3236), + [sym_postfix_unary_expression] = STATE(3221), + [sym_prefix_unary_expression] = STATE(3221), + [sym__pointer_indirection_expression] = STATE(2602), + [sym_query_expression] = STATE(3236), + [sym_from_clause] = STATE(6145), + [sym_conditional_expression] = STATE(3236), + [sym_conditional_access_expression] = STATE(3236), + [sym_as_expression] = STATE(3236), + [sym_is_expression] = STATE(3236), + [sym_is_pattern_expression] = STATE(3236), + [sym_cast_expression] = STATE(3236), + [sym_checked_expression] = STATE(3236), + [sym_invocation_expression] = STATE(3221), + [sym_switch_expression] = STATE(3236), + [sym_await_expression] = STATE(3221), + [sym_throw_expression] = STATE(3236), + [sym_element_access_expression] = STATE(2602), + [sym_interpolated_string_expression] = STATE(3236), + [sym_member_access_expression] = STATE(2602), + [sym_object_creation_expression] = STATE(3221), + [sym_parenthesized_expression] = STATE(3221), + [sym__parenthesized_lvalue_expression] = STATE(2602), + [sym_lambda_expression] = STATE(3236), + [sym__lambda_expression_init] = STATE(7639), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3236), + [sym_anonymous_method_expression] = STATE(3236), + [sym_anonymous_object_creation_expression] = STATE(3236), + [sym_implicit_array_creation_expression] = STATE(3236), + [sym_implicit_object_creation_expression] = STATE(3236), + [sym_implicit_stackalloc_expression] = STATE(3236), + [sym_initializer_expression] = STATE(3236), + [sym_default_expression] = STATE(3236), + [sym_with_expression] = STATE(3236), + [sym_sizeof_expression] = STATE(3236), + [sym_typeof_expression] = STATE(3236), + [sym_makeref_expression] = STATE(3236), + [sym_ref_expression] = STATE(3236), + [sym_reftype_expression] = STATE(3236), + [sym_refvalue_expression] = STATE(3236), + [sym_stackalloc_expression] = STATE(3236), + [sym_range_expression] = STATE(3236), + [sym_tuple_expression] = STATE(2602), + [sym_literal] = STATE(3236), + [sym_character_literal] = STATE(3272), + [sym_string_literal] = STATE(3272), + [sym_raw_string_literal] = STATE(3272), + [sym_boolean_literal] = STATE(3272), + [sym_identifier] = STATE(2261), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3236), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(1561), [sym_preproc_endregion] = STATE(1561), [sym_preproc_line] = STATE(1561), @@ -305668,166 +305554,166 @@ 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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3363), - [sym__identifier_token] = ACTIONS(1387), - [anon_sym_alias] = ACTIONS(1389), - [anon_sym_global] = ACTIONS(1389), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1391), - [anon_sym_LPAREN] = ACTIONS(1463), - [anon_sym_ref] = ACTIONS(1465), - [anon_sym_LBRACE] = ACTIONS(1397), - [anon_sym_delegate] = ACTIONS(1399), - [anon_sym_async] = ACTIONS(1047), - [anon_sym_file] = ACTIONS(1389), - [anon_sym_new] = ACTIONS(1467), - [anon_sym_where] = ACTIONS(1389), - [anon_sym_notnull] = ACTIONS(1389), - [anon_sym_unmanaged] = ACTIONS(1389), - [anon_sym_checked] = ACTIONS(1403), - [anon_sym_BANG] = ACTIONS(1471), - [anon_sym_TILDE] = ACTIONS(1471), - [anon_sym_PLUS_PLUS] = ACTIONS(1471), - [anon_sym_DASH_DASH] = ACTIONS(1471), - [anon_sym_true] = ACTIONS(1409), - [anon_sym_false] = ACTIONS(1409), - [anon_sym_PLUS] = ACTIONS(1469), - [anon_sym_DASH] = ACTIONS(1469), - [anon_sym_STAR] = ACTIONS(1473), - [anon_sym_CARET] = ACTIONS(1471), - [anon_sym_AMP] = ACTIONS(1471), - [anon_sym_this] = ACTIONS(1413), - [anon_sym_scoped] = ACTIONS(1415), - [anon_sym_base] = ACTIONS(1417), - [anon_sym_var] = ACTIONS(1419), - [sym_predefined_type] = ACTIONS(1421), - [anon_sym_unchecked] = ACTIONS(1403), - [anon_sym_yield] = ACTIONS(1389), - [anon_sym_default] = ACTIONS(1423), - [anon_sym_throw] = ACTIONS(1475), - [anon_sym_when] = ACTIONS(1389), - [anon_sym_await] = ACTIONS(1477), - [anon_sym_DOT_DOT] = ACTIONS(1479), - [anon_sym_from] = ACTIONS(1431), - [anon_sym_into] = ACTIONS(1389), - [anon_sym_join] = ACTIONS(1389), - [anon_sym_on] = ACTIONS(1389), - [anon_sym_equals] = ACTIONS(1389), - [anon_sym_let] = ACTIONS(1389), - [anon_sym_orderby] = ACTIONS(1389), - [anon_sym_ascending] = ACTIONS(1389), - [anon_sym_descending] = ACTIONS(1389), - [anon_sym_group] = ACTIONS(1389), - [anon_sym_by] = ACTIONS(1389), - [anon_sym_select] = ACTIONS(1389), - [anon_sym_stackalloc] = ACTIONS(1433), - [anon_sym_sizeof] = ACTIONS(1435), - [anon_sym_typeof] = ACTIONS(1437), - [anon_sym___makeref] = ACTIONS(1439), - [anon_sym___reftype] = ACTIONS(1441), - [anon_sym___refvalue] = ACTIONS(1443), - [sym_null_literal] = ACTIONS(1445), - [anon_sym_SQUOTE] = ACTIONS(1447), - [sym_integer_literal] = ACTIONS(1445), - [sym_real_literal] = ACTIONS(1449), - [anon_sym_DQUOTE] = ACTIONS(1451), - [sym_verbatim_string_literal] = ACTIONS(1449), - [aux_sym_preproc_if_token1] = ACTIONS(1453), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1455), - [sym_interpolation_verbatim_start] = ACTIONS(1457), - [sym_interpolation_raw_start] = ACTIONS(1459), - [sym_raw_string_start] = ACTIONS(1461), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3379), + [sym__identifier_token] = ACTIONS(25), + [anon_sym_alias] = ACTIONS(29), + [anon_sym_global] = ACTIONS(29), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1149), + [anon_sym_LPAREN] = ACTIONS(1549), + [anon_sym_ref] = ACTIONS(1551), + [anon_sym_LBRACE] = ACTIONS(1155), + [anon_sym_delegate] = ACTIONS(1157), + [anon_sym_async] = ACTIONS(1045), + [anon_sym_file] = ACTIONS(29), + [anon_sym_new] = ACTIONS(1159), + [anon_sym_where] = ACTIONS(29), + [anon_sym_notnull] = ACTIONS(29), + [anon_sym_unmanaged] = ACTIONS(29), + [anon_sym_checked] = ACTIONS(1163), + [anon_sym_BANG] = ACTIONS(1555), + [anon_sym_TILDE] = ACTIONS(1555), + [anon_sym_PLUS_PLUS] = ACTIONS(1555), + [anon_sym_DASH_DASH] = ACTIONS(1555), + [anon_sym_true] = ACTIONS(1169), + [anon_sym_false] = ACTIONS(1169), + [anon_sym_PLUS] = ACTIONS(1553), + [anon_sym_DASH] = ACTIONS(1553), + [anon_sym_STAR] = ACTIONS(1557), + [anon_sym_CARET] = ACTIONS(1555), + [anon_sym_AMP] = ACTIONS(1555), + [anon_sym_this] = ACTIONS(1173), + [anon_sym_scoped] = ACTIONS(85), + [anon_sym_base] = ACTIONS(1175), + [anon_sym_var] = ACTIONS(89), + [sym_predefined_type] = ACTIONS(1177), + [anon_sym_unchecked] = ACTIONS(1163), + [anon_sym_yield] = ACTIONS(29), + [anon_sym_default] = ACTIONS(1179), + [anon_sym_throw] = ACTIONS(1559), + [anon_sym_when] = ACTIONS(29), + [anon_sym_await] = ACTIONS(1561), + [anon_sym_DOT_DOT] = ACTIONS(1563), + [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(1187), + [anon_sym_sizeof] = ACTIONS(1189), + [anon_sym_typeof] = ACTIONS(1191), + [anon_sym___makeref] = ACTIONS(1193), + [anon_sym___reftype] = ACTIONS(1195), + [anon_sym___refvalue] = ACTIONS(1197), + [sym_null_literal] = ACTIONS(1199), + [anon_sym_SQUOTE] = ACTIONS(1201), + [sym_integer_literal] = ACTIONS(1199), + [sym_real_literal] = ACTIONS(1203), + [anon_sym_DQUOTE] = ACTIONS(1205), + [sym_verbatim_string_literal] = ACTIONS(1203), + [aux_sym_preproc_if_token1] = ACTIONS(1207), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + [sym_interpolation_regular_start] = ACTIONS(1209), + [sym_interpolation_verbatim_start] = ACTIONS(1211), + [sym_interpolation_raw_start] = ACTIONS(1213), + [sym_raw_string_start] = ACTIONS(1215), }, [1562] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(5907), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2404), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(4217), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3140), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3080), - [sym_postfix_unary_expression] = STATE(3111), - [sym_prefix_unary_expression] = STATE(3111), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6183), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3080), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3111), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3080), - [sym_member_access_expression] = STATE(2484), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3111), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7703), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(3080), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3080), - [sym_typeof_expression] = STATE(3080), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2484), - [sym_literal] = STATE(3080), - [sym_character_literal] = STATE(3011), - [sym_string_literal] = STATE(3011), - [sym_raw_string_literal] = STATE(3011), - [sym_boolean_literal] = STATE(3011), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2603), + [sym__name] = STATE(5862), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2193), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(4689), + [sym_non_lvalue_expression] = STATE(3220), + [sym_lvalue_expression] = STATE(3403), + [sym__expression_statement_expression] = STATE(3236), + [sym_assignment_expression] = STATE(3221), + [sym_binary_expression] = STATE(3236), + [sym_postfix_unary_expression] = STATE(3221), + [sym_prefix_unary_expression] = STATE(3221), + [sym__pointer_indirection_expression] = STATE(2602), + [sym_query_expression] = STATE(3236), + [sym_from_clause] = STATE(6145), + [sym_conditional_expression] = STATE(3236), + [sym_conditional_access_expression] = STATE(3236), + [sym_as_expression] = STATE(3236), + [sym_is_expression] = STATE(3236), + [sym_is_pattern_expression] = STATE(3236), + [sym_cast_expression] = STATE(3236), + [sym_checked_expression] = STATE(3236), + [sym_invocation_expression] = STATE(3221), + [sym_switch_expression] = STATE(3236), + [sym_await_expression] = STATE(3221), + [sym_throw_expression] = STATE(3236), + [sym_element_access_expression] = STATE(2602), + [sym_interpolated_string_expression] = STATE(3236), + [sym_member_access_expression] = STATE(2602), + [sym_object_creation_expression] = STATE(3221), + [sym_parenthesized_expression] = STATE(3221), + [sym__parenthesized_lvalue_expression] = STATE(2602), + [sym_lambda_expression] = STATE(3236), + [sym__lambda_expression_init] = STATE(7639), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3236), + [sym_anonymous_method_expression] = STATE(3236), + [sym_anonymous_object_creation_expression] = STATE(3236), + [sym_implicit_array_creation_expression] = STATE(3236), + [sym_implicit_object_creation_expression] = STATE(3236), + [sym_implicit_stackalloc_expression] = STATE(3236), + [sym_initializer_expression] = STATE(3236), + [sym_default_expression] = STATE(3236), + [sym_with_expression] = STATE(3236), + [sym_sizeof_expression] = STATE(3236), + [sym_typeof_expression] = STATE(3236), + [sym_makeref_expression] = STATE(3236), + [sym_ref_expression] = STATE(3236), + [sym_reftype_expression] = STATE(3236), + [sym_refvalue_expression] = STATE(3236), + [sym_stackalloc_expression] = STATE(3236), + [sym_range_expression] = STATE(3236), + [sym_tuple_expression] = STATE(2602), + [sym_literal] = STATE(3236), + [sym_character_literal] = STATE(3272), + [sym_string_literal] = STATE(3272), + [sym_raw_string_literal] = STATE(3272), + [sym_boolean_literal] = STATE(3272), + [sym_identifier] = STATE(2261), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3236), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(1562), [sym_preproc_endregion] = STATE(1562), [sym_preproc_line] = STATE(1562), @@ -305837,47 +305723,47 @@ 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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3379), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1481), - [anon_sym_LPAREN] = ACTIONS(2251), - [anon_sym_ref] = ACTIONS(2253), - [anon_sym_LBRACE] = ACTIONS(1487), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1149), + [anon_sym_LPAREN] = ACTIONS(1549), + [anon_sym_ref] = ACTIONS(1551), + [anon_sym_LBRACE] = ACTIONS(1155), + [anon_sym_delegate] = ACTIONS(1157), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1937), + [anon_sym_new] = ACTIONS(1159), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1067), - [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(1259), - [anon_sym_false] = ACTIONS(1259), - [anon_sym_PLUS] = ACTIONS(2255), - [anon_sym_DASH] = ACTIONS(2255), - [anon_sym_STAR] = ACTIONS(1943), - [anon_sym_CARET] = ACTIONS(2257), - [anon_sym_AMP] = ACTIONS(2257), - [anon_sym_this] = ACTIONS(83), + [anon_sym_checked] = ACTIONS(1163), + [anon_sym_BANG] = ACTIONS(1555), + [anon_sym_TILDE] = ACTIONS(1555), + [anon_sym_PLUS_PLUS] = ACTIONS(1555), + [anon_sym_DASH_DASH] = ACTIONS(1555), + [anon_sym_true] = ACTIONS(1169), + [anon_sym_false] = ACTIONS(1169), + [anon_sym_PLUS] = ACTIONS(1553), + [anon_sym_DASH] = ACTIONS(1553), + [anon_sym_STAR] = ACTIONS(1557), + [anon_sym_CARET] = ACTIONS(1555), + [anon_sym_AMP] = ACTIONS(1555), + [anon_sym_this] = ACTIONS(1173), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), + [anon_sym_base] = ACTIONS(1175), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1267), - [anon_sym_unchecked] = ACTIONS(1067), + [sym_predefined_type] = ACTIONS(1177), + [anon_sym_unchecked] = ACTIONS(1163), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1269), - [anon_sym_throw] = ACTIONS(2259), + [anon_sym_default] = ACTIONS(1179), + [anon_sym_throw] = ACTIONS(1559), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2261), - [anon_sym_DOT_DOT] = ACTIONS(2263), + [anon_sym_await] = ACTIONS(1561), + [anon_sym_DOT_DOT] = ACTIONS(1563), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -305890,19 +305776,19 @@ static const uint16_t ts_parse_table[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(1279), - [anon_sym_typeof] = ACTIONS(1281), - [anon_sym___makeref] = ACTIONS(133), - [anon_sym___reftype] = ACTIONS(135), - [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(1289), - [anon_sym_SQUOTE] = ACTIONS(1291), - [sym_integer_literal] = ACTIONS(1289), - [sym_real_literal] = ACTIONS(1293), - [anon_sym_DQUOTE] = ACTIONS(1295), - [sym_verbatim_string_literal] = ACTIONS(1293), - [aux_sym_preproc_if_token1] = ACTIONS(1089), + [anon_sym_stackalloc] = ACTIONS(1187), + [anon_sym_sizeof] = ACTIONS(1189), + [anon_sym_typeof] = ACTIONS(1191), + [anon_sym___makeref] = ACTIONS(1193), + [anon_sym___reftype] = ACTIONS(1195), + [anon_sym___refvalue] = ACTIONS(1197), + [sym_null_literal] = ACTIONS(1199), + [anon_sym_SQUOTE] = ACTIONS(1201), + [sym_integer_literal] = ACTIONS(1199), + [sym_real_literal] = ACTIONS(1203), + [anon_sym_DQUOTE] = ACTIONS(1205), + [sym_verbatim_string_literal] = ACTIONS(1203), + [aux_sym_preproc_if_token1] = ACTIONS(1207), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -305913,90 +305799,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1299), - [sym_interpolation_verbatim_start] = ACTIONS(1301), - [sym_interpolation_raw_start] = ACTIONS(1303), - [sym_raw_string_start] = ACTIONS(1305), + [sym_interpolation_regular_start] = ACTIONS(1209), + [sym_interpolation_verbatim_start] = ACTIONS(1211), + [sym_interpolation_raw_start] = ACTIONS(1213), + [sym_raw_string_start] = ACTIONS(1215), }, [1563] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(3184), - [sym__name] = STATE(5883), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2313), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2269), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(4456), - [sym_non_lvalue_expression] = STATE(4541), - [sym_lvalue_expression] = STATE(3314), - [sym__expression_statement_expression] = STATE(4529), - [sym_assignment_expression] = STATE(4543), - [sym_binary_expression] = STATE(4529), - [sym_postfix_unary_expression] = STATE(4543), - [sym_prefix_unary_expression] = STATE(4543), - [sym__pointer_indirection_expression] = STATE(3175), - [sym_query_expression] = STATE(4529), - [sym_from_clause] = STATE(6156), - [sym_conditional_expression] = STATE(4529), - [sym_conditional_access_expression] = STATE(4529), - [sym_as_expression] = STATE(4529), - [sym_is_expression] = STATE(4529), - [sym_is_pattern_expression] = STATE(4529), - [sym_cast_expression] = STATE(4529), - [sym_checked_expression] = STATE(4529), - [sym_invocation_expression] = STATE(4543), - [sym_switch_expression] = STATE(4529), - [sym_await_expression] = STATE(4543), - [sym_throw_expression] = STATE(4529), - [sym_element_access_expression] = STATE(3175), - [sym_interpolated_string_expression] = STATE(4529), - [sym_member_access_expression] = STATE(3175), - [sym_object_creation_expression] = STATE(4543), - [sym_parenthesized_expression] = STATE(4543), - [sym__parenthesized_lvalue_expression] = STATE(3175), - [sym_lambda_expression] = STATE(4529), - [sym__lambda_expression_init] = STATE(7552), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(4529), - [sym_anonymous_method_expression] = STATE(4529), - [sym_anonymous_object_creation_expression] = STATE(4529), - [sym_implicit_array_creation_expression] = STATE(4529), - [sym_implicit_object_creation_expression] = STATE(4529), - [sym_implicit_stackalloc_expression] = STATE(4529), - [sym_initializer_expression] = STATE(4529), - [sym_default_expression] = STATE(4529), - [sym_with_expression] = STATE(4529), - [sym_sizeof_expression] = STATE(4529), - [sym_typeof_expression] = STATE(4529), - [sym_makeref_expression] = STATE(4529), - [sym_ref_expression] = STATE(4529), - [sym_reftype_expression] = STATE(4529), - [sym_refvalue_expression] = STATE(4529), - [sym_stackalloc_expression] = STATE(4529), - [sym_range_expression] = STATE(4529), - [sym_tuple_expression] = STATE(3175), - [sym_literal] = STATE(4529), - [sym_character_literal] = STATE(4536), - [sym_string_literal] = STATE(4536), - [sym_raw_string_literal] = STATE(4536), - [sym_boolean_literal] = STATE(4536), - [sym_identifier] = STATE(2246), - [sym__reserved_identifier] = STATE(2240), - [sym_preproc_if_in_expression] = STATE(4529), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(5895), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2376), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(3507), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3643), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3102), + [sym_postfix_unary_expression] = STATE(3079), + [sym_prefix_unary_expression] = STATE(3079), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6148), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3102), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3079), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3102), + [sym_member_access_expression] = STATE(2472), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3079), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7304), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(3102), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3102), + [sym_typeof_expression] = STATE(3102), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2472), + [sym_literal] = STATE(3102), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(1563), [sym_preproc_endregion] = STATE(1563), [sym_preproc_line] = STATE(1563), @@ -306006,166 +305892,166 @@ 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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3363), - [sym__identifier_token] = ACTIONS(1387), - [anon_sym_alias] = ACTIONS(1389), - [anon_sym_global] = ACTIONS(1389), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1391), - [anon_sym_LPAREN] = ACTIONS(1463), - [anon_sym_ref] = ACTIONS(1465), - [anon_sym_LBRACE] = ACTIONS(1397), - [anon_sym_delegate] = ACTIONS(1399), - [anon_sym_async] = ACTIONS(1047), - [anon_sym_file] = ACTIONS(1389), - [anon_sym_new] = ACTIONS(1467), - [anon_sym_where] = ACTIONS(1389), - [anon_sym_notnull] = ACTIONS(1389), - [anon_sym_unmanaged] = ACTIONS(1389), - [anon_sym_checked] = ACTIONS(1403), - [anon_sym_BANG] = ACTIONS(1471), - [anon_sym_TILDE] = ACTIONS(1471), - [anon_sym_PLUS_PLUS] = ACTIONS(1471), - [anon_sym_DASH_DASH] = ACTIONS(1471), - [anon_sym_true] = ACTIONS(1409), - [anon_sym_false] = ACTIONS(1409), - [anon_sym_PLUS] = ACTIONS(1469), - [anon_sym_DASH] = ACTIONS(1469), - [anon_sym_STAR] = ACTIONS(1473), - [anon_sym_CARET] = ACTIONS(1471), - [anon_sym_AMP] = ACTIONS(1471), - [anon_sym_this] = ACTIONS(1413), - [anon_sym_scoped] = ACTIONS(1415), - [anon_sym_base] = ACTIONS(1417), - [anon_sym_var] = ACTIONS(1419), - [sym_predefined_type] = ACTIONS(1421), - [anon_sym_unchecked] = ACTIONS(1403), - [anon_sym_yield] = ACTIONS(1389), - [anon_sym_default] = ACTIONS(1423), - [anon_sym_throw] = ACTIONS(1475), - [anon_sym_when] = ACTIONS(1389), - [anon_sym_await] = ACTIONS(1477), - [anon_sym_DOT_DOT] = ACTIONS(1479), - [anon_sym_from] = ACTIONS(1431), - [anon_sym_into] = ACTIONS(1389), - [anon_sym_join] = ACTIONS(1389), - [anon_sym_on] = ACTIONS(1389), - [anon_sym_equals] = ACTIONS(1389), - [anon_sym_let] = ACTIONS(1389), - [anon_sym_orderby] = ACTIONS(1389), - [anon_sym_ascending] = ACTIONS(1389), - [anon_sym_descending] = ACTIONS(1389), - [anon_sym_group] = ACTIONS(1389), - [anon_sym_by] = ACTIONS(1389), - [anon_sym_select] = ACTIONS(1389), - [anon_sym_stackalloc] = ACTIONS(1433), - [anon_sym_sizeof] = ACTIONS(1435), - [anon_sym_typeof] = ACTIONS(1437), - [anon_sym___makeref] = ACTIONS(1439), - [anon_sym___reftype] = ACTIONS(1441), - [anon_sym___refvalue] = ACTIONS(1443), - [sym_null_literal] = ACTIONS(1445), - [anon_sym_SQUOTE] = ACTIONS(1447), - [sym_integer_literal] = ACTIONS(1445), - [sym_real_literal] = ACTIONS(1449), - [anon_sym_DQUOTE] = ACTIONS(1451), - [sym_verbatim_string_literal] = ACTIONS(1449), - [aux_sym_preproc_if_token1] = ACTIONS(1453), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1455), - [sym_interpolation_verbatim_start] = ACTIONS(1457), - [sym_interpolation_raw_start] = ACTIONS(1459), - [sym_raw_string_start] = ACTIONS(1461), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), + [sym__identifier_token] = ACTIONS(25), + [anon_sym_alias] = ACTIONS(29), + [anon_sym_global] = ACTIONS(29), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1479), + [anon_sym_LPAREN] = ACTIONS(2199), + [anon_sym_ref] = ACTIONS(2201), + [anon_sym_LBRACE] = ACTIONS(1481), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), + [anon_sym_file] = ACTIONS(29), + [anon_sym_new] = ACTIONS(2203), + [anon_sym_where] = ACTIONS(29), + [anon_sym_notnull] = ACTIONS(29), + [anon_sym_unmanaged] = ACTIONS(29), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(2207), + [anon_sym_TILDE] = ACTIONS(2207), + [anon_sym_PLUS_PLUS] = ACTIONS(2207), + [anon_sym_DASH_DASH] = ACTIONS(2207), + [anon_sym_true] = ACTIONS(77), + [anon_sym_false] = ACTIONS(77), + [anon_sym_PLUS] = ACTIONS(2205), + [anon_sym_DASH] = ACTIONS(2205), + [anon_sym_STAR] = ACTIONS(2209), + [anon_sym_CARET] = ACTIONS(2207), + [anon_sym_AMP] = ACTIONS(2207), + [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(2211), + [anon_sym_when] = ACTIONS(29), + [anon_sym_await] = ACTIONS(2213), + [anon_sym_DOT_DOT] = ACTIONS(2215), + [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), }, [1564] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(3184), - [sym__name] = STATE(5883), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2313), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2269), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(4457), - [sym_non_lvalue_expression] = STATE(4541), - [sym_lvalue_expression] = STATE(3314), - [sym__expression_statement_expression] = STATE(4529), - [sym_assignment_expression] = STATE(4543), - [sym_binary_expression] = STATE(4529), - [sym_postfix_unary_expression] = STATE(4543), - [sym_prefix_unary_expression] = STATE(4543), - [sym__pointer_indirection_expression] = STATE(3175), - [sym_query_expression] = STATE(4529), - [sym_from_clause] = STATE(6156), - [sym_conditional_expression] = STATE(4529), - [sym_conditional_access_expression] = STATE(4529), - [sym_as_expression] = STATE(4529), - [sym_is_expression] = STATE(4529), - [sym_is_pattern_expression] = STATE(4529), - [sym_cast_expression] = STATE(4529), - [sym_checked_expression] = STATE(4529), - [sym_invocation_expression] = STATE(4543), - [sym_switch_expression] = STATE(4529), - [sym_await_expression] = STATE(4543), - [sym_throw_expression] = STATE(4529), - [sym_element_access_expression] = STATE(3175), - [sym_interpolated_string_expression] = STATE(4529), - [sym_member_access_expression] = STATE(3175), - [sym_object_creation_expression] = STATE(4543), - [sym_parenthesized_expression] = STATE(4543), - [sym__parenthesized_lvalue_expression] = STATE(3175), - [sym_lambda_expression] = STATE(4529), - [sym__lambda_expression_init] = STATE(7552), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(4529), - [sym_anonymous_method_expression] = STATE(4529), - [sym_anonymous_object_creation_expression] = STATE(4529), - [sym_implicit_array_creation_expression] = STATE(4529), - [sym_implicit_object_creation_expression] = STATE(4529), - [sym_implicit_stackalloc_expression] = STATE(4529), - [sym_initializer_expression] = STATE(4529), - [sym_default_expression] = STATE(4529), - [sym_with_expression] = STATE(4529), - [sym_sizeof_expression] = STATE(4529), - [sym_typeof_expression] = STATE(4529), - [sym_makeref_expression] = STATE(4529), - [sym_ref_expression] = STATE(4529), - [sym_reftype_expression] = STATE(4529), - [sym_refvalue_expression] = STATE(4529), - [sym_stackalloc_expression] = STATE(4529), - [sym_range_expression] = STATE(4529), - [sym_tuple_expression] = STATE(3175), - [sym_literal] = STATE(4529), - [sym_character_literal] = STATE(4536), - [sym_string_literal] = STATE(4536), - [sym_raw_string_literal] = STATE(4536), - [sym_boolean_literal] = STATE(4536), - [sym_identifier] = STATE(2246), - [sym__reserved_identifier] = STATE(2240), - [sym_preproc_if_in_expression] = STATE(4529), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2416), + [sym__name] = STATE(5897), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2367), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(5662), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(2417), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3102), + [sym_postfix_unary_expression] = STATE(3079), + [sym_prefix_unary_expression] = STATE(3079), + [sym__pointer_indirection_expression] = STATE(2415), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6134), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3102), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3079), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2415), + [sym_interpolated_string_expression] = STATE(3102), + [sym_member_access_expression] = STATE(2415), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3079), + [sym__parenthesized_lvalue_expression] = STATE(2415), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7425), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(3102), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3102), + [sym_typeof_expression] = STATE(3102), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2415), + [sym_literal] = STATE(3102), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(1564), [sym_preproc_endregion] = STATE(1564), [sym_preproc_line] = STATE(1564), @@ -306175,166 +306061,166 @@ 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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3363), - [sym__identifier_token] = ACTIONS(1387), - [anon_sym_alias] = ACTIONS(1389), - [anon_sym_global] = ACTIONS(1389), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1391), - [anon_sym_LPAREN] = ACTIONS(1463), - [anon_sym_ref] = ACTIONS(1465), - [anon_sym_LBRACE] = ACTIONS(1397), - [anon_sym_delegate] = ACTIONS(1399), - [anon_sym_async] = ACTIONS(1047), - [anon_sym_file] = ACTIONS(1389), - [anon_sym_new] = ACTIONS(1467), - [anon_sym_where] = ACTIONS(1389), - [anon_sym_notnull] = ACTIONS(1389), - [anon_sym_unmanaged] = ACTIONS(1389), - [anon_sym_checked] = ACTIONS(1403), - [anon_sym_BANG] = ACTIONS(1471), - [anon_sym_TILDE] = ACTIONS(1471), - [anon_sym_PLUS_PLUS] = ACTIONS(1471), - [anon_sym_DASH_DASH] = ACTIONS(1471), - [anon_sym_true] = ACTIONS(1409), - [anon_sym_false] = ACTIONS(1409), - [anon_sym_PLUS] = ACTIONS(1469), - [anon_sym_DASH] = ACTIONS(1469), - [anon_sym_STAR] = ACTIONS(1473), - [anon_sym_CARET] = ACTIONS(1471), - [anon_sym_AMP] = ACTIONS(1471), - [anon_sym_this] = ACTIONS(1413), - [anon_sym_scoped] = ACTIONS(1415), - [anon_sym_base] = ACTIONS(1417), - [anon_sym_var] = ACTIONS(1419), - [sym_predefined_type] = ACTIONS(1421), - [anon_sym_unchecked] = ACTIONS(1403), - [anon_sym_yield] = ACTIONS(1389), - [anon_sym_default] = ACTIONS(1423), - [anon_sym_throw] = ACTIONS(1475), - [anon_sym_when] = ACTIONS(1389), - [anon_sym_await] = ACTIONS(1477), - [anon_sym_DOT_DOT] = ACTIONS(1479), - [anon_sym_from] = ACTIONS(1431), - [anon_sym_into] = ACTIONS(1389), - [anon_sym_join] = ACTIONS(1389), - [anon_sym_on] = ACTIONS(1389), - [anon_sym_equals] = ACTIONS(1389), - [anon_sym_let] = ACTIONS(1389), - [anon_sym_orderby] = ACTIONS(1389), - [anon_sym_ascending] = ACTIONS(1389), - [anon_sym_descending] = ACTIONS(1389), - [anon_sym_group] = ACTIONS(1389), - [anon_sym_by] = ACTIONS(1389), - [anon_sym_select] = ACTIONS(1389), - [anon_sym_stackalloc] = ACTIONS(1433), - [anon_sym_sizeof] = ACTIONS(1435), - [anon_sym_typeof] = ACTIONS(1437), - [anon_sym___makeref] = ACTIONS(1439), - [anon_sym___reftype] = ACTIONS(1441), - [anon_sym___refvalue] = ACTIONS(1443), - [sym_null_literal] = ACTIONS(1445), - [anon_sym_SQUOTE] = ACTIONS(1447), - [sym_integer_literal] = ACTIONS(1445), - [sym_real_literal] = ACTIONS(1449), - [anon_sym_DQUOTE] = ACTIONS(1451), - [sym_verbatim_string_literal] = ACTIONS(1449), - [aux_sym_preproc_if_token1] = ACTIONS(1453), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1455), - [sym_interpolation_verbatim_start] = ACTIONS(1457), - [sym_interpolation_raw_start] = ACTIONS(1459), - [sym_raw_string_start] = ACTIONS(1461), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), + [sym__identifier_token] = ACTIONS(25), + [anon_sym_alias] = ACTIONS(29), + [anon_sym_global] = ACTIONS(29), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1239), + [anon_sym_LPAREN] = ACTIONS(2943), + [anon_sym_ref] = ACTIONS(715), + [anon_sym_LBRACE] = ACTIONS(1481), + [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(1525), + [anon_sym_TILDE] = ACTIONS(1525), + [anon_sym_PLUS_PLUS] = ACTIONS(1525), + [anon_sym_DASH_DASH] = ACTIONS(1525), + [anon_sym_true] = ACTIONS(77), + [anon_sym_false] = ACTIONS(77), + [anon_sym_PLUS] = ACTIONS(1523), + [anon_sym_DASH] = ACTIONS(1523), + [anon_sym_STAR] = ACTIONS(2227), + [anon_sym_CARET] = ACTIONS(1525), + [anon_sym_AMP] = ACTIONS(1525), + [anon_sym_this] = ACTIONS(1261), + [anon_sym_scoped] = ACTIONS(85), + [anon_sym_base] = ACTIONS(87), + [anon_sym_var] = ACTIONS(89), + [sym_predefined_type] = ACTIONS(1265), + [anon_sym_unchecked] = ACTIONS(1065), + [anon_sym_yield] = ACTIONS(29), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(1527), + [anon_sym_when] = ACTIONS(29), + [anon_sym_await] = ACTIONS(1529), + [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), }, [1565] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(3184), - [sym__name] = STATE(5883), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2313), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2269), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(4349), - [sym_non_lvalue_expression] = STATE(4541), - [sym_lvalue_expression] = STATE(3314), - [sym__expression_statement_expression] = STATE(4529), - [sym_assignment_expression] = STATE(4543), - [sym_binary_expression] = STATE(4529), - [sym_postfix_unary_expression] = STATE(4543), - [sym_prefix_unary_expression] = STATE(4543), - [sym__pointer_indirection_expression] = STATE(3175), - [sym_query_expression] = STATE(4529), - [sym_from_clause] = STATE(6156), - [sym_conditional_expression] = STATE(4529), - [sym_conditional_access_expression] = STATE(4529), - [sym_as_expression] = STATE(4529), - [sym_is_expression] = STATE(4529), - [sym_is_pattern_expression] = STATE(4529), - [sym_cast_expression] = STATE(4529), - [sym_checked_expression] = STATE(4529), - [sym_invocation_expression] = STATE(4543), - [sym_switch_expression] = STATE(4529), - [sym_await_expression] = STATE(4543), - [sym_throw_expression] = STATE(4529), - [sym_element_access_expression] = STATE(3175), - [sym_interpolated_string_expression] = STATE(4529), - [sym_member_access_expression] = STATE(3175), - [sym_object_creation_expression] = STATE(4543), - [sym_parenthesized_expression] = STATE(4543), - [sym__parenthesized_lvalue_expression] = STATE(3175), - [sym_lambda_expression] = STATE(4529), - [sym__lambda_expression_init] = STATE(7552), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(4529), - [sym_anonymous_method_expression] = STATE(4529), - [sym_anonymous_object_creation_expression] = STATE(4529), - [sym_implicit_array_creation_expression] = STATE(4529), - [sym_implicit_object_creation_expression] = STATE(4529), - [sym_implicit_stackalloc_expression] = STATE(4529), - [sym_initializer_expression] = STATE(4529), - [sym_default_expression] = STATE(4529), - [sym_with_expression] = STATE(4529), - [sym_sizeof_expression] = STATE(4529), - [sym_typeof_expression] = STATE(4529), - [sym_makeref_expression] = STATE(4529), - [sym_ref_expression] = STATE(4529), - [sym_reftype_expression] = STATE(4529), - [sym_refvalue_expression] = STATE(4529), - [sym_stackalloc_expression] = STATE(4529), - [sym_range_expression] = STATE(4529), - [sym_tuple_expression] = STATE(3175), - [sym_literal] = STATE(4529), - [sym_character_literal] = STATE(4536), - [sym_string_literal] = STATE(4536), - [sym_raw_string_literal] = STATE(4536), - [sym_boolean_literal] = STATE(4536), - [sym_identifier] = STATE(2246), - [sym__reserved_identifier] = STATE(2240), - [sym_preproc_if_in_expression] = STATE(4529), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(5896), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2362), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(3507), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3661), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3102), + [sym_postfix_unary_expression] = STATE(3079), + [sym_prefix_unary_expression] = STATE(3079), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6129), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3102), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3079), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3102), + [sym_member_access_expression] = STATE(2472), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3079), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7367), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(3102), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3102), + [sym_typeof_expression] = STATE(3102), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2472), + [sym_literal] = STATE(3102), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(1565), [sym_preproc_endregion] = STATE(1565), [sym_preproc_line] = STATE(1565), @@ -306344,166 +306230,166 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1565), [sym_preproc_define] = STATE(1565), [sym_preproc_undef] = STATE(1565), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3363), - [sym__identifier_token] = ACTIONS(1387), - [anon_sym_alias] = ACTIONS(1389), - [anon_sym_global] = ACTIONS(1389), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1391), - [anon_sym_LPAREN] = ACTIONS(1463), - [anon_sym_ref] = ACTIONS(1465), - [anon_sym_LBRACE] = ACTIONS(1397), - [anon_sym_delegate] = ACTIONS(1399), - [anon_sym_async] = ACTIONS(1047), - [anon_sym_file] = ACTIONS(1389), - [anon_sym_new] = ACTIONS(1467), - [anon_sym_where] = ACTIONS(1389), - [anon_sym_notnull] = ACTIONS(1389), - [anon_sym_unmanaged] = ACTIONS(1389), - [anon_sym_checked] = ACTIONS(1403), - [anon_sym_BANG] = ACTIONS(1471), - [anon_sym_TILDE] = ACTIONS(1471), - [anon_sym_PLUS_PLUS] = ACTIONS(1471), - [anon_sym_DASH_DASH] = ACTIONS(1471), - [anon_sym_true] = ACTIONS(1409), - [anon_sym_false] = ACTIONS(1409), - [anon_sym_PLUS] = ACTIONS(1469), - [anon_sym_DASH] = ACTIONS(1469), - [anon_sym_STAR] = ACTIONS(1473), - [anon_sym_CARET] = ACTIONS(1471), - [anon_sym_AMP] = ACTIONS(1471), - [anon_sym_this] = ACTIONS(1413), - [anon_sym_scoped] = ACTIONS(1415), - [anon_sym_base] = ACTIONS(1417), - [anon_sym_var] = ACTIONS(1419), - [sym_predefined_type] = ACTIONS(1421), - [anon_sym_unchecked] = ACTIONS(1403), - [anon_sym_yield] = ACTIONS(1389), - [anon_sym_default] = ACTIONS(1423), - [anon_sym_throw] = ACTIONS(1475), - [anon_sym_when] = ACTIONS(1389), - [anon_sym_await] = ACTIONS(1477), - [anon_sym_DOT_DOT] = ACTIONS(1479), - [anon_sym_from] = ACTIONS(1431), - [anon_sym_into] = ACTIONS(1389), - [anon_sym_join] = ACTIONS(1389), - [anon_sym_on] = ACTIONS(1389), - [anon_sym_equals] = ACTIONS(1389), - [anon_sym_let] = ACTIONS(1389), - [anon_sym_orderby] = ACTIONS(1389), - [anon_sym_ascending] = ACTIONS(1389), - [anon_sym_descending] = ACTIONS(1389), - [anon_sym_group] = ACTIONS(1389), - [anon_sym_by] = ACTIONS(1389), - [anon_sym_select] = ACTIONS(1389), - [anon_sym_stackalloc] = ACTIONS(1433), - [anon_sym_sizeof] = ACTIONS(1435), - [anon_sym_typeof] = ACTIONS(1437), - [anon_sym___makeref] = ACTIONS(1439), - [anon_sym___reftype] = ACTIONS(1441), - [anon_sym___refvalue] = ACTIONS(1443), - [sym_null_literal] = ACTIONS(1445), - [anon_sym_SQUOTE] = ACTIONS(1447), - [sym_integer_literal] = ACTIONS(1445), - [sym_real_literal] = ACTIONS(1449), - [anon_sym_DQUOTE] = ACTIONS(1451), - [sym_verbatim_string_literal] = ACTIONS(1449), - [aux_sym_preproc_if_token1] = ACTIONS(1453), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1455), - [sym_interpolation_verbatim_start] = ACTIONS(1457), - [sym_interpolation_raw_start] = ACTIONS(1459), - [sym_raw_string_start] = ACTIONS(1461), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), + [sym__identifier_token] = ACTIONS(25), + [anon_sym_alias] = ACTIONS(29), + [anon_sym_global] = ACTIONS(29), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1479), + [anon_sym_LPAREN] = ACTIONS(2135), + [anon_sym_ref] = ACTIONS(2137), + [anon_sym_LBRACE] = ACTIONS(1481), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), + [anon_sym_file] = ACTIONS(29), + [anon_sym_new] = ACTIONS(2139), + [anon_sym_where] = ACTIONS(29), + [anon_sym_notnull] = ACTIONS(29), + [anon_sym_unmanaged] = ACTIONS(29), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(2143), + [anon_sym_TILDE] = ACTIONS(2143), + [anon_sym_PLUS_PLUS] = ACTIONS(2143), + [anon_sym_DASH_DASH] = ACTIONS(2143), + [anon_sym_true] = ACTIONS(77), + [anon_sym_false] = ACTIONS(77), + [anon_sym_PLUS] = ACTIONS(2141), + [anon_sym_DASH] = ACTIONS(2141), + [anon_sym_STAR] = ACTIONS(2145), + [anon_sym_CARET] = ACTIONS(2143), + [anon_sym_AMP] = ACTIONS(2143), + [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(2147), + [anon_sym_when] = ACTIONS(29), + [anon_sym_await] = ACTIONS(2149), + [anon_sym_DOT_DOT] = ACTIONS(2151), + [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), }, [1566] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2762), - [sym__name] = STATE(5910), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2204), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(4848), - [sym_non_lvalue_expression] = STATE(3438), - [sym_lvalue_expression] = STATE(3524), - [sym__expression_statement_expression] = STATE(3362), - [sym_assignment_expression] = STATE(3449), - [sym_binary_expression] = STATE(3362), - [sym_postfix_unary_expression] = STATE(3449), - [sym_prefix_unary_expression] = STATE(3449), - [sym__pointer_indirection_expression] = STATE(2747), - [sym_query_expression] = STATE(3362), - [sym_from_clause] = STATE(6174), - [sym_conditional_expression] = STATE(3362), - [sym_conditional_access_expression] = STATE(3362), - [sym_as_expression] = STATE(3362), - [sym_is_expression] = STATE(3362), - [sym_is_pattern_expression] = STATE(3362), - [sym_cast_expression] = STATE(3362), - [sym_checked_expression] = STATE(3362), - [sym_invocation_expression] = STATE(3449), - [sym_switch_expression] = STATE(3362), - [sym_await_expression] = STATE(3449), - [sym_throw_expression] = STATE(3362), - [sym_element_access_expression] = STATE(2747), - [sym_interpolated_string_expression] = STATE(3362), - [sym_member_access_expression] = STATE(2747), - [sym_object_creation_expression] = STATE(3449), - [sym_parenthesized_expression] = STATE(3449), - [sym__parenthesized_lvalue_expression] = STATE(2747), - [sym_lambda_expression] = STATE(3362), - [sym__lambda_expression_init] = STATE(7407), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3362), - [sym_anonymous_method_expression] = STATE(3362), - [sym_anonymous_object_creation_expression] = STATE(3362), - [sym_implicit_array_creation_expression] = STATE(3362), - [sym_implicit_object_creation_expression] = STATE(3362), - [sym_implicit_stackalloc_expression] = STATE(3362), - [sym_initializer_expression] = STATE(3362), - [sym_default_expression] = STATE(3362), - [sym_with_expression] = STATE(3362), - [sym_sizeof_expression] = STATE(3362), - [sym_typeof_expression] = STATE(3362), - [sym_makeref_expression] = STATE(3362), - [sym_ref_expression] = STATE(3362), - [sym_reftype_expression] = STATE(3362), - [sym_refvalue_expression] = STATE(3362), - [sym_stackalloc_expression] = STATE(3362), - [sym_range_expression] = STATE(3362), - [sym_tuple_expression] = STATE(2747), - [sym_literal] = STATE(3362), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3362), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2816), + [sym__name] = STATE(5860), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2321), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(5697), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(2830), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3102), + [sym_postfix_unary_expression] = STATE(3079), + [sym_prefix_unary_expression] = STATE(3079), + [sym__pointer_indirection_expression] = STATE(2815), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6134), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3102), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3079), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2815), + [sym_interpolated_string_expression] = STATE(3102), + [sym_member_access_expression] = STATE(2815), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3079), + [sym__parenthesized_lvalue_expression] = STATE(2815), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7425), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(3102), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3102), + [sym_typeof_expression] = STATE(3102), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2815), + [sym_literal] = STATE(3102), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(1566), [sym_preproc_endregion] = STATE(1566), [sym_preproc_line] = STATE(1566), @@ -306513,47 +306399,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1566), [sym_preproc_define] = STATE(1566), [sym_preproc_undef] = STATE(1566), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3385), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1307), - [anon_sym_LPAREN] = ACTIONS(1693), - [anon_sym_ref] = ACTIONS(1695), - [anon_sym_LBRACE] = ACTIONS(1313), - [anon_sym_delegate] = ACTIONS(1315), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1305), + [anon_sym_LPAREN] = ACTIONS(2945), + [anon_sym_ref] = ACTIONS(715), + [anon_sym_LBRACE] = ACTIONS(1481), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1697), + [anon_sym_new] = ACTIONS(1059), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1319), - [anon_sym_BANG] = ACTIONS(1701), - [anon_sym_TILDE] = ACTIONS(1701), - [anon_sym_PLUS_PLUS] = ACTIONS(1701), - [anon_sym_DASH_DASH] = ACTIONS(1701), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(1525), + [anon_sym_TILDE] = ACTIONS(1525), + [anon_sym_PLUS_PLUS] = ACTIONS(1525), + [anon_sym_DASH_DASH] = ACTIONS(1525), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1699), - [anon_sym_DASH] = ACTIONS(1699), - [anon_sym_STAR] = ACTIONS(1351), - [anon_sym_CARET] = ACTIONS(1701), - [anon_sym_AMP] = ACTIONS(1701), - [anon_sym_this] = ACTIONS(1323), + [anon_sym_PLUS] = ACTIONS(1523), + [anon_sym_DASH] = ACTIONS(1523), + [anon_sym_STAR] = ACTIONS(1647), + [anon_sym_CARET] = ACTIONS(1525), + [anon_sym_AMP] = ACTIONS(1525), + [anon_sym_this] = ACTIONS(1321), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1325), + [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1319), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1703), + [anon_sym_throw] = ACTIONS(1527), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1705), - [anon_sym_DOT_DOT] = ACTIONS(1707), + [anon_sym_await] = ACTIONS(1529), + [anon_sym_DOT_DOT] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -306566,19 +306452,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1333), + [anon_sym_stackalloc] = ACTIONS(127), [anon_sym_sizeof] = ACTIONS(129), [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(1335), - [anon_sym___reftype] = ACTIONS(1337), - [anon_sym___refvalue] = ACTIONS(1339), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), [sym_null_literal] = ACTIONS(139), [anon_sym_SQUOTE] = ACTIONS(141), [sym_integer_literal] = ACTIONS(139), [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1709), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -306595,84 +306481,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [1567] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2762), - [sym__name] = STATE(5910), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2204), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(4302), - [sym_non_lvalue_expression] = STATE(3438), - [sym_lvalue_expression] = STATE(3162), - [sym__expression_statement_expression] = STATE(3362), - [sym_assignment_expression] = STATE(3449), - [sym_binary_expression] = STATE(3362), - [sym_postfix_unary_expression] = STATE(3449), - [sym_prefix_unary_expression] = STATE(3449), - [sym__pointer_indirection_expression] = STATE(2747), - [sym_query_expression] = STATE(3362), - [sym_from_clause] = STATE(6171), - [sym_conditional_expression] = STATE(3362), - [sym_conditional_access_expression] = STATE(3362), - [sym_as_expression] = STATE(3362), - [sym_is_expression] = STATE(3362), - [sym_is_pattern_expression] = STATE(3362), - [sym_cast_expression] = STATE(3362), - [sym_checked_expression] = STATE(3362), - [sym_invocation_expression] = STATE(3449), - [sym_switch_expression] = STATE(3362), - [sym_await_expression] = STATE(3449), - [sym_throw_expression] = STATE(3362), - [sym_element_access_expression] = STATE(2747), - [sym_interpolated_string_expression] = STATE(3362), - [sym_member_access_expression] = STATE(2747), - [sym_object_creation_expression] = STATE(3449), - [sym_parenthesized_expression] = STATE(3449), - [sym__parenthesized_lvalue_expression] = STATE(2747), - [sym_lambda_expression] = STATE(3362), - [sym__lambda_expression_init] = STATE(7320), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3362), - [sym_anonymous_method_expression] = STATE(3362), - [sym_anonymous_object_creation_expression] = STATE(3362), - [sym_implicit_array_creation_expression] = STATE(3362), - [sym_implicit_object_creation_expression] = STATE(3362), - [sym_implicit_stackalloc_expression] = STATE(3362), - [sym_initializer_expression] = STATE(3362), - [sym_default_expression] = STATE(3362), - [sym_with_expression] = STATE(3362), - [sym_sizeof_expression] = STATE(3362), - [sym_typeof_expression] = STATE(3362), - [sym_makeref_expression] = STATE(3362), - [sym_ref_expression] = STATE(3362), - [sym_reftype_expression] = STATE(3362), - [sym_refvalue_expression] = STATE(3362), - [sym_stackalloc_expression] = STATE(3362), - [sym_range_expression] = STATE(3362), - [sym_tuple_expression] = STATE(2747), - [sym_literal] = STATE(3362), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3362), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2901), + [sym__name] = STATE(5889), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2349), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(3554), + [sym_non_lvalue_expression] = STATE(3685), + [sym_lvalue_expression] = STATE(2985), + [sym__expression_statement_expression] = STATE(3836), + [sym_assignment_expression] = STATE(3689), + [sym_binary_expression] = STATE(3836), + [sym_postfix_unary_expression] = STATE(3689), + [sym_prefix_unary_expression] = STATE(3689), + [sym__pointer_indirection_expression] = STATE(2906), + [sym_query_expression] = STATE(3836), + [sym_from_clause] = STATE(6157), + [sym_conditional_expression] = STATE(3836), + [sym_conditional_access_expression] = STATE(3836), + [sym_as_expression] = STATE(3836), + [sym_is_expression] = STATE(3836), + [sym_is_pattern_expression] = STATE(3836), + [sym_cast_expression] = STATE(3836), + [sym_checked_expression] = STATE(3836), + [sym_invocation_expression] = STATE(3689), + [sym_switch_expression] = STATE(3836), + [sym_await_expression] = STATE(3689), + [sym_throw_expression] = STATE(3836), + [sym_element_access_expression] = STATE(2906), + [sym_interpolated_string_expression] = STATE(3836), + [sym_member_access_expression] = STATE(2906), + [sym_object_creation_expression] = STATE(3689), + [sym_parenthesized_expression] = STATE(3689), + [sym__parenthesized_lvalue_expression] = STATE(2906), + [sym_lambda_expression] = STATE(3836), + [sym__lambda_expression_init] = STATE(7485), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3836), + [sym_anonymous_method_expression] = STATE(3836), + [sym_anonymous_object_creation_expression] = STATE(3836), + [sym_implicit_array_creation_expression] = STATE(3836), + [sym_implicit_object_creation_expression] = STATE(3836), + [sym_implicit_stackalloc_expression] = STATE(3836), + [sym_initializer_expression] = STATE(3836), + [sym_default_expression] = STATE(3836), + [sym_with_expression] = STATE(3836), + [sym_sizeof_expression] = STATE(3836), + [sym_typeof_expression] = STATE(3836), + [sym_makeref_expression] = STATE(3836), + [sym_ref_expression] = STATE(3836), + [sym_reftype_expression] = STATE(3836), + [sym_refvalue_expression] = STATE(3836), + [sym_stackalloc_expression] = STATE(3836), + [sym_range_expression] = STATE(3836), + [sym_tuple_expression] = STATE(2906), + [sym_literal] = STATE(3836), + [sym_character_literal] = STATE(3843), + [sym_string_literal] = STATE(3843), + [sym_raw_string_literal] = STATE(3843), + [sym_boolean_literal] = STATE(3843), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3836), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(1567), [sym_preproc_endregion] = STATE(1567), [sym_preproc_line] = STATE(1567), @@ -306682,47 +306568,216 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1567), [sym_preproc_define] = STATE(1567), [sym_preproc_undef] = STATE(1567), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3385), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3477), + [sym__identifier_token] = ACTIONS(25), + [anon_sym_alias] = ACTIONS(29), + [anon_sym_global] = ACTIONS(29), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1655), + [anon_sym_LPAREN] = ACTIONS(2043), + [anon_sym_ref] = ACTIONS(2045), + [anon_sym_LBRACE] = ACTIONS(1661), + [anon_sym_delegate] = ACTIONS(1663), + [anon_sym_async] = ACTIONS(1045), + [anon_sym_file] = ACTIONS(29), + [anon_sym_new] = ACTIONS(1759), + [anon_sym_where] = ACTIONS(29), + [anon_sym_notnull] = ACTIONS(29), + [anon_sym_unmanaged] = ACTIONS(29), + [anon_sym_checked] = ACTIONS(1667), + [anon_sym_BANG] = ACTIONS(2049), + [anon_sym_TILDE] = ACTIONS(2049), + [anon_sym_PLUS_PLUS] = ACTIONS(2049), + [anon_sym_DASH_DASH] = ACTIONS(2049), + [anon_sym_true] = ACTIONS(1673), + [anon_sym_false] = ACTIONS(1673), + [anon_sym_PLUS] = ACTIONS(2047), + [anon_sym_DASH] = ACTIONS(2047), + [anon_sym_STAR] = ACTIONS(1765), + [anon_sym_CARET] = ACTIONS(2049), + [anon_sym_AMP] = ACTIONS(2049), + [anon_sym_this] = ACTIONS(1677), + [anon_sym_scoped] = ACTIONS(85), + [anon_sym_base] = ACTIONS(1679), + [anon_sym_var] = ACTIONS(89), + [sym_predefined_type] = ACTIONS(1681), + [anon_sym_unchecked] = ACTIONS(1667), + [anon_sym_yield] = ACTIONS(29), + [anon_sym_default] = ACTIONS(1683), + [anon_sym_throw] = ACTIONS(2051), + [anon_sym_when] = ACTIONS(29), + [anon_sym_await] = ACTIONS(2053), + [anon_sym_DOT_DOT] = ACTIONS(2055), + [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(1691), + [anon_sym_sizeof] = ACTIONS(1693), + [anon_sym_typeof] = ACTIONS(1695), + [anon_sym___makeref] = ACTIONS(1697), + [anon_sym___reftype] = ACTIONS(1699), + [anon_sym___refvalue] = ACTIONS(1701), + [sym_null_literal] = ACTIONS(1703), + [anon_sym_SQUOTE] = ACTIONS(1705), + [sym_integer_literal] = ACTIONS(1703), + [sym_real_literal] = ACTIONS(1707), + [anon_sym_DQUOTE] = ACTIONS(1709), + [sym_verbatim_string_literal] = ACTIONS(1707), + [aux_sym_preproc_if_token1] = ACTIONS(1711), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + [sym_interpolation_regular_start] = ACTIONS(1713), + [sym_interpolation_verbatim_start] = ACTIONS(1715), + [sym_interpolation_raw_start] = ACTIONS(1717), + [sym_raw_string_start] = ACTIONS(1719), + }, + [1568] = { + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2816), + [sym__name] = STATE(5879), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2196), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(5697), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(2830), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3102), + [sym_postfix_unary_expression] = STATE(3079), + [sym_prefix_unary_expression] = STATE(3079), + [sym__pointer_indirection_expression] = STATE(2815), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6134), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3102), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3079), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2815), + [sym_interpolated_string_expression] = STATE(3102), + [sym_member_access_expression] = STATE(2815), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3079), + [sym__parenthesized_lvalue_expression] = STATE(2815), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7425), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(3102), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3102), + [sym_typeof_expression] = STATE(3102), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2815), + [sym_literal] = STATE(3102), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), + [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(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1307), - [anon_sym_LPAREN] = ACTIONS(1343), - [anon_sym_ref] = ACTIONS(1345), - [anon_sym_LBRACE] = ACTIONS(1313), - [anon_sym_delegate] = ACTIONS(1315), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1305), + [anon_sym_LPAREN] = ACTIONS(2945), + [anon_sym_ref] = ACTIONS(715), + [anon_sym_LBRACE] = ACTIONS(1481), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1317), + [anon_sym_new] = ACTIONS(1059), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1319), - [anon_sym_BANG] = ACTIONS(1349), - [anon_sym_TILDE] = ACTIONS(1349), - [anon_sym_PLUS_PLUS] = ACTIONS(1349), - [anon_sym_DASH_DASH] = ACTIONS(1349), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(1525), + [anon_sym_TILDE] = ACTIONS(1525), + [anon_sym_PLUS_PLUS] = ACTIONS(1525), + [anon_sym_DASH_DASH] = ACTIONS(1525), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1347), - [anon_sym_DASH] = ACTIONS(1347), - [anon_sym_STAR] = ACTIONS(1351), - [anon_sym_CARET] = ACTIONS(1349), - [anon_sym_AMP] = ACTIONS(1349), - [anon_sym_this] = ACTIONS(1323), + [anon_sym_PLUS] = ACTIONS(1523), + [anon_sym_DASH] = ACTIONS(1523), + [anon_sym_STAR] = ACTIONS(1729), + [anon_sym_CARET] = ACTIONS(1525), + [anon_sym_AMP] = ACTIONS(1525), + [anon_sym_this] = ACTIONS(1321), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1325), + [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1319), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1353), + [anon_sym_throw] = ACTIONS(1527), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1355), - [anon_sym_DOT_DOT] = ACTIONS(1357), + [anon_sym_await] = ACTIONS(1529), + [anon_sym_DOT_DOT] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -306735,19 +306790,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1333), + [anon_sym_stackalloc] = ACTIONS(127), [anon_sym_sizeof] = ACTIONS(129), [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(1335), - [anon_sym___reftype] = ACTIONS(1337), - [anon_sym___refvalue] = ACTIONS(1339), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), [sym_null_literal] = ACTIONS(139), [anon_sym_SQUOTE] = ACTIONS(141), [sym_integer_literal] = ACTIONS(139), [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1341), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -306763,254 +306818,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), }, - [1568] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(3184), - [sym__name] = STATE(5883), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2313), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2269), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(4327), - [sym_non_lvalue_expression] = STATE(4541), - [sym_lvalue_expression] = STATE(3314), - [sym__expression_statement_expression] = STATE(4529), - [sym_assignment_expression] = STATE(4543), - [sym_binary_expression] = STATE(4529), - [sym_postfix_unary_expression] = STATE(4543), - [sym_prefix_unary_expression] = STATE(4543), - [sym__pointer_indirection_expression] = STATE(3175), - [sym_query_expression] = STATE(4529), - [sym_from_clause] = STATE(6156), - [sym_conditional_expression] = STATE(4529), - [sym_conditional_access_expression] = STATE(4529), - [sym_as_expression] = STATE(4529), - [sym_is_expression] = STATE(4529), - [sym_is_pattern_expression] = STATE(4529), - [sym_cast_expression] = STATE(4529), - [sym_checked_expression] = STATE(4529), - [sym_invocation_expression] = STATE(4543), - [sym_switch_expression] = STATE(4529), - [sym_await_expression] = STATE(4543), - [sym_throw_expression] = STATE(4529), - [sym_element_access_expression] = STATE(3175), - [sym_interpolated_string_expression] = STATE(4529), - [sym_member_access_expression] = STATE(3175), - [sym_object_creation_expression] = STATE(4543), - [sym_parenthesized_expression] = STATE(4543), - [sym__parenthesized_lvalue_expression] = STATE(3175), - [sym_lambda_expression] = STATE(4529), - [sym__lambda_expression_init] = STATE(7552), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(4529), - [sym_anonymous_method_expression] = STATE(4529), - [sym_anonymous_object_creation_expression] = STATE(4529), - [sym_implicit_array_creation_expression] = STATE(4529), - [sym_implicit_object_creation_expression] = STATE(4529), - [sym_implicit_stackalloc_expression] = STATE(4529), - [sym_initializer_expression] = STATE(4529), - [sym_default_expression] = STATE(4529), - [sym_with_expression] = STATE(4529), - [sym_sizeof_expression] = STATE(4529), - [sym_typeof_expression] = STATE(4529), - [sym_makeref_expression] = STATE(4529), - [sym_ref_expression] = STATE(4529), - [sym_reftype_expression] = STATE(4529), - [sym_refvalue_expression] = STATE(4529), - [sym_stackalloc_expression] = STATE(4529), - [sym_range_expression] = STATE(4529), - [sym_tuple_expression] = STATE(3175), - [sym_literal] = STATE(4529), - [sym_character_literal] = STATE(4536), - [sym_string_literal] = STATE(4536), - [sym_raw_string_literal] = STATE(4536), - [sym_boolean_literal] = STATE(4536), - [sym_identifier] = STATE(2246), - [sym__reserved_identifier] = STATE(2240), - [sym_preproc_if_in_expression] = STATE(4529), - [sym_preproc_if_in_attribute_list] = STATE(5576), - [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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3363), - [sym__identifier_token] = ACTIONS(1387), - [anon_sym_alias] = ACTIONS(1389), - [anon_sym_global] = ACTIONS(1389), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1391), - [anon_sym_LPAREN] = ACTIONS(1463), - [anon_sym_ref] = ACTIONS(1465), - [anon_sym_LBRACE] = ACTIONS(1397), - [anon_sym_delegate] = ACTIONS(1399), - [anon_sym_async] = ACTIONS(1047), - [anon_sym_file] = ACTIONS(1389), - [anon_sym_new] = ACTIONS(1467), - [anon_sym_where] = ACTIONS(1389), - [anon_sym_notnull] = ACTIONS(1389), - [anon_sym_unmanaged] = ACTIONS(1389), - [anon_sym_checked] = ACTIONS(1403), - [anon_sym_BANG] = ACTIONS(1471), - [anon_sym_TILDE] = ACTIONS(1471), - [anon_sym_PLUS_PLUS] = ACTIONS(1471), - [anon_sym_DASH_DASH] = ACTIONS(1471), - [anon_sym_true] = ACTIONS(1409), - [anon_sym_false] = ACTIONS(1409), - [anon_sym_PLUS] = ACTIONS(1469), - [anon_sym_DASH] = ACTIONS(1469), - [anon_sym_STAR] = ACTIONS(1473), - [anon_sym_CARET] = ACTIONS(1471), - [anon_sym_AMP] = ACTIONS(1471), - [anon_sym_this] = ACTIONS(1413), - [anon_sym_scoped] = ACTIONS(1415), - [anon_sym_base] = ACTIONS(1417), - [anon_sym_var] = ACTIONS(1419), - [sym_predefined_type] = ACTIONS(1421), - [anon_sym_unchecked] = ACTIONS(1403), - [anon_sym_yield] = ACTIONS(1389), - [anon_sym_default] = ACTIONS(1423), - [anon_sym_throw] = ACTIONS(1475), - [anon_sym_when] = ACTIONS(1389), - [anon_sym_await] = ACTIONS(1477), - [anon_sym_DOT_DOT] = ACTIONS(1479), - [anon_sym_from] = ACTIONS(1431), - [anon_sym_into] = ACTIONS(1389), - [anon_sym_join] = ACTIONS(1389), - [anon_sym_on] = ACTIONS(1389), - [anon_sym_equals] = ACTIONS(1389), - [anon_sym_let] = ACTIONS(1389), - [anon_sym_orderby] = ACTIONS(1389), - [anon_sym_ascending] = ACTIONS(1389), - [anon_sym_descending] = ACTIONS(1389), - [anon_sym_group] = ACTIONS(1389), - [anon_sym_by] = ACTIONS(1389), - [anon_sym_select] = ACTIONS(1389), - [anon_sym_stackalloc] = ACTIONS(1433), - [anon_sym_sizeof] = ACTIONS(1435), - [anon_sym_typeof] = ACTIONS(1437), - [anon_sym___makeref] = ACTIONS(1439), - [anon_sym___reftype] = ACTIONS(1441), - [anon_sym___refvalue] = ACTIONS(1443), - [sym_null_literal] = ACTIONS(1445), - [anon_sym_SQUOTE] = ACTIONS(1447), - [sym_integer_literal] = ACTIONS(1445), - [sym_real_literal] = ACTIONS(1449), - [anon_sym_DQUOTE] = ACTIONS(1451), - [sym_verbatim_string_literal] = ACTIONS(1449), - [aux_sym_preproc_if_token1] = ACTIONS(1453), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1455), - [sym_interpolation_verbatim_start] = ACTIONS(1457), - [sym_interpolation_raw_start] = ACTIONS(1459), - [sym_raw_string_start] = ACTIONS(1461), - }, [1569] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2762), - [sym__name] = STATE(5910), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2204), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(4851), - [sym_non_lvalue_expression] = STATE(3438), - [sym_lvalue_expression] = STATE(3524), - [sym__expression_statement_expression] = STATE(3362), - [sym_assignment_expression] = STATE(3449), - [sym_binary_expression] = STATE(3362), - [sym_postfix_unary_expression] = STATE(3449), - [sym_prefix_unary_expression] = STATE(3449), - [sym__pointer_indirection_expression] = STATE(2747), - [sym_query_expression] = STATE(3362), - [sym_from_clause] = STATE(6174), - [sym_conditional_expression] = STATE(3362), - [sym_conditional_access_expression] = STATE(3362), - [sym_as_expression] = STATE(3362), - [sym_is_expression] = STATE(3362), - [sym_is_pattern_expression] = STATE(3362), - [sym_cast_expression] = STATE(3362), - [sym_checked_expression] = STATE(3362), - [sym_invocation_expression] = STATE(3449), - [sym_switch_expression] = STATE(3362), - [sym_await_expression] = STATE(3449), - [sym_throw_expression] = STATE(3362), - [sym_element_access_expression] = STATE(2747), - [sym_interpolated_string_expression] = STATE(3362), - [sym_member_access_expression] = STATE(2747), - [sym_object_creation_expression] = STATE(3449), - [sym_parenthesized_expression] = STATE(3449), - [sym__parenthesized_lvalue_expression] = STATE(2747), - [sym_lambda_expression] = STATE(3362), - [sym__lambda_expression_init] = STATE(7407), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3362), - [sym_anonymous_method_expression] = STATE(3362), - [sym_anonymous_object_creation_expression] = STATE(3362), - [sym_implicit_array_creation_expression] = STATE(3362), - [sym_implicit_object_creation_expression] = STATE(3362), - [sym_implicit_stackalloc_expression] = STATE(3362), - [sym_initializer_expression] = STATE(3362), - [sym_default_expression] = STATE(3362), - [sym_with_expression] = STATE(3362), - [sym_sizeof_expression] = STATE(3362), - [sym_typeof_expression] = STATE(3362), - [sym_makeref_expression] = STATE(3362), - [sym_ref_expression] = STATE(3362), - [sym_reftype_expression] = STATE(3362), - [sym_refvalue_expression] = STATE(3362), - [sym_stackalloc_expression] = STATE(3362), - [sym_range_expression] = STATE(3362), - [sym_tuple_expression] = STATE(2747), - [sym_literal] = STATE(3362), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3362), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2816), + [sym__name] = STATE(5893), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2361), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(3212), + [sym_non_lvalue_expression] = STATE(3495), + [sym_lvalue_expression] = STATE(3509), + [sym__expression_statement_expression] = STATE(3462), + [sym_assignment_expression] = STATE(3497), + [sym_binary_expression] = STATE(3462), + [sym_postfix_unary_expression] = STATE(3497), + [sym_prefix_unary_expression] = STATE(3497), + [sym__pointer_indirection_expression] = STATE(2815), + [sym_query_expression] = STATE(3462), + [sym_from_clause] = STATE(6150), + [sym_conditional_expression] = STATE(3462), + [sym_conditional_access_expression] = STATE(3462), + [sym_as_expression] = STATE(3462), + [sym_is_expression] = STATE(3462), + [sym_is_pattern_expression] = STATE(3462), + [sym_cast_expression] = STATE(3462), + [sym_checked_expression] = STATE(3462), + [sym_invocation_expression] = STATE(3497), + [sym_switch_expression] = STATE(3462), + [sym_await_expression] = STATE(3497), + [sym_throw_expression] = STATE(3462), + [sym_element_access_expression] = STATE(2815), + [sym_interpolated_string_expression] = STATE(3462), + [sym_member_access_expression] = STATE(2815), + [sym_object_creation_expression] = STATE(3497), + [sym_parenthesized_expression] = STATE(3497), + [sym__parenthesized_lvalue_expression] = STATE(2815), + [sym_lambda_expression] = STATE(3462), + [sym__lambda_expression_init] = STATE(7428), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3462), + [sym_anonymous_method_expression] = STATE(3462), + [sym_anonymous_object_creation_expression] = STATE(3462), + [sym_implicit_array_creation_expression] = STATE(3462), + [sym_implicit_object_creation_expression] = STATE(3462), + [sym_implicit_stackalloc_expression] = STATE(3462), + [sym_initializer_expression] = STATE(3462), + [sym_default_expression] = STATE(3462), + [sym_with_expression] = STATE(3462), + [sym_sizeof_expression] = STATE(3462), + [sym_typeof_expression] = STATE(3462), + [sym_makeref_expression] = STATE(3462), + [sym_ref_expression] = STATE(3462), + [sym_reftype_expression] = STATE(3462), + [sym_refvalue_expression] = STATE(3462), + [sym_stackalloc_expression] = STATE(3462), + [sym_range_expression] = STATE(3462), + [sym_tuple_expression] = STATE(2815), + [sym_literal] = STATE(3462), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3462), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(1569), [sym_preproc_endregion] = STATE(1569), [sym_preproc_line] = STATE(1569), @@ -307020,47 +306906,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1569), [sym_preproc_define] = STATE(1569), [sym_preproc_undef] = STATE(1569), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3385), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3367), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1307), - [anon_sym_LPAREN] = ACTIONS(1693), - [anon_sym_ref] = ACTIONS(1695), - [anon_sym_LBRACE] = ACTIONS(1313), - [anon_sym_delegate] = ACTIONS(1315), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1305), + [anon_sym_LPAREN] = ACTIONS(1839), + [anon_sym_ref] = ACTIONS(1841), + [anon_sym_LBRACE] = ACTIONS(1311), + [anon_sym_delegate] = ACTIONS(1313), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1697), + [anon_sym_new] = ACTIONS(1843), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1319), - [anon_sym_BANG] = ACTIONS(1701), - [anon_sym_TILDE] = ACTIONS(1701), - [anon_sym_PLUS_PLUS] = ACTIONS(1701), - [anon_sym_DASH_DASH] = ACTIONS(1701), + [anon_sym_checked] = ACTIONS(1317), + [anon_sym_BANG] = ACTIONS(1847), + [anon_sym_TILDE] = ACTIONS(1847), + [anon_sym_PLUS_PLUS] = ACTIONS(1847), + [anon_sym_DASH_DASH] = ACTIONS(1847), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1699), - [anon_sym_DASH] = ACTIONS(1699), - [anon_sym_STAR] = ACTIONS(1351), - [anon_sym_CARET] = ACTIONS(1701), - [anon_sym_AMP] = ACTIONS(1701), - [anon_sym_this] = ACTIONS(1323), + [anon_sym_PLUS] = ACTIONS(1845), + [anon_sym_DASH] = ACTIONS(1845), + [anon_sym_STAR] = ACTIONS(1849), + [anon_sym_CARET] = ACTIONS(1847), + [anon_sym_AMP] = ACTIONS(1847), + [anon_sym_this] = ACTIONS(1321), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1325), + [anon_sym_base] = ACTIONS(1323), [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1319), + [anon_sym_unchecked] = ACTIONS(1317), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1703), + [anon_sym_throw] = ACTIONS(1851), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1705), - [anon_sym_DOT_DOT] = ACTIONS(1707), + [anon_sym_await] = ACTIONS(1853), + [anon_sym_DOT_DOT] = ACTIONS(1855), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -307073,19 +306959,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1333), + [anon_sym_stackalloc] = ACTIONS(1331), [anon_sym_sizeof] = ACTIONS(129), [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(1335), - [anon_sym___reftype] = ACTIONS(1337), - [anon_sym___refvalue] = ACTIONS(1339), + [anon_sym___makeref] = ACTIONS(1333), + [anon_sym___reftype] = ACTIONS(1335), + [anon_sym___refvalue] = ACTIONS(1337), [sym_null_literal] = ACTIONS(139), [anon_sym_SQUOTE] = ACTIONS(141), [sym_integer_literal] = ACTIONS(139), [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1709), + [aux_sym_preproc_if_token1] = ACTIONS(1339), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -307102,84 +306988,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [1570] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(5160), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2204), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(4974), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3520), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3080), - [sym_postfix_unary_expression] = STATE(3111), - [sym_prefix_unary_expression] = STATE(3111), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6154), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3080), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3111), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3080), - [sym_member_access_expression] = STATE(2484), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3111), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7530), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(3080), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3080), - [sym_typeof_expression] = STATE(3080), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2484), - [sym_literal] = STATE(3080), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(5152), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2196), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(5660), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(2471), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3102), + [sym_postfix_unary_expression] = STATE(3079), + [sym_prefix_unary_expression] = STATE(3079), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6134), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3102), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3079), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3102), + [sym_member_access_expression] = STATE(2472), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3079), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7425), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(3102), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3102), + [sym_typeof_expression] = STATE(3102), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2472), + [sym_literal] = STATE(3102), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2261), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(1570), [sym_preproc_endregion] = STATE(1570), [sym_preproc_line] = STATE(1570), @@ -307189,46 +307075,46 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1570), [sym_preproc_define] = STATE(1570), [sym_preproc_undef] = STATE(1570), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1481), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1479), [anon_sym_LPAREN] = ACTIONS(43), - [anon_sym_ref] = ACTIONS(661), - [anon_sym_LBRACE] = ACTIONS(1487), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_ref] = ACTIONS(715), + [anon_sym_LBRACE] = ACTIONS(1481), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1061), + [anon_sym_new] = ACTIONS(1059), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = 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_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(1525), + [anon_sym_TILDE] = ACTIONS(1525), + [anon_sym_PLUS_PLUS] = ACTIONS(1525), + [anon_sym_DASH_DASH] = ACTIONS(1525), [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_PLUS] = ACTIONS(1523), + [anon_sym_DASH] = ACTIONS(1523), + [anon_sym_STAR] = ACTIONS(1973), + [anon_sym_CARET] = ACTIONS(1525), + [anon_sym_AMP] = ACTIONS(1525), [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(1067), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1589), + [anon_sym_throw] = ACTIONS(1527), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1591), + [anon_sym_await] = ACTIONS(1529), [anon_sym_DOT_DOT] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), @@ -307254,7 +307140,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(1089), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -307271,84 +307157,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [1571] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2420), - [sym__name] = STATE(5875), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2369), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(4157), - [sym_non_lvalue_expression] = STATE(3066), - [sym_lvalue_expression] = STATE(3125), - [sym__expression_statement_expression] = STATE(3006), - [sym_assignment_expression] = STATE(3020), - [sym_binary_expression] = STATE(3006), - [sym_postfix_unary_expression] = STATE(3020), - [sym_prefix_unary_expression] = STATE(3020), - [sym__pointer_indirection_expression] = STATE(2423), - [sym_query_expression] = STATE(3006), - [sym_from_clause] = STATE(6145), - [sym_conditional_expression] = STATE(3006), - [sym_conditional_access_expression] = STATE(3006), - [sym_as_expression] = STATE(3006), - [sym_is_expression] = STATE(3006), - [sym_is_pattern_expression] = STATE(3006), - [sym_cast_expression] = STATE(3006), - [sym_checked_expression] = STATE(3006), - [sym_invocation_expression] = STATE(3020), - [sym_switch_expression] = STATE(3006), - [sym_await_expression] = STATE(3020), - [sym_throw_expression] = STATE(3006), - [sym_element_access_expression] = STATE(2423), - [sym_interpolated_string_expression] = STATE(3006), - [sym_member_access_expression] = STATE(2423), - [sym_object_creation_expression] = STATE(3020), - [sym_parenthesized_expression] = STATE(3020), - [sym__parenthesized_lvalue_expression] = STATE(2423), - [sym_lambda_expression] = STATE(3006), - [sym__lambda_expression_init] = STATE(7538), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3006), - [sym_anonymous_method_expression] = STATE(3006), - [sym_anonymous_object_creation_expression] = STATE(3006), - [sym_implicit_array_creation_expression] = STATE(3006), - [sym_implicit_object_creation_expression] = STATE(3006), - [sym_implicit_stackalloc_expression] = STATE(3006), - [sym_initializer_expression] = STATE(3006), - [sym_default_expression] = STATE(3006), - [sym_with_expression] = STATE(3006), - [sym_sizeof_expression] = STATE(3006), - [sym_typeof_expression] = STATE(3006), - [sym_makeref_expression] = STATE(3006), - [sym_ref_expression] = STATE(3006), - [sym_reftype_expression] = STATE(3006), - [sym_refvalue_expression] = STATE(3006), - [sym_stackalloc_expression] = STATE(3006), - [sym_range_expression] = STATE(3006), - [sym_tuple_expression] = STATE(2423), - [sym_literal] = STATE(3006), - [sym_character_literal] = STATE(3011), - [sym_string_literal] = STATE(3011), - [sym_raw_string_literal] = STATE(3011), - [sym_boolean_literal] = STATE(3011), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3006), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2416), + [sym__name] = STATE(5897), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2367), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(2902), + [sym_non_lvalue_expression] = STATE(3040), + [sym_lvalue_expression] = STATE(3600), + [sym__expression_statement_expression] = STATE(3035), + [sym_assignment_expression] = STATE(3043), + [sym_binary_expression] = STATE(3035), + [sym_postfix_unary_expression] = STATE(3043), + [sym_prefix_unary_expression] = STATE(3043), + [sym__pointer_indirection_expression] = STATE(2415), + [sym_query_expression] = STATE(3035), + [sym_from_clause] = STATE(6156), + [sym_conditional_expression] = STATE(3035), + [sym_conditional_access_expression] = STATE(3035), + [sym_as_expression] = STATE(3035), + [sym_is_expression] = STATE(3035), + [sym_is_pattern_expression] = STATE(3035), + [sym_cast_expression] = STATE(3035), + [sym_checked_expression] = STATE(3035), + [sym_invocation_expression] = STATE(3043), + [sym_switch_expression] = STATE(3035), + [sym_await_expression] = STATE(3043), + [sym_throw_expression] = STATE(3035), + [sym_element_access_expression] = STATE(2415), + [sym_interpolated_string_expression] = STATE(3035), + [sym_member_access_expression] = STATE(2415), + [sym_object_creation_expression] = STATE(3043), + [sym_parenthesized_expression] = STATE(3043), + [sym__parenthesized_lvalue_expression] = STATE(2415), + [sym_lambda_expression] = STATE(3035), + [sym__lambda_expression_init] = STATE(7561), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3035), + [sym_anonymous_method_expression] = STATE(3035), + [sym_anonymous_object_creation_expression] = STATE(3035), + [sym_implicit_array_creation_expression] = STATE(3035), + [sym_implicit_object_creation_expression] = STATE(3035), + [sym_implicit_stackalloc_expression] = STATE(3035), + [sym_initializer_expression] = STATE(3035), + [sym_default_expression] = STATE(3035), + [sym_with_expression] = STATE(3035), + [sym_sizeof_expression] = STATE(3035), + [sym_typeof_expression] = STATE(3035), + [sym_makeref_expression] = STATE(3035), + [sym_ref_expression] = STATE(3035), + [sym_reftype_expression] = STATE(3035), + [sym_refvalue_expression] = STATE(3035), + [sym_stackalloc_expression] = STATE(3035), + [sym_range_expression] = STATE(3035), + [sym_tuple_expression] = STATE(2415), + [sym_literal] = STATE(3035), + [sym_character_literal] = STATE(3037), + [sym_string_literal] = STATE(3037), + [sym_raw_string_literal] = STATE(3037), + [sym_boolean_literal] = STATE(3037), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3035), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(1571), [sym_preproc_endregion] = STATE(1571), [sym_preproc_line] = STATE(1571), @@ -307358,47 +307244,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1571), [sym_preproc_define] = STATE(1571), [sym_preproc_undef] = STATE(1571), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3440), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3455), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1241), - [anon_sym_LPAREN] = ACTIONS(2195), - [anon_sym_ref] = ACTIONS(2197), - [anon_sym_LBRACE] = ACTIONS(1247), - [anon_sym_delegate] = ACTIONS(1249), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1239), + [anon_sym_LPAREN] = ACTIONS(2217), + [anon_sym_ref] = ACTIONS(2219), + [anon_sym_LBRACE] = ACTIONS(1245), + [anon_sym_delegate] = ACTIONS(1247), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1845), + [anon_sym_new] = ACTIONS(2221), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1253), - [anon_sym_BANG] = ACTIONS(2201), - [anon_sym_TILDE] = ACTIONS(2201), - [anon_sym_PLUS_PLUS] = ACTIONS(2201), - [anon_sym_DASH_DASH] = ACTIONS(2201), - [anon_sym_true] = ACTIONS(1259), - [anon_sym_false] = ACTIONS(1259), - [anon_sym_PLUS] = ACTIONS(2199), - [anon_sym_DASH] = ACTIONS(2199), - [anon_sym_STAR] = ACTIONS(1851), - [anon_sym_CARET] = ACTIONS(2201), - [anon_sym_AMP] = ACTIONS(2201), - [anon_sym_this] = ACTIONS(1263), + [anon_sym_checked] = ACTIONS(1251), + [anon_sym_BANG] = ACTIONS(2225), + [anon_sym_TILDE] = ACTIONS(2225), + [anon_sym_PLUS_PLUS] = ACTIONS(2225), + [anon_sym_DASH_DASH] = ACTIONS(2225), + [anon_sym_true] = ACTIONS(1257), + [anon_sym_false] = ACTIONS(1257), + [anon_sym_PLUS] = ACTIONS(2223), + [anon_sym_DASH] = ACTIONS(2223), + [anon_sym_STAR] = ACTIONS(2227), + [anon_sym_CARET] = ACTIONS(2225), + [anon_sym_AMP] = ACTIONS(2225), + [anon_sym_this] = ACTIONS(1261), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1265), + [anon_sym_base] = ACTIONS(1263), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1267), - [anon_sym_unchecked] = ACTIONS(1253), + [sym_predefined_type] = ACTIONS(1265), + [anon_sym_unchecked] = ACTIONS(1251), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1269), - [anon_sym_throw] = ACTIONS(2203), + [anon_sym_default] = ACTIONS(1267), + [anon_sym_throw] = ACTIONS(2229), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2205), - [anon_sym_DOT_DOT] = ACTIONS(2207), + [anon_sym_await] = ACTIONS(2231), + [anon_sym_DOT_DOT] = ACTIONS(2233), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -307411,19 +307297,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1277), - [anon_sym_sizeof] = ACTIONS(1279), - [anon_sym_typeof] = ACTIONS(1281), - [anon_sym___makeref] = ACTIONS(1283), - [anon_sym___reftype] = ACTIONS(1285), - [anon_sym___refvalue] = ACTIONS(1287), - [sym_null_literal] = ACTIONS(1289), - [anon_sym_SQUOTE] = ACTIONS(1291), - [sym_integer_literal] = ACTIONS(1289), - [sym_real_literal] = ACTIONS(1293), - [anon_sym_DQUOTE] = ACTIONS(1295), - [sym_verbatim_string_literal] = ACTIONS(1293), - [aux_sym_preproc_if_token1] = ACTIONS(1297), + [anon_sym_stackalloc] = ACTIONS(1275), + [anon_sym_sizeof] = ACTIONS(1277), + [anon_sym_typeof] = ACTIONS(1279), + [anon_sym___makeref] = ACTIONS(1281), + [anon_sym___reftype] = ACTIONS(1283), + [anon_sym___refvalue] = ACTIONS(1285), + [sym_null_literal] = ACTIONS(1287), + [anon_sym_SQUOTE] = ACTIONS(1289), + [sym_integer_literal] = ACTIONS(1287), + [sym_real_literal] = ACTIONS(1291), + [anon_sym_DQUOTE] = ACTIONS(1293), + [sym_verbatim_string_literal] = ACTIONS(1291), + [aux_sym_preproc_if_token1] = ACTIONS(1295), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -307434,90 +307320,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1299), - [sym_interpolation_verbatim_start] = ACTIONS(1301), - [sym_interpolation_raw_start] = ACTIONS(1303), - [sym_raw_string_start] = ACTIONS(1305), + [sym_interpolation_regular_start] = ACTIONS(1297), + [sym_interpolation_verbatim_start] = ACTIONS(1299), + [sym_interpolation_raw_start] = ACTIONS(1301), + [sym_raw_string_start] = ACTIONS(1303), }, [1572] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2914), - [sym__name] = STATE(5885), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2357), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(3731), - [sym_non_lvalue_expression] = STATE(3880), - [sym_lvalue_expression] = STATE(2986), - [sym__expression_statement_expression] = STATE(3873), - [sym_assignment_expression] = STATE(3881), - [sym_binary_expression] = STATE(3873), - [sym_postfix_unary_expression] = STATE(3881), - [sym_prefix_unary_expression] = STATE(3881), - [sym__pointer_indirection_expression] = STATE(2913), - [sym_query_expression] = STATE(3873), - [sym_from_clause] = STATE(6168), - [sym_conditional_expression] = STATE(3873), - [sym_conditional_access_expression] = STATE(3873), - [sym_as_expression] = STATE(3873), - [sym_is_expression] = STATE(3873), - [sym_is_pattern_expression] = STATE(3873), - [sym_cast_expression] = STATE(3873), - [sym_checked_expression] = STATE(3873), - [sym_invocation_expression] = STATE(3881), - [sym_switch_expression] = STATE(3873), - [sym_await_expression] = STATE(3881), - [sym_throw_expression] = STATE(3873), - [sym_element_access_expression] = STATE(2913), - [sym_interpolated_string_expression] = STATE(3873), - [sym_member_access_expression] = STATE(2913), - [sym_object_creation_expression] = STATE(3881), - [sym_parenthesized_expression] = STATE(3881), - [sym__parenthesized_lvalue_expression] = STATE(2913), - [sym_lambda_expression] = STATE(3873), - [sym__lambda_expression_init] = STATE(7587), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3873), - [sym_anonymous_method_expression] = STATE(3873), - [sym_anonymous_object_creation_expression] = STATE(3873), - [sym_implicit_array_creation_expression] = STATE(3873), - [sym_implicit_object_creation_expression] = STATE(3873), - [sym_implicit_stackalloc_expression] = STATE(3873), - [sym_initializer_expression] = STATE(3873), - [sym_default_expression] = STATE(3873), - [sym_with_expression] = STATE(3873), - [sym_sizeof_expression] = STATE(3873), - [sym_typeof_expression] = STATE(3873), - [sym_makeref_expression] = STATE(3873), - [sym_ref_expression] = STATE(3873), - [sym_reftype_expression] = STATE(3873), - [sym_refvalue_expression] = STATE(3873), - [sym_stackalloc_expression] = STATE(3873), - [sym_range_expression] = STATE(3873), - [sym_tuple_expression] = STATE(2913), - [sym_literal] = STATE(3873), - [sym_character_literal] = STATE(3877), - [sym_string_literal] = STATE(3877), - [sym_raw_string_literal] = STATE(3877), - [sym_boolean_literal] = STATE(3877), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3873), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2603), + [sym__name] = STATE(5862), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2193), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(5696), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(2604), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3102), + [sym_postfix_unary_expression] = STATE(3079), + [sym_prefix_unary_expression] = STATE(3079), + [sym__pointer_indirection_expression] = STATE(2602), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6134), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3102), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3079), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2602), + [sym_interpolated_string_expression] = STATE(3102), + [sym_member_access_expression] = STATE(2602), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3079), + [sym__parenthesized_lvalue_expression] = STATE(2602), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7425), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(3102), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3102), + [sym_typeof_expression] = STATE(3102), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2602), + [sym_literal] = STATE(3102), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(1572), [sym_preproc_endregion] = STATE(1572), [sym_preproc_line] = STATE(1572), @@ -307527,47 +307413,47 @@ 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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3382), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1627), - [anon_sym_LPAREN] = ACTIONS(2079), - [anon_sym_ref] = ACTIONS(2081), - [anon_sym_LBRACE] = ACTIONS(1633), - [anon_sym_delegate] = ACTIONS(1635), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1149), + [anon_sym_LPAREN] = ACTIONS(2947), + [anon_sym_ref] = ACTIONS(715), + [anon_sym_LBRACE] = ACTIONS(1481), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1731), + [anon_sym_new] = ACTIONS(1059), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1639), - [anon_sym_BANG] = ACTIONS(2085), - [anon_sym_TILDE] = ACTIONS(2085), - [anon_sym_PLUS_PLUS] = ACTIONS(2085), - [anon_sym_DASH_DASH] = ACTIONS(2085), - [anon_sym_true] = ACTIONS(1645), - [anon_sym_false] = ACTIONS(1645), - [anon_sym_PLUS] = ACTIONS(2083), - [anon_sym_DASH] = ACTIONS(2083), - [anon_sym_STAR] = ACTIONS(1737), - [anon_sym_CARET] = ACTIONS(2085), - [anon_sym_AMP] = ACTIONS(2085), - [anon_sym_this] = ACTIONS(1649), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(1525), + [anon_sym_TILDE] = ACTIONS(1525), + [anon_sym_PLUS_PLUS] = ACTIONS(1525), + [anon_sym_DASH_DASH] = ACTIONS(1525), + [anon_sym_true] = ACTIONS(77), + [anon_sym_false] = ACTIONS(77), + [anon_sym_PLUS] = ACTIONS(1523), + [anon_sym_DASH] = ACTIONS(1523), + [anon_sym_STAR] = ACTIONS(1171), + [anon_sym_CARET] = ACTIONS(1525), + [anon_sym_AMP] = ACTIONS(1525), + [anon_sym_this] = ACTIONS(1173), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1651), + [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1653), - [anon_sym_unchecked] = ACTIONS(1639), + [sym_predefined_type] = ACTIONS(1177), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1655), - [anon_sym_throw] = ACTIONS(2087), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(1527), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2089), - [anon_sym_DOT_DOT] = ACTIONS(2091), + [anon_sym_await] = ACTIONS(1529), + [anon_sym_DOT_DOT] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -307580,19 +307466,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1663), - [anon_sym_sizeof] = ACTIONS(1665), - [anon_sym_typeof] = ACTIONS(1667), - [anon_sym___makeref] = ACTIONS(1669), - [anon_sym___reftype] = ACTIONS(1671), - [anon_sym___refvalue] = ACTIONS(1673), - [sym_null_literal] = ACTIONS(1675), - [anon_sym_SQUOTE] = ACTIONS(1677), - [sym_integer_literal] = ACTIONS(1675), - [sym_real_literal] = ACTIONS(1679), - [anon_sym_DQUOTE] = ACTIONS(1681), - [sym_verbatim_string_literal] = ACTIONS(1679), - [aux_sym_preproc_if_token1] = ACTIONS(1683), + [anon_sym_stackalloc] = ACTIONS(127), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_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), @@ -307603,90 +307489,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1685), - [sym_interpolation_verbatim_start] = ACTIONS(1687), - [sym_interpolation_raw_start] = ACTIONS(1689), - [sym_raw_string_start] = ACTIONS(1691), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [sym_interpolation_raw_start] = ACTIONS(155), + [sym_raw_string_start] = ACTIONS(157), }, [1573] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2610), - [sym__name] = STATE(5898), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2197), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(3839), - [sym_non_lvalue_expression] = STATE(3277), - [sym_lvalue_expression] = STATE(3023), - [sym__expression_statement_expression] = STATE(3228), - [sym_assignment_expression] = STATE(3289), - [sym_binary_expression] = STATE(3228), - [sym_postfix_unary_expression] = STATE(3289), - [sym_prefix_unary_expression] = STATE(3289), - [sym__pointer_indirection_expression] = STATE(2609), - [sym_query_expression] = STATE(3228), - [sym_from_clause] = STATE(6172), - [sym_conditional_expression] = STATE(3228), - [sym_conditional_access_expression] = STATE(3228), - [sym_as_expression] = STATE(3228), - [sym_is_expression] = STATE(3228), - [sym_is_pattern_expression] = STATE(3228), - [sym_cast_expression] = STATE(3228), - [sym_checked_expression] = STATE(3228), - [sym_invocation_expression] = STATE(3289), - [sym_switch_expression] = STATE(3228), - [sym_await_expression] = STATE(3289), - [sym_throw_expression] = STATE(3228), - [sym_element_access_expression] = STATE(2609), - [sym_interpolated_string_expression] = STATE(3228), - [sym_member_access_expression] = STATE(2609), - [sym_object_creation_expression] = STATE(3289), - [sym_parenthesized_expression] = STATE(3289), - [sym__parenthesized_lvalue_expression] = STATE(2609), - [sym_lambda_expression] = STATE(3228), - [sym__lambda_expression_init] = STATE(7653), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3228), - [sym_anonymous_method_expression] = STATE(3228), - [sym_anonymous_object_creation_expression] = STATE(3228), - [sym_implicit_array_creation_expression] = STATE(3228), - [sym_implicit_object_creation_expression] = STATE(3228), - [sym_implicit_stackalloc_expression] = STATE(3228), - [sym_initializer_expression] = STATE(3228), - [sym_default_expression] = STATE(3228), - [sym_with_expression] = STATE(3228), - [sym_sizeof_expression] = STATE(3228), - [sym_typeof_expression] = STATE(3228), - [sym_makeref_expression] = STATE(3228), - [sym_ref_expression] = STATE(3228), - [sym_reftype_expression] = STATE(3228), - [sym_refvalue_expression] = STATE(3228), - [sym_stackalloc_expression] = STATE(3228), - [sym_range_expression] = STATE(3228), - [sym_tuple_expression] = STATE(2609), - [sym_literal] = STATE(3228), - [sym_character_literal] = STATE(3278), - [sym_string_literal] = STATE(3278), - [sym_raw_string_literal] = STATE(3278), - [sym_boolean_literal] = STATE(3278), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3228), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2603), + [sym__name] = STATE(5862), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2193), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(3136), + [sym_non_lvalue_expression] = STATE(3220), + [sym_lvalue_expression] = STATE(2955), + [sym__expression_statement_expression] = STATE(3236), + [sym_assignment_expression] = STATE(3221), + [sym_binary_expression] = STATE(3236), + [sym_postfix_unary_expression] = STATE(3221), + [sym_prefix_unary_expression] = STATE(3221), + [sym__pointer_indirection_expression] = STATE(2602), + [sym_query_expression] = STATE(3236), + [sym_from_clause] = STATE(6143), + [sym_conditional_expression] = STATE(3236), + [sym_conditional_access_expression] = STATE(3236), + [sym_as_expression] = STATE(3236), + [sym_is_expression] = STATE(3236), + [sym_is_pattern_expression] = STATE(3236), + [sym_cast_expression] = STATE(3236), + [sym_checked_expression] = STATE(3236), + [sym_invocation_expression] = STATE(3221), + [sym_switch_expression] = STATE(3236), + [sym_await_expression] = STATE(3221), + [sym_throw_expression] = STATE(3236), + [sym_element_access_expression] = STATE(2602), + [sym_interpolated_string_expression] = STATE(3236), + [sym_member_access_expression] = STATE(2602), + [sym_object_creation_expression] = STATE(3221), + [sym_parenthesized_expression] = STATE(3221), + [sym__parenthesized_lvalue_expression] = STATE(2602), + [sym_lambda_expression] = STATE(3236), + [sym__lambda_expression_init] = STATE(7668), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3236), + [sym_anonymous_method_expression] = STATE(3236), + [sym_anonymous_object_creation_expression] = STATE(3236), + [sym_implicit_array_creation_expression] = STATE(3236), + [sym_implicit_object_creation_expression] = STATE(3236), + [sym_implicit_stackalloc_expression] = STATE(3236), + [sym_initializer_expression] = STATE(3236), + [sym_default_expression] = STATE(3236), + [sym_with_expression] = STATE(3236), + [sym_sizeof_expression] = STATE(3236), + [sym_typeof_expression] = STATE(3236), + [sym_makeref_expression] = STATE(3236), + [sym_ref_expression] = STATE(3236), + [sym_reftype_expression] = STATE(3236), + [sym_refvalue_expression] = STATE(3236), + [sym_stackalloc_expression] = STATE(3236), + [sym_range_expression] = STATE(3236), + [sym_tuple_expression] = STATE(2602), + [sym_literal] = STATE(3236), + [sym_character_literal] = STATE(3272), + [sym_string_literal] = STATE(3272), + [sym_raw_string_literal] = STATE(3272), + [sym_boolean_literal] = STATE(3272), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3236), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(1573), [sym_preproc_endregion] = STATE(1573), [sym_preproc_line] = STATE(1573), @@ -307696,47 +307582,47 @@ 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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3396), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3379), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1153), - [anon_sym_LPAREN] = ACTIONS(1155), - [anon_sym_ref] = ACTIONS(1157), - [anon_sym_LBRACE] = ACTIONS(1159), - [anon_sym_delegate] = ACTIONS(1161), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1149), + [anon_sym_LPAREN] = ACTIONS(1151), + [anon_sym_ref] = ACTIONS(1153), + [anon_sym_LBRACE] = ACTIONS(1155), + [anon_sym_delegate] = ACTIONS(1157), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1163), + [anon_sym_new] = ACTIONS(1159), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1167), - [anon_sym_BANG] = ACTIONS(1171), - [anon_sym_TILDE] = ACTIONS(1171), - [anon_sym_PLUS_PLUS] = ACTIONS(1171), - [anon_sym_DASH_DASH] = ACTIONS(1171), - [anon_sym_true] = ACTIONS(1173), - [anon_sym_false] = ACTIONS(1173), - [anon_sym_PLUS] = ACTIONS(1169), - [anon_sym_DASH] = ACTIONS(1169), - [anon_sym_STAR] = ACTIONS(1175), - [anon_sym_CARET] = ACTIONS(1171), - [anon_sym_AMP] = ACTIONS(1171), - [anon_sym_this] = ACTIONS(1177), + [anon_sym_checked] = ACTIONS(1163), + [anon_sym_BANG] = ACTIONS(1167), + [anon_sym_TILDE] = ACTIONS(1167), + [anon_sym_PLUS_PLUS] = ACTIONS(1167), + [anon_sym_DASH_DASH] = ACTIONS(1167), + [anon_sym_true] = ACTIONS(1169), + [anon_sym_false] = ACTIONS(1169), + [anon_sym_PLUS] = ACTIONS(1165), + [anon_sym_DASH] = ACTIONS(1165), + [anon_sym_STAR] = ACTIONS(1171), + [anon_sym_CARET] = ACTIONS(1167), + [anon_sym_AMP] = ACTIONS(1167), + [anon_sym_this] = ACTIONS(1173), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1179), + [anon_sym_base] = ACTIONS(1175), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1181), - [anon_sym_unchecked] = ACTIONS(1167), + [sym_predefined_type] = ACTIONS(1177), + [anon_sym_unchecked] = ACTIONS(1163), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1183), - [anon_sym_throw] = ACTIONS(1185), + [anon_sym_default] = ACTIONS(1179), + [anon_sym_throw] = ACTIONS(1181), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1187), - [anon_sym_DOT_DOT] = ACTIONS(1189), + [anon_sym_await] = ACTIONS(1183), + [anon_sym_DOT_DOT] = ACTIONS(1185), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -307749,19 +307635,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1191), - [anon_sym_sizeof] = ACTIONS(1193), - [anon_sym_typeof] = ACTIONS(1195), - [anon_sym___makeref] = ACTIONS(1197), - [anon_sym___reftype] = ACTIONS(1199), - [anon_sym___refvalue] = ACTIONS(1201), - [sym_null_literal] = ACTIONS(1203), - [anon_sym_SQUOTE] = ACTIONS(1205), - [sym_integer_literal] = ACTIONS(1203), - [sym_real_literal] = ACTIONS(1207), - [anon_sym_DQUOTE] = ACTIONS(1209), - [sym_verbatim_string_literal] = ACTIONS(1207), - [aux_sym_preproc_if_token1] = ACTIONS(1211), + [anon_sym_stackalloc] = ACTIONS(1187), + [anon_sym_sizeof] = ACTIONS(1189), + [anon_sym_typeof] = ACTIONS(1191), + [anon_sym___makeref] = ACTIONS(1193), + [anon_sym___reftype] = ACTIONS(1195), + [anon_sym___refvalue] = ACTIONS(1197), + [sym_null_literal] = ACTIONS(1199), + [anon_sym_SQUOTE] = ACTIONS(1201), + [sym_integer_literal] = ACTIONS(1199), + [sym_real_literal] = ACTIONS(1203), + [anon_sym_DQUOTE] = ACTIONS(1205), + [sym_verbatim_string_literal] = ACTIONS(1203), + [aux_sym_preproc_if_token1] = ACTIONS(1207), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -307772,90 +307658,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1213), - [sym_interpolation_verbatim_start] = ACTIONS(1215), - [sym_interpolation_raw_start] = ACTIONS(1217), - [sym_raw_string_start] = ACTIONS(1219), + [sym_interpolation_regular_start] = ACTIONS(1209), + [sym_interpolation_verbatim_start] = ACTIONS(1211), + [sym_interpolation_raw_start] = ACTIONS(1213), + [sym_raw_string_start] = ACTIONS(1215), }, [1574] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2914), - [sym__name] = STATE(5885), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2357), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(3624), - [sym_non_lvalue_expression] = STATE(3880), - [sym_lvalue_expression] = STATE(2911), - [sym__expression_statement_expression] = STATE(3873), - [sym_assignment_expression] = STATE(3881), - [sym_binary_expression] = STATE(3873), - [sym_postfix_unary_expression] = STATE(3881), - [sym_prefix_unary_expression] = STATE(3881), - [sym__pointer_indirection_expression] = STATE(2913), - [sym_query_expression] = STATE(3873), - [sym_from_clause] = STATE(6182), - [sym_conditional_expression] = STATE(3873), - [sym_conditional_access_expression] = STATE(3873), - [sym_as_expression] = STATE(3873), - [sym_is_expression] = STATE(3873), - [sym_is_pattern_expression] = STATE(3873), - [sym_cast_expression] = STATE(3873), - [sym_checked_expression] = STATE(3873), - [sym_invocation_expression] = STATE(3881), - [sym_switch_expression] = STATE(3873), - [sym_await_expression] = STATE(3881), - [sym_throw_expression] = STATE(3873), - [sym_element_access_expression] = STATE(2913), - [sym_interpolated_string_expression] = STATE(3873), - [sym_member_access_expression] = STATE(2913), - [sym_object_creation_expression] = STATE(3881), - [sym_parenthesized_expression] = STATE(3881), - [sym__parenthesized_lvalue_expression] = STATE(2913), - [sym_lambda_expression] = STATE(3873), - [sym__lambda_expression_init] = STATE(7316), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3873), - [sym_anonymous_method_expression] = STATE(3873), - [sym_anonymous_object_creation_expression] = STATE(3873), - [sym_implicit_array_creation_expression] = STATE(3873), - [sym_implicit_object_creation_expression] = STATE(3873), - [sym_implicit_stackalloc_expression] = STATE(3873), - [sym_initializer_expression] = STATE(3873), - [sym_default_expression] = STATE(3873), - [sym_with_expression] = STATE(3873), - [sym_sizeof_expression] = STATE(3873), - [sym_typeof_expression] = STATE(3873), - [sym_makeref_expression] = STATE(3873), - [sym_ref_expression] = STATE(3873), - [sym_reftype_expression] = STATE(3873), - [sym_refvalue_expression] = STATE(3873), - [sym_stackalloc_expression] = STATE(3873), - [sym_range_expression] = STATE(3873), - [sym_tuple_expression] = STATE(2913), - [sym_literal] = STATE(3873), - [sym_character_literal] = STATE(3877), - [sym_string_literal] = STATE(3877), - [sym_raw_string_literal] = STATE(3877), - [sym_boolean_literal] = STATE(3877), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3873), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2816), + [sym__name] = STATE(5893), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2361), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(5697), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(2830), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3102), + [sym_postfix_unary_expression] = STATE(3079), + [sym_prefix_unary_expression] = STATE(3079), + [sym__pointer_indirection_expression] = STATE(2815), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6134), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3102), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3079), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2815), + [sym_interpolated_string_expression] = STATE(3102), + [sym_member_access_expression] = STATE(2815), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3079), + [sym__parenthesized_lvalue_expression] = STATE(2815), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7425), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(3102), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3102), + [sym_typeof_expression] = STATE(3102), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2815), + [sym_literal] = STATE(3102), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(1574), [sym_preproc_endregion] = STATE(1574), [sym_preproc_line] = STATE(1574), @@ -307865,47 +307751,47 @@ 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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3382), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1627), - [anon_sym_LPAREN] = ACTIONS(1727), - [anon_sym_ref] = ACTIONS(1729), - [anon_sym_LBRACE] = ACTIONS(1633), - [anon_sym_delegate] = ACTIONS(1635), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1305), + [anon_sym_LPAREN] = ACTIONS(2945), + [anon_sym_ref] = ACTIONS(715), + [anon_sym_LBRACE] = ACTIONS(1481), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1731), + [anon_sym_new] = ACTIONS(1059), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1639), - [anon_sym_BANG] = ACTIONS(1735), - [anon_sym_TILDE] = ACTIONS(1735), - [anon_sym_PLUS_PLUS] = ACTIONS(1735), - [anon_sym_DASH_DASH] = ACTIONS(1735), - [anon_sym_true] = ACTIONS(1645), - [anon_sym_false] = ACTIONS(1645), - [anon_sym_PLUS] = ACTIONS(1733), - [anon_sym_DASH] = ACTIONS(1733), - [anon_sym_STAR] = ACTIONS(1737), - [anon_sym_CARET] = ACTIONS(1735), - [anon_sym_AMP] = ACTIONS(1735), - [anon_sym_this] = ACTIONS(1649), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(1525), + [anon_sym_TILDE] = ACTIONS(1525), + [anon_sym_PLUS_PLUS] = ACTIONS(1525), + [anon_sym_DASH_DASH] = ACTIONS(1525), + [anon_sym_true] = ACTIONS(77), + [anon_sym_false] = ACTIONS(77), + [anon_sym_PLUS] = ACTIONS(1523), + [anon_sym_DASH] = ACTIONS(1523), + [anon_sym_STAR] = ACTIONS(1849), + [anon_sym_CARET] = ACTIONS(1525), + [anon_sym_AMP] = ACTIONS(1525), + [anon_sym_this] = ACTIONS(1321), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1651), + [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1653), - [anon_sym_unchecked] = ACTIONS(1639), + [sym_predefined_type] = ACTIONS(91), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1655), - [anon_sym_throw] = ACTIONS(1739), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(1527), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1741), - [anon_sym_DOT_DOT] = ACTIONS(1743), + [anon_sym_await] = ACTIONS(1529), + [anon_sym_DOT_DOT] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -307918,19 +307804,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1663), - [anon_sym_sizeof] = ACTIONS(1665), - [anon_sym_typeof] = ACTIONS(1667), - [anon_sym___makeref] = ACTIONS(1669), - [anon_sym___reftype] = ACTIONS(1671), - [anon_sym___refvalue] = ACTIONS(1673), - [sym_null_literal] = ACTIONS(1675), - [anon_sym_SQUOTE] = ACTIONS(1677), - [sym_integer_literal] = ACTIONS(1675), - [sym_real_literal] = ACTIONS(1679), - [anon_sym_DQUOTE] = ACTIONS(1681), - [sym_verbatim_string_literal] = ACTIONS(1679), - [aux_sym_preproc_if_token1] = ACTIONS(1683), + [anon_sym_stackalloc] = ACTIONS(127), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_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), @@ -307941,90 +307827,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1685), - [sym_interpolation_verbatim_start] = ACTIONS(1687), - [sym_interpolation_raw_start] = ACTIONS(1689), - [sym_raw_string_start] = ACTIONS(1691), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [sym_interpolation_raw_start] = ACTIONS(155), + [sym_raw_string_start] = ACTIONS(157), }, [1575] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2914), - [sym__name] = STATE(5885), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2357), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(3567), - [sym_non_lvalue_expression] = STATE(3880), - [sym_lvalue_expression] = STATE(2911), - [sym__expression_statement_expression] = STATE(3873), - [sym_assignment_expression] = STATE(3881), - [sym_binary_expression] = STATE(3873), - [sym_postfix_unary_expression] = STATE(3881), - [sym_prefix_unary_expression] = STATE(3881), - [sym__pointer_indirection_expression] = STATE(2913), - [sym_query_expression] = STATE(3873), - [sym_from_clause] = STATE(6182), - [sym_conditional_expression] = STATE(3873), - [sym_conditional_access_expression] = STATE(3873), - [sym_as_expression] = STATE(3873), - [sym_is_expression] = STATE(3873), - [sym_is_pattern_expression] = STATE(3873), - [sym_cast_expression] = STATE(3873), - [sym_checked_expression] = STATE(3873), - [sym_invocation_expression] = STATE(3881), - [sym_switch_expression] = STATE(3873), - [sym_await_expression] = STATE(3881), - [sym_throw_expression] = STATE(3873), - [sym_element_access_expression] = STATE(2913), - [sym_interpolated_string_expression] = STATE(3873), - [sym_member_access_expression] = STATE(2913), - [sym_object_creation_expression] = STATE(3881), - [sym_parenthesized_expression] = STATE(3881), - [sym__parenthesized_lvalue_expression] = STATE(2913), - [sym_lambda_expression] = STATE(3873), - [sym__lambda_expression_init] = STATE(7316), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3873), - [sym_anonymous_method_expression] = STATE(3873), - [sym_anonymous_object_creation_expression] = STATE(3873), - [sym_implicit_array_creation_expression] = STATE(3873), - [sym_implicit_object_creation_expression] = STATE(3873), - [sym_implicit_stackalloc_expression] = STATE(3873), - [sym_initializer_expression] = STATE(3873), - [sym_default_expression] = STATE(3873), - [sym_with_expression] = STATE(3873), - [sym_sizeof_expression] = STATE(3873), - [sym_typeof_expression] = STATE(3873), - [sym_makeref_expression] = STATE(3873), - [sym_ref_expression] = STATE(3873), - [sym_reftype_expression] = STATE(3873), - [sym_refvalue_expression] = STATE(3873), - [sym_stackalloc_expression] = STATE(3873), - [sym_range_expression] = STATE(3873), - [sym_tuple_expression] = STATE(2913), - [sym_literal] = STATE(3873), - [sym_character_literal] = STATE(3877), - [sym_string_literal] = STATE(3877), - [sym_raw_string_literal] = STATE(3877), - [sym_boolean_literal] = STATE(3877), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3873), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(5152), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2196), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(3507), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3683), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3102), + [sym_postfix_unary_expression] = STATE(3079), + [sym_prefix_unary_expression] = STATE(3079), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6147), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3102), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3079), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3102), + [sym_member_access_expression] = STATE(2472), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3079), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7404), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(3102), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3102), + [sym_typeof_expression] = STATE(3102), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2472), + [sym_literal] = STATE(3102), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2261), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(1575), [sym_preproc_endregion] = STATE(1575), [sym_preproc_line] = STATE(1575), @@ -308034,47 +307920,47 @@ 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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3382), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1627), - [anon_sym_LPAREN] = ACTIONS(1727), - [anon_sym_ref] = ACTIONS(1729), - [anon_sym_LBRACE] = ACTIONS(1633), - [anon_sym_delegate] = ACTIONS(1635), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1479), + [anon_sym_LPAREN] = ACTIONS(1965), + [anon_sym_ref] = ACTIONS(1967), + [anon_sym_LBRACE] = ACTIONS(1481), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1731), + [anon_sym_new] = ACTIONS(1059), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1639), - [anon_sym_BANG] = ACTIONS(1735), - [anon_sym_TILDE] = ACTIONS(1735), - [anon_sym_PLUS_PLUS] = ACTIONS(1735), - [anon_sym_DASH_DASH] = ACTIONS(1735), - [anon_sym_true] = ACTIONS(1645), - [anon_sym_false] = ACTIONS(1645), - [anon_sym_PLUS] = ACTIONS(1733), - [anon_sym_DASH] = ACTIONS(1733), - [anon_sym_STAR] = ACTIONS(1737), - [anon_sym_CARET] = ACTIONS(1735), - [anon_sym_AMP] = ACTIONS(1735), - [anon_sym_this] = ACTIONS(1649), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(1971), + [anon_sym_TILDE] = ACTIONS(1971), + [anon_sym_PLUS_PLUS] = ACTIONS(1971), + [anon_sym_DASH_DASH] = ACTIONS(1971), + [anon_sym_true] = ACTIONS(77), + [anon_sym_false] = ACTIONS(77), + [anon_sym_PLUS] = ACTIONS(1969), + [anon_sym_DASH] = ACTIONS(1969), + [anon_sym_STAR] = ACTIONS(1973), + [anon_sym_CARET] = ACTIONS(1971), + [anon_sym_AMP] = ACTIONS(1971), + [anon_sym_this] = ACTIONS(83), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1651), + [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1653), - [anon_sym_unchecked] = ACTIONS(1639), + [sym_predefined_type] = ACTIONS(91), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1655), - [anon_sym_throw] = ACTIONS(1739), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(1975), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1741), - [anon_sym_DOT_DOT] = ACTIONS(1743), + [anon_sym_await] = ACTIONS(1977), + [anon_sym_DOT_DOT] = ACTIONS(1979), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -308087,19 +307973,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1663), - [anon_sym_sizeof] = ACTIONS(1665), - [anon_sym_typeof] = ACTIONS(1667), - [anon_sym___makeref] = ACTIONS(1669), - [anon_sym___reftype] = ACTIONS(1671), - [anon_sym___refvalue] = ACTIONS(1673), - [sym_null_literal] = ACTIONS(1675), - [anon_sym_SQUOTE] = ACTIONS(1677), - [sym_integer_literal] = ACTIONS(1675), - [sym_real_literal] = ACTIONS(1679), - [anon_sym_DQUOTE] = ACTIONS(1681), - [sym_verbatim_string_literal] = ACTIONS(1679), - [aux_sym_preproc_if_token1] = ACTIONS(1683), + [anon_sym_stackalloc] = ACTIONS(127), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_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), @@ -308110,90 +307996,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1685), - [sym_interpolation_verbatim_start] = ACTIONS(1687), - [sym_interpolation_raw_start] = ACTIONS(1689), - [sym_raw_string_start] = ACTIONS(1691), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [sym_interpolation_raw_start] = ACTIONS(155), + [sym_raw_string_start] = ACTIONS(157), }, [1576] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2610), - [sym__name] = STATE(5898), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2197), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(3139), - [sym_non_lvalue_expression] = STATE(3277), - [sym_lvalue_expression] = STATE(3023), - [sym__expression_statement_expression] = STATE(3228), - [sym_assignment_expression] = STATE(3289), - [sym_binary_expression] = STATE(3228), - [sym_postfix_unary_expression] = STATE(3289), - [sym_prefix_unary_expression] = STATE(3289), - [sym__pointer_indirection_expression] = STATE(2609), - [sym_query_expression] = STATE(3228), - [sym_from_clause] = STATE(6172), - [sym_conditional_expression] = STATE(3228), - [sym_conditional_access_expression] = STATE(3228), - [sym_as_expression] = STATE(3228), - [sym_is_expression] = STATE(3228), - [sym_is_pattern_expression] = STATE(3228), - [sym_cast_expression] = STATE(3228), - [sym_checked_expression] = STATE(3228), - [sym_invocation_expression] = STATE(3289), - [sym_switch_expression] = STATE(3228), - [sym_await_expression] = STATE(3289), - [sym_throw_expression] = STATE(3228), - [sym_element_access_expression] = STATE(2609), - [sym_interpolated_string_expression] = STATE(3228), - [sym_member_access_expression] = STATE(2609), - [sym_object_creation_expression] = STATE(3289), - [sym_parenthesized_expression] = STATE(3289), - [sym__parenthesized_lvalue_expression] = STATE(2609), - [sym_lambda_expression] = STATE(3228), - [sym__lambda_expression_init] = STATE(7653), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3228), - [sym_anonymous_method_expression] = STATE(3228), - [sym_anonymous_object_creation_expression] = STATE(3228), - [sym_implicit_array_creation_expression] = STATE(3228), - [sym_implicit_object_creation_expression] = STATE(3228), - [sym_implicit_stackalloc_expression] = STATE(3228), - [sym_initializer_expression] = STATE(3228), - [sym_default_expression] = STATE(3228), - [sym_with_expression] = STATE(3228), - [sym_sizeof_expression] = STATE(3228), - [sym_typeof_expression] = STATE(3228), - [sym_makeref_expression] = STATE(3228), - [sym_ref_expression] = STATE(3228), - [sym_reftype_expression] = STATE(3228), - [sym_refvalue_expression] = STATE(3228), - [sym_stackalloc_expression] = STATE(3228), - [sym_range_expression] = STATE(3228), - [sym_tuple_expression] = STATE(2609), - [sym_literal] = STATE(3228), - [sym_character_literal] = STATE(3278), - [sym_string_literal] = STATE(3278), - [sym_raw_string_literal] = STATE(3278), - [sym_boolean_literal] = STATE(3278), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3228), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2603), + [sym__name] = STATE(5865), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2344), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(5696), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(2604), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3102), + [sym_postfix_unary_expression] = STATE(3079), + [sym_prefix_unary_expression] = STATE(3079), + [sym__pointer_indirection_expression] = STATE(2602), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6134), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3102), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3079), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2602), + [sym_interpolated_string_expression] = STATE(3102), + [sym_member_access_expression] = STATE(2602), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3079), + [sym__parenthesized_lvalue_expression] = STATE(2602), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7425), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(3102), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3102), + [sym_typeof_expression] = STATE(3102), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2602), + [sym_literal] = STATE(3102), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2261), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(1576), [sym_preproc_endregion] = STATE(1576), [sym_preproc_line] = STATE(1576), @@ -308203,47 +308089,47 @@ 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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3396), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1153), - [anon_sym_LPAREN] = ACTIONS(1155), - [anon_sym_ref] = ACTIONS(1157), - [anon_sym_LBRACE] = ACTIONS(1159), - [anon_sym_delegate] = ACTIONS(1161), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1149), + [anon_sym_LPAREN] = ACTIONS(2947), + [anon_sym_ref] = ACTIONS(715), + [anon_sym_LBRACE] = ACTIONS(1481), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1163), + [anon_sym_new] = ACTIONS(1059), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1167), - [anon_sym_BANG] = ACTIONS(1171), - [anon_sym_TILDE] = ACTIONS(1171), - [anon_sym_PLUS_PLUS] = ACTIONS(1171), - [anon_sym_DASH_DASH] = ACTIONS(1171), - [anon_sym_true] = ACTIONS(1173), - [anon_sym_false] = ACTIONS(1173), - [anon_sym_PLUS] = ACTIONS(1169), - [anon_sym_DASH] = ACTIONS(1169), - [anon_sym_STAR] = ACTIONS(1175), - [anon_sym_CARET] = ACTIONS(1171), - [anon_sym_AMP] = ACTIONS(1171), - [anon_sym_this] = ACTIONS(1177), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(1525), + [anon_sym_TILDE] = ACTIONS(1525), + [anon_sym_PLUS_PLUS] = ACTIONS(1525), + [anon_sym_DASH_DASH] = ACTIONS(1525), + [anon_sym_true] = ACTIONS(77), + [anon_sym_false] = ACTIONS(77), + [anon_sym_PLUS] = ACTIONS(1523), + [anon_sym_DASH] = ACTIONS(1523), + [anon_sym_STAR] = ACTIONS(1605), + [anon_sym_CARET] = ACTIONS(1525), + [anon_sym_AMP] = ACTIONS(1525), + [anon_sym_this] = ACTIONS(1173), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1179), + [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1181), - [anon_sym_unchecked] = ACTIONS(1167), + [sym_predefined_type] = ACTIONS(1177), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1183), - [anon_sym_throw] = ACTIONS(1185), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(1527), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1187), - [anon_sym_DOT_DOT] = ACTIONS(1189), + [anon_sym_await] = ACTIONS(1529), + [anon_sym_DOT_DOT] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -308256,19 +308142,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1191), - [anon_sym_sizeof] = ACTIONS(1193), - [anon_sym_typeof] = ACTIONS(1195), - [anon_sym___makeref] = ACTIONS(1197), - [anon_sym___reftype] = ACTIONS(1199), - [anon_sym___refvalue] = ACTIONS(1201), - [sym_null_literal] = ACTIONS(1203), - [anon_sym_SQUOTE] = ACTIONS(1205), - [sym_integer_literal] = ACTIONS(1203), - [sym_real_literal] = ACTIONS(1207), - [anon_sym_DQUOTE] = ACTIONS(1209), - [sym_verbatim_string_literal] = ACTIONS(1207), - [aux_sym_preproc_if_token1] = ACTIONS(1211), + [anon_sym_stackalloc] = ACTIONS(127), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_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), @@ -308279,90 +308165,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1213), - [sym_interpolation_verbatim_start] = ACTIONS(1215), - [sym_interpolation_raw_start] = ACTIONS(1217), - [sym_raw_string_start] = ACTIONS(1219), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [sym_interpolation_raw_start] = ACTIONS(155), + [sym_raw_string_start] = ACTIONS(157), }, [1577] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2914), - [sym__name] = STATE(5885), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2357), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(3626), - [sym_non_lvalue_expression] = STATE(3880), - [sym_lvalue_expression] = STATE(2911), - [sym__expression_statement_expression] = STATE(3873), - [sym_assignment_expression] = STATE(3881), - [sym_binary_expression] = STATE(3873), - [sym_postfix_unary_expression] = STATE(3881), - [sym_prefix_unary_expression] = STATE(3881), - [sym__pointer_indirection_expression] = STATE(2913), - [sym_query_expression] = STATE(3873), - [sym_from_clause] = STATE(6182), - [sym_conditional_expression] = STATE(3873), - [sym_conditional_access_expression] = STATE(3873), - [sym_as_expression] = STATE(3873), - [sym_is_expression] = STATE(3873), - [sym_is_pattern_expression] = STATE(3873), - [sym_cast_expression] = STATE(3873), - [sym_checked_expression] = STATE(3873), - [sym_invocation_expression] = STATE(3881), - [sym_switch_expression] = STATE(3873), - [sym_await_expression] = STATE(3881), - [sym_throw_expression] = STATE(3873), - [sym_element_access_expression] = STATE(2913), - [sym_interpolated_string_expression] = STATE(3873), - [sym_member_access_expression] = STATE(2913), - [sym_object_creation_expression] = STATE(3881), - [sym_parenthesized_expression] = STATE(3881), - [sym__parenthesized_lvalue_expression] = STATE(2913), - [sym_lambda_expression] = STATE(3873), - [sym__lambda_expression_init] = STATE(7316), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3873), - [sym_anonymous_method_expression] = STATE(3873), - [sym_anonymous_object_creation_expression] = STATE(3873), - [sym_implicit_array_creation_expression] = STATE(3873), - [sym_implicit_object_creation_expression] = STATE(3873), - [sym_implicit_stackalloc_expression] = STATE(3873), - [sym_initializer_expression] = STATE(3873), - [sym_default_expression] = STATE(3873), - [sym_with_expression] = STATE(3873), - [sym_sizeof_expression] = STATE(3873), - [sym_typeof_expression] = STATE(3873), - [sym_makeref_expression] = STATE(3873), - [sym_ref_expression] = STATE(3873), - [sym_reftype_expression] = STATE(3873), - [sym_refvalue_expression] = STATE(3873), - [sym_stackalloc_expression] = STATE(3873), - [sym_range_expression] = STATE(3873), - [sym_tuple_expression] = STATE(2913), - [sym_literal] = STATE(3873), - [sym_character_literal] = STATE(3877), - [sym_string_literal] = STATE(3877), - [sym_raw_string_literal] = STATE(3877), - [sym_boolean_literal] = STATE(3877), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3873), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2603), + [sym__name] = STATE(5894), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2193), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(3136), + [sym_non_lvalue_expression] = STATE(3220), + [sym_lvalue_expression] = STATE(3126), + [sym__expression_statement_expression] = STATE(3236), + [sym_assignment_expression] = STATE(3221), + [sym_binary_expression] = STATE(3236), + [sym_postfix_unary_expression] = STATE(3221), + [sym_prefix_unary_expression] = STATE(3221), + [sym__pointer_indirection_expression] = STATE(2602), + [sym_query_expression] = STATE(3236), + [sym_from_clause] = STATE(6165), + [sym_conditional_expression] = STATE(3236), + [sym_conditional_access_expression] = STATE(3236), + [sym_as_expression] = STATE(3236), + [sym_is_expression] = STATE(3236), + [sym_is_pattern_expression] = STATE(3236), + [sym_cast_expression] = STATE(3236), + [sym_checked_expression] = STATE(3236), + [sym_invocation_expression] = STATE(3221), + [sym_switch_expression] = STATE(3236), + [sym_await_expression] = STATE(3221), + [sym_throw_expression] = STATE(3236), + [sym_element_access_expression] = STATE(2602), + [sym_interpolated_string_expression] = STATE(3236), + [sym_member_access_expression] = STATE(2602), + [sym_object_creation_expression] = STATE(3221), + [sym_parenthesized_expression] = STATE(3221), + [sym__parenthesized_lvalue_expression] = STATE(2602), + [sym_lambda_expression] = STATE(3236), + [sym__lambda_expression_init] = STATE(7487), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3236), + [sym_anonymous_method_expression] = STATE(3236), + [sym_anonymous_object_creation_expression] = STATE(3236), + [sym_implicit_array_creation_expression] = STATE(3236), + [sym_implicit_object_creation_expression] = STATE(3236), + [sym_implicit_stackalloc_expression] = STATE(3236), + [sym_initializer_expression] = STATE(3236), + [sym_default_expression] = STATE(3236), + [sym_with_expression] = STATE(3236), + [sym_sizeof_expression] = STATE(3236), + [sym_typeof_expression] = STATE(3236), + [sym_makeref_expression] = STATE(3236), + [sym_ref_expression] = STATE(3236), + [sym_reftype_expression] = STATE(3236), + [sym_refvalue_expression] = STATE(3236), + [sym_stackalloc_expression] = STATE(3236), + [sym_range_expression] = STATE(3236), + [sym_tuple_expression] = STATE(2602), + [sym_literal] = STATE(3236), + [sym_character_literal] = STATE(3272), + [sym_string_literal] = STATE(3272), + [sym_raw_string_literal] = STATE(3272), + [sym_boolean_literal] = STATE(3272), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3236), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(1577), [sym_preproc_endregion] = STATE(1577), [sym_preproc_line] = STATE(1577), @@ -308372,47 +308258,47 @@ 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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3382), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3379), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1627), - [anon_sym_LPAREN] = ACTIONS(1727), - [anon_sym_ref] = ACTIONS(1729), - [anon_sym_LBRACE] = ACTIONS(1633), - [anon_sym_delegate] = ACTIONS(1635), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1149), + [anon_sym_LPAREN] = ACTIONS(1341), + [anon_sym_ref] = ACTIONS(1343), + [anon_sym_LBRACE] = ACTIONS(1155), + [anon_sym_delegate] = ACTIONS(1157), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1731), + [anon_sym_new] = ACTIONS(1159), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1639), - [anon_sym_BANG] = ACTIONS(1735), - [anon_sym_TILDE] = ACTIONS(1735), - [anon_sym_PLUS_PLUS] = ACTIONS(1735), - [anon_sym_DASH_DASH] = ACTIONS(1735), - [anon_sym_true] = ACTIONS(1645), - [anon_sym_false] = ACTIONS(1645), - [anon_sym_PLUS] = ACTIONS(1733), - [anon_sym_DASH] = ACTIONS(1733), - [anon_sym_STAR] = ACTIONS(1737), - [anon_sym_CARET] = ACTIONS(1735), - [anon_sym_AMP] = ACTIONS(1735), - [anon_sym_this] = ACTIONS(1649), + [anon_sym_checked] = ACTIONS(1163), + [anon_sym_BANG] = ACTIONS(1347), + [anon_sym_TILDE] = ACTIONS(1347), + [anon_sym_PLUS_PLUS] = ACTIONS(1347), + [anon_sym_DASH_DASH] = ACTIONS(1347), + [anon_sym_true] = ACTIONS(1169), + [anon_sym_false] = ACTIONS(1169), + [anon_sym_PLUS] = ACTIONS(1345), + [anon_sym_DASH] = ACTIONS(1345), + [anon_sym_STAR] = ACTIONS(1349), + [anon_sym_CARET] = ACTIONS(1347), + [anon_sym_AMP] = ACTIONS(1347), + [anon_sym_this] = ACTIONS(1173), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1651), + [anon_sym_base] = ACTIONS(1175), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1653), - [anon_sym_unchecked] = ACTIONS(1639), + [sym_predefined_type] = ACTIONS(1177), + [anon_sym_unchecked] = ACTIONS(1163), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1655), - [anon_sym_throw] = ACTIONS(1739), + [anon_sym_default] = ACTIONS(1179), + [anon_sym_throw] = ACTIONS(1351), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1741), - [anon_sym_DOT_DOT] = ACTIONS(1743), + [anon_sym_await] = ACTIONS(1353), + [anon_sym_DOT_DOT] = ACTIONS(1355), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -308425,19 +308311,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1663), - [anon_sym_sizeof] = ACTIONS(1665), - [anon_sym_typeof] = ACTIONS(1667), - [anon_sym___makeref] = ACTIONS(1669), - [anon_sym___reftype] = ACTIONS(1671), - [anon_sym___refvalue] = ACTIONS(1673), - [sym_null_literal] = ACTIONS(1675), - [anon_sym_SQUOTE] = ACTIONS(1677), - [sym_integer_literal] = ACTIONS(1675), - [sym_real_literal] = ACTIONS(1679), - [anon_sym_DQUOTE] = ACTIONS(1681), - [sym_verbatim_string_literal] = ACTIONS(1679), - [aux_sym_preproc_if_token1] = ACTIONS(1683), + [anon_sym_stackalloc] = ACTIONS(1187), + [anon_sym_sizeof] = ACTIONS(1189), + [anon_sym_typeof] = ACTIONS(1191), + [anon_sym___makeref] = ACTIONS(1193), + [anon_sym___reftype] = ACTIONS(1195), + [anon_sym___refvalue] = ACTIONS(1197), + [sym_null_literal] = ACTIONS(1199), + [anon_sym_SQUOTE] = ACTIONS(1201), + [sym_integer_literal] = ACTIONS(1199), + [sym_real_literal] = ACTIONS(1203), + [anon_sym_DQUOTE] = ACTIONS(1205), + [sym_verbatim_string_literal] = ACTIONS(1203), + [aux_sym_preproc_if_token1] = ACTIONS(1207), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -308448,90 +308334,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1685), - [sym_interpolation_verbatim_start] = ACTIONS(1687), - [sym_interpolation_raw_start] = ACTIONS(1689), - [sym_raw_string_start] = ACTIONS(1691), + [sym_interpolation_regular_start] = ACTIONS(1209), + [sym_interpolation_verbatim_start] = ACTIONS(1211), + [sym_interpolation_raw_start] = ACTIONS(1213), + [sym_raw_string_start] = ACTIONS(1215), }, [1578] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2914), - [sym__name] = STATE(5885), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2357), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(3732), - [sym_non_lvalue_expression] = STATE(3880), - [sym_lvalue_expression] = STATE(2986), - [sym__expression_statement_expression] = STATE(3873), - [sym_assignment_expression] = STATE(3881), - [sym_binary_expression] = STATE(3873), - [sym_postfix_unary_expression] = STATE(3881), - [sym_prefix_unary_expression] = STATE(3881), - [sym__pointer_indirection_expression] = STATE(2913), - [sym_query_expression] = STATE(3873), - [sym_from_clause] = STATE(6168), - [sym_conditional_expression] = STATE(3873), - [sym_conditional_access_expression] = STATE(3873), - [sym_as_expression] = STATE(3873), - [sym_is_expression] = STATE(3873), - [sym_is_pattern_expression] = STATE(3873), - [sym_cast_expression] = STATE(3873), - [sym_checked_expression] = STATE(3873), - [sym_invocation_expression] = STATE(3881), - [sym_switch_expression] = STATE(3873), - [sym_await_expression] = STATE(3881), - [sym_throw_expression] = STATE(3873), - [sym_element_access_expression] = STATE(2913), - [sym_interpolated_string_expression] = STATE(3873), - [sym_member_access_expression] = STATE(2913), - [sym_object_creation_expression] = STATE(3881), - [sym_parenthesized_expression] = STATE(3881), - [sym__parenthesized_lvalue_expression] = STATE(2913), - [sym_lambda_expression] = STATE(3873), - [sym__lambda_expression_init] = STATE(7587), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3873), - [sym_anonymous_method_expression] = STATE(3873), - [sym_anonymous_object_creation_expression] = STATE(3873), - [sym_implicit_array_creation_expression] = STATE(3873), - [sym_implicit_object_creation_expression] = STATE(3873), - [sym_implicit_stackalloc_expression] = STATE(3873), - [sym_initializer_expression] = STATE(3873), - [sym_default_expression] = STATE(3873), - [sym_with_expression] = STATE(3873), - [sym_sizeof_expression] = STATE(3873), - [sym_typeof_expression] = STATE(3873), - [sym_makeref_expression] = STATE(3873), - [sym_ref_expression] = STATE(3873), - [sym_reftype_expression] = STATE(3873), - [sym_refvalue_expression] = STATE(3873), - [sym_stackalloc_expression] = STATE(3873), - [sym_range_expression] = STATE(3873), - [sym_tuple_expression] = STATE(2913), - [sym_literal] = STATE(3873), - [sym_character_literal] = STATE(3877), - [sym_string_literal] = STATE(3877), - [sym_raw_string_literal] = STATE(3877), - [sym_boolean_literal] = STATE(3877), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3873), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2603), + [sym__name] = STATE(5894), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2193), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(5696), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(2604), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3102), + [sym_postfix_unary_expression] = STATE(3079), + [sym_prefix_unary_expression] = STATE(3079), + [sym__pointer_indirection_expression] = STATE(2602), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6134), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3102), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3079), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2602), + [sym_interpolated_string_expression] = STATE(3102), + [sym_member_access_expression] = STATE(2602), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3079), + [sym__parenthesized_lvalue_expression] = STATE(2602), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7425), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(3102), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3102), + [sym_typeof_expression] = STATE(3102), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2602), + [sym_literal] = STATE(3102), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(1578), [sym_preproc_endregion] = STATE(1578), [sym_preproc_line] = STATE(1578), @@ -308541,47 +308427,47 @@ 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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3382), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1627), - [anon_sym_LPAREN] = ACTIONS(2079), - [anon_sym_ref] = ACTIONS(2081), - [anon_sym_LBRACE] = ACTIONS(1633), - [anon_sym_delegate] = ACTIONS(1635), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1149), + [anon_sym_LPAREN] = ACTIONS(2947), + [anon_sym_ref] = ACTIONS(715), + [anon_sym_LBRACE] = ACTIONS(1481), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1731), + [anon_sym_new] = ACTIONS(1059), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1639), - [anon_sym_BANG] = ACTIONS(2085), - [anon_sym_TILDE] = ACTIONS(2085), - [anon_sym_PLUS_PLUS] = ACTIONS(2085), - [anon_sym_DASH_DASH] = ACTIONS(2085), - [anon_sym_true] = ACTIONS(1645), - [anon_sym_false] = ACTIONS(1645), - [anon_sym_PLUS] = ACTIONS(2083), - [anon_sym_DASH] = ACTIONS(2083), - [anon_sym_STAR] = ACTIONS(1737), - [anon_sym_CARET] = ACTIONS(2085), - [anon_sym_AMP] = ACTIONS(2085), - [anon_sym_this] = ACTIONS(1649), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(1525), + [anon_sym_TILDE] = ACTIONS(1525), + [anon_sym_PLUS_PLUS] = ACTIONS(1525), + [anon_sym_DASH_DASH] = ACTIONS(1525), + [anon_sym_true] = ACTIONS(77), + [anon_sym_false] = ACTIONS(77), + [anon_sym_PLUS] = ACTIONS(1523), + [anon_sym_DASH] = ACTIONS(1523), + [anon_sym_STAR] = ACTIONS(1349), + [anon_sym_CARET] = ACTIONS(1525), + [anon_sym_AMP] = ACTIONS(1525), + [anon_sym_this] = ACTIONS(1173), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1651), + [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1653), - [anon_sym_unchecked] = ACTIONS(1639), + [sym_predefined_type] = ACTIONS(1177), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1655), - [anon_sym_throw] = ACTIONS(2087), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(1527), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2089), - [anon_sym_DOT_DOT] = ACTIONS(2091), + [anon_sym_await] = ACTIONS(1529), + [anon_sym_DOT_DOT] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -308594,19 +308480,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1663), - [anon_sym_sizeof] = ACTIONS(1665), - [anon_sym_typeof] = ACTIONS(1667), - [anon_sym___makeref] = ACTIONS(1669), - [anon_sym___reftype] = ACTIONS(1671), - [anon_sym___refvalue] = ACTIONS(1673), - [sym_null_literal] = ACTIONS(1675), - [anon_sym_SQUOTE] = ACTIONS(1677), - [sym_integer_literal] = ACTIONS(1675), - [sym_real_literal] = ACTIONS(1679), - [anon_sym_DQUOTE] = ACTIONS(1681), - [sym_verbatim_string_literal] = ACTIONS(1679), - [aux_sym_preproc_if_token1] = ACTIONS(1683), + [anon_sym_stackalloc] = ACTIONS(127), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_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), @@ -308617,90 +308503,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1685), - [sym_interpolation_verbatim_start] = ACTIONS(1687), - [sym_interpolation_raw_start] = ACTIONS(1689), - [sym_raw_string_start] = ACTIONS(1691), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [sym_interpolation_raw_start] = ACTIONS(155), + [sym_raw_string_start] = ACTIONS(157), }, [1579] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2914), - [sym__name] = STATE(5885), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2357), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(3638), - [sym_non_lvalue_expression] = STATE(3880), - [sym_lvalue_expression] = STATE(2911), - [sym__expression_statement_expression] = STATE(3873), - [sym_assignment_expression] = STATE(3881), - [sym_binary_expression] = STATE(3873), - [sym_postfix_unary_expression] = STATE(3881), - [sym_prefix_unary_expression] = STATE(3881), - [sym__pointer_indirection_expression] = STATE(2913), - [sym_query_expression] = STATE(3873), - [sym_from_clause] = STATE(6182), - [sym_conditional_expression] = STATE(3873), - [sym_conditional_access_expression] = STATE(3873), - [sym_as_expression] = STATE(3873), - [sym_is_expression] = STATE(3873), - [sym_is_pattern_expression] = STATE(3873), - [sym_cast_expression] = STATE(3873), - [sym_checked_expression] = STATE(3873), - [sym_invocation_expression] = STATE(3881), - [sym_switch_expression] = STATE(3873), - [sym_await_expression] = STATE(3881), - [sym_throw_expression] = STATE(3873), - [sym_element_access_expression] = STATE(2913), - [sym_interpolated_string_expression] = STATE(3873), - [sym_member_access_expression] = STATE(2913), - [sym_object_creation_expression] = STATE(3881), - [sym_parenthesized_expression] = STATE(3881), - [sym__parenthesized_lvalue_expression] = STATE(2913), - [sym_lambda_expression] = STATE(3873), - [sym__lambda_expression_init] = STATE(7316), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3873), - [sym_anonymous_method_expression] = STATE(3873), - [sym_anonymous_object_creation_expression] = STATE(3873), - [sym_implicit_array_creation_expression] = STATE(3873), - [sym_implicit_object_creation_expression] = STATE(3873), - [sym_implicit_stackalloc_expression] = STATE(3873), - [sym_initializer_expression] = STATE(3873), - [sym_default_expression] = STATE(3873), - [sym_with_expression] = STATE(3873), - [sym_sizeof_expression] = STATE(3873), - [sym_typeof_expression] = STATE(3873), - [sym_makeref_expression] = STATE(3873), - [sym_ref_expression] = STATE(3873), - [sym_reftype_expression] = STATE(3873), - [sym_refvalue_expression] = STATE(3873), - [sym_stackalloc_expression] = STATE(3873), - [sym_range_expression] = STATE(3873), - [sym_tuple_expression] = STATE(2913), - [sym_literal] = STATE(3873), - [sym_character_literal] = STATE(3877), - [sym_string_literal] = STATE(3877), - [sym_raw_string_literal] = STATE(3877), - [sym_boolean_literal] = STATE(3877), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3873), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2603), + [sym__name] = STATE(5865), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2344), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(3136), + [sym_non_lvalue_expression] = STATE(3220), + [sym_lvalue_expression] = STATE(3234), + [sym__expression_statement_expression] = STATE(3236), + [sym_assignment_expression] = STATE(3221), + [sym_binary_expression] = STATE(3236), + [sym_postfix_unary_expression] = STATE(3221), + [sym_prefix_unary_expression] = STATE(3221), + [sym__pointer_indirection_expression] = STATE(2602), + [sym_query_expression] = STATE(3236), + [sym_from_clause] = STATE(6151), + [sym_conditional_expression] = STATE(3236), + [sym_conditional_access_expression] = STATE(3236), + [sym_as_expression] = STATE(3236), + [sym_is_expression] = STATE(3236), + [sym_is_pattern_expression] = STATE(3236), + [sym_cast_expression] = STATE(3236), + [sym_checked_expression] = STATE(3236), + [sym_invocation_expression] = STATE(3221), + [sym_switch_expression] = STATE(3236), + [sym_await_expression] = STATE(3221), + [sym_throw_expression] = STATE(3236), + [sym_element_access_expression] = STATE(2602), + [sym_interpolated_string_expression] = STATE(3236), + [sym_member_access_expression] = STATE(2602), + [sym_object_creation_expression] = STATE(3221), + [sym_parenthesized_expression] = STATE(3221), + [sym__parenthesized_lvalue_expression] = STATE(2602), + [sym_lambda_expression] = STATE(3236), + [sym__lambda_expression_init] = STATE(7276), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3236), + [sym_anonymous_method_expression] = STATE(3236), + [sym_anonymous_object_creation_expression] = STATE(3236), + [sym_implicit_array_creation_expression] = STATE(3236), + [sym_implicit_object_creation_expression] = STATE(3236), + [sym_implicit_stackalloc_expression] = STATE(3236), + [sym_initializer_expression] = STATE(3236), + [sym_default_expression] = STATE(3236), + [sym_with_expression] = STATE(3236), + [sym_sizeof_expression] = STATE(3236), + [sym_typeof_expression] = STATE(3236), + [sym_makeref_expression] = STATE(3236), + [sym_ref_expression] = STATE(3236), + [sym_reftype_expression] = STATE(3236), + [sym_refvalue_expression] = STATE(3236), + [sym_stackalloc_expression] = STATE(3236), + [sym_range_expression] = STATE(3236), + [sym_tuple_expression] = STATE(2602), + [sym_literal] = STATE(3236), + [sym_character_literal] = STATE(3272), + [sym_string_literal] = STATE(3272), + [sym_raw_string_literal] = STATE(3272), + [sym_boolean_literal] = STATE(3272), + [sym_identifier] = STATE(2261), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3236), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(1579), [sym_preproc_endregion] = STATE(1579), [sym_preproc_line] = STATE(1579), @@ -308710,47 +308596,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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3382), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3379), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1627), - [anon_sym_LPAREN] = ACTIONS(1727), - [anon_sym_ref] = ACTIONS(1729), - [anon_sym_LBRACE] = ACTIONS(1633), - [anon_sym_delegate] = ACTIONS(1635), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1149), + [anon_sym_LPAREN] = ACTIONS(1597), + [anon_sym_ref] = ACTIONS(1599), + [anon_sym_LBRACE] = ACTIONS(1155), + [anon_sym_delegate] = ACTIONS(1157), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1731), + [anon_sym_new] = ACTIONS(1535), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1639), - [anon_sym_BANG] = ACTIONS(1735), - [anon_sym_TILDE] = ACTIONS(1735), - [anon_sym_PLUS_PLUS] = ACTIONS(1735), - [anon_sym_DASH_DASH] = ACTIONS(1735), - [anon_sym_true] = ACTIONS(1645), - [anon_sym_false] = ACTIONS(1645), - [anon_sym_PLUS] = ACTIONS(1733), - [anon_sym_DASH] = ACTIONS(1733), - [anon_sym_STAR] = ACTIONS(1737), - [anon_sym_CARET] = ACTIONS(1735), - [anon_sym_AMP] = ACTIONS(1735), - [anon_sym_this] = ACTIONS(1649), + [anon_sym_checked] = ACTIONS(1163), + [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(1169), + [anon_sym_false] = ACTIONS(1169), + [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(1173), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1651), + [anon_sym_base] = ACTIONS(1175), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1653), - [anon_sym_unchecked] = ACTIONS(1639), + [sym_predefined_type] = ACTIONS(1177), + [anon_sym_unchecked] = ACTIONS(1163), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1655), - [anon_sym_throw] = ACTIONS(1739), + [anon_sym_default] = ACTIONS(1179), + [anon_sym_throw] = ACTIONS(1607), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1741), - [anon_sym_DOT_DOT] = ACTIONS(1743), + [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), @@ -308763,19 +308649,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1663), - [anon_sym_sizeof] = ACTIONS(1665), - [anon_sym_typeof] = ACTIONS(1667), - [anon_sym___makeref] = ACTIONS(1669), - [anon_sym___reftype] = ACTIONS(1671), - [anon_sym___refvalue] = ACTIONS(1673), - [sym_null_literal] = ACTIONS(1675), - [anon_sym_SQUOTE] = ACTIONS(1677), - [sym_integer_literal] = ACTIONS(1675), - [sym_real_literal] = ACTIONS(1679), - [anon_sym_DQUOTE] = ACTIONS(1681), - [sym_verbatim_string_literal] = ACTIONS(1679), - [aux_sym_preproc_if_token1] = ACTIONS(1683), + [anon_sym_stackalloc] = ACTIONS(1187), + [anon_sym_sizeof] = ACTIONS(1189), + [anon_sym_typeof] = ACTIONS(1191), + [anon_sym___makeref] = ACTIONS(1193), + [anon_sym___reftype] = ACTIONS(1195), + [anon_sym___refvalue] = ACTIONS(1197), + [sym_null_literal] = ACTIONS(1199), + [anon_sym_SQUOTE] = ACTIONS(1201), + [sym_integer_literal] = ACTIONS(1199), + [sym_real_literal] = ACTIONS(1203), + [anon_sym_DQUOTE] = ACTIONS(1205), + [sym_verbatim_string_literal] = ACTIONS(1203), + [aux_sym_preproc_if_token1] = ACTIONS(1207), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -308786,90 +308672,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1685), - [sym_interpolation_verbatim_start] = ACTIONS(1687), - [sym_interpolation_raw_start] = ACTIONS(1689), - [sym_raw_string_start] = ACTIONS(1691), + [sym_interpolation_regular_start] = ACTIONS(1209), + [sym_interpolation_verbatim_start] = ACTIONS(1211), + [sym_interpolation_raw_start] = ACTIONS(1213), + [sym_raw_string_start] = ACTIONS(1215), }, [1580] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2914), - [sym__name] = STATE(5885), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2357), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(3568), - [sym_non_lvalue_expression] = STATE(3880), - [sym_lvalue_expression] = STATE(2911), - [sym__expression_statement_expression] = STATE(3873), - [sym_assignment_expression] = STATE(3881), - [sym_binary_expression] = STATE(3873), - [sym_postfix_unary_expression] = STATE(3881), - [sym_prefix_unary_expression] = STATE(3881), - [sym__pointer_indirection_expression] = STATE(2913), - [sym_query_expression] = STATE(3873), - [sym_from_clause] = STATE(6182), - [sym_conditional_expression] = STATE(3873), - [sym_conditional_access_expression] = STATE(3873), - [sym_as_expression] = STATE(3873), - [sym_is_expression] = STATE(3873), - [sym_is_pattern_expression] = STATE(3873), - [sym_cast_expression] = STATE(3873), - [sym_checked_expression] = STATE(3873), - [sym_invocation_expression] = STATE(3881), - [sym_switch_expression] = STATE(3873), - [sym_await_expression] = STATE(3881), - [sym_throw_expression] = STATE(3873), - [sym_element_access_expression] = STATE(2913), - [sym_interpolated_string_expression] = STATE(3873), - [sym_member_access_expression] = STATE(2913), - [sym_object_creation_expression] = STATE(3881), - [sym_parenthesized_expression] = STATE(3881), - [sym__parenthesized_lvalue_expression] = STATE(2913), - [sym_lambda_expression] = STATE(3873), - [sym__lambda_expression_init] = STATE(7316), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3873), - [sym_anonymous_method_expression] = STATE(3873), - [sym_anonymous_object_creation_expression] = STATE(3873), - [sym_implicit_array_creation_expression] = STATE(3873), - [sym_implicit_object_creation_expression] = STATE(3873), - [sym_implicit_stackalloc_expression] = STATE(3873), - [sym_initializer_expression] = STATE(3873), - [sym_default_expression] = STATE(3873), - [sym_with_expression] = STATE(3873), - [sym_sizeof_expression] = STATE(3873), - [sym_typeof_expression] = STATE(3873), - [sym_makeref_expression] = STATE(3873), - [sym_ref_expression] = STATE(3873), - [sym_reftype_expression] = STATE(3873), - [sym_refvalue_expression] = STATE(3873), - [sym_stackalloc_expression] = STATE(3873), - [sym_range_expression] = STATE(3873), - [sym_tuple_expression] = STATE(2913), - [sym_literal] = STATE(3873), - [sym_character_literal] = STATE(3877), - [sym_string_literal] = STATE(3877), - [sym_raw_string_literal] = STATE(3877), - [sym_boolean_literal] = STATE(3877), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3873), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2416), + [sym__name] = STATE(5867), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2379), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(5662), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(2417), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3102), + [sym_postfix_unary_expression] = STATE(3079), + [sym_prefix_unary_expression] = STATE(3079), + [sym__pointer_indirection_expression] = STATE(2415), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6134), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3102), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3079), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2415), + [sym_interpolated_string_expression] = STATE(3102), + [sym_member_access_expression] = STATE(2415), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3079), + [sym__parenthesized_lvalue_expression] = STATE(2415), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7425), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(3102), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3102), + [sym_typeof_expression] = STATE(3102), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2415), + [sym_literal] = STATE(3102), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(1580), [sym_preproc_endregion] = STATE(1580), [sym_preproc_line] = STATE(1580), @@ -308879,47 +308765,47 @@ 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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3382), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1627), - [anon_sym_LPAREN] = ACTIONS(1727), - [anon_sym_ref] = ACTIONS(1729), - [anon_sym_LBRACE] = ACTIONS(1633), - [anon_sym_delegate] = ACTIONS(1635), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1239), + [anon_sym_LPAREN] = ACTIONS(2943), + [anon_sym_ref] = ACTIONS(715), + [anon_sym_LBRACE] = ACTIONS(1481), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1731), + [anon_sym_new] = ACTIONS(1059), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1639), - [anon_sym_BANG] = ACTIONS(1735), - [anon_sym_TILDE] = ACTIONS(1735), - [anon_sym_PLUS_PLUS] = ACTIONS(1735), - [anon_sym_DASH_DASH] = ACTIONS(1735), - [anon_sym_true] = ACTIONS(1645), - [anon_sym_false] = ACTIONS(1645), - [anon_sym_PLUS] = ACTIONS(1733), - [anon_sym_DASH] = ACTIONS(1733), - [anon_sym_STAR] = ACTIONS(1737), - [anon_sym_CARET] = ACTIONS(1735), - [anon_sym_AMP] = ACTIONS(1735), - [anon_sym_this] = ACTIONS(1649), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(1525), + [anon_sym_TILDE] = ACTIONS(1525), + [anon_sym_PLUS_PLUS] = ACTIONS(1525), + [anon_sym_DASH_DASH] = ACTIONS(1525), + [anon_sym_true] = ACTIONS(77), + [anon_sym_false] = ACTIONS(77), + [anon_sym_PLUS] = ACTIONS(1523), + [anon_sym_DASH] = ACTIONS(1523), + [anon_sym_STAR] = ACTIONS(2169), + [anon_sym_CARET] = ACTIONS(1525), + [anon_sym_AMP] = ACTIONS(1525), + [anon_sym_this] = ACTIONS(1261), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1651), + [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1653), - [anon_sym_unchecked] = ACTIONS(1639), + [sym_predefined_type] = ACTIONS(1265), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1655), - [anon_sym_throw] = ACTIONS(1739), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(1527), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1741), - [anon_sym_DOT_DOT] = ACTIONS(1743), + [anon_sym_await] = ACTIONS(1529), + [anon_sym_DOT_DOT] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -308932,19 +308818,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1663), - [anon_sym_sizeof] = ACTIONS(1665), - [anon_sym_typeof] = ACTIONS(1667), - [anon_sym___makeref] = ACTIONS(1669), - [anon_sym___reftype] = ACTIONS(1671), - [anon_sym___refvalue] = ACTIONS(1673), - [sym_null_literal] = ACTIONS(1675), - [anon_sym_SQUOTE] = ACTIONS(1677), - [sym_integer_literal] = ACTIONS(1675), - [sym_real_literal] = ACTIONS(1679), - [anon_sym_DQUOTE] = ACTIONS(1681), - [sym_verbatim_string_literal] = ACTIONS(1679), - [aux_sym_preproc_if_token1] = ACTIONS(1683), + [anon_sym_stackalloc] = ACTIONS(127), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_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), @@ -308955,90 +308841,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1685), - [sym_interpolation_verbatim_start] = ACTIONS(1687), - [sym_interpolation_raw_start] = ACTIONS(1689), - [sym_raw_string_start] = ACTIONS(1691), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [sym_interpolation_raw_start] = ACTIONS(155), + [sym_raw_string_start] = ACTIONS(157), }, [1581] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2914), - [sym__name] = STATE(5885), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2357), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(3571), - [sym_non_lvalue_expression] = STATE(3880), - [sym_lvalue_expression] = STATE(2911), - [sym__expression_statement_expression] = STATE(3873), - [sym_assignment_expression] = STATE(3881), - [sym_binary_expression] = STATE(3873), - [sym_postfix_unary_expression] = STATE(3881), - [sym_prefix_unary_expression] = STATE(3881), - [sym__pointer_indirection_expression] = STATE(2913), - [sym_query_expression] = STATE(3873), - [sym_from_clause] = STATE(6182), - [sym_conditional_expression] = STATE(3873), - [sym_conditional_access_expression] = STATE(3873), - [sym_as_expression] = STATE(3873), - [sym_is_expression] = STATE(3873), - [sym_is_pattern_expression] = STATE(3873), - [sym_cast_expression] = STATE(3873), - [sym_checked_expression] = STATE(3873), - [sym_invocation_expression] = STATE(3881), - [sym_switch_expression] = STATE(3873), - [sym_await_expression] = STATE(3881), - [sym_throw_expression] = STATE(3873), - [sym_element_access_expression] = STATE(2913), - [sym_interpolated_string_expression] = STATE(3873), - [sym_member_access_expression] = STATE(2913), - [sym_object_creation_expression] = STATE(3881), - [sym_parenthesized_expression] = STATE(3881), - [sym__parenthesized_lvalue_expression] = STATE(2913), - [sym_lambda_expression] = STATE(3873), - [sym__lambda_expression_init] = STATE(7316), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3873), - [sym_anonymous_method_expression] = STATE(3873), - [sym_anonymous_object_creation_expression] = STATE(3873), - [sym_implicit_array_creation_expression] = STATE(3873), - [sym_implicit_object_creation_expression] = STATE(3873), - [sym_implicit_stackalloc_expression] = STATE(3873), - [sym_initializer_expression] = STATE(3873), - [sym_default_expression] = STATE(3873), - [sym_with_expression] = STATE(3873), - [sym_sizeof_expression] = STATE(3873), - [sym_typeof_expression] = STATE(3873), - [sym_makeref_expression] = STATE(3873), - [sym_ref_expression] = STATE(3873), - [sym_reftype_expression] = STATE(3873), - [sym_refvalue_expression] = STATE(3873), - [sym_stackalloc_expression] = STATE(3873), - [sym_range_expression] = STATE(3873), - [sym_tuple_expression] = STATE(2913), - [sym_literal] = STATE(3873), - [sym_character_literal] = STATE(3877), - [sym_string_literal] = STATE(3877), - [sym_raw_string_literal] = STATE(3877), - [sym_boolean_literal] = STATE(3877), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3873), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2816), + [sym__name] = STATE(5895), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2376), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(3212), + [sym_non_lvalue_expression] = STATE(3495), + [sym_lvalue_expression] = STATE(3512), + [sym__expression_statement_expression] = STATE(3462), + [sym_assignment_expression] = STATE(3497), + [sym_binary_expression] = STATE(3462), + [sym_postfix_unary_expression] = STATE(3497), + [sym_prefix_unary_expression] = STATE(3497), + [sym__pointer_indirection_expression] = STATE(2815), + [sym_query_expression] = STATE(3462), + [sym_from_clause] = STATE(6167), + [sym_conditional_expression] = STATE(3462), + [sym_conditional_access_expression] = STATE(3462), + [sym_as_expression] = STATE(3462), + [sym_is_expression] = STATE(3462), + [sym_is_pattern_expression] = STATE(3462), + [sym_cast_expression] = STATE(3462), + [sym_checked_expression] = STATE(3462), + [sym_invocation_expression] = STATE(3497), + [sym_switch_expression] = STATE(3462), + [sym_await_expression] = STATE(3497), + [sym_throw_expression] = STATE(3462), + [sym_element_access_expression] = STATE(2815), + [sym_interpolated_string_expression] = STATE(3462), + [sym_member_access_expression] = STATE(2815), + [sym_object_creation_expression] = STATE(3497), + [sym_parenthesized_expression] = STATE(3497), + [sym__parenthesized_lvalue_expression] = STATE(2815), + [sym_lambda_expression] = STATE(3462), + [sym__lambda_expression_init] = STATE(7716), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3462), + [sym_anonymous_method_expression] = STATE(3462), + [sym_anonymous_object_creation_expression] = STATE(3462), + [sym_implicit_array_creation_expression] = STATE(3462), + [sym_implicit_object_creation_expression] = STATE(3462), + [sym_implicit_stackalloc_expression] = STATE(3462), + [sym_initializer_expression] = STATE(3462), + [sym_default_expression] = STATE(3462), + [sym_with_expression] = STATE(3462), + [sym_sizeof_expression] = STATE(3462), + [sym_typeof_expression] = STATE(3462), + [sym_makeref_expression] = STATE(3462), + [sym_ref_expression] = STATE(3462), + [sym_reftype_expression] = STATE(3462), + [sym_refvalue_expression] = STATE(3462), + [sym_stackalloc_expression] = STATE(3462), + [sym_range_expression] = STATE(3462), + [sym_tuple_expression] = STATE(2815), + [sym_literal] = STATE(3462), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3462), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(1581), [sym_preproc_endregion] = STATE(1581), [sym_preproc_line] = STATE(1581), @@ -309048,47 +308934,47 @@ 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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3382), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3367), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1627), - [anon_sym_LPAREN] = ACTIONS(1727), - [anon_sym_ref] = ACTIONS(1729), - [anon_sym_LBRACE] = ACTIONS(1633), - [anon_sym_delegate] = ACTIONS(1635), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1305), + [anon_sym_LPAREN] = ACTIONS(1803), + [anon_sym_ref] = ACTIONS(1805), + [anon_sym_LBRACE] = ACTIONS(1311), + [anon_sym_delegate] = ACTIONS(1313), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1731), + [anon_sym_new] = ACTIONS(1807), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1639), - [anon_sym_BANG] = ACTIONS(1735), - [anon_sym_TILDE] = ACTIONS(1735), - [anon_sym_PLUS_PLUS] = ACTIONS(1735), - [anon_sym_DASH_DASH] = ACTIONS(1735), - [anon_sym_true] = ACTIONS(1645), - [anon_sym_false] = ACTIONS(1645), - [anon_sym_PLUS] = ACTIONS(1733), - [anon_sym_DASH] = ACTIONS(1733), - [anon_sym_STAR] = ACTIONS(1737), - [anon_sym_CARET] = ACTIONS(1735), - [anon_sym_AMP] = ACTIONS(1735), - [anon_sym_this] = ACTIONS(1649), + [anon_sym_checked] = ACTIONS(1317), + [anon_sym_BANG] = ACTIONS(1811), + [anon_sym_TILDE] = ACTIONS(1811), + [anon_sym_PLUS_PLUS] = ACTIONS(1811), + [anon_sym_DASH_DASH] = ACTIONS(1811), + [anon_sym_true] = ACTIONS(77), + [anon_sym_false] = ACTIONS(77), + [anon_sym_PLUS] = ACTIONS(1809), + [anon_sym_DASH] = ACTIONS(1809), + [anon_sym_STAR] = ACTIONS(1813), + [anon_sym_CARET] = ACTIONS(1811), + [anon_sym_AMP] = ACTIONS(1811), + [anon_sym_this] = ACTIONS(1321), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1651), + [anon_sym_base] = ACTIONS(1323), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1653), - [anon_sym_unchecked] = ACTIONS(1639), + [sym_predefined_type] = ACTIONS(91), + [anon_sym_unchecked] = ACTIONS(1317), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1655), - [anon_sym_throw] = ACTIONS(1739), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(1815), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1741), - [anon_sym_DOT_DOT] = ACTIONS(1743), + [anon_sym_await] = ACTIONS(1817), + [anon_sym_DOT_DOT] = ACTIONS(1819), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -309101,19 +308987,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1663), - [anon_sym_sizeof] = ACTIONS(1665), - [anon_sym_typeof] = ACTIONS(1667), - [anon_sym___makeref] = ACTIONS(1669), - [anon_sym___reftype] = ACTIONS(1671), - [anon_sym___refvalue] = ACTIONS(1673), - [sym_null_literal] = ACTIONS(1675), - [anon_sym_SQUOTE] = ACTIONS(1677), - [sym_integer_literal] = ACTIONS(1675), - [sym_real_literal] = ACTIONS(1679), - [anon_sym_DQUOTE] = ACTIONS(1681), - [sym_verbatim_string_literal] = ACTIONS(1679), - [aux_sym_preproc_if_token1] = ACTIONS(1683), + [anon_sym_stackalloc] = ACTIONS(1331), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(1333), + [anon_sym___reftype] = ACTIONS(1335), + [anon_sym___refvalue] = ACTIONS(1337), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_literal] = ACTIONS(143), + [anon_sym_DQUOTE] = ACTIONS(145), + [sym_verbatim_string_literal] = ACTIONS(143), + [aux_sym_preproc_if_token1] = ACTIONS(1339), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -309124,90 +309010,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1685), - [sym_interpolation_verbatim_start] = ACTIONS(1687), - [sym_interpolation_raw_start] = ACTIONS(1689), - [sym_raw_string_start] = ACTIONS(1691), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [sym_interpolation_raw_start] = ACTIONS(155), + [sym_raw_string_start] = ACTIONS(157), }, [1582] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2914), - [sym__name] = STATE(5885), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2357), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(3575), - [sym_non_lvalue_expression] = STATE(3880), - [sym_lvalue_expression] = STATE(2911), - [sym__expression_statement_expression] = STATE(3873), - [sym_assignment_expression] = STATE(3881), - [sym_binary_expression] = STATE(3873), - [sym_postfix_unary_expression] = STATE(3881), - [sym_prefix_unary_expression] = STATE(3881), - [sym__pointer_indirection_expression] = STATE(2913), - [sym_query_expression] = STATE(3873), - [sym_from_clause] = STATE(6182), - [sym_conditional_expression] = STATE(3873), - [sym_conditional_access_expression] = STATE(3873), - [sym_as_expression] = STATE(3873), - [sym_is_expression] = STATE(3873), - [sym_is_pattern_expression] = STATE(3873), - [sym_cast_expression] = STATE(3873), - [sym_checked_expression] = STATE(3873), - [sym_invocation_expression] = STATE(3881), - [sym_switch_expression] = STATE(3873), - [sym_await_expression] = STATE(3881), - [sym_throw_expression] = STATE(3873), - [sym_element_access_expression] = STATE(2913), - [sym_interpolated_string_expression] = STATE(3873), - [sym_member_access_expression] = STATE(2913), - [sym_object_creation_expression] = STATE(3881), - [sym_parenthesized_expression] = STATE(3881), - [sym__parenthesized_lvalue_expression] = STATE(2913), - [sym_lambda_expression] = STATE(3873), - [sym__lambda_expression_init] = STATE(7316), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3873), - [sym_anonymous_method_expression] = STATE(3873), - [sym_anonymous_object_creation_expression] = STATE(3873), - [sym_implicit_array_creation_expression] = STATE(3873), - [sym_implicit_object_creation_expression] = STATE(3873), - [sym_implicit_stackalloc_expression] = STATE(3873), - [sym_initializer_expression] = STATE(3873), - [sym_default_expression] = STATE(3873), - [sym_with_expression] = STATE(3873), - [sym_sizeof_expression] = STATE(3873), - [sym_typeof_expression] = STATE(3873), - [sym_makeref_expression] = STATE(3873), - [sym_ref_expression] = STATE(3873), - [sym_reftype_expression] = STATE(3873), - [sym_refvalue_expression] = STATE(3873), - [sym_stackalloc_expression] = STATE(3873), - [sym_range_expression] = STATE(3873), - [sym_tuple_expression] = STATE(2913), - [sym_literal] = STATE(3873), - [sym_character_literal] = STATE(3877), - [sym_string_literal] = STATE(3877), - [sym_raw_string_literal] = STATE(3877), - [sym_boolean_literal] = STATE(3877), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3873), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2416), + [sym__name] = STATE(5868), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2387), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(5662), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(2417), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3102), + [sym_postfix_unary_expression] = STATE(3079), + [sym_prefix_unary_expression] = STATE(3079), + [sym__pointer_indirection_expression] = STATE(2415), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6134), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3102), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3079), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2415), + [sym_interpolated_string_expression] = STATE(3102), + [sym_member_access_expression] = STATE(2415), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3079), + [sym__parenthesized_lvalue_expression] = STATE(2415), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7425), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(3102), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3102), + [sym_typeof_expression] = STATE(3102), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2415), + [sym_literal] = STATE(3102), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(1582), [sym_preproc_endregion] = STATE(1582), [sym_preproc_line] = STATE(1582), @@ -309217,47 +309103,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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3382), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1627), - [anon_sym_LPAREN] = ACTIONS(1727), - [anon_sym_ref] = ACTIONS(1729), - [anon_sym_LBRACE] = ACTIONS(1633), - [anon_sym_delegate] = ACTIONS(1635), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1239), + [anon_sym_LPAREN] = ACTIONS(2943), + [anon_sym_ref] = ACTIONS(715), + [anon_sym_LBRACE] = ACTIONS(1481), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1731), + [anon_sym_new] = ACTIONS(1059), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1639), - [anon_sym_BANG] = ACTIONS(1735), - [anon_sym_TILDE] = ACTIONS(1735), - [anon_sym_PLUS_PLUS] = ACTIONS(1735), - [anon_sym_DASH_DASH] = ACTIONS(1735), - [anon_sym_true] = ACTIONS(1645), - [anon_sym_false] = ACTIONS(1645), - [anon_sym_PLUS] = ACTIONS(1733), - [anon_sym_DASH] = ACTIONS(1733), - [anon_sym_STAR] = ACTIONS(1737), - [anon_sym_CARET] = ACTIONS(1735), - [anon_sym_AMP] = ACTIONS(1735), - [anon_sym_this] = ACTIONS(1649), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(1525), + [anon_sym_TILDE] = ACTIONS(1525), + [anon_sym_PLUS_PLUS] = ACTIONS(1525), + [anon_sym_DASH_DASH] = ACTIONS(1525), + [anon_sym_true] = ACTIONS(77), + [anon_sym_false] = ACTIONS(77), + [anon_sym_PLUS] = ACTIONS(1523), + [anon_sym_DASH] = ACTIONS(1523), + [anon_sym_STAR] = ACTIONS(2291), + [anon_sym_CARET] = ACTIONS(1525), + [anon_sym_AMP] = ACTIONS(1525), + [anon_sym_this] = ACTIONS(1261), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1651), + [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1653), - [anon_sym_unchecked] = ACTIONS(1639), + [sym_predefined_type] = ACTIONS(1265), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1655), - [anon_sym_throw] = ACTIONS(1739), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(1527), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1741), - [anon_sym_DOT_DOT] = ACTIONS(1743), + [anon_sym_await] = ACTIONS(1529), + [anon_sym_DOT_DOT] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -309270,19 +309156,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1663), - [anon_sym_sizeof] = ACTIONS(1665), - [anon_sym_typeof] = ACTIONS(1667), - [anon_sym___makeref] = ACTIONS(1669), - [anon_sym___reftype] = ACTIONS(1671), - [anon_sym___refvalue] = ACTIONS(1673), - [sym_null_literal] = ACTIONS(1675), - [anon_sym_SQUOTE] = ACTIONS(1677), - [sym_integer_literal] = ACTIONS(1675), - [sym_real_literal] = ACTIONS(1679), - [anon_sym_DQUOTE] = ACTIONS(1681), - [sym_verbatim_string_literal] = ACTIONS(1679), - [aux_sym_preproc_if_token1] = ACTIONS(1683), + [anon_sym_stackalloc] = ACTIONS(127), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_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), @@ -309293,90 +309179,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1685), - [sym_interpolation_verbatim_start] = ACTIONS(1687), - [sym_interpolation_raw_start] = ACTIONS(1689), - [sym_raw_string_start] = ACTIONS(1691), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [sym_interpolation_raw_start] = ACTIONS(155), + [sym_raw_string_start] = ACTIONS(157), }, [1583] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2914), - [sym__name] = STATE(5885), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2357), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(3631), - [sym_non_lvalue_expression] = STATE(3880), - [sym_lvalue_expression] = STATE(2911), - [sym__expression_statement_expression] = STATE(3873), - [sym_assignment_expression] = STATE(3881), - [sym_binary_expression] = STATE(3873), - [sym_postfix_unary_expression] = STATE(3881), - [sym_prefix_unary_expression] = STATE(3881), - [sym__pointer_indirection_expression] = STATE(2913), - [sym_query_expression] = STATE(3873), - [sym_from_clause] = STATE(6182), - [sym_conditional_expression] = STATE(3873), - [sym_conditional_access_expression] = STATE(3873), - [sym_as_expression] = STATE(3873), - [sym_is_expression] = STATE(3873), - [sym_is_pattern_expression] = STATE(3873), - [sym_cast_expression] = STATE(3873), - [sym_checked_expression] = STATE(3873), - [sym_invocation_expression] = STATE(3881), - [sym_switch_expression] = STATE(3873), - [sym_await_expression] = STATE(3881), - [sym_throw_expression] = STATE(3873), - [sym_element_access_expression] = STATE(2913), - [sym_interpolated_string_expression] = STATE(3873), - [sym_member_access_expression] = STATE(2913), - [sym_object_creation_expression] = STATE(3881), - [sym_parenthesized_expression] = STATE(3881), - [sym__parenthesized_lvalue_expression] = STATE(2913), - [sym_lambda_expression] = STATE(3873), - [sym__lambda_expression_init] = STATE(7316), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3873), - [sym_anonymous_method_expression] = STATE(3873), - [sym_anonymous_object_creation_expression] = STATE(3873), - [sym_implicit_array_creation_expression] = STATE(3873), - [sym_implicit_object_creation_expression] = STATE(3873), - [sym_implicit_stackalloc_expression] = STATE(3873), - [sym_initializer_expression] = STATE(3873), - [sym_default_expression] = STATE(3873), - [sym_with_expression] = STATE(3873), - [sym_sizeof_expression] = STATE(3873), - [sym_typeof_expression] = STATE(3873), - [sym_makeref_expression] = STATE(3873), - [sym_ref_expression] = STATE(3873), - [sym_reftype_expression] = STATE(3873), - [sym_refvalue_expression] = STATE(3873), - [sym_stackalloc_expression] = STATE(3873), - [sym_range_expression] = STATE(3873), - [sym_tuple_expression] = STATE(2913), - [sym_literal] = STATE(3873), - [sym_character_literal] = STATE(3877), - [sym_string_literal] = STATE(3877), - [sym_raw_string_literal] = STATE(3877), - [sym_boolean_literal] = STATE(3877), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3873), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2416), + [sym__name] = STATE(5867), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2379), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(2902), + [sym_non_lvalue_expression] = STATE(3040), + [sym_lvalue_expression] = STATE(3617), + [sym__expression_statement_expression] = STATE(3035), + [sym_assignment_expression] = STATE(3043), + [sym_binary_expression] = STATE(3035), + [sym_postfix_unary_expression] = STATE(3043), + [sym_prefix_unary_expression] = STATE(3043), + [sym__pointer_indirection_expression] = STATE(2415), + [sym_query_expression] = STATE(3035), + [sym_from_clause] = STATE(6161), + [sym_conditional_expression] = STATE(3035), + [sym_conditional_access_expression] = STATE(3035), + [sym_as_expression] = STATE(3035), + [sym_is_expression] = STATE(3035), + [sym_is_pattern_expression] = STATE(3035), + [sym_cast_expression] = STATE(3035), + [sym_checked_expression] = STATE(3035), + [sym_invocation_expression] = STATE(3043), + [sym_switch_expression] = STATE(3035), + [sym_await_expression] = STATE(3043), + [sym_throw_expression] = STATE(3035), + [sym_element_access_expression] = STATE(2415), + [sym_interpolated_string_expression] = STATE(3035), + [sym_member_access_expression] = STATE(2415), + [sym_object_creation_expression] = STATE(3043), + [sym_parenthesized_expression] = STATE(3043), + [sym__parenthesized_lvalue_expression] = STATE(2415), + [sym_lambda_expression] = STATE(3035), + [sym__lambda_expression_init] = STATE(7706), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3035), + [sym_anonymous_method_expression] = STATE(3035), + [sym_anonymous_object_creation_expression] = STATE(3035), + [sym_implicit_array_creation_expression] = STATE(3035), + [sym_implicit_object_creation_expression] = STATE(3035), + [sym_implicit_stackalloc_expression] = STATE(3035), + [sym_initializer_expression] = STATE(3035), + [sym_default_expression] = STATE(3035), + [sym_with_expression] = STATE(3035), + [sym_sizeof_expression] = STATE(3035), + [sym_typeof_expression] = STATE(3035), + [sym_makeref_expression] = STATE(3035), + [sym_ref_expression] = STATE(3035), + [sym_reftype_expression] = STATE(3035), + [sym_refvalue_expression] = STATE(3035), + [sym_stackalloc_expression] = STATE(3035), + [sym_range_expression] = STATE(3035), + [sym_tuple_expression] = STATE(2415), + [sym_literal] = STATE(3035), + [sym_character_literal] = STATE(3037), + [sym_string_literal] = STATE(3037), + [sym_raw_string_literal] = STATE(3037), + [sym_boolean_literal] = STATE(3037), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3035), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(1583), [sym_preproc_endregion] = STATE(1583), [sym_preproc_line] = STATE(1583), @@ -309386,47 +309272,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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3382), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3455), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1627), - [anon_sym_LPAREN] = ACTIONS(1727), - [anon_sym_ref] = ACTIONS(1729), - [anon_sym_LBRACE] = ACTIONS(1633), - [anon_sym_delegate] = ACTIONS(1635), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1239), + [anon_sym_LPAREN] = ACTIONS(2159), + [anon_sym_ref] = ACTIONS(2161), + [anon_sym_LBRACE] = ACTIONS(1245), + [anon_sym_delegate] = ACTIONS(1247), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1731), + [anon_sym_new] = ACTIONS(2163), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1639), - [anon_sym_BANG] = ACTIONS(1735), - [anon_sym_TILDE] = ACTIONS(1735), - [anon_sym_PLUS_PLUS] = ACTIONS(1735), - [anon_sym_DASH_DASH] = ACTIONS(1735), - [anon_sym_true] = ACTIONS(1645), - [anon_sym_false] = ACTIONS(1645), - [anon_sym_PLUS] = ACTIONS(1733), - [anon_sym_DASH] = ACTIONS(1733), - [anon_sym_STAR] = ACTIONS(1737), - [anon_sym_CARET] = ACTIONS(1735), - [anon_sym_AMP] = ACTIONS(1735), - [anon_sym_this] = ACTIONS(1649), + [anon_sym_checked] = ACTIONS(1251), + [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(1257), + [anon_sym_false] = ACTIONS(1257), + [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(1261), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1651), + [anon_sym_base] = ACTIONS(1263), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1653), - [anon_sym_unchecked] = ACTIONS(1639), + [sym_predefined_type] = ACTIONS(1265), + [anon_sym_unchecked] = ACTIONS(1251), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1655), - [anon_sym_throw] = ACTIONS(1739), + [anon_sym_default] = ACTIONS(1267), + [anon_sym_throw] = ACTIONS(2171), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1741), - [anon_sym_DOT_DOT] = ACTIONS(1743), + [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), @@ -309439,19 +309325,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1663), - [anon_sym_sizeof] = ACTIONS(1665), - [anon_sym_typeof] = ACTIONS(1667), - [anon_sym___makeref] = ACTIONS(1669), - [anon_sym___reftype] = ACTIONS(1671), - [anon_sym___refvalue] = ACTIONS(1673), - [sym_null_literal] = ACTIONS(1675), - [anon_sym_SQUOTE] = ACTIONS(1677), - [sym_integer_literal] = ACTIONS(1675), - [sym_real_literal] = ACTIONS(1679), - [anon_sym_DQUOTE] = ACTIONS(1681), - [sym_verbatim_string_literal] = ACTIONS(1679), - [aux_sym_preproc_if_token1] = ACTIONS(1683), + [anon_sym_stackalloc] = ACTIONS(1275), + [anon_sym_sizeof] = ACTIONS(1277), + [anon_sym_typeof] = ACTIONS(1279), + [anon_sym___makeref] = ACTIONS(1281), + [anon_sym___reftype] = ACTIONS(1283), + [anon_sym___refvalue] = ACTIONS(1285), + [sym_null_literal] = ACTIONS(1287), + [anon_sym_SQUOTE] = ACTIONS(1289), + [sym_integer_literal] = ACTIONS(1287), + [sym_real_literal] = ACTIONS(1291), + [anon_sym_DQUOTE] = ACTIONS(1293), + [sym_verbatim_string_literal] = ACTIONS(1291), + [aux_sym_preproc_if_token1] = ACTIONS(1295), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -309462,90 +309348,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1685), - [sym_interpolation_verbatim_start] = ACTIONS(1687), - [sym_interpolation_raw_start] = ACTIONS(1689), - [sym_raw_string_start] = ACTIONS(1691), + [sym_interpolation_regular_start] = ACTIONS(1297), + [sym_interpolation_verbatim_start] = ACTIONS(1299), + [sym_interpolation_raw_start] = ACTIONS(1301), + [sym_raw_string_start] = ACTIONS(1303), }, [1584] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2914), - [sym__name] = STATE(5885), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2357), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(3558), - [sym_non_lvalue_expression] = STATE(3880), - [sym_lvalue_expression] = STATE(2911), - [sym__expression_statement_expression] = STATE(3873), - [sym_assignment_expression] = STATE(3881), - [sym_binary_expression] = STATE(3873), - [sym_postfix_unary_expression] = STATE(3881), - [sym_prefix_unary_expression] = STATE(3881), - [sym__pointer_indirection_expression] = STATE(2913), - [sym_query_expression] = STATE(3873), - [sym_from_clause] = STATE(6182), - [sym_conditional_expression] = STATE(3873), - [sym_conditional_access_expression] = STATE(3873), - [sym_as_expression] = STATE(3873), - [sym_is_expression] = STATE(3873), - [sym_is_pattern_expression] = STATE(3873), - [sym_cast_expression] = STATE(3873), - [sym_checked_expression] = STATE(3873), - [sym_invocation_expression] = STATE(3881), - [sym_switch_expression] = STATE(3873), - [sym_await_expression] = STATE(3881), - [sym_throw_expression] = STATE(3873), - [sym_element_access_expression] = STATE(2913), - [sym_interpolated_string_expression] = STATE(3873), - [sym_member_access_expression] = STATE(2913), - [sym_object_creation_expression] = STATE(3881), - [sym_parenthesized_expression] = STATE(3881), - [sym__parenthesized_lvalue_expression] = STATE(2913), - [sym_lambda_expression] = STATE(3873), - [sym__lambda_expression_init] = STATE(7316), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3873), - [sym_anonymous_method_expression] = STATE(3873), - [sym_anonymous_object_creation_expression] = STATE(3873), - [sym_implicit_array_creation_expression] = STATE(3873), - [sym_implicit_object_creation_expression] = STATE(3873), - [sym_implicit_stackalloc_expression] = STATE(3873), - [sym_initializer_expression] = STATE(3873), - [sym_default_expression] = STATE(3873), - [sym_with_expression] = STATE(3873), - [sym_sizeof_expression] = STATE(3873), - [sym_typeof_expression] = STATE(3873), - [sym_makeref_expression] = STATE(3873), - [sym_ref_expression] = STATE(3873), - [sym_reftype_expression] = STATE(3873), - [sym_refvalue_expression] = STATE(3873), - [sym_stackalloc_expression] = STATE(3873), - [sym_range_expression] = STATE(3873), - [sym_tuple_expression] = STATE(2913), - [sym_literal] = STATE(3873), - [sym_character_literal] = STATE(3877), - [sym_string_literal] = STATE(3877), - [sym_raw_string_literal] = STATE(3877), - [sym_boolean_literal] = STATE(3877), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3873), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2603), + [sym__name] = STATE(5877), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2344), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(5696), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(2604), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3102), + [sym_postfix_unary_expression] = STATE(3079), + [sym_prefix_unary_expression] = STATE(3079), + [sym__pointer_indirection_expression] = STATE(2602), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6134), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3102), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3079), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2602), + [sym_interpolated_string_expression] = STATE(3102), + [sym_member_access_expression] = STATE(2602), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3079), + [sym__parenthesized_lvalue_expression] = STATE(2602), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7425), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(3102), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3102), + [sym_typeof_expression] = STATE(3102), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2602), + [sym_literal] = STATE(3102), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(1584), [sym_preproc_endregion] = STATE(1584), [sym_preproc_line] = STATE(1584), @@ -309555,47 +309441,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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3382), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1627), - [anon_sym_LPAREN] = ACTIONS(1727), - [anon_sym_ref] = ACTIONS(1729), - [anon_sym_LBRACE] = ACTIONS(1633), - [anon_sym_delegate] = ACTIONS(1635), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1149), + [anon_sym_LPAREN] = ACTIONS(2947), + [anon_sym_ref] = ACTIONS(715), + [anon_sym_LBRACE] = ACTIONS(1481), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1731), + [anon_sym_new] = ACTIONS(1059), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1639), - [anon_sym_BANG] = ACTIONS(1735), - [anon_sym_TILDE] = ACTIONS(1735), - [anon_sym_PLUS_PLUS] = ACTIONS(1735), - [anon_sym_DASH_DASH] = ACTIONS(1735), - [anon_sym_true] = ACTIONS(1645), - [anon_sym_false] = ACTIONS(1645), - [anon_sym_PLUS] = ACTIONS(1733), - [anon_sym_DASH] = ACTIONS(1733), - [anon_sym_STAR] = ACTIONS(1737), - [anon_sym_CARET] = ACTIONS(1735), - [anon_sym_AMP] = ACTIONS(1735), - [anon_sym_this] = ACTIONS(1649), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(1525), + [anon_sym_TILDE] = ACTIONS(1525), + [anon_sym_PLUS_PLUS] = ACTIONS(1525), + [anon_sym_DASH_DASH] = ACTIONS(1525), + [anon_sym_true] = ACTIONS(77), + [anon_sym_false] = ACTIONS(77), + [anon_sym_PLUS] = ACTIONS(1523), + [anon_sym_DASH] = ACTIONS(1523), + [anon_sym_STAR] = ACTIONS(1541), + [anon_sym_CARET] = ACTIONS(1525), + [anon_sym_AMP] = ACTIONS(1525), + [anon_sym_this] = ACTIONS(1173), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1651), + [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1653), - [anon_sym_unchecked] = ACTIONS(1639), + [sym_predefined_type] = ACTIONS(1177), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1655), - [anon_sym_throw] = ACTIONS(1739), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(1527), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1741), - [anon_sym_DOT_DOT] = ACTIONS(1743), + [anon_sym_await] = ACTIONS(1529), + [anon_sym_DOT_DOT] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -309608,19 +309494,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1663), - [anon_sym_sizeof] = ACTIONS(1665), - [anon_sym_typeof] = ACTIONS(1667), - [anon_sym___makeref] = ACTIONS(1669), - [anon_sym___reftype] = ACTIONS(1671), - [anon_sym___refvalue] = ACTIONS(1673), - [sym_null_literal] = ACTIONS(1675), - [anon_sym_SQUOTE] = ACTIONS(1677), - [sym_integer_literal] = ACTIONS(1675), - [sym_real_literal] = ACTIONS(1679), - [anon_sym_DQUOTE] = ACTIONS(1681), - [sym_verbatim_string_literal] = ACTIONS(1679), - [aux_sym_preproc_if_token1] = ACTIONS(1683), + [anon_sym_stackalloc] = ACTIONS(127), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_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), @@ -309631,90 +309517,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1685), - [sym_interpolation_verbatim_start] = ACTIONS(1687), - [sym_interpolation_raw_start] = ACTIONS(1689), - [sym_raw_string_start] = ACTIONS(1691), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [sym_interpolation_raw_start] = ACTIONS(155), + [sym_raw_string_start] = ACTIONS(157), }, [1585] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2914), - [sym__name] = STATE(5885), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2357), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(3566), - [sym_non_lvalue_expression] = STATE(3880), - [sym_lvalue_expression] = STATE(2911), - [sym__expression_statement_expression] = STATE(3873), - [sym_assignment_expression] = STATE(3881), - [sym_binary_expression] = STATE(3873), - [sym_postfix_unary_expression] = STATE(3881), - [sym_prefix_unary_expression] = STATE(3881), - [sym__pointer_indirection_expression] = STATE(2913), - [sym_query_expression] = STATE(3873), - [sym_from_clause] = STATE(6182), - [sym_conditional_expression] = STATE(3873), - [sym_conditional_access_expression] = STATE(3873), - [sym_as_expression] = STATE(3873), - [sym_is_expression] = STATE(3873), - [sym_is_pattern_expression] = STATE(3873), - [sym_cast_expression] = STATE(3873), - [sym_checked_expression] = STATE(3873), - [sym_invocation_expression] = STATE(3881), - [sym_switch_expression] = STATE(3873), - [sym_await_expression] = STATE(3881), - [sym_throw_expression] = STATE(3873), - [sym_element_access_expression] = STATE(2913), - [sym_interpolated_string_expression] = STATE(3873), - [sym_member_access_expression] = STATE(2913), - [sym_object_creation_expression] = STATE(3881), - [sym_parenthesized_expression] = STATE(3881), - [sym__parenthesized_lvalue_expression] = STATE(2913), - [sym_lambda_expression] = STATE(3873), - [sym__lambda_expression_init] = STATE(7316), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3873), - [sym_anonymous_method_expression] = STATE(3873), - [sym_anonymous_object_creation_expression] = STATE(3873), - [sym_implicit_array_creation_expression] = STATE(3873), - [sym_implicit_object_creation_expression] = STATE(3873), - [sym_implicit_stackalloc_expression] = STATE(3873), - [sym_initializer_expression] = STATE(3873), - [sym_default_expression] = STATE(3873), - [sym_with_expression] = STATE(3873), - [sym_sizeof_expression] = STATE(3873), - [sym_typeof_expression] = STATE(3873), - [sym_makeref_expression] = STATE(3873), - [sym_ref_expression] = STATE(3873), - [sym_reftype_expression] = STATE(3873), - [sym_refvalue_expression] = STATE(3873), - [sym_stackalloc_expression] = STATE(3873), - [sym_range_expression] = STATE(3873), - [sym_tuple_expression] = STATE(2913), - [sym_literal] = STATE(3873), - [sym_character_literal] = STATE(3877), - [sym_string_literal] = STATE(3877), - [sym_raw_string_literal] = STATE(3877), - [sym_boolean_literal] = STATE(3877), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3873), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2816), + [sym__name] = STATE(5896), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2362), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(3212), + [sym_non_lvalue_expression] = STATE(3495), + [sym_lvalue_expression] = STATE(3513), + [sym__expression_statement_expression] = STATE(3462), + [sym_assignment_expression] = STATE(3497), + [sym_binary_expression] = STATE(3462), + [sym_postfix_unary_expression] = STATE(3497), + [sym_prefix_unary_expression] = STATE(3497), + [sym__pointer_indirection_expression] = STATE(2815), + [sym_query_expression] = STATE(3462), + [sym_from_clause] = STATE(6132), + [sym_conditional_expression] = STATE(3462), + [sym_conditional_access_expression] = STATE(3462), + [sym_as_expression] = STATE(3462), + [sym_is_expression] = STATE(3462), + [sym_is_pattern_expression] = STATE(3462), + [sym_cast_expression] = STATE(3462), + [sym_checked_expression] = STATE(3462), + [sym_invocation_expression] = STATE(3497), + [sym_switch_expression] = STATE(3462), + [sym_await_expression] = STATE(3497), + [sym_throw_expression] = STATE(3462), + [sym_element_access_expression] = STATE(2815), + [sym_interpolated_string_expression] = STATE(3462), + [sym_member_access_expression] = STATE(2815), + [sym_object_creation_expression] = STATE(3497), + [sym_parenthesized_expression] = STATE(3497), + [sym__parenthesized_lvalue_expression] = STATE(2815), + [sym_lambda_expression] = STATE(3462), + [sym__lambda_expression_init] = STATE(7527), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3462), + [sym_anonymous_method_expression] = STATE(3462), + [sym_anonymous_object_creation_expression] = STATE(3462), + [sym_implicit_array_creation_expression] = STATE(3462), + [sym_implicit_object_creation_expression] = STATE(3462), + [sym_implicit_stackalloc_expression] = STATE(3462), + [sym_initializer_expression] = STATE(3462), + [sym_default_expression] = STATE(3462), + [sym_with_expression] = STATE(3462), + [sym_sizeof_expression] = STATE(3462), + [sym_typeof_expression] = STATE(3462), + [sym_makeref_expression] = STATE(3462), + [sym_ref_expression] = STATE(3462), + [sym_reftype_expression] = STATE(3462), + [sym_refvalue_expression] = STATE(3462), + [sym_stackalloc_expression] = STATE(3462), + [sym_range_expression] = STATE(3462), + [sym_tuple_expression] = STATE(2815), + [sym_literal] = STATE(3462), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3462), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(1585), [sym_preproc_endregion] = STATE(1585), [sym_preproc_line] = STATE(1585), @@ -309724,47 +309610,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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3382), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3367), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1627), - [anon_sym_LPAREN] = ACTIONS(1727), - [anon_sym_ref] = ACTIONS(1729), - [anon_sym_LBRACE] = ACTIONS(1633), - [anon_sym_delegate] = ACTIONS(1635), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1305), + [anon_sym_LPAREN] = ACTIONS(1875), + [anon_sym_ref] = ACTIONS(1877), + [anon_sym_LBRACE] = ACTIONS(1311), + [anon_sym_delegate] = ACTIONS(1313), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1731), + [anon_sym_new] = ACTIONS(1879), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1639), - [anon_sym_BANG] = ACTIONS(1735), - [anon_sym_TILDE] = ACTIONS(1735), - [anon_sym_PLUS_PLUS] = ACTIONS(1735), - [anon_sym_DASH_DASH] = ACTIONS(1735), - [anon_sym_true] = ACTIONS(1645), - [anon_sym_false] = ACTIONS(1645), - [anon_sym_PLUS] = ACTIONS(1733), - [anon_sym_DASH] = ACTIONS(1733), - [anon_sym_STAR] = ACTIONS(1737), - [anon_sym_CARET] = ACTIONS(1735), - [anon_sym_AMP] = ACTIONS(1735), - [anon_sym_this] = ACTIONS(1649), + [anon_sym_checked] = ACTIONS(1317), + [anon_sym_BANG] = ACTIONS(1883), + [anon_sym_TILDE] = ACTIONS(1883), + [anon_sym_PLUS_PLUS] = ACTIONS(1883), + [anon_sym_DASH_DASH] = ACTIONS(1883), + [anon_sym_true] = ACTIONS(77), + [anon_sym_false] = ACTIONS(77), + [anon_sym_PLUS] = ACTIONS(1881), + [anon_sym_DASH] = ACTIONS(1881), + [anon_sym_STAR] = ACTIONS(1885), + [anon_sym_CARET] = ACTIONS(1883), + [anon_sym_AMP] = ACTIONS(1883), + [anon_sym_this] = ACTIONS(1321), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1651), + [anon_sym_base] = ACTIONS(1323), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1653), - [anon_sym_unchecked] = ACTIONS(1639), + [sym_predefined_type] = ACTIONS(91), + [anon_sym_unchecked] = ACTIONS(1317), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1655), - [anon_sym_throw] = ACTIONS(1739), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(1887), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1741), - [anon_sym_DOT_DOT] = ACTIONS(1743), + [anon_sym_await] = ACTIONS(1889), + [anon_sym_DOT_DOT] = ACTIONS(1891), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -309777,19 +309663,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1663), - [anon_sym_sizeof] = ACTIONS(1665), - [anon_sym_typeof] = ACTIONS(1667), - [anon_sym___makeref] = ACTIONS(1669), - [anon_sym___reftype] = ACTIONS(1671), - [anon_sym___refvalue] = ACTIONS(1673), - [sym_null_literal] = ACTIONS(1675), - [anon_sym_SQUOTE] = ACTIONS(1677), - [sym_integer_literal] = ACTIONS(1675), - [sym_real_literal] = ACTIONS(1679), - [anon_sym_DQUOTE] = ACTIONS(1681), - [sym_verbatim_string_literal] = ACTIONS(1679), - [aux_sym_preproc_if_token1] = ACTIONS(1683), + [anon_sym_stackalloc] = ACTIONS(1331), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(1333), + [anon_sym___reftype] = ACTIONS(1335), + [anon_sym___refvalue] = ACTIONS(1337), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_literal] = ACTIONS(143), + [anon_sym_DQUOTE] = ACTIONS(145), + [sym_verbatim_string_literal] = ACTIONS(143), + [aux_sym_preproc_if_token1] = ACTIONS(1339), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -309800,90 +309686,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1685), - [sym_interpolation_verbatim_start] = ACTIONS(1687), - [sym_interpolation_raw_start] = ACTIONS(1689), - [sym_raw_string_start] = ACTIONS(1691), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [sym_interpolation_raw_start] = ACTIONS(155), + [sym_raw_string_start] = ACTIONS(157), }, [1586] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2914), - [sym__name] = STATE(5885), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2357), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(3585), - [sym_non_lvalue_expression] = STATE(3880), - [sym_lvalue_expression] = STATE(2911), - [sym__expression_statement_expression] = STATE(3873), - [sym_assignment_expression] = STATE(3881), - [sym_binary_expression] = STATE(3873), - [sym_postfix_unary_expression] = STATE(3881), - [sym_prefix_unary_expression] = STATE(3881), - [sym__pointer_indirection_expression] = STATE(2913), - [sym_query_expression] = STATE(3873), - [sym_from_clause] = STATE(6182), - [sym_conditional_expression] = STATE(3873), - [sym_conditional_access_expression] = STATE(3873), - [sym_as_expression] = STATE(3873), - [sym_is_expression] = STATE(3873), - [sym_is_pattern_expression] = STATE(3873), - [sym_cast_expression] = STATE(3873), - [sym_checked_expression] = STATE(3873), - [sym_invocation_expression] = STATE(3881), - [sym_switch_expression] = STATE(3873), - [sym_await_expression] = STATE(3881), - [sym_throw_expression] = STATE(3873), - [sym_element_access_expression] = STATE(2913), - [sym_interpolated_string_expression] = STATE(3873), - [sym_member_access_expression] = STATE(2913), - [sym_object_creation_expression] = STATE(3881), - [sym_parenthesized_expression] = STATE(3881), - [sym__parenthesized_lvalue_expression] = STATE(2913), - [sym_lambda_expression] = STATE(3873), - [sym__lambda_expression_init] = STATE(7316), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3873), - [sym_anonymous_method_expression] = STATE(3873), - [sym_anonymous_object_creation_expression] = STATE(3873), - [sym_implicit_array_creation_expression] = STATE(3873), - [sym_implicit_object_creation_expression] = STATE(3873), - [sym_implicit_stackalloc_expression] = STATE(3873), - [sym_initializer_expression] = STATE(3873), - [sym_default_expression] = STATE(3873), - [sym_with_expression] = STATE(3873), - [sym_sizeof_expression] = STATE(3873), - [sym_typeof_expression] = STATE(3873), - [sym_makeref_expression] = STATE(3873), - [sym_ref_expression] = STATE(3873), - [sym_reftype_expression] = STATE(3873), - [sym_refvalue_expression] = STATE(3873), - [sym_stackalloc_expression] = STATE(3873), - [sym_range_expression] = STATE(3873), - [sym_tuple_expression] = STATE(2913), - [sym_literal] = STATE(3873), - [sym_character_literal] = STATE(3877), - [sym_string_literal] = STATE(3877), - [sym_raw_string_literal] = STATE(3877), - [sym_boolean_literal] = STATE(3877), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3873), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2416), + [sym__name] = STATE(5890), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2193), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(5662), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(2417), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3102), + [sym_postfix_unary_expression] = STATE(3079), + [sym_prefix_unary_expression] = STATE(3079), + [sym__pointer_indirection_expression] = STATE(2415), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6134), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3102), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3079), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2415), + [sym_interpolated_string_expression] = STATE(3102), + [sym_member_access_expression] = STATE(2415), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3079), + [sym__parenthesized_lvalue_expression] = STATE(2415), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7425), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(3102), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3102), + [sym_typeof_expression] = STATE(3102), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2415), + [sym_literal] = STATE(3102), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2261), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(1586), [sym_preproc_endregion] = STATE(1586), [sym_preproc_line] = STATE(1586), @@ -309893,47 +309779,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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3382), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1627), - [anon_sym_LPAREN] = ACTIONS(1727), - [anon_sym_ref] = ACTIONS(1729), - [anon_sym_LBRACE] = ACTIONS(1633), - [anon_sym_delegate] = ACTIONS(1635), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1239), + [anon_sym_LPAREN] = ACTIONS(2943), + [anon_sym_ref] = ACTIONS(715), + [anon_sym_LBRACE] = ACTIONS(1481), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1731), + [anon_sym_new] = ACTIONS(1059), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1639), - [anon_sym_BANG] = ACTIONS(1735), - [anon_sym_TILDE] = ACTIONS(1735), - [anon_sym_PLUS_PLUS] = ACTIONS(1735), - [anon_sym_DASH_DASH] = ACTIONS(1735), - [anon_sym_true] = ACTIONS(1645), - [anon_sym_false] = ACTIONS(1645), - [anon_sym_PLUS] = ACTIONS(1733), - [anon_sym_DASH] = ACTIONS(1733), - [anon_sym_STAR] = ACTIONS(1737), - [anon_sym_CARET] = ACTIONS(1735), - [anon_sym_AMP] = ACTIONS(1735), - [anon_sym_this] = ACTIONS(1649), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(1525), + [anon_sym_TILDE] = ACTIONS(1525), + [anon_sym_PLUS_PLUS] = ACTIONS(1525), + [anon_sym_DASH_DASH] = ACTIONS(1525), + [anon_sym_true] = ACTIONS(77), + [anon_sym_false] = ACTIONS(77), + [anon_sym_PLUS] = ACTIONS(1523), + [anon_sym_DASH] = ACTIONS(1523), + [anon_sym_STAR] = ACTIONS(1957), + [anon_sym_CARET] = ACTIONS(1525), + [anon_sym_AMP] = ACTIONS(1525), + [anon_sym_this] = ACTIONS(1261), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1651), + [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1653), - [anon_sym_unchecked] = ACTIONS(1639), + [sym_predefined_type] = ACTIONS(1265), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1655), - [anon_sym_throw] = ACTIONS(1739), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(1527), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1741), - [anon_sym_DOT_DOT] = ACTIONS(1743), + [anon_sym_await] = ACTIONS(1529), + [anon_sym_DOT_DOT] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -309946,19 +309832,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1663), - [anon_sym_sizeof] = ACTIONS(1665), - [anon_sym_typeof] = ACTIONS(1667), - [anon_sym___makeref] = ACTIONS(1669), - [anon_sym___reftype] = ACTIONS(1671), - [anon_sym___refvalue] = ACTIONS(1673), - [sym_null_literal] = ACTIONS(1675), - [anon_sym_SQUOTE] = ACTIONS(1677), - [sym_integer_literal] = ACTIONS(1675), - [sym_real_literal] = ACTIONS(1679), - [anon_sym_DQUOTE] = ACTIONS(1681), - [sym_verbatim_string_literal] = ACTIONS(1679), - [aux_sym_preproc_if_token1] = ACTIONS(1683), + [anon_sym_stackalloc] = ACTIONS(127), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_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), @@ -309969,90 +309855,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1685), - [sym_interpolation_verbatim_start] = ACTIONS(1687), - [sym_interpolation_raw_start] = ACTIONS(1689), - [sym_raw_string_start] = ACTIONS(1691), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [sym_interpolation_raw_start] = ACTIONS(155), + [sym_raw_string_start] = ACTIONS(157), }, [1587] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2914), - [sym__name] = STATE(5885), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2357), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(3590), - [sym_non_lvalue_expression] = STATE(3880), - [sym_lvalue_expression] = STATE(2911), - [sym__expression_statement_expression] = STATE(3873), - [sym_assignment_expression] = STATE(3881), - [sym_binary_expression] = STATE(3873), - [sym_postfix_unary_expression] = STATE(3881), - [sym_prefix_unary_expression] = STATE(3881), - [sym__pointer_indirection_expression] = STATE(2913), - [sym_query_expression] = STATE(3873), - [sym_from_clause] = STATE(6182), - [sym_conditional_expression] = STATE(3873), - [sym_conditional_access_expression] = STATE(3873), - [sym_as_expression] = STATE(3873), - [sym_is_expression] = STATE(3873), - [sym_is_pattern_expression] = STATE(3873), - [sym_cast_expression] = STATE(3873), - [sym_checked_expression] = STATE(3873), - [sym_invocation_expression] = STATE(3881), - [sym_switch_expression] = STATE(3873), - [sym_await_expression] = STATE(3881), - [sym_throw_expression] = STATE(3873), - [sym_element_access_expression] = STATE(2913), - [sym_interpolated_string_expression] = STATE(3873), - [sym_member_access_expression] = STATE(2913), - [sym_object_creation_expression] = STATE(3881), - [sym_parenthesized_expression] = STATE(3881), - [sym__parenthesized_lvalue_expression] = STATE(2913), - [sym_lambda_expression] = STATE(3873), - [sym__lambda_expression_init] = STATE(7316), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3873), - [sym_anonymous_method_expression] = STATE(3873), - [sym_anonymous_object_creation_expression] = STATE(3873), - [sym_implicit_array_creation_expression] = STATE(3873), - [sym_implicit_object_creation_expression] = STATE(3873), - [sym_implicit_stackalloc_expression] = STATE(3873), - [sym_initializer_expression] = STATE(3873), - [sym_default_expression] = STATE(3873), - [sym_with_expression] = STATE(3873), - [sym_sizeof_expression] = STATE(3873), - [sym_typeof_expression] = STATE(3873), - [sym_makeref_expression] = STATE(3873), - [sym_ref_expression] = STATE(3873), - [sym_reftype_expression] = STATE(3873), - [sym_refvalue_expression] = STATE(3873), - [sym_stackalloc_expression] = STATE(3873), - [sym_range_expression] = STATE(3873), - [sym_tuple_expression] = STATE(2913), - [sym_literal] = STATE(3873), - [sym_character_literal] = STATE(3877), - [sym_string_literal] = STATE(3877), - [sym_raw_string_literal] = STATE(3877), - [sym_boolean_literal] = STATE(3877), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3873), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2416), + [sym__name] = STATE(5868), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2387), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(2902), + [sym_non_lvalue_expression] = STATE(3040), + [sym_lvalue_expression] = STATE(3634), + [sym__expression_statement_expression] = STATE(3035), + [sym_assignment_expression] = STATE(3043), + [sym_binary_expression] = STATE(3035), + [sym_postfix_unary_expression] = STATE(3043), + [sym_prefix_unary_expression] = STATE(3043), + [sym__pointer_indirection_expression] = STATE(2415), + [sym_query_expression] = STATE(3035), + [sym_from_clause] = STATE(6130), + [sym_conditional_expression] = STATE(3035), + [sym_conditional_access_expression] = STATE(3035), + [sym_as_expression] = STATE(3035), + [sym_is_expression] = STATE(3035), + [sym_is_pattern_expression] = STATE(3035), + [sym_cast_expression] = STATE(3035), + [sym_checked_expression] = STATE(3035), + [sym_invocation_expression] = STATE(3043), + [sym_switch_expression] = STATE(3035), + [sym_await_expression] = STATE(3043), + [sym_throw_expression] = STATE(3035), + [sym_element_access_expression] = STATE(2415), + [sym_interpolated_string_expression] = STATE(3035), + [sym_member_access_expression] = STATE(2415), + [sym_object_creation_expression] = STATE(3043), + [sym_parenthesized_expression] = STATE(3043), + [sym__parenthesized_lvalue_expression] = STATE(2415), + [sym_lambda_expression] = STATE(3035), + [sym__lambda_expression_init] = STATE(7324), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3035), + [sym_anonymous_method_expression] = STATE(3035), + [sym_anonymous_object_creation_expression] = STATE(3035), + [sym_implicit_array_creation_expression] = STATE(3035), + [sym_implicit_object_creation_expression] = STATE(3035), + [sym_implicit_stackalloc_expression] = STATE(3035), + [sym_initializer_expression] = STATE(3035), + [sym_default_expression] = STATE(3035), + [sym_with_expression] = STATE(3035), + [sym_sizeof_expression] = STATE(3035), + [sym_typeof_expression] = STATE(3035), + [sym_makeref_expression] = STATE(3035), + [sym_ref_expression] = STATE(3035), + [sym_reftype_expression] = STATE(3035), + [sym_refvalue_expression] = STATE(3035), + [sym_stackalloc_expression] = STATE(3035), + [sym_range_expression] = STATE(3035), + [sym_tuple_expression] = STATE(2415), + [sym_literal] = STATE(3035), + [sym_character_literal] = STATE(3037), + [sym_string_literal] = STATE(3037), + [sym_raw_string_literal] = STATE(3037), + [sym_boolean_literal] = STATE(3037), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3035), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(1587), [sym_preproc_endregion] = STATE(1587), [sym_preproc_line] = STATE(1587), @@ -310062,47 +309948,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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3382), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3455), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1627), - [anon_sym_LPAREN] = ACTIONS(1727), - [anon_sym_ref] = ACTIONS(1729), - [anon_sym_LBRACE] = ACTIONS(1633), - [anon_sym_delegate] = ACTIONS(1635), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1239), + [anon_sym_LPAREN] = ACTIONS(2281), + [anon_sym_ref] = ACTIONS(2283), + [anon_sym_LBRACE] = ACTIONS(1245), + [anon_sym_delegate] = ACTIONS(1247), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1731), + [anon_sym_new] = ACTIONS(2285), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1639), - [anon_sym_BANG] = ACTIONS(1735), - [anon_sym_TILDE] = ACTIONS(1735), - [anon_sym_PLUS_PLUS] = ACTIONS(1735), - [anon_sym_DASH_DASH] = ACTIONS(1735), - [anon_sym_true] = ACTIONS(1645), - [anon_sym_false] = ACTIONS(1645), - [anon_sym_PLUS] = ACTIONS(1733), - [anon_sym_DASH] = ACTIONS(1733), - [anon_sym_STAR] = ACTIONS(1737), - [anon_sym_CARET] = ACTIONS(1735), - [anon_sym_AMP] = ACTIONS(1735), - [anon_sym_this] = ACTIONS(1649), + [anon_sym_checked] = ACTIONS(1251), + [anon_sym_BANG] = ACTIONS(2289), + [anon_sym_TILDE] = ACTIONS(2289), + [anon_sym_PLUS_PLUS] = ACTIONS(2289), + [anon_sym_DASH_DASH] = ACTIONS(2289), + [anon_sym_true] = ACTIONS(1257), + [anon_sym_false] = ACTIONS(1257), + [anon_sym_PLUS] = ACTIONS(2287), + [anon_sym_DASH] = ACTIONS(2287), + [anon_sym_STAR] = ACTIONS(2291), + [anon_sym_CARET] = ACTIONS(2289), + [anon_sym_AMP] = ACTIONS(2289), + [anon_sym_this] = ACTIONS(1261), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1651), + [anon_sym_base] = ACTIONS(1263), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1653), - [anon_sym_unchecked] = ACTIONS(1639), + [sym_predefined_type] = ACTIONS(1265), + [anon_sym_unchecked] = ACTIONS(1251), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1655), - [anon_sym_throw] = ACTIONS(1739), + [anon_sym_default] = ACTIONS(1267), + [anon_sym_throw] = ACTIONS(2293), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1741), - [anon_sym_DOT_DOT] = ACTIONS(1743), + [anon_sym_await] = ACTIONS(2295), + [anon_sym_DOT_DOT] = ACTIONS(2297), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -310115,19 +310001,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1663), - [anon_sym_sizeof] = ACTIONS(1665), - [anon_sym_typeof] = ACTIONS(1667), - [anon_sym___makeref] = ACTIONS(1669), - [anon_sym___reftype] = ACTIONS(1671), - [anon_sym___refvalue] = ACTIONS(1673), - [sym_null_literal] = ACTIONS(1675), - [anon_sym_SQUOTE] = ACTIONS(1677), - [sym_integer_literal] = ACTIONS(1675), - [sym_real_literal] = ACTIONS(1679), - [anon_sym_DQUOTE] = ACTIONS(1681), - [sym_verbatim_string_literal] = ACTIONS(1679), - [aux_sym_preproc_if_token1] = ACTIONS(1683), + [anon_sym_stackalloc] = ACTIONS(1275), + [anon_sym_sizeof] = ACTIONS(1277), + [anon_sym_typeof] = ACTIONS(1279), + [anon_sym___makeref] = ACTIONS(1281), + [anon_sym___reftype] = ACTIONS(1283), + [anon_sym___refvalue] = ACTIONS(1285), + [sym_null_literal] = ACTIONS(1287), + [anon_sym_SQUOTE] = ACTIONS(1289), + [sym_integer_literal] = ACTIONS(1287), + [sym_real_literal] = ACTIONS(1291), + [anon_sym_DQUOTE] = ACTIONS(1293), + [sym_verbatim_string_literal] = ACTIONS(1291), + [aux_sym_preproc_if_token1] = ACTIONS(1295), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -310138,90 +310024,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1685), - [sym_interpolation_verbatim_start] = ACTIONS(1687), - [sym_interpolation_raw_start] = ACTIONS(1689), - [sym_raw_string_start] = ACTIONS(1691), + [sym_interpolation_regular_start] = ACTIONS(1297), + [sym_interpolation_verbatim_start] = ACTIONS(1299), + [sym_interpolation_raw_start] = ACTIONS(1301), + [sym_raw_string_start] = ACTIONS(1303), }, [1588] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2914), - [sym__name] = STATE(5885), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2357), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(3592), - [sym_non_lvalue_expression] = STATE(3880), - [sym_lvalue_expression] = STATE(2911), - [sym__expression_statement_expression] = STATE(3873), - [sym_assignment_expression] = STATE(3881), - [sym_binary_expression] = STATE(3873), - [sym_postfix_unary_expression] = STATE(3881), - [sym_prefix_unary_expression] = STATE(3881), - [sym__pointer_indirection_expression] = STATE(2913), - [sym_query_expression] = STATE(3873), - [sym_from_clause] = STATE(6182), - [sym_conditional_expression] = STATE(3873), - [sym_conditional_access_expression] = STATE(3873), - [sym_as_expression] = STATE(3873), - [sym_is_expression] = STATE(3873), - [sym_is_pattern_expression] = STATE(3873), - [sym_cast_expression] = STATE(3873), - [sym_checked_expression] = STATE(3873), - [sym_invocation_expression] = STATE(3881), - [sym_switch_expression] = STATE(3873), - [sym_await_expression] = STATE(3881), - [sym_throw_expression] = STATE(3873), - [sym_element_access_expression] = STATE(2913), - [sym_interpolated_string_expression] = STATE(3873), - [sym_member_access_expression] = STATE(2913), - [sym_object_creation_expression] = STATE(3881), - [sym_parenthesized_expression] = STATE(3881), - [sym__parenthesized_lvalue_expression] = STATE(2913), - [sym_lambda_expression] = STATE(3873), - [sym__lambda_expression_init] = STATE(7316), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3873), - [sym_anonymous_method_expression] = STATE(3873), - [sym_anonymous_object_creation_expression] = STATE(3873), - [sym_implicit_array_creation_expression] = STATE(3873), - [sym_implicit_object_creation_expression] = STATE(3873), - [sym_implicit_stackalloc_expression] = STATE(3873), - [sym_initializer_expression] = STATE(3873), - [sym_default_expression] = STATE(3873), - [sym_with_expression] = STATE(3873), - [sym_sizeof_expression] = STATE(3873), - [sym_typeof_expression] = STATE(3873), - [sym_makeref_expression] = STATE(3873), - [sym_ref_expression] = STATE(3873), - [sym_reftype_expression] = STATE(3873), - [sym_refvalue_expression] = STATE(3873), - [sym_stackalloc_expression] = STATE(3873), - [sym_range_expression] = STATE(3873), - [sym_tuple_expression] = STATE(2913), - [sym_literal] = STATE(3873), - [sym_character_literal] = STATE(3877), - [sym_string_literal] = STATE(3877), - [sym_raw_string_literal] = STATE(3877), - [sym_boolean_literal] = STATE(3877), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3873), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2816), + [sym__name] = STATE(5895), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2376), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(5697), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(2830), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3102), + [sym_postfix_unary_expression] = STATE(3079), + [sym_prefix_unary_expression] = STATE(3079), + [sym__pointer_indirection_expression] = STATE(2815), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6134), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3102), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3079), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2815), + [sym_interpolated_string_expression] = STATE(3102), + [sym_member_access_expression] = STATE(2815), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3079), + [sym__parenthesized_lvalue_expression] = STATE(2815), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7425), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(3102), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3102), + [sym_typeof_expression] = STATE(3102), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2815), + [sym_literal] = STATE(3102), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(1588), [sym_preproc_endregion] = STATE(1588), [sym_preproc_line] = STATE(1588), @@ -310231,47 +310117,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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3382), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1627), - [anon_sym_LPAREN] = ACTIONS(1727), - [anon_sym_ref] = ACTIONS(1729), - [anon_sym_LBRACE] = ACTIONS(1633), - [anon_sym_delegate] = ACTIONS(1635), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1305), + [anon_sym_LPAREN] = ACTIONS(2945), + [anon_sym_ref] = ACTIONS(715), + [anon_sym_LBRACE] = ACTIONS(1481), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1731), + [anon_sym_new] = ACTIONS(1059), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1639), - [anon_sym_BANG] = ACTIONS(1735), - [anon_sym_TILDE] = ACTIONS(1735), - [anon_sym_PLUS_PLUS] = ACTIONS(1735), - [anon_sym_DASH_DASH] = ACTIONS(1735), - [anon_sym_true] = ACTIONS(1645), - [anon_sym_false] = ACTIONS(1645), - [anon_sym_PLUS] = ACTIONS(1733), - [anon_sym_DASH] = ACTIONS(1733), - [anon_sym_STAR] = ACTIONS(1737), - [anon_sym_CARET] = ACTIONS(1735), - [anon_sym_AMP] = ACTIONS(1735), - [anon_sym_this] = ACTIONS(1649), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(1525), + [anon_sym_TILDE] = ACTIONS(1525), + [anon_sym_PLUS_PLUS] = ACTIONS(1525), + [anon_sym_DASH_DASH] = ACTIONS(1525), + [anon_sym_true] = ACTIONS(77), + [anon_sym_false] = ACTIONS(77), + [anon_sym_PLUS] = ACTIONS(1523), + [anon_sym_DASH] = ACTIONS(1523), + [anon_sym_STAR] = ACTIONS(1813), + [anon_sym_CARET] = ACTIONS(1525), + [anon_sym_AMP] = ACTIONS(1525), + [anon_sym_this] = ACTIONS(1321), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1651), + [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1653), - [anon_sym_unchecked] = ACTIONS(1639), + [sym_predefined_type] = ACTIONS(91), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1655), - [anon_sym_throw] = ACTIONS(1739), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(1527), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1741), - [anon_sym_DOT_DOT] = ACTIONS(1743), + [anon_sym_await] = ACTIONS(1529), + [anon_sym_DOT_DOT] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -310284,19 +310170,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1663), - [anon_sym_sizeof] = ACTIONS(1665), - [anon_sym_typeof] = ACTIONS(1667), - [anon_sym___makeref] = ACTIONS(1669), - [anon_sym___reftype] = ACTIONS(1671), - [anon_sym___refvalue] = ACTIONS(1673), - [sym_null_literal] = ACTIONS(1675), - [anon_sym_SQUOTE] = ACTIONS(1677), - [sym_integer_literal] = ACTIONS(1675), - [sym_real_literal] = ACTIONS(1679), - [anon_sym_DQUOTE] = ACTIONS(1681), - [sym_verbatim_string_literal] = ACTIONS(1679), - [aux_sym_preproc_if_token1] = ACTIONS(1683), + [anon_sym_stackalloc] = ACTIONS(127), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_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), @@ -310307,90 +310193,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1685), - [sym_interpolation_verbatim_start] = ACTIONS(1687), - [sym_interpolation_raw_start] = ACTIONS(1689), - [sym_raw_string_start] = ACTIONS(1691), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [sym_interpolation_raw_start] = ACTIONS(155), + [sym_raw_string_start] = ACTIONS(157), }, [1589] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2914), - [sym__name] = STATE(5885), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2357), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(3604), - [sym_non_lvalue_expression] = STATE(3880), - [sym_lvalue_expression] = STATE(2911), - [sym__expression_statement_expression] = STATE(3873), - [sym_assignment_expression] = STATE(3881), - [sym_binary_expression] = STATE(3873), - [sym_postfix_unary_expression] = STATE(3881), - [sym_prefix_unary_expression] = STATE(3881), - [sym__pointer_indirection_expression] = STATE(2913), - [sym_query_expression] = STATE(3873), - [sym_from_clause] = STATE(6182), - [sym_conditional_expression] = STATE(3873), - [sym_conditional_access_expression] = STATE(3873), - [sym_as_expression] = STATE(3873), - [sym_is_expression] = STATE(3873), - [sym_is_pattern_expression] = STATE(3873), - [sym_cast_expression] = STATE(3873), - [sym_checked_expression] = STATE(3873), - [sym_invocation_expression] = STATE(3881), - [sym_switch_expression] = STATE(3873), - [sym_await_expression] = STATE(3881), - [sym_throw_expression] = STATE(3873), - [sym_element_access_expression] = STATE(2913), - [sym_interpolated_string_expression] = STATE(3873), - [sym_member_access_expression] = STATE(2913), - [sym_object_creation_expression] = STATE(3881), - [sym_parenthesized_expression] = STATE(3881), - [sym__parenthesized_lvalue_expression] = STATE(2913), - [sym_lambda_expression] = STATE(3873), - [sym__lambda_expression_init] = STATE(7316), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3873), - [sym_anonymous_method_expression] = STATE(3873), - [sym_anonymous_object_creation_expression] = STATE(3873), - [sym_implicit_array_creation_expression] = STATE(3873), - [sym_implicit_object_creation_expression] = STATE(3873), - [sym_implicit_stackalloc_expression] = STATE(3873), - [sym_initializer_expression] = STATE(3873), - [sym_default_expression] = STATE(3873), - [sym_with_expression] = STATE(3873), - [sym_sizeof_expression] = STATE(3873), - [sym_typeof_expression] = STATE(3873), - [sym_makeref_expression] = STATE(3873), - [sym_ref_expression] = STATE(3873), - [sym_reftype_expression] = STATE(3873), - [sym_refvalue_expression] = STATE(3873), - [sym_stackalloc_expression] = STATE(3873), - [sym_range_expression] = STATE(3873), - [sym_tuple_expression] = STATE(2913), - [sym_literal] = STATE(3873), - [sym_character_literal] = STATE(3877), - [sym_string_literal] = STATE(3877), - [sym_raw_string_literal] = STATE(3877), - [sym_boolean_literal] = STATE(3877), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3873), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2603), + [sym__name] = STATE(5869), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2367), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(3136), + [sym_non_lvalue_expression] = STATE(3220), + [sym_lvalue_expression] = STATE(3377), + [sym__expression_statement_expression] = STATE(3236), + [sym_assignment_expression] = STATE(3221), + [sym_binary_expression] = STATE(3236), + [sym_postfix_unary_expression] = STATE(3221), + [sym_prefix_unary_expression] = STATE(3221), + [sym__pointer_indirection_expression] = STATE(2602), + [sym_query_expression] = STATE(3236), + [sym_from_clause] = STATE(6128), + [sym_conditional_expression] = STATE(3236), + [sym_conditional_access_expression] = STATE(3236), + [sym_as_expression] = STATE(3236), + [sym_is_expression] = STATE(3236), + [sym_is_pattern_expression] = STATE(3236), + [sym_cast_expression] = STATE(3236), + [sym_checked_expression] = STATE(3236), + [sym_invocation_expression] = STATE(3221), + [sym_switch_expression] = STATE(3236), + [sym_await_expression] = STATE(3221), + [sym_throw_expression] = STATE(3236), + [sym_element_access_expression] = STATE(2602), + [sym_interpolated_string_expression] = STATE(3236), + [sym_member_access_expression] = STATE(2602), + [sym_object_creation_expression] = STATE(3221), + [sym_parenthesized_expression] = STATE(3221), + [sym__parenthesized_lvalue_expression] = STATE(2602), + [sym_lambda_expression] = STATE(3236), + [sym__lambda_expression_init] = STATE(7632), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3236), + [sym_anonymous_method_expression] = STATE(3236), + [sym_anonymous_object_creation_expression] = STATE(3236), + [sym_implicit_array_creation_expression] = STATE(3236), + [sym_implicit_object_creation_expression] = STATE(3236), + [sym_implicit_stackalloc_expression] = STATE(3236), + [sym_initializer_expression] = STATE(3236), + [sym_default_expression] = STATE(3236), + [sym_with_expression] = STATE(3236), + [sym_sizeof_expression] = STATE(3236), + [sym_typeof_expression] = STATE(3236), + [sym_makeref_expression] = STATE(3236), + [sym_ref_expression] = STATE(3236), + [sym_reftype_expression] = STATE(3236), + [sym_refvalue_expression] = STATE(3236), + [sym_stackalloc_expression] = STATE(3236), + [sym_range_expression] = STATE(3236), + [sym_tuple_expression] = STATE(2602), + [sym_literal] = STATE(3236), + [sym_character_literal] = STATE(3272), + [sym_string_literal] = STATE(3272), + [sym_raw_string_literal] = STATE(3272), + [sym_boolean_literal] = STATE(3272), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3236), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(1589), [sym_preproc_endregion] = STATE(1589), [sym_preproc_line] = STATE(1589), @@ -310400,47 +310286,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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3382), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3379), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1627), - [anon_sym_LPAREN] = ACTIONS(1727), - [anon_sym_ref] = ACTIONS(1729), - [anon_sym_LBRACE] = ACTIONS(1633), - [anon_sym_delegate] = ACTIONS(1635), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1149), + [anon_sym_LPAREN] = ACTIONS(1913), + [anon_sym_ref] = ACTIONS(1915), + [anon_sym_LBRACE] = ACTIONS(1155), + [anon_sym_delegate] = ACTIONS(1157), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1731), + [anon_sym_new] = ACTIONS(1917), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1639), - [anon_sym_BANG] = ACTIONS(1735), - [anon_sym_TILDE] = ACTIONS(1735), - [anon_sym_PLUS_PLUS] = ACTIONS(1735), - [anon_sym_DASH_DASH] = ACTIONS(1735), - [anon_sym_true] = ACTIONS(1645), - [anon_sym_false] = ACTIONS(1645), - [anon_sym_PLUS] = ACTIONS(1733), - [anon_sym_DASH] = ACTIONS(1733), - [anon_sym_STAR] = ACTIONS(1737), - [anon_sym_CARET] = ACTIONS(1735), - [anon_sym_AMP] = ACTIONS(1735), - [anon_sym_this] = ACTIONS(1649), + [anon_sym_checked] = ACTIONS(1163), + [anon_sym_BANG] = ACTIONS(1921), + [anon_sym_TILDE] = ACTIONS(1921), + [anon_sym_PLUS_PLUS] = ACTIONS(1921), + [anon_sym_DASH_DASH] = ACTIONS(1921), + [anon_sym_true] = ACTIONS(1169), + [anon_sym_false] = ACTIONS(1169), + [anon_sym_PLUS] = ACTIONS(1919), + [anon_sym_DASH] = ACTIONS(1919), + [anon_sym_STAR] = ACTIONS(1923), + [anon_sym_CARET] = ACTIONS(1921), + [anon_sym_AMP] = ACTIONS(1921), + [anon_sym_this] = ACTIONS(1173), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1651), + [anon_sym_base] = ACTIONS(1175), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1653), - [anon_sym_unchecked] = ACTIONS(1639), + [sym_predefined_type] = ACTIONS(1177), + [anon_sym_unchecked] = ACTIONS(1163), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1655), - [anon_sym_throw] = ACTIONS(1739), + [anon_sym_default] = ACTIONS(1179), + [anon_sym_throw] = ACTIONS(1925), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1741), - [anon_sym_DOT_DOT] = ACTIONS(1743), + [anon_sym_await] = ACTIONS(1927), + [anon_sym_DOT_DOT] = ACTIONS(1929), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -310453,19 +310339,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1663), - [anon_sym_sizeof] = ACTIONS(1665), - [anon_sym_typeof] = ACTIONS(1667), - [anon_sym___makeref] = ACTIONS(1669), - [anon_sym___reftype] = ACTIONS(1671), - [anon_sym___refvalue] = ACTIONS(1673), - [sym_null_literal] = ACTIONS(1675), - [anon_sym_SQUOTE] = ACTIONS(1677), - [sym_integer_literal] = ACTIONS(1675), - [sym_real_literal] = ACTIONS(1679), - [anon_sym_DQUOTE] = ACTIONS(1681), - [sym_verbatim_string_literal] = ACTIONS(1679), - [aux_sym_preproc_if_token1] = ACTIONS(1683), + [anon_sym_stackalloc] = ACTIONS(1187), + [anon_sym_sizeof] = ACTIONS(1189), + [anon_sym_typeof] = ACTIONS(1191), + [anon_sym___makeref] = ACTIONS(1193), + [anon_sym___reftype] = ACTIONS(1195), + [anon_sym___refvalue] = ACTIONS(1197), + [sym_null_literal] = ACTIONS(1199), + [anon_sym_SQUOTE] = ACTIONS(1201), + [sym_integer_literal] = ACTIONS(1199), + [sym_real_literal] = ACTIONS(1203), + [anon_sym_DQUOTE] = ACTIONS(1205), + [sym_verbatim_string_literal] = ACTIONS(1203), + [aux_sym_preproc_if_token1] = ACTIONS(1207), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -310476,90 +310362,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1685), - [sym_interpolation_verbatim_start] = ACTIONS(1687), - [sym_interpolation_raw_start] = ACTIONS(1689), - [sym_raw_string_start] = ACTIONS(1691), + [sym_interpolation_regular_start] = ACTIONS(1209), + [sym_interpolation_verbatim_start] = ACTIONS(1211), + [sym_interpolation_raw_start] = ACTIONS(1213), + [sym_raw_string_start] = ACTIONS(1215), }, [1590] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2914), - [sym__name] = STATE(5885), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2357), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(3629), - [sym_non_lvalue_expression] = STATE(3880), - [sym_lvalue_expression] = STATE(2911), - [sym__expression_statement_expression] = STATE(3873), - [sym_assignment_expression] = STATE(3881), - [sym_binary_expression] = STATE(3873), - [sym_postfix_unary_expression] = STATE(3881), - [sym_prefix_unary_expression] = STATE(3881), - [sym__pointer_indirection_expression] = STATE(2913), - [sym_query_expression] = STATE(3873), - [sym_from_clause] = STATE(6182), - [sym_conditional_expression] = STATE(3873), - [sym_conditional_access_expression] = STATE(3873), - [sym_as_expression] = STATE(3873), - [sym_is_expression] = STATE(3873), - [sym_is_pattern_expression] = STATE(3873), - [sym_cast_expression] = STATE(3873), - [sym_checked_expression] = STATE(3873), - [sym_invocation_expression] = STATE(3881), - [sym_switch_expression] = STATE(3873), - [sym_await_expression] = STATE(3881), - [sym_throw_expression] = STATE(3873), - [sym_element_access_expression] = STATE(2913), - [sym_interpolated_string_expression] = STATE(3873), - [sym_member_access_expression] = STATE(2913), - [sym_object_creation_expression] = STATE(3881), - [sym_parenthesized_expression] = STATE(3881), - [sym__parenthesized_lvalue_expression] = STATE(2913), - [sym_lambda_expression] = STATE(3873), - [sym__lambda_expression_init] = STATE(7316), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3873), - [sym_anonymous_method_expression] = STATE(3873), - [sym_anonymous_object_creation_expression] = STATE(3873), - [sym_implicit_array_creation_expression] = STATE(3873), - [sym_implicit_object_creation_expression] = STATE(3873), - [sym_implicit_stackalloc_expression] = STATE(3873), - [sym_initializer_expression] = STATE(3873), - [sym_default_expression] = STATE(3873), - [sym_with_expression] = STATE(3873), - [sym_sizeof_expression] = STATE(3873), - [sym_typeof_expression] = STATE(3873), - [sym_makeref_expression] = STATE(3873), - [sym_ref_expression] = STATE(3873), - [sym_reftype_expression] = STATE(3873), - [sym_refvalue_expression] = STATE(3873), - [sym_stackalloc_expression] = STATE(3873), - [sym_range_expression] = STATE(3873), - [sym_tuple_expression] = STATE(2913), - [sym_literal] = STATE(3873), - [sym_character_literal] = STATE(3877), - [sym_string_literal] = STATE(3877), - [sym_raw_string_literal] = STATE(3877), - [sym_boolean_literal] = STATE(3877), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3873), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2816), + [sym__name] = STATE(5896), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2362), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(5697), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(2830), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3102), + [sym_postfix_unary_expression] = STATE(3079), + [sym_prefix_unary_expression] = STATE(3079), + [sym__pointer_indirection_expression] = STATE(2815), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6134), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3102), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3079), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2815), + [sym_interpolated_string_expression] = STATE(3102), + [sym_member_access_expression] = STATE(2815), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3079), + [sym__parenthesized_lvalue_expression] = STATE(2815), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7425), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(3102), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3102), + [sym_typeof_expression] = STATE(3102), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2815), + [sym_literal] = STATE(3102), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(1590), [sym_preproc_endregion] = STATE(1590), [sym_preproc_line] = STATE(1590), @@ -310569,47 +310455,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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3382), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1627), - [anon_sym_LPAREN] = ACTIONS(1727), - [anon_sym_ref] = ACTIONS(1729), - [anon_sym_LBRACE] = ACTIONS(1633), - [anon_sym_delegate] = ACTIONS(1635), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1305), + [anon_sym_LPAREN] = ACTIONS(2945), + [anon_sym_ref] = ACTIONS(715), + [anon_sym_LBRACE] = ACTIONS(1481), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1731), + [anon_sym_new] = ACTIONS(1059), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1639), - [anon_sym_BANG] = ACTIONS(1735), - [anon_sym_TILDE] = ACTIONS(1735), - [anon_sym_PLUS_PLUS] = ACTIONS(1735), - [anon_sym_DASH_DASH] = ACTIONS(1735), - [anon_sym_true] = ACTIONS(1645), - [anon_sym_false] = ACTIONS(1645), - [anon_sym_PLUS] = ACTIONS(1733), - [anon_sym_DASH] = ACTIONS(1733), - [anon_sym_STAR] = ACTIONS(1737), - [anon_sym_CARET] = ACTIONS(1735), - [anon_sym_AMP] = ACTIONS(1735), - [anon_sym_this] = ACTIONS(1649), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(1525), + [anon_sym_TILDE] = ACTIONS(1525), + [anon_sym_PLUS_PLUS] = ACTIONS(1525), + [anon_sym_DASH_DASH] = ACTIONS(1525), + [anon_sym_true] = ACTIONS(77), + [anon_sym_false] = ACTIONS(77), + [anon_sym_PLUS] = ACTIONS(1523), + [anon_sym_DASH] = ACTIONS(1523), + [anon_sym_STAR] = ACTIONS(1885), + [anon_sym_CARET] = ACTIONS(1525), + [anon_sym_AMP] = ACTIONS(1525), + [anon_sym_this] = ACTIONS(1321), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1651), + [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1653), - [anon_sym_unchecked] = ACTIONS(1639), + [sym_predefined_type] = ACTIONS(91), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1655), - [anon_sym_throw] = ACTIONS(1739), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(1527), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1741), - [anon_sym_DOT_DOT] = ACTIONS(1743), + [anon_sym_await] = ACTIONS(1529), + [anon_sym_DOT_DOT] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -310622,19 +310508,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1663), - [anon_sym_sizeof] = ACTIONS(1665), - [anon_sym_typeof] = ACTIONS(1667), - [anon_sym___makeref] = ACTIONS(1669), - [anon_sym___reftype] = ACTIONS(1671), - [anon_sym___refvalue] = ACTIONS(1673), - [sym_null_literal] = ACTIONS(1675), - [anon_sym_SQUOTE] = ACTIONS(1677), - [sym_integer_literal] = ACTIONS(1675), - [sym_real_literal] = ACTIONS(1679), - [anon_sym_DQUOTE] = ACTIONS(1681), - [sym_verbatim_string_literal] = ACTIONS(1679), - [aux_sym_preproc_if_token1] = ACTIONS(1683), + [anon_sym_stackalloc] = ACTIONS(127), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_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), @@ -310645,90 +310531,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1685), - [sym_interpolation_verbatim_start] = ACTIONS(1687), - [sym_interpolation_raw_start] = ACTIONS(1689), - [sym_raw_string_start] = ACTIONS(1691), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [sym_interpolation_raw_start] = ACTIONS(155), + [sym_raw_string_start] = ACTIONS(157), }, [1591] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2914), - [sym__name] = STATE(5885), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2357), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(3597), - [sym_non_lvalue_expression] = STATE(3880), - [sym_lvalue_expression] = STATE(2911), - [sym__expression_statement_expression] = STATE(3873), - [sym_assignment_expression] = STATE(3881), - [sym_binary_expression] = STATE(3873), - [sym_postfix_unary_expression] = STATE(3881), - [sym_prefix_unary_expression] = STATE(3881), - [sym__pointer_indirection_expression] = STATE(2913), - [sym_query_expression] = STATE(3873), - [sym_from_clause] = STATE(6182), - [sym_conditional_expression] = STATE(3873), - [sym_conditional_access_expression] = STATE(3873), - [sym_as_expression] = STATE(3873), - [sym_is_expression] = STATE(3873), - [sym_is_pattern_expression] = STATE(3873), - [sym_cast_expression] = STATE(3873), - [sym_checked_expression] = STATE(3873), - [sym_invocation_expression] = STATE(3881), - [sym_switch_expression] = STATE(3873), - [sym_await_expression] = STATE(3881), - [sym_throw_expression] = STATE(3873), - [sym_element_access_expression] = STATE(2913), - [sym_interpolated_string_expression] = STATE(3873), - [sym_member_access_expression] = STATE(2913), - [sym_object_creation_expression] = STATE(3881), - [sym_parenthesized_expression] = STATE(3881), - [sym__parenthesized_lvalue_expression] = STATE(2913), - [sym_lambda_expression] = STATE(3873), - [sym__lambda_expression_init] = STATE(7316), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3873), - [sym_anonymous_method_expression] = STATE(3873), - [sym_anonymous_object_creation_expression] = STATE(3873), - [sym_implicit_array_creation_expression] = STATE(3873), - [sym_implicit_object_creation_expression] = STATE(3873), - [sym_implicit_stackalloc_expression] = STATE(3873), - [sym_initializer_expression] = STATE(3873), - [sym_default_expression] = STATE(3873), - [sym_with_expression] = STATE(3873), - [sym_sizeof_expression] = STATE(3873), - [sym_typeof_expression] = STATE(3873), - [sym_makeref_expression] = STATE(3873), - [sym_ref_expression] = STATE(3873), - [sym_reftype_expression] = STATE(3873), - [sym_refvalue_expression] = STATE(3873), - [sym_stackalloc_expression] = STATE(3873), - [sym_range_expression] = STATE(3873), - [sym_tuple_expression] = STATE(2913), - [sym_literal] = STATE(3873), - [sym_character_literal] = STATE(3877), - [sym_string_literal] = STATE(3877), - [sym_raw_string_literal] = STATE(3877), - [sym_boolean_literal] = STATE(3877), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3873), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2603), + [sym__name] = STATE(5877), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2344), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(3136), + [sym_non_lvalue_expression] = STATE(3220), + [sym_lvalue_expression] = STATE(3281), + [sym__expression_statement_expression] = STATE(3236), + [sym_assignment_expression] = STATE(3221), + [sym_binary_expression] = STATE(3236), + [sym_postfix_unary_expression] = STATE(3221), + [sym_prefix_unary_expression] = STATE(3221), + [sym__pointer_indirection_expression] = STATE(2602), + [sym_query_expression] = STATE(3236), + [sym_from_clause] = STATE(6146), + [sym_conditional_expression] = STATE(3236), + [sym_conditional_access_expression] = STATE(3236), + [sym_as_expression] = STATE(3236), + [sym_is_expression] = STATE(3236), + [sym_is_pattern_expression] = STATE(3236), + [sym_cast_expression] = STATE(3236), + [sym_checked_expression] = STATE(3236), + [sym_invocation_expression] = STATE(3221), + [sym_switch_expression] = STATE(3236), + [sym_await_expression] = STATE(3221), + [sym_throw_expression] = STATE(3236), + [sym_element_access_expression] = STATE(2602), + [sym_interpolated_string_expression] = STATE(3236), + [sym_member_access_expression] = STATE(2602), + [sym_object_creation_expression] = STATE(3221), + [sym_parenthesized_expression] = STATE(3221), + [sym__parenthesized_lvalue_expression] = STATE(2602), + [sym_lambda_expression] = STATE(3236), + [sym__lambda_expression_init] = STATE(7323), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3236), + [sym_anonymous_method_expression] = STATE(3236), + [sym_anonymous_object_creation_expression] = STATE(3236), + [sym_implicit_array_creation_expression] = STATE(3236), + [sym_implicit_object_creation_expression] = STATE(3236), + [sym_implicit_stackalloc_expression] = STATE(3236), + [sym_initializer_expression] = STATE(3236), + [sym_default_expression] = STATE(3236), + [sym_with_expression] = STATE(3236), + [sym_sizeof_expression] = STATE(3236), + [sym_typeof_expression] = STATE(3236), + [sym_makeref_expression] = STATE(3236), + [sym_ref_expression] = STATE(3236), + [sym_reftype_expression] = STATE(3236), + [sym_refvalue_expression] = STATE(3236), + [sym_stackalloc_expression] = STATE(3236), + [sym_range_expression] = STATE(3236), + [sym_tuple_expression] = STATE(2602), + [sym_literal] = STATE(3236), + [sym_character_literal] = STATE(3272), + [sym_string_literal] = STATE(3272), + [sym_raw_string_literal] = STATE(3272), + [sym_boolean_literal] = STATE(3272), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3236), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(1591), [sym_preproc_endregion] = STATE(1591), [sym_preproc_line] = STATE(1591), @@ -310738,47 +310624,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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3382), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3379), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1627), - [anon_sym_LPAREN] = ACTIONS(1727), - [anon_sym_ref] = ACTIONS(1729), - [anon_sym_LBRACE] = ACTIONS(1633), - [anon_sym_delegate] = ACTIONS(1635), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1149), + [anon_sym_LPAREN] = ACTIONS(1531), + [anon_sym_ref] = ACTIONS(1533), + [anon_sym_LBRACE] = ACTIONS(1155), + [anon_sym_delegate] = ACTIONS(1157), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1731), + [anon_sym_new] = ACTIONS(1535), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1639), - [anon_sym_BANG] = ACTIONS(1735), - [anon_sym_TILDE] = ACTIONS(1735), - [anon_sym_PLUS_PLUS] = ACTIONS(1735), - [anon_sym_DASH_DASH] = ACTIONS(1735), - [anon_sym_true] = ACTIONS(1645), - [anon_sym_false] = ACTIONS(1645), - [anon_sym_PLUS] = ACTIONS(1733), - [anon_sym_DASH] = ACTIONS(1733), - [anon_sym_STAR] = ACTIONS(1737), - [anon_sym_CARET] = ACTIONS(1735), - [anon_sym_AMP] = ACTIONS(1735), - [anon_sym_this] = ACTIONS(1649), + [anon_sym_checked] = ACTIONS(1163), + [anon_sym_BANG] = ACTIONS(1539), + [anon_sym_TILDE] = ACTIONS(1539), + [anon_sym_PLUS_PLUS] = ACTIONS(1539), + [anon_sym_DASH_DASH] = ACTIONS(1539), + [anon_sym_true] = ACTIONS(1169), + [anon_sym_false] = ACTIONS(1169), + [anon_sym_PLUS] = ACTIONS(1537), + [anon_sym_DASH] = ACTIONS(1537), + [anon_sym_STAR] = ACTIONS(1541), + [anon_sym_CARET] = ACTIONS(1539), + [anon_sym_AMP] = ACTIONS(1539), + [anon_sym_this] = ACTIONS(1173), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1651), + [anon_sym_base] = ACTIONS(1175), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1653), - [anon_sym_unchecked] = ACTIONS(1639), + [sym_predefined_type] = ACTIONS(1177), + [anon_sym_unchecked] = ACTIONS(1163), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1655), - [anon_sym_throw] = ACTIONS(1739), + [anon_sym_default] = ACTIONS(1179), + [anon_sym_throw] = ACTIONS(1543), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1741), - [anon_sym_DOT_DOT] = ACTIONS(1743), + [anon_sym_await] = ACTIONS(1545), + [anon_sym_DOT_DOT] = ACTIONS(1547), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -310791,19 +310677,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1663), - [anon_sym_sizeof] = ACTIONS(1665), - [anon_sym_typeof] = ACTIONS(1667), - [anon_sym___makeref] = ACTIONS(1669), - [anon_sym___reftype] = ACTIONS(1671), - [anon_sym___refvalue] = ACTIONS(1673), - [sym_null_literal] = ACTIONS(1675), - [anon_sym_SQUOTE] = ACTIONS(1677), - [sym_integer_literal] = ACTIONS(1675), - [sym_real_literal] = ACTIONS(1679), - [anon_sym_DQUOTE] = ACTIONS(1681), - [sym_verbatim_string_literal] = ACTIONS(1679), - [aux_sym_preproc_if_token1] = ACTIONS(1683), + [anon_sym_stackalloc] = ACTIONS(1187), + [anon_sym_sizeof] = ACTIONS(1189), + [anon_sym_typeof] = ACTIONS(1191), + [anon_sym___makeref] = ACTIONS(1193), + [anon_sym___reftype] = ACTIONS(1195), + [anon_sym___refvalue] = ACTIONS(1197), + [sym_null_literal] = ACTIONS(1199), + [anon_sym_SQUOTE] = ACTIONS(1201), + [sym_integer_literal] = ACTIONS(1199), + [sym_real_literal] = ACTIONS(1203), + [anon_sym_DQUOTE] = ACTIONS(1205), + [sym_verbatim_string_literal] = ACTIONS(1203), + [aux_sym_preproc_if_token1] = ACTIONS(1207), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -310814,90 +310700,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1685), - [sym_interpolation_verbatim_start] = ACTIONS(1687), - [sym_interpolation_raw_start] = ACTIONS(1689), - [sym_raw_string_start] = ACTIONS(1691), + [sym_interpolation_regular_start] = ACTIONS(1209), + [sym_interpolation_verbatim_start] = ACTIONS(1211), + [sym_interpolation_raw_start] = ACTIONS(1213), + [sym_raw_string_start] = ACTIONS(1215), }, [1592] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(3184), - [sym__name] = STATE(5906), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2312), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2269), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(4261), - [sym_non_lvalue_expression] = STATE(4541), - [sym_lvalue_expression] = STATE(3165), - [sym__expression_statement_expression] = STATE(4529), - [sym_assignment_expression] = STATE(4543), - [sym_binary_expression] = STATE(4529), - [sym_postfix_unary_expression] = STATE(4543), - [sym_prefix_unary_expression] = STATE(4543), - [sym__pointer_indirection_expression] = STATE(3175), - [sym_query_expression] = STATE(4529), - [sym_from_clause] = STATE(6156), - [sym_conditional_expression] = STATE(4529), - [sym_conditional_access_expression] = STATE(4529), - [sym_as_expression] = STATE(4529), - [sym_is_expression] = STATE(4529), - [sym_is_pattern_expression] = STATE(4529), - [sym_cast_expression] = STATE(4529), - [sym_checked_expression] = STATE(4529), - [sym_invocation_expression] = STATE(4543), - [sym_switch_expression] = STATE(4529), - [sym_await_expression] = STATE(4543), - [sym_throw_expression] = STATE(4529), - [sym_element_access_expression] = STATE(3175), - [sym_interpolated_string_expression] = STATE(4529), - [sym_member_access_expression] = STATE(3175), - [sym_object_creation_expression] = STATE(4543), - [sym_parenthesized_expression] = STATE(4543), - [sym__parenthesized_lvalue_expression] = STATE(3175), - [sym_lambda_expression] = STATE(4529), - [sym__lambda_expression_init] = STATE(7341), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(4529), - [sym_anonymous_method_expression] = STATE(4529), - [sym_anonymous_object_creation_expression] = STATE(4529), - [sym_implicit_array_creation_expression] = STATE(4529), - [sym_implicit_object_creation_expression] = STATE(4529), - [sym_implicit_stackalloc_expression] = STATE(4529), - [sym_initializer_expression] = STATE(4529), - [sym_default_expression] = STATE(4529), - [sym_with_expression] = STATE(4529), - [sym_sizeof_expression] = STATE(4529), - [sym_typeof_expression] = STATE(4529), - [sym_makeref_expression] = STATE(4529), - [sym_ref_expression] = STATE(4529), - [sym_reftype_expression] = STATE(4529), - [sym_refvalue_expression] = STATE(4529), - [sym_stackalloc_expression] = STATE(4529), - [sym_range_expression] = STATE(4529), - [sym_tuple_expression] = STATE(3175), - [sym_literal] = STATE(4529), - [sym_character_literal] = STATE(4536), - [sym_string_literal] = STATE(4536), - [sym_raw_string_literal] = STATE(4536), - [sym_boolean_literal] = STATE(4536), - [sym_identifier] = STATE(2246), - [sym__reserved_identifier] = STATE(2240), - [sym_preproc_if_in_expression] = STATE(4529), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2603), + [sym__name] = STATE(5869), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2367), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(5696), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(2604), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3102), + [sym_postfix_unary_expression] = STATE(3079), + [sym_prefix_unary_expression] = STATE(3079), + [sym__pointer_indirection_expression] = STATE(2602), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6134), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3102), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3079), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2602), + [sym_interpolated_string_expression] = STATE(3102), + [sym_member_access_expression] = STATE(2602), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3079), + [sym__parenthesized_lvalue_expression] = STATE(2602), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7425), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(3102), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3102), + [sym_typeof_expression] = STATE(3102), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2602), + [sym_literal] = STATE(3102), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(1592), [sym_preproc_endregion] = STATE(1592), [sym_preproc_line] = STATE(1592), @@ -310907,166 +310793,166 @@ 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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3363), - [sym__identifier_token] = ACTIONS(1387), - [anon_sym_alias] = ACTIONS(1389), - [anon_sym_global] = ACTIONS(1389), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1391), - [anon_sym_LPAREN] = ACTIONS(1393), - [anon_sym_ref] = ACTIONS(1395), - [anon_sym_LBRACE] = ACTIONS(1397), - [anon_sym_delegate] = ACTIONS(1399), - [anon_sym_async] = ACTIONS(1047), - [anon_sym_file] = ACTIONS(1389), - [anon_sym_new] = ACTIONS(1401), - [anon_sym_where] = ACTIONS(1389), - [anon_sym_notnull] = ACTIONS(1389), - [anon_sym_unmanaged] = ACTIONS(1389), - [anon_sym_checked] = ACTIONS(1403), - [anon_sym_BANG] = ACTIONS(1407), - [anon_sym_TILDE] = ACTIONS(1407), - [anon_sym_PLUS_PLUS] = ACTIONS(1407), - [anon_sym_DASH_DASH] = ACTIONS(1407), - [anon_sym_true] = ACTIONS(1409), - [anon_sym_false] = ACTIONS(1409), - [anon_sym_PLUS] = ACTIONS(1405), - [anon_sym_DASH] = ACTIONS(1405), - [anon_sym_STAR] = ACTIONS(1411), - [anon_sym_CARET] = ACTIONS(1407), - [anon_sym_AMP] = ACTIONS(1407), - [anon_sym_this] = ACTIONS(1413), - [anon_sym_scoped] = ACTIONS(1415), - [anon_sym_base] = ACTIONS(1417), - [anon_sym_var] = ACTIONS(1419), - [sym_predefined_type] = ACTIONS(1421), - [anon_sym_unchecked] = ACTIONS(1403), - [anon_sym_yield] = ACTIONS(1389), - [anon_sym_default] = ACTIONS(1423), - [anon_sym_throw] = ACTIONS(1425), - [anon_sym_when] = ACTIONS(1389), - [anon_sym_await] = ACTIONS(1427), - [anon_sym_DOT_DOT] = ACTIONS(1429), - [anon_sym_from] = ACTIONS(1431), - [anon_sym_into] = ACTIONS(1389), - [anon_sym_join] = ACTIONS(1389), - [anon_sym_on] = ACTIONS(1389), - [anon_sym_equals] = ACTIONS(1389), - [anon_sym_let] = ACTIONS(1389), - [anon_sym_orderby] = ACTIONS(1389), - [anon_sym_ascending] = ACTIONS(1389), - [anon_sym_descending] = ACTIONS(1389), - [anon_sym_group] = ACTIONS(1389), - [anon_sym_by] = ACTIONS(1389), - [anon_sym_select] = ACTIONS(1389), - [anon_sym_stackalloc] = ACTIONS(1433), - [anon_sym_sizeof] = ACTIONS(1435), - [anon_sym_typeof] = ACTIONS(1437), - [anon_sym___makeref] = ACTIONS(1439), - [anon_sym___reftype] = ACTIONS(1441), - [anon_sym___refvalue] = ACTIONS(1443), - [sym_null_literal] = ACTIONS(1445), - [anon_sym_SQUOTE] = ACTIONS(1447), - [sym_integer_literal] = ACTIONS(1445), - [sym_real_literal] = ACTIONS(1449), - [anon_sym_DQUOTE] = ACTIONS(1451), - [sym_verbatim_string_literal] = ACTIONS(1449), - [aux_sym_preproc_if_token1] = ACTIONS(1453), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1455), - [sym_interpolation_verbatim_start] = ACTIONS(1457), - [sym_interpolation_raw_start] = ACTIONS(1459), - [sym_raw_string_start] = ACTIONS(1461), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), + [sym__identifier_token] = ACTIONS(25), + [anon_sym_alias] = ACTIONS(29), + [anon_sym_global] = ACTIONS(29), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1149), + [anon_sym_LPAREN] = ACTIONS(2947), + [anon_sym_ref] = ACTIONS(715), + [anon_sym_LBRACE] = ACTIONS(1481), + [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(1525), + [anon_sym_TILDE] = ACTIONS(1525), + [anon_sym_PLUS_PLUS] = ACTIONS(1525), + [anon_sym_DASH_DASH] = ACTIONS(1525), + [anon_sym_true] = ACTIONS(77), + [anon_sym_false] = ACTIONS(77), + [anon_sym_PLUS] = ACTIONS(1523), + [anon_sym_DASH] = ACTIONS(1523), + [anon_sym_STAR] = ACTIONS(1923), + [anon_sym_CARET] = ACTIONS(1525), + [anon_sym_AMP] = ACTIONS(1525), + [anon_sym_this] = ACTIONS(1173), + [anon_sym_scoped] = ACTIONS(85), + [anon_sym_base] = ACTIONS(87), + [anon_sym_var] = ACTIONS(89), + [sym_predefined_type] = ACTIONS(1177), + [anon_sym_unchecked] = ACTIONS(1065), + [anon_sym_yield] = ACTIONS(29), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(1527), + [anon_sym_when] = ACTIONS(29), + [anon_sym_await] = ACTIONS(1529), + [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), }, [1593] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(3184), - [sym__name] = STATE(5906), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2312), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2269), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(4265), - [sym_non_lvalue_expression] = STATE(4541), - [sym_lvalue_expression] = STATE(3165), - [sym__expression_statement_expression] = STATE(4529), - [sym_assignment_expression] = STATE(4543), - [sym_binary_expression] = STATE(4529), - [sym_postfix_unary_expression] = STATE(4543), - [sym_prefix_unary_expression] = STATE(4543), - [sym__pointer_indirection_expression] = STATE(3175), - [sym_query_expression] = STATE(4529), - [sym_from_clause] = STATE(6156), - [sym_conditional_expression] = STATE(4529), - [sym_conditional_access_expression] = STATE(4529), - [sym_as_expression] = STATE(4529), - [sym_is_expression] = STATE(4529), - [sym_is_pattern_expression] = STATE(4529), - [sym_cast_expression] = STATE(4529), - [sym_checked_expression] = STATE(4529), - [sym_invocation_expression] = STATE(4543), - [sym_switch_expression] = STATE(4529), - [sym_await_expression] = STATE(4543), - [sym_throw_expression] = STATE(4529), - [sym_element_access_expression] = STATE(3175), - [sym_interpolated_string_expression] = STATE(4529), - [sym_member_access_expression] = STATE(3175), - [sym_object_creation_expression] = STATE(4543), - [sym_parenthesized_expression] = STATE(4543), - [sym__parenthesized_lvalue_expression] = STATE(3175), - [sym_lambda_expression] = STATE(4529), - [sym__lambda_expression_init] = STATE(7341), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(4529), - [sym_anonymous_method_expression] = STATE(4529), - [sym_anonymous_object_creation_expression] = STATE(4529), - [sym_implicit_array_creation_expression] = STATE(4529), - [sym_implicit_object_creation_expression] = STATE(4529), - [sym_implicit_stackalloc_expression] = STATE(4529), - [sym_initializer_expression] = STATE(4529), - [sym_default_expression] = STATE(4529), - [sym_with_expression] = STATE(4529), - [sym_sizeof_expression] = STATE(4529), - [sym_typeof_expression] = STATE(4529), - [sym_makeref_expression] = STATE(4529), - [sym_ref_expression] = STATE(4529), - [sym_reftype_expression] = STATE(4529), - [sym_refvalue_expression] = STATE(4529), - [sym_stackalloc_expression] = STATE(4529), - [sym_range_expression] = STATE(4529), - [sym_tuple_expression] = STATE(3175), - [sym_literal] = STATE(4529), - [sym_character_literal] = STATE(4536), - [sym_string_literal] = STATE(4536), - [sym_raw_string_literal] = STATE(4536), - [sym_boolean_literal] = STATE(4536), - [sym_identifier] = STATE(2246), - [sym__reserved_identifier] = STATE(2240), - [sym_preproc_if_in_expression] = STATE(4529), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2816), + [sym__name] = STATE(5873), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2196), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(3212), + [sym_non_lvalue_expression] = STATE(3495), + [sym_lvalue_expression] = STATE(3514), + [sym__expression_statement_expression] = STATE(3462), + [sym_assignment_expression] = STATE(3497), + [sym_binary_expression] = STATE(3462), + [sym_postfix_unary_expression] = STATE(3497), + [sym_prefix_unary_expression] = STATE(3497), + [sym__pointer_indirection_expression] = STATE(2815), + [sym_query_expression] = STATE(3462), + [sym_from_clause] = STATE(6154), + [sym_conditional_expression] = STATE(3462), + [sym_conditional_access_expression] = STATE(3462), + [sym_as_expression] = STATE(3462), + [sym_is_expression] = STATE(3462), + [sym_is_pattern_expression] = STATE(3462), + [sym_cast_expression] = STATE(3462), + [sym_checked_expression] = STATE(3462), + [sym_invocation_expression] = STATE(3497), + [sym_switch_expression] = STATE(3462), + [sym_await_expression] = STATE(3497), + [sym_throw_expression] = STATE(3462), + [sym_element_access_expression] = STATE(2815), + [sym_interpolated_string_expression] = STATE(3462), + [sym_member_access_expression] = STATE(2815), + [sym_object_creation_expression] = STATE(3497), + [sym_parenthesized_expression] = STATE(3497), + [sym__parenthesized_lvalue_expression] = STATE(2815), + [sym_lambda_expression] = STATE(3462), + [sym__lambda_expression_init] = STATE(7685), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3462), + [sym_anonymous_method_expression] = STATE(3462), + [sym_anonymous_object_creation_expression] = STATE(3462), + [sym_implicit_array_creation_expression] = STATE(3462), + [sym_implicit_object_creation_expression] = STATE(3462), + [sym_implicit_stackalloc_expression] = STATE(3462), + [sym_initializer_expression] = STATE(3462), + [sym_default_expression] = STATE(3462), + [sym_with_expression] = STATE(3462), + [sym_sizeof_expression] = STATE(3462), + [sym_typeof_expression] = STATE(3462), + [sym_makeref_expression] = STATE(3462), + [sym_ref_expression] = STATE(3462), + [sym_reftype_expression] = STATE(3462), + [sym_refvalue_expression] = STATE(3462), + [sym_stackalloc_expression] = STATE(3462), + [sym_range_expression] = STATE(3462), + [sym_tuple_expression] = STATE(2815), + [sym_literal] = STATE(3462), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2261), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3462), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(1593), [sym_preproc_endregion] = STATE(1593), [sym_preproc_line] = STATE(1593), @@ -311076,166 +310962,166 @@ 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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3363), - [sym__identifier_token] = ACTIONS(1387), - [anon_sym_alias] = ACTIONS(1389), - [anon_sym_global] = ACTIONS(1389), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1391), - [anon_sym_LPAREN] = ACTIONS(1393), - [anon_sym_ref] = ACTIONS(1395), - [anon_sym_LBRACE] = ACTIONS(1397), - [anon_sym_delegate] = ACTIONS(1399), - [anon_sym_async] = ACTIONS(1047), - [anon_sym_file] = ACTIONS(1389), - [anon_sym_new] = ACTIONS(1401), - [anon_sym_where] = ACTIONS(1389), - [anon_sym_notnull] = ACTIONS(1389), - [anon_sym_unmanaged] = ACTIONS(1389), - [anon_sym_checked] = ACTIONS(1403), - [anon_sym_BANG] = ACTIONS(1407), - [anon_sym_TILDE] = ACTIONS(1407), - [anon_sym_PLUS_PLUS] = ACTIONS(1407), - [anon_sym_DASH_DASH] = ACTIONS(1407), - [anon_sym_true] = ACTIONS(1409), - [anon_sym_false] = ACTIONS(1409), - [anon_sym_PLUS] = ACTIONS(1405), - [anon_sym_DASH] = ACTIONS(1405), - [anon_sym_STAR] = ACTIONS(1411), - [anon_sym_CARET] = ACTIONS(1407), - [anon_sym_AMP] = ACTIONS(1407), - [anon_sym_this] = ACTIONS(1413), - [anon_sym_scoped] = ACTIONS(1415), - [anon_sym_base] = ACTIONS(1417), - [anon_sym_var] = ACTIONS(1419), - [sym_predefined_type] = ACTIONS(1421), - [anon_sym_unchecked] = ACTIONS(1403), - [anon_sym_yield] = ACTIONS(1389), - [anon_sym_default] = ACTIONS(1423), - [anon_sym_throw] = ACTIONS(1425), - [anon_sym_when] = ACTIONS(1389), - [anon_sym_await] = ACTIONS(1427), - [anon_sym_DOT_DOT] = ACTIONS(1429), - [anon_sym_from] = ACTIONS(1431), - [anon_sym_into] = ACTIONS(1389), - [anon_sym_join] = ACTIONS(1389), - [anon_sym_on] = ACTIONS(1389), - [anon_sym_equals] = ACTIONS(1389), - [anon_sym_let] = ACTIONS(1389), - [anon_sym_orderby] = ACTIONS(1389), - [anon_sym_ascending] = ACTIONS(1389), - [anon_sym_descending] = ACTIONS(1389), - [anon_sym_group] = ACTIONS(1389), - [anon_sym_by] = ACTIONS(1389), - [anon_sym_select] = ACTIONS(1389), - [anon_sym_stackalloc] = ACTIONS(1433), - [anon_sym_sizeof] = ACTIONS(1435), - [anon_sym_typeof] = ACTIONS(1437), - [anon_sym___makeref] = ACTIONS(1439), - [anon_sym___reftype] = ACTIONS(1441), - [anon_sym___refvalue] = ACTIONS(1443), - [sym_null_literal] = ACTIONS(1445), - [anon_sym_SQUOTE] = ACTIONS(1447), - [sym_integer_literal] = ACTIONS(1445), - [sym_real_literal] = ACTIONS(1449), - [anon_sym_DQUOTE] = ACTIONS(1451), - [sym_verbatim_string_literal] = ACTIONS(1449), - [aux_sym_preproc_if_token1] = ACTIONS(1453), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1455), - [sym_interpolation_verbatim_start] = ACTIONS(1457), - [sym_interpolation_raw_start] = ACTIONS(1459), - [sym_raw_string_start] = ACTIONS(1461), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [sym__identifier_token] = ACTIONS(25), + [anon_sym_alias] = ACTIONS(29), + [anon_sym_global] = ACTIONS(29), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1305), + [anon_sym_LPAREN] = ACTIONS(1613), + [anon_sym_ref] = ACTIONS(1615), + [anon_sym_LBRACE] = ACTIONS(1311), + [anon_sym_delegate] = ACTIONS(1313), + [anon_sym_async] = ACTIONS(1045), + [anon_sym_file] = ACTIONS(29), + [anon_sym_new] = ACTIONS(1315), + [anon_sym_where] = ACTIONS(29), + [anon_sym_notnull] = ACTIONS(29), + [anon_sym_unmanaged] = ACTIONS(29), + [anon_sym_checked] = ACTIONS(1317), + [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(1321), + [anon_sym_scoped] = ACTIONS(85), + [anon_sym_base] = ACTIONS(1323), + [anon_sym_var] = ACTIONS(89), + [sym_predefined_type] = ACTIONS(91), + [anon_sym_unchecked] = ACTIONS(1317), + [anon_sym_yield] = ACTIONS(29), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(1623), + [anon_sym_when] = ACTIONS(29), + [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), + [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(1331), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(1333), + [anon_sym___reftype] = ACTIONS(1335), + [anon_sym___refvalue] = ACTIONS(1337), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_literal] = ACTIONS(143), + [anon_sym_DQUOTE] = ACTIONS(145), + [sym_verbatim_string_literal] = ACTIONS(143), + [aux_sym_preproc_if_token1] = ACTIONS(1339), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(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), }, [1594] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(5160), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2204), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(3519), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3461), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3080), - [sym_postfix_unary_expression] = STATE(3111), - [sym_prefix_unary_expression] = STATE(3111), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6154), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3080), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3111), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3080), - [sym_member_access_expression] = STATE(2484), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3111), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7547), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(3080), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3080), - [sym_typeof_expression] = STATE(3080), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2484), - [sym_literal] = STATE(3080), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2816), + [sym__name] = STATE(5873), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2196), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(5697), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(2830), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3102), + [sym_postfix_unary_expression] = STATE(3079), + [sym_prefix_unary_expression] = STATE(3079), + [sym__pointer_indirection_expression] = STATE(2815), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6134), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3102), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3079), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2815), + [sym_interpolated_string_expression] = STATE(3102), + [sym_member_access_expression] = STATE(2815), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3079), + [sym__parenthesized_lvalue_expression] = STATE(2815), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7425), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(3102), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3102), + [sym_typeof_expression] = STATE(3102), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2815), + [sym_literal] = STATE(3102), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2261), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(1594), [sym_preproc_endregion] = STATE(1594), [sym_preproc_line] = STATE(1594), @@ -311245,47 +311131,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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1481), - [anon_sym_LPAREN] = ACTIONS(1497), - [anon_sym_ref] = ACTIONS(1499), - [anon_sym_LBRACE] = ACTIONS(1487), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1305), + [anon_sym_LPAREN] = ACTIONS(2945), + [anon_sym_ref] = ACTIONS(715), + [anon_sym_LBRACE] = ACTIONS(1481), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1501), + [anon_sym_new] = ACTIONS(1059), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = 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_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(1525), + [anon_sym_TILDE] = ACTIONS(1525), + [anon_sym_PLUS_PLUS] = ACTIONS(1525), + [anon_sym_DASH_DASH] = ACTIONS(1525), [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(1523), + [anon_sym_DASH] = ACTIONS(1523), + [anon_sym_STAR] = ACTIONS(1621), + [anon_sym_CARET] = ACTIONS(1525), + [anon_sym_AMP] = ACTIONS(1525), + [anon_sym_this] = ACTIONS(1321), [anon_sym_scoped] = ACTIONS(85), [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1067), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1503), + [anon_sym_throw] = ACTIONS(1527), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1505), - [anon_sym_DOT_DOT] = ACTIONS(1507), + [anon_sym_await] = ACTIONS(1529), + [anon_sym_DOT_DOT] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -311310,7 +311196,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(1089), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -311327,84 +311213,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [1595] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2914), - [sym__name] = STATE(5885), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2357), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(3764), - [sym_non_lvalue_expression] = STATE(3880), - [sym_lvalue_expression] = STATE(2986), - [sym__expression_statement_expression] = STATE(3873), - [sym_assignment_expression] = STATE(3881), - [sym_binary_expression] = STATE(3873), - [sym_postfix_unary_expression] = STATE(3881), - [sym_prefix_unary_expression] = STATE(3881), - [sym__pointer_indirection_expression] = STATE(2913), - [sym_query_expression] = STATE(3873), - [sym_from_clause] = STATE(6168), - [sym_conditional_expression] = STATE(3873), - [sym_conditional_access_expression] = STATE(3873), - [sym_as_expression] = STATE(3873), - [sym_is_expression] = STATE(3873), - [sym_is_pattern_expression] = STATE(3873), - [sym_cast_expression] = STATE(3873), - [sym_checked_expression] = STATE(3873), - [sym_invocation_expression] = STATE(3881), - [sym_switch_expression] = STATE(3873), - [sym_await_expression] = STATE(3881), - [sym_throw_expression] = STATE(3873), - [sym_element_access_expression] = STATE(2913), - [sym_interpolated_string_expression] = STATE(3873), - [sym_member_access_expression] = STATE(2913), - [sym_object_creation_expression] = STATE(3881), - [sym_parenthesized_expression] = STATE(3881), - [sym__parenthesized_lvalue_expression] = STATE(2913), - [sym_lambda_expression] = STATE(3873), - [sym__lambda_expression_init] = STATE(7587), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3873), - [sym_anonymous_method_expression] = STATE(3873), - [sym_anonymous_object_creation_expression] = STATE(3873), - [sym_implicit_array_creation_expression] = STATE(3873), - [sym_implicit_object_creation_expression] = STATE(3873), - [sym_implicit_stackalloc_expression] = STATE(3873), - [sym_initializer_expression] = STATE(3873), - [sym_default_expression] = STATE(3873), - [sym_with_expression] = STATE(3873), - [sym_sizeof_expression] = STATE(3873), - [sym_typeof_expression] = STATE(3873), - [sym_makeref_expression] = STATE(3873), - [sym_ref_expression] = STATE(3873), - [sym_reftype_expression] = STATE(3873), - [sym_refvalue_expression] = STATE(3873), - [sym_stackalloc_expression] = STATE(3873), - [sym_range_expression] = STATE(3873), - [sym_tuple_expression] = STATE(2913), - [sym_literal] = STATE(3873), - [sym_character_literal] = STATE(3877), - [sym_string_literal] = STATE(3877), - [sym_raw_string_literal] = STATE(3877), - [sym_boolean_literal] = STATE(3877), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3873), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2416), + [sym__name] = STATE(5890), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2193), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(2902), + [sym_non_lvalue_expression] = STATE(3040), + [sym_lvalue_expression] = STATE(3549), + [sym__expression_statement_expression] = STATE(3035), + [sym_assignment_expression] = STATE(3043), + [sym_binary_expression] = STATE(3035), + [sym_postfix_unary_expression] = STATE(3043), + [sym_prefix_unary_expression] = STATE(3043), + [sym__pointer_indirection_expression] = STATE(2415), + [sym_query_expression] = STATE(3035), + [sym_from_clause] = STATE(6131), + [sym_conditional_expression] = STATE(3035), + [sym_conditional_access_expression] = STATE(3035), + [sym_as_expression] = STATE(3035), + [sym_is_expression] = STATE(3035), + [sym_is_pattern_expression] = STATE(3035), + [sym_cast_expression] = STATE(3035), + [sym_checked_expression] = STATE(3035), + [sym_invocation_expression] = STATE(3043), + [sym_switch_expression] = STATE(3035), + [sym_await_expression] = STATE(3043), + [sym_throw_expression] = STATE(3035), + [sym_element_access_expression] = STATE(2415), + [sym_interpolated_string_expression] = STATE(3035), + [sym_member_access_expression] = STATE(2415), + [sym_object_creation_expression] = STATE(3043), + [sym_parenthesized_expression] = STATE(3043), + [sym__parenthesized_lvalue_expression] = STATE(2415), + [sym_lambda_expression] = STATE(3035), + [sym__lambda_expression_init] = STATE(7412), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3035), + [sym_anonymous_method_expression] = STATE(3035), + [sym_anonymous_object_creation_expression] = STATE(3035), + [sym_implicit_array_creation_expression] = STATE(3035), + [sym_implicit_object_creation_expression] = STATE(3035), + [sym_implicit_stackalloc_expression] = STATE(3035), + [sym_initializer_expression] = STATE(3035), + [sym_default_expression] = STATE(3035), + [sym_with_expression] = STATE(3035), + [sym_sizeof_expression] = STATE(3035), + [sym_typeof_expression] = STATE(3035), + [sym_makeref_expression] = STATE(3035), + [sym_ref_expression] = STATE(3035), + [sym_reftype_expression] = STATE(3035), + [sym_refvalue_expression] = STATE(3035), + [sym_stackalloc_expression] = STATE(3035), + [sym_range_expression] = STATE(3035), + [sym_tuple_expression] = STATE(2415), + [sym_literal] = STATE(3035), + [sym_character_literal] = STATE(3037), + [sym_string_literal] = STATE(3037), + [sym_raw_string_literal] = STATE(3037), + [sym_boolean_literal] = STATE(3037), + [sym_identifier] = STATE(2261), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3035), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(1595), [sym_preproc_endregion] = STATE(1595), [sym_preproc_line] = STATE(1595), @@ -311414,47 +311300,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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3382), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3455), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1627), - [anon_sym_LPAREN] = ACTIONS(2079), - [anon_sym_ref] = ACTIONS(2081), - [anon_sym_LBRACE] = ACTIONS(1633), - [anon_sym_delegate] = ACTIONS(1635), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1239), + [anon_sym_LPAREN] = ACTIONS(1949), + [anon_sym_ref] = ACTIONS(1951), + [anon_sym_LBRACE] = ACTIONS(1245), + [anon_sym_delegate] = ACTIONS(1247), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1731), + [anon_sym_new] = ACTIONS(1249), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1639), - [anon_sym_BANG] = ACTIONS(2085), - [anon_sym_TILDE] = ACTIONS(2085), - [anon_sym_PLUS_PLUS] = ACTIONS(2085), - [anon_sym_DASH_DASH] = ACTIONS(2085), - [anon_sym_true] = ACTIONS(1645), - [anon_sym_false] = ACTIONS(1645), - [anon_sym_PLUS] = ACTIONS(2083), - [anon_sym_DASH] = ACTIONS(2083), - [anon_sym_STAR] = ACTIONS(1737), - [anon_sym_CARET] = ACTIONS(2085), - [anon_sym_AMP] = ACTIONS(2085), - [anon_sym_this] = ACTIONS(1649), + [anon_sym_checked] = ACTIONS(1251), + [anon_sym_BANG] = ACTIONS(1955), + [anon_sym_TILDE] = ACTIONS(1955), + [anon_sym_PLUS_PLUS] = ACTIONS(1955), + [anon_sym_DASH_DASH] = ACTIONS(1955), + [anon_sym_true] = ACTIONS(1257), + [anon_sym_false] = ACTIONS(1257), + [anon_sym_PLUS] = ACTIONS(1953), + [anon_sym_DASH] = ACTIONS(1953), + [anon_sym_STAR] = ACTIONS(1957), + [anon_sym_CARET] = ACTIONS(1955), + [anon_sym_AMP] = ACTIONS(1955), + [anon_sym_this] = ACTIONS(1261), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1651), + [anon_sym_base] = ACTIONS(1263), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1653), - [anon_sym_unchecked] = ACTIONS(1639), + [sym_predefined_type] = ACTIONS(1265), + [anon_sym_unchecked] = ACTIONS(1251), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1655), - [anon_sym_throw] = ACTIONS(2087), + [anon_sym_default] = ACTIONS(1267), + [anon_sym_throw] = ACTIONS(1959), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2089), - [anon_sym_DOT_DOT] = ACTIONS(2091), + [anon_sym_await] = ACTIONS(1961), + [anon_sym_DOT_DOT] = ACTIONS(1963), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -311467,19 +311353,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1663), - [anon_sym_sizeof] = ACTIONS(1665), - [anon_sym_typeof] = ACTIONS(1667), - [anon_sym___makeref] = ACTIONS(1669), - [anon_sym___reftype] = ACTIONS(1671), - [anon_sym___refvalue] = ACTIONS(1673), - [sym_null_literal] = ACTIONS(1675), - [anon_sym_SQUOTE] = ACTIONS(1677), - [sym_integer_literal] = ACTIONS(1675), - [sym_real_literal] = ACTIONS(1679), - [anon_sym_DQUOTE] = ACTIONS(1681), - [sym_verbatim_string_literal] = ACTIONS(1679), - [aux_sym_preproc_if_token1] = ACTIONS(1683), + [anon_sym_stackalloc] = ACTIONS(1275), + [anon_sym_sizeof] = ACTIONS(1277), + [anon_sym_typeof] = ACTIONS(1279), + [anon_sym___makeref] = ACTIONS(1281), + [anon_sym___reftype] = ACTIONS(1283), + [anon_sym___refvalue] = ACTIONS(1285), + [sym_null_literal] = ACTIONS(1287), + [anon_sym_SQUOTE] = ACTIONS(1289), + [sym_integer_literal] = ACTIONS(1287), + [sym_real_literal] = ACTIONS(1291), + [anon_sym_DQUOTE] = ACTIONS(1293), + [sym_verbatim_string_literal] = ACTIONS(1291), + [aux_sym_preproc_if_token1] = ACTIONS(1295), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -311490,90 +311376,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1685), - [sym_interpolation_verbatim_start] = ACTIONS(1687), - [sym_interpolation_raw_start] = ACTIONS(1689), - [sym_raw_string_start] = ACTIONS(1691), + [sym_interpolation_regular_start] = ACTIONS(1297), + [sym_interpolation_verbatim_start] = ACTIONS(1299), + [sym_interpolation_raw_start] = ACTIONS(1301), + [sym_raw_string_start] = ACTIONS(1303), }, [1596] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(3184), - [sym__name] = STATE(5906), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2312), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2269), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(4268), - [sym_non_lvalue_expression] = STATE(4541), - [sym_lvalue_expression] = STATE(3165), - [sym__expression_statement_expression] = STATE(4529), - [sym_assignment_expression] = STATE(4543), - [sym_binary_expression] = STATE(4529), - [sym_postfix_unary_expression] = STATE(4543), - [sym_prefix_unary_expression] = STATE(4543), - [sym__pointer_indirection_expression] = STATE(3175), - [sym_query_expression] = STATE(4529), - [sym_from_clause] = STATE(6156), - [sym_conditional_expression] = STATE(4529), - [sym_conditional_access_expression] = STATE(4529), - [sym_as_expression] = STATE(4529), - [sym_is_expression] = STATE(4529), - [sym_is_pattern_expression] = STATE(4529), - [sym_cast_expression] = STATE(4529), - [sym_checked_expression] = STATE(4529), - [sym_invocation_expression] = STATE(4543), - [sym_switch_expression] = STATE(4529), - [sym_await_expression] = STATE(4543), - [sym_throw_expression] = STATE(4529), - [sym_element_access_expression] = STATE(3175), - [sym_interpolated_string_expression] = STATE(4529), - [sym_member_access_expression] = STATE(3175), - [sym_object_creation_expression] = STATE(4543), - [sym_parenthesized_expression] = STATE(4543), - [sym__parenthesized_lvalue_expression] = STATE(3175), - [sym_lambda_expression] = STATE(4529), - [sym__lambda_expression_init] = STATE(7341), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(4529), - [sym_anonymous_method_expression] = STATE(4529), - [sym_anonymous_object_creation_expression] = STATE(4529), - [sym_implicit_array_creation_expression] = STATE(4529), - [sym_implicit_object_creation_expression] = STATE(4529), - [sym_implicit_stackalloc_expression] = STATE(4529), - [sym_initializer_expression] = STATE(4529), - [sym_default_expression] = STATE(4529), - [sym_with_expression] = STATE(4529), - [sym_sizeof_expression] = STATE(4529), - [sym_typeof_expression] = STATE(4529), - [sym_makeref_expression] = STATE(4529), - [sym_ref_expression] = STATE(4529), - [sym_reftype_expression] = STATE(4529), - [sym_refvalue_expression] = STATE(4529), - [sym_stackalloc_expression] = STATE(4529), - [sym_range_expression] = STATE(4529), - [sym_tuple_expression] = STATE(3175), - [sym_literal] = STATE(4529), - [sym_character_literal] = STATE(4536), - [sym_string_literal] = STATE(4536), - [sym_raw_string_literal] = STATE(4536), - [sym_boolean_literal] = STATE(4536), - [sym_identifier] = STATE(2246), - [sym__reserved_identifier] = STATE(2240), - [sym_preproc_if_in_expression] = STATE(4529), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2603), + [sym__name] = STATE(5870), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2379), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(5696), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(2604), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3102), + [sym_postfix_unary_expression] = STATE(3079), + [sym_prefix_unary_expression] = STATE(3079), + [sym__pointer_indirection_expression] = STATE(2602), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6134), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3102), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3079), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2602), + [sym_interpolated_string_expression] = STATE(3102), + [sym_member_access_expression] = STATE(2602), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3079), + [sym__parenthesized_lvalue_expression] = STATE(2602), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7425), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(3102), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3102), + [sym_typeof_expression] = STATE(3102), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2602), + [sym_literal] = STATE(3102), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(1596), [sym_preproc_endregion] = STATE(1596), [sym_preproc_line] = STATE(1596), @@ -311583,216 +311469,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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3363), - [sym__identifier_token] = ACTIONS(1387), - [anon_sym_alias] = ACTIONS(1389), - [anon_sym_global] = ACTIONS(1389), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1391), - [anon_sym_LPAREN] = ACTIONS(1393), - [anon_sym_ref] = ACTIONS(1395), - [anon_sym_LBRACE] = ACTIONS(1397), - [anon_sym_delegate] = ACTIONS(1399), - [anon_sym_async] = ACTIONS(1047), - [anon_sym_file] = ACTIONS(1389), - [anon_sym_new] = ACTIONS(1401), - [anon_sym_where] = ACTIONS(1389), - [anon_sym_notnull] = ACTIONS(1389), - [anon_sym_unmanaged] = ACTIONS(1389), - [anon_sym_checked] = ACTIONS(1403), - [anon_sym_BANG] = ACTIONS(1407), - [anon_sym_TILDE] = ACTIONS(1407), - [anon_sym_PLUS_PLUS] = ACTIONS(1407), - [anon_sym_DASH_DASH] = ACTIONS(1407), - [anon_sym_true] = ACTIONS(1409), - [anon_sym_false] = ACTIONS(1409), - [anon_sym_PLUS] = ACTIONS(1405), - [anon_sym_DASH] = ACTIONS(1405), - [anon_sym_STAR] = ACTIONS(1411), - [anon_sym_CARET] = ACTIONS(1407), - [anon_sym_AMP] = ACTIONS(1407), - [anon_sym_this] = ACTIONS(1413), - [anon_sym_scoped] = ACTIONS(1415), - [anon_sym_base] = ACTIONS(1417), - [anon_sym_var] = ACTIONS(1419), - [sym_predefined_type] = ACTIONS(1421), - [anon_sym_unchecked] = ACTIONS(1403), - [anon_sym_yield] = ACTIONS(1389), - [anon_sym_default] = ACTIONS(1423), - [anon_sym_throw] = ACTIONS(1425), - [anon_sym_when] = ACTIONS(1389), - [anon_sym_await] = ACTIONS(1427), - [anon_sym_DOT_DOT] = ACTIONS(1429), - [anon_sym_from] = ACTIONS(1431), - [anon_sym_into] = ACTIONS(1389), - [anon_sym_join] = ACTIONS(1389), - [anon_sym_on] = ACTIONS(1389), - [anon_sym_equals] = ACTIONS(1389), - [anon_sym_let] = ACTIONS(1389), - [anon_sym_orderby] = ACTIONS(1389), - [anon_sym_ascending] = ACTIONS(1389), - [anon_sym_descending] = ACTIONS(1389), - [anon_sym_group] = ACTIONS(1389), - [anon_sym_by] = ACTIONS(1389), - [anon_sym_select] = ACTIONS(1389), - [anon_sym_stackalloc] = ACTIONS(1433), - [anon_sym_sizeof] = ACTIONS(1435), - [anon_sym_typeof] = ACTIONS(1437), - [anon_sym___makeref] = ACTIONS(1439), - [anon_sym___reftype] = ACTIONS(1441), - [anon_sym___refvalue] = ACTIONS(1443), - [sym_null_literal] = ACTIONS(1445), - [anon_sym_SQUOTE] = ACTIONS(1447), - [sym_integer_literal] = ACTIONS(1445), - [sym_real_literal] = ACTIONS(1449), - [anon_sym_DQUOTE] = ACTIONS(1451), - [sym_verbatim_string_literal] = ACTIONS(1449), - [aux_sym_preproc_if_token1] = ACTIONS(1453), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1455), - [sym_interpolation_verbatim_start] = ACTIONS(1457), - [sym_interpolation_raw_start] = ACTIONS(1459), - [sym_raw_string_start] = ACTIONS(1461), - }, - [1597] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2762), - [sym__name] = STATE(5910), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2204), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(4348), - [sym_non_lvalue_expression] = STATE(3438), - [sym_lvalue_expression] = STATE(3162), - [sym__expression_statement_expression] = STATE(3362), - [sym_assignment_expression] = STATE(3449), - [sym_binary_expression] = STATE(3362), - [sym_postfix_unary_expression] = STATE(3449), - [sym_prefix_unary_expression] = STATE(3449), - [sym__pointer_indirection_expression] = STATE(2747), - [sym_query_expression] = STATE(3362), - [sym_from_clause] = STATE(6171), - [sym_conditional_expression] = STATE(3362), - [sym_conditional_access_expression] = STATE(3362), - [sym_as_expression] = STATE(3362), - [sym_is_expression] = STATE(3362), - [sym_is_pattern_expression] = STATE(3362), - [sym_cast_expression] = STATE(3362), - [sym_checked_expression] = STATE(3362), - [sym_invocation_expression] = STATE(3449), - [sym_switch_expression] = STATE(3362), - [sym_await_expression] = STATE(3449), - [sym_throw_expression] = STATE(3362), - [sym_element_access_expression] = STATE(2747), - [sym_interpolated_string_expression] = STATE(3362), - [sym_member_access_expression] = STATE(2747), - [sym_object_creation_expression] = STATE(3449), - [sym_parenthesized_expression] = STATE(3449), - [sym__parenthesized_lvalue_expression] = STATE(2747), - [sym_lambda_expression] = STATE(3362), - [sym__lambda_expression_init] = STATE(7320), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3362), - [sym_anonymous_method_expression] = STATE(3362), - [sym_anonymous_object_creation_expression] = STATE(3362), - [sym_implicit_array_creation_expression] = STATE(3362), - [sym_implicit_object_creation_expression] = STATE(3362), - [sym_implicit_stackalloc_expression] = STATE(3362), - [sym_initializer_expression] = STATE(3362), - [sym_default_expression] = STATE(3362), - [sym_with_expression] = STATE(3362), - [sym_sizeof_expression] = STATE(3362), - [sym_typeof_expression] = STATE(3362), - [sym_makeref_expression] = STATE(3362), - [sym_ref_expression] = STATE(3362), - [sym_reftype_expression] = STATE(3362), - [sym_refvalue_expression] = STATE(3362), - [sym_stackalloc_expression] = STATE(3362), - [sym_range_expression] = STATE(3362), - [sym_tuple_expression] = STATE(2747), - [sym_literal] = STATE(3362), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3362), - [sym_preproc_if_in_attribute_list] = STATE(5576), - [sym_preproc_region] = STATE(1597), - [sym_preproc_endregion] = STATE(1597), - [sym_preproc_line] = STATE(1597), - [sym_preproc_pragma] = STATE(1597), - [sym_preproc_nullable] = STATE(1597), - [sym_preproc_error] = STATE(1597), - [sym_preproc_warning] = STATE(1597), - [sym_preproc_define] = STATE(1597), - [sym_preproc_undef] = STATE(1597), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3385), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1307), - [anon_sym_LPAREN] = ACTIONS(1343), - [anon_sym_ref] = ACTIONS(1345), - [anon_sym_LBRACE] = ACTIONS(1313), - [anon_sym_delegate] = ACTIONS(1315), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1149), + [anon_sym_LPAREN] = ACTIONS(2947), + [anon_sym_ref] = ACTIONS(715), + [anon_sym_LBRACE] = ACTIONS(1481), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1317), + [anon_sym_new] = ACTIONS(1059), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1319), - [anon_sym_BANG] = ACTIONS(1349), - [anon_sym_TILDE] = ACTIONS(1349), - [anon_sym_PLUS_PLUS] = ACTIONS(1349), - [anon_sym_DASH_DASH] = ACTIONS(1349), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(1525), + [anon_sym_TILDE] = ACTIONS(1525), + [anon_sym_PLUS_PLUS] = ACTIONS(1525), + [anon_sym_DASH_DASH] = ACTIONS(1525), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1347), - [anon_sym_DASH] = ACTIONS(1347), - [anon_sym_STAR] = ACTIONS(1351), - [anon_sym_CARET] = ACTIONS(1349), - [anon_sym_AMP] = ACTIONS(1349), - [anon_sym_this] = ACTIONS(1323), + [anon_sym_PLUS] = ACTIONS(1523), + [anon_sym_DASH] = ACTIONS(1523), + [anon_sym_STAR] = ACTIONS(1831), + [anon_sym_CARET] = ACTIONS(1525), + [anon_sym_AMP] = ACTIONS(1525), + [anon_sym_this] = ACTIONS(1173), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1325), + [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1319), + [sym_predefined_type] = ACTIONS(1177), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1353), + [anon_sym_throw] = ACTIONS(1527), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1355), - [anon_sym_DOT_DOT] = ACTIONS(1357), + [anon_sym_await] = ACTIONS(1529), + [anon_sym_DOT_DOT] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -311805,19 +311522,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1333), + [anon_sym_stackalloc] = ACTIONS(127), [anon_sym_sizeof] = ACTIONS(129), [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(1335), - [anon_sym___reftype] = ACTIONS(1337), - [anon_sym___refvalue] = ACTIONS(1339), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), [sym_null_literal] = ACTIONS(139), [anon_sym_SQUOTE] = ACTIONS(141), [sym_integer_literal] = ACTIONS(139), [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1341), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -311833,2332 +311550,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), }, - [1598] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(3184), - [sym__name] = STATE(5906), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2312), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2269), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(4275), - [sym_non_lvalue_expression] = STATE(4541), - [sym_lvalue_expression] = STATE(3165), - [sym__expression_statement_expression] = STATE(4529), - [sym_assignment_expression] = STATE(4543), - [sym_binary_expression] = STATE(4529), - [sym_postfix_unary_expression] = STATE(4543), - [sym_prefix_unary_expression] = STATE(4543), - [sym__pointer_indirection_expression] = STATE(3175), - [sym_query_expression] = STATE(4529), - [sym_from_clause] = STATE(6156), - [sym_conditional_expression] = STATE(4529), - [sym_conditional_access_expression] = STATE(4529), - [sym_as_expression] = STATE(4529), - [sym_is_expression] = STATE(4529), - [sym_is_pattern_expression] = STATE(4529), - [sym_cast_expression] = STATE(4529), - [sym_checked_expression] = STATE(4529), - [sym_invocation_expression] = STATE(4543), - [sym_switch_expression] = STATE(4529), - [sym_await_expression] = STATE(4543), - [sym_throw_expression] = STATE(4529), - [sym_element_access_expression] = STATE(3175), - [sym_interpolated_string_expression] = STATE(4529), - [sym_member_access_expression] = STATE(3175), - [sym_object_creation_expression] = STATE(4543), - [sym_parenthesized_expression] = STATE(4543), - [sym__parenthesized_lvalue_expression] = STATE(3175), - [sym_lambda_expression] = STATE(4529), - [sym__lambda_expression_init] = STATE(7341), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(4529), - [sym_anonymous_method_expression] = STATE(4529), - [sym_anonymous_object_creation_expression] = STATE(4529), - [sym_implicit_array_creation_expression] = STATE(4529), - [sym_implicit_object_creation_expression] = STATE(4529), - [sym_implicit_stackalloc_expression] = STATE(4529), - [sym_initializer_expression] = STATE(4529), - [sym_default_expression] = STATE(4529), - [sym_with_expression] = STATE(4529), - [sym_sizeof_expression] = STATE(4529), - [sym_typeof_expression] = STATE(4529), - [sym_makeref_expression] = STATE(4529), - [sym_ref_expression] = STATE(4529), - [sym_reftype_expression] = STATE(4529), - [sym_refvalue_expression] = STATE(4529), - [sym_stackalloc_expression] = STATE(4529), - [sym_range_expression] = STATE(4529), - [sym_tuple_expression] = STATE(3175), - [sym_literal] = STATE(4529), - [sym_character_literal] = STATE(4536), - [sym_string_literal] = STATE(4536), - [sym_raw_string_literal] = STATE(4536), - [sym_boolean_literal] = STATE(4536), - [sym_identifier] = STATE(2246), - [sym__reserved_identifier] = STATE(2240), - [sym_preproc_if_in_expression] = STATE(4529), - [sym_preproc_if_in_attribute_list] = STATE(5576), - [sym_preproc_region] = STATE(1598), - [sym_preproc_endregion] = STATE(1598), - [sym_preproc_line] = STATE(1598), - [sym_preproc_pragma] = STATE(1598), - [sym_preproc_nullable] = STATE(1598), - [sym_preproc_error] = STATE(1598), - [sym_preproc_warning] = STATE(1598), - [sym_preproc_define] = STATE(1598), - [sym_preproc_undef] = STATE(1598), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3363), - [sym__identifier_token] = ACTIONS(1387), - [anon_sym_alias] = ACTIONS(1389), - [anon_sym_global] = ACTIONS(1389), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1391), - [anon_sym_LPAREN] = ACTIONS(1393), - [anon_sym_ref] = ACTIONS(1395), - [anon_sym_LBRACE] = ACTIONS(1397), - [anon_sym_delegate] = ACTIONS(1399), - [anon_sym_async] = ACTIONS(1047), - [anon_sym_file] = ACTIONS(1389), - [anon_sym_new] = ACTIONS(1401), - [anon_sym_where] = ACTIONS(1389), - [anon_sym_notnull] = ACTIONS(1389), - [anon_sym_unmanaged] = ACTIONS(1389), - [anon_sym_checked] = ACTIONS(1403), - [anon_sym_BANG] = ACTIONS(1407), - [anon_sym_TILDE] = ACTIONS(1407), - [anon_sym_PLUS_PLUS] = ACTIONS(1407), - [anon_sym_DASH_DASH] = ACTIONS(1407), - [anon_sym_true] = ACTIONS(1409), - [anon_sym_false] = ACTIONS(1409), - [anon_sym_PLUS] = ACTIONS(1405), - [anon_sym_DASH] = ACTIONS(1405), - [anon_sym_STAR] = ACTIONS(1411), - [anon_sym_CARET] = ACTIONS(1407), - [anon_sym_AMP] = ACTIONS(1407), - [anon_sym_this] = ACTIONS(1413), - [anon_sym_scoped] = ACTIONS(1415), - [anon_sym_base] = ACTIONS(1417), - [anon_sym_var] = ACTIONS(1419), - [sym_predefined_type] = ACTIONS(1421), - [anon_sym_unchecked] = ACTIONS(1403), - [anon_sym_yield] = ACTIONS(1389), - [anon_sym_default] = ACTIONS(1423), - [anon_sym_throw] = ACTIONS(1425), - [anon_sym_when] = ACTIONS(1389), - [anon_sym_await] = ACTIONS(1427), - [anon_sym_DOT_DOT] = ACTIONS(1429), - [anon_sym_from] = ACTIONS(1431), - [anon_sym_into] = ACTIONS(1389), - [anon_sym_join] = ACTIONS(1389), - [anon_sym_on] = ACTIONS(1389), - [anon_sym_equals] = ACTIONS(1389), - [anon_sym_let] = ACTIONS(1389), - [anon_sym_orderby] = ACTIONS(1389), - [anon_sym_ascending] = ACTIONS(1389), - [anon_sym_descending] = ACTIONS(1389), - [anon_sym_group] = ACTIONS(1389), - [anon_sym_by] = ACTIONS(1389), - [anon_sym_select] = ACTIONS(1389), - [anon_sym_stackalloc] = ACTIONS(1433), - [anon_sym_sizeof] = ACTIONS(1435), - [anon_sym_typeof] = ACTIONS(1437), - [anon_sym___makeref] = ACTIONS(1439), - [anon_sym___reftype] = ACTIONS(1441), - [anon_sym___refvalue] = ACTIONS(1443), - [sym_null_literal] = ACTIONS(1445), - [anon_sym_SQUOTE] = ACTIONS(1447), - [sym_integer_literal] = ACTIONS(1445), - [sym_real_literal] = ACTIONS(1449), - [anon_sym_DQUOTE] = ACTIONS(1451), - [sym_verbatim_string_literal] = ACTIONS(1449), - [aux_sym_preproc_if_token1] = ACTIONS(1453), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1455), - [sym_interpolation_verbatim_start] = ACTIONS(1457), - [sym_interpolation_raw_start] = ACTIONS(1459), - [sym_raw_string_start] = ACTIONS(1461), - }, - [1599] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(3184), - [sym__name] = STATE(5906), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2312), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2269), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(4298), - [sym_non_lvalue_expression] = STATE(4541), - [sym_lvalue_expression] = STATE(3165), - [sym__expression_statement_expression] = STATE(4529), - [sym_assignment_expression] = STATE(4543), - [sym_binary_expression] = STATE(4529), - [sym_postfix_unary_expression] = STATE(4543), - [sym_prefix_unary_expression] = STATE(4543), - [sym__pointer_indirection_expression] = STATE(3175), - [sym_query_expression] = STATE(4529), - [sym_from_clause] = STATE(6156), - [sym_conditional_expression] = STATE(4529), - [sym_conditional_access_expression] = STATE(4529), - [sym_as_expression] = STATE(4529), - [sym_is_expression] = STATE(4529), - [sym_is_pattern_expression] = STATE(4529), - [sym_cast_expression] = STATE(4529), - [sym_checked_expression] = STATE(4529), - [sym_invocation_expression] = STATE(4543), - [sym_switch_expression] = STATE(4529), - [sym_await_expression] = STATE(4543), - [sym_throw_expression] = STATE(4529), - [sym_element_access_expression] = STATE(3175), - [sym_interpolated_string_expression] = STATE(4529), - [sym_member_access_expression] = STATE(3175), - [sym_object_creation_expression] = STATE(4543), - [sym_parenthesized_expression] = STATE(4543), - [sym__parenthesized_lvalue_expression] = STATE(3175), - [sym_lambda_expression] = STATE(4529), - [sym__lambda_expression_init] = STATE(7341), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(4529), - [sym_anonymous_method_expression] = STATE(4529), - [sym_anonymous_object_creation_expression] = STATE(4529), - [sym_implicit_array_creation_expression] = STATE(4529), - [sym_implicit_object_creation_expression] = STATE(4529), - [sym_implicit_stackalloc_expression] = STATE(4529), - [sym_initializer_expression] = STATE(4529), - [sym_default_expression] = STATE(4529), - [sym_with_expression] = STATE(4529), - [sym_sizeof_expression] = STATE(4529), - [sym_typeof_expression] = STATE(4529), - [sym_makeref_expression] = STATE(4529), - [sym_ref_expression] = STATE(4529), - [sym_reftype_expression] = STATE(4529), - [sym_refvalue_expression] = STATE(4529), - [sym_stackalloc_expression] = STATE(4529), - [sym_range_expression] = STATE(4529), - [sym_tuple_expression] = STATE(3175), - [sym_literal] = STATE(4529), - [sym_character_literal] = STATE(4536), - [sym_string_literal] = STATE(4536), - [sym_raw_string_literal] = STATE(4536), - [sym_boolean_literal] = STATE(4536), - [sym_identifier] = STATE(2246), - [sym__reserved_identifier] = STATE(2240), - [sym_preproc_if_in_expression] = STATE(4529), - [sym_preproc_if_in_attribute_list] = STATE(5576), - [sym_preproc_region] = STATE(1599), - [sym_preproc_endregion] = STATE(1599), - [sym_preproc_line] = STATE(1599), - [sym_preproc_pragma] = STATE(1599), - [sym_preproc_nullable] = STATE(1599), - [sym_preproc_error] = STATE(1599), - [sym_preproc_warning] = STATE(1599), - [sym_preproc_define] = STATE(1599), - [sym_preproc_undef] = STATE(1599), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3363), - [sym__identifier_token] = ACTIONS(1387), - [anon_sym_alias] = ACTIONS(1389), - [anon_sym_global] = ACTIONS(1389), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1391), - [anon_sym_LPAREN] = ACTIONS(1393), - [anon_sym_ref] = ACTIONS(1395), - [anon_sym_LBRACE] = ACTIONS(1397), - [anon_sym_delegate] = ACTIONS(1399), - [anon_sym_async] = ACTIONS(1047), - [anon_sym_file] = ACTIONS(1389), - [anon_sym_new] = ACTIONS(1401), - [anon_sym_where] = ACTIONS(1389), - [anon_sym_notnull] = ACTIONS(1389), - [anon_sym_unmanaged] = ACTIONS(1389), - [anon_sym_checked] = ACTIONS(1403), - [anon_sym_BANG] = ACTIONS(1407), - [anon_sym_TILDE] = ACTIONS(1407), - [anon_sym_PLUS_PLUS] = ACTIONS(1407), - [anon_sym_DASH_DASH] = ACTIONS(1407), - [anon_sym_true] = ACTIONS(1409), - [anon_sym_false] = ACTIONS(1409), - [anon_sym_PLUS] = ACTIONS(1405), - [anon_sym_DASH] = ACTIONS(1405), - [anon_sym_STAR] = ACTIONS(1411), - [anon_sym_CARET] = ACTIONS(1407), - [anon_sym_AMP] = ACTIONS(1407), - [anon_sym_this] = ACTIONS(1413), - [anon_sym_scoped] = ACTIONS(1415), - [anon_sym_base] = ACTIONS(1417), - [anon_sym_var] = ACTIONS(1419), - [sym_predefined_type] = ACTIONS(1421), - [anon_sym_unchecked] = ACTIONS(1403), - [anon_sym_yield] = ACTIONS(1389), - [anon_sym_default] = ACTIONS(1423), - [anon_sym_throw] = ACTIONS(1425), - [anon_sym_when] = ACTIONS(1389), - [anon_sym_await] = ACTIONS(1427), - [anon_sym_DOT_DOT] = ACTIONS(1429), - [anon_sym_from] = ACTIONS(1431), - [anon_sym_into] = ACTIONS(1389), - [anon_sym_join] = ACTIONS(1389), - [anon_sym_on] = ACTIONS(1389), - [anon_sym_equals] = ACTIONS(1389), - [anon_sym_let] = ACTIONS(1389), - [anon_sym_orderby] = ACTIONS(1389), - [anon_sym_ascending] = ACTIONS(1389), - [anon_sym_descending] = ACTIONS(1389), - [anon_sym_group] = ACTIONS(1389), - [anon_sym_by] = ACTIONS(1389), - [anon_sym_select] = ACTIONS(1389), - [anon_sym_stackalloc] = ACTIONS(1433), - [anon_sym_sizeof] = ACTIONS(1435), - [anon_sym_typeof] = ACTIONS(1437), - [anon_sym___makeref] = ACTIONS(1439), - [anon_sym___reftype] = ACTIONS(1441), - [anon_sym___refvalue] = ACTIONS(1443), - [sym_null_literal] = ACTIONS(1445), - [anon_sym_SQUOTE] = ACTIONS(1447), - [sym_integer_literal] = ACTIONS(1445), - [sym_real_literal] = ACTIONS(1449), - [anon_sym_DQUOTE] = ACTIONS(1451), - [sym_verbatim_string_literal] = ACTIONS(1449), - [aux_sym_preproc_if_token1] = ACTIONS(1453), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1455), - [sym_interpolation_verbatim_start] = ACTIONS(1457), - [sym_interpolation_raw_start] = ACTIONS(1459), - [sym_raw_string_start] = ACTIONS(1461), - }, - [1600] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(3184), - [sym__name] = STATE(5906), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2312), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2269), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(4299), - [sym_non_lvalue_expression] = STATE(4541), - [sym_lvalue_expression] = STATE(3165), - [sym__expression_statement_expression] = STATE(4529), - [sym_assignment_expression] = STATE(4543), - [sym_binary_expression] = STATE(4529), - [sym_postfix_unary_expression] = STATE(4543), - [sym_prefix_unary_expression] = STATE(4543), - [sym__pointer_indirection_expression] = STATE(3175), - [sym_query_expression] = STATE(4529), - [sym_from_clause] = STATE(6156), - [sym_conditional_expression] = STATE(4529), - [sym_conditional_access_expression] = STATE(4529), - [sym_as_expression] = STATE(4529), - [sym_is_expression] = STATE(4529), - [sym_is_pattern_expression] = STATE(4529), - [sym_cast_expression] = STATE(4529), - [sym_checked_expression] = STATE(4529), - [sym_invocation_expression] = STATE(4543), - [sym_switch_expression] = STATE(4529), - [sym_await_expression] = STATE(4543), - [sym_throw_expression] = STATE(4529), - [sym_element_access_expression] = STATE(3175), - [sym_interpolated_string_expression] = STATE(4529), - [sym_member_access_expression] = STATE(3175), - [sym_object_creation_expression] = STATE(4543), - [sym_parenthesized_expression] = STATE(4543), - [sym__parenthesized_lvalue_expression] = STATE(3175), - [sym_lambda_expression] = STATE(4529), - [sym__lambda_expression_init] = STATE(7341), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(4529), - [sym_anonymous_method_expression] = STATE(4529), - [sym_anonymous_object_creation_expression] = STATE(4529), - [sym_implicit_array_creation_expression] = STATE(4529), - [sym_implicit_object_creation_expression] = STATE(4529), - [sym_implicit_stackalloc_expression] = STATE(4529), - [sym_initializer_expression] = STATE(4529), - [sym_default_expression] = STATE(4529), - [sym_with_expression] = STATE(4529), - [sym_sizeof_expression] = STATE(4529), - [sym_typeof_expression] = STATE(4529), - [sym_makeref_expression] = STATE(4529), - [sym_ref_expression] = STATE(4529), - [sym_reftype_expression] = STATE(4529), - [sym_refvalue_expression] = STATE(4529), - [sym_stackalloc_expression] = STATE(4529), - [sym_range_expression] = STATE(4529), - [sym_tuple_expression] = STATE(3175), - [sym_literal] = STATE(4529), - [sym_character_literal] = STATE(4536), - [sym_string_literal] = STATE(4536), - [sym_raw_string_literal] = STATE(4536), - [sym_boolean_literal] = STATE(4536), - [sym_identifier] = STATE(2246), - [sym__reserved_identifier] = STATE(2240), - [sym_preproc_if_in_expression] = STATE(4529), - [sym_preproc_if_in_attribute_list] = STATE(5576), - [sym_preproc_region] = STATE(1600), - [sym_preproc_endregion] = STATE(1600), - [sym_preproc_line] = STATE(1600), - [sym_preproc_pragma] = STATE(1600), - [sym_preproc_nullable] = STATE(1600), - [sym_preproc_error] = STATE(1600), - [sym_preproc_warning] = STATE(1600), - [sym_preproc_define] = STATE(1600), - [sym_preproc_undef] = STATE(1600), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3363), - [sym__identifier_token] = ACTIONS(1387), - [anon_sym_alias] = ACTIONS(1389), - [anon_sym_global] = ACTIONS(1389), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1391), - [anon_sym_LPAREN] = ACTIONS(1393), - [anon_sym_ref] = ACTIONS(1395), - [anon_sym_LBRACE] = ACTIONS(1397), - [anon_sym_delegate] = ACTIONS(1399), - [anon_sym_async] = ACTIONS(1047), - [anon_sym_file] = ACTIONS(1389), - [anon_sym_new] = ACTIONS(1401), - [anon_sym_where] = ACTIONS(1389), - [anon_sym_notnull] = ACTIONS(1389), - [anon_sym_unmanaged] = ACTIONS(1389), - [anon_sym_checked] = ACTIONS(1403), - [anon_sym_BANG] = ACTIONS(1407), - [anon_sym_TILDE] = ACTIONS(1407), - [anon_sym_PLUS_PLUS] = ACTIONS(1407), - [anon_sym_DASH_DASH] = ACTIONS(1407), - [anon_sym_true] = ACTIONS(1409), - [anon_sym_false] = ACTIONS(1409), - [anon_sym_PLUS] = ACTIONS(1405), - [anon_sym_DASH] = ACTIONS(1405), - [anon_sym_STAR] = ACTIONS(1411), - [anon_sym_CARET] = ACTIONS(1407), - [anon_sym_AMP] = ACTIONS(1407), - [anon_sym_this] = ACTIONS(1413), - [anon_sym_scoped] = ACTIONS(1415), - [anon_sym_base] = ACTIONS(1417), - [anon_sym_var] = ACTIONS(1419), - [sym_predefined_type] = ACTIONS(1421), - [anon_sym_unchecked] = ACTIONS(1403), - [anon_sym_yield] = ACTIONS(1389), - [anon_sym_default] = ACTIONS(1423), - [anon_sym_throw] = ACTIONS(1425), - [anon_sym_when] = ACTIONS(1389), - [anon_sym_await] = ACTIONS(1427), - [anon_sym_DOT_DOT] = ACTIONS(1429), - [anon_sym_from] = ACTIONS(1431), - [anon_sym_into] = ACTIONS(1389), - [anon_sym_join] = ACTIONS(1389), - [anon_sym_on] = ACTIONS(1389), - [anon_sym_equals] = ACTIONS(1389), - [anon_sym_let] = ACTIONS(1389), - [anon_sym_orderby] = ACTIONS(1389), - [anon_sym_ascending] = ACTIONS(1389), - [anon_sym_descending] = ACTIONS(1389), - [anon_sym_group] = ACTIONS(1389), - [anon_sym_by] = ACTIONS(1389), - [anon_sym_select] = ACTIONS(1389), - [anon_sym_stackalloc] = ACTIONS(1433), - [anon_sym_sizeof] = ACTIONS(1435), - [anon_sym_typeof] = ACTIONS(1437), - [anon_sym___makeref] = ACTIONS(1439), - [anon_sym___reftype] = ACTIONS(1441), - [anon_sym___refvalue] = ACTIONS(1443), - [sym_null_literal] = ACTIONS(1445), - [anon_sym_SQUOTE] = ACTIONS(1447), - [sym_integer_literal] = ACTIONS(1445), - [sym_real_literal] = ACTIONS(1449), - [anon_sym_DQUOTE] = ACTIONS(1451), - [sym_verbatim_string_literal] = ACTIONS(1449), - [aux_sym_preproc_if_token1] = ACTIONS(1453), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1455), - [sym_interpolation_verbatim_start] = ACTIONS(1457), - [sym_interpolation_raw_start] = ACTIONS(1459), - [sym_raw_string_start] = ACTIONS(1461), - }, - [1601] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(3184), - [sym__name] = STATE(5906), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2312), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2269), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(4300), - [sym_non_lvalue_expression] = STATE(4541), - [sym_lvalue_expression] = STATE(3165), - [sym__expression_statement_expression] = STATE(4529), - [sym_assignment_expression] = STATE(4543), - [sym_binary_expression] = STATE(4529), - [sym_postfix_unary_expression] = STATE(4543), - [sym_prefix_unary_expression] = STATE(4543), - [sym__pointer_indirection_expression] = STATE(3175), - [sym_query_expression] = STATE(4529), - [sym_from_clause] = STATE(6156), - [sym_conditional_expression] = STATE(4529), - [sym_conditional_access_expression] = STATE(4529), - [sym_as_expression] = STATE(4529), - [sym_is_expression] = STATE(4529), - [sym_is_pattern_expression] = STATE(4529), - [sym_cast_expression] = STATE(4529), - [sym_checked_expression] = STATE(4529), - [sym_invocation_expression] = STATE(4543), - [sym_switch_expression] = STATE(4529), - [sym_await_expression] = STATE(4543), - [sym_throw_expression] = STATE(4529), - [sym_element_access_expression] = STATE(3175), - [sym_interpolated_string_expression] = STATE(4529), - [sym_member_access_expression] = STATE(3175), - [sym_object_creation_expression] = STATE(4543), - [sym_parenthesized_expression] = STATE(4543), - [sym__parenthesized_lvalue_expression] = STATE(3175), - [sym_lambda_expression] = STATE(4529), - [sym__lambda_expression_init] = STATE(7341), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(4529), - [sym_anonymous_method_expression] = STATE(4529), - [sym_anonymous_object_creation_expression] = STATE(4529), - [sym_implicit_array_creation_expression] = STATE(4529), - [sym_implicit_object_creation_expression] = STATE(4529), - [sym_implicit_stackalloc_expression] = STATE(4529), - [sym_initializer_expression] = STATE(4529), - [sym_default_expression] = STATE(4529), - [sym_with_expression] = STATE(4529), - [sym_sizeof_expression] = STATE(4529), - [sym_typeof_expression] = STATE(4529), - [sym_makeref_expression] = STATE(4529), - [sym_ref_expression] = STATE(4529), - [sym_reftype_expression] = STATE(4529), - [sym_refvalue_expression] = STATE(4529), - [sym_stackalloc_expression] = STATE(4529), - [sym_range_expression] = STATE(4529), - [sym_tuple_expression] = STATE(3175), - [sym_literal] = STATE(4529), - [sym_character_literal] = STATE(4536), - [sym_string_literal] = STATE(4536), - [sym_raw_string_literal] = STATE(4536), - [sym_boolean_literal] = STATE(4536), - [sym_identifier] = STATE(2246), - [sym__reserved_identifier] = STATE(2240), - [sym_preproc_if_in_expression] = STATE(4529), - [sym_preproc_if_in_attribute_list] = STATE(5576), - [sym_preproc_region] = STATE(1601), - [sym_preproc_endregion] = STATE(1601), - [sym_preproc_line] = STATE(1601), - [sym_preproc_pragma] = STATE(1601), - [sym_preproc_nullable] = STATE(1601), - [sym_preproc_error] = STATE(1601), - [sym_preproc_warning] = STATE(1601), - [sym_preproc_define] = STATE(1601), - [sym_preproc_undef] = STATE(1601), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3363), - [sym__identifier_token] = ACTIONS(1387), - [anon_sym_alias] = ACTIONS(1389), - [anon_sym_global] = ACTIONS(1389), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1391), - [anon_sym_LPAREN] = ACTIONS(1393), - [anon_sym_ref] = ACTIONS(1395), - [anon_sym_LBRACE] = ACTIONS(1397), - [anon_sym_delegate] = ACTIONS(1399), - [anon_sym_async] = ACTIONS(1047), - [anon_sym_file] = ACTIONS(1389), - [anon_sym_new] = ACTIONS(1401), - [anon_sym_where] = ACTIONS(1389), - [anon_sym_notnull] = ACTIONS(1389), - [anon_sym_unmanaged] = ACTIONS(1389), - [anon_sym_checked] = ACTIONS(1403), - [anon_sym_BANG] = ACTIONS(1407), - [anon_sym_TILDE] = ACTIONS(1407), - [anon_sym_PLUS_PLUS] = ACTIONS(1407), - [anon_sym_DASH_DASH] = ACTIONS(1407), - [anon_sym_true] = ACTIONS(1409), - [anon_sym_false] = ACTIONS(1409), - [anon_sym_PLUS] = ACTIONS(1405), - [anon_sym_DASH] = ACTIONS(1405), - [anon_sym_STAR] = ACTIONS(1411), - [anon_sym_CARET] = ACTIONS(1407), - [anon_sym_AMP] = ACTIONS(1407), - [anon_sym_this] = ACTIONS(1413), - [anon_sym_scoped] = ACTIONS(1415), - [anon_sym_base] = ACTIONS(1417), - [anon_sym_var] = ACTIONS(1419), - [sym_predefined_type] = ACTIONS(1421), - [anon_sym_unchecked] = ACTIONS(1403), - [anon_sym_yield] = ACTIONS(1389), - [anon_sym_default] = ACTIONS(1423), - [anon_sym_throw] = ACTIONS(1425), - [anon_sym_when] = ACTIONS(1389), - [anon_sym_await] = ACTIONS(1427), - [anon_sym_DOT_DOT] = ACTIONS(1429), - [anon_sym_from] = ACTIONS(1431), - [anon_sym_into] = ACTIONS(1389), - [anon_sym_join] = ACTIONS(1389), - [anon_sym_on] = ACTIONS(1389), - [anon_sym_equals] = ACTIONS(1389), - [anon_sym_let] = ACTIONS(1389), - [anon_sym_orderby] = ACTIONS(1389), - [anon_sym_ascending] = ACTIONS(1389), - [anon_sym_descending] = ACTIONS(1389), - [anon_sym_group] = ACTIONS(1389), - [anon_sym_by] = ACTIONS(1389), - [anon_sym_select] = ACTIONS(1389), - [anon_sym_stackalloc] = ACTIONS(1433), - [anon_sym_sizeof] = ACTIONS(1435), - [anon_sym_typeof] = ACTIONS(1437), - [anon_sym___makeref] = ACTIONS(1439), - [anon_sym___reftype] = ACTIONS(1441), - [anon_sym___refvalue] = ACTIONS(1443), - [sym_null_literal] = ACTIONS(1445), - [anon_sym_SQUOTE] = ACTIONS(1447), - [sym_integer_literal] = ACTIONS(1445), - [sym_real_literal] = ACTIONS(1449), - [anon_sym_DQUOTE] = ACTIONS(1451), - [sym_verbatim_string_literal] = ACTIONS(1449), - [aux_sym_preproc_if_token1] = ACTIONS(1453), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1455), - [sym_interpolation_verbatim_start] = ACTIONS(1457), - [sym_interpolation_raw_start] = ACTIONS(1459), - [sym_raw_string_start] = ACTIONS(1461), - }, - [1602] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(3184), - [sym__name] = STATE(5906), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2312), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2269), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(4287), - [sym_non_lvalue_expression] = STATE(4541), - [sym_lvalue_expression] = STATE(3165), - [sym__expression_statement_expression] = STATE(4529), - [sym_assignment_expression] = STATE(4543), - [sym_binary_expression] = STATE(4529), - [sym_postfix_unary_expression] = STATE(4543), - [sym_prefix_unary_expression] = STATE(4543), - [sym__pointer_indirection_expression] = STATE(3175), - [sym_query_expression] = STATE(4529), - [sym_from_clause] = STATE(6156), - [sym_conditional_expression] = STATE(4529), - [sym_conditional_access_expression] = STATE(4529), - [sym_as_expression] = STATE(4529), - [sym_is_expression] = STATE(4529), - [sym_is_pattern_expression] = STATE(4529), - [sym_cast_expression] = STATE(4529), - [sym_checked_expression] = STATE(4529), - [sym_invocation_expression] = STATE(4543), - [sym_switch_expression] = STATE(4529), - [sym_await_expression] = STATE(4543), - [sym_throw_expression] = STATE(4529), - [sym_element_access_expression] = STATE(3175), - [sym_interpolated_string_expression] = STATE(4529), - [sym_member_access_expression] = STATE(3175), - [sym_object_creation_expression] = STATE(4543), - [sym_parenthesized_expression] = STATE(4543), - [sym__parenthesized_lvalue_expression] = STATE(3175), - [sym_lambda_expression] = STATE(4529), - [sym__lambda_expression_init] = STATE(7341), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(4529), - [sym_anonymous_method_expression] = STATE(4529), - [sym_anonymous_object_creation_expression] = STATE(4529), - [sym_implicit_array_creation_expression] = STATE(4529), - [sym_implicit_object_creation_expression] = STATE(4529), - [sym_implicit_stackalloc_expression] = STATE(4529), - [sym_initializer_expression] = STATE(4529), - [sym_default_expression] = STATE(4529), - [sym_with_expression] = STATE(4529), - [sym_sizeof_expression] = STATE(4529), - [sym_typeof_expression] = STATE(4529), - [sym_makeref_expression] = STATE(4529), - [sym_ref_expression] = STATE(4529), - [sym_reftype_expression] = STATE(4529), - [sym_refvalue_expression] = STATE(4529), - [sym_stackalloc_expression] = STATE(4529), - [sym_range_expression] = STATE(4529), - [sym_tuple_expression] = STATE(3175), - [sym_literal] = STATE(4529), - [sym_character_literal] = STATE(4536), - [sym_string_literal] = STATE(4536), - [sym_raw_string_literal] = STATE(4536), - [sym_boolean_literal] = STATE(4536), - [sym_identifier] = STATE(2246), - [sym__reserved_identifier] = STATE(2240), - [sym_preproc_if_in_expression] = STATE(4529), - [sym_preproc_if_in_attribute_list] = STATE(5576), - [sym_preproc_region] = STATE(1602), - [sym_preproc_endregion] = STATE(1602), - [sym_preproc_line] = STATE(1602), - [sym_preproc_pragma] = STATE(1602), - [sym_preproc_nullable] = STATE(1602), - [sym_preproc_error] = STATE(1602), - [sym_preproc_warning] = STATE(1602), - [sym_preproc_define] = STATE(1602), - [sym_preproc_undef] = STATE(1602), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3363), - [sym__identifier_token] = ACTIONS(1387), - [anon_sym_alias] = ACTIONS(1389), - [anon_sym_global] = ACTIONS(1389), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1391), - [anon_sym_LPAREN] = ACTIONS(1393), - [anon_sym_ref] = ACTIONS(1395), - [anon_sym_LBRACE] = ACTIONS(1397), - [anon_sym_delegate] = ACTIONS(1399), - [anon_sym_async] = ACTIONS(1047), - [anon_sym_file] = ACTIONS(1389), - [anon_sym_new] = ACTIONS(1401), - [anon_sym_where] = ACTIONS(1389), - [anon_sym_notnull] = ACTIONS(1389), - [anon_sym_unmanaged] = ACTIONS(1389), - [anon_sym_checked] = ACTIONS(1403), - [anon_sym_BANG] = ACTIONS(1407), - [anon_sym_TILDE] = ACTIONS(1407), - [anon_sym_PLUS_PLUS] = ACTIONS(1407), - [anon_sym_DASH_DASH] = ACTIONS(1407), - [anon_sym_true] = ACTIONS(1409), - [anon_sym_false] = ACTIONS(1409), - [anon_sym_PLUS] = ACTIONS(1405), - [anon_sym_DASH] = ACTIONS(1405), - [anon_sym_STAR] = ACTIONS(1411), - [anon_sym_CARET] = ACTIONS(1407), - [anon_sym_AMP] = ACTIONS(1407), - [anon_sym_this] = ACTIONS(1413), - [anon_sym_scoped] = ACTIONS(1415), - [anon_sym_base] = ACTIONS(1417), - [anon_sym_var] = ACTIONS(1419), - [sym_predefined_type] = ACTIONS(1421), - [anon_sym_unchecked] = ACTIONS(1403), - [anon_sym_yield] = ACTIONS(1389), - [anon_sym_default] = ACTIONS(1423), - [anon_sym_throw] = ACTIONS(1425), - [anon_sym_when] = ACTIONS(1389), - [anon_sym_await] = ACTIONS(1427), - [anon_sym_DOT_DOT] = ACTIONS(1429), - [anon_sym_from] = ACTIONS(1431), - [anon_sym_into] = ACTIONS(1389), - [anon_sym_join] = ACTIONS(1389), - [anon_sym_on] = ACTIONS(1389), - [anon_sym_equals] = ACTIONS(1389), - [anon_sym_let] = ACTIONS(1389), - [anon_sym_orderby] = ACTIONS(1389), - [anon_sym_ascending] = ACTIONS(1389), - [anon_sym_descending] = ACTIONS(1389), - [anon_sym_group] = ACTIONS(1389), - [anon_sym_by] = ACTIONS(1389), - [anon_sym_select] = ACTIONS(1389), - [anon_sym_stackalloc] = ACTIONS(1433), - [anon_sym_sizeof] = ACTIONS(1435), - [anon_sym_typeof] = ACTIONS(1437), - [anon_sym___makeref] = ACTIONS(1439), - [anon_sym___reftype] = ACTIONS(1441), - [anon_sym___refvalue] = ACTIONS(1443), - [sym_null_literal] = ACTIONS(1445), - [anon_sym_SQUOTE] = ACTIONS(1447), - [sym_integer_literal] = ACTIONS(1445), - [sym_real_literal] = ACTIONS(1449), - [anon_sym_DQUOTE] = ACTIONS(1451), - [sym_verbatim_string_literal] = ACTIONS(1449), - [aux_sym_preproc_if_token1] = ACTIONS(1453), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1455), - [sym_interpolation_verbatim_start] = ACTIONS(1457), - [sym_interpolation_raw_start] = ACTIONS(1459), - [sym_raw_string_start] = ACTIONS(1461), - }, - [1603] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(3184), - [sym__name] = STATE(5906), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2312), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2269), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(4288), - [sym_non_lvalue_expression] = STATE(4541), - [sym_lvalue_expression] = STATE(3165), - [sym__expression_statement_expression] = STATE(4529), - [sym_assignment_expression] = STATE(4543), - [sym_binary_expression] = STATE(4529), - [sym_postfix_unary_expression] = STATE(4543), - [sym_prefix_unary_expression] = STATE(4543), - [sym__pointer_indirection_expression] = STATE(3175), - [sym_query_expression] = STATE(4529), - [sym_from_clause] = STATE(6156), - [sym_conditional_expression] = STATE(4529), - [sym_conditional_access_expression] = STATE(4529), - [sym_as_expression] = STATE(4529), - [sym_is_expression] = STATE(4529), - [sym_is_pattern_expression] = STATE(4529), - [sym_cast_expression] = STATE(4529), - [sym_checked_expression] = STATE(4529), - [sym_invocation_expression] = STATE(4543), - [sym_switch_expression] = STATE(4529), - [sym_await_expression] = STATE(4543), - [sym_throw_expression] = STATE(4529), - [sym_element_access_expression] = STATE(3175), - [sym_interpolated_string_expression] = STATE(4529), - [sym_member_access_expression] = STATE(3175), - [sym_object_creation_expression] = STATE(4543), - [sym_parenthesized_expression] = STATE(4543), - [sym__parenthesized_lvalue_expression] = STATE(3175), - [sym_lambda_expression] = STATE(4529), - [sym__lambda_expression_init] = STATE(7341), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(4529), - [sym_anonymous_method_expression] = STATE(4529), - [sym_anonymous_object_creation_expression] = STATE(4529), - [sym_implicit_array_creation_expression] = STATE(4529), - [sym_implicit_object_creation_expression] = STATE(4529), - [sym_implicit_stackalloc_expression] = STATE(4529), - [sym_initializer_expression] = STATE(4529), - [sym_default_expression] = STATE(4529), - [sym_with_expression] = STATE(4529), - [sym_sizeof_expression] = STATE(4529), - [sym_typeof_expression] = STATE(4529), - [sym_makeref_expression] = STATE(4529), - [sym_ref_expression] = STATE(4529), - [sym_reftype_expression] = STATE(4529), - [sym_refvalue_expression] = STATE(4529), - [sym_stackalloc_expression] = STATE(4529), - [sym_range_expression] = STATE(4529), - [sym_tuple_expression] = STATE(3175), - [sym_literal] = STATE(4529), - [sym_character_literal] = STATE(4536), - [sym_string_literal] = STATE(4536), - [sym_raw_string_literal] = STATE(4536), - [sym_boolean_literal] = STATE(4536), - [sym_identifier] = STATE(2246), - [sym__reserved_identifier] = STATE(2240), - [sym_preproc_if_in_expression] = STATE(4529), - [sym_preproc_if_in_attribute_list] = STATE(5576), - [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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3363), - [sym__identifier_token] = ACTIONS(1387), - [anon_sym_alias] = ACTIONS(1389), - [anon_sym_global] = ACTIONS(1389), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1391), - [anon_sym_LPAREN] = ACTIONS(1393), - [anon_sym_ref] = ACTIONS(1395), - [anon_sym_LBRACE] = ACTIONS(1397), - [anon_sym_delegate] = ACTIONS(1399), - [anon_sym_async] = ACTIONS(1047), - [anon_sym_file] = ACTIONS(1389), - [anon_sym_new] = ACTIONS(1401), - [anon_sym_where] = ACTIONS(1389), - [anon_sym_notnull] = ACTIONS(1389), - [anon_sym_unmanaged] = ACTIONS(1389), - [anon_sym_checked] = ACTIONS(1403), - [anon_sym_BANG] = ACTIONS(1407), - [anon_sym_TILDE] = ACTIONS(1407), - [anon_sym_PLUS_PLUS] = ACTIONS(1407), - [anon_sym_DASH_DASH] = ACTIONS(1407), - [anon_sym_true] = ACTIONS(1409), - [anon_sym_false] = ACTIONS(1409), - [anon_sym_PLUS] = ACTIONS(1405), - [anon_sym_DASH] = ACTIONS(1405), - [anon_sym_STAR] = ACTIONS(1411), - [anon_sym_CARET] = ACTIONS(1407), - [anon_sym_AMP] = ACTIONS(1407), - [anon_sym_this] = ACTIONS(1413), - [anon_sym_scoped] = ACTIONS(1415), - [anon_sym_base] = ACTIONS(1417), - [anon_sym_var] = ACTIONS(1419), - [sym_predefined_type] = ACTIONS(1421), - [anon_sym_unchecked] = ACTIONS(1403), - [anon_sym_yield] = ACTIONS(1389), - [anon_sym_default] = ACTIONS(1423), - [anon_sym_throw] = ACTIONS(1425), - [anon_sym_when] = ACTIONS(1389), - [anon_sym_await] = ACTIONS(1427), - [anon_sym_DOT_DOT] = ACTIONS(1429), - [anon_sym_from] = ACTIONS(1431), - [anon_sym_into] = ACTIONS(1389), - [anon_sym_join] = ACTIONS(1389), - [anon_sym_on] = ACTIONS(1389), - [anon_sym_equals] = ACTIONS(1389), - [anon_sym_let] = ACTIONS(1389), - [anon_sym_orderby] = ACTIONS(1389), - [anon_sym_ascending] = ACTIONS(1389), - [anon_sym_descending] = ACTIONS(1389), - [anon_sym_group] = ACTIONS(1389), - [anon_sym_by] = ACTIONS(1389), - [anon_sym_select] = ACTIONS(1389), - [anon_sym_stackalloc] = ACTIONS(1433), - [anon_sym_sizeof] = ACTIONS(1435), - [anon_sym_typeof] = ACTIONS(1437), - [anon_sym___makeref] = ACTIONS(1439), - [anon_sym___reftype] = ACTIONS(1441), - [anon_sym___refvalue] = ACTIONS(1443), - [sym_null_literal] = ACTIONS(1445), - [anon_sym_SQUOTE] = ACTIONS(1447), - [sym_integer_literal] = ACTIONS(1445), - [sym_real_literal] = ACTIONS(1449), - [anon_sym_DQUOTE] = ACTIONS(1451), - [sym_verbatim_string_literal] = ACTIONS(1449), - [aux_sym_preproc_if_token1] = ACTIONS(1453), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1455), - [sym_interpolation_verbatim_start] = ACTIONS(1457), - [sym_interpolation_raw_start] = ACTIONS(1459), - [sym_raw_string_start] = ACTIONS(1461), - }, - [1604] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(3184), - [sym__name] = STATE(5906), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2312), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2269), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(4289), - [sym_non_lvalue_expression] = STATE(4541), - [sym_lvalue_expression] = STATE(3165), - [sym__expression_statement_expression] = STATE(4529), - [sym_assignment_expression] = STATE(4543), - [sym_binary_expression] = STATE(4529), - [sym_postfix_unary_expression] = STATE(4543), - [sym_prefix_unary_expression] = STATE(4543), - [sym__pointer_indirection_expression] = STATE(3175), - [sym_query_expression] = STATE(4529), - [sym_from_clause] = STATE(6156), - [sym_conditional_expression] = STATE(4529), - [sym_conditional_access_expression] = STATE(4529), - [sym_as_expression] = STATE(4529), - [sym_is_expression] = STATE(4529), - [sym_is_pattern_expression] = STATE(4529), - [sym_cast_expression] = STATE(4529), - [sym_checked_expression] = STATE(4529), - [sym_invocation_expression] = STATE(4543), - [sym_switch_expression] = STATE(4529), - [sym_await_expression] = STATE(4543), - [sym_throw_expression] = STATE(4529), - [sym_element_access_expression] = STATE(3175), - [sym_interpolated_string_expression] = STATE(4529), - [sym_member_access_expression] = STATE(3175), - [sym_object_creation_expression] = STATE(4543), - [sym_parenthesized_expression] = STATE(4543), - [sym__parenthesized_lvalue_expression] = STATE(3175), - [sym_lambda_expression] = STATE(4529), - [sym__lambda_expression_init] = STATE(7341), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(4529), - [sym_anonymous_method_expression] = STATE(4529), - [sym_anonymous_object_creation_expression] = STATE(4529), - [sym_implicit_array_creation_expression] = STATE(4529), - [sym_implicit_object_creation_expression] = STATE(4529), - [sym_implicit_stackalloc_expression] = STATE(4529), - [sym_initializer_expression] = STATE(4529), - [sym_default_expression] = STATE(4529), - [sym_with_expression] = STATE(4529), - [sym_sizeof_expression] = STATE(4529), - [sym_typeof_expression] = STATE(4529), - [sym_makeref_expression] = STATE(4529), - [sym_ref_expression] = STATE(4529), - [sym_reftype_expression] = STATE(4529), - [sym_refvalue_expression] = STATE(4529), - [sym_stackalloc_expression] = STATE(4529), - [sym_range_expression] = STATE(4529), - [sym_tuple_expression] = STATE(3175), - [sym_literal] = STATE(4529), - [sym_character_literal] = STATE(4536), - [sym_string_literal] = STATE(4536), - [sym_raw_string_literal] = STATE(4536), - [sym_boolean_literal] = STATE(4536), - [sym_identifier] = STATE(2246), - [sym__reserved_identifier] = STATE(2240), - [sym_preproc_if_in_expression] = STATE(4529), - [sym_preproc_if_in_attribute_list] = STATE(5576), - [sym_preproc_region] = STATE(1604), - [sym_preproc_endregion] = STATE(1604), - [sym_preproc_line] = STATE(1604), - [sym_preproc_pragma] = STATE(1604), - [sym_preproc_nullable] = STATE(1604), - [sym_preproc_error] = STATE(1604), - [sym_preproc_warning] = STATE(1604), - [sym_preproc_define] = STATE(1604), - [sym_preproc_undef] = STATE(1604), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3363), - [sym__identifier_token] = ACTIONS(1387), - [anon_sym_alias] = ACTIONS(1389), - [anon_sym_global] = ACTIONS(1389), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1391), - [anon_sym_LPAREN] = ACTIONS(1393), - [anon_sym_ref] = ACTIONS(1395), - [anon_sym_LBRACE] = ACTIONS(1397), - [anon_sym_delegate] = ACTIONS(1399), - [anon_sym_async] = ACTIONS(1047), - [anon_sym_file] = ACTIONS(1389), - [anon_sym_new] = ACTIONS(1401), - [anon_sym_where] = ACTIONS(1389), - [anon_sym_notnull] = ACTIONS(1389), - [anon_sym_unmanaged] = ACTIONS(1389), - [anon_sym_checked] = ACTIONS(1403), - [anon_sym_BANG] = ACTIONS(1407), - [anon_sym_TILDE] = ACTIONS(1407), - [anon_sym_PLUS_PLUS] = ACTIONS(1407), - [anon_sym_DASH_DASH] = ACTIONS(1407), - [anon_sym_true] = ACTIONS(1409), - [anon_sym_false] = ACTIONS(1409), - [anon_sym_PLUS] = ACTIONS(1405), - [anon_sym_DASH] = ACTIONS(1405), - [anon_sym_STAR] = ACTIONS(1411), - [anon_sym_CARET] = ACTIONS(1407), - [anon_sym_AMP] = ACTIONS(1407), - [anon_sym_this] = ACTIONS(1413), - [anon_sym_scoped] = ACTIONS(1415), - [anon_sym_base] = ACTIONS(1417), - [anon_sym_var] = ACTIONS(1419), - [sym_predefined_type] = ACTIONS(1421), - [anon_sym_unchecked] = ACTIONS(1403), - [anon_sym_yield] = ACTIONS(1389), - [anon_sym_default] = ACTIONS(1423), - [anon_sym_throw] = ACTIONS(1425), - [anon_sym_when] = ACTIONS(1389), - [anon_sym_await] = ACTIONS(1427), - [anon_sym_DOT_DOT] = ACTIONS(1429), - [anon_sym_from] = ACTIONS(1431), - [anon_sym_into] = ACTIONS(1389), - [anon_sym_join] = ACTIONS(1389), - [anon_sym_on] = ACTIONS(1389), - [anon_sym_equals] = ACTIONS(1389), - [anon_sym_let] = ACTIONS(1389), - [anon_sym_orderby] = ACTIONS(1389), - [anon_sym_ascending] = ACTIONS(1389), - [anon_sym_descending] = ACTIONS(1389), - [anon_sym_group] = ACTIONS(1389), - [anon_sym_by] = ACTIONS(1389), - [anon_sym_select] = ACTIONS(1389), - [anon_sym_stackalloc] = ACTIONS(1433), - [anon_sym_sizeof] = ACTIONS(1435), - [anon_sym_typeof] = ACTIONS(1437), - [anon_sym___makeref] = ACTIONS(1439), - [anon_sym___reftype] = ACTIONS(1441), - [anon_sym___refvalue] = ACTIONS(1443), - [sym_null_literal] = ACTIONS(1445), - [anon_sym_SQUOTE] = ACTIONS(1447), - [sym_integer_literal] = ACTIONS(1445), - [sym_real_literal] = ACTIONS(1449), - [anon_sym_DQUOTE] = ACTIONS(1451), - [sym_verbatim_string_literal] = ACTIONS(1449), - [aux_sym_preproc_if_token1] = ACTIONS(1453), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1455), - [sym_interpolation_verbatim_start] = ACTIONS(1457), - [sym_interpolation_raw_start] = ACTIONS(1459), - [sym_raw_string_start] = ACTIONS(1461), - }, - [1605] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(3184), - [sym__name] = STATE(5906), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2312), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2269), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(4301), - [sym_non_lvalue_expression] = STATE(4541), - [sym_lvalue_expression] = STATE(3165), - [sym__expression_statement_expression] = STATE(4529), - [sym_assignment_expression] = STATE(4543), - [sym_binary_expression] = STATE(4529), - [sym_postfix_unary_expression] = STATE(4543), - [sym_prefix_unary_expression] = STATE(4543), - [sym__pointer_indirection_expression] = STATE(3175), - [sym_query_expression] = STATE(4529), - [sym_from_clause] = STATE(6156), - [sym_conditional_expression] = STATE(4529), - [sym_conditional_access_expression] = STATE(4529), - [sym_as_expression] = STATE(4529), - [sym_is_expression] = STATE(4529), - [sym_is_pattern_expression] = STATE(4529), - [sym_cast_expression] = STATE(4529), - [sym_checked_expression] = STATE(4529), - [sym_invocation_expression] = STATE(4543), - [sym_switch_expression] = STATE(4529), - [sym_await_expression] = STATE(4543), - [sym_throw_expression] = STATE(4529), - [sym_element_access_expression] = STATE(3175), - [sym_interpolated_string_expression] = STATE(4529), - [sym_member_access_expression] = STATE(3175), - [sym_object_creation_expression] = STATE(4543), - [sym_parenthesized_expression] = STATE(4543), - [sym__parenthesized_lvalue_expression] = STATE(3175), - [sym_lambda_expression] = STATE(4529), - [sym__lambda_expression_init] = STATE(7341), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(4529), - [sym_anonymous_method_expression] = STATE(4529), - [sym_anonymous_object_creation_expression] = STATE(4529), - [sym_implicit_array_creation_expression] = STATE(4529), - [sym_implicit_object_creation_expression] = STATE(4529), - [sym_implicit_stackalloc_expression] = STATE(4529), - [sym_initializer_expression] = STATE(4529), - [sym_default_expression] = STATE(4529), - [sym_with_expression] = STATE(4529), - [sym_sizeof_expression] = STATE(4529), - [sym_typeof_expression] = STATE(4529), - [sym_makeref_expression] = STATE(4529), - [sym_ref_expression] = STATE(4529), - [sym_reftype_expression] = STATE(4529), - [sym_refvalue_expression] = STATE(4529), - [sym_stackalloc_expression] = STATE(4529), - [sym_range_expression] = STATE(4529), - [sym_tuple_expression] = STATE(3175), - [sym_literal] = STATE(4529), - [sym_character_literal] = STATE(4536), - [sym_string_literal] = STATE(4536), - [sym_raw_string_literal] = STATE(4536), - [sym_boolean_literal] = STATE(4536), - [sym_identifier] = STATE(2246), - [sym__reserved_identifier] = STATE(2240), - [sym_preproc_if_in_expression] = STATE(4529), - [sym_preproc_if_in_attribute_list] = STATE(5576), - [sym_preproc_region] = STATE(1605), - [sym_preproc_endregion] = STATE(1605), - [sym_preproc_line] = STATE(1605), - [sym_preproc_pragma] = STATE(1605), - [sym_preproc_nullable] = STATE(1605), - [sym_preproc_error] = STATE(1605), - [sym_preproc_warning] = STATE(1605), - [sym_preproc_define] = STATE(1605), - [sym_preproc_undef] = STATE(1605), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3363), - [sym__identifier_token] = ACTIONS(1387), - [anon_sym_alias] = ACTIONS(1389), - [anon_sym_global] = ACTIONS(1389), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1391), - [anon_sym_LPAREN] = ACTIONS(1393), - [anon_sym_ref] = ACTIONS(1395), - [anon_sym_LBRACE] = ACTIONS(1397), - [anon_sym_delegate] = ACTIONS(1399), - [anon_sym_async] = ACTIONS(1047), - [anon_sym_file] = ACTIONS(1389), - [anon_sym_new] = ACTIONS(1401), - [anon_sym_where] = ACTIONS(1389), - [anon_sym_notnull] = ACTIONS(1389), - [anon_sym_unmanaged] = ACTIONS(1389), - [anon_sym_checked] = ACTIONS(1403), - [anon_sym_BANG] = ACTIONS(1407), - [anon_sym_TILDE] = ACTIONS(1407), - [anon_sym_PLUS_PLUS] = ACTIONS(1407), - [anon_sym_DASH_DASH] = ACTIONS(1407), - [anon_sym_true] = ACTIONS(1409), - [anon_sym_false] = ACTIONS(1409), - [anon_sym_PLUS] = ACTIONS(1405), - [anon_sym_DASH] = ACTIONS(1405), - [anon_sym_STAR] = ACTIONS(1411), - [anon_sym_CARET] = ACTIONS(1407), - [anon_sym_AMP] = ACTIONS(1407), - [anon_sym_this] = ACTIONS(1413), - [anon_sym_scoped] = ACTIONS(1415), - [anon_sym_base] = ACTIONS(1417), - [anon_sym_var] = ACTIONS(1419), - [sym_predefined_type] = ACTIONS(1421), - [anon_sym_unchecked] = ACTIONS(1403), - [anon_sym_yield] = ACTIONS(1389), - [anon_sym_default] = ACTIONS(1423), - [anon_sym_throw] = ACTIONS(1425), - [anon_sym_when] = ACTIONS(1389), - [anon_sym_await] = ACTIONS(1427), - [anon_sym_DOT_DOT] = ACTIONS(1429), - [anon_sym_from] = ACTIONS(1431), - [anon_sym_into] = ACTIONS(1389), - [anon_sym_join] = ACTIONS(1389), - [anon_sym_on] = ACTIONS(1389), - [anon_sym_equals] = ACTIONS(1389), - [anon_sym_let] = ACTIONS(1389), - [anon_sym_orderby] = ACTIONS(1389), - [anon_sym_ascending] = ACTIONS(1389), - [anon_sym_descending] = ACTIONS(1389), - [anon_sym_group] = ACTIONS(1389), - [anon_sym_by] = ACTIONS(1389), - [anon_sym_select] = ACTIONS(1389), - [anon_sym_stackalloc] = ACTIONS(1433), - [anon_sym_sizeof] = ACTIONS(1435), - [anon_sym_typeof] = ACTIONS(1437), - [anon_sym___makeref] = ACTIONS(1439), - [anon_sym___reftype] = ACTIONS(1441), - [anon_sym___refvalue] = ACTIONS(1443), - [sym_null_literal] = ACTIONS(1445), - [anon_sym_SQUOTE] = ACTIONS(1447), - [sym_integer_literal] = ACTIONS(1445), - [sym_real_literal] = ACTIONS(1449), - [anon_sym_DQUOTE] = ACTIONS(1451), - [sym_verbatim_string_literal] = ACTIONS(1449), - [aux_sym_preproc_if_token1] = ACTIONS(1453), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1455), - [sym_interpolation_verbatim_start] = ACTIONS(1457), - [sym_interpolation_raw_start] = ACTIONS(1459), - [sym_raw_string_start] = ACTIONS(1461), - }, - [1606] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(3184), - [sym__name] = STATE(5906), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2312), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2269), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(4293), - [sym_non_lvalue_expression] = STATE(4541), - [sym_lvalue_expression] = STATE(3165), - [sym__expression_statement_expression] = STATE(4529), - [sym_assignment_expression] = STATE(4543), - [sym_binary_expression] = STATE(4529), - [sym_postfix_unary_expression] = STATE(4543), - [sym_prefix_unary_expression] = STATE(4543), - [sym__pointer_indirection_expression] = STATE(3175), - [sym_query_expression] = STATE(4529), - [sym_from_clause] = STATE(6156), - [sym_conditional_expression] = STATE(4529), - [sym_conditional_access_expression] = STATE(4529), - [sym_as_expression] = STATE(4529), - [sym_is_expression] = STATE(4529), - [sym_is_pattern_expression] = STATE(4529), - [sym_cast_expression] = STATE(4529), - [sym_checked_expression] = STATE(4529), - [sym_invocation_expression] = STATE(4543), - [sym_switch_expression] = STATE(4529), - [sym_await_expression] = STATE(4543), - [sym_throw_expression] = STATE(4529), - [sym_element_access_expression] = STATE(3175), - [sym_interpolated_string_expression] = STATE(4529), - [sym_member_access_expression] = STATE(3175), - [sym_object_creation_expression] = STATE(4543), - [sym_parenthesized_expression] = STATE(4543), - [sym__parenthesized_lvalue_expression] = STATE(3175), - [sym_lambda_expression] = STATE(4529), - [sym__lambda_expression_init] = STATE(7341), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(4529), - [sym_anonymous_method_expression] = STATE(4529), - [sym_anonymous_object_creation_expression] = STATE(4529), - [sym_implicit_array_creation_expression] = STATE(4529), - [sym_implicit_object_creation_expression] = STATE(4529), - [sym_implicit_stackalloc_expression] = STATE(4529), - [sym_initializer_expression] = STATE(4529), - [sym_default_expression] = STATE(4529), - [sym_with_expression] = STATE(4529), - [sym_sizeof_expression] = STATE(4529), - [sym_typeof_expression] = STATE(4529), - [sym_makeref_expression] = STATE(4529), - [sym_ref_expression] = STATE(4529), - [sym_reftype_expression] = STATE(4529), - [sym_refvalue_expression] = STATE(4529), - [sym_stackalloc_expression] = STATE(4529), - [sym_range_expression] = STATE(4529), - [sym_tuple_expression] = STATE(3175), - [sym_literal] = STATE(4529), - [sym_character_literal] = STATE(4536), - [sym_string_literal] = STATE(4536), - [sym_raw_string_literal] = STATE(4536), - [sym_boolean_literal] = STATE(4536), - [sym_identifier] = STATE(2246), - [sym__reserved_identifier] = STATE(2240), - [sym_preproc_if_in_expression] = STATE(4529), - [sym_preproc_if_in_attribute_list] = STATE(5576), - [sym_preproc_region] = STATE(1606), - [sym_preproc_endregion] = STATE(1606), - [sym_preproc_line] = STATE(1606), - [sym_preproc_pragma] = STATE(1606), - [sym_preproc_nullable] = STATE(1606), - [sym_preproc_error] = STATE(1606), - [sym_preproc_warning] = STATE(1606), - [sym_preproc_define] = STATE(1606), - [sym_preproc_undef] = STATE(1606), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3363), - [sym__identifier_token] = ACTIONS(1387), - [anon_sym_alias] = ACTIONS(1389), - [anon_sym_global] = ACTIONS(1389), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1391), - [anon_sym_LPAREN] = ACTIONS(1393), - [anon_sym_ref] = ACTIONS(1395), - [anon_sym_LBRACE] = ACTIONS(1397), - [anon_sym_delegate] = ACTIONS(1399), - [anon_sym_async] = ACTIONS(1047), - [anon_sym_file] = ACTIONS(1389), - [anon_sym_new] = ACTIONS(1401), - [anon_sym_where] = ACTIONS(1389), - [anon_sym_notnull] = ACTIONS(1389), - [anon_sym_unmanaged] = ACTIONS(1389), - [anon_sym_checked] = ACTIONS(1403), - [anon_sym_BANG] = ACTIONS(1407), - [anon_sym_TILDE] = ACTIONS(1407), - [anon_sym_PLUS_PLUS] = ACTIONS(1407), - [anon_sym_DASH_DASH] = ACTIONS(1407), - [anon_sym_true] = ACTIONS(1409), - [anon_sym_false] = ACTIONS(1409), - [anon_sym_PLUS] = ACTIONS(1405), - [anon_sym_DASH] = ACTIONS(1405), - [anon_sym_STAR] = ACTIONS(1411), - [anon_sym_CARET] = ACTIONS(1407), - [anon_sym_AMP] = ACTIONS(1407), - [anon_sym_this] = ACTIONS(1413), - [anon_sym_scoped] = ACTIONS(1415), - [anon_sym_base] = ACTIONS(1417), - [anon_sym_var] = ACTIONS(1419), - [sym_predefined_type] = ACTIONS(1421), - [anon_sym_unchecked] = ACTIONS(1403), - [anon_sym_yield] = ACTIONS(1389), - [anon_sym_default] = ACTIONS(1423), - [anon_sym_throw] = ACTIONS(1425), - [anon_sym_when] = ACTIONS(1389), - [anon_sym_await] = ACTIONS(1427), - [anon_sym_DOT_DOT] = ACTIONS(1429), - [anon_sym_from] = ACTIONS(1431), - [anon_sym_into] = ACTIONS(1389), - [anon_sym_join] = ACTIONS(1389), - [anon_sym_on] = ACTIONS(1389), - [anon_sym_equals] = ACTIONS(1389), - [anon_sym_let] = ACTIONS(1389), - [anon_sym_orderby] = ACTIONS(1389), - [anon_sym_ascending] = ACTIONS(1389), - [anon_sym_descending] = ACTIONS(1389), - [anon_sym_group] = ACTIONS(1389), - [anon_sym_by] = ACTIONS(1389), - [anon_sym_select] = ACTIONS(1389), - [anon_sym_stackalloc] = ACTIONS(1433), - [anon_sym_sizeof] = ACTIONS(1435), - [anon_sym_typeof] = ACTIONS(1437), - [anon_sym___makeref] = ACTIONS(1439), - [anon_sym___reftype] = ACTIONS(1441), - [anon_sym___refvalue] = ACTIONS(1443), - [sym_null_literal] = ACTIONS(1445), - [anon_sym_SQUOTE] = ACTIONS(1447), - [sym_integer_literal] = ACTIONS(1445), - [sym_real_literal] = ACTIONS(1449), - [anon_sym_DQUOTE] = ACTIONS(1451), - [sym_verbatim_string_literal] = ACTIONS(1449), - [aux_sym_preproc_if_token1] = ACTIONS(1453), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1455), - [sym_interpolation_verbatim_start] = ACTIONS(1457), - [sym_interpolation_raw_start] = ACTIONS(1459), - [sym_raw_string_start] = ACTIONS(1461), - }, - [1607] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(3184), - [sym__name] = STATE(5906), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2312), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2269), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(4304), - [sym_non_lvalue_expression] = STATE(4541), - [sym_lvalue_expression] = STATE(3165), - [sym__expression_statement_expression] = STATE(4529), - [sym_assignment_expression] = STATE(4543), - [sym_binary_expression] = STATE(4529), - [sym_postfix_unary_expression] = STATE(4543), - [sym_prefix_unary_expression] = STATE(4543), - [sym__pointer_indirection_expression] = STATE(3175), - [sym_query_expression] = STATE(4529), - [sym_from_clause] = STATE(6156), - [sym_conditional_expression] = STATE(4529), - [sym_conditional_access_expression] = STATE(4529), - [sym_as_expression] = STATE(4529), - [sym_is_expression] = STATE(4529), - [sym_is_pattern_expression] = STATE(4529), - [sym_cast_expression] = STATE(4529), - [sym_checked_expression] = STATE(4529), - [sym_invocation_expression] = STATE(4543), - [sym_switch_expression] = STATE(4529), - [sym_await_expression] = STATE(4543), - [sym_throw_expression] = STATE(4529), - [sym_element_access_expression] = STATE(3175), - [sym_interpolated_string_expression] = STATE(4529), - [sym_member_access_expression] = STATE(3175), - [sym_object_creation_expression] = STATE(4543), - [sym_parenthesized_expression] = STATE(4543), - [sym__parenthesized_lvalue_expression] = STATE(3175), - [sym_lambda_expression] = STATE(4529), - [sym__lambda_expression_init] = STATE(7341), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(4529), - [sym_anonymous_method_expression] = STATE(4529), - [sym_anonymous_object_creation_expression] = STATE(4529), - [sym_implicit_array_creation_expression] = STATE(4529), - [sym_implicit_object_creation_expression] = STATE(4529), - [sym_implicit_stackalloc_expression] = STATE(4529), - [sym_initializer_expression] = STATE(4529), - [sym_default_expression] = STATE(4529), - [sym_with_expression] = STATE(4529), - [sym_sizeof_expression] = STATE(4529), - [sym_typeof_expression] = STATE(4529), - [sym_makeref_expression] = STATE(4529), - [sym_ref_expression] = STATE(4529), - [sym_reftype_expression] = STATE(4529), - [sym_refvalue_expression] = STATE(4529), - [sym_stackalloc_expression] = STATE(4529), - [sym_range_expression] = STATE(4529), - [sym_tuple_expression] = STATE(3175), - [sym_literal] = STATE(4529), - [sym_character_literal] = STATE(4536), - [sym_string_literal] = STATE(4536), - [sym_raw_string_literal] = STATE(4536), - [sym_boolean_literal] = STATE(4536), - [sym_identifier] = STATE(2246), - [sym__reserved_identifier] = STATE(2240), - [sym_preproc_if_in_expression] = STATE(4529), - [sym_preproc_if_in_attribute_list] = STATE(5576), - [sym_preproc_region] = STATE(1607), - [sym_preproc_endregion] = STATE(1607), - [sym_preproc_line] = STATE(1607), - [sym_preproc_pragma] = STATE(1607), - [sym_preproc_nullable] = STATE(1607), - [sym_preproc_error] = STATE(1607), - [sym_preproc_warning] = STATE(1607), - [sym_preproc_define] = STATE(1607), - [sym_preproc_undef] = STATE(1607), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3363), - [sym__identifier_token] = ACTIONS(1387), - [anon_sym_alias] = ACTIONS(1389), - [anon_sym_global] = ACTIONS(1389), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1391), - [anon_sym_LPAREN] = ACTIONS(1393), - [anon_sym_ref] = ACTIONS(1395), - [anon_sym_LBRACE] = ACTIONS(1397), - [anon_sym_delegate] = ACTIONS(1399), - [anon_sym_async] = ACTIONS(1047), - [anon_sym_file] = ACTIONS(1389), - [anon_sym_new] = ACTIONS(1401), - [anon_sym_where] = ACTIONS(1389), - [anon_sym_notnull] = ACTIONS(1389), - [anon_sym_unmanaged] = ACTIONS(1389), - [anon_sym_checked] = ACTIONS(1403), - [anon_sym_BANG] = ACTIONS(1407), - [anon_sym_TILDE] = ACTIONS(1407), - [anon_sym_PLUS_PLUS] = ACTIONS(1407), - [anon_sym_DASH_DASH] = ACTIONS(1407), - [anon_sym_true] = ACTIONS(1409), - [anon_sym_false] = ACTIONS(1409), - [anon_sym_PLUS] = ACTIONS(1405), - [anon_sym_DASH] = ACTIONS(1405), - [anon_sym_STAR] = ACTIONS(1411), - [anon_sym_CARET] = ACTIONS(1407), - [anon_sym_AMP] = ACTIONS(1407), - [anon_sym_this] = ACTIONS(1413), - [anon_sym_scoped] = ACTIONS(1415), - [anon_sym_base] = ACTIONS(1417), - [anon_sym_var] = ACTIONS(1419), - [sym_predefined_type] = ACTIONS(1421), - [anon_sym_unchecked] = ACTIONS(1403), - [anon_sym_yield] = ACTIONS(1389), - [anon_sym_default] = ACTIONS(1423), - [anon_sym_throw] = ACTIONS(1425), - [anon_sym_when] = ACTIONS(1389), - [anon_sym_await] = ACTIONS(1427), - [anon_sym_DOT_DOT] = ACTIONS(1429), - [anon_sym_from] = ACTIONS(1431), - [anon_sym_into] = ACTIONS(1389), - [anon_sym_join] = ACTIONS(1389), - [anon_sym_on] = ACTIONS(1389), - [anon_sym_equals] = ACTIONS(1389), - [anon_sym_let] = ACTIONS(1389), - [anon_sym_orderby] = ACTIONS(1389), - [anon_sym_ascending] = ACTIONS(1389), - [anon_sym_descending] = ACTIONS(1389), - [anon_sym_group] = ACTIONS(1389), - [anon_sym_by] = ACTIONS(1389), - [anon_sym_select] = ACTIONS(1389), - [anon_sym_stackalloc] = ACTIONS(1433), - [anon_sym_sizeof] = ACTIONS(1435), - [anon_sym_typeof] = ACTIONS(1437), - [anon_sym___makeref] = ACTIONS(1439), - [anon_sym___reftype] = ACTIONS(1441), - [anon_sym___refvalue] = ACTIONS(1443), - [sym_null_literal] = ACTIONS(1445), - [anon_sym_SQUOTE] = ACTIONS(1447), - [sym_integer_literal] = ACTIONS(1445), - [sym_real_literal] = ACTIONS(1449), - [anon_sym_DQUOTE] = ACTIONS(1451), - [sym_verbatim_string_literal] = ACTIONS(1449), - [aux_sym_preproc_if_token1] = ACTIONS(1453), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1455), - [sym_interpolation_verbatim_start] = ACTIONS(1457), - [sym_interpolation_raw_start] = ACTIONS(1459), - [sym_raw_string_start] = ACTIONS(1461), - }, - [1608] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(3184), - [sym__name] = STATE(5906), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2312), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2269), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(4307), - [sym_non_lvalue_expression] = STATE(4541), - [sym_lvalue_expression] = STATE(3165), - [sym__expression_statement_expression] = STATE(4529), - [sym_assignment_expression] = STATE(4543), - [sym_binary_expression] = STATE(4529), - [sym_postfix_unary_expression] = STATE(4543), - [sym_prefix_unary_expression] = STATE(4543), - [sym__pointer_indirection_expression] = STATE(3175), - [sym_query_expression] = STATE(4529), - [sym_from_clause] = STATE(6156), - [sym_conditional_expression] = STATE(4529), - [sym_conditional_access_expression] = STATE(4529), - [sym_as_expression] = STATE(4529), - [sym_is_expression] = STATE(4529), - [sym_is_pattern_expression] = STATE(4529), - [sym_cast_expression] = STATE(4529), - [sym_checked_expression] = STATE(4529), - [sym_invocation_expression] = STATE(4543), - [sym_switch_expression] = STATE(4529), - [sym_await_expression] = STATE(4543), - [sym_throw_expression] = STATE(4529), - [sym_element_access_expression] = STATE(3175), - [sym_interpolated_string_expression] = STATE(4529), - [sym_member_access_expression] = STATE(3175), - [sym_object_creation_expression] = STATE(4543), - [sym_parenthesized_expression] = STATE(4543), - [sym__parenthesized_lvalue_expression] = STATE(3175), - [sym_lambda_expression] = STATE(4529), - [sym__lambda_expression_init] = STATE(7341), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(4529), - [sym_anonymous_method_expression] = STATE(4529), - [sym_anonymous_object_creation_expression] = STATE(4529), - [sym_implicit_array_creation_expression] = STATE(4529), - [sym_implicit_object_creation_expression] = STATE(4529), - [sym_implicit_stackalloc_expression] = STATE(4529), - [sym_initializer_expression] = STATE(4529), - [sym_default_expression] = STATE(4529), - [sym_with_expression] = STATE(4529), - [sym_sizeof_expression] = STATE(4529), - [sym_typeof_expression] = STATE(4529), - [sym_makeref_expression] = STATE(4529), - [sym_ref_expression] = STATE(4529), - [sym_reftype_expression] = STATE(4529), - [sym_refvalue_expression] = STATE(4529), - [sym_stackalloc_expression] = STATE(4529), - [sym_range_expression] = STATE(4529), - [sym_tuple_expression] = STATE(3175), - [sym_literal] = STATE(4529), - [sym_character_literal] = STATE(4536), - [sym_string_literal] = STATE(4536), - [sym_raw_string_literal] = STATE(4536), - [sym_boolean_literal] = STATE(4536), - [sym_identifier] = STATE(2246), - [sym__reserved_identifier] = STATE(2240), - [sym_preproc_if_in_expression] = STATE(4529), - [sym_preproc_if_in_attribute_list] = STATE(5576), - [sym_preproc_region] = STATE(1608), - [sym_preproc_endregion] = STATE(1608), - [sym_preproc_line] = STATE(1608), - [sym_preproc_pragma] = STATE(1608), - [sym_preproc_nullable] = STATE(1608), - [sym_preproc_error] = STATE(1608), - [sym_preproc_warning] = STATE(1608), - [sym_preproc_define] = STATE(1608), - [sym_preproc_undef] = STATE(1608), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3363), - [sym__identifier_token] = ACTIONS(1387), - [anon_sym_alias] = ACTIONS(1389), - [anon_sym_global] = ACTIONS(1389), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1391), - [anon_sym_LPAREN] = ACTIONS(1393), - [anon_sym_ref] = ACTIONS(1395), - [anon_sym_LBRACE] = ACTIONS(1397), - [anon_sym_delegate] = ACTIONS(1399), - [anon_sym_async] = ACTIONS(1047), - [anon_sym_file] = ACTIONS(1389), - [anon_sym_new] = ACTIONS(1401), - [anon_sym_where] = ACTIONS(1389), - [anon_sym_notnull] = ACTIONS(1389), - [anon_sym_unmanaged] = ACTIONS(1389), - [anon_sym_checked] = ACTIONS(1403), - [anon_sym_BANG] = ACTIONS(1407), - [anon_sym_TILDE] = ACTIONS(1407), - [anon_sym_PLUS_PLUS] = ACTIONS(1407), - [anon_sym_DASH_DASH] = ACTIONS(1407), - [anon_sym_true] = ACTIONS(1409), - [anon_sym_false] = ACTIONS(1409), - [anon_sym_PLUS] = ACTIONS(1405), - [anon_sym_DASH] = ACTIONS(1405), - [anon_sym_STAR] = ACTIONS(1411), - [anon_sym_CARET] = ACTIONS(1407), - [anon_sym_AMP] = ACTIONS(1407), - [anon_sym_this] = ACTIONS(1413), - [anon_sym_scoped] = ACTIONS(1415), - [anon_sym_base] = ACTIONS(1417), - [anon_sym_var] = ACTIONS(1419), - [sym_predefined_type] = ACTIONS(1421), - [anon_sym_unchecked] = ACTIONS(1403), - [anon_sym_yield] = ACTIONS(1389), - [anon_sym_default] = ACTIONS(1423), - [anon_sym_throw] = ACTIONS(1425), - [anon_sym_when] = ACTIONS(1389), - [anon_sym_await] = ACTIONS(1427), - [anon_sym_DOT_DOT] = ACTIONS(1429), - [anon_sym_from] = ACTIONS(1431), - [anon_sym_into] = ACTIONS(1389), - [anon_sym_join] = ACTIONS(1389), - [anon_sym_on] = ACTIONS(1389), - [anon_sym_equals] = ACTIONS(1389), - [anon_sym_let] = ACTIONS(1389), - [anon_sym_orderby] = ACTIONS(1389), - [anon_sym_ascending] = ACTIONS(1389), - [anon_sym_descending] = ACTIONS(1389), - [anon_sym_group] = ACTIONS(1389), - [anon_sym_by] = ACTIONS(1389), - [anon_sym_select] = ACTIONS(1389), - [anon_sym_stackalloc] = ACTIONS(1433), - [anon_sym_sizeof] = ACTIONS(1435), - [anon_sym_typeof] = ACTIONS(1437), - [anon_sym___makeref] = ACTIONS(1439), - [anon_sym___reftype] = ACTIONS(1441), - [anon_sym___refvalue] = ACTIONS(1443), - [sym_null_literal] = ACTIONS(1445), - [anon_sym_SQUOTE] = ACTIONS(1447), - [sym_integer_literal] = ACTIONS(1445), - [sym_real_literal] = ACTIONS(1449), - [anon_sym_DQUOTE] = ACTIONS(1451), - [sym_verbatim_string_literal] = ACTIONS(1449), - [aux_sym_preproc_if_token1] = ACTIONS(1453), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1455), - [sym_interpolation_verbatim_start] = ACTIONS(1457), - [sym_interpolation_raw_start] = ACTIONS(1459), - [sym_raw_string_start] = ACTIONS(1461), - }, - [1609] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(3184), - [sym__name] = STATE(5906), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2312), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2269), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(4308), - [sym_non_lvalue_expression] = STATE(4541), - [sym_lvalue_expression] = STATE(3165), - [sym__expression_statement_expression] = STATE(4529), - [sym_assignment_expression] = STATE(4543), - [sym_binary_expression] = STATE(4529), - [sym_postfix_unary_expression] = STATE(4543), - [sym_prefix_unary_expression] = STATE(4543), - [sym__pointer_indirection_expression] = STATE(3175), - [sym_query_expression] = STATE(4529), - [sym_from_clause] = STATE(6156), - [sym_conditional_expression] = STATE(4529), - [sym_conditional_access_expression] = STATE(4529), - [sym_as_expression] = STATE(4529), - [sym_is_expression] = STATE(4529), - [sym_is_pattern_expression] = STATE(4529), - [sym_cast_expression] = STATE(4529), - [sym_checked_expression] = STATE(4529), - [sym_invocation_expression] = STATE(4543), - [sym_switch_expression] = STATE(4529), - [sym_await_expression] = STATE(4543), - [sym_throw_expression] = STATE(4529), - [sym_element_access_expression] = STATE(3175), - [sym_interpolated_string_expression] = STATE(4529), - [sym_member_access_expression] = STATE(3175), - [sym_object_creation_expression] = STATE(4543), - [sym_parenthesized_expression] = STATE(4543), - [sym__parenthesized_lvalue_expression] = STATE(3175), - [sym_lambda_expression] = STATE(4529), - [sym__lambda_expression_init] = STATE(7341), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(4529), - [sym_anonymous_method_expression] = STATE(4529), - [sym_anonymous_object_creation_expression] = STATE(4529), - [sym_implicit_array_creation_expression] = STATE(4529), - [sym_implicit_object_creation_expression] = STATE(4529), - [sym_implicit_stackalloc_expression] = STATE(4529), - [sym_initializer_expression] = STATE(4529), - [sym_default_expression] = STATE(4529), - [sym_with_expression] = STATE(4529), - [sym_sizeof_expression] = STATE(4529), - [sym_typeof_expression] = STATE(4529), - [sym_makeref_expression] = STATE(4529), - [sym_ref_expression] = STATE(4529), - [sym_reftype_expression] = STATE(4529), - [sym_refvalue_expression] = STATE(4529), - [sym_stackalloc_expression] = STATE(4529), - [sym_range_expression] = STATE(4529), - [sym_tuple_expression] = STATE(3175), - [sym_literal] = STATE(4529), - [sym_character_literal] = STATE(4536), - [sym_string_literal] = STATE(4536), - [sym_raw_string_literal] = STATE(4536), - [sym_boolean_literal] = STATE(4536), - [sym_identifier] = STATE(2246), - [sym__reserved_identifier] = STATE(2240), - [sym_preproc_if_in_expression] = STATE(4529), - [sym_preproc_if_in_attribute_list] = STATE(5576), - [sym_preproc_region] = STATE(1609), - [sym_preproc_endregion] = STATE(1609), - [sym_preproc_line] = STATE(1609), - [sym_preproc_pragma] = STATE(1609), - [sym_preproc_nullable] = STATE(1609), - [sym_preproc_error] = STATE(1609), - [sym_preproc_warning] = STATE(1609), - [sym_preproc_define] = STATE(1609), - [sym_preproc_undef] = STATE(1609), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3363), - [sym__identifier_token] = ACTIONS(1387), - [anon_sym_alias] = ACTIONS(1389), - [anon_sym_global] = ACTIONS(1389), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1391), - [anon_sym_LPAREN] = ACTIONS(1393), - [anon_sym_ref] = ACTIONS(1395), - [anon_sym_LBRACE] = ACTIONS(1397), - [anon_sym_delegate] = ACTIONS(1399), - [anon_sym_async] = ACTIONS(1047), - [anon_sym_file] = ACTIONS(1389), - [anon_sym_new] = ACTIONS(1401), - [anon_sym_where] = ACTIONS(1389), - [anon_sym_notnull] = ACTIONS(1389), - [anon_sym_unmanaged] = ACTIONS(1389), - [anon_sym_checked] = ACTIONS(1403), - [anon_sym_BANG] = ACTIONS(1407), - [anon_sym_TILDE] = ACTIONS(1407), - [anon_sym_PLUS_PLUS] = ACTIONS(1407), - [anon_sym_DASH_DASH] = ACTIONS(1407), - [anon_sym_true] = ACTIONS(1409), - [anon_sym_false] = ACTIONS(1409), - [anon_sym_PLUS] = ACTIONS(1405), - [anon_sym_DASH] = ACTIONS(1405), - [anon_sym_STAR] = ACTIONS(1411), - [anon_sym_CARET] = ACTIONS(1407), - [anon_sym_AMP] = ACTIONS(1407), - [anon_sym_this] = ACTIONS(1413), - [anon_sym_scoped] = ACTIONS(1415), - [anon_sym_base] = ACTIONS(1417), - [anon_sym_var] = ACTIONS(1419), - [sym_predefined_type] = ACTIONS(1421), - [anon_sym_unchecked] = ACTIONS(1403), - [anon_sym_yield] = ACTIONS(1389), - [anon_sym_default] = ACTIONS(1423), - [anon_sym_throw] = ACTIONS(1425), - [anon_sym_when] = ACTIONS(1389), - [anon_sym_await] = ACTIONS(1427), - [anon_sym_DOT_DOT] = ACTIONS(1429), - [anon_sym_from] = ACTIONS(1431), - [anon_sym_into] = ACTIONS(1389), - [anon_sym_join] = ACTIONS(1389), - [anon_sym_on] = ACTIONS(1389), - [anon_sym_equals] = ACTIONS(1389), - [anon_sym_let] = ACTIONS(1389), - [anon_sym_orderby] = ACTIONS(1389), - [anon_sym_ascending] = ACTIONS(1389), - [anon_sym_descending] = ACTIONS(1389), - [anon_sym_group] = ACTIONS(1389), - [anon_sym_by] = ACTIONS(1389), - [anon_sym_select] = ACTIONS(1389), - [anon_sym_stackalloc] = ACTIONS(1433), - [anon_sym_sizeof] = ACTIONS(1435), - [anon_sym_typeof] = ACTIONS(1437), - [anon_sym___makeref] = ACTIONS(1439), - [anon_sym___reftype] = ACTIONS(1441), - [anon_sym___refvalue] = ACTIONS(1443), - [sym_null_literal] = ACTIONS(1445), - [anon_sym_SQUOTE] = ACTIONS(1447), - [sym_integer_literal] = ACTIONS(1445), - [sym_real_literal] = ACTIONS(1449), - [anon_sym_DQUOTE] = ACTIONS(1451), - [sym_verbatim_string_literal] = ACTIONS(1449), - [aux_sym_preproc_if_token1] = ACTIONS(1453), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1455), - [sym_interpolation_verbatim_start] = ACTIONS(1457), - [sym_interpolation_raw_start] = ACTIONS(1459), - [sym_raw_string_start] = ACTIONS(1461), - }, - [1610] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(3184), - [sym__name] = STATE(5906), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2312), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2269), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(4327), - [sym_non_lvalue_expression] = STATE(4541), - [sym_lvalue_expression] = STATE(3165), - [sym__expression_statement_expression] = STATE(4529), - [sym_assignment_expression] = STATE(4543), - [sym_binary_expression] = STATE(4529), - [sym_postfix_unary_expression] = STATE(4543), - [sym_prefix_unary_expression] = STATE(4543), - [sym__pointer_indirection_expression] = STATE(3175), - [sym_query_expression] = STATE(4529), - [sym_from_clause] = STATE(6156), - [sym_conditional_expression] = STATE(4529), - [sym_conditional_access_expression] = STATE(4529), - [sym_as_expression] = STATE(4529), - [sym_is_expression] = STATE(4529), - [sym_is_pattern_expression] = STATE(4529), - [sym_cast_expression] = STATE(4529), - [sym_checked_expression] = STATE(4529), - [sym_invocation_expression] = STATE(4543), - [sym_switch_expression] = STATE(4529), - [sym_await_expression] = STATE(4543), - [sym_throw_expression] = STATE(4529), - [sym_element_access_expression] = STATE(3175), - [sym_interpolated_string_expression] = STATE(4529), - [sym_member_access_expression] = STATE(3175), - [sym_object_creation_expression] = STATE(4543), - [sym_parenthesized_expression] = STATE(4543), - [sym__parenthesized_lvalue_expression] = STATE(3175), - [sym_lambda_expression] = STATE(4529), - [sym__lambda_expression_init] = STATE(7341), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(4529), - [sym_anonymous_method_expression] = STATE(4529), - [sym_anonymous_object_creation_expression] = STATE(4529), - [sym_implicit_array_creation_expression] = STATE(4529), - [sym_implicit_object_creation_expression] = STATE(4529), - [sym_implicit_stackalloc_expression] = STATE(4529), - [sym_initializer_expression] = STATE(4529), - [sym_default_expression] = STATE(4529), - [sym_with_expression] = STATE(4529), - [sym_sizeof_expression] = STATE(4529), - [sym_typeof_expression] = STATE(4529), - [sym_makeref_expression] = STATE(4529), - [sym_ref_expression] = STATE(4529), - [sym_reftype_expression] = STATE(4529), - [sym_refvalue_expression] = STATE(4529), - [sym_stackalloc_expression] = STATE(4529), - [sym_range_expression] = STATE(4529), - [sym_tuple_expression] = STATE(3175), - [sym_literal] = STATE(4529), - [sym_character_literal] = STATE(4536), - [sym_string_literal] = STATE(4536), - [sym_raw_string_literal] = STATE(4536), - [sym_boolean_literal] = STATE(4536), - [sym_identifier] = STATE(2246), - [sym__reserved_identifier] = STATE(2240), - [sym_preproc_if_in_expression] = STATE(4529), - [sym_preproc_if_in_attribute_list] = STATE(5576), - [sym_preproc_region] = STATE(1610), - [sym_preproc_endregion] = STATE(1610), - [sym_preproc_line] = STATE(1610), - [sym_preproc_pragma] = STATE(1610), - [sym_preproc_nullable] = STATE(1610), - [sym_preproc_error] = STATE(1610), - [sym_preproc_warning] = STATE(1610), - [sym_preproc_define] = STATE(1610), - [sym_preproc_undef] = STATE(1610), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3363), - [sym__identifier_token] = ACTIONS(1387), - [anon_sym_alias] = ACTIONS(1389), - [anon_sym_global] = ACTIONS(1389), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1391), - [anon_sym_LPAREN] = ACTIONS(1393), - [anon_sym_ref] = ACTIONS(1395), - [anon_sym_LBRACE] = ACTIONS(1397), - [anon_sym_delegate] = ACTIONS(1399), - [anon_sym_async] = ACTIONS(1047), - [anon_sym_file] = ACTIONS(1389), - [anon_sym_new] = ACTIONS(1401), - [anon_sym_where] = ACTIONS(1389), - [anon_sym_notnull] = ACTIONS(1389), - [anon_sym_unmanaged] = ACTIONS(1389), - [anon_sym_checked] = ACTIONS(1403), - [anon_sym_BANG] = ACTIONS(1407), - [anon_sym_TILDE] = ACTIONS(1407), - [anon_sym_PLUS_PLUS] = ACTIONS(1407), - [anon_sym_DASH_DASH] = ACTIONS(1407), - [anon_sym_true] = ACTIONS(1409), - [anon_sym_false] = ACTIONS(1409), - [anon_sym_PLUS] = ACTIONS(1405), - [anon_sym_DASH] = ACTIONS(1405), - [anon_sym_STAR] = ACTIONS(1411), - [anon_sym_CARET] = ACTIONS(1407), - [anon_sym_AMP] = ACTIONS(1407), - [anon_sym_this] = ACTIONS(1413), - [anon_sym_scoped] = ACTIONS(1415), - [anon_sym_base] = ACTIONS(1417), - [anon_sym_var] = ACTIONS(1419), - [sym_predefined_type] = ACTIONS(1421), - [anon_sym_unchecked] = ACTIONS(1403), - [anon_sym_yield] = ACTIONS(1389), - [anon_sym_default] = ACTIONS(1423), - [anon_sym_throw] = ACTIONS(1425), - [anon_sym_when] = ACTIONS(1389), - [anon_sym_await] = ACTIONS(1427), - [anon_sym_DOT_DOT] = ACTIONS(1429), - [anon_sym_from] = ACTIONS(1431), - [anon_sym_into] = ACTIONS(1389), - [anon_sym_join] = ACTIONS(1389), - [anon_sym_on] = ACTIONS(1389), - [anon_sym_equals] = ACTIONS(1389), - [anon_sym_let] = ACTIONS(1389), - [anon_sym_orderby] = ACTIONS(1389), - [anon_sym_ascending] = ACTIONS(1389), - [anon_sym_descending] = ACTIONS(1389), - [anon_sym_group] = ACTIONS(1389), - [anon_sym_by] = ACTIONS(1389), - [anon_sym_select] = ACTIONS(1389), - [anon_sym_stackalloc] = ACTIONS(1433), - [anon_sym_sizeof] = ACTIONS(1435), - [anon_sym_typeof] = ACTIONS(1437), - [anon_sym___makeref] = ACTIONS(1439), - [anon_sym___reftype] = ACTIONS(1441), - [anon_sym___refvalue] = ACTIONS(1443), - [sym_null_literal] = ACTIONS(1445), - [anon_sym_SQUOTE] = ACTIONS(1447), - [sym_integer_literal] = ACTIONS(1445), - [sym_real_literal] = ACTIONS(1449), - [anon_sym_DQUOTE] = ACTIONS(1451), - [sym_verbatim_string_literal] = ACTIONS(1449), - [aux_sym_preproc_if_token1] = ACTIONS(1453), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1455), - [sym_interpolation_verbatim_start] = ACTIONS(1457), - [sym_interpolation_raw_start] = ACTIONS(1459), - [sym_raw_string_start] = ACTIONS(1461), - }, - [1611] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2762), - [sym__name] = STATE(5910), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2204), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(4306), - [sym_non_lvalue_expression] = STATE(3438), - [sym_lvalue_expression] = STATE(3162), - [sym__expression_statement_expression] = STATE(3362), - [sym_assignment_expression] = STATE(3449), - [sym_binary_expression] = STATE(3362), - [sym_postfix_unary_expression] = STATE(3449), - [sym_prefix_unary_expression] = STATE(3449), - [sym__pointer_indirection_expression] = STATE(2747), - [sym_query_expression] = STATE(3362), - [sym_from_clause] = STATE(6171), - [sym_conditional_expression] = STATE(3362), - [sym_conditional_access_expression] = STATE(3362), - [sym_as_expression] = STATE(3362), - [sym_is_expression] = STATE(3362), - [sym_is_pattern_expression] = STATE(3362), - [sym_cast_expression] = STATE(3362), - [sym_checked_expression] = STATE(3362), - [sym_invocation_expression] = STATE(3449), - [sym_switch_expression] = STATE(3362), - [sym_await_expression] = STATE(3449), - [sym_throw_expression] = STATE(3362), - [sym_element_access_expression] = STATE(2747), - [sym_interpolated_string_expression] = STATE(3362), - [sym_member_access_expression] = STATE(2747), - [sym_object_creation_expression] = STATE(3449), - [sym_parenthesized_expression] = STATE(3449), - [sym__parenthesized_lvalue_expression] = STATE(2747), - [sym_lambda_expression] = STATE(3362), - [sym__lambda_expression_init] = STATE(7320), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3362), - [sym_anonymous_method_expression] = STATE(3362), - [sym_anonymous_object_creation_expression] = STATE(3362), - [sym_implicit_array_creation_expression] = STATE(3362), - [sym_implicit_object_creation_expression] = STATE(3362), - [sym_implicit_stackalloc_expression] = STATE(3362), - [sym_initializer_expression] = STATE(3362), - [sym_default_expression] = STATE(3362), - [sym_with_expression] = STATE(3362), - [sym_sizeof_expression] = STATE(3362), - [sym_typeof_expression] = STATE(3362), - [sym_makeref_expression] = STATE(3362), - [sym_ref_expression] = STATE(3362), - [sym_reftype_expression] = STATE(3362), - [sym_refvalue_expression] = STATE(3362), - [sym_stackalloc_expression] = STATE(3362), - [sym_range_expression] = STATE(3362), - [sym_tuple_expression] = STATE(2747), - [sym_literal] = STATE(3362), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3362), - [sym_preproc_if_in_attribute_list] = STATE(5576), - [sym_preproc_region] = STATE(1611), - [sym_preproc_endregion] = STATE(1611), - [sym_preproc_line] = STATE(1611), - [sym_preproc_pragma] = STATE(1611), - [sym_preproc_nullable] = STATE(1611), - [sym_preproc_error] = STATE(1611), - [sym_preproc_warning] = STATE(1611), - [sym_preproc_define] = STATE(1611), - [sym_preproc_undef] = STATE(1611), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3385), + [1597] = { + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2603), + [sym__name] = STATE(5870), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2379), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(3136), + [sym_non_lvalue_expression] = STATE(3220), + [sym_lvalue_expression] = STATE(3386), + [sym__expression_statement_expression] = STATE(3236), + [sym_assignment_expression] = STATE(3221), + [sym_binary_expression] = STATE(3236), + [sym_postfix_unary_expression] = STATE(3221), + [sym_prefix_unary_expression] = STATE(3221), + [sym__pointer_indirection_expression] = STATE(2602), + [sym_query_expression] = STATE(3236), + [sym_from_clause] = STATE(6166), + [sym_conditional_expression] = STATE(3236), + [sym_conditional_access_expression] = STATE(3236), + [sym_as_expression] = STATE(3236), + [sym_is_expression] = STATE(3236), + [sym_is_pattern_expression] = STATE(3236), + [sym_cast_expression] = STATE(3236), + [sym_checked_expression] = STATE(3236), + [sym_invocation_expression] = STATE(3221), + [sym_switch_expression] = STATE(3236), + [sym_await_expression] = STATE(3221), + [sym_throw_expression] = STATE(3236), + [sym_element_access_expression] = STATE(2602), + [sym_interpolated_string_expression] = STATE(3236), + [sym_member_access_expression] = STATE(2602), + [sym_object_creation_expression] = STATE(3221), + [sym_parenthesized_expression] = STATE(3221), + [sym__parenthesized_lvalue_expression] = STATE(2602), + [sym_lambda_expression] = STATE(3236), + [sym__lambda_expression_init] = STATE(7418), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3236), + [sym_anonymous_method_expression] = STATE(3236), + [sym_anonymous_object_creation_expression] = STATE(3236), + [sym_implicit_array_creation_expression] = STATE(3236), + [sym_implicit_object_creation_expression] = STATE(3236), + [sym_implicit_stackalloc_expression] = STATE(3236), + [sym_initializer_expression] = STATE(3236), + [sym_default_expression] = STATE(3236), + [sym_with_expression] = STATE(3236), + [sym_sizeof_expression] = STATE(3236), + [sym_typeof_expression] = STATE(3236), + [sym_makeref_expression] = STATE(3236), + [sym_ref_expression] = STATE(3236), + [sym_reftype_expression] = STATE(3236), + [sym_refvalue_expression] = STATE(3236), + [sym_stackalloc_expression] = STATE(3236), + [sym_range_expression] = STATE(3236), + [sym_tuple_expression] = STATE(2602), + [sym_literal] = STATE(3236), + [sym_character_literal] = STATE(3272), + [sym_string_literal] = STATE(3272), + [sym_raw_string_literal] = STATE(3272), + [sym_boolean_literal] = STATE(3272), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3236), + [sym_preproc_if_in_attribute_list] = STATE(5583), + [sym_preproc_region] = STATE(1597), + [sym_preproc_endregion] = STATE(1597), + [sym_preproc_line] = STATE(1597), + [sym_preproc_pragma] = STATE(1597), + [sym_preproc_nullable] = STATE(1597), + [sym_preproc_error] = STATE(1597), + [sym_preproc_warning] = STATE(1597), + [sym_preproc_define] = STATE(1597), + [sym_preproc_undef] = STATE(1597), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3379), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1307), - [anon_sym_LPAREN] = ACTIONS(1343), - [anon_sym_ref] = ACTIONS(1345), - [anon_sym_LBRACE] = ACTIONS(1313), - [anon_sym_delegate] = ACTIONS(1315), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1149), + [anon_sym_LPAREN] = ACTIONS(1821), + [anon_sym_ref] = ACTIONS(1823), + [anon_sym_LBRACE] = ACTIONS(1155), + [anon_sym_delegate] = ACTIONS(1157), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1317), + [anon_sym_new] = ACTIONS(1825), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1319), - [anon_sym_BANG] = ACTIONS(1349), - [anon_sym_TILDE] = ACTIONS(1349), - [anon_sym_PLUS_PLUS] = ACTIONS(1349), - [anon_sym_DASH_DASH] = ACTIONS(1349), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1347), - [anon_sym_DASH] = ACTIONS(1347), - [anon_sym_STAR] = ACTIONS(1351), - [anon_sym_CARET] = ACTIONS(1349), - [anon_sym_AMP] = ACTIONS(1349), - [anon_sym_this] = ACTIONS(1323), + [anon_sym_checked] = ACTIONS(1163), + [anon_sym_BANG] = ACTIONS(1829), + [anon_sym_TILDE] = ACTIONS(1829), + [anon_sym_PLUS_PLUS] = ACTIONS(1829), + [anon_sym_DASH_DASH] = ACTIONS(1829), + [anon_sym_true] = ACTIONS(1169), + [anon_sym_false] = ACTIONS(1169), + [anon_sym_PLUS] = ACTIONS(1827), + [anon_sym_DASH] = ACTIONS(1827), + [anon_sym_STAR] = ACTIONS(1831), + [anon_sym_CARET] = ACTIONS(1829), + [anon_sym_AMP] = ACTIONS(1829), + [anon_sym_this] = ACTIONS(1173), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1325), + [anon_sym_base] = ACTIONS(1175), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1319), + [sym_predefined_type] = ACTIONS(1177), + [anon_sym_unchecked] = ACTIONS(1163), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1353), + [anon_sym_default] = ACTIONS(1179), + [anon_sym_throw] = ACTIONS(1833), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1355), - [anon_sym_DOT_DOT] = ACTIONS(1357), + [anon_sym_await] = ACTIONS(1835), + [anon_sym_DOT_DOT] = ACTIONS(1837), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -314171,19 +311691,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1333), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(1335), - [anon_sym___reftype] = ACTIONS(1337), - [anon_sym___refvalue] = ACTIONS(1339), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1341), + [anon_sym_stackalloc] = ACTIONS(1187), + [anon_sym_sizeof] = ACTIONS(1189), + [anon_sym_typeof] = ACTIONS(1191), + [anon_sym___makeref] = ACTIONS(1193), + [anon_sym___reftype] = ACTIONS(1195), + [anon_sym___refvalue] = ACTIONS(1197), + [sym_null_literal] = ACTIONS(1199), + [anon_sym_SQUOTE] = ACTIONS(1201), + [sym_integer_literal] = ACTIONS(1199), + [sym_real_literal] = ACTIONS(1203), + [anon_sym_DQUOTE] = ACTIONS(1205), + [sym_verbatim_string_literal] = ACTIONS(1203), + [aux_sym_preproc_if_token1] = ACTIONS(1207), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -314194,140 +311714,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(1209), + [sym_interpolation_verbatim_start] = ACTIONS(1211), + [sym_interpolation_raw_start] = ACTIONS(1213), + [sym_raw_string_start] = ACTIONS(1215), }, - [1612] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(5160), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2204), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(5377), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3687), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3080), - [sym_postfix_unary_expression] = STATE(3111), - [sym_prefix_unary_expression] = STATE(3111), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6164), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3080), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3111), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3080), - [sym_member_access_expression] = STATE(2484), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3111), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7701), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(3080), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3080), - [sym_typeof_expression] = STATE(3080), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2484), - [sym_literal] = STATE(3080), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), - [sym_preproc_region] = STATE(1612), - [sym_preproc_endregion] = STATE(1612), - [sym_preproc_line] = STATE(1612), - [sym_preproc_pragma] = STATE(1612), - [sym_preproc_nullable] = STATE(1612), - [sym_preproc_error] = STATE(1612), - [sym_preproc_warning] = STATE(1612), - [sym_preproc_define] = STATE(1612), - [sym_preproc_undef] = STATE(1612), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [1598] = { + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2603), + [sym__name] = STATE(5872), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2387), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(5696), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(2604), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3102), + [sym_postfix_unary_expression] = STATE(3079), + [sym_prefix_unary_expression] = STATE(3079), + [sym__pointer_indirection_expression] = STATE(2602), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6134), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3102), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3079), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2602), + [sym_interpolated_string_expression] = STATE(3102), + [sym_member_access_expression] = STATE(2602), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3079), + [sym__parenthesized_lvalue_expression] = STATE(2602), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7425), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(3102), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3102), + [sym_typeof_expression] = STATE(3102), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2602), + [sym_literal] = STATE(3102), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), + [sym_preproc_region] = STATE(1598), + [sym_preproc_endregion] = STATE(1598), + [sym_preproc_line] = STATE(1598), + [sym_preproc_pragma] = STATE(1598), + [sym_preproc_nullable] = STATE(1598), + [sym_preproc_error] = STATE(1598), + [sym_preproc_warning] = STATE(1598), + [sym_preproc_define] = STATE(1598), + [sym_preproc_undef] = STATE(1598), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1481), - [anon_sym_LPAREN] = ACTIONS(2093), - [anon_sym_ref] = ACTIONS(2095), - [anon_sym_LBRACE] = ACTIONS(1487), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1149), + [anon_sym_LPAREN] = ACTIONS(2947), + [anon_sym_ref] = ACTIONS(715), + [anon_sym_LBRACE] = ACTIONS(1481), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1061), + [anon_sym_new] = ACTIONS(1059), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1067), - [anon_sym_BANG] = ACTIONS(2099), - [anon_sym_TILDE] = ACTIONS(2099), - [anon_sym_PLUS_PLUS] = ACTIONS(2099), - [anon_sym_DASH_DASH] = ACTIONS(2099), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(1525), + [anon_sym_TILDE] = ACTIONS(1525), + [anon_sym_PLUS_PLUS] = ACTIONS(1525), + [anon_sym_DASH_DASH] = ACTIONS(1525), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(2097), - [anon_sym_DASH] = ACTIONS(2097), - [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(2099), - [anon_sym_AMP] = ACTIONS(2099), - [anon_sym_this] = ACTIONS(83), + [anon_sym_PLUS] = ACTIONS(1523), + [anon_sym_DASH] = ACTIONS(1523), + [anon_sym_STAR] = ACTIONS(1867), + [anon_sym_CARET] = ACTIONS(1525), + [anon_sym_AMP] = ACTIONS(1525), + [anon_sym_this] = 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(1067), + [sym_predefined_type] = ACTIONS(1177), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(2101), + [anon_sym_throw] = ACTIONS(1527), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2103), - [anon_sym_DOT_DOT] = ACTIONS(2105), + [anon_sym_await] = ACTIONS(1529), + [anon_sym_DOT_DOT] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -314352,7 +311872,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(2107), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -314368,135 +311888,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), }, - [1613] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(5160), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2204), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(3521), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3687), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3080), - [sym_postfix_unary_expression] = STATE(3111), - [sym_prefix_unary_expression] = STATE(3111), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6164), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3080), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3111), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3080), - [sym_member_access_expression] = STATE(2484), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3111), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7701), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(3080), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3080), - [sym_typeof_expression] = STATE(3080), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2484), - [sym_literal] = STATE(3080), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), - [sym_preproc_region] = STATE(1613), - [sym_preproc_endregion] = STATE(1613), - [sym_preproc_line] = STATE(1613), - [sym_preproc_pragma] = STATE(1613), - [sym_preproc_nullable] = STATE(1613), - [sym_preproc_error] = STATE(1613), - [sym_preproc_warning] = STATE(1613), - [sym_preproc_define] = STATE(1613), - [sym_preproc_undef] = STATE(1613), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [1599] = { + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2603), + [sym__name] = STATE(5872), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2387), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(3136), + [sym_non_lvalue_expression] = STATE(3220), + [sym_lvalue_expression] = STATE(3395), + [sym__expression_statement_expression] = STATE(3236), + [sym_assignment_expression] = STATE(3221), + [sym_binary_expression] = STATE(3236), + [sym_postfix_unary_expression] = STATE(3221), + [sym_prefix_unary_expression] = STATE(3221), + [sym__pointer_indirection_expression] = STATE(2602), + [sym_query_expression] = STATE(3236), + [sym_from_clause] = STATE(6141), + [sym_conditional_expression] = STATE(3236), + [sym_conditional_access_expression] = STATE(3236), + [sym_as_expression] = STATE(3236), + [sym_is_expression] = STATE(3236), + [sym_is_pattern_expression] = STATE(3236), + [sym_cast_expression] = STATE(3236), + [sym_checked_expression] = STATE(3236), + [sym_invocation_expression] = STATE(3221), + [sym_switch_expression] = STATE(3236), + [sym_await_expression] = STATE(3221), + [sym_throw_expression] = STATE(3236), + [sym_element_access_expression] = STATE(2602), + [sym_interpolated_string_expression] = STATE(3236), + [sym_member_access_expression] = STATE(2602), + [sym_object_creation_expression] = STATE(3221), + [sym_parenthesized_expression] = STATE(3221), + [sym__parenthesized_lvalue_expression] = STATE(2602), + [sym_lambda_expression] = STATE(3236), + [sym__lambda_expression_init] = STATE(7446), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3236), + [sym_anonymous_method_expression] = STATE(3236), + [sym_anonymous_object_creation_expression] = STATE(3236), + [sym_implicit_array_creation_expression] = STATE(3236), + [sym_implicit_object_creation_expression] = STATE(3236), + [sym_implicit_stackalloc_expression] = STATE(3236), + [sym_initializer_expression] = STATE(3236), + [sym_default_expression] = STATE(3236), + [sym_with_expression] = STATE(3236), + [sym_sizeof_expression] = STATE(3236), + [sym_typeof_expression] = STATE(3236), + [sym_makeref_expression] = STATE(3236), + [sym_ref_expression] = STATE(3236), + [sym_reftype_expression] = STATE(3236), + [sym_refvalue_expression] = STATE(3236), + [sym_stackalloc_expression] = STATE(3236), + [sym_range_expression] = STATE(3236), + [sym_tuple_expression] = STATE(2602), + [sym_literal] = STATE(3236), + [sym_character_literal] = STATE(3272), + [sym_string_literal] = STATE(3272), + [sym_raw_string_literal] = STATE(3272), + [sym_boolean_literal] = STATE(3272), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3236), + [sym_preproc_if_in_attribute_list] = STATE(5583), + [sym_preproc_region] = STATE(1599), + [sym_preproc_endregion] = STATE(1599), + [sym_preproc_line] = STATE(1599), + [sym_preproc_pragma] = STATE(1599), + [sym_preproc_nullable] = STATE(1599), + [sym_preproc_error] = STATE(1599), + [sym_preproc_warning] = STATE(1599), + [sym_preproc_define] = STATE(1599), + [sym_preproc_undef] = STATE(1599), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3379), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1481), - [anon_sym_LPAREN] = ACTIONS(2093), - [anon_sym_ref] = ACTIONS(2095), - [anon_sym_LBRACE] = ACTIONS(1487), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1149), + [anon_sym_LPAREN] = ACTIONS(1857), + [anon_sym_ref] = ACTIONS(1859), + [anon_sym_LBRACE] = ACTIONS(1155), + [anon_sym_delegate] = ACTIONS(1157), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1061), + [anon_sym_new] = ACTIONS(1861), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1067), - [anon_sym_BANG] = ACTIONS(2099), - [anon_sym_TILDE] = ACTIONS(2099), - [anon_sym_PLUS_PLUS] = ACTIONS(2099), - [anon_sym_DASH_DASH] = ACTIONS(2099), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(2097), - [anon_sym_DASH] = ACTIONS(2097), - [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(2099), - [anon_sym_AMP] = ACTIONS(2099), - [anon_sym_this] = ACTIONS(83), + [anon_sym_checked] = ACTIONS(1163), + [anon_sym_BANG] = ACTIONS(1865), + [anon_sym_TILDE] = ACTIONS(1865), + [anon_sym_PLUS_PLUS] = ACTIONS(1865), + [anon_sym_DASH_DASH] = ACTIONS(1865), + [anon_sym_true] = ACTIONS(1169), + [anon_sym_false] = ACTIONS(1169), + [anon_sym_PLUS] = ACTIONS(1863), + [anon_sym_DASH] = ACTIONS(1863), + [anon_sym_STAR] = ACTIONS(1867), + [anon_sym_CARET] = ACTIONS(1865), + [anon_sym_AMP] = ACTIONS(1865), + [anon_sym_this] = ACTIONS(1173), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), + [anon_sym_base] = ACTIONS(1175), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1067), + [sym_predefined_type] = ACTIONS(1177), + [anon_sym_unchecked] = ACTIONS(1163), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(2101), + [anon_sym_default] = ACTIONS(1179), + [anon_sym_throw] = ACTIONS(1869), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2103), - [anon_sym_DOT_DOT] = ACTIONS(2105), + [anon_sym_await] = ACTIONS(1871), + [anon_sym_DOT_DOT] = ACTIONS(1873), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -314509,19 +312029,19 @@ static const uint16_t ts_parse_table[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(2107), + [anon_sym_stackalloc] = ACTIONS(1187), + [anon_sym_sizeof] = ACTIONS(1189), + [anon_sym_typeof] = ACTIONS(1191), + [anon_sym___makeref] = ACTIONS(1193), + [anon_sym___reftype] = ACTIONS(1195), + [anon_sym___refvalue] = ACTIONS(1197), + [sym_null_literal] = ACTIONS(1199), + [anon_sym_SQUOTE] = ACTIONS(1201), + [sym_integer_literal] = ACTIONS(1199), + [sym_real_literal] = ACTIONS(1203), + [anon_sym_DQUOTE] = ACTIONS(1205), + [sym_verbatim_string_literal] = ACTIONS(1203), + [aux_sym_preproc_if_token1] = ACTIONS(1207), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -314532,140 +312052,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(1209), + [sym_interpolation_verbatim_start] = ACTIONS(1211), + [sym_interpolation_raw_start] = ACTIONS(1213), + [sym_raw_string_start] = ACTIONS(1215), }, - [1614] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2762), - [sym__name] = STATE(5910), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2204), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(4315), - [sym_non_lvalue_expression] = STATE(3438), - [sym_lvalue_expression] = STATE(3162), - [sym__expression_statement_expression] = STATE(3362), - [sym_assignment_expression] = STATE(3449), - [sym_binary_expression] = STATE(3362), - [sym_postfix_unary_expression] = STATE(3449), - [sym_prefix_unary_expression] = STATE(3449), - [sym__pointer_indirection_expression] = STATE(2747), - [sym_query_expression] = STATE(3362), - [sym_from_clause] = STATE(6171), - [sym_conditional_expression] = STATE(3362), - [sym_conditional_access_expression] = STATE(3362), - [sym_as_expression] = STATE(3362), - [sym_is_expression] = STATE(3362), - [sym_is_pattern_expression] = STATE(3362), - [sym_cast_expression] = STATE(3362), - [sym_checked_expression] = STATE(3362), - [sym_invocation_expression] = STATE(3449), - [sym_switch_expression] = STATE(3362), - [sym_await_expression] = STATE(3449), - [sym_throw_expression] = STATE(3362), - [sym_element_access_expression] = STATE(2747), - [sym_interpolated_string_expression] = STATE(3362), - [sym_member_access_expression] = STATE(2747), - [sym_object_creation_expression] = STATE(3449), - [sym_parenthesized_expression] = STATE(3449), - [sym__parenthesized_lvalue_expression] = STATE(2747), - [sym_lambda_expression] = STATE(3362), - [sym__lambda_expression_init] = STATE(7320), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3362), - [sym_anonymous_method_expression] = STATE(3362), - [sym_anonymous_object_creation_expression] = STATE(3362), - [sym_implicit_array_creation_expression] = STATE(3362), - [sym_implicit_object_creation_expression] = STATE(3362), - [sym_implicit_stackalloc_expression] = STATE(3362), - [sym_initializer_expression] = STATE(3362), - [sym_default_expression] = STATE(3362), - [sym_with_expression] = STATE(3362), - [sym_sizeof_expression] = STATE(3362), - [sym_typeof_expression] = STATE(3362), - [sym_makeref_expression] = STATE(3362), - [sym_ref_expression] = STATE(3362), - [sym_reftype_expression] = STATE(3362), - [sym_refvalue_expression] = STATE(3362), - [sym_stackalloc_expression] = STATE(3362), - [sym_range_expression] = STATE(3362), - [sym_tuple_expression] = STATE(2747), - [sym_literal] = STATE(3362), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3362), - [sym_preproc_if_in_attribute_list] = STATE(5576), - [sym_preproc_region] = STATE(1614), - [sym_preproc_endregion] = STATE(1614), - [sym_preproc_line] = STATE(1614), - [sym_preproc_pragma] = STATE(1614), - [sym_preproc_nullable] = STATE(1614), - [sym_preproc_error] = STATE(1614), - [sym_preproc_warning] = STATE(1614), - [sym_preproc_define] = STATE(1614), - [sym_preproc_undef] = STATE(1614), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3385), + [1600] = { + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2603), + [sym__name] = STATE(5862), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2193), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(5696), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(2604), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3102), + [sym_postfix_unary_expression] = STATE(3079), + [sym_prefix_unary_expression] = STATE(3079), + [sym__pointer_indirection_expression] = STATE(2602), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6134), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3102), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3079), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2602), + [sym_interpolated_string_expression] = STATE(3102), + [sym_member_access_expression] = STATE(2602), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3079), + [sym__parenthesized_lvalue_expression] = STATE(2602), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7425), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(3102), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3102), + [sym_typeof_expression] = STATE(3102), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2602), + [sym_literal] = STATE(3102), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2261), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), + [sym_preproc_region] = STATE(1600), + [sym_preproc_endregion] = STATE(1600), + [sym_preproc_line] = STATE(1600), + [sym_preproc_pragma] = STATE(1600), + [sym_preproc_nullable] = STATE(1600), + [sym_preproc_error] = STATE(1600), + [sym_preproc_warning] = STATE(1600), + [sym_preproc_define] = STATE(1600), + [sym_preproc_undef] = STATE(1600), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1307), - [anon_sym_LPAREN] = ACTIONS(1343), - [anon_sym_ref] = ACTIONS(1345), - [anon_sym_LBRACE] = ACTIONS(1313), - [anon_sym_delegate] = ACTIONS(1315), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1149), + [anon_sym_LPAREN] = ACTIONS(2947), + [anon_sym_ref] = ACTIONS(715), + [anon_sym_LBRACE] = ACTIONS(1481), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1317), + [anon_sym_new] = ACTIONS(1059), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1319), - [anon_sym_BANG] = ACTIONS(1349), - [anon_sym_TILDE] = ACTIONS(1349), - [anon_sym_PLUS_PLUS] = ACTIONS(1349), - [anon_sym_DASH_DASH] = ACTIONS(1349), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(1525), + [anon_sym_TILDE] = ACTIONS(1525), + [anon_sym_PLUS_PLUS] = ACTIONS(1525), + [anon_sym_DASH_DASH] = ACTIONS(1525), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1347), - [anon_sym_DASH] = ACTIONS(1347), - [anon_sym_STAR] = ACTIONS(1351), - [anon_sym_CARET] = ACTIONS(1349), - [anon_sym_AMP] = ACTIONS(1349), - [anon_sym_this] = ACTIONS(1323), + [anon_sym_PLUS] = ACTIONS(1523), + [anon_sym_DASH] = ACTIONS(1523), + [anon_sym_STAR] = ACTIONS(1557), + [anon_sym_CARET] = ACTIONS(1525), + [anon_sym_AMP] = ACTIONS(1525), + [anon_sym_this] = ACTIONS(1173), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1325), + [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1319), + [sym_predefined_type] = ACTIONS(1177), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1353), + [anon_sym_throw] = ACTIONS(1527), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1355), - [anon_sym_DOT_DOT] = ACTIONS(1357), + [anon_sym_await] = ACTIONS(1529), + [anon_sym_DOT_DOT] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -314678,19 +312198,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1333), + [anon_sym_stackalloc] = ACTIONS(127), [anon_sym_sizeof] = ACTIONS(129), [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(1335), - [anon_sym___reftype] = ACTIONS(1337), - [anon_sym___refvalue] = ACTIONS(1339), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), [sym_null_literal] = ACTIONS(139), [anon_sym_SQUOTE] = ACTIONS(141), [sym_integer_literal] = ACTIONS(139), [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1341), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -314706,135 +312226,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), }, - [1615] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(5160), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2204), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(5379), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3687), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3080), - [sym_postfix_unary_expression] = STATE(3111), - [sym_prefix_unary_expression] = STATE(3111), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6164), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3080), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3111), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3080), - [sym_member_access_expression] = STATE(2484), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3111), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7701), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(3080), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3080), - [sym_typeof_expression] = STATE(3080), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2484), - [sym_literal] = STATE(3080), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), - [sym_preproc_region] = STATE(1615), - [sym_preproc_endregion] = STATE(1615), - [sym_preproc_line] = STATE(1615), - [sym_preproc_pragma] = STATE(1615), - [sym_preproc_nullable] = STATE(1615), - [sym_preproc_error] = STATE(1615), - [sym_preproc_warning] = STATE(1615), - [sym_preproc_define] = STATE(1615), - [sym_preproc_undef] = STATE(1615), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [1601] = { + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2603), + [sym__name] = STATE(5862), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2193), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(3136), + [sym_non_lvalue_expression] = STATE(3220), + [sym_lvalue_expression] = STATE(3403), + [sym__expression_statement_expression] = STATE(3236), + [sym_assignment_expression] = STATE(3221), + [sym_binary_expression] = STATE(3236), + [sym_postfix_unary_expression] = STATE(3221), + [sym_prefix_unary_expression] = STATE(3221), + [sym__pointer_indirection_expression] = STATE(2602), + [sym_query_expression] = STATE(3236), + [sym_from_clause] = STATE(6145), + [sym_conditional_expression] = STATE(3236), + [sym_conditional_access_expression] = STATE(3236), + [sym_as_expression] = STATE(3236), + [sym_is_expression] = STATE(3236), + [sym_is_pattern_expression] = STATE(3236), + [sym_cast_expression] = STATE(3236), + [sym_checked_expression] = STATE(3236), + [sym_invocation_expression] = STATE(3221), + [sym_switch_expression] = STATE(3236), + [sym_await_expression] = STATE(3221), + [sym_throw_expression] = STATE(3236), + [sym_element_access_expression] = STATE(2602), + [sym_interpolated_string_expression] = STATE(3236), + [sym_member_access_expression] = STATE(2602), + [sym_object_creation_expression] = STATE(3221), + [sym_parenthesized_expression] = STATE(3221), + [sym__parenthesized_lvalue_expression] = STATE(2602), + [sym_lambda_expression] = STATE(3236), + [sym__lambda_expression_init] = STATE(7639), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3236), + [sym_anonymous_method_expression] = STATE(3236), + [sym_anonymous_object_creation_expression] = STATE(3236), + [sym_implicit_array_creation_expression] = STATE(3236), + [sym_implicit_object_creation_expression] = STATE(3236), + [sym_implicit_stackalloc_expression] = STATE(3236), + [sym_initializer_expression] = STATE(3236), + [sym_default_expression] = STATE(3236), + [sym_with_expression] = STATE(3236), + [sym_sizeof_expression] = STATE(3236), + [sym_typeof_expression] = STATE(3236), + [sym_makeref_expression] = STATE(3236), + [sym_ref_expression] = STATE(3236), + [sym_reftype_expression] = STATE(3236), + [sym_refvalue_expression] = STATE(3236), + [sym_stackalloc_expression] = STATE(3236), + [sym_range_expression] = STATE(3236), + [sym_tuple_expression] = STATE(2602), + [sym_literal] = STATE(3236), + [sym_character_literal] = STATE(3272), + [sym_string_literal] = STATE(3272), + [sym_raw_string_literal] = STATE(3272), + [sym_boolean_literal] = STATE(3272), + [sym_identifier] = STATE(2261), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3236), + [sym_preproc_if_in_attribute_list] = STATE(5583), + [sym_preproc_region] = STATE(1601), + [sym_preproc_endregion] = STATE(1601), + [sym_preproc_line] = STATE(1601), + [sym_preproc_pragma] = STATE(1601), + [sym_preproc_nullable] = STATE(1601), + [sym_preproc_error] = STATE(1601), + [sym_preproc_warning] = STATE(1601), + [sym_preproc_define] = STATE(1601), + [sym_preproc_undef] = STATE(1601), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3379), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1481), - [anon_sym_LPAREN] = ACTIONS(2093), - [anon_sym_ref] = ACTIONS(2095), - [anon_sym_LBRACE] = ACTIONS(1487), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1149), + [anon_sym_LPAREN] = ACTIONS(1549), + [anon_sym_ref] = ACTIONS(1551), + [anon_sym_LBRACE] = ACTIONS(1155), + [anon_sym_delegate] = ACTIONS(1157), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1061), + [anon_sym_new] = ACTIONS(1159), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1067), - [anon_sym_BANG] = ACTIONS(2099), - [anon_sym_TILDE] = ACTIONS(2099), - [anon_sym_PLUS_PLUS] = ACTIONS(2099), - [anon_sym_DASH_DASH] = ACTIONS(2099), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(2097), - [anon_sym_DASH] = ACTIONS(2097), - [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(2099), - [anon_sym_AMP] = ACTIONS(2099), - [anon_sym_this] = ACTIONS(83), + [anon_sym_checked] = ACTIONS(1163), + [anon_sym_BANG] = ACTIONS(1555), + [anon_sym_TILDE] = ACTIONS(1555), + [anon_sym_PLUS_PLUS] = ACTIONS(1555), + [anon_sym_DASH_DASH] = ACTIONS(1555), + [anon_sym_true] = ACTIONS(1169), + [anon_sym_false] = ACTIONS(1169), + [anon_sym_PLUS] = ACTIONS(1553), + [anon_sym_DASH] = ACTIONS(1553), + [anon_sym_STAR] = ACTIONS(1557), + [anon_sym_CARET] = ACTIONS(1555), + [anon_sym_AMP] = ACTIONS(1555), + [anon_sym_this] = ACTIONS(1173), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), + [anon_sym_base] = ACTIONS(1175), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1067), + [sym_predefined_type] = ACTIONS(1177), + [anon_sym_unchecked] = ACTIONS(1163), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(2101), + [anon_sym_default] = ACTIONS(1179), + [anon_sym_throw] = ACTIONS(1559), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2103), - [anon_sym_DOT_DOT] = ACTIONS(2105), + [anon_sym_await] = ACTIONS(1561), + [anon_sym_DOT_DOT] = ACTIONS(1563), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -314847,19 +312367,19 @@ static const uint16_t ts_parse_table[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(2107), + [anon_sym_stackalloc] = ACTIONS(1187), + [anon_sym_sizeof] = ACTIONS(1189), + [anon_sym_typeof] = ACTIONS(1191), + [anon_sym___makeref] = ACTIONS(1193), + [anon_sym___reftype] = ACTIONS(1195), + [anon_sym___refvalue] = ACTIONS(1197), + [sym_null_literal] = ACTIONS(1199), + [anon_sym_SQUOTE] = ACTIONS(1201), + [sym_integer_literal] = ACTIONS(1199), + [sym_real_literal] = ACTIONS(1203), + [anon_sym_DQUOTE] = ACTIONS(1205), + [sym_verbatim_string_literal] = ACTIONS(1203), + [aux_sym_preproc_if_token1] = ACTIONS(1207), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -314870,140 +312390,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(1209), + [sym_interpolation_verbatim_start] = ACTIONS(1211), + [sym_interpolation_raw_start] = ACTIONS(1213), + [sym_raw_string_start] = ACTIONS(1215), }, - [1616] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2762), - [sym__name] = STATE(5910), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2204), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(3194), - [sym_non_lvalue_expression] = STATE(3438), - [sym_lvalue_expression] = STATE(3524), - [sym__expression_statement_expression] = STATE(3362), - [sym_assignment_expression] = STATE(3449), - [sym_binary_expression] = STATE(3362), - [sym_postfix_unary_expression] = STATE(3449), - [sym_prefix_unary_expression] = STATE(3449), - [sym__pointer_indirection_expression] = STATE(2747), - [sym_query_expression] = STATE(3362), - [sym_from_clause] = STATE(6174), - [sym_conditional_expression] = STATE(3362), - [sym_conditional_access_expression] = STATE(3362), - [sym_as_expression] = STATE(3362), - [sym_is_expression] = STATE(3362), - [sym_is_pattern_expression] = STATE(3362), - [sym_cast_expression] = STATE(3362), - [sym_checked_expression] = STATE(3362), - [sym_invocation_expression] = STATE(3449), - [sym_switch_expression] = STATE(3362), - [sym_await_expression] = STATE(3449), - [sym_throw_expression] = STATE(3362), - [sym_element_access_expression] = STATE(2747), - [sym_interpolated_string_expression] = STATE(3362), - [sym_member_access_expression] = STATE(2747), - [sym_object_creation_expression] = STATE(3449), - [sym_parenthesized_expression] = STATE(3449), - [sym__parenthesized_lvalue_expression] = STATE(2747), - [sym_lambda_expression] = STATE(3362), - [sym__lambda_expression_init] = STATE(7407), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3362), - [sym_anonymous_method_expression] = STATE(3362), - [sym_anonymous_object_creation_expression] = STATE(3362), - [sym_implicit_array_creation_expression] = STATE(3362), - [sym_implicit_object_creation_expression] = STATE(3362), - [sym_implicit_stackalloc_expression] = STATE(3362), - [sym_initializer_expression] = STATE(3362), - [sym_default_expression] = STATE(3362), - [sym_with_expression] = STATE(3362), - [sym_sizeof_expression] = STATE(3362), - [sym_typeof_expression] = STATE(3362), - [sym_makeref_expression] = STATE(3362), - [sym_ref_expression] = STATE(3362), - [sym_reftype_expression] = STATE(3362), - [sym_refvalue_expression] = STATE(3362), - [sym_stackalloc_expression] = STATE(3362), - [sym_range_expression] = STATE(3362), - [sym_tuple_expression] = STATE(2747), - [sym_literal] = STATE(3362), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3362), - [sym_preproc_if_in_attribute_list] = STATE(5576), - [sym_preproc_region] = STATE(1616), - [sym_preproc_endregion] = STATE(1616), - [sym_preproc_line] = STATE(1616), - [sym_preproc_pragma] = STATE(1616), - [sym_preproc_nullable] = STATE(1616), - [sym_preproc_error] = STATE(1616), - [sym_preproc_warning] = STATE(1616), - [sym_preproc_define] = STATE(1616), - [sym_preproc_undef] = STATE(1616), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3385), + [1602] = { + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(5152), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2196), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(3507), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3510), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3102), + [sym_postfix_unary_expression] = STATE(3079), + [sym_prefix_unary_expression] = STATE(3079), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6134), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3102), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3079), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3102), + [sym_member_access_expression] = STATE(2472), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3079), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7425), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(3102), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3102), + [sym_typeof_expression] = STATE(3102), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2472), + [sym_literal] = STATE(3102), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), + [sym_preproc_region] = STATE(1602), + [sym_preproc_endregion] = STATE(1602), + [sym_preproc_line] = STATE(1602), + [sym_preproc_pragma] = STATE(1602), + [sym_preproc_nullable] = STATE(1602), + [sym_preproc_error] = STATE(1602), + [sym_preproc_warning] = STATE(1602), + [sym_preproc_define] = STATE(1602), + [sym_preproc_undef] = STATE(1602), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1307), - [anon_sym_LPAREN] = ACTIONS(1693), - [anon_sym_ref] = ACTIONS(1695), - [anon_sym_LBRACE] = ACTIONS(1313), - [anon_sym_delegate] = ACTIONS(1315), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1479), + [anon_sym_LPAREN] = ACTIONS(43), + [anon_sym_ref] = ACTIONS(715), + [anon_sym_LBRACE] = ACTIONS(1481), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1697), + [anon_sym_new] = ACTIONS(1059), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1319), - [anon_sym_BANG] = ACTIONS(1701), - [anon_sym_TILDE] = ACTIONS(1701), - [anon_sym_PLUS_PLUS] = ACTIONS(1701), - [anon_sym_DASH_DASH] = ACTIONS(1701), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(1525), + [anon_sym_TILDE] = ACTIONS(1525), + [anon_sym_PLUS_PLUS] = ACTIONS(1525), + [anon_sym_DASH_DASH] = ACTIONS(1525), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1699), - [anon_sym_DASH] = ACTIONS(1699), - [anon_sym_STAR] = ACTIONS(1351), - [anon_sym_CARET] = ACTIONS(1701), - [anon_sym_AMP] = ACTIONS(1701), - [anon_sym_this] = ACTIONS(1323), + [anon_sym_PLUS] = ACTIONS(1523), + [anon_sym_DASH] = ACTIONS(1523), + [anon_sym_STAR] = ACTIONS(81), + [anon_sym_CARET] = ACTIONS(1525), + [anon_sym_AMP] = ACTIONS(1525), + [anon_sym_this] = ACTIONS(83), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1325), + [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1319), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1703), + [anon_sym_throw] = ACTIONS(1527), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1705), - [anon_sym_DOT_DOT] = ACTIONS(1707), + [anon_sym_await] = ACTIONS(1529), + [anon_sym_DOT_DOT] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -315016,19 +312536,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1333), + [anon_sym_stackalloc] = ACTIONS(127), [anon_sym_sizeof] = ACTIONS(129), [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(1335), - [anon_sym___reftype] = ACTIONS(1337), - [anon_sym___refvalue] = ACTIONS(1339), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), [sym_null_literal] = ACTIONS(139), [anon_sym_SQUOTE] = ACTIONS(141), [sym_integer_literal] = ACTIONS(139), [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1709), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -315044,135 +312564,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), }, - [1617] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(5160), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2204), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5874), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(5416), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3687), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3080), - [sym_postfix_unary_expression] = STATE(3111), - [sym_prefix_unary_expression] = STATE(3111), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6164), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3080), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3111), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3080), - [sym_member_access_expression] = STATE(2484), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3111), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7701), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(3080), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3080), - [sym_typeof_expression] = STATE(3080), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2484), - [sym_literal] = STATE(3080), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), - [sym_preproc_region] = STATE(1617), - [sym_preproc_endregion] = STATE(1617), - [sym_preproc_line] = STATE(1617), - [sym_preproc_pragma] = STATE(1617), - [sym_preproc_nullable] = STATE(1617), - [sym_preproc_error] = STATE(1617), - [sym_preproc_warning] = STATE(1617), - [sym_preproc_define] = STATE(1617), - [sym_preproc_undef] = STATE(1617), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [1603] = { + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(5528), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2196), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(5660), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(2471), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3102), + [sym_postfix_unary_expression] = STATE(3079), + [sym_prefix_unary_expression] = STATE(3079), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6134), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3102), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3079), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3102), + [sym_member_access_expression] = STATE(2472), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3079), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7425), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(3102), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3102), + [sym_typeof_expression] = STATE(3102), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2472), + [sym_literal] = STATE(3102), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), + [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(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1481), - [anon_sym_LPAREN] = ACTIONS(2093), - [anon_sym_ref] = ACTIONS(2095), - [anon_sym_LBRACE] = ACTIONS(1487), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1479), + [anon_sym_LPAREN] = ACTIONS(43), + [anon_sym_ref] = ACTIONS(715), + [anon_sym_LBRACE] = ACTIONS(1481), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1061), + [anon_sym_new] = ACTIONS(1059), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1067), - [anon_sym_BANG] = ACTIONS(2099), - [anon_sym_TILDE] = ACTIONS(2099), - [anon_sym_PLUS_PLUS] = ACTIONS(2099), - [anon_sym_DASH_DASH] = ACTIONS(2099), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(1525), + [anon_sym_TILDE] = ACTIONS(1525), + [anon_sym_PLUS_PLUS] = ACTIONS(1525), + [anon_sym_DASH_DASH] = ACTIONS(1525), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(2097), - [anon_sym_DASH] = ACTIONS(2097), - [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(2099), - [anon_sym_AMP] = ACTIONS(2099), + [anon_sym_PLUS] = ACTIONS(1523), + [anon_sym_DASH] = ACTIONS(1523), + [anon_sym_STAR] = ACTIONS(1227), + [anon_sym_CARET] = ACTIONS(1525), + [anon_sym_AMP] = ACTIONS(1525), [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(1067), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(2101), + [anon_sym_throw] = ACTIONS(1527), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2103), - [anon_sym_DOT_DOT] = ACTIONS(2105), + [anon_sym_await] = ACTIONS(1529), + [anon_sym_DOT_DOT] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -315197,7 +312717,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(2107), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -315213,135 +312733,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), }, - [1618] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2914), - [sym__name] = STATE(5885), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2357), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(3591), - [sym_non_lvalue_expression] = STATE(3880), - [sym_lvalue_expression] = STATE(2911), - [sym__expression_statement_expression] = STATE(3873), - [sym_assignment_expression] = STATE(3881), - [sym_binary_expression] = STATE(3873), - [sym_postfix_unary_expression] = STATE(3881), - [sym_prefix_unary_expression] = STATE(3881), - [sym__pointer_indirection_expression] = STATE(2913), - [sym_query_expression] = STATE(3873), - [sym_from_clause] = STATE(6182), - [sym_conditional_expression] = STATE(3873), - [sym_conditional_access_expression] = STATE(3873), - [sym_as_expression] = STATE(3873), - [sym_is_expression] = STATE(3873), - [sym_is_pattern_expression] = STATE(3873), - [sym_cast_expression] = STATE(3873), - [sym_checked_expression] = STATE(3873), - [sym_invocation_expression] = STATE(3881), - [sym_switch_expression] = STATE(3873), - [sym_await_expression] = STATE(3881), - [sym_throw_expression] = STATE(3873), - [sym_element_access_expression] = STATE(2913), - [sym_interpolated_string_expression] = STATE(3873), - [sym_member_access_expression] = STATE(2913), - [sym_object_creation_expression] = STATE(3881), - [sym_parenthesized_expression] = STATE(3881), - [sym__parenthesized_lvalue_expression] = STATE(2913), - [sym_lambda_expression] = STATE(3873), - [sym__lambda_expression_init] = STATE(7316), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3873), - [sym_anonymous_method_expression] = STATE(3873), - [sym_anonymous_object_creation_expression] = STATE(3873), - [sym_implicit_array_creation_expression] = STATE(3873), - [sym_implicit_object_creation_expression] = STATE(3873), - [sym_implicit_stackalloc_expression] = STATE(3873), - [sym_initializer_expression] = STATE(3873), - [sym_default_expression] = STATE(3873), - [sym_with_expression] = STATE(3873), - [sym_sizeof_expression] = STATE(3873), - [sym_typeof_expression] = STATE(3873), - [sym_makeref_expression] = STATE(3873), - [sym_ref_expression] = STATE(3873), - [sym_reftype_expression] = STATE(3873), - [sym_refvalue_expression] = STATE(3873), - [sym_stackalloc_expression] = STATE(3873), - [sym_range_expression] = STATE(3873), - [sym_tuple_expression] = STATE(2913), - [sym_literal] = STATE(3873), - [sym_character_literal] = STATE(3877), - [sym_string_literal] = STATE(3877), - [sym_raw_string_literal] = STATE(3877), - [sym_boolean_literal] = STATE(3877), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3873), - [sym_preproc_if_in_attribute_list] = STATE(5576), - [sym_preproc_region] = STATE(1618), - [sym_preproc_endregion] = STATE(1618), - [sym_preproc_line] = STATE(1618), - [sym_preproc_pragma] = STATE(1618), - [sym_preproc_nullable] = STATE(1618), - [sym_preproc_error] = STATE(1618), - [sym_preproc_warning] = STATE(1618), - [sym_preproc_define] = STATE(1618), - [sym_preproc_undef] = STATE(1618), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3382), + [1604] = { + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2416), + [sym__name] = STATE(5890), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2193), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(4052), + [sym_non_lvalue_expression] = STATE(3040), + [sym_lvalue_expression] = STATE(3109), + [sym__expression_statement_expression] = STATE(3035), + [sym_assignment_expression] = STATE(3043), + [sym_binary_expression] = STATE(3035), + [sym_postfix_unary_expression] = STATE(3043), + [sym_prefix_unary_expression] = STATE(3043), + [sym__pointer_indirection_expression] = STATE(2415), + [sym_query_expression] = STATE(3035), + [sym_from_clause] = STATE(6138), + [sym_conditional_expression] = STATE(3035), + [sym_conditional_access_expression] = STATE(3035), + [sym_as_expression] = STATE(3035), + [sym_is_expression] = STATE(3035), + [sym_is_pattern_expression] = STATE(3035), + [sym_cast_expression] = STATE(3035), + [sym_checked_expression] = STATE(3035), + [sym_invocation_expression] = STATE(3043), + [sym_switch_expression] = STATE(3035), + [sym_await_expression] = STATE(3043), + [sym_throw_expression] = STATE(3035), + [sym_element_access_expression] = STATE(2415), + [sym_interpolated_string_expression] = STATE(3035), + [sym_member_access_expression] = STATE(2415), + [sym_object_creation_expression] = STATE(3043), + [sym_parenthesized_expression] = STATE(3043), + [sym__parenthesized_lvalue_expression] = STATE(2415), + [sym_lambda_expression] = STATE(3035), + [sym__lambda_expression_init] = STATE(7374), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3035), + [sym_anonymous_method_expression] = STATE(3035), + [sym_anonymous_object_creation_expression] = STATE(3035), + [sym_implicit_array_creation_expression] = STATE(3035), + [sym_implicit_object_creation_expression] = STATE(3035), + [sym_implicit_stackalloc_expression] = STATE(3035), + [sym_initializer_expression] = STATE(3035), + [sym_default_expression] = STATE(3035), + [sym_with_expression] = STATE(3035), + [sym_sizeof_expression] = STATE(3035), + [sym_typeof_expression] = STATE(3035), + [sym_makeref_expression] = STATE(3035), + [sym_ref_expression] = STATE(3035), + [sym_reftype_expression] = STATE(3035), + [sym_refvalue_expression] = STATE(3035), + [sym_stackalloc_expression] = STATE(3035), + [sym_range_expression] = STATE(3035), + [sym_tuple_expression] = STATE(2415), + [sym_literal] = STATE(3035), + [sym_character_literal] = STATE(3037), + [sym_string_literal] = STATE(3037), + [sym_raw_string_literal] = STATE(3037), + [sym_boolean_literal] = STATE(3037), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3035), + [sym_preproc_if_in_attribute_list] = STATE(5583), + [sym_preproc_region] = STATE(1604), + [sym_preproc_endregion] = STATE(1604), + [sym_preproc_line] = STATE(1604), + [sym_preproc_pragma] = STATE(1604), + [sym_preproc_nullable] = STATE(1604), + [sym_preproc_error] = STATE(1604), + [sym_preproc_warning] = STATE(1604), + [sym_preproc_define] = STATE(1604), + [sym_preproc_undef] = STATE(1604), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3455), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1627), - [anon_sym_LPAREN] = ACTIONS(1727), - [anon_sym_ref] = ACTIONS(1729), - [anon_sym_LBRACE] = ACTIONS(1633), - [anon_sym_delegate] = ACTIONS(1635), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1239), + [anon_sym_LPAREN] = ACTIONS(1241), + [anon_sym_ref] = ACTIONS(1243), + [anon_sym_LBRACE] = ACTIONS(1245), + [anon_sym_delegate] = ACTIONS(1247), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1731), + [anon_sym_new] = ACTIONS(1249), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1639), - [anon_sym_BANG] = ACTIONS(1735), - [anon_sym_TILDE] = ACTIONS(1735), - [anon_sym_PLUS_PLUS] = ACTIONS(1735), - [anon_sym_DASH_DASH] = ACTIONS(1735), - [anon_sym_true] = ACTIONS(1645), - [anon_sym_false] = ACTIONS(1645), - [anon_sym_PLUS] = ACTIONS(1733), - [anon_sym_DASH] = ACTIONS(1733), - [anon_sym_STAR] = ACTIONS(1737), - [anon_sym_CARET] = ACTIONS(1735), - [anon_sym_AMP] = ACTIONS(1735), - [anon_sym_this] = ACTIONS(1649), + [anon_sym_checked] = ACTIONS(1251), + [anon_sym_BANG] = ACTIONS(1255), + [anon_sym_TILDE] = ACTIONS(1255), + [anon_sym_PLUS_PLUS] = ACTIONS(1255), + [anon_sym_DASH_DASH] = ACTIONS(1255), + [anon_sym_true] = ACTIONS(1257), + [anon_sym_false] = ACTIONS(1257), + [anon_sym_PLUS] = ACTIONS(1253), + [anon_sym_DASH] = ACTIONS(1253), + [anon_sym_STAR] = ACTIONS(1259), + [anon_sym_CARET] = ACTIONS(1255), + [anon_sym_AMP] = ACTIONS(1255), + [anon_sym_this] = ACTIONS(1261), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1651), + [anon_sym_base] = ACTIONS(1263), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1653), - [anon_sym_unchecked] = ACTIONS(1639), + [sym_predefined_type] = ACTIONS(1265), + [anon_sym_unchecked] = ACTIONS(1251), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1655), - [anon_sym_throw] = ACTIONS(1739), + [anon_sym_default] = ACTIONS(1267), + [anon_sym_throw] = ACTIONS(1269), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1741), - [anon_sym_DOT_DOT] = ACTIONS(1743), + [anon_sym_await] = ACTIONS(1271), + [anon_sym_DOT_DOT] = ACTIONS(1273), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -315354,19 +312874,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1663), - [anon_sym_sizeof] = ACTIONS(1665), - [anon_sym_typeof] = ACTIONS(1667), - [anon_sym___makeref] = ACTIONS(1669), - [anon_sym___reftype] = ACTIONS(1671), - [anon_sym___refvalue] = ACTIONS(1673), - [sym_null_literal] = ACTIONS(1675), - [anon_sym_SQUOTE] = ACTIONS(1677), - [sym_integer_literal] = ACTIONS(1675), - [sym_real_literal] = ACTIONS(1679), - [anon_sym_DQUOTE] = ACTIONS(1681), - [sym_verbatim_string_literal] = ACTIONS(1679), - [aux_sym_preproc_if_token1] = ACTIONS(1683), + [anon_sym_stackalloc] = ACTIONS(1275), + [anon_sym_sizeof] = ACTIONS(1277), + [anon_sym_typeof] = ACTIONS(1279), + [anon_sym___makeref] = ACTIONS(1281), + [anon_sym___reftype] = ACTIONS(1283), + [anon_sym___refvalue] = ACTIONS(1285), + [sym_null_literal] = ACTIONS(1287), + [anon_sym_SQUOTE] = ACTIONS(1289), + [sym_integer_literal] = ACTIONS(1287), + [sym_real_literal] = ACTIONS(1291), + [anon_sym_DQUOTE] = ACTIONS(1293), + [sym_verbatim_string_literal] = ACTIONS(1291), + [aux_sym_preproc_if_token1] = ACTIONS(1295), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -315377,140 +312897,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(1685), - [sym_interpolation_verbatim_start] = ACTIONS(1687), - [sym_interpolation_raw_start] = ACTIONS(1689), - [sym_raw_string_start] = ACTIONS(1691), + [sym_interpolation_regular_start] = ACTIONS(1297), + [sym_interpolation_verbatim_start] = ACTIONS(1299), + [sym_interpolation_raw_start] = ACTIONS(1301), + [sym_raw_string_start] = ACTIONS(1303), }, - [1619] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2610), - [sym__name] = STATE(5898), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2197), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(3840), - [sym_non_lvalue_expression] = STATE(3277), - [sym_lvalue_expression] = STATE(3023), - [sym__expression_statement_expression] = STATE(3228), - [sym_assignment_expression] = STATE(3289), - [sym_binary_expression] = STATE(3228), - [sym_postfix_unary_expression] = STATE(3289), - [sym_prefix_unary_expression] = STATE(3289), - [sym__pointer_indirection_expression] = STATE(2609), - [sym_query_expression] = STATE(3228), - [sym_from_clause] = STATE(6172), - [sym_conditional_expression] = STATE(3228), - [sym_conditional_access_expression] = STATE(3228), - [sym_as_expression] = STATE(3228), - [sym_is_expression] = STATE(3228), - [sym_is_pattern_expression] = STATE(3228), - [sym_cast_expression] = STATE(3228), - [sym_checked_expression] = STATE(3228), - [sym_invocation_expression] = STATE(3289), - [sym_switch_expression] = STATE(3228), - [sym_await_expression] = STATE(3289), - [sym_throw_expression] = STATE(3228), - [sym_element_access_expression] = STATE(2609), - [sym_interpolated_string_expression] = STATE(3228), - [sym_member_access_expression] = STATE(2609), - [sym_object_creation_expression] = STATE(3289), - [sym_parenthesized_expression] = STATE(3289), - [sym__parenthesized_lvalue_expression] = STATE(2609), - [sym_lambda_expression] = STATE(3228), - [sym__lambda_expression_init] = STATE(7653), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3228), - [sym_anonymous_method_expression] = STATE(3228), - [sym_anonymous_object_creation_expression] = STATE(3228), - [sym_implicit_array_creation_expression] = STATE(3228), - [sym_implicit_object_creation_expression] = STATE(3228), - [sym_implicit_stackalloc_expression] = STATE(3228), - [sym_initializer_expression] = STATE(3228), - [sym_default_expression] = STATE(3228), - [sym_with_expression] = STATE(3228), - [sym_sizeof_expression] = STATE(3228), - [sym_typeof_expression] = STATE(3228), - [sym_makeref_expression] = STATE(3228), - [sym_ref_expression] = STATE(3228), - [sym_reftype_expression] = STATE(3228), - [sym_refvalue_expression] = STATE(3228), - [sym_stackalloc_expression] = STATE(3228), - [sym_range_expression] = STATE(3228), - [sym_tuple_expression] = STATE(2609), - [sym_literal] = STATE(3228), - [sym_character_literal] = STATE(3278), - [sym_string_literal] = STATE(3278), - [sym_raw_string_literal] = STATE(3278), - [sym_boolean_literal] = STATE(3278), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3228), - [sym_preproc_if_in_attribute_list] = STATE(5576), - [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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3396), + [1605] = { + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(5152), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2196), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(5660), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(2471), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3102), + [sym_postfix_unary_expression] = STATE(3079), + [sym_prefix_unary_expression] = STATE(3079), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6134), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3102), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3079), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3102), + [sym_member_access_expression] = STATE(2472), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3079), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7425), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(3102), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3102), + [sym_typeof_expression] = STATE(3102), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2472), + [sym_literal] = STATE(3102), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), + [sym_preproc_region] = STATE(1605), + [sym_preproc_endregion] = STATE(1605), + [sym_preproc_line] = STATE(1605), + [sym_preproc_pragma] = STATE(1605), + [sym_preproc_nullable] = STATE(1605), + [sym_preproc_error] = STATE(1605), + [sym_preproc_warning] = STATE(1605), + [sym_preproc_define] = STATE(1605), + [sym_preproc_undef] = STATE(1605), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1153), - [anon_sym_LPAREN] = ACTIONS(1155), - [anon_sym_ref] = ACTIONS(1157), - [anon_sym_LBRACE] = ACTIONS(1159), - [anon_sym_delegate] = ACTIONS(1161), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1479), + [anon_sym_LPAREN] = ACTIONS(43), + [anon_sym_ref] = ACTIONS(715), + [anon_sym_LBRACE] = ACTIONS(1481), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1163), + [anon_sym_new] = ACTIONS(1059), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1167), - [anon_sym_BANG] = ACTIONS(1171), - [anon_sym_TILDE] = ACTIONS(1171), - [anon_sym_PLUS_PLUS] = ACTIONS(1171), - [anon_sym_DASH_DASH] = ACTIONS(1171), - [anon_sym_true] = ACTIONS(1173), - [anon_sym_false] = ACTIONS(1173), - [anon_sym_PLUS] = ACTIONS(1169), - [anon_sym_DASH] = ACTIONS(1169), - [anon_sym_STAR] = ACTIONS(1175), - [anon_sym_CARET] = ACTIONS(1171), - [anon_sym_AMP] = ACTIONS(1171), - [anon_sym_this] = ACTIONS(1177), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(1525), + [anon_sym_TILDE] = ACTIONS(1525), + [anon_sym_PLUS_PLUS] = ACTIONS(1525), + [anon_sym_DASH_DASH] = ACTIONS(1525), + [anon_sym_true] = ACTIONS(77), + [anon_sym_false] = ACTIONS(77), + [anon_sym_PLUS] = ACTIONS(1523), + [anon_sym_DASH] = ACTIONS(1523), + [anon_sym_STAR] = ACTIONS(81), + [anon_sym_CARET] = ACTIONS(1525), + [anon_sym_AMP] = ACTIONS(1525), + [anon_sym_this] = ACTIONS(83), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1179), + [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1181), - [anon_sym_unchecked] = ACTIONS(1167), + [sym_predefined_type] = ACTIONS(91), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1183), - [anon_sym_throw] = ACTIONS(1185), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(1527), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1187), - [anon_sym_DOT_DOT] = ACTIONS(1189), + [anon_sym_await] = ACTIONS(1529), + [anon_sym_DOT_DOT] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -315523,19 +313043,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1191), - [anon_sym_sizeof] = ACTIONS(1193), - [anon_sym_typeof] = ACTIONS(1195), - [anon_sym___makeref] = ACTIONS(1197), - [anon_sym___reftype] = ACTIONS(1199), - [anon_sym___refvalue] = ACTIONS(1201), - [sym_null_literal] = ACTIONS(1203), - [anon_sym_SQUOTE] = ACTIONS(1205), - [sym_integer_literal] = ACTIONS(1203), - [sym_real_literal] = ACTIONS(1207), - [anon_sym_DQUOTE] = ACTIONS(1209), - [sym_verbatim_string_literal] = ACTIONS(1207), - [aux_sym_preproc_if_token1] = ACTIONS(1211), + [anon_sym_stackalloc] = ACTIONS(127), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_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), @@ -315546,140 +313066,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(1213), - [sym_interpolation_verbatim_start] = ACTIONS(1215), - [sym_interpolation_raw_start] = ACTIONS(1217), - [sym_raw_string_start] = ACTIONS(1219), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [sym_interpolation_raw_start] = ACTIONS(155), + [sym_raw_string_start] = ACTIONS(157), }, - [1620] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2610), - [sym__name] = STATE(5898), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2197), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(3841), - [sym_non_lvalue_expression] = STATE(3277), - [sym_lvalue_expression] = STATE(3023), - [sym__expression_statement_expression] = STATE(3228), - [sym_assignment_expression] = STATE(3289), - [sym_binary_expression] = STATE(3228), - [sym_postfix_unary_expression] = STATE(3289), - [sym_prefix_unary_expression] = STATE(3289), - [sym__pointer_indirection_expression] = STATE(2609), - [sym_query_expression] = STATE(3228), - [sym_from_clause] = STATE(6172), - [sym_conditional_expression] = STATE(3228), - [sym_conditional_access_expression] = STATE(3228), - [sym_as_expression] = STATE(3228), - [sym_is_expression] = STATE(3228), - [sym_is_pattern_expression] = STATE(3228), - [sym_cast_expression] = STATE(3228), - [sym_checked_expression] = STATE(3228), - [sym_invocation_expression] = STATE(3289), - [sym_switch_expression] = STATE(3228), - [sym_await_expression] = STATE(3289), - [sym_throw_expression] = STATE(3228), - [sym_element_access_expression] = STATE(2609), - [sym_interpolated_string_expression] = STATE(3228), - [sym_member_access_expression] = STATE(2609), - [sym_object_creation_expression] = STATE(3289), - [sym_parenthesized_expression] = STATE(3289), - [sym__parenthesized_lvalue_expression] = STATE(2609), - [sym_lambda_expression] = STATE(3228), - [sym__lambda_expression_init] = STATE(7653), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3228), - [sym_anonymous_method_expression] = STATE(3228), - [sym_anonymous_object_creation_expression] = STATE(3228), - [sym_implicit_array_creation_expression] = STATE(3228), - [sym_implicit_object_creation_expression] = STATE(3228), - [sym_implicit_stackalloc_expression] = STATE(3228), - [sym_initializer_expression] = STATE(3228), - [sym_default_expression] = STATE(3228), - [sym_with_expression] = STATE(3228), - [sym_sizeof_expression] = STATE(3228), - [sym_typeof_expression] = STATE(3228), - [sym_makeref_expression] = STATE(3228), - [sym_ref_expression] = STATE(3228), - [sym_reftype_expression] = STATE(3228), - [sym_refvalue_expression] = STATE(3228), - [sym_stackalloc_expression] = STATE(3228), - [sym_range_expression] = STATE(3228), - [sym_tuple_expression] = STATE(2609), - [sym_literal] = STATE(3228), - [sym_character_literal] = STATE(3278), - [sym_string_literal] = STATE(3278), - [sym_raw_string_literal] = STATE(3278), - [sym_boolean_literal] = STATE(3278), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3228), - [sym_preproc_if_in_attribute_list] = STATE(5576), - [sym_preproc_region] = STATE(1620), - [sym_preproc_endregion] = STATE(1620), - [sym_preproc_line] = STATE(1620), - [sym_preproc_pragma] = STATE(1620), - [sym_preproc_nullable] = STATE(1620), - [sym_preproc_error] = STATE(1620), - [sym_preproc_warning] = STATE(1620), - [sym_preproc_define] = STATE(1620), - [sym_preproc_undef] = STATE(1620), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3396), + [1606] = { + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(5873), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2238), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(5336), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3468), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3102), + [sym_postfix_unary_expression] = STATE(3079), + [sym_prefix_unary_expression] = STATE(3079), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6134), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3102), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3079), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3102), + [sym_member_access_expression] = STATE(2472), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3079), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7309), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(3102), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3102), + [sym_typeof_expression] = STATE(3102), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2472), + [sym_literal] = STATE(3102), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), + [sym_preproc_region] = STATE(1606), + [sym_preproc_endregion] = STATE(1606), + [sym_preproc_line] = STATE(1606), + [sym_preproc_pragma] = STATE(1606), + [sym_preproc_nullable] = STATE(1606), + [sym_preproc_error] = STATE(1606), + [sym_preproc_warning] = STATE(1606), + [sym_preproc_define] = STATE(1606), + [sym_preproc_undef] = STATE(1606), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1153), - [anon_sym_LPAREN] = ACTIONS(1155), - [anon_sym_ref] = ACTIONS(1157), - [anon_sym_LBRACE] = ACTIONS(1159), - [anon_sym_delegate] = ACTIONS(1161), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1479), + [anon_sym_LPAREN] = ACTIONS(659), + [anon_sym_ref] = ACTIONS(663), + [anon_sym_LBRACE] = ACTIONS(1481), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1163), + [anon_sym_new] = ACTIONS(1059), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1167), - [anon_sym_BANG] = ACTIONS(1171), - [anon_sym_TILDE] = ACTIONS(1171), - [anon_sym_PLUS_PLUS] = ACTIONS(1171), - [anon_sym_DASH_DASH] = ACTIONS(1171), - [anon_sym_true] = ACTIONS(1173), - [anon_sym_false] = ACTIONS(1173), - [anon_sym_PLUS] = ACTIONS(1169), - [anon_sym_DASH] = ACTIONS(1169), - [anon_sym_STAR] = ACTIONS(1175), - [anon_sym_CARET] = ACTIONS(1171), - [anon_sym_AMP] = ACTIONS(1171), - [anon_sym_this] = ACTIONS(1177), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(1485), + [anon_sym_TILDE] = ACTIONS(1485), + [anon_sym_PLUS_PLUS] = ACTIONS(1485), + [anon_sym_DASH_DASH] = ACTIONS(1485), + [anon_sym_true] = ACTIONS(77), + [anon_sym_false] = ACTIONS(77), + [anon_sym_PLUS] = ACTIONS(1483), + [anon_sym_DASH] = ACTIONS(1483), + [anon_sym_STAR] = ACTIONS(683), + [anon_sym_CARET] = ACTIONS(1485), + [anon_sym_AMP] = ACTIONS(1485), + [anon_sym_this] = ACTIONS(83), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1179), + [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1181), - [anon_sym_unchecked] = ACTIONS(1167), + [sym_predefined_type] = ACTIONS(91), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1183), - [anon_sym_throw] = ACTIONS(1185), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(1077), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1187), - [anon_sym_DOT_DOT] = ACTIONS(1189), + [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), @@ -315692,19 +313212,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1191), - [anon_sym_sizeof] = ACTIONS(1193), - [anon_sym_typeof] = ACTIONS(1195), - [anon_sym___makeref] = ACTIONS(1197), - [anon_sym___reftype] = ACTIONS(1199), - [anon_sym___refvalue] = ACTIONS(1201), - [sym_null_literal] = ACTIONS(1203), - [anon_sym_SQUOTE] = ACTIONS(1205), - [sym_integer_literal] = ACTIONS(1203), - [sym_real_literal] = ACTIONS(1207), - [anon_sym_DQUOTE] = ACTIONS(1209), - [sym_verbatim_string_literal] = ACTIONS(1207), - [aux_sym_preproc_if_token1] = ACTIONS(1211), + [anon_sym_stackalloc] = ACTIONS(127), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_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), @@ -315715,140 +313235,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(1213), - [sym_interpolation_verbatim_start] = ACTIONS(1215), - [sym_interpolation_raw_start] = ACTIONS(1217), - [sym_raw_string_start] = ACTIONS(1219), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [sym_interpolation_raw_start] = ACTIONS(155), + [sym_raw_string_start] = ACTIONS(157), }, - [1621] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2610), - [sym__name] = STATE(5898), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2197), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(3842), - [sym_non_lvalue_expression] = STATE(3277), - [sym_lvalue_expression] = STATE(3023), - [sym__expression_statement_expression] = STATE(3228), - [sym_assignment_expression] = STATE(3289), - [sym_binary_expression] = STATE(3228), - [sym_postfix_unary_expression] = STATE(3289), - [sym_prefix_unary_expression] = STATE(3289), - [sym__pointer_indirection_expression] = STATE(2609), - [sym_query_expression] = STATE(3228), - [sym_from_clause] = STATE(6172), - [sym_conditional_expression] = STATE(3228), - [sym_conditional_access_expression] = STATE(3228), - [sym_as_expression] = STATE(3228), - [sym_is_expression] = STATE(3228), - [sym_is_pattern_expression] = STATE(3228), - [sym_cast_expression] = STATE(3228), - [sym_checked_expression] = STATE(3228), - [sym_invocation_expression] = STATE(3289), - [sym_switch_expression] = STATE(3228), - [sym_await_expression] = STATE(3289), - [sym_throw_expression] = STATE(3228), - [sym_element_access_expression] = STATE(2609), - [sym_interpolated_string_expression] = STATE(3228), - [sym_member_access_expression] = STATE(2609), - [sym_object_creation_expression] = STATE(3289), - [sym_parenthesized_expression] = STATE(3289), - [sym__parenthesized_lvalue_expression] = STATE(2609), - [sym_lambda_expression] = STATE(3228), - [sym__lambda_expression_init] = STATE(7653), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3228), - [sym_anonymous_method_expression] = STATE(3228), - [sym_anonymous_object_creation_expression] = STATE(3228), - [sym_implicit_array_creation_expression] = STATE(3228), - [sym_implicit_object_creation_expression] = STATE(3228), - [sym_implicit_stackalloc_expression] = STATE(3228), - [sym_initializer_expression] = STATE(3228), - [sym_default_expression] = STATE(3228), - [sym_with_expression] = STATE(3228), - [sym_sizeof_expression] = STATE(3228), - [sym_typeof_expression] = STATE(3228), - [sym_makeref_expression] = STATE(3228), - [sym_ref_expression] = STATE(3228), - [sym_reftype_expression] = STATE(3228), - [sym_refvalue_expression] = STATE(3228), - [sym_stackalloc_expression] = STATE(3228), - [sym_range_expression] = STATE(3228), - [sym_tuple_expression] = STATE(2609), - [sym_literal] = STATE(3228), - [sym_character_literal] = STATE(3278), - [sym_string_literal] = STATE(3278), - [sym_raw_string_literal] = STATE(3278), - [sym_boolean_literal] = STATE(3278), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3228), - [sym_preproc_if_in_attribute_list] = STATE(5576), - [sym_preproc_region] = STATE(1621), - [sym_preproc_endregion] = STATE(1621), - [sym_preproc_line] = STATE(1621), - [sym_preproc_pragma] = STATE(1621), - [sym_preproc_nullable] = STATE(1621), - [sym_preproc_error] = STATE(1621), - [sym_preproc_warning] = STATE(1621), - [sym_preproc_define] = STATE(1621), - [sym_preproc_undef] = STATE(1621), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3396), + [1607] = { + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(5873), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2238), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(5338), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3468), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3102), + [sym_postfix_unary_expression] = STATE(3079), + [sym_prefix_unary_expression] = STATE(3079), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6134), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3102), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3079), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3102), + [sym_member_access_expression] = STATE(2472), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3079), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7309), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(3102), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3102), + [sym_typeof_expression] = STATE(3102), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2472), + [sym_literal] = STATE(3102), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), + [sym_preproc_region] = STATE(1607), + [sym_preproc_endregion] = STATE(1607), + [sym_preproc_line] = STATE(1607), + [sym_preproc_pragma] = STATE(1607), + [sym_preproc_nullable] = STATE(1607), + [sym_preproc_error] = STATE(1607), + [sym_preproc_warning] = STATE(1607), + [sym_preproc_define] = STATE(1607), + [sym_preproc_undef] = STATE(1607), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1153), - [anon_sym_LPAREN] = ACTIONS(1155), - [anon_sym_ref] = ACTIONS(1157), - [anon_sym_LBRACE] = ACTIONS(1159), - [anon_sym_delegate] = ACTIONS(1161), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1479), + [anon_sym_LPAREN] = ACTIONS(659), + [anon_sym_ref] = ACTIONS(663), + [anon_sym_LBRACE] = ACTIONS(1481), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1163), + [anon_sym_new] = ACTIONS(1059), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1167), - [anon_sym_BANG] = ACTIONS(1171), - [anon_sym_TILDE] = ACTIONS(1171), - [anon_sym_PLUS_PLUS] = ACTIONS(1171), - [anon_sym_DASH_DASH] = ACTIONS(1171), - [anon_sym_true] = ACTIONS(1173), - [anon_sym_false] = ACTIONS(1173), - [anon_sym_PLUS] = ACTIONS(1169), - [anon_sym_DASH] = ACTIONS(1169), - [anon_sym_STAR] = ACTIONS(1175), - [anon_sym_CARET] = ACTIONS(1171), - [anon_sym_AMP] = ACTIONS(1171), - [anon_sym_this] = ACTIONS(1177), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(1485), + [anon_sym_TILDE] = ACTIONS(1485), + [anon_sym_PLUS_PLUS] = ACTIONS(1485), + [anon_sym_DASH_DASH] = ACTIONS(1485), + [anon_sym_true] = ACTIONS(77), + [anon_sym_false] = ACTIONS(77), + [anon_sym_PLUS] = ACTIONS(1483), + [anon_sym_DASH] = ACTIONS(1483), + [anon_sym_STAR] = ACTIONS(683), + [anon_sym_CARET] = ACTIONS(1485), + [anon_sym_AMP] = ACTIONS(1485), + [anon_sym_this] = ACTIONS(83), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1179), + [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1181), - [anon_sym_unchecked] = ACTIONS(1167), + [sym_predefined_type] = ACTIONS(91), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1183), - [anon_sym_throw] = ACTIONS(1185), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(1077), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1187), - [anon_sym_DOT_DOT] = ACTIONS(1189), + [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), @@ -315861,19 +313381,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1191), - [anon_sym_sizeof] = ACTIONS(1193), - [anon_sym_typeof] = ACTIONS(1195), - [anon_sym___makeref] = ACTIONS(1197), - [anon_sym___reftype] = ACTIONS(1199), - [anon_sym___refvalue] = ACTIONS(1201), - [sym_null_literal] = ACTIONS(1203), - [anon_sym_SQUOTE] = ACTIONS(1205), - [sym_integer_literal] = ACTIONS(1203), - [sym_real_literal] = ACTIONS(1207), - [anon_sym_DQUOTE] = ACTIONS(1209), - [sym_verbatim_string_literal] = ACTIONS(1207), - [aux_sym_preproc_if_token1] = ACTIONS(1211), + [anon_sym_stackalloc] = ACTIONS(127), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_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), @@ -315884,140 +313404,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(1213), - [sym_interpolation_verbatim_start] = ACTIONS(1215), - [sym_interpolation_raw_start] = ACTIONS(1217), - [sym_raw_string_start] = ACTIONS(1219), + [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(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2914), - [sym__name] = STATE(5885), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2357), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(3598), - [sym_non_lvalue_expression] = STATE(3880), - [sym_lvalue_expression] = STATE(2911), - [sym__expression_statement_expression] = STATE(3873), - [sym_assignment_expression] = STATE(3881), - [sym_binary_expression] = STATE(3873), - [sym_postfix_unary_expression] = STATE(3881), - [sym_prefix_unary_expression] = STATE(3881), - [sym__pointer_indirection_expression] = STATE(2913), - [sym_query_expression] = STATE(3873), - [sym_from_clause] = STATE(6182), - [sym_conditional_expression] = STATE(3873), - [sym_conditional_access_expression] = STATE(3873), - [sym_as_expression] = STATE(3873), - [sym_is_expression] = STATE(3873), - [sym_is_pattern_expression] = STATE(3873), - [sym_cast_expression] = STATE(3873), - [sym_checked_expression] = STATE(3873), - [sym_invocation_expression] = STATE(3881), - [sym_switch_expression] = STATE(3873), - [sym_await_expression] = STATE(3881), - [sym_throw_expression] = STATE(3873), - [sym_element_access_expression] = STATE(2913), - [sym_interpolated_string_expression] = STATE(3873), - [sym_member_access_expression] = STATE(2913), - [sym_object_creation_expression] = STATE(3881), - [sym_parenthesized_expression] = STATE(3881), - [sym__parenthesized_lvalue_expression] = STATE(2913), - [sym_lambda_expression] = STATE(3873), - [sym__lambda_expression_init] = STATE(7316), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3873), - [sym_anonymous_method_expression] = STATE(3873), - [sym_anonymous_object_creation_expression] = STATE(3873), - [sym_implicit_array_creation_expression] = STATE(3873), - [sym_implicit_object_creation_expression] = STATE(3873), - [sym_implicit_stackalloc_expression] = STATE(3873), - [sym_initializer_expression] = STATE(3873), - [sym_default_expression] = STATE(3873), - [sym_with_expression] = STATE(3873), - [sym_sizeof_expression] = STATE(3873), - [sym_typeof_expression] = STATE(3873), - [sym_makeref_expression] = STATE(3873), - [sym_ref_expression] = STATE(3873), - [sym_reftype_expression] = STATE(3873), - [sym_refvalue_expression] = STATE(3873), - [sym_stackalloc_expression] = STATE(3873), - [sym_range_expression] = STATE(3873), - [sym_tuple_expression] = STATE(2913), - [sym_literal] = STATE(3873), - [sym_character_literal] = STATE(3877), - [sym_string_literal] = STATE(3877), - [sym_raw_string_literal] = STATE(3877), - [sym_boolean_literal] = STATE(3877), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3873), - [sym_preproc_if_in_attribute_list] = STATE(5576), - [sym_preproc_region] = STATE(1622), - [sym_preproc_endregion] = STATE(1622), - [sym_preproc_line] = STATE(1622), - [sym_preproc_pragma] = STATE(1622), - [sym_preproc_nullable] = STATE(1622), - [sym_preproc_error] = STATE(1622), - [sym_preproc_warning] = STATE(1622), - [sym_preproc_define] = STATE(1622), - [sym_preproc_undef] = STATE(1622), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3382), + [1608] = { + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(5873), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2238), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(5339), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3468), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3102), + [sym_postfix_unary_expression] = STATE(3079), + [sym_prefix_unary_expression] = STATE(3079), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6134), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3102), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3079), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3102), + [sym_member_access_expression] = STATE(2472), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3079), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7309), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(3102), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3102), + [sym_typeof_expression] = STATE(3102), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2472), + [sym_literal] = STATE(3102), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), + [sym_preproc_region] = STATE(1608), + [sym_preproc_endregion] = STATE(1608), + [sym_preproc_line] = STATE(1608), + [sym_preproc_pragma] = STATE(1608), + [sym_preproc_nullable] = STATE(1608), + [sym_preproc_error] = STATE(1608), + [sym_preproc_warning] = STATE(1608), + [sym_preproc_define] = STATE(1608), + [sym_preproc_undef] = STATE(1608), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1627), - [anon_sym_LPAREN] = ACTIONS(1727), - [anon_sym_ref] = ACTIONS(1729), - [anon_sym_LBRACE] = ACTIONS(1633), - [anon_sym_delegate] = ACTIONS(1635), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1479), + [anon_sym_LPAREN] = ACTIONS(659), + [anon_sym_ref] = ACTIONS(663), + [anon_sym_LBRACE] = ACTIONS(1481), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1731), + [anon_sym_new] = ACTIONS(1059), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1639), - [anon_sym_BANG] = ACTIONS(1735), - [anon_sym_TILDE] = ACTIONS(1735), - [anon_sym_PLUS_PLUS] = ACTIONS(1735), - [anon_sym_DASH_DASH] = ACTIONS(1735), - [anon_sym_true] = ACTIONS(1645), - [anon_sym_false] = ACTIONS(1645), - [anon_sym_PLUS] = ACTIONS(1733), - [anon_sym_DASH] = ACTIONS(1733), - [anon_sym_STAR] = ACTIONS(1737), - [anon_sym_CARET] = ACTIONS(1735), - [anon_sym_AMP] = ACTIONS(1735), - [anon_sym_this] = ACTIONS(1649), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(1485), + [anon_sym_TILDE] = ACTIONS(1485), + [anon_sym_PLUS_PLUS] = ACTIONS(1485), + [anon_sym_DASH_DASH] = ACTIONS(1485), + [anon_sym_true] = ACTIONS(77), + [anon_sym_false] = ACTIONS(77), + [anon_sym_PLUS] = ACTIONS(1483), + [anon_sym_DASH] = ACTIONS(1483), + [anon_sym_STAR] = ACTIONS(683), + [anon_sym_CARET] = ACTIONS(1485), + [anon_sym_AMP] = ACTIONS(1485), + [anon_sym_this] = ACTIONS(83), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1651), + [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1653), - [anon_sym_unchecked] = ACTIONS(1639), + [sym_predefined_type] = ACTIONS(91), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1655), - [anon_sym_throw] = ACTIONS(1739), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(1077), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1741), - [anon_sym_DOT_DOT] = ACTIONS(1743), + [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), @@ -316030,19 +313550,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1663), - [anon_sym_sizeof] = ACTIONS(1665), - [anon_sym_typeof] = ACTIONS(1667), - [anon_sym___makeref] = ACTIONS(1669), - [anon_sym___reftype] = ACTIONS(1671), - [anon_sym___refvalue] = ACTIONS(1673), - [sym_null_literal] = ACTIONS(1675), - [anon_sym_SQUOTE] = ACTIONS(1677), - [sym_integer_literal] = ACTIONS(1675), - [sym_real_literal] = ACTIONS(1679), - [anon_sym_DQUOTE] = ACTIONS(1681), - [sym_verbatim_string_literal] = ACTIONS(1679), - [aux_sym_preproc_if_token1] = ACTIONS(1683), + [anon_sym_stackalloc] = ACTIONS(127), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_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), @@ -316053,140 +313573,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(1685), - [sym_interpolation_verbatim_start] = ACTIONS(1687), - [sym_interpolation_raw_start] = ACTIONS(1689), - [sym_raw_string_start] = ACTIONS(1691), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [sym_interpolation_raw_start] = ACTIONS(155), + [sym_raw_string_start] = ACTIONS(157), }, - [1623] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(5907), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2404), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(4065), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3122), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3080), - [sym_postfix_unary_expression] = STATE(3111), - [sym_prefix_unary_expression] = STATE(3111), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6149), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3080), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3111), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3080), - [sym_member_access_expression] = STATE(2484), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3111), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7563), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(3080), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3080), - [sym_typeof_expression] = STATE(3080), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2484), - [sym_literal] = STATE(3080), - [sym_character_literal] = STATE(3011), - [sym_string_literal] = STATE(3011), - [sym_raw_string_literal] = STATE(3011), - [sym_boolean_literal] = STATE(3011), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), - [sym_preproc_region] = STATE(1623), - [sym_preproc_endregion] = STATE(1623), - [sym_preproc_line] = STATE(1623), - [sym_preproc_pragma] = STATE(1623), - [sym_preproc_nullable] = STATE(1623), - [sym_preproc_error] = STATE(1623), - [sym_preproc_warning] = STATE(1623), - [sym_preproc_define] = STATE(1623), - [sym_preproc_undef] = STATE(1623), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [1609] = { + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(5152), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2196), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(5340), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3356), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3102), + [sym_postfix_unary_expression] = STATE(3079), + [sym_prefix_unary_expression] = STATE(3079), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6134), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3102), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3079), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3102), + [sym_member_access_expression] = STATE(2472), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3079), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7627), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(3102), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3102), + [sym_typeof_expression] = STATE(3102), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2472), + [sym_literal] = STATE(3102), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), + [sym_preproc_region] = STATE(1609), + [sym_preproc_endregion] = STATE(1609), + [sym_preproc_line] = STATE(1609), + [sym_preproc_pragma] = STATE(1609), + [sym_preproc_nullable] = STATE(1609), + [sym_preproc_error] = STATE(1609), + [sym_preproc_warning] = STATE(1609), + [sym_preproc_define] = STATE(1609), + [sym_preproc_undef] = STATE(1609), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1481), - [anon_sym_LPAREN] = ACTIONS(1933), - [anon_sym_ref] = ACTIONS(1935), - [anon_sym_LBRACE] = ACTIONS(1487), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1479), + [anon_sym_LPAREN] = ACTIONS(1511), + [anon_sym_ref] = ACTIONS(1513), + [anon_sym_LBRACE] = ACTIONS(1481), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1937), + [anon_sym_new] = ACTIONS(1515), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1067), - [anon_sym_BANG] = ACTIONS(1941), - [anon_sym_TILDE] = ACTIONS(1941), - [anon_sym_PLUS_PLUS] = ACTIONS(1941), - [anon_sym_DASH_DASH] = ACTIONS(1941), - [anon_sym_true] = ACTIONS(1259), - [anon_sym_false] = ACTIONS(1259), - [anon_sym_PLUS] = ACTIONS(1939), - [anon_sym_DASH] = ACTIONS(1939), - [anon_sym_STAR] = ACTIONS(1943), - [anon_sym_CARET] = ACTIONS(1941), - [anon_sym_AMP] = ACTIONS(1941), + [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(1267), - [anon_sym_unchecked] = ACTIONS(1067), + [sym_predefined_type] = ACTIONS(91), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1269), - [anon_sym_throw] = ACTIONS(1945), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(1517), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1947), - [anon_sym_DOT_DOT] = ACTIONS(1949), + [anon_sym_await] = ACTIONS(1519), + [anon_sym_DOT_DOT] = ACTIONS(1521), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -316200,18 +313720,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(1279), - [anon_sym_typeof] = ACTIONS(1281), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), [anon_sym___makeref] = ACTIONS(133), [anon_sym___reftype] = ACTIONS(135), [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(1289), - [anon_sym_SQUOTE] = ACTIONS(1291), - [sym_integer_literal] = ACTIONS(1289), - [sym_real_literal] = ACTIONS(1293), - [anon_sym_DQUOTE] = ACTIONS(1295), - [sym_verbatim_string_literal] = ACTIONS(1293), - [aux_sym_preproc_if_token1] = ACTIONS(1089), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_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), @@ -316222,140 +313742,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(1299), - [sym_interpolation_verbatim_start] = ACTIONS(1301), - [sym_interpolation_raw_start] = ACTIONS(1303), - [sym_raw_string_start] = ACTIONS(1305), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [sym_interpolation_raw_start] = ACTIONS(155), + [sym_raw_string_start] = ACTIONS(157), }, - [1624] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(5907), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2404), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(4256), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3140), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3080), - [sym_postfix_unary_expression] = STATE(3111), - [sym_prefix_unary_expression] = STATE(3111), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6183), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3080), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3111), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3080), - [sym_member_access_expression] = STATE(2484), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3111), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7703), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(3080), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3080), - [sym_typeof_expression] = STATE(3080), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2484), - [sym_literal] = STATE(3080), - [sym_character_literal] = STATE(3011), - [sym_string_literal] = STATE(3011), - [sym_raw_string_literal] = STATE(3011), - [sym_boolean_literal] = STATE(3011), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), - [sym_preproc_region] = STATE(1624), - [sym_preproc_endregion] = STATE(1624), - [sym_preproc_line] = STATE(1624), - [sym_preproc_pragma] = STATE(1624), - [sym_preproc_nullable] = STATE(1624), - [sym_preproc_error] = STATE(1624), - [sym_preproc_warning] = STATE(1624), - [sym_preproc_define] = STATE(1624), - [sym_preproc_undef] = STATE(1624), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [1610] = { + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(5873), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2238), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(5350), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3468), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3102), + [sym_postfix_unary_expression] = STATE(3079), + [sym_prefix_unary_expression] = STATE(3079), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6134), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3102), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3079), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3102), + [sym_member_access_expression] = STATE(2472), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3079), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7309), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(3102), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3102), + [sym_typeof_expression] = STATE(3102), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2472), + [sym_literal] = STATE(3102), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), + [sym_preproc_region] = STATE(1610), + [sym_preproc_endregion] = STATE(1610), + [sym_preproc_line] = STATE(1610), + [sym_preproc_pragma] = STATE(1610), + [sym_preproc_nullable] = STATE(1610), + [sym_preproc_error] = STATE(1610), + [sym_preproc_warning] = STATE(1610), + [sym_preproc_define] = STATE(1610), + [sym_preproc_undef] = STATE(1610), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1481), - [anon_sym_LPAREN] = ACTIONS(2251), - [anon_sym_ref] = ACTIONS(2253), - [anon_sym_LBRACE] = ACTIONS(1487), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1479), + [anon_sym_LPAREN] = ACTIONS(659), + [anon_sym_ref] = ACTIONS(663), + [anon_sym_LBRACE] = ACTIONS(1481), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1937), + [anon_sym_new] = ACTIONS(1059), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1067), - [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(1259), - [anon_sym_false] = ACTIONS(1259), - [anon_sym_PLUS] = ACTIONS(2255), - [anon_sym_DASH] = ACTIONS(2255), - [anon_sym_STAR] = ACTIONS(1943), - [anon_sym_CARET] = ACTIONS(2257), - [anon_sym_AMP] = ACTIONS(2257), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(1485), + [anon_sym_TILDE] = ACTIONS(1485), + [anon_sym_PLUS_PLUS] = ACTIONS(1485), + [anon_sym_DASH_DASH] = ACTIONS(1485), + [anon_sym_true] = ACTIONS(77), + [anon_sym_false] = ACTIONS(77), + [anon_sym_PLUS] = ACTIONS(1483), + [anon_sym_DASH] = ACTIONS(1483), + [anon_sym_STAR] = ACTIONS(683), + [anon_sym_CARET] = ACTIONS(1485), + [anon_sym_AMP] = ACTIONS(1485), [anon_sym_this] = ACTIONS(83), [anon_sym_scoped] = ACTIONS(85), [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1267), - [anon_sym_unchecked] = ACTIONS(1067), + [sym_predefined_type] = ACTIONS(91), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1269), - [anon_sym_throw] = ACTIONS(2259), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(1077), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2261), - [anon_sym_DOT_DOT] = ACTIONS(2263), + [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), @@ -316369,18 +313889,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(1279), - [anon_sym_typeof] = ACTIONS(1281), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), [anon_sym___makeref] = ACTIONS(133), [anon_sym___reftype] = ACTIONS(135), [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(1289), - [anon_sym_SQUOTE] = ACTIONS(1291), - [sym_integer_literal] = ACTIONS(1289), - [sym_real_literal] = ACTIONS(1293), - [anon_sym_DQUOTE] = ACTIONS(1295), - [sym_verbatim_string_literal] = ACTIONS(1293), - [aux_sym_preproc_if_token1] = ACTIONS(1089), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_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), @@ -316391,140 +313911,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(1299), - [sym_interpolation_verbatim_start] = ACTIONS(1301), - [sym_interpolation_raw_start] = ACTIONS(1303), - [sym_raw_string_start] = ACTIONS(1305), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [sym_interpolation_raw_start] = ACTIONS(155), + [sym_raw_string_start] = ACTIONS(157), }, - [1625] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2610), - [sym__name] = STATE(5898), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2197), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(3843), - [sym_non_lvalue_expression] = STATE(3277), - [sym_lvalue_expression] = STATE(3023), - [sym__expression_statement_expression] = STATE(3228), - [sym_assignment_expression] = STATE(3289), - [sym_binary_expression] = STATE(3228), - [sym_postfix_unary_expression] = STATE(3289), - [sym_prefix_unary_expression] = STATE(3289), - [sym__pointer_indirection_expression] = STATE(2609), - [sym_query_expression] = STATE(3228), - [sym_from_clause] = STATE(6172), - [sym_conditional_expression] = STATE(3228), - [sym_conditional_access_expression] = STATE(3228), - [sym_as_expression] = STATE(3228), - [sym_is_expression] = STATE(3228), - [sym_is_pattern_expression] = STATE(3228), - [sym_cast_expression] = STATE(3228), - [sym_checked_expression] = STATE(3228), - [sym_invocation_expression] = STATE(3289), - [sym_switch_expression] = STATE(3228), - [sym_await_expression] = STATE(3289), - [sym_throw_expression] = STATE(3228), - [sym_element_access_expression] = STATE(2609), - [sym_interpolated_string_expression] = STATE(3228), - [sym_member_access_expression] = STATE(2609), - [sym_object_creation_expression] = STATE(3289), - [sym_parenthesized_expression] = STATE(3289), - [sym__parenthesized_lvalue_expression] = STATE(2609), - [sym_lambda_expression] = STATE(3228), - [sym__lambda_expression_init] = STATE(7653), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3228), - [sym_anonymous_method_expression] = STATE(3228), - [sym_anonymous_object_creation_expression] = STATE(3228), - [sym_implicit_array_creation_expression] = STATE(3228), - [sym_implicit_object_creation_expression] = STATE(3228), - [sym_implicit_stackalloc_expression] = STATE(3228), - [sym_initializer_expression] = STATE(3228), - [sym_default_expression] = STATE(3228), - [sym_with_expression] = STATE(3228), - [sym_sizeof_expression] = STATE(3228), - [sym_typeof_expression] = STATE(3228), - [sym_makeref_expression] = STATE(3228), - [sym_ref_expression] = STATE(3228), - [sym_reftype_expression] = STATE(3228), - [sym_refvalue_expression] = STATE(3228), - [sym_stackalloc_expression] = STATE(3228), - [sym_range_expression] = STATE(3228), - [sym_tuple_expression] = STATE(2609), - [sym_literal] = STATE(3228), - [sym_character_literal] = STATE(3278), - [sym_string_literal] = STATE(3278), - [sym_raw_string_literal] = STATE(3278), - [sym_boolean_literal] = STATE(3278), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3228), - [sym_preproc_if_in_attribute_list] = STATE(5576), - [sym_preproc_region] = STATE(1625), - [sym_preproc_endregion] = STATE(1625), - [sym_preproc_line] = STATE(1625), - [sym_preproc_pragma] = STATE(1625), - [sym_preproc_nullable] = STATE(1625), - [sym_preproc_error] = STATE(1625), - [sym_preproc_warning] = STATE(1625), - [sym_preproc_define] = STATE(1625), - [sym_preproc_undef] = STATE(1625), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3396), + [1611] = { + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(5873), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2238), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(5353), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3468), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3102), + [sym_postfix_unary_expression] = STATE(3079), + [sym_prefix_unary_expression] = STATE(3079), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6134), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3102), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3079), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3102), + [sym_member_access_expression] = STATE(2472), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3079), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7309), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(3102), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3102), + [sym_typeof_expression] = STATE(3102), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2472), + [sym_literal] = STATE(3102), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), + [sym_preproc_region] = STATE(1611), + [sym_preproc_endregion] = STATE(1611), + [sym_preproc_line] = STATE(1611), + [sym_preproc_pragma] = STATE(1611), + [sym_preproc_nullable] = STATE(1611), + [sym_preproc_error] = STATE(1611), + [sym_preproc_warning] = STATE(1611), + [sym_preproc_define] = STATE(1611), + [sym_preproc_undef] = STATE(1611), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1153), - [anon_sym_LPAREN] = ACTIONS(1155), - [anon_sym_ref] = ACTIONS(1157), - [anon_sym_LBRACE] = ACTIONS(1159), - [anon_sym_delegate] = ACTIONS(1161), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1479), + [anon_sym_LPAREN] = ACTIONS(659), + [anon_sym_ref] = ACTIONS(663), + [anon_sym_LBRACE] = ACTIONS(1481), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1163), + [anon_sym_new] = ACTIONS(1059), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1167), - [anon_sym_BANG] = ACTIONS(1171), - [anon_sym_TILDE] = ACTIONS(1171), - [anon_sym_PLUS_PLUS] = ACTIONS(1171), - [anon_sym_DASH_DASH] = ACTIONS(1171), - [anon_sym_true] = ACTIONS(1173), - [anon_sym_false] = ACTIONS(1173), - [anon_sym_PLUS] = ACTIONS(1169), - [anon_sym_DASH] = ACTIONS(1169), - [anon_sym_STAR] = ACTIONS(1175), - [anon_sym_CARET] = ACTIONS(1171), - [anon_sym_AMP] = ACTIONS(1171), - [anon_sym_this] = ACTIONS(1177), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(1485), + [anon_sym_TILDE] = ACTIONS(1485), + [anon_sym_PLUS_PLUS] = ACTIONS(1485), + [anon_sym_DASH_DASH] = ACTIONS(1485), + [anon_sym_true] = ACTIONS(77), + [anon_sym_false] = ACTIONS(77), + [anon_sym_PLUS] = ACTIONS(1483), + [anon_sym_DASH] = ACTIONS(1483), + [anon_sym_STAR] = ACTIONS(683), + [anon_sym_CARET] = ACTIONS(1485), + [anon_sym_AMP] = ACTIONS(1485), + [anon_sym_this] = ACTIONS(83), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1179), + [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1181), - [anon_sym_unchecked] = ACTIONS(1167), + [sym_predefined_type] = ACTIONS(91), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1183), - [anon_sym_throw] = ACTIONS(1185), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(1077), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1187), - [anon_sym_DOT_DOT] = ACTIONS(1189), + [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), @@ -316537,19 +314057,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1191), - [anon_sym_sizeof] = ACTIONS(1193), - [anon_sym_typeof] = ACTIONS(1195), - [anon_sym___makeref] = ACTIONS(1197), - [anon_sym___reftype] = ACTIONS(1199), - [anon_sym___refvalue] = ACTIONS(1201), - [sym_null_literal] = ACTIONS(1203), - [anon_sym_SQUOTE] = ACTIONS(1205), - [sym_integer_literal] = ACTIONS(1203), - [sym_real_literal] = ACTIONS(1207), - [anon_sym_DQUOTE] = ACTIONS(1209), - [sym_verbatim_string_literal] = ACTIONS(1207), - [aux_sym_preproc_if_token1] = ACTIONS(1211), + [anon_sym_stackalloc] = ACTIONS(127), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_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), @@ -316560,309 +314080,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(1213), - [sym_interpolation_verbatim_start] = ACTIONS(1215), - [sym_interpolation_raw_start] = ACTIONS(1217), - [sym_raw_string_start] = ACTIONS(1219), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [sym_interpolation_raw_start] = ACTIONS(155), + [sym_raw_string_start] = ACTIONS(157), }, - [1626] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2914), + [1612] = { + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2459), [sym__name] = STATE(5873), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2362), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(3607), - [sym_non_lvalue_expression] = STATE(3880), - [sym_lvalue_expression] = STATE(2949), - [sym__expression_statement_expression] = STATE(3873), - [sym_assignment_expression] = STATE(3881), - [sym_binary_expression] = STATE(3873), - [sym_postfix_unary_expression] = STATE(3881), - [sym_prefix_unary_expression] = STATE(3881), - [sym__pointer_indirection_expression] = STATE(2913), - [sym_query_expression] = STATE(3873), - [sym_from_clause] = STATE(6182), - [sym_conditional_expression] = STATE(3873), - [sym_conditional_access_expression] = STATE(3873), - [sym_as_expression] = STATE(3873), - [sym_is_expression] = STATE(3873), - [sym_is_pattern_expression] = STATE(3873), - [sym_cast_expression] = STATE(3873), - [sym_checked_expression] = STATE(3873), - [sym_invocation_expression] = STATE(3881), - [sym_switch_expression] = STATE(3873), - [sym_await_expression] = STATE(3881), - [sym_throw_expression] = STATE(3873), - [sym_element_access_expression] = STATE(2913), - [sym_interpolated_string_expression] = STATE(3873), - [sym_member_access_expression] = STATE(2913), - [sym_object_creation_expression] = STATE(3881), - [sym_parenthesized_expression] = STATE(3881), - [sym__parenthesized_lvalue_expression] = STATE(2913), - [sym_lambda_expression] = STATE(3873), - [sym__lambda_expression_init] = STATE(7721), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3873), - [sym_anonymous_method_expression] = STATE(3873), - [sym_anonymous_object_creation_expression] = STATE(3873), - [sym_implicit_array_creation_expression] = STATE(3873), - [sym_implicit_object_creation_expression] = STATE(3873), - [sym_implicit_stackalloc_expression] = STATE(3873), - [sym_initializer_expression] = STATE(3873), - [sym_default_expression] = STATE(3873), - [sym_with_expression] = STATE(3873), - [sym_sizeof_expression] = STATE(3873), - [sym_typeof_expression] = STATE(3873), - [sym_makeref_expression] = STATE(3873), - [sym_ref_expression] = STATE(3873), - [sym_reftype_expression] = STATE(3873), - [sym_refvalue_expression] = STATE(3873), - [sym_stackalloc_expression] = STATE(3873), - [sym_range_expression] = STATE(3873), - [sym_tuple_expression] = STATE(2913), - [sym_literal] = STATE(3873), - [sym_character_literal] = STATE(3877), - [sym_string_literal] = STATE(3877), - [sym_raw_string_literal] = STATE(3877), - [sym_boolean_literal] = STATE(3877), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3873), - [sym_preproc_if_in_attribute_list] = STATE(5576), - [sym_preproc_region] = STATE(1626), - [sym_preproc_endregion] = STATE(1626), - [sym_preproc_line] = STATE(1626), - [sym_preproc_pragma] = STATE(1626), - [sym_preproc_nullable] = STATE(1626), - [sym_preproc_error] = STATE(1626), - [sym_preproc_warning] = STATE(1626), - [sym_preproc_define] = STATE(1626), - [sym_preproc_undef] = STATE(1626), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3382), - [sym__identifier_token] = ACTIONS(25), - [anon_sym_alias] = ACTIONS(29), - [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1627), - [anon_sym_LPAREN] = ACTIONS(1629), - [anon_sym_ref] = ACTIONS(1631), - [anon_sym_LBRACE] = ACTIONS(1633), - [anon_sym_delegate] = ACTIONS(1635), - [anon_sym_async] = ACTIONS(1047), - [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1637), - [anon_sym_where] = ACTIONS(29), - [anon_sym_notnull] = ACTIONS(29), - [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1639), - [anon_sym_BANG] = ACTIONS(1643), - [anon_sym_TILDE] = ACTIONS(1643), - [anon_sym_PLUS_PLUS] = ACTIONS(1643), - [anon_sym_DASH_DASH] = ACTIONS(1643), - [anon_sym_true] = ACTIONS(1645), - [anon_sym_false] = ACTIONS(1645), - [anon_sym_PLUS] = ACTIONS(1641), - [anon_sym_DASH] = ACTIONS(1641), - [anon_sym_STAR] = ACTIONS(1647), - [anon_sym_CARET] = ACTIONS(1643), - [anon_sym_AMP] = ACTIONS(1643), - [anon_sym_this] = ACTIONS(1649), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1651), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1653), - [anon_sym_unchecked] = ACTIONS(1639), - [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1655), - [anon_sym_throw] = ACTIONS(1657), - [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1659), - [anon_sym_DOT_DOT] = ACTIONS(1661), - [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(1663), - [anon_sym_sizeof] = ACTIONS(1665), - [anon_sym_typeof] = ACTIONS(1667), - [anon_sym___makeref] = ACTIONS(1669), - [anon_sym___reftype] = ACTIONS(1671), - [anon_sym___refvalue] = ACTIONS(1673), - [sym_null_literal] = ACTIONS(1675), - [anon_sym_SQUOTE] = ACTIONS(1677), - [sym_integer_literal] = ACTIONS(1675), - [sym_real_literal] = ACTIONS(1679), - [anon_sym_DQUOTE] = ACTIONS(1681), - [sym_verbatim_string_literal] = ACTIONS(1679), - [aux_sym_preproc_if_token1] = ACTIONS(1683), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1685), - [sym_interpolation_verbatim_start] = ACTIONS(1687), - [sym_interpolation_raw_start] = ACTIONS(1689), - [sym_raw_string_start] = ACTIONS(1691), - }, - [1627] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2762), - [sym__name] = STATE(5892), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2316), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(4682), - [sym_non_lvalue_expression] = STATE(3438), - [sym_lvalue_expression] = STATE(3500), - [sym__expression_statement_expression] = STATE(3362), - [sym_assignment_expression] = STATE(3449), - [sym_binary_expression] = STATE(3362), - [sym_postfix_unary_expression] = STATE(3449), - [sym_prefix_unary_expression] = STATE(3449), - [sym__pointer_indirection_expression] = STATE(2747), - [sym_query_expression] = STATE(3362), - [sym_from_clause] = STATE(6147), - [sym_conditional_expression] = STATE(3362), - [sym_conditional_access_expression] = STATE(3362), - [sym_as_expression] = STATE(3362), - [sym_is_expression] = STATE(3362), - [sym_is_pattern_expression] = STATE(3362), - [sym_cast_expression] = STATE(3362), - [sym_checked_expression] = STATE(3362), - [sym_invocation_expression] = STATE(3449), - [sym_switch_expression] = STATE(3362), - [sym_await_expression] = STATE(3449), - [sym_throw_expression] = STATE(3362), - [sym_element_access_expression] = STATE(2747), - [sym_interpolated_string_expression] = STATE(3362), - [sym_member_access_expression] = STATE(2747), - [sym_object_creation_expression] = STATE(3449), - [sym_parenthesized_expression] = STATE(3449), - [sym__parenthesized_lvalue_expression] = STATE(2747), - [sym_lambda_expression] = STATE(3362), - [sym__lambda_expression_init] = STATE(7516), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3362), - [sym_anonymous_method_expression] = STATE(3362), - [sym_anonymous_object_creation_expression] = STATE(3362), - [sym_implicit_array_creation_expression] = STATE(3362), - [sym_implicit_object_creation_expression] = STATE(3362), - [sym_implicit_stackalloc_expression] = STATE(3362), - [sym_initializer_expression] = STATE(3362), - [sym_default_expression] = STATE(3362), - [sym_with_expression] = STATE(3362), - [sym_sizeof_expression] = STATE(3362), - [sym_typeof_expression] = STATE(3362), - [sym_makeref_expression] = STATE(3362), - [sym_ref_expression] = STATE(3362), - [sym_reftype_expression] = STATE(3362), - [sym_refvalue_expression] = STATE(3362), - [sym_stackalloc_expression] = STATE(3362), - [sym_range_expression] = STATE(3362), - [sym_tuple_expression] = STATE(2747), - [sym_literal] = STATE(3362), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2267), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3362), - [sym_preproc_if_in_attribute_list] = STATE(5576), - [sym_preproc_region] = STATE(1627), - [sym_preproc_endregion] = STATE(1627), - [sym_preproc_line] = STATE(1627), - [sym_preproc_pragma] = STATE(1627), - [sym_preproc_nullable] = STATE(1627), - [sym_preproc_error] = STATE(1627), - [sym_preproc_warning] = STATE(1627), - [sym_preproc_define] = STATE(1627), - [sym_preproc_undef] = STATE(1627), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3385), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2238), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(5354), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3468), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3102), + [sym_postfix_unary_expression] = STATE(3079), + [sym_prefix_unary_expression] = STATE(3079), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6134), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3102), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3079), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3102), + [sym_member_access_expression] = STATE(2472), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3079), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7309), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(3102), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3102), + [sym_typeof_expression] = STATE(3102), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2472), + [sym_literal] = STATE(3102), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), + [sym_preproc_region] = STATE(1612), + [sym_preproc_endregion] = STATE(1612), + [sym_preproc_line] = STATE(1612), + [sym_preproc_pragma] = STATE(1612), + [sym_preproc_nullable] = STATE(1612), + [sym_preproc_error] = STATE(1612), + [sym_preproc_warning] = STATE(1612), + [sym_preproc_define] = STATE(1612), + [sym_preproc_undef] = STATE(1612), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1307), - [anon_sym_LPAREN] = ACTIONS(1609), - [anon_sym_ref] = ACTIONS(1611), - [anon_sym_LBRACE] = ACTIONS(1313), - [anon_sym_delegate] = ACTIONS(1315), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1479), + [anon_sym_LPAREN] = ACTIONS(659), + [anon_sym_ref] = ACTIONS(663), + [anon_sym_LBRACE] = ACTIONS(1481), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1613), + [anon_sym_new] = ACTIONS(1059), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1319), - [anon_sym_BANG] = ACTIONS(1617), - [anon_sym_TILDE] = ACTIONS(1617), - [anon_sym_PLUS_PLUS] = ACTIONS(1617), - [anon_sym_DASH_DASH] = ACTIONS(1617), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(1485), + [anon_sym_TILDE] = ACTIONS(1485), + [anon_sym_PLUS_PLUS] = ACTIONS(1485), + [anon_sym_DASH_DASH] = ACTIONS(1485), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1615), - [anon_sym_DASH] = ACTIONS(1615), - [anon_sym_STAR] = ACTIONS(1619), - [anon_sym_CARET] = ACTIONS(1617), - [anon_sym_AMP] = ACTIONS(1617), - [anon_sym_this] = ACTIONS(1323), + [anon_sym_PLUS] = ACTIONS(1483), + [anon_sym_DASH] = ACTIONS(1483), + [anon_sym_STAR] = ACTIONS(683), + [anon_sym_CARET] = ACTIONS(1485), + [anon_sym_AMP] = ACTIONS(1485), + [anon_sym_this] = ACTIONS(83), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1325), + [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1319), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1621), + [anon_sym_throw] = ACTIONS(1077), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1623), - [anon_sym_DOT_DOT] = ACTIONS(1625), + [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), @@ -316875,19 +314226,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1333), + [anon_sym_stackalloc] = ACTIONS(127), [anon_sym_sizeof] = ACTIONS(129), [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(1335), - [anon_sym___reftype] = ACTIONS(1337), - [anon_sym___refvalue] = ACTIONS(1339), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), [sym_null_literal] = ACTIONS(139), [anon_sym_SQUOTE] = ACTIONS(141), [sym_integer_literal] = ACTIONS(139), [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1341), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -316903,304 +314254,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), }, - [1628] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(3184), - [sym__name] = STATE(5906), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2312), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2269), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(4811), - [sym_non_lvalue_expression] = STATE(4541), - [sym_lvalue_expression] = STATE(3439), - [sym__expression_statement_expression] = STATE(4529), - [sym_assignment_expression] = STATE(4543), - [sym_binary_expression] = STATE(4529), - [sym_postfix_unary_expression] = STATE(4543), - [sym_prefix_unary_expression] = STATE(4543), - [sym__pointer_indirection_expression] = STATE(3175), - [sym_query_expression] = STATE(4529), - [sym_from_clause] = STATE(6169), - [sym_conditional_expression] = STATE(4529), - [sym_conditional_access_expression] = STATE(4529), - [sym_as_expression] = STATE(4529), - [sym_is_expression] = STATE(4529), - [sym_is_pattern_expression] = STATE(4529), - [sym_cast_expression] = STATE(4529), - [sym_checked_expression] = STATE(4529), - [sym_invocation_expression] = STATE(4543), - [sym_switch_expression] = STATE(4529), - [sym_await_expression] = STATE(4543), - [sym_throw_expression] = STATE(4529), - [sym_element_access_expression] = STATE(3175), - [sym_interpolated_string_expression] = STATE(4529), - [sym_member_access_expression] = STATE(3175), - [sym_object_creation_expression] = STATE(4543), - [sym_parenthesized_expression] = STATE(4543), - [sym__parenthesized_lvalue_expression] = STATE(3175), - [sym_lambda_expression] = STATE(4529), - [sym__lambda_expression_init] = STATE(7684), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(4529), - [sym_anonymous_method_expression] = STATE(4529), - [sym_anonymous_object_creation_expression] = STATE(4529), - [sym_implicit_array_creation_expression] = STATE(4529), - [sym_implicit_object_creation_expression] = STATE(4529), - [sym_implicit_stackalloc_expression] = STATE(4529), - [sym_initializer_expression] = STATE(4529), - [sym_default_expression] = STATE(4529), - [sym_with_expression] = STATE(4529), - [sym_sizeof_expression] = STATE(4529), - [sym_typeof_expression] = STATE(4529), - [sym_makeref_expression] = STATE(4529), - [sym_ref_expression] = STATE(4529), - [sym_reftype_expression] = STATE(4529), - [sym_refvalue_expression] = STATE(4529), - [sym_stackalloc_expression] = STATE(4529), - [sym_range_expression] = STATE(4529), - [sym_tuple_expression] = STATE(3175), - [sym_literal] = STATE(4529), - [sym_character_literal] = STATE(4536), - [sym_string_literal] = STATE(4536), - [sym_raw_string_literal] = STATE(4536), - [sym_boolean_literal] = STATE(4536), - [sym_identifier] = STATE(2246), - [sym__reserved_identifier] = STATE(2240), - [sym_preproc_if_in_expression] = STATE(4529), - [sym_preproc_if_in_attribute_list] = STATE(5576), - [sym_preproc_region] = STATE(1628), - [sym_preproc_endregion] = STATE(1628), - [sym_preproc_line] = STATE(1628), - [sym_preproc_pragma] = STATE(1628), - [sym_preproc_nullable] = STATE(1628), - [sym_preproc_error] = STATE(1628), - [sym_preproc_warning] = STATE(1628), - [sym_preproc_define] = STATE(1628), - [sym_preproc_undef] = STATE(1628), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3363), - [sym__identifier_token] = ACTIONS(1387), - [anon_sym_alias] = ACTIONS(1389), - [anon_sym_global] = ACTIONS(1389), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1391), - [anon_sym_LPAREN] = ACTIONS(1775), - [anon_sym_ref] = ACTIONS(1777), - [anon_sym_LBRACE] = ACTIONS(1397), - [anon_sym_delegate] = ACTIONS(1399), - [anon_sym_async] = ACTIONS(1047), - [anon_sym_file] = ACTIONS(1389), - [anon_sym_new] = ACTIONS(1401), - [anon_sym_where] = ACTIONS(1389), - [anon_sym_notnull] = ACTIONS(1389), - [anon_sym_unmanaged] = ACTIONS(1389), - [anon_sym_checked] = ACTIONS(1403), - [anon_sym_BANG] = ACTIONS(1781), - [anon_sym_TILDE] = ACTIONS(1781), - [anon_sym_PLUS_PLUS] = ACTIONS(1781), - [anon_sym_DASH_DASH] = ACTIONS(1781), - [anon_sym_true] = ACTIONS(1409), - [anon_sym_false] = ACTIONS(1409), - [anon_sym_PLUS] = ACTIONS(1779), - [anon_sym_DASH] = ACTIONS(1779), - [anon_sym_STAR] = ACTIONS(1411), - [anon_sym_CARET] = ACTIONS(1781), - [anon_sym_AMP] = ACTIONS(1781), - [anon_sym_this] = ACTIONS(1413), - [anon_sym_scoped] = ACTIONS(1415), - [anon_sym_base] = ACTIONS(1417), - [anon_sym_var] = ACTIONS(1419), - [sym_predefined_type] = ACTIONS(1421), - [anon_sym_unchecked] = ACTIONS(1403), - [anon_sym_yield] = ACTIONS(1389), - [anon_sym_default] = ACTIONS(1423), - [anon_sym_throw] = ACTIONS(1783), - [anon_sym_when] = ACTIONS(1389), - [anon_sym_await] = ACTIONS(1785), - [anon_sym_DOT_DOT] = ACTIONS(1787), - [anon_sym_from] = ACTIONS(1431), - [anon_sym_into] = ACTIONS(1389), - [anon_sym_join] = ACTIONS(1389), - [anon_sym_on] = ACTIONS(1389), - [anon_sym_equals] = ACTIONS(1389), - [anon_sym_let] = ACTIONS(1389), - [anon_sym_orderby] = ACTIONS(1389), - [anon_sym_ascending] = ACTIONS(1389), - [anon_sym_descending] = ACTIONS(1389), - [anon_sym_group] = ACTIONS(1389), - [anon_sym_by] = ACTIONS(1389), - [anon_sym_select] = ACTIONS(1389), - [anon_sym_stackalloc] = ACTIONS(1433), - [anon_sym_sizeof] = ACTIONS(1435), - [anon_sym_typeof] = ACTIONS(1437), - [anon_sym___makeref] = ACTIONS(1439), - [anon_sym___reftype] = ACTIONS(1441), - [anon_sym___refvalue] = ACTIONS(1443), - [sym_null_literal] = ACTIONS(1445), - [anon_sym_SQUOTE] = ACTIONS(1447), - [sym_integer_literal] = ACTIONS(1445), - [sym_real_literal] = ACTIONS(1449), - [anon_sym_DQUOTE] = ACTIONS(1451), - [sym_verbatim_string_literal] = ACTIONS(1449), - [aux_sym_preproc_if_token1] = ACTIONS(1453), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1455), - [sym_interpolation_verbatim_start] = ACTIONS(1457), - [sym_interpolation_raw_start] = ACTIONS(1459), - [sym_raw_string_start] = ACTIONS(1461), - }, - [1629] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2914), - [sym__name] = STATE(5885), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2357), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(3765), - [sym_non_lvalue_expression] = STATE(3880), - [sym_lvalue_expression] = STATE(2986), - [sym__expression_statement_expression] = STATE(3873), - [sym_assignment_expression] = STATE(3881), - [sym_binary_expression] = STATE(3873), - [sym_postfix_unary_expression] = STATE(3881), - [sym_prefix_unary_expression] = STATE(3881), - [sym__pointer_indirection_expression] = STATE(2913), - [sym_query_expression] = STATE(3873), - [sym_from_clause] = STATE(6168), - [sym_conditional_expression] = STATE(3873), - [sym_conditional_access_expression] = STATE(3873), - [sym_as_expression] = STATE(3873), - [sym_is_expression] = STATE(3873), - [sym_is_pattern_expression] = STATE(3873), - [sym_cast_expression] = STATE(3873), - [sym_checked_expression] = STATE(3873), - [sym_invocation_expression] = STATE(3881), - [sym_switch_expression] = STATE(3873), - [sym_await_expression] = STATE(3881), - [sym_throw_expression] = STATE(3873), - [sym_element_access_expression] = STATE(2913), - [sym_interpolated_string_expression] = STATE(3873), - [sym_member_access_expression] = STATE(2913), - [sym_object_creation_expression] = STATE(3881), - [sym_parenthesized_expression] = STATE(3881), - [sym__parenthesized_lvalue_expression] = STATE(2913), - [sym_lambda_expression] = STATE(3873), - [sym__lambda_expression_init] = STATE(7587), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3873), - [sym_anonymous_method_expression] = STATE(3873), - [sym_anonymous_object_creation_expression] = STATE(3873), - [sym_implicit_array_creation_expression] = STATE(3873), - [sym_implicit_object_creation_expression] = STATE(3873), - [sym_implicit_stackalloc_expression] = STATE(3873), - [sym_initializer_expression] = STATE(3873), - [sym_default_expression] = STATE(3873), - [sym_with_expression] = STATE(3873), - [sym_sizeof_expression] = STATE(3873), - [sym_typeof_expression] = STATE(3873), - [sym_makeref_expression] = STATE(3873), - [sym_ref_expression] = STATE(3873), - [sym_reftype_expression] = STATE(3873), - [sym_refvalue_expression] = STATE(3873), - [sym_stackalloc_expression] = STATE(3873), - [sym_range_expression] = STATE(3873), - [sym_tuple_expression] = STATE(2913), - [sym_literal] = STATE(3873), - [sym_character_literal] = STATE(3877), - [sym_string_literal] = STATE(3877), - [sym_raw_string_literal] = STATE(3877), - [sym_boolean_literal] = STATE(3877), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3873), - [sym_preproc_if_in_attribute_list] = STATE(5576), - [sym_preproc_region] = STATE(1629), - [sym_preproc_endregion] = STATE(1629), - [sym_preproc_line] = STATE(1629), - [sym_preproc_pragma] = STATE(1629), - [sym_preproc_nullable] = STATE(1629), - [sym_preproc_error] = STATE(1629), - [sym_preproc_warning] = STATE(1629), - [sym_preproc_define] = STATE(1629), - [sym_preproc_undef] = STATE(1629), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3382), + [1613] = { + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(5893), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2361), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(5377), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3673), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3102), + [sym_postfix_unary_expression] = STATE(3079), + [sym_prefix_unary_expression] = STATE(3079), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6159), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3102), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3079), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3102), + [sym_member_access_expression] = STATE(2472), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3079), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7363), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(3102), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3102), + [sym_typeof_expression] = STATE(3102), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2472), + [sym_literal] = STATE(3102), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), + [sym_preproc_region] = STATE(1613), + [sym_preproc_endregion] = STATE(1613), + [sym_preproc_line] = STATE(1613), + [sym_preproc_pragma] = STATE(1613), + [sym_preproc_nullable] = STATE(1613), + [sym_preproc_error] = STATE(1613), + [sym_preproc_warning] = STATE(1613), + [sym_preproc_define] = STATE(1613), + [sym_preproc_undef] = STATE(1613), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1627), - [anon_sym_LPAREN] = ACTIONS(2079), - [anon_sym_ref] = ACTIONS(2081), - [anon_sym_LBRACE] = ACTIONS(1633), - [anon_sym_delegate] = ACTIONS(1635), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1479), + [anon_sym_LPAREN] = ACTIONS(2237), + [anon_sym_ref] = ACTIONS(2239), + [anon_sym_LBRACE] = ACTIONS(1481), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1731), + [anon_sym_new] = ACTIONS(2241), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1639), - [anon_sym_BANG] = ACTIONS(2085), - [anon_sym_TILDE] = ACTIONS(2085), - [anon_sym_PLUS_PLUS] = ACTIONS(2085), - [anon_sym_DASH_DASH] = ACTIONS(2085), - [anon_sym_true] = ACTIONS(1645), - [anon_sym_false] = ACTIONS(1645), - [anon_sym_PLUS] = ACTIONS(2083), - [anon_sym_DASH] = ACTIONS(2083), - [anon_sym_STAR] = ACTIONS(1737), - [anon_sym_CARET] = ACTIONS(2085), - [anon_sym_AMP] = ACTIONS(2085), - [anon_sym_this] = ACTIONS(1649), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(2245), + [anon_sym_TILDE] = ACTIONS(2245), + [anon_sym_PLUS_PLUS] = ACTIONS(2245), + [anon_sym_DASH_DASH] = ACTIONS(2245), + [anon_sym_true] = ACTIONS(77), + [anon_sym_false] = ACTIONS(77), + [anon_sym_PLUS] = ACTIONS(2243), + [anon_sym_DASH] = ACTIONS(2243), + [anon_sym_STAR] = ACTIONS(2247), + [anon_sym_CARET] = ACTIONS(2245), + [anon_sym_AMP] = ACTIONS(2245), + [anon_sym_this] = ACTIONS(83), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1651), + [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1653), - [anon_sym_unchecked] = ACTIONS(1639), + [sym_predefined_type] = ACTIONS(91), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1655), - [anon_sym_throw] = ACTIONS(2087), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(2249), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2089), - [anon_sym_DOT_DOT] = ACTIONS(2091), + [anon_sym_await] = ACTIONS(2251), + [anon_sym_DOT_DOT] = ACTIONS(2253), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -317213,19 +314395,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1663), - [anon_sym_sizeof] = ACTIONS(1665), - [anon_sym_typeof] = ACTIONS(1667), - [anon_sym___makeref] = ACTIONS(1669), - [anon_sym___reftype] = ACTIONS(1671), - [anon_sym___refvalue] = ACTIONS(1673), - [sym_null_literal] = ACTIONS(1675), - [anon_sym_SQUOTE] = ACTIONS(1677), - [sym_integer_literal] = ACTIONS(1675), - [sym_real_literal] = ACTIONS(1679), - [anon_sym_DQUOTE] = ACTIONS(1681), - [sym_verbatim_string_literal] = ACTIONS(1679), - [aux_sym_preproc_if_token1] = ACTIONS(1683), + [anon_sym_stackalloc] = ACTIONS(127), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_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), @@ -317236,140 +314418,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(1685), - [sym_interpolation_verbatim_start] = ACTIONS(1687), - [sym_interpolation_raw_start] = ACTIONS(1689), - [sym_raw_string_start] = ACTIONS(1691), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [sym_interpolation_raw_start] = ACTIONS(155), + [sym_raw_string_start] = ACTIONS(157), }, - [1630] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(5910), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2247), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(5616), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3379), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3080), - [sym_postfix_unary_expression] = STATE(3111), - [sym_prefix_unary_expression] = STATE(3111), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6154), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3080), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3111), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3080), - [sym_member_access_expression] = STATE(2484), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3111), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7575), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(3080), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3080), - [sym_typeof_expression] = STATE(3080), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2484), - [sym_literal] = STATE(3080), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), - [sym_preproc_region] = STATE(1630), - [sym_preproc_endregion] = STATE(1630), - [sym_preproc_line] = STATE(1630), - [sym_preproc_pragma] = STATE(1630), - [sym_preproc_nullable] = STATE(1630), - [sym_preproc_error] = STATE(1630), - [sym_preproc_warning] = STATE(1630), - [sym_preproc_define] = STATE(1630), - [sym_preproc_undef] = STATE(1630), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3067), + [1614] = { + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2816), + [sym__name] = STATE(5873), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2196), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(4947), + [sym_non_lvalue_expression] = STATE(3495), + [sym_lvalue_expression] = STATE(3525), + [sym__expression_statement_expression] = STATE(3462), + [sym_assignment_expression] = STATE(3497), + [sym_binary_expression] = STATE(3462), + [sym_postfix_unary_expression] = STATE(3497), + [sym_prefix_unary_expression] = STATE(3497), + [sym__pointer_indirection_expression] = STATE(2815), + [sym_query_expression] = STATE(3462), + [sym_from_clause] = STATE(6155), + [sym_conditional_expression] = STATE(3462), + [sym_conditional_access_expression] = STATE(3462), + [sym_as_expression] = STATE(3462), + [sym_is_expression] = STATE(3462), + [sym_is_pattern_expression] = STATE(3462), + [sym_cast_expression] = STATE(3462), + [sym_checked_expression] = STATE(3462), + [sym_invocation_expression] = STATE(3497), + [sym_switch_expression] = STATE(3462), + [sym_await_expression] = STATE(3497), + [sym_throw_expression] = STATE(3462), + [sym_element_access_expression] = STATE(2815), + [sym_interpolated_string_expression] = STATE(3462), + [sym_member_access_expression] = STATE(2815), + [sym_object_creation_expression] = STATE(3497), + [sym_parenthesized_expression] = STATE(3497), + [sym__parenthesized_lvalue_expression] = STATE(2815), + [sym_lambda_expression] = STATE(3462), + [sym__lambda_expression_init] = STATE(7427), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3462), + [sym_anonymous_method_expression] = STATE(3462), + [sym_anonymous_object_creation_expression] = STATE(3462), + [sym_implicit_array_creation_expression] = STATE(3462), + [sym_implicit_object_creation_expression] = STATE(3462), + [sym_implicit_stackalloc_expression] = STATE(3462), + [sym_initializer_expression] = STATE(3462), + [sym_default_expression] = STATE(3462), + [sym_with_expression] = STATE(3462), + [sym_sizeof_expression] = STATE(3462), + [sym_typeof_expression] = STATE(3462), + [sym_makeref_expression] = STATE(3462), + [sym_ref_expression] = STATE(3462), + [sym_reftype_expression] = STATE(3462), + [sym_refvalue_expression] = STATE(3462), + [sym_stackalloc_expression] = STATE(3462), + [sym_range_expression] = STATE(3462), + [sym_tuple_expression] = STATE(2815), + [sym_literal] = STATE(3462), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3462), + [sym_preproc_if_in_attribute_list] = STATE(5583), + [sym_preproc_region] = STATE(1614), + [sym_preproc_endregion] = STATE(1614), + [sym_preproc_line] = STATE(1614), + [sym_preproc_pragma] = STATE(1614), + [sym_preproc_nullable] = STATE(1614), + [sym_preproc_error] = STATE(1614), + [sym_preproc_warning] = STATE(1614), + [sym_preproc_define] = STATE(1614), + [sym_preproc_undef] = STATE(1614), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), [aux_sym__lambda_expression_init_repeat1] = STATE(3367), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1481), - [anon_sym_LPAREN] = ACTIONS(895), - [anon_sym_ref] = ACTIONS(897), - [anon_sym_LBRACE] = ACTIONS(1487), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1305), + [anon_sym_LPAREN] = ACTIONS(1737), + [anon_sym_ref] = ACTIONS(1739), + [anon_sym_LBRACE] = ACTIONS(1311), + [anon_sym_delegate] = ACTIONS(1313), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1061), + [anon_sym_new] = ACTIONS(1741), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1067), - [anon_sym_BANG] = ACTIONS(1495), - [anon_sym_TILDE] = ACTIONS(1495), - [anon_sym_PLUS_PLUS] = ACTIONS(1495), - [anon_sym_DASH_DASH] = ACTIONS(1495), + [anon_sym_checked] = ACTIONS(1317), + [anon_sym_BANG] = ACTIONS(1745), + [anon_sym_TILDE] = ACTIONS(1745), + [anon_sym_PLUS_PLUS] = ACTIONS(1745), + [anon_sym_DASH_DASH] = ACTIONS(1745), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1493), - [anon_sym_DASH] = ACTIONS(1493), - [anon_sym_STAR] = ACTIONS(905), - [anon_sym_CARET] = ACTIONS(1495), - [anon_sym_AMP] = ACTIONS(1495), - [anon_sym_this] = ACTIONS(83), + [anon_sym_PLUS] = ACTIONS(1743), + [anon_sym_DASH] = ACTIONS(1743), + [anon_sym_STAR] = ACTIONS(1377), + [anon_sym_CARET] = ACTIONS(1745), + [anon_sym_AMP] = ACTIONS(1745), + [anon_sym_this] = ACTIONS(1321), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), + [anon_sym_base] = ACTIONS(1323), [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1067), + [anon_sym_unchecked] = ACTIONS(1317), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1079), + [anon_sym_throw] = ACTIONS(1747), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1081), - [anon_sym_DOT_DOT] = ACTIONS(911), + [anon_sym_await] = ACTIONS(1749), + [anon_sym_DOT_DOT] = ACTIONS(1751), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -317382,19 +314564,19 @@ static const uint16_t ts_parse_table[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(1331), [anon_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(1333), + [anon_sym___reftype] = ACTIONS(1335), + [anon_sym___refvalue] = ACTIONS(1337), [sym_null_literal] = ACTIONS(139), [anon_sym_SQUOTE] = ACTIONS(141), [sym_integer_literal] = ACTIONS(139), [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1089), + [aux_sym_preproc_if_token1] = ACTIONS(1753), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -317410,135 +314592,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), }, - [1631] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2914), - [sym__name] = STATE(5885), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2357), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(3607), - [sym_non_lvalue_expression] = STATE(3880), - [sym_lvalue_expression] = STATE(2911), - [sym__expression_statement_expression] = STATE(3873), - [sym_assignment_expression] = STATE(3881), - [sym_binary_expression] = STATE(3873), - [sym_postfix_unary_expression] = STATE(3881), - [sym_prefix_unary_expression] = STATE(3881), - [sym__pointer_indirection_expression] = STATE(2913), - [sym_query_expression] = STATE(3873), - [sym_from_clause] = STATE(6182), - [sym_conditional_expression] = STATE(3873), - [sym_conditional_access_expression] = STATE(3873), - [sym_as_expression] = STATE(3873), - [sym_is_expression] = STATE(3873), - [sym_is_pattern_expression] = STATE(3873), - [sym_cast_expression] = STATE(3873), - [sym_checked_expression] = STATE(3873), - [sym_invocation_expression] = STATE(3881), - [sym_switch_expression] = STATE(3873), - [sym_await_expression] = STATE(3881), - [sym_throw_expression] = STATE(3873), - [sym_element_access_expression] = STATE(2913), - [sym_interpolated_string_expression] = STATE(3873), - [sym_member_access_expression] = STATE(2913), - [sym_object_creation_expression] = STATE(3881), - [sym_parenthesized_expression] = STATE(3881), - [sym__parenthesized_lvalue_expression] = STATE(2913), - [sym_lambda_expression] = STATE(3873), - [sym__lambda_expression_init] = STATE(7316), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3873), - [sym_anonymous_method_expression] = STATE(3873), - [sym_anonymous_object_creation_expression] = STATE(3873), - [sym_implicit_array_creation_expression] = STATE(3873), - [sym_implicit_object_creation_expression] = STATE(3873), - [sym_implicit_stackalloc_expression] = STATE(3873), - [sym_initializer_expression] = STATE(3873), - [sym_default_expression] = STATE(3873), - [sym_with_expression] = STATE(3873), - [sym_sizeof_expression] = STATE(3873), - [sym_typeof_expression] = STATE(3873), - [sym_makeref_expression] = STATE(3873), - [sym_ref_expression] = STATE(3873), - [sym_reftype_expression] = STATE(3873), - [sym_refvalue_expression] = STATE(3873), - [sym_stackalloc_expression] = STATE(3873), - [sym_range_expression] = STATE(3873), - [sym_tuple_expression] = STATE(2913), - [sym_literal] = STATE(3873), - [sym_character_literal] = STATE(3877), - [sym_string_literal] = STATE(3877), - [sym_raw_string_literal] = STATE(3877), - [sym_boolean_literal] = STATE(3877), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3873), - [sym_preproc_if_in_attribute_list] = STATE(5576), - [sym_preproc_region] = STATE(1631), - [sym_preproc_endregion] = STATE(1631), - [sym_preproc_line] = STATE(1631), - [sym_preproc_pragma] = STATE(1631), - [sym_preproc_nullable] = STATE(1631), - [sym_preproc_error] = STATE(1631), - [sym_preproc_warning] = STATE(1631), - [sym_preproc_define] = STATE(1631), - [sym_preproc_undef] = STATE(1631), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3382), + [1615] = { + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(5881), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2386), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(4102), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3110), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3102), + [sym_postfix_unary_expression] = STATE(3079), + [sym_prefix_unary_expression] = STATE(3079), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6153), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3102), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3079), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3102), + [sym_member_access_expression] = STATE(2472), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3079), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7637), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(3102), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3102), + [sym_typeof_expression] = STATE(3102), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2472), + [sym_literal] = STATE(3102), + [sym_character_literal] = STATE(3037), + [sym_string_literal] = STATE(3037), + [sym_raw_string_literal] = STATE(3037), + [sym_boolean_literal] = STATE(3037), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), + [sym_preproc_region] = STATE(1615), + [sym_preproc_endregion] = STATE(1615), + [sym_preproc_line] = STATE(1615), + [sym_preproc_pragma] = STATE(1615), + [sym_preproc_nullable] = STATE(1615), + [sym_preproc_error] = STATE(1615), + [sym_preproc_warning] = STATE(1615), + [sym_preproc_define] = STATE(1615), + [sym_preproc_undef] = STATE(1615), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1627), - [anon_sym_LPAREN] = ACTIONS(1727), - [anon_sym_ref] = ACTIONS(1729), - [anon_sym_LBRACE] = ACTIONS(1633), - [anon_sym_delegate] = ACTIONS(1635), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1479), + [anon_sym_LPAREN] = ACTIONS(1895), + [anon_sym_ref] = ACTIONS(1897), + [anon_sym_LBRACE] = ACTIONS(1481), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1731), + [anon_sym_new] = ACTIONS(1899), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1639), - [anon_sym_BANG] = ACTIONS(1735), - [anon_sym_TILDE] = ACTIONS(1735), - [anon_sym_PLUS_PLUS] = ACTIONS(1735), - [anon_sym_DASH_DASH] = ACTIONS(1735), - [anon_sym_true] = ACTIONS(1645), - [anon_sym_false] = ACTIONS(1645), - [anon_sym_PLUS] = ACTIONS(1733), - [anon_sym_DASH] = ACTIONS(1733), - [anon_sym_STAR] = ACTIONS(1737), - [anon_sym_CARET] = ACTIONS(1735), - [anon_sym_AMP] = ACTIONS(1735), - [anon_sym_this] = ACTIONS(1649), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(1903), + [anon_sym_TILDE] = ACTIONS(1903), + [anon_sym_PLUS_PLUS] = ACTIONS(1903), + [anon_sym_DASH_DASH] = ACTIONS(1903), + [anon_sym_true] = ACTIONS(1257), + [anon_sym_false] = ACTIONS(1257), + [anon_sym_PLUS] = ACTIONS(1901), + [anon_sym_DASH] = ACTIONS(1901), + [anon_sym_STAR] = ACTIONS(1905), + [anon_sym_CARET] = ACTIONS(1903), + [anon_sym_AMP] = ACTIONS(1903), + [anon_sym_this] = ACTIONS(83), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1651), + [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1653), - [anon_sym_unchecked] = ACTIONS(1639), + [sym_predefined_type] = ACTIONS(1265), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1655), - [anon_sym_throw] = ACTIONS(1739), + [anon_sym_default] = ACTIONS(1267), + [anon_sym_throw] = ACTIONS(1907), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1741), - [anon_sym_DOT_DOT] = ACTIONS(1743), + [anon_sym_await] = ACTIONS(1909), + [anon_sym_DOT_DOT] = ACTIONS(1911), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -317551,19 +314733,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1663), - [anon_sym_sizeof] = ACTIONS(1665), - [anon_sym_typeof] = ACTIONS(1667), - [anon_sym___makeref] = ACTIONS(1669), - [anon_sym___reftype] = ACTIONS(1671), - [anon_sym___refvalue] = ACTIONS(1673), - [sym_null_literal] = ACTIONS(1675), - [anon_sym_SQUOTE] = ACTIONS(1677), - [sym_integer_literal] = ACTIONS(1675), - [sym_real_literal] = ACTIONS(1679), - [anon_sym_DQUOTE] = ACTIONS(1681), - [sym_verbatim_string_literal] = ACTIONS(1679), - [aux_sym_preproc_if_token1] = ACTIONS(1683), + [anon_sym_stackalloc] = ACTIONS(127), + [anon_sym_sizeof] = ACTIONS(1277), + [anon_sym_typeof] = ACTIONS(1279), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), + [sym_null_literal] = ACTIONS(1287), + [anon_sym_SQUOTE] = ACTIONS(1289), + [sym_integer_literal] = ACTIONS(1287), + [sym_real_literal] = ACTIONS(1291), + [anon_sym_DQUOTE] = ACTIONS(1293), + [sym_verbatim_string_literal] = ACTIONS(1291), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -317574,140 +314756,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(1685), - [sym_interpolation_verbatim_start] = ACTIONS(1687), - [sym_interpolation_raw_start] = ACTIONS(1689), - [sym_raw_string_start] = ACTIONS(1691), + [sym_interpolation_regular_start] = ACTIONS(1297), + [sym_interpolation_verbatim_start] = ACTIONS(1299), + [sym_interpolation_raw_start] = ACTIONS(1301), + [sym_raw_string_start] = ACTIONS(1303), }, - [1632] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2610), - [sym__name] = STATE(5898), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2197), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(3845), - [sym_non_lvalue_expression] = STATE(3277), - [sym_lvalue_expression] = STATE(3023), - [sym__expression_statement_expression] = STATE(3228), - [sym_assignment_expression] = STATE(3289), - [sym_binary_expression] = STATE(3228), - [sym_postfix_unary_expression] = STATE(3289), - [sym_prefix_unary_expression] = STATE(3289), - [sym__pointer_indirection_expression] = STATE(2609), - [sym_query_expression] = STATE(3228), - [sym_from_clause] = STATE(6172), - [sym_conditional_expression] = STATE(3228), - [sym_conditional_access_expression] = STATE(3228), - [sym_as_expression] = STATE(3228), - [sym_is_expression] = STATE(3228), - [sym_is_pattern_expression] = STATE(3228), - [sym_cast_expression] = STATE(3228), - [sym_checked_expression] = STATE(3228), - [sym_invocation_expression] = STATE(3289), - [sym_switch_expression] = STATE(3228), - [sym_await_expression] = STATE(3289), - [sym_throw_expression] = STATE(3228), - [sym_element_access_expression] = STATE(2609), - [sym_interpolated_string_expression] = STATE(3228), - [sym_member_access_expression] = STATE(2609), - [sym_object_creation_expression] = STATE(3289), - [sym_parenthesized_expression] = STATE(3289), - [sym__parenthesized_lvalue_expression] = STATE(2609), - [sym_lambda_expression] = STATE(3228), - [sym__lambda_expression_init] = STATE(7653), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3228), - [sym_anonymous_method_expression] = STATE(3228), - [sym_anonymous_object_creation_expression] = STATE(3228), - [sym_implicit_array_creation_expression] = STATE(3228), - [sym_implicit_object_creation_expression] = STATE(3228), - [sym_implicit_stackalloc_expression] = STATE(3228), - [sym_initializer_expression] = STATE(3228), - [sym_default_expression] = STATE(3228), - [sym_with_expression] = STATE(3228), - [sym_sizeof_expression] = STATE(3228), - [sym_typeof_expression] = STATE(3228), - [sym_makeref_expression] = STATE(3228), - [sym_ref_expression] = STATE(3228), - [sym_reftype_expression] = STATE(3228), - [sym_refvalue_expression] = STATE(3228), - [sym_stackalloc_expression] = STATE(3228), - [sym_range_expression] = STATE(3228), - [sym_tuple_expression] = STATE(2609), - [sym_literal] = STATE(3228), - [sym_character_literal] = STATE(3278), - [sym_string_literal] = STATE(3278), - [sym_raw_string_literal] = STATE(3278), - [sym_boolean_literal] = STATE(3278), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3228), - [sym_preproc_if_in_attribute_list] = STATE(5576), - [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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3396), + [1616] = { + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(5881), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2386), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(4095), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3110), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3102), + [sym_postfix_unary_expression] = STATE(3079), + [sym_prefix_unary_expression] = STATE(3079), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6153), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3102), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3079), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3102), + [sym_member_access_expression] = STATE(2472), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3079), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7637), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(3102), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3102), + [sym_typeof_expression] = STATE(3102), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2472), + [sym_literal] = STATE(3102), + [sym_character_literal] = STATE(3037), + [sym_string_literal] = STATE(3037), + [sym_raw_string_literal] = STATE(3037), + [sym_boolean_literal] = STATE(3037), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), + [sym_preproc_region] = STATE(1616), + [sym_preproc_endregion] = STATE(1616), + [sym_preproc_line] = STATE(1616), + [sym_preproc_pragma] = STATE(1616), + [sym_preproc_nullable] = STATE(1616), + [sym_preproc_error] = STATE(1616), + [sym_preproc_warning] = STATE(1616), + [sym_preproc_define] = STATE(1616), + [sym_preproc_undef] = STATE(1616), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1153), - [anon_sym_LPAREN] = ACTIONS(1155), - [anon_sym_ref] = ACTIONS(1157), - [anon_sym_LBRACE] = ACTIONS(1159), - [anon_sym_delegate] = ACTIONS(1161), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1479), + [anon_sym_LPAREN] = ACTIONS(1895), + [anon_sym_ref] = ACTIONS(1897), + [anon_sym_LBRACE] = ACTIONS(1481), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1163), + [anon_sym_new] = ACTIONS(1899), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1167), - [anon_sym_BANG] = ACTIONS(1171), - [anon_sym_TILDE] = ACTIONS(1171), - [anon_sym_PLUS_PLUS] = ACTIONS(1171), - [anon_sym_DASH_DASH] = ACTIONS(1171), - [anon_sym_true] = ACTIONS(1173), - [anon_sym_false] = ACTIONS(1173), - [anon_sym_PLUS] = ACTIONS(1169), - [anon_sym_DASH] = ACTIONS(1169), - [anon_sym_STAR] = ACTIONS(1175), - [anon_sym_CARET] = ACTIONS(1171), - [anon_sym_AMP] = ACTIONS(1171), - [anon_sym_this] = ACTIONS(1177), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(1903), + [anon_sym_TILDE] = ACTIONS(1903), + [anon_sym_PLUS_PLUS] = ACTIONS(1903), + [anon_sym_DASH_DASH] = ACTIONS(1903), + [anon_sym_true] = ACTIONS(1257), + [anon_sym_false] = ACTIONS(1257), + [anon_sym_PLUS] = ACTIONS(1901), + [anon_sym_DASH] = ACTIONS(1901), + [anon_sym_STAR] = ACTIONS(1905), + [anon_sym_CARET] = ACTIONS(1903), + [anon_sym_AMP] = ACTIONS(1903), + [anon_sym_this] = ACTIONS(83), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1179), + [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1181), - [anon_sym_unchecked] = ACTIONS(1167), + [sym_predefined_type] = ACTIONS(1265), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1183), - [anon_sym_throw] = ACTIONS(1185), + [anon_sym_default] = ACTIONS(1267), + [anon_sym_throw] = ACTIONS(1907), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1187), - [anon_sym_DOT_DOT] = ACTIONS(1189), + [anon_sym_await] = ACTIONS(1909), + [anon_sym_DOT_DOT] = ACTIONS(1911), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -317720,19 +314902,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1191), - [anon_sym_sizeof] = ACTIONS(1193), - [anon_sym_typeof] = ACTIONS(1195), - [anon_sym___makeref] = ACTIONS(1197), - [anon_sym___reftype] = ACTIONS(1199), - [anon_sym___refvalue] = ACTIONS(1201), - [sym_null_literal] = ACTIONS(1203), - [anon_sym_SQUOTE] = ACTIONS(1205), - [sym_integer_literal] = ACTIONS(1203), - [sym_real_literal] = ACTIONS(1207), - [anon_sym_DQUOTE] = ACTIONS(1209), - [sym_verbatim_string_literal] = ACTIONS(1207), - [aux_sym_preproc_if_token1] = ACTIONS(1211), + [anon_sym_stackalloc] = ACTIONS(127), + [anon_sym_sizeof] = ACTIONS(1277), + [anon_sym_typeof] = ACTIONS(1279), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), + [sym_null_literal] = ACTIONS(1287), + [anon_sym_SQUOTE] = ACTIONS(1289), + [sym_integer_literal] = ACTIONS(1287), + [sym_real_literal] = ACTIONS(1291), + [anon_sym_DQUOTE] = ACTIONS(1293), + [sym_verbatim_string_literal] = ACTIONS(1291), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -317743,140 +314925,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(1213), - [sym_interpolation_verbatim_start] = ACTIONS(1215), - [sym_interpolation_raw_start] = ACTIONS(1217), - [sym_raw_string_start] = ACTIONS(1219), + [sym_interpolation_regular_start] = ACTIONS(1297), + [sym_interpolation_verbatim_start] = ACTIONS(1299), + [sym_interpolation_raw_start] = ACTIONS(1301), + [sym_raw_string_start] = ACTIONS(1303), }, - [1633] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(5160), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2204), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(3543), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3687), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3080), - [sym_postfix_unary_expression] = STATE(3111), - [sym_prefix_unary_expression] = STATE(3111), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6164), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3080), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3111), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3080), - [sym_member_access_expression] = STATE(2484), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3111), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7701), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(3080), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3080), - [sym_typeof_expression] = STATE(3080), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2484), - [sym_literal] = STATE(3080), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), - [sym_preproc_region] = STATE(1633), - [sym_preproc_endregion] = STATE(1633), - [sym_preproc_line] = STATE(1633), - [sym_preproc_pragma] = STATE(1633), - [sym_preproc_nullable] = STATE(1633), - [sym_preproc_error] = STATE(1633), - [sym_preproc_warning] = STATE(1633), - [sym_preproc_define] = STATE(1633), - [sym_preproc_undef] = STATE(1633), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3067), + [1617] = { + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2816), + [sym__name] = STATE(5873), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2196), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(5099), + [sym_non_lvalue_expression] = STATE(3495), + [sym_lvalue_expression] = STATE(3525), + [sym__expression_statement_expression] = STATE(3462), + [sym_assignment_expression] = STATE(3497), + [sym_binary_expression] = STATE(3462), + [sym_postfix_unary_expression] = STATE(3497), + [sym_prefix_unary_expression] = STATE(3497), + [sym__pointer_indirection_expression] = STATE(2815), + [sym_query_expression] = STATE(3462), + [sym_from_clause] = STATE(6155), + [sym_conditional_expression] = STATE(3462), + [sym_conditional_access_expression] = STATE(3462), + [sym_as_expression] = STATE(3462), + [sym_is_expression] = STATE(3462), + [sym_is_pattern_expression] = STATE(3462), + [sym_cast_expression] = STATE(3462), + [sym_checked_expression] = STATE(3462), + [sym_invocation_expression] = STATE(3497), + [sym_switch_expression] = STATE(3462), + [sym_await_expression] = STATE(3497), + [sym_throw_expression] = STATE(3462), + [sym_element_access_expression] = STATE(2815), + [sym_interpolated_string_expression] = STATE(3462), + [sym_member_access_expression] = STATE(2815), + [sym_object_creation_expression] = STATE(3497), + [sym_parenthesized_expression] = STATE(3497), + [sym__parenthesized_lvalue_expression] = STATE(2815), + [sym_lambda_expression] = STATE(3462), + [sym__lambda_expression_init] = STATE(7427), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3462), + [sym_anonymous_method_expression] = STATE(3462), + [sym_anonymous_object_creation_expression] = STATE(3462), + [sym_implicit_array_creation_expression] = STATE(3462), + [sym_implicit_object_creation_expression] = STATE(3462), + [sym_implicit_stackalloc_expression] = STATE(3462), + [sym_initializer_expression] = STATE(3462), + [sym_default_expression] = STATE(3462), + [sym_with_expression] = STATE(3462), + [sym_sizeof_expression] = STATE(3462), + [sym_typeof_expression] = STATE(3462), + [sym_makeref_expression] = STATE(3462), + [sym_ref_expression] = STATE(3462), + [sym_reftype_expression] = STATE(3462), + [sym_refvalue_expression] = STATE(3462), + [sym_stackalloc_expression] = STATE(3462), + [sym_range_expression] = STATE(3462), + [sym_tuple_expression] = STATE(2815), + [sym_literal] = STATE(3462), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3462), + [sym_preproc_if_in_attribute_list] = STATE(5583), + [sym_preproc_region] = STATE(1617), + [sym_preproc_endregion] = STATE(1617), + [sym_preproc_line] = STATE(1617), + [sym_preproc_pragma] = STATE(1617), + [sym_preproc_nullable] = STATE(1617), + [sym_preproc_error] = STATE(1617), + [sym_preproc_warning] = STATE(1617), + [sym_preproc_define] = STATE(1617), + [sym_preproc_undef] = STATE(1617), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), [aux_sym__lambda_expression_init_repeat1] = STATE(3367), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1481), - [anon_sym_LPAREN] = ACTIONS(2093), - [anon_sym_ref] = ACTIONS(2095), - [anon_sym_LBRACE] = ACTIONS(1487), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1305), + [anon_sym_LPAREN] = ACTIONS(1737), + [anon_sym_ref] = ACTIONS(1739), + [anon_sym_LBRACE] = ACTIONS(1311), + [anon_sym_delegate] = ACTIONS(1313), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1061), + [anon_sym_new] = ACTIONS(1741), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1067), - [anon_sym_BANG] = ACTIONS(2099), - [anon_sym_TILDE] = ACTIONS(2099), - [anon_sym_PLUS_PLUS] = ACTIONS(2099), - [anon_sym_DASH_DASH] = ACTIONS(2099), + [anon_sym_checked] = ACTIONS(1317), + [anon_sym_BANG] = ACTIONS(1745), + [anon_sym_TILDE] = ACTIONS(1745), + [anon_sym_PLUS_PLUS] = ACTIONS(1745), + [anon_sym_DASH_DASH] = ACTIONS(1745), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(2097), - [anon_sym_DASH] = ACTIONS(2097), - [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(2099), - [anon_sym_AMP] = ACTIONS(2099), - [anon_sym_this] = ACTIONS(83), + [anon_sym_PLUS] = ACTIONS(1743), + [anon_sym_DASH] = ACTIONS(1743), + [anon_sym_STAR] = ACTIONS(1377), + [anon_sym_CARET] = ACTIONS(1745), + [anon_sym_AMP] = ACTIONS(1745), + [anon_sym_this] = ACTIONS(1321), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), + [anon_sym_base] = ACTIONS(1323), [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1067), + [anon_sym_unchecked] = ACTIONS(1317), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(2101), + [anon_sym_throw] = ACTIONS(1747), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2103), - [anon_sym_DOT_DOT] = ACTIONS(2105), + [anon_sym_await] = ACTIONS(1749), + [anon_sym_DOT_DOT] = ACTIONS(1751), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -317889,19 +315071,19 @@ static const uint16_t ts_parse_table[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(1331), [anon_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(1333), + [anon_sym___reftype] = ACTIONS(1335), + [anon_sym___refvalue] = ACTIONS(1337), [sym_null_literal] = ACTIONS(139), [anon_sym_SQUOTE] = ACTIONS(141), [sym_integer_literal] = ACTIONS(139), [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(2107), + [aux_sym_preproc_if_token1] = ACTIONS(1753), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -317917,135 +315099,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), }, - [1634] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2610), - [sym__name] = STATE(5898), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2197), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(3846), - [sym_non_lvalue_expression] = STATE(3277), - [sym_lvalue_expression] = STATE(3023), - [sym__expression_statement_expression] = STATE(3228), - [sym_assignment_expression] = STATE(3289), - [sym_binary_expression] = STATE(3228), - [sym_postfix_unary_expression] = STATE(3289), - [sym_prefix_unary_expression] = STATE(3289), - [sym__pointer_indirection_expression] = STATE(2609), - [sym_query_expression] = STATE(3228), - [sym_from_clause] = STATE(6172), - [sym_conditional_expression] = STATE(3228), - [sym_conditional_access_expression] = STATE(3228), - [sym_as_expression] = STATE(3228), - [sym_is_expression] = STATE(3228), - [sym_is_pattern_expression] = STATE(3228), - [sym_cast_expression] = STATE(3228), - [sym_checked_expression] = STATE(3228), - [sym_invocation_expression] = STATE(3289), - [sym_switch_expression] = STATE(3228), - [sym_await_expression] = STATE(3289), - [sym_throw_expression] = STATE(3228), - [sym_element_access_expression] = STATE(2609), - [sym_interpolated_string_expression] = STATE(3228), - [sym_member_access_expression] = STATE(2609), - [sym_object_creation_expression] = STATE(3289), - [sym_parenthesized_expression] = STATE(3289), - [sym__parenthesized_lvalue_expression] = STATE(2609), - [sym_lambda_expression] = STATE(3228), - [sym__lambda_expression_init] = STATE(7653), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3228), - [sym_anonymous_method_expression] = STATE(3228), - [sym_anonymous_object_creation_expression] = STATE(3228), - [sym_implicit_array_creation_expression] = STATE(3228), - [sym_implicit_object_creation_expression] = STATE(3228), - [sym_implicit_stackalloc_expression] = STATE(3228), - [sym_initializer_expression] = STATE(3228), - [sym_default_expression] = STATE(3228), - [sym_with_expression] = STATE(3228), - [sym_sizeof_expression] = STATE(3228), - [sym_typeof_expression] = STATE(3228), - [sym_makeref_expression] = STATE(3228), - [sym_ref_expression] = STATE(3228), - [sym_reftype_expression] = STATE(3228), - [sym_refvalue_expression] = STATE(3228), - [sym_stackalloc_expression] = STATE(3228), - [sym_range_expression] = STATE(3228), - [sym_tuple_expression] = STATE(2609), - [sym_literal] = STATE(3228), - [sym_character_literal] = STATE(3278), - [sym_string_literal] = STATE(3278), - [sym_raw_string_literal] = STATE(3278), - [sym_boolean_literal] = STATE(3278), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3228), - [sym_preproc_if_in_attribute_list] = STATE(5576), - [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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3396), + [1618] = { + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2816), + [sym__name] = STATE(5873), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2196), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(5100), + [sym_non_lvalue_expression] = STATE(3495), + [sym_lvalue_expression] = STATE(3525), + [sym__expression_statement_expression] = STATE(3462), + [sym_assignment_expression] = STATE(3497), + [sym_binary_expression] = STATE(3462), + [sym_postfix_unary_expression] = STATE(3497), + [sym_prefix_unary_expression] = STATE(3497), + [sym__pointer_indirection_expression] = STATE(2815), + [sym_query_expression] = STATE(3462), + [sym_from_clause] = STATE(6155), + [sym_conditional_expression] = STATE(3462), + [sym_conditional_access_expression] = STATE(3462), + [sym_as_expression] = STATE(3462), + [sym_is_expression] = STATE(3462), + [sym_is_pattern_expression] = STATE(3462), + [sym_cast_expression] = STATE(3462), + [sym_checked_expression] = STATE(3462), + [sym_invocation_expression] = STATE(3497), + [sym_switch_expression] = STATE(3462), + [sym_await_expression] = STATE(3497), + [sym_throw_expression] = STATE(3462), + [sym_element_access_expression] = STATE(2815), + [sym_interpolated_string_expression] = STATE(3462), + [sym_member_access_expression] = STATE(2815), + [sym_object_creation_expression] = STATE(3497), + [sym_parenthesized_expression] = STATE(3497), + [sym__parenthesized_lvalue_expression] = STATE(2815), + [sym_lambda_expression] = STATE(3462), + [sym__lambda_expression_init] = STATE(7427), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3462), + [sym_anonymous_method_expression] = STATE(3462), + [sym_anonymous_object_creation_expression] = STATE(3462), + [sym_implicit_array_creation_expression] = STATE(3462), + [sym_implicit_object_creation_expression] = STATE(3462), + [sym_implicit_stackalloc_expression] = STATE(3462), + [sym_initializer_expression] = STATE(3462), + [sym_default_expression] = STATE(3462), + [sym_with_expression] = STATE(3462), + [sym_sizeof_expression] = STATE(3462), + [sym_typeof_expression] = STATE(3462), + [sym_makeref_expression] = STATE(3462), + [sym_ref_expression] = STATE(3462), + [sym_reftype_expression] = STATE(3462), + [sym_refvalue_expression] = STATE(3462), + [sym_stackalloc_expression] = STATE(3462), + [sym_range_expression] = STATE(3462), + [sym_tuple_expression] = STATE(2815), + [sym_literal] = STATE(3462), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3462), + [sym_preproc_if_in_attribute_list] = STATE(5583), + [sym_preproc_region] = STATE(1618), + [sym_preproc_endregion] = STATE(1618), + [sym_preproc_line] = STATE(1618), + [sym_preproc_pragma] = STATE(1618), + [sym_preproc_nullable] = STATE(1618), + [sym_preproc_error] = STATE(1618), + [sym_preproc_warning] = STATE(1618), + [sym_preproc_define] = STATE(1618), + [sym_preproc_undef] = STATE(1618), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3367), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1153), - [anon_sym_LPAREN] = ACTIONS(1155), - [anon_sym_ref] = ACTIONS(1157), - [anon_sym_LBRACE] = ACTIONS(1159), - [anon_sym_delegate] = ACTIONS(1161), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1305), + [anon_sym_LPAREN] = ACTIONS(1737), + [anon_sym_ref] = ACTIONS(1739), + [anon_sym_LBRACE] = ACTIONS(1311), + [anon_sym_delegate] = ACTIONS(1313), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1163), + [anon_sym_new] = ACTIONS(1741), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1167), - [anon_sym_BANG] = ACTIONS(1171), - [anon_sym_TILDE] = ACTIONS(1171), - [anon_sym_PLUS_PLUS] = ACTIONS(1171), - [anon_sym_DASH_DASH] = ACTIONS(1171), - [anon_sym_true] = ACTIONS(1173), - [anon_sym_false] = ACTIONS(1173), - [anon_sym_PLUS] = ACTIONS(1169), - [anon_sym_DASH] = ACTIONS(1169), - [anon_sym_STAR] = ACTIONS(1175), - [anon_sym_CARET] = ACTIONS(1171), - [anon_sym_AMP] = ACTIONS(1171), - [anon_sym_this] = ACTIONS(1177), + [anon_sym_checked] = ACTIONS(1317), + [anon_sym_BANG] = ACTIONS(1745), + [anon_sym_TILDE] = ACTIONS(1745), + [anon_sym_PLUS_PLUS] = ACTIONS(1745), + [anon_sym_DASH_DASH] = ACTIONS(1745), + [anon_sym_true] = ACTIONS(77), + [anon_sym_false] = ACTIONS(77), + [anon_sym_PLUS] = ACTIONS(1743), + [anon_sym_DASH] = ACTIONS(1743), + [anon_sym_STAR] = ACTIONS(1377), + [anon_sym_CARET] = ACTIONS(1745), + [anon_sym_AMP] = ACTIONS(1745), + [anon_sym_this] = ACTIONS(1321), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1179), + [anon_sym_base] = ACTIONS(1323), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1181), - [anon_sym_unchecked] = ACTIONS(1167), + [sym_predefined_type] = ACTIONS(91), + [anon_sym_unchecked] = ACTIONS(1317), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1183), - [anon_sym_throw] = ACTIONS(1185), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(1747), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1187), - [anon_sym_DOT_DOT] = ACTIONS(1189), + [anon_sym_await] = ACTIONS(1749), + [anon_sym_DOT_DOT] = ACTIONS(1751), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -318058,19 +315240,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1191), - [anon_sym_sizeof] = ACTIONS(1193), - [anon_sym_typeof] = ACTIONS(1195), - [anon_sym___makeref] = ACTIONS(1197), - [anon_sym___reftype] = ACTIONS(1199), - [anon_sym___refvalue] = ACTIONS(1201), - [sym_null_literal] = ACTIONS(1203), - [anon_sym_SQUOTE] = ACTIONS(1205), - [sym_integer_literal] = ACTIONS(1203), - [sym_real_literal] = ACTIONS(1207), - [anon_sym_DQUOTE] = ACTIONS(1209), - [sym_verbatim_string_literal] = ACTIONS(1207), - [aux_sym_preproc_if_token1] = ACTIONS(1211), + [anon_sym_stackalloc] = ACTIONS(1331), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(1333), + [anon_sym___reftype] = ACTIONS(1335), + [anon_sym___refvalue] = ACTIONS(1337), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_literal] = ACTIONS(143), + [anon_sym_DQUOTE] = ACTIONS(145), + [sym_verbatim_string_literal] = ACTIONS(143), + [aux_sym_preproc_if_token1] = ACTIONS(1753), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -318081,140 +315263,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(1213), - [sym_interpolation_verbatim_start] = ACTIONS(1215), - [sym_interpolation_raw_start] = ACTIONS(1217), - [sym_raw_string_start] = ACTIONS(1219), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [sym_interpolation_raw_start] = ACTIONS(155), + [sym_raw_string_start] = ACTIONS(157), }, - [1635] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2610), - [sym__name] = STATE(5898), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2197), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(3847), - [sym_non_lvalue_expression] = STATE(3277), - [sym_lvalue_expression] = STATE(3023), - [sym__expression_statement_expression] = STATE(3228), - [sym_assignment_expression] = STATE(3289), - [sym_binary_expression] = STATE(3228), - [sym_postfix_unary_expression] = STATE(3289), - [sym_prefix_unary_expression] = STATE(3289), - [sym__pointer_indirection_expression] = STATE(2609), - [sym_query_expression] = STATE(3228), - [sym_from_clause] = STATE(6172), - [sym_conditional_expression] = STATE(3228), - [sym_conditional_access_expression] = STATE(3228), - [sym_as_expression] = STATE(3228), - [sym_is_expression] = STATE(3228), - [sym_is_pattern_expression] = STATE(3228), - [sym_cast_expression] = STATE(3228), - [sym_checked_expression] = STATE(3228), - [sym_invocation_expression] = STATE(3289), - [sym_switch_expression] = STATE(3228), - [sym_await_expression] = STATE(3289), - [sym_throw_expression] = STATE(3228), - [sym_element_access_expression] = STATE(2609), - [sym_interpolated_string_expression] = STATE(3228), - [sym_member_access_expression] = STATE(2609), - [sym_object_creation_expression] = STATE(3289), - [sym_parenthesized_expression] = STATE(3289), - [sym__parenthesized_lvalue_expression] = STATE(2609), - [sym_lambda_expression] = STATE(3228), - [sym__lambda_expression_init] = STATE(7653), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3228), - [sym_anonymous_method_expression] = STATE(3228), - [sym_anonymous_object_creation_expression] = STATE(3228), - [sym_implicit_array_creation_expression] = STATE(3228), - [sym_implicit_object_creation_expression] = STATE(3228), - [sym_implicit_stackalloc_expression] = STATE(3228), - [sym_initializer_expression] = STATE(3228), - [sym_default_expression] = STATE(3228), - [sym_with_expression] = STATE(3228), - [sym_sizeof_expression] = STATE(3228), - [sym_typeof_expression] = STATE(3228), - [sym_makeref_expression] = STATE(3228), - [sym_ref_expression] = STATE(3228), - [sym_reftype_expression] = STATE(3228), - [sym_refvalue_expression] = STATE(3228), - [sym_stackalloc_expression] = STATE(3228), - [sym_range_expression] = STATE(3228), - [sym_tuple_expression] = STATE(2609), - [sym_literal] = STATE(3228), - [sym_character_literal] = STATE(3278), - [sym_string_literal] = STATE(3278), - [sym_raw_string_literal] = STATE(3278), - [sym_boolean_literal] = STATE(3278), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3228), - [sym_preproc_if_in_attribute_list] = STATE(5576), - [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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3396), + [1619] = { + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2816), + [sym__name] = STATE(5873), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2196), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(5010), + [sym_non_lvalue_expression] = STATE(3495), + [sym_lvalue_expression] = STATE(3525), + [sym__expression_statement_expression] = STATE(3462), + [sym_assignment_expression] = STATE(3497), + [sym_binary_expression] = STATE(3462), + [sym_postfix_unary_expression] = STATE(3497), + [sym_prefix_unary_expression] = STATE(3497), + [sym__pointer_indirection_expression] = STATE(2815), + [sym_query_expression] = STATE(3462), + [sym_from_clause] = STATE(6155), + [sym_conditional_expression] = STATE(3462), + [sym_conditional_access_expression] = STATE(3462), + [sym_as_expression] = STATE(3462), + [sym_is_expression] = STATE(3462), + [sym_is_pattern_expression] = STATE(3462), + [sym_cast_expression] = STATE(3462), + [sym_checked_expression] = STATE(3462), + [sym_invocation_expression] = STATE(3497), + [sym_switch_expression] = STATE(3462), + [sym_await_expression] = STATE(3497), + [sym_throw_expression] = STATE(3462), + [sym_element_access_expression] = STATE(2815), + [sym_interpolated_string_expression] = STATE(3462), + [sym_member_access_expression] = STATE(2815), + [sym_object_creation_expression] = STATE(3497), + [sym_parenthesized_expression] = STATE(3497), + [sym__parenthesized_lvalue_expression] = STATE(2815), + [sym_lambda_expression] = STATE(3462), + [sym__lambda_expression_init] = STATE(7427), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3462), + [sym_anonymous_method_expression] = STATE(3462), + [sym_anonymous_object_creation_expression] = STATE(3462), + [sym_implicit_array_creation_expression] = STATE(3462), + [sym_implicit_object_creation_expression] = STATE(3462), + [sym_implicit_stackalloc_expression] = STATE(3462), + [sym_initializer_expression] = STATE(3462), + [sym_default_expression] = STATE(3462), + [sym_with_expression] = STATE(3462), + [sym_sizeof_expression] = STATE(3462), + [sym_typeof_expression] = STATE(3462), + [sym_makeref_expression] = STATE(3462), + [sym_ref_expression] = STATE(3462), + [sym_reftype_expression] = STATE(3462), + [sym_refvalue_expression] = STATE(3462), + [sym_stackalloc_expression] = STATE(3462), + [sym_range_expression] = STATE(3462), + [sym_tuple_expression] = STATE(2815), + [sym_literal] = STATE(3462), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3462), + [sym_preproc_if_in_attribute_list] = STATE(5583), + [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(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3367), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1153), - [anon_sym_LPAREN] = ACTIONS(1155), - [anon_sym_ref] = ACTIONS(1157), - [anon_sym_LBRACE] = ACTIONS(1159), - [anon_sym_delegate] = ACTIONS(1161), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1305), + [anon_sym_LPAREN] = ACTIONS(1737), + [anon_sym_ref] = ACTIONS(1739), + [anon_sym_LBRACE] = ACTIONS(1311), + [anon_sym_delegate] = ACTIONS(1313), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1163), + [anon_sym_new] = ACTIONS(1741), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1167), - [anon_sym_BANG] = ACTIONS(1171), - [anon_sym_TILDE] = ACTIONS(1171), - [anon_sym_PLUS_PLUS] = ACTIONS(1171), - [anon_sym_DASH_DASH] = ACTIONS(1171), - [anon_sym_true] = ACTIONS(1173), - [anon_sym_false] = ACTIONS(1173), - [anon_sym_PLUS] = ACTIONS(1169), - [anon_sym_DASH] = ACTIONS(1169), - [anon_sym_STAR] = ACTIONS(1175), - [anon_sym_CARET] = ACTIONS(1171), - [anon_sym_AMP] = ACTIONS(1171), - [anon_sym_this] = ACTIONS(1177), + [anon_sym_checked] = ACTIONS(1317), + [anon_sym_BANG] = ACTIONS(1745), + [anon_sym_TILDE] = ACTIONS(1745), + [anon_sym_PLUS_PLUS] = ACTIONS(1745), + [anon_sym_DASH_DASH] = ACTIONS(1745), + [anon_sym_true] = ACTIONS(77), + [anon_sym_false] = ACTIONS(77), + [anon_sym_PLUS] = ACTIONS(1743), + [anon_sym_DASH] = ACTIONS(1743), + [anon_sym_STAR] = ACTIONS(1377), + [anon_sym_CARET] = ACTIONS(1745), + [anon_sym_AMP] = ACTIONS(1745), + [anon_sym_this] = ACTIONS(1321), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1179), + [anon_sym_base] = ACTIONS(1323), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1181), - [anon_sym_unchecked] = ACTIONS(1167), + [sym_predefined_type] = ACTIONS(91), + [anon_sym_unchecked] = ACTIONS(1317), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1183), - [anon_sym_throw] = ACTIONS(1185), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(1747), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1187), - [anon_sym_DOT_DOT] = ACTIONS(1189), + [anon_sym_await] = ACTIONS(1749), + [anon_sym_DOT_DOT] = ACTIONS(1751), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -318227,19 +315409,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1191), - [anon_sym_sizeof] = ACTIONS(1193), - [anon_sym_typeof] = ACTIONS(1195), - [anon_sym___makeref] = ACTIONS(1197), - [anon_sym___reftype] = ACTIONS(1199), - [anon_sym___refvalue] = ACTIONS(1201), - [sym_null_literal] = ACTIONS(1203), - [anon_sym_SQUOTE] = ACTIONS(1205), - [sym_integer_literal] = ACTIONS(1203), - [sym_real_literal] = ACTIONS(1207), - [anon_sym_DQUOTE] = ACTIONS(1209), - [sym_verbatim_string_literal] = ACTIONS(1207), - [aux_sym_preproc_if_token1] = ACTIONS(1211), + [anon_sym_stackalloc] = ACTIONS(1331), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(1333), + [anon_sym___reftype] = ACTIONS(1335), + [anon_sym___refvalue] = ACTIONS(1337), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_literal] = ACTIONS(143), + [anon_sym_DQUOTE] = ACTIONS(145), + [sym_verbatim_string_literal] = ACTIONS(143), + [aux_sym_preproc_if_token1] = ACTIONS(1753), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -318250,140 +315432,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(1213), - [sym_interpolation_verbatim_start] = ACTIONS(1215), - [sym_interpolation_raw_start] = ACTIONS(1217), - [sym_raw_string_start] = ACTIONS(1219), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [sym_interpolation_raw_start] = ACTIONS(155), + [sym_raw_string_start] = ACTIONS(157), }, - [1636] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2914), - [sym__name] = STATE(5885), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2357), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(3766), - [sym_non_lvalue_expression] = STATE(3880), - [sym_lvalue_expression] = STATE(2986), - [sym__expression_statement_expression] = STATE(3873), - [sym_assignment_expression] = STATE(3881), - [sym_binary_expression] = STATE(3873), - [sym_postfix_unary_expression] = STATE(3881), - [sym_prefix_unary_expression] = STATE(3881), - [sym__pointer_indirection_expression] = STATE(2913), - [sym_query_expression] = STATE(3873), - [sym_from_clause] = STATE(6168), - [sym_conditional_expression] = STATE(3873), - [sym_conditional_access_expression] = STATE(3873), - [sym_as_expression] = STATE(3873), - [sym_is_expression] = STATE(3873), - [sym_is_pattern_expression] = STATE(3873), - [sym_cast_expression] = STATE(3873), - [sym_checked_expression] = STATE(3873), - [sym_invocation_expression] = STATE(3881), - [sym_switch_expression] = STATE(3873), - [sym_await_expression] = STATE(3881), - [sym_throw_expression] = STATE(3873), - [sym_element_access_expression] = STATE(2913), - [sym_interpolated_string_expression] = STATE(3873), - [sym_member_access_expression] = STATE(2913), - [sym_object_creation_expression] = STATE(3881), - [sym_parenthesized_expression] = STATE(3881), - [sym__parenthesized_lvalue_expression] = STATE(2913), - [sym_lambda_expression] = STATE(3873), - [sym__lambda_expression_init] = STATE(7587), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3873), - [sym_anonymous_method_expression] = STATE(3873), - [sym_anonymous_object_creation_expression] = STATE(3873), - [sym_implicit_array_creation_expression] = STATE(3873), - [sym_implicit_object_creation_expression] = STATE(3873), - [sym_implicit_stackalloc_expression] = STATE(3873), - [sym_initializer_expression] = STATE(3873), - [sym_default_expression] = STATE(3873), - [sym_with_expression] = STATE(3873), - [sym_sizeof_expression] = STATE(3873), - [sym_typeof_expression] = STATE(3873), - [sym_makeref_expression] = STATE(3873), - [sym_ref_expression] = STATE(3873), - [sym_reftype_expression] = STATE(3873), - [sym_refvalue_expression] = STATE(3873), - [sym_stackalloc_expression] = STATE(3873), - [sym_range_expression] = STATE(3873), - [sym_tuple_expression] = STATE(2913), - [sym_literal] = STATE(3873), - [sym_character_literal] = STATE(3877), - [sym_string_literal] = STATE(3877), - [sym_raw_string_literal] = STATE(3877), - [sym_boolean_literal] = STATE(3877), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3873), - [sym_preproc_if_in_attribute_list] = STATE(5576), - [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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3382), + [1620] = { + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2816), + [sym__name] = STATE(5873), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2196), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(5101), + [sym_non_lvalue_expression] = STATE(3495), + [sym_lvalue_expression] = STATE(3525), + [sym__expression_statement_expression] = STATE(3462), + [sym_assignment_expression] = STATE(3497), + [sym_binary_expression] = STATE(3462), + [sym_postfix_unary_expression] = STATE(3497), + [sym_prefix_unary_expression] = STATE(3497), + [sym__pointer_indirection_expression] = STATE(2815), + [sym_query_expression] = STATE(3462), + [sym_from_clause] = STATE(6155), + [sym_conditional_expression] = STATE(3462), + [sym_conditional_access_expression] = STATE(3462), + [sym_as_expression] = STATE(3462), + [sym_is_expression] = STATE(3462), + [sym_is_pattern_expression] = STATE(3462), + [sym_cast_expression] = STATE(3462), + [sym_checked_expression] = STATE(3462), + [sym_invocation_expression] = STATE(3497), + [sym_switch_expression] = STATE(3462), + [sym_await_expression] = STATE(3497), + [sym_throw_expression] = STATE(3462), + [sym_element_access_expression] = STATE(2815), + [sym_interpolated_string_expression] = STATE(3462), + [sym_member_access_expression] = STATE(2815), + [sym_object_creation_expression] = STATE(3497), + [sym_parenthesized_expression] = STATE(3497), + [sym__parenthesized_lvalue_expression] = STATE(2815), + [sym_lambda_expression] = STATE(3462), + [sym__lambda_expression_init] = STATE(7427), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3462), + [sym_anonymous_method_expression] = STATE(3462), + [sym_anonymous_object_creation_expression] = STATE(3462), + [sym_implicit_array_creation_expression] = STATE(3462), + [sym_implicit_object_creation_expression] = STATE(3462), + [sym_implicit_stackalloc_expression] = STATE(3462), + [sym_initializer_expression] = STATE(3462), + [sym_default_expression] = STATE(3462), + [sym_with_expression] = STATE(3462), + [sym_sizeof_expression] = STATE(3462), + [sym_typeof_expression] = STATE(3462), + [sym_makeref_expression] = STATE(3462), + [sym_ref_expression] = STATE(3462), + [sym_reftype_expression] = STATE(3462), + [sym_refvalue_expression] = STATE(3462), + [sym_stackalloc_expression] = STATE(3462), + [sym_range_expression] = STATE(3462), + [sym_tuple_expression] = STATE(2815), + [sym_literal] = STATE(3462), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3462), + [sym_preproc_if_in_attribute_list] = STATE(5583), + [sym_preproc_region] = STATE(1620), + [sym_preproc_endregion] = STATE(1620), + [sym_preproc_line] = STATE(1620), + [sym_preproc_pragma] = STATE(1620), + [sym_preproc_nullable] = STATE(1620), + [sym_preproc_error] = STATE(1620), + [sym_preproc_warning] = STATE(1620), + [sym_preproc_define] = STATE(1620), + [sym_preproc_undef] = STATE(1620), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3367), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1627), - [anon_sym_LPAREN] = ACTIONS(2079), - [anon_sym_ref] = ACTIONS(2081), - [anon_sym_LBRACE] = ACTIONS(1633), - [anon_sym_delegate] = ACTIONS(1635), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1305), + [anon_sym_LPAREN] = ACTIONS(1737), + [anon_sym_ref] = ACTIONS(1739), + [anon_sym_LBRACE] = ACTIONS(1311), + [anon_sym_delegate] = ACTIONS(1313), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1731), + [anon_sym_new] = ACTIONS(1741), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1639), - [anon_sym_BANG] = ACTIONS(2085), - [anon_sym_TILDE] = ACTIONS(2085), - [anon_sym_PLUS_PLUS] = ACTIONS(2085), - [anon_sym_DASH_DASH] = ACTIONS(2085), - [anon_sym_true] = ACTIONS(1645), - [anon_sym_false] = ACTIONS(1645), - [anon_sym_PLUS] = ACTIONS(2083), - [anon_sym_DASH] = ACTIONS(2083), - [anon_sym_STAR] = ACTIONS(1737), - [anon_sym_CARET] = ACTIONS(2085), - [anon_sym_AMP] = ACTIONS(2085), - [anon_sym_this] = ACTIONS(1649), + [anon_sym_checked] = ACTIONS(1317), + [anon_sym_BANG] = ACTIONS(1745), + [anon_sym_TILDE] = ACTIONS(1745), + [anon_sym_PLUS_PLUS] = ACTIONS(1745), + [anon_sym_DASH_DASH] = ACTIONS(1745), + [anon_sym_true] = ACTIONS(77), + [anon_sym_false] = ACTIONS(77), + [anon_sym_PLUS] = ACTIONS(1743), + [anon_sym_DASH] = ACTIONS(1743), + [anon_sym_STAR] = ACTIONS(1377), + [anon_sym_CARET] = ACTIONS(1745), + [anon_sym_AMP] = ACTIONS(1745), + [anon_sym_this] = ACTIONS(1321), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1651), + [anon_sym_base] = ACTIONS(1323), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1653), - [anon_sym_unchecked] = ACTIONS(1639), + [sym_predefined_type] = ACTIONS(91), + [anon_sym_unchecked] = ACTIONS(1317), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1655), - [anon_sym_throw] = ACTIONS(2087), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(1747), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2089), - [anon_sym_DOT_DOT] = ACTIONS(2091), + [anon_sym_await] = ACTIONS(1749), + [anon_sym_DOT_DOT] = ACTIONS(1751), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -318396,19 +315578,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1663), - [anon_sym_sizeof] = ACTIONS(1665), - [anon_sym_typeof] = ACTIONS(1667), - [anon_sym___makeref] = ACTIONS(1669), - [anon_sym___reftype] = ACTIONS(1671), - [anon_sym___refvalue] = ACTIONS(1673), - [sym_null_literal] = ACTIONS(1675), - [anon_sym_SQUOTE] = ACTIONS(1677), - [sym_integer_literal] = ACTIONS(1675), - [sym_real_literal] = ACTIONS(1679), - [anon_sym_DQUOTE] = ACTIONS(1681), - [sym_verbatim_string_literal] = ACTIONS(1679), - [aux_sym_preproc_if_token1] = ACTIONS(1683), + [anon_sym_stackalloc] = ACTIONS(1331), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(1333), + [anon_sym___reftype] = ACTIONS(1335), + [anon_sym___refvalue] = ACTIONS(1337), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_literal] = ACTIONS(143), + [anon_sym_DQUOTE] = ACTIONS(145), + [sym_verbatim_string_literal] = ACTIONS(143), + [aux_sym_preproc_if_token1] = ACTIONS(1753), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -318419,140 +315601,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(1685), - [sym_interpolation_verbatim_start] = ACTIONS(1687), - [sym_interpolation_raw_start] = ACTIONS(1689), - [sym_raw_string_start] = ACTIONS(1691), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [sym_interpolation_raw_start] = ACTIONS(155), + [sym_raw_string_start] = ACTIONS(157), }, - [1637] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2610), - [sym__name] = STATE(5898), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2197), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(3848), - [sym_non_lvalue_expression] = STATE(3277), - [sym_lvalue_expression] = STATE(3023), - [sym__expression_statement_expression] = STATE(3228), - [sym_assignment_expression] = STATE(3289), - [sym_binary_expression] = STATE(3228), - [sym_postfix_unary_expression] = STATE(3289), - [sym_prefix_unary_expression] = STATE(3289), - [sym__pointer_indirection_expression] = STATE(2609), - [sym_query_expression] = STATE(3228), - [sym_from_clause] = STATE(6172), - [sym_conditional_expression] = STATE(3228), - [sym_conditional_access_expression] = STATE(3228), - [sym_as_expression] = STATE(3228), - [sym_is_expression] = STATE(3228), - [sym_is_pattern_expression] = STATE(3228), - [sym_cast_expression] = STATE(3228), - [sym_checked_expression] = STATE(3228), - [sym_invocation_expression] = STATE(3289), - [sym_switch_expression] = STATE(3228), - [sym_await_expression] = STATE(3289), - [sym_throw_expression] = STATE(3228), - [sym_element_access_expression] = STATE(2609), - [sym_interpolated_string_expression] = STATE(3228), - [sym_member_access_expression] = STATE(2609), - [sym_object_creation_expression] = STATE(3289), - [sym_parenthesized_expression] = STATE(3289), - [sym__parenthesized_lvalue_expression] = STATE(2609), - [sym_lambda_expression] = STATE(3228), - [sym__lambda_expression_init] = STATE(7653), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3228), - [sym_anonymous_method_expression] = STATE(3228), - [sym_anonymous_object_creation_expression] = STATE(3228), - [sym_implicit_array_creation_expression] = STATE(3228), - [sym_implicit_object_creation_expression] = STATE(3228), - [sym_implicit_stackalloc_expression] = STATE(3228), - [sym_initializer_expression] = STATE(3228), - [sym_default_expression] = STATE(3228), - [sym_with_expression] = STATE(3228), - [sym_sizeof_expression] = STATE(3228), - [sym_typeof_expression] = STATE(3228), - [sym_makeref_expression] = STATE(3228), - [sym_ref_expression] = STATE(3228), - [sym_reftype_expression] = STATE(3228), - [sym_refvalue_expression] = STATE(3228), - [sym_stackalloc_expression] = STATE(3228), - [sym_range_expression] = STATE(3228), - [sym_tuple_expression] = STATE(2609), - [sym_literal] = STATE(3228), - [sym_character_literal] = STATE(3278), - [sym_string_literal] = STATE(3278), - [sym_raw_string_literal] = STATE(3278), - [sym_boolean_literal] = STATE(3278), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3228), - [sym_preproc_if_in_attribute_list] = STATE(5576), - [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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3396), + [1621] = { + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2816), + [sym__name] = STATE(5873), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2196), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(5102), + [sym_non_lvalue_expression] = STATE(3495), + [sym_lvalue_expression] = STATE(3525), + [sym__expression_statement_expression] = STATE(3462), + [sym_assignment_expression] = STATE(3497), + [sym_binary_expression] = STATE(3462), + [sym_postfix_unary_expression] = STATE(3497), + [sym_prefix_unary_expression] = STATE(3497), + [sym__pointer_indirection_expression] = STATE(2815), + [sym_query_expression] = STATE(3462), + [sym_from_clause] = STATE(6155), + [sym_conditional_expression] = STATE(3462), + [sym_conditional_access_expression] = STATE(3462), + [sym_as_expression] = STATE(3462), + [sym_is_expression] = STATE(3462), + [sym_is_pattern_expression] = STATE(3462), + [sym_cast_expression] = STATE(3462), + [sym_checked_expression] = STATE(3462), + [sym_invocation_expression] = STATE(3497), + [sym_switch_expression] = STATE(3462), + [sym_await_expression] = STATE(3497), + [sym_throw_expression] = STATE(3462), + [sym_element_access_expression] = STATE(2815), + [sym_interpolated_string_expression] = STATE(3462), + [sym_member_access_expression] = STATE(2815), + [sym_object_creation_expression] = STATE(3497), + [sym_parenthesized_expression] = STATE(3497), + [sym__parenthesized_lvalue_expression] = STATE(2815), + [sym_lambda_expression] = STATE(3462), + [sym__lambda_expression_init] = STATE(7427), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3462), + [sym_anonymous_method_expression] = STATE(3462), + [sym_anonymous_object_creation_expression] = STATE(3462), + [sym_implicit_array_creation_expression] = STATE(3462), + [sym_implicit_object_creation_expression] = STATE(3462), + [sym_implicit_stackalloc_expression] = STATE(3462), + [sym_initializer_expression] = STATE(3462), + [sym_default_expression] = STATE(3462), + [sym_with_expression] = STATE(3462), + [sym_sizeof_expression] = STATE(3462), + [sym_typeof_expression] = STATE(3462), + [sym_makeref_expression] = STATE(3462), + [sym_ref_expression] = STATE(3462), + [sym_reftype_expression] = STATE(3462), + [sym_refvalue_expression] = STATE(3462), + [sym_stackalloc_expression] = STATE(3462), + [sym_range_expression] = STATE(3462), + [sym_tuple_expression] = STATE(2815), + [sym_literal] = STATE(3462), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3462), + [sym_preproc_if_in_attribute_list] = STATE(5583), + [sym_preproc_region] = STATE(1621), + [sym_preproc_endregion] = STATE(1621), + [sym_preproc_line] = STATE(1621), + [sym_preproc_pragma] = STATE(1621), + [sym_preproc_nullable] = STATE(1621), + [sym_preproc_error] = STATE(1621), + [sym_preproc_warning] = STATE(1621), + [sym_preproc_define] = STATE(1621), + [sym_preproc_undef] = STATE(1621), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3367), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1153), - [anon_sym_LPAREN] = ACTIONS(1155), - [anon_sym_ref] = ACTIONS(1157), - [anon_sym_LBRACE] = ACTIONS(1159), - [anon_sym_delegate] = ACTIONS(1161), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1305), + [anon_sym_LPAREN] = ACTIONS(1737), + [anon_sym_ref] = ACTIONS(1739), + [anon_sym_LBRACE] = ACTIONS(1311), + [anon_sym_delegate] = ACTIONS(1313), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1163), + [anon_sym_new] = ACTIONS(1741), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1167), - [anon_sym_BANG] = ACTIONS(1171), - [anon_sym_TILDE] = ACTIONS(1171), - [anon_sym_PLUS_PLUS] = ACTIONS(1171), - [anon_sym_DASH_DASH] = ACTIONS(1171), - [anon_sym_true] = ACTIONS(1173), - [anon_sym_false] = ACTIONS(1173), - [anon_sym_PLUS] = ACTIONS(1169), - [anon_sym_DASH] = ACTIONS(1169), - [anon_sym_STAR] = ACTIONS(1175), - [anon_sym_CARET] = ACTIONS(1171), - [anon_sym_AMP] = ACTIONS(1171), - [anon_sym_this] = ACTIONS(1177), + [anon_sym_checked] = ACTIONS(1317), + [anon_sym_BANG] = ACTIONS(1745), + [anon_sym_TILDE] = ACTIONS(1745), + [anon_sym_PLUS_PLUS] = ACTIONS(1745), + [anon_sym_DASH_DASH] = ACTIONS(1745), + [anon_sym_true] = ACTIONS(77), + [anon_sym_false] = ACTIONS(77), + [anon_sym_PLUS] = ACTIONS(1743), + [anon_sym_DASH] = ACTIONS(1743), + [anon_sym_STAR] = ACTIONS(1377), + [anon_sym_CARET] = ACTIONS(1745), + [anon_sym_AMP] = ACTIONS(1745), + [anon_sym_this] = ACTIONS(1321), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1179), + [anon_sym_base] = ACTIONS(1323), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1181), - [anon_sym_unchecked] = ACTIONS(1167), + [sym_predefined_type] = ACTIONS(91), + [anon_sym_unchecked] = ACTIONS(1317), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1183), - [anon_sym_throw] = ACTIONS(1185), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(1747), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1187), - [anon_sym_DOT_DOT] = ACTIONS(1189), + [anon_sym_await] = ACTIONS(1749), + [anon_sym_DOT_DOT] = ACTIONS(1751), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -318565,19 +315747,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1191), - [anon_sym_sizeof] = ACTIONS(1193), - [anon_sym_typeof] = ACTIONS(1195), - [anon_sym___makeref] = ACTIONS(1197), - [anon_sym___reftype] = ACTIONS(1199), - [anon_sym___refvalue] = ACTIONS(1201), - [sym_null_literal] = ACTIONS(1203), - [anon_sym_SQUOTE] = ACTIONS(1205), - [sym_integer_literal] = ACTIONS(1203), - [sym_real_literal] = ACTIONS(1207), - [anon_sym_DQUOTE] = ACTIONS(1209), - [sym_verbatim_string_literal] = ACTIONS(1207), - [aux_sym_preproc_if_token1] = ACTIONS(1211), + [anon_sym_stackalloc] = ACTIONS(1331), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(1333), + [anon_sym___reftype] = ACTIONS(1335), + [anon_sym___refvalue] = ACTIONS(1337), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_literal] = ACTIONS(143), + [anon_sym_DQUOTE] = ACTIONS(145), + [sym_verbatim_string_literal] = ACTIONS(143), + [aux_sym_preproc_if_token1] = ACTIONS(1753), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -318588,140 +315770,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(1213), - [sym_interpolation_verbatim_start] = ACTIONS(1215), - [sym_interpolation_raw_start] = ACTIONS(1217), - [sym_raw_string_start] = ACTIONS(1219), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [sym_interpolation_raw_start] = ACTIONS(155), + [sym_raw_string_start] = ACTIONS(157), }, - [1638] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2420), - [sym__name] = STATE(5887), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2197), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(4095), - [sym_non_lvalue_expression] = STATE(3066), - [sym_lvalue_expression] = STATE(3120), - [sym__expression_statement_expression] = STATE(3006), - [sym_assignment_expression] = STATE(3020), - [sym_binary_expression] = STATE(3006), - [sym_postfix_unary_expression] = STATE(3020), - [sym_prefix_unary_expression] = STATE(3020), - [sym__pointer_indirection_expression] = STATE(2423), - [sym_query_expression] = STATE(3006), - [sym_from_clause] = STATE(6152), - [sym_conditional_expression] = STATE(3006), - [sym_conditional_access_expression] = STATE(3006), - [sym_as_expression] = STATE(3006), - [sym_is_expression] = STATE(3006), - [sym_is_pattern_expression] = STATE(3006), - [sym_cast_expression] = STATE(3006), - [sym_checked_expression] = STATE(3006), - [sym_invocation_expression] = STATE(3020), - [sym_switch_expression] = STATE(3006), - [sym_await_expression] = STATE(3020), - [sym_throw_expression] = STATE(3006), - [sym_element_access_expression] = STATE(2423), - [sym_interpolated_string_expression] = STATE(3006), - [sym_member_access_expression] = STATE(2423), - [sym_object_creation_expression] = STATE(3020), - [sym_parenthesized_expression] = STATE(3020), - [sym__parenthesized_lvalue_expression] = STATE(2423), - [sym_lambda_expression] = STATE(3006), - [sym__lambda_expression_init] = STATE(7722), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3006), - [sym_anonymous_method_expression] = STATE(3006), - [sym_anonymous_object_creation_expression] = STATE(3006), - [sym_implicit_array_creation_expression] = STATE(3006), - [sym_implicit_object_creation_expression] = STATE(3006), - [sym_implicit_stackalloc_expression] = STATE(3006), - [sym_initializer_expression] = STATE(3006), - [sym_default_expression] = STATE(3006), - [sym_with_expression] = STATE(3006), - [sym_sizeof_expression] = STATE(3006), - [sym_typeof_expression] = STATE(3006), - [sym_makeref_expression] = STATE(3006), - [sym_ref_expression] = STATE(3006), - [sym_reftype_expression] = STATE(3006), - [sym_refvalue_expression] = STATE(3006), - [sym_stackalloc_expression] = STATE(3006), - [sym_range_expression] = STATE(3006), - [sym_tuple_expression] = STATE(2423), - [sym_literal] = STATE(3006), - [sym_character_literal] = STATE(3011), - [sym_string_literal] = STATE(3011), - [sym_raw_string_literal] = STATE(3011), - [sym_boolean_literal] = STATE(3011), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3006), - [sym_preproc_if_in_attribute_list] = STATE(5576), - [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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3440), + [1622] = { + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2816), + [sym__name] = STATE(5873), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2196), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(5103), + [sym_non_lvalue_expression] = STATE(3495), + [sym_lvalue_expression] = STATE(3525), + [sym__expression_statement_expression] = STATE(3462), + [sym_assignment_expression] = STATE(3497), + [sym_binary_expression] = STATE(3462), + [sym_postfix_unary_expression] = STATE(3497), + [sym_prefix_unary_expression] = STATE(3497), + [sym__pointer_indirection_expression] = STATE(2815), + [sym_query_expression] = STATE(3462), + [sym_from_clause] = STATE(6155), + [sym_conditional_expression] = STATE(3462), + [sym_conditional_access_expression] = STATE(3462), + [sym_as_expression] = STATE(3462), + [sym_is_expression] = STATE(3462), + [sym_is_pattern_expression] = STATE(3462), + [sym_cast_expression] = STATE(3462), + [sym_checked_expression] = STATE(3462), + [sym_invocation_expression] = STATE(3497), + [sym_switch_expression] = STATE(3462), + [sym_await_expression] = STATE(3497), + [sym_throw_expression] = STATE(3462), + [sym_element_access_expression] = STATE(2815), + [sym_interpolated_string_expression] = STATE(3462), + [sym_member_access_expression] = STATE(2815), + [sym_object_creation_expression] = STATE(3497), + [sym_parenthesized_expression] = STATE(3497), + [sym__parenthesized_lvalue_expression] = STATE(2815), + [sym_lambda_expression] = STATE(3462), + [sym__lambda_expression_init] = STATE(7427), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3462), + [sym_anonymous_method_expression] = STATE(3462), + [sym_anonymous_object_creation_expression] = STATE(3462), + [sym_implicit_array_creation_expression] = STATE(3462), + [sym_implicit_object_creation_expression] = STATE(3462), + [sym_implicit_stackalloc_expression] = STATE(3462), + [sym_initializer_expression] = STATE(3462), + [sym_default_expression] = STATE(3462), + [sym_with_expression] = STATE(3462), + [sym_sizeof_expression] = STATE(3462), + [sym_typeof_expression] = STATE(3462), + [sym_makeref_expression] = STATE(3462), + [sym_ref_expression] = STATE(3462), + [sym_reftype_expression] = STATE(3462), + [sym_refvalue_expression] = STATE(3462), + [sym_stackalloc_expression] = STATE(3462), + [sym_range_expression] = STATE(3462), + [sym_tuple_expression] = STATE(2815), + [sym_literal] = STATE(3462), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3462), + [sym_preproc_if_in_attribute_list] = STATE(5583), + [sym_preproc_region] = STATE(1622), + [sym_preproc_endregion] = STATE(1622), + [sym_preproc_line] = STATE(1622), + [sym_preproc_pragma] = STATE(1622), + [sym_preproc_nullable] = STATE(1622), + [sym_preproc_error] = STATE(1622), + [sym_preproc_warning] = STATE(1622), + [sym_preproc_define] = STATE(1622), + [sym_preproc_undef] = STATE(1622), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3367), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1241), - [anon_sym_LPAREN] = ACTIONS(1243), - [anon_sym_ref] = ACTIONS(1245), - [anon_sym_LBRACE] = ACTIONS(1247), - [anon_sym_delegate] = ACTIONS(1249), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1305), + [anon_sym_LPAREN] = ACTIONS(1737), + [anon_sym_ref] = ACTIONS(1739), + [anon_sym_LBRACE] = ACTIONS(1311), + [anon_sym_delegate] = ACTIONS(1313), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1251), + [anon_sym_new] = ACTIONS(1741), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1253), - [anon_sym_BANG] = ACTIONS(1257), - [anon_sym_TILDE] = ACTIONS(1257), - [anon_sym_PLUS_PLUS] = ACTIONS(1257), - [anon_sym_DASH_DASH] = ACTIONS(1257), - [anon_sym_true] = ACTIONS(1259), - [anon_sym_false] = ACTIONS(1259), - [anon_sym_PLUS] = ACTIONS(1255), - [anon_sym_DASH] = ACTIONS(1255), - [anon_sym_STAR] = ACTIONS(1261), - [anon_sym_CARET] = ACTIONS(1257), - [anon_sym_AMP] = ACTIONS(1257), - [anon_sym_this] = ACTIONS(1263), + [anon_sym_checked] = ACTIONS(1317), + [anon_sym_BANG] = ACTIONS(1745), + [anon_sym_TILDE] = ACTIONS(1745), + [anon_sym_PLUS_PLUS] = ACTIONS(1745), + [anon_sym_DASH_DASH] = ACTIONS(1745), + [anon_sym_true] = ACTIONS(77), + [anon_sym_false] = ACTIONS(77), + [anon_sym_PLUS] = ACTIONS(1743), + [anon_sym_DASH] = ACTIONS(1743), + [anon_sym_STAR] = ACTIONS(1377), + [anon_sym_CARET] = ACTIONS(1745), + [anon_sym_AMP] = ACTIONS(1745), + [anon_sym_this] = ACTIONS(1321), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1265), + [anon_sym_base] = ACTIONS(1323), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1267), - [anon_sym_unchecked] = ACTIONS(1253), + [sym_predefined_type] = ACTIONS(91), + [anon_sym_unchecked] = ACTIONS(1317), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1269), - [anon_sym_throw] = ACTIONS(1271), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(1747), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1273), - [anon_sym_DOT_DOT] = ACTIONS(1275), + [anon_sym_await] = ACTIONS(1749), + [anon_sym_DOT_DOT] = ACTIONS(1751), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -318734,19 +315916,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1277), - [anon_sym_sizeof] = ACTIONS(1279), - [anon_sym_typeof] = ACTIONS(1281), - [anon_sym___makeref] = ACTIONS(1283), - [anon_sym___reftype] = ACTIONS(1285), - [anon_sym___refvalue] = ACTIONS(1287), - [sym_null_literal] = ACTIONS(1289), - [anon_sym_SQUOTE] = ACTIONS(1291), - [sym_integer_literal] = ACTIONS(1289), - [sym_real_literal] = ACTIONS(1293), - [anon_sym_DQUOTE] = ACTIONS(1295), - [sym_verbatim_string_literal] = ACTIONS(1293), - [aux_sym_preproc_if_token1] = ACTIONS(1297), + [anon_sym_stackalloc] = ACTIONS(1331), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(1333), + [anon_sym___reftype] = ACTIONS(1335), + [anon_sym___refvalue] = ACTIONS(1337), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_literal] = ACTIONS(143), + [anon_sym_DQUOTE] = ACTIONS(145), + [sym_verbatim_string_literal] = ACTIONS(143), + [aux_sym_preproc_if_token1] = ACTIONS(1753), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -318757,140 +315939,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(1299), - [sym_interpolation_verbatim_start] = ACTIONS(1301), - [sym_interpolation_raw_start] = ACTIONS(1303), - [sym_raw_string_start] = ACTIONS(1305), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [sym_interpolation_raw_start] = ACTIONS(155), + [sym_raw_string_start] = ACTIONS(157), }, - [1639] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(5910), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2247), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(5381), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3379), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3080), - [sym_postfix_unary_expression] = STATE(3111), - [sym_prefix_unary_expression] = STATE(3111), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6154), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3080), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3111), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3080), - [sym_member_access_expression] = STATE(2484), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3111), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7575), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(3080), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3080), - [sym_typeof_expression] = STATE(3080), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2484), - [sym_literal] = STATE(3080), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), - [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(3067), + [1623] = { + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2816), + [sym__name] = STATE(5873), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2196), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(5104), + [sym_non_lvalue_expression] = STATE(3495), + [sym_lvalue_expression] = STATE(3525), + [sym__expression_statement_expression] = STATE(3462), + [sym_assignment_expression] = STATE(3497), + [sym_binary_expression] = STATE(3462), + [sym_postfix_unary_expression] = STATE(3497), + [sym_prefix_unary_expression] = STATE(3497), + [sym__pointer_indirection_expression] = STATE(2815), + [sym_query_expression] = STATE(3462), + [sym_from_clause] = STATE(6155), + [sym_conditional_expression] = STATE(3462), + [sym_conditional_access_expression] = STATE(3462), + [sym_as_expression] = STATE(3462), + [sym_is_expression] = STATE(3462), + [sym_is_pattern_expression] = STATE(3462), + [sym_cast_expression] = STATE(3462), + [sym_checked_expression] = STATE(3462), + [sym_invocation_expression] = STATE(3497), + [sym_switch_expression] = STATE(3462), + [sym_await_expression] = STATE(3497), + [sym_throw_expression] = STATE(3462), + [sym_element_access_expression] = STATE(2815), + [sym_interpolated_string_expression] = STATE(3462), + [sym_member_access_expression] = STATE(2815), + [sym_object_creation_expression] = STATE(3497), + [sym_parenthesized_expression] = STATE(3497), + [sym__parenthesized_lvalue_expression] = STATE(2815), + [sym_lambda_expression] = STATE(3462), + [sym__lambda_expression_init] = STATE(7427), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3462), + [sym_anonymous_method_expression] = STATE(3462), + [sym_anonymous_object_creation_expression] = STATE(3462), + [sym_implicit_array_creation_expression] = STATE(3462), + [sym_implicit_object_creation_expression] = STATE(3462), + [sym_implicit_stackalloc_expression] = STATE(3462), + [sym_initializer_expression] = STATE(3462), + [sym_default_expression] = STATE(3462), + [sym_with_expression] = STATE(3462), + [sym_sizeof_expression] = STATE(3462), + [sym_typeof_expression] = STATE(3462), + [sym_makeref_expression] = STATE(3462), + [sym_ref_expression] = STATE(3462), + [sym_reftype_expression] = STATE(3462), + [sym_refvalue_expression] = STATE(3462), + [sym_stackalloc_expression] = STATE(3462), + [sym_range_expression] = STATE(3462), + [sym_tuple_expression] = STATE(2815), + [sym_literal] = STATE(3462), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3462), + [sym_preproc_if_in_attribute_list] = STATE(5583), + [sym_preproc_region] = STATE(1623), + [sym_preproc_endregion] = STATE(1623), + [sym_preproc_line] = STATE(1623), + [sym_preproc_pragma] = STATE(1623), + [sym_preproc_nullable] = STATE(1623), + [sym_preproc_error] = STATE(1623), + [sym_preproc_warning] = STATE(1623), + [sym_preproc_define] = STATE(1623), + [sym_preproc_undef] = STATE(1623), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), [aux_sym__lambda_expression_init_repeat1] = STATE(3367), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1481), - [anon_sym_LPAREN] = ACTIONS(895), - [anon_sym_ref] = ACTIONS(897), - [anon_sym_LBRACE] = ACTIONS(1487), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1305), + [anon_sym_LPAREN] = ACTIONS(1737), + [anon_sym_ref] = ACTIONS(1739), + [anon_sym_LBRACE] = ACTIONS(1311), + [anon_sym_delegate] = ACTIONS(1313), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1061), + [anon_sym_new] = ACTIONS(1741), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1067), - [anon_sym_BANG] = ACTIONS(1495), - [anon_sym_TILDE] = ACTIONS(1495), - [anon_sym_PLUS_PLUS] = ACTIONS(1495), - [anon_sym_DASH_DASH] = ACTIONS(1495), + [anon_sym_checked] = ACTIONS(1317), + [anon_sym_BANG] = ACTIONS(1745), + [anon_sym_TILDE] = ACTIONS(1745), + [anon_sym_PLUS_PLUS] = ACTIONS(1745), + [anon_sym_DASH_DASH] = ACTIONS(1745), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1493), - [anon_sym_DASH] = ACTIONS(1493), - [anon_sym_STAR] = ACTIONS(905), - [anon_sym_CARET] = ACTIONS(1495), - [anon_sym_AMP] = ACTIONS(1495), - [anon_sym_this] = ACTIONS(83), + [anon_sym_PLUS] = ACTIONS(1743), + [anon_sym_DASH] = ACTIONS(1743), + [anon_sym_STAR] = ACTIONS(1377), + [anon_sym_CARET] = ACTIONS(1745), + [anon_sym_AMP] = ACTIONS(1745), + [anon_sym_this] = ACTIONS(1321), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), + [anon_sym_base] = ACTIONS(1323), [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1067), + [anon_sym_unchecked] = ACTIONS(1317), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1079), + [anon_sym_throw] = ACTIONS(1747), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1081), - [anon_sym_DOT_DOT] = ACTIONS(911), + [anon_sym_await] = ACTIONS(1749), + [anon_sym_DOT_DOT] = ACTIONS(1751), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -318903,19 +316085,19 @@ static const uint16_t ts_parse_table[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(1331), [anon_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(1333), + [anon_sym___reftype] = ACTIONS(1335), + [anon_sym___refvalue] = ACTIONS(1337), [sym_null_literal] = ACTIONS(139), [anon_sym_SQUOTE] = ACTIONS(141), [sym_integer_literal] = ACTIONS(139), [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1089), + [aux_sym_preproc_if_token1] = ACTIONS(1753), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -318931,135 +316113,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), }, - [1640] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(5910), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2247), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(5382), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3379), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3080), - [sym_postfix_unary_expression] = STATE(3111), - [sym_prefix_unary_expression] = STATE(3111), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6154), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3080), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3111), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3080), - [sym_member_access_expression] = STATE(2484), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3111), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7575), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(3080), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3080), - [sym_typeof_expression] = STATE(3080), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2484), - [sym_literal] = STATE(3080), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), - [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(3067), + [1624] = { + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2816), + [sym__name] = STATE(5873), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2196), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(5105), + [sym_non_lvalue_expression] = STATE(3495), + [sym_lvalue_expression] = STATE(3525), + [sym__expression_statement_expression] = STATE(3462), + [sym_assignment_expression] = STATE(3497), + [sym_binary_expression] = STATE(3462), + [sym_postfix_unary_expression] = STATE(3497), + [sym_prefix_unary_expression] = STATE(3497), + [sym__pointer_indirection_expression] = STATE(2815), + [sym_query_expression] = STATE(3462), + [sym_from_clause] = STATE(6155), + [sym_conditional_expression] = STATE(3462), + [sym_conditional_access_expression] = STATE(3462), + [sym_as_expression] = STATE(3462), + [sym_is_expression] = STATE(3462), + [sym_is_pattern_expression] = STATE(3462), + [sym_cast_expression] = STATE(3462), + [sym_checked_expression] = STATE(3462), + [sym_invocation_expression] = STATE(3497), + [sym_switch_expression] = STATE(3462), + [sym_await_expression] = STATE(3497), + [sym_throw_expression] = STATE(3462), + [sym_element_access_expression] = STATE(2815), + [sym_interpolated_string_expression] = STATE(3462), + [sym_member_access_expression] = STATE(2815), + [sym_object_creation_expression] = STATE(3497), + [sym_parenthesized_expression] = STATE(3497), + [sym__parenthesized_lvalue_expression] = STATE(2815), + [sym_lambda_expression] = STATE(3462), + [sym__lambda_expression_init] = STATE(7427), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3462), + [sym_anonymous_method_expression] = STATE(3462), + [sym_anonymous_object_creation_expression] = STATE(3462), + [sym_implicit_array_creation_expression] = STATE(3462), + [sym_implicit_object_creation_expression] = STATE(3462), + [sym_implicit_stackalloc_expression] = STATE(3462), + [sym_initializer_expression] = STATE(3462), + [sym_default_expression] = STATE(3462), + [sym_with_expression] = STATE(3462), + [sym_sizeof_expression] = STATE(3462), + [sym_typeof_expression] = STATE(3462), + [sym_makeref_expression] = STATE(3462), + [sym_ref_expression] = STATE(3462), + [sym_reftype_expression] = STATE(3462), + [sym_refvalue_expression] = STATE(3462), + [sym_stackalloc_expression] = STATE(3462), + [sym_range_expression] = STATE(3462), + [sym_tuple_expression] = STATE(2815), + [sym_literal] = STATE(3462), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3462), + [sym_preproc_if_in_attribute_list] = STATE(5583), + [sym_preproc_region] = STATE(1624), + [sym_preproc_endregion] = STATE(1624), + [sym_preproc_line] = STATE(1624), + [sym_preproc_pragma] = STATE(1624), + [sym_preproc_nullable] = STATE(1624), + [sym_preproc_error] = STATE(1624), + [sym_preproc_warning] = STATE(1624), + [sym_preproc_define] = STATE(1624), + [sym_preproc_undef] = STATE(1624), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), [aux_sym__lambda_expression_init_repeat1] = STATE(3367), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1481), - [anon_sym_LPAREN] = ACTIONS(895), - [anon_sym_ref] = ACTIONS(897), - [anon_sym_LBRACE] = ACTIONS(1487), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1305), + [anon_sym_LPAREN] = ACTIONS(1737), + [anon_sym_ref] = ACTIONS(1739), + [anon_sym_LBRACE] = ACTIONS(1311), + [anon_sym_delegate] = ACTIONS(1313), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1061), + [anon_sym_new] = ACTIONS(1741), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1067), - [anon_sym_BANG] = ACTIONS(1495), - [anon_sym_TILDE] = ACTIONS(1495), - [anon_sym_PLUS_PLUS] = ACTIONS(1495), - [anon_sym_DASH_DASH] = ACTIONS(1495), + [anon_sym_checked] = ACTIONS(1317), + [anon_sym_BANG] = ACTIONS(1745), + [anon_sym_TILDE] = ACTIONS(1745), + [anon_sym_PLUS_PLUS] = ACTIONS(1745), + [anon_sym_DASH_DASH] = ACTIONS(1745), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1493), - [anon_sym_DASH] = ACTIONS(1493), - [anon_sym_STAR] = ACTIONS(905), - [anon_sym_CARET] = ACTIONS(1495), - [anon_sym_AMP] = ACTIONS(1495), - [anon_sym_this] = ACTIONS(83), + [anon_sym_PLUS] = ACTIONS(1743), + [anon_sym_DASH] = ACTIONS(1743), + [anon_sym_STAR] = ACTIONS(1377), + [anon_sym_CARET] = ACTIONS(1745), + [anon_sym_AMP] = ACTIONS(1745), + [anon_sym_this] = ACTIONS(1321), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), + [anon_sym_base] = ACTIONS(1323), [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1067), + [anon_sym_unchecked] = ACTIONS(1317), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1079), + [anon_sym_throw] = ACTIONS(1747), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1081), - [anon_sym_DOT_DOT] = ACTIONS(911), + [anon_sym_await] = ACTIONS(1749), + [anon_sym_DOT_DOT] = ACTIONS(1751), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -319072,19 +316254,19 @@ static const uint16_t ts_parse_table[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(1331), [anon_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(1333), + [anon_sym___reftype] = ACTIONS(1335), + [anon_sym___refvalue] = ACTIONS(1337), [sym_null_literal] = ACTIONS(139), [anon_sym_SQUOTE] = ACTIONS(141), [sym_integer_literal] = ACTIONS(139), [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1089), + [aux_sym_preproc_if_token1] = ACTIONS(1753), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -319100,135 +316282,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), }, - [1641] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(5910), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2247), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(5383), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3379), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3080), - [sym_postfix_unary_expression] = STATE(3111), - [sym_prefix_unary_expression] = STATE(3111), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6154), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3080), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3111), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3080), - [sym_member_access_expression] = STATE(2484), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3111), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7575), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(3080), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3080), - [sym_typeof_expression] = STATE(3080), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2484), - [sym_literal] = STATE(3080), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), - [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(3067), + [1625] = { + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2816), + [sym__name] = STATE(5873), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2196), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(4984), + [sym_non_lvalue_expression] = STATE(3495), + [sym_lvalue_expression] = STATE(3525), + [sym__expression_statement_expression] = STATE(3462), + [sym_assignment_expression] = STATE(3497), + [sym_binary_expression] = STATE(3462), + [sym_postfix_unary_expression] = STATE(3497), + [sym_prefix_unary_expression] = STATE(3497), + [sym__pointer_indirection_expression] = STATE(2815), + [sym_query_expression] = STATE(3462), + [sym_from_clause] = STATE(6155), + [sym_conditional_expression] = STATE(3462), + [sym_conditional_access_expression] = STATE(3462), + [sym_as_expression] = STATE(3462), + [sym_is_expression] = STATE(3462), + [sym_is_pattern_expression] = STATE(3462), + [sym_cast_expression] = STATE(3462), + [sym_checked_expression] = STATE(3462), + [sym_invocation_expression] = STATE(3497), + [sym_switch_expression] = STATE(3462), + [sym_await_expression] = STATE(3497), + [sym_throw_expression] = STATE(3462), + [sym_element_access_expression] = STATE(2815), + [sym_interpolated_string_expression] = STATE(3462), + [sym_member_access_expression] = STATE(2815), + [sym_object_creation_expression] = STATE(3497), + [sym_parenthesized_expression] = STATE(3497), + [sym__parenthesized_lvalue_expression] = STATE(2815), + [sym_lambda_expression] = STATE(3462), + [sym__lambda_expression_init] = STATE(7427), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3462), + [sym_anonymous_method_expression] = STATE(3462), + [sym_anonymous_object_creation_expression] = STATE(3462), + [sym_implicit_array_creation_expression] = STATE(3462), + [sym_implicit_object_creation_expression] = STATE(3462), + [sym_implicit_stackalloc_expression] = STATE(3462), + [sym_initializer_expression] = STATE(3462), + [sym_default_expression] = STATE(3462), + [sym_with_expression] = STATE(3462), + [sym_sizeof_expression] = STATE(3462), + [sym_typeof_expression] = STATE(3462), + [sym_makeref_expression] = STATE(3462), + [sym_ref_expression] = STATE(3462), + [sym_reftype_expression] = STATE(3462), + [sym_refvalue_expression] = STATE(3462), + [sym_stackalloc_expression] = STATE(3462), + [sym_range_expression] = STATE(3462), + [sym_tuple_expression] = STATE(2815), + [sym_literal] = STATE(3462), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3462), + [sym_preproc_if_in_attribute_list] = STATE(5583), + [sym_preproc_region] = STATE(1625), + [sym_preproc_endregion] = STATE(1625), + [sym_preproc_line] = STATE(1625), + [sym_preproc_pragma] = STATE(1625), + [sym_preproc_nullable] = STATE(1625), + [sym_preproc_error] = STATE(1625), + [sym_preproc_warning] = STATE(1625), + [sym_preproc_define] = STATE(1625), + [sym_preproc_undef] = STATE(1625), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), [aux_sym__lambda_expression_init_repeat1] = STATE(3367), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1481), - [anon_sym_LPAREN] = ACTIONS(895), - [anon_sym_ref] = ACTIONS(897), - [anon_sym_LBRACE] = ACTIONS(1487), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1305), + [anon_sym_LPAREN] = ACTIONS(1737), + [anon_sym_ref] = ACTIONS(1739), + [anon_sym_LBRACE] = ACTIONS(1311), + [anon_sym_delegate] = ACTIONS(1313), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1061), + [anon_sym_new] = ACTIONS(1741), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1067), - [anon_sym_BANG] = ACTIONS(1495), - [anon_sym_TILDE] = ACTIONS(1495), - [anon_sym_PLUS_PLUS] = ACTIONS(1495), - [anon_sym_DASH_DASH] = ACTIONS(1495), + [anon_sym_checked] = ACTIONS(1317), + [anon_sym_BANG] = ACTIONS(1745), + [anon_sym_TILDE] = ACTIONS(1745), + [anon_sym_PLUS_PLUS] = ACTIONS(1745), + [anon_sym_DASH_DASH] = ACTIONS(1745), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1493), - [anon_sym_DASH] = ACTIONS(1493), - [anon_sym_STAR] = ACTIONS(905), - [anon_sym_CARET] = ACTIONS(1495), - [anon_sym_AMP] = ACTIONS(1495), - [anon_sym_this] = ACTIONS(83), + [anon_sym_PLUS] = ACTIONS(1743), + [anon_sym_DASH] = ACTIONS(1743), + [anon_sym_STAR] = ACTIONS(1377), + [anon_sym_CARET] = ACTIONS(1745), + [anon_sym_AMP] = ACTIONS(1745), + [anon_sym_this] = ACTIONS(1321), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), + [anon_sym_base] = ACTIONS(1323), [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1067), + [anon_sym_unchecked] = ACTIONS(1317), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1079), + [anon_sym_throw] = ACTIONS(1747), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1081), - [anon_sym_DOT_DOT] = ACTIONS(911), + [anon_sym_await] = ACTIONS(1749), + [anon_sym_DOT_DOT] = ACTIONS(1751), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -319241,19 +316423,19 @@ static const uint16_t ts_parse_table[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(1331), [anon_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(1333), + [anon_sym___reftype] = ACTIONS(1335), + [anon_sym___refvalue] = ACTIONS(1337), [sym_null_literal] = ACTIONS(139), [anon_sym_SQUOTE] = ACTIONS(141), [sym_integer_literal] = ACTIONS(139), [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1089), + [aux_sym_preproc_if_token1] = ACTIONS(1753), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -319269,135 +316451,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), }, - [1642] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(5160), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2204), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(5384), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3461), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3080), - [sym_postfix_unary_expression] = STATE(3111), - [sym_prefix_unary_expression] = STATE(3111), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6154), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3080), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3111), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3080), - [sym_member_access_expression] = STATE(2484), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3111), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7547), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(3080), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3080), - [sym_typeof_expression] = STATE(3080), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2484), - [sym_literal] = STATE(3080), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), - [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(3067), + [1626] = { + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2816), + [sym__name] = STATE(5873), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2196), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(4985), + [sym_non_lvalue_expression] = STATE(3495), + [sym_lvalue_expression] = STATE(3525), + [sym__expression_statement_expression] = STATE(3462), + [sym_assignment_expression] = STATE(3497), + [sym_binary_expression] = STATE(3462), + [sym_postfix_unary_expression] = STATE(3497), + [sym_prefix_unary_expression] = STATE(3497), + [sym__pointer_indirection_expression] = STATE(2815), + [sym_query_expression] = STATE(3462), + [sym_from_clause] = STATE(6155), + [sym_conditional_expression] = STATE(3462), + [sym_conditional_access_expression] = STATE(3462), + [sym_as_expression] = STATE(3462), + [sym_is_expression] = STATE(3462), + [sym_is_pattern_expression] = STATE(3462), + [sym_cast_expression] = STATE(3462), + [sym_checked_expression] = STATE(3462), + [sym_invocation_expression] = STATE(3497), + [sym_switch_expression] = STATE(3462), + [sym_await_expression] = STATE(3497), + [sym_throw_expression] = STATE(3462), + [sym_element_access_expression] = STATE(2815), + [sym_interpolated_string_expression] = STATE(3462), + [sym_member_access_expression] = STATE(2815), + [sym_object_creation_expression] = STATE(3497), + [sym_parenthesized_expression] = STATE(3497), + [sym__parenthesized_lvalue_expression] = STATE(2815), + [sym_lambda_expression] = STATE(3462), + [sym__lambda_expression_init] = STATE(7427), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3462), + [sym_anonymous_method_expression] = STATE(3462), + [sym_anonymous_object_creation_expression] = STATE(3462), + [sym_implicit_array_creation_expression] = STATE(3462), + [sym_implicit_object_creation_expression] = STATE(3462), + [sym_implicit_stackalloc_expression] = STATE(3462), + [sym_initializer_expression] = STATE(3462), + [sym_default_expression] = STATE(3462), + [sym_with_expression] = STATE(3462), + [sym_sizeof_expression] = STATE(3462), + [sym_typeof_expression] = STATE(3462), + [sym_makeref_expression] = STATE(3462), + [sym_ref_expression] = STATE(3462), + [sym_reftype_expression] = STATE(3462), + [sym_refvalue_expression] = STATE(3462), + [sym_stackalloc_expression] = STATE(3462), + [sym_range_expression] = STATE(3462), + [sym_tuple_expression] = STATE(2815), + [sym_literal] = STATE(3462), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3462), + [sym_preproc_if_in_attribute_list] = STATE(5583), + [sym_preproc_region] = STATE(1626), + [sym_preproc_endregion] = STATE(1626), + [sym_preproc_line] = STATE(1626), + [sym_preproc_pragma] = STATE(1626), + [sym_preproc_nullable] = STATE(1626), + [sym_preproc_error] = STATE(1626), + [sym_preproc_warning] = STATE(1626), + [sym_preproc_define] = STATE(1626), + [sym_preproc_undef] = STATE(1626), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), [aux_sym__lambda_expression_init_repeat1] = STATE(3367), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1481), - [anon_sym_LPAREN] = ACTIONS(1497), - [anon_sym_ref] = ACTIONS(1499), - [anon_sym_LBRACE] = ACTIONS(1487), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1305), + [anon_sym_LPAREN] = ACTIONS(1737), + [anon_sym_ref] = ACTIONS(1739), + [anon_sym_LBRACE] = ACTIONS(1311), + [anon_sym_delegate] = ACTIONS(1313), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1501), + [anon_sym_new] = ACTIONS(1741), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = 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_checked] = ACTIONS(1317), + [anon_sym_BANG] = ACTIONS(1745), + [anon_sym_TILDE] = ACTIONS(1745), + [anon_sym_PLUS_PLUS] = ACTIONS(1745), + [anon_sym_DASH_DASH] = ACTIONS(1745), [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(1743), + [anon_sym_DASH] = ACTIONS(1743), + [anon_sym_STAR] = ACTIONS(1377), + [anon_sym_CARET] = ACTIONS(1745), + [anon_sym_AMP] = ACTIONS(1745), + [anon_sym_this] = ACTIONS(1321), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), + [anon_sym_base] = ACTIONS(1323), [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1067), + [anon_sym_unchecked] = ACTIONS(1317), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1503), + [anon_sym_throw] = ACTIONS(1747), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1505), - [anon_sym_DOT_DOT] = ACTIONS(1507), + [anon_sym_await] = ACTIONS(1749), + [anon_sym_DOT_DOT] = ACTIONS(1751), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -319410,19 +316592,19 @@ static const uint16_t ts_parse_table[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(1331), [anon_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(1333), + [anon_sym___reftype] = ACTIONS(1335), + [anon_sym___refvalue] = ACTIONS(1337), [sym_null_literal] = ACTIONS(139), [anon_sym_SQUOTE] = ACTIONS(141), [sym_integer_literal] = ACTIONS(139), [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1089), + [aux_sym_preproc_if_token1] = ACTIONS(1753), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -319438,135 +316620,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), }, - [1643] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(5910), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2247), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(5403), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3379), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3080), - [sym_postfix_unary_expression] = STATE(3111), - [sym_prefix_unary_expression] = STATE(3111), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6154), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3080), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3111), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3080), - [sym_member_access_expression] = STATE(2484), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3111), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7575), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(3080), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3080), - [sym_typeof_expression] = STATE(3080), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2484), - [sym_literal] = STATE(3080), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), - [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(3067), + [1627] = { + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2816), + [sym__name] = STATE(5873), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2196), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(4834), + [sym_non_lvalue_expression] = STATE(3495), + [sym_lvalue_expression] = STATE(3525), + [sym__expression_statement_expression] = STATE(3462), + [sym_assignment_expression] = STATE(3497), + [sym_binary_expression] = STATE(3462), + [sym_postfix_unary_expression] = STATE(3497), + [sym_prefix_unary_expression] = STATE(3497), + [sym__pointer_indirection_expression] = STATE(2815), + [sym_query_expression] = STATE(3462), + [sym_from_clause] = STATE(6155), + [sym_conditional_expression] = STATE(3462), + [sym_conditional_access_expression] = STATE(3462), + [sym_as_expression] = STATE(3462), + [sym_is_expression] = STATE(3462), + [sym_is_pattern_expression] = STATE(3462), + [sym_cast_expression] = STATE(3462), + [sym_checked_expression] = STATE(3462), + [sym_invocation_expression] = STATE(3497), + [sym_switch_expression] = STATE(3462), + [sym_await_expression] = STATE(3497), + [sym_throw_expression] = STATE(3462), + [sym_element_access_expression] = STATE(2815), + [sym_interpolated_string_expression] = STATE(3462), + [sym_member_access_expression] = STATE(2815), + [sym_object_creation_expression] = STATE(3497), + [sym_parenthesized_expression] = STATE(3497), + [sym__parenthesized_lvalue_expression] = STATE(2815), + [sym_lambda_expression] = STATE(3462), + [sym__lambda_expression_init] = STATE(7427), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3462), + [sym_anonymous_method_expression] = STATE(3462), + [sym_anonymous_object_creation_expression] = STATE(3462), + [sym_implicit_array_creation_expression] = STATE(3462), + [sym_implicit_object_creation_expression] = STATE(3462), + [sym_implicit_stackalloc_expression] = STATE(3462), + [sym_initializer_expression] = STATE(3462), + [sym_default_expression] = STATE(3462), + [sym_with_expression] = STATE(3462), + [sym_sizeof_expression] = STATE(3462), + [sym_typeof_expression] = STATE(3462), + [sym_makeref_expression] = STATE(3462), + [sym_ref_expression] = STATE(3462), + [sym_reftype_expression] = STATE(3462), + [sym_refvalue_expression] = STATE(3462), + [sym_stackalloc_expression] = STATE(3462), + [sym_range_expression] = STATE(3462), + [sym_tuple_expression] = STATE(2815), + [sym_literal] = STATE(3462), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3462), + [sym_preproc_if_in_attribute_list] = STATE(5583), + [sym_preproc_region] = STATE(1627), + [sym_preproc_endregion] = STATE(1627), + [sym_preproc_line] = STATE(1627), + [sym_preproc_pragma] = STATE(1627), + [sym_preproc_nullable] = STATE(1627), + [sym_preproc_error] = STATE(1627), + [sym_preproc_warning] = STATE(1627), + [sym_preproc_define] = STATE(1627), + [sym_preproc_undef] = STATE(1627), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), [aux_sym__lambda_expression_init_repeat1] = STATE(3367), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1481), - [anon_sym_LPAREN] = ACTIONS(895), - [anon_sym_ref] = ACTIONS(897), - [anon_sym_LBRACE] = ACTIONS(1487), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1305), + [anon_sym_LPAREN] = ACTIONS(1737), + [anon_sym_ref] = ACTIONS(1739), + [anon_sym_LBRACE] = ACTIONS(1311), + [anon_sym_delegate] = ACTIONS(1313), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1061), + [anon_sym_new] = ACTIONS(1741), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1067), - [anon_sym_BANG] = ACTIONS(1495), - [anon_sym_TILDE] = ACTIONS(1495), - [anon_sym_PLUS_PLUS] = ACTIONS(1495), - [anon_sym_DASH_DASH] = ACTIONS(1495), + [anon_sym_checked] = ACTIONS(1317), + [anon_sym_BANG] = ACTIONS(1745), + [anon_sym_TILDE] = ACTIONS(1745), + [anon_sym_PLUS_PLUS] = ACTIONS(1745), + [anon_sym_DASH_DASH] = ACTIONS(1745), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1493), - [anon_sym_DASH] = ACTIONS(1493), - [anon_sym_STAR] = ACTIONS(905), - [anon_sym_CARET] = ACTIONS(1495), - [anon_sym_AMP] = ACTIONS(1495), - [anon_sym_this] = ACTIONS(83), + [anon_sym_PLUS] = ACTIONS(1743), + [anon_sym_DASH] = ACTIONS(1743), + [anon_sym_STAR] = ACTIONS(1377), + [anon_sym_CARET] = ACTIONS(1745), + [anon_sym_AMP] = ACTIONS(1745), + [anon_sym_this] = ACTIONS(1321), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), + [anon_sym_base] = ACTIONS(1323), [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1067), + [anon_sym_unchecked] = ACTIONS(1317), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1079), + [anon_sym_throw] = ACTIONS(1747), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1081), - [anon_sym_DOT_DOT] = ACTIONS(911), + [anon_sym_await] = ACTIONS(1749), + [anon_sym_DOT_DOT] = ACTIONS(1751), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -319579,19 +316761,19 @@ static const uint16_t ts_parse_table[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(1331), [anon_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(1333), + [anon_sym___reftype] = ACTIONS(1335), + [anon_sym___refvalue] = ACTIONS(1337), [sym_null_literal] = ACTIONS(139), [anon_sym_SQUOTE] = ACTIONS(141), [sym_integer_literal] = ACTIONS(139), [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1089), + [aux_sym_preproc_if_token1] = ACTIONS(1753), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -319607,135 +316789,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), }, - [1644] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(5910), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2247), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(5404), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3379), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3080), - [sym_postfix_unary_expression] = STATE(3111), - [sym_prefix_unary_expression] = STATE(3111), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6154), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3080), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3111), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3080), - [sym_member_access_expression] = STATE(2484), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3111), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7575), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(3080), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3080), - [sym_typeof_expression] = STATE(3080), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2484), - [sym_literal] = STATE(3080), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), - [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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [1628] = { + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(5881), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2386), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(4070), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3110), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3102), + [sym_postfix_unary_expression] = STATE(3079), + [sym_prefix_unary_expression] = STATE(3079), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6153), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3102), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3079), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3102), + [sym_member_access_expression] = STATE(2472), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3079), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7637), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(3102), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3102), + [sym_typeof_expression] = STATE(3102), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2472), + [sym_literal] = STATE(3102), + [sym_character_literal] = STATE(3037), + [sym_string_literal] = STATE(3037), + [sym_raw_string_literal] = STATE(3037), + [sym_boolean_literal] = STATE(3037), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), + [sym_preproc_region] = STATE(1628), + [sym_preproc_endregion] = STATE(1628), + [sym_preproc_line] = STATE(1628), + [sym_preproc_pragma] = STATE(1628), + [sym_preproc_nullable] = STATE(1628), + [sym_preproc_error] = STATE(1628), + [sym_preproc_warning] = STATE(1628), + [sym_preproc_define] = STATE(1628), + [sym_preproc_undef] = STATE(1628), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1481), - [anon_sym_LPAREN] = ACTIONS(895), - [anon_sym_ref] = ACTIONS(897), - [anon_sym_LBRACE] = ACTIONS(1487), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1479), + [anon_sym_LPAREN] = ACTIONS(1895), + [anon_sym_ref] = ACTIONS(1897), + [anon_sym_LBRACE] = ACTIONS(1481), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1061), + [anon_sym_new] = ACTIONS(1899), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1067), - [anon_sym_BANG] = ACTIONS(1495), - [anon_sym_TILDE] = ACTIONS(1495), - [anon_sym_PLUS_PLUS] = ACTIONS(1495), - [anon_sym_DASH_DASH] = ACTIONS(1495), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1493), - [anon_sym_DASH] = ACTIONS(1493), - [anon_sym_STAR] = ACTIONS(905), - [anon_sym_CARET] = ACTIONS(1495), - [anon_sym_AMP] = ACTIONS(1495), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(1903), + [anon_sym_TILDE] = ACTIONS(1903), + [anon_sym_PLUS_PLUS] = ACTIONS(1903), + [anon_sym_DASH_DASH] = ACTIONS(1903), + [anon_sym_true] = ACTIONS(1257), + [anon_sym_false] = ACTIONS(1257), + [anon_sym_PLUS] = ACTIONS(1901), + [anon_sym_DASH] = ACTIONS(1901), + [anon_sym_STAR] = ACTIONS(1905), + [anon_sym_CARET] = ACTIONS(1903), + [anon_sym_AMP] = ACTIONS(1903), [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(1067), + [sym_predefined_type] = ACTIONS(1265), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1079), + [anon_sym_default] = ACTIONS(1267), + [anon_sym_throw] = ACTIONS(1907), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1081), - [anon_sym_DOT_DOT] = ACTIONS(911), + [anon_sym_await] = ACTIONS(1909), + [anon_sym_DOT_DOT] = ACTIONS(1911), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -319749,18 +316931,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(129), - [anon_sym_typeof] = ACTIONS(131), + [anon_sym_sizeof] = ACTIONS(1277), + [anon_sym_typeof] = ACTIONS(1279), [anon_sym___makeref] = ACTIONS(133), [anon_sym___reftype] = ACTIONS(135), [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1089), + [sym_null_literal] = ACTIONS(1287), + [anon_sym_SQUOTE] = ACTIONS(1289), + [sym_integer_literal] = ACTIONS(1287), + [sym_real_literal] = ACTIONS(1291), + [anon_sym_DQUOTE] = ACTIONS(1293), + [sym_verbatim_string_literal] = ACTIONS(1291), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -319771,140 +316953,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(1297), + [sym_interpolation_verbatim_start] = ACTIONS(1299), + [sym_interpolation_raw_start] = ACTIONS(1301), + [sym_raw_string_start] = ACTIONS(1303), }, - [1645] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(5910), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2247), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(5406), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3379), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3080), - [sym_postfix_unary_expression] = STATE(3111), - [sym_prefix_unary_expression] = STATE(3111), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6154), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3080), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3111), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3080), - [sym_member_access_expression] = STATE(2484), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3111), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7575), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(3080), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3080), - [sym_typeof_expression] = STATE(3080), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2484), - [sym_literal] = STATE(3080), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), - [sym_preproc_region] = STATE(1645), - [sym_preproc_endregion] = STATE(1645), - [sym_preproc_line] = STATE(1645), - [sym_preproc_pragma] = STATE(1645), - [sym_preproc_nullable] = STATE(1645), - [sym_preproc_error] = STATE(1645), - [sym_preproc_warning] = STATE(1645), - [sym_preproc_define] = STATE(1645), - [sym_preproc_undef] = STATE(1645), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3067), + [1629] = { + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2816), + [sym__name] = STATE(5873), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2196), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(3214), + [sym_non_lvalue_expression] = STATE(3495), + [sym_lvalue_expression] = STATE(3525), + [sym__expression_statement_expression] = STATE(3462), + [sym_assignment_expression] = STATE(3497), + [sym_binary_expression] = STATE(3462), + [sym_postfix_unary_expression] = STATE(3497), + [sym_prefix_unary_expression] = STATE(3497), + [sym__pointer_indirection_expression] = STATE(2815), + [sym_query_expression] = STATE(3462), + [sym_from_clause] = STATE(6155), + [sym_conditional_expression] = STATE(3462), + [sym_conditional_access_expression] = STATE(3462), + [sym_as_expression] = STATE(3462), + [sym_is_expression] = STATE(3462), + [sym_is_pattern_expression] = STATE(3462), + [sym_cast_expression] = STATE(3462), + [sym_checked_expression] = STATE(3462), + [sym_invocation_expression] = STATE(3497), + [sym_switch_expression] = STATE(3462), + [sym_await_expression] = STATE(3497), + [sym_throw_expression] = STATE(3462), + [sym_element_access_expression] = STATE(2815), + [sym_interpolated_string_expression] = STATE(3462), + [sym_member_access_expression] = STATE(2815), + [sym_object_creation_expression] = STATE(3497), + [sym_parenthesized_expression] = STATE(3497), + [sym__parenthesized_lvalue_expression] = STATE(2815), + [sym_lambda_expression] = STATE(3462), + [sym__lambda_expression_init] = STATE(7427), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3462), + [sym_anonymous_method_expression] = STATE(3462), + [sym_anonymous_object_creation_expression] = STATE(3462), + [sym_implicit_array_creation_expression] = STATE(3462), + [sym_implicit_object_creation_expression] = STATE(3462), + [sym_implicit_stackalloc_expression] = STATE(3462), + [sym_initializer_expression] = STATE(3462), + [sym_default_expression] = STATE(3462), + [sym_with_expression] = STATE(3462), + [sym_sizeof_expression] = STATE(3462), + [sym_typeof_expression] = STATE(3462), + [sym_makeref_expression] = STATE(3462), + [sym_ref_expression] = STATE(3462), + [sym_reftype_expression] = STATE(3462), + [sym_refvalue_expression] = STATE(3462), + [sym_stackalloc_expression] = STATE(3462), + [sym_range_expression] = STATE(3462), + [sym_tuple_expression] = STATE(2815), + [sym_literal] = STATE(3462), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3462), + [sym_preproc_if_in_attribute_list] = STATE(5583), + [sym_preproc_region] = STATE(1629), + [sym_preproc_endregion] = STATE(1629), + [sym_preproc_line] = STATE(1629), + [sym_preproc_pragma] = STATE(1629), + [sym_preproc_nullable] = STATE(1629), + [sym_preproc_error] = STATE(1629), + [sym_preproc_warning] = STATE(1629), + [sym_preproc_define] = STATE(1629), + [sym_preproc_undef] = STATE(1629), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), [aux_sym__lambda_expression_init_repeat1] = STATE(3367), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1481), - [anon_sym_LPAREN] = ACTIONS(895), - [anon_sym_ref] = ACTIONS(897), - [anon_sym_LBRACE] = ACTIONS(1487), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1305), + [anon_sym_LPAREN] = ACTIONS(1737), + [anon_sym_ref] = ACTIONS(1739), + [anon_sym_LBRACE] = ACTIONS(1311), + [anon_sym_delegate] = ACTIONS(1313), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1061), + [anon_sym_new] = ACTIONS(1741), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1067), - [anon_sym_BANG] = ACTIONS(1495), - [anon_sym_TILDE] = ACTIONS(1495), - [anon_sym_PLUS_PLUS] = ACTIONS(1495), - [anon_sym_DASH_DASH] = ACTIONS(1495), + [anon_sym_checked] = ACTIONS(1317), + [anon_sym_BANG] = ACTIONS(1745), + [anon_sym_TILDE] = ACTIONS(1745), + [anon_sym_PLUS_PLUS] = ACTIONS(1745), + [anon_sym_DASH_DASH] = ACTIONS(1745), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1493), - [anon_sym_DASH] = ACTIONS(1493), - [anon_sym_STAR] = ACTIONS(905), - [anon_sym_CARET] = ACTIONS(1495), - [anon_sym_AMP] = ACTIONS(1495), - [anon_sym_this] = ACTIONS(83), + [anon_sym_PLUS] = ACTIONS(1743), + [anon_sym_DASH] = ACTIONS(1743), + [anon_sym_STAR] = ACTIONS(1377), + [anon_sym_CARET] = ACTIONS(1745), + [anon_sym_AMP] = ACTIONS(1745), + [anon_sym_this] = ACTIONS(1321), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), + [anon_sym_base] = ACTIONS(1323), [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1067), + [anon_sym_unchecked] = ACTIONS(1317), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1079), + [anon_sym_throw] = ACTIONS(1747), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1081), - [anon_sym_DOT_DOT] = ACTIONS(911), + [anon_sym_await] = ACTIONS(1749), + [anon_sym_DOT_DOT] = ACTIONS(1751), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -319917,19 +317099,19 @@ static const uint16_t ts_parse_table[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(1331), [anon_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(1333), + [anon_sym___reftype] = ACTIONS(1335), + [anon_sym___refvalue] = ACTIONS(1337), [sym_null_literal] = ACTIONS(139), [anon_sym_SQUOTE] = ACTIONS(141), [sym_integer_literal] = ACTIONS(139), [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1089), + [aux_sym_preproc_if_token1] = ACTIONS(1753), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -319945,135 +317127,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), }, - [1646] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2914), - [sym__name] = STATE(5885), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2357), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(3733), - [sym_non_lvalue_expression] = STATE(3880), - [sym_lvalue_expression] = STATE(2986), - [sym__expression_statement_expression] = STATE(3873), - [sym_assignment_expression] = STATE(3881), - [sym_binary_expression] = STATE(3873), - [sym_postfix_unary_expression] = STATE(3881), - [sym_prefix_unary_expression] = STATE(3881), - [sym__pointer_indirection_expression] = STATE(2913), - [sym_query_expression] = STATE(3873), - [sym_from_clause] = STATE(6168), - [sym_conditional_expression] = STATE(3873), - [sym_conditional_access_expression] = STATE(3873), - [sym_as_expression] = STATE(3873), - [sym_is_expression] = STATE(3873), - [sym_is_pattern_expression] = STATE(3873), - [sym_cast_expression] = STATE(3873), - [sym_checked_expression] = STATE(3873), - [sym_invocation_expression] = STATE(3881), - [sym_switch_expression] = STATE(3873), - [sym_await_expression] = STATE(3881), - [sym_throw_expression] = STATE(3873), - [sym_element_access_expression] = STATE(2913), - [sym_interpolated_string_expression] = STATE(3873), - [sym_member_access_expression] = STATE(2913), - [sym_object_creation_expression] = STATE(3881), - [sym_parenthesized_expression] = STATE(3881), - [sym__parenthesized_lvalue_expression] = STATE(2913), - [sym_lambda_expression] = STATE(3873), - [sym__lambda_expression_init] = STATE(7587), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3873), - [sym_anonymous_method_expression] = STATE(3873), - [sym_anonymous_object_creation_expression] = STATE(3873), - [sym_implicit_array_creation_expression] = STATE(3873), - [sym_implicit_object_creation_expression] = STATE(3873), - [sym_implicit_stackalloc_expression] = STATE(3873), - [sym_initializer_expression] = STATE(3873), - [sym_default_expression] = STATE(3873), - [sym_with_expression] = STATE(3873), - [sym_sizeof_expression] = STATE(3873), - [sym_typeof_expression] = STATE(3873), - [sym_makeref_expression] = STATE(3873), - [sym_ref_expression] = STATE(3873), - [sym_reftype_expression] = STATE(3873), - [sym_refvalue_expression] = STATE(3873), - [sym_stackalloc_expression] = STATE(3873), - [sym_range_expression] = STATE(3873), - [sym_tuple_expression] = STATE(2913), - [sym_literal] = STATE(3873), - [sym_character_literal] = STATE(3877), - [sym_string_literal] = STATE(3877), - [sym_raw_string_literal] = STATE(3877), - [sym_boolean_literal] = STATE(3877), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3873), - [sym_preproc_if_in_attribute_list] = STATE(5576), - [sym_preproc_region] = STATE(1646), - [sym_preproc_endregion] = STATE(1646), - [sym_preproc_line] = STATE(1646), - [sym_preproc_pragma] = STATE(1646), - [sym_preproc_nullable] = STATE(1646), - [sym_preproc_error] = STATE(1646), - [sym_preproc_warning] = STATE(1646), - [sym_preproc_define] = STATE(1646), - [sym_preproc_undef] = STATE(1646), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3382), + [1630] = { + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(5881), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2386), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(4100), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3110), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3102), + [sym_postfix_unary_expression] = STATE(3079), + [sym_prefix_unary_expression] = STATE(3079), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6153), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3102), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3079), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3102), + [sym_member_access_expression] = STATE(2472), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3079), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7637), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(3102), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3102), + [sym_typeof_expression] = STATE(3102), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2472), + [sym_literal] = STATE(3102), + [sym_character_literal] = STATE(3037), + [sym_string_literal] = STATE(3037), + [sym_raw_string_literal] = STATE(3037), + [sym_boolean_literal] = STATE(3037), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), + [sym_preproc_region] = STATE(1630), + [sym_preproc_endregion] = STATE(1630), + [sym_preproc_line] = STATE(1630), + [sym_preproc_pragma] = STATE(1630), + [sym_preproc_nullable] = STATE(1630), + [sym_preproc_error] = STATE(1630), + [sym_preproc_warning] = STATE(1630), + [sym_preproc_define] = STATE(1630), + [sym_preproc_undef] = STATE(1630), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1627), - [anon_sym_LPAREN] = ACTIONS(2079), - [anon_sym_ref] = ACTIONS(2081), - [anon_sym_LBRACE] = ACTIONS(1633), - [anon_sym_delegate] = ACTIONS(1635), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1479), + [anon_sym_LPAREN] = ACTIONS(1895), + [anon_sym_ref] = ACTIONS(1897), + [anon_sym_LBRACE] = ACTIONS(1481), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1731), + [anon_sym_new] = ACTIONS(1899), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1639), - [anon_sym_BANG] = ACTIONS(2085), - [anon_sym_TILDE] = ACTIONS(2085), - [anon_sym_PLUS_PLUS] = ACTIONS(2085), - [anon_sym_DASH_DASH] = ACTIONS(2085), - [anon_sym_true] = ACTIONS(1645), - [anon_sym_false] = ACTIONS(1645), - [anon_sym_PLUS] = ACTIONS(2083), - [anon_sym_DASH] = ACTIONS(2083), - [anon_sym_STAR] = ACTIONS(1737), - [anon_sym_CARET] = ACTIONS(2085), - [anon_sym_AMP] = ACTIONS(2085), - [anon_sym_this] = ACTIONS(1649), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(1903), + [anon_sym_TILDE] = ACTIONS(1903), + [anon_sym_PLUS_PLUS] = ACTIONS(1903), + [anon_sym_DASH_DASH] = ACTIONS(1903), + [anon_sym_true] = ACTIONS(1257), + [anon_sym_false] = ACTIONS(1257), + [anon_sym_PLUS] = ACTIONS(1901), + [anon_sym_DASH] = ACTIONS(1901), + [anon_sym_STAR] = ACTIONS(1905), + [anon_sym_CARET] = ACTIONS(1903), + [anon_sym_AMP] = ACTIONS(1903), + [anon_sym_this] = ACTIONS(83), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1651), + [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1653), - [anon_sym_unchecked] = ACTIONS(1639), + [sym_predefined_type] = ACTIONS(1265), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1655), - [anon_sym_throw] = ACTIONS(2087), + [anon_sym_default] = ACTIONS(1267), + [anon_sym_throw] = ACTIONS(1907), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2089), - [anon_sym_DOT_DOT] = ACTIONS(2091), + [anon_sym_await] = ACTIONS(1909), + [anon_sym_DOT_DOT] = ACTIONS(1911), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -320086,19 +317268,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1663), - [anon_sym_sizeof] = ACTIONS(1665), - [anon_sym_typeof] = ACTIONS(1667), - [anon_sym___makeref] = ACTIONS(1669), - [anon_sym___reftype] = ACTIONS(1671), - [anon_sym___refvalue] = ACTIONS(1673), - [sym_null_literal] = ACTIONS(1675), - [anon_sym_SQUOTE] = ACTIONS(1677), - [sym_integer_literal] = ACTIONS(1675), - [sym_real_literal] = ACTIONS(1679), - [anon_sym_DQUOTE] = ACTIONS(1681), - [sym_verbatim_string_literal] = ACTIONS(1679), - [aux_sym_preproc_if_token1] = ACTIONS(1683), + [anon_sym_stackalloc] = ACTIONS(127), + [anon_sym_sizeof] = ACTIONS(1277), + [anon_sym_typeof] = ACTIONS(1279), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), + [sym_null_literal] = ACTIONS(1287), + [anon_sym_SQUOTE] = ACTIONS(1289), + [sym_integer_literal] = ACTIONS(1287), + [sym_real_literal] = ACTIONS(1291), + [anon_sym_DQUOTE] = ACTIONS(1293), + [sym_verbatim_string_literal] = ACTIONS(1291), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -320109,140 +317291,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(1685), - [sym_interpolation_verbatim_start] = ACTIONS(1687), - [sym_interpolation_raw_start] = ACTIONS(1689), - [sym_raw_string_start] = ACTIONS(1691), + [sym_interpolation_regular_start] = ACTIONS(1297), + [sym_interpolation_verbatim_start] = ACTIONS(1299), + [sym_interpolation_raw_start] = ACTIONS(1301), + [sym_raw_string_start] = ACTIONS(1303), }, - [1647] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2610), - [sym__name] = STATE(5898), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2197), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(3850), - [sym_non_lvalue_expression] = STATE(3277), - [sym_lvalue_expression] = STATE(3023), - [sym__expression_statement_expression] = STATE(3228), - [sym_assignment_expression] = STATE(3289), - [sym_binary_expression] = STATE(3228), - [sym_postfix_unary_expression] = STATE(3289), - [sym_prefix_unary_expression] = STATE(3289), - [sym__pointer_indirection_expression] = STATE(2609), - [sym_query_expression] = STATE(3228), - [sym_from_clause] = STATE(6172), - [sym_conditional_expression] = STATE(3228), - [sym_conditional_access_expression] = STATE(3228), - [sym_as_expression] = STATE(3228), - [sym_is_expression] = STATE(3228), - [sym_is_pattern_expression] = STATE(3228), - [sym_cast_expression] = STATE(3228), - [sym_checked_expression] = STATE(3228), - [sym_invocation_expression] = STATE(3289), - [sym_switch_expression] = STATE(3228), - [sym_await_expression] = STATE(3289), - [sym_throw_expression] = STATE(3228), - [sym_element_access_expression] = STATE(2609), - [sym_interpolated_string_expression] = STATE(3228), - [sym_member_access_expression] = STATE(2609), - [sym_object_creation_expression] = STATE(3289), - [sym_parenthesized_expression] = STATE(3289), - [sym__parenthesized_lvalue_expression] = STATE(2609), - [sym_lambda_expression] = STATE(3228), - [sym__lambda_expression_init] = STATE(7653), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3228), - [sym_anonymous_method_expression] = STATE(3228), - [sym_anonymous_object_creation_expression] = STATE(3228), - [sym_implicit_array_creation_expression] = STATE(3228), - [sym_implicit_object_creation_expression] = STATE(3228), - [sym_implicit_stackalloc_expression] = STATE(3228), - [sym_initializer_expression] = STATE(3228), - [sym_default_expression] = STATE(3228), - [sym_with_expression] = STATE(3228), - [sym_sizeof_expression] = STATE(3228), - [sym_typeof_expression] = STATE(3228), - [sym_makeref_expression] = STATE(3228), - [sym_ref_expression] = STATE(3228), - [sym_reftype_expression] = STATE(3228), - [sym_refvalue_expression] = STATE(3228), - [sym_stackalloc_expression] = STATE(3228), - [sym_range_expression] = STATE(3228), - [sym_tuple_expression] = STATE(2609), - [sym_literal] = STATE(3228), - [sym_character_literal] = STATE(3278), - [sym_string_literal] = STATE(3278), - [sym_raw_string_literal] = STATE(3278), - [sym_boolean_literal] = STATE(3278), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3228), - [sym_preproc_if_in_attribute_list] = STATE(5576), - [sym_preproc_region] = STATE(1647), - [sym_preproc_endregion] = STATE(1647), - [sym_preproc_line] = STATE(1647), - [sym_preproc_pragma] = STATE(1647), - [sym_preproc_nullable] = STATE(1647), - [sym_preproc_error] = STATE(1647), - [sym_preproc_warning] = STATE(1647), - [sym_preproc_define] = STATE(1647), - [sym_preproc_undef] = STATE(1647), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3396), + [1631] = { + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2901), + [sym__name] = STATE(5883), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2359), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(3681), + [sym_non_lvalue_expression] = STATE(3685), + [sym_lvalue_expression] = STATE(2944), + [sym__expression_statement_expression] = STATE(3836), + [sym_assignment_expression] = STATE(3689), + [sym_binary_expression] = STATE(3836), + [sym_postfix_unary_expression] = STATE(3689), + [sym_prefix_unary_expression] = STATE(3689), + [sym__pointer_indirection_expression] = STATE(2906), + [sym_query_expression] = STATE(3836), + [sym_from_clause] = STATE(6139), + [sym_conditional_expression] = STATE(3836), + [sym_conditional_access_expression] = STATE(3836), + [sym_as_expression] = STATE(3836), + [sym_is_expression] = STATE(3836), + [sym_is_pattern_expression] = STATE(3836), + [sym_cast_expression] = STATE(3836), + [sym_checked_expression] = STATE(3836), + [sym_invocation_expression] = STATE(3689), + [sym_switch_expression] = STATE(3836), + [sym_await_expression] = STATE(3689), + [sym_throw_expression] = STATE(3836), + [sym_element_access_expression] = STATE(2906), + [sym_interpolated_string_expression] = STATE(3836), + [sym_member_access_expression] = STATE(2906), + [sym_object_creation_expression] = STATE(3689), + [sym_parenthesized_expression] = STATE(3689), + [sym__parenthesized_lvalue_expression] = STATE(2906), + [sym_lambda_expression] = STATE(3836), + [sym__lambda_expression_init] = STATE(7516), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3836), + [sym_anonymous_method_expression] = STATE(3836), + [sym_anonymous_object_creation_expression] = STATE(3836), + [sym_implicit_array_creation_expression] = STATE(3836), + [sym_implicit_object_creation_expression] = STATE(3836), + [sym_implicit_stackalloc_expression] = STATE(3836), + [sym_initializer_expression] = STATE(3836), + [sym_default_expression] = STATE(3836), + [sym_with_expression] = STATE(3836), + [sym_sizeof_expression] = STATE(3836), + [sym_typeof_expression] = STATE(3836), + [sym_makeref_expression] = STATE(3836), + [sym_ref_expression] = STATE(3836), + [sym_reftype_expression] = STATE(3836), + [sym_refvalue_expression] = STATE(3836), + [sym_stackalloc_expression] = STATE(3836), + [sym_range_expression] = STATE(3836), + [sym_tuple_expression] = STATE(2906), + [sym_literal] = STATE(3836), + [sym_character_literal] = STATE(3843), + [sym_string_literal] = STATE(3843), + [sym_raw_string_literal] = STATE(3843), + [sym_boolean_literal] = STATE(3843), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3836), + [sym_preproc_if_in_attribute_list] = STATE(5583), + [sym_preproc_region] = STATE(1631), + [sym_preproc_endregion] = STATE(1631), + [sym_preproc_line] = STATE(1631), + [sym_preproc_pragma] = STATE(1631), + [sym_preproc_nullable] = STATE(1631), + [sym_preproc_error] = STATE(1631), + [sym_preproc_warning] = STATE(1631), + [sym_preproc_define] = STATE(1631), + [sym_preproc_undef] = STATE(1631), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3477), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1153), - [anon_sym_LPAREN] = ACTIONS(1155), - [anon_sym_ref] = ACTIONS(1157), - [anon_sym_LBRACE] = ACTIONS(1159), - [anon_sym_delegate] = ACTIONS(1161), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1655), + [anon_sym_LPAREN] = ACTIONS(1657), + [anon_sym_ref] = ACTIONS(1659), + [anon_sym_LBRACE] = ACTIONS(1661), + [anon_sym_delegate] = ACTIONS(1663), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1163), + [anon_sym_new] = ACTIONS(1665), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1167), - [anon_sym_BANG] = ACTIONS(1171), - [anon_sym_TILDE] = ACTIONS(1171), - [anon_sym_PLUS_PLUS] = ACTIONS(1171), - [anon_sym_DASH_DASH] = ACTIONS(1171), - [anon_sym_true] = ACTIONS(1173), - [anon_sym_false] = ACTIONS(1173), - [anon_sym_PLUS] = ACTIONS(1169), - [anon_sym_DASH] = ACTIONS(1169), - [anon_sym_STAR] = ACTIONS(1175), - [anon_sym_CARET] = ACTIONS(1171), - [anon_sym_AMP] = ACTIONS(1171), - [anon_sym_this] = ACTIONS(1177), + [anon_sym_checked] = ACTIONS(1667), + [anon_sym_BANG] = ACTIONS(1671), + [anon_sym_TILDE] = ACTIONS(1671), + [anon_sym_PLUS_PLUS] = ACTIONS(1671), + [anon_sym_DASH_DASH] = ACTIONS(1671), + [anon_sym_true] = ACTIONS(1673), + [anon_sym_false] = ACTIONS(1673), + [anon_sym_PLUS] = ACTIONS(1669), + [anon_sym_DASH] = ACTIONS(1669), + [anon_sym_STAR] = ACTIONS(1675), + [anon_sym_CARET] = ACTIONS(1671), + [anon_sym_AMP] = ACTIONS(1671), + [anon_sym_this] = ACTIONS(1677), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1179), + [anon_sym_base] = ACTIONS(1679), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1181), - [anon_sym_unchecked] = ACTIONS(1167), + [sym_predefined_type] = ACTIONS(1681), + [anon_sym_unchecked] = ACTIONS(1667), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1183), - [anon_sym_throw] = ACTIONS(1185), + [anon_sym_default] = ACTIONS(1683), + [anon_sym_throw] = ACTIONS(1685), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1187), - [anon_sym_DOT_DOT] = ACTIONS(1189), + [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), @@ -320255,19 +317437,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1191), - [anon_sym_sizeof] = ACTIONS(1193), - [anon_sym_typeof] = ACTIONS(1195), - [anon_sym___makeref] = ACTIONS(1197), - [anon_sym___reftype] = ACTIONS(1199), - [anon_sym___refvalue] = ACTIONS(1201), - [sym_null_literal] = ACTIONS(1203), - [anon_sym_SQUOTE] = ACTIONS(1205), - [sym_integer_literal] = ACTIONS(1203), - [sym_real_literal] = ACTIONS(1207), - [anon_sym_DQUOTE] = ACTIONS(1209), - [sym_verbatim_string_literal] = ACTIONS(1207), - [aux_sym_preproc_if_token1] = ACTIONS(1211), + [anon_sym_stackalloc] = ACTIONS(1691), + [anon_sym_sizeof] = ACTIONS(1693), + [anon_sym_typeof] = ACTIONS(1695), + [anon_sym___makeref] = ACTIONS(1697), + [anon_sym___reftype] = ACTIONS(1699), + [anon_sym___refvalue] = ACTIONS(1701), + [sym_null_literal] = ACTIONS(1703), + [anon_sym_SQUOTE] = ACTIONS(1705), + [sym_integer_literal] = ACTIONS(1703), + [sym_real_literal] = ACTIONS(1707), + [anon_sym_DQUOTE] = ACTIONS(1709), + [sym_verbatim_string_literal] = ACTIONS(1707), + [aux_sym_preproc_if_token1] = ACTIONS(1711), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -320278,140 +317460,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(1213), - [sym_interpolation_verbatim_start] = ACTIONS(1215), - [sym_interpolation_raw_start] = ACTIONS(1217), - [sym_raw_string_start] = ACTIONS(1219), + [sym_interpolation_regular_start] = ACTIONS(1713), + [sym_interpolation_verbatim_start] = ACTIONS(1715), + [sym_interpolation_raw_start] = ACTIONS(1717), + [sym_raw_string_start] = ACTIONS(1719), }, - [1648] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2762), - [sym__name] = STATE(5910), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2204), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(3218), - [sym_non_lvalue_expression] = STATE(3438), - [sym_lvalue_expression] = STATE(3162), - [sym__expression_statement_expression] = STATE(3362), - [sym_assignment_expression] = STATE(3449), - [sym_binary_expression] = STATE(3362), - [sym_postfix_unary_expression] = STATE(3449), - [sym_prefix_unary_expression] = STATE(3449), - [sym__pointer_indirection_expression] = STATE(2747), - [sym_query_expression] = STATE(3362), - [sym_from_clause] = STATE(6171), - [sym_conditional_expression] = STATE(3362), - [sym_conditional_access_expression] = STATE(3362), - [sym_as_expression] = STATE(3362), - [sym_is_expression] = STATE(3362), - [sym_is_pattern_expression] = STATE(3362), - [sym_cast_expression] = STATE(3362), - [sym_checked_expression] = STATE(3362), - [sym_invocation_expression] = STATE(3449), - [sym_switch_expression] = STATE(3362), - [sym_await_expression] = STATE(3449), - [sym_throw_expression] = STATE(3362), - [sym_element_access_expression] = STATE(2747), - [sym_interpolated_string_expression] = STATE(3362), - [sym_member_access_expression] = STATE(2747), - [sym_object_creation_expression] = STATE(3449), - [sym_parenthesized_expression] = STATE(3449), - [sym__parenthesized_lvalue_expression] = STATE(2747), - [sym_lambda_expression] = STATE(3362), - [sym__lambda_expression_init] = STATE(7320), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3362), - [sym_anonymous_method_expression] = STATE(3362), - [sym_anonymous_object_creation_expression] = STATE(3362), - [sym_implicit_array_creation_expression] = STATE(3362), - [sym_implicit_object_creation_expression] = STATE(3362), - [sym_implicit_stackalloc_expression] = STATE(3362), - [sym_initializer_expression] = STATE(3362), - [sym_default_expression] = STATE(3362), - [sym_with_expression] = STATE(3362), - [sym_sizeof_expression] = STATE(3362), - [sym_typeof_expression] = STATE(3362), - [sym_makeref_expression] = STATE(3362), - [sym_ref_expression] = STATE(3362), - [sym_reftype_expression] = STATE(3362), - [sym_refvalue_expression] = STATE(3362), - [sym_stackalloc_expression] = STATE(3362), - [sym_range_expression] = STATE(3362), - [sym_tuple_expression] = STATE(2747), - [sym_literal] = STATE(3362), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3362), - [sym_preproc_if_in_attribute_list] = STATE(5576), - [sym_preproc_region] = STATE(1648), - [sym_preproc_endregion] = STATE(1648), - [sym_preproc_line] = STATE(1648), - [sym_preproc_pragma] = STATE(1648), - [sym_preproc_nullable] = STATE(1648), - [sym_preproc_error] = STATE(1648), - [sym_preproc_warning] = STATE(1648), - [sym_preproc_define] = STATE(1648), - [sym_preproc_undef] = STATE(1648), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3385), + [1632] = { + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2901), + [sym__name] = STATE(5883), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2359), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(3560), + [sym_non_lvalue_expression] = STATE(3685), + [sym_lvalue_expression] = STATE(2944), + [sym__expression_statement_expression] = STATE(3836), + [sym_assignment_expression] = STATE(3689), + [sym_binary_expression] = STATE(3836), + [sym_postfix_unary_expression] = STATE(3689), + [sym_prefix_unary_expression] = STATE(3689), + [sym__pointer_indirection_expression] = STATE(2906), + [sym_query_expression] = STATE(3836), + [sym_from_clause] = STATE(6139), + [sym_conditional_expression] = STATE(3836), + [sym_conditional_access_expression] = STATE(3836), + [sym_as_expression] = STATE(3836), + [sym_is_expression] = STATE(3836), + [sym_is_pattern_expression] = STATE(3836), + [sym_cast_expression] = STATE(3836), + [sym_checked_expression] = STATE(3836), + [sym_invocation_expression] = STATE(3689), + [sym_switch_expression] = STATE(3836), + [sym_await_expression] = STATE(3689), + [sym_throw_expression] = STATE(3836), + [sym_element_access_expression] = STATE(2906), + [sym_interpolated_string_expression] = STATE(3836), + [sym_member_access_expression] = STATE(2906), + [sym_object_creation_expression] = STATE(3689), + [sym_parenthesized_expression] = STATE(3689), + [sym__parenthesized_lvalue_expression] = STATE(2906), + [sym_lambda_expression] = STATE(3836), + [sym__lambda_expression_init] = STATE(7516), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3836), + [sym_anonymous_method_expression] = STATE(3836), + [sym_anonymous_object_creation_expression] = STATE(3836), + [sym_implicit_array_creation_expression] = STATE(3836), + [sym_implicit_object_creation_expression] = STATE(3836), + [sym_implicit_stackalloc_expression] = STATE(3836), + [sym_initializer_expression] = STATE(3836), + [sym_default_expression] = STATE(3836), + [sym_with_expression] = STATE(3836), + [sym_sizeof_expression] = STATE(3836), + [sym_typeof_expression] = STATE(3836), + [sym_makeref_expression] = STATE(3836), + [sym_ref_expression] = STATE(3836), + [sym_reftype_expression] = STATE(3836), + [sym_refvalue_expression] = STATE(3836), + [sym_stackalloc_expression] = STATE(3836), + [sym_range_expression] = STATE(3836), + [sym_tuple_expression] = STATE(2906), + [sym_literal] = STATE(3836), + [sym_character_literal] = STATE(3843), + [sym_string_literal] = STATE(3843), + [sym_raw_string_literal] = STATE(3843), + [sym_boolean_literal] = STATE(3843), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3836), + [sym_preproc_if_in_attribute_list] = STATE(5583), + [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(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3477), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1307), - [anon_sym_LPAREN] = ACTIONS(1343), - [anon_sym_ref] = ACTIONS(1345), - [anon_sym_LBRACE] = ACTIONS(1313), - [anon_sym_delegate] = ACTIONS(1315), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1655), + [anon_sym_LPAREN] = ACTIONS(1657), + [anon_sym_ref] = ACTIONS(1659), + [anon_sym_LBRACE] = ACTIONS(1661), + [anon_sym_delegate] = ACTIONS(1663), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1317), + [anon_sym_new] = ACTIONS(1665), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1319), - [anon_sym_BANG] = ACTIONS(1349), - [anon_sym_TILDE] = ACTIONS(1349), - [anon_sym_PLUS_PLUS] = ACTIONS(1349), - [anon_sym_DASH_DASH] = ACTIONS(1349), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1347), - [anon_sym_DASH] = ACTIONS(1347), - [anon_sym_STAR] = ACTIONS(1351), - [anon_sym_CARET] = ACTIONS(1349), - [anon_sym_AMP] = ACTIONS(1349), - [anon_sym_this] = ACTIONS(1323), + [anon_sym_checked] = ACTIONS(1667), + [anon_sym_BANG] = ACTIONS(1671), + [anon_sym_TILDE] = ACTIONS(1671), + [anon_sym_PLUS_PLUS] = ACTIONS(1671), + [anon_sym_DASH_DASH] = ACTIONS(1671), + [anon_sym_true] = ACTIONS(1673), + [anon_sym_false] = ACTIONS(1673), + [anon_sym_PLUS] = ACTIONS(1669), + [anon_sym_DASH] = ACTIONS(1669), + [anon_sym_STAR] = ACTIONS(1675), + [anon_sym_CARET] = ACTIONS(1671), + [anon_sym_AMP] = ACTIONS(1671), + [anon_sym_this] = ACTIONS(1677), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1325), + [anon_sym_base] = ACTIONS(1679), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1319), + [sym_predefined_type] = ACTIONS(1681), + [anon_sym_unchecked] = ACTIONS(1667), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1353), + [anon_sym_default] = ACTIONS(1683), + [anon_sym_throw] = ACTIONS(1685), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1355), - [anon_sym_DOT_DOT] = ACTIONS(1357), + [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), @@ -320424,19 +317606,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1333), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(1335), - [anon_sym___reftype] = ACTIONS(1337), - [anon_sym___refvalue] = ACTIONS(1339), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1341), + [anon_sym_stackalloc] = ACTIONS(1691), + [anon_sym_sizeof] = ACTIONS(1693), + [anon_sym_typeof] = ACTIONS(1695), + [anon_sym___makeref] = ACTIONS(1697), + [anon_sym___reftype] = ACTIONS(1699), + [anon_sym___refvalue] = ACTIONS(1701), + [sym_null_literal] = ACTIONS(1703), + [anon_sym_SQUOTE] = ACTIONS(1705), + [sym_integer_literal] = ACTIONS(1703), + [sym_real_literal] = ACTIONS(1707), + [anon_sym_DQUOTE] = ACTIONS(1709), + [sym_verbatim_string_literal] = ACTIONS(1707), + [aux_sym_preproc_if_token1] = ACTIONS(1711), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -320447,140 +317629,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(1713), + [sym_interpolation_verbatim_start] = ACTIONS(1715), + [sym_interpolation_raw_start] = ACTIONS(1717), + [sym_raw_string_start] = ACTIONS(1719), }, - [1649] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2610), - [sym__name] = STATE(5898), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2197), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(3851), - [sym_non_lvalue_expression] = STATE(3277), - [sym_lvalue_expression] = STATE(3023), - [sym__expression_statement_expression] = STATE(3228), - [sym_assignment_expression] = STATE(3289), - [sym_binary_expression] = STATE(3228), - [sym_postfix_unary_expression] = STATE(3289), - [sym_prefix_unary_expression] = STATE(3289), - [sym__pointer_indirection_expression] = STATE(2609), - [sym_query_expression] = STATE(3228), - [sym_from_clause] = STATE(6172), - [sym_conditional_expression] = STATE(3228), - [sym_conditional_access_expression] = STATE(3228), - [sym_as_expression] = STATE(3228), - [sym_is_expression] = STATE(3228), - [sym_is_pattern_expression] = STATE(3228), - [sym_cast_expression] = STATE(3228), - [sym_checked_expression] = STATE(3228), - [sym_invocation_expression] = STATE(3289), - [sym_switch_expression] = STATE(3228), - [sym_await_expression] = STATE(3289), - [sym_throw_expression] = STATE(3228), - [sym_element_access_expression] = STATE(2609), - [sym_interpolated_string_expression] = STATE(3228), - [sym_member_access_expression] = STATE(2609), - [sym_object_creation_expression] = STATE(3289), - [sym_parenthesized_expression] = STATE(3289), - [sym__parenthesized_lvalue_expression] = STATE(2609), - [sym_lambda_expression] = STATE(3228), - [sym__lambda_expression_init] = STATE(7653), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3228), - [sym_anonymous_method_expression] = STATE(3228), - [sym_anonymous_object_creation_expression] = STATE(3228), - [sym_implicit_array_creation_expression] = STATE(3228), - [sym_implicit_object_creation_expression] = STATE(3228), - [sym_implicit_stackalloc_expression] = STATE(3228), - [sym_initializer_expression] = STATE(3228), - [sym_default_expression] = STATE(3228), - [sym_with_expression] = STATE(3228), - [sym_sizeof_expression] = STATE(3228), - [sym_typeof_expression] = STATE(3228), - [sym_makeref_expression] = STATE(3228), - [sym_ref_expression] = STATE(3228), - [sym_reftype_expression] = STATE(3228), - [sym_refvalue_expression] = STATE(3228), - [sym_stackalloc_expression] = STATE(3228), - [sym_range_expression] = STATE(3228), - [sym_tuple_expression] = STATE(2609), - [sym_literal] = STATE(3228), - [sym_character_literal] = STATE(3278), - [sym_string_literal] = STATE(3278), - [sym_raw_string_literal] = STATE(3278), - [sym_boolean_literal] = STATE(3278), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3228), - [sym_preproc_if_in_attribute_list] = STATE(5576), - [sym_preproc_region] = STATE(1649), - [sym_preproc_endregion] = STATE(1649), - [sym_preproc_line] = STATE(1649), - [sym_preproc_pragma] = STATE(1649), - [sym_preproc_nullable] = STATE(1649), - [sym_preproc_error] = STATE(1649), - [sym_preproc_warning] = STATE(1649), - [sym_preproc_define] = STATE(1649), - [sym_preproc_undef] = STATE(1649), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3396), + [1633] = { + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(5881), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2386), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(4087), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3110), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3102), + [sym_postfix_unary_expression] = STATE(3079), + [sym_prefix_unary_expression] = STATE(3079), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6153), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3102), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3079), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3102), + [sym_member_access_expression] = STATE(2472), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3079), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7637), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(3102), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3102), + [sym_typeof_expression] = STATE(3102), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2472), + [sym_literal] = STATE(3102), + [sym_character_literal] = STATE(3037), + [sym_string_literal] = STATE(3037), + [sym_raw_string_literal] = STATE(3037), + [sym_boolean_literal] = STATE(3037), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), + [sym_preproc_region] = STATE(1633), + [sym_preproc_endregion] = STATE(1633), + [sym_preproc_line] = STATE(1633), + [sym_preproc_pragma] = STATE(1633), + [sym_preproc_nullable] = STATE(1633), + [sym_preproc_error] = STATE(1633), + [sym_preproc_warning] = STATE(1633), + [sym_preproc_define] = STATE(1633), + [sym_preproc_undef] = STATE(1633), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1153), - [anon_sym_LPAREN] = ACTIONS(1155), - [anon_sym_ref] = ACTIONS(1157), - [anon_sym_LBRACE] = ACTIONS(1159), - [anon_sym_delegate] = ACTIONS(1161), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1479), + [anon_sym_LPAREN] = ACTIONS(1895), + [anon_sym_ref] = ACTIONS(1897), + [anon_sym_LBRACE] = ACTIONS(1481), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1163), + [anon_sym_new] = ACTIONS(1899), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1167), - [anon_sym_BANG] = ACTIONS(1171), - [anon_sym_TILDE] = ACTIONS(1171), - [anon_sym_PLUS_PLUS] = ACTIONS(1171), - [anon_sym_DASH_DASH] = ACTIONS(1171), - [anon_sym_true] = ACTIONS(1173), - [anon_sym_false] = ACTIONS(1173), - [anon_sym_PLUS] = ACTIONS(1169), - [anon_sym_DASH] = ACTIONS(1169), - [anon_sym_STAR] = ACTIONS(1175), - [anon_sym_CARET] = ACTIONS(1171), - [anon_sym_AMP] = ACTIONS(1171), - [anon_sym_this] = ACTIONS(1177), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(1903), + [anon_sym_TILDE] = ACTIONS(1903), + [anon_sym_PLUS_PLUS] = ACTIONS(1903), + [anon_sym_DASH_DASH] = ACTIONS(1903), + [anon_sym_true] = ACTIONS(1257), + [anon_sym_false] = ACTIONS(1257), + [anon_sym_PLUS] = ACTIONS(1901), + [anon_sym_DASH] = ACTIONS(1901), + [anon_sym_STAR] = ACTIONS(1905), + [anon_sym_CARET] = ACTIONS(1903), + [anon_sym_AMP] = ACTIONS(1903), + [anon_sym_this] = ACTIONS(83), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1179), + [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1181), - [anon_sym_unchecked] = ACTIONS(1167), + [sym_predefined_type] = ACTIONS(1265), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1183), - [anon_sym_throw] = ACTIONS(1185), + [anon_sym_default] = ACTIONS(1267), + [anon_sym_throw] = ACTIONS(1907), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1187), - [anon_sym_DOT_DOT] = ACTIONS(1189), + [anon_sym_await] = ACTIONS(1909), + [anon_sym_DOT_DOT] = ACTIONS(1911), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -320593,19 +317775,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1191), - [anon_sym_sizeof] = ACTIONS(1193), - [anon_sym_typeof] = ACTIONS(1195), - [anon_sym___makeref] = ACTIONS(1197), - [anon_sym___reftype] = ACTIONS(1199), - [anon_sym___refvalue] = ACTIONS(1201), - [sym_null_literal] = ACTIONS(1203), - [anon_sym_SQUOTE] = ACTIONS(1205), - [sym_integer_literal] = ACTIONS(1203), - [sym_real_literal] = ACTIONS(1207), - [anon_sym_DQUOTE] = ACTIONS(1209), - [sym_verbatim_string_literal] = ACTIONS(1207), - [aux_sym_preproc_if_token1] = ACTIONS(1211), + [anon_sym_stackalloc] = ACTIONS(127), + [anon_sym_sizeof] = ACTIONS(1277), + [anon_sym_typeof] = ACTIONS(1279), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), + [sym_null_literal] = ACTIONS(1287), + [anon_sym_SQUOTE] = ACTIONS(1289), + [sym_integer_literal] = ACTIONS(1287), + [sym_real_literal] = ACTIONS(1291), + [anon_sym_DQUOTE] = ACTIONS(1293), + [sym_verbatim_string_literal] = ACTIONS(1291), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -320616,140 +317798,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(1213), - [sym_interpolation_verbatim_start] = ACTIONS(1215), - [sym_interpolation_raw_start] = ACTIONS(1217), - [sym_raw_string_start] = ACTIONS(1219), + [sym_interpolation_regular_start] = ACTIONS(1297), + [sym_interpolation_verbatim_start] = ACTIONS(1299), + [sym_interpolation_raw_start] = ACTIONS(1301), + [sym_raw_string_start] = ACTIONS(1303), }, - [1650] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2610), - [sym__name] = STATE(5898), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2197), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(3852), - [sym_non_lvalue_expression] = STATE(3277), - [sym_lvalue_expression] = STATE(3023), - [sym__expression_statement_expression] = STATE(3228), - [sym_assignment_expression] = STATE(3289), - [sym_binary_expression] = STATE(3228), - [sym_postfix_unary_expression] = STATE(3289), - [sym_prefix_unary_expression] = STATE(3289), - [sym__pointer_indirection_expression] = STATE(2609), - [sym_query_expression] = STATE(3228), - [sym_from_clause] = STATE(6172), - [sym_conditional_expression] = STATE(3228), - [sym_conditional_access_expression] = STATE(3228), - [sym_as_expression] = STATE(3228), - [sym_is_expression] = STATE(3228), - [sym_is_pattern_expression] = STATE(3228), - [sym_cast_expression] = STATE(3228), - [sym_checked_expression] = STATE(3228), - [sym_invocation_expression] = STATE(3289), - [sym_switch_expression] = STATE(3228), - [sym_await_expression] = STATE(3289), - [sym_throw_expression] = STATE(3228), - [sym_element_access_expression] = STATE(2609), - [sym_interpolated_string_expression] = STATE(3228), - [sym_member_access_expression] = STATE(2609), - [sym_object_creation_expression] = STATE(3289), - [sym_parenthesized_expression] = STATE(3289), - [sym__parenthesized_lvalue_expression] = STATE(2609), - [sym_lambda_expression] = STATE(3228), - [sym__lambda_expression_init] = STATE(7653), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3228), - [sym_anonymous_method_expression] = STATE(3228), - [sym_anonymous_object_creation_expression] = STATE(3228), - [sym_implicit_array_creation_expression] = STATE(3228), - [sym_implicit_object_creation_expression] = STATE(3228), - [sym_implicit_stackalloc_expression] = STATE(3228), - [sym_initializer_expression] = STATE(3228), - [sym_default_expression] = STATE(3228), - [sym_with_expression] = STATE(3228), - [sym_sizeof_expression] = STATE(3228), - [sym_typeof_expression] = STATE(3228), - [sym_makeref_expression] = STATE(3228), - [sym_ref_expression] = STATE(3228), - [sym_reftype_expression] = STATE(3228), - [sym_refvalue_expression] = STATE(3228), - [sym_stackalloc_expression] = STATE(3228), - [sym_range_expression] = STATE(3228), - [sym_tuple_expression] = STATE(2609), - [sym_literal] = STATE(3228), - [sym_character_literal] = STATE(3278), - [sym_string_literal] = STATE(3278), - [sym_raw_string_literal] = STATE(3278), - [sym_boolean_literal] = STATE(3278), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3228), - [sym_preproc_if_in_attribute_list] = STATE(5576), - [sym_preproc_region] = STATE(1650), - [sym_preproc_endregion] = STATE(1650), - [sym_preproc_line] = STATE(1650), - [sym_preproc_pragma] = STATE(1650), - [sym_preproc_nullable] = STATE(1650), - [sym_preproc_error] = STATE(1650), - [sym_preproc_warning] = STATE(1650), - [sym_preproc_define] = STATE(1650), - [sym_preproc_undef] = STATE(1650), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3396), + [1634] = { + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(5881), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2386), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(4091), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3110), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3102), + [sym_postfix_unary_expression] = STATE(3079), + [sym_prefix_unary_expression] = STATE(3079), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6153), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3102), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3079), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3102), + [sym_member_access_expression] = STATE(2472), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3079), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7637), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(3102), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3102), + [sym_typeof_expression] = STATE(3102), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2472), + [sym_literal] = STATE(3102), + [sym_character_literal] = STATE(3037), + [sym_string_literal] = STATE(3037), + [sym_raw_string_literal] = STATE(3037), + [sym_boolean_literal] = STATE(3037), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), + [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(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1153), - [anon_sym_LPAREN] = ACTIONS(1155), - [anon_sym_ref] = ACTIONS(1157), - [anon_sym_LBRACE] = ACTIONS(1159), - [anon_sym_delegate] = ACTIONS(1161), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1479), + [anon_sym_LPAREN] = ACTIONS(1895), + [anon_sym_ref] = ACTIONS(1897), + [anon_sym_LBRACE] = ACTIONS(1481), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1163), + [anon_sym_new] = ACTIONS(1899), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1167), - [anon_sym_BANG] = ACTIONS(1171), - [anon_sym_TILDE] = ACTIONS(1171), - [anon_sym_PLUS_PLUS] = ACTIONS(1171), - [anon_sym_DASH_DASH] = ACTIONS(1171), - [anon_sym_true] = ACTIONS(1173), - [anon_sym_false] = ACTIONS(1173), - [anon_sym_PLUS] = ACTIONS(1169), - [anon_sym_DASH] = ACTIONS(1169), - [anon_sym_STAR] = ACTIONS(1175), - [anon_sym_CARET] = ACTIONS(1171), - [anon_sym_AMP] = ACTIONS(1171), - [anon_sym_this] = ACTIONS(1177), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(1903), + [anon_sym_TILDE] = ACTIONS(1903), + [anon_sym_PLUS_PLUS] = ACTIONS(1903), + [anon_sym_DASH_DASH] = ACTIONS(1903), + [anon_sym_true] = ACTIONS(1257), + [anon_sym_false] = ACTIONS(1257), + [anon_sym_PLUS] = ACTIONS(1901), + [anon_sym_DASH] = ACTIONS(1901), + [anon_sym_STAR] = ACTIONS(1905), + [anon_sym_CARET] = ACTIONS(1903), + [anon_sym_AMP] = ACTIONS(1903), + [anon_sym_this] = ACTIONS(83), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1179), + [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1181), - [anon_sym_unchecked] = ACTIONS(1167), + [sym_predefined_type] = ACTIONS(1265), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1183), - [anon_sym_throw] = ACTIONS(1185), + [anon_sym_default] = ACTIONS(1267), + [anon_sym_throw] = ACTIONS(1907), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1187), - [anon_sym_DOT_DOT] = ACTIONS(1189), + [anon_sym_await] = ACTIONS(1909), + [anon_sym_DOT_DOT] = ACTIONS(1911), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -320762,19 +317944,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1191), - [anon_sym_sizeof] = ACTIONS(1193), - [anon_sym_typeof] = ACTIONS(1195), - [anon_sym___makeref] = ACTIONS(1197), - [anon_sym___reftype] = ACTIONS(1199), - [anon_sym___refvalue] = ACTIONS(1201), - [sym_null_literal] = ACTIONS(1203), - [anon_sym_SQUOTE] = ACTIONS(1205), - [sym_integer_literal] = ACTIONS(1203), - [sym_real_literal] = ACTIONS(1207), - [anon_sym_DQUOTE] = ACTIONS(1209), - [sym_verbatim_string_literal] = ACTIONS(1207), - [aux_sym_preproc_if_token1] = ACTIONS(1211), + [anon_sym_stackalloc] = ACTIONS(127), + [anon_sym_sizeof] = ACTIONS(1277), + [anon_sym_typeof] = ACTIONS(1279), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), + [sym_null_literal] = ACTIONS(1287), + [anon_sym_SQUOTE] = ACTIONS(1289), + [sym_integer_literal] = ACTIONS(1287), + [sym_real_literal] = ACTIONS(1291), + [anon_sym_DQUOTE] = ACTIONS(1293), + [sym_verbatim_string_literal] = ACTIONS(1291), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -320785,140 +317967,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(1213), - [sym_interpolation_verbatim_start] = ACTIONS(1215), - [sym_interpolation_raw_start] = ACTIONS(1217), - [sym_raw_string_start] = ACTIONS(1219), + [sym_interpolation_regular_start] = ACTIONS(1297), + [sym_interpolation_verbatim_start] = ACTIONS(1299), + [sym_interpolation_raw_start] = ACTIONS(1301), + [sym_raw_string_start] = ACTIONS(1303), }, - [1651] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(5160), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2204), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(4575), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3461), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3080), - [sym_postfix_unary_expression] = STATE(3111), - [sym_prefix_unary_expression] = STATE(3111), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6154), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3080), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3111), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3080), - [sym_member_access_expression] = STATE(2484), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3111), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7547), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(3080), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3080), - [sym_typeof_expression] = STATE(3080), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2484), - [sym_literal] = STATE(3080), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), - [sym_preproc_region] = STATE(1651), - [sym_preproc_endregion] = STATE(1651), - [sym_preproc_line] = STATE(1651), - [sym_preproc_pragma] = STATE(1651), - [sym_preproc_nullable] = STATE(1651), - [sym_preproc_error] = STATE(1651), - [sym_preproc_warning] = STATE(1651), - [sym_preproc_define] = STATE(1651), - [sym_preproc_undef] = STATE(1651), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [1635] = { + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(5881), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2386), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(4092), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3110), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3102), + [sym_postfix_unary_expression] = STATE(3079), + [sym_prefix_unary_expression] = STATE(3079), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6153), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3102), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3079), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3102), + [sym_member_access_expression] = STATE(2472), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3079), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7637), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(3102), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3102), + [sym_typeof_expression] = STATE(3102), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2472), + [sym_literal] = STATE(3102), + [sym_character_literal] = STATE(3037), + [sym_string_literal] = STATE(3037), + [sym_raw_string_literal] = STATE(3037), + [sym_boolean_literal] = STATE(3037), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), + [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(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1481), - [anon_sym_LPAREN] = ACTIONS(1497), - [anon_sym_ref] = ACTIONS(1499), - [anon_sym_LBRACE] = ACTIONS(1487), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1479), + [anon_sym_LPAREN] = ACTIONS(1895), + [anon_sym_ref] = ACTIONS(1897), + [anon_sym_LBRACE] = ACTIONS(1481), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1501), + [anon_sym_new] = ACTIONS(1899), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = 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(79), - [anon_sym_DASH] = ACTIONS(79), - [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(75), - [anon_sym_AMP] = ACTIONS(75), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(1903), + [anon_sym_TILDE] = ACTIONS(1903), + [anon_sym_PLUS_PLUS] = ACTIONS(1903), + [anon_sym_DASH_DASH] = ACTIONS(1903), + [anon_sym_true] = ACTIONS(1257), + [anon_sym_false] = ACTIONS(1257), + [anon_sym_PLUS] = ACTIONS(1901), + [anon_sym_DASH] = ACTIONS(1901), + [anon_sym_STAR] = ACTIONS(1905), + [anon_sym_CARET] = ACTIONS(1903), + [anon_sym_AMP] = ACTIONS(1903), [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(1067), + [sym_predefined_type] = ACTIONS(1265), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1503), + [anon_sym_default] = ACTIONS(1267), + [anon_sym_throw] = ACTIONS(1907), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1505), - [anon_sym_DOT_DOT] = ACTIONS(1507), + [anon_sym_await] = ACTIONS(1909), + [anon_sym_DOT_DOT] = ACTIONS(1911), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -320932,18 +318114,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(129), - [anon_sym_typeof] = ACTIONS(131), + [anon_sym_sizeof] = ACTIONS(1277), + [anon_sym_typeof] = ACTIONS(1279), [anon_sym___makeref] = ACTIONS(133), [anon_sym___reftype] = ACTIONS(135), [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1089), + [sym_null_literal] = ACTIONS(1287), + [anon_sym_SQUOTE] = ACTIONS(1289), + [sym_integer_literal] = ACTIONS(1287), + [sym_real_literal] = ACTIONS(1291), + [anon_sym_DQUOTE] = ACTIONS(1293), + [sym_verbatim_string_literal] = ACTIONS(1291), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -320954,140 +318136,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(1297), + [sym_interpolation_verbatim_start] = ACTIONS(1299), + [sym_interpolation_raw_start] = ACTIONS(1301), + [sym_raw_string_start] = ACTIONS(1303), }, - [1652] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(5907), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2404), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(4099), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3122), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3080), - [sym_postfix_unary_expression] = STATE(3111), - [sym_prefix_unary_expression] = STATE(3111), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6149), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3080), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3111), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3080), - [sym_member_access_expression] = STATE(2484), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3111), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7563), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(3080), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3080), - [sym_typeof_expression] = STATE(3080), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2484), - [sym_literal] = STATE(3080), - [sym_character_literal] = STATE(3011), - [sym_string_literal] = STATE(3011), - [sym_raw_string_literal] = STATE(3011), - [sym_boolean_literal] = STATE(3011), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), - [sym_preproc_region] = STATE(1652), - [sym_preproc_endregion] = STATE(1652), - [sym_preproc_line] = STATE(1652), - [sym_preproc_pragma] = STATE(1652), - [sym_preproc_nullable] = STATE(1652), - [sym_preproc_error] = STATE(1652), - [sym_preproc_warning] = STATE(1652), - [sym_preproc_define] = STATE(1652), - [sym_preproc_undef] = STATE(1652), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [1636] = { + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(5881), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2386), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(4107), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3110), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3102), + [sym_postfix_unary_expression] = STATE(3079), + [sym_prefix_unary_expression] = STATE(3079), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6153), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3102), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3079), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3102), + [sym_member_access_expression] = STATE(2472), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3079), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7637), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(3102), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3102), + [sym_typeof_expression] = STATE(3102), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2472), + [sym_literal] = STATE(3102), + [sym_character_literal] = STATE(3037), + [sym_string_literal] = STATE(3037), + [sym_raw_string_literal] = STATE(3037), + [sym_boolean_literal] = STATE(3037), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), + [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(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1481), - [anon_sym_LPAREN] = ACTIONS(1933), - [anon_sym_ref] = ACTIONS(1935), - [anon_sym_LBRACE] = ACTIONS(1487), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1479), + [anon_sym_LPAREN] = ACTIONS(1895), + [anon_sym_ref] = ACTIONS(1897), + [anon_sym_LBRACE] = ACTIONS(1481), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1937), + [anon_sym_new] = ACTIONS(1899), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1067), - [anon_sym_BANG] = ACTIONS(1941), - [anon_sym_TILDE] = ACTIONS(1941), - [anon_sym_PLUS_PLUS] = ACTIONS(1941), - [anon_sym_DASH_DASH] = ACTIONS(1941), - [anon_sym_true] = ACTIONS(1259), - [anon_sym_false] = ACTIONS(1259), - [anon_sym_PLUS] = ACTIONS(1939), - [anon_sym_DASH] = ACTIONS(1939), - [anon_sym_STAR] = ACTIONS(1943), - [anon_sym_CARET] = ACTIONS(1941), - [anon_sym_AMP] = ACTIONS(1941), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(1903), + [anon_sym_TILDE] = ACTIONS(1903), + [anon_sym_PLUS_PLUS] = ACTIONS(1903), + [anon_sym_DASH_DASH] = ACTIONS(1903), + [anon_sym_true] = ACTIONS(1257), + [anon_sym_false] = ACTIONS(1257), + [anon_sym_PLUS] = ACTIONS(1901), + [anon_sym_DASH] = ACTIONS(1901), + [anon_sym_STAR] = ACTIONS(1905), + [anon_sym_CARET] = ACTIONS(1903), + [anon_sym_AMP] = ACTIONS(1903), [anon_sym_this] = ACTIONS(83), [anon_sym_scoped] = ACTIONS(85), [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1267), - [anon_sym_unchecked] = ACTIONS(1067), + [sym_predefined_type] = ACTIONS(1265), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1269), - [anon_sym_throw] = ACTIONS(1945), + [anon_sym_default] = ACTIONS(1267), + [anon_sym_throw] = ACTIONS(1907), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1947), - [anon_sym_DOT_DOT] = ACTIONS(1949), + [anon_sym_await] = ACTIONS(1909), + [anon_sym_DOT_DOT] = ACTIONS(1911), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -321101,18 +318283,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(1279), - [anon_sym_typeof] = ACTIONS(1281), + [anon_sym_sizeof] = ACTIONS(1277), + [anon_sym_typeof] = ACTIONS(1279), [anon_sym___makeref] = ACTIONS(133), [anon_sym___reftype] = ACTIONS(135), [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(1289), - [anon_sym_SQUOTE] = ACTIONS(1291), - [sym_integer_literal] = ACTIONS(1289), - [sym_real_literal] = ACTIONS(1293), - [anon_sym_DQUOTE] = ACTIONS(1295), - [sym_verbatim_string_literal] = ACTIONS(1293), - [aux_sym_preproc_if_token1] = ACTIONS(1089), + [sym_null_literal] = ACTIONS(1287), + [anon_sym_SQUOTE] = ACTIONS(1289), + [sym_integer_literal] = ACTIONS(1287), + [sym_real_literal] = ACTIONS(1291), + [anon_sym_DQUOTE] = ACTIONS(1293), + [sym_verbatim_string_literal] = ACTIONS(1291), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -321123,140 +318305,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(1299), - [sym_interpolation_verbatim_start] = ACTIONS(1301), - [sym_interpolation_raw_start] = ACTIONS(1303), - [sym_raw_string_start] = ACTIONS(1305), + [sym_interpolation_regular_start] = ACTIONS(1297), + [sym_interpolation_verbatim_start] = ACTIONS(1299), + [sym_interpolation_raw_start] = ACTIONS(1301), + [sym_raw_string_start] = ACTIONS(1303), }, - [1653] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2420), - [sym__name] = STATE(5875), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2369), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(4166), - [sym_non_lvalue_expression] = STATE(3066), - [sym_lvalue_expression] = STATE(3125), - [sym__expression_statement_expression] = STATE(3006), - [sym_assignment_expression] = STATE(3020), - [sym_binary_expression] = STATE(3006), - [sym_postfix_unary_expression] = STATE(3020), - [sym_prefix_unary_expression] = STATE(3020), - [sym__pointer_indirection_expression] = STATE(2423), - [sym_query_expression] = STATE(3006), - [sym_from_clause] = STATE(6145), - [sym_conditional_expression] = STATE(3006), - [sym_conditional_access_expression] = STATE(3006), - [sym_as_expression] = STATE(3006), - [sym_is_expression] = STATE(3006), - [sym_is_pattern_expression] = STATE(3006), - [sym_cast_expression] = STATE(3006), - [sym_checked_expression] = STATE(3006), - [sym_invocation_expression] = STATE(3020), - [sym_switch_expression] = STATE(3006), - [sym_await_expression] = STATE(3020), - [sym_throw_expression] = STATE(3006), - [sym_element_access_expression] = STATE(2423), - [sym_interpolated_string_expression] = STATE(3006), - [sym_member_access_expression] = STATE(2423), - [sym_object_creation_expression] = STATE(3020), - [sym_parenthesized_expression] = STATE(3020), - [sym__parenthesized_lvalue_expression] = STATE(2423), - [sym_lambda_expression] = STATE(3006), - [sym__lambda_expression_init] = STATE(7538), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3006), - [sym_anonymous_method_expression] = STATE(3006), - [sym_anonymous_object_creation_expression] = STATE(3006), - [sym_implicit_array_creation_expression] = STATE(3006), - [sym_implicit_object_creation_expression] = STATE(3006), - [sym_implicit_stackalloc_expression] = STATE(3006), - [sym_initializer_expression] = STATE(3006), - [sym_default_expression] = STATE(3006), - [sym_with_expression] = STATE(3006), - [sym_sizeof_expression] = STATE(3006), - [sym_typeof_expression] = STATE(3006), - [sym_makeref_expression] = STATE(3006), - [sym_ref_expression] = STATE(3006), - [sym_reftype_expression] = STATE(3006), - [sym_refvalue_expression] = STATE(3006), - [sym_stackalloc_expression] = STATE(3006), - [sym_range_expression] = STATE(3006), - [sym_tuple_expression] = STATE(2423), - [sym_literal] = STATE(3006), - [sym_character_literal] = STATE(3011), - [sym_string_literal] = STATE(3011), - [sym_raw_string_literal] = STATE(3011), - [sym_boolean_literal] = STATE(3011), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3006), - [sym_preproc_if_in_attribute_list] = STATE(5576), - [sym_preproc_region] = STATE(1653), - [sym_preproc_endregion] = STATE(1653), - [sym_preproc_line] = STATE(1653), - [sym_preproc_pragma] = STATE(1653), - [sym_preproc_nullable] = STATE(1653), - [sym_preproc_error] = STATE(1653), - [sym_preproc_warning] = STATE(1653), - [sym_preproc_define] = STATE(1653), - [sym_preproc_undef] = STATE(1653), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3440), + [1637] = { + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(5881), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2386), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(4079), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3110), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3102), + [sym_postfix_unary_expression] = STATE(3079), + [sym_prefix_unary_expression] = STATE(3079), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6153), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3102), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3079), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3102), + [sym_member_access_expression] = STATE(2472), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3079), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7637), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(3102), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3102), + [sym_typeof_expression] = STATE(3102), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2472), + [sym_literal] = STATE(3102), + [sym_character_literal] = STATE(3037), + [sym_string_literal] = STATE(3037), + [sym_raw_string_literal] = STATE(3037), + [sym_boolean_literal] = STATE(3037), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), + [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(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1241), - [anon_sym_LPAREN] = ACTIONS(2195), - [anon_sym_ref] = ACTIONS(2197), - [anon_sym_LBRACE] = ACTIONS(1247), - [anon_sym_delegate] = ACTIONS(1249), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1479), + [anon_sym_LPAREN] = ACTIONS(1895), + [anon_sym_ref] = ACTIONS(1897), + [anon_sym_LBRACE] = ACTIONS(1481), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1845), + [anon_sym_new] = ACTIONS(1899), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1253), - [anon_sym_BANG] = ACTIONS(2201), - [anon_sym_TILDE] = ACTIONS(2201), - [anon_sym_PLUS_PLUS] = ACTIONS(2201), - [anon_sym_DASH_DASH] = ACTIONS(2201), - [anon_sym_true] = ACTIONS(1259), - [anon_sym_false] = ACTIONS(1259), - [anon_sym_PLUS] = ACTIONS(2199), - [anon_sym_DASH] = ACTIONS(2199), - [anon_sym_STAR] = ACTIONS(1851), - [anon_sym_CARET] = ACTIONS(2201), - [anon_sym_AMP] = ACTIONS(2201), - [anon_sym_this] = ACTIONS(1263), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(1903), + [anon_sym_TILDE] = ACTIONS(1903), + [anon_sym_PLUS_PLUS] = ACTIONS(1903), + [anon_sym_DASH_DASH] = ACTIONS(1903), + [anon_sym_true] = ACTIONS(1257), + [anon_sym_false] = ACTIONS(1257), + [anon_sym_PLUS] = ACTIONS(1901), + [anon_sym_DASH] = ACTIONS(1901), + [anon_sym_STAR] = ACTIONS(1905), + [anon_sym_CARET] = ACTIONS(1903), + [anon_sym_AMP] = ACTIONS(1903), + [anon_sym_this] = ACTIONS(83), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1265), + [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1267), - [anon_sym_unchecked] = ACTIONS(1253), + [sym_predefined_type] = ACTIONS(1265), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1269), - [anon_sym_throw] = ACTIONS(2203), + [anon_sym_default] = ACTIONS(1267), + [anon_sym_throw] = ACTIONS(1907), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2205), - [anon_sym_DOT_DOT] = ACTIONS(2207), + [anon_sym_await] = ACTIONS(1909), + [anon_sym_DOT_DOT] = ACTIONS(1911), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -321269,19 +318451,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1277), - [anon_sym_sizeof] = ACTIONS(1279), - [anon_sym_typeof] = ACTIONS(1281), - [anon_sym___makeref] = ACTIONS(1283), - [anon_sym___reftype] = ACTIONS(1285), - [anon_sym___refvalue] = ACTIONS(1287), - [sym_null_literal] = ACTIONS(1289), - [anon_sym_SQUOTE] = ACTIONS(1291), - [sym_integer_literal] = ACTIONS(1289), - [sym_real_literal] = ACTIONS(1293), - [anon_sym_DQUOTE] = ACTIONS(1295), - [sym_verbatim_string_literal] = ACTIONS(1293), - [aux_sym_preproc_if_token1] = ACTIONS(1297), + [anon_sym_stackalloc] = ACTIONS(127), + [anon_sym_sizeof] = ACTIONS(1277), + [anon_sym_typeof] = ACTIONS(1279), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), + [sym_null_literal] = ACTIONS(1287), + [anon_sym_SQUOTE] = ACTIONS(1289), + [sym_integer_literal] = ACTIONS(1287), + [sym_real_literal] = ACTIONS(1291), + [anon_sym_DQUOTE] = ACTIONS(1293), + [sym_verbatim_string_literal] = ACTIONS(1291), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -321292,140 +318474,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(1299), - [sym_interpolation_verbatim_start] = ACTIONS(1301), - [sym_interpolation_raw_start] = ACTIONS(1303), - [sym_raw_string_start] = ACTIONS(1305), + [sym_interpolation_regular_start] = ACTIONS(1297), + [sym_interpolation_verbatim_start] = ACTIONS(1299), + [sym_interpolation_raw_start] = ACTIONS(1301), + [sym_raw_string_start] = ACTIONS(1303), }, - [1654] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2914), - [sym__name] = STATE(5885), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2357), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(3767), - [sym_non_lvalue_expression] = STATE(3880), - [sym_lvalue_expression] = STATE(2986), - [sym__expression_statement_expression] = STATE(3873), - [sym_assignment_expression] = STATE(3881), - [sym_binary_expression] = STATE(3873), - [sym_postfix_unary_expression] = STATE(3881), - [sym_prefix_unary_expression] = STATE(3881), - [sym__pointer_indirection_expression] = STATE(2913), - [sym_query_expression] = STATE(3873), - [sym_from_clause] = STATE(6168), - [sym_conditional_expression] = STATE(3873), - [sym_conditional_access_expression] = STATE(3873), - [sym_as_expression] = STATE(3873), - [sym_is_expression] = STATE(3873), - [sym_is_pattern_expression] = STATE(3873), - [sym_cast_expression] = STATE(3873), - [sym_checked_expression] = STATE(3873), - [sym_invocation_expression] = STATE(3881), - [sym_switch_expression] = STATE(3873), - [sym_await_expression] = STATE(3881), - [sym_throw_expression] = STATE(3873), - [sym_element_access_expression] = STATE(2913), - [sym_interpolated_string_expression] = STATE(3873), - [sym_member_access_expression] = STATE(2913), - [sym_object_creation_expression] = STATE(3881), - [sym_parenthesized_expression] = STATE(3881), - [sym__parenthesized_lvalue_expression] = STATE(2913), - [sym_lambda_expression] = STATE(3873), - [sym__lambda_expression_init] = STATE(7587), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3873), - [sym_anonymous_method_expression] = STATE(3873), - [sym_anonymous_object_creation_expression] = STATE(3873), - [sym_implicit_array_creation_expression] = STATE(3873), - [sym_implicit_object_creation_expression] = STATE(3873), - [sym_implicit_stackalloc_expression] = STATE(3873), - [sym_initializer_expression] = STATE(3873), - [sym_default_expression] = STATE(3873), - [sym_with_expression] = STATE(3873), - [sym_sizeof_expression] = STATE(3873), - [sym_typeof_expression] = STATE(3873), - [sym_makeref_expression] = STATE(3873), - [sym_ref_expression] = STATE(3873), - [sym_reftype_expression] = STATE(3873), - [sym_refvalue_expression] = STATE(3873), - [sym_stackalloc_expression] = STATE(3873), - [sym_range_expression] = STATE(3873), - [sym_tuple_expression] = STATE(2913), - [sym_literal] = STATE(3873), - [sym_character_literal] = STATE(3877), - [sym_string_literal] = STATE(3877), - [sym_raw_string_literal] = STATE(3877), - [sym_boolean_literal] = STATE(3877), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3873), - [sym_preproc_if_in_attribute_list] = STATE(5576), - [sym_preproc_region] = STATE(1654), - [sym_preproc_endregion] = STATE(1654), - [sym_preproc_line] = STATE(1654), - [sym_preproc_pragma] = STATE(1654), - [sym_preproc_nullable] = STATE(1654), - [sym_preproc_error] = STATE(1654), - [sym_preproc_warning] = STATE(1654), - [sym_preproc_define] = STATE(1654), - [sym_preproc_undef] = STATE(1654), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3382), + [1638] = { + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(5881), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2386), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(4080), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3110), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3102), + [sym_postfix_unary_expression] = STATE(3079), + [sym_prefix_unary_expression] = STATE(3079), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6153), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3102), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3079), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3102), + [sym_member_access_expression] = STATE(2472), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3079), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7637), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(3102), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3102), + [sym_typeof_expression] = STATE(3102), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2472), + [sym_literal] = STATE(3102), + [sym_character_literal] = STATE(3037), + [sym_string_literal] = STATE(3037), + [sym_raw_string_literal] = STATE(3037), + [sym_boolean_literal] = STATE(3037), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), + [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(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1627), - [anon_sym_LPAREN] = ACTIONS(2079), - [anon_sym_ref] = ACTIONS(2081), - [anon_sym_LBRACE] = ACTIONS(1633), - [anon_sym_delegate] = ACTIONS(1635), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1479), + [anon_sym_LPAREN] = ACTIONS(1895), + [anon_sym_ref] = ACTIONS(1897), + [anon_sym_LBRACE] = ACTIONS(1481), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1731), + [anon_sym_new] = ACTIONS(1899), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1639), - [anon_sym_BANG] = ACTIONS(2085), - [anon_sym_TILDE] = ACTIONS(2085), - [anon_sym_PLUS_PLUS] = ACTIONS(2085), - [anon_sym_DASH_DASH] = ACTIONS(2085), - [anon_sym_true] = ACTIONS(1645), - [anon_sym_false] = ACTIONS(1645), - [anon_sym_PLUS] = ACTIONS(2083), - [anon_sym_DASH] = ACTIONS(2083), - [anon_sym_STAR] = ACTIONS(1737), - [anon_sym_CARET] = ACTIONS(2085), - [anon_sym_AMP] = ACTIONS(2085), - [anon_sym_this] = ACTIONS(1649), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(1903), + [anon_sym_TILDE] = ACTIONS(1903), + [anon_sym_PLUS_PLUS] = ACTIONS(1903), + [anon_sym_DASH_DASH] = ACTIONS(1903), + [anon_sym_true] = ACTIONS(1257), + [anon_sym_false] = ACTIONS(1257), + [anon_sym_PLUS] = ACTIONS(1901), + [anon_sym_DASH] = ACTIONS(1901), + [anon_sym_STAR] = ACTIONS(1905), + [anon_sym_CARET] = ACTIONS(1903), + [anon_sym_AMP] = ACTIONS(1903), + [anon_sym_this] = ACTIONS(83), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1651), + [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1653), - [anon_sym_unchecked] = ACTIONS(1639), + [sym_predefined_type] = ACTIONS(1265), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1655), - [anon_sym_throw] = ACTIONS(2087), + [anon_sym_default] = ACTIONS(1267), + [anon_sym_throw] = ACTIONS(1907), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2089), - [anon_sym_DOT_DOT] = ACTIONS(2091), + [anon_sym_await] = ACTIONS(1909), + [anon_sym_DOT_DOT] = ACTIONS(1911), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -321438,19 +318620,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1663), - [anon_sym_sizeof] = ACTIONS(1665), - [anon_sym_typeof] = ACTIONS(1667), - [anon_sym___makeref] = ACTIONS(1669), - [anon_sym___reftype] = ACTIONS(1671), - [anon_sym___refvalue] = ACTIONS(1673), - [sym_null_literal] = ACTIONS(1675), - [anon_sym_SQUOTE] = ACTIONS(1677), - [sym_integer_literal] = ACTIONS(1675), - [sym_real_literal] = ACTIONS(1679), - [anon_sym_DQUOTE] = ACTIONS(1681), - [sym_verbatim_string_literal] = ACTIONS(1679), - [aux_sym_preproc_if_token1] = ACTIONS(1683), + [anon_sym_stackalloc] = ACTIONS(127), + [anon_sym_sizeof] = ACTIONS(1277), + [anon_sym_typeof] = ACTIONS(1279), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), + [sym_null_literal] = ACTIONS(1287), + [anon_sym_SQUOTE] = ACTIONS(1289), + [sym_integer_literal] = ACTIONS(1287), + [sym_real_literal] = ACTIONS(1291), + [anon_sym_DQUOTE] = ACTIONS(1293), + [sym_verbatim_string_literal] = ACTIONS(1291), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -321461,140 +318643,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(1685), - [sym_interpolation_verbatim_start] = ACTIONS(1687), - [sym_interpolation_raw_start] = ACTIONS(1689), - [sym_raw_string_start] = ACTIONS(1691), + [sym_interpolation_regular_start] = ACTIONS(1297), + [sym_interpolation_verbatim_start] = ACTIONS(1299), + [sym_interpolation_raw_start] = ACTIONS(1301), + [sym_raw_string_start] = ACTIONS(1303), }, - [1655] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(5907), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2404), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(4218), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3140), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3080), - [sym_postfix_unary_expression] = STATE(3111), - [sym_prefix_unary_expression] = STATE(3111), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6183), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3080), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3111), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3080), - [sym_member_access_expression] = STATE(2484), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3111), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7703), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(3080), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3080), - [sym_typeof_expression] = STATE(3080), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2484), - [sym_literal] = STATE(3080), - [sym_character_literal] = STATE(3011), - [sym_string_literal] = STATE(3011), - [sym_raw_string_literal] = STATE(3011), - [sym_boolean_literal] = STATE(3011), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), - [sym_preproc_region] = STATE(1655), - [sym_preproc_endregion] = STATE(1655), - [sym_preproc_line] = STATE(1655), - [sym_preproc_pragma] = STATE(1655), - [sym_preproc_nullable] = STATE(1655), - [sym_preproc_error] = STATE(1655), - [sym_preproc_warning] = STATE(1655), - [sym_preproc_define] = STATE(1655), - [sym_preproc_undef] = STATE(1655), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [1639] = { + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(5881), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2386), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(4094), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3110), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3102), + [sym_postfix_unary_expression] = STATE(3079), + [sym_prefix_unary_expression] = STATE(3079), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6153), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3102), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3079), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3102), + [sym_member_access_expression] = STATE(2472), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3079), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7637), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(3102), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3102), + [sym_typeof_expression] = STATE(3102), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2472), + [sym_literal] = STATE(3102), + [sym_character_literal] = STATE(3037), + [sym_string_literal] = STATE(3037), + [sym_raw_string_literal] = STATE(3037), + [sym_boolean_literal] = STATE(3037), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), + [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(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1481), - [anon_sym_LPAREN] = ACTIONS(2251), - [anon_sym_ref] = ACTIONS(2253), - [anon_sym_LBRACE] = ACTIONS(1487), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1479), + [anon_sym_LPAREN] = ACTIONS(1895), + [anon_sym_ref] = ACTIONS(1897), + [anon_sym_LBRACE] = ACTIONS(1481), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1937), + [anon_sym_new] = ACTIONS(1899), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1067), - [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(1259), - [anon_sym_false] = ACTIONS(1259), - [anon_sym_PLUS] = ACTIONS(2255), - [anon_sym_DASH] = ACTIONS(2255), - [anon_sym_STAR] = ACTIONS(1943), - [anon_sym_CARET] = ACTIONS(2257), - [anon_sym_AMP] = ACTIONS(2257), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(1903), + [anon_sym_TILDE] = ACTIONS(1903), + [anon_sym_PLUS_PLUS] = ACTIONS(1903), + [anon_sym_DASH_DASH] = ACTIONS(1903), + [anon_sym_true] = ACTIONS(1257), + [anon_sym_false] = ACTIONS(1257), + [anon_sym_PLUS] = ACTIONS(1901), + [anon_sym_DASH] = ACTIONS(1901), + [anon_sym_STAR] = ACTIONS(1905), + [anon_sym_CARET] = ACTIONS(1903), + [anon_sym_AMP] = ACTIONS(1903), [anon_sym_this] = ACTIONS(83), [anon_sym_scoped] = ACTIONS(85), [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1267), - [anon_sym_unchecked] = ACTIONS(1067), + [sym_predefined_type] = ACTIONS(1265), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1269), - [anon_sym_throw] = ACTIONS(2259), + [anon_sym_default] = ACTIONS(1267), + [anon_sym_throw] = ACTIONS(1907), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2261), - [anon_sym_DOT_DOT] = ACTIONS(2263), + [anon_sym_await] = ACTIONS(1909), + [anon_sym_DOT_DOT] = ACTIONS(1911), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -321608,18 +318790,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(1279), - [anon_sym_typeof] = ACTIONS(1281), + [anon_sym_sizeof] = ACTIONS(1277), + [anon_sym_typeof] = ACTIONS(1279), [anon_sym___makeref] = ACTIONS(133), [anon_sym___reftype] = ACTIONS(135), [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(1289), - [anon_sym_SQUOTE] = ACTIONS(1291), - [sym_integer_literal] = ACTIONS(1289), - [sym_real_literal] = ACTIONS(1293), - [anon_sym_DQUOTE] = ACTIONS(1295), - [sym_verbatim_string_literal] = ACTIONS(1293), - [aux_sym_preproc_if_token1] = ACTIONS(1089), + [sym_null_literal] = ACTIONS(1287), + [anon_sym_SQUOTE] = ACTIONS(1289), + [sym_integer_literal] = ACTIONS(1287), + [sym_real_literal] = ACTIONS(1291), + [anon_sym_DQUOTE] = ACTIONS(1293), + [sym_verbatim_string_literal] = ACTIONS(1291), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -321630,140 +318812,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(1299), - [sym_interpolation_verbatim_start] = ACTIONS(1301), - [sym_interpolation_raw_start] = ACTIONS(1303), - [sym_raw_string_start] = ACTIONS(1305), + [sym_interpolation_regular_start] = ACTIONS(1297), + [sym_interpolation_verbatim_start] = ACTIONS(1299), + [sym_interpolation_raw_start] = ACTIONS(1301), + [sym_raw_string_start] = ACTIONS(1303), }, - [1656] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2610), - [sym__name] = STATE(5898), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2197), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(3855), - [sym_non_lvalue_expression] = STATE(3277), - [sym_lvalue_expression] = STATE(3023), - [sym__expression_statement_expression] = STATE(3228), - [sym_assignment_expression] = STATE(3289), - [sym_binary_expression] = STATE(3228), - [sym_postfix_unary_expression] = STATE(3289), - [sym_prefix_unary_expression] = STATE(3289), - [sym__pointer_indirection_expression] = STATE(2609), - [sym_query_expression] = STATE(3228), - [sym_from_clause] = STATE(6172), - [sym_conditional_expression] = STATE(3228), - [sym_conditional_access_expression] = STATE(3228), - [sym_as_expression] = STATE(3228), - [sym_is_expression] = STATE(3228), - [sym_is_pattern_expression] = STATE(3228), - [sym_cast_expression] = STATE(3228), - [sym_checked_expression] = STATE(3228), - [sym_invocation_expression] = STATE(3289), - [sym_switch_expression] = STATE(3228), - [sym_await_expression] = STATE(3289), - [sym_throw_expression] = STATE(3228), - [sym_element_access_expression] = STATE(2609), - [sym_interpolated_string_expression] = STATE(3228), - [sym_member_access_expression] = STATE(2609), - [sym_object_creation_expression] = STATE(3289), - [sym_parenthesized_expression] = STATE(3289), - [sym__parenthesized_lvalue_expression] = STATE(2609), - [sym_lambda_expression] = STATE(3228), - [sym__lambda_expression_init] = STATE(7653), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3228), - [sym_anonymous_method_expression] = STATE(3228), - [sym_anonymous_object_creation_expression] = STATE(3228), - [sym_implicit_array_creation_expression] = STATE(3228), - [sym_implicit_object_creation_expression] = STATE(3228), - [sym_implicit_stackalloc_expression] = STATE(3228), - [sym_initializer_expression] = STATE(3228), - [sym_default_expression] = STATE(3228), - [sym_with_expression] = STATE(3228), - [sym_sizeof_expression] = STATE(3228), - [sym_typeof_expression] = STATE(3228), - [sym_makeref_expression] = STATE(3228), - [sym_ref_expression] = STATE(3228), - [sym_reftype_expression] = STATE(3228), - [sym_refvalue_expression] = STATE(3228), - [sym_stackalloc_expression] = STATE(3228), - [sym_range_expression] = STATE(3228), - [sym_tuple_expression] = STATE(2609), - [sym_literal] = STATE(3228), - [sym_character_literal] = STATE(3278), - [sym_string_literal] = STATE(3278), - [sym_raw_string_literal] = STATE(3278), - [sym_boolean_literal] = STATE(3278), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3228), - [sym_preproc_if_in_attribute_list] = STATE(5576), - [sym_preproc_region] = STATE(1656), - [sym_preproc_endregion] = STATE(1656), - [sym_preproc_line] = STATE(1656), - [sym_preproc_pragma] = STATE(1656), - [sym_preproc_nullable] = STATE(1656), - [sym_preproc_error] = STATE(1656), - [sym_preproc_warning] = STATE(1656), - [sym_preproc_define] = STATE(1656), - [sym_preproc_undef] = STATE(1656), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3396), + [1640] = { + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(5881), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2386), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(4064), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3110), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3102), + [sym_postfix_unary_expression] = STATE(3079), + [sym_prefix_unary_expression] = STATE(3079), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6153), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3102), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3079), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3102), + [sym_member_access_expression] = STATE(2472), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3079), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7637), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(3102), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3102), + [sym_typeof_expression] = STATE(3102), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2472), + [sym_literal] = STATE(3102), + [sym_character_literal] = STATE(3037), + [sym_string_literal] = STATE(3037), + [sym_raw_string_literal] = STATE(3037), + [sym_boolean_literal] = STATE(3037), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), + [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(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1153), - [anon_sym_LPAREN] = ACTIONS(1155), - [anon_sym_ref] = ACTIONS(1157), - [anon_sym_LBRACE] = ACTIONS(1159), - [anon_sym_delegate] = ACTIONS(1161), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1479), + [anon_sym_LPAREN] = ACTIONS(1895), + [anon_sym_ref] = ACTIONS(1897), + [anon_sym_LBRACE] = ACTIONS(1481), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1163), + [anon_sym_new] = ACTIONS(1899), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1167), - [anon_sym_BANG] = ACTIONS(1171), - [anon_sym_TILDE] = ACTIONS(1171), - [anon_sym_PLUS_PLUS] = ACTIONS(1171), - [anon_sym_DASH_DASH] = ACTIONS(1171), - [anon_sym_true] = ACTIONS(1173), - [anon_sym_false] = ACTIONS(1173), - [anon_sym_PLUS] = ACTIONS(1169), - [anon_sym_DASH] = ACTIONS(1169), - [anon_sym_STAR] = ACTIONS(1175), - [anon_sym_CARET] = ACTIONS(1171), - [anon_sym_AMP] = ACTIONS(1171), - [anon_sym_this] = ACTIONS(1177), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(1903), + [anon_sym_TILDE] = ACTIONS(1903), + [anon_sym_PLUS_PLUS] = ACTIONS(1903), + [anon_sym_DASH_DASH] = ACTIONS(1903), + [anon_sym_true] = ACTIONS(1257), + [anon_sym_false] = ACTIONS(1257), + [anon_sym_PLUS] = ACTIONS(1901), + [anon_sym_DASH] = ACTIONS(1901), + [anon_sym_STAR] = ACTIONS(1905), + [anon_sym_CARET] = ACTIONS(1903), + [anon_sym_AMP] = ACTIONS(1903), + [anon_sym_this] = ACTIONS(83), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1179), + [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1181), - [anon_sym_unchecked] = ACTIONS(1167), + [sym_predefined_type] = ACTIONS(1265), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1183), - [anon_sym_throw] = ACTIONS(1185), + [anon_sym_default] = ACTIONS(1267), + [anon_sym_throw] = ACTIONS(1907), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1187), - [anon_sym_DOT_DOT] = ACTIONS(1189), + [anon_sym_await] = ACTIONS(1909), + [anon_sym_DOT_DOT] = ACTIONS(1911), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -321776,19 +318958,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1191), - [anon_sym_sizeof] = ACTIONS(1193), - [anon_sym_typeof] = ACTIONS(1195), - [anon_sym___makeref] = ACTIONS(1197), - [anon_sym___reftype] = ACTIONS(1199), - [anon_sym___refvalue] = ACTIONS(1201), - [sym_null_literal] = ACTIONS(1203), - [anon_sym_SQUOTE] = ACTIONS(1205), - [sym_integer_literal] = ACTIONS(1203), - [sym_real_literal] = ACTIONS(1207), - [anon_sym_DQUOTE] = ACTIONS(1209), - [sym_verbatim_string_literal] = ACTIONS(1207), - [aux_sym_preproc_if_token1] = ACTIONS(1211), + [anon_sym_stackalloc] = ACTIONS(127), + [anon_sym_sizeof] = ACTIONS(1277), + [anon_sym_typeof] = ACTIONS(1279), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), + [sym_null_literal] = ACTIONS(1287), + [anon_sym_SQUOTE] = ACTIONS(1289), + [sym_integer_literal] = ACTIONS(1287), + [sym_real_literal] = ACTIONS(1291), + [anon_sym_DQUOTE] = ACTIONS(1293), + [sym_verbatim_string_literal] = ACTIONS(1291), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -321799,140 +318981,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(1213), - [sym_interpolation_verbatim_start] = ACTIONS(1215), - [sym_interpolation_raw_start] = ACTIONS(1217), - [sym_raw_string_start] = ACTIONS(1219), + [sym_interpolation_regular_start] = ACTIONS(1297), + [sym_interpolation_verbatim_start] = ACTIONS(1299), + [sym_interpolation_raw_start] = ACTIONS(1301), + [sym_raw_string_start] = ACTIONS(1303), }, - [1657] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(5634), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2204), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(3543), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3664), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3080), - [sym_postfix_unary_expression] = STATE(3111), - [sym_prefix_unary_expression] = STATE(3111), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6161), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3080), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3111), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3080), - [sym_member_access_expression] = STATE(2484), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3111), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7773), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(3080), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3080), - [sym_typeof_expression] = STATE(3080), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2484), - [sym_literal] = STATE(3080), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), - [sym_preproc_region] = STATE(1657), - [sym_preproc_endregion] = STATE(1657), - [sym_preproc_line] = STATE(1657), - [sym_preproc_pragma] = STATE(1657), - [sym_preproc_nullable] = STATE(1657), - [sym_preproc_error] = STATE(1657), - [sym_preproc_warning] = STATE(1657), - [sym_preproc_define] = STATE(1657), - [sym_preproc_undef] = STATE(1657), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [1641] = { + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(5881), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2386), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(4061), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3110), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3102), + [sym_postfix_unary_expression] = STATE(3079), + [sym_prefix_unary_expression] = STATE(3079), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6153), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3102), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3079), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3102), + [sym_member_access_expression] = STATE(2472), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3079), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7637), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(3102), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3102), + [sym_typeof_expression] = STATE(3102), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2472), + [sym_literal] = STATE(3102), + [sym_character_literal] = STATE(3037), + [sym_string_literal] = STATE(3037), + [sym_raw_string_literal] = STATE(3037), + [sym_boolean_literal] = STATE(3037), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), + [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(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1481), - [anon_sym_LPAREN] = ACTIONS(2015), - [anon_sym_ref] = ACTIONS(2017), - [anon_sym_LBRACE] = ACTIONS(1487), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1479), + [anon_sym_LPAREN] = ACTIONS(1895), + [anon_sym_ref] = ACTIONS(1897), + [anon_sym_LBRACE] = ACTIONS(1481), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1101), + [anon_sym_new] = ACTIONS(1899), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1067), - [anon_sym_BANG] = ACTIONS(2021), - [anon_sym_TILDE] = ACTIONS(2021), - [anon_sym_PLUS_PLUS] = ACTIONS(2021), - [anon_sym_DASH_DASH] = ACTIONS(2021), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(2019), - [anon_sym_DASH] = ACTIONS(2019), - [anon_sym_STAR] = ACTIONS(1229), - [anon_sym_CARET] = ACTIONS(2021), - [anon_sym_AMP] = ACTIONS(2021), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(1903), + [anon_sym_TILDE] = ACTIONS(1903), + [anon_sym_PLUS_PLUS] = ACTIONS(1903), + [anon_sym_DASH_DASH] = ACTIONS(1903), + [anon_sym_true] = ACTIONS(1257), + [anon_sym_false] = ACTIONS(1257), + [anon_sym_PLUS] = ACTIONS(1901), + [anon_sym_DASH] = ACTIONS(1901), + [anon_sym_STAR] = ACTIONS(1905), + [anon_sym_CARET] = ACTIONS(1903), + [anon_sym_AMP] = ACTIONS(1903), [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(1067), + [sym_predefined_type] = ACTIONS(1265), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1233), + [anon_sym_default] = ACTIONS(1267), + [anon_sym_throw] = ACTIONS(1907), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1235), - [anon_sym_DOT_DOT] = ACTIONS(1237), + [anon_sym_await] = ACTIONS(1909), + [anon_sym_DOT_DOT] = ACTIONS(1911), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -321946,18 +319128,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(129), - [anon_sym_typeof] = ACTIONS(131), + [anon_sym_sizeof] = ACTIONS(1277), + [anon_sym_typeof] = ACTIONS(1279), [anon_sym___makeref] = ACTIONS(133), [anon_sym___reftype] = ACTIONS(135), [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1089), + [sym_null_literal] = ACTIONS(1287), + [anon_sym_SQUOTE] = ACTIONS(1289), + [sym_integer_literal] = ACTIONS(1287), + [sym_real_literal] = ACTIONS(1291), + [anon_sym_DQUOTE] = ACTIONS(1293), + [sym_verbatim_string_literal] = ACTIONS(1291), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -321968,140 +319150,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(1297), + [sym_interpolation_verbatim_start] = ACTIONS(1299), + [sym_interpolation_raw_start] = ACTIONS(1301), + [sym_raw_string_start] = ACTIONS(1303), }, - [1658] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2762), - [sym__name] = STATE(5910), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2247), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(4185), - [sym_non_lvalue_expression] = STATE(3438), - [sym_lvalue_expression] = STATE(3136), - [sym__expression_statement_expression] = STATE(3362), - [sym_assignment_expression] = STATE(3449), - [sym_binary_expression] = STATE(3362), - [sym_postfix_unary_expression] = STATE(3449), - [sym_prefix_unary_expression] = STATE(3449), - [sym__pointer_indirection_expression] = STATE(2747), - [sym_query_expression] = STATE(3362), - [sym_from_clause] = STATE(6171), - [sym_conditional_expression] = STATE(3362), - [sym_conditional_access_expression] = STATE(3362), - [sym_as_expression] = STATE(3362), - [sym_is_expression] = STATE(3362), - [sym_is_pattern_expression] = STATE(3362), - [sym_cast_expression] = STATE(3362), - [sym_checked_expression] = STATE(3362), - [sym_invocation_expression] = STATE(3449), - [sym_switch_expression] = STATE(3362), - [sym_await_expression] = STATE(3449), - [sym_throw_expression] = STATE(3362), - [sym_element_access_expression] = STATE(2747), - [sym_interpolated_string_expression] = STATE(3362), - [sym_member_access_expression] = STATE(2747), - [sym_object_creation_expression] = STATE(3449), - [sym_parenthesized_expression] = STATE(3449), - [sym__parenthesized_lvalue_expression] = STATE(2747), - [sym_lambda_expression] = STATE(3362), - [sym__lambda_expression_init] = STATE(7452), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3362), - [sym_anonymous_method_expression] = STATE(3362), - [sym_anonymous_object_creation_expression] = STATE(3362), - [sym_implicit_array_creation_expression] = STATE(3362), - [sym_implicit_object_creation_expression] = STATE(3362), - [sym_implicit_stackalloc_expression] = STATE(3362), - [sym_initializer_expression] = STATE(3362), - [sym_default_expression] = STATE(3362), - [sym_with_expression] = STATE(3362), - [sym_sizeof_expression] = STATE(3362), - [sym_typeof_expression] = STATE(3362), - [sym_makeref_expression] = STATE(3362), - [sym_ref_expression] = STATE(3362), - [sym_reftype_expression] = STATE(3362), - [sym_refvalue_expression] = STATE(3362), - [sym_stackalloc_expression] = STATE(3362), - [sym_range_expression] = STATE(3362), - [sym_tuple_expression] = STATE(2747), - [sym_literal] = STATE(3362), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3362), - [sym_preproc_if_in_attribute_list] = STATE(5576), - [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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3385), + [1642] = { + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(5881), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2386), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(4072), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3110), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3102), + [sym_postfix_unary_expression] = STATE(3079), + [sym_prefix_unary_expression] = STATE(3079), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6153), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3102), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3079), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3102), + [sym_member_access_expression] = STATE(2472), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3079), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7637), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(3102), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3102), + [sym_typeof_expression] = STATE(3102), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2472), + [sym_literal] = STATE(3102), + [sym_character_literal] = STATE(3037), + [sym_string_literal] = STATE(3037), + [sym_raw_string_literal] = STATE(3037), + [sym_boolean_literal] = STATE(3037), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), + [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(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1307), - [anon_sym_LPAREN] = ACTIONS(1309), - [anon_sym_ref] = ACTIONS(1311), - [anon_sym_LBRACE] = ACTIONS(1313), - [anon_sym_delegate] = ACTIONS(1315), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1479), + [anon_sym_LPAREN] = ACTIONS(1895), + [anon_sym_ref] = ACTIONS(1897), + [anon_sym_LBRACE] = ACTIONS(1481), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1317), + [anon_sym_new] = ACTIONS(1899), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1319), - [anon_sym_BANG] = ACTIONS(1069), - [anon_sym_TILDE] = ACTIONS(1069), - [anon_sym_PLUS_PLUS] = ACTIONS(1069), - [anon_sym_DASH_DASH] = ACTIONS(1069), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1071), - [anon_sym_DASH] = ACTIONS(1071), - [anon_sym_STAR] = ACTIONS(1321), - [anon_sym_CARET] = ACTIONS(1069), - [anon_sym_AMP] = ACTIONS(1069), - [anon_sym_this] = ACTIONS(1323), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(1903), + [anon_sym_TILDE] = ACTIONS(1903), + [anon_sym_PLUS_PLUS] = ACTIONS(1903), + [anon_sym_DASH_DASH] = ACTIONS(1903), + [anon_sym_true] = ACTIONS(1257), + [anon_sym_false] = ACTIONS(1257), + [anon_sym_PLUS] = ACTIONS(1901), + [anon_sym_DASH] = ACTIONS(1901), + [anon_sym_STAR] = ACTIONS(1905), + [anon_sym_CARET] = ACTIONS(1903), + [anon_sym_AMP] = ACTIONS(1903), + [anon_sym_this] = ACTIONS(83), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1325), + [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1319), + [sym_predefined_type] = ACTIONS(1265), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1327), + [anon_sym_default] = ACTIONS(1267), + [anon_sym_throw] = ACTIONS(1907), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1329), - [anon_sym_DOT_DOT] = ACTIONS(1331), + [anon_sym_await] = ACTIONS(1909), + [anon_sym_DOT_DOT] = ACTIONS(1911), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -322114,19 +319296,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1333), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(1335), - [anon_sym___reftype] = ACTIONS(1337), - [anon_sym___refvalue] = ACTIONS(1339), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1341), + [anon_sym_stackalloc] = ACTIONS(127), + [anon_sym_sizeof] = ACTIONS(1277), + [anon_sym_typeof] = ACTIONS(1279), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), + [sym_null_literal] = ACTIONS(1287), + [anon_sym_SQUOTE] = ACTIONS(1289), + [sym_integer_literal] = ACTIONS(1287), + [sym_real_literal] = ACTIONS(1291), + [anon_sym_DQUOTE] = ACTIONS(1293), + [sym_verbatim_string_literal] = ACTIONS(1291), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -322137,140 +319319,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(1297), + [sym_interpolation_verbatim_start] = ACTIONS(1299), + [sym_interpolation_raw_start] = ACTIONS(1301), + [sym_raw_string_start] = ACTIONS(1303), }, - [1659] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(5910), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2247), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(5654), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3379), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3080), - [sym_postfix_unary_expression] = STATE(3111), - [sym_prefix_unary_expression] = STATE(3111), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6154), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3080), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3111), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3080), - [sym_member_access_expression] = STATE(2484), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3111), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7575), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(3080), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3080), - [sym_typeof_expression] = STATE(3080), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2484), - [sym_literal] = STATE(3080), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), - [sym_preproc_region] = STATE(1659), - [sym_preproc_endregion] = STATE(1659), - [sym_preproc_line] = STATE(1659), - [sym_preproc_pragma] = STATE(1659), - [sym_preproc_nullable] = STATE(1659), - [sym_preproc_error] = STATE(1659), - [sym_preproc_warning] = STATE(1659), - [sym_preproc_define] = STATE(1659), - [sym_preproc_undef] = STATE(1659), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [1643] = { + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(5881), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2386), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(4089), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3110), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3102), + [sym_postfix_unary_expression] = STATE(3079), + [sym_prefix_unary_expression] = STATE(3079), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6153), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3102), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3079), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3102), + [sym_member_access_expression] = STATE(2472), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3079), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7637), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(3102), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3102), + [sym_typeof_expression] = STATE(3102), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2472), + [sym_literal] = STATE(3102), + [sym_character_literal] = STATE(3037), + [sym_string_literal] = STATE(3037), + [sym_raw_string_literal] = STATE(3037), + [sym_boolean_literal] = STATE(3037), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), + [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(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1481), - [anon_sym_LPAREN] = ACTIONS(895), - [anon_sym_ref] = ACTIONS(897), - [anon_sym_LBRACE] = ACTIONS(1487), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1479), + [anon_sym_LPAREN] = ACTIONS(1895), + [anon_sym_ref] = ACTIONS(1897), + [anon_sym_LBRACE] = ACTIONS(1481), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1061), + [anon_sym_new] = ACTIONS(1899), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1067), - [anon_sym_BANG] = ACTIONS(1495), - [anon_sym_TILDE] = ACTIONS(1495), - [anon_sym_PLUS_PLUS] = ACTIONS(1495), - [anon_sym_DASH_DASH] = ACTIONS(1495), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1493), - [anon_sym_DASH] = ACTIONS(1493), - [anon_sym_STAR] = ACTIONS(905), - [anon_sym_CARET] = ACTIONS(1495), - [anon_sym_AMP] = ACTIONS(1495), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(1903), + [anon_sym_TILDE] = ACTIONS(1903), + [anon_sym_PLUS_PLUS] = ACTIONS(1903), + [anon_sym_DASH_DASH] = ACTIONS(1903), + [anon_sym_true] = ACTIONS(1257), + [anon_sym_false] = ACTIONS(1257), + [anon_sym_PLUS] = ACTIONS(1901), + [anon_sym_DASH] = ACTIONS(1901), + [anon_sym_STAR] = ACTIONS(1905), + [anon_sym_CARET] = ACTIONS(1903), + [anon_sym_AMP] = ACTIONS(1903), [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(1067), + [sym_predefined_type] = ACTIONS(1265), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1079), + [anon_sym_default] = ACTIONS(1267), + [anon_sym_throw] = ACTIONS(1907), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1081), - [anon_sym_DOT_DOT] = ACTIONS(911), + [anon_sym_await] = ACTIONS(1909), + [anon_sym_DOT_DOT] = ACTIONS(1911), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -322284,18 +319466,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(129), - [anon_sym_typeof] = ACTIONS(131), + [anon_sym_sizeof] = ACTIONS(1277), + [anon_sym_typeof] = ACTIONS(1279), [anon_sym___makeref] = ACTIONS(133), [anon_sym___reftype] = ACTIONS(135), [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1089), + [sym_null_literal] = ACTIONS(1287), + [anon_sym_SQUOTE] = ACTIONS(1289), + [sym_integer_literal] = ACTIONS(1287), + [sym_real_literal] = ACTIONS(1291), + [anon_sym_DQUOTE] = ACTIONS(1293), + [sym_verbatim_string_literal] = ACTIONS(1291), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -322306,140 +319488,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(1297), + [sym_interpolation_verbatim_start] = ACTIONS(1299), + [sym_interpolation_raw_start] = ACTIONS(1301), + [sym_raw_string_start] = ACTIONS(1303), }, - [1660] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(5910), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2247), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(5657), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3379), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3080), - [sym_postfix_unary_expression] = STATE(3111), - [sym_prefix_unary_expression] = STATE(3111), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6154), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3080), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3111), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3080), - [sym_member_access_expression] = STATE(2484), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3111), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7575), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(3080), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3080), - [sym_typeof_expression] = STATE(3080), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2484), - [sym_literal] = STATE(3080), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), - [sym_preproc_region] = STATE(1660), - [sym_preproc_endregion] = STATE(1660), - [sym_preproc_line] = STATE(1660), - [sym_preproc_pragma] = STATE(1660), - [sym_preproc_nullable] = STATE(1660), - [sym_preproc_error] = STATE(1660), - [sym_preproc_warning] = STATE(1660), - [sym_preproc_define] = STATE(1660), - [sym_preproc_undef] = STATE(1660), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [1644] = { + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2901), + [sym__name] = STATE(5883), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2359), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(3680), + [sym_non_lvalue_expression] = STATE(3685), + [sym_lvalue_expression] = STATE(2944), + [sym__expression_statement_expression] = STATE(3836), + [sym_assignment_expression] = STATE(3689), + [sym_binary_expression] = STATE(3836), + [sym_postfix_unary_expression] = STATE(3689), + [sym_prefix_unary_expression] = STATE(3689), + [sym__pointer_indirection_expression] = STATE(2906), + [sym_query_expression] = STATE(3836), + [sym_from_clause] = STATE(6139), + [sym_conditional_expression] = STATE(3836), + [sym_conditional_access_expression] = STATE(3836), + [sym_as_expression] = STATE(3836), + [sym_is_expression] = STATE(3836), + [sym_is_pattern_expression] = STATE(3836), + [sym_cast_expression] = STATE(3836), + [sym_checked_expression] = STATE(3836), + [sym_invocation_expression] = STATE(3689), + [sym_switch_expression] = STATE(3836), + [sym_await_expression] = STATE(3689), + [sym_throw_expression] = STATE(3836), + [sym_element_access_expression] = STATE(2906), + [sym_interpolated_string_expression] = STATE(3836), + [sym_member_access_expression] = STATE(2906), + [sym_object_creation_expression] = STATE(3689), + [sym_parenthesized_expression] = STATE(3689), + [sym__parenthesized_lvalue_expression] = STATE(2906), + [sym_lambda_expression] = STATE(3836), + [sym__lambda_expression_init] = STATE(7516), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3836), + [sym_anonymous_method_expression] = STATE(3836), + [sym_anonymous_object_creation_expression] = STATE(3836), + [sym_implicit_array_creation_expression] = STATE(3836), + [sym_implicit_object_creation_expression] = STATE(3836), + [sym_implicit_stackalloc_expression] = STATE(3836), + [sym_initializer_expression] = STATE(3836), + [sym_default_expression] = STATE(3836), + [sym_with_expression] = STATE(3836), + [sym_sizeof_expression] = STATE(3836), + [sym_typeof_expression] = STATE(3836), + [sym_makeref_expression] = STATE(3836), + [sym_ref_expression] = STATE(3836), + [sym_reftype_expression] = STATE(3836), + [sym_refvalue_expression] = STATE(3836), + [sym_stackalloc_expression] = STATE(3836), + [sym_range_expression] = STATE(3836), + [sym_tuple_expression] = STATE(2906), + [sym_literal] = STATE(3836), + [sym_character_literal] = STATE(3843), + [sym_string_literal] = STATE(3843), + [sym_raw_string_literal] = STATE(3843), + [sym_boolean_literal] = STATE(3843), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3836), + [sym_preproc_if_in_attribute_list] = STATE(5583), + [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(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3477), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1481), - [anon_sym_LPAREN] = ACTIONS(895), - [anon_sym_ref] = ACTIONS(897), - [anon_sym_LBRACE] = ACTIONS(1487), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1655), + [anon_sym_LPAREN] = ACTIONS(1657), + [anon_sym_ref] = ACTIONS(1659), + [anon_sym_LBRACE] = ACTIONS(1661), + [anon_sym_delegate] = ACTIONS(1663), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1061), + [anon_sym_new] = ACTIONS(1665), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1067), - [anon_sym_BANG] = ACTIONS(1495), - [anon_sym_TILDE] = ACTIONS(1495), - [anon_sym_PLUS_PLUS] = ACTIONS(1495), - [anon_sym_DASH_DASH] = ACTIONS(1495), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1493), - [anon_sym_DASH] = ACTIONS(1493), - [anon_sym_STAR] = ACTIONS(905), - [anon_sym_CARET] = ACTIONS(1495), - [anon_sym_AMP] = ACTIONS(1495), - [anon_sym_this] = ACTIONS(83), + [anon_sym_checked] = ACTIONS(1667), + [anon_sym_BANG] = ACTIONS(1671), + [anon_sym_TILDE] = ACTIONS(1671), + [anon_sym_PLUS_PLUS] = ACTIONS(1671), + [anon_sym_DASH_DASH] = ACTIONS(1671), + [anon_sym_true] = ACTIONS(1673), + [anon_sym_false] = ACTIONS(1673), + [anon_sym_PLUS] = ACTIONS(1669), + [anon_sym_DASH] = ACTIONS(1669), + [anon_sym_STAR] = ACTIONS(1675), + [anon_sym_CARET] = ACTIONS(1671), + [anon_sym_AMP] = ACTIONS(1671), + [anon_sym_this] = ACTIONS(1677), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), + [anon_sym_base] = ACTIONS(1679), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1067), + [sym_predefined_type] = ACTIONS(1681), + [anon_sym_unchecked] = ACTIONS(1667), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1079), + [anon_sym_default] = ACTIONS(1683), + [anon_sym_throw] = ACTIONS(1685), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1081), - [anon_sym_DOT_DOT] = ACTIONS(911), + [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), @@ -322452,19 +319634,19 @@ static const uint16_t ts_parse_table[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(1089), + [anon_sym_stackalloc] = ACTIONS(1691), + [anon_sym_sizeof] = ACTIONS(1693), + [anon_sym_typeof] = ACTIONS(1695), + [anon_sym___makeref] = ACTIONS(1697), + [anon_sym___reftype] = ACTIONS(1699), + [anon_sym___refvalue] = ACTIONS(1701), + [sym_null_literal] = ACTIONS(1703), + [anon_sym_SQUOTE] = ACTIONS(1705), + [sym_integer_literal] = ACTIONS(1703), + [sym_real_literal] = ACTIONS(1707), + [anon_sym_DQUOTE] = ACTIONS(1709), + [sym_verbatim_string_literal] = ACTIONS(1707), + [aux_sym_preproc_if_token1] = ACTIONS(1711), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -322475,140 +319657,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(1713), + [sym_interpolation_verbatim_start] = ACTIONS(1715), + [sym_interpolation_raw_start] = ACTIONS(1717), + [sym_raw_string_start] = ACTIONS(1719), }, - [1661] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(5910), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2247), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(5658), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3379), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3080), - [sym_postfix_unary_expression] = STATE(3111), - [sym_prefix_unary_expression] = STATE(3111), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6154), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3080), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3111), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3080), - [sym_member_access_expression] = STATE(2484), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3111), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7575), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(3080), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3080), - [sym_typeof_expression] = STATE(3080), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2484), - [sym_literal] = STATE(3080), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), - [sym_preproc_region] = STATE(1661), - [sym_preproc_endregion] = STATE(1661), - [sym_preproc_line] = STATE(1661), - [sym_preproc_pragma] = STATE(1661), - [sym_preproc_nullable] = STATE(1661), - [sym_preproc_error] = STATE(1661), - [sym_preproc_warning] = STATE(1661), - [sym_preproc_define] = STATE(1661), - [sym_preproc_undef] = STATE(1661), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [1645] = { + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(5881), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2386), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(4067), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3110), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3102), + [sym_postfix_unary_expression] = STATE(3079), + [sym_prefix_unary_expression] = STATE(3079), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6153), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3102), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3079), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3102), + [sym_member_access_expression] = STATE(2472), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3079), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7637), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(3102), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3102), + [sym_typeof_expression] = STATE(3102), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2472), + [sym_literal] = STATE(3102), + [sym_character_literal] = STATE(3037), + [sym_string_literal] = STATE(3037), + [sym_raw_string_literal] = STATE(3037), + [sym_boolean_literal] = STATE(3037), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), + [sym_preproc_region] = STATE(1645), + [sym_preproc_endregion] = STATE(1645), + [sym_preproc_line] = STATE(1645), + [sym_preproc_pragma] = STATE(1645), + [sym_preproc_nullable] = STATE(1645), + [sym_preproc_error] = STATE(1645), + [sym_preproc_warning] = STATE(1645), + [sym_preproc_define] = STATE(1645), + [sym_preproc_undef] = STATE(1645), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1481), - [anon_sym_LPAREN] = ACTIONS(895), - [anon_sym_ref] = ACTIONS(897), - [anon_sym_LBRACE] = ACTIONS(1487), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1479), + [anon_sym_LPAREN] = ACTIONS(1895), + [anon_sym_ref] = ACTIONS(1897), + [anon_sym_LBRACE] = ACTIONS(1481), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1061), + [anon_sym_new] = ACTIONS(1899), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1067), - [anon_sym_BANG] = ACTIONS(1495), - [anon_sym_TILDE] = ACTIONS(1495), - [anon_sym_PLUS_PLUS] = ACTIONS(1495), - [anon_sym_DASH_DASH] = ACTIONS(1495), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1493), - [anon_sym_DASH] = ACTIONS(1493), - [anon_sym_STAR] = ACTIONS(905), - [anon_sym_CARET] = ACTIONS(1495), - [anon_sym_AMP] = ACTIONS(1495), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(1903), + [anon_sym_TILDE] = ACTIONS(1903), + [anon_sym_PLUS_PLUS] = ACTIONS(1903), + [anon_sym_DASH_DASH] = ACTIONS(1903), + [anon_sym_true] = ACTIONS(1257), + [anon_sym_false] = ACTIONS(1257), + [anon_sym_PLUS] = ACTIONS(1901), + [anon_sym_DASH] = ACTIONS(1901), + [anon_sym_STAR] = ACTIONS(1905), + [anon_sym_CARET] = ACTIONS(1903), + [anon_sym_AMP] = ACTIONS(1903), [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(1067), + [sym_predefined_type] = ACTIONS(1265), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1079), + [anon_sym_default] = ACTIONS(1267), + [anon_sym_throw] = ACTIONS(1907), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1081), - [anon_sym_DOT_DOT] = ACTIONS(911), + [anon_sym_await] = ACTIONS(1909), + [anon_sym_DOT_DOT] = ACTIONS(1911), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -322622,18 +319804,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(129), - [anon_sym_typeof] = ACTIONS(131), + [anon_sym_sizeof] = ACTIONS(1277), + [anon_sym_typeof] = ACTIONS(1279), [anon_sym___makeref] = ACTIONS(133), [anon_sym___reftype] = ACTIONS(135), [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1089), + [sym_null_literal] = ACTIONS(1287), + [anon_sym_SQUOTE] = ACTIONS(1289), + [sym_integer_literal] = ACTIONS(1287), + [sym_real_literal] = ACTIONS(1291), + [anon_sym_DQUOTE] = ACTIONS(1293), + [sym_verbatim_string_literal] = ACTIONS(1291), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -322644,140 +319826,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(1297), + [sym_interpolation_verbatim_start] = ACTIONS(1299), + [sym_interpolation_raw_start] = ACTIONS(1301), + [sym_raw_string_start] = ACTIONS(1303), }, - [1662] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(5160), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2204), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(5324), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3461), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3080), - [sym_postfix_unary_expression] = STATE(3111), - [sym_prefix_unary_expression] = STATE(3111), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6154), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3080), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3111), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3080), - [sym_member_access_expression] = STATE(2484), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3111), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7547), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(3080), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3080), - [sym_typeof_expression] = STATE(3080), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2484), - [sym_literal] = STATE(3080), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), - [sym_preproc_region] = STATE(1662), - [sym_preproc_endregion] = STATE(1662), - [sym_preproc_line] = STATE(1662), - [sym_preproc_pragma] = STATE(1662), - [sym_preproc_nullable] = STATE(1662), - [sym_preproc_error] = STATE(1662), - [sym_preproc_warning] = STATE(1662), - [sym_preproc_define] = STATE(1662), - [sym_preproc_undef] = STATE(1662), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [1646] = { + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2901), + [sym__name] = STATE(5883), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2359), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(3669), + [sym_non_lvalue_expression] = STATE(3685), + [sym_lvalue_expression] = STATE(2944), + [sym__expression_statement_expression] = STATE(3836), + [sym_assignment_expression] = STATE(3689), + [sym_binary_expression] = STATE(3836), + [sym_postfix_unary_expression] = STATE(3689), + [sym_prefix_unary_expression] = STATE(3689), + [sym__pointer_indirection_expression] = STATE(2906), + [sym_query_expression] = STATE(3836), + [sym_from_clause] = STATE(6139), + [sym_conditional_expression] = STATE(3836), + [sym_conditional_access_expression] = STATE(3836), + [sym_as_expression] = STATE(3836), + [sym_is_expression] = STATE(3836), + [sym_is_pattern_expression] = STATE(3836), + [sym_cast_expression] = STATE(3836), + [sym_checked_expression] = STATE(3836), + [sym_invocation_expression] = STATE(3689), + [sym_switch_expression] = STATE(3836), + [sym_await_expression] = STATE(3689), + [sym_throw_expression] = STATE(3836), + [sym_element_access_expression] = STATE(2906), + [sym_interpolated_string_expression] = STATE(3836), + [sym_member_access_expression] = STATE(2906), + [sym_object_creation_expression] = STATE(3689), + [sym_parenthesized_expression] = STATE(3689), + [sym__parenthesized_lvalue_expression] = STATE(2906), + [sym_lambda_expression] = STATE(3836), + [sym__lambda_expression_init] = STATE(7516), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3836), + [sym_anonymous_method_expression] = STATE(3836), + [sym_anonymous_object_creation_expression] = STATE(3836), + [sym_implicit_array_creation_expression] = STATE(3836), + [sym_implicit_object_creation_expression] = STATE(3836), + [sym_implicit_stackalloc_expression] = STATE(3836), + [sym_initializer_expression] = STATE(3836), + [sym_default_expression] = STATE(3836), + [sym_with_expression] = STATE(3836), + [sym_sizeof_expression] = STATE(3836), + [sym_typeof_expression] = STATE(3836), + [sym_makeref_expression] = STATE(3836), + [sym_ref_expression] = STATE(3836), + [sym_reftype_expression] = STATE(3836), + [sym_refvalue_expression] = STATE(3836), + [sym_stackalloc_expression] = STATE(3836), + [sym_range_expression] = STATE(3836), + [sym_tuple_expression] = STATE(2906), + [sym_literal] = STATE(3836), + [sym_character_literal] = STATE(3843), + [sym_string_literal] = STATE(3843), + [sym_raw_string_literal] = STATE(3843), + [sym_boolean_literal] = STATE(3843), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3836), + [sym_preproc_if_in_attribute_list] = STATE(5583), + [sym_preproc_region] = STATE(1646), + [sym_preproc_endregion] = STATE(1646), + [sym_preproc_line] = STATE(1646), + [sym_preproc_pragma] = STATE(1646), + [sym_preproc_nullable] = STATE(1646), + [sym_preproc_error] = STATE(1646), + [sym_preproc_warning] = STATE(1646), + [sym_preproc_define] = STATE(1646), + [sym_preproc_undef] = STATE(1646), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3477), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1481), - [anon_sym_LPAREN] = ACTIONS(1497), - [anon_sym_ref] = ACTIONS(1499), - [anon_sym_LBRACE] = ACTIONS(1487), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1655), + [anon_sym_LPAREN] = ACTIONS(1657), + [anon_sym_ref] = ACTIONS(1659), + [anon_sym_LBRACE] = ACTIONS(1661), + [anon_sym_delegate] = ACTIONS(1663), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1501), + [anon_sym_new] = ACTIONS(1665), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = 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(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(1667), + [anon_sym_BANG] = ACTIONS(1671), + [anon_sym_TILDE] = ACTIONS(1671), + [anon_sym_PLUS_PLUS] = ACTIONS(1671), + [anon_sym_DASH_DASH] = ACTIONS(1671), + [anon_sym_true] = ACTIONS(1673), + [anon_sym_false] = ACTIONS(1673), + [anon_sym_PLUS] = ACTIONS(1669), + [anon_sym_DASH] = ACTIONS(1669), + [anon_sym_STAR] = ACTIONS(1675), + [anon_sym_CARET] = ACTIONS(1671), + [anon_sym_AMP] = ACTIONS(1671), + [anon_sym_this] = ACTIONS(1677), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), + [anon_sym_base] = ACTIONS(1679), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1067), + [sym_predefined_type] = ACTIONS(1681), + [anon_sym_unchecked] = ACTIONS(1667), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1503), + [anon_sym_default] = ACTIONS(1683), + [anon_sym_throw] = ACTIONS(1685), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1505), - [anon_sym_DOT_DOT] = ACTIONS(1507), + [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), @@ -322790,19 +319972,19 @@ static const uint16_t ts_parse_table[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(1089), + [anon_sym_stackalloc] = ACTIONS(1691), + [anon_sym_sizeof] = ACTIONS(1693), + [anon_sym_typeof] = ACTIONS(1695), + [anon_sym___makeref] = ACTIONS(1697), + [anon_sym___reftype] = ACTIONS(1699), + [anon_sym___refvalue] = ACTIONS(1701), + [sym_null_literal] = ACTIONS(1703), + [anon_sym_SQUOTE] = ACTIONS(1705), + [sym_integer_literal] = ACTIONS(1703), + [sym_real_literal] = ACTIONS(1707), + [anon_sym_DQUOTE] = ACTIONS(1709), + [sym_verbatim_string_literal] = ACTIONS(1707), + [aux_sym_preproc_if_token1] = ACTIONS(1711), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -322813,140 +319995,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(1713), + [sym_interpolation_verbatim_start] = ACTIONS(1715), + [sym_interpolation_raw_start] = ACTIONS(1717), + [sym_raw_string_start] = ACTIONS(1719), }, - [1663] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(5910), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2247), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(5326), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3379), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3080), - [sym_postfix_unary_expression] = STATE(3111), - [sym_prefix_unary_expression] = STATE(3111), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6154), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3080), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3111), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3080), - [sym_member_access_expression] = STATE(2484), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3111), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7575), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(3080), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3080), - [sym_typeof_expression] = STATE(3080), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2484), - [sym_literal] = STATE(3080), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), - [sym_preproc_region] = STATE(1663), - [sym_preproc_endregion] = STATE(1663), - [sym_preproc_line] = STATE(1663), - [sym_preproc_pragma] = STATE(1663), - [sym_preproc_nullable] = STATE(1663), - [sym_preproc_error] = STATE(1663), - [sym_preproc_warning] = STATE(1663), - [sym_preproc_define] = STATE(1663), - [sym_preproc_undef] = STATE(1663), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [1647] = { + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2901), + [sym__name] = STATE(5883), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2359), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(3671), + [sym_non_lvalue_expression] = STATE(3685), + [sym_lvalue_expression] = STATE(2944), + [sym__expression_statement_expression] = STATE(3836), + [sym_assignment_expression] = STATE(3689), + [sym_binary_expression] = STATE(3836), + [sym_postfix_unary_expression] = STATE(3689), + [sym_prefix_unary_expression] = STATE(3689), + [sym__pointer_indirection_expression] = STATE(2906), + [sym_query_expression] = STATE(3836), + [sym_from_clause] = STATE(6139), + [sym_conditional_expression] = STATE(3836), + [sym_conditional_access_expression] = STATE(3836), + [sym_as_expression] = STATE(3836), + [sym_is_expression] = STATE(3836), + [sym_is_pattern_expression] = STATE(3836), + [sym_cast_expression] = STATE(3836), + [sym_checked_expression] = STATE(3836), + [sym_invocation_expression] = STATE(3689), + [sym_switch_expression] = STATE(3836), + [sym_await_expression] = STATE(3689), + [sym_throw_expression] = STATE(3836), + [sym_element_access_expression] = STATE(2906), + [sym_interpolated_string_expression] = STATE(3836), + [sym_member_access_expression] = STATE(2906), + [sym_object_creation_expression] = STATE(3689), + [sym_parenthesized_expression] = STATE(3689), + [sym__parenthesized_lvalue_expression] = STATE(2906), + [sym_lambda_expression] = STATE(3836), + [sym__lambda_expression_init] = STATE(7516), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3836), + [sym_anonymous_method_expression] = STATE(3836), + [sym_anonymous_object_creation_expression] = STATE(3836), + [sym_implicit_array_creation_expression] = STATE(3836), + [sym_implicit_object_creation_expression] = STATE(3836), + [sym_implicit_stackalloc_expression] = STATE(3836), + [sym_initializer_expression] = STATE(3836), + [sym_default_expression] = STATE(3836), + [sym_with_expression] = STATE(3836), + [sym_sizeof_expression] = STATE(3836), + [sym_typeof_expression] = STATE(3836), + [sym_makeref_expression] = STATE(3836), + [sym_ref_expression] = STATE(3836), + [sym_reftype_expression] = STATE(3836), + [sym_refvalue_expression] = STATE(3836), + [sym_stackalloc_expression] = STATE(3836), + [sym_range_expression] = STATE(3836), + [sym_tuple_expression] = STATE(2906), + [sym_literal] = STATE(3836), + [sym_character_literal] = STATE(3843), + [sym_string_literal] = STATE(3843), + [sym_raw_string_literal] = STATE(3843), + [sym_boolean_literal] = STATE(3843), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3836), + [sym_preproc_if_in_attribute_list] = STATE(5583), + [sym_preproc_region] = STATE(1647), + [sym_preproc_endregion] = STATE(1647), + [sym_preproc_line] = STATE(1647), + [sym_preproc_pragma] = STATE(1647), + [sym_preproc_nullable] = STATE(1647), + [sym_preproc_error] = STATE(1647), + [sym_preproc_warning] = STATE(1647), + [sym_preproc_define] = STATE(1647), + [sym_preproc_undef] = STATE(1647), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3477), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1481), - [anon_sym_LPAREN] = ACTIONS(895), - [anon_sym_ref] = ACTIONS(897), - [anon_sym_LBRACE] = ACTIONS(1487), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1655), + [anon_sym_LPAREN] = ACTIONS(1657), + [anon_sym_ref] = ACTIONS(1659), + [anon_sym_LBRACE] = ACTIONS(1661), + [anon_sym_delegate] = ACTIONS(1663), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1061), + [anon_sym_new] = ACTIONS(1665), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1067), - [anon_sym_BANG] = ACTIONS(1495), - [anon_sym_TILDE] = ACTIONS(1495), - [anon_sym_PLUS_PLUS] = ACTIONS(1495), - [anon_sym_DASH_DASH] = ACTIONS(1495), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1493), - [anon_sym_DASH] = ACTIONS(1493), - [anon_sym_STAR] = ACTIONS(905), - [anon_sym_CARET] = ACTIONS(1495), - [anon_sym_AMP] = ACTIONS(1495), - [anon_sym_this] = ACTIONS(83), + [anon_sym_checked] = ACTIONS(1667), + [anon_sym_BANG] = ACTIONS(1671), + [anon_sym_TILDE] = ACTIONS(1671), + [anon_sym_PLUS_PLUS] = ACTIONS(1671), + [anon_sym_DASH_DASH] = ACTIONS(1671), + [anon_sym_true] = ACTIONS(1673), + [anon_sym_false] = ACTIONS(1673), + [anon_sym_PLUS] = ACTIONS(1669), + [anon_sym_DASH] = ACTIONS(1669), + [anon_sym_STAR] = ACTIONS(1675), + [anon_sym_CARET] = ACTIONS(1671), + [anon_sym_AMP] = ACTIONS(1671), + [anon_sym_this] = ACTIONS(1677), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), + [anon_sym_base] = ACTIONS(1679), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1067), + [sym_predefined_type] = ACTIONS(1681), + [anon_sym_unchecked] = ACTIONS(1667), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1079), + [anon_sym_default] = ACTIONS(1683), + [anon_sym_throw] = ACTIONS(1685), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1081), - [anon_sym_DOT_DOT] = ACTIONS(911), + [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), @@ -322959,19 +320141,19 @@ static const uint16_t ts_parse_table[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(1089), + [anon_sym_stackalloc] = ACTIONS(1691), + [anon_sym_sizeof] = ACTIONS(1693), + [anon_sym_typeof] = ACTIONS(1695), + [anon_sym___makeref] = ACTIONS(1697), + [anon_sym___reftype] = ACTIONS(1699), + [anon_sym___refvalue] = ACTIONS(1701), + [sym_null_literal] = ACTIONS(1703), + [anon_sym_SQUOTE] = ACTIONS(1705), + [sym_integer_literal] = ACTIONS(1703), + [sym_real_literal] = ACTIONS(1707), + [anon_sym_DQUOTE] = ACTIONS(1709), + [sym_verbatim_string_literal] = ACTIONS(1707), + [aux_sym_preproc_if_token1] = ACTIONS(1711), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -322982,140 +320164,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(1713), + [sym_interpolation_verbatim_start] = ACTIONS(1715), + [sym_interpolation_raw_start] = ACTIONS(1717), + [sym_raw_string_start] = ACTIONS(1719), }, - [1664] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(5910), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2247), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(5327), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3379), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3080), - [sym_postfix_unary_expression] = STATE(3111), - [sym_prefix_unary_expression] = STATE(3111), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6154), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3080), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3111), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3080), - [sym_member_access_expression] = STATE(2484), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3111), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7575), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(3080), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3080), - [sym_typeof_expression] = STATE(3080), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2484), - [sym_literal] = STATE(3080), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), - [sym_preproc_region] = STATE(1664), - [sym_preproc_endregion] = STATE(1664), - [sym_preproc_line] = STATE(1664), - [sym_preproc_pragma] = STATE(1664), - [sym_preproc_nullable] = STATE(1664), - [sym_preproc_error] = STATE(1664), - [sym_preproc_warning] = STATE(1664), - [sym_preproc_define] = STATE(1664), - [sym_preproc_undef] = STATE(1664), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [1648] = { + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2901), + [sym__name] = STATE(5883), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2359), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(3677), + [sym_non_lvalue_expression] = STATE(3685), + [sym_lvalue_expression] = STATE(2944), + [sym__expression_statement_expression] = STATE(3836), + [sym_assignment_expression] = STATE(3689), + [sym_binary_expression] = STATE(3836), + [sym_postfix_unary_expression] = STATE(3689), + [sym_prefix_unary_expression] = STATE(3689), + [sym__pointer_indirection_expression] = STATE(2906), + [sym_query_expression] = STATE(3836), + [sym_from_clause] = STATE(6139), + [sym_conditional_expression] = STATE(3836), + [sym_conditional_access_expression] = STATE(3836), + [sym_as_expression] = STATE(3836), + [sym_is_expression] = STATE(3836), + [sym_is_pattern_expression] = STATE(3836), + [sym_cast_expression] = STATE(3836), + [sym_checked_expression] = STATE(3836), + [sym_invocation_expression] = STATE(3689), + [sym_switch_expression] = STATE(3836), + [sym_await_expression] = STATE(3689), + [sym_throw_expression] = STATE(3836), + [sym_element_access_expression] = STATE(2906), + [sym_interpolated_string_expression] = STATE(3836), + [sym_member_access_expression] = STATE(2906), + [sym_object_creation_expression] = STATE(3689), + [sym_parenthesized_expression] = STATE(3689), + [sym__parenthesized_lvalue_expression] = STATE(2906), + [sym_lambda_expression] = STATE(3836), + [sym__lambda_expression_init] = STATE(7516), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3836), + [sym_anonymous_method_expression] = STATE(3836), + [sym_anonymous_object_creation_expression] = STATE(3836), + [sym_implicit_array_creation_expression] = STATE(3836), + [sym_implicit_object_creation_expression] = STATE(3836), + [sym_implicit_stackalloc_expression] = STATE(3836), + [sym_initializer_expression] = STATE(3836), + [sym_default_expression] = STATE(3836), + [sym_with_expression] = STATE(3836), + [sym_sizeof_expression] = STATE(3836), + [sym_typeof_expression] = STATE(3836), + [sym_makeref_expression] = STATE(3836), + [sym_ref_expression] = STATE(3836), + [sym_reftype_expression] = STATE(3836), + [sym_refvalue_expression] = STATE(3836), + [sym_stackalloc_expression] = STATE(3836), + [sym_range_expression] = STATE(3836), + [sym_tuple_expression] = STATE(2906), + [sym_literal] = STATE(3836), + [sym_character_literal] = STATE(3843), + [sym_string_literal] = STATE(3843), + [sym_raw_string_literal] = STATE(3843), + [sym_boolean_literal] = STATE(3843), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3836), + [sym_preproc_if_in_attribute_list] = STATE(5583), + [sym_preproc_region] = STATE(1648), + [sym_preproc_endregion] = STATE(1648), + [sym_preproc_line] = STATE(1648), + [sym_preproc_pragma] = STATE(1648), + [sym_preproc_nullable] = STATE(1648), + [sym_preproc_error] = STATE(1648), + [sym_preproc_warning] = STATE(1648), + [sym_preproc_define] = STATE(1648), + [sym_preproc_undef] = STATE(1648), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3477), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1481), - [anon_sym_LPAREN] = ACTIONS(895), - [anon_sym_ref] = ACTIONS(897), - [anon_sym_LBRACE] = ACTIONS(1487), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1655), + [anon_sym_LPAREN] = ACTIONS(1657), + [anon_sym_ref] = ACTIONS(1659), + [anon_sym_LBRACE] = ACTIONS(1661), + [anon_sym_delegate] = ACTIONS(1663), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1061), + [anon_sym_new] = ACTIONS(1665), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1067), - [anon_sym_BANG] = ACTIONS(1495), - [anon_sym_TILDE] = ACTIONS(1495), - [anon_sym_PLUS_PLUS] = ACTIONS(1495), - [anon_sym_DASH_DASH] = ACTIONS(1495), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1493), - [anon_sym_DASH] = ACTIONS(1493), - [anon_sym_STAR] = ACTIONS(905), - [anon_sym_CARET] = ACTIONS(1495), - [anon_sym_AMP] = ACTIONS(1495), - [anon_sym_this] = ACTIONS(83), + [anon_sym_checked] = ACTIONS(1667), + [anon_sym_BANG] = ACTIONS(1671), + [anon_sym_TILDE] = ACTIONS(1671), + [anon_sym_PLUS_PLUS] = ACTIONS(1671), + [anon_sym_DASH_DASH] = ACTIONS(1671), + [anon_sym_true] = ACTIONS(1673), + [anon_sym_false] = ACTIONS(1673), + [anon_sym_PLUS] = ACTIONS(1669), + [anon_sym_DASH] = ACTIONS(1669), + [anon_sym_STAR] = ACTIONS(1675), + [anon_sym_CARET] = ACTIONS(1671), + [anon_sym_AMP] = ACTIONS(1671), + [anon_sym_this] = ACTIONS(1677), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), + [anon_sym_base] = ACTIONS(1679), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1067), + [sym_predefined_type] = ACTIONS(1681), + [anon_sym_unchecked] = ACTIONS(1667), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1079), + [anon_sym_default] = ACTIONS(1683), + [anon_sym_throw] = ACTIONS(1685), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1081), - [anon_sym_DOT_DOT] = ACTIONS(911), + [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), @@ -323128,19 +320310,19 @@ static const uint16_t ts_parse_table[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(1089), + [anon_sym_stackalloc] = ACTIONS(1691), + [anon_sym_sizeof] = ACTIONS(1693), + [anon_sym_typeof] = ACTIONS(1695), + [anon_sym___makeref] = ACTIONS(1697), + [anon_sym___reftype] = ACTIONS(1699), + [anon_sym___refvalue] = ACTIONS(1701), + [sym_null_literal] = ACTIONS(1703), + [anon_sym_SQUOTE] = ACTIONS(1705), + [sym_integer_literal] = ACTIONS(1703), + [sym_real_literal] = ACTIONS(1707), + [anon_sym_DQUOTE] = ACTIONS(1709), + [sym_verbatim_string_literal] = ACTIONS(1707), + [aux_sym_preproc_if_token1] = ACTIONS(1711), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -323151,140 +320333,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(1713), + [sym_interpolation_verbatim_start] = ACTIONS(1715), + [sym_interpolation_raw_start] = ACTIONS(1717), + [sym_raw_string_start] = ACTIONS(1719), }, - [1665] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(5910), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2247), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(5329), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3379), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3080), - [sym_postfix_unary_expression] = STATE(3111), - [sym_prefix_unary_expression] = STATE(3111), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6154), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3080), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3111), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3080), - [sym_member_access_expression] = STATE(2484), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3111), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7575), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(3080), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3080), - [sym_typeof_expression] = STATE(3080), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2484), - [sym_literal] = STATE(3080), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), - [sym_preproc_region] = STATE(1665), - [sym_preproc_endregion] = STATE(1665), - [sym_preproc_line] = STATE(1665), - [sym_preproc_pragma] = STATE(1665), - [sym_preproc_nullable] = STATE(1665), - [sym_preproc_error] = STATE(1665), - [sym_preproc_warning] = STATE(1665), - [sym_preproc_define] = STATE(1665), - [sym_preproc_undef] = STATE(1665), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [1649] = { + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2901), + [sym__name] = STATE(5883), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2359), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(3678), + [sym_non_lvalue_expression] = STATE(3685), + [sym_lvalue_expression] = STATE(2944), + [sym__expression_statement_expression] = STATE(3836), + [sym_assignment_expression] = STATE(3689), + [sym_binary_expression] = STATE(3836), + [sym_postfix_unary_expression] = STATE(3689), + [sym_prefix_unary_expression] = STATE(3689), + [sym__pointer_indirection_expression] = STATE(2906), + [sym_query_expression] = STATE(3836), + [sym_from_clause] = STATE(6139), + [sym_conditional_expression] = STATE(3836), + [sym_conditional_access_expression] = STATE(3836), + [sym_as_expression] = STATE(3836), + [sym_is_expression] = STATE(3836), + [sym_is_pattern_expression] = STATE(3836), + [sym_cast_expression] = STATE(3836), + [sym_checked_expression] = STATE(3836), + [sym_invocation_expression] = STATE(3689), + [sym_switch_expression] = STATE(3836), + [sym_await_expression] = STATE(3689), + [sym_throw_expression] = STATE(3836), + [sym_element_access_expression] = STATE(2906), + [sym_interpolated_string_expression] = STATE(3836), + [sym_member_access_expression] = STATE(2906), + [sym_object_creation_expression] = STATE(3689), + [sym_parenthesized_expression] = STATE(3689), + [sym__parenthesized_lvalue_expression] = STATE(2906), + [sym_lambda_expression] = STATE(3836), + [sym__lambda_expression_init] = STATE(7516), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3836), + [sym_anonymous_method_expression] = STATE(3836), + [sym_anonymous_object_creation_expression] = STATE(3836), + [sym_implicit_array_creation_expression] = STATE(3836), + [sym_implicit_object_creation_expression] = STATE(3836), + [sym_implicit_stackalloc_expression] = STATE(3836), + [sym_initializer_expression] = STATE(3836), + [sym_default_expression] = STATE(3836), + [sym_with_expression] = STATE(3836), + [sym_sizeof_expression] = STATE(3836), + [sym_typeof_expression] = STATE(3836), + [sym_makeref_expression] = STATE(3836), + [sym_ref_expression] = STATE(3836), + [sym_reftype_expression] = STATE(3836), + [sym_refvalue_expression] = STATE(3836), + [sym_stackalloc_expression] = STATE(3836), + [sym_range_expression] = STATE(3836), + [sym_tuple_expression] = STATE(2906), + [sym_literal] = STATE(3836), + [sym_character_literal] = STATE(3843), + [sym_string_literal] = STATE(3843), + [sym_raw_string_literal] = STATE(3843), + [sym_boolean_literal] = STATE(3843), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3836), + [sym_preproc_if_in_attribute_list] = STATE(5583), + [sym_preproc_region] = STATE(1649), + [sym_preproc_endregion] = STATE(1649), + [sym_preproc_line] = STATE(1649), + [sym_preproc_pragma] = STATE(1649), + [sym_preproc_nullable] = STATE(1649), + [sym_preproc_error] = STATE(1649), + [sym_preproc_warning] = STATE(1649), + [sym_preproc_define] = STATE(1649), + [sym_preproc_undef] = STATE(1649), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3477), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1481), - [anon_sym_LPAREN] = ACTIONS(895), - [anon_sym_ref] = ACTIONS(897), - [anon_sym_LBRACE] = ACTIONS(1487), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1655), + [anon_sym_LPAREN] = ACTIONS(1657), + [anon_sym_ref] = ACTIONS(1659), + [anon_sym_LBRACE] = ACTIONS(1661), + [anon_sym_delegate] = ACTIONS(1663), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1061), + [anon_sym_new] = ACTIONS(1665), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1067), - [anon_sym_BANG] = ACTIONS(1495), - [anon_sym_TILDE] = ACTIONS(1495), - [anon_sym_PLUS_PLUS] = ACTIONS(1495), - [anon_sym_DASH_DASH] = ACTIONS(1495), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1493), - [anon_sym_DASH] = ACTIONS(1493), - [anon_sym_STAR] = ACTIONS(905), - [anon_sym_CARET] = ACTIONS(1495), - [anon_sym_AMP] = ACTIONS(1495), - [anon_sym_this] = ACTIONS(83), + [anon_sym_checked] = ACTIONS(1667), + [anon_sym_BANG] = ACTIONS(1671), + [anon_sym_TILDE] = ACTIONS(1671), + [anon_sym_PLUS_PLUS] = ACTIONS(1671), + [anon_sym_DASH_DASH] = ACTIONS(1671), + [anon_sym_true] = ACTIONS(1673), + [anon_sym_false] = ACTIONS(1673), + [anon_sym_PLUS] = ACTIONS(1669), + [anon_sym_DASH] = ACTIONS(1669), + [anon_sym_STAR] = ACTIONS(1675), + [anon_sym_CARET] = ACTIONS(1671), + [anon_sym_AMP] = ACTIONS(1671), + [anon_sym_this] = ACTIONS(1677), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), + [anon_sym_base] = ACTIONS(1679), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1067), + [sym_predefined_type] = ACTIONS(1681), + [anon_sym_unchecked] = ACTIONS(1667), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1079), + [anon_sym_default] = ACTIONS(1683), + [anon_sym_throw] = ACTIONS(1685), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1081), - [anon_sym_DOT_DOT] = ACTIONS(911), + [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), @@ -323297,19 +320479,19 @@ static const uint16_t ts_parse_table[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(1089), + [anon_sym_stackalloc] = ACTIONS(1691), + [anon_sym_sizeof] = ACTIONS(1693), + [anon_sym_typeof] = ACTIONS(1695), + [anon_sym___makeref] = ACTIONS(1697), + [anon_sym___reftype] = ACTIONS(1699), + [anon_sym___refvalue] = ACTIONS(1701), + [sym_null_literal] = ACTIONS(1703), + [anon_sym_SQUOTE] = ACTIONS(1705), + [sym_integer_literal] = ACTIONS(1703), + [sym_real_literal] = ACTIONS(1707), + [anon_sym_DQUOTE] = ACTIONS(1709), + [sym_verbatim_string_literal] = ACTIONS(1707), + [aux_sym_preproc_if_token1] = ACTIONS(1711), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -323320,140 +320502,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(1713), + [sym_interpolation_verbatim_start] = ACTIONS(1715), + [sym_interpolation_raw_start] = ACTIONS(1717), + [sym_raw_string_start] = ACTIONS(1719), }, - [1666] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2610), - [sym__name] = STATE(5898), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2197), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(3145), - [sym_non_lvalue_expression] = STATE(3277), - [sym_lvalue_expression] = STATE(3023), - [sym__expression_statement_expression] = STATE(3228), - [sym_assignment_expression] = STATE(3289), - [sym_binary_expression] = STATE(3228), - [sym_postfix_unary_expression] = STATE(3289), - [sym_prefix_unary_expression] = STATE(3289), - [sym__pointer_indirection_expression] = STATE(2609), - [sym_query_expression] = STATE(3228), - [sym_from_clause] = STATE(6172), - [sym_conditional_expression] = STATE(3228), - [sym_conditional_access_expression] = STATE(3228), - [sym_as_expression] = STATE(3228), - [sym_is_expression] = STATE(3228), - [sym_is_pattern_expression] = STATE(3228), - [sym_cast_expression] = STATE(3228), - [sym_checked_expression] = STATE(3228), - [sym_invocation_expression] = STATE(3289), - [sym_switch_expression] = STATE(3228), - [sym_await_expression] = STATE(3289), - [sym_throw_expression] = STATE(3228), - [sym_element_access_expression] = STATE(2609), - [sym_interpolated_string_expression] = STATE(3228), - [sym_member_access_expression] = STATE(2609), - [sym_object_creation_expression] = STATE(3289), - [sym_parenthesized_expression] = STATE(3289), - [sym__parenthesized_lvalue_expression] = STATE(2609), - [sym_lambda_expression] = STATE(3228), - [sym__lambda_expression_init] = STATE(7653), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3228), - [sym_anonymous_method_expression] = STATE(3228), - [sym_anonymous_object_creation_expression] = STATE(3228), - [sym_implicit_array_creation_expression] = STATE(3228), - [sym_implicit_object_creation_expression] = STATE(3228), - [sym_implicit_stackalloc_expression] = STATE(3228), - [sym_initializer_expression] = STATE(3228), - [sym_default_expression] = STATE(3228), - [sym_with_expression] = STATE(3228), - [sym_sizeof_expression] = STATE(3228), - [sym_typeof_expression] = STATE(3228), - [sym_makeref_expression] = STATE(3228), - [sym_ref_expression] = STATE(3228), - [sym_reftype_expression] = STATE(3228), - [sym_refvalue_expression] = STATE(3228), - [sym_stackalloc_expression] = STATE(3228), - [sym_range_expression] = STATE(3228), - [sym_tuple_expression] = STATE(2609), - [sym_literal] = STATE(3228), - [sym_character_literal] = STATE(3278), - [sym_string_literal] = STATE(3278), - [sym_raw_string_literal] = STATE(3278), - [sym_boolean_literal] = STATE(3278), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3228), - [sym_preproc_if_in_attribute_list] = STATE(5576), - [sym_preproc_region] = STATE(1666), - [sym_preproc_endregion] = STATE(1666), - [sym_preproc_line] = STATE(1666), - [sym_preproc_pragma] = STATE(1666), - [sym_preproc_nullable] = STATE(1666), - [sym_preproc_error] = STATE(1666), - [sym_preproc_warning] = STATE(1666), - [sym_preproc_define] = STATE(1666), - [sym_preproc_undef] = STATE(1666), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3396), + [1650] = { + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2901), + [sym__name] = STATE(5883), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2359), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(3656), + [sym_non_lvalue_expression] = STATE(3685), + [sym_lvalue_expression] = STATE(2944), + [sym__expression_statement_expression] = STATE(3836), + [sym_assignment_expression] = STATE(3689), + [sym_binary_expression] = STATE(3836), + [sym_postfix_unary_expression] = STATE(3689), + [sym_prefix_unary_expression] = STATE(3689), + [sym__pointer_indirection_expression] = STATE(2906), + [sym_query_expression] = STATE(3836), + [sym_from_clause] = STATE(6139), + [sym_conditional_expression] = STATE(3836), + [sym_conditional_access_expression] = STATE(3836), + [sym_as_expression] = STATE(3836), + [sym_is_expression] = STATE(3836), + [sym_is_pattern_expression] = STATE(3836), + [sym_cast_expression] = STATE(3836), + [sym_checked_expression] = STATE(3836), + [sym_invocation_expression] = STATE(3689), + [sym_switch_expression] = STATE(3836), + [sym_await_expression] = STATE(3689), + [sym_throw_expression] = STATE(3836), + [sym_element_access_expression] = STATE(2906), + [sym_interpolated_string_expression] = STATE(3836), + [sym_member_access_expression] = STATE(2906), + [sym_object_creation_expression] = STATE(3689), + [sym_parenthesized_expression] = STATE(3689), + [sym__parenthesized_lvalue_expression] = STATE(2906), + [sym_lambda_expression] = STATE(3836), + [sym__lambda_expression_init] = STATE(7516), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3836), + [sym_anonymous_method_expression] = STATE(3836), + [sym_anonymous_object_creation_expression] = STATE(3836), + [sym_implicit_array_creation_expression] = STATE(3836), + [sym_implicit_object_creation_expression] = STATE(3836), + [sym_implicit_stackalloc_expression] = STATE(3836), + [sym_initializer_expression] = STATE(3836), + [sym_default_expression] = STATE(3836), + [sym_with_expression] = STATE(3836), + [sym_sizeof_expression] = STATE(3836), + [sym_typeof_expression] = STATE(3836), + [sym_makeref_expression] = STATE(3836), + [sym_ref_expression] = STATE(3836), + [sym_reftype_expression] = STATE(3836), + [sym_refvalue_expression] = STATE(3836), + [sym_stackalloc_expression] = STATE(3836), + [sym_range_expression] = STATE(3836), + [sym_tuple_expression] = STATE(2906), + [sym_literal] = STATE(3836), + [sym_character_literal] = STATE(3843), + [sym_string_literal] = STATE(3843), + [sym_raw_string_literal] = STATE(3843), + [sym_boolean_literal] = STATE(3843), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3836), + [sym_preproc_if_in_attribute_list] = STATE(5583), + [sym_preproc_region] = STATE(1650), + [sym_preproc_endregion] = STATE(1650), + [sym_preproc_line] = STATE(1650), + [sym_preproc_pragma] = STATE(1650), + [sym_preproc_nullable] = STATE(1650), + [sym_preproc_error] = STATE(1650), + [sym_preproc_warning] = STATE(1650), + [sym_preproc_define] = STATE(1650), + [sym_preproc_undef] = STATE(1650), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3477), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1153), - [anon_sym_LPAREN] = ACTIONS(1155), - [anon_sym_ref] = ACTIONS(1157), - [anon_sym_LBRACE] = ACTIONS(1159), - [anon_sym_delegate] = ACTIONS(1161), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1655), + [anon_sym_LPAREN] = ACTIONS(1657), + [anon_sym_ref] = ACTIONS(1659), + [anon_sym_LBRACE] = ACTIONS(1661), + [anon_sym_delegate] = ACTIONS(1663), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1163), + [anon_sym_new] = ACTIONS(1665), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1167), - [anon_sym_BANG] = ACTIONS(1171), - [anon_sym_TILDE] = ACTIONS(1171), - [anon_sym_PLUS_PLUS] = ACTIONS(1171), - [anon_sym_DASH_DASH] = ACTIONS(1171), - [anon_sym_true] = ACTIONS(1173), - [anon_sym_false] = ACTIONS(1173), - [anon_sym_PLUS] = ACTIONS(1169), - [anon_sym_DASH] = ACTIONS(1169), - [anon_sym_STAR] = ACTIONS(1175), - [anon_sym_CARET] = ACTIONS(1171), - [anon_sym_AMP] = ACTIONS(1171), - [anon_sym_this] = ACTIONS(1177), + [anon_sym_checked] = ACTIONS(1667), + [anon_sym_BANG] = ACTIONS(1671), + [anon_sym_TILDE] = ACTIONS(1671), + [anon_sym_PLUS_PLUS] = ACTIONS(1671), + [anon_sym_DASH_DASH] = ACTIONS(1671), + [anon_sym_true] = ACTIONS(1673), + [anon_sym_false] = ACTIONS(1673), + [anon_sym_PLUS] = ACTIONS(1669), + [anon_sym_DASH] = ACTIONS(1669), + [anon_sym_STAR] = ACTIONS(1675), + [anon_sym_CARET] = ACTIONS(1671), + [anon_sym_AMP] = ACTIONS(1671), + [anon_sym_this] = ACTIONS(1677), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1179), + [anon_sym_base] = ACTIONS(1679), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1181), - [anon_sym_unchecked] = ACTIONS(1167), + [sym_predefined_type] = ACTIONS(1681), + [anon_sym_unchecked] = ACTIONS(1667), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1183), - [anon_sym_throw] = ACTIONS(1185), + [anon_sym_default] = ACTIONS(1683), + [anon_sym_throw] = ACTIONS(1685), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1187), - [anon_sym_DOT_DOT] = ACTIONS(1189), + [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), @@ -323466,19 +320648,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1191), - [anon_sym_sizeof] = ACTIONS(1193), - [anon_sym_typeof] = ACTIONS(1195), - [anon_sym___makeref] = ACTIONS(1197), - [anon_sym___reftype] = ACTIONS(1199), - [anon_sym___refvalue] = ACTIONS(1201), - [sym_null_literal] = ACTIONS(1203), - [anon_sym_SQUOTE] = ACTIONS(1205), - [sym_integer_literal] = ACTIONS(1203), - [sym_real_literal] = ACTIONS(1207), - [anon_sym_DQUOTE] = ACTIONS(1209), - [sym_verbatim_string_literal] = ACTIONS(1207), - [aux_sym_preproc_if_token1] = ACTIONS(1211), + [anon_sym_stackalloc] = ACTIONS(1691), + [anon_sym_sizeof] = ACTIONS(1693), + [anon_sym_typeof] = ACTIONS(1695), + [anon_sym___makeref] = ACTIONS(1697), + [anon_sym___reftype] = ACTIONS(1699), + [anon_sym___refvalue] = ACTIONS(1701), + [sym_null_literal] = ACTIONS(1703), + [anon_sym_SQUOTE] = ACTIONS(1705), + [sym_integer_literal] = ACTIONS(1703), + [sym_real_literal] = ACTIONS(1707), + [anon_sym_DQUOTE] = ACTIONS(1709), + [sym_verbatim_string_literal] = ACTIONS(1707), + [aux_sym_preproc_if_token1] = ACTIONS(1711), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -323489,309 +320671,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(1213), - [sym_interpolation_verbatim_start] = ACTIONS(1215), - [sym_interpolation_raw_start] = ACTIONS(1217), - [sym_raw_string_start] = ACTIONS(1219), + [sym_interpolation_regular_start] = ACTIONS(1713), + [sym_interpolation_verbatim_start] = ACTIONS(1715), + [sym_interpolation_raw_start] = ACTIONS(1717), + [sym_raw_string_start] = ACTIONS(1719), }, - [1667] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(3184), + [1651] = { + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2901), [sym__name] = STATE(5883), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2313), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2269), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(5198), - [sym_non_lvalue_expression] = STATE(4541), - [sym_lvalue_expression] = STATE(3527), - [sym__expression_statement_expression] = STATE(4529), - [sym_assignment_expression] = STATE(4543), - [sym_binary_expression] = STATE(4529), - [sym_postfix_unary_expression] = STATE(4543), - [sym_prefix_unary_expression] = STATE(4543), - [sym__pointer_indirection_expression] = STATE(3175), - [sym_query_expression] = STATE(4529), - [sym_from_clause] = STATE(6169), - [sym_conditional_expression] = STATE(4529), - [sym_conditional_access_expression] = STATE(4529), - [sym_as_expression] = STATE(4529), - [sym_is_expression] = STATE(4529), - [sym_is_pattern_expression] = STATE(4529), - [sym_cast_expression] = STATE(4529), - [sym_checked_expression] = STATE(4529), - [sym_invocation_expression] = STATE(4543), - [sym_switch_expression] = STATE(4529), - [sym_await_expression] = STATE(4543), - [sym_throw_expression] = STATE(4529), - [sym_element_access_expression] = STATE(3175), - [sym_interpolated_string_expression] = STATE(4529), - [sym_member_access_expression] = STATE(3175), - [sym_object_creation_expression] = STATE(4543), - [sym_parenthesized_expression] = STATE(4543), - [sym__parenthesized_lvalue_expression] = STATE(3175), - [sym_lambda_expression] = STATE(4529), - [sym__lambda_expression_init] = STATE(7337), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(4529), - [sym_anonymous_method_expression] = STATE(4529), - [sym_anonymous_object_creation_expression] = STATE(4529), - [sym_implicit_array_creation_expression] = STATE(4529), - [sym_implicit_object_creation_expression] = STATE(4529), - [sym_implicit_stackalloc_expression] = STATE(4529), - [sym_initializer_expression] = STATE(4529), - [sym_default_expression] = STATE(4529), - [sym_with_expression] = STATE(4529), - [sym_sizeof_expression] = STATE(4529), - [sym_typeof_expression] = STATE(4529), - [sym_makeref_expression] = STATE(4529), - [sym_ref_expression] = STATE(4529), - [sym_reftype_expression] = STATE(4529), - [sym_refvalue_expression] = STATE(4529), - [sym_stackalloc_expression] = STATE(4529), - [sym_range_expression] = STATE(4529), - [sym_tuple_expression] = STATE(3175), - [sym_literal] = STATE(4529), - [sym_character_literal] = STATE(4536), - [sym_string_literal] = STATE(4536), - [sym_raw_string_literal] = STATE(4536), - [sym_boolean_literal] = STATE(4536), - [sym_identifier] = STATE(2246), - [sym__reserved_identifier] = STATE(2240), - [sym_preproc_if_in_expression] = STATE(4529), - [sym_preproc_if_in_attribute_list] = STATE(5576), - [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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3363), - [sym__identifier_token] = ACTIONS(1387), - [anon_sym_alias] = ACTIONS(1389), - [anon_sym_global] = ACTIONS(1389), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1391), - [anon_sym_LPAREN] = ACTIONS(1745), - [anon_sym_ref] = ACTIONS(1747), - [anon_sym_LBRACE] = ACTIONS(1397), - [anon_sym_delegate] = ACTIONS(1399), - [anon_sym_async] = ACTIONS(1047), - [anon_sym_file] = ACTIONS(1389), - [anon_sym_new] = ACTIONS(1467), - [anon_sym_where] = ACTIONS(1389), - [anon_sym_notnull] = ACTIONS(1389), - [anon_sym_unmanaged] = ACTIONS(1389), - [anon_sym_checked] = ACTIONS(1403), - [anon_sym_BANG] = ACTIONS(1751), - [anon_sym_TILDE] = ACTIONS(1751), - [anon_sym_PLUS_PLUS] = ACTIONS(1751), - [anon_sym_DASH_DASH] = ACTIONS(1751), - [anon_sym_true] = ACTIONS(1409), - [anon_sym_false] = ACTIONS(1409), - [anon_sym_PLUS] = ACTIONS(1749), - [anon_sym_DASH] = ACTIONS(1749), - [anon_sym_STAR] = ACTIONS(1473), - [anon_sym_CARET] = ACTIONS(1751), - [anon_sym_AMP] = ACTIONS(1751), - [anon_sym_this] = ACTIONS(1413), - [anon_sym_scoped] = ACTIONS(1415), - [anon_sym_base] = ACTIONS(1417), - [anon_sym_var] = ACTIONS(1419), - [sym_predefined_type] = ACTIONS(1421), - [anon_sym_unchecked] = ACTIONS(1403), - [anon_sym_yield] = ACTIONS(1389), - [anon_sym_default] = ACTIONS(1423), - [anon_sym_throw] = ACTIONS(1753), - [anon_sym_when] = ACTIONS(1389), - [anon_sym_await] = ACTIONS(1755), - [anon_sym_DOT_DOT] = ACTIONS(1757), - [anon_sym_from] = ACTIONS(1431), - [anon_sym_into] = ACTIONS(1389), - [anon_sym_join] = ACTIONS(1389), - [anon_sym_on] = ACTIONS(1389), - [anon_sym_equals] = ACTIONS(1389), - [anon_sym_let] = ACTIONS(1389), - [anon_sym_orderby] = ACTIONS(1389), - [anon_sym_ascending] = ACTIONS(1389), - [anon_sym_descending] = ACTIONS(1389), - [anon_sym_group] = ACTIONS(1389), - [anon_sym_by] = ACTIONS(1389), - [anon_sym_select] = ACTIONS(1389), - [anon_sym_stackalloc] = ACTIONS(1433), - [anon_sym_sizeof] = ACTIONS(1435), - [anon_sym_typeof] = ACTIONS(1437), - [anon_sym___makeref] = ACTIONS(1439), - [anon_sym___reftype] = ACTIONS(1441), - [anon_sym___refvalue] = ACTIONS(1443), - [sym_null_literal] = ACTIONS(1445), - [anon_sym_SQUOTE] = ACTIONS(1447), - [sym_integer_literal] = ACTIONS(1445), - [sym_real_literal] = ACTIONS(1449), - [anon_sym_DQUOTE] = ACTIONS(1451), - [sym_verbatim_string_literal] = ACTIONS(1449), - [aux_sym_preproc_if_token1] = ACTIONS(1453), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1455), - [sym_interpolation_verbatim_start] = ACTIONS(1457), - [sym_interpolation_raw_start] = ACTIONS(1459), - [sym_raw_string_start] = ACTIONS(1461), - }, - [1668] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2914), - [sym__name] = STATE(5885), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2357), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(3768), - [sym_non_lvalue_expression] = STATE(3880), - [sym_lvalue_expression] = STATE(2986), - [sym__expression_statement_expression] = STATE(3873), - [sym_assignment_expression] = STATE(3881), - [sym_binary_expression] = STATE(3873), - [sym_postfix_unary_expression] = STATE(3881), - [sym_prefix_unary_expression] = STATE(3881), - [sym__pointer_indirection_expression] = STATE(2913), - [sym_query_expression] = STATE(3873), - [sym_from_clause] = STATE(6168), - [sym_conditional_expression] = STATE(3873), - [sym_conditional_access_expression] = STATE(3873), - [sym_as_expression] = STATE(3873), - [sym_is_expression] = STATE(3873), - [sym_is_pattern_expression] = STATE(3873), - [sym_cast_expression] = STATE(3873), - [sym_checked_expression] = STATE(3873), - [sym_invocation_expression] = STATE(3881), - [sym_switch_expression] = STATE(3873), - [sym_await_expression] = STATE(3881), - [sym_throw_expression] = STATE(3873), - [sym_element_access_expression] = STATE(2913), - [sym_interpolated_string_expression] = STATE(3873), - [sym_member_access_expression] = STATE(2913), - [sym_object_creation_expression] = STATE(3881), - [sym_parenthesized_expression] = STATE(3881), - [sym__parenthesized_lvalue_expression] = STATE(2913), - [sym_lambda_expression] = STATE(3873), - [sym__lambda_expression_init] = STATE(7587), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3873), - [sym_anonymous_method_expression] = STATE(3873), - [sym_anonymous_object_creation_expression] = STATE(3873), - [sym_implicit_array_creation_expression] = STATE(3873), - [sym_implicit_object_creation_expression] = STATE(3873), - [sym_implicit_stackalloc_expression] = STATE(3873), - [sym_initializer_expression] = STATE(3873), - [sym_default_expression] = STATE(3873), - [sym_with_expression] = STATE(3873), - [sym_sizeof_expression] = STATE(3873), - [sym_typeof_expression] = STATE(3873), - [sym_makeref_expression] = STATE(3873), - [sym_ref_expression] = STATE(3873), - [sym_reftype_expression] = STATE(3873), - [sym_refvalue_expression] = STATE(3873), - [sym_stackalloc_expression] = STATE(3873), - [sym_range_expression] = STATE(3873), - [sym_tuple_expression] = STATE(2913), - [sym_literal] = STATE(3873), - [sym_character_literal] = STATE(3877), - [sym_string_literal] = STATE(3877), - [sym_raw_string_literal] = STATE(3877), - [sym_boolean_literal] = STATE(3877), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3873), - [sym_preproc_if_in_attribute_list] = STATE(5576), - [sym_preproc_region] = STATE(1668), - [sym_preproc_endregion] = STATE(1668), - [sym_preproc_line] = STATE(1668), - [sym_preproc_pragma] = STATE(1668), - [sym_preproc_nullable] = STATE(1668), - [sym_preproc_error] = STATE(1668), - [sym_preproc_warning] = STATE(1668), - [sym_preproc_define] = STATE(1668), - [sym_preproc_undef] = STATE(1668), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3382), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2359), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(3645), + [sym_non_lvalue_expression] = STATE(3685), + [sym_lvalue_expression] = STATE(2944), + [sym__expression_statement_expression] = STATE(3836), + [sym_assignment_expression] = STATE(3689), + [sym_binary_expression] = STATE(3836), + [sym_postfix_unary_expression] = STATE(3689), + [sym_prefix_unary_expression] = STATE(3689), + [sym__pointer_indirection_expression] = STATE(2906), + [sym_query_expression] = STATE(3836), + [sym_from_clause] = STATE(6139), + [sym_conditional_expression] = STATE(3836), + [sym_conditional_access_expression] = STATE(3836), + [sym_as_expression] = STATE(3836), + [sym_is_expression] = STATE(3836), + [sym_is_pattern_expression] = STATE(3836), + [sym_cast_expression] = STATE(3836), + [sym_checked_expression] = STATE(3836), + [sym_invocation_expression] = STATE(3689), + [sym_switch_expression] = STATE(3836), + [sym_await_expression] = STATE(3689), + [sym_throw_expression] = STATE(3836), + [sym_element_access_expression] = STATE(2906), + [sym_interpolated_string_expression] = STATE(3836), + [sym_member_access_expression] = STATE(2906), + [sym_object_creation_expression] = STATE(3689), + [sym_parenthesized_expression] = STATE(3689), + [sym__parenthesized_lvalue_expression] = STATE(2906), + [sym_lambda_expression] = STATE(3836), + [sym__lambda_expression_init] = STATE(7516), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3836), + [sym_anonymous_method_expression] = STATE(3836), + [sym_anonymous_object_creation_expression] = STATE(3836), + [sym_implicit_array_creation_expression] = STATE(3836), + [sym_implicit_object_creation_expression] = STATE(3836), + [sym_implicit_stackalloc_expression] = STATE(3836), + [sym_initializer_expression] = STATE(3836), + [sym_default_expression] = STATE(3836), + [sym_with_expression] = STATE(3836), + [sym_sizeof_expression] = STATE(3836), + [sym_typeof_expression] = STATE(3836), + [sym_makeref_expression] = STATE(3836), + [sym_ref_expression] = STATE(3836), + [sym_reftype_expression] = STATE(3836), + [sym_refvalue_expression] = STATE(3836), + [sym_stackalloc_expression] = STATE(3836), + [sym_range_expression] = STATE(3836), + [sym_tuple_expression] = STATE(2906), + [sym_literal] = STATE(3836), + [sym_character_literal] = STATE(3843), + [sym_string_literal] = STATE(3843), + [sym_raw_string_literal] = STATE(3843), + [sym_boolean_literal] = STATE(3843), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3836), + [sym_preproc_if_in_attribute_list] = STATE(5583), + [sym_preproc_region] = STATE(1651), + [sym_preproc_endregion] = STATE(1651), + [sym_preproc_line] = STATE(1651), + [sym_preproc_pragma] = STATE(1651), + [sym_preproc_nullable] = STATE(1651), + [sym_preproc_error] = STATE(1651), + [sym_preproc_warning] = STATE(1651), + [sym_preproc_define] = STATE(1651), + [sym_preproc_undef] = STATE(1651), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3477), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1627), - [anon_sym_LPAREN] = ACTIONS(2079), - [anon_sym_ref] = ACTIONS(2081), - [anon_sym_LBRACE] = ACTIONS(1633), - [anon_sym_delegate] = ACTIONS(1635), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1655), + [anon_sym_LPAREN] = ACTIONS(1657), + [anon_sym_ref] = ACTIONS(1659), + [anon_sym_LBRACE] = ACTIONS(1661), + [anon_sym_delegate] = ACTIONS(1663), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1731), + [anon_sym_new] = ACTIONS(1665), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1639), - [anon_sym_BANG] = ACTIONS(2085), - [anon_sym_TILDE] = ACTIONS(2085), - [anon_sym_PLUS_PLUS] = ACTIONS(2085), - [anon_sym_DASH_DASH] = ACTIONS(2085), - [anon_sym_true] = ACTIONS(1645), - [anon_sym_false] = ACTIONS(1645), - [anon_sym_PLUS] = ACTIONS(2083), - [anon_sym_DASH] = ACTIONS(2083), - [anon_sym_STAR] = ACTIONS(1737), - [anon_sym_CARET] = ACTIONS(2085), - [anon_sym_AMP] = ACTIONS(2085), - [anon_sym_this] = ACTIONS(1649), + [anon_sym_checked] = ACTIONS(1667), + [anon_sym_BANG] = ACTIONS(1671), + [anon_sym_TILDE] = ACTIONS(1671), + [anon_sym_PLUS_PLUS] = ACTIONS(1671), + [anon_sym_DASH_DASH] = ACTIONS(1671), + [anon_sym_true] = ACTIONS(1673), + [anon_sym_false] = ACTIONS(1673), + [anon_sym_PLUS] = ACTIONS(1669), + [anon_sym_DASH] = ACTIONS(1669), + [anon_sym_STAR] = ACTIONS(1675), + [anon_sym_CARET] = ACTIONS(1671), + [anon_sym_AMP] = ACTIONS(1671), + [anon_sym_this] = ACTIONS(1677), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1651), + [anon_sym_base] = ACTIONS(1679), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1653), - [anon_sym_unchecked] = ACTIONS(1639), + [sym_predefined_type] = ACTIONS(1681), + [anon_sym_unchecked] = ACTIONS(1667), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1655), - [anon_sym_throw] = ACTIONS(2087), + [anon_sym_default] = ACTIONS(1683), + [anon_sym_throw] = ACTIONS(1685), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2089), - [anon_sym_DOT_DOT] = ACTIONS(2091), + [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), @@ -323804,19 +320817,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1663), - [anon_sym_sizeof] = ACTIONS(1665), - [anon_sym_typeof] = ACTIONS(1667), - [anon_sym___makeref] = ACTIONS(1669), - [anon_sym___reftype] = ACTIONS(1671), - [anon_sym___refvalue] = ACTIONS(1673), - [sym_null_literal] = ACTIONS(1675), - [anon_sym_SQUOTE] = ACTIONS(1677), - [sym_integer_literal] = ACTIONS(1675), - [sym_real_literal] = ACTIONS(1679), - [anon_sym_DQUOTE] = ACTIONS(1681), - [sym_verbatim_string_literal] = ACTIONS(1679), - [aux_sym_preproc_if_token1] = ACTIONS(1683), + [anon_sym_stackalloc] = ACTIONS(1691), + [anon_sym_sizeof] = ACTIONS(1693), + [anon_sym_typeof] = ACTIONS(1695), + [anon_sym___makeref] = ACTIONS(1697), + [anon_sym___reftype] = ACTIONS(1699), + [anon_sym___refvalue] = ACTIONS(1701), + [sym_null_literal] = ACTIONS(1703), + [anon_sym_SQUOTE] = ACTIONS(1705), + [sym_integer_literal] = ACTIONS(1703), + [sym_real_literal] = ACTIONS(1707), + [anon_sym_DQUOTE] = ACTIONS(1709), + [sym_verbatim_string_literal] = ACTIONS(1707), + [aux_sym_preproc_if_token1] = ACTIONS(1711), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -323827,140 +320840,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(1685), - [sym_interpolation_verbatim_start] = ACTIONS(1687), - [sym_interpolation_raw_start] = ACTIONS(1689), - [sym_raw_string_start] = ACTIONS(1691), + [sym_interpolation_regular_start] = ACTIONS(1713), + [sym_interpolation_verbatim_start] = ACTIONS(1715), + [sym_interpolation_raw_start] = ACTIONS(1717), + [sym_raw_string_start] = ACTIONS(1719), }, - [1669] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2762), - [sym__name] = STATE(5892), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2316), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(4587), - [sym_non_lvalue_expression] = STATE(3438), - [sym_lvalue_expression] = STATE(3500), - [sym__expression_statement_expression] = STATE(3362), - [sym_assignment_expression] = STATE(3449), - [sym_binary_expression] = STATE(3362), - [sym_postfix_unary_expression] = STATE(3449), - [sym_prefix_unary_expression] = STATE(3449), - [sym__pointer_indirection_expression] = STATE(2747), - [sym_query_expression] = STATE(3362), - [sym_from_clause] = STATE(6147), - [sym_conditional_expression] = STATE(3362), - [sym_conditional_access_expression] = STATE(3362), - [sym_as_expression] = STATE(3362), - [sym_is_expression] = STATE(3362), - [sym_is_pattern_expression] = STATE(3362), - [sym_cast_expression] = STATE(3362), - [sym_checked_expression] = STATE(3362), - [sym_invocation_expression] = STATE(3449), - [sym_switch_expression] = STATE(3362), - [sym_await_expression] = STATE(3449), - [sym_throw_expression] = STATE(3362), - [sym_element_access_expression] = STATE(2747), - [sym_interpolated_string_expression] = STATE(3362), - [sym_member_access_expression] = STATE(2747), - [sym_object_creation_expression] = STATE(3449), - [sym_parenthesized_expression] = STATE(3449), - [sym__parenthesized_lvalue_expression] = STATE(2747), - [sym_lambda_expression] = STATE(3362), + [1652] = { + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2901), + [sym__name] = STATE(5883), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2359), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(3679), + [sym_non_lvalue_expression] = STATE(3685), + [sym_lvalue_expression] = STATE(2944), + [sym__expression_statement_expression] = STATE(3836), + [sym_assignment_expression] = STATE(3689), + [sym_binary_expression] = STATE(3836), + [sym_postfix_unary_expression] = STATE(3689), + [sym_prefix_unary_expression] = STATE(3689), + [sym__pointer_indirection_expression] = STATE(2906), + [sym_query_expression] = STATE(3836), + [sym_from_clause] = STATE(6139), + [sym_conditional_expression] = STATE(3836), + [sym_conditional_access_expression] = STATE(3836), + [sym_as_expression] = STATE(3836), + [sym_is_expression] = STATE(3836), + [sym_is_pattern_expression] = STATE(3836), + [sym_cast_expression] = STATE(3836), + [sym_checked_expression] = STATE(3836), + [sym_invocation_expression] = STATE(3689), + [sym_switch_expression] = STATE(3836), + [sym_await_expression] = STATE(3689), + [sym_throw_expression] = STATE(3836), + [sym_element_access_expression] = STATE(2906), + [sym_interpolated_string_expression] = STATE(3836), + [sym_member_access_expression] = STATE(2906), + [sym_object_creation_expression] = STATE(3689), + [sym_parenthesized_expression] = STATE(3689), + [sym__parenthesized_lvalue_expression] = STATE(2906), + [sym_lambda_expression] = STATE(3836), [sym__lambda_expression_init] = STATE(7516), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3362), - [sym_anonymous_method_expression] = STATE(3362), - [sym_anonymous_object_creation_expression] = STATE(3362), - [sym_implicit_array_creation_expression] = STATE(3362), - [sym_implicit_object_creation_expression] = STATE(3362), - [sym_implicit_stackalloc_expression] = STATE(3362), - [sym_initializer_expression] = STATE(3362), - [sym_default_expression] = STATE(3362), - [sym_with_expression] = STATE(3362), - [sym_sizeof_expression] = STATE(3362), - [sym_typeof_expression] = STATE(3362), - [sym_makeref_expression] = STATE(3362), - [sym_ref_expression] = STATE(3362), - [sym_reftype_expression] = STATE(3362), - [sym_refvalue_expression] = STATE(3362), - [sym_stackalloc_expression] = STATE(3362), - [sym_range_expression] = STATE(3362), - [sym_tuple_expression] = STATE(2747), - [sym_literal] = STATE(3362), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2267), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3362), - [sym_preproc_if_in_attribute_list] = STATE(5576), - [sym_preproc_region] = STATE(1669), - [sym_preproc_endregion] = STATE(1669), - [sym_preproc_line] = STATE(1669), - [sym_preproc_pragma] = STATE(1669), - [sym_preproc_nullable] = STATE(1669), - [sym_preproc_error] = STATE(1669), - [sym_preproc_warning] = STATE(1669), - [sym_preproc_define] = STATE(1669), - [sym_preproc_undef] = STATE(1669), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3385), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3836), + [sym_anonymous_method_expression] = STATE(3836), + [sym_anonymous_object_creation_expression] = STATE(3836), + [sym_implicit_array_creation_expression] = STATE(3836), + [sym_implicit_object_creation_expression] = STATE(3836), + [sym_implicit_stackalloc_expression] = STATE(3836), + [sym_initializer_expression] = STATE(3836), + [sym_default_expression] = STATE(3836), + [sym_with_expression] = STATE(3836), + [sym_sizeof_expression] = STATE(3836), + [sym_typeof_expression] = STATE(3836), + [sym_makeref_expression] = STATE(3836), + [sym_ref_expression] = STATE(3836), + [sym_reftype_expression] = STATE(3836), + [sym_refvalue_expression] = STATE(3836), + [sym_stackalloc_expression] = STATE(3836), + [sym_range_expression] = STATE(3836), + [sym_tuple_expression] = STATE(2906), + [sym_literal] = STATE(3836), + [sym_character_literal] = STATE(3843), + [sym_string_literal] = STATE(3843), + [sym_raw_string_literal] = STATE(3843), + [sym_boolean_literal] = STATE(3843), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3836), + [sym_preproc_if_in_attribute_list] = STATE(5583), + [sym_preproc_region] = STATE(1652), + [sym_preproc_endregion] = STATE(1652), + [sym_preproc_line] = STATE(1652), + [sym_preproc_pragma] = STATE(1652), + [sym_preproc_nullable] = STATE(1652), + [sym_preproc_error] = STATE(1652), + [sym_preproc_warning] = STATE(1652), + [sym_preproc_define] = STATE(1652), + [sym_preproc_undef] = STATE(1652), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3477), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1307), - [anon_sym_LPAREN] = ACTIONS(1609), - [anon_sym_ref] = ACTIONS(1611), - [anon_sym_LBRACE] = ACTIONS(1313), - [anon_sym_delegate] = ACTIONS(1315), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1655), + [anon_sym_LPAREN] = ACTIONS(1657), + [anon_sym_ref] = ACTIONS(1659), + [anon_sym_LBRACE] = ACTIONS(1661), + [anon_sym_delegate] = ACTIONS(1663), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1613), + [anon_sym_new] = ACTIONS(1665), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1319), - [anon_sym_BANG] = ACTIONS(1617), - [anon_sym_TILDE] = ACTIONS(1617), - [anon_sym_PLUS_PLUS] = ACTIONS(1617), - [anon_sym_DASH_DASH] = ACTIONS(1617), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1615), - [anon_sym_DASH] = ACTIONS(1615), - [anon_sym_STAR] = ACTIONS(1619), - [anon_sym_CARET] = ACTIONS(1617), - [anon_sym_AMP] = ACTIONS(1617), - [anon_sym_this] = ACTIONS(1323), + [anon_sym_checked] = ACTIONS(1667), + [anon_sym_BANG] = ACTIONS(1671), + [anon_sym_TILDE] = ACTIONS(1671), + [anon_sym_PLUS_PLUS] = ACTIONS(1671), + [anon_sym_DASH_DASH] = ACTIONS(1671), + [anon_sym_true] = ACTIONS(1673), + [anon_sym_false] = ACTIONS(1673), + [anon_sym_PLUS] = ACTIONS(1669), + [anon_sym_DASH] = ACTIONS(1669), + [anon_sym_STAR] = ACTIONS(1675), + [anon_sym_CARET] = ACTIONS(1671), + [anon_sym_AMP] = ACTIONS(1671), + [anon_sym_this] = ACTIONS(1677), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1325), + [anon_sym_base] = ACTIONS(1679), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1319), + [sym_predefined_type] = ACTIONS(1681), + [anon_sym_unchecked] = ACTIONS(1667), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1621), + [anon_sym_default] = ACTIONS(1683), + [anon_sym_throw] = ACTIONS(1685), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1623), - [anon_sym_DOT_DOT] = ACTIONS(1625), + [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), @@ -323973,19 +320986,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1333), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(1335), - [anon_sym___reftype] = ACTIONS(1337), - [anon_sym___refvalue] = ACTIONS(1339), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1341), + [anon_sym_stackalloc] = ACTIONS(1691), + [anon_sym_sizeof] = ACTIONS(1693), + [anon_sym_typeof] = ACTIONS(1695), + [anon_sym___makeref] = ACTIONS(1697), + [anon_sym___reftype] = ACTIONS(1699), + [anon_sym___refvalue] = ACTIONS(1701), + [sym_null_literal] = ACTIONS(1703), + [anon_sym_SQUOTE] = ACTIONS(1705), + [sym_integer_literal] = ACTIONS(1703), + [sym_real_literal] = ACTIONS(1707), + [anon_sym_DQUOTE] = ACTIONS(1709), + [sym_verbatim_string_literal] = ACTIONS(1707), + [aux_sym_preproc_if_token1] = ACTIONS(1711), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -323996,140 +321009,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(1713), + [sym_interpolation_verbatim_start] = ACTIONS(1715), + [sym_interpolation_raw_start] = ACTIONS(1717), + [sym_raw_string_start] = ACTIONS(1719), }, - [1670] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2762), - [sym__name] = STATE(5892), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2316), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(4588), - [sym_non_lvalue_expression] = STATE(3438), - [sym_lvalue_expression] = STATE(3500), - [sym__expression_statement_expression] = STATE(3362), - [sym_assignment_expression] = STATE(3449), - [sym_binary_expression] = STATE(3362), - [sym_postfix_unary_expression] = STATE(3449), - [sym_prefix_unary_expression] = STATE(3449), - [sym__pointer_indirection_expression] = STATE(2747), - [sym_query_expression] = STATE(3362), - [sym_from_clause] = STATE(6147), - [sym_conditional_expression] = STATE(3362), - [sym_conditional_access_expression] = STATE(3362), - [sym_as_expression] = STATE(3362), - [sym_is_expression] = STATE(3362), - [sym_is_pattern_expression] = STATE(3362), - [sym_cast_expression] = STATE(3362), - [sym_checked_expression] = STATE(3362), - [sym_invocation_expression] = STATE(3449), - [sym_switch_expression] = STATE(3362), - [sym_await_expression] = STATE(3449), - [sym_throw_expression] = STATE(3362), - [sym_element_access_expression] = STATE(2747), - [sym_interpolated_string_expression] = STATE(3362), - [sym_member_access_expression] = STATE(2747), - [sym_object_creation_expression] = STATE(3449), - [sym_parenthesized_expression] = STATE(3449), - [sym__parenthesized_lvalue_expression] = STATE(2747), - [sym_lambda_expression] = STATE(3362), + [1653] = { + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2901), + [sym__name] = STATE(5883), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2359), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(3653), + [sym_non_lvalue_expression] = STATE(3685), + [sym_lvalue_expression] = STATE(2944), + [sym__expression_statement_expression] = STATE(3836), + [sym_assignment_expression] = STATE(3689), + [sym_binary_expression] = STATE(3836), + [sym_postfix_unary_expression] = STATE(3689), + [sym_prefix_unary_expression] = STATE(3689), + [sym__pointer_indirection_expression] = STATE(2906), + [sym_query_expression] = STATE(3836), + [sym_from_clause] = STATE(6139), + [sym_conditional_expression] = STATE(3836), + [sym_conditional_access_expression] = STATE(3836), + [sym_as_expression] = STATE(3836), + [sym_is_expression] = STATE(3836), + [sym_is_pattern_expression] = STATE(3836), + [sym_cast_expression] = STATE(3836), + [sym_checked_expression] = STATE(3836), + [sym_invocation_expression] = STATE(3689), + [sym_switch_expression] = STATE(3836), + [sym_await_expression] = STATE(3689), + [sym_throw_expression] = STATE(3836), + [sym_element_access_expression] = STATE(2906), + [sym_interpolated_string_expression] = STATE(3836), + [sym_member_access_expression] = STATE(2906), + [sym_object_creation_expression] = STATE(3689), + [sym_parenthesized_expression] = STATE(3689), + [sym__parenthesized_lvalue_expression] = STATE(2906), + [sym_lambda_expression] = STATE(3836), [sym__lambda_expression_init] = STATE(7516), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3362), - [sym_anonymous_method_expression] = STATE(3362), - [sym_anonymous_object_creation_expression] = STATE(3362), - [sym_implicit_array_creation_expression] = STATE(3362), - [sym_implicit_object_creation_expression] = STATE(3362), - [sym_implicit_stackalloc_expression] = STATE(3362), - [sym_initializer_expression] = STATE(3362), - [sym_default_expression] = STATE(3362), - [sym_with_expression] = STATE(3362), - [sym_sizeof_expression] = STATE(3362), - [sym_typeof_expression] = STATE(3362), - [sym_makeref_expression] = STATE(3362), - [sym_ref_expression] = STATE(3362), - [sym_reftype_expression] = STATE(3362), - [sym_refvalue_expression] = STATE(3362), - [sym_stackalloc_expression] = STATE(3362), - [sym_range_expression] = STATE(3362), - [sym_tuple_expression] = STATE(2747), - [sym_literal] = STATE(3362), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2267), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3362), - [sym_preproc_if_in_attribute_list] = STATE(5576), - [sym_preproc_region] = STATE(1670), - [sym_preproc_endregion] = STATE(1670), - [sym_preproc_line] = STATE(1670), - [sym_preproc_pragma] = STATE(1670), - [sym_preproc_nullable] = STATE(1670), - [sym_preproc_error] = STATE(1670), - [sym_preproc_warning] = STATE(1670), - [sym_preproc_define] = STATE(1670), - [sym_preproc_undef] = STATE(1670), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3385), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3836), + [sym_anonymous_method_expression] = STATE(3836), + [sym_anonymous_object_creation_expression] = STATE(3836), + [sym_implicit_array_creation_expression] = STATE(3836), + [sym_implicit_object_creation_expression] = STATE(3836), + [sym_implicit_stackalloc_expression] = STATE(3836), + [sym_initializer_expression] = STATE(3836), + [sym_default_expression] = STATE(3836), + [sym_with_expression] = STATE(3836), + [sym_sizeof_expression] = STATE(3836), + [sym_typeof_expression] = STATE(3836), + [sym_makeref_expression] = STATE(3836), + [sym_ref_expression] = STATE(3836), + [sym_reftype_expression] = STATE(3836), + [sym_refvalue_expression] = STATE(3836), + [sym_stackalloc_expression] = STATE(3836), + [sym_range_expression] = STATE(3836), + [sym_tuple_expression] = STATE(2906), + [sym_literal] = STATE(3836), + [sym_character_literal] = STATE(3843), + [sym_string_literal] = STATE(3843), + [sym_raw_string_literal] = STATE(3843), + [sym_boolean_literal] = STATE(3843), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3836), + [sym_preproc_if_in_attribute_list] = STATE(5583), + [sym_preproc_region] = STATE(1653), + [sym_preproc_endregion] = STATE(1653), + [sym_preproc_line] = STATE(1653), + [sym_preproc_pragma] = STATE(1653), + [sym_preproc_nullable] = STATE(1653), + [sym_preproc_error] = STATE(1653), + [sym_preproc_warning] = STATE(1653), + [sym_preproc_define] = STATE(1653), + [sym_preproc_undef] = STATE(1653), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3477), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1307), - [anon_sym_LPAREN] = ACTIONS(1609), - [anon_sym_ref] = ACTIONS(1611), - [anon_sym_LBRACE] = ACTIONS(1313), - [anon_sym_delegate] = ACTIONS(1315), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1655), + [anon_sym_LPAREN] = ACTIONS(1657), + [anon_sym_ref] = ACTIONS(1659), + [anon_sym_LBRACE] = ACTIONS(1661), + [anon_sym_delegate] = ACTIONS(1663), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1613), + [anon_sym_new] = ACTIONS(1665), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1319), - [anon_sym_BANG] = ACTIONS(1617), - [anon_sym_TILDE] = ACTIONS(1617), - [anon_sym_PLUS_PLUS] = ACTIONS(1617), - [anon_sym_DASH_DASH] = ACTIONS(1617), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1615), - [anon_sym_DASH] = ACTIONS(1615), - [anon_sym_STAR] = ACTIONS(1619), - [anon_sym_CARET] = ACTIONS(1617), - [anon_sym_AMP] = ACTIONS(1617), - [anon_sym_this] = ACTIONS(1323), + [anon_sym_checked] = ACTIONS(1667), + [anon_sym_BANG] = ACTIONS(1671), + [anon_sym_TILDE] = ACTIONS(1671), + [anon_sym_PLUS_PLUS] = ACTIONS(1671), + [anon_sym_DASH_DASH] = ACTIONS(1671), + [anon_sym_true] = ACTIONS(1673), + [anon_sym_false] = ACTIONS(1673), + [anon_sym_PLUS] = ACTIONS(1669), + [anon_sym_DASH] = ACTIONS(1669), + [anon_sym_STAR] = ACTIONS(1675), + [anon_sym_CARET] = ACTIONS(1671), + [anon_sym_AMP] = ACTIONS(1671), + [anon_sym_this] = ACTIONS(1677), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1325), + [anon_sym_base] = ACTIONS(1679), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1319), + [sym_predefined_type] = ACTIONS(1681), + [anon_sym_unchecked] = ACTIONS(1667), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1621), + [anon_sym_default] = ACTIONS(1683), + [anon_sym_throw] = ACTIONS(1685), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1623), - [anon_sym_DOT_DOT] = ACTIONS(1625), + [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), @@ -324142,19 +321155,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1333), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(1335), - [anon_sym___reftype] = ACTIONS(1337), - [anon_sym___refvalue] = ACTIONS(1339), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1341), + [anon_sym_stackalloc] = ACTIONS(1691), + [anon_sym_sizeof] = ACTIONS(1693), + [anon_sym_typeof] = ACTIONS(1695), + [anon_sym___makeref] = ACTIONS(1697), + [anon_sym___reftype] = ACTIONS(1699), + [anon_sym___refvalue] = ACTIONS(1701), + [sym_null_literal] = ACTIONS(1703), + [anon_sym_SQUOTE] = ACTIONS(1705), + [sym_integer_literal] = ACTIONS(1703), + [sym_real_literal] = ACTIONS(1707), + [anon_sym_DQUOTE] = ACTIONS(1709), + [sym_verbatim_string_literal] = ACTIONS(1707), + [aux_sym_preproc_if_token1] = ACTIONS(1711), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -324165,140 +321178,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(1713), + [sym_interpolation_verbatim_start] = ACTIONS(1715), + [sym_interpolation_raw_start] = ACTIONS(1717), + [sym_raw_string_start] = ACTIONS(1719), }, - [1671] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2610), - [sym__name] = STATE(5898), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2197), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(3857), - [sym_non_lvalue_expression] = STATE(3277), - [sym_lvalue_expression] = STATE(3023), - [sym__expression_statement_expression] = STATE(3228), - [sym_assignment_expression] = STATE(3289), - [sym_binary_expression] = STATE(3228), - [sym_postfix_unary_expression] = STATE(3289), - [sym_prefix_unary_expression] = STATE(3289), - [sym__pointer_indirection_expression] = STATE(2609), - [sym_query_expression] = STATE(3228), - [sym_from_clause] = STATE(6172), - [sym_conditional_expression] = STATE(3228), - [sym_conditional_access_expression] = STATE(3228), - [sym_as_expression] = STATE(3228), - [sym_is_expression] = STATE(3228), - [sym_is_pattern_expression] = STATE(3228), - [sym_cast_expression] = STATE(3228), - [sym_checked_expression] = STATE(3228), - [sym_invocation_expression] = STATE(3289), - [sym_switch_expression] = STATE(3228), - [sym_await_expression] = STATE(3289), - [sym_throw_expression] = STATE(3228), - [sym_element_access_expression] = STATE(2609), - [sym_interpolated_string_expression] = STATE(3228), - [sym_member_access_expression] = STATE(2609), - [sym_object_creation_expression] = STATE(3289), - [sym_parenthesized_expression] = STATE(3289), - [sym__parenthesized_lvalue_expression] = STATE(2609), - [sym_lambda_expression] = STATE(3228), - [sym__lambda_expression_init] = STATE(7653), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3228), - [sym_anonymous_method_expression] = STATE(3228), - [sym_anonymous_object_creation_expression] = STATE(3228), - [sym_implicit_array_creation_expression] = STATE(3228), - [sym_implicit_object_creation_expression] = STATE(3228), - [sym_implicit_stackalloc_expression] = STATE(3228), - [sym_initializer_expression] = STATE(3228), - [sym_default_expression] = STATE(3228), - [sym_with_expression] = STATE(3228), - [sym_sizeof_expression] = STATE(3228), - [sym_typeof_expression] = STATE(3228), - [sym_makeref_expression] = STATE(3228), - [sym_ref_expression] = STATE(3228), - [sym_reftype_expression] = STATE(3228), - [sym_refvalue_expression] = STATE(3228), - [sym_stackalloc_expression] = STATE(3228), - [sym_range_expression] = STATE(3228), - [sym_tuple_expression] = STATE(2609), - [sym_literal] = STATE(3228), - [sym_character_literal] = STATE(3278), - [sym_string_literal] = STATE(3278), - [sym_raw_string_literal] = STATE(3278), - [sym_boolean_literal] = STATE(3278), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3228), - [sym_preproc_if_in_attribute_list] = STATE(5576), - [sym_preproc_region] = STATE(1671), - [sym_preproc_endregion] = STATE(1671), - [sym_preproc_line] = STATE(1671), - [sym_preproc_pragma] = STATE(1671), - [sym_preproc_nullable] = STATE(1671), - [sym_preproc_error] = STATE(1671), - [sym_preproc_warning] = STATE(1671), - [sym_preproc_define] = STATE(1671), - [sym_preproc_undef] = STATE(1671), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3396), + [1654] = { + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2901), + [sym__name] = STATE(5883), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2359), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(3658), + [sym_non_lvalue_expression] = STATE(3685), + [sym_lvalue_expression] = STATE(2944), + [sym__expression_statement_expression] = STATE(3836), + [sym_assignment_expression] = STATE(3689), + [sym_binary_expression] = STATE(3836), + [sym_postfix_unary_expression] = STATE(3689), + [sym_prefix_unary_expression] = STATE(3689), + [sym__pointer_indirection_expression] = STATE(2906), + [sym_query_expression] = STATE(3836), + [sym_from_clause] = STATE(6139), + [sym_conditional_expression] = STATE(3836), + [sym_conditional_access_expression] = STATE(3836), + [sym_as_expression] = STATE(3836), + [sym_is_expression] = STATE(3836), + [sym_is_pattern_expression] = STATE(3836), + [sym_cast_expression] = STATE(3836), + [sym_checked_expression] = STATE(3836), + [sym_invocation_expression] = STATE(3689), + [sym_switch_expression] = STATE(3836), + [sym_await_expression] = STATE(3689), + [sym_throw_expression] = STATE(3836), + [sym_element_access_expression] = STATE(2906), + [sym_interpolated_string_expression] = STATE(3836), + [sym_member_access_expression] = STATE(2906), + [sym_object_creation_expression] = STATE(3689), + [sym_parenthesized_expression] = STATE(3689), + [sym__parenthesized_lvalue_expression] = STATE(2906), + [sym_lambda_expression] = STATE(3836), + [sym__lambda_expression_init] = STATE(7516), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3836), + [sym_anonymous_method_expression] = STATE(3836), + [sym_anonymous_object_creation_expression] = STATE(3836), + [sym_implicit_array_creation_expression] = STATE(3836), + [sym_implicit_object_creation_expression] = STATE(3836), + [sym_implicit_stackalloc_expression] = STATE(3836), + [sym_initializer_expression] = STATE(3836), + [sym_default_expression] = STATE(3836), + [sym_with_expression] = STATE(3836), + [sym_sizeof_expression] = STATE(3836), + [sym_typeof_expression] = STATE(3836), + [sym_makeref_expression] = STATE(3836), + [sym_ref_expression] = STATE(3836), + [sym_reftype_expression] = STATE(3836), + [sym_refvalue_expression] = STATE(3836), + [sym_stackalloc_expression] = STATE(3836), + [sym_range_expression] = STATE(3836), + [sym_tuple_expression] = STATE(2906), + [sym_literal] = STATE(3836), + [sym_character_literal] = STATE(3843), + [sym_string_literal] = STATE(3843), + [sym_raw_string_literal] = STATE(3843), + [sym_boolean_literal] = STATE(3843), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3836), + [sym_preproc_if_in_attribute_list] = STATE(5583), + [sym_preproc_region] = STATE(1654), + [sym_preproc_endregion] = STATE(1654), + [sym_preproc_line] = STATE(1654), + [sym_preproc_pragma] = STATE(1654), + [sym_preproc_nullable] = STATE(1654), + [sym_preproc_error] = STATE(1654), + [sym_preproc_warning] = STATE(1654), + [sym_preproc_define] = STATE(1654), + [sym_preproc_undef] = STATE(1654), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3477), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1153), - [anon_sym_LPAREN] = ACTIONS(1155), - [anon_sym_ref] = ACTIONS(1157), - [anon_sym_LBRACE] = ACTIONS(1159), - [anon_sym_delegate] = ACTIONS(1161), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1655), + [anon_sym_LPAREN] = ACTIONS(1657), + [anon_sym_ref] = ACTIONS(1659), + [anon_sym_LBRACE] = ACTIONS(1661), + [anon_sym_delegate] = ACTIONS(1663), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1163), + [anon_sym_new] = ACTIONS(1665), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1167), - [anon_sym_BANG] = ACTIONS(1171), - [anon_sym_TILDE] = ACTIONS(1171), - [anon_sym_PLUS_PLUS] = ACTIONS(1171), - [anon_sym_DASH_DASH] = ACTIONS(1171), - [anon_sym_true] = ACTIONS(1173), - [anon_sym_false] = ACTIONS(1173), - [anon_sym_PLUS] = ACTIONS(1169), - [anon_sym_DASH] = ACTIONS(1169), - [anon_sym_STAR] = ACTIONS(1175), - [anon_sym_CARET] = ACTIONS(1171), - [anon_sym_AMP] = ACTIONS(1171), - [anon_sym_this] = ACTIONS(1177), + [anon_sym_checked] = ACTIONS(1667), + [anon_sym_BANG] = ACTIONS(1671), + [anon_sym_TILDE] = ACTIONS(1671), + [anon_sym_PLUS_PLUS] = ACTIONS(1671), + [anon_sym_DASH_DASH] = ACTIONS(1671), + [anon_sym_true] = ACTIONS(1673), + [anon_sym_false] = ACTIONS(1673), + [anon_sym_PLUS] = ACTIONS(1669), + [anon_sym_DASH] = ACTIONS(1669), + [anon_sym_STAR] = ACTIONS(1675), + [anon_sym_CARET] = ACTIONS(1671), + [anon_sym_AMP] = ACTIONS(1671), + [anon_sym_this] = ACTIONS(1677), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1179), + [anon_sym_base] = ACTIONS(1679), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1181), - [anon_sym_unchecked] = ACTIONS(1167), + [sym_predefined_type] = ACTIONS(1681), + [anon_sym_unchecked] = ACTIONS(1667), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1183), - [anon_sym_throw] = ACTIONS(1185), + [anon_sym_default] = ACTIONS(1683), + [anon_sym_throw] = ACTIONS(1685), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1187), - [anon_sym_DOT_DOT] = ACTIONS(1189), + [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), @@ -324311,19 +321324,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1191), - [anon_sym_sizeof] = ACTIONS(1193), - [anon_sym_typeof] = ACTIONS(1195), - [anon_sym___makeref] = ACTIONS(1197), - [anon_sym___reftype] = ACTIONS(1199), - [anon_sym___refvalue] = ACTIONS(1201), - [sym_null_literal] = ACTIONS(1203), - [anon_sym_SQUOTE] = ACTIONS(1205), - [sym_integer_literal] = ACTIONS(1203), - [sym_real_literal] = ACTIONS(1207), - [anon_sym_DQUOTE] = ACTIONS(1209), - [sym_verbatim_string_literal] = ACTIONS(1207), - [aux_sym_preproc_if_token1] = ACTIONS(1211), + [anon_sym_stackalloc] = ACTIONS(1691), + [anon_sym_sizeof] = ACTIONS(1693), + [anon_sym_typeof] = ACTIONS(1695), + [anon_sym___makeref] = ACTIONS(1697), + [anon_sym___reftype] = ACTIONS(1699), + [anon_sym___refvalue] = ACTIONS(1701), + [sym_null_literal] = ACTIONS(1703), + [anon_sym_SQUOTE] = ACTIONS(1705), + [sym_integer_literal] = ACTIONS(1703), + [sym_real_literal] = ACTIONS(1707), + [anon_sym_DQUOTE] = ACTIONS(1709), + [sym_verbatim_string_literal] = ACTIONS(1707), + [aux_sym_preproc_if_token1] = ACTIONS(1711), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -324334,140 +321347,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(1213), - [sym_interpolation_verbatim_start] = ACTIONS(1215), - [sym_interpolation_raw_start] = ACTIONS(1217), - [sym_raw_string_start] = ACTIONS(1219), + [sym_interpolation_regular_start] = ACTIONS(1713), + [sym_interpolation_verbatim_start] = ACTIONS(1715), + [sym_interpolation_raw_start] = ACTIONS(1717), + [sym_raw_string_start] = ACTIONS(1719), }, - [1672] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(5910), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2247), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(5202), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3379), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3080), - [sym_postfix_unary_expression] = STATE(3111), - [sym_prefix_unary_expression] = STATE(3111), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6154), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3080), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3111), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3080), - [sym_member_access_expression] = STATE(2484), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3111), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7575), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(3080), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3080), - [sym_typeof_expression] = STATE(3080), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2484), - [sym_literal] = STATE(3080), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), - [sym_preproc_region] = STATE(1672), - [sym_preproc_endregion] = STATE(1672), - [sym_preproc_line] = STATE(1672), - [sym_preproc_pragma] = STATE(1672), - [sym_preproc_nullable] = STATE(1672), - [sym_preproc_error] = STATE(1672), - [sym_preproc_warning] = STATE(1672), - [sym_preproc_define] = STATE(1672), - [sym_preproc_undef] = STATE(1672), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [1655] = { + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2901), + [sym__name] = STATE(5883), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2359), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(3674), + [sym_non_lvalue_expression] = STATE(3685), + [sym_lvalue_expression] = STATE(2944), + [sym__expression_statement_expression] = STATE(3836), + [sym_assignment_expression] = STATE(3689), + [sym_binary_expression] = STATE(3836), + [sym_postfix_unary_expression] = STATE(3689), + [sym_prefix_unary_expression] = STATE(3689), + [sym__pointer_indirection_expression] = STATE(2906), + [sym_query_expression] = STATE(3836), + [sym_from_clause] = STATE(6139), + [sym_conditional_expression] = STATE(3836), + [sym_conditional_access_expression] = STATE(3836), + [sym_as_expression] = STATE(3836), + [sym_is_expression] = STATE(3836), + [sym_is_pattern_expression] = STATE(3836), + [sym_cast_expression] = STATE(3836), + [sym_checked_expression] = STATE(3836), + [sym_invocation_expression] = STATE(3689), + [sym_switch_expression] = STATE(3836), + [sym_await_expression] = STATE(3689), + [sym_throw_expression] = STATE(3836), + [sym_element_access_expression] = STATE(2906), + [sym_interpolated_string_expression] = STATE(3836), + [sym_member_access_expression] = STATE(2906), + [sym_object_creation_expression] = STATE(3689), + [sym_parenthesized_expression] = STATE(3689), + [sym__parenthesized_lvalue_expression] = STATE(2906), + [sym_lambda_expression] = STATE(3836), + [sym__lambda_expression_init] = STATE(7516), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3836), + [sym_anonymous_method_expression] = STATE(3836), + [sym_anonymous_object_creation_expression] = STATE(3836), + [sym_implicit_array_creation_expression] = STATE(3836), + [sym_implicit_object_creation_expression] = STATE(3836), + [sym_implicit_stackalloc_expression] = STATE(3836), + [sym_initializer_expression] = STATE(3836), + [sym_default_expression] = STATE(3836), + [sym_with_expression] = STATE(3836), + [sym_sizeof_expression] = STATE(3836), + [sym_typeof_expression] = STATE(3836), + [sym_makeref_expression] = STATE(3836), + [sym_ref_expression] = STATE(3836), + [sym_reftype_expression] = STATE(3836), + [sym_refvalue_expression] = STATE(3836), + [sym_stackalloc_expression] = STATE(3836), + [sym_range_expression] = STATE(3836), + [sym_tuple_expression] = STATE(2906), + [sym_literal] = STATE(3836), + [sym_character_literal] = STATE(3843), + [sym_string_literal] = STATE(3843), + [sym_raw_string_literal] = STATE(3843), + [sym_boolean_literal] = STATE(3843), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3836), + [sym_preproc_if_in_attribute_list] = STATE(5583), + [sym_preproc_region] = STATE(1655), + [sym_preproc_endregion] = STATE(1655), + [sym_preproc_line] = STATE(1655), + [sym_preproc_pragma] = STATE(1655), + [sym_preproc_nullable] = STATE(1655), + [sym_preproc_error] = STATE(1655), + [sym_preproc_warning] = STATE(1655), + [sym_preproc_define] = STATE(1655), + [sym_preproc_undef] = STATE(1655), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3477), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1481), - [anon_sym_LPAREN] = ACTIONS(895), - [anon_sym_ref] = ACTIONS(897), - [anon_sym_LBRACE] = ACTIONS(1487), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1655), + [anon_sym_LPAREN] = ACTIONS(1657), + [anon_sym_ref] = ACTIONS(1659), + [anon_sym_LBRACE] = ACTIONS(1661), + [anon_sym_delegate] = ACTIONS(1663), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1061), + [anon_sym_new] = ACTIONS(1665), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1067), - [anon_sym_BANG] = ACTIONS(1495), - [anon_sym_TILDE] = ACTIONS(1495), - [anon_sym_PLUS_PLUS] = ACTIONS(1495), - [anon_sym_DASH_DASH] = ACTIONS(1495), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1493), - [anon_sym_DASH] = ACTIONS(1493), - [anon_sym_STAR] = ACTIONS(905), - [anon_sym_CARET] = ACTIONS(1495), - [anon_sym_AMP] = ACTIONS(1495), - [anon_sym_this] = ACTIONS(83), + [anon_sym_checked] = ACTIONS(1667), + [anon_sym_BANG] = ACTIONS(1671), + [anon_sym_TILDE] = ACTIONS(1671), + [anon_sym_PLUS_PLUS] = ACTIONS(1671), + [anon_sym_DASH_DASH] = ACTIONS(1671), + [anon_sym_true] = ACTIONS(1673), + [anon_sym_false] = ACTIONS(1673), + [anon_sym_PLUS] = ACTIONS(1669), + [anon_sym_DASH] = ACTIONS(1669), + [anon_sym_STAR] = ACTIONS(1675), + [anon_sym_CARET] = ACTIONS(1671), + [anon_sym_AMP] = ACTIONS(1671), + [anon_sym_this] = ACTIONS(1677), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), + [anon_sym_base] = ACTIONS(1679), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1067), + [sym_predefined_type] = ACTIONS(1681), + [anon_sym_unchecked] = ACTIONS(1667), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1079), + [anon_sym_default] = ACTIONS(1683), + [anon_sym_throw] = ACTIONS(1685), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1081), - [anon_sym_DOT_DOT] = ACTIONS(911), + [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), @@ -324480,19 +321493,19 @@ static const uint16_t ts_parse_table[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(1089), + [anon_sym_stackalloc] = ACTIONS(1691), + [anon_sym_sizeof] = ACTIONS(1693), + [anon_sym_typeof] = ACTIONS(1695), + [anon_sym___makeref] = ACTIONS(1697), + [anon_sym___reftype] = ACTIONS(1699), + [anon_sym___refvalue] = ACTIONS(1701), + [sym_null_literal] = ACTIONS(1703), + [anon_sym_SQUOTE] = ACTIONS(1705), + [sym_integer_literal] = ACTIONS(1703), + [sym_real_literal] = ACTIONS(1707), + [anon_sym_DQUOTE] = ACTIONS(1709), + [sym_verbatim_string_literal] = ACTIONS(1707), + [aux_sym_preproc_if_token1] = ACTIONS(1711), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -324503,140 +321516,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(1713), + [sym_interpolation_verbatim_start] = ACTIONS(1715), + [sym_interpolation_raw_start] = ACTIONS(1717), + [sym_raw_string_start] = ACTIONS(1719), }, - [1673] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(5910), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2247), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(5337), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3379), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3080), - [sym_postfix_unary_expression] = STATE(3111), - [sym_prefix_unary_expression] = STATE(3111), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6154), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3080), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3111), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3080), - [sym_member_access_expression] = STATE(2484), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3111), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7575), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(3080), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3080), - [sym_typeof_expression] = STATE(3080), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2484), - [sym_literal] = STATE(3080), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), - [sym_preproc_region] = STATE(1673), - [sym_preproc_endregion] = STATE(1673), - [sym_preproc_line] = STATE(1673), - [sym_preproc_pragma] = STATE(1673), - [sym_preproc_nullable] = STATE(1673), - [sym_preproc_error] = STATE(1673), - [sym_preproc_warning] = STATE(1673), - [sym_preproc_define] = STATE(1673), - [sym_preproc_undef] = STATE(1673), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [1656] = { + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2901), + [sym__name] = STATE(5883), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2359), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(3668), + [sym_non_lvalue_expression] = STATE(3685), + [sym_lvalue_expression] = STATE(2944), + [sym__expression_statement_expression] = STATE(3836), + [sym_assignment_expression] = STATE(3689), + [sym_binary_expression] = STATE(3836), + [sym_postfix_unary_expression] = STATE(3689), + [sym_prefix_unary_expression] = STATE(3689), + [sym__pointer_indirection_expression] = STATE(2906), + [sym_query_expression] = STATE(3836), + [sym_from_clause] = STATE(6139), + [sym_conditional_expression] = STATE(3836), + [sym_conditional_access_expression] = STATE(3836), + [sym_as_expression] = STATE(3836), + [sym_is_expression] = STATE(3836), + [sym_is_pattern_expression] = STATE(3836), + [sym_cast_expression] = STATE(3836), + [sym_checked_expression] = STATE(3836), + [sym_invocation_expression] = STATE(3689), + [sym_switch_expression] = STATE(3836), + [sym_await_expression] = STATE(3689), + [sym_throw_expression] = STATE(3836), + [sym_element_access_expression] = STATE(2906), + [sym_interpolated_string_expression] = STATE(3836), + [sym_member_access_expression] = STATE(2906), + [sym_object_creation_expression] = STATE(3689), + [sym_parenthesized_expression] = STATE(3689), + [sym__parenthesized_lvalue_expression] = STATE(2906), + [sym_lambda_expression] = STATE(3836), + [sym__lambda_expression_init] = STATE(7516), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3836), + [sym_anonymous_method_expression] = STATE(3836), + [sym_anonymous_object_creation_expression] = STATE(3836), + [sym_implicit_array_creation_expression] = STATE(3836), + [sym_implicit_object_creation_expression] = STATE(3836), + [sym_implicit_stackalloc_expression] = STATE(3836), + [sym_initializer_expression] = STATE(3836), + [sym_default_expression] = STATE(3836), + [sym_with_expression] = STATE(3836), + [sym_sizeof_expression] = STATE(3836), + [sym_typeof_expression] = STATE(3836), + [sym_makeref_expression] = STATE(3836), + [sym_ref_expression] = STATE(3836), + [sym_reftype_expression] = STATE(3836), + [sym_refvalue_expression] = STATE(3836), + [sym_stackalloc_expression] = STATE(3836), + [sym_range_expression] = STATE(3836), + [sym_tuple_expression] = STATE(2906), + [sym_literal] = STATE(3836), + [sym_character_literal] = STATE(3843), + [sym_string_literal] = STATE(3843), + [sym_raw_string_literal] = STATE(3843), + [sym_boolean_literal] = STATE(3843), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3836), + [sym_preproc_if_in_attribute_list] = STATE(5583), + [sym_preproc_region] = STATE(1656), + [sym_preproc_endregion] = STATE(1656), + [sym_preproc_line] = STATE(1656), + [sym_preproc_pragma] = STATE(1656), + [sym_preproc_nullable] = STATE(1656), + [sym_preproc_error] = STATE(1656), + [sym_preproc_warning] = STATE(1656), + [sym_preproc_define] = STATE(1656), + [sym_preproc_undef] = STATE(1656), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3477), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1481), - [anon_sym_LPAREN] = ACTIONS(895), - [anon_sym_ref] = ACTIONS(897), - [anon_sym_LBRACE] = ACTIONS(1487), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1655), + [anon_sym_LPAREN] = ACTIONS(1657), + [anon_sym_ref] = ACTIONS(1659), + [anon_sym_LBRACE] = ACTIONS(1661), + [anon_sym_delegate] = ACTIONS(1663), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1061), + [anon_sym_new] = ACTIONS(1665), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1067), - [anon_sym_BANG] = ACTIONS(1495), - [anon_sym_TILDE] = ACTIONS(1495), - [anon_sym_PLUS_PLUS] = ACTIONS(1495), - [anon_sym_DASH_DASH] = ACTIONS(1495), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1493), - [anon_sym_DASH] = ACTIONS(1493), - [anon_sym_STAR] = ACTIONS(905), - [anon_sym_CARET] = ACTIONS(1495), - [anon_sym_AMP] = ACTIONS(1495), - [anon_sym_this] = ACTIONS(83), + [anon_sym_checked] = ACTIONS(1667), + [anon_sym_BANG] = ACTIONS(1671), + [anon_sym_TILDE] = ACTIONS(1671), + [anon_sym_PLUS_PLUS] = ACTIONS(1671), + [anon_sym_DASH_DASH] = ACTIONS(1671), + [anon_sym_true] = ACTIONS(1673), + [anon_sym_false] = ACTIONS(1673), + [anon_sym_PLUS] = ACTIONS(1669), + [anon_sym_DASH] = ACTIONS(1669), + [anon_sym_STAR] = ACTIONS(1675), + [anon_sym_CARET] = ACTIONS(1671), + [anon_sym_AMP] = ACTIONS(1671), + [anon_sym_this] = ACTIONS(1677), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), + [anon_sym_base] = ACTIONS(1679), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1067), + [sym_predefined_type] = ACTIONS(1681), + [anon_sym_unchecked] = ACTIONS(1667), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1079), + [anon_sym_default] = ACTIONS(1683), + [anon_sym_throw] = ACTIONS(1685), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1081), - [anon_sym_DOT_DOT] = ACTIONS(911), + [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), @@ -324649,19 +321662,19 @@ static const uint16_t ts_parse_table[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(1089), + [anon_sym_stackalloc] = ACTIONS(1691), + [anon_sym_sizeof] = ACTIONS(1693), + [anon_sym_typeof] = ACTIONS(1695), + [anon_sym___makeref] = ACTIONS(1697), + [anon_sym___reftype] = ACTIONS(1699), + [anon_sym___refvalue] = ACTIONS(1701), + [sym_null_literal] = ACTIONS(1703), + [anon_sym_SQUOTE] = ACTIONS(1705), + [sym_integer_literal] = ACTIONS(1703), + [sym_real_literal] = ACTIONS(1707), + [anon_sym_DQUOTE] = ACTIONS(1709), + [sym_verbatim_string_literal] = ACTIONS(1707), + [aux_sym_preproc_if_token1] = ACTIONS(1711), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -324672,140 +321685,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(1713), + [sym_interpolation_verbatim_start] = ACTIONS(1715), + [sym_interpolation_raw_start] = ACTIONS(1717), + [sym_raw_string_start] = ACTIONS(1719), }, - [1674] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(5910), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2247), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(5338), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3379), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3080), - [sym_postfix_unary_expression] = STATE(3111), - [sym_prefix_unary_expression] = STATE(3111), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6154), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3080), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3111), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3080), - [sym_member_access_expression] = STATE(2484), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3111), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7575), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(3080), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3080), - [sym_typeof_expression] = STATE(3080), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2484), - [sym_literal] = STATE(3080), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), - [sym_preproc_region] = STATE(1674), - [sym_preproc_endregion] = STATE(1674), - [sym_preproc_line] = STATE(1674), - [sym_preproc_pragma] = STATE(1674), - [sym_preproc_nullable] = STATE(1674), - [sym_preproc_error] = STATE(1674), - [sym_preproc_warning] = STATE(1674), - [sym_preproc_define] = STATE(1674), - [sym_preproc_undef] = STATE(1674), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [1657] = { + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2901), + [sym__name] = STATE(5883), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2359), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(3675), + [sym_non_lvalue_expression] = STATE(3685), + [sym_lvalue_expression] = STATE(2944), + [sym__expression_statement_expression] = STATE(3836), + [sym_assignment_expression] = STATE(3689), + [sym_binary_expression] = STATE(3836), + [sym_postfix_unary_expression] = STATE(3689), + [sym_prefix_unary_expression] = STATE(3689), + [sym__pointer_indirection_expression] = STATE(2906), + [sym_query_expression] = STATE(3836), + [sym_from_clause] = STATE(6139), + [sym_conditional_expression] = STATE(3836), + [sym_conditional_access_expression] = STATE(3836), + [sym_as_expression] = STATE(3836), + [sym_is_expression] = STATE(3836), + [sym_is_pattern_expression] = STATE(3836), + [sym_cast_expression] = STATE(3836), + [sym_checked_expression] = STATE(3836), + [sym_invocation_expression] = STATE(3689), + [sym_switch_expression] = STATE(3836), + [sym_await_expression] = STATE(3689), + [sym_throw_expression] = STATE(3836), + [sym_element_access_expression] = STATE(2906), + [sym_interpolated_string_expression] = STATE(3836), + [sym_member_access_expression] = STATE(2906), + [sym_object_creation_expression] = STATE(3689), + [sym_parenthesized_expression] = STATE(3689), + [sym__parenthesized_lvalue_expression] = STATE(2906), + [sym_lambda_expression] = STATE(3836), + [sym__lambda_expression_init] = STATE(7516), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3836), + [sym_anonymous_method_expression] = STATE(3836), + [sym_anonymous_object_creation_expression] = STATE(3836), + [sym_implicit_array_creation_expression] = STATE(3836), + [sym_implicit_object_creation_expression] = STATE(3836), + [sym_implicit_stackalloc_expression] = STATE(3836), + [sym_initializer_expression] = STATE(3836), + [sym_default_expression] = STATE(3836), + [sym_with_expression] = STATE(3836), + [sym_sizeof_expression] = STATE(3836), + [sym_typeof_expression] = STATE(3836), + [sym_makeref_expression] = STATE(3836), + [sym_ref_expression] = STATE(3836), + [sym_reftype_expression] = STATE(3836), + [sym_refvalue_expression] = STATE(3836), + [sym_stackalloc_expression] = STATE(3836), + [sym_range_expression] = STATE(3836), + [sym_tuple_expression] = STATE(2906), + [sym_literal] = STATE(3836), + [sym_character_literal] = STATE(3843), + [sym_string_literal] = STATE(3843), + [sym_raw_string_literal] = STATE(3843), + [sym_boolean_literal] = STATE(3843), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3836), + [sym_preproc_if_in_attribute_list] = STATE(5583), + [sym_preproc_region] = STATE(1657), + [sym_preproc_endregion] = STATE(1657), + [sym_preproc_line] = STATE(1657), + [sym_preproc_pragma] = STATE(1657), + [sym_preproc_nullable] = STATE(1657), + [sym_preproc_error] = STATE(1657), + [sym_preproc_warning] = STATE(1657), + [sym_preproc_define] = STATE(1657), + [sym_preproc_undef] = STATE(1657), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3477), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1481), - [anon_sym_LPAREN] = ACTIONS(895), - [anon_sym_ref] = ACTIONS(897), - [anon_sym_LBRACE] = ACTIONS(1487), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1655), + [anon_sym_LPAREN] = ACTIONS(1657), + [anon_sym_ref] = ACTIONS(1659), + [anon_sym_LBRACE] = ACTIONS(1661), + [anon_sym_delegate] = ACTIONS(1663), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1061), + [anon_sym_new] = ACTIONS(1665), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1067), - [anon_sym_BANG] = ACTIONS(1495), - [anon_sym_TILDE] = ACTIONS(1495), - [anon_sym_PLUS_PLUS] = ACTIONS(1495), - [anon_sym_DASH_DASH] = ACTIONS(1495), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1493), - [anon_sym_DASH] = ACTIONS(1493), - [anon_sym_STAR] = ACTIONS(905), - [anon_sym_CARET] = ACTIONS(1495), - [anon_sym_AMP] = ACTIONS(1495), - [anon_sym_this] = ACTIONS(83), + [anon_sym_checked] = ACTIONS(1667), + [anon_sym_BANG] = ACTIONS(1671), + [anon_sym_TILDE] = ACTIONS(1671), + [anon_sym_PLUS_PLUS] = ACTIONS(1671), + [anon_sym_DASH_DASH] = ACTIONS(1671), + [anon_sym_true] = ACTIONS(1673), + [anon_sym_false] = ACTIONS(1673), + [anon_sym_PLUS] = ACTIONS(1669), + [anon_sym_DASH] = ACTIONS(1669), + [anon_sym_STAR] = ACTIONS(1675), + [anon_sym_CARET] = ACTIONS(1671), + [anon_sym_AMP] = ACTIONS(1671), + [anon_sym_this] = ACTIONS(1677), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), + [anon_sym_base] = ACTIONS(1679), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1067), + [sym_predefined_type] = ACTIONS(1681), + [anon_sym_unchecked] = ACTIONS(1667), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1079), + [anon_sym_default] = ACTIONS(1683), + [anon_sym_throw] = ACTIONS(1685), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1081), - [anon_sym_DOT_DOT] = ACTIONS(911), + [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), @@ -324818,19 +321831,19 @@ static const uint16_t ts_parse_table[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(1089), + [anon_sym_stackalloc] = ACTIONS(1691), + [anon_sym_sizeof] = ACTIONS(1693), + [anon_sym_typeof] = ACTIONS(1695), + [anon_sym___makeref] = ACTIONS(1697), + [anon_sym___reftype] = ACTIONS(1699), + [anon_sym___refvalue] = ACTIONS(1701), + [sym_null_literal] = ACTIONS(1703), + [anon_sym_SQUOTE] = ACTIONS(1705), + [sym_integer_literal] = ACTIONS(1703), + [sym_real_literal] = ACTIONS(1707), + [anon_sym_DQUOTE] = ACTIONS(1709), + [sym_verbatim_string_literal] = ACTIONS(1707), + [aux_sym_preproc_if_token1] = ACTIONS(1711), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -324841,140 +321854,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(1713), + [sym_interpolation_verbatim_start] = ACTIONS(1715), + [sym_interpolation_raw_start] = ACTIONS(1717), + [sym_raw_string_start] = ACTIONS(1719), }, - [1675] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(5910), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2247), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(5339), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3379), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3080), - [sym_postfix_unary_expression] = STATE(3111), - [sym_prefix_unary_expression] = STATE(3111), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6154), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3080), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3111), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3080), - [sym_member_access_expression] = STATE(2484), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3111), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7575), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(3080), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3080), - [sym_typeof_expression] = STATE(3080), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2484), - [sym_literal] = STATE(3080), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), - [sym_preproc_region] = STATE(1675), - [sym_preproc_endregion] = STATE(1675), - [sym_preproc_line] = STATE(1675), - [sym_preproc_pragma] = STATE(1675), - [sym_preproc_nullable] = STATE(1675), - [sym_preproc_error] = STATE(1675), - [sym_preproc_warning] = STATE(1675), - [sym_preproc_define] = STATE(1675), - [sym_preproc_undef] = STATE(1675), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [1658] = { + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2901), + [sym__name] = STATE(5883), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2359), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(3564), + [sym_non_lvalue_expression] = STATE(3685), + [sym_lvalue_expression] = STATE(2944), + [sym__expression_statement_expression] = STATE(3836), + [sym_assignment_expression] = STATE(3689), + [sym_binary_expression] = STATE(3836), + [sym_postfix_unary_expression] = STATE(3689), + [sym_prefix_unary_expression] = STATE(3689), + [sym__pointer_indirection_expression] = STATE(2906), + [sym_query_expression] = STATE(3836), + [sym_from_clause] = STATE(6139), + [sym_conditional_expression] = STATE(3836), + [sym_conditional_access_expression] = STATE(3836), + [sym_as_expression] = STATE(3836), + [sym_is_expression] = STATE(3836), + [sym_is_pattern_expression] = STATE(3836), + [sym_cast_expression] = STATE(3836), + [sym_checked_expression] = STATE(3836), + [sym_invocation_expression] = STATE(3689), + [sym_switch_expression] = STATE(3836), + [sym_await_expression] = STATE(3689), + [sym_throw_expression] = STATE(3836), + [sym_element_access_expression] = STATE(2906), + [sym_interpolated_string_expression] = STATE(3836), + [sym_member_access_expression] = STATE(2906), + [sym_object_creation_expression] = STATE(3689), + [sym_parenthesized_expression] = STATE(3689), + [sym__parenthesized_lvalue_expression] = STATE(2906), + [sym_lambda_expression] = STATE(3836), + [sym__lambda_expression_init] = STATE(7516), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3836), + [sym_anonymous_method_expression] = STATE(3836), + [sym_anonymous_object_creation_expression] = STATE(3836), + [sym_implicit_array_creation_expression] = STATE(3836), + [sym_implicit_object_creation_expression] = STATE(3836), + [sym_implicit_stackalloc_expression] = STATE(3836), + [sym_initializer_expression] = STATE(3836), + [sym_default_expression] = STATE(3836), + [sym_with_expression] = STATE(3836), + [sym_sizeof_expression] = STATE(3836), + [sym_typeof_expression] = STATE(3836), + [sym_makeref_expression] = STATE(3836), + [sym_ref_expression] = STATE(3836), + [sym_reftype_expression] = STATE(3836), + [sym_refvalue_expression] = STATE(3836), + [sym_stackalloc_expression] = STATE(3836), + [sym_range_expression] = STATE(3836), + [sym_tuple_expression] = STATE(2906), + [sym_literal] = STATE(3836), + [sym_character_literal] = STATE(3843), + [sym_string_literal] = STATE(3843), + [sym_raw_string_literal] = STATE(3843), + [sym_boolean_literal] = STATE(3843), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3836), + [sym_preproc_if_in_attribute_list] = STATE(5583), + [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(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3477), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1481), - [anon_sym_LPAREN] = ACTIONS(895), - [anon_sym_ref] = ACTIONS(897), - [anon_sym_LBRACE] = ACTIONS(1487), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1655), + [anon_sym_LPAREN] = ACTIONS(1657), + [anon_sym_ref] = ACTIONS(1659), + [anon_sym_LBRACE] = ACTIONS(1661), + [anon_sym_delegate] = ACTIONS(1663), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1061), + [anon_sym_new] = ACTIONS(1665), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1067), - [anon_sym_BANG] = ACTIONS(1495), - [anon_sym_TILDE] = ACTIONS(1495), - [anon_sym_PLUS_PLUS] = ACTIONS(1495), - [anon_sym_DASH_DASH] = ACTIONS(1495), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1493), - [anon_sym_DASH] = ACTIONS(1493), - [anon_sym_STAR] = ACTIONS(905), - [anon_sym_CARET] = ACTIONS(1495), - [anon_sym_AMP] = ACTIONS(1495), - [anon_sym_this] = ACTIONS(83), + [anon_sym_checked] = ACTIONS(1667), + [anon_sym_BANG] = ACTIONS(1671), + [anon_sym_TILDE] = ACTIONS(1671), + [anon_sym_PLUS_PLUS] = ACTIONS(1671), + [anon_sym_DASH_DASH] = ACTIONS(1671), + [anon_sym_true] = ACTIONS(1673), + [anon_sym_false] = ACTIONS(1673), + [anon_sym_PLUS] = ACTIONS(1669), + [anon_sym_DASH] = ACTIONS(1669), + [anon_sym_STAR] = ACTIONS(1675), + [anon_sym_CARET] = ACTIONS(1671), + [anon_sym_AMP] = ACTIONS(1671), + [anon_sym_this] = ACTIONS(1677), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), + [anon_sym_base] = ACTIONS(1679), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1067), + [sym_predefined_type] = ACTIONS(1681), + [anon_sym_unchecked] = ACTIONS(1667), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1079), + [anon_sym_default] = ACTIONS(1683), + [anon_sym_throw] = ACTIONS(1685), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1081), - [anon_sym_DOT_DOT] = ACTIONS(911), + [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), @@ -324987,19 +322000,19 @@ static const uint16_t ts_parse_table[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(1089), + [anon_sym_stackalloc] = ACTIONS(1691), + [anon_sym_sizeof] = ACTIONS(1693), + [anon_sym_typeof] = ACTIONS(1695), + [anon_sym___makeref] = ACTIONS(1697), + [anon_sym___reftype] = ACTIONS(1699), + [anon_sym___refvalue] = ACTIONS(1701), + [sym_null_literal] = ACTIONS(1703), + [anon_sym_SQUOTE] = ACTIONS(1705), + [sym_integer_literal] = ACTIONS(1703), + [sym_real_literal] = ACTIONS(1707), + [anon_sym_DQUOTE] = ACTIONS(1709), + [sym_verbatim_string_literal] = ACTIONS(1707), + [aux_sym_preproc_if_token1] = ACTIONS(1711), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -325010,140 +322023,478 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(151), - [sym_interpolation_verbatim_start] = ACTIONS(153), - [sym_interpolation_raw_start] = ACTIONS(155), - [sym_raw_string_start] = ACTIONS(157), + [sym_interpolation_regular_start] = ACTIONS(1713), + [sym_interpolation_verbatim_start] = ACTIONS(1715), + [sym_interpolation_raw_start] = ACTIONS(1717), + [sym_raw_string_start] = ACTIONS(1719), }, - [1676] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2762), - [sym__name] = STATE(5892), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2316), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(4685), - [sym_non_lvalue_expression] = STATE(3438), - [sym_lvalue_expression] = STATE(3500), - [sym__expression_statement_expression] = STATE(3362), - [sym_assignment_expression] = STATE(3449), - [sym_binary_expression] = STATE(3362), - [sym_postfix_unary_expression] = STATE(3449), - [sym_prefix_unary_expression] = STATE(3449), - [sym__pointer_indirection_expression] = STATE(2747), - [sym_query_expression] = STATE(3362), - [sym_from_clause] = STATE(6147), - [sym_conditional_expression] = STATE(3362), - [sym_conditional_access_expression] = STATE(3362), - [sym_as_expression] = STATE(3362), - [sym_is_expression] = STATE(3362), - [sym_is_pattern_expression] = STATE(3362), - [sym_cast_expression] = STATE(3362), - [sym_checked_expression] = STATE(3362), - [sym_invocation_expression] = STATE(3449), - [sym_switch_expression] = STATE(3362), - [sym_await_expression] = STATE(3449), - [sym_throw_expression] = STATE(3362), - [sym_element_access_expression] = STATE(2747), - [sym_interpolated_string_expression] = STATE(3362), - [sym_member_access_expression] = STATE(2747), - [sym_object_creation_expression] = STATE(3449), - [sym_parenthesized_expression] = STATE(3449), - [sym__parenthesized_lvalue_expression] = STATE(2747), - [sym_lambda_expression] = STATE(3362), - [sym__lambda_expression_init] = STATE(7516), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3362), - [sym_anonymous_method_expression] = STATE(3362), - [sym_anonymous_object_creation_expression] = STATE(3362), - [sym_implicit_array_creation_expression] = STATE(3362), - [sym_implicit_object_creation_expression] = STATE(3362), - [sym_implicit_stackalloc_expression] = STATE(3362), - [sym_initializer_expression] = STATE(3362), - [sym_default_expression] = STATE(3362), - [sym_with_expression] = STATE(3362), - [sym_sizeof_expression] = STATE(3362), - [sym_typeof_expression] = STATE(3362), - [sym_makeref_expression] = STATE(3362), - [sym_ref_expression] = STATE(3362), - [sym_reftype_expression] = STATE(3362), - [sym_refvalue_expression] = STATE(3362), - [sym_stackalloc_expression] = STATE(3362), - [sym_range_expression] = STATE(3362), - [sym_tuple_expression] = STATE(2747), - [sym_literal] = STATE(3362), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2267), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3362), - [sym_preproc_if_in_attribute_list] = STATE(5576), - [sym_preproc_region] = STATE(1676), - [sym_preproc_endregion] = STATE(1676), - [sym_preproc_line] = STATE(1676), - [sym_preproc_pragma] = STATE(1676), - [sym_preproc_nullable] = STATE(1676), - [sym_preproc_error] = STATE(1676), - [sym_preproc_warning] = STATE(1676), - [sym_preproc_define] = STATE(1676), - [sym_preproc_undef] = STATE(1676), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3385), + [1659] = { + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(3182), + [sym__name] = STATE(5882), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2306), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2262), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(4424), + [sym_non_lvalue_expression] = STATE(4580), + [sym_lvalue_expression] = STATE(3312), + [sym__expression_statement_expression] = STATE(4573), + [sym_assignment_expression] = STATE(4581), + [sym_binary_expression] = STATE(4573), + [sym_postfix_unary_expression] = STATE(4581), + [sym_prefix_unary_expression] = STATE(4581), + [sym__pointer_indirection_expression] = STATE(3144), + [sym_query_expression] = STATE(4573), + [sym_from_clause] = STATE(6160), + [sym_conditional_expression] = STATE(4573), + [sym_conditional_access_expression] = STATE(4573), + [sym_as_expression] = STATE(4573), + [sym_is_expression] = STATE(4573), + [sym_is_pattern_expression] = STATE(4573), + [sym_cast_expression] = STATE(4573), + [sym_checked_expression] = STATE(4573), + [sym_invocation_expression] = STATE(4581), + [sym_switch_expression] = STATE(4573), + [sym_await_expression] = STATE(4581), + [sym_throw_expression] = STATE(4573), + [sym_element_access_expression] = STATE(3144), + [sym_interpolated_string_expression] = STATE(4573), + [sym_member_access_expression] = STATE(3144), + [sym_object_creation_expression] = STATE(4581), + [sym_parenthesized_expression] = STATE(4581), + [sym__parenthesized_lvalue_expression] = STATE(3144), + [sym_lambda_expression] = STATE(4573), + [sym__lambda_expression_init] = STATE(7399), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(4573), + [sym_anonymous_method_expression] = STATE(4573), + [sym_anonymous_object_creation_expression] = STATE(4573), + [sym_implicit_array_creation_expression] = STATE(4573), + [sym_implicit_object_creation_expression] = STATE(4573), + [sym_implicit_stackalloc_expression] = STATE(4573), + [sym_initializer_expression] = STATE(4573), + [sym_default_expression] = STATE(4573), + [sym_with_expression] = STATE(4573), + [sym_sizeof_expression] = STATE(4573), + [sym_typeof_expression] = STATE(4573), + [sym_makeref_expression] = STATE(4573), + [sym_ref_expression] = STATE(4573), + [sym_reftype_expression] = STATE(4573), + [sym_refvalue_expression] = STATE(4573), + [sym_stackalloc_expression] = STATE(4573), + [sym_range_expression] = STATE(4573), + [sym_tuple_expression] = STATE(3144), + [sym_literal] = STATE(4573), + [sym_character_literal] = STATE(4575), + [sym_string_literal] = STATE(4575), + [sym_raw_string_literal] = STATE(4575), + [sym_boolean_literal] = STATE(4575), + [sym_identifier] = STATE(2237), + [sym__reserved_identifier] = STATE(2229), + [sym_preproc_if_in_expression] = STATE(4573), + [sym_preproc_if_in_attribute_list] = STATE(5583), + [sym_preproc_region] = STATE(1659), + [sym_preproc_endregion] = STATE(1659), + [sym_preproc_line] = STATE(1659), + [sym_preproc_pragma] = STATE(1659), + [sym_preproc_nullable] = STATE(1659), + [sym_preproc_error] = STATE(1659), + [sym_preproc_warning] = STATE(1659), + [sym_preproc_define] = STATE(1659), + [sym_preproc_undef] = STATE(1659), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3501), + [sym__identifier_token] = ACTIONS(1385), + [anon_sym_alias] = ACTIONS(1387), + [anon_sym_global] = ACTIONS(1387), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1389), + [anon_sym_LPAREN] = ACTIONS(1461), + [anon_sym_ref] = ACTIONS(1463), + [anon_sym_LBRACE] = ACTIONS(1395), + [anon_sym_delegate] = ACTIONS(1397), + [anon_sym_async] = ACTIONS(1045), + [anon_sym_file] = ACTIONS(1387), + [anon_sym_new] = ACTIONS(1465), + [anon_sym_where] = ACTIONS(1387), + [anon_sym_notnull] = ACTIONS(1387), + [anon_sym_unmanaged] = ACTIONS(1387), + [anon_sym_checked] = ACTIONS(1401), + [anon_sym_BANG] = ACTIONS(1469), + [anon_sym_TILDE] = ACTIONS(1469), + [anon_sym_PLUS_PLUS] = ACTIONS(1469), + [anon_sym_DASH_DASH] = ACTIONS(1469), + [anon_sym_true] = ACTIONS(1407), + [anon_sym_false] = ACTIONS(1407), + [anon_sym_PLUS] = ACTIONS(1467), + [anon_sym_DASH] = ACTIONS(1467), + [anon_sym_STAR] = ACTIONS(1471), + [anon_sym_CARET] = ACTIONS(1469), + [anon_sym_AMP] = ACTIONS(1469), + [anon_sym_this] = ACTIONS(1411), + [anon_sym_scoped] = ACTIONS(1413), + [anon_sym_base] = ACTIONS(1415), + [anon_sym_var] = ACTIONS(1417), + [sym_predefined_type] = ACTIONS(1419), + [anon_sym_unchecked] = ACTIONS(1401), + [anon_sym_yield] = ACTIONS(1387), + [anon_sym_default] = ACTIONS(1421), + [anon_sym_throw] = ACTIONS(1473), + [anon_sym_when] = ACTIONS(1387), + [anon_sym_await] = ACTIONS(1475), + [anon_sym_DOT_DOT] = ACTIONS(1477), + [anon_sym_from] = ACTIONS(1429), + [anon_sym_into] = ACTIONS(1387), + [anon_sym_join] = ACTIONS(1387), + [anon_sym_on] = ACTIONS(1387), + [anon_sym_equals] = ACTIONS(1387), + [anon_sym_let] = ACTIONS(1387), + [anon_sym_orderby] = ACTIONS(1387), + [anon_sym_ascending] = ACTIONS(1387), + [anon_sym_descending] = ACTIONS(1387), + [anon_sym_group] = ACTIONS(1387), + [anon_sym_by] = ACTIONS(1387), + [anon_sym_select] = ACTIONS(1387), + [anon_sym_stackalloc] = ACTIONS(1431), + [anon_sym_sizeof] = ACTIONS(1433), + [anon_sym_typeof] = ACTIONS(1435), + [anon_sym___makeref] = ACTIONS(1437), + [anon_sym___reftype] = ACTIONS(1439), + [anon_sym___refvalue] = ACTIONS(1441), + [sym_null_literal] = ACTIONS(1443), + [anon_sym_SQUOTE] = ACTIONS(1445), + [sym_integer_literal] = ACTIONS(1443), + [sym_real_literal] = ACTIONS(1447), + [anon_sym_DQUOTE] = ACTIONS(1449), + [sym_verbatim_string_literal] = ACTIONS(1447), + [aux_sym_preproc_if_token1] = ACTIONS(1451), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + [sym_interpolation_regular_start] = ACTIONS(1453), + [sym_interpolation_verbatim_start] = ACTIONS(1455), + [sym_interpolation_raw_start] = ACTIONS(1457), + [sym_raw_string_start] = ACTIONS(1459), + }, + [1660] = { + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(3182), + [sym__name] = STATE(5882), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2306), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2262), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(4270), + [sym_non_lvalue_expression] = STATE(4580), + [sym_lvalue_expression] = STATE(3312), + [sym__expression_statement_expression] = STATE(4573), + [sym_assignment_expression] = STATE(4581), + [sym_binary_expression] = STATE(4573), + [sym_postfix_unary_expression] = STATE(4581), + [sym_prefix_unary_expression] = STATE(4581), + [sym__pointer_indirection_expression] = STATE(3144), + [sym_query_expression] = STATE(4573), + [sym_from_clause] = STATE(6160), + [sym_conditional_expression] = STATE(4573), + [sym_conditional_access_expression] = STATE(4573), + [sym_as_expression] = STATE(4573), + [sym_is_expression] = STATE(4573), + [sym_is_pattern_expression] = STATE(4573), + [sym_cast_expression] = STATE(4573), + [sym_checked_expression] = STATE(4573), + [sym_invocation_expression] = STATE(4581), + [sym_switch_expression] = STATE(4573), + [sym_await_expression] = STATE(4581), + [sym_throw_expression] = STATE(4573), + [sym_element_access_expression] = STATE(3144), + [sym_interpolated_string_expression] = STATE(4573), + [sym_member_access_expression] = STATE(3144), + [sym_object_creation_expression] = STATE(4581), + [sym_parenthesized_expression] = STATE(4581), + [sym__parenthesized_lvalue_expression] = STATE(3144), + [sym_lambda_expression] = STATE(4573), + [sym__lambda_expression_init] = STATE(7399), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(4573), + [sym_anonymous_method_expression] = STATE(4573), + [sym_anonymous_object_creation_expression] = STATE(4573), + [sym_implicit_array_creation_expression] = STATE(4573), + [sym_implicit_object_creation_expression] = STATE(4573), + [sym_implicit_stackalloc_expression] = STATE(4573), + [sym_initializer_expression] = STATE(4573), + [sym_default_expression] = STATE(4573), + [sym_with_expression] = STATE(4573), + [sym_sizeof_expression] = STATE(4573), + [sym_typeof_expression] = STATE(4573), + [sym_makeref_expression] = STATE(4573), + [sym_ref_expression] = STATE(4573), + [sym_reftype_expression] = STATE(4573), + [sym_refvalue_expression] = STATE(4573), + [sym_stackalloc_expression] = STATE(4573), + [sym_range_expression] = STATE(4573), + [sym_tuple_expression] = STATE(3144), + [sym_literal] = STATE(4573), + [sym_character_literal] = STATE(4575), + [sym_string_literal] = STATE(4575), + [sym_raw_string_literal] = STATE(4575), + [sym_boolean_literal] = STATE(4575), + [sym_identifier] = STATE(2237), + [sym__reserved_identifier] = STATE(2229), + [sym_preproc_if_in_expression] = STATE(4573), + [sym_preproc_if_in_attribute_list] = STATE(5583), + [sym_preproc_region] = STATE(1660), + [sym_preproc_endregion] = STATE(1660), + [sym_preproc_line] = STATE(1660), + [sym_preproc_pragma] = STATE(1660), + [sym_preproc_nullable] = STATE(1660), + [sym_preproc_error] = STATE(1660), + [sym_preproc_warning] = STATE(1660), + [sym_preproc_define] = STATE(1660), + [sym_preproc_undef] = STATE(1660), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3501), + [sym__identifier_token] = ACTIONS(1385), + [anon_sym_alias] = ACTIONS(1387), + [anon_sym_global] = ACTIONS(1387), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1389), + [anon_sym_LPAREN] = ACTIONS(1461), + [anon_sym_ref] = ACTIONS(1463), + [anon_sym_LBRACE] = ACTIONS(1395), + [anon_sym_delegate] = ACTIONS(1397), + [anon_sym_async] = ACTIONS(1045), + [anon_sym_file] = ACTIONS(1387), + [anon_sym_new] = ACTIONS(1465), + [anon_sym_where] = ACTIONS(1387), + [anon_sym_notnull] = ACTIONS(1387), + [anon_sym_unmanaged] = ACTIONS(1387), + [anon_sym_checked] = ACTIONS(1401), + [anon_sym_BANG] = ACTIONS(1469), + [anon_sym_TILDE] = ACTIONS(1469), + [anon_sym_PLUS_PLUS] = ACTIONS(1469), + [anon_sym_DASH_DASH] = ACTIONS(1469), + [anon_sym_true] = ACTIONS(1407), + [anon_sym_false] = ACTIONS(1407), + [anon_sym_PLUS] = ACTIONS(1467), + [anon_sym_DASH] = ACTIONS(1467), + [anon_sym_STAR] = ACTIONS(1471), + [anon_sym_CARET] = ACTIONS(1469), + [anon_sym_AMP] = ACTIONS(1469), + [anon_sym_this] = ACTIONS(1411), + [anon_sym_scoped] = ACTIONS(1413), + [anon_sym_base] = ACTIONS(1415), + [anon_sym_var] = ACTIONS(1417), + [sym_predefined_type] = ACTIONS(1419), + [anon_sym_unchecked] = ACTIONS(1401), + [anon_sym_yield] = ACTIONS(1387), + [anon_sym_default] = ACTIONS(1421), + [anon_sym_throw] = ACTIONS(1473), + [anon_sym_when] = ACTIONS(1387), + [anon_sym_await] = ACTIONS(1475), + [anon_sym_DOT_DOT] = ACTIONS(1477), + [anon_sym_from] = ACTIONS(1429), + [anon_sym_into] = ACTIONS(1387), + [anon_sym_join] = ACTIONS(1387), + [anon_sym_on] = ACTIONS(1387), + [anon_sym_equals] = ACTIONS(1387), + [anon_sym_let] = ACTIONS(1387), + [anon_sym_orderby] = ACTIONS(1387), + [anon_sym_ascending] = ACTIONS(1387), + [anon_sym_descending] = ACTIONS(1387), + [anon_sym_group] = ACTIONS(1387), + [anon_sym_by] = ACTIONS(1387), + [anon_sym_select] = ACTIONS(1387), + [anon_sym_stackalloc] = ACTIONS(1431), + [anon_sym_sizeof] = ACTIONS(1433), + [anon_sym_typeof] = ACTIONS(1435), + [anon_sym___makeref] = ACTIONS(1437), + [anon_sym___reftype] = ACTIONS(1439), + [anon_sym___refvalue] = ACTIONS(1441), + [sym_null_literal] = ACTIONS(1443), + [anon_sym_SQUOTE] = ACTIONS(1445), + [sym_integer_literal] = ACTIONS(1443), + [sym_real_literal] = ACTIONS(1447), + [anon_sym_DQUOTE] = ACTIONS(1449), + [sym_verbatim_string_literal] = ACTIONS(1447), + [aux_sym_preproc_if_token1] = ACTIONS(1451), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + [sym_interpolation_regular_start] = ACTIONS(1453), + [sym_interpolation_verbatim_start] = ACTIONS(1455), + [sym_interpolation_raw_start] = ACTIONS(1457), + [sym_raw_string_start] = ACTIONS(1459), + }, + [1661] = { + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2816), + [sym__name] = STATE(5873), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2196), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(4333), + [sym_non_lvalue_expression] = STATE(3495), + [sym_lvalue_expression] = STATE(3208), + [sym__expression_statement_expression] = STATE(3462), + [sym_assignment_expression] = STATE(3497), + [sym_binary_expression] = STATE(3462), + [sym_postfix_unary_expression] = STATE(3497), + [sym_prefix_unary_expression] = STATE(3497), + [sym__pointer_indirection_expression] = STATE(2815), + [sym_query_expression] = STATE(3462), + [sym_from_clause] = STATE(6140), + [sym_conditional_expression] = STATE(3462), + [sym_conditional_access_expression] = STATE(3462), + [sym_as_expression] = STATE(3462), + [sym_is_expression] = STATE(3462), + [sym_is_pattern_expression] = STATE(3462), + [sym_cast_expression] = STATE(3462), + [sym_checked_expression] = STATE(3462), + [sym_invocation_expression] = STATE(3497), + [sym_switch_expression] = STATE(3462), + [sym_await_expression] = STATE(3497), + [sym_throw_expression] = STATE(3462), + [sym_element_access_expression] = STATE(2815), + [sym_interpolated_string_expression] = STATE(3462), + [sym_member_access_expression] = STATE(2815), + [sym_object_creation_expression] = STATE(3497), + [sym_parenthesized_expression] = STATE(3497), + [sym__parenthesized_lvalue_expression] = STATE(2815), + [sym_lambda_expression] = STATE(3462), + [sym__lambda_expression_init] = STATE(7520), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3462), + [sym_anonymous_method_expression] = STATE(3462), + [sym_anonymous_object_creation_expression] = STATE(3462), + [sym_implicit_array_creation_expression] = STATE(3462), + [sym_implicit_object_creation_expression] = STATE(3462), + [sym_implicit_stackalloc_expression] = STATE(3462), + [sym_initializer_expression] = STATE(3462), + [sym_default_expression] = STATE(3462), + [sym_with_expression] = STATE(3462), + [sym_sizeof_expression] = STATE(3462), + [sym_typeof_expression] = STATE(3462), + [sym_makeref_expression] = STATE(3462), + [sym_ref_expression] = STATE(3462), + [sym_reftype_expression] = STATE(3462), + [sym_refvalue_expression] = STATE(3462), + [sym_stackalloc_expression] = STATE(3462), + [sym_range_expression] = STATE(3462), + [sym_tuple_expression] = STATE(2815), + [sym_literal] = STATE(3462), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3462), + [sym_preproc_if_in_attribute_list] = STATE(5583), + [sym_preproc_region] = STATE(1661), + [sym_preproc_endregion] = STATE(1661), + [sym_preproc_line] = STATE(1661), + [sym_preproc_pragma] = STATE(1661), + [sym_preproc_nullable] = STATE(1661), + [sym_preproc_error] = STATE(1661), + [sym_preproc_warning] = STATE(1661), + [sym_preproc_define] = STATE(1661), + [sym_preproc_undef] = STATE(1661), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3367), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1307), - [anon_sym_LPAREN] = ACTIONS(1609), - [anon_sym_ref] = ACTIONS(1611), - [anon_sym_LBRACE] = ACTIONS(1313), - [anon_sym_delegate] = ACTIONS(1315), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1305), + [anon_sym_LPAREN] = ACTIONS(1369), + [anon_sym_ref] = ACTIONS(1371), + [anon_sym_LBRACE] = ACTIONS(1311), + [anon_sym_delegate] = ACTIONS(1313), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1613), + [anon_sym_new] = ACTIONS(1315), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1319), - [anon_sym_BANG] = ACTIONS(1617), - [anon_sym_TILDE] = ACTIONS(1617), - [anon_sym_PLUS_PLUS] = ACTIONS(1617), - [anon_sym_DASH_DASH] = ACTIONS(1617), + [anon_sym_checked] = ACTIONS(1317), + [anon_sym_BANG] = ACTIONS(1375), + [anon_sym_TILDE] = ACTIONS(1375), + [anon_sym_PLUS_PLUS] = ACTIONS(1375), + [anon_sym_DASH_DASH] = ACTIONS(1375), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1615), - [anon_sym_DASH] = ACTIONS(1615), - [anon_sym_STAR] = ACTIONS(1619), - [anon_sym_CARET] = ACTIONS(1617), - [anon_sym_AMP] = ACTIONS(1617), - [anon_sym_this] = ACTIONS(1323), + [anon_sym_PLUS] = ACTIONS(1373), + [anon_sym_DASH] = ACTIONS(1373), + [anon_sym_STAR] = ACTIONS(1377), + [anon_sym_CARET] = ACTIONS(1375), + [anon_sym_AMP] = ACTIONS(1375), + [anon_sym_this] = ACTIONS(1321), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1325), + [anon_sym_base] = ACTIONS(1323), [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1319), + [anon_sym_unchecked] = ACTIONS(1317), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1621), + [anon_sym_throw] = ACTIONS(1379), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1623), - [anon_sym_DOT_DOT] = ACTIONS(1625), + [anon_sym_await] = ACTIONS(1381), + [anon_sym_DOT_DOT] = ACTIONS(1383), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -325156,19 +322507,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1333), + [anon_sym_stackalloc] = ACTIONS(1331), [anon_sym_sizeof] = ACTIONS(129), [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(1335), - [anon_sym___reftype] = ACTIONS(1337), - [anon_sym___refvalue] = ACTIONS(1339), + [anon_sym___makeref] = ACTIONS(1333), + [anon_sym___reftype] = ACTIONS(1335), + [anon_sym___refvalue] = ACTIONS(1337), [sym_null_literal] = ACTIONS(139), [anon_sym_SQUOTE] = ACTIONS(141), [sym_integer_literal] = ACTIONS(139), [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1341), + [aux_sym_preproc_if_token1] = ACTIONS(1339), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -325184,135 +322535,473 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_interpolation_raw_start] = ACTIONS(155), [sym_raw_string_start] = ACTIONS(157), }, - [1677] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2762), - [sym__name] = STATE(5892), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2316), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(4589), - [sym_non_lvalue_expression] = STATE(3438), - [sym_lvalue_expression] = STATE(3500), - [sym__expression_statement_expression] = STATE(3362), - [sym_assignment_expression] = STATE(3449), - [sym_binary_expression] = STATE(3362), - [sym_postfix_unary_expression] = STATE(3449), - [sym_prefix_unary_expression] = STATE(3449), - [sym__pointer_indirection_expression] = STATE(2747), - [sym_query_expression] = STATE(3362), - [sym_from_clause] = STATE(6147), - [sym_conditional_expression] = STATE(3362), - [sym_conditional_access_expression] = STATE(3362), - [sym_as_expression] = STATE(3362), - [sym_is_expression] = STATE(3362), - [sym_is_pattern_expression] = STATE(3362), - [sym_cast_expression] = STATE(3362), - [sym_checked_expression] = STATE(3362), - [sym_invocation_expression] = STATE(3449), - [sym_switch_expression] = STATE(3362), - [sym_await_expression] = STATE(3449), - [sym_throw_expression] = STATE(3362), - [sym_element_access_expression] = STATE(2747), - [sym_interpolated_string_expression] = STATE(3362), - [sym_member_access_expression] = STATE(2747), - [sym_object_creation_expression] = STATE(3449), - [sym_parenthesized_expression] = STATE(3449), - [sym__parenthesized_lvalue_expression] = STATE(2747), - [sym_lambda_expression] = STATE(3362), - [sym__lambda_expression_init] = STATE(7516), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3362), - [sym_anonymous_method_expression] = STATE(3362), - [sym_anonymous_object_creation_expression] = STATE(3362), - [sym_implicit_array_creation_expression] = STATE(3362), - [sym_implicit_object_creation_expression] = STATE(3362), - [sym_implicit_stackalloc_expression] = STATE(3362), - [sym_initializer_expression] = STATE(3362), - [sym_default_expression] = STATE(3362), - [sym_with_expression] = STATE(3362), - [sym_sizeof_expression] = STATE(3362), - [sym_typeof_expression] = STATE(3362), - [sym_makeref_expression] = STATE(3362), - [sym_ref_expression] = STATE(3362), - [sym_reftype_expression] = STATE(3362), - [sym_refvalue_expression] = STATE(3362), - [sym_stackalloc_expression] = STATE(3362), - [sym_range_expression] = STATE(3362), - [sym_tuple_expression] = STATE(2747), - [sym_literal] = STATE(3362), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2267), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3362), - [sym_preproc_if_in_attribute_list] = STATE(5576), - [sym_preproc_region] = STATE(1677), - [sym_preproc_endregion] = STATE(1677), - [sym_preproc_line] = STATE(1677), - [sym_preproc_pragma] = STATE(1677), - [sym_preproc_nullable] = STATE(1677), - [sym_preproc_error] = STATE(1677), - [sym_preproc_warning] = STATE(1677), - [sym_preproc_define] = STATE(1677), - [sym_preproc_undef] = STATE(1677), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3385), + [1662] = { + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(3182), + [sym__name] = STATE(5882), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2306), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2262), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(4411), + [sym_non_lvalue_expression] = STATE(4580), + [sym_lvalue_expression] = STATE(3312), + [sym__expression_statement_expression] = STATE(4573), + [sym_assignment_expression] = STATE(4581), + [sym_binary_expression] = STATE(4573), + [sym_postfix_unary_expression] = STATE(4581), + [sym_prefix_unary_expression] = STATE(4581), + [sym__pointer_indirection_expression] = STATE(3144), + [sym_query_expression] = STATE(4573), + [sym_from_clause] = STATE(6160), + [sym_conditional_expression] = STATE(4573), + [sym_conditional_access_expression] = STATE(4573), + [sym_as_expression] = STATE(4573), + [sym_is_expression] = STATE(4573), + [sym_is_pattern_expression] = STATE(4573), + [sym_cast_expression] = STATE(4573), + [sym_checked_expression] = STATE(4573), + [sym_invocation_expression] = STATE(4581), + [sym_switch_expression] = STATE(4573), + [sym_await_expression] = STATE(4581), + [sym_throw_expression] = STATE(4573), + [sym_element_access_expression] = STATE(3144), + [sym_interpolated_string_expression] = STATE(4573), + [sym_member_access_expression] = STATE(3144), + [sym_object_creation_expression] = STATE(4581), + [sym_parenthesized_expression] = STATE(4581), + [sym__parenthesized_lvalue_expression] = STATE(3144), + [sym_lambda_expression] = STATE(4573), + [sym__lambda_expression_init] = STATE(7399), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(4573), + [sym_anonymous_method_expression] = STATE(4573), + [sym_anonymous_object_creation_expression] = STATE(4573), + [sym_implicit_array_creation_expression] = STATE(4573), + [sym_implicit_object_creation_expression] = STATE(4573), + [sym_implicit_stackalloc_expression] = STATE(4573), + [sym_initializer_expression] = STATE(4573), + [sym_default_expression] = STATE(4573), + [sym_with_expression] = STATE(4573), + [sym_sizeof_expression] = STATE(4573), + [sym_typeof_expression] = STATE(4573), + [sym_makeref_expression] = STATE(4573), + [sym_ref_expression] = STATE(4573), + [sym_reftype_expression] = STATE(4573), + [sym_refvalue_expression] = STATE(4573), + [sym_stackalloc_expression] = STATE(4573), + [sym_range_expression] = STATE(4573), + [sym_tuple_expression] = STATE(3144), + [sym_literal] = STATE(4573), + [sym_character_literal] = STATE(4575), + [sym_string_literal] = STATE(4575), + [sym_raw_string_literal] = STATE(4575), + [sym_boolean_literal] = STATE(4575), + [sym_identifier] = STATE(2237), + [sym__reserved_identifier] = STATE(2229), + [sym_preproc_if_in_expression] = STATE(4573), + [sym_preproc_if_in_attribute_list] = STATE(5583), + [sym_preproc_region] = STATE(1662), + [sym_preproc_endregion] = STATE(1662), + [sym_preproc_line] = STATE(1662), + [sym_preproc_pragma] = STATE(1662), + [sym_preproc_nullable] = STATE(1662), + [sym_preproc_error] = STATE(1662), + [sym_preproc_warning] = STATE(1662), + [sym_preproc_define] = STATE(1662), + [sym_preproc_undef] = STATE(1662), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3501), + [sym__identifier_token] = ACTIONS(1385), + [anon_sym_alias] = ACTIONS(1387), + [anon_sym_global] = ACTIONS(1387), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1389), + [anon_sym_LPAREN] = ACTIONS(1461), + [anon_sym_ref] = ACTIONS(1463), + [anon_sym_LBRACE] = ACTIONS(1395), + [anon_sym_delegate] = ACTIONS(1397), + [anon_sym_async] = ACTIONS(1045), + [anon_sym_file] = ACTIONS(1387), + [anon_sym_new] = ACTIONS(1465), + [anon_sym_where] = ACTIONS(1387), + [anon_sym_notnull] = ACTIONS(1387), + [anon_sym_unmanaged] = ACTIONS(1387), + [anon_sym_checked] = ACTIONS(1401), + [anon_sym_BANG] = ACTIONS(1469), + [anon_sym_TILDE] = ACTIONS(1469), + [anon_sym_PLUS_PLUS] = ACTIONS(1469), + [anon_sym_DASH_DASH] = ACTIONS(1469), + [anon_sym_true] = ACTIONS(1407), + [anon_sym_false] = ACTIONS(1407), + [anon_sym_PLUS] = ACTIONS(1467), + [anon_sym_DASH] = ACTIONS(1467), + [anon_sym_STAR] = ACTIONS(1471), + [anon_sym_CARET] = ACTIONS(1469), + [anon_sym_AMP] = ACTIONS(1469), + [anon_sym_this] = ACTIONS(1411), + [anon_sym_scoped] = ACTIONS(1413), + [anon_sym_base] = ACTIONS(1415), + [anon_sym_var] = ACTIONS(1417), + [sym_predefined_type] = ACTIONS(1419), + [anon_sym_unchecked] = ACTIONS(1401), + [anon_sym_yield] = ACTIONS(1387), + [anon_sym_default] = ACTIONS(1421), + [anon_sym_throw] = ACTIONS(1473), + [anon_sym_when] = ACTIONS(1387), + [anon_sym_await] = ACTIONS(1475), + [anon_sym_DOT_DOT] = ACTIONS(1477), + [anon_sym_from] = ACTIONS(1429), + [anon_sym_into] = ACTIONS(1387), + [anon_sym_join] = ACTIONS(1387), + [anon_sym_on] = ACTIONS(1387), + [anon_sym_equals] = ACTIONS(1387), + [anon_sym_let] = ACTIONS(1387), + [anon_sym_orderby] = ACTIONS(1387), + [anon_sym_ascending] = ACTIONS(1387), + [anon_sym_descending] = ACTIONS(1387), + [anon_sym_group] = ACTIONS(1387), + [anon_sym_by] = ACTIONS(1387), + [anon_sym_select] = ACTIONS(1387), + [anon_sym_stackalloc] = ACTIONS(1431), + [anon_sym_sizeof] = ACTIONS(1433), + [anon_sym_typeof] = ACTIONS(1435), + [anon_sym___makeref] = ACTIONS(1437), + [anon_sym___reftype] = ACTIONS(1439), + [anon_sym___refvalue] = ACTIONS(1441), + [sym_null_literal] = ACTIONS(1443), + [anon_sym_SQUOTE] = ACTIONS(1445), + [sym_integer_literal] = ACTIONS(1443), + [sym_real_literal] = ACTIONS(1447), + [anon_sym_DQUOTE] = ACTIONS(1449), + [sym_verbatim_string_literal] = ACTIONS(1447), + [aux_sym_preproc_if_token1] = ACTIONS(1451), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + [sym_interpolation_regular_start] = ACTIONS(1453), + [sym_interpolation_verbatim_start] = ACTIONS(1455), + [sym_interpolation_raw_start] = ACTIONS(1457), + [sym_raw_string_start] = ACTIONS(1459), + }, + [1663] = { + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(3182), + [sym__name] = STATE(5882), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2306), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2262), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(4441), + [sym_non_lvalue_expression] = STATE(4580), + [sym_lvalue_expression] = STATE(3312), + [sym__expression_statement_expression] = STATE(4573), + [sym_assignment_expression] = STATE(4581), + [sym_binary_expression] = STATE(4573), + [sym_postfix_unary_expression] = STATE(4581), + [sym_prefix_unary_expression] = STATE(4581), + [sym__pointer_indirection_expression] = STATE(3144), + [sym_query_expression] = STATE(4573), + [sym_from_clause] = STATE(6160), + [sym_conditional_expression] = STATE(4573), + [sym_conditional_access_expression] = STATE(4573), + [sym_as_expression] = STATE(4573), + [sym_is_expression] = STATE(4573), + [sym_is_pattern_expression] = STATE(4573), + [sym_cast_expression] = STATE(4573), + [sym_checked_expression] = STATE(4573), + [sym_invocation_expression] = STATE(4581), + [sym_switch_expression] = STATE(4573), + [sym_await_expression] = STATE(4581), + [sym_throw_expression] = STATE(4573), + [sym_element_access_expression] = STATE(3144), + [sym_interpolated_string_expression] = STATE(4573), + [sym_member_access_expression] = STATE(3144), + [sym_object_creation_expression] = STATE(4581), + [sym_parenthesized_expression] = STATE(4581), + [sym__parenthesized_lvalue_expression] = STATE(3144), + [sym_lambda_expression] = STATE(4573), + [sym__lambda_expression_init] = STATE(7399), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(4573), + [sym_anonymous_method_expression] = STATE(4573), + [sym_anonymous_object_creation_expression] = STATE(4573), + [sym_implicit_array_creation_expression] = STATE(4573), + [sym_implicit_object_creation_expression] = STATE(4573), + [sym_implicit_stackalloc_expression] = STATE(4573), + [sym_initializer_expression] = STATE(4573), + [sym_default_expression] = STATE(4573), + [sym_with_expression] = STATE(4573), + [sym_sizeof_expression] = STATE(4573), + [sym_typeof_expression] = STATE(4573), + [sym_makeref_expression] = STATE(4573), + [sym_ref_expression] = STATE(4573), + [sym_reftype_expression] = STATE(4573), + [sym_refvalue_expression] = STATE(4573), + [sym_stackalloc_expression] = STATE(4573), + [sym_range_expression] = STATE(4573), + [sym_tuple_expression] = STATE(3144), + [sym_literal] = STATE(4573), + [sym_character_literal] = STATE(4575), + [sym_string_literal] = STATE(4575), + [sym_raw_string_literal] = STATE(4575), + [sym_boolean_literal] = STATE(4575), + [sym_identifier] = STATE(2237), + [sym__reserved_identifier] = STATE(2229), + [sym_preproc_if_in_expression] = STATE(4573), + [sym_preproc_if_in_attribute_list] = STATE(5583), + [sym_preproc_region] = STATE(1663), + [sym_preproc_endregion] = STATE(1663), + [sym_preproc_line] = STATE(1663), + [sym_preproc_pragma] = STATE(1663), + [sym_preproc_nullable] = STATE(1663), + [sym_preproc_error] = STATE(1663), + [sym_preproc_warning] = STATE(1663), + [sym_preproc_define] = STATE(1663), + [sym_preproc_undef] = STATE(1663), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3501), + [sym__identifier_token] = ACTIONS(1385), + [anon_sym_alias] = ACTIONS(1387), + [anon_sym_global] = ACTIONS(1387), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1389), + [anon_sym_LPAREN] = ACTIONS(1461), + [anon_sym_ref] = ACTIONS(1463), + [anon_sym_LBRACE] = ACTIONS(1395), + [anon_sym_delegate] = ACTIONS(1397), + [anon_sym_async] = ACTIONS(1045), + [anon_sym_file] = ACTIONS(1387), + [anon_sym_new] = ACTIONS(1465), + [anon_sym_where] = ACTIONS(1387), + [anon_sym_notnull] = ACTIONS(1387), + [anon_sym_unmanaged] = ACTIONS(1387), + [anon_sym_checked] = ACTIONS(1401), + [anon_sym_BANG] = ACTIONS(1469), + [anon_sym_TILDE] = ACTIONS(1469), + [anon_sym_PLUS_PLUS] = ACTIONS(1469), + [anon_sym_DASH_DASH] = ACTIONS(1469), + [anon_sym_true] = ACTIONS(1407), + [anon_sym_false] = ACTIONS(1407), + [anon_sym_PLUS] = ACTIONS(1467), + [anon_sym_DASH] = ACTIONS(1467), + [anon_sym_STAR] = ACTIONS(1471), + [anon_sym_CARET] = ACTIONS(1469), + [anon_sym_AMP] = ACTIONS(1469), + [anon_sym_this] = ACTIONS(1411), + [anon_sym_scoped] = ACTIONS(1413), + [anon_sym_base] = ACTIONS(1415), + [anon_sym_var] = ACTIONS(1417), + [sym_predefined_type] = ACTIONS(1419), + [anon_sym_unchecked] = ACTIONS(1401), + [anon_sym_yield] = ACTIONS(1387), + [anon_sym_default] = ACTIONS(1421), + [anon_sym_throw] = ACTIONS(1473), + [anon_sym_when] = ACTIONS(1387), + [anon_sym_await] = ACTIONS(1475), + [anon_sym_DOT_DOT] = ACTIONS(1477), + [anon_sym_from] = ACTIONS(1429), + [anon_sym_into] = ACTIONS(1387), + [anon_sym_join] = ACTIONS(1387), + [anon_sym_on] = ACTIONS(1387), + [anon_sym_equals] = ACTIONS(1387), + [anon_sym_let] = ACTIONS(1387), + [anon_sym_orderby] = ACTIONS(1387), + [anon_sym_ascending] = ACTIONS(1387), + [anon_sym_descending] = ACTIONS(1387), + [anon_sym_group] = ACTIONS(1387), + [anon_sym_by] = ACTIONS(1387), + [anon_sym_select] = ACTIONS(1387), + [anon_sym_stackalloc] = ACTIONS(1431), + [anon_sym_sizeof] = ACTIONS(1433), + [anon_sym_typeof] = ACTIONS(1435), + [anon_sym___makeref] = ACTIONS(1437), + [anon_sym___reftype] = ACTIONS(1439), + [anon_sym___refvalue] = ACTIONS(1441), + [sym_null_literal] = ACTIONS(1443), + [anon_sym_SQUOTE] = ACTIONS(1445), + [sym_integer_literal] = ACTIONS(1443), + [sym_real_literal] = ACTIONS(1447), + [anon_sym_DQUOTE] = ACTIONS(1449), + [sym_verbatim_string_literal] = ACTIONS(1447), + [aux_sym_preproc_if_token1] = ACTIONS(1451), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + [sym_interpolation_regular_start] = ACTIONS(1453), + [sym_interpolation_verbatim_start] = ACTIONS(1455), + [sym_interpolation_raw_start] = ACTIONS(1457), + [sym_raw_string_start] = ACTIONS(1459), + }, + [1664] = { + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2816), + [sym__name] = STATE(5873), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2196), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(4851), + [sym_non_lvalue_expression] = STATE(3495), + [sym_lvalue_expression] = STATE(3525), + [sym__expression_statement_expression] = STATE(3462), + [sym_assignment_expression] = STATE(3497), + [sym_binary_expression] = STATE(3462), + [sym_postfix_unary_expression] = STATE(3497), + [sym_prefix_unary_expression] = STATE(3497), + [sym__pointer_indirection_expression] = STATE(2815), + [sym_query_expression] = STATE(3462), + [sym_from_clause] = STATE(6155), + [sym_conditional_expression] = STATE(3462), + [sym_conditional_access_expression] = STATE(3462), + [sym_as_expression] = STATE(3462), + [sym_is_expression] = STATE(3462), + [sym_is_pattern_expression] = STATE(3462), + [sym_cast_expression] = STATE(3462), + [sym_checked_expression] = STATE(3462), + [sym_invocation_expression] = STATE(3497), + [sym_switch_expression] = STATE(3462), + [sym_await_expression] = STATE(3497), + [sym_throw_expression] = STATE(3462), + [sym_element_access_expression] = STATE(2815), + [sym_interpolated_string_expression] = STATE(3462), + [sym_member_access_expression] = STATE(2815), + [sym_object_creation_expression] = STATE(3497), + [sym_parenthesized_expression] = STATE(3497), + [sym__parenthesized_lvalue_expression] = STATE(2815), + [sym_lambda_expression] = STATE(3462), + [sym__lambda_expression_init] = STATE(7427), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3462), + [sym_anonymous_method_expression] = STATE(3462), + [sym_anonymous_object_creation_expression] = STATE(3462), + [sym_implicit_array_creation_expression] = STATE(3462), + [sym_implicit_object_creation_expression] = STATE(3462), + [sym_implicit_stackalloc_expression] = STATE(3462), + [sym_initializer_expression] = STATE(3462), + [sym_default_expression] = STATE(3462), + [sym_with_expression] = STATE(3462), + [sym_sizeof_expression] = STATE(3462), + [sym_typeof_expression] = STATE(3462), + [sym_makeref_expression] = STATE(3462), + [sym_ref_expression] = STATE(3462), + [sym_reftype_expression] = STATE(3462), + [sym_refvalue_expression] = STATE(3462), + [sym_stackalloc_expression] = STATE(3462), + [sym_range_expression] = STATE(3462), + [sym_tuple_expression] = STATE(2815), + [sym_literal] = STATE(3462), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3462), + [sym_preproc_if_in_attribute_list] = STATE(5583), + [sym_preproc_region] = STATE(1664), + [sym_preproc_endregion] = STATE(1664), + [sym_preproc_line] = STATE(1664), + [sym_preproc_pragma] = STATE(1664), + [sym_preproc_nullable] = STATE(1664), + [sym_preproc_error] = STATE(1664), + [sym_preproc_warning] = STATE(1664), + [sym_preproc_define] = STATE(1664), + [sym_preproc_undef] = STATE(1664), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3367), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1307), - [anon_sym_LPAREN] = ACTIONS(1609), - [anon_sym_ref] = ACTIONS(1611), - [anon_sym_LBRACE] = ACTIONS(1313), - [anon_sym_delegate] = ACTIONS(1315), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1305), + [anon_sym_LPAREN] = ACTIONS(1737), + [anon_sym_ref] = ACTIONS(1739), + [anon_sym_LBRACE] = ACTIONS(1311), + [anon_sym_delegate] = ACTIONS(1313), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1613), + [anon_sym_new] = ACTIONS(1741), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1319), - [anon_sym_BANG] = ACTIONS(1617), - [anon_sym_TILDE] = ACTIONS(1617), - [anon_sym_PLUS_PLUS] = ACTIONS(1617), - [anon_sym_DASH_DASH] = ACTIONS(1617), + [anon_sym_checked] = ACTIONS(1317), + [anon_sym_BANG] = ACTIONS(1745), + [anon_sym_TILDE] = ACTIONS(1745), + [anon_sym_PLUS_PLUS] = ACTIONS(1745), + [anon_sym_DASH_DASH] = ACTIONS(1745), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1615), - [anon_sym_DASH] = ACTIONS(1615), - [anon_sym_STAR] = ACTIONS(1619), - [anon_sym_CARET] = ACTIONS(1617), - [anon_sym_AMP] = ACTIONS(1617), - [anon_sym_this] = ACTIONS(1323), + [anon_sym_PLUS] = ACTIONS(1743), + [anon_sym_DASH] = ACTIONS(1743), + [anon_sym_STAR] = ACTIONS(1377), + [anon_sym_CARET] = ACTIONS(1745), + [anon_sym_AMP] = ACTIONS(1745), + [anon_sym_this] = ACTIONS(1321), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1325), + [anon_sym_base] = ACTIONS(1323), [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1319), + [anon_sym_unchecked] = ACTIONS(1317), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1621), + [anon_sym_throw] = ACTIONS(1747), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1623), - [anon_sym_DOT_DOT] = ACTIONS(1625), + [anon_sym_await] = ACTIONS(1749), + [anon_sym_DOT_DOT] = ACTIONS(1751), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -325325,19 +323014,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1333), + [anon_sym_stackalloc] = ACTIONS(1331), [anon_sym_sizeof] = ACTIONS(129), [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(1335), - [anon_sym___reftype] = ACTIONS(1337), - [anon_sym___refvalue] = ACTIONS(1339), + [anon_sym___makeref] = ACTIONS(1333), + [anon_sym___reftype] = ACTIONS(1335), + [anon_sym___refvalue] = ACTIONS(1337), [sym_null_literal] = ACTIONS(139), [anon_sym_SQUOTE] = ACTIONS(141), [sym_integer_literal] = ACTIONS(139), [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1341), + [aux_sym_preproc_if_token1] = ACTIONS(1753), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -325353,135 +323042,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), }, - [1678] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2762), - [sym__name] = STATE(5892), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2316), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(4596), - [sym_non_lvalue_expression] = STATE(3438), - [sym_lvalue_expression] = STATE(3500), - [sym__expression_statement_expression] = STATE(3362), - [sym_assignment_expression] = STATE(3449), - [sym_binary_expression] = STATE(3362), - [sym_postfix_unary_expression] = STATE(3449), - [sym_prefix_unary_expression] = STATE(3449), - [sym__pointer_indirection_expression] = STATE(2747), - [sym_query_expression] = STATE(3362), - [sym_from_clause] = STATE(6147), - [sym_conditional_expression] = STATE(3362), - [sym_conditional_access_expression] = STATE(3362), - [sym_as_expression] = STATE(3362), - [sym_is_expression] = STATE(3362), - [sym_is_pattern_expression] = STATE(3362), - [sym_cast_expression] = STATE(3362), - [sym_checked_expression] = STATE(3362), - [sym_invocation_expression] = STATE(3449), - [sym_switch_expression] = STATE(3362), - [sym_await_expression] = STATE(3449), - [sym_throw_expression] = STATE(3362), - [sym_element_access_expression] = STATE(2747), - [sym_interpolated_string_expression] = STATE(3362), - [sym_member_access_expression] = STATE(2747), - [sym_object_creation_expression] = STATE(3449), - [sym_parenthesized_expression] = STATE(3449), - [sym__parenthesized_lvalue_expression] = STATE(2747), - [sym_lambda_expression] = STATE(3362), - [sym__lambda_expression_init] = STATE(7516), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3362), - [sym_anonymous_method_expression] = STATE(3362), - [sym_anonymous_object_creation_expression] = STATE(3362), - [sym_implicit_array_creation_expression] = STATE(3362), - [sym_implicit_object_creation_expression] = STATE(3362), - [sym_implicit_stackalloc_expression] = STATE(3362), - [sym_initializer_expression] = STATE(3362), - [sym_default_expression] = STATE(3362), - [sym_with_expression] = STATE(3362), - [sym_sizeof_expression] = STATE(3362), - [sym_typeof_expression] = STATE(3362), - [sym_makeref_expression] = STATE(3362), - [sym_ref_expression] = STATE(3362), - [sym_reftype_expression] = STATE(3362), - [sym_refvalue_expression] = STATE(3362), - [sym_stackalloc_expression] = STATE(3362), - [sym_range_expression] = STATE(3362), - [sym_tuple_expression] = STATE(2747), - [sym_literal] = STATE(3362), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2267), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3362), - [sym_preproc_if_in_attribute_list] = STATE(5576), - [sym_preproc_region] = STATE(1678), - [sym_preproc_endregion] = STATE(1678), - [sym_preproc_line] = STATE(1678), - [sym_preproc_pragma] = STATE(1678), - [sym_preproc_nullable] = STATE(1678), - [sym_preproc_error] = STATE(1678), - [sym_preproc_warning] = STATE(1678), - [sym_preproc_define] = STATE(1678), - [sym_preproc_undef] = STATE(1678), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3385), + [1665] = { + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2816), + [sym__name] = STATE(5873), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2196), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(3195), + [sym_non_lvalue_expression] = STATE(3495), + [sym_lvalue_expression] = STATE(3525), + [sym__expression_statement_expression] = STATE(3462), + [sym_assignment_expression] = STATE(3497), + [sym_binary_expression] = STATE(3462), + [sym_postfix_unary_expression] = STATE(3497), + [sym_prefix_unary_expression] = STATE(3497), + [sym__pointer_indirection_expression] = STATE(2815), + [sym_query_expression] = STATE(3462), + [sym_from_clause] = STATE(6155), + [sym_conditional_expression] = STATE(3462), + [sym_conditional_access_expression] = STATE(3462), + [sym_as_expression] = STATE(3462), + [sym_is_expression] = STATE(3462), + [sym_is_pattern_expression] = STATE(3462), + [sym_cast_expression] = STATE(3462), + [sym_checked_expression] = STATE(3462), + [sym_invocation_expression] = STATE(3497), + [sym_switch_expression] = STATE(3462), + [sym_await_expression] = STATE(3497), + [sym_throw_expression] = STATE(3462), + [sym_element_access_expression] = STATE(2815), + [sym_interpolated_string_expression] = STATE(3462), + [sym_member_access_expression] = STATE(2815), + [sym_object_creation_expression] = STATE(3497), + [sym_parenthesized_expression] = STATE(3497), + [sym__parenthesized_lvalue_expression] = STATE(2815), + [sym_lambda_expression] = STATE(3462), + [sym__lambda_expression_init] = STATE(7427), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3462), + [sym_anonymous_method_expression] = STATE(3462), + [sym_anonymous_object_creation_expression] = STATE(3462), + [sym_implicit_array_creation_expression] = STATE(3462), + [sym_implicit_object_creation_expression] = STATE(3462), + [sym_implicit_stackalloc_expression] = STATE(3462), + [sym_initializer_expression] = STATE(3462), + [sym_default_expression] = STATE(3462), + [sym_with_expression] = STATE(3462), + [sym_sizeof_expression] = STATE(3462), + [sym_typeof_expression] = STATE(3462), + [sym_makeref_expression] = STATE(3462), + [sym_ref_expression] = STATE(3462), + [sym_reftype_expression] = STATE(3462), + [sym_refvalue_expression] = STATE(3462), + [sym_stackalloc_expression] = STATE(3462), + [sym_range_expression] = STATE(3462), + [sym_tuple_expression] = STATE(2815), + [sym_literal] = STATE(3462), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3462), + [sym_preproc_if_in_attribute_list] = STATE(5583), + [sym_preproc_region] = STATE(1665), + [sym_preproc_endregion] = STATE(1665), + [sym_preproc_line] = STATE(1665), + [sym_preproc_pragma] = STATE(1665), + [sym_preproc_nullable] = STATE(1665), + [sym_preproc_error] = STATE(1665), + [sym_preproc_warning] = STATE(1665), + [sym_preproc_define] = STATE(1665), + [sym_preproc_undef] = STATE(1665), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3367), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1307), - [anon_sym_LPAREN] = ACTIONS(1609), - [anon_sym_ref] = ACTIONS(1611), - [anon_sym_LBRACE] = ACTIONS(1313), - [anon_sym_delegate] = ACTIONS(1315), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1305), + [anon_sym_LPAREN] = ACTIONS(1737), + [anon_sym_ref] = ACTIONS(1739), + [anon_sym_LBRACE] = ACTIONS(1311), + [anon_sym_delegate] = ACTIONS(1313), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1613), + [anon_sym_new] = ACTIONS(1741), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1319), - [anon_sym_BANG] = ACTIONS(1617), - [anon_sym_TILDE] = ACTIONS(1617), - [anon_sym_PLUS_PLUS] = ACTIONS(1617), - [anon_sym_DASH_DASH] = ACTIONS(1617), + [anon_sym_checked] = ACTIONS(1317), + [anon_sym_BANG] = ACTIONS(1745), + [anon_sym_TILDE] = ACTIONS(1745), + [anon_sym_PLUS_PLUS] = ACTIONS(1745), + [anon_sym_DASH_DASH] = ACTIONS(1745), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1615), - [anon_sym_DASH] = ACTIONS(1615), - [anon_sym_STAR] = ACTIONS(1619), - [anon_sym_CARET] = ACTIONS(1617), - [anon_sym_AMP] = ACTIONS(1617), - [anon_sym_this] = ACTIONS(1323), + [anon_sym_PLUS] = ACTIONS(1743), + [anon_sym_DASH] = ACTIONS(1743), + [anon_sym_STAR] = ACTIONS(1377), + [anon_sym_CARET] = ACTIONS(1745), + [anon_sym_AMP] = ACTIONS(1745), + [anon_sym_this] = ACTIONS(1321), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1325), + [anon_sym_base] = ACTIONS(1323), [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1319), + [anon_sym_unchecked] = ACTIONS(1317), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1621), + [anon_sym_throw] = ACTIONS(1747), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1623), - [anon_sym_DOT_DOT] = ACTIONS(1625), + [anon_sym_await] = ACTIONS(1749), + [anon_sym_DOT_DOT] = ACTIONS(1751), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -325494,19 +323183,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1333), + [anon_sym_stackalloc] = ACTIONS(1331), [anon_sym_sizeof] = ACTIONS(129), [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(1335), - [anon_sym___reftype] = ACTIONS(1337), - [anon_sym___refvalue] = ACTIONS(1339), + [anon_sym___makeref] = ACTIONS(1333), + [anon_sym___reftype] = ACTIONS(1335), + [anon_sym___refvalue] = ACTIONS(1337), [sym_null_literal] = ACTIONS(139), [anon_sym_SQUOTE] = ACTIONS(141), [sym_integer_literal] = ACTIONS(139), [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1341), + [aux_sym_preproc_if_token1] = ACTIONS(1753), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -325522,135 +323211,2163 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_interpolation_raw_start] = ACTIONS(155), [sym_raw_string_start] = ACTIONS(157), }, - [1679] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2762), - [sym__name] = STATE(5892), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2316), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(4597), - [sym_non_lvalue_expression] = STATE(3438), - [sym_lvalue_expression] = STATE(3500), - [sym__expression_statement_expression] = STATE(3362), - [sym_assignment_expression] = STATE(3449), - [sym_binary_expression] = STATE(3362), - [sym_postfix_unary_expression] = STATE(3449), - [sym_prefix_unary_expression] = STATE(3449), - [sym__pointer_indirection_expression] = STATE(2747), - [sym_query_expression] = STATE(3362), - [sym_from_clause] = STATE(6147), - [sym_conditional_expression] = STATE(3362), - [sym_conditional_access_expression] = STATE(3362), - [sym_as_expression] = STATE(3362), - [sym_is_expression] = STATE(3362), - [sym_is_pattern_expression] = STATE(3362), - [sym_cast_expression] = STATE(3362), - [sym_checked_expression] = STATE(3362), - [sym_invocation_expression] = STATE(3449), - [sym_switch_expression] = STATE(3362), - [sym_await_expression] = STATE(3449), - [sym_throw_expression] = STATE(3362), - [sym_element_access_expression] = STATE(2747), - [sym_interpolated_string_expression] = STATE(3362), - [sym_member_access_expression] = STATE(2747), - [sym_object_creation_expression] = STATE(3449), - [sym_parenthesized_expression] = STATE(3449), - [sym__parenthesized_lvalue_expression] = STATE(2747), - [sym_lambda_expression] = STATE(3362), - [sym__lambda_expression_init] = STATE(7516), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3362), - [sym_anonymous_method_expression] = STATE(3362), - [sym_anonymous_object_creation_expression] = STATE(3362), - [sym_implicit_array_creation_expression] = STATE(3362), - [sym_implicit_object_creation_expression] = STATE(3362), - [sym_implicit_stackalloc_expression] = STATE(3362), - [sym_initializer_expression] = STATE(3362), - [sym_default_expression] = STATE(3362), - [sym_with_expression] = STATE(3362), - [sym_sizeof_expression] = STATE(3362), - [sym_typeof_expression] = STATE(3362), - [sym_makeref_expression] = STATE(3362), - [sym_ref_expression] = STATE(3362), - [sym_reftype_expression] = STATE(3362), - [sym_refvalue_expression] = STATE(3362), - [sym_stackalloc_expression] = STATE(3362), - [sym_range_expression] = STATE(3362), - [sym_tuple_expression] = STATE(2747), - [sym_literal] = STATE(3362), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2267), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3362), - [sym_preproc_if_in_attribute_list] = STATE(5576), - [sym_preproc_region] = STATE(1679), - [sym_preproc_endregion] = STATE(1679), - [sym_preproc_line] = STATE(1679), - [sym_preproc_pragma] = STATE(1679), - [sym_preproc_nullable] = STATE(1679), - [sym_preproc_error] = STATE(1679), - [sym_preproc_warning] = STATE(1679), - [sym_preproc_define] = STATE(1679), - [sym_preproc_undef] = STATE(1679), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3385), + [1666] = { + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(3182), + [sym__name] = STATE(5882), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2306), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2262), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(4386), + [sym_non_lvalue_expression] = STATE(4580), + [sym_lvalue_expression] = STATE(3312), + [sym__expression_statement_expression] = STATE(4573), + [sym_assignment_expression] = STATE(4581), + [sym_binary_expression] = STATE(4573), + [sym_postfix_unary_expression] = STATE(4581), + [sym_prefix_unary_expression] = STATE(4581), + [sym__pointer_indirection_expression] = STATE(3144), + [sym_query_expression] = STATE(4573), + [sym_from_clause] = STATE(6160), + [sym_conditional_expression] = STATE(4573), + [sym_conditional_access_expression] = STATE(4573), + [sym_as_expression] = STATE(4573), + [sym_is_expression] = STATE(4573), + [sym_is_pattern_expression] = STATE(4573), + [sym_cast_expression] = STATE(4573), + [sym_checked_expression] = STATE(4573), + [sym_invocation_expression] = STATE(4581), + [sym_switch_expression] = STATE(4573), + [sym_await_expression] = STATE(4581), + [sym_throw_expression] = STATE(4573), + [sym_element_access_expression] = STATE(3144), + [sym_interpolated_string_expression] = STATE(4573), + [sym_member_access_expression] = STATE(3144), + [sym_object_creation_expression] = STATE(4581), + [sym_parenthesized_expression] = STATE(4581), + [sym__parenthesized_lvalue_expression] = STATE(3144), + [sym_lambda_expression] = STATE(4573), + [sym__lambda_expression_init] = STATE(7399), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(4573), + [sym_anonymous_method_expression] = STATE(4573), + [sym_anonymous_object_creation_expression] = STATE(4573), + [sym_implicit_array_creation_expression] = STATE(4573), + [sym_implicit_object_creation_expression] = STATE(4573), + [sym_implicit_stackalloc_expression] = STATE(4573), + [sym_initializer_expression] = STATE(4573), + [sym_default_expression] = STATE(4573), + [sym_with_expression] = STATE(4573), + [sym_sizeof_expression] = STATE(4573), + [sym_typeof_expression] = STATE(4573), + [sym_makeref_expression] = STATE(4573), + [sym_ref_expression] = STATE(4573), + [sym_reftype_expression] = STATE(4573), + [sym_refvalue_expression] = STATE(4573), + [sym_stackalloc_expression] = STATE(4573), + [sym_range_expression] = STATE(4573), + [sym_tuple_expression] = STATE(3144), + [sym_literal] = STATE(4573), + [sym_character_literal] = STATE(4575), + [sym_string_literal] = STATE(4575), + [sym_raw_string_literal] = STATE(4575), + [sym_boolean_literal] = STATE(4575), + [sym_identifier] = STATE(2237), + [sym__reserved_identifier] = STATE(2229), + [sym_preproc_if_in_expression] = STATE(4573), + [sym_preproc_if_in_attribute_list] = STATE(5583), + [sym_preproc_region] = STATE(1666), + [sym_preproc_endregion] = STATE(1666), + [sym_preproc_line] = STATE(1666), + [sym_preproc_pragma] = STATE(1666), + [sym_preproc_nullable] = STATE(1666), + [sym_preproc_error] = STATE(1666), + [sym_preproc_warning] = STATE(1666), + [sym_preproc_define] = STATE(1666), + [sym_preproc_undef] = STATE(1666), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3501), + [sym__identifier_token] = ACTIONS(1385), + [anon_sym_alias] = ACTIONS(1387), + [anon_sym_global] = ACTIONS(1387), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1389), + [anon_sym_LPAREN] = ACTIONS(1461), + [anon_sym_ref] = ACTIONS(1463), + [anon_sym_LBRACE] = ACTIONS(1395), + [anon_sym_delegate] = ACTIONS(1397), + [anon_sym_async] = ACTIONS(1045), + [anon_sym_file] = ACTIONS(1387), + [anon_sym_new] = ACTIONS(1465), + [anon_sym_where] = ACTIONS(1387), + [anon_sym_notnull] = ACTIONS(1387), + [anon_sym_unmanaged] = ACTIONS(1387), + [anon_sym_checked] = ACTIONS(1401), + [anon_sym_BANG] = ACTIONS(1469), + [anon_sym_TILDE] = ACTIONS(1469), + [anon_sym_PLUS_PLUS] = ACTIONS(1469), + [anon_sym_DASH_DASH] = ACTIONS(1469), + [anon_sym_true] = ACTIONS(1407), + [anon_sym_false] = ACTIONS(1407), + [anon_sym_PLUS] = ACTIONS(1467), + [anon_sym_DASH] = ACTIONS(1467), + [anon_sym_STAR] = ACTIONS(1471), + [anon_sym_CARET] = ACTIONS(1469), + [anon_sym_AMP] = ACTIONS(1469), + [anon_sym_this] = ACTIONS(1411), + [anon_sym_scoped] = ACTIONS(1413), + [anon_sym_base] = ACTIONS(1415), + [anon_sym_var] = ACTIONS(1417), + [sym_predefined_type] = ACTIONS(1419), + [anon_sym_unchecked] = ACTIONS(1401), + [anon_sym_yield] = ACTIONS(1387), + [anon_sym_default] = ACTIONS(1421), + [anon_sym_throw] = ACTIONS(1473), + [anon_sym_when] = ACTIONS(1387), + [anon_sym_await] = ACTIONS(1475), + [anon_sym_DOT_DOT] = ACTIONS(1477), + [anon_sym_from] = ACTIONS(1429), + [anon_sym_into] = ACTIONS(1387), + [anon_sym_join] = ACTIONS(1387), + [anon_sym_on] = ACTIONS(1387), + [anon_sym_equals] = ACTIONS(1387), + [anon_sym_let] = ACTIONS(1387), + [anon_sym_orderby] = ACTIONS(1387), + [anon_sym_ascending] = ACTIONS(1387), + [anon_sym_descending] = ACTIONS(1387), + [anon_sym_group] = ACTIONS(1387), + [anon_sym_by] = ACTIONS(1387), + [anon_sym_select] = ACTIONS(1387), + [anon_sym_stackalloc] = ACTIONS(1431), + [anon_sym_sizeof] = ACTIONS(1433), + [anon_sym_typeof] = ACTIONS(1435), + [anon_sym___makeref] = ACTIONS(1437), + [anon_sym___reftype] = ACTIONS(1439), + [anon_sym___refvalue] = ACTIONS(1441), + [sym_null_literal] = ACTIONS(1443), + [anon_sym_SQUOTE] = ACTIONS(1445), + [sym_integer_literal] = ACTIONS(1443), + [sym_real_literal] = ACTIONS(1447), + [anon_sym_DQUOTE] = ACTIONS(1449), + [sym_verbatim_string_literal] = ACTIONS(1447), + [aux_sym_preproc_if_token1] = ACTIONS(1451), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + [sym_interpolation_regular_start] = ACTIONS(1453), + [sym_interpolation_verbatim_start] = ACTIONS(1455), + [sym_interpolation_raw_start] = ACTIONS(1457), + [sym_raw_string_start] = ACTIONS(1459), + }, + [1667] = { + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(3182), + [sym__name] = STATE(5882), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2306), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2262), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(4387), + [sym_non_lvalue_expression] = STATE(4580), + [sym_lvalue_expression] = STATE(3312), + [sym__expression_statement_expression] = STATE(4573), + [sym_assignment_expression] = STATE(4581), + [sym_binary_expression] = STATE(4573), + [sym_postfix_unary_expression] = STATE(4581), + [sym_prefix_unary_expression] = STATE(4581), + [sym__pointer_indirection_expression] = STATE(3144), + [sym_query_expression] = STATE(4573), + [sym_from_clause] = STATE(6160), + [sym_conditional_expression] = STATE(4573), + [sym_conditional_access_expression] = STATE(4573), + [sym_as_expression] = STATE(4573), + [sym_is_expression] = STATE(4573), + [sym_is_pattern_expression] = STATE(4573), + [sym_cast_expression] = STATE(4573), + [sym_checked_expression] = STATE(4573), + [sym_invocation_expression] = STATE(4581), + [sym_switch_expression] = STATE(4573), + [sym_await_expression] = STATE(4581), + [sym_throw_expression] = STATE(4573), + [sym_element_access_expression] = STATE(3144), + [sym_interpolated_string_expression] = STATE(4573), + [sym_member_access_expression] = STATE(3144), + [sym_object_creation_expression] = STATE(4581), + [sym_parenthesized_expression] = STATE(4581), + [sym__parenthesized_lvalue_expression] = STATE(3144), + [sym_lambda_expression] = STATE(4573), + [sym__lambda_expression_init] = STATE(7399), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(4573), + [sym_anonymous_method_expression] = STATE(4573), + [sym_anonymous_object_creation_expression] = STATE(4573), + [sym_implicit_array_creation_expression] = STATE(4573), + [sym_implicit_object_creation_expression] = STATE(4573), + [sym_implicit_stackalloc_expression] = STATE(4573), + [sym_initializer_expression] = STATE(4573), + [sym_default_expression] = STATE(4573), + [sym_with_expression] = STATE(4573), + [sym_sizeof_expression] = STATE(4573), + [sym_typeof_expression] = STATE(4573), + [sym_makeref_expression] = STATE(4573), + [sym_ref_expression] = STATE(4573), + [sym_reftype_expression] = STATE(4573), + [sym_refvalue_expression] = STATE(4573), + [sym_stackalloc_expression] = STATE(4573), + [sym_range_expression] = STATE(4573), + [sym_tuple_expression] = STATE(3144), + [sym_literal] = STATE(4573), + [sym_character_literal] = STATE(4575), + [sym_string_literal] = STATE(4575), + [sym_raw_string_literal] = STATE(4575), + [sym_boolean_literal] = STATE(4575), + [sym_identifier] = STATE(2237), + [sym__reserved_identifier] = STATE(2229), + [sym_preproc_if_in_expression] = STATE(4573), + [sym_preproc_if_in_attribute_list] = STATE(5583), + [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(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3501), + [sym__identifier_token] = ACTIONS(1385), + [anon_sym_alias] = ACTIONS(1387), + [anon_sym_global] = ACTIONS(1387), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1389), + [anon_sym_LPAREN] = ACTIONS(1461), + [anon_sym_ref] = ACTIONS(1463), + [anon_sym_LBRACE] = ACTIONS(1395), + [anon_sym_delegate] = ACTIONS(1397), + [anon_sym_async] = ACTIONS(1045), + [anon_sym_file] = ACTIONS(1387), + [anon_sym_new] = ACTIONS(1465), + [anon_sym_where] = ACTIONS(1387), + [anon_sym_notnull] = ACTIONS(1387), + [anon_sym_unmanaged] = ACTIONS(1387), + [anon_sym_checked] = ACTIONS(1401), + [anon_sym_BANG] = ACTIONS(1469), + [anon_sym_TILDE] = ACTIONS(1469), + [anon_sym_PLUS_PLUS] = ACTIONS(1469), + [anon_sym_DASH_DASH] = ACTIONS(1469), + [anon_sym_true] = ACTIONS(1407), + [anon_sym_false] = ACTIONS(1407), + [anon_sym_PLUS] = ACTIONS(1467), + [anon_sym_DASH] = ACTIONS(1467), + [anon_sym_STAR] = ACTIONS(1471), + [anon_sym_CARET] = ACTIONS(1469), + [anon_sym_AMP] = ACTIONS(1469), + [anon_sym_this] = ACTIONS(1411), + [anon_sym_scoped] = ACTIONS(1413), + [anon_sym_base] = ACTIONS(1415), + [anon_sym_var] = ACTIONS(1417), + [sym_predefined_type] = ACTIONS(1419), + [anon_sym_unchecked] = ACTIONS(1401), + [anon_sym_yield] = ACTIONS(1387), + [anon_sym_default] = ACTIONS(1421), + [anon_sym_throw] = ACTIONS(1473), + [anon_sym_when] = ACTIONS(1387), + [anon_sym_await] = ACTIONS(1475), + [anon_sym_DOT_DOT] = ACTIONS(1477), + [anon_sym_from] = ACTIONS(1429), + [anon_sym_into] = ACTIONS(1387), + [anon_sym_join] = ACTIONS(1387), + [anon_sym_on] = ACTIONS(1387), + [anon_sym_equals] = ACTIONS(1387), + [anon_sym_let] = ACTIONS(1387), + [anon_sym_orderby] = ACTIONS(1387), + [anon_sym_ascending] = ACTIONS(1387), + [anon_sym_descending] = ACTIONS(1387), + [anon_sym_group] = ACTIONS(1387), + [anon_sym_by] = ACTIONS(1387), + [anon_sym_select] = ACTIONS(1387), + [anon_sym_stackalloc] = ACTIONS(1431), + [anon_sym_sizeof] = ACTIONS(1433), + [anon_sym_typeof] = ACTIONS(1435), + [anon_sym___makeref] = ACTIONS(1437), + [anon_sym___reftype] = ACTIONS(1439), + [anon_sym___refvalue] = ACTIONS(1441), + [sym_null_literal] = ACTIONS(1443), + [anon_sym_SQUOTE] = ACTIONS(1445), + [sym_integer_literal] = ACTIONS(1443), + [sym_real_literal] = ACTIONS(1447), + [anon_sym_DQUOTE] = ACTIONS(1449), + [sym_verbatim_string_literal] = ACTIONS(1447), + [aux_sym_preproc_if_token1] = ACTIONS(1451), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + [sym_interpolation_regular_start] = ACTIONS(1453), + [sym_interpolation_verbatim_start] = ACTIONS(1455), + [sym_interpolation_raw_start] = ACTIONS(1457), + [sym_raw_string_start] = ACTIONS(1459), + }, + [1668] = { + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(3182), + [sym__name] = STATE(5882), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2306), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2262), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(4395), + [sym_non_lvalue_expression] = STATE(4580), + [sym_lvalue_expression] = STATE(3312), + [sym__expression_statement_expression] = STATE(4573), + [sym_assignment_expression] = STATE(4581), + [sym_binary_expression] = STATE(4573), + [sym_postfix_unary_expression] = STATE(4581), + [sym_prefix_unary_expression] = STATE(4581), + [sym__pointer_indirection_expression] = STATE(3144), + [sym_query_expression] = STATE(4573), + [sym_from_clause] = STATE(6160), + [sym_conditional_expression] = STATE(4573), + [sym_conditional_access_expression] = STATE(4573), + [sym_as_expression] = STATE(4573), + [sym_is_expression] = STATE(4573), + [sym_is_pattern_expression] = STATE(4573), + [sym_cast_expression] = STATE(4573), + [sym_checked_expression] = STATE(4573), + [sym_invocation_expression] = STATE(4581), + [sym_switch_expression] = STATE(4573), + [sym_await_expression] = STATE(4581), + [sym_throw_expression] = STATE(4573), + [sym_element_access_expression] = STATE(3144), + [sym_interpolated_string_expression] = STATE(4573), + [sym_member_access_expression] = STATE(3144), + [sym_object_creation_expression] = STATE(4581), + [sym_parenthesized_expression] = STATE(4581), + [sym__parenthesized_lvalue_expression] = STATE(3144), + [sym_lambda_expression] = STATE(4573), + [sym__lambda_expression_init] = STATE(7399), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(4573), + [sym_anonymous_method_expression] = STATE(4573), + [sym_anonymous_object_creation_expression] = STATE(4573), + [sym_implicit_array_creation_expression] = STATE(4573), + [sym_implicit_object_creation_expression] = STATE(4573), + [sym_implicit_stackalloc_expression] = STATE(4573), + [sym_initializer_expression] = STATE(4573), + [sym_default_expression] = STATE(4573), + [sym_with_expression] = STATE(4573), + [sym_sizeof_expression] = STATE(4573), + [sym_typeof_expression] = STATE(4573), + [sym_makeref_expression] = STATE(4573), + [sym_ref_expression] = STATE(4573), + [sym_reftype_expression] = STATE(4573), + [sym_refvalue_expression] = STATE(4573), + [sym_stackalloc_expression] = STATE(4573), + [sym_range_expression] = STATE(4573), + [sym_tuple_expression] = STATE(3144), + [sym_literal] = STATE(4573), + [sym_character_literal] = STATE(4575), + [sym_string_literal] = STATE(4575), + [sym_raw_string_literal] = STATE(4575), + [sym_boolean_literal] = STATE(4575), + [sym_identifier] = STATE(2237), + [sym__reserved_identifier] = STATE(2229), + [sym_preproc_if_in_expression] = STATE(4573), + [sym_preproc_if_in_attribute_list] = STATE(5583), + [sym_preproc_region] = STATE(1668), + [sym_preproc_endregion] = STATE(1668), + [sym_preproc_line] = STATE(1668), + [sym_preproc_pragma] = STATE(1668), + [sym_preproc_nullable] = STATE(1668), + [sym_preproc_error] = STATE(1668), + [sym_preproc_warning] = STATE(1668), + [sym_preproc_define] = STATE(1668), + [sym_preproc_undef] = STATE(1668), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3501), + [sym__identifier_token] = ACTIONS(1385), + [anon_sym_alias] = ACTIONS(1387), + [anon_sym_global] = ACTIONS(1387), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1389), + [anon_sym_LPAREN] = ACTIONS(1461), + [anon_sym_ref] = ACTIONS(1463), + [anon_sym_LBRACE] = ACTIONS(1395), + [anon_sym_delegate] = ACTIONS(1397), + [anon_sym_async] = ACTIONS(1045), + [anon_sym_file] = ACTIONS(1387), + [anon_sym_new] = ACTIONS(1465), + [anon_sym_where] = ACTIONS(1387), + [anon_sym_notnull] = ACTIONS(1387), + [anon_sym_unmanaged] = ACTIONS(1387), + [anon_sym_checked] = ACTIONS(1401), + [anon_sym_BANG] = ACTIONS(1469), + [anon_sym_TILDE] = ACTIONS(1469), + [anon_sym_PLUS_PLUS] = ACTIONS(1469), + [anon_sym_DASH_DASH] = ACTIONS(1469), + [anon_sym_true] = ACTIONS(1407), + [anon_sym_false] = ACTIONS(1407), + [anon_sym_PLUS] = ACTIONS(1467), + [anon_sym_DASH] = ACTIONS(1467), + [anon_sym_STAR] = ACTIONS(1471), + [anon_sym_CARET] = ACTIONS(1469), + [anon_sym_AMP] = ACTIONS(1469), + [anon_sym_this] = ACTIONS(1411), + [anon_sym_scoped] = ACTIONS(1413), + [anon_sym_base] = ACTIONS(1415), + [anon_sym_var] = ACTIONS(1417), + [sym_predefined_type] = ACTIONS(1419), + [anon_sym_unchecked] = ACTIONS(1401), + [anon_sym_yield] = ACTIONS(1387), + [anon_sym_default] = ACTIONS(1421), + [anon_sym_throw] = ACTIONS(1473), + [anon_sym_when] = ACTIONS(1387), + [anon_sym_await] = ACTIONS(1475), + [anon_sym_DOT_DOT] = ACTIONS(1477), + [anon_sym_from] = ACTIONS(1429), + [anon_sym_into] = ACTIONS(1387), + [anon_sym_join] = ACTIONS(1387), + [anon_sym_on] = ACTIONS(1387), + [anon_sym_equals] = ACTIONS(1387), + [anon_sym_let] = ACTIONS(1387), + [anon_sym_orderby] = ACTIONS(1387), + [anon_sym_ascending] = ACTIONS(1387), + [anon_sym_descending] = ACTIONS(1387), + [anon_sym_group] = ACTIONS(1387), + [anon_sym_by] = ACTIONS(1387), + [anon_sym_select] = ACTIONS(1387), + [anon_sym_stackalloc] = ACTIONS(1431), + [anon_sym_sizeof] = ACTIONS(1433), + [anon_sym_typeof] = ACTIONS(1435), + [anon_sym___makeref] = ACTIONS(1437), + [anon_sym___reftype] = ACTIONS(1439), + [anon_sym___refvalue] = ACTIONS(1441), + [sym_null_literal] = ACTIONS(1443), + [anon_sym_SQUOTE] = ACTIONS(1445), + [sym_integer_literal] = ACTIONS(1443), + [sym_real_literal] = ACTIONS(1447), + [anon_sym_DQUOTE] = ACTIONS(1449), + [sym_verbatim_string_literal] = ACTIONS(1447), + [aux_sym_preproc_if_token1] = ACTIONS(1451), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + [sym_interpolation_regular_start] = ACTIONS(1453), + [sym_interpolation_verbatim_start] = ACTIONS(1455), + [sym_interpolation_raw_start] = ACTIONS(1457), + [sym_raw_string_start] = ACTIONS(1459), + }, + [1669] = { + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(3182), + [sym__name] = STATE(5882), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2306), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2262), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(4434), + [sym_non_lvalue_expression] = STATE(4580), + [sym_lvalue_expression] = STATE(3312), + [sym__expression_statement_expression] = STATE(4573), + [sym_assignment_expression] = STATE(4581), + [sym_binary_expression] = STATE(4573), + [sym_postfix_unary_expression] = STATE(4581), + [sym_prefix_unary_expression] = STATE(4581), + [sym__pointer_indirection_expression] = STATE(3144), + [sym_query_expression] = STATE(4573), + [sym_from_clause] = STATE(6160), + [sym_conditional_expression] = STATE(4573), + [sym_conditional_access_expression] = STATE(4573), + [sym_as_expression] = STATE(4573), + [sym_is_expression] = STATE(4573), + [sym_is_pattern_expression] = STATE(4573), + [sym_cast_expression] = STATE(4573), + [sym_checked_expression] = STATE(4573), + [sym_invocation_expression] = STATE(4581), + [sym_switch_expression] = STATE(4573), + [sym_await_expression] = STATE(4581), + [sym_throw_expression] = STATE(4573), + [sym_element_access_expression] = STATE(3144), + [sym_interpolated_string_expression] = STATE(4573), + [sym_member_access_expression] = STATE(3144), + [sym_object_creation_expression] = STATE(4581), + [sym_parenthesized_expression] = STATE(4581), + [sym__parenthesized_lvalue_expression] = STATE(3144), + [sym_lambda_expression] = STATE(4573), + [sym__lambda_expression_init] = STATE(7399), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(4573), + [sym_anonymous_method_expression] = STATE(4573), + [sym_anonymous_object_creation_expression] = STATE(4573), + [sym_implicit_array_creation_expression] = STATE(4573), + [sym_implicit_object_creation_expression] = STATE(4573), + [sym_implicit_stackalloc_expression] = STATE(4573), + [sym_initializer_expression] = STATE(4573), + [sym_default_expression] = STATE(4573), + [sym_with_expression] = STATE(4573), + [sym_sizeof_expression] = STATE(4573), + [sym_typeof_expression] = STATE(4573), + [sym_makeref_expression] = STATE(4573), + [sym_ref_expression] = STATE(4573), + [sym_reftype_expression] = STATE(4573), + [sym_refvalue_expression] = STATE(4573), + [sym_stackalloc_expression] = STATE(4573), + [sym_range_expression] = STATE(4573), + [sym_tuple_expression] = STATE(3144), + [sym_literal] = STATE(4573), + [sym_character_literal] = STATE(4575), + [sym_string_literal] = STATE(4575), + [sym_raw_string_literal] = STATE(4575), + [sym_boolean_literal] = STATE(4575), + [sym_identifier] = STATE(2237), + [sym__reserved_identifier] = STATE(2229), + [sym_preproc_if_in_expression] = STATE(4573), + [sym_preproc_if_in_attribute_list] = STATE(5583), + [sym_preproc_region] = STATE(1669), + [sym_preproc_endregion] = STATE(1669), + [sym_preproc_line] = STATE(1669), + [sym_preproc_pragma] = STATE(1669), + [sym_preproc_nullable] = STATE(1669), + [sym_preproc_error] = STATE(1669), + [sym_preproc_warning] = STATE(1669), + [sym_preproc_define] = STATE(1669), + [sym_preproc_undef] = STATE(1669), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3501), + [sym__identifier_token] = ACTIONS(1385), + [anon_sym_alias] = ACTIONS(1387), + [anon_sym_global] = ACTIONS(1387), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1389), + [anon_sym_LPAREN] = ACTIONS(1461), + [anon_sym_ref] = ACTIONS(1463), + [anon_sym_LBRACE] = ACTIONS(1395), + [anon_sym_delegate] = ACTIONS(1397), + [anon_sym_async] = ACTIONS(1045), + [anon_sym_file] = ACTIONS(1387), + [anon_sym_new] = ACTIONS(1465), + [anon_sym_where] = ACTIONS(1387), + [anon_sym_notnull] = ACTIONS(1387), + [anon_sym_unmanaged] = ACTIONS(1387), + [anon_sym_checked] = ACTIONS(1401), + [anon_sym_BANG] = ACTIONS(1469), + [anon_sym_TILDE] = ACTIONS(1469), + [anon_sym_PLUS_PLUS] = ACTIONS(1469), + [anon_sym_DASH_DASH] = ACTIONS(1469), + [anon_sym_true] = ACTIONS(1407), + [anon_sym_false] = ACTIONS(1407), + [anon_sym_PLUS] = ACTIONS(1467), + [anon_sym_DASH] = ACTIONS(1467), + [anon_sym_STAR] = ACTIONS(1471), + [anon_sym_CARET] = ACTIONS(1469), + [anon_sym_AMP] = ACTIONS(1469), + [anon_sym_this] = ACTIONS(1411), + [anon_sym_scoped] = ACTIONS(1413), + [anon_sym_base] = ACTIONS(1415), + [anon_sym_var] = ACTIONS(1417), + [sym_predefined_type] = ACTIONS(1419), + [anon_sym_unchecked] = ACTIONS(1401), + [anon_sym_yield] = ACTIONS(1387), + [anon_sym_default] = ACTIONS(1421), + [anon_sym_throw] = ACTIONS(1473), + [anon_sym_when] = ACTIONS(1387), + [anon_sym_await] = ACTIONS(1475), + [anon_sym_DOT_DOT] = ACTIONS(1477), + [anon_sym_from] = ACTIONS(1429), + [anon_sym_into] = ACTIONS(1387), + [anon_sym_join] = ACTIONS(1387), + [anon_sym_on] = ACTIONS(1387), + [anon_sym_equals] = ACTIONS(1387), + [anon_sym_let] = ACTIONS(1387), + [anon_sym_orderby] = ACTIONS(1387), + [anon_sym_ascending] = ACTIONS(1387), + [anon_sym_descending] = ACTIONS(1387), + [anon_sym_group] = ACTIONS(1387), + [anon_sym_by] = ACTIONS(1387), + [anon_sym_select] = ACTIONS(1387), + [anon_sym_stackalloc] = ACTIONS(1431), + [anon_sym_sizeof] = ACTIONS(1433), + [anon_sym_typeof] = ACTIONS(1435), + [anon_sym___makeref] = ACTIONS(1437), + [anon_sym___reftype] = ACTIONS(1439), + [anon_sym___refvalue] = ACTIONS(1441), + [sym_null_literal] = ACTIONS(1443), + [anon_sym_SQUOTE] = ACTIONS(1445), + [sym_integer_literal] = ACTIONS(1443), + [sym_real_literal] = ACTIONS(1447), + [anon_sym_DQUOTE] = ACTIONS(1449), + [sym_verbatim_string_literal] = ACTIONS(1447), + [aux_sym_preproc_if_token1] = ACTIONS(1451), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + [sym_interpolation_regular_start] = ACTIONS(1453), + [sym_interpolation_verbatim_start] = ACTIONS(1455), + [sym_interpolation_raw_start] = ACTIONS(1457), + [sym_raw_string_start] = ACTIONS(1459), + }, + [1670] = { + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(3182), + [sym__name] = STATE(5882), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2306), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2262), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(4359), + [sym_non_lvalue_expression] = STATE(4580), + [sym_lvalue_expression] = STATE(3312), + [sym__expression_statement_expression] = STATE(4573), + [sym_assignment_expression] = STATE(4581), + [sym_binary_expression] = STATE(4573), + [sym_postfix_unary_expression] = STATE(4581), + [sym_prefix_unary_expression] = STATE(4581), + [sym__pointer_indirection_expression] = STATE(3144), + [sym_query_expression] = STATE(4573), + [sym_from_clause] = STATE(6160), + [sym_conditional_expression] = STATE(4573), + [sym_conditional_access_expression] = STATE(4573), + [sym_as_expression] = STATE(4573), + [sym_is_expression] = STATE(4573), + [sym_is_pattern_expression] = STATE(4573), + [sym_cast_expression] = STATE(4573), + [sym_checked_expression] = STATE(4573), + [sym_invocation_expression] = STATE(4581), + [sym_switch_expression] = STATE(4573), + [sym_await_expression] = STATE(4581), + [sym_throw_expression] = STATE(4573), + [sym_element_access_expression] = STATE(3144), + [sym_interpolated_string_expression] = STATE(4573), + [sym_member_access_expression] = STATE(3144), + [sym_object_creation_expression] = STATE(4581), + [sym_parenthesized_expression] = STATE(4581), + [sym__parenthesized_lvalue_expression] = STATE(3144), + [sym_lambda_expression] = STATE(4573), + [sym__lambda_expression_init] = STATE(7399), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(4573), + [sym_anonymous_method_expression] = STATE(4573), + [sym_anonymous_object_creation_expression] = STATE(4573), + [sym_implicit_array_creation_expression] = STATE(4573), + [sym_implicit_object_creation_expression] = STATE(4573), + [sym_implicit_stackalloc_expression] = STATE(4573), + [sym_initializer_expression] = STATE(4573), + [sym_default_expression] = STATE(4573), + [sym_with_expression] = STATE(4573), + [sym_sizeof_expression] = STATE(4573), + [sym_typeof_expression] = STATE(4573), + [sym_makeref_expression] = STATE(4573), + [sym_ref_expression] = STATE(4573), + [sym_reftype_expression] = STATE(4573), + [sym_refvalue_expression] = STATE(4573), + [sym_stackalloc_expression] = STATE(4573), + [sym_range_expression] = STATE(4573), + [sym_tuple_expression] = STATE(3144), + [sym_literal] = STATE(4573), + [sym_character_literal] = STATE(4575), + [sym_string_literal] = STATE(4575), + [sym_raw_string_literal] = STATE(4575), + [sym_boolean_literal] = STATE(4575), + [sym_identifier] = STATE(2237), + [sym__reserved_identifier] = STATE(2229), + [sym_preproc_if_in_expression] = STATE(4573), + [sym_preproc_if_in_attribute_list] = STATE(5583), + [sym_preproc_region] = STATE(1670), + [sym_preproc_endregion] = STATE(1670), + [sym_preproc_line] = STATE(1670), + [sym_preproc_pragma] = STATE(1670), + [sym_preproc_nullable] = STATE(1670), + [sym_preproc_error] = STATE(1670), + [sym_preproc_warning] = STATE(1670), + [sym_preproc_define] = STATE(1670), + [sym_preproc_undef] = STATE(1670), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3501), + [sym__identifier_token] = ACTIONS(1385), + [anon_sym_alias] = ACTIONS(1387), + [anon_sym_global] = ACTIONS(1387), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1389), + [anon_sym_LPAREN] = ACTIONS(1461), + [anon_sym_ref] = ACTIONS(1463), + [anon_sym_LBRACE] = ACTIONS(1395), + [anon_sym_delegate] = ACTIONS(1397), + [anon_sym_async] = ACTIONS(1045), + [anon_sym_file] = ACTIONS(1387), + [anon_sym_new] = ACTIONS(1465), + [anon_sym_where] = ACTIONS(1387), + [anon_sym_notnull] = ACTIONS(1387), + [anon_sym_unmanaged] = ACTIONS(1387), + [anon_sym_checked] = ACTIONS(1401), + [anon_sym_BANG] = ACTIONS(1469), + [anon_sym_TILDE] = ACTIONS(1469), + [anon_sym_PLUS_PLUS] = ACTIONS(1469), + [anon_sym_DASH_DASH] = ACTIONS(1469), + [anon_sym_true] = ACTIONS(1407), + [anon_sym_false] = ACTIONS(1407), + [anon_sym_PLUS] = ACTIONS(1467), + [anon_sym_DASH] = ACTIONS(1467), + [anon_sym_STAR] = ACTIONS(1471), + [anon_sym_CARET] = ACTIONS(1469), + [anon_sym_AMP] = ACTIONS(1469), + [anon_sym_this] = ACTIONS(1411), + [anon_sym_scoped] = ACTIONS(1413), + [anon_sym_base] = ACTIONS(1415), + [anon_sym_var] = ACTIONS(1417), + [sym_predefined_type] = ACTIONS(1419), + [anon_sym_unchecked] = ACTIONS(1401), + [anon_sym_yield] = ACTIONS(1387), + [anon_sym_default] = ACTIONS(1421), + [anon_sym_throw] = ACTIONS(1473), + [anon_sym_when] = ACTIONS(1387), + [anon_sym_await] = ACTIONS(1475), + [anon_sym_DOT_DOT] = ACTIONS(1477), + [anon_sym_from] = ACTIONS(1429), + [anon_sym_into] = ACTIONS(1387), + [anon_sym_join] = ACTIONS(1387), + [anon_sym_on] = ACTIONS(1387), + [anon_sym_equals] = ACTIONS(1387), + [anon_sym_let] = ACTIONS(1387), + [anon_sym_orderby] = ACTIONS(1387), + [anon_sym_ascending] = ACTIONS(1387), + [anon_sym_descending] = ACTIONS(1387), + [anon_sym_group] = ACTIONS(1387), + [anon_sym_by] = ACTIONS(1387), + [anon_sym_select] = ACTIONS(1387), + [anon_sym_stackalloc] = ACTIONS(1431), + [anon_sym_sizeof] = ACTIONS(1433), + [anon_sym_typeof] = ACTIONS(1435), + [anon_sym___makeref] = ACTIONS(1437), + [anon_sym___reftype] = ACTIONS(1439), + [anon_sym___refvalue] = ACTIONS(1441), + [sym_null_literal] = ACTIONS(1443), + [anon_sym_SQUOTE] = ACTIONS(1445), + [sym_integer_literal] = ACTIONS(1443), + [sym_real_literal] = ACTIONS(1447), + [anon_sym_DQUOTE] = ACTIONS(1449), + [sym_verbatim_string_literal] = ACTIONS(1447), + [aux_sym_preproc_if_token1] = ACTIONS(1451), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + [sym_interpolation_regular_start] = ACTIONS(1453), + [sym_interpolation_verbatim_start] = ACTIONS(1455), + [sym_interpolation_raw_start] = ACTIONS(1457), + [sym_raw_string_start] = ACTIONS(1459), + }, + [1671] = { + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(3182), + [sym__name] = STATE(5882), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2306), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2262), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(4414), + [sym_non_lvalue_expression] = STATE(4580), + [sym_lvalue_expression] = STATE(3312), + [sym__expression_statement_expression] = STATE(4573), + [sym_assignment_expression] = STATE(4581), + [sym_binary_expression] = STATE(4573), + [sym_postfix_unary_expression] = STATE(4581), + [sym_prefix_unary_expression] = STATE(4581), + [sym__pointer_indirection_expression] = STATE(3144), + [sym_query_expression] = STATE(4573), + [sym_from_clause] = STATE(6160), + [sym_conditional_expression] = STATE(4573), + [sym_conditional_access_expression] = STATE(4573), + [sym_as_expression] = STATE(4573), + [sym_is_expression] = STATE(4573), + [sym_is_pattern_expression] = STATE(4573), + [sym_cast_expression] = STATE(4573), + [sym_checked_expression] = STATE(4573), + [sym_invocation_expression] = STATE(4581), + [sym_switch_expression] = STATE(4573), + [sym_await_expression] = STATE(4581), + [sym_throw_expression] = STATE(4573), + [sym_element_access_expression] = STATE(3144), + [sym_interpolated_string_expression] = STATE(4573), + [sym_member_access_expression] = STATE(3144), + [sym_object_creation_expression] = STATE(4581), + [sym_parenthesized_expression] = STATE(4581), + [sym__parenthesized_lvalue_expression] = STATE(3144), + [sym_lambda_expression] = STATE(4573), + [sym__lambda_expression_init] = STATE(7399), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(4573), + [sym_anonymous_method_expression] = STATE(4573), + [sym_anonymous_object_creation_expression] = STATE(4573), + [sym_implicit_array_creation_expression] = STATE(4573), + [sym_implicit_object_creation_expression] = STATE(4573), + [sym_implicit_stackalloc_expression] = STATE(4573), + [sym_initializer_expression] = STATE(4573), + [sym_default_expression] = STATE(4573), + [sym_with_expression] = STATE(4573), + [sym_sizeof_expression] = STATE(4573), + [sym_typeof_expression] = STATE(4573), + [sym_makeref_expression] = STATE(4573), + [sym_ref_expression] = STATE(4573), + [sym_reftype_expression] = STATE(4573), + [sym_refvalue_expression] = STATE(4573), + [sym_stackalloc_expression] = STATE(4573), + [sym_range_expression] = STATE(4573), + [sym_tuple_expression] = STATE(3144), + [sym_literal] = STATE(4573), + [sym_character_literal] = STATE(4575), + [sym_string_literal] = STATE(4575), + [sym_raw_string_literal] = STATE(4575), + [sym_boolean_literal] = STATE(4575), + [sym_identifier] = STATE(2237), + [sym__reserved_identifier] = STATE(2229), + [sym_preproc_if_in_expression] = STATE(4573), + [sym_preproc_if_in_attribute_list] = STATE(5583), + [sym_preproc_region] = STATE(1671), + [sym_preproc_endregion] = STATE(1671), + [sym_preproc_line] = STATE(1671), + [sym_preproc_pragma] = STATE(1671), + [sym_preproc_nullable] = STATE(1671), + [sym_preproc_error] = STATE(1671), + [sym_preproc_warning] = STATE(1671), + [sym_preproc_define] = STATE(1671), + [sym_preproc_undef] = STATE(1671), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3501), + [sym__identifier_token] = ACTIONS(1385), + [anon_sym_alias] = ACTIONS(1387), + [anon_sym_global] = ACTIONS(1387), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1389), + [anon_sym_LPAREN] = ACTIONS(1461), + [anon_sym_ref] = ACTIONS(1463), + [anon_sym_LBRACE] = ACTIONS(1395), + [anon_sym_delegate] = ACTIONS(1397), + [anon_sym_async] = ACTIONS(1045), + [anon_sym_file] = ACTIONS(1387), + [anon_sym_new] = ACTIONS(1465), + [anon_sym_where] = ACTIONS(1387), + [anon_sym_notnull] = ACTIONS(1387), + [anon_sym_unmanaged] = ACTIONS(1387), + [anon_sym_checked] = ACTIONS(1401), + [anon_sym_BANG] = ACTIONS(1469), + [anon_sym_TILDE] = ACTIONS(1469), + [anon_sym_PLUS_PLUS] = ACTIONS(1469), + [anon_sym_DASH_DASH] = ACTIONS(1469), + [anon_sym_true] = ACTIONS(1407), + [anon_sym_false] = ACTIONS(1407), + [anon_sym_PLUS] = ACTIONS(1467), + [anon_sym_DASH] = ACTIONS(1467), + [anon_sym_STAR] = ACTIONS(1471), + [anon_sym_CARET] = ACTIONS(1469), + [anon_sym_AMP] = ACTIONS(1469), + [anon_sym_this] = ACTIONS(1411), + [anon_sym_scoped] = ACTIONS(1413), + [anon_sym_base] = ACTIONS(1415), + [anon_sym_var] = ACTIONS(1417), + [sym_predefined_type] = ACTIONS(1419), + [anon_sym_unchecked] = ACTIONS(1401), + [anon_sym_yield] = ACTIONS(1387), + [anon_sym_default] = ACTIONS(1421), + [anon_sym_throw] = ACTIONS(1473), + [anon_sym_when] = ACTIONS(1387), + [anon_sym_await] = ACTIONS(1475), + [anon_sym_DOT_DOT] = ACTIONS(1477), + [anon_sym_from] = ACTIONS(1429), + [anon_sym_into] = ACTIONS(1387), + [anon_sym_join] = ACTIONS(1387), + [anon_sym_on] = ACTIONS(1387), + [anon_sym_equals] = ACTIONS(1387), + [anon_sym_let] = ACTIONS(1387), + [anon_sym_orderby] = ACTIONS(1387), + [anon_sym_ascending] = ACTIONS(1387), + [anon_sym_descending] = ACTIONS(1387), + [anon_sym_group] = ACTIONS(1387), + [anon_sym_by] = ACTIONS(1387), + [anon_sym_select] = ACTIONS(1387), + [anon_sym_stackalloc] = ACTIONS(1431), + [anon_sym_sizeof] = ACTIONS(1433), + [anon_sym_typeof] = ACTIONS(1435), + [anon_sym___makeref] = ACTIONS(1437), + [anon_sym___reftype] = ACTIONS(1439), + [anon_sym___refvalue] = ACTIONS(1441), + [sym_null_literal] = ACTIONS(1443), + [anon_sym_SQUOTE] = ACTIONS(1445), + [sym_integer_literal] = ACTIONS(1443), + [sym_real_literal] = ACTIONS(1447), + [anon_sym_DQUOTE] = ACTIONS(1449), + [sym_verbatim_string_literal] = ACTIONS(1447), + [aux_sym_preproc_if_token1] = ACTIONS(1451), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + [sym_interpolation_regular_start] = ACTIONS(1453), + [sym_interpolation_verbatim_start] = ACTIONS(1455), + [sym_interpolation_raw_start] = ACTIONS(1457), + [sym_raw_string_start] = ACTIONS(1459), + }, + [1672] = { + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(3182), + [sym__name] = STATE(5882), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2306), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2262), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(4396), + [sym_non_lvalue_expression] = STATE(4580), + [sym_lvalue_expression] = STATE(3312), + [sym__expression_statement_expression] = STATE(4573), + [sym_assignment_expression] = STATE(4581), + [sym_binary_expression] = STATE(4573), + [sym_postfix_unary_expression] = STATE(4581), + [sym_prefix_unary_expression] = STATE(4581), + [sym__pointer_indirection_expression] = STATE(3144), + [sym_query_expression] = STATE(4573), + [sym_from_clause] = STATE(6160), + [sym_conditional_expression] = STATE(4573), + [sym_conditional_access_expression] = STATE(4573), + [sym_as_expression] = STATE(4573), + [sym_is_expression] = STATE(4573), + [sym_is_pattern_expression] = STATE(4573), + [sym_cast_expression] = STATE(4573), + [sym_checked_expression] = STATE(4573), + [sym_invocation_expression] = STATE(4581), + [sym_switch_expression] = STATE(4573), + [sym_await_expression] = STATE(4581), + [sym_throw_expression] = STATE(4573), + [sym_element_access_expression] = STATE(3144), + [sym_interpolated_string_expression] = STATE(4573), + [sym_member_access_expression] = STATE(3144), + [sym_object_creation_expression] = STATE(4581), + [sym_parenthesized_expression] = STATE(4581), + [sym__parenthesized_lvalue_expression] = STATE(3144), + [sym_lambda_expression] = STATE(4573), + [sym__lambda_expression_init] = STATE(7399), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(4573), + [sym_anonymous_method_expression] = STATE(4573), + [sym_anonymous_object_creation_expression] = STATE(4573), + [sym_implicit_array_creation_expression] = STATE(4573), + [sym_implicit_object_creation_expression] = STATE(4573), + [sym_implicit_stackalloc_expression] = STATE(4573), + [sym_initializer_expression] = STATE(4573), + [sym_default_expression] = STATE(4573), + [sym_with_expression] = STATE(4573), + [sym_sizeof_expression] = STATE(4573), + [sym_typeof_expression] = STATE(4573), + [sym_makeref_expression] = STATE(4573), + [sym_ref_expression] = STATE(4573), + [sym_reftype_expression] = STATE(4573), + [sym_refvalue_expression] = STATE(4573), + [sym_stackalloc_expression] = STATE(4573), + [sym_range_expression] = STATE(4573), + [sym_tuple_expression] = STATE(3144), + [sym_literal] = STATE(4573), + [sym_character_literal] = STATE(4575), + [sym_string_literal] = STATE(4575), + [sym_raw_string_literal] = STATE(4575), + [sym_boolean_literal] = STATE(4575), + [sym_identifier] = STATE(2237), + [sym__reserved_identifier] = STATE(2229), + [sym_preproc_if_in_expression] = STATE(4573), + [sym_preproc_if_in_attribute_list] = STATE(5583), + [sym_preproc_region] = STATE(1672), + [sym_preproc_endregion] = STATE(1672), + [sym_preproc_line] = STATE(1672), + [sym_preproc_pragma] = STATE(1672), + [sym_preproc_nullable] = STATE(1672), + [sym_preproc_error] = STATE(1672), + [sym_preproc_warning] = STATE(1672), + [sym_preproc_define] = STATE(1672), + [sym_preproc_undef] = STATE(1672), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3501), + [sym__identifier_token] = ACTIONS(1385), + [anon_sym_alias] = ACTIONS(1387), + [anon_sym_global] = ACTIONS(1387), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1389), + [anon_sym_LPAREN] = ACTIONS(1461), + [anon_sym_ref] = ACTIONS(1463), + [anon_sym_LBRACE] = ACTIONS(1395), + [anon_sym_delegate] = ACTIONS(1397), + [anon_sym_async] = ACTIONS(1045), + [anon_sym_file] = ACTIONS(1387), + [anon_sym_new] = ACTIONS(1465), + [anon_sym_where] = ACTIONS(1387), + [anon_sym_notnull] = ACTIONS(1387), + [anon_sym_unmanaged] = ACTIONS(1387), + [anon_sym_checked] = ACTIONS(1401), + [anon_sym_BANG] = ACTIONS(1469), + [anon_sym_TILDE] = ACTIONS(1469), + [anon_sym_PLUS_PLUS] = ACTIONS(1469), + [anon_sym_DASH_DASH] = ACTIONS(1469), + [anon_sym_true] = ACTIONS(1407), + [anon_sym_false] = ACTIONS(1407), + [anon_sym_PLUS] = ACTIONS(1467), + [anon_sym_DASH] = ACTIONS(1467), + [anon_sym_STAR] = ACTIONS(1471), + [anon_sym_CARET] = ACTIONS(1469), + [anon_sym_AMP] = ACTIONS(1469), + [anon_sym_this] = ACTIONS(1411), + [anon_sym_scoped] = ACTIONS(1413), + [anon_sym_base] = ACTIONS(1415), + [anon_sym_var] = ACTIONS(1417), + [sym_predefined_type] = ACTIONS(1419), + [anon_sym_unchecked] = ACTIONS(1401), + [anon_sym_yield] = ACTIONS(1387), + [anon_sym_default] = ACTIONS(1421), + [anon_sym_throw] = ACTIONS(1473), + [anon_sym_when] = ACTIONS(1387), + [anon_sym_await] = ACTIONS(1475), + [anon_sym_DOT_DOT] = ACTIONS(1477), + [anon_sym_from] = ACTIONS(1429), + [anon_sym_into] = ACTIONS(1387), + [anon_sym_join] = ACTIONS(1387), + [anon_sym_on] = ACTIONS(1387), + [anon_sym_equals] = ACTIONS(1387), + [anon_sym_let] = ACTIONS(1387), + [anon_sym_orderby] = ACTIONS(1387), + [anon_sym_ascending] = ACTIONS(1387), + [anon_sym_descending] = ACTIONS(1387), + [anon_sym_group] = ACTIONS(1387), + [anon_sym_by] = ACTIONS(1387), + [anon_sym_select] = ACTIONS(1387), + [anon_sym_stackalloc] = ACTIONS(1431), + [anon_sym_sizeof] = ACTIONS(1433), + [anon_sym_typeof] = ACTIONS(1435), + [anon_sym___makeref] = ACTIONS(1437), + [anon_sym___reftype] = ACTIONS(1439), + [anon_sym___refvalue] = ACTIONS(1441), + [sym_null_literal] = ACTIONS(1443), + [anon_sym_SQUOTE] = ACTIONS(1445), + [sym_integer_literal] = ACTIONS(1443), + [sym_real_literal] = ACTIONS(1447), + [anon_sym_DQUOTE] = ACTIONS(1449), + [sym_verbatim_string_literal] = ACTIONS(1447), + [aux_sym_preproc_if_token1] = ACTIONS(1451), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + [sym_interpolation_regular_start] = ACTIONS(1453), + [sym_interpolation_verbatim_start] = ACTIONS(1455), + [sym_interpolation_raw_start] = ACTIONS(1457), + [sym_raw_string_start] = ACTIONS(1459), + }, + [1673] = { + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(3182), + [sym__name] = STATE(5882), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2306), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2262), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(4393), + [sym_non_lvalue_expression] = STATE(4580), + [sym_lvalue_expression] = STATE(3312), + [sym__expression_statement_expression] = STATE(4573), + [sym_assignment_expression] = STATE(4581), + [sym_binary_expression] = STATE(4573), + [sym_postfix_unary_expression] = STATE(4581), + [sym_prefix_unary_expression] = STATE(4581), + [sym__pointer_indirection_expression] = STATE(3144), + [sym_query_expression] = STATE(4573), + [sym_from_clause] = STATE(6160), + [sym_conditional_expression] = STATE(4573), + [sym_conditional_access_expression] = STATE(4573), + [sym_as_expression] = STATE(4573), + [sym_is_expression] = STATE(4573), + [sym_is_pattern_expression] = STATE(4573), + [sym_cast_expression] = STATE(4573), + [sym_checked_expression] = STATE(4573), + [sym_invocation_expression] = STATE(4581), + [sym_switch_expression] = STATE(4573), + [sym_await_expression] = STATE(4581), + [sym_throw_expression] = STATE(4573), + [sym_element_access_expression] = STATE(3144), + [sym_interpolated_string_expression] = STATE(4573), + [sym_member_access_expression] = STATE(3144), + [sym_object_creation_expression] = STATE(4581), + [sym_parenthesized_expression] = STATE(4581), + [sym__parenthesized_lvalue_expression] = STATE(3144), + [sym_lambda_expression] = STATE(4573), + [sym__lambda_expression_init] = STATE(7399), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(4573), + [sym_anonymous_method_expression] = STATE(4573), + [sym_anonymous_object_creation_expression] = STATE(4573), + [sym_implicit_array_creation_expression] = STATE(4573), + [sym_implicit_object_creation_expression] = STATE(4573), + [sym_implicit_stackalloc_expression] = STATE(4573), + [sym_initializer_expression] = STATE(4573), + [sym_default_expression] = STATE(4573), + [sym_with_expression] = STATE(4573), + [sym_sizeof_expression] = STATE(4573), + [sym_typeof_expression] = STATE(4573), + [sym_makeref_expression] = STATE(4573), + [sym_ref_expression] = STATE(4573), + [sym_reftype_expression] = STATE(4573), + [sym_refvalue_expression] = STATE(4573), + [sym_stackalloc_expression] = STATE(4573), + [sym_range_expression] = STATE(4573), + [sym_tuple_expression] = STATE(3144), + [sym_literal] = STATE(4573), + [sym_character_literal] = STATE(4575), + [sym_string_literal] = STATE(4575), + [sym_raw_string_literal] = STATE(4575), + [sym_boolean_literal] = STATE(4575), + [sym_identifier] = STATE(2237), + [sym__reserved_identifier] = STATE(2229), + [sym_preproc_if_in_expression] = STATE(4573), + [sym_preproc_if_in_attribute_list] = STATE(5583), + [sym_preproc_region] = STATE(1673), + [sym_preproc_endregion] = STATE(1673), + [sym_preproc_line] = STATE(1673), + [sym_preproc_pragma] = STATE(1673), + [sym_preproc_nullable] = STATE(1673), + [sym_preproc_error] = STATE(1673), + [sym_preproc_warning] = STATE(1673), + [sym_preproc_define] = STATE(1673), + [sym_preproc_undef] = STATE(1673), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3501), + [sym__identifier_token] = ACTIONS(1385), + [anon_sym_alias] = ACTIONS(1387), + [anon_sym_global] = ACTIONS(1387), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1389), + [anon_sym_LPAREN] = ACTIONS(1461), + [anon_sym_ref] = ACTIONS(1463), + [anon_sym_LBRACE] = ACTIONS(1395), + [anon_sym_delegate] = ACTIONS(1397), + [anon_sym_async] = ACTIONS(1045), + [anon_sym_file] = ACTIONS(1387), + [anon_sym_new] = ACTIONS(1465), + [anon_sym_where] = ACTIONS(1387), + [anon_sym_notnull] = ACTIONS(1387), + [anon_sym_unmanaged] = ACTIONS(1387), + [anon_sym_checked] = ACTIONS(1401), + [anon_sym_BANG] = ACTIONS(1469), + [anon_sym_TILDE] = ACTIONS(1469), + [anon_sym_PLUS_PLUS] = ACTIONS(1469), + [anon_sym_DASH_DASH] = ACTIONS(1469), + [anon_sym_true] = ACTIONS(1407), + [anon_sym_false] = ACTIONS(1407), + [anon_sym_PLUS] = ACTIONS(1467), + [anon_sym_DASH] = ACTIONS(1467), + [anon_sym_STAR] = ACTIONS(1471), + [anon_sym_CARET] = ACTIONS(1469), + [anon_sym_AMP] = ACTIONS(1469), + [anon_sym_this] = ACTIONS(1411), + [anon_sym_scoped] = ACTIONS(1413), + [anon_sym_base] = ACTIONS(1415), + [anon_sym_var] = ACTIONS(1417), + [sym_predefined_type] = ACTIONS(1419), + [anon_sym_unchecked] = ACTIONS(1401), + [anon_sym_yield] = ACTIONS(1387), + [anon_sym_default] = ACTIONS(1421), + [anon_sym_throw] = ACTIONS(1473), + [anon_sym_when] = ACTIONS(1387), + [anon_sym_await] = ACTIONS(1475), + [anon_sym_DOT_DOT] = ACTIONS(1477), + [anon_sym_from] = ACTIONS(1429), + [anon_sym_into] = ACTIONS(1387), + [anon_sym_join] = ACTIONS(1387), + [anon_sym_on] = ACTIONS(1387), + [anon_sym_equals] = ACTIONS(1387), + [anon_sym_let] = ACTIONS(1387), + [anon_sym_orderby] = ACTIONS(1387), + [anon_sym_ascending] = ACTIONS(1387), + [anon_sym_descending] = ACTIONS(1387), + [anon_sym_group] = ACTIONS(1387), + [anon_sym_by] = ACTIONS(1387), + [anon_sym_select] = ACTIONS(1387), + [anon_sym_stackalloc] = ACTIONS(1431), + [anon_sym_sizeof] = ACTIONS(1433), + [anon_sym_typeof] = ACTIONS(1435), + [anon_sym___makeref] = ACTIONS(1437), + [anon_sym___reftype] = ACTIONS(1439), + [anon_sym___refvalue] = ACTIONS(1441), + [sym_null_literal] = ACTIONS(1443), + [anon_sym_SQUOTE] = ACTIONS(1445), + [sym_integer_literal] = ACTIONS(1443), + [sym_real_literal] = ACTIONS(1447), + [anon_sym_DQUOTE] = ACTIONS(1449), + [sym_verbatim_string_literal] = ACTIONS(1447), + [aux_sym_preproc_if_token1] = ACTIONS(1451), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + [sym_interpolation_regular_start] = ACTIONS(1453), + [sym_interpolation_verbatim_start] = ACTIONS(1455), + [sym_interpolation_raw_start] = ACTIONS(1457), + [sym_raw_string_start] = ACTIONS(1459), + }, + [1674] = { + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(3182), + [sym__name] = STATE(5882), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2306), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2262), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(5086), + [sym_non_lvalue_expression] = STATE(4580), + [sym_lvalue_expression] = STATE(3534), + [sym__expression_statement_expression] = STATE(4573), + [sym_assignment_expression] = STATE(4581), + [sym_binary_expression] = STATE(4573), + [sym_postfix_unary_expression] = STATE(4581), + [sym_prefix_unary_expression] = STATE(4581), + [sym__pointer_indirection_expression] = STATE(3144), + [sym_query_expression] = STATE(4573), + [sym_from_clause] = STATE(6133), + [sym_conditional_expression] = STATE(4573), + [sym_conditional_access_expression] = STATE(4573), + [sym_as_expression] = STATE(4573), + [sym_is_expression] = STATE(4573), + [sym_is_pattern_expression] = STATE(4573), + [sym_cast_expression] = STATE(4573), + [sym_checked_expression] = STATE(4573), + [sym_invocation_expression] = STATE(4581), + [sym_switch_expression] = STATE(4573), + [sym_await_expression] = STATE(4581), + [sym_throw_expression] = STATE(4573), + [sym_element_access_expression] = STATE(3144), + [sym_interpolated_string_expression] = STATE(4573), + [sym_member_access_expression] = STATE(3144), + [sym_object_creation_expression] = STATE(4581), + [sym_parenthesized_expression] = STATE(4581), + [sym__parenthesized_lvalue_expression] = STATE(3144), + [sym_lambda_expression] = STATE(4573), + [sym__lambda_expression_init] = STATE(7592), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(4573), + [sym_anonymous_method_expression] = STATE(4573), + [sym_anonymous_object_creation_expression] = STATE(4573), + [sym_implicit_array_creation_expression] = STATE(4573), + [sym_implicit_object_creation_expression] = STATE(4573), + [sym_implicit_stackalloc_expression] = STATE(4573), + [sym_initializer_expression] = STATE(4573), + [sym_default_expression] = STATE(4573), + [sym_with_expression] = STATE(4573), + [sym_sizeof_expression] = STATE(4573), + [sym_typeof_expression] = STATE(4573), + [sym_makeref_expression] = STATE(4573), + [sym_ref_expression] = STATE(4573), + [sym_reftype_expression] = STATE(4573), + [sym_refvalue_expression] = STATE(4573), + [sym_stackalloc_expression] = STATE(4573), + [sym_range_expression] = STATE(4573), + [sym_tuple_expression] = STATE(3144), + [sym_literal] = STATE(4573), + [sym_character_literal] = STATE(4575), + [sym_string_literal] = STATE(4575), + [sym_raw_string_literal] = STATE(4575), + [sym_boolean_literal] = STATE(4575), + [sym_identifier] = STATE(2237), + [sym__reserved_identifier] = STATE(2229), + [sym_preproc_if_in_expression] = STATE(4573), + [sym_preproc_if_in_attribute_list] = STATE(5583), + [sym_preproc_region] = STATE(1674), + [sym_preproc_endregion] = STATE(1674), + [sym_preproc_line] = STATE(1674), + [sym_preproc_pragma] = STATE(1674), + [sym_preproc_nullable] = STATE(1674), + [sym_preproc_error] = STATE(1674), + [sym_preproc_warning] = STATE(1674), + [sym_preproc_define] = STATE(1674), + [sym_preproc_undef] = STATE(1674), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3501), + [sym__identifier_token] = ACTIONS(1385), + [anon_sym_alias] = ACTIONS(1387), + [anon_sym_global] = ACTIONS(1387), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1389), + [anon_sym_LPAREN] = ACTIONS(1773), + [anon_sym_ref] = ACTIONS(1775), + [anon_sym_LBRACE] = ACTIONS(1395), + [anon_sym_delegate] = ACTIONS(1397), + [anon_sym_async] = ACTIONS(1045), + [anon_sym_file] = ACTIONS(1387), + [anon_sym_new] = ACTIONS(1465), + [anon_sym_where] = ACTIONS(1387), + [anon_sym_notnull] = ACTIONS(1387), + [anon_sym_unmanaged] = ACTIONS(1387), + [anon_sym_checked] = ACTIONS(1401), + [anon_sym_BANG] = ACTIONS(1779), + [anon_sym_TILDE] = ACTIONS(1779), + [anon_sym_PLUS_PLUS] = ACTIONS(1779), + [anon_sym_DASH_DASH] = ACTIONS(1779), + [anon_sym_true] = ACTIONS(1407), + [anon_sym_false] = ACTIONS(1407), + [anon_sym_PLUS] = ACTIONS(1777), + [anon_sym_DASH] = ACTIONS(1777), + [anon_sym_STAR] = ACTIONS(1471), + [anon_sym_CARET] = ACTIONS(1779), + [anon_sym_AMP] = ACTIONS(1779), + [anon_sym_this] = ACTIONS(1411), + [anon_sym_scoped] = ACTIONS(1413), + [anon_sym_base] = ACTIONS(1415), + [anon_sym_var] = ACTIONS(1417), + [sym_predefined_type] = ACTIONS(1419), + [anon_sym_unchecked] = ACTIONS(1401), + [anon_sym_yield] = ACTIONS(1387), + [anon_sym_default] = ACTIONS(1421), + [anon_sym_throw] = ACTIONS(1781), + [anon_sym_when] = ACTIONS(1387), + [anon_sym_await] = ACTIONS(1783), + [anon_sym_DOT_DOT] = ACTIONS(1785), + [anon_sym_from] = ACTIONS(1429), + [anon_sym_into] = ACTIONS(1387), + [anon_sym_join] = ACTIONS(1387), + [anon_sym_on] = ACTIONS(1387), + [anon_sym_equals] = ACTIONS(1387), + [anon_sym_let] = ACTIONS(1387), + [anon_sym_orderby] = ACTIONS(1387), + [anon_sym_ascending] = ACTIONS(1387), + [anon_sym_descending] = ACTIONS(1387), + [anon_sym_group] = ACTIONS(1387), + [anon_sym_by] = ACTIONS(1387), + [anon_sym_select] = ACTIONS(1387), + [anon_sym_stackalloc] = ACTIONS(1431), + [anon_sym_sizeof] = ACTIONS(1433), + [anon_sym_typeof] = ACTIONS(1435), + [anon_sym___makeref] = ACTIONS(1437), + [anon_sym___reftype] = ACTIONS(1439), + [anon_sym___refvalue] = ACTIONS(1441), + [sym_null_literal] = ACTIONS(1443), + [anon_sym_SQUOTE] = ACTIONS(1445), + [sym_integer_literal] = ACTIONS(1443), + [sym_real_literal] = ACTIONS(1447), + [anon_sym_DQUOTE] = ACTIONS(1449), + [sym_verbatim_string_literal] = ACTIONS(1447), + [aux_sym_preproc_if_token1] = ACTIONS(1451), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + [sym_interpolation_regular_start] = ACTIONS(1453), + [sym_interpolation_verbatim_start] = ACTIONS(1455), + [sym_interpolation_raw_start] = ACTIONS(1457), + [sym_raw_string_start] = ACTIONS(1459), + }, + [1675] = { + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(3182), + [sym__name] = STATE(5882), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2306), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2262), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(4364), + [sym_non_lvalue_expression] = STATE(4580), + [sym_lvalue_expression] = STATE(3312), + [sym__expression_statement_expression] = STATE(4573), + [sym_assignment_expression] = STATE(4581), + [sym_binary_expression] = STATE(4573), + [sym_postfix_unary_expression] = STATE(4581), + [sym_prefix_unary_expression] = STATE(4581), + [sym__pointer_indirection_expression] = STATE(3144), + [sym_query_expression] = STATE(4573), + [sym_from_clause] = STATE(6160), + [sym_conditional_expression] = STATE(4573), + [sym_conditional_access_expression] = STATE(4573), + [sym_as_expression] = STATE(4573), + [sym_is_expression] = STATE(4573), + [sym_is_pattern_expression] = STATE(4573), + [sym_cast_expression] = STATE(4573), + [sym_checked_expression] = STATE(4573), + [sym_invocation_expression] = STATE(4581), + [sym_switch_expression] = STATE(4573), + [sym_await_expression] = STATE(4581), + [sym_throw_expression] = STATE(4573), + [sym_element_access_expression] = STATE(3144), + [sym_interpolated_string_expression] = STATE(4573), + [sym_member_access_expression] = STATE(3144), + [sym_object_creation_expression] = STATE(4581), + [sym_parenthesized_expression] = STATE(4581), + [sym__parenthesized_lvalue_expression] = STATE(3144), + [sym_lambda_expression] = STATE(4573), + [sym__lambda_expression_init] = STATE(7399), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(4573), + [sym_anonymous_method_expression] = STATE(4573), + [sym_anonymous_object_creation_expression] = STATE(4573), + [sym_implicit_array_creation_expression] = STATE(4573), + [sym_implicit_object_creation_expression] = STATE(4573), + [sym_implicit_stackalloc_expression] = STATE(4573), + [sym_initializer_expression] = STATE(4573), + [sym_default_expression] = STATE(4573), + [sym_with_expression] = STATE(4573), + [sym_sizeof_expression] = STATE(4573), + [sym_typeof_expression] = STATE(4573), + [sym_makeref_expression] = STATE(4573), + [sym_ref_expression] = STATE(4573), + [sym_reftype_expression] = STATE(4573), + [sym_refvalue_expression] = STATE(4573), + [sym_stackalloc_expression] = STATE(4573), + [sym_range_expression] = STATE(4573), + [sym_tuple_expression] = STATE(3144), + [sym_literal] = STATE(4573), + [sym_character_literal] = STATE(4575), + [sym_string_literal] = STATE(4575), + [sym_raw_string_literal] = STATE(4575), + [sym_boolean_literal] = STATE(4575), + [sym_identifier] = STATE(2237), + [sym__reserved_identifier] = STATE(2229), + [sym_preproc_if_in_expression] = STATE(4573), + [sym_preproc_if_in_attribute_list] = STATE(5583), + [sym_preproc_region] = STATE(1675), + [sym_preproc_endregion] = STATE(1675), + [sym_preproc_line] = STATE(1675), + [sym_preproc_pragma] = STATE(1675), + [sym_preproc_nullable] = STATE(1675), + [sym_preproc_error] = STATE(1675), + [sym_preproc_warning] = STATE(1675), + [sym_preproc_define] = STATE(1675), + [sym_preproc_undef] = STATE(1675), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3501), + [sym__identifier_token] = ACTIONS(1385), + [anon_sym_alias] = ACTIONS(1387), + [anon_sym_global] = ACTIONS(1387), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1389), + [anon_sym_LPAREN] = ACTIONS(1461), + [anon_sym_ref] = ACTIONS(1463), + [anon_sym_LBRACE] = ACTIONS(1395), + [anon_sym_delegate] = ACTIONS(1397), + [anon_sym_async] = ACTIONS(1045), + [anon_sym_file] = ACTIONS(1387), + [anon_sym_new] = ACTIONS(1465), + [anon_sym_where] = ACTIONS(1387), + [anon_sym_notnull] = ACTIONS(1387), + [anon_sym_unmanaged] = ACTIONS(1387), + [anon_sym_checked] = ACTIONS(1401), + [anon_sym_BANG] = ACTIONS(1469), + [anon_sym_TILDE] = ACTIONS(1469), + [anon_sym_PLUS_PLUS] = ACTIONS(1469), + [anon_sym_DASH_DASH] = ACTIONS(1469), + [anon_sym_true] = ACTIONS(1407), + [anon_sym_false] = ACTIONS(1407), + [anon_sym_PLUS] = ACTIONS(1467), + [anon_sym_DASH] = ACTIONS(1467), + [anon_sym_STAR] = ACTIONS(1471), + [anon_sym_CARET] = ACTIONS(1469), + [anon_sym_AMP] = ACTIONS(1469), + [anon_sym_this] = ACTIONS(1411), + [anon_sym_scoped] = ACTIONS(1413), + [anon_sym_base] = ACTIONS(1415), + [anon_sym_var] = ACTIONS(1417), + [sym_predefined_type] = ACTIONS(1419), + [anon_sym_unchecked] = ACTIONS(1401), + [anon_sym_yield] = ACTIONS(1387), + [anon_sym_default] = ACTIONS(1421), + [anon_sym_throw] = ACTIONS(1473), + [anon_sym_when] = ACTIONS(1387), + [anon_sym_await] = ACTIONS(1475), + [anon_sym_DOT_DOT] = ACTIONS(1477), + [anon_sym_from] = ACTIONS(1429), + [anon_sym_into] = ACTIONS(1387), + [anon_sym_join] = ACTIONS(1387), + [anon_sym_on] = ACTIONS(1387), + [anon_sym_equals] = ACTIONS(1387), + [anon_sym_let] = ACTIONS(1387), + [anon_sym_orderby] = ACTIONS(1387), + [anon_sym_ascending] = ACTIONS(1387), + [anon_sym_descending] = ACTIONS(1387), + [anon_sym_group] = ACTIONS(1387), + [anon_sym_by] = ACTIONS(1387), + [anon_sym_select] = ACTIONS(1387), + [anon_sym_stackalloc] = ACTIONS(1431), + [anon_sym_sizeof] = ACTIONS(1433), + [anon_sym_typeof] = ACTIONS(1435), + [anon_sym___makeref] = ACTIONS(1437), + [anon_sym___reftype] = ACTIONS(1439), + [anon_sym___refvalue] = ACTIONS(1441), + [sym_null_literal] = ACTIONS(1443), + [anon_sym_SQUOTE] = ACTIONS(1445), + [sym_integer_literal] = ACTIONS(1443), + [sym_real_literal] = ACTIONS(1447), + [anon_sym_DQUOTE] = ACTIONS(1449), + [sym_verbatim_string_literal] = ACTIONS(1447), + [aux_sym_preproc_if_token1] = ACTIONS(1451), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + [sym_interpolation_regular_start] = ACTIONS(1453), + [sym_interpolation_verbatim_start] = ACTIONS(1455), + [sym_interpolation_raw_start] = ACTIONS(1457), + [sym_raw_string_start] = ACTIONS(1459), + }, + [1676] = { + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(3182), + [sym__name] = STATE(5882), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2306), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2262), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(4380), + [sym_non_lvalue_expression] = STATE(4580), + [sym_lvalue_expression] = STATE(3312), + [sym__expression_statement_expression] = STATE(4573), + [sym_assignment_expression] = STATE(4581), + [sym_binary_expression] = STATE(4573), + [sym_postfix_unary_expression] = STATE(4581), + [sym_prefix_unary_expression] = STATE(4581), + [sym__pointer_indirection_expression] = STATE(3144), + [sym_query_expression] = STATE(4573), + [sym_from_clause] = STATE(6160), + [sym_conditional_expression] = STATE(4573), + [sym_conditional_access_expression] = STATE(4573), + [sym_as_expression] = STATE(4573), + [sym_is_expression] = STATE(4573), + [sym_is_pattern_expression] = STATE(4573), + [sym_cast_expression] = STATE(4573), + [sym_checked_expression] = STATE(4573), + [sym_invocation_expression] = STATE(4581), + [sym_switch_expression] = STATE(4573), + [sym_await_expression] = STATE(4581), + [sym_throw_expression] = STATE(4573), + [sym_element_access_expression] = STATE(3144), + [sym_interpolated_string_expression] = STATE(4573), + [sym_member_access_expression] = STATE(3144), + [sym_object_creation_expression] = STATE(4581), + [sym_parenthesized_expression] = STATE(4581), + [sym__parenthesized_lvalue_expression] = STATE(3144), + [sym_lambda_expression] = STATE(4573), + [sym__lambda_expression_init] = STATE(7399), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(4573), + [sym_anonymous_method_expression] = STATE(4573), + [sym_anonymous_object_creation_expression] = STATE(4573), + [sym_implicit_array_creation_expression] = STATE(4573), + [sym_implicit_object_creation_expression] = STATE(4573), + [sym_implicit_stackalloc_expression] = STATE(4573), + [sym_initializer_expression] = STATE(4573), + [sym_default_expression] = STATE(4573), + [sym_with_expression] = STATE(4573), + [sym_sizeof_expression] = STATE(4573), + [sym_typeof_expression] = STATE(4573), + [sym_makeref_expression] = STATE(4573), + [sym_ref_expression] = STATE(4573), + [sym_reftype_expression] = STATE(4573), + [sym_refvalue_expression] = STATE(4573), + [sym_stackalloc_expression] = STATE(4573), + [sym_range_expression] = STATE(4573), + [sym_tuple_expression] = STATE(3144), + [sym_literal] = STATE(4573), + [sym_character_literal] = STATE(4575), + [sym_string_literal] = STATE(4575), + [sym_raw_string_literal] = STATE(4575), + [sym_boolean_literal] = STATE(4575), + [sym_identifier] = STATE(2237), + [sym__reserved_identifier] = STATE(2229), + [sym_preproc_if_in_expression] = STATE(4573), + [sym_preproc_if_in_attribute_list] = STATE(5583), + [sym_preproc_region] = STATE(1676), + [sym_preproc_endregion] = STATE(1676), + [sym_preproc_line] = STATE(1676), + [sym_preproc_pragma] = STATE(1676), + [sym_preproc_nullable] = STATE(1676), + [sym_preproc_error] = STATE(1676), + [sym_preproc_warning] = STATE(1676), + [sym_preproc_define] = STATE(1676), + [sym_preproc_undef] = STATE(1676), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3501), + [sym__identifier_token] = ACTIONS(1385), + [anon_sym_alias] = ACTIONS(1387), + [anon_sym_global] = ACTIONS(1387), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1389), + [anon_sym_LPAREN] = ACTIONS(1461), + [anon_sym_ref] = ACTIONS(1463), + [anon_sym_LBRACE] = ACTIONS(1395), + [anon_sym_delegate] = ACTIONS(1397), + [anon_sym_async] = ACTIONS(1045), + [anon_sym_file] = ACTIONS(1387), + [anon_sym_new] = ACTIONS(1465), + [anon_sym_where] = ACTIONS(1387), + [anon_sym_notnull] = ACTIONS(1387), + [anon_sym_unmanaged] = ACTIONS(1387), + [anon_sym_checked] = ACTIONS(1401), + [anon_sym_BANG] = ACTIONS(1469), + [anon_sym_TILDE] = ACTIONS(1469), + [anon_sym_PLUS_PLUS] = ACTIONS(1469), + [anon_sym_DASH_DASH] = ACTIONS(1469), + [anon_sym_true] = ACTIONS(1407), + [anon_sym_false] = ACTIONS(1407), + [anon_sym_PLUS] = ACTIONS(1467), + [anon_sym_DASH] = ACTIONS(1467), + [anon_sym_STAR] = ACTIONS(1471), + [anon_sym_CARET] = ACTIONS(1469), + [anon_sym_AMP] = ACTIONS(1469), + [anon_sym_this] = ACTIONS(1411), + [anon_sym_scoped] = ACTIONS(1413), + [anon_sym_base] = ACTIONS(1415), + [anon_sym_var] = ACTIONS(1417), + [sym_predefined_type] = ACTIONS(1419), + [anon_sym_unchecked] = ACTIONS(1401), + [anon_sym_yield] = ACTIONS(1387), + [anon_sym_default] = ACTIONS(1421), + [anon_sym_throw] = ACTIONS(1473), + [anon_sym_when] = ACTIONS(1387), + [anon_sym_await] = ACTIONS(1475), + [anon_sym_DOT_DOT] = ACTIONS(1477), + [anon_sym_from] = ACTIONS(1429), + [anon_sym_into] = ACTIONS(1387), + [anon_sym_join] = ACTIONS(1387), + [anon_sym_on] = ACTIONS(1387), + [anon_sym_equals] = ACTIONS(1387), + [anon_sym_let] = ACTIONS(1387), + [anon_sym_orderby] = ACTIONS(1387), + [anon_sym_ascending] = ACTIONS(1387), + [anon_sym_descending] = ACTIONS(1387), + [anon_sym_group] = ACTIONS(1387), + [anon_sym_by] = ACTIONS(1387), + [anon_sym_select] = ACTIONS(1387), + [anon_sym_stackalloc] = ACTIONS(1431), + [anon_sym_sizeof] = ACTIONS(1433), + [anon_sym_typeof] = ACTIONS(1435), + [anon_sym___makeref] = ACTIONS(1437), + [anon_sym___reftype] = ACTIONS(1439), + [anon_sym___refvalue] = ACTIONS(1441), + [sym_null_literal] = ACTIONS(1443), + [anon_sym_SQUOTE] = ACTIONS(1445), + [sym_integer_literal] = ACTIONS(1443), + [sym_real_literal] = ACTIONS(1447), + [anon_sym_DQUOTE] = ACTIONS(1449), + [sym_verbatim_string_literal] = ACTIONS(1447), + [aux_sym_preproc_if_token1] = ACTIONS(1451), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + [sym_interpolation_regular_start] = ACTIONS(1453), + [sym_interpolation_verbatim_start] = ACTIONS(1455), + [sym_interpolation_raw_start] = ACTIONS(1457), + [sym_raw_string_start] = ACTIONS(1459), + }, + [1677] = { + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(3182), + [sym__name] = STATE(5882), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2306), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2262), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(4407), + [sym_non_lvalue_expression] = STATE(4580), + [sym_lvalue_expression] = STATE(3312), + [sym__expression_statement_expression] = STATE(4573), + [sym_assignment_expression] = STATE(4581), + [sym_binary_expression] = STATE(4573), + [sym_postfix_unary_expression] = STATE(4581), + [sym_prefix_unary_expression] = STATE(4581), + [sym__pointer_indirection_expression] = STATE(3144), + [sym_query_expression] = STATE(4573), + [sym_from_clause] = STATE(6160), + [sym_conditional_expression] = STATE(4573), + [sym_conditional_access_expression] = STATE(4573), + [sym_as_expression] = STATE(4573), + [sym_is_expression] = STATE(4573), + [sym_is_pattern_expression] = STATE(4573), + [sym_cast_expression] = STATE(4573), + [sym_checked_expression] = STATE(4573), + [sym_invocation_expression] = STATE(4581), + [sym_switch_expression] = STATE(4573), + [sym_await_expression] = STATE(4581), + [sym_throw_expression] = STATE(4573), + [sym_element_access_expression] = STATE(3144), + [sym_interpolated_string_expression] = STATE(4573), + [sym_member_access_expression] = STATE(3144), + [sym_object_creation_expression] = STATE(4581), + [sym_parenthesized_expression] = STATE(4581), + [sym__parenthesized_lvalue_expression] = STATE(3144), + [sym_lambda_expression] = STATE(4573), + [sym__lambda_expression_init] = STATE(7399), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(4573), + [sym_anonymous_method_expression] = STATE(4573), + [sym_anonymous_object_creation_expression] = STATE(4573), + [sym_implicit_array_creation_expression] = STATE(4573), + [sym_implicit_object_creation_expression] = STATE(4573), + [sym_implicit_stackalloc_expression] = STATE(4573), + [sym_initializer_expression] = STATE(4573), + [sym_default_expression] = STATE(4573), + [sym_with_expression] = STATE(4573), + [sym_sizeof_expression] = STATE(4573), + [sym_typeof_expression] = STATE(4573), + [sym_makeref_expression] = STATE(4573), + [sym_ref_expression] = STATE(4573), + [sym_reftype_expression] = STATE(4573), + [sym_refvalue_expression] = STATE(4573), + [sym_stackalloc_expression] = STATE(4573), + [sym_range_expression] = STATE(4573), + [sym_tuple_expression] = STATE(3144), + [sym_literal] = STATE(4573), + [sym_character_literal] = STATE(4575), + [sym_string_literal] = STATE(4575), + [sym_raw_string_literal] = STATE(4575), + [sym_boolean_literal] = STATE(4575), + [sym_identifier] = STATE(2237), + [sym__reserved_identifier] = STATE(2229), + [sym_preproc_if_in_expression] = STATE(4573), + [sym_preproc_if_in_attribute_list] = STATE(5583), + [sym_preproc_region] = STATE(1677), + [sym_preproc_endregion] = STATE(1677), + [sym_preproc_line] = STATE(1677), + [sym_preproc_pragma] = STATE(1677), + [sym_preproc_nullable] = STATE(1677), + [sym_preproc_error] = STATE(1677), + [sym_preproc_warning] = STATE(1677), + [sym_preproc_define] = STATE(1677), + [sym_preproc_undef] = STATE(1677), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3501), + [sym__identifier_token] = ACTIONS(1385), + [anon_sym_alias] = ACTIONS(1387), + [anon_sym_global] = ACTIONS(1387), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1389), + [anon_sym_LPAREN] = ACTIONS(1461), + [anon_sym_ref] = ACTIONS(1463), + [anon_sym_LBRACE] = ACTIONS(1395), + [anon_sym_delegate] = ACTIONS(1397), + [anon_sym_async] = ACTIONS(1045), + [anon_sym_file] = ACTIONS(1387), + [anon_sym_new] = ACTIONS(1465), + [anon_sym_where] = ACTIONS(1387), + [anon_sym_notnull] = ACTIONS(1387), + [anon_sym_unmanaged] = ACTIONS(1387), + [anon_sym_checked] = ACTIONS(1401), + [anon_sym_BANG] = ACTIONS(1469), + [anon_sym_TILDE] = ACTIONS(1469), + [anon_sym_PLUS_PLUS] = ACTIONS(1469), + [anon_sym_DASH_DASH] = ACTIONS(1469), + [anon_sym_true] = ACTIONS(1407), + [anon_sym_false] = ACTIONS(1407), + [anon_sym_PLUS] = ACTIONS(1467), + [anon_sym_DASH] = ACTIONS(1467), + [anon_sym_STAR] = ACTIONS(1471), + [anon_sym_CARET] = ACTIONS(1469), + [anon_sym_AMP] = ACTIONS(1469), + [anon_sym_this] = ACTIONS(1411), + [anon_sym_scoped] = ACTIONS(1413), + [anon_sym_base] = ACTIONS(1415), + [anon_sym_var] = ACTIONS(1417), + [sym_predefined_type] = ACTIONS(1419), + [anon_sym_unchecked] = ACTIONS(1401), + [anon_sym_yield] = ACTIONS(1387), + [anon_sym_default] = ACTIONS(1421), + [anon_sym_throw] = ACTIONS(1473), + [anon_sym_when] = ACTIONS(1387), + [anon_sym_await] = ACTIONS(1475), + [anon_sym_DOT_DOT] = ACTIONS(1477), + [anon_sym_from] = ACTIONS(1429), + [anon_sym_into] = ACTIONS(1387), + [anon_sym_join] = ACTIONS(1387), + [anon_sym_on] = ACTIONS(1387), + [anon_sym_equals] = ACTIONS(1387), + [anon_sym_let] = ACTIONS(1387), + [anon_sym_orderby] = ACTIONS(1387), + [anon_sym_ascending] = ACTIONS(1387), + [anon_sym_descending] = ACTIONS(1387), + [anon_sym_group] = ACTIONS(1387), + [anon_sym_by] = ACTIONS(1387), + [anon_sym_select] = ACTIONS(1387), + [anon_sym_stackalloc] = ACTIONS(1431), + [anon_sym_sizeof] = ACTIONS(1433), + [anon_sym_typeof] = ACTIONS(1435), + [anon_sym___makeref] = ACTIONS(1437), + [anon_sym___reftype] = ACTIONS(1439), + [anon_sym___refvalue] = ACTIONS(1441), + [sym_null_literal] = ACTIONS(1443), + [anon_sym_SQUOTE] = ACTIONS(1445), + [sym_integer_literal] = ACTIONS(1443), + [sym_real_literal] = ACTIONS(1447), + [anon_sym_DQUOTE] = ACTIONS(1449), + [sym_verbatim_string_literal] = ACTIONS(1447), + [aux_sym_preproc_if_token1] = ACTIONS(1451), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + [sym_interpolation_regular_start] = ACTIONS(1453), + [sym_interpolation_verbatim_start] = ACTIONS(1455), + [sym_interpolation_raw_start] = ACTIONS(1457), + [sym_raw_string_start] = ACTIONS(1459), + }, + [1678] = { + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2816), + [sym__name] = STATE(5873), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2196), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(4854), + [sym_non_lvalue_expression] = STATE(3495), + [sym_lvalue_expression] = STATE(3525), + [sym__expression_statement_expression] = STATE(3462), + [sym_assignment_expression] = STATE(3497), + [sym_binary_expression] = STATE(3462), + [sym_postfix_unary_expression] = STATE(3497), + [sym_prefix_unary_expression] = STATE(3497), + [sym__pointer_indirection_expression] = STATE(2815), + [sym_query_expression] = STATE(3462), + [sym_from_clause] = STATE(6155), + [sym_conditional_expression] = STATE(3462), + [sym_conditional_access_expression] = STATE(3462), + [sym_as_expression] = STATE(3462), + [sym_is_expression] = STATE(3462), + [sym_is_pattern_expression] = STATE(3462), + [sym_cast_expression] = STATE(3462), + [sym_checked_expression] = STATE(3462), + [sym_invocation_expression] = STATE(3497), + [sym_switch_expression] = STATE(3462), + [sym_await_expression] = STATE(3497), + [sym_throw_expression] = STATE(3462), + [sym_element_access_expression] = STATE(2815), + [sym_interpolated_string_expression] = STATE(3462), + [sym_member_access_expression] = STATE(2815), + [sym_object_creation_expression] = STATE(3497), + [sym_parenthesized_expression] = STATE(3497), + [sym__parenthesized_lvalue_expression] = STATE(2815), + [sym_lambda_expression] = STATE(3462), + [sym__lambda_expression_init] = STATE(7427), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3462), + [sym_anonymous_method_expression] = STATE(3462), + [sym_anonymous_object_creation_expression] = STATE(3462), + [sym_implicit_array_creation_expression] = STATE(3462), + [sym_implicit_object_creation_expression] = STATE(3462), + [sym_implicit_stackalloc_expression] = STATE(3462), + [sym_initializer_expression] = STATE(3462), + [sym_default_expression] = STATE(3462), + [sym_with_expression] = STATE(3462), + [sym_sizeof_expression] = STATE(3462), + [sym_typeof_expression] = STATE(3462), + [sym_makeref_expression] = STATE(3462), + [sym_ref_expression] = STATE(3462), + [sym_reftype_expression] = STATE(3462), + [sym_refvalue_expression] = STATE(3462), + [sym_stackalloc_expression] = STATE(3462), + [sym_range_expression] = STATE(3462), + [sym_tuple_expression] = STATE(2815), + [sym_literal] = STATE(3462), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3462), + [sym_preproc_if_in_attribute_list] = STATE(5583), + [sym_preproc_region] = STATE(1678), + [sym_preproc_endregion] = STATE(1678), + [sym_preproc_line] = STATE(1678), + [sym_preproc_pragma] = STATE(1678), + [sym_preproc_nullable] = STATE(1678), + [sym_preproc_error] = STATE(1678), + [sym_preproc_warning] = STATE(1678), + [sym_preproc_define] = STATE(1678), + [sym_preproc_undef] = STATE(1678), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3367), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1307), - [anon_sym_LPAREN] = ACTIONS(1609), - [anon_sym_ref] = ACTIONS(1611), - [anon_sym_LBRACE] = ACTIONS(1313), - [anon_sym_delegate] = ACTIONS(1315), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1305), + [anon_sym_LPAREN] = ACTIONS(1737), + [anon_sym_ref] = ACTIONS(1739), + [anon_sym_LBRACE] = ACTIONS(1311), + [anon_sym_delegate] = ACTIONS(1313), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1613), + [anon_sym_new] = ACTIONS(1741), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1319), - [anon_sym_BANG] = ACTIONS(1617), - [anon_sym_TILDE] = ACTIONS(1617), - [anon_sym_PLUS_PLUS] = ACTIONS(1617), - [anon_sym_DASH_DASH] = ACTIONS(1617), + [anon_sym_checked] = ACTIONS(1317), + [anon_sym_BANG] = ACTIONS(1745), + [anon_sym_TILDE] = ACTIONS(1745), + [anon_sym_PLUS_PLUS] = ACTIONS(1745), + [anon_sym_DASH_DASH] = ACTIONS(1745), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1615), - [anon_sym_DASH] = ACTIONS(1615), - [anon_sym_STAR] = ACTIONS(1619), - [anon_sym_CARET] = ACTIONS(1617), - [anon_sym_AMP] = ACTIONS(1617), - [anon_sym_this] = ACTIONS(1323), + [anon_sym_PLUS] = ACTIONS(1743), + [anon_sym_DASH] = ACTIONS(1743), + [anon_sym_STAR] = ACTIONS(1377), + [anon_sym_CARET] = ACTIONS(1745), + [anon_sym_AMP] = ACTIONS(1745), + [anon_sym_this] = ACTIONS(1321), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1325), + [anon_sym_base] = ACTIONS(1323), [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1319), + [anon_sym_unchecked] = ACTIONS(1317), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1621), + [anon_sym_throw] = ACTIONS(1747), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1623), - [anon_sym_DOT_DOT] = ACTIONS(1625), + [anon_sym_await] = ACTIONS(1749), + [anon_sym_DOT_DOT] = ACTIONS(1751), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -325663,19 +325380,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1333), + [anon_sym_stackalloc] = ACTIONS(1331), [anon_sym_sizeof] = ACTIONS(129), [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(1335), - [anon_sym___reftype] = ACTIONS(1337), - [anon_sym___refvalue] = ACTIONS(1339), + [anon_sym___makeref] = ACTIONS(1333), + [anon_sym___reftype] = ACTIONS(1335), + [anon_sym___refvalue] = ACTIONS(1337), [sym_null_literal] = ACTIONS(139), [anon_sym_SQUOTE] = ACTIONS(141), [sym_integer_literal] = ACTIONS(139), [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1341), + [aux_sym_preproc_if_token1] = ACTIONS(1753), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -325691,85 +325408,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), }, + [1679] = { + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(3182), + [sym__name] = STATE(5882), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2306), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2262), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(4270), + [sym_non_lvalue_expression] = STATE(4580), + [sym_lvalue_expression] = STATE(3534), + [sym__expression_statement_expression] = STATE(4573), + [sym_assignment_expression] = STATE(4581), + [sym_binary_expression] = STATE(4573), + [sym_postfix_unary_expression] = STATE(4581), + [sym_prefix_unary_expression] = STATE(4581), + [sym__pointer_indirection_expression] = STATE(3144), + [sym_query_expression] = STATE(4573), + [sym_from_clause] = STATE(6133), + [sym_conditional_expression] = STATE(4573), + [sym_conditional_access_expression] = STATE(4573), + [sym_as_expression] = STATE(4573), + [sym_is_expression] = STATE(4573), + [sym_is_pattern_expression] = STATE(4573), + [sym_cast_expression] = STATE(4573), + [sym_checked_expression] = STATE(4573), + [sym_invocation_expression] = STATE(4581), + [sym_switch_expression] = STATE(4573), + [sym_await_expression] = STATE(4581), + [sym_throw_expression] = STATE(4573), + [sym_element_access_expression] = STATE(3144), + [sym_interpolated_string_expression] = STATE(4573), + [sym_member_access_expression] = STATE(3144), + [sym_object_creation_expression] = STATE(4581), + [sym_parenthesized_expression] = STATE(4581), + [sym__parenthesized_lvalue_expression] = STATE(3144), + [sym_lambda_expression] = STATE(4573), + [sym__lambda_expression_init] = STATE(7592), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(4573), + [sym_anonymous_method_expression] = STATE(4573), + [sym_anonymous_object_creation_expression] = STATE(4573), + [sym_implicit_array_creation_expression] = STATE(4573), + [sym_implicit_object_creation_expression] = STATE(4573), + [sym_implicit_stackalloc_expression] = STATE(4573), + [sym_initializer_expression] = STATE(4573), + [sym_default_expression] = STATE(4573), + [sym_with_expression] = STATE(4573), + [sym_sizeof_expression] = STATE(4573), + [sym_typeof_expression] = STATE(4573), + [sym_makeref_expression] = STATE(4573), + [sym_ref_expression] = STATE(4573), + [sym_reftype_expression] = STATE(4573), + [sym_refvalue_expression] = STATE(4573), + [sym_stackalloc_expression] = STATE(4573), + [sym_range_expression] = STATE(4573), + [sym_tuple_expression] = STATE(3144), + [sym_literal] = STATE(4573), + [sym_character_literal] = STATE(4575), + [sym_string_literal] = STATE(4575), + [sym_raw_string_literal] = STATE(4575), + [sym_boolean_literal] = STATE(4575), + [sym_identifier] = STATE(2237), + [sym__reserved_identifier] = STATE(2229), + [sym_preproc_if_in_expression] = STATE(4573), + [sym_preproc_if_in_attribute_list] = STATE(5583), + [sym_preproc_region] = STATE(1679), + [sym_preproc_endregion] = STATE(1679), + [sym_preproc_line] = STATE(1679), + [sym_preproc_pragma] = STATE(1679), + [sym_preproc_nullable] = STATE(1679), + [sym_preproc_error] = STATE(1679), + [sym_preproc_warning] = STATE(1679), + [sym_preproc_define] = STATE(1679), + [sym_preproc_undef] = STATE(1679), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3501), + [sym__identifier_token] = ACTIONS(1385), + [anon_sym_alias] = ACTIONS(1387), + [anon_sym_global] = ACTIONS(1387), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1389), + [anon_sym_LPAREN] = ACTIONS(1773), + [anon_sym_ref] = ACTIONS(1775), + [anon_sym_LBRACE] = ACTIONS(1395), + [anon_sym_delegate] = ACTIONS(1397), + [anon_sym_async] = ACTIONS(1045), + [anon_sym_file] = ACTIONS(1387), + [anon_sym_new] = ACTIONS(1465), + [anon_sym_where] = ACTIONS(1387), + [anon_sym_notnull] = ACTIONS(1387), + [anon_sym_unmanaged] = ACTIONS(1387), + [anon_sym_checked] = ACTIONS(1401), + [anon_sym_BANG] = ACTIONS(1779), + [anon_sym_TILDE] = ACTIONS(1779), + [anon_sym_PLUS_PLUS] = ACTIONS(1779), + [anon_sym_DASH_DASH] = ACTIONS(1779), + [anon_sym_true] = ACTIONS(1407), + [anon_sym_false] = ACTIONS(1407), + [anon_sym_PLUS] = ACTIONS(1777), + [anon_sym_DASH] = ACTIONS(1777), + [anon_sym_STAR] = ACTIONS(1471), + [anon_sym_CARET] = ACTIONS(1779), + [anon_sym_AMP] = ACTIONS(1779), + [anon_sym_this] = ACTIONS(1411), + [anon_sym_scoped] = ACTIONS(1413), + [anon_sym_base] = ACTIONS(1415), + [anon_sym_var] = ACTIONS(1417), + [sym_predefined_type] = ACTIONS(1419), + [anon_sym_unchecked] = ACTIONS(1401), + [anon_sym_yield] = ACTIONS(1387), + [anon_sym_default] = ACTIONS(1421), + [anon_sym_throw] = ACTIONS(1781), + [anon_sym_when] = ACTIONS(1387), + [anon_sym_await] = ACTIONS(1783), + [anon_sym_DOT_DOT] = ACTIONS(1785), + [anon_sym_from] = ACTIONS(1429), + [anon_sym_into] = ACTIONS(1387), + [anon_sym_join] = ACTIONS(1387), + [anon_sym_on] = ACTIONS(1387), + [anon_sym_equals] = ACTIONS(1387), + [anon_sym_let] = ACTIONS(1387), + [anon_sym_orderby] = ACTIONS(1387), + [anon_sym_ascending] = ACTIONS(1387), + [anon_sym_descending] = ACTIONS(1387), + [anon_sym_group] = ACTIONS(1387), + [anon_sym_by] = ACTIONS(1387), + [anon_sym_select] = ACTIONS(1387), + [anon_sym_stackalloc] = ACTIONS(1431), + [anon_sym_sizeof] = ACTIONS(1433), + [anon_sym_typeof] = ACTIONS(1435), + [anon_sym___makeref] = ACTIONS(1437), + [anon_sym___reftype] = ACTIONS(1439), + [anon_sym___refvalue] = ACTIONS(1441), + [sym_null_literal] = ACTIONS(1443), + [anon_sym_SQUOTE] = ACTIONS(1445), + [sym_integer_literal] = ACTIONS(1443), + [sym_real_literal] = ACTIONS(1447), + [anon_sym_DQUOTE] = ACTIONS(1449), + [sym_verbatim_string_literal] = ACTIONS(1447), + [aux_sym_preproc_if_token1] = ACTIONS(1451), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + [sym_interpolation_regular_start] = ACTIONS(1453), + [sym_interpolation_verbatim_start] = ACTIONS(1455), + [sym_interpolation_raw_start] = ACTIONS(1457), + [sym_raw_string_start] = ACTIONS(1459), + }, [1680] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2762), - [sym__name] = STATE(5892), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2316), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(4601), - [sym_non_lvalue_expression] = STATE(3438), - [sym_lvalue_expression] = STATE(3500), - [sym__expression_statement_expression] = STATE(3362), - [sym_assignment_expression] = STATE(3449), - [sym_binary_expression] = STATE(3362), - [sym_postfix_unary_expression] = STATE(3449), - [sym_prefix_unary_expression] = STATE(3449), - [sym__pointer_indirection_expression] = STATE(2747), - [sym_query_expression] = STATE(3362), - [sym_from_clause] = STATE(6147), - [sym_conditional_expression] = STATE(3362), - [sym_conditional_access_expression] = STATE(3362), - [sym_as_expression] = STATE(3362), - [sym_is_expression] = STATE(3362), - [sym_is_pattern_expression] = STATE(3362), - [sym_cast_expression] = STATE(3362), - [sym_checked_expression] = STATE(3362), - [sym_invocation_expression] = STATE(3449), - [sym_switch_expression] = STATE(3362), - [sym_await_expression] = STATE(3449), - [sym_throw_expression] = STATE(3362), - [sym_element_access_expression] = STATE(2747), - [sym_interpolated_string_expression] = STATE(3362), - [sym_member_access_expression] = STATE(2747), - [sym_object_creation_expression] = STATE(3449), - [sym_parenthesized_expression] = STATE(3449), - [sym__parenthesized_lvalue_expression] = STATE(2747), - [sym_lambda_expression] = STATE(3362), - [sym__lambda_expression_init] = STATE(7516), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3362), - [sym_anonymous_method_expression] = STATE(3362), - [sym_anonymous_object_creation_expression] = STATE(3362), - [sym_implicit_array_creation_expression] = STATE(3362), - [sym_implicit_object_creation_expression] = STATE(3362), - [sym_implicit_stackalloc_expression] = STATE(3362), - [sym_initializer_expression] = STATE(3362), - [sym_default_expression] = STATE(3362), - [sym_with_expression] = STATE(3362), - [sym_sizeof_expression] = STATE(3362), - [sym_typeof_expression] = STATE(3362), - [sym_makeref_expression] = STATE(3362), - [sym_ref_expression] = STATE(3362), - [sym_reftype_expression] = STATE(3362), - [sym_refvalue_expression] = STATE(3362), - [sym_stackalloc_expression] = STATE(3362), - [sym_range_expression] = STATE(3362), - [sym_tuple_expression] = STATE(2747), - [sym_literal] = STATE(3362), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2267), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3362), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(3182), + [sym__name] = STATE(5882), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2306), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2262), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(4294), + [sym_non_lvalue_expression] = STATE(4580), + [sym_lvalue_expression] = STATE(3312), + [sym__expression_statement_expression] = STATE(4573), + [sym_assignment_expression] = STATE(4581), + [sym_binary_expression] = STATE(4573), + [sym_postfix_unary_expression] = STATE(4581), + [sym_prefix_unary_expression] = STATE(4581), + [sym__pointer_indirection_expression] = STATE(3144), + [sym_query_expression] = STATE(4573), + [sym_from_clause] = STATE(6160), + [sym_conditional_expression] = STATE(4573), + [sym_conditional_access_expression] = STATE(4573), + [sym_as_expression] = STATE(4573), + [sym_is_expression] = STATE(4573), + [sym_is_pattern_expression] = STATE(4573), + [sym_cast_expression] = STATE(4573), + [sym_checked_expression] = STATE(4573), + [sym_invocation_expression] = STATE(4581), + [sym_switch_expression] = STATE(4573), + [sym_await_expression] = STATE(4581), + [sym_throw_expression] = STATE(4573), + [sym_element_access_expression] = STATE(3144), + [sym_interpolated_string_expression] = STATE(4573), + [sym_member_access_expression] = STATE(3144), + [sym_object_creation_expression] = STATE(4581), + [sym_parenthesized_expression] = STATE(4581), + [sym__parenthesized_lvalue_expression] = STATE(3144), + [sym_lambda_expression] = STATE(4573), + [sym__lambda_expression_init] = STATE(7399), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(4573), + [sym_anonymous_method_expression] = STATE(4573), + [sym_anonymous_object_creation_expression] = STATE(4573), + [sym_implicit_array_creation_expression] = STATE(4573), + [sym_implicit_object_creation_expression] = STATE(4573), + [sym_implicit_stackalloc_expression] = STATE(4573), + [sym_initializer_expression] = STATE(4573), + [sym_default_expression] = STATE(4573), + [sym_with_expression] = STATE(4573), + [sym_sizeof_expression] = STATE(4573), + [sym_typeof_expression] = STATE(4573), + [sym_makeref_expression] = STATE(4573), + [sym_ref_expression] = STATE(4573), + [sym_reftype_expression] = STATE(4573), + [sym_refvalue_expression] = STATE(4573), + [sym_stackalloc_expression] = STATE(4573), + [sym_range_expression] = STATE(4573), + [sym_tuple_expression] = STATE(3144), + [sym_literal] = STATE(4573), + [sym_character_literal] = STATE(4575), + [sym_string_literal] = STATE(4575), + [sym_raw_string_literal] = STATE(4575), + [sym_boolean_literal] = STATE(4575), + [sym_identifier] = STATE(2237), + [sym__reserved_identifier] = STATE(2229), + [sym_preproc_if_in_expression] = STATE(4573), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(1680), [sym_preproc_endregion] = STATE(1680), [sym_preproc_line] = STATE(1680), @@ -325779,166 +325665,166 @@ 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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3385), - [sym__identifier_token] = ACTIONS(25), - [anon_sym_alias] = ACTIONS(29), - [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1307), - [anon_sym_LPAREN] = ACTIONS(1609), - [anon_sym_ref] = ACTIONS(1611), - [anon_sym_LBRACE] = ACTIONS(1313), - [anon_sym_delegate] = ACTIONS(1315), - [anon_sym_async] = ACTIONS(1047), - [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1613), - [anon_sym_where] = ACTIONS(29), - [anon_sym_notnull] = ACTIONS(29), - [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1319), - [anon_sym_BANG] = ACTIONS(1617), - [anon_sym_TILDE] = ACTIONS(1617), - [anon_sym_PLUS_PLUS] = ACTIONS(1617), - [anon_sym_DASH_DASH] = ACTIONS(1617), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1615), - [anon_sym_DASH] = ACTIONS(1615), - [anon_sym_STAR] = ACTIONS(1619), - [anon_sym_CARET] = ACTIONS(1617), - [anon_sym_AMP] = ACTIONS(1617), - [anon_sym_this] = ACTIONS(1323), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1325), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1319), - [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1621), - [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1623), - [anon_sym_DOT_DOT] = ACTIONS(1625), - [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(1333), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(1335), - [anon_sym___reftype] = ACTIONS(1337), - [anon_sym___refvalue] = ACTIONS(1339), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1341), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(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), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3501), + [sym__identifier_token] = ACTIONS(1385), + [anon_sym_alias] = ACTIONS(1387), + [anon_sym_global] = ACTIONS(1387), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1389), + [anon_sym_LPAREN] = ACTIONS(1461), + [anon_sym_ref] = ACTIONS(1463), + [anon_sym_LBRACE] = ACTIONS(1395), + [anon_sym_delegate] = ACTIONS(1397), + [anon_sym_async] = ACTIONS(1045), + [anon_sym_file] = ACTIONS(1387), + [anon_sym_new] = ACTIONS(1465), + [anon_sym_where] = ACTIONS(1387), + [anon_sym_notnull] = ACTIONS(1387), + [anon_sym_unmanaged] = ACTIONS(1387), + [anon_sym_checked] = ACTIONS(1401), + [anon_sym_BANG] = ACTIONS(1469), + [anon_sym_TILDE] = ACTIONS(1469), + [anon_sym_PLUS_PLUS] = ACTIONS(1469), + [anon_sym_DASH_DASH] = ACTIONS(1469), + [anon_sym_true] = ACTIONS(1407), + [anon_sym_false] = ACTIONS(1407), + [anon_sym_PLUS] = ACTIONS(1467), + [anon_sym_DASH] = ACTIONS(1467), + [anon_sym_STAR] = ACTIONS(1471), + [anon_sym_CARET] = ACTIONS(1469), + [anon_sym_AMP] = ACTIONS(1469), + [anon_sym_this] = ACTIONS(1411), + [anon_sym_scoped] = ACTIONS(1413), + [anon_sym_base] = ACTIONS(1415), + [anon_sym_var] = ACTIONS(1417), + [sym_predefined_type] = ACTIONS(1419), + [anon_sym_unchecked] = ACTIONS(1401), + [anon_sym_yield] = ACTIONS(1387), + [anon_sym_default] = ACTIONS(1421), + [anon_sym_throw] = ACTIONS(1473), + [anon_sym_when] = ACTIONS(1387), + [anon_sym_await] = ACTIONS(1475), + [anon_sym_DOT_DOT] = ACTIONS(1477), + [anon_sym_from] = ACTIONS(1429), + [anon_sym_into] = ACTIONS(1387), + [anon_sym_join] = ACTIONS(1387), + [anon_sym_on] = ACTIONS(1387), + [anon_sym_equals] = ACTIONS(1387), + [anon_sym_let] = ACTIONS(1387), + [anon_sym_orderby] = ACTIONS(1387), + [anon_sym_ascending] = ACTIONS(1387), + [anon_sym_descending] = ACTIONS(1387), + [anon_sym_group] = ACTIONS(1387), + [anon_sym_by] = ACTIONS(1387), + [anon_sym_select] = ACTIONS(1387), + [anon_sym_stackalloc] = ACTIONS(1431), + [anon_sym_sizeof] = ACTIONS(1433), + [anon_sym_typeof] = ACTIONS(1435), + [anon_sym___makeref] = ACTIONS(1437), + [anon_sym___reftype] = ACTIONS(1439), + [anon_sym___refvalue] = ACTIONS(1441), + [sym_null_literal] = ACTIONS(1443), + [anon_sym_SQUOTE] = ACTIONS(1445), + [sym_integer_literal] = ACTIONS(1443), + [sym_real_literal] = ACTIONS(1447), + [anon_sym_DQUOTE] = ACTIONS(1449), + [sym_verbatim_string_literal] = ACTIONS(1447), + [aux_sym_preproc_if_token1] = ACTIONS(1451), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + [sym_interpolation_regular_start] = ACTIONS(1453), + [sym_interpolation_verbatim_start] = ACTIONS(1455), + [sym_interpolation_raw_start] = ACTIONS(1457), + [sym_raw_string_start] = ACTIONS(1459), }, [1681] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2762), - [sym__name] = STATE(5892), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2316), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(4603), - [sym_non_lvalue_expression] = STATE(3438), - [sym_lvalue_expression] = STATE(3500), - [sym__expression_statement_expression] = STATE(3362), - [sym_assignment_expression] = STATE(3449), - [sym_binary_expression] = STATE(3362), - [sym_postfix_unary_expression] = STATE(3449), - [sym_prefix_unary_expression] = STATE(3449), - [sym__pointer_indirection_expression] = STATE(2747), - [sym_query_expression] = STATE(3362), - [sym_from_clause] = STATE(6147), - [sym_conditional_expression] = STATE(3362), - [sym_conditional_access_expression] = STATE(3362), - [sym_as_expression] = STATE(3362), - [sym_is_expression] = STATE(3362), - [sym_is_pattern_expression] = STATE(3362), - [sym_cast_expression] = STATE(3362), - [sym_checked_expression] = STATE(3362), - [sym_invocation_expression] = STATE(3449), - [sym_switch_expression] = STATE(3362), - [sym_await_expression] = STATE(3449), - [sym_throw_expression] = STATE(3362), - [sym_element_access_expression] = STATE(2747), - [sym_interpolated_string_expression] = STATE(3362), - [sym_member_access_expression] = STATE(2747), - [sym_object_creation_expression] = STATE(3449), - [sym_parenthesized_expression] = STATE(3449), - [sym__parenthesized_lvalue_expression] = STATE(2747), - [sym_lambda_expression] = STATE(3362), - [sym__lambda_expression_init] = STATE(7516), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3362), - [sym_anonymous_method_expression] = STATE(3362), - [sym_anonymous_object_creation_expression] = STATE(3362), - [sym_implicit_array_creation_expression] = STATE(3362), - [sym_implicit_object_creation_expression] = STATE(3362), - [sym_implicit_stackalloc_expression] = STATE(3362), - [sym_initializer_expression] = STATE(3362), - [sym_default_expression] = STATE(3362), - [sym_with_expression] = STATE(3362), - [sym_sizeof_expression] = STATE(3362), - [sym_typeof_expression] = STATE(3362), - [sym_makeref_expression] = STATE(3362), - [sym_ref_expression] = STATE(3362), - [sym_reftype_expression] = STATE(3362), - [sym_refvalue_expression] = STATE(3362), - [sym_stackalloc_expression] = STATE(3362), - [sym_range_expression] = STATE(3362), - [sym_tuple_expression] = STATE(2747), - [sym_literal] = STATE(3362), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2267), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3362), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2816), + [sym__name] = STATE(5873), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2196), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(4857), + [sym_non_lvalue_expression] = STATE(3495), + [sym_lvalue_expression] = STATE(3525), + [sym__expression_statement_expression] = STATE(3462), + [sym_assignment_expression] = STATE(3497), + [sym_binary_expression] = STATE(3462), + [sym_postfix_unary_expression] = STATE(3497), + [sym_prefix_unary_expression] = STATE(3497), + [sym__pointer_indirection_expression] = STATE(2815), + [sym_query_expression] = STATE(3462), + [sym_from_clause] = STATE(6155), + [sym_conditional_expression] = STATE(3462), + [sym_conditional_access_expression] = STATE(3462), + [sym_as_expression] = STATE(3462), + [sym_is_expression] = STATE(3462), + [sym_is_pattern_expression] = STATE(3462), + [sym_cast_expression] = STATE(3462), + [sym_checked_expression] = STATE(3462), + [sym_invocation_expression] = STATE(3497), + [sym_switch_expression] = STATE(3462), + [sym_await_expression] = STATE(3497), + [sym_throw_expression] = STATE(3462), + [sym_element_access_expression] = STATE(2815), + [sym_interpolated_string_expression] = STATE(3462), + [sym_member_access_expression] = STATE(2815), + [sym_object_creation_expression] = STATE(3497), + [sym_parenthesized_expression] = STATE(3497), + [sym__parenthesized_lvalue_expression] = STATE(2815), + [sym_lambda_expression] = STATE(3462), + [sym__lambda_expression_init] = STATE(7427), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3462), + [sym_anonymous_method_expression] = STATE(3462), + [sym_anonymous_object_creation_expression] = STATE(3462), + [sym_implicit_array_creation_expression] = STATE(3462), + [sym_implicit_object_creation_expression] = STATE(3462), + [sym_implicit_stackalloc_expression] = STATE(3462), + [sym_initializer_expression] = STATE(3462), + [sym_default_expression] = STATE(3462), + [sym_with_expression] = STATE(3462), + [sym_sizeof_expression] = STATE(3462), + [sym_typeof_expression] = STATE(3462), + [sym_makeref_expression] = STATE(3462), + [sym_ref_expression] = STATE(3462), + [sym_reftype_expression] = STATE(3462), + [sym_refvalue_expression] = STATE(3462), + [sym_stackalloc_expression] = STATE(3462), + [sym_range_expression] = STATE(3462), + [sym_tuple_expression] = STATE(2815), + [sym_literal] = STATE(3462), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3462), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(1681), [sym_preproc_endregion] = STATE(1681), [sym_preproc_line] = STATE(1681), @@ -325948,47 +325834,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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3385), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3367), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1307), - [anon_sym_LPAREN] = ACTIONS(1609), - [anon_sym_ref] = ACTIONS(1611), - [anon_sym_LBRACE] = ACTIONS(1313), - [anon_sym_delegate] = ACTIONS(1315), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1305), + [anon_sym_LPAREN] = ACTIONS(1737), + [anon_sym_ref] = ACTIONS(1739), + [anon_sym_LBRACE] = ACTIONS(1311), + [anon_sym_delegate] = ACTIONS(1313), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1613), + [anon_sym_new] = ACTIONS(1741), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1319), - [anon_sym_BANG] = ACTIONS(1617), - [anon_sym_TILDE] = ACTIONS(1617), - [anon_sym_PLUS_PLUS] = ACTIONS(1617), - [anon_sym_DASH_DASH] = ACTIONS(1617), + [anon_sym_checked] = ACTIONS(1317), + [anon_sym_BANG] = ACTIONS(1745), + [anon_sym_TILDE] = ACTIONS(1745), + [anon_sym_PLUS_PLUS] = ACTIONS(1745), + [anon_sym_DASH_DASH] = ACTIONS(1745), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1615), - [anon_sym_DASH] = ACTIONS(1615), - [anon_sym_STAR] = ACTIONS(1619), - [anon_sym_CARET] = ACTIONS(1617), - [anon_sym_AMP] = ACTIONS(1617), - [anon_sym_this] = ACTIONS(1323), + [anon_sym_PLUS] = ACTIONS(1743), + [anon_sym_DASH] = ACTIONS(1743), + [anon_sym_STAR] = ACTIONS(1377), + [anon_sym_CARET] = ACTIONS(1745), + [anon_sym_AMP] = ACTIONS(1745), + [anon_sym_this] = ACTIONS(1321), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1325), + [anon_sym_base] = ACTIONS(1323), [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1319), + [anon_sym_unchecked] = ACTIONS(1317), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1621), + [anon_sym_throw] = ACTIONS(1747), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1623), - [anon_sym_DOT_DOT] = ACTIONS(1625), + [anon_sym_await] = ACTIONS(1749), + [anon_sym_DOT_DOT] = ACTIONS(1751), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -326001,19 +325887,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1333), + [anon_sym_stackalloc] = ACTIONS(1331), [anon_sym_sizeof] = ACTIONS(129), [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(1335), - [anon_sym___reftype] = ACTIONS(1337), - [anon_sym___refvalue] = ACTIONS(1339), + [anon_sym___makeref] = ACTIONS(1333), + [anon_sym___reftype] = ACTIONS(1335), + [anon_sym___refvalue] = ACTIONS(1337), [sym_null_literal] = ACTIONS(139), [anon_sym_SQUOTE] = ACTIONS(141), [sym_integer_literal] = ACTIONS(139), [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1341), + [aux_sym_preproc_if_token1] = ACTIONS(1753), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -326030,84 +325916,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [1682] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(5910), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2247), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(5300), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3379), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3080), - [sym_postfix_unary_expression] = STATE(3111), - [sym_prefix_unary_expression] = STATE(3111), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6154), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3080), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3111), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3080), - [sym_member_access_expression] = STATE(2484), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3111), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7575), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(3080), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3080), - [sym_typeof_expression] = STATE(3080), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2484), - [sym_literal] = STATE(3080), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2416), + [sym__name] = STATE(5890), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2193), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(4099), + [sym_non_lvalue_expression] = STATE(3040), + [sym_lvalue_expression] = STATE(3109), + [sym__expression_statement_expression] = STATE(3035), + [sym_assignment_expression] = STATE(3043), + [sym_binary_expression] = STATE(3035), + [sym_postfix_unary_expression] = STATE(3043), + [sym_prefix_unary_expression] = STATE(3043), + [sym__pointer_indirection_expression] = STATE(2415), + [sym_query_expression] = STATE(3035), + [sym_from_clause] = STATE(6138), + [sym_conditional_expression] = STATE(3035), + [sym_conditional_access_expression] = STATE(3035), + [sym_as_expression] = STATE(3035), + [sym_is_expression] = STATE(3035), + [sym_is_pattern_expression] = STATE(3035), + [sym_cast_expression] = STATE(3035), + [sym_checked_expression] = STATE(3035), + [sym_invocation_expression] = STATE(3043), + [sym_switch_expression] = STATE(3035), + [sym_await_expression] = STATE(3043), + [sym_throw_expression] = STATE(3035), + [sym_element_access_expression] = STATE(2415), + [sym_interpolated_string_expression] = STATE(3035), + [sym_member_access_expression] = STATE(2415), + [sym_object_creation_expression] = STATE(3043), + [sym_parenthesized_expression] = STATE(3043), + [sym__parenthesized_lvalue_expression] = STATE(2415), + [sym_lambda_expression] = STATE(3035), + [sym__lambda_expression_init] = STATE(7374), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3035), + [sym_anonymous_method_expression] = STATE(3035), + [sym_anonymous_object_creation_expression] = STATE(3035), + [sym_implicit_array_creation_expression] = STATE(3035), + [sym_implicit_object_creation_expression] = STATE(3035), + [sym_implicit_stackalloc_expression] = STATE(3035), + [sym_initializer_expression] = STATE(3035), + [sym_default_expression] = STATE(3035), + [sym_with_expression] = STATE(3035), + [sym_sizeof_expression] = STATE(3035), + [sym_typeof_expression] = STATE(3035), + [sym_makeref_expression] = STATE(3035), + [sym_ref_expression] = STATE(3035), + [sym_reftype_expression] = STATE(3035), + [sym_refvalue_expression] = STATE(3035), + [sym_stackalloc_expression] = STATE(3035), + [sym_range_expression] = STATE(3035), + [sym_tuple_expression] = STATE(2415), + [sym_literal] = STATE(3035), + [sym_character_literal] = STATE(3037), + [sym_string_literal] = STATE(3037), + [sym_raw_string_literal] = STATE(3037), + [sym_boolean_literal] = STATE(3037), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3035), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(1682), [sym_preproc_endregion] = STATE(1682), [sym_preproc_line] = STATE(1682), @@ -326117,47 +326003,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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3455), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1481), - [anon_sym_LPAREN] = ACTIONS(895), - [anon_sym_ref] = ACTIONS(897), - [anon_sym_LBRACE] = ACTIONS(1487), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1239), + [anon_sym_LPAREN] = ACTIONS(1241), + [anon_sym_ref] = ACTIONS(1243), + [anon_sym_LBRACE] = ACTIONS(1245), + [anon_sym_delegate] = ACTIONS(1247), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1061), + [anon_sym_new] = ACTIONS(1249), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1067), - [anon_sym_BANG] = ACTIONS(1495), - [anon_sym_TILDE] = ACTIONS(1495), - [anon_sym_PLUS_PLUS] = ACTIONS(1495), - [anon_sym_DASH_DASH] = ACTIONS(1495), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1493), - [anon_sym_DASH] = ACTIONS(1493), - [anon_sym_STAR] = ACTIONS(905), - [anon_sym_CARET] = ACTIONS(1495), - [anon_sym_AMP] = ACTIONS(1495), - [anon_sym_this] = ACTIONS(83), + [anon_sym_checked] = ACTIONS(1251), + [anon_sym_BANG] = ACTIONS(1255), + [anon_sym_TILDE] = ACTIONS(1255), + [anon_sym_PLUS_PLUS] = ACTIONS(1255), + [anon_sym_DASH_DASH] = ACTIONS(1255), + [anon_sym_true] = ACTIONS(1257), + [anon_sym_false] = ACTIONS(1257), + [anon_sym_PLUS] = ACTIONS(1253), + [anon_sym_DASH] = ACTIONS(1253), + [anon_sym_STAR] = ACTIONS(1259), + [anon_sym_CARET] = ACTIONS(1255), + [anon_sym_AMP] = ACTIONS(1255), + [anon_sym_this] = ACTIONS(1261), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), + [anon_sym_base] = ACTIONS(1263), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1067), + [sym_predefined_type] = ACTIONS(1265), + [anon_sym_unchecked] = ACTIONS(1251), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1079), + [anon_sym_default] = ACTIONS(1267), + [anon_sym_throw] = ACTIONS(1269), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1081), - [anon_sym_DOT_DOT] = ACTIONS(911), + [anon_sym_await] = ACTIONS(1271), + [anon_sym_DOT_DOT] = ACTIONS(1273), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -326170,19 +326056,19 @@ static const uint16_t ts_parse_table[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(1089), + [anon_sym_stackalloc] = ACTIONS(1275), + [anon_sym_sizeof] = ACTIONS(1277), + [anon_sym_typeof] = ACTIONS(1279), + [anon_sym___makeref] = ACTIONS(1281), + [anon_sym___reftype] = ACTIONS(1283), + [anon_sym___refvalue] = ACTIONS(1285), + [sym_null_literal] = ACTIONS(1287), + [anon_sym_SQUOTE] = ACTIONS(1289), + [sym_integer_literal] = ACTIONS(1287), + [sym_real_literal] = ACTIONS(1291), + [anon_sym_DQUOTE] = ACTIONS(1293), + [sym_verbatim_string_literal] = ACTIONS(1291), + [aux_sym_preproc_if_token1] = ACTIONS(1295), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -326193,90 +326079,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(151), - [sym_interpolation_verbatim_start] = ACTIONS(153), - [sym_interpolation_raw_start] = ACTIONS(155), - [sym_raw_string_start] = ACTIONS(157), + [sym_interpolation_regular_start] = ACTIONS(1297), + [sym_interpolation_verbatim_start] = ACTIONS(1299), + [sym_interpolation_raw_start] = ACTIONS(1301), + [sym_raw_string_start] = ACTIONS(1303), }, [1683] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(5910), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2247), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(5452), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3379), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3080), - [sym_postfix_unary_expression] = STATE(3111), - [sym_prefix_unary_expression] = STATE(3111), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6154), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3080), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3111), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3080), - [sym_member_access_expression] = STATE(2484), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3111), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7575), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(3080), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3080), - [sym_typeof_expression] = STATE(3080), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2484), - [sym_literal] = STATE(3080), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2416), + [sym__name] = STATE(5890), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2193), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(4062), + [sym_non_lvalue_expression] = STATE(3040), + [sym_lvalue_expression] = STATE(3109), + [sym__expression_statement_expression] = STATE(3035), + [sym_assignment_expression] = STATE(3043), + [sym_binary_expression] = STATE(3035), + [sym_postfix_unary_expression] = STATE(3043), + [sym_prefix_unary_expression] = STATE(3043), + [sym__pointer_indirection_expression] = STATE(2415), + [sym_query_expression] = STATE(3035), + [sym_from_clause] = STATE(6138), + [sym_conditional_expression] = STATE(3035), + [sym_conditional_access_expression] = STATE(3035), + [sym_as_expression] = STATE(3035), + [sym_is_expression] = STATE(3035), + [sym_is_pattern_expression] = STATE(3035), + [sym_cast_expression] = STATE(3035), + [sym_checked_expression] = STATE(3035), + [sym_invocation_expression] = STATE(3043), + [sym_switch_expression] = STATE(3035), + [sym_await_expression] = STATE(3043), + [sym_throw_expression] = STATE(3035), + [sym_element_access_expression] = STATE(2415), + [sym_interpolated_string_expression] = STATE(3035), + [sym_member_access_expression] = STATE(2415), + [sym_object_creation_expression] = STATE(3043), + [sym_parenthesized_expression] = STATE(3043), + [sym__parenthesized_lvalue_expression] = STATE(2415), + [sym_lambda_expression] = STATE(3035), + [sym__lambda_expression_init] = STATE(7374), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3035), + [sym_anonymous_method_expression] = STATE(3035), + [sym_anonymous_object_creation_expression] = STATE(3035), + [sym_implicit_array_creation_expression] = STATE(3035), + [sym_implicit_object_creation_expression] = STATE(3035), + [sym_implicit_stackalloc_expression] = STATE(3035), + [sym_initializer_expression] = STATE(3035), + [sym_default_expression] = STATE(3035), + [sym_with_expression] = STATE(3035), + [sym_sizeof_expression] = STATE(3035), + [sym_typeof_expression] = STATE(3035), + [sym_makeref_expression] = STATE(3035), + [sym_ref_expression] = STATE(3035), + [sym_reftype_expression] = STATE(3035), + [sym_refvalue_expression] = STATE(3035), + [sym_stackalloc_expression] = STATE(3035), + [sym_range_expression] = STATE(3035), + [sym_tuple_expression] = STATE(2415), + [sym_literal] = STATE(3035), + [sym_character_literal] = STATE(3037), + [sym_string_literal] = STATE(3037), + [sym_raw_string_literal] = STATE(3037), + [sym_boolean_literal] = STATE(3037), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3035), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(1683), [sym_preproc_endregion] = STATE(1683), [sym_preproc_line] = STATE(1683), @@ -326286,47 +326172,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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3455), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1481), - [anon_sym_LPAREN] = ACTIONS(895), - [anon_sym_ref] = ACTIONS(897), - [anon_sym_LBRACE] = ACTIONS(1487), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1239), + [anon_sym_LPAREN] = ACTIONS(1241), + [anon_sym_ref] = ACTIONS(1243), + [anon_sym_LBRACE] = ACTIONS(1245), + [anon_sym_delegate] = ACTIONS(1247), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1061), + [anon_sym_new] = ACTIONS(1249), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1067), - [anon_sym_BANG] = ACTIONS(1495), - [anon_sym_TILDE] = ACTIONS(1495), - [anon_sym_PLUS_PLUS] = ACTIONS(1495), - [anon_sym_DASH_DASH] = ACTIONS(1495), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1493), - [anon_sym_DASH] = ACTIONS(1493), - [anon_sym_STAR] = ACTIONS(905), - [anon_sym_CARET] = ACTIONS(1495), - [anon_sym_AMP] = ACTIONS(1495), - [anon_sym_this] = ACTIONS(83), + [anon_sym_checked] = ACTIONS(1251), + [anon_sym_BANG] = ACTIONS(1255), + [anon_sym_TILDE] = ACTIONS(1255), + [anon_sym_PLUS_PLUS] = ACTIONS(1255), + [anon_sym_DASH_DASH] = ACTIONS(1255), + [anon_sym_true] = ACTIONS(1257), + [anon_sym_false] = ACTIONS(1257), + [anon_sym_PLUS] = ACTIONS(1253), + [anon_sym_DASH] = ACTIONS(1253), + [anon_sym_STAR] = ACTIONS(1259), + [anon_sym_CARET] = ACTIONS(1255), + [anon_sym_AMP] = ACTIONS(1255), + [anon_sym_this] = ACTIONS(1261), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), + [anon_sym_base] = ACTIONS(1263), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1067), + [sym_predefined_type] = ACTIONS(1265), + [anon_sym_unchecked] = ACTIONS(1251), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1079), + [anon_sym_default] = ACTIONS(1267), + [anon_sym_throw] = ACTIONS(1269), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1081), - [anon_sym_DOT_DOT] = ACTIONS(911), + [anon_sym_await] = ACTIONS(1271), + [anon_sym_DOT_DOT] = ACTIONS(1273), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -326339,19 +326225,19 @@ static const uint16_t ts_parse_table[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(1089), + [anon_sym_stackalloc] = ACTIONS(1275), + [anon_sym_sizeof] = ACTIONS(1277), + [anon_sym_typeof] = ACTIONS(1279), + [anon_sym___makeref] = ACTIONS(1281), + [anon_sym___reftype] = ACTIONS(1283), + [anon_sym___refvalue] = ACTIONS(1285), + [sym_null_literal] = ACTIONS(1287), + [anon_sym_SQUOTE] = ACTIONS(1289), + [sym_integer_literal] = ACTIONS(1287), + [sym_real_literal] = ACTIONS(1291), + [anon_sym_DQUOTE] = ACTIONS(1293), + [sym_verbatim_string_literal] = ACTIONS(1291), + [aux_sym_preproc_if_token1] = ACTIONS(1295), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -326362,90 +326248,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(151), - [sym_interpolation_verbatim_start] = ACTIONS(153), - [sym_interpolation_raw_start] = ACTIONS(155), - [sym_raw_string_start] = ACTIONS(157), + [sym_interpolation_regular_start] = ACTIONS(1297), + [sym_interpolation_verbatim_start] = ACTIONS(1299), + [sym_interpolation_raw_start] = ACTIONS(1301), + [sym_raw_string_start] = ACTIONS(1303), }, [1684] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(5910), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2247), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(5453), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3379), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3080), - [sym_postfix_unary_expression] = STATE(3111), - [sym_prefix_unary_expression] = STATE(3111), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6154), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3080), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3111), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3080), - [sym_member_access_expression] = STATE(2484), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3111), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7575), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(3080), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3080), - [sym_typeof_expression] = STATE(3080), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2484), - [sym_literal] = STATE(3080), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2901), + [sym__name] = STATE(5889), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2349), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(3555), + [sym_non_lvalue_expression] = STATE(3685), + [sym_lvalue_expression] = STATE(2890), + [sym__expression_statement_expression] = STATE(3836), + [sym_assignment_expression] = STATE(3689), + [sym_binary_expression] = STATE(3836), + [sym_postfix_unary_expression] = STATE(3689), + [sym_prefix_unary_expression] = STATE(3689), + [sym__pointer_indirection_expression] = STATE(2906), + [sym_query_expression] = STATE(3836), + [sym_from_clause] = STATE(6139), + [sym_conditional_expression] = STATE(3836), + [sym_conditional_access_expression] = STATE(3836), + [sym_as_expression] = STATE(3836), + [sym_is_expression] = STATE(3836), + [sym_is_pattern_expression] = STATE(3836), + [sym_cast_expression] = STATE(3836), + [sym_checked_expression] = STATE(3836), + [sym_invocation_expression] = STATE(3689), + [sym_switch_expression] = STATE(3836), + [sym_await_expression] = STATE(3689), + [sym_throw_expression] = STATE(3836), + [sym_element_access_expression] = STATE(2906), + [sym_interpolated_string_expression] = STATE(3836), + [sym_member_access_expression] = STATE(2906), + [sym_object_creation_expression] = STATE(3689), + [sym_parenthesized_expression] = STATE(3689), + [sym__parenthesized_lvalue_expression] = STATE(2906), + [sym_lambda_expression] = STATE(3836), + [sym__lambda_expression_init] = STATE(7456), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3836), + [sym_anonymous_method_expression] = STATE(3836), + [sym_anonymous_object_creation_expression] = STATE(3836), + [sym_implicit_array_creation_expression] = STATE(3836), + [sym_implicit_object_creation_expression] = STATE(3836), + [sym_implicit_stackalloc_expression] = STATE(3836), + [sym_initializer_expression] = STATE(3836), + [sym_default_expression] = STATE(3836), + [sym_with_expression] = STATE(3836), + [sym_sizeof_expression] = STATE(3836), + [sym_typeof_expression] = STATE(3836), + [sym_makeref_expression] = STATE(3836), + [sym_ref_expression] = STATE(3836), + [sym_reftype_expression] = STATE(3836), + [sym_refvalue_expression] = STATE(3836), + [sym_stackalloc_expression] = STATE(3836), + [sym_range_expression] = STATE(3836), + [sym_tuple_expression] = STATE(2906), + [sym_literal] = STATE(3836), + [sym_character_literal] = STATE(3843), + [sym_string_literal] = STATE(3843), + [sym_raw_string_literal] = STATE(3843), + [sym_boolean_literal] = STATE(3843), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3836), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(1684), [sym_preproc_endregion] = STATE(1684), [sym_preproc_line] = STATE(1684), @@ -326455,47 +326341,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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3477), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1481), - [anon_sym_LPAREN] = ACTIONS(895), - [anon_sym_ref] = ACTIONS(897), - [anon_sym_LBRACE] = ACTIONS(1487), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1655), + [anon_sym_LPAREN] = ACTIONS(1755), + [anon_sym_ref] = ACTIONS(1757), + [anon_sym_LBRACE] = ACTIONS(1661), + [anon_sym_delegate] = ACTIONS(1663), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1061), + [anon_sym_new] = ACTIONS(1759), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1067), - [anon_sym_BANG] = ACTIONS(1495), - [anon_sym_TILDE] = ACTIONS(1495), - [anon_sym_PLUS_PLUS] = ACTIONS(1495), - [anon_sym_DASH_DASH] = ACTIONS(1495), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1493), - [anon_sym_DASH] = ACTIONS(1493), - [anon_sym_STAR] = ACTIONS(905), - [anon_sym_CARET] = ACTIONS(1495), - [anon_sym_AMP] = ACTIONS(1495), - [anon_sym_this] = ACTIONS(83), + [anon_sym_checked] = ACTIONS(1667), + [anon_sym_BANG] = ACTIONS(1763), + [anon_sym_TILDE] = ACTIONS(1763), + [anon_sym_PLUS_PLUS] = ACTIONS(1763), + [anon_sym_DASH_DASH] = ACTIONS(1763), + [anon_sym_true] = ACTIONS(1673), + [anon_sym_false] = ACTIONS(1673), + [anon_sym_PLUS] = ACTIONS(1761), + [anon_sym_DASH] = ACTIONS(1761), + [anon_sym_STAR] = ACTIONS(1765), + [anon_sym_CARET] = ACTIONS(1763), + [anon_sym_AMP] = ACTIONS(1763), + [anon_sym_this] = ACTIONS(1677), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), + [anon_sym_base] = ACTIONS(1679), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1067), + [sym_predefined_type] = ACTIONS(1681), + [anon_sym_unchecked] = ACTIONS(1667), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1079), + [anon_sym_default] = ACTIONS(1683), + [anon_sym_throw] = ACTIONS(1767), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1081), - [anon_sym_DOT_DOT] = ACTIONS(911), + [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), @@ -326508,19 +326394,19 @@ static const uint16_t ts_parse_table[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(1089), + [anon_sym_stackalloc] = ACTIONS(1691), + [anon_sym_sizeof] = ACTIONS(1693), + [anon_sym_typeof] = ACTIONS(1695), + [anon_sym___makeref] = ACTIONS(1697), + [anon_sym___reftype] = ACTIONS(1699), + [anon_sym___refvalue] = ACTIONS(1701), + [sym_null_literal] = ACTIONS(1703), + [anon_sym_SQUOTE] = ACTIONS(1705), + [sym_integer_literal] = ACTIONS(1703), + [sym_real_literal] = ACTIONS(1707), + [anon_sym_DQUOTE] = ACTIONS(1709), + [sym_verbatim_string_literal] = ACTIONS(1707), + [aux_sym_preproc_if_token1] = ACTIONS(1711), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -326531,90 +326417,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(151), - [sym_interpolation_verbatim_start] = ACTIONS(153), - [sym_interpolation_raw_start] = ACTIONS(155), - [sym_raw_string_start] = ACTIONS(157), + [sym_interpolation_regular_start] = ACTIONS(1713), + [sym_interpolation_verbatim_start] = ACTIONS(1715), + [sym_interpolation_raw_start] = ACTIONS(1717), + [sym_raw_string_start] = ACTIONS(1719), }, [1685] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(5910), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2247), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(5454), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3379), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3080), - [sym_postfix_unary_expression] = STATE(3111), - [sym_prefix_unary_expression] = STATE(3111), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6154), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3080), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3111), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3080), - [sym_member_access_expression] = STATE(2484), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3111), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7575), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(3080), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3080), - [sym_typeof_expression] = STATE(3080), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2484), - [sym_literal] = STATE(3080), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2901), + [sym__name] = STATE(5889), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2349), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(3560), + [sym_non_lvalue_expression] = STATE(3685), + [sym_lvalue_expression] = STATE(2890), + [sym__expression_statement_expression] = STATE(3836), + [sym_assignment_expression] = STATE(3689), + [sym_binary_expression] = STATE(3836), + [sym_postfix_unary_expression] = STATE(3689), + [sym_prefix_unary_expression] = STATE(3689), + [sym__pointer_indirection_expression] = STATE(2906), + [sym_query_expression] = STATE(3836), + [sym_from_clause] = STATE(6139), + [sym_conditional_expression] = STATE(3836), + [sym_conditional_access_expression] = STATE(3836), + [sym_as_expression] = STATE(3836), + [sym_is_expression] = STATE(3836), + [sym_is_pattern_expression] = STATE(3836), + [sym_cast_expression] = STATE(3836), + [sym_checked_expression] = STATE(3836), + [sym_invocation_expression] = STATE(3689), + [sym_switch_expression] = STATE(3836), + [sym_await_expression] = STATE(3689), + [sym_throw_expression] = STATE(3836), + [sym_element_access_expression] = STATE(2906), + [sym_interpolated_string_expression] = STATE(3836), + [sym_member_access_expression] = STATE(2906), + [sym_object_creation_expression] = STATE(3689), + [sym_parenthesized_expression] = STATE(3689), + [sym__parenthesized_lvalue_expression] = STATE(2906), + [sym_lambda_expression] = STATE(3836), + [sym__lambda_expression_init] = STATE(7456), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3836), + [sym_anonymous_method_expression] = STATE(3836), + [sym_anonymous_object_creation_expression] = STATE(3836), + [sym_implicit_array_creation_expression] = STATE(3836), + [sym_implicit_object_creation_expression] = STATE(3836), + [sym_implicit_stackalloc_expression] = STATE(3836), + [sym_initializer_expression] = STATE(3836), + [sym_default_expression] = STATE(3836), + [sym_with_expression] = STATE(3836), + [sym_sizeof_expression] = STATE(3836), + [sym_typeof_expression] = STATE(3836), + [sym_makeref_expression] = STATE(3836), + [sym_ref_expression] = STATE(3836), + [sym_reftype_expression] = STATE(3836), + [sym_refvalue_expression] = STATE(3836), + [sym_stackalloc_expression] = STATE(3836), + [sym_range_expression] = STATE(3836), + [sym_tuple_expression] = STATE(2906), + [sym_literal] = STATE(3836), + [sym_character_literal] = STATE(3843), + [sym_string_literal] = STATE(3843), + [sym_raw_string_literal] = STATE(3843), + [sym_boolean_literal] = STATE(3843), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3836), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(1685), [sym_preproc_endregion] = STATE(1685), [sym_preproc_line] = STATE(1685), @@ -326624,47 +326510,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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3477), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1481), - [anon_sym_LPAREN] = ACTIONS(895), - [anon_sym_ref] = ACTIONS(897), - [anon_sym_LBRACE] = ACTIONS(1487), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1655), + [anon_sym_LPAREN] = ACTIONS(1755), + [anon_sym_ref] = ACTIONS(1757), + [anon_sym_LBRACE] = ACTIONS(1661), + [anon_sym_delegate] = ACTIONS(1663), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1061), + [anon_sym_new] = ACTIONS(1759), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1067), - [anon_sym_BANG] = ACTIONS(1495), - [anon_sym_TILDE] = ACTIONS(1495), - [anon_sym_PLUS_PLUS] = ACTIONS(1495), - [anon_sym_DASH_DASH] = ACTIONS(1495), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1493), - [anon_sym_DASH] = ACTIONS(1493), - [anon_sym_STAR] = ACTIONS(905), - [anon_sym_CARET] = ACTIONS(1495), - [anon_sym_AMP] = ACTIONS(1495), - [anon_sym_this] = ACTIONS(83), + [anon_sym_checked] = ACTIONS(1667), + [anon_sym_BANG] = ACTIONS(1763), + [anon_sym_TILDE] = ACTIONS(1763), + [anon_sym_PLUS_PLUS] = ACTIONS(1763), + [anon_sym_DASH_DASH] = ACTIONS(1763), + [anon_sym_true] = ACTIONS(1673), + [anon_sym_false] = ACTIONS(1673), + [anon_sym_PLUS] = ACTIONS(1761), + [anon_sym_DASH] = ACTIONS(1761), + [anon_sym_STAR] = ACTIONS(1765), + [anon_sym_CARET] = ACTIONS(1763), + [anon_sym_AMP] = ACTIONS(1763), + [anon_sym_this] = ACTIONS(1677), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), + [anon_sym_base] = ACTIONS(1679), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1067), + [sym_predefined_type] = ACTIONS(1681), + [anon_sym_unchecked] = ACTIONS(1667), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1079), + [anon_sym_default] = ACTIONS(1683), + [anon_sym_throw] = ACTIONS(1767), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1081), - [anon_sym_DOT_DOT] = ACTIONS(911), + [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), @@ -326677,19 +326563,19 @@ static const uint16_t ts_parse_table[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(1089), + [anon_sym_stackalloc] = ACTIONS(1691), + [anon_sym_sizeof] = ACTIONS(1693), + [anon_sym_typeof] = ACTIONS(1695), + [anon_sym___makeref] = ACTIONS(1697), + [anon_sym___reftype] = ACTIONS(1699), + [anon_sym___refvalue] = ACTIONS(1701), + [sym_null_literal] = ACTIONS(1703), + [anon_sym_SQUOTE] = ACTIONS(1705), + [sym_integer_literal] = ACTIONS(1703), + [sym_real_literal] = ACTIONS(1707), + [anon_sym_DQUOTE] = ACTIONS(1709), + [sym_verbatim_string_literal] = ACTIONS(1707), + [aux_sym_preproc_if_token1] = ACTIONS(1711), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -326700,90 +326586,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(151), - [sym_interpolation_verbatim_start] = ACTIONS(153), - [sym_interpolation_raw_start] = ACTIONS(155), - [sym_raw_string_start] = ACTIONS(157), + [sym_interpolation_regular_start] = ACTIONS(1713), + [sym_interpolation_verbatim_start] = ACTIONS(1715), + [sym_interpolation_raw_start] = ACTIONS(1717), + [sym_raw_string_start] = ACTIONS(1719), }, [1686] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2762), - [sym__name] = STATE(5892), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2316), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(4604), - [sym_non_lvalue_expression] = STATE(3438), - [sym_lvalue_expression] = STATE(3500), - [sym__expression_statement_expression] = STATE(3362), - [sym_assignment_expression] = STATE(3449), - [sym_binary_expression] = STATE(3362), - [sym_postfix_unary_expression] = STATE(3449), - [sym_prefix_unary_expression] = STATE(3449), - [sym__pointer_indirection_expression] = STATE(2747), - [sym_query_expression] = STATE(3362), - [sym_from_clause] = STATE(6147), - [sym_conditional_expression] = STATE(3362), - [sym_conditional_access_expression] = STATE(3362), - [sym_as_expression] = STATE(3362), - [sym_is_expression] = STATE(3362), - [sym_is_pattern_expression] = STATE(3362), - [sym_cast_expression] = STATE(3362), - [sym_checked_expression] = STATE(3362), - [sym_invocation_expression] = STATE(3449), - [sym_switch_expression] = STATE(3362), - [sym_await_expression] = STATE(3449), - [sym_throw_expression] = STATE(3362), - [sym_element_access_expression] = STATE(2747), - [sym_interpolated_string_expression] = STATE(3362), - [sym_member_access_expression] = STATE(2747), - [sym_object_creation_expression] = STATE(3449), - [sym_parenthesized_expression] = STATE(3449), - [sym__parenthesized_lvalue_expression] = STATE(2747), - [sym_lambda_expression] = STATE(3362), - [sym__lambda_expression_init] = STATE(7516), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3362), - [sym_anonymous_method_expression] = STATE(3362), - [sym_anonymous_object_creation_expression] = STATE(3362), - [sym_implicit_array_creation_expression] = STATE(3362), - [sym_implicit_object_creation_expression] = STATE(3362), - [sym_implicit_stackalloc_expression] = STATE(3362), - [sym_initializer_expression] = STATE(3362), - [sym_default_expression] = STATE(3362), - [sym_with_expression] = STATE(3362), - [sym_sizeof_expression] = STATE(3362), - [sym_typeof_expression] = STATE(3362), - [sym_makeref_expression] = STATE(3362), - [sym_ref_expression] = STATE(3362), - [sym_reftype_expression] = STATE(3362), - [sym_refvalue_expression] = STATE(3362), - [sym_stackalloc_expression] = STATE(3362), - [sym_range_expression] = STATE(3362), - [sym_tuple_expression] = STATE(2747), - [sym_literal] = STATE(3362), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2267), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3362), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2416), + [sym__name] = STATE(5890), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2193), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(4075), + [sym_non_lvalue_expression] = STATE(3040), + [sym_lvalue_expression] = STATE(3109), + [sym__expression_statement_expression] = STATE(3035), + [sym_assignment_expression] = STATE(3043), + [sym_binary_expression] = STATE(3035), + [sym_postfix_unary_expression] = STATE(3043), + [sym_prefix_unary_expression] = STATE(3043), + [sym__pointer_indirection_expression] = STATE(2415), + [sym_query_expression] = STATE(3035), + [sym_from_clause] = STATE(6138), + [sym_conditional_expression] = STATE(3035), + [sym_conditional_access_expression] = STATE(3035), + [sym_as_expression] = STATE(3035), + [sym_is_expression] = STATE(3035), + [sym_is_pattern_expression] = STATE(3035), + [sym_cast_expression] = STATE(3035), + [sym_checked_expression] = STATE(3035), + [sym_invocation_expression] = STATE(3043), + [sym_switch_expression] = STATE(3035), + [sym_await_expression] = STATE(3043), + [sym_throw_expression] = STATE(3035), + [sym_element_access_expression] = STATE(2415), + [sym_interpolated_string_expression] = STATE(3035), + [sym_member_access_expression] = STATE(2415), + [sym_object_creation_expression] = STATE(3043), + [sym_parenthesized_expression] = STATE(3043), + [sym__parenthesized_lvalue_expression] = STATE(2415), + [sym_lambda_expression] = STATE(3035), + [sym__lambda_expression_init] = STATE(7374), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3035), + [sym_anonymous_method_expression] = STATE(3035), + [sym_anonymous_object_creation_expression] = STATE(3035), + [sym_implicit_array_creation_expression] = STATE(3035), + [sym_implicit_object_creation_expression] = STATE(3035), + [sym_implicit_stackalloc_expression] = STATE(3035), + [sym_initializer_expression] = STATE(3035), + [sym_default_expression] = STATE(3035), + [sym_with_expression] = STATE(3035), + [sym_sizeof_expression] = STATE(3035), + [sym_typeof_expression] = STATE(3035), + [sym_makeref_expression] = STATE(3035), + [sym_ref_expression] = STATE(3035), + [sym_reftype_expression] = STATE(3035), + [sym_refvalue_expression] = STATE(3035), + [sym_stackalloc_expression] = STATE(3035), + [sym_range_expression] = STATE(3035), + [sym_tuple_expression] = STATE(2415), + [sym_literal] = STATE(3035), + [sym_character_literal] = STATE(3037), + [sym_string_literal] = STATE(3037), + [sym_raw_string_literal] = STATE(3037), + [sym_boolean_literal] = STATE(3037), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3035), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(1686), [sym_preproc_endregion] = STATE(1686), [sym_preproc_line] = STATE(1686), @@ -326793,47 +326679,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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3385), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3455), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1307), - [anon_sym_LPAREN] = ACTIONS(1609), - [anon_sym_ref] = ACTIONS(1611), - [anon_sym_LBRACE] = ACTIONS(1313), - [anon_sym_delegate] = ACTIONS(1315), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1239), + [anon_sym_LPAREN] = ACTIONS(1241), + [anon_sym_ref] = ACTIONS(1243), + [anon_sym_LBRACE] = ACTIONS(1245), + [anon_sym_delegate] = ACTIONS(1247), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1613), + [anon_sym_new] = ACTIONS(1249), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1319), - [anon_sym_BANG] = ACTIONS(1617), - [anon_sym_TILDE] = ACTIONS(1617), - [anon_sym_PLUS_PLUS] = ACTIONS(1617), - [anon_sym_DASH_DASH] = ACTIONS(1617), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1615), - [anon_sym_DASH] = ACTIONS(1615), - [anon_sym_STAR] = ACTIONS(1619), - [anon_sym_CARET] = ACTIONS(1617), - [anon_sym_AMP] = ACTIONS(1617), - [anon_sym_this] = ACTIONS(1323), + [anon_sym_checked] = ACTIONS(1251), + [anon_sym_BANG] = ACTIONS(1255), + [anon_sym_TILDE] = ACTIONS(1255), + [anon_sym_PLUS_PLUS] = ACTIONS(1255), + [anon_sym_DASH_DASH] = ACTIONS(1255), + [anon_sym_true] = ACTIONS(1257), + [anon_sym_false] = ACTIONS(1257), + [anon_sym_PLUS] = ACTIONS(1253), + [anon_sym_DASH] = ACTIONS(1253), + [anon_sym_STAR] = ACTIONS(1259), + [anon_sym_CARET] = ACTIONS(1255), + [anon_sym_AMP] = ACTIONS(1255), + [anon_sym_this] = ACTIONS(1261), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1325), + [anon_sym_base] = ACTIONS(1263), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1319), + [sym_predefined_type] = ACTIONS(1265), + [anon_sym_unchecked] = ACTIONS(1251), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1621), + [anon_sym_default] = ACTIONS(1267), + [anon_sym_throw] = ACTIONS(1269), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1623), - [anon_sym_DOT_DOT] = ACTIONS(1625), + [anon_sym_await] = ACTIONS(1271), + [anon_sym_DOT_DOT] = ACTIONS(1273), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -326846,19 +326732,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1333), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(1335), - [anon_sym___reftype] = ACTIONS(1337), - [anon_sym___refvalue] = ACTIONS(1339), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1341), + [anon_sym_stackalloc] = ACTIONS(1275), + [anon_sym_sizeof] = ACTIONS(1277), + [anon_sym_typeof] = ACTIONS(1279), + [anon_sym___makeref] = ACTIONS(1281), + [anon_sym___reftype] = ACTIONS(1283), + [anon_sym___refvalue] = ACTIONS(1285), + [sym_null_literal] = ACTIONS(1287), + [anon_sym_SQUOTE] = ACTIONS(1289), + [sym_integer_literal] = ACTIONS(1287), + [sym_real_literal] = ACTIONS(1291), + [anon_sym_DQUOTE] = ACTIONS(1293), + [sym_verbatim_string_literal] = ACTIONS(1291), + [aux_sym_preproc_if_token1] = ACTIONS(1295), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -326869,90 +326755,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(151), - [sym_interpolation_verbatim_start] = ACTIONS(153), - [sym_interpolation_raw_start] = ACTIONS(155), - [sym_raw_string_start] = ACTIONS(157), + [sym_interpolation_regular_start] = ACTIONS(1297), + [sym_interpolation_verbatim_start] = ACTIONS(1299), + [sym_interpolation_raw_start] = ACTIONS(1301), + [sym_raw_string_start] = ACTIONS(1303), }, [1687] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2762), - [sym__name] = STATE(5892), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2316), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(4605), - [sym_non_lvalue_expression] = STATE(3438), - [sym_lvalue_expression] = STATE(3500), - [sym__expression_statement_expression] = STATE(3362), - [sym_assignment_expression] = STATE(3449), - [sym_binary_expression] = STATE(3362), - [sym_postfix_unary_expression] = STATE(3449), - [sym_prefix_unary_expression] = STATE(3449), - [sym__pointer_indirection_expression] = STATE(2747), - [sym_query_expression] = STATE(3362), - [sym_from_clause] = STATE(6147), - [sym_conditional_expression] = STATE(3362), - [sym_conditional_access_expression] = STATE(3362), - [sym_as_expression] = STATE(3362), - [sym_is_expression] = STATE(3362), - [sym_is_pattern_expression] = STATE(3362), - [sym_cast_expression] = STATE(3362), - [sym_checked_expression] = STATE(3362), - [sym_invocation_expression] = STATE(3449), - [sym_switch_expression] = STATE(3362), - [sym_await_expression] = STATE(3449), - [sym_throw_expression] = STATE(3362), - [sym_element_access_expression] = STATE(2747), - [sym_interpolated_string_expression] = STATE(3362), - [sym_member_access_expression] = STATE(2747), - [sym_object_creation_expression] = STATE(3449), - [sym_parenthesized_expression] = STATE(3449), - [sym__parenthesized_lvalue_expression] = STATE(2747), - [sym_lambda_expression] = STATE(3362), - [sym__lambda_expression_init] = STATE(7516), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3362), - [sym_anonymous_method_expression] = STATE(3362), - [sym_anonymous_object_creation_expression] = STATE(3362), - [sym_implicit_array_creation_expression] = STATE(3362), - [sym_implicit_object_creation_expression] = STATE(3362), - [sym_implicit_stackalloc_expression] = STATE(3362), - [sym_initializer_expression] = STATE(3362), - [sym_default_expression] = STATE(3362), - [sym_with_expression] = STATE(3362), - [sym_sizeof_expression] = STATE(3362), - [sym_typeof_expression] = STATE(3362), - [sym_makeref_expression] = STATE(3362), - [sym_ref_expression] = STATE(3362), - [sym_reftype_expression] = STATE(3362), - [sym_refvalue_expression] = STATE(3362), - [sym_stackalloc_expression] = STATE(3362), - [sym_range_expression] = STATE(3362), - [sym_tuple_expression] = STATE(2747), - [sym_literal] = STATE(3362), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2267), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3362), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2901), + [sym__name] = STATE(5889), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2349), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(3623), + [sym_non_lvalue_expression] = STATE(3685), + [sym_lvalue_expression] = STATE(2890), + [sym__expression_statement_expression] = STATE(3836), + [sym_assignment_expression] = STATE(3689), + [sym_binary_expression] = STATE(3836), + [sym_postfix_unary_expression] = STATE(3689), + [sym_prefix_unary_expression] = STATE(3689), + [sym__pointer_indirection_expression] = STATE(2906), + [sym_query_expression] = STATE(3836), + [sym_from_clause] = STATE(6139), + [sym_conditional_expression] = STATE(3836), + [sym_conditional_access_expression] = STATE(3836), + [sym_as_expression] = STATE(3836), + [sym_is_expression] = STATE(3836), + [sym_is_pattern_expression] = STATE(3836), + [sym_cast_expression] = STATE(3836), + [sym_checked_expression] = STATE(3836), + [sym_invocation_expression] = STATE(3689), + [sym_switch_expression] = STATE(3836), + [sym_await_expression] = STATE(3689), + [sym_throw_expression] = STATE(3836), + [sym_element_access_expression] = STATE(2906), + [sym_interpolated_string_expression] = STATE(3836), + [sym_member_access_expression] = STATE(2906), + [sym_object_creation_expression] = STATE(3689), + [sym_parenthesized_expression] = STATE(3689), + [sym__parenthesized_lvalue_expression] = STATE(2906), + [sym_lambda_expression] = STATE(3836), + [sym__lambda_expression_init] = STATE(7456), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3836), + [sym_anonymous_method_expression] = STATE(3836), + [sym_anonymous_object_creation_expression] = STATE(3836), + [sym_implicit_array_creation_expression] = STATE(3836), + [sym_implicit_object_creation_expression] = STATE(3836), + [sym_implicit_stackalloc_expression] = STATE(3836), + [sym_initializer_expression] = STATE(3836), + [sym_default_expression] = STATE(3836), + [sym_with_expression] = STATE(3836), + [sym_sizeof_expression] = STATE(3836), + [sym_typeof_expression] = STATE(3836), + [sym_makeref_expression] = STATE(3836), + [sym_ref_expression] = STATE(3836), + [sym_reftype_expression] = STATE(3836), + [sym_refvalue_expression] = STATE(3836), + [sym_stackalloc_expression] = STATE(3836), + [sym_range_expression] = STATE(3836), + [sym_tuple_expression] = STATE(2906), + [sym_literal] = STATE(3836), + [sym_character_literal] = STATE(3843), + [sym_string_literal] = STATE(3843), + [sym_raw_string_literal] = STATE(3843), + [sym_boolean_literal] = STATE(3843), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3836), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(1687), [sym_preproc_endregion] = STATE(1687), [sym_preproc_line] = STATE(1687), @@ -326962,47 +326848,47 @@ 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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3385), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3477), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1307), - [anon_sym_LPAREN] = ACTIONS(1609), - [anon_sym_ref] = ACTIONS(1611), - [anon_sym_LBRACE] = ACTIONS(1313), - [anon_sym_delegate] = ACTIONS(1315), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1655), + [anon_sym_LPAREN] = ACTIONS(1755), + [anon_sym_ref] = ACTIONS(1757), + [anon_sym_LBRACE] = ACTIONS(1661), + [anon_sym_delegate] = ACTIONS(1663), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1613), + [anon_sym_new] = ACTIONS(1759), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1319), - [anon_sym_BANG] = ACTIONS(1617), - [anon_sym_TILDE] = ACTIONS(1617), - [anon_sym_PLUS_PLUS] = ACTIONS(1617), - [anon_sym_DASH_DASH] = ACTIONS(1617), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1615), - [anon_sym_DASH] = ACTIONS(1615), - [anon_sym_STAR] = ACTIONS(1619), - [anon_sym_CARET] = ACTIONS(1617), - [anon_sym_AMP] = ACTIONS(1617), - [anon_sym_this] = ACTIONS(1323), + [anon_sym_checked] = ACTIONS(1667), + [anon_sym_BANG] = ACTIONS(1763), + [anon_sym_TILDE] = ACTIONS(1763), + [anon_sym_PLUS_PLUS] = ACTIONS(1763), + [anon_sym_DASH_DASH] = ACTIONS(1763), + [anon_sym_true] = ACTIONS(1673), + [anon_sym_false] = ACTIONS(1673), + [anon_sym_PLUS] = ACTIONS(1761), + [anon_sym_DASH] = ACTIONS(1761), + [anon_sym_STAR] = ACTIONS(1765), + [anon_sym_CARET] = ACTIONS(1763), + [anon_sym_AMP] = ACTIONS(1763), + [anon_sym_this] = ACTIONS(1677), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1325), + [anon_sym_base] = ACTIONS(1679), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1319), + [sym_predefined_type] = ACTIONS(1681), + [anon_sym_unchecked] = ACTIONS(1667), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1621), + [anon_sym_default] = ACTIONS(1683), + [anon_sym_throw] = ACTIONS(1767), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1623), - [anon_sym_DOT_DOT] = ACTIONS(1625), + [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), @@ -327015,19 +326901,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1333), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(1335), - [anon_sym___reftype] = ACTIONS(1337), - [anon_sym___refvalue] = ACTIONS(1339), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1341), + [anon_sym_stackalloc] = ACTIONS(1691), + [anon_sym_sizeof] = ACTIONS(1693), + [anon_sym_typeof] = ACTIONS(1695), + [anon_sym___makeref] = ACTIONS(1697), + [anon_sym___reftype] = ACTIONS(1699), + [anon_sym___refvalue] = ACTIONS(1701), + [sym_null_literal] = ACTIONS(1703), + [anon_sym_SQUOTE] = ACTIONS(1705), + [sym_integer_literal] = ACTIONS(1703), + [sym_real_literal] = ACTIONS(1707), + [anon_sym_DQUOTE] = ACTIONS(1709), + [sym_verbatim_string_literal] = ACTIONS(1707), + [aux_sym_preproc_if_token1] = ACTIONS(1711), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -327038,90 +326924,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(151), - [sym_interpolation_verbatim_start] = ACTIONS(153), - [sym_interpolation_raw_start] = ACTIONS(155), - [sym_raw_string_start] = ACTIONS(157), + [sym_interpolation_regular_start] = ACTIONS(1713), + [sym_interpolation_verbatim_start] = ACTIONS(1715), + [sym_interpolation_raw_start] = ACTIONS(1717), + [sym_raw_string_start] = ACTIONS(1719), }, [1688] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2762), - [sym__name] = STATE(5892), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2316), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(4606), - [sym_non_lvalue_expression] = STATE(3438), - [sym_lvalue_expression] = STATE(3500), - [sym__expression_statement_expression] = STATE(3362), - [sym_assignment_expression] = STATE(3449), - [sym_binary_expression] = STATE(3362), - [sym_postfix_unary_expression] = STATE(3449), - [sym_prefix_unary_expression] = STATE(3449), - [sym__pointer_indirection_expression] = STATE(2747), - [sym_query_expression] = STATE(3362), - [sym_from_clause] = STATE(6147), - [sym_conditional_expression] = STATE(3362), - [sym_conditional_access_expression] = STATE(3362), - [sym_as_expression] = STATE(3362), - [sym_is_expression] = STATE(3362), - [sym_is_pattern_expression] = STATE(3362), - [sym_cast_expression] = STATE(3362), - [sym_checked_expression] = STATE(3362), - [sym_invocation_expression] = STATE(3449), - [sym_switch_expression] = STATE(3362), - [sym_await_expression] = STATE(3449), - [sym_throw_expression] = STATE(3362), - [sym_element_access_expression] = STATE(2747), - [sym_interpolated_string_expression] = STATE(3362), - [sym_member_access_expression] = STATE(2747), - [sym_object_creation_expression] = STATE(3449), - [sym_parenthesized_expression] = STATE(3449), - [sym__parenthesized_lvalue_expression] = STATE(2747), - [sym_lambda_expression] = STATE(3362), - [sym__lambda_expression_init] = STATE(7516), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3362), - [sym_anonymous_method_expression] = STATE(3362), - [sym_anonymous_object_creation_expression] = STATE(3362), - [sym_implicit_array_creation_expression] = STATE(3362), - [sym_implicit_object_creation_expression] = STATE(3362), - [sym_implicit_stackalloc_expression] = STATE(3362), - [sym_initializer_expression] = STATE(3362), - [sym_default_expression] = STATE(3362), - [sym_with_expression] = STATE(3362), - [sym_sizeof_expression] = STATE(3362), - [sym_typeof_expression] = STATE(3362), - [sym_makeref_expression] = STATE(3362), - [sym_ref_expression] = STATE(3362), - [sym_reftype_expression] = STATE(3362), - [sym_refvalue_expression] = STATE(3362), - [sym_stackalloc_expression] = STATE(3362), - [sym_range_expression] = STATE(3362), - [sym_tuple_expression] = STATE(2747), - [sym_literal] = STATE(3362), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2267), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3362), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2416), + [sym__name] = STATE(5890), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2193), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(4065), + [sym_non_lvalue_expression] = STATE(3040), + [sym_lvalue_expression] = STATE(3109), + [sym__expression_statement_expression] = STATE(3035), + [sym_assignment_expression] = STATE(3043), + [sym_binary_expression] = STATE(3035), + [sym_postfix_unary_expression] = STATE(3043), + [sym_prefix_unary_expression] = STATE(3043), + [sym__pointer_indirection_expression] = STATE(2415), + [sym_query_expression] = STATE(3035), + [sym_from_clause] = STATE(6138), + [sym_conditional_expression] = STATE(3035), + [sym_conditional_access_expression] = STATE(3035), + [sym_as_expression] = STATE(3035), + [sym_is_expression] = STATE(3035), + [sym_is_pattern_expression] = STATE(3035), + [sym_cast_expression] = STATE(3035), + [sym_checked_expression] = STATE(3035), + [sym_invocation_expression] = STATE(3043), + [sym_switch_expression] = STATE(3035), + [sym_await_expression] = STATE(3043), + [sym_throw_expression] = STATE(3035), + [sym_element_access_expression] = STATE(2415), + [sym_interpolated_string_expression] = STATE(3035), + [sym_member_access_expression] = STATE(2415), + [sym_object_creation_expression] = STATE(3043), + [sym_parenthesized_expression] = STATE(3043), + [sym__parenthesized_lvalue_expression] = STATE(2415), + [sym_lambda_expression] = STATE(3035), + [sym__lambda_expression_init] = STATE(7374), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3035), + [sym_anonymous_method_expression] = STATE(3035), + [sym_anonymous_object_creation_expression] = STATE(3035), + [sym_implicit_array_creation_expression] = STATE(3035), + [sym_implicit_object_creation_expression] = STATE(3035), + [sym_implicit_stackalloc_expression] = STATE(3035), + [sym_initializer_expression] = STATE(3035), + [sym_default_expression] = STATE(3035), + [sym_with_expression] = STATE(3035), + [sym_sizeof_expression] = STATE(3035), + [sym_typeof_expression] = STATE(3035), + [sym_makeref_expression] = STATE(3035), + [sym_ref_expression] = STATE(3035), + [sym_reftype_expression] = STATE(3035), + [sym_refvalue_expression] = STATE(3035), + [sym_stackalloc_expression] = STATE(3035), + [sym_range_expression] = STATE(3035), + [sym_tuple_expression] = STATE(2415), + [sym_literal] = STATE(3035), + [sym_character_literal] = STATE(3037), + [sym_string_literal] = STATE(3037), + [sym_raw_string_literal] = STATE(3037), + [sym_boolean_literal] = STATE(3037), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3035), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(1688), [sym_preproc_endregion] = STATE(1688), [sym_preproc_line] = STATE(1688), @@ -327131,47 +327017,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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3385), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3455), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1307), - [anon_sym_LPAREN] = ACTIONS(1609), - [anon_sym_ref] = ACTIONS(1611), - [anon_sym_LBRACE] = ACTIONS(1313), - [anon_sym_delegate] = ACTIONS(1315), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1239), + [anon_sym_LPAREN] = ACTIONS(1241), + [anon_sym_ref] = ACTIONS(1243), + [anon_sym_LBRACE] = ACTIONS(1245), + [anon_sym_delegate] = ACTIONS(1247), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1613), + [anon_sym_new] = ACTIONS(1249), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1319), - [anon_sym_BANG] = ACTIONS(1617), - [anon_sym_TILDE] = ACTIONS(1617), - [anon_sym_PLUS_PLUS] = ACTIONS(1617), - [anon_sym_DASH_DASH] = ACTIONS(1617), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1615), - [anon_sym_DASH] = ACTIONS(1615), - [anon_sym_STAR] = ACTIONS(1619), - [anon_sym_CARET] = ACTIONS(1617), - [anon_sym_AMP] = ACTIONS(1617), - [anon_sym_this] = ACTIONS(1323), + [anon_sym_checked] = ACTIONS(1251), + [anon_sym_BANG] = ACTIONS(1255), + [anon_sym_TILDE] = ACTIONS(1255), + [anon_sym_PLUS_PLUS] = ACTIONS(1255), + [anon_sym_DASH_DASH] = ACTIONS(1255), + [anon_sym_true] = ACTIONS(1257), + [anon_sym_false] = ACTIONS(1257), + [anon_sym_PLUS] = ACTIONS(1253), + [anon_sym_DASH] = ACTIONS(1253), + [anon_sym_STAR] = ACTIONS(1259), + [anon_sym_CARET] = ACTIONS(1255), + [anon_sym_AMP] = ACTIONS(1255), + [anon_sym_this] = ACTIONS(1261), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1325), + [anon_sym_base] = ACTIONS(1263), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1319), + [sym_predefined_type] = ACTIONS(1265), + [anon_sym_unchecked] = ACTIONS(1251), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1621), + [anon_sym_default] = ACTIONS(1267), + [anon_sym_throw] = ACTIONS(1269), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1623), - [anon_sym_DOT_DOT] = ACTIONS(1625), + [anon_sym_await] = ACTIONS(1271), + [anon_sym_DOT_DOT] = ACTIONS(1273), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -327184,19 +327070,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1333), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(1335), - [anon_sym___reftype] = ACTIONS(1337), - [anon_sym___refvalue] = ACTIONS(1339), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1341), + [anon_sym_stackalloc] = ACTIONS(1275), + [anon_sym_sizeof] = ACTIONS(1277), + [anon_sym_typeof] = ACTIONS(1279), + [anon_sym___makeref] = ACTIONS(1281), + [anon_sym___reftype] = ACTIONS(1283), + [anon_sym___refvalue] = ACTIONS(1285), + [sym_null_literal] = ACTIONS(1287), + [anon_sym_SQUOTE] = ACTIONS(1289), + [sym_integer_literal] = ACTIONS(1287), + [sym_real_literal] = ACTIONS(1291), + [anon_sym_DQUOTE] = ACTIONS(1293), + [sym_verbatim_string_literal] = ACTIONS(1291), + [aux_sym_preproc_if_token1] = ACTIONS(1295), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -327207,90 +327093,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(151), - [sym_interpolation_verbatim_start] = ACTIONS(153), - [sym_interpolation_raw_start] = ACTIONS(155), - [sym_raw_string_start] = ACTIONS(157), + [sym_interpolation_regular_start] = ACTIONS(1297), + [sym_interpolation_verbatim_start] = ACTIONS(1299), + [sym_interpolation_raw_start] = ACTIONS(1301), + [sym_raw_string_start] = ACTIONS(1303), }, [1689] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(5910), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2247), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(5105), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3379), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3080), - [sym_postfix_unary_expression] = STATE(3111), - [sym_prefix_unary_expression] = STATE(3111), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6154), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3080), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3111), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3080), - [sym_member_access_expression] = STATE(2484), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3111), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7575), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(3080), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3080), - [sym_typeof_expression] = STATE(3080), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2484), - [sym_literal] = STATE(3080), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2901), + [sym__name] = STATE(5889), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2349), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(3551), + [sym_non_lvalue_expression] = STATE(3685), + [sym_lvalue_expression] = STATE(2890), + [sym__expression_statement_expression] = STATE(3836), + [sym_assignment_expression] = STATE(3689), + [sym_binary_expression] = STATE(3836), + [sym_postfix_unary_expression] = STATE(3689), + [sym_prefix_unary_expression] = STATE(3689), + [sym__pointer_indirection_expression] = STATE(2906), + [sym_query_expression] = STATE(3836), + [sym_from_clause] = STATE(6139), + [sym_conditional_expression] = STATE(3836), + [sym_conditional_access_expression] = STATE(3836), + [sym_as_expression] = STATE(3836), + [sym_is_expression] = STATE(3836), + [sym_is_pattern_expression] = STATE(3836), + [sym_cast_expression] = STATE(3836), + [sym_checked_expression] = STATE(3836), + [sym_invocation_expression] = STATE(3689), + [sym_switch_expression] = STATE(3836), + [sym_await_expression] = STATE(3689), + [sym_throw_expression] = STATE(3836), + [sym_element_access_expression] = STATE(2906), + [sym_interpolated_string_expression] = STATE(3836), + [sym_member_access_expression] = STATE(2906), + [sym_object_creation_expression] = STATE(3689), + [sym_parenthesized_expression] = STATE(3689), + [sym__parenthesized_lvalue_expression] = STATE(2906), + [sym_lambda_expression] = STATE(3836), + [sym__lambda_expression_init] = STATE(7456), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3836), + [sym_anonymous_method_expression] = STATE(3836), + [sym_anonymous_object_creation_expression] = STATE(3836), + [sym_implicit_array_creation_expression] = STATE(3836), + [sym_implicit_object_creation_expression] = STATE(3836), + [sym_implicit_stackalloc_expression] = STATE(3836), + [sym_initializer_expression] = STATE(3836), + [sym_default_expression] = STATE(3836), + [sym_with_expression] = STATE(3836), + [sym_sizeof_expression] = STATE(3836), + [sym_typeof_expression] = STATE(3836), + [sym_makeref_expression] = STATE(3836), + [sym_ref_expression] = STATE(3836), + [sym_reftype_expression] = STATE(3836), + [sym_refvalue_expression] = STATE(3836), + [sym_stackalloc_expression] = STATE(3836), + [sym_range_expression] = STATE(3836), + [sym_tuple_expression] = STATE(2906), + [sym_literal] = STATE(3836), + [sym_character_literal] = STATE(3843), + [sym_string_literal] = STATE(3843), + [sym_raw_string_literal] = STATE(3843), + [sym_boolean_literal] = STATE(3843), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3836), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(1689), [sym_preproc_endregion] = STATE(1689), [sym_preproc_line] = STATE(1689), @@ -327300,47 +327186,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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3477), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1481), - [anon_sym_LPAREN] = ACTIONS(895), - [anon_sym_ref] = ACTIONS(897), - [anon_sym_LBRACE] = ACTIONS(1487), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1655), + [anon_sym_LPAREN] = ACTIONS(1755), + [anon_sym_ref] = ACTIONS(1757), + [anon_sym_LBRACE] = ACTIONS(1661), + [anon_sym_delegate] = ACTIONS(1663), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1061), + [anon_sym_new] = ACTIONS(1759), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1067), - [anon_sym_BANG] = ACTIONS(1495), - [anon_sym_TILDE] = ACTIONS(1495), - [anon_sym_PLUS_PLUS] = ACTIONS(1495), - [anon_sym_DASH_DASH] = ACTIONS(1495), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1493), - [anon_sym_DASH] = ACTIONS(1493), - [anon_sym_STAR] = ACTIONS(905), - [anon_sym_CARET] = ACTIONS(1495), - [anon_sym_AMP] = ACTIONS(1495), - [anon_sym_this] = ACTIONS(83), + [anon_sym_checked] = ACTIONS(1667), + [anon_sym_BANG] = ACTIONS(1763), + [anon_sym_TILDE] = ACTIONS(1763), + [anon_sym_PLUS_PLUS] = ACTIONS(1763), + [anon_sym_DASH_DASH] = ACTIONS(1763), + [anon_sym_true] = ACTIONS(1673), + [anon_sym_false] = ACTIONS(1673), + [anon_sym_PLUS] = ACTIONS(1761), + [anon_sym_DASH] = ACTIONS(1761), + [anon_sym_STAR] = ACTIONS(1765), + [anon_sym_CARET] = ACTIONS(1763), + [anon_sym_AMP] = ACTIONS(1763), + [anon_sym_this] = ACTIONS(1677), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), + [anon_sym_base] = ACTIONS(1679), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1067), + [sym_predefined_type] = ACTIONS(1681), + [anon_sym_unchecked] = ACTIONS(1667), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1079), + [anon_sym_default] = ACTIONS(1683), + [anon_sym_throw] = ACTIONS(1767), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1081), - [anon_sym_DOT_DOT] = ACTIONS(911), + [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), @@ -327353,19 +327239,19 @@ static const uint16_t ts_parse_table[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(1089), + [anon_sym_stackalloc] = ACTIONS(1691), + [anon_sym_sizeof] = ACTIONS(1693), + [anon_sym_typeof] = ACTIONS(1695), + [anon_sym___makeref] = ACTIONS(1697), + [anon_sym___reftype] = ACTIONS(1699), + [anon_sym___refvalue] = ACTIONS(1701), + [sym_null_literal] = ACTIONS(1703), + [anon_sym_SQUOTE] = ACTIONS(1705), + [sym_integer_literal] = ACTIONS(1703), + [sym_real_literal] = ACTIONS(1707), + [anon_sym_DQUOTE] = ACTIONS(1709), + [sym_verbatim_string_literal] = ACTIONS(1707), + [aux_sym_preproc_if_token1] = ACTIONS(1711), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -327376,90 +327262,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(151), - [sym_interpolation_verbatim_start] = ACTIONS(153), - [sym_interpolation_raw_start] = ACTIONS(155), - [sym_raw_string_start] = ACTIONS(157), + [sym_interpolation_regular_start] = ACTIONS(1713), + [sym_interpolation_verbatim_start] = ACTIONS(1715), + [sym_interpolation_raw_start] = ACTIONS(1717), + [sym_raw_string_start] = ACTIONS(1719), }, [1690] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(5910), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2247), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(5208), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3529), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3080), - [sym_postfix_unary_expression] = STATE(3111), - [sym_prefix_unary_expression] = STATE(3111), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6154), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3080), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3111), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3080), - [sym_member_access_expression] = STATE(2484), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3111), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7444), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(3080), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3080), - [sym_typeof_expression] = STATE(3080), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2484), - [sym_literal] = STATE(3080), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2901), + [sym__name] = STATE(5889), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2349), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(3581), + [sym_non_lvalue_expression] = STATE(3685), + [sym_lvalue_expression] = STATE(2890), + [sym__expression_statement_expression] = STATE(3836), + [sym_assignment_expression] = STATE(3689), + [sym_binary_expression] = STATE(3836), + [sym_postfix_unary_expression] = STATE(3689), + [sym_prefix_unary_expression] = STATE(3689), + [sym__pointer_indirection_expression] = STATE(2906), + [sym_query_expression] = STATE(3836), + [sym_from_clause] = STATE(6139), + [sym_conditional_expression] = STATE(3836), + [sym_conditional_access_expression] = STATE(3836), + [sym_as_expression] = STATE(3836), + [sym_is_expression] = STATE(3836), + [sym_is_pattern_expression] = STATE(3836), + [sym_cast_expression] = STATE(3836), + [sym_checked_expression] = STATE(3836), + [sym_invocation_expression] = STATE(3689), + [sym_switch_expression] = STATE(3836), + [sym_await_expression] = STATE(3689), + [sym_throw_expression] = STATE(3836), + [sym_element_access_expression] = STATE(2906), + [sym_interpolated_string_expression] = STATE(3836), + [sym_member_access_expression] = STATE(2906), + [sym_object_creation_expression] = STATE(3689), + [sym_parenthesized_expression] = STATE(3689), + [sym__parenthesized_lvalue_expression] = STATE(2906), + [sym_lambda_expression] = STATE(3836), + [sym__lambda_expression_init] = STATE(7456), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3836), + [sym_anonymous_method_expression] = STATE(3836), + [sym_anonymous_object_creation_expression] = STATE(3836), + [sym_implicit_array_creation_expression] = STATE(3836), + [sym_implicit_object_creation_expression] = STATE(3836), + [sym_implicit_stackalloc_expression] = STATE(3836), + [sym_initializer_expression] = STATE(3836), + [sym_default_expression] = STATE(3836), + [sym_with_expression] = STATE(3836), + [sym_sizeof_expression] = STATE(3836), + [sym_typeof_expression] = STATE(3836), + [sym_makeref_expression] = STATE(3836), + [sym_ref_expression] = STATE(3836), + [sym_reftype_expression] = STATE(3836), + [sym_refvalue_expression] = STATE(3836), + [sym_stackalloc_expression] = STATE(3836), + [sym_range_expression] = STATE(3836), + [sym_tuple_expression] = STATE(2906), + [sym_literal] = STATE(3836), + [sym_character_literal] = STATE(3843), + [sym_string_literal] = STATE(3843), + [sym_raw_string_literal] = STATE(3843), + [sym_boolean_literal] = STATE(3843), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3836), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(1690), [sym_preproc_endregion] = STATE(1690), [sym_preproc_line] = STATE(1690), @@ -327469,47 +327355,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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3477), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1481), - [anon_sym_LPAREN] = ACTIONS(1575), - [anon_sym_ref] = ACTIONS(1577), - [anon_sym_LBRACE] = ACTIONS(1487), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1655), + [anon_sym_LPAREN] = ACTIONS(1755), + [anon_sym_ref] = ACTIONS(1757), + [anon_sym_LBRACE] = ACTIONS(1661), + [anon_sym_delegate] = ACTIONS(1663), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1501), + [anon_sym_new] = ACTIONS(1759), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1067), - [anon_sym_BANG] = ACTIONS(901), - [anon_sym_TILDE] = ACTIONS(901), - [anon_sym_PLUS_PLUS] = ACTIONS(901), - [anon_sym_DASH_DASH] = ACTIONS(901), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(903), - [anon_sym_DASH] = ACTIONS(903), - [anon_sym_STAR] = ACTIONS(905), - [anon_sym_CARET] = ACTIONS(901), - [anon_sym_AMP] = ACTIONS(901), - [anon_sym_this] = ACTIONS(83), + [anon_sym_checked] = ACTIONS(1667), + [anon_sym_BANG] = ACTIONS(1763), + [anon_sym_TILDE] = ACTIONS(1763), + [anon_sym_PLUS_PLUS] = ACTIONS(1763), + [anon_sym_DASH_DASH] = ACTIONS(1763), + [anon_sym_true] = ACTIONS(1673), + [anon_sym_false] = ACTIONS(1673), + [anon_sym_PLUS] = ACTIONS(1761), + [anon_sym_DASH] = ACTIONS(1761), + [anon_sym_STAR] = ACTIONS(1765), + [anon_sym_CARET] = ACTIONS(1763), + [anon_sym_AMP] = ACTIONS(1763), + [anon_sym_this] = ACTIONS(1677), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), + [anon_sym_base] = ACTIONS(1679), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1067), + [sym_predefined_type] = ACTIONS(1681), + [anon_sym_unchecked] = ACTIONS(1667), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1579), + [anon_sym_default] = ACTIONS(1683), + [anon_sym_throw] = ACTIONS(1767), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1581), - [anon_sym_DOT_DOT] = ACTIONS(1583), + [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), @@ -327522,19 +327408,19 @@ static const uint16_t ts_parse_table[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(1089), + [anon_sym_stackalloc] = ACTIONS(1691), + [anon_sym_sizeof] = ACTIONS(1693), + [anon_sym_typeof] = ACTIONS(1695), + [anon_sym___makeref] = ACTIONS(1697), + [anon_sym___reftype] = ACTIONS(1699), + [anon_sym___refvalue] = ACTIONS(1701), + [sym_null_literal] = ACTIONS(1703), + [anon_sym_SQUOTE] = ACTIONS(1705), + [sym_integer_literal] = ACTIONS(1703), + [sym_real_literal] = ACTIONS(1707), + [anon_sym_DQUOTE] = ACTIONS(1709), + [sym_verbatim_string_literal] = ACTIONS(1707), + [aux_sym_preproc_if_token1] = ACTIONS(1711), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -327545,90 +327431,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(151), - [sym_interpolation_verbatim_start] = ACTIONS(153), - [sym_interpolation_raw_start] = ACTIONS(155), - [sym_raw_string_start] = ACTIONS(157), + [sym_interpolation_regular_start] = ACTIONS(1713), + [sym_interpolation_verbatim_start] = ACTIONS(1715), + [sym_interpolation_raw_start] = ACTIONS(1717), + [sym_raw_string_start] = ACTIONS(1719), }, [1691] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2762), - [sym__name] = STATE(5892), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2316), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(3218), - [sym_non_lvalue_expression] = STATE(3438), - [sym_lvalue_expression] = STATE(3500), - [sym__expression_statement_expression] = STATE(3362), - [sym_assignment_expression] = STATE(3449), - [sym_binary_expression] = STATE(3362), - [sym_postfix_unary_expression] = STATE(3449), - [sym_prefix_unary_expression] = STATE(3449), - [sym__pointer_indirection_expression] = STATE(2747), - [sym_query_expression] = STATE(3362), - [sym_from_clause] = STATE(6147), - [sym_conditional_expression] = STATE(3362), - [sym_conditional_access_expression] = STATE(3362), - [sym_as_expression] = STATE(3362), - [sym_is_expression] = STATE(3362), - [sym_is_pattern_expression] = STATE(3362), - [sym_cast_expression] = STATE(3362), - [sym_checked_expression] = STATE(3362), - [sym_invocation_expression] = STATE(3449), - [sym_switch_expression] = STATE(3362), - [sym_await_expression] = STATE(3449), - [sym_throw_expression] = STATE(3362), - [sym_element_access_expression] = STATE(2747), - [sym_interpolated_string_expression] = STATE(3362), - [sym_member_access_expression] = STATE(2747), - [sym_object_creation_expression] = STATE(3449), - [sym_parenthesized_expression] = STATE(3449), - [sym__parenthesized_lvalue_expression] = STATE(2747), - [sym_lambda_expression] = STATE(3362), - [sym__lambda_expression_init] = STATE(7516), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3362), - [sym_anonymous_method_expression] = STATE(3362), - [sym_anonymous_object_creation_expression] = STATE(3362), - [sym_implicit_array_creation_expression] = STATE(3362), - [sym_implicit_object_creation_expression] = STATE(3362), - [sym_implicit_stackalloc_expression] = STATE(3362), - [sym_initializer_expression] = STATE(3362), - [sym_default_expression] = STATE(3362), - [sym_with_expression] = STATE(3362), - [sym_sizeof_expression] = STATE(3362), - [sym_typeof_expression] = STATE(3362), - [sym_makeref_expression] = STATE(3362), - [sym_ref_expression] = STATE(3362), - [sym_reftype_expression] = STATE(3362), - [sym_refvalue_expression] = STATE(3362), - [sym_stackalloc_expression] = STATE(3362), - [sym_range_expression] = STATE(3362), - [sym_tuple_expression] = STATE(2747), - [sym_literal] = STATE(3362), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2267), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3362), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2901), + [sym__name] = STATE(5889), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2349), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(3583), + [sym_non_lvalue_expression] = STATE(3685), + [sym_lvalue_expression] = STATE(2890), + [sym__expression_statement_expression] = STATE(3836), + [sym_assignment_expression] = STATE(3689), + [sym_binary_expression] = STATE(3836), + [sym_postfix_unary_expression] = STATE(3689), + [sym_prefix_unary_expression] = STATE(3689), + [sym__pointer_indirection_expression] = STATE(2906), + [sym_query_expression] = STATE(3836), + [sym_from_clause] = STATE(6139), + [sym_conditional_expression] = STATE(3836), + [sym_conditional_access_expression] = STATE(3836), + [sym_as_expression] = STATE(3836), + [sym_is_expression] = STATE(3836), + [sym_is_pattern_expression] = STATE(3836), + [sym_cast_expression] = STATE(3836), + [sym_checked_expression] = STATE(3836), + [sym_invocation_expression] = STATE(3689), + [sym_switch_expression] = STATE(3836), + [sym_await_expression] = STATE(3689), + [sym_throw_expression] = STATE(3836), + [sym_element_access_expression] = STATE(2906), + [sym_interpolated_string_expression] = STATE(3836), + [sym_member_access_expression] = STATE(2906), + [sym_object_creation_expression] = STATE(3689), + [sym_parenthesized_expression] = STATE(3689), + [sym__parenthesized_lvalue_expression] = STATE(2906), + [sym_lambda_expression] = STATE(3836), + [sym__lambda_expression_init] = STATE(7456), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3836), + [sym_anonymous_method_expression] = STATE(3836), + [sym_anonymous_object_creation_expression] = STATE(3836), + [sym_implicit_array_creation_expression] = STATE(3836), + [sym_implicit_object_creation_expression] = STATE(3836), + [sym_implicit_stackalloc_expression] = STATE(3836), + [sym_initializer_expression] = STATE(3836), + [sym_default_expression] = STATE(3836), + [sym_with_expression] = STATE(3836), + [sym_sizeof_expression] = STATE(3836), + [sym_typeof_expression] = STATE(3836), + [sym_makeref_expression] = STATE(3836), + [sym_ref_expression] = STATE(3836), + [sym_reftype_expression] = STATE(3836), + [sym_refvalue_expression] = STATE(3836), + [sym_stackalloc_expression] = STATE(3836), + [sym_range_expression] = STATE(3836), + [sym_tuple_expression] = STATE(2906), + [sym_literal] = STATE(3836), + [sym_character_literal] = STATE(3843), + [sym_string_literal] = STATE(3843), + [sym_raw_string_literal] = STATE(3843), + [sym_boolean_literal] = STATE(3843), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3836), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(1691), [sym_preproc_endregion] = STATE(1691), [sym_preproc_line] = STATE(1691), @@ -327638,47 +327524,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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3385), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3477), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1307), - [anon_sym_LPAREN] = ACTIONS(1609), - [anon_sym_ref] = ACTIONS(1611), - [anon_sym_LBRACE] = ACTIONS(1313), - [anon_sym_delegate] = ACTIONS(1315), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1655), + [anon_sym_LPAREN] = ACTIONS(1755), + [anon_sym_ref] = ACTIONS(1757), + [anon_sym_LBRACE] = ACTIONS(1661), + [anon_sym_delegate] = ACTIONS(1663), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1613), + [anon_sym_new] = ACTIONS(1759), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1319), - [anon_sym_BANG] = ACTIONS(1617), - [anon_sym_TILDE] = ACTIONS(1617), - [anon_sym_PLUS_PLUS] = ACTIONS(1617), - [anon_sym_DASH_DASH] = ACTIONS(1617), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1615), - [anon_sym_DASH] = ACTIONS(1615), - [anon_sym_STAR] = ACTIONS(1619), - [anon_sym_CARET] = ACTIONS(1617), - [anon_sym_AMP] = ACTIONS(1617), - [anon_sym_this] = ACTIONS(1323), + [anon_sym_checked] = ACTIONS(1667), + [anon_sym_BANG] = ACTIONS(1763), + [anon_sym_TILDE] = ACTIONS(1763), + [anon_sym_PLUS_PLUS] = ACTIONS(1763), + [anon_sym_DASH_DASH] = ACTIONS(1763), + [anon_sym_true] = ACTIONS(1673), + [anon_sym_false] = ACTIONS(1673), + [anon_sym_PLUS] = ACTIONS(1761), + [anon_sym_DASH] = ACTIONS(1761), + [anon_sym_STAR] = ACTIONS(1765), + [anon_sym_CARET] = ACTIONS(1763), + [anon_sym_AMP] = ACTIONS(1763), + [anon_sym_this] = ACTIONS(1677), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1325), + [anon_sym_base] = ACTIONS(1679), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1319), + [sym_predefined_type] = ACTIONS(1681), + [anon_sym_unchecked] = ACTIONS(1667), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1621), + [anon_sym_default] = ACTIONS(1683), + [anon_sym_throw] = ACTIONS(1767), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1623), - [anon_sym_DOT_DOT] = ACTIONS(1625), + [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), @@ -327691,19 +327577,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1333), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(1335), - [anon_sym___reftype] = ACTIONS(1337), - [anon_sym___refvalue] = ACTIONS(1339), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1341), + [anon_sym_stackalloc] = ACTIONS(1691), + [anon_sym_sizeof] = ACTIONS(1693), + [anon_sym_typeof] = ACTIONS(1695), + [anon_sym___makeref] = ACTIONS(1697), + [anon_sym___reftype] = ACTIONS(1699), + [anon_sym___refvalue] = ACTIONS(1701), + [sym_null_literal] = ACTIONS(1703), + [anon_sym_SQUOTE] = ACTIONS(1705), + [sym_integer_literal] = ACTIONS(1703), + [sym_real_literal] = ACTIONS(1707), + [anon_sym_DQUOTE] = ACTIONS(1709), + [sym_verbatim_string_literal] = ACTIONS(1707), + [aux_sym_preproc_if_token1] = ACTIONS(1711), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -327714,90 +327600,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(151), - [sym_interpolation_verbatim_start] = ACTIONS(153), - [sym_interpolation_raw_start] = ACTIONS(155), - [sym_raw_string_start] = ACTIONS(157), + [sym_interpolation_regular_start] = ACTIONS(1713), + [sym_interpolation_verbatim_start] = ACTIONS(1715), + [sym_interpolation_raw_start] = ACTIONS(1717), + [sym_raw_string_start] = ACTIONS(1719), }, [1692] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(5910), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2247), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(5152), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3379), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3080), - [sym_postfix_unary_expression] = STATE(3111), - [sym_prefix_unary_expression] = STATE(3111), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6154), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3080), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3111), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3080), - [sym_member_access_expression] = STATE(2484), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3111), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7575), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(3080), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3080), - [sym_typeof_expression] = STATE(3080), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2484), - [sym_literal] = STATE(3080), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2901), + [sym__name] = STATE(5889), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2349), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(3584), + [sym_non_lvalue_expression] = STATE(3685), + [sym_lvalue_expression] = STATE(2890), + [sym__expression_statement_expression] = STATE(3836), + [sym_assignment_expression] = STATE(3689), + [sym_binary_expression] = STATE(3836), + [sym_postfix_unary_expression] = STATE(3689), + [sym_prefix_unary_expression] = STATE(3689), + [sym__pointer_indirection_expression] = STATE(2906), + [sym_query_expression] = STATE(3836), + [sym_from_clause] = STATE(6139), + [sym_conditional_expression] = STATE(3836), + [sym_conditional_access_expression] = STATE(3836), + [sym_as_expression] = STATE(3836), + [sym_is_expression] = STATE(3836), + [sym_is_pattern_expression] = STATE(3836), + [sym_cast_expression] = STATE(3836), + [sym_checked_expression] = STATE(3836), + [sym_invocation_expression] = STATE(3689), + [sym_switch_expression] = STATE(3836), + [sym_await_expression] = STATE(3689), + [sym_throw_expression] = STATE(3836), + [sym_element_access_expression] = STATE(2906), + [sym_interpolated_string_expression] = STATE(3836), + [sym_member_access_expression] = STATE(2906), + [sym_object_creation_expression] = STATE(3689), + [sym_parenthesized_expression] = STATE(3689), + [sym__parenthesized_lvalue_expression] = STATE(2906), + [sym_lambda_expression] = STATE(3836), + [sym__lambda_expression_init] = STATE(7456), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3836), + [sym_anonymous_method_expression] = STATE(3836), + [sym_anonymous_object_creation_expression] = STATE(3836), + [sym_implicit_array_creation_expression] = STATE(3836), + [sym_implicit_object_creation_expression] = STATE(3836), + [sym_implicit_stackalloc_expression] = STATE(3836), + [sym_initializer_expression] = STATE(3836), + [sym_default_expression] = STATE(3836), + [sym_with_expression] = STATE(3836), + [sym_sizeof_expression] = STATE(3836), + [sym_typeof_expression] = STATE(3836), + [sym_makeref_expression] = STATE(3836), + [sym_ref_expression] = STATE(3836), + [sym_reftype_expression] = STATE(3836), + [sym_refvalue_expression] = STATE(3836), + [sym_stackalloc_expression] = STATE(3836), + [sym_range_expression] = STATE(3836), + [sym_tuple_expression] = STATE(2906), + [sym_literal] = STATE(3836), + [sym_character_literal] = STATE(3843), + [sym_string_literal] = STATE(3843), + [sym_raw_string_literal] = STATE(3843), + [sym_boolean_literal] = STATE(3843), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3836), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(1692), [sym_preproc_endregion] = STATE(1692), [sym_preproc_line] = STATE(1692), @@ -327807,47 +327693,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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3477), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1481), - [anon_sym_LPAREN] = ACTIONS(895), - [anon_sym_ref] = ACTIONS(897), - [anon_sym_LBRACE] = ACTIONS(1487), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1655), + [anon_sym_LPAREN] = ACTIONS(1755), + [anon_sym_ref] = ACTIONS(1757), + [anon_sym_LBRACE] = ACTIONS(1661), + [anon_sym_delegate] = ACTIONS(1663), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1061), + [anon_sym_new] = ACTIONS(1759), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1067), - [anon_sym_BANG] = ACTIONS(1495), - [anon_sym_TILDE] = ACTIONS(1495), - [anon_sym_PLUS_PLUS] = ACTIONS(1495), - [anon_sym_DASH_DASH] = ACTIONS(1495), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1493), - [anon_sym_DASH] = ACTIONS(1493), - [anon_sym_STAR] = ACTIONS(905), - [anon_sym_CARET] = ACTIONS(1495), - [anon_sym_AMP] = ACTIONS(1495), - [anon_sym_this] = ACTIONS(83), + [anon_sym_checked] = ACTIONS(1667), + [anon_sym_BANG] = ACTIONS(1763), + [anon_sym_TILDE] = ACTIONS(1763), + [anon_sym_PLUS_PLUS] = ACTIONS(1763), + [anon_sym_DASH_DASH] = ACTIONS(1763), + [anon_sym_true] = ACTIONS(1673), + [anon_sym_false] = ACTIONS(1673), + [anon_sym_PLUS] = ACTIONS(1761), + [anon_sym_DASH] = ACTIONS(1761), + [anon_sym_STAR] = ACTIONS(1765), + [anon_sym_CARET] = ACTIONS(1763), + [anon_sym_AMP] = ACTIONS(1763), + [anon_sym_this] = ACTIONS(1677), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), + [anon_sym_base] = ACTIONS(1679), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1067), + [sym_predefined_type] = ACTIONS(1681), + [anon_sym_unchecked] = ACTIONS(1667), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1079), + [anon_sym_default] = ACTIONS(1683), + [anon_sym_throw] = ACTIONS(1767), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1081), - [anon_sym_DOT_DOT] = ACTIONS(911), + [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), @@ -327860,19 +327746,19 @@ static const uint16_t ts_parse_table[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(1089), + [anon_sym_stackalloc] = ACTIONS(1691), + [anon_sym_sizeof] = ACTIONS(1693), + [anon_sym_typeof] = ACTIONS(1695), + [anon_sym___makeref] = ACTIONS(1697), + [anon_sym___reftype] = ACTIONS(1699), + [anon_sym___refvalue] = ACTIONS(1701), + [sym_null_literal] = ACTIONS(1703), + [anon_sym_SQUOTE] = ACTIONS(1705), + [sym_integer_literal] = ACTIONS(1703), + [sym_real_literal] = ACTIONS(1707), + [anon_sym_DQUOTE] = ACTIONS(1709), + [sym_verbatim_string_literal] = ACTIONS(1707), + [aux_sym_preproc_if_token1] = ACTIONS(1711), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -327883,90 +327769,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(151), - [sym_interpolation_verbatim_start] = ACTIONS(153), - [sym_interpolation_raw_start] = ACTIONS(155), - [sym_raw_string_start] = ACTIONS(157), + [sym_interpolation_regular_start] = ACTIONS(1713), + [sym_interpolation_verbatim_start] = ACTIONS(1715), + [sym_interpolation_raw_start] = ACTIONS(1717), + [sym_raw_string_start] = ACTIONS(1719), }, [1693] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2914), - [sym__name] = STATE(5885), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2357), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(3769), - [sym_non_lvalue_expression] = STATE(3880), - [sym_lvalue_expression] = STATE(2986), - [sym__expression_statement_expression] = STATE(3873), - [sym_assignment_expression] = STATE(3881), - [sym_binary_expression] = STATE(3873), - [sym_postfix_unary_expression] = STATE(3881), - [sym_prefix_unary_expression] = STATE(3881), - [sym__pointer_indirection_expression] = STATE(2913), - [sym_query_expression] = STATE(3873), - [sym_from_clause] = STATE(6168), - [sym_conditional_expression] = STATE(3873), - [sym_conditional_access_expression] = STATE(3873), - [sym_as_expression] = STATE(3873), - [sym_is_expression] = STATE(3873), - [sym_is_pattern_expression] = STATE(3873), - [sym_cast_expression] = STATE(3873), - [sym_checked_expression] = STATE(3873), - [sym_invocation_expression] = STATE(3881), - [sym_switch_expression] = STATE(3873), - [sym_await_expression] = STATE(3881), - [sym_throw_expression] = STATE(3873), - [sym_element_access_expression] = STATE(2913), - [sym_interpolated_string_expression] = STATE(3873), - [sym_member_access_expression] = STATE(2913), - [sym_object_creation_expression] = STATE(3881), - [sym_parenthesized_expression] = STATE(3881), - [sym__parenthesized_lvalue_expression] = STATE(2913), - [sym_lambda_expression] = STATE(3873), - [sym__lambda_expression_init] = STATE(7587), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3873), - [sym_anonymous_method_expression] = STATE(3873), - [sym_anonymous_object_creation_expression] = STATE(3873), - [sym_implicit_array_creation_expression] = STATE(3873), - [sym_implicit_object_creation_expression] = STATE(3873), - [sym_implicit_stackalloc_expression] = STATE(3873), - [sym_initializer_expression] = STATE(3873), - [sym_default_expression] = STATE(3873), - [sym_with_expression] = STATE(3873), - [sym_sizeof_expression] = STATE(3873), - [sym_typeof_expression] = STATE(3873), - [sym_makeref_expression] = STATE(3873), - [sym_ref_expression] = STATE(3873), - [sym_reftype_expression] = STATE(3873), - [sym_refvalue_expression] = STATE(3873), - [sym_stackalloc_expression] = STATE(3873), - [sym_range_expression] = STATE(3873), - [sym_tuple_expression] = STATE(2913), - [sym_literal] = STATE(3873), - [sym_character_literal] = STATE(3877), - [sym_string_literal] = STATE(3877), - [sym_raw_string_literal] = STATE(3877), - [sym_boolean_literal] = STATE(3877), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3873), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2901), + [sym__name] = STATE(5889), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2349), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(3565), + [sym_non_lvalue_expression] = STATE(3685), + [sym_lvalue_expression] = STATE(2890), + [sym__expression_statement_expression] = STATE(3836), + [sym_assignment_expression] = STATE(3689), + [sym_binary_expression] = STATE(3836), + [sym_postfix_unary_expression] = STATE(3689), + [sym_prefix_unary_expression] = STATE(3689), + [sym__pointer_indirection_expression] = STATE(2906), + [sym_query_expression] = STATE(3836), + [sym_from_clause] = STATE(6139), + [sym_conditional_expression] = STATE(3836), + [sym_conditional_access_expression] = STATE(3836), + [sym_as_expression] = STATE(3836), + [sym_is_expression] = STATE(3836), + [sym_is_pattern_expression] = STATE(3836), + [sym_cast_expression] = STATE(3836), + [sym_checked_expression] = STATE(3836), + [sym_invocation_expression] = STATE(3689), + [sym_switch_expression] = STATE(3836), + [sym_await_expression] = STATE(3689), + [sym_throw_expression] = STATE(3836), + [sym_element_access_expression] = STATE(2906), + [sym_interpolated_string_expression] = STATE(3836), + [sym_member_access_expression] = STATE(2906), + [sym_object_creation_expression] = STATE(3689), + [sym_parenthesized_expression] = STATE(3689), + [sym__parenthesized_lvalue_expression] = STATE(2906), + [sym_lambda_expression] = STATE(3836), + [sym__lambda_expression_init] = STATE(7456), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3836), + [sym_anonymous_method_expression] = STATE(3836), + [sym_anonymous_object_creation_expression] = STATE(3836), + [sym_implicit_array_creation_expression] = STATE(3836), + [sym_implicit_object_creation_expression] = STATE(3836), + [sym_implicit_stackalloc_expression] = STATE(3836), + [sym_initializer_expression] = STATE(3836), + [sym_default_expression] = STATE(3836), + [sym_with_expression] = STATE(3836), + [sym_sizeof_expression] = STATE(3836), + [sym_typeof_expression] = STATE(3836), + [sym_makeref_expression] = STATE(3836), + [sym_ref_expression] = STATE(3836), + [sym_reftype_expression] = STATE(3836), + [sym_refvalue_expression] = STATE(3836), + [sym_stackalloc_expression] = STATE(3836), + [sym_range_expression] = STATE(3836), + [sym_tuple_expression] = STATE(2906), + [sym_literal] = STATE(3836), + [sym_character_literal] = STATE(3843), + [sym_string_literal] = STATE(3843), + [sym_raw_string_literal] = STATE(3843), + [sym_boolean_literal] = STATE(3843), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3836), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(1693), [sym_preproc_endregion] = STATE(1693), [sym_preproc_line] = STATE(1693), @@ -327976,47 +327862,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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3382), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3477), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1627), - [anon_sym_LPAREN] = ACTIONS(2079), - [anon_sym_ref] = ACTIONS(2081), - [anon_sym_LBRACE] = ACTIONS(1633), - [anon_sym_delegate] = ACTIONS(1635), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1655), + [anon_sym_LPAREN] = ACTIONS(1755), + [anon_sym_ref] = ACTIONS(1757), + [anon_sym_LBRACE] = ACTIONS(1661), + [anon_sym_delegate] = ACTIONS(1663), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1731), + [anon_sym_new] = ACTIONS(1759), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1639), - [anon_sym_BANG] = ACTIONS(2085), - [anon_sym_TILDE] = ACTIONS(2085), - [anon_sym_PLUS_PLUS] = ACTIONS(2085), - [anon_sym_DASH_DASH] = ACTIONS(2085), - [anon_sym_true] = ACTIONS(1645), - [anon_sym_false] = ACTIONS(1645), - [anon_sym_PLUS] = ACTIONS(2083), - [anon_sym_DASH] = ACTIONS(2083), - [anon_sym_STAR] = ACTIONS(1737), - [anon_sym_CARET] = ACTIONS(2085), - [anon_sym_AMP] = ACTIONS(2085), - [anon_sym_this] = ACTIONS(1649), + [anon_sym_checked] = ACTIONS(1667), + [anon_sym_BANG] = ACTIONS(1763), + [anon_sym_TILDE] = ACTIONS(1763), + [anon_sym_PLUS_PLUS] = ACTIONS(1763), + [anon_sym_DASH_DASH] = ACTIONS(1763), + [anon_sym_true] = ACTIONS(1673), + [anon_sym_false] = ACTIONS(1673), + [anon_sym_PLUS] = ACTIONS(1761), + [anon_sym_DASH] = ACTIONS(1761), + [anon_sym_STAR] = ACTIONS(1765), + [anon_sym_CARET] = ACTIONS(1763), + [anon_sym_AMP] = ACTIONS(1763), + [anon_sym_this] = ACTIONS(1677), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1651), + [anon_sym_base] = ACTIONS(1679), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1653), - [anon_sym_unchecked] = ACTIONS(1639), + [sym_predefined_type] = ACTIONS(1681), + [anon_sym_unchecked] = ACTIONS(1667), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1655), - [anon_sym_throw] = ACTIONS(2087), + [anon_sym_default] = ACTIONS(1683), + [anon_sym_throw] = ACTIONS(1767), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2089), - [anon_sym_DOT_DOT] = ACTIONS(2091), + [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), @@ -328029,19 +327915,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1663), - [anon_sym_sizeof] = ACTIONS(1665), - [anon_sym_typeof] = ACTIONS(1667), - [anon_sym___makeref] = ACTIONS(1669), - [anon_sym___reftype] = ACTIONS(1671), - [anon_sym___refvalue] = ACTIONS(1673), - [sym_null_literal] = ACTIONS(1675), - [anon_sym_SQUOTE] = ACTIONS(1677), - [sym_integer_literal] = ACTIONS(1675), - [sym_real_literal] = ACTIONS(1679), - [anon_sym_DQUOTE] = ACTIONS(1681), - [sym_verbatim_string_literal] = ACTIONS(1679), - [aux_sym_preproc_if_token1] = ACTIONS(1683), + [anon_sym_stackalloc] = ACTIONS(1691), + [anon_sym_sizeof] = ACTIONS(1693), + [anon_sym_typeof] = ACTIONS(1695), + [anon_sym___makeref] = ACTIONS(1697), + [anon_sym___reftype] = ACTIONS(1699), + [anon_sym___refvalue] = ACTIONS(1701), + [sym_null_literal] = ACTIONS(1703), + [anon_sym_SQUOTE] = ACTIONS(1705), + [sym_integer_literal] = ACTIONS(1703), + [sym_real_literal] = ACTIONS(1707), + [anon_sym_DQUOTE] = ACTIONS(1709), + [sym_verbatim_string_literal] = ACTIONS(1707), + [aux_sym_preproc_if_token1] = ACTIONS(1711), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -328052,90 +327938,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1685), - [sym_interpolation_verbatim_start] = ACTIONS(1687), - [sym_interpolation_raw_start] = ACTIONS(1689), - [sym_raw_string_start] = ACTIONS(1691), + [sym_interpolation_regular_start] = ACTIONS(1713), + [sym_interpolation_verbatim_start] = ACTIONS(1715), + [sym_interpolation_raw_start] = ACTIONS(1717), + [sym_raw_string_start] = ACTIONS(1719), }, [1694] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(5910), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2247), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(5316), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3529), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3080), - [sym_postfix_unary_expression] = STATE(3111), - [sym_prefix_unary_expression] = STATE(3111), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6154), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3080), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3111), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3080), - [sym_member_access_expression] = STATE(2484), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3111), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7444), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(3080), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3080), - [sym_typeof_expression] = STATE(3080), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2484), - [sym_literal] = STATE(3080), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2901), + [sym__name] = STATE(5889), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2349), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(3571), + [sym_non_lvalue_expression] = STATE(3685), + [sym_lvalue_expression] = STATE(2890), + [sym__expression_statement_expression] = STATE(3836), + [sym_assignment_expression] = STATE(3689), + [sym_binary_expression] = STATE(3836), + [sym_postfix_unary_expression] = STATE(3689), + [sym_prefix_unary_expression] = STATE(3689), + [sym__pointer_indirection_expression] = STATE(2906), + [sym_query_expression] = STATE(3836), + [sym_from_clause] = STATE(6139), + [sym_conditional_expression] = STATE(3836), + [sym_conditional_access_expression] = STATE(3836), + [sym_as_expression] = STATE(3836), + [sym_is_expression] = STATE(3836), + [sym_is_pattern_expression] = STATE(3836), + [sym_cast_expression] = STATE(3836), + [sym_checked_expression] = STATE(3836), + [sym_invocation_expression] = STATE(3689), + [sym_switch_expression] = STATE(3836), + [sym_await_expression] = STATE(3689), + [sym_throw_expression] = STATE(3836), + [sym_element_access_expression] = STATE(2906), + [sym_interpolated_string_expression] = STATE(3836), + [sym_member_access_expression] = STATE(2906), + [sym_object_creation_expression] = STATE(3689), + [sym_parenthesized_expression] = STATE(3689), + [sym__parenthesized_lvalue_expression] = STATE(2906), + [sym_lambda_expression] = STATE(3836), + [sym__lambda_expression_init] = STATE(7456), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3836), + [sym_anonymous_method_expression] = STATE(3836), + [sym_anonymous_object_creation_expression] = STATE(3836), + [sym_implicit_array_creation_expression] = STATE(3836), + [sym_implicit_object_creation_expression] = STATE(3836), + [sym_implicit_stackalloc_expression] = STATE(3836), + [sym_initializer_expression] = STATE(3836), + [sym_default_expression] = STATE(3836), + [sym_with_expression] = STATE(3836), + [sym_sizeof_expression] = STATE(3836), + [sym_typeof_expression] = STATE(3836), + [sym_makeref_expression] = STATE(3836), + [sym_ref_expression] = STATE(3836), + [sym_reftype_expression] = STATE(3836), + [sym_refvalue_expression] = STATE(3836), + [sym_stackalloc_expression] = STATE(3836), + [sym_range_expression] = STATE(3836), + [sym_tuple_expression] = STATE(2906), + [sym_literal] = STATE(3836), + [sym_character_literal] = STATE(3843), + [sym_string_literal] = STATE(3843), + [sym_raw_string_literal] = STATE(3843), + [sym_boolean_literal] = STATE(3843), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3836), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(1694), [sym_preproc_endregion] = STATE(1694), [sym_preproc_line] = STATE(1694), @@ -328145,47 +328031,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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3477), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1481), - [anon_sym_LPAREN] = ACTIONS(1575), - [anon_sym_ref] = ACTIONS(1577), - [anon_sym_LBRACE] = ACTIONS(1487), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1655), + [anon_sym_LPAREN] = ACTIONS(1755), + [anon_sym_ref] = ACTIONS(1757), + [anon_sym_LBRACE] = ACTIONS(1661), + [anon_sym_delegate] = ACTIONS(1663), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1501), + [anon_sym_new] = ACTIONS(1759), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1067), - [anon_sym_BANG] = ACTIONS(901), - [anon_sym_TILDE] = ACTIONS(901), - [anon_sym_PLUS_PLUS] = ACTIONS(901), - [anon_sym_DASH_DASH] = ACTIONS(901), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(903), - [anon_sym_DASH] = ACTIONS(903), - [anon_sym_STAR] = ACTIONS(905), - [anon_sym_CARET] = ACTIONS(901), - [anon_sym_AMP] = ACTIONS(901), - [anon_sym_this] = ACTIONS(83), + [anon_sym_checked] = ACTIONS(1667), + [anon_sym_BANG] = ACTIONS(1763), + [anon_sym_TILDE] = ACTIONS(1763), + [anon_sym_PLUS_PLUS] = ACTIONS(1763), + [anon_sym_DASH_DASH] = ACTIONS(1763), + [anon_sym_true] = ACTIONS(1673), + [anon_sym_false] = ACTIONS(1673), + [anon_sym_PLUS] = ACTIONS(1761), + [anon_sym_DASH] = ACTIONS(1761), + [anon_sym_STAR] = ACTIONS(1765), + [anon_sym_CARET] = ACTIONS(1763), + [anon_sym_AMP] = ACTIONS(1763), + [anon_sym_this] = ACTIONS(1677), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), + [anon_sym_base] = ACTIONS(1679), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1067), + [sym_predefined_type] = ACTIONS(1681), + [anon_sym_unchecked] = ACTIONS(1667), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1579), + [anon_sym_default] = ACTIONS(1683), + [anon_sym_throw] = ACTIONS(1767), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1581), - [anon_sym_DOT_DOT] = ACTIONS(1583), + [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), @@ -328198,19 +328084,19 @@ static const uint16_t ts_parse_table[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(1089), + [anon_sym_stackalloc] = ACTIONS(1691), + [anon_sym_sizeof] = ACTIONS(1693), + [anon_sym_typeof] = ACTIONS(1695), + [anon_sym___makeref] = ACTIONS(1697), + [anon_sym___reftype] = ACTIONS(1699), + [anon_sym___refvalue] = ACTIONS(1701), + [sym_null_literal] = ACTIONS(1703), + [anon_sym_SQUOTE] = ACTIONS(1705), + [sym_integer_literal] = ACTIONS(1703), + [sym_real_literal] = ACTIONS(1707), + [anon_sym_DQUOTE] = ACTIONS(1709), + [sym_verbatim_string_literal] = ACTIONS(1707), + [aux_sym_preproc_if_token1] = ACTIONS(1711), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -328221,90 +328107,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(151), - [sym_interpolation_verbatim_start] = ACTIONS(153), - [sym_interpolation_raw_start] = ACTIONS(155), - [sym_raw_string_start] = ACTIONS(157), + [sym_interpolation_regular_start] = ACTIONS(1713), + [sym_interpolation_verbatim_start] = ACTIONS(1715), + [sym_interpolation_raw_start] = ACTIONS(1717), + [sym_raw_string_start] = ACTIONS(1719), }, [1695] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2914), - [sym__name] = STATE(5885), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2357), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(3770), - [sym_non_lvalue_expression] = STATE(3880), - [sym_lvalue_expression] = STATE(2986), - [sym__expression_statement_expression] = STATE(3873), - [sym_assignment_expression] = STATE(3881), - [sym_binary_expression] = STATE(3873), - [sym_postfix_unary_expression] = STATE(3881), - [sym_prefix_unary_expression] = STATE(3881), - [sym__pointer_indirection_expression] = STATE(2913), - [sym_query_expression] = STATE(3873), - [sym_from_clause] = STATE(6168), - [sym_conditional_expression] = STATE(3873), - [sym_conditional_access_expression] = STATE(3873), - [sym_as_expression] = STATE(3873), - [sym_is_expression] = STATE(3873), - [sym_is_pattern_expression] = STATE(3873), - [sym_cast_expression] = STATE(3873), - [sym_checked_expression] = STATE(3873), - [sym_invocation_expression] = STATE(3881), - [sym_switch_expression] = STATE(3873), - [sym_await_expression] = STATE(3881), - [sym_throw_expression] = STATE(3873), - [sym_element_access_expression] = STATE(2913), - [sym_interpolated_string_expression] = STATE(3873), - [sym_member_access_expression] = STATE(2913), - [sym_object_creation_expression] = STATE(3881), - [sym_parenthesized_expression] = STATE(3881), - [sym__parenthesized_lvalue_expression] = STATE(2913), - [sym_lambda_expression] = STATE(3873), - [sym__lambda_expression_init] = STATE(7587), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3873), - [sym_anonymous_method_expression] = STATE(3873), - [sym_anonymous_object_creation_expression] = STATE(3873), - [sym_implicit_array_creation_expression] = STATE(3873), - [sym_implicit_object_creation_expression] = STATE(3873), - [sym_implicit_stackalloc_expression] = STATE(3873), - [sym_initializer_expression] = STATE(3873), - [sym_default_expression] = STATE(3873), - [sym_with_expression] = STATE(3873), - [sym_sizeof_expression] = STATE(3873), - [sym_typeof_expression] = STATE(3873), - [sym_makeref_expression] = STATE(3873), - [sym_ref_expression] = STATE(3873), - [sym_reftype_expression] = STATE(3873), - [sym_refvalue_expression] = STATE(3873), - [sym_stackalloc_expression] = STATE(3873), - [sym_range_expression] = STATE(3873), - [sym_tuple_expression] = STATE(2913), - [sym_literal] = STATE(3873), - [sym_character_literal] = STATE(3877), - [sym_string_literal] = STATE(3877), - [sym_raw_string_literal] = STATE(3877), - [sym_boolean_literal] = STATE(3877), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3873), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2901), + [sym__name] = STATE(5889), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2349), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(3576), + [sym_non_lvalue_expression] = STATE(3685), + [sym_lvalue_expression] = STATE(2890), + [sym__expression_statement_expression] = STATE(3836), + [sym_assignment_expression] = STATE(3689), + [sym_binary_expression] = STATE(3836), + [sym_postfix_unary_expression] = STATE(3689), + [sym_prefix_unary_expression] = STATE(3689), + [sym__pointer_indirection_expression] = STATE(2906), + [sym_query_expression] = STATE(3836), + [sym_from_clause] = STATE(6139), + [sym_conditional_expression] = STATE(3836), + [sym_conditional_access_expression] = STATE(3836), + [sym_as_expression] = STATE(3836), + [sym_is_expression] = STATE(3836), + [sym_is_pattern_expression] = STATE(3836), + [sym_cast_expression] = STATE(3836), + [sym_checked_expression] = STATE(3836), + [sym_invocation_expression] = STATE(3689), + [sym_switch_expression] = STATE(3836), + [sym_await_expression] = STATE(3689), + [sym_throw_expression] = STATE(3836), + [sym_element_access_expression] = STATE(2906), + [sym_interpolated_string_expression] = STATE(3836), + [sym_member_access_expression] = STATE(2906), + [sym_object_creation_expression] = STATE(3689), + [sym_parenthesized_expression] = STATE(3689), + [sym__parenthesized_lvalue_expression] = STATE(2906), + [sym_lambda_expression] = STATE(3836), + [sym__lambda_expression_init] = STATE(7456), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3836), + [sym_anonymous_method_expression] = STATE(3836), + [sym_anonymous_object_creation_expression] = STATE(3836), + [sym_implicit_array_creation_expression] = STATE(3836), + [sym_implicit_object_creation_expression] = STATE(3836), + [sym_implicit_stackalloc_expression] = STATE(3836), + [sym_initializer_expression] = STATE(3836), + [sym_default_expression] = STATE(3836), + [sym_with_expression] = STATE(3836), + [sym_sizeof_expression] = STATE(3836), + [sym_typeof_expression] = STATE(3836), + [sym_makeref_expression] = STATE(3836), + [sym_ref_expression] = STATE(3836), + [sym_reftype_expression] = STATE(3836), + [sym_refvalue_expression] = STATE(3836), + [sym_stackalloc_expression] = STATE(3836), + [sym_range_expression] = STATE(3836), + [sym_tuple_expression] = STATE(2906), + [sym_literal] = STATE(3836), + [sym_character_literal] = STATE(3843), + [sym_string_literal] = STATE(3843), + [sym_raw_string_literal] = STATE(3843), + [sym_boolean_literal] = STATE(3843), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3836), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(1695), [sym_preproc_endregion] = STATE(1695), [sym_preproc_line] = STATE(1695), @@ -328314,47 +328200,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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3382), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3477), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1627), - [anon_sym_LPAREN] = ACTIONS(2079), - [anon_sym_ref] = ACTIONS(2081), - [anon_sym_LBRACE] = ACTIONS(1633), - [anon_sym_delegate] = ACTIONS(1635), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1655), + [anon_sym_LPAREN] = ACTIONS(1755), + [anon_sym_ref] = ACTIONS(1757), + [anon_sym_LBRACE] = ACTIONS(1661), + [anon_sym_delegate] = ACTIONS(1663), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1731), + [anon_sym_new] = ACTIONS(1759), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1639), - [anon_sym_BANG] = ACTIONS(2085), - [anon_sym_TILDE] = ACTIONS(2085), - [anon_sym_PLUS_PLUS] = ACTIONS(2085), - [anon_sym_DASH_DASH] = ACTIONS(2085), - [anon_sym_true] = ACTIONS(1645), - [anon_sym_false] = ACTIONS(1645), - [anon_sym_PLUS] = ACTIONS(2083), - [anon_sym_DASH] = ACTIONS(2083), - [anon_sym_STAR] = ACTIONS(1737), - [anon_sym_CARET] = ACTIONS(2085), - [anon_sym_AMP] = ACTIONS(2085), - [anon_sym_this] = ACTIONS(1649), + [anon_sym_checked] = ACTIONS(1667), + [anon_sym_BANG] = ACTIONS(1763), + [anon_sym_TILDE] = ACTIONS(1763), + [anon_sym_PLUS_PLUS] = ACTIONS(1763), + [anon_sym_DASH_DASH] = ACTIONS(1763), + [anon_sym_true] = ACTIONS(1673), + [anon_sym_false] = ACTIONS(1673), + [anon_sym_PLUS] = ACTIONS(1761), + [anon_sym_DASH] = ACTIONS(1761), + [anon_sym_STAR] = ACTIONS(1765), + [anon_sym_CARET] = ACTIONS(1763), + [anon_sym_AMP] = ACTIONS(1763), + [anon_sym_this] = ACTIONS(1677), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1651), + [anon_sym_base] = ACTIONS(1679), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1653), - [anon_sym_unchecked] = ACTIONS(1639), + [sym_predefined_type] = ACTIONS(1681), + [anon_sym_unchecked] = ACTIONS(1667), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1655), - [anon_sym_throw] = ACTIONS(2087), + [anon_sym_default] = ACTIONS(1683), + [anon_sym_throw] = ACTIONS(1767), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2089), - [anon_sym_DOT_DOT] = ACTIONS(2091), + [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), @@ -328367,19 +328253,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1663), - [anon_sym_sizeof] = ACTIONS(1665), - [anon_sym_typeof] = ACTIONS(1667), - [anon_sym___makeref] = ACTIONS(1669), - [anon_sym___reftype] = ACTIONS(1671), - [anon_sym___refvalue] = ACTIONS(1673), - [sym_null_literal] = ACTIONS(1675), - [anon_sym_SQUOTE] = ACTIONS(1677), - [sym_integer_literal] = ACTIONS(1675), - [sym_real_literal] = ACTIONS(1679), - [anon_sym_DQUOTE] = ACTIONS(1681), - [sym_verbatim_string_literal] = ACTIONS(1679), - [aux_sym_preproc_if_token1] = ACTIONS(1683), + [anon_sym_stackalloc] = ACTIONS(1691), + [anon_sym_sizeof] = ACTIONS(1693), + [anon_sym_typeof] = ACTIONS(1695), + [anon_sym___makeref] = ACTIONS(1697), + [anon_sym___reftype] = ACTIONS(1699), + [anon_sym___refvalue] = ACTIONS(1701), + [sym_null_literal] = ACTIONS(1703), + [anon_sym_SQUOTE] = ACTIONS(1705), + [sym_integer_literal] = ACTIONS(1703), + [sym_real_literal] = ACTIONS(1707), + [anon_sym_DQUOTE] = ACTIONS(1709), + [sym_verbatim_string_literal] = ACTIONS(1707), + [aux_sym_preproc_if_token1] = ACTIONS(1711), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -328390,90 +328276,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1685), - [sym_interpolation_verbatim_start] = ACTIONS(1687), - [sym_interpolation_raw_start] = ACTIONS(1689), - [sym_raw_string_start] = ACTIONS(1691), + [sym_interpolation_regular_start] = ACTIONS(1713), + [sym_interpolation_verbatim_start] = ACTIONS(1715), + [sym_interpolation_raw_start] = ACTIONS(1717), + [sym_raw_string_start] = ACTIONS(1719), }, [1696] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2420), - [sym__name] = STATE(5875), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2369), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(4178), - [sym_non_lvalue_expression] = STATE(3066), - [sym_lvalue_expression] = STATE(3125), - [sym__expression_statement_expression] = STATE(3006), - [sym_assignment_expression] = STATE(3020), - [sym_binary_expression] = STATE(3006), - [sym_postfix_unary_expression] = STATE(3020), - [sym_prefix_unary_expression] = STATE(3020), - [sym__pointer_indirection_expression] = STATE(2423), - [sym_query_expression] = STATE(3006), - [sym_from_clause] = STATE(6145), - [sym_conditional_expression] = STATE(3006), - [sym_conditional_access_expression] = STATE(3006), - [sym_as_expression] = STATE(3006), - [sym_is_expression] = STATE(3006), - [sym_is_pattern_expression] = STATE(3006), - [sym_cast_expression] = STATE(3006), - [sym_checked_expression] = STATE(3006), - [sym_invocation_expression] = STATE(3020), - [sym_switch_expression] = STATE(3006), - [sym_await_expression] = STATE(3020), - [sym_throw_expression] = STATE(3006), - [sym_element_access_expression] = STATE(2423), - [sym_interpolated_string_expression] = STATE(3006), - [sym_member_access_expression] = STATE(2423), - [sym_object_creation_expression] = STATE(3020), - [sym_parenthesized_expression] = STATE(3020), - [sym__parenthesized_lvalue_expression] = STATE(2423), - [sym_lambda_expression] = STATE(3006), - [sym__lambda_expression_init] = STATE(7538), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3006), - [sym_anonymous_method_expression] = STATE(3006), - [sym_anonymous_object_creation_expression] = STATE(3006), - [sym_implicit_array_creation_expression] = STATE(3006), - [sym_implicit_object_creation_expression] = STATE(3006), - [sym_implicit_stackalloc_expression] = STATE(3006), - [sym_initializer_expression] = STATE(3006), - [sym_default_expression] = STATE(3006), - [sym_with_expression] = STATE(3006), - [sym_sizeof_expression] = STATE(3006), - [sym_typeof_expression] = STATE(3006), - [sym_makeref_expression] = STATE(3006), - [sym_ref_expression] = STATE(3006), - [sym_reftype_expression] = STATE(3006), - [sym_refvalue_expression] = STATE(3006), - [sym_stackalloc_expression] = STATE(3006), - [sym_range_expression] = STATE(3006), - [sym_tuple_expression] = STATE(2423), - [sym_literal] = STATE(3006), - [sym_character_literal] = STATE(3011), - [sym_string_literal] = STATE(3011), - [sym_raw_string_literal] = STATE(3011), - [sym_boolean_literal] = STATE(3011), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3006), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2901), + [sym__name] = STATE(5889), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2349), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(3589), + [sym_non_lvalue_expression] = STATE(3685), + [sym_lvalue_expression] = STATE(2890), + [sym__expression_statement_expression] = STATE(3836), + [sym_assignment_expression] = STATE(3689), + [sym_binary_expression] = STATE(3836), + [sym_postfix_unary_expression] = STATE(3689), + [sym_prefix_unary_expression] = STATE(3689), + [sym__pointer_indirection_expression] = STATE(2906), + [sym_query_expression] = STATE(3836), + [sym_from_clause] = STATE(6139), + [sym_conditional_expression] = STATE(3836), + [sym_conditional_access_expression] = STATE(3836), + [sym_as_expression] = STATE(3836), + [sym_is_expression] = STATE(3836), + [sym_is_pattern_expression] = STATE(3836), + [sym_cast_expression] = STATE(3836), + [sym_checked_expression] = STATE(3836), + [sym_invocation_expression] = STATE(3689), + [sym_switch_expression] = STATE(3836), + [sym_await_expression] = STATE(3689), + [sym_throw_expression] = STATE(3836), + [sym_element_access_expression] = STATE(2906), + [sym_interpolated_string_expression] = STATE(3836), + [sym_member_access_expression] = STATE(2906), + [sym_object_creation_expression] = STATE(3689), + [sym_parenthesized_expression] = STATE(3689), + [sym__parenthesized_lvalue_expression] = STATE(2906), + [sym_lambda_expression] = STATE(3836), + [sym__lambda_expression_init] = STATE(7456), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3836), + [sym_anonymous_method_expression] = STATE(3836), + [sym_anonymous_object_creation_expression] = STATE(3836), + [sym_implicit_array_creation_expression] = STATE(3836), + [sym_implicit_object_creation_expression] = STATE(3836), + [sym_implicit_stackalloc_expression] = STATE(3836), + [sym_initializer_expression] = STATE(3836), + [sym_default_expression] = STATE(3836), + [sym_with_expression] = STATE(3836), + [sym_sizeof_expression] = STATE(3836), + [sym_typeof_expression] = STATE(3836), + [sym_makeref_expression] = STATE(3836), + [sym_ref_expression] = STATE(3836), + [sym_reftype_expression] = STATE(3836), + [sym_refvalue_expression] = STATE(3836), + [sym_stackalloc_expression] = STATE(3836), + [sym_range_expression] = STATE(3836), + [sym_tuple_expression] = STATE(2906), + [sym_literal] = STATE(3836), + [sym_character_literal] = STATE(3843), + [sym_string_literal] = STATE(3843), + [sym_raw_string_literal] = STATE(3843), + [sym_boolean_literal] = STATE(3843), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3836), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(1696), [sym_preproc_endregion] = STATE(1696), [sym_preproc_line] = STATE(1696), @@ -328483,47 +328369,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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3440), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3477), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1241), - [anon_sym_LPAREN] = ACTIONS(2195), - [anon_sym_ref] = ACTIONS(2197), - [anon_sym_LBRACE] = ACTIONS(1247), - [anon_sym_delegate] = ACTIONS(1249), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1655), + [anon_sym_LPAREN] = ACTIONS(1755), + [anon_sym_ref] = ACTIONS(1757), + [anon_sym_LBRACE] = ACTIONS(1661), + [anon_sym_delegate] = ACTIONS(1663), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1845), + [anon_sym_new] = ACTIONS(1759), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1253), - [anon_sym_BANG] = ACTIONS(2201), - [anon_sym_TILDE] = ACTIONS(2201), - [anon_sym_PLUS_PLUS] = ACTIONS(2201), - [anon_sym_DASH_DASH] = ACTIONS(2201), - [anon_sym_true] = ACTIONS(1259), - [anon_sym_false] = ACTIONS(1259), - [anon_sym_PLUS] = ACTIONS(2199), - [anon_sym_DASH] = ACTIONS(2199), - [anon_sym_STAR] = ACTIONS(1851), - [anon_sym_CARET] = ACTIONS(2201), - [anon_sym_AMP] = ACTIONS(2201), - [anon_sym_this] = ACTIONS(1263), + [anon_sym_checked] = ACTIONS(1667), + [anon_sym_BANG] = ACTIONS(1763), + [anon_sym_TILDE] = ACTIONS(1763), + [anon_sym_PLUS_PLUS] = ACTIONS(1763), + [anon_sym_DASH_DASH] = ACTIONS(1763), + [anon_sym_true] = ACTIONS(1673), + [anon_sym_false] = ACTIONS(1673), + [anon_sym_PLUS] = ACTIONS(1761), + [anon_sym_DASH] = ACTIONS(1761), + [anon_sym_STAR] = ACTIONS(1765), + [anon_sym_CARET] = ACTIONS(1763), + [anon_sym_AMP] = ACTIONS(1763), + [anon_sym_this] = ACTIONS(1677), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1265), + [anon_sym_base] = ACTIONS(1679), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1267), - [anon_sym_unchecked] = ACTIONS(1253), + [sym_predefined_type] = ACTIONS(1681), + [anon_sym_unchecked] = ACTIONS(1667), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1269), - [anon_sym_throw] = ACTIONS(2203), + [anon_sym_default] = ACTIONS(1683), + [anon_sym_throw] = ACTIONS(1767), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2205), - [anon_sym_DOT_DOT] = ACTIONS(2207), + [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), @@ -328536,19 +328422,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1277), - [anon_sym_sizeof] = ACTIONS(1279), - [anon_sym_typeof] = ACTIONS(1281), - [anon_sym___makeref] = ACTIONS(1283), - [anon_sym___reftype] = ACTIONS(1285), - [anon_sym___refvalue] = ACTIONS(1287), - [sym_null_literal] = ACTIONS(1289), - [anon_sym_SQUOTE] = ACTIONS(1291), - [sym_integer_literal] = ACTIONS(1289), - [sym_real_literal] = ACTIONS(1293), - [anon_sym_DQUOTE] = ACTIONS(1295), - [sym_verbatim_string_literal] = ACTIONS(1293), - [aux_sym_preproc_if_token1] = ACTIONS(1297), + [anon_sym_stackalloc] = ACTIONS(1691), + [anon_sym_sizeof] = ACTIONS(1693), + [anon_sym_typeof] = ACTIONS(1695), + [anon_sym___makeref] = ACTIONS(1697), + [anon_sym___reftype] = ACTIONS(1699), + [anon_sym___refvalue] = ACTIONS(1701), + [sym_null_literal] = ACTIONS(1703), + [anon_sym_SQUOTE] = ACTIONS(1705), + [sym_integer_literal] = ACTIONS(1703), + [sym_real_literal] = ACTIONS(1707), + [anon_sym_DQUOTE] = ACTIONS(1709), + [sym_verbatim_string_literal] = ACTIONS(1707), + [aux_sym_preproc_if_token1] = ACTIONS(1711), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -328559,90 +328445,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1299), - [sym_interpolation_verbatim_start] = ACTIONS(1301), - [sym_interpolation_raw_start] = ACTIONS(1303), - [sym_raw_string_start] = ACTIONS(1305), + [sym_interpolation_regular_start] = ACTIONS(1713), + [sym_interpolation_verbatim_start] = ACTIONS(1715), + [sym_interpolation_raw_start] = ACTIONS(1717), + [sym_raw_string_start] = ACTIONS(1719), }, [1697] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2420), - [sym__name] = STATE(5875), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2369), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(2908), - [sym_non_lvalue_expression] = STATE(3066), - [sym_lvalue_expression] = STATE(3125), - [sym__expression_statement_expression] = STATE(3006), - [sym_assignment_expression] = STATE(3020), - [sym_binary_expression] = STATE(3006), - [sym_postfix_unary_expression] = STATE(3020), - [sym_prefix_unary_expression] = STATE(3020), - [sym__pointer_indirection_expression] = STATE(2423), - [sym_query_expression] = STATE(3006), - [sym_from_clause] = STATE(6145), - [sym_conditional_expression] = STATE(3006), - [sym_conditional_access_expression] = STATE(3006), - [sym_as_expression] = STATE(3006), - [sym_is_expression] = STATE(3006), - [sym_is_pattern_expression] = STATE(3006), - [sym_cast_expression] = STATE(3006), - [sym_checked_expression] = STATE(3006), - [sym_invocation_expression] = STATE(3020), - [sym_switch_expression] = STATE(3006), - [sym_await_expression] = STATE(3020), - [sym_throw_expression] = STATE(3006), - [sym_element_access_expression] = STATE(2423), - [sym_interpolated_string_expression] = STATE(3006), - [sym_member_access_expression] = STATE(2423), - [sym_object_creation_expression] = STATE(3020), - [sym_parenthesized_expression] = STATE(3020), - [sym__parenthesized_lvalue_expression] = STATE(2423), - [sym_lambda_expression] = STATE(3006), - [sym__lambda_expression_init] = STATE(7538), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3006), - [sym_anonymous_method_expression] = STATE(3006), - [sym_anonymous_object_creation_expression] = STATE(3006), - [sym_implicit_array_creation_expression] = STATE(3006), - [sym_implicit_object_creation_expression] = STATE(3006), - [sym_implicit_stackalloc_expression] = STATE(3006), - [sym_initializer_expression] = STATE(3006), - [sym_default_expression] = STATE(3006), - [sym_with_expression] = STATE(3006), - [sym_sizeof_expression] = STATE(3006), - [sym_typeof_expression] = STATE(3006), - [sym_makeref_expression] = STATE(3006), - [sym_ref_expression] = STATE(3006), - [sym_reftype_expression] = STATE(3006), - [sym_refvalue_expression] = STATE(3006), - [sym_stackalloc_expression] = STATE(3006), - [sym_range_expression] = STATE(3006), - [sym_tuple_expression] = STATE(2423), - [sym_literal] = STATE(3006), - [sym_character_literal] = STATE(3011), - [sym_string_literal] = STATE(3011), - [sym_raw_string_literal] = STATE(3011), - [sym_boolean_literal] = STATE(3011), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3006), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2901), + [sym__name] = STATE(5889), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2349), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(3606), + [sym_non_lvalue_expression] = STATE(3685), + [sym_lvalue_expression] = STATE(2890), + [sym__expression_statement_expression] = STATE(3836), + [sym_assignment_expression] = STATE(3689), + [sym_binary_expression] = STATE(3836), + [sym_postfix_unary_expression] = STATE(3689), + [sym_prefix_unary_expression] = STATE(3689), + [sym__pointer_indirection_expression] = STATE(2906), + [sym_query_expression] = STATE(3836), + [sym_from_clause] = STATE(6139), + [sym_conditional_expression] = STATE(3836), + [sym_conditional_access_expression] = STATE(3836), + [sym_as_expression] = STATE(3836), + [sym_is_expression] = STATE(3836), + [sym_is_pattern_expression] = STATE(3836), + [sym_cast_expression] = STATE(3836), + [sym_checked_expression] = STATE(3836), + [sym_invocation_expression] = STATE(3689), + [sym_switch_expression] = STATE(3836), + [sym_await_expression] = STATE(3689), + [sym_throw_expression] = STATE(3836), + [sym_element_access_expression] = STATE(2906), + [sym_interpolated_string_expression] = STATE(3836), + [sym_member_access_expression] = STATE(2906), + [sym_object_creation_expression] = STATE(3689), + [sym_parenthesized_expression] = STATE(3689), + [sym__parenthesized_lvalue_expression] = STATE(2906), + [sym_lambda_expression] = STATE(3836), + [sym__lambda_expression_init] = STATE(7456), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3836), + [sym_anonymous_method_expression] = STATE(3836), + [sym_anonymous_object_creation_expression] = STATE(3836), + [sym_implicit_array_creation_expression] = STATE(3836), + [sym_implicit_object_creation_expression] = STATE(3836), + [sym_implicit_stackalloc_expression] = STATE(3836), + [sym_initializer_expression] = STATE(3836), + [sym_default_expression] = STATE(3836), + [sym_with_expression] = STATE(3836), + [sym_sizeof_expression] = STATE(3836), + [sym_typeof_expression] = STATE(3836), + [sym_makeref_expression] = STATE(3836), + [sym_ref_expression] = STATE(3836), + [sym_reftype_expression] = STATE(3836), + [sym_refvalue_expression] = STATE(3836), + [sym_stackalloc_expression] = STATE(3836), + [sym_range_expression] = STATE(3836), + [sym_tuple_expression] = STATE(2906), + [sym_literal] = STATE(3836), + [sym_character_literal] = STATE(3843), + [sym_string_literal] = STATE(3843), + [sym_raw_string_literal] = STATE(3843), + [sym_boolean_literal] = STATE(3843), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3836), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(1697), [sym_preproc_endregion] = STATE(1697), [sym_preproc_line] = STATE(1697), @@ -328652,47 +328538,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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3440), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3477), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1241), - [anon_sym_LPAREN] = ACTIONS(2195), - [anon_sym_ref] = ACTIONS(2197), - [anon_sym_LBRACE] = ACTIONS(1247), - [anon_sym_delegate] = ACTIONS(1249), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1655), + [anon_sym_LPAREN] = ACTIONS(1755), + [anon_sym_ref] = ACTIONS(1757), + [anon_sym_LBRACE] = ACTIONS(1661), + [anon_sym_delegate] = ACTIONS(1663), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1845), + [anon_sym_new] = ACTIONS(1759), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1253), - [anon_sym_BANG] = ACTIONS(2201), - [anon_sym_TILDE] = ACTIONS(2201), - [anon_sym_PLUS_PLUS] = ACTIONS(2201), - [anon_sym_DASH_DASH] = ACTIONS(2201), - [anon_sym_true] = ACTIONS(1259), - [anon_sym_false] = ACTIONS(1259), - [anon_sym_PLUS] = ACTIONS(2199), - [anon_sym_DASH] = ACTIONS(2199), - [anon_sym_STAR] = ACTIONS(1851), - [anon_sym_CARET] = ACTIONS(2201), - [anon_sym_AMP] = ACTIONS(2201), - [anon_sym_this] = ACTIONS(1263), + [anon_sym_checked] = ACTIONS(1667), + [anon_sym_BANG] = ACTIONS(1763), + [anon_sym_TILDE] = ACTIONS(1763), + [anon_sym_PLUS_PLUS] = ACTIONS(1763), + [anon_sym_DASH_DASH] = ACTIONS(1763), + [anon_sym_true] = ACTIONS(1673), + [anon_sym_false] = ACTIONS(1673), + [anon_sym_PLUS] = ACTIONS(1761), + [anon_sym_DASH] = ACTIONS(1761), + [anon_sym_STAR] = ACTIONS(1765), + [anon_sym_CARET] = ACTIONS(1763), + [anon_sym_AMP] = ACTIONS(1763), + [anon_sym_this] = ACTIONS(1677), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1265), + [anon_sym_base] = ACTIONS(1679), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1267), - [anon_sym_unchecked] = ACTIONS(1253), + [sym_predefined_type] = ACTIONS(1681), + [anon_sym_unchecked] = ACTIONS(1667), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1269), - [anon_sym_throw] = ACTIONS(2203), + [anon_sym_default] = ACTIONS(1683), + [anon_sym_throw] = ACTIONS(1767), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2205), - [anon_sym_DOT_DOT] = ACTIONS(2207), + [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), @@ -328705,19 +328591,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1277), - [anon_sym_sizeof] = ACTIONS(1279), - [anon_sym_typeof] = ACTIONS(1281), - [anon_sym___makeref] = ACTIONS(1283), - [anon_sym___reftype] = ACTIONS(1285), - [anon_sym___refvalue] = ACTIONS(1287), - [sym_null_literal] = ACTIONS(1289), - [anon_sym_SQUOTE] = ACTIONS(1291), - [sym_integer_literal] = ACTIONS(1289), - [sym_real_literal] = ACTIONS(1293), - [anon_sym_DQUOTE] = ACTIONS(1295), - [sym_verbatim_string_literal] = ACTIONS(1293), - [aux_sym_preproc_if_token1] = ACTIONS(1297), + [anon_sym_stackalloc] = ACTIONS(1691), + [anon_sym_sizeof] = ACTIONS(1693), + [anon_sym_typeof] = ACTIONS(1695), + [anon_sym___makeref] = ACTIONS(1697), + [anon_sym___reftype] = ACTIONS(1699), + [anon_sym___refvalue] = ACTIONS(1701), + [sym_null_literal] = ACTIONS(1703), + [anon_sym_SQUOTE] = ACTIONS(1705), + [sym_integer_literal] = ACTIONS(1703), + [sym_real_literal] = ACTIONS(1707), + [anon_sym_DQUOTE] = ACTIONS(1709), + [sym_verbatim_string_literal] = ACTIONS(1707), + [aux_sym_preproc_if_token1] = ACTIONS(1711), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -328728,90 +328614,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1299), - [sym_interpolation_verbatim_start] = ACTIONS(1301), - [sym_interpolation_raw_start] = ACTIONS(1303), - [sym_raw_string_start] = ACTIONS(1305), + [sym_interpolation_regular_start] = ACTIONS(1713), + [sym_interpolation_verbatim_start] = ACTIONS(1715), + [sym_interpolation_raw_start] = ACTIONS(1717), + [sym_raw_string_start] = ACTIONS(1719), }, [1698] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(5160), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2204), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(4987), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3520), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3080), - [sym_postfix_unary_expression] = STATE(3111), - [sym_prefix_unary_expression] = STATE(3111), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6154), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3080), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3111), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3080), - [sym_member_access_expression] = STATE(2484), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3111), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7530), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(3080), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3080), - [sym_typeof_expression] = STATE(3080), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2484), - [sym_literal] = STATE(3080), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2901), + [sym__name] = STATE(5889), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2349), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(3607), + [sym_non_lvalue_expression] = STATE(3685), + [sym_lvalue_expression] = STATE(2890), + [sym__expression_statement_expression] = STATE(3836), + [sym_assignment_expression] = STATE(3689), + [sym_binary_expression] = STATE(3836), + [sym_postfix_unary_expression] = STATE(3689), + [sym_prefix_unary_expression] = STATE(3689), + [sym__pointer_indirection_expression] = STATE(2906), + [sym_query_expression] = STATE(3836), + [sym_from_clause] = STATE(6139), + [sym_conditional_expression] = STATE(3836), + [sym_conditional_access_expression] = STATE(3836), + [sym_as_expression] = STATE(3836), + [sym_is_expression] = STATE(3836), + [sym_is_pattern_expression] = STATE(3836), + [sym_cast_expression] = STATE(3836), + [sym_checked_expression] = STATE(3836), + [sym_invocation_expression] = STATE(3689), + [sym_switch_expression] = STATE(3836), + [sym_await_expression] = STATE(3689), + [sym_throw_expression] = STATE(3836), + [sym_element_access_expression] = STATE(2906), + [sym_interpolated_string_expression] = STATE(3836), + [sym_member_access_expression] = STATE(2906), + [sym_object_creation_expression] = STATE(3689), + [sym_parenthesized_expression] = STATE(3689), + [sym__parenthesized_lvalue_expression] = STATE(2906), + [sym_lambda_expression] = STATE(3836), + [sym__lambda_expression_init] = STATE(7456), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3836), + [sym_anonymous_method_expression] = STATE(3836), + [sym_anonymous_object_creation_expression] = STATE(3836), + [sym_implicit_array_creation_expression] = STATE(3836), + [sym_implicit_object_creation_expression] = STATE(3836), + [sym_implicit_stackalloc_expression] = STATE(3836), + [sym_initializer_expression] = STATE(3836), + [sym_default_expression] = STATE(3836), + [sym_with_expression] = STATE(3836), + [sym_sizeof_expression] = STATE(3836), + [sym_typeof_expression] = STATE(3836), + [sym_makeref_expression] = STATE(3836), + [sym_ref_expression] = STATE(3836), + [sym_reftype_expression] = STATE(3836), + [sym_refvalue_expression] = STATE(3836), + [sym_stackalloc_expression] = STATE(3836), + [sym_range_expression] = STATE(3836), + [sym_tuple_expression] = STATE(2906), + [sym_literal] = STATE(3836), + [sym_character_literal] = STATE(3843), + [sym_string_literal] = STATE(3843), + [sym_raw_string_literal] = STATE(3843), + [sym_boolean_literal] = STATE(3843), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3836), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(1698), [sym_preproc_endregion] = STATE(1698), [sym_preproc_line] = STATE(1698), @@ -328821,47 +328707,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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3477), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1481), - [anon_sym_LPAREN] = ACTIONS(43), - [anon_sym_ref] = ACTIONS(661), - [anon_sym_LBRACE] = ACTIONS(1487), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1655), + [anon_sym_LPAREN] = ACTIONS(1755), + [anon_sym_ref] = ACTIONS(1757), + [anon_sym_LBRACE] = ACTIONS(1661), + [anon_sym_delegate] = ACTIONS(1663), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1061), + [anon_sym_new] = ACTIONS(1759), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = 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(1585), - [anon_sym_DASH] = ACTIONS(1585), - [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(1587), - [anon_sym_AMP] = ACTIONS(1587), - [anon_sym_this] = ACTIONS(83), + [anon_sym_checked] = ACTIONS(1667), + [anon_sym_BANG] = ACTIONS(1763), + [anon_sym_TILDE] = ACTIONS(1763), + [anon_sym_PLUS_PLUS] = ACTIONS(1763), + [anon_sym_DASH_DASH] = ACTIONS(1763), + [anon_sym_true] = ACTIONS(1673), + [anon_sym_false] = ACTIONS(1673), + [anon_sym_PLUS] = ACTIONS(1761), + [anon_sym_DASH] = ACTIONS(1761), + [anon_sym_STAR] = ACTIONS(1765), + [anon_sym_CARET] = ACTIONS(1763), + [anon_sym_AMP] = ACTIONS(1763), + [anon_sym_this] = ACTIONS(1677), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), + [anon_sym_base] = ACTIONS(1679), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1067), + [sym_predefined_type] = ACTIONS(1681), + [anon_sym_unchecked] = ACTIONS(1667), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1589), + [anon_sym_default] = ACTIONS(1683), + [anon_sym_throw] = ACTIONS(1767), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1591), - [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), @@ -328874,19 +328760,19 @@ static const uint16_t ts_parse_table[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(1089), + [anon_sym_stackalloc] = ACTIONS(1691), + [anon_sym_sizeof] = ACTIONS(1693), + [anon_sym_typeof] = ACTIONS(1695), + [anon_sym___makeref] = ACTIONS(1697), + [anon_sym___reftype] = ACTIONS(1699), + [anon_sym___refvalue] = ACTIONS(1701), + [sym_null_literal] = ACTIONS(1703), + [anon_sym_SQUOTE] = ACTIONS(1705), + [sym_integer_literal] = ACTIONS(1703), + [sym_real_literal] = ACTIONS(1707), + [anon_sym_DQUOTE] = ACTIONS(1709), + [sym_verbatim_string_literal] = ACTIONS(1707), + [aux_sym_preproc_if_token1] = ACTIONS(1711), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -328897,90 +328783,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(151), - [sym_interpolation_verbatim_start] = ACTIONS(153), - [sym_interpolation_raw_start] = ACTIONS(155), - [sym_raw_string_start] = ACTIONS(157), + [sym_interpolation_regular_start] = ACTIONS(1713), + [sym_interpolation_verbatim_start] = ACTIONS(1715), + [sym_interpolation_raw_start] = ACTIONS(1717), + [sym_raw_string_start] = ACTIONS(1719), }, [1699] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(5910), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2247), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(5505), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3379), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3080), - [sym_postfix_unary_expression] = STATE(3111), - [sym_prefix_unary_expression] = STATE(3111), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6154), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3080), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3111), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3080), - [sym_member_access_expression] = STATE(2484), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3111), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7575), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(3080), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3080), - [sym_typeof_expression] = STATE(3080), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2484), - [sym_literal] = STATE(3080), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2901), + [sym__name] = STATE(5889), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2349), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(3608), + [sym_non_lvalue_expression] = STATE(3685), + [sym_lvalue_expression] = STATE(2890), + [sym__expression_statement_expression] = STATE(3836), + [sym_assignment_expression] = STATE(3689), + [sym_binary_expression] = STATE(3836), + [sym_postfix_unary_expression] = STATE(3689), + [sym_prefix_unary_expression] = STATE(3689), + [sym__pointer_indirection_expression] = STATE(2906), + [sym_query_expression] = STATE(3836), + [sym_from_clause] = STATE(6139), + [sym_conditional_expression] = STATE(3836), + [sym_conditional_access_expression] = STATE(3836), + [sym_as_expression] = STATE(3836), + [sym_is_expression] = STATE(3836), + [sym_is_pattern_expression] = STATE(3836), + [sym_cast_expression] = STATE(3836), + [sym_checked_expression] = STATE(3836), + [sym_invocation_expression] = STATE(3689), + [sym_switch_expression] = STATE(3836), + [sym_await_expression] = STATE(3689), + [sym_throw_expression] = STATE(3836), + [sym_element_access_expression] = STATE(2906), + [sym_interpolated_string_expression] = STATE(3836), + [sym_member_access_expression] = STATE(2906), + [sym_object_creation_expression] = STATE(3689), + [sym_parenthesized_expression] = STATE(3689), + [sym__parenthesized_lvalue_expression] = STATE(2906), + [sym_lambda_expression] = STATE(3836), + [sym__lambda_expression_init] = STATE(7456), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3836), + [sym_anonymous_method_expression] = STATE(3836), + [sym_anonymous_object_creation_expression] = STATE(3836), + [sym_implicit_array_creation_expression] = STATE(3836), + [sym_implicit_object_creation_expression] = STATE(3836), + [sym_implicit_stackalloc_expression] = STATE(3836), + [sym_initializer_expression] = STATE(3836), + [sym_default_expression] = STATE(3836), + [sym_with_expression] = STATE(3836), + [sym_sizeof_expression] = STATE(3836), + [sym_typeof_expression] = STATE(3836), + [sym_makeref_expression] = STATE(3836), + [sym_ref_expression] = STATE(3836), + [sym_reftype_expression] = STATE(3836), + [sym_refvalue_expression] = STATE(3836), + [sym_stackalloc_expression] = STATE(3836), + [sym_range_expression] = STATE(3836), + [sym_tuple_expression] = STATE(2906), + [sym_literal] = STATE(3836), + [sym_character_literal] = STATE(3843), + [sym_string_literal] = STATE(3843), + [sym_raw_string_literal] = STATE(3843), + [sym_boolean_literal] = STATE(3843), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3836), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(1699), [sym_preproc_endregion] = STATE(1699), [sym_preproc_line] = STATE(1699), @@ -328990,47 +328876,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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3477), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1481), - [anon_sym_LPAREN] = ACTIONS(895), - [anon_sym_ref] = ACTIONS(897), - [anon_sym_LBRACE] = ACTIONS(1487), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1655), + [anon_sym_LPAREN] = ACTIONS(1755), + [anon_sym_ref] = ACTIONS(1757), + [anon_sym_LBRACE] = ACTIONS(1661), + [anon_sym_delegate] = ACTIONS(1663), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1061), + [anon_sym_new] = ACTIONS(1759), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1067), - [anon_sym_BANG] = ACTIONS(1495), - [anon_sym_TILDE] = ACTIONS(1495), - [anon_sym_PLUS_PLUS] = ACTIONS(1495), - [anon_sym_DASH_DASH] = ACTIONS(1495), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1493), - [anon_sym_DASH] = ACTIONS(1493), - [anon_sym_STAR] = ACTIONS(905), - [anon_sym_CARET] = ACTIONS(1495), - [anon_sym_AMP] = ACTIONS(1495), - [anon_sym_this] = ACTIONS(83), + [anon_sym_checked] = ACTIONS(1667), + [anon_sym_BANG] = ACTIONS(1763), + [anon_sym_TILDE] = ACTIONS(1763), + [anon_sym_PLUS_PLUS] = ACTIONS(1763), + [anon_sym_DASH_DASH] = ACTIONS(1763), + [anon_sym_true] = ACTIONS(1673), + [anon_sym_false] = ACTIONS(1673), + [anon_sym_PLUS] = ACTIONS(1761), + [anon_sym_DASH] = ACTIONS(1761), + [anon_sym_STAR] = ACTIONS(1765), + [anon_sym_CARET] = ACTIONS(1763), + [anon_sym_AMP] = ACTIONS(1763), + [anon_sym_this] = ACTIONS(1677), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), + [anon_sym_base] = ACTIONS(1679), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1067), + [sym_predefined_type] = ACTIONS(1681), + [anon_sym_unchecked] = ACTIONS(1667), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1079), + [anon_sym_default] = ACTIONS(1683), + [anon_sym_throw] = ACTIONS(1767), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1081), - [anon_sym_DOT_DOT] = ACTIONS(911), + [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), @@ -329043,19 +328929,19 @@ static const uint16_t ts_parse_table[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(1089), + [anon_sym_stackalloc] = ACTIONS(1691), + [anon_sym_sizeof] = ACTIONS(1693), + [anon_sym_typeof] = ACTIONS(1695), + [anon_sym___makeref] = ACTIONS(1697), + [anon_sym___reftype] = ACTIONS(1699), + [anon_sym___refvalue] = ACTIONS(1701), + [sym_null_literal] = ACTIONS(1703), + [anon_sym_SQUOTE] = ACTIONS(1705), + [sym_integer_literal] = ACTIONS(1703), + [sym_real_literal] = ACTIONS(1707), + [anon_sym_DQUOTE] = ACTIONS(1709), + [sym_verbatim_string_literal] = ACTIONS(1707), + [aux_sym_preproc_if_token1] = ACTIONS(1711), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -329066,90 +328952,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(151), - [sym_interpolation_verbatim_start] = ACTIONS(153), - [sym_interpolation_raw_start] = ACTIONS(155), - [sym_raw_string_start] = ACTIONS(157), + [sym_interpolation_regular_start] = ACTIONS(1713), + [sym_interpolation_verbatim_start] = ACTIONS(1715), + [sym_interpolation_raw_start] = ACTIONS(1717), + [sym_raw_string_start] = ACTIONS(1719), }, [1700] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(5160), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2204), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(4989), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3520), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3080), - [sym_postfix_unary_expression] = STATE(3111), - [sym_prefix_unary_expression] = STATE(3111), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6154), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3080), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3111), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3080), - [sym_member_access_expression] = STATE(2484), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3111), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7530), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(3080), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3080), - [sym_typeof_expression] = STATE(3080), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2484), - [sym_literal] = STATE(3080), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2901), + [sym__name] = STATE(5889), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2349), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(3611), + [sym_non_lvalue_expression] = STATE(3685), + [sym_lvalue_expression] = STATE(2890), + [sym__expression_statement_expression] = STATE(3836), + [sym_assignment_expression] = STATE(3689), + [sym_binary_expression] = STATE(3836), + [sym_postfix_unary_expression] = STATE(3689), + [sym_prefix_unary_expression] = STATE(3689), + [sym__pointer_indirection_expression] = STATE(2906), + [sym_query_expression] = STATE(3836), + [sym_from_clause] = STATE(6139), + [sym_conditional_expression] = STATE(3836), + [sym_conditional_access_expression] = STATE(3836), + [sym_as_expression] = STATE(3836), + [sym_is_expression] = STATE(3836), + [sym_is_pattern_expression] = STATE(3836), + [sym_cast_expression] = STATE(3836), + [sym_checked_expression] = STATE(3836), + [sym_invocation_expression] = STATE(3689), + [sym_switch_expression] = STATE(3836), + [sym_await_expression] = STATE(3689), + [sym_throw_expression] = STATE(3836), + [sym_element_access_expression] = STATE(2906), + [sym_interpolated_string_expression] = STATE(3836), + [sym_member_access_expression] = STATE(2906), + [sym_object_creation_expression] = STATE(3689), + [sym_parenthesized_expression] = STATE(3689), + [sym__parenthesized_lvalue_expression] = STATE(2906), + [sym_lambda_expression] = STATE(3836), + [sym__lambda_expression_init] = STATE(7456), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3836), + [sym_anonymous_method_expression] = STATE(3836), + [sym_anonymous_object_creation_expression] = STATE(3836), + [sym_implicit_array_creation_expression] = STATE(3836), + [sym_implicit_object_creation_expression] = STATE(3836), + [sym_implicit_stackalloc_expression] = STATE(3836), + [sym_initializer_expression] = STATE(3836), + [sym_default_expression] = STATE(3836), + [sym_with_expression] = STATE(3836), + [sym_sizeof_expression] = STATE(3836), + [sym_typeof_expression] = STATE(3836), + [sym_makeref_expression] = STATE(3836), + [sym_ref_expression] = STATE(3836), + [sym_reftype_expression] = STATE(3836), + [sym_refvalue_expression] = STATE(3836), + [sym_stackalloc_expression] = STATE(3836), + [sym_range_expression] = STATE(3836), + [sym_tuple_expression] = STATE(2906), + [sym_literal] = STATE(3836), + [sym_character_literal] = STATE(3843), + [sym_string_literal] = STATE(3843), + [sym_raw_string_literal] = STATE(3843), + [sym_boolean_literal] = STATE(3843), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3836), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(1700), [sym_preproc_endregion] = STATE(1700), [sym_preproc_line] = STATE(1700), @@ -329159,47 +329045,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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3477), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1481), - [anon_sym_LPAREN] = ACTIONS(43), - [anon_sym_ref] = ACTIONS(661), - [anon_sym_LBRACE] = ACTIONS(1487), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1655), + [anon_sym_LPAREN] = ACTIONS(1755), + [anon_sym_ref] = ACTIONS(1757), + [anon_sym_LBRACE] = ACTIONS(1661), + [anon_sym_delegate] = ACTIONS(1663), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1061), + [anon_sym_new] = ACTIONS(1759), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = 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(1585), - [anon_sym_DASH] = ACTIONS(1585), - [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(1587), - [anon_sym_AMP] = ACTIONS(1587), - [anon_sym_this] = ACTIONS(83), + [anon_sym_checked] = ACTIONS(1667), + [anon_sym_BANG] = ACTIONS(1763), + [anon_sym_TILDE] = ACTIONS(1763), + [anon_sym_PLUS_PLUS] = ACTIONS(1763), + [anon_sym_DASH_DASH] = ACTIONS(1763), + [anon_sym_true] = ACTIONS(1673), + [anon_sym_false] = ACTIONS(1673), + [anon_sym_PLUS] = ACTIONS(1761), + [anon_sym_DASH] = ACTIONS(1761), + [anon_sym_STAR] = ACTIONS(1765), + [anon_sym_CARET] = ACTIONS(1763), + [anon_sym_AMP] = ACTIONS(1763), + [anon_sym_this] = ACTIONS(1677), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), + [anon_sym_base] = ACTIONS(1679), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1067), + [sym_predefined_type] = ACTIONS(1681), + [anon_sym_unchecked] = ACTIONS(1667), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1589), + [anon_sym_default] = ACTIONS(1683), + [anon_sym_throw] = ACTIONS(1767), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1591), - [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), @@ -329212,19 +329098,19 @@ static const uint16_t ts_parse_table[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(1089), + [anon_sym_stackalloc] = ACTIONS(1691), + [anon_sym_sizeof] = ACTIONS(1693), + [anon_sym_typeof] = ACTIONS(1695), + [anon_sym___makeref] = ACTIONS(1697), + [anon_sym___reftype] = ACTIONS(1699), + [anon_sym___refvalue] = ACTIONS(1701), + [sym_null_literal] = ACTIONS(1703), + [anon_sym_SQUOTE] = ACTIONS(1705), + [sym_integer_literal] = ACTIONS(1703), + [sym_real_literal] = ACTIONS(1707), + [anon_sym_DQUOTE] = ACTIONS(1709), + [sym_verbatim_string_literal] = ACTIONS(1707), + [aux_sym_preproc_if_token1] = ACTIONS(1711), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -329235,90 +329121,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(151), - [sym_interpolation_verbatim_start] = ACTIONS(153), - [sym_interpolation_raw_start] = ACTIONS(155), - [sym_raw_string_start] = ACTIONS(157), + [sym_interpolation_regular_start] = ACTIONS(1713), + [sym_interpolation_verbatim_start] = ACTIONS(1715), + [sym_interpolation_raw_start] = ACTIONS(1717), + [sym_raw_string_start] = ACTIONS(1719), }, [1701] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(5907), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2404), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(4250), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3140), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3080), - [sym_postfix_unary_expression] = STATE(3111), - [sym_prefix_unary_expression] = STATE(3111), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6183), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3080), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3111), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3080), - [sym_member_access_expression] = STATE(2484), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3111), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7703), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(3080), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3080), - [sym_typeof_expression] = STATE(3080), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2484), - [sym_literal] = STATE(3080), - [sym_character_literal] = STATE(3011), - [sym_string_literal] = STATE(3011), - [sym_raw_string_literal] = STATE(3011), - [sym_boolean_literal] = STATE(3011), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2901), + [sym__name] = STATE(5889), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2349), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(3564), + [sym_non_lvalue_expression] = STATE(3685), + [sym_lvalue_expression] = STATE(2890), + [sym__expression_statement_expression] = STATE(3836), + [sym_assignment_expression] = STATE(3689), + [sym_binary_expression] = STATE(3836), + [sym_postfix_unary_expression] = STATE(3689), + [sym_prefix_unary_expression] = STATE(3689), + [sym__pointer_indirection_expression] = STATE(2906), + [sym_query_expression] = STATE(3836), + [sym_from_clause] = STATE(6139), + [sym_conditional_expression] = STATE(3836), + [sym_conditional_access_expression] = STATE(3836), + [sym_as_expression] = STATE(3836), + [sym_is_expression] = STATE(3836), + [sym_is_pattern_expression] = STATE(3836), + [sym_cast_expression] = STATE(3836), + [sym_checked_expression] = STATE(3836), + [sym_invocation_expression] = STATE(3689), + [sym_switch_expression] = STATE(3836), + [sym_await_expression] = STATE(3689), + [sym_throw_expression] = STATE(3836), + [sym_element_access_expression] = STATE(2906), + [sym_interpolated_string_expression] = STATE(3836), + [sym_member_access_expression] = STATE(2906), + [sym_object_creation_expression] = STATE(3689), + [sym_parenthesized_expression] = STATE(3689), + [sym__parenthesized_lvalue_expression] = STATE(2906), + [sym_lambda_expression] = STATE(3836), + [sym__lambda_expression_init] = STATE(7456), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3836), + [sym_anonymous_method_expression] = STATE(3836), + [sym_anonymous_object_creation_expression] = STATE(3836), + [sym_implicit_array_creation_expression] = STATE(3836), + [sym_implicit_object_creation_expression] = STATE(3836), + [sym_implicit_stackalloc_expression] = STATE(3836), + [sym_initializer_expression] = STATE(3836), + [sym_default_expression] = STATE(3836), + [sym_with_expression] = STATE(3836), + [sym_sizeof_expression] = STATE(3836), + [sym_typeof_expression] = STATE(3836), + [sym_makeref_expression] = STATE(3836), + [sym_ref_expression] = STATE(3836), + [sym_reftype_expression] = STATE(3836), + [sym_refvalue_expression] = STATE(3836), + [sym_stackalloc_expression] = STATE(3836), + [sym_range_expression] = STATE(3836), + [sym_tuple_expression] = STATE(2906), + [sym_literal] = STATE(3836), + [sym_character_literal] = STATE(3843), + [sym_string_literal] = STATE(3843), + [sym_raw_string_literal] = STATE(3843), + [sym_boolean_literal] = STATE(3843), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3836), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(1701), [sym_preproc_endregion] = STATE(1701), [sym_preproc_line] = STATE(1701), @@ -329328,47 +329214,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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3477), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1481), - [anon_sym_LPAREN] = ACTIONS(2251), - [anon_sym_ref] = ACTIONS(2253), - [anon_sym_LBRACE] = ACTIONS(1487), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1655), + [anon_sym_LPAREN] = ACTIONS(1755), + [anon_sym_ref] = ACTIONS(1757), + [anon_sym_LBRACE] = ACTIONS(1661), + [anon_sym_delegate] = ACTIONS(1663), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1937), + [anon_sym_new] = ACTIONS(1759), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1067), - [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(1259), - [anon_sym_false] = ACTIONS(1259), - [anon_sym_PLUS] = ACTIONS(2255), - [anon_sym_DASH] = ACTIONS(2255), - [anon_sym_STAR] = ACTIONS(1943), - [anon_sym_CARET] = ACTIONS(2257), - [anon_sym_AMP] = ACTIONS(2257), - [anon_sym_this] = ACTIONS(83), + [anon_sym_checked] = ACTIONS(1667), + [anon_sym_BANG] = ACTIONS(1763), + [anon_sym_TILDE] = ACTIONS(1763), + [anon_sym_PLUS_PLUS] = ACTIONS(1763), + [anon_sym_DASH_DASH] = ACTIONS(1763), + [anon_sym_true] = ACTIONS(1673), + [anon_sym_false] = ACTIONS(1673), + [anon_sym_PLUS] = ACTIONS(1761), + [anon_sym_DASH] = ACTIONS(1761), + [anon_sym_STAR] = ACTIONS(1765), + [anon_sym_CARET] = ACTIONS(1763), + [anon_sym_AMP] = ACTIONS(1763), + [anon_sym_this] = ACTIONS(1677), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), + [anon_sym_base] = ACTIONS(1679), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1267), - [anon_sym_unchecked] = ACTIONS(1067), + [sym_predefined_type] = ACTIONS(1681), + [anon_sym_unchecked] = ACTIONS(1667), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1269), - [anon_sym_throw] = ACTIONS(2259), + [anon_sym_default] = ACTIONS(1683), + [anon_sym_throw] = ACTIONS(1767), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2261), - [anon_sym_DOT_DOT] = ACTIONS(2263), + [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), @@ -329381,19 +329267,19 @@ static const uint16_t ts_parse_table[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(1279), - [anon_sym_typeof] = ACTIONS(1281), - [anon_sym___makeref] = ACTIONS(133), - [anon_sym___reftype] = ACTIONS(135), - [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(1289), - [anon_sym_SQUOTE] = ACTIONS(1291), - [sym_integer_literal] = ACTIONS(1289), - [sym_real_literal] = ACTIONS(1293), - [anon_sym_DQUOTE] = ACTIONS(1295), - [sym_verbatim_string_literal] = ACTIONS(1293), - [aux_sym_preproc_if_token1] = ACTIONS(1089), + [anon_sym_stackalloc] = ACTIONS(1691), + [anon_sym_sizeof] = ACTIONS(1693), + [anon_sym_typeof] = ACTIONS(1695), + [anon_sym___makeref] = ACTIONS(1697), + [anon_sym___reftype] = ACTIONS(1699), + [anon_sym___refvalue] = ACTIONS(1701), + [sym_null_literal] = ACTIONS(1703), + [anon_sym_SQUOTE] = ACTIONS(1705), + [sym_integer_literal] = ACTIONS(1703), + [sym_real_literal] = ACTIONS(1707), + [anon_sym_DQUOTE] = ACTIONS(1709), + [sym_verbatim_string_literal] = ACTIONS(1707), + [aux_sym_preproc_if_token1] = ACTIONS(1711), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -329404,90 +329290,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1299), - [sym_interpolation_verbatim_start] = ACTIONS(1301), - [sym_interpolation_raw_start] = ACTIONS(1303), - [sym_raw_string_start] = ACTIONS(1305), + [sym_interpolation_regular_start] = ACTIONS(1713), + [sym_interpolation_verbatim_start] = ACTIONS(1715), + [sym_interpolation_raw_start] = ACTIONS(1717), + [sym_raw_string_start] = ACTIONS(1719), }, [1702] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(5910), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2247), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(5507), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3379), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3080), - [sym_postfix_unary_expression] = STATE(3111), - [sym_prefix_unary_expression] = STATE(3111), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6154), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3080), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3111), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3080), - [sym_member_access_expression] = STATE(2484), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3111), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7575), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(3080), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3080), - [sym_typeof_expression] = STATE(3080), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2484), - [sym_literal] = STATE(3080), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(3182), + [sym__name] = STATE(5888), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2286), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2262), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(4300), + [sym_non_lvalue_expression] = STATE(4580), + [sym_lvalue_expression] = STATE(3192), + [sym__expression_statement_expression] = STATE(4573), + [sym_assignment_expression] = STATE(4581), + [sym_binary_expression] = STATE(4573), + [sym_postfix_unary_expression] = STATE(4581), + [sym_prefix_unary_expression] = STATE(4581), + [sym__pointer_indirection_expression] = STATE(3144), + [sym_query_expression] = STATE(4573), + [sym_from_clause] = STATE(6160), + [sym_conditional_expression] = STATE(4573), + [sym_conditional_access_expression] = STATE(4573), + [sym_as_expression] = STATE(4573), + [sym_is_expression] = STATE(4573), + [sym_is_pattern_expression] = STATE(4573), + [sym_cast_expression] = STATE(4573), + [sym_checked_expression] = STATE(4573), + [sym_invocation_expression] = STATE(4581), + [sym_switch_expression] = STATE(4573), + [sym_await_expression] = STATE(4581), + [sym_throw_expression] = STATE(4573), + [sym_element_access_expression] = STATE(3144), + [sym_interpolated_string_expression] = STATE(4573), + [sym_member_access_expression] = STATE(3144), + [sym_object_creation_expression] = STATE(4581), + [sym_parenthesized_expression] = STATE(4581), + [sym__parenthesized_lvalue_expression] = STATE(3144), + [sym_lambda_expression] = STATE(4573), + [sym__lambda_expression_init] = STATE(7491), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(4573), + [sym_anonymous_method_expression] = STATE(4573), + [sym_anonymous_object_creation_expression] = STATE(4573), + [sym_implicit_array_creation_expression] = STATE(4573), + [sym_implicit_object_creation_expression] = STATE(4573), + [sym_implicit_stackalloc_expression] = STATE(4573), + [sym_initializer_expression] = STATE(4573), + [sym_default_expression] = STATE(4573), + [sym_with_expression] = STATE(4573), + [sym_sizeof_expression] = STATE(4573), + [sym_typeof_expression] = STATE(4573), + [sym_makeref_expression] = STATE(4573), + [sym_ref_expression] = STATE(4573), + [sym_reftype_expression] = STATE(4573), + [sym_refvalue_expression] = STATE(4573), + [sym_stackalloc_expression] = STATE(4573), + [sym_range_expression] = STATE(4573), + [sym_tuple_expression] = STATE(3144), + [sym_literal] = STATE(4573), + [sym_character_literal] = STATE(4575), + [sym_string_literal] = STATE(4575), + [sym_raw_string_literal] = STATE(4575), + [sym_boolean_literal] = STATE(4575), + [sym_identifier] = STATE(2237), + [sym__reserved_identifier] = STATE(2229), + [sym_preproc_if_in_expression] = STATE(4573), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(1702), [sym_preproc_endregion] = STATE(1702), [sym_preproc_line] = STATE(1702), @@ -329497,47 +329383,385 @@ 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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), - [sym__identifier_token] = ACTIONS(25), - [anon_sym_alias] = ACTIONS(29), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3501), + [sym__identifier_token] = ACTIONS(1385), + [anon_sym_alias] = ACTIONS(1387), + [anon_sym_global] = ACTIONS(1387), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1389), + [anon_sym_LPAREN] = ACTIONS(1391), + [anon_sym_ref] = ACTIONS(1393), + [anon_sym_LBRACE] = ACTIONS(1395), + [anon_sym_delegate] = ACTIONS(1397), + [anon_sym_async] = ACTIONS(1045), + [anon_sym_file] = ACTIONS(1387), + [anon_sym_new] = ACTIONS(1399), + [anon_sym_where] = ACTIONS(1387), + [anon_sym_notnull] = ACTIONS(1387), + [anon_sym_unmanaged] = ACTIONS(1387), + [anon_sym_checked] = ACTIONS(1401), + [anon_sym_BANG] = ACTIONS(1405), + [anon_sym_TILDE] = ACTIONS(1405), + [anon_sym_PLUS_PLUS] = ACTIONS(1405), + [anon_sym_DASH_DASH] = ACTIONS(1405), + [anon_sym_true] = ACTIONS(1407), + [anon_sym_false] = ACTIONS(1407), + [anon_sym_PLUS] = ACTIONS(1403), + [anon_sym_DASH] = ACTIONS(1403), + [anon_sym_STAR] = ACTIONS(1409), + [anon_sym_CARET] = ACTIONS(1405), + [anon_sym_AMP] = ACTIONS(1405), + [anon_sym_this] = ACTIONS(1411), + [anon_sym_scoped] = ACTIONS(1413), + [anon_sym_base] = ACTIONS(1415), + [anon_sym_var] = ACTIONS(1417), + [sym_predefined_type] = ACTIONS(1419), + [anon_sym_unchecked] = ACTIONS(1401), + [anon_sym_yield] = ACTIONS(1387), + [anon_sym_default] = ACTIONS(1421), + [anon_sym_throw] = ACTIONS(1423), + [anon_sym_when] = ACTIONS(1387), + [anon_sym_await] = ACTIONS(1425), + [anon_sym_DOT_DOT] = ACTIONS(1427), + [anon_sym_from] = ACTIONS(1429), + [anon_sym_into] = ACTIONS(1387), + [anon_sym_join] = ACTIONS(1387), + [anon_sym_on] = ACTIONS(1387), + [anon_sym_equals] = ACTIONS(1387), + [anon_sym_let] = ACTIONS(1387), + [anon_sym_orderby] = ACTIONS(1387), + [anon_sym_ascending] = ACTIONS(1387), + [anon_sym_descending] = ACTIONS(1387), + [anon_sym_group] = ACTIONS(1387), + [anon_sym_by] = ACTIONS(1387), + [anon_sym_select] = ACTIONS(1387), + [anon_sym_stackalloc] = ACTIONS(1431), + [anon_sym_sizeof] = ACTIONS(1433), + [anon_sym_typeof] = ACTIONS(1435), + [anon_sym___makeref] = ACTIONS(1437), + [anon_sym___reftype] = ACTIONS(1439), + [anon_sym___refvalue] = ACTIONS(1441), + [sym_null_literal] = ACTIONS(1443), + [anon_sym_SQUOTE] = ACTIONS(1445), + [sym_integer_literal] = ACTIONS(1443), + [sym_real_literal] = ACTIONS(1447), + [anon_sym_DQUOTE] = ACTIONS(1449), + [sym_verbatim_string_literal] = ACTIONS(1447), + [aux_sym_preproc_if_token1] = ACTIONS(1451), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + [sym_interpolation_regular_start] = ACTIONS(1453), + [sym_interpolation_verbatim_start] = ACTIONS(1455), + [sym_interpolation_raw_start] = ACTIONS(1457), + [sym_raw_string_start] = ACTIONS(1459), + }, + [1703] = { + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(3182), + [sym__name] = STATE(5888), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2286), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2262), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(4270), + [sym_non_lvalue_expression] = STATE(4580), + [sym_lvalue_expression] = STATE(3192), + [sym__expression_statement_expression] = STATE(4573), + [sym_assignment_expression] = STATE(4581), + [sym_binary_expression] = STATE(4573), + [sym_postfix_unary_expression] = STATE(4581), + [sym_prefix_unary_expression] = STATE(4581), + [sym__pointer_indirection_expression] = STATE(3144), + [sym_query_expression] = STATE(4573), + [sym_from_clause] = STATE(6160), + [sym_conditional_expression] = STATE(4573), + [sym_conditional_access_expression] = STATE(4573), + [sym_as_expression] = STATE(4573), + [sym_is_expression] = STATE(4573), + [sym_is_pattern_expression] = STATE(4573), + [sym_cast_expression] = STATE(4573), + [sym_checked_expression] = STATE(4573), + [sym_invocation_expression] = STATE(4581), + [sym_switch_expression] = STATE(4573), + [sym_await_expression] = STATE(4581), + [sym_throw_expression] = STATE(4573), + [sym_element_access_expression] = STATE(3144), + [sym_interpolated_string_expression] = STATE(4573), + [sym_member_access_expression] = STATE(3144), + [sym_object_creation_expression] = STATE(4581), + [sym_parenthesized_expression] = STATE(4581), + [sym__parenthesized_lvalue_expression] = STATE(3144), + [sym_lambda_expression] = STATE(4573), + [sym__lambda_expression_init] = STATE(7491), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(4573), + [sym_anonymous_method_expression] = STATE(4573), + [sym_anonymous_object_creation_expression] = STATE(4573), + [sym_implicit_array_creation_expression] = STATE(4573), + [sym_implicit_object_creation_expression] = STATE(4573), + [sym_implicit_stackalloc_expression] = STATE(4573), + [sym_initializer_expression] = STATE(4573), + [sym_default_expression] = STATE(4573), + [sym_with_expression] = STATE(4573), + [sym_sizeof_expression] = STATE(4573), + [sym_typeof_expression] = STATE(4573), + [sym_makeref_expression] = STATE(4573), + [sym_ref_expression] = STATE(4573), + [sym_reftype_expression] = STATE(4573), + [sym_refvalue_expression] = STATE(4573), + [sym_stackalloc_expression] = STATE(4573), + [sym_range_expression] = STATE(4573), + [sym_tuple_expression] = STATE(3144), + [sym_literal] = STATE(4573), + [sym_character_literal] = STATE(4575), + [sym_string_literal] = STATE(4575), + [sym_raw_string_literal] = STATE(4575), + [sym_boolean_literal] = STATE(4575), + [sym_identifier] = STATE(2237), + [sym__reserved_identifier] = STATE(2229), + [sym_preproc_if_in_expression] = STATE(4573), + [sym_preproc_if_in_attribute_list] = STATE(5583), + [sym_preproc_region] = STATE(1703), + [sym_preproc_endregion] = STATE(1703), + [sym_preproc_line] = STATE(1703), + [sym_preproc_pragma] = STATE(1703), + [sym_preproc_nullable] = STATE(1703), + [sym_preproc_error] = STATE(1703), + [sym_preproc_warning] = STATE(1703), + [sym_preproc_define] = STATE(1703), + [sym_preproc_undef] = STATE(1703), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3501), + [sym__identifier_token] = ACTIONS(1385), + [anon_sym_alias] = ACTIONS(1387), + [anon_sym_global] = ACTIONS(1387), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1389), + [anon_sym_LPAREN] = ACTIONS(1391), + [anon_sym_ref] = ACTIONS(1393), + [anon_sym_LBRACE] = ACTIONS(1395), + [anon_sym_delegate] = ACTIONS(1397), + [anon_sym_async] = ACTIONS(1045), + [anon_sym_file] = ACTIONS(1387), + [anon_sym_new] = ACTIONS(1399), + [anon_sym_where] = ACTIONS(1387), + [anon_sym_notnull] = ACTIONS(1387), + [anon_sym_unmanaged] = ACTIONS(1387), + [anon_sym_checked] = ACTIONS(1401), + [anon_sym_BANG] = ACTIONS(1405), + [anon_sym_TILDE] = ACTIONS(1405), + [anon_sym_PLUS_PLUS] = ACTIONS(1405), + [anon_sym_DASH_DASH] = ACTIONS(1405), + [anon_sym_true] = ACTIONS(1407), + [anon_sym_false] = ACTIONS(1407), + [anon_sym_PLUS] = ACTIONS(1403), + [anon_sym_DASH] = ACTIONS(1403), + [anon_sym_STAR] = ACTIONS(1409), + [anon_sym_CARET] = ACTIONS(1405), + [anon_sym_AMP] = ACTIONS(1405), + [anon_sym_this] = ACTIONS(1411), + [anon_sym_scoped] = ACTIONS(1413), + [anon_sym_base] = ACTIONS(1415), + [anon_sym_var] = ACTIONS(1417), + [sym_predefined_type] = ACTIONS(1419), + [anon_sym_unchecked] = ACTIONS(1401), + [anon_sym_yield] = ACTIONS(1387), + [anon_sym_default] = ACTIONS(1421), + [anon_sym_throw] = ACTIONS(1423), + [anon_sym_when] = ACTIONS(1387), + [anon_sym_await] = ACTIONS(1425), + [anon_sym_DOT_DOT] = ACTIONS(1427), + [anon_sym_from] = ACTIONS(1429), + [anon_sym_into] = ACTIONS(1387), + [anon_sym_join] = ACTIONS(1387), + [anon_sym_on] = ACTIONS(1387), + [anon_sym_equals] = ACTIONS(1387), + [anon_sym_let] = ACTIONS(1387), + [anon_sym_orderby] = ACTIONS(1387), + [anon_sym_ascending] = ACTIONS(1387), + [anon_sym_descending] = ACTIONS(1387), + [anon_sym_group] = ACTIONS(1387), + [anon_sym_by] = ACTIONS(1387), + [anon_sym_select] = ACTIONS(1387), + [anon_sym_stackalloc] = ACTIONS(1431), + [anon_sym_sizeof] = ACTIONS(1433), + [anon_sym_typeof] = ACTIONS(1435), + [anon_sym___makeref] = ACTIONS(1437), + [anon_sym___reftype] = ACTIONS(1439), + [anon_sym___refvalue] = ACTIONS(1441), + [sym_null_literal] = ACTIONS(1443), + [anon_sym_SQUOTE] = ACTIONS(1445), + [sym_integer_literal] = ACTIONS(1443), + [sym_real_literal] = ACTIONS(1447), + [anon_sym_DQUOTE] = ACTIONS(1449), + [sym_verbatim_string_literal] = ACTIONS(1447), + [aux_sym_preproc_if_token1] = ACTIONS(1451), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + [sym_interpolation_regular_start] = ACTIONS(1453), + [sym_interpolation_verbatim_start] = ACTIONS(1455), + [sym_interpolation_raw_start] = ACTIONS(1457), + [sym_raw_string_start] = ACTIONS(1459), + }, + [1704] = { + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2416), + [sym__name] = STATE(5890), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2193), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(4069), + [sym_non_lvalue_expression] = STATE(3040), + [sym_lvalue_expression] = STATE(3109), + [sym__expression_statement_expression] = STATE(3035), + [sym_assignment_expression] = STATE(3043), + [sym_binary_expression] = STATE(3035), + [sym_postfix_unary_expression] = STATE(3043), + [sym_prefix_unary_expression] = STATE(3043), + [sym__pointer_indirection_expression] = STATE(2415), + [sym_query_expression] = STATE(3035), + [sym_from_clause] = STATE(6138), + [sym_conditional_expression] = STATE(3035), + [sym_conditional_access_expression] = STATE(3035), + [sym_as_expression] = STATE(3035), + [sym_is_expression] = STATE(3035), + [sym_is_pattern_expression] = STATE(3035), + [sym_cast_expression] = STATE(3035), + [sym_checked_expression] = STATE(3035), + [sym_invocation_expression] = STATE(3043), + [sym_switch_expression] = STATE(3035), + [sym_await_expression] = STATE(3043), + [sym_throw_expression] = STATE(3035), + [sym_element_access_expression] = STATE(2415), + [sym_interpolated_string_expression] = STATE(3035), + [sym_member_access_expression] = STATE(2415), + [sym_object_creation_expression] = STATE(3043), + [sym_parenthesized_expression] = STATE(3043), + [sym__parenthesized_lvalue_expression] = STATE(2415), + [sym_lambda_expression] = STATE(3035), + [sym__lambda_expression_init] = STATE(7374), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3035), + [sym_anonymous_method_expression] = STATE(3035), + [sym_anonymous_object_creation_expression] = STATE(3035), + [sym_implicit_array_creation_expression] = STATE(3035), + [sym_implicit_object_creation_expression] = STATE(3035), + [sym_implicit_stackalloc_expression] = STATE(3035), + [sym_initializer_expression] = STATE(3035), + [sym_default_expression] = STATE(3035), + [sym_with_expression] = STATE(3035), + [sym_sizeof_expression] = STATE(3035), + [sym_typeof_expression] = STATE(3035), + [sym_makeref_expression] = STATE(3035), + [sym_ref_expression] = STATE(3035), + [sym_reftype_expression] = STATE(3035), + [sym_refvalue_expression] = STATE(3035), + [sym_stackalloc_expression] = STATE(3035), + [sym_range_expression] = STATE(3035), + [sym_tuple_expression] = STATE(2415), + [sym_literal] = STATE(3035), + [sym_character_literal] = STATE(3037), + [sym_string_literal] = STATE(3037), + [sym_raw_string_literal] = STATE(3037), + [sym_boolean_literal] = STATE(3037), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3035), + [sym_preproc_if_in_attribute_list] = STATE(5583), + [sym_preproc_region] = STATE(1704), + [sym_preproc_endregion] = STATE(1704), + [sym_preproc_line] = STATE(1704), + [sym_preproc_pragma] = STATE(1704), + [sym_preproc_nullable] = STATE(1704), + [sym_preproc_error] = STATE(1704), + [sym_preproc_warning] = STATE(1704), + [sym_preproc_define] = STATE(1704), + [sym_preproc_undef] = STATE(1704), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3455), + [sym__identifier_token] = ACTIONS(25), + [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1481), - [anon_sym_LPAREN] = ACTIONS(895), - [anon_sym_ref] = ACTIONS(897), - [anon_sym_LBRACE] = ACTIONS(1487), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1239), + [anon_sym_LPAREN] = ACTIONS(1241), + [anon_sym_ref] = ACTIONS(1243), + [anon_sym_LBRACE] = ACTIONS(1245), + [anon_sym_delegate] = ACTIONS(1247), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1061), + [anon_sym_new] = ACTIONS(1249), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1067), - [anon_sym_BANG] = ACTIONS(1495), - [anon_sym_TILDE] = ACTIONS(1495), - [anon_sym_PLUS_PLUS] = ACTIONS(1495), - [anon_sym_DASH_DASH] = ACTIONS(1495), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1493), - [anon_sym_DASH] = ACTIONS(1493), - [anon_sym_STAR] = ACTIONS(905), - [anon_sym_CARET] = ACTIONS(1495), - [anon_sym_AMP] = ACTIONS(1495), - [anon_sym_this] = ACTIONS(83), + [anon_sym_checked] = ACTIONS(1251), + [anon_sym_BANG] = ACTIONS(1255), + [anon_sym_TILDE] = ACTIONS(1255), + [anon_sym_PLUS_PLUS] = ACTIONS(1255), + [anon_sym_DASH_DASH] = ACTIONS(1255), + [anon_sym_true] = ACTIONS(1257), + [anon_sym_false] = ACTIONS(1257), + [anon_sym_PLUS] = ACTIONS(1253), + [anon_sym_DASH] = ACTIONS(1253), + [anon_sym_STAR] = ACTIONS(1259), + [anon_sym_CARET] = ACTIONS(1255), + [anon_sym_AMP] = ACTIONS(1255), + [anon_sym_this] = ACTIONS(1261), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), + [anon_sym_base] = ACTIONS(1263), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1067), + [sym_predefined_type] = ACTIONS(1265), + [anon_sym_unchecked] = ACTIONS(1251), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1079), + [anon_sym_default] = ACTIONS(1267), + [anon_sym_throw] = ACTIONS(1269), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1081), - [anon_sym_DOT_DOT] = ACTIONS(911), + [anon_sym_await] = ACTIONS(1271), + [anon_sym_DOT_DOT] = ACTIONS(1273), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -329550,19 +329774,19 @@ static const uint16_t ts_parse_table[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(1089), + [anon_sym_stackalloc] = ACTIONS(1275), + [anon_sym_sizeof] = ACTIONS(1277), + [anon_sym_typeof] = ACTIONS(1279), + [anon_sym___makeref] = ACTIONS(1281), + [anon_sym___reftype] = ACTIONS(1283), + [anon_sym___refvalue] = ACTIONS(1285), + [sym_null_literal] = ACTIONS(1287), + [anon_sym_SQUOTE] = ACTIONS(1289), + [sym_integer_literal] = ACTIONS(1287), + [sym_real_literal] = ACTIONS(1291), + [anon_sym_DQUOTE] = ACTIONS(1293), + [sym_verbatim_string_literal] = ACTIONS(1291), + [aux_sym_preproc_if_token1] = ACTIONS(1295), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -329573,140 +329797,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(1297), + [sym_interpolation_verbatim_start] = ACTIONS(1299), + [sym_interpolation_raw_start] = ACTIONS(1301), + [sym_raw_string_start] = ACTIONS(1303), }, - [1703] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(5910), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2247), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(3543), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3379), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3080), - [sym_postfix_unary_expression] = STATE(3111), - [sym_prefix_unary_expression] = STATE(3111), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6154), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3080), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3111), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3080), - [sym_member_access_expression] = STATE(2484), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3111), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7575), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(3080), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3080), - [sym_typeof_expression] = STATE(3080), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2484), - [sym_literal] = STATE(3080), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), - [sym_preproc_region] = STATE(1703), - [sym_preproc_endregion] = STATE(1703), - [sym_preproc_line] = STATE(1703), - [sym_preproc_pragma] = STATE(1703), - [sym_preproc_nullable] = STATE(1703), - [sym_preproc_error] = STATE(1703), - [sym_preproc_warning] = STATE(1703), - [sym_preproc_define] = STATE(1703), - [sym_preproc_undef] = STATE(1703), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [1705] = { + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2416), + [sym__name] = STATE(5890), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2193), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(4109), + [sym_non_lvalue_expression] = STATE(3040), + [sym_lvalue_expression] = STATE(3109), + [sym__expression_statement_expression] = STATE(3035), + [sym_assignment_expression] = STATE(3043), + [sym_binary_expression] = STATE(3035), + [sym_postfix_unary_expression] = STATE(3043), + [sym_prefix_unary_expression] = STATE(3043), + [sym__pointer_indirection_expression] = STATE(2415), + [sym_query_expression] = STATE(3035), + [sym_from_clause] = STATE(6138), + [sym_conditional_expression] = STATE(3035), + [sym_conditional_access_expression] = STATE(3035), + [sym_as_expression] = STATE(3035), + [sym_is_expression] = STATE(3035), + [sym_is_pattern_expression] = STATE(3035), + [sym_cast_expression] = STATE(3035), + [sym_checked_expression] = STATE(3035), + [sym_invocation_expression] = STATE(3043), + [sym_switch_expression] = STATE(3035), + [sym_await_expression] = STATE(3043), + [sym_throw_expression] = STATE(3035), + [sym_element_access_expression] = STATE(2415), + [sym_interpolated_string_expression] = STATE(3035), + [sym_member_access_expression] = STATE(2415), + [sym_object_creation_expression] = STATE(3043), + [sym_parenthesized_expression] = STATE(3043), + [sym__parenthesized_lvalue_expression] = STATE(2415), + [sym_lambda_expression] = STATE(3035), + [sym__lambda_expression_init] = STATE(7374), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3035), + [sym_anonymous_method_expression] = STATE(3035), + [sym_anonymous_object_creation_expression] = STATE(3035), + [sym_implicit_array_creation_expression] = STATE(3035), + [sym_implicit_object_creation_expression] = STATE(3035), + [sym_implicit_stackalloc_expression] = STATE(3035), + [sym_initializer_expression] = STATE(3035), + [sym_default_expression] = STATE(3035), + [sym_with_expression] = STATE(3035), + [sym_sizeof_expression] = STATE(3035), + [sym_typeof_expression] = STATE(3035), + [sym_makeref_expression] = STATE(3035), + [sym_ref_expression] = STATE(3035), + [sym_reftype_expression] = STATE(3035), + [sym_refvalue_expression] = STATE(3035), + [sym_stackalloc_expression] = STATE(3035), + [sym_range_expression] = STATE(3035), + [sym_tuple_expression] = STATE(2415), + [sym_literal] = STATE(3035), + [sym_character_literal] = STATE(3037), + [sym_string_literal] = STATE(3037), + [sym_raw_string_literal] = STATE(3037), + [sym_boolean_literal] = STATE(3037), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3035), + [sym_preproc_if_in_attribute_list] = STATE(5583), + [sym_preproc_region] = STATE(1705), + [sym_preproc_endregion] = STATE(1705), + [sym_preproc_line] = STATE(1705), + [sym_preproc_pragma] = STATE(1705), + [sym_preproc_nullable] = STATE(1705), + [sym_preproc_error] = STATE(1705), + [sym_preproc_warning] = STATE(1705), + [sym_preproc_define] = STATE(1705), + [sym_preproc_undef] = STATE(1705), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3455), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1481), - [anon_sym_LPAREN] = ACTIONS(895), - [anon_sym_ref] = ACTIONS(897), - [anon_sym_LBRACE] = ACTIONS(1487), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1239), + [anon_sym_LPAREN] = ACTIONS(1241), + [anon_sym_ref] = ACTIONS(1243), + [anon_sym_LBRACE] = ACTIONS(1245), + [anon_sym_delegate] = ACTIONS(1247), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1061), + [anon_sym_new] = ACTIONS(1249), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1067), - [anon_sym_BANG] = ACTIONS(1495), - [anon_sym_TILDE] = ACTIONS(1495), - [anon_sym_PLUS_PLUS] = ACTIONS(1495), - [anon_sym_DASH_DASH] = ACTIONS(1495), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1493), - [anon_sym_DASH] = ACTIONS(1493), - [anon_sym_STAR] = ACTIONS(905), - [anon_sym_CARET] = ACTIONS(1495), - [anon_sym_AMP] = ACTIONS(1495), - [anon_sym_this] = ACTIONS(83), + [anon_sym_checked] = ACTIONS(1251), + [anon_sym_BANG] = ACTIONS(1255), + [anon_sym_TILDE] = ACTIONS(1255), + [anon_sym_PLUS_PLUS] = ACTIONS(1255), + [anon_sym_DASH_DASH] = ACTIONS(1255), + [anon_sym_true] = ACTIONS(1257), + [anon_sym_false] = ACTIONS(1257), + [anon_sym_PLUS] = ACTIONS(1253), + [anon_sym_DASH] = ACTIONS(1253), + [anon_sym_STAR] = ACTIONS(1259), + [anon_sym_CARET] = ACTIONS(1255), + [anon_sym_AMP] = ACTIONS(1255), + [anon_sym_this] = ACTIONS(1261), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), + [anon_sym_base] = ACTIONS(1263), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1067), + [sym_predefined_type] = ACTIONS(1265), + [anon_sym_unchecked] = ACTIONS(1251), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1079), + [anon_sym_default] = ACTIONS(1267), + [anon_sym_throw] = ACTIONS(1269), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1081), - [anon_sym_DOT_DOT] = ACTIONS(911), + [anon_sym_await] = ACTIONS(1271), + [anon_sym_DOT_DOT] = ACTIONS(1273), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -329719,19 +329943,19 @@ static const uint16_t ts_parse_table[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(1089), + [anon_sym_stackalloc] = ACTIONS(1275), + [anon_sym_sizeof] = ACTIONS(1277), + [anon_sym_typeof] = ACTIONS(1279), + [anon_sym___makeref] = ACTIONS(1281), + [anon_sym___reftype] = ACTIONS(1283), + [anon_sym___refvalue] = ACTIONS(1285), + [sym_null_literal] = ACTIONS(1287), + [anon_sym_SQUOTE] = ACTIONS(1289), + [sym_integer_literal] = ACTIONS(1287), + [sym_real_literal] = ACTIONS(1291), + [anon_sym_DQUOTE] = ACTIONS(1293), + [sym_verbatim_string_literal] = ACTIONS(1291), + [aux_sym_preproc_if_token1] = ACTIONS(1295), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -329742,140 +329966,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(151), - [sym_interpolation_verbatim_start] = ACTIONS(153), - [sym_interpolation_raw_start] = ACTIONS(155), - [sym_raw_string_start] = ACTIONS(157), + [sym_interpolation_regular_start] = ACTIONS(1297), + [sym_interpolation_verbatim_start] = ACTIONS(1299), + [sym_interpolation_raw_start] = ACTIONS(1301), + [sym_raw_string_start] = ACTIONS(1303), }, - [1704] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(5910), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2247), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(5672), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(2465), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3080), - [sym_postfix_unary_expression] = STATE(3111), - [sym_prefix_unary_expression] = STATE(3111), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6154), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3080), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3111), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3080), - [sym_member_access_expression] = STATE(2484), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3111), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7530), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(3080), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3080), - [sym_typeof_expression] = STATE(3080), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2484), - [sym_literal] = STATE(3080), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), - [sym_preproc_region] = STATE(1704), - [sym_preproc_endregion] = STATE(1704), - [sym_preproc_line] = STATE(1704), - [sym_preproc_pragma] = STATE(1704), - [sym_preproc_nullable] = STATE(1704), - [sym_preproc_error] = STATE(1704), - [sym_preproc_warning] = STATE(1704), - [sym_preproc_define] = STATE(1704), - [sym_preproc_undef] = STATE(1704), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [1706] = { + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(3182), + [sym__name] = STATE(5888), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2286), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2262), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(4301), + [sym_non_lvalue_expression] = STATE(4580), + [sym_lvalue_expression] = STATE(3192), + [sym__expression_statement_expression] = STATE(4573), + [sym_assignment_expression] = STATE(4581), + [sym_binary_expression] = STATE(4573), + [sym_postfix_unary_expression] = STATE(4581), + [sym_prefix_unary_expression] = STATE(4581), + [sym__pointer_indirection_expression] = STATE(3144), + [sym_query_expression] = STATE(4573), + [sym_from_clause] = STATE(6160), + [sym_conditional_expression] = STATE(4573), + [sym_conditional_access_expression] = STATE(4573), + [sym_as_expression] = STATE(4573), + [sym_is_expression] = STATE(4573), + [sym_is_pattern_expression] = STATE(4573), + [sym_cast_expression] = STATE(4573), + [sym_checked_expression] = STATE(4573), + [sym_invocation_expression] = STATE(4581), + [sym_switch_expression] = STATE(4573), + [sym_await_expression] = STATE(4581), + [sym_throw_expression] = STATE(4573), + [sym_element_access_expression] = STATE(3144), + [sym_interpolated_string_expression] = STATE(4573), + [sym_member_access_expression] = STATE(3144), + [sym_object_creation_expression] = STATE(4581), + [sym_parenthesized_expression] = STATE(4581), + [sym__parenthesized_lvalue_expression] = STATE(3144), + [sym_lambda_expression] = STATE(4573), + [sym__lambda_expression_init] = STATE(7491), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(4573), + [sym_anonymous_method_expression] = STATE(4573), + [sym_anonymous_object_creation_expression] = STATE(4573), + [sym_implicit_array_creation_expression] = STATE(4573), + [sym_implicit_object_creation_expression] = STATE(4573), + [sym_implicit_stackalloc_expression] = STATE(4573), + [sym_initializer_expression] = STATE(4573), + [sym_default_expression] = STATE(4573), + [sym_with_expression] = STATE(4573), + [sym_sizeof_expression] = STATE(4573), + [sym_typeof_expression] = STATE(4573), + [sym_makeref_expression] = STATE(4573), + [sym_ref_expression] = STATE(4573), + [sym_reftype_expression] = STATE(4573), + [sym_refvalue_expression] = STATE(4573), + [sym_stackalloc_expression] = STATE(4573), + [sym_range_expression] = STATE(4573), + [sym_tuple_expression] = STATE(3144), + [sym_literal] = STATE(4573), + [sym_character_literal] = STATE(4575), + [sym_string_literal] = STATE(4575), + [sym_raw_string_literal] = STATE(4575), + [sym_boolean_literal] = STATE(4575), + [sym_identifier] = STATE(2237), + [sym__reserved_identifier] = STATE(2229), + [sym_preproc_if_in_expression] = STATE(4573), + [sym_preproc_if_in_attribute_list] = STATE(5583), + [sym_preproc_region] = STATE(1706), + [sym_preproc_endregion] = STATE(1706), + [sym_preproc_line] = STATE(1706), + [sym_preproc_pragma] = STATE(1706), + [sym_preproc_nullable] = STATE(1706), + [sym_preproc_error] = STATE(1706), + [sym_preproc_warning] = STATE(1706), + [sym_preproc_define] = STATE(1706), + [sym_preproc_undef] = STATE(1706), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3501), + [sym__identifier_token] = ACTIONS(1385), + [anon_sym_alias] = ACTIONS(1387), + [anon_sym_global] = ACTIONS(1387), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1389), + [anon_sym_LPAREN] = ACTIONS(1391), + [anon_sym_ref] = ACTIONS(1393), + [anon_sym_LBRACE] = ACTIONS(1395), + [anon_sym_delegate] = ACTIONS(1397), + [anon_sym_async] = ACTIONS(1045), + [anon_sym_file] = ACTIONS(1387), + [anon_sym_new] = ACTIONS(1399), + [anon_sym_where] = ACTIONS(1387), + [anon_sym_notnull] = ACTIONS(1387), + [anon_sym_unmanaged] = ACTIONS(1387), + [anon_sym_checked] = ACTIONS(1401), + [anon_sym_BANG] = ACTIONS(1405), + [anon_sym_TILDE] = ACTIONS(1405), + [anon_sym_PLUS_PLUS] = ACTIONS(1405), + [anon_sym_DASH_DASH] = ACTIONS(1405), + [anon_sym_true] = ACTIONS(1407), + [anon_sym_false] = ACTIONS(1407), + [anon_sym_PLUS] = ACTIONS(1403), + [anon_sym_DASH] = ACTIONS(1403), + [anon_sym_STAR] = ACTIONS(1409), + [anon_sym_CARET] = ACTIONS(1405), + [anon_sym_AMP] = ACTIONS(1405), + [anon_sym_this] = ACTIONS(1411), + [anon_sym_scoped] = ACTIONS(1413), + [anon_sym_base] = ACTIONS(1415), + [anon_sym_var] = ACTIONS(1417), + [sym_predefined_type] = ACTIONS(1419), + [anon_sym_unchecked] = ACTIONS(1401), + [anon_sym_yield] = ACTIONS(1387), + [anon_sym_default] = ACTIONS(1421), + [anon_sym_throw] = ACTIONS(1423), + [anon_sym_when] = ACTIONS(1387), + [anon_sym_await] = ACTIONS(1425), + [anon_sym_DOT_DOT] = ACTIONS(1427), + [anon_sym_from] = ACTIONS(1429), + [anon_sym_into] = ACTIONS(1387), + [anon_sym_join] = ACTIONS(1387), + [anon_sym_on] = ACTIONS(1387), + [anon_sym_equals] = ACTIONS(1387), + [anon_sym_let] = ACTIONS(1387), + [anon_sym_orderby] = ACTIONS(1387), + [anon_sym_ascending] = ACTIONS(1387), + [anon_sym_descending] = ACTIONS(1387), + [anon_sym_group] = ACTIONS(1387), + [anon_sym_by] = ACTIONS(1387), + [anon_sym_select] = ACTIONS(1387), + [anon_sym_stackalloc] = ACTIONS(1431), + [anon_sym_sizeof] = ACTIONS(1433), + [anon_sym_typeof] = ACTIONS(1435), + [anon_sym___makeref] = ACTIONS(1437), + [anon_sym___reftype] = ACTIONS(1439), + [anon_sym___refvalue] = ACTIONS(1441), + [sym_null_literal] = ACTIONS(1443), + [anon_sym_SQUOTE] = ACTIONS(1445), + [sym_integer_literal] = ACTIONS(1443), + [sym_real_literal] = ACTIONS(1447), + [anon_sym_DQUOTE] = ACTIONS(1449), + [sym_verbatim_string_literal] = ACTIONS(1447), + [aux_sym_preproc_if_token1] = ACTIONS(1451), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + [sym_interpolation_regular_start] = ACTIONS(1453), + [sym_interpolation_verbatim_start] = ACTIONS(1455), + [sym_interpolation_raw_start] = ACTIONS(1457), + [sym_raw_string_start] = ACTIONS(1459), + }, + [1707] = { + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2416), + [sym__name] = STATE(5890), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2193), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(4082), + [sym_non_lvalue_expression] = STATE(3040), + [sym_lvalue_expression] = STATE(3109), + [sym__expression_statement_expression] = STATE(3035), + [sym_assignment_expression] = STATE(3043), + [sym_binary_expression] = STATE(3035), + [sym_postfix_unary_expression] = STATE(3043), + [sym_prefix_unary_expression] = STATE(3043), + [sym__pointer_indirection_expression] = STATE(2415), + [sym_query_expression] = STATE(3035), + [sym_from_clause] = STATE(6138), + [sym_conditional_expression] = STATE(3035), + [sym_conditional_access_expression] = STATE(3035), + [sym_as_expression] = STATE(3035), + [sym_is_expression] = STATE(3035), + [sym_is_pattern_expression] = STATE(3035), + [sym_cast_expression] = STATE(3035), + [sym_checked_expression] = STATE(3035), + [sym_invocation_expression] = STATE(3043), + [sym_switch_expression] = STATE(3035), + [sym_await_expression] = STATE(3043), + [sym_throw_expression] = STATE(3035), + [sym_element_access_expression] = STATE(2415), + [sym_interpolated_string_expression] = STATE(3035), + [sym_member_access_expression] = STATE(2415), + [sym_object_creation_expression] = STATE(3043), + [sym_parenthesized_expression] = STATE(3043), + [sym__parenthesized_lvalue_expression] = STATE(2415), + [sym_lambda_expression] = STATE(3035), + [sym__lambda_expression_init] = STATE(7374), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3035), + [sym_anonymous_method_expression] = STATE(3035), + [sym_anonymous_object_creation_expression] = STATE(3035), + [sym_implicit_array_creation_expression] = STATE(3035), + [sym_implicit_object_creation_expression] = STATE(3035), + [sym_implicit_stackalloc_expression] = STATE(3035), + [sym_initializer_expression] = STATE(3035), + [sym_default_expression] = STATE(3035), + [sym_with_expression] = STATE(3035), + [sym_sizeof_expression] = STATE(3035), + [sym_typeof_expression] = STATE(3035), + [sym_makeref_expression] = STATE(3035), + [sym_ref_expression] = STATE(3035), + [sym_reftype_expression] = STATE(3035), + [sym_refvalue_expression] = STATE(3035), + [sym_stackalloc_expression] = STATE(3035), + [sym_range_expression] = STATE(3035), + [sym_tuple_expression] = STATE(2415), + [sym_literal] = STATE(3035), + [sym_character_literal] = STATE(3037), + [sym_string_literal] = STATE(3037), + [sym_raw_string_literal] = STATE(3037), + [sym_boolean_literal] = STATE(3037), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3035), + [sym_preproc_if_in_attribute_list] = STATE(5583), + [sym_preproc_region] = STATE(1707), + [sym_preproc_endregion] = STATE(1707), + [sym_preproc_line] = STATE(1707), + [sym_preproc_pragma] = STATE(1707), + [sym_preproc_nullable] = STATE(1707), + [sym_preproc_error] = STATE(1707), + [sym_preproc_warning] = STATE(1707), + [sym_preproc_define] = STATE(1707), + [sym_preproc_undef] = STATE(1707), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3455), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1481), - [anon_sym_LPAREN] = ACTIONS(43), - [anon_sym_ref] = ACTIONS(661), - [anon_sym_LBRACE] = ACTIONS(1487), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1239), + [anon_sym_LPAREN] = ACTIONS(1241), + [anon_sym_ref] = ACTIONS(1243), + [anon_sym_LBRACE] = ACTIONS(1245), + [anon_sym_delegate] = ACTIONS(1247), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1061), + [anon_sym_new] = ACTIONS(1249), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = 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(1585), - [anon_sym_DASH] = ACTIONS(1585), - [anon_sym_STAR] = ACTIONS(905), - [anon_sym_CARET] = ACTIONS(1587), - [anon_sym_AMP] = ACTIONS(1587), - [anon_sym_this] = ACTIONS(83), + [anon_sym_checked] = ACTIONS(1251), + [anon_sym_BANG] = ACTIONS(1255), + [anon_sym_TILDE] = ACTIONS(1255), + [anon_sym_PLUS_PLUS] = ACTIONS(1255), + [anon_sym_DASH_DASH] = ACTIONS(1255), + [anon_sym_true] = ACTIONS(1257), + [anon_sym_false] = ACTIONS(1257), + [anon_sym_PLUS] = ACTIONS(1253), + [anon_sym_DASH] = ACTIONS(1253), + [anon_sym_STAR] = ACTIONS(1259), + [anon_sym_CARET] = ACTIONS(1255), + [anon_sym_AMP] = ACTIONS(1255), + [anon_sym_this] = ACTIONS(1261), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), + [anon_sym_base] = ACTIONS(1263), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1067), + [sym_predefined_type] = ACTIONS(1265), + [anon_sym_unchecked] = ACTIONS(1251), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1589), + [anon_sym_default] = ACTIONS(1267), + [anon_sym_throw] = ACTIONS(1269), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1591), - [anon_sym_DOT_DOT] = ACTIONS(123), + [anon_sym_await] = ACTIONS(1271), + [anon_sym_DOT_DOT] = ACTIONS(1273), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -329888,19 +330281,19 @@ static const uint16_t ts_parse_table[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(1089), + [anon_sym_stackalloc] = ACTIONS(1275), + [anon_sym_sizeof] = ACTIONS(1277), + [anon_sym_typeof] = ACTIONS(1279), + [anon_sym___makeref] = ACTIONS(1281), + [anon_sym___reftype] = ACTIONS(1283), + [anon_sym___refvalue] = ACTIONS(1285), + [sym_null_literal] = ACTIONS(1287), + [anon_sym_SQUOTE] = ACTIONS(1289), + [sym_integer_literal] = ACTIONS(1287), + [sym_real_literal] = ACTIONS(1291), + [anon_sym_DQUOTE] = ACTIONS(1293), + [sym_verbatim_string_literal] = ACTIONS(1291), + [aux_sym_preproc_if_token1] = ACTIONS(1295), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -329911,140 +330304,2337 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(151), - [sym_interpolation_verbatim_start] = ACTIONS(153), - [sym_interpolation_raw_start] = ACTIONS(155), - [sym_raw_string_start] = ACTIONS(157), + [sym_interpolation_regular_start] = ACTIONS(1297), + [sym_interpolation_verbatim_start] = ACTIONS(1299), + [sym_interpolation_raw_start] = ACTIONS(1301), + [sym_raw_string_start] = ACTIONS(1303), }, - [1705] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2420), - [sym__name] = STATE(5875), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2369), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(4145), - [sym_non_lvalue_expression] = STATE(3066), - [sym_lvalue_expression] = STATE(3125), - [sym__expression_statement_expression] = STATE(3006), - [sym_assignment_expression] = STATE(3020), - [sym_binary_expression] = STATE(3006), - [sym_postfix_unary_expression] = STATE(3020), - [sym_prefix_unary_expression] = STATE(3020), - [sym__pointer_indirection_expression] = STATE(2423), - [sym_query_expression] = STATE(3006), - [sym_from_clause] = STATE(6145), - [sym_conditional_expression] = STATE(3006), - [sym_conditional_access_expression] = STATE(3006), - [sym_as_expression] = STATE(3006), - [sym_is_expression] = STATE(3006), - [sym_is_pattern_expression] = STATE(3006), - [sym_cast_expression] = STATE(3006), - [sym_checked_expression] = STATE(3006), - [sym_invocation_expression] = STATE(3020), - [sym_switch_expression] = STATE(3006), - [sym_await_expression] = STATE(3020), - [sym_throw_expression] = STATE(3006), - [sym_element_access_expression] = STATE(2423), - [sym_interpolated_string_expression] = STATE(3006), - [sym_member_access_expression] = STATE(2423), - [sym_object_creation_expression] = STATE(3020), - [sym_parenthesized_expression] = STATE(3020), - [sym__parenthesized_lvalue_expression] = STATE(2423), - [sym_lambda_expression] = STATE(3006), - [sym__lambda_expression_init] = STATE(7538), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3006), - [sym_anonymous_method_expression] = STATE(3006), - [sym_anonymous_object_creation_expression] = STATE(3006), - [sym_implicit_array_creation_expression] = STATE(3006), - [sym_implicit_object_creation_expression] = STATE(3006), - [sym_implicit_stackalloc_expression] = STATE(3006), - [sym_initializer_expression] = STATE(3006), - [sym_default_expression] = STATE(3006), - [sym_with_expression] = STATE(3006), - [sym_sizeof_expression] = STATE(3006), - [sym_typeof_expression] = STATE(3006), - [sym_makeref_expression] = STATE(3006), - [sym_ref_expression] = STATE(3006), - [sym_reftype_expression] = STATE(3006), - [sym_refvalue_expression] = STATE(3006), - [sym_stackalloc_expression] = STATE(3006), - [sym_range_expression] = STATE(3006), - [sym_tuple_expression] = STATE(2423), - [sym_literal] = STATE(3006), - [sym_character_literal] = STATE(3011), - [sym_string_literal] = STATE(3011), - [sym_raw_string_literal] = STATE(3011), - [sym_boolean_literal] = STATE(3011), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3006), - [sym_preproc_if_in_attribute_list] = STATE(5576), - [sym_preproc_region] = STATE(1705), - [sym_preproc_endregion] = STATE(1705), - [sym_preproc_line] = STATE(1705), - [sym_preproc_pragma] = STATE(1705), - [sym_preproc_nullable] = STATE(1705), - [sym_preproc_error] = STATE(1705), - [sym_preproc_warning] = STATE(1705), - [sym_preproc_define] = STATE(1705), - [sym_preproc_undef] = STATE(1705), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3440), + [1708] = { + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(3182), + [sym__name] = STATE(5888), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2286), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2262), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(4303), + [sym_non_lvalue_expression] = STATE(4580), + [sym_lvalue_expression] = STATE(3192), + [sym__expression_statement_expression] = STATE(4573), + [sym_assignment_expression] = STATE(4581), + [sym_binary_expression] = STATE(4573), + [sym_postfix_unary_expression] = STATE(4581), + [sym_prefix_unary_expression] = STATE(4581), + [sym__pointer_indirection_expression] = STATE(3144), + [sym_query_expression] = STATE(4573), + [sym_from_clause] = STATE(6160), + [sym_conditional_expression] = STATE(4573), + [sym_conditional_access_expression] = STATE(4573), + [sym_as_expression] = STATE(4573), + [sym_is_expression] = STATE(4573), + [sym_is_pattern_expression] = STATE(4573), + [sym_cast_expression] = STATE(4573), + [sym_checked_expression] = STATE(4573), + [sym_invocation_expression] = STATE(4581), + [sym_switch_expression] = STATE(4573), + [sym_await_expression] = STATE(4581), + [sym_throw_expression] = STATE(4573), + [sym_element_access_expression] = STATE(3144), + [sym_interpolated_string_expression] = STATE(4573), + [sym_member_access_expression] = STATE(3144), + [sym_object_creation_expression] = STATE(4581), + [sym_parenthesized_expression] = STATE(4581), + [sym__parenthesized_lvalue_expression] = STATE(3144), + [sym_lambda_expression] = STATE(4573), + [sym__lambda_expression_init] = STATE(7491), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(4573), + [sym_anonymous_method_expression] = STATE(4573), + [sym_anonymous_object_creation_expression] = STATE(4573), + [sym_implicit_array_creation_expression] = STATE(4573), + [sym_implicit_object_creation_expression] = STATE(4573), + [sym_implicit_stackalloc_expression] = STATE(4573), + [sym_initializer_expression] = STATE(4573), + [sym_default_expression] = STATE(4573), + [sym_with_expression] = STATE(4573), + [sym_sizeof_expression] = STATE(4573), + [sym_typeof_expression] = STATE(4573), + [sym_makeref_expression] = STATE(4573), + [sym_ref_expression] = STATE(4573), + [sym_reftype_expression] = STATE(4573), + [sym_refvalue_expression] = STATE(4573), + [sym_stackalloc_expression] = STATE(4573), + [sym_range_expression] = STATE(4573), + [sym_tuple_expression] = STATE(3144), + [sym_literal] = STATE(4573), + [sym_character_literal] = STATE(4575), + [sym_string_literal] = STATE(4575), + [sym_raw_string_literal] = STATE(4575), + [sym_boolean_literal] = STATE(4575), + [sym_identifier] = STATE(2237), + [sym__reserved_identifier] = STATE(2229), + [sym_preproc_if_in_expression] = STATE(4573), + [sym_preproc_if_in_attribute_list] = STATE(5583), + [sym_preproc_region] = STATE(1708), + [sym_preproc_endregion] = STATE(1708), + [sym_preproc_line] = STATE(1708), + [sym_preproc_pragma] = STATE(1708), + [sym_preproc_nullable] = STATE(1708), + [sym_preproc_error] = STATE(1708), + [sym_preproc_warning] = STATE(1708), + [sym_preproc_define] = STATE(1708), + [sym_preproc_undef] = STATE(1708), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3501), + [sym__identifier_token] = ACTIONS(1385), + [anon_sym_alias] = ACTIONS(1387), + [anon_sym_global] = ACTIONS(1387), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1389), + [anon_sym_LPAREN] = ACTIONS(1391), + [anon_sym_ref] = ACTIONS(1393), + [anon_sym_LBRACE] = ACTIONS(1395), + [anon_sym_delegate] = ACTIONS(1397), + [anon_sym_async] = ACTIONS(1045), + [anon_sym_file] = ACTIONS(1387), + [anon_sym_new] = ACTIONS(1399), + [anon_sym_where] = ACTIONS(1387), + [anon_sym_notnull] = ACTIONS(1387), + [anon_sym_unmanaged] = ACTIONS(1387), + [anon_sym_checked] = ACTIONS(1401), + [anon_sym_BANG] = ACTIONS(1405), + [anon_sym_TILDE] = ACTIONS(1405), + [anon_sym_PLUS_PLUS] = ACTIONS(1405), + [anon_sym_DASH_DASH] = ACTIONS(1405), + [anon_sym_true] = ACTIONS(1407), + [anon_sym_false] = ACTIONS(1407), + [anon_sym_PLUS] = ACTIONS(1403), + [anon_sym_DASH] = ACTIONS(1403), + [anon_sym_STAR] = ACTIONS(1409), + [anon_sym_CARET] = ACTIONS(1405), + [anon_sym_AMP] = ACTIONS(1405), + [anon_sym_this] = ACTIONS(1411), + [anon_sym_scoped] = ACTIONS(1413), + [anon_sym_base] = ACTIONS(1415), + [anon_sym_var] = ACTIONS(1417), + [sym_predefined_type] = ACTIONS(1419), + [anon_sym_unchecked] = ACTIONS(1401), + [anon_sym_yield] = ACTIONS(1387), + [anon_sym_default] = ACTIONS(1421), + [anon_sym_throw] = ACTIONS(1423), + [anon_sym_when] = ACTIONS(1387), + [anon_sym_await] = ACTIONS(1425), + [anon_sym_DOT_DOT] = ACTIONS(1427), + [anon_sym_from] = ACTIONS(1429), + [anon_sym_into] = ACTIONS(1387), + [anon_sym_join] = ACTIONS(1387), + [anon_sym_on] = ACTIONS(1387), + [anon_sym_equals] = ACTIONS(1387), + [anon_sym_let] = ACTIONS(1387), + [anon_sym_orderby] = ACTIONS(1387), + [anon_sym_ascending] = ACTIONS(1387), + [anon_sym_descending] = ACTIONS(1387), + [anon_sym_group] = ACTIONS(1387), + [anon_sym_by] = ACTIONS(1387), + [anon_sym_select] = ACTIONS(1387), + [anon_sym_stackalloc] = ACTIONS(1431), + [anon_sym_sizeof] = ACTIONS(1433), + [anon_sym_typeof] = ACTIONS(1435), + [anon_sym___makeref] = ACTIONS(1437), + [anon_sym___reftype] = ACTIONS(1439), + [anon_sym___refvalue] = ACTIONS(1441), + [sym_null_literal] = ACTIONS(1443), + [anon_sym_SQUOTE] = ACTIONS(1445), + [sym_integer_literal] = ACTIONS(1443), + [sym_real_literal] = ACTIONS(1447), + [anon_sym_DQUOTE] = ACTIONS(1449), + [sym_verbatim_string_literal] = ACTIONS(1447), + [aux_sym_preproc_if_token1] = ACTIONS(1451), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + [sym_interpolation_regular_start] = ACTIONS(1453), + [sym_interpolation_verbatim_start] = ACTIONS(1455), + [sym_interpolation_raw_start] = ACTIONS(1457), + [sym_raw_string_start] = ACTIONS(1459), + }, + [1709] = { + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(3182), + [sym__name] = STATE(5888), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2286), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2262), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(4266), + [sym_non_lvalue_expression] = STATE(4580), + [sym_lvalue_expression] = STATE(3192), + [sym__expression_statement_expression] = STATE(4573), + [sym_assignment_expression] = STATE(4581), + [sym_binary_expression] = STATE(4573), + [sym_postfix_unary_expression] = STATE(4581), + [sym_prefix_unary_expression] = STATE(4581), + [sym__pointer_indirection_expression] = STATE(3144), + [sym_query_expression] = STATE(4573), + [sym_from_clause] = STATE(6160), + [sym_conditional_expression] = STATE(4573), + [sym_conditional_access_expression] = STATE(4573), + [sym_as_expression] = STATE(4573), + [sym_is_expression] = STATE(4573), + [sym_is_pattern_expression] = STATE(4573), + [sym_cast_expression] = STATE(4573), + [sym_checked_expression] = STATE(4573), + [sym_invocation_expression] = STATE(4581), + [sym_switch_expression] = STATE(4573), + [sym_await_expression] = STATE(4581), + [sym_throw_expression] = STATE(4573), + [sym_element_access_expression] = STATE(3144), + [sym_interpolated_string_expression] = STATE(4573), + [sym_member_access_expression] = STATE(3144), + [sym_object_creation_expression] = STATE(4581), + [sym_parenthesized_expression] = STATE(4581), + [sym__parenthesized_lvalue_expression] = STATE(3144), + [sym_lambda_expression] = STATE(4573), + [sym__lambda_expression_init] = STATE(7491), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(4573), + [sym_anonymous_method_expression] = STATE(4573), + [sym_anonymous_object_creation_expression] = STATE(4573), + [sym_implicit_array_creation_expression] = STATE(4573), + [sym_implicit_object_creation_expression] = STATE(4573), + [sym_implicit_stackalloc_expression] = STATE(4573), + [sym_initializer_expression] = STATE(4573), + [sym_default_expression] = STATE(4573), + [sym_with_expression] = STATE(4573), + [sym_sizeof_expression] = STATE(4573), + [sym_typeof_expression] = STATE(4573), + [sym_makeref_expression] = STATE(4573), + [sym_ref_expression] = STATE(4573), + [sym_reftype_expression] = STATE(4573), + [sym_refvalue_expression] = STATE(4573), + [sym_stackalloc_expression] = STATE(4573), + [sym_range_expression] = STATE(4573), + [sym_tuple_expression] = STATE(3144), + [sym_literal] = STATE(4573), + [sym_character_literal] = STATE(4575), + [sym_string_literal] = STATE(4575), + [sym_raw_string_literal] = STATE(4575), + [sym_boolean_literal] = STATE(4575), + [sym_identifier] = STATE(2237), + [sym__reserved_identifier] = STATE(2229), + [sym_preproc_if_in_expression] = STATE(4573), + [sym_preproc_if_in_attribute_list] = STATE(5583), + [sym_preproc_region] = STATE(1709), + [sym_preproc_endregion] = STATE(1709), + [sym_preproc_line] = STATE(1709), + [sym_preproc_pragma] = STATE(1709), + [sym_preproc_nullable] = STATE(1709), + [sym_preproc_error] = STATE(1709), + [sym_preproc_warning] = STATE(1709), + [sym_preproc_define] = STATE(1709), + [sym_preproc_undef] = STATE(1709), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3501), + [sym__identifier_token] = ACTIONS(1385), + [anon_sym_alias] = ACTIONS(1387), + [anon_sym_global] = ACTIONS(1387), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1389), + [anon_sym_LPAREN] = ACTIONS(1391), + [anon_sym_ref] = ACTIONS(1393), + [anon_sym_LBRACE] = ACTIONS(1395), + [anon_sym_delegate] = ACTIONS(1397), + [anon_sym_async] = ACTIONS(1045), + [anon_sym_file] = ACTIONS(1387), + [anon_sym_new] = ACTIONS(1399), + [anon_sym_where] = ACTIONS(1387), + [anon_sym_notnull] = ACTIONS(1387), + [anon_sym_unmanaged] = ACTIONS(1387), + [anon_sym_checked] = ACTIONS(1401), + [anon_sym_BANG] = ACTIONS(1405), + [anon_sym_TILDE] = ACTIONS(1405), + [anon_sym_PLUS_PLUS] = ACTIONS(1405), + [anon_sym_DASH_DASH] = ACTIONS(1405), + [anon_sym_true] = ACTIONS(1407), + [anon_sym_false] = ACTIONS(1407), + [anon_sym_PLUS] = ACTIONS(1403), + [anon_sym_DASH] = ACTIONS(1403), + [anon_sym_STAR] = ACTIONS(1409), + [anon_sym_CARET] = ACTIONS(1405), + [anon_sym_AMP] = ACTIONS(1405), + [anon_sym_this] = ACTIONS(1411), + [anon_sym_scoped] = ACTIONS(1413), + [anon_sym_base] = ACTIONS(1415), + [anon_sym_var] = ACTIONS(1417), + [sym_predefined_type] = ACTIONS(1419), + [anon_sym_unchecked] = ACTIONS(1401), + [anon_sym_yield] = ACTIONS(1387), + [anon_sym_default] = ACTIONS(1421), + [anon_sym_throw] = ACTIONS(1423), + [anon_sym_when] = ACTIONS(1387), + [anon_sym_await] = ACTIONS(1425), + [anon_sym_DOT_DOT] = ACTIONS(1427), + [anon_sym_from] = ACTIONS(1429), + [anon_sym_into] = ACTIONS(1387), + [anon_sym_join] = ACTIONS(1387), + [anon_sym_on] = ACTIONS(1387), + [anon_sym_equals] = ACTIONS(1387), + [anon_sym_let] = ACTIONS(1387), + [anon_sym_orderby] = ACTIONS(1387), + [anon_sym_ascending] = ACTIONS(1387), + [anon_sym_descending] = ACTIONS(1387), + [anon_sym_group] = ACTIONS(1387), + [anon_sym_by] = ACTIONS(1387), + [anon_sym_select] = ACTIONS(1387), + [anon_sym_stackalloc] = ACTIONS(1431), + [anon_sym_sizeof] = ACTIONS(1433), + [anon_sym_typeof] = ACTIONS(1435), + [anon_sym___makeref] = ACTIONS(1437), + [anon_sym___reftype] = ACTIONS(1439), + [anon_sym___refvalue] = ACTIONS(1441), + [sym_null_literal] = ACTIONS(1443), + [anon_sym_SQUOTE] = ACTIONS(1445), + [sym_integer_literal] = ACTIONS(1443), + [sym_real_literal] = ACTIONS(1447), + [anon_sym_DQUOTE] = ACTIONS(1449), + [sym_verbatim_string_literal] = ACTIONS(1447), + [aux_sym_preproc_if_token1] = ACTIONS(1451), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + [sym_interpolation_regular_start] = ACTIONS(1453), + [sym_interpolation_verbatim_start] = ACTIONS(1455), + [sym_interpolation_raw_start] = ACTIONS(1457), + [sym_raw_string_start] = ACTIONS(1459), + }, + [1710] = { + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(3182), + [sym__name] = STATE(5888), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2286), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2262), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(4267), + [sym_non_lvalue_expression] = STATE(4580), + [sym_lvalue_expression] = STATE(3192), + [sym__expression_statement_expression] = STATE(4573), + [sym_assignment_expression] = STATE(4581), + [sym_binary_expression] = STATE(4573), + [sym_postfix_unary_expression] = STATE(4581), + [sym_prefix_unary_expression] = STATE(4581), + [sym__pointer_indirection_expression] = STATE(3144), + [sym_query_expression] = STATE(4573), + [sym_from_clause] = STATE(6160), + [sym_conditional_expression] = STATE(4573), + [sym_conditional_access_expression] = STATE(4573), + [sym_as_expression] = STATE(4573), + [sym_is_expression] = STATE(4573), + [sym_is_pattern_expression] = STATE(4573), + [sym_cast_expression] = STATE(4573), + [sym_checked_expression] = STATE(4573), + [sym_invocation_expression] = STATE(4581), + [sym_switch_expression] = STATE(4573), + [sym_await_expression] = STATE(4581), + [sym_throw_expression] = STATE(4573), + [sym_element_access_expression] = STATE(3144), + [sym_interpolated_string_expression] = STATE(4573), + [sym_member_access_expression] = STATE(3144), + [sym_object_creation_expression] = STATE(4581), + [sym_parenthesized_expression] = STATE(4581), + [sym__parenthesized_lvalue_expression] = STATE(3144), + [sym_lambda_expression] = STATE(4573), + [sym__lambda_expression_init] = STATE(7491), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(4573), + [sym_anonymous_method_expression] = STATE(4573), + [sym_anonymous_object_creation_expression] = STATE(4573), + [sym_implicit_array_creation_expression] = STATE(4573), + [sym_implicit_object_creation_expression] = STATE(4573), + [sym_implicit_stackalloc_expression] = STATE(4573), + [sym_initializer_expression] = STATE(4573), + [sym_default_expression] = STATE(4573), + [sym_with_expression] = STATE(4573), + [sym_sizeof_expression] = STATE(4573), + [sym_typeof_expression] = STATE(4573), + [sym_makeref_expression] = STATE(4573), + [sym_ref_expression] = STATE(4573), + [sym_reftype_expression] = STATE(4573), + [sym_refvalue_expression] = STATE(4573), + [sym_stackalloc_expression] = STATE(4573), + [sym_range_expression] = STATE(4573), + [sym_tuple_expression] = STATE(3144), + [sym_literal] = STATE(4573), + [sym_character_literal] = STATE(4575), + [sym_string_literal] = STATE(4575), + [sym_raw_string_literal] = STATE(4575), + [sym_boolean_literal] = STATE(4575), + [sym_identifier] = STATE(2237), + [sym__reserved_identifier] = STATE(2229), + [sym_preproc_if_in_expression] = STATE(4573), + [sym_preproc_if_in_attribute_list] = STATE(5583), + [sym_preproc_region] = STATE(1710), + [sym_preproc_endregion] = STATE(1710), + [sym_preproc_line] = STATE(1710), + [sym_preproc_pragma] = STATE(1710), + [sym_preproc_nullable] = STATE(1710), + [sym_preproc_error] = STATE(1710), + [sym_preproc_warning] = STATE(1710), + [sym_preproc_define] = STATE(1710), + [sym_preproc_undef] = STATE(1710), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3501), + [sym__identifier_token] = ACTIONS(1385), + [anon_sym_alias] = ACTIONS(1387), + [anon_sym_global] = ACTIONS(1387), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1389), + [anon_sym_LPAREN] = ACTIONS(1391), + [anon_sym_ref] = ACTIONS(1393), + [anon_sym_LBRACE] = ACTIONS(1395), + [anon_sym_delegate] = ACTIONS(1397), + [anon_sym_async] = ACTIONS(1045), + [anon_sym_file] = ACTIONS(1387), + [anon_sym_new] = ACTIONS(1399), + [anon_sym_where] = ACTIONS(1387), + [anon_sym_notnull] = ACTIONS(1387), + [anon_sym_unmanaged] = ACTIONS(1387), + [anon_sym_checked] = ACTIONS(1401), + [anon_sym_BANG] = ACTIONS(1405), + [anon_sym_TILDE] = ACTIONS(1405), + [anon_sym_PLUS_PLUS] = ACTIONS(1405), + [anon_sym_DASH_DASH] = ACTIONS(1405), + [anon_sym_true] = ACTIONS(1407), + [anon_sym_false] = ACTIONS(1407), + [anon_sym_PLUS] = ACTIONS(1403), + [anon_sym_DASH] = ACTIONS(1403), + [anon_sym_STAR] = ACTIONS(1409), + [anon_sym_CARET] = ACTIONS(1405), + [anon_sym_AMP] = ACTIONS(1405), + [anon_sym_this] = ACTIONS(1411), + [anon_sym_scoped] = ACTIONS(1413), + [anon_sym_base] = ACTIONS(1415), + [anon_sym_var] = ACTIONS(1417), + [sym_predefined_type] = ACTIONS(1419), + [anon_sym_unchecked] = ACTIONS(1401), + [anon_sym_yield] = ACTIONS(1387), + [anon_sym_default] = ACTIONS(1421), + [anon_sym_throw] = ACTIONS(1423), + [anon_sym_when] = ACTIONS(1387), + [anon_sym_await] = ACTIONS(1425), + [anon_sym_DOT_DOT] = ACTIONS(1427), + [anon_sym_from] = ACTIONS(1429), + [anon_sym_into] = ACTIONS(1387), + [anon_sym_join] = ACTIONS(1387), + [anon_sym_on] = ACTIONS(1387), + [anon_sym_equals] = ACTIONS(1387), + [anon_sym_let] = ACTIONS(1387), + [anon_sym_orderby] = ACTIONS(1387), + [anon_sym_ascending] = ACTIONS(1387), + [anon_sym_descending] = ACTIONS(1387), + [anon_sym_group] = ACTIONS(1387), + [anon_sym_by] = ACTIONS(1387), + [anon_sym_select] = ACTIONS(1387), + [anon_sym_stackalloc] = ACTIONS(1431), + [anon_sym_sizeof] = ACTIONS(1433), + [anon_sym_typeof] = ACTIONS(1435), + [anon_sym___makeref] = ACTIONS(1437), + [anon_sym___reftype] = ACTIONS(1439), + [anon_sym___refvalue] = ACTIONS(1441), + [sym_null_literal] = ACTIONS(1443), + [anon_sym_SQUOTE] = ACTIONS(1445), + [sym_integer_literal] = ACTIONS(1443), + [sym_real_literal] = ACTIONS(1447), + [anon_sym_DQUOTE] = ACTIONS(1449), + [sym_verbatim_string_literal] = ACTIONS(1447), + [aux_sym_preproc_if_token1] = ACTIONS(1451), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + [sym_interpolation_regular_start] = ACTIONS(1453), + [sym_interpolation_verbatim_start] = ACTIONS(1455), + [sym_interpolation_raw_start] = ACTIONS(1457), + [sym_raw_string_start] = ACTIONS(1459), + }, + [1711] = { + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(3182), + [sym__name] = STATE(5888), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2286), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2262), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(4268), + [sym_non_lvalue_expression] = STATE(4580), + [sym_lvalue_expression] = STATE(3192), + [sym__expression_statement_expression] = STATE(4573), + [sym_assignment_expression] = STATE(4581), + [sym_binary_expression] = STATE(4573), + [sym_postfix_unary_expression] = STATE(4581), + [sym_prefix_unary_expression] = STATE(4581), + [sym__pointer_indirection_expression] = STATE(3144), + [sym_query_expression] = STATE(4573), + [sym_from_clause] = STATE(6160), + [sym_conditional_expression] = STATE(4573), + [sym_conditional_access_expression] = STATE(4573), + [sym_as_expression] = STATE(4573), + [sym_is_expression] = STATE(4573), + [sym_is_pattern_expression] = STATE(4573), + [sym_cast_expression] = STATE(4573), + [sym_checked_expression] = STATE(4573), + [sym_invocation_expression] = STATE(4581), + [sym_switch_expression] = STATE(4573), + [sym_await_expression] = STATE(4581), + [sym_throw_expression] = STATE(4573), + [sym_element_access_expression] = STATE(3144), + [sym_interpolated_string_expression] = STATE(4573), + [sym_member_access_expression] = STATE(3144), + [sym_object_creation_expression] = STATE(4581), + [sym_parenthesized_expression] = STATE(4581), + [sym__parenthesized_lvalue_expression] = STATE(3144), + [sym_lambda_expression] = STATE(4573), + [sym__lambda_expression_init] = STATE(7491), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(4573), + [sym_anonymous_method_expression] = STATE(4573), + [sym_anonymous_object_creation_expression] = STATE(4573), + [sym_implicit_array_creation_expression] = STATE(4573), + [sym_implicit_object_creation_expression] = STATE(4573), + [sym_implicit_stackalloc_expression] = STATE(4573), + [sym_initializer_expression] = STATE(4573), + [sym_default_expression] = STATE(4573), + [sym_with_expression] = STATE(4573), + [sym_sizeof_expression] = STATE(4573), + [sym_typeof_expression] = STATE(4573), + [sym_makeref_expression] = STATE(4573), + [sym_ref_expression] = STATE(4573), + [sym_reftype_expression] = STATE(4573), + [sym_refvalue_expression] = STATE(4573), + [sym_stackalloc_expression] = STATE(4573), + [sym_range_expression] = STATE(4573), + [sym_tuple_expression] = STATE(3144), + [sym_literal] = STATE(4573), + [sym_character_literal] = STATE(4575), + [sym_string_literal] = STATE(4575), + [sym_raw_string_literal] = STATE(4575), + [sym_boolean_literal] = STATE(4575), + [sym_identifier] = STATE(2237), + [sym__reserved_identifier] = STATE(2229), + [sym_preproc_if_in_expression] = STATE(4573), + [sym_preproc_if_in_attribute_list] = STATE(5583), + [sym_preproc_region] = STATE(1711), + [sym_preproc_endregion] = STATE(1711), + [sym_preproc_line] = STATE(1711), + [sym_preproc_pragma] = STATE(1711), + [sym_preproc_nullable] = STATE(1711), + [sym_preproc_error] = STATE(1711), + [sym_preproc_warning] = STATE(1711), + [sym_preproc_define] = STATE(1711), + [sym_preproc_undef] = STATE(1711), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3501), + [sym__identifier_token] = ACTIONS(1385), + [anon_sym_alias] = ACTIONS(1387), + [anon_sym_global] = ACTIONS(1387), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1389), + [anon_sym_LPAREN] = ACTIONS(1391), + [anon_sym_ref] = ACTIONS(1393), + [anon_sym_LBRACE] = ACTIONS(1395), + [anon_sym_delegate] = ACTIONS(1397), + [anon_sym_async] = ACTIONS(1045), + [anon_sym_file] = ACTIONS(1387), + [anon_sym_new] = ACTIONS(1399), + [anon_sym_where] = ACTIONS(1387), + [anon_sym_notnull] = ACTIONS(1387), + [anon_sym_unmanaged] = ACTIONS(1387), + [anon_sym_checked] = ACTIONS(1401), + [anon_sym_BANG] = ACTIONS(1405), + [anon_sym_TILDE] = ACTIONS(1405), + [anon_sym_PLUS_PLUS] = ACTIONS(1405), + [anon_sym_DASH_DASH] = ACTIONS(1405), + [anon_sym_true] = ACTIONS(1407), + [anon_sym_false] = ACTIONS(1407), + [anon_sym_PLUS] = ACTIONS(1403), + [anon_sym_DASH] = ACTIONS(1403), + [anon_sym_STAR] = ACTIONS(1409), + [anon_sym_CARET] = ACTIONS(1405), + [anon_sym_AMP] = ACTIONS(1405), + [anon_sym_this] = ACTIONS(1411), + [anon_sym_scoped] = ACTIONS(1413), + [anon_sym_base] = ACTIONS(1415), + [anon_sym_var] = ACTIONS(1417), + [sym_predefined_type] = ACTIONS(1419), + [anon_sym_unchecked] = ACTIONS(1401), + [anon_sym_yield] = ACTIONS(1387), + [anon_sym_default] = ACTIONS(1421), + [anon_sym_throw] = ACTIONS(1423), + [anon_sym_when] = ACTIONS(1387), + [anon_sym_await] = ACTIONS(1425), + [anon_sym_DOT_DOT] = ACTIONS(1427), + [anon_sym_from] = ACTIONS(1429), + [anon_sym_into] = ACTIONS(1387), + [anon_sym_join] = ACTIONS(1387), + [anon_sym_on] = ACTIONS(1387), + [anon_sym_equals] = ACTIONS(1387), + [anon_sym_let] = ACTIONS(1387), + [anon_sym_orderby] = ACTIONS(1387), + [anon_sym_ascending] = ACTIONS(1387), + [anon_sym_descending] = ACTIONS(1387), + [anon_sym_group] = ACTIONS(1387), + [anon_sym_by] = ACTIONS(1387), + [anon_sym_select] = ACTIONS(1387), + [anon_sym_stackalloc] = ACTIONS(1431), + [anon_sym_sizeof] = ACTIONS(1433), + [anon_sym_typeof] = ACTIONS(1435), + [anon_sym___makeref] = ACTIONS(1437), + [anon_sym___reftype] = ACTIONS(1439), + [anon_sym___refvalue] = ACTIONS(1441), + [sym_null_literal] = ACTIONS(1443), + [anon_sym_SQUOTE] = ACTIONS(1445), + [sym_integer_literal] = ACTIONS(1443), + [sym_real_literal] = ACTIONS(1447), + [anon_sym_DQUOTE] = ACTIONS(1449), + [sym_verbatim_string_literal] = ACTIONS(1447), + [aux_sym_preproc_if_token1] = ACTIONS(1451), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + [sym_interpolation_regular_start] = ACTIONS(1453), + [sym_interpolation_verbatim_start] = ACTIONS(1455), + [sym_interpolation_raw_start] = ACTIONS(1457), + [sym_raw_string_start] = ACTIONS(1459), + }, + [1712] = { + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(3182), + [sym__name] = STATE(5888), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2286), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2262), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(4317), + [sym_non_lvalue_expression] = STATE(4580), + [sym_lvalue_expression] = STATE(3192), + [sym__expression_statement_expression] = STATE(4573), + [sym_assignment_expression] = STATE(4581), + [sym_binary_expression] = STATE(4573), + [sym_postfix_unary_expression] = STATE(4581), + [sym_prefix_unary_expression] = STATE(4581), + [sym__pointer_indirection_expression] = STATE(3144), + [sym_query_expression] = STATE(4573), + [sym_from_clause] = STATE(6160), + [sym_conditional_expression] = STATE(4573), + [sym_conditional_access_expression] = STATE(4573), + [sym_as_expression] = STATE(4573), + [sym_is_expression] = STATE(4573), + [sym_is_pattern_expression] = STATE(4573), + [sym_cast_expression] = STATE(4573), + [sym_checked_expression] = STATE(4573), + [sym_invocation_expression] = STATE(4581), + [sym_switch_expression] = STATE(4573), + [sym_await_expression] = STATE(4581), + [sym_throw_expression] = STATE(4573), + [sym_element_access_expression] = STATE(3144), + [sym_interpolated_string_expression] = STATE(4573), + [sym_member_access_expression] = STATE(3144), + [sym_object_creation_expression] = STATE(4581), + [sym_parenthesized_expression] = STATE(4581), + [sym__parenthesized_lvalue_expression] = STATE(3144), + [sym_lambda_expression] = STATE(4573), + [sym__lambda_expression_init] = STATE(7491), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(4573), + [sym_anonymous_method_expression] = STATE(4573), + [sym_anonymous_object_creation_expression] = STATE(4573), + [sym_implicit_array_creation_expression] = STATE(4573), + [sym_implicit_object_creation_expression] = STATE(4573), + [sym_implicit_stackalloc_expression] = STATE(4573), + [sym_initializer_expression] = STATE(4573), + [sym_default_expression] = STATE(4573), + [sym_with_expression] = STATE(4573), + [sym_sizeof_expression] = STATE(4573), + [sym_typeof_expression] = STATE(4573), + [sym_makeref_expression] = STATE(4573), + [sym_ref_expression] = STATE(4573), + [sym_reftype_expression] = STATE(4573), + [sym_refvalue_expression] = STATE(4573), + [sym_stackalloc_expression] = STATE(4573), + [sym_range_expression] = STATE(4573), + [sym_tuple_expression] = STATE(3144), + [sym_literal] = STATE(4573), + [sym_character_literal] = STATE(4575), + [sym_string_literal] = STATE(4575), + [sym_raw_string_literal] = STATE(4575), + [sym_boolean_literal] = STATE(4575), + [sym_identifier] = STATE(2237), + [sym__reserved_identifier] = STATE(2229), + [sym_preproc_if_in_expression] = STATE(4573), + [sym_preproc_if_in_attribute_list] = STATE(5583), + [sym_preproc_region] = STATE(1712), + [sym_preproc_endregion] = STATE(1712), + [sym_preproc_line] = STATE(1712), + [sym_preproc_pragma] = STATE(1712), + [sym_preproc_nullable] = STATE(1712), + [sym_preproc_error] = STATE(1712), + [sym_preproc_warning] = STATE(1712), + [sym_preproc_define] = STATE(1712), + [sym_preproc_undef] = STATE(1712), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3501), + [sym__identifier_token] = ACTIONS(1385), + [anon_sym_alias] = ACTIONS(1387), + [anon_sym_global] = ACTIONS(1387), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1389), + [anon_sym_LPAREN] = ACTIONS(1391), + [anon_sym_ref] = ACTIONS(1393), + [anon_sym_LBRACE] = ACTIONS(1395), + [anon_sym_delegate] = ACTIONS(1397), + [anon_sym_async] = ACTIONS(1045), + [anon_sym_file] = ACTIONS(1387), + [anon_sym_new] = ACTIONS(1399), + [anon_sym_where] = ACTIONS(1387), + [anon_sym_notnull] = ACTIONS(1387), + [anon_sym_unmanaged] = ACTIONS(1387), + [anon_sym_checked] = ACTIONS(1401), + [anon_sym_BANG] = ACTIONS(1405), + [anon_sym_TILDE] = ACTIONS(1405), + [anon_sym_PLUS_PLUS] = ACTIONS(1405), + [anon_sym_DASH_DASH] = ACTIONS(1405), + [anon_sym_true] = ACTIONS(1407), + [anon_sym_false] = ACTIONS(1407), + [anon_sym_PLUS] = ACTIONS(1403), + [anon_sym_DASH] = ACTIONS(1403), + [anon_sym_STAR] = ACTIONS(1409), + [anon_sym_CARET] = ACTIONS(1405), + [anon_sym_AMP] = ACTIONS(1405), + [anon_sym_this] = ACTIONS(1411), + [anon_sym_scoped] = ACTIONS(1413), + [anon_sym_base] = ACTIONS(1415), + [anon_sym_var] = ACTIONS(1417), + [sym_predefined_type] = ACTIONS(1419), + [anon_sym_unchecked] = ACTIONS(1401), + [anon_sym_yield] = ACTIONS(1387), + [anon_sym_default] = ACTIONS(1421), + [anon_sym_throw] = ACTIONS(1423), + [anon_sym_when] = ACTIONS(1387), + [anon_sym_await] = ACTIONS(1425), + [anon_sym_DOT_DOT] = ACTIONS(1427), + [anon_sym_from] = ACTIONS(1429), + [anon_sym_into] = ACTIONS(1387), + [anon_sym_join] = ACTIONS(1387), + [anon_sym_on] = ACTIONS(1387), + [anon_sym_equals] = ACTIONS(1387), + [anon_sym_let] = ACTIONS(1387), + [anon_sym_orderby] = ACTIONS(1387), + [anon_sym_ascending] = ACTIONS(1387), + [anon_sym_descending] = ACTIONS(1387), + [anon_sym_group] = ACTIONS(1387), + [anon_sym_by] = ACTIONS(1387), + [anon_sym_select] = ACTIONS(1387), + [anon_sym_stackalloc] = ACTIONS(1431), + [anon_sym_sizeof] = ACTIONS(1433), + [anon_sym_typeof] = ACTIONS(1435), + [anon_sym___makeref] = ACTIONS(1437), + [anon_sym___reftype] = ACTIONS(1439), + [anon_sym___refvalue] = ACTIONS(1441), + [sym_null_literal] = ACTIONS(1443), + [anon_sym_SQUOTE] = ACTIONS(1445), + [sym_integer_literal] = ACTIONS(1443), + [sym_real_literal] = ACTIONS(1447), + [anon_sym_DQUOTE] = ACTIONS(1449), + [sym_verbatim_string_literal] = ACTIONS(1447), + [aux_sym_preproc_if_token1] = ACTIONS(1451), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + [sym_interpolation_regular_start] = ACTIONS(1453), + [sym_interpolation_verbatim_start] = ACTIONS(1455), + [sym_interpolation_raw_start] = ACTIONS(1457), + [sym_raw_string_start] = ACTIONS(1459), + }, + [1713] = { + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(3182), + [sym__name] = STATE(5888), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2286), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2262), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(4318), + [sym_non_lvalue_expression] = STATE(4580), + [sym_lvalue_expression] = STATE(3192), + [sym__expression_statement_expression] = STATE(4573), + [sym_assignment_expression] = STATE(4581), + [sym_binary_expression] = STATE(4573), + [sym_postfix_unary_expression] = STATE(4581), + [sym_prefix_unary_expression] = STATE(4581), + [sym__pointer_indirection_expression] = STATE(3144), + [sym_query_expression] = STATE(4573), + [sym_from_clause] = STATE(6160), + [sym_conditional_expression] = STATE(4573), + [sym_conditional_access_expression] = STATE(4573), + [sym_as_expression] = STATE(4573), + [sym_is_expression] = STATE(4573), + [sym_is_pattern_expression] = STATE(4573), + [sym_cast_expression] = STATE(4573), + [sym_checked_expression] = STATE(4573), + [sym_invocation_expression] = STATE(4581), + [sym_switch_expression] = STATE(4573), + [sym_await_expression] = STATE(4581), + [sym_throw_expression] = STATE(4573), + [sym_element_access_expression] = STATE(3144), + [sym_interpolated_string_expression] = STATE(4573), + [sym_member_access_expression] = STATE(3144), + [sym_object_creation_expression] = STATE(4581), + [sym_parenthesized_expression] = STATE(4581), + [sym__parenthesized_lvalue_expression] = STATE(3144), + [sym_lambda_expression] = STATE(4573), + [sym__lambda_expression_init] = STATE(7491), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(4573), + [sym_anonymous_method_expression] = STATE(4573), + [sym_anonymous_object_creation_expression] = STATE(4573), + [sym_implicit_array_creation_expression] = STATE(4573), + [sym_implicit_object_creation_expression] = STATE(4573), + [sym_implicit_stackalloc_expression] = STATE(4573), + [sym_initializer_expression] = STATE(4573), + [sym_default_expression] = STATE(4573), + [sym_with_expression] = STATE(4573), + [sym_sizeof_expression] = STATE(4573), + [sym_typeof_expression] = STATE(4573), + [sym_makeref_expression] = STATE(4573), + [sym_ref_expression] = STATE(4573), + [sym_reftype_expression] = STATE(4573), + [sym_refvalue_expression] = STATE(4573), + [sym_stackalloc_expression] = STATE(4573), + [sym_range_expression] = STATE(4573), + [sym_tuple_expression] = STATE(3144), + [sym_literal] = STATE(4573), + [sym_character_literal] = STATE(4575), + [sym_string_literal] = STATE(4575), + [sym_raw_string_literal] = STATE(4575), + [sym_boolean_literal] = STATE(4575), + [sym_identifier] = STATE(2237), + [sym__reserved_identifier] = STATE(2229), + [sym_preproc_if_in_expression] = STATE(4573), + [sym_preproc_if_in_attribute_list] = STATE(5583), + [sym_preproc_region] = STATE(1713), + [sym_preproc_endregion] = STATE(1713), + [sym_preproc_line] = STATE(1713), + [sym_preproc_pragma] = STATE(1713), + [sym_preproc_nullable] = STATE(1713), + [sym_preproc_error] = STATE(1713), + [sym_preproc_warning] = STATE(1713), + [sym_preproc_define] = STATE(1713), + [sym_preproc_undef] = STATE(1713), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3501), + [sym__identifier_token] = ACTIONS(1385), + [anon_sym_alias] = ACTIONS(1387), + [anon_sym_global] = ACTIONS(1387), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1389), + [anon_sym_LPAREN] = ACTIONS(1391), + [anon_sym_ref] = ACTIONS(1393), + [anon_sym_LBRACE] = ACTIONS(1395), + [anon_sym_delegate] = ACTIONS(1397), + [anon_sym_async] = ACTIONS(1045), + [anon_sym_file] = ACTIONS(1387), + [anon_sym_new] = ACTIONS(1399), + [anon_sym_where] = ACTIONS(1387), + [anon_sym_notnull] = ACTIONS(1387), + [anon_sym_unmanaged] = ACTIONS(1387), + [anon_sym_checked] = ACTIONS(1401), + [anon_sym_BANG] = ACTIONS(1405), + [anon_sym_TILDE] = ACTIONS(1405), + [anon_sym_PLUS_PLUS] = ACTIONS(1405), + [anon_sym_DASH_DASH] = ACTIONS(1405), + [anon_sym_true] = ACTIONS(1407), + [anon_sym_false] = ACTIONS(1407), + [anon_sym_PLUS] = ACTIONS(1403), + [anon_sym_DASH] = ACTIONS(1403), + [anon_sym_STAR] = ACTIONS(1409), + [anon_sym_CARET] = ACTIONS(1405), + [anon_sym_AMP] = ACTIONS(1405), + [anon_sym_this] = ACTIONS(1411), + [anon_sym_scoped] = ACTIONS(1413), + [anon_sym_base] = ACTIONS(1415), + [anon_sym_var] = ACTIONS(1417), + [sym_predefined_type] = ACTIONS(1419), + [anon_sym_unchecked] = ACTIONS(1401), + [anon_sym_yield] = ACTIONS(1387), + [anon_sym_default] = ACTIONS(1421), + [anon_sym_throw] = ACTIONS(1423), + [anon_sym_when] = ACTIONS(1387), + [anon_sym_await] = ACTIONS(1425), + [anon_sym_DOT_DOT] = ACTIONS(1427), + [anon_sym_from] = ACTIONS(1429), + [anon_sym_into] = ACTIONS(1387), + [anon_sym_join] = ACTIONS(1387), + [anon_sym_on] = ACTIONS(1387), + [anon_sym_equals] = ACTIONS(1387), + [anon_sym_let] = ACTIONS(1387), + [anon_sym_orderby] = ACTIONS(1387), + [anon_sym_ascending] = ACTIONS(1387), + [anon_sym_descending] = ACTIONS(1387), + [anon_sym_group] = ACTIONS(1387), + [anon_sym_by] = ACTIONS(1387), + [anon_sym_select] = ACTIONS(1387), + [anon_sym_stackalloc] = ACTIONS(1431), + [anon_sym_sizeof] = ACTIONS(1433), + [anon_sym_typeof] = ACTIONS(1435), + [anon_sym___makeref] = ACTIONS(1437), + [anon_sym___reftype] = ACTIONS(1439), + [anon_sym___refvalue] = ACTIONS(1441), + [sym_null_literal] = ACTIONS(1443), + [anon_sym_SQUOTE] = ACTIONS(1445), + [sym_integer_literal] = ACTIONS(1443), + [sym_real_literal] = ACTIONS(1447), + [anon_sym_DQUOTE] = ACTIONS(1449), + [sym_verbatim_string_literal] = ACTIONS(1447), + [aux_sym_preproc_if_token1] = ACTIONS(1451), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + [sym_interpolation_regular_start] = ACTIONS(1453), + [sym_interpolation_verbatim_start] = ACTIONS(1455), + [sym_interpolation_raw_start] = ACTIONS(1457), + [sym_raw_string_start] = ACTIONS(1459), + }, + [1714] = { + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(3182), + [sym__name] = STATE(5888), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2286), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2262), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(4321), + [sym_non_lvalue_expression] = STATE(4580), + [sym_lvalue_expression] = STATE(3192), + [sym__expression_statement_expression] = STATE(4573), + [sym_assignment_expression] = STATE(4581), + [sym_binary_expression] = STATE(4573), + [sym_postfix_unary_expression] = STATE(4581), + [sym_prefix_unary_expression] = STATE(4581), + [sym__pointer_indirection_expression] = STATE(3144), + [sym_query_expression] = STATE(4573), + [sym_from_clause] = STATE(6160), + [sym_conditional_expression] = STATE(4573), + [sym_conditional_access_expression] = STATE(4573), + [sym_as_expression] = STATE(4573), + [sym_is_expression] = STATE(4573), + [sym_is_pattern_expression] = STATE(4573), + [sym_cast_expression] = STATE(4573), + [sym_checked_expression] = STATE(4573), + [sym_invocation_expression] = STATE(4581), + [sym_switch_expression] = STATE(4573), + [sym_await_expression] = STATE(4581), + [sym_throw_expression] = STATE(4573), + [sym_element_access_expression] = STATE(3144), + [sym_interpolated_string_expression] = STATE(4573), + [sym_member_access_expression] = STATE(3144), + [sym_object_creation_expression] = STATE(4581), + [sym_parenthesized_expression] = STATE(4581), + [sym__parenthesized_lvalue_expression] = STATE(3144), + [sym_lambda_expression] = STATE(4573), + [sym__lambda_expression_init] = STATE(7491), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(4573), + [sym_anonymous_method_expression] = STATE(4573), + [sym_anonymous_object_creation_expression] = STATE(4573), + [sym_implicit_array_creation_expression] = STATE(4573), + [sym_implicit_object_creation_expression] = STATE(4573), + [sym_implicit_stackalloc_expression] = STATE(4573), + [sym_initializer_expression] = STATE(4573), + [sym_default_expression] = STATE(4573), + [sym_with_expression] = STATE(4573), + [sym_sizeof_expression] = STATE(4573), + [sym_typeof_expression] = STATE(4573), + [sym_makeref_expression] = STATE(4573), + [sym_ref_expression] = STATE(4573), + [sym_reftype_expression] = STATE(4573), + [sym_refvalue_expression] = STATE(4573), + [sym_stackalloc_expression] = STATE(4573), + [sym_range_expression] = STATE(4573), + [sym_tuple_expression] = STATE(3144), + [sym_literal] = STATE(4573), + [sym_character_literal] = STATE(4575), + [sym_string_literal] = STATE(4575), + [sym_raw_string_literal] = STATE(4575), + [sym_boolean_literal] = STATE(4575), + [sym_identifier] = STATE(2237), + [sym__reserved_identifier] = STATE(2229), + [sym_preproc_if_in_expression] = STATE(4573), + [sym_preproc_if_in_attribute_list] = STATE(5583), + [sym_preproc_region] = STATE(1714), + [sym_preproc_endregion] = STATE(1714), + [sym_preproc_line] = STATE(1714), + [sym_preproc_pragma] = STATE(1714), + [sym_preproc_nullable] = STATE(1714), + [sym_preproc_error] = STATE(1714), + [sym_preproc_warning] = STATE(1714), + [sym_preproc_define] = STATE(1714), + [sym_preproc_undef] = STATE(1714), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3501), + [sym__identifier_token] = ACTIONS(1385), + [anon_sym_alias] = ACTIONS(1387), + [anon_sym_global] = ACTIONS(1387), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1389), + [anon_sym_LPAREN] = ACTIONS(1391), + [anon_sym_ref] = ACTIONS(1393), + [anon_sym_LBRACE] = ACTIONS(1395), + [anon_sym_delegate] = ACTIONS(1397), + [anon_sym_async] = ACTIONS(1045), + [anon_sym_file] = ACTIONS(1387), + [anon_sym_new] = ACTIONS(1399), + [anon_sym_where] = ACTIONS(1387), + [anon_sym_notnull] = ACTIONS(1387), + [anon_sym_unmanaged] = ACTIONS(1387), + [anon_sym_checked] = ACTIONS(1401), + [anon_sym_BANG] = ACTIONS(1405), + [anon_sym_TILDE] = ACTIONS(1405), + [anon_sym_PLUS_PLUS] = ACTIONS(1405), + [anon_sym_DASH_DASH] = ACTIONS(1405), + [anon_sym_true] = ACTIONS(1407), + [anon_sym_false] = ACTIONS(1407), + [anon_sym_PLUS] = ACTIONS(1403), + [anon_sym_DASH] = ACTIONS(1403), + [anon_sym_STAR] = ACTIONS(1409), + [anon_sym_CARET] = ACTIONS(1405), + [anon_sym_AMP] = ACTIONS(1405), + [anon_sym_this] = ACTIONS(1411), + [anon_sym_scoped] = ACTIONS(1413), + [anon_sym_base] = ACTIONS(1415), + [anon_sym_var] = ACTIONS(1417), + [sym_predefined_type] = ACTIONS(1419), + [anon_sym_unchecked] = ACTIONS(1401), + [anon_sym_yield] = ACTIONS(1387), + [anon_sym_default] = ACTIONS(1421), + [anon_sym_throw] = ACTIONS(1423), + [anon_sym_when] = ACTIONS(1387), + [anon_sym_await] = ACTIONS(1425), + [anon_sym_DOT_DOT] = ACTIONS(1427), + [anon_sym_from] = ACTIONS(1429), + [anon_sym_into] = ACTIONS(1387), + [anon_sym_join] = ACTIONS(1387), + [anon_sym_on] = ACTIONS(1387), + [anon_sym_equals] = ACTIONS(1387), + [anon_sym_let] = ACTIONS(1387), + [anon_sym_orderby] = ACTIONS(1387), + [anon_sym_ascending] = ACTIONS(1387), + [anon_sym_descending] = ACTIONS(1387), + [anon_sym_group] = ACTIONS(1387), + [anon_sym_by] = ACTIONS(1387), + [anon_sym_select] = ACTIONS(1387), + [anon_sym_stackalloc] = ACTIONS(1431), + [anon_sym_sizeof] = ACTIONS(1433), + [anon_sym_typeof] = ACTIONS(1435), + [anon_sym___makeref] = ACTIONS(1437), + [anon_sym___reftype] = ACTIONS(1439), + [anon_sym___refvalue] = ACTIONS(1441), + [sym_null_literal] = ACTIONS(1443), + [anon_sym_SQUOTE] = ACTIONS(1445), + [sym_integer_literal] = ACTIONS(1443), + [sym_real_literal] = ACTIONS(1447), + [anon_sym_DQUOTE] = ACTIONS(1449), + [sym_verbatim_string_literal] = ACTIONS(1447), + [aux_sym_preproc_if_token1] = ACTIONS(1451), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + [sym_interpolation_regular_start] = ACTIONS(1453), + [sym_interpolation_verbatim_start] = ACTIONS(1455), + [sym_interpolation_raw_start] = ACTIONS(1457), + [sym_raw_string_start] = ACTIONS(1459), + }, + [1715] = { + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(3182), + [sym__name] = STATE(5888), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2286), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2262), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(4269), + [sym_non_lvalue_expression] = STATE(4580), + [sym_lvalue_expression] = STATE(3192), + [sym__expression_statement_expression] = STATE(4573), + [sym_assignment_expression] = STATE(4581), + [sym_binary_expression] = STATE(4573), + [sym_postfix_unary_expression] = STATE(4581), + [sym_prefix_unary_expression] = STATE(4581), + [sym__pointer_indirection_expression] = STATE(3144), + [sym_query_expression] = STATE(4573), + [sym_from_clause] = STATE(6160), + [sym_conditional_expression] = STATE(4573), + [sym_conditional_access_expression] = STATE(4573), + [sym_as_expression] = STATE(4573), + [sym_is_expression] = STATE(4573), + [sym_is_pattern_expression] = STATE(4573), + [sym_cast_expression] = STATE(4573), + [sym_checked_expression] = STATE(4573), + [sym_invocation_expression] = STATE(4581), + [sym_switch_expression] = STATE(4573), + [sym_await_expression] = STATE(4581), + [sym_throw_expression] = STATE(4573), + [sym_element_access_expression] = STATE(3144), + [sym_interpolated_string_expression] = STATE(4573), + [sym_member_access_expression] = STATE(3144), + [sym_object_creation_expression] = STATE(4581), + [sym_parenthesized_expression] = STATE(4581), + [sym__parenthesized_lvalue_expression] = STATE(3144), + [sym_lambda_expression] = STATE(4573), + [sym__lambda_expression_init] = STATE(7491), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(4573), + [sym_anonymous_method_expression] = STATE(4573), + [sym_anonymous_object_creation_expression] = STATE(4573), + [sym_implicit_array_creation_expression] = STATE(4573), + [sym_implicit_object_creation_expression] = STATE(4573), + [sym_implicit_stackalloc_expression] = STATE(4573), + [sym_initializer_expression] = STATE(4573), + [sym_default_expression] = STATE(4573), + [sym_with_expression] = STATE(4573), + [sym_sizeof_expression] = STATE(4573), + [sym_typeof_expression] = STATE(4573), + [sym_makeref_expression] = STATE(4573), + [sym_ref_expression] = STATE(4573), + [sym_reftype_expression] = STATE(4573), + [sym_refvalue_expression] = STATE(4573), + [sym_stackalloc_expression] = STATE(4573), + [sym_range_expression] = STATE(4573), + [sym_tuple_expression] = STATE(3144), + [sym_literal] = STATE(4573), + [sym_character_literal] = STATE(4575), + [sym_string_literal] = STATE(4575), + [sym_raw_string_literal] = STATE(4575), + [sym_boolean_literal] = STATE(4575), + [sym_identifier] = STATE(2237), + [sym__reserved_identifier] = STATE(2229), + [sym_preproc_if_in_expression] = STATE(4573), + [sym_preproc_if_in_attribute_list] = STATE(5583), + [sym_preproc_region] = STATE(1715), + [sym_preproc_endregion] = STATE(1715), + [sym_preproc_line] = STATE(1715), + [sym_preproc_pragma] = STATE(1715), + [sym_preproc_nullable] = STATE(1715), + [sym_preproc_error] = STATE(1715), + [sym_preproc_warning] = STATE(1715), + [sym_preproc_define] = STATE(1715), + [sym_preproc_undef] = STATE(1715), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3501), + [sym__identifier_token] = ACTIONS(1385), + [anon_sym_alias] = ACTIONS(1387), + [anon_sym_global] = ACTIONS(1387), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1389), + [anon_sym_LPAREN] = ACTIONS(1391), + [anon_sym_ref] = ACTIONS(1393), + [anon_sym_LBRACE] = ACTIONS(1395), + [anon_sym_delegate] = ACTIONS(1397), + [anon_sym_async] = ACTIONS(1045), + [anon_sym_file] = ACTIONS(1387), + [anon_sym_new] = ACTIONS(1399), + [anon_sym_where] = ACTIONS(1387), + [anon_sym_notnull] = ACTIONS(1387), + [anon_sym_unmanaged] = ACTIONS(1387), + [anon_sym_checked] = ACTIONS(1401), + [anon_sym_BANG] = ACTIONS(1405), + [anon_sym_TILDE] = ACTIONS(1405), + [anon_sym_PLUS_PLUS] = ACTIONS(1405), + [anon_sym_DASH_DASH] = ACTIONS(1405), + [anon_sym_true] = ACTIONS(1407), + [anon_sym_false] = ACTIONS(1407), + [anon_sym_PLUS] = ACTIONS(1403), + [anon_sym_DASH] = ACTIONS(1403), + [anon_sym_STAR] = ACTIONS(1409), + [anon_sym_CARET] = ACTIONS(1405), + [anon_sym_AMP] = ACTIONS(1405), + [anon_sym_this] = ACTIONS(1411), + [anon_sym_scoped] = ACTIONS(1413), + [anon_sym_base] = ACTIONS(1415), + [anon_sym_var] = ACTIONS(1417), + [sym_predefined_type] = ACTIONS(1419), + [anon_sym_unchecked] = ACTIONS(1401), + [anon_sym_yield] = ACTIONS(1387), + [anon_sym_default] = ACTIONS(1421), + [anon_sym_throw] = ACTIONS(1423), + [anon_sym_when] = ACTIONS(1387), + [anon_sym_await] = ACTIONS(1425), + [anon_sym_DOT_DOT] = ACTIONS(1427), + [anon_sym_from] = ACTIONS(1429), + [anon_sym_into] = ACTIONS(1387), + [anon_sym_join] = ACTIONS(1387), + [anon_sym_on] = ACTIONS(1387), + [anon_sym_equals] = ACTIONS(1387), + [anon_sym_let] = ACTIONS(1387), + [anon_sym_orderby] = ACTIONS(1387), + [anon_sym_ascending] = ACTIONS(1387), + [anon_sym_descending] = ACTIONS(1387), + [anon_sym_group] = ACTIONS(1387), + [anon_sym_by] = ACTIONS(1387), + [anon_sym_select] = ACTIONS(1387), + [anon_sym_stackalloc] = ACTIONS(1431), + [anon_sym_sizeof] = ACTIONS(1433), + [anon_sym_typeof] = ACTIONS(1435), + [anon_sym___makeref] = ACTIONS(1437), + [anon_sym___reftype] = ACTIONS(1439), + [anon_sym___refvalue] = ACTIONS(1441), + [sym_null_literal] = ACTIONS(1443), + [anon_sym_SQUOTE] = ACTIONS(1445), + [sym_integer_literal] = ACTIONS(1443), + [sym_real_literal] = ACTIONS(1447), + [anon_sym_DQUOTE] = ACTIONS(1449), + [sym_verbatim_string_literal] = ACTIONS(1447), + [aux_sym_preproc_if_token1] = ACTIONS(1451), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + [sym_interpolation_regular_start] = ACTIONS(1453), + [sym_interpolation_verbatim_start] = ACTIONS(1455), + [sym_interpolation_raw_start] = ACTIONS(1457), + [sym_raw_string_start] = ACTIONS(1459), + }, + [1716] = { + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(3182), + [sym__name] = STATE(5888), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2286), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2262), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(4322), + [sym_non_lvalue_expression] = STATE(4580), + [sym_lvalue_expression] = STATE(3192), + [sym__expression_statement_expression] = STATE(4573), + [sym_assignment_expression] = STATE(4581), + [sym_binary_expression] = STATE(4573), + [sym_postfix_unary_expression] = STATE(4581), + [sym_prefix_unary_expression] = STATE(4581), + [sym__pointer_indirection_expression] = STATE(3144), + [sym_query_expression] = STATE(4573), + [sym_from_clause] = STATE(6160), + [sym_conditional_expression] = STATE(4573), + [sym_conditional_access_expression] = STATE(4573), + [sym_as_expression] = STATE(4573), + [sym_is_expression] = STATE(4573), + [sym_is_pattern_expression] = STATE(4573), + [sym_cast_expression] = STATE(4573), + [sym_checked_expression] = STATE(4573), + [sym_invocation_expression] = STATE(4581), + [sym_switch_expression] = STATE(4573), + [sym_await_expression] = STATE(4581), + [sym_throw_expression] = STATE(4573), + [sym_element_access_expression] = STATE(3144), + [sym_interpolated_string_expression] = STATE(4573), + [sym_member_access_expression] = STATE(3144), + [sym_object_creation_expression] = STATE(4581), + [sym_parenthesized_expression] = STATE(4581), + [sym__parenthesized_lvalue_expression] = STATE(3144), + [sym_lambda_expression] = STATE(4573), + [sym__lambda_expression_init] = STATE(7491), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(4573), + [sym_anonymous_method_expression] = STATE(4573), + [sym_anonymous_object_creation_expression] = STATE(4573), + [sym_implicit_array_creation_expression] = STATE(4573), + [sym_implicit_object_creation_expression] = STATE(4573), + [sym_implicit_stackalloc_expression] = STATE(4573), + [sym_initializer_expression] = STATE(4573), + [sym_default_expression] = STATE(4573), + [sym_with_expression] = STATE(4573), + [sym_sizeof_expression] = STATE(4573), + [sym_typeof_expression] = STATE(4573), + [sym_makeref_expression] = STATE(4573), + [sym_ref_expression] = STATE(4573), + [sym_reftype_expression] = STATE(4573), + [sym_refvalue_expression] = STATE(4573), + [sym_stackalloc_expression] = STATE(4573), + [sym_range_expression] = STATE(4573), + [sym_tuple_expression] = STATE(3144), + [sym_literal] = STATE(4573), + [sym_character_literal] = STATE(4575), + [sym_string_literal] = STATE(4575), + [sym_raw_string_literal] = STATE(4575), + [sym_boolean_literal] = STATE(4575), + [sym_identifier] = STATE(2237), + [sym__reserved_identifier] = STATE(2229), + [sym_preproc_if_in_expression] = STATE(4573), + [sym_preproc_if_in_attribute_list] = STATE(5583), + [sym_preproc_region] = STATE(1716), + [sym_preproc_endregion] = STATE(1716), + [sym_preproc_line] = STATE(1716), + [sym_preproc_pragma] = STATE(1716), + [sym_preproc_nullable] = STATE(1716), + [sym_preproc_error] = STATE(1716), + [sym_preproc_warning] = STATE(1716), + [sym_preproc_define] = STATE(1716), + [sym_preproc_undef] = STATE(1716), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3501), + [sym__identifier_token] = ACTIONS(1385), + [anon_sym_alias] = ACTIONS(1387), + [anon_sym_global] = ACTIONS(1387), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1389), + [anon_sym_LPAREN] = ACTIONS(1391), + [anon_sym_ref] = ACTIONS(1393), + [anon_sym_LBRACE] = ACTIONS(1395), + [anon_sym_delegate] = ACTIONS(1397), + [anon_sym_async] = ACTIONS(1045), + [anon_sym_file] = ACTIONS(1387), + [anon_sym_new] = ACTIONS(1399), + [anon_sym_where] = ACTIONS(1387), + [anon_sym_notnull] = ACTIONS(1387), + [anon_sym_unmanaged] = ACTIONS(1387), + [anon_sym_checked] = ACTIONS(1401), + [anon_sym_BANG] = ACTIONS(1405), + [anon_sym_TILDE] = ACTIONS(1405), + [anon_sym_PLUS_PLUS] = ACTIONS(1405), + [anon_sym_DASH_DASH] = ACTIONS(1405), + [anon_sym_true] = ACTIONS(1407), + [anon_sym_false] = ACTIONS(1407), + [anon_sym_PLUS] = ACTIONS(1403), + [anon_sym_DASH] = ACTIONS(1403), + [anon_sym_STAR] = ACTIONS(1409), + [anon_sym_CARET] = ACTIONS(1405), + [anon_sym_AMP] = ACTIONS(1405), + [anon_sym_this] = ACTIONS(1411), + [anon_sym_scoped] = ACTIONS(1413), + [anon_sym_base] = ACTIONS(1415), + [anon_sym_var] = ACTIONS(1417), + [sym_predefined_type] = ACTIONS(1419), + [anon_sym_unchecked] = ACTIONS(1401), + [anon_sym_yield] = ACTIONS(1387), + [anon_sym_default] = ACTIONS(1421), + [anon_sym_throw] = ACTIONS(1423), + [anon_sym_when] = ACTIONS(1387), + [anon_sym_await] = ACTIONS(1425), + [anon_sym_DOT_DOT] = ACTIONS(1427), + [anon_sym_from] = ACTIONS(1429), + [anon_sym_into] = ACTIONS(1387), + [anon_sym_join] = ACTIONS(1387), + [anon_sym_on] = ACTIONS(1387), + [anon_sym_equals] = ACTIONS(1387), + [anon_sym_let] = ACTIONS(1387), + [anon_sym_orderby] = ACTIONS(1387), + [anon_sym_ascending] = ACTIONS(1387), + [anon_sym_descending] = ACTIONS(1387), + [anon_sym_group] = ACTIONS(1387), + [anon_sym_by] = ACTIONS(1387), + [anon_sym_select] = ACTIONS(1387), + [anon_sym_stackalloc] = ACTIONS(1431), + [anon_sym_sizeof] = ACTIONS(1433), + [anon_sym_typeof] = ACTIONS(1435), + [anon_sym___makeref] = ACTIONS(1437), + [anon_sym___reftype] = ACTIONS(1439), + [anon_sym___refvalue] = ACTIONS(1441), + [sym_null_literal] = ACTIONS(1443), + [anon_sym_SQUOTE] = ACTIONS(1445), + [sym_integer_literal] = ACTIONS(1443), + [sym_real_literal] = ACTIONS(1447), + [anon_sym_DQUOTE] = ACTIONS(1449), + [sym_verbatim_string_literal] = ACTIONS(1447), + [aux_sym_preproc_if_token1] = ACTIONS(1451), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + [sym_interpolation_regular_start] = ACTIONS(1453), + [sym_interpolation_verbatim_start] = ACTIONS(1455), + [sym_interpolation_raw_start] = ACTIONS(1457), + [sym_raw_string_start] = ACTIONS(1459), + }, + [1717] = { + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(3182), + [sym__name] = STATE(5888), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2286), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2262), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(4326), + [sym_non_lvalue_expression] = STATE(4580), + [sym_lvalue_expression] = STATE(3192), + [sym__expression_statement_expression] = STATE(4573), + [sym_assignment_expression] = STATE(4581), + [sym_binary_expression] = STATE(4573), + [sym_postfix_unary_expression] = STATE(4581), + [sym_prefix_unary_expression] = STATE(4581), + [sym__pointer_indirection_expression] = STATE(3144), + [sym_query_expression] = STATE(4573), + [sym_from_clause] = STATE(6160), + [sym_conditional_expression] = STATE(4573), + [sym_conditional_access_expression] = STATE(4573), + [sym_as_expression] = STATE(4573), + [sym_is_expression] = STATE(4573), + [sym_is_pattern_expression] = STATE(4573), + [sym_cast_expression] = STATE(4573), + [sym_checked_expression] = STATE(4573), + [sym_invocation_expression] = STATE(4581), + [sym_switch_expression] = STATE(4573), + [sym_await_expression] = STATE(4581), + [sym_throw_expression] = STATE(4573), + [sym_element_access_expression] = STATE(3144), + [sym_interpolated_string_expression] = STATE(4573), + [sym_member_access_expression] = STATE(3144), + [sym_object_creation_expression] = STATE(4581), + [sym_parenthesized_expression] = STATE(4581), + [sym__parenthesized_lvalue_expression] = STATE(3144), + [sym_lambda_expression] = STATE(4573), + [sym__lambda_expression_init] = STATE(7491), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(4573), + [sym_anonymous_method_expression] = STATE(4573), + [sym_anonymous_object_creation_expression] = STATE(4573), + [sym_implicit_array_creation_expression] = STATE(4573), + [sym_implicit_object_creation_expression] = STATE(4573), + [sym_implicit_stackalloc_expression] = STATE(4573), + [sym_initializer_expression] = STATE(4573), + [sym_default_expression] = STATE(4573), + [sym_with_expression] = STATE(4573), + [sym_sizeof_expression] = STATE(4573), + [sym_typeof_expression] = STATE(4573), + [sym_makeref_expression] = STATE(4573), + [sym_ref_expression] = STATE(4573), + [sym_reftype_expression] = STATE(4573), + [sym_refvalue_expression] = STATE(4573), + [sym_stackalloc_expression] = STATE(4573), + [sym_range_expression] = STATE(4573), + [sym_tuple_expression] = STATE(3144), + [sym_literal] = STATE(4573), + [sym_character_literal] = STATE(4575), + [sym_string_literal] = STATE(4575), + [sym_raw_string_literal] = STATE(4575), + [sym_boolean_literal] = STATE(4575), + [sym_identifier] = STATE(2237), + [sym__reserved_identifier] = STATE(2229), + [sym_preproc_if_in_expression] = STATE(4573), + [sym_preproc_if_in_attribute_list] = STATE(5583), + [sym_preproc_region] = STATE(1717), + [sym_preproc_endregion] = STATE(1717), + [sym_preproc_line] = STATE(1717), + [sym_preproc_pragma] = STATE(1717), + [sym_preproc_nullable] = STATE(1717), + [sym_preproc_error] = STATE(1717), + [sym_preproc_warning] = STATE(1717), + [sym_preproc_define] = STATE(1717), + [sym_preproc_undef] = STATE(1717), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3501), + [sym__identifier_token] = ACTIONS(1385), + [anon_sym_alias] = ACTIONS(1387), + [anon_sym_global] = ACTIONS(1387), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1389), + [anon_sym_LPAREN] = ACTIONS(1391), + [anon_sym_ref] = ACTIONS(1393), + [anon_sym_LBRACE] = ACTIONS(1395), + [anon_sym_delegate] = ACTIONS(1397), + [anon_sym_async] = ACTIONS(1045), + [anon_sym_file] = ACTIONS(1387), + [anon_sym_new] = ACTIONS(1399), + [anon_sym_where] = ACTIONS(1387), + [anon_sym_notnull] = ACTIONS(1387), + [anon_sym_unmanaged] = ACTIONS(1387), + [anon_sym_checked] = ACTIONS(1401), + [anon_sym_BANG] = ACTIONS(1405), + [anon_sym_TILDE] = ACTIONS(1405), + [anon_sym_PLUS_PLUS] = ACTIONS(1405), + [anon_sym_DASH_DASH] = ACTIONS(1405), + [anon_sym_true] = ACTIONS(1407), + [anon_sym_false] = ACTIONS(1407), + [anon_sym_PLUS] = ACTIONS(1403), + [anon_sym_DASH] = ACTIONS(1403), + [anon_sym_STAR] = ACTIONS(1409), + [anon_sym_CARET] = ACTIONS(1405), + [anon_sym_AMP] = ACTIONS(1405), + [anon_sym_this] = ACTIONS(1411), + [anon_sym_scoped] = ACTIONS(1413), + [anon_sym_base] = ACTIONS(1415), + [anon_sym_var] = ACTIONS(1417), + [sym_predefined_type] = ACTIONS(1419), + [anon_sym_unchecked] = ACTIONS(1401), + [anon_sym_yield] = ACTIONS(1387), + [anon_sym_default] = ACTIONS(1421), + [anon_sym_throw] = ACTIONS(1423), + [anon_sym_when] = ACTIONS(1387), + [anon_sym_await] = ACTIONS(1425), + [anon_sym_DOT_DOT] = ACTIONS(1427), + [anon_sym_from] = ACTIONS(1429), + [anon_sym_into] = ACTIONS(1387), + [anon_sym_join] = ACTIONS(1387), + [anon_sym_on] = ACTIONS(1387), + [anon_sym_equals] = ACTIONS(1387), + [anon_sym_let] = ACTIONS(1387), + [anon_sym_orderby] = ACTIONS(1387), + [anon_sym_ascending] = ACTIONS(1387), + [anon_sym_descending] = ACTIONS(1387), + [anon_sym_group] = ACTIONS(1387), + [anon_sym_by] = ACTIONS(1387), + [anon_sym_select] = ACTIONS(1387), + [anon_sym_stackalloc] = ACTIONS(1431), + [anon_sym_sizeof] = ACTIONS(1433), + [anon_sym_typeof] = ACTIONS(1435), + [anon_sym___makeref] = ACTIONS(1437), + [anon_sym___reftype] = ACTIONS(1439), + [anon_sym___refvalue] = ACTIONS(1441), + [sym_null_literal] = ACTIONS(1443), + [anon_sym_SQUOTE] = ACTIONS(1445), + [sym_integer_literal] = ACTIONS(1443), + [sym_real_literal] = ACTIONS(1447), + [anon_sym_DQUOTE] = ACTIONS(1449), + [sym_verbatim_string_literal] = ACTIONS(1447), + [aux_sym_preproc_if_token1] = ACTIONS(1451), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + [sym_interpolation_regular_start] = ACTIONS(1453), + [sym_interpolation_verbatim_start] = ACTIONS(1455), + [sym_interpolation_raw_start] = ACTIONS(1457), + [sym_raw_string_start] = ACTIONS(1459), + }, + [1718] = { + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(3182), + [sym__name] = STATE(5888), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2286), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2262), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(4327), + [sym_non_lvalue_expression] = STATE(4580), + [sym_lvalue_expression] = STATE(3192), + [sym__expression_statement_expression] = STATE(4573), + [sym_assignment_expression] = STATE(4581), + [sym_binary_expression] = STATE(4573), + [sym_postfix_unary_expression] = STATE(4581), + [sym_prefix_unary_expression] = STATE(4581), + [sym__pointer_indirection_expression] = STATE(3144), + [sym_query_expression] = STATE(4573), + [sym_from_clause] = STATE(6160), + [sym_conditional_expression] = STATE(4573), + [sym_conditional_access_expression] = STATE(4573), + [sym_as_expression] = STATE(4573), + [sym_is_expression] = STATE(4573), + [sym_is_pattern_expression] = STATE(4573), + [sym_cast_expression] = STATE(4573), + [sym_checked_expression] = STATE(4573), + [sym_invocation_expression] = STATE(4581), + [sym_switch_expression] = STATE(4573), + [sym_await_expression] = STATE(4581), + [sym_throw_expression] = STATE(4573), + [sym_element_access_expression] = STATE(3144), + [sym_interpolated_string_expression] = STATE(4573), + [sym_member_access_expression] = STATE(3144), + [sym_object_creation_expression] = STATE(4581), + [sym_parenthesized_expression] = STATE(4581), + [sym__parenthesized_lvalue_expression] = STATE(3144), + [sym_lambda_expression] = STATE(4573), + [sym__lambda_expression_init] = STATE(7491), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(4573), + [sym_anonymous_method_expression] = STATE(4573), + [sym_anonymous_object_creation_expression] = STATE(4573), + [sym_implicit_array_creation_expression] = STATE(4573), + [sym_implicit_object_creation_expression] = STATE(4573), + [sym_implicit_stackalloc_expression] = STATE(4573), + [sym_initializer_expression] = STATE(4573), + [sym_default_expression] = STATE(4573), + [sym_with_expression] = STATE(4573), + [sym_sizeof_expression] = STATE(4573), + [sym_typeof_expression] = STATE(4573), + [sym_makeref_expression] = STATE(4573), + [sym_ref_expression] = STATE(4573), + [sym_reftype_expression] = STATE(4573), + [sym_refvalue_expression] = STATE(4573), + [sym_stackalloc_expression] = STATE(4573), + [sym_range_expression] = STATE(4573), + [sym_tuple_expression] = STATE(3144), + [sym_literal] = STATE(4573), + [sym_character_literal] = STATE(4575), + [sym_string_literal] = STATE(4575), + [sym_raw_string_literal] = STATE(4575), + [sym_boolean_literal] = STATE(4575), + [sym_identifier] = STATE(2237), + [sym__reserved_identifier] = STATE(2229), + [sym_preproc_if_in_expression] = STATE(4573), + [sym_preproc_if_in_attribute_list] = STATE(5583), + [sym_preproc_region] = STATE(1718), + [sym_preproc_endregion] = STATE(1718), + [sym_preproc_line] = STATE(1718), + [sym_preproc_pragma] = STATE(1718), + [sym_preproc_nullable] = STATE(1718), + [sym_preproc_error] = STATE(1718), + [sym_preproc_warning] = STATE(1718), + [sym_preproc_define] = STATE(1718), + [sym_preproc_undef] = STATE(1718), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3501), + [sym__identifier_token] = ACTIONS(1385), + [anon_sym_alias] = ACTIONS(1387), + [anon_sym_global] = ACTIONS(1387), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1389), + [anon_sym_LPAREN] = ACTIONS(1391), + [anon_sym_ref] = ACTIONS(1393), + [anon_sym_LBRACE] = ACTIONS(1395), + [anon_sym_delegate] = ACTIONS(1397), + [anon_sym_async] = ACTIONS(1045), + [anon_sym_file] = ACTIONS(1387), + [anon_sym_new] = ACTIONS(1399), + [anon_sym_where] = ACTIONS(1387), + [anon_sym_notnull] = ACTIONS(1387), + [anon_sym_unmanaged] = ACTIONS(1387), + [anon_sym_checked] = ACTIONS(1401), + [anon_sym_BANG] = ACTIONS(1405), + [anon_sym_TILDE] = ACTIONS(1405), + [anon_sym_PLUS_PLUS] = ACTIONS(1405), + [anon_sym_DASH_DASH] = ACTIONS(1405), + [anon_sym_true] = ACTIONS(1407), + [anon_sym_false] = ACTIONS(1407), + [anon_sym_PLUS] = ACTIONS(1403), + [anon_sym_DASH] = ACTIONS(1403), + [anon_sym_STAR] = ACTIONS(1409), + [anon_sym_CARET] = ACTIONS(1405), + [anon_sym_AMP] = ACTIONS(1405), + [anon_sym_this] = ACTIONS(1411), + [anon_sym_scoped] = ACTIONS(1413), + [anon_sym_base] = ACTIONS(1415), + [anon_sym_var] = ACTIONS(1417), + [sym_predefined_type] = ACTIONS(1419), + [anon_sym_unchecked] = ACTIONS(1401), + [anon_sym_yield] = ACTIONS(1387), + [anon_sym_default] = ACTIONS(1421), + [anon_sym_throw] = ACTIONS(1423), + [anon_sym_when] = ACTIONS(1387), + [anon_sym_await] = ACTIONS(1425), + [anon_sym_DOT_DOT] = ACTIONS(1427), + [anon_sym_from] = ACTIONS(1429), + [anon_sym_into] = ACTIONS(1387), + [anon_sym_join] = ACTIONS(1387), + [anon_sym_on] = ACTIONS(1387), + [anon_sym_equals] = ACTIONS(1387), + [anon_sym_let] = ACTIONS(1387), + [anon_sym_orderby] = ACTIONS(1387), + [anon_sym_ascending] = ACTIONS(1387), + [anon_sym_descending] = ACTIONS(1387), + [anon_sym_group] = ACTIONS(1387), + [anon_sym_by] = ACTIONS(1387), + [anon_sym_select] = ACTIONS(1387), + [anon_sym_stackalloc] = ACTIONS(1431), + [anon_sym_sizeof] = ACTIONS(1433), + [anon_sym_typeof] = ACTIONS(1435), + [anon_sym___makeref] = ACTIONS(1437), + [anon_sym___reftype] = ACTIONS(1439), + [anon_sym___refvalue] = ACTIONS(1441), + [sym_null_literal] = ACTIONS(1443), + [anon_sym_SQUOTE] = ACTIONS(1445), + [sym_integer_literal] = ACTIONS(1443), + [sym_real_literal] = ACTIONS(1447), + [anon_sym_DQUOTE] = ACTIONS(1449), + [sym_verbatim_string_literal] = ACTIONS(1447), + [aux_sym_preproc_if_token1] = ACTIONS(1451), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + [sym_interpolation_regular_start] = ACTIONS(1453), + [sym_interpolation_verbatim_start] = ACTIONS(1455), + [sym_interpolation_raw_start] = ACTIONS(1457), + [sym_raw_string_start] = ACTIONS(1459), + }, + [1719] = { + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(3182), + [sym__name] = STATE(5888), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2286), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2262), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(4329), + [sym_non_lvalue_expression] = STATE(4580), + [sym_lvalue_expression] = STATE(3192), + [sym__expression_statement_expression] = STATE(4573), + [sym_assignment_expression] = STATE(4581), + [sym_binary_expression] = STATE(4573), + [sym_postfix_unary_expression] = STATE(4581), + [sym_prefix_unary_expression] = STATE(4581), + [sym__pointer_indirection_expression] = STATE(3144), + [sym_query_expression] = STATE(4573), + [sym_from_clause] = STATE(6160), + [sym_conditional_expression] = STATE(4573), + [sym_conditional_access_expression] = STATE(4573), + [sym_as_expression] = STATE(4573), + [sym_is_expression] = STATE(4573), + [sym_is_pattern_expression] = STATE(4573), + [sym_cast_expression] = STATE(4573), + [sym_checked_expression] = STATE(4573), + [sym_invocation_expression] = STATE(4581), + [sym_switch_expression] = STATE(4573), + [sym_await_expression] = STATE(4581), + [sym_throw_expression] = STATE(4573), + [sym_element_access_expression] = STATE(3144), + [sym_interpolated_string_expression] = STATE(4573), + [sym_member_access_expression] = STATE(3144), + [sym_object_creation_expression] = STATE(4581), + [sym_parenthesized_expression] = STATE(4581), + [sym__parenthesized_lvalue_expression] = STATE(3144), + [sym_lambda_expression] = STATE(4573), + [sym__lambda_expression_init] = STATE(7491), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(4573), + [sym_anonymous_method_expression] = STATE(4573), + [sym_anonymous_object_creation_expression] = STATE(4573), + [sym_implicit_array_creation_expression] = STATE(4573), + [sym_implicit_object_creation_expression] = STATE(4573), + [sym_implicit_stackalloc_expression] = STATE(4573), + [sym_initializer_expression] = STATE(4573), + [sym_default_expression] = STATE(4573), + [sym_with_expression] = STATE(4573), + [sym_sizeof_expression] = STATE(4573), + [sym_typeof_expression] = STATE(4573), + [sym_makeref_expression] = STATE(4573), + [sym_ref_expression] = STATE(4573), + [sym_reftype_expression] = STATE(4573), + [sym_refvalue_expression] = STATE(4573), + [sym_stackalloc_expression] = STATE(4573), + [sym_range_expression] = STATE(4573), + [sym_tuple_expression] = STATE(3144), + [sym_literal] = STATE(4573), + [sym_character_literal] = STATE(4575), + [sym_string_literal] = STATE(4575), + [sym_raw_string_literal] = STATE(4575), + [sym_boolean_literal] = STATE(4575), + [sym_identifier] = STATE(2237), + [sym__reserved_identifier] = STATE(2229), + [sym_preproc_if_in_expression] = STATE(4573), + [sym_preproc_if_in_attribute_list] = STATE(5583), + [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(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3501), + [sym__identifier_token] = ACTIONS(1385), + [anon_sym_alias] = ACTIONS(1387), + [anon_sym_global] = ACTIONS(1387), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1389), + [anon_sym_LPAREN] = ACTIONS(1391), + [anon_sym_ref] = ACTIONS(1393), + [anon_sym_LBRACE] = ACTIONS(1395), + [anon_sym_delegate] = ACTIONS(1397), + [anon_sym_async] = ACTIONS(1045), + [anon_sym_file] = ACTIONS(1387), + [anon_sym_new] = ACTIONS(1399), + [anon_sym_where] = ACTIONS(1387), + [anon_sym_notnull] = ACTIONS(1387), + [anon_sym_unmanaged] = ACTIONS(1387), + [anon_sym_checked] = ACTIONS(1401), + [anon_sym_BANG] = ACTIONS(1405), + [anon_sym_TILDE] = ACTIONS(1405), + [anon_sym_PLUS_PLUS] = ACTIONS(1405), + [anon_sym_DASH_DASH] = ACTIONS(1405), + [anon_sym_true] = ACTIONS(1407), + [anon_sym_false] = ACTIONS(1407), + [anon_sym_PLUS] = ACTIONS(1403), + [anon_sym_DASH] = ACTIONS(1403), + [anon_sym_STAR] = ACTIONS(1409), + [anon_sym_CARET] = ACTIONS(1405), + [anon_sym_AMP] = ACTIONS(1405), + [anon_sym_this] = ACTIONS(1411), + [anon_sym_scoped] = ACTIONS(1413), + [anon_sym_base] = ACTIONS(1415), + [anon_sym_var] = ACTIONS(1417), + [sym_predefined_type] = ACTIONS(1419), + [anon_sym_unchecked] = ACTIONS(1401), + [anon_sym_yield] = ACTIONS(1387), + [anon_sym_default] = ACTIONS(1421), + [anon_sym_throw] = ACTIONS(1423), + [anon_sym_when] = ACTIONS(1387), + [anon_sym_await] = ACTIONS(1425), + [anon_sym_DOT_DOT] = ACTIONS(1427), + [anon_sym_from] = ACTIONS(1429), + [anon_sym_into] = ACTIONS(1387), + [anon_sym_join] = ACTIONS(1387), + [anon_sym_on] = ACTIONS(1387), + [anon_sym_equals] = ACTIONS(1387), + [anon_sym_let] = ACTIONS(1387), + [anon_sym_orderby] = ACTIONS(1387), + [anon_sym_ascending] = ACTIONS(1387), + [anon_sym_descending] = ACTIONS(1387), + [anon_sym_group] = ACTIONS(1387), + [anon_sym_by] = ACTIONS(1387), + [anon_sym_select] = ACTIONS(1387), + [anon_sym_stackalloc] = ACTIONS(1431), + [anon_sym_sizeof] = ACTIONS(1433), + [anon_sym_typeof] = ACTIONS(1435), + [anon_sym___makeref] = ACTIONS(1437), + [anon_sym___reftype] = ACTIONS(1439), + [anon_sym___refvalue] = ACTIONS(1441), + [sym_null_literal] = ACTIONS(1443), + [anon_sym_SQUOTE] = ACTIONS(1445), + [sym_integer_literal] = ACTIONS(1443), + [sym_real_literal] = ACTIONS(1447), + [anon_sym_DQUOTE] = ACTIONS(1449), + [sym_verbatim_string_literal] = ACTIONS(1447), + [aux_sym_preproc_if_token1] = ACTIONS(1451), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + [sym_interpolation_regular_start] = ACTIONS(1453), + [sym_interpolation_verbatim_start] = ACTIONS(1455), + [sym_interpolation_raw_start] = ACTIONS(1457), + [sym_raw_string_start] = ACTIONS(1459), + }, + [1720] = { + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(3182), + [sym__name] = STATE(5888), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2286), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2262), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(4294), + [sym_non_lvalue_expression] = STATE(4580), + [sym_lvalue_expression] = STATE(3192), + [sym__expression_statement_expression] = STATE(4573), + [sym_assignment_expression] = STATE(4581), + [sym_binary_expression] = STATE(4573), + [sym_postfix_unary_expression] = STATE(4581), + [sym_prefix_unary_expression] = STATE(4581), + [sym__pointer_indirection_expression] = STATE(3144), + [sym_query_expression] = STATE(4573), + [sym_from_clause] = STATE(6160), + [sym_conditional_expression] = STATE(4573), + [sym_conditional_access_expression] = STATE(4573), + [sym_as_expression] = STATE(4573), + [sym_is_expression] = STATE(4573), + [sym_is_pattern_expression] = STATE(4573), + [sym_cast_expression] = STATE(4573), + [sym_checked_expression] = STATE(4573), + [sym_invocation_expression] = STATE(4581), + [sym_switch_expression] = STATE(4573), + [sym_await_expression] = STATE(4581), + [sym_throw_expression] = STATE(4573), + [sym_element_access_expression] = STATE(3144), + [sym_interpolated_string_expression] = STATE(4573), + [sym_member_access_expression] = STATE(3144), + [sym_object_creation_expression] = STATE(4581), + [sym_parenthesized_expression] = STATE(4581), + [sym__parenthesized_lvalue_expression] = STATE(3144), + [sym_lambda_expression] = STATE(4573), + [sym__lambda_expression_init] = STATE(7491), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(4573), + [sym_anonymous_method_expression] = STATE(4573), + [sym_anonymous_object_creation_expression] = STATE(4573), + [sym_implicit_array_creation_expression] = STATE(4573), + [sym_implicit_object_creation_expression] = STATE(4573), + [sym_implicit_stackalloc_expression] = STATE(4573), + [sym_initializer_expression] = STATE(4573), + [sym_default_expression] = STATE(4573), + [sym_with_expression] = STATE(4573), + [sym_sizeof_expression] = STATE(4573), + [sym_typeof_expression] = STATE(4573), + [sym_makeref_expression] = STATE(4573), + [sym_ref_expression] = STATE(4573), + [sym_reftype_expression] = STATE(4573), + [sym_refvalue_expression] = STATE(4573), + [sym_stackalloc_expression] = STATE(4573), + [sym_range_expression] = STATE(4573), + [sym_tuple_expression] = STATE(3144), + [sym_literal] = STATE(4573), + [sym_character_literal] = STATE(4575), + [sym_string_literal] = STATE(4575), + [sym_raw_string_literal] = STATE(4575), + [sym_boolean_literal] = STATE(4575), + [sym_identifier] = STATE(2237), + [sym__reserved_identifier] = STATE(2229), + [sym_preproc_if_in_expression] = STATE(4573), + [sym_preproc_if_in_attribute_list] = STATE(5583), + [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(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3501), + [sym__identifier_token] = ACTIONS(1385), + [anon_sym_alias] = ACTIONS(1387), + [anon_sym_global] = ACTIONS(1387), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1389), + [anon_sym_LPAREN] = ACTIONS(1391), + [anon_sym_ref] = ACTIONS(1393), + [anon_sym_LBRACE] = ACTIONS(1395), + [anon_sym_delegate] = ACTIONS(1397), + [anon_sym_async] = ACTIONS(1045), + [anon_sym_file] = ACTIONS(1387), + [anon_sym_new] = ACTIONS(1399), + [anon_sym_where] = ACTIONS(1387), + [anon_sym_notnull] = ACTIONS(1387), + [anon_sym_unmanaged] = ACTIONS(1387), + [anon_sym_checked] = ACTIONS(1401), + [anon_sym_BANG] = ACTIONS(1405), + [anon_sym_TILDE] = ACTIONS(1405), + [anon_sym_PLUS_PLUS] = ACTIONS(1405), + [anon_sym_DASH_DASH] = ACTIONS(1405), + [anon_sym_true] = ACTIONS(1407), + [anon_sym_false] = ACTIONS(1407), + [anon_sym_PLUS] = ACTIONS(1403), + [anon_sym_DASH] = ACTIONS(1403), + [anon_sym_STAR] = ACTIONS(1409), + [anon_sym_CARET] = ACTIONS(1405), + [anon_sym_AMP] = ACTIONS(1405), + [anon_sym_this] = ACTIONS(1411), + [anon_sym_scoped] = ACTIONS(1413), + [anon_sym_base] = ACTIONS(1415), + [anon_sym_var] = ACTIONS(1417), + [sym_predefined_type] = ACTIONS(1419), + [anon_sym_unchecked] = ACTIONS(1401), + [anon_sym_yield] = ACTIONS(1387), + [anon_sym_default] = ACTIONS(1421), + [anon_sym_throw] = ACTIONS(1423), + [anon_sym_when] = ACTIONS(1387), + [anon_sym_await] = ACTIONS(1425), + [anon_sym_DOT_DOT] = ACTIONS(1427), + [anon_sym_from] = ACTIONS(1429), + [anon_sym_into] = ACTIONS(1387), + [anon_sym_join] = ACTIONS(1387), + [anon_sym_on] = ACTIONS(1387), + [anon_sym_equals] = ACTIONS(1387), + [anon_sym_let] = ACTIONS(1387), + [anon_sym_orderby] = ACTIONS(1387), + [anon_sym_ascending] = ACTIONS(1387), + [anon_sym_descending] = ACTIONS(1387), + [anon_sym_group] = ACTIONS(1387), + [anon_sym_by] = ACTIONS(1387), + [anon_sym_select] = ACTIONS(1387), + [anon_sym_stackalloc] = ACTIONS(1431), + [anon_sym_sizeof] = ACTIONS(1433), + [anon_sym_typeof] = ACTIONS(1435), + [anon_sym___makeref] = ACTIONS(1437), + [anon_sym___reftype] = ACTIONS(1439), + [anon_sym___refvalue] = ACTIONS(1441), + [sym_null_literal] = ACTIONS(1443), + [anon_sym_SQUOTE] = ACTIONS(1445), + [sym_integer_literal] = ACTIONS(1443), + [sym_real_literal] = ACTIONS(1447), + [anon_sym_DQUOTE] = ACTIONS(1449), + [sym_verbatim_string_literal] = ACTIONS(1447), + [aux_sym_preproc_if_token1] = ACTIONS(1451), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + [sym_interpolation_regular_start] = ACTIONS(1453), + [sym_interpolation_verbatim_start] = ACTIONS(1455), + [sym_interpolation_raw_start] = ACTIONS(1457), + [sym_raw_string_start] = ACTIONS(1459), + }, + [1721] = { + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2416), + [sym__name] = STATE(5890), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2193), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(4084), + [sym_non_lvalue_expression] = STATE(3040), + [sym_lvalue_expression] = STATE(3109), + [sym__expression_statement_expression] = STATE(3035), + [sym_assignment_expression] = STATE(3043), + [sym_binary_expression] = STATE(3035), + [sym_postfix_unary_expression] = STATE(3043), + [sym_prefix_unary_expression] = STATE(3043), + [sym__pointer_indirection_expression] = STATE(2415), + [sym_query_expression] = STATE(3035), + [sym_from_clause] = STATE(6138), + [sym_conditional_expression] = STATE(3035), + [sym_conditional_access_expression] = STATE(3035), + [sym_as_expression] = STATE(3035), + [sym_is_expression] = STATE(3035), + [sym_is_pattern_expression] = STATE(3035), + [sym_cast_expression] = STATE(3035), + [sym_checked_expression] = STATE(3035), + [sym_invocation_expression] = STATE(3043), + [sym_switch_expression] = STATE(3035), + [sym_await_expression] = STATE(3043), + [sym_throw_expression] = STATE(3035), + [sym_element_access_expression] = STATE(2415), + [sym_interpolated_string_expression] = STATE(3035), + [sym_member_access_expression] = STATE(2415), + [sym_object_creation_expression] = STATE(3043), + [sym_parenthesized_expression] = STATE(3043), + [sym__parenthesized_lvalue_expression] = STATE(2415), + [sym_lambda_expression] = STATE(3035), + [sym__lambda_expression_init] = STATE(7374), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3035), + [sym_anonymous_method_expression] = STATE(3035), + [sym_anonymous_object_creation_expression] = STATE(3035), + [sym_implicit_array_creation_expression] = STATE(3035), + [sym_implicit_object_creation_expression] = STATE(3035), + [sym_implicit_stackalloc_expression] = STATE(3035), + [sym_initializer_expression] = STATE(3035), + [sym_default_expression] = STATE(3035), + [sym_with_expression] = STATE(3035), + [sym_sizeof_expression] = STATE(3035), + [sym_typeof_expression] = STATE(3035), + [sym_makeref_expression] = STATE(3035), + [sym_ref_expression] = STATE(3035), + [sym_reftype_expression] = STATE(3035), + [sym_refvalue_expression] = STATE(3035), + [sym_stackalloc_expression] = STATE(3035), + [sym_range_expression] = STATE(3035), + [sym_tuple_expression] = STATE(2415), + [sym_literal] = STATE(3035), + [sym_character_literal] = STATE(3037), + [sym_string_literal] = STATE(3037), + [sym_raw_string_literal] = STATE(3037), + [sym_boolean_literal] = STATE(3037), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3035), + [sym_preproc_if_in_attribute_list] = STATE(5583), + [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(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3455), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1241), - [anon_sym_LPAREN] = ACTIONS(2195), - [anon_sym_ref] = ACTIONS(2197), - [anon_sym_LBRACE] = ACTIONS(1247), - [anon_sym_delegate] = ACTIONS(1249), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1239), + [anon_sym_LPAREN] = ACTIONS(1241), + [anon_sym_ref] = ACTIONS(1243), + [anon_sym_LBRACE] = ACTIONS(1245), + [anon_sym_delegate] = ACTIONS(1247), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1845), + [anon_sym_new] = ACTIONS(1249), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1253), - [anon_sym_BANG] = ACTIONS(2201), - [anon_sym_TILDE] = ACTIONS(2201), - [anon_sym_PLUS_PLUS] = ACTIONS(2201), - [anon_sym_DASH_DASH] = ACTIONS(2201), - [anon_sym_true] = ACTIONS(1259), - [anon_sym_false] = ACTIONS(1259), - [anon_sym_PLUS] = ACTIONS(2199), - [anon_sym_DASH] = ACTIONS(2199), - [anon_sym_STAR] = ACTIONS(1851), - [anon_sym_CARET] = ACTIONS(2201), - [anon_sym_AMP] = ACTIONS(2201), - [anon_sym_this] = ACTIONS(1263), + [anon_sym_checked] = ACTIONS(1251), + [anon_sym_BANG] = ACTIONS(1255), + [anon_sym_TILDE] = ACTIONS(1255), + [anon_sym_PLUS_PLUS] = ACTIONS(1255), + [anon_sym_DASH_DASH] = ACTIONS(1255), + [anon_sym_true] = ACTIONS(1257), + [anon_sym_false] = ACTIONS(1257), + [anon_sym_PLUS] = ACTIONS(1253), + [anon_sym_DASH] = ACTIONS(1253), + [anon_sym_STAR] = ACTIONS(1259), + [anon_sym_CARET] = ACTIONS(1255), + [anon_sym_AMP] = ACTIONS(1255), + [anon_sym_this] = ACTIONS(1261), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1265), + [anon_sym_base] = ACTIONS(1263), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1267), - [anon_sym_unchecked] = ACTIONS(1253), + [sym_predefined_type] = ACTIONS(1265), + [anon_sym_unchecked] = ACTIONS(1251), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1269), - [anon_sym_throw] = ACTIONS(2203), + [anon_sym_default] = ACTIONS(1267), + [anon_sym_throw] = ACTIONS(1269), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2205), - [anon_sym_DOT_DOT] = ACTIONS(2207), + [anon_sym_await] = ACTIONS(1271), + [anon_sym_DOT_DOT] = ACTIONS(1273), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -330057,19 +332647,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1277), - [anon_sym_sizeof] = ACTIONS(1279), - [anon_sym_typeof] = ACTIONS(1281), - [anon_sym___makeref] = ACTIONS(1283), - [anon_sym___reftype] = ACTIONS(1285), - [anon_sym___refvalue] = ACTIONS(1287), - [sym_null_literal] = ACTIONS(1289), - [anon_sym_SQUOTE] = ACTIONS(1291), - [sym_integer_literal] = ACTIONS(1289), - [sym_real_literal] = ACTIONS(1293), - [anon_sym_DQUOTE] = ACTIONS(1295), - [sym_verbatim_string_literal] = ACTIONS(1293), - [aux_sym_preproc_if_token1] = ACTIONS(1297), + [anon_sym_stackalloc] = ACTIONS(1275), + [anon_sym_sizeof] = ACTIONS(1277), + [anon_sym_typeof] = ACTIONS(1279), + [anon_sym___makeref] = ACTIONS(1281), + [anon_sym___reftype] = ACTIONS(1283), + [anon_sym___refvalue] = ACTIONS(1285), + [sym_null_literal] = ACTIONS(1287), + [anon_sym_SQUOTE] = ACTIONS(1289), + [sym_integer_literal] = ACTIONS(1287), + [sym_real_literal] = ACTIONS(1291), + [anon_sym_DQUOTE] = ACTIONS(1293), + [sym_verbatim_string_literal] = ACTIONS(1291), + [aux_sym_preproc_if_token1] = ACTIONS(1295), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -330080,140 +332670,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(1299), - [sym_interpolation_verbatim_start] = ACTIONS(1301), - [sym_interpolation_raw_start] = ACTIONS(1303), - [sym_raw_string_start] = ACTIONS(1305), + [sym_interpolation_regular_start] = ACTIONS(1297), + [sym_interpolation_verbatim_start] = ACTIONS(1299), + [sym_interpolation_raw_start] = ACTIONS(1301), + [sym_raw_string_start] = ACTIONS(1303), }, - [1706] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(5910), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2247), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(5508), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3379), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3080), - [sym_postfix_unary_expression] = STATE(3111), - [sym_prefix_unary_expression] = STATE(3111), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6154), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3080), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3111), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3080), - [sym_member_access_expression] = STATE(2484), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3111), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7575), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(3080), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3080), - [sym_typeof_expression] = STATE(3080), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2484), - [sym_literal] = STATE(3080), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), - [sym_preproc_region] = STATE(1706), - [sym_preproc_endregion] = STATE(1706), - [sym_preproc_line] = STATE(1706), - [sym_preproc_pragma] = STATE(1706), - [sym_preproc_nullable] = STATE(1706), - [sym_preproc_error] = STATE(1706), - [sym_preproc_warning] = STATE(1706), - [sym_preproc_define] = STATE(1706), - [sym_preproc_undef] = STATE(1706), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [1722] = { + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(5152), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2196), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(5399), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3640), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3102), + [sym_postfix_unary_expression] = STATE(3079), + [sym_prefix_unary_expression] = STATE(3079), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6137), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3102), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3079), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3102), + [sym_member_access_expression] = STATE(2472), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3079), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7645), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(3102), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3102), + [sym_typeof_expression] = STATE(3102), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2472), + [sym_literal] = STATE(3102), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), + [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(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1481), - [anon_sym_LPAREN] = ACTIONS(895), - [anon_sym_ref] = ACTIONS(897), - [anon_sym_LBRACE] = ACTIONS(1487), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1479), + [anon_sym_LPAREN] = ACTIONS(2081), + [anon_sym_ref] = ACTIONS(2083), + [anon_sym_LBRACE] = ACTIONS(1481), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1061), + [anon_sym_new] = ACTIONS(1059), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1067), - [anon_sym_BANG] = ACTIONS(1495), - [anon_sym_TILDE] = ACTIONS(1495), - [anon_sym_PLUS_PLUS] = ACTIONS(1495), - [anon_sym_DASH_DASH] = ACTIONS(1495), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(2087), + [anon_sym_TILDE] = ACTIONS(2087), + [anon_sym_PLUS_PLUS] = ACTIONS(2087), + [anon_sym_DASH_DASH] = ACTIONS(2087), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1493), - [anon_sym_DASH] = ACTIONS(1493), - [anon_sym_STAR] = ACTIONS(905), - [anon_sym_CARET] = ACTIONS(1495), - [anon_sym_AMP] = ACTIONS(1495), + [anon_sym_PLUS] = ACTIONS(2085), + [anon_sym_DASH] = ACTIONS(2085), + [anon_sym_STAR] = ACTIONS(81), + [anon_sym_CARET] = ACTIONS(2087), + [anon_sym_AMP] = ACTIONS(2087), [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(1067), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1079), + [anon_sym_throw] = ACTIONS(2089), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1081), - [anon_sym_DOT_DOT] = ACTIONS(911), + [anon_sym_await] = ACTIONS(2091), + [anon_sym_DOT_DOT] = ACTIONS(2093), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -330238,7 +332828,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(1089), + [aux_sym_preproc_if_token1] = ACTIONS(2095), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -330254,135 +332844,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), }, - [1707] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2762), - [sym__name] = STATE(5910), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2247), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(4186), - [sym_non_lvalue_expression] = STATE(3438), - [sym_lvalue_expression] = STATE(3136), - [sym__expression_statement_expression] = STATE(3362), - [sym_assignment_expression] = STATE(3449), - [sym_binary_expression] = STATE(3362), - [sym_postfix_unary_expression] = STATE(3449), - [sym_prefix_unary_expression] = STATE(3449), - [sym__pointer_indirection_expression] = STATE(2747), - [sym_query_expression] = STATE(3362), - [sym_from_clause] = STATE(6171), - [sym_conditional_expression] = STATE(3362), - [sym_conditional_access_expression] = STATE(3362), - [sym_as_expression] = STATE(3362), - [sym_is_expression] = STATE(3362), - [sym_is_pattern_expression] = STATE(3362), - [sym_cast_expression] = STATE(3362), - [sym_checked_expression] = STATE(3362), - [sym_invocation_expression] = STATE(3449), - [sym_switch_expression] = STATE(3362), - [sym_await_expression] = STATE(3449), - [sym_throw_expression] = STATE(3362), - [sym_element_access_expression] = STATE(2747), - [sym_interpolated_string_expression] = STATE(3362), - [sym_member_access_expression] = STATE(2747), - [sym_object_creation_expression] = STATE(3449), - [sym_parenthesized_expression] = STATE(3449), - [sym__parenthesized_lvalue_expression] = STATE(2747), - [sym_lambda_expression] = STATE(3362), - [sym__lambda_expression_init] = STATE(7452), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3362), - [sym_anonymous_method_expression] = STATE(3362), - [sym_anonymous_object_creation_expression] = STATE(3362), - [sym_implicit_array_creation_expression] = STATE(3362), - [sym_implicit_object_creation_expression] = STATE(3362), - [sym_implicit_stackalloc_expression] = STATE(3362), - [sym_initializer_expression] = STATE(3362), - [sym_default_expression] = STATE(3362), - [sym_with_expression] = STATE(3362), - [sym_sizeof_expression] = STATE(3362), - [sym_typeof_expression] = STATE(3362), - [sym_makeref_expression] = STATE(3362), - [sym_ref_expression] = STATE(3362), - [sym_reftype_expression] = STATE(3362), - [sym_refvalue_expression] = STATE(3362), - [sym_stackalloc_expression] = STATE(3362), - [sym_range_expression] = STATE(3362), - [sym_tuple_expression] = STATE(2747), - [sym_literal] = STATE(3362), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3362), - [sym_preproc_if_in_attribute_list] = STATE(5576), - [sym_preproc_region] = STATE(1707), - [sym_preproc_endregion] = STATE(1707), - [sym_preproc_line] = STATE(1707), - [sym_preproc_pragma] = STATE(1707), - [sym_preproc_nullable] = STATE(1707), - [sym_preproc_error] = STATE(1707), - [sym_preproc_warning] = STATE(1707), - [sym_preproc_define] = STATE(1707), - [sym_preproc_undef] = STATE(1707), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3385), + [1723] = { + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(5152), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2196), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(3528), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3640), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3102), + [sym_postfix_unary_expression] = STATE(3079), + [sym_prefix_unary_expression] = STATE(3079), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6137), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3102), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3079), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3102), + [sym_member_access_expression] = STATE(2472), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3079), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7645), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(3102), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3102), + [sym_typeof_expression] = STATE(3102), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2472), + [sym_literal] = STATE(3102), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), + [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(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1307), - [anon_sym_LPAREN] = ACTIONS(1309), - [anon_sym_ref] = ACTIONS(1311), - [anon_sym_LBRACE] = ACTIONS(1313), - [anon_sym_delegate] = ACTIONS(1315), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1479), + [anon_sym_LPAREN] = ACTIONS(2081), + [anon_sym_ref] = ACTIONS(2083), + [anon_sym_LBRACE] = ACTIONS(1481), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1317), + [anon_sym_new] = ACTIONS(1059), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1319), - [anon_sym_BANG] = ACTIONS(1069), - [anon_sym_TILDE] = ACTIONS(1069), - [anon_sym_PLUS_PLUS] = ACTIONS(1069), - [anon_sym_DASH_DASH] = ACTIONS(1069), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(2087), + [anon_sym_TILDE] = ACTIONS(2087), + [anon_sym_PLUS_PLUS] = ACTIONS(2087), + [anon_sym_DASH_DASH] = ACTIONS(2087), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1071), - [anon_sym_DASH] = ACTIONS(1071), - [anon_sym_STAR] = ACTIONS(1321), - [anon_sym_CARET] = ACTIONS(1069), - [anon_sym_AMP] = ACTIONS(1069), - [anon_sym_this] = ACTIONS(1323), + [anon_sym_PLUS] = ACTIONS(2085), + [anon_sym_DASH] = ACTIONS(2085), + [anon_sym_STAR] = ACTIONS(81), + [anon_sym_CARET] = ACTIONS(2087), + [anon_sym_AMP] = ACTIONS(2087), + [anon_sym_this] = ACTIONS(83), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1325), + [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1319), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1327), + [anon_sym_throw] = ACTIONS(2089), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1329), - [anon_sym_DOT_DOT] = ACTIONS(1331), + [anon_sym_await] = ACTIONS(2091), + [anon_sym_DOT_DOT] = ACTIONS(2093), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -330395,19 +332985,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1333), + [anon_sym_stackalloc] = ACTIONS(127), [anon_sym_sizeof] = ACTIONS(129), [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(1335), - [anon_sym___reftype] = ACTIONS(1337), - [anon_sym___refvalue] = ACTIONS(1339), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), [sym_null_literal] = ACTIONS(139), [anon_sym_SQUOTE] = ACTIONS(141), [sym_integer_literal] = ACTIONS(139), [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1341), + [aux_sym_preproc_if_token1] = ACTIONS(2095), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -330423,135 +333013,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), }, - [1708] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(5160), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2204), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(4990), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3520), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3080), - [sym_postfix_unary_expression] = STATE(3111), - [sym_prefix_unary_expression] = STATE(3111), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6154), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3080), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3111), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3080), - [sym_member_access_expression] = STATE(2484), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3111), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7530), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(3080), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3080), - [sym_typeof_expression] = STATE(3080), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2484), - [sym_literal] = STATE(3080), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), - [sym_preproc_region] = STATE(1708), - [sym_preproc_endregion] = STATE(1708), - [sym_preproc_line] = STATE(1708), - [sym_preproc_pragma] = STATE(1708), - [sym_preproc_nullable] = STATE(1708), - [sym_preproc_error] = STATE(1708), - [sym_preproc_warning] = STATE(1708), - [sym_preproc_define] = STATE(1708), - [sym_preproc_undef] = STATE(1708), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [1724] = { + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(5152), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2196), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(5402), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3640), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3102), + [sym_postfix_unary_expression] = STATE(3079), + [sym_prefix_unary_expression] = STATE(3079), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6137), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3102), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3079), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3102), + [sym_member_access_expression] = STATE(2472), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3079), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7645), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(3102), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3102), + [sym_typeof_expression] = STATE(3102), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2472), + [sym_literal] = STATE(3102), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), + [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(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1481), - [anon_sym_LPAREN] = ACTIONS(43), - [anon_sym_ref] = ACTIONS(661), - [anon_sym_LBRACE] = ACTIONS(1487), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1479), + [anon_sym_LPAREN] = ACTIONS(2081), + [anon_sym_ref] = ACTIONS(2083), + [anon_sym_LBRACE] = ACTIONS(1481), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1061), + [anon_sym_new] = ACTIONS(1059), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = 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_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(2087), + [anon_sym_TILDE] = ACTIONS(2087), + [anon_sym_PLUS_PLUS] = ACTIONS(2087), + [anon_sym_DASH_DASH] = ACTIONS(2087), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1585), - [anon_sym_DASH] = ACTIONS(1585), + [anon_sym_PLUS] = ACTIONS(2085), + [anon_sym_DASH] = ACTIONS(2085), [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(1587), - [anon_sym_AMP] = ACTIONS(1587), + [anon_sym_CARET] = ACTIONS(2087), + [anon_sym_AMP] = ACTIONS(2087), [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(1067), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1589), + [anon_sym_throw] = ACTIONS(2089), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1591), - [anon_sym_DOT_DOT] = ACTIONS(123), + [anon_sym_await] = ACTIONS(2091), + [anon_sym_DOT_DOT] = ACTIONS(2093), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -330576,7 +333166,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(1089), + [aux_sym_preproc_if_token1] = ACTIONS(2095), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -330592,135 +333182,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), }, - [1709] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(5160), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2204), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(4991), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3520), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3080), - [sym_postfix_unary_expression] = STATE(3111), - [sym_prefix_unary_expression] = STATE(3111), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6154), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3080), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3111), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3080), - [sym_member_access_expression] = STATE(2484), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3111), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7530), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(3080), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3080), - [sym_typeof_expression] = STATE(3080), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2484), - [sym_literal] = STATE(3080), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), - [sym_preproc_region] = STATE(1709), - [sym_preproc_endregion] = STATE(1709), - [sym_preproc_line] = STATE(1709), - [sym_preproc_pragma] = STATE(1709), - [sym_preproc_nullable] = STATE(1709), - [sym_preproc_error] = STATE(1709), - [sym_preproc_warning] = STATE(1709), - [sym_preproc_define] = STATE(1709), - [sym_preproc_undef] = STATE(1709), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3067), + [1725] = { + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2816), + [sym__name] = STATE(5873), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2196), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(3212), + [sym_non_lvalue_expression] = STATE(3495), + [sym_lvalue_expression] = STATE(3525), + [sym__expression_statement_expression] = STATE(3462), + [sym_assignment_expression] = STATE(3497), + [sym_binary_expression] = STATE(3462), + [sym_postfix_unary_expression] = STATE(3497), + [sym_prefix_unary_expression] = STATE(3497), + [sym__pointer_indirection_expression] = STATE(2815), + [sym_query_expression] = STATE(3462), + [sym_from_clause] = STATE(6155), + [sym_conditional_expression] = STATE(3462), + [sym_conditional_access_expression] = STATE(3462), + [sym_as_expression] = STATE(3462), + [sym_is_expression] = STATE(3462), + [sym_is_pattern_expression] = STATE(3462), + [sym_cast_expression] = STATE(3462), + [sym_checked_expression] = STATE(3462), + [sym_invocation_expression] = STATE(3497), + [sym_switch_expression] = STATE(3462), + [sym_await_expression] = STATE(3497), + [sym_throw_expression] = STATE(3462), + [sym_element_access_expression] = STATE(2815), + [sym_interpolated_string_expression] = STATE(3462), + [sym_member_access_expression] = STATE(2815), + [sym_object_creation_expression] = STATE(3497), + [sym_parenthesized_expression] = STATE(3497), + [sym__parenthesized_lvalue_expression] = STATE(2815), + [sym_lambda_expression] = STATE(3462), + [sym__lambda_expression_init] = STATE(7427), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3462), + [sym_anonymous_method_expression] = STATE(3462), + [sym_anonymous_object_creation_expression] = STATE(3462), + [sym_implicit_array_creation_expression] = STATE(3462), + [sym_implicit_object_creation_expression] = STATE(3462), + [sym_implicit_stackalloc_expression] = STATE(3462), + [sym_initializer_expression] = STATE(3462), + [sym_default_expression] = STATE(3462), + [sym_with_expression] = STATE(3462), + [sym_sizeof_expression] = STATE(3462), + [sym_typeof_expression] = STATE(3462), + [sym_makeref_expression] = STATE(3462), + [sym_ref_expression] = STATE(3462), + [sym_reftype_expression] = STATE(3462), + [sym_refvalue_expression] = STATE(3462), + [sym_stackalloc_expression] = STATE(3462), + [sym_range_expression] = STATE(3462), + [sym_tuple_expression] = STATE(2815), + [sym_literal] = STATE(3462), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3462), + [sym_preproc_if_in_attribute_list] = STATE(5583), + [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(3104), [aux_sym__lambda_expression_init_repeat1] = STATE(3367), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1481), - [anon_sym_LPAREN] = ACTIONS(43), - [anon_sym_ref] = ACTIONS(661), - [anon_sym_LBRACE] = ACTIONS(1487), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1305), + [anon_sym_LPAREN] = ACTIONS(1737), + [anon_sym_ref] = ACTIONS(1739), + [anon_sym_LBRACE] = ACTIONS(1311), + [anon_sym_delegate] = ACTIONS(1313), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1061), + [anon_sym_new] = ACTIONS(1741), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = 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_checked] = ACTIONS(1317), + [anon_sym_BANG] = ACTIONS(1745), + [anon_sym_TILDE] = ACTIONS(1745), + [anon_sym_PLUS_PLUS] = ACTIONS(1745), + [anon_sym_DASH_DASH] = ACTIONS(1745), [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_this] = ACTIONS(83), + [anon_sym_PLUS] = ACTIONS(1743), + [anon_sym_DASH] = ACTIONS(1743), + [anon_sym_STAR] = ACTIONS(1377), + [anon_sym_CARET] = ACTIONS(1745), + [anon_sym_AMP] = ACTIONS(1745), + [anon_sym_this] = ACTIONS(1321), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), + [anon_sym_base] = ACTIONS(1323), [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1067), + [anon_sym_unchecked] = ACTIONS(1317), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1589), + [anon_sym_throw] = ACTIONS(1747), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1591), - [anon_sym_DOT_DOT] = ACTIONS(123), + [anon_sym_await] = ACTIONS(1749), + [anon_sym_DOT_DOT] = ACTIONS(1751), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -330733,19 +333323,19 @@ static const uint16_t ts_parse_table[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(1331), [anon_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(1333), + [anon_sym___reftype] = ACTIONS(1335), + [anon_sym___refvalue] = ACTIONS(1337), [sym_null_literal] = ACTIONS(139), [anon_sym_SQUOTE] = ACTIONS(141), [sym_integer_literal] = ACTIONS(139), [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1089), + [aux_sym_preproc_if_token1] = ACTIONS(1753), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -330761,135 +333351,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), }, - [1710] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2610), - [sym__name] = STATE(5896), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2384), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(4843), - [sym_non_lvalue_expression] = STATE(3277), - [sym_lvalue_expression] = STATE(3392), - [sym__expression_statement_expression] = STATE(3228), - [sym_assignment_expression] = STATE(3289), - [sym_binary_expression] = STATE(3228), - [sym_postfix_unary_expression] = STATE(3289), - [sym_prefix_unary_expression] = STATE(3289), - [sym__pointer_indirection_expression] = STATE(2609), - [sym_query_expression] = STATE(3228), - [sym_from_clause] = STATE(6173), - [sym_conditional_expression] = STATE(3228), - [sym_conditional_access_expression] = STATE(3228), - [sym_as_expression] = STATE(3228), - [sym_is_expression] = STATE(3228), - [sym_is_pattern_expression] = STATE(3228), - [sym_cast_expression] = STATE(3228), - [sym_checked_expression] = STATE(3228), - [sym_invocation_expression] = STATE(3289), - [sym_switch_expression] = STATE(3228), - [sym_await_expression] = STATE(3289), - [sym_throw_expression] = STATE(3228), - [sym_element_access_expression] = STATE(2609), - [sym_interpolated_string_expression] = STATE(3228), - [sym_member_access_expression] = STATE(2609), - [sym_object_creation_expression] = STATE(3289), - [sym_parenthesized_expression] = STATE(3289), - [sym__parenthesized_lvalue_expression] = STATE(2609), - [sym_lambda_expression] = STATE(3228), - [sym__lambda_expression_init] = STATE(7334), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3228), - [sym_anonymous_method_expression] = STATE(3228), - [sym_anonymous_object_creation_expression] = STATE(3228), - [sym_implicit_array_creation_expression] = STATE(3228), - [sym_implicit_object_creation_expression] = STATE(3228), - [sym_implicit_stackalloc_expression] = STATE(3228), - [sym_initializer_expression] = STATE(3228), - [sym_default_expression] = STATE(3228), - [sym_with_expression] = STATE(3228), - [sym_sizeof_expression] = STATE(3228), - [sym_typeof_expression] = STATE(3228), - [sym_makeref_expression] = STATE(3228), - [sym_ref_expression] = STATE(3228), - [sym_reftype_expression] = STATE(3228), - [sym_refvalue_expression] = STATE(3228), - [sym_stackalloc_expression] = STATE(3228), - [sym_range_expression] = STATE(3228), - [sym_tuple_expression] = STATE(2609), - [sym_literal] = STATE(3228), - [sym_character_literal] = STATE(3278), - [sym_string_literal] = STATE(3278), - [sym_raw_string_literal] = STATE(3278), - [sym_boolean_literal] = STATE(3278), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3228), - [sym_preproc_if_in_attribute_list] = STATE(5576), - [sym_preproc_region] = STATE(1710), - [sym_preproc_endregion] = STATE(1710), - [sym_preproc_line] = STATE(1710), - [sym_preproc_pragma] = STATE(1710), - [sym_preproc_nullable] = STATE(1710), - [sym_preproc_error] = STATE(1710), - [sym_preproc_warning] = STATE(1710), - [sym_preproc_define] = STATE(1710), - [sym_preproc_undef] = STATE(1710), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3396), + [1726] = { + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2416), + [sym__name] = STATE(5890), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2193), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(4097), + [sym_non_lvalue_expression] = STATE(3040), + [sym_lvalue_expression] = STATE(3109), + [sym__expression_statement_expression] = STATE(3035), + [sym_assignment_expression] = STATE(3043), + [sym_binary_expression] = STATE(3035), + [sym_postfix_unary_expression] = STATE(3043), + [sym_prefix_unary_expression] = STATE(3043), + [sym__pointer_indirection_expression] = STATE(2415), + [sym_query_expression] = STATE(3035), + [sym_from_clause] = STATE(6138), + [sym_conditional_expression] = STATE(3035), + [sym_conditional_access_expression] = STATE(3035), + [sym_as_expression] = STATE(3035), + [sym_is_expression] = STATE(3035), + [sym_is_pattern_expression] = STATE(3035), + [sym_cast_expression] = STATE(3035), + [sym_checked_expression] = STATE(3035), + [sym_invocation_expression] = STATE(3043), + [sym_switch_expression] = STATE(3035), + [sym_await_expression] = STATE(3043), + [sym_throw_expression] = STATE(3035), + [sym_element_access_expression] = STATE(2415), + [sym_interpolated_string_expression] = STATE(3035), + [sym_member_access_expression] = STATE(2415), + [sym_object_creation_expression] = STATE(3043), + [sym_parenthesized_expression] = STATE(3043), + [sym__parenthesized_lvalue_expression] = STATE(2415), + [sym_lambda_expression] = STATE(3035), + [sym__lambda_expression_init] = STATE(7374), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3035), + [sym_anonymous_method_expression] = STATE(3035), + [sym_anonymous_object_creation_expression] = STATE(3035), + [sym_implicit_array_creation_expression] = STATE(3035), + [sym_implicit_object_creation_expression] = STATE(3035), + [sym_implicit_stackalloc_expression] = STATE(3035), + [sym_initializer_expression] = STATE(3035), + [sym_default_expression] = STATE(3035), + [sym_with_expression] = STATE(3035), + [sym_sizeof_expression] = STATE(3035), + [sym_typeof_expression] = STATE(3035), + [sym_makeref_expression] = STATE(3035), + [sym_ref_expression] = STATE(3035), + [sym_reftype_expression] = STATE(3035), + [sym_refvalue_expression] = STATE(3035), + [sym_stackalloc_expression] = STATE(3035), + [sym_range_expression] = STATE(3035), + [sym_tuple_expression] = STATE(2415), + [sym_literal] = STATE(3035), + [sym_character_literal] = STATE(3037), + [sym_string_literal] = STATE(3037), + [sym_raw_string_literal] = STATE(3037), + [sym_boolean_literal] = STATE(3037), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3035), + [sym_preproc_if_in_attribute_list] = STATE(5583), + [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(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3455), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1153), - [anon_sym_LPAREN] = ACTIONS(1859), - [anon_sym_ref] = ACTIONS(1861), - [anon_sym_LBRACE] = ACTIONS(1159), - [anon_sym_delegate] = ACTIONS(1161), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1239), + [anon_sym_LPAREN] = ACTIONS(1241), + [anon_sym_ref] = ACTIONS(1243), + [anon_sym_LBRACE] = ACTIONS(1245), + [anon_sym_delegate] = ACTIONS(1247), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1863), + [anon_sym_new] = ACTIONS(1249), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1167), - [anon_sym_BANG] = ACTIONS(1867), - [anon_sym_TILDE] = ACTIONS(1867), - [anon_sym_PLUS_PLUS] = ACTIONS(1867), - [anon_sym_DASH_DASH] = ACTIONS(1867), - [anon_sym_true] = ACTIONS(1173), - [anon_sym_false] = ACTIONS(1173), - [anon_sym_PLUS] = ACTIONS(1865), - [anon_sym_DASH] = ACTIONS(1865), - [anon_sym_STAR] = ACTIONS(1869), - [anon_sym_CARET] = ACTIONS(1867), - [anon_sym_AMP] = ACTIONS(1867), - [anon_sym_this] = ACTIONS(1177), + [anon_sym_checked] = ACTIONS(1251), + [anon_sym_BANG] = ACTIONS(1255), + [anon_sym_TILDE] = ACTIONS(1255), + [anon_sym_PLUS_PLUS] = ACTIONS(1255), + [anon_sym_DASH_DASH] = ACTIONS(1255), + [anon_sym_true] = ACTIONS(1257), + [anon_sym_false] = ACTIONS(1257), + [anon_sym_PLUS] = ACTIONS(1253), + [anon_sym_DASH] = ACTIONS(1253), + [anon_sym_STAR] = ACTIONS(1259), + [anon_sym_CARET] = ACTIONS(1255), + [anon_sym_AMP] = ACTIONS(1255), + [anon_sym_this] = ACTIONS(1261), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1179), + [anon_sym_base] = ACTIONS(1263), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1181), - [anon_sym_unchecked] = ACTIONS(1167), + [sym_predefined_type] = ACTIONS(1265), + [anon_sym_unchecked] = ACTIONS(1251), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1183), - [anon_sym_throw] = ACTIONS(1871), + [anon_sym_default] = ACTIONS(1267), + [anon_sym_throw] = ACTIONS(1269), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1873), - [anon_sym_DOT_DOT] = ACTIONS(1875), + [anon_sym_await] = ACTIONS(1271), + [anon_sym_DOT_DOT] = ACTIONS(1273), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -330902,19 +333492,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1191), - [anon_sym_sizeof] = ACTIONS(1193), - [anon_sym_typeof] = ACTIONS(1195), - [anon_sym___makeref] = ACTIONS(1197), - [anon_sym___reftype] = ACTIONS(1199), - [anon_sym___refvalue] = ACTIONS(1201), - [sym_null_literal] = ACTIONS(1203), - [anon_sym_SQUOTE] = ACTIONS(1205), - [sym_integer_literal] = ACTIONS(1203), - [sym_real_literal] = ACTIONS(1207), - [anon_sym_DQUOTE] = ACTIONS(1209), - [sym_verbatim_string_literal] = ACTIONS(1207), - [aux_sym_preproc_if_token1] = ACTIONS(1211), + [anon_sym_stackalloc] = ACTIONS(1275), + [anon_sym_sizeof] = ACTIONS(1277), + [anon_sym_typeof] = ACTIONS(1279), + [anon_sym___makeref] = ACTIONS(1281), + [anon_sym___reftype] = ACTIONS(1283), + [anon_sym___refvalue] = ACTIONS(1285), + [sym_null_literal] = ACTIONS(1287), + [anon_sym_SQUOTE] = ACTIONS(1289), + [sym_integer_literal] = ACTIONS(1287), + [sym_real_literal] = ACTIONS(1291), + [anon_sym_DQUOTE] = ACTIONS(1293), + [sym_verbatim_string_literal] = ACTIONS(1291), + [aux_sym_preproc_if_token1] = ACTIONS(1295), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -330925,140 +333515,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(1213), - [sym_interpolation_verbatim_start] = ACTIONS(1215), - [sym_interpolation_raw_start] = ACTIONS(1217), - [sym_raw_string_start] = ACTIONS(1219), + [sym_interpolation_regular_start] = ACTIONS(1297), + [sym_interpolation_verbatim_start] = ACTIONS(1299), + [sym_interpolation_raw_start] = ACTIONS(1301), + [sym_raw_string_start] = ACTIONS(1303), }, - [1711] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2420), - [sym__name] = STATE(5875), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2369), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(4125), - [sym_non_lvalue_expression] = STATE(3066), - [sym_lvalue_expression] = STATE(3125), - [sym__expression_statement_expression] = STATE(3006), - [sym_assignment_expression] = STATE(3020), - [sym_binary_expression] = STATE(3006), - [sym_postfix_unary_expression] = STATE(3020), - [sym_prefix_unary_expression] = STATE(3020), - [sym__pointer_indirection_expression] = STATE(2423), - [sym_query_expression] = STATE(3006), - [sym_from_clause] = STATE(6145), - [sym_conditional_expression] = STATE(3006), - [sym_conditional_access_expression] = STATE(3006), - [sym_as_expression] = STATE(3006), - [sym_is_expression] = STATE(3006), - [sym_is_pattern_expression] = STATE(3006), - [sym_cast_expression] = STATE(3006), - [sym_checked_expression] = STATE(3006), - [sym_invocation_expression] = STATE(3020), - [sym_switch_expression] = STATE(3006), - [sym_await_expression] = STATE(3020), - [sym_throw_expression] = STATE(3006), - [sym_element_access_expression] = STATE(2423), - [sym_interpolated_string_expression] = STATE(3006), - [sym_member_access_expression] = STATE(2423), - [sym_object_creation_expression] = STATE(3020), - [sym_parenthesized_expression] = STATE(3020), - [sym__parenthesized_lvalue_expression] = STATE(2423), - [sym_lambda_expression] = STATE(3006), - [sym__lambda_expression_init] = STATE(7538), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3006), - [sym_anonymous_method_expression] = STATE(3006), - [sym_anonymous_object_creation_expression] = STATE(3006), - [sym_implicit_array_creation_expression] = STATE(3006), - [sym_implicit_object_creation_expression] = STATE(3006), - [sym_implicit_stackalloc_expression] = STATE(3006), - [sym_initializer_expression] = STATE(3006), - [sym_default_expression] = STATE(3006), - [sym_with_expression] = STATE(3006), - [sym_sizeof_expression] = STATE(3006), - [sym_typeof_expression] = STATE(3006), - [sym_makeref_expression] = STATE(3006), - [sym_ref_expression] = STATE(3006), - [sym_reftype_expression] = STATE(3006), - [sym_refvalue_expression] = STATE(3006), - [sym_stackalloc_expression] = STATE(3006), - [sym_range_expression] = STATE(3006), - [sym_tuple_expression] = STATE(2423), - [sym_literal] = STATE(3006), - [sym_character_literal] = STATE(3011), - [sym_string_literal] = STATE(3011), - [sym_raw_string_literal] = STATE(3011), - [sym_boolean_literal] = STATE(3011), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3006), - [sym_preproc_if_in_attribute_list] = STATE(5576), - [sym_preproc_region] = STATE(1711), - [sym_preproc_endregion] = STATE(1711), - [sym_preproc_line] = STATE(1711), - [sym_preproc_pragma] = STATE(1711), - [sym_preproc_nullable] = STATE(1711), - [sym_preproc_error] = STATE(1711), - [sym_preproc_warning] = STATE(1711), - [sym_preproc_define] = STATE(1711), - [sym_preproc_undef] = STATE(1711), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3440), + [1727] = { + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2901), + [sym__name] = STATE(5889), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2349), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(3563), + [sym_non_lvalue_expression] = STATE(3685), + [sym_lvalue_expression] = STATE(2890), + [sym__expression_statement_expression] = STATE(3836), + [sym_assignment_expression] = STATE(3689), + [sym_binary_expression] = STATE(3836), + [sym_postfix_unary_expression] = STATE(3689), + [sym_prefix_unary_expression] = STATE(3689), + [sym__pointer_indirection_expression] = STATE(2906), + [sym_query_expression] = STATE(3836), + [sym_from_clause] = STATE(6139), + [sym_conditional_expression] = STATE(3836), + [sym_conditional_access_expression] = STATE(3836), + [sym_as_expression] = STATE(3836), + [sym_is_expression] = STATE(3836), + [sym_is_pattern_expression] = STATE(3836), + [sym_cast_expression] = STATE(3836), + [sym_checked_expression] = STATE(3836), + [sym_invocation_expression] = STATE(3689), + [sym_switch_expression] = STATE(3836), + [sym_await_expression] = STATE(3689), + [sym_throw_expression] = STATE(3836), + [sym_element_access_expression] = STATE(2906), + [sym_interpolated_string_expression] = STATE(3836), + [sym_member_access_expression] = STATE(2906), + [sym_object_creation_expression] = STATE(3689), + [sym_parenthesized_expression] = STATE(3689), + [sym__parenthesized_lvalue_expression] = STATE(2906), + [sym_lambda_expression] = STATE(3836), + [sym__lambda_expression_init] = STATE(7456), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3836), + [sym_anonymous_method_expression] = STATE(3836), + [sym_anonymous_object_creation_expression] = STATE(3836), + [sym_implicit_array_creation_expression] = STATE(3836), + [sym_implicit_object_creation_expression] = STATE(3836), + [sym_implicit_stackalloc_expression] = STATE(3836), + [sym_initializer_expression] = STATE(3836), + [sym_default_expression] = STATE(3836), + [sym_with_expression] = STATE(3836), + [sym_sizeof_expression] = STATE(3836), + [sym_typeof_expression] = STATE(3836), + [sym_makeref_expression] = STATE(3836), + [sym_ref_expression] = STATE(3836), + [sym_reftype_expression] = STATE(3836), + [sym_refvalue_expression] = STATE(3836), + [sym_stackalloc_expression] = STATE(3836), + [sym_range_expression] = STATE(3836), + [sym_tuple_expression] = STATE(2906), + [sym_literal] = STATE(3836), + [sym_character_literal] = STATE(3843), + [sym_string_literal] = STATE(3843), + [sym_raw_string_literal] = STATE(3843), + [sym_boolean_literal] = STATE(3843), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3836), + [sym_preproc_if_in_attribute_list] = STATE(5583), + [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(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3477), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1241), - [anon_sym_LPAREN] = ACTIONS(2195), - [anon_sym_ref] = ACTIONS(2197), - [anon_sym_LBRACE] = ACTIONS(1247), - [anon_sym_delegate] = ACTIONS(1249), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1655), + [anon_sym_LPAREN] = ACTIONS(1755), + [anon_sym_ref] = ACTIONS(1757), + [anon_sym_LBRACE] = ACTIONS(1661), + [anon_sym_delegate] = ACTIONS(1663), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1845), + [anon_sym_new] = ACTIONS(1759), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1253), - [anon_sym_BANG] = ACTIONS(2201), - [anon_sym_TILDE] = ACTIONS(2201), - [anon_sym_PLUS_PLUS] = ACTIONS(2201), - [anon_sym_DASH_DASH] = ACTIONS(2201), - [anon_sym_true] = ACTIONS(1259), - [anon_sym_false] = ACTIONS(1259), - [anon_sym_PLUS] = ACTIONS(2199), - [anon_sym_DASH] = ACTIONS(2199), - [anon_sym_STAR] = ACTIONS(1851), - [anon_sym_CARET] = ACTIONS(2201), - [anon_sym_AMP] = ACTIONS(2201), - [anon_sym_this] = ACTIONS(1263), + [anon_sym_checked] = ACTIONS(1667), + [anon_sym_BANG] = ACTIONS(1763), + [anon_sym_TILDE] = ACTIONS(1763), + [anon_sym_PLUS_PLUS] = ACTIONS(1763), + [anon_sym_DASH_DASH] = ACTIONS(1763), + [anon_sym_true] = ACTIONS(1673), + [anon_sym_false] = ACTIONS(1673), + [anon_sym_PLUS] = ACTIONS(1761), + [anon_sym_DASH] = ACTIONS(1761), + [anon_sym_STAR] = ACTIONS(1765), + [anon_sym_CARET] = ACTIONS(1763), + [anon_sym_AMP] = ACTIONS(1763), + [anon_sym_this] = ACTIONS(1677), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1265), + [anon_sym_base] = ACTIONS(1679), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1267), - [anon_sym_unchecked] = ACTIONS(1253), + [sym_predefined_type] = ACTIONS(1681), + [anon_sym_unchecked] = ACTIONS(1667), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1269), - [anon_sym_throw] = ACTIONS(2203), + [anon_sym_default] = ACTIONS(1683), + [anon_sym_throw] = ACTIONS(1767), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2205), - [anon_sym_DOT_DOT] = ACTIONS(2207), + [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), @@ -331071,19 +333661,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1277), - [anon_sym_sizeof] = ACTIONS(1279), - [anon_sym_typeof] = ACTIONS(1281), - [anon_sym___makeref] = ACTIONS(1283), - [anon_sym___reftype] = ACTIONS(1285), - [anon_sym___refvalue] = ACTIONS(1287), - [sym_null_literal] = ACTIONS(1289), - [anon_sym_SQUOTE] = ACTIONS(1291), - [sym_integer_literal] = ACTIONS(1289), - [sym_real_literal] = ACTIONS(1293), - [anon_sym_DQUOTE] = ACTIONS(1295), - [sym_verbatim_string_literal] = ACTIONS(1293), - [aux_sym_preproc_if_token1] = ACTIONS(1297), + [anon_sym_stackalloc] = ACTIONS(1691), + [anon_sym_sizeof] = ACTIONS(1693), + [anon_sym_typeof] = ACTIONS(1695), + [anon_sym___makeref] = ACTIONS(1697), + [anon_sym___reftype] = ACTIONS(1699), + [anon_sym___refvalue] = ACTIONS(1701), + [sym_null_literal] = ACTIONS(1703), + [anon_sym_SQUOTE] = ACTIONS(1705), + [sym_integer_literal] = ACTIONS(1703), + [sym_real_literal] = ACTIONS(1707), + [anon_sym_DQUOTE] = ACTIONS(1709), + [sym_verbatim_string_literal] = ACTIONS(1707), + [aux_sym_preproc_if_token1] = ACTIONS(1711), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -331094,140 +333684,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(1299), - [sym_interpolation_verbatim_start] = ACTIONS(1301), - [sym_interpolation_raw_start] = ACTIONS(1303), - [sym_raw_string_start] = ACTIONS(1305), + [sym_interpolation_regular_start] = ACTIONS(1713), + [sym_interpolation_verbatim_start] = ACTIONS(1715), + [sym_interpolation_raw_start] = ACTIONS(1717), + [sym_raw_string_start] = ACTIONS(1719), }, - [1712] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(5160), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2204), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(4590), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3461), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3080), - [sym_postfix_unary_expression] = STATE(3111), - [sym_prefix_unary_expression] = STATE(3111), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6154), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3080), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3111), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3080), - [sym_member_access_expression] = STATE(2484), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3111), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7547), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(3080), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3080), - [sym_typeof_expression] = STATE(3080), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2484), - [sym_literal] = STATE(3080), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), - [sym_preproc_region] = STATE(1712), - [sym_preproc_endregion] = STATE(1712), - [sym_preproc_line] = STATE(1712), - [sym_preproc_pragma] = STATE(1712), - [sym_preproc_nullable] = STATE(1712), - [sym_preproc_error] = STATE(1712), - [sym_preproc_warning] = STATE(1712), - [sym_preproc_define] = STATE(1712), - [sym_preproc_undef] = STATE(1712), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [1728] = { + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2416), + [sym__name] = STATE(5890), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2193), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(4103), + [sym_non_lvalue_expression] = STATE(3040), + [sym_lvalue_expression] = STATE(3109), + [sym__expression_statement_expression] = STATE(3035), + [sym_assignment_expression] = STATE(3043), + [sym_binary_expression] = STATE(3035), + [sym_postfix_unary_expression] = STATE(3043), + [sym_prefix_unary_expression] = STATE(3043), + [sym__pointer_indirection_expression] = STATE(2415), + [sym_query_expression] = STATE(3035), + [sym_from_clause] = STATE(6138), + [sym_conditional_expression] = STATE(3035), + [sym_conditional_access_expression] = STATE(3035), + [sym_as_expression] = STATE(3035), + [sym_is_expression] = STATE(3035), + [sym_is_pattern_expression] = STATE(3035), + [sym_cast_expression] = STATE(3035), + [sym_checked_expression] = STATE(3035), + [sym_invocation_expression] = STATE(3043), + [sym_switch_expression] = STATE(3035), + [sym_await_expression] = STATE(3043), + [sym_throw_expression] = STATE(3035), + [sym_element_access_expression] = STATE(2415), + [sym_interpolated_string_expression] = STATE(3035), + [sym_member_access_expression] = STATE(2415), + [sym_object_creation_expression] = STATE(3043), + [sym_parenthesized_expression] = STATE(3043), + [sym__parenthesized_lvalue_expression] = STATE(2415), + [sym_lambda_expression] = STATE(3035), + [sym__lambda_expression_init] = STATE(7374), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3035), + [sym_anonymous_method_expression] = STATE(3035), + [sym_anonymous_object_creation_expression] = STATE(3035), + [sym_implicit_array_creation_expression] = STATE(3035), + [sym_implicit_object_creation_expression] = STATE(3035), + [sym_implicit_stackalloc_expression] = STATE(3035), + [sym_initializer_expression] = STATE(3035), + [sym_default_expression] = STATE(3035), + [sym_with_expression] = STATE(3035), + [sym_sizeof_expression] = STATE(3035), + [sym_typeof_expression] = STATE(3035), + [sym_makeref_expression] = STATE(3035), + [sym_ref_expression] = STATE(3035), + [sym_reftype_expression] = STATE(3035), + [sym_refvalue_expression] = STATE(3035), + [sym_stackalloc_expression] = STATE(3035), + [sym_range_expression] = STATE(3035), + [sym_tuple_expression] = STATE(2415), + [sym_literal] = STATE(3035), + [sym_character_literal] = STATE(3037), + [sym_string_literal] = STATE(3037), + [sym_raw_string_literal] = STATE(3037), + [sym_boolean_literal] = STATE(3037), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3035), + [sym_preproc_if_in_attribute_list] = STATE(5583), + [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(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3455), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1481), - [anon_sym_LPAREN] = ACTIONS(1497), - [anon_sym_ref] = ACTIONS(1499), - [anon_sym_LBRACE] = ACTIONS(1487), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1239), + [anon_sym_LPAREN] = ACTIONS(1241), + [anon_sym_ref] = ACTIONS(1243), + [anon_sym_LBRACE] = ACTIONS(1245), + [anon_sym_delegate] = ACTIONS(1247), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1501), + [anon_sym_new] = ACTIONS(1249), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = 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(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(1251), + [anon_sym_BANG] = ACTIONS(1255), + [anon_sym_TILDE] = ACTIONS(1255), + [anon_sym_PLUS_PLUS] = ACTIONS(1255), + [anon_sym_DASH_DASH] = ACTIONS(1255), + [anon_sym_true] = ACTIONS(1257), + [anon_sym_false] = ACTIONS(1257), + [anon_sym_PLUS] = ACTIONS(1253), + [anon_sym_DASH] = ACTIONS(1253), + [anon_sym_STAR] = ACTIONS(1259), + [anon_sym_CARET] = ACTIONS(1255), + [anon_sym_AMP] = ACTIONS(1255), + [anon_sym_this] = ACTIONS(1261), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), + [anon_sym_base] = ACTIONS(1263), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1067), + [sym_predefined_type] = ACTIONS(1265), + [anon_sym_unchecked] = ACTIONS(1251), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1503), + [anon_sym_default] = ACTIONS(1267), + [anon_sym_throw] = ACTIONS(1269), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1505), - [anon_sym_DOT_DOT] = ACTIONS(1507), + [anon_sym_await] = ACTIONS(1271), + [anon_sym_DOT_DOT] = ACTIONS(1273), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -331240,19 +333830,19 @@ static const uint16_t ts_parse_table[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(1089), + [anon_sym_stackalloc] = ACTIONS(1275), + [anon_sym_sizeof] = ACTIONS(1277), + [anon_sym_typeof] = ACTIONS(1279), + [anon_sym___makeref] = ACTIONS(1281), + [anon_sym___reftype] = ACTIONS(1283), + [anon_sym___refvalue] = ACTIONS(1285), + [sym_null_literal] = ACTIONS(1287), + [anon_sym_SQUOTE] = ACTIONS(1289), + [sym_integer_literal] = ACTIONS(1287), + [sym_real_literal] = ACTIONS(1291), + [anon_sym_DQUOTE] = ACTIONS(1293), + [sym_verbatim_string_literal] = ACTIONS(1291), + [aux_sym_preproc_if_token1] = ACTIONS(1295), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -331263,140 +333853,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(1297), + [sym_interpolation_verbatim_start] = ACTIONS(1299), + [sym_interpolation_raw_start] = ACTIONS(1301), + [sym_raw_string_start] = ACTIONS(1303), }, - [1713] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(5160), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2204), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(3521), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3461), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3080), - [sym_postfix_unary_expression] = STATE(3111), - [sym_prefix_unary_expression] = STATE(3111), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6154), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3080), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3111), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3080), - [sym_member_access_expression] = STATE(2484), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3111), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7547), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(3080), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3080), - [sym_typeof_expression] = STATE(3080), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2484), - [sym_literal] = STATE(3080), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), - [sym_preproc_region] = STATE(1713), - [sym_preproc_endregion] = STATE(1713), - [sym_preproc_line] = STATE(1713), - [sym_preproc_pragma] = STATE(1713), - [sym_preproc_nullable] = STATE(1713), - [sym_preproc_error] = STATE(1713), - [sym_preproc_warning] = STATE(1713), - [sym_preproc_define] = STATE(1713), - [sym_preproc_undef] = STATE(1713), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [1729] = { + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2416), + [sym__name] = STATE(5890), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2193), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(4105), + [sym_non_lvalue_expression] = STATE(3040), + [sym_lvalue_expression] = STATE(3109), + [sym__expression_statement_expression] = STATE(3035), + [sym_assignment_expression] = STATE(3043), + [sym_binary_expression] = STATE(3035), + [sym_postfix_unary_expression] = STATE(3043), + [sym_prefix_unary_expression] = STATE(3043), + [sym__pointer_indirection_expression] = STATE(2415), + [sym_query_expression] = STATE(3035), + [sym_from_clause] = STATE(6138), + [sym_conditional_expression] = STATE(3035), + [sym_conditional_access_expression] = STATE(3035), + [sym_as_expression] = STATE(3035), + [sym_is_expression] = STATE(3035), + [sym_is_pattern_expression] = STATE(3035), + [sym_cast_expression] = STATE(3035), + [sym_checked_expression] = STATE(3035), + [sym_invocation_expression] = STATE(3043), + [sym_switch_expression] = STATE(3035), + [sym_await_expression] = STATE(3043), + [sym_throw_expression] = STATE(3035), + [sym_element_access_expression] = STATE(2415), + [sym_interpolated_string_expression] = STATE(3035), + [sym_member_access_expression] = STATE(2415), + [sym_object_creation_expression] = STATE(3043), + [sym_parenthesized_expression] = STATE(3043), + [sym__parenthesized_lvalue_expression] = STATE(2415), + [sym_lambda_expression] = STATE(3035), + [sym__lambda_expression_init] = STATE(7374), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3035), + [sym_anonymous_method_expression] = STATE(3035), + [sym_anonymous_object_creation_expression] = STATE(3035), + [sym_implicit_array_creation_expression] = STATE(3035), + [sym_implicit_object_creation_expression] = STATE(3035), + [sym_implicit_stackalloc_expression] = STATE(3035), + [sym_initializer_expression] = STATE(3035), + [sym_default_expression] = STATE(3035), + [sym_with_expression] = STATE(3035), + [sym_sizeof_expression] = STATE(3035), + [sym_typeof_expression] = STATE(3035), + [sym_makeref_expression] = STATE(3035), + [sym_ref_expression] = STATE(3035), + [sym_reftype_expression] = STATE(3035), + [sym_refvalue_expression] = STATE(3035), + [sym_stackalloc_expression] = STATE(3035), + [sym_range_expression] = STATE(3035), + [sym_tuple_expression] = STATE(2415), + [sym_literal] = STATE(3035), + [sym_character_literal] = STATE(3037), + [sym_string_literal] = STATE(3037), + [sym_raw_string_literal] = STATE(3037), + [sym_boolean_literal] = STATE(3037), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3035), + [sym_preproc_if_in_attribute_list] = STATE(5583), + [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(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3455), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1481), - [anon_sym_LPAREN] = ACTIONS(1497), - [anon_sym_ref] = ACTIONS(1499), - [anon_sym_LBRACE] = ACTIONS(1487), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1239), + [anon_sym_LPAREN] = ACTIONS(1241), + [anon_sym_ref] = ACTIONS(1243), + [anon_sym_LBRACE] = ACTIONS(1245), + [anon_sym_delegate] = ACTIONS(1247), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1501), + [anon_sym_new] = ACTIONS(1249), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = 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(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(1251), + [anon_sym_BANG] = ACTIONS(1255), + [anon_sym_TILDE] = ACTIONS(1255), + [anon_sym_PLUS_PLUS] = ACTIONS(1255), + [anon_sym_DASH_DASH] = ACTIONS(1255), + [anon_sym_true] = ACTIONS(1257), + [anon_sym_false] = ACTIONS(1257), + [anon_sym_PLUS] = ACTIONS(1253), + [anon_sym_DASH] = ACTIONS(1253), + [anon_sym_STAR] = ACTIONS(1259), + [anon_sym_CARET] = ACTIONS(1255), + [anon_sym_AMP] = ACTIONS(1255), + [anon_sym_this] = ACTIONS(1261), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), + [anon_sym_base] = ACTIONS(1263), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1067), + [sym_predefined_type] = ACTIONS(1265), + [anon_sym_unchecked] = ACTIONS(1251), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1503), + [anon_sym_default] = ACTIONS(1267), + [anon_sym_throw] = ACTIONS(1269), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1505), - [anon_sym_DOT_DOT] = ACTIONS(1507), + [anon_sym_await] = ACTIONS(1271), + [anon_sym_DOT_DOT] = ACTIONS(1273), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -331409,19 +333999,19 @@ static const uint16_t ts_parse_table[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(1089), + [anon_sym_stackalloc] = ACTIONS(1275), + [anon_sym_sizeof] = ACTIONS(1277), + [anon_sym_typeof] = ACTIONS(1279), + [anon_sym___makeref] = ACTIONS(1281), + [anon_sym___reftype] = ACTIONS(1283), + [anon_sym___refvalue] = ACTIONS(1285), + [sym_null_literal] = ACTIONS(1287), + [anon_sym_SQUOTE] = ACTIONS(1289), + [sym_integer_literal] = ACTIONS(1287), + [sym_real_literal] = ACTIONS(1291), + [anon_sym_DQUOTE] = ACTIONS(1293), + [sym_verbatim_string_literal] = ACTIONS(1291), + [aux_sym_preproc_if_token1] = ACTIONS(1295), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -331432,140 +334022,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(1297), + [sym_interpolation_verbatim_start] = ACTIONS(1299), + [sym_interpolation_raw_start] = ACTIONS(1301), + [sym_raw_string_start] = ACTIONS(1303), }, - [1714] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2420), - [sym__name] = STATE(5875), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2369), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(4179), - [sym_non_lvalue_expression] = STATE(3066), - [sym_lvalue_expression] = STATE(3125), - [sym__expression_statement_expression] = STATE(3006), - [sym_assignment_expression] = STATE(3020), - [sym_binary_expression] = STATE(3006), - [sym_postfix_unary_expression] = STATE(3020), - [sym_prefix_unary_expression] = STATE(3020), - [sym__pointer_indirection_expression] = STATE(2423), - [sym_query_expression] = STATE(3006), - [sym_from_clause] = STATE(6145), - [sym_conditional_expression] = STATE(3006), - [sym_conditional_access_expression] = STATE(3006), - [sym_as_expression] = STATE(3006), - [sym_is_expression] = STATE(3006), - [sym_is_pattern_expression] = STATE(3006), - [sym_cast_expression] = STATE(3006), - [sym_checked_expression] = STATE(3006), - [sym_invocation_expression] = STATE(3020), - [sym_switch_expression] = STATE(3006), - [sym_await_expression] = STATE(3020), - [sym_throw_expression] = STATE(3006), - [sym_element_access_expression] = STATE(2423), - [sym_interpolated_string_expression] = STATE(3006), - [sym_member_access_expression] = STATE(2423), - [sym_object_creation_expression] = STATE(3020), - [sym_parenthesized_expression] = STATE(3020), - [sym__parenthesized_lvalue_expression] = STATE(2423), - [sym_lambda_expression] = STATE(3006), - [sym__lambda_expression_init] = STATE(7538), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3006), - [sym_anonymous_method_expression] = STATE(3006), - [sym_anonymous_object_creation_expression] = STATE(3006), - [sym_implicit_array_creation_expression] = STATE(3006), - [sym_implicit_object_creation_expression] = STATE(3006), - [sym_implicit_stackalloc_expression] = STATE(3006), - [sym_initializer_expression] = STATE(3006), - [sym_default_expression] = STATE(3006), - [sym_with_expression] = STATE(3006), - [sym_sizeof_expression] = STATE(3006), - [sym_typeof_expression] = STATE(3006), - [sym_makeref_expression] = STATE(3006), - [sym_ref_expression] = STATE(3006), - [sym_reftype_expression] = STATE(3006), - [sym_refvalue_expression] = STATE(3006), - [sym_stackalloc_expression] = STATE(3006), - [sym_range_expression] = STATE(3006), - [sym_tuple_expression] = STATE(2423), - [sym_literal] = STATE(3006), - [sym_character_literal] = STATE(3011), - [sym_string_literal] = STATE(3011), - [sym_raw_string_literal] = STATE(3011), - [sym_boolean_literal] = STATE(3011), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3006), - [sym_preproc_if_in_attribute_list] = STATE(5576), - [sym_preproc_region] = STATE(1714), - [sym_preproc_endregion] = STATE(1714), - [sym_preproc_line] = STATE(1714), - [sym_preproc_pragma] = STATE(1714), - [sym_preproc_nullable] = STATE(1714), - [sym_preproc_error] = STATE(1714), - [sym_preproc_warning] = STATE(1714), - [sym_preproc_define] = STATE(1714), - [sym_preproc_undef] = STATE(1714), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3440), + [1730] = { + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2901), + [sym__name] = STATE(5889), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2349), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(3626), + [sym_non_lvalue_expression] = STATE(3685), + [sym_lvalue_expression] = STATE(2890), + [sym__expression_statement_expression] = STATE(3836), + [sym_assignment_expression] = STATE(3689), + [sym_binary_expression] = STATE(3836), + [sym_postfix_unary_expression] = STATE(3689), + [sym_prefix_unary_expression] = STATE(3689), + [sym__pointer_indirection_expression] = STATE(2906), + [sym_query_expression] = STATE(3836), + [sym_from_clause] = STATE(6139), + [sym_conditional_expression] = STATE(3836), + [sym_conditional_access_expression] = STATE(3836), + [sym_as_expression] = STATE(3836), + [sym_is_expression] = STATE(3836), + [sym_is_pattern_expression] = STATE(3836), + [sym_cast_expression] = STATE(3836), + [sym_checked_expression] = STATE(3836), + [sym_invocation_expression] = STATE(3689), + [sym_switch_expression] = STATE(3836), + [sym_await_expression] = STATE(3689), + [sym_throw_expression] = STATE(3836), + [sym_element_access_expression] = STATE(2906), + [sym_interpolated_string_expression] = STATE(3836), + [sym_member_access_expression] = STATE(2906), + [sym_object_creation_expression] = STATE(3689), + [sym_parenthesized_expression] = STATE(3689), + [sym__parenthesized_lvalue_expression] = STATE(2906), + [sym_lambda_expression] = STATE(3836), + [sym__lambda_expression_init] = STATE(7456), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3836), + [sym_anonymous_method_expression] = STATE(3836), + [sym_anonymous_object_creation_expression] = STATE(3836), + [sym_implicit_array_creation_expression] = STATE(3836), + [sym_implicit_object_creation_expression] = STATE(3836), + [sym_implicit_stackalloc_expression] = STATE(3836), + [sym_initializer_expression] = STATE(3836), + [sym_default_expression] = STATE(3836), + [sym_with_expression] = STATE(3836), + [sym_sizeof_expression] = STATE(3836), + [sym_typeof_expression] = STATE(3836), + [sym_makeref_expression] = STATE(3836), + [sym_ref_expression] = STATE(3836), + [sym_reftype_expression] = STATE(3836), + [sym_refvalue_expression] = STATE(3836), + [sym_stackalloc_expression] = STATE(3836), + [sym_range_expression] = STATE(3836), + [sym_tuple_expression] = STATE(2906), + [sym_literal] = STATE(3836), + [sym_character_literal] = STATE(3843), + [sym_string_literal] = STATE(3843), + [sym_raw_string_literal] = STATE(3843), + [sym_boolean_literal] = STATE(3843), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3836), + [sym_preproc_if_in_attribute_list] = STATE(5583), + [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(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3477), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1241), - [anon_sym_LPAREN] = ACTIONS(2195), - [anon_sym_ref] = ACTIONS(2197), - [anon_sym_LBRACE] = ACTIONS(1247), - [anon_sym_delegate] = ACTIONS(1249), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1655), + [anon_sym_LPAREN] = ACTIONS(1755), + [anon_sym_ref] = ACTIONS(1757), + [anon_sym_LBRACE] = ACTIONS(1661), + [anon_sym_delegate] = ACTIONS(1663), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1845), + [anon_sym_new] = ACTIONS(1759), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1253), - [anon_sym_BANG] = ACTIONS(2201), - [anon_sym_TILDE] = ACTIONS(2201), - [anon_sym_PLUS_PLUS] = ACTIONS(2201), - [anon_sym_DASH_DASH] = ACTIONS(2201), - [anon_sym_true] = ACTIONS(1259), - [anon_sym_false] = ACTIONS(1259), - [anon_sym_PLUS] = ACTIONS(2199), - [anon_sym_DASH] = ACTIONS(2199), - [anon_sym_STAR] = ACTIONS(1851), - [anon_sym_CARET] = ACTIONS(2201), - [anon_sym_AMP] = ACTIONS(2201), - [anon_sym_this] = ACTIONS(1263), + [anon_sym_checked] = ACTIONS(1667), + [anon_sym_BANG] = ACTIONS(1763), + [anon_sym_TILDE] = ACTIONS(1763), + [anon_sym_PLUS_PLUS] = ACTIONS(1763), + [anon_sym_DASH_DASH] = ACTIONS(1763), + [anon_sym_true] = ACTIONS(1673), + [anon_sym_false] = ACTIONS(1673), + [anon_sym_PLUS] = ACTIONS(1761), + [anon_sym_DASH] = ACTIONS(1761), + [anon_sym_STAR] = ACTIONS(1765), + [anon_sym_CARET] = ACTIONS(1763), + [anon_sym_AMP] = ACTIONS(1763), + [anon_sym_this] = ACTIONS(1677), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1265), + [anon_sym_base] = ACTIONS(1679), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1267), - [anon_sym_unchecked] = ACTIONS(1253), + [sym_predefined_type] = ACTIONS(1681), + [anon_sym_unchecked] = ACTIONS(1667), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1269), - [anon_sym_throw] = ACTIONS(2203), + [anon_sym_default] = ACTIONS(1683), + [anon_sym_throw] = ACTIONS(1767), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2205), - [anon_sym_DOT_DOT] = ACTIONS(2207), + [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), @@ -331578,19 +334168,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1277), - [anon_sym_sizeof] = ACTIONS(1279), - [anon_sym_typeof] = ACTIONS(1281), - [anon_sym___makeref] = ACTIONS(1283), - [anon_sym___reftype] = ACTIONS(1285), - [anon_sym___refvalue] = ACTIONS(1287), - [sym_null_literal] = ACTIONS(1289), - [anon_sym_SQUOTE] = ACTIONS(1291), - [sym_integer_literal] = ACTIONS(1289), - [sym_real_literal] = ACTIONS(1293), - [anon_sym_DQUOTE] = ACTIONS(1295), - [sym_verbatim_string_literal] = ACTIONS(1293), - [aux_sym_preproc_if_token1] = ACTIONS(1297), + [anon_sym_stackalloc] = ACTIONS(1691), + [anon_sym_sizeof] = ACTIONS(1693), + [anon_sym_typeof] = ACTIONS(1695), + [anon_sym___makeref] = ACTIONS(1697), + [anon_sym___reftype] = ACTIONS(1699), + [anon_sym___refvalue] = ACTIONS(1701), + [sym_null_literal] = ACTIONS(1703), + [anon_sym_SQUOTE] = ACTIONS(1705), + [sym_integer_literal] = ACTIONS(1703), + [sym_real_literal] = ACTIONS(1707), + [anon_sym_DQUOTE] = ACTIONS(1709), + [sym_verbatim_string_literal] = ACTIONS(1707), + [aux_sym_preproc_if_token1] = ACTIONS(1711), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -331601,140 +334191,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(1299), - [sym_interpolation_verbatim_start] = ACTIONS(1301), - [sym_interpolation_raw_start] = ACTIONS(1303), - [sym_raw_string_start] = ACTIONS(1305), + [sym_interpolation_regular_start] = ACTIONS(1713), + [sym_interpolation_verbatim_start] = ACTIONS(1715), + [sym_interpolation_raw_start] = ACTIONS(1717), + [sym_raw_string_start] = ACTIONS(1719), }, - [1715] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2420), - [sym__name] = STATE(5875), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2369), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(4151), - [sym_non_lvalue_expression] = STATE(3066), - [sym_lvalue_expression] = STATE(3125), - [sym__expression_statement_expression] = STATE(3006), - [sym_assignment_expression] = STATE(3020), - [sym_binary_expression] = STATE(3006), - [sym_postfix_unary_expression] = STATE(3020), - [sym_prefix_unary_expression] = STATE(3020), - [sym__pointer_indirection_expression] = STATE(2423), - [sym_query_expression] = STATE(3006), - [sym_from_clause] = STATE(6145), - [sym_conditional_expression] = STATE(3006), - [sym_conditional_access_expression] = STATE(3006), - [sym_as_expression] = STATE(3006), - [sym_is_expression] = STATE(3006), - [sym_is_pattern_expression] = STATE(3006), - [sym_cast_expression] = STATE(3006), - [sym_checked_expression] = STATE(3006), - [sym_invocation_expression] = STATE(3020), - [sym_switch_expression] = STATE(3006), - [sym_await_expression] = STATE(3020), - [sym_throw_expression] = STATE(3006), - [sym_element_access_expression] = STATE(2423), - [sym_interpolated_string_expression] = STATE(3006), - [sym_member_access_expression] = STATE(2423), - [sym_object_creation_expression] = STATE(3020), - [sym_parenthesized_expression] = STATE(3020), - [sym__parenthesized_lvalue_expression] = STATE(2423), - [sym_lambda_expression] = STATE(3006), - [sym__lambda_expression_init] = STATE(7538), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3006), - [sym_anonymous_method_expression] = STATE(3006), - [sym_anonymous_object_creation_expression] = STATE(3006), - [sym_implicit_array_creation_expression] = STATE(3006), - [sym_implicit_object_creation_expression] = STATE(3006), - [sym_implicit_stackalloc_expression] = STATE(3006), - [sym_initializer_expression] = STATE(3006), - [sym_default_expression] = STATE(3006), - [sym_with_expression] = STATE(3006), - [sym_sizeof_expression] = STATE(3006), - [sym_typeof_expression] = STATE(3006), - [sym_makeref_expression] = STATE(3006), - [sym_ref_expression] = STATE(3006), - [sym_reftype_expression] = STATE(3006), - [sym_refvalue_expression] = STATE(3006), - [sym_stackalloc_expression] = STATE(3006), - [sym_range_expression] = STATE(3006), - [sym_tuple_expression] = STATE(2423), - [sym_literal] = STATE(3006), - [sym_character_literal] = STATE(3011), - [sym_string_literal] = STATE(3011), - [sym_raw_string_literal] = STATE(3011), - [sym_boolean_literal] = STATE(3011), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3006), - [sym_preproc_if_in_attribute_list] = STATE(5576), - [sym_preproc_region] = STATE(1715), - [sym_preproc_endregion] = STATE(1715), - [sym_preproc_line] = STATE(1715), - [sym_preproc_pragma] = STATE(1715), - [sym_preproc_nullable] = STATE(1715), - [sym_preproc_error] = STATE(1715), - [sym_preproc_warning] = STATE(1715), - [sym_preproc_define] = STATE(1715), - [sym_preproc_undef] = STATE(1715), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3440), + [1731] = { + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(5881), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2386), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(4111), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3110), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3102), + [sym_postfix_unary_expression] = STATE(3079), + [sym_prefix_unary_expression] = STATE(3079), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6153), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3102), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3079), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3102), + [sym_member_access_expression] = STATE(2472), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3079), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7637), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(3102), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3102), + [sym_typeof_expression] = STATE(3102), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2472), + [sym_literal] = STATE(3102), + [sym_character_literal] = STATE(3037), + [sym_string_literal] = STATE(3037), + [sym_raw_string_literal] = STATE(3037), + [sym_boolean_literal] = STATE(3037), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), + [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(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1241), - [anon_sym_LPAREN] = ACTIONS(2195), - [anon_sym_ref] = ACTIONS(2197), - [anon_sym_LBRACE] = ACTIONS(1247), - [anon_sym_delegate] = ACTIONS(1249), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1479), + [anon_sym_LPAREN] = ACTIONS(1895), + [anon_sym_ref] = ACTIONS(1897), + [anon_sym_LBRACE] = ACTIONS(1481), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1845), + [anon_sym_new] = ACTIONS(1899), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1253), - [anon_sym_BANG] = ACTIONS(2201), - [anon_sym_TILDE] = ACTIONS(2201), - [anon_sym_PLUS_PLUS] = ACTIONS(2201), - [anon_sym_DASH_DASH] = ACTIONS(2201), - [anon_sym_true] = ACTIONS(1259), - [anon_sym_false] = ACTIONS(1259), - [anon_sym_PLUS] = ACTIONS(2199), - [anon_sym_DASH] = ACTIONS(2199), - [anon_sym_STAR] = ACTIONS(1851), - [anon_sym_CARET] = ACTIONS(2201), - [anon_sym_AMP] = ACTIONS(2201), - [anon_sym_this] = ACTIONS(1263), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(1903), + [anon_sym_TILDE] = ACTIONS(1903), + [anon_sym_PLUS_PLUS] = ACTIONS(1903), + [anon_sym_DASH_DASH] = ACTIONS(1903), + [anon_sym_true] = ACTIONS(1257), + [anon_sym_false] = ACTIONS(1257), + [anon_sym_PLUS] = ACTIONS(1901), + [anon_sym_DASH] = ACTIONS(1901), + [anon_sym_STAR] = ACTIONS(1905), + [anon_sym_CARET] = ACTIONS(1903), + [anon_sym_AMP] = ACTIONS(1903), + [anon_sym_this] = ACTIONS(83), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1265), + [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1267), - [anon_sym_unchecked] = ACTIONS(1253), + [sym_predefined_type] = ACTIONS(1265), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1269), - [anon_sym_throw] = ACTIONS(2203), + [anon_sym_default] = ACTIONS(1267), + [anon_sym_throw] = ACTIONS(1907), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2205), - [anon_sym_DOT_DOT] = ACTIONS(2207), + [anon_sym_await] = ACTIONS(1909), + [anon_sym_DOT_DOT] = ACTIONS(1911), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -331747,19 +334337,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1277), - [anon_sym_sizeof] = ACTIONS(1279), - [anon_sym_typeof] = ACTIONS(1281), - [anon_sym___makeref] = ACTIONS(1283), - [anon_sym___reftype] = ACTIONS(1285), - [anon_sym___refvalue] = ACTIONS(1287), - [sym_null_literal] = ACTIONS(1289), - [anon_sym_SQUOTE] = ACTIONS(1291), - [sym_integer_literal] = ACTIONS(1289), - [sym_real_literal] = ACTIONS(1293), - [anon_sym_DQUOTE] = ACTIONS(1295), - [sym_verbatim_string_literal] = ACTIONS(1293), - [aux_sym_preproc_if_token1] = ACTIONS(1297), + [anon_sym_stackalloc] = ACTIONS(127), + [anon_sym_sizeof] = ACTIONS(1277), + [anon_sym_typeof] = ACTIONS(1279), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), + [sym_null_literal] = ACTIONS(1287), + [anon_sym_SQUOTE] = ACTIONS(1289), + [sym_integer_literal] = ACTIONS(1287), + [sym_real_literal] = ACTIONS(1291), + [anon_sym_DQUOTE] = ACTIONS(1293), + [sym_verbatim_string_literal] = ACTIONS(1291), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -331770,140 +334360,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(1299), - [sym_interpolation_verbatim_start] = ACTIONS(1301), - [sym_interpolation_raw_start] = ACTIONS(1303), - [sym_raw_string_start] = ACTIONS(1305), + [sym_interpolation_regular_start] = ACTIONS(1297), + [sym_interpolation_verbatim_start] = ACTIONS(1299), + [sym_interpolation_raw_start] = ACTIONS(1301), + [sym_raw_string_start] = ACTIONS(1303), }, - [1716] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(5160), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2204), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(4992), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3520), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3080), - [sym_postfix_unary_expression] = STATE(3111), - [sym_prefix_unary_expression] = STATE(3111), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6154), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3080), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3111), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3080), - [sym_member_access_expression] = STATE(2484), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3111), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7530), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(3080), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3080), - [sym_typeof_expression] = STATE(3080), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2484), - [sym_literal] = STATE(3080), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), - [sym_preproc_region] = STATE(1716), - [sym_preproc_endregion] = STATE(1716), - [sym_preproc_line] = STATE(1716), - [sym_preproc_pragma] = STATE(1716), - [sym_preproc_nullable] = STATE(1716), - [sym_preproc_error] = STATE(1716), - [sym_preproc_warning] = STATE(1716), - [sym_preproc_define] = STATE(1716), - [sym_preproc_undef] = STATE(1716), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [1732] = { + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(3182), + [sym__name] = STATE(5882), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2306), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2262), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(4956), + [sym_non_lvalue_expression] = STATE(4580), + [sym_lvalue_expression] = STATE(3534), + [sym__expression_statement_expression] = STATE(4573), + [sym_assignment_expression] = STATE(4581), + [sym_binary_expression] = STATE(4573), + [sym_postfix_unary_expression] = STATE(4581), + [sym_prefix_unary_expression] = STATE(4581), + [sym__pointer_indirection_expression] = STATE(3144), + [sym_query_expression] = STATE(4573), + [sym_from_clause] = STATE(6133), + [sym_conditional_expression] = STATE(4573), + [sym_conditional_access_expression] = STATE(4573), + [sym_as_expression] = STATE(4573), + [sym_is_expression] = STATE(4573), + [sym_is_pattern_expression] = STATE(4573), + [sym_cast_expression] = STATE(4573), + [sym_checked_expression] = STATE(4573), + [sym_invocation_expression] = STATE(4581), + [sym_switch_expression] = STATE(4573), + [sym_await_expression] = STATE(4581), + [sym_throw_expression] = STATE(4573), + [sym_element_access_expression] = STATE(3144), + [sym_interpolated_string_expression] = STATE(4573), + [sym_member_access_expression] = STATE(3144), + [sym_object_creation_expression] = STATE(4581), + [sym_parenthesized_expression] = STATE(4581), + [sym__parenthesized_lvalue_expression] = STATE(3144), + [sym_lambda_expression] = STATE(4573), + [sym__lambda_expression_init] = STATE(7592), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(4573), + [sym_anonymous_method_expression] = STATE(4573), + [sym_anonymous_object_creation_expression] = STATE(4573), + [sym_implicit_array_creation_expression] = STATE(4573), + [sym_implicit_object_creation_expression] = STATE(4573), + [sym_implicit_stackalloc_expression] = STATE(4573), + [sym_initializer_expression] = STATE(4573), + [sym_default_expression] = STATE(4573), + [sym_with_expression] = STATE(4573), + [sym_sizeof_expression] = STATE(4573), + [sym_typeof_expression] = STATE(4573), + [sym_makeref_expression] = STATE(4573), + [sym_ref_expression] = STATE(4573), + [sym_reftype_expression] = STATE(4573), + [sym_refvalue_expression] = STATE(4573), + [sym_stackalloc_expression] = STATE(4573), + [sym_range_expression] = STATE(4573), + [sym_tuple_expression] = STATE(3144), + [sym_literal] = STATE(4573), + [sym_character_literal] = STATE(4575), + [sym_string_literal] = STATE(4575), + [sym_raw_string_literal] = STATE(4575), + [sym_boolean_literal] = STATE(4575), + [sym_identifier] = STATE(2237), + [sym__reserved_identifier] = STATE(2229), + [sym_preproc_if_in_expression] = STATE(4573), + [sym_preproc_if_in_attribute_list] = STATE(5583), + [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(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3501), + [sym__identifier_token] = ACTIONS(1385), + [anon_sym_alias] = ACTIONS(1387), + [anon_sym_global] = ACTIONS(1387), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1389), + [anon_sym_LPAREN] = ACTIONS(1773), + [anon_sym_ref] = ACTIONS(1775), + [anon_sym_LBRACE] = ACTIONS(1395), + [anon_sym_delegate] = ACTIONS(1397), + [anon_sym_async] = ACTIONS(1045), + [anon_sym_file] = ACTIONS(1387), + [anon_sym_new] = ACTIONS(1465), + [anon_sym_where] = ACTIONS(1387), + [anon_sym_notnull] = ACTIONS(1387), + [anon_sym_unmanaged] = ACTIONS(1387), + [anon_sym_checked] = ACTIONS(1401), + [anon_sym_BANG] = ACTIONS(1779), + [anon_sym_TILDE] = ACTIONS(1779), + [anon_sym_PLUS_PLUS] = ACTIONS(1779), + [anon_sym_DASH_DASH] = ACTIONS(1779), + [anon_sym_true] = ACTIONS(1407), + [anon_sym_false] = ACTIONS(1407), + [anon_sym_PLUS] = ACTIONS(1777), + [anon_sym_DASH] = ACTIONS(1777), + [anon_sym_STAR] = ACTIONS(1471), + [anon_sym_CARET] = ACTIONS(1779), + [anon_sym_AMP] = ACTIONS(1779), + [anon_sym_this] = ACTIONS(1411), + [anon_sym_scoped] = ACTIONS(1413), + [anon_sym_base] = ACTIONS(1415), + [anon_sym_var] = ACTIONS(1417), + [sym_predefined_type] = ACTIONS(1419), + [anon_sym_unchecked] = ACTIONS(1401), + [anon_sym_yield] = ACTIONS(1387), + [anon_sym_default] = ACTIONS(1421), + [anon_sym_throw] = ACTIONS(1781), + [anon_sym_when] = ACTIONS(1387), + [anon_sym_await] = ACTIONS(1783), + [anon_sym_DOT_DOT] = ACTIONS(1785), + [anon_sym_from] = ACTIONS(1429), + [anon_sym_into] = ACTIONS(1387), + [anon_sym_join] = ACTIONS(1387), + [anon_sym_on] = ACTIONS(1387), + [anon_sym_equals] = ACTIONS(1387), + [anon_sym_let] = ACTIONS(1387), + [anon_sym_orderby] = ACTIONS(1387), + [anon_sym_ascending] = ACTIONS(1387), + [anon_sym_descending] = ACTIONS(1387), + [anon_sym_group] = ACTIONS(1387), + [anon_sym_by] = ACTIONS(1387), + [anon_sym_select] = ACTIONS(1387), + [anon_sym_stackalloc] = ACTIONS(1431), + [anon_sym_sizeof] = ACTIONS(1433), + [anon_sym_typeof] = ACTIONS(1435), + [anon_sym___makeref] = ACTIONS(1437), + [anon_sym___reftype] = ACTIONS(1439), + [anon_sym___refvalue] = ACTIONS(1441), + [sym_null_literal] = ACTIONS(1443), + [anon_sym_SQUOTE] = ACTIONS(1445), + [sym_integer_literal] = ACTIONS(1443), + [sym_real_literal] = ACTIONS(1447), + [anon_sym_DQUOTE] = ACTIONS(1449), + [sym_verbatim_string_literal] = ACTIONS(1447), + [aux_sym_preproc_if_token1] = ACTIONS(1451), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + [sym_interpolation_regular_start] = ACTIONS(1453), + [sym_interpolation_verbatim_start] = ACTIONS(1455), + [sym_interpolation_raw_start] = ACTIONS(1457), + [sym_raw_string_start] = ACTIONS(1459), + }, + [1733] = { + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2901), + [sym__name] = STATE(5883), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2359), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(3554), + [sym_non_lvalue_expression] = STATE(3685), + [sym_lvalue_expression] = STATE(2944), + [sym__expression_statement_expression] = STATE(3836), + [sym_assignment_expression] = STATE(3689), + [sym_binary_expression] = STATE(3836), + [sym_postfix_unary_expression] = STATE(3689), + [sym_prefix_unary_expression] = STATE(3689), + [sym__pointer_indirection_expression] = STATE(2906), + [sym_query_expression] = STATE(3836), + [sym_from_clause] = STATE(6139), + [sym_conditional_expression] = STATE(3836), + [sym_conditional_access_expression] = STATE(3836), + [sym_as_expression] = STATE(3836), + [sym_is_expression] = STATE(3836), + [sym_is_pattern_expression] = STATE(3836), + [sym_cast_expression] = STATE(3836), + [sym_checked_expression] = STATE(3836), + [sym_invocation_expression] = STATE(3689), + [sym_switch_expression] = STATE(3836), + [sym_await_expression] = STATE(3689), + [sym_throw_expression] = STATE(3836), + [sym_element_access_expression] = STATE(2906), + [sym_interpolated_string_expression] = STATE(3836), + [sym_member_access_expression] = STATE(2906), + [sym_object_creation_expression] = STATE(3689), + [sym_parenthesized_expression] = STATE(3689), + [sym__parenthesized_lvalue_expression] = STATE(2906), + [sym_lambda_expression] = STATE(3836), + [sym__lambda_expression_init] = STATE(7516), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3836), + [sym_anonymous_method_expression] = STATE(3836), + [sym_anonymous_object_creation_expression] = STATE(3836), + [sym_implicit_array_creation_expression] = STATE(3836), + [sym_implicit_object_creation_expression] = STATE(3836), + [sym_implicit_stackalloc_expression] = STATE(3836), + [sym_initializer_expression] = STATE(3836), + [sym_default_expression] = STATE(3836), + [sym_with_expression] = STATE(3836), + [sym_sizeof_expression] = STATE(3836), + [sym_typeof_expression] = STATE(3836), + [sym_makeref_expression] = STATE(3836), + [sym_ref_expression] = STATE(3836), + [sym_reftype_expression] = STATE(3836), + [sym_refvalue_expression] = STATE(3836), + [sym_stackalloc_expression] = STATE(3836), + [sym_range_expression] = STATE(3836), + [sym_tuple_expression] = STATE(2906), + [sym_literal] = STATE(3836), + [sym_character_literal] = STATE(3843), + [sym_string_literal] = STATE(3843), + [sym_raw_string_literal] = STATE(3843), + [sym_boolean_literal] = STATE(3843), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3836), + [sym_preproc_if_in_attribute_list] = STATE(5583), + [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(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3477), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1481), - [anon_sym_LPAREN] = ACTIONS(43), - [anon_sym_ref] = ACTIONS(661), - [anon_sym_LBRACE] = ACTIONS(1487), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1655), + [anon_sym_LPAREN] = ACTIONS(1657), + [anon_sym_ref] = ACTIONS(1659), + [anon_sym_LBRACE] = ACTIONS(1661), + [anon_sym_delegate] = ACTIONS(1663), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1061), + [anon_sym_new] = ACTIONS(1665), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = 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(1585), - [anon_sym_DASH] = ACTIONS(1585), - [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(1587), - [anon_sym_AMP] = ACTIONS(1587), - [anon_sym_this] = ACTIONS(83), + [anon_sym_checked] = ACTIONS(1667), + [anon_sym_BANG] = ACTIONS(1671), + [anon_sym_TILDE] = ACTIONS(1671), + [anon_sym_PLUS_PLUS] = ACTIONS(1671), + [anon_sym_DASH_DASH] = ACTIONS(1671), + [anon_sym_true] = ACTIONS(1673), + [anon_sym_false] = ACTIONS(1673), + [anon_sym_PLUS] = ACTIONS(1669), + [anon_sym_DASH] = ACTIONS(1669), + [anon_sym_STAR] = ACTIONS(1675), + [anon_sym_CARET] = ACTIONS(1671), + [anon_sym_AMP] = ACTIONS(1671), + [anon_sym_this] = ACTIONS(1677), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), + [anon_sym_base] = ACTIONS(1679), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1067), + [sym_predefined_type] = ACTIONS(1681), + [anon_sym_unchecked] = ACTIONS(1667), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1589), + [anon_sym_default] = ACTIONS(1683), + [anon_sym_throw] = ACTIONS(1685), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1591), - [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), @@ -331916,19 +334675,19 @@ static const uint16_t ts_parse_table[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(1089), + [anon_sym_stackalloc] = ACTIONS(1691), + [anon_sym_sizeof] = ACTIONS(1693), + [anon_sym_typeof] = ACTIONS(1695), + [anon_sym___makeref] = ACTIONS(1697), + [anon_sym___reftype] = ACTIONS(1699), + [anon_sym___refvalue] = ACTIONS(1701), + [sym_null_literal] = ACTIONS(1703), + [anon_sym_SQUOTE] = ACTIONS(1705), + [sym_integer_literal] = ACTIONS(1703), + [sym_real_literal] = ACTIONS(1707), + [anon_sym_DQUOTE] = ACTIONS(1709), + [sym_verbatim_string_literal] = ACTIONS(1707), + [aux_sym_preproc_if_token1] = ACTIONS(1711), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -331939,140 +334698,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(1713), + [sym_interpolation_verbatim_start] = ACTIONS(1715), + [sym_interpolation_raw_start] = ACTIONS(1717), + [sym_raw_string_start] = ACTIONS(1719), }, - [1717] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(5160), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2204), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(4995), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3520), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3080), - [sym_postfix_unary_expression] = STATE(3111), - [sym_prefix_unary_expression] = STATE(3111), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6154), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3080), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3111), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3080), - [sym_member_access_expression] = STATE(2484), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3111), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7530), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(3080), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3080), - [sym_typeof_expression] = STATE(3080), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2484), - [sym_literal] = STATE(3080), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), - [sym_preproc_region] = STATE(1717), - [sym_preproc_endregion] = STATE(1717), - [sym_preproc_line] = STATE(1717), - [sym_preproc_pragma] = STATE(1717), - [sym_preproc_nullable] = STATE(1717), - [sym_preproc_error] = STATE(1717), - [sym_preproc_warning] = STATE(1717), - [sym_preproc_define] = STATE(1717), - [sym_preproc_undef] = STATE(1717), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [1734] = { + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2416), + [sym__name] = STATE(5890), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2193), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(2904), + [sym_non_lvalue_expression] = STATE(3040), + [sym_lvalue_expression] = STATE(3109), + [sym__expression_statement_expression] = STATE(3035), + [sym_assignment_expression] = STATE(3043), + [sym_binary_expression] = STATE(3035), + [sym_postfix_unary_expression] = STATE(3043), + [sym_prefix_unary_expression] = STATE(3043), + [sym__pointer_indirection_expression] = STATE(2415), + [sym_query_expression] = STATE(3035), + [sym_from_clause] = STATE(6138), + [sym_conditional_expression] = STATE(3035), + [sym_conditional_access_expression] = STATE(3035), + [sym_as_expression] = STATE(3035), + [sym_is_expression] = STATE(3035), + [sym_is_pattern_expression] = STATE(3035), + [sym_cast_expression] = STATE(3035), + [sym_checked_expression] = STATE(3035), + [sym_invocation_expression] = STATE(3043), + [sym_switch_expression] = STATE(3035), + [sym_await_expression] = STATE(3043), + [sym_throw_expression] = STATE(3035), + [sym_element_access_expression] = STATE(2415), + [sym_interpolated_string_expression] = STATE(3035), + [sym_member_access_expression] = STATE(2415), + [sym_object_creation_expression] = STATE(3043), + [sym_parenthesized_expression] = STATE(3043), + [sym__parenthesized_lvalue_expression] = STATE(2415), + [sym_lambda_expression] = STATE(3035), + [sym__lambda_expression_init] = STATE(7374), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3035), + [sym_anonymous_method_expression] = STATE(3035), + [sym_anonymous_object_creation_expression] = STATE(3035), + [sym_implicit_array_creation_expression] = STATE(3035), + [sym_implicit_object_creation_expression] = STATE(3035), + [sym_implicit_stackalloc_expression] = STATE(3035), + [sym_initializer_expression] = STATE(3035), + [sym_default_expression] = STATE(3035), + [sym_with_expression] = STATE(3035), + [sym_sizeof_expression] = STATE(3035), + [sym_typeof_expression] = STATE(3035), + [sym_makeref_expression] = STATE(3035), + [sym_ref_expression] = STATE(3035), + [sym_reftype_expression] = STATE(3035), + [sym_refvalue_expression] = STATE(3035), + [sym_stackalloc_expression] = STATE(3035), + [sym_range_expression] = STATE(3035), + [sym_tuple_expression] = STATE(2415), + [sym_literal] = STATE(3035), + [sym_character_literal] = STATE(3037), + [sym_string_literal] = STATE(3037), + [sym_raw_string_literal] = STATE(3037), + [sym_boolean_literal] = STATE(3037), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3035), + [sym_preproc_if_in_attribute_list] = STATE(5583), + [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(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3455), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1481), - [anon_sym_LPAREN] = ACTIONS(43), - [anon_sym_ref] = ACTIONS(661), - [anon_sym_LBRACE] = ACTIONS(1487), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1239), + [anon_sym_LPAREN] = ACTIONS(1241), + [anon_sym_ref] = ACTIONS(1243), + [anon_sym_LBRACE] = ACTIONS(1245), + [anon_sym_delegate] = ACTIONS(1247), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1061), + [anon_sym_new] = ACTIONS(1249), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = 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(1585), - [anon_sym_DASH] = ACTIONS(1585), - [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(1587), - [anon_sym_AMP] = ACTIONS(1587), - [anon_sym_this] = ACTIONS(83), + [anon_sym_checked] = ACTIONS(1251), + [anon_sym_BANG] = ACTIONS(1255), + [anon_sym_TILDE] = ACTIONS(1255), + [anon_sym_PLUS_PLUS] = ACTIONS(1255), + [anon_sym_DASH_DASH] = ACTIONS(1255), + [anon_sym_true] = ACTIONS(1257), + [anon_sym_false] = ACTIONS(1257), + [anon_sym_PLUS] = ACTIONS(1253), + [anon_sym_DASH] = ACTIONS(1253), + [anon_sym_STAR] = ACTIONS(1259), + [anon_sym_CARET] = ACTIONS(1255), + [anon_sym_AMP] = ACTIONS(1255), + [anon_sym_this] = ACTIONS(1261), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), + [anon_sym_base] = ACTIONS(1263), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1067), + [sym_predefined_type] = ACTIONS(1265), + [anon_sym_unchecked] = ACTIONS(1251), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1589), + [anon_sym_default] = ACTIONS(1267), + [anon_sym_throw] = ACTIONS(1269), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1591), - [anon_sym_DOT_DOT] = ACTIONS(123), + [anon_sym_await] = ACTIONS(1271), + [anon_sym_DOT_DOT] = ACTIONS(1273), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -332085,19 +334844,19 @@ static const uint16_t ts_parse_table[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(1089), + [anon_sym_stackalloc] = ACTIONS(1275), + [anon_sym_sizeof] = ACTIONS(1277), + [anon_sym_typeof] = ACTIONS(1279), + [anon_sym___makeref] = ACTIONS(1281), + [anon_sym___reftype] = ACTIONS(1283), + [anon_sym___refvalue] = ACTIONS(1285), + [sym_null_literal] = ACTIONS(1287), + [anon_sym_SQUOTE] = ACTIONS(1289), + [sym_integer_literal] = ACTIONS(1287), + [sym_real_literal] = ACTIONS(1291), + [anon_sym_DQUOTE] = ACTIONS(1293), + [sym_verbatim_string_literal] = ACTIONS(1291), + [aux_sym_preproc_if_token1] = ACTIONS(1295), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -332108,140 +334867,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(1297), + [sym_interpolation_verbatim_start] = ACTIONS(1299), + [sym_interpolation_raw_start] = ACTIONS(1301), + [sym_raw_string_start] = ACTIONS(1303), }, - [1718] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2420), - [sym__name] = STATE(5875), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2369), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(4153), - [sym_non_lvalue_expression] = STATE(3066), - [sym_lvalue_expression] = STATE(3125), - [sym__expression_statement_expression] = STATE(3006), - [sym_assignment_expression] = STATE(3020), - [sym_binary_expression] = STATE(3006), - [sym_postfix_unary_expression] = STATE(3020), - [sym_prefix_unary_expression] = STATE(3020), - [sym__pointer_indirection_expression] = STATE(2423), - [sym_query_expression] = STATE(3006), - [sym_from_clause] = STATE(6145), - [sym_conditional_expression] = STATE(3006), - [sym_conditional_access_expression] = STATE(3006), - [sym_as_expression] = STATE(3006), - [sym_is_expression] = STATE(3006), - [sym_is_pattern_expression] = STATE(3006), - [sym_cast_expression] = STATE(3006), - [sym_checked_expression] = STATE(3006), - [sym_invocation_expression] = STATE(3020), - [sym_switch_expression] = STATE(3006), - [sym_await_expression] = STATE(3020), - [sym_throw_expression] = STATE(3006), - [sym_element_access_expression] = STATE(2423), - [sym_interpolated_string_expression] = STATE(3006), - [sym_member_access_expression] = STATE(2423), - [sym_object_creation_expression] = STATE(3020), - [sym_parenthesized_expression] = STATE(3020), - [sym__parenthesized_lvalue_expression] = STATE(2423), - [sym_lambda_expression] = STATE(3006), - [sym__lambda_expression_init] = STATE(7538), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3006), - [sym_anonymous_method_expression] = STATE(3006), - [sym_anonymous_object_creation_expression] = STATE(3006), - [sym_implicit_array_creation_expression] = STATE(3006), - [sym_implicit_object_creation_expression] = STATE(3006), - [sym_implicit_stackalloc_expression] = STATE(3006), - [sym_initializer_expression] = STATE(3006), - [sym_default_expression] = STATE(3006), - [sym_with_expression] = STATE(3006), - [sym_sizeof_expression] = STATE(3006), - [sym_typeof_expression] = STATE(3006), - [sym_makeref_expression] = STATE(3006), - [sym_ref_expression] = STATE(3006), - [sym_reftype_expression] = STATE(3006), - [sym_refvalue_expression] = STATE(3006), - [sym_stackalloc_expression] = STATE(3006), - [sym_range_expression] = STATE(3006), - [sym_tuple_expression] = STATE(2423), - [sym_literal] = STATE(3006), - [sym_character_literal] = STATE(3011), - [sym_string_literal] = STATE(3011), - [sym_raw_string_literal] = STATE(3011), - [sym_boolean_literal] = STATE(3011), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3006), - [sym_preproc_if_in_attribute_list] = STATE(5576), - [sym_preproc_region] = STATE(1718), - [sym_preproc_endregion] = STATE(1718), - [sym_preproc_line] = STATE(1718), - [sym_preproc_pragma] = STATE(1718), - [sym_preproc_nullable] = STATE(1718), - [sym_preproc_error] = STATE(1718), - [sym_preproc_warning] = STATE(1718), - [sym_preproc_define] = STATE(1718), - [sym_preproc_undef] = STATE(1718), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3440), + [1735] = { + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2901), + [sym__name] = STATE(5889), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2349), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(3554), + [sym_non_lvalue_expression] = STATE(3685), + [sym_lvalue_expression] = STATE(2890), + [sym__expression_statement_expression] = STATE(3836), + [sym_assignment_expression] = STATE(3689), + [sym_binary_expression] = STATE(3836), + [sym_postfix_unary_expression] = STATE(3689), + [sym_prefix_unary_expression] = STATE(3689), + [sym__pointer_indirection_expression] = STATE(2906), + [sym_query_expression] = STATE(3836), + [sym_from_clause] = STATE(6139), + [sym_conditional_expression] = STATE(3836), + [sym_conditional_access_expression] = STATE(3836), + [sym_as_expression] = STATE(3836), + [sym_is_expression] = STATE(3836), + [sym_is_pattern_expression] = STATE(3836), + [sym_cast_expression] = STATE(3836), + [sym_checked_expression] = STATE(3836), + [sym_invocation_expression] = STATE(3689), + [sym_switch_expression] = STATE(3836), + [sym_await_expression] = STATE(3689), + [sym_throw_expression] = STATE(3836), + [sym_element_access_expression] = STATE(2906), + [sym_interpolated_string_expression] = STATE(3836), + [sym_member_access_expression] = STATE(2906), + [sym_object_creation_expression] = STATE(3689), + [sym_parenthesized_expression] = STATE(3689), + [sym__parenthesized_lvalue_expression] = STATE(2906), + [sym_lambda_expression] = STATE(3836), + [sym__lambda_expression_init] = STATE(7456), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3836), + [sym_anonymous_method_expression] = STATE(3836), + [sym_anonymous_object_creation_expression] = STATE(3836), + [sym_implicit_array_creation_expression] = STATE(3836), + [sym_implicit_object_creation_expression] = STATE(3836), + [sym_implicit_stackalloc_expression] = STATE(3836), + [sym_initializer_expression] = STATE(3836), + [sym_default_expression] = STATE(3836), + [sym_with_expression] = STATE(3836), + [sym_sizeof_expression] = STATE(3836), + [sym_typeof_expression] = STATE(3836), + [sym_makeref_expression] = STATE(3836), + [sym_ref_expression] = STATE(3836), + [sym_reftype_expression] = STATE(3836), + [sym_refvalue_expression] = STATE(3836), + [sym_stackalloc_expression] = STATE(3836), + [sym_range_expression] = STATE(3836), + [sym_tuple_expression] = STATE(2906), + [sym_literal] = STATE(3836), + [sym_character_literal] = STATE(3843), + [sym_string_literal] = STATE(3843), + [sym_raw_string_literal] = STATE(3843), + [sym_boolean_literal] = STATE(3843), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3836), + [sym_preproc_if_in_attribute_list] = STATE(5583), + [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(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3477), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1241), - [anon_sym_LPAREN] = ACTIONS(2195), - [anon_sym_ref] = ACTIONS(2197), - [anon_sym_LBRACE] = ACTIONS(1247), - [anon_sym_delegate] = ACTIONS(1249), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1655), + [anon_sym_LPAREN] = ACTIONS(1755), + [anon_sym_ref] = ACTIONS(1757), + [anon_sym_LBRACE] = ACTIONS(1661), + [anon_sym_delegate] = ACTIONS(1663), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1845), + [anon_sym_new] = ACTIONS(1759), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1253), - [anon_sym_BANG] = ACTIONS(2201), - [anon_sym_TILDE] = ACTIONS(2201), - [anon_sym_PLUS_PLUS] = ACTIONS(2201), - [anon_sym_DASH_DASH] = ACTIONS(2201), - [anon_sym_true] = ACTIONS(1259), - [anon_sym_false] = ACTIONS(1259), - [anon_sym_PLUS] = ACTIONS(2199), - [anon_sym_DASH] = ACTIONS(2199), - [anon_sym_STAR] = ACTIONS(1851), - [anon_sym_CARET] = ACTIONS(2201), - [anon_sym_AMP] = ACTIONS(2201), - [anon_sym_this] = ACTIONS(1263), + [anon_sym_checked] = ACTIONS(1667), + [anon_sym_BANG] = ACTIONS(1763), + [anon_sym_TILDE] = ACTIONS(1763), + [anon_sym_PLUS_PLUS] = ACTIONS(1763), + [anon_sym_DASH_DASH] = ACTIONS(1763), + [anon_sym_true] = ACTIONS(1673), + [anon_sym_false] = ACTIONS(1673), + [anon_sym_PLUS] = ACTIONS(1761), + [anon_sym_DASH] = ACTIONS(1761), + [anon_sym_STAR] = ACTIONS(1765), + [anon_sym_CARET] = ACTIONS(1763), + [anon_sym_AMP] = ACTIONS(1763), + [anon_sym_this] = ACTIONS(1677), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1265), + [anon_sym_base] = ACTIONS(1679), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1267), - [anon_sym_unchecked] = ACTIONS(1253), + [sym_predefined_type] = ACTIONS(1681), + [anon_sym_unchecked] = ACTIONS(1667), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1269), - [anon_sym_throw] = ACTIONS(2203), + [anon_sym_default] = ACTIONS(1683), + [anon_sym_throw] = ACTIONS(1767), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2205), - [anon_sym_DOT_DOT] = ACTIONS(2207), + [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), @@ -332254,19 +335013,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1277), - [anon_sym_sizeof] = ACTIONS(1279), - [anon_sym_typeof] = ACTIONS(1281), - [anon_sym___makeref] = ACTIONS(1283), - [anon_sym___reftype] = ACTIONS(1285), - [anon_sym___refvalue] = ACTIONS(1287), - [sym_null_literal] = ACTIONS(1289), - [anon_sym_SQUOTE] = ACTIONS(1291), - [sym_integer_literal] = ACTIONS(1289), - [sym_real_literal] = ACTIONS(1293), - [anon_sym_DQUOTE] = ACTIONS(1295), - [sym_verbatim_string_literal] = ACTIONS(1293), - [aux_sym_preproc_if_token1] = ACTIONS(1297), + [anon_sym_stackalloc] = ACTIONS(1691), + [anon_sym_sizeof] = ACTIONS(1693), + [anon_sym_typeof] = ACTIONS(1695), + [anon_sym___makeref] = ACTIONS(1697), + [anon_sym___reftype] = ACTIONS(1699), + [anon_sym___refvalue] = ACTIONS(1701), + [sym_null_literal] = ACTIONS(1703), + [anon_sym_SQUOTE] = ACTIONS(1705), + [sym_integer_literal] = ACTIONS(1703), + [sym_real_literal] = ACTIONS(1707), + [anon_sym_DQUOTE] = ACTIONS(1709), + [sym_verbatim_string_literal] = ACTIONS(1707), + [aux_sym_preproc_if_token1] = ACTIONS(1711), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -332277,140 +335036,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(1299), - [sym_interpolation_verbatim_start] = ACTIONS(1301), - [sym_interpolation_raw_start] = ACTIONS(1303), - [sym_raw_string_start] = ACTIONS(1305), + [sym_interpolation_regular_start] = ACTIONS(1713), + [sym_interpolation_verbatim_start] = ACTIONS(1715), + [sym_interpolation_raw_start] = ACTIONS(1717), + [sym_raw_string_start] = ACTIONS(1719), }, - [1719] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(5910), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2247), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(5150), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3379), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3080), - [sym_postfix_unary_expression] = STATE(3111), - [sym_prefix_unary_expression] = STATE(3111), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6154), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3080), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3111), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3080), - [sym_member_access_expression] = STATE(2484), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3111), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7575), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(3080), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3080), - [sym_typeof_expression] = STATE(3080), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2484), - [sym_literal] = STATE(3080), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), - [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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [1736] = { + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(5152), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2196), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(3507), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3640), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3102), + [sym_postfix_unary_expression] = STATE(3079), + [sym_prefix_unary_expression] = STATE(3079), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6137), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3102), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3079), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3102), + [sym_member_access_expression] = STATE(2472), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3079), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7645), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(3102), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3102), + [sym_typeof_expression] = STATE(3102), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2472), + [sym_literal] = STATE(3102), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), + [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(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1481), - [anon_sym_LPAREN] = ACTIONS(895), - [anon_sym_ref] = ACTIONS(897), - [anon_sym_LBRACE] = ACTIONS(1487), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1479), + [anon_sym_LPAREN] = ACTIONS(2081), + [anon_sym_ref] = ACTIONS(2083), + [anon_sym_LBRACE] = ACTIONS(1481), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1061), + [anon_sym_new] = ACTIONS(1059), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1067), - [anon_sym_BANG] = ACTIONS(1495), - [anon_sym_TILDE] = ACTIONS(1495), - [anon_sym_PLUS_PLUS] = ACTIONS(1495), - [anon_sym_DASH_DASH] = ACTIONS(1495), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(2087), + [anon_sym_TILDE] = ACTIONS(2087), + [anon_sym_PLUS_PLUS] = ACTIONS(2087), + [anon_sym_DASH_DASH] = ACTIONS(2087), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1493), - [anon_sym_DASH] = ACTIONS(1493), - [anon_sym_STAR] = ACTIONS(905), - [anon_sym_CARET] = ACTIONS(1495), - [anon_sym_AMP] = ACTIONS(1495), + [anon_sym_PLUS] = ACTIONS(2085), + [anon_sym_DASH] = ACTIONS(2085), + [anon_sym_STAR] = ACTIONS(81), + [anon_sym_CARET] = ACTIONS(2087), + [anon_sym_AMP] = ACTIONS(2087), [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(1067), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1079), + [anon_sym_throw] = ACTIONS(2089), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1081), - [anon_sym_DOT_DOT] = ACTIONS(911), + [anon_sym_await] = ACTIONS(2091), + [anon_sym_DOT_DOT] = ACTIONS(2093), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -332435,7 +335194,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(1089), + [aux_sym_preproc_if_token1] = ACTIONS(2095), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -332451,137 +335210,306 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_interpolation_raw_start] = ACTIONS(155), [sym_raw_string_start] = ACTIONS(157), }, - [1720] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(5160), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2204), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(5590), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3677), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3080), - [sym_postfix_unary_expression] = STATE(3111), - [sym_prefix_unary_expression] = STATE(3111), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6153), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3080), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3111), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3080), - [sym_member_access_expression] = STATE(2484), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3111), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7549), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(3080), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3080), - [sym_typeof_expression] = STATE(3080), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2484), - [sym_literal] = STATE(3080), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2267), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), - [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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), - [sym__identifier_token] = ACTIONS(25), - [anon_sym_alias] = ACTIONS(29), - [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1481), - [anon_sym_LPAREN] = ACTIONS(2047), - [anon_sym_ref] = ACTIONS(2049), - [anon_sym_LBRACE] = ACTIONS(1487), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), - [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1061), - [anon_sym_where] = ACTIONS(29), - [anon_sym_notnull] = ACTIONS(29), - [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1067), - [anon_sym_BANG] = ACTIONS(2053), - [anon_sym_TILDE] = ACTIONS(2053), - [anon_sym_PLUS_PLUS] = ACTIONS(2053), - [anon_sym_DASH_DASH] = ACTIONS(2053), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(2051), - [anon_sym_DASH] = ACTIONS(2051), - [anon_sym_STAR] = ACTIONS(2055), - [anon_sym_CARET] = ACTIONS(2053), - [anon_sym_AMP] = ACTIONS(2053), - [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(1067), - [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(2057), - [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2059), - [anon_sym_DOT_DOT] = ACTIONS(2061), - [anon_sym_from] = ACTIONS(125), - [anon_sym_into] = ACTIONS(29), + [1737] = { + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(3182), + [sym__name] = STATE(5882), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2306), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2262), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(4428), + [sym_non_lvalue_expression] = STATE(4580), + [sym_lvalue_expression] = STATE(3312), + [sym__expression_statement_expression] = STATE(4573), + [sym_assignment_expression] = STATE(4581), + [sym_binary_expression] = STATE(4573), + [sym_postfix_unary_expression] = STATE(4581), + [sym_prefix_unary_expression] = STATE(4581), + [sym__pointer_indirection_expression] = STATE(3144), + [sym_query_expression] = STATE(4573), + [sym_from_clause] = STATE(6160), + [sym_conditional_expression] = STATE(4573), + [sym_conditional_access_expression] = STATE(4573), + [sym_as_expression] = STATE(4573), + [sym_is_expression] = STATE(4573), + [sym_is_pattern_expression] = STATE(4573), + [sym_cast_expression] = STATE(4573), + [sym_checked_expression] = STATE(4573), + [sym_invocation_expression] = STATE(4581), + [sym_switch_expression] = STATE(4573), + [sym_await_expression] = STATE(4581), + [sym_throw_expression] = STATE(4573), + [sym_element_access_expression] = STATE(3144), + [sym_interpolated_string_expression] = STATE(4573), + [sym_member_access_expression] = STATE(3144), + [sym_object_creation_expression] = STATE(4581), + [sym_parenthesized_expression] = STATE(4581), + [sym__parenthesized_lvalue_expression] = STATE(3144), + [sym_lambda_expression] = STATE(4573), + [sym__lambda_expression_init] = STATE(7399), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(4573), + [sym_anonymous_method_expression] = STATE(4573), + [sym_anonymous_object_creation_expression] = STATE(4573), + [sym_implicit_array_creation_expression] = STATE(4573), + [sym_implicit_object_creation_expression] = STATE(4573), + [sym_implicit_stackalloc_expression] = STATE(4573), + [sym_initializer_expression] = STATE(4573), + [sym_default_expression] = STATE(4573), + [sym_with_expression] = STATE(4573), + [sym_sizeof_expression] = STATE(4573), + [sym_typeof_expression] = STATE(4573), + [sym_makeref_expression] = STATE(4573), + [sym_ref_expression] = STATE(4573), + [sym_reftype_expression] = STATE(4573), + [sym_refvalue_expression] = STATE(4573), + [sym_stackalloc_expression] = STATE(4573), + [sym_range_expression] = STATE(4573), + [sym_tuple_expression] = STATE(3144), + [sym_literal] = STATE(4573), + [sym_character_literal] = STATE(4575), + [sym_string_literal] = STATE(4575), + [sym_raw_string_literal] = STATE(4575), + [sym_boolean_literal] = STATE(4575), + [sym_identifier] = STATE(2237), + [sym__reserved_identifier] = STATE(2229), + [sym_preproc_if_in_expression] = STATE(4573), + [sym_preproc_if_in_attribute_list] = STATE(5583), + [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(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3501), + [sym__identifier_token] = ACTIONS(1385), + [anon_sym_alias] = ACTIONS(1387), + [anon_sym_global] = ACTIONS(1387), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1389), + [anon_sym_LPAREN] = ACTIONS(1461), + [anon_sym_ref] = ACTIONS(1463), + [anon_sym_LBRACE] = ACTIONS(1395), + [anon_sym_delegate] = ACTIONS(1397), + [anon_sym_async] = ACTIONS(1045), + [anon_sym_file] = ACTIONS(1387), + [anon_sym_new] = ACTIONS(1465), + [anon_sym_where] = ACTIONS(1387), + [anon_sym_notnull] = ACTIONS(1387), + [anon_sym_unmanaged] = ACTIONS(1387), + [anon_sym_checked] = ACTIONS(1401), + [anon_sym_BANG] = ACTIONS(1469), + [anon_sym_TILDE] = ACTIONS(1469), + [anon_sym_PLUS_PLUS] = ACTIONS(1469), + [anon_sym_DASH_DASH] = ACTIONS(1469), + [anon_sym_true] = ACTIONS(1407), + [anon_sym_false] = ACTIONS(1407), + [anon_sym_PLUS] = ACTIONS(1467), + [anon_sym_DASH] = ACTIONS(1467), + [anon_sym_STAR] = ACTIONS(1471), + [anon_sym_CARET] = ACTIONS(1469), + [anon_sym_AMP] = ACTIONS(1469), + [anon_sym_this] = ACTIONS(1411), + [anon_sym_scoped] = ACTIONS(1413), + [anon_sym_base] = ACTIONS(1415), + [anon_sym_var] = ACTIONS(1417), + [sym_predefined_type] = ACTIONS(1419), + [anon_sym_unchecked] = ACTIONS(1401), + [anon_sym_yield] = ACTIONS(1387), + [anon_sym_default] = ACTIONS(1421), + [anon_sym_throw] = ACTIONS(1473), + [anon_sym_when] = ACTIONS(1387), + [anon_sym_await] = ACTIONS(1475), + [anon_sym_DOT_DOT] = ACTIONS(1477), + [anon_sym_from] = ACTIONS(1429), + [anon_sym_into] = ACTIONS(1387), + [anon_sym_join] = ACTIONS(1387), + [anon_sym_on] = ACTIONS(1387), + [anon_sym_equals] = ACTIONS(1387), + [anon_sym_let] = ACTIONS(1387), + [anon_sym_orderby] = ACTIONS(1387), + [anon_sym_ascending] = ACTIONS(1387), + [anon_sym_descending] = ACTIONS(1387), + [anon_sym_group] = ACTIONS(1387), + [anon_sym_by] = ACTIONS(1387), + [anon_sym_select] = ACTIONS(1387), + [anon_sym_stackalloc] = ACTIONS(1431), + [anon_sym_sizeof] = ACTIONS(1433), + [anon_sym_typeof] = ACTIONS(1435), + [anon_sym___makeref] = ACTIONS(1437), + [anon_sym___reftype] = ACTIONS(1439), + [anon_sym___refvalue] = ACTIONS(1441), + [sym_null_literal] = ACTIONS(1443), + [anon_sym_SQUOTE] = ACTIONS(1445), + [sym_integer_literal] = ACTIONS(1443), + [sym_real_literal] = ACTIONS(1447), + [anon_sym_DQUOTE] = ACTIONS(1449), + [sym_verbatim_string_literal] = ACTIONS(1447), + [aux_sym_preproc_if_token1] = ACTIONS(1451), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + [sym_interpolation_regular_start] = ACTIONS(1453), + [sym_interpolation_verbatim_start] = ACTIONS(1455), + [sym_interpolation_raw_start] = ACTIONS(1457), + [sym_raw_string_start] = ACTIONS(1459), + }, + [1738] = { + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(5873), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2238), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(5555), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3468), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3102), + [sym_postfix_unary_expression] = STATE(3079), + [sym_prefix_unary_expression] = STATE(3079), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6134), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3102), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3079), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3102), + [sym_member_access_expression] = STATE(2472), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3079), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7309), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(3102), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3102), + [sym_typeof_expression] = STATE(3102), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2472), + [sym_literal] = STATE(3102), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), + [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(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), + [sym__identifier_token] = ACTIONS(25), + [anon_sym_alias] = ACTIONS(29), + [anon_sym_global] = ACTIONS(29), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1479), + [anon_sym_LPAREN] = ACTIONS(659), + [anon_sym_ref] = ACTIONS(663), + [anon_sym_LBRACE] = ACTIONS(1481), + [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(1485), + [anon_sym_TILDE] = ACTIONS(1485), + [anon_sym_PLUS_PLUS] = ACTIONS(1485), + [anon_sym_DASH_DASH] = ACTIONS(1485), + [anon_sym_true] = ACTIONS(77), + [anon_sym_false] = ACTIONS(77), + [anon_sym_PLUS] = ACTIONS(1483), + [anon_sym_DASH] = ACTIONS(1483), + [anon_sym_STAR] = ACTIONS(683), + [anon_sym_CARET] = ACTIONS(1485), + [anon_sym_AMP] = ACTIONS(1485), + [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), @@ -332604,7 +335532,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(1089), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -332620,135 +335548,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), }, - [1721] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(5160), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2204), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(3543), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3461), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3080), - [sym_postfix_unary_expression] = STATE(3111), - [sym_prefix_unary_expression] = STATE(3111), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6154), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3080), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3111), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3080), - [sym_member_access_expression] = STATE(2484), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3111), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7547), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(3080), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3080), - [sym_typeof_expression] = STATE(3080), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2484), - [sym_literal] = STATE(3080), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), - [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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [1739] = { + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(5873), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2238), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(5558), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3468), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3102), + [sym_postfix_unary_expression] = STATE(3079), + [sym_prefix_unary_expression] = STATE(3079), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6134), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3102), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3079), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3102), + [sym_member_access_expression] = STATE(2472), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3079), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7309), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(3102), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3102), + [sym_typeof_expression] = STATE(3102), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2472), + [sym_literal] = STATE(3102), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), + [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(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1481), - [anon_sym_LPAREN] = ACTIONS(1497), - [anon_sym_ref] = ACTIONS(1499), - [anon_sym_LBRACE] = ACTIONS(1487), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1479), + [anon_sym_LPAREN] = ACTIONS(659), + [anon_sym_ref] = ACTIONS(663), + [anon_sym_LBRACE] = ACTIONS(1481), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1501), + [anon_sym_new] = ACTIONS(1059), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = 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_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(1485), + [anon_sym_TILDE] = ACTIONS(1485), + [anon_sym_PLUS_PLUS] = ACTIONS(1485), + [anon_sym_DASH_DASH] = ACTIONS(1485), [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(1483), + [anon_sym_DASH] = ACTIONS(1483), + [anon_sym_STAR] = ACTIONS(683), + [anon_sym_CARET] = ACTIONS(1485), + [anon_sym_AMP] = ACTIONS(1485), [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(1067), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1503), + [anon_sym_throw] = ACTIONS(1077), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1505), - [anon_sym_DOT_DOT] = ACTIONS(1507), + [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), @@ -332773,7 +335701,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(1089), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -332789,135 +335717,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), }, - [1722] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(5160), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2204), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(5000), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3520), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3080), - [sym_postfix_unary_expression] = STATE(3111), - [sym_prefix_unary_expression] = STATE(3111), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6154), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3080), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3111), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3080), - [sym_member_access_expression] = STATE(2484), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3111), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7530), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(3080), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3080), - [sym_typeof_expression] = STATE(3080), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2484), - [sym_literal] = STATE(3080), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), - [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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [1740] = { + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(5873), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2238), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(5559), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3468), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3102), + [sym_postfix_unary_expression] = STATE(3079), + [sym_prefix_unary_expression] = STATE(3079), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6134), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3102), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3079), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3102), + [sym_member_access_expression] = STATE(2472), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3079), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7309), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(3102), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3102), + [sym_typeof_expression] = STATE(3102), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2472), + [sym_literal] = STATE(3102), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), + [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(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1481), - [anon_sym_LPAREN] = ACTIONS(43), - [anon_sym_ref] = ACTIONS(661), - [anon_sym_LBRACE] = ACTIONS(1487), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1479), + [anon_sym_LPAREN] = ACTIONS(659), + [anon_sym_ref] = ACTIONS(663), + [anon_sym_LBRACE] = ACTIONS(1481), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1061), + [anon_sym_new] = ACTIONS(1059), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = 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_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(1485), + [anon_sym_TILDE] = ACTIONS(1485), + [anon_sym_PLUS_PLUS] = ACTIONS(1485), + [anon_sym_DASH_DASH] = ACTIONS(1485), [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_PLUS] = ACTIONS(1483), + [anon_sym_DASH] = ACTIONS(1483), + [anon_sym_STAR] = ACTIONS(683), + [anon_sym_CARET] = ACTIONS(1485), + [anon_sym_AMP] = ACTIONS(1485), [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(1067), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1589), + [anon_sym_throw] = ACTIONS(1077), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1591), - [anon_sym_DOT_DOT] = ACTIONS(123), + [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), @@ -332942,7 +335870,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(1089), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -332958,135 +335886,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), }, - [1723] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(5910), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2247), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(4580), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3379), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3080), - [sym_postfix_unary_expression] = STATE(3111), - [sym_prefix_unary_expression] = STATE(3111), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6154), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3080), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3111), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3080), - [sym_member_access_expression] = STATE(2484), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3111), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7575), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(3080), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3080), - [sym_typeof_expression] = STATE(3080), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2484), - [sym_literal] = STATE(3080), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), - [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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [1741] = { + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(5152), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2196), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(5560), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3356), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3102), + [sym_postfix_unary_expression] = STATE(3079), + [sym_prefix_unary_expression] = STATE(3079), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6134), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3102), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3079), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3102), + [sym_member_access_expression] = STATE(2472), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3079), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7627), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(3102), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3102), + [sym_typeof_expression] = STATE(3102), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2472), + [sym_literal] = STATE(3102), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), + [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(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1481), - [anon_sym_LPAREN] = ACTIONS(895), - [anon_sym_ref] = ACTIONS(897), - [anon_sym_LBRACE] = ACTIONS(1487), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1479), + [anon_sym_LPAREN] = ACTIONS(1511), + [anon_sym_ref] = ACTIONS(1513), + [anon_sym_LBRACE] = ACTIONS(1481), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1061), + [anon_sym_new] = ACTIONS(1515), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1067), - [anon_sym_BANG] = ACTIONS(1495), - [anon_sym_TILDE] = ACTIONS(1495), - [anon_sym_PLUS_PLUS] = ACTIONS(1495), - [anon_sym_DASH_DASH] = ACTIONS(1495), + [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(1493), - [anon_sym_DASH] = ACTIONS(1493), - [anon_sym_STAR] = ACTIONS(905), - [anon_sym_CARET] = ACTIONS(1495), - [anon_sym_AMP] = ACTIONS(1495), + [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(1067), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1079), + [anon_sym_throw] = ACTIONS(1517), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1081), - [anon_sym_DOT_DOT] = ACTIONS(911), + [anon_sym_await] = ACTIONS(1519), + [anon_sym_DOT_DOT] = ACTIONS(1521), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -333111,7 +336039,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(1089), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -333127,304 +336055,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), }, - [1724] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2420), - [sym__name] = STATE(5875), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2369), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(4154), - [sym_non_lvalue_expression] = STATE(3066), - [sym_lvalue_expression] = STATE(3125), - [sym__expression_statement_expression] = STATE(3006), - [sym_assignment_expression] = STATE(3020), - [sym_binary_expression] = STATE(3006), - [sym_postfix_unary_expression] = STATE(3020), - [sym_prefix_unary_expression] = STATE(3020), - [sym__pointer_indirection_expression] = STATE(2423), - [sym_query_expression] = STATE(3006), - [sym_from_clause] = STATE(6145), - [sym_conditional_expression] = STATE(3006), - [sym_conditional_access_expression] = STATE(3006), - [sym_as_expression] = STATE(3006), - [sym_is_expression] = STATE(3006), - [sym_is_pattern_expression] = STATE(3006), - [sym_cast_expression] = STATE(3006), - [sym_checked_expression] = STATE(3006), - [sym_invocation_expression] = STATE(3020), - [sym_switch_expression] = STATE(3006), - [sym_await_expression] = STATE(3020), - [sym_throw_expression] = STATE(3006), - [sym_element_access_expression] = STATE(2423), - [sym_interpolated_string_expression] = STATE(3006), - [sym_member_access_expression] = STATE(2423), - [sym_object_creation_expression] = STATE(3020), - [sym_parenthesized_expression] = STATE(3020), - [sym__parenthesized_lvalue_expression] = STATE(2423), - [sym_lambda_expression] = STATE(3006), - [sym__lambda_expression_init] = STATE(7538), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3006), - [sym_anonymous_method_expression] = STATE(3006), - [sym_anonymous_object_creation_expression] = STATE(3006), - [sym_implicit_array_creation_expression] = STATE(3006), - [sym_implicit_object_creation_expression] = STATE(3006), - [sym_implicit_stackalloc_expression] = STATE(3006), - [sym_initializer_expression] = STATE(3006), - [sym_default_expression] = STATE(3006), - [sym_with_expression] = STATE(3006), - [sym_sizeof_expression] = STATE(3006), - [sym_typeof_expression] = STATE(3006), - [sym_makeref_expression] = STATE(3006), - [sym_ref_expression] = STATE(3006), - [sym_reftype_expression] = STATE(3006), - [sym_refvalue_expression] = STATE(3006), - [sym_stackalloc_expression] = STATE(3006), - [sym_range_expression] = STATE(3006), - [sym_tuple_expression] = STATE(2423), - [sym_literal] = STATE(3006), - [sym_character_literal] = STATE(3011), - [sym_string_literal] = STATE(3011), - [sym_raw_string_literal] = STATE(3011), - [sym_boolean_literal] = STATE(3011), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3006), - [sym_preproc_if_in_attribute_list] = STATE(5576), - [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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3440), - [sym__identifier_token] = ACTIONS(25), - [anon_sym_alias] = ACTIONS(29), - [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1241), - [anon_sym_LPAREN] = ACTIONS(2195), - [anon_sym_ref] = ACTIONS(2197), - [anon_sym_LBRACE] = ACTIONS(1247), - [anon_sym_delegate] = ACTIONS(1249), - [anon_sym_async] = ACTIONS(1047), - [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1845), - [anon_sym_where] = ACTIONS(29), - [anon_sym_notnull] = ACTIONS(29), - [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1253), - [anon_sym_BANG] = ACTIONS(2201), - [anon_sym_TILDE] = ACTIONS(2201), - [anon_sym_PLUS_PLUS] = ACTIONS(2201), - [anon_sym_DASH_DASH] = ACTIONS(2201), - [anon_sym_true] = ACTIONS(1259), - [anon_sym_false] = ACTIONS(1259), - [anon_sym_PLUS] = ACTIONS(2199), - [anon_sym_DASH] = ACTIONS(2199), - [anon_sym_STAR] = ACTIONS(1851), - [anon_sym_CARET] = ACTIONS(2201), - [anon_sym_AMP] = ACTIONS(2201), - [anon_sym_this] = ACTIONS(1263), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1265), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1267), - [anon_sym_unchecked] = ACTIONS(1253), - [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1269), - [anon_sym_throw] = ACTIONS(2203), - [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2205), - [anon_sym_DOT_DOT] = ACTIONS(2207), - [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(1277), - [anon_sym_sizeof] = ACTIONS(1279), - [anon_sym_typeof] = ACTIONS(1281), - [anon_sym___makeref] = ACTIONS(1283), - [anon_sym___reftype] = ACTIONS(1285), - [anon_sym___refvalue] = ACTIONS(1287), - [sym_null_literal] = ACTIONS(1289), - [anon_sym_SQUOTE] = ACTIONS(1291), - [sym_integer_literal] = ACTIONS(1289), - [sym_real_literal] = ACTIONS(1293), - [anon_sym_DQUOTE] = ACTIONS(1295), - [sym_verbatim_string_literal] = ACTIONS(1293), - [aux_sym_preproc_if_token1] = ACTIONS(1297), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1299), - [sym_interpolation_verbatim_start] = ACTIONS(1301), - [sym_interpolation_raw_start] = ACTIONS(1303), - [sym_raw_string_start] = ACTIONS(1305), - }, - [1725] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(5910), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2247), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(4766), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3379), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3080), - [sym_postfix_unary_expression] = STATE(3111), - [sym_prefix_unary_expression] = STATE(3111), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6154), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3080), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3111), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3080), - [sym_member_access_expression] = STATE(2484), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3111), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7575), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(3080), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3080), - [sym_typeof_expression] = STATE(3080), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2484), - [sym_literal] = STATE(3080), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), - [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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [1742] = { + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(5873), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2238), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(5562), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3468), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3102), + [sym_postfix_unary_expression] = STATE(3079), + [sym_prefix_unary_expression] = STATE(3079), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6134), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3102), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3079), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3102), + [sym_member_access_expression] = STATE(2472), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3079), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7309), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(3102), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3102), + [sym_typeof_expression] = STATE(3102), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2472), + [sym_literal] = STATE(3102), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), + [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(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1481), - [anon_sym_LPAREN] = ACTIONS(895), - [anon_sym_ref] = ACTIONS(897), - [anon_sym_LBRACE] = ACTIONS(1487), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1479), + [anon_sym_LPAREN] = ACTIONS(659), + [anon_sym_ref] = ACTIONS(663), + [anon_sym_LBRACE] = ACTIONS(1481), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1061), + [anon_sym_new] = ACTIONS(1059), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1067), - [anon_sym_BANG] = ACTIONS(1495), - [anon_sym_TILDE] = ACTIONS(1495), - [anon_sym_PLUS_PLUS] = ACTIONS(1495), - [anon_sym_DASH_DASH] = ACTIONS(1495), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(1485), + [anon_sym_TILDE] = ACTIONS(1485), + [anon_sym_PLUS_PLUS] = ACTIONS(1485), + [anon_sym_DASH_DASH] = ACTIONS(1485), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1493), - [anon_sym_DASH] = ACTIONS(1493), - [anon_sym_STAR] = ACTIONS(905), - [anon_sym_CARET] = ACTIONS(1495), - [anon_sym_AMP] = ACTIONS(1495), + [anon_sym_PLUS] = ACTIONS(1483), + [anon_sym_DASH] = ACTIONS(1483), + [anon_sym_STAR] = ACTIONS(683), + [anon_sym_CARET] = ACTIONS(1485), + [anon_sym_AMP] = ACTIONS(1485), [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(1067), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1079), + [anon_sym_throw] = ACTIONS(1077), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1081), - [anon_sym_DOT_DOT] = ACTIONS(911), + [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), @@ -333449,7 +336208,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(1089), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -333465,135 +336224,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(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(5910), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2247), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(4825), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3379), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3080), - [sym_postfix_unary_expression] = STATE(3111), - [sym_prefix_unary_expression] = STATE(3111), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6154), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3080), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3111), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3080), - [sym_member_access_expression] = STATE(2484), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3111), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7575), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(3080), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3080), - [sym_typeof_expression] = STATE(3080), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2484), - [sym_literal] = STATE(3080), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), - [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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [1743] = { + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(5873), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2238), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(5563), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3468), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3102), + [sym_postfix_unary_expression] = STATE(3079), + [sym_prefix_unary_expression] = STATE(3079), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6134), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3102), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3079), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3102), + [sym_member_access_expression] = STATE(2472), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3079), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7309), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(3102), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3102), + [sym_typeof_expression] = STATE(3102), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2472), + [sym_literal] = STATE(3102), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), + [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(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1481), - [anon_sym_LPAREN] = ACTIONS(895), - [anon_sym_ref] = ACTIONS(897), - [anon_sym_LBRACE] = ACTIONS(1487), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1479), + [anon_sym_LPAREN] = ACTIONS(659), + [anon_sym_ref] = ACTIONS(663), + [anon_sym_LBRACE] = ACTIONS(1481), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1061), + [anon_sym_new] = ACTIONS(1059), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1067), - [anon_sym_BANG] = ACTIONS(1495), - [anon_sym_TILDE] = ACTIONS(1495), - [anon_sym_PLUS_PLUS] = ACTIONS(1495), - [anon_sym_DASH_DASH] = ACTIONS(1495), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(1485), + [anon_sym_TILDE] = ACTIONS(1485), + [anon_sym_PLUS_PLUS] = ACTIONS(1485), + [anon_sym_DASH_DASH] = ACTIONS(1485), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1493), - [anon_sym_DASH] = ACTIONS(1493), - [anon_sym_STAR] = ACTIONS(905), - [anon_sym_CARET] = ACTIONS(1495), - [anon_sym_AMP] = ACTIONS(1495), + [anon_sym_PLUS] = ACTIONS(1483), + [anon_sym_DASH] = ACTIONS(1483), + [anon_sym_STAR] = ACTIONS(683), + [anon_sym_CARET] = ACTIONS(1485), + [anon_sym_AMP] = ACTIONS(1485), [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(1067), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1079), + [anon_sym_throw] = ACTIONS(1077), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1081), - [anon_sym_DOT_DOT] = ACTIONS(911), + [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), @@ -333618,7 +336377,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(1089), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -333634,135 +336393,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), }, - [1727] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(5910), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2247), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(4824), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3379), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3080), - [sym_postfix_unary_expression] = STATE(3111), - [sym_prefix_unary_expression] = STATE(3111), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6154), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3080), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3111), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3080), - [sym_member_access_expression] = STATE(2484), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3111), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7575), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(3080), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3080), - [sym_typeof_expression] = STATE(3080), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2484), - [sym_literal] = STATE(3080), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), - [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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [1744] = { + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(5873), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2238), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(5564), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3468), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3102), + [sym_postfix_unary_expression] = STATE(3079), + [sym_prefix_unary_expression] = STATE(3079), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6134), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3102), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3079), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3102), + [sym_member_access_expression] = STATE(2472), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3079), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7309), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(3102), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3102), + [sym_typeof_expression] = STATE(3102), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2472), + [sym_literal] = STATE(3102), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), + [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(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1481), - [anon_sym_LPAREN] = ACTIONS(895), - [anon_sym_ref] = ACTIONS(897), - [anon_sym_LBRACE] = ACTIONS(1487), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1479), + [anon_sym_LPAREN] = ACTIONS(659), + [anon_sym_ref] = ACTIONS(663), + [anon_sym_LBRACE] = ACTIONS(1481), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1061), + [anon_sym_new] = ACTIONS(1059), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1067), - [anon_sym_BANG] = ACTIONS(1495), - [anon_sym_TILDE] = ACTIONS(1495), - [anon_sym_PLUS_PLUS] = ACTIONS(1495), - [anon_sym_DASH_DASH] = ACTIONS(1495), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(1485), + [anon_sym_TILDE] = ACTIONS(1485), + [anon_sym_PLUS_PLUS] = ACTIONS(1485), + [anon_sym_DASH_DASH] = ACTIONS(1485), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1493), - [anon_sym_DASH] = ACTIONS(1493), - [anon_sym_STAR] = ACTIONS(905), - [anon_sym_CARET] = ACTIONS(1495), - [anon_sym_AMP] = ACTIONS(1495), + [anon_sym_PLUS] = ACTIONS(1483), + [anon_sym_DASH] = ACTIONS(1483), + [anon_sym_STAR] = ACTIONS(683), + [anon_sym_CARET] = ACTIONS(1485), + [anon_sym_AMP] = ACTIONS(1485), [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(1067), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1079), + [anon_sym_throw] = ACTIONS(1077), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1081), - [anon_sym_DOT_DOT] = ACTIONS(911), + [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), @@ -333787,7 +336546,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(1089), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -333803,135 +336562,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), }, - [1728] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(5910), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2247), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(4832), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3379), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3080), - [sym_postfix_unary_expression] = STATE(3111), - [sym_prefix_unary_expression] = STATE(3111), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6154), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3080), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3111), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3080), - [sym_member_access_expression] = STATE(2484), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3111), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7575), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(3080), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3080), - [sym_typeof_expression] = STATE(3080), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2484), - [sym_literal] = STATE(3080), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), - [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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [1745] = { + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(3182), + [sym__name] = STATE(5882), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2306), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2262), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(5081), + [sym_non_lvalue_expression] = STATE(4580), + [sym_lvalue_expression] = STATE(3534), + [sym__expression_statement_expression] = STATE(4573), + [sym_assignment_expression] = STATE(4581), + [sym_binary_expression] = STATE(4573), + [sym_postfix_unary_expression] = STATE(4581), + [sym_prefix_unary_expression] = STATE(4581), + [sym__pointer_indirection_expression] = STATE(3144), + [sym_query_expression] = STATE(4573), + [sym_from_clause] = STATE(6133), + [sym_conditional_expression] = STATE(4573), + [sym_conditional_access_expression] = STATE(4573), + [sym_as_expression] = STATE(4573), + [sym_is_expression] = STATE(4573), + [sym_is_pattern_expression] = STATE(4573), + [sym_cast_expression] = STATE(4573), + [sym_checked_expression] = STATE(4573), + [sym_invocation_expression] = STATE(4581), + [sym_switch_expression] = STATE(4573), + [sym_await_expression] = STATE(4581), + [sym_throw_expression] = STATE(4573), + [sym_element_access_expression] = STATE(3144), + [sym_interpolated_string_expression] = STATE(4573), + [sym_member_access_expression] = STATE(3144), + [sym_object_creation_expression] = STATE(4581), + [sym_parenthesized_expression] = STATE(4581), + [sym__parenthesized_lvalue_expression] = STATE(3144), + [sym_lambda_expression] = STATE(4573), + [sym__lambda_expression_init] = STATE(7592), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(4573), + [sym_anonymous_method_expression] = STATE(4573), + [sym_anonymous_object_creation_expression] = STATE(4573), + [sym_implicit_array_creation_expression] = STATE(4573), + [sym_implicit_object_creation_expression] = STATE(4573), + [sym_implicit_stackalloc_expression] = STATE(4573), + [sym_initializer_expression] = STATE(4573), + [sym_default_expression] = STATE(4573), + [sym_with_expression] = STATE(4573), + [sym_sizeof_expression] = STATE(4573), + [sym_typeof_expression] = STATE(4573), + [sym_makeref_expression] = STATE(4573), + [sym_ref_expression] = STATE(4573), + [sym_reftype_expression] = STATE(4573), + [sym_refvalue_expression] = STATE(4573), + [sym_stackalloc_expression] = STATE(4573), + [sym_range_expression] = STATE(4573), + [sym_tuple_expression] = STATE(3144), + [sym_literal] = STATE(4573), + [sym_character_literal] = STATE(4575), + [sym_string_literal] = STATE(4575), + [sym_raw_string_literal] = STATE(4575), + [sym_boolean_literal] = STATE(4575), + [sym_identifier] = STATE(2237), + [sym__reserved_identifier] = STATE(2229), + [sym_preproc_if_in_expression] = STATE(4573), + [sym_preproc_if_in_attribute_list] = STATE(5583), + [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(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3501), + [sym__identifier_token] = ACTIONS(1385), + [anon_sym_alias] = ACTIONS(1387), + [anon_sym_global] = ACTIONS(1387), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1389), + [anon_sym_LPAREN] = ACTIONS(1773), + [anon_sym_ref] = ACTIONS(1775), + [anon_sym_LBRACE] = ACTIONS(1395), + [anon_sym_delegate] = ACTIONS(1397), + [anon_sym_async] = ACTIONS(1045), + [anon_sym_file] = ACTIONS(1387), + [anon_sym_new] = ACTIONS(1465), + [anon_sym_where] = ACTIONS(1387), + [anon_sym_notnull] = ACTIONS(1387), + [anon_sym_unmanaged] = ACTIONS(1387), + [anon_sym_checked] = ACTIONS(1401), + [anon_sym_BANG] = ACTIONS(1779), + [anon_sym_TILDE] = ACTIONS(1779), + [anon_sym_PLUS_PLUS] = ACTIONS(1779), + [anon_sym_DASH_DASH] = ACTIONS(1779), + [anon_sym_true] = ACTIONS(1407), + [anon_sym_false] = ACTIONS(1407), + [anon_sym_PLUS] = ACTIONS(1777), + [anon_sym_DASH] = ACTIONS(1777), + [anon_sym_STAR] = ACTIONS(1471), + [anon_sym_CARET] = ACTIONS(1779), + [anon_sym_AMP] = ACTIONS(1779), + [anon_sym_this] = ACTIONS(1411), + [anon_sym_scoped] = ACTIONS(1413), + [anon_sym_base] = ACTIONS(1415), + [anon_sym_var] = ACTIONS(1417), + [sym_predefined_type] = ACTIONS(1419), + [anon_sym_unchecked] = ACTIONS(1401), + [anon_sym_yield] = ACTIONS(1387), + [anon_sym_default] = ACTIONS(1421), + [anon_sym_throw] = ACTIONS(1781), + [anon_sym_when] = ACTIONS(1387), + [anon_sym_await] = ACTIONS(1783), + [anon_sym_DOT_DOT] = ACTIONS(1785), + [anon_sym_from] = ACTIONS(1429), + [anon_sym_into] = ACTIONS(1387), + [anon_sym_join] = ACTIONS(1387), + [anon_sym_on] = ACTIONS(1387), + [anon_sym_equals] = ACTIONS(1387), + [anon_sym_let] = ACTIONS(1387), + [anon_sym_orderby] = ACTIONS(1387), + [anon_sym_ascending] = ACTIONS(1387), + [anon_sym_descending] = ACTIONS(1387), + [anon_sym_group] = ACTIONS(1387), + [anon_sym_by] = ACTIONS(1387), + [anon_sym_select] = ACTIONS(1387), + [anon_sym_stackalloc] = ACTIONS(1431), + [anon_sym_sizeof] = ACTIONS(1433), + [anon_sym_typeof] = ACTIONS(1435), + [anon_sym___makeref] = ACTIONS(1437), + [anon_sym___reftype] = ACTIONS(1439), + [anon_sym___refvalue] = ACTIONS(1441), + [sym_null_literal] = ACTIONS(1443), + [anon_sym_SQUOTE] = ACTIONS(1445), + [sym_integer_literal] = ACTIONS(1443), + [sym_real_literal] = ACTIONS(1447), + [anon_sym_DQUOTE] = ACTIONS(1449), + [sym_verbatim_string_literal] = ACTIONS(1447), + [aux_sym_preproc_if_token1] = ACTIONS(1451), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + [sym_interpolation_regular_start] = ACTIONS(1453), + [sym_interpolation_verbatim_start] = ACTIONS(1455), + [sym_interpolation_raw_start] = ACTIONS(1457), + [sym_raw_string_start] = ACTIONS(1459), + }, + [1746] = { + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(5528), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2196), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(3507), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3660), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3102), + [sym_postfix_unary_expression] = STATE(3079), + [sym_prefix_unary_expression] = STATE(3079), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6163), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3102), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3079), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3102), + [sym_member_access_expression] = STATE(2472), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3079), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7633), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(3102), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3102), + [sym_typeof_expression] = STATE(3102), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2472), + [sym_literal] = STATE(3102), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), + [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(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1481), - [anon_sym_LPAREN] = ACTIONS(895), - [anon_sym_ref] = ACTIONS(897), - [anon_sym_LBRACE] = ACTIONS(1487), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1479), + [anon_sym_LPAREN] = ACTIONS(2009), + [anon_sym_ref] = ACTIONS(2011), + [anon_sym_LBRACE] = ACTIONS(1481), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1061), + [anon_sym_new] = ACTIONS(1095), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1067), - [anon_sym_BANG] = ACTIONS(1495), - [anon_sym_TILDE] = ACTIONS(1495), - [anon_sym_PLUS_PLUS] = ACTIONS(1495), - [anon_sym_DASH_DASH] = ACTIONS(1495), + [anon_sym_checked] = ACTIONS(1065), + [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(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1493), - [anon_sym_DASH] = ACTIONS(1493), - [anon_sym_STAR] = ACTIONS(905), - [anon_sym_CARET] = ACTIONS(1495), - [anon_sym_AMP] = ACTIONS(1495), + [anon_sym_PLUS] = ACTIONS(2013), + [anon_sym_DASH] = ACTIONS(2013), + [anon_sym_STAR] = ACTIONS(1227), + [anon_sym_CARET] = ACTIONS(2015), + [anon_sym_AMP] = ACTIONS(2015), [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(1067), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1079), + [anon_sym_throw] = ACTIONS(1231), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1081), - [anon_sym_DOT_DOT] = ACTIONS(911), + [anon_sym_await] = ACTIONS(1233), + [anon_sym_DOT_DOT] = ACTIONS(1235), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -333956,7 +336884,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(1089), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -333972,135 +336900,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), }, - [1729] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(5160), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2204), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(5570), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3687), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3080), - [sym_postfix_unary_expression] = STATE(3111), - [sym_prefix_unary_expression] = STATE(3111), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6164), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3080), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3111), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3080), - [sym_member_access_expression] = STATE(2484), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3111), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7701), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(3080), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3080), - [sym_typeof_expression] = STATE(3080), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2484), - [sym_literal] = STATE(3080), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), - [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(3067), + [1747] = { + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2816), + [sym__name] = STATE(5873), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2196), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(4247), + [sym_non_lvalue_expression] = STATE(3495), + [sym_lvalue_expression] = STATE(3208), + [sym__expression_statement_expression] = STATE(3462), + [sym_assignment_expression] = STATE(3497), + [sym_binary_expression] = STATE(3462), + [sym_postfix_unary_expression] = STATE(3497), + [sym_prefix_unary_expression] = STATE(3497), + [sym__pointer_indirection_expression] = STATE(2815), + [sym_query_expression] = STATE(3462), + [sym_from_clause] = STATE(6140), + [sym_conditional_expression] = STATE(3462), + [sym_conditional_access_expression] = STATE(3462), + [sym_as_expression] = STATE(3462), + [sym_is_expression] = STATE(3462), + [sym_is_pattern_expression] = STATE(3462), + [sym_cast_expression] = STATE(3462), + [sym_checked_expression] = STATE(3462), + [sym_invocation_expression] = STATE(3497), + [sym_switch_expression] = STATE(3462), + [sym_await_expression] = STATE(3497), + [sym_throw_expression] = STATE(3462), + [sym_element_access_expression] = STATE(2815), + [sym_interpolated_string_expression] = STATE(3462), + [sym_member_access_expression] = STATE(2815), + [sym_object_creation_expression] = STATE(3497), + [sym_parenthesized_expression] = STATE(3497), + [sym__parenthesized_lvalue_expression] = STATE(2815), + [sym_lambda_expression] = STATE(3462), + [sym__lambda_expression_init] = STATE(7520), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3462), + [sym_anonymous_method_expression] = STATE(3462), + [sym_anonymous_object_creation_expression] = STATE(3462), + [sym_implicit_array_creation_expression] = STATE(3462), + [sym_implicit_object_creation_expression] = STATE(3462), + [sym_implicit_stackalloc_expression] = STATE(3462), + [sym_initializer_expression] = STATE(3462), + [sym_default_expression] = STATE(3462), + [sym_with_expression] = STATE(3462), + [sym_sizeof_expression] = STATE(3462), + [sym_typeof_expression] = STATE(3462), + [sym_makeref_expression] = STATE(3462), + [sym_ref_expression] = STATE(3462), + [sym_reftype_expression] = STATE(3462), + [sym_refvalue_expression] = STATE(3462), + [sym_stackalloc_expression] = STATE(3462), + [sym_range_expression] = STATE(3462), + [sym_tuple_expression] = STATE(2815), + [sym_literal] = STATE(3462), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3462), + [sym_preproc_if_in_attribute_list] = STATE(5583), + [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(3104), [aux_sym__lambda_expression_init_repeat1] = STATE(3367), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1481), - [anon_sym_LPAREN] = ACTIONS(2093), - [anon_sym_ref] = ACTIONS(2095), - [anon_sym_LBRACE] = ACTIONS(1487), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1305), + [anon_sym_LPAREN] = ACTIONS(1369), + [anon_sym_ref] = ACTIONS(1371), + [anon_sym_LBRACE] = ACTIONS(1311), + [anon_sym_delegate] = ACTIONS(1313), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1061), + [anon_sym_new] = ACTIONS(1315), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1067), - [anon_sym_BANG] = ACTIONS(2099), - [anon_sym_TILDE] = ACTIONS(2099), - [anon_sym_PLUS_PLUS] = ACTIONS(2099), - [anon_sym_DASH_DASH] = ACTIONS(2099), + [anon_sym_checked] = ACTIONS(1317), + [anon_sym_BANG] = ACTIONS(1375), + [anon_sym_TILDE] = ACTIONS(1375), + [anon_sym_PLUS_PLUS] = ACTIONS(1375), + [anon_sym_DASH_DASH] = ACTIONS(1375), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(2097), - [anon_sym_DASH] = ACTIONS(2097), - [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(2099), - [anon_sym_AMP] = ACTIONS(2099), - [anon_sym_this] = ACTIONS(83), + [anon_sym_PLUS] = ACTIONS(1373), + [anon_sym_DASH] = ACTIONS(1373), + [anon_sym_STAR] = ACTIONS(1377), + [anon_sym_CARET] = ACTIONS(1375), + [anon_sym_AMP] = ACTIONS(1375), + [anon_sym_this] = ACTIONS(1321), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), + [anon_sym_base] = ACTIONS(1323), [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1067), + [anon_sym_unchecked] = ACTIONS(1317), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(2101), + [anon_sym_throw] = ACTIONS(1379), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2103), - [anon_sym_DOT_DOT] = ACTIONS(2105), + [anon_sym_await] = ACTIONS(1381), + [anon_sym_DOT_DOT] = ACTIONS(1383), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -334113,19 +337041,19 @@ static const uint16_t ts_parse_table[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(1331), [anon_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(1333), + [anon_sym___reftype] = ACTIONS(1335), + [anon_sym___refvalue] = ACTIONS(1337), [sym_null_literal] = ACTIONS(139), [anon_sym_SQUOTE] = ACTIONS(141), [sym_integer_literal] = ACTIONS(139), [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(2107), + [aux_sym_preproc_if_token1] = ACTIONS(1339), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -334141,135 +337069,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), }, - [1730] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2420), - [sym__name] = STATE(5875), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2369), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(4155), - [sym_non_lvalue_expression] = STATE(3066), - [sym_lvalue_expression] = STATE(3125), - [sym__expression_statement_expression] = STATE(3006), - [sym_assignment_expression] = STATE(3020), - [sym_binary_expression] = STATE(3006), - [sym_postfix_unary_expression] = STATE(3020), - [sym_prefix_unary_expression] = STATE(3020), - [sym__pointer_indirection_expression] = STATE(2423), - [sym_query_expression] = STATE(3006), - [sym_from_clause] = STATE(6145), - [sym_conditional_expression] = STATE(3006), - [sym_conditional_access_expression] = STATE(3006), - [sym_as_expression] = STATE(3006), - [sym_is_expression] = STATE(3006), - [sym_is_pattern_expression] = STATE(3006), - [sym_cast_expression] = STATE(3006), - [sym_checked_expression] = STATE(3006), - [sym_invocation_expression] = STATE(3020), - [sym_switch_expression] = STATE(3006), - [sym_await_expression] = STATE(3020), - [sym_throw_expression] = STATE(3006), - [sym_element_access_expression] = STATE(2423), - [sym_interpolated_string_expression] = STATE(3006), - [sym_member_access_expression] = STATE(2423), - [sym_object_creation_expression] = STATE(3020), - [sym_parenthesized_expression] = STATE(3020), - [sym__parenthesized_lvalue_expression] = STATE(2423), - [sym_lambda_expression] = STATE(3006), - [sym__lambda_expression_init] = STATE(7538), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3006), - [sym_anonymous_method_expression] = STATE(3006), - [sym_anonymous_object_creation_expression] = STATE(3006), - [sym_implicit_array_creation_expression] = STATE(3006), - [sym_implicit_object_creation_expression] = STATE(3006), - [sym_implicit_stackalloc_expression] = STATE(3006), - [sym_initializer_expression] = STATE(3006), - [sym_default_expression] = STATE(3006), - [sym_with_expression] = STATE(3006), - [sym_sizeof_expression] = STATE(3006), - [sym_typeof_expression] = STATE(3006), - [sym_makeref_expression] = STATE(3006), - [sym_ref_expression] = STATE(3006), - [sym_reftype_expression] = STATE(3006), - [sym_refvalue_expression] = STATE(3006), - [sym_stackalloc_expression] = STATE(3006), - [sym_range_expression] = STATE(3006), - [sym_tuple_expression] = STATE(2423), - [sym_literal] = STATE(3006), - [sym_character_literal] = STATE(3011), - [sym_string_literal] = STATE(3011), - [sym_raw_string_literal] = STATE(3011), - [sym_boolean_literal] = STATE(3011), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3006), - [sym_preproc_if_in_attribute_list] = STATE(5576), - [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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3440), + [1748] = { + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2816), + [sym__name] = STATE(5873), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2196), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(3195), + [sym_non_lvalue_expression] = STATE(3495), + [sym_lvalue_expression] = STATE(3208), + [sym__expression_statement_expression] = STATE(3462), + [sym_assignment_expression] = STATE(3497), + [sym_binary_expression] = STATE(3462), + [sym_postfix_unary_expression] = STATE(3497), + [sym_prefix_unary_expression] = STATE(3497), + [sym__pointer_indirection_expression] = STATE(2815), + [sym_query_expression] = STATE(3462), + [sym_from_clause] = STATE(6140), + [sym_conditional_expression] = STATE(3462), + [sym_conditional_access_expression] = STATE(3462), + [sym_as_expression] = STATE(3462), + [sym_is_expression] = STATE(3462), + [sym_is_pattern_expression] = STATE(3462), + [sym_cast_expression] = STATE(3462), + [sym_checked_expression] = STATE(3462), + [sym_invocation_expression] = STATE(3497), + [sym_switch_expression] = STATE(3462), + [sym_await_expression] = STATE(3497), + [sym_throw_expression] = STATE(3462), + [sym_element_access_expression] = STATE(2815), + [sym_interpolated_string_expression] = STATE(3462), + [sym_member_access_expression] = STATE(2815), + [sym_object_creation_expression] = STATE(3497), + [sym_parenthesized_expression] = STATE(3497), + [sym__parenthesized_lvalue_expression] = STATE(2815), + [sym_lambda_expression] = STATE(3462), + [sym__lambda_expression_init] = STATE(7520), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3462), + [sym_anonymous_method_expression] = STATE(3462), + [sym_anonymous_object_creation_expression] = STATE(3462), + [sym_implicit_array_creation_expression] = STATE(3462), + [sym_implicit_object_creation_expression] = STATE(3462), + [sym_implicit_stackalloc_expression] = STATE(3462), + [sym_initializer_expression] = STATE(3462), + [sym_default_expression] = STATE(3462), + [sym_with_expression] = STATE(3462), + [sym_sizeof_expression] = STATE(3462), + [sym_typeof_expression] = STATE(3462), + [sym_makeref_expression] = STATE(3462), + [sym_ref_expression] = STATE(3462), + [sym_reftype_expression] = STATE(3462), + [sym_refvalue_expression] = STATE(3462), + [sym_stackalloc_expression] = STATE(3462), + [sym_range_expression] = STATE(3462), + [sym_tuple_expression] = STATE(2815), + [sym_literal] = STATE(3462), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3462), + [sym_preproc_if_in_attribute_list] = STATE(5583), + [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(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3367), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1241), - [anon_sym_LPAREN] = ACTIONS(2195), - [anon_sym_ref] = ACTIONS(2197), - [anon_sym_LBRACE] = ACTIONS(1247), - [anon_sym_delegate] = ACTIONS(1249), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1305), + [anon_sym_LPAREN] = ACTIONS(1369), + [anon_sym_ref] = ACTIONS(1371), + [anon_sym_LBRACE] = ACTIONS(1311), + [anon_sym_delegate] = ACTIONS(1313), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1845), + [anon_sym_new] = ACTIONS(1315), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1253), - [anon_sym_BANG] = ACTIONS(2201), - [anon_sym_TILDE] = ACTIONS(2201), - [anon_sym_PLUS_PLUS] = ACTIONS(2201), - [anon_sym_DASH_DASH] = ACTIONS(2201), - [anon_sym_true] = ACTIONS(1259), - [anon_sym_false] = ACTIONS(1259), - [anon_sym_PLUS] = ACTIONS(2199), - [anon_sym_DASH] = ACTIONS(2199), - [anon_sym_STAR] = ACTIONS(1851), - [anon_sym_CARET] = ACTIONS(2201), - [anon_sym_AMP] = ACTIONS(2201), - [anon_sym_this] = ACTIONS(1263), + [anon_sym_checked] = ACTIONS(1317), + [anon_sym_BANG] = ACTIONS(1375), + [anon_sym_TILDE] = ACTIONS(1375), + [anon_sym_PLUS_PLUS] = ACTIONS(1375), + [anon_sym_DASH_DASH] = ACTIONS(1375), + [anon_sym_true] = ACTIONS(77), + [anon_sym_false] = ACTIONS(77), + [anon_sym_PLUS] = ACTIONS(1373), + [anon_sym_DASH] = ACTIONS(1373), + [anon_sym_STAR] = ACTIONS(1377), + [anon_sym_CARET] = ACTIONS(1375), + [anon_sym_AMP] = ACTIONS(1375), + [anon_sym_this] = ACTIONS(1321), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1265), + [anon_sym_base] = ACTIONS(1323), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1267), - [anon_sym_unchecked] = ACTIONS(1253), + [sym_predefined_type] = ACTIONS(91), + [anon_sym_unchecked] = ACTIONS(1317), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1269), - [anon_sym_throw] = ACTIONS(2203), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(1379), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2205), - [anon_sym_DOT_DOT] = ACTIONS(2207), + [anon_sym_await] = ACTIONS(1381), + [anon_sym_DOT_DOT] = ACTIONS(1383), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -334282,19 +337210,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1277), - [anon_sym_sizeof] = ACTIONS(1279), - [anon_sym_typeof] = ACTIONS(1281), - [anon_sym___makeref] = ACTIONS(1283), - [anon_sym___reftype] = ACTIONS(1285), - [anon_sym___refvalue] = ACTIONS(1287), - [sym_null_literal] = ACTIONS(1289), - [anon_sym_SQUOTE] = ACTIONS(1291), - [sym_integer_literal] = ACTIONS(1289), - [sym_real_literal] = ACTIONS(1293), - [anon_sym_DQUOTE] = ACTIONS(1295), - [sym_verbatim_string_literal] = ACTIONS(1293), - [aux_sym_preproc_if_token1] = ACTIONS(1297), + [anon_sym_stackalloc] = ACTIONS(1331), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(1333), + [anon_sym___reftype] = ACTIONS(1335), + [anon_sym___refvalue] = ACTIONS(1337), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_literal] = ACTIONS(143), + [anon_sym_DQUOTE] = ACTIONS(145), + [sym_verbatim_string_literal] = ACTIONS(143), + [aux_sym_preproc_if_token1] = ACTIONS(1339), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -334305,140 +337233,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(1299), - [sym_interpolation_verbatim_start] = ACTIONS(1301), - [sym_interpolation_raw_start] = ACTIONS(1303), - [sym_raw_string_start] = ACTIONS(1305), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [sym_interpolation_raw_start] = ACTIONS(155), + [sym_raw_string_start] = ACTIONS(157), }, - [1731] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(5160), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2204), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(5571), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3687), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3080), - [sym_postfix_unary_expression] = STATE(3111), - [sym_prefix_unary_expression] = STATE(3111), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6164), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3080), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3111), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3080), - [sym_member_access_expression] = STATE(2484), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3111), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7701), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(3080), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3080), - [sym_typeof_expression] = STATE(3080), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2484), - [sym_literal] = STATE(3080), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), - [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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [1749] = { + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(5873), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2238), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(5650), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3468), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3102), + [sym_postfix_unary_expression] = STATE(3079), + [sym_prefix_unary_expression] = STATE(3079), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6134), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3102), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3079), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3102), + [sym_member_access_expression] = STATE(2472), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3079), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7309), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(3102), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3102), + [sym_typeof_expression] = STATE(3102), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2472), + [sym_literal] = STATE(3102), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), + [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(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1481), - [anon_sym_LPAREN] = ACTIONS(2093), - [anon_sym_ref] = ACTIONS(2095), - [anon_sym_LBRACE] = ACTIONS(1487), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1479), + [anon_sym_LPAREN] = ACTIONS(659), + [anon_sym_ref] = ACTIONS(663), + [anon_sym_LBRACE] = ACTIONS(1481), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1061), + [anon_sym_new] = ACTIONS(1059), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1067), - [anon_sym_BANG] = ACTIONS(2099), - [anon_sym_TILDE] = ACTIONS(2099), - [anon_sym_PLUS_PLUS] = ACTIONS(2099), - [anon_sym_DASH_DASH] = ACTIONS(2099), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(1485), + [anon_sym_TILDE] = ACTIONS(1485), + [anon_sym_PLUS_PLUS] = ACTIONS(1485), + [anon_sym_DASH_DASH] = ACTIONS(1485), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(2097), - [anon_sym_DASH] = ACTIONS(2097), - [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(2099), - [anon_sym_AMP] = ACTIONS(2099), + [anon_sym_PLUS] = ACTIONS(1483), + [anon_sym_DASH] = ACTIONS(1483), + [anon_sym_STAR] = ACTIONS(683), + [anon_sym_CARET] = ACTIONS(1485), + [anon_sym_AMP] = ACTIONS(1485), [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(1067), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(2101), + [anon_sym_throw] = ACTIONS(1077), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2103), - [anon_sym_DOT_DOT] = ACTIONS(2105), + [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), @@ -334463,7 +337391,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(2107), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -334479,135 +337407,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), }, - [1732] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(5160), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2204), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(5572), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3687), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3080), - [sym_postfix_unary_expression] = STATE(3111), - [sym_prefix_unary_expression] = STATE(3111), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6164), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3080), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3111), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3080), - [sym_member_access_expression] = STATE(2484), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3111), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7701), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(3080), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3080), - [sym_typeof_expression] = STATE(3080), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2484), - [sym_literal] = STATE(3080), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), - [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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [1750] = { + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(5873), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2238), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(5505), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3468), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3102), + [sym_postfix_unary_expression] = STATE(3079), + [sym_prefix_unary_expression] = STATE(3079), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6134), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3102), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3079), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3102), + [sym_member_access_expression] = STATE(2472), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3079), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7309), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(3102), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3102), + [sym_typeof_expression] = STATE(3102), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2472), + [sym_literal] = STATE(3102), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), + [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(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1481), - [anon_sym_LPAREN] = ACTIONS(2093), - [anon_sym_ref] = ACTIONS(2095), - [anon_sym_LBRACE] = ACTIONS(1487), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1479), + [anon_sym_LPAREN] = ACTIONS(659), + [anon_sym_ref] = ACTIONS(663), + [anon_sym_LBRACE] = ACTIONS(1481), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1061), + [anon_sym_new] = ACTIONS(1059), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1067), - [anon_sym_BANG] = ACTIONS(2099), - [anon_sym_TILDE] = ACTIONS(2099), - [anon_sym_PLUS_PLUS] = ACTIONS(2099), - [anon_sym_DASH_DASH] = ACTIONS(2099), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(1485), + [anon_sym_TILDE] = ACTIONS(1485), + [anon_sym_PLUS_PLUS] = ACTIONS(1485), + [anon_sym_DASH_DASH] = ACTIONS(1485), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(2097), - [anon_sym_DASH] = ACTIONS(2097), - [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(2099), - [anon_sym_AMP] = ACTIONS(2099), + [anon_sym_PLUS] = ACTIONS(1483), + [anon_sym_DASH] = ACTIONS(1483), + [anon_sym_STAR] = ACTIONS(683), + [anon_sym_CARET] = ACTIONS(1485), + [anon_sym_AMP] = ACTIONS(1485), [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(1067), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(2101), + [anon_sym_throw] = ACTIONS(1077), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2103), - [anon_sym_DOT_DOT] = ACTIONS(2105), + [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), @@ -334632,7 +337560,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(2107), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -334648,135 +337576,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), }, - [1733] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(5160), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2204), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(5646), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3687), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3080), - [sym_postfix_unary_expression] = STATE(3111), - [sym_prefix_unary_expression] = STATE(3111), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6164), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3080), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3111), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3080), - [sym_member_access_expression] = STATE(2484), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3111), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7701), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(3080), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3080), - [sym_typeof_expression] = STATE(3080), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2484), - [sym_literal] = STATE(3080), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), - [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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [1751] = { + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(5873), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2238), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(5557), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3468), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3102), + [sym_postfix_unary_expression] = STATE(3079), + [sym_prefix_unary_expression] = STATE(3079), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6134), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3102), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3079), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3102), + [sym_member_access_expression] = STATE(2472), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3079), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7309), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(3102), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3102), + [sym_typeof_expression] = STATE(3102), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2472), + [sym_literal] = STATE(3102), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), + [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(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1481), - [anon_sym_LPAREN] = ACTIONS(2093), - [anon_sym_ref] = ACTIONS(2095), - [anon_sym_LBRACE] = ACTIONS(1487), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1479), + [anon_sym_LPAREN] = ACTIONS(659), + [anon_sym_ref] = ACTIONS(663), + [anon_sym_LBRACE] = ACTIONS(1481), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1061), + [anon_sym_new] = ACTIONS(1059), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1067), - [anon_sym_BANG] = ACTIONS(2099), - [anon_sym_TILDE] = ACTIONS(2099), - [anon_sym_PLUS_PLUS] = ACTIONS(2099), - [anon_sym_DASH_DASH] = ACTIONS(2099), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(1485), + [anon_sym_TILDE] = ACTIONS(1485), + [anon_sym_PLUS_PLUS] = ACTIONS(1485), + [anon_sym_DASH_DASH] = ACTIONS(1485), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(2097), - [anon_sym_DASH] = ACTIONS(2097), - [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(2099), - [anon_sym_AMP] = ACTIONS(2099), + [anon_sym_PLUS] = ACTIONS(1483), + [anon_sym_DASH] = ACTIONS(1483), + [anon_sym_STAR] = ACTIONS(683), + [anon_sym_CARET] = ACTIONS(1485), + [anon_sym_AMP] = ACTIONS(1485), [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(1067), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(2101), + [anon_sym_throw] = ACTIONS(1077), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2103), - [anon_sym_DOT_DOT] = ACTIONS(2105), + [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), @@ -334801,7 +337729,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(2107), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -334817,135 +337745,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), }, - [1734] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(5160), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2204), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(5647), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3687), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3080), - [sym_postfix_unary_expression] = STATE(3111), - [sym_prefix_unary_expression] = STATE(3111), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6164), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3080), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3111), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3080), - [sym_member_access_expression] = STATE(2484), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3111), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7701), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(3080), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3080), - [sym_typeof_expression] = STATE(3080), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2484), - [sym_literal] = STATE(3080), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), - [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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [1752] = { + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(5152), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2196), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(5566), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3356), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3102), + [sym_postfix_unary_expression] = STATE(3079), + [sym_prefix_unary_expression] = STATE(3079), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6134), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3102), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3079), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3102), + [sym_member_access_expression] = STATE(2472), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3079), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7627), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(3102), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3102), + [sym_typeof_expression] = STATE(3102), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2472), + [sym_literal] = STATE(3102), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), + [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(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1481), - [anon_sym_LPAREN] = ACTIONS(2093), - [anon_sym_ref] = ACTIONS(2095), - [anon_sym_LBRACE] = ACTIONS(1487), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1479), + [anon_sym_LPAREN] = ACTIONS(1511), + [anon_sym_ref] = ACTIONS(1513), + [anon_sym_LBRACE] = ACTIONS(1481), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1061), + [anon_sym_new] = ACTIONS(1515), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1067), - [anon_sym_BANG] = ACTIONS(2099), - [anon_sym_TILDE] = ACTIONS(2099), - [anon_sym_PLUS_PLUS] = ACTIONS(2099), - [anon_sym_DASH_DASH] = ACTIONS(2099), + [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(2097), - [anon_sym_DASH] = ACTIONS(2097), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_DASH] = ACTIONS(79), [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(2099), - [anon_sym_AMP] = ACTIONS(2099), + [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(1067), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(2101), + [anon_sym_throw] = ACTIONS(1517), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2103), - [anon_sym_DOT_DOT] = ACTIONS(2105), + [anon_sym_await] = ACTIONS(1519), + [anon_sym_DOT_DOT] = ACTIONS(1521), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -334970,7 +337898,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(2107), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -334986,135 +337914,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), }, - [1735] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(5160), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2204), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(5648), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3687), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3080), - [sym_postfix_unary_expression] = STATE(3111), - [sym_prefix_unary_expression] = STATE(3111), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6164), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3080), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3111), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3080), - [sym_member_access_expression] = STATE(2484), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3111), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7701), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(3080), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3080), - [sym_typeof_expression] = STATE(3080), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2484), - [sym_literal] = STATE(3080), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), - [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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [1753] = { + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(5873), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2238), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(5357), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3468), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3102), + [sym_postfix_unary_expression] = STATE(3079), + [sym_prefix_unary_expression] = STATE(3079), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6134), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3102), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3079), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3102), + [sym_member_access_expression] = STATE(2472), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3079), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7309), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(3102), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3102), + [sym_typeof_expression] = STATE(3102), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2472), + [sym_literal] = STATE(3102), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), + [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(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1481), - [anon_sym_LPAREN] = ACTIONS(2093), - [anon_sym_ref] = ACTIONS(2095), - [anon_sym_LBRACE] = ACTIONS(1487), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1479), + [anon_sym_LPAREN] = ACTIONS(659), + [anon_sym_ref] = ACTIONS(663), + [anon_sym_LBRACE] = ACTIONS(1481), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1061), + [anon_sym_new] = ACTIONS(1059), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1067), - [anon_sym_BANG] = ACTIONS(2099), - [anon_sym_TILDE] = ACTIONS(2099), - [anon_sym_PLUS_PLUS] = ACTIONS(2099), - [anon_sym_DASH_DASH] = ACTIONS(2099), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(1485), + [anon_sym_TILDE] = ACTIONS(1485), + [anon_sym_PLUS_PLUS] = ACTIONS(1485), + [anon_sym_DASH_DASH] = ACTIONS(1485), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(2097), - [anon_sym_DASH] = ACTIONS(2097), - [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(2099), - [anon_sym_AMP] = ACTIONS(2099), + [anon_sym_PLUS] = ACTIONS(1483), + [anon_sym_DASH] = ACTIONS(1483), + [anon_sym_STAR] = ACTIONS(683), + [anon_sym_CARET] = ACTIONS(1485), + [anon_sym_AMP] = ACTIONS(1485), [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(1067), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(2101), + [anon_sym_throw] = ACTIONS(1077), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2103), - [anon_sym_DOT_DOT] = ACTIONS(2105), + [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), @@ -335139,7 +338067,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(2107), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -335155,135 +338083,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), }, - [1736] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(5160), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2204), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(5573), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3687), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3080), - [sym_postfix_unary_expression] = STATE(3111), - [sym_prefix_unary_expression] = STATE(3111), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6164), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3080), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3111), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3080), - [sym_member_access_expression] = STATE(2484), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3111), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7701), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(3080), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3080), - [sym_typeof_expression] = STATE(3080), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2484), - [sym_literal] = STATE(3080), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), - [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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [1754] = { + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(5873), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2238), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(5403), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3468), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3102), + [sym_postfix_unary_expression] = STATE(3079), + [sym_prefix_unary_expression] = STATE(3079), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6134), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3102), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3079), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3102), + [sym_member_access_expression] = STATE(2472), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3079), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7309), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(3102), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3102), + [sym_typeof_expression] = STATE(3102), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2472), + [sym_literal] = STATE(3102), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), + [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(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1481), - [anon_sym_LPAREN] = ACTIONS(2093), - [anon_sym_ref] = ACTIONS(2095), - [anon_sym_LBRACE] = ACTIONS(1487), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1479), + [anon_sym_LPAREN] = ACTIONS(659), + [anon_sym_ref] = ACTIONS(663), + [anon_sym_LBRACE] = ACTIONS(1481), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1061), + [anon_sym_new] = ACTIONS(1059), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1067), - [anon_sym_BANG] = ACTIONS(2099), - [anon_sym_TILDE] = ACTIONS(2099), - [anon_sym_PLUS_PLUS] = ACTIONS(2099), - [anon_sym_DASH_DASH] = ACTIONS(2099), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(1485), + [anon_sym_TILDE] = ACTIONS(1485), + [anon_sym_PLUS_PLUS] = ACTIONS(1485), + [anon_sym_DASH_DASH] = ACTIONS(1485), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(2097), - [anon_sym_DASH] = ACTIONS(2097), - [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(2099), - [anon_sym_AMP] = ACTIONS(2099), + [anon_sym_PLUS] = ACTIONS(1483), + [anon_sym_DASH] = ACTIONS(1483), + [anon_sym_STAR] = ACTIONS(683), + [anon_sym_CARET] = ACTIONS(1485), + [anon_sym_AMP] = ACTIONS(1485), [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(1067), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(2101), + [anon_sym_throw] = ACTIONS(1077), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2103), - [anon_sym_DOT_DOT] = ACTIONS(2105), + [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), @@ -335308,7 +338236,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(2107), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -335324,135 +338252,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), }, - [1737] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(5160), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2204), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(5649), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3687), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3080), - [sym_postfix_unary_expression] = STATE(3111), - [sym_prefix_unary_expression] = STATE(3111), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6164), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3080), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3111), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3080), - [sym_member_access_expression] = STATE(2484), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3111), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7701), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(3080), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3080), - [sym_typeof_expression] = STATE(3080), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2484), - [sym_literal] = STATE(3080), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), - [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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [1755] = { + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(5873), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2238), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(5406), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3468), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3102), + [sym_postfix_unary_expression] = STATE(3079), + [sym_prefix_unary_expression] = STATE(3079), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6134), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3102), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3079), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3102), + [sym_member_access_expression] = STATE(2472), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3079), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7309), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(3102), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3102), + [sym_typeof_expression] = STATE(3102), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2472), + [sym_literal] = STATE(3102), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), + [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(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1481), - [anon_sym_LPAREN] = ACTIONS(2093), - [anon_sym_ref] = ACTIONS(2095), - [anon_sym_LBRACE] = ACTIONS(1487), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1479), + [anon_sym_LPAREN] = ACTIONS(659), + [anon_sym_ref] = ACTIONS(663), + [anon_sym_LBRACE] = ACTIONS(1481), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1061), + [anon_sym_new] = ACTIONS(1059), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1067), - [anon_sym_BANG] = ACTIONS(2099), - [anon_sym_TILDE] = ACTIONS(2099), - [anon_sym_PLUS_PLUS] = ACTIONS(2099), - [anon_sym_DASH_DASH] = ACTIONS(2099), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(1485), + [anon_sym_TILDE] = ACTIONS(1485), + [anon_sym_PLUS_PLUS] = ACTIONS(1485), + [anon_sym_DASH_DASH] = ACTIONS(1485), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(2097), - [anon_sym_DASH] = ACTIONS(2097), - [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(2099), - [anon_sym_AMP] = ACTIONS(2099), + [anon_sym_PLUS] = ACTIONS(1483), + [anon_sym_DASH] = ACTIONS(1483), + [anon_sym_STAR] = ACTIONS(683), + [anon_sym_CARET] = ACTIONS(1485), + [anon_sym_AMP] = ACTIONS(1485), [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(1067), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(2101), + [anon_sym_throw] = ACTIONS(1077), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2103), - [anon_sym_DOT_DOT] = ACTIONS(2105), + [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), @@ -335477,7 +338405,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(2107), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -335493,135 +338421,1487 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_interpolation_raw_start] = ACTIONS(155), [sym_raw_string_start] = ACTIONS(157), }, - [1738] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(5910), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2247), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(4539), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3379), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3080), - [sym_postfix_unary_expression] = STATE(3111), - [sym_prefix_unary_expression] = STATE(3111), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6154), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3080), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3111), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3080), - [sym_member_access_expression] = STATE(2484), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3111), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7575), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(3080), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3080), - [sym_typeof_expression] = STATE(3080), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2484), - [sym_literal] = STATE(3080), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), - [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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [1756] = { + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(3182), + [sym__name] = STATE(5882), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2306), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2262), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(4836), + [sym_non_lvalue_expression] = STATE(4580), + [sym_lvalue_expression] = STATE(3534), + [sym__expression_statement_expression] = STATE(4573), + [sym_assignment_expression] = STATE(4581), + [sym_binary_expression] = STATE(4573), + [sym_postfix_unary_expression] = STATE(4581), + [sym_prefix_unary_expression] = STATE(4581), + [sym__pointer_indirection_expression] = STATE(3144), + [sym_query_expression] = STATE(4573), + [sym_from_clause] = STATE(6133), + [sym_conditional_expression] = STATE(4573), + [sym_conditional_access_expression] = STATE(4573), + [sym_as_expression] = STATE(4573), + [sym_is_expression] = STATE(4573), + [sym_is_pattern_expression] = STATE(4573), + [sym_cast_expression] = STATE(4573), + [sym_checked_expression] = STATE(4573), + [sym_invocation_expression] = STATE(4581), + [sym_switch_expression] = STATE(4573), + [sym_await_expression] = STATE(4581), + [sym_throw_expression] = STATE(4573), + [sym_element_access_expression] = STATE(3144), + [sym_interpolated_string_expression] = STATE(4573), + [sym_member_access_expression] = STATE(3144), + [sym_object_creation_expression] = STATE(4581), + [sym_parenthesized_expression] = STATE(4581), + [sym__parenthesized_lvalue_expression] = STATE(3144), + [sym_lambda_expression] = STATE(4573), + [sym__lambda_expression_init] = STATE(7592), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(4573), + [sym_anonymous_method_expression] = STATE(4573), + [sym_anonymous_object_creation_expression] = STATE(4573), + [sym_implicit_array_creation_expression] = STATE(4573), + [sym_implicit_object_creation_expression] = STATE(4573), + [sym_implicit_stackalloc_expression] = STATE(4573), + [sym_initializer_expression] = STATE(4573), + [sym_default_expression] = STATE(4573), + [sym_with_expression] = STATE(4573), + [sym_sizeof_expression] = STATE(4573), + [sym_typeof_expression] = STATE(4573), + [sym_makeref_expression] = STATE(4573), + [sym_ref_expression] = STATE(4573), + [sym_reftype_expression] = STATE(4573), + [sym_refvalue_expression] = STATE(4573), + [sym_stackalloc_expression] = STATE(4573), + [sym_range_expression] = STATE(4573), + [sym_tuple_expression] = STATE(3144), + [sym_literal] = STATE(4573), + [sym_character_literal] = STATE(4575), + [sym_string_literal] = STATE(4575), + [sym_raw_string_literal] = STATE(4575), + [sym_boolean_literal] = STATE(4575), + [sym_identifier] = STATE(2237), + [sym__reserved_identifier] = STATE(2229), + [sym_preproc_if_in_expression] = STATE(4573), + [sym_preproc_if_in_attribute_list] = STATE(5583), + [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(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3501), + [sym__identifier_token] = ACTIONS(1385), + [anon_sym_alias] = ACTIONS(1387), + [anon_sym_global] = ACTIONS(1387), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1389), + [anon_sym_LPAREN] = ACTIONS(1773), + [anon_sym_ref] = ACTIONS(1775), + [anon_sym_LBRACE] = ACTIONS(1395), + [anon_sym_delegate] = ACTIONS(1397), + [anon_sym_async] = ACTIONS(1045), + [anon_sym_file] = ACTIONS(1387), + [anon_sym_new] = ACTIONS(1465), + [anon_sym_where] = ACTIONS(1387), + [anon_sym_notnull] = ACTIONS(1387), + [anon_sym_unmanaged] = ACTIONS(1387), + [anon_sym_checked] = ACTIONS(1401), + [anon_sym_BANG] = ACTIONS(1779), + [anon_sym_TILDE] = ACTIONS(1779), + [anon_sym_PLUS_PLUS] = ACTIONS(1779), + [anon_sym_DASH_DASH] = ACTIONS(1779), + [anon_sym_true] = ACTIONS(1407), + [anon_sym_false] = ACTIONS(1407), + [anon_sym_PLUS] = ACTIONS(1777), + [anon_sym_DASH] = ACTIONS(1777), + [anon_sym_STAR] = ACTIONS(1471), + [anon_sym_CARET] = ACTIONS(1779), + [anon_sym_AMP] = ACTIONS(1779), + [anon_sym_this] = ACTIONS(1411), + [anon_sym_scoped] = ACTIONS(1413), + [anon_sym_base] = ACTIONS(1415), + [anon_sym_var] = ACTIONS(1417), + [sym_predefined_type] = ACTIONS(1419), + [anon_sym_unchecked] = ACTIONS(1401), + [anon_sym_yield] = ACTIONS(1387), + [anon_sym_default] = ACTIONS(1421), + [anon_sym_throw] = ACTIONS(1781), + [anon_sym_when] = ACTIONS(1387), + [anon_sym_await] = ACTIONS(1783), + [anon_sym_DOT_DOT] = ACTIONS(1785), + [anon_sym_from] = ACTIONS(1429), + [anon_sym_into] = ACTIONS(1387), + [anon_sym_join] = ACTIONS(1387), + [anon_sym_on] = ACTIONS(1387), + [anon_sym_equals] = ACTIONS(1387), + [anon_sym_let] = ACTIONS(1387), + [anon_sym_orderby] = ACTIONS(1387), + [anon_sym_ascending] = ACTIONS(1387), + [anon_sym_descending] = ACTIONS(1387), + [anon_sym_group] = ACTIONS(1387), + [anon_sym_by] = ACTIONS(1387), + [anon_sym_select] = ACTIONS(1387), + [anon_sym_stackalloc] = ACTIONS(1431), + [anon_sym_sizeof] = ACTIONS(1433), + [anon_sym_typeof] = ACTIONS(1435), + [anon_sym___makeref] = ACTIONS(1437), + [anon_sym___reftype] = ACTIONS(1439), + [anon_sym___refvalue] = ACTIONS(1441), + [sym_null_literal] = ACTIONS(1443), + [anon_sym_SQUOTE] = ACTIONS(1445), + [sym_integer_literal] = ACTIONS(1443), + [sym_real_literal] = ACTIONS(1447), + [anon_sym_DQUOTE] = ACTIONS(1449), + [sym_verbatim_string_literal] = ACTIONS(1447), + [aux_sym_preproc_if_token1] = ACTIONS(1451), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + [sym_interpolation_regular_start] = ACTIONS(1453), + [sym_interpolation_verbatim_start] = ACTIONS(1455), + [sym_interpolation_raw_start] = ACTIONS(1457), + [sym_raw_string_start] = ACTIONS(1459), + }, + [1757] = { + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(3182), + [sym__name] = STATE(5882), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2306), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2262), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(4842), + [sym_non_lvalue_expression] = STATE(4580), + [sym_lvalue_expression] = STATE(3534), + [sym__expression_statement_expression] = STATE(4573), + [sym_assignment_expression] = STATE(4581), + [sym_binary_expression] = STATE(4573), + [sym_postfix_unary_expression] = STATE(4581), + [sym_prefix_unary_expression] = STATE(4581), + [sym__pointer_indirection_expression] = STATE(3144), + [sym_query_expression] = STATE(4573), + [sym_from_clause] = STATE(6133), + [sym_conditional_expression] = STATE(4573), + [sym_conditional_access_expression] = STATE(4573), + [sym_as_expression] = STATE(4573), + [sym_is_expression] = STATE(4573), + [sym_is_pattern_expression] = STATE(4573), + [sym_cast_expression] = STATE(4573), + [sym_checked_expression] = STATE(4573), + [sym_invocation_expression] = STATE(4581), + [sym_switch_expression] = STATE(4573), + [sym_await_expression] = STATE(4581), + [sym_throw_expression] = STATE(4573), + [sym_element_access_expression] = STATE(3144), + [sym_interpolated_string_expression] = STATE(4573), + [sym_member_access_expression] = STATE(3144), + [sym_object_creation_expression] = STATE(4581), + [sym_parenthesized_expression] = STATE(4581), + [sym__parenthesized_lvalue_expression] = STATE(3144), + [sym_lambda_expression] = STATE(4573), + [sym__lambda_expression_init] = STATE(7592), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(4573), + [sym_anonymous_method_expression] = STATE(4573), + [sym_anonymous_object_creation_expression] = STATE(4573), + [sym_implicit_array_creation_expression] = STATE(4573), + [sym_implicit_object_creation_expression] = STATE(4573), + [sym_implicit_stackalloc_expression] = STATE(4573), + [sym_initializer_expression] = STATE(4573), + [sym_default_expression] = STATE(4573), + [sym_with_expression] = STATE(4573), + [sym_sizeof_expression] = STATE(4573), + [sym_typeof_expression] = STATE(4573), + [sym_makeref_expression] = STATE(4573), + [sym_ref_expression] = STATE(4573), + [sym_reftype_expression] = STATE(4573), + [sym_refvalue_expression] = STATE(4573), + [sym_stackalloc_expression] = STATE(4573), + [sym_range_expression] = STATE(4573), + [sym_tuple_expression] = STATE(3144), + [sym_literal] = STATE(4573), + [sym_character_literal] = STATE(4575), + [sym_string_literal] = STATE(4575), + [sym_raw_string_literal] = STATE(4575), + [sym_boolean_literal] = STATE(4575), + [sym_identifier] = STATE(2237), + [sym__reserved_identifier] = STATE(2229), + [sym_preproc_if_in_expression] = STATE(4573), + [sym_preproc_if_in_attribute_list] = STATE(5583), + [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(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3501), + [sym__identifier_token] = ACTIONS(1385), + [anon_sym_alias] = ACTIONS(1387), + [anon_sym_global] = ACTIONS(1387), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1389), + [anon_sym_LPAREN] = ACTIONS(1773), + [anon_sym_ref] = ACTIONS(1775), + [anon_sym_LBRACE] = ACTIONS(1395), + [anon_sym_delegate] = ACTIONS(1397), + [anon_sym_async] = ACTIONS(1045), + [anon_sym_file] = ACTIONS(1387), + [anon_sym_new] = ACTIONS(1465), + [anon_sym_where] = ACTIONS(1387), + [anon_sym_notnull] = ACTIONS(1387), + [anon_sym_unmanaged] = ACTIONS(1387), + [anon_sym_checked] = ACTIONS(1401), + [anon_sym_BANG] = ACTIONS(1779), + [anon_sym_TILDE] = ACTIONS(1779), + [anon_sym_PLUS_PLUS] = ACTIONS(1779), + [anon_sym_DASH_DASH] = ACTIONS(1779), + [anon_sym_true] = ACTIONS(1407), + [anon_sym_false] = ACTIONS(1407), + [anon_sym_PLUS] = ACTIONS(1777), + [anon_sym_DASH] = ACTIONS(1777), + [anon_sym_STAR] = ACTIONS(1471), + [anon_sym_CARET] = ACTIONS(1779), + [anon_sym_AMP] = ACTIONS(1779), + [anon_sym_this] = ACTIONS(1411), + [anon_sym_scoped] = ACTIONS(1413), + [anon_sym_base] = ACTIONS(1415), + [anon_sym_var] = ACTIONS(1417), + [sym_predefined_type] = ACTIONS(1419), + [anon_sym_unchecked] = ACTIONS(1401), + [anon_sym_yield] = ACTIONS(1387), + [anon_sym_default] = ACTIONS(1421), + [anon_sym_throw] = ACTIONS(1781), + [anon_sym_when] = ACTIONS(1387), + [anon_sym_await] = ACTIONS(1783), + [anon_sym_DOT_DOT] = ACTIONS(1785), + [anon_sym_from] = ACTIONS(1429), + [anon_sym_into] = ACTIONS(1387), + [anon_sym_join] = ACTIONS(1387), + [anon_sym_on] = ACTIONS(1387), + [anon_sym_equals] = ACTIONS(1387), + [anon_sym_let] = ACTIONS(1387), + [anon_sym_orderby] = ACTIONS(1387), + [anon_sym_ascending] = ACTIONS(1387), + [anon_sym_descending] = ACTIONS(1387), + [anon_sym_group] = ACTIONS(1387), + [anon_sym_by] = ACTIONS(1387), + [anon_sym_select] = ACTIONS(1387), + [anon_sym_stackalloc] = ACTIONS(1431), + [anon_sym_sizeof] = ACTIONS(1433), + [anon_sym_typeof] = ACTIONS(1435), + [anon_sym___makeref] = ACTIONS(1437), + [anon_sym___reftype] = ACTIONS(1439), + [anon_sym___refvalue] = ACTIONS(1441), + [sym_null_literal] = ACTIONS(1443), + [anon_sym_SQUOTE] = ACTIONS(1445), + [sym_integer_literal] = ACTIONS(1443), + [sym_real_literal] = ACTIONS(1447), + [anon_sym_DQUOTE] = ACTIONS(1449), + [sym_verbatim_string_literal] = ACTIONS(1447), + [aux_sym_preproc_if_token1] = ACTIONS(1451), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + [sym_interpolation_regular_start] = ACTIONS(1453), + [sym_interpolation_verbatim_start] = ACTIONS(1455), + [sym_interpolation_raw_start] = ACTIONS(1457), + [sym_raw_string_start] = ACTIONS(1459), + }, + [1758] = { + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(3182), + [sym__name] = STATE(5882), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2306), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2262), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(4863), + [sym_non_lvalue_expression] = STATE(4580), + [sym_lvalue_expression] = STATE(3534), + [sym__expression_statement_expression] = STATE(4573), + [sym_assignment_expression] = STATE(4581), + [sym_binary_expression] = STATE(4573), + [sym_postfix_unary_expression] = STATE(4581), + [sym_prefix_unary_expression] = STATE(4581), + [sym__pointer_indirection_expression] = STATE(3144), + [sym_query_expression] = STATE(4573), + [sym_from_clause] = STATE(6133), + [sym_conditional_expression] = STATE(4573), + [sym_conditional_access_expression] = STATE(4573), + [sym_as_expression] = STATE(4573), + [sym_is_expression] = STATE(4573), + [sym_is_pattern_expression] = STATE(4573), + [sym_cast_expression] = STATE(4573), + [sym_checked_expression] = STATE(4573), + [sym_invocation_expression] = STATE(4581), + [sym_switch_expression] = STATE(4573), + [sym_await_expression] = STATE(4581), + [sym_throw_expression] = STATE(4573), + [sym_element_access_expression] = STATE(3144), + [sym_interpolated_string_expression] = STATE(4573), + [sym_member_access_expression] = STATE(3144), + [sym_object_creation_expression] = STATE(4581), + [sym_parenthesized_expression] = STATE(4581), + [sym__parenthesized_lvalue_expression] = STATE(3144), + [sym_lambda_expression] = STATE(4573), + [sym__lambda_expression_init] = STATE(7592), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(4573), + [sym_anonymous_method_expression] = STATE(4573), + [sym_anonymous_object_creation_expression] = STATE(4573), + [sym_implicit_array_creation_expression] = STATE(4573), + [sym_implicit_object_creation_expression] = STATE(4573), + [sym_implicit_stackalloc_expression] = STATE(4573), + [sym_initializer_expression] = STATE(4573), + [sym_default_expression] = STATE(4573), + [sym_with_expression] = STATE(4573), + [sym_sizeof_expression] = STATE(4573), + [sym_typeof_expression] = STATE(4573), + [sym_makeref_expression] = STATE(4573), + [sym_ref_expression] = STATE(4573), + [sym_reftype_expression] = STATE(4573), + [sym_refvalue_expression] = STATE(4573), + [sym_stackalloc_expression] = STATE(4573), + [sym_range_expression] = STATE(4573), + [sym_tuple_expression] = STATE(3144), + [sym_literal] = STATE(4573), + [sym_character_literal] = STATE(4575), + [sym_string_literal] = STATE(4575), + [sym_raw_string_literal] = STATE(4575), + [sym_boolean_literal] = STATE(4575), + [sym_identifier] = STATE(2237), + [sym__reserved_identifier] = STATE(2229), + [sym_preproc_if_in_expression] = STATE(4573), + [sym_preproc_if_in_attribute_list] = STATE(5583), + [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(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3501), + [sym__identifier_token] = ACTIONS(1385), + [anon_sym_alias] = ACTIONS(1387), + [anon_sym_global] = ACTIONS(1387), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1389), + [anon_sym_LPAREN] = ACTIONS(1773), + [anon_sym_ref] = ACTIONS(1775), + [anon_sym_LBRACE] = ACTIONS(1395), + [anon_sym_delegate] = ACTIONS(1397), + [anon_sym_async] = ACTIONS(1045), + [anon_sym_file] = ACTIONS(1387), + [anon_sym_new] = ACTIONS(1465), + [anon_sym_where] = ACTIONS(1387), + [anon_sym_notnull] = ACTIONS(1387), + [anon_sym_unmanaged] = ACTIONS(1387), + [anon_sym_checked] = ACTIONS(1401), + [anon_sym_BANG] = ACTIONS(1779), + [anon_sym_TILDE] = ACTIONS(1779), + [anon_sym_PLUS_PLUS] = ACTIONS(1779), + [anon_sym_DASH_DASH] = ACTIONS(1779), + [anon_sym_true] = ACTIONS(1407), + [anon_sym_false] = ACTIONS(1407), + [anon_sym_PLUS] = ACTIONS(1777), + [anon_sym_DASH] = ACTIONS(1777), + [anon_sym_STAR] = ACTIONS(1471), + [anon_sym_CARET] = ACTIONS(1779), + [anon_sym_AMP] = ACTIONS(1779), + [anon_sym_this] = ACTIONS(1411), + [anon_sym_scoped] = ACTIONS(1413), + [anon_sym_base] = ACTIONS(1415), + [anon_sym_var] = ACTIONS(1417), + [sym_predefined_type] = ACTIONS(1419), + [anon_sym_unchecked] = ACTIONS(1401), + [anon_sym_yield] = ACTIONS(1387), + [anon_sym_default] = ACTIONS(1421), + [anon_sym_throw] = ACTIONS(1781), + [anon_sym_when] = ACTIONS(1387), + [anon_sym_await] = ACTIONS(1783), + [anon_sym_DOT_DOT] = ACTIONS(1785), + [anon_sym_from] = ACTIONS(1429), + [anon_sym_into] = ACTIONS(1387), + [anon_sym_join] = ACTIONS(1387), + [anon_sym_on] = ACTIONS(1387), + [anon_sym_equals] = ACTIONS(1387), + [anon_sym_let] = ACTIONS(1387), + [anon_sym_orderby] = ACTIONS(1387), + [anon_sym_ascending] = ACTIONS(1387), + [anon_sym_descending] = ACTIONS(1387), + [anon_sym_group] = ACTIONS(1387), + [anon_sym_by] = ACTIONS(1387), + [anon_sym_select] = ACTIONS(1387), + [anon_sym_stackalloc] = ACTIONS(1431), + [anon_sym_sizeof] = ACTIONS(1433), + [anon_sym_typeof] = ACTIONS(1435), + [anon_sym___makeref] = ACTIONS(1437), + [anon_sym___reftype] = ACTIONS(1439), + [anon_sym___refvalue] = ACTIONS(1441), + [sym_null_literal] = ACTIONS(1443), + [anon_sym_SQUOTE] = ACTIONS(1445), + [sym_integer_literal] = ACTIONS(1443), + [sym_real_literal] = ACTIONS(1447), + [anon_sym_DQUOTE] = ACTIONS(1449), + [sym_verbatim_string_literal] = ACTIONS(1447), + [aux_sym_preproc_if_token1] = ACTIONS(1451), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + [sym_interpolation_regular_start] = ACTIONS(1453), + [sym_interpolation_verbatim_start] = ACTIONS(1455), + [sym_interpolation_raw_start] = ACTIONS(1457), + [sym_raw_string_start] = ACTIONS(1459), + }, + [1759] = { + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(3182), + [sym__name] = STATE(5882), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2306), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2262), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(4864), + [sym_non_lvalue_expression] = STATE(4580), + [sym_lvalue_expression] = STATE(3534), + [sym__expression_statement_expression] = STATE(4573), + [sym_assignment_expression] = STATE(4581), + [sym_binary_expression] = STATE(4573), + [sym_postfix_unary_expression] = STATE(4581), + [sym_prefix_unary_expression] = STATE(4581), + [sym__pointer_indirection_expression] = STATE(3144), + [sym_query_expression] = STATE(4573), + [sym_from_clause] = STATE(6133), + [sym_conditional_expression] = STATE(4573), + [sym_conditional_access_expression] = STATE(4573), + [sym_as_expression] = STATE(4573), + [sym_is_expression] = STATE(4573), + [sym_is_pattern_expression] = STATE(4573), + [sym_cast_expression] = STATE(4573), + [sym_checked_expression] = STATE(4573), + [sym_invocation_expression] = STATE(4581), + [sym_switch_expression] = STATE(4573), + [sym_await_expression] = STATE(4581), + [sym_throw_expression] = STATE(4573), + [sym_element_access_expression] = STATE(3144), + [sym_interpolated_string_expression] = STATE(4573), + [sym_member_access_expression] = STATE(3144), + [sym_object_creation_expression] = STATE(4581), + [sym_parenthesized_expression] = STATE(4581), + [sym__parenthesized_lvalue_expression] = STATE(3144), + [sym_lambda_expression] = STATE(4573), + [sym__lambda_expression_init] = STATE(7592), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(4573), + [sym_anonymous_method_expression] = STATE(4573), + [sym_anonymous_object_creation_expression] = STATE(4573), + [sym_implicit_array_creation_expression] = STATE(4573), + [sym_implicit_object_creation_expression] = STATE(4573), + [sym_implicit_stackalloc_expression] = STATE(4573), + [sym_initializer_expression] = STATE(4573), + [sym_default_expression] = STATE(4573), + [sym_with_expression] = STATE(4573), + [sym_sizeof_expression] = STATE(4573), + [sym_typeof_expression] = STATE(4573), + [sym_makeref_expression] = STATE(4573), + [sym_ref_expression] = STATE(4573), + [sym_reftype_expression] = STATE(4573), + [sym_refvalue_expression] = STATE(4573), + [sym_stackalloc_expression] = STATE(4573), + [sym_range_expression] = STATE(4573), + [sym_tuple_expression] = STATE(3144), + [sym_literal] = STATE(4573), + [sym_character_literal] = STATE(4575), + [sym_string_literal] = STATE(4575), + [sym_raw_string_literal] = STATE(4575), + [sym_boolean_literal] = STATE(4575), + [sym_identifier] = STATE(2237), + [sym__reserved_identifier] = STATE(2229), + [sym_preproc_if_in_expression] = STATE(4573), + [sym_preproc_if_in_attribute_list] = STATE(5583), + [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(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3501), + [sym__identifier_token] = ACTIONS(1385), + [anon_sym_alias] = ACTIONS(1387), + [anon_sym_global] = ACTIONS(1387), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1389), + [anon_sym_LPAREN] = ACTIONS(1773), + [anon_sym_ref] = ACTIONS(1775), + [anon_sym_LBRACE] = ACTIONS(1395), + [anon_sym_delegate] = ACTIONS(1397), + [anon_sym_async] = ACTIONS(1045), + [anon_sym_file] = ACTIONS(1387), + [anon_sym_new] = ACTIONS(1465), + [anon_sym_where] = ACTIONS(1387), + [anon_sym_notnull] = ACTIONS(1387), + [anon_sym_unmanaged] = ACTIONS(1387), + [anon_sym_checked] = ACTIONS(1401), + [anon_sym_BANG] = ACTIONS(1779), + [anon_sym_TILDE] = ACTIONS(1779), + [anon_sym_PLUS_PLUS] = ACTIONS(1779), + [anon_sym_DASH_DASH] = ACTIONS(1779), + [anon_sym_true] = ACTIONS(1407), + [anon_sym_false] = ACTIONS(1407), + [anon_sym_PLUS] = ACTIONS(1777), + [anon_sym_DASH] = ACTIONS(1777), + [anon_sym_STAR] = ACTIONS(1471), + [anon_sym_CARET] = ACTIONS(1779), + [anon_sym_AMP] = ACTIONS(1779), + [anon_sym_this] = ACTIONS(1411), + [anon_sym_scoped] = ACTIONS(1413), + [anon_sym_base] = ACTIONS(1415), + [anon_sym_var] = ACTIONS(1417), + [sym_predefined_type] = ACTIONS(1419), + [anon_sym_unchecked] = ACTIONS(1401), + [anon_sym_yield] = ACTIONS(1387), + [anon_sym_default] = ACTIONS(1421), + [anon_sym_throw] = ACTIONS(1781), + [anon_sym_when] = ACTIONS(1387), + [anon_sym_await] = ACTIONS(1783), + [anon_sym_DOT_DOT] = ACTIONS(1785), + [anon_sym_from] = ACTIONS(1429), + [anon_sym_into] = ACTIONS(1387), + [anon_sym_join] = ACTIONS(1387), + [anon_sym_on] = ACTIONS(1387), + [anon_sym_equals] = ACTIONS(1387), + [anon_sym_let] = ACTIONS(1387), + [anon_sym_orderby] = ACTIONS(1387), + [anon_sym_ascending] = ACTIONS(1387), + [anon_sym_descending] = ACTIONS(1387), + [anon_sym_group] = ACTIONS(1387), + [anon_sym_by] = ACTIONS(1387), + [anon_sym_select] = ACTIONS(1387), + [anon_sym_stackalloc] = ACTIONS(1431), + [anon_sym_sizeof] = ACTIONS(1433), + [anon_sym_typeof] = ACTIONS(1435), + [anon_sym___makeref] = ACTIONS(1437), + [anon_sym___reftype] = ACTIONS(1439), + [anon_sym___refvalue] = ACTIONS(1441), + [sym_null_literal] = ACTIONS(1443), + [anon_sym_SQUOTE] = ACTIONS(1445), + [sym_integer_literal] = ACTIONS(1443), + [sym_real_literal] = ACTIONS(1447), + [anon_sym_DQUOTE] = ACTIONS(1449), + [sym_verbatim_string_literal] = ACTIONS(1447), + [aux_sym_preproc_if_token1] = ACTIONS(1451), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + [sym_interpolation_regular_start] = ACTIONS(1453), + [sym_interpolation_verbatim_start] = ACTIONS(1455), + [sym_interpolation_raw_start] = ACTIONS(1457), + [sym_raw_string_start] = ACTIONS(1459), + }, + [1760] = { + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(3182), + [sym__name] = STATE(5882), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2306), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2262), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(4875), + [sym_non_lvalue_expression] = STATE(4580), + [sym_lvalue_expression] = STATE(3534), + [sym__expression_statement_expression] = STATE(4573), + [sym_assignment_expression] = STATE(4581), + [sym_binary_expression] = STATE(4573), + [sym_postfix_unary_expression] = STATE(4581), + [sym_prefix_unary_expression] = STATE(4581), + [sym__pointer_indirection_expression] = STATE(3144), + [sym_query_expression] = STATE(4573), + [sym_from_clause] = STATE(6133), + [sym_conditional_expression] = STATE(4573), + [sym_conditional_access_expression] = STATE(4573), + [sym_as_expression] = STATE(4573), + [sym_is_expression] = STATE(4573), + [sym_is_pattern_expression] = STATE(4573), + [sym_cast_expression] = STATE(4573), + [sym_checked_expression] = STATE(4573), + [sym_invocation_expression] = STATE(4581), + [sym_switch_expression] = STATE(4573), + [sym_await_expression] = STATE(4581), + [sym_throw_expression] = STATE(4573), + [sym_element_access_expression] = STATE(3144), + [sym_interpolated_string_expression] = STATE(4573), + [sym_member_access_expression] = STATE(3144), + [sym_object_creation_expression] = STATE(4581), + [sym_parenthesized_expression] = STATE(4581), + [sym__parenthesized_lvalue_expression] = STATE(3144), + [sym_lambda_expression] = STATE(4573), + [sym__lambda_expression_init] = STATE(7592), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(4573), + [sym_anonymous_method_expression] = STATE(4573), + [sym_anonymous_object_creation_expression] = STATE(4573), + [sym_implicit_array_creation_expression] = STATE(4573), + [sym_implicit_object_creation_expression] = STATE(4573), + [sym_implicit_stackalloc_expression] = STATE(4573), + [sym_initializer_expression] = STATE(4573), + [sym_default_expression] = STATE(4573), + [sym_with_expression] = STATE(4573), + [sym_sizeof_expression] = STATE(4573), + [sym_typeof_expression] = STATE(4573), + [sym_makeref_expression] = STATE(4573), + [sym_ref_expression] = STATE(4573), + [sym_reftype_expression] = STATE(4573), + [sym_refvalue_expression] = STATE(4573), + [sym_stackalloc_expression] = STATE(4573), + [sym_range_expression] = STATE(4573), + [sym_tuple_expression] = STATE(3144), + [sym_literal] = STATE(4573), + [sym_character_literal] = STATE(4575), + [sym_string_literal] = STATE(4575), + [sym_raw_string_literal] = STATE(4575), + [sym_boolean_literal] = STATE(4575), + [sym_identifier] = STATE(2237), + [sym__reserved_identifier] = STATE(2229), + [sym_preproc_if_in_expression] = STATE(4573), + [sym_preproc_if_in_attribute_list] = STATE(5583), + [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(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3501), + [sym__identifier_token] = ACTIONS(1385), + [anon_sym_alias] = ACTIONS(1387), + [anon_sym_global] = ACTIONS(1387), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1389), + [anon_sym_LPAREN] = ACTIONS(1773), + [anon_sym_ref] = ACTIONS(1775), + [anon_sym_LBRACE] = ACTIONS(1395), + [anon_sym_delegate] = ACTIONS(1397), + [anon_sym_async] = ACTIONS(1045), + [anon_sym_file] = ACTIONS(1387), + [anon_sym_new] = ACTIONS(1465), + [anon_sym_where] = ACTIONS(1387), + [anon_sym_notnull] = ACTIONS(1387), + [anon_sym_unmanaged] = ACTIONS(1387), + [anon_sym_checked] = ACTIONS(1401), + [anon_sym_BANG] = ACTIONS(1779), + [anon_sym_TILDE] = ACTIONS(1779), + [anon_sym_PLUS_PLUS] = ACTIONS(1779), + [anon_sym_DASH_DASH] = ACTIONS(1779), + [anon_sym_true] = ACTIONS(1407), + [anon_sym_false] = ACTIONS(1407), + [anon_sym_PLUS] = ACTIONS(1777), + [anon_sym_DASH] = ACTIONS(1777), + [anon_sym_STAR] = ACTIONS(1471), + [anon_sym_CARET] = ACTIONS(1779), + [anon_sym_AMP] = ACTIONS(1779), + [anon_sym_this] = ACTIONS(1411), + [anon_sym_scoped] = ACTIONS(1413), + [anon_sym_base] = ACTIONS(1415), + [anon_sym_var] = ACTIONS(1417), + [sym_predefined_type] = ACTIONS(1419), + [anon_sym_unchecked] = ACTIONS(1401), + [anon_sym_yield] = ACTIONS(1387), + [anon_sym_default] = ACTIONS(1421), + [anon_sym_throw] = ACTIONS(1781), + [anon_sym_when] = ACTIONS(1387), + [anon_sym_await] = ACTIONS(1783), + [anon_sym_DOT_DOT] = ACTIONS(1785), + [anon_sym_from] = ACTIONS(1429), + [anon_sym_into] = ACTIONS(1387), + [anon_sym_join] = ACTIONS(1387), + [anon_sym_on] = ACTIONS(1387), + [anon_sym_equals] = ACTIONS(1387), + [anon_sym_let] = ACTIONS(1387), + [anon_sym_orderby] = ACTIONS(1387), + [anon_sym_ascending] = ACTIONS(1387), + [anon_sym_descending] = ACTIONS(1387), + [anon_sym_group] = ACTIONS(1387), + [anon_sym_by] = ACTIONS(1387), + [anon_sym_select] = ACTIONS(1387), + [anon_sym_stackalloc] = ACTIONS(1431), + [anon_sym_sizeof] = ACTIONS(1433), + [anon_sym_typeof] = ACTIONS(1435), + [anon_sym___makeref] = ACTIONS(1437), + [anon_sym___reftype] = ACTIONS(1439), + [anon_sym___refvalue] = ACTIONS(1441), + [sym_null_literal] = ACTIONS(1443), + [anon_sym_SQUOTE] = ACTIONS(1445), + [sym_integer_literal] = ACTIONS(1443), + [sym_real_literal] = ACTIONS(1447), + [anon_sym_DQUOTE] = ACTIONS(1449), + [sym_verbatim_string_literal] = ACTIONS(1447), + [aux_sym_preproc_if_token1] = ACTIONS(1451), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + [sym_interpolation_regular_start] = ACTIONS(1453), + [sym_interpolation_verbatim_start] = ACTIONS(1455), + [sym_interpolation_raw_start] = ACTIONS(1457), + [sym_raw_string_start] = ACTIONS(1459), + }, + [1761] = { + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(3182), + [sym__name] = STATE(5882), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2306), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2262), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(4876), + [sym_non_lvalue_expression] = STATE(4580), + [sym_lvalue_expression] = STATE(3534), + [sym__expression_statement_expression] = STATE(4573), + [sym_assignment_expression] = STATE(4581), + [sym_binary_expression] = STATE(4573), + [sym_postfix_unary_expression] = STATE(4581), + [sym_prefix_unary_expression] = STATE(4581), + [sym__pointer_indirection_expression] = STATE(3144), + [sym_query_expression] = STATE(4573), + [sym_from_clause] = STATE(6133), + [sym_conditional_expression] = STATE(4573), + [sym_conditional_access_expression] = STATE(4573), + [sym_as_expression] = STATE(4573), + [sym_is_expression] = STATE(4573), + [sym_is_pattern_expression] = STATE(4573), + [sym_cast_expression] = STATE(4573), + [sym_checked_expression] = STATE(4573), + [sym_invocation_expression] = STATE(4581), + [sym_switch_expression] = STATE(4573), + [sym_await_expression] = STATE(4581), + [sym_throw_expression] = STATE(4573), + [sym_element_access_expression] = STATE(3144), + [sym_interpolated_string_expression] = STATE(4573), + [sym_member_access_expression] = STATE(3144), + [sym_object_creation_expression] = STATE(4581), + [sym_parenthesized_expression] = STATE(4581), + [sym__parenthesized_lvalue_expression] = STATE(3144), + [sym_lambda_expression] = STATE(4573), + [sym__lambda_expression_init] = STATE(7592), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(4573), + [sym_anonymous_method_expression] = STATE(4573), + [sym_anonymous_object_creation_expression] = STATE(4573), + [sym_implicit_array_creation_expression] = STATE(4573), + [sym_implicit_object_creation_expression] = STATE(4573), + [sym_implicit_stackalloc_expression] = STATE(4573), + [sym_initializer_expression] = STATE(4573), + [sym_default_expression] = STATE(4573), + [sym_with_expression] = STATE(4573), + [sym_sizeof_expression] = STATE(4573), + [sym_typeof_expression] = STATE(4573), + [sym_makeref_expression] = STATE(4573), + [sym_ref_expression] = STATE(4573), + [sym_reftype_expression] = STATE(4573), + [sym_refvalue_expression] = STATE(4573), + [sym_stackalloc_expression] = STATE(4573), + [sym_range_expression] = STATE(4573), + [sym_tuple_expression] = STATE(3144), + [sym_literal] = STATE(4573), + [sym_character_literal] = STATE(4575), + [sym_string_literal] = STATE(4575), + [sym_raw_string_literal] = STATE(4575), + [sym_boolean_literal] = STATE(4575), + [sym_identifier] = STATE(2237), + [sym__reserved_identifier] = STATE(2229), + [sym_preproc_if_in_expression] = STATE(4573), + [sym_preproc_if_in_attribute_list] = STATE(5583), + [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(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3501), + [sym__identifier_token] = ACTIONS(1385), + [anon_sym_alias] = ACTIONS(1387), + [anon_sym_global] = ACTIONS(1387), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1389), + [anon_sym_LPAREN] = ACTIONS(1773), + [anon_sym_ref] = ACTIONS(1775), + [anon_sym_LBRACE] = ACTIONS(1395), + [anon_sym_delegate] = ACTIONS(1397), + [anon_sym_async] = ACTIONS(1045), + [anon_sym_file] = ACTIONS(1387), + [anon_sym_new] = ACTIONS(1465), + [anon_sym_where] = ACTIONS(1387), + [anon_sym_notnull] = ACTIONS(1387), + [anon_sym_unmanaged] = ACTIONS(1387), + [anon_sym_checked] = ACTIONS(1401), + [anon_sym_BANG] = ACTIONS(1779), + [anon_sym_TILDE] = ACTIONS(1779), + [anon_sym_PLUS_PLUS] = ACTIONS(1779), + [anon_sym_DASH_DASH] = ACTIONS(1779), + [anon_sym_true] = ACTIONS(1407), + [anon_sym_false] = ACTIONS(1407), + [anon_sym_PLUS] = ACTIONS(1777), + [anon_sym_DASH] = ACTIONS(1777), + [anon_sym_STAR] = ACTIONS(1471), + [anon_sym_CARET] = ACTIONS(1779), + [anon_sym_AMP] = ACTIONS(1779), + [anon_sym_this] = ACTIONS(1411), + [anon_sym_scoped] = ACTIONS(1413), + [anon_sym_base] = ACTIONS(1415), + [anon_sym_var] = ACTIONS(1417), + [sym_predefined_type] = ACTIONS(1419), + [anon_sym_unchecked] = ACTIONS(1401), + [anon_sym_yield] = ACTIONS(1387), + [anon_sym_default] = ACTIONS(1421), + [anon_sym_throw] = ACTIONS(1781), + [anon_sym_when] = ACTIONS(1387), + [anon_sym_await] = ACTIONS(1783), + [anon_sym_DOT_DOT] = ACTIONS(1785), + [anon_sym_from] = ACTIONS(1429), + [anon_sym_into] = ACTIONS(1387), + [anon_sym_join] = ACTIONS(1387), + [anon_sym_on] = ACTIONS(1387), + [anon_sym_equals] = ACTIONS(1387), + [anon_sym_let] = ACTIONS(1387), + [anon_sym_orderby] = ACTIONS(1387), + [anon_sym_ascending] = ACTIONS(1387), + [anon_sym_descending] = ACTIONS(1387), + [anon_sym_group] = ACTIONS(1387), + [anon_sym_by] = ACTIONS(1387), + [anon_sym_select] = ACTIONS(1387), + [anon_sym_stackalloc] = ACTIONS(1431), + [anon_sym_sizeof] = ACTIONS(1433), + [anon_sym_typeof] = ACTIONS(1435), + [anon_sym___makeref] = ACTIONS(1437), + [anon_sym___reftype] = ACTIONS(1439), + [anon_sym___refvalue] = ACTIONS(1441), + [sym_null_literal] = ACTIONS(1443), + [anon_sym_SQUOTE] = ACTIONS(1445), + [sym_integer_literal] = ACTIONS(1443), + [sym_real_literal] = ACTIONS(1447), + [anon_sym_DQUOTE] = ACTIONS(1449), + [sym_verbatim_string_literal] = ACTIONS(1447), + [aux_sym_preproc_if_token1] = ACTIONS(1451), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + [sym_interpolation_regular_start] = ACTIONS(1453), + [sym_interpolation_verbatim_start] = ACTIONS(1455), + [sym_interpolation_raw_start] = ACTIONS(1457), + [sym_raw_string_start] = ACTIONS(1459), + }, + [1762] = { + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(3182), + [sym__name] = STATE(5882), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2306), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2262), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(4877), + [sym_non_lvalue_expression] = STATE(4580), + [sym_lvalue_expression] = STATE(3534), + [sym__expression_statement_expression] = STATE(4573), + [sym_assignment_expression] = STATE(4581), + [sym_binary_expression] = STATE(4573), + [sym_postfix_unary_expression] = STATE(4581), + [sym_prefix_unary_expression] = STATE(4581), + [sym__pointer_indirection_expression] = STATE(3144), + [sym_query_expression] = STATE(4573), + [sym_from_clause] = STATE(6133), + [sym_conditional_expression] = STATE(4573), + [sym_conditional_access_expression] = STATE(4573), + [sym_as_expression] = STATE(4573), + [sym_is_expression] = STATE(4573), + [sym_is_pattern_expression] = STATE(4573), + [sym_cast_expression] = STATE(4573), + [sym_checked_expression] = STATE(4573), + [sym_invocation_expression] = STATE(4581), + [sym_switch_expression] = STATE(4573), + [sym_await_expression] = STATE(4581), + [sym_throw_expression] = STATE(4573), + [sym_element_access_expression] = STATE(3144), + [sym_interpolated_string_expression] = STATE(4573), + [sym_member_access_expression] = STATE(3144), + [sym_object_creation_expression] = STATE(4581), + [sym_parenthesized_expression] = STATE(4581), + [sym__parenthesized_lvalue_expression] = STATE(3144), + [sym_lambda_expression] = STATE(4573), + [sym__lambda_expression_init] = STATE(7592), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(4573), + [sym_anonymous_method_expression] = STATE(4573), + [sym_anonymous_object_creation_expression] = STATE(4573), + [sym_implicit_array_creation_expression] = STATE(4573), + [sym_implicit_object_creation_expression] = STATE(4573), + [sym_implicit_stackalloc_expression] = STATE(4573), + [sym_initializer_expression] = STATE(4573), + [sym_default_expression] = STATE(4573), + [sym_with_expression] = STATE(4573), + [sym_sizeof_expression] = STATE(4573), + [sym_typeof_expression] = STATE(4573), + [sym_makeref_expression] = STATE(4573), + [sym_ref_expression] = STATE(4573), + [sym_reftype_expression] = STATE(4573), + [sym_refvalue_expression] = STATE(4573), + [sym_stackalloc_expression] = STATE(4573), + [sym_range_expression] = STATE(4573), + [sym_tuple_expression] = STATE(3144), + [sym_literal] = STATE(4573), + [sym_character_literal] = STATE(4575), + [sym_string_literal] = STATE(4575), + [sym_raw_string_literal] = STATE(4575), + [sym_boolean_literal] = STATE(4575), + [sym_identifier] = STATE(2237), + [sym__reserved_identifier] = STATE(2229), + [sym_preproc_if_in_expression] = STATE(4573), + [sym_preproc_if_in_attribute_list] = STATE(5583), + [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(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3501), + [sym__identifier_token] = ACTIONS(1385), + [anon_sym_alias] = ACTIONS(1387), + [anon_sym_global] = ACTIONS(1387), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1389), + [anon_sym_LPAREN] = ACTIONS(1773), + [anon_sym_ref] = ACTIONS(1775), + [anon_sym_LBRACE] = ACTIONS(1395), + [anon_sym_delegate] = ACTIONS(1397), + [anon_sym_async] = ACTIONS(1045), + [anon_sym_file] = ACTIONS(1387), + [anon_sym_new] = ACTIONS(1465), + [anon_sym_where] = ACTIONS(1387), + [anon_sym_notnull] = ACTIONS(1387), + [anon_sym_unmanaged] = ACTIONS(1387), + [anon_sym_checked] = ACTIONS(1401), + [anon_sym_BANG] = ACTIONS(1779), + [anon_sym_TILDE] = ACTIONS(1779), + [anon_sym_PLUS_PLUS] = ACTIONS(1779), + [anon_sym_DASH_DASH] = ACTIONS(1779), + [anon_sym_true] = ACTIONS(1407), + [anon_sym_false] = ACTIONS(1407), + [anon_sym_PLUS] = ACTIONS(1777), + [anon_sym_DASH] = ACTIONS(1777), + [anon_sym_STAR] = ACTIONS(1471), + [anon_sym_CARET] = ACTIONS(1779), + [anon_sym_AMP] = ACTIONS(1779), + [anon_sym_this] = ACTIONS(1411), + [anon_sym_scoped] = ACTIONS(1413), + [anon_sym_base] = ACTIONS(1415), + [anon_sym_var] = ACTIONS(1417), + [sym_predefined_type] = ACTIONS(1419), + [anon_sym_unchecked] = ACTIONS(1401), + [anon_sym_yield] = ACTIONS(1387), + [anon_sym_default] = ACTIONS(1421), + [anon_sym_throw] = ACTIONS(1781), + [anon_sym_when] = ACTIONS(1387), + [anon_sym_await] = ACTIONS(1783), + [anon_sym_DOT_DOT] = ACTIONS(1785), + [anon_sym_from] = ACTIONS(1429), + [anon_sym_into] = ACTIONS(1387), + [anon_sym_join] = ACTIONS(1387), + [anon_sym_on] = ACTIONS(1387), + [anon_sym_equals] = ACTIONS(1387), + [anon_sym_let] = ACTIONS(1387), + [anon_sym_orderby] = ACTIONS(1387), + [anon_sym_ascending] = ACTIONS(1387), + [anon_sym_descending] = ACTIONS(1387), + [anon_sym_group] = ACTIONS(1387), + [anon_sym_by] = ACTIONS(1387), + [anon_sym_select] = ACTIONS(1387), + [anon_sym_stackalloc] = ACTIONS(1431), + [anon_sym_sizeof] = ACTIONS(1433), + [anon_sym_typeof] = ACTIONS(1435), + [anon_sym___makeref] = ACTIONS(1437), + [anon_sym___reftype] = ACTIONS(1439), + [anon_sym___refvalue] = ACTIONS(1441), + [sym_null_literal] = ACTIONS(1443), + [anon_sym_SQUOTE] = ACTIONS(1445), + [sym_integer_literal] = ACTIONS(1443), + [sym_real_literal] = ACTIONS(1447), + [anon_sym_DQUOTE] = ACTIONS(1449), + [sym_verbatim_string_literal] = ACTIONS(1447), + [aux_sym_preproc_if_token1] = ACTIONS(1451), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + [sym_interpolation_regular_start] = ACTIONS(1453), + [sym_interpolation_verbatim_start] = ACTIONS(1455), + [sym_interpolation_raw_start] = ACTIONS(1457), + [sym_raw_string_start] = ACTIONS(1459), + }, + [1763] = { + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(3182), + [sym__name] = STATE(5882), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2306), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2262), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(4878), + [sym_non_lvalue_expression] = STATE(4580), + [sym_lvalue_expression] = STATE(3534), + [sym__expression_statement_expression] = STATE(4573), + [sym_assignment_expression] = STATE(4581), + [sym_binary_expression] = STATE(4573), + [sym_postfix_unary_expression] = STATE(4581), + [sym_prefix_unary_expression] = STATE(4581), + [sym__pointer_indirection_expression] = STATE(3144), + [sym_query_expression] = STATE(4573), + [sym_from_clause] = STATE(6133), + [sym_conditional_expression] = STATE(4573), + [sym_conditional_access_expression] = STATE(4573), + [sym_as_expression] = STATE(4573), + [sym_is_expression] = STATE(4573), + [sym_is_pattern_expression] = STATE(4573), + [sym_cast_expression] = STATE(4573), + [sym_checked_expression] = STATE(4573), + [sym_invocation_expression] = STATE(4581), + [sym_switch_expression] = STATE(4573), + [sym_await_expression] = STATE(4581), + [sym_throw_expression] = STATE(4573), + [sym_element_access_expression] = STATE(3144), + [sym_interpolated_string_expression] = STATE(4573), + [sym_member_access_expression] = STATE(3144), + [sym_object_creation_expression] = STATE(4581), + [sym_parenthesized_expression] = STATE(4581), + [sym__parenthesized_lvalue_expression] = STATE(3144), + [sym_lambda_expression] = STATE(4573), + [sym__lambda_expression_init] = STATE(7592), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(4573), + [sym_anonymous_method_expression] = STATE(4573), + [sym_anonymous_object_creation_expression] = STATE(4573), + [sym_implicit_array_creation_expression] = STATE(4573), + [sym_implicit_object_creation_expression] = STATE(4573), + [sym_implicit_stackalloc_expression] = STATE(4573), + [sym_initializer_expression] = STATE(4573), + [sym_default_expression] = STATE(4573), + [sym_with_expression] = STATE(4573), + [sym_sizeof_expression] = STATE(4573), + [sym_typeof_expression] = STATE(4573), + [sym_makeref_expression] = STATE(4573), + [sym_ref_expression] = STATE(4573), + [sym_reftype_expression] = STATE(4573), + [sym_refvalue_expression] = STATE(4573), + [sym_stackalloc_expression] = STATE(4573), + [sym_range_expression] = STATE(4573), + [sym_tuple_expression] = STATE(3144), + [sym_literal] = STATE(4573), + [sym_character_literal] = STATE(4575), + [sym_string_literal] = STATE(4575), + [sym_raw_string_literal] = STATE(4575), + [sym_boolean_literal] = STATE(4575), + [sym_identifier] = STATE(2237), + [sym__reserved_identifier] = STATE(2229), + [sym_preproc_if_in_expression] = STATE(4573), + [sym_preproc_if_in_attribute_list] = STATE(5583), + [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(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3501), + [sym__identifier_token] = ACTIONS(1385), + [anon_sym_alias] = ACTIONS(1387), + [anon_sym_global] = ACTIONS(1387), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1389), + [anon_sym_LPAREN] = ACTIONS(1773), + [anon_sym_ref] = ACTIONS(1775), + [anon_sym_LBRACE] = ACTIONS(1395), + [anon_sym_delegate] = ACTIONS(1397), + [anon_sym_async] = ACTIONS(1045), + [anon_sym_file] = ACTIONS(1387), + [anon_sym_new] = ACTIONS(1465), + [anon_sym_where] = ACTIONS(1387), + [anon_sym_notnull] = ACTIONS(1387), + [anon_sym_unmanaged] = ACTIONS(1387), + [anon_sym_checked] = ACTIONS(1401), + [anon_sym_BANG] = ACTIONS(1779), + [anon_sym_TILDE] = ACTIONS(1779), + [anon_sym_PLUS_PLUS] = ACTIONS(1779), + [anon_sym_DASH_DASH] = ACTIONS(1779), + [anon_sym_true] = ACTIONS(1407), + [anon_sym_false] = ACTIONS(1407), + [anon_sym_PLUS] = ACTIONS(1777), + [anon_sym_DASH] = ACTIONS(1777), + [anon_sym_STAR] = ACTIONS(1471), + [anon_sym_CARET] = ACTIONS(1779), + [anon_sym_AMP] = ACTIONS(1779), + [anon_sym_this] = ACTIONS(1411), + [anon_sym_scoped] = ACTIONS(1413), + [anon_sym_base] = ACTIONS(1415), + [anon_sym_var] = ACTIONS(1417), + [sym_predefined_type] = ACTIONS(1419), + [anon_sym_unchecked] = ACTIONS(1401), + [anon_sym_yield] = ACTIONS(1387), + [anon_sym_default] = ACTIONS(1421), + [anon_sym_throw] = ACTIONS(1781), + [anon_sym_when] = ACTIONS(1387), + [anon_sym_await] = ACTIONS(1783), + [anon_sym_DOT_DOT] = ACTIONS(1785), + [anon_sym_from] = ACTIONS(1429), + [anon_sym_into] = ACTIONS(1387), + [anon_sym_join] = ACTIONS(1387), + [anon_sym_on] = ACTIONS(1387), + [anon_sym_equals] = ACTIONS(1387), + [anon_sym_let] = ACTIONS(1387), + [anon_sym_orderby] = ACTIONS(1387), + [anon_sym_ascending] = ACTIONS(1387), + [anon_sym_descending] = ACTIONS(1387), + [anon_sym_group] = ACTIONS(1387), + [anon_sym_by] = ACTIONS(1387), + [anon_sym_select] = ACTIONS(1387), + [anon_sym_stackalloc] = ACTIONS(1431), + [anon_sym_sizeof] = ACTIONS(1433), + [anon_sym_typeof] = ACTIONS(1435), + [anon_sym___makeref] = ACTIONS(1437), + [anon_sym___reftype] = ACTIONS(1439), + [anon_sym___refvalue] = ACTIONS(1441), + [sym_null_literal] = ACTIONS(1443), + [anon_sym_SQUOTE] = ACTIONS(1445), + [sym_integer_literal] = ACTIONS(1443), + [sym_real_literal] = ACTIONS(1447), + [anon_sym_DQUOTE] = ACTIONS(1449), + [sym_verbatim_string_literal] = ACTIONS(1447), + [aux_sym_preproc_if_token1] = ACTIONS(1451), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + [sym_interpolation_regular_start] = ACTIONS(1453), + [sym_interpolation_verbatim_start] = ACTIONS(1455), + [sym_interpolation_raw_start] = ACTIONS(1457), + [sym_raw_string_start] = ACTIONS(1459), + }, + [1764] = { + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(5873), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2238), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(5622), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3468), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3102), + [sym_postfix_unary_expression] = STATE(3079), + [sym_prefix_unary_expression] = STATE(3079), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6134), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3102), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3079), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3102), + [sym_member_access_expression] = STATE(2472), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3079), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7309), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(3102), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3102), + [sym_typeof_expression] = STATE(3102), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2472), + [sym_literal] = STATE(3102), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), + [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(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1481), - [anon_sym_LPAREN] = ACTIONS(895), - [anon_sym_ref] = ACTIONS(897), - [anon_sym_LBRACE] = ACTIONS(1487), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1479), + [anon_sym_LPAREN] = ACTIONS(659), + [anon_sym_ref] = ACTIONS(663), + [anon_sym_LBRACE] = ACTIONS(1481), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1061), + [anon_sym_new] = ACTIONS(1059), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1067), - [anon_sym_BANG] = ACTIONS(1495), - [anon_sym_TILDE] = ACTIONS(1495), - [anon_sym_PLUS_PLUS] = ACTIONS(1495), - [anon_sym_DASH_DASH] = ACTIONS(1495), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(1485), + [anon_sym_TILDE] = ACTIONS(1485), + [anon_sym_PLUS_PLUS] = ACTIONS(1485), + [anon_sym_DASH_DASH] = ACTIONS(1485), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1493), - [anon_sym_DASH] = ACTIONS(1493), - [anon_sym_STAR] = ACTIONS(905), - [anon_sym_CARET] = ACTIONS(1495), - [anon_sym_AMP] = ACTIONS(1495), + [anon_sym_PLUS] = ACTIONS(1483), + [anon_sym_DASH] = ACTIONS(1483), + [anon_sym_STAR] = ACTIONS(683), + [anon_sym_CARET] = ACTIONS(1485), + [anon_sym_AMP] = ACTIONS(1485), [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(1067), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1079), + [anon_sym_throw] = ACTIONS(1077), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1081), - [anon_sym_DOT_DOT] = ACTIONS(911), + [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), @@ -335646,7 +339926,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(1089), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -335662,135 +339942,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), }, - [1739] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(5160), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2204), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(5650), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3687), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3080), - [sym_postfix_unary_expression] = STATE(3111), - [sym_prefix_unary_expression] = STATE(3111), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6164), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3080), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3111), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3080), - [sym_member_access_expression] = STATE(2484), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3111), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7701), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(3080), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3080), - [sym_typeof_expression] = STATE(3080), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2484), - [sym_literal] = STATE(3080), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), - [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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [1765] = { + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(5873), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2238), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(5623), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3468), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3102), + [sym_postfix_unary_expression] = STATE(3079), + [sym_prefix_unary_expression] = STATE(3079), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6134), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3102), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3079), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3102), + [sym_member_access_expression] = STATE(2472), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3079), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7309), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(3102), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3102), + [sym_typeof_expression] = STATE(3102), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2472), + [sym_literal] = STATE(3102), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), + [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(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1481), - [anon_sym_LPAREN] = ACTIONS(2093), - [anon_sym_ref] = ACTIONS(2095), - [anon_sym_LBRACE] = ACTIONS(1487), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1479), + [anon_sym_LPAREN] = ACTIONS(659), + [anon_sym_ref] = ACTIONS(663), + [anon_sym_LBRACE] = ACTIONS(1481), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1061), + [anon_sym_new] = ACTIONS(1059), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1067), - [anon_sym_BANG] = ACTIONS(2099), - [anon_sym_TILDE] = ACTIONS(2099), - [anon_sym_PLUS_PLUS] = ACTIONS(2099), - [anon_sym_DASH_DASH] = ACTIONS(2099), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(1485), + [anon_sym_TILDE] = ACTIONS(1485), + [anon_sym_PLUS_PLUS] = ACTIONS(1485), + [anon_sym_DASH_DASH] = ACTIONS(1485), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(2097), - [anon_sym_DASH] = ACTIONS(2097), - [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(2099), - [anon_sym_AMP] = ACTIONS(2099), + [anon_sym_PLUS] = ACTIONS(1483), + [anon_sym_DASH] = ACTIONS(1483), + [anon_sym_STAR] = ACTIONS(683), + [anon_sym_CARET] = ACTIONS(1485), + [anon_sym_AMP] = ACTIONS(1485), [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(1067), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(2101), + [anon_sym_throw] = ACTIONS(1077), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2103), - [anon_sym_DOT_DOT] = ACTIONS(2105), + [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), @@ -335815,7 +340095,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(2107), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -335831,135 +340111,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), }, - [1740] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(5160), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2204), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(5651), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3687), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3080), - [sym_postfix_unary_expression] = STATE(3111), - [sym_prefix_unary_expression] = STATE(3111), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6164), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3080), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3111), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3080), - [sym_member_access_expression] = STATE(2484), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3111), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7701), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(3080), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3080), - [sym_typeof_expression] = STATE(3080), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2484), - [sym_literal] = STATE(3080), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), - [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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [1766] = { + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(5873), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2238), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(5624), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3468), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3102), + [sym_postfix_unary_expression] = STATE(3079), + [sym_prefix_unary_expression] = STATE(3079), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6134), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3102), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3079), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3102), + [sym_member_access_expression] = STATE(2472), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3079), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7309), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(3102), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3102), + [sym_typeof_expression] = STATE(3102), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2472), + [sym_literal] = STATE(3102), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), + [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(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1481), - [anon_sym_LPAREN] = ACTIONS(2093), - [anon_sym_ref] = ACTIONS(2095), - [anon_sym_LBRACE] = ACTIONS(1487), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1479), + [anon_sym_LPAREN] = ACTIONS(659), + [anon_sym_ref] = ACTIONS(663), + [anon_sym_LBRACE] = ACTIONS(1481), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1061), + [anon_sym_new] = ACTIONS(1059), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1067), - [anon_sym_BANG] = ACTIONS(2099), - [anon_sym_TILDE] = ACTIONS(2099), - [anon_sym_PLUS_PLUS] = ACTIONS(2099), - [anon_sym_DASH_DASH] = ACTIONS(2099), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(1485), + [anon_sym_TILDE] = ACTIONS(1485), + [anon_sym_PLUS_PLUS] = ACTIONS(1485), + [anon_sym_DASH_DASH] = ACTIONS(1485), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(2097), - [anon_sym_DASH] = ACTIONS(2097), - [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(2099), - [anon_sym_AMP] = ACTIONS(2099), + [anon_sym_PLUS] = ACTIONS(1483), + [anon_sym_DASH] = ACTIONS(1483), + [anon_sym_STAR] = ACTIONS(683), + [anon_sym_CARET] = ACTIONS(1485), + [anon_sym_AMP] = ACTIONS(1485), [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(1067), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(2101), + [anon_sym_throw] = ACTIONS(1077), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2103), - [anon_sym_DOT_DOT] = ACTIONS(2105), + [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), @@ -335984,7 +340264,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(2107), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -336000,135 +340280,642 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_interpolation_raw_start] = ACTIONS(155), [sym_raw_string_start] = ACTIONS(157), }, - [1741] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(5160), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2204), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(5652), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3687), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3080), - [sym_postfix_unary_expression] = STATE(3111), - [sym_prefix_unary_expression] = STATE(3111), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6164), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3080), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3111), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3080), - [sym_member_access_expression] = STATE(2484), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3111), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7701), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(3080), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3080), - [sym_typeof_expression] = STATE(3080), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2484), - [sym_literal] = STATE(3080), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), - [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(3067), + [1767] = { + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(3182), + [sym__name] = STATE(5882), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2306), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2262), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(4879), + [sym_non_lvalue_expression] = STATE(4580), + [sym_lvalue_expression] = STATE(3534), + [sym__expression_statement_expression] = STATE(4573), + [sym_assignment_expression] = STATE(4581), + [sym_binary_expression] = STATE(4573), + [sym_postfix_unary_expression] = STATE(4581), + [sym_prefix_unary_expression] = STATE(4581), + [sym__pointer_indirection_expression] = STATE(3144), + [sym_query_expression] = STATE(4573), + [sym_from_clause] = STATE(6133), + [sym_conditional_expression] = STATE(4573), + [sym_conditional_access_expression] = STATE(4573), + [sym_as_expression] = STATE(4573), + [sym_is_expression] = STATE(4573), + [sym_is_pattern_expression] = STATE(4573), + [sym_cast_expression] = STATE(4573), + [sym_checked_expression] = STATE(4573), + [sym_invocation_expression] = STATE(4581), + [sym_switch_expression] = STATE(4573), + [sym_await_expression] = STATE(4581), + [sym_throw_expression] = STATE(4573), + [sym_element_access_expression] = STATE(3144), + [sym_interpolated_string_expression] = STATE(4573), + [sym_member_access_expression] = STATE(3144), + [sym_object_creation_expression] = STATE(4581), + [sym_parenthesized_expression] = STATE(4581), + [sym__parenthesized_lvalue_expression] = STATE(3144), + [sym_lambda_expression] = STATE(4573), + [sym__lambda_expression_init] = STATE(7592), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(4573), + [sym_anonymous_method_expression] = STATE(4573), + [sym_anonymous_object_creation_expression] = STATE(4573), + [sym_implicit_array_creation_expression] = STATE(4573), + [sym_implicit_object_creation_expression] = STATE(4573), + [sym_implicit_stackalloc_expression] = STATE(4573), + [sym_initializer_expression] = STATE(4573), + [sym_default_expression] = STATE(4573), + [sym_with_expression] = STATE(4573), + [sym_sizeof_expression] = STATE(4573), + [sym_typeof_expression] = STATE(4573), + [sym_makeref_expression] = STATE(4573), + [sym_ref_expression] = STATE(4573), + [sym_reftype_expression] = STATE(4573), + [sym_refvalue_expression] = STATE(4573), + [sym_stackalloc_expression] = STATE(4573), + [sym_range_expression] = STATE(4573), + [sym_tuple_expression] = STATE(3144), + [sym_literal] = STATE(4573), + [sym_character_literal] = STATE(4575), + [sym_string_literal] = STATE(4575), + [sym_raw_string_literal] = STATE(4575), + [sym_boolean_literal] = STATE(4575), + [sym_identifier] = STATE(2237), + [sym__reserved_identifier] = STATE(2229), + [sym_preproc_if_in_expression] = STATE(4573), + [sym_preproc_if_in_attribute_list] = STATE(5583), + [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(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3501), + [sym__identifier_token] = ACTIONS(1385), + [anon_sym_alias] = ACTIONS(1387), + [anon_sym_global] = ACTIONS(1387), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1389), + [anon_sym_LPAREN] = ACTIONS(1773), + [anon_sym_ref] = ACTIONS(1775), + [anon_sym_LBRACE] = ACTIONS(1395), + [anon_sym_delegate] = ACTIONS(1397), + [anon_sym_async] = ACTIONS(1045), + [anon_sym_file] = ACTIONS(1387), + [anon_sym_new] = ACTIONS(1465), + [anon_sym_where] = ACTIONS(1387), + [anon_sym_notnull] = ACTIONS(1387), + [anon_sym_unmanaged] = ACTIONS(1387), + [anon_sym_checked] = ACTIONS(1401), + [anon_sym_BANG] = ACTIONS(1779), + [anon_sym_TILDE] = ACTIONS(1779), + [anon_sym_PLUS_PLUS] = ACTIONS(1779), + [anon_sym_DASH_DASH] = ACTIONS(1779), + [anon_sym_true] = ACTIONS(1407), + [anon_sym_false] = ACTIONS(1407), + [anon_sym_PLUS] = ACTIONS(1777), + [anon_sym_DASH] = ACTIONS(1777), + [anon_sym_STAR] = ACTIONS(1471), + [anon_sym_CARET] = ACTIONS(1779), + [anon_sym_AMP] = ACTIONS(1779), + [anon_sym_this] = ACTIONS(1411), + [anon_sym_scoped] = ACTIONS(1413), + [anon_sym_base] = ACTIONS(1415), + [anon_sym_var] = ACTIONS(1417), + [sym_predefined_type] = ACTIONS(1419), + [anon_sym_unchecked] = ACTIONS(1401), + [anon_sym_yield] = ACTIONS(1387), + [anon_sym_default] = ACTIONS(1421), + [anon_sym_throw] = ACTIONS(1781), + [anon_sym_when] = ACTIONS(1387), + [anon_sym_await] = ACTIONS(1783), + [anon_sym_DOT_DOT] = ACTIONS(1785), + [anon_sym_from] = ACTIONS(1429), + [anon_sym_into] = ACTIONS(1387), + [anon_sym_join] = ACTIONS(1387), + [anon_sym_on] = ACTIONS(1387), + [anon_sym_equals] = ACTIONS(1387), + [anon_sym_let] = ACTIONS(1387), + [anon_sym_orderby] = ACTIONS(1387), + [anon_sym_ascending] = ACTIONS(1387), + [anon_sym_descending] = ACTIONS(1387), + [anon_sym_group] = ACTIONS(1387), + [anon_sym_by] = ACTIONS(1387), + [anon_sym_select] = ACTIONS(1387), + [anon_sym_stackalloc] = ACTIONS(1431), + [anon_sym_sizeof] = ACTIONS(1433), + [anon_sym_typeof] = ACTIONS(1435), + [anon_sym___makeref] = ACTIONS(1437), + [anon_sym___reftype] = ACTIONS(1439), + [anon_sym___refvalue] = ACTIONS(1441), + [sym_null_literal] = ACTIONS(1443), + [anon_sym_SQUOTE] = ACTIONS(1445), + [sym_integer_literal] = ACTIONS(1443), + [sym_real_literal] = ACTIONS(1447), + [anon_sym_DQUOTE] = ACTIONS(1449), + [sym_verbatim_string_literal] = ACTIONS(1447), + [aux_sym_preproc_if_token1] = ACTIONS(1451), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + [sym_interpolation_regular_start] = ACTIONS(1453), + [sym_interpolation_verbatim_start] = ACTIONS(1455), + [sym_interpolation_raw_start] = ACTIONS(1457), + [sym_raw_string_start] = ACTIONS(1459), + }, + [1768] = { + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(3182), + [sym__name] = STATE(5882), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2306), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2262), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(4881), + [sym_non_lvalue_expression] = STATE(4580), + [sym_lvalue_expression] = STATE(3534), + [sym__expression_statement_expression] = STATE(4573), + [sym_assignment_expression] = STATE(4581), + [sym_binary_expression] = STATE(4573), + [sym_postfix_unary_expression] = STATE(4581), + [sym_prefix_unary_expression] = STATE(4581), + [sym__pointer_indirection_expression] = STATE(3144), + [sym_query_expression] = STATE(4573), + [sym_from_clause] = STATE(6133), + [sym_conditional_expression] = STATE(4573), + [sym_conditional_access_expression] = STATE(4573), + [sym_as_expression] = STATE(4573), + [sym_is_expression] = STATE(4573), + [sym_is_pattern_expression] = STATE(4573), + [sym_cast_expression] = STATE(4573), + [sym_checked_expression] = STATE(4573), + [sym_invocation_expression] = STATE(4581), + [sym_switch_expression] = STATE(4573), + [sym_await_expression] = STATE(4581), + [sym_throw_expression] = STATE(4573), + [sym_element_access_expression] = STATE(3144), + [sym_interpolated_string_expression] = STATE(4573), + [sym_member_access_expression] = STATE(3144), + [sym_object_creation_expression] = STATE(4581), + [sym_parenthesized_expression] = STATE(4581), + [sym__parenthesized_lvalue_expression] = STATE(3144), + [sym_lambda_expression] = STATE(4573), + [sym__lambda_expression_init] = STATE(7592), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(4573), + [sym_anonymous_method_expression] = STATE(4573), + [sym_anonymous_object_creation_expression] = STATE(4573), + [sym_implicit_array_creation_expression] = STATE(4573), + [sym_implicit_object_creation_expression] = STATE(4573), + [sym_implicit_stackalloc_expression] = STATE(4573), + [sym_initializer_expression] = STATE(4573), + [sym_default_expression] = STATE(4573), + [sym_with_expression] = STATE(4573), + [sym_sizeof_expression] = STATE(4573), + [sym_typeof_expression] = STATE(4573), + [sym_makeref_expression] = STATE(4573), + [sym_ref_expression] = STATE(4573), + [sym_reftype_expression] = STATE(4573), + [sym_refvalue_expression] = STATE(4573), + [sym_stackalloc_expression] = STATE(4573), + [sym_range_expression] = STATE(4573), + [sym_tuple_expression] = STATE(3144), + [sym_literal] = STATE(4573), + [sym_character_literal] = STATE(4575), + [sym_string_literal] = STATE(4575), + [sym_raw_string_literal] = STATE(4575), + [sym_boolean_literal] = STATE(4575), + [sym_identifier] = STATE(2237), + [sym__reserved_identifier] = STATE(2229), + [sym_preproc_if_in_expression] = STATE(4573), + [sym_preproc_if_in_attribute_list] = STATE(5583), + [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(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3501), + [sym__identifier_token] = ACTIONS(1385), + [anon_sym_alias] = ACTIONS(1387), + [anon_sym_global] = ACTIONS(1387), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1389), + [anon_sym_LPAREN] = ACTIONS(1773), + [anon_sym_ref] = ACTIONS(1775), + [anon_sym_LBRACE] = ACTIONS(1395), + [anon_sym_delegate] = ACTIONS(1397), + [anon_sym_async] = ACTIONS(1045), + [anon_sym_file] = ACTIONS(1387), + [anon_sym_new] = ACTIONS(1465), + [anon_sym_where] = ACTIONS(1387), + [anon_sym_notnull] = ACTIONS(1387), + [anon_sym_unmanaged] = ACTIONS(1387), + [anon_sym_checked] = ACTIONS(1401), + [anon_sym_BANG] = ACTIONS(1779), + [anon_sym_TILDE] = ACTIONS(1779), + [anon_sym_PLUS_PLUS] = ACTIONS(1779), + [anon_sym_DASH_DASH] = ACTIONS(1779), + [anon_sym_true] = ACTIONS(1407), + [anon_sym_false] = ACTIONS(1407), + [anon_sym_PLUS] = ACTIONS(1777), + [anon_sym_DASH] = ACTIONS(1777), + [anon_sym_STAR] = ACTIONS(1471), + [anon_sym_CARET] = ACTIONS(1779), + [anon_sym_AMP] = ACTIONS(1779), + [anon_sym_this] = ACTIONS(1411), + [anon_sym_scoped] = ACTIONS(1413), + [anon_sym_base] = ACTIONS(1415), + [anon_sym_var] = ACTIONS(1417), + [sym_predefined_type] = ACTIONS(1419), + [anon_sym_unchecked] = ACTIONS(1401), + [anon_sym_yield] = ACTIONS(1387), + [anon_sym_default] = ACTIONS(1421), + [anon_sym_throw] = ACTIONS(1781), + [anon_sym_when] = ACTIONS(1387), + [anon_sym_await] = ACTIONS(1783), + [anon_sym_DOT_DOT] = ACTIONS(1785), + [anon_sym_from] = ACTIONS(1429), + [anon_sym_into] = ACTIONS(1387), + [anon_sym_join] = ACTIONS(1387), + [anon_sym_on] = ACTIONS(1387), + [anon_sym_equals] = ACTIONS(1387), + [anon_sym_let] = ACTIONS(1387), + [anon_sym_orderby] = ACTIONS(1387), + [anon_sym_ascending] = ACTIONS(1387), + [anon_sym_descending] = ACTIONS(1387), + [anon_sym_group] = ACTIONS(1387), + [anon_sym_by] = ACTIONS(1387), + [anon_sym_select] = ACTIONS(1387), + [anon_sym_stackalloc] = ACTIONS(1431), + [anon_sym_sizeof] = ACTIONS(1433), + [anon_sym_typeof] = ACTIONS(1435), + [anon_sym___makeref] = ACTIONS(1437), + [anon_sym___reftype] = ACTIONS(1439), + [anon_sym___refvalue] = ACTIONS(1441), + [sym_null_literal] = ACTIONS(1443), + [anon_sym_SQUOTE] = ACTIONS(1445), + [sym_integer_literal] = ACTIONS(1443), + [sym_real_literal] = ACTIONS(1447), + [anon_sym_DQUOTE] = ACTIONS(1449), + [sym_verbatim_string_literal] = ACTIONS(1447), + [aux_sym_preproc_if_token1] = ACTIONS(1451), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + [sym_interpolation_regular_start] = ACTIONS(1453), + [sym_interpolation_verbatim_start] = ACTIONS(1455), + [sym_interpolation_raw_start] = ACTIONS(1457), + [sym_raw_string_start] = ACTIONS(1459), + }, + [1769] = { + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(3182), + [sym__name] = STATE(5882), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2306), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2262), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(4908), + [sym_non_lvalue_expression] = STATE(4580), + [sym_lvalue_expression] = STATE(3534), + [sym__expression_statement_expression] = STATE(4573), + [sym_assignment_expression] = STATE(4581), + [sym_binary_expression] = STATE(4573), + [sym_postfix_unary_expression] = STATE(4581), + [sym_prefix_unary_expression] = STATE(4581), + [sym__pointer_indirection_expression] = STATE(3144), + [sym_query_expression] = STATE(4573), + [sym_from_clause] = STATE(6133), + [sym_conditional_expression] = STATE(4573), + [sym_conditional_access_expression] = STATE(4573), + [sym_as_expression] = STATE(4573), + [sym_is_expression] = STATE(4573), + [sym_is_pattern_expression] = STATE(4573), + [sym_cast_expression] = STATE(4573), + [sym_checked_expression] = STATE(4573), + [sym_invocation_expression] = STATE(4581), + [sym_switch_expression] = STATE(4573), + [sym_await_expression] = STATE(4581), + [sym_throw_expression] = STATE(4573), + [sym_element_access_expression] = STATE(3144), + [sym_interpolated_string_expression] = STATE(4573), + [sym_member_access_expression] = STATE(3144), + [sym_object_creation_expression] = STATE(4581), + [sym_parenthesized_expression] = STATE(4581), + [sym__parenthesized_lvalue_expression] = STATE(3144), + [sym_lambda_expression] = STATE(4573), + [sym__lambda_expression_init] = STATE(7592), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(4573), + [sym_anonymous_method_expression] = STATE(4573), + [sym_anonymous_object_creation_expression] = STATE(4573), + [sym_implicit_array_creation_expression] = STATE(4573), + [sym_implicit_object_creation_expression] = STATE(4573), + [sym_implicit_stackalloc_expression] = STATE(4573), + [sym_initializer_expression] = STATE(4573), + [sym_default_expression] = STATE(4573), + [sym_with_expression] = STATE(4573), + [sym_sizeof_expression] = STATE(4573), + [sym_typeof_expression] = STATE(4573), + [sym_makeref_expression] = STATE(4573), + [sym_ref_expression] = STATE(4573), + [sym_reftype_expression] = STATE(4573), + [sym_refvalue_expression] = STATE(4573), + [sym_stackalloc_expression] = STATE(4573), + [sym_range_expression] = STATE(4573), + [sym_tuple_expression] = STATE(3144), + [sym_literal] = STATE(4573), + [sym_character_literal] = STATE(4575), + [sym_string_literal] = STATE(4575), + [sym_raw_string_literal] = STATE(4575), + [sym_boolean_literal] = STATE(4575), + [sym_identifier] = STATE(2237), + [sym__reserved_identifier] = STATE(2229), + [sym_preproc_if_in_expression] = STATE(4573), + [sym_preproc_if_in_attribute_list] = STATE(5583), + [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(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3501), + [sym__identifier_token] = ACTIONS(1385), + [anon_sym_alias] = ACTIONS(1387), + [anon_sym_global] = ACTIONS(1387), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1389), + [anon_sym_LPAREN] = ACTIONS(1773), + [anon_sym_ref] = ACTIONS(1775), + [anon_sym_LBRACE] = ACTIONS(1395), + [anon_sym_delegate] = ACTIONS(1397), + [anon_sym_async] = ACTIONS(1045), + [anon_sym_file] = ACTIONS(1387), + [anon_sym_new] = ACTIONS(1465), + [anon_sym_where] = ACTIONS(1387), + [anon_sym_notnull] = ACTIONS(1387), + [anon_sym_unmanaged] = ACTIONS(1387), + [anon_sym_checked] = ACTIONS(1401), + [anon_sym_BANG] = ACTIONS(1779), + [anon_sym_TILDE] = ACTIONS(1779), + [anon_sym_PLUS_PLUS] = ACTIONS(1779), + [anon_sym_DASH_DASH] = ACTIONS(1779), + [anon_sym_true] = ACTIONS(1407), + [anon_sym_false] = ACTIONS(1407), + [anon_sym_PLUS] = ACTIONS(1777), + [anon_sym_DASH] = ACTIONS(1777), + [anon_sym_STAR] = ACTIONS(1471), + [anon_sym_CARET] = ACTIONS(1779), + [anon_sym_AMP] = ACTIONS(1779), + [anon_sym_this] = ACTIONS(1411), + [anon_sym_scoped] = ACTIONS(1413), + [anon_sym_base] = ACTIONS(1415), + [anon_sym_var] = ACTIONS(1417), + [sym_predefined_type] = ACTIONS(1419), + [anon_sym_unchecked] = ACTIONS(1401), + [anon_sym_yield] = ACTIONS(1387), + [anon_sym_default] = ACTIONS(1421), + [anon_sym_throw] = ACTIONS(1781), + [anon_sym_when] = ACTIONS(1387), + [anon_sym_await] = ACTIONS(1783), + [anon_sym_DOT_DOT] = ACTIONS(1785), + [anon_sym_from] = ACTIONS(1429), + [anon_sym_into] = ACTIONS(1387), + [anon_sym_join] = ACTIONS(1387), + [anon_sym_on] = ACTIONS(1387), + [anon_sym_equals] = ACTIONS(1387), + [anon_sym_let] = ACTIONS(1387), + [anon_sym_orderby] = ACTIONS(1387), + [anon_sym_ascending] = ACTIONS(1387), + [anon_sym_descending] = ACTIONS(1387), + [anon_sym_group] = ACTIONS(1387), + [anon_sym_by] = ACTIONS(1387), + [anon_sym_select] = ACTIONS(1387), + [anon_sym_stackalloc] = ACTIONS(1431), + [anon_sym_sizeof] = ACTIONS(1433), + [anon_sym_typeof] = ACTIONS(1435), + [anon_sym___makeref] = ACTIONS(1437), + [anon_sym___reftype] = ACTIONS(1439), + [anon_sym___refvalue] = ACTIONS(1441), + [sym_null_literal] = ACTIONS(1443), + [anon_sym_SQUOTE] = ACTIONS(1445), + [sym_integer_literal] = ACTIONS(1443), + [sym_real_literal] = ACTIONS(1447), + [anon_sym_DQUOTE] = ACTIONS(1449), + [sym_verbatim_string_literal] = ACTIONS(1447), + [aux_sym_preproc_if_token1] = ACTIONS(1451), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + [sym_interpolation_regular_start] = ACTIONS(1453), + [sym_interpolation_verbatim_start] = ACTIONS(1455), + [sym_interpolation_raw_start] = ACTIONS(1457), + [sym_raw_string_start] = ACTIONS(1459), + }, + [1770] = { + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2816), + [sym__name] = STATE(5873), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2196), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(4306), + [sym_non_lvalue_expression] = STATE(3495), + [sym_lvalue_expression] = STATE(3208), + [sym__expression_statement_expression] = STATE(3462), + [sym_assignment_expression] = STATE(3497), + [sym_binary_expression] = STATE(3462), + [sym_postfix_unary_expression] = STATE(3497), + [sym_prefix_unary_expression] = STATE(3497), + [sym__pointer_indirection_expression] = STATE(2815), + [sym_query_expression] = STATE(3462), + [sym_from_clause] = STATE(6140), + [sym_conditional_expression] = STATE(3462), + [sym_conditional_access_expression] = STATE(3462), + [sym_as_expression] = STATE(3462), + [sym_is_expression] = STATE(3462), + [sym_is_pattern_expression] = STATE(3462), + [sym_cast_expression] = STATE(3462), + [sym_checked_expression] = STATE(3462), + [sym_invocation_expression] = STATE(3497), + [sym_switch_expression] = STATE(3462), + [sym_await_expression] = STATE(3497), + [sym_throw_expression] = STATE(3462), + [sym_element_access_expression] = STATE(2815), + [sym_interpolated_string_expression] = STATE(3462), + [sym_member_access_expression] = STATE(2815), + [sym_object_creation_expression] = STATE(3497), + [sym_parenthesized_expression] = STATE(3497), + [sym__parenthesized_lvalue_expression] = STATE(2815), + [sym_lambda_expression] = STATE(3462), + [sym__lambda_expression_init] = STATE(7520), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3462), + [sym_anonymous_method_expression] = STATE(3462), + [sym_anonymous_object_creation_expression] = STATE(3462), + [sym_implicit_array_creation_expression] = STATE(3462), + [sym_implicit_object_creation_expression] = STATE(3462), + [sym_implicit_stackalloc_expression] = STATE(3462), + [sym_initializer_expression] = STATE(3462), + [sym_default_expression] = STATE(3462), + [sym_with_expression] = STATE(3462), + [sym_sizeof_expression] = STATE(3462), + [sym_typeof_expression] = STATE(3462), + [sym_makeref_expression] = STATE(3462), + [sym_ref_expression] = STATE(3462), + [sym_reftype_expression] = STATE(3462), + [sym_refvalue_expression] = STATE(3462), + [sym_stackalloc_expression] = STATE(3462), + [sym_range_expression] = STATE(3462), + [sym_tuple_expression] = STATE(2815), + [sym_literal] = STATE(3462), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3462), + [sym_preproc_if_in_attribute_list] = STATE(5583), + [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(3104), [aux_sym__lambda_expression_init_repeat1] = STATE(3367), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1481), - [anon_sym_LPAREN] = ACTIONS(2093), - [anon_sym_ref] = ACTIONS(2095), - [anon_sym_LBRACE] = ACTIONS(1487), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1305), + [anon_sym_LPAREN] = ACTIONS(1369), + [anon_sym_ref] = ACTIONS(1371), + [anon_sym_LBRACE] = ACTIONS(1311), + [anon_sym_delegate] = ACTIONS(1313), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1061), + [anon_sym_new] = ACTIONS(1315), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1067), - [anon_sym_BANG] = ACTIONS(2099), - [anon_sym_TILDE] = ACTIONS(2099), - [anon_sym_PLUS_PLUS] = ACTIONS(2099), - [anon_sym_DASH_DASH] = ACTIONS(2099), + [anon_sym_checked] = ACTIONS(1317), + [anon_sym_BANG] = ACTIONS(1375), + [anon_sym_TILDE] = ACTIONS(1375), + [anon_sym_PLUS_PLUS] = ACTIONS(1375), + [anon_sym_DASH_DASH] = ACTIONS(1375), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(2097), - [anon_sym_DASH] = ACTIONS(2097), - [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(2099), - [anon_sym_AMP] = ACTIONS(2099), - [anon_sym_this] = ACTIONS(83), + [anon_sym_PLUS] = ACTIONS(1373), + [anon_sym_DASH] = ACTIONS(1373), + [anon_sym_STAR] = ACTIONS(1377), + [anon_sym_CARET] = ACTIONS(1375), + [anon_sym_AMP] = ACTIONS(1375), + [anon_sym_this] = ACTIONS(1321), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), + [anon_sym_base] = ACTIONS(1323), [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1067), + [anon_sym_unchecked] = ACTIONS(1317), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(2101), + [anon_sym_throw] = ACTIONS(1379), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2103), - [anon_sym_DOT_DOT] = ACTIONS(2105), + [anon_sym_await] = ACTIONS(1381), + [anon_sym_DOT_DOT] = ACTIONS(1383), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -336141,19 +340928,19 @@ static const uint16_t ts_parse_table[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(1331), [anon_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(1333), + [anon_sym___reftype] = ACTIONS(1335), + [anon_sym___refvalue] = ACTIONS(1337), [sym_null_literal] = ACTIONS(139), [anon_sym_SQUOTE] = ACTIONS(141), [sym_integer_literal] = ACTIONS(139), [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(2107), + [aux_sym_preproc_if_token1] = ACTIONS(1339), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -336169,135 +340956,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), }, - [1742] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(5890), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2375), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(5655), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3656), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3080), - [sym_postfix_unary_expression] = STATE(3111), - [sym_prefix_unary_expression] = STATE(3111), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6157), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3080), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3111), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3080), - [sym_member_access_expression] = STATE(2484), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3111), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7362), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(3080), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3080), - [sym_typeof_expression] = STATE(3080), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2484), - [sym_literal] = STATE(3080), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), - [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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [1771] = { + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(5873), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2238), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(5365), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3468), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3102), + [sym_postfix_unary_expression] = STATE(3079), + [sym_prefix_unary_expression] = STATE(3079), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6134), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3102), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3079), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3102), + [sym_member_access_expression] = STATE(2472), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3079), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7309), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(3102), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3102), + [sym_typeof_expression] = STATE(3102), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2472), + [sym_literal] = STATE(3102), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), + [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(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1481), - [anon_sym_LPAREN] = ACTIONS(2177), - [anon_sym_ref] = ACTIONS(2179), - [anon_sym_LBRACE] = ACTIONS(1487), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1479), + [anon_sym_LPAREN] = ACTIONS(659), + [anon_sym_ref] = ACTIONS(663), + [anon_sym_LBRACE] = ACTIONS(1481), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(2181), + [anon_sym_new] = ACTIONS(1059), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1067), - [anon_sym_BANG] = ACTIONS(2185), - [anon_sym_TILDE] = ACTIONS(2185), - [anon_sym_PLUS_PLUS] = ACTIONS(2185), - [anon_sym_DASH_DASH] = ACTIONS(2185), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(1485), + [anon_sym_TILDE] = ACTIONS(1485), + [anon_sym_PLUS_PLUS] = ACTIONS(1485), + [anon_sym_DASH_DASH] = ACTIONS(1485), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(2183), - [anon_sym_DASH] = ACTIONS(2183), - [anon_sym_STAR] = ACTIONS(2187), - [anon_sym_CARET] = ACTIONS(2185), - [anon_sym_AMP] = ACTIONS(2185), + [anon_sym_PLUS] = ACTIONS(1483), + [anon_sym_DASH] = ACTIONS(1483), + [anon_sym_STAR] = ACTIONS(683), + [anon_sym_CARET] = ACTIONS(1485), + [anon_sym_AMP] = ACTIONS(1485), [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(1067), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(2189), + [anon_sym_throw] = ACTIONS(1077), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2191), - [anon_sym_DOT_DOT] = ACTIONS(2193), + [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), @@ -336322,7 +341109,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(1089), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -336338,473 +341125,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), }, - [1743] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2420), - [sym__name] = STATE(5887), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2197), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(5298), - [sym_non_lvalue_expression] = STATE(3066), - [sym_lvalue_expression] = STATE(3637), - [sym__expression_statement_expression] = STATE(3006), - [sym_assignment_expression] = STATE(3020), - [sym_binary_expression] = STATE(3006), - [sym_postfix_unary_expression] = STATE(3020), - [sym_prefix_unary_expression] = STATE(3020), - [sym__pointer_indirection_expression] = STATE(2423), - [sym_query_expression] = STATE(3006), - [sym_from_clause] = STATE(6148), - [sym_conditional_expression] = STATE(3006), - [sym_conditional_access_expression] = STATE(3006), - [sym_as_expression] = STATE(3006), - [sym_is_expression] = STATE(3006), - [sym_is_pattern_expression] = STATE(3006), - [sym_cast_expression] = STATE(3006), - [sym_checked_expression] = STATE(3006), - [sym_invocation_expression] = STATE(3020), - [sym_switch_expression] = STATE(3006), - [sym_await_expression] = STATE(3020), - [sym_throw_expression] = STATE(3006), - [sym_element_access_expression] = STATE(2423), - [sym_interpolated_string_expression] = STATE(3006), - [sym_member_access_expression] = STATE(2423), - [sym_object_creation_expression] = STATE(3020), - [sym_parenthesized_expression] = STATE(3020), - [sym__parenthesized_lvalue_expression] = STATE(2423), - [sym_lambda_expression] = STATE(3006), - [sym__lambda_expression_init] = STATE(7507), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3006), - [sym_anonymous_method_expression] = STATE(3006), - [sym_anonymous_object_creation_expression] = STATE(3006), - [sym_implicit_array_creation_expression] = STATE(3006), - [sym_implicit_object_creation_expression] = STATE(3006), - [sym_implicit_stackalloc_expression] = STATE(3006), - [sym_initializer_expression] = STATE(3006), - [sym_default_expression] = STATE(3006), - [sym_with_expression] = STATE(3006), - [sym_sizeof_expression] = STATE(3006), - [sym_typeof_expression] = STATE(3006), - [sym_makeref_expression] = STATE(3006), - [sym_ref_expression] = STATE(3006), - [sym_reftype_expression] = STATE(3006), - [sym_refvalue_expression] = STATE(3006), - [sym_stackalloc_expression] = STATE(3006), - [sym_range_expression] = STATE(3006), - [sym_tuple_expression] = STATE(2423), - [sym_literal] = STATE(3006), - [sym_character_literal] = STATE(3011), - [sym_string_literal] = STATE(3011), - [sym_raw_string_literal] = STATE(3011), - [sym_boolean_literal] = STATE(3011), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3006), - [sym_preproc_if_in_attribute_list] = STATE(5576), - [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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3440), - [sym__identifier_token] = ACTIONS(25), - [anon_sym_alias] = ACTIONS(29), - [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1241), - [anon_sym_LPAREN] = ACTIONS(2113), - [anon_sym_ref] = ACTIONS(2115), - [anon_sym_LBRACE] = ACTIONS(1247), - [anon_sym_delegate] = ACTIONS(1249), - [anon_sym_async] = ACTIONS(1047), - [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1251), - [anon_sym_where] = ACTIONS(29), - [anon_sym_notnull] = ACTIONS(29), - [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1253), - [anon_sym_BANG] = ACTIONS(2119), - [anon_sym_TILDE] = ACTIONS(2119), - [anon_sym_PLUS_PLUS] = ACTIONS(2119), - [anon_sym_DASH_DASH] = ACTIONS(2119), - [anon_sym_true] = ACTIONS(1259), - [anon_sym_false] = ACTIONS(1259), - [anon_sym_PLUS] = ACTIONS(2117), - [anon_sym_DASH] = ACTIONS(2117), - [anon_sym_STAR] = ACTIONS(1261), - [anon_sym_CARET] = ACTIONS(2119), - [anon_sym_AMP] = ACTIONS(2119), - [anon_sym_this] = ACTIONS(1263), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1265), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1267), - [anon_sym_unchecked] = ACTIONS(1253), - [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1269), - [anon_sym_throw] = ACTIONS(2121), - [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2123), - [anon_sym_DOT_DOT] = ACTIONS(2125), - [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(1277), - [anon_sym_sizeof] = ACTIONS(1279), - [anon_sym_typeof] = ACTIONS(1281), - [anon_sym___makeref] = ACTIONS(1283), - [anon_sym___reftype] = ACTIONS(1285), - [anon_sym___refvalue] = ACTIONS(1287), - [sym_null_literal] = ACTIONS(1289), - [anon_sym_SQUOTE] = ACTIONS(1291), - [sym_integer_literal] = ACTIONS(1289), - [sym_real_literal] = ACTIONS(1293), - [anon_sym_DQUOTE] = ACTIONS(1295), - [sym_verbatim_string_literal] = ACTIONS(1293), - [aux_sym_preproc_if_token1] = ACTIONS(2127), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1299), - [sym_interpolation_verbatim_start] = ACTIONS(1301), - [sym_interpolation_raw_start] = ACTIONS(1303), - [sym_raw_string_start] = ACTIONS(1305), - }, - [1744] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2420), - [sym__name] = STATE(5875), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2369), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(4156), - [sym_non_lvalue_expression] = STATE(3066), - [sym_lvalue_expression] = STATE(3125), - [sym__expression_statement_expression] = STATE(3006), - [sym_assignment_expression] = STATE(3020), - [sym_binary_expression] = STATE(3006), - [sym_postfix_unary_expression] = STATE(3020), - [sym_prefix_unary_expression] = STATE(3020), - [sym__pointer_indirection_expression] = STATE(2423), - [sym_query_expression] = STATE(3006), - [sym_from_clause] = STATE(6145), - [sym_conditional_expression] = STATE(3006), - [sym_conditional_access_expression] = STATE(3006), - [sym_as_expression] = STATE(3006), - [sym_is_expression] = STATE(3006), - [sym_is_pattern_expression] = STATE(3006), - [sym_cast_expression] = STATE(3006), - [sym_checked_expression] = STATE(3006), - [sym_invocation_expression] = STATE(3020), - [sym_switch_expression] = STATE(3006), - [sym_await_expression] = STATE(3020), - [sym_throw_expression] = STATE(3006), - [sym_element_access_expression] = STATE(2423), - [sym_interpolated_string_expression] = STATE(3006), - [sym_member_access_expression] = STATE(2423), - [sym_object_creation_expression] = STATE(3020), - [sym_parenthesized_expression] = STATE(3020), - [sym__parenthesized_lvalue_expression] = STATE(2423), - [sym_lambda_expression] = STATE(3006), - [sym__lambda_expression_init] = STATE(7538), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3006), - [sym_anonymous_method_expression] = STATE(3006), - [sym_anonymous_object_creation_expression] = STATE(3006), - [sym_implicit_array_creation_expression] = STATE(3006), - [sym_implicit_object_creation_expression] = STATE(3006), - [sym_implicit_stackalloc_expression] = STATE(3006), - [sym_initializer_expression] = STATE(3006), - [sym_default_expression] = STATE(3006), - [sym_with_expression] = STATE(3006), - [sym_sizeof_expression] = STATE(3006), - [sym_typeof_expression] = STATE(3006), - [sym_makeref_expression] = STATE(3006), - [sym_ref_expression] = STATE(3006), - [sym_reftype_expression] = STATE(3006), - [sym_refvalue_expression] = STATE(3006), - [sym_stackalloc_expression] = STATE(3006), - [sym_range_expression] = STATE(3006), - [sym_tuple_expression] = STATE(2423), - [sym_literal] = STATE(3006), - [sym_character_literal] = STATE(3011), - [sym_string_literal] = STATE(3011), - [sym_raw_string_literal] = STATE(3011), - [sym_boolean_literal] = STATE(3011), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3006), - [sym_preproc_if_in_attribute_list] = STATE(5576), - [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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3440), - [sym__identifier_token] = ACTIONS(25), - [anon_sym_alias] = ACTIONS(29), - [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1241), - [anon_sym_LPAREN] = ACTIONS(2195), - [anon_sym_ref] = ACTIONS(2197), - [anon_sym_LBRACE] = ACTIONS(1247), - [anon_sym_delegate] = ACTIONS(1249), - [anon_sym_async] = ACTIONS(1047), - [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1845), - [anon_sym_where] = ACTIONS(29), - [anon_sym_notnull] = ACTIONS(29), - [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1253), - [anon_sym_BANG] = ACTIONS(2201), - [anon_sym_TILDE] = ACTIONS(2201), - [anon_sym_PLUS_PLUS] = ACTIONS(2201), - [anon_sym_DASH_DASH] = ACTIONS(2201), - [anon_sym_true] = ACTIONS(1259), - [anon_sym_false] = ACTIONS(1259), - [anon_sym_PLUS] = ACTIONS(2199), - [anon_sym_DASH] = ACTIONS(2199), - [anon_sym_STAR] = ACTIONS(1851), - [anon_sym_CARET] = ACTIONS(2201), - [anon_sym_AMP] = ACTIONS(2201), - [anon_sym_this] = ACTIONS(1263), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1265), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1267), - [anon_sym_unchecked] = ACTIONS(1253), - [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1269), - [anon_sym_throw] = ACTIONS(2203), - [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2205), - [anon_sym_DOT_DOT] = ACTIONS(2207), - [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(1277), - [anon_sym_sizeof] = ACTIONS(1279), - [anon_sym_typeof] = ACTIONS(1281), - [anon_sym___makeref] = ACTIONS(1283), - [anon_sym___reftype] = ACTIONS(1285), - [anon_sym___refvalue] = ACTIONS(1287), - [sym_null_literal] = ACTIONS(1289), - [anon_sym_SQUOTE] = ACTIONS(1291), - [sym_integer_literal] = ACTIONS(1289), - [sym_real_literal] = ACTIONS(1293), - [anon_sym_DQUOTE] = ACTIONS(1295), - [sym_verbatim_string_literal] = ACTIONS(1293), - [aux_sym_preproc_if_token1] = ACTIONS(1297), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1299), - [sym_interpolation_verbatim_start] = ACTIONS(1301), - [sym_interpolation_raw_start] = ACTIONS(1303), - [sym_raw_string_start] = ACTIONS(1305), - }, - [1745] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(5160), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2204), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(3519), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3687), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3080), - [sym_postfix_unary_expression] = STATE(3111), - [sym_prefix_unary_expression] = STATE(3111), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6164), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3080), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3111), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3080), - [sym_member_access_expression] = STATE(2484), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3111), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7701), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(3080), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3080), - [sym_typeof_expression] = STATE(3080), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2484), - [sym_literal] = STATE(3080), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), - [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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [1772] = { + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(5873), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2238), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(5366), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3468), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3102), + [sym_postfix_unary_expression] = STATE(3079), + [sym_prefix_unary_expression] = STATE(3079), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6134), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3102), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3079), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3102), + [sym_member_access_expression] = STATE(2472), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3079), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7309), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(3102), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3102), + [sym_typeof_expression] = STATE(3102), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2472), + [sym_literal] = STATE(3102), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), + [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(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1481), - [anon_sym_LPAREN] = ACTIONS(2093), - [anon_sym_ref] = ACTIONS(2095), - [anon_sym_LBRACE] = ACTIONS(1487), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1479), + [anon_sym_LPAREN] = ACTIONS(659), + [anon_sym_ref] = ACTIONS(663), + [anon_sym_LBRACE] = ACTIONS(1481), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1061), + [anon_sym_new] = ACTIONS(1059), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1067), - [anon_sym_BANG] = ACTIONS(2099), - [anon_sym_TILDE] = ACTIONS(2099), - [anon_sym_PLUS_PLUS] = ACTIONS(2099), - [anon_sym_DASH_DASH] = ACTIONS(2099), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(1485), + [anon_sym_TILDE] = ACTIONS(1485), + [anon_sym_PLUS_PLUS] = ACTIONS(1485), + [anon_sym_DASH_DASH] = ACTIONS(1485), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(2097), - [anon_sym_DASH] = ACTIONS(2097), - [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(2099), - [anon_sym_AMP] = ACTIONS(2099), + [anon_sym_PLUS] = ACTIONS(1483), + [anon_sym_DASH] = ACTIONS(1483), + [anon_sym_STAR] = ACTIONS(683), + [anon_sym_CARET] = ACTIONS(1485), + [anon_sym_AMP] = ACTIONS(1485), [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(1067), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(2101), + [anon_sym_throw] = ACTIONS(1077), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2103), - [anon_sym_DOT_DOT] = ACTIONS(2105), + [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), @@ -336829,7 +341278,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(2107), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -336845,135 +341294,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), }, - [1746] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(5910), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2247), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(4540), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3379), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3080), - [sym_postfix_unary_expression] = STATE(3111), - [sym_prefix_unary_expression] = STATE(3111), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6154), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3080), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3111), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3080), - [sym_member_access_expression] = STATE(2484), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3111), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7575), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(3080), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3080), - [sym_typeof_expression] = STATE(3080), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2484), - [sym_literal] = STATE(3080), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), - [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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [1773] = { + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(5873), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2238), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(5367), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3468), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3102), + [sym_postfix_unary_expression] = STATE(3079), + [sym_prefix_unary_expression] = STATE(3079), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6134), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3102), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3079), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3102), + [sym_member_access_expression] = STATE(2472), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3079), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7309), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(3102), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3102), + [sym_typeof_expression] = STATE(3102), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2472), + [sym_literal] = STATE(3102), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), + [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(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1481), - [anon_sym_LPAREN] = ACTIONS(895), - [anon_sym_ref] = ACTIONS(897), - [anon_sym_LBRACE] = ACTIONS(1487), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1479), + [anon_sym_LPAREN] = ACTIONS(659), + [anon_sym_ref] = ACTIONS(663), + [anon_sym_LBRACE] = ACTIONS(1481), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1061), + [anon_sym_new] = ACTIONS(1059), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1067), - [anon_sym_BANG] = ACTIONS(1495), - [anon_sym_TILDE] = ACTIONS(1495), - [anon_sym_PLUS_PLUS] = ACTIONS(1495), - [anon_sym_DASH_DASH] = ACTIONS(1495), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(1485), + [anon_sym_TILDE] = ACTIONS(1485), + [anon_sym_PLUS_PLUS] = ACTIONS(1485), + [anon_sym_DASH_DASH] = ACTIONS(1485), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1493), - [anon_sym_DASH] = ACTIONS(1493), - [anon_sym_STAR] = ACTIONS(905), - [anon_sym_CARET] = ACTIONS(1495), - [anon_sym_AMP] = ACTIONS(1495), + [anon_sym_PLUS] = ACTIONS(1483), + [anon_sym_DASH] = ACTIONS(1483), + [anon_sym_STAR] = ACTIONS(683), + [anon_sym_CARET] = ACTIONS(1485), + [anon_sym_AMP] = ACTIONS(1485), [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(1067), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1079), + [anon_sym_throw] = ACTIONS(1077), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1081), - [anon_sym_DOT_DOT] = ACTIONS(911), + [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), @@ -336998,7 +341447,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(1089), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -337014,135 +341463,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), }, - [1747] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(5910), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2247), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(5328), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3379), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3080), - [sym_postfix_unary_expression] = STATE(3111), - [sym_prefix_unary_expression] = STATE(3111), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6154), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3080), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3111), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3080), - [sym_member_access_expression] = STATE(2484), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3111), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7575), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(3080), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3080), - [sym_typeof_expression] = STATE(3080), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2484), - [sym_literal] = STATE(3080), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), - [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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [1774] = { + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(3182), + [sym__name] = STATE(5882), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2306), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2262), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(4294), + [sym_non_lvalue_expression] = STATE(4580), + [sym_lvalue_expression] = STATE(3534), + [sym__expression_statement_expression] = STATE(4573), + [sym_assignment_expression] = STATE(4581), + [sym_binary_expression] = STATE(4573), + [sym_postfix_unary_expression] = STATE(4581), + [sym_prefix_unary_expression] = STATE(4581), + [sym__pointer_indirection_expression] = STATE(3144), + [sym_query_expression] = STATE(4573), + [sym_from_clause] = STATE(6133), + [sym_conditional_expression] = STATE(4573), + [sym_conditional_access_expression] = STATE(4573), + [sym_as_expression] = STATE(4573), + [sym_is_expression] = STATE(4573), + [sym_is_pattern_expression] = STATE(4573), + [sym_cast_expression] = STATE(4573), + [sym_checked_expression] = STATE(4573), + [sym_invocation_expression] = STATE(4581), + [sym_switch_expression] = STATE(4573), + [sym_await_expression] = STATE(4581), + [sym_throw_expression] = STATE(4573), + [sym_element_access_expression] = STATE(3144), + [sym_interpolated_string_expression] = STATE(4573), + [sym_member_access_expression] = STATE(3144), + [sym_object_creation_expression] = STATE(4581), + [sym_parenthesized_expression] = STATE(4581), + [sym__parenthesized_lvalue_expression] = STATE(3144), + [sym_lambda_expression] = STATE(4573), + [sym__lambda_expression_init] = STATE(7592), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(4573), + [sym_anonymous_method_expression] = STATE(4573), + [sym_anonymous_object_creation_expression] = STATE(4573), + [sym_implicit_array_creation_expression] = STATE(4573), + [sym_implicit_object_creation_expression] = STATE(4573), + [sym_implicit_stackalloc_expression] = STATE(4573), + [sym_initializer_expression] = STATE(4573), + [sym_default_expression] = STATE(4573), + [sym_with_expression] = STATE(4573), + [sym_sizeof_expression] = STATE(4573), + [sym_typeof_expression] = STATE(4573), + [sym_makeref_expression] = STATE(4573), + [sym_ref_expression] = STATE(4573), + [sym_reftype_expression] = STATE(4573), + [sym_refvalue_expression] = STATE(4573), + [sym_stackalloc_expression] = STATE(4573), + [sym_range_expression] = STATE(4573), + [sym_tuple_expression] = STATE(3144), + [sym_literal] = STATE(4573), + [sym_character_literal] = STATE(4575), + [sym_string_literal] = STATE(4575), + [sym_raw_string_literal] = STATE(4575), + [sym_boolean_literal] = STATE(4575), + [sym_identifier] = STATE(2237), + [sym__reserved_identifier] = STATE(2229), + [sym_preproc_if_in_expression] = STATE(4573), + [sym_preproc_if_in_attribute_list] = STATE(5583), + [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(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3501), + [sym__identifier_token] = ACTIONS(1385), + [anon_sym_alias] = ACTIONS(1387), + [anon_sym_global] = ACTIONS(1387), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1389), + [anon_sym_LPAREN] = ACTIONS(1773), + [anon_sym_ref] = ACTIONS(1775), + [anon_sym_LBRACE] = ACTIONS(1395), + [anon_sym_delegate] = ACTIONS(1397), + [anon_sym_async] = ACTIONS(1045), + [anon_sym_file] = ACTIONS(1387), + [anon_sym_new] = ACTIONS(1465), + [anon_sym_where] = ACTIONS(1387), + [anon_sym_notnull] = ACTIONS(1387), + [anon_sym_unmanaged] = ACTIONS(1387), + [anon_sym_checked] = ACTIONS(1401), + [anon_sym_BANG] = ACTIONS(1779), + [anon_sym_TILDE] = ACTIONS(1779), + [anon_sym_PLUS_PLUS] = ACTIONS(1779), + [anon_sym_DASH_DASH] = ACTIONS(1779), + [anon_sym_true] = ACTIONS(1407), + [anon_sym_false] = ACTIONS(1407), + [anon_sym_PLUS] = ACTIONS(1777), + [anon_sym_DASH] = ACTIONS(1777), + [anon_sym_STAR] = ACTIONS(1471), + [anon_sym_CARET] = ACTIONS(1779), + [anon_sym_AMP] = ACTIONS(1779), + [anon_sym_this] = ACTIONS(1411), + [anon_sym_scoped] = ACTIONS(1413), + [anon_sym_base] = ACTIONS(1415), + [anon_sym_var] = ACTIONS(1417), + [sym_predefined_type] = ACTIONS(1419), + [anon_sym_unchecked] = ACTIONS(1401), + [anon_sym_yield] = ACTIONS(1387), + [anon_sym_default] = ACTIONS(1421), + [anon_sym_throw] = ACTIONS(1781), + [anon_sym_when] = ACTIONS(1387), + [anon_sym_await] = ACTIONS(1783), + [anon_sym_DOT_DOT] = ACTIONS(1785), + [anon_sym_from] = ACTIONS(1429), + [anon_sym_into] = ACTIONS(1387), + [anon_sym_join] = ACTIONS(1387), + [anon_sym_on] = ACTIONS(1387), + [anon_sym_equals] = ACTIONS(1387), + [anon_sym_let] = ACTIONS(1387), + [anon_sym_orderby] = ACTIONS(1387), + [anon_sym_ascending] = ACTIONS(1387), + [anon_sym_descending] = ACTIONS(1387), + [anon_sym_group] = ACTIONS(1387), + [anon_sym_by] = ACTIONS(1387), + [anon_sym_select] = ACTIONS(1387), + [anon_sym_stackalloc] = ACTIONS(1431), + [anon_sym_sizeof] = ACTIONS(1433), + [anon_sym_typeof] = ACTIONS(1435), + [anon_sym___makeref] = ACTIONS(1437), + [anon_sym___reftype] = ACTIONS(1439), + [anon_sym___refvalue] = ACTIONS(1441), + [sym_null_literal] = ACTIONS(1443), + [anon_sym_SQUOTE] = ACTIONS(1445), + [sym_integer_literal] = ACTIONS(1443), + [sym_real_literal] = ACTIONS(1447), + [anon_sym_DQUOTE] = ACTIONS(1449), + [sym_verbatim_string_literal] = ACTIONS(1447), + [aux_sym_preproc_if_token1] = ACTIONS(1451), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + [sym_interpolation_regular_start] = ACTIONS(1453), + [sym_interpolation_verbatim_start] = ACTIONS(1455), + [sym_interpolation_raw_start] = ACTIONS(1457), + [sym_raw_string_start] = ACTIONS(1459), + }, + [1775] = { + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2416), + [sym__name] = STATE(5885), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2404), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(3936), + [sym_non_lvalue_expression] = STATE(3040), + [sym_lvalue_expression] = STATE(3100), + [sym__expression_statement_expression] = STATE(3035), + [sym_assignment_expression] = STATE(3043), + [sym_binary_expression] = STATE(3035), + [sym_postfix_unary_expression] = STATE(3043), + [sym_prefix_unary_expression] = STATE(3043), + [sym__pointer_indirection_expression] = STATE(2415), + [sym_query_expression] = STATE(3035), + [sym_from_clause] = STATE(6135), + [sym_conditional_expression] = STATE(3035), + [sym_conditional_access_expression] = STATE(3035), + [sym_as_expression] = STATE(3035), + [sym_is_expression] = STATE(3035), + [sym_is_pattern_expression] = STATE(3035), + [sym_cast_expression] = STATE(3035), + [sym_checked_expression] = STATE(3035), + [sym_invocation_expression] = STATE(3043), + [sym_switch_expression] = STATE(3035), + [sym_await_expression] = STATE(3043), + [sym_throw_expression] = STATE(3035), + [sym_element_access_expression] = STATE(2415), + [sym_interpolated_string_expression] = STATE(3035), + [sym_member_access_expression] = STATE(2415), + [sym_object_creation_expression] = STATE(3043), + [sym_parenthesized_expression] = STATE(3043), + [sym__parenthesized_lvalue_expression] = STATE(2415), + [sym_lambda_expression] = STATE(3035), + [sym__lambda_expression_init] = STATE(7470), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3035), + [sym_anonymous_method_expression] = STATE(3035), + [sym_anonymous_object_creation_expression] = STATE(3035), + [sym_implicit_array_creation_expression] = STATE(3035), + [sym_implicit_object_creation_expression] = STATE(3035), + [sym_implicit_stackalloc_expression] = STATE(3035), + [sym_initializer_expression] = STATE(3035), + [sym_default_expression] = STATE(3035), + [sym_with_expression] = STATE(3035), + [sym_sizeof_expression] = STATE(3035), + [sym_typeof_expression] = STATE(3035), + [sym_makeref_expression] = STATE(3035), + [sym_ref_expression] = STATE(3035), + [sym_reftype_expression] = STATE(3035), + [sym_refvalue_expression] = STATE(3035), + [sym_stackalloc_expression] = STATE(3035), + [sym_range_expression] = STATE(3035), + [sym_tuple_expression] = STATE(2415), + [sym_literal] = STATE(3035), + [sym_character_literal] = STATE(3037), + [sym_string_literal] = STATE(3037), + [sym_raw_string_literal] = STATE(3037), + [sym_boolean_literal] = STATE(3037), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3035), + [sym_preproc_if_in_attribute_list] = STATE(5583), + [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(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3455), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1481), - [anon_sym_LPAREN] = ACTIONS(895), - [anon_sym_ref] = ACTIONS(897), - [anon_sym_LBRACE] = ACTIONS(1487), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1239), + [anon_sym_LPAREN] = ACTIONS(1931), + [anon_sym_ref] = ACTIONS(1933), + [anon_sym_LBRACE] = ACTIONS(1245), + [anon_sym_delegate] = ACTIONS(1247), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1061), + [anon_sym_new] = ACTIONS(1935), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1067), - [anon_sym_BANG] = ACTIONS(1495), - [anon_sym_TILDE] = ACTIONS(1495), - [anon_sym_PLUS_PLUS] = ACTIONS(1495), - [anon_sym_DASH_DASH] = ACTIONS(1495), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1493), - [anon_sym_DASH] = ACTIONS(1493), - [anon_sym_STAR] = ACTIONS(905), - [anon_sym_CARET] = ACTIONS(1495), - [anon_sym_AMP] = ACTIONS(1495), - [anon_sym_this] = ACTIONS(83), + [anon_sym_checked] = ACTIONS(1251), + [anon_sym_BANG] = ACTIONS(1939), + [anon_sym_TILDE] = ACTIONS(1939), + [anon_sym_PLUS_PLUS] = ACTIONS(1939), + [anon_sym_DASH_DASH] = ACTIONS(1939), + [anon_sym_true] = ACTIONS(1257), + [anon_sym_false] = ACTIONS(1257), + [anon_sym_PLUS] = ACTIONS(1937), + [anon_sym_DASH] = ACTIONS(1937), + [anon_sym_STAR] = ACTIONS(1941), + [anon_sym_CARET] = ACTIONS(1939), + [anon_sym_AMP] = ACTIONS(1939), + [anon_sym_this] = ACTIONS(1261), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), + [anon_sym_base] = ACTIONS(1263), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1067), + [sym_predefined_type] = ACTIONS(1265), + [anon_sym_unchecked] = ACTIONS(1251), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1079), + [anon_sym_default] = ACTIONS(1267), + [anon_sym_throw] = ACTIONS(1943), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1081), - [anon_sym_DOT_DOT] = ACTIONS(911), + [anon_sym_await] = ACTIONS(1945), + [anon_sym_DOT_DOT] = ACTIONS(1947), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -337155,19 +341773,19 @@ static const uint16_t ts_parse_table[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(1089), + [anon_sym_stackalloc] = ACTIONS(1275), + [anon_sym_sizeof] = ACTIONS(1277), + [anon_sym_typeof] = ACTIONS(1279), + [anon_sym___makeref] = ACTIONS(1281), + [anon_sym___reftype] = ACTIONS(1283), + [anon_sym___refvalue] = ACTIONS(1285), + [sym_null_literal] = ACTIONS(1287), + [anon_sym_SQUOTE] = ACTIONS(1289), + [sym_integer_literal] = ACTIONS(1287), + [sym_real_literal] = ACTIONS(1291), + [anon_sym_DQUOTE] = ACTIONS(1293), + [sym_verbatim_string_literal] = ACTIONS(1291), + [aux_sym_preproc_if_token1] = ACTIONS(1295), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -337178,140 +341796,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(1297), + [sym_interpolation_verbatim_start] = ACTIONS(1299), + [sym_interpolation_raw_start] = ACTIONS(1301), + [sym_raw_string_start] = ACTIONS(1303), }, - [1748] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(5160), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2204), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(5330), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3687), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3080), - [sym_postfix_unary_expression] = STATE(3111), - [sym_prefix_unary_expression] = STATE(3111), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6164), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3080), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3111), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3080), - [sym_member_access_expression] = STATE(2484), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3111), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7701), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(3080), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3080), - [sym_typeof_expression] = STATE(3080), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2484), - [sym_literal] = STATE(3080), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), - [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(3067), + [1776] = { + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2816), + [sym__name] = STATE(5873), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2196), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(4260), + [sym_non_lvalue_expression] = STATE(3495), + [sym_lvalue_expression] = STATE(3208), + [sym__expression_statement_expression] = STATE(3462), + [sym_assignment_expression] = STATE(3497), + [sym_binary_expression] = STATE(3462), + [sym_postfix_unary_expression] = STATE(3497), + [sym_prefix_unary_expression] = STATE(3497), + [sym__pointer_indirection_expression] = STATE(2815), + [sym_query_expression] = STATE(3462), + [sym_from_clause] = STATE(6140), + [sym_conditional_expression] = STATE(3462), + [sym_conditional_access_expression] = STATE(3462), + [sym_as_expression] = STATE(3462), + [sym_is_expression] = STATE(3462), + [sym_is_pattern_expression] = STATE(3462), + [sym_cast_expression] = STATE(3462), + [sym_checked_expression] = STATE(3462), + [sym_invocation_expression] = STATE(3497), + [sym_switch_expression] = STATE(3462), + [sym_await_expression] = STATE(3497), + [sym_throw_expression] = STATE(3462), + [sym_element_access_expression] = STATE(2815), + [sym_interpolated_string_expression] = STATE(3462), + [sym_member_access_expression] = STATE(2815), + [sym_object_creation_expression] = STATE(3497), + [sym_parenthesized_expression] = STATE(3497), + [sym__parenthesized_lvalue_expression] = STATE(2815), + [sym_lambda_expression] = STATE(3462), + [sym__lambda_expression_init] = STATE(7520), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3462), + [sym_anonymous_method_expression] = STATE(3462), + [sym_anonymous_object_creation_expression] = STATE(3462), + [sym_implicit_array_creation_expression] = STATE(3462), + [sym_implicit_object_creation_expression] = STATE(3462), + [sym_implicit_stackalloc_expression] = STATE(3462), + [sym_initializer_expression] = STATE(3462), + [sym_default_expression] = STATE(3462), + [sym_with_expression] = STATE(3462), + [sym_sizeof_expression] = STATE(3462), + [sym_typeof_expression] = STATE(3462), + [sym_makeref_expression] = STATE(3462), + [sym_ref_expression] = STATE(3462), + [sym_reftype_expression] = STATE(3462), + [sym_refvalue_expression] = STATE(3462), + [sym_stackalloc_expression] = STATE(3462), + [sym_range_expression] = STATE(3462), + [sym_tuple_expression] = STATE(2815), + [sym_literal] = STATE(3462), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3462), + [sym_preproc_if_in_attribute_list] = STATE(5583), + [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(3104), [aux_sym__lambda_expression_init_repeat1] = STATE(3367), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1481), - [anon_sym_LPAREN] = ACTIONS(2093), - [anon_sym_ref] = ACTIONS(2095), - [anon_sym_LBRACE] = ACTIONS(1487), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1305), + [anon_sym_LPAREN] = ACTIONS(1369), + [anon_sym_ref] = ACTIONS(1371), + [anon_sym_LBRACE] = ACTIONS(1311), + [anon_sym_delegate] = ACTIONS(1313), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1061), + [anon_sym_new] = ACTIONS(1315), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1067), - [anon_sym_BANG] = ACTIONS(2099), - [anon_sym_TILDE] = ACTIONS(2099), - [anon_sym_PLUS_PLUS] = ACTIONS(2099), - [anon_sym_DASH_DASH] = ACTIONS(2099), + [anon_sym_checked] = ACTIONS(1317), + [anon_sym_BANG] = ACTIONS(1375), + [anon_sym_TILDE] = ACTIONS(1375), + [anon_sym_PLUS_PLUS] = ACTIONS(1375), + [anon_sym_DASH_DASH] = ACTIONS(1375), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(2097), - [anon_sym_DASH] = ACTIONS(2097), - [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(2099), - [anon_sym_AMP] = ACTIONS(2099), - [anon_sym_this] = ACTIONS(83), + [anon_sym_PLUS] = ACTIONS(1373), + [anon_sym_DASH] = ACTIONS(1373), + [anon_sym_STAR] = ACTIONS(1377), + [anon_sym_CARET] = ACTIONS(1375), + [anon_sym_AMP] = ACTIONS(1375), + [anon_sym_this] = ACTIONS(1321), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), + [anon_sym_base] = ACTIONS(1323), [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1067), + [anon_sym_unchecked] = ACTIONS(1317), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(2101), + [anon_sym_throw] = ACTIONS(1379), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2103), - [anon_sym_DOT_DOT] = ACTIONS(2105), + [anon_sym_await] = ACTIONS(1381), + [anon_sym_DOT_DOT] = ACTIONS(1383), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -337324,19 +341942,19 @@ static const uint16_t ts_parse_table[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(1331), [anon_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(1333), + [anon_sym___reftype] = ACTIONS(1335), + [anon_sym___refvalue] = ACTIONS(1337), [sym_null_literal] = ACTIONS(139), [anon_sym_SQUOTE] = ACTIONS(141), [sym_integer_literal] = ACTIONS(139), [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(2107), + [aux_sym_preproc_if_token1] = ACTIONS(1339), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -337352,135 +341970,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), }, - [1749] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2420), - [sym__name] = STATE(5887), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2197), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(5299), - [sym_non_lvalue_expression] = STATE(3066), - [sym_lvalue_expression] = STATE(3637), - [sym__expression_statement_expression] = STATE(3006), - [sym_assignment_expression] = STATE(3020), - [sym_binary_expression] = STATE(3006), - [sym_postfix_unary_expression] = STATE(3020), - [sym_prefix_unary_expression] = STATE(3020), - [sym__pointer_indirection_expression] = STATE(2423), - [sym_query_expression] = STATE(3006), - [sym_from_clause] = STATE(6148), - [sym_conditional_expression] = STATE(3006), - [sym_conditional_access_expression] = STATE(3006), - [sym_as_expression] = STATE(3006), - [sym_is_expression] = STATE(3006), - [sym_is_pattern_expression] = STATE(3006), - [sym_cast_expression] = STATE(3006), - [sym_checked_expression] = STATE(3006), - [sym_invocation_expression] = STATE(3020), - [sym_switch_expression] = STATE(3006), - [sym_await_expression] = STATE(3020), - [sym_throw_expression] = STATE(3006), - [sym_element_access_expression] = STATE(2423), - [sym_interpolated_string_expression] = STATE(3006), - [sym_member_access_expression] = STATE(2423), - [sym_object_creation_expression] = STATE(3020), - [sym_parenthesized_expression] = STATE(3020), - [sym__parenthesized_lvalue_expression] = STATE(2423), - [sym_lambda_expression] = STATE(3006), - [sym__lambda_expression_init] = STATE(7507), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3006), - [sym_anonymous_method_expression] = STATE(3006), - [sym_anonymous_object_creation_expression] = STATE(3006), - [sym_implicit_array_creation_expression] = STATE(3006), - [sym_implicit_object_creation_expression] = STATE(3006), - [sym_implicit_stackalloc_expression] = STATE(3006), - [sym_initializer_expression] = STATE(3006), - [sym_default_expression] = STATE(3006), - [sym_with_expression] = STATE(3006), - [sym_sizeof_expression] = STATE(3006), - [sym_typeof_expression] = STATE(3006), - [sym_makeref_expression] = STATE(3006), - [sym_ref_expression] = STATE(3006), - [sym_reftype_expression] = STATE(3006), - [sym_refvalue_expression] = STATE(3006), - [sym_stackalloc_expression] = STATE(3006), - [sym_range_expression] = STATE(3006), - [sym_tuple_expression] = STATE(2423), - [sym_literal] = STATE(3006), - [sym_character_literal] = STATE(3011), - [sym_string_literal] = STATE(3011), - [sym_raw_string_literal] = STATE(3011), - [sym_boolean_literal] = STATE(3011), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3006), - [sym_preproc_if_in_attribute_list] = STATE(5576), - [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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3440), + [1777] = { + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2603), + [sym__name] = STATE(5862), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2193), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(3855), + [sym_non_lvalue_expression] = STATE(3220), + [sym_lvalue_expression] = STATE(2955), + [sym__expression_statement_expression] = STATE(3236), + [sym_assignment_expression] = STATE(3221), + [sym_binary_expression] = STATE(3236), + [sym_postfix_unary_expression] = STATE(3221), + [sym_prefix_unary_expression] = STATE(3221), + [sym__pointer_indirection_expression] = STATE(2602), + [sym_query_expression] = STATE(3236), + [sym_from_clause] = STATE(6143), + [sym_conditional_expression] = STATE(3236), + [sym_conditional_access_expression] = STATE(3236), + [sym_as_expression] = STATE(3236), + [sym_is_expression] = STATE(3236), + [sym_is_pattern_expression] = STATE(3236), + [sym_cast_expression] = STATE(3236), + [sym_checked_expression] = STATE(3236), + [sym_invocation_expression] = STATE(3221), + [sym_switch_expression] = STATE(3236), + [sym_await_expression] = STATE(3221), + [sym_throw_expression] = STATE(3236), + [sym_element_access_expression] = STATE(2602), + [sym_interpolated_string_expression] = STATE(3236), + [sym_member_access_expression] = STATE(2602), + [sym_object_creation_expression] = STATE(3221), + [sym_parenthesized_expression] = STATE(3221), + [sym__parenthesized_lvalue_expression] = STATE(2602), + [sym_lambda_expression] = STATE(3236), + [sym__lambda_expression_init] = STATE(7668), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3236), + [sym_anonymous_method_expression] = STATE(3236), + [sym_anonymous_object_creation_expression] = STATE(3236), + [sym_implicit_array_creation_expression] = STATE(3236), + [sym_implicit_object_creation_expression] = STATE(3236), + [sym_implicit_stackalloc_expression] = STATE(3236), + [sym_initializer_expression] = STATE(3236), + [sym_default_expression] = STATE(3236), + [sym_with_expression] = STATE(3236), + [sym_sizeof_expression] = STATE(3236), + [sym_typeof_expression] = STATE(3236), + [sym_makeref_expression] = STATE(3236), + [sym_ref_expression] = STATE(3236), + [sym_reftype_expression] = STATE(3236), + [sym_refvalue_expression] = STATE(3236), + [sym_stackalloc_expression] = STATE(3236), + [sym_range_expression] = STATE(3236), + [sym_tuple_expression] = STATE(2602), + [sym_literal] = STATE(3236), + [sym_character_literal] = STATE(3272), + [sym_string_literal] = STATE(3272), + [sym_raw_string_literal] = STATE(3272), + [sym_boolean_literal] = STATE(3272), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3236), + [sym_preproc_if_in_attribute_list] = STATE(5583), + [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(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3379), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1241), - [anon_sym_LPAREN] = ACTIONS(2113), - [anon_sym_ref] = ACTIONS(2115), - [anon_sym_LBRACE] = ACTIONS(1247), - [anon_sym_delegate] = ACTIONS(1249), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1149), + [anon_sym_LPAREN] = ACTIONS(1151), + [anon_sym_ref] = ACTIONS(1153), + [anon_sym_LBRACE] = ACTIONS(1155), + [anon_sym_delegate] = ACTIONS(1157), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1251), + [anon_sym_new] = ACTIONS(1159), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1253), - [anon_sym_BANG] = ACTIONS(2119), - [anon_sym_TILDE] = ACTIONS(2119), - [anon_sym_PLUS_PLUS] = ACTIONS(2119), - [anon_sym_DASH_DASH] = ACTIONS(2119), - [anon_sym_true] = ACTIONS(1259), - [anon_sym_false] = ACTIONS(1259), - [anon_sym_PLUS] = ACTIONS(2117), - [anon_sym_DASH] = ACTIONS(2117), - [anon_sym_STAR] = ACTIONS(1261), - [anon_sym_CARET] = ACTIONS(2119), - [anon_sym_AMP] = ACTIONS(2119), - [anon_sym_this] = ACTIONS(1263), + [anon_sym_checked] = ACTIONS(1163), + [anon_sym_BANG] = ACTIONS(1167), + [anon_sym_TILDE] = ACTIONS(1167), + [anon_sym_PLUS_PLUS] = ACTIONS(1167), + [anon_sym_DASH_DASH] = ACTIONS(1167), + [anon_sym_true] = ACTIONS(1169), + [anon_sym_false] = ACTIONS(1169), + [anon_sym_PLUS] = ACTIONS(1165), + [anon_sym_DASH] = ACTIONS(1165), + [anon_sym_STAR] = ACTIONS(1171), + [anon_sym_CARET] = ACTIONS(1167), + [anon_sym_AMP] = ACTIONS(1167), + [anon_sym_this] = ACTIONS(1173), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1265), + [anon_sym_base] = ACTIONS(1175), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1267), - [anon_sym_unchecked] = ACTIONS(1253), + [sym_predefined_type] = ACTIONS(1177), + [anon_sym_unchecked] = ACTIONS(1163), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1269), - [anon_sym_throw] = ACTIONS(2121), + [anon_sym_default] = ACTIONS(1179), + [anon_sym_throw] = ACTIONS(1181), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2123), - [anon_sym_DOT_DOT] = ACTIONS(2125), + [anon_sym_await] = ACTIONS(1183), + [anon_sym_DOT_DOT] = ACTIONS(1185), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -337493,19 +342111,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1277), - [anon_sym_sizeof] = ACTIONS(1279), - [anon_sym_typeof] = ACTIONS(1281), - [anon_sym___makeref] = ACTIONS(1283), - [anon_sym___reftype] = ACTIONS(1285), - [anon_sym___refvalue] = ACTIONS(1287), - [sym_null_literal] = ACTIONS(1289), - [anon_sym_SQUOTE] = ACTIONS(1291), - [sym_integer_literal] = ACTIONS(1289), - [sym_real_literal] = ACTIONS(1293), - [anon_sym_DQUOTE] = ACTIONS(1295), - [sym_verbatim_string_literal] = ACTIONS(1293), - [aux_sym_preproc_if_token1] = ACTIONS(2127), + [anon_sym_stackalloc] = ACTIONS(1187), + [anon_sym_sizeof] = ACTIONS(1189), + [anon_sym_typeof] = ACTIONS(1191), + [anon_sym___makeref] = ACTIONS(1193), + [anon_sym___reftype] = ACTIONS(1195), + [anon_sym___refvalue] = ACTIONS(1197), + [sym_null_literal] = ACTIONS(1199), + [anon_sym_SQUOTE] = ACTIONS(1201), + [sym_integer_literal] = ACTIONS(1199), + [sym_real_literal] = ACTIONS(1203), + [anon_sym_DQUOTE] = ACTIONS(1205), + [sym_verbatim_string_literal] = ACTIONS(1203), + [aux_sym_preproc_if_token1] = ACTIONS(1207), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -337516,309 +342134,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(1299), - [sym_interpolation_verbatim_start] = ACTIONS(1301), - [sym_interpolation_raw_start] = ACTIONS(1303), - [sym_raw_string_start] = ACTIONS(1305), - }, - [1750] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(3184), - [sym__name] = STATE(5883), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2313), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2269), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(4262), - [sym_non_lvalue_expression] = STATE(4541), - [sym_lvalue_expression] = STATE(3314), - [sym__expression_statement_expression] = STATE(4529), - [sym_assignment_expression] = STATE(4543), - [sym_binary_expression] = STATE(4529), - [sym_postfix_unary_expression] = STATE(4543), - [sym_prefix_unary_expression] = STATE(4543), - [sym__pointer_indirection_expression] = STATE(3175), - [sym_query_expression] = STATE(4529), - [sym_from_clause] = STATE(6156), - [sym_conditional_expression] = STATE(4529), - [sym_conditional_access_expression] = STATE(4529), - [sym_as_expression] = STATE(4529), - [sym_is_expression] = STATE(4529), - [sym_is_pattern_expression] = STATE(4529), - [sym_cast_expression] = STATE(4529), - [sym_checked_expression] = STATE(4529), - [sym_invocation_expression] = STATE(4543), - [sym_switch_expression] = STATE(4529), - [sym_await_expression] = STATE(4543), - [sym_throw_expression] = STATE(4529), - [sym_element_access_expression] = STATE(3175), - [sym_interpolated_string_expression] = STATE(4529), - [sym_member_access_expression] = STATE(3175), - [sym_object_creation_expression] = STATE(4543), - [sym_parenthesized_expression] = STATE(4543), - [sym__parenthesized_lvalue_expression] = STATE(3175), - [sym_lambda_expression] = STATE(4529), - [sym__lambda_expression_init] = STATE(7552), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(4529), - [sym_anonymous_method_expression] = STATE(4529), - [sym_anonymous_object_creation_expression] = STATE(4529), - [sym_implicit_array_creation_expression] = STATE(4529), - [sym_implicit_object_creation_expression] = STATE(4529), - [sym_implicit_stackalloc_expression] = STATE(4529), - [sym_initializer_expression] = STATE(4529), - [sym_default_expression] = STATE(4529), - [sym_with_expression] = STATE(4529), - [sym_sizeof_expression] = STATE(4529), - [sym_typeof_expression] = STATE(4529), - [sym_makeref_expression] = STATE(4529), - [sym_ref_expression] = STATE(4529), - [sym_reftype_expression] = STATE(4529), - [sym_refvalue_expression] = STATE(4529), - [sym_stackalloc_expression] = STATE(4529), - [sym_range_expression] = STATE(4529), - [sym_tuple_expression] = STATE(3175), - [sym_literal] = STATE(4529), - [sym_character_literal] = STATE(4536), - [sym_string_literal] = STATE(4536), - [sym_raw_string_literal] = STATE(4536), - [sym_boolean_literal] = STATE(4536), - [sym_identifier] = STATE(2246), - [sym__reserved_identifier] = STATE(2240), - [sym_preproc_if_in_expression] = STATE(4529), - [sym_preproc_if_in_attribute_list] = STATE(5576), - [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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3363), - [sym__identifier_token] = ACTIONS(1387), - [anon_sym_alias] = ACTIONS(1389), - [anon_sym_global] = ACTIONS(1389), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1391), - [anon_sym_LPAREN] = ACTIONS(1463), - [anon_sym_ref] = ACTIONS(1465), - [anon_sym_LBRACE] = ACTIONS(1397), - [anon_sym_delegate] = ACTIONS(1399), - [anon_sym_async] = ACTIONS(1047), - [anon_sym_file] = ACTIONS(1389), - [anon_sym_new] = ACTIONS(1467), - [anon_sym_where] = ACTIONS(1389), - [anon_sym_notnull] = ACTIONS(1389), - [anon_sym_unmanaged] = ACTIONS(1389), - [anon_sym_checked] = ACTIONS(1403), - [anon_sym_BANG] = ACTIONS(1471), - [anon_sym_TILDE] = ACTIONS(1471), - [anon_sym_PLUS_PLUS] = ACTIONS(1471), - [anon_sym_DASH_DASH] = ACTIONS(1471), - [anon_sym_true] = ACTIONS(1409), - [anon_sym_false] = ACTIONS(1409), - [anon_sym_PLUS] = ACTIONS(1469), - [anon_sym_DASH] = ACTIONS(1469), - [anon_sym_STAR] = ACTIONS(1473), - [anon_sym_CARET] = ACTIONS(1471), - [anon_sym_AMP] = ACTIONS(1471), - [anon_sym_this] = ACTIONS(1413), - [anon_sym_scoped] = ACTIONS(1415), - [anon_sym_base] = ACTIONS(1417), - [anon_sym_var] = ACTIONS(1419), - [sym_predefined_type] = ACTIONS(1421), - [anon_sym_unchecked] = ACTIONS(1403), - [anon_sym_yield] = ACTIONS(1389), - [anon_sym_default] = ACTIONS(1423), - [anon_sym_throw] = ACTIONS(1475), - [anon_sym_when] = ACTIONS(1389), - [anon_sym_await] = ACTIONS(1477), - [anon_sym_DOT_DOT] = ACTIONS(1479), - [anon_sym_from] = ACTIONS(1431), - [anon_sym_into] = ACTIONS(1389), - [anon_sym_join] = ACTIONS(1389), - [anon_sym_on] = ACTIONS(1389), - [anon_sym_equals] = ACTIONS(1389), - [anon_sym_let] = ACTIONS(1389), - [anon_sym_orderby] = ACTIONS(1389), - [anon_sym_ascending] = ACTIONS(1389), - [anon_sym_descending] = ACTIONS(1389), - [anon_sym_group] = ACTIONS(1389), - [anon_sym_by] = ACTIONS(1389), - [anon_sym_select] = ACTIONS(1389), - [anon_sym_stackalloc] = ACTIONS(1433), - [anon_sym_sizeof] = ACTIONS(1435), - [anon_sym_typeof] = ACTIONS(1437), - [anon_sym___makeref] = ACTIONS(1439), - [anon_sym___reftype] = ACTIONS(1441), - [anon_sym___refvalue] = ACTIONS(1443), - [sym_null_literal] = ACTIONS(1445), - [anon_sym_SQUOTE] = ACTIONS(1447), - [sym_integer_literal] = ACTIONS(1445), - [sym_real_literal] = ACTIONS(1449), - [anon_sym_DQUOTE] = ACTIONS(1451), - [sym_verbatim_string_literal] = ACTIONS(1449), - [aux_sym_preproc_if_token1] = ACTIONS(1453), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1455), - [sym_interpolation_verbatim_start] = ACTIONS(1457), - [sym_interpolation_raw_start] = ACTIONS(1459), - [sym_raw_string_start] = ACTIONS(1461), + [sym_interpolation_regular_start] = ACTIONS(1209), + [sym_interpolation_verbatim_start] = ACTIONS(1211), + [sym_interpolation_raw_start] = ACTIONS(1213), + [sym_raw_string_start] = ACTIONS(1215), }, - [1751] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(5910), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2247), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(4551), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3379), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3080), - [sym_postfix_unary_expression] = STATE(3111), - [sym_prefix_unary_expression] = STATE(3111), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6154), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3080), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3111), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3080), - [sym_member_access_expression] = STATE(2484), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3111), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7575), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(3080), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3080), - [sym_typeof_expression] = STATE(3080), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2484), - [sym_literal] = STATE(3080), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), - [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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [1778] = { + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2603), + [sym__name] = STATE(5862), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2193), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(3123), + [sym_non_lvalue_expression] = STATE(3220), + [sym_lvalue_expression] = STATE(2955), + [sym__expression_statement_expression] = STATE(3236), + [sym_assignment_expression] = STATE(3221), + [sym_binary_expression] = STATE(3236), + [sym_postfix_unary_expression] = STATE(3221), + [sym_prefix_unary_expression] = STATE(3221), + [sym__pointer_indirection_expression] = STATE(2602), + [sym_query_expression] = STATE(3236), + [sym_from_clause] = STATE(6143), + [sym_conditional_expression] = STATE(3236), + [sym_conditional_access_expression] = STATE(3236), + [sym_as_expression] = STATE(3236), + [sym_is_expression] = STATE(3236), + [sym_is_pattern_expression] = STATE(3236), + [sym_cast_expression] = STATE(3236), + [sym_checked_expression] = STATE(3236), + [sym_invocation_expression] = STATE(3221), + [sym_switch_expression] = STATE(3236), + [sym_await_expression] = STATE(3221), + [sym_throw_expression] = STATE(3236), + [sym_element_access_expression] = STATE(2602), + [sym_interpolated_string_expression] = STATE(3236), + [sym_member_access_expression] = STATE(2602), + [sym_object_creation_expression] = STATE(3221), + [sym_parenthesized_expression] = STATE(3221), + [sym__parenthesized_lvalue_expression] = STATE(2602), + [sym_lambda_expression] = STATE(3236), + [sym__lambda_expression_init] = STATE(7668), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3236), + [sym_anonymous_method_expression] = STATE(3236), + [sym_anonymous_object_creation_expression] = STATE(3236), + [sym_implicit_array_creation_expression] = STATE(3236), + [sym_implicit_object_creation_expression] = STATE(3236), + [sym_implicit_stackalloc_expression] = STATE(3236), + [sym_initializer_expression] = STATE(3236), + [sym_default_expression] = STATE(3236), + [sym_with_expression] = STATE(3236), + [sym_sizeof_expression] = STATE(3236), + [sym_typeof_expression] = STATE(3236), + [sym_makeref_expression] = STATE(3236), + [sym_ref_expression] = STATE(3236), + [sym_reftype_expression] = STATE(3236), + [sym_refvalue_expression] = STATE(3236), + [sym_stackalloc_expression] = STATE(3236), + [sym_range_expression] = STATE(3236), + [sym_tuple_expression] = STATE(2602), + [sym_literal] = STATE(3236), + [sym_character_literal] = STATE(3272), + [sym_string_literal] = STATE(3272), + [sym_raw_string_literal] = STATE(3272), + [sym_boolean_literal] = STATE(3272), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3236), + [sym_preproc_if_in_attribute_list] = STATE(5583), + [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(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3379), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1481), - [anon_sym_LPAREN] = ACTIONS(895), - [anon_sym_ref] = ACTIONS(897), - [anon_sym_LBRACE] = ACTIONS(1487), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1149), + [anon_sym_LPAREN] = ACTIONS(1151), + [anon_sym_ref] = ACTIONS(1153), + [anon_sym_LBRACE] = ACTIONS(1155), + [anon_sym_delegate] = ACTIONS(1157), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1061), + [anon_sym_new] = ACTIONS(1159), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1067), - [anon_sym_BANG] = ACTIONS(1495), - [anon_sym_TILDE] = ACTIONS(1495), - [anon_sym_PLUS_PLUS] = ACTIONS(1495), - [anon_sym_DASH_DASH] = ACTIONS(1495), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1493), - [anon_sym_DASH] = ACTIONS(1493), - [anon_sym_STAR] = ACTIONS(905), - [anon_sym_CARET] = ACTIONS(1495), - [anon_sym_AMP] = ACTIONS(1495), - [anon_sym_this] = ACTIONS(83), + [anon_sym_checked] = ACTIONS(1163), + [anon_sym_BANG] = ACTIONS(1167), + [anon_sym_TILDE] = ACTIONS(1167), + [anon_sym_PLUS_PLUS] = ACTIONS(1167), + [anon_sym_DASH_DASH] = ACTIONS(1167), + [anon_sym_true] = ACTIONS(1169), + [anon_sym_false] = ACTIONS(1169), + [anon_sym_PLUS] = ACTIONS(1165), + [anon_sym_DASH] = ACTIONS(1165), + [anon_sym_STAR] = ACTIONS(1171), + [anon_sym_CARET] = ACTIONS(1167), + [anon_sym_AMP] = ACTIONS(1167), + [anon_sym_this] = ACTIONS(1173), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), + [anon_sym_base] = ACTIONS(1175), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1067), + [sym_predefined_type] = ACTIONS(1177), + [anon_sym_unchecked] = ACTIONS(1163), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1079), + [anon_sym_default] = ACTIONS(1179), + [anon_sym_throw] = ACTIONS(1181), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1081), - [anon_sym_DOT_DOT] = ACTIONS(911), + [anon_sym_await] = ACTIONS(1183), + [anon_sym_DOT_DOT] = ACTIONS(1185), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -337831,19 +342280,19 @@ static const uint16_t ts_parse_table[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(1089), + [anon_sym_stackalloc] = ACTIONS(1187), + [anon_sym_sizeof] = ACTIONS(1189), + [anon_sym_typeof] = ACTIONS(1191), + [anon_sym___makeref] = ACTIONS(1193), + [anon_sym___reftype] = ACTIONS(1195), + [anon_sym___refvalue] = ACTIONS(1197), + [sym_null_literal] = ACTIONS(1199), + [anon_sym_SQUOTE] = ACTIONS(1201), + [sym_integer_literal] = ACTIONS(1199), + [sym_real_literal] = ACTIONS(1203), + [anon_sym_DQUOTE] = ACTIONS(1205), + [sym_verbatim_string_literal] = ACTIONS(1203), + [aux_sym_preproc_if_token1] = ACTIONS(1207), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -337854,478 +342303,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), - }, - [1752] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(3184), - [sym__name] = STATE(5906), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2312), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2269), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(4280), - [sym_non_lvalue_expression] = STATE(4541), - [sym_lvalue_expression] = STATE(3165), - [sym__expression_statement_expression] = STATE(4529), - [sym_assignment_expression] = STATE(4543), - [sym_binary_expression] = STATE(4529), - [sym_postfix_unary_expression] = STATE(4543), - [sym_prefix_unary_expression] = STATE(4543), - [sym__pointer_indirection_expression] = STATE(3175), - [sym_query_expression] = STATE(4529), - [sym_from_clause] = STATE(6156), - [sym_conditional_expression] = STATE(4529), - [sym_conditional_access_expression] = STATE(4529), - [sym_as_expression] = STATE(4529), - [sym_is_expression] = STATE(4529), - [sym_is_pattern_expression] = STATE(4529), - [sym_cast_expression] = STATE(4529), - [sym_checked_expression] = STATE(4529), - [sym_invocation_expression] = STATE(4543), - [sym_switch_expression] = STATE(4529), - [sym_await_expression] = STATE(4543), - [sym_throw_expression] = STATE(4529), - [sym_element_access_expression] = STATE(3175), - [sym_interpolated_string_expression] = STATE(4529), - [sym_member_access_expression] = STATE(3175), - [sym_object_creation_expression] = STATE(4543), - [sym_parenthesized_expression] = STATE(4543), - [sym__parenthesized_lvalue_expression] = STATE(3175), - [sym_lambda_expression] = STATE(4529), - [sym__lambda_expression_init] = STATE(7341), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(4529), - [sym_anonymous_method_expression] = STATE(4529), - [sym_anonymous_object_creation_expression] = STATE(4529), - [sym_implicit_array_creation_expression] = STATE(4529), - [sym_implicit_object_creation_expression] = STATE(4529), - [sym_implicit_stackalloc_expression] = STATE(4529), - [sym_initializer_expression] = STATE(4529), - [sym_default_expression] = STATE(4529), - [sym_with_expression] = STATE(4529), - [sym_sizeof_expression] = STATE(4529), - [sym_typeof_expression] = STATE(4529), - [sym_makeref_expression] = STATE(4529), - [sym_ref_expression] = STATE(4529), - [sym_reftype_expression] = STATE(4529), - [sym_refvalue_expression] = STATE(4529), - [sym_stackalloc_expression] = STATE(4529), - [sym_range_expression] = STATE(4529), - [sym_tuple_expression] = STATE(3175), - [sym_literal] = STATE(4529), - [sym_character_literal] = STATE(4536), - [sym_string_literal] = STATE(4536), - [sym_raw_string_literal] = STATE(4536), - [sym_boolean_literal] = STATE(4536), - [sym_identifier] = STATE(2246), - [sym__reserved_identifier] = STATE(2240), - [sym_preproc_if_in_expression] = STATE(4529), - [sym_preproc_if_in_attribute_list] = STATE(5576), - [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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3363), - [sym__identifier_token] = ACTIONS(1387), - [anon_sym_alias] = ACTIONS(1389), - [anon_sym_global] = ACTIONS(1389), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1391), - [anon_sym_LPAREN] = ACTIONS(1393), - [anon_sym_ref] = ACTIONS(1395), - [anon_sym_LBRACE] = ACTIONS(1397), - [anon_sym_delegate] = ACTIONS(1399), - [anon_sym_async] = ACTIONS(1047), - [anon_sym_file] = ACTIONS(1389), - [anon_sym_new] = ACTIONS(1401), - [anon_sym_where] = ACTIONS(1389), - [anon_sym_notnull] = ACTIONS(1389), - [anon_sym_unmanaged] = ACTIONS(1389), - [anon_sym_checked] = ACTIONS(1403), - [anon_sym_BANG] = ACTIONS(1407), - [anon_sym_TILDE] = ACTIONS(1407), - [anon_sym_PLUS_PLUS] = ACTIONS(1407), - [anon_sym_DASH_DASH] = ACTIONS(1407), - [anon_sym_true] = ACTIONS(1409), - [anon_sym_false] = ACTIONS(1409), - [anon_sym_PLUS] = ACTIONS(1405), - [anon_sym_DASH] = ACTIONS(1405), - [anon_sym_STAR] = ACTIONS(1411), - [anon_sym_CARET] = ACTIONS(1407), - [anon_sym_AMP] = ACTIONS(1407), - [anon_sym_this] = ACTIONS(1413), - [anon_sym_scoped] = ACTIONS(1415), - [anon_sym_base] = ACTIONS(1417), - [anon_sym_var] = ACTIONS(1419), - [sym_predefined_type] = ACTIONS(1421), - [anon_sym_unchecked] = ACTIONS(1403), - [anon_sym_yield] = ACTIONS(1389), - [anon_sym_default] = ACTIONS(1423), - [anon_sym_throw] = ACTIONS(1425), - [anon_sym_when] = ACTIONS(1389), - [anon_sym_await] = ACTIONS(1427), - [anon_sym_DOT_DOT] = ACTIONS(1429), - [anon_sym_from] = ACTIONS(1431), - [anon_sym_into] = ACTIONS(1389), - [anon_sym_join] = ACTIONS(1389), - [anon_sym_on] = ACTIONS(1389), - [anon_sym_equals] = ACTIONS(1389), - [anon_sym_let] = ACTIONS(1389), - [anon_sym_orderby] = ACTIONS(1389), - [anon_sym_ascending] = ACTIONS(1389), - [anon_sym_descending] = ACTIONS(1389), - [anon_sym_group] = ACTIONS(1389), - [anon_sym_by] = ACTIONS(1389), - [anon_sym_select] = ACTIONS(1389), - [anon_sym_stackalloc] = ACTIONS(1433), - [anon_sym_sizeof] = ACTIONS(1435), - [anon_sym_typeof] = ACTIONS(1437), - [anon_sym___makeref] = ACTIONS(1439), - [anon_sym___reftype] = ACTIONS(1441), - [anon_sym___refvalue] = ACTIONS(1443), - [sym_null_literal] = ACTIONS(1445), - [anon_sym_SQUOTE] = ACTIONS(1447), - [sym_integer_literal] = ACTIONS(1445), - [sym_real_literal] = ACTIONS(1449), - [anon_sym_DQUOTE] = ACTIONS(1451), - [sym_verbatim_string_literal] = ACTIONS(1449), - [aux_sym_preproc_if_token1] = ACTIONS(1453), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1455), - [sym_interpolation_verbatim_start] = ACTIONS(1457), - [sym_interpolation_raw_start] = ACTIONS(1459), - [sym_raw_string_start] = ACTIONS(1461), - }, - [1753] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(3184), - [sym__name] = STATE(5906), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2312), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2269), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(4282), - [sym_non_lvalue_expression] = STATE(4541), - [sym_lvalue_expression] = STATE(3165), - [sym__expression_statement_expression] = STATE(4529), - [sym_assignment_expression] = STATE(4543), - [sym_binary_expression] = STATE(4529), - [sym_postfix_unary_expression] = STATE(4543), - [sym_prefix_unary_expression] = STATE(4543), - [sym__pointer_indirection_expression] = STATE(3175), - [sym_query_expression] = STATE(4529), - [sym_from_clause] = STATE(6156), - [sym_conditional_expression] = STATE(4529), - [sym_conditional_access_expression] = STATE(4529), - [sym_as_expression] = STATE(4529), - [sym_is_expression] = STATE(4529), - [sym_is_pattern_expression] = STATE(4529), - [sym_cast_expression] = STATE(4529), - [sym_checked_expression] = STATE(4529), - [sym_invocation_expression] = STATE(4543), - [sym_switch_expression] = STATE(4529), - [sym_await_expression] = STATE(4543), - [sym_throw_expression] = STATE(4529), - [sym_element_access_expression] = STATE(3175), - [sym_interpolated_string_expression] = STATE(4529), - [sym_member_access_expression] = STATE(3175), - [sym_object_creation_expression] = STATE(4543), - [sym_parenthesized_expression] = STATE(4543), - [sym__parenthesized_lvalue_expression] = STATE(3175), - [sym_lambda_expression] = STATE(4529), - [sym__lambda_expression_init] = STATE(7341), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(4529), - [sym_anonymous_method_expression] = STATE(4529), - [sym_anonymous_object_creation_expression] = STATE(4529), - [sym_implicit_array_creation_expression] = STATE(4529), - [sym_implicit_object_creation_expression] = STATE(4529), - [sym_implicit_stackalloc_expression] = STATE(4529), - [sym_initializer_expression] = STATE(4529), - [sym_default_expression] = STATE(4529), - [sym_with_expression] = STATE(4529), - [sym_sizeof_expression] = STATE(4529), - [sym_typeof_expression] = STATE(4529), - [sym_makeref_expression] = STATE(4529), - [sym_ref_expression] = STATE(4529), - [sym_reftype_expression] = STATE(4529), - [sym_refvalue_expression] = STATE(4529), - [sym_stackalloc_expression] = STATE(4529), - [sym_range_expression] = STATE(4529), - [sym_tuple_expression] = STATE(3175), - [sym_literal] = STATE(4529), - [sym_character_literal] = STATE(4536), - [sym_string_literal] = STATE(4536), - [sym_raw_string_literal] = STATE(4536), - [sym_boolean_literal] = STATE(4536), - [sym_identifier] = STATE(2246), - [sym__reserved_identifier] = STATE(2240), - [sym_preproc_if_in_expression] = STATE(4529), - [sym_preproc_if_in_attribute_list] = STATE(5576), - [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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3363), - [sym__identifier_token] = ACTIONS(1387), - [anon_sym_alias] = ACTIONS(1389), - [anon_sym_global] = ACTIONS(1389), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1391), - [anon_sym_LPAREN] = ACTIONS(1393), - [anon_sym_ref] = ACTIONS(1395), - [anon_sym_LBRACE] = ACTIONS(1397), - [anon_sym_delegate] = ACTIONS(1399), - [anon_sym_async] = ACTIONS(1047), - [anon_sym_file] = ACTIONS(1389), - [anon_sym_new] = ACTIONS(1401), - [anon_sym_where] = ACTIONS(1389), - [anon_sym_notnull] = ACTIONS(1389), - [anon_sym_unmanaged] = ACTIONS(1389), - [anon_sym_checked] = ACTIONS(1403), - [anon_sym_BANG] = ACTIONS(1407), - [anon_sym_TILDE] = ACTIONS(1407), - [anon_sym_PLUS_PLUS] = ACTIONS(1407), - [anon_sym_DASH_DASH] = ACTIONS(1407), - [anon_sym_true] = ACTIONS(1409), - [anon_sym_false] = ACTIONS(1409), - [anon_sym_PLUS] = ACTIONS(1405), - [anon_sym_DASH] = ACTIONS(1405), - [anon_sym_STAR] = ACTIONS(1411), - [anon_sym_CARET] = ACTIONS(1407), - [anon_sym_AMP] = ACTIONS(1407), - [anon_sym_this] = ACTIONS(1413), - [anon_sym_scoped] = ACTIONS(1415), - [anon_sym_base] = ACTIONS(1417), - [anon_sym_var] = ACTIONS(1419), - [sym_predefined_type] = ACTIONS(1421), - [anon_sym_unchecked] = ACTIONS(1403), - [anon_sym_yield] = ACTIONS(1389), - [anon_sym_default] = ACTIONS(1423), - [anon_sym_throw] = ACTIONS(1425), - [anon_sym_when] = ACTIONS(1389), - [anon_sym_await] = ACTIONS(1427), - [anon_sym_DOT_DOT] = ACTIONS(1429), - [anon_sym_from] = ACTIONS(1431), - [anon_sym_into] = ACTIONS(1389), - [anon_sym_join] = ACTIONS(1389), - [anon_sym_on] = ACTIONS(1389), - [anon_sym_equals] = ACTIONS(1389), - [anon_sym_let] = ACTIONS(1389), - [anon_sym_orderby] = ACTIONS(1389), - [anon_sym_ascending] = ACTIONS(1389), - [anon_sym_descending] = ACTIONS(1389), - [anon_sym_group] = ACTIONS(1389), - [anon_sym_by] = ACTIONS(1389), - [anon_sym_select] = ACTIONS(1389), - [anon_sym_stackalloc] = ACTIONS(1433), - [anon_sym_sizeof] = ACTIONS(1435), - [anon_sym_typeof] = ACTIONS(1437), - [anon_sym___makeref] = ACTIONS(1439), - [anon_sym___reftype] = ACTIONS(1441), - [anon_sym___refvalue] = ACTIONS(1443), - [sym_null_literal] = ACTIONS(1445), - [anon_sym_SQUOTE] = ACTIONS(1447), - [sym_integer_literal] = ACTIONS(1445), - [sym_real_literal] = ACTIONS(1449), - [anon_sym_DQUOTE] = ACTIONS(1451), - [sym_verbatim_string_literal] = ACTIONS(1449), - [aux_sym_preproc_if_token1] = ACTIONS(1453), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1455), - [sym_interpolation_verbatim_start] = ACTIONS(1457), - [sym_interpolation_raw_start] = ACTIONS(1459), - [sym_raw_string_start] = ACTIONS(1461), + [sym_interpolation_regular_start] = ACTIONS(1209), + [sym_interpolation_verbatim_start] = ACTIONS(1211), + [sym_interpolation_raw_start] = ACTIONS(1213), + [sym_raw_string_start] = ACTIONS(1215), }, - [1754] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(5160), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2204), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(5004), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3520), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3080), - [sym_postfix_unary_expression] = STATE(3111), - [sym_prefix_unary_expression] = STATE(3111), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6154), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3080), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3111), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3080), - [sym_member_access_expression] = STATE(2484), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3111), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7530), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(3080), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3080), - [sym_typeof_expression] = STATE(3080), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2484), - [sym_literal] = STATE(3080), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), - [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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [1779] = { + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2603), + [sym__name] = STATE(5862), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2193), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(3864), + [sym_non_lvalue_expression] = STATE(3220), + [sym_lvalue_expression] = STATE(2955), + [sym__expression_statement_expression] = STATE(3236), + [sym_assignment_expression] = STATE(3221), + [sym_binary_expression] = STATE(3236), + [sym_postfix_unary_expression] = STATE(3221), + [sym_prefix_unary_expression] = STATE(3221), + [sym__pointer_indirection_expression] = STATE(2602), + [sym_query_expression] = STATE(3236), + [sym_from_clause] = STATE(6143), + [sym_conditional_expression] = STATE(3236), + [sym_conditional_access_expression] = STATE(3236), + [sym_as_expression] = STATE(3236), + [sym_is_expression] = STATE(3236), + [sym_is_pattern_expression] = STATE(3236), + [sym_cast_expression] = STATE(3236), + [sym_checked_expression] = STATE(3236), + [sym_invocation_expression] = STATE(3221), + [sym_switch_expression] = STATE(3236), + [sym_await_expression] = STATE(3221), + [sym_throw_expression] = STATE(3236), + [sym_element_access_expression] = STATE(2602), + [sym_interpolated_string_expression] = STATE(3236), + [sym_member_access_expression] = STATE(2602), + [sym_object_creation_expression] = STATE(3221), + [sym_parenthesized_expression] = STATE(3221), + [sym__parenthesized_lvalue_expression] = STATE(2602), + [sym_lambda_expression] = STATE(3236), + [sym__lambda_expression_init] = STATE(7668), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3236), + [sym_anonymous_method_expression] = STATE(3236), + [sym_anonymous_object_creation_expression] = STATE(3236), + [sym_implicit_array_creation_expression] = STATE(3236), + [sym_implicit_object_creation_expression] = STATE(3236), + [sym_implicit_stackalloc_expression] = STATE(3236), + [sym_initializer_expression] = STATE(3236), + [sym_default_expression] = STATE(3236), + [sym_with_expression] = STATE(3236), + [sym_sizeof_expression] = STATE(3236), + [sym_typeof_expression] = STATE(3236), + [sym_makeref_expression] = STATE(3236), + [sym_ref_expression] = STATE(3236), + [sym_reftype_expression] = STATE(3236), + [sym_refvalue_expression] = STATE(3236), + [sym_stackalloc_expression] = STATE(3236), + [sym_range_expression] = STATE(3236), + [sym_tuple_expression] = STATE(2602), + [sym_literal] = STATE(3236), + [sym_character_literal] = STATE(3272), + [sym_string_literal] = STATE(3272), + [sym_raw_string_literal] = STATE(3272), + [sym_boolean_literal] = STATE(3272), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3236), + [sym_preproc_if_in_attribute_list] = STATE(5583), + [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(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3379), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1481), - [anon_sym_LPAREN] = ACTIONS(43), - [anon_sym_ref] = ACTIONS(661), - [anon_sym_LBRACE] = ACTIONS(1487), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1149), + [anon_sym_LPAREN] = ACTIONS(1151), + [anon_sym_ref] = ACTIONS(1153), + [anon_sym_LBRACE] = ACTIONS(1155), + [anon_sym_delegate] = ACTIONS(1157), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1061), + [anon_sym_new] = ACTIONS(1159), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = 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(1585), - [anon_sym_DASH] = ACTIONS(1585), - [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(1587), - [anon_sym_AMP] = ACTIONS(1587), - [anon_sym_this] = ACTIONS(83), + [anon_sym_checked] = ACTIONS(1163), + [anon_sym_BANG] = ACTIONS(1167), + [anon_sym_TILDE] = ACTIONS(1167), + [anon_sym_PLUS_PLUS] = ACTIONS(1167), + [anon_sym_DASH_DASH] = ACTIONS(1167), + [anon_sym_true] = ACTIONS(1169), + [anon_sym_false] = ACTIONS(1169), + [anon_sym_PLUS] = ACTIONS(1165), + [anon_sym_DASH] = ACTIONS(1165), + [anon_sym_STAR] = ACTIONS(1171), + [anon_sym_CARET] = ACTIONS(1167), + [anon_sym_AMP] = ACTIONS(1167), + [anon_sym_this] = ACTIONS(1173), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), + [anon_sym_base] = ACTIONS(1175), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1067), + [sym_predefined_type] = ACTIONS(1177), + [anon_sym_unchecked] = ACTIONS(1163), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1589), + [anon_sym_default] = ACTIONS(1179), + [anon_sym_throw] = ACTIONS(1181), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1591), - [anon_sym_DOT_DOT] = ACTIONS(123), + [anon_sym_await] = ACTIONS(1183), + [anon_sym_DOT_DOT] = ACTIONS(1185), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -338338,19 +342449,19 @@ static const uint16_t ts_parse_table[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(1089), + [anon_sym_stackalloc] = ACTIONS(1187), + [anon_sym_sizeof] = ACTIONS(1189), + [anon_sym_typeof] = ACTIONS(1191), + [anon_sym___makeref] = ACTIONS(1193), + [anon_sym___reftype] = ACTIONS(1195), + [anon_sym___refvalue] = ACTIONS(1197), + [sym_null_literal] = ACTIONS(1199), + [anon_sym_SQUOTE] = ACTIONS(1201), + [sym_integer_literal] = ACTIONS(1199), + [sym_real_literal] = ACTIONS(1203), + [anon_sym_DQUOTE] = ACTIONS(1205), + [sym_verbatim_string_literal] = ACTIONS(1203), + [aux_sym_preproc_if_token1] = ACTIONS(1207), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -338361,140 +342472,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(1209), + [sym_interpolation_verbatim_start] = ACTIONS(1211), + [sym_interpolation_raw_start] = ACTIONS(1213), + [sym_raw_string_start] = ACTIONS(1215), }, - [1755] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(5910), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2247), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(4556), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3379), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3080), - [sym_postfix_unary_expression] = STATE(3111), - [sym_prefix_unary_expression] = STATE(3111), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6154), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3080), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3111), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3080), - [sym_member_access_expression] = STATE(2484), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3111), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7575), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(3080), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3080), - [sym_typeof_expression] = STATE(3080), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2484), - [sym_literal] = STATE(3080), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), - [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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [1780] = { + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2603), + [sym__name] = STATE(5862), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2193), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(3865), + [sym_non_lvalue_expression] = STATE(3220), + [sym_lvalue_expression] = STATE(2955), + [sym__expression_statement_expression] = STATE(3236), + [sym_assignment_expression] = STATE(3221), + [sym_binary_expression] = STATE(3236), + [sym_postfix_unary_expression] = STATE(3221), + [sym_prefix_unary_expression] = STATE(3221), + [sym__pointer_indirection_expression] = STATE(2602), + [sym_query_expression] = STATE(3236), + [sym_from_clause] = STATE(6143), + [sym_conditional_expression] = STATE(3236), + [sym_conditional_access_expression] = STATE(3236), + [sym_as_expression] = STATE(3236), + [sym_is_expression] = STATE(3236), + [sym_is_pattern_expression] = STATE(3236), + [sym_cast_expression] = STATE(3236), + [sym_checked_expression] = STATE(3236), + [sym_invocation_expression] = STATE(3221), + [sym_switch_expression] = STATE(3236), + [sym_await_expression] = STATE(3221), + [sym_throw_expression] = STATE(3236), + [sym_element_access_expression] = STATE(2602), + [sym_interpolated_string_expression] = STATE(3236), + [sym_member_access_expression] = STATE(2602), + [sym_object_creation_expression] = STATE(3221), + [sym_parenthesized_expression] = STATE(3221), + [sym__parenthesized_lvalue_expression] = STATE(2602), + [sym_lambda_expression] = STATE(3236), + [sym__lambda_expression_init] = STATE(7668), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3236), + [sym_anonymous_method_expression] = STATE(3236), + [sym_anonymous_object_creation_expression] = STATE(3236), + [sym_implicit_array_creation_expression] = STATE(3236), + [sym_implicit_object_creation_expression] = STATE(3236), + [sym_implicit_stackalloc_expression] = STATE(3236), + [sym_initializer_expression] = STATE(3236), + [sym_default_expression] = STATE(3236), + [sym_with_expression] = STATE(3236), + [sym_sizeof_expression] = STATE(3236), + [sym_typeof_expression] = STATE(3236), + [sym_makeref_expression] = STATE(3236), + [sym_ref_expression] = STATE(3236), + [sym_reftype_expression] = STATE(3236), + [sym_refvalue_expression] = STATE(3236), + [sym_stackalloc_expression] = STATE(3236), + [sym_range_expression] = STATE(3236), + [sym_tuple_expression] = STATE(2602), + [sym_literal] = STATE(3236), + [sym_character_literal] = STATE(3272), + [sym_string_literal] = STATE(3272), + [sym_raw_string_literal] = STATE(3272), + [sym_boolean_literal] = STATE(3272), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3236), + [sym_preproc_if_in_attribute_list] = STATE(5583), + [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(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3379), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1481), - [anon_sym_LPAREN] = ACTIONS(895), - [anon_sym_ref] = ACTIONS(897), - [anon_sym_LBRACE] = ACTIONS(1487), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1149), + [anon_sym_LPAREN] = ACTIONS(1151), + [anon_sym_ref] = ACTIONS(1153), + [anon_sym_LBRACE] = ACTIONS(1155), + [anon_sym_delegate] = ACTIONS(1157), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1061), + [anon_sym_new] = ACTIONS(1159), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1067), - [anon_sym_BANG] = ACTIONS(1495), - [anon_sym_TILDE] = ACTIONS(1495), - [anon_sym_PLUS_PLUS] = ACTIONS(1495), - [anon_sym_DASH_DASH] = ACTIONS(1495), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1493), - [anon_sym_DASH] = ACTIONS(1493), - [anon_sym_STAR] = ACTIONS(905), - [anon_sym_CARET] = ACTIONS(1495), - [anon_sym_AMP] = ACTIONS(1495), - [anon_sym_this] = ACTIONS(83), + [anon_sym_checked] = ACTIONS(1163), + [anon_sym_BANG] = ACTIONS(1167), + [anon_sym_TILDE] = ACTIONS(1167), + [anon_sym_PLUS_PLUS] = ACTIONS(1167), + [anon_sym_DASH_DASH] = ACTIONS(1167), + [anon_sym_true] = ACTIONS(1169), + [anon_sym_false] = ACTIONS(1169), + [anon_sym_PLUS] = ACTIONS(1165), + [anon_sym_DASH] = ACTIONS(1165), + [anon_sym_STAR] = ACTIONS(1171), + [anon_sym_CARET] = ACTIONS(1167), + [anon_sym_AMP] = ACTIONS(1167), + [anon_sym_this] = ACTIONS(1173), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), + [anon_sym_base] = ACTIONS(1175), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1067), + [sym_predefined_type] = ACTIONS(1177), + [anon_sym_unchecked] = ACTIONS(1163), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1079), + [anon_sym_default] = ACTIONS(1179), + [anon_sym_throw] = ACTIONS(1181), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1081), - [anon_sym_DOT_DOT] = ACTIONS(911), + [anon_sym_await] = ACTIONS(1183), + [anon_sym_DOT_DOT] = ACTIONS(1185), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -338507,19 +342618,19 @@ static const uint16_t ts_parse_table[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(1089), + [anon_sym_stackalloc] = ACTIONS(1187), + [anon_sym_sizeof] = ACTIONS(1189), + [anon_sym_typeof] = ACTIONS(1191), + [anon_sym___makeref] = ACTIONS(1193), + [anon_sym___reftype] = ACTIONS(1195), + [anon_sym___refvalue] = ACTIONS(1197), + [sym_null_literal] = ACTIONS(1199), + [anon_sym_SQUOTE] = ACTIONS(1201), + [sym_integer_literal] = ACTIONS(1199), + [sym_real_literal] = ACTIONS(1203), + [anon_sym_DQUOTE] = ACTIONS(1205), + [sym_verbatim_string_literal] = ACTIONS(1203), + [aux_sym_preproc_if_token1] = ACTIONS(1207), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -338530,140 +342641,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(1209), + [sym_interpolation_verbatim_start] = ACTIONS(1211), + [sym_interpolation_raw_start] = ACTIONS(1213), + [sym_raw_string_start] = ACTIONS(1215), }, - [1756] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2420), - [sym__name] = STATE(5887), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2197), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(5164), - [sym_non_lvalue_expression] = STATE(3066), - [sym_lvalue_expression] = STATE(3637), - [sym__expression_statement_expression] = STATE(3006), - [sym_assignment_expression] = STATE(3020), - [sym_binary_expression] = STATE(3006), - [sym_postfix_unary_expression] = STATE(3020), - [sym_prefix_unary_expression] = STATE(3020), - [sym__pointer_indirection_expression] = STATE(2423), - [sym_query_expression] = STATE(3006), - [sym_from_clause] = STATE(6148), - [sym_conditional_expression] = STATE(3006), - [sym_conditional_access_expression] = STATE(3006), - [sym_as_expression] = STATE(3006), - [sym_is_expression] = STATE(3006), - [sym_is_pattern_expression] = STATE(3006), - [sym_cast_expression] = STATE(3006), - [sym_checked_expression] = STATE(3006), - [sym_invocation_expression] = STATE(3020), - [sym_switch_expression] = STATE(3006), - [sym_await_expression] = STATE(3020), - [sym_throw_expression] = STATE(3006), - [sym_element_access_expression] = STATE(2423), - [sym_interpolated_string_expression] = STATE(3006), - [sym_member_access_expression] = STATE(2423), - [sym_object_creation_expression] = STATE(3020), - [sym_parenthesized_expression] = STATE(3020), - [sym__parenthesized_lvalue_expression] = STATE(2423), - [sym_lambda_expression] = STATE(3006), - [sym__lambda_expression_init] = STATE(7507), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3006), - [sym_anonymous_method_expression] = STATE(3006), - [sym_anonymous_object_creation_expression] = STATE(3006), - [sym_implicit_array_creation_expression] = STATE(3006), - [sym_implicit_object_creation_expression] = STATE(3006), - [sym_implicit_stackalloc_expression] = STATE(3006), - [sym_initializer_expression] = STATE(3006), - [sym_default_expression] = STATE(3006), - [sym_with_expression] = STATE(3006), - [sym_sizeof_expression] = STATE(3006), - [sym_typeof_expression] = STATE(3006), - [sym_makeref_expression] = STATE(3006), - [sym_ref_expression] = STATE(3006), - [sym_reftype_expression] = STATE(3006), - [sym_refvalue_expression] = STATE(3006), - [sym_stackalloc_expression] = STATE(3006), - [sym_range_expression] = STATE(3006), - [sym_tuple_expression] = STATE(2423), - [sym_literal] = STATE(3006), - [sym_character_literal] = STATE(3011), - [sym_string_literal] = STATE(3011), - [sym_raw_string_literal] = STATE(3011), - [sym_boolean_literal] = STATE(3011), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3006), - [sym_preproc_if_in_attribute_list] = STATE(5576), - [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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3440), + [1781] = { + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2603), + [sym__name] = STATE(5862), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2193), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(3867), + [sym_non_lvalue_expression] = STATE(3220), + [sym_lvalue_expression] = STATE(2955), + [sym__expression_statement_expression] = STATE(3236), + [sym_assignment_expression] = STATE(3221), + [sym_binary_expression] = STATE(3236), + [sym_postfix_unary_expression] = STATE(3221), + [sym_prefix_unary_expression] = STATE(3221), + [sym__pointer_indirection_expression] = STATE(2602), + [sym_query_expression] = STATE(3236), + [sym_from_clause] = STATE(6143), + [sym_conditional_expression] = STATE(3236), + [sym_conditional_access_expression] = STATE(3236), + [sym_as_expression] = STATE(3236), + [sym_is_expression] = STATE(3236), + [sym_is_pattern_expression] = STATE(3236), + [sym_cast_expression] = STATE(3236), + [sym_checked_expression] = STATE(3236), + [sym_invocation_expression] = STATE(3221), + [sym_switch_expression] = STATE(3236), + [sym_await_expression] = STATE(3221), + [sym_throw_expression] = STATE(3236), + [sym_element_access_expression] = STATE(2602), + [sym_interpolated_string_expression] = STATE(3236), + [sym_member_access_expression] = STATE(2602), + [sym_object_creation_expression] = STATE(3221), + [sym_parenthesized_expression] = STATE(3221), + [sym__parenthesized_lvalue_expression] = STATE(2602), + [sym_lambda_expression] = STATE(3236), + [sym__lambda_expression_init] = STATE(7668), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3236), + [sym_anonymous_method_expression] = STATE(3236), + [sym_anonymous_object_creation_expression] = STATE(3236), + [sym_implicit_array_creation_expression] = STATE(3236), + [sym_implicit_object_creation_expression] = STATE(3236), + [sym_implicit_stackalloc_expression] = STATE(3236), + [sym_initializer_expression] = STATE(3236), + [sym_default_expression] = STATE(3236), + [sym_with_expression] = STATE(3236), + [sym_sizeof_expression] = STATE(3236), + [sym_typeof_expression] = STATE(3236), + [sym_makeref_expression] = STATE(3236), + [sym_ref_expression] = STATE(3236), + [sym_reftype_expression] = STATE(3236), + [sym_refvalue_expression] = STATE(3236), + [sym_stackalloc_expression] = STATE(3236), + [sym_range_expression] = STATE(3236), + [sym_tuple_expression] = STATE(2602), + [sym_literal] = STATE(3236), + [sym_character_literal] = STATE(3272), + [sym_string_literal] = STATE(3272), + [sym_raw_string_literal] = STATE(3272), + [sym_boolean_literal] = STATE(3272), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3236), + [sym_preproc_if_in_attribute_list] = STATE(5583), + [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(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3379), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1241), - [anon_sym_LPAREN] = ACTIONS(2113), - [anon_sym_ref] = ACTIONS(2115), - [anon_sym_LBRACE] = ACTIONS(1247), - [anon_sym_delegate] = ACTIONS(1249), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1149), + [anon_sym_LPAREN] = ACTIONS(1151), + [anon_sym_ref] = ACTIONS(1153), + [anon_sym_LBRACE] = ACTIONS(1155), + [anon_sym_delegate] = ACTIONS(1157), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1251), + [anon_sym_new] = ACTIONS(1159), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1253), - [anon_sym_BANG] = ACTIONS(2119), - [anon_sym_TILDE] = ACTIONS(2119), - [anon_sym_PLUS_PLUS] = ACTIONS(2119), - [anon_sym_DASH_DASH] = ACTIONS(2119), - [anon_sym_true] = ACTIONS(1259), - [anon_sym_false] = ACTIONS(1259), - [anon_sym_PLUS] = ACTIONS(2117), - [anon_sym_DASH] = ACTIONS(2117), - [anon_sym_STAR] = ACTIONS(1261), - [anon_sym_CARET] = ACTIONS(2119), - [anon_sym_AMP] = ACTIONS(2119), - [anon_sym_this] = ACTIONS(1263), + [anon_sym_checked] = ACTIONS(1163), + [anon_sym_BANG] = ACTIONS(1167), + [anon_sym_TILDE] = ACTIONS(1167), + [anon_sym_PLUS_PLUS] = ACTIONS(1167), + [anon_sym_DASH_DASH] = ACTIONS(1167), + [anon_sym_true] = ACTIONS(1169), + [anon_sym_false] = ACTIONS(1169), + [anon_sym_PLUS] = ACTIONS(1165), + [anon_sym_DASH] = ACTIONS(1165), + [anon_sym_STAR] = ACTIONS(1171), + [anon_sym_CARET] = ACTIONS(1167), + [anon_sym_AMP] = ACTIONS(1167), + [anon_sym_this] = ACTIONS(1173), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1265), + [anon_sym_base] = ACTIONS(1175), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1267), - [anon_sym_unchecked] = ACTIONS(1253), + [sym_predefined_type] = ACTIONS(1177), + [anon_sym_unchecked] = ACTIONS(1163), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1269), - [anon_sym_throw] = ACTIONS(2121), + [anon_sym_default] = ACTIONS(1179), + [anon_sym_throw] = ACTIONS(1181), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2123), - [anon_sym_DOT_DOT] = ACTIONS(2125), + [anon_sym_await] = ACTIONS(1183), + [anon_sym_DOT_DOT] = ACTIONS(1185), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -338676,19 +342787,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1277), - [anon_sym_sizeof] = ACTIONS(1279), - [anon_sym_typeof] = ACTIONS(1281), - [anon_sym___makeref] = ACTIONS(1283), - [anon_sym___reftype] = ACTIONS(1285), - [anon_sym___refvalue] = ACTIONS(1287), - [sym_null_literal] = ACTIONS(1289), - [anon_sym_SQUOTE] = ACTIONS(1291), - [sym_integer_literal] = ACTIONS(1289), - [sym_real_literal] = ACTIONS(1293), - [anon_sym_DQUOTE] = ACTIONS(1295), - [sym_verbatim_string_literal] = ACTIONS(1293), - [aux_sym_preproc_if_token1] = ACTIONS(2127), + [anon_sym_stackalloc] = ACTIONS(1187), + [anon_sym_sizeof] = ACTIONS(1189), + [anon_sym_typeof] = ACTIONS(1191), + [anon_sym___makeref] = ACTIONS(1193), + [anon_sym___reftype] = ACTIONS(1195), + [anon_sym___refvalue] = ACTIONS(1197), + [sym_null_literal] = ACTIONS(1199), + [anon_sym_SQUOTE] = ACTIONS(1201), + [sym_integer_literal] = ACTIONS(1199), + [sym_real_literal] = ACTIONS(1203), + [anon_sym_DQUOTE] = ACTIONS(1205), + [sym_verbatim_string_literal] = ACTIONS(1203), + [aux_sym_preproc_if_token1] = ACTIONS(1207), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -338699,140 +342810,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(1299), - [sym_interpolation_verbatim_start] = ACTIONS(1301), - [sym_interpolation_raw_start] = ACTIONS(1303), - [sym_raw_string_start] = ACTIONS(1305), + [sym_interpolation_regular_start] = ACTIONS(1209), + [sym_interpolation_verbatim_start] = ACTIONS(1211), + [sym_interpolation_raw_start] = ACTIONS(1213), + [sym_raw_string_start] = ACTIONS(1215), }, - [1757] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2420), - [sym__name] = STATE(5887), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2197), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(2908), - [sym_non_lvalue_expression] = STATE(3066), - [sym_lvalue_expression] = STATE(3637), - [sym__expression_statement_expression] = STATE(3006), - [sym_assignment_expression] = STATE(3020), - [sym_binary_expression] = STATE(3006), - [sym_postfix_unary_expression] = STATE(3020), - [sym_prefix_unary_expression] = STATE(3020), - [sym__pointer_indirection_expression] = STATE(2423), - [sym_query_expression] = STATE(3006), - [sym_from_clause] = STATE(6148), - [sym_conditional_expression] = STATE(3006), - [sym_conditional_access_expression] = STATE(3006), - [sym_as_expression] = STATE(3006), - [sym_is_expression] = STATE(3006), - [sym_is_pattern_expression] = STATE(3006), - [sym_cast_expression] = STATE(3006), - [sym_checked_expression] = STATE(3006), - [sym_invocation_expression] = STATE(3020), - [sym_switch_expression] = STATE(3006), - [sym_await_expression] = STATE(3020), - [sym_throw_expression] = STATE(3006), - [sym_element_access_expression] = STATE(2423), - [sym_interpolated_string_expression] = STATE(3006), - [sym_member_access_expression] = STATE(2423), - [sym_object_creation_expression] = STATE(3020), - [sym_parenthesized_expression] = STATE(3020), - [sym__parenthesized_lvalue_expression] = STATE(2423), - [sym_lambda_expression] = STATE(3006), - [sym__lambda_expression_init] = STATE(7507), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3006), - [sym_anonymous_method_expression] = STATE(3006), - [sym_anonymous_object_creation_expression] = STATE(3006), - [sym_implicit_array_creation_expression] = STATE(3006), - [sym_implicit_object_creation_expression] = STATE(3006), - [sym_implicit_stackalloc_expression] = STATE(3006), - [sym_initializer_expression] = STATE(3006), - [sym_default_expression] = STATE(3006), - [sym_with_expression] = STATE(3006), - [sym_sizeof_expression] = STATE(3006), - [sym_typeof_expression] = STATE(3006), - [sym_makeref_expression] = STATE(3006), - [sym_ref_expression] = STATE(3006), - [sym_reftype_expression] = STATE(3006), - [sym_refvalue_expression] = STATE(3006), - [sym_stackalloc_expression] = STATE(3006), - [sym_range_expression] = STATE(3006), - [sym_tuple_expression] = STATE(2423), - [sym_literal] = STATE(3006), - [sym_character_literal] = STATE(3011), - [sym_string_literal] = STATE(3011), - [sym_raw_string_literal] = STATE(3011), - [sym_boolean_literal] = STATE(3011), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3006), - [sym_preproc_if_in_attribute_list] = STATE(5576), - [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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3440), + [1782] = { + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2603), + [sym__name] = STATE(5862), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2193), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(3868), + [sym_non_lvalue_expression] = STATE(3220), + [sym_lvalue_expression] = STATE(2955), + [sym__expression_statement_expression] = STATE(3236), + [sym_assignment_expression] = STATE(3221), + [sym_binary_expression] = STATE(3236), + [sym_postfix_unary_expression] = STATE(3221), + [sym_prefix_unary_expression] = STATE(3221), + [sym__pointer_indirection_expression] = STATE(2602), + [sym_query_expression] = STATE(3236), + [sym_from_clause] = STATE(6143), + [sym_conditional_expression] = STATE(3236), + [sym_conditional_access_expression] = STATE(3236), + [sym_as_expression] = STATE(3236), + [sym_is_expression] = STATE(3236), + [sym_is_pattern_expression] = STATE(3236), + [sym_cast_expression] = STATE(3236), + [sym_checked_expression] = STATE(3236), + [sym_invocation_expression] = STATE(3221), + [sym_switch_expression] = STATE(3236), + [sym_await_expression] = STATE(3221), + [sym_throw_expression] = STATE(3236), + [sym_element_access_expression] = STATE(2602), + [sym_interpolated_string_expression] = STATE(3236), + [sym_member_access_expression] = STATE(2602), + [sym_object_creation_expression] = STATE(3221), + [sym_parenthesized_expression] = STATE(3221), + [sym__parenthesized_lvalue_expression] = STATE(2602), + [sym_lambda_expression] = STATE(3236), + [sym__lambda_expression_init] = STATE(7668), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3236), + [sym_anonymous_method_expression] = STATE(3236), + [sym_anonymous_object_creation_expression] = STATE(3236), + [sym_implicit_array_creation_expression] = STATE(3236), + [sym_implicit_object_creation_expression] = STATE(3236), + [sym_implicit_stackalloc_expression] = STATE(3236), + [sym_initializer_expression] = STATE(3236), + [sym_default_expression] = STATE(3236), + [sym_with_expression] = STATE(3236), + [sym_sizeof_expression] = STATE(3236), + [sym_typeof_expression] = STATE(3236), + [sym_makeref_expression] = STATE(3236), + [sym_ref_expression] = STATE(3236), + [sym_reftype_expression] = STATE(3236), + [sym_refvalue_expression] = STATE(3236), + [sym_stackalloc_expression] = STATE(3236), + [sym_range_expression] = STATE(3236), + [sym_tuple_expression] = STATE(2602), + [sym_literal] = STATE(3236), + [sym_character_literal] = STATE(3272), + [sym_string_literal] = STATE(3272), + [sym_raw_string_literal] = STATE(3272), + [sym_boolean_literal] = STATE(3272), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3236), + [sym_preproc_if_in_attribute_list] = STATE(5583), + [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(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3379), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1241), - [anon_sym_LPAREN] = ACTIONS(2113), - [anon_sym_ref] = ACTIONS(2115), - [anon_sym_LBRACE] = ACTIONS(1247), - [anon_sym_delegate] = ACTIONS(1249), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1149), + [anon_sym_LPAREN] = ACTIONS(1151), + [anon_sym_ref] = ACTIONS(1153), + [anon_sym_LBRACE] = ACTIONS(1155), + [anon_sym_delegate] = ACTIONS(1157), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1251), + [anon_sym_new] = ACTIONS(1159), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1253), - [anon_sym_BANG] = ACTIONS(2119), - [anon_sym_TILDE] = ACTIONS(2119), - [anon_sym_PLUS_PLUS] = ACTIONS(2119), - [anon_sym_DASH_DASH] = ACTIONS(2119), - [anon_sym_true] = ACTIONS(1259), - [anon_sym_false] = ACTIONS(1259), - [anon_sym_PLUS] = ACTIONS(2117), - [anon_sym_DASH] = ACTIONS(2117), - [anon_sym_STAR] = ACTIONS(1261), - [anon_sym_CARET] = ACTIONS(2119), - [anon_sym_AMP] = ACTIONS(2119), - [anon_sym_this] = ACTIONS(1263), + [anon_sym_checked] = ACTIONS(1163), + [anon_sym_BANG] = ACTIONS(1167), + [anon_sym_TILDE] = ACTIONS(1167), + [anon_sym_PLUS_PLUS] = ACTIONS(1167), + [anon_sym_DASH_DASH] = ACTIONS(1167), + [anon_sym_true] = ACTIONS(1169), + [anon_sym_false] = ACTIONS(1169), + [anon_sym_PLUS] = ACTIONS(1165), + [anon_sym_DASH] = ACTIONS(1165), + [anon_sym_STAR] = ACTIONS(1171), + [anon_sym_CARET] = ACTIONS(1167), + [anon_sym_AMP] = ACTIONS(1167), + [anon_sym_this] = ACTIONS(1173), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1265), + [anon_sym_base] = ACTIONS(1175), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1267), - [anon_sym_unchecked] = ACTIONS(1253), + [sym_predefined_type] = ACTIONS(1177), + [anon_sym_unchecked] = ACTIONS(1163), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1269), - [anon_sym_throw] = ACTIONS(2121), + [anon_sym_default] = ACTIONS(1179), + [anon_sym_throw] = ACTIONS(1181), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2123), - [anon_sym_DOT_DOT] = ACTIONS(2125), + [anon_sym_await] = ACTIONS(1183), + [anon_sym_DOT_DOT] = ACTIONS(1185), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -338845,19 +342956,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1277), - [anon_sym_sizeof] = ACTIONS(1279), - [anon_sym_typeof] = ACTIONS(1281), - [anon_sym___makeref] = ACTIONS(1283), - [anon_sym___reftype] = ACTIONS(1285), - [anon_sym___refvalue] = ACTIONS(1287), - [sym_null_literal] = ACTIONS(1289), - [anon_sym_SQUOTE] = ACTIONS(1291), - [sym_integer_literal] = ACTIONS(1289), - [sym_real_literal] = ACTIONS(1293), - [anon_sym_DQUOTE] = ACTIONS(1295), - [sym_verbatim_string_literal] = ACTIONS(1293), - [aux_sym_preproc_if_token1] = ACTIONS(2127), + [anon_sym_stackalloc] = ACTIONS(1187), + [anon_sym_sizeof] = ACTIONS(1189), + [anon_sym_typeof] = ACTIONS(1191), + [anon_sym___makeref] = ACTIONS(1193), + [anon_sym___reftype] = ACTIONS(1195), + [anon_sym___refvalue] = ACTIONS(1197), + [sym_null_literal] = ACTIONS(1199), + [anon_sym_SQUOTE] = ACTIONS(1201), + [sym_integer_literal] = ACTIONS(1199), + [sym_real_literal] = ACTIONS(1203), + [anon_sym_DQUOTE] = ACTIONS(1205), + [sym_verbatim_string_literal] = ACTIONS(1203), + [aux_sym_preproc_if_token1] = ACTIONS(1207), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -338868,140 +342979,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(1299), - [sym_interpolation_verbatim_start] = ACTIONS(1301), - [sym_interpolation_raw_start] = ACTIONS(1303), - [sym_raw_string_start] = ACTIONS(1305), + [sym_interpolation_regular_start] = ACTIONS(1209), + [sym_interpolation_verbatim_start] = ACTIONS(1211), + [sym_interpolation_raw_start] = ACTIONS(1213), + [sym_raw_string_start] = ACTIONS(1215), }, - [1758] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(5910), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2247), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(4557), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3379), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3080), - [sym_postfix_unary_expression] = STATE(3111), - [sym_prefix_unary_expression] = STATE(3111), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6154), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3080), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3111), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3080), - [sym_member_access_expression] = STATE(2484), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3111), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7575), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(3080), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3080), - [sym_typeof_expression] = STATE(3080), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2484), - [sym_literal] = STATE(3080), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), - [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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [1783] = { + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2603), + [sym__name] = STATE(5862), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2193), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(3870), + [sym_non_lvalue_expression] = STATE(3220), + [sym_lvalue_expression] = STATE(2955), + [sym__expression_statement_expression] = STATE(3236), + [sym_assignment_expression] = STATE(3221), + [sym_binary_expression] = STATE(3236), + [sym_postfix_unary_expression] = STATE(3221), + [sym_prefix_unary_expression] = STATE(3221), + [sym__pointer_indirection_expression] = STATE(2602), + [sym_query_expression] = STATE(3236), + [sym_from_clause] = STATE(6143), + [sym_conditional_expression] = STATE(3236), + [sym_conditional_access_expression] = STATE(3236), + [sym_as_expression] = STATE(3236), + [sym_is_expression] = STATE(3236), + [sym_is_pattern_expression] = STATE(3236), + [sym_cast_expression] = STATE(3236), + [sym_checked_expression] = STATE(3236), + [sym_invocation_expression] = STATE(3221), + [sym_switch_expression] = STATE(3236), + [sym_await_expression] = STATE(3221), + [sym_throw_expression] = STATE(3236), + [sym_element_access_expression] = STATE(2602), + [sym_interpolated_string_expression] = STATE(3236), + [sym_member_access_expression] = STATE(2602), + [sym_object_creation_expression] = STATE(3221), + [sym_parenthesized_expression] = STATE(3221), + [sym__parenthesized_lvalue_expression] = STATE(2602), + [sym_lambda_expression] = STATE(3236), + [sym__lambda_expression_init] = STATE(7668), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3236), + [sym_anonymous_method_expression] = STATE(3236), + [sym_anonymous_object_creation_expression] = STATE(3236), + [sym_implicit_array_creation_expression] = STATE(3236), + [sym_implicit_object_creation_expression] = STATE(3236), + [sym_implicit_stackalloc_expression] = STATE(3236), + [sym_initializer_expression] = STATE(3236), + [sym_default_expression] = STATE(3236), + [sym_with_expression] = STATE(3236), + [sym_sizeof_expression] = STATE(3236), + [sym_typeof_expression] = STATE(3236), + [sym_makeref_expression] = STATE(3236), + [sym_ref_expression] = STATE(3236), + [sym_reftype_expression] = STATE(3236), + [sym_refvalue_expression] = STATE(3236), + [sym_stackalloc_expression] = STATE(3236), + [sym_range_expression] = STATE(3236), + [sym_tuple_expression] = STATE(2602), + [sym_literal] = STATE(3236), + [sym_character_literal] = STATE(3272), + [sym_string_literal] = STATE(3272), + [sym_raw_string_literal] = STATE(3272), + [sym_boolean_literal] = STATE(3272), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3236), + [sym_preproc_if_in_attribute_list] = STATE(5583), + [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(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3379), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1481), - [anon_sym_LPAREN] = ACTIONS(895), - [anon_sym_ref] = ACTIONS(897), - [anon_sym_LBRACE] = ACTIONS(1487), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1149), + [anon_sym_LPAREN] = ACTIONS(1151), + [anon_sym_ref] = ACTIONS(1153), + [anon_sym_LBRACE] = ACTIONS(1155), + [anon_sym_delegate] = ACTIONS(1157), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1061), + [anon_sym_new] = ACTIONS(1159), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1067), - [anon_sym_BANG] = ACTIONS(1495), - [anon_sym_TILDE] = ACTIONS(1495), - [anon_sym_PLUS_PLUS] = ACTIONS(1495), - [anon_sym_DASH_DASH] = ACTIONS(1495), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1493), - [anon_sym_DASH] = ACTIONS(1493), - [anon_sym_STAR] = ACTIONS(905), - [anon_sym_CARET] = ACTIONS(1495), - [anon_sym_AMP] = ACTIONS(1495), - [anon_sym_this] = ACTIONS(83), + [anon_sym_checked] = ACTIONS(1163), + [anon_sym_BANG] = ACTIONS(1167), + [anon_sym_TILDE] = ACTIONS(1167), + [anon_sym_PLUS_PLUS] = ACTIONS(1167), + [anon_sym_DASH_DASH] = ACTIONS(1167), + [anon_sym_true] = ACTIONS(1169), + [anon_sym_false] = ACTIONS(1169), + [anon_sym_PLUS] = ACTIONS(1165), + [anon_sym_DASH] = ACTIONS(1165), + [anon_sym_STAR] = ACTIONS(1171), + [anon_sym_CARET] = ACTIONS(1167), + [anon_sym_AMP] = ACTIONS(1167), + [anon_sym_this] = ACTIONS(1173), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), + [anon_sym_base] = ACTIONS(1175), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1067), + [sym_predefined_type] = ACTIONS(1177), + [anon_sym_unchecked] = ACTIONS(1163), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1079), + [anon_sym_default] = ACTIONS(1179), + [anon_sym_throw] = ACTIONS(1181), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1081), - [anon_sym_DOT_DOT] = ACTIONS(911), + [anon_sym_await] = ACTIONS(1183), + [anon_sym_DOT_DOT] = ACTIONS(1185), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -339014,19 +343125,19 @@ static const uint16_t ts_parse_table[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(1089), + [anon_sym_stackalloc] = ACTIONS(1187), + [anon_sym_sizeof] = ACTIONS(1189), + [anon_sym_typeof] = ACTIONS(1191), + [anon_sym___makeref] = ACTIONS(1193), + [anon_sym___reftype] = ACTIONS(1195), + [anon_sym___refvalue] = ACTIONS(1197), + [sym_null_literal] = ACTIONS(1199), + [anon_sym_SQUOTE] = ACTIONS(1201), + [sym_integer_literal] = ACTIONS(1199), + [sym_real_literal] = ACTIONS(1203), + [anon_sym_DQUOTE] = ACTIONS(1205), + [sym_verbatim_string_literal] = ACTIONS(1203), + [aux_sym_preproc_if_token1] = ACTIONS(1207), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -339037,140 +343148,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(1209), + [sym_interpolation_verbatim_start] = ACTIONS(1211), + [sym_interpolation_raw_start] = ACTIONS(1213), + [sym_raw_string_start] = ACTIONS(1215), }, - [1759] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2420), - [sym__name] = STATE(5887), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2197), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(5166), - [sym_non_lvalue_expression] = STATE(3066), - [sym_lvalue_expression] = STATE(3637), - [sym__expression_statement_expression] = STATE(3006), - [sym_assignment_expression] = STATE(3020), - [sym_binary_expression] = STATE(3006), - [sym_postfix_unary_expression] = STATE(3020), - [sym_prefix_unary_expression] = STATE(3020), - [sym__pointer_indirection_expression] = STATE(2423), - [sym_query_expression] = STATE(3006), - [sym_from_clause] = STATE(6148), - [sym_conditional_expression] = STATE(3006), - [sym_conditional_access_expression] = STATE(3006), - [sym_as_expression] = STATE(3006), - [sym_is_expression] = STATE(3006), - [sym_is_pattern_expression] = STATE(3006), - [sym_cast_expression] = STATE(3006), - [sym_checked_expression] = STATE(3006), - [sym_invocation_expression] = STATE(3020), - [sym_switch_expression] = STATE(3006), - [sym_await_expression] = STATE(3020), - [sym_throw_expression] = STATE(3006), - [sym_element_access_expression] = STATE(2423), - [sym_interpolated_string_expression] = STATE(3006), - [sym_member_access_expression] = STATE(2423), - [sym_object_creation_expression] = STATE(3020), - [sym_parenthesized_expression] = STATE(3020), - [sym__parenthesized_lvalue_expression] = STATE(2423), - [sym_lambda_expression] = STATE(3006), - [sym__lambda_expression_init] = STATE(7507), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3006), - [sym_anonymous_method_expression] = STATE(3006), - [sym_anonymous_object_creation_expression] = STATE(3006), - [sym_implicit_array_creation_expression] = STATE(3006), - [sym_implicit_object_creation_expression] = STATE(3006), - [sym_implicit_stackalloc_expression] = STATE(3006), - [sym_initializer_expression] = STATE(3006), - [sym_default_expression] = STATE(3006), - [sym_with_expression] = STATE(3006), - [sym_sizeof_expression] = STATE(3006), - [sym_typeof_expression] = STATE(3006), - [sym_makeref_expression] = STATE(3006), - [sym_ref_expression] = STATE(3006), - [sym_reftype_expression] = STATE(3006), - [sym_refvalue_expression] = STATE(3006), - [sym_stackalloc_expression] = STATE(3006), - [sym_range_expression] = STATE(3006), - [sym_tuple_expression] = STATE(2423), - [sym_literal] = STATE(3006), - [sym_character_literal] = STATE(3011), - [sym_string_literal] = STATE(3011), - [sym_raw_string_literal] = STATE(3011), - [sym_boolean_literal] = STATE(3011), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3006), - [sym_preproc_if_in_attribute_list] = STATE(5576), - [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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3440), + [1784] = { + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2603), + [sym__name] = STATE(5862), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2193), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(3871), + [sym_non_lvalue_expression] = STATE(3220), + [sym_lvalue_expression] = STATE(2955), + [sym__expression_statement_expression] = STATE(3236), + [sym_assignment_expression] = STATE(3221), + [sym_binary_expression] = STATE(3236), + [sym_postfix_unary_expression] = STATE(3221), + [sym_prefix_unary_expression] = STATE(3221), + [sym__pointer_indirection_expression] = STATE(2602), + [sym_query_expression] = STATE(3236), + [sym_from_clause] = STATE(6143), + [sym_conditional_expression] = STATE(3236), + [sym_conditional_access_expression] = STATE(3236), + [sym_as_expression] = STATE(3236), + [sym_is_expression] = STATE(3236), + [sym_is_pattern_expression] = STATE(3236), + [sym_cast_expression] = STATE(3236), + [sym_checked_expression] = STATE(3236), + [sym_invocation_expression] = STATE(3221), + [sym_switch_expression] = STATE(3236), + [sym_await_expression] = STATE(3221), + [sym_throw_expression] = STATE(3236), + [sym_element_access_expression] = STATE(2602), + [sym_interpolated_string_expression] = STATE(3236), + [sym_member_access_expression] = STATE(2602), + [sym_object_creation_expression] = STATE(3221), + [sym_parenthesized_expression] = STATE(3221), + [sym__parenthesized_lvalue_expression] = STATE(2602), + [sym_lambda_expression] = STATE(3236), + [sym__lambda_expression_init] = STATE(7668), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3236), + [sym_anonymous_method_expression] = STATE(3236), + [sym_anonymous_object_creation_expression] = STATE(3236), + [sym_implicit_array_creation_expression] = STATE(3236), + [sym_implicit_object_creation_expression] = STATE(3236), + [sym_implicit_stackalloc_expression] = STATE(3236), + [sym_initializer_expression] = STATE(3236), + [sym_default_expression] = STATE(3236), + [sym_with_expression] = STATE(3236), + [sym_sizeof_expression] = STATE(3236), + [sym_typeof_expression] = STATE(3236), + [sym_makeref_expression] = STATE(3236), + [sym_ref_expression] = STATE(3236), + [sym_reftype_expression] = STATE(3236), + [sym_refvalue_expression] = STATE(3236), + [sym_stackalloc_expression] = STATE(3236), + [sym_range_expression] = STATE(3236), + [sym_tuple_expression] = STATE(2602), + [sym_literal] = STATE(3236), + [sym_character_literal] = STATE(3272), + [sym_string_literal] = STATE(3272), + [sym_raw_string_literal] = STATE(3272), + [sym_boolean_literal] = STATE(3272), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3236), + [sym_preproc_if_in_attribute_list] = STATE(5583), + [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(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3379), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1241), - [anon_sym_LPAREN] = ACTIONS(2113), - [anon_sym_ref] = ACTIONS(2115), - [anon_sym_LBRACE] = ACTIONS(1247), - [anon_sym_delegate] = ACTIONS(1249), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1149), + [anon_sym_LPAREN] = ACTIONS(1151), + [anon_sym_ref] = ACTIONS(1153), + [anon_sym_LBRACE] = ACTIONS(1155), + [anon_sym_delegate] = ACTIONS(1157), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1251), + [anon_sym_new] = ACTIONS(1159), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1253), - [anon_sym_BANG] = ACTIONS(2119), - [anon_sym_TILDE] = ACTIONS(2119), - [anon_sym_PLUS_PLUS] = ACTIONS(2119), - [anon_sym_DASH_DASH] = ACTIONS(2119), - [anon_sym_true] = ACTIONS(1259), - [anon_sym_false] = ACTIONS(1259), - [anon_sym_PLUS] = ACTIONS(2117), - [anon_sym_DASH] = ACTIONS(2117), - [anon_sym_STAR] = ACTIONS(1261), - [anon_sym_CARET] = ACTIONS(2119), - [anon_sym_AMP] = ACTIONS(2119), - [anon_sym_this] = ACTIONS(1263), + [anon_sym_checked] = ACTIONS(1163), + [anon_sym_BANG] = ACTIONS(1167), + [anon_sym_TILDE] = ACTIONS(1167), + [anon_sym_PLUS_PLUS] = ACTIONS(1167), + [anon_sym_DASH_DASH] = ACTIONS(1167), + [anon_sym_true] = ACTIONS(1169), + [anon_sym_false] = ACTIONS(1169), + [anon_sym_PLUS] = ACTIONS(1165), + [anon_sym_DASH] = ACTIONS(1165), + [anon_sym_STAR] = ACTIONS(1171), + [anon_sym_CARET] = ACTIONS(1167), + [anon_sym_AMP] = ACTIONS(1167), + [anon_sym_this] = ACTIONS(1173), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1265), + [anon_sym_base] = ACTIONS(1175), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1267), - [anon_sym_unchecked] = ACTIONS(1253), + [sym_predefined_type] = ACTIONS(1177), + [anon_sym_unchecked] = ACTIONS(1163), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1269), - [anon_sym_throw] = ACTIONS(2121), + [anon_sym_default] = ACTIONS(1179), + [anon_sym_throw] = ACTIONS(1181), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2123), - [anon_sym_DOT_DOT] = ACTIONS(2125), + [anon_sym_await] = ACTIONS(1183), + [anon_sym_DOT_DOT] = ACTIONS(1185), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -339183,19 +343294,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1277), - [anon_sym_sizeof] = ACTIONS(1279), - [anon_sym_typeof] = ACTIONS(1281), - [anon_sym___makeref] = ACTIONS(1283), - [anon_sym___reftype] = ACTIONS(1285), - [anon_sym___refvalue] = ACTIONS(1287), - [sym_null_literal] = ACTIONS(1289), - [anon_sym_SQUOTE] = ACTIONS(1291), - [sym_integer_literal] = ACTIONS(1289), - [sym_real_literal] = ACTIONS(1293), - [anon_sym_DQUOTE] = ACTIONS(1295), - [sym_verbatim_string_literal] = ACTIONS(1293), - [aux_sym_preproc_if_token1] = ACTIONS(2127), + [anon_sym_stackalloc] = ACTIONS(1187), + [anon_sym_sizeof] = ACTIONS(1189), + [anon_sym_typeof] = ACTIONS(1191), + [anon_sym___makeref] = ACTIONS(1193), + [anon_sym___reftype] = ACTIONS(1195), + [anon_sym___refvalue] = ACTIONS(1197), + [sym_null_literal] = ACTIONS(1199), + [anon_sym_SQUOTE] = ACTIONS(1201), + [sym_integer_literal] = ACTIONS(1199), + [sym_real_literal] = ACTIONS(1203), + [anon_sym_DQUOTE] = ACTIONS(1205), + [sym_verbatim_string_literal] = ACTIONS(1203), + [aux_sym_preproc_if_token1] = ACTIONS(1207), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -339206,140 +343317,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(1299), - [sym_interpolation_verbatim_start] = ACTIONS(1301), - [sym_interpolation_raw_start] = ACTIONS(1303), - [sym_raw_string_start] = ACTIONS(1305), + [sym_interpolation_regular_start] = ACTIONS(1209), + [sym_interpolation_verbatim_start] = ACTIONS(1211), + [sym_interpolation_raw_start] = ACTIONS(1213), + [sym_raw_string_start] = ACTIONS(1215), }, - [1760] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2420), - [sym__name] = STATE(5875), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2369), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(4159), - [sym_non_lvalue_expression] = STATE(3066), - [sym_lvalue_expression] = STATE(3125), - [sym__expression_statement_expression] = STATE(3006), - [sym_assignment_expression] = STATE(3020), - [sym_binary_expression] = STATE(3006), - [sym_postfix_unary_expression] = STATE(3020), - [sym_prefix_unary_expression] = STATE(3020), - [sym__pointer_indirection_expression] = STATE(2423), - [sym_query_expression] = STATE(3006), - [sym_from_clause] = STATE(6145), - [sym_conditional_expression] = STATE(3006), - [sym_conditional_access_expression] = STATE(3006), - [sym_as_expression] = STATE(3006), - [sym_is_expression] = STATE(3006), - [sym_is_pattern_expression] = STATE(3006), - [sym_cast_expression] = STATE(3006), - [sym_checked_expression] = STATE(3006), - [sym_invocation_expression] = STATE(3020), - [sym_switch_expression] = STATE(3006), - [sym_await_expression] = STATE(3020), - [sym_throw_expression] = STATE(3006), - [sym_element_access_expression] = STATE(2423), - [sym_interpolated_string_expression] = STATE(3006), - [sym_member_access_expression] = STATE(2423), - [sym_object_creation_expression] = STATE(3020), - [sym_parenthesized_expression] = STATE(3020), - [sym__parenthesized_lvalue_expression] = STATE(2423), - [sym_lambda_expression] = STATE(3006), - [sym__lambda_expression_init] = STATE(7538), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3006), - [sym_anonymous_method_expression] = STATE(3006), - [sym_anonymous_object_creation_expression] = STATE(3006), - [sym_implicit_array_creation_expression] = STATE(3006), - [sym_implicit_object_creation_expression] = STATE(3006), - [sym_implicit_stackalloc_expression] = STATE(3006), - [sym_initializer_expression] = STATE(3006), - [sym_default_expression] = STATE(3006), - [sym_with_expression] = STATE(3006), - [sym_sizeof_expression] = STATE(3006), - [sym_typeof_expression] = STATE(3006), - [sym_makeref_expression] = STATE(3006), - [sym_ref_expression] = STATE(3006), - [sym_reftype_expression] = STATE(3006), - [sym_refvalue_expression] = STATE(3006), - [sym_stackalloc_expression] = STATE(3006), - [sym_range_expression] = STATE(3006), - [sym_tuple_expression] = STATE(2423), - [sym_literal] = STATE(3006), - [sym_character_literal] = STATE(3011), - [sym_string_literal] = STATE(3011), - [sym_raw_string_literal] = STATE(3011), - [sym_boolean_literal] = STATE(3011), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3006), - [sym_preproc_if_in_attribute_list] = STATE(5576), - [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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3440), + [1785] = { + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2603), + [sym__name] = STATE(5862), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2193), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(3878), + [sym_non_lvalue_expression] = STATE(3220), + [sym_lvalue_expression] = STATE(2955), + [sym__expression_statement_expression] = STATE(3236), + [sym_assignment_expression] = STATE(3221), + [sym_binary_expression] = STATE(3236), + [sym_postfix_unary_expression] = STATE(3221), + [sym_prefix_unary_expression] = STATE(3221), + [sym__pointer_indirection_expression] = STATE(2602), + [sym_query_expression] = STATE(3236), + [sym_from_clause] = STATE(6143), + [sym_conditional_expression] = STATE(3236), + [sym_conditional_access_expression] = STATE(3236), + [sym_as_expression] = STATE(3236), + [sym_is_expression] = STATE(3236), + [sym_is_pattern_expression] = STATE(3236), + [sym_cast_expression] = STATE(3236), + [sym_checked_expression] = STATE(3236), + [sym_invocation_expression] = STATE(3221), + [sym_switch_expression] = STATE(3236), + [sym_await_expression] = STATE(3221), + [sym_throw_expression] = STATE(3236), + [sym_element_access_expression] = STATE(2602), + [sym_interpolated_string_expression] = STATE(3236), + [sym_member_access_expression] = STATE(2602), + [sym_object_creation_expression] = STATE(3221), + [sym_parenthesized_expression] = STATE(3221), + [sym__parenthesized_lvalue_expression] = STATE(2602), + [sym_lambda_expression] = STATE(3236), + [sym__lambda_expression_init] = STATE(7668), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3236), + [sym_anonymous_method_expression] = STATE(3236), + [sym_anonymous_object_creation_expression] = STATE(3236), + [sym_implicit_array_creation_expression] = STATE(3236), + [sym_implicit_object_creation_expression] = STATE(3236), + [sym_implicit_stackalloc_expression] = STATE(3236), + [sym_initializer_expression] = STATE(3236), + [sym_default_expression] = STATE(3236), + [sym_with_expression] = STATE(3236), + [sym_sizeof_expression] = STATE(3236), + [sym_typeof_expression] = STATE(3236), + [sym_makeref_expression] = STATE(3236), + [sym_ref_expression] = STATE(3236), + [sym_reftype_expression] = STATE(3236), + [sym_refvalue_expression] = STATE(3236), + [sym_stackalloc_expression] = STATE(3236), + [sym_range_expression] = STATE(3236), + [sym_tuple_expression] = STATE(2602), + [sym_literal] = STATE(3236), + [sym_character_literal] = STATE(3272), + [sym_string_literal] = STATE(3272), + [sym_raw_string_literal] = STATE(3272), + [sym_boolean_literal] = STATE(3272), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3236), + [sym_preproc_if_in_attribute_list] = STATE(5583), + [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(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3379), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1241), - [anon_sym_LPAREN] = ACTIONS(2195), - [anon_sym_ref] = ACTIONS(2197), - [anon_sym_LBRACE] = ACTIONS(1247), - [anon_sym_delegate] = ACTIONS(1249), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1149), + [anon_sym_LPAREN] = ACTIONS(1151), + [anon_sym_ref] = ACTIONS(1153), + [anon_sym_LBRACE] = ACTIONS(1155), + [anon_sym_delegate] = ACTIONS(1157), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1845), + [anon_sym_new] = ACTIONS(1159), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1253), - [anon_sym_BANG] = ACTIONS(2201), - [anon_sym_TILDE] = ACTIONS(2201), - [anon_sym_PLUS_PLUS] = ACTIONS(2201), - [anon_sym_DASH_DASH] = ACTIONS(2201), - [anon_sym_true] = ACTIONS(1259), - [anon_sym_false] = ACTIONS(1259), - [anon_sym_PLUS] = ACTIONS(2199), - [anon_sym_DASH] = ACTIONS(2199), - [anon_sym_STAR] = ACTIONS(1851), - [anon_sym_CARET] = ACTIONS(2201), - [anon_sym_AMP] = ACTIONS(2201), - [anon_sym_this] = ACTIONS(1263), + [anon_sym_checked] = ACTIONS(1163), + [anon_sym_BANG] = ACTIONS(1167), + [anon_sym_TILDE] = ACTIONS(1167), + [anon_sym_PLUS_PLUS] = ACTIONS(1167), + [anon_sym_DASH_DASH] = ACTIONS(1167), + [anon_sym_true] = ACTIONS(1169), + [anon_sym_false] = ACTIONS(1169), + [anon_sym_PLUS] = ACTIONS(1165), + [anon_sym_DASH] = ACTIONS(1165), + [anon_sym_STAR] = ACTIONS(1171), + [anon_sym_CARET] = ACTIONS(1167), + [anon_sym_AMP] = ACTIONS(1167), + [anon_sym_this] = ACTIONS(1173), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1265), + [anon_sym_base] = ACTIONS(1175), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1267), - [anon_sym_unchecked] = ACTIONS(1253), + [sym_predefined_type] = ACTIONS(1177), + [anon_sym_unchecked] = ACTIONS(1163), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1269), - [anon_sym_throw] = ACTIONS(2203), + [anon_sym_default] = ACTIONS(1179), + [anon_sym_throw] = ACTIONS(1181), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2205), - [anon_sym_DOT_DOT] = ACTIONS(2207), + [anon_sym_await] = ACTIONS(1183), + [anon_sym_DOT_DOT] = ACTIONS(1185), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -339352,19 +343463,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1277), - [anon_sym_sizeof] = ACTIONS(1279), - [anon_sym_typeof] = ACTIONS(1281), - [anon_sym___makeref] = ACTIONS(1283), - [anon_sym___reftype] = ACTIONS(1285), - [anon_sym___refvalue] = ACTIONS(1287), - [sym_null_literal] = ACTIONS(1289), - [anon_sym_SQUOTE] = ACTIONS(1291), - [sym_integer_literal] = ACTIONS(1289), - [sym_real_literal] = ACTIONS(1293), - [anon_sym_DQUOTE] = ACTIONS(1295), - [sym_verbatim_string_literal] = ACTIONS(1293), - [aux_sym_preproc_if_token1] = ACTIONS(1297), + [anon_sym_stackalloc] = ACTIONS(1187), + [anon_sym_sizeof] = ACTIONS(1189), + [anon_sym_typeof] = ACTIONS(1191), + [anon_sym___makeref] = ACTIONS(1193), + [anon_sym___reftype] = ACTIONS(1195), + [anon_sym___refvalue] = ACTIONS(1197), + [sym_null_literal] = ACTIONS(1199), + [anon_sym_SQUOTE] = ACTIONS(1201), + [sym_integer_literal] = ACTIONS(1199), + [sym_real_literal] = ACTIONS(1203), + [anon_sym_DQUOTE] = ACTIONS(1205), + [sym_verbatim_string_literal] = ACTIONS(1203), + [aux_sym_preproc_if_token1] = ACTIONS(1207), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -339375,140 +343486,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(1299), - [sym_interpolation_verbatim_start] = ACTIONS(1301), - [sym_interpolation_raw_start] = ACTIONS(1303), - [sym_raw_string_start] = ACTIONS(1305), + [sym_interpolation_regular_start] = ACTIONS(1209), + [sym_interpolation_verbatim_start] = ACTIONS(1211), + [sym_interpolation_raw_start] = ACTIONS(1213), + [sym_raw_string_start] = ACTIONS(1215), }, - [1761] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2610), - [sym__name] = STATE(5898), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2197), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(4840), - [sym_non_lvalue_expression] = STATE(3277), - [sym_lvalue_expression] = STATE(3510), - [sym__expression_statement_expression] = STATE(3228), - [sym_assignment_expression] = STATE(3289), - [sym_binary_expression] = STATE(3228), - [sym_postfix_unary_expression] = STATE(3289), - [sym_prefix_unary_expression] = STATE(3289), - [sym__pointer_indirection_expression] = STATE(2609), - [sym_query_expression] = STATE(3228), - [sym_from_clause] = STATE(6180), - [sym_conditional_expression] = STATE(3228), - [sym_conditional_access_expression] = STATE(3228), - [sym_as_expression] = STATE(3228), - [sym_is_expression] = STATE(3228), - [sym_is_pattern_expression] = STATE(3228), - [sym_cast_expression] = STATE(3228), - [sym_checked_expression] = STATE(3228), - [sym_invocation_expression] = STATE(3289), - [sym_switch_expression] = STATE(3228), - [sym_await_expression] = STATE(3289), - [sym_throw_expression] = STATE(3228), - [sym_element_access_expression] = STATE(2609), - [sym_interpolated_string_expression] = STATE(3228), - [sym_member_access_expression] = STATE(2609), - [sym_object_creation_expression] = STATE(3289), - [sym_parenthesized_expression] = STATE(3289), - [sym__parenthesized_lvalue_expression] = STATE(2609), - [sym_lambda_expression] = STATE(3228), - [sym__lambda_expression_init] = STATE(7527), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3228), - [sym_anonymous_method_expression] = STATE(3228), - [sym_anonymous_object_creation_expression] = STATE(3228), - [sym_implicit_array_creation_expression] = STATE(3228), - [sym_implicit_object_creation_expression] = STATE(3228), - [sym_implicit_stackalloc_expression] = STATE(3228), - [sym_initializer_expression] = STATE(3228), - [sym_default_expression] = STATE(3228), - [sym_with_expression] = STATE(3228), - [sym_sizeof_expression] = STATE(3228), - [sym_typeof_expression] = STATE(3228), - [sym_makeref_expression] = STATE(3228), - [sym_ref_expression] = STATE(3228), - [sym_reftype_expression] = STATE(3228), - [sym_refvalue_expression] = STATE(3228), - [sym_stackalloc_expression] = STATE(3228), - [sym_range_expression] = STATE(3228), - [sym_tuple_expression] = STATE(2609), - [sym_literal] = STATE(3228), - [sym_character_literal] = STATE(3278), - [sym_string_literal] = STATE(3278), - [sym_raw_string_literal] = STATE(3278), - [sym_boolean_literal] = STATE(3278), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3228), - [sym_preproc_if_in_attribute_list] = STATE(5576), - [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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3396), + [1786] = { + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2603), + [sym__name] = STATE(5862), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2193), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(3880), + [sym_non_lvalue_expression] = STATE(3220), + [sym_lvalue_expression] = STATE(2955), + [sym__expression_statement_expression] = STATE(3236), + [sym_assignment_expression] = STATE(3221), + [sym_binary_expression] = STATE(3236), + [sym_postfix_unary_expression] = STATE(3221), + [sym_prefix_unary_expression] = STATE(3221), + [sym__pointer_indirection_expression] = STATE(2602), + [sym_query_expression] = STATE(3236), + [sym_from_clause] = STATE(6143), + [sym_conditional_expression] = STATE(3236), + [sym_conditional_access_expression] = STATE(3236), + [sym_as_expression] = STATE(3236), + [sym_is_expression] = STATE(3236), + [sym_is_pattern_expression] = STATE(3236), + [sym_cast_expression] = STATE(3236), + [sym_checked_expression] = STATE(3236), + [sym_invocation_expression] = STATE(3221), + [sym_switch_expression] = STATE(3236), + [sym_await_expression] = STATE(3221), + [sym_throw_expression] = STATE(3236), + [sym_element_access_expression] = STATE(2602), + [sym_interpolated_string_expression] = STATE(3236), + [sym_member_access_expression] = STATE(2602), + [sym_object_creation_expression] = STATE(3221), + [sym_parenthesized_expression] = STATE(3221), + [sym__parenthesized_lvalue_expression] = STATE(2602), + [sym_lambda_expression] = STATE(3236), + [sym__lambda_expression_init] = STATE(7668), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3236), + [sym_anonymous_method_expression] = STATE(3236), + [sym_anonymous_object_creation_expression] = STATE(3236), + [sym_implicit_array_creation_expression] = STATE(3236), + [sym_implicit_object_creation_expression] = STATE(3236), + [sym_implicit_stackalloc_expression] = STATE(3236), + [sym_initializer_expression] = STATE(3236), + [sym_default_expression] = STATE(3236), + [sym_with_expression] = STATE(3236), + [sym_sizeof_expression] = STATE(3236), + [sym_typeof_expression] = STATE(3236), + [sym_makeref_expression] = STATE(3236), + [sym_ref_expression] = STATE(3236), + [sym_reftype_expression] = STATE(3236), + [sym_refvalue_expression] = STATE(3236), + [sym_stackalloc_expression] = STATE(3236), + [sym_range_expression] = STATE(3236), + [sym_tuple_expression] = STATE(2602), + [sym_literal] = STATE(3236), + [sym_character_literal] = STATE(3272), + [sym_string_literal] = STATE(3272), + [sym_raw_string_literal] = STATE(3272), + [sym_boolean_literal] = STATE(3272), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3236), + [sym_preproc_if_in_attribute_list] = STATE(5583), + [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(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3379), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1153), - [anon_sym_LPAREN] = ACTIONS(1759), - [anon_sym_ref] = ACTIONS(1761), - [anon_sym_LBRACE] = ACTIONS(1159), - [anon_sym_delegate] = ACTIONS(1161), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1149), + [anon_sym_LPAREN] = ACTIONS(1151), + [anon_sym_ref] = ACTIONS(1153), + [anon_sym_LBRACE] = ACTIONS(1155), + [anon_sym_delegate] = ACTIONS(1157), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1163), + [anon_sym_new] = ACTIONS(1159), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1167), - [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(1173), - [anon_sym_false] = ACTIONS(1173), - [anon_sym_PLUS] = ACTIONS(1763), - [anon_sym_DASH] = ACTIONS(1763), - [anon_sym_STAR] = ACTIONS(1175), - [anon_sym_CARET] = ACTIONS(1765), - [anon_sym_AMP] = ACTIONS(1765), - [anon_sym_this] = ACTIONS(1177), + [anon_sym_checked] = ACTIONS(1163), + [anon_sym_BANG] = ACTIONS(1167), + [anon_sym_TILDE] = ACTIONS(1167), + [anon_sym_PLUS_PLUS] = ACTIONS(1167), + [anon_sym_DASH_DASH] = ACTIONS(1167), + [anon_sym_true] = ACTIONS(1169), + [anon_sym_false] = ACTIONS(1169), + [anon_sym_PLUS] = ACTIONS(1165), + [anon_sym_DASH] = ACTIONS(1165), + [anon_sym_STAR] = ACTIONS(1171), + [anon_sym_CARET] = ACTIONS(1167), + [anon_sym_AMP] = ACTIONS(1167), + [anon_sym_this] = ACTIONS(1173), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1179), + [anon_sym_base] = ACTIONS(1175), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1181), - [anon_sym_unchecked] = ACTIONS(1167), + [sym_predefined_type] = ACTIONS(1177), + [anon_sym_unchecked] = ACTIONS(1163), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1183), - [anon_sym_throw] = ACTIONS(1767), + [anon_sym_default] = ACTIONS(1179), + [anon_sym_throw] = ACTIONS(1181), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1769), - [anon_sym_DOT_DOT] = ACTIONS(1771), + [anon_sym_await] = ACTIONS(1183), + [anon_sym_DOT_DOT] = ACTIONS(1185), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -339521,19 +343632,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1191), - [anon_sym_sizeof] = ACTIONS(1193), - [anon_sym_typeof] = ACTIONS(1195), - [anon_sym___makeref] = ACTIONS(1197), - [anon_sym___reftype] = ACTIONS(1199), - [anon_sym___refvalue] = ACTIONS(1201), - [sym_null_literal] = ACTIONS(1203), - [anon_sym_SQUOTE] = ACTIONS(1205), - [sym_integer_literal] = ACTIONS(1203), - [sym_real_literal] = ACTIONS(1207), - [anon_sym_DQUOTE] = ACTIONS(1209), - [sym_verbatim_string_literal] = ACTIONS(1207), - [aux_sym_preproc_if_token1] = ACTIONS(1773), + [anon_sym_stackalloc] = ACTIONS(1187), + [anon_sym_sizeof] = ACTIONS(1189), + [anon_sym_typeof] = ACTIONS(1191), + [anon_sym___makeref] = ACTIONS(1193), + [anon_sym___reftype] = ACTIONS(1195), + [anon_sym___refvalue] = ACTIONS(1197), + [sym_null_literal] = ACTIONS(1199), + [anon_sym_SQUOTE] = ACTIONS(1201), + [sym_integer_literal] = ACTIONS(1199), + [sym_real_literal] = ACTIONS(1203), + [anon_sym_DQUOTE] = ACTIONS(1205), + [sym_verbatim_string_literal] = ACTIONS(1203), + [aux_sym_preproc_if_token1] = ACTIONS(1207), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -339544,140 +343655,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(1213), - [sym_interpolation_verbatim_start] = ACTIONS(1215), - [sym_interpolation_raw_start] = ACTIONS(1217), - [sym_raw_string_start] = ACTIONS(1219), + [sym_interpolation_regular_start] = ACTIONS(1209), + [sym_interpolation_verbatim_start] = ACTIONS(1211), + [sym_interpolation_raw_start] = ACTIONS(1213), + [sym_raw_string_start] = ACTIONS(1215), }, - [1762] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2420), - [sym__name] = STATE(5887), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2197), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(5172), - [sym_non_lvalue_expression] = STATE(3066), - [sym_lvalue_expression] = STATE(3637), - [sym__expression_statement_expression] = STATE(3006), - [sym_assignment_expression] = STATE(3020), - [sym_binary_expression] = STATE(3006), - [sym_postfix_unary_expression] = STATE(3020), - [sym_prefix_unary_expression] = STATE(3020), - [sym__pointer_indirection_expression] = STATE(2423), - [sym_query_expression] = STATE(3006), - [sym_from_clause] = STATE(6148), - [sym_conditional_expression] = STATE(3006), - [sym_conditional_access_expression] = STATE(3006), - [sym_as_expression] = STATE(3006), - [sym_is_expression] = STATE(3006), - [sym_is_pattern_expression] = STATE(3006), - [sym_cast_expression] = STATE(3006), - [sym_checked_expression] = STATE(3006), - [sym_invocation_expression] = STATE(3020), - [sym_switch_expression] = STATE(3006), - [sym_await_expression] = STATE(3020), - [sym_throw_expression] = STATE(3006), - [sym_element_access_expression] = STATE(2423), - [sym_interpolated_string_expression] = STATE(3006), - [sym_member_access_expression] = STATE(2423), - [sym_object_creation_expression] = STATE(3020), - [sym_parenthesized_expression] = STATE(3020), - [sym__parenthesized_lvalue_expression] = STATE(2423), - [sym_lambda_expression] = STATE(3006), - [sym__lambda_expression_init] = STATE(7507), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3006), - [sym_anonymous_method_expression] = STATE(3006), - [sym_anonymous_object_creation_expression] = STATE(3006), - [sym_implicit_array_creation_expression] = STATE(3006), - [sym_implicit_object_creation_expression] = STATE(3006), - [sym_implicit_stackalloc_expression] = STATE(3006), - [sym_initializer_expression] = STATE(3006), - [sym_default_expression] = STATE(3006), - [sym_with_expression] = STATE(3006), - [sym_sizeof_expression] = STATE(3006), - [sym_typeof_expression] = STATE(3006), - [sym_makeref_expression] = STATE(3006), - [sym_ref_expression] = STATE(3006), - [sym_reftype_expression] = STATE(3006), - [sym_refvalue_expression] = STATE(3006), - [sym_stackalloc_expression] = STATE(3006), - [sym_range_expression] = STATE(3006), - [sym_tuple_expression] = STATE(2423), - [sym_literal] = STATE(3006), - [sym_character_literal] = STATE(3011), - [sym_string_literal] = STATE(3011), - [sym_raw_string_literal] = STATE(3011), - [sym_boolean_literal] = STATE(3011), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3006), - [sym_preproc_if_in_attribute_list] = STATE(5576), - [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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3440), + [1787] = { + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(5873), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2238), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(5413), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3468), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3102), + [sym_postfix_unary_expression] = STATE(3079), + [sym_prefix_unary_expression] = STATE(3079), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6134), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3102), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3079), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3102), + [sym_member_access_expression] = STATE(2472), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3079), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7309), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(3102), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3102), + [sym_typeof_expression] = STATE(3102), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2472), + [sym_literal] = STATE(3102), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), + [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(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1241), - [anon_sym_LPAREN] = ACTIONS(2113), - [anon_sym_ref] = ACTIONS(2115), - [anon_sym_LBRACE] = ACTIONS(1247), - [anon_sym_delegate] = ACTIONS(1249), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1479), + [anon_sym_LPAREN] = ACTIONS(659), + [anon_sym_ref] = ACTIONS(663), + [anon_sym_LBRACE] = ACTIONS(1481), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1251), + [anon_sym_new] = ACTIONS(1059), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1253), - [anon_sym_BANG] = ACTIONS(2119), - [anon_sym_TILDE] = ACTIONS(2119), - [anon_sym_PLUS_PLUS] = ACTIONS(2119), - [anon_sym_DASH_DASH] = ACTIONS(2119), - [anon_sym_true] = ACTIONS(1259), - [anon_sym_false] = ACTIONS(1259), - [anon_sym_PLUS] = ACTIONS(2117), - [anon_sym_DASH] = ACTIONS(2117), - [anon_sym_STAR] = ACTIONS(1261), - [anon_sym_CARET] = ACTIONS(2119), - [anon_sym_AMP] = ACTIONS(2119), - [anon_sym_this] = ACTIONS(1263), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(1485), + [anon_sym_TILDE] = ACTIONS(1485), + [anon_sym_PLUS_PLUS] = ACTIONS(1485), + [anon_sym_DASH_DASH] = ACTIONS(1485), + [anon_sym_true] = ACTIONS(77), + [anon_sym_false] = ACTIONS(77), + [anon_sym_PLUS] = ACTIONS(1483), + [anon_sym_DASH] = ACTIONS(1483), + [anon_sym_STAR] = ACTIONS(683), + [anon_sym_CARET] = ACTIONS(1485), + [anon_sym_AMP] = ACTIONS(1485), + [anon_sym_this] = ACTIONS(83), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1265), + [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1267), - [anon_sym_unchecked] = ACTIONS(1253), + [sym_predefined_type] = ACTIONS(91), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1269), - [anon_sym_throw] = ACTIONS(2121), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(1077), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2123), - [anon_sym_DOT_DOT] = ACTIONS(2125), + [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), @@ -339690,19 +343801,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1277), - [anon_sym_sizeof] = ACTIONS(1279), - [anon_sym_typeof] = ACTIONS(1281), - [anon_sym___makeref] = ACTIONS(1283), - [anon_sym___reftype] = ACTIONS(1285), - [anon_sym___refvalue] = ACTIONS(1287), - [sym_null_literal] = ACTIONS(1289), - [anon_sym_SQUOTE] = ACTIONS(1291), - [sym_integer_literal] = ACTIONS(1289), - [sym_real_literal] = ACTIONS(1293), - [anon_sym_DQUOTE] = ACTIONS(1295), - [sym_verbatim_string_literal] = ACTIONS(1293), - [aux_sym_preproc_if_token1] = ACTIONS(2127), + [anon_sym_stackalloc] = ACTIONS(127), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_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), @@ -339713,140 +343824,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(1299), - [sym_interpolation_verbatim_start] = ACTIONS(1301), - [sym_interpolation_raw_start] = ACTIONS(1303), - [sym_raw_string_start] = ACTIONS(1305), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [sym_interpolation_raw_start] = ACTIONS(155), + [sym_raw_string_start] = ACTIONS(157), }, - [1763] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(5910), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2247), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(4602), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3379), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3080), - [sym_postfix_unary_expression] = STATE(3111), - [sym_prefix_unary_expression] = STATE(3111), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6154), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3080), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3111), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3080), - [sym_member_access_expression] = STATE(2484), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3111), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7575), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(3080), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3080), - [sym_typeof_expression] = STATE(3080), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2484), - [sym_literal] = STATE(3080), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), - [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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [1788] = { + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2603), + [sym__name] = STATE(5862), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2193), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(3882), + [sym_non_lvalue_expression] = STATE(3220), + [sym_lvalue_expression] = STATE(2955), + [sym__expression_statement_expression] = STATE(3236), + [sym_assignment_expression] = STATE(3221), + [sym_binary_expression] = STATE(3236), + [sym_postfix_unary_expression] = STATE(3221), + [sym_prefix_unary_expression] = STATE(3221), + [sym__pointer_indirection_expression] = STATE(2602), + [sym_query_expression] = STATE(3236), + [sym_from_clause] = STATE(6143), + [sym_conditional_expression] = STATE(3236), + [sym_conditional_access_expression] = STATE(3236), + [sym_as_expression] = STATE(3236), + [sym_is_expression] = STATE(3236), + [sym_is_pattern_expression] = STATE(3236), + [sym_cast_expression] = STATE(3236), + [sym_checked_expression] = STATE(3236), + [sym_invocation_expression] = STATE(3221), + [sym_switch_expression] = STATE(3236), + [sym_await_expression] = STATE(3221), + [sym_throw_expression] = STATE(3236), + [sym_element_access_expression] = STATE(2602), + [sym_interpolated_string_expression] = STATE(3236), + [sym_member_access_expression] = STATE(2602), + [sym_object_creation_expression] = STATE(3221), + [sym_parenthesized_expression] = STATE(3221), + [sym__parenthesized_lvalue_expression] = STATE(2602), + [sym_lambda_expression] = STATE(3236), + [sym__lambda_expression_init] = STATE(7668), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3236), + [sym_anonymous_method_expression] = STATE(3236), + [sym_anonymous_object_creation_expression] = STATE(3236), + [sym_implicit_array_creation_expression] = STATE(3236), + [sym_implicit_object_creation_expression] = STATE(3236), + [sym_implicit_stackalloc_expression] = STATE(3236), + [sym_initializer_expression] = STATE(3236), + [sym_default_expression] = STATE(3236), + [sym_with_expression] = STATE(3236), + [sym_sizeof_expression] = STATE(3236), + [sym_typeof_expression] = STATE(3236), + [sym_makeref_expression] = STATE(3236), + [sym_ref_expression] = STATE(3236), + [sym_reftype_expression] = STATE(3236), + [sym_refvalue_expression] = STATE(3236), + [sym_stackalloc_expression] = STATE(3236), + [sym_range_expression] = STATE(3236), + [sym_tuple_expression] = STATE(2602), + [sym_literal] = STATE(3236), + [sym_character_literal] = STATE(3272), + [sym_string_literal] = STATE(3272), + [sym_raw_string_literal] = STATE(3272), + [sym_boolean_literal] = STATE(3272), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3236), + [sym_preproc_if_in_attribute_list] = STATE(5583), + [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(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3379), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1481), - [anon_sym_LPAREN] = ACTIONS(895), - [anon_sym_ref] = ACTIONS(897), - [anon_sym_LBRACE] = ACTIONS(1487), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1149), + [anon_sym_LPAREN] = ACTIONS(1151), + [anon_sym_ref] = ACTIONS(1153), + [anon_sym_LBRACE] = ACTIONS(1155), + [anon_sym_delegate] = ACTIONS(1157), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1061), + [anon_sym_new] = ACTIONS(1159), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1067), - [anon_sym_BANG] = ACTIONS(1495), - [anon_sym_TILDE] = ACTIONS(1495), - [anon_sym_PLUS_PLUS] = ACTIONS(1495), - [anon_sym_DASH_DASH] = ACTIONS(1495), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1493), - [anon_sym_DASH] = ACTIONS(1493), - [anon_sym_STAR] = ACTIONS(905), - [anon_sym_CARET] = ACTIONS(1495), - [anon_sym_AMP] = ACTIONS(1495), - [anon_sym_this] = ACTIONS(83), + [anon_sym_checked] = ACTIONS(1163), + [anon_sym_BANG] = ACTIONS(1167), + [anon_sym_TILDE] = ACTIONS(1167), + [anon_sym_PLUS_PLUS] = ACTIONS(1167), + [anon_sym_DASH_DASH] = ACTIONS(1167), + [anon_sym_true] = ACTIONS(1169), + [anon_sym_false] = ACTIONS(1169), + [anon_sym_PLUS] = ACTIONS(1165), + [anon_sym_DASH] = ACTIONS(1165), + [anon_sym_STAR] = ACTIONS(1171), + [anon_sym_CARET] = ACTIONS(1167), + [anon_sym_AMP] = ACTIONS(1167), + [anon_sym_this] = ACTIONS(1173), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), + [anon_sym_base] = ACTIONS(1175), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1067), + [sym_predefined_type] = ACTIONS(1177), + [anon_sym_unchecked] = ACTIONS(1163), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1079), + [anon_sym_default] = ACTIONS(1179), + [anon_sym_throw] = ACTIONS(1181), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1081), - [anon_sym_DOT_DOT] = ACTIONS(911), + [anon_sym_await] = ACTIONS(1183), + [anon_sym_DOT_DOT] = ACTIONS(1185), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -339859,19 +343970,19 @@ static const uint16_t ts_parse_table[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(1089), + [anon_sym_stackalloc] = ACTIONS(1187), + [anon_sym_sizeof] = ACTIONS(1189), + [anon_sym_typeof] = ACTIONS(1191), + [anon_sym___makeref] = ACTIONS(1193), + [anon_sym___reftype] = ACTIONS(1195), + [anon_sym___refvalue] = ACTIONS(1197), + [sym_null_literal] = ACTIONS(1199), + [anon_sym_SQUOTE] = ACTIONS(1201), + [sym_integer_literal] = ACTIONS(1199), + [sym_real_literal] = ACTIONS(1203), + [anon_sym_DQUOTE] = ACTIONS(1205), + [sym_verbatim_string_literal] = ACTIONS(1203), + [aux_sym_preproc_if_token1] = ACTIONS(1207), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -339882,140 +343993,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(1209), + [sym_interpolation_verbatim_start] = ACTIONS(1211), + [sym_interpolation_raw_start] = ACTIONS(1213), + [sym_raw_string_start] = ACTIONS(1215), }, - [1764] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2420), - [sym__name] = STATE(5887), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2197), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(5178), - [sym_non_lvalue_expression] = STATE(3066), - [sym_lvalue_expression] = STATE(3637), - [sym__expression_statement_expression] = STATE(3006), - [sym_assignment_expression] = STATE(3020), - [sym_binary_expression] = STATE(3006), - [sym_postfix_unary_expression] = STATE(3020), - [sym_prefix_unary_expression] = STATE(3020), - [sym__pointer_indirection_expression] = STATE(2423), - [sym_query_expression] = STATE(3006), - [sym_from_clause] = STATE(6148), - [sym_conditional_expression] = STATE(3006), - [sym_conditional_access_expression] = STATE(3006), - [sym_as_expression] = STATE(3006), - [sym_is_expression] = STATE(3006), - [sym_is_pattern_expression] = STATE(3006), - [sym_cast_expression] = STATE(3006), - [sym_checked_expression] = STATE(3006), - [sym_invocation_expression] = STATE(3020), - [sym_switch_expression] = STATE(3006), - [sym_await_expression] = STATE(3020), - [sym_throw_expression] = STATE(3006), - [sym_element_access_expression] = STATE(2423), - [sym_interpolated_string_expression] = STATE(3006), - [sym_member_access_expression] = STATE(2423), - [sym_object_creation_expression] = STATE(3020), - [sym_parenthesized_expression] = STATE(3020), - [sym__parenthesized_lvalue_expression] = STATE(2423), - [sym_lambda_expression] = STATE(3006), - [sym__lambda_expression_init] = STATE(7507), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3006), - [sym_anonymous_method_expression] = STATE(3006), - [sym_anonymous_object_creation_expression] = STATE(3006), - [sym_implicit_array_creation_expression] = STATE(3006), - [sym_implicit_object_creation_expression] = STATE(3006), - [sym_implicit_stackalloc_expression] = STATE(3006), - [sym_initializer_expression] = STATE(3006), - [sym_default_expression] = STATE(3006), - [sym_with_expression] = STATE(3006), - [sym_sizeof_expression] = STATE(3006), - [sym_typeof_expression] = STATE(3006), - [sym_makeref_expression] = STATE(3006), - [sym_ref_expression] = STATE(3006), - [sym_reftype_expression] = STATE(3006), - [sym_refvalue_expression] = STATE(3006), - [sym_stackalloc_expression] = STATE(3006), - [sym_range_expression] = STATE(3006), - [sym_tuple_expression] = STATE(2423), - [sym_literal] = STATE(3006), - [sym_character_literal] = STATE(3011), - [sym_string_literal] = STATE(3011), - [sym_raw_string_literal] = STATE(3011), - [sym_boolean_literal] = STATE(3011), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3006), - [sym_preproc_if_in_attribute_list] = STATE(5576), - [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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3440), + [1789] = { + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2603), + [sym__name] = STATE(5862), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2193), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(3885), + [sym_non_lvalue_expression] = STATE(3220), + [sym_lvalue_expression] = STATE(2955), + [sym__expression_statement_expression] = STATE(3236), + [sym_assignment_expression] = STATE(3221), + [sym_binary_expression] = STATE(3236), + [sym_postfix_unary_expression] = STATE(3221), + [sym_prefix_unary_expression] = STATE(3221), + [sym__pointer_indirection_expression] = STATE(2602), + [sym_query_expression] = STATE(3236), + [sym_from_clause] = STATE(6143), + [sym_conditional_expression] = STATE(3236), + [sym_conditional_access_expression] = STATE(3236), + [sym_as_expression] = STATE(3236), + [sym_is_expression] = STATE(3236), + [sym_is_pattern_expression] = STATE(3236), + [sym_cast_expression] = STATE(3236), + [sym_checked_expression] = STATE(3236), + [sym_invocation_expression] = STATE(3221), + [sym_switch_expression] = STATE(3236), + [sym_await_expression] = STATE(3221), + [sym_throw_expression] = STATE(3236), + [sym_element_access_expression] = STATE(2602), + [sym_interpolated_string_expression] = STATE(3236), + [sym_member_access_expression] = STATE(2602), + [sym_object_creation_expression] = STATE(3221), + [sym_parenthesized_expression] = STATE(3221), + [sym__parenthesized_lvalue_expression] = STATE(2602), + [sym_lambda_expression] = STATE(3236), + [sym__lambda_expression_init] = STATE(7668), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3236), + [sym_anonymous_method_expression] = STATE(3236), + [sym_anonymous_object_creation_expression] = STATE(3236), + [sym_implicit_array_creation_expression] = STATE(3236), + [sym_implicit_object_creation_expression] = STATE(3236), + [sym_implicit_stackalloc_expression] = STATE(3236), + [sym_initializer_expression] = STATE(3236), + [sym_default_expression] = STATE(3236), + [sym_with_expression] = STATE(3236), + [sym_sizeof_expression] = STATE(3236), + [sym_typeof_expression] = STATE(3236), + [sym_makeref_expression] = STATE(3236), + [sym_ref_expression] = STATE(3236), + [sym_reftype_expression] = STATE(3236), + [sym_refvalue_expression] = STATE(3236), + [sym_stackalloc_expression] = STATE(3236), + [sym_range_expression] = STATE(3236), + [sym_tuple_expression] = STATE(2602), + [sym_literal] = STATE(3236), + [sym_character_literal] = STATE(3272), + [sym_string_literal] = STATE(3272), + [sym_raw_string_literal] = STATE(3272), + [sym_boolean_literal] = STATE(3272), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3236), + [sym_preproc_if_in_attribute_list] = STATE(5583), + [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(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3379), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1241), - [anon_sym_LPAREN] = ACTIONS(2113), - [anon_sym_ref] = ACTIONS(2115), - [anon_sym_LBRACE] = ACTIONS(1247), - [anon_sym_delegate] = ACTIONS(1249), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1149), + [anon_sym_LPAREN] = ACTIONS(1151), + [anon_sym_ref] = ACTIONS(1153), + [anon_sym_LBRACE] = ACTIONS(1155), + [anon_sym_delegate] = ACTIONS(1157), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1251), + [anon_sym_new] = ACTIONS(1159), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1253), - [anon_sym_BANG] = ACTIONS(2119), - [anon_sym_TILDE] = ACTIONS(2119), - [anon_sym_PLUS_PLUS] = ACTIONS(2119), - [anon_sym_DASH_DASH] = ACTIONS(2119), - [anon_sym_true] = ACTIONS(1259), - [anon_sym_false] = ACTIONS(1259), - [anon_sym_PLUS] = ACTIONS(2117), - [anon_sym_DASH] = ACTIONS(2117), - [anon_sym_STAR] = ACTIONS(1261), - [anon_sym_CARET] = ACTIONS(2119), - [anon_sym_AMP] = ACTIONS(2119), - [anon_sym_this] = ACTIONS(1263), + [anon_sym_checked] = ACTIONS(1163), + [anon_sym_BANG] = ACTIONS(1167), + [anon_sym_TILDE] = ACTIONS(1167), + [anon_sym_PLUS_PLUS] = ACTIONS(1167), + [anon_sym_DASH_DASH] = ACTIONS(1167), + [anon_sym_true] = ACTIONS(1169), + [anon_sym_false] = ACTIONS(1169), + [anon_sym_PLUS] = ACTIONS(1165), + [anon_sym_DASH] = ACTIONS(1165), + [anon_sym_STAR] = ACTIONS(1171), + [anon_sym_CARET] = ACTIONS(1167), + [anon_sym_AMP] = ACTIONS(1167), + [anon_sym_this] = ACTIONS(1173), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1265), + [anon_sym_base] = ACTIONS(1175), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1267), - [anon_sym_unchecked] = ACTIONS(1253), + [sym_predefined_type] = ACTIONS(1177), + [anon_sym_unchecked] = ACTIONS(1163), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1269), - [anon_sym_throw] = ACTIONS(2121), + [anon_sym_default] = ACTIONS(1179), + [anon_sym_throw] = ACTIONS(1181), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2123), - [anon_sym_DOT_DOT] = ACTIONS(2125), + [anon_sym_await] = ACTIONS(1183), + [anon_sym_DOT_DOT] = ACTIONS(1185), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -340028,19 +344139,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1277), - [anon_sym_sizeof] = ACTIONS(1279), - [anon_sym_typeof] = ACTIONS(1281), - [anon_sym___makeref] = ACTIONS(1283), - [anon_sym___reftype] = ACTIONS(1285), - [anon_sym___refvalue] = ACTIONS(1287), - [sym_null_literal] = ACTIONS(1289), - [anon_sym_SQUOTE] = ACTIONS(1291), - [sym_integer_literal] = ACTIONS(1289), - [sym_real_literal] = ACTIONS(1293), - [anon_sym_DQUOTE] = ACTIONS(1295), - [sym_verbatim_string_literal] = ACTIONS(1293), - [aux_sym_preproc_if_token1] = ACTIONS(2127), + [anon_sym_stackalloc] = ACTIONS(1187), + [anon_sym_sizeof] = ACTIONS(1189), + [anon_sym_typeof] = ACTIONS(1191), + [anon_sym___makeref] = ACTIONS(1193), + [anon_sym___reftype] = ACTIONS(1195), + [anon_sym___refvalue] = ACTIONS(1197), + [sym_null_literal] = ACTIONS(1199), + [anon_sym_SQUOTE] = ACTIONS(1201), + [sym_integer_literal] = ACTIONS(1199), + [sym_real_literal] = ACTIONS(1203), + [anon_sym_DQUOTE] = ACTIONS(1205), + [sym_verbatim_string_literal] = ACTIONS(1203), + [aux_sym_preproc_if_token1] = ACTIONS(1207), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -340051,140 +344162,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(1299), - [sym_interpolation_verbatim_start] = ACTIONS(1301), - [sym_interpolation_raw_start] = ACTIONS(1303), - [sym_raw_string_start] = ACTIONS(1305), + [sym_interpolation_regular_start] = ACTIONS(1209), + [sym_interpolation_verbatim_start] = ACTIONS(1211), + [sym_interpolation_raw_start] = ACTIONS(1213), + [sym_raw_string_start] = ACTIONS(1215), }, - [1765] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2420), - [sym__name] = STATE(5887), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2197), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(5179), - [sym_non_lvalue_expression] = STATE(3066), - [sym_lvalue_expression] = STATE(3637), - [sym__expression_statement_expression] = STATE(3006), - [sym_assignment_expression] = STATE(3020), - [sym_binary_expression] = STATE(3006), - [sym_postfix_unary_expression] = STATE(3020), - [sym_prefix_unary_expression] = STATE(3020), - [sym__pointer_indirection_expression] = STATE(2423), - [sym_query_expression] = STATE(3006), - [sym_from_clause] = STATE(6148), - [sym_conditional_expression] = STATE(3006), - [sym_conditional_access_expression] = STATE(3006), - [sym_as_expression] = STATE(3006), - [sym_is_expression] = STATE(3006), - [sym_is_pattern_expression] = STATE(3006), - [sym_cast_expression] = STATE(3006), - [sym_checked_expression] = STATE(3006), - [sym_invocation_expression] = STATE(3020), - [sym_switch_expression] = STATE(3006), - [sym_await_expression] = STATE(3020), - [sym_throw_expression] = STATE(3006), - [sym_element_access_expression] = STATE(2423), - [sym_interpolated_string_expression] = STATE(3006), - [sym_member_access_expression] = STATE(2423), - [sym_object_creation_expression] = STATE(3020), - [sym_parenthesized_expression] = STATE(3020), - [sym__parenthesized_lvalue_expression] = STATE(2423), - [sym_lambda_expression] = STATE(3006), - [sym__lambda_expression_init] = STATE(7507), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3006), - [sym_anonymous_method_expression] = STATE(3006), - [sym_anonymous_object_creation_expression] = STATE(3006), - [sym_implicit_array_creation_expression] = STATE(3006), - [sym_implicit_object_creation_expression] = STATE(3006), - [sym_implicit_stackalloc_expression] = STATE(3006), - [sym_initializer_expression] = STATE(3006), - [sym_default_expression] = STATE(3006), - [sym_with_expression] = STATE(3006), - [sym_sizeof_expression] = STATE(3006), - [sym_typeof_expression] = STATE(3006), - [sym_makeref_expression] = STATE(3006), - [sym_ref_expression] = STATE(3006), - [sym_reftype_expression] = STATE(3006), - [sym_refvalue_expression] = STATE(3006), - [sym_stackalloc_expression] = STATE(3006), - [sym_range_expression] = STATE(3006), - [sym_tuple_expression] = STATE(2423), - [sym_literal] = STATE(3006), - [sym_character_literal] = STATE(3011), - [sym_string_literal] = STATE(3011), - [sym_raw_string_literal] = STATE(3011), - [sym_boolean_literal] = STATE(3011), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3006), - [sym_preproc_if_in_attribute_list] = STATE(5576), - [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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3440), + [1790] = { + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2603), + [sym__name] = STATE(5862), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2193), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(3886), + [sym_non_lvalue_expression] = STATE(3220), + [sym_lvalue_expression] = STATE(2955), + [sym__expression_statement_expression] = STATE(3236), + [sym_assignment_expression] = STATE(3221), + [sym_binary_expression] = STATE(3236), + [sym_postfix_unary_expression] = STATE(3221), + [sym_prefix_unary_expression] = STATE(3221), + [sym__pointer_indirection_expression] = STATE(2602), + [sym_query_expression] = STATE(3236), + [sym_from_clause] = STATE(6143), + [sym_conditional_expression] = STATE(3236), + [sym_conditional_access_expression] = STATE(3236), + [sym_as_expression] = STATE(3236), + [sym_is_expression] = STATE(3236), + [sym_is_pattern_expression] = STATE(3236), + [sym_cast_expression] = STATE(3236), + [sym_checked_expression] = STATE(3236), + [sym_invocation_expression] = STATE(3221), + [sym_switch_expression] = STATE(3236), + [sym_await_expression] = STATE(3221), + [sym_throw_expression] = STATE(3236), + [sym_element_access_expression] = STATE(2602), + [sym_interpolated_string_expression] = STATE(3236), + [sym_member_access_expression] = STATE(2602), + [sym_object_creation_expression] = STATE(3221), + [sym_parenthesized_expression] = STATE(3221), + [sym__parenthesized_lvalue_expression] = STATE(2602), + [sym_lambda_expression] = STATE(3236), + [sym__lambda_expression_init] = STATE(7668), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3236), + [sym_anonymous_method_expression] = STATE(3236), + [sym_anonymous_object_creation_expression] = STATE(3236), + [sym_implicit_array_creation_expression] = STATE(3236), + [sym_implicit_object_creation_expression] = STATE(3236), + [sym_implicit_stackalloc_expression] = STATE(3236), + [sym_initializer_expression] = STATE(3236), + [sym_default_expression] = STATE(3236), + [sym_with_expression] = STATE(3236), + [sym_sizeof_expression] = STATE(3236), + [sym_typeof_expression] = STATE(3236), + [sym_makeref_expression] = STATE(3236), + [sym_ref_expression] = STATE(3236), + [sym_reftype_expression] = STATE(3236), + [sym_refvalue_expression] = STATE(3236), + [sym_stackalloc_expression] = STATE(3236), + [sym_range_expression] = STATE(3236), + [sym_tuple_expression] = STATE(2602), + [sym_literal] = STATE(3236), + [sym_character_literal] = STATE(3272), + [sym_string_literal] = STATE(3272), + [sym_raw_string_literal] = STATE(3272), + [sym_boolean_literal] = STATE(3272), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3236), + [sym_preproc_if_in_attribute_list] = STATE(5583), + [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(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3379), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1241), - [anon_sym_LPAREN] = ACTIONS(2113), - [anon_sym_ref] = ACTIONS(2115), - [anon_sym_LBRACE] = ACTIONS(1247), - [anon_sym_delegate] = ACTIONS(1249), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1149), + [anon_sym_LPAREN] = ACTIONS(1151), + [anon_sym_ref] = ACTIONS(1153), + [anon_sym_LBRACE] = ACTIONS(1155), + [anon_sym_delegate] = ACTIONS(1157), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1251), + [anon_sym_new] = ACTIONS(1159), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1253), - [anon_sym_BANG] = ACTIONS(2119), - [anon_sym_TILDE] = ACTIONS(2119), - [anon_sym_PLUS_PLUS] = ACTIONS(2119), - [anon_sym_DASH_DASH] = ACTIONS(2119), - [anon_sym_true] = ACTIONS(1259), - [anon_sym_false] = ACTIONS(1259), - [anon_sym_PLUS] = ACTIONS(2117), - [anon_sym_DASH] = ACTIONS(2117), - [anon_sym_STAR] = ACTIONS(1261), - [anon_sym_CARET] = ACTIONS(2119), - [anon_sym_AMP] = ACTIONS(2119), - [anon_sym_this] = ACTIONS(1263), + [anon_sym_checked] = ACTIONS(1163), + [anon_sym_BANG] = ACTIONS(1167), + [anon_sym_TILDE] = ACTIONS(1167), + [anon_sym_PLUS_PLUS] = ACTIONS(1167), + [anon_sym_DASH_DASH] = ACTIONS(1167), + [anon_sym_true] = ACTIONS(1169), + [anon_sym_false] = ACTIONS(1169), + [anon_sym_PLUS] = ACTIONS(1165), + [anon_sym_DASH] = ACTIONS(1165), + [anon_sym_STAR] = ACTIONS(1171), + [anon_sym_CARET] = ACTIONS(1167), + [anon_sym_AMP] = ACTIONS(1167), + [anon_sym_this] = ACTIONS(1173), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1265), + [anon_sym_base] = ACTIONS(1175), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1267), - [anon_sym_unchecked] = ACTIONS(1253), + [sym_predefined_type] = ACTIONS(1177), + [anon_sym_unchecked] = ACTIONS(1163), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1269), - [anon_sym_throw] = ACTIONS(2121), + [anon_sym_default] = ACTIONS(1179), + [anon_sym_throw] = ACTIONS(1181), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2123), - [anon_sym_DOT_DOT] = ACTIONS(2125), + [anon_sym_await] = ACTIONS(1183), + [anon_sym_DOT_DOT] = ACTIONS(1185), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -340197,19 +344308,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1277), - [anon_sym_sizeof] = ACTIONS(1279), - [anon_sym_typeof] = ACTIONS(1281), - [anon_sym___makeref] = ACTIONS(1283), - [anon_sym___reftype] = ACTIONS(1285), - [anon_sym___refvalue] = ACTIONS(1287), - [sym_null_literal] = ACTIONS(1289), - [anon_sym_SQUOTE] = ACTIONS(1291), - [sym_integer_literal] = ACTIONS(1289), - [sym_real_literal] = ACTIONS(1293), - [anon_sym_DQUOTE] = ACTIONS(1295), - [sym_verbatim_string_literal] = ACTIONS(1293), - [aux_sym_preproc_if_token1] = ACTIONS(2127), + [anon_sym_stackalloc] = ACTIONS(1187), + [anon_sym_sizeof] = ACTIONS(1189), + [anon_sym_typeof] = ACTIONS(1191), + [anon_sym___makeref] = ACTIONS(1193), + [anon_sym___reftype] = ACTIONS(1195), + [anon_sym___refvalue] = ACTIONS(1197), + [sym_null_literal] = ACTIONS(1199), + [anon_sym_SQUOTE] = ACTIONS(1201), + [sym_integer_literal] = ACTIONS(1199), + [sym_real_literal] = ACTIONS(1203), + [anon_sym_DQUOTE] = ACTIONS(1205), + [sym_verbatim_string_literal] = ACTIONS(1203), + [aux_sym_preproc_if_token1] = ACTIONS(1207), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -340220,140 +344331,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(1299), - [sym_interpolation_verbatim_start] = ACTIONS(1301), - [sym_interpolation_raw_start] = ACTIONS(1303), - [sym_raw_string_start] = ACTIONS(1305), + [sym_interpolation_regular_start] = ACTIONS(1209), + [sym_interpolation_verbatim_start] = ACTIONS(1211), + [sym_interpolation_raw_start] = ACTIONS(1213), + [sym_raw_string_start] = ACTIONS(1215), }, - [1766] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2420), - [sym__name] = STATE(5887), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2197), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(5180), - [sym_non_lvalue_expression] = STATE(3066), - [sym_lvalue_expression] = STATE(3637), - [sym__expression_statement_expression] = STATE(3006), - [sym_assignment_expression] = STATE(3020), - [sym_binary_expression] = STATE(3006), - [sym_postfix_unary_expression] = STATE(3020), - [sym_prefix_unary_expression] = STATE(3020), - [sym__pointer_indirection_expression] = STATE(2423), - [sym_query_expression] = STATE(3006), - [sym_from_clause] = STATE(6148), - [sym_conditional_expression] = STATE(3006), - [sym_conditional_access_expression] = STATE(3006), - [sym_as_expression] = STATE(3006), - [sym_is_expression] = STATE(3006), - [sym_is_pattern_expression] = STATE(3006), - [sym_cast_expression] = STATE(3006), - [sym_checked_expression] = STATE(3006), - [sym_invocation_expression] = STATE(3020), - [sym_switch_expression] = STATE(3006), - [sym_await_expression] = STATE(3020), - [sym_throw_expression] = STATE(3006), - [sym_element_access_expression] = STATE(2423), - [sym_interpolated_string_expression] = STATE(3006), - [sym_member_access_expression] = STATE(2423), - [sym_object_creation_expression] = STATE(3020), - [sym_parenthesized_expression] = STATE(3020), - [sym__parenthesized_lvalue_expression] = STATE(2423), - [sym_lambda_expression] = STATE(3006), - [sym__lambda_expression_init] = STATE(7507), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3006), - [sym_anonymous_method_expression] = STATE(3006), - [sym_anonymous_object_creation_expression] = STATE(3006), - [sym_implicit_array_creation_expression] = STATE(3006), - [sym_implicit_object_creation_expression] = STATE(3006), - [sym_implicit_stackalloc_expression] = STATE(3006), - [sym_initializer_expression] = STATE(3006), - [sym_default_expression] = STATE(3006), - [sym_with_expression] = STATE(3006), - [sym_sizeof_expression] = STATE(3006), - [sym_typeof_expression] = STATE(3006), - [sym_makeref_expression] = STATE(3006), - [sym_ref_expression] = STATE(3006), - [sym_reftype_expression] = STATE(3006), - [sym_refvalue_expression] = STATE(3006), - [sym_stackalloc_expression] = STATE(3006), - [sym_range_expression] = STATE(3006), - [sym_tuple_expression] = STATE(2423), - [sym_literal] = STATE(3006), - [sym_character_literal] = STATE(3011), - [sym_string_literal] = STATE(3011), - [sym_raw_string_literal] = STATE(3011), - [sym_boolean_literal] = STATE(3011), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3006), - [sym_preproc_if_in_attribute_list] = STATE(5576), - [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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3440), + [1791] = { + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2603), + [sym__name] = STATE(5862), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2193), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(3686), + [sym_non_lvalue_expression] = STATE(3220), + [sym_lvalue_expression] = STATE(2955), + [sym__expression_statement_expression] = STATE(3236), + [sym_assignment_expression] = STATE(3221), + [sym_binary_expression] = STATE(3236), + [sym_postfix_unary_expression] = STATE(3221), + [sym_prefix_unary_expression] = STATE(3221), + [sym__pointer_indirection_expression] = STATE(2602), + [sym_query_expression] = STATE(3236), + [sym_from_clause] = STATE(6143), + [sym_conditional_expression] = STATE(3236), + [sym_conditional_access_expression] = STATE(3236), + [sym_as_expression] = STATE(3236), + [sym_is_expression] = STATE(3236), + [sym_is_pattern_expression] = STATE(3236), + [sym_cast_expression] = STATE(3236), + [sym_checked_expression] = STATE(3236), + [sym_invocation_expression] = STATE(3221), + [sym_switch_expression] = STATE(3236), + [sym_await_expression] = STATE(3221), + [sym_throw_expression] = STATE(3236), + [sym_element_access_expression] = STATE(2602), + [sym_interpolated_string_expression] = STATE(3236), + [sym_member_access_expression] = STATE(2602), + [sym_object_creation_expression] = STATE(3221), + [sym_parenthesized_expression] = STATE(3221), + [sym__parenthesized_lvalue_expression] = STATE(2602), + [sym_lambda_expression] = STATE(3236), + [sym__lambda_expression_init] = STATE(7668), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3236), + [sym_anonymous_method_expression] = STATE(3236), + [sym_anonymous_object_creation_expression] = STATE(3236), + [sym_implicit_array_creation_expression] = STATE(3236), + [sym_implicit_object_creation_expression] = STATE(3236), + [sym_implicit_stackalloc_expression] = STATE(3236), + [sym_initializer_expression] = STATE(3236), + [sym_default_expression] = STATE(3236), + [sym_with_expression] = STATE(3236), + [sym_sizeof_expression] = STATE(3236), + [sym_typeof_expression] = STATE(3236), + [sym_makeref_expression] = STATE(3236), + [sym_ref_expression] = STATE(3236), + [sym_reftype_expression] = STATE(3236), + [sym_refvalue_expression] = STATE(3236), + [sym_stackalloc_expression] = STATE(3236), + [sym_range_expression] = STATE(3236), + [sym_tuple_expression] = STATE(2602), + [sym_literal] = STATE(3236), + [sym_character_literal] = STATE(3272), + [sym_string_literal] = STATE(3272), + [sym_raw_string_literal] = STATE(3272), + [sym_boolean_literal] = STATE(3272), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3236), + [sym_preproc_if_in_attribute_list] = STATE(5583), + [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(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3379), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1241), - [anon_sym_LPAREN] = ACTIONS(2113), - [anon_sym_ref] = ACTIONS(2115), - [anon_sym_LBRACE] = ACTIONS(1247), - [anon_sym_delegate] = ACTIONS(1249), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1149), + [anon_sym_LPAREN] = ACTIONS(1151), + [anon_sym_ref] = ACTIONS(1153), + [anon_sym_LBRACE] = ACTIONS(1155), + [anon_sym_delegate] = ACTIONS(1157), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1251), + [anon_sym_new] = ACTIONS(1159), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1253), - [anon_sym_BANG] = ACTIONS(2119), - [anon_sym_TILDE] = ACTIONS(2119), - [anon_sym_PLUS_PLUS] = ACTIONS(2119), - [anon_sym_DASH_DASH] = ACTIONS(2119), - [anon_sym_true] = ACTIONS(1259), - [anon_sym_false] = ACTIONS(1259), - [anon_sym_PLUS] = ACTIONS(2117), - [anon_sym_DASH] = ACTIONS(2117), - [anon_sym_STAR] = ACTIONS(1261), - [anon_sym_CARET] = ACTIONS(2119), - [anon_sym_AMP] = ACTIONS(2119), - [anon_sym_this] = ACTIONS(1263), + [anon_sym_checked] = ACTIONS(1163), + [anon_sym_BANG] = ACTIONS(1167), + [anon_sym_TILDE] = ACTIONS(1167), + [anon_sym_PLUS_PLUS] = ACTIONS(1167), + [anon_sym_DASH_DASH] = ACTIONS(1167), + [anon_sym_true] = ACTIONS(1169), + [anon_sym_false] = ACTIONS(1169), + [anon_sym_PLUS] = ACTIONS(1165), + [anon_sym_DASH] = ACTIONS(1165), + [anon_sym_STAR] = ACTIONS(1171), + [anon_sym_CARET] = ACTIONS(1167), + [anon_sym_AMP] = ACTIONS(1167), + [anon_sym_this] = ACTIONS(1173), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1265), + [anon_sym_base] = ACTIONS(1175), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1267), - [anon_sym_unchecked] = ACTIONS(1253), + [sym_predefined_type] = ACTIONS(1177), + [anon_sym_unchecked] = ACTIONS(1163), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1269), - [anon_sym_throw] = ACTIONS(2121), + [anon_sym_default] = ACTIONS(1179), + [anon_sym_throw] = ACTIONS(1181), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2123), - [anon_sym_DOT_DOT] = ACTIONS(2125), + [anon_sym_await] = ACTIONS(1183), + [anon_sym_DOT_DOT] = ACTIONS(1185), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -340366,19 +344477,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1277), - [anon_sym_sizeof] = ACTIONS(1279), - [anon_sym_typeof] = ACTIONS(1281), - [anon_sym___makeref] = ACTIONS(1283), - [anon_sym___reftype] = ACTIONS(1285), - [anon_sym___refvalue] = ACTIONS(1287), - [sym_null_literal] = ACTIONS(1289), - [anon_sym_SQUOTE] = ACTIONS(1291), - [sym_integer_literal] = ACTIONS(1289), - [sym_real_literal] = ACTIONS(1293), - [anon_sym_DQUOTE] = ACTIONS(1295), - [sym_verbatim_string_literal] = ACTIONS(1293), - [aux_sym_preproc_if_token1] = ACTIONS(2127), + [anon_sym_stackalloc] = ACTIONS(1187), + [anon_sym_sizeof] = ACTIONS(1189), + [anon_sym_typeof] = ACTIONS(1191), + [anon_sym___makeref] = ACTIONS(1193), + [anon_sym___reftype] = ACTIONS(1195), + [anon_sym___refvalue] = ACTIONS(1197), + [sym_null_literal] = ACTIONS(1199), + [anon_sym_SQUOTE] = ACTIONS(1201), + [sym_integer_literal] = ACTIONS(1199), + [sym_real_literal] = ACTIONS(1203), + [anon_sym_DQUOTE] = ACTIONS(1205), + [sym_verbatim_string_literal] = ACTIONS(1203), + [aux_sym_preproc_if_token1] = ACTIONS(1207), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -340389,140 +344500,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(1299), - [sym_interpolation_verbatim_start] = ACTIONS(1301), - [sym_interpolation_raw_start] = ACTIONS(1303), - [sym_raw_string_start] = ACTIONS(1305), + [sym_interpolation_regular_start] = ACTIONS(1209), + [sym_interpolation_verbatim_start] = ACTIONS(1211), + [sym_interpolation_raw_start] = ACTIONS(1213), + [sym_raw_string_start] = ACTIONS(1215), }, - [1767] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2420), - [sym__name] = STATE(5887), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2197), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(5181), - [sym_non_lvalue_expression] = STATE(3066), - [sym_lvalue_expression] = STATE(3637), - [sym__expression_statement_expression] = STATE(3006), - [sym_assignment_expression] = STATE(3020), - [sym_binary_expression] = STATE(3006), - [sym_postfix_unary_expression] = STATE(3020), - [sym_prefix_unary_expression] = STATE(3020), - [sym__pointer_indirection_expression] = STATE(2423), - [sym_query_expression] = STATE(3006), - [sym_from_clause] = STATE(6148), - [sym_conditional_expression] = STATE(3006), - [sym_conditional_access_expression] = STATE(3006), - [sym_as_expression] = STATE(3006), - [sym_is_expression] = STATE(3006), - [sym_is_pattern_expression] = STATE(3006), - [sym_cast_expression] = STATE(3006), - [sym_checked_expression] = STATE(3006), - [sym_invocation_expression] = STATE(3020), - [sym_switch_expression] = STATE(3006), - [sym_await_expression] = STATE(3020), - [sym_throw_expression] = STATE(3006), - [sym_element_access_expression] = STATE(2423), - [sym_interpolated_string_expression] = STATE(3006), - [sym_member_access_expression] = STATE(2423), - [sym_object_creation_expression] = STATE(3020), - [sym_parenthesized_expression] = STATE(3020), - [sym__parenthesized_lvalue_expression] = STATE(2423), - [sym_lambda_expression] = STATE(3006), - [sym__lambda_expression_init] = STATE(7507), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3006), - [sym_anonymous_method_expression] = STATE(3006), - [sym_anonymous_object_creation_expression] = STATE(3006), - [sym_implicit_array_creation_expression] = STATE(3006), - [sym_implicit_object_creation_expression] = STATE(3006), - [sym_implicit_stackalloc_expression] = STATE(3006), - [sym_initializer_expression] = STATE(3006), - [sym_default_expression] = STATE(3006), - [sym_with_expression] = STATE(3006), - [sym_sizeof_expression] = STATE(3006), - [sym_typeof_expression] = STATE(3006), - [sym_makeref_expression] = STATE(3006), - [sym_ref_expression] = STATE(3006), - [sym_reftype_expression] = STATE(3006), - [sym_refvalue_expression] = STATE(3006), - [sym_stackalloc_expression] = STATE(3006), - [sym_range_expression] = STATE(3006), - [sym_tuple_expression] = STATE(2423), - [sym_literal] = STATE(3006), - [sym_character_literal] = STATE(3011), - [sym_string_literal] = STATE(3011), - [sym_raw_string_literal] = STATE(3011), - [sym_boolean_literal] = STATE(3011), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3006), - [sym_preproc_if_in_attribute_list] = STATE(5576), - [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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3440), + [1792] = { + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(5873), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2238), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(4912), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3468), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3102), + [sym_postfix_unary_expression] = STATE(3079), + [sym_prefix_unary_expression] = STATE(3079), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6134), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3102), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3079), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3102), + [sym_member_access_expression] = STATE(2472), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3079), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7309), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(3102), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3102), + [sym_typeof_expression] = STATE(3102), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2472), + [sym_literal] = STATE(3102), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), + [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(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1241), - [anon_sym_LPAREN] = ACTIONS(2113), - [anon_sym_ref] = ACTIONS(2115), - [anon_sym_LBRACE] = ACTIONS(1247), - [anon_sym_delegate] = ACTIONS(1249), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1479), + [anon_sym_LPAREN] = ACTIONS(659), + [anon_sym_ref] = ACTIONS(663), + [anon_sym_LBRACE] = ACTIONS(1481), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1251), + [anon_sym_new] = ACTIONS(1059), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1253), - [anon_sym_BANG] = ACTIONS(2119), - [anon_sym_TILDE] = ACTIONS(2119), - [anon_sym_PLUS_PLUS] = ACTIONS(2119), - [anon_sym_DASH_DASH] = ACTIONS(2119), - [anon_sym_true] = ACTIONS(1259), - [anon_sym_false] = ACTIONS(1259), - [anon_sym_PLUS] = ACTIONS(2117), - [anon_sym_DASH] = ACTIONS(2117), - [anon_sym_STAR] = ACTIONS(1261), - [anon_sym_CARET] = ACTIONS(2119), - [anon_sym_AMP] = ACTIONS(2119), - [anon_sym_this] = ACTIONS(1263), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(1485), + [anon_sym_TILDE] = ACTIONS(1485), + [anon_sym_PLUS_PLUS] = ACTIONS(1485), + [anon_sym_DASH_DASH] = ACTIONS(1485), + [anon_sym_true] = ACTIONS(77), + [anon_sym_false] = ACTIONS(77), + [anon_sym_PLUS] = ACTIONS(1483), + [anon_sym_DASH] = ACTIONS(1483), + [anon_sym_STAR] = ACTIONS(683), + [anon_sym_CARET] = ACTIONS(1485), + [anon_sym_AMP] = ACTIONS(1485), + [anon_sym_this] = ACTIONS(83), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1265), + [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1267), - [anon_sym_unchecked] = ACTIONS(1253), + [sym_predefined_type] = ACTIONS(91), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1269), - [anon_sym_throw] = ACTIONS(2121), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(1077), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2123), - [anon_sym_DOT_DOT] = ACTIONS(2125), + [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), @@ -340535,19 +344646,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1277), - [anon_sym_sizeof] = ACTIONS(1279), - [anon_sym_typeof] = ACTIONS(1281), - [anon_sym___makeref] = ACTIONS(1283), - [anon_sym___reftype] = ACTIONS(1285), - [anon_sym___refvalue] = ACTIONS(1287), - [sym_null_literal] = ACTIONS(1289), - [anon_sym_SQUOTE] = ACTIONS(1291), - [sym_integer_literal] = ACTIONS(1289), - [sym_real_literal] = ACTIONS(1293), - [anon_sym_DQUOTE] = ACTIONS(1295), - [sym_verbatim_string_literal] = ACTIONS(1293), - [aux_sym_preproc_if_token1] = ACTIONS(2127), + [anon_sym_stackalloc] = ACTIONS(127), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_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), @@ -340558,140 +344669,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(1299), - [sym_interpolation_verbatim_start] = ACTIONS(1301), - [sym_interpolation_raw_start] = ACTIONS(1303), - [sym_raw_string_start] = ACTIONS(1305), + [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(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2420), - [sym__name] = STATE(5887), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2197), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(5182), - [sym_non_lvalue_expression] = STATE(3066), - [sym_lvalue_expression] = STATE(3637), - [sym__expression_statement_expression] = STATE(3006), - [sym_assignment_expression] = STATE(3020), - [sym_binary_expression] = STATE(3006), - [sym_postfix_unary_expression] = STATE(3020), - [sym_prefix_unary_expression] = STATE(3020), - [sym__pointer_indirection_expression] = STATE(2423), - [sym_query_expression] = STATE(3006), - [sym_from_clause] = STATE(6148), - [sym_conditional_expression] = STATE(3006), - [sym_conditional_access_expression] = STATE(3006), - [sym_as_expression] = STATE(3006), - [sym_is_expression] = STATE(3006), - [sym_is_pattern_expression] = STATE(3006), - [sym_cast_expression] = STATE(3006), - [sym_checked_expression] = STATE(3006), - [sym_invocation_expression] = STATE(3020), - [sym_switch_expression] = STATE(3006), - [sym_await_expression] = STATE(3020), - [sym_throw_expression] = STATE(3006), - [sym_element_access_expression] = STATE(2423), - [sym_interpolated_string_expression] = STATE(3006), - [sym_member_access_expression] = STATE(2423), - [sym_object_creation_expression] = STATE(3020), - [sym_parenthesized_expression] = STATE(3020), - [sym__parenthesized_lvalue_expression] = STATE(2423), - [sym_lambda_expression] = STATE(3006), - [sym__lambda_expression_init] = STATE(7507), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3006), - [sym_anonymous_method_expression] = STATE(3006), - [sym_anonymous_object_creation_expression] = STATE(3006), - [sym_implicit_array_creation_expression] = STATE(3006), - [sym_implicit_object_creation_expression] = STATE(3006), - [sym_implicit_stackalloc_expression] = STATE(3006), - [sym_initializer_expression] = STATE(3006), - [sym_default_expression] = STATE(3006), - [sym_with_expression] = STATE(3006), - [sym_sizeof_expression] = STATE(3006), - [sym_typeof_expression] = STATE(3006), - [sym_makeref_expression] = STATE(3006), - [sym_ref_expression] = STATE(3006), - [sym_reftype_expression] = STATE(3006), - [sym_refvalue_expression] = STATE(3006), - [sym_stackalloc_expression] = STATE(3006), - [sym_range_expression] = STATE(3006), - [sym_tuple_expression] = STATE(2423), - [sym_literal] = STATE(3006), - [sym_character_literal] = STATE(3011), - [sym_string_literal] = STATE(3011), - [sym_raw_string_literal] = STATE(3011), - [sym_boolean_literal] = STATE(3011), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3006), - [sym_preproc_if_in_attribute_list] = STATE(5576), - [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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3440), + [1793] = { + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2603), + [sym__name] = STATE(5862), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2193), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(3133), + [sym_non_lvalue_expression] = STATE(3220), + [sym_lvalue_expression] = STATE(2955), + [sym__expression_statement_expression] = STATE(3236), + [sym_assignment_expression] = STATE(3221), + [sym_binary_expression] = STATE(3236), + [sym_postfix_unary_expression] = STATE(3221), + [sym_prefix_unary_expression] = STATE(3221), + [sym__pointer_indirection_expression] = STATE(2602), + [sym_query_expression] = STATE(3236), + [sym_from_clause] = STATE(6143), + [sym_conditional_expression] = STATE(3236), + [sym_conditional_access_expression] = STATE(3236), + [sym_as_expression] = STATE(3236), + [sym_is_expression] = STATE(3236), + [sym_is_pattern_expression] = STATE(3236), + [sym_cast_expression] = STATE(3236), + [sym_checked_expression] = STATE(3236), + [sym_invocation_expression] = STATE(3221), + [sym_switch_expression] = STATE(3236), + [sym_await_expression] = STATE(3221), + [sym_throw_expression] = STATE(3236), + [sym_element_access_expression] = STATE(2602), + [sym_interpolated_string_expression] = STATE(3236), + [sym_member_access_expression] = STATE(2602), + [sym_object_creation_expression] = STATE(3221), + [sym_parenthesized_expression] = STATE(3221), + [sym__parenthesized_lvalue_expression] = STATE(2602), + [sym_lambda_expression] = STATE(3236), + [sym__lambda_expression_init] = STATE(7668), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3236), + [sym_anonymous_method_expression] = STATE(3236), + [sym_anonymous_object_creation_expression] = STATE(3236), + [sym_implicit_array_creation_expression] = STATE(3236), + [sym_implicit_object_creation_expression] = STATE(3236), + [sym_implicit_stackalloc_expression] = STATE(3236), + [sym_initializer_expression] = STATE(3236), + [sym_default_expression] = STATE(3236), + [sym_with_expression] = STATE(3236), + [sym_sizeof_expression] = STATE(3236), + [sym_typeof_expression] = STATE(3236), + [sym_makeref_expression] = STATE(3236), + [sym_ref_expression] = STATE(3236), + [sym_reftype_expression] = STATE(3236), + [sym_refvalue_expression] = STATE(3236), + [sym_stackalloc_expression] = STATE(3236), + [sym_range_expression] = STATE(3236), + [sym_tuple_expression] = STATE(2602), + [sym_literal] = STATE(3236), + [sym_character_literal] = STATE(3272), + [sym_string_literal] = STATE(3272), + [sym_raw_string_literal] = STATE(3272), + [sym_boolean_literal] = STATE(3272), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3236), + [sym_preproc_if_in_attribute_list] = STATE(5583), + [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(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3379), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1241), - [anon_sym_LPAREN] = ACTIONS(2113), - [anon_sym_ref] = ACTIONS(2115), - [anon_sym_LBRACE] = ACTIONS(1247), - [anon_sym_delegate] = ACTIONS(1249), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1149), + [anon_sym_LPAREN] = ACTIONS(1151), + [anon_sym_ref] = ACTIONS(1153), + [anon_sym_LBRACE] = ACTIONS(1155), + [anon_sym_delegate] = ACTIONS(1157), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1251), + [anon_sym_new] = ACTIONS(1159), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1253), - [anon_sym_BANG] = ACTIONS(2119), - [anon_sym_TILDE] = ACTIONS(2119), - [anon_sym_PLUS_PLUS] = ACTIONS(2119), - [anon_sym_DASH_DASH] = ACTIONS(2119), - [anon_sym_true] = ACTIONS(1259), - [anon_sym_false] = ACTIONS(1259), - [anon_sym_PLUS] = ACTIONS(2117), - [anon_sym_DASH] = ACTIONS(2117), - [anon_sym_STAR] = ACTIONS(1261), - [anon_sym_CARET] = ACTIONS(2119), - [anon_sym_AMP] = ACTIONS(2119), - [anon_sym_this] = ACTIONS(1263), + [anon_sym_checked] = ACTIONS(1163), + [anon_sym_BANG] = ACTIONS(1167), + [anon_sym_TILDE] = ACTIONS(1167), + [anon_sym_PLUS_PLUS] = ACTIONS(1167), + [anon_sym_DASH_DASH] = ACTIONS(1167), + [anon_sym_true] = ACTIONS(1169), + [anon_sym_false] = ACTIONS(1169), + [anon_sym_PLUS] = ACTIONS(1165), + [anon_sym_DASH] = ACTIONS(1165), + [anon_sym_STAR] = ACTIONS(1171), + [anon_sym_CARET] = ACTIONS(1167), + [anon_sym_AMP] = ACTIONS(1167), + [anon_sym_this] = ACTIONS(1173), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1265), + [anon_sym_base] = ACTIONS(1175), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1267), - [anon_sym_unchecked] = ACTIONS(1253), + [sym_predefined_type] = ACTIONS(1177), + [anon_sym_unchecked] = ACTIONS(1163), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1269), - [anon_sym_throw] = ACTIONS(2121), + [anon_sym_default] = ACTIONS(1179), + [anon_sym_throw] = ACTIONS(1181), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2123), - [anon_sym_DOT_DOT] = ACTIONS(2125), + [anon_sym_await] = ACTIONS(1183), + [anon_sym_DOT_DOT] = ACTIONS(1185), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -340704,19 +344815,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1277), - [anon_sym_sizeof] = ACTIONS(1279), - [anon_sym_typeof] = ACTIONS(1281), - [anon_sym___makeref] = ACTIONS(1283), - [anon_sym___reftype] = ACTIONS(1285), - [anon_sym___refvalue] = ACTIONS(1287), - [sym_null_literal] = ACTIONS(1289), - [anon_sym_SQUOTE] = ACTIONS(1291), - [sym_integer_literal] = ACTIONS(1289), - [sym_real_literal] = ACTIONS(1293), - [anon_sym_DQUOTE] = ACTIONS(1295), - [sym_verbatim_string_literal] = ACTIONS(1293), - [aux_sym_preproc_if_token1] = ACTIONS(2127), + [anon_sym_stackalloc] = ACTIONS(1187), + [anon_sym_sizeof] = ACTIONS(1189), + [anon_sym_typeof] = ACTIONS(1191), + [anon_sym___makeref] = ACTIONS(1193), + [anon_sym___reftype] = ACTIONS(1195), + [anon_sym___refvalue] = ACTIONS(1197), + [sym_null_literal] = ACTIONS(1199), + [anon_sym_SQUOTE] = ACTIONS(1201), + [sym_integer_literal] = ACTIONS(1199), + [sym_real_literal] = ACTIONS(1203), + [anon_sym_DQUOTE] = ACTIONS(1205), + [sym_verbatim_string_literal] = ACTIONS(1203), + [aux_sym_preproc_if_token1] = ACTIONS(1207), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -340727,140 +344838,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(1299), - [sym_interpolation_verbatim_start] = ACTIONS(1301), - [sym_interpolation_raw_start] = ACTIONS(1303), - [sym_raw_string_start] = ACTIONS(1305), + [sym_interpolation_regular_start] = ACTIONS(1209), + [sym_interpolation_verbatim_start] = ACTIONS(1211), + [sym_interpolation_raw_start] = ACTIONS(1213), + [sym_raw_string_start] = ACTIONS(1215), }, - [1769] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2420), - [sym__name] = STATE(5887), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2197), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(5183), - [sym_non_lvalue_expression] = STATE(3066), - [sym_lvalue_expression] = STATE(3637), - [sym__expression_statement_expression] = STATE(3006), - [sym_assignment_expression] = STATE(3020), - [sym_binary_expression] = STATE(3006), - [sym_postfix_unary_expression] = STATE(3020), - [sym_prefix_unary_expression] = STATE(3020), - [sym__pointer_indirection_expression] = STATE(2423), - [sym_query_expression] = STATE(3006), - [sym_from_clause] = STATE(6148), - [sym_conditional_expression] = STATE(3006), - [sym_conditional_access_expression] = STATE(3006), - [sym_as_expression] = STATE(3006), - [sym_is_expression] = STATE(3006), - [sym_is_pattern_expression] = STATE(3006), - [sym_cast_expression] = STATE(3006), - [sym_checked_expression] = STATE(3006), - [sym_invocation_expression] = STATE(3020), - [sym_switch_expression] = STATE(3006), - [sym_await_expression] = STATE(3020), - [sym_throw_expression] = STATE(3006), - [sym_element_access_expression] = STATE(2423), - [sym_interpolated_string_expression] = STATE(3006), - [sym_member_access_expression] = STATE(2423), - [sym_object_creation_expression] = STATE(3020), - [sym_parenthesized_expression] = STATE(3020), - [sym__parenthesized_lvalue_expression] = STATE(2423), - [sym_lambda_expression] = STATE(3006), - [sym__lambda_expression_init] = STATE(7507), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3006), - [sym_anonymous_method_expression] = STATE(3006), - [sym_anonymous_object_creation_expression] = STATE(3006), - [sym_implicit_array_creation_expression] = STATE(3006), - [sym_implicit_object_creation_expression] = STATE(3006), - [sym_implicit_stackalloc_expression] = STATE(3006), - [sym_initializer_expression] = STATE(3006), - [sym_default_expression] = STATE(3006), - [sym_with_expression] = STATE(3006), - [sym_sizeof_expression] = STATE(3006), - [sym_typeof_expression] = STATE(3006), - [sym_makeref_expression] = STATE(3006), - [sym_ref_expression] = STATE(3006), - [sym_reftype_expression] = STATE(3006), - [sym_refvalue_expression] = STATE(3006), - [sym_stackalloc_expression] = STATE(3006), - [sym_range_expression] = STATE(3006), - [sym_tuple_expression] = STATE(2423), - [sym_literal] = STATE(3006), - [sym_character_literal] = STATE(3011), - [sym_string_literal] = STATE(3011), - [sym_raw_string_literal] = STATE(3011), - [sym_boolean_literal] = STATE(3011), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3006), - [sym_preproc_if_in_attribute_list] = STATE(5576), - [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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3440), + [1794] = { + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(5873), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2238), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(4914), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3468), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3102), + [sym_postfix_unary_expression] = STATE(3079), + [sym_prefix_unary_expression] = STATE(3079), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6134), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3102), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3079), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3102), + [sym_member_access_expression] = STATE(2472), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3079), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7309), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(3102), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3102), + [sym_typeof_expression] = STATE(3102), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2472), + [sym_literal] = STATE(3102), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), + [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(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1241), - [anon_sym_LPAREN] = ACTIONS(2113), - [anon_sym_ref] = ACTIONS(2115), - [anon_sym_LBRACE] = ACTIONS(1247), - [anon_sym_delegate] = ACTIONS(1249), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1479), + [anon_sym_LPAREN] = ACTIONS(659), + [anon_sym_ref] = ACTIONS(663), + [anon_sym_LBRACE] = ACTIONS(1481), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1251), + [anon_sym_new] = ACTIONS(1059), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1253), - [anon_sym_BANG] = ACTIONS(2119), - [anon_sym_TILDE] = ACTIONS(2119), - [anon_sym_PLUS_PLUS] = ACTIONS(2119), - [anon_sym_DASH_DASH] = ACTIONS(2119), - [anon_sym_true] = ACTIONS(1259), - [anon_sym_false] = ACTIONS(1259), - [anon_sym_PLUS] = ACTIONS(2117), - [anon_sym_DASH] = ACTIONS(2117), - [anon_sym_STAR] = ACTIONS(1261), - [anon_sym_CARET] = ACTIONS(2119), - [anon_sym_AMP] = ACTIONS(2119), - [anon_sym_this] = ACTIONS(1263), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(1485), + [anon_sym_TILDE] = ACTIONS(1485), + [anon_sym_PLUS_PLUS] = ACTIONS(1485), + [anon_sym_DASH_DASH] = ACTIONS(1485), + [anon_sym_true] = ACTIONS(77), + [anon_sym_false] = ACTIONS(77), + [anon_sym_PLUS] = ACTIONS(1483), + [anon_sym_DASH] = ACTIONS(1483), + [anon_sym_STAR] = ACTIONS(683), + [anon_sym_CARET] = ACTIONS(1485), + [anon_sym_AMP] = ACTIONS(1485), + [anon_sym_this] = ACTIONS(83), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1265), + [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1267), - [anon_sym_unchecked] = ACTIONS(1253), + [sym_predefined_type] = ACTIONS(91), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1269), - [anon_sym_throw] = ACTIONS(2121), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(1077), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2123), - [anon_sym_DOT_DOT] = ACTIONS(2125), + [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), @@ -340873,19 +344984,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1277), - [anon_sym_sizeof] = ACTIONS(1279), - [anon_sym_typeof] = ACTIONS(1281), - [anon_sym___makeref] = ACTIONS(1283), - [anon_sym___reftype] = ACTIONS(1285), - [anon_sym___refvalue] = ACTIONS(1287), - [sym_null_literal] = ACTIONS(1289), - [anon_sym_SQUOTE] = ACTIONS(1291), - [sym_integer_literal] = ACTIONS(1289), - [sym_real_literal] = ACTIONS(1293), - [anon_sym_DQUOTE] = ACTIONS(1295), - [sym_verbatim_string_literal] = ACTIONS(1293), - [aux_sym_preproc_if_token1] = ACTIONS(2127), + [anon_sym_stackalloc] = ACTIONS(127), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_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), @@ -340896,140 +345007,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(1299), - [sym_interpolation_verbatim_start] = ACTIONS(1301), - [sym_interpolation_raw_start] = ACTIONS(1303), - [sym_raw_string_start] = ACTIONS(1305), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [sym_interpolation_raw_start] = ACTIONS(155), + [sym_raw_string_start] = ACTIONS(157), }, - [1770] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2420), - [sym__name] = STATE(5887), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2197), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(5184), - [sym_non_lvalue_expression] = STATE(3066), - [sym_lvalue_expression] = STATE(3637), - [sym__expression_statement_expression] = STATE(3006), - [sym_assignment_expression] = STATE(3020), - [sym_binary_expression] = STATE(3006), - [sym_postfix_unary_expression] = STATE(3020), - [sym_prefix_unary_expression] = STATE(3020), - [sym__pointer_indirection_expression] = STATE(2423), - [sym_query_expression] = STATE(3006), - [sym_from_clause] = STATE(6148), - [sym_conditional_expression] = STATE(3006), - [sym_conditional_access_expression] = STATE(3006), - [sym_as_expression] = STATE(3006), - [sym_is_expression] = STATE(3006), - [sym_is_pattern_expression] = STATE(3006), - [sym_cast_expression] = STATE(3006), - [sym_checked_expression] = STATE(3006), - [sym_invocation_expression] = STATE(3020), - [sym_switch_expression] = STATE(3006), - [sym_await_expression] = STATE(3020), - [sym_throw_expression] = STATE(3006), - [sym_element_access_expression] = STATE(2423), - [sym_interpolated_string_expression] = STATE(3006), - [sym_member_access_expression] = STATE(2423), - [sym_object_creation_expression] = STATE(3020), - [sym_parenthesized_expression] = STATE(3020), - [sym__parenthesized_lvalue_expression] = STATE(2423), - [sym_lambda_expression] = STATE(3006), - [sym__lambda_expression_init] = STATE(7507), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3006), - [sym_anonymous_method_expression] = STATE(3006), - [sym_anonymous_object_creation_expression] = STATE(3006), - [sym_implicit_array_creation_expression] = STATE(3006), - [sym_implicit_object_creation_expression] = STATE(3006), - [sym_implicit_stackalloc_expression] = STATE(3006), - [sym_initializer_expression] = STATE(3006), - [sym_default_expression] = STATE(3006), - [sym_with_expression] = STATE(3006), - [sym_sizeof_expression] = STATE(3006), - [sym_typeof_expression] = STATE(3006), - [sym_makeref_expression] = STATE(3006), - [sym_ref_expression] = STATE(3006), - [sym_reftype_expression] = STATE(3006), - [sym_refvalue_expression] = STATE(3006), - [sym_stackalloc_expression] = STATE(3006), - [sym_range_expression] = STATE(3006), - [sym_tuple_expression] = STATE(2423), - [sym_literal] = STATE(3006), - [sym_character_literal] = STATE(3011), - [sym_string_literal] = STATE(3011), - [sym_raw_string_literal] = STATE(3011), - [sym_boolean_literal] = STATE(3011), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3006), - [sym_preproc_if_in_attribute_list] = STATE(5576), - [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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3440), + [1795] = { + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(5152), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2196), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(5545), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3640), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3102), + [sym_postfix_unary_expression] = STATE(3079), + [sym_prefix_unary_expression] = STATE(3079), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6137), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3102), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3079), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3102), + [sym_member_access_expression] = STATE(2472), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3079), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7645), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(3102), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3102), + [sym_typeof_expression] = STATE(3102), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2472), + [sym_literal] = STATE(3102), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), + [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(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1241), - [anon_sym_LPAREN] = ACTIONS(2113), - [anon_sym_ref] = ACTIONS(2115), - [anon_sym_LBRACE] = ACTIONS(1247), - [anon_sym_delegate] = ACTIONS(1249), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1479), + [anon_sym_LPAREN] = ACTIONS(2081), + [anon_sym_ref] = ACTIONS(2083), + [anon_sym_LBRACE] = ACTIONS(1481), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1251), + [anon_sym_new] = ACTIONS(1059), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1253), - [anon_sym_BANG] = ACTIONS(2119), - [anon_sym_TILDE] = ACTIONS(2119), - [anon_sym_PLUS_PLUS] = ACTIONS(2119), - [anon_sym_DASH_DASH] = ACTIONS(2119), - [anon_sym_true] = ACTIONS(1259), - [anon_sym_false] = ACTIONS(1259), - [anon_sym_PLUS] = ACTIONS(2117), - [anon_sym_DASH] = ACTIONS(2117), - [anon_sym_STAR] = ACTIONS(1261), - [anon_sym_CARET] = ACTIONS(2119), - [anon_sym_AMP] = ACTIONS(2119), - [anon_sym_this] = ACTIONS(1263), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(2087), + [anon_sym_TILDE] = ACTIONS(2087), + [anon_sym_PLUS_PLUS] = ACTIONS(2087), + [anon_sym_DASH_DASH] = ACTIONS(2087), + [anon_sym_true] = ACTIONS(77), + [anon_sym_false] = ACTIONS(77), + [anon_sym_PLUS] = ACTIONS(2085), + [anon_sym_DASH] = ACTIONS(2085), + [anon_sym_STAR] = ACTIONS(81), + [anon_sym_CARET] = ACTIONS(2087), + [anon_sym_AMP] = ACTIONS(2087), + [anon_sym_this] = ACTIONS(83), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1265), + [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1267), - [anon_sym_unchecked] = ACTIONS(1253), + [sym_predefined_type] = ACTIONS(91), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1269), - [anon_sym_throw] = ACTIONS(2121), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(2089), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2123), - [anon_sym_DOT_DOT] = ACTIONS(2125), + [anon_sym_await] = ACTIONS(2091), + [anon_sym_DOT_DOT] = ACTIONS(2093), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -341042,19 +345153,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1277), - [anon_sym_sizeof] = ACTIONS(1279), - [anon_sym_typeof] = ACTIONS(1281), - [anon_sym___makeref] = ACTIONS(1283), - [anon_sym___reftype] = ACTIONS(1285), - [anon_sym___refvalue] = ACTIONS(1287), - [sym_null_literal] = ACTIONS(1289), - [anon_sym_SQUOTE] = ACTIONS(1291), - [sym_integer_literal] = ACTIONS(1289), - [sym_real_literal] = ACTIONS(1293), - [anon_sym_DQUOTE] = ACTIONS(1295), - [sym_verbatim_string_literal] = ACTIONS(1293), - [aux_sym_preproc_if_token1] = ACTIONS(2127), + [anon_sym_stackalloc] = ACTIONS(127), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_literal] = ACTIONS(143), + [anon_sym_DQUOTE] = ACTIONS(145), + [sym_verbatim_string_literal] = ACTIONS(143), + [aux_sym_preproc_if_token1] = ACTIONS(2095), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -341065,140 +345176,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(1299), - [sym_interpolation_verbatim_start] = ACTIONS(1301), - [sym_interpolation_raw_start] = ACTIONS(1303), - [sym_raw_string_start] = ACTIONS(1305), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [sym_interpolation_raw_start] = ACTIONS(155), + [sym_raw_string_start] = ACTIONS(157), }, - [1771] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2420), - [sym__name] = STATE(5887), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2197), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(5185), - [sym_non_lvalue_expression] = STATE(3066), - [sym_lvalue_expression] = STATE(3637), - [sym__expression_statement_expression] = STATE(3006), - [sym_assignment_expression] = STATE(3020), - [sym_binary_expression] = STATE(3006), - [sym_postfix_unary_expression] = STATE(3020), - [sym_prefix_unary_expression] = STATE(3020), - [sym__pointer_indirection_expression] = STATE(2423), - [sym_query_expression] = STATE(3006), - [sym_from_clause] = STATE(6148), - [sym_conditional_expression] = STATE(3006), - [sym_conditional_access_expression] = STATE(3006), - [sym_as_expression] = STATE(3006), - [sym_is_expression] = STATE(3006), - [sym_is_pattern_expression] = STATE(3006), - [sym_cast_expression] = STATE(3006), - [sym_checked_expression] = STATE(3006), - [sym_invocation_expression] = STATE(3020), - [sym_switch_expression] = STATE(3006), - [sym_await_expression] = STATE(3020), - [sym_throw_expression] = STATE(3006), - [sym_element_access_expression] = STATE(2423), - [sym_interpolated_string_expression] = STATE(3006), - [sym_member_access_expression] = STATE(2423), - [sym_object_creation_expression] = STATE(3020), - [sym_parenthesized_expression] = STATE(3020), - [sym__parenthesized_lvalue_expression] = STATE(2423), - [sym_lambda_expression] = STATE(3006), - [sym__lambda_expression_init] = STATE(7507), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3006), - [sym_anonymous_method_expression] = STATE(3006), - [sym_anonymous_object_creation_expression] = STATE(3006), - [sym_implicit_array_creation_expression] = STATE(3006), - [sym_implicit_object_creation_expression] = STATE(3006), - [sym_implicit_stackalloc_expression] = STATE(3006), - [sym_initializer_expression] = STATE(3006), - [sym_default_expression] = STATE(3006), - [sym_with_expression] = STATE(3006), - [sym_sizeof_expression] = STATE(3006), - [sym_typeof_expression] = STATE(3006), - [sym_makeref_expression] = STATE(3006), - [sym_ref_expression] = STATE(3006), - [sym_reftype_expression] = STATE(3006), - [sym_refvalue_expression] = STATE(3006), - [sym_stackalloc_expression] = STATE(3006), - [sym_range_expression] = STATE(3006), - [sym_tuple_expression] = STATE(2423), - [sym_literal] = STATE(3006), - [sym_character_literal] = STATE(3011), - [sym_string_literal] = STATE(3011), - [sym_raw_string_literal] = STATE(3011), - [sym_boolean_literal] = STATE(3011), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3006), - [sym_preproc_if_in_attribute_list] = STATE(5576), - [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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3440), + [1796] = { + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2603), + [sym__name] = STATE(5862), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2193), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(3694), + [sym_non_lvalue_expression] = STATE(3220), + [sym_lvalue_expression] = STATE(2955), + [sym__expression_statement_expression] = STATE(3236), + [sym_assignment_expression] = STATE(3221), + [sym_binary_expression] = STATE(3236), + [sym_postfix_unary_expression] = STATE(3221), + [sym_prefix_unary_expression] = STATE(3221), + [sym__pointer_indirection_expression] = STATE(2602), + [sym_query_expression] = STATE(3236), + [sym_from_clause] = STATE(6143), + [sym_conditional_expression] = STATE(3236), + [sym_conditional_access_expression] = STATE(3236), + [sym_as_expression] = STATE(3236), + [sym_is_expression] = STATE(3236), + [sym_is_pattern_expression] = STATE(3236), + [sym_cast_expression] = STATE(3236), + [sym_checked_expression] = STATE(3236), + [sym_invocation_expression] = STATE(3221), + [sym_switch_expression] = STATE(3236), + [sym_await_expression] = STATE(3221), + [sym_throw_expression] = STATE(3236), + [sym_element_access_expression] = STATE(2602), + [sym_interpolated_string_expression] = STATE(3236), + [sym_member_access_expression] = STATE(2602), + [sym_object_creation_expression] = STATE(3221), + [sym_parenthesized_expression] = STATE(3221), + [sym__parenthesized_lvalue_expression] = STATE(2602), + [sym_lambda_expression] = STATE(3236), + [sym__lambda_expression_init] = STATE(7668), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3236), + [sym_anonymous_method_expression] = STATE(3236), + [sym_anonymous_object_creation_expression] = STATE(3236), + [sym_implicit_array_creation_expression] = STATE(3236), + [sym_implicit_object_creation_expression] = STATE(3236), + [sym_implicit_stackalloc_expression] = STATE(3236), + [sym_initializer_expression] = STATE(3236), + [sym_default_expression] = STATE(3236), + [sym_with_expression] = STATE(3236), + [sym_sizeof_expression] = STATE(3236), + [sym_typeof_expression] = STATE(3236), + [sym_makeref_expression] = STATE(3236), + [sym_ref_expression] = STATE(3236), + [sym_reftype_expression] = STATE(3236), + [sym_refvalue_expression] = STATE(3236), + [sym_stackalloc_expression] = STATE(3236), + [sym_range_expression] = STATE(3236), + [sym_tuple_expression] = STATE(2602), + [sym_literal] = STATE(3236), + [sym_character_literal] = STATE(3272), + [sym_string_literal] = STATE(3272), + [sym_raw_string_literal] = STATE(3272), + [sym_boolean_literal] = STATE(3272), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3236), + [sym_preproc_if_in_attribute_list] = STATE(5583), + [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(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3379), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1241), - [anon_sym_LPAREN] = ACTIONS(2113), - [anon_sym_ref] = ACTIONS(2115), - [anon_sym_LBRACE] = ACTIONS(1247), - [anon_sym_delegate] = ACTIONS(1249), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1149), + [anon_sym_LPAREN] = ACTIONS(1151), + [anon_sym_ref] = ACTIONS(1153), + [anon_sym_LBRACE] = ACTIONS(1155), + [anon_sym_delegate] = ACTIONS(1157), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1251), + [anon_sym_new] = ACTIONS(1159), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1253), - [anon_sym_BANG] = ACTIONS(2119), - [anon_sym_TILDE] = ACTIONS(2119), - [anon_sym_PLUS_PLUS] = ACTIONS(2119), - [anon_sym_DASH_DASH] = ACTIONS(2119), - [anon_sym_true] = ACTIONS(1259), - [anon_sym_false] = ACTIONS(1259), - [anon_sym_PLUS] = ACTIONS(2117), - [anon_sym_DASH] = ACTIONS(2117), - [anon_sym_STAR] = ACTIONS(1261), - [anon_sym_CARET] = ACTIONS(2119), - [anon_sym_AMP] = ACTIONS(2119), - [anon_sym_this] = ACTIONS(1263), + [anon_sym_checked] = ACTIONS(1163), + [anon_sym_BANG] = ACTIONS(1167), + [anon_sym_TILDE] = ACTIONS(1167), + [anon_sym_PLUS_PLUS] = ACTIONS(1167), + [anon_sym_DASH_DASH] = ACTIONS(1167), + [anon_sym_true] = ACTIONS(1169), + [anon_sym_false] = ACTIONS(1169), + [anon_sym_PLUS] = ACTIONS(1165), + [anon_sym_DASH] = ACTIONS(1165), + [anon_sym_STAR] = ACTIONS(1171), + [anon_sym_CARET] = ACTIONS(1167), + [anon_sym_AMP] = ACTIONS(1167), + [anon_sym_this] = ACTIONS(1173), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1265), + [anon_sym_base] = ACTIONS(1175), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1267), - [anon_sym_unchecked] = ACTIONS(1253), + [sym_predefined_type] = ACTIONS(1177), + [anon_sym_unchecked] = ACTIONS(1163), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1269), - [anon_sym_throw] = ACTIONS(2121), + [anon_sym_default] = ACTIONS(1179), + [anon_sym_throw] = ACTIONS(1181), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2123), - [anon_sym_DOT_DOT] = ACTIONS(2125), + [anon_sym_await] = ACTIONS(1183), + [anon_sym_DOT_DOT] = ACTIONS(1185), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -341211,19 +345322,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1277), - [anon_sym_sizeof] = ACTIONS(1279), - [anon_sym_typeof] = ACTIONS(1281), - [anon_sym___makeref] = ACTIONS(1283), - [anon_sym___reftype] = ACTIONS(1285), - [anon_sym___refvalue] = ACTIONS(1287), - [sym_null_literal] = ACTIONS(1289), - [anon_sym_SQUOTE] = ACTIONS(1291), - [sym_integer_literal] = ACTIONS(1289), - [sym_real_literal] = ACTIONS(1293), - [anon_sym_DQUOTE] = ACTIONS(1295), - [sym_verbatim_string_literal] = ACTIONS(1293), - [aux_sym_preproc_if_token1] = ACTIONS(2127), + [anon_sym_stackalloc] = ACTIONS(1187), + [anon_sym_sizeof] = ACTIONS(1189), + [anon_sym_typeof] = ACTIONS(1191), + [anon_sym___makeref] = ACTIONS(1193), + [anon_sym___reftype] = ACTIONS(1195), + [anon_sym___refvalue] = ACTIONS(1197), + [sym_null_literal] = ACTIONS(1199), + [anon_sym_SQUOTE] = ACTIONS(1201), + [sym_integer_literal] = ACTIONS(1199), + [sym_real_literal] = ACTIONS(1203), + [anon_sym_DQUOTE] = ACTIONS(1205), + [sym_verbatim_string_literal] = ACTIONS(1203), + [aux_sym_preproc_if_token1] = ACTIONS(1207), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -341234,140 +345345,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(1299), - [sym_interpolation_verbatim_start] = ACTIONS(1301), - [sym_interpolation_raw_start] = ACTIONS(1303), - [sym_raw_string_start] = ACTIONS(1305), + [sym_interpolation_regular_start] = ACTIONS(1209), + [sym_interpolation_verbatim_start] = ACTIONS(1211), + [sym_interpolation_raw_start] = ACTIONS(1213), + [sym_raw_string_start] = ACTIONS(1215), }, - [1772] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2420), - [sym__name] = STATE(5887), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2197), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(5186), - [sym_non_lvalue_expression] = STATE(3066), - [sym_lvalue_expression] = STATE(3637), - [sym__expression_statement_expression] = STATE(3006), - [sym_assignment_expression] = STATE(3020), - [sym_binary_expression] = STATE(3006), - [sym_postfix_unary_expression] = STATE(3020), - [sym_prefix_unary_expression] = STATE(3020), - [sym__pointer_indirection_expression] = STATE(2423), - [sym_query_expression] = STATE(3006), - [sym_from_clause] = STATE(6148), - [sym_conditional_expression] = STATE(3006), - [sym_conditional_access_expression] = STATE(3006), - [sym_as_expression] = STATE(3006), - [sym_is_expression] = STATE(3006), - [sym_is_pattern_expression] = STATE(3006), - [sym_cast_expression] = STATE(3006), - [sym_checked_expression] = STATE(3006), - [sym_invocation_expression] = STATE(3020), - [sym_switch_expression] = STATE(3006), - [sym_await_expression] = STATE(3020), - [sym_throw_expression] = STATE(3006), - [sym_element_access_expression] = STATE(2423), - [sym_interpolated_string_expression] = STATE(3006), - [sym_member_access_expression] = STATE(2423), - [sym_object_creation_expression] = STATE(3020), - [sym_parenthesized_expression] = STATE(3020), - [sym__parenthesized_lvalue_expression] = STATE(2423), - [sym_lambda_expression] = STATE(3006), - [sym__lambda_expression_init] = STATE(7507), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3006), - [sym_anonymous_method_expression] = STATE(3006), - [sym_anonymous_object_creation_expression] = STATE(3006), - [sym_implicit_array_creation_expression] = STATE(3006), - [sym_implicit_object_creation_expression] = STATE(3006), - [sym_implicit_stackalloc_expression] = STATE(3006), - [sym_initializer_expression] = STATE(3006), - [sym_default_expression] = STATE(3006), - [sym_with_expression] = STATE(3006), - [sym_sizeof_expression] = STATE(3006), - [sym_typeof_expression] = STATE(3006), - [sym_makeref_expression] = STATE(3006), - [sym_ref_expression] = STATE(3006), - [sym_reftype_expression] = STATE(3006), - [sym_refvalue_expression] = STATE(3006), - [sym_stackalloc_expression] = STATE(3006), - [sym_range_expression] = STATE(3006), - [sym_tuple_expression] = STATE(2423), - [sym_literal] = STATE(3006), - [sym_character_literal] = STATE(3011), - [sym_string_literal] = STATE(3011), - [sym_raw_string_literal] = STATE(3011), - [sym_boolean_literal] = STATE(3011), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3006), - [sym_preproc_if_in_attribute_list] = STATE(5576), - [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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3440), + [1797] = { + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(5152), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2196), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(5546), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3640), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3102), + [sym_postfix_unary_expression] = STATE(3079), + [sym_prefix_unary_expression] = STATE(3079), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6137), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3102), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3079), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3102), + [sym_member_access_expression] = STATE(2472), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3079), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7645), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(3102), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3102), + [sym_typeof_expression] = STATE(3102), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2472), + [sym_literal] = STATE(3102), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), + [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(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1241), - [anon_sym_LPAREN] = ACTIONS(2113), - [anon_sym_ref] = ACTIONS(2115), - [anon_sym_LBRACE] = ACTIONS(1247), - [anon_sym_delegate] = ACTIONS(1249), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1479), + [anon_sym_LPAREN] = ACTIONS(2081), + [anon_sym_ref] = ACTIONS(2083), + [anon_sym_LBRACE] = ACTIONS(1481), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1251), + [anon_sym_new] = ACTIONS(1059), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1253), - [anon_sym_BANG] = ACTIONS(2119), - [anon_sym_TILDE] = ACTIONS(2119), - [anon_sym_PLUS_PLUS] = ACTIONS(2119), - [anon_sym_DASH_DASH] = ACTIONS(2119), - [anon_sym_true] = ACTIONS(1259), - [anon_sym_false] = ACTIONS(1259), - [anon_sym_PLUS] = ACTIONS(2117), - [anon_sym_DASH] = ACTIONS(2117), - [anon_sym_STAR] = ACTIONS(1261), - [anon_sym_CARET] = ACTIONS(2119), - [anon_sym_AMP] = ACTIONS(2119), - [anon_sym_this] = ACTIONS(1263), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(2087), + [anon_sym_TILDE] = ACTIONS(2087), + [anon_sym_PLUS_PLUS] = ACTIONS(2087), + [anon_sym_DASH_DASH] = ACTIONS(2087), + [anon_sym_true] = ACTIONS(77), + [anon_sym_false] = ACTIONS(77), + [anon_sym_PLUS] = ACTIONS(2085), + [anon_sym_DASH] = ACTIONS(2085), + [anon_sym_STAR] = ACTIONS(81), + [anon_sym_CARET] = ACTIONS(2087), + [anon_sym_AMP] = ACTIONS(2087), + [anon_sym_this] = ACTIONS(83), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1265), + [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1267), - [anon_sym_unchecked] = ACTIONS(1253), + [sym_predefined_type] = ACTIONS(91), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1269), - [anon_sym_throw] = ACTIONS(2121), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(2089), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2123), - [anon_sym_DOT_DOT] = ACTIONS(2125), + [anon_sym_await] = ACTIONS(2091), + [anon_sym_DOT_DOT] = ACTIONS(2093), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -341380,19 +345491,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1277), - [anon_sym_sizeof] = ACTIONS(1279), - [anon_sym_typeof] = ACTIONS(1281), - [anon_sym___makeref] = ACTIONS(1283), - [anon_sym___reftype] = ACTIONS(1285), - [anon_sym___refvalue] = ACTIONS(1287), - [sym_null_literal] = ACTIONS(1289), - [anon_sym_SQUOTE] = ACTIONS(1291), - [sym_integer_literal] = ACTIONS(1289), - [sym_real_literal] = ACTIONS(1293), - [anon_sym_DQUOTE] = ACTIONS(1295), - [sym_verbatim_string_literal] = ACTIONS(1293), - [aux_sym_preproc_if_token1] = ACTIONS(2127), + [anon_sym_stackalloc] = ACTIONS(127), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_literal] = ACTIONS(143), + [anon_sym_DQUOTE] = ACTIONS(145), + [sym_verbatim_string_literal] = ACTIONS(143), + [aux_sym_preproc_if_token1] = ACTIONS(2095), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -341403,140 +345514,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(1299), - [sym_interpolation_verbatim_start] = ACTIONS(1301), - [sym_interpolation_raw_start] = ACTIONS(1303), - [sym_raw_string_start] = ACTIONS(1305), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [sym_interpolation_raw_start] = ACTIONS(155), + [sym_raw_string_start] = ACTIONS(157), }, - [1773] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2420), - [sym__name] = STATE(5887), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2197), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(5187), - [sym_non_lvalue_expression] = STATE(3066), - [sym_lvalue_expression] = STATE(3637), - [sym__expression_statement_expression] = STATE(3006), - [sym_assignment_expression] = STATE(3020), - [sym_binary_expression] = STATE(3006), - [sym_postfix_unary_expression] = STATE(3020), - [sym_prefix_unary_expression] = STATE(3020), - [sym__pointer_indirection_expression] = STATE(2423), - [sym_query_expression] = STATE(3006), - [sym_from_clause] = STATE(6148), - [sym_conditional_expression] = STATE(3006), - [sym_conditional_access_expression] = STATE(3006), - [sym_as_expression] = STATE(3006), - [sym_is_expression] = STATE(3006), - [sym_is_pattern_expression] = STATE(3006), - [sym_cast_expression] = STATE(3006), - [sym_checked_expression] = STATE(3006), - [sym_invocation_expression] = STATE(3020), - [sym_switch_expression] = STATE(3006), - [sym_await_expression] = STATE(3020), - [sym_throw_expression] = STATE(3006), - [sym_element_access_expression] = STATE(2423), - [sym_interpolated_string_expression] = STATE(3006), - [sym_member_access_expression] = STATE(2423), - [sym_object_creation_expression] = STATE(3020), - [sym_parenthesized_expression] = STATE(3020), - [sym__parenthesized_lvalue_expression] = STATE(2423), - [sym_lambda_expression] = STATE(3006), - [sym__lambda_expression_init] = STATE(7507), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3006), - [sym_anonymous_method_expression] = STATE(3006), - [sym_anonymous_object_creation_expression] = STATE(3006), - [sym_implicit_array_creation_expression] = STATE(3006), - [sym_implicit_object_creation_expression] = STATE(3006), - [sym_implicit_stackalloc_expression] = STATE(3006), - [sym_initializer_expression] = STATE(3006), - [sym_default_expression] = STATE(3006), - [sym_with_expression] = STATE(3006), - [sym_sizeof_expression] = STATE(3006), - [sym_typeof_expression] = STATE(3006), - [sym_makeref_expression] = STATE(3006), - [sym_ref_expression] = STATE(3006), - [sym_reftype_expression] = STATE(3006), - [sym_refvalue_expression] = STATE(3006), - [sym_stackalloc_expression] = STATE(3006), - [sym_range_expression] = STATE(3006), - [sym_tuple_expression] = STATE(2423), - [sym_literal] = STATE(3006), - [sym_character_literal] = STATE(3011), - [sym_string_literal] = STATE(3011), - [sym_raw_string_literal] = STATE(3011), - [sym_boolean_literal] = STATE(3011), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3006), - [sym_preproc_if_in_attribute_list] = STATE(5576), - [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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3440), + [1798] = { + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(5152), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2196), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(5547), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3640), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3102), + [sym_postfix_unary_expression] = STATE(3079), + [sym_prefix_unary_expression] = STATE(3079), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6137), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3102), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3079), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3102), + [sym_member_access_expression] = STATE(2472), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3079), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7645), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(3102), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3102), + [sym_typeof_expression] = STATE(3102), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2472), + [sym_literal] = STATE(3102), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), + [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(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1241), - [anon_sym_LPAREN] = ACTIONS(2113), - [anon_sym_ref] = ACTIONS(2115), - [anon_sym_LBRACE] = ACTIONS(1247), - [anon_sym_delegate] = ACTIONS(1249), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1479), + [anon_sym_LPAREN] = ACTIONS(2081), + [anon_sym_ref] = ACTIONS(2083), + [anon_sym_LBRACE] = ACTIONS(1481), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1251), + [anon_sym_new] = ACTIONS(1059), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1253), - [anon_sym_BANG] = ACTIONS(2119), - [anon_sym_TILDE] = ACTIONS(2119), - [anon_sym_PLUS_PLUS] = ACTIONS(2119), - [anon_sym_DASH_DASH] = ACTIONS(2119), - [anon_sym_true] = ACTIONS(1259), - [anon_sym_false] = ACTIONS(1259), - [anon_sym_PLUS] = ACTIONS(2117), - [anon_sym_DASH] = ACTIONS(2117), - [anon_sym_STAR] = ACTIONS(1261), - [anon_sym_CARET] = ACTIONS(2119), - [anon_sym_AMP] = ACTIONS(2119), - [anon_sym_this] = ACTIONS(1263), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(2087), + [anon_sym_TILDE] = ACTIONS(2087), + [anon_sym_PLUS_PLUS] = ACTIONS(2087), + [anon_sym_DASH_DASH] = ACTIONS(2087), + [anon_sym_true] = ACTIONS(77), + [anon_sym_false] = ACTIONS(77), + [anon_sym_PLUS] = ACTIONS(2085), + [anon_sym_DASH] = ACTIONS(2085), + [anon_sym_STAR] = ACTIONS(81), + [anon_sym_CARET] = ACTIONS(2087), + [anon_sym_AMP] = ACTIONS(2087), + [anon_sym_this] = ACTIONS(83), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1265), + [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1267), - [anon_sym_unchecked] = ACTIONS(1253), + [sym_predefined_type] = ACTIONS(91), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1269), - [anon_sym_throw] = ACTIONS(2121), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(2089), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2123), - [anon_sym_DOT_DOT] = ACTIONS(2125), + [anon_sym_await] = ACTIONS(2091), + [anon_sym_DOT_DOT] = ACTIONS(2093), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -341549,19 +345660,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1277), - [anon_sym_sizeof] = ACTIONS(1279), - [anon_sym_typeof] = ACTIONS(1281), - [anon_sym___makeref] = ACTIONS(1283), - [anon_sym___reftype] = ACTIONS(1285), - [anon_sym___refvalue] = ACTIONS(1287), - [sym_null_literal] = ACTIONS(1289), - [anon_sym_SQUOTE] = ACTIONS(1291), - [sym_integer_literal] = ACTIONS(1289), - [sym_real_literal] = ACTIONS(1293), - [anon_sym_DQUOTE] = ACTIONS(1295), - [sym_verbatim_string_literal] = ACTIONS(1293), - [aux_sym_preproc_if_token1] = ACTIONS(2127), + [anon_sym_stackalloc] = ACTIONS(127), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_literal] = ACTIONS(143), + [anon_sym_DQUOTE] = ACTIONS(145), + [sym_verbatim_string_literal] = ACTIONS(143), + [aux_sym_preproc_if_token1] = ACTIONS(2095), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -341572,140 +345683,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(1299), - [sym_interpolation_verbatim_start] = ACTIONS(1301), - [sym_interpolation_raw_start] = ACTIONS(1303), - [sym_raw_string_start] = ACTIONS(1305), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [sym_interpolation_raw_start] = ACTIONS(155), + [sym_raw_string_start] = ACTIONS(157), }, - [1774] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2420), - [sym__name] = STATE(5887), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2197), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(5188), - [sym_non_lvalue_expression] = STATE(3066), - [sym_lvalue_expression] = STATE(3637), - [sym__expression_statement_expression] = STATE(3006), - [sym_assignment_expression] = STATE(3020), - [sym_binary_expression] = STATE(3006), - [sym_postfix_unary_expression] = STATE(3020), - [sym_prefix_unary_expression] = STATE(3020), - [sym__pointer_indirection_expression] = STATE(2423), - [sym_query_expression] = STATE(3006), - [sym_from_clause] = STATE(6148), - [sym_conditional_expression] = STATE(3006), - [sym_conditional_access_expression] = STATE(3006), - [sym_as_expression] = STATE(3006), - [sym_is_expression] = STATE(3006), - [sym_is_pattern_expression] = STATE(3006), - [sym_cast_expression] = STATE(3006), - [sym_checked_expression] = STATE(3006), - [sym_invocation_expression] = STATE(3020), - [sym_switch_expression] = STATE(3006), - [sym_await_expression] = STATE(3020), - [sym_throw_expression] = STATE(3006), - [sym_element_access_expression] = STATE(2423), - [sym_interpolated_string_expression] = STATE(3006), - [sym_member_access_expression] = STATE(2423), - [sym_object_creation_expression] = STATE(3020), - [sym_parenthesized_expression] = STATE(3020), - [sym__parenthesized_lvalue_expression] = STATE(2423), - [sym_lambda_expression] = STATE(3006), - [sym__lambda_expression_init] = STATE(7507), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3006), - [sym_anonymous_method_expression] = STATE(3006), - [sym_anonymous_object_creation_expression] = STATE(3006), - [sym_implicit_array_creation_expression] = STATE(3006), - [sym_implicit_object_creation_expression] = STATE(3006), - [sym_implicit_stackalloc_expression] = STATE(3006), - [sym_initializer_expression] = STATE(3006), - [sym_default_expression] = STATE(3006), - [sym_with_expression] = STATE(3006), - [sym_sizeof_expression] = STATE(3006), - [sym_typeof_expression] = STATE(3006), - [sym_makeref_expression] = STATE(3006), - [sym_ref_expression] = STATE(3006), - [sym_reftype_expression] = STATE(3006), - [sym_refvalue_expression] = STATE(3006), - [sym_stackalloc_expression] = STATE(3006), - [sym_range_expression] = STATE(3006), - [sym_tuple_expression] = STATE(2423), - [sym_literal] = STATE(3006), - [sym_character_literal] = STATE(3011), - [sym_string_literal] = STATE(3011), - [sym_raw_string_literal] = STATE(3011), - [sym_boolean_literal] = STATE(3011), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3006), - [sym_preproc_if_in_attribute_list] = STATE(5576), - [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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3440), + [1799] = { + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(5152), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2196), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(5342), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3640), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3102), + [sym_postfix_unary_expression] = STATE(3079), + [sym_prefix_unary_expression] = STATE(3079), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6137), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3102), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3079), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3102), + [sym_member_access_expression] = STATE(2472), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3079), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7645), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(3102), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3102), + [sym_typeof_expression] = STATE(3102), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2472), + [sym_literal] = STATE(3102), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), + [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(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1241), - [anon_sym_LPAREN] = ACTIONS(2113), - [anon_sym_ref] = ACTIONS(2115), - [anon_sym_LBRACE] = ACTIONS(1247), - [anon_sym_delegate] = ACTIONS(1249), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1479), + [anon_sym_LPAREN] = ACTIONS(2081), + [anon_sym_ref] = ACTIONS(2083), + [anon_sym_LBRACE] = ACTIONS(1481), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1251), + [anon_sym_new] = ACTIONS(1059), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1253), - [anon_sym_BANG] = ACTIONS(2119), - [anon_sym_TILDE] = ACTIONS(2119), - [anon_sym_PLUS_PLUS] = ACTIONS(2119), - [anon_sym_DASH_DASH] = ACTIONS(2119), - [anon_sym_true] = ACTIONS(1259), - [anon_sym_false] = ACTIONS(1259), - [anon_sym_PLUS] = ACTIONS(2117), - [anon_sym_DASH] = ACTIONS(2117), - [anon_sym_STAR] = ACTIONS(1261), - [anon_sym_CARET] = ACTIONS(2119), - [anon_sym_AMP] = ACTIONS(2119), - [anon_sym_this] = ACTIONS(1263), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(2087), + [anon_sym_TILDE] = ACTIONS(2087), + [anon_sym_PLUS_PLUS] = ACTIONS(2087), + [anon_sym_DASH_DASH] = ACTIONS(2087), + [anon_sym_true] = ACTIONS(77), + [anon_sym_false] = ACTIONS(77), + [anon_sym_PLUS] = ACTIONS(2085), + [anon_sym_DASH] = ACTIONS(2085), + [anon_sym_STAR] = ACTIONS(81), + [anon_sym_CARET] = ACTIONS(2087), + [anon_sym_AMP] = ACTIONS(2087), + [anon_sym_this] = ACTIONS(83), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1265), + [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1267), - [anon_sym_unchecked] = ACTIONS(1253), + [sym_predefined_type] = ACTIONS(91), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1269), - [anon_sym_throw] = ACTIONS(2121), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(2089), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2123), - [anon_sym_DOT_DOT] = ACTIONS(2125), + [anon_sym_await] = ACTIONS(2091), + [anon_sym_DOT_DOT] = ACTIONS(2093), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -341718,19 +345829,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1277), - [anon_sym_sizeof] = ACTIONS(1279), - [anon_sym_typeof] = ACTIONS(1281), - [anon_sym___makeref] = ACTIONS(1283), - [anon_sym___reftype] = ACTIONS(1285), - [anon_sym___refvalue] = ACTIONS(1287), - [sym_null_literal] = ACTIONS(1289), - [anon_sym_SQUOTE] = ACTIONS(1291), - [sym_integer_literal] = ACTIONS(1289), - [sym_real_literal] = ACTIONS(1293), - [anon_sym_DQUOTE] = ACTIONS(1295), - [sym_verbatim_string_literal] = ACTIONS(1293), - [aux_sym_preproc_if_token1] = ACTIONS(2127), + [anon_sym_stackalloc] = ACTIONS(127), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_literal] = ACTIONS(143), + [anon_sym_DQUOTE] = ACTIONS(145), + [sym_verbatim_string_literal] = ACTIONS(143), + [aux_sym_preproc_if_token1] = ACTIONS(2095), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -341741,140 +345852,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(1299), - [sym_interpolation_verbatim_start] = ACTIONS(1301), - [sym_interpolation_raw_start] = ACTIONS(1303), - [sym_raw_string_start] = ACTIONS(1305), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [sym_interpolation_raw_start] = ACTIONS(155), + [sym_raw_string_start] = ACTIONS(157), }, - [1775] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2420), - [sym__name] = STATE(5887), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2197), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(2910), - [sym_non_lvalue_expression] = STATE(3066), - [sym_lvalue_expression] = STATE(3637), - [sym__expression_statement_expression] = STATE(3006), - [sym_assignment_expression] = STATE(3020), - [sym_binary_expression] = STATE(3006), - [sym_postfix_unary_expression] = STATE(3020), - [sym_prefix_unary_expression] = STATE(3020), - [sym__pointer_indirection_expression] = STATE(2423), - [sym_query_expression] = STATE(3006), - [sym_from_clause] = STATE(6148), - [sym_conditional_expression] = STATE(3006), - [sym_conditional_access_expression] = STATE(3006), - [sym_as_expression] = STATE(3006), - [sym_is_expression] = STATE(3006), - [sym_is_pattern_expression] = STATE(3006), - [sym_cast_expression] = STATE(3006), - [sym_checked_expression] = STATE(3006), - [sym_invocation_expression] = STATE(3020), - [sym_switch_expression] = STATE(3006), - [sym_await_expression] = STATE(3020), - [sym_throw_expression] = STATE(3006), - [sym_element_access_expression] = STATE(2423), - [sym_interpolated_string_expression] = STATE(3006), - [sym_member_access_expression] = STATE(2423), - [sym_object_creation_expression] = STATE(3020), - [sym_parenthesized_expression] = STATE(3020), - [sym__parenthesized_lvalue_expression] = STATE(2423), - [sym_lambda_expression] = STATE(3006), - [sym__lambda_expression_init] = STATE(7507), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3006), - [sym_anonymous_method_expression] = STATE(3006), - [sym_anonymous_object_creation_expression] = STATE(3006), - [sym_implicit_array_creation_expression] = STATE(3006), - [sym_implicit_object_creation_expression] = STATE(3006), - [sym_implicit_stackalloc_expression] = STATE(3006), - [sym_initializer_expression] = STATE(3006), - [sym_default_expression] = STATE(3006), - [sym_with_expression] = STATE(3006), - [sym_sizeof_expression] = STATE(3006), - [sym_typeof_expression] = STATE(3006), - [sym_makeref_expression] = STATE(3006), - [sym_ref_expression] = STATE(3006), - [sym_reftype_expression] = STATE(3006), - [sym_refvalue_expression] = STATE(3006), - [sym_stackalloc_expression] = STATE(3006), - [sym_range_expression] = STATE(3006), - [sym_tuple_expression] = STATE(2423), - [sym_literal] = STATE(3006), - [sym_character_literal] = STATE(3011), - [sym_string_literal] = STATE(3011), - [sym_raw_string_literal] = STATE(3011), - [sym_boolean_literal] = STATE(3011), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3006), - [sym_preproc_if_in_attribute_list] = STATE(5576), - [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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3440), + [1800] = { + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(5152), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2196), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(5343), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3640), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3102), + [sym_postfix_unary_expression] = STATE(3079), + [sym_prefix_unary_expression] = STATE(3079), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6137), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3102), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3079), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3102), + [sym_member_access_expression] = STATE(2472), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3079), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7645), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(3102), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3102), + [sym_typeof_expression] = STATE(3102), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2472), + [sym_literal] = STATE(3102), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), + [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(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1241), - [anon_sym_LPAREN] = ACTIONS(2113), - [anon_sym_ref] = ACTIONS(2115), - [anon_sym_LBRACE] = ACTIONS(1247), - [anon_sym_delegate] = ACTIONS(1249), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1479), + [anon_sym_LPAREN] = ACTIONS(2081), + [anon_sym_ref] = ACTIONS(2083), + [anon_sym_LBRACE] = ACTIONS(1481), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1251), + [anon_sym_new] = ACTIONS(1059), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1253), - [anon_sym_BANG] = ACTIONS(2119), - [anon_sym_TILDE] = ACTIONS(2119), - [anon_sym_PLUS_PLUS] = ACTIONS(2119), - [anon_sym_DASH_DASH] = ACTIONS(2119), - [anon_sym_true] = ACTIONS(1259), - [anon_sym_false] = ACTIONS(1259), - [anon_sym_PLUS] = ACTIONS(2117), - [anon_sym_DASH] = ACTIONS(2117), - [anon_sym_STAR] = ACTIONS(1261), - [anon_sym_CARET] = ACTIONS(2119), - [anon_sym_AMP] = ACTIONS(2119), - [anon_sym_this] = ACTIONS(1263), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(2087), + [anon_sym_TILDE] = ACTIONS(2087), + [anon_sym_PLUS_PLUS] = ACTIONS(2087), + [anon_sym_DASH_DASH] = ACTIONS(2087), + [anon_sym_true] = ACTIONS(77), + [anon_sym_false] = ACTIONS(77), + [anon_sym_PLUS] = ACTIONS(2085), + [anon_sym_DASH] = ACTIONS(2085), + [anon_sym_STAR] = ACTIONS(81), + [anon_sym_CARET] = ACTIONS(2087), + [anon_sym_AMP] = ACTIONS(2087), + [anon_sym_this] = ACTIONS(83), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1265), + [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1267), - [anon_sym_unchecked] = ACTIONS(1253), + [sym_predefined_type] = ACTIONS(91), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1269), - [anon_sym_throw] = ACTIONS(2121), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(2089), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2123), - [anon_sym_DOT_DOT] = ACTIONS(2125), + [anon_sym_await] = ACTIONS(2091), + [anon_sym_DOT_DOT] = ACTIONS(2093), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -341887,19 +345998,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1277), - [anon_sym_sizeof] = ACTIONS(1279), - [anon_sym_typeof] = ACTIONS(1281), - [anon_sym___makeref] = ACTIONS(1283), - [anon_sym___reftype] = ACTIONS(1285), - [anon_sym___refvalue] = ACTIONS(1287), - [sym_null_literal] = ACTIONS(1289), - [anon_sym_SQUOTE] = ACTIONS(1291), - [sym_integer_literal] = ACTIONS(1289), - [sym_real_literal] = ACTIONS(1293), - [anon_sym_DQUOTE] = ACTIONS(1295), - [sym_verbatim_string_literal] = ACTIONS(1293), - [aux_sym_preproc_if_token1] = ACTIONS(2127), + [anon_sym_stackalloc] = ACTIONS(127), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_literal] = ACTIONS(143), + [anon_sym_DQUOTE] = ACTIONS(145), + [sym_verbatim_string_literal] = ACTIONS(143), + [aux_sym_preproc_if_token1] = ACTIONS(2095), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -341910,140 +346021,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(1299), - [sym_interpolation_verbatim_start] = ACTIONS(1301), - [sym_interpolation_raw_start] = ACTIONS(1303), - [sym_raw_string_start] = ACTIONS(1305), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [sym_interpolation_raw_start] = ACTIONS(155), + [sym_raw_string_start] = ACTIONS(157), }, - [1776] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2420), - [sym__name] = STATE(5875), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2369), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(4160), - [sym_non_lvalue_expression] = STATE(3066), - [sym_lvalue_expression] = STATE(3125), - [sym__expression_statement_expression] = STATE(3006), - [sym_assignment_expression] = STATE(3020), - [sym_binary_expression] = STATE(3006), - [sym_postfix_unary_expression] = STATE(3020), - [sym_prefix_unary_expression] = STATE(3020), - [sym__pointer_indirection_expression] = STATE(2423), - [sym_query_expression] = STATE(3006), - [sym_from_clause] = STATE(6145), - [sym_conditional_expression] = STATE(3006), - [sym_conditional_access_expression] = STATE(3006), - [sym_as_expression] = STATE(3006), - [sym_is_expression] = STATE(3006), - [sym_is_pattern_expression] = STATE(3006), - [sym_cast_expression] = STATE(3006), - [sym_checked_expression] = STATE(3006), - [sym_invocation_expression] = STATE(3020), - [sym_switch_expression] = STATE(3006), - [sym_await_expression] = STATE(3020), - [sym_throw_expression] = STATE(3006), - [sym_element_access_expression] = STATE(2423), - [sym_interpolated_string_expression] = STATE(3006), - [sym_member_access_expression] = STATE(2423), - [sym_object_creation_expression] = STATE(3020), - [sym_parenthesized_expression] = STATE(3020), - [sym__parenthesized_lvalue_expression] = STATE(2423), - [sym_lambda_expression] = STATE(3006), - [sym__lambda_expression_init] = STATE(7538), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3006), - [sym_anonymous_method_expression] = STATE(3006), - [sym_anonymous_object_creation_expression] = STATE(3006), - [sym_implicit_array_creation_expression] = STATE(3006), - [sym_implicit_object_creation_expression] = STATE(3006), - [sym_implicit_stackalloc_expression] = STATE(3006), - [sym_initializer_expression] = STATE(3006), - [sym_default_expression] = STATE(3006), - [sym_with_expression] = STATE(3006), - [sym_sizeof_expression] = STATE(3006), - [sym_typeof_expression] = STATE(3006), - [sym_makeref_expression] = STATE(3006), - [sym_ref_expression] = STATE(3006), - [sym_reftype_expression] = STATE(3006), - [sym_refvalue_expression] = STATE(3006), - [sym_stackalloc_expression] = STATE(3006), - [sym_range_expression] = STATE(3006), - [sym_tuple_expression] = STATE(2423), - [sym_literal] = STATE(3006), - [sym_character_literal] = STATE(3011), - [sym_string_literal] = STATE(3011), - [sym_raw_string_literal] = STATE(3011), - [sym_boolean_literal] = STATE(3011), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3006), - [sym_preproc_if_in_attribute_list] = STATE(5576), - [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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3440), + [1801] = { + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(5152), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2196), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(5344), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3640), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3102), + [sym_postfix_unary_expression] = STATE(3079), + [sym_prefix_unary_expression] = STATE(3079), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6137), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3102), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3079), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3102), + [sym_member_access_expression] = STATE(2472), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3079), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7645), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(3102), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3102), + [sym_typeof_expression] = STATE(3102), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2472), + [sym_literal] = STATE(3102), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), + [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(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1241), - [anon_sym_LPAREN] = ACTIONS(2195), - [anon_sym_ref] = ACTIONS(2197), - [anon_sym_LBRACE] = ACTIONS(1247), - [anon_sym_delegate] = ACTIONS(1249), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1479), + [anon_sym_LPAREN] = ACTIONS(2081), + [anon_sym_ref] = ACTIONS(2083), + [anon_sym_LBRACE] = ACTIONS(1481), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1845), + [anon_sym_new] = ACTIONS(1059), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1253), - [anon_sym_BANG] = ACTIONS(2201), - [anon_sym_TILDE] = ACTIONS(2201), - [anon_sym_PLUS_PLUS] = ACTIONS(2201), - [anon_sym_DASH_DASH] = ACTIONS(2201), - [anon_sym_true] = ACTIONS(1259), - [anon_sym_false] = ACTIONS(1259), - [anon_sym_PLUS] = ACTIONS(2199), - [anon_sym_DASH] = ACTIONS(2199), - [anon_sym_STAR] = ACTIONS(1851), - [anon_sym_CARET] = ACTIONS(2201), - [anon_sym_AMP] = ACTIONS(2201), - [anon_sym_this] = ACTIONS(1263), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(2087), + [anon_sym_TILDE] = ACTIONS(2087), + [anon_sym_PLUS_PLUS] = ACTIONS(2087), + [anon_sym_DASH_DASH] = ACTIONS(2087), + [anon_sym_true] = ACTIONS(77), + [anon_sym_false] = ACTIONS(77), + [anon_sym_PLUS] = ACTIONS(2085), + [anon_sym_DASH] = ACTIONS(2085), + [anon_sym_STAR] = ACTIONS(81), + [anon_sym_CARET] = ACTIONS(2087), + [anon_sym_AMP] = ACTIONS(2087), + [anon_sym_this] = ACTIONS(83), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1265), + [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1267), - [anon_sym_unchecked] = ACTIONS(1253), + [sym_predefined_type] = ACTIONS(91), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1269), - [anon_sym_throw] = ACTIONS(2203), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(2089), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2205), - [anon_sym_DOT_DOT] = ACTIONS(2207), + [anon_sym_await] = ACTIONS(2091), + [anon_sym_DOT_DOT] = ACTIONS(2093), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -342056,19 +346167,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1277), - [anon_sym_sizeof] = ACTIONS(1279), - [anon_sym_typeof] = ACTIONS(1281), - [anon_sym___makeref] = ACTIONS(1283), - [anon_sym___reftype] = ACTIONS(1285), - [anon_sym___refvalue] = ACTIONS(1287), - [sym_null_literal] = ACTIONS(1289), - [anon_sym_SQUOTE] = ACTIONS(1291), - [sym_integer_literal] = ACTIONS(1289), - [sym_real_literal] = ACTIONS(1293), - [anon_sym_DQUOTE] = ACTIONS(1295), - [sym_verbatim_string_literal] = ACTIONS(1293), - [aux_sym_preproc_if_token1] = ACTIONS(1297), + [anon_sym_stackalloc] = ACTIONS(127), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_literal] = ACTIONS(143), + [anon_sym_DQUOTE] = ACTIONS(145), + [sym_verbatim_string_literal] = ACTIONS(143), + [aux_sym_preproc_if_token1] = ACTIONS(2095), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -342079,140 +346190,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(1299), - [sym_interpolation_verbatim_start] = ACTIONS(1301), - [sym_interpolation_raw_start] = ACTIONS(1303), - [sym_raw_string_start] = ACTIONS(1305), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [sym_interpolation_raw_start] = ACTIONS(155), + [sym_raw_string_start] = ACTIONS(157), }, - [1777] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(5160), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2204), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(5006), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3520), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3080), - [sym_postfix_unary_expression] = STATE(3111), - [sym_prefix_unary_expression] = STATE(3111), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6154), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3080), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3111), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3080), - [sym_member_access_expression] = STATE(2484), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3111), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7530), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(3080), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3080), - [sym_typeof_expression] = STATE(3080), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2484), - [sym_literal] = STATE(3080), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), - [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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [1802] = { + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(5152), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2196), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(5548), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3640), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3102), + [sym_postfix_unary_expression] = STATE(3079), + [sym_prefix_unary_expression] = STATE(3079), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6137), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3102), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3079), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3102), + [sym_member_access_expression] = STATE(2472), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3079), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7645), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(3102), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3102), + [sym_typeof_expression] = STATE(3102), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2472), + [sym_literal] = STATE(3102), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), + [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(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1481), - [anon_sym_LPAREN] = ACTIONS(43), - [anon_sym_ref] = ACTIONS(661), - [anon_sym_LBRACE] = ACTIONS(1487), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1479), + [anon_sym_LPAREN] = ACTIONS(2081), + [anon_sym_ref] = ACTIONS(2083), + [anon_sym_LBRACE] = ACTIONS(1481), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1061), + [anon_sym_new] = ACTIONS(1059), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = 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_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(2087), + [anon_sym_TILDE] = ACTIONS(2087), + [anon_sym_PLUS_PLUS] = ACTIONS(2087), + [anon_sym_DASH_DASH] = ACTIONS(2087), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1585), - [anon_sym_DASH] = ACTIONS(1585), + [anon_sym_PLUS] = ACTIONS(2085), + [anon_sym_DASH] = ACTIONS(2085), [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(1587), - [anon_sym_AMP] = ACTIONS(1587), + [anon_sym_CARET] = ACTIONS(2087), + [anon_sym_AMP] = ACTIONS(2087), [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(1067), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1589), + [anon_sym_throw] = ACTIONS(2089), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1591), - [anon_sym_DOT_DOT] = ACTIONS(123), + [anon_sym_await] = ACTIONS(2091), + [anon_sym_DOT_DOT] = ACTIONS(2093), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -342237,7 +346348,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(1089), + [aux_sym_preproc_if_token1] = ACTIONS(2095), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -342253,135 +346364,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), }, - [1778] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2610), - [sym__name] = STATE(5898), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2197), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(4792), - [sym_non_lvalue_expression] = STATE(3277), - [sym_lvalue_expression] = STATE(3510), - [sym__expression_statement_expression] = STATE(3228), - [sym_assignment_expression] = STATE(3289), - [sym_binary_expression] = STATE(3228), - [sym_postfix_unary_expression] = STATE(3289), - [sym_prefix_unary_expression] = STATE(3289), - [sym__pointer_indirection_expression] = STATE(2609), - [sym_query_expression] = STATE(3228), - [sym_from_clause] = STATE(6180), - [sym_conditional_expression] = STATE(3228), - [sym_conditional_access_expression] = STATE(3228), - [sym_as_expression] = STATE(3228), - [sym_is_expression] = STATE(3228), - [sym_is_pattern_expression] = STATE(3228), - [sym_cast_expression] = STATE(3228), - [sym_checked_expression] = STATE(3228), - [sym_invocation_expression] = STATE(3289), - [sym_switch_expression] = STATE(3228), - [sym_await_expression] = STATE(3289), - [sym_throw_expression] = STATE(3228), - [sym_element_access_expression] = STATE(2609), - [sym_interpolated_string_expression] = STATE(3228), - [sym_member_access_expression] = STATE(2609), - [sym_object_creation_expression] = STATE(3289), - [sym_parenthesized_expression] = STATE(3289), - [sym__parenthesized_lvalue_expression] = STATE(2609), - [sym_lambda_expression] = STATE(3228), - [sym__lambda_expression_init] = STATE(7527), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3228), - [sym_anonymous_method_expression] = STATE(3228), - [sym_anonymous_object_creation_expression] = STATE(3228), - [sym_implicit_array_creation_expression] = STATE(3228), - [sym_implicit_object_creation_expression] = STATE(3228), - [sym_implicit_stackalloc_expression] = STATE(3228), - [sym_initializer_expression] = STATE(3228), - [sym_default_expression] = STATE(3228), - [sym_with_expression] = STATE(3228), - [sym_sizeof_expression] = STATE(3228), - [sym_typeof_expression] = STATE(3228), - [sym_makeref_expression] = STATE(3228), - [sym_ref_expression] = STATE(3228), - [sym_reftype_expression] = STATE(3228), - [sym_refvalue_expression] = STATE(3228), - [sym_stackalloc_expression] = STATE(3228), - [sym_range_expression] = STATE(3228), - [sym_tuple_expression] = STATE(2609), - [sym_literal] = STATE(3228), - [sym_character_literal] = STATE(3278), - [sym_string_literal] = STATE(3278), - [sym_raw_string_literal] = STATE(3278), - [sym_boolean_literal] = STATE(3278), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3228), - [sym_preproc_if_in_attribute_list] = STATE(5576), - [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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3396), + [1803] = { + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(5152), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2196), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(5345), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3640), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3102), + [sym_postfix_unary_expression] = STATE(3079), + [sym_prefix_unary_expression] = STATE(3079), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6137), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3102), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3079), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3102), + [sym_member_access_expression] = STATE(2472), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3079), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7645), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(3102), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3102), + [sym_typeof_expression] = STATE(3102), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2472), + [sym_literal] = STATE(3102), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), + [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(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1153), - [anon_sym_LPAREN] = ACTIONS(1759), - [anon_sym_ref] = ACTIONS(1761), - [anon_sym_LBRACE] = ACTIONS(1159), - [anon_sym_delegate] = ACTIONS(1161), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1479), + [anon_sym_LPAREN] = ACTIONS(2081), + [anon_sym_ref] = ACTIONS(2083), + [anon_sym_LBRACE] = ACTIONS(1481), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1163), + [anon_sym_new] = ACTIONS(1059), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1167), - [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(1173), - [anon_sym_false] = ACTIONS(1173), - [anon_sym_PLUS] = ACTIONS(1763), - [anon_sym_DASH] = ACTIONS(1763), - [anon_sym_STAR] = ACTIONS(1175), - [anon_sym_CARET] = ACTIONS(1765), - [anon_sym_AMP] = ACTIONS(1765), - [anon_sym_this] = ACTIONS(1177), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(2087), + [anon_sym_TILDE] = ACTIONS(2087), + [anon_sym_PLUS_PLUS] = ACTIONS(2087), + [anon_sym_DASH_DASH] = ACTIONS(2087), + [anon_sym_true] = ACTIONS(77), + [anon_sym_false] = ACTIONS(77), + [anon_sym_PLUS] = ACTIONS(2085), + [anon_sym_DASH] = ACTIONS(2085), + [anon_sym_STAR] = ACTIONS(81), + [anon_sym_CARET] = ACTIONS(2087), + [anon_sym_AMP] = ACTIONS(2087), + [anon_sym_this] = ACTIONS(83), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1179), + [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1181), - [anon_sym_unchecked] = ACTIONS(1167), + [sym_predefined_type] = ACTIONS(91), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1183), - [anon_sym_throw] = ACTIONS(1767), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(2089), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1769), - [anon_sym_DOT_DOT] = ACTIONS(1771), + [anon_sym_await] = ACTIONS(2091), + [anon_sym_DOT_DOT] = ACTIONS(2093), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -342394,19 +346505,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1191), - [anon_sym_sizeof] = ACTIONS(1193), - [anon_sym_typeof] = ACTIONS(1195), - [anon_sym___makeref] = ACTIONS(1197), - [anon_sym___reftype] = ACTIONS(1199), - [anon_sym___refvalue] = ACTIONS(1201), - [sym_null_literal] = ACTIONS(1203), - [anon_sym_SQUOTE] = ACTIONS(1205), - [sym_integer_literal] = ACTIONS(1203), - [sym_real_literal] = ACTIONS(1207), - [anon_sym_DQUOTE] = ACTIONS(1209), - [sym_verbatim_string_literal] = ACTIONS(1207), - [aux_sym_preproc_if_token1] = ACTIONS(1773), + [anon_sym_stackalloc] = ACTIONS(127), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_literal] = ACTIONS(143), + [anon_sym_DQUOTE] = ACTIONS(145), + [sym_verbatim_string_literal] = ACTIONS(143), + [aux_sym_preproc_if_token1] = ACTIONS(2095), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -342417,140 +346528,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(1213), - [sym_interpolation_verbatim_start] = ACTIONS(1215), - [sym_interpolation_raw_start] = ACTIONS(1217), - [sym_raw_string_start] = ACTIONS(1219), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [sym_interpolation_raw_start] = ACTIONS(155), + [sym_raw_string_start] = ACTIONS(157), }, - [1779] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2610), - [sym__name] = STATE(5898), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2197), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(3139), - [sym_non_lvalue_expression] = STATE(3277), - [sym_lvalue_expression] = STATE(3510), - [sym__expression_statement_expression] = STATE(3228), - [sym_assignment_expression] = STATE(3289), - [sym_binary_expression] = STATE(3228), - [sym_postfix_unary_expression] = STATE(3289), - [sym_prefix_unary_expression] = STATE(3289), - [sym__pointer_indirection_expression] = STATE(2609), - [sym_query_expression] = STATE(3228), - [sym_from_clause] = STATE(6180), - [sym_conditional_expression] = STATE(3228), - [sym_conditional_access_expression] = STATE(3228), - [sym_as_expression] = STATE(3228), - [sym_is_expression] = STATE(3228), - [sym_is_pattern_expression] = STATE(3228), - [sym_cast_expression] = STATE(3228), - [sym_checked_expression] = STATE(3228), - [sym_invocation_expression] = STATE(3289), - [sym_switch_expression] = STATE(3228), - [sym_await_expression] = STATE(3289), - [sym_throw_expression] = STATE(3228), - [sym_element_access_expression] = STATE(2609), - [sym_interpolated_string_expression] = STATE(3228), - [sym_member_access_expression] = STATE(2609), - [sym_object_creation_expression] = STATE(3289), - [sym_parenthesized_expression] = STATE(3289), - [sym__parenthesized_lvalue_expression] = STATE(2609), - [sym_lambda_expression] = STATE(3228), - [sym__lambda_expression_init] = STATE(7527), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3228), - [sym_anonymous_method_expression] = STATE(3228), - [sym_anonymous_object_creation_expression] = STATE(3228), - [sym_implicit_array_creation_expression] = STATE(3228), - [sym_implicit_object_creation_expression] = STATE(3228), - [sym_implicit_stackalloc_expression] = STATE(3228), - [sym_initializer_expression] = STATE(3228), - [sym_default_expression] = STATE(3228), - [sym_with_expression] = STATE(3228), - [sym_sizeof_expression] = STATE(3228), - [sym_typeof_expression] = STATE(3228), - [sym_makeref_expression] = STATE(3228), - [sym_ref_expression] = STATE(3228), - [sym_reftype_expression] = STATE(3228), - [sym_refvalue_expression] = STATE(3228), - [sym_stackalloc_expression] = STATE(3228), - [sym_range_expression] = STATE(3228), - [sym_tuple_expression] = STATE(2609), - [sym_literal] = STATE(3228), - [sym_character_literal] = STATE(3278), - [sym_string_literal] = STATE(3278), - [sym_raw_string_literal] = STATE(3278), - [sym_boolean_literal] = STATE(3278), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3228), - [sym_preproc_if_in_attribute_list] = STATE(5576), - [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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3396), + [1804] = { + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(5152), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2196), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(5346), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3640), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3102), + [sym_postfix_unary_expression] = STATE(3079), + [sym_prefix_unary_expression] = STATE(3079), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6137), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3102), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3079), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3102), + [sym_member_access_expression] = STATE(2472), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3079), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7645), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(3102), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3102), + [sym_typeof_expression] = STATE(3102), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2472), + [sym_literal] = STATE(3102), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), + [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(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1153), - [anon_sym_LPAREN] = ACTIONS(1759), - [anon_sym_ref] = ACTIONS(1761), - [anon_sym_LBRACE] = ACTIONS(1159), - [anon_sym_delegate] = ACTIONS(1161), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1479), + [anon_sym_LPAREN] = ACTIONS(2081), + [anon_sym_ref] = ACTIONS(2083), + [anon_sym_LBRACE] = ACTIONS(1481), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1163), + [anon_sym_new] = ACTIONS(1059), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1167), - [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(1173), - [anon_sym_false] = ACTIONS(1173), - [anon_sym_PLUS] = ACTIONS(1763), - [anon_sym_DASH] = ACTIONS(1763), - [anon_sym_STAR] = ACTIONS(1175), - [anon_sym_CARET] = ACTIONS(1765), - [anon_sym_AMP] = ACTIONS(1765), - [anon_sym_this] = ACTIONS(1177), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(2087), + [anon_sym_TILDE] = ACTIONS(2087), + [anon_sym_PLUS_PLUS] = ACTIONS(2087), + [anon_sym_DASH_DASH] = ACTIONS(2087), + [anon_sym_true] = ACTIONS(77), + [anon_sym_false] = ACTIONS(77), + [anon_sym_PLUS] = ACTIONS(2085), + [anon_sym_DASH] = ACTIONS(2085), + [anon_sym_STAR] = ACTIONS(81), + [anon_sym_CARET] = ACTIONS(2087), + [anon_sym_AMP] = ACTIONS(2087), + [anon_sym_this] = ACTIONS(83), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1179), + [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1181), - [anon_sym_unchecked] = ACTIONS(1167), + [sym_predefined_type] = ACTIONS(91), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1183), - [anon_sym_throw] = ACTIONS(1767), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(2089), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1769), - [anon_sym_DOT_DOT] = ACTIONS(1771), + [anon_sym_await] = ACTIONS(2091), + [anon_sym_DOT_DOT] = ACTIONS(2093), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -342563,19 +346674,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1191), - [anon_sym_sizeof] = ACTIONS(1193), - [anon_sym_typeof] = ACTIONS(1195), - [anon_sym___makeref] = ACTIONS(1197), - [anon_sym___reftype] = ACTIONS(1199), - [anon_sym___refvalue] = ACTIONS(1201), - [sym_null_literal] = ACTIONS(1203), - [anon_sym_SQUOTE] = ACTIONS(1205), - [sym_integer_literal] = ACTIONS(1203), - [sym_real_literal] = ACTIONS(1207), - [anon_sym_DQUOTE] = ACTIONS(1209), - [sym_verbatim_string_literal] = ACTIONS(1207), - [aux_sym_preproc_if_token1] = ACTIONS(1773), + [anon_sym_stackalloc] = ACTIONS(127), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_literal] = ACTIONS(143), + [anon_sym_DQUOTE] = ACTIONS(145), + [sym_verbatim_string_literal] = ACTIONS(143), + [aux_sym_preproc_if_token1] = ACTIONS(2095), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -342586,140 +346697,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(1213), - [sym_interpolation_verbatim_start] = ACTIONS(1215), - [sym_interpolation_raw_start] = ACTIONS(1217), - [sym_raw_string_start] = ACTIONS(1219), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [sym_interpolation_raw_start] = ACTIONS(155), + [sym_raw_string_start] = ACTIONS(157), }, - [1780] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2610), - [sym__name] = STATE(5898), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2197), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(4793), - [sym_non_lvalue_expression] = STATE(3277), - [sym_lvalue_expression] = STATE(3510), - [sym__expression_statement_expression] = STATE(3228), - [sym_assignment_expression] = STATE(3289), - [sym_binary_expression] = STATE(3228), - [sym_postfix_unary_expression] = STATE(3289), - [sym_prefix_unary_expression] = STATE(3289), - [sym__pointer_indirection_expression] = STATE(2609), - [sym_query_expression] = STATE(3228), - [sym_from_clause] = STATE(6180), - [sym_conditional_expression] = STATE(3228), - [sym_conditional_access_expression] = STATE(3228), - [sym_as_expression] = STATE(3228), - [sym_is_expression] = STATE(3228), - [sym_is_pattern_expression] = STATE(3228), - [sym_cast_expression] = STATE(3228), - [sym_checked_expression] = STATE(3228), - [sym_invocation_expression] = STATE(3289), - [sym_switch_expression] = STATE(3228), - [sym_await_expression] = STATE(3289), - [sym_throw_expression] = STATE(3228), - [sym_element_access_expression] = STATE(2609), - [sym_interpolated_string_expression] = STATE(3228), - [sym_member_access_expression] = STATE(2609), - [sym_object_creation_expression] = STATE(3289), - [sym_parenthesized_expression] = STATE(3289), - [sym__parenthesized_lvalue_expression] = STATE(2609), - [sym_lambda_expression] = STATE(3228), - [sym__lambda_expression_init] = STATE(7527), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3228), - [sym_anonymous_method_expression] = STATE(3228), - [sym_anonymous_object_creation_expression] = STATE(3228), - [sym_implicit_array_creation_expression] = STATE(3228), - [sym_implicit_object_creation_expression] = STATE(3228), - [sym_implicit_stackalloc_expression] = STATE(3228), - [sym_initializer_expression] = STATE(3228), - [sym_default_expression] = STATE(3228), - [sym_with_expression] = STATE(3228), - [sym_sizeof_expression] = STATE(3228), - [sym_typeof_expression] = STATE(3228), - [sym_makeref_expression] = STATE(3228), - [sym_ref_expression] = STATE(3228), - [sym_reftype_expression] = STATE(3228), - [sym_refvalue_expression] = STATE(3228), - [sym_stackalloc_expression] = STATE(3228), - [sym_range_expression] = STATE(3228), - [sym_tuple_expression] = STATE(2609), - [sym_literal] = STATE(3228), - [sym_character_literal] = STATE(3278), - [sym_string_literal] = STATE(3278), - [sym_raw_string_literal] = STATE(3278), - [sym_boolean_literal] = STATE(3278), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3228), - [sym_preproc_if_in_attribute_list] = STATE(5576), - [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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3396), + [1805] = { + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(5152), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2196), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(5347), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3640), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3102), + [sym_postfix_unary_expression] = STATE(3079), + [sym_prefix_unary_expression] = STATE(3079), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6137), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3102), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3079), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3102), + [sym_member_access_expression] = STATE(2472), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3079), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7645), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(3102), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3102), + [sym_typeof_expression] = STATE(3102), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2472), + [sym_literal] = STATE(3102), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), + [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(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1153), - [anon_sym_LPAREN] = ACTIONS(1759), - [anon_sym_ref] = ACTIONS(1761), - [anon_sym_LBRACE] = ACTIONS(1159), - [anon_sym_delegate] = ACTIONS(1161), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1479), + [anon_sym_LPAREN] = ACTIONS(2081), + [anon_sym_ref] = ACTIONS(2083), + [anon_sym_LBRACE] = ACTIONS(1481), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1163), + [anon_sym_new] = ACTIONS(1059), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1167), - [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(1173), - [anon_sym_false] = ACTIONS(1173), - [anon_sym_PLUS] = ACTIONS(1763), - [anon_sym_DASH] = ACTIONS(1763), - [anon_sym_STAR] = ACTIONS(1175), - [anon_sym_CARET] = ACTIONS(1765), - [anon_sym_AMP] = ACTIONS(1765), - [anon_sym_this] = ACTIONS(1177), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(2087), + [anon_sym_TILDE] = ACTIONS(2087), + [anon_sym_PLUS_PLUS] = ACTIONS(2087), + [anon_sym_DASH_DASH] = ACTIONS(2087), + [anon_sym_true] = ACTIONS(77), + [anon_sym_false] = ACTIONS(77), + [anon_sym_PLUS] = ACTIONS(2085), + [anon_sym_DASH] = ACTIONS(2085), + [anon_sym_STAR] = ACTIONS(81), + [anon_sym_CARET] = ACTIONS(2087), + [anon_sym_AMP] = ACTIONS(2087), + [anon_sym_this] = ACTIONS(83), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1179), + [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1181), - [anon_sym_unchecked] = ACTIONS(1167), + [sym_predefined_type] = ACTIONS(91), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1183), - [anon_sym_throw] = ACTIONS(1767), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(2089), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1769), - [anon_sym_DOT_DOT] = ACTIONS(1771), + [anon_sym_await] = ACTIONS(2091), + [anon_sym_DOT_DOT] = ACTIONS(2093), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -342732,19 +346843,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1191), - [anon_sym_sizeof] = ACTIONS(1193), - [anon_sym_typeof] = ACTIONS(1195), - [anon_sym___makeref] = ACTIONS(1197), - [anon_sym___reftype] = ACTIONS(1199), - [anon_sym___refvalue] = ACTIONS(1201), - [sym_null_literal] = ACTIONS(1203), - [anon_sym_SQUOTE] = ACTIONS(1205), - [sym_integer_literal] = ACTIONS(1203), - [sym_real_literal] = ACTIONS(1207), - [anon_sym_DQUOTE] = ACTIONS(1209), - [sym_verbatim_string_literal] = ACTIONS(1207), - [aux_sym_preproc_if_token1] = ACTIONS(1773), + [anon_sym_stackalloc] = ACTIONS(127), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_literal] = ACTIONS(143), + [anon_sym_DQUOTE] = ACTIONS(145), + [sym_verbatim_string_literal] = ACTIONS(143), + [aux_sym_preproc_if_token1] = ACTIONS(2095), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -342755,140 +346866,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(1213), - [sym_interpolation_verbatim_start] = ACTIONS(1215), - [sym_interpolation_raw_start] = ACTIONS(1217), - [sym_raw_string_start] = ACTIONS(1219), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [sym_interpolation_raw_start] = ACTIONS(155), + [sym_raw_string_start] = ACTIONS(157), }, - [1781] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2610), - [sym__name] = STATE(5898), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2197), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(4794), - [sym_non_lvalue_expression] = STATE(3277), - [sym_lvalue_expression] = STATE(3510), - [sym__expression_statement_expression] = STATE(3228), - [sym_assignment_expression] = STATE(3289), - [sym_binary_expression] = STATE(3228), - [sym_postfix_unary_expression] = STATE(3289), - [sym_prefix_unary_expression] = STATE(3289), - [sym__pointer_indirection_expression] = STATE(2609), - [sym_query_expression] = STATE(3228), - [sym_from_clause] = STATE(6180), - [sym_conditional_expression] = STATE(3228), - [sym_conditional_access_expression] = STATE(3228), - [sym_as_expression] = STATE(3228), - [sym_is_expression] = STATE(3228), - [sym_is_pattern_expression] = STATE(3228), - [sym_cast_expression] = STATE(3228), - [sym_checked_expression] = STATE(3228), - [sym_invocation_expression] = STATE(3289), - [sym_switch_expression] = STATE(3228), - [sym_await_expression] = STATE(3289), - [sym_throw_expression] = STATE(3228), - [sym_element_access_expression] = STATE(2609), - [sym_interpolated_string_expression] = STATE(3228), - [sym_member_access_expression] = STATE(2609), - [sym_object_creation_expression] = STATE(3289), - [sym_parenthesized_expression] = STATE(3289), - [sym__parenthesized_lvalue_expression] = STATE(2609), - [sym_lambda_expression] = STATE(3228), - [sym__lambda_expression_init] = STATE(7527), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3228), - [sym_anonymous_method_expression] = STATE(3228), - [sym_anonymous_object_creation_expression] = STATE(3228), - [sym_implicit_array_creation_expression] = STATE(3228), - [sym_implicit_object_creation_expression] = STATE(3228), - [sym_implicit_stackalloc_expression] = STATE(3228), - [sym_initializer_expression] = STATE(3228), - [sym_default_expression] = STATE(3228), - [sym_with_expression] = STATE(3228), - [sym_sizeof_expression] = STATE(3228), - [sym_typeof_expression] = STATE(3228), - [sym_makeref_expression] = STATE(3228), - [sym_ref_expression] = STATE(3228), - [sym_reftype_expression] = STATE(3228), - [sym_refvalue_expression] = STATE(3228), - [sym_stackalloc_expression] = STATE(3228), - [sym_range_expression] = STATE(3228), - [sym_tuple_expression] = STATE(2609), - [sym_literal] = STATE(3228), - [sym_character_literal] = STATE(3278), - [sym_string_literal] = STATE(3278), - [sym_raw_string_literal] = STATE(3278), - [sym_boolean_literal] = STATE(3278), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3228), - [sym_preproc_if_in_attribute_list] = STATE(5576), - [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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3396), + [1806] = { + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(5152), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2196), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(5348), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3640), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3102), + [sym_postfix_unary_expression] = STATE(3079), + [sym_prefix_unary_expression] = STATE(3079), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6137), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3102), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3079), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3102), + [sym_member_access_expression] = STATE(2472), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3079), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7645), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(3102), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3102), + [sym_typeof_expression] = STATE(3102), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2472), + [sym_literal] = STATE(3102), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), + [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(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1153), - [anon_sym_LPAREN] = ACTIONS(1759), - [anon_sym_ref] = ACTIONS(1761), - [anon_sym_LBRACE] = ACTIONS(1159), - [anon_sym_delegate] = ACTIONS(1161), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1479), + [anon_sym_LPAREN] = ACTIONS(2081), + [anon_sym_ref] = ACTIONS(2083), + [anon_sym_LBRACE] = ACTIONS(1481), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1163), + [anon_sym_new] = ACTIONS(1059), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1167), - [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(1173), - [anon_sym_false] = ACTIONS(1173), - [anon_sym_PLUS] = ACTIONS(1763), - [anon_sym_DASH] = ACTIONS(1763), - [anon_sym_STAR] = ACTIONS(1175), - [anon_sym_CARET] = ACTIONS(1765), - [anon_sym_AMP] = ACTIONS(1765), - [anon_sym_this] = ACTIONS(1177), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(2087), + [anon_sym_TILDE] = ACTIONS(2087), + [anon_sym_PLUS_PLUS] = ACTIONS(2087), + [anon_sym_DASH_DASH] = ACTIONS(2087), + [anon_sym_true] = ACTIONS(77), + [anon_sym_false] = ACTIONS(77), + [anon_sym_PLUS] = ACTIONS(2085), + [anon_sym_DASH] = ACTIONS(2085), + [anon_sym_STAR] = ACTIONS(81), + [anon_sym_CARET] = ACTIONS(2087), + [anon_sym_AMP] = ACTIONS(2087), + [anon_sym_this] = ACTIONS(83), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1179), + [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1181), - [anon_sym_unchecked] = ACTIONS(1167), + [sym_predefined_type] = ACTIONS(91), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1183), - [anon_sym_throw] = ACTIONS(1767), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(2089), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1769), - [anon_sym_DOT_DOT] = ACTIONS(1771), + [anon_sym_await] = ACTIONS(2091), + [anon_sym_DOT_DOT] = ACTIONS(2093), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -342901,19 +347012,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1191), - [anon_sym_sizeof] = ACTIONS(1193), - [anon_sym_typeof] = ACTIONS(1195), - [anon_sym___makeref] = ACTIONS(1197), - [anon_sym___reftype] = ACTIONS(1199), - [anon_sym___refvalue] = ACTIONS(1201), - [sym_null_literal] = ACTIONS(1203), - [anon_sym_SQUOTE] = ACTIONS(1205), - [sym_integer_literal] = ACTIONS(1203), - [sym_real_literal] = ACTIONS(1207), - [anon_sym_DQUOTE] = ACTIONS(1209), - [sym_verbatim_string_literal] = ACTIONS(1207), - [aux_sym_preproc_if_token1] = ACTIONS(1773), + [anon_sym_stackalloc] = ACTIONS(127), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_literal] = ACTIONS(143), + [anon_sym_DQUOTE] = ACTIONS(145), + [sym_verbatim_string_literal] = ACTIONS(143), + [aux_sym_preproc_if_token1] = ACTIONS(2095), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -342924,140 +347035,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(1213), - [sym_interpolation_verbatim_start] = ACTIONS(1215), - [sym_interpolation_raw_start] = ACTIONS(1217), - [sym_raw_string_start] = ACTIONS(1219), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [sym_interpolation_raw_start] = ACTIONS(155), + [sym_raw_string_start] = ACTIONS(157), }, - [1782] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2610), - [sym__name] = STATE(5898), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2197), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(4795), - [sym_non_lvalue_expression] = STATE(3277), - [sym_lvalue_expression] = STATE(3510), - [sym__expression_statement_expression] = STATE(3228), - [sym_assignment_expression] = STATE(3289), - [sym_binary_expression] = STATE(3228), - [sym_postfix_unary_expression] = STATE(3289), - [sym_prefix_unary_expression] = STATE(3289), - [sym__pointer_indirection_expression] = STATE(2609), - [sym_query_expression] = STATE(3228), - [sym_from_clause] = STATE(6180), - [sym_conditional_expression] = STATE(3228), - [sym_conditional_access_expression] = STATE(3228), - [sym_as_expression] = STATE(3228), - [sym_is_expression] = STATE(3228), - [sym_is_pattern_expression] = STATE(3228), - [sym_cast_expression] = STATE(3228), - [sym_checked_expression] = STATE(3228), - [sym_invocation_expression] = STATE(3289), - [sym_switch_expression] = STATE(3228), - [sym_await_expression] = STATE(3289), - [sym_throw_expression] = STATE(3228), - [sym_element_access_expression] = STATE(2609), - [sym_interpolated_string_expression] = STATE(3228), - [sym_member_access_expression] = STATE(2609), - [sym_object_creation_expression] = STATE(3289), - [sym_parenthesized_expression] = STATE(3289), - [sym__parenthesized_lvalue_expression] = STATE(2609), - [sym_lambda_expression] = STATE(3228), - [sym__lambda_expression_init] = STATE(7527), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3228), - [sym_anonymous_method_expression] = STATE(3228), - [sym_anonymous_object_creation_expression] = STATE(3228), - [sym_implicit_array_creation_expression] = STATE(3228), - [sym_implicit_object_creation_expression] = STATE(3228), - [sym_implicit_stackalloc_expression] = STATE(3228), - [sym_initializer_expression] = STATE(3228), - [sym_default_expression] = STATE(3228), - [sym_with_expression] = STATE(3228), - [sym_sizeof_expression] = STATE(3228), - [sym_typeof_expression] = STATE(3228), - [sym_makeref_expression] = STATE(3228), - [sym_ref_expression] = STATE(3228), - [sym_reftype_expression] = STATE(3228), - [sym_refvalue_expression] = STATE(3228), - [sym_stackalloc_expression] = STATE(3228), - [sym_range_expression] = STATE(3228), - [sym_tuple_expression] = STATE(2609), - [sym_literal] = STATE(3228), - [sym_character_literal] = STATE(3278), - [sym_string_literal] = STATE(3278), - [sym_raw_string_literal] = STATE(3278), - [sym_boolean_literal] = STATE(3278), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3228), - [sym_preproc_if_in_attribute_list] = STATE(5576), - [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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3396), + [1807] = { + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(5893), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2361), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(5351), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3673), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3102), + [sym_postfix_unary_expression] = STATE(3079), + [sym_prefix_unary_expression] = STATE(3079), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6159), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3102), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3079), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3102), + [sym_member_access_expression] = STATE(2472), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3079), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7363), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(3102), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3102), + [sym_typeof_expression] = STATE(3102), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2472), + [sym_literal] = STATE(3102), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), + [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(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1153), - [anon_sym_LPAREN] = ACTIONS(1759), - [anon_sym_ref] = ACTIONS(1761), - [anon_sym_LBRACE] = ACTIONS(1159), - [anon_sym_delegate] = ACTIONS(1161), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1479), + [anon_sym_LPAREN] = ACTIONS(2237), + [anon_sym_ref] = ACTIONS(2239), + [anon_sym_LBRACE] = ACTIONS(1481), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1163), + [anon_sym_new] = ACTIONS(2241), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1167), - [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(1173), - [anon_sym_false] = ACTIONS(1173), - [anon_sym_PLUS] = ACTIONS(1763), - [anon_sym_DASH] = ACTIONS(1763), - [anon_sym_STAR] = ACTIONS(1175), - [anon_sym_CARET] = ACTIONS(1765), - [anon_sym_AMP] = ACTIONS(1765), - [anon_sym_this] = ACTIONS(1177), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(2245), + [anon_sym_TILDE] = ACTIONS(2245), + [anon_sym_PLUS_PLUS] = ACTIONS(2245), + [anon_sym_DASH_DASH] = ACTIONS(2245), + [anon_sym_true] = ACTIONS(77), + [anon_sym_false] = ACTIONS(77), + [anon_sym_PLUS] = ACTIONS(2243), + [anon_sym_DASH] = ACTIONS(2243), + [anon_sym_STAR] = ACTIONS(2247), + [anon_sym_CARET] = ACTIONS(2245), + [anon_sym_AMP] = ACTIONS(2245), + [anon_sym_this] = ACTIONS(83), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1179), + [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1181), - [anon_sym_unchecked] = ACTIONS(1167), + [sym_predefined_type] = ACTIONS(91), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1183), - [anon_sym_throw] = ACTIONS(1767), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(2249), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1769), - [anon_sym_DOT_DOT] = ACTIONS(1771), + [anon_sym_await] = ACTIONS(2251), + [anon_sym_DOT_DOT] = ACTIONS(2253), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -343070,19 +347181,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1191), - [anon_sym_sizeof] = ACTIONS(1193), - [anon_sym_typeof] = ACTIONS(1195), - [anon_sym___makeref] = ACTIONS(1197), - [anon_sym___reftype] = ACTIONS(1199), - [anon_sym___refvalue] = ACTIONS(1201), - [sym_null_literal] = ACTIONS(1203), - [anon_sym_SQUOTE] = ACTIONS(1205), - [sym_integer_literal] = ACTIONS(1203), - [sym_real_literal] = ACTIONS(1207), - [anon_sym_DQUOTE] = ACTIONS(1209), - [sym_verbatim_string_literal] = ACTIONS(1207), - [aux_sym_preproc_if_token1] = ACTIONS(1773), + [anon_sym_stackalloc] = ACTIONS(127), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_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), @@ -343093,140 +347204,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(1213), - [sym_interpolation_verbatim_start] = ACTIONS(1215), - [sym_interpolation_raw_start] = ACTIONS(1217), - [sym_raw_string_start] = ACTIONS(1219), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [sym_interpolation_raw_start] = ACTIONS(155), + [sym_raw_string_start] = ACTIONS(157), }, - [1783] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2610), - [sym__name] = STATE(5898), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2197), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(4796), - [sym_non_lvalue_expression] = STATE(3277), - [sym_lvalue_expression] = STATE(3510), - [sym__expression_statement_expression] = STATE(3228), - [sym_assignment_expression] = STATE(3289), - [sym_binary_expression] = STATE(3228), - [sym_postfix_unary_expression] = STATE(3289), - [sym_prefix_unary_expression] = STATE(3289), - [sym__pointer_indirection_expression] = STATE(2609), - [sym_query_expression] = STATE(3228), - [sym_from_clause] = STATE(6180), - [sym_conditional_expression] = STATE(3228), - [sym_conditional_access_expression] = STATE(3228), - [sym_as_expression] = STATE(3228), - [sym_is_expression] = STATE(3228), - [sym_is_pattern_expression] = STATE(3228), - [sym_cast_expression] = STATE(3228), - [sym_checked_expression] = STATE(3228), - [sym_invocation_expression] = STATE(3289), - [sym_switch_expression] = STATE(3228), - [sym_await_expression] = STATE(3289), - [sym_throw_expression] = STATE(3228), - [sym_element_access_expression] = STATE(2609), - [sym_interpolated_string_expression] = STATE(3228), - [sym_member_access_expression] = STATE(2609), - [sym_object_creation_expression] = STATE(3289), - [sym_parenthesized_expression] = STATE(3289), - [sym__parenthesized_lvalue_expression] = STATE(2609), - [sym_lambda_expression] = STATE(3228), - [sym__lambda_expression_init] = STATE(7527), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3228), - [sym_anonymous_method_expression] = STATE(3228), - [sym_anonymous_object_creation_expression] = STATE(3228), - [sym_implicit_array_creation_expression] = STATE(3228), - [sym_implicit_object_creation_expression] = STATE(3228), - [sym_implicit_stackalloc_expression] = STATE(3228), - [sym_initializer_expression] = STATE(3228), - [sym_default_expression] = STATE(3228), - [sym_with_expression] = STATE(3228), - [sym_sizeof_expression] = STATE(3228), - [sym_typeof_expression] = STATE(3228), - [sym_makeref_expression] = STATE(3228), - [sym_ref_expression] = STATE(3228), - [sym_reftype_expression] = STATE(3228), - [sym_refvalue_expression] = STATE(3228), - [sym_stackalloc_expression] = STATE(3228), - [sym_range_expression] = STATE(3228), - [sym_tuple_expression] = STATE(2609), - [sym_literal] = STATE(3228), - [sym_character_literal] = STATE(3278), - [sym_string_literal] = STATE(3278), - [sym_raw_string_literal] = STATE(3278), - [sym_boolean_literal] = STATE(3278), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3228), - [sym_preproc_if_in_attribute_list] = STATE(5576), - [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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3396), + [1808] = { + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2416), + [sym__name] = STATE(5890), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2193), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(5304), + [sym_non_lvalue_expression] = STATE(3040), + [sym_lvalue_expression] = STATE(3631), + [sym__expression_statement_expression] = STATE(3035), + [sym_assignment_expression] = STATE(3043), + [sym_binary_expression] = STATE(3035), + [sym_postfix_unary_expression] = STATE(3043), + [sym_prefix_unary_expression] = STATE(3043), + [sym__pointer_indirection_expression] = STATE(2415), + [sym_query_expression] = STATE(3035), + [sym_from_clause] = STATE(6164), + [sym_conditional_expression] = STATE(3035), + [sym_conditional_access_expression] = STATE(3035), + [sym_as_expression] = STATE(3035), + [sym_is_expression] = STATE(3035), + [sym_is_pattern_expression] = STATE(3035), + [sym_cast_expression] = STATE(3035), + [sym_checked_expression] = STATE(3035), + [sym_invocation_expression] = STATE(3043), + [sym_switch_expression] = STATE(3035), + [sym_await_expression] = STATE(3043), + [sym_throw_expression] = STATE(3035), + [sym_element_access_expression] = STATE(2415), + [sym_interpolated_string_expression] = STATE(3035), + [sym_member_access_expression] = STATE(2415), + [sym_object_creation_expression] = STATE(3043), + [sym_parenthesized_expression] = STATE(3043), + [sym__parenthesized_lvalue_expression] = STATE(2415), + [sym_lambda_expression] = STATE(3035), + [sym__lambda_expression_init] = STATE(7458), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3035), + [sym_anonymous_method_expression] = STATE(3035), + [sym_anonymous_object_creation_expression] = STATE(3035), + [sym_implicit_array_creation_expression] = STATE(3035), + [sym_implicit_object_creation_expression] = STATE(3035), + [sym_implicit_stackalloc_expression] = STATE(3035), + [sym_initializer_expression] = STATE(3035), + [sym_default_expression] = STATE(3035), + [sym_with_expression] = STATE(3035), + [sym_sizeof_expression] = STATE(3035), + [sym_typeof_expression] = STATE(3035), + [sym_makeref_expression] = STATE(3035), + [sym_ref_expression] = STATE(3035), + [sym_reftype_expression] = STATE(3035), + [sym_refvalue_expression] = STATE(3035), + [sym_stackalloc_expression] = STATE(3035), + [sym_range_expression] = STATE(3035), + [sym_tuple_expression] = STATE(2415), + [sym_literal] = STATE(3035), + [sym_character_literal] = STATE(3037), + [sym_string_literal] = STATE(3037), + [sym_raw_string_literal] = STATE(3037), + [sym_boolean_literal] = STATE(3037), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3035), + [sym_preproc_if_in_attribute_list] = STATE(5583), + [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(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3455), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1153), - [anon_sym_LPAREN] = ACTIONS(1759), - [anon_sym_ref] = ACTIONS(1761), - [anon_sym_LBRACE] = ACTIONS(1159), - [anon_sym_delegate] = ACTIONS(1161), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1239), + [anon_sym_LPAREN] = ACTIONS(2101), + [anon_sym_ref] = ACTIONS(2103), + [anon_sym_LBRACE] = ACTIONS(1245), + [anon_sym_delegate] = ACTIONS(1247), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1163), + [anon_sym_new] = ACTIONS(1249), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1167), - [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(1173), - [anon_sym_false] = ACTIONS(1173), - [anon_sym_PLUS] = ACTIONS(1763), - [anon_sym_DASH] = ACTIONS(1763), - [anon_sym_STAR] = ACTIONS(1175), - [anon_sym_CARET] = ACTIONS(1765), - [anon_sym_AMP] = ACTIONS(1765), - [anon_sym_this] = ACTIONS(1177), + [anon_sym_checked] = ACTIONS(1251), + [anon_sym_BANG] = ACTIONS(2107), + [anon_sym_TILDE] = ACTIONS(2107), + [anon_sym_PLUS_PLUS] = ACTIONS(2107), + [anon_sym_DASH_DASH] = ACTIONS(2107), + [anon_sym_true] = ACTIONS(1257), + [anon_sym_false] = ACTIONS(1257), + [anon_sym_PLUS] = ACTIONS(2105), + [anon_sym_DASH] = ACTIONS(2105), + [anon_sym_STAR] = ACTIONS(1259), + [anon_sym_CARET] = ACTIONS(2107), + [anon_sym_AMP] = ACTIONS(2107), + [anon_sym_this] = ACTIONS(1261), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1179), + [anon_sym_base] = ACTIONS(1263), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1181), - [anon_sym_unchecked] = ACTIONS(1167), + [sym_predefined_type] = ACTIONS(1265), + [anon_sym_unchecked] = ACTIONS(1251), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1183), - [anon_sym_throw] = ACTIONS(1767), + [anon_sym_default] = ACTIONS(1267), + [anon_sym_throw] = ACTIONS(2109), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1769), - [anon_sym_DOT_DOT] = ACTIONS(1771), + [anon_sym_await] = ACTIONS(2111), + [anon_sym_DOT_DOT] = ACTIONS(2113), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -343239,19 +347350,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1191), - [anon_sym_sizeof] = ACTIONS(1193), - [anon_sym_typeof] = ACTIONS(1195), - [anon_sym___makeref] = ACTIONS(1197), - [anon_sym___reftype] = ACTIONS(1199), - [anon_sym___refvalue] = ACTIONS(1201), - [sym_null_literal] = ACTIONS(1203), - [anon_sym_SQUOTE] = ACTIONS(1205), - [sym_integer_literal] = ACTIONS(1203), - [sym_real_literal] = ACTIONS(1207), - [anon_sym_DQUOTE] = ACTIONS(1209), - [sym_verbatim_string_literal] = ACTIONS(1207), - [aux_sym_preproc_if_token1] = ACTIONS(1773), + [anon_sym_stackalloc] = ACTIONS(1275), + [anon_sym_sizeof] = ACTIONS(1277), + [anon_sym_typeof] = ACTIONS(1279), + [anon_sym___makeref] = ACTIONS(1281), + [anon_sym___reftype] = ACTIONS(1283), + [anon_sym___refvalue] = ACTIONS(1285), + [sym_null_literal] = ACTIONS(1287), + [anon_sym_SQUOTE] = ACTIONS(1289), + [sym_integer_literal] = ACTIONS(1287), + [sym_real_literal] = ACTIONS(1291), + [anon_sym_DQUOTE] = ACTIONS(1293), + [sym_verbatim_string_literal] = ACTIONS(1291), + [aux_sym_preproc_if_token1] = ACTIONS(2115), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -343262,140 +347373,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(1213), - [sym_interpolation_verbatim_start] = ACTIONS(1215), - [sym_interpolation_raw_start] = ACTIONS(1217), - [sym_raw_string_start] = ACTIONS(1219), + [sym_interpolation_regular_start] = ACTIONS(1297), + [sym_interpolation_verbatim_start] = ACTIONS(1299), + [sym_interpolation_raw_start] = ACTIONS(1301), + [sym_raw_string_start] = ACTIONS(1303), }, - [1784] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2610), - [sym__name] = STATE(5898), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2197), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(4797), - [sym_non_lvalue_expression] = STATE(3277), - [sym_lvalue_expression] = STATE(3510), - [sym__expression_statement_expression] = STATE(3228), - [sym_assignment_expression] = STATE(3289), - [sym_binary_expression] = STATE(3228), - [sym_postfix_unary_expression] = STATE(3289), - [sym_prefix_unary_expression] = STATE(3289), - [sym__pointer_indirection_expression] = STATE(2609), - [sym_query_expression] = STATE(3228), - [sym_from_clause] = STATE(6180), - [sym_conditional_expression] = STATE(3228), - [sym_conditional_access_expression] = STATE(3228), - [sym_as_expression] = STATE(3228), - [sym_is_expression] = STATE(3228), - [sym_is_pattern_expression] = STATE(3228), - [sym_cast_expression] = STATE(3228), - [sym_checked_expression] = STATE(3228), - [sym_invocation_expression] = STATE(3289), - [sym_switch_expression] = STATE(3228), - [sym_await_expression] = STATE(3289), - [sym_throw_expression] = STATE(3228), - [sym_element_access_expression] = STATE(2609), - [sym_interpolated_string_expression] = STATE(3228), - [sym_member_access_expression] = STATE(2609), - [sym_object_creation_expression] = STATE(3289), - [sym_parenthesized_expression] = STATE(3289), - [sym__parenthesized_lvalue_expression] = STATE(2609), - [sym_lambda_expression] = STATE(3228), - [sym__lambda_expression_init] = STATE(7527), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3228), - [sym_anonymous_method_expression] = STATE(3228), - [sym_anonymous_object_creation_expression] = STATE(3228), - [sym_implicit_array_creation_expression] = STATE(3228), - [sym_implicit_object_creation_expression] = STATE(3228), - [sym_implicit_stackalloc_expression] = STATE(3228), - [sym_initializer_expression] = STATE(3228), - [sym_default_expression] = STATE(3228), - [sym_with_expression] = STATE(3228), - [sym_sizeof_expression] = STATE(3228), - [sym_typeof_expression] = STATE(3228), - [sym_makeref_expression] = STATE(3228), - [sym_ref_expression] = STATE(3228), - [sym_reftype_expression] = STATE(3228), - [sym_refvalue_expression] = STATE(3228), - [sym_stackalloc_expression] = STATE(3228), - [sym_range_expression] = STATE(3228), - [sym_tuple_expression] = STATE(2609), - [sym_literal] = STATE(3228), - [sym_character_literal] = STATE(3278), - [sym_string_literal] = STATE(3278), - [sym_raw_string_literal] = STATE(3278), - [sym_boolean_literal] = STATE(3278), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3228), - [sym_preproc_if_in_attribute_list] = STATE(5576), - [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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3396), + [1809] = { + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(5152), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2196), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(3523), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3640), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3102), + [sym_postfix_unary_expression] = STATE(3079), + [sym_prefix_unary_expression] = STATE(3079), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6137), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3102), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3079), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3102), + [sym_member_access_expression] = STATE(2472), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3079), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7645), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(3102), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3102), + [sym_typeof_expression] = STATE(3102), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2472), + [sym_literal] = STATE(3102), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), + [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(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1153), - [anon_sym_LPAREN] = ACTIONS(1759), - [anon_sym_ref] = ACTIONS(1761), - [anon_sym_LBRACE] = ACTIONS(1159), - [anon_sym_delegate] = ACTIONS(1161), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1479), + [anon_sym_LPAREN] = ACTIONS(2081), + [anon_sym_ref] = ACTIONS(2083), + [anon_sym_LBRACE] = ACTIONS(1481), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1163), + [anon_sym_new] = ACTIONS(1059), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1167), - [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(1173), - [anon_sym_false] = ACTIONS(1173), - [anon_sym_PLUS] = ACTIONS(1763), - [anon_sym_DASH] = ACTIONS(1763), - [anon_sym_STAR] = ACTIONS(1175), - [anon_sym_CARET] = ACTIONS(1765), - [anon_sym_AMP] = ACTIONS(1765), - [anon_sym_this] = ACTIONS(1177), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(2087), + [anon_sym_TILDE] = ACTIONS(2087), + [anon_sym_PLUS_PLUS] = ACTIONS(2087), + [anon_sym_DASH_DASH] = ACTIONS(2087), + [anon_sym_true] = ACTIONS(77), + [anon_sym_false] = ACTIONS(77), + [anon_sym_PLUS] = ACTIONS(2085), + [anon_sym_DASH] = ACTIONS(2085), + [anon_sym_STAR] = ACTIONS(81), + [anon_sym_CARET] = ACTIONS(2087), + [anon_sym_AMP] = ACTIONS(2087), + [anon_sym_this] = ACTIONS(83), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1179), + [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1181), - [anon_sym_unchecked] = ACTIONS(1167), + [sym_predefined_type] = ACTIONS(91), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1183), - [anon_sym_throw] = ACTIONS(1767), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(2089), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1769), - [anon_sym_DOT_DOT] = ACTIONS(1771), + [anon_sym_await] = ACTIONS(2091), + [anon_sym_DOT_DOT] = ACTIONS(2093), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -343408,19 +347519,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1191), - [anon_sym_sizeof] = ACTIONS(1193), - [anon_sym_typeof] = ACTIONS(1195), - [anon_sym___makeref] = ACTIONS(1197), - [anon_sym___reftype] = ACTIONS(1199), - [anon_sym___refvalue] = ACTIONS(1201), - [sym_null_literal] = ACTIONS(1203), - [anon_sym_SQUOTE] = ACTIONS(1205), - [sym_integer_literal] = ACTIONS(1203), - [sym_real_literal] = ACTIONS(1207), - [anon_sym_DQUOTE] = ACTIONS(1209), - [sym_verbatim_string_literal] = ACTIONS(1207), - [aux_sym_preproc_if_token1] = ACTIONS(1773), + [anon_sym_stackalloc] = ACTIONS(127), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_literal] = ACTIONS(143), + [anon_sym_DQUOTE] = ACTIONS(145), + [sym_verbatim_string_literal] = ACTIONS(143), + [aux_sym_preproc_if_token1] = ACTIONS(2095), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -343431,140 +347542,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(1213), - [sym_interpolation_verbatim_start] = ACTIONS(1215), - [sym_interpolation_raw_start] = ACTIONS(1217), - [sym_raw_string_start] = ACTIONS(1219), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [sym_interpolation_raw_start] = ACTIONS(155), + [sym_raw_string_start] = ACTIONS(157), }, - [1785] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2610), - [sym__name] = STATE(5898), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2197), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(4798), - [sym_non_lvalue_expression] = STATE(3277), - [sym_lvalue_expression] = STATE(3510), - [sym__expression_statement_expression] = STATE(3228), - [sym_assignment_expression] = STATE(3289), - [sym_binary_expression] = STATE(3228), - [sym_postfix_unary_expression] = STATE(3289), - [sym_prefix_unary_expression] = STATE(3289), - [sym__pointer_indirection_expression] = STATE(2609), - [sym_query_expression] = STATE(3228), - [sym_from_clause] = STATE(6180), - [sym_conditional_expression] = STATE(3228), - [sym_conditional_access_expression] = STATE(3228), - [sym_as_expression] = STATE(3228), - [sym_is_expression] = STATE(3228), - [sym_is_pattern_expression] = STATE(3228), - [sym_cast_expression] = STATE(3228), - [sym_checked_expression] = STATE(3228), - [sym_invocation_expression] = STATE(3289), - [sym_switch_expression] = STATE(3228), - [sym_await_expression] = STATE(3289), - [sym_throw_expression] = STATE(3228), - [sym_element_access_expression] = STATE(2609), - [sym_interpolated_string_expression] = STATE(3228), - [sym_member_access_expression] = STATE(2609), - [sym_object_creation_expression] = STATE(3289), - [sym_parenthesized_expression] = STATE(3289), - [sym__parenthesized_lvalue_expression] = STATE(2609), - [sym_lambda_expression] = STATE(3228), - [sym__lambda_expression_init] = STATE(7527), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3228), - [sym_anonymous_method_expression] = STATE(3228), - [sym_anonymous_object_creation_expression] = STATE(3228), - [sym_implicit_array_creation_expression] = STATE(3228), - [sym_implicit_object_creation_expression] = STATE(3228), - [sym_implicit_stackalloc_expression] = STATE(3228), - [sym_initializer_expression] = STATE(3228), - [sym_default_expression] = STATE(3228), - [sym_with_expression] = STATE(3228), - [sym_sizeof_expression] = STATE(3228), - [sym_typeof_expression] = STATE(3228), - [sym_makeref_expression] = STATE(3228), - [sym_ref_expression] = STATE(3228), - [sym_reftype_expression] = STATE(3228), - [sym_refvalue_expression] = STATE(3228), - [sym_stackalloc_expression] = STATE(3228), - [sym_range_expression] = STATE(3228), - [sym_tuple_expression] = STATE(2609), - [sym_literal] = STATE(3228), - [sym_character_literal] = STATE(3278), - [sym_string_literal] = STATE(3278), - [sym_raw_string_literal] = STATE(3278), - [sym_boolean_literal] = STATE(3278), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3228), - [sym_preproc_if_in_attribute_list] = STATE(5576), - [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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3396), + [1810] = { + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(5873), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2238), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(5359), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3468), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3102), + [sym_postfix_unary_expression] = STATE(3079), + [sym_prefix_unary_expression] = STATE(3079), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6134), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3102), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3079), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3102), + [sym_member_access_expression] = STATE(2472), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3079), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7309), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(3102), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3102), + [sym_typeof_expression] = STATE(3102), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2472), + [sym_literal] = STATE(3102), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), + [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(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1153), - [anon_sym_LPAREN] = ACTIONS(1759), - [anon_sym_ref] = ACTIONS(1761), - [anon_sym_LBRACE] = ACTIONS(1159), - [anon_sym_delegate] = ACTIONS(1161), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1479), + [anon_sym_LPAREN] = ACTIONS(659), + [anon_sym_ref] = ACTIONS(663), + [anon_sym_LBRACE] = ACTIONS(1481), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1163), + [anon_sym_new] = ACTIONS(1059), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1167), - [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(1173), - [anon_sym_false] = ACTIONS(1173), - [anon_sym_PLUS] = ACTIONS(1763), - [anon_sym_DASH] = ACTIONS(1763), - [anon_sym_STAR] = ACTIONS(1175), - [anon_sym_CARET] = ACTIONS(1765), - [anon_sym_AMP] = ACTIONS(1765), - [anon_sym_this] = ACTIONS(1177), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(1485), + [anon_sym_TILDE] = ACTIONS(1485), + [anon_sym_PLUS_PLUS] = ACTIONS(1485), + [anon_sym_DASH_DASH] = ACTIONS(1485), + [anon_sym_true] = ACTIONS(77), + [anon_sym_false] = ACTIONS(77), + [anon_sym_PLUS] = ACTIONS(1483), + [anon_sym_DASH] = ACTIONS(1483), + [anon_sym_STAR] = ACTIONS(683), + [anon_sym_CARET] = ACTIONS(1485), + [anon_sym_AMP] = ACTIONS(1485), + [anon_sym_this] = ACTIONS(83), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1179), + [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1181), - [anon_sym_unchecked] = ACTIONS(1167), + [sym_predefined_type] = ACTIONS(91), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1183), - [anon_sym_throw] = ACTIONS(1767), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(1077), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1769), - [anon_sym_DOT_DOT] = ACTIONS(1771), + [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), @@ -343577,19 +347688,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1191), - [anon_sym_sizeof] = ACTIONS(1193), - [anon_sym_typeof] = ACTIONS(1195), - [anon_sym___makeref] = ACTIONS(1197), - [anon_sym___reftype] = ACTIONS(1199), - [anon_sym___refvalue] = ACTIONS(1201), - [sym_null_literal] = ACTIONS(1203), - [anon_sym_SQUOTE] = ACTIONS(1205), - [sym_integer_literal] = ACTIONS(1203), - [sym_real_literal] = ACTIONS(1207), - [anon_sym_DQUOTE] = ACTIONS(1209), - [sym_verbatim_string_literal] = ACTIONS(1207), - [aux_sym_preproc_if_token1] = ACTIONS(1773), + [anon_sym_stackalloc] = ACTIONS(127), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_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), @@ -343600,140 +347711,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(1213), - [sym_interpolation_verbatim_start] = ACTIONS(1215), - [sym_interpolation_raw_start] = ACTIONS(1217), - [sym_raw_string_start] = ACTIONS(1219), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [sym_interpolation_raw_start] = ACTIONS(155), + [sym_raw_string_start] = ACTIONS(157), }, - [1786] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2610), - [sym__name] = STATE(5898), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2197), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(4799), - [sym_non_lvalue_expression] = STATE(3277), - [sym_lvalue_expression] = STATE(3510), - [sym__expression_statement_expression] = STATE(3228), - [sym_assignment_expression] = STATE(3289), - [sym_binary_expression] = STATE(3228), - [sym_postfix_unary_expression] = STATE(3289), - [sym_prefix_unary_expression] = STATE(3289), - [sym__pointer_indirection_expression] = STATE(2609), - [sym_query_expression] = STATE(3228), - [sym_from_clause] = STATE(6180), - [sym_conditional_expression] = STATE(3228), - [sym_conditional_access_expression] = STATE(3228), - [sym_as_expression] = STATE(3228), - [sym_is_expression] = STATE(3228), - [sym_is_pattern_expression] = STATE(3228), - [sym_cast_expression] = STATE(3228), - [sym_checked_expression] = STATE(3228), - [sym_invocation_expression] = STATE(3289), - [sym_switch_expression] = STATE(3228), - [sym_await_expression] = STATE(3289), - [sym_throw_expression] = STATE(3228), - [sym_element_access_expression] = STATE(2609), - [sym_interpolated_string_expression] = STATE(3228), - [sym_member_access_expression] = STATE(2609), - [sym_object_creation_expression] = STATE(3289), - [sym_parenthesized_expression] = STATE(3289), - [sym__parenthesized_lvalue_expression] = STATE(2609), - [sym_lambda_expression] = STATE(3228), - [sym__lambda_expression_init] = STATE(7527), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3228), - [sym_anonymous_method_expression] = STATE(3228), - [sym_anonymous_object_creation_expression] = STATE(3228), - [sym_implicit_array_creation_expression] = STATE(3228), - [sym_implicit_object_creation_expression] = STATE(3228), - [sym_implicit_stackalloc_expression] = STATE(3228), - [sym_initializer_expression] = STATE(3228), - [sym_default_expression] = STATE(3228), - [sym_with_expression] = STATE(3228), - [sym_sizeof_expression] = STATE(3228), - [sym_typeof_expression] = STATE(3228), - [sym_makeref_expression] = STATE(3228), - [sym_ref_expression] = STATE(3228), - [sym_reftype_expression] = STATE(3228), - [sym_refvalue_expression] = STATE(3228), - [sym_stackalloc_expression] = STATE(3228), - [sym_range_expression] = STATE(3228), - [sym_tuple_expression] = STATE(2609), - [sym_literal] = STATE(3228), - [sym_character_literal] = STATE(3278), - [sym_string_literal] = STATE(3278), - [sym_raw_string_literal] = STATE(3278), - [sym_boolean_literal] = STATE(3278), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3228), - [sym_preproc_if_in_attribute_list] = STATE(5576), - [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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3396), + [1811] = { + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(5152), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2196), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(5360), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3640), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3102), + [sym_postfix_unary_expression] = STATE(3079), + [sym_prefix_unary_expression] = STATE(3079), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6137), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3102), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3079), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3102), + [sym_member_access_expression] = STATE(2472), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3079), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7645), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(3102), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3102), + [sym_typeof_expression] = STATE(3102), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2472), + [sym_literal] = STATE(3102), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), + [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(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1153), - [anon_sym_LPAREN] = ACTIONS(1759), - [anon_sym_ref] = ACTIONS(1761), - [anon_sym_LBRACE] = ACTIONS(1159), - [anon_sym_delegate] = ACTIONS(1161), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1479), + [anon_sym_LPAREN] = ACTIONS(2081), + [anon_sym_ref] = ACTIONS(2083), + [anon_sym_LBRACE] = ACTIONS(1481), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1163), + [anon_sym_new] = ACTIONS(1059), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1167), - [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(1173), - [anon_sym_false] = ACTIONS(1173), - [anon_sym_PLUS] = ACTIONS(1763), - [anon_sym_DASH] = ACTIONS(1763), - [anon_sym_STAR] = ACTIONS(1175), - [anon_sym_CARET] = ACTIONS(1765), - [anon_sym_AMP] = ACTIONS(1765), - [anon_sym_this] = ACTIONS(1177), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(2087), + [anon_sym_TILDE] = ACTIONS(2087), + [anon_sym_PLUS_PLUS] = ACTIONS(2087), + [anon_sym_DASH_DASH] = ACTIONS(2087), + [anon_sym_true] = ACTIONS(77), + [anon_sym_false] = ACTIONS(77), + [anon_sym_PLUS] = ACTIONS(2085), + [anon_sym_DASH] = ACTIONS(2085), + [anon_sym_STAR] = ACTIONS(81), + [anon_sym_CARET] = ACTIONS(2087), + [anon_sym_AMP] = ACTIONS(2087), + [anon_sym_this] = ACTIONS(83), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1179), + [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1181), - [anon_sym_unchecked] = ACTIONS(1167), + [sym_predefined_type] = ACTIONS(91), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1183), - [anon_sym_throw] = ACTIONS(1767), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(2089), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1769), - [anon_sym_DOT_DOT] = ACTIONS(1771), + [anon_sym_await] = ACTIONS(2091), + [anon_sym_DOT_DOT] = ACTIONS(2093), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -343746,19 +347857,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1191), - [anon_sym_sizeof] = ACTIONS(1193), - [anon_sym_typeof] = ACTIONS(1195), - [anon_sym___makeref] = ACTIONS(1197), - [anon_sym___reftype] = ACTIONS(1199), - [anon_sym___refvalue] = ACTIONS(1201), - [sym_null_literal] = ACTIONS(1203), - [anon_sym_SQUOTE] = ACTIONS(1205), - [sym_integer_literal] = ACTIONS(1203), - [sym_real_literal] = ACTIONS(1207), - [anon_sym_DQUOTE] = ACTIONS(1209), - [sym_verbatim_string_literal] = ACTIONS(1207), - [aux_sym_preproc_if_token1] = ACTIONS(1773), + [anon_sym_stackalloc] = ACTIONS(127), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_literal] = ACTIONS(143), + [anon_sym_DQUOTE] = ACTIONS(145), + [sym_verbatim_string_literal] = ACTIONS(143), + [aux_sym_preproc_if_token1] = ACTIONS(2095), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -343769,140 +347880,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(1213), - [sym_interpolation_verbatim_start] = ACTIONS(1215), - [sym_interpolation_raw_start] = ACTIONS(1217), - [sym_raw_string_start] = ACTIONS(1219), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [sym_interpolation_raw_start] = ACTIONS(155), + [sym_raw_string_start] = ACTIONS(157), }, - [1787] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2610), - [sym__name] = STATE(5898), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2197), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(4800), - [sym_non_lvalue_expression] = STATE(3277), - [sym_lvalue_expression] = STATE(3510), - [sym__expression_statement_expression] = STATE(3228), - [sym_assignment_expression] = STATE(3289), - [sym_binary_expression] = STATE(3228), - [sym_postfix_unary_expression] = STATE(3289), - [sym_prefix_unary_expression] = STATE(3289), - [sym__pointer_indirection_expression] = STATE(2609), - [sym_query_expression] = STATE(3228), - [sym_from_clause] = STATE(6180), - [sym_conditional_expression] = STATE(3228), - [sym_conditional_access_expression] = STATE(3228), - [sym_as_expression] = STATE(3228), - [sym_is_expression] = STATE(3228), - [sym_is_pattern_expression] = STATE(3228), - [sym_cast_expression] = STATE(3228), - [sym_checked_expression] = STATE(3228), - [sym_invocation_expression] = STATE(3289), - [sym_switch_expression] = STATE(3228), - [sym_await_expression] = STATE(3289), - [sym_throw_expression] = STATE(3228), - [sym_element_access_expression] = STATE(2609), - [sym_interpolated_string_expression] = STATE(3228), - [sym_member_access_expression] = STATE(2609), - [sym_object_creation_expression] = STATE(3289), - [sym_parenthesized_expression] = STATE(3289), - [sym__parenthesized_lvalue_expression] = STATE(2609), - [sym_lambda_expression] = STATE(3228), - [sym__lambda_expression_init] = STATE(7527), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3228), - [sym_anonymous_method_expression] = STATE(3228), - [sym_anonymous_object_creation_expression] = STATE(3228), - [sym_implicit_array_creation_expression] = STATE(3228), - [sym_implicit_object_creation_expression] = STATE(3228), - [sym_implicit_stackalloc_expression] = STATE(3228), - [sym_initializer_expression] = STATE(3228), - [sym_default_expression] = STATE(3228), - [sym_with_expression] = STATE(3228), - [sym_sizeof_expression] = STATE(3228), - [sym_typeof_expression] = STATE(3228), - [sym_makeref_expression] = STATE(3228), - [sym_ref_expression] = STATE(3228), - [sym_reftype_expression] = STATE(3228), - [sym_refvalue_expression] = STATE(3228), - [sym_stackalloc_expression] = STATE(3228), - [sym_range_expression] = STATE(3228), - [sym_tuple_expression] = STATE(2609), - [sym_literal] = STATE(3228), - [sym_character_literal] = STATE(3278), - [sym_string_literal] = STATE(3278), - [sym_raw_string_literal] = STATE(3278), - [sym_boolean_literal] = STATE(3278), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3228), - [sym_preproc_if_in_attribute_list] = STATE(5576), - [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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3396), + [1812] = { + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2416), + [sym__name] = STATE(5890), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2193), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(5305), + [sym_non_lvalue_expression] = STATE(3040), + [sym_lvalue_expression] = STATE(3631), + [sym__expression_statement_expression] = STATE(3035), + [sym_assignment_expression] = STATE(3043), + [sym_binary_expression] = STATE(3035), + [sym_postfix_unary_expression] = STATE(3043), + [sym_prefix_unary_expression] = STATE(3043), + [sym__pointer_indirection_expression] = STATE(2415), + [sym_query_expression] = STATE(3035), + [sym_from_clause] = STATE(6164), + [sym_conditional_expression] = STATE(3035), + [sym_conditional_access_expression] = STATE(3035), + [sym_as_expression] = STATE(3035), + [sym_is_expression] = STATE(3035), + [sym_is_pattern_expression] = STATE(3035), + [sym_cast_expression] = STATE(3035), + [sym_checked_expression] = STATE(3035), + [sym_invocation_expression] = STATE(3043), + [sym_switch_expression] = STATE(3035), + [sym_await_expression] = STATE(3043), + [sym_throw_expression] = STATE(3035), + [sym_element_access_expression] = STATE(2415), + [sym_interpolated_string_expression] = STATE(3035), + [sym_member_access_expression] = STATE(2415), + [sym_object_creation_expression] = STATE(3043), + [sym_parenthesized_expression] = STATE(3043), + [sym__parenthesized_lvalue_expression] = STATE(2415), + [sym_lambda_expression] = STATE(3035), + [sym__lambda_expression_init] = STATE(7458), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3035), + [sym_anonymous_method_expression] = STATE(3035), + [sym_anonymous_object_creation_expression] = STATE(3035), + [sym_implicit_array_creation_expression] = STATE(3035), + [sym_implicit_object_creation_expression] = STATE(3035), + [sym_implicit_stackalloc_expression] = STATE(3035), + [sym_initializer_expression] = STATE(3035), + [sym_default_expression] = STATE(3035), + [sym_with_expression] = STATE(3035), + [sym_sizeof_expression] = STATE(3035), + [sym_typeof_expression] = STATE(3035), + [sym_makeref_expression] = STATE(3035), + [sym_ref_expression] = STATE(3035), + [sym_reftype_expression] = STATE(3035), + [sym_refvalue_expression] = STATE(3035), + [sym_stackalloc_expression] = STATE(3035), + [sym_range_expression] = STATE(3035), + [sym_tuple_expression] = STATE(2415), + [sym_literal] = STATE(3035), + [sym_character_literal] = STATE(3037), + [sym_string_literal] = STATE(3037), + [sym_raw_string_literal] = STATE(3037), + [sym_boolean_literal] = STATE(3037), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3035), + [sym_preproc_if_in_attribute_list] = STATE(5583), + [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(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3455), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1153), - [anon_sym_LPAREN] = ACTIONS(1759), - [anon_sym_ref] = ACTIONS(1761), - [anon_sym_LBRACE] = ACTIONS(1159), - [anon_sym_delegate] = ACTIONS(1161), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1239), + [anon_sym_LPAREN] = ACTIONS(2101), + [anon_sym_ref] = ACTIONS(2103), + [anon_sym_LBRACE] = ACTIONS(1245), + [anon_sym_delegate] = ACTIONS(1247), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1163), + [anon_sym_new] = ACTIONS(1249), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1167), - [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(1173), - [anon_sym_false] = ACTIONS(1173), - [anon_sym_PLUS] = ACTIONS(1763), - [anon_sym_DASH] = ACTIONS(1763), - [anon_sym_STAR] = ACTIONS(1175), - [anon_sym_CARET] = ACTIONS(1765), - [anon_sym_AMP] = ACTIONS(1765), - [anon_sym_this] = ACTIONS(1177), + [anon_sym_checked] = ACTIONS(1251), + [anon_sym_BANG] = ACTIONS(2107), + [anon_sym_TILDE] = ACTIONS(2107), + [anon_sym_PLUS_PLUS] = ACTIONS(2107), + [anon_sym_DASH_DASH] = ACTIONS(2107), + [anon_sym_true] = ACTIONS(1257), + [anon_sym_false] = ACTIONS(1257), + [anon_sym_PLUS] = ACTIONS(2105), + [anon_sym_DASH] = ACTIONS(2105), + [anon_sym_STAR] = ACTIONS(1259), + [anon_sym_CARET] = ACTIONS(2107), + [anon_sym_AMP] = ACTIONS(2107), + [anon_sym_this] = ACTIONS(1261), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1179), + [anon_sym_base] = ACTIONS(1263), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1181), - [anon_sym_unchecked] = ACTIONS(1167), + [sym_predefined_type] = ACTIONS(1265), + [anon_sym_unchecked] = ACTIONS(1251), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1183), - [anon_sym_throw] = ACTIONS(1767), + [anon_sym_default] = ACTIONS(1267), + [anon_sym_throw] = ACTIONS(2109), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1769), - [anon_sym_DOT_DOT] = ACTIONS(1771), + [anon_sym_await] = ACTIONS(2111), + [anon_sym_DOT_DOT] = ACTIONS(2113), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -343915,19 +348026,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1191), - [anon_sym_sizeof] = ACTIONS(1193), - [anon_sym_typeof] = ACTIONS(1195), - [anon_sym___makeref] = ACTIONS(1197), - [anon_sym___reftype] = ACTIONS(1199), - [anon_sym___refvalue] = ACTIONS(1201), - [sym_null_literal] = ACTIONS(1203), - [anon_sym_SQUOTE] = ACTIONS(1205), - [sym_integer_literal] = ACTIONS(1203), - [sym_real_literal] = ACTIONS(1207), - [anon_sym_DQUOTE] = ACTIONS(1209), - [sym_verbatim_string_literal] = ACTIONS(1207), - [aux_sym_preproc_if_token1] = ACTIONS(1773), + [anon_sym_stackalloc] = ACTIONS(1275), + [anon_sym_sizeof] = ACTIONS(1277), + [anon_sym_typeof] = ACTIONS(1279), + [anon_sym___makeref] = ACTIONS(1281), + [anon_sym___reftype] = ACTIONS(1283), + [anon_sym___refvalue] = ACTIONS(1285), + [sym_null_literal] = ACTIONS(1287), + [anon_sym_SQUOTE] = ACTIONS(1289), + [sym_integer_literal] = ACTIONS(1287), + [sym_real_literal] = ACTIONS(1291), + [anon_sym_DQUOTE] = ACTIONS(1293), + [sym_verbatim_string_literal] = ACTIONS(1291), + [aux_sym_preproc_if_token1] = ACTIONS(2115), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -343938,140 +348049,647 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1213), - [sym_interpolation_verbatim_start] = ACTIONS(1215), - [sym_interpolation_raw_start] = ACTIONS(1217), - [sym_raw_string_start] = ACTIONS(1219), + [sym_interpolation_regular_start] = ACTIONS(1297), + [sym_interpolation_verbatim_start] = ACTIONS(1299), + [sym_interpolation_raw_start] = ACTIONS(1301), + [sym_raw_string_start] = ACTIONS(1303), }, - [1788] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(5910), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2247), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(4593), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3379), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3080), - [sym_postfix_unary_expression] = STATE(3111), - [sym_prefix_unary_expression] = STATE(3111), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6154), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3080), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3111), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3080), - [sym_member_access_expression] = STATE(2484), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3111), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7575), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(3080), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3080), - [sym_typeof_expression] = STATE(3080), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2484), - [sym_literal] = STATE(3080), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), - [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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [1813] = { + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(3182), + [sym__name] = STATE(5882), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2306), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2262), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(4336), + [sym_non_lvalue_expression] = STATE(4580), + [sym_lvalue_expression] = STATE(3312), + [sym__expression_statement_expression] = STATE(4573), + [sym_assignment_expression] = STATE(4581), + [sym_binary_expression] = STATE(4573), + [sym_postfix_unary_expression] = STATE(4581), + [sym_prefix_unary_expression] = STATE(4581), + [sym__pointer_indirection_expression] = STATE(3144), + [sym_query_expression] = STATE(4573), + [sym_from_clause] = STATE(6160), + [sym_conditional_expression] = STATE(4573), + [sym_conditional_access_expression] = STATE(4573), + [sym_as_expression] = STATE(4573), + [sym_is_expression] = STATE(4573), + [sym_is_pattern_expression] = STATE(4573), + [sym_cast_expression] = STATE(4573), + [sym_checked_expression] = STATE(4573), + [sym_invocation_expression] = STATE(4581), + [sym_switch_expression] = STATE(4573), + [sym_await_expression] = STATE(4581), + [sym_throw_expression] = STATE(4573), + [sym_element_access_expression] = STATE(3144), + [sym_interpolated_string_expression] = STATE(4573), + [sym_member_access_expression] = STATE(3144), + [sym_object_creation_expression] = STATE(4581), + [sym_parenthesized_expression] = STATE(4581), + [sym__parenthesized_lvalue_expression] = STATE(3144), + [sym_lambda_expression] = STATE(4573), + [sym__lambda_expression_init] = STATE(7399), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(4573), + [sym_anonymous_method_expression] = STATE(4573), + [sym_anonymous_object_creation_expression] = STATE(4573), + [sym_implicit_array_creation_expression] = STATE(4573), + [sym_implicit_object_creation_expression] = STATE(4573), + [sym_implicit_stackalloc_expression] = STATE(4573), + [sym_initializer_expression] = STATE(4573), + [sym_default_expression] = STATE(4573), + [sym_with_expression] = STATE(4573), + [sym_sizeof_expression] = STATE(4573), + [sym_typeof_expression] = STATE(4573), + [sym_makeref_expression] = STATE(4573), + [sym_ref_expression] = STATE(4573), + [sym_reftype_expression] = STATE(4573), + [sym_refvalue_expression] = STATE(4573), + [sym_stackalloc_expression] = STATE(4573), + [sym_range_expression] = STATE(4573), + [sym_tuple_expression] = STATE(3144), + [sym_literal] = STATE(4573), + [sym_character_literal] = STATE(4575), + [sym_string_literal] = STATE(4575), + [sym_raw_string_literal] = STATE(4575), + [sym_boolean_literal] = STATE(4575), + [sym_identifier] = STATE(2237), + [sym__reserved_identifier] = STATE(2229), + [sym_preproc_if_in_expression] = STATE(4573), + [sym_preproc_if_in_attribute_list] = STATE(5583), + [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(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3501), + [sym__identifier_token] = ACTIONS(1385), + [anon_sym_alias] = ACTIONS(1387), + [anon_sym_global] = ACTIONS(1387), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1389), + [anon_sym_LPAREN] = ACTIONS(1461), + [anon_sym_ref] = ACTIONS(1463), + [anon_sym_LBRACE] = ACTIONS(1395), + [anon_sym_delegate] = ACTIONS(1397), + [anon_sym_async] = ACTIONS(1045), + [anon_sym_file] = ACTIONS(1387), + [anon_sym_new] = ACTIONS(1465), + [anon_sym_where] = ACTIONS(1387), + [anon_sym_notnull] = ACTIONS(1387), + [anon_sym_unmanaged] = ACTIONS(1387), + [anon_sym_checked] = ACTIONS(1401), + [anon_sym_BANG] = ACTIONS(1469), + [anon_sym_TILDE] = ACTIONS(1469), + [anon_sym_PLUS_PLUS] = ACTIONS(1469), + [anon_sym_DASH_DASH] = ACTIONS(1469), + [anon_sym_true] = ACTIONS(1407), + [anon_sym_false] = ACTIONS(1407), + [anon_sym_PLUS] = ACTIONS(1467), + [anon_sym_DASH] = ACTIONS(1467), + [anon_sym_STAR] = ACTIONS(1471), + [anon_sym_CARET] = ACTIONS(1469), + [anon_sym_AMP] = ACTIONS(1469), + [anon_sym_this] = ACTIONS(1411), + [anon_sym_scoped] = ACTIONS(1413), + [anon_sym_base] = ACTIONS(1415), + [anon_sym_var] = ACTIONS(1417), + [sym_predefined_type] = ACTIONS(1419), + [anon_sym_unchecked] = ACTIONS(1401), + [anon_sym_yield] = ACTIONS(1387), + [anon_sym_default] = ACTIONS(1421), + [anon_sym_throw] = ACTIONS(1473), + [anon_sym_when] = ACTIONS(1387), + [anon_sym_await] = ACTIONS(1475), + [anon_sym_DOT_DOT] = ACTIONS(1477), + [anon_sym_from] = ACTIONS(1429), + [anon_sym_into] = ACTIONS(1387), + [anon_sym_join] = ACTIONS(1387), + [anon_sym_on] = ACTIONS(1387), + [anon_sym_equals] = ACTIONS(1387), + [anon_sym_let] = ACTIONS(1387), + [anon_sym_orderby] = ACTIONS(1387), + [anon_sym_ascending] = ACTIONS(1387), + [anon_sym_descending] = ACTIONS(1387), + [anon_sym_group] = ACTIONS(1387), + [anon_sym_by] = ACTIONS(1387), + [anon_sym_select] = ACTIONS(1387), + [anon_sym_stackalloc] = ACTIONS(1431), + [anon_sym_sizeof] = ACTIONS(1433), + [anon_sym_typeof] = ACTIONS(1435), + [anon_sym___makeref] = ACTIONS(1437), + [anon_sym___reftype] = ACTIONS(1439), + [anon_sym___refvalue] = ACTIONS(1441), + [sym_null_literal] = ACTIONS(1443), + [anon_sym_SQUOTE] = ACTIONS(1445), + [sym_integer_literal] = ACTIONS(1443), + [sym_real_literal] = ACTIONS(1447), + [anon_sym_DQUOTE] = ACTIONS(1449), + [sym_verbatim_string_literal] = ACTIONS(1447), + [aux_sym_preproc_if_token1] = ACTIONS(1451), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + [sym_interpolation_regular_start] = ACTIONS(1453), + [sym_interpolation_verbatim_start] = ACTIONS(1455), + [sym_interpolation_raw_start] = ACTIONS(1457), + [sym_raw_string_start] = ACTIONS(1459), + }, + [1814] = { + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(3182), + [sym__name] = STATE(5888), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2286), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2262), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(4296), + [sym_non_lvalue_expression] = STATE(4580), + [sym_lvalue_expression] = STATE(3192), + [sym__expression_statement_expression] = STATE(4573), + [sym_assignment_expression] = STATE(4581), + [sym_binary_expression] = STATE(4573), + [sym_postfix_unary_expression] = STATE(4581), + [sym_prefix_unary_expression] = STATE(4581), + [sym__pointer_indirection_expression] = STATE(3144), + [sym_query_expression] = STATE(4573), + [sym_from_clause] = STATE(6160), + [sym_conditional_expression] = STATE(4573), + [sym_conditional_access_expression] = STATE(4573), + [sym_as_expression] = STATE(4573), + [sym_is_expression] = STATE(4573), + [sym_is_pattern_expression] = STATE(4573), + [sym_cast_expression] = STATE(4573), + [sym_checked_expression] = STATE(4573), + [sym_invocation_expression] = STATE(4581), + [sym_switch_expression] = STATE(4573), + [sym_await_expression] = STATE(4581), + [sym_throw_expression] = STATE(4573), + [sym_element_access_expression] = STATE(3144), + [sym_interpolated_string_expression] = STATE(4573), + [sym_member_access_expression] = STATE(3144), + [sym_object_creation_expression] = STATE(4581), + [sym_parenthesized_expression] = STATE(4581), + [sym__parenthesized_lvalue_expression] = STATE(3144), + [sym_lambda_expression] = STATE(4573), + [sym__lambda_expression_init] = STATE(7491), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(4573), + [sym_anonymous_method_expression] = STATE(4573), + [sym_anonymous_object_creation_expression] = STATE(4573), + [sym_implicit_array_creation_expression] = STATE(4573), + [sym_implicit_object_creation_expression] = STATE(4573), + [sym_implicit_stackalloc_expression] = STATE(4573), + [sym_initializer_expression] = STATE(4573), + [sym_default_expression] = STATE(4573), + [sym_with_expression] = STATE(4573), + [sym_sizeof_expression] = STATE(4573), + [sym_typeof_expression] = STATE(4573), + [sym_makeref_expression] = STATE(4573), + [sym_ref_expression] = STATE(4573), + [sym_reftype_expression] = STATE(4573), + [sym_refvalue_expression] = STATE(4573), + [sym_stackalloc_expression] = STATE(4573), + [sym_range_expression] = STATE(4573), + [sym_tuple_expression] = STATE(3144), + [sym_literal] = STATE(4573), + [sym_character_literal] = STATE(4575), + [sym_string_literal] = STATE(4575), + [sym_raw_string_literal] = STATE(4575), + [sym_boolean_literal] = STATE(4575), + [sym_identifier] = STATE(2237), + [sym__reserved_identifier] = STATE(2229), + [sym_preproc_if_in_expression] = STATE(4573), + [sym_preproc_if_in_attribute_list] = STATE(5583), + [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(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3501), + [sym__identifier_token] = ACTIONS(1385), + [anon_sym_alias] = ACTIONS(1387), + [anon_sym_global] = ACTIONS(1387), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1389), + [anon_sym_LPAREN] = ACTIONS(1391), + [anon_sym_ref] = ACTIONS(1393), + [anon_sym_LBRACE] = ACTIONS(1395), + [anon_sym_delegate] = ACTIONS(1397), + [anon_sym_async] = ACTIONS(1045), + [anon_sym_file] = ACTIONS(1387), + [anon_sym_new] = ACTIONS(1399), + [anon_sym_where] = ACTIONS(1387), + [anon_sym_notnull] = ACTIONS(1387), + [anon_sym_unmanaged] = ACTIONS(1387), + [anon_sym_checked] = ACTIONS(1401), + [anon_sym_BANG] = ACTIONS(1405), + [anon_sym_TILDE] = ACTIONS(1405), + [anon_sym_PLUS_PLUS] = ACTIONS(1405), + [anon_sym_DASH_DASH] = ACTIONS(1405), + [anon_sym_true] = ACTIONS(1407), + [anon_sym_false] = ACTIONS(1407), + [anon_sym_PLUS] = ACTIONS(1403), + [anon_sym_DASH] = ACTIONS(1403), + [anon_sym_STAR] = ACTIONS(1409), + [anon_sym_CARET] = ACTIONS(1405), + [anon_sym_AMP] = ACTIONS(1405), + [anon_sym_this] = ACTIONS(1411), + [anon_sym_scoped] = ACTIONS(1413), + [anon_sym_base] = ACTIONS(1415), + [anon_sym_var] = ACTIONS(1417), + [sym_predefined_type] = ACTIONS(1419), + [anon_sym_unchecked] = ACTIONS(1401), + [anon_sym_yield] = ACTIONS(1387), + [anon_sym_default] = ACTIONS(1421), + [anon_sym_throw] = ACTIONS(1423), + [anon_sym_when] = ACTIONS(1387), + [anon_sym_await] = ACTIONS(1425), + [anon_sym_DOT_DOT] = ACTIONS(1427), + [anon_sym_from] = ACTIONS(1429), + [anon_sym_into] = ACTIONS(1387), + [anon_sym_join] = ACTIONS(1387), + [anon_sym_on] = ACTIONS(1387), + [anon_sym_equals] = ACTIONS(1387), + [anon_sym_let] = ACTIONS(1387), + [anon_sym_orderby] = ACTIONS(1387), + [anon_sym_ascending] = ACTIONS(1387), + [anon_sym_descending] = ACTIONS(1387), + [anon_sym_group] = ACTIONS(1387), + [anon_sym_by] = ACTIONS(1387), + [anon_sym_select] = ACTIONS(1387), + [anon_sym_stackalloc] = ACTIONS(1431), + [anon_sym_sizeof] = ACTIONS(1433), + [anon_sym_typeof] = ACTIONS(1435), + [anon_sym___makeref] = ACTIONS(1437), + [anon_sym___reftype] = ACTIONS(1439), + [anon_sym___refvalue] = ACTIONS(1441), + [sym_null_literal] = ACTIONS(1443), + [anon_sym_SQUOTE] = ACTIONS(1445), + [sym_integer_literal] = ACTIONS(1443), + [sym_real_literal] = ACTIONS(1447), + [anon_sym_DQUOTE] = ACTIONS(1449), + [sym_verbatim_string_literal] = ACTIONS(1447), + [aux_sym_preproc_if_token1] = ACTIONS(1451), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + [sym_interpolation_regular_start] = ACTIONS(1453), + [sym_interpolation_verbatim_start] = ACTIONS(1455), + [sym_interpolation_raw_start] = ACTIONS(1457), + [sym_raw_string_start] = ACTIONS(1459), + }, + [1815] = { + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(3182), + [sym__name] = STATE(5888), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2286), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2262), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(4299), + [sym_non_lvalue_expression] = STATE(4580), + [sym_lvalue_expression] = STATE(3192), + [sym__expression_statement_expression] = STATE(4573), + [sym_assignment_expression] = STATE(4581), + [sym_binary_expression] = STATE(4573), + [sym_postfix_unary_expression] = STATE(4581), + [sym_prefix_unary_expression] = STATE(4581), + [sym__pointer_indirection_expression] = STATE(3144), + [sym_query_expression] = STATE(4573), + [sym_from_clause] = STATE(6160), + [sym_conditional_expression] = STATE(4573), + [sym_conditional_access_expression] = STATE(4573), + [sym_as_expression] = STATE(4573), + [sym_is_expression] = STATE(4573), + [sym_is_pattern_expression] = STATE(4573), + [sym_cast_expression] = STATE(4573), + [sym_checked_expression] = STATE(4573), + [sym_invocation_expression] = STATE(4581), + [sym_switch_expression] = STATE(4573), + [sym_await_expression] = STATE(4581), + [sym_throw_expression] = STATE(4573), + [sym_element_access_expression] = STATE(3144), + [sym_interpolated_string_expression] = STATE(4573), + [sym_member_access_expression] = STATE(3144), + [sym_object_creation_expression] = STATE(4581), + [sym_parenthesized_expression] = STATE(4581), + [sym__parenthesized_lvalue_expression] = STATE(3144), + [sym_lambda_expression] = STATE(4573), + [sym__lambda_expression_init] = STATE(7491), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(4573), + [sym_anonymous_method_expression] = STATE(4573), + [sym_anonymous_object_creation_expression] = STATE(4573), + [sym_implicit_array_creation_expression] = STATE(4573), + [sym_implicit_object_creation_expression] = STATE(4573), + [sym_implicit_stackalloc_expression] = STATE(4573), + [sym_initializer_expression] = STATE(4573), + [sym_default_expression] = STATE(4573), + [sym_with_expression] = STATE(4573), + [sym_sizeof_expression] = STATE(4573), + [sym_typeof_expression] = STATE(4573), + [sym_makeref_expression] = STATE(4573), + [sym_ref_expression] = STATE(4573), + [sym_reftype_expression] = STATE(4573), + [sym_refvalue_expression] = STATE(4573), + [sym_stackalloc_expression] = STATE(4573), + [sym_range_expression] = STATE(4573), + [sym_tuple_expression] = STATE(3144), + [sym_literal] = STATE(4573), + [sym_character_literal] = STATE(4575), + [sym_string_literal] = STATE(4575), + [sym_raw_string_literal] = STATE(4575), + [sym_boolean_literal] = STATE(4575), + [sym_identifier] = STATE(2237), + [sym__reserved_identifier] = STATE(2229), + [sym_preproc_if_in_expression] = STATE(4573), + [sym_preproc_if_in_attribute_list] = STATE(5583), + [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(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3501), + [sym__identifier_token] = ACTIONS(1385), + [anon_sym_alias] = ACTIONS(1387), + [anon_sym_global] = ACTIONS(1387), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1389), + [anon_sym_LPAREN] = ACTIONS(1391), + [anon_sym_ref] = ACTIONS(1393), + [anon_sym_LBRACE] = ACTIONS(1395), + [anon_sym_delegate] = ACTIONS(1397), + [anon_sym_async] = ACTIONS(1045), + [anon_sym_file] = ACTIONS(1387), + [anon_sym_new] = ACTIONS(1399), + [anon_sym_where] = ACTIONS(1387), + [anon_sym_notnull] = ACTIONS(1387), + [anon_sym_unmanaged] = ACTIONS(1387), + [anon_sym_checked] = ACTIONS(1401), + [anon_sym_BANG] = ACTIONS(1405), + [anon_sym_TILDE] = ACTIONS(1405), + [anon_sym_PLUS_PLUS] = ACTIONS(1405), + [anon_sym_DASH_DASH] = ACTIONS(1405), + [anon_sym_true] = ACTIONS(1407), + [anon_sym_false] = ACTIONS(1407), + [anon_sym_PLUS] = ACTIONS(1403), + [anon_sym_DASH] = ACTIONS(1403), + [anon_sym_STAR] = ACTIONS(1409), + [anon_sym_CARET] = ACTIONS(1405), + [anon_sym_AMP] = ACTIONS(1405), + [anon_sym_this] = ACTIONS(1411), + [anon_sym_scoped] = ACTIONS(1413), + [anon_sym_base] = ACTIONS(1415), + [anon_sym_var] = ACTIONS(1417), + [sym_predefined_type] = ACTIONS(1419), + [anon_sym_unchecked] = ACTIONS(1401), + [anon_sym_yield] = ACTIONS(1387), + [anon_sym_default] = ACTIONS(1421), + [anon_sym_throw] = ACTIONS(1423), + [anon_sym_when] = ACTIONS(1387), + [anon_sym_await] = ACTIONS(1425), + [anon_sym_DOT_DOT] = ACTIONS(1427), + [anon_sym_from] = ACTIONS(1429), + [anon_sym_into] = ACTIONS(1387), + [anon_sym_join] = ACTIONS(1387), + [anon_sym_on] = ACTIONS(1387), + [anon_sym_equals] = ACTIONS(1387), + [anon_sym_let] = ACTIONS(1387), + [anon_sym_orderby] = ACTIONS(1387), + [anon_sym_ascending] = ACTIONS(1387), + [anon_sym_descending] = ACTIONS(1387), + [anon_sym_group] = ACTIONS(1387), + [anon_sym_by] = ACTIONS(1387), + [anon_sym_select] = ACTIONS(1387), + [anon_sym_stackalloc] = ACTIONS(1431), + [anon_sym_sizeof] = ACTIONS(1433), + [anon_sym_typeof] = ACTIONS(1435), + [anon_sym___makeref] = ACTIONS(1437), + [anon_sym___reftype] = ACTIONS(1439), + [anon_sym___refvalue] = ACTIONS(1441), + [sym_null_literal] = ACTIONS(1443), + [anon_sym_SQUOTE] = ACTIONS(1445), + [sym_integer_literal] = ACTIONS(1443), + [sym_real_literal] = ACTIONS(1447), + [anon_sym_DQUOTE] = ACTIONS(1449), + [sym_verbatim_string_literal] = ACTIONS(1447), + [aux_sym_preproc_if_token1] = ACTIONS(1451), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + [sym_interpolation_regular_start] = ACTIONS(1453), + [sym_interpolation_verbatim_start] = ACTIONS(1455), + [sym_interpolation_raw_start] = ACTIONS(1457), + [sym_raw_string_start] = ACTIONS(1459), + }, + [1816] = { + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2416), + [sym__name] = STATE(5890), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2193), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(5269), + [sym_non_lvalue_expression] = STATE(3040), + [sym_lvalue_expression] = STATE(3631), + [sym__expression_statement_expression] = STATE(3035), + [sym_assignment_expression] = STATE(3043), + [sym_binary_expression] = STATE(3035), + [sym_postfix_unary_expression] = STATE(3043), + [sym_prefix_unary_expression] = STATE(3043), + [sym__pointer_indirection_expression] = STATE(2415), + [sym_query_expression] = STATE(3035), + [sym_from_clause] = STATE(6164), + [sym_conditional_expression] = STATE(3035), + [sym_conditional_access_expression] = STATE(3035), + [sym_as_expression] = STATE(3035), + [sym_is_expression] = STATE(3035), + [sym_is_pattern_expression] = STATE(3035), + [sym_cast_expression] = STATE(3035), + [sym_checked_expression] = STATE(3035), + [sym_invocation_expression] = STATE(3043), + [sym_switch_expression] = STATE(3035), + [sym_await_expression] = STATE(3043), + [sym_throw_expression] = STATE(3035), + [sym_element_access_expression] = STATE(2415), + [sym_interpolated_string_expression] = STATE(3035), + [sym_member_access_expression] = STATE(2415), + [sym_object_creation_expression] = STATE(3043), + [sym_parenthesized_expression] = STATE(3043), + [sym__parenthesized_lvalue_expression] = STATE(2415), + [sym_lambda_expression] = STATE(3035), + [sym__lambda_expression_init] = STATE(7458), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3035), + [sym_anonymous_method_expression] = STATE(3035), + [sym_anonymous_object_creation_expression] = STATE(3035), + [sym_implicit_array_creation_expression] = STATE(3035), + [sym_implicit_object_creation_expression] = STATE(3035), + [sym_implicit_stackalloc_expression] = STATE(3035), + [sym_initializer_expression] = STATE(3035), + [sym_default_expression] = STATE(3035), + [sym_with_expression] = STATE(3035), + [sym_sizeof_expression] = STATE(3035), + [sym_typeof_expression] = STATE(3035), + [sym_makeref_expression] = STATE(3035), + [sym_ref_expression] = STATE(3035), + [sym_reftype_expression] = STATE(3035), + [sym_refvalue_expression] = STATE(3035), + [sym_stackalloc_expression] = STATE(3035), + [sym_range_expression] = STATE(3035), + [sym_tuple_expression] = STATE(2415), + [sym_literal] = STATE(3035), + [sym_character_literal] = STATE(3037), + [sym_string_literal] = STATE(3037), + [sym_raw_string_literal] = STATE(3037), + [sym_boolean_literal] = STATE(3037), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3035), + [sym_preproc_if_in_attribute_list] = STATE(5583), + [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(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3455), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1481), - [anon_sym_LPAREN] = ACTIONS(895), - [anon_sym_ref] = ACTIONS(897), - [anon_sym_LBRACE] = ACTIONS(1487), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1239), + [anon_sym_LPAREN] = ACTIONS(2101), + [anon_sym_ref] = ACTIONS(2103), + [anon_sym_LBRACE] = ACTIONS(1245), + [anon_sym_delegate] = ACTIONS(1247), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1061), + [anon_sym_new] = ACTIONS(1249), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1067), - [anon_sym_BANG] = ACTIONS(1495), - [anon_sym_TILDE] = ACTIONS(1495), - [anon_sym_PLUS_PLUS] = ACTIONS(1495), - [anon_sym_DASH_DASH] = ACTIONS(1495), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1493), - [anon_sym_DASH] = ACTIONS(1493), - [anon_sym_STAR] = ACTIONS(905), - [anon_sym_CARET] = ACTIONS(1495), - [anon_sym_AMP] = ACTIONS(1495), - [anon_sym_this] = ACTIONS(83), + [anon_sym_checked] = ACTIONS(1251), + [anon_sym_BANG] = ACTIONS(2107), + [anon_sym_TILDE] = ACTIONS(2107), + [anon_sym_PLUS_PLUS] = ACTIONS(2107), + [anon_sym_DASH_DASH] = ACTIONS(2107), + [anon_sym_true] = ACTIONS(1257), + [anon_sym_false] = ACTIONS(1257), + [anon_sym_PLUS] = ACTIONS(2105), + [anon_sym_DASH] = ACTIONS(2105), + [anon_sym_STAR] = ACTIONS(1259), + [anon_sym_CARET] = ACTIONS(2107), + [anon_sym_AMP] = ACTIONS(2107), + [anon_sym_this] = ACTIONS(1261), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), + [anon_sym_base] = ACTIONS(1263), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1067), + [sym_predefined_type] = ACTIONS(1265), + [anon_sym_unchecked] = ACTIONS(1251), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1079), + [anon_sym_default] = ACTIONS(1267), + [anon_sym_throw] = ACTIONS(2109), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1081), - [anon_sym_DOT_DOT] = ACTIONS(911), + [anon_sym_await] = ACTIONS(2111), + [anon_sym_DOT_DOT] = ACTIONS(2113), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -344084,19 +348702,19 @@ static const uint16_t ts_parse_table[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(1089), + [anon_sym_stackalloc] = ACTIONS(1275), + [anon_sym_sizeof] = ACTIONS(1277), + [anon_sym_typeof] = ACTIONS(1279), + [anon_sym___makeref] = ACTIONS(1281), + [anon_sym___reftype] = ACTIONS(1283), + [anon_sym___refvalue] = ACTIONS(1285), + [sym_null_literal] = ACTIONS(1287), + [anon_sym_SQUOTE] = ACTIONS(1289), + [sym_integer_literal] = ACTIONS(1287), + [sym_real_literal] = ACTIONS(1291), + [anon_sym_DQUOTE] = ACTIONS(1293), + [sym_verbatim_string_literal] = ACTIONS(1291), + [aux_sym_preproc_if_token1] = ACTIONS(2115), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -344107,140 +348725,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(1297), + [sym_interpolation_verbatim_start] = ACTIONS(1299), + [sym_interpolation_raw_start] = ACTIONS(1301), + [sym_raw_string_start] = ACTIONS(1303), }, - [1789] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2610), - [sym__name] = STATE(5898), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2197), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(4802), - [sym_non_lvalue_expression] = STATE(3277), - [sym_lvalue_expression] = STATE(3510), - [sym__expression_statement_expression] = STATE(3228), - [sym_assignment_expression] = STATE(3289), - [sym_binary_expression] = STATE(3228), - [sym_postfix_unary_expression] = STATE(3289), - [sym_prefix_unary_expression] = STATE(3289), - [sym__pointer_indirection_expression] = STATE(2609), - [sym_query_expression] = STATE(3228), - [sym_from_clause] = STATE(6180), - [sym_conditional_expression] = STATE(3228), - [sym_conditional_access_expression] = STATE(3228), - [sym_as_expression] = STATE(3228), - [sym_is_expression] = STATE(3228), - [sym_is_pattern_expression] = STATE(3228), - [sym_cast_expression] = STATE(3228), - [sym_checked_expression] = STATE(3228), - [sym_invocation_expression] = STATE(3289), - [sym_switch_expression] = STATE(3228), - [sym_await_expression] = STATE(3289), - [sym_throw_expression] = STATE(3228), - [sym_element_access_expression] = STATE(2609), - [sym_interpolated_string_expression] = STATE(3228), - [sym_member_access_expression] = STATE(2609), - [sym_object_creation_expression] = STATE(3289), - [sym_parenthesized_expression] = STATE(3289), - [sym__parenthesized_lvalue_expression] = STATE(2609), - [sym_lambda_expression] = STATE(3228), - [sym__lambda_expression_init] = STATE(7527), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3228), - [sym_anonymous_method_expression] = STATE(3228), - [sym_anonymous_object_creation_expression] = STATE(3228), - [sym_implicit_array_creation_expression] = STATE(3228), - [sym_implicit_object_creation_expression] = STATE(3228), - [sym_implicit_stackalloc_expression] = STATE(3228), - [sym_initializer_expression] = STATE(3228), - [sym_default_expression] = STATE(3228), - [sym_with_expression] = STATE(3228), - [sym_sizeof_expression] = STATE(3228), - [sym_typeof_expression] = STATE(3228), - [sym_makeref_expression] = STATE(3228), - [sym_ref_expression] = STATE(3228), - [sym_reftype_expression] = STATE(3228), - [sym_refvalue_expression] = STATE(3228), - [sym_stackalloc_expression] = STATE(3228), - [sym_range_expression] = STATE(3228), - [sym_tuple_expression] = STATE(2609), - [sym_literal] = STATE(3228), - [sym_character_literal] = STATE(3278), - [sym_string_literal] = STATE(3278), - [sym_raw_string_literal] = STATE(3278), - [sym_boolean_literal] = STATE(3278), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3228), - [sym_preproc_if_in_attribute_list] = STATE(5576), - [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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3396), + [1817] = { + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2416), + [sym__name] = STATE(5890), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2193), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(2893), + [sym_non_lvalue_expression] = STATE(3040), + [sym_lvalue_expression] = STATE(3631), + [sym__expression_statement_expression] = STATE(3035), + [sym_assignment_expression] = STATE(3043), + [sym_binary_expression] = STATE(3035), + [sym_postfix_unary_expression] = STATE(3043), + [sym_prefix_unary_expression] = STATE(3043), + [sym__pointer_indirection_expression] = STATE(2415), + [sym_query_expression] = STATE(3035), + [sym_from_clause] = STATE(6164), + [sym_conditional_expression] = STATE(3035), + [sym_conditional_access_expression] = STATE(3035), + [sym_as_expression] = STATE(3035), + [sym_is_expression] = STATE(3035), + [sym_is_pattern_expression] = STATE(3035), + [sym_cast_expression] = STATE(3035), + [sym_checked_expression] = STATE(3035), + [sym_invocation_expression] = STATE(3043), + [sym_switch_expression] = STATE(3035), + [sym_await_expression] = STATE(3043), + [sym_throw_expression] = STATE(3035), + [sym_element_access_expression] = STATE(2415), + [sym_interpolated_string_expression] = STATE(3035), + [sym_member_access_expression] = STATE(2415), + [sym_object_creation_expression] = STATE(3043), + [sym_parenthesized_expression] = STATE(3043), + [sym__parenthesized_lvalue_expression] = STATE(2415), + [sym_lambda_expression] = STATE(3035), + [sym__lambda_expression_init] = STATE(7458), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3035), + [sym_anonymous_method_expression] = STATE(3035), + [sym_anonymous_object_creation_expression] = STATE(3035), + [sym_implicit_array_creation_expression] = STATE(3035), + [sym_implicit_object_creation_expression] = STATE(3035), + [sym_implicit_stackalloc_expression] = STATE(3035), + [sym_initializer_expression] = STATE(3035), + [sym_default_expression] = STATE(3035), + [sym_with_expression] = STATE(3035), + [sym_sizeof_expression] = STATE(3035), + [sym_typeof_expression] = STATE(3035), + [sym_makeref_expression] = STATE(3035), + [sym_ref_expression] = STATE(3035), + [sym_reftype_expression] = STATE(3035), + [sym_refvalue_expression] = STATE(3035), + [sym_stackalloc_expression] = STATE(3035), + [sym_range_expression] = STATE(3035), + [sym_tuple_expression] = STATE(2415), + [sym_literal] = STATE(3035), + [sym_character_literal] = STATE(3037), + [sym_string_literal] = STATE(3037), + [sym_raw_string_literal] = STATE(3037), + [sym_boolean_literal] = STATE(3037), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3035), + [sym_preproc_if_in_attribute_list] = STATE(5583), + [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(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3455), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1153), - [anon_sym_LPAREN] = ACTIONS(1759), - [anon_sym_ref] = ACTIONS(1761), - [anon_sym_LBRACE] = ACTIONS(1159), - [anon_sym_delegate] = ACTIONS(1161), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1239), + [anon_sym_LPAREN] = ACTIONS(2101), + [anon_sym_ref] = ACTIONS(2103), + [anon_sym_LBRACE] = ACTIONS(1245), + [anon_sym_delegate] = ACTIONS(1247), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1163), + [anon_sym_new] = ACTIONS(1249), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1167), - [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(1173), - [anon_sym_false] = ACTIONS(1173), - [anon_sym_PLUS] = ACTIONS(1763), - [anon_sym_DASH] = ACTIONS(1763), - [anon_sym_STAR] = ACTIONS(1175), - [anon_sym_CARET] = ACTIONS(1765), - [anon_sym_AMP] = ACTIONS(1765), - [anon_sym_this] = ACTIONS(1177), + [anon_sym_checked] = ACTIONS(1251), + [anon_sym_BANG] = ACTIONS(2107), + [anon_sym_TILDE] = ACTIONS(2107), + [anon_sym_PLUS_PLUS] = ACTIONS(2107), + [anon_sym_DASH_DASH] = ACTIONS(2107), + [anon_sym_true] = ACTIONS(1257), + [anon_sym_false] = ACTIONS(1257), + [anon_sym_PLUS] = ACTIONS(2105), + [anon_sym_DASH] = ACTIONS(2105), + [anon_sym_STAR] = ACTIONS(1259), + [anon_sym_CARET] = ACTIONS(2107), + [anon_sym_AMP] = ACTIONS(2107), + [anon_sym_this] = ACTIONS(1261), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1179), + [anon_sym_base] = ACTIONS(1263), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1181), - [anon_sym_unchecked] = ACTIONS(1167), + [sym_predefined_type] = ACTIONS(1265), + [anon_sym_unchecked] = ACTIONS(1251), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1183), - [anon_sym_throw] = ACTIONS(1767), + [anon_sym_default] = ACTIONS(1267), + [anon_sym_throw] = ACTIONS(2109), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1769), - [anon_sym_DOT_DOT] = ACTIONS(1771), + [anon_sym_await] = ACTIONS(2111), + [anon_sym_DOT_DOT] = ACTIONS(2113), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -344253,19 +348871,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1191), - [anon_sym_sizeof] = ACTIONS(1193), - [anon_sym_typeof] = ACTIONS(1195), - [anon_sym___makeref] = ACTIONS(1197), - [anon_sym___reftype] = ACTIONS(1199), - [anon_sym___refvalue] = ACTIONS(1201), - [sym_null_literal] = ACTIONS(1203), - [anon_sym_SQUOTE] = ACTIONS(1205), - [sym_integer_literal] = ACTIONS(1203), - [sym_real_literal] = ACTIONS(1207), - [anon_sym_DQUOTE] = ACTIONS(1209), - [sym_verbatim_string_literal] = ACTIONS(1207), - [aux_sym_preproc_if_token1] = ACTIONS(1773), + [anon_sym_stackalloc] = ACTIONS(1275), + [anon_sym_sizeof] = ACTIONS(1277), + [anon_sym_typeof] = ACTIONS(1279), + [anon_sym___makeref] = ACTIONS(1281), + [anon_sym___reftype] = ACTIONS(1283), + [anon_sym___refvalue] = ACTIONS(1285), + [sym_null_literal] = ACTIONS(1287), + [anon_sym_SQUOTE] = ACTIONS(1289), + [sym_integer_literal] = ACTIONS(1287), + [sym_real_literal] = ACTIONS(1291), + [anon_sym_DQUOTE] = ACTIONS(1293), + [sym_verbatim_string_literal] = ACTIONS(1291), + [aux_sym_preproc_if_token1] = ACTIONS(2115), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -344276,140 +348894,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(1213), - [sym_interpolation_verbatim_start] = ACTIONS(1215), - [sym_interpolation_raw_start] = ACTIONS(1217), - [sym_raw_string_start] = ACTIONS(1219), + [sym_interpolation_regular_start] = ACTIONS(1297), + [sym_interpolation_verbatim_start] = ACTIONS(1299), + [sym_interpolation_raw_start] = ACTIONS(1301), + [sym_raw_string_start] = ACTIONS(1303), }, - [1790] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2610), - [sym__name] = STATE(5898), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2197), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(4803), - [sym_non_lvalue_expression] = STATE(3277), - [sym_lvalue_expression] = STATE(3510), - [sym__expression_statement_expression] = STATE(3228), - [sym_assignment_expression] = STATE(3289), - [sym_binary_expression] = STATE(3228), - [sym_postfix_unary_expression] = STATE(3289), - [sym_prefix_unary_expression] = STATE(3289), - [sym__pointer_indirection_expression] = STATE(2609), - [sym_query_expression] = STATE(3228), - [sym_from_clause] = STATE(6180), - [sym_conditional_expression] = STATE(3228), - [sym_conditional_access_expression] = STATE(3228), - [sym_as_expression] = STATE(3228), - [sym_is_expression] = STATE(3228), - [sym_is_pattern_expression] = STATE(3228), - [sym_cast_expression] = STATE(3228), - [sym_checked_expression] = STATE(3228), - [sym_invocation_expression] = STATE(3289), - [sym_switch_expression] = STATE(3228), - [sym_await_expression] = STATE(3289), - [sym_throw_expression] = STATE(3228), - [sym_element_access_expression] = STATE(2609), - [sym_interpolated_string_expression] = STATE(3228), - [sym_member_access_expression] = STATE(2609), - [sym_object_creation_expression] = STATE(3289), - [sym_parenthesized_expression] = STATE(3289), - [sym__parenthesized_lvalue_expression] = STATE(2609), - [sym_lambda_expression] = STATE(3228), - [sym__lambda_expression_init] = STATE(7527), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3228), - [sym_anonymous_method_expression] = STATE(3228), - [sym_anonymous_object_creation_expression] = STATE(3228), - [sym_implicit_array_creation_expression] = STATE(3228), - [sym_implicit_object_creation_expression] = STATE(3228), - [sym_implicit_stackalloc_expression] = STATE(3228), - [sym_initializer_expression] = STATE(3228), - [sym_default_expression] = STATE(3228), - [sym_with_expression] = STATE(3228), - [sym_sizeof_expression] = STATE(3228), - [sym_typeof_expression] = STATE(3228), - [sym_makeref_expression] = STATE(3228), - [sym_ref_expression] = STATE(3228), - [sym_reftype_expression] = STATE(3228), - [sym_refvalue_expression] = STATE(3228), - [sym_stackalloc_expression] = STATE(3228), - [sym_range_expression] = STATE(3228), - [sym_tuple_expression] = STATE(2609), - [sym_literal] = STATE(3228), - [sym_character_literal] = STATE(3278), - [sym_string_literal] = STATE(3278), - [sym_raw_string_literal] = STATE(3278), - [sym_boolean_literal] = STATE(3278), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3228), - [sym_preproc_if_in_attribute_list] = STATE(5576), - [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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3396), + [1818] = { + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2416), + [sym__name] = STATE(5890), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2193), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(5271), + [sym_non_lvalue_expression] = STATE(3040), + [sym_lvalue_expression] = STATE(3631), + [sym__expression_statement_expression] = STATE(3035), + [sym_assignment_expression] = STATE(3043), + [sym_binary_expression] = STATE(3035), + [sym_postfix_unary_expression] = STATE(3043), + [sym_prefix_unary_expression] = STATE(3043), + [sym__pointer_indirection_expression] = STATE(2415), + [sym_query_expression] = STATE(3035), + [sym_from_clause] = STATE(6164), + [sym_conditional_expression] = STATE(3035), + [sym_conditional_access_expression] = STATE(3035), + [sym_as_expression] = STATE(3035), + [sym_is_expression] = STATE(3035), + [sym_is_pattern_expression] = STATE(3035), + [sym_cast_expression] = STATE(3035), + [sym_checked_expression] = STATE(3035), + [sym_invocation_expression] = STATE(3043), + [sym_switch_expression] = STATE(3035), + [sym_await_expression] = STATE(3043), + [sym_throw_expression] = STATE(3035), + [sym_element_access_expression] = STATE(2415), + [sym_interpolated_string_expression] = STATE(3035), + [sym_member_access_expression] = STATE(2415), + [sym_object_creation_expression] = STATE(3043), + [sym_parenthesized_expression] = STATE(3043), + [sym__parenthesized_lvalue_expression] = STATE(2415), + [sym_lambda_expression] = STATE(3035), + [sym__lambda_expression_init] = STATE(7458), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3035), + [sym_anonymous_method_expression] = STATE(3035), + [sym_anonymous_object_creation_expression] = STATE(3035), + [sym_implicit_array_creation_expression] = STATE(3035), + [sym_implicit_object_creation_expression] = STATE(3035), + [sym_implicit_stackalloc_expression] = STATE(3035), + [sym_initializer_expression] = STATE(3035), + [sym_default_expression] = STATE(3035), + [sym_with_expression] = STATE(3035), + [sym_sizeof_expression] = STATE(3035), + [sym_typeof_expression] = STATE(3035), + [sym_makeref_expression] = STATE(3035), + [sym_ref_expression] = STATE(3035), + [sym_reftype_expression] = STATE(3035), + [sym_refvalue_expression] = STATE(3035), + [sym_stackalloc_expression] = STATE(3035), + [sym_range_expression] = STATE(3035), + [sym_tuple_expression] = STATE(2415), + [sym_literal] = STATE(3035), + [sym_character_literal] = STATE(3037), + [sym_string_literal] = STATE(3037), + [sym_raw_string_literal] = STATE(3037), + [sym_boolean_literal] = STATE(3037), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3035), + [sym_preproc_if_in_attribute_list] = STATE(5583), + [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(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3455), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1153), - [anon_sym_LPAREN] = ACTIONS(1759), - [anon_sym_ref] = ACTIONS(1761), - [anon_sym_LBRACE] = ACTIONS(1159), - [anon_sym_delegate] = ACTIONS(1161), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1239), + [anon_sym_LPAREN] = ACTIONS(2101), + [anon_sym_ref] = ACTIONS(2103), + [anon_sym_LBRACE] = ACTIONS(1245), + [anon_sym_delegate] = ACTIONS(1247), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1163), + [anon_sym_new] = ACTIONS(1249), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1167), - [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(1173), - [anon_sym_false] = ACTIONS(1173), - [anon_sym_PLUS] = ACTIONS(1763), - [anon_sym_DASH] = ACTIONS(1763), - [anon_sym_STAR] = ACTIONS(1175), - [anon_sym_CARET] = ACTIONS(1765), - [anon_sym_AMP] = ACTIONS(1765), - [anon_sym_this] = ACTIONS(1177), + [anon_sym_checked] = ACTIONS(1251), + [anon_sym_BANG] = ACTIONS(2107), + [anon_sym_TILDE] = ACTIONS(2107), + [anon_sym_PLUS_PLUS] = ACTIONS(2107), + [anon_sym_DASH_DASH] = ACTIONS(2107), + [anon_sym_true] = ACTIONS(1257), + [anon_sym_false] = ACTIONS(1257), + [anon_sym_PLUS] = ACTIONS(2105), + [anon_sym_DASH] = ACTIONS(2105), + [anon_sym_STAR] = ACTIONS(1259), + [anon_sym_CARET] = ACTIONS(2107), + [anon_sym_AMP] = ACTIONS(2107), + [anon_sym_this] = ACTIONS(1261), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1179), + [anon_sym_base] = ACTIONS(1263), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1181), - [anon_sym_unchecked] = ACTIONS(1167), + [sym_predefined_type] = ACTIONS(1265), + [anon_sym_unchecked] = ACTIONS(1251), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1183), - [anon_sym_throw] = ACTIONS(1767), + [anon_sym_default] = ACTIONS(1267), + [anon_sym_throw] = ACTIONS(2109), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1769), - [anon_sym_DOT_DOT] = ACTIONS(1771), + [anon_sym_await] = ACTIONS(2111), + [anon_sym_DOT_DOT] = ACTIONS(2113), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -344422,19 +349040,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1191), - [anon_sym_sizeof] = ACTIONS(1193), - [anon_sym_typeof] = ACTIONS(1195), - [anon_sym___makeref] = ACTIONS(1197), - [anon_sym___reftype] = ACTIONS(1199), - [anon_sym___refvalue] = ACTIONS(1201), - [sym_null_literal] = ACTIONS(1203), - [anon_sym_SQUOTE] = ACTIONS(1205), - [sym_integer_literal] = ACTIONS(1203), - [sym_real_literal] = ACTIONS(1207), - [anon_sym_DQUOTE] = ACTIONS(1209), - [sym_verbatim_string_literal] = ACTIONS(1207), - [aux_sym_preproc_if_token1] = ACTIONS(1773), + [anon_sym_stackalloc] = ACTIONS(1275), + [anon_sym_sizeof] = ACTIONS(1277), + [anon_sym_typeof] = ACTIONS(1279), + [anon_sym___makeref] = ACTIONS(1281), + [anon_sym___reftype] = ACTIONS(1283), + [anon_sym___refvalue] = ACTIONS(1285), + [sym_null_literal] = ACTIONS(1287), + [anon_sym_SQUOTE] = ACTIONS(1289), + [sym_integer_literal] = ACTIONS(1287), + [sym_real_literal] = ACTIONS(1291), + [anon_sym_DQUOTE] = ACTIONS(1293), + [sym_verbatim_string_literal] = ACTIONS(1291), + [aux_sym_preproc_if_token1] = ACTIONS(2115), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -344445,140 +349063,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(1213), - [sym_interpolation_verbatim_start] = ACTIONS(1215), - [sym_interpolation_raw_start] = ACTIONS(1217), - [sym_raw_string_start] = ACTIONS(1219), + [sym_interpolation_regular_start] = ACTIONS(1297), + [sym_interpolation_verbatim_start] = ACTIONS(1299), + [sym_interpolation_raw_start] = ACTIONS(1301), + [sym_raw_string_start] = ACTIONS(1303), }, - [1791] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2610), - [sym__name] = STATE(5898), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2197), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(4804), - [sym_non_lvalue_expression] = STATE(3277), - [sym_lvalue_expression] = STATE(3510), - [sym__expression_statement_expression] = STATE(3228), - [sym_assignment_expression] = STATE(3289), - [sym_binary_expression] = STATE(3228), - [sym_postfix_unary_expression] = STATE(3289), - [sym_prefix_unary_expression] = STATE(3289), - [sym__pointer_indirection_expression] = STATE(2609), - [sym_query_expression] = STATE(3228), - [sym_from_clause] = STATE(6180), - [sym_conditional_expression] = STATE(3228), - [sym_conditional_access_expression] = STATE(3228), - [sym_as_expression] = STATE(3228), - [sym_is_expression] = STATE(3228), - [sym_is_pattern_expression] = STATE(3228), - [sym_cast_expression] = STATE(3228), - [sym_checked_expression] = STATE(3228), - [sym_invocation_expression] = STATE(3289), - [sym_switch_expression] = STATE(3228), - [sym_await_expression] = STATE(3289), - [sym_throw_expression] = STATE(3228), - [sym_element_access_expression] = STATE(2609), - [sym_interpolated_string_expression] = STATE(3228), - [sym_member_access_expression] = STATE(2609), - [sym_object_creation_expression] = STATE(3289), - [sym_parenthesized_expression] = STATE(3289), - [sym__parenthesized_lvalue_expression] = STATE(2609), - [sym_lambda_expression] = STATE(3228), - [sym__lambda_expression_init] = STATE(7527), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3228), - [sym_anonymous_method_expression] = STATE(3228), - [sym_anonymous_object_creation_expression] = STATE(3228), - [sym_implicit_array_creation_expression] = STATE(3228), - [sym_implicit_object_creation_expression] = STATE(3228), - [sym_implicit_stackalloc_expression] = STATE(3228), - [sym_initializer_expression] = STATE(3228), - [sym_default_expression] = STATE(3228), - [sym_with_expression] = STATE(3228), - [sym_sizeof_expression] = STATE(3228), - [sym_typeof_expression] = STATE(3228), - [sym_makeref_expression] = STATE(3228), - [sym_ref_expression] = STATE(3228), - [sym_reftype_expression] = STATE(3228), - [sym_refvalue_expression] = STATE(3228), - [sym_stackalloc_expression] = STATE(3228), - [sym_range_expression] = STATE(3228), - [sym_tuple_expression] = STATE(2609), - [sym_literal] = STATE(3228), - [sym_character_literal] = STATE(3278), - [sym_string_literal] = STATE(3278), - [sym_raw_string_literal] = STATE(3278), - [sym_boolean_literal] = STATE(3278), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3228), - [sym_preproc_if_in_attribute_list] = STATE(5576), - [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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3396), + [1819] = { + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2603), + [sym__name] = STATE(5862), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2193), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(4823), + [sym_non_lvalue_expression] = STATE(3220), + [sym_lvalue_expression] = STATE(3502), + [sym__expression_statement_expression] = STATE(3236), + [sym_assignment_expression] = STATE(3221), + [sym_binary_expression] = STATE(3236), + [sym_postfix_unary_expression] = STATE(3221), + [sym_prefix_unary_expression] = STATE(3221), + [sym__pointer_indirection_expression] = STATE(2602), + [sym_query_expression] = STATE(3236), + [sym_from_clause] = STATE(6136), + [sym_conditional_expression] = STATE(3236), + [sym_conditional_access_expression] = STATE(3236), + [sym_as_expression] = STATE(3236), + [sym_is_expression] = STATE(3236), + [sym_is_pattern_expression] = STATE(3236), + [sym_cast_expression] = STATE(3236), + [sym_checked_expression] = STATE(3236), + [sym_invocation_expression] = STATE(3221), + [sym_switch_expression] = STATE(3236), + [sym_await_expression] = STATE(3221), + [sym_throw_expression] = STATE(3236), + [sym_element_access_expression] = STATE(2602), + [sym_interpolated_string_expression] = STATE(3236), + [sym_member_access_expression] = STATE(2602), + [sym_object_creation_expression] = STATE(3221), + [sym_parenthesized_expression] = STATE(3221), + [sym__parenthesized_lvalue_expression] = STATE(2602), + [sym_lambda_expression] = STATE(3236), + [sym__lambda_expression_init] = STATE(7475), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3236), + [sym_anonymous_method_expression] = STATE(3236), + [sym_anonymous_object_creation_expression] = STATE(3236), + [sym_implicit_array_creation_expression] = STATE(3236), + [sym_implicit_object_creation_expression] = STATE(3236), + [sym_implicit_stackalloc_expression] = STATE(3236), + [sym_initializer_expression] = STATE(3236), + [sym_default_expression] = STATE(3236), + [sym_with_expression] = STATE(3236), + [sym_sizeof_expression] = STATE(3236), + [sym_typeof_expression] = STATE(3236), + [sym_makeref_expression] = STATE(3236), + [sym_ref_expression] = STATE(3236), + [sym_reftype_expression] = STATE(3236), + [sym_refvalue_expression] = STATE(3236), + [sym_stackalloc_expression] = STATE(3236), + [sym_range_expression] = STATE(3236), + [sym_tuple_expression] = STATE(2602), + [sym_literal] = STATE(3236), + [sym_character_literal] = STATE(3272), + [sym_string_literal] = STATE(3272), + [sym_raw_string_literal] = STATE(3272), + [sym_boolean_literal] = STATE(3272), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3236), + [sym_preproc_if_in_attribute_list] = STATE(5583), + [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(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3379), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1153), - [anon_sym_LPAREN] = ACTIONS(1759), - [anon_sym_ref] = ACTIONS(1761), - [anon_sym_LBRACE] = ACTIONS(1159), - [anon_sym_delegate] = ACTIONS(1161), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1149), + [anon_sym_LPAREN] = ACTIONS(1787), + [anon_sym_ref] = ACTIONS(1789), + [anon_sym_LBRACE] = ACTIONS(1155), + [anon_sym_delegate] = ACTIONS(1157), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1163), + [anon_sym_new] = ACTIONS(1159), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1167), - [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(1173), - [anon_sym_false] = ACTIONS(1173), - [anon_sym_PLUS] = ACTIONS(1763), - [anon_sym_DASH] = ACTIONS(1763), - [anon_sym_STAR] = ACTIONS(1175), - [anon_sym_CARET] = ACTIONS(1765), - [anon_sym_AMP] = ACTIONS(1765), - [anon_sym_this] = ACTIONS(1177), + [anon_sym_checked] = ACTIONS(1163), + [anon_sym_BANG] = ACTIONS(1793), + [anon_sym_TILDE] = ACTIONS(1793), + [anon_sym_PLUS_PLUS] = ACTIONS(1793), + [anon_sym_DASH_DASH] = ACTIONS(1793), + [anon_sym_true] = ACTIONS(1169), + [anon_sym_false] = ACTIONS(1169), + [anon_sym_PLUS] = ACTIONS(1791), + [anon_sym_DASH] = ACTIONS(1791), + [anon_sym_STAR] = ACTIONS(1171), + [anon_sym_CARET] = ACTIONS(1793), + [anon_sym_AMP] = ACTIONS(1793), + [anon_sym_this] = ACTIONS(1173), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1179), + [anon_sym_base] = ACTIONS(1175), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1181), - [anon_sym_unchecked] = ACTIONS(1167), + [sym_predefined_type] = ACTIONS(1177), + [anon_sym_unchecked] = ACTIONS(1163), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1183), - [anon_sym_throw] = ACTIONS(1767), + [anon_sym_default] = ACTIONS(1179), + [anon_sym_throw] = ACTIONS(1795), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1769), - [anon_sym_DOT_DOT] = ACTIONS(1771), + [anon_sym_await] = ACTIONS(1797), + [anon_sym_DOT_DOT] = ACTIONS(1799), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -344591,19 +349209,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1191), - [anon_sym_sizeof] = ACTIONS(1193), - [anon_sym_typeof] = ACTIONS(1195), - [anon_sym___makeref] = ACTIONS(1197), - [anon_sym___reftype] = ACTIONS(1199), - [anon_sym___refvalue] = ACTIONS(1201), - [sym_null_literal] = ACTIONS(1203), - [anon_sym_SQUOTE] = ACTIONS(1205), - [sym_integer_literal] = ACTIONS(1203), - [sym_real_literal] = ACTIONS(1207), - [anon_sym_DQUOTE] = ACTIONS(1209), - [sym_verbatim_string_literal] = ACTIONS(1207), - [aux_sym_preproc_if_token1] = ACTIONS(1773), + [anon_sym_stackalloc] = ACTIONS(1187), + [anon_sym_sizeof] = ACTIONS(1189), + [anon_sym_typeof] = ACTIONS(1191), + [anon_sym___makeref] = ACTIONS(1193), + [anon_sym___reftype] = ACTIONS(1195), + [anon_sym___refvalue] = ACTIONS(1197), + [sym_null_literal] = ACTIONS(1199), + [anon_sym_SQUOTE] = ACTIONS(1201), + [sym_integer_literal] = ACTIONS(1199), + [sym_real_literal] = ACTIONS(1203), + [anon_sym_DQUOTE] = ACTIONS(1205), + [sym_verbatim_string_literal] = ACTIONS(1203), + [aux_sym_preproc_if_token1] = ACTIONS(1801), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -344614,140 +349232,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(1213), - [sym_interpolation_verbatim_start] = ACTIONS(1215), - [sym_interpolation_raw_start] = ACTIONS(1217), - [sym_raw_string_start] = ACTIONS(1219), + [sym_interpolation_regular_start] = ACTIONS(1209), + [sym_interpolation_verbatim_start] = ACTIONS(1211), + [sym_interpolation_raw_start] = ACTIONS(1213), + [sym_raw_string_start] = ACTIONS(1215), }, - [1792] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2610), - [sym__name] = STATE(5898), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2197), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(4805), - [sym_non_lvalue_expression] = STATE(3277), - [sym_lvalue_expression] = STATE(3510), - [sym__expression_statement_expression] = STATE(3228), - [sym_assignment_expression] = STATE(3289), - [sym_binary_expression] = STATE(3228), - [sym_postfix_unary_expression] = STATE(3289), - [sym_prefix_unary_expression] = STATE(3289), - [sym__pointer_indirection_expression] = STATE(2609), - [sym_query_expression] = STATE(3228), - [sym_from_clause] = STATE(6180), - [sym_conditional_expression] = STATE(3228), - [sym_conditional_access_expression] = STATE(3228), - [sym_as_expression] = STATE(3228), - [sym_is_expression] = STATE(3228), - [sym_is_pattern_expression] = STATE(3228), - [sym_cast_expression] = STATE(3228), - [sym_checked_expression] = STATE(3228), - [sym_invocation_expression] = STATE(3289), - [sym_switch_expression] = STATE(3228), - [sym_await_expression] = STATE(3289), - [sym_throw_expression] = STATE(3228), - [sym_element_access_expression] = STATE(2609), - [sym_interpolated_string_expression] = STATE(3228), - [sym_member_access_expression] = STATE(2609), - [sym_object_creation_expression] = STATE(3289), - [sym_parenthesized_expression] = STATE(3289), - [sym__parenthesized_lvalue_expression] = STATE(2609), - [sym_lambda_expression] = STATE(3228), - [sym__lambda_expression_init] = STATE(7527), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3228), - [sym_anonymous_method_expression] = STATE(3228), - [sym_anonymous_object_creation_expression] = STATE(3228), - [sym_implicit_array_creation_expression] = STATE(3228), - [sym_implicit_object_creation_expression] = STATE(3228), - [sym_implicit_stackalloc_expression] = STATE(3228), - [sym_initializer_expression] = STATE(3228), - [sym_default_expression] = STATE(3228), - [sym_with_expression] = STATE(3228), - [sym_sizeof_expression] = STATE(3228), - [sym_typeof_expression] = STATE(3228), - [sym_makeref_expression] = STATE(3228), - [sym_ref_expression] = STATE(3228), - [sym_reftype_expression] = STATE(3228), - [sym_refvalue_expression] = STATE(3228), - [sym_stackalloc_expression] = STATE(3228), - [sym_range_expression] = STATE(3228), - [sym_tuple_expression] = STATE(2609), - [sym_literal] = STATE(3228), - [sym_character_literal] = STATE(3278), - [sym_string_literal] = STATE(3278), - [sym_raw_string_literal] = STATE(3278), - [sym_boolean_literal] = STATE(3278), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3228), - [sym_preproc_if_in_attribute_list] = STATE(5576), - [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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3396), + [1820] = { + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2416), + [sym__name] = STATE(5890), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2193), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(5273), + [sym_non_lvalue_expression] = STATE(3040), + [sym_lvalue_expression] = STATE(3631), + [sym__expression_statement_expression] = STATE(3035), + [sym_assignment_expression] = STATE(3043), + [sym_binary_expression] = STATE(3035), + [sym_postfix_unary_expression] = STATE(3043), + [sym_prefix_unary_expression] = STATE(3043), + [sym__pointer_indirection_expression] = STATE(2415), + [sym_query_expression] = STATE(3035), + [sym_from_clause] = STATE(6164), + [sym_conditional_expression] = STATE(3035), + [sym_conditional_access_expression] = STATE(3035), + [sym_as_expression] = STATE(3035), + [sym_is_expression] = STATE(3035), + [sym_is_pattern_expression] = STATE(3035), + [sym_cast_expression] = STATE(3035), + [sym_checked_expression] = STATE(3035), + [sym_invocation_expression] = STATE(3043), + [sym_switch_expression] = STATE(3035), + [sym_await_expression] = STATE(3043), + [sym_throw_expression] = STATE(3035), + [sym_element_access_expression] = STATE(2415), + [sym_interpolated_string_expression] = STATE(3035), + [sym_member_access_expression] = STATE(2415), + [sym_object_creation_expression] = STATE(3043), + [sym_parenthesized_expression] = STATE(3043), + [sym__parenthesized_lvalue_expression] = STATE(2415), + [sym_lambda_expression] = STATE(3035), + [sym__lambda_expression_init] = STATE(7458), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3035), + [sym_anonymous_method_expression] = STATE(3035), + [sym_anonymous_object_creation_expression] = STATE(3035), + [sym_implicit_array_creation_expression] = STATE(3035), + [sym_implicit_object_creation_expression] = STATE(3035), + [sym_implicit_stackalloc_expression] = STATE(3035), + [sym_initializer_expression] = STATE(3035), + [sym_default_expression] = STATE(3035), + [sym_with_expression] = STATE(3035), + [sym_sizeof_expression] = STATE(3035), + [sym_typeof_expression] = STATE(3035), + [sym_makeref_expression] = STATE(3035), + [sym_ref_expression] = STATE(3035), + [sym_reftype_expression] = STATE(3035), + [sym_refvalue_expression] = STATE(3035), + [sym_stackalloc_expression] = STATE(3035), + [sym_range_expression] = STATE(3035), + [sym_tuple_expression] = STATE(2415), + [sym_literal] = STATE(3035), + [sym_character_literal] = STATE(3037), + [sym_string_literal] = STATE(3037), + [sym_raw_string_literal] = STATE(3037), + [sym_boolean_literal] = STATE(3037), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3035), + [sym_preproc_if_in_attribute_list] = STATE(5583), + [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(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3455), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1153), - [anon_sym_LPAREN] = ACTIONS(1759), - [anon_sym_ref] = ACTIONS(1761), - [anon_sym_LBRACE] = ACTIONS(1159), - [anon_sym_delegate] = ACTIONS(1161), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1239), + [anon_sym_LPAREN] = ACTIONS(2101), + [anon_sym_ref] = ACTIONS(2103), + [anon_sym_LBRACE] = ACTIONS(1245), + [anon_sym_delegate] = ACTIONS(1247), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1163), + [anon_sym_new] = ACTIONS(1249), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1167), - [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(1173), - [anon_sym_false] = ACTIONS(1173), - [anon_sym_PLUS] = ACTIONS(1763), - [anon_sym_DASH] = ACTIONS(1763), - [anon_sym_STAR] = ACTIONS(1175), - [anon_sym_CARET] = ACTIONS(1765), - [anon_sym_AMP] = ACTIONS(1765), - [anon_sym_this] = ACTIONS(1177), + [anon_sym_checked] = ACTIONS(1251), + [anon_sym_BANG] = ACTIONS(2107), + [anon_sym_TILDE] = ACTIONS(2107), + [anon_sym_PLUS_PLUS] = ACTIONS(2107), + [anon_sym_DASH_DASH] = ACTIONS(2107), + [anon_sym_true] = ACTIONS(1257), + [anon_sym_false] = ACTIONS(1257), + [anon_sym_PLUS] = ACTIONS(2105), + [anon_sym_DASH] = ACTIONS(2105), + [anon_sym_STAR] = ACTIONS(1259), + [anon_sym_CARET] = ACTIONS(2107), + [anon_sym_AMP] = ACTIONS(2107), + [anon_sym_this] = ACTIONS(1261), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1179), + [anon_sym_base] = ACTIONS(1263), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1181), - [anon_sym_unchecked] = ACTIONS(1167), + [sym_predefined_type] = ACTIONS(1265), + [anon_sym_unchecked] = ACTIONS(1251), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1183), - [anon_sym_throw] = ACTIONS(1767), + [anon_sym_default] = ACTIONS(1267), + [anon_sym_throw] = ACTIONS(2109), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1769), - [anon_sym_DOT_DOT] = ACTIONS(1771), + [anon_sym_await] = ACTIONS(2111), + [anon_sym_DOT_DOT] = ACTIONS(2113), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -344760,19 +349378,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1191), - [anon_sym_sizeof] = ACTIONS(1193), - [anon_sym_typeof] = ACTIONS(1195), - [anon_sym___makeref] = ACTIONS(1197), - [anon_sym___reftype] = ACTIONS(1199), - [anon_sym___refvalue] = ACTIONS(1201), - [sym_null_literal] = ACTIONS(1203), - [anon_sym_SQUOTE] = ACTIONS(1205), - [sym_integer_literal] = ACTIONS(1203), - [sym_real_literal] = ACTIONS(1207), - [anon_sym_DQUOTE] = ACTIONS(1209), - [sym_verbatim_string_literal] = ACTIONS(1207), - [aux_sym_preproc_if_token1] = ACTIONS(1773), + [anon_sym_stackalloc] = ACTIONS(1275), + [anon_sym_sizeof] = ACTIONS(1277), + [anon_sym_typeof] = ACTIONS(1279), + [anon_sym___makeref] = ACTIONS(1281), + [anon_sym___reftype] = ACTIONS(1283), + [anon_sym___refvalue] = ACTIONS(1285), + [sym_null_literal] = ACTIONS(1287), + [anon_sym_SQUOTE] = ACTIONS(1289), + [sym_integer_literal] = ACTIONS(1287), + [sym_real_literal] = ACTIONS(1291), + [anon_sym_DQUOTE] = ACTIONS(1293), + [sym_verbatim_string_literal] = ACTIONS(1291), + [aux_sym_preproc_if_token1] = ACTIONS(2115), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -344783,140 +349401,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(1213), - [sym_interpolation_verbatim_start] = ACTIONS(1215), - [sym_interpolation_raw_start] = ACTIONS(1217), - [sym_raw_string_start] = ACTIONS(1219), + [sym_interpolation_regular_start] = ACTIONS(1297), + [sym_interpolation_verbatim_start] = ACTIONS(1299), + [sym_interpolation_raw_start] = ACTIONS(1301), + [sym_raw_string_start] = ACTIONS(1303), }, - [1793] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2420), - [sym__name] = STATE(5875), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2369), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(4165), - [sym_non_lvalue_expression] = STATE(3066), - [sym_lvalue_expression] = STATE(3125), - [sym__expression_statement_expression] = STATE(3006), - [sym_assignment_expression] = STATE(3020), - [sym_binary_expression] = STATE(3006), - [sym_postfix_unary_expression] = STATE(3020), - [sym_prefix_unary_expression] = STATE(3020), - [sym__pointer_indirection_expression] = STATE(2423), - [sym_query_expression] = STATE(3006), - [sym_from_clause] = STATE(6145), - [sym_conditional_expression] = STATE(3006), - [sym_conditional_access_expression] = STATE(3006), - [sym_as_expression] = STATE(3006), - [sym_is_expression] = STATE(3006), - [sym_is_pattern_expression] = STATE(3006), - [sym_cast_expression] = STATE(3006), - [sym_checked_expression] = STATE(3006), - [sym_invocation_expression] = STATE(3020), - [sym_switch_expression] = STATE(3006), - [sym_await_expression] = STATE(3020), - [sym_throw_expression] = STATE(3006), - [sym_element_access_expression] = STATE(2423), - [sym_interpolated_string_expression] = STATE(3006), - [sym_member_access_expression] = STATE(2423), - [sym_object_creation_expression] = STATE(3020), - [sym_parenthesized_expression] = STATE(3020), - [sym__parenthesized_lvalue_expression] = STATE(2423), - [sym_lambda_expression] = STATE(3006), - [sym__lambda_expression_init] = STATE(7538), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3006), - [sym_anonymous_method_expression] = STATE(3006), - [sym_anonymous_object_creation_expression] = STATE(3006), - [sym_implicit_array_creation_expression] = STATE(3006), - [sym_implicit_object_creation_expression] = STATE(3006), - [sym_implicit_stackalloc_expression] = STATE(3006), - [sym_initializer_expression] = STATE(3006), - [sym_default_expression] = STATE(3006), - [sym_with_expression] = STATE(3006), - [sym_sizeof_expression] = STATE(3006), - [sym_typeof_expression] = STATE(3006), - [sym_makeref_expression] = STATE(3006), - [sym_ref_expression] = STATE(3006), - [sym_reftype_expression] = STATE(3006), - [sym_refvalue_expression] = STATE(3006), - [sym_stackalloc_expression] = STATE(3006), - [sym_range_expression] = STATE(3006), - [sym_tuple_expression] = STATE(2423), - [sym_literal] = STATE(3006), - [sym_character_literal] = STATE(3011), - [sym_string_literal] = STATE(3011), - [sym_raw_string_literal] = STATE(3011), - [sym_boolean_literal] = STATE(3011), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3006), - [sym_preproc_if_in_attribute_list] = STATE(5576), - [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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3440), + [1821] = { + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2416), + [sym__name] = STATE(5890), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2193), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(5274), + [sym_non_lvalue_expression] = STATE(3040), + [sym_lvalue_expression] = STATE(3631), + [sym__expression_statement_expression] = STATE(3035), + [sym_assignment_expression] = STATE(3043), + [sym_binary_expression] = STATE(3035), + [sym_postfix_unary_expression] = STATE(3043), + [sym_prefix_unary_expression] = STATE(3043), + [sym__pointer_indirection_expression] = STATE(2415), + [sym_query_expression] = STATE(3035), + [sym_from_clause] = STATE(6164), + [sym_conditional_expression] = STATE(3035), + [sym_conditional_access_expression] = STATE(3035), + [sym_as_expression] = STATE(3035), + [sym_is_expression] = STATE(3035), + [sym_is_pattern_expression] = STATE(3035), + [sym_cast_expression] = STATE(3035), + [sym_checked_expression] = STATE(3035), + [sym_invocation_expression] = STATE(3043), + [sym_switch_expression] = STATE(3035), + [sym_await_expression] = STATE(3043), + [sym_throw_expression] = STATE(3035), + [sym_element_access_expression] = STATE(2415), + [sym_interpolated_string_expression] = STATE(3035), + [sym_member_access_expression] = STATE(2415), + [sym_object_creation_expression] = STATE(3043), + [sym_parenthesized_expression] = STATE(3043), + [sym__parenthesized_lvalue_expression] = STATE(2415), + [sym_lambda_expression] = STATE(3035), + [sym__lambda_expression_init] = STATE(7458), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3035), + [sym_anonymous_method_expression] = STATE(3035), + [sym_anonymous_object_creation_expression] = STATE(3035), + [sym_implicit_array_creation_expression] = STATE(3035), + [sym_implicit_object_creation_expression] = STATE(3035), + [sym_implicit_stackalloc_expression] = STATE(3035), + [sym_initializer_expression] = STATE(3035), + [sym_default_expression] = STATE(3035), + [sym_with_expression] = STATE(3035), + [sym_sizeof_expression] = STATE(3035), + [sym_typeof_expression] = STATE(3035), + [sym_makeref_expression] = STATE(3035), + [sym_ref_expression] = STATE(3035), + [sym_reftype_expression] = STATE(3035), + [sym_refvalue_expression] = STATE(3035), + [sym_stackalloc_expression] = STATE(3035), + [sym_range_expression] = STATE(3035), + [sym_tuple_expression] = STATE(2415), + [sym_literal] = STATE(3035), + [sym_character_literal] = STATE(3037), + [sym_string_literal] = STATE(3037), + [sym_raw_string_literal] = STATE(3037), + [sym_boolean_literal] = STATE(3037), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3035), + [sym_preproc_if_in_attribute_list] = STATE(5583), + [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(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3455), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1241), - [anon_sym_LPAREN] = ACTIONS(2195), - [anon_sym_ref] = ACTIONS(2197), - [anon_sym_LBRACE] = ACTIONS(1247), - [anon_sym_delegate] = ACTIONS(1249), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1239), + [anon_sym_LPAREN] = ACTIONS(2101), + [anon_sym_ref] = ACTIONS(2103), + [anon_sym_LBRACE] = ACTIONS(1245), + [anon_sym_delegate] = ACTIONS(1247), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1845), + [anon_sym_new] = ACTIONS(1249), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1253), - [anon_sym_BANG] = ACTIONS(2201), - [anon_sym_TILDE] = ACTIONS(2201), - [anon_sym_PLUS_PLUS] = ACTIONS(2201), - [anon_sym_DASH_DASH] = ACTIONS(2201), - [anon_sym_true] = ACTIONS(1259), - [anon_sym_false] = ACTIONS(1259), - [anon_sym_PLUS] = ACTIONS(2199), - [anon_sym_DASH] = ACTIONS(2199), - [anon_sym_STAR] = ACTIONS(1851), - [anon_sym_CARET] = ACTIONS(2201), - [anon_sym_AMP] = ACTIONS(2201), - [anon_sym_this] = ACTIONS(1263), + [anon_sym_checked] = ACTIONS(1251), + [anon_sym_BANG] = ACTIONS(2107), + [anon_sym_TILDE] = ACTIONS(2107), + [anon_sym_PLUS_PLUS] = ACTIONS(2107), + [anon_sym_DASH_DASH] = ACTIONS(2107), + [anon_sym_true] = ACTIONS(1257), + [anon_sym_false] = ACTIONS(1257), + [anon_sym_PLUS] = ACTIONS(2105), + [anon_sym_DASH] = ACTIONS(2105), + [anon_sym_STAR] = ACTIONS(1259), + [anon_sym_CARET] = ACTIONS(2107), + [anon_sym_AMP] = ACTIONS(2107), + [anon_sym_this] = ACTIONS(1261), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1265), + [anon_sym_base] = ACTIONS(1263), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1267), - [anon_sym_unchecked] = ACTIONS(1253), + [sym_predefined_type] = ACTIONS(1265), + [anon_sym_unchecked] = ACTIONS(1251), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1269), - [anon_sym_throw] = ACTIONS(2203), + [anon_sym_default] = ACTIONS(1267), + [anon_sym_throw] = ACTIONS(2109), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2205), - [anon_sym_DOT_DOT] = ACTIONS(2207), + [anon_sym_await] = ACTIONS(2111), + [anon_sym_DOT_DOT] = ACTIONS(2113), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -344929,19 +349547,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1277), - [anon_sym_sizeof] = ACTIONS(1279), - [anon_sym_typeof] = ACTIONS(1281), - [anon_sym___makeref] = ACTIONS(1283), - [anon_sym___reftype] = ACTIONS(1285), - [anon_sym___refvalue] = ACTIONS(1287), - [sym_null_literal] = ACTIONS(1289), - [anon_sym_SQUOTE] = ACTIONS(1291), - [sym_integer_literal] = ACTIONS(1289), - [sym_real_literal] = ACTIONS(1293), - [anon_sym_DQUOTE] = ACTIONS(1295), - [sym_verbatim_string_literal] = ACTIONS(1293), - [aux_sym_preproc_if_token1] = ACTIONS(1297), + [anon_sym_stackalloc] = ACTIONS(1275), + [anon_sym_sizeof] = ACTIONS(1277), + [anon_sym_typeof] = ACTIONS(1279), + [anon_sym___makeref] = ACTIONS(1281), + [anon_sym___reftype] = ACTIONS(1283), + [anon_sym___refvalue] = ACTIONS(1285), + [sym_null_literal] = ACTIONS(1287), + [anon_sym_SQUOTE] = ACTIONS(1289), + [sym_integer_literal] = ACTIONS(1287), + [sym_real_literal] = ACTIONS(1291), + [anon_sym_DQUOTE] = ACTIONS(1293), + [sym_verbatim_string_literal] = ACTIONS(1291), + [aux_sym_preproc_if_token1] = ACTIONS(2115), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -344952,140 +349570,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(1299), - [sym_interpolation_verbatim_start] = ACTIONS(1301), - [sym_interpolation_raw_start] = ACTIONS(1303), - [sym_raw_string_start] = ACTIONS(1305), + [sym_interpolation_regular_start] = ACTIONS(1297), + [sym_interpolation_verbatim_start] = ACTIONS(1299), + [sym_interpolation_raw_start] = ACTIONS(1301), + [sym_raw_string_start] = ACTIONS(1303), }, - [1794] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2610), - [sym__name] = STATE(5898), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2197), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(3145), - [sym_non_lvalue_expression] = STATE(3277), - [sym_lvalue_expression] = STATE(3510), - [sym__expression_statement_expression] = STATE(3228), - [sym_assignment_expression] = STATE(3289), - [sym_binary_expression] = STATE(3228), - [sym_postfix_unary_expression] = STATE(3289), - [sym_prefix_unary_expression] = STATE(3289), - [sym__pointer_indirection_expression] = STATE(2609), - [sym_query_expression] = STATE(3228), - [sym_from_clause] = STATE(6180), - [sym_conditional_expression] = STATE(3228), - [sym_conditional_access_expression] = STATE(3228), - [sym_as_expression] = STATE(3228), - [sym_is_expression] = STATE(3228), - [sym_is_pattern_expression] = STATE(3228), - [sym_cast_expression] = STATE(3228), - [sym_checked_expression] = STATE(3228), - [sym_invocation_expression] = STATE(3289), - [sym_switch_expression] = STATE(3228), - [sym_await_expression] = STATE(3289), - [sym_throw_expression] = STATE(3228), - [sym_element_access_expression] = STATE(2609), - [sym_interpolated_string_expression] = STATE(3228), - [sym_member_access_expression] = STATE(2609), - [sym_object_creation_expression] = STATE(3289), - [sym_parenthesized_expression] = STATE(3289), - [sym__parenthesized_lvalue_expression] = STATE(2609), - [sym_lambda_expression] = STATE(3228), - [sym__lambda_expression_init] = STATE(7527), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3228), - [sym_anonymous_method_expression] = STATE(3228), - [sym_anonymous_object_creation_expression] = STATE(3228), - [sym_implicit_array_creation_expression] = STATE(3228), - [sym_implicit_object_creation_expression] = STATE(3228), - [sym_implicit_stackalloc_expression] = STATE(3228), - [sym_initializer_expression] = STATE(3228), - [sym_default_expression] = STATE(3228), - [sym_with_expression] = STATE(3228), - [sym_sizeof_expression] = STATE(3228), - [sym_typeof_expression] = STATE(3228), - [sym_makeref_expression] = STATE(3228), - [sym_ref_expression] = STATE(3228), - [sym_reftype_expression] = STATE(3228), - [sym_refvalue_expression] = STATE(3228), - [sym_stackalloc_expression] = STATE(3228), - [sym_range_expression] = STATE(3228), - [sym_tuple_expression] = STATE(2609), - [sym_literal] = STATE(3228), - [sym_character_literal] = STATE(3278), - [sym_string_literal] = STATE(3278), - [sym_raw_string_literal] = STATE(3278), - [sym_boolean_literal] = STATE(3278), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3228), - [sym_preproc_if_in_attribute_list] = STATE(5576), - [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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3396), + [1822] = { + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2416), + [sym__name] = STATE(5890), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2193), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(5275), + [sym_non_lvalue_expression] = STATE(3040), + [sym_lvalue_expression] = STATE(3631), + [sym__expression_statement_expression] = STATE(3035), + [sym_assignment_expression] = STATE(3043), + [sym_binary_expression] = STATE(3035), + [sym_postfix_unary_expression] = STATE(3043), + [sym_prefix_unary_expression] = STATE(3043), + [sym__pointer_indirection_expression] = STATE(2415), + [sym_query_expression] = STATE(3035), + [sym_from_clause] = STATE(6164), + [sym_conditional_expression] = STATE(3035), + [sym_conditional_access_expression] = STATE(3035), + [sym_as_expression] = STATE(3035), + [sym_is_expression] = STATE(3035), + [sym_is_pattern_expression] = STATE(3035), + [sym_cast_expression] = STATE(3035), + [sym_checked_expression] = STATE(3035), + [sym_invocation_expression] = STATE(3043), + [sym_switch_expression] = STATE(3035), + [sym_await_expression] = STATE(3043), + [sym_throw_expression] = STATE(3035), + [sym_element_access_expression] = STATE(2415), + [sym_interpolated_string_expression] = STATE(3035), + [sym_member_access_expression] = STATE(2415), + [sym_object_creation_expression] = STATE(3043), + [sym_parenthesized_expression] = STATE(3043), + [sym__parenthesized_lvalue_expression] = STATE(2415), + [sym_lambda_expression] = STATE(3035), + [sym__lambda_expression_init] = STATE(7458), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3035), + [sym_anonymous_method_expression] = STATE(3035), + [sym_anonymous_object_creation_expression] = STATE(3035), + [sym_implicit_array_creation_expression] = STATE(3035), + [sym_implicit_object_creation_expression] = STATE(3035), + [sym_implicit_stackalloc_expression] = STATE(3035), + [sym_initializer_expression] = STATE(3035), + [sym_default_expression] = STATE(3035), + [sym_with_expression] = STATE(3035), + [sym_sizeof_expression] = STATE(3035), + [sym_typeof_expression] = STATE(3035), + [sym_makeref_expression] = STATE(3035), + [sym_ref_expression] = STATE(3035), + [sym_reftype_expression] = STATE(3035), + [sym_refvalue_expression] = STATE(3035), + [sym_stackalloc_expression] = STATE(3035), + [sym_range_expression] = STATE(3035), + [sym_tuple_expression] = STATE(2415), + [sym_literal] = STATE(3035), + [sym_character_literal] = STATE(3037), + [sym_string_literal] = STATE(3037), + [sym_raw_string_literal] = STATE(3037), + [sym_boolean_literal] = STATE(3037), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3035), + [sym_preproc_if_in_attribute_list] = STATE(5583), + [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(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3455), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1153), - [anon_sym_LPAREN] = ACTIONS(1759), - [anon_sym_ref] = ACTIONS(1761), - [anon_sym_LBRACE] = ACTIONS(1159), - [anon_sym_delegate] = ACTIONS(1161), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1239), + [anon_sym_LPAREN] = ACTIONS(2101), + [anon_sym_ref] = ACTIONS(2103), + [anon_sym_LBRACE] = ACTIONS(1245), + [anon_sym_delegate] = ACTIONS(1247), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1163), + [anon_sym_new] = ACTIONS(1249), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1167), - [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(1173), - [anon_sym_false] = ACTIONS(1173), - [anon_sym_PLUS] = ACTIONS(1763), - [anon_sym_DASH] = ACTIONS(1763), - [anon_sym_STAR] = ACTIONS(1175), - [anon_sym_CARET] = ACTIONS(1765), - [anon_sym_AMP] = ACTIONS(1765), - [anon_sym_this] = ACTIONS(1177), + [anon_sym_checked] = ACTIONS(1251), + [anon_sym_BANG] = ACTIONS(2107), + [anon_sym_TILDE] = ACTIONS(2107), + [anon_sym_PLUS_PLUS] = ACTIONS(2107), + [anon_sym_DASH_DASH] = ACTIONS(2107), + [anon_sym_true] = ACTIONS(1257), + [anon_sym_false] = ACTIONS(1257), + [anon_sym_PLUS] = ACTIONS(2105), + [anon_sym_DASH] = ACTIONS(2105), + [anon_sym_STAR] = ACTIONS(1259), + [anon_sym_CARET] = ACTIONS(2107), + [anon_sym_AMP] = ACTIONS(2107), + [anon_sym_this] = ACTIONS(1261), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1179), + [anon_sym_base] = ACTIONS(1263), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1181), - [anon_sym_unchecked] = ACTIONS(1167), + [sym_predefined_type] = ACTIONS(1265), + [anon_sym_unchecked] = ACTIONS(1251), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1183), - [anon_sym_throw] = ACTIONS(1767), + [anon_sym_default] = ACTIONS(1267), + [anon_sym_throw] = ACTIONS(2109), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1769), - [anon_sym_DOT_DOT] = ACTIONS(1771), + [anon_sym_await] = ACTIONS(2111), + [anon_sym_DOT_DOT] = ACTIONS(2113), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -345098,19 +349716,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1191), - [anon_sym_sizeof] = ACTIONS(1193), - [anon_sym_typeof] = ACTIONS(1195), - [anon_sym___makeref] = ACTIONS(1197), - [anon_sym___reftype] = ACTIONS(1199), - [anon_sym___refvalue] = ACTIONS(1201), - [sym_null_literal] = ACTIONS(1203), - [anon_sym_SQUOTE] = ACTIONS(1205), - [sym_integer_literal] = ACTIONS(1203), - [sym_real_literal] = ACTIONS(1207), - [anon_sym_DQUOTE] = ACTIONS(1209), - [sym_verbatim_string_literal] = ACTIONS(1207), - [aux_sym_preproc_if_token1] = ACTIONS(1773), + [anon_sym_stackalloc] = ACTIONS(1275), + [anon_sym_sizeof] = ACTIONS(1277), + [anon_sym_typeof] = ACTIONS(1279), + [anon_sym___makeref] = ACTIONS(1281), + [anon_sym___reftype] = ACTIONS(1283), + [anon_sym___refvalue] = ACTIONS(1285), + [sym_null_literal] = ACTIONS(1287), + [anon_sym_SQUOTE] = ACTIONS(1289), + [sym_integer_literal] = ACTIONS(1287), + [sym_real_literal] = ACTIONS(1291), + [anon_sym_DQUOTE] = ACTIONS(1293), + [sym_verbatim_string_literal] = ACTIONS(1291), + [aux_sym_preproc_if_token1] = ACTIONS(2115), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -345121,140 +349739,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(1213), - [sym_interpolation_verbatim_start] = ACTIONS(1215), - [sym_interpolation_raw_start] = ACTIONS(1217), - [sym_raw_string_start] = ACTIONS(1219), + [sym_interpolation_regular_start] = ACTIONS(1297), + [sym_interpolation_verbatim_start] = ACTIONS(1299), + [sym_interpolation_raw_start] = ACTIONS(1301), + [sym_raw_string_start] = ACTIONS(1303), }, - [1795] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2420), - [sym__name] = STATE(5911), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2197), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(4392), - [sym_non_lvalue_expression] = STATE(3066), - [sym_lvalue_expression] = STATE(3327), - [sym__expression_statement_expression] = STATE(3006), - [sym_assignment_expression] = STATE(3020), - [sym_binary_expression] = STATE(3006), - [sym_postfix_unary_expression] = STATE(3020), - [sym_prefix_unary_expression] = STATE(3020), - [sym__pointer_indirection_expression] = STATE(2423), - [sym_query_expression] = STATE(3006), - [sym_from_clause] = STATE(6159), - [sym_conditional_expression] = STATE(3006), - [sym_conditional_access_expression] = STATE(3006), - [sym_as_expression] = STATE(3006), - [sym_is_expression] = STATE(3006), - [sym_is_pattern_expression] = STATE(3006), - [sym_cast_expression] = STATE(3006), - [sym_checked_expression] = STATE(3006), - [sym_invocation_expression] = STATE(3020), - [sym_switch_expression] = STATE(3006), - [sym_await_expression] = STATE(3020), - [sym_throw_expression] = STATE(3006), - [sym_element_access_expression] = STATE(2423), - [sym_interpolated_string_expression] = STATE(3006), - [sym_member_access_expression] = STATE(2423), - [sym_object_creation_expression] = STATE(3020), - [sym_parenthesized_expression] = STATE(3020), - [sym__parenthesized_lvalue_expression] = STATE(2423), - [sym_lambda_expression] = STATE(3006), - [sym__lambda_expression_init] = STATE(7674), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3006), - [sym_anonymous_method_expression] = STATE(3006), - [sym_anonymous_object_creation_expression] = STATE(3006), - [sym_implicit_array_creation_expression] = STATE(3006), - [sym_implicit_object_creation_expression] = STATE(3006), - [sym_implicit_stackalloc_expression] = STATE(3006), - [sym_initializer_expression] = STATE(3006), - [sym_default_expression] = STATE(3006), - [sym_with_expression] = STATE(3006), - [sym_sizeof_expression] = STATE(3006), - [sym_typeof_expression] = STATE(3006), - [sym_makeref_expression] = STATE(3006), - [sym_ref_expression] = STATE(3006), - [sym_reftype_expression] = STATE(3006), - [sym_refvalue_expression] = STATE(3006), - [sym_stackalloc_expression] = STATE(3006), - [sym_range_expression] = STATE(3006), - [sym_tuple_expression] = STATE(2423), - [sym_literal] = STATE(3006), - [sym_character_literal] = STATE(3011), - [sym_string_literal] = STATE(3011), - [sym_raw_string_literal] = STATE(3011), - [sym_boolean_literal] = STATE(3011), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3006), - [sym_preproc_if_in_attribute_list] = STATE(5576), - [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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3440), + [1823] = { + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2416), + [sym__name] = STATE(5890), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2193), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(5276), + [sym_non_lvalue_expression] = STATE(3040), + [sym_lvalue_expression] = STATE(3631), + [sym__expression_statement_expression] = STATE(3035), + [sym_assignment_expression] = STATE(3043), + [sym_binary_expression] = STATE(3035), + [sym_postfix_unary_expression] = STATE(3043), + [sym_prefix_unary_expression] = STATE(3043), + [sym__pointer_indirection_expression] = STATE(2415), + [sym_query_expression] = STATE(3035), + [sym_from_clause] = STATE(6164), + [sym_conditional_expression] = STATE(3035), + [sym_conditional_access_expression] = STATE(3035), + [sym_as_expression] = STATE(3035), + [sym_is_expression] = STATE(3035), + [sym_is_pattern_expression] = STATE(3035), + [sym_cast_expression] = STATE(3035), + [sym_checked_expression] = STATE(3035), + [sym_invocation_expression] = STATE(3043), + [sym_switch_expression] = STATE(3035), + [sym_await_expression] = STATE(3043), + [sym_throw_expression] = STATE(3035), + [sym_element_access_expression] = STATE(2415), + [sym_interpolated_string_expression] = STATE(3035), + [sym_member_access_expression] = STATE(2415), + [sym_object_creation_expression] = STATE(3043), + [sym_parenthesized_expression] = STATE(3043), + [sym__parenthesized_lvalue_expression] = STATE(2415), + [sym_lambda_expression] = STATE(3035), + [sym__lambda_expression_init] = STATE(7458), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3035), + [sym_anonymous_method_expression] = STATE(3035), + [sym_anonymous_object_creation_expression] = STATE(3035), + [sym_implicit_array_creation_expression] = STATE(3035), + [sym_implicit_object_creation_expression] = STATE(3035), + [sym_implicit_stackalloc_expression] = STATE(3035), + [sym_initializer_expression] = STATE(3035), + [sym_default_expression] = STATE(3035), + [sym_with_expression] = STATE(3035), + [sym_sizeof_expression] = STATE(3035), + [sym_typeof_expression] = STATE(3035), + [sym_makeref_expression] = STATE(3035), + [sym_ref_expression] = STATE(3035), + [sym_reftype_expression] = STATE(3035), + [sym_refvalue_expression] = STATE(3035), + [sym_stackalloc_expression] = STATE(3035), + [sym_range_expression] = STATE(3035), + [sym_tuple_expression] = STATE(2415), + [sym_literal] = STATE(3035), + [sym_character_literal] = STATE(3037), + [sym_string_literal] = STATE(3037), + [sym_raw_string_literal] = STATE(3037), + [sym_boolean_literal] = STATE(3037), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3035), + [sym_preproc_if_in_attribute_list] = STATE(5583), + [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(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3455), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1241), - [anon_sym_LPAREN] = ACTIONS(1509), - [anon_sym_ref] = ACTIONS(1511), - [anon_sym_LBRACE] = ACTIONS(1247), - [anon_sym_delegate] = ACTIONS(1249), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1239), + [anon_sym_LPAREN] = ACTIONS(2101), + [anon_sym_ref] = ACTIONS(2103), + [anon_sym_LBRACE] = ACTIONS(1245), + [anon_sym_delegate] = ACTIONS(1247), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1251), + [anon_sym_new] = ACTIONS(1249), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1253), - [anon_sym_BANG] = ACTIONS(1515), - [anon_sym_TILDE] = ACTIONS(1515), - [anon_sym_PLUS_PLUS] = ACTIONS(1515), - [anon_sym_DASH_DASH] = ACTIONS(1515), - [anon_sym_true] = ACTIONS(1259), - [anon_sym_false] = ACTIONS(1259), - [anon_sym_PLUS] = ACTIONS(1513), - [anon_sym_DASH] = ACTIONS(1513), - [anon_sym_STAR] = ACTIONS(1517), - [anon_sym_CARET] = ACTIONS(1515), - [anon_sym_AMP] = ACTIONS(1515), - [anon_sym_this] = ACTIONS(1263), + [anon_sym_checked] = ACTIONS(1251), + [anon_sym_BANG] = ACTIONS(2107), + [anon_sym_TILDE] = ACTIONS(2107), + [anon_sym_PLUS_PLUS] = ACTIONS(2107), + [anon_sym_DASH_DASH] = ACTIONS(2107), + [anon_sym_true] = ACTIONS(1257), + [anon_sym_false] = ACTIONS(1257), + [anon_sym_PLUS] = ACTIONS(2105), + [anon_sym_DASH] = ACTIONS(2105), + [anon_sym_STAR] = ACTIONS(1259), + [anon_sym_CARET] = ACTIONS(2107), + [anon_sym_AMP] = ACTIONS(2107), + [anon_sym_this] = ACTIONS(1261), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1265), + [anon_sym_base] = ACTIONS(1263), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1267), - [anon_sym_unchecked] = ACTIONS(1253), + [sym_predefined_type] = ACTIONS(1265), + [anon_sym_unchecked] = ACTIONS(1251), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1269), - [anon_sym_throw] = ACTIONS(1519), + [anon_sym_default] = ACTIONS(1267), + [anon_sym_throw] = ACTIONS(2109), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1521), - [anon_sym_DOT_DOT] = ACTIONS(1523), + [anon_sym_await] = ACTIONS(2111), + [anon_sym_DOT_DOT] = ACTIONS(2113), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -345267,19 +349885,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1277), - [anon_sym_sizeof] = ACTIONS(1279), - [anon_sym_typeof] = ACTIONS(1281), - [anon_sym___makeref] = ACTIONS(1283), - [anon_sym___reftype] = ACTIONS(1285), - [anon_sym___refvalue] = ACTIONS(1287), - [sym_null_literal] = ACTIONS(1289), - [anon_sym_SQUOTE] = ACTIONS(1291), - [sym_integer_literal] = ACTIONS(1289), - [sym_real_literal] = ACTIONS(1293), - [anon_sym_DQUOTE] = ACTIONS(1295), - [sym_verbatim_string_literal] = ACTIONS(1293), - [aux_sym_preproc_if_token1] = ACTIONS(1297), + [anon_sym_stackalloc] = ACTIONS(1275), + [anon_sym_sizeof] = ACTIONS(1277), + [anon_sym_typeof] = ACTIONS(1279), + [anon_sym___makeref] = ACTIONS(1281), + [anon_sym___reftype] = ACTIONS(1283), + [anon_sym___refvalue] = ACTIONS(1285), + [sym_null_literal] = ACTIONS(1287), + [anon_sym_SQUOTE] = ACTIONS(1289), + [sym_integer_literal] = ACTIONS(1287), + [sym_real_literal] = ACTIONS(1291), + [anon_sym_DQUOTE] = ACTIONS(1293), + [sym_verbatim_string_literal] = ACTIONS(1291), + [aux_sym_preproc_if_token1] = ACTIONS(2115), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -345290,140 +349908,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(1299), - [sym_interpolation_verbatim_start] = ACTIONS(1301), - [sym_interpolation_raw_start] = ACTIONS(1303), - [sym_raw_string_start] = ACTIONS(1305), + [sym_interpolation_regular_start] = ACTIONS(1297), + [sym_interpolation_verbatim_start] = ACTIONS(1299), + [sym_interpolation_raw_start] = ACTIONS(1301), + [sym_raw_string_start] = ACTIONS(1303), }, - [1796] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2610), - [sym__name] = STATE(5898), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2197), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(4807), - [sym_non_lvalue_expression] = STATE(3277), - [sym_lvalue_expression] = STATE(3510), - [sym__expression_statement_expression] = STATE(3228), - [sym_assignment_expression] = STATE(3289), - [sym_binary_expression] = STATE(3228), - [sym_postfix_unary_expression] = STATE(3289), - [sym_prefix_unary_expression] = STATE(3289), - [sym__pointer_indirection_expression] = STATE(2609), - [sym_query_expression] = STATE(3228), - [sym_from_clause] = STATE(6180), - [sym_conditional_expression] = STATE(3228), - [sym_conditional_access_expression] = STATE(3228), - [sym_as_expression] = STATE(3228), - [sym_is_expression] = STATE(3228), - [sym_is_pattern_expression] = STATE(3228), - [sym_cast_expression] = STATE(3228), - [sym_checked_expression] = STATE(3228), - [sym_invocation_expression] = STATE(3289), - [sym_switch_expression] = STATE(3228), - [sym_await_expression] = STATE(3289), - [sym_throw_expression] = STATE(3228), - [sym_element_access_expression] = STATE(2609), - [sym_interpolated_string_expression] = STATE(3228), - [sym_member_access_expression] = STATE(2609), - [sym_object_creation_expression] = STATE(3289), - [sym_parenthesized_expression] = STATE(3289), - [sym__parenthesized_lvalue_expression] = STATE(2609), - [sym_lambda_expression] = STATE(3228), - [sym__lambda_expression_init] = STATE(7527), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3228), - [sym_anonymous_method_expression] = STATE(3228), - [sym_anonymous_object_creation_expression] = STATE(3228), - [sym_implicit_array_creation_expression] = STATE(3228), - [sym_implicit_object_creation_expression] = STATE(3228), - [sym_implicit_stackalloc_expression] = STATE(3228), - [sym_initializer_expression] = STATE(3228), - [sym_default_expression] = STATE(3228), - [sym_with_expression] = STATE(3228), - [sym_sizeof_expression] = STATE(3228), - [sym_typeof_expression] = STATE(3228), - [sym_makeref_expression] = STATE(3228), - [sym_ref_expression] = STATE(3228), - [sym_reftype_expression] = STATE(3228), - [sym_refvalue_expression] = STATE(3228), - [sym_stackalloc_expression] = STATE(3228), - [sym_range_expression] = STATE(3228), - [sym_tuple_expression] = STATE(2609), - [sym_literal] = STATE(3228), - [sym_character_literal] = STATE(3278), - [sym_string_literal] = STATE(3278), - [sym_raw_string_literal] = STATE(3278), - [sym_boolean_literal] = STATE(3278), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3228), - [sym_preproc_if_in_attribute_list] = STATE(5576), - [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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3396), + [1824] = { + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2416), + [sym__name] = STATE(5890), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2193), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(5277), + [sym_non_lvalue_expression] = STATE(3040), + [sym_lvalue_expression] = STATE(3631), + [sym__expression_statement_expression] = STATE(3035), + [sym_assignment_expression] = STATE(3043), + [sym_binary_expression] = STATE(3035), + [sym_postfix_unary_expression] = STATE(3043), + [sym_prefix_unary_expression] = STATE(3043), + [sym__pointer_indirection_expression] = STATE(2415), + [sym_query_expression] = STATE(3035), + [sym_from_clause] = STATE(6164), + [sym_conditional_expression] = STATE(3035), + [sym_conditional_access_expression] = STATE(3035), + [sym_as_expression] = STATE(3035), + [sym_is_expression] = STATE(3035), + [sym_is_pattern_expression] = STATE(3035), + [sym_cast_expression] = STATE(3035), + [sym_checked_expression] = STATE(3035), + [sym_invocation_expression] = STATE(3043), + [sym_switch_expression] = STATE(3035), + [sym_await_expression] = STATE(3043), + [sym_throw_expression] = STATE(3035), + [sym_element_access_expression] = STATE(2415), + [sym_interpolated_string_expression] = STATE(3035), + [sym_member_access_expression] = STATE(2415), + [sym_object_creation_expression] = STATE(3043), + [sym_parenthesized_expression] = STATE(3043), + [sym__parenthesized_lvalue_expression] = STATE(2415), + [sym_lambda_expression] = STATE(3035), + [sym__lambda_expression_init] = STATE(7458), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3035), + [sym_anonymous_method_expression] = STATE(3035), + [sym_anonymous_object_creation_expression] = STATE(3035), + [sym_implicit_array_creation_expression] = STATE(3035), + [sym_implicit_object_creation_expression] = STATE(3035), + [sym_implicit_stackalloc_expression] = STATE(3035), + [sym_initializer_expression] = STATE(3035), + [sym_default_expression] = STATE(3035), + [sym_with_expression] = STATE(3035), + [sym_sizeof_expression] = STATE(3035), + [sym_typeof_expression] = STATE(3035), + [sym_makeref_expression] = STATE(3035), + [sym_ref_expression] = STATE(3035), + [sym_reftype_expression] = STATE(3035), + [sym_refvalue_expression] = STATE(3035), + [sym_stackalloc_expression] = STATE(3035), + [sym_range_expression] = STATE(3035), + [sym_tuple_expression] = STATE(2415), + [sym_literal] = STATE(3035), + [sym_character_literal] = STATE(3037), + [sym_string_literal] = STATE(3037), + [sym_raw_string_literal] = STATE(3037), + [sym_boolean_literal] = STATE(3037), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3035), + [sym_preproc_if_in_attribute_list] = STATE(5583), + [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(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3455), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1153), - [anon_sym_LPAREN] = ACTIONS(1759), - [anon_sym_ref] = ACTIONS(1761), - [anon_sym_LBRACE] = ACTIONS(1159), - [anon_sym_delegate] = ACTIONS(1161), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1239), + [anon_sym_LPAREN] = ACTIONS(2101), + [anon_sym_ref] = ACTIONS(2103), + [anon_sym_LBRACE] = ACTIONS(1245), + [anon_sym_delegate] = ACTIONS(1247), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1163), + [anon_sym_new] = ACTIONS(1249), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1167), - [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(1173), - [anon_sym_false] = ACTIONS(1173), - [anon_sym_PLUS] = ACTIONS(1763), - [anon_sym_DASH] = ACTIONS(1763), - [anon_sym_STAR] = ACTIONS(1175), - [anon_sym_CARET] = ACTIONS(1765), - [anon_sym_AMP] = ACTIONS(1765), - [anon_sym_this] = ACTIONS(1177), + [anon_sym_checked] = ACTIONS(1251), + [anon_sym_BANG] = ACTIONS(2107), + [anon_sym_TILDE] = ACTIONS(2107), + [anon_sym_PLUS_PLUS] = ACTIONS(2107), + [anon_sym_DASH_DASH] = ACTIONS(2107), + [anon_sym_true] = ACTIONS(1257), + [anon_sym_false] = ACTIONS(1257), + [anon_sym_PLUS] = ACTIONS(2105), + [anon_sym_DASH] = ACTIONS(2105), + [anon_sym_STAR] = ACTIONS(1259), + [anon_sym_CARET] = ACTIONS(2107), + [anon_sym_AMP] = ACTIONS(2107), + [anon_sym_this] = ACTIONS(1261), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1179), + [anon_sym_base] = ACTIONS(1263), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1181), - [anon_sym_unchecked] = ACTIONS(1167), + [sym_predefined_type] = ACTIONS(1265), + [anon_sym_unchecked] = ACTIONS(1251), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1183), - [anon_sym_throw] = ACTIONS(1767), + [anon_sym_default] = ACTIONS(1267), + [anon_sym_throw] = ACTIONS(2109), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1769), - [anon_sym_DOT_DOT] = ACTIONS(1771), + [anon_sym_await] = ACTIONS(2111), + [anon_sym_DOT_DOT] = ACTIONS(2113), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -345436,19 +350054,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1191), - [anon_sym_sizeof] = ACTIONS(1193), - [anon_sym_typeof] = ACTIONS(1195), - [anon_sym___makeref] = ACTIONS(1197), - [anon_sym___reftype] = ACTIONS(1199), - [anon_sym___refvalue] = ACTIONS(1201), - [sym_null_literal] = ACTIONS(1203), - [anon_sym_SQUOTE] = ACTIONS(1205), - [sym_integer_literal] = ACTIONS(1203), - [sym_real_literal] = ACTIONS(1207), - [anon_sym_DQUOTE] = ACTIONS(1209), - [sym_verbatim_string_literal] = ACTIONS(1207), - [aux_sym_preproc_if_token1] = ACTIONS(1773), + [anon_sym_stackalloc] = ACTIONS(1275), + [anon_sym_sizeof] = ACTIONS(1277), + [anon_sym_typeof] = ACTIONS(1279), + [anon_sym___makeref] = ACTIONS(1281), + [anon_sym___reftype] = ACTIONS(1283), + [anon_sym___refvalue] = ACTIONS(1285), + [sym_null_literal] = ACTIONS(1287), + [anon_sym_SQUOTE] = ACTIONS(1289), + [sym_integer_literal] = ACTIONS(1287), + [sym_real_literal] = ACTIONS(1291), + [anon_sym_DQUOTE] = ACTIONS(1293), + [sym_verbatim_string_literal] = ACTIONS(1291), + [aux_sym_preproc_if_token1] = ACTIONS(2115), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -345459,140 +350077,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(1213), - [sym_interpolation_verbatim_start] = ACTIONS(1215), - [sym_interpolation_raw_start] = ACTIONS(1217), - [sym_raw_string_start] = ACTIONS(1219), + [sym_interpolation_regular_start] = ACTIONS(1297), + [sym_interpolation_verbatim_start] = ACTIONS(1299), + [sym_interpolation_raw_start] = ACTIONS(1301), + [sym_raw_string_start] = ACTIONS(1303), }, - [1797] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2420), - [sym__name] = STATE(5875), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2369), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(4169), - [sym_non_lvalue_expression] = STATE(3066), - [sym_lvalue_expression] = STATE(3125), - [sym__expression_statement_expression] = STATE(3006), - [sym_assignment_expression] = STATE(3020), - [sym_binary_expression] = STATE(3006), - [sym_postfix_unary_expression] = STATE(3020), - [sym_prefix_unary_expression] = STATE(3020), - [sym__pointer_indirection_expression] = STATE(2423), - [sym_query_expression] = STATE(3006), - [sym_from_clause] = STATE(6145), - [sym_conditional_expression] = STATE(3006), - [sym_conditional_access_expression] = STATE(3006), - [sym_as_expression] = STATE(3006), - [sym_is_expression] = STATE(3006), - [sym_is_pattern_expression] = STATE(3006), - [sym_cast_expression] = STATE(3006), - [sym_checked_expression] = STATE(3006), - [sym_invocation_expression] = STATE(3020), - [sym_switch_expression] = STATE(3006), - [sym_await_expression] = STATE(3020), - [sym_throw_expression] = STATE(3006), - [sym_element_access_expression] = STATE(2423), - [sym_interpolated_string_expression] = STATE(3006), - [sym_member_access_expression] = STATE(2423), - [sym_object_creation_expression] = STATE(3020), - [sym_parenthesized_expression] = STATE(3020), - [sym__parenthesized_lvalue_expression] = STATE(2423), - [sym_lambda_expression] = STATE(3006), - [sym__lambda_expression_init] = STATE(7538), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3006), - [sym_anonymous_method_expression] = STATE(3006), - [sym_anonymous_object_creation_expression] = STATE(3006), - [sym_implicit_array_creation_expression] = STATE(3006), - [sym_implicit_object_creation_expression] = STATE(3006), - [sym_implicit_stackalloc_expression] = STATE(3006), - [sym_initializer_expression] = STATE(3006), - [sym_default_expression] = STATE(3006), - [sym_with_expression] = STATE(3006), - [sym_sizeof_expression] = STATE(3006), - [sym_typeof_expression] = STATE(3006), - [sym_makeref_expression] = STATE(3006), - [sym_ref_expression] = STATE(3006), - [sym_reftype_expression] = STATE(3006), - [sym_refvalue_expression] = STATE(3006), - [sym_stackalloc_expression] = STATE(3006), - [sym_range_expression] = STATE(3006), - [sym_tuple_expression] = STATE(2423), - [sym_literal] = STATE(3006), - [sym_character_literal] = STATE(3011), - [sym_string_literal] = STATE(3011), - [sym_raw_string_literal] = STATE(3011), - [sym_boolean_literal] = STATE(3011), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3006), - [sym_preproc_if_in_attribute_list] = STATE(5576), - [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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3440), + [1825] = { + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2416), + [sym__name] = STATE(5890), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2193), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(5278), + [sym_non_lvalue_expression] = STATE(3040), + [sym_lvalue_expression] = STATE(3631), + [sym__expression_statement_expression] = STATE(3035), + [sym_assignment_expression] = STATE(3043), + [sym_binary_expression] = STATE(3035), + [sym_postfix_unary_expression] = STATE(3043), + [sym_prefix_unary_expression] = STATE(3043), + [sym__pointer_indirection_expression] = STATE(2415), + [sym_query_expression] = STATE(3035), + [sym_from_clause] = STATE(6164), + [sym_conditional_expression] = STATE(3035), + [sym_conditional_access_expression] = STATE(3035), + [sym_as_expression] = STATE(3035), + [sym_is_expression] = STATE(3035), + [sym_is_pattern_expression] = STATE(3035), + [sym_cast_expression] = STATE(3035), + [sym_checked_expression] = STATE(3035), + [sym_invocation_expression] = STATE(3043), + [sym_switch_expression] = STATE(3035), + [sym_await_expression] = STATE(3043), + [sym_throw_expression] = STATE(3035), + [sym_element_access_expression] = STATE(2415), + [sym_interpolated_string_expression] = STATE(3035), + [sym_member_access_expression] = STATE(2415), + [sym_object_creation_expression] = STATE(3043), + [sym_parenthesized_expression] = STATE(3043), + [sym__parenthesized_lvalue_expression] = STATE(2415), + [sym_lambda_expression] = STATE(3035), + [sym__lambda_expression_init] = STATE(7458), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3035), + [sym_anonymous_method_expression] = STATE(3035), + [sym_anonymous_object_creation_expression] = STATE(3035), + [sym_implicit_array_creation_expression] = STATE(3035), + [sym_implicit_object_creation_expression] = STATE(3035), + [sym_implicit_stackalloc_expression] = STATE(3035), + [sym_initializer_expression] = STATE(3035), + [sym_default_expression] = STATE(3035), + [sym_with_expression] = STATE(3035), + [sym_sizeof_expression] = STATE(3035), + [sym_typeof_expression] = STATE(3035), + [sym_makeref_expression] = STATE(3035), + [sym_ref_expression] = STATE(3035), + [sym_reftype_expression] = STATE(3035), + [sym_refvalue_expression] = STATE(3035), + [sym_stackalloc_expression] = STATE(3035), + [sym_range_expression] = STATE(3035), + [sym_tuple_expression] = STATE(2415), + [sym_literal] = STATE(3035), + [sym_character_literal] = STATE(3037), + [sym_string_literal] = STATE(3037), + [sym_raw_string_literal] = STATE(3037), + [sym_boolean_literal] = STATE(3037), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3035), + [sym_preproc_if_in_attribute_list] = STATE(5583), + [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(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3455), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1241), - [anon_sym_LPAREN] = ACTIONS(2195), - [anon_sym_ref] = ACTIONS(2197), - [anon_sym_LBRACE] = ACTIONS(1247), - [anon_sym_delegate] = ACTIONS(1249), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1239), + [anon_sym_LPAREN] = ACTIONS(2101), + [anon_sym_ref] = ACTIONS(2103), + [anon_sym_LBRACE] = ACTIONS(1245), + [anon_sym_delegate] = ACTIONS(1247), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1845), + [anon_sym_new] = ACTIONS(1249), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1253), - [anon_sym_BANG] = ACTIONS(2201), - [anon_sym_TILDE] = ACTIONS(2201), - [anon_sym_PLUS_PLUS] = ACTIONS(2201), - [anon_sym_DASH_DASH] = ACTIONS(2201), - [anon_sym_true] = ACTIONS(1259), - [anon_sym_false] = ACTIONS(1259), - [anon_sym_PLUS] = ACTIONS(2199), - [anon_sym_DASH] = ACTIONS(2199), - [anon_sym_STAR] = ACTIONS(1851), - [anon_sym_CARET] = ACTIONS(2201), - [anon_sym_AMP] = ACTIONS(2201), - [anon_sym_this] = ACTIONS(1263), + [anon_sym_checked] = ACTIONS(1251), + [anon_sym_BANG] = ACTIONS(2107), + [anon_sym_TILDE] = ACTIONS(2107), + [anon_sym_PLUS_PLUS] = ACTIONS(2107), + [anon_sym_DASH_DASH] = ACTIONS(2107), + [anon_sym_true] = ACTIONS(1257), + [anon_sym_false] = ACTIONS(1257), + [anon_sym_PLUS] = ACTIONS(2105), + [anon_sym_DASH] = ACTIONS(2105), + [anon_sym_STAR] = ACTIONS(1259), + [anon_sym_CARET] = ACTIONS(2107), + [anon_sym_AMP] = ACTIONS(2107), + [anon_sym_this] = ACTIONS(1261), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1265), + [anon_sym_base] = ACTIONS(1263), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1267), - [anon_sym_unchecked] = ACTIONS(1253), + [sym_predefined_type] = ACTIONS(1265), + [anon_sym_unchecked] = ACTIONS(1251), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1269), - [anon_sym_throw] = ACTIONS(2203), + [anon_sym_default] = ACTIONS(1267), + [anon_sym_throw] = ACTIONS(2109), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2205), - [anon_sym_DOT_DOT] = ACTIONS(2207), + [anon_sym_await] = ACTIONS(2111), + [anon_sym_DOT_DOT] = ACTIONS(2113), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -345605,19 +350223,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1277), - [anon_sym_sizeof] = ACTIONS(1279), - [anon_sym_typeof] = ACTIONS(1281), - [anon_sym___makeref] = ACTIONS(1283), - [anon_sym___reftype] = ACTIONS(1285), - [anon_sym___refvalue] = ACTIONS(1287), - [sym_null_literal] = ACTIONS(1289), - [anon_sym_SQUOTE] = ACTIONS(1291), - [sym_integer_literal] = ACTIONS(1289), - [sym_real_literal] = ACTIONS(1293), - [anon_sym_DQUOTE] = ACTIONS(1295), - [sym_verbatim_string_literal] = ACTIONS(1293), - [aux_sym_preproc_if_token1] = ACTIONS(1297), + [anon_sym_stackalloc] = ACTIONS(1275), + [anon_sym_sizeof] = ACTIONS(1277), + [anon_sym_typeof] = ACTIONS(1279), + [anon_sym___makeref] = ACTIONS(1281), + [anon_sym___reftype] = ACTIONS(1283), + [anon_sym___refvalue] = ACTIONS(1285), + [sym_null_literal] = ACTIONS(1287), + [anon_sym_SQUOTE] = ACTIONS(1289), + [sym_integer_literal] = ACTIONS(1287), + [sym_real_literal] = ACTIONS(1291), + [anon_sym_DQUOTE] = ACTIONS(1293), + [sym_verbatim_string_literal] = ACTIONS(1291), + [aux_sym_preproc_if_token1] = ACTIONS(2115), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -345628,140 +350246,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(1299), - [sym_interpolation_verbatim_start] = ACTIONS(1301), - [sym_interpolation_raw_start] = ACTIONS(1303), - [sym_raw_string_start] = ACTIONS(1305), + [sym_interpolation_regular_start] = ACTIONS(1297), + [sym_interpolation_verbatim_start] = ACTIONS(1299), + [sym_interpolation_raw_start] = ACTIONS(1301), + [sym_raw_string_start] = ACTIONS(1303), }, - [1798] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(5160), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2204), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(5672), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(2465), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3080), - [sym_postfix_unary_expression] = STATE(3111), - [sym_prefix_unary_expression] = STATE(3111), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6154), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3080), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3111), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3080), - [sym_member_access_expression] = STATE(2484), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3111), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7530), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(3080), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3080), - [sym_typeof_expression] = STATE(3080), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2484), - [sym_literal] = STATE(3080), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), - [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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [1826] = { + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2416), + [sym__name] = STATE(5890), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2193), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(5279), + [sym_non_lvalue_expression] = STATE(3040), + [sym_lvalue_expression] = STATE(3631), + [sym__expression_statement_expression] = STATE(3035), + [sym_assignment_expression] = STATE(3043), + [sym_binary_expression] = STATE(3035), + [sym_postfix_unary_expression] = STATE(3043), + [sym_prefix_unary_expression] = STATE(3043), + [sym__pointer_indirection_expression] = STATE(2415), + [sym_query_expression] = STATE(3035), + [sym_from_clause] = STATE(6164), + [sym_conditional_expression] = STATE(3035), + [sym_conditional_access_expression] = STATE(3035), + [sym_as_expression] = STATE(3035), + [sym_is_expression] = STATE(3035), + [sym_is_pattern_expression] = STATE(3035), + [sym_cast_expression] = STATE(3035), + [sym_checked_expression] = STATE(3035), + [sym_invocation_expression] = STATE(3043), + [sym_switch_expression] = STATE(3035), + [sym_await_expression] = STATE(3043), + [sym_throw_expression] = STATE(3035), + [sym_element_access_expression] = STATE(2415), + [sym_interpolated_string_expression] = STATE(3035), + [sym_member_access_expression] = STATE(2415), + [sym_object_creation_expression] = STATE(3043), + [sym_parenthesized_expression] = STATE(3043), + [sym__parenthesized_lvalue_expression] = STATE(2415), + [sym_lambda_expression] = STATE(3035), + [sym__lambda_expression_init] = STATE(7458), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3035), + [sym_anonymous_method_expression] = STATE(3035), + [sym_anonymous_object_creation_expression] = STATE(3035), + [sym_implicit_array_creation_expression] = STATE(3035), + [sym_implicit_object_creation_expression] = STATE(3035), + [sym_implicit_stackalloc_expression] = STATE(3035), + [sym_initializer_expression] = STATE(3035), + [sym_default_expression] = STATE(3035), + [sym_with_expression] = STATE(3035), + [sym_sizeof_expression] = STATE(3035), + [sym_typeof_expression] = STATE(3035), + [sym_makeref_expression] = STATE(3035), + [sym_ref_expression] = STATE(3035), + [sym_reftype_expression] = STATE(3035), + [sym_refvalue_expression] = STATE(3035), + [sym_stackalloc_expression] = STATE(3035), + [sym_range_expression] = STATE(3035), + [sym_tuple_expression] = STATE(2415), + [sym_literal] = STATE(3035), + [sym_character_literal] = STATE(3037), + [sym_string_literal] = STATE(3037), + [sym_raw_string_literal] = STATE(3037), + [sym_boolean_literal] = STATE(3037), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3035), + [sym_preproc_if_in_attribute_list] = STATE(5583), + [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(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3455), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1481), - [anon_sym_LPAREN] = ACTIONS(43), - [anon_sym_ref] = ACTIONS(661), - [anon_sym_LBRACE] = ACTIONS(1487), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1239), + [anon_sym_LPAREN] = ACTIONS(2101), + [anon_sym_ref] = ACTIONS(2103), + [anon_sym_LBRACE] = ACTIONS(1245), + [anon_sym_delegate] = ACTIONS(1247), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1061), + [anon_sym_new] = ACTIONS(1249), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = 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(1585), - [anon_sym_DASH] = ACTIONS(1585), - [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(1587), - [anon_sym_AMP] = ACTIONS(1587), - [anon_sym_this] = ACTIONS(83), + [anon_sym_checked] = ACTIONS(1251), + [anon_sym_BANG] = ACTIONS(2107), + [anon_sym_TILDE] = ACTIONS(2107), + [anon_sym_PLUS_PLUS] = ACTIONS(2107), + [anon_sym_DASH_DASH] = ACTIONS(2107), + [anon_sym_true] = ACTIONS(1257), + [anon_sym_false] = ACTIONS(1257), + [anon_sym_PLUS] = ACTIONS(2105), + [anon_sym_DASH] = ACTIONS(2105), + [anon_sym_STAR] = ACTIONS(1259), + [anon_sym_CARET] = ACTIONS(2107), + [anon_sym_AMP] = ACTIONS(2107), + [anon_sym_this] = ACTIONS(1261), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), + [anon_sym_base] = ACTIONS(1263), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1067), + [sym_predefined_type] = ACTIONS(1265), + [anon_sym_unchecked] = ACTIONS(1251), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1589), + [anon_sym_default] = ACTIONS(1267), + [anon_sym_throw] = ACTIONS(2109), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1591), - [anon_sym_DOT_DOT] = ACTIONS(123), + [anon_sym_await] = ACTIONS(2111), + [anon_sym_DOT_DOT] = ACTIONS(2113), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -345774,19 +350392,19 @@ static const uint16_t ts_parse_table[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(1089), + [anon_sym_stackalloc] = ACTIONS(1275), + [anon_sym_sizeof] = ACTIONS(1277), + [anon_sym_typeof] = ACTIONS(1279), + [anon_sym___makeref] = ACTIONS(1281), + [anon_sym___reftype] = ACTIONS(1283), + [anon_sym___refvalue] = ACTIONS(1285), + [sym_null_literal] = ACTIONS(1287), + [anon_sym_SQUOTE] = ACTIONS(1289), + [sym_integer_literal] = ACTIONS(1287), + [sym_real_literal] = ACTIONS(1291), + [anon_sym_DQUOTE] = ACTIONS(1293), + [sym_verbatim_string_literal] = ACTIONS(1291), + [aux_sym_preproc_if_token1] = ACTIONS(2115), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -345797,140 +350415,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(1297), + [sym_interpolation_verbatim_start] = ACTIONS(1299), + [sym_interpolation_raw_start] = ACTIONS(1301), + [sym_raw_string_start] = ACTIONS(1303), }, - [1799] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2420), - [sym__name] = STATE(5875), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2369), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(4174), - [sym_non_lvalue_expression] = STATE(3066), - [sym_lvalue_expression] = STATE(3125), - [sym__expression_statement_expression] = STATE(3006), - [sym_assignment_expression] = STATE(3020), - [sym_binary_expression] = STATE(3006), - [sym_postfix_unary_expression] = STATE(3020), - [sym_prefix_unary_expression] = STATE(3020), - [sym__pointer_indirection_expression] = STATE(2423), - [sym_query_expression] = STATE(3006), - [sym_from_clause] = STATE(6145), - [sym_conditional_expression] = STATE(3006), - [sym_conditional_access_expression] = STATE(3006), - [sym_as_expression] = STATE(3006), - [sym_is_expression] = STATE(3006), - [sym_is_pattern_expression] = STATE(3006), - [sym_cast_expression] = STATE(3006), - [sym_checked_expression] = STATE(3006), - [sym_invocation_expression] = STATE(3020), - [sym_switch_expression] = STATE(3006), - [sym_await_expression] = STATE(3020), - [sym_throw_expression] = STATE(3006), - [sym_element_access_expression] = STATE(2423), - [sym_interpolated_string_expression] = STATE(3006), - [sym_member_access_expression] = STATE(2423), - [sym_object_creation_expression] = STATE(3020), - [sym_parenthesized_expression] = STATE(3020), - [sym__parenthesized_lvalue_expression] = STATE(2423), - [sym_lambda_expression] = STATE(3006), - [sym__lambda_expression_init] = STATE(7538), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3006), - [sym_anonymous_method_expression] = STATE(3006), - [sym_anonymous_object_creation_expression] = STATE(3006), - [sym_implicit_array_creation_expression] = STATE(3006), - [sym_implicit_object_creation_expression] = STATE(3006), - [sym_implicit_stackalloc_expression] = STATE(3006), - [sym_initializer_expression] = STATE(3006), - [sym_default_expression] = STATE(3006), - [sym_with_expression] = STATE(3006), - [sym_sizeof_expression] = STATE(3006), - [sym_typeof_expression] = STATE(3006), - [sym_makeref_expression] = STATE(3006), - [sym_ref_expression] = STATE(3006), - [sym_reftype_expression] = STATE(3006), - [sym_refvalue_expression] = STATE(3006), - [sym_stackalloc_expression] = STATE(3006), - [sym_range_expression] = STATE(3006), - [sym_tuple_expression] = STATE(2423), - [sym_literal] = STATE(3006), - [sym_character_literal] = STATE(3011), - [sym_string_literal] = STATE(3011), - [sym_raw_string_literal] = STATE(3011), - [sym_boolean_literal] = STATE(3011), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3006), - [sym_preproc_if_in_attribute_list] = STATE(5576), - [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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3440), + [1827] = { + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2416), + [sym__name] = STATE(5890), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2193), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(5280), + [sym_non_lvalue_expression] = STATE(3040), + [sym_lvalue_expression] = STATE(3631), + [sym__expression_statement_expression] = STATE(3035), + [sym_assignment_expression] = STATE(3043), + [sym_binary_expression] = STATE(3035), + [sym_postfix_unary_expression] = STATE(3043), + [sym_prefix_unary_expression] = STATE(3043), + [sym__pointer_indirection_expression] = STATE(2415), + [sym_query_expression] = STATE(3035), + [sym_from_clause] = STATE(6164), + [sym_conditional_expression] = STATE(3035), + [sym_conditional_access_expression] = STATE(3035), + [sym_as_expression] = STATE(3035), + [sym_is_expression] = STATE(3035), + [sym_is_pattern_expression] = STATE(3035), + [sym_cast_expression] = STATE(3035), + [sym_checked_expression] = STATE(3035), + [sym_invocation_expression] = STATE(3043), + [sym_switch_expression] = STATE(3035), + [sym_await_expression] = STATE(3043), + [sym_throw_expression] = STATE(3035), + [sym_element_access_expression] = STATE(2415), + [sym_interpolated_string_expression] = STATE(3035), + [sym_member_access_expression] = STATE(2415), + [sym_object_creation_expression] = STATE(3043), + [sym_parenthesized_expression] = STATE(3043), + [sym__parenthesized_lvalue_expression] = STATE(2415), + [sym_lambda_expression] = STATE(3035), + [sym__lambda_expression_init] = STATE(7458), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3035), + [sym_anonymous_method_expression] = STATE(3035), + [sym_anonymous_object_creation_expression] = STATE(3035), + [sym_implicit_array_creation_expression] = STATE(3035), + [sym_implicit_object_creation_expression] = STATE(3035), + [sym_implicit_stackalloc_expression] = STATE(3035), + [sym_initializer_expression] = STATE(3035), + [sym_default_expression] = STATE(3035), + [sym_with_expression] = STATE(3035), + [sym_sizeof_expression] = STATE(3035), + [sym_typeof_expression] = STATE(3035), + [sym_makeref_expression] = STATE(3035), + [sym_ref_expression] = STATE(3035), + [sym_reftype_expression] = STATE(3035), + [sym_refvalue_expression] = STATE(3035), + [sym_stackalloc_expression] = STATE(3035), + [sym_range_expression] = STATE(3035), + [sym_tuple_expression] = STATE(2415), + [sym_literal] = STATE(3035), + [sym_character_literal] = STATE(3037), + [sym_string_literal] = STATE(3037), + [sym_raw_string_literal] = STATE(3037), + [sym_boolean_literal] = STATE(3037), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3035), + [sym_preproc_if_in_attribute_list] = STATE(5583), + [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(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3455), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1241), - [anon_sym_LPAREN] = ACTIONS(2195), - [anon_sym_ref] = ACTIONS(2197), - [anon_sym_LBRACE] = ACTIONS(1247), - [anon_sym_delegate] = ACTIONS(1249), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1239), + [anon_sym_LPAREN] = ACTIONS(2101), + [anon_sym_ref] = ACTIONS(2103), + [anon_sym_LBRACE] = ACTIONS(1245), + [anon_sym_delegate] = ACTIONS(1247), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1845), + [anon_sym_new] = ACTIONS(1249), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1253), - [anon_sym_BANG] = ACTIONS(2201), - [anon_sym_TILDE] = ACTIONS(2201), - [anon_sym_PLUS_PLUS] = ACTIONS(2201), - [anon_sym_DASH_DASH] = ACTIONS(2201), - [anon_sym_true] = ACTIONS(1259), - [anon_sym_false] = ACTIONS(1259), - [anon_sym_PLUS] = ACTIONS(2199), - [anon_sym_DASH] = ACTIONS(2199), - [anon_sym_STAR] = ACTIONS(1851), - [anon_sym_CARET] = ACTIONS(2201), - [anon_sym_AMP] = ACTIONS(2201), - [anon_sym_this] = ACTIONS(1263), + [anon_sym_checked] = ACTIONS(1251), + [anon_sym_BANG] = ACTIONS(2107), + [anon_sym_TILDE] = ACTIONS(2107), + [anon_sym_PLUS_PLUS] = ACTIONS(2107), + [anon_sym_DASH_DASH] = ACTIONS(2107), + [anon_sym_true] = ACTIONS(1257), + [anon_sym_false] = ACTIONS(1257), + [anon_sym_PLUS] = ACTIONS(2105), + [anon_sym_DASH] = ACTIONS(2105), + [anon_sym_STAR] = ACTIONS(1259), + [anon_sym_CARET] = ACTIONS(2107), + [anon_sym_AMP] = ACTIONS(2107), + [anon_sym_this] = ACTIONS(1261), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1265), + [anon_sym_base] = ACTIONS(1263), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1267), - [anon_sym_unchecked] = ACTIONS(1253), + [sym_predefined_type] = ACTIONS(1265), + [anon_sym_unchecked] = ACTIONS(1251), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1269), - [anon_sym_throw] = ACTIONS(2203), + [anon_sym_default] = ACTIONS(1267), + [anon_sym_throw] = ACTIONS(2109), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2205), - [anon_sym_DOT_DOT] = ACTIONS(2207), + [anon_sym_await] = ACTIONS(2111), + [anon_sym_DOT_DOT] = ACTIONS(2113), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -345943,19 +350561,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1277), - [anon_sym_sizeof] = ACTIONS(1279), - [anon_sym_typeof] = ACTIONS(1281), - [anon_sym___makeref] = ACTIONS(1283), - [anon_sym___reftype] = ACTIONS(1285), - [anon_sym___refvalue] = ACTIONS(1287), - [sym_null_literal] = ACTIONS(1289), - [anon_sym_SQUOTE] = ACTIONS(1291), - [sym_integer_literal] = ACTIONS(1289), - [sym_real_literal] = ACTIONS(1293), - [anon_sym_DQUOTE] = ACTIONS(1295), - [sym_verbatim_string_literal] = ACTIONS(1293), - [aux_sym_preproc_if_token1] = ACTIONS(1297), + [anon_sym_stackalloc] = ACTIONS(1275), + [anon_sym_sizeof] = ACTIONS(1277), + [anon_sym_typeof] = ACTIONS(1279), + [anon_sym___makeref] = ACTIONS(1281), + [anon_sym___reftype] = ACTIONS(1283), + [anon_sym___refvalue] = ACTIONS(1285), + [sym_null_literal] = ACTIONS(1287), + [anon_sym_SQUOTE] = ACTIONS(1289), + [sym_integer_literal] = ACTIONS(1287), + [sym_real_literal] = ACTIONS(1291), + [anon_sym_DQUOTE] = ACTIONS(1293), + [sym_verbatim_string_literal] = ACTIONS(1291), + [aux_sym_preproc_if_token1] = ACTIONS(2115), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -345966,140 +350584,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(1299), - [sym_interpolation_verbatim_start] = ACTIONS(1301), - [sym_interpolation_raw_start] = ACTIONS(1303), - [sym_raw_string_start] = ACTIONS(1305), + [sym_interpolation_regular_start] = ACTIONS(1297), + [sym_interpolation_verbatim_start] = ACTIONS(1299), + [sym_interpolation_raw_start] = ACTIONS(1301), + [sym_raw_string_start] = ACTIONS(1303), }, - [1800] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2420), - [sym__name] = STATE(5911), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2197), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(4427), - [sym_non_lvalue_expression] = STATE(3066), - [sym_lvalue_expression] = STATE(3327), - [sym__expression_statement_expression] = STATE(3006), - [sym_assignment_expression] = STATE(3020), - [sym_binary_expression] = STATE(3006), - [sym_postfix_unary_expression] = STATE(3020), - [sym_prefix_unary_expression] = STATE(3020), - [sym__pointer_indirection_expression] = STATE(2423), - [sym_query_expression] = STATE(3006), - [sym_from_clause] = STATE(6159), - [sym_conditional_expression] = STATE(3006), - [sym_conditional_access_expression] = STATE(3006), - [sym_as_expression] = STATE(3006), - [sym_is_expression] = STATE(3006), - [sym_is_pattern_expression] = STATE(3006), - [sym_cast_expression] = STATE(3006), - [sym_checked_expression] = STATE(3006), - [sym_invocation_expression] = STATE(3020), - [sym_switch_expression] = STATE(3006), - [sym_await_expression] = STATE(3020), - [sym_throw_expression] = STATE(3006), - [sym_element_access_expression] = STATE(2423), - [sym_interpolated_string_expression] = STATE(3006), - [sym_member_access_expression] = STATE(2423), - [sym_object_creation_expression] = STATE(3020), - [sym_parenthesized_expression] = STATE(3020), - [sym__parenthesized_lvalue_expression] = STATE(2423), - [sym_lambda_expression] = STATE(3006), - [sym__lambda_expression_init] = STATE(7674), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3006), - [sym_anonymous_method_expression] = STATE(3006), - [sym_anonymous_object_creation_expression] = STATE(3006), - [sym_implicit_array_creation_expression] = STATE(3006), - [sym_implicit_object_creation_expression] = STATE(3006), - [sym_implicit_stackalloc_expression] = STATE(3006), - [sym_initializer_expression] = STATE(3006), - [sym_default_expression] = STATE(3006), - [sym_with_expression] = STATE(3006), - [sym_sizeof_expression] = STATE(3006), - [sym_typeof_expression] = STATE(3006), - [sym_makeref_expression] = STATE(3006), - [sym_ref_expression] = STATE(3006), - [sym_reftype_expression] = STATE(3006), - [sym_refvalue_expression] = STATE(3006), - [sym_stackalloc_expression] = STATE(3006), - [sym_range_expression] = STATE(3006), - [sym_tuple_expression] = STATE(2423), - [sym_literal] = STATE(3006), - [sym_character_literal] = STATE(3011), - [sym_string_literal] = STATE(3011), - [sym_raw_string_literal] = STATE(3011), - [sym_boolean_literal] = STATE(3011), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3006), - [sym_preproc_if_in_attribute_list] = STATE(5576), - [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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3440), + [1828] = { + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2416), + [sym__name] = STATE(5890), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2193), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(5281), + [sym_non_lvalue_expression] = STATE(3040), + [sym_lvalue_expression] = STATE(3631), + [sym__expression_statement_expression] = STATE(3035), + [sym_assignment_expression] = STATE(3043), + [sym_binary_expression] = STATE(3035), + [sym_postfix_unary_expression] = STATE(3043), + [sym_prefix_unary_expression] = STATE(3043), + [sym__pointer_indirection_expression] = STATE(2415), + [sym_query_expression] = STATE(3035), + [sym_from_clause] = STATE(6164), + [sym_conditional_expression] = STATE(3035), + [sym_conditional_access_expression] = STATE(3035), + [sym_as_expression] = STATE(3035), + [sym_is_expression] = STATE(3035), + [sym_is_pattern_expression] = STATE(3035), + [sym_cast_expression] = STATE(3035), + [sym_checked_expression] = STATE(3035), + [sym_invocation_expression] = STATE(3043), + [sym_switch_expression] = STATE(3035), + [sym_await_expression] = STATE(3043), + [sym_throw_expression] = STATE(3035), + [sym_element_access_expression] = STATE(2415), + [sym_interpolated_string_expression] = STATE(3035), + [sym_member_access_expression] = STATE(2415), + [sym_object_creation_expression] = STATE(3043), + [sym_parenthesized_expression] = STATE(3043), + [sym__parenthesized_lvalue_expression] = STATE(2415), + [sym_lambda_expression] = STATE(3035), + [sym__lambda_expression_init] = STATE(7458), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3035), + [sym_anonymous_method_expression] = STATE(3035), + [sym_anonymous_object_creation_expression] = STATE(3035), + [sym_implicit_array_creation_expression] = STATE(3035), + [sym_implicit_object_creation_expression] = STATE(3035), + [sym_implicit_stackalloc_expression] = STATE(3035), + [sym_initializer_expression] = STATE(3035), + [sym_default_expression] = STATE(3035), + [sym_with_expression] = STATE(3035), + [sym_sizeof_expression] = STATE(3035), + [sym_typeof_expression] = STATE(3035), + [sym_makeref_expression] = STATE(3035), + [sym_ref_expression] = STATE(3035), + [sym_reftype_expression] = STATE(3035), + [sym_refvalue_expression] = STATE(3035), + [sym_stackalloc_expression] = STATE(3035), + [sym_range_expression] = STATE(3035), + [sym_tuple_expression] = STATE(2415), + [sym_literal] = STATE(3035), + [sym_character_literal] = STATE(3037), + [sym_string_literal] = STATE(3037), + [sym_raw_string_literal] = STATE(3037), + [sym_boolean_literal] = STATE(3037), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3035), + [sym_preproc_if_in_attribute_list] = STATE(5583), + [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(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3455), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1241), - [anon_sym_LPAREN] = ACTIONS(1509), - [anon_sym_ref] = ACTIONS(1511), - [anon_sym_LBRACE] = ACTIONS(1247), - [anon_sym_delegate] = ACTIONS(1249), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1239), + [anon_sym_LPAREN] = ACTIONS(2101), + [anon_sym_ref] = ACTIONS(2103), + [anon_sym_LBRACE] = ACTIONS(1245), + [anon_sym_delegate] = ACTIONS(1247), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1251), + [anon_sym_new] = ACTIONS(1249), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1253), - [anon_sym_BANG] = ACTIONS(1515), - [anon_sym_TILDE] = ACTIONS(1515), - [anon_sym_PLUS_PLUS] = ACTIONS(1515), - [anon_sym_DASH_DASH] = ACTIONS(1515), - [anon_sym_true] = ACTIONS(1259), - [anon_sym_false] = ACTIONS(1259), - [anon_sym_PLUS] = ACTIONS(1513), - [anon_sym_DASH] = ACTIONS(1513), - [anon_sym_STAR] = ACTIONS(1517), - [anon_sym_CARET] = ACTIONS(1515), - [anon_sym_AMP] = ACTIONS(1515), - [anon_sym_this] = ACTIONS(1263), + [anon_sym_checked] = ACTIONS(1251), + [anon_sym_BANG] = ACTIONS(2107), + [anon_sym_TILDE] = ACTIONS(2107), + [anon_sym_PLUS_PLUS] = ACTIONS(2107), + [anon_sym_DASH_DASH] = ACTIONS(2107), + [anon_sym_true] = ACTIONS(1257), + [anon_sym_false] = ACTIONS(1257), + [anon_sym_PLUS] = ACTIONS(2105), + [anon_sym_DASH] = ACTIONS(2105), + [anon_sym_STAR] = ACTIONS(1259), + [anon_sym_CARET] = ACTIONS(2107), + [anon_sym_AMP] = ACTIONS(2107), + [anon_sym_this] = ACTIONS(1261), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1265), + [anon_sym_base] = ACTIONS(1263), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1267), - [anon_sym_unchecked] = ACTIONS(1253), + [sym_predefined_type] = ACTIONS(1265), + [anon_sym_unchecked] = ACTIONS(1251), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1269), - [anon_sym_throw] = ACTIONS(1519), + [anon_sym_default] = ACTIONS(1267), + [anon_sym_throw] = ACTIONS(2109), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1521), - [anon_sym_DOT_DOT] = ACTIONS(1523), + [anon_sym_await] = ACTIONS(2111), + [anon_sym_DOT_DOT] = ACTIONS(2113), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -346112,19 +350730,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1277), - [anon_sym_sizeof] = ACTIONS(1279), - [anon_sym_typeof] = ACTIONS(1281), - [anon_sym___makeref] = ACTIONS(1283), - [anon_sym___reftype] = ACTIONS(1285), - [anon_sym___refvalue] = ACTIONS(1287), - [sym_null_literal] = ACTIONS(1289), - [anon_sym_SQUOTE] = ACTIONS(1291), - [sym_integer_literal] = ACTIONS(1289), - [sym_real_literal] = ACTIONS(1293), - [anon_sym_DQUOTE] = ACTIONS(1295), - [sym_verbatim_string_literal] = ACTIONS(1293), - [aux_sym_preproc_if_token1] = ACTIONS(1297), + [anon_sym_stackalloc] = ACTIONS(1275), + [anon_sym_sizeof] = ACTIONS(1277), + [anon_sym_typeof] = ACTIONS(1279), + [anon_sym___makeref] = ACTIONS(1281), + [anon_sym___reftype] = ACTIONS(1283), + [anon_sym___refvalue] = ACTIONS(1285), + [sym_null_literal] = ACTIONS(1287), + [anon_sym_SQUOTE] = ACTIONS(1289), + [sym_integer_literal] = ACTIONS(1287), + [sym_real_literal] = ACTIONS(1291), + [anon_sym_DQUOTE] = ACTIONS(1293), + [sym_verbatim_string_literal] = ACTIONS(1291), + [aux_sym_preproc_if_token1] = ACTIONS(2115), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -346135,140 +350753,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(1299), - [sym_interpolation_verbatim_start] = ACTIONS(1301), - [sym_interpolation_raw_start] = ACTIONS(1303), - [sym_raw_string_start] = ACTIONS(1305), + [sym_interpolation_regular_start] = ACTIONS(1297), + [sym_interpolation_verbatim_start] = ACTIONS(1299), + [sym_interpolation_raw_start] = ACTIONS(1301), + [sym_raw_string_start] = ACTIONS(1303), }, - [1801] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(5160), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2204), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(4763), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3461), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3080), - [sym_postfix_unary_expression] = STATE(3111), - [sym_prefix_unary_expression] = STATE(3111), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6154), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3080), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3111), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3080), - [sym_member_access_expression] = STATE(2484), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3111), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7547), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(3080), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3080), - [sym_typeof_expression] = STATE(3080), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2484), - [sym_literal] = STATE(3080), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), - [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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [1829] = { + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2416), + [sym__name] = STATE(5890), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2193), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(5282), + [sym_non_lvalue_expression] = STATE(3040), + [sym_lvalue_expression] = STATE(3631), + [sym__expression_statement_expression] = STATE(3035), + [sym_assignment_expression] = STATE(3043), + [sym_binary_expression] = STATE(3035), + [sym_postfix_unary_expression] = STATE(3043), + [sym_prefix_unary_expression] = STATE(3043), + [sym__pointer_indirection_expression] = STATE(2415), + [sym_query_expression] = STATE(3035), + [sym_from_clause] = STATE(6164), + [sym_conditional_expression] = STATE(3035), + [sym_conditional_access_expression] = STATE(3035), + [sym_as_expression] = STATE(3035), + [sym_is_expression] = STATE(3035), + [sym_is_pattern_expression] = STATE(3035), + [sym_cast_expression] = STATE(3035), + [sym_checked_expression] = STATE(3035), + [sym_invocation_expression] = STATE(3043), + [sym_switch_expression] = STATE(3035), + [sym_await_expression] = STATE(3043), + [sym_throw_expression] = STATE(3035), + [sym_element_access_expression] = STATE(2415), + [sym_interpolated_string_expression] = STATE(3035), + [sym_member_access_expression] = STATE(2415), + [sym_object_creation_expression] = STATE(3043), + [sym_parenthesized_expression] = STATE(3043), + [sym__parenthesized_lvalue_expression] = STATE(2415), + [sym_lambda_expression] = STATE(3035), + [sym__lambda_expression_init] = STATE(7458), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3035), + [sym_anonymous_method_expression] = STATE(3035), + [sym_anonymous_object_creation_expression] = STATE(3035), + [sym_implicit_array_creation_expression] = STATE(3035), + [sym_implicit_object_creation_expression] = STATE(3035), + [sym_implicit_stackalloc_expression] = STATE(3035), + [sym_initializer_expression] = STATE(3035), + [sym_default_expression] = STATE(3035), + [sym_with_expression] = STATE(3035), + [sym_sizeof_expression] = STATE(3035), + [sym_typeof_expression] = STATE(3035), + [sym_makeref_expression] = STATE(3035), + [sym_ref_expression] = STATE(3035), + [sym_reftype_expression] = STATE(3035), + [sym_refvalue_expression] = STATE(3035), + [sym_stackalloc_expression] = STATE(3035), + [sym_range_expression] = STATE(3035), + [sym_tuple_expression] = STATE(2415), + [sym_literal] = STATE(3035), + [sym_character_literal] = STATE(3037), + [sym_string_literal] = STATE(3037), + [sym_raw_string_literal] = STATE(3037), + [sym_boolean_literal] = STATE(3037), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3035), + [sym_preproc_if_in_attribute_list] = STATE(5583), + [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(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3455), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1481), - [anon_sym_LPAREN] = ACTIONS(1497), - [anon_sym_ref] = ACTIONS(1499), - [anon_sym_LBRACE] = ACTIONS(1487), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1239), + [anon_sym_LPAREN] = ACTIONS(2101), + [anon_sym_ref] = ACTIONS(2103), + [anon_sym_LBRACE] = ACTIONS(1245), + [anon_sym_delegate] = ACTIONS(1247), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1501), + [anon_sym_new] = ACTIONS(1249), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = 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(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(1251), + [anon_sym_BANG] = ACTIONS(2107), + [anon_sym_TILDE] = ACTIONS(2107), + [anon_sym_PLUS_PLUS] = ACTIONS(2107), + [anon_sym_DASH_DASH] = ACTIONS(2107), + [anon_sym_true] = ACTIONS(1257), + [anon_sym_false] = ACTIONS(1257), + [anon_sym_PLUS] = ACTIONS(2105), + [anon_sym_DASH] = ACTIONS(2105), + [anon_sym_STAR] = ACTIONS(1259), + [anon_sym_CARET] = ACTIONS(2107), + [anon_sym_AMP] = ACTIONS(2107), + [anon_sym_this] = ACTIONS(1261), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), + [anon_sym_base] = ACTIONS(1263), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1067), + [sym_predefined_type] = ACTIONS(1265), + [anon_sym_unchecked] = ACTIONS(1251), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1503), + [anon_sym_default] = ACTIONS(1267), + [anon_sym_throw] = ACTIONS(2109), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1505), - [anon_sym_DOT_DOT] = ACTIONS(1507), + [anon_sym_await] = ACTIONS(2111), + [anon_sym_DOT_DOT] = ACTIONS(2113), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -346281,19 +350899,19 @@ static const uint16_t ts_parse_table[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(1089), + [anon_sym_stackalloc] = ACTIONS(1275), + [anon_sym_sizeof] = ACTIONS(1277), + [anon_sym_typeof] = ACTIONS(1279), + [anon_sym___makeref] = ACTIONS(1281), + [anon_sym___reftype] = ACTIONS(1283), + [anon_sym___refvalue] = ACTIONS(1285), + [sym_null_literal] = ACTIONS(1287), + [anon_sym_SQUOTE] = ACTIONS(1289), + [sym_integer_literal] = ACTIONS(1287), + [sym_real_literal] = ACTIONS(1291), + [anon_sym_DQUOTE] = ACTIONS(1293), + [sym_verbatim_string_literal] = ACTIONS(1291), + [aux_sym_preproc_if_token1] = ACTIONS(2115), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -346304,140 +350922,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(1297), + [sym_interpolation_verbatim_start] = ACTIONS(1299), + [sym_interpolation_raw_start] = ACTIONS(1301), + [sym_raw_string_start] = ACTIONS(1303), }, - [1802] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2420), - [sym__name] = STATE(5875), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2369), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(2910), - [sym_non_lvalue_expression] = STATE(3066), - [sym_lvalue_expression] = STATE(3125), - [sym__expression_statement_expression] = STATE(3006), - [sym_assignment_expression] = STATE(3020), - [sym_binary_expression] = STATE(3006), - [sym_postfix_unary_expression] = STATE(3020), - [sym_prefix_unary_expression] = STATE(3020), - [sym__pointer_indirection_expression] = STATE(2423), - [sym_query_expression] = STATE(3006), - [sym_from_clause] = STATE(6145), - [sym_conditional_expression] = STATE(3006), - [sym_conditional_access_expression] = STATE(3006), - [sym_as_expression] = STATE(3006), - [sym_is_expression] = STATE(3006), - [sym_is_pattern_expression] = STATE(3006), - [sym_cast_expression] = STATE(3006), - [sym_checked_expression] = STATE(3006), - [sym_invocation_expression] = STATE(3020), - [sym_switch_expression] = STATE(3006), - [sym_await_expression] = STATE(3020), - [sym_throw_expression] = STATE(3006), - [sym_element_access_expression] = STATE(2423), - [sym_interpolated_string_expression] = STATE(3006), - [sym_member_access_expression] = STATE(2423), - [sym_object_creation_expression] = STATE(3020), - [sym_parenthesized_expression] = STATE(3020), - [sym__parenthesized_lvalue_expression] = STATE(2423), - [sym_lambda_expression] = STATE(3006), - [sym__lambda_expression_init] = STATE(7538), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3006), - [sym_anonymous_method_expression] = STATE(3006), - [sym_anonymous_object_creation_expression] = STATE(3006), - [sym_implicit_array_creation_expression] = STATE(3006), - [sym_implicit_object_creation_expression] = STATE(3006), - [sym_implicit_stackalloc_expression] = STATE(3006), - [sym_initializer_expression] = STATE(3006), - [sym_default_expression] = STATE(3006), - [sym_with_expression] = STATE(3006), - [sym_sizeof_expression] = STATE(3006), - [sym_typeof_expression] = STATE(3006), - [sym_makeref_expression] = STATE(3006), - [sym_ref_expression] = STATE(3006), - [sym_reftype_expression] = STATE(3006), - [sym_refvalue_expression] = STATE(3006), - [sym_stackalloc_expression] = STATE(3006), - [sym_range_expression] = STATE(3006), - [sym_tuple_expression] = STATE(2423), - [sym_literal] = STATE(3006), - [sym_character_literal] = STATE(3011), - [sym_string_literal] = STATE(3011), - [sym_raw_string_literal] = STATE(3011), - [sym_boolean_literal] = STATE(3011), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3006), - [sym_preproc_if_in_attribute_list] = STATE(5576), - [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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3440), + [1830] = { + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2416), + [sym__name] = STATE(5890), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2193), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(5283), + [sym_non_lvalue_expression] = STATE(3040), + [sym_lvalue_expression] = STATE(3631), + [sym__expression_statement_expression] = STATE(3035), + [sym_assignment_expression] = STATE(3043), + [sym_binary_expression] = STATE(3035), + [sym_postfix_unary_expression] = STATE(3043), + [sym_prefix_unary_expression] = STATE(3043), + [sym__pointer_indirection_expression] = STATE(2415), + [sym_query_expression] = STATE(3035), + [sym_from_clause] = STATE(6164), + [sym_conditional_expression] = STATE(3035), + [sym_conditional_access_expression] = STATE(3035), + [sym_as_expression] = STATE(3035), + [sym_is_expression] = STATE(3035), + [sym_is_pattern_expression] = STATE(3035), + [sym_cast_expression] = STATE(3035), + [sym_checked_expression] = STATE(3035), + [sym_invocation_expression] = STATE(3043), + [sym_switch_expression] = STATE(3035), + [sym_await_expression] = STATE(3043), + [sym_throw_expression] = STATE(3035), + [sym_element_access_expression] = STATE(2415), + [sym_interpolated_string_expression] = STATE(3035), + [sym_member_access_expression] = STATE(2415), + [sym_object_creation_expression] = STATE(3043), + [sym_parenthesized_expression] = STATE(3043), + [sym__parenthesized_lvalue_expression] = STATE(2415), + [sym_lambda_expression] = STATE(3035), + [sym__lambda_expression_init] = STATE(7458), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3035), + [sym_anonymous_method_expression] = STATE(3035), + [sym_anonymous_object_creation_expression] = STATE(3035), + [sym_implicit_array_creation_expression] = STATE(3035), + [sym_implicit_object_creation_expression] = STATE(3035), + [sym_implicit_stackalloc_expression] = STATE(3035), + [sym_initializer_expression] = STATE(3035), + [sym_default_expression] = STATE(3035), + [sym_with_expression] = STATE(3035), + [sym_sizeof_expression] = STATE(3035), + [sym_typeof_expression] = STATE(3035), + [sym_makeref_expression] = STATE(3035), + [sym_ref_expression] = STATE(3035), + [sym_reftype_expression] = STATE(3035), + [sym_refvalue_expression] = STATE(3035), + [sym_stackalloc_expression] = STATE(3035), + [sym_range_expression] = STATE(3035), + [sym_tuple_expression] = STATE(2415), + [sym_literal] = STATE(3035), + [sym_character_literal] = STATE(3037), + [sym_string_literal] = STATE(3037), + [sym_raw_string_literal] = STATE(3037), + [sym_boolean_literal] = STATE(3037), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3035), + [sym_preproc_if_in_attribute_list] = STATE(5583), + [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(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3455), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1241), - [anon_sym_LPAREN] = ACTIONS(2195), - [anon_sym_ref] = ACTIONS(2197), - [anon_sym_LBRACE] = ACTIONS(1247), - [anon_sym_delegate] = ACTIONS(1249), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1239), + [anon_sym_LPAREN] = ACTIONS(2101), + [anon_sym_ref] = ACTIONS(2103), + [anon_sym_LBRACE] = ACTIONS(1245), + [anon_sym_delegate] = ACTIONS(1247), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1845), + [anon_sym_new] = ACTIONS(1249), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1253), - [anon_sym_BANG] = ACTIONS(2201), - [anon_sym_TILDE] = ACTIONS(2201), - [anon_sym_PLUS_PLUS] = ACTIONS(2201), - [anon_sym_DASH_DASH] = ACTIONS(2201), - [anon_sym_true] = ACTIONS(1259), - [anon_sym_false] = ACTIONS(1259), - [anon_sym_PLUS] = ACTIONS(2199), - [anon_sym_DASH] = ACTIONS(2199), - [anon_sym_STAR] = ACTIONS(1851), - [anon_sym_CARET] = ACTIONS(2201), - [anon_sym_AMP] = ACTIONS(2201), - [anon_sym_this] = ACTIONS(1263), + [anon_sym_checked] = ACTIONS(1251), + [anon_sym_BANG] = ACTIONS(2107), + [anon_sym_TILDE] = ACTIONS(2107), + [anon_sym_PLUS_PLUS] = ACTIONS(2107), + [anon_sym_DASH_DASH] = ACTIONS(2107), + [anon_sym_true] = ACTIONS(1257), + [anon_sym_false] = ACTIONS(1257), + [anon_sym_PLUS] = ACTIONS(2105), + [anon_sym_DASH] = ACTIONS(2105), + [anon_sym_STAR] = ACTIONS(1259), + [anon_sym_CARET] = ACTIONS(2107), + [anon_sym_AMP] = ACTIONS(2107), + [anon_sym_this] = ACTIONS(1261), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1265), + [anon_sym_base] = ACTIONS(1263), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1267), - [anon_sym_unchecked] = ACTIONS(1253), + [sym_predefined_type] = ACTIONS(1265), + [anon_sym_unchecked] = ACTIONS(1251), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1269), - [anon_sym_throw] = ACTIONS(2203), + [anon_sym_default] = ACTIONS(1267), + [anon_sym_throw] = ACTIONS(2109), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2205), - [anon_sym_DOT_DOT] = ACTIONS(2207), + [anon_sym_await] = ACTIONS(2111), + [anon_sym_DOT_DOT] = ACTIONS(2113), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -346450,19 +351068,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1277), - [anon_sym_sizeof] = ACTIONS(1279), - [anon_sym_typeof] = ACTIONS(1281), - [anon_sym___makeref] = ACTIONS(1283), - [anon_sym___reftype] = ACTIONS(1285), - [anon_sym___refvalue] = ACTIONS(1287), - [sym_null_literal] = ACTIONS(1289), - [anon_sym_SQUOTE] = ACTIONS(1291), - [sym_integer_literal] = ACTIONS(1289), - [sym_real_literal] = ACTIONS(1293), - [anon_sym_DQUOTE] = ACTIONS(1295), - [sym_verbatim_string_literal] = ACTIONS(1293), - [aux_sym_preproc_if_token1] = ACTIONS(1297), + [anon_sym_stackalloc] = ACTIONS(1275), + [anon_sym_sizeof] = ACTIONS(1277), + [anon_sym_typeof] = ACTIONS(1279), + [anon_sym___makeref] = ACTIONS(1281), + [anon_sym___reftype] = ACTIONS(1283), + [anon_sym___refvalue] = ACTIONS(1285), + [sym_null_literal] = ACTIONS(1287), + [anon_sym_SQUOTE] = ACTIONS(1289), + [sym_integer_literal] = ACTIONS(1287), + [sym_real_literal] = ACTIONS(1291), + [anon_sym_DQUOTE] = ACTIONS(1293), + [sym_verbatim_string_literal] = ACTIONS(1291), + [aux_sym_preproc_if_token1] = ACTIONS(2115), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -346473,309 +351091,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(1299), - [sym_interpolation_verbatim_start] = ACTIONS(1301), - [sym_interpolation_raw_start] = ACTIONS(1303), - [sym_raw_string_start] = ACTIONS(1305), - }, - [1803] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(3184), - [sym__name] = STATE(5906), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2312), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2269), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(4262), - [sym_non_lvalue_expression] = STATE(4541), - [sym_lvalue_expression] = STATE(3165), - [sym__expression_statement_expression] = STATE(4529), - [sym_assignment_expression] = STATE(4543), - [sym_binary_expression] = STATE(4529), - [sym_postfix_unary_expression] = STATE(4543), - [sym_prefix_unary_expression] = STATE(4543), - [sym__pointer_indirection_expression] = STATE(3175), - [sym_query_expression] = STATE(4529), - [sym_from_clause] = STATE(6156), - [sym_conditional_expression] = STATE(4529), - [sym_conditional_access_expression] = STATE(4529), - [sym_as_expression] = STATE(4529), - [sym_is_expression] = STATE(4529), - [sym_is_pattern_expression] = STATE(4529), - [sym_cast_expression] = STATE(4529), - [sym_checked_expression] = STATE(4529), - [sym_invocation_expression] = STATE(4543), - [sym_switch_expression] = STATE(4529), - [sym_await_expression] = STATE(4543), - [sym_throw_expression] = STATE(4529), - [sym_element_access_expression] = STATE(3175), - [sym_interpolated_string_expression] = STATE(4529), - [sym_member_access_expression] = STATE(3175), - [sym_object_creation_expression] = STATE(4543), - [sym_parenthesized_expression] = STATE(4543), - [sym__parenthesized_lvalue_expression] = STATE(3175), - [sym_lambda_expression] = STATE(4529), - [sym__lambda_expression_init] = STATE(7341), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(4529), - [sym_anonymous_method_expression] = STATE(4529), - [sym_anonymous_object_creation_expression] = STATE(4529), - [sym_implicit_array_creation_expression] = STATE(4529), - [sym_implicit_object_creation_expression] = STATE(4529), - [sym_implicit_stackalloc_expression] = STATE(4529), - [sym_initializer_expression] = STATE(4529), - [sym_default_expression] = STATE(4529), - [sym_with_expression] = STATE(4529), - [sym_sizeof_expression] = STATE(4529), - [sym_typeof_expression] = STATE(4529), - [sym_makeref_expression] = STATE(4529), - [sym_ref_expression] = STATE(4529), - [sym_reftype_expression] = STATE(4529), - [sym_refvalue_expression] = STATE(4529), - [sym_stackalloc_expression] = STATE(4529), - [sym_range_expression] = STATE(4529), - [sym_tuple_expression] = STATE(3175), - [sym_literal] = STATE(4529), - [sym_character_literal] = STATE(4536), - [sym_string_literal] = STATE(4536), - [sym_raw_string_literal] = STATE(4536), - [sym_boolean_literal] = STATE(4536), - [sym_identifier] = STATE(2246), - [sym__reserved_identifier] = STATE(2240), - [sym_preproc_if_in_expression] = STATE(4529), - [sym_preproc_if_in_attribute_list] = STATE(5576), - [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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3363), - [sym__identifier_token] = ACTIONS(1387), - [anon_sym_alias] = ACTIONS(1389), - [anon_sym_global] = ACTIONS(1389), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1391), - [anon_sym_LPAREN] = ACTIONS(1393), - [anon_sym_ref] = ACTIONS(1395), - [anon_sym_LBRACE] = ACTIONS(1397), - [anon_sym_delegate] = ACTIONS(1399), - [anon_sym_async] = ACTIONS(1047), - [anon_sym_file] = ACTIONS(1389), - [anon_sym_new] = ACTIONS(1401), - [anon_sym_where] = ACTIONS(1389), - [anon_sym_notnull] = ACTIONS(1389), - [anon_sym_unmanaged] = ACTIONS(1389), - [anon_sym_checked] = ACTIONS(1403), - [anon_sym_BANG] = ACTIONS(1407), - [anon_sym_TILDE] = ACTIONS(1407), - [anon_sym_PLUS_PLUS] = ACTIONS(1407), - [anon_sym_DASH_DASH] = ACTIONS(1407), - [anon_sym_true] = ACTIONS(1409), - [anon_sym_false] = ACTIONS(1409), - [anon_sym_PLUS] = ACTIONS(1405), - [anon_sym_DASH] = ACTIONS(1405), - [anon_sym_STAR] = ACTIONS(1411), - [anon_sym_CARET] = ACTIONS(1407), - [anon_sym_AMP] = ACTIONS(1407), - [anon_sym_this] = ACTIONS(1413), - [anon_sym_scoped] = ACTIONS(1415), - [anon_sym_base] = ACTIONS(1417), - [anon_sym_var] = ACTIONS(1419), - [sym_predefined_type] = ACTIONS(1421), - [anon_sym_unchecked] = ACTIONS(1403), - [anon_sym_yield] = ACTIONS(1389), - [anon_sym_default] = ACTIONS(1423), - [anon_sym_throw] = ACTIONS(1425), - [anon_sym_when] = ACTIONS(1389), - [anon_sym_await] = ACTIONS(1427), - [anon_sym_DOT_DOT] = ACTIONS(1429), - [anon_sym_from] = ACTIONS(1431), - [anon_sym_into] = ACTIONS(1389), - [anon_sym_join] = ACTIONS(1389), - [anon_sym_on] = ACTIONS(1389), - [anon_sym_equals] = ACTIONS(1389), - [anon_sym_let] = ACTIONS(1389), - [anon_sym_orderby] = ACTIONS(1389), - [anon_sym_ascending] = ACTIONS(1389), - [anon_sym_descending] = ACTIONS(1389), - [anon_sym_group] = ACTIONS(1389), - [anon_sym_by] = ACTIONS(1389), - [anon_sym_select] = ACTIONS(1389), - [anon_sym_stackalloc] = ACTIONS(1433), - [anon_sym_sizeof] = ACTIONS(1435), - [anon_sym_typeof] = ACTIONS(1437), - [anon_sym___makeref] = ACTIONS(1439), - [anon_sym___reftype] = ACTIONS(1441), - [anon_sym___refvalue] = ACTIONS(1443), - [sym_null_literal] = ACTIONS(1445), - [anon_sym_SQUOTE] = ACTIONS(1447), - [sym_integer_literal] = ACTIONS(1445), - [sym_real_literal] = ACTIONS(1449), - [anon_sym_DQUOTE] = ACTIONS(1451), - [sym_verbatim_string_literal] = ACTIONS(1449), - [aux_sym_preproc_if_token1] = ACTIONS(1453), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1455), - [sym_interpolation_verbatim_start] = ACTIONS(1457), - [sym_interpolation_raw_start] = ACTIONS(1459), - [sym_raw_string_start] = ACTIONS(1461), + [sym_interpolation_regular_start] = ACTIONS(1297), + [sym_interpolation_verbatim_start] = ACTIONS(1299), + [sym_interpolation_raw_start] = ACTIONS(1301), + [sym_raw_string_start] = ACTIONS(1303), }, - [1804] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(5910), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2247), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(3519), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3379), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3080), - [sym_postfix_unary_expression] = STATE(3111), - [sym_prefix_unary_expression] = STATE(3111), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6154), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3080), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3111), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3080), - [sym_member_access_expression] = STATE(2484), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3111), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7575), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(3080), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3080), - [sym_typeof_expression] = STATE(3080), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2484), - [sym_literal] = STATE(3080), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), - [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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [1831] = { + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2416), + [sym__name] = STATE(5890), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2193), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(5284), + [sym_non_lvalue_expression] = STATE(3040), + [sym_lvalue_expression] = STATE(3631), + [sym__expression_statement_expression] = STATE(3035), + [sym_assignment_expression] = STATE(3043), + [sym_binary_expression] = STATE(3035), + [sym_postfix_unary_expression] = STATE(3043), + [sym_prefix_unary_expression] = STATE(3043), + [sym__pointer_indirection_expression] = STATE(2415), + [sym_query_expression] = STATE(3035), + [sym_from_clause] = STATE(6164), + [sym_conditional_expression] = STATE(3035), + [sym_conditional_access_expression] = STATE(3035), + [sym_as_expression] = STATE(3035), + [sym_is_expression] = STATE(3035), + [sym_is_pattern_expression] = STATE(3035), + [sym_cast_expression] = STATE(3035), + [sym_checked_expression] = STATE(3035), + [sym_invocation_expression] = STATE(3043), + [sym_switch_expression] = STATE(3035), + [sym_await_expression] = STATE(3043), + [sym_throw_expression] = STATE(3035), + [sym_element_access_expression] = STATE(2415), + [sym_interpolated_string_expression] = STATE(3035), + [sym_member_access_expression] = STATE(2415), + [sym_object_creation_expression] = STATE(3043), + [sym_parenthesized_expression] = STATE(3043), + [sym__parenthesized_lvalue_expression] = STATE(2415), + [sym_lambda_expression] = STATE(3035), + [sym__lambda_expression_init] = STATE(7458), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3035), + [sym_anonymous_method_expression] = STATE(3035), + [sym_anonymous_object_creation_expression] = STATE(3035), + [sym_implicit_array_creation_expression] = STATE(3035), + [sym_implicit_object_creation_expression] = STATE(3035), + [sym_implicit_stackalloc_expression] = STATE(3035), + [sym_initializer_expression] = STATE(3035), + [sym_default_expression] = STATE(3035), + [sym_with_expression] = STATE(3035), + [sym_sizeof_expression] = STATE(3035), + [sym_typeof_expression] = STATE(3035), + [sym_makeref_expression] = STATE(3035), + [sym_ref_expression] = STATE(3035), + [sym_reftype_expression] = STATE(3035), + [sym_refvalue_expression] = STATE(3035), + [sym_stackalloc_expression] = STATE(3035), + [sym_range_expression] = STATE(3035), + [sym_tuple_expression] = STATE(2415), + [sym_literal] = STATE(3035), + [sym_character_literal] = STATE(3037), + [sym_string_literal] = STATE(3037), + [sym_raw_string_literal] = STATE(3037), + [sym_boolean_literal] = STATE(3037), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3035), + [sym_preproc_if_in_attribute_list] = STATE(5583), + [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(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3455), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1481), - [anon_sym_LPAREN] = ACTIONS(895), - [anon_sym_ref] = ACTIONS(897), - [anon_sym_LBRACE] = ACTIONS(1487), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1239), + [anon_sym_LPAREN] = ACTIONS(2101), + [anon_sym_ref] = ACTIONS(2103), + [anon_sym_LBRACE] = ACTIONS(1245), + [anon_sym_delegate] = ACTIONS(1247), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1061), + [anon_sym_new] = ACTIONS(1249), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1067), - [anon_sym_BANG] = ACTIONS(1495), - [anon_sym_TILDE] = ACTIONS(1495), - [anon_sym_PLUS_PLUS] = ACTIONS(1495), - [anon_sym_DASH_DASH] = ACTIONS(1495), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1493), - [anon_sym_DASH] = ACTIONS(1493), - [anon_sym_STAR] = ACTIONS(905), - [anon_sym_CARET] = ACTIONS(1495), - [anon_sym_AMP] = ACTIONS(1495), - [anon_sym_this] = ACTIONS(83), + [anon_sym_checked] = ACTIONS(1251), + [anon_sym_BANG] = ACTIONS(2107), + [anon_sym_TILDE] = ACTIONS(2107), + [anon_sym_PLUS_PLUS] = ACTIONS(2107), + [anon_sym_DASH_DASH] = ACTIONS(2107), + [anon_sym_true] = ACTIONS(1257), + [anon_sym_false] = ACTIONS(1257), + [anon_sym_PLUS] = ACTIONS(2105), + [anon_sym_DASH] = ACTIONS(2105), + [anon_sym_STAR] = ACTIONS(1259), + [anon_sym_CARET] = ACTIONS(2107), + [anon_sym_AMP] = ACTIONS(2107), + [anon_sym_this] = ACTIONS(1261), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), + [anon_sym_base] = ACTIONS(1263), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1067), + [sym_predefined_type] = ACTIONS(1265), + [anon_sym_unchecked] = ACTIONS(1251), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1079), + [anon_sym_default] = ACTIONS(1267), + [anon_sym_throw] = ACTIONS(2109), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1081), - [anon_sym_DOT_DOT] = ACTIONS(911), + [anon_sym_await] = ACTIONS(2111), + [anon_sym_DOT_DOT] = ACTIONS(2113), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -346788,19 +351237,19 @@ static const uint16_t ts_parse_table[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(1089), + [anon_sym_stackalloc] = ACTIONS(1275), + [anon_sym_sizeof] = ACTIONS(1277), + [anon_sym_typeof] = ACTIONS(1279), + [anon_sym___makeref] = ACTIONS(1281), + [anon_sym___reftype] = ACTIONS(1283), + [anon_sym___refvalue] = ACTIONS(1285), + [sym_null_literal] = ACTIONS(1287), + [anon_sym_SQUOTE] = ACTIONS(1289), + [sym_integer_literal] = ACTIONS(1287), + [sym_real_literal] = ACTIONS(1291), + [anon_sym_DQUOTE] = ACTIONS(1293), + [sym_verbatim_string_literal] = ACTIONS(1291), + [aux_sym_preproc_if_token1] = ACTIONS(2115), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -346811,140 +351260,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(1297), + [sym_interpolation_verbatim_start] = ACTIONS(1299), + [sym_interpolation_raw_start] = ACTIONS(1301), + [sym_raw_string_start] = ACTIONS(1303), }, - [1805] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(5910), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2247), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(5659), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3379), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3080), - [sym_postfix_unary_expression] = STATE(3111), - [sym_prefix_unary_expression] = STATE(3111), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6154), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3080), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3111), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3080), - [sym_member_access_expression] = STATE(2484), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3111), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7575), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(3080), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3080), - [sym_typeof_expression] = STATE(3080), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2484), - [sym_literal] = STATE(3080), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), - [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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [1832] = { + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2416), + [sym__name] = STATE(5890), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2193), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(2904), + [sym_non_lvalue_expression] = STATE(3040), + [sym_lvalue_expression] = STATE(3631), + [sym__expression_statement_expression] = STATE(3035), + [sym_assignment_expression] = STATE(3043), + [sym_binary_expression] = STATE(3035), + [sym_postfix_unary_expression] = STATE(3043), + [sym_prefix_unary_expression] = STATE(3043), + [sym__pointer_indirection_expression] = STATE(2415), + [sym_query_expression] = STATE(3035), + [sym_from_clause] = STATE(6164), + [sym_conditional_expression] = STATE(3035), + [sym_conditional_access_expression] = STATE(3035), + [sym_as_expression] = STATE(3035), + [sym_is_expression] = STATE(3035), + [sym_is_pattern_expression] = STATE(3035), + [sym_cast_expression] = STATE(3035), + [sym_checked_expression] = STATE(3035), + [sym_invocation_expression] = STATE(3043), + [sym_switch_expression] = STATE(3035), + [sym_await_expression] = STATE(3043), + [sym_throw_expression] = STATE(3035), + [sym_element_access_expression] = STATE(2415), + [sym_interpolated_string_expression] = STATE(3035), + [sym_member_access_expression] = STATE(2415), + [sym_object_creation_expression] = STATE(3043), + [sym_parenthesized_expression] = STATE(3043), + [sym__parenthesized_lvalue_expression] = STATE(2415), + [sym_lambda_expression] = STATE(3035), + [sym__lambda_expression_init] = STATE(7458), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3035), + [sym_anonymous_method_expression] = STATE(3035), + [sym_anonymous_object_creation_expression] = STATE(3035), + [sym_implicit_array_creation_expression] = STATE(3035), + [sym_implicit_object_creation_expression] = STATE(3035), + [sym_implicit_stackalloc_expression] = STATE(3035), + [sym_initializer_expression] = STATE(3035), + [sym_default_expression] = STATE(3035), + [sym_with_expression] = STATE(3035), + [sym_sizeof_expression] = STATE(3035), + [sym_typeof_expression] = STATE(3035), + [sym_makeref_expression] = STATE(3035), + [sym_ref_expression] = STATE(3035), + [sym_reftype_expression] = STATE(3035), + [sym_refvalue_expression] = STATE(3035), + [sym_stackalloc_expression] = STATE(3035), + [sym_range_expression] = STATE(3035), + [sym_tuple_expression] = STATE(2415), + [sym_literal] = STATE(3035), + [sym_character_literal] = STATE(3037), + [sym_string_literal] = STATE(3037), + [sym_raw_string_literal] = STATE(3037), + [sym_boolean_literal] = STATE(3037), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3035), + [sym_preproc_if_in_attribute_list] = STATE(5583), + [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(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3455), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1481), - [anon_sym_LPAREN] = ACTIONS(895), - [anon_sym_ref] = ACTIONS(897), - [anon_sym_LBRACE] = ACTIONS(1487), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1239), + [anon_sym_LPAREN] = ACTIONS(2101), + [anon_sym_ref] = ACTIONS(2103), + [anon_sym_LBRACE] = ACTIONS(1245), + [anon_sym_delegate] = ACTIONS(1247), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1061), + [anon_sym_new] = ACTIONS(1249), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1067), - [anon_sym_BANG] = ACTIONS(1495), - [anon_sym_TILDE] = ACTIONS(1495), - [anon_sym_PLUS_PLUS] = ACTIONS(1495), - [anon_sym_DASH_DASH] = ACTIONS(1495), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1493), - [anon_sym_DASH] = ACTIONS(1493), - [anon_sym_STAR] = ACTIONS(905), - [anon_sym_CARET] = ACTIONS(1495), - [anon_sym_AMP] = ACTIONS(1495), - [anon_sym_this] = ACTIONS(83), + [anon_sym_checked] = ACTIONS(1251), + [anon_sym_BANG] = ACTIONS(2107), + [anon_sym_TILDE] = ACTIONS(2107), + [anon_sym_PLUS_PLUS] = ACTIONS(2107), + [anon_sym_DASH_DASH] = ACTIONS(2107), + [anon_sym_true] = ACTIONS(1257), + [anon_sym_false] = ACTIONS(1257), + [anon_sym_PLUS] = ACTIONS(2105), + [anon_sym_DASH] = ACTIONS(2105), + [anon_sym_STAR] = ACTIONS(1259), + [anon_sym_CARET] = ACTIONS(2107), + [anon_sym_AMP] = ACTIONS(2107), + [anon_sym_this] = ACTIONS(1261), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), + [anon_sym_base] = ACTIONS(1263), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1067), + [sym_predefined_type] = ACTIONS(1265), + [anon_sym_unchecked] = ACTIONS(1251), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1079), + [anon_sym_default] = ACTIONS(1267), + [anon_sym_throw] = ACTIONS(2109), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1081), - [anon_sym_DOT_DOT] = ACTIONS(911), + [anon_sym_await] = ACTIONS(2111), + [anon_sym_DOT_DOT] = ACTIONS(2113), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -346957,19 +351406,19 @@ static const uint16_t ts_parse_table[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(1089), + [anon_sym_stackalloc] = ACTIONS(1275), + [anon_sym_sizeof] = ACTIONS(1277), + [anon_sym_typeof] = ACTIONS(1279), + [anon_sym___makeref] = ACTIONS(1281), + [anon_sym___reftype] = ACTIONS(1283), + [anon_sym___refvalue] = ACTIONS(1285), + [sym_null_literal] = ACTIONS(1287), + [anon_sym_SQUOTE] = ACTIONS(1289), + [sym_integer_literal] = ACTIONS(1287), + [sym_real_literal] = ACTIONS(1291), + [anon_sym_DQUOTE] = ACTIONS(1293), + [sym_verbatim_string_literal] = ACTIONS(1291), + [aux_sym_preproc_if_token1] = ACTIONS(2115), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -346980,140 +351429,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(1297), + [sym_interpolation_verbatim_start] = ACTIONS(1299), + [sym_interpolation_raw_start] = ACTIONS(1301), + [sym_raw_string_start] = ACTIONS(1303), }, - [1806] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(5907), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2404), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(4244), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3140), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3080), - [sym_postfix_unary_expression] = STATE(3111), - [sym_prefix_unary_expression] = STATE(3111), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6183), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3080), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3111), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3080), - [sym_member_access_expression] = STATE(2484), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3111), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7703), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(3080), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3080), - [sym_typeof_expression] = STATE(3080), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2484), - [sym_literal] = STATE(3080), - [sym_character_literal] = STATE(3011), - [sym_string_literal] = STATE(3011), - [sym_raw_string_literal] = STATE(3011), - [sym_boolean_literal] = STATE(3011), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), - [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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [1833] = { + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2603), + [sym__name] = STATE(5862), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2193), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(4773), + [sym_non_lvalue_expression] = STATE(3220), + [sym_lvalue_expression] = STATE(3502), + [sym__expression_statement_expression] = STATE(3236), + [sym_assignment_expression] = STATE(3221), + [sym_binary_expression] = STATE(3236), + [sym_postfix_unary_expression] = STATE(3221), + [sym_prefix_unary_expression] = STATE(3221), + [sym__pointer_indirection_expression] = STATE(2602), + [sym_query_expression] = STATE(3236), + [sym_from_clause] = STATE(6136), + [sym_conditional_expression] = STATE(3236), + [sym_conditional_access_expression] = STATE(3236), + [sym_as_expression] = STATE(3236), + [sym_is_expression] = STATE(3236), + [sym_is_pattern_expression] = STATE(3236), + [sym_cast_expression] = STATE(3236), + [sym_checked_expression] = STATE(3236), + [sym_invocation_expression] = STATE(3221), + [sym_switch_expression] = STATE(3236), + [sym_await_expression] = STATE(3221), + [sym_throw_expression] = STATE(3236), + [sym_element_access_expression] = STATE(2602), + [sym_interpolated_string_expression] = STATE(3236), + [sym_member_access_expression] = STATE(2602), + [sym_object_creation_expression] = STATE(3221), + [sym_parenthesized_expression] = STATE(3221), + [sym__parenthesized_lvalue_expression] = STATE(2602), + [sym_lambda_expression] = STATE(3236), + [sym__lambda_expression_init] = STATE(7475), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3236), + [sym_anonymous_method_expression] = STATE(3236), + [sym_anonymous_object_creation_expression] = STATE(3236), + [sym_implicit_array_creation_expression] = STATE(3236), + [sym_implicit_object_creation_expression] = STATE(3236), + [sym_implicit_stackalloc_expression] = STATE(3236), + [sym_initializer_expression] = STATE(3236), + [sym_default_expression] = STATE(3236), + [sym_with_expression] = STATE(3236), + [sym_sizeof_expression] = STATE(3236), + [sym_typeof_expression] = STATE(3236), + [sym_makeref_expression] = STATE(3236), + [sym_ref_expression] = STATE(3236), + [sym_reftype_expression] = STATE(3236), + [sym_refvalue_expression] = STATE(3236), + [sym_stackalloc_expression] = STATE(3236), + [sym_range_expression] = STATE(3236), + [sym_tuple_expression] = STATE(2602), + [sym_literal] = STATE(3236), + [sym_character_literal] = STATE(3272), + [sym_string_literal] = STATE(3272), + [sym_raw_string_literal] = STATE(3272), + [sym_boolean_literal] = STATE(3272), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3236), + [sym_preproc_if_in_attribute_list] = STATE(5583), + [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(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3379), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1481), - [anon_sym_LPAREN] = ACTIONS(2251), - [anon_sym_ref] = ACTIONS(2253), - [anon_sym_LBRACE] = ACTIONS(1487), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1149), + [anon_sym_LPAREN] = ACTIONS(1787), + [anon_sym_ref] = ACTIONS(1789), + [anon_sym_LBRACE] = ACTIONS(1155), + [anon_sym_delegate] = ACTIONS(1157), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1937), + [anon_sym_new] = ACTIONS(1159), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1067), - [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(1259), - [anon_sym_false] = ACTIONS(1259), - [anon_sym_PLUS] = ACTIONS(2255), - [anon_sym_DASH] = ACTIONS(2255), - [anon_sym_STAR] = ACTIONS(1943), - [anon_sym_CARET] = ACTIONS(2257), - [anon_sym_AMP] = ACTIONS(2257), - [anon_sym_this] = ACTIONS(83), + [anon_sym_checked] = ACTIONS(1163), + [anon_sym_BANG] = ACTIONS(1793), + [anon_sym_TILDE] = ACTIONS(1793), + [anon_sym_PLUS_PLUS] = ACTIONS(1793), + [anon_sym_DASH_DASH] = ACTIONS(1793), + [anon_sym_true] = ACTIONS(1169), + [anon_sym_false] = ACTIONS(1169), + [anon_sym_PLUS] = ACTIONS(1791), + [anon_sym_DASH] = ACTIONS(1791), + [anon_sym_STAR] = ACTIONS(1171), + [anon_sym_CARET] = ACTIONS(1793), + [anon_sym_AMP] = ACTIONS(1793), + [anon_sym_this] = ACTIONS(1173), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), + [anon_sym_base] = ACTIONS(1175), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1267), - [anon_sym_unchecked] = ACTIONS(1067), + [sym_predefined_type] = ACTIONS(1177), + [anon_sym_unchecked] = ACTIONS(1163), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1269), - [anon_sym_throw] = ACTIONS(2259), + [anon_sym_default] = ACTIONS(1179), + [anon_sym_throw] = ACTIONS(1795), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2261), - [anon_sym_DOT_DOT] = ACTIONS(2263), + [anon_sym_await] = ACTIONS(1797), + [anon_sym_DOT_DOT] = ACTIONS(1799), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -347126,19 +351575,19 @@ static const uint16_t ts_parse_table[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(1279), - [anon_sym_typeof] = ACTIONS(1281), - [anon_sym___makeref] = ACTIONS(133), - [anon_sym___reftype] = ACTIONS(135), - [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(1289), - [anon_sym_SQUOTE] = ACTIONS(1291), - [sym_integer_literal] = ACTIONS(1289), - [sym_real_literal] = ACTIONS(1293), - [anon_sym_DQUOTE] = ACTIONS(1295), - [sym_verbatim_string_literal] = ACTIONS(1293), - [aux_sym_preproc_if_token1] = ACTIONS(1089), + [anon_sym_stackalloc] = ACTIONS(1187), + [anon_sym_sizeof] = ACTIONS(1189), + [anon_sym_typeof] = ACTIONS(1191), + [anon_sym___makeref] = ACTIONS(1193), + [anon_sym___reftype] = ACTIONS(1195), + [anon_sym___refvalue] = ACTIONS(1197), + [sym_null_literal] = ACTIONS(1199), + [anon_sym_SQUOTE] = ACTIONS(1201), + [sym_integer_literal] = ACTIONS(1199), + [sym_real_literal] = ACTIONS(1203), + [anon_sym_DQUOTE] = ACTIONS(1205), + [sym_verbatim_string_literal] = ACTIONS(1203), + [aux_sym_preproc_if_token1] = ACTIONS(1801), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -347149,140 +351598,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(1299), - [sym_interpolation_verbatim_start] = ACTIONS(1301), - [sym_interpolation_raw_start] = ACTIONS(1303), - [sym_raw_string_start] = ACTIONS(1305), + [sym_interpolation_regular_start] = ACTIONS(1209), + [sym_interpolation_verbatim_start] = ACTIONS(1211), + [sym_interpolation_raw_start] = ACTIONS(1213), + [sym_raw_string_start] = ACTIONS(1215), }, - [1807] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2762), - [sym__name] = STATE(5892), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2316), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(4667), - [sym_non_lvalue_expression] = STATE(3438), - [sym_lvalue_expression] = STATE(3500), - [sym__expression_statement_expression] = STATE(3362), - [sym_assignment_expression] = STATE(3449), - [sym_binary_expression] = STATE(3362), - [sym_postfix_unary_expression] = STATE(3449), - [sym_prefix_unary_expression] = STATE(3449), - [sym__pointer_indirection_expression] = STATE(2747), - [sym_query_expression] = STATE(3362), - [sym_from_clause] = STATE(6147), - [sym_conditional_expression] = STATE(3362), - [sym_conditional_access_expression] = STATE(3362), - [sym_as_expression] = STATE(3362), - [sym_is_expression] = STATE(3362), - [sym_is_pattern_expression] = STATE(3362), - [sym_cast_expression] = STATE(3362), - [sym_checked_expression] = STATE(3362), - [sym_invocation_expression] = STATE(3449), - [sym_switch_expression] = STATE(3362), - [sym_await_expression] = STATE(3449), - [sym_throw_expression] = STATE(3362), - [sym_element_access_expression] = STATE(2747), - [sym_interpolated_string_expression] = STATE(3362), - [sym_member_access_expression] = STATE(2747), - [sym_object_creation_expression] = STATE(3449), - [sym_parenthesized_expression] = STATE(3449), - [sym__parenthesized_lvalue_expression] = STATE(2747), - [sym_lambda_expression] = STATE(3362), - [sym__lambda_expression_init] = STATE(7516), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3362), - [sym_anonymous_method_expression] = STATE(3362), - [sym_anonymous_object_creation_expression] = STATE(3362), - [sym_implicit_array_creation_expression] = STATE(3362), - [sym_implicit_object_creation_expression] = STATE(3362), - [sym_implicit_stackalloc_expression] = STATE(3362), - [sym_initializer_expression] = STATE(3362), - [sym_default_expression] = STATE(3362), - [sym_with_expression] = STATE(3362), - [sym_sizeof_expression] = STATE(3362), - [sym_typeof_expression] = STATE(3362), - [sym_makeref_expression] = STATE(3362), - [sym_ref_expression] = STATE(3362), - [sym_reftype_expression] = STATE(3362), - [sym_refvalue_expression] = STATE(3362), - [sym_stackalloc_expression] = STATE(3362), - [sym_range_expression] = STATE(3362), - [sym_tuple_expression] = STATE(2747), - [sym_literal] = STATE(3362), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2267), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3362), - [sym_preproc_if_in_attribute_list] = STATE(5576), - [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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3385), + [1834] = { + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2603), + [sym__name] = STATE(5862), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2193), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(3123), + [sym_non_lvalue_expression] = STATE(3220), + [sym_lvalue_expression] = STATE(3502), + [sym__expression_statement_expression] = STATE(3236), + [sym_assignment_expression] = STATE(3221), + [sym_binary_expression] = STATE(3236), + [sym_postfix_unary_expression] = STATE(3221), + [sym_prefix_unary_expression] = STATE(3221), + [sym__pointer_indirection_expression] = STATE(2602), + [sym_query_expression] = STATE(3236), + [sym_from_clause] = STATE(6136), + [sym_conditional_expression] = STATE(3236), + [sym_conditional_access_expression] = STATE(3236), + [sym_as_expression] = STATE(3236), + [sym_is_expression] = STATE(3236), + [sym_is_pattern_expression] = STATE(3236), + [sym_cast_expression] = STATE(3236), + [sym_checked_expression] = STATE(3236), + [sym_invocation_expression] = STATE(3221), + [sym_switch_expression] = STATE(3236), + [sym_await_expression] = STATE(3221), + [sym_throw_expression] = STATE(3236), + [sym_element_access_expression] = STATE(2602), + [sym_interpolated_string_expression] = STATE(3236), + [sym_member_access_expression] = STATE(2602), + [sym_object_creation_expression] = STATE(3221), + [sym_parenthesized_expression] = STATE(3221), + [sym__parenthesized_lvalue_expression] = STATE(2602), + [sym_lambda_expression] = STATE(3236), + [sym__lambda_expression_init] = STATE(7475), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3236), + [sym_anonymous_method_expression] = STATE(3236), + [sym_anonymous_object_creation_expression] = STATE(3236), + [sym_implicit_array_creation_expression] = STATE(3236), + [sym_implicit_object_creation_expression] = STATE(3236), + [sym_implicit_stackalloc_expression] = STATE(3236), + [sym_initializer_expression] = STATE(3236), + [sym_default_expression] = STATE(3236), + [sym_with_expression] = STATE(3236), + [sym_sizeof_expression] = STATE(3236), + [sym_typeof_expression] = STATE(3236), + [sym_makeref_expression] = STATE(3236), + [sym_ref_expression] = STATE(3236), + [sym_reftype_expression] = STATE(3236), + [sym_refvalue_expression] = STATE(3236), + [sym_stackalloc_expression] = STATE(3236), + [sym_range_expression] = STATE(3236), + [sym_tuple_expression] = STATE(2602), + [sym_literal] = STATE(3236), + [sym_character_literal] = STATE(3272), + [sym_string_literal] = STATE(3272), + [sym_raw_string_literal] = STATE(3272), + [sym_boolean_literal] = STATE(3272), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3236), + [sym_preproc_if_in_attribute_list] = STATE(5583), + [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(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3379), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1307), - [anon_sym_LPAREN] = ACTIONS(1609), - [anon_sym_ref] = ACTIONS(1611), - [anon_sym_LBRACE] = ACTIONS(1313), - [anon_sym_delegate] = ACTIONS(1315), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1149), + [anon_sym_LPAREN] = ACTIONS(1787), + [anon_sym_ref] = ACTIONS(1789), + [anon_sym_LBRACE] = ACTIONS(1155), + [anon_sym_delegate] = ACTIONS(1157), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1613), + [anon_sym_new] = ACTIONS(1159), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1319), - [anon_sym_BANG] = ACTIONS(1617), - [anon_sym_TILDE] = ACTIONS(1617), - [anon_sym_PLUS_PLUS] = ACTIONS(1617), - [anon_sym_DASH_DASH] = ACTIONS(1617), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1615), - [anon_sym_DASH] = ACTIONS(1615), - [anon_sym_STAR] = ACTIONS(1619), - [anon_sym_CARET] = ACTIONS(1617), - [anon_sym_AMP] = ACTIONS(1617), - [anon_sym_this] = ACTIONS(1323), + [anon_sym_checked] = ACTIONS(1163), + [anon_sym_BANG] = ACTIONS(1793), + [anon_sym_TILDE] = ACTIONS(1793), + [anon_sym_PLUS_PLUS] = ACTIONS(1793), + [anon_sym_DASH_DASH] = ACTIONS(1793), + [anon_sym_true] = ACTIONS(1169), + [anon_sym_false] = ACTIONS(1169), + [anon_sym_PLUS] = ACTIONS(1791), + [anon_sym_DASH] = ACTIONS(1791), + [anon_sym_STAR] = ACTIONS(1171), + [anon_sym_CARET] = ACTIONS(1793), + [anon_sym_AMP] = ACTIONS(1793), + [anon_sym_this] = ACTIONS(1173), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1325), + [anon_sym_base] = ACTIONS(1175), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1319), + [sym_predefined_type] = ACTIONS(1177), + [anon_sym_unchecked] = ACTIONS(1163), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1621), + [anon_sym_default] = ACTIONS(1179), + [anon_sym_throw] = ACTIONS(1795), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1623), - [anon_sym_DOT_DOT] = ACTIONS(1625), + [anon_sym_await] = ACTIONS(1797), + [anon_sym_DOT_DOT] = ACTIONS(1799), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -347295,19 +351744,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1333), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(1335), - [anon_sym___reftype] = ACTIONS(1337), - [anon_sym___refvalue] = ACTIONS(1339), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1341), + [anon_sym_stackalloc] = ACTIONS(1187), + [anon_sym_sizeof] = ACTIONS(1189), + [anon_sym_typeof] = ACTIONS(1191), + [anon_sym___makeref] = ACTIONS(1193), + [anon_sym___reftype] = ACTIONS(1195), + [anon_sym___refvalue] = ACTIONS(1197), + [sym_null_literal] = ACTIONS(1199), + [anon_sym_SQUOTE] = ACTIONS(1201), + [sym_integer_literal] = ACTIONS(1199), + [sym_real_literal] = ACTIONS(1203), + [anon_sym_DQUOTE] = ACTIONS(1205), + [sym_verbatim_string_literal] = ACTIONS(1203), + [aux_sym_preproc_if_token1] = ACTIONS(1801), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -347318,140 +351767,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(1209), + [sym_interpolation_verbatim_start] = ACTIONS(1211), + [sym_interpolation_raw_start] = ACTIONS(1213), + [sym_raw_string_start] = ACTIONS(1215), }, - [1808] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2420), - [sym__name] = STATE(5875), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2369), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(4029), - [sym_non_lvalue_expression] = STATE(3066), - [sym_lvalue_expression] = STATE(3109), - [sym__expression_statement_expression] = STATE(3006), - [sym_assignment_expression] = STATE(3020), - [sym_binary_expression] = STATE(3006), - [sym_postfix_unary_expression] = STATE(3020), - [sym_prefix_unary_expression] = STATE(3020), - [sym__pointer_indirection_expression] = STATE(2423), - [sym_query_expression] = STATE(3006), - [sym_from_clause] = STATE(6179), - [sym_conditional_expression] = STATE(3006), - [sym_conditional_access_expression] = STATE(3006), - [sym_as_expression] = STATE(3006), - [sym_is_expression] = STATE(3006), - [sym_is_pattern_expression] = STATE(3006), - [sym_cast_expression] = STATE(3006), - [sym_checked_expression] = STATE(3006), - [sym_invocation_expression] = STATE(3020), - [sym_switch_expression] = STATE(3006), - [sym_await_expression] = STATE(3020), - [sym_throw_expression] = STATE(3006), - [sym_element_access_expression] = STATE(2423), - [sym_interpolated_string_expression] = STATE(3006), - [sym_member_access_expression] = STATE(2423), - [sym_object_creation_expression] = STATE(3020), - [sym_parenthesized_expression] = STATE(3020), - [sym__parenthesized_lvalue_expression] = STATE(2423), - [sym_lambda_expression] = STATE(3006), - [sym__lambda_expression_init] = STATE(7522), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3006), - [sym_anonymous_method_expression] = STATE(3006), - [sym_anonymous_object_creation_expression] = STATE(3006), - [sym_implicit_array_creation_expression] = STATE(3006), - [sym_implicit_object_creation_expression] = STATE(3006), - [sym_implicit_stackalloc_expression] = STATE(3006), - [sym_initializer_expression] = STATE(3006), - [sym_default_expression] = STATE(3006), - [sym_with_expression] = STATE(3006), - [sym_sizeof_expression] = STATE(3006), - [sym_typeof_expression] = STATE(3006), - [sym_makeref_expression] = STATE(3006), - [sym_ref_expression] = STATE(3006), - [sym_reftype_expression] = STATE(3006), - [sym_refvalue_expression] = STATE(3006), - [sym_stackalloc_expression] = STATE(3006), - [sym_range_expression] = STATE(3006), - [sym_tuple_expression] = STATE(2423), - [sym_literal] = STATE(3006), - [sym_character_literal] = STATE(3011), - [sym_string_literal] = STATE(3011), - [sym_raw_string_literal] = STATE(3011), - [sym_boolean_literal] = STATE(3011), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3006), - [sym_preproc_if_in_attribute_list] = STATE(5576), - [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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3440), + [1835] = { + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2603), + [sym__name] = STATE(5862), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2193), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(4774), + [sym_non_lvalue_expression] = STATE(3220), + [sym_lvalue_expression] = STATE(3502), + [sym__expression_statement_expression] = STATE(3236), + [sym_assignment_expression] = STATE(3221), + [sym_binary_expression] = STATE(3236), + [sym_postfix_unary_expression] = STATE(3221), + [sym_prefix_unary_expression] = STATE(3221), + [sym__pointer_indirection_expression] = STATE(2602), + [sym_query_expression] = STATE(3236), + [sym_from_clause] = STATE(6136), + [sym_conditional_expression] = STATE(3236), + [sym_conditional_access_expression] = STATE(3236), + [sym_as_expression] = STATE(3236), + [sym_is_expression] = STATE(3236), + [sym_is_pattern_expression] = STATE(3236), + [sym_cast_expression] = STATE(3236), + [sym_checked_expression] = STATE(3236), + [sym_invocation_expression] = STATE(3221), + [sym_switch_expression] = STATE(3236), + [sym_await_expression] = STATE(3221), + [sym_throw_expression] = STATE(3236), + [sym_element_access_expression] = STATE(2602), + [sym_interpolated_string_expression] = STATE(3236), + [sym_member_access_expression] = STATE(2602), + [sym_object_creation_expression] = STATE(3221), + [sym_parenthesized_expression] = STATE(3221), + [sym__parenthesized_lvalue_expression] = STATE(2602), + [sym_lambda_expression] = STATE(3236), + [sym__lambda_expression_init] = STATE(7475), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3236), + [sym_anonymous_method_expression] = STATE(3236), + [sym_anonymous_object_creation_expression] = STATE(3236), + [sym_implicit_array_creation_expression] = STATE(3236), + [sym_implicit_object_creation_expression] = STATE(3236), + [sym_implicit_stackalloc_expression] = STATE(3236), + [sym_initializer_expression] = STATE(3236), + [sym_default_expression] = STATE(3236), + [sym_with_expression] = STATE(3236), + [sym_sizeof_expression] = STATE(3236), + [sym_typeof_expression] = STATE(3236), + [sym_makeref_expression] = STATE(3236), + [sym_ref_expression] = STATE(3236), + [sym_reftype_expression] = STATE(3236), + [sym_refvalue_expression] = STATE(3236), + [sym_stackalloc_expression] = STATE(3236), + [sym_range_expression] = STATE(3236), + [sym_tuple_expression] = STATE(2602), + [sym_literal] = STATE(3236), + [sym_character_literal] = STATE(3272), + [sym_string_literal] = STATE(3272), + [sym_raw_string_literal] = STATE(3272), + [sym_boolean_literal] = STATE(3272), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3236), + [sym_preproc_if_in_attribute_list] = STATE(5583), + [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(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3379), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1241), - [anon_sym_LPAREN] = ACTIONS(1841), - [anon_sym_ref] = ACTIONS(1843), - [anon_sym_LBRACE] = ACTIONS(1247), - [anon_sym_delegate] = ACTIONS(1249), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1149), + [anon_sym_LPAREN] = ACTIONS(1787), + [anon_sym_ref] = ACTIONS(1789), + [anon_sym_LBRACE] = ACTIONS(1155), + [anon_sym_delegate] = ACTIONS(1157), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1845), + [anon_sym_new] = ACTIONS(1159), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1253), - [anon_sym_BANG] = ACTIONS(1849), - [anon_sym_TILDE] = ACTIONS(1849), - [anon_sym_PLUS_PLUS] = ACTIONS(1849), - [anon_sym_DASH_DASH] = ACTIONS(1849), - [anon_sym_true] = ACTIONS(1259), - [anon_sym_false] = ACTIONS(1259), - [anon_sym_PLUS] = ACTIONS(1847), - [anon_sym_DASH] = ACTIONS(1847), - [anon_sym_STAR] = ACTIONS(1851), - [anon_sym_CARET] = ACTIONS(1849), - [anon_sym_AMP] = ACTIONS(1849), - [anon_sym_this] = ACTIONS(1263), + [anon_sym_checked] = ACTIONS(1163), + [anon_sym_BANG] = ACTIONS(1793), + [anon_sym_TILDE] = ACTIONS(1793), + [anon_sym_PLUS_PLUS] = ACTIONS(1793), + [anon_sym_DASH_DASH] = ACTIONS(1793), + [anon_sym_true] = ACTIONS(1169), + [anon_sym_false] = ACTIONS(1169), + [anon_sym_PLUS] = ACTIONS(1791), + [anon_sym_DASH] = ACTIONS(1791), + [anon_sym_STAR] = ACTIONS(1171), + [anon_sym_CARET] = ACTIONS(1793), + [anon_sym_AMP] = ACTIONS(1793), + [anon_sym_this] = ACTIONS(1173), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1265), + [anon_sym_base] = ACTIONS(1175), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1267), - [anon_sym_unchecked] = ACTIONS(1253), + [sym_predefined_type] = ACTIONS(1177), + [anon_sym_unchecked] = ACTIONS(1163), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1269), - [anon_sym_throw] = ACTIONS(1853), + [anon_sym_default] = ACTIONS(1179), + [anon_sym_throw] = ACTIONS(1795), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1855), - [anon_sym_DOT_DOT] = ACTIONS(1857), + [anon_sym_await] = ACTIONS(1797), + [anon_sym_DOT_DOT] = ACTIONS(1799), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -347464,19 +351913,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1277), - [anon_sym_sizeof] = ACTIONS(1279), - [anon_sym_typeof] = ACTIONS(1281), - [anon_sym___makeref] = ACTIONS(1283), - [anon_sym___reftype] = ACTIONS(1285), - [anon_sym___refvalue] = ACTIONS(1287), - [sym_null_literal] = ACTIONS(1289), - [anon_sym_SQUOTE] = ACTIONS(1291), - [sym_integer_literal] = ACTIONS(1289), - [sym_real_literal] = ACTIONS(1293), - [anon_sym_DQUOTE] = ACTIONS(1295), - [sym_verbatim_string_literal] = ACTIONS(1293), - [aux_sym_preproc_if_token1] = ACTIONS(1297), + [anon_sym_stackalloc] = ACTIONS(1187), + [anon_sym_sizeof] = ACTIONS(1189), + [anon_sym_typeof] = ACTIONS(1191), + [anon_sym___makeref] = ACTIONS(1193), + [anon_sym___reftype] = ACTIONS(1195), + [anon_sym___refvalue] = ACTIONS(1197), + [sym_null_literal] = ACTIONS(1199), + [anon_sym_SQUOTE] = ACTIONS(1201), + [sym_integer_literal] = ACTIONS(1199), + [sym_real_literal] = ACTIONS(1203), + [anon_sym_DQUOTE] = ACTIONS(1205), + [sym_verbatim_string_literal] = ACTIONS(1203), + [aux_sym_preproc_if_token1] = ACTIONS(1801), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -347487,140 +351936,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(1299), - [sym_interpolation_verbatim_start] = ACTIONS(1301), - [sym_interpolation_raw_start] = ACTIONS(1303), - [sym_raw_string_start] = ACTIONS(1305), + [sym_interpolation_regular_start] = ACTIONS(1209), + [sym_interpolation_verbatim_start] = ACTIONS(1211), + [sym_interpolation_raw_start] = ACTIONS(1213), + [sym_raw_string_start] = ACTIONS(1215), }, - [1809] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2420), - [sym__name] = STATE(5875), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2369), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(4030), - [sym_non_lvalue_expression] = STATE(3066), - [sym_lvalue_expression] = STATE(3109), - [sym__expression_statement_expression] = STATE(3006), - [sym_assignment_expression] = STATE(3020), - [sym_binary_expression] = STATE(3006), - [sym_postfix_unary_expression] = STATE(3020), - [sym_prefix_unary_expression] = STATE(3020), - [sym__pointer_indirection_expression] = STATE(2423), - [sym_query_expression] = STATE(3006), - [sym_from_clause] = STATE(6179), - [sym_conditional_expression] = STATE(3006), - [sym_conditional_access_expression] = STATE(3006), - [sym_as_expression] = STATE(3006), - [sym_is_expression] = STATE(3006), - [sym_is_pattern_expression] = STATE(3006), - [sym_cast_expression] = STATE(3006), - [sym_checked_expression] = STATE(3006), - [sym_invocation_expression] = STATE(3020), - [sym_switch_expression] = STATE(3006), - [sym_await_expression] = STATE(3020), - [sym_throw_expression] = STATE(3006), - [sym_element_access_expression] = STATE(2423), - [sym_interpolated_string_expression] = STATE(3006), - [sym_member_access_expression] = STATE(2423), - [sym_object_creation_expression] = STATE(3020), - [sym_parenthesized_expression] = STATE(3020), - [sym__parenthesized_lvalue_expression] = STATE(2423), - [sym_lambda_expression] = STATE(3006), - [sym__lambda_expression_init] = STATE(7522), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3006), - [sym_anonymous_method_expression] = STATE(3006), - [sym_anonymous_object_creation_expression] = STATE(3006), - [sym_implicit_array_creation_expression] = STATE(3006), - [sym_implicit_object_creation_expression] = STATE(3006), - [sym_implicit_stackalloc_expression] = STATE(3006), - [sym_initializer_expression] = STATE(3006), - [sym_default_expression] = STATE(3006), - [sym_with_expression] = STATE(3006), - [sym_sizeof_expression] = STATE(3006), - [sym_typeof_expression] = STATE(3006), - [sym_makeref_expression] = STATE(3006), - [sym_ref_expression] = STATE(3006), - [sym_reftype_expression] = STATE(3006), - [sym_refvalue_expression] = STATE(3006), - [sym_stackalloc_expression] = STATE(3006), - [sym_range_expression] = STATE(3006), - [sym_tuple_expression] = STATE(2423), - [sym_literal] = STATE(3006), - [sym_character_literal] = STATE(3011), - [sym_string_literal] = STATE(3011), - [sym_raw_string_literal] = STATE(3011), - [sym_boolean_literal] = STATE(3011), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3006), - [sym_preproc_if_in_attribute_list] = STATE(5576), - [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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3440), + [1836] = { + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2603), + [sym__name] = STATE(5862), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2193), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(4775), + [sym_non_lvalue_expression] = STATE(3220), + [sym_lvalue_expression] = STATE(3502), + [sym__expression_statement_expression] = STATE(3236), + [sym_assignment_expression] = STATE(3221), + [sym_binary_expression] = STATE(3236), + [sym_postfix_unary_expression] = STATE(3221), + [sym_prefix_unary_expression] = STATE(3221), + [sym__pointer_indirection_expression] = STATE(2602), + [sym_query_expression] = STATE(3236), + [sym_from_clause] = STATE(6136), + [sym_conditional_expression] = STATE(3236), + [sym_conditional_access_expression] = STATE(3236), + [sym_as_expression] = STATE(3236), + [sym_is_expression] = STATE(3236), + [sym_is_pattern_expression] = STATE(3236), + [sym_cast_expression] = STATE(3236), + [sym_checked_expression] = STATE(3236), + [sym_invocation_expression] = STATE(3221), + [sym_switch_expression] = STATE(3236), + [sym_await_expression] = STATE(3221), + [sym_throw_expression] = STATE(3236), + [sym_element_access_expression] = STATE(2602), + [sym_interpolated_string_expression] = STATE(3236), + [sym_member_access_expression] = STATE(2602), + [sym_object_creation_expression] = STATE(3221), + [sym_parenthesized_expression] = STATE(3221), + [sym__parenthesized_lvalue_expression] = STATE(2602), + [sym_lambda_expression] = STATE(3236), + [sym__lambda_expression_init] = STATE(7475), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3236), + [sym_anonymous_method_expression] = STATE(3236), + [sym_anonymous_object_creation_expression] = STATE(3236), + [sym_implicit_array_creation_expression] = STATE(3236), + [sym_implicit_object_creation_expression] = STATE(3236), + [sym_implicit_stackalloc_expression] = STATE(3236), + [sym_initializer_expression] = STATE(3236), + [sym_default_expression] = STATE(3236), + [sym_with_expression] = STATE(3236), + [sym_sizeof_expression] = STATE(3236), + [sym_typeof_expression] = STATE(3236), + [sym_makeref_expression] = STATE(3236), + [sym_ref_expression] = STATE(3236), + [sym_reftype_expression] = STATE(3236), + [sym_refvalue_expression] = STATE(3236), + [sym_stackalloc_expression] = STATE(3236), + [sym_range_expression] = STATE(3236), + [sym_tuple_expression] = STATE(2602), + [sym_literal] = STATE(3236), + [sym_character_literal] = STATE(3272), + [sym_string_literal] = STATE(3272), + [sym_raw_string_literal] = STATE(3272), + [sym_boolean_literal] = STATE(3272), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3236), + [sym_preproc_if_in_attribute_list] = STATE(5583), + [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(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3379), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1241), - [anon_sym_LPAREN] = ACTIONS(1841), - [anon_sym_ref] = ACTIONS(1843), - [anon_sym_LBRACE] = ACTIONS(1247), - [anon_sym_delegate] = ACTIONS(1249), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1149), + [anon_sym_LPAREN] = ACTIONS(1787), + [anon_sym_ref] = ACTIONS(1789), + [anon_sym_LBRACE] = ACTIONS(1155), + [anon_sym_delegate] = ACTIONS(1157), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1845), + [anon_sym_new] = ACTIONS(1159), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1253), - [anon_sym_BANG] = ACTIONS(1849), - [anon_sym_TILDE] = ACTIONS(1849), - [anon_sym_PLUS_PLUS] = ACTIONS(1849), - [anon_sym_DASH_DASH] = ACTIONS(1849), - [anon_sym_true] = ACTIONS(1259), - [anon_sym_false] = ACTIONS(1259), - [anon_sym_PLUS] = ACTIONS(1847), - [anon_sym_DASH] = ACTIONS(1847), - [anon_sym_STAR] = ACTIONS(1851), - [anon_sym_CARET] = ACTIONS(1849), - [anon_sym_AMP] = ACTIONS(1849), - [anon_sym_this] = ACTIONS(1263), + [anon_sym_checked] = ACTIONS(1163), + [anon_sym_BANG] = ACTIONS(1793), + [anon_sym_TILDE] = ACTIONS(1793), + [anon_sym_PLUS_PLUS] = ACTIONS(1793), + [anon_sym_DASH_DASH] = ACTIONS(1793), + [anon_sym_true] = ACTIONS(1169), + [anon_sym_false] = ACTIONS(1169), + [anon_sym_PLUS] = ACTIONS(1791), + [anon_sym_DASH] = ACTIONS(1791), + [anon_sym_STAR] = ACTIONS(1171), + [anon_sym_CARET] = ACTIONS(1793), + [anon_sym_AMP] = ACTIONS(1793), + [anon_sym_this] = ACTIONS(1173), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1265), + [anon_sym_base] = ACTIONS(1175), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1267), - [anon_sym_unchecked] = ACTIONS(1253), + [sym_predefined_type] = ACTIONS(1177), + [anon_sym_unchecked] = ACTIONS(1163), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1269), - [anon_sym_throw] = ACTIONS(1853), + [anon_sym_default] = ACTIONS(1179), + [anon_sym_throw] = ACTIONS(1795), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1855), - [anon_sym_DOT_DOT] = ACTIONS(1857), + [anon_sym_await] = ACTIONS(1797), + [anon_sym_DOT_DOT] = ACTIONS(1799), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -347633,19 +352082,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1277), - [anon_sym_sizeof] = ACTIONS(1279), - [anon_sym_typeof] = ACTIONS(1281), - [anon_sym___makeref] = ACTIONS(1283), - [anon_sym___reftype] = ACTIONS(1285), - [anon_sym___refvalue] = ACTIONS(1287), - [sym_null_literal] = ACTIONS(1289), - [anon_sym_SQUOTE] = ACTIONS(1291), - [sym_integer_literal] = ACTIONS(1289), - [sym_real_literal] = ACTIONS(1293), - [anon_sym_DQUOTE] = ACTIONS(1295), - [sym_verbatim_string_literal] = ACTIONS(1293), - [aux_sym_preproc_if_token1] = ACTIONS(1297), + [anon_sym_stackalloc] = ACTIONS(1187), + [anon_sym_sizeof] = ACTIONS(1189), + [anon_sym_typeof] = ACTIONS(1191), + [anon_sym___makeref] = ACTIONS(1193), + [anon_sym___reftype] = ACTIONS(1195), + [anon_sym___refvalue] = ACTIONS(1197), + [sym_null_literal] = ACTIONS(1199), + [anon_sym_SQUOTE] = ACTIONS(1201), + [sym_integer_literal] = ACTIONS(1199), + [sym_real_literal] = ACTIONS(1203), + [anon_sym_DQUOTE] = ACTIONS(1205), + [sym_verbatim_string_literal] = ACTIONS(1203), + [aux_sym_preproc_if_token1] = ACTIONS(1801), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -347656,140 +352105,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(1299), - [sym_interpolation_verbatim_start] = ACTIONS(1301), - [sym_interpolation_raw_start] = ACTIONS(1303), - [sym_raw_string_start] = ACTIONS(1305), + [sym_interpolation_regular_start] = ACTIONS(1209), + [sym_interpolation_verbatim_start] = ACTIONS(1211), + [sym_interpolation_raw_start] = ACTIONS(1213), + [sym_raw_string_start] = ACTIONS(1215), }, - [1810] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2420), - [sym__name] = STATE(5875), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2369), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(3995), - [sym_non_lvalue_expression] = STATE(3066), - [sym_lvalue_expression] = STATE(3109), - [sym__expression_statement_expression] = STATE(3006), - [sym_assignment_expression] = STATE(3020), - [sym_binary_expression] = STATE(3006), - [sym_postfix_unary_expression] = STATE(3020), - [sym_prefix_unary_expression] = STATE(3020), - [sym__pointer_indirection_expression] = STATE(2423), - [sym_query_expression] = STATE(3006), - [sym_from_clause] = STATE(6179), - [sym_conditional_expression] = STATE(3006), - [sym_conditional_access_expression] = STATE(3006), - [sym_as_expression] = STATE(3006), - [sym_is_expression] = STATE(3006), - [sym_is_pattern_expression] = STATE(3006), - [sym_cast_expression] = STATE(3006), - [sym_checked_expression] = STATE(3006), - [sym_invocation_expression] = STATE(3020), - [sym_switch_expression] = STATE(3006), - [sym_await_expression] = STATE(3020), - [sym_throw_expression] = STATE(3006), - [sym_element_access_expression] = STATE(2423), - [sym_interpolated_string_expression] = STATE(3006), - [sym_member_access_expression] = STATE(2423), - [sym_object_creation_expression] = STATE(3020), - [sym_parenthesized_expression] = STATE(3020), - [sym__parenthesized_lvalue_expression] = STATE(2423), - [sym_lambda_expression] = STATE(3006), - [sym__lambda_expression_init] = STATE(7522), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3006), - [sym_anonymous_method_expression] = STATE(3006), - [sym_anonymous_object_creation_expression] = STATE(3006), - [sym_implicit_array_creation_expression] = STATE(3006), - [sym_implicit_object_creation_expression] = STATE(3006), - [sym_implicit_stackalloc_expression] = STATE(3006), - [sym_initializer_expression] = STATE(3006), - [sym_default_expression] = STATE(3006), - [sym_with_expression] = STATE(3006), - [sym_sizeof_expression] = STATE(3006), - [sym_typeof_expression] = STATE(3006), - [sym_makeref_expression] = STATE(3006), - [sym_ref_expression] = STATE(3006), - [sym_reftype_expression] = STATE(3006), - [sym_refvalue_expression] = STATE(3006), - [sym_stackalloc_expression] = STATE(3006), - [sym_range_expression] = STATE(3006), - [sym_tuple_expression] = STATE(2423), - [sym_literal] = STATE(3006), - [sym_character_literal] = STATE(3011), - [sym_string_literal] = STATE(3011), - [sym_raw_string_literal] = STATE(3011), - [sym_boolean_literal] = STATE(3011), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3006), - [sym_preproc_if_in_attribute_list] = STATE(5576), - [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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3440), + [1837] = { + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2603), + [sym__name] = STATE(5862), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2193), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(4776), + [sym_non_lvalue_expression] = STATE(3220), + [sym_lvalue_expression] = STATE(3502), + [sym__expression_statement_expression] = STATE(3236), + [sym_assignment_expression] = STATE(3221), + [sym_binary_expression] = STATE(3236), + [sym_postfix_unary_expression] = STATE(3221), + [sym_prefix_unary_expression] = STATE(3221), + [sym__pointer_indirection_expression] = STATE(2602), + [sym_query_expression] = STATE(3236), + [sym_from_clause] = STATE(6136), + [sym_conditional_expression] = STATE(3236), + [sym_conditional_access_expression] = STATE(3236), + [sym_as_expression] = STATE(3236), + [sym_is_expression] = STATE(3236), + [sym_is_pattern_expression] = STATE(3236), + [sym_cast_expression] = STATE(3236), + [sym_checked_expression] = STATE(3236), + [sym_invocation_expression] = STATE(3221), + [sym_switch_expression] = STATE(3236), + [sym_await_expression] = STATE(3221), + [sym_throw_expression] = STATE(3236), + [sym_element_access_expression] = STATE(2602), + [sym_interpolated_string_expression] = STATE(3236), + [sym_member_access_expression] = STATE(2602), + [sym_object_creation_expression] = STATE(3221), + [sym_parenthesized_expression] = STATE(3221), + [sym__parenthesized_lvalue_expression] = STATE(2602), + [sym_lambda_expression] = STATE(3236), + [sym__lambda_expression_init] = STATE(7475), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3236), + [sym_anonymous_method_expression] = STATE(3236), + [sym_anonymous_object_creation_expression] = STATE(3236), + [sym_implicit_array_creation_expression] = STATE(3236), + [sym_implicit_object_creation_expression] = STATE(3236), + [sym_implicit_stackalloc_expression] = STATE(3236), + [sym_initializer_expression] = STATE(3236), + [sym_default_expression] = STATE(3236), + [sym_with_expression] = STATE(3236), + [sym_sizeof_expression] = STATE(3236), + [sym_typeof_expression] = STATE(3236), + [sym_makeref_expression] = STATE(3236), + [sym_ref_expression] = STATE(3236), + [sym_reftype_expression] = STATE(3236), + [sym_refvalue_expression] = STATE(3236), + [sym_stackalloc_expression] = STATE(3236), + [sym_range_expression] = STATE(3236), + [sym_tuple_expression] = STATE(2602), + [sym_literal] = STATE(3236), + [sym_character_literal] = STATE(3272), + [sym_string_literal] = STATE(3272), + [sym_raw_string_literal] = STATE(3272), + [sym_boolean_literal] = STATE(3272), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3236), + [sym_preproc_if_in_attribute_list] = STATE(5583), + [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(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3379), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1241), - [anon_sym_LPAREN] = ACTIONS(1841), - [anon_sym_ref] = ACTIONS(1843), - [anon_sym_LBRACE] = ACTIONS(1247), - [anon_sym_delegate] = ACTIONS(1249), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1149), + [anon_sym_LPAREN] = ACTIONS(1787), + [anon_sym_ref] = ACTIONS(1789), + [anon_sym_LBRACE] = ACTIONS(1155), + [anon_sym_delegate] = ACTIONS(1157), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1845), + [anon_sym_new] = ACTIONS(1159), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1253), - [anon_sym_BANG] = ACTIONS(1849), - [anon_sym_TILDE] = ACTIONS(1849), - [anon_sym_PLUS_PLUS] = ACTIONS(1849), - [anon_sym_DASH_DASH] = ACTIONS(1849), - [anon_sym_true] = ACTIONS(1259), - [anon_sym_false] = ACTIONS(1259), - [anon_sym_PLUS] = ACTIONS(1847), - [anon_sym_DASH] = ACTIONS(1847), - [anon_sym_STAR] = ACTIONS(1851), - [anon_sym_CARET] = ACTIONS(1849), - [anon_sym_AMP] = ACTIONS(1849), - [anon_sym_this] = ACTIONS(1263), + [anon_sym_checked] = ACTIONS(1163), + [anon_sym_BANG] = ACTIONS(1793), + [anon_sym_TILDE] = ACTIONS(1793), + [anon_sym_PLUS_PLUS] = ACTIONS(1793), + [anon_sym_DASH_DASH] = ACTIONS(1793), + [anon_sym_true] = ACTIONS(1169), + [anon_sym_false] = ACTIONS(1169), + [anon_sym_PLUS] = ACTIONS(1791), + [anon_sym_DASH] = ACTIONS(1791), + [anon_sym_STAR] = ACTIONS(1171), + [anon_sym_CARET] = ACTIONS(1793), + [anon_sym_AMP] = ACTIONS(1793), + [anon_sym_this] = ACTIONS(1173), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1265), + [anon_sym_base] = ACTIONS(1175), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1267), - [anon_sym_unchecked] = ACTIONS(1253), + [sym_predefined_type] = ACTIONS(1177), + [anon_sym_unchecked] = ACTIONS(1163), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1269), - [anon_sym_throw] = ACTIONS(1853), + [anon_sym_default] = ACTIONS(1179), + [anon_sym_throw] = ACTIONS(1795), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1855), - [anon_sym_DOT_DOT] = ACTIONS(1857), + [anon_sym_await] = ACTIONS(1797), + [anon_sym_DOT_DOT] = ACTIONS(1799), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -347802,19 +352251,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1277), - [anon_sym_sizeof] = ACTIONS(1279), - [anon_sym_typeof] = ACTIONS(1281), - [anon_sym___makeref] = ACTIONS(1283), - [anon_sym___reftype] = ACTIONS(1285), - [anon_sym___refvalue] = ACTIONS(1287), - [sym_null_literal] = ACTIONS(1289), - [anon_sym_SQUOTE] = ACTIONS(1291), - [sym_integer_literal] = ACTIONS(1289), - [sym_real_literal] = ACTIONS(1293), - [anon_sym_DQUOTE] = ACTIONS(1295), - [sym_verbatim_string_literal] = ACTIONS(1293), - [aux_sym_preproc_if_token1] = ACTIONS(1297), + [anon_sym_stackalloc] = ACTIONS(1187), + [anon_sym_sizeof] = ACTIONS(1189), + [anon_sym_typeof] = ACTIONS(1191), + [anon_sym___makeref] = ACTIONS(1193), + [anon_sym___reftype] = ACTIONS(1195), + [anon_sym___refvalue] = ACTIONS(1197), + [sym_null_literal] = ACTIONS(1199), + [anon_sym_SQUOTE] = ACTIONS(1201), + [sym_integer_literal] = ACTIONS(1199), + [sym_real_literal] = ACTIONS(1203), + [anon_sym_DQUOTE] = ACTIONS(1205), + [sym_verbatim_string_literal] = ACTIONS(1203), + [aux_sym_preproc_if_token1] = ACTIONS(1801), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -347825,140 +352274,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(1299), - [sym_interpolation_verbatim_start] = ACTIONS(1301), - [sym_interpolation_raw_start] = ACTIONS(1303), - [sym_raw_string_start] = ACTIONS(1305), + [sym_interpolation_regular_start] = ACTIONS(1209), + [sym_interpolation_verbatim_start] = ACTIONS(1211), + [sym_interpolation_raw_start] = ACTIONS(1213), + [sym_raw_string_start] = ACTIONS(1215), }, - [1811] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2420), - [sym__name] = STATE(5875), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2369), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(2908), - [sym_non_lvalue_expression] = STATE(3066), - [sym_lvalue_expression] = STATE(3109), - [sym__expression_statement_expression] = STATE(3006), - [sym_assignment_expression] = STATE(3020), - [sym_binary_expression] = STATE(3006), - [sym_postfix_unary_expression] = STATE(3020), - [sym_prefix_unary_expression] = STATE(3020), - [sym__pointer_indirection_expression] = STATE(2423), - [sym_query_expression] = STATE(3006), - [sym_from_clause] = STATE(6179), - [sym_conditional_expression] = STATE(3006), - [sym_conditional_access_expression] = STATE(3006), - [sym_as_expression] = STATE(3006), - [sym_is_expression] = STATE(3006), - [sym_is_pattern_expression] = STATE(3006), - [sym_cast_expression] = STATE(3006), - [sym_checked_expression] = STATE(3006), - [sym_invocation_expression] = STATE(3020), - [sym_switch_expression] = STATE(3006), - [sym_await_expression] = STATE(3020), - [sym_throw_expression] = STATE(3006), - [sym_element_access_expression] = STATE(2423), - [sym_interpolated_string_expression] = STATE(3006), - [sym_member_access_expression] = STATE(2423), - [sym_object_creation_expression] = STATE(3020), - [sym_parenthesized_expression] = STATE(3020), - [sym__parenthesized_lvalue_expression] = STATE(2423), - [sym_lambda_expression] = STATE(3006), - [sym__lambda_expression_init] = STATE(7522), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3006), - [sym_anonymous_method_expression] = STATE(3006), - [sym_anonymous_object_creation_expression] = STATE(3006), - [sym_implicit_array_creation_expression] = STATE(3006), - [sym_implicit_object_creation_expression] = STATE(3006), - [sym_implicit_stackalloc_expression] = STATE(3006), - [sym_initializer_expression] = STATE(3006), - [sym_default_expression] = STATE(3006), - [sym_with_expression] = STATE(3006), - [sym_sizeof_expression] = STATE(3006), - [sym_typeof_expression] = STATE(3006), - [sym_makeref_expression] = STATE(3006), - [sym_ref_expression] = STATE(3006), - [sym_reftype_expression] = STATE(3006), - [sym_refvalue_expression] = STATE(3006), - [sym_stackalloc_expression] = STATE(3006), - [sym_range_expression] = STATE(3006), - [sym_tuple_expression] = STATE(2423), - [sym_literal] = STATE(3006), - [sym_character_literal] = STATE(3011), - [sym_string_literal] = STATE(3011), - [sym_raw_string_literal] = STATE(3011), - [sym_boolean_literal] = STATE(3011), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3006), - [sym_preproc_if_in_attribute_list] = STATE(5576), - [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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3440), + [1838] = { + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2603), + [sym__name] = STATE(5862), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2193), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(4777), + [sym_non_lvalue_expression] = STATE(3220), + [sym_lvalue_expression] = STATE(3502), + [sym__expression_statement_expression] = STATE(3236), + [sym_assignment_expression] = STATE(3221), + [sym_binary_expression] = STATE(3236), + [sym_postfix_unary_expression] = STATE(3221), + [sym_prefix_unary_expression] = STATE(3221), + [sym__pointer_indirection_expression] = STATE(2602), + [sym_query_expression] = STATE(3236), + [sym_from_clause] = STATE(6136), + [sym_conditional_expression] = STATE(3236), + [sym_conditional_access_expression] = STATE(3236), + [sym_as_expression] = STATE(3236), + [sym_is_expression] = STATE(3236), + [sym_is_pattern_expression] = STATE(3236), + [sym_cast_expression] = STATE(3236), + [sym_checked_expression] = STATE(3236), + [sym_invocation_expression] = STATE(3221), + [sym_switch_expression] = STATE(3236), + [sym_await_expression] = STATE(3221), + [sym_throw_expression] = STATE(3236), + [sym_element_access_expression] = STATE(2602), + [sym_interpolated_string_expression] = STATE(3236), + [sym_member_access_expression] = STATE(2602), + [sym_object_creation_expression] = STATE(3221), + [sym_parenthesized_expression] = STATE(3221), + [sym__parenthesized_lvalue_expression] = STATE(2602), + [sym_lambda_expression] = STATE(3236), + [sym__lambda_expression_init] = STATE(7475), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3236), + [sym_anonymous_method_expression] = STATE(3236), + [sym_anonymous_object_creation_expression] = STATE(3236), + [sym_implicit_array_creation_expression] = STATE(3236), + [sym_implicit_object_creation_expression] = STATE(3236), + [sym_implicit_stackalloc_expression] = STATE(3236), + [sym_initializer_expression] = STATE(3236), + [sym_default_expression] = STATE(3236), + [sym_with_expression] = STATE(3236), + [sym_sizeof_expression] = STATE(3236), + [sym_typeof_expression] = STATE(3236), + [sym_makeref_expression] = STATE(3236), + [sym_ref_expression] = STATE(3236), + [sym_reftype_expression] = STATE(3236), + [sym_refvalue_expression] = STATE(3236), + [sym_stackalloc_expression] = STATE(3236), + [sym_range_expression] = STATE(3236), + [sym_tuple_expression] = STATE(2602), + [sym_literal] = STATE(3236), + [sym_character_literal] = STATE(3272), + [sym_string_literal] = STATE(3272), + [sym_raw_string_literal] = STATE(3272), + [sym_boolean_literal] = STATE(3272), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3236), + [sym_preproc_if_in_attribute_list] = STATE(5583), + [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(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3379), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1241), - [anon_sym_LPAREN] = ACTIONS(1841), - [anon_sym_ref] = ACTIONS(1843), - [anon_sym_LBRACE] = ACTIONS(1247), - [anon_sym_delegate] = ACTIONS(1249), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1149), + [anon_sym_LPAREN] = ACTIONS(1787), + [anon_sym_ref] = ACTIONS(1789), + [anon_sym_LBRACE] = ACTIONS(1155), + [anon_sym_delegate] = ACTIONS(1157), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1845), + [anon_sym_new] = ACTIONS(1159), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1253), - [anon_sym_BANG] = ACTIONS(1849), - [anon_sym_TILDE] = ACTIONS(1849), - [anon_sym_PLUS_PLUS] = ACTIONS(1849), - [anon_sym_DASH_DASH] = ACTIONS(1849), - [anon_sym_true] = ACTIONS(1259), - [anon_sym_false] = ACTIONS(1259), - [anon_sym_PLUS] = ACTIONS(1847), - [anon_sym_DASH] = ACTIONS(1847), - [anon_sym_STAR] = ACTIONS(1851), - [anon_sym_CARET] = ACTIONS(1849), - [anon_sym_AMP] = ACTIONS(1849), - [anon_sym_this] = ACTIONS(1263), + [anon_sym_checked] = ACTIONS(1163), + [anon_sym_BANG] = ACTIONS(1793), + [anon_sym_TILDE] = ACTIONS(1793), + [anon_sym_PLUS_PLUS] = ACTIONS(1793), + [anon_sym_DASH_DASH] = ACTIONS(1793), + [anon_sym_true] = ACTIONS(1169), + [anon_sym_false] = ACTIONS(1169), + [anon_sym_PLUS] = ACTIONS(1791), + [anon_sym_DASH] = ACTIONS(1791), + [anon_sym_STAR] = ACTIONS(1171), + [anon_sym_CARET] = ACTIONS(1793), + [anon_sym_AMP] = ACTIONS(1793), + [anon_sym_this] = ACTIONS(1173), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1265), + [anon_sym_base] = ACTIONS(1175), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1267), - [anon_sym_unchecked] = ACTIONS(1253), + [sym_predefined_type] = ACTIONS(1177), + [anon_sym_unchecked] = ACTIONS(1163), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1269), - [anon_sym_throw] = ACTIONS(1853), + [anon_sym_default] = ACTIONS(1179), + [anon_sym_throw] = ACTIONS(1795), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1855), - [anon_sym_DOT_DOT] = ACTIONS(1857), + [anon_sym_await] = ACTIONS(1797), + [anon_sym_DOT_DOT] = ACTIONS(1799), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -347971,19 +352420,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1277), - [anon_sym_sizeof] = ACTIONS(1279), - [anon_sym_typeof] = ACTIONS(1281), - [anon_sym___makeref] = ACTIONS(1283), - [anon_sym___reftype] = ACTIONS(1285), - [anon_sym___refvalue] = ACTIONS(1287), - [sym_null_literal] = ACTIONS(1289), - [anon_sym_SQUOTE] = ACTIONS(1291), - [sym_integer_literal] = ACTIONS(1289), - [sym_real_literal] = ACTIONS(1293), - [anon_sym_DQUOTE] = ACTIONS(1295), - [sym_verbatim_string_literal] = ACTIONS(1293), - [aux_sym_preproc_if_token1] = ACTIONS(1297), + [anon_sym_stackalloc] = ACTIONS(1187), + [anon_sym_sizeof] = ACTIONS(1189), + [anon_sym_typeof] = ACTIONS(1191), + [anon_sym___makeref] = ACTIONS(1193), + [anon_sym___reftype] = ACTIONS(1195), + [anon_sym___refvalue] = ACTIONS(1197), + [sym_null_literal] = ACTIONS(1199), + [anon_sym_SQUOTE] = ACTIONS(1201), + [sym_integer_literal] = ACTIONS(1199), + [sym_real_literal] = ACTIONS(1203), + [anon_sym_DQUOTE] = ACTIONS(1205), + [sym_verbatim_string_literal] = ACTIONS(1203), + [aux_sym_preproc_if_token1] = ACTIONS(1801), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -347994,140 +352443,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(1299), - [sym_interpolation_verbatim_start] = ACTIONS(1301), - [sym_interpolation_raw_start] = ACTIONS(1303), - [sym_raw_string_start] = ACTIONS(1305), + [sym_interpolation_regular_start] = ACTIONS(1209), + [sym_interpolation_verbatim_start] = ACTIONS(1211), + [sym_interpolation_raw_start] = ACTIONS(1213), + [sym_raw_string_start] = ACTIONS(1215), }, - [1812] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(5910), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2247), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(5313), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3379), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3080), - [sym_postfix_unary_expression] = STATE(3111), - [sym_prefix_unary_expression] = STATE(3111), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6154), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3080), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3111), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3080), - [sym_member_access_expression] = STATE(2484), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3111), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7575), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(3080), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3080), - [sym_typeof_expression] = STATE(3080), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2484), - [sym_literal] = STATE(3080), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), - [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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [1839] = { + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2603), + [sym__name] = STATE(5862), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2193), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(4778), + [sym_non_lvalue_expression] = STATE(3220), + [sym_lvalue_expression] = STATE(3502), + [sym__expression_statement_expression] = STATE(3236), + [sym_assignment_expression] = STATE(3221), + [sym_binary_expression] = STATE(3236), + [sym_postfix_unary_expression] = STATE(3221), + [sym_prefix_unary_expression] = STATE(3221), + [sym__pointer_indirection_expression] = STATE(2602), + [sym_query_expression] = STATE(3236), + [sym_from_clause] = STATE(6136), + [sym_conditional_expression] = STATE(3236), + [sym_conditional_access_expression] = STATE(3236), + [sym_as_expression] = STATE(3236), + [sym_is_expression] = STATE(3236), + [sym_is_pattern_expression] = STATE(3236), + [sym_cast_expression] = STATE(3236), + [sym_checked_expression] = STATE(3236), + [sym_invocation_expression] = STATE(3221), + [sym_switch_expression] = STATE(3236), + [sym_await_expression] = STATE(3221), + [sym_throw_expression] = STATE(3236), + [sym_element_access_expression] = STATE(2602), + [sym_interpolated_string_expression] = STATE(3236), + [sym_member_access_expression] = STATE(2602), + [sym_object_creation_expression] = STATE(3221), + [sym_parenthesized_expression] = STATE(3221), + [sym__parenthesized_lvalue_expression] = STATE(2602), + [sym_lambda_expression] = STATE(3236), + [sym__lambda_expression_init] = STATE(7475), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3236), + [sym_anonymous_method_expression] = STATE(3236), + [sym_anonymous_object_creation_expression] = STATE(3236), + [sym_implicit_array_creation_expression] = STATE(3236), + [sym_implicit_object_creation_expression] = STATE(3236), + [sym_implicit_stackalloc_expression] = STATE(3236), + [sym_initializer_expression] = STATE(3236), + [sym_default_expression] = STATE(3236), + [sym_with_expression] = STATE(3236), + [sym_sizeof_expression] = STATE(3236), + [sym_typeof_expression] = STATE(3236), + [sym_makeref_expression] = STATE(3236), + [sym_ref_expression] = STATE(3236), + [sym_reftype_expression] = STATE(3236), + [sym_refvalue_expression] = STATE(3236), + [sym_stackalloc_expression] = STATE(3236), + [sym_range_expression] = STATE(3236), + [sym_tuple_expression] = STATE(2602), + [sym_literal] = STATE(3236), + [sym_character_literal] = STATE(3272), + [sym_string_literal] = STATE(3272), + [sym_raw_string_literal] = STATE(3272), + [sym_boolean_literal] = STATE(3272), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3236), + [sym_preproc_if_in_attribute_list] = STATE(5583), + [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(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3379), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1481), - [anon_sym_LPAREN] = ACTIONS(895), - [anon_sym_ref] = ACTIONS(897), - [anon_sym_LBRACE] = ACTIONS(1487), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1149), + [anon_sym_LPAREN] = ACTIONS(1787), + [anon_sym_ref] = ACTIONS(1789), + [anon_sym_LBRACE] = ACTIONS(1155), + [anon_sym_delegate] = ACTIONS(1157), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1061), + [anon_sym_new] = ACTIONS(1159), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1067), - [anon_sym_BANG] = ACTIONS(1495), - [anon_sym_TILDE] = ACTIONS(1495), - [anon_sym_PLUS_PLUS] = ACTIONS(1495), - [anon_sym_DASH_DASH] = ACTIONS(1495), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1493), - [anon_sym_DASH] = ACTIONS(1493), - [anon_sym_STAR] = ACTIONS(905), - [anon_sym_CARET] = ACTIONS(1495), - [anon_sym_AMP] = ACTIONS(1495), - [anon_sym_this] = ACTIONS(83), + [anon_sym_checked] = ACTIONS(1163), + [anon_sym_BANG] = ACTIONS(1793), + [anon_sym_TILDE] = ACTIONS(1793), + [anon_sym_PLUS_PLUS] = ACTIONS(1793), + [anon_sym_DASH_DASH] = ACTIONS(1793), + [anon_sym_true] = ACTIONS(1169), + [anon_sym_false] = ACTIONS(1169), + [anon_sym_PLUS] = ACTIONS(1791), + [anon_sym_DASH] = ACTIONS(1791), + [anon_sym_STAR] = ACTIONS(1171), + [anon_sym_CARET] = ACTIONS(1793), + [anon_sym_AMP] = ACTIONS(1793), + [anon_sym_this] = ACTIONS(1173), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), + [anon_sym_base] = ACTIONS(1175), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1067), + [sym_predefined_type] = ACTIONS(1177), + [anon_sym_unchecked] = ACTIONS(1163), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1079), + [anon_sym_default] = ACTIONS(1179), + [anon_sym_throw] = ACTIONS(1795), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1081), - [anon_sym_DOT_DOT] = ACTIONS(911), + [anon_sym_await] = ACTIONS(1797), + [anon_sym_DOT_DOT] = ACTIONS(1799), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -348140,19 +352589,19 @@ static const uint16_t ts_parse_table[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(1089), + [anon_sym_stackalloc] = ACTIONS(1187), + [anon_sym_sizeof] = ACTIONS(1189), + [anon_sym_typeof] = ACTIONS(1191), + [anon_sym___makeref] = ACTIONS(1193), + [anon_sym___reftype] = ACTIONS(1195), + [anon_sym___refvalue] = ACTIONS(1197), + [sym_null_literal] = ACTIONS(1199), + [anon_sym_SQUOTE] = ACTIONS(1201), + [sym_integer_literal] = ACTIONS(1199), + [sym_real_literal] = ACTIONS(1203), + [anon_sym_DQUOTE] = ACTIONS(1205), + [sym_verbatim_string_literal] = ACTIONS(1203), + [aux_sym_preproc_if_token1] = ACTIONS(1801), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -348163,140 +352612,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(1209), + [sym_interpolation_verbatim_start] = ACTIONS(1211), + [sym_interpolation_raw_start] = ACTIONS(1213), + [sym_raw_string_start] = ACTIONS(1215), }, - [1813] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2420), - [sym__name] = STATE(5875), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2369), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(3996), - [sym_non_lvalue_expression] = STATE(3066), - [sym_lvalue_expression] = STATE(3109), - [sym__expression_statement_expression] = STATE(3006), - [sym_assignment_expression] = STATE(3020), - [sym_binary_expression] = STATE(3006), - [sym_postfix_unary_expression] = STATE(3020), - [sym_prefix_unary_expression] = STATE(3020), - [sym__pointer_indirection_expression] = STATE(2423), - [sym_query_expression] = STATE(3006), - [sym_from_clause] = STATE(6179), - [sym_conditional_expression] = STATE(3006), - [sym_conditional_access_expression] = STATE(3006), - [sym_as_expression] = STATE(3006), - [sym_is_expression] = STATE(3006), - [sym_is_pattern_expression] = STATE(3006), - [sym_cast_expression] = STATE(3006), - [sym_checked_expression] = STATE(3006), - [sym_invocation_expression] = STATE(3020), - [sym_switch_expression] = STATE(3006), - [sym_await_expression] = STATE(3020), - [sym_throw_expression] = STATE(3006), - [sym_element_access_expression] = STATE(2423), - [sym_interpolated_string_expression] = STATE(3006), - [sym_member_access_expression] = STATE(2423), - [sym_object_creation_expression] = STATE(3020), - [sym_parenthesized_expression] = STATE(3020), - [sym__parenthesized_lvalue_expression] = STATE(2423), - [sym_lambda_expression] = STATE(3006), - [sym__lambda_expression_init] = STATE(7522), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3006), - [sym_anonymous_method_expression] = STATE(3006), - [sym_anonymous_object_creation_expression] = STATE(3006), - [sym_implicit_array_creation_expression] = STATE(3006), - [sym_implicit_object_creation_expression] = STATE(3006), - [sym_implicit_stackalloc_expression] = STATE(3006), - [sym_initializer_expression] = STATE(3006), - [sym_default_expression] = STATE(3006), - [sym_with_expression] = STATE(3006), - [sym_sizeof_expression] = STATE(3006), - [sym_typeof_expression] = STATE(3006), - [sym_makeref_expression] = STATE(3006), - [sym_ref_expression] = STATE(3006), - [sym_reftype_expression] = STATE(3006), - [sym_refvalue_expression] = STATE(3006), - [sym_stackalloc_expression] = STATE(3006), - [sym_range_expression] = STATE(3006), - [sym_tuple_expression] = STATE(2423), - [sym_literal] = STATE(3006), - [sym_character_literal] = STATE(3011), - [sym_string_literal] = STATE(3011), - [sym_raw_string_literal] = STATE(3011), - [sym_boolean_literal] = STATE(3011), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3006), - [sym_preproc_if_in_attribute_list] = STATE(5576), - [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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3440), + [1840] = { + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2603), + [sym__name] = STATE(5862), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2193), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(4779), + [sym_non_lvalue_expression] = STATE(3220), + [sym_lvalue_expression] = STATE(3502), + [sym__expression_statement_expression] = STATE(3236), + [sym_assignment_expression] = STATE(3221), + [sym_binary_expression] = STATE(3236), + [sym_postfix_unary_expression] = STATE(3221), + [sym_prefix_unary_expression] = STATE(3221), + [sym__pointer_indirection_expression] = STATE(2602), + [sym_query_expression] = STATE(3236), + [sym_from_clause] = STATE(6136), + [sym_conditional_expression] = STATE(3236), + [sym_conditional_access_expression] = STATE(3236), + [sym_as_expression] = STATE(3236), + [sym_is_expression] = STATE(3236), + [sym_is_pattern_expression] = STATE(3236), + [sym_cast_expression] = STATE(3236), + [sym_checked_expression] = STATE(3236), + [sym_invocation_expression] = STATE(3221), + [sym_switch_expression] = STATE(3236), + [sym_await_expression] = STATE(3221), + [sym_throw_expression] = STATE(3236), + [sym_element_access_expression] = STATE(2602), + [sym_interpolated_string_expression] = STATE(3236), + [sym_member_access_expression] = STATE(2602), + [sym_object_creation_expression] = STATE(3221), + [sym_parenthesized_expression] = STATE(3221), + [sym__parenthesized_lvalue_expression] = STATE(2602), + [sym_lambda_expression] = STATE(3236), + [sym__lambda_expression_init] = STATE(7475), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3236), + [sym_anonymous_method_expression] = STATE(3236), + [sym_anonymous_object_creation_expression] = STATE(3236), + [sym_implicit_array_creation_expression] = STATE(3236), + [sym_implicit_object_creation_expression] = STATE(3236), + [sym_implicit_stackalloc_expression] = STATE(3236), + [sym_initializer_expression] = STATE(3236), + [sym_default_expression] = STATE(3236), + [sym_with_expression] = STATE(3236), + [sym_sizeof_expression] = STATE(3236), + [sym_typeof_expression] = STATE(3236), + [sym_makeref_expression] = STATE(3236), + [sym_ref_expression] = STATE(3236), + [sym_reftype_expression] = STATE(3236), + [sym_refvalue_expression] = STATE(3236), + [sym_stackalloc_expression] = STATE(3236), + [sym_range_expression] = STATE(3236), + [sym_tuple_expression] = STATE(2602), + [sym_literal] = STATE(3236), + [sym_character_literal] = STATE(3272), + [sym_string_literal] = STATE(3272), + [sym_raw_string_literal] = STATE(3272), + [sym_boolean_literal] = STATE(3272), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3236), + [sym_preproc_if_in_attribute_list] = STATE(5583), + [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(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3379), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1241), - [anon_sym_LPAREN] = ACTIONS(1841), - [anon_sym_ref] = ACTIONS(1843), - [anon_sym_LBRACE] = ACTIONS(1247), - [anon_sym_delegate] = ACTIONS(1249), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1149), + [anon_sym_LPAREN] = ACTIONS(1787), + [anon_sym_ref] = ACTIONS(1789), + [anon_sym_LBRACE] = ACTIONS(1155), + [anon_sym_delegate] = ACTIONS(1157), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1845), + [anon_sym_new] = ACTIONS(1159), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1253), - [anon_sym_BANG] = ACTIONS(1849), - [anon_sym_TILDE] = ACTIONS(1849), - [anon_sym_PLUS_PLUS] = ACTIONS(1849), - [anon_sym_DASH_DASH] = ACTIONS(1849), - [anon_sym_true] = ACTIONS(1259), - [anon_sym_false] = ACTIONS(1259), - [anon_sym_PLUS] = ACTIONS(1847), - [anon_sym_DASH] = ACTIONS(1847), - [anon_sym_STAR] = ACTIONS(1851), - [anon_sym_CARET] = ACTIONS(1849), - [anon_sym_AMP] = ACTIONS(1849), - [anon_sym_this] = ACTIONS(1263), + [anon_sym_checked] = ACTIONS(1163), + [anon_sym_BANG] = ACTIONS(1793), + [anon_sym_TILDE] = ACTIONS(1793), + [anon_sym_PLUS_PLUS] = ACTIONS(1793), + [anon_sym_DASH_DASH] = ACTIONS(1793), + [anon_sym_true] = ACTIONS(1169), + [anon_sym_false] = ACTIONS(1169), + [anon_sym_PLUS] = ACTIONS(1791), + [anon_sym_DASH] = ACTIONS(1791), + [anon_sym_STAR] = ACTIONS(1171), + [anon_sym_CARET] = ACTIONS(1793), + [anon_sym_AMP] = ACTIONS(1793), + [anon_sym_this] = ACTIONS(1173), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1265), + [anon_sym_base] = ACTIONS(1175), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1267), - [anon_sym_unchecked] = ACTIONS(1253), + [sym_predefined_type] = ACTIONS(1177), + [anon_sym_unchecked] = ACTIONS(1163), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1269), - [anon_sym_throw] = ACTIONS(1853), + [anon_sym_default] = ACTIONS(1179), + [anon_sym_throw] = ACTIONS(1795), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1855), - [anon_sym_DOT_DOT] = ACTIONS(1857), + [anon_sym_await] = ACTIONS(1797), + [anon_sym_DOT_DOT] = ACTIONS(1799), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -348309,19 +352758,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1277), - [anon_sym_sizeof] = ACTIONS(1279), - [anon_sym_typeof] = ACTIONS(1281), - [anon_sym___makeref] = ACTIONS(1283), - [anon_sym___reftype] = ACTIONS(1285), - [anon_sym___refvalue] = ACTIONS(1287), - [sym_null_literal] = ACTIONS(1289), - [anon_sym_SQUOTE] = ACTIONS(1291), - [sym_integer_literal] = ACTIONS(1289), - [sym_real_literal] = ACTIONS(1293), - [anon_sym_DQUOTE] = ACTIONS(1295), - [sym_verbatim_string_literal] = ACTIONS(1293), - [aux_sym_preproc_if_token1] = ACTIONS(1297), + [anon_sym_stackalloc] = ACTIONS(1187), + [anon_sym_sizeof] = ACTIONS(1189), + [anon_sym_typeof] = ACTIONS(1191), + [anon_sym___makeref] = ACTIONS(1193), + [anon_sym___reftype] = ACTIONS(1195), + [anon_sym___refvalue] = ACTIONS(1197), + [sym_null_literal] = ACTIONS(1199), + [anon_sym_SQUOTE] = ACTIONS(1201), + [sym_integer_literal] = ACTIONS(1199), + [sym_real_literal] = ACTIONS(1203), + [anon_sym_DQUOTE] = ACTIONS(1205), + [sym_verbatim_string_literal] = ACTIONS(1203), + [aux_sym_preproc_if_token1] = ACTIONS(1801), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -348332,140 +352781,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(1299), - [sym_interpolation_verbatim_start] = ACTIONS(1301), - [sym_interpolation_raw_start] = ACTIONS(1303), - [sym_raw_string_start] = ACTIONS(1305), + [sym_interpolation_regular_start] = ACTIONS(1209), + [sym_interpolation_verbatim_start] = ACTIONS(1211), + [sym_interpolation_raw_start] = ACTIONS(1213), + [sym_raw_string_start] = ACTIONS(1215), }, - [1814] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2762), - [sym__name] = STATE(5892), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2316), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(3163), - [sym_non_lvalue_expression] = STATE(3438), - [sym_lvalue_expression] = STATE(3500), - [sym__expression_statement_expression] = STATE(3362), - [sym_assignment_expression] = STATE(3449), - [sym_binary_expression] = STATE(3362), - [sym_postfix_unary_expression] = STATE(3449), - [sym_prefix_unary_expression] = STATE(3449), - [sym__pointer_indirection_expression] = STATE(2747), - [sym_query_expression] = STATE(3362), - [sym_from_clause] = STATE(6147), - [sym_conditional_expression] = STATE(3362), - [sym_conditional_access_expression] = STATE(3362), - [sym_as_expression] = STATE(3362), - [sym_is_expression] = STATE(3362), - [sym_is_pattern_expression] = STATE(3362), - [sym_cast_expression] = STATE(3362), - [sym_checked_expression] = STATE(3362), - [sym_invocation_expression] = STATE(3449), - [sym_switch_expression] = STATE(3362), - [sym_await_expression] = STATE(3449), - [sym_throw_expression] = STATE(3362), - [sym_element_access_expression] = STATE(2747), - [sym_interpolated_string_expression] = STATE(3362), - [sym_member_access_expression] = STATE(2747), - [sym_object_creation_expression] = STATE(3449), - [sym_parenthesized_expression] = STATE(3449), - [sym__parenthesized_lvalue_expression] = STATE(2747), - [sym_lambda_expression] = STATE(3362), - [sym__lambda_expression_init] = STATE(7516), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3362), - [sym_anonymous_method_expression] = STATE(3362), - [sym_anonymous_object_creation_expression] = STATE(3362), - [sym_implicit_array_creation_expression] = STATE(3362), - [sym_implicit_object_creation_expression] = STATE(3362), - [sym_implicit_stackalloc_expression] = STATE(3362), - [sym_initializer_expression] = STATE(3362), - [sym_default_expression] = STATE(3362), - [sym_with_expression] = STATE(3362), - [sym_sizeof_expression] = STATE(3362), - [sym_typeof_expression] = STATE(3362), - [sym_makeref_expression] = STATE(3362), - [sym_ref_expression] = STATE(3362), - [sym_reftype_expression] = STATE(3362), - [sym_refvalue_expression] = STATE(3362), - [sym_stackalloc_expression] = STATE(3362), - [sym_range_expression] = STATE(3362), - [sym_tuple_expression] = STATE(2747), - [sym_literal] = STATE(3362), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2267), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3362), - [sym_preproc_if_in_attribute_list] = STATE(5576), - [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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3385), + [1841] = { + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2603), + [sym__name] = STATE(5862), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2193), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(4780), + [sym_non_lvalue_expression] = STATE(3220), + [sym_lvalue_expression] = STATE(3502), + [sym__expression_statement_expression] = STATE(3236), + [sym_assignment_expression] = STATE(3221), + [sym_binary_expression] = STATE(3236), + [sym_postfix_unary_expression] = STATE(3221), + [sym_prefix_unary_expression] = STATE(3221), + [sym__pointer_indirection_expression] = STATE(2602), + [sym_query_expression] = STATE(3236), + [sym_from_clause] = STATE(6136), + [sym_conditional_expression] = STATE(3236), + [sym_conditional_access_expression] = STATE(3236), + [sym_as_expression] = STATE(3236), + [sym_is_expression] = STATE(3236), + [sym_is_pattern_expression] = STATE(3236), + [sym_cast_expression] = STATE(3236), + [sym_checked_expression] = STATE(3236), + [sym_invocation_expression] = STATE(3221), + [sym_switch_expression] = STATE(3236), + [sym_await_expression] = STATE(3221), + [sym_throw_expression] = STATE(3236), + [sym_element_access_expression] = STATE(2602), + [sym_interpolated_string_expression] = STATE(3236), + [sym_member_access_expression] = STATE(2602), + [sym_object_creation_expression] = STATE(3221), + [sym_parenthesized_expression] = STATE(3221), + [sym__parenthesized_lvalue_expression] = STATE(2602), + [sym_lambda_expression] = STATE(3236), + [sym__lambda_expression_init] = STATE(7475), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3236), + [sym_anonymous_method_expression] = STATE(3236), + [sym_anonymous_object_creation_expression] = STATE(3236), + [sym_implicit_array_creation_expression] = STATE(3236), + [sym_implicit_object_creation_expression] = STATE(3236), + [sym_implicit_stackalloc_expression] = STATE(3236), + [sym_initializer_expression] = STATE(3236), + [sym_default_expression] = STATE(3236), + [sym_with_expression] = STATE(3236), + [sym_sizeof_expression] = STATE(3236), + [sym_typeof_expression] = STATE(3236), + [sym_makeref_expression] = STATE(3236), + [sym_ref_expression] = STATE(3236), + [sym_reftype_expression] = STATE(3236), + [sym_refvalue_expression] = STATE(3236), + [sym_stackalloc_expression] = STATE(3236), + [sym_range_expression] = STATE(3236), + [sym_tuple_expression] = STATE(2602), + [sym_literal] = STATE(3236), + [sym_character_literal] = STATE(3272), + [sym_string_literal] = STATE(3272), + [sym_raw_string_literal] = STATE(3272), + [sym_boolean_literal] = STATE(3272), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3236), + [sym_preproc_if_in_attribute_list] = STATE(5583), + [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(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3379), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1307), - [anon_sym_LPAREN] = ACTIONS(1609), - [anon_sym_ref] = ACTIONS(1611), - [anon_sym_LBRACE] = ACTIONS(1313), - [anon_sym_delegate] = ACTIONS(1315), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1149), + [anon_sym_LPAREN] = ACTIONS(1787), + [anon_sym_ref] = ACTIONS(1789), + [anon_sym_LBRACE] = ACTIONS(1155), + [anon_sym_delegate] = ACTIONS(1157), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1613), + [anon_sym_new] = ACTIONS(1159), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1319), - [anon_sym_BANG] = ACTIONS(1617), - [anon_sym_TILDE] = ACTIONS(1617), - [anon_sym_PLUS_PLUS] = ACTIONS(1617), - [anon_sym_DASH_DASH] = ACTIONS(1617), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1615), - [anon_sym_DASH] = ACTIONS(1615), - [anon_sym_STAR] = ACTIONS(1619), - [anon_sym_CARET] = ACTIONS(1617), - [anon_sym_AMP] = ACTIONS(1617), - [anon_sym_this] = ACTIONS(1323), + [anon_sym_checked] = ACTIONS(1163), + [anon_sym_BANG] = ACTIONS(1793), + [anon_sym_TILDE] = ACTIONS(1793), + [anon_sym_PLUS_PLUS] = ACTIONS(1793), + [anon_sym_DASH_DASH] = ACTIONS(1793), + [anon_sym_true] = ACTIONS(1169), + [anon_sym_false] = ACTIONS(1169), + [anon_sym_PLUS] = ACTIONS(1791), + [anon_sym_DASH] = ACTIONS(1791), + [anon_sym_STAR] = ACTIONS(1171), + [anon_sym_CARET] = ACTIONS(1793), + [anon_sym_AMP] = ACTIONS(1793), + [anon_sym_this] = ACTIONS(1173), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1325), + [anon_sym_base] = ACTIONS(1175), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1319), + [sym_predefined_type] = ACTIONS(1177), + [anon_sym_unchecked] = ACTIONS(1163), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1621), + [anon_sym_default] = ACTIONS(1179), + [anon_sym_throw] = ACTIONS(1795), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1623), - [anon_sym_DOT_DOT] = ACTIONS(1625), + [anon_sym_await] = ACTIONS(1797), + [anon_sym_DOT_DOT] = ACTIONS(1799), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -348478,19 +352927,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1333), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(1335), - [anon_sym___reftype] = ACTIONS(1337), - [anon_sym___refvalue] = ACTIONS(1339), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1341), + [anon_sym_stackalloc] = ACTIONS(1187), + [anon_sym_sizeof] = ACTIONS(1189), + [anon_sym_typeof] = ACTIONS(1191), + [anon_sym___makeref] = ACTIONS(1193), + [anon_sym___reftype] = ACTIONS(1195), + [anon_sym___refvalue] = ACTIONS(1197), + [sym_null_literal] = ACTIONS(1199), + [anon_sym_SQUOTE] = ACTIONS(1201), + [sym_integer_literal] = ACTIONS(1199), + [sym_real_literal] = ACTIONS(1203), + [anon_sym_DQUOTE] = ACTIONS(1205), + [sym_verbatim_string_literal] = ACTIONS(1203), + [aux_sym_preproc_if_token1] = ACTIONS(1801), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -348501,140 +352950,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(1209), + [sym_interpolation_verbatim_start] = ACTIONS(1211), + [sym_interpolation_raw_start] = ACTIONS(1213), + [sym_raw_string_start] = ACTIONS(1215), }, - [1815] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2420), - [sym__name] = STATE(5875), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2369), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(3998), - [sym_non_lvalue_expression] = STATE(3066), - [sym_lvalue_expression] = STATE(3109), - [sym__expression_statement_expression] = STATE(3006), - [sym_assignment_expression] = STATE(3020), - [sym_binary_expression] = STATE(3006), - [sym_postfix_unary_expression] = STATE(3020), - [sym_prefix_unary_expression] = STATE(3020), - [sym__pointer_indirection_expression] = STATE(2423), - [sym_query_expression] = STATE(3006), - [sym_from_clause] = STATE(6179), - [sym_conditional_expression] = STATE(3006), - [sym_conditional_access_expression] = STATE(3006), - [sym_as_expression] = STATE(3006), - [sym_is_expression] = STATE(3006), - [sym_is_pattern_expression] = STATE(3006), - [sym_cast_expression] = STATE(3006), - [sym_checked_expression] = STATE(3006), - [sym_invocation_expression] = STATE(3020), - [sym_switch_expression] = STATE(3006), - [sym_await_expression] = STATE(3020), - [sym_throw_expression] = STATE(3006), - [sym_element_access_expression] = STATE(2423), - [sym_interpolated_string_expression] = STATE(3006), - [sym_member_access_expression] = STATE(2423), - [sym_object_creation_expression] = STATE(3020), - [sym_parenthesized_expression] = STATE(3020), - [sym__parenthesized_lvalue_expression] = STATE(2423), - [sym_lambda_expression] = STATE(3006), - [sym__lambda_expression_init] = STATE(7522), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3006), - [sym_anonymous_method_expression] = STATE(3006), - [sym_anonymous_object_creation_expression] = STATE(3006), - [sym_implicit_array_creation_expression] = STATE(3006), - [sym_implicit_object_creation_expression] = STATE(3006), - [sym_implicit_stackalloc_expression] = STATE(3006), - [sym_initializer_expression] = STATE(3006), - [sym_default_expression] = STATE(3006), - [sym_with_expression] = STATE(3006), - [sym_sizeof_expression] = STATE(3006), - [sym_typeof_expression] = STATE(3006), - [sym_makeref_expression] = STATE(3006), - [sym_ref_expression] = STATE(3006), - [sym_reftype_expression] = STATE(3006), - [sym_refvalue_expression] = STATE(3006), - [sym_stackalloc_expression] = STATE(3006), - [sym_range_expression] = STATE(3006), - [sym_tuple_expression] = STATE(2423), - [sym_literal] = STATE(3006), - [sym_character_literal] = STATE(3011), - [sym_string_literal] = STATE(3011), - [sym_raw_string_literal] = STATE(3011), - [sym_boolean_literal] = STATE(3011), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3006), - [sym_preproc_if_in_attribute_list] = STATE(5576), - [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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3440), + [1842] = { + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2603), + [sym__name] = STATE(5862), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2193), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(4781), + [sym_non_lvalue_expression] = STATE(3220), + [sym_lvalue_expression] = STATE(3502), + [sym__expression_statement_expression] = STATE(3236), + [sym_assignment_expression] = STATE(3221), + [sym_binary_expression] = STATE(3236), + [sym_postfix_unary_expression] = STATE(3221), + [sym_prefix_unary_expression] = STATE(3221), + [sym__pointer_indirection_expression] = STATE(2602), + [sym_query_expression] = STATE(3236), + [sym_from_clause] = STATE(6136), + [sym_conditional_expression] = STATE(3236), + [sym_conditional_access_expression] = STATE(3236), + [sym_as_expression] = STATE(3236), + [sym_is_expression] = STATE(3236), + [sym_is_pattern_expression] = STATE(3236), + [sym_cast_expression] = STATE(3236), + [sym_checked_expression] = STATE(3236), + [sym_invocation_expression] = STATE(3221), + [sym_switch_expression] = STATE(3236), + [sym_await_expression] = STATE(3221), + [sym_throw_expression] = STATE(3236), + [sym_element_access_expression] = STATE(2602), + [sym_interpolated_string_expression] = STATE(3236), + [sym_member_access_expression] = STATE(2602), + [sym_object_creation_expression] = STATE(3221), + [sym_parenthesized_expression] = STATE(3221), + [sym__parenthesized_lvalue_expression] = STATE(2602), + [sym_lambda_expression] = STATE(3236), + [sym__lambda_expression_init] = STATE(7475), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3236), + [sym_anonymous_method_expression] = STATE(3236), + [sym_anonymous_object_creation_expression] = STATE(3236), + [sym_implicit_array_creation_expression] = STATE(3236), + [sym_implicit_object_creation_expression] = STATE(3236), + [sym_implicit_stackalloc_expression] = STATE(3236), + [sym_initializer_expression] = STATE(3236), + [sym_default_expression] = STATE(3236), + [sym_with_expression] = STATE(3236), + [sym_sizeof_expression] = STATE(3236), + [sym_typeof_expression] = STATE(3236), + [sym_makeref_expression] = STATE(3236), + [sym_ref_expression] = STATE(3236), + [sym_reftype_expression] = STATE(3236), + [sym_refvalue_expression] = STATE(3236), + [sym_stackalloc_expression] = STATE(3236), + [sym_range_expression] = STATE(3236), + [sym_tuple_expression] = STATE(2602), + [sym_literal] = STATE(3236), + [sym_character_literal] = STATE(3272), + [sym_string_literal] = STATE(3272), + [sym_raw_string_literal] = STATE(3272), + [sym_boolean_literal] = STATE(3272), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3236), + [sym_preproc_if_in_attribute_list] = STATE(5583), + [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(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3379), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1241), - [anon_sym_LPAREN] = ACTIONS(1841), - [anon_sym_ref] = ACTIONS(1843), - [anon_sym_LBRACE] = ACTIONS(1247), - [anon_sym_delegate] = ACTIONS(1249), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1149), + [anon_sym_LPAREN] = ACTIONS(1787), + [anon_sym_ref] = ACTIONS(1789), + [anon_sym_LBRACE] = ACTIONS(1155), + [anon_sym_delegate] = ACTIONS(1157), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1845), + [anon_sym_new] = ACTIONS(1159), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1253), - [anon_sym_BANG] = ACTIONS(1849), - [anon_sym_TILDE] = ACTIONS(1849), - [anon_sym_PLUS_PLUS] = ACTIONS(1849), - [anon_sym_DASH_DASH] = ACTIONS(1849), - [anon_sym_true] = ACTIONS(1259), - [anon_sym_false] = ACTIONS(1259), - [anon_sym_PLUS] = ACTIONS(1847), - [anon_sym_DASH] = ACTIONS(1847), - [anon_sym_STAR] = ACTIONS(1851), - [anon_sym_CARET] = ACTIONS(1849), - [anon_sym_AMP] = ACTIONS(1849), - [anon_sym_this] = ACTIONS(1263), + [anon_sym_checked] = ACTIONS(1163), + [anon_sym_BANG] = ACTIONS(1793), + [anon_sym_TILDE] = ACTIONS(1793), + [anon_sym_PLUS_PLUS] = ACTIONS(1793), + [anon_sym_DASH_DASH] = ACTIONS(1793), + [anon_sym_true] = ACTIONS(1169), + [anon_sym_false] = ACTIONS(1169), + [anon_sym_PLUS] = ACTIONS(1791), + [anon_sym_DASH] = ACTIONS(1791), + [anon_sym_STAR] = ACTIONS(1171), + [anon_sym_CARET] = ACTIONS(1793), + [anon_sym_AMP] = ACTIONS(1793), + [anon_sym_this] = ACTIONS(1173), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1265), + [anon_sym_base] = ACTIONS(1175), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1267), - [anon_sym_unchecked] = ACTIONS(1253), + [sym_predefined_type] = ACTIONS(1177), + [anon_sym_unchecked] = ACTIONS(1163), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1269), - [anon_sym_throw] = ACTIONS(1853), + [anon_sym_default] = ACTIONS(1179), + [anon_sym_throw] = ACTIONS(1795), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1855), - [anon_sym_DOT_DOT] = ACTIONS(1857), + [anon_sym_await] = ACTIONS(1797), + [anon_sym_DOT_DOT] = ACTIONS(1799), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -348647,19 +353096,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1277), - [anon_sym_sizeof] = ACTIONS(1279), - [anon_sym_typeof] = ACTIONS(1281), - [anon_sym___makeref] = ACTIONS(1283), - [anon_sym___reftype] = ACTIONS(1285), - [anon_sym___refvalue] = ACTIONS(1287), - [sym_null_literal] = ACTIONS(1289), - [anon_sym_SQUOTE] = ACTIONS(1291), - [sym_integer_literal] = ACTIONS(1289), - [sym_real_literal] = ACTIONS(1293), - [anon_sym_DQUOTE] = ACTIONS(1295), - [sym_verbatim_string_literal] = ACTIONS(1293), - [aux_sym_preproc_if_token1] = ACTIONS(1297), + [anon_sym_stackalloc] = ACTIONS(1187), + [anon_sym_sizeof] = ACTIONS(1189), + [anon_sym_typeof] = ACTIONS(1191), + [anon_sym___makeref] = ACTIONS(1193), + [anon_sym___reftype] = ACTIONS(1195), + [anon_sym___refvalue] = ACTIONS(1197), + [sym_null_literal] = ACTIONS(1199), + [anon_sym_SQUOTE] = ACTIONS(1201), + [sym_integer_literal] = ACTIONS(1199), + [sym_real_literal] = ACTIONS(1203), + [anon_sym_DQUOTE] = ACTIONS(1205), + [sym_verbatim_string_literal] = ACTIONS(1203), + [aux_sym_preproc_if_token1] = ACTIONS(1801), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -348670,140 +353119,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(1299), - [sym_interpolation_verbatim_start] = ACTIONS(1301), - [sym_interpolation_raw_start] = ACTIONS(1303), - [sym_raw_string_start] = ACTIONS(1305), + [sym_interpolation_regular_start] = ACTIONS(1209), + [sym_interpolation_verbatim_start] = ACTIONS(1211), + [sym_interpolation_raw_start] = ACTIONS(1213), + [sym_raw_string_start] = ACTIONS(1215), }, - [1816] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2420), - [sym__name] = STATE(5875), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2369), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(4051), - [sym_non_lvalue_expression] = STATE(3066), - [sym_lvalue_expression] = STATE(3109), - [sym__expression_statement_expression] = STATE(3006), - [sym_assignment_expression] = STATE(3020), - [sym_binary_expression] = STATE(3006), - [sym_postfix_unary_expression] = STATE(3020), - [sym_prefix_unary_expression] = STATE(3020), - [sym__pointer_indirection_expression] = STATE(2423), - [sym_query_expression] = STATE(3006), - [sym_from_clause] = STATE(6179), - [sym_conditional_expression] = STATE(3006), - [sym_conditional_access_expression] = STATE(3006), - [sym_as_expression] = STATE(3006), - [sym_is_expression] = STATE(3006), - [sym_is_pattern_expression] = STATE(3006), - [sym_cast_expression] = STATE(3006), - [sym_checked_expression] = STATE(3006), - [sym_invocation_expression] = STATE(3020), - [sym_switch_expression] = STATE(3006), - [sym_await_expression] = STATE(3020), - [sym_throw_expression] = STATE(3006), - [sym_element_access_expression] = STATE(2423), - [sym_interpolated_string_expression] = STATE(3006), - [sym_member_access_expression] = STATE(2423), - [sym_object_creation_expression] = STATE(3020), - [sym_parenthesized_expression] = STATE(3020), - [sym__parenthesized_lvalue_expression] = STATE(2423), - [sym_lambda_expression] = STATE(3006), - [sym__lambda_expression_init] = STATE(7522), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3006), - [sym_anonymous_method_expression] = STATE(3006), - [sym_anonymous_object_creation_expression] = STATE(3006), - [sym_implicit_array_creation_expression] = STATE(3006), - [sym_implicit_object_creation_expression] = STATE(3006), - [sym_implicit_stackalloc_expression] = STATE(3006), - [sym_initializer_expression] = STATE(3006), - [sym_default_expression] = STATE(3006), - [sym_with_expression] = STATE(3006), - [sym_sizeof_expression] = STATE(3006), - [sym_typeof_expression] = STATE(3006), - [sym_makeref_expression] = STATE(3006), - [sym_ref_expression] = STATE(3006), - [sym_reftype_expression] = STATE(3006), - [sym_refvalue_expression] = STATE(3006), - [sym_stackalloc_expression] = STATE(3006), - [sym_range_expression] = STATE(3006), - [sym_tuple_expression] = STATE(2423), - [sym_literal] = STATE(3006), - [sym_character_literal] = STATE(3011), - [sym_string_literal] = STATE(3011), - [sym_raw_string_literal] = STATE(3011), - [sym_boolean_literal] = STATE(3011), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3006), - [sym_preproc_if_in_attribute_list] = STATE(5576), - [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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3440), + [1843] = { + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2603), + [sym__name] = STATE(5862), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2193), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(4783), + [sym_non_lvalue_expression] = STATE(3220), + [sym_lvalue_expression] = STATE(3502), + [sym__expression_statement_expression] = STATE(3236), + [sym_assignment_expression] = STATE(3221), + [sym_binary_expression] = STATE(3236), + [sym_postfix_unary_expression] = STATE(3221), + [sym_prefix_unary_expression] = STATE(3221), + [sym__pointer_indirection_expression] = STATE(2602), + [sym_query_expression] = STATE(3236), + [sym_from_clause] = STATE(6136), + [sym_conditional_expression] = STATE(3236), + [sym_conditional_access_expression] = STATE(3236), + [sym_as_expression] = STATE(3236), + [sym_is_expression] = STATE(3236), + [sym_is_pattern_expression] = STATE(3236), + [sym_cast_expression] = STATE(3236), + [sym_checked_expression] = STATE(3236), + [sym_invocation_expression] = STATE(3221), + [sym_switch_expression] = STATE(3236), + [sym_await_expression] = STATE(3221), + [sym_throw_expression] = STATE(3236), + [sym_element_access_expression] = STATE(2602), + [sym_interpolated_string_expression] = STATE(3236), + [sym_member_access_expression] = STATE(2602), + [sym_object_creation_expression] = STATE(3221), + [sym_parenthesized_expression] = STATE(3221), + [sym__parenthesized_lvalue_expression] = STATE(2602), + [sym_lambda_expression] = STATE(3236), + [sym__lambda_expression_init] = STATE(7475), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3236), + [sym_anonymous_method_expression] = STATE(3236), + [sym_anonymous_object_creation_expression] = STATE(3236), + [sym_implicit_array_creation_expression] = STATE(3236), + [sym_implicit_object_creation_expression] = STATE(3236), + [sym_implicit_stackalloc_expression] = STATE(3236), + [sym_initializer_expression] = STATE(3236), + [sym_default_expression] = STATE(3236), + [sym_with_expression] = STATE(3236), + [sym_sizeof_expression] = STATE(3236), + [sym_typeof_expression] = STATE(3236), + [sym_makeref_expression] = STATE(3236), + [sym_ref_expression] = STATE(3236), + [sym_reftype_expression] = STATE(3236), + [sym_refvalue_expression] = STATE(3236), + [sym_stackalloc_expression] = STATE(3236), + [sym_range_expression] = STATE(3236), + [sym_tuple_expression] = STATE(2602), + [sym_literal] = STATE(3236), + [sym_character_literal] = STATE(3272), + [sym_string_literal] = STATE(3272), + [sym_raw_string_literal] = STATE(3272), + [sym_boolean_literal] = STATE(3272), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3236), + [sym_preproc_if_in_attribute_list] = STATE(5583), + [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(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3379), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1241), - [anon_sym_LPAREN] = ACTIONS(1841), - [anon_sym_ref] = ACTIONS(1843), - [anon_sym_LBRACE] = ACTIONS(1247), - [anon_sym_delegate] = ACTIONS(1249), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1149), + [anon_sym_LPAREN] = ACTIONS(1787), + [anon_sym_ref] = ACTIONS(1789), + [anon_sym_LBRACE] = ACTIONS(1155), + [anon_sym_delegate] = ACTIONS(1157), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1845), + [anon_sym_new] = ACTIONS(1159), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1253), - [anon_sym_BANG] = ACTIONS(1849), - [anon_sym_TILDE] = ACTIONS(1849), - [anon_sym_PLUS_PLUS] = ACTIONS(1849), - [anon_sym_DASH_DASH] = ACTIONS(1849), - [anon_sym_true] = ACTIONS(1259), - [anon_sym_false] = ACTIONS(1259), - [anon_sym_PLUS] = ACTIONS(1847), - [anon_sym_DASH] = ACTIONS(1847), - [anon_sym_STAR] = ACTIONS(1851), - [anon_sym_CARET] = ACTIONS(1849), - [anon_sym_AMP] = ACTIONS(1849), - [anon_sym_this] = ACTIONS(1263), + [anon_sym_checked] = ACTIONS(1163), + [anon_sym_BANG] = ACTIONS(1793), + [anon_sym_TILDE] = ACTIONS(1793), + [anon_sym_PLUS_PLUS] = ACTIONS(1793), + [anon_sym_DASH_DASH] = ACTIONS(1793), + [anon_sym_true] = ACTIONS(1169), + [anon_sym_false] = ACTIONS(1169), + [anon_sym_PLUS] = ACTIONS(1791), + [anon_sym_DASH] = ACTIONS(1791), + [anon_sym_STAR] = ACTIONS(1171), + [anon_sym_CARET] = ACTIONS(1793), + [anon_sym_AMP] = ACTIONS(1793), + [anon_sym_this] = ACTIONS(1173), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1265), + [anon_sym_base] = ACTIONS(1175), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1267), - [anon_sym_unchecked] = ACTIONS(1253), + [sym_predefined_type] = ACTIONS(1177), + [anon_sym_unchecked] = ACTIONS(1163), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1269), - [anon_sym_throw] = ACTIONS(1853), + [anon_sym_default] = ACTIONS(1179), + [anon_sym_throw] = ACTIONS(1795), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1855), - [anon_sym_DOT_DOT] = ACTIONS(1857), + [anon_sym_await] = ACTIONS(1797), + [anon_sym_DOT_DOT] = ACTIONS(1799), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -348816,19 +353265,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1277), - [anon_sym_sizeof] = ACTIONS(1279), - [anon_sym_typeof] = ACTIONS(1281), - [anon_sym___makeref] = ACTIONS(1283), - [anon_sym___reftype] = ACTIONS(1285), - [anon_sym___refvalue] = ACTIONS(1287), - [sym_null_literal] = ACTIONS(1289), - [anon_sym_SQUOTE] = ACTIONS(1291), - [sym_integer_literal] = ACTIONS(1289), - [sym_real_literal] = ACTIONS(1293), - [anon_sym_DQUOTE] = ACTIONS(1295), - [sym_verbatim_string_literal] = ACTIONS(1293), - [aux_sym_preproc_if_token1] = ACTIONS(1297), + [anon_sym_stackalloc] = ACTIONS(1187), + [anon_sym_sizeof] = ACTIONS(1189), + [anon_sym_typeof] = ACTIONS(1191), + [anon_sym___makeref] = ACTIONS(1193), + [anon_sym___reftype] = ACTIONS(1195), + [anon_sym___refvalue] = ACTIONS(1197), + [sym_null_literal] = ACTIONS(1199), + [anon_sym_SQUOTE] = ACTIONS(1201), + [sym_integer_literal] = ACTIONS(1199), + [sym_real_literal] = ACTIONS(1203), + [anon_sym_DQUOTE] = ACTIONS(1205), + [sym_verbatim_string_literal] = ACTIONS(1203), + [aux_sym_preproc_if_token1] = ACTIONS(1801), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -348839,140 +353288,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(1299), - [sym_interpolation_verbatim_start] = ACTIONS(1301), - [sym_interpolation_raw_start] = ACTIONS(1303), - [sym_raw_string_start] = ACTIONS(1305), + [sym_interpolation_regular_start] = ACTIONS(1209), + [sym_interpolation_verbatim_start] = ACTIONS(1211), + [sym_interpolation_raw_start] = ACTIONS(1213), + [sym_raw_string_start] = ACTIONS(1215), }, - [1817] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2420), - [sym__name] = STATE(5875), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2369), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(4052), - [sym_non_lvalue_expression] = STATE(3066), - [sym_lvalue_expression] = STATE(3109), - [sym__expression_statement_expression] = STATE(3006), - [sym_assignment_expression] = STATE(3020), - [sym_binary_expression] = STATE(3006), - [sym_postfix_unary_expression] = STATE(3020), - [sym_prefix_unary_expression] = STATE(3020), - [sym__pointer_indirection_expression] = STATE(2423), - [sym_query_expression] = STATE(3006), - [sym_from_clause] = STATE(6179), - [sym_conditional_expression] = STATE(3006), - [sym_conditional_access_expression] = STATE(3006), - [sym_as_expression] = STATE(3006), - [sym_is_expression] = STATE(3006), - [sym_is_pattern_expression] = STATE(3006), - [sym_cast_expression] = STATE(3006), - [sym_checked_expression] = STATE(3006), - [sym_invocation_expression] = STATE(3020), - [sym_switch_expression] = STATE(3006), - [sym_await_expression] = STATE(3020), - [sym_throw_expression] = STATE(3006), - [sym_element_access_expression] = STATE(2423), - [sym_interpolated_string_expression] = STATE(3006), - [sym_member_access_expression] = STATE(2423), - [sym_object_creation_expression] = STATE(3020), - [sym_parenthesized_expression] = STATE(3020), - [sym__parenthesized_lvalue_expression] = STATE(2423), - [sym_lambda_expression] = STATE(3006), - [sym__lambda_expression_init] = STATE(7522), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3006), - [sym_anonymous_method_expression] = STATE(3006), - [sym_anonymous_object_creation_expression] = STATE(3006), - [sym_implicit_array_creation_expression] = STATE(3006), - [sym_implicit_object_creation_expression] = STATE(3006), - [sym_implicit_stackalloc_expression] = STATE(3006), - [sym_initializer_expression] = STATE(3006), - [sym_default_expression] = STATE(3006), - [sym_with_expression] = STATE(3006), - [sym_sizeof_expression] = STATE(3006), - [sym_typeof_expression] = STATE(3006), - [sym_makeref_expression] = STATE(3006), - [sym_ref_expression] = STATE(3006), - [sym_reftype_expression] = STATE(3006), - [sym_refvalue_expression] = STATE(3006), - [sym_stackalloc_expression] = STATE(3006), - [sym_range_expression] = STATE(3006), - [sym_tuple_expression] = STATE(2423), - [sym_literal] = STATE(3006), - [sym_character_literal] = STATE(3011), - [sym_string_literal] = STATE(3011), - [sym_raw_string_literal] = STATE(3011), - [sym_boolean_literal] = STATE(3011), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3006), - [sym_preproc_if_in_attribute_list] = STATE(5576), - [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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3440), + [1844] = { + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2603), + [sym__name] = STATE(5862), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2193), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(4784), + [sym_non_lvalue_expression] = STATE(3220), + [sym_lvalue_expression] = STATE(3502), + [sym__expression_statement_expression] = STATE(3236), + [sym_assignment_expression] = STATE(3221), + [sym_binary_expression] = STATE(3236), + [sym_postfix_unary_expression] = STATE(3221), + [sym_prefix_unary_expression] = STATE(3221), + [sym__pointer_indirection_expression] = STATE(2602), + [sym_query_expression] = STATE(3236), + [sym_from_clause] = STATE(6136), + [sym_conditional_expression] = STATE(3236), + [sym_conditional_access_expression] = STATE(3236), + [sym_as_expression] = STATE(3236), + [sym_is_expression] = STATE(3236), + [sym_is_pattern_expression] = STATE(3236), + [sym_cast_expression] = STATE(3236), + [sym_checked_expression] = STATE(3236), + [sym_invocation_expression] = STATE(3221), + [sym_switch_expression] = STATE(3236), + [sym_await_expression] = STATE(3221), + [sym_throw_expression] = STATE(3236), + [sym_element_access_expression] = STATE(2602), + [sym_interpolated_string_expression] = STATE(3236), + [sym_member_access_expression] = STATE(2602), + [sym_object_creation_expression] = STATE(3221), + [sym_parenthesized_expression] = STATE(3221), + [sym__parenthesized_lvalue_expression] = STATE(2602), + [sym_lambda_expression] = STATE(3236), + [sym__lambda_expression_init] = STATE(7475), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3236), + [sym_anonymous_method_expression] = STATE(3236), + [sym_anonymous_object_creation_expression] = STATE(3236), + [sym_implicit_array_creation_expression] = STATE(3236), + [sym_implicit_object_creation_expression] = STATE(3236), + [sym_implicit_stackalloc_expression] = STATE(3236), + [sym_initializer_expression] = STATE(3236), + [sym_default_expression] = STATE(3236), + [sym_with_expression] = STATE(3236), + [sym_sizeof_expression] = STATE(3236), + [sym_typeof_expression] = STATE(3236), + [sym_makeref_expression] = STATE(3236), + [sym_ref_expression] = STATE(3236), + [sym_reftype_expression] = STATE(3236), + [sym_refvalue_expression] = STATE(3236), + [sym_stackalloc_expression] = STATE(3236), + [sym_range_expression] = STATE(3236), + [sym_tuple_expression] = STATE(2602), + [sym_literal] = STATE(3236), + [sym_character_literal] = STATE(3272), + [sym_string_literal] = STATE(3272), + [sym_raw_string_literal] = STATE(3272), + [sym_boolean_literal] = STATE(3272), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3236), + [sym_preproc_if_in_attribute_list] = STATE(5583), + [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(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3379), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1241), - [anon_sym_LPAREN] = ACTIONS(1841), - [anon_sym_ref] = ACTIONS(1843), - [anon_sym_LBRACE] = ACTIONS(1247), - [anon_sym_delegate] = ACTIONS(1249), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1149), + [anon_sym_LPAREN] = ACTIONS(1787), + [anon_sym_ref] = ACTIONS(1789), + [anon_sym_LBRACE] = ACTIONS(1155), + [anon_sym_delegate] = ACTIONS(1157), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1845), + [anon_sym_new] = ACTIONS(1159), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1253), - [anon_sym_BANG] = ACTIONS(1849), - [anon_sym_TILDE] = ACTIONS(1849), - [anon_sym_PLUS_PLUS] = ACTIONS(1849), - [anon_sym_DASH_DASH] = ACTIONS(1849), - [anon_sym_true] = ACTIONS(1259), - [anon_sym_false] = ACTIONS(1259), - [anon_sym_PLUS] = ACTIONS(1847), - [anon_sym_DASH] = ACTIONS(1847), - [anon_sym_STAR] = ACTIONS(1851), - [anon_sym_CARET] = ACTIONS(1849), - [anon_sym_AMP] = ACTIONS(1849), - [anon_sym_this] = ACTIONS(1263), + [anon_sym_checked] = ACTIONS(1163), + [anon_sym_BANG] = ACTIONS(1793), + [anon_sym_TILDE] = ACTIONS(1793), + [anon_sym_PLUS_PLUS] = ACTIONS(1793), + [anon_sym_DASH_DASH] = ACTIONS(1793), + [anon_sym_true] = ACTIONS(1169), + [anon_sym_false] = ACTIONS(1169), + [anon_sym_PLUS] = ACTIONS(1791), + [anon_sym_DASH] = ACTIONS(1791), + [anon_sym_STAR] = ACTIONS(1171), + [anon_sym_CARET] = ACTIONS(1793), + [anon_sym_AMP] = ACTIONS(1793), + [anon_sym_this] = ACTIONS(1173), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1265), + [anon_sym_base] = ACTIONS(1175), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1267), - [anon_sym_unchecked] = ACTIONS(1253), + [sym_predefined_type] = ACTIONS(1177), + [anon_sym_unchecked] = ACTIONS(1163), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1269), - [anon_sym_throw] = ACTIONS(1853), + [anon_sym_default] = ACTIONS(1179), + [anon_sym_throw] = ACTIONS(1795), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1855), - [anon_sym_DOT_DOT] = ACTIONS(1857), + [anon_sym_await] = ACTIONS(1797), + [anon_sym_DOT_DOT] = ACTIONS(1799), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -348985,19 +353434,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1277), - [anon_sym_sizeof] = ACTIONS(1279), - [anon_sym_typeof] = ACTIONS(1281), - [anon_sym___makeref] = ACTIONS(1283), - [anon_sym___reftype] = ACTIONS(1285), - [anon_sym___refvalue] = ACTIONS(1287), - [sym_null_literal] = ACTIONS(1289), - [anon_sym_SQUOTE] = ACTIONS(1291), - [sym_integer_literal] = ACTIONS(1289), - [sym_real_literal] = ACTIONS(1293), - [anon_sym_DQUOTE] = ACTIONS(1295), - [sym_verbatim_string_literal] = ACTIONS(1293), - [aux_sym_preproc_if_token1] = ACTIONS(1297), + [anon_sym_stackalloc] = ACTIONS(1187), + [anon_sym_sizeof] = ACTIONS(1189), + [anon_sym_typeof] = ACTIONS(1191), + [anon_sym___makeref] = ACTIONS(1193), + [anon_sym___reftype] = ACTIONS(1195), + [anon_sym___refvalue] = ACTIONS(1197), + [sym_null_literal] = ACTIONS(1199), + [anon_sym_SQUOTE] = ACTIONS(1201), + [sym_integer_literal] = ACTIONS(1199), + [sym_real_literal] = ACTIONS(1203), + [anon_sym_DQUOTE] = ACTIONS(1205), + [sym_verbatim_string_literal] = ACTIONS(1203), + [aux_sym_preproc_if_token1] = ACTIONS(1801), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -349008,140 +353457,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(1299), - [sym_interpolation_verbatim_start] = ACTIONS(1301), - [sym_interpolation_raw_start] = ACTIONS(1303), - [sym_raw_string_start] = ACTIONS(1305), + [sym_interpolation_regular_start] = ACTIONS(1209), + [sym_interpolation_verbatim_start] = ACTIONS(1211), + [sym_interpolation_raw_start] = ACTIONS(1213), + [sym_raw_string_start] = ACTIONS(1215), }, - [1818] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2420), - [sym__name] = STATE(5875), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2369), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(4053), - [sym_non_lvalue_expression] = STATE(3066), - [sym_lvalue_expression] = STATE(3109), - [sym__expression_statement_expression] = STATE(3006), - [sym_assignment_expression] = STATE(3020), - [sym_binary_expression] = STATE(3006), - [sym_postfix_unary_expression] = STATE(3020), - [sym_prefix_unary_expression] = STATE(3020), - [sym__pointer_indirection_expression] = STATE(2423), - [sym_query_expression] = STATE(3006), - [sym_from_clause] = STATE(6179), - [sym_conditional_expression] = STATE(3006), - [sym_conditional_access_expression] = STATE(3006), - [sym_as_expression] = STATE(3006), - [sym_is_expression] = STATE(3006), - [sym_is_pattern_expression] = STATE(3006), - [sym_cast_expression] = STATE(3006), - [sym_checked_expression] = STATE(3006), - [sym_invocation_expression] = STATE(3020), - [sym_switch_expression] = STATE(3006), - [sym_await_expression] = STATE(3020), - [sym_throw_expression] = STATE(3006), - [sym_element_access_expression] = STATE(2423), - [sym_interpolated_string_expression] = STATE(3006), - [sym_member_access_expression] = STATE(2423), - [sym_object_creation_expression] = STATE(3020), - [sym_parenthesized_expression] = STATE(3020), - [sym__parenthesized_lvalue_expression] = STATE(2423), - [sym_lambda_expression] = STATE(3006), - [sym__lambda_expression_init] = STATE(7522), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3006), - [sym_anonymous_method_expression] = STATE(3006), - [sym_anonymous_object_creation_expression] = STATE(3006), - [sym_implicit_array_creation_expression] = STATE(3006), - [sym_implicit_object_creation_expression] = STATE(3006), - [sym_implicit_stackalloc_expression] = STATE(3006), - [sym_initializer_expression] = STATE(3006), - [sym_default_expression] = STATE(3006), - [sym_with_expression] = STATE(3006), - [sym_sizeof_expression] = STATE(3006), - [sym_typeof_expression] = STATE(3006), - [sym_makeref_expression] = STATE(3006), - [sym_ref_expression] = STATE(3006), - [sym_reftype_expression] = STATE(3006), - [sym_refvalue_expression] = STATE(3006), - [sym_stackalloc_expression] = STATE(3006), - [sym_range_expression] = STATE(3006), - [sym_tuple_expression] = STATE(2423), - [sym_literal] = STATE(3006), - [sym_character_literal] = STATE(3011), - [sym_string_literal] = STATE(3011), - [sym_raw_string_literal] = STATE(3011), - [sym_boolean_literal] = STATE(3011), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3006), - [sym_preproc_if_in_attribute_list] = STATE(5576), - [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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3440), + [1845] = { + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2603), + [sym__name] = STATE(5862), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2193), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(4785), + [sym_non_lvalue_expression] = STATE(3220), + [sym_lvalue_expression] = STATE(3502), + [sym__expression_statement_expression] = STATE(3236), + [sym_assignment_expression] = STATE(3221), + [sym_binary_expression] = STATE(3236), + [sym_postfix_unary_expression] = STATE(3221), + [sym_prefix_unary_expression] = STATE(3221), + [sym__pointer_indirection_expression] = STATE(2602), + [sym_query_expression] = STATE(3236), + [sym_from_clause] = STATE(6136), + [sym_conditional_expression] = STATE(3236), + [sym_conditional_access_expression] = STATE(3236), + [sym_as_expression] = STATE(3236), + [sym_is_expression] = STATE(3236), + [sym_is_pattern_expression] = STATE(3236), + [sym_cast_expression] = STATE(3236), + [sym_checked_expression] = STATE(3236), + [sym_invocation_expression] = STATE(3221), + [sym_switch_expression] = STATE(3236), + [sym_await_expression] = STATE(3221), + [sym_throw_expression] = STATE(3236), + [sym_element_access_expression] = STATE(2602), + [sym_interpolated_string_expression] = STATE(3236), + [sym_member_access_expression] = STATE(2602), + [sym_object_creation_expression] = STATE(3221), + [sym_parenthesized_expression] = STATE(3221), + [sym__parenthesized_lvalue_expression] = STATE(2602), + [sym_lambda_expression] = STATE(3236), + [sym__lambda_expression_init] = STATE(7475), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3236), + [sym_anonymous_method_expression] = STATE(3236), + [sym_anonymous_object_creation_expression] = STATE(3236), + [sym_implicit_array_creation_expression] = STATE(3236), + [sym_implicit_object_creation_expression] = STATE(3236), + [sym_implicit_stackalloc_expression] = STATE(3236), + [sym_initializer_expression] = STATE(3236), + [sym_default_expression] = STATE(3236), + [sym_with_expression] = STATE(3236), + [sym_sizeof_expression] = STATE(3236), + [sym_typeof_expression] = STATE(3236), + [sym_makeref_expression] = STATE(3236), + [sym_ref_expression] = STATE(3236), + [sym_reftype_expression] = STATE(3236), + [sym_refvalue_expression] = STATE(3236), + [sym_stackalloc_expression] = STATE(3236), + [sym_range_expression] = STATE(3236), + [sym_tuple_expression] = STATE(2602), + [sym_literal] = STATE(3236), + [sym_character_literal] = STATE(3272), + [sym_string_literal] = STATE(3272), + [sym_raw_string_literal] = STATE(3272), + [sym_boolean_literal] = STATE(3272), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3236), + [sym_preproc_if_in_attribute_list] = STATE(5583), + [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(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3379), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1241), - [anon_sym_LPAREN] = ACTIONS(1841), - [anon_sym_ref] = ACTIONS(1843), - [anon_sym_LBRACE] = ACTIONS(1247), - [anon_sym_delegate] = ACTIONS(1249), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1149), + [anon_sym_LPAREN] = ACTIONS(1787), + [anon_sym_ref] = ACTIONS(1789), + [anon_sym_LBRACE] = ACTIONS(1155), + [anon_sym_delegate] = ACTIONS(1157), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1845), + [anon_sym_new] = ACTIONS(1159), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1253), - [anon_sym_BANG] = ACTIONS(1849), - [anon_sym_TILDE] = ACTIONS(1849), - [anon_sym_PLUS_PLUS] = ACTIONS(1849), - [anon_sym_DASH_DASH] = ACTIONS(1849), - [anon_sym_true] = ACTIONS(1259), - [anon_sym_false] = ACTIONS(1259), - [anon_sym_PLUS] = ACTIONS(1847), - [anon_sym_DASH] = ACTIONS(1847), - [anon_sym_STAR] = ACTIONS(1851), - [anon_sym_CARET] = ACTIONS(1849), - [anon_sym_AMP] = ACTIONS(1849), - [anon_sym_this] = ACTIONS(1263), + [anon_sym_checked] = ACTIONS(1163), + [anon_sym_BANG] = ACTIONS(1793), + [anon_sym_TILDE] = ACTIONS(1793), + [anon_sym_PLUS_PLUS] = ACTIONS(1793), + [anon_sym_DASH_DASH] = ACTIONS(1793), + [anon_sym_true] = ACTIONS(1169), + [anon_sym_false] = ACTIONS(1169), + [anon_sym_PLUS] = ACTIONS(1791), + [anon_sym_DASH] = ACTIONS(1791), + [anon_sym_STAR] = ACTIONS(1171), + [anon_sym_CARET] = ACTIONS(1793), + [anon_sym_AMP] = ACTIONS(1793), + [anon_sym_this] = ACTIONS(1173), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1265), + [anon_sym_base] = ACTIONS(1175), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1267), - [anon_sym_unchecked] = ACTIONS(1253), + [sym_predefined_type] = ACTIONS(1177), + [anon_sym_unchecked] = ACTIONS(1163), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1269), - [anon_sym_throw] = ACTIONS(1853), + [anon_sym_default] = ACTIONS(1179), + [anon_sym_throw] = ACTIONS(1795), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1855), - [anon_sym_DOT_DOT] = ACTIONS(1857), + [anon_sym_await] = ACTIONS(1797), + [anon_sym_DOT_DOT] = ACTIONS(1799), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -349154,19 +353603,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1277), - [anon_sym_sizeof] = ACTIONS(1279), - [anon_sym_typeof] = ACTIONS(1281), - [anon_sym___makeref] = ACTIONS(1283), - [anon_sym___reftype] = ACTIONS(1285), - [anon_sym___refvalue] = ACTIONS(1287), - [sym_null_literal] = ACTIONS(1289), - [anon_sym_SQUOTE] = ACTIONS(1291), - [sym_integer_literal] = ACTIONS(1289), - [sym_real_literal] = ACTIONS(1293), - [anon_sym_DQUOTE] = ACTIONS(1295), - [sym_verbatim_string_literal] = ACTIONS(1293), - [aux_sym_preproc_if_token1] = ACTIONS(1297), + [anon_sym_stackalloc] = ACTIONS(1187), + [anon_sym_sizeof] = ACTIONS(1189), + [anon_sym_typeof] = ACTIONS(1191), + [anon_sym___makeref] = ACTIONS(1193), + [anon_sym___reftype] = ACTIONS(1195), + [anon_sym___refvalue] = ACTIONS(1197), + [sym_null_literal] = ACTIONS(1199), + [anon_sym_SQUOTE] = ACTIONS(1201), + [sym_integer_literal] = ACTIONS(1199), + [sym_real_literal] = ACTIONS(1203), + [anon_sym_DQUOTE] = ACTIONS(1205), + [sym_verbatim_string_literal] = ACTIONS(1203), + [aux_sym_preproc_if_token1] = ACTIONS(1801), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -349177,140 +353626,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(1299), - [sym_interpolation_verbatim_start] = ACTIONS(1301), - [sym_interpolation_raw_start] = ACTIONS(1303), - [sym_raw_string_start] = ACTIONS(1305), + [sym_interpolation_regular_start] = ACTIONS(1209), + [sym_interpolation_verbatim_start] = ACTIONS(1211), + [sym_interpolation_raw_start] = ACTIONS(1213), + [sym_raw_string_start] = ACTIONS(1215), }, - [1819] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2420), - [sym__name] = STATE(5875), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2369), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(3999), - [sym_non_lvalue_expression] = STATE(3066), - [sym_lvalue_expression] = STATE(3109), - [sym__expression_statement_expression] = STATE(3006), - [sym_assignment_expression] = STATE(3020), - [sym_binary_expression] = STATE(3006), - [sym_postfix_unary_expression] = STATE(3020), - [sym_prefix_unary_expression] = STATE(3020), - [sym__pointer_indirection_expression] = STATE(2423), - [sym_query_expression] = STATE(3006), - [sym_from_clause] = STATE(6179), - [sym_conditional_expression] = STATE(3006), - [sym_conditional_access_expression] = STATE(3006), - [sym_as_expression] = STATE(3006), - [sym_is_expression] = STATE(3006), - [sym_is_pattern_expression] = STATE(3006), - [sym_cast_expression] = STATE(3006), - [sym_checked_expression] = STATE(3006), - [sym_invocation_expression] = STATE(3020), - [sym_switch_expression] = STATE(3006), - [sym_await_expression] = STATE(3020), - [sym_throw_expression] = STATE(3006), - [sym_element_access_expression] = STATE(2423), - [sym_interpolated_string_expression] = STATE(3006), - [sym_member_access_expression] = STATE(2423), - [sym_object_creation_expression] = STATE(3020), - [sym_parenthesized_expression] = STATE(3020), - [sym__parenthesized_lvalue_expression] = STATE(2423), - [sym_lambda_expression] = STATE(3006), - [sym__lambda_expression_init] = STATE(7522), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3006), - [sym_anonymous_method_expression] = STATE(3006), - [sym_anonymous_object_creation_expression] = STATE(3006), - [sym_implicit_array_creation_expression] = STATE(3006), - [sym_implicit_object_creation_expression] = STATE(3006), - [sym_implicit_stackalloc_expression] = STATE(3006), - [sym_initializer_expression] = STATE(3006), - [sym_default_expression] = STATE(3006), - [sym_with_expression] = STATE(3006), - [sym_sizeof_expression] = STATE(3006), - [sym_typeof_expression] = STATE(3006), - [sym_makeref_expression] = STATE(3006), - [sym_ref_expression] = STATE(3006), - [sym_reftype_expression] = STATE(3006), - [sym_refvalue_expression] = STATE(3006), - [sym_stackalloc_expression] = STATE(3006), - [sym_range_expression] = STATE(3006), - [sym_tuple_expression] = STATE(2423), - [sym_literal] = STATE(3006), - [sym_character_literal] = STATE(3011), - [sym_string_literal] = STATE(3011), - [sym_raw_string_literal] = STATE(3011), - [sym_boolean_literal] = STATE(3011), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3006), - [sym_preproc_if_in_attribute_list] = STATE(5576), - [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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3440), + [1846] = { + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2603), + [sym__name] = STATE(5862), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2193), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(4786), + [sym_non_lvalue_expression] = STATE(3220), + [sym_lvalue_expression] = STATE(3502), + [sym__expression_statement_expression] = STATE(3236), + [sym_assignment_expression] = STATE(3221), + [sym_binary_expression] = STATE(3236), + [sym_postfix_unary_expression] = STATE(3221), + [sym_prefix_unary_expression] = STATE(3221), + [sym__pointer_indirection_expression] = STATE(2602), + [sym_query_expression] = STATE(3236), + [sym_from_clause] = STATE(6136), + [sym_conditional_expression] = STATE(3236), + [sym_conditional_access_expression] = STATE(3236), + [sym_as_expression] = STATE(3236), + [sym_is_expression] = STATE(3236), + [sym_is_pattern_expression] = STATE(3236), + [sym_cast_expression] = STATE(3236), + [sym_checked_expression] = STATE(3236), + [sym_invocation_expression] = STATE(3221), + [sym_switch_expression] = STATE(3236), + [sym_await_expression] = STATE(3221), + [sym_throw_expression] = STATE(3236), + [sym_element_access_expression] = STATE(2602), + [sym_interpolated_string_expression] = STATE(3236), + [sym_member_access_expression] = STATE(2602), + [sym_object_creation_expression] = STATE(3221), + [sym_parenthesized_expression] = STATE(3221), + [sym__parenthesized_lvalue_expression] = STATE(2602), + [sym_lambda_expression] = STATE(3236), + [sym__lambda_expression_init] = STATE(7475), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3236), + [sym_anonymous_method_expression] = STATE(3236), + [sym_anonymous_object_creation_expression] = STATE(3236), + [sym_implicit_array_creation_expression] = STATE(3236), + [sym_implicit_object_creation_expression] = STATE(3236), + [sym_implicit_stackalloc_expression] = STATE(3236), + [sym_initializer_expression] = STATE(3236), + [sym_default_expression] = STATE(3236), + [sym_with_expression] = STATE(3236), + [sym_sizeof_expression] = STATE(3236), + [sym_typeof_expression] = STATE(3236), + [sym_makeref_expression] = STATE(3236), + [sym_ref_expression] = STATE(3236), + [sym_reftype_expression] = STATE(3236), + [sym_refvalue_expression] = STATE(3236), + [sym_stackalloc_expression] = STATE(3236), + [sym_range_expression] = STATE(3236), + [sym_tuple_expression] = STATE(2602), + [sym_literal] = STATE(3236), + [sym_character_literal] = STATE(3272), + [sym_string_literal] = STATE(3272), + [sym_raw_string_literal] = STATE(3272), + [sym_boolean_literal] = STATE(3272), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3236), + [sym_preproc_if_in_attribute_list] = STATE(5583), + [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(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3379), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1241), - [anon_sym_LPAREN] = ACTIONS(1841), - [anon_sym_ref] = ACTIONS(1843), - [anon_sym_LBRACE] = ACTIONS(1247), - [anon_sym_delegate] = ACTIONS(1249), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1149), + [anon_sym_LPAREN] = ACTIONS(1787), + [anon_sym_ref] = ACTIONS(1789), + [anon_sym_LBRACE] = ACTIONS(1155), + [anon_sym_delegate] = ACTIONS(1157), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1845), + [anon_sym_new] = ACTIONS(1159), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1253), - [anon_sym_BANG] = ACTIONS(1849), - [anon_sym_TILDE] = ACTIONS(1849), - [anon_sym_PLUS_PLUS] = ACTIONS(1849), - [anon_sym_DASH_DASH] = ACTIONS(1849), - [anon_sym_true] = ACTIONS(1259), - [anon_sym_false] = ACTIONS(1259), - [anon_sym_PLUS] = ACTIONS(1847), - [anon_sym_DASH] = ACTIONS(1847), - [anon_sym_STAR] = ACTIONS(1851), - [anon_sym_CARET] = ACTIONS(1849), - [anon_sym_AMP] = ACTIONS(1849), - [anon_sym_this] = ACTIONS(1263), + [anon_sym_checked] = ACTIONS(1163), + [anon_sym_BANG] = ACTIONS(1793), + [anon_sym_TILDE] = ACTIONS(1793), + [anon_sym_PLUS_PLUS] = ACTIONS(1793), + [anon_sym_DASH_DASH] = ACTIONS(1793), + [anon_sym_true] = ACTIONS(1169), + [anon_sym_false] = ACTIONS(1169), + [anon_sym_PLUS] = ACTIONS(1791), + [anon_sym_DASH] = ACTIONS(1791), + [anon_sym_STAR] = ACTIONS(1171), + [anon_sym_CARET] = ACTIONS(1793), + [anon_sym_AMP] = ACTIONS(1793), + [anon_sym_this] = ACTIONS(1173), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1265), + [anon_sym_base] = ACTIONS(1175), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1267), - [anon_sym_unchecked] = ACTIONS(1253), + [sym_predefined_type] = ACTIONS(1177), + [anon_sym_unchecked] = ACTIONS(1163), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1269), - [anon_sym_throw] = ACTIONS(1853), + [anon_sym_default] = ACTIONS(1179), + [anon_sym_throw] = ACTIONS(1795), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1855), - [anon_sym_DOT_DOT] = ACTIONS(1857), + [anon_sym_await] = ACTIONS(1797), + [anon_sym_DOT_DOT] = ACTIONS(1799), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -349323,19 +353772,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1277), - [anon_sym_sizeof] = ACTIONS(1279), - [anon_sym_typeof] = ACTIONS(1281), - [anon_sym___makeref] = ACTIONS(1283), - [anon_sym___reftype] = ACTIONS(1285), - [anon_sym___refvalue] = ACTIONS(1287), - [sym_null_literal] = ACTIONS(1289), - [anon_sym_SQUOTE] = ACTIONS(1291), - [sym_integer_literal] = ACTIONS(1289), - [sym_real_literal] = ACTIONS(1293), - [anon_sym_DQUOTE] = ACTIONS(1295), - [sym_verbatim_string_literal] = ACTIONS(1293), - [aux_sym_preproc_if_token1] = ACTIONS(1297), + [anon_sym_stackalloc] = ACTIONS(1187), + [anon_sym_sizeof] = ACTIONS(1189), + [anon_sym_typeof] = ACTIONS(1191), + [anon_sym___makeref] = ACTIONS(1193), + [anon_sym___reftype] = ACTIONS(1195), + [anon_sym___refvalue] = ACTIONS(1197), + [sym_null_literal] = ACTIONS(1199), + [anon_sym_SQUOTE] = ACTIONS(1201), + [sym_integer_literal] = ACTIONS(1199), + [sym_real_literal] = ACTIONS(1203), + [anon_sym_DQUOTE] = ACTIONS(1205), + [sym_verbatim_string_literal] = ACTIONS(1203), + [aux_sym_preproc_if_token1] = ACTIONS(1801), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -349346,140 +353795,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(1299), - [sym_interpolation_verbatim_start] = ACTIONS(1301), - [sym_interpolation_raw_start] = ACTIONS(1303), - [sym_raw_string_start] = ACTIONS(1305), + [sym_interpolation_regular_start] = ACTIONS(1209), + [sym_interpolation_verbatim_start] = ACTIONS(1211), + [sym_interpolation_raw_start] = ACTIONS(1213), + [sym_raw_string_start] = ACTIONS(1215), }, - [1820] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2420), - [sym__name] = STATE(5875), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2369), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(4000), - [sym_non_lvalue_expression] = STATE(3066), - [sym_lvalue_expression] = STATE(3109), - [sym__expression_statement_expression] = STATE(3006), - [sym_assignment_expression] = STATE(3020), - [sym_binary_expression] = STATE(3006), - [sym_postfix_unary_expression] = STATE(3020), - [sym_prefix_unary_expression] = STATE(3020), - [sym__pointer_indirection_expression] = STATE(2423), - [sym_query_expression] = STATE(3006), - [sym_from_clause] = STATE(6179), - [sym_conditional_expression] = STATE(3006), - [sym_conditional_access_expression] = STATE(3006), - [sym_as_expression] = STATE(3006), - [sym_is_expression] = STATE(3006), - [sym_is_pattern_expression] = STATE(3006), - [sym_cast_expression] = STATE(3006), - [sym_checked_expression] = STATE(3006), - [sym_invocation_expression] = STATE(3020), - [sym_switch_expression] = STATE(3006), - [sym_await_expression] = STATE(3020), - [sym_throw_expression] = STATE(3006), - [sym_element_access_expression] = STATE(2423), - [sym_interpolated_string_expression] = STATE(3006), - [sym_member_access_expression] = STATE(2423), - [sym_object_creation_expression] = STATE(3020), - [sym_parenthesized_expression] = STATE(3020), - [sym__parenthesized_lvalue_expression] = STATE(2423), - [sym_lambda_expression] = STATE(3006), - [sym__lambda_expression_init] = STATE(7522), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3006), - [sym_anonymous_method_expression] = STATE(3006), - [sym_anonymous_object_creation_expression] = STATE(3006), - [sym_implicit_array_creation_expression] = STATE(3006), - [sym_implicit_object_creation_expression] = STATE(3006), - [sym_implicit_stackalloc_expression] = STATE(3006), - [sym_initializer_expression] = STATE(3006), - [sym_default_expression] = STATE(3006), - [sym_with_expression] = STATE(3006), - [sym_sizeof_expression] = STATE(3006), - [sym_typeof_expression] = STATE(3006), - [sym_makeref_expression] = STATE(3006), - [sym_ref_expression] = STATE(3006), - [sym_reftype_expression] = STATE(3006), - [sym_refvalue_expression] = STATE(3006), - [sym_stackalloc_expression] = STATE(3006), - [sym_range_expression] = STATE(3006), - [sym_tuple_expression] = STATE(2423), - [sym_literal] = STATE(3006), - [sym_character_literal] = STATE(3011), - [sym_string_literal] = STATE(3011), - [sym_raw_string_literal] = STATE(3011), - [sym_boolean_literal] = STATE(3011), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3006), - [sym_preproc_if_in_attribute_list] = STATE(5576), - [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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3440), + [1847] = { + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2603), + [sym__name] = STATE(5862), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2193), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(3133), + [sym_non_lvalue_expression] = STATE(3220), + [sym_lvalue_expression] = STATE(3502), + [sym__expression_statement_expression] = STATE(3236), + [sym_assignment_expression] = STATE(3221), + [sym_binary_expression] = STATE(3236), + [sym_postfix_unary_expression] = STATE(3221), + [sym_prefix_unary_expression] = STATE(3221), + [sym__pointer_indirection_expression] = STATE(2602), + [sym_query_expression] = STATE(3236), + [sym_from_clause] = STATE(6136), + [sym_conditional_expression] = STATE(3236), + [sym_conditional_access_expression] = STATE(3236), + [sym_as_expression] = STATE(3236), + [sym_is_expression] = STATE(3236), + [sym_is_pattern_expression] = STATE(3236), + [sym_cast_expression] = STATE(3236), + [sym_checked_expression] = STATE(3236), + [sym_invocation_expression] = STATE(3221), + [sym_switch_expression] = STATE(3236), + [sym_await_expression] = STATE(3221), + [sym_throw_expression] = STATE(3236), + [sym_element_access_expression] = STATE(2602), + [sym_interpolated_string_expression] = STATE(3236), + [sym_member_access_expression] = STATE(2602), + [sym_object_creation_expression] = STATE(3221), + [sym_parenthesized_expression] = STATE(3221), + [sym__parenthesized_lvalue_expression] = STATE(2602), + [sym_lambda_expression] = STATE(3236), + [sym__lambda_expression_init] = STATE(7475), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3236), + [sym_anonymous_method_expression] = STATE(3236), + [sym_anonymous_object_creation_expression] = STATE(3236), + [sym_implicit_array_creation_expression] = STATE(3236), + [sym_implicit_object_creation_expression] = STATE(3236), + [sym_implicit_stackalloc_expression] = STATE(3236), + [sym_initializer_expression] = STATE(3236), + [sym_default_expression] = STATE(3236), + [sym_with_expression] = STATE(3236), + [sym_sizeof_expression] = STATE(3236), + [sym_typeof_expression] = STATE(3236), + [sym_makeref_expression] = STATE(3236), + [sym_ref_expression] = STATE(3236), + [sym_reftype_expression] = STATE(3236), + [sym_refvalue_expression] = STATE(3236), + [sym_stackalloc_expression] = STATE(3236), + [sym_range_expression] = STATE(3236), + [sym_tuple_expression] = STATE(2602), + [sym_literal] = STATE(3236), + [sym_character_literal] = STATE(3272), + [sym_string_literal] = STATE(3272), + [sym_raw_string_literal] = STATE(3272), + [sym_boolean_literal] = STATE(3272), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3236), + [sym_preproc_if_in_attribute_list] = STATE(5583), + [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(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3379), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1241), - [anon_sym_LPAREN] = ACTIONS(1841), - [anon_sym_ref] = ACTIONS(1843), - [anon_sym_LBRACE] = ACTIONS(1247), - [anon_sym_delegate] = ACTIONS(1249), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1149), + [anon_sym_LPAREN] = ACTIONS(1787), + [anon_sym_ref] = ACTIONS(1789), + [anon_sym_LBRACE] = ACTIONS(1155), + [anon_sym_delegate] = ACTIONS(1157), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1845), + [anon_sym_new] = ACTIONS(1159), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1253), - [anon_sym_BANG] = ACTIONS(1849), - [anon_sym_TILDE] = ACTIONS(1849), - [anon_sym_PLUS_PLUS] = ACTIONS(1849), - [anon_sym_DASH_DASH] = ACTIONS(1849), - [anon_sym_true] = ACTIONS(1259), - [anon_sym_false] = ACTIONS(1259), - [anon_sym_PLUS] = ACTIONS(1847), - [anon_sym_DASH] = ACTIONS(1847), - [anon_sym_STAR] = ACTIONS(1851), - [anon_sym_CARET] = ACTIONS(1849), - [anon_sym_AMP] = ACTIONS(1849), - [anon_sym_this] = ACTIONS(1263), + [anon_sym_checked] = ACTIONS(1163), + [anon_sym_BANG] = ACTIONS(1793), + [anon_sym_TILDE] = ACTIONS(1793), + [anon_sym_PLUS_PLUS] = ACTIONS(1793), + [anon_sym_DASH_DASH] = ACTIONS(1793), + [anon_sym_true] = ACTIONS(1169), + [anon_sym_false] = ACTIONS(1169), + [anon_sym_PLUS] = ACTIONS(1791), + [anon_sym_DASH] = ACTIONS(1791), + [anon_sym_STAR] = ACTIONS(1171), + [anon_sym_CARET] = ACTIONS(1793), + [anon_sym_AMP] = ACTIONS(1793), + [anon_sym_this] = ACTIONS(1173), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1265), + [anon_sym_base] = ACTIONS(1175), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1267), - [anon_sym_unchecked] = ACTIONS(1253), + [sym_predefined_type] = ACTIONS(1177), + [anon_sym_unchecked] = ACTIONS(1163), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1269), - [anon_sym_throw] = ACTIONS(1853), + [anon_sym_default] = ACTIONS(1179), + [anon_sym_throw] = ACTIONS(1795), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1855), - [anon_sym_DOT_DOT] = ACTIONS(1857), + [anon_sym_await] = ACTIONS(1797), + [anon_sym_DOT_DOT] = ACTIONS(1799), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -349492,19 +353941,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1277), - [anon_sym_sizeof] = ACTIONS(1279), - [anon_sym_typeof] = ACTIONS(1281), - [anon_sym___makeref] = ACTIONS(1283), - [anon_sym___reftype] = ACTIONS(1285), - [anon_sym___refvalue] = ACTIONS(1287), - [sym_null_literal] = ACTIONS(1289), - [anon_sym_SQUOTE] = ACTIONS(1291), - [sym_integer_literal] = ACTIONS(1289), - [sym_real_literal] = ACTIONS(1293), - [anon_sym_DQUOTE] = ACTIONS(1295), - [sym_verbatim_string_literal] = ACTIONS(1293), - [aux_sym_preproc_if_token1] = ACTIONS(1297), + [anon_sym_stackalloc] = ACTIONS(1187), + [anon_sym_sizeof] = ACTIONS(1189), + [anon_sym_typeof] = ACTIONS(1191), + [anon_sym___makeref] = ACTIONS(1193), + [anon_sym___reftype] = ACTIONS(1195), + [anon_sym___refvalue] = ACTIONS(1197), + [sym_null_literal] = ACTIONS(1199), + [anon_sym_SQUOTE] = ACTIONS(1201), + [sym_integer_literal] = ACTIONS(1199), + [sym_real_literal] = ACTIONS(1203), + [anon_sym_DQUOTE] = ACTIONS(1205), + [sym_verbatim_string_literal] = ACTIONS(1203), + [aux_sym_preproc_if_token1] = ACTIONS(1801), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -349515,140 +353964,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(1299), - [sym_interpolation_verbatim_start] = ACTIONS(1301), - [sym_interpolation_raw_start] = ACTIONS(1303), - [sym_raw_string_start] = ACTIONS(1305), + [sym_interpolation_regular_start] = ACTIONS(1209), + [sym_interpolation_verbatim_start] = ACTIONS(1211), + [sym_interpolation_raw_start] = ACTIONS(1213), + [sym_raw_string_start] = ACTIONS(1215), }, - [1821] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2420), - [sym__name] = STATE(5875), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2369), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(4001), - [sym_non_lvalue_expression] = STATE(3066), - [sym_lvalue_expression] = STATE(3109), - [sym__expression_statement_expression] = STATE(3006), - [sym_assignment_expression] = STATE(3020), - [sym_binary_expression] = STATE(3006), - [sym_postfix_unary_expression] = STATE(3020), - [sym_prefix_unary_expression] = STATE(3020), - [sym__pointer_indirection_expression] = STATE(2423), - [sym_query_expression] = STATE(3006), - [sym_from_clause] = STATE(6179), - [sym_conditional_expression] = STATE(3006), - [sym_conditional_access_expression] = STATE(3006), - [sym_as_expression] = STATE(3006), - [sym_is_expression] = STATE(3006), - [sym_is_pattern_expression] = STATE(3006), - [sym_cast_expression] = STATE(3006), - [sym_checked_expression] = STATE(3006), - [sym_invocation_expression] = STATE(3020), - [sym_switch_expression] = STATE(3006), - [sym_await_expression] = STATE(3020), - [sym_throw_expression] = STATE(3006), - [sym_element_access_expression] = STATE(2423), - [sym_interpolated_string_expression] = STATE(3006), - [sym_member_access_expression] = STATE(2423), - [sym_object_creation_expression] = STATE(3020), - [sym_parenthesized_expression] = STATE(3020), - [sym__parenthesized_lvalue_expression] = STATE(2423), - [sym_lambda_expression] = STATE(3006), - [sym__lambda_expression_init] = STATE(7522), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3006), - [sym_anonymous_method_expression] = STATE(3006), - [sym_anonymous_object_creation_expression] = STATE(3006), - [sym_implicit_array_creation_expression] = STATE(3006), - [sym_implicit_object_creation_expression] = STATE(3006), - [sym_implicit_stackalloc_expression] = STATE(3006), - [sym_initializer_expression] = STATE(3006), - [sym_default_expression] = STATE(3006), - [sym_with_expression] = STATE(3006), - [sym_sizeof_expression] = STATE(3006), - [sym_typeof_expression] = STATE(3006), - [sym_makeref_expression] = STATE(3006), - [sym_ref_expression] = STATE(3006), - [sym_reftype_expression] = STATE(3006), - [sym_refvalue_expression] = STATE(3006), - [sym_stackalloc_expression] = STATE(3006), - [sym_range_expression] = STATE(3006), - [sym_tuple_expression] = STATE(2423), - [sym_literal] = STATE(3006), - [sym_character_literal] = STATE(3011), - [sym_string_literal] = STATE(3011), - [sym_raw_string_literal] = STATE(3011), - [sym_boolean_literal] = STATE(3011), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3006), - [sym_preproc_if_in_attribute_list] = STATE(5576), - [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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3440), + [1848] = { + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2603), + [sym__name] = STATE(5862), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2193), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(4791), + [sym_non_lvalue_expression] = STATE(3220), + [sym_lvalue_expression] = STATE(3502), + [sym__expression_statement_expression] = STATE(3236), + [sym_assignment_expression] = STATE(3221), + [sym_binary_expression] = STATE(3236), + [sym_postfix_unary_expression] = STATE(3221), + [sym_prefix_unary_expression] = STATE(3221), + [sym__pointer_indirection_expression] = STATE(2602), + [sym_query_expression] = STATE(3236), + [sym_from_clause] = STATE(6136), + [sym_conditional_expression] = STATE(3236), + [sym_conditional_access_expression] = STATE(3236), + [sym_as_expression] = STATE(3236), + [sym_is_expression] = STATE(3236), + [sym_is_pattern_expression] = STATE(3236), + [sym_cast_expression] = STATE(3236), + [sym_checked_expression] = STATE(3236), + [sym_invocation_expression] = STATE(3221), + [sym_switch_expression] = STATE(3236), + [sym_await_expression] = STATE(3221), + [sym_throw_expression] = STATE(3236), + [sym_element_access_expression] = STATE(2602), + [sym_interpolated_string_expression] = STATE(3236), + [sym_member_access_expression] = STATE(2602), + [sym_object_creation_expression] = STATE(3221), + [sym_parenthesized_expression] = STATE(3221), + [sym__parenthesized_lvalue_expression] = STATE(2602), + [sym_lambda_expression] = STATE(3236), + [sym__lambda_expression_init] = STATE(7475), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3236), + [sym_anonymous_method_expression] = STATE(3236), + [sym_anonymous_object_creation_expression] = STATE(3236), + [sym_implicit_array_creation_expression] = STATE(3236), + [sym_implicit_object_creation_expression] = STATE(3236), + [sym_implicit_stackalloc_expression] = STATE(3236), + [sym_initializer_expression] = STATE(3236), + [sym_default_expression] = STATE(3236), + [sym_with_expression] = STATE(3236), + [sym_sizeof_expression] = STATE(3236), + [sym_typeof_expression] = STATE(3236), + [sym_makeref_expression] = STATE(3236), + [sym_ref_expression] = STATE(3236), + [sym_reftype_expression] = STATE(3236), + [sym_refvalue_expression] = STATE(3236), + [sym_stackalloc_expression] = STATE(3236), + [sym_range_expression] = STATE(3236), + [sym_tuple_expression] = STATE(2602), + [sym_literal] = STATE(3236), + [sym_character_literal] = STATE(3272), + [sym_string_literal] = STATE(3272), + [sym_raw_string_literal] = STATE(3272), + [sym_boolean_literal] = STATE(3272), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3236), + [sym_preproc_if_in_attribute_list] = STATE(5583), + [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(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3379), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1241), - [anon_sym_LPAREN] = ACTIONS(1841), - [anon_sym_ref] = ACTIONS(1843), - [anon_sym_LBRACE] = ACTIONS(1247), - [anon_sym_delegate] = ACTIONS(1249), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1149), + [anon_sym_LPAREN] = ACTIONS(1787), + [anon_sym_ref] = ACTIONS(1789), + [anon_sym_LBRACE] = ACTIONS(1155), + [anon_sym_delegate] = ACTIONS(1157), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1845), + [anon_sym_new] = ACTIONS(1159), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1253), - [anon_sym_BANG] = ACTIONS(1849), - [anon_sym_TILDE] = ACTIONS(1849), - [anon_sym_PLUS_PLUS] = ACTIONS(1849), - [anon_sym_DASH_DASH] = ACTIONS(1849), - [anon_sym_true] = ACTIONS(1259), - [anon_sym_false] = ACTIONS(1259), - [anon_sym_PLUS] = ACTIONS(1847), - [anon_sym_DASH] = ACTIONS(1847), - [anon_sym_STAR] = ACTIONS(1851), - [anon_sym_CARET] = ACTIONS(1849), - [anon_sym_AMP] = ACTIONS(1849), - [anon_sym_this] = ACTIONS(1263), + [anon_sym_checked] = ACTIONS(1163), + [anon_sym_BANG] = ACTIONS(1793), + [anon_sym_TILDE] = ACTIONS(1793), + [anon_sym_PLUS_PLUS] = ACTIONS(1793), + [anon_sym_DASH_DASH] = ACTIONS(1793), + [anon_sym_true] = ACTIONS(1169), + [anon_sym_false] = ACTIONS(1169), + [anon_sym_PLUS] = ACTIONS(1791), + [anon_sym_DASH] = ACTIONS(1791), + [anon_sym_STAR] = ACTIONS(1171), + [anon_sym_CARET] = ACTIONS(1793), + [anon_sym_AMP] = ACTIONS(1793), + [anon_sym_this] = ACTIONS(1173), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1265), + [anon_sym_base] = ACTIONS(1175), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1267), - [anon_sym_unchecked] = ACTIONS(1253), + [sym_predefined_type] = ACTIONS(1177), + [anon_sym_unchecked] = ACTIONS(1163), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1269), - [anon_sym_throw] = ACTIONS(1853), + [anon_sym_default] = ACTIONS(1179), + [anon_sym_throw] = ACTIONS(1795), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1855), - [anon_sym_DOT_DOT] = ACTIONS(1857), + [anon_sym_await] = ACTIONS(1797), + [anon_sym_DOT_DOT] = ACTIONS(1799), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -349661,19 +354110,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1277), - [anon_sym_sizeof] = ACTIONS(1279), - [anon_sym_typeof] = ACTIONS(1281), - [anon_sym___makeref] = ACTIONS(1283), - [anon_sym___reftype] = ACTIONS(1285), - [anon_sym___refvalue] = ACTIONS(1287), - [sym_null_literal] = ACTIONS(1289), - [anon_sym_SQUOTE] = ACTIONS(1291), - [sym_integer_literal] = ACTIONS(1289), - [sym_real_literal] = ACTIONS(1293), - [anon_sym_DQUOTE] = ACTIONS(1295), - [sym_verbatim_string_literal] = ACTIONS(1293), - [aux_sym_preproc_if_token1] = ACTIONS(1297), + [anon_sym_stackalloc] = ACTIONS(1187), + [anon_sym_sizeof] = ACTIONS(1189), + [anon_sym_typeof] = ACTIONS(1191), + [anon_sym___makeref] = ACTIONS(1193), + [anon_sym___reftype] = ACTIONS(1195), + [anon_sym___refvalue] = ACTIONS(1197), + [sym_null_literal] = ACTIONS(1199), + [anon_sym_SQUOTE] = ACTIONS(1201), + [sym_integer_literal] = ACTIONS(1199), + [sym_real_literal] = ACTIONS(1203), + [anon_sym_DQUOTE] = ACTIONS(1205), + [sym_verbatim_string_literal] = ACTIONS(1203), + [aux_sym_preproc_if_token1] = ACTIONS(1801), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -349684,140 +354133,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(1299), - [sym_interpolation_verbatim_start] = ACTIONS(1301), - [sym_interpolation_raw_start] = ACTIONS(1303), - [sym_raw_string_start] = ACTIONS(1305), + [sym_interpolation_regular_start] = ACTIONS(1209), + [sym_interpolation_verbatim_start] = ACTIONS(1211), + [sym_interpolation_raw_start] = ACTIONS(1213), + [sym_raw_string_start] = ACTIONS(1215), }, - [1822] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2420), - [sym__name] = STATE(5875), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2369), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(4054), - [sym_non_lvalue_expression] = STATE(3066), - [sym_lvalue_expression] = STATE(3109), - [sym__expression_statement_expression] = STATE(3006), - [sym_assignment_expression] = STATE(3020), - [sym_binary_expression] = STATE(3006), - [sym_postfix_unary_expression] = STATE(3020), - [sym_prefix_unary_expression] = STATE(3020), - [sym__pointer_indirection_expression] = STATE(2423), - [sym_query_expression] = STATE(3006), - [sym_from_clause] = STATE(6179), - [sym_conditional_expression] = STATE(3006), - [sym_conditional_access_expression] = STATE(3006), - [sym_as_expression] = STATE(3006), - [sym_is_expression] = STATE(3006), - [sym_is_pattern_expression] = STATE(3006), - [sym_cast_expression] = STATE(3006), - [sym_checked_expression] = STATE(3006), - [sym_invocation_expression] = STATE(3020), - [sym_switch_expression] = STATE(3006), - [sym_await_expression] = STATE(3020), - [sym_throw_expression] = STATE(3006), - [sym_element_access_expression] = STATE(2423), - [sym_interpolated_string_expression] = STATE(3006), - [sym_member_access_expression] = STATE(2423), - [sym_object_creation_expression] = STATE(3020), - [sym_parenthesized_expression] = STATE(3020), - [sym__parenthesized_lvalue_expression] = STATE(2423), - [sym_lambda_expression] = STATE(3006), - [sym__lambda_expression_init] = STATE(7522), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3006), - [sym_anonymous_method_expression] = STATE(3006), - [sym_anonymous_object_creation_expression] = STATE(3006), - [sym_implicit_array_creation_expression] = STATE(3006), - [sym_implicit_object_creation_expression] = STATE(3006), - [sym_implicit_stackalloc_expression] = STATE(3006), - [sym_initializer_expression] = STATE(3006), - [sym_default_expression] = STATE(3006), - [sym_with_expression] = STATE(3006), - [sym_sizeof_expression] = STATE(3006), - [sym_typeof_expression] = STATE(3006), - [sym_makeref_expression] = STATE(3006), - [sym_ref_expression] = STATE(3006), - [sym_reftype_expression] = STATE(3006), - [sym_refvalue_expression] = STATE(3006), - [sym_stackalloc_expression] = STATE(3006), - [sym_range_expression] = STATE(3006), - [sym_tuple_expression] = STATE(2423), - [sym_literal] = STATE(3006), - [sym_character_literal] = STATE(3011), - [sym_string_literal] = STATE(3011), - [sym_raw_string_literal] = STATE(3011), - [sym_boolean_literal] = STATE(3011), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3006), - [sym_preproc_if_in_attribute_list] = STATE(5576), - [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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3440), + [1849] = { + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(5873), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2238), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(5109), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3468), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3102), + [sym_postfix_unary_expression] = STATE(3079), + [sym_prefix_unary_expression] = STATE(3079), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6134), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3102), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3079), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3102), + [sym_member_access_expression] = STATE(2472), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3079), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7309), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(3102), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3102), + [sym_typeof_expression] = STATE(3102), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2472), + [sym_literal] = STATE(3102), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), + [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(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1241), - [anon_sym_LPAREN] = ACTIONS(1841), - [anon_sym_ref] = ACTIONS(1843), - [anon_sym_LBRACE] = ACTIONS(1247), - [anon_sym_delegate] = ACTIONS(1249), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1479), + [anon_sym_LPAREN] = ACTIONS(659), + [anon_sym_ref] = ACTIONS(663), + [anon_sym_LBRACE] = ACTIONS(1481), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1845), + [anon_sym_new] = ACTIONS(1059), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1253), - [anon_sym_BANG] = ACTIONS(1849), - [anon_sym_TILDE] = ACTIONS(1849), - [anon_sym_PLUS_PLUS] = ACTIONS(1849), - [anon_sym_DASH_DASH] = ACTIONS(1849), - [anon_sym_true] = ACTIONS(1259), - [anon_sym_false] = ACTIONS(1259), - [anon_sym_PLUS] = ACTIONS(1847), - [anon_sym_DASH] = ACTIONS(1847), - [anon_sym_STAR] = ACTIONS(1851), - [anon_sym_CARET] = ACTIONS(1849), - [anon_sym_AMP] = ACTIONS(1849), - [anon_sym_this] = ACTIONS(1263), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(1485), + [anon_sym_TILDE] = ACTIONS(1485), + [anon_sym_PLUS_PLUS] = ACTIONS(1485), + [anon_sym_DASH_DASH] = ACTIONS(1485), + [anon_sym_true] = ACTIONS(77), + [anon_sym_false] = ACTIONS(77), + [anon_sym_PLUS] = ACTIONS(1483), + [anon_sym_DASH] = ACTIONS(1483), + [anon_sym_STAR] = ACTIONS(683), + [anon_sym_CARET] = ACTIONS(1485), + [anon_sym_AMP] = ACTIONS(1485), + [anon_sym_this] = ACTIONS(83), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1265), + [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1267), - [anon_sym_unchecked] = ACTIONS(1253), + [sym_predefined_type] = ACTIONS(91), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1269), - [anon_sym_throw] = ACTIONS(1853), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(1077), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1855), - [anon_sym_DOT_DOT] = ACTIONS(1857), + [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), @@ -349830,19 +354279,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1277), - [anon_sym_sizeof] = ACTIONS(1279), - [anon_sym_typeof] = ACTIONS(1281), - [anon_sym___makeref] = ACTIONS(1283), - [anon_sym___reftype] = ACTIONS(1285), - [anon_sym___refvalue] = ACTIONS(1287), - [sym_null_literal] = ACTIONS(1289), - [anon_sym_SQUOTE] = ACTIONS(1291), - [sym_integer_literal] = ACTIONS(1289), - [sym_real_literal] = ACTIONS(1293), - [anon_sym_DQUOTE] = ACTIONS(1295), - [sym_verbatim_string_literal] = ACTIONS(1293), - [aux_sym_preproc_if_token1] = ACTIONS(1297), + [anon_sym_stackalloc] = ACTIONS(127), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_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), @@ -349853,140 +354302,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(1299), - [sym_interpolation_verbatim_start] = ACTIONS(1301), - [sym_interpolation_raw_start] = ACTIONS(1303), - [sym_raw_string_start] = ACTIONS(1305), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [sym_interpolation_raw_start] = ACTIONS(155), + [sym_raw_string_start] = ACTIONS(157), }, - [1823] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2420), - [sym__name] = STATE(5875), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2369), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(4002), - [sym_non_lvalue_expression] = STATE(3066), - [sym_lvalue_expression] = STATE(3109), - [sym__expression_statement_expression] = STATE(3006), - [sym_assignment_expression] = STATE(3020), - [sym_binary_expression] = STATE(3006), - [sym_postfix_unary_expression] = STATE(3020), - [sym_prefix_unary_expression] = STATE(3020), - [sym__pointer_indirection_expression] = STATE(2423), - [sym_query_expression] = STATE(3006), - [sym_from_clause] = STATE(6179), - [sym_conditional_expression] = STATE(3006), - [sym_conditional_access_expression] = STATE(3006), - [sym_as_expression] = STATE(3006), - [sym_is_expression] = STATE(3006), - [sym_is_pattern_expression] = STATE(3006), - [sym_cast_expression] = STATE(3006), - [sym_checked_expression] = STATE(3006), - [sym_invocation_expression] = STATE(3020), - [sym_switch_expression] = STATE(3006), - [sym_await_expression] = STATE(3020), - [sym_throw_expression] = STATE(3006), - [sym_element_access_expression] = STATE(2423), - [sym_interpolated_string_expression] = STATE(3006), - [sym_member_access_expression] = STATE(2423), - [sym_object_creation_expression] = STATE(3020), - [sym_parenthesized_expression] = STATE(3020), - [sym__parenthesized_lvalue_expression] = STATE(2423), - [sym_lambda_expression] = STATE(3006), - [sym__lambda_expression_init] = STATE(7522), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3006), - [sym_anonymous_method_expression] = STATE(3006), - [sym_anonymous_object_creation_expression] = STATE(3006), - [sym_implicit_array_creation_expression] = STATE(3006), - [sym_implicit_object_creation_expression] = STATE(3006), - [sym_implicit_stackalloc_expression] = STATE(3006), - [sym_initializer_expression] = STATE(3006), - [sym_default_expression] = STATE(3006), - [sym_with_expression] = STATE(3006), - [sym_sizeof_expression] = STATE(3006), - [sym_typeof_expression] = STATE(3006), - [sym_makeref_expression] = STATE(3006), - [sym_ref_expression] = STATE(3006), - [sym_reftype_expression] = STATE(3006), - [sym_refvalue_expression] = STATE(3006), - [sym_stackalloc_expression] = STATE(3006), - [sym_range_expression] = STATE(3006), - [sym_tuple_expression] = STATE(2423), - [sym_literal] = STATE(3006), - [sym_character_literal] = STATE(3011), - [sym_string_literal] = STATE(3011), - [sym_raw_string_literal] = STATE(3011), - [sym_boolean_literal] = STATE(3011), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3006), - [sym_preproc_if_in_attribute_list] = STATE(5576), - [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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3440), + [1850] = { + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(5873), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2238), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(5492), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3468), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3102), + [sym_postfix_unary_expression] = STATE(3079), + [sym_prefix_unary_expression] = STATE(3079), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6134), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3102), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3079), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3102), + [sym_member_access_expression] = STATE(2472), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3079), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7309), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(3102), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3102), + [sym_typeof_expression] = STATE(3102), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2472), + [sym_literal] = STATE(3102), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), + [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(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1241), - [anon_sym_LPAREN] = ACTIONS(1841), - [anon_sym_ref] = ACTIONS(1843), - [anon_sym_LBRACE] = ACTIONS(1247), - [anon_sym_delegate] = ACTIONS(1249), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1479), + [anon_sym_LPAREN] = ACTIONS(659), + [anon_sym_ref] = ACTIONS(663), + [anon_sym_LBRACE] = ACTIONS(1481), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1845), + [anon_sym_new] = ACTIONS(1059), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1253), - [anon_sym_BANG] = ACTIONS(1849), - [anon_sym_TILDE] = ACTIONS(1849), - [anon_sym_PLUS_PLUS] = ACTIONS(1849), - [anon_sym_DASH_DASH] = ACTIONS(1849), - [anon_sym_true] = ACTIONS(1259), - [anon_sym_false] = ACTIONS(1259), - [anon_sym_PLUS] = ACTIONS(1847), - [anon_sym_DASH] = ACTIONS(1847), - [anon_sym_STAR] = ACTIONS(1851), - [anon_sym_CARET] = ACTIONS(1849), - [anon_sym_AMP] = ACTIONS(1849), - [anon_sym_this] = ACTIONS(1263), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(1485), + [anon_sym_TILDE] = ACTIONS(1485), + [anon_sym_PLUS_PLUS] = ACTIONS(1485), + [anon_sym_DASH_DASH] = ACTIONS(1485), + [anon_sym_true] = ACTIONS(77), + [anon_sym_false] = ACTIONS(77), + [anon_sym_PLUS] = ACTIONS(1483), + [anon_sym_DASH] = ACTIONS(1483), + [anon_sym_STAR] = ACTIONS(683), + [anon_sym_CARET] = ACTIONS(1485), + [anon_sym_AMP] = ACTIONS(1485), + [anon_sym_this] = ACTIONS(83), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1265), + [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1267), - [anon_sym_unchecked] = ACTIONS(1253), + [sym_predefined_type] = ACTIONS(91), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1269), - [anon_sym_throw] = ACTIONS(1853), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(1077), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1855), - [anon_sym_DOT_DOT] = ACTIONS(1857), + [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), @@ -349999,19 +354448,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1277), - [anon_sym_sizeof] = ACTIONS(1279), - [anon_sym_typeof] = ACTIONS(1281), - [anon_sym___makeref] = ACTIONS(1283), - [anon_sym___reftype] = ACTIONS(1285), - [anon_sym___refvalue] = ACTIONS(1287), - [sym_null_literal] = ACTIONS(1289), - [anon_sym_SQUOTE] = ACTIONS(1291), - [sym_integer_literal] = ACTIONS(1289), - [sym_real_literal] = ACTIONS(1293), - [anon_sym_DQUOTE] = ACTIONS(1295), - [sym_verbatim_string_literal] = ACTIONS(1293), - [aux_sym_preproc_if_token1] = ACTIONS(1297), + [anon_sym_stackalloc] = ACTIONS(127), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_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), @@ -350022,140 +354471,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(1299), - [sym_interpolation_verbatim_start] = ACTIONS(1301), - [sym_interpolation_raw_start] = ACTIONS(1303), - [sym_raw_string_start] = ACTIONS(1305), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [sym_interpolation_raw_start] = ACTIONS(155), + [sym_raw_string_start] = ACTIONS(157), }, - [1824] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2420), - [sym__name] = STATE(5875), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2369), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(4003), - [sym_non_lvalue_expression] = STATE(3066), - [sym_lvalue_expression] = STATE(3109), - [sym__expression_statement_expression] = STATE(3006), - [sym_assignment_expression] = STATE(3020), - [sym_binary_expression] = STATE(3006), - [sym_postfix_unary_expression] = STATE(3020), - [sym_prefix_unary_expression] = STATE(3020), - [sym__pointer_indirection_expression] = STATE(2423), - [sym_query_expression] = STATE(3006), - [sym_from_clause] = STATE(6179), - [sym_conditional_expression] = STATE(3006), - [sym_conditional_access_expression] = STATE(3006), - [sym_as_expression] = STATE(3006), - [sym_is_expression] = STATE(3006), - [sym_is_pattern_expression] = STATE(3006), - [sym_cast_expression] = STATE(3006), - [sym_checked_expression] = STATE(3006), - [sym_invocation_expression] = STATE(3020), - [sym_switch_expression] = STATE(3006), - [sym_await_expression] = STATE(3020), - [sym_throw_expression] = STATE(3006), - [sym_element_access_expression] = STATE(2423), - [sym_interpolated_string_expression] = STATE(3006), - [sym_member_access_expression] = STATE(2423), - [sym_object_creation_expression] = STATE(3020), - [sym_parenthesized_expression] = STATE(3020), - [sym__parenthesized_lvalue_expression] = STATE(2423), - [sym_lambda_expression] = STATE(3006), - [sym__lambda_expression_init] = STATE(7522), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3006), - [sym_anonymous_method_expression] = STATE(3006), - [sym_anonymous_object_creation_expression] = STATE(3006), - [sym_implicit_array_creation_expression] = STATE(3006), - [sym_implicit_object_creation_expression] = STATE(3006), - [sym_implicit_stackalloc_expression] = STATE(3006), - [sym_initializer_expression] = STATE(3006), - [sym_default_expression] = STATE(3006), - [sym_with_expression] = STATE(3006), - [sym_sizeof_expression] = STATE(3006), - [sym_typeof_expression] = STATE(3006), - [sym_makeref_expression] = STATE(3006), - [sym_ref_expression] = STATE(3006), - [sym_reftype_expression] = STATE(3006), - [sym_refvalue_expression] = STATE(3006), - [sym_stackalloc_expression] = STATE(3006), - [sym_range_expression] = STATE(3006), - [sym_tuple_expression] = STATE(2423), - [sym_literal] = STATE(3006), - [sym_character_literal] = STATE(3011), - [sym_string_literal] = STATE(3011), - [sym_raw_string_literal] = STATE(3011), - [sym_boolean_literal] = STATE(3011), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3006), - [sym_preproc_if_in_attribute_list] = STATE(5576), - [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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3440), + [1851] = { + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(3182), + [sym__name] = STATE(5888), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2286), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2262), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(4336), + [sym_non_lvalue_expression] = STATE(4580), + [sym_lvalue_expression] = STATE(3192), + [sym__expression_statement_expression] = STATE(4573), + [sym_assignment_expression] = STATE(4581), + [sym_binary_expression] = STATE(4573), + [sym_postfix_unary_expression] = STATE(4581), + [sym_prefix_unary_expression] = STATE(4581), + [sym__pointer_indirection_expression] = STATE(3144), + [sym_query_expression] = STATE(4573), + [sym_from_clause] = STATE(6160), + [sym_conditional_expression] = STATE(4573), + [sym_conditional_access_expression] = STATE(4573), + [sym_as_expression] = STATE(4573), + [sym_is_expression] = STATE(4573), + [sym_is_pattern_expression] = STATE(4573), + [sym_cast_expression] = STATE(4573), + [sym_checked_expression] = STATE(4573), + [sym_invocation_expression] = STATE(4581), + [sym_switch_expression] = STATE(4573), + [sym_await_expression] = STATE(4581), + [sym_throw_expression] = STATE(4573), + [sym_element_access_expression] = STATE(3144), + [sym_interpolated_string_expression] = STATE(4573), + [sym_member_access_expression] = STATE(3144), + [sym_object_creation_expression] = STATE(4581), + [sym_parenthesized_expression] = STATE(4581), + [sym__parenthesized_lvalue_expression] = STATE(3144), + [sym_lambda_expression] = STATE(4573), + [sym__lambda_expression_init] = STATE(7491), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(4573), + [sym_anonymous_method_expression] = STATE(4573), + [sym_anonymous_object_creation_expression] = STATE(4573), + [sym_implicit_array_creation_expression] = STATE(4573), + [sym_implicit_object_creation_expression] = STATE(4573), + [sym_implicit_stackalloc_expression] = STATE(4573), + [sym_initializer_expression] = STATE(4573), + [sym_default_expression] = STATE(4573), + [sym_with_expression] = STATE(4573), + [sym_sizeof_expression] = STATE(4573), + [sym_typeof_expression] = STATE(4573), + [sym_makeref_expression] = STATE(4573), + [sym_ref_expression] = STATE(4573), + [sym_reftype_expression] = STATE(4573), + [sym_refvalue_expression] = STATE(4573), + [sym_stackalloc_expression] = STATE(4573), + [sym_range_expression] = STATE(4573), + [sym_tuple_expression] = STATE(3144), + [sym_literal] = STATE(4573), + [sym_character_literal] = STATE(4575), + [sym_string_literal] = STATE(4575), + [sym_raw_string_literal] = STATE(4575), + [sym_boolean_literal] = STATE(4575), + [sym_identifier] = STATE(2237), + [sym__reserved_identifier] = STATE(2229), + [sym_preproc_if_in_expression] = STATE(4573), + [sym_preproc_if_in_attribute_list] = STATE(5583), + [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(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3501), + [sym__identifier_token] = ACTIONS(1385), + [anon_sym_alias] = ACTIONS(1387), + [anon_sym_global] = ACTIONS(1387), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1389), + [anon_sym_LPAREN] = ACTIONS(1391), + [anon_sym_ref] = ACTIONS(1393), + [anon_sym_LBRACE] = ACTIONS(1395), + [anon_sym_delegate] = ACTIONS(1397), + [anon_sym_async] = ACTIONS(1045), + [anon_sym_file] = ACTIONS(1387), + [anon_sym_new] = ACTIONS(1399), + [anon_sym_where] = ACTIONS(1387), + [anon_sym_notnull] = ACTIONS(1387), + [anon_sym_unmanaged] = ACTIONS(1387), + [anon_sym_checked] = ACTIONS(1401), + [anon_sym_BANG] = ACTIONS(1405), + [anon_sym_TILDE] = ACTIONS(1405), + [anon_sym_PLUS_PLUS] = ACTIONS(1405), + [anon_sym_DASH_DASH] = ACTIONS(1405), + [anon_sym_true] = ACTIONS(1407), + [anon_sym_false] = ACTIONS(1407), + [anon_sym_PLUS] = ACTIONS(1403), + [anon_sym_DASH] = ACTIONS(1403), + [anon_sym_STAR] = ACTIONS(1409), + [anon_sym_CARET] = ACTIONS(1405), + [anon_sym_AMP] = ACTIONS(1405), + [anon_sym_this] = ACTIONS(1411), + [anon_sym_scoped] = ACTIONS(1413), + [anon_sym_base] = ACTIONS(1415), + [anon_sym_var] = ACTIONS(1417), + [sym_predefined_type] = ACTIONS(1419), + [anon_sym_unchecked] = ACTIONS(1401), + [anon_sym_yield] = ACTIONS(1387), + [anon_sym_default] = ACTIONS(1421), + [anon_sym_throw] = ACTIONS(1423), + [anon_sym_when] = ACTIONS(1387), + [anon_sym_await] = ACTIONS(1425), + [anon_sym_DOT_DOT] = ACTIONS(1427), + [anon_sym_from] = ACTIONS(1429), + [anon_sym_into] = ACTIONS(1387), + [anon_sym_join] = ACTIONS(1387), + [anon_sym_on] = ACTIONS(1387), + [anon_sym_equals] = ACTIONS(1387), + [anon_sym_let] = ACTIONS(1387), + [anon_sym_orderby] = ACTIONS(1387), + [anon_sym_ascending] = ACTIONS(1387), + [anon_sym_descending] = ACTIONS(1387), + [anon_sym_group] = ACTIONS(1387), + [anon_sym_by] = ACTIONS(1387), + [anon_sym_select] = ACTIONS(1387), + [anon_sym_stackalloc] = ACTIONS(1431), + [anon_sym_sizeof] = ACTIONS(1433), + [anon_sym_typeof] = ACTIONS(1435), + [anon_sym___makeref] = ACTIONS(1437), + [anon_sym___reftype] = ACTIONS(1439), + [anon_sym___refvalue] = ACTIONS(1441), + [sym_null_literal] = ACTIONS(1443), + [anon_sym_SQUOTE] = ACTIONS(1445), + [sym_integer_literal] = ACTIONS(1443), + [sym_real_literal] = ACTIONS(1447), + [anon_sym_DQUOTE] = ACTIONS(1449), + [sym_verbatim_string_literal] = ACTIONS(1447), + [aux_sym_preproc_if_token1] = ACTIONS(1451), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + [sym_interpolation_regular_start] = ACTIONS(1453), + [sym_interpolation_verbatim_start] = ACTIONS(1455), + [sym_interpolation_raw_start] = ACTIONS(1457), + [sym_raw_string_start] = ACTIONS(1459), + }, + [1852] = { + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(5873), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2238), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(5144), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3526), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3102), + [sym_postfix_unary_expression] = STATE(3079), + [sym_prefix_unary_expression] = STATE(3079), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6134), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3102), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3079), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3102), + [sym_member_access_expression] = STATE(2472), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3079), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7455), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(3102), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3102), + [sym_typeof_expression] = STATE(3102), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2472), + [sym_literal] = STATE(3102), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), + [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(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1241), - [anon_sym_LPAREN] = ACTIONS(1841), - [anon_sym_ref] = ACTIONS(1843), - [anon_sym_LBRACE] = ACTIONS(1247), - [anon_sym_delegate] = ACTIONS(1249), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1479), + [anon_sym_LPAREN] = ACTIONS(1629), + [anon_sym_ref] = ACTIONS(1631), + [anon_sym_LBRACE] = ACTIONS(1481), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1845), + [anon_sym_new] = ACTIONS(1515), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1253), - [anon_sym_BANG] = ACTIONS(1849), - [anon_sym_TILDE] = ACTIONS(1849), - [anon_sym_PLUS_PLUS] = ACTIONS(1849), - [anon_sym_DASH_DASH] = ACTIONS(1849), - [anon_sym_true] = ACTIONS(1259), - [anon_sym_false] = ACTIONS(1259), - [anon_sym_PLUS] = ACTIONS(1847), - [anon_sym_DASH] = ACTIONS(1847), - [anon_sym_STAR] = ACTIONS(1851), - [anon_sym_CARET] = ACTIONS(1849), - [anon_sym_AMP] = ACTIONS(1849), - [anon_sym_this] = ACTIONS(1263), + [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_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1265), + [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1267), - [anon_sym_unchecked] = ACTIONS(1253), + [sym_predefined_type] = ACTIONS(91), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1269), - [anon_sym_throw] = ACTIONS(1853), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(1633), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1855), - [anon_sym_DOT_DOT] = ACTIONS(1857), + [anon_sym_await] = ACTIONS(1635), + [anon_sym_DOT_DOT] = ACTIONS(1637), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -350168,19 +354786,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1277), - [anon_sym_sizeof] = ACTIONS(1279), - [anon_sym_typeof] = ACTIONS(1281), - [anon_sym___makeref] = ACTIONS(1283), - [anon_sym___reftype] = ACTIONS(1285), - [anon_sym___refvalue] = ACTIONS(1287), - [sym_null_literal] = ACTIONS(1289), - [anon_sym_SQUOTE] = ACTIONS(1291), - [sym_integer_literal] = ACTIONS(1289), - [sym_real_literal] = ACTIONS(1293), - [anon_sym_DQUOTE] = ACTIONS(1295), - [sym_verbatim_string_literal] = ACTIONS(1293), - [aux_sym_preproc_if_token1] = ACTIONS(1297), + [anon_sym_stackalloc] = ACTIONS(127), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_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), @@ -350191,140 +354809,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(1299), - [sym_interpolation_verbatim_start] = ACTIONS(1301), - [sym_interpolation_raw_start] = ACTIONS(1303), - [sym_raw_string_start] = ACTIONS(1305), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [sym_interpolation_raw_start] = ACTIONS(155), + [sym_raw_string_start] = ACTIONS(157), }, - [1825] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2420), - [sym__name] = STATE(5875), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2369), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(4004), - [sym_non_lvalue_expression] = STATE(3066), - [sym_lvalue_expression] = STATE(3109), - [sym__expression_statement_expression] = STATE(3006), - [sym_assignment_expression] = STATE(3020), - [sym_binary_expression] = STATE(3006), - [sym_postfix_unary_expression] = STATE(3020), - [sym_prefix_unary_expression] = STATE(3020), - [sym__pointer_indirection_expression] = STATE(2423), - [sym_query_expression] = STATE(3006), - [sym_from_clause] = STATE(6179), - [sym_conditional_expression] = STATE(3006), - [sym_conditional_access_expression] = STATE(3006), - [sym_as_expression] = STATE(3006), - [sym_is_expression] = STATE(3006), - [sym_is_pattern_expression] = STATE(3006), - [sym_cast_expression] = STATE(3006), - [sym_checked_expression] = STATE(3006), - [sym_invocation_expression] = STATE(3020), - [sym_switch_expression] = STATE(3006), - [sym_await_expression] = STATE(3020), - [sym_throw_expression] = STATE(3006), - [sym_element_access_expression] = STATE(2423), - [sym_interpolated_string_expression] = STATE(3006), - [sym_member_access_expression] = STATE(2423), - [sym_object_creation_expression] = STATE(3020), - [sym_parenthesized_expression] = STATE(3020), - [sym__parenthesized_lvalue_expression] = STATE(2423), - [sym_lambda_expression] = STATE(3006), - [sym__lambda_expression_init] = STATE(7522), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3006), - [sym_anonymous_method_expression] = STATE(3006), - [sym_anonymous_object_creation_expression] = STATE(3006), - [sym_implicit_array_creation_expression] = STATE(3006), - [sym_implicit_object_creation_expression] = STATE(3006), - [sym_implicit_stackalloc_expression] = STATE(3006), - [sym_initializer_expression] = STATE(3006), - [sym_default_expression] = STATE(3006), - [sym_with_expression] = STATE(3006), - [sym_sizeof_expression] = STATE(3006), - [sym_typeof_expression] = STATE(3006), - [sym_makeref_expression] = STATE(3006), - [sym_ref_expression] = STATE(3006), - [sym_reftype_expression] = STATE(3006), - [sym_refvalue_expression] = STATE(3006), - [sym_stackalloc_expression] = STATE(3006), - [sym_range_expression] = STATE(3006), - [sym_tuple_expression] = STATE(2423), - [sym_literal] = STATE(3006), - [sym_character_literal] = STATE(3011), - [sym_string_literal] = STATE(3011), - [sym_raw_string_literal] = STATE(3011), - [sym_boolean_literal] = STATE(3011), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3006), - [sym_preproc_if_in_attribute_list] = STATE(5576), - [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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3440), + [1853] = { + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2416), + [sym__name] = STATE(5885), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2404), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(3921), + [sym_non_lvalue_expression] = STATE(3040), + [sym_lvalue_expression] = STATE(3100), + [sym__expression_statement_expression] = STATE(3035), + [sym_assignment_expression] = STATE(3043), + [sym_binary_expression] = STATE(3035), + [sym_postfix_unary_expression] = STATE(3043), + [sym_prefix_unary_expression] = STATE(3043), + [sym__pointer_indirection_expression] = STATE(2415), + [sym_query_expression] = STATE(3035), + [sym_from_clause] = STATE(6135), + [sym_conditional_expression] = STATE(3035), + [sym_conditional_access_expression] = STATE(3035), + [sym_as_expression] = STATE(3035), + [sym_is_expression] = STATE(3035), + [sym_is_pattern_expression] = STATE(3035), + [sym_cast_expression] = STATE(3035), + [sym_checked_expression] = STATE(3035), + [sym_invocation_expression] = STATE(3043), + [sym_switch_expression] = STATE(3035), + [sym_await_expression] = STATE(3043), + [sym_throw_expression] = STATE(3035), + [sym_element_access_expression] = STATE(2415), + [sym_interpolated_string_expression] = STATE(3035), + [sym_member_access_expression] = STATE(2415), + [sym_object_creation_expression] = STATE(3043), + [sym_parenthesized_expression] = STATE(3043), + [sym__parenthesized_lvalue_expression] = STATE(2415), + [sym_lambda_expression] = STATE(3035), + [sym__lambda_expression_init] = STATE(7470), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3035), + [sym_anonymous_method_expression] = STATE(3035), + [sym_anonymous_object_creation_expression] = STATE(3035), + [sym_implicit_array_creation_expression] = STATE(3035), + [sym_implicit_object_creation_expression] = STATE(3035), + [sym_implicit_stackalloc_expression] = STATE(3035), + [sym_initializer_expression] = STATE(3035), + [sym_default_expression] = STATE(3035), + [sym_with_expression] = STATE(3035), + [sym_sizeof_expression] = STATE(3035), + [sym_typeof_expression] = STATE(3035), + [sym_makeref_expression] = STATE(3035), + [sym_ref_expression] = STATE(3035), + [sym_reftype_expression] = STATE(3035), + [sym_refvalue_expression] = STATE(3035), + [sym_stackalloc_expression] = STATE(3035), + [sym_range_expression] = STATE(3035), + [sym_tuple_expression] = STATE(2415), + [sym_literal] = STATE(3035), + [sym_character_literal] = STATE(3037), + [sym_string_literal] = STATE(3037), + [sym_raw_string_literal] = STATE(3037), + [sym_boolean_literal] = STATE(3037), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3035), + [sym_preproc_if_in_attribute_list] = STATE(5583), + [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(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3455), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1241), - [anon_sym_LPAREN] = ACTIONS(1841), - [anon_sym_ref] = ACTIONS(1843), - [anon_sym_LBRACE] = ACTIONS(1247), - [anon_sym_delegate] = ACTIONS(1249), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1239), + [anon_sym_LPAREN] = ACTIONS(1931), + [anon_sym_ref] = ACTIONS(1933), + [anon_sym_LBRACE] = ACTIONS(1245), + [anon_sym_delegate] = ACTIONS(1247), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1845), + [anon_sym_new] = ACTIONS(1935), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1253), - [anon_sym_BANG] = ACTIONS(1849), - [anon_sym_TILDE] = ACTIONS(1849), - [anon_sym_PLUS_PLUS] = ACTIONS(1849), - [anon_sym_DASH_DASH] = ACTIONS(1849), - [anon_sym_true] = ACTIONS(1259), - [anon_sym_false] = ACTIONS(1259), - [anon_sym_PLUS] = ACTIONS(1847), - [anon_sym_DASH] = ACTIONS(1847), - [anon_sym_STAR] = ACTIONS(1851), - [anon_sym_CARET] = ACTIONS(1849), - [anon_sym_AMP] = ACTIONS(1849), - [anon_sym_this] = ACTIONS(1263), + [anon_sym_checked] = ACTIONS(1251), + [anon_sym_BANG] = ACTIONS(1939), + [anon_sym_TILDE] = ACTIONS(1939), + [anon_sym_PLUS_PLUS] = ACTIONS(1939), + [anon_sym_DASH_DASH] = ACTIONS(1939), + [anon_sym_true] = ACTIONS(1257), + [anon_sym_false] = ACTIONS(1257), + [anon_sym_PLUS] = ACTIONS(1937), + [anon_sym_DASH] = ACTIONS(1937), + [anon_sym_STAR] = ACTIONS(1941), + [anon_sym_CARET] = ACTIONS(1939), + [anon_sym_AMP] = ACTIONS(1939), + [anon_sym_this] = ACTIONS(1261), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1265), + [anon_sym_base] = ACTIONS(1263), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1267), - [anon_sym_unchecked] = ACTIONS(1253), + [sym_predefined_type] = ACTIONS(1265), + [anon_sym_unchecked] = ACTIONS(1251), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1269), - [anon_sym_throw] = ACTIONS(1853), + [anon_sym_default] = ACTIONS(1267), + [anon_sym_throw] = ACTIONS(1943), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1855), - [anon_sym_DOT_DOT] = ACTIONS(1857), + [anon_sym_await] = ACTIONS(1945), + [anon_sym_DOT_DOT] = ACTIONS(1947), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -350337,19 +354955,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1277), - [anon_sym_sizeof] = ACTIONS(1279), - [anon_sym_typeof] = ACTIONS(1281), - [anon_sym___makeref] = ACTIONS(1283), - [anon_sym___reftype] = ACTIONS(1285), - [anon_sym___refvalue] = ACTIONS(1287), - [sym_null_literal] = ACTIONS(1289), - [anon_sym_SQUOTE] = ACTIONS(1291), - [sym_integer_literal] = ACTIONS(1289), - [sym_real_literal] = ACTIONS(1293), - [anon_sym_DQUOTE] = ACTIONS(1295), - [sym_verbatim_string_literal] = ACTIONS(1293), - [aux_sym_preproc_if_token1] = ACTIONS(1297), + [anon_sym_stackalloc] = ACTIONS(1275), + [anon_sym_sizeof] = ACTIONS(1277), + [anon_sym_typeof] = ACTIONS(1279), + [anon_sym___makeref] = ACTIONS(1281), + [anon_sym___reftype] = ACTIONS(1283), + [anon_sym___refvalue] = ACTIONS(1285), + [sym_null_literal] = ACTIONS(1287), + [anon_sym_SQUOTE] = ACTIONS(1289), + [sym_integer_literal] = ACTIONS(1287), + [sym_real_literal] = ACTIONS(1291), + [anon_sym_DQUOTE] = ACTIONS(1293), + [sym_verbatim_string_literal] = ACTIONS(1291), + [aux_sym_preproc_if_token1] = ACTIONS(1295), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -350360,140 +354978,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(1299), - [sym_interpolation_verbatim_start] = ACTIONS(1301), - [sym_interpolation_raw_start] = ACTIONS(1303), - [sym_raw_string_start] = ACTIONS(1305), + [sym_interpolation_regular_start] = ACTIONS(1297), + [sym_interpolation_verbatim_start] = ACTIONS(1299), + [sym_interpolation_raw_start] = ACTIONS(1301), + [sym_raw_string_start] = ACTIONS(1303), }, - [1826] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2420), - [sym__name] = STATE(5875), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2369), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(4005), - [sym_non_lvalue_expression] = STATE(3066), - [sym_lvalue_expression] = STATE(3109), - [sym__expression_statement_expression] = STATE(3006), - [sym_assignment_expression] = STATE(3020), - [sym_binary_expression] = STATE(3006), - [sym_postfix_unary_expression] = STATE(3020), - [sym_prefix_unary_expression] = STATE(3020), - [sym__pointer_indirection_expression] = STATE(2423), - [sym_query_expression] = STATE(3006), - [sym_from_clause] = STATE(6179), - [sym_conditional_expression] = STATE(3006), - [sym_conditional_access_expression] = STATE(3006), - [sym_as_expression] = STATE(3006), - [sym_is_expression] = STATE(3006), - [sym_is_pattern_expression] = STATE(3006), - [sym_cast_expression] = STATE(3006), - [sym_checked_expression] = STATE(3006), - [sym_invocation_expression] = STATE(3020), - [sym_switch_expression] = STATE(3006), - [sym_await_expression] = STATE(3020), - [sym_throw_expression] = STATE(3006), - [sym_element_access_expression] = STATE(2423), - [sym_interpolated_string_expression] = STATE(3006), - [sym_member_access_expression] = STATE(2423), - [sym_object_creation_expression] = STATE(3020), - [sym_parenthesized_expression] = STATE(3020), - [sym__parenthesized_lvalue_expression] = STATE(2423), - [sym_lambda_expression] = STATE(3006), - [sym__lambda_expression_init] = STATE(7522), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3006), - [sym_anonymous_method_expression] = STATE(3006), - [sym_anonymous_object_creation_expression] = STATE(3006), - [sym_implicit_array_creation_expression] = STATE(3006), - [sym_implicit_object_creation_expression] = STATE(3006), - [sym_implicit_stackalloc_expression] = STATE(3006), - [sym_initializer_expression] = STATE(3006), - [sym_default_expression] = STATE(3006), - [sym_with_expression] = STATE(3006), - [sym_sizeof_expression] = STATE(3006), - [sym_typeof_expression] = STATE(3006), - [sym_makeref_expression] = STATE(3006), - [sym_ref_expression] = STATE(3006), - [sym_reftype_expression] = STATE(3006), - [sym_refvalue_expression] = STATE(3006), - [sym_stackalloc_expression] = STATE(3006), - [sym_range_expression] = STATE(3006), - [sym_tuple_expression] = STATE(2423), - [sym_literal] = STATE(3006), - [sym_character_literal] = STATE(3011), - [sym_string_literal] = STATE(3011), - [sym_raw_string_literal] = STATE(3011), - [sym_boolean_literal] = STATE(3011), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3006), - [sym_preproc_if_in_attribute_list] = STATE(5576), - [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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3440), + [1854] = { + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2416), + [sym__name] = STATE(5885), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2404), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(3922), + [sym_non_lvalue_expression] = STATE(3040), + [sym_lvalue_expression] = STATE(3100), + [sym__expression_statement_expression] = STATE(3035), + [sym_assignment_expression] = STATE(3043), + [sym_binary_expression] = STATE(3035), + [sym_postfix_unary_expression] = STATE(3043), + [sym_prefix_unary_expression] = STATE(3043), + [sym__pointer_indirection_expression] = STATE(2415), + [sym_query_expression] = STATE(3035), + [sym_from_clause] = STATE(6135), + [sym_conditional_expression] = STATE(3035), + [sym_conditional_access_expression] = STATE(3035), + [sym_as_expression] = STATE(3035), + [sym_is_expression] = STATE(3035), + [sym_is_pattern_expression] = STATE(3035), + [sym_cast_expression] = STATE(3035), + [sym_checked_expression] = STATE(3035), + [sym_invocation_expression] = STATE(3043), + [sym_switch_expression] = STATE(3035), + [sym_await_expression] = STATE(3043), + [sym_throw_expression] = STATE(3035), + [sym_element_access_expression] = STATE(2415), + [sym_interpolated_string_expression] = STATE(3035), + [sym_member_access_expression] = STATE(2415), + [sym_object_creation_expression] = STATE(3043), + [sym_parenthesized_expression] = STATE(3043), + [sym__parenthesized_lvalue_expression] = STATE(2415), + [sym_lambda_expression] = STATE(3035), + [sym__lambda_expression_init] = STATE(7470), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3035), + [sym_anonymous_method_expression] = STATE(3035), + [sym_anonymous_object_creation_expression] = STATE(3035), + [sym_implicit_array_creation_expression] = STATE(3035), + [sym_implicit_object_creation_expression] = STATE(3035), + [sym_implicit_stackalloc_expression] = STATE(3035), + [sym_initializer_expression] = STATE(3035), + [sym_default_expression] = STATE(3035), + [sym_with_expression] = STATE(3035), + [sym_sizeof_expression] = STATE(3035), + [sym_typeof_expression] = STATE(3035), + [sym_makeref_expression] = STATE(3035), + [sym_ref_expression] = STATE(3035), + [sym_reftype_expression] = STATE(3035), + [sym_refvalue_expression] = STATE(3035), + [sym_stackalloc_expression] = STATE(3035), + [sym_range_expression] = STATE(3035), + [sym_tuple_expression] = STATE(2415), + [sym_literal] = STATE(3035), + [sym_character_literal] = STATE(3037), + [sym_string_literal] = STATE(3037), + [sym_raw_string_literal] = STATE(3037), + [sym_boolean_literal] = STATE(3037), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3035), + [sym_preproc_if_in_attribute_list] = STATE(5583), + [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(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3455), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1241), - [anon_sym_LPAREN] = ACTIONS(1841), - [anon_sym_ref] = ACTIONS(1843), - [anon_sym_LBRACE] = ACTIONS(1247), - [anon_sym_delegate] = ACTIONS(1249), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1239), + [anon_sym_LPAREN] = ACTIONS(1931), + [anon_sym_ref] = ACTIONS(1933), + [anon_sym_LBRACE] = ACTIONS(1245), + [anon_sym_delegate] = ACTIONS(1247), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1845), + [anon_sym_new] = ACTIONS(1935), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1253), - [anon_sym_BANG] = ACTIONS(1849), - [anon_sym_TILDE] = ACTIONS(1849), - [anon_sym_PLUS_PLUS] = ACTIONS(1849), - [anon_sym_DASH_DASH] = ACTIONS(1849), - [anon_sym_true] = ACTIONS(1259), - [anon_sym_false] = ACTIONS(1259), - [anon_sym_PLUS] = ACTIONS(1847), - [anon_sym_DASH] = ACTIONS(1847), - [anon_sym_STAR] = ACTIONS(1851), - [anon_sym_CARET] = ACTIONS(1849), - [anon_sym_AMP] = ACTIONS(1849), - [anon_sym_this] = ACTIONS(1263), + [anon_sym_checked] = ACTIONS(1251), + [anon_sym_BANG] = ACTIONS(1939), + [anon_sym_TILDE] = ACTIONS(1939), + [anon_sym_PLUS_PLUS] = ACTIONS(1939), + [anon_sym_DASH_DASH] = ACTIONS(1939), + [anon_sym_true] = ACTIONS(1257), + [anon_sym_false] = ACTIONS(1257), + [anon_sym_PLUS] = ACTIONS(1937), + [anon_sym_DASH] = ACTIONS(1937), + [anon_sym_STAR] = ACTIONS(1941), + [anon_sym_CARET] = ACTIONS(1939), + [anon_sym_AMP] = ACTIONS(1939), + [anon_sym_this] = ACTIONS(1261), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1265), + [anon_sym_base] = ACTIONS(1263), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1267), - [anon_sym_unchecked] = ACTIONS(1253), + [sym_predefined_type] = ACTIONS(1265), + [anon_sym_unchecked] = ACTIONS(1251), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1269), - [anon_sym_throw] = ACTIONS(1853), + [anon_sym_default] = ACTIONS(1267), + [anon_sym_throw] = ACTIONS(1943), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1855), - [anon_sym_DOT_DOT] = ACTIONS(1857), + [anon_sym_await] = ACTIONS(1945), + [anon_sym_DOT_DOT] = ACTIONS(1947), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -350506,19 +355124,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1277), - [anon_sym_sizeof] = ACTIONS(1279), - [anon_sym_typeof] = ACTIONS(1281), - [anon_sym___makeref] = ACTIONS(1283), - [anon_sym___reftype] = ACTIONS(1285), - [anon_sym___refvalue] = ACTIONS(1287), - [sym_null_literal] = ACTIONS(1289), - [anon_sym_SQUOTE] = ACTIONS(1291), - [sym_integer_literal] = ACTIONS(1289), - [sym_real_literal] = ACTIONS(1293), - [anon_sym_DQUOTE] = ACTIONS(1295), - [sym_verbatim_string_literal] = ACTIONS(1293), - [aux_sym_preproc_if_token1] = ACTIONS(1297), + [anon_sym_stackalloc] = ACTIONS(1275), + [anon_sym_sizeof] = ACTIONS(1277), + [anon_sym_typeof] = ACTIONS(1279), + [anon_sym___makeref] = ACTIONS(1281), + [anon_sym___reftype] = ACTIONS(1283), + [anon_sym___refvalue] = ACTIONS(1285), + [sym_null_literal] = ACTIONS(1287), + [anon_sym_SQUOTE] = ACTIONS(1289), + [sym_integer_literal] = ACTIONS(1287), + [sym_real_literal] = ACTIONS(1291), + [anon_sym_DQUOTE] = ACTIONS(1293), + [sym_verbatim_string_literal] = ACTIONS(1291), + [aux_sym_preproc_if_token1] = ACTIONS(1295), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -350529,140 +355147,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(1299), - [sym_interpolation_verbatim_start] = ACTIONS(1301), - [sym_interpolation_raw_start] = ACTIONS(1303), - [sym_raw_string_start] = ACTIONS(1305), + [sym_interpolation_regular_start] = ACTIONS(1297), + [sym_interpolation_verbatim_start] = ACTIONS(1299), + [sym_interpolation_raw_start] = ACTIONS(1301), + [sym_raw_string_start] = ACTIONS(1303), }, - [1827] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2420), - [sym__name] = STATE(5875), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2369), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(2910), - [sym_non_lvalue_expression] = STATE(3066), - [sym_lvalue_expression] = STATE(3109), - [sym__expression_statement_expression] = STATE(3006), - [sym_assignment_expression] = STATE(3020), - [sym_binary_expression] = STATE(3006), - [sym_postfix_unary_expression] = STATE(3020), - [sym_prefix_unary_expression] = STATE(3020), - [sym__pointer_indirection_expression] = STATE(2423), - [sym_query_expression] = STATE(3006), - [sym_from_clause] = STATE(6179), - [sym_conditional_expression] = STATE(3006), - [sym_conditional_access_expression] = STATE(3006), - [sym_as_expression] = STATE(3006), - [sym_is_expression] = STATE(3006), - [sym_is_pattern_expression] = STATE(3006), - [sym_cast_expression] = STATE(3006), - [sym_checked_expression] = STATE(3006), - [sym_invocation_expression] = STATE(3020), - [sym_switch_expression] = STATE(3006), - [sym_await_expression] = STATE(3020), - [sym_throw_expression] = STATE(3006), - [sym_element_access_expression] = STATE(2423), - [sym_interpolated_string_expression] = STATE(3006), - [sym_member_access_expression] = STATE(2423), - [sym_object_creation_expression] = STATE(3020), - [sym_parenthesized_expression] = STATE(3020), - [sym__parenthesized_lvalue_expression] = STATE(2423), - [sym_lambda_expression] = STATE(3006), - [sym__lambda_expression_init] = STATE(7522), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3006), - [sym_anonymous_method_expression] = STATE(3006), - [sym_anonymous_object_creation_expression] = STATE(3006), - [sym_implicit_array_creation_expression] = STATE(3006), - [sym_implicit_object_creation_expression] = STATE(3006), - [sym_implicit_stackalloc_expression] = STATE(3006), - [sym_initializer_expression] = STATE(3006), - [sym_default_expression] = STATE(3006), - [sym_with_expression] = STATE(3006), - [sym_sizeof_expression] = STATE(3006), - [sym_typeof_expression] = STATE(3006), - [sym_makeref_expression] = STATE(3006), - [sym_ref_expression] = STATE(3006), - [sym_reftype_expression] = STATE(3006), - [sym_refvalue_expression] = STATE(3006), - [sym_stackalloc_expression] = STATE(3006), - [sym_range_expression] = STATE(3006), - [sym_tuple_expression] = STATE(2423), - [sym_literal] = STATE(3006), - [sym_character_literal] = STATE(3011), - [sym_string_literal] = STATE(3011), - [sym_raw_string_literal] = STATE(3011), - [sym_boolean_literal] = STATE(3011), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3006), - [sym_preproc_if_in_attribute_list] = STATE(5576), - [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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3440), + [1855] = { + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2416), + [sym__name] = STATE(5885), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2404), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(3961), + [sym_non_lvalue_expression] = STATE(3040), + [sym_lvalue_expression] = STATE(3100), + [sym__expression_statement_expression] = STATE(3035), + [sym_assignment_expression] = STATE(3043), + [sym_binary_expression] = STATE(3035), + [sym_postfix_unary_expression] = STATE(3043), + [sym_prefix_unary_expression] = STATE(3043), + [sym__pointer_indirection_expression] = STATE(2415), + [sym_query_expression] = STATE(3035), + [sym_from_clause] = STATE(6135), + [sym_conditional_expression] = STATE(3035), + [sym_conditional_access_expression] = STATE(3035), + [sym_as_expression] = STATE(3035), + [sym_is_expression] = STATE(3035), + [sym_is_pattern_expression] = STATE(3035), + [sym_cast_expression] = STATE(3035), + [sym_checked_expression] = STATE(3035), + [sym_invocation_expression] = STATE(3043), + [sym_switch_expression] = STATE(3035), + [sym_await_expression] = STATE(3043), + [sym_throw_expression] = STATE(3035), + [sym_element_access_expression] = STATE(2415), + [sym_interpolated_string_expression] = STATE(3035), + [sym_member_access_expression] = STATE(2415), + [sym_object_creation_expression] = STATE(3043), + [sym_parenthesized_expression] = STATE(3043), + [sym__parenthesized_lvalue_expression] = STATE(2415), + [sym_lambda_expression] = STATE(3035), + [sym__lambda_expression_init] = STATE(7470), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3035), + [sym_anonymous_method_expression] = STATE(3035), + [sym_anonymous_object_creation_expression] = STATE(3035), + [sym_implicit_array_creation_expression] = STATE(3035), + [sym_implicit_object_creation_expression] = STATE(3035), + [sym_implicit_stackalloc_expression] = STATE(3035), + [sym_initializer_expression] = STATE(3035), + [sym_default_expression] = STATE(3035), + [sym_with_expression] = STATE(3035), + [sym_sizeof_expression] = STATE(3035), + [sym_typeof_expression] = STATE(3035), + [sym_makeref_expression] = STATE(3035), + [sym_ref_expression] = STATE(3035), + [sym_reftype_expression] = STATE(3035), + [sym_refvalue_expression] = STATE(3035), + [sym_stackalloc_expression] = STATE(3035), + [sym_range_expression] = STATE(3035), + [sym_tuple_expression] = STATE(2415), + [sym_literal] = STATE(3035), + [sym_character_literal] = STATE(3037), + [sym_string_literal] = STATE(3037), + [sym_raw_string_literal] = STATE(3037), + [sym_boolean_literal] = STATE(3037), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3035), + [sym_preproc_if_in_attribute_list] = STATE(5583), + [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(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3455), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1241), - [anon_sym_LPAREN] = ACTIONS(1841), - [anon_sym_ref] = ACTIONS(1843), - [anon_sym_LBRACE] = ACTIONS(1247), - [anon_sym_delegate] = ACTIONS(1249), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1239), + [anon_sym_LPAREN] = ACTIONS(1931), + [anon_sym_ref] = ACTIONS(1933), + [anon_sym_LBRACE] = ACTIONS(1245), + [anon_sym_delegate] = ACTIONS(1247), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1845), + [anon_sym_new] = ACTIONS(1935), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1253), - [anon_sym_BANG] = ACTIONS(1849), - [anon_sym_TILDE] = ACTIONS(1849), - [anon_sym_PLUS_PLUS] = ACTIONS(1849), - [anon_sym_DASH_DASH] = ACTIONS(1849), - [anon_sym_true] = ACTIONS(1259), - [anon_sym_false] = ACTIONS(1259), - [anon_sym_PLUS] = ACTIONS(1847), - [anon_sym_DASH] = ACTIONS(1847), - [anon_sym_STAR] = ACTIONS(1851), - [anon_sym_CARET] = ACTIONS(1849), - [anon_sym_AMP] = ACTIONS(1849), - [anon_sym_this] = ACTIONS(1263), + [anon_sym_checked] = ACTIONS(1251), + [anon_sym_BANG] = ACTIONS(1939), + [anon_sym_TILDE] = ACTIONS(1939), + [anon_sym_PLUS_PLUS] = ACTIONS(1939), + [anon_sym_DASH_DASH] = ACTIONS(1939), + [anon_sym_true] = ACTIONS(1257), + [anon_sym_false] = ACTIONS(1257), + [anon_sym_PLUS] = ACTIONS(1937), + [anon_sym_DASH] = ACTIONS(1937), + [anon_sym_STAR] = ACTIONS(1941), + [anon_sym_CARET] = ACTIONS(1939), + [anon_sym_AMP] = ACTIONS(1939), + [anon_sym_this] = ACTIONS(1261), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1265), + [anon_sym_base] = ACTIONS(1263), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1267), - [anon_sym_unchecked] = ACTIONS(1253), + [sym_predefined_type] = ACTIONS(1265), + [anon_sym_unchecked] = ACTIONS(1251), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1269), - [anon_sym_throw] = ACTIONS(1853), + [anon_sym_default] = ACTIONS(1267), + [anon_sym_throw] = ACTIONS(1943), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1855), - [anon_sym_DOT_DOT] = ACTIONS(1857), + [anon_sym_await] = ACTIONS(1945), + [anon_sym_DOT_DOT] = ACTIONS(1947), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -350675,19 +355293,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1277), - [anon_sym_sizeof] = ACTIONS(1279), - [anon_sym_typeof] = ACTIONS(1281), - [anon_sym___makeref] = ACTIONS(1283), - [anon_sym___reftype] = ACTIONS(1285), - [anon_sym___refvalue] = ACTIONS(1287), - [sym_null_literal] = ACTIONS(1289), - [anon_sym_SQUOTE] = ACTIONS(1291), - [sym_integer_literal] = ACTIONS(1289), - [sym_real_literal] = ACTIONS(1293), - [anon_sym_DQUOTE] = ACTIONS(1295), - [sym_verbatim_string_literal] = ACTIONS(1293), - [aux_sym_preproc_if_token1] = ACTIONS(1297), + [anon_sym_stackalloc] = ACTIONS(1275), + [anon_sym_sizeof] = ACTIONS(1277), + [anon_sym_typeof] = ACTIONS(1279), + [anon_sym___makeref] = ACTIONS(1281), + [anon_sym___reftype] = ACTIONS(1283), + [anon_sym___refvalue] = ACTIONS(1285), + [sym_null_literal] = ACTIONS(1287), + [anon_sym_SQUOTE] = ACTIONS(1289), + [sym_integer_literal] = ACTIONS(1287), + [sym_real_literal] = ACTIONS(1291), + [anon_sym_DQUOTE] = ACTIONS(1293), + [sym_verbatim_string_literal] = ACTIONS(1291), + [aux_sym_preproc_if_token1] = ACTIONS(1295), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -350698,140 +355316,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(1299), - [sym_interpolation_verbatim_start] = ACTIONS(1301), - [sym_interpolation_raw_start] = ACTIONS(1303), - [sym_raw_string_start] = ACTIONS(1305), + [sym_interpolation_regular_start] = ACTIONS(1297), + [sym_interpolation_verbatim_start] = ACTIONS(1299), + [sym_interpolation_raw_start] = ACTIONS(1301), + [sym_raw_string_start] = ACTIONS(1303), }, - [1828] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2762), - [sym__name] = STATE(5910), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2247), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(4187), - [sym_non_lvalue_expression] = STATE(3438), - [sym_lvalue_expression] = STATE(3136), - [sym__expression_statement_expression] = STATE(3362), - [sym_assignment_expression] = STATE(3449), - [sym_binary_expression] = STATE(3362), - [sym_postfix_unary_expression] = STATE(3449), - [sym_prefix_unary_expression] = STATE(3449), - [sym__pointer_indirection_expression] = STATE(2747), - [sym_query_expression] = STATE(3362), - [sym_from_clause] = STATE(6171), - [sym_conditional_expression] = STATE(3362), - [sym_conditional_access_expression] = STATE(3362), - [sym_as_expression] = STATE(3362), - [sym_is_expression] = STATE(3362), - [sym_is_pattern_expression] = STATE(3362), - [sym_cast_expression] = STATE(3362), - [sym_checked_expression] = STATE(3362), - [sym_invocation_expression] = STATE(3449), - [sym_switch_expression] = STATE(3362), - [sym_await_expression] = STATE(3449), - [sym_throw_expression] = STATE(3362), - [sym_element_access_expression] = STATE(2747), - [sym_interpolated_string_expression] = STATE(3362), - [sym_member_access_expression] = STATE(2747), - [sym_object_creation_expression] = STATE(3449), - [sym_parenthesized_expression] = STATE(3449), - [sym__parenthesized_lvalue_expression] = STATE(2747), - [sym_lambda_expression] = STATE(3362), - [sym__lambda_expression_init] = STATE(7452), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3362), - [sym_anonymous_method_expression] = STATE(3362), - [sym_anonymous_object_creation_expression] = STATE(3362), - [sym_implicit_array_creation_expression] = STATE(3362), - [sym_implicit_object_creation_expression] = STATE(3362), - [sym_implicit_stackalloc_expression] = STATE(3362), - [sym_initializer_expression] = STATE(3362), - [sym_default_expression] = STATE(3362), - [sym_with_expression] = STATE(3362), - [sym_sizeof_expression] = STATE(3362), - [sym_typeof_expression] = STATE(3362), - [sym_makeref_expression] = STATE(3362), - [sym_ref_expression] = STATE(3362), - [sym_reftype_expression] = STATE(3362), - [sym_refvalue_expression] = STATE(3362), - [sym_stackalloc_expression] = STATE(3362), - [sym_range_expression] = STATE(3362), - [sym_tuple_expression] = STATE(2747), - [sym_literal] = STATE(3362), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3362), - [sym_preproc_if_in_attribute_list] = STATE(5576), - [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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3385), + [1856] = { + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2416), + [sym__name] = STATE(5885), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2404), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(2893), + [sym_non_lvalue_expression] = STATE(3040), + [sym_lvalue_expression] = STATE(3100), + [sym__expression_statement_expression] = STATE(3035), + [sym_assignment_expression] = STATE(3043), + [sym_binary_expression] = STATE(3035), + [sym_postfix_unary_expression] = STATE(3043), + [sym_prefix_unary_expression] = STATE(3043), + [sym__pointer_indirection_expression] = STATE(2415), + [sym_query_expression] = STATE(3035), + [sym_from_clause] = STATE(6135), + [sym_conditional_expression] = STATE(3035), + [sym_conditional_access_expression] = STATE(3035), + [sym_as_expression] = STATE(3035), + [sym_is_expression] = STATE(3035), + [sym_is_pattern_expression] = STATE(3035), + [sym_cast_expression] = STATE(3035), + [sym_checked_expression] = STATE(3035), + [sym_invocation_expression] = STATE(3043), + [sym_switch_expression] = STATE(3035), + [sym_await_expression] = STATE(3043), + [sym_throw_expression] = STATE(3035), + [sym_element_access_expression] = STATE(2415), + [sym_interpolated_string_expression] = STATE(3035), + [sym_member_access_expression] = STATE(2415), + [sym_object_creation_expression] = STATE(3043), + [sym_parenthesized_expression] = STATE(3043), + [sym__parenthesized_lvalue_expression] = STATE(2415), + [sym_lambda_expression] = STATE(3035), + [sym__lambda_expression_init] = STATE(7470), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3035), + [sym_anonymous_method_expression] = STATE(3035), + [sym_anonymous_object_creation_expression] = STATE(3035), + [sym_implicit_array_creation_expression] = STATE(3035), + [sym_implicit_object_creation_expression] = STATE(3035), + [sym_implicit_stackalloc_expression] = STATE(3035), + [sym_initializer_expression] = STATE(3035), + [sym_default_expression] = STATE(3035), + [sym_with_expression] = STATE(3035), + [sym_sizeof_expression] = STATE(3035), + [sym_typeof_expression] = STATE(3035), + [sym_makeref_expression] = STATE(3035), + [sym_ref_expression] = STATE(3035), + [sym_reftype_expression] = STATE(3035), + [sym_refvalue_expression] = STATE(3035), + [sym_stackalloc_expression] = STATE(3035), + [sym_range_expression] = STATE(3035), + [sym_tuple_expression] = STATE(2415), + [sym_literal] = STATE(3035), + [sym_character_literal] = STATE(3037), + [sym_string_literal] = STATE(3037), + [sym_raw_string_literal] = STATE(3037), + [sym_boolean_literal] = STATE(3037), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3035), + [sym_preproc_if_in_attribute_list] = STATE(5583), + [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(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3455), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1307), - [anon_sym_LPAREN] = ACTIONS(1309), - [anon_sym_ref] = ACTIONS(1311), - [anon_sym_LBRACE] = ACTIONS(1313), - [anon_sym_delegate] = ACTIONS(1315), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1239), + [anon_sym_LPAREN] = ACTIONS(1931), + [anon_sym_ref] = ACTIONS(1933), + [anon_sym_LBRACE] = ACTIONS(1245), + [anon_sym_delegate] = ACTIONS(1247), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1317), + [anon_sym_new] = ACTIONS(1935), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1319), - [anon_sym_BANG] = ACTIONS(1069), - [anon_sym_TILDE] = ACTIONS(1069), - [anon_sym_PLUS_PLUS] = ACTIONS(1069), - [anon_sym_DASH_DASH] = ACTIONS(1069), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1071), - [anon_sym_DASH] = ACTIONS(1071), - [anon_sym_STAR] = ACTIONS(1321), - [anon_sym_CARET] = ACTIONS(1069), - [anon_sym_AMP] = ACTIONS(1069), - [anon_sym_this] = ACTIONS(1323), + [anon_sym_checked] = ACTIONS(1251), + [anon_sym_BANG] = ACTIONS(1939), + [anon_sym_TILDE] = ACTIONS(1939), + [anon_sym_PLUS_PLUS] = ACTIONS(1939), + [anon_sym_DASH_DASH] = ACTIONS(1939), + [anon_sym_true] = ACTIONS(1257), + [anon_sym_false] = ACTIONS(1257), + [anon_sym_PLUS] = ACTIONS(1937), + [anon_sym_DASH] = ACTIONS(1937), + [anon_sym_STAR] = ACTIONS(1941), + [anon_sym_CARET] = ACTIONS(1939), + [anon_sym_AMP] = ACTIONS(1939), + [anon_sym_this] = ACTIONS(1261), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1325), + [anon_sym_base] = ACTIONS(1263), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1319), + [sym_predefined_type] = ACTIONS(1265), + [anon_sym_unchecked] = ACTIONS(1251), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1327), + [anon_sym_default] = ACTIONS(1267), + [anon_sym_throw] = ACTIONS(1943), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1329), - [anon_sym_DOT_DOT] = ACTIONS(1331), + [anon_sym_await] = ACTIONS(1945), + [anon_sym_DOT_DOT] = ACTIONS(1947), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -350844,19 +355462,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1333), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(1335), - [anon_sym___reftype] = ACTIONS(1337), - [anon_sym___refvalue] = ACTIONS(1339), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1341), + [anon_sym_stackalloc] = ACTIONS(1275), + [anon_sym_sizeof] = ACTIONS(1277), + [anon_sym_typeof] = ACTIONS(1279), + [anon_sym___makeref] = ACTIONS(1281), + [anon_sym___reftype] = ACTIONS(1283), + [anon_sym___refvalue] = ACTIONS(1285), + [sym_null_literal] = ACTIONS(1287), + [anon_sym_SQUOTE] = ACTIONS(1289), + [sym_integer_literal] = ACTIONS(1287), + [sym_real_literal] = ACTIONS(1291), + [anon_sym_DQUOTE] = ACTIONS(1293), + [sym_verbatim_string_literal] = ACTIONS(1291), + [aux_sym_preproc_if_token1] = ACTIONS(1295), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -350867,309 +355485,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), - }, - [1829] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(3184), - [sym__name] = STATE(5906), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2312), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2269), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(4618), - [sym_non_lvalue_expression] = STATE(4541), - [sym_lvalue_expression] = STATE(3439), - [sym__expression_statement_expression] = STATE(4529), - [sym_assignment_expression] = STATE(4543), - [sym_binary_expression] = STATE(4529), - [sym_postfix_unary_expression] = STATE(4543), - [sym_prefix_unary_expression] = STATE(4543), - [sym__pointer_indirection_expression] = STATE(3175), - [sym_query_expression] = STATE(4529), - [sym_from_clause] = STATE(6169), - [sym_conditional_expression] = STATE(4529), - [sym_conditional_access_expression] = STATE(4529), - [sym_as_expression] = STATE(4529), - [sym_is_expression] = STATE(4529), - [sym_is_pattern_expression] = STATE(4529), - [sym_cast_expression] = STATE(4529), - [sym_checked_expression] = STATE(4529), - [sym_invocation_expression] = STATE(4543), - [sym_switch_expression] = STATE(4529), - [sym_await_expression] = STATE(4543), - [sym_throw_expression] = STATE(4529), - [sym_element_access_expression] = STATE(3175), - [sym_interpolated_string_expression] = STATE(4529), - [sym_member_access_expression] = STATE(3175), - [sym_object_creation_expression] = STATE(4543), - [sym_parenthesized_expression] = STATE(4543), - [sym__parenthesized_lvalue_expression] = STATE(3175), - [sym_lambda_expression] = STATE(4529), - [sym__lambda_expression_init] = STATE(7684), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(4529), - [sym_anonymous_method_expression] = STATE(4529), - [sym_anonymous_object_creation_expression] = STATE(4529), - [sym_implicit_array_creation_expression] = STATE(4529), - [sym_implicit_object_creation_expression] = STATE(4529), - [sym_implicit_stackalloc_expression] = STATE(4529), - [sym_initializer_expression] = STATE(4529), - [sym_default_expression] = STATE(4529), - [sym_with_expression] = STATE(4529), - [sym_sizeof_expression] = STATE(4529), - [sym_typeof_expression] = STATE(4529), - [sym_makeref_expression] = STATE(4529), - [sym_ref_expression] = STATE(4529), - [sym_reftype_expression] = STATE(4529), - [sym_refvalue_expression] = STATE(4529), - [sym_stackalloc_expression] = STATE(4529), - [sym_range_expression] = STATE(4529), - [sym_tuple_expression] = STATE(3175), - [sym_literal] = STATE(4529), - [sym_character_literal] = STATE(4536), - [sym_string_literal] = STATE(4536), - [sym_raw_string_literal] = STATE(4536), - [sym_boolean_literal] = STATE(4536), - [sym_identifier] = STATE(2246), - [sym__reserved_identifier] = STATE(2240), - [sym_preproc_if_in_expression] = STATE(4529), - [sym_preproc_if_in_attribute_list] = STATE(5576), - [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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3363), - [sym__identifier_token] = ACTIONS(1387), - [anon_sym_alias] = ACTIONS(1389), - [anon_sym_global] = ACTIONS(1389), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1391), - [anon_sym_LPAREN] = ACTIONS(1775), - [anon_sym_ref] = ACTIONS(1777), - [anon_sym_LBRACE] = ACTIONS(1397), - [anon_sym_delegate] = ACTIONS(1399), - [anon_sym_async] = ACTIONS(1047), - [anon_sym_file] = ACTIONS(1389), - [anon_sym_new] = ACTIONS(1401), - [anon_sym_where] = ACTIONS(1389), - [anon_sym_notnull] = ACTIONS(1389), - [anon_sym_unmanaged] = ACTIONS(1389), - [anon_sym_checked] = ACTIONS(1403), - [anon_sym_BANG] = ACTIONS(1781), - [anon_sym_TILDE] = ACTIONS(1781), - [anon_sym_PLUS_PLUS] = ACTIONS(1781), - [anon_sym_DASH_DASH] = ACTIONS(1781), - [anon_sym_true] = ACTIONS(1409), - [anon_sym_false] = ACTIONS(1409), - [anon_sym_PLUS] = ACTIONS(1779), - [anon_sym_DASH] = ACTIONS(1779), - [anon_sym_STAR] = ACTIONS(1411), - [anon_sym_CARET] = ACTIONS(1781), - [anon_sym_AMP] = ACTIONS(1781), - [anon_sym_this] = ACTIONS(1413), - [anon_sym_scoped] = ACTIONS(1415), - [anon_sym_base] = ACTIONS(1417), - [anon_sym_var] = ACTIONS(1419), - [sym_predefined_type] = ACTIONS(1421), - [anon_sym_unchecked] = ACTIONS(1403), - [anon_sym_yield] = ACTIONS(1389), - [anon_sym_default] = ACTIONS(1423), - [anon_sym_throw] = ACTIONS(1783), - [anon_sym_when] = ACTIONS(1389), - [anon_sym_await] = ACTIONS(1785), - [anon_sym_DOT_DOT] = ACTIONS(1787), - [anon_sym_from] = ACTIONS(1431), - [anon_sym_into] = ACTIONS(1389), - [anon_sym_join] = ACTIONS(1389), - [anon_sym_on] = ACTIONS(1389), - [anon_sym_equals] = ACTIONS(1389), - [anon_sym_let] = ACTIONS(1389), - [anon_sym_orderby] = ACTIONS(1389), - [anon_sym_ascending] = ACTIONS(1389), - [anon_sym_descending] = ACTIONS(1389), - [anon_sym_group] = ACTIONS(1389), - [anon_sym_by] = ACTIONS(1389), - [anon_sym_select] = ACTIONS(1389), - [anon_sym_stackalloc] = ACTIONS(1433), - [anon_sym_sizeof] = ACTIONS(1435), - [anon_sym_typeof] = ACTIONS(1437), - [anon_sym___makeref] = ACTIONS(1439), - [anon_sym___reftype] = ACTIONS(1441), - [anon_sym___refvalue] = ACTIONS(1443), - [sym_null_literal] = ACTIONS(1445), - [anon_sym_SQUOTE] = ACTIONS(1447), - [sym_integer_literal] = ACTIONS(1445), - [sym_real_literal] = ACTIONS(1449), - [anon_sym_DQUOTE] = ACTIONS(1451), - [sym_verbatim_string_literal] = ACTIONS(1449), - [aux_sym_preproc_if_token1] = ACTIONS(1453), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1455), - [sym_interpolation_verbatim_start] = ACTIONS(1457), - [sym_interpolation_raw_start] = ACTIONS(1459), - [sym_raw_string_start] = ACTIONS(1461), + [sym_interpolation_regular_start] = ACTIONS(1297), + [sym_interpolation_verbatim_start] = ACTIONS(1299), + [sym_interpolation_raw_start] = ACTIONS(1301), + [sym_raw_string_start] = ACTIONS(1303), }, - [1830] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(5910), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2247), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(5128), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3379), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3080), - [sym_postfix_unary_expression] = STATE(3111), - [sym_prefix_unary_expression] = STATE(3111), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6154), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3080), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3111), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3080), - [sym_member_access_expression] = STATE(2484), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3111), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7575), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(3080), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3080), - [sym_typeof_expression] = STATE(3080), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2484), - [sym_literal] = STATE(3080), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), - [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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [1857] = { + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2416), + [sym__name] = STATE(5885), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2404), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(3962), + [sym_non_lvalue_expression] = STATE(3040), + [sym_lvalue_expression] = STATE(3100), + [sym__expression_statement_expression] = STATE(3035), + [sym_assignment_expression] = STATE(3043), + [sym_binary_expression] = STATE(3035), + [sym_postfix_unary_expression] = STATE(3043), + [sym_prefix_unary_expression] = STATE(3043), + [sym__pointer_indirection_expression] = STATE(2415), + [sym_query_expression] = STATE(3035), + [sym_from_clause] = STATE(6135), + [sym_conditional_expression] = STATE(3035), + [sym_conditional_access_expression] = STATE(3035), + [sym_as_expression] = STATE(3035), + [sym_is_expression] = STATE(3035), + [sym_is_pattern_expression] = STATE(3035), + [sym_cast_expression] = STATE(3035), + [sym_checked_expression] = STATE(3035), + [sym_invocation_expression] = STATE(3043), + [sym_switch_expression] = STATE(3035), + [sym_await_expression] = STATE(3043), + [sym_throw_expression] = STATE(3035), + [sym_element_access_expression] = STATE(2415), + [sym_interpolated_string_expression] = STATE(3035), + [sym_member_access_expression] = STATE(2415), + [sym_object_creation_expression] = STATE(3043), + [sym_parenthesized_expression] = STATE(3043), + [sym__parenthesized_lvalue_expression] = STATE(2415), + [sym_lambda_expression] = STATE(3035), + [sym__lambda_expression_init] = STATE(7470), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3035), + [sym_anonymous_method_expression] = STATE(3035), + [sym_anonymous_object_creation_expression] = STATE(3035), + [sym_implicit_array_creation_expression] = STATE(3035), + [sym_implicit_object_creation_expression] = STATE(3035), + [sym_implicit_stackalloc_expression] = STATE(3035), + [sym_initializer_expression] = STATE(3035), + [sym_default_expression] = STATE(3035), + [sym_with_expression] = STATE(3035), + [sym_sizeof_expression] = STATE(3035), + [sym_typeof_expression] = STATE(3035), + [sym_makeref_expression] = STATE(3035), + [sym_ref_expression] = STATE(3035), + [sym_reftype_expression] = STATE(3035), + [sym_refvalue_expression] = STATE(3035), + [sym_stackalloc_expression] = STATE(3035), + [sym_range_expression] = STATE(3035), + [sym_tuple_expression] = STATE(2415), + [sym_literal] = STATE(3035), + [sym_character_literal] = STATE(3037), + [sym_string_literal] = STATE(3037), + [sym_raw_string_literal] = STATE(3037), + [sym_boolean_literal] = STATE(3037), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3035), + [sym_preproc_if_in_attribute_list] = STATE(5583), + [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(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3455), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1481), - [anon_sym_LPAREN] = ACTIONS(895), - [anon_sym_ref] = ACTIONS(897), - [anon_sym_LBRACE] = ACTIONS(1487), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1239), + [anon_sym_LPAREN] = ACTIONS(1931), + [anon_sym_ref] = ACTIONS(1933), + [anon_sym_LBRACE] = ACTIONS(1245), + [anon_sym_delegate] = ACTIONS(1247), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1061), + [anon_sym_new] = ACTIONS(1935), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1067), - [anon_sym_BANG] = ACTIONS(1495), - [anon_sym_TILDE] = ACTIONS(1495), - [anon_sym_PLUS_PLUS] = ACTIONS(1495), - [anon_sym_DASH_DASH] = ACTIONS(1495), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1493), - [anon_sym_DASH] = ACTIONS(1493), - [anon_sym_STAR] = ACTIONS(905), - [anon_sym_CARET] = ACTIONS(1495), - [anon_sym_AMP] = ACTIONS(1495), - [anon_sym_this] = ACTIONS(83), + [anon_sym_checked] = ACTIONS(1251), + [anon_sym_BANG] = ACTIONS(1939), + [anon_sym_TILDE] = ACTIONS(1939), + [anon_sym_PLUS_PLUS] = ACTIONS(1939), + [anon_sym_DASH_DASH] = ACTIONS(1939), + [anon_sym_true] = ACTIONS(1257), + [anon_sym_false] = ACTIONS(1257), + [anon_sym_PLUS] = ACTIONS(1937), + [anon_sym_DASH] = ACTIONS(1937), + [anon_sym_STAR] = ACTIONS(1941), + [anon_sym_CARET] = ACTIONS(1939), + [anon_sym_AMP] = ACTIONS(1939), + [anon_sym_this] = ACTIONS(1261), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), + [anon_sym_base] = ACTIONS(1263), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1067), + [sym_predefined_type] = ACTIONS(1265), + [anon_sym_unchecked] = ACTIONS(1251), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1079), + [anon_sym_default] = ACTIONS(1267), + [anon_sym_throw] = ACTIONS(1943), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1081), - [anon_sym_DOT_DOT] = ACTIONS(911), + [anon_sym_await] = ACTIONS(1945), + [anon_sym_DOT_DOT] = ACTIONS(1947), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -351182,19 +355631,19 @@ static const uint16_t ts_parse_table[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(1089), + [anon_sym_stackalloc] = ACTIONS(1275), + [anon_sym_sizeof] = ACTIONS(1277), + [anon_sym_typeof] = ACTIONS(1279), + [anon_sym___makeref] = ACTIONS(1281), + [anon_sym___reftype] = ACTIONS(1283), + [anon_sym___refvalue] = ACTIONS(1285), + [sym_null_literal] = ACTIONS(1287), + [anon_sym_SQUOTE] = ACTIONS(1289), + [sym_integer_literal] = ACTIONS(1287), + [sym_real_literal] = ACTIONS(1291), + [anon_sym_DQUOTE] = ACTIONS(1293), + [sym_verbatim_string_literal] = ACTIONS(1291), + [aux_sym_preproc_if_token1] = ACTIONS(1295), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -351205,140 +355654,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(1297), + [sym_interpolation_verbatim_start] = ACTIONS(1299), + [sym_interpolation_raw_start] = ACTIONS(1301), + [sym_raw_string_start] = ACTIONS(1303), }, - [1831] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2610), - [sym__name] = STATE(5898), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2197), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(4839), - [sym_non_lvalue_expression] = STATE(3277), - [sym_lvalue_expression] = STATE(3510), - [sym__expression_statement_expression] = STATE(3228), - [sym_assignment_expression] = STATE(3289), - [sym_binary_expression] = STATE(3228), - [sym_postfix_unary_expression] = STATE(3289), - [sym_prefix_unary_expression] = STATE(3289), - [sym__pointer_indirection_expression] = STATE(2609), - [sym_query_expression] = STATE(3228), - [sym_from_clause] = STATE(6180), - [sym_conditional_expression] = STATE(3228), - [sym_conditional_access_expression] = STATE(3228), - [sym_as_expression] = STATE(3228), - [sym_is_expression] = STATE(3228), - [sym_is_pattern_expression] = STATE(3228), - [sym_cast_expression] = STATE(3228), - [sym_checked_expression] = STATE(3228), - [sym_invocation_expression] = STATE(3289), - [sym_switch_expression] = STATE(3228), - [sym_await_expression] = STATE(3289), - [sym_throw_expression] = STATE(3228), - [sym_element_access_expression] = STATE(2609), - [sym_interpolated_string_expression] = STATE(3228), - [sym_member_access_expression] = STATE(2609), - [sym_object_creation_expression] = STATE(3289), - [sym_parenthesized_expression] = STATE(3289), - [sym__parenthesized_lvalue_expression] = STATE(2609), - [sym_lambda_expression] = STATE(3228), - [sym__lambda_expression_init] = STATE(7527), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3228), - [sym_anonymous_method_expression] = STATE(3228), - [sym_anonymous_object_creation_expression] = STATE(3228), - [sym_implicit_array_creation_expression] = STATE(3228), - [sym_implicit_object_creation_expression] = STATE(3228), - [sym_implicit_stackalloc_expression] = STATE(3228), - [sym_initializer_expression] = STATE(3228), - [sym_default_expression] = STATE(3228), - [sym_with_expression] = STATE(3228), - [sym_sizeof_expression] = STATE(3228), - [sym_typeof_expression] = STATE(3228), - [sym_makeref_expression] = STATE(3228), - [sym_ref_expression] = STATE(3228), - [sym_reftype_expression] = STATE(3228), - [sym_refvalue_expression] = STATE(3228), - [sym_stackalloc_expression] = STATE(3228), - [sym_range_expression] = STATE(3228), - [sym_tuple_expression] = STATE(2609), - [sym_literal] = STATE(3228), - [sym_character_literal] = STATE(3278), - [sym_string_literal] = STATE(3278), - [sym_raw_string_literal] = STATE(3278), - [sym_boolean_literal] = STATE(3278), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3228), - [sym_preproc_if_in_attribute_list] = STATE(5576), - [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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3396), + [1858] = { + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2416), + [sym__name] = STATE(5885), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2404), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(3965), + [sym_non_lvalue_expression] = STATE(3040), + [sym_lvalue_expression] = STATE(3100), + [sym__expression_statement_expression] = STATE(3035), + [sym_assignment_expression] = STATE(3043), + [sym_binary_expression] = STATE(3035), + [sym_postfix_unary_expression] = STATE(3043), + [sym_prefix_unary_expression] = STATE(3043), + [sym__pointer_indirection_expression] = STATE(2415), + [sym_query_expression] = STATE(3035), + [sym_from_clause] = STATE(6135), + [sym_conditional_expression] = STATE(3035), + [sym_conditional_access_expression] = STATE(3035), + [sym_as_expression] = STATE(3035), + [sym_is_expression] = STATE(3035), + [sym_is_pattern_expression] = STATE(3035), + [sym_cast_expression] = STATE(3035), + [sym_checked_expression] = STATE(3035), + [sym_invocation_expression] = STATE(3043), + [sym_switch_expression] = STATE(3035), + [sym_await_expression] = STATE(3043), + [sym_throw_expression] = STATE(3035), + [sym_element_access_expression] = STATE(2415), + [sym_interpolated_string_expression] = STATE(3035), + [sym_member_access_expression] = STATE(2415), + [sym_object_creation_expression] = STATE(3043), + [sym_parenthesized_expression] = STATE(3043), + [sym__parenthesized_lvalue_expression] = STATE(2415), + [sym_lambda_expression] = STATE(3035), + [sym__lambda_expression_init] = STATE(7470), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3035), + [sym_anonymous_method_expression] = STATE(3035), + [sym_anonymous_object_creation_expression] = STATE(3035), + [sym_implicit_array_creation_expression] = STATE(3035), + [sym_implicit_object_creation_expression] = STATE(3035), + [sym_implicit_stackalloc_expression] = STATE(3035), + [sym_initializer_expression] = STATE(3035), + [sym_default_expression] = STATE(3035), + [sym_with_expression] = STATE(3035), + [sym_sizeof_expression] = STATE(3035), + [sym_typeof_expression] = STATE(3035), + [sym_makeref_expression] = STATE(3035), + [sym_ref_expression] = STATE(3035), + [sym_reftype_expression] = STATE(3035), + [sym_refvalue_expression] = STATE(3035), + [sym_stackalloc_expression] = STATE(3035), + [sym_range_expression] = STATE(3035), + [sym_tuple_expression] = STATE(2415), + [sym_literal] = STATE(3035), + [sym_character_literal] = STATE(3037), + [sym_string_literal] = STATE(3037), + [sym_raw_string_literal] = STATE(3037), + [sym_boolean_literal] = STATE(3037), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3035), + [sym_preproc_if_in_attribute_list] = STATE(5583), + [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(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3455), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1153), - [anon_sym_LPAREN] = ACTIONS(1759), - [anon_sym_ref] = ACTIONS(1761), - [anon_sym_LBRACE] = ACTIONS(1159), - [anon_sym_delegate] = ACTIONS(1161), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1239), + [anon_sym_LPAREN] = ACTIONS(1931), + [anon_sym_ref] = ACTIONS(1933), + [anon_sym_LBRACE] = ACTIONS(1245), + [anon_sym_delegate] = ACTIONS(1247), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1163), + [anon_sym_new] = ACTIONS(1935), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1167), - [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(1173), - [anon_sym_false] = ACTIONS(1173), - [anon_sym_PLUS] = ACTIONS(1763), - [anon_sym_DASH] = ACTIONS(1763), - [anon_sym_STAR] = ACTIONS(1175), - [anon_sym_CARET] = ACTIONS(1765), - [anon_sym_AMP] = ACTIONS(1765), - [anon_sym_this] = ACTIONS(1177), + [anon_sym_checked] = ACTIONS(1251), + [anon_sym_BANG] = ACTIONS(1939), + [anon_sym_TILDE] = ACTIONS(1939), + [anon_sym_PLUS_PLUS] = ACTIONS(1939), + [anon_sym_DASH_DASH] = ACTIONS(1939), + [anon_sym_true] = ACTIONS(1257), + [anon_sym_false] = ACTIONS(1257), + [anon_sym_PLUS] = ACTIONS(1937), + [anon_sym_DASH] = ACTIONS(1937), + [anon_sym_STAR] = ACTIONS(1941), + [anon_sym_CARET] = ACTIONS(1939), + [anon_sym_AMP] = ACTIONS(1939), + [anon_sym_this] = ACTIONS(1261), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1179), + [anon_sym_base] = ACTIONS(1263), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1181), - [anon_sym_unchecked] = ACTIONS(1167), + [sym_predefined_type] = ACTIONS(1265), + [anon_sym_unchecked] = ACTIONS(1251), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1183), - [anon_sym_throw] = ACTIONS(1767), + [anon_sym_default] = ACTIONS(1267), + [anon_sym_throw] = ACTIONS(1943), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1769), - [anon_sym_DOT_DOT] = ACTIONS(1771), + [anon_sym_await] = ACTIONS(1945), + [anon_sym_DOT_DOT] = ACTIONS(1947), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -351351,19 +355800,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1191), - [anon_sym_sizeof] = ACTIONS(1193), - [anon_sym_typeof] = ACTIONS(1195), - [anon_sym___makeref] = ACTIONS(1197), - [anon_sym___reftype] = ACTIONS(1199), - [anon_sym___refvalue] = ACTIONS(1201), - [sym_null_literal] = ACTIONS(1203), - [anon_sym_SQUOTE] = ACTIONS(1205), - [sym_integer_literal] = ACTIONS(1203), - [sym_real_literal] = ACTIONS(1207), - [anon_sym_DQUOTE] = ACTIONS(1209), - [sym_verbatim_string_literal] = ACTIONS(1207), - [aux_sym_preproc_if_token1] = ACTIONS(1773), + [anon_sym_stackalloc] = ACTIONS(1275), + [anon_sym_sizeof] = ACTIONS(1277), + [anon_sym_typeof] = ACTIONS(1279), + [anon_sym___makeref] = ACTIONS(1281), + [anon_sym___reftype] = ACTIONS(1283), + [anon_sym___refvalue] = ACTIONS(1285), + [sym_null_literal] = ACTIONS(1287), + [anon_sym_SQUOTE] = ACTIONS(1289), + [sym_integer_literal] = ACTIONS(1287), + [sym_real_literal] = ACTIONS(1291), + [anon_sym_DQUOTE] = ACTIONS(1293), + [sym_verbatim_string_literal] = ACTIONS(1291), + [aux_sym_preproc_if_token1] = ACTIONS(1295), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -351374,140 +355823,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(1213), - [sym_interpolation_verbatim_start] = ACTIONS(1215), - [sym_interpolation_raw_start] = ACTIONS(1217), - [sym_raw_string_start] = ACTIONS(1219), + [sym_interpolation_regular_start] = ACTIONS(1297), + [sym_interpolation_verbatim_start] = ACTIONS(1299), + [sym_interpolation_raw_start] = ACTIONS(1301), + [sym_raw_string_start] = ACTIONS(1303), }, - [1832] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2610), - [sym__name] = STATE(5898), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2197), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(4841), - [sym_non_lvalue_expression] = STATE(3277), - [sym_lvalue_expression] = STATE(3510), - [sym__expression_statement_expression] = STATE(3228), - [sym_assignment_expression] = STATE(3289), - [sym_binary_expression] = STATE(3228), - [sym_postfix_unary_expression] = STATE(3289), - [sym_prefix_unary_expression] = STATE(3289), - [sym__pointer_indirection_expression] = STATE(2609), - [sym_query_expression] = STATE(3228), - [sym_from_clause] = STATE(6180), - [sym_conditional_expression] = STATE(3228), - [sym_conditional_access_expression] = STATE(3228), - [sym_as_expression] = STATE(3228), - [sym_is_expression] = STATE(3228), - [sym_is_pattern_expression] = STATE(3228), - [sym_cast_expression] = STATE(3228), - [sym_checked_expression] = STATE(3228), - [sym_invocation_expression] = STATE(3289), - [sym_switch_expression] = STATE(3228), - [sym_await_expression] = STATE(3289), - [sym_throw_expression] = STATE(3228), - [sym_element_access_expression] = STATE(2609), - [sym_interpolated_string_expression] = STATE(3228), - [sym_member_access_expression] = STATE(2609), - [sym_object_creation_expression] = STATE(3289), - [sym_parenthesized_expression] = STATE(3289), - [sym__parenthesized_lvalue_expression] = STATE(2609), - [sym_lambda_expression] = STATE(3228), - [sym__lambda_expression_init] = STATE(7527), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3228), - [sym_anonymous_method_expression] = STATE(3228), - [sym_anonymous_object_creation_expression] = STATE(3228), - [sym_implicit_array_creation_expression] = STATE(3228), - [sym_implicit_object_creation_expression] = STATE(3228), - [sym_implicit_stackalloc_expression] = STATE(3228), - [sym_initializer_expression] = STATE(3228), - [sym_default_expression] = STATE(3228), - [sym_with_expression] = STATE(3228), - [sym_sizeof_expression] = STATE(3228), - [sym_typeof_expression] = STATE(3228), - [sym_makeref_expression] = STATE(3228), - [sym_ref_expression] = STATE(3228), - [sym_reftype_expression] = STATE(3228), - [sym_refvalue_expression] = STATE(3228), - [sym_stackalloc_expression] = STATE(3228), - [sym_range_expression] = STATE(3228), - [sym_tuple_expression] = STATE(2609), - [sym_literal] = STATE(3228), - [sym_character_literal] = STATE(3278), - [sym_string_literal] = STATE(3278), - [sym_raw_string_literal] = STATE(3278), - [sym_boolean_literal] = STATE(3278), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3228), - [sym_preproc_if_in_attribute_list] = STATE(5576), - [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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3396), + [1859] = { + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2416), + [sym__name] = STATE(5885), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2404), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(3999), + [sym_non_lvalue_expression] = STATE(3040), + [sym_lvalue_expression] = STATE(3100), + [sym__expression_statement_expression] = STATE(3035), + [sym_assignment_expression] = STATE(3043), + [sym_binary_expression] = STATE(3035), + [sym_postfix_unary_expression] = STATE(3043), + [sym_prefix_unary_expression] = STATE(3043), + [sym__pointer_indirection_expression] = STATE(2415), + [sym_query_expression] = STATE(3035), + [sym_from_clause] = STATE(6135), + [sym_conditional_expression] = STATE(3035), + [sym_conditional_access_expression] = STATE(3035), + [sym_as_expression] = STATE(3035), + [sym_is_expression] = STATE(3035), + [sym_is_pattern_expression] = STATE(3035), + [sym_cast_expression] = STATE(3035), + [sym_checked_expression] = STATE(3035), + [sym_invocation_expression] = STATE(3043), + [sym_switch_expression] = STATE(3035), + [sym_await_expression] = STATE(3043), + [sym_throw_expression] = STATE(3035), + [sym_element_access_expression] = STATE(2415), + [sym_interpolated_string_expression] = STATE(3035), + [sym_member_access_expression] = STATE(2415), + [sym_object_creation_expression] = STATE(3043), + [sym_parenthesized_expression] = STATE(3043), + [sym__parenthesized_lvalue_expression] = STATE(2415), + [sym_lambda_expression] = STATE(3035), + [sym__lambda_expression_init] = STATE(7470), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3035), + [sym_anonymous_method_expression] = STATE(3035), + [sym_anonymous_object_creation_expression] = STATE(3035), + [sym_implicit_array_creation_expression] = STATE(3035), + [sym_implicit_object_creation_expression] = STATE(3035), + [sym_implicit_stackalloc_expression] = STATE(3035), + [sym_initializer_expression] = STATE(3035), + [sym_default_expression] = STATE(3035), + [sym_with_expression] = STATE(3035), + [sym_sizeof_expression] = STATE(3035), + [sym_typeof_expression] = STATE(3035), + [sym_makeref_expression] = STATE(3035), + [sym_ref_expression] = STATE(3035), + [sym_reftype_expression] = STATE(3035), + [sym_refvalue_expression] = STATE(3035), + [sym_stackalloc_expression] = STATE(3035), + [sym_range_expression] = STATE(3035), + [sym_tuple_expression] = STATE(2415), + [sym_literal] = STATE(3035), + [sym_character_literal] = STATE(3037), + [sym_string_literal] = STATE(3037), + [sym_raw_string_literal] = STATE(3037), + [sym_boolean_literal] = STATE(3037), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3035), + [sym_preproc_if_in_attribute_list] = STATE(5583), + [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(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3455), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1153), - [anon_sym_LPAREN] = ACTIONS(1759), - [anon_sym_ref] = ACTIONS(1761), - [anon_sym_LBRACE] = ACTIONS(1159), - [anon_sym_delegate] = ACTIONS(1161), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1239), + [anon_sym_LPAREN] = ACTIONS(1931), + [anon_sym_ref] = ACTIONS(1933), + [anon_sym_LBRACE] = ACTIONS(1245), + [anon_sym_delegate] = ACTIONS(1247), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1163), + [anon_sym_new] = ACTIONS(1935), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1167), - [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(1173), - [anon_sym_false] = ACTIONS(1173), - [anon_sym_PLUS] = ACTIONS(1763), - [anon_sym_DASH] = ACTIONS(1763), - [anon_sym_STAR] = ACTIONS(1175), - [anon_sym_CARET] = ACTIONS(1765), - [anon_sym_AMP] = ACTIONS(1765), - [anon_sym_this] = ACTIONS(1177), + [anon_sym_checked] = ACTIONS(1251), + [anon_sym_BANG] = ACTIONS(1939), + [anon_sym_TILDE] = ACTIONS(1939), + [anon_sym_PLUS_PLUS] = ACTIONS(1939), + [anon_sym_DASH_DASH] = ACTIONS(1939), + [anon_sym_true] = ACTIONS(1257), + [anon_sym_false] = ACTIONS(1257), + [anon_sym_PLUS] = ACTIONS(1937), + [anon_sym_DASH] = ACTIONS(1937), + [anon_sym_STAR] = ACTIONS(1941), + [anon_sym_CARET] = ACTIONS(1939), + [anon_sym_AMP] = ACTIONS(1939), + [anon_sym_this] = ACTIONS(1261), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1179), + [anon_sym_base] = ACTIONS(1263), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1181), - [anon_sym_unchecked] = ACTIONS(1167), + [sym_predefined_type] = ACTIONS(1265), + [anon_sym_unchecked] = ACTIONS(1251), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1183), - [anon_sym_throw] = ACTIONS(1767), + [anon_sym_default] = ACTIONS(1267), + [anon_sym_throw] = ACTIONS(1943), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1769), - [anon_sym_DOT_DOT] = ACTIONS(1771), + [anon_sym_await] = ACTIONS(1945), + [anon_sym_DOT_DOT] = ACTIONS(1947), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -351520,19 +355969,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1191), - [anon_sym_sizeof] = ACTIONS(1193), - [anon_sym_typeof] = ACTIONS(1195), - [anon_sym___makeref] = ACTIONS(1197), - [anon_sym___reftype] = ACTIONS(1199), - [anon_sym___refvalue] = ACTIONS(1201), - [sym_null_literal] = ACTIONS(1203), - [anon_sym_SQUOTE] = ACTIONS(1205), - [sym_integer_literal] = ACTIONS(1203), - [sym_real_literal] = ACTIONS(1207), - [anon_sym_DQUOTE] = ACTIONS(1209), - [sym_verbatim_string_literal] = ACTIONS(1207), - [aux_sym_preproc_if_token1] = ACTIONS(1773), + [anon_sym_stackalloc] = ACTIONS(1275), + [anon_sym_sizeof] = ACTIONS(1277), + [anon_sym_typeof] = ACTIONS(1279), + [anon_sym___makeref] = ACTIONS(1281), + [anon_sym___reftype] = ACTIONS(1283), + [anon_sym___refvalue] = ACTIONS(1285), + [sym_null_literal] = ACTIONS(1287), + [anon_sym_SQUOTE] = ACTIONS(1289), + [sym_integer_literal] = ACTIONS(1287), + [sym_real_literal] = ACTIONS(1291), + [anon_sym_DQUOTE] = ACTIONS(1293), + [sym_verbatim_string_literal] = ACTIONS(1291), + [aux_sym_preproc_if_token1] = ACTIONS(1295), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -351543,140 +355992,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(1213), - [sym_interpolation_verbatim_start] = ACTIONS(1215), - [sym_interpolation_raw_start] = ACTIONS(1217), - [sym_raw_string_start] = ACTIONS(1219), + [sym_interpolation_regular_start] = ACTIONS(1297), + [sym_interpolation_verbatim_start] = ACTIONS(1299), + [sym_interpolation_raw_start] = ACTIONS(1301), + [sym_raw_string_start] = ACTIONS(1303), }, - [1833] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(5910), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2247), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(5190), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3379), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3080), - [sym_postfix_unary_expression] = STATE(3111), - [sym_prefix_unary_expression] = STATE(3111), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6154), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3080), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3111), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3080), - [sym_member_access_expression] = STATE(2484), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3111), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7575), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(3080), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3080), - [sym_typeof_expression] = STATE(3080), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2484), - [sym_literal] = STATE(3080), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), - [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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [1860] = { + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2416), + [sym__name] = STATE(5885), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2404), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(4000), + [sym_non_lvalue_expression] = STATE(3040), + [sym_lvalue_expression] = STATE(3100), + [sym__expression_statement_expression] = STATE(3035), + [sym_assignment_expression] = STATE(3043), + [sym_binary_expression] = STATE(3035), + [sym_postfix_unary_expression] = STATE(3043), + [sym_prefix_unary_expression] = STATE(3043), + [sym__pointer_indirection_expression] = STATE(2415), + [sym_query_expression] = STATE(3035), + [sym_from_clause] = STATE(6135), + [sym_conditional_expression] = STATE(3035), + [sym_conditional_access_expression] = STATE(3035), + [sym_as_expression] = STATE(3035), + [sym_is_expression] = STATE(3035), + [sym_is_pattern_expression] = STATE(3035), + [sym_cast_expression] = STATE(3035), + [sym_checked_expression] = STATE(3035), + [sym_invocation_expression] = STATE(3043), + [sym_switch_expression] = STATE(3035), + [sym_await_expression] = STATE(3043), + [sym_throw_expression] = STATE(3035), + [sym_element_access_expression] = STATE(2415), + [sym_interpolated_string_expression] = STATE(3035), + [sym_member_access_expression] = STATE(2415), + [sym_object_creation_expression] = STATE(3043), + [sym_parenthesized_expression] = STATE(3043), + [sym__parenthesized_lvalue_expression] = STATE(2415), + [sym_lambda_expression] = STATE(3035), + [sym__lambda_expression_init] = STATE(7470), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3035), + [sym_anonymous_method_expression] = STATE(3035), + [sym_anonymous_object_creation_expression] = STATE(3035), + [sym_implicit_array_creation_expression] = STATE(3035), + [sym_implicit_object_creation_expression] = STATE(3035), + [sym_implicit_stackalloc_expression] = STATE(3035), + [sym_initializer_expression] = STATE(3035), + [sym_default_expression] = STATE(3035), + [sym_with_expression] = STATE(3035), + [sym_sizeof_expression] = STATE(3035), + [sym_typeof_expression] = STATE(3035), + [sym_makeref_expression] = STATE(3035), + [sym_ref_expression] = STATE(3035), + [sym_reftype_expression] = STATE(3035), + [sym_refvalue_expression] = STATE(3035), + [sym_stackalloc_expression] = STATE(3035), + [sym_range_expression] = STATE(3035), + [sym_tuple_expression] = STATE(2415), + [sym_literal] = STATE(3035), + [sym_character_literal] = STATE(3037), + [sym_string_literal] = STATE(3037), + [sym_raw_string_literal] = STATE(3037), + [sym_boolean_literal] = STATE(3037), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3035), + [sym_preproc_if_in_attribute_list] = STATE(5583), + [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(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3455), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1481), - [anon_sym_LPAREN] = ACTIONS(895), - [anon_sym_ref] = ACTIONS(897), - [anon_sym_LBRACE] = ACTIONS(1487), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1239), + [anon_sym_LPAREN] = ACTIONS(1931), + [anon_sym_ref] = ACTIONS(1933), + [anon_sym_LBRACE] = ACTIONS(1245), + [anon_sym_delegate] = ACTIONS(1247), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1061), + [anon_sym_new] = ACTIONS(1935), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1067), - [anon_sym_BANG] = ACTIONS(1495), - [anon_sym_TILDE] = ACTIONS(1495), - [anon_sym_PLUS_PLUS] = ACTIONS(1495), - [anon_sym_DASH_DASH] = ACTIONS(1495), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1493), - [anon_sym_DASH] = ACTIONS(1493), - [anon_sym_STAR] = ACTIONS(905), - [anon_sym_CARET] = ACTIONS(1495), - [anon_sym_AMP] = ACTIONS(1495), - [anon_sym_this] = ACTIONS(83), + [anon_sym_checked] = ACTIONS(1251), + [anon_sym_BANG] = ACTIONS(1939), + [anon_sym_TILDE] = ACTIONS(1939), + [anon_sym_PLUS_PLUS] = ACTIONS(1939), + [anon_sym_DASH_DASH] = ACTIONS(1939), + [anon_sym_true] = ACTIONS(1257), + [anon_sym_false] = ACTIONS(1257), + [anon_sym_PLUS] = ACTIONS(1937), + [anon_sym_DASH] = ACTIONS(1937), + [anon_sym_STAR] = ACTIONS(1941), + [anon_sym_CARET] = ACTIONS(1939), + [anon_sym_AMP] = ACTIONS(1939), + [anon_sym_this] = ACTIONS(1261), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), + [anon_sym_base] = ACTIONS(1263), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1067), + [sym_predefined_type] = ACTIONS(1265), + [anon_sym_unchecked] = ACTIONS(1251), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1079), + [anon_sym_default] = ACTIONS(1267), + [anon_sym_throw] = ACTIONS(1943), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1081), - [anon_sym_DOT_DOT] = ACTIONS(911), + [anon_sym_await] = ACTIONS(1945), + [anon_sym_DOT_DOT] = ACTIONS(1947), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -351689,19 +356138,19 @@ static const uint16_t ts_parse_table[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(1089), + [anon_sym_stackalloc] = ACTIONS(1275), + [anon_sym_sizeof] = ACTIONS(1277), + [anon_sym_typeof] = ACTIONS(1279), + [anon_sym___makeref] = ACTIONS(1281), + [anon_sym___reftype] = ACTIONS(1283), + [anon_sym___refvalue] = ACTIONS(1285), + [sym_null_literal] = ACTIONS(1287), + [anon_sym_SQUOTE] = ACTIONS(1289), + [sym_integer_literal] = ACTIONS(1287), + [sym_real_literal] = ACTIONS(1291), + [anon_sym_DQUOTE] = ACTIONS(1293), + [sym_verbatim_string_literal] = ACTIONS(1291), + [aux_sym_preproc_if_token1] = ACTIONS(1295), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -351712,140 +356161,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(1297), + [sym_interpolation_verbatim_start] = ACTIONS(1299), + [sym_interpolation_raw_start] = ACTIONS(1301), + [sym_raw_string_start] = ACTIONS(1303), }, - [1834] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2420), - [sym__name] = STATE(5887), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2197), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(2907), - [sym_non_lvalue_expression] = STATE(3066), - [sym_lvalue_expression] = STATE(3637), - [sym__expression_statement_expression] = STATE(3006), - [sym_assignment_expression] = STATE(3020), - [sym_binary_expression] = STATE(3006), - [sym_postfix_unary_expression] = STATE(3020), - [sym_prefix_unary_expression] = STATE(3020), - [sym__pointer_indirection_expression] = STATE(2423), - [sym_query_expression] = STATE(3006), - [sym_from_clause] = STATE(6148), - [sym_conditional_expression] = STATE(3006), - [sym_conditional_access_expression] = STATE(3006), - [sym_as_expression] = STATE(3006), - [sym_is_expression] = STATE(3006), - [sym_is_pattern_expression] = STATE(3006), - [sym_cast_expression] = STATE(3006), - [sym_checked_expression] = STATE(3006), - [sym_invocation_expression] = STATE(3020), - [sym_switch_expression] = STATE(3006), - [sym_await_expression] = STATE(3020), - [sym_throw_expression] = STATE(3006), - [sym_element_access_expression] = STATE(2423), - [sym_interpolated_string_expression] = STATE(3006), - [sym_member_access_expression] = STATE(2423), - [sym_object_creation_expression] = STATE(3020), - [sym_parenthesized_expression] = STATE(3020), - [sym__parenthesized_lvalue_expression] = STATE(2423), - [sym_lambda_expression] = STATE(3006), - [sym__lambda_expression_init] = STATE(7507), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3006), - [sym_anonymous_method_expression] = STATE(3006), - [sym_anonymous_object_creation_expression] = STATE(3006), - [sym_implicit_array_creation_expression] = STATE(3006), - [sym_implicit_object_creation_expression] = STATE(3006), - [sym_implicit_stackalloc_expression] = STATE(3006), - [sym_initializer_expression] = STATE(3006), - [sym_default_expression] = STATE(3006), - [sym_with_expression] = STATE(3006), - [sym_sizeof_expression] = STATE(3006), - [sym_typeof_expression] = STATE(3006), - [sym_makeref_expression] = STATE(3006), - [sym_ref_expression] = STATE(3006), - [sym_reftype_expression] = STATE(3006), - [sym_refvalue_expression] = STATE(3006), - [sym_stackalloc_expression] = STATE(3006), - [sym_range_expression] = STATE(3006), - [sym_tuple_expression] = STATE(2423), - [sym_literal] = STATE(3006), - [sym_character_literal] = STATE(3011), - [sym_string_literal] = STATE(3011), - [sym_raw_string_literal] = STATE(3011), - [sym_boolean_literal] = STATE(3011), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3006), - [sym_preproc_if_in_attribute_list] = STATE(5576), - [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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3440), + [1861] = { + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2416), + [sym__name] = STATE(5885), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2404), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(4001), + [sym_non_lvalue_expression] = STATE(3040), + [sym_lvalue_expression] = STATE(3100), + [sym__expression_statement_expression] = STATE(3035), + [sym_assignment_expression] = STATE(3043), + [sym_binary_expression] = STATE(3035), + [sym_postfix_unary_expression] = STATE(3043), + [sym_prefix_unary_expression] = STATE(3043), + [sym__pointer_indirection_expression] = STATE(2415), + [sym_query_expression] = STATE(3035), + [sym_from_clause] = STATE(6135), + [sym_conditional_expression] = STATE(3035), + [sym_conditional_access_expression] = STATE(3035), + [sym_as_expression] = STATE(3035), + [sym_is_expression] = STATE(3035), + [sym_is_pattern_expression] = STATE(3035), + [sym_cast_expression] = STATE(3035), + [sym_checked_expression] = STATE(3035), + [sym_invocation_expression] = STATE(3043), + [sym_switch_expression] = STATE(3035), + [sym_await_expression] = STATE(3043), + [sym_throw_expression] = STATE(3035), + [sym_element_access_expression] = STATE(2415), + [sym_interpolated_string_expression] = STATE(3035), + [sym_member_access_expression] = STATE(2415), + [sym_object_creation_expression] = STATE(3043), + [sym_parenthesized_expression] = STATE(3043), + [sym__parenthesized_lvalue_expression] = STATE(2415), + [sym_lambda_expression] = STATE(3035), + [sym__lambda_expression_init] = STATE(7470), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3035), + [sym_anonymous_method_expression] = STATE(3035), + [sym_anonymous_object_creation_expression] = STATE(3035), + [sym_implicit_array_creation_expression] = STATE(3035), + [sym_implicit_object_creation_expression] = STATE(3035), + [sym_implicit_stackalloc_expression] = STATE(3035), + [sym_initializer_expression] = STATE(3035), + [sym_default_expression] = STATE(3035), + [sym_with_expression] = STATE(3035), + [sym_sizeof_expression] = STATE(3035), + [sym_typeof_expression] = STATE(3035), + [sym_makeref_expression] = STATE(3035), + [sym_ref_expression] = STATE(3035), + [sym_reftype_expression] = STATE(3035), + [sym_refvalue_expression] = STATE(3035), + [sym_stackalloc_expression] = STATE(3035), + [sym_range_expression] = STATE(3035), + [sym_tuple_expression] = STATE(2415), + [sym_literal] = STATE(3035), + [sym_character_literal] = STATE(3037), + [sym_string_literal] = STATE(3037), + [sym_raw_string_literal] = STATE(3037), + [sym_boolean_literal] = STATE(3037), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3035), + [sym_preproc_if_in_attribute_list] = STATE(5583), + [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(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3455), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1241), - [anon_sym_LPAREN] = ACTIONS(2113), - [anon_sym_ref] = ACTIONS(2115), - [anon_sym_LBRACE] = ACTIONS(1247), - [anon_sym_delegate] = ACTIONS(1249), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1239), + [anon_sym_LPAREN] = ACTIONS(1931), + [anon_sym_ref] = ACTIONS(1933), + [anon_sym_LBRACE] = ACTIONS(1245), + [anon_sym_delegate] = ACTIONS(1247), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1251), + [anon_sym_new] = ACTIONS(1935), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1253), - [anon_sym_BANG] = ACTIONS(2119), - [anon_sym_TILDE] = ACTIONS(2119), - [anon_sym_PLUS_PLUS] = ACTIONS(2119), - [anon_sym_DASH_DASH] = ACTIONS(2119), - [anon_sym_true] = ACTIONS(1259), - [anon_sym_false] = ACTIONS(1259), - [anon_sym_PLUS] = ACTIONS(2117), - [anon_sym_DASH] = ACTIONS(2117), - [anon_sym_STAR] = ACTIONS(1261), - [anon_sym_CARET] = ACTIONS(2119), - [anon_sym_AMP] = ACTIONS(2119), - [anon_sym_this] = ACTIONS(1263), + [anon_sym_checked] = ACTIONS(1251), + [anon_sym_BANG] = ACTIONS(1939), + [anon_sym_TILDE] = ACTIONS(1939), + [anon_sym_PLUS_PLUS] = ACTIONS(1939), + [anon_sym_DASH_DASH] = ACTIONS(1939), + [anon_sym_true] = ACTIONS(1257), + [anon_sym_false] = ACTIONS(1257), + [anon_sym_PLUS] = ACTIONS(1937), + [anon_sym_DASH] = ACTIONS(1937), + [anon_sym_STAR] = ACTIONS(1941), + [anon_sym_CARET] = ACTIONS(1939), + [anon_sym_AMP] = ACTIONS(1939), + [anon_sym_this] = ACTIONS(1261), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1265), + [anon_sym_base] = ACTIONS(1263), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1267), - [anon_sym_unchecked] = ACTIONS(1253), + [sym_predefined_type] = ACTIONS(1265), + [anon_sym_unchecked] = ACTIONS(1251), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1269), - [anon_sym_throw] = ACTIONS(2121), + [anon_sym_default] = ACTIONS(1267), + [anon_sym_throw] = ACTIONS(1943), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2123), - [anon_sym_DOT_DOT] = ACTIONS(2125), + [anon_sym_await] = ACTIONS(1945), + [anon_sym_DOT_DOT] = ACTIONS(1947), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -351858,19 +356307,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1277), - [anon_sym_sizeof] = ACTIONS(1279), - [anon_sym_typeof] = ACTIONS(1281), - [anon_sym___makeref] = ACTIONS(1283), - [anon_sym___reftype] = ACTIONS(1285), - [anon_sym___refvalue] = ACTIONS(1287), - [sym_null_literal] = ACTIONS(1289), - [anon_sym_SQUOTE] = ACTIONS(1291), - [sym_integer_literal] = ACTIONS(1289), - [sym_real_literal] = ACTIONS(1293), - [anon_sym_DQUOTE] = ACTIONS(1295), - [sym_verbatim_string_literal] = ACTIONS(1293), - [aux_sym_preproc_if_token1] = ACTIONS(2127), + [anon_sym_stackalloc] = ACTIONS(1275), + [anon_sym_sizeof] = ACTIONS(1277), + [anon_sym_typeof] = ACTIONS(1279), + [anon_sym___makeref] = ACTIONS(1281), + [anon_sym___reftype] = ACTIONS(1283), + [anon_sym___refvalue] = ACTIONS(1285), + [sym_null_literal] = ACTIONS(1287), + [anon_sym_SQUOTE] = ACTIONS(1289), + [sym_integer_literal] = ACTIONS(1287), + [sym_real_literal] = ACTIONS(1291), + [anon_sym_DQUOTE] = ACTIONS(1293), + [sym_verbatim_string_literal] = ACTIONS(1291), + [aux_sym_preproc_if_token1] = ACTIONS(1295), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -351881,140 +356330,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(1299), - [sym_interpolation_verbatim_start] = ACTIONS(1301), - [sym_interpolation_raw_start] = ACTIONS(1303), - [sym_raw_string_start] = ACTIONS(1305), + [sym_interpolation_regular_start] = ACTIONS(1297), + [sym_interpolation_verbatim_start] = ACTIONS(1299), + [sym_interpolation_raw_start] = ACTIONS(1301), + [sym_raw_string_start] = ACTIONS(1303), }, - [1835] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2420), - [sym__name] = STATE(5875), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2369), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(2907), - [sym_non_lvalue_expression] = STATE(3066), - [sym_lvalue_expression] = STATE(3109), - [sym__expression_statement_expression] = STATE(3006), - [sym_assignment_expression] = STATE(3020), - [sym_binary_expression] = STATE(3006), - [sym_postfix_unary_expression] = STATE(3020), - [sym_prefix_unary_expression] = STATE(3020), - [sym__pointer_indirection_expression] = STATE(2423), - [sym_query_expression] = STATE(3006), - [sym_from_clause] = STATE(6179), - [sym_conditional_expression] = STATE(3006), - [sym_conditional_access_expression] = STATE(3006), - [sym_as_expression] = STATE(3006), - [sym_is_expression] = STATE(3006), - [sym_is_pattern_expression] = STATE(3006), - [sym_cast_expression] = STATE(3006), - [sym_checked_expression] = STATE(3006), - [sym_invocation_expression] = STATE(3020), - [sym_switch_expression] = STATE(3006), - [sym_await_expression] = STATE(3020), - [sym_throw_expression] = STATE(3006), - [sym_element_access_expression] = STATE(2423), - [sym_interpolated_string_expression] = STATE(3006), - [sym_member_access_expression] = STATE(2423), - [sym_object_creation_expression] = STATE(3020), - [sym_parenthesized_expression] = STATE(3020), - [sym__parenthesized_lvalue_expression] = STATE(2423), - [sym_lambda_expression] = STATE(3006), - [sym__lambda_expression_init] = STATE(7522), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3006), - [sym_anonymous_method_expression] = STATE(3006), - [sym_anonymous_object_creation_expression] = STATE(3006), - [sym_implicit_array_creation_expression] = STATE(3006), - [sym_implicit_object_creation_expression] = STATE(3006), - [sym_implicit_stackalloc_expression] = STATE(3006), - [sym_initializer_expression] = STATE(3006), - [sym_default_expression] = STATE(3006), - [sym_with_expression] = STATE(3006), - [sym_sizeof_expression] = STATE(3006), - [sym_typeof_expression] = STATE(3006), - [sym_makeref_expression] = STATE(3006), - [sym_ref_expression] = STATE(3006), - [sym_reftype_expression] = STATE(3006), - [sym_refvalue_expression] = STATE(3006), - [sym_stackalloc_expression] = STATE(3006), - [sym_range_expression] = STATE(3006), - [sym_tuple_expression] = STATE(2423), - [sym_literal] = STATE(3006), - [sym_character_literal] = STATE(3011), - [sym_string_literal] = STATE(3011), - [sym_raw_string_literal] = STATE(3011), - [sym_boolean_literal] = STATE(3011), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3006), - [sym_preproc_if_in_attribute_list] = STATE(5576), - [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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3440), + [1862] = { + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2416), + [sym__name] = STATE(5885), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2404), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(3966), + [sym_non_lvalue_expression] = STATE(3040), + [sym_lvalue_expression] = STATE(3100), + [sym__expression_statement_expression] = STATE(3035), + [sym_assignment_expression] = STATE(3043), + [sym_binary_expression] = STATE(3035), + [sym_postfix_unary_expression] = STATE(3043), + [sym_prefix_unary_expression] = STATE(3043), + [sym__pointer_indirection_expression] = STATE(2415), + [sym_query_expression] = STATE(3035), + [sym_from_clause] = STATE(6135), + [sym_conditional_expression] = STATE(3035), + [sym_conditional_access_expression] = STATE(3035), + [sym_as_expression] = STATE(3035), + [sym_is_expression] = STATE(3035), + [sym_is_pattern_expression] = STATE(3035), + [sym_cast_expression] = STATE(3035), + [sym_checked_expression] = STATE(3035), + [sym_invocation_expression] = STATE(3043), + [sym_switch_expression] = STATE(3035), + [sym_await_expression] = STATE(3043), + [sym_throw_expression] = STATE(3035), + [sym_element_access_expression] = STATE(2415), + [sym_interpolated_string_expression] = STATE(3035), + [sym_member_access_expression] = STATE(2415), + [sym_object_creation_expression] = STATE(3043), + [sym_parenthesized_expression] = STATE(3043), + [sym__parenthesized_lvalue_expression] = STATE(2415), + [sym_lambda_expression] = STATE(3035), + [sym__lambda_expression_init] = STATE(7470), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3035), + [sym_anonymous_method_expression] = STATE(3035), + [sym_anonymous_object_creation_expression] = STATE(3035), + [sym_implicit_array_creation_expression] = STATE(3035), + [sym_implicit_object_creation_expression] = STATE(3035), + [sym_implicit_stackalloc_expression] = STATE(3035), + [sym_initializer_expression] = STATE(3035), + [sym_default_expression] = STATE(3035), + [sym_with_expression] = STATE(3035), + [sym_sizeof_expression] = STATE(3035), + [sym_typeof_expression] = STATE(3035), + [sym_makeref_expression] = STATE(3035), + [sym_ref_expression] = STATE(3035), + [sym_reftype_expression] = STATE(3035), + [sym_refvalue_expression] = STATE(3035), + [sym_stackalloc_expression] = STATE(3035), + [sym_range_expression] = STATE(3035), + [sym_tuple_expression] = STATE(2415), + [sym_literal] = STATE(3035), + [sym_character_literal] = STATE(3037), + [sym_string_literal] = STATE(3037), + [sym_raw_string_literal] = STATE(3037), + [sym_boolean_literal] = STATE(3037), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3035), + [sym_preproc_if_in_attribute_list] = STATE(5583), + [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(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3455), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1241), - [anon_sym_LPAREN] = ACTIONS(1841), - [anon_sym_ref] = ACTIONS(1843), - [anon_sym_LBRACE] = ACTIONS(1247), - [anon_sym_delegate] = ACTIONS(1249), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1239), + [anon_sym_LPAREN] = ACTIONS(1931), + [anon_sym_ref] = ACTIONS(1933), + [anon_sym_LBRACE] = ACTIONS(1245), + [anon_sym_delegate] = ACTIONS(1247), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1845), + [anon_sym_new] = ACTIONS(1935), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1253), - [anon_sym_BANG] = ACTIONS(1849), - [anon_sym_TILDE] = ACTIONS(1849), - [anon_sym_PLUS_PLUS] = ACTIONS(1849), - [anon_sym_DASH_DASH] = ACTIONS(1849), - [anon_sym_true] = ACTIONS(1259), - [anon_sym_false] = ACTIONS(1259), - [anon_sym_PLUS] = ACTIONS(1847), - [anon_sym_DASH] = ACTIONS(1847), - [anon_sym_STAR] = ACTIONS(1851), - [anon_sym_CARET] = ACTIONS(1849), - [anon_sym_AMP] = ACTIONS(1849), - [anon_sym_this] = ACTIONS(1263), + [anon_sym_checked] = ACTIONS(1251), + [anon_sym_BANG] = ACTIONS(1939), + [anon_sym_TILDE] = ACTIONS(1939), + [anon_sym_PLUS_PLUS] = ACTIONS(1939), + [anon_sym_DASH_DASH] = ACTIONS(1939), + [anon_sym_true] = ACTIONS(1257), + [anon_sym_false] = ACTIONS(1257), + [anon_sym_PLUS] = ACTIONS(1937), + [anon_sym_DASH] = ACTIONS(1937), + [anon_sym_STAR] = ACTIONS(1941), + [anon_sym_CARET] = ACTIONS(1939), + [anon_sym_AMP] = ACTIONS(1939), + [anon_sym_this] = ACTIONS(1261), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1265), + [anon_sym_base] = ACTIONS(1263), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1267), - [anon_sym_unchecked] = ACTIONS(1253), + [sym_predefined_type] = ACTIONS(1265), + [anon_sym_unchecked] = ACTIONS(1251), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1269), - [anon_sym_throw] = ACTIONS(1853), + [anon_sym_default] = ACTIONS(1267), + [anon_sym_throw] = ACTIONS(1943), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1855), - [anon_sym_DOT_DOT] = ACTIONS(1857), + [anon_sym_await] = ACTIONS(1945), + [anon_sym_DOT_DOT] = ACTIONS(1947), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -352027,19 +356476,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1277), - [anon_sym_sizeof] = ACTIONS(1279), - [anon_sym_typeof] = ACTIONS(1281), - [anon_sym___makeref] = ACTIONS(1283), - [anon_sym___reftype] = ACTIONS(1285), - [anon_sym___refvalue] = ACTIONS(1287), - [sym_null_literal] = ACTIONS(1289), - [anon_sym_SQUOTE] = ACTIONS(1291), - [sym_integer_literal] = ACTIONS(1289), - [sym_real_literal] = ACTIONS(1293), - [anon_sym_DQUOTE] = ACTIONS(1295), - [sym_verbatim_string_literal] = ACTIONS(1293), - [aux_sym_preproc_if_token1] = ACTIONS(1297), + [anon_sym_stackalloc] = ACTIONS(1275), + [anon_sym_sizeof] = ACTIONS(1277), + [anon_sym_typeof] = ACTIONS(1279), + [anon_sym___makeref] = ACTIONS(1281), + [anon_sym___reftype] = ACTIONS(1283), + [anon_sym___refvalue] = ACTIONS(1285), + [sym_null_literal] = ACTIONS(1287), + [anon_sym_SQUOTE] = ACTIONS(1289), + [sym_integer_literal] = ACTIONS(1287), + [sym_real_literal] = ACTIONS(1291), + [anon_sym_DQUOTE] = ACTIONS(1293), + [sym_verbatim_string_literal] = ACTIONS(1291), + [aux_sym_preproc_if_token1] = ACTIONS(1295), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -352050,140 +356499,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(1299), - [sym_interpolation_verbatim_start] = ACTIONS(1301), - [sym_interpolation_raw_start] = ACTIONS(1303), - [sym_raw_string_start] = ACTIONS(1305), + [sym_interpolation_regular_start] = ACTIONS(1297), + [sym_interpolation_verbatim_start] = ACTIONS(1299), + [sym_interpolation_raw_start] = ACTIONS(1301), + [sym_raw_string_start] = ACTIONS(1303), }, - [1836] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2610), - [sym__name] = STATE(5898), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2197), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(3142), - [sym_non_lvalue_expression] = STATE(3277), - [sym_lvalue_expression] = STATE(3510), - [sym__expression_statement_expression] = STATE(3228), - [sym_assignment_expression] = STATE(3289), - [sym_binary_expression] = STATE(3228), - [sym_postfix_unary_expression] = STATE(3289), - [sym_prefix_unary_expression] = STATE(3289), - [sym__pointer_indirection_expression] = STATE(2609), - [sym_query_expression] = STATE(3228), - [sym_from_clause] = STATE(6180), - [sym_conditional_expression] = STATE(3228), - [sym_conditional_access_expression] = STATE(3228), - [sym_as_expression] = STATE(3228), - [sym_is_expression] = STATE(3228), - [sym_is_pattern_expression] = STATE(3228), - [sym_cast_expression] = STATE(3228), - [sym_checked_expression] = STATE(3228), - [sym_invocation_expression] = STATE(3289), - [sym_switch_expression] = STATE(3228), - [sym_await_expression] = STATE(3289), - [sym_throw_expression] = STATE(3228), - [sym_element_access_expression] = STATE(2609), - [sym_interpolated_string_expression] = STATE(3228), - [sym_member_access_expression] = STATE(2609), - [sym_object_creation_expression] = STATE(3289), - [sym_parenthesized_expression] = STATE(3289), - [sym__parenthesized_lvalue_expression] = STATE(2609), - [sym_lambda_expression] = STATE(3228), - [sym__lambda_expression_init] = STATE(7527), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3228), - [sym_anonymous_method_expression] = STATE(3228), - [sym_anonymous_object_creation_expression] = STATE(3228), - [sym_implicit_array_creation_expression] = STATE(3228), - [sym_implicit_object_creation_expression] = STATE(3228), - [sym_implicit_stackalloc_expression] = STATE(3228), - [sym_initializer_expression] = STATE(3228), - [sym_default_expression] = STATE(3228), - [sym_with_expression] = STATE(3228), - [sym_sizeof_expression] = STATE(3228), - [sym_typeof_expression] = STATE(3228), - [sym_makeref_expression] = STATE(3228), - [sym_ref_expression] = STATE(3228), - [sym_reftype_expression] = STATE(3228), - [sym_refvalue_expression] = STATE(3228), - [sym_stackalloc_expression] = STATE(3228), - [sym_range_expression] = STATE(3228), - [sym_tuple_expression] = STATE(2609), - [sym_literal] = STATE(3228), - [sym_character_literal] = STATE(3278), - [sym_string_literal] = STATE(3278), - [sym_raw_string_literal] = STATE(3278), - [sym_boolean_literal] = STATE(3278), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3228), - [sym_preproc_if_in_attribute_list] = STATE(5576), - [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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3396), + [1863] = { + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2416), + [sym__name] = STATE(5885), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2404), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(3968), + [sym_non_lvalue_expression] = STATE(3040), + [sym_lvalue_expression] = STATE(3100), + [sym__expression_statement_expression] = STATE(3035), + [sym_assignment_expression] = STATE(3043), + [sym_binary_expression] = STATE(3035), + [sym_postfix_unary_expression] = STATE(3043), + [sym_prefix_unary_expression] = STATE(3043), + [sym__pointer_indirection_expression] = STATE(2415), + [sym_query_expression] = STATE(3035), + [sym_from_clause] = STATE(6135), + [sym_conditional_expression] = STATE(3035), + [sym_conditional_access_expression] = STATE(3035), + [sym_as_expression] = STATE(3035), + [sym_is_expression] = STATE(3035), + [sym_is_pattern_expression] = STATE(3035), + [sym_cast_expression] = STATE(3035), + [sym_checked_expression] = STATE(3035), + [sym_invocation_expression] = STATE(3043), + [sym_switch_expression] = STATE(3035), + [sym_await_expression] = STATE(3043), + [sym_throw_expression] = STATE(3035), + [sym_element_access_expression] = STATE(2415), + [sym_interpolated_string_expression] = STATE(3035), + [sym_member_access_expression] = STATE(2415), + [sym_object_creation_expression] = STATE(3043), + [sym_parenthesized_expression] = STATE(3043), + [sym__parenthesized_lvalue_expression] = STATE(2415), + [sym_lambda_expression] = STATE(3035), + [sym__lambda_expression_init] = STATE(7470), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3035), + [sym_anonymous_method_expression] = STATE(3035), + [sym_anonymous_object_creation_expression] = STATE(3035), + [sym_implicit_array_creation_expression] = STATE(3035), + [sym_implicit_object_creation_expression] = STATE(3035), + [sym_implicit_stackalloc_expression] = STATE(3035), + [sym_initializer_expression] = STATE(3035), + [sym_default_expression] = STATE(3035), + [sym_with_expression] = STATE(3035), + [sym_sizeof_expression] = STATE(3035), + [sym_typeof_expression] = STATE(3035), + [sym_makeref_expression] = STATE(3035), + [sym_ref_expression] = STATE(3035), + [sym_reftype_expression] = STATE(3035), + [sym_refvalue_expression] = STATE(3035), + [sym_stackalloc_expression] = STATE(3035), + [sym_range_expression] = STATE(3035), + [sym_tuple_expression] = STATE(2415), + [sym_literal] = STATE(3035), + [sym_character_literal] = STATE(3037), + [sym_string_literal] = STATE(3037), + [sym_raw_string_literal] = STATE(3037), + [sym_boolean_literal] = STATE(3037), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3035), + [sym_preproc_if_in_attribute_list] = STATE(5583), + [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(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3455), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1153), - [anon_sym_LPAREN] = ACTIONS(1759), - [anon_sym_ref] = ACTIONS(1761), - [anon_sym_LBRACE] = ACTIONS(1159), - [anon_sym_delegate] = ACTIONS(1161), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1239), + [anon_sym_LPAREN] = ACTIONS(1931), + [anon_sym_ref] = ACTIONS(1933), + [anon_sym_LBRACE] = ACTIONS(1245), + [anon_sym_delegate] = ACTIONS(1247), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1163), + [anon_sym_new] = ACTIONS(1935), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1167), - [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(1173), - [anon_sym_false] = ACTIONS(1173), - [anon_sym_PLUS] = ACTIONS(1763), - [anon_sym_DASH] = ACTIONS(1763), - [anon_sym_STAR] = ACTIONS(1175), - [anon_sym_CARET] = ACTIONS(1765), - [anon_sym_AMP] = ACTIONS(1765), - [anon_sym_this] = ACTIONS(1177), + [anon_sym_checked] = ACTIONS(1251), + [anon_sym_BANG] = ACTIONS(1939), + [anon_sym_TILDE] = ACTIONS(1939), + [anon_sym_PLUS_PLUS] = ACTIONS(1939), + [anon_sym_DASH_DASH] = ACTIONS(1939), + [anon_sym_true] = ACTIONS(1257), + [anon_sym_false] = ACTIONS(1257), + [anon_sym_PLUS] = ACTIONS(1937), + [anon_sym_DASH] = ACTIONS(1937), + [anon_sym_STAR] = ACTIONS(1941), + [anon_sym_CARET] = ACTIONS(1939), + [anon_sym_AMP] = ACTIONS(1939), + [anon_sym_this] = ACTIONS(1261), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1179), + [anon_sym_base] = ACTIONS(1263), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1181), - [anon_sym_unchecked] = ACTIONS(1167), + [sym_predefined_type] = ACTIONS(1265), + [anon_sym_unchecked] = ACTIONS(1251), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1183), - [anon_sym_throw] = ACTIONS(1767), + [anon_sym_default] = ACTIONS(1267), + [anon_sym_throw] = ACTIONS(1943), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1769), - [anon_sym_DOT_DOT] = ACTIONS(1771), + [anon_sym_await] = ACTIONS(1945), + [anon_sym_DOT_DOT] = ACTIONS(1947), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -352196,19 +356645,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1191), - [anon_sym_sizeof] = ACTIONS(1193), - [anon_sym_typeof] = ACTIONS(1195), - [anon_sym___makeref] = ACTIONS(1197), - [anon_sym___reftype] = ACTIONS(1199), - [anon_sym___refvalue] = ACTIONS(1201), - [sym_null_literal] = ACTIONS(1203), - [anon_sym_SQUOTE] = ACTIONS(1205), - [sym_integer_literal] = ACTIONS(1203), - [sym_real_literal] = ACTIONS(1207), - [anon_sym_DQUOTE] = ACTIONS(1209), - [sym_verbatim_string_literal] = ACTIONS(1207), - [aux_sym_preproc_if_token1] = ACTIONS(1773), + [anon_sym_stackalloc] = ACTIONS(1275), + [anon_sym_sizeof] = ACTIONS(1277), + [anon_sym_typeof] = ACTIONS(1279), + [anon_sym___makeref] = ACTIONS(1281), + [anon_sym___reftype] = ACTIONS(1283), + [anon_sym___refvalue] = ACTIONS(1285), + [sym_null_literal] = ACTIONS(1287), + [anon_sym_SQUOTE] = ACTIONS(1289), + [sym_integer_literal] = ACTIONS(1287), + [sym_real_literal] = ACTIONS(1291), + [anon_sym_DQUOTE] = ACTIONS(1293), + [sym_verbatim_string_literal] = ACTIONS(1291), + [aux_sym_preproc_if_token1] = ACTIONS(1295), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -352219,140 +356668,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(1213), - [sym_interpolation_verbatim_start] = ACTIONS(1215), - [sym_interpolation_raw_start] = ACTIONS(1217), - [sym_raw_string_start] = ACTIONS(1219), + [sym_interpolation_regular_start] = ACTIONS(1297), + [sym_interpolation_verbatim_start] = ACTIONS(1299), + [sym_interpolation_raw_start] = ACTIONS(1301), + [sym_raw_string_start] = ACTIONS(1303), }, - [1837] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(5890), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2375), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(5589), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3656), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3080), - [sym_postfix_unary_expression] = STATE(3111), - [sym_prefix_unary_expression] = STATE(3111), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6157), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3080), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3111), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3080), - [sym_member_access_expression] = STATE(2484), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3111), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7362), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(3080), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3080), - [sym_typeof_expression] = STATE(3080), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2484), - [sym_literal] = STATE(3080), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), - [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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [1864] = { + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2416), + [sym__name] = STATE(5885), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2404), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(4051), + [sym_non_lvalue_expression] = STATE(3040), + [sym_lvalue_expression] = STATE(3100), + [sym__expression_statement_expression] = STATE(3035), + [sym_assignment_expression] = STATE(3043), + [sym_binary_expression] = STATE(3035), + [sym_postfix_unary_expression] = STATE(3043), + [sym_prefix_unary_expression] = STATE(3043), + [sym__pointer_indirection_expression] = STATE(2415), + [sym_query_expression] = STATE(3035), + [sym_from_clause] = STATE(6135), + [sym_conditional_expression] = STATE(3035), + [sym_conditional_access_expression] = STATE(3035), + [sym_as_expression] = STATE(3035), + [sym_is_expression] = STATE(3035), + [sym_is_pattern_expression] = STATE(3035), + [sym_cast_expression] = STATE(3035), + [sym_checked_expression] = STATE(3035), + [sym_invocation_expression] = STATE(3043), + [sym_switch_expression] = STATE(3035), + [sym_await_expression] = STATE(3043), + [sym_throw_expression] = STATE(3035), + [sym_element_access_expression] = STATE(2415), + [sym_interpolated_string_expression] = STATE(3035), + [sym_member_access_expression] = STATE(2415), + [sym_object_creation_expression] = STATE(3043), + [sym_parenthesized_expression] = STATE(3043), + [sym__parenthesized_lvalue_expression] = STATE(2415), + [sym_lambda_expression] = STATE(3035), + [sym__lambda_expression_init] = STATE(7470), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3035), + [sym_anonymous_method_expression] = STATE(3035), + [sym_anonymous_object_creation_expression] = STATE(3035), + [sym_implicit_array_creation_expression] = STATE(3035), + [sym_implicit_object_creation_expression] = STATE(3035), + [sym_implicit_stackalloc_expression] = STATE(3035), + [sym_initializer_expression] = STATE(3035), + [sym_default_expression] = STATE(3035), + [sym_with_expression] = STATE(3035), + [sym_sizeof_expression] = STATE(3035), + [sym_typeof_expression] = STATE(3035), + [sym_makeref_expression] = STATE(3035), + [sym_ref_expression] = STATE(3035), + [sym_reftype_expression] = STATE(3035), + [sym_refvalue_expression] = STATE(3035), + [sym_stackalloc_expression] = STATE(3035), + [sym_range_expression] = STATE(3035), + [sym_tuple_expression] = STATE(2415), + [sym_literal] = STATE(3035), + [sym_character_literal] = STATE(3037), + [sym_string_literal] = STATE(3037), + [sym_raw_string_literal] = STATE(3037), + [sym_boolean_literal] = STATE(3037), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3035), + [sym_preproc_if_in_attribute_list] = STATE(5583), + [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(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3455), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1481), - [anon_sym_LPAREN] = ACTIONS(2177), - [anon_sym_ref] = ACTIONS(2179), - [anon_sym_LBRACE] = ACTIONS(1487), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1239), + [anon_sym_LPAREN] = ACTIONS(1931), + [anon_sym_ref] = ACTIONS(1933), + [anon_sym_LBRACE] = ACTIONS(1245), + [anon_sym_delegate] = ACTIONS(1247), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(2181), + [anon_sym_new] = ACTIONS(1935), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1067), - [anon_sym_BANG] = ACTIONS(2185), - [anon_sym_TILDE] = ACTIONS(2185), - [anon_sym_PLUS_PLUS] = ACTIONS(2185), - [anon_sym_DASH_DASH] = ACTIONS(2185), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(2183), - [anon_sym_DASH] = ACTIONS(2183), - [anon_sym_STAR] = ACTIONS(2187), - [anon_sym_CARET] = ACTIONS(2185), - [anon_sym_AMP] = ACTIONS(2185), - [anon_sym_this] = ACTIONS(83), + [anon_sym_checked] = ACTIONS(1251), + [anon_sym_BANG] = ACTIONS(1939), + [anon_sym_TILDE] = ACTIONS(1939), + [anon_sym_PLUS_PLUS] = ACTIONS(1939), + [anon_sym_DASH_DASH] = ACTIONS(1939), + [anon_sym_true] = ACTIONS(1257), + [anon_sym_false] = ACTIONS(1257), + [anon_sym_PLUS] = ACTIONS(1937), + [anon_sym_DASH] = ACTIONS(1937), + [anon_sym_STAR] = ACTIONS(1941), + [anon_sym_CARET] = ACTIONS(1939), + [anon_sym_AMP] = ACTIONS(1939), + [anon_sym_this] = ACTIONS(1261), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), + [anon_sym_base] = ACTIONS(1263), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1067), + [sym_predefined_type] = ACTIONS(1265), + [anon_sym_unchecked] = ACTIONS(1251), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(2189), + [anon_sym_default] = ACTIONS(1267), + [anon_sym_throw] = ACTIONS(1943), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2191), - [anon_sym_DOT_DOT] = ACTIONS(2193), + [anon_sym_await] = ACTIONS(1945), + [anon_sym_DOT_DOT] = ACTIONS(1947), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -352365,19 +356814,19 @@ static const uint16_t ts_parse_table[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(1089), + [anon_sym_stackalloc] = ACTIONS(1275), + [anon_sym_sizeof] = ACTIONS(1277), + [anon_sym_typeof] = ACTIONS(1279), + [anon_sym___makeref] = ACTIONS(1281), + [anon_sym___reftype] = ACTIONS(1283), + [anon_sym___refvalue] = ACTIONS(1285), + [sym_null_literal] = ACTIONS(1287), + [anon_sym_SQUOTE] = ACTIONS(1289), + [sym_integer_literal] = ACTIONS(1287), + [sym_real_literal] = ACTIONS(1291), + [anon_sym_DQUOTE] = ACTIONS(1293), + [sym_verbatim_string_literal] = ACTIONS(1291), + [aux_sym_preproc_if_token1] = ACTIONS(1295), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -352388,140 +356837,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(1297), + [sym_interpolation_verbatim_start] = ACTIONS(1299), + [sym_interpolation_raw_start] = ACTIONS(1301), + [sym_raw_string_start] = ACTIONS(1303), }, - [1838] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(5876), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2376), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(5632), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3681), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3080), - [sym_postfix_unary_expression] = STATE(3111), - [sym_prefix_unary_expression] = STATE(3111), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6170), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3080), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3111), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3080), - [sym_member_access_expression] = STATE(2484), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3111), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7511), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(3080), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3080), - [sym_typeof_expression] = STATE(3080), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2484), - [sym_literal] = STATE(3080), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), - [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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [1865] = { + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2416), + [sym__name] = STATE(5885), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2404), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(4002), + [sym_non_lvalue_expression] = STATE(3040), + [sym_lvalue_expression] = STATE(3100), + [sym__expression_statement_expression] = STATE(3035), + [sym_assignment_expression] = STATE(3043), + [sym_binary_expression] = STATE(3035), + [sym_postfix_unary_expression] = STATE(3043), + [sym_prefix_unary_expression] = STATE(3043), + [sym__pointer_indirection_expression] = STATE(2415), + [sym_query_expression] = STATE(3035), + [sym_from_clause] = STATE(6135), + [sym_conditional_expression] = STATE(3035), + [sym_conditional_access_expression] = STATE(3035), + [sym_as_expression] = STATE(3035), + [sym_is_expression] = STATE(3035), + [sym_is_pattern_expression] = STATE(3035), + [sym_cast_expression] = STATE(3035), + [sym_checked_expression] = STATE(3035), + [sym_invocation_expression] = STATE(3043), + [sym_switch_expression] = STATE(3035), + [sym_await_expression] = STATE(3043), + [sym_throw_expression] = STATE(3035), + [sym_element_access_expression] = STATE(2415), + [sym_interpolated_string_expression] = STATE(3035), + [sym_member_access_expression] = STATE(2415), + [sym_object_creation_expression] = STATE(3043), + [sym_parenthesized_expression] = STATE(3043), + [sym__parenthesized_lvalue_expression] = STATE(2415), + [sym_lambda_expression] = STATE(3035), + [sym__lambda_expression_init] = STATE(7470), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3035), + [sym_anonymous_method_expression] = STATE(3035), + [sym_anonymous_object_creation_expression] = STATE(3035), + [sym_implicit_array_creation_expression] = STATE(3035), + [sym_implicit_object_creation_expression] = STATE(3035), + [sym_implicit_stackalloc_expression] = STATE(3035), + [sym_initializer_expression] = STATE(3035), + [sym_default_expression] = STATE(3035), + [sym_with_expression] = STATE(3035), + [sym_sizeof_expression] = STATE(3035), + [sym_typeof_expression] = STATE(3035), + [sym_makeref_expression] = STATE(3035), + [sym_ref_expression] = STATE(3035), + [sym_reftype_expression] = STATE(3035), + [sym_refvalue_expression] = STATE(3035), + [sym_stackalloc_expression] = STATE(3035), + [sym_range_expression] = STATE(3035), + [sym_tuple_expression] = STATE(2415), + [sym_literal] = STATE(3035), + [sym_character_literal] = STATE(3037), + [sym_string_literal] = STATE(3037), + [sym_raw_string_literal] = STATE(3037), + [sym_boolean_literal] = STATE(3037), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3035), + [sym_preproc_if_in_attribute_list] = STATE(5583), + [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(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3455), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1481), - [anon_sym_LPAREN] = ACTIONS(2231), - [anon_sym_ref] = ACTIONS(2233), - [anon_sym_LBRACE] = ACTIONS(1487), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1239), + [anon_sym_LPAREN] = ACTIONS(1931), + [anon_sym_ref] = ACTIONS(1933), + [anon_sym_LBRACE] = ACTIONS(1245), + [anon_sym_delegate] = ACTIONS(1247), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(2235), + [anon_sym_new] = ACTIONS(1935), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1067), - [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_checked] = ACTIONS(1251), + [anon_sym_BANG] = ACTIONS(1939), + [anon_sym_TILDE] = ACTIONS(1939), + [anon_sym_PLUS_PLUS] = ACTIONS(1939), + [anon_sym_DASH_DASH] = ACTIONS(1939), + [anon_sym_true] = ACTIONS(1257), + [anon_sym_false] = ACTIONS(1257), + [anon_sym_PLUS] = ACTIONS(1937), + [anon_sym_DASH] = ACTIONS(1937), + [anon_sym_STAR] = ACTIONS(1941), + [anon_sym_CARET] = ACTIONS(1939), + [anon_sym_AMP] = ACTIONS(1939), + [anon_sym_this] = ACTIONS(1261), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), + [anon_sym_base] = ACTIONS(1263), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1067), + [sym_predefined_type] = ACTIONS(1265), + [anon_sym_unchecked] = ACTIONS(1251), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(2243), + [anon_sym_default] = ACTIONS(1267), + [anon_sym_throw] = ACTIONS(1943), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2245), - [anon_sym_DOT_DOT] = ACTIONS(2247), + [anon_sym_await] = ACTIONS(1945), + [anon_sym_DOT_DOT] = ACTIONS(1947), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -352534,19 +356983,19 @@ static const uint16_t ts_parse_table[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(1089), + [anon_sym_stackalloc] = ACTIONS(1275), + [anon_sym_sizeof] = ACTIONS(1277), + [anon_sym_typeof] = ACTIONS(1279), + [anon_sym___makeref] = ACTIONS(1281), + [anon_sym___reftype] = ACTIONS(1283), + [anon_sym___refvalue] = ACTIONS(1285), + [sym_null_literal] = ACTIONS(1287), + [anon_sym_SQUOTE] = ACTIONS(1289), + [sym_integer_literal] = ACTIONS(1287), + [sym_real_literal] = ACTIONS(1291), + [anon_sym_DQUOTE] = ACTIONS(1293), + [sym_verbatim_string_literal] = ACTIONS(1291), + [aux_sym_preproc_if_token1] = ACTIONS(1295), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -352557,140 +357006,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(1297), + [sym_interpolation_verbatim_start] = ACTIONS(1299), + [sym_interpolation_raw_start] = ACTIONS(1301), + [sym_raw_string_start] = ACTIONS(1303), }, - [1839] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(5910), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2247), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(5027), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3379), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3080), - [sym_postfix_unary_expression] = STATE(3111), - [sym_prefix_unary_expression] = STATE(3111), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6154), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3080), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3111), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3080), - [sym_member_access_expression] = STATE(2484), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3111), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7575), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(3080), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3080), - [sym_typeof_expression] = STATE(3080), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2484), - [sym_literal] = STATE(3080), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), - [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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [1866] = { + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2416), + [sym__name] = STATE(5885), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2404), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(3970), + [sym_non_lvalue_expression] = STATE(3040), + [sym_lvalue_expression] = STATE(3100), + [sym__expression_statement_expression] = STATE(3035), + [sym_assignment_expression] = STATE(3043), + [sym_binary_expression] = STATE(3035), + [sym_postfix_unary_expression] = STATE(3043), + [sym_prefix_unary_expression] = STATE(3043), + [sym__pointer_indirection_expression] = STATE(2415), + [sym_query_expression] = STATE(3035), + [sym_from_clause] = STATE(6135), + [sym_conditional_expression] = STATE(3035), + [sym_conditional_access_expression] = STATE(3035), + [sym_as_expression] = STATE(3035), + [sym_is_expression] = STATE(3035), + [sym_is_pattern_expression] = STATE(3035), + [sym_cast_expression] = STATE(3035), + [sym_checked_expression] = STATE(3035), + [sym_invocation_expression] = STATE(3043), + [sym_switch_expression] = STATE(3035), + [sym_await_expression] = STATE(3043), + [sym_throw_expression] = STATE(3035), + [sym_element_access_expression] = STATE(2415), + [sym_interpolated_string_expression] = STATE(3035), + [sym_member_access_expression] = STATE(2415), + [sym_object_creation_expression] = STATE(3043), + [sym_parenthesized_expression] = STATE(3043), + [sym__parenthesized_lvalue_expression] = STATE(2415), + [sym_lambda_expression] = STATE(3035), + [sym__lambda_expression_init] = STATE(7470), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3035), + [sym_anonymous_method_expression] = STATE(3035), + [sym_anonymous_object_creation_expression] = STATE(3035), + [sym_implicit_array_creation_expression] = STATE(3035), + [sym_implicit_object_creation_expression] = STATE(3035), + [sym_implicit_stackalloc_expression] = STATE(3035), + [sym_initializer_expression] = STATE(3035), + [sym_default_expression] = STATE(3035), + [sym_with_expression] = STATE(3035), + [sym_sizeof_expression] = STATE(3035), + [sym_typeof_expression] = STATE(3035), + [sym_makeref_expression] = STATE(3035), + [sym_ref_expression] = STATE(3035), + [sym_reftype_expression] = STATE(3035), + [sym_refvalue_expression] = STATE(3035), + [sym_stackalloc_expression] = STATE(3035), + [sym_range_expression] = STATE(3035), + [sym_tuple_expression] = STATE(2415), + [sym_literal] = STATE(3035), + [sym_character_literal] = STATE(3037), + [sym_string_literal] = STATE(3037), + [sym_raw_string_literal] = STATE(3037), + [sym_boolean_literal] = STATE(3037), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3035), + [sym_preproc_if_in_attribute_list] = STATE(5583), + [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(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3455), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1481), - [anon_sym_LPAREN] = ACTIONS(895), - [anon_sym_ref] = ACTIONS(897), - [anon_sym_LBRACE] = ACTIONS(1487), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1239), + [anon_sym_LPAREN] = ACTIONS(1931), + [anon_sym_ref] = ACTIONS(1933), + [anon_sym_LBRACE] = ACTIONS(1245), + [anon_sym_delegate] = ACTIONS(1247), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1061), + [anon_sym_new] = ACTIONS(1935), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1067), - [anon_sym_BANG] = ACTIONS(1495), - [anon_sym_TILDE] = ACTIONS(1495), - [anon_sym_PLUS_PLUS] = ACTIONS(1495), - [anon_sym_DASH_DASH] = ACTIONS(1495), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1493), - [anon_sym_DASH] = ACTIONS(1493), - [anon_sym_STAR] = ACTIONS(905), - [anon_sym_CARET] = ACTIONS(1495), - [anon_sym_AMP] = ACTIONS(1495), - [anon_sym_this] = ACTIONS(83), + [anon_sym_checked] = ACTIONS(1251), + [anon_sym_BANG] = ACTIONS(1939), + [anon_sym_TILDE] = ACTIONS(1939), + [anon_sym_PLUS_PLUS] = ACTIONS(1939), + [anon_sym_DASH_DASH] = ACTIONS(1939), + [anon_sym_true] = ACTIONS(1257), + [anon_sym_false] = ACTIONS(1257), + [anon_sym_PLUS] = ACTIONS(1937), + [anon_sym_DASH] = ACTIONS(1937), + [anon_sym_STAR] = ACTIONS(1941), + [anon_sym_CARET] = ACTIONS(1939), + [anon_sym_AMP] = ACTIONS(1939), + [anon_sym_this] = ACTIONS(1261), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), + [anon_sym_base] = ACTIONS(1263), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1067), + [sym_predefined_type] = ACTIONS(1265), + [anon_sym_unchecked] = ACTIONS(1251), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1079), + [anon_sym_default] = ACTIONS(1267), + [anon_sym_throw] = ACTIONS(1943), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1081), - [anon_sym_DOT_DOT] = ACTIONS(911), + [anon_sym_await] = ACTIONS(1945), + [anon_sym_DOT_DOT] = ACTIONS(1947), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -352703,19 +357152,19 @@ static const uint16_t ts_parse_table[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(1089), + [anon_sym_stackalloc] = ACTIONS(1275), + [anon_sym_sizeof] = ACTIONS(1277), + [anon_sym_typeof] = ACTIONS(1279), + [anon_sym___makeref] = ACTIONS(1281), + [anon_sym___reftype] = ACTIONS(1283), + [anon_sym___refvalue] = ACTIONS(1285), + [sym_null_literal] = ACTIONS(1287), + [anon_sym_SQUOTE] = ACTIONS(1289), + [sym_integer_literal] = ACTIONS(1287), + [sym_real_literal] = ACTIONS(1291), + [anon_sym_DQUOTE] = ACTIONS(1293), + [sym_verbatim_string_literal] = ACTIONS(1291), + [aux_sym_preproc_if_token1] = ACTIONS(1295), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -352726,140 +357175,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(1297), + [sym_interpolation_verbatim_start] = ACTIONS(1299), + [sym_interpolation_raw_start] = ACTIONS(1301), + [sym_raw_string_start] = ACTIONS(1303), }, - [1840] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2762), - [sym__name] = STATE(5892), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2316), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(4681), - [sym_non_lvalue_expression] = STATE(3438), - [sym_lvalue_expression] = STATE(3500), - [sym__expression_statement_expression] = STATE(3362), - [sym_assignment_expression] = STATE(3449), - [sym_binary_expression] = STATE(3362), - [sym_postfix_unary_expression] = STATE(3449), - [sym_prefix_unary_expression] = STATE(3449), - [sym__pointer_indirection_expression] = STATE(2747), - [sym_query_expression] = STATE(3362), - [sym_from_clause] = STATE(6147), - [sym_conditional_expression] = STATE(3362), - [sym_conditional_access_expression] = STATE(3362), - [sym_as_expression] = STATE(3362), - [sym_is_expression] = STATE(3362), - [sym_is_pattern_expression] = STATE(3362), - [sym_cast_expression] = STATE(3362), - [sym_checked_expression] = STATE(3362), - [sym_invocation_expression] = STATE(3449), - [sym_switch_expression] = STATE(3362), - [sym_await_expression] = STATE(3449), - [sym_throw_expression] = STATE(3362), - [sym_element_access_expression] = STATE(2747), - [sym_interpolated_string_expression] = STATE(3362), - [sym_member_access_expression] = STATE(2747), - [sym_object_creation_expression] = STATE(3449), - [sym_parenthesized_expression] = STATE(3449), - [sym__parenthesized_lvalue_expression] = STATE(2747), - [sym_lambda_expression] = STATE(3362), - [sym__lambda_expression_init] = STATE(7516), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3362), - [sym_anonymous_method_expression] = STATE(3362), - [sym_anonymous_object_creation_expression] = STATE(3362), - [sym_implicit_array_creation_expression] = STATE(3362), - [sym_implicit_object_creation_expression] = STATE(3362), - [sym_implicit_stackalloc_expression] = STATE(3362), - [sym_initializer_expression] = STATE(3362), - [sym_default_expression] = STATE(3362), - [sym_with_expression] = STATE(3362), - [sym_sizeof_expression] = STATE(3362), - [sym_typeof_expression] = STATE(3362), - [sym_makeref_expression] = STATE(3362), - [sym_ref_expression] = STATE(3362), - [sym_reftype_expression] = STATE(3362), - [sym_refvalue_expression] = STATE(3362), - [sym_stackalloc_expression] = STATE(3362), - [sym_range_expression] = STATE(3362), - [sym_tuple_expression] = STATE(2747), - [sym_literal] = STATE(3362), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2267), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3362), - [sym_preproc_if_in_attribute_list] = STATE(5576), - [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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3385), + [1867] = { + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2416), + [sym__name] = STATE(5885), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2404), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(3971), + [sym_non_lvalue_expression] = STATE(3040), + [sym_lvalue_expression] = STATE(3100), + [sym__expression_statement_expression] = STATE(3035), + [sym_assignment_expression] = STATE(3043), + [sym_binary_expression] = STATE(3035), + [sym_postfix_unary_expression] = STATE(3043), + [sym_prefix_unary_expression] = STATE(3043), + [sym__pointer_indirection_expression] = STATE(2415), + [sym_query_expression] = STATE(3035), + [sym_from_clause] = STATE(6135), + [sym_conditional_expression] = STATE(3035), + [sym_conditional_access_expression] = STATE(3035), + [sym_as_expression] = STATE(3035), + [sym_is_expression] = STATE(3035), + [sym_is_pattern_expression] = STATE(3035), + [sym_cast_expression] = STATE(3035), + [sym_checked_expression] = STATE(3035), + [sym_invocation_expression] = STATE(3043), + [sym_switch_expression] = STATE(3035), + [sym_await_expression] = STATE(3043), + [sym_throw_expression] = STATE(3035), + [sym_element_access_expression] = STATE(2415), + [sym_interpolated_string_expression] = STATE(3035), + [sym_member_access_expression] = STATE(2415), + [sym_object_creation_expression] = STATE(3043), + [sym_parenthesized_expression] = STATE(3043), + [sym__parenthesized_lvalue_expression] = STATE(2415), + [sym_lambda_expression] = STATE(3035), + [sym__lambda_expression_init] = STATE(7470), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3035), + [sym_anonymous_method_expression] = STATE(3035), + [sym_anonymous_object_creation_expression] = STATE(3035), + [sym_implicit_array_creation_expression] = STATE(3035), + [sym_implicit_object_creation_expression] = STATE(3035), + [sym_implicit_stackalloc_expression] = STATE(3035), + [sym_initializer_expression] = STATE(3035), + [sym_default_expression] = STATE(3035), + [sym_with_expression] = STATE(3035), + [sym_sizeof_expression] = STATE(3035), + [sym_typeof_expression] = STATE(3035), + [sym_makeref_expression] = STATE(3035), + [sym_ref_expression] = STATE(3035), + [sym_reftype_expression] = STATE(3035), + [sym_refvalue_expression] = STATE(3035), + [sym_stackalloc_expression] = STATE(3035), + [sym_range_expression] = STATE(3035), + [sym_tuple_expression] = STATE(2415), + [sym_literal] = STATE(3035), + [sym_character_literal] = STATE(3037), + [sym_string_literal] = STATE(3037), + [sym_raw_string_literal] = STATE(3037), + [sym_boolean_literal] = STATE(3037), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3035), + [sym_preproc_if_in_attribute_list] = STATE(5583), + [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(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3455), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1307), - [anon_sym_LPAREN] = ACTIONS(1609), - [anon_sym_ref] = ACTIONS(1611), - [anon_sym_LBRACE] = ACTIONS(1313), - [anon_sym_delegate] = ACTIONS(1315), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1239), + [anon_sym_LPAREN] = ACTIONS(1931), + [anon_sym_ref] = ACTIONS(1933), + [anon_sym_LBRACE] = ACTIONS(1245), + [anon_sym_delegate] = ACTIONS(1247), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1613), + [anon_sym_new] = ACTIONS(1935), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1319), - [anon_sym_BANG] = ACTIONS(1617), - [anon_sym_TILDE] = ACTIONS(1617), - [anon_sym_PLUS_PLUS] = ACTIONS(1617), - [anon_sym_DASH_DASH] = ACTIONS(1617), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1615), - [anon_sym_DASH] = ACTIONS(1615), - [anon_sym_STAR] = ACTIONS(1619), - [anon_sym_CARET] = ACTIONS(1617), - [anon_sym_AMP] = ACTIONS(1617), - [anon_sym_this] = ACTIONS(1323), + [anon_sym_checked] = ACTIONS(1251), + [anon_sym_BANG] = ACTIONS(1939), + [anon_sym_TILDE] = ACTIONS(1939), + [anon_sym_PLUS_PLUS] = ACTIONS(1939), + [anon_sym_DASH_DASH] = ACTIONS(1939), + [anon_sym_true] = ACTIONS(1257), + [anon_sym_false] = ACTIONS(1257), + [anon_sym_PLUS] = ACTIONS(1937), + [anon_sym_DASH] = ACTIONS(1937), + [anon_sym_STAR] = ACTIONS(1941), + [anon_sym_CARET] = ACTIONS(1939), + [anon_sym_AMP] = ACTIONS(1939), + [anon_sym_this] = ACTIONS(1261), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1325), + [anon_sym_base] = ACTIONS(1263), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1319), + [sym_predefined_type] = ACTIONS(1265), + [anon_sym_unchecked] = ACTIONS(1251), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1621), + [anon_sym_default] = ACTIONS(1267), + [anon_sym_throw] = ACTIONS(1943), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1623), - [anon_sym_DOT_DOT] = ACTIONS(1625), + [anon_sym_await] = ACTIONS(1945), + [anon_sym_DOT_DOT] = ACTIONS(1947), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -352872,19 +357321,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1333), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(1335), - [anon_sym___reftype] = ACTIONS(1337), - [anon_sym___refvalue] = ACTIONS(1339), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1341), + [anon_sym_stackalloc] = ACTIONS(1275), + [anon_sym_sizeof] = ACTIONS(1277), + [anon_sym_typeof] = ACTIONS(1279), + [anon_sym___makeref] = ACTIONS(1281), + [anon_sym___reftype] = ACTIONS(1283), + [anon_sym___refvalue] = ACTIONS(1285), + [sym_null_literal] = ACTIONS(1287), + [anon_sym_SQUOTE] = ACTIONS(1289), + [sym_integer_literal] = ACTIONS(1287), + [sym_real_literal] = ACTIONS(1291), + [anon_sym_DQUOTE] = ACTIONS(1293), + [sym_verbatim_string_literal] = ACTIONS(1291), + [aux_sym_preproc_if_token1] = ACTIONS(1295), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -352895,140 +357344,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(1297), + [sym_interpolation_verbatim_start] = ACTIONS(1299), + [sym_interpolation_raw_start] = ACTIONS(1301), + [sym_raw_string_start] = ACTIONS(1303), }, - [1841] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(5910), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2247), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(5194), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3379), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3080), - [sym_postfix_unary_expression] = STATE(3111), - [sym_prefix_unary_expression] = STATE(3111), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6154), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3080), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3111), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3080), - [sym_member_access_expression] = STATE(2484), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3111), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7575), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(3080), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3080), - [sym_typeof_expression] = STATE(3080), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2484), - [sym_literal] = STATE(3080), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), - [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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [1868] = { + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2416), + [sym__name] = STATE(5885), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2404), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(3977), + [sym_non_lvalue_expression] = STATE(3040), + [sym_lvalue_expression] = STATE(3100), + [sym__expression_statement_expression] = STATE(3035), + [sym_assignment_expression] = STATE(3043), + [sym_binary_expression] = STATE(3035), + [sym_postfix_unary_expression] = STATE(3043), + [sym_prefix_unary_expression] = STATE(3043), + [sym__pointer_indirection_expression] = STATE(2415), + [sym_query_expression] = STATE(3035), + [sym_from_clause] = STATE(6135), + [sym_conditional_expression] = STATE(3035), + [sym_conditional_access_expression] = STATE(3035), + [sym_as_expression] = STATE(3035), + [sym_is_expression] = STATE(3035), + [sym_is_pattern_expression] = STATE(3035), + [sym_cast_expression] = STATE(3035), + [sym_checked_expression] = STATE(3035), + [sym_invocation_expression] = STATE(3043), + [sym_switch_expression] = STATE(3035), + [sym_await_expression] = STATE(3043), + [sym_throw_expression] = STATE(3035), + [sym_element_access_expression] = STATE(2415), + [sym_interpolated_string_expression] = STATE(3035), + [sym_member_access_expression] = STATE(2415), + [sym_object_creation_expression] = STATE(3043), + [sym_parenthesized_expression] = STATE(3043), + [sym__parenthesized_lvalue_expression] = STATE(2415), + [sym_lambda_expression] = STATE(3035), + [sym__lambda_expression_init] = STATE(7470), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3035), + [sym_anonymous_method_expression] = STATE(3035), + [sym_anonymous_object_creation_expression] = STATE(3035), + [sym_implicit_array_creation_expression] = STATE(3035), + [sym_implicit_object_creation_expression] = STATE(3035), + [sym_implicit_stackalloc_expression] = STATE(3035), + [sym_initializer_expression] = STATE(3035), + [sym_default_expression] = STATE(3035), + [sym_with_expression] = STATE(3035), + [sym_sizeof_expression] = STATE(3035), + [sym_typeof_expression] = STATE(3035), + [sym_makeref_expression] = STATE(3035), + [sym_ref_expression] = STATE(3035), + [sym_reftype_expression] = STATE(3035), + [sym_refvalue_expression] = STATE(3035), + [sym_stackalloc_expression] = STATE(3035), + [sym_range_expression] = STATE(3035), + [sym_tuple_expression] = STATE(2415), + [sym_literal] = STATE(3035), + [sym_character_literal] = STATE(3037), + [sym_string_literal] = STATE(3037), + [sym_raw_string_literal] = STATE(3037), + [sym_boolean_literal] = STATE(3037), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3035), + [sym_preproc_if_in_attribute_list] = STATE(5583), + [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(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3455), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1481), - [anon_sym_LPAREN] = ACTIONS(895), - [anon_sym_ref] = ACTIONS(897), - [anon_sym_LBRACE] = ACTIONS(1487), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1239), + [anon_sym_LPAREN] = ACTIONS(1931), + [anon_sym_ref] = ACTIONS(1933), + [anon_sym_LBRACE] = ACTIONS(1245), + [anon_sym_delegate] = ACTIONS(1247), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1061), + [anon_sym_new] = ACTIONS(1935), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1067), - [anon_sym_BANG] = ACTIONS(1495), - [anon_sym_TILDE] = ACTIONS(1495), - [anon_sym_PLUS_PLUS] = ACTIONS(1495), - [anon_sym_DASH_DASH] = ACTIONS(1495), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1493), - [anon_sym_DASH] = ACTIONS(1493), - [anon_sym_STAR] = ACTIONS(905), - [anon_sym_CARET] = ACTIONS(1495), - [anon_sym_AMP] = ACTIONS(1495), - [anon_sym_this] = ACTIONS(83), + [anon_sym_checked] = ACTIONS(1251), + [anon_sym_BANG] = ACTIONS(1939), + [anon_sym_TILDE] = ACTIONS(1939), + [anon_sym_PLUS_PLUS] = ACTIONS(1939), + [anon_sym_DASH_DASH] = ACTIONS(1939), + [anon_sym_true] = ACTIONS(1257), + [anon_sym_false] = ACTIONS(1257), + [anon_sym_PLUS] = ACTIONS(1937), + [anon_sym_DASH] = ACTIONS(1937), + [anon_sym_STAR] = ACTIONS(1941), + [anon_sym_CARET] = ACTIONS(1939), + [anon_sym_AMP] = ACTIONS(1939), + [anon_sym_this] = ACTIONS(1261), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), + [anon_sym_base] = ACTIONS(1263), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1067), + [sym_predefined_type] = ACTIONS(1265), + [anon_sym_unchecked] = ACTIONS(1251), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1079), + [anon_sym_default] = ACTIONS(1267), + [anon_sym_throw] = ACTIONS(1943), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1081), - [anon_sym_DOT_DOT] = ACTIONS(911), + [anon_sym_await] = ACTIONS(1945), + [anon_sym_DOT_DOT] = ACTIONS(1947), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -353041,19 +357490,19 @@ static const uint16_t ts_parse_table[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(1089), + [anon_sym_stackalloc] = ACTIONS(1275), + [anon_sym_sizeof] = ACTIONS(1277), + [anon_sym_typeof] = ACTIONS(1279), + [anon_sym___makeref] = ACTIONS(1281), + [anon_sym___reftype] = ACTIONS(1283), + [anon_sym___refvalue] = ACTIONS(1285), + [sym_null_literal] = ACTIONS(1287), + [anon_sym_SQUOTE] = ACTIONS(1289), + [sym_integer_literal] = ACTIONS(1287), + [sym_real_literal] = ACTIONS(1291), + [anon_sym_DQUOTE] = ACTIONS(1293), + [sym_verbatim_string_literal] = ACTIONS(1291), + [aux_sym_preproc_if_token1] = ACTIONS(1295), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -353064,140 +357513,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(1297), + [sym_interpolation_verbatim_start] = ACTIONS(1299), + [sym_interpolation_raw_start] = ACTIONS(1301), + [sym_raw_string_start] = ACTIONS(1303), }, - [1842] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2762), - [sym__name] = STATE(5910), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2247), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(4226), - [sym_non_lvalue_expression] = STATE(3438), - [sym_lvalue_expression] = STATE(3136), - [sym__expression_statement_expression] = STATE(3362), - [sym_assignment_expression] = STATE(3449), - [sym_binary_expression] = STATE(3362), - [sym_postfix_unary_expression] = STATE(3449), - [sym_prefix_unary_expression] = STATE(3449), - [sym__pointer_indirection_expression] = STATE(2747), - [sym_query_expression] = STATE(3362), - [sym_from_clause] = STATE(6171), - [sym_conditional_expression] = STATE(3362), - [sym_conditional_access_expression] = STATE(3362), - [sym_as_expression] = STATE(3362), - [sym_is_expression] = STATE(3362), - [sym_is_pattern_expression] = STATE(3362), - [sym_cast_expression] = STATE(3362), - [sym_checked_expression] = STATE(3362), - [sym_invocation_expression] = STATE(3449), - [sym_switch_expression] = STATE(3362), - [sym_await_expression] = STATE(3449), - [sym_throw_expression] = STATE(3362), - [sym_element_access_expression] = STATE(2747), - [sym_interpolated_string_expression] = STATE(3362), - [sym_member_access_expression] = STATE(2747), - [sym_object_creation_expression] = STATE(3449), - [sym_parenthesized_expression] = STATE(3449), - [sym__parenthesized_lvalue_expression] = STATE(2747), - [sym_lambda_expression] = STATE(3362), - [sym__lambda_expression_init] = STATE(7452), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3362), - [sym_anonymous_method_expression] = STATE(3362), - [sym_anonymous_object_creation_expression] = STATE(3362), - [sym_implicit_array_creation_expression] = STATE(3362), - [sym_implicit_object_creation_expression] = STATE(3362), - [sym_implicit_stackalloc_expression] = STATE(3362), - [sym_initializer_expression] = STATE(3362), - [sym_default_expression] = STATE(3362), - [sym_with_expression] = STATE(3362), - [sym_sizeof_expression] = STATE(3362), - [sym_typeof_expression] = STATE(3362), - [sym_makeref_expression] = STATE(3362), - [sym_ref_expression] = STATE(3362), - [sym_reftype_expression] = STATE(3362), - [sym_refvalue_expression] = STATE(3362), - [sym_stackalloc_expression] = STATE(3362), - [sym_range_expression] = STATE(3362), - [sym_tuple_expression] = STATE(2747), - [sym_literal] = STATE(3362), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3362), - [sym_preproc_if_in_attribute_list] = STATE(5576), - [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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3385), + [1869] = { + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2416), + [sym__name] = STATE(5885), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2404), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(3978), + [sym_non_lvalue_expression] = STATE(3040), + [sym_lvalue_expression] = STATE(3100), + [sym__expression_statement_expression] = STATE(3035), + [sym_assignment_expression] = STATE(3043), + [sym_binary_expression] = STATE(3035), + [sym_postfix_unary_expression] = STATE(3043), + [sym_prefix_unary_expression] = STATE(3043), + [sym__pointer_indirection_expression] = STATE(2415), + [sym_query_expression] = STATE(3035), + [sym_from_clause] = STATE(6135), + [sym_conditional_expression] = STATE(3035), + [sym_conditional_access_expression] = STATE(3035), + [sym_as_expression] = STATE(3035), + [sym_is_expression] = STATE(3035), + [sym_is_pattern_expression] = STATE(3035), + [sym_cast_expression] = STATE(3035), + [sym_checked_expression] = STATE(3035), + [sym_invocation_expression] = STATE(3043), + [sym_switch_expression] = STATE(3035), + [sym_await_expression] = STATE(3043), + [sym_throw_expression] = STATE(3035), + [sym_element_access_expression] = STATE(2415), + [sym_interpolated_string_expression] = STATE(3035), + [sym_member_access_expression] = STATE(2415), + [sym_object_creation_expression] = STATE(3043), + [sym_parenthesized_expression] = STATE(3043), + [sym__parenthesized_lvalue_expression] = STATE(2415), + [sym_lambda_expression] = STATE(3035), + [sym__lambda_expression_init] = STATE(7470), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3035), + [sym_anonymous_method_expression] = STATE(3035), + [sym_anonymous_object_creation_expression] = STATE(3035), + [sym_implicit_array_creation_expression] = STATE(3035), + [sym_implicit_object_creation_expression] = STATE(3035), + [sym_implicit_stackalloc_expression] = STATE(3035), + [sym_initializer_expression] = STATE(3035), + [sym_default_expression] = STATE(3035), + [sym_with_expression] = STATE(3035), + [sym_sizeof_expression] = STATE(3035), + [sym_typeof_expression] = STATE(3035), + [sym_makeref_expression] = STATE(3035), + [sym_ref_expression] = STATE(3035), + [sym_reftype_expression] = STATE(3035), + [sym_refvalue_expression] = STATE(3035), + [sym_stackalloc_expression] = STATE(3035), + [sym_range_expression] = STATE(3035), + [sym_tuple_expression] = STATE(2415), + [sym_literal] = STATE(3035), + [sym_character_literal] = STATE(3037), + [sym_string_literal] = STATE(3037), + [sym_raw_string_literal] = STATE(3037), + [sym_boolean_literal] = STATE(3037), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3035), + [sym_preproc_if_in_attribute_list] = STATE(5583), + [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(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3455), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1307), - [anon_sym_LPAREN] = ACTIONS(1309), - [anon_sym_ref] = ACTIONS(1311), - [anon_sym_LBRACE] = ACTIONS(1313), - [anon_sym_delegate] = ACTIONS(1315), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1239), + [anon_sym_LPAREN] = ACTIONS(1931), + [anon_sym_ref] = ACTIONS(1933), + [anon_sym_LBRACE] = ACTIONS(1245), + [anon_sym_delegate] = ACTIONS(1247), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1317), + [anon_sym_new] = ACTIONS(1935), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1319), - [anon_sym_BANG] = ACTIONS(1069), - [anon_sym_TILDE] = ACTIONS(1069), - [anon_sym_PLUS_PLUS] = ACTIONS(1069), - [anon_sym_DASH_DASH] = ACTIONS(1069), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1071), - [anon_sym_DASH] = ACTIONS(1071), - [anon_sym_STAR] = ACTIONS(1321), - [anon_sym_CARET] = ACTIONS(1069), - [anon_sym_AMP] = ACTIONS(1069), - [anon_sym_this] = ACTIONS(1323), + [anon_sym_checked] = ACTIONS(1251), + [anon_sym_BANG] = ACTIONS(1939), + [anon_sym_TILDE] = ACTIONS(1939), + [anon_sym_PLUS_PLUS] = ACTIONS(1939), + [anon_sym_DASH_DASH] = ACTIONS(1939), + [anon_sym_true] = ACTIONS(1257), + [anon_sym_false] = ACTIONS(1257), + [anon_sym_PLUS] = ACTIONS(1937), + [anon_sym_DASH] = ACTIONS(1937), + [anon_sym_STAR] = ACTIONS(1941), + [anon_sym_CARET] = ACTIONS(1939), + [anon_sym_AMP] = ACTIONS(1939), + [anon_sym_this] = ACTIONS(1261), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1325), + [anon_sym_base] = ACTIONS(1263), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1319), + [sym_predefined_type] = ACTIONS(1265), + [anon_sym_unchecked] = ACTIONS(1251), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1327), + [anon_sym_default] = ACTIONS(1267), + [anon_sym_throw] = ACTIONS(1943), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1329), - [anon_sym_DOT_DOT] = ACTIONS(1331), + [anon_sym_await] = ACTIONS(1945), + [anon_sym_DOT_DOT] = ACTIONS(1947), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -353210,19 +357659,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1333), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(1335), - [anon_sym___reftype] = ACTIONS(1337), - [anon_sym___refvalue] = ACTIONS(1339), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1341), + [anon_sym_stackalloc] = ACTIONS(1275), + [anon_sym_sizeof] = ACTIONS(1277), + [anon_sym_typeof] = ACTIONS(1279), + [anon_sym___makeref] = ACTIONS(1281), + [anon_sym___reftype] = ACTIONS(1283), + [anon_sym___refvalue] = ACTIONS(1285), + [sym_null_literal] = ACTIONS(1287), + [anon_sym_SQUOTE] = ACTIONS(1289), + [sym_integer_literal] = ACTIONS(1287), + [sym_real_literal] = ACTIONS(1291), + [anon_sym_DQUOTE] = ACTIONS(1293), + [sym_verbatim_string_literal] = ACTIONS(1291), + [aux_sym_preproc_if_token1] = ACTIONS(1295), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -353233,140 +357682,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(1297), + [sym_interpolation_verbatim_start] = ACTIONS(1299), + [sym_interpolation_raw_start] = ACTIONS(1301), + [sym_raw_string_start] = ACTIONS(1303), }, - [1843] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2914), + [1870] = { + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2416), [sym__name] = STATE(5885), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2357), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(3597), - [sym_non_lvalue_expression] = STATE(3880), - [sym_lvalue_expression] = STATE(2986), - [sym__expression_statement_expression] = STATE(3873), - [sym_assignment_expression] = STATE(3881), - [sym_binary_expression] = STATE(3873), - [sym_postfix_unary_expression] = STATE(3881), - [sym_prefix_unary_expression] = STATE(3881), - [sym__pointer_indirection_expression] = STATE(2913), - [sym_query_expression] = STATE(3873), - [sym_from_clause] = STATE(6168), - [sym_conditional_expression] = STATE(3873), - [sym_conditional_access_expression] = STATE(3873), - [sym_as_expression] = STATE(3873), - [sym_is_expression] = STATE(3873), - [sym_is_pattern_expression] = STATE(3873), - [sym_cast_expression] = STATE(3873), - [sym_checked_expression] = STATE(3873), - [sym_invocation_expression] = STATE(3881), - [sym_switch_expression] = STATE(3873), - [sym_await_expression] = STATE(3881), - [sym_throw_expression] = STATE(3873), - [sym_element_access_expression] = STATE(2913), - [sym_interpolated_string_expression] = STATE(3873), - [sym_member_access_expression] = STATE(2913), - [sym_object_creation_expression] = STATE(3881), - [sym_parenthesized_expression] = STATE(3881), - [sym__parenthesized_lvalue_expression] = STATE(2913), - [sym_lambda_expression] = STATE(3873), - [sym__lambda_expression_init] = STATE(7587), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3873), - [sym_anonymous_method_expression] = STATE(3873), - [sym_anonymous_object_creation_expression] = STATE(3873), - [sym_implicit_array_creation_expression] = STATE(3873), - [sym_implicit_object_creation_expression] = STATE(3873), - [sym_implicit_stackalloc_expression] = STATE(3873), - [sym_initializer_expression] = STATE(3873), - [sym_default_expression] = STATE(3873), - [sym_with_expression] = STATE(3873), - [sym_sizeof_expression] = STATE(3873), - [sym_typeof_expression] = STATE(3873), - [sym_makeref_expression] = STATE(3873), - [sym_ref_expression] = STATE(3873), - [sym_reftype_expression] = STATE(3873), - [sym_refvalue_expression] = STATE(3873), - [sym_stackalloc_expression] = STATE(3873), - [sym_range_expression] = STATE(3873), - [sym_tuple_expression] = STATE(2913), - [sym_literal] = STATE(3873), - [sym_character_literal] = STATE(3877), - [sym_string_literal] = STATE(3877), - [sym_raw_string_literal] = STATE(3877), - [sym_boolean_literal] = STATE(3877), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3873), - [sym_preproc_if_in_attribute_list] = STATE(5576), - [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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3382), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2404), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(2904), + [sym_non_lvalue_expression] = STATE(3040), + [sym_lvalue_expression] = STATE(3100), + [sym__expression_statement_expression] = STATE(3035), + [sym_assignment_expression] = STATE(3043), + [sym_binary_expression] = STATE(3035), + [sym_postfix_unary_expression] = STATE(3043), + [sym_prefix_unary_expression] = STATE(3043), + [sym__pointer_indirection_expression] = STATE(2415), + [sym_query_expression] = STATE(3035), + [sym_from_clause] = STATE(6135), + [sym_conditional_expression] = STATE(3035), + [sym_conditional_access_expression] = STATE(3035), + [sym_as_expression] = STATE(3035), + [sym_is_expression] = STATE(3035), + [sym_is_pattern_expression] = STATE(3035), + [sym_cast_expression] = STATE(3035), + [sym_checked_expression] = STATE(3035), + [sym_invocation_expression] = STATE(3043), + [sym_switch_expression] = STATE(3035), + [sym_await_expression] = STATE(3043), + [sym_throw_expression] = STATE(3035), + [sym_element_access_expression] = STATE(2415), + [sym_interpolated_string_expression] = STATE(3035), + [sym_member_access_expression] = STATE(2415), + [sym_object_creation_expression] = STATE(3043), + [sym_parenthesized_expression] = STATE(3043), + [sym__parenthesized_lvalue_expression] = STATE(2415), + [sym_lambda_expression] = STATE(3035), + [sym__lambda_expression_init] = STATE(7470), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3035), + [sym_anonymous_method_expression] = STATE(3035), + [sym_anonymous_object_creation_expression] = STATE(3035), + [sym_implicit_array_creation_expression] = STATE(3035), + [sym_implicit_object_creation_expression] = STATE(3035), + [sym_implicit_stackalloc_expression] = STATE(3035), + [sym_initializer_expression] = STATE(3035), + [sym_default_expression] = STATE(3035), + [sym_with_expression] = STATE(3035), + [sym_sizeof_expression] = STATE(3035), + [sym_typeof_expression] = STATE(3035), + [sym_makeref_expression] = STATE(3035), + [sym_ref_expression] = STATE(3035), + [sym_reftype_expression] = STATE(3035), + [sym_refvalue_expression] = STATE(3035), + [sym_stackalloc_expression] = STATE(3035), + [sym_range_expression] = STATE(3035), + [sym_tuple_expression] = STATE(2415), + [sym_literal] = STATE(3035), + [sym_character_literal] = STATE(3037), + [sym_string_literal] = STATE(3037), + [sym_raw_string_literal] = STATE(3037), + [sym_boolean_literal] = STATE(3037), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3035), + [sym_preproc_if_in_attribute_list] = STATE(5583), + [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(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3455), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1627), - [anon_sym_LPAREN] = ACTIONS(2079), - [anon_sym_ref] = ACTIONS(2081), - [anon_sym_LBRACE] = ACTIONS(1633), - [anon_sym_delegate] = ACTIONS(1635), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1239), + [anon_sym_LPAREN] = ACTIONS(1931), + [anon_sym_ref] = ACTIONS(1933), + [anon_sym_LBRACE] = ACTIONS(1245), + [anon_sym_delegate] = ACTIONS(1247), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1731), + [anon_sym_new] = ACTIONS(1935), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1639), - [anon_sym_BANG] = ACTIONS(2085), - [anon_sym_TILDE] = ACTIONS(2085), - [anon_sym_PLUS_PLUS] = ACTIONS(2085), - [anon_sym_DASH_DASH] = ACTIONS(2085), - [anon_sym_true] = ACTIONS(1645), - [anon_sym_false] = ACTIONS(1645), - [anon_sym_PLUS] = ACTIONS(2083), - [anon_sym_DASH] = ACTIONS(2083), - [anon_sym_STAR] = ACTIONS(1737), - [anon_sym_CARET] = ACTIONS(2085), - [anon_sym_AMP] = ACTIONS(2085), - [anon_sym_this] = ACTIONS(1649), + [anon_sym_checked] = ACTIONS(1251), + [anon_sym_BANG] = ACTIONS(1939), + [anon_sym_TILDE] = ACTIONS(1939), + [anon_sym_PLUS_PLUS] = ACTIONS(1939), + [anon_sym_DASH_DASH] = ACTIONS(1939), + [anon_sym_true] = ACTIONS(1257), + [anon_sym_false] = ACTIONS(1257), + [anon_sym_PLUS] = ACTIONS(1937), + [anon_sym_DASH] = ACTIONS(1937), + [anon_sym_STAR] = ACTIONS(1941), + [anon_sym_CARET] = ACTIONS(1939), + [anon_sym_AMP] = ACTIONS(1939), + [anon_sym_this] = ACTIONS(1261), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1651), + [anon_sym_base] = ACTIONS(1263), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1653), - [anon_sym_unchecked] = ACTIONS(1639), + [sym_predefined_type] = ACTIONS(1265), + [anon_sym_unchecked] = ACTIONS(1251), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1655), - [anon_sym_throw] = ACTIONS(2087), + [anon_sym_default] = ACTIONS(1267), + [anon_sym_throw] = ACTIONS(1943), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2089), - [anon_sym_DOT_DOT] = ACTIONS(2091), + [anon_sym_await] = ACTIONS(1945), + [anon_sym_DOT_DOT] = ACTIONS(1947), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -353379,19 +357828,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1663), - [anon_sym_sizeof] = ACTIONS(1665), - [anon_sym_typeof] = ACTIONS(1667), - [anon_sym___makeref] = ACTIONS(1669), - [anon_sym___reftype] = ACTIONS(1671), - [anon_sym___refvalue] = ACTIONS(1673), - [sym_null_literal] = ACTIONS(1675), - [anon_sym_SQUOTE] = ACTIONS(1677), - [sym_integer_literal] = ACTIONS(1675), - [sym_real_literal] = ACTIONS(1679), - [anon_sym_DQUOTE] = ACTIONS(1681), - [sym_verbatim_string_literal] = ACTIONS(1679), - [aux_sym_preproc_if_token1] = ACTIONS(1683), + [anon_sym_stackalloc] = ACTIONS(1275), + [anon_sym_sizeof] = ACTIONS(1277), + [anon_sym_typeof] = ACTIONS(1279), + [anon_sym___makeref] = ACTIONS(1281), + [anon_sym___reftype] = ACTIONS(1283), + [anon_sym___refvalue] = ACTIONS(1285), + [sym_null_literal] = ACTIONS(1287), + [anon_sym_SQUOTE] = ACTIONS(1289), + [sym_integer_literal] = ACTIONS(1287), + [sym_real_literal] = ACTIONS(1291), + [anon_sym_DQUOTE] = ACTIONS(1293), + [sym_verbatim_string_literal] = ACTIONS(1291), + [aux_sym_preproc_if_token1] = ACTIONS(1295), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -353402,140 +357851,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(1685), - [sym_interpolation_verbatim_start] = ACTIONS(1687), - [sym_interpolation_raw_start] = ACTIONS(1689), - [sym_raw_string_start] = ACTIONS(1691), + [sym_interpolation_regular_start] = ACTIONS(1297), + [sym_interpolation_verbatim_start] = ACTIONS(1299), + [sym_interpolation_raw_start] = ACTIONS(1301), + [sym_raw_string_start] = ACTIONS(1303), }, - [1844] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2762), - [sym__name] = STATE(5892), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2316), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(4684), - [sym_non_lvalue_expression] = STATE(3438), - [sym_lvalue_expression] = STATE(3500), - [sym__expression_statement_expression] = STATE(3362), - [sym_assignment_expression] = STATE(3449), - [sym_binary_expression] = STATE(3362), - [sym_postfix_unary_expression] = STATE(3449), - [sym_prefix_unary_expression] = STATE(3449), - [sym__pointer_indirection_expression] = STATE(2747), - [sym_query_expression] = STATE(3362), - [sym_from_clause] = STATE(6147), - [sym_conditional_expression] = STATE(3362), - [sym_conditional_access_expression] = STATE(3362), - [sym_as_expression] = STATE(3362), - [sym_is_expression] = STATE(3362), - [sym_is_pattern_expression] = STATE(3362), - [sym_cast_expression] = STATE(3362), - [sym_checked_expression] = STATE(3362), - [sym_invocation_expression] = STATE(3449), - [sym_switch_expression] = STATE(3362), - [sym_await_expression] = STATE(3449), - [sym_throw_expression] = STATE(3362), - [sym_element_access_expression] = STATE(2747), - [sym_interpolated_string_expression] = STATE(3362), - [sym_member_access_expression] = STATE(2747), - [sym_object_creation_expression] = STATE(3449), - [sym_parenthesized_expression] = STATE(3449), - [sym__parenthesized_lvalue_expression] = STATE(2747), - [sym_lambda_expression] = STATE(3362), - [sym__lambda_expression_init] = STATE(7516), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3362), - [sym_anonymous_method_expression] = STATE(3362), - [sym_anonymous_object_creation_expression] = STATE(3362), - [sym_implicit_array_creation_expression] = STATE(3362), - [sym_implicit_object_creation_expression] = STATE(3362), - [sym_implicit_stackalloc_expression] = STATE(3362), - [sym_initializer_expression] = STATE(3362), - [sym_default_expression] = STATE(3362), - [sym_with_expression] = STATE(3362), - [sym_sizeof_expression] = STATE(3362), - [sym_typeof_expression] = STATE(3362), - [sym_makeref_expression] = STATE(3362), - [sym_ref_expression] = STATE(3362), - [sym_reftype_expression] = STATE(3362), - [sym_refvalue_expression] = STATE(3362), - [sym_stackalloc_expression] = STATE(3362), - [sym_range_expression] = STATE(3362), - [sym_tuple_expression] = STATE(2747), - [sym_literal] = STATE(3362), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2267), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3362), - [sym_preproc_if_in_attribute_list] = STATE(5576), - [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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3385), + [1871] = { + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2603), + [sym__name] = STATE(5862), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2193), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(4822), + [sym_non_lvalue_expression] = STATE(3220), + [sym_lvalue_expression] = STATE(3502), + [sym__expression_statement_expression] = STATE(3236), + [sym_assignment_expression] = STATE(3221), + [sym_binary_expression] = STATE(3236), + [sym_postfix_unary_expression] = STATE(3221), + [sym_prefix_unary_expression] = STATE(3221), + [sym__pointer_indirection_expression] = STATE(2602), + [sym_query_expression] = STATE(3236), + [sym_from_clause] = STATE(6136), + [sym_conditional_expression] = STATE(3236), + [sym_conditional_access_expression] = STATE(3236), + [sym_as_expression] = STATE(3236), + [sym_is_expression] = STATE(3236), + [sym_is_pattern_expression] = STATE(3236), + [sym_cast_expression] = STATE(3236), + [sym_checked_expression] = STATE(3236), + [sym_invocation_expression] = STATE(3221), + [sym_switch_expression] = STATE(3236), + [sym_await_expression] = STATE(3221), + [sym_throw_expression] = STATE(3236), + [sym_element_access_expression] = STATE(2602), + [sym_interpolated_string_expression] = STATE(3236), + [sym_member_access_expression] = STATE(2602), + [sym_object_creation_expression] = STATE(3221), + [sym_parenthesized_expression] = STATE(3221), + [sym__parenthesized_lvalue_expression] = STATE(2602), + [sym_lambda_expression] = STATE(3236), + [sym__lambda_expression_init] = STATE(7475), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3236), + [sym_anonymous_method_expression] = STATE(3236), + [sym_anonymous_object_creation_expression] = STATE(3236), + [sym_implicit_array_creation_expression] = STATE(3236), + [sym_implicit_object_creation_expression] = STATE(3236), + [sym_implicit_stackalloc_expression] = STATE(3236), + [sym_initializer_expression] = STATE(3236), + [sym_default_expression] = STATE(3236), + [sym_with_expression] = STATE(3236), + [sym_sizeof_expression] = STATE(3236), + [sym_typeof_expression] = STATE(3236), + [sym_makeref_expression] = STATE(3236), + [sym_ref_expression] = STATE(3236), + [sym_reftype_expression] = STATE(3236), + [sym_refvalue_expression] = STATE(3236), + [sym_stackalloc_expression] = STATE(3236), + [sym_range_expression] = STATE(3236), + [sym_tuple_expression] = STATE(2602), + [sym_literal] = STATE(3236), + [sym_character_literal] = STATE(3272), + [sym_string_literal] = STATE(3272), + [sym_raw_string_literal] = STATE(3272), + [sym_boolean_literal] = STATE(3272), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3236), + [sym_preproc_if_in_attribute_list] = STATE(5583), + [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(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3379), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1307), - [anon_sym_LPAREN] = ACTIONS(1609), - [anon_sym_ref] = ACTIONS(1611), - [anon_sym_LBRACE] = ACTIONS(1313), - [anon_sym_delegate] = ACTIONS(1315), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1149), + [anon_sym_LPAREN] = ACTIONS(1787), + [anon_sym_ref] = ACTIONS(1789), + [anon_sym_LBRACE] = ACTIONS(1155), + [anon_sym_delegate] = ACTIONS(1157), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1613), + [anon_sym_new] = ACTIONS(1159), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1319), - [anon_sym_BANG] = ACTIONS(1617), - [anon_sym_TILDE] = ACTIONS(1617), - [anon_sym_PLUS_PLUS] = ACTIONS(1617), - [anon_sym_DASH_DASH] = ACTIONS(1617), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1615), - [anon_sym_DASH] = ACTIONS(1615), - [anon_sym_STAR] = ACTIONS(1619), - [anon_sym_CARET] = ACTIONS(1617), - [anon_sym_AMP] = ACTIONS(1617), - [anon_sym_this] = ACTIONS(1323), + [anon_sym_checked] = ACTIONS(1163), + [anon_sym_BANG] = ACTIONS(1793), + [anon_sym_TILDE] = ACTIONS(1793), + [anon_sym_PLUS_PLUS] = ACTIONS(1793), + [anon_sym_DASH_DASH] = ACTIONS(1793), + [anon_sym_true] = ACTIONS(1169), + [anon_sym_false] = ACTIONS(1169), + [anon_sym_PLUS] = ACTIONS(1791), + [anon_sym_DASH] = ACTIONS(1791), + [anon_sym_STAR] = ACTIONS(1171), + [anon_sym_CARET] = ACTIONS(1793), + [anon_sym_AMP] = ACTIONS(1793), + [anon_sym_this] = ACTIONS(1173), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1325), + [anon_sym_base] = ACTIONS(1175), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1319), + [sym_predefined_type] = ACTIONS(1177), + [anon_sym_unchecked] = ACTIONS(1163), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1621), + [anon_sym_default] = ACTIONS(1179), + [anon_sym_throw] = ACTIONS(1795), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1623), - [anon_sym_DOT_DOT] = ACTIONS(1625), + [anon_sym_await] = ACTIONS(1797), + [anon_sym_DOT_DOT] = ACTIONS(1799), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -353548,19 +357997,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1333), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(1335), - [anon_sym___reftype] = ACTIONS(1337), - [anon_sym___refvalue] = ACTIONS(1339), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1341), + [anon_sym_stackalloc] = ACTIONS(1187), + [anon_sym_sizeof] = ACTIONS(1189), + [anon_sym_typeof] = ACTIONS(1191), + [anon_sym___makeref] = ACTIONS(1193), + [anon_sym___reftype] = ACTIONS(1195), + [anon_sym___refvalue] = ACTIONS(1197), + [sym_null_literal] = ACTIONS(1199), + [anon_sym_SQUOTE] = ACTIONS(1201), + [sym_integer_literal] = ACTIONS(1199), + [sym_real_literal] = ACTIONS(1203), + [anon_sym_DQUOTE] = ACTIONS(1205), + [sym_verbatim_string_literal] = ACTIONS(1203), + [aux_sym_preproc_if_token1] = ACTIONS(1801), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -353571,140 +358020,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(1209), + [sym_interpolation_verbatim_start] = ACTIONS(1211), + [sym_interpolation_raw_start] = ACTIONS(1213), + [sym_raw_string_start] = ACTIONS(1215), }, - [1845] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2610), - [sym__name] = STATE(5879), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2197), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(4196), - [sym_non_lvalue_expression] = STATE(3277), - [sym_lvalue_expression] = STATE(3134), - [sym__expression_statement_expression] = STATE(3228), - [sym_assignment_expression] = STATE(3289), - [sym_binary_expression] = STATE(3228), - [sym_postfix_unary_expression] = STATE(3289), - [sym_prefix_unary_expression] = STATE(3289), - [sym__pointer_indirection_expression] = STATE(2609), - [sym_query_expression] = STATE(3228), - [sym_from_clause] = STATE(6162), - [sym_conditional_expression] = STATE(3228), - [sym_conditional_access_expression] = STATE(3228), - [sym_as_expression] = STATE(3228), - [sym_is_expression] = STATE(3228), - [sym_is_pattern_expression] = STATE(3228), - [sym_cast_expression] = STATE(3228), - [sym_checked_expression] = STATE(3228), - [sym_invocation_expression] = STATE(3289), - [sym_switch_expression] = STATE(3228), - [sym_await_expression] = STATE(3289), - [sym_throw_expression] = STATE(3228), - [sym_element_access_expression] = STATE(2609), - [sym_interpolated_string_expression] = STATE(3228), - [sym_member_access_expression] = STATE(2609), - [sym_object_creation_expression] = STATE(3289), - [sym_parenthesized_expression] = STATE(3289), - [sym__parenthesized_lvalue_expression] = STATE(2609), - [sym_lambda_expression] = STATE(3228), - [sym__lambda_expression_init] = STATE(7695), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3228), - [sym_anonymous_method_expression] = STATE(3228), - [sym_anonymous_object_creation_expression] = STATE(3228), - [sym_implicit_array_creation_expression] = STATE(3228), - [sym_implicit_object_creation_expression] = STATE(3228), - [sym_implicit_stackalloc_expression] = STATE(3228), - [sym_initializer_expression] = STATE(3228), - [sym_default_expression] = STATE(3228), - [sym_with_expression] = STATE(3228), - [sym_sizeof_expression] = STATE(3228), - [sym_typeof_expression] = STATE(3228), - [sym_makeref_expression] = STATE(3228), - [sym_ref_expression] = STATE(3228), - [sym_reftype_expression] = STATE(3228), - [sym_refvalue_expression] = STATE(3228), - [sym_stackalloc_expression] = STATE(3228), - [sym_range_expression] = STATE(3228), - [sym_tuple_expression] = STATE(2609), - [sym_literal] = STATE(3228), - [sym_character_literal] = STATE(3278), - [sym_string_literal] = STATE(3278), - [sym_raw_string_literal] = STATE(3278), - [sym_boolean_literal] = STATE(3278), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3228), - [sym_preproc_if_in_attribute_list] = STATE(5576), - [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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3396), - [sym__identifier_token] = ACTIONS(25), - [anon_sym_alias] = ACTIONS(29), - [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1153), - [anon_sym_LPAREN] = ACTIONS(1371), - [anon_sym_ref] = ACTIONS(1373), - [anon_sym_LBRACE] = ACTIONS(1159), - [anon_sym_delegate] = ACTIONS(1161), - [anon_sym_async] = ACTIONS(1047), - [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1163), - [anon_sym_where] = ACTIONS(29), - [anon_sym_notnull] = ACTIONS(29), - [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1167), - [anon_sym_BANG] = ACTIONS(1377), - [anon_sym_TILDE] = ACTIONS(1377), - [anon_sym_PLUS_PLUS] = ACTIONS(1377), - [anon_sym_DASH_DASH] = ACTIONS(1377), - [anon_sym_true] = ACTIONS(1173), - [anon_sym_false] = ACTIONS(1173), - [anon_sym_PLUS] = ACTIONS(1375), - [anon_sym_DASH] = ACTIONS(1375), - [anon_sym_STAR] = ACTIONS(1379), - [anon_sym_CARET] = ACTIONS(1377), - [anon_sym_AMP] = ACTIONS(1377), - [anon_sym_this] = ACTIONS(1177), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1179), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1181), - [anon_sym_unchecked] = ACTIONS(1167), + [1872] = { + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2603), + [sym__name] = STATE(5862), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2193), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(4824), + [sym_non_lvalue_expression] = STATE(3220), + [sym_lvalue_expression] = STATE(3502), + [sym__expression_statement_expression] = STATE(3236), + [sym_assignment_expression] = STATE(3221), + [sym_binary_expression] = STATE(3236), + [sym_postfix_unary_expression] = STATE(3221), + [sym_prefix_unary_expression] = STATE(3221), + [sym__pointer_indirection_expression] = STATE(2602), + [sym_query_expression] = STATE(3236), + [sym_from_clause] = STATE(6136), + [sym_conditional_expression] = STATE(3236), + [sym_conditional_access_expression] = STATE(3236), + [sym_as_expression] = STATE(3236), + [sym_is_expression] = STATE(3236), + [sym_is_pattern_expression] = STATE(3236), + [sym_cast_expression] = STATE(3236), + [sym_checked_expression] = STATE(3236), + [sym_invocation_expression] = STATE(3221), + [sym_switch_expression] = STATE(3236), + [sym_await_expression] = STATE(3221), + [sym_throw_expression] = STATE(3236), + [sym_element_access_expression] = STATE(2602), + [sym_interpolated_string_expression] = STATE(3236), + [sym_member_access_expression] = STATE(2602), + [sym_object_creation_expression] = STATE(3221), + [sym_parenthesized_expression] = STATE(3221), + [sym__parenthesized_lvalue_expression] = STATE(2602), + [sym_lambda_expression] = STATE(3236), + [sym__lambda_expression_init] = STATE(7475), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3236), + [sym_anonymous_method_expression] = STATE(3236), + [sym_anonymous_object_creation_expression] = STATE(3236), + [sym_implicit_array_creation_expression] = STATE(3236), + [sym_implicit_object_creation_expression] = STATE(3236), + [sym_implicit_stackalloc_expression] = STATE(3236), + [sym_initializer_expression] = STATE(3236), + [sym_default_expression] = STATE(3236), + [sym_with_expression] = STATE(3236), + [sym_sizeof_expression] = STATE(3236), + [sym_typeof_expression] = STATE(3236), + [sym_makeref_expression] = STATE(3236), + [sym_ref_expression] = STATE(3236), + [sym_reftype_expression] = STATE(3236), + [sym_refvalue_expression] = STATE(3236), + [sym_stackalloc_expression] = STATE(3236), + [sym_range_expression] = STATE(3236), + [sym_tuple_expression] = STATE(2602), + [sym_literal] = STATE(3236), + [sym_character_literal] = STATE(3272), + [sym_string_literal] = STATE(3272), + [sym_raw_string_literal] = STATE(3272), + [sym_boolean_literal] = STATE(3272), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3236), + [sym_preproc_if_in_attribute_list] = STATE(5583), + [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(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3379), + [sym__identifier_token] = ACTIONS(25), + [anon_sym_alias] = ACTIONS(29), + [anon_sym_global] = ACTIONS(29), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1149), + [anon_sym_LPAREN] = ACTIONS(1787), + [anon_sym_ref] = ACTIONS(1789), + [anon_sym_LBRACE] = ACTIONS(1155), + [anon_sym_delegate] = ACTIONS(1157), + [anon_sym_async] = ACTIONS(1045), + [anon_sym_file] = ACTIONS(29), + [anon_sym_new] = ACTIONS(1159), + [anon_sym_where] = ACTIONS(29), + [anon_sym_notnull] = ACTIONS(29), + [anon_sym_unmanaged] = ACTIONS(29), + [anon_sym_checked] = ACTIONS(1163), + [anon_sym_BANG] = ACTIONS(1793), + [anon_sym_TILDE] = ACTIONS(1793), + [anon_sym_PLUS_PLUS] = ACTIONS(1793), + [anon_sym_DASH_DASH] = ACTIONS(1793), + [anon_sym_true] = ACTIONS(1169), + [anon_sym_false] = ACTIONS(1169), + [anon_sym_PLUS] = ACTIONS(1791), + [anon_sym_DASH] = ACTIONS(1791), + [anon_sym_STAR] = ACTIONS(1171), + [anon_sym_CARET] = ACTIONS(1793), + [anon_sym_AMP] = ACTIONS(1793), + [anon_sym_this] = ACTIONS(1173), + [anon_sym_scoped] = ACTIONS(85), + [anon_sym_base] = ACTIONS(1175), + [anon_sym_var] = ACTIONS(89), + [sym_predefined_type] = ACTIONS(1177), + [anon_sym_unchecked] = ACTIONS(1163), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1183), - [anon_sym_throw] = ACTIONS(1381), + [anon_sym_default] = ACTIONS(1179), + [anon_sym_throw] = ACTIONS(1795), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1383), - [anon_sym_DOT_DOT] = ACTIONS(1385), + [anon_sym_await] = ACTIONS(1797), + [anon_sym_DOT_DOT] = ACTIONS(1799), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -353717,19 +358166,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1191), - [anon_sym_sizeof] = ACTIONS(1193), - [anon_sym_typeof] = ACTIONS(1195), - [anon_sym___makeref] = ACTIONS(1197), - [anon_sym___reftype] = ACTIONS(1199), - [anon_sym___refvalue] = ACTIONS(1201), - [sym_null_literal] = ACTIONS(1203), - [anon_sym_SQUOTE] = ACTIONS(1205), - [sym_integer_literal] = ACTIONS(1203), - [sym_real_literal] = ACTIONS(1207), - [anon_sym_DQUOTE] = ACTIONS(1209), - [sym_verbatim_string_literal] = ACTIONS(1207), - [aux_sym_preproc_if_token1] = ACTIONS(1211), + [anon_sym_stackalloc] = ACTIONS(1187), + [anon_sym_sizeof] = ACTIONS(1189), + [anon_sym_typeof] = ACTIONS(1191), + [anon_sym___makeref] = ACTIONS(1193), + [anon_sym___reftype] = ACTIONS(1195), + [anon_sym___refvalue] = ACTIONS(1197), + [sym_null_literal] = ACTIONS(1199), + [anon_sym_SQUOTE] = ACTIONS(1201), + [sym_integer_literal] = ACTIONS(1199), + [sym_real_literal] = ACTIONS(1203), + [anon_sym_DQUOTE] = ACTIONS(1205), + [sym_verbatim_string_literal] = ACTIONS(1203), + [aux_sym_preproc_if_token1] = ACTIONS(1801), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -353740,140 +358189,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(1213), - [sym_interpolation_verbatim_start] = ACTIONS(1215), - [sym_interpolation_raw_start] = ACTIONS(1217), - [sym_raw_string_start] = ACTIONS(1219), + [sym_interpolation_regular_start] = ACTIONS(1209), + [sym_interpolation_verbatim_start] = ACTIONS(1211), + [sym_interpolation_raw_start] = ACTIONS(1213), + [sym_raw_string_start] = ACTIONS(1215), }, - [1846] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(5890), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2375), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(5429), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3656), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3080), - [sym_postfix_unary_expression] = STATE(3111), - [sym_prefix_unary_expression] = STATE(3111), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6157), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3080), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3111), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3080), - [sym_member_access_expression] = STATE(2484), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3111), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7362), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(3080), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3080), - [sym_typeof_expression] = STATE(3080), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2484), - [sym_literal] = STATE(3080), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), - [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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [1873] = { + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(5873), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2238), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(5422), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3468), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3102), + [sym_postfix_unary_expression] = STATE(3079), + [sym_prefix_unary_expression] = STATE(3079), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6134), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3102), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3079), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3102), + [sym_member_access_expression] = STATE(2472), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3079), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7309), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(3102), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3102), + [sym_typeof_expression] = STATE(3102), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2472), + [sym_literal] = STATE(3102), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), + [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(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1481), - [anon_sym_LPAREN] = ACTIONS(2177), - [anon_sym_ref] = ACTIONS(2179), - [anon_sym_LBRACE] = ACTIONS(1487), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1479), + [anon_sym_LPAREN] = ACTIONS(659), + [anon_sym_ref] = ACTIONS(663), + [anon_sym_LBRACE] = ACTIONS(1481), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(2181), + [anon_sym_new] = ACTIONS(1059), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1067), - [anon_sym_BANG] = ACTIONS(2185), - [anon_sym_TILDE] = ACTIONS(2185), - [anon_sym_PLUS_PLUS] = ACTIONS(2185), - [anon_sym_DASH_DASH] = ACTIONS(2185), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(1485), + [anon_sym_TILDE] = ACTIONS(1485), + [anon_sym_PLUS_PLUS] = ACTIONS(1485), + [anon_sym_DASH_DASH] = ACTIONS(1485), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(2183), - [anon_sym_DASH] = ACTIONS(2183), - [anon_sym_STAR] = ACTIONS(2187), - [anon_sym_CARET] = ACTIONS(2185), - [anon_sym_AMP] = ACTIONS(2185), + [anon_sym_PLUS] = ACTIONS(1483), + [anon_sym_DASH] = ACTIONS(1483), + [anon_sym_STAR] = ACTIONS(683), + [anon_sym_CARET] = ACTIONS(1485), + [anon_sym_AMP] = ACTIONS(1485), [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(1067), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(2189), + [anon_sym_throw] = ACTIONS(1077), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2191), - [anon_sym_DOT_DOT] = ACTIONS(2193), + [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), @@ -353898,7 +358347,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(1089), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -353914,135 +358363,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), }, - [1847] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2610), - [sym__name] = STATE(5879), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2197), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(3139), - [sym_non_lvalue_expression] = STATE(3277), - [sym_lvalue_expression] = STATE(3134), - [sym__expression_statement_expression] = STATE(3228), - [sym_assignment_expression] = STATE(3289), - [sym_binary_expression] = STATE(3228), - [sym_postfix_unary_expression] = STATE(3289), - [sym_prefix_unary_expression] = STATE(3289), - [sym__pointer_indirection_expression] = STATE(2609), - [sym_query_expression] = STATE(3228), - [sym_from_clause] = STATE(6162), - [sym_conditional_expression] = STATE(3228), - [sym_conditional_access_expression] = STATE(3228), - [sym_as_expression] = STATE(3228), - [sym_is_expression] = STATE(3228), - [sym_is_pattern_expression] = STATE(3228), - [sym_cast_expression] = STATE(3228), - [sym_checked_expression] = STATE(3228), - [sym_invocation_expression] = STATE(3289), - [sym_switch_expression] = STATE(3228), - [sym_await_expression] = STATE(3289), - [sym_throw_expression] = STATE(3228), - [sym_element_access_expression] = STATE(2609), - [sym_interpolated_string_expression] = STATE(3228), - [sym_member_access_expression] = STATE(2609), - [sym_object_creation_expression] = STATE(3289), - [sym_parenthesized_expression] = STATE(3289), - [sym__parenthesized_lvalue_expression] = STATE(2609), - [sym_lambda_expression] = STATE(3228), - [sym__lambda_expression_init] = STATE(7695), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3228), - [sym_anonymous_method_expression] = STATE(3228), - [sym_anonymous_object_creation_expression] = STATE(3228), - [sym_implicit_array_creation_expression] = STATE(3228), - [sym_implicit_object_creation_expression] = STATE(3228), - [sym_implicit_stackalloc_expression] = STATE(3228), - [sym_initializer_expression] = STATE(3228), - [sym_default_expression] = STATE(3228), - [sym_with_expression] = STATE(3228), - [sym_sizeof_expression] = STATE(3228), - [sym_typeof_expression] = STATE(3228), - [sym_makeref_expression] = STATE(3228), - [sym_ref_expression] = STATE(3228), - [sym_reftype_expression] = STATE(3228), - [sym_refvalue_expression] = STATE(3228), - [sym_stackalloc_expression] = STATE(3228), - [sym_range_expression] = STATE(3228), - [sym_tuple_expression] = STATE(2609), - [sym_literal] = STATE(3228), - [sym_character_literal] = STATE(3278), - [sym_string_literal] = STATE(3278), - [sym_raw_string_literal] = STATE(3278), - [sym_boolean_literal] = STATE(3278), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3228), - [sym_preproc_if_in_attribute_list] = STATE(5576), - [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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3396), + [1874] = { + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2416), + [sym__name] = STATE(5890), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2193), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(2902), + [sym_non_lvalue_expression] = STATE(3040), + [sym_lvalue_expression] = STATE(3631), + [sym__expression_statement_expression] = STATE(3035), + [sym_assignment_expression] = STATE(3043), + [sym_binary_expression] = STATE(3035), + [sym_postfix_unary_expression] = STATE(3043), + [sym_prefix_unary_expression] = STATE(3043), + [sym__pointer_indirection_expression] = STATE(2415), + [sym_query_expression] = STATE(3035), + [sym_from_clause] = STATE(6164), + [sym_conditional_expression] = STATE(3035), + [sym_conditional_access_expression] = STATE(3035), + [sym_as_expression] = STATE(3035), + [sym_is_expression] = STATE(3035), + [sym_is_pattern_expression] = STATE(3035), + [sym_cast_expression] = STATE(3035), + [sym_checked_expression] = STATE(3035), + [sym_invocation_expression] = STATE(3043), + [sym_switch_expression] = STATE(3035), + [sym_await_expression] = STATE(3043), + [sym_throw_expression] = STATE(3035), + [sym_element_access_expression] = STATE(2415), + [sym_interpolated_string_expression] = STATE(3035), + [sym_member_access_expression] = STATE(2415), + [sym_object_creation_expression] = STATE(3043), + [sym_parenthesized_expression] = STATE(3043), + [sym__parenthesized_lvalue_expression] = STATE(2415), + [sym_lambda_expression] = STATE(3035), + [sym__lambda_expression_init] = STATE(7458), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3035), + [sym_anonymous_method_expression] = STATE(3035), + [sym_anonymous_object_creation_expression] = STATE(3035), + [sym_implicit_array_creation_expression] = STATE(3035), + [sym_implicit_object_creation_expression] = STATE(3035), + [sym_implicit_stackalloc_expression] = STATE(3035), + [sym_initializer_expression] = STATE(3035), + [sym_default_expression] = STATE(3035), + [sym_with_expression] = STATE(3035), + [sym_sizeof_expression] = STATE(3035), + [sym_typeof_expression] = STATE(3035), + [sym_makeref_expression] = STATE(3035), + [sym_ref_expression] = STATE(3035), + [sym_reftype_expression] = STATE(3035), + [sym_refvalue_expression] = STATE(3035), + [sym_stackalloc_expression] = STATE(3035), + [sym_range_expression] = STATE(3035), + [sym_tuple_expression] = STATE(2415), + [sym_literal] = STATE(3035), + [sym_character_literal] = STATE(3037), + [sym_string_literal] = STATE(3037), + [sym_raw_string_literal] = STATE(3037), + [sym_boolean_literal] = STATE(3037), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3035), + [sym_preproc_if_in_attribute_list] = STATE(5583), + [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(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3455), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1153), - [anon_sym_LPAREN] = ACTIONS(1371), - [anon_sym_ref] = ACTIONS(1373), - [anon_sym_LBRACE] = ACTIONS(1159), - [anon_sym_delegate] = ACTIONS(1161), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1239), + [anon_sym_LPAREN] = ACTIONS(2101), + [anon_sym_ref] = ACTIONS(2103), + [anon_sym_LBRACE] = ACTIONS(1245), + [anon_sym_delegate] = ACTIONS(1247), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1163), + [anon_sym_new] = ACTIONS(1249), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1167), - [anon_sym_BANG] = ACTIONS(1377), - [anon_sym_TILDE] = ACTIONS(1377), - [anon_sym_PLUS_PLUS] = ACTIONS(1377), - [anon_sym_DASH_DASH] = ACTIONS(1377), - [anon_sym_true] = ACTIONS(1173), - [anon_sym_false] = ACTIONS(1173), - [anon_sym_PLUS] = ACTIONS(1375), - [anon_sym_DASH] = ACTIONS(1375), - [anon_sym_STAR] = ACTIONS(1379), - [anon_sym_CARET] = ACTIONS(1377), - [anon_sym_AMP] = ACTIONS(1377), - [anon_sym_this] = ACTIONS(1177), + [anon_sym_checked] = ACTIONS(1251), + [anon_sym_BANG] = ACTIONS(2107), + [anon_sym_TILDE] = ACTIONS(2107), + [anon_sym_PLUS_PLUS] = ACTIONS(2107), + [anon_sym_DASH_DASH] = ACTIONS(2107), + [anon_sym_true] = ACTIONS(1257), + [anon_sym_false] = ACTIONS(1257), + [anon_sym_PLUS] = ACTIONS(2105), + [anon_sym_DASH] = ACTIONS(2105), + [anon_sym_STAR] = ACTIONS(1259), + [anon_sym_CARET] = ACTIONS(2107), + [anon_sym_AMP] = ACTIONS(2107), + [anon_sym_this] = ACTIONS(1261), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1179), + [anon_sym_base] = ACTIONS(1263), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1181), - [anon_sym_unchecked] = ACTIONS(1167), + [sym_predefined_type] = ACTIONS(1265), + [anon_sym_unchecked] = ACTIONS(1251), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1183), - [anon_sym_throw] = ACTIONS(1381), + [anon_sym_default] = ACTIONS(1267), + [anon_sym_throw] = ACTIONS(2109), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1383), - [anon_sym_DOT_DOT] = ACTIONS(1385), + [anon_sym_await] = ACTIONS(2111), + [anon_sym_DOT_DOT] = ACTIONS(2113), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -354055,19 +358504,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1191), - [anon_sym_sizeof] = ACTIONS(1193), - [anon_sym_typeof] = ACTIONS(1195), - [anon_sym___makeref] = ACTIONS(1197), - [anon_sym___reftype] = ACTIONS(1199), - [anon_sym___refvalue] = ACTIONS(1201), - [sym_null_literal] = ACTIONS(1203), - [anon_sym_SQUOTE] = ACTIONS(1205), - [sym_integer_literal] = ACTIONS(1203), - [sym_real_literal] = ACTIONS(1207), - [anon_sym_DQUOTE] = ACTIONS(1209), - [sym_verbatim_string_literal] = ACTIONS(1207), - [aux_sym_preproc_if_token1] = ACTIONS(1211), + [anon_sym_stackalloc] = ACTIONS(1275), + [anon_sym_sizeof] = ACTIONS(1277), + [anon_sym_typeof] = ACTIONS(1279), + [anon_sym___makeref] = ACTIONS(1281), + [anon_sym___reftype] = ACTIONS(1283), + [anon_sym___refvalue] = ACTIONS(1285), + [sym_null_literal] = ACTIONS(1287), + [anon_sym_SQUOTE] = ACTIONS(1289), + [sym_integer_literal] = ACTIONS(1287), + [sym_real_literal] = ACTIONS(1291), + [anon_sym_DQUOTE] = ACTIONS(1293), + [sym_verbatim_string_literal] = ACTIONS(1291), + [aux_sym_preproc_if_token1] = ACTIONS(2115), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -354078,140 +358527,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(1213), - [sym_interpolation_verbatim_start] = ACTIONS(1215), - [sym_interpolation_raw_start] = ACTIONS(1217), - [sym_raw_string_start] = ACTIONS(1219), + [sym_interpolation_regular_start] = ACTIONS(1297), + [sym_interpolation_verbatim_start] = ACTIONS(1299), + [sym_interpolation_raw_start] = ACTIONS(1301), + [sym_raw_string_start] = ACTIONS(1303), }, - [1848] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(5910), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2247), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(5433), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3379), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3080), - [sym_postfix_unary_expression] = STATE(3111), - [sym_prefix_unary_expression] = STATE(3111), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6154), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3080), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3111), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3080), - [sym_member_access_expression] = STATE(2484), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3111), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7575), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(3080), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3080), - [sym_typeof_expression] = STATE(3080), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2484), - [sym_literal] = STATE(3080), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), - [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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [1875] = { + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2416), + [sym__name] = STATE(5885), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2404), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(2902), + [sym_non_lvalue_expression] = STATE(3040), + [sym_lvalue_expression] = STATE(3100), + [sym__expression_statement_expression] = STATE(3035), + [sym_assignment_expression] = STATE(3043), + [sym_binary_expression] = STATE(3035), + [sym_postfix_unary_expression] = STATE(3043), + [sym_prefix_unary_expression] = STATE(3043), + [sym__pointer_indirection_expression] = STATE(2415), + [sym_query_expression] = STATE(3035), + [sym_from_clause] = STATE(6135), + [sym_conditional_expression] = STATE(3035), + [sym_conditional_access_expression] = STATE(3035), + [sym_as_expression] = STATE(3035), + [sym_is_expression] = STATE(3035), + [sym_is_pattern_expression] = STATE(3035), + [sym_cast_expression] = STATE(3035), + [sym_checked_expression] = STATE(3035), + [sym_invocation_expression] = STATE(3043), + [sym_switch_expression] = STATE(3035), + [sym_await_expression] = STATE(3043), + [sym_throw_expression] = STATE(3035), + [sym_element_access_expression] = STATE(2415), + [sym_interpolated_string_expression] = STATE(3035), + [sym_member_access_expression] = STATE(2415), + [sym_object_creation_expression] = STATE(3043), + [sym_parenthesized_expression] = STATE(3043), + [sym__parenthesized_lvalue_expression] = STATE(2415), + [sym_lambda_expression] = STATE(3035), + [sym__lambda_expression_init] = STATE(7470), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3035), + [sym_anonymous_method_expression] = STATE(3035), + [sym_anonymous_object_creation_expression] = STATE(3035), + [sym_implicit_array_creation_expression] = STATE(3035), + [sym_implicit_object_creation_expression] = STATE(3035), + [sym_implicit_stackalloc_expression] = STATE(3035), + [sym_initializer_expression] = STATE(3035), + [sym_default_expression] = STATE(3035), + [sym_with_expression] = STATE(3035), + [sym_sizeof_expression] = STATE(3035), + [sym_typeof_expression] = STATE(3035), + [sym_makeref_expression] = STATE(3035), + [sym_ref_expression] = STATE(3035), + [sym_reftype_expression] = STATE(3035), + [sym_refvalue_expression] = STATE(3035), + [sym_stackalloc_expression] = STATE(3035), + [sym_range_expression] = STATE(3035), + [sym_tuple_expression] = STATE(2415), + [sym_literal] = STATE(3035), + [sym_character_literal] = STATE(3037), + [sym_string_literal] = STATE(3037), + [sym_raw_string_literal] = STATE(3037), + [sym_boolean_literal] = STATE(3037), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3035), + [sym_preproc_if_in_attribute_list] = STATE(5583), + [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(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3455), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1481), - [anon_sym_LPAREN] = ACTIONS(895), - [anon_sym_ref] = ACTIONS(897), - [anon_sym_LBRACE] = ACTIONS(1487), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1239), + [anon_sym_LPAREN] = ACTIONS(1931), + [anon_sym_ref] = ACTIONS(1933), + [anon_sym_LBRACE] = ACTIONS(1245), + [anon_sym_delegate] = ACTIONS(1247), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1061), + [anon_sym_new] = ACTIONS(1935), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1067), - [anon_sym_BANG] = ACTIONS(1495), - [anon_sym_TILDE] = ACTIONS(1495), - [anon_sym_PLUS_PLUS] = ACTIONS(1495), - [anon_sym_DASH_DASH] = ACTIONS(1495), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1493), - [anon_sym_DASH] = ACTIONS(1493), - [anon_sym_STAR] = ACTIONS(905), - [anon_sym_CARET] = ACTIONS(1495), - [anon_sym_AMP] = ACTIONS(1495), - [anon_sym_this] = ACTIONS(83), + [anon_sym_checked] = ACTIONS(1251), + [anon_sym_BANG] = ACTIONS(1939), + [anon_sym_TILDE] = ACTIONS(1939), + [anon_sym_PLUS_PLUS] = ACTIONS(1939), + [anon_sym_DASH_DASH] = ACTIONS(1939), + [anon_sym_true] = ACTIONS(1257), + [anon_sym_false] = ACTIONS(1257), + [anon_sym_PLUS] = ACTIONS(1937), + [anon_sym_DASH] = ACTIONS(1937), + [anon_sym_STAR] = ACTIONS(1941), + [anon_sym_CARET] = ACTIONS(1939), + [anon_sym_AMP] = ACTIONS(1939), + [anon_sym_this] = ACTIONS(1261), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), + [anon_sym_base] = ACTIONS(1263), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1067), + [sym_predefined_type] = ACTIONS(1265), + [anon_sym_unchecked] = ACTIONS(1251), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1079), + [anon_sym_default] = ACTIONS(1267), + [anon_sym_throw] = ACTIONS(1943), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1081), - [anon_sym_DOT_DOT] = ACTIONS(911), + [anon_sym_await] = ACTIONS(1945), + [anon_sym_DOT_DOT] = ACTIONS(1947), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -354224,19 +358673,19 @@ static const uint16_t ts_parse_table[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(1089), + [anon_sym_stackalloc] = ACTIONS(1275), + [anon_sym_sizeof] = ACTIONS(1277), + [anon_sym_typeof] = ACTIONS(1279), + [anon_sym___makeref] = ACTIONS(1281), + [anon_sym___reftype] = ACTIONS(1283), + [anon_sym___refvalue] = ACTIONS(1285), + [sym_null_literal] = ACTIONS(1287), + [anon_sym_SQUOTE] = ACTIONS(1289), + [sym_integer_literal] = ACTIONS(1287), + [sym_real_literal] = ACTIONS(1291), + [anon_sym_DQUOTE] = ACTIONS(1293), + [sym_verbatim_string_literal] = ACTIONS(1291), + [aux_sym_preproc_if_token1] = ACTIONS(1295), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -354247,140 +358696,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(1297), + [sym_interpolation_verbatim_start] = ACTIONS(1299), + [sym_interpolation_raw_start] = ACTIONS(1301), + [sym_raw_string_start] = ACTIONS(1303), }, - [1849] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2610), - [sym__name] = STATE(5886), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2319), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(4471), - [sym_non_lvalue_expression] = STATE(3277), - [sym_lvalue_expression] = STATE(3347), - [sym__expression_statement_expression] = STATE(3228), - [sym_assignment_expression] = STATE(3289), - [sym_binary_expression] = STATE(3228), - [sym_postfix_unary_expression] = STATE(3289), - [sym_prefix_unary_expression] = STATE(3289), - [sym__pointer_indirection_expression] = STATE(2609), - [sym_query_expression] = STATE(3228), - [sym_from_clause] = STATE(6150), - [sym_conditional_expression] = STATE(3228), - [sym_conditional_access_expression] = STATE(3228), - [sym_as_expression] = STATE(3228), - [sym_is_expression] = STATE(3228), - [sym_is_pattern_expression] = STATE(3228), - [sym_cast_expression] = STATE(3228), - [sym_checked_expression] = STATE(3228), - [sym_invocation_expression] = STATE(3289), - [sym_switch_expression] = STATE(3228), - [sym_await_expression] = STATE(3289), - [sym_throw_expression] = STATE(3228), - [sym_element_access_expression] = STATE(2609), - [sym_interpolated_string_expression] = STATE(3228), - [sym_member_access_expression] = STATE(2609), - [sym_object_creation_expression] = STATE(3289), - [sym_parenthesized_expression] = STATE(3289), - [sym__parenthesized_lvalue_expression] = STATE(2609), - [sym_lambda_expression] = STATE(3228), - [sym__lambda_expression_init] = STATE(7531), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3228), - [sym_anonymous_method_expression] = STATE(3228), - [sym_anonymous_object_creation_expression] = STATE(3228), - [sym_implicit_array_creation_expression] = STATE(3228), - [sym_implicit_object_creation_expression] = STATE(3228), - [sym_implicit_stackalloc_expression] = STATE(3228), - [sym_initializer_expression] = STATE(3228), - [sym_default_expression] = STATE(3228), - [sym_with_expression] = STATE(3228), - [sym_sizeof_expression] = STATE(3228), - [sym_typeof_expression] = STATE(3228), - [sym_makeref_expression] = STATE(3228), - [sym_ref_expression] = STATE(3228), - [sym_reftype_expression] = STATE(3228), - [sym_refvalue_expression] = STATE(3228), - [sym_stackalloc_expression] = STATE(3228), - [sym_range_expression] = STATE(3228), - [sym_tuple_expression] = STATE(2609), - [sym_literal] = STATE(3228), - [sym_character_literal] = STATE(3278), - [sym_string_literal] = STATE(3278), - [sym_raw_string_literal] = STATE(3278), - [sym_boolean_literal] = STATE(3278), - [sym_identifier] = STATE(2267), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3228), - [sym_preproc_if_in_attribute_list] = STATE(5576), - [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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3396), + [1876] = { + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2603), + [sym__name] = STATE(5862), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2193), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(3136), + [sym_non_lvalue_expression] = STATE(3220), + [sym_lvalue_expression] = STATE(3502), + [sym__expression_statement_expression] = STATE(3236), + [sym_assignment_expression] = STATE(3221), + [sym_binary_expression] = STATE(3236), + [sym_postfix_unary_expression] = STATE(3221), + [sym_prefix_unary_expression] = STATE(3221), + [sym__pointer_indirection_expression] = STATE(2602), + [sym_query_expression] = STATE(3236), + [sym_from_clause] = STATE(6136), + [sym_conditional_expression] = STATE(3236), + [sym_conditional_access_expression] = STATE(3236), + [sym_as_expression] = STATE(3236), + [sym_is_expression] = STATE(3236), + [sym_is_pattern_expression] = STATE(3236), + [sym_cast_expression] = STATE(3236), + [sym_checked_expression] = STATE(3236), + [sym_invocation_expression] = STATE(3221), + [sym_switch_expression] = STATE(3236), + [sym_await_expression] = STATE(3221), + [sym_throw_expression] = STATE(3236), + [sym_element_access_expression] = STATE(2602), + [sym_interpolated_string_expression] = STATE(3236), + [sym_member_access_expression] = STATE(2602), + [sym_object_creation_expression] = STATE(3221), + [sym_parenthesized_expression] = STATE(3221), + [sym__parenthesized_lvalue_expression] = STATE(2602), + [sym_lambda_expression] = STATE(3236), + [sym__lambda_expression_init] = STATE(7475), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3236), + [sym_anonymous_method_expression] = STATE(3236), + [sym_anonymous_object_creation_expression] = STATE(3236), + [sym_implicit_array_creation_expression] = STATE(3236), + [sym_implicit_object_creation_expression] = STATE(3236), + [sym_implicit_stackalloc_expression] = STATE(3236), + [sym_initializer_expression] = STATE(3236), + [sym_default_expression] = STATE(3236), + [sym_with_expression] = STATE(3236), + [sym_sizeof_expression] = STATE(3236), + [sym_typeof_expression] = STATE(3236), + [sym_makeref_expression] = STATE(3236), + [sym_ref_expression] = STATE(3236), + [sym_reftype_expression] = STATE(3236), + [sym_refvalue_expression] = STATE(3236), + [sym_stackalloc_expression] = STATE(3236), + [sym_range_expression] = STATE(3236), + [sym_tuple_expression] = STATE(2602), + [sym_literal] = STATE(3236), + [sym_character_literal] = STATE(3272), + [sym_string_literal] = STATE(3272), + [sym_raw_string_literal] = STATE(3272), + [sym_boolean_literal] = STATE(3272), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3236), + [sym_preproc_if_in_attribute_list] = STATE(5583), + [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(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3379), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1153), - [anon_sym_LPAREN] = ACTIONS(1525), - [anon_sym_ref] = ACTIONS(1527), - [anon_sym_LBRACE] = ACTIONS(1159), - [anon_sym_delegate] = ACTIONS(1161), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1149), + [anon_sym_LPAREN] = ACTIONS(1787), + [anon_sym_ref] = ACTIONS(1789), + [anon_sym_LBRACE] = ACTIONS(1155), + [anon_sym_delegate] = ACTIONS(1157), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1529), + [anon_sym_new] = ACTIONS(1159), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1167), - [anon_sym_BANG] = ACTIONS(1533), - [anon_sym_TILDE] = ACTIONS(1533), - [anon_sym_PLUS_PLUS] = ACTIONS(1533), - [anon_sym_DASH_DASH] = ACTIONS(1533), - [anon_sym_true] = ACTIONS(1173), - [anon_sym_false] = ACTIONS(1173), - [anon_sym_PLUS] = ACTIONS(1531), - [anon_sym_DASH] = ACTIONS(1531), - [anon_sym_STAR] = ACTIONS(1535), - [anon_sym_CARET] = ACTIONS(1533), - [anon_sym_AMP] = ACTIONS(1533), - [anon_sym_this] = ACTIONS(1177), + [anon_sym_checked] = ACTIONS(1163), + [anon_sym_BANG] = ACTIONS(1793), + [anon_sym_TILDE] = ACTIONS(1793), + [anon_sym_PLUS_PLUS] = ACTIONS(1793), + [anon_sym_DASH_DASH] = ACTIONS(1793), + [anon_sym_true] = ACTIONS(1169), + [anon_sym_false] = ACTIONS(1169), + [anon_sym_PLUS] = ACTIONS(1791), + [anon_sym_DASH] = ACTIONS(1791), + [anon_sym_STAR] = ACTIONS(1171), + [anon_sym_CARET] = ACTIONS(1793), + [anon_sym_AMP] = ACTIONS(1793), + [anon_sym_this] = ACTIONS(1173), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1179), + [anon_sym_base] = ACTIONS(1175), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1181), - [anon_sym_unchecked] = ACTIONS(1167), + [sym_predefined_type] = ACTIONS(1177), + [anon_sym_unchecked] = ACTIONS(1163), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1183), - [anon_sym_throw] = ACTIONS(1537), + [anon_sym_default] = ACTIONS(1179), + [anon_sym_throw] = ACTIONS(1795), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1539), - [anon_sym_DOT_DOT] = ACTIONS(1541), + [anon_sym_await] = ACTIONS(1797), + [anon_sym_DOT_DOT] = ACTIONS(1799), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -354393,19 +358842,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1191), - [anon_sym_sizeof] = ACTIONS(1193), - [anon_sym_typeof] = ACTIONS(1195), - [anon_sym___makeref] = ACTIONS(1197), - [anon_sym___reftype] = ACTIONS(1199), - [anon_sym___refvalue] = ACTIONS(1201), - [sym_null_literal] = ACTIONS(1203), - [anon_sym_SQUOTE] = ACTIONS(1205), - [sym_integer_literal] = ACTIONS(1203), - [sym_real_literal] = ACTIONS(1207), - [anon_sym_DQUOTE] = ACTIONS(1209), - [sym_verbatim_string_literal] = ACTIONS(1207), - [aux_sym_preproc_if_token1] = ACTIONS(1211), + [anon_sym_stackalloc] = ACTIONS(1187), + [anon_sym_sizeof] = ACTIONS(1189), + [anon_sym_typeof] = ACTIONS(1191), + [anon_sym___makeref] = ACTIONS(1193), + [anon_sym___reftype] = ACTIONS(1195), + [anon_sym___refvalue] = ACTIONS(1197), + [sym_null_literal] = ACTIONS(1199), + [anon_sym_SQUOTE] = ACTIONS(1201), + [sym_integer_literal] = ACTIONS(1199), + [sym_real_literal] = ACTIONS(1203), + [anon_sym_DQUOTE] = ACTIONS(1205), + [sym_verbatim_string_literal] = ACTIONS(1203), + [aux_sym_preproc_if_token1] = ACTIONS(1801), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -354416,140 +358865,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(1213), - [sym_interpolation_verbatim_start] = ACTIONS(1215), - [sym_interpolation_raw_start] = ACTIONS(1217), - [sym_raw_string_start] = ACTIONS(1219), + [sym_interpolation_regular_start] = ACTIONS(1209), + [sym_interpolation_verbatim_start] = ACTIONS(1211), + [sym_interpolation_raw_start] = ACTIONS(1213), + [sym_raw_string_start] = ACTIONS(1215), }, - [1850] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(5910), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2247), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(5019), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3379), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3080), - [sym_postfix_unary_expression] = STATE(3111), - [sym_prefix_unary_expression] = STATE(3111), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6154), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3080), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3111), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3080), - [sym_member_access_expression] = STATE(2484), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3111), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7575), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(3080), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3080), - [sym_typeof_expression] = STATE(3080), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2484), - [sym_literal] = STATE(3080), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), - [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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [1877] = { + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(5893), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2361), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(5579), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3673), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3102), + [sym_postfix_unary_expression] = STATE(3079), + [sym_prefix_unary_expression] = STATE(3079), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6159), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3102), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3079), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3102), + [sym_member_access_expression] = STATE(2472), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3079), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7363), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(3102), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3102), + [sym_typeof_expression] = STATE(3102), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2472), + [sym_literal] = STATE(3102), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), + [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(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1481), - [anon_sym_LPAREN] = ACTIONS(895), - [anon_sym_ref] = ACTIONS(897), - [anon_sym_LBRACE] = ACTIONS(1487), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1479), + [anon_sym_LPAREN] = ACTIONS(2237), + [anon_sym_ref] = ACTIONS(2239), + [anon_sym_LBRACE] = ACTIONS(1481), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1061), + [anon_sym_new] = ACTIONS(2241), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1067), - [anon_sym_BANG] = ACTIONS(1495), - [anon_sym_TILDE] = ACTIONS(1495), - [anon_sym_PLUS_PLUS] = ACTIONS(1495), - [anon_sym_DASH_DASH] = ACTIONS(1495), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(2245), + [anon_sym_TILDE] = ACTIONS(2245), + [anon_sym_PLUS_PLUS] = ACTIONS(2245), + [anon_sym_DASH_DASH] = ACTIONS(2245), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1493), - [anon_sym_DASH] = ACTIONS(1493), - [anon_sym_STAR] = ACTIONS(905), - [anon_sym_CARET] = ACTIONS(1495), - [anon_sym_AMP] = ACTIONS(1495), + [anon_sym_PLUS] = ACTIONS(2243), + [anon_sym_DASH] = ACTIONS(2243), + [anon_sym_STAR] = ACTIONS(2247), + [anon_sym_CARET] = ACTIONS(2245), + [anon_sym_AMP] = ACTIONS(2245), [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(1067), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1079), + [anon_sym_throw] = ACTIONS(2249), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1081), - [anon_sym_DOT_DOT] = ACTIONS(911), + [anon_sym_await] = ACTIONS(2251), + [anon_sym_DOT_DOT] = ACTIONS(2253), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -354574,7 +359023,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(1089), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -354590,473 +359039,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), }, - [1851] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2610), - [sym__name] = STATE(5886), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2319), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(4472), - [sym_non_lvalue_expression] = STATE(3277), - [sym_lvalue_expression] = STATE(3347), - [sym__expression_statement_expression] = STATE(3228), - [sym_assignment_expression] = STATE(3289), - [sym_binary_expression] = STATE(3228), - [sym_postfix_unary_expression] = STATE(3289), - [sym_prefix_unary_expression] = STATE(3289), - [sym__pointer_indirection_expression] = STATE(2609), - [sym_query_expression] = STATE(3228), - [sym_from_clause] = STATE(6150), - [sym_conditional_expression] = STATE(3228), - [sym_conditional_access_expression] = STATE(3228), - [sym_as_expression] = STATE(3228), - [sym_is_expression] = STATE(3228), - [sym_is_pattern_expression] = STATE(3228), - [sym_cast_expression] = STATE(3228), - [sym_checked_expression] = STATE(3228), - [sym_invocation_expression] = STATE(3289), - [sym_switch_expression] = STATE(3228), - [sym_await_expression] = STATE(3289), - [sym_throw_expression] = STATE(3228), - [sym_element_access_expression] = STATE(2609), - [sym_interpolated_string_expression] = STATE(3228), - [sym_member_access_expression] = STATE(2609), - [sym_object_creation_expression] = STATE(3289), - [sym_parenthesized_expression] = STATE(3289), - [sym__parenthesized_lvalue_expression] = STATE(2609), - [sym_lambda_expression] = STATE(3228), - [sym__lambda_expression_init] = STATE(7531), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3228), - [sym_anonymous_method_expression] = STATE(3228), - [sym_anonymous_object_creation_expression] = STATE(3228), - [sym_implicit_array_creation_expression] = STATE(3228), - [sym_implicit_object_creation_expression] = STATE(3228), - [sym_implicit_stackalloc_expression] = STATE(3228), - [sym_initializer_expression] = STATE(3228), - [sym_default_expression] = STATE(3228), - [sym_with_expression] = STATE(3228), - [sym_sizeof_expression] = STATE(3228), - [sym_typeof_expression] = STATE(3228), - [sym_makeref_expression] = STATE(3228), - [sym_ref_expression] = STATE(3228), - [sym_reftype_expression] = STATE(3228), - [sym_refvalue_expression] = STATE(3228), - [sym_stackalloc_expression] = STATE(3228), - [sym_range_expression] = STATE(3228), - [sym_tuple_expression] = STATE(2609), - [sym_literal] = STATE(3228), - [sym_character_literal] = STATE(3278), - [sym_string_literal] = STATE(3278), - [sym_raw_string_literal] = STATE(3278), - [sym_boolean_literal] = STATE(3278), - [sym_identifier] = STATE(2267), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3228), - [sym_preproc_if_in_attribute_list] = STATE(5576), - [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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3396), - [sym__identifier_token] = ACTIONS(25), - [anon_sym_alias] = ACTIONS(29), - [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1153), - [anon_sym_LPAREN] = ACTIONS(1525), - [anon_sym_ref] = ACTIONS(1527), - [anon_sym_LBRACE] = ACTIONS(1159), - [anon_sym_delegate] = ACTIONS(1161), - [anon_sym_async] = ACTIONS(1047), - [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1529), - [anon_sym_where] = ACTIONS(29), - [anon_sym_notnull] = ACTIONS(29), - [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1167), - [anon_sym_BANG] = ACTIONS(1533), - [anon_sym_TILDE] = ACTIONS(1533), - [anon_sym_PLUS_PLUS] = ACTIONS(1533), - [anon_sym_DASH_DASH] = ACTIONS(1533), - [anon_sym_true] = ACTIONS(1173), - [anon_sym_false] = ACTIONS(1173), - [anon_sym_PLUS] = ACTIONS(1531), - [anon_sym_DASH] = ACTIONS(1531), - [anon_sym_STAR] = ACTIONS(1535), - [anon_sym_CARET] = ACTIONS(1533), - [anon_sym_AMP] = ACTIONS(1533), - [anon_sym_this] = ACTIONS(1177), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1179), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1181), - [anon_sym_unchecked] = ACTIONS(1167), - [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1183), - [anon_sym_throw] = ACTIONS(1537), - [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1539), - [anon_sym_DOT_DOT] = ACTIONS(1541), - [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(1191), - [anon_sym_sizeof] = ACTIONS(1193), - [anon_sym_typeof] = ACTIONS(1195), - [anon_sym___makeref] = ACTIONS(1197), - [anon_sym___reftype] = ACTIONS(1199), - [anon_sym___refvalue] = ACTIONS(1201), - [sym_null_literal] = ACTIONS(1203), - [anon_sym_SQUOTE] = ACTIONS(1205), - [sym_integer_literal] = ACTIONS(1203), - [sym_real_literal] = ACTIONS(1207), - [anon_sym_DQUOTE] = ACTIONS(1209), - [sym_verbatim_string_literal] = ACTIONS(1207), - [aux_sym_preproc_if_token1] = ACTIONS(1211), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1213), - [sym_interpolation_verbatim_start] = ACTIONS(1215), - [sym_interpolation_raw_start] = ACTIONS(1217), - [sym_raw_string_start] = ACTIONS(1219), - }, - [1852] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2610), - [sym__name] = STATE(5886), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2319), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(4473), - [sym_non_lvalue_expression] = STATE(3277), - [sym_lvalue_expression] = STATE(3347), - [sym__expression_statement_expression] = STATE(3228), - [sym_assignment_expression] = STATE(3289), - [sym_binary_expression] = STATE(3228), - [sym_postfix_unary_expression] = STATE(3289), - [sym_prefix_unary_expression] = STATE(3289), - [sym__pointer_indirection_expression] = STATE(2609), - [sym_query_expression] = STATE(3228), - [sym_from_clause] = STATE(6150), - [sym_conditional_expression] = STATE(3228), - [sym_conditional_access_expression] = STATE(3228), - [sym_as_expression] = STATE(3228), - [sym_is_expression] = STATE(3228), - [sym_is_pattern_expression] = STATE(3228), - [sym_cast_expression] = STATE(3228), - [sym_checked_expression] = STATE(3228), - [sym_invocation_expression] = STATE(3289), - [sym_switch_expression] = STATE(3228), - [sym_await_expression] = STATE(3289), - [sym_throw_expression] = STATE(3228), - [sym_element_access_expression] = STATE(2609), - [sym_interpolated_string_expression] = STATE(3228), - [sym_member_access_expression] = STATE(2609), - [sym_object_creation_expression] = STATE(3289), - [sym_parenthesized_expression] = STATE(3289), - [sym__parenthesized_lvalue_expression] = STATE(2609), - [sym_lambda_expression] = STATE(3228), - [sym__lambda_expression_init] = STATE(7531), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3228), - [sym_anonymous_method_expression] = STATE(3228), - [sym_anonymous_object_creation_expression] = STATE(3228), - [sym_implicit_array_creation_expression] = STATE(3228), - [sym_implicit_object_creation_expression] = STATE(3228), - [sym_implicit_stackalloc_expression] = STATE(3228), - [sym_initializer_expression] = STATE(3228), - [sym_default_expression] = STATE(3228), - [sym_with_expression] = STATE(3228), - [sym_sizeof_expression] = STATE(3228), - [sym_typeof_expression] = STATE(3228), - [sym_makeref_expression] = STATE(3228), - [sym_ref_expression] = STATE(3228), - [sym_reftype_expression] = STATE(3228), - [sym_refvalue_expression] = STATE(3228), - [sym_stackalloc_expression] = STATE(3228), - [sym_range_expression] = STATE(3228), - [sym_tuple_expression] = STATE(2609), - [sym_literal] = STATE(3228), - [sym_character_literal] = STATE(3278), - [sym_string_literal] = STATE(3278), - [sym_raw_string_literal] = STATE(3278), - [sym_boolean_literal] = STATE(3278), - [sym_identifier] = STATE(2267), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3228), - [sym_preproc_if_in_attribute_list] = STATE(5576), - [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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3396), - [sym__identifier_token] = ACTIONS(25), - [anon_sym_alias] = ACTIONS(29), - [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1153), - [anon_sym_LPAREN] = ACTIONS(1525), - [anon_sym_ref] = ACTIONS(1527), - [anon_sym_LBRACE] = ACTIONS(1159), - [anon_sym_delegate] = ACTIONS(1161), - [anon_sym_async] = ACTIONS(1047), - [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1529), - [anon_sym_where] = ACTIONS(29), - [anon_sym_notnull] = ACTIONS(29), - [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1167), - [anon_sym_BANG] = ACTIONS(1533), - [anon_sym_TILDE] = ACTIONS(1533), - [anon_sym_PLUS_PLUS] = ACTIONS(1533), - [anon_sym_DASH_DASH] = ACTIONS(1533), - [anon_sym_true] = ACTIONS(1173), - [anon_sym_false] = ACTIONS(1173), - [anon_sym_PLUS] = ACTIONS(1531), - [anon_sym_DASH] = ACTIONS(1531), - [anon_sym_STAR] = ACTIONS(1535), - [anon_sym_CARET] = ACTIONS(1533), - [anon_sym_AMP] = ACTIONS(1533), - [anon_sym_this] = ACTIONS(1177), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1179), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1181), - [anon_sym_unchecked] = ACTIONS(1167), - [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1183), - [anon_sym_throw] = ACTIONS(1537), - [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1539), - [anon_sym_DOT_DOT] = ACTIONS(1541), - [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(1191), - [anon_sym_sizeof] = ACTIONS(1193), - [anon_sym_typeof] = ACTIONS(1195), - [anon_sym___makeref] = ACTIONS(1197), - [anon_sym___reftype] = ACTIONS(1199), - [anon_sym___refvalue] = ACTIONS(1201), - [sym_null_literal] = ACTIONS(1203), - [anon_sym_SQUOTE] = ACTIONS(1205), - [sym_integer_literal] = ACTIONS(1203), - [sym_real_literal] = ACTIONS(1207), - [anon_sym_DQUOTE] = ACTIONS(1209), - [sym_verbatim_string_literal] = ACTIONS(1207), - [aux_sym_preproc_if_token1] = ACTIONS(1211), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1213), - [sym_interpolation_verbatim_start] = ACTIONS(1215), - [sym_interpolation_raw_start] = ACTIONS(1217), - [sym_raw_string_start] = ACTIONS(1219), - }, - [1853] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(5890), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2375), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(5465), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3656), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3080), - [sym_postfix_unary_expression] = STATE(3111), - [sym_prefix_unary_expression] = STATE(3111), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6157), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3080), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3111), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3080), - [sym_member_access_expression] = STATE(2484), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3111), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7362), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(3080), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3080), - [sym_typeof_expression] = STATE(3080), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2484), - [sym_literal] = STATE(3080), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), - [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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [1878] = { + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(5893), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2361), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(5434), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3673), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3102), + [sym_postfix_unary_expression] = STATE(3079), + [sym_prefix_unary_expression] = STATE(3079), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6159), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3102), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3079), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3102), + [sym_member_access_expression] = STATE(2472), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3079), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7363), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(3102), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3102), + [sym_typeof_expression] = STATE(3102), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2472), + [sym_literal] = STATE(3102), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), + [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(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1481), - [anon_sym_LPAREN] = ACTIONS(2177), - [anon_sym_ref] = ACTIONS(2179), - [anon_sym_LBRACE] = ACTIONS(1487), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1479), + [anon_sym_LPAREN] = ACTIONS(2237), + [anon_sym_ref] = ACTIONS(2239), + [anon_sym_LBRACE] = ACTIONS(1481), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(2181), + [anon_sym_new] = ACTIONS(2241), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1067), - [anon_sym_BANG] = ACTIONS(2185), - [anon_sym_TILDE] = ACTIONS(2185), - [anon_sym_PLUS_PLUS] = ACTIONS(2185), - [anon_sym_DASH_DASH] = ACTIONS(2185), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(2245), + [anon_sym_TILDE] = ACTIONS(2245), + [anon_sym_PLUS_PLUS] = ACTIONS(2245), + [anon_sym_DASH_DASH] = ACTIONS(2245), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(2183), - [anon_sym_DASH] = ACTIONS(2183), - [anon_sym_STAR] = ACTIONS(2187), - [anon_sym_CARET] = ACTIONS(2185), - [anon_sym_AMP] = ACTIONS(2185), + [anon_sym_PLUS] = ACTIONS(2243), + [anon_sym_DASH] = ACTIONS(2243), + [anon_sym_STAR] = ACTIONS(2247), + [anon_sym_CARET] = ACTIONS(2245), + [anon_sym_AMP] = ACTIONS(2245), [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(1067), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(2189), + [anon_sym_throw] = ACTIONS(2249), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2191), - [anon_sym_DOT_DOT] = ACTIONS(2193), + [anon_sym_await] = ACTIONS(2251), + [anon_sym_DOT_DOT] = ACTIONS(2253), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -355081,7 +359192,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(1089), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -355097,135 +359208,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), }, - [1854] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(5910), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2247), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(5138), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3379), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3080), - [sym_postfix_unary_expression] = STATE(3111), - [sym_prefix_unary_expression] = STATE(3111), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6154), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3080), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3111), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3080), - [sym_member_access_expression] = STATE(2484), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3111), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7575), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(3080), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3080), - [sym_typeof_expression] = STATE(3080), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2484), - [sym_literal] = STATE(3080), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), - [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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [1879] = { + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(5873), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2238), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(5437), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3468), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3102), + [sym_postfix_unary_expression] = STATE(3079), + [sym_prefix_unary_expression] = STATE(3079), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6134), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3102), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3079), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3102), + [sym_member_access_expression] = STATE(2472), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3079), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7309), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(3102), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3102), + [sym_typeof_expression] = STATE(3102), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2472), + [sym_literal] = STATE(3102), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), + [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(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1481), - [anon_sym_LPAREN] = ACTIONS(895), - [anon_sym_ref] = ACTIONS(897), - [anon_sym_LBRACE] = ACTIONS(1487), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1479), + [anon_sym_LPAREN] = ACTIONS(659), + [anon_sym_ref] = ACTIONS(663), + [anon_sym_LBRACE] = ACTIONS(1481), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1061), + [anon_sym_new] = ACTIONS(1059), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1067), - [anon_sym_BANG] = ACTIONS(1495), - [anon_sym_TILDE] = ACTIONS(1495), - [anon_sym_PLUS_PLUS] = ACTIONS(1495), - [anon_sym_DASH_DASH] = ACTIONS(1495), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(1485), + [anon_sym_TILDE] = ACTIONS(1485), + [anon_sym_PLUS_PLUS] = ACTIONS(1485), + [anon_sym_DASH_DASH] = ACTIONS(1485), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1493), - [anon_sym_DASH] = ACTIONS(1493), - [anon_sym_STAR] = ACTIONS(905), - [anon_sym_CARET] = ACTIONS(1495), - [anon_sym_AMP] = ACTIONS(1495), + [anon_sym_PLUS] = ACTIONS(1483), + [anon_sym_DASH] = ACTIONS(1483), + [anon_sym_STAR] = ACTIONS(683), + [anon_sym_CARET] = ACTIONS(1485), + [anon_sym_AMP] = ACTIONS(1485), [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(1067), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1079), + [anon_sym_throw] = ACTIONS(1077), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1081), - [anon_sym_DOT_DOT] = ACTIONS(911), + [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), @@ -355250,7 +359361,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(1089), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -355266,135 +359377,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), }, - [1855] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(5910), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2247), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(5474), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3379), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3080), - [sym_postfix_unary_expression] = STATE(3111), - [sym_prefix_unary_expression] = STATE(3111), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6154), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3080), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3111), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3080), - [sym_member_access_expression] = STATE(2484), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3111), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7575), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(3080), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3080), - [sym_typeof_expression] = STATE(3080), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2484), - [sym_literal] = STATE(3080), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), - [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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [1880] = { + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(5893), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2361), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(5459), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3673), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3102), + [sym_postfix_unary_expression] = STATE(3079), + [sym_prefix_unary_expression] = STATE(3079), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6159), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3102), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3079), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3102), + [sym_member_access_expression] = STATE(2472), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3079), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7363), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(3102), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3102), + [sym_typeof_expression] = STATE(3102), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2472), + [sym_literal] = STATE(3102), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), + [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(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1481), - [anon_sym_LPAREN] = ACTIONS(895), - [anon_sym_ref] = ACTIONS(897), - [anon_sym_LBRACE] = ACTIONS(1487), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1479), + [anon_sym_LPAREN] = ACTIONS(2237), + [anon_sym_ref] = ACTIONS(2239), + [anon_sym_LBRACE] = ACTIONS(1481), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1061), + [anon_sym_new] = ACTIONS(2241), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1067), - [anon_sym_BANG] = ACTIONS(1495), - [anon_sym_TILDE] = ACTIONS(1495), - [anon_sym_PLUS_PLUS] = ACTIONS(1495), - [anon_sym_DASH_DASH] = ACTIONS(1495), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(2245), + [anon_sym_TILDE] = ACTIONS(2245), + [anon_sym_PLUS_PLUS] = ACTIONS(2245), + [anon_sym_DASH_DASH] = ACTIONS(2245), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1493), - [anon_sym_DASH] = ACTIONS(1493), - [anon_sym_STAR] = ACTIONS(905), - [anon_sym_CARET] = ACTIONS(1495), - [anon_sym_AMP] = ACTIONS(1495), + [anon_sym_PLUS] = ACTIONS(2243), + [anon_sym_DASH] = ACTIONS(2243), + [anon_sym_STAR] = ACTIONS(2247), + [anon_sym_CARET] = ACTIONS(2245), + [anon_sym_AMP] = ACTIONS(2245), [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(1067), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1079), + [anon_sym_throw] = ACTIONS(2249), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1081), - [anon_sym_DOT_DOT] = ACTIONS(911), + [anon_sym_await] = ACTIONS(2251), + [anon_sym_DOT_DOT] = ACTIONS(2253), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -355419,7 +359530,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(1089), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -355435,135 +359546,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), }, - [1856] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(5910), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2247), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(5139), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3379), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3080), - [sym_postfix_unary_expression] = STATE(3111), - [sym_prefix_unary_expression] = STATE(3111), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6154), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3080), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3111), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3080), - [sym_member_access_expression] = STATE(2484), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3111), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7575), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(3080), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3080), - [sym_typeof_expression] = STATE(3080), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2484), - [sym_literal] = STATE(3080), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), - [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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [1881] = { + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(5873), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2238), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(5470), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3468), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3102), + [sym_postfix_unary_expression] = STATE(3079), + [sym_prefix_unary_expression] = STATE(3079), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6134), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3102), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3079), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3102), + [sym_member_access_expression] = STATE(2472), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3079), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7309), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(3102), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3102), + [sym_typeof_expression] = STATE(3102), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2472), + [sym_literal] = STATE(3102), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), + [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(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1481), - [anon_sym_LPAREN] = ACTIONS(895), - [anon_sym_ref] = ACTIONS(897), - [anon_sym_LBRACE] = ACTIONS(1487), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1479), + [anon_sym_LPAREN] = ACTIONS(659), + [anon_sym_ref] = ACTIONS(663), + [anon_sym_LBRACE] = ACTIONS(1481), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1061), + [anon_sym_new] = ACTIONS(1059), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1067), - [anon_sym_BANG] = ACTIONS(1495), - [anon_sym_TILDE] = ACTIONS(1495), - [anon_sym_PLUS_PLUS] = ACTIONS(1495), - [anon_sym_DASH_DASH] = ACTIONS(1495), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(1485), + [anon_sym_TILDE] = ACTIONS(1485), + [anon_sym_PLUS_PLUS] = ACTIONS(1485), + [anon_sym_DASH_DASH] = ACTIONS(1485), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1493), - [anon_sym_DASH] = ACTIONS(1493), - [anon_sym_STAR] = ACTIONS(905), - [anon_sym_CARET] = ACTIONS(1495), - [anon_sym_AMP] = ACTIONS(1495), + [anon_sym_PLUS] = ACTIONS(1483), + [anon_sym_DASH] = ACTIONS(1483), + [anon_sym_STAR] = ACTIONS(683), + [anon_sym_CARET] = ACTIONS(1485), + [anon_sym_AMP] = ACTIONS(1485), [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(1067), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1079), + [anon_sym_throw] = ACTIONS(1077), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1081), - [anon_sym_DOT_DOT] = ACTIONS(911), + [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), @@ -355588,7 +359699,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(1089), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -355604,135 +359715,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), }, - [1857] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2610), - [sym__name] = STATE(5886), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2319), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(4445), - [sym_non_lvalue_expression] = STATE(3277), - [sym_lvalue_expression] = STATE(3347), - [sym__expression_statement_expression] = STATE(3228), - [sym_assignment_expression] = STATE(3289), - [sym_binary_expression] = STATE(3228), - [sym_postfix_unary_expression] = STATE(3289), - [sym_prefix_unary_expression] = STATE(3289), - [sym__pointer_indirection_expression] = STATE(2609), - [sym_query_expression] = STATE(3228), - [sym_from_clause] = STATE(6150), - [sym_conditional_expression] = STATE(3228), - [sym_conditional_access_expression] = STATE(3228), - [sym_as_expression] = STATE(3228), - [sym_is_expression] = STATE(3228), - [sym_is_pattern_expression] = STATE(3228), - [sym_cast_expression] = STATE(3228), - [sym_checked_expression] = STATE(3228), - [sym_invocation_expression] = STATE(3289), - [sym_switch_expression] = STATE(3228), - [sym_await_expression] = STATE(3289), - [sym_throw_expression] = STATE(3228), - [sym_element_access_expression] = STATE(2609), - [sym_interpolated_string_expression] = STATE(3228), - [sym_member_access_expression] = STATE(2609), - [sym_object_creation_expression] = STATE(3289), - [sym_parenthesized_expression] = STATE(3289), - [sym__parenthesized_lvalue_expression] = STATE(2609), - [sym_lambda_expression] = STATE(3228), - [sym__lambda_expression_init] = STATE(7531), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3228), - [sym_anonymous_method_expression] = STATE(3228), - [sym_anonymous_object_creation_expression] = STATE(3228), - [sym_implicit_array_creation_expression] = STATE(3228), - [sym_implicit_object_creation_expression] = STATE(3228), - [sym_implicit_stackalloc_expression] = STATE(3228), - [sym_initializer_expression] = STATE(3228), - [sym_default_expression] = STATE(3228), - [sym_with_expression] = STATE(3228), - [sym_sizeof_expression] = STATE(3228), - [sym_typeof_expression] = STATE(3228), - [sym_makeref_expression] = STATE(3228), - [sym_ref_expression] = STATE(3228), - [sym_reftype_expression] = STATE(3228), - [sym_refvalue_expression] = STATE(3228), - [sym_stackalloc_expression] = STATE(3228), - [sym_range_expression] = STATE(3228), - [sym_tuple_expression] = STATE(2609), - [sym_literal] = STATE(3228), - [sym_character_literal] = STATE(3278), - [sym_string_literal] = STATE(3278), - [sym_raw_string_literal] = STATE(3278), - [sym_boolean_literal] = STATE(3278), - [sym_identifier] = STATE(2267), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3228), - [sym_preproc_if_in_attribute_list] = STATE(5576), - [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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3396), + [1882] = { + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(5893), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2361), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(5488), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3673), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3102), + [sym_postfix_unary_expression] = STATE(3079), + [sym_prefix_unary_expression] = STATE(3079), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6159), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3102), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3079), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3102), + [sym_member_access_expression] = STATE(2472), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3079), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7363), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(3102), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3102), + [sym_typeof_expression] = STATE(3102), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2472), + [sym_literal] = STATE(3102), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), + [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(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1153), - [anon_sym_LPAREN] = ACTIONS(1525), - [anon_sym_ref] = ACTIONS(1527), - [anon_sym_LBRACE] = ACTIONS(1159), - [anon_sym_delegate] = ACTIONS(1161), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1479), + [anon_sym_LPAREN] = ACTIONS(2237), + [anon_sym_ref] = ACTIONS(2239), + [anon_sym_LBRACE] = ACTIONS(1481), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1529), + [anon_sym_new] = ACTIONS(2241), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1167), - [anon_sym_BANG] = ACTIONS(1533), - [anon_sym_TILDE] = ACTIONS(1533), - [anon_sym_PLUS_PLUS] = ACTIONS(1533), - [anon_sym_DASH_DASH] = ACTIONS(1533), - [anon_sym_true] = ACTIONS(1173), - [anon_sym_false] = ACTIONS(1173), - [anon_sym_PLUS] = ACTIONS(1531), - [anon_sym_DASH] = ACTIONS(1531), - [anon_sym_STAR] = ACTIONS(1535), - [anon_sym_CARET] = ACTIONS(1533), - [anon_sym_AMP] = ACTIONS(1533), - [anon_sym_this] = ACTIONS(1177), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(2245), + [anon_sym_TILDE] = ACTIONS(2245), + [anon_sym_PLUS_PLUS] = ACTIONS(2245), + [anon_sym_DASH_DASH] = ACTIONS(2245), + [anon_sym_true] = ACTIONS(77), + [anon_sym_false] = ACTIONS(77), + [anon_sym_PLUS] = ACTIONS(2243), + [anon_sym_DASH] = ACTIONS(2243), + [anon_sym_STAR] = ACTIONS(2247), + [anon_sym_CARET] = ACTIONS(2245), + [anon_sym_AMP] = ACTIONS(2245), + [anon_sym_this] = ACTIONS(83), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1179), + [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1181), - [anon_sym_unchecked] = ACTIONS(1167), + [sym_predefined_type] = ACTIONS(91), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1183), - [anon_sym_throw] = ACTIONS(1537), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(2249), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1539), - [anon_sym_DOT_DOT] = ACTIONS(1541), + [anon_sym_await] = ACTIONS(2251), + [anon_sym_DOT_DOT] = ACTIONS(2253), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -355745,19 +359856,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1191), - [anon_sym_sizeof] = ACTIONS(1193), - [anon_sym_typeof] = ACTIONS(1195), - [anon_sym___makeref] = ACTIONS(1197), - [anon_sym___reftype] = ACTIONS(1199), - [anon_sym___refvalue] = ACTIONS(1201), - [sym_null_literal] = ACTIONS(1203), - [anon_sym_SQUOTE] = ACTIONS(1205), - [sym_integer_literal] = ACTIONS(1203), - [sym_real_literal] = ACTIONS(1207), - [anon_sym_DQUOTE] = ACTIONS(1209), - [sym_verbatim_string_literal] = ACTIONS(1207), - [aux_sym_preproc_if_token1] = ACTIONS(1211), + [anon_sym_stackalloc] = ACTIONS(127), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_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), @@ -355768,140 +359879,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(1213), - [sym_interpolation_verbatim_start] = ACTIONS(1215), - [sym_interpolation_raw_start] = ACTIONS(1217), - [sym_raw_string_start] = ACTIONS(1219), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [sym_interpolation_raw_start] = ACTIONS(155), + [sym_raw_string_start] = ACTIONS(157), }, - [1858] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(5890), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2375), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), + [1883] = { + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(5893), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2361), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), [sym_expression] = STATE(5501), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3656), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3080), - [sym_postfix_unary_expression] = STATE(3111), - [sym_prefix_unary_expression] = STATE(3111), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6157), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3080), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3111), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3080), - [sym_member_access_expression] = STATE(2484), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3111), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7362), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(3080), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3080), - [sym_typeof_expression] = STATE(3080), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2484), - [sym_literal] = STATE(3080), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), - [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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3673), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3102), + [sym_postfix_unary_expression] = STATE(3079), + [sym_prefix_unary_expression] = STATE(3079), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6159), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3102), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3079), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3102), + [sym_member_access_expression] = STATE(2472), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3079), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7363), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(3102), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3102), + [sym_typeof_expression] = STATE(3102), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2472), + [sym_literal] = STATE(3102), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), + [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(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1481), - [anon_sym_LPAREN] = ACTIONS(2177), - [anon_sym_ref] = ACTIONS(2179), - [anon_sym_LBRACE] = ACTIONS(1487), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1479), + [anon_sym_LPAREN] = ACTIONS(2237), + [anon_sym_ref] = ACTIONS(2239), + [anon_sym_LBRACE] = ACTIONS(1481), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(2181), + [anon_sym_new] = ACTIONS(2241), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1067), - [anon_sym_BANG] = ACTIONS(2185), - [anon_sym_TILDE] = ACTIONS(2185), - [anon_sym_PLUS_PLUS] = ACTIONS(2185), - [anon_sym_DASH_DASH] = ACTIONS(2185), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(2245), + [anon_sym_TILDE] = ACTIONS(2245), + [anon_sym_PLUS_PLUS] = ACTIONS(2245), + [anon_sym_DASH_DASH] = ACTIONS(2245), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(2183), - [anon_sym_DASH] = ACTIONS(2183), - [anon_sym_STAR] = ACTIONS(2187), - [anon_sym_CARET] = ACTIONS(2185), - [anon_sym_AMP] = ACTIONS(2185), + [anon_sym_PLUS] = ACTIONS(2243), + [anon_sym_DASH] = ACTIONS(2243), + [anon_sym_STAR] = ACTIONS(2247), + [anon_sym_CARET] = ACTIONS(2245), + [anon_sym_AMP] = ACTIONS(2245), [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(1067), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(2189), + [anon_sym_throw] = ACTIONS(2249), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2191), - [anon_sym_DOT_DOT] = ACTIONS(2193), + [anon_sym_await] = ACTIONS(2251), + [anon_sym_DOT_DOT] = ACTIONS(2253), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -355926,7 +360037,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(1089), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -355942,135 +360053,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), }, - [1859] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(5910), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2247), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(4630), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3379), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3080), - [sym_postfix_unary_expression] = STATE(3111), - [sym_prefix_unary_expression] = STATE(3111), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6154), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3080), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3111), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3080), - [sym_member_access_expression] = STATE(2484), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3111), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7575), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(3080), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3080), - [sym_typeof_expression] = STATE(3080), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2484), - [sym_literal] = STATE(3080), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), - [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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [1884] = { + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(5893), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2361), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(5508), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3673), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3102), + [sym_postfix_unary_expression] = STATE(3079), + [sym_prefix_unary_expression] = STATE(3079), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6159), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3102), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3079), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3102), + [sym_member_access_expression] = STATE(2472), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3079), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7363), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(3102), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3102), + [sym_typeof_expression] = STATE(3102), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2472), + [sym_literal] = STATE(3102), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), + [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(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1481), - [anon_sym_LPAREN] = ACTIONS(895), - [anon_sym_ref] = ACTIONS(897), - [anon_sym_LBRACE] = ACTIONS(1487), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1479), + [anon_sym_LPAREN] = ACTIONS(2237), + [anon_sym_ref] = ACTIONS(2239), + [anon_sym_LBRACE] = ACTIONS(1481), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1061), + [anon_sym_new] = ACTIONS(2241), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1067), - [anon_sym_BANG] = ACTIONS(1495), - [anon_sym_TILDE] = ACTIONS(1495), - [anon_sym_PLUS_PLUS] = ACTIONS(1495), - [anon_sym_DASH_DASH] = ACTIONS(1495), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(2245), + [anon_sym_TILDE] = ACTIONS(2245), + [anon_sym_PLUS_PLUS] = ACTIONS(2245), + [anon_sym_DASH_DASH] = ACTIONS(2245), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1493), - [anon_sym_DASH] = ACTIONS(1493), - [anon_sym_STAR] = ACTIONS(905), - [anon_sym_CARET] = ACTIONS(1495), - [anon_sym_AMP] = ACTIONS(1495), + [anon_sym_PLUS] = ACTIONS(2243), + [anon_sym_DASH] = ACTIONS(2243), + [anon_sym_STAR] = ACTIONS(2247), + [anon_sym_CARET] = ACTIONS(2245), + [anon_sym_AMP] = ACTIONS(2245), [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(1067), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1079), + [anon_sym_throw] = ACTIONS(2249), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1081), - [anon_sym_DOT_DOT] = ACTIONS(911), + [anon_sym_await] = ACTIONS(2251), + [anon_sym_DOT_DOT] = ACTIONS(2253), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -356095,7 +360206,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(1089), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -356111,135 +360222,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), }, - [1860] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(5890), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2375), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(5563), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3656), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3080), - [sym_postfix_unary_expression] = STATE(3111), - [sym_prefix_unary_expression] = STATE(3111), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6157), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3080), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3111), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3080), - [sym_member_access_expression] = STATE(2484), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3111), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7362), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(3080), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3080), - [sym_typeof_expression] = STATE(3080), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2484), - [sym_literal] = STATE(3080), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), - [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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [1885] = { + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(5893), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2361), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(5516), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3673), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3102), + [sym_postfix_unary_expression] = STATE(3079), + [sym_prefix_unary_expression] = STATE(3079), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6159), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3102), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3079), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3102), + [sym_member_access_expression] = STATE(2472), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3079), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7363), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(3102), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3102), + [sym_typeof_expression] = STATE(3102), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2472), + [sym_literal] = STATE(3102), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), + [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(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1481), - [anon_sym_LPAREN] = ACTIONS(2177), - [anon_sym_ref] = ACTIONS(2179), - [anon_sym_LBRACE] = ACTIONS(1487), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1479), + [anon_sym_LPAREN] = ACTIONS(2237), + [anon_sym_ref] = ACTIONS(2239), + [anon_sym_LBRACE] = ACTIONS(1481), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(2181), + [anon_sym_new] = ACTIONS(2241), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1067), - [anon_sym_BANG] = ACTIONS(2185), - [anon_sym_TILDE] = ACTIONS(2185), - [anon_sym_PLUS_PLUS] = ACTIONS(2185), - [anon_sym_DASH_DASH] = ACTIONS(2185), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(2245), + [anon_sym_TILDE] = ACTIONS(2245), + [anon_sym_PLUS_PLUS] = ACTIONS(2245), + [anon_sym_DASH_DASH] = ACTIONS(2245), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(2183), - [anon_sym_DASH] = ACTIONS(2183), - [anon_sym_STAR] = ACTIONS(2187), - [anon_sym_CARET] = ACTIONS(2185), - [anon_sym_AMP] = ACTIONS(2185), + [anon_sym_PLUS] = ACTIONS(2243), + [anon_sym_DASH] = ACTIONS(2243), + [anon_sym_STAR] = ACTIONS(2247), + [anon_sym_CARET] = ACTIONS(2245), + [anon_sym_AMP] = ACTIONS(2245), [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(1067), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(2189), + [anon_sym_throw] = ACTIONS(2249), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2191), - [anon_sym_DOT_DOT] = ACTIONS(2193), + [anon_sym_await] = ACTIONS(2251), + [anon_sym_DOT_DOT] = ACTIONS(2253), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -356264,7 +360375,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(1089), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -356280,135 +360391,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), }, - [1861] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2610), - [sym__name] = STATE(5886), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2319), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(4446), - [sym_non_lvalue_expression] = STATE(3277), - [sym_lvalue_expression] = STATE(3347), - [sym__expression_statement_expression] = STATE(3228), - [sym_assignment_expression] = STATE(3289), - [sym_binary_expression] = STATE(3228), - [sym_postfix_unary_expression] = STATE(3289), - [sym_prefix_unary_expression] = STATE(3289), - [sym__pointer_indirection_expression] = STATE(2609), - [sym_query_expression] = STATE(3228), - [sym_from_clause] = STATE(6150), - [sym_conditional_expression] = STATE(3228), - [sym_conditional_access_expression] = STATE(3228), - [sym_as_expression] = STATE(3228), - [sym_is_expression] = STATE(3228), - [sym_is_pattern_expression] = STATE(3228), - [sym_cast_expression] = STATE(3228), - [sym_checked_expression] = STATE(3228), - [sym_invocation_expression] = STATE(3289), - [sym_switch_expression] = STATE(3228), - [sym_await_expression] = STATE(3289), - [sym_throw_expression] = STATE(3228), - [sym_element_access_expression] = STATE(2609), - [sym_interpolated_string_expression] = STATE(3228), - [sym_member_access_expression] = STATE(2609), - [sym_object_creation_expression] = STATE(3289), - [sym_parenthesized_expression] = STATE(3289), - [sym__parenthesized_lvalue_expression] = STATE(2609), - [sym_lambda_expression] = STATE(3228), - [sym__lambda_expression_init] = STATE(7531), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3228), - [sym_anonymous_method_expression] = STATE(3228), - [sym_anonymous_object_creation_expression] = STATE(3228), - [sym_implicit_array_creation_expression] = STATE(3228), - [sym_implicit_object_creation_expression] = STATE(3228), - [sym_implicit_stackalloc_expression] = STATE(3228), - [sym_initializer_expression] = STATE(3228), - [sym_default_expression] = STATE(3228), - [sym_with_expression] = STATE(3228), - [sym_sizeof_expression] = STATE(3228), - [sym_typeof_expression] = STATE(3228), - [sym_makeref_expression] = STATE(3228), - [sym_ref_expression] = STATE(3228), - [sym_reftype_expression] = STATE(3228), - [sym_refvalue_expression] = STATE(3228), - [sym_stackalloc_expression] = STATE(3228), - [sym_range_expression] = STATE(3228), - [sym_tuple_expression] = STATE(2609), - [sym_literal] = STATE(3228), - [sym_character_literal] = STATE(3278), - [sym_string_literal] = STATE(3278), - [sym_raw_string_literal] = STATE(3278), - [sym_boolean_literal] = STATE(3278), - [sym_identifier] = STATE(2267), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3228), - [sym_preproc_if_in_attribute_list] = STATE(5576), - [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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3396), + [1886] = { + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(5893), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2361), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(5521), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3673), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3102), + [sym_postfix_unary_expression] = STATE(3079), + [sym_prefix_unary_expression] = STATE(3079), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6159), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3102), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3079), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3102), + [sym_member_access_expression] = STATE(2472), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3079), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7363), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(3102), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3102), + [sym_typeof_expression] = STATE(3102), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2472), + [sym_literal] = STATE(3102), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), + [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(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1153), - [anon_sym_LPAREN] = ACTIONS(1525), - [anon_sym_ref] = ACTIONS(1527), - [anon_sym_LBRACE] = ACTIONS(1159), - [anon_sym_delegate] = ACTIONS(1161), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1479), + [anon_sym_LPAREN] = ACTIONS(2237), + [anon_sym_ref] = ACTIONS(2239), + [anon_sym_LBRACE] = ACTIONS(1481), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1529), + [anon_sym_new] = ACTIONS(2241), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1167), - [anon_sym_BANG] = ACTIONS(1533), - [anon_sym_TILDE] = ACTIONS(1533), - [anon_sym_PLUS_PLUS] = ACTIONS(1533), - [anon_sym_DASH_DASH] = ACTIONS(1533), - [anon_sym_true] = ACTIONS(1173), - [anon_sym_false] = ACTIONS(1173), - [anon_sym_PLUS] = ACTIONS(1531), - [anon_sym_DASH] = ACTIONS(1531), - [anon_sym_STAR] = ACTIONS(1535), - [anon_sym_CARET] = ACTIONS(1533), - [anon_sym_AMP] = ACTIONS(1533), - [anon_sym_this] = ACTIONS(1177), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(2245), + [anon_sym_TILDE] = ACTIONS(2245), + [anon_sym_PLUS_PLUS] = ACTIONS(2245), + [anon_sym_DASH_DASH] = ACTIONS(2245), + [anon_sym_true] = ACTIONS(77), + [anon_sym_false] = ACTIONS(77), + [anon_sym_PLUS] = ACTIONS(2243), + [anon_sym_DASH] = ACTIONS(2243), + [anon_sym_STAR] = ACTIONS(2247), + [anon_sym_CARET] = ACTIONS(2245), + [anon_sym_AMP] = ACTIONS(2245), + [anon_sym_this] = ACTIONS(83), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1179), + [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1181), - [anon_sym_unchecked] = ACTIONS(1167), + [sym_predefined_type] = ACTIONS(91), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1183), - [anon_sym_throw] = ACTIONS(1537), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(2249), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1539), - [anon_sym_DOT_DOT] = ACTIONS(1541), + [anon_sym_await] = ACTIONS(2251), + [anon_sym_DOT_DOT] = ACTIONS(2253), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -356421,19 +360532,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1191), - [anon_sym_sizeof] = ACTIONS(1193), - [anon_sym_typeof] = ACTIONS(1195), - [anon_sym___makeref] = ACTIONS(1197), - [anon_sym___reftype] = ACTIONS(1199), - [anon_sym___refvalue] = ACTIONS(1201), - [sym_null_literal] = ACTIONS(1203), - [anon_sym_SQUOTE] = ACTIONS(1205), - [sym_integer_literal] = ACTIONS(1203), - [sym_real_literal] = ACTIONS(1207), - [anon_sym_DQUOTE] = ACTIONS(1209), - [sym_verbatim_string_literal] = ACTIONS(1207), - [aux_sym_preproc_if_token1] = ACTIONS(1211), + [anon_sym_stackalloc] = ACTIONS(127), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_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), @@ -356444,140 +360555,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(1213), - [sym_interpolation_verbatim_start] = ACTIONS(1215), - [sym_interpolation_raw_start] = ACTIONS(1217), - [sym_raw_string_start] = ACTIONS(1219), + [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(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(5890), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2375), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(5520), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3656), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3080), - [sym_postfix_unary_expression] = STATE(3111), - [sym_prefix_unary_expression] = STATE(3111), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6157), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3080), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3111), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3080), - [sym_member_access_expression] = STATE(2484), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3111), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7362), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(3080), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3080), - [sym_typeof_expression] = STATE(3080), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2484), - [sym_literal] = STATE(3080), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), - [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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [1887] = { + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(5893), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2361), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(5527), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3673), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3102), + [sym_postfix_unary_expression] = STATE(3079), + [sym_prefix_unary_expression] = STATE(3079), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6159), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3102), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3079), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3102), + [sym_member_access_expression] = STATE(2472), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3079), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7363), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(3102), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3102), + [sym_typeof_expression] = STATE(3102), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2472), + [sym_literal] = STATE(3102), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), + [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(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1481), - [anon_sym_LPAREN] = ACTIONS(2177), - [anon_sym_ref] = ACTIONS(2179), - [anon_sym_LBRACE] = ACTIONS(1487), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1479), + [anon_sym_LPAREN] = ACTIONS(2237), + [anon_sym_ref] = ACTIONS(2239), + [anon_sym_LBRACE] = ACTIONS(1481), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(2181), + [anon_sym_new] = ACTIONS(2241), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1067), - [anon_sym_BANG] = ACTIONS(2185), - [anon_sym_TILDE] = ACTIONS(2185), - [anon_sym_PLUS_PLUS] = ACTIONS(2185), - [anon_sym_DASH_DASH] = ACTIONS(2185), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(2245), + [anon_sym_TILDE] = ACTIONS(2245), + [anon_sym_PLUS_PLUS] = ACTIONS(2245), + [anon_sym_DASH_DASH] = ACTIONS(2245), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(2183), - [anon_sym_DASH] = ACTIONS(2183), - [anon_sym_STAR] = ACTIONS(2187), - [anon_sym_CARET] = ACTIONS(2185), - [anon_sym_AMP] = ACTIONS(2185), + [anon_sym_PLUS] = ACTIONS(2243), + [anon_sym_DASH] = ACTIONS(2243), + [anon_sym_STAR] = ACTIONS(2247), + [anon_sym_CARET] = ACTIONS(2245), + [anon_sym_AMP] = ACTIONS(2245), [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(1067), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(2189), + [anon_sym_throw] = ACTIONS(2249), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2191), - [anon_sym_DOT_DOT] = ACTIONS(2193), + [anon_sym_await] = ACTIONS(2251), + [anon_sym_DOT_DOT] = ACTIONS(2253), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -356602,7 +360713,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(1089), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -356618,135 +360729,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), }, - [1863] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(5910), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2247), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(5350), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3379), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3080), - [sym_postfix_unary_expression] = STATE(3111), - [sym_prefix_unary_expression] = STATE(3111), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6154), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3080), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3111), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3080), - [sym_member_access_expression] = STATE(2484), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3111), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7575), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(3080), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3080), - [sym_typeof_expression] = STATE(3080), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2484), - [sym_literal] = STATE(3080), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), - [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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [1888] = { + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(5893), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2361), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(5529), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3673), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3102), + [sym_postfix_unary_expression] = STATE(3079), + [sym_prefix_unary_expression] = STATE(3079), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6159), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3102), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3079), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3102), + [sym_member_access_expression] = STATE(2472), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3079), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7363), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(3102), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3102), + [sym_typeof_expression] = STATE(3102), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2472), + [sym_literal] = STATE(3102), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), + [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(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1481), - [anon_sym_LPAREN] = ACTIONS(895), - [anon_sym_ref] = ACTIONS(897), - [anon_sym_LBRACE] = ACTIONS(1487), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1479), + [anon_sym_LPAREN] = ACTIONS(2237), + [anon_sym_ref] = ACTIONS(2239), + [anon_sym_LBRACE] = ACTIONS(1481), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1061), + [anon_sym_new] = ACTIONS(2241), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1067), - [anon_sym_BANG] = ACTIONS(1495), - [anon_sym_TILDE] = ACTIONS(1495), - [anon_sym_PLUS_PLUS] = ACTIONS(1495), - [anon_sym_DASH_DASH] = ACTIONS(1495), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(2245), + [anon_sym_TILDE] = ACTIONS(2245), + [anon_sym_PLUS_PLUS] = ACTIONS(2245), + [anon_sym_DASH_DASH] = ACTIONS(2245), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1493), - [anon_sym_DASH] = ACTIONS(1493), - [anon_sym_STAR] = ACTIONS(905), - [anon_sym_CARET] = ACTIONS(1495), - [anon_sym_AMP] = ACTIONS(1495), + [anon_sym_PLUS] = ACTIONS(2243), + [anon_sym_DASH] = ACTIONS(2243), + [anon_sym_STAR] = ACTIONS(2247), + [anon_sym_CARET] = ACTIONS(2245), + [anon_sym_AMP] = ACTIONS(2245), [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(1067), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1079), + [anon_sym_throw] = ACTIONS(2249), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1081), - [anon_sym_DOT_DOT] = ACTIONS(911), + [anon_sym_await] = ACTIONS(2251), + [anon_sym_DOT_DOT] = ACTIONS(2253), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -356771,7 +360882,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(1089), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -356787,135 +360898,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), }, - [1864] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2420), - [sym__name] = STATE(5887), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2197), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(4100), - [sym_non_lvalue_expression] = STATE(3066), - [sym_lvalue_expression] = STATE(3120), - [sym__expression_statement_expression] = STATE(3006), - [sym_assignment_expression] = STATE(3020), - [sym_binary_expression] = STATE(3006), - [sym_postfix_unary_expression] = STATE(3020), - [sym_prefix_unary_expression] = STATE(3020), - [sym__pointer_indirection_expression] = STATE(2423), - [sym_query_expression] = STATE(3006), - [sym_from_clause] = STATE(6152), - [sym_conditional_expression] = STATE(3006), - [sym_conditional_access_expression] = STATE(3006), - [sym_as_expression] = STATE(3006), - [sym_is_expression] = STATE(3006), - [sym_is_pattern_expression] = STATE(3006), - [sym_cast_expression] = STATE(3006), - [sym_checked_expression] = STATE(3006), - [sym_invocation_expression] = STATE(3020), - [sym_switch_expression] = STATE(3006), - [sym_await_expression] = STATE(3020), - [sym_throw_expression] = STATE(3006), - [sym_element_access_expression] = STATE(2423), - [sym_interpolated_string_expression] = STATE(3006), - [sym_member_access_expression] = STATE(2423), - [sym_object_creation_expression] = STATE(3020), - [sym_parenthesized_expression] = STATE(3020), - [sym__parenthesized_lvalue_expression] = STATE(2423), - [sym_lambda_expression] = STATE(3006), - [sym__lambda_expression_init] = STATE(7722), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3006), - [sym_anonymous_method_expression] = STATE(3006), - [sym_anonymous_object_creation_expression] = STATE(3006), - [sym_implicit_array_creation_expression] = STATE(3006), - [sym_implicit_object_creation_expression] = STATE(3006), - [sym_implicit_stackalloc_expression] = STATE(3006), - [sym_initializer_expression] = STATE(3006), - [sym_default_expression] = STATE(3006), - [sym_with_expression] = STATE(3006), - [sym_sizeof_expression] = STATE(3006), - [sym_typeof_expression] = STATE(3006), - [sym_makeref_expression] = STATE(3006), - [sym_ref_expression] = STATE(3006), - [sym_reftype_expression] = STATE(3006), - [sym_refvalue_expression] = STATE(3006), - [sym_stackalloc_expression] = STATE(3006), - [sym_range_expression] = STATE(3006), - [sym_tuple_expression] = STATE(2423), - [sym_literal] = STATE(3006), - [sym_character_literal] = STATE(3011), - [sym_string_literal] = STATE(3011), - [sym_raw_string_literal] = STATE(3011), - [sym_boolean_literal] = STATE(3011), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3006), - [sym_preproc_if_in_attribute_list] = STATE(5576), - [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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3440), + [1889] = { + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(5893), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2361), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(5597), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3673), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3102), + [sym_postfix_unary_expression] = STATE(3079), + [sym_prefix_unary_expression] = STATE(3079), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6159), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3102), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3079), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3102), + [sym_member_access_expression] = STATE(2472), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3079), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7363), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(3102), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3102), + [sym_typeof_expression] = STATE(3102), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2472), + [sym_literal] = STATE(3102), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), + [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(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1241), - [anon_sym_LPAREN] = ACTIONS(1243), - [anon_sym_ref] = ACTIONS(1245), - [anon_sym_LBRACE] = ACTIONS(1247), - [anon_sym_delegate] = ACTIONS(1249), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1479), + [anon_sym_LPAREN] = ACTIONS(2237), + [anon_sym_ref] = ACTIONS(2239), + [anon_sym_LBRACE] = ACTIONS(1481), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1251), + [anon_sym_new] = ACTIONS(2241), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1253), - [anon_sym_BANG] = ACTIONS(1257), - [anon_sym_TILDE] = ACTIONS(1257), - [anon_sym_PLUS_PLUS] = ACTIONS(1257), - [anon_sym_DASH_DASH] = ACTIONS(1257), - [anon_sym_true] = ACTIONS(1259), - [anon_sym_false] = ACTIONS(1259), - [anon_sym_PLUS] = ACTIONS(1255), - [anon_sym_DASH] = ACTIONS(1255), - [anon_sym_STAR] = ACTIONS(1261), - [anon_sym_CARET] = ACTIONS(1257), - [anon_sym_AMP] = ACTIONS(1257), - [anon_sym_this] = ACTIONS(1263), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(2245), + [anon_sym_TILDE] = ACTIONS(2245), + [anon_sym_PLUS_PLUS] = ACTIONS(2245), + [anon_sym_DASH_DASH] = ACTIONS(2245), + [anon_sym_true] = ACTIONS(77), + [anon_sym_false] = ACTIONS(77), + [anon_sym_PLUS] = ACTIONS(2243), + [anon_sym_DASH] = ACTIONS(2243), + [anon_sym_STAR] = ACTIONS(2247), + [anon_sym_CARET] = ACTIONS(2245), + [anon_sym_AMP] = ACTIONS(2245), + [anon_sym_this] = ACTIONS(83), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1265), + [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1267), - [anon_sym_unchecked] = ACTIONS(1253), + [sym_predefined_type] = ACTIONS(91), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1269), - [anon_sym_throw] = ACTIONS(1271), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(2249), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1273), - [anon_sym_DOT_DOT] = ACTIONS(1275), + [anon_sym_await] = ACTIONS(2251), + [anon_sym_DOT_DOT] = ACTIONS(2253), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -356928,19 +361039,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1277), - [anon_sym_sizeof] = ACTIONS(1279), - [anon_sym_typeof] = ACTIONS(1281), - [anon_sym___makeref] = ACTIONS(1283), - [anon_sym___reftype] = ACTIONS(1285), - [anon_sym___refvalue] = ACTIONS(1287), - [sym_null_literal] = ACTIONS(1289), - [anon_sym_SQUOTE] = ACTIONS(1291), - [sym_integer_literal] = ACTIONS(1289), - [sym_real_literal] = ACTIONS(1293), - [anon_sym_DQUOTE] = ACTIONS(1295), - [sym_verbatim_string_literal] = ACTIONS(1293), - [aux_sym_preproc_if_token1] = ACTIONS(1297), + [anon_sym_stackalloc] = ACTIONS(127), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_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), @@ -356951,140 +361062,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(1299), - [sym_interpolation_verbatim_start] = ACTIONS(1301), - [sym_interpolation_raw_start] = ACTIONS(1303), - [sym_raw_string_start] = ACTIONS(1305), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [sym_interpolation_raw_start] = ACTIONS(155), + [sym_raw_string_start] = ACTIONS(157), }, - [1865] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2610), - [sym__name] = STATE(5886), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2319), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(4447), - [sym_non_lvalue_expression] = STATE(3277), - [sym_lvalue_expression] = STATE(3347), - [sym__expression_statement_expression] = STATE(3228), - [sym_assignment_expression] = STATE(3289), - [sym_binary_expression] = STATE(3228), - [sym_postfix_unary_expression] = STATE(3289), - [sym_prefix_unary_expression] = STATE(3289), - [sym__pointer_indirection_expression] = STATE(2609), - [sym_query_expression] = STATE(3228), - [sym_from_clause] = STATE(6150), - [sym_conditional_expression] = STATE(3228), - [sym_conditional_access_expression] = STATE(3228), - [sym_as_expression] = STATE(3228), - [sym_is_expression] = STATE(3228), - [sym_is_pattern_expression] = STATE(3228), - [sym_cast_expression] = STATE(3228), - [sym_checked_expression] = STATE(3228), - [sym_invocation_expression] = STATE(3289), - [sym_switch_expression] = STATE(3228), - [sym_await_expression] = STATE(3289), - [sym_throw_expression] = STATE(3228), - [sym_element_access_expression] = STATE(2609), - [sym_interpolated_string_expression] = STATE(3228), - [sym_member_access_expression] = STATE(2609), - [sym_object_creation_expression] = STATE(3289), - [sym_parenthesized_expression] = STATE(3289), - [sym__parenthesized_lvalue_expression] = STATE(2609), - [sym_lambda_expression] = STATE(3228), - [sym__lambda_expression_init] = STATE(7531), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3228), - [sym_anonymous_method_expression] = STATE(3228), - [sym_anonymous_object_creation_expression] = STATE(3228), - [sym_implicit_array_creation_expression] = STATE(3228), - [sym_implicit_object_creation_expression] = STATE(3228), - [sym_implicit_stackalloc_expression] = STATE(3228), - [sym_initializer_expression] = STATE(3228), - [sym_default_expression] = STATE(3228), - [sym_with_expression] = STATE(3228), - [sym_sizeof_expression] = STATE(3228), - [sym_typeof_expression] = STATE(3228), - [sym_makeref_expression] = STATE(3228), - [sym_ref_expression] = STATE(3228), - [sym_reftype_expression] = STATE(3228), - [sym_refvalue_expression] = STATE(3228), - [sym_stackalloc_expression] = STATE(3228), - [sym_range_expression] = STATE(3228), - [sym_tuple_expression] = STATE(2609), - [sym_literal] = STATE(3228), - [sym_character_literal] = STATE(3278), - [sym_string_literal] = STATE(3278), - [sym_raw_string_literal] = STATE(3278), - [sym_boolean_literal] = STATE(3278), - [sym_identifier] = STATE(2267), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3228), - [sym_preproc_if_in_attribute_list] = STATE(5576), - [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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3396), + [1890] = { + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(5893), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2361), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(5530), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3673), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3102), + [sym_postfix_unary_expression] = STATE(3079), + [sym_prefix_unary_expression] = STATE(3079), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6159), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3102), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3079), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3102), + [sym_member_access_expression] = STATE(2472), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3079), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7363), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(3102), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3102), + [sym_typeof_expression] = STATE(3102), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2472), + [sym_literal] = STATE(3102), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), + [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(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1153), - [anon_sym_LPAREN] = ACTIONS(1525), - [anon_sym_ref] = ACTIONS(1527), - [anon_sym_LBRACE] = ACTIONS(1159), - [anon_sym_delegate] = ACTIONS(1161), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1479), + [anon_sym_LPAREN] = ACTIONS(2237), + [anon_sym_ref] = ACTIONS(2239), + [anon_sym_LBRACE] = ACTIONS(1481), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1529), + [anon_sym_new] = ACTIONS(2241), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1167), - [anon_sym_BANG] = ACTIONS(1533), - [anon_sym_TILDE] = ACTIONS(1533), - [anon_sym_PLUS_PLUS] = ACTIONS(1533), - [anon_sym_DASH_DASH] = ACTIONS(1533), - [anon_sym_true] = ACTIONS(1173), - [anon_sym_false] = ACTIONS(1173), - [anon_sym_PLUS] = ACTIONS(1531), - [anon_sym_DASH] = ACTIONS(1531), - [anon_sym_STAR] = ACTIONS(1535), - [anon_sym_CARET] = ACTIONS(1533), - [anon_sym_AMP] = ACTIONS(1533), - [anon_sym_this] = ACTIONS(1177), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(2245), + [anon_sym_TILDE] = ACTIONS(2245), + [anon_sym_PLUS_PLUS] = ACTIONS(2245), + [anon_sym_DASH_DASH] = ACTIONS(2245), + [anon_sym_true] = ACTIONS(77), + [anon_sym_false] = ACTIONS(77), + [anon_sym_PLUS] = ACTIONS(2243), + [anon_sym_DASH] = ACTIONS(2243), + [anon_sym_STAR] = ACTIONS(2247), + [anon_sym_CARET] = ACTIONS(2245), + [anon_sym_AMP] = ACTIONS(2245), + [anon_sym_this] = ACTIONS(83), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1179), + [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1181), - [anon_sym_unchecked] = ACTIONS(1167), + [sym_predefined_type] = ACTIONS(91), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1183), - [anon_sym_throw] = ACTIONS(1537), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(2249), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1539), - [anon_sym_DOT_DOT] = ACTIONS(1541), + [anon_sym_await] = ACTIONS(2251), + [anon_sym_DOT_DOT] = ACTIONS(2253), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -357097,19 +361208,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1191), - [anon_sym_sizeof] = ACTIONS(1193), - [anon_sym_typeof] = ACTIONS(1195), - [anon_sym___makeref] = ACTIONS(1197), - [anon_sym___reftype] = ACTIONS(1199), - [anon_sym___refvalue] = ACTIONS(1201), - [sym_null_literal] = ACTIONS(1203), - [anon_sym_SQUOTE] = ACTIONS(1205), - [sym_integer_literal] = ACTIONS(1203), - [sym_real_literal] = ACTIONS(1207), - [anon_sym_DQUOTE] = ACTIONS(1209), - [sym_verbatim_string_literal] = ACTIONS(1207), - [aux_sym_preproc_if_token1] = ACTIONS(1211), + [anon_sym_stackalloc] = ACTIONS(127), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_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), @@ -357120,140 +361231,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(1213), - [sym_interpolation_verbatim_start] = ACTIONS(1215), - [sym_interpolation_raw_start] = ACTIONS(1217), - [sym_raw_string_start] = ACTIONS(1219), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [sym_interpolation_raw_start] = ACTIONS(155), + [sym_raw_string_start] = ACTIONS(157), }, - [1866] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(5890), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2375), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(5529), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3656), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3080), - [sym_postfix_unary_expression] = STATE(3111), - [sym_prefix_unary_expression] = STATE(3111), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6157), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3080), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3111), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3080), - [sym_member_access_expression] = STATE(2484), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3111), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7362), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(3080), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3080), - [sym_typeof_expression] = STATE(3080), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2484), - [sym_literal] = STATE(3080), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), - [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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [1891] = { + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(5893), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2361), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(5592), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3673), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3102), + [sym_postfix_unary_expression] = STATE(3079), + [sym_prefix_unary_expression] = STATE(3079), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6159), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3102), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3079), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3102), + [sym_member_access_expression] = STATE(2472), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3079), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7363), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(3102), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3102), + [sym_typeof_expression] = STATE(3102), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2472), + [sym_literal] = STATE(3102), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), + [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(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1481), - [anon_sym_LPAREN] = ACTIONS(2177), - [anon_sym_ref] = ACTIONS(2179), - [anon_sym_LBRACE] = ACTIONS(1487), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1479), + [anon_sym_LPAREN] = ACTIONS(2237), + [anon_sym_ref] = ACTIONS(2239), + [anon_sym_LBRACE] = ACTIONS(1481), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(2181), + [anon_sym_new] = ACTIONS(2241), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1067), - [anon_sym_BANG] = ACTIONS(2185), - [anon_sym_TILDE] = ACTIONS(2185), - [anon_sym_PLUS_PLUS] = ACTIONS(2185), - [anon_sym_DASH_DASH] = ACTIONS(2185), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(2245), + [anon_sym_TILDE] = ACTIONS(2245), + [anon_sym_PLUS_PLUS] = ACTIONS(2245), + [anon_sym_DASH_DASH] = ACTIONS(2245), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(2183), - [anon_sym_DASH] = ACTIONS(2183), - [anon_sym_STAR] = ACTIONS(2187), - [anon_sym_CARET] = ACTIONS(2185), - [anon_sym_AMP] = ACTIONS(2185), + [anon_sym_PLUS] = ACTIONS(2243), + [anon_sym_DASH] = ACTIONS(2243), + [anon_sym_STAR] = ACTIONS(2247), + [anon_sym_CARET] = ACTIONS(2245), + [anon_sym_AMP] = ACTIONS(2245), [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(1067), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(2189), + [anon_sym_throw] = ACTIONS(2249), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2191), - [anon_sym_DOT_DOT] = ACTIONS(2193), + [anon_sym_await] = ACTIONS(2251), + [anon_sym_DOT_DOT] = ACTIONS(2253), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -357278,7 +361389,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(1089), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -357294,135 +361405,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), }, - [1867] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2610), - [sym__name] = STATE(5886), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2319), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(4474), - [sym_non_lvalue_expression] = STATE(3277), - [sym_lvalue_expression] = STATE(3347), - [sym__expression_statement_expression] = STATE(3228), - [sym_assignment_expression] = STATE(3289), - [sym_binary_expression] = STATE(3228), - [sym_postfix_unary_expression] = STATE(3289), - [sym_prefix_unary_expression] = STATE(3289), - [sym__pointer_indirection_expression] = STATE(2609), - [sym_query_expression] = STATE(3228), - [sym_from_clause] = STATE(6150), - [sym_conditional_expression] = STATE(3228), - [sym_conditional_access_expression] = STATE(3228), - [sym_as_expression] = STATE(3228), - [sym_is_expression] = STATE(3228), - [sym_is_pattern_expression] = STATE(3228), - [sym_cast_expression] = STATE(3228), - [sym_checked_expression] = STATE(3228), - [sym_invocation_expression] = STATE(3289), - [sym_switch_expression] = STATE(3228), - [sym_await_expression] = STATE(3289), - [sym_throw_expression] = STATE(3228), - [sym_element_access_expression] = STATE(2609), - [sym_interpolated_string_expression] = STATE(3228), - [sym_member_access_expression] = STATE(2609), - [sym_object_creation_expression] = STATE(3289), - [sym_parenthesized_expression] = STATE(3289), - [sym__parenthesized_lvalue_expression] = STATE(2609), - [sym_lambda_expression] = STATE(3228), - [sym__lambda_expression_init] = STATE(7531), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3228), - [sym_anonymous_method_expression] = STATE(3228), - [sym_anonymous_object_creation_expression] = STATE(3228), - [sym_implicit_array_creation_expression] = STATE(3228), - [sym_implicit_object_creation_expression] = STATE(3228), - [sym_implicit_stackalloc_expression] = STATE(3228), - [sym_initializer_expression] = STATE(3228), - [sym_default_expression] = STATE(3228), - [sym_with_expression] = STATE(3228), - [sym_sizeof_expression] = STATE(3228), - [sym_typeof_expression] = STATE(3228), - [sym_makeref_expression] = STATE(3228), - [sym_ref_expression] = STATE(3228), - [sym_reftype_expression] = STATE(3228), - [sym_refvalue_expression] = STATE(3228), - [sym_stackalloc_expression] = STATE(3228), - [sym_range_expression] = STATE(3228), - [sym_tuple_expression] = STATE(2609), - [sym_literal] = STATE(3228), - [sym_character_literal] = STATE(3278), - [sym_string_literal] = STATE(3278), - [sym_raw_string_literal] = STATE(3278), - [sym_boolean_literal] = STATE(3278), - [sym_identifier] = STATE(2267), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3228), - [sym_preproc_if_in_attribute_list] = STATE(5576), - [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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3396), + [1892] = { + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(5893), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2361), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(5531), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3673), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3102), + [sym_postfix_unary_expression] = STATE(3079), + [sym_prefix_unary_expression] = STATE(3079), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6159), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3102), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3079), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3102), + [sym_member_access_expression] = STATE(2472), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3079), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7363), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(3102), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3102), + [sym_typeof_expression] = STATE(3102), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2472), + [sym_literal] = STATE(3102), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), + [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(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1153), - [anon_sym_LPAREN] = ACTIONS(1525), - [anon_sym_ref] = ACTIONS(1527), - [anon_sym_LBRACE] = ACTIONS(1159), - [anon_sym_delegate] = ACTIONS(1161), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1479), + [anon_sym_LPAREN] = ACTIONS(2237), + [anon_sym_ref] = ACTIONS(2239), + [anon_sym_LBRACE] = ACTIONS(1481), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1529), + [anon_sym_new] = ACTIONS(2241), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1167), - [anon_sym_BANG] = ACTIONS(1533), - [anon_sym_TILDE] = ACTIONS(1533), - [anon_sym_PLUS_PLUS] = ACTIONS(1533), - [anon_sym_DASH_DASH] = ACTIONS(1533), - [anon_sym_true] = ACTIONS(1173), - [anon_sym_false] = ACTIONS(1173), - [anon_sym_PLUS] = ACTIONS(1531), - [anon_sym_DASH] = ACTIONS(1531), - [anon_sym_STAR] = ACTIONS(1535), - [anon_sym_CARET] = ACTIONS(1533), - [anon_sym_AMP] = ACTIONS(1533), - [anon_sym_this] = ACTIONS(1177), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(2245), + [anon_sym_TILDE] = ACTIONS(2245), + [anon_sym_PLUS_PLUS] = ACTIONS(2245), + [anon_sym_DASH_DASH] = ACTIONS(2245), + [anon_sym_true] = ACTIONS(77), + [anon_sym_false] = ACTIONS(77), + [anon_sym_PLUS] = ACTIONS(2243), + [anon_sym_DASH] = ACTIONS(2243), + [anon_sym_STAR] = ACTIONS(2247), + [anon_sym_CARET] = ACTIONS(2245), + [anon_sym_AMP] = ACTIONS(2245), + [anon_sym_this] = ACTIONS(83), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1179), + [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1181), - [anon_sym_unchecked] = ACTIONS(1167), + [sym_predefined_type] = ACTIONS(91), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1183), - [anon_sym_throw] = ACTIONS(1537), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(2249), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1539), - [anon_sym_DOT_DOT] = ACTIONS(1541), + [anon_sym_await] = ACTIONS(2251), + [anon_sym_DOT_DOT] = ACTIONS(2253), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -357435,19 +361546,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1191), - [anon_sym_sizeof] = ACTIONS(1193), - [anon_sym_typeof] = ACTIONS(1195), - [anon_sym___makeref] = ACTIONS(1197), - [anon_sym___reftype] = ACTIONS(1199), - [anon_sym___refvalue] = ACTIONS(1201), - [sym_null_literal] = ACTIONS(1203), - [anon_sym_SQUOTE] = ACTIONS(1205), - [sym_integer_literal] = ACTIONS(1203), - [sym_real_literal] = ACTIONS(1207), - [anon_sym_DQUOTE] = ACTIONS(1209), - [sym_verbatim_string_literal] = ACTIONS(1207), - [aux_sym_preproc_if_token1] = ACTIONS(1211), + [anon_sym_stackalloc] = ACTIONS(127), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_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), @@ -357458,140 +361569,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(1213), - [sym_interpolation_verbatim_start] = ACTIONS(1215), - [sym_interpolation_raw_start] = ACTIONS(1217), - [sym_raw_string_start] = ACTIONS(1219), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [sym_interpolation_raw_start] = ACTIONS(155), + [sym_raw_string_start] = ACTIONS(157), }, - [1868] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2420), - [sym__name] = STATE(5911), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2197), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(4394), - [sym_non_lvalue_expression] = STATE(3066), - [sym_lvalue_expression] = STATE(3327), - [sym__expression_statement_expression] = STATE(3006), - [sym_assignment_expression] = STATE(3020), - [sym_binary_expression] = STATE(3006), - [sym_postfix_unary_expression] = STATE(3020), - [sym_prefix_unary_expression] = STATE(3020), - [sym__pointer_indirection_expression] = STATE(2423), - [sym_query_expression] = STATE(3006), + [1893] = { + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(5893), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2361), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(5532), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3673), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3102), + [sym_postfix_unary_expression] = STATE(3079), + [sym_prefix_unary_expression] = STATE(3079), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), [sym_from_clause] = STATE(6159), - [sym_conditional_expression] = STATE(3006), - [sym_conditional_access_expression] = STATE(3006), - [sym_as_expression] = STATE(3006), - [sym_is_expression] = STATE(3006), - [sym_is_pattern_expression] = STATE(3006), - [sym_cast_expression] = STATE(3006), - [sym_checked_expression] = STATE(3006), - [sym_invocation_expression] = STATE(3020), - [sym_switch_expression] = STATE(3006), - [sym_await_expression] = STATE(3020), - [sym_throw_expression] = STATE(3006), - [sym_element_access_expression] = STATE(2423), - [sym_interpolated_string_expression] = STATE(3006), - [sym_member_access_expression] = STATE(2423), - [sym_object_creation_expression] = STATE(3020), - [sym_parenthesized_expression] = STATE(3020), - [sym__parenthesized_lvalue_expression] = STATE(2423), - [sym_lambda_expression] = STATE(3006), - [sym__lambda_expression_init] = STATE(7674), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3006), - [sym_anonymous_method_expression] = STATE(3006), - [sym_anonymous_object_creation_expression] = STATE(3006), - [sym_implicit_array_creation_expression] = STATE(3006), - [sym_implicit_object_creation_expression] = STATE(3006), - [sym_implicit_stackalloc_expression] = STATE(3006), - [sym_initializer_expression] = STATE(3006), - [sym_default_expression] = STATE(3006), - [sym_with_expression] = STATE(3006), - [sym_sizeof_expression] = STATE(3006), - [sym_typeof_expression] = STATE(3006), - [sym_makeref_expression] = STATE(3006), - [sym_ref_expression] = STATE(3006), - [sym_reftype_expression] = STATE(3006), - [sym_refvalue_expression] = STATE(3006), - [sym_stackalloc_expression] = STATE(3006), - [sym_range_expression] = STATE(3006), - [sym_tuple_expression] = STATE(2423), - [sym_literal] = STATE(3006), - [sym_character_literal] = STATE(3011), - [sym_string_literal] = STATE(3011), - [sym_raw_string_literal] = STATE(3011), - [sym_boolean_literal] = STATE(3011), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3006), - [sym_preproc_if_in_attribute_list] = STATE(5576), - [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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3440), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3102), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3079), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3102), + [sym_member_access_expression] = STATE(2472), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3079), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7363), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(3102), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3102), + [sym_typeof_expression] = STATE(3102), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2472), + [sym_literal] = STATE(3102), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), + [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(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1241), - [anon_sym_LPAREN] = ACTIONS(1509), - [anon_sym_ref] = ACTIONS(1511), - [anon_sym_LBRACE] = ACTIONS(1247), - [anon_sym_delegate] = ACTIONS(1249), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1479), + [anon_sym_LPAREN] = ACTIONS(2237), + [anon_sym_ref] = ACTIONS(2239), + [anon_sym_LBRACE] = ACTIONS(1481), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1251), + [anon_sym_new] = ACTIONS(2241), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1253), - [anon_sym_BANG] = ACTIONS(1515), - [anon_sym_TILDE] = ACTIONS(1515), - [anon_sym_PLUS_PLUS] = ACTIONS(1515), - [anon_sym_DASH_DASH] = ACTIONS(1515), - [anon_sym_true] = ACTIONS(1259), - [anon_sym_false] = ACTIONS(1259), - [anon_sym_PLUS] = ACTIONS(1513), - [anon_sym_DASH] = ACTIONS(1513), - [anon_sym_STAR] = ACTIONS(1517), - [anon_sym_CARET] = ACTIONS(1515), - [anon_sym_AMP] = ACTIONS(1515), - [anon_sym_this] = ACTIONS(1263), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(2245), + [anon_sym_TILDE] = ACTIONS(2245), + [anon_sym_PLUS_PLUS] = ACTIONS(2245), + [anon_sym_DASH_DASH] = ACTIONS(2245), + [anon_sym_true] = ACTIONS(77), + [anon_sym_false] = ACTIONS(77), + [anon_sym_PLUS] = ACTIONS(2243), + [anon_sym_DASH] = ACTIONS(2243), + [anon_sym_STAR] = ACTIONS(2247), + [anon_sym_CARET] = ACTIONS(2245), + [anon_sym_AMP] = ACTIONS(2245), + [anon_sym_this] = ACTIONS(83), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1265), + [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1267), - [anon_sym_unchecked] = ACTIONS(1253), + [sym_predefined_type] = ACTIONS(91), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1269), - [anon_sym_throw] = ACTIONS(1519), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(2249), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1521), - [anon_sym_DOT_DOT] = ACTIONS(1523), + [anon_sym_await] = ACTIONS(2251), + [anon_sym_DOT_DOT] = ACTIONS(2253), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -357604,19 +361715,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1277), - [anon_sym_sizeof] = ACTIONS(1279), - [anon_sym_typeof] = ACTIONS(1281), - [anon_sym___makeref] = ACTIONS(1283), - [anon_sym___reftype] = ACTIONS(1285), - [anon_sym___refvalue] = ACTIONS(1287), - [sym_null_literal] = ACTIONS(1289), - [anon_sym_SQUOTE] = ACTIONS(1291), - [sym_integer_literal] = ACTIONS(1289), - [sym_real_literal] = ACTIONS(1293), - [anon_sym_DQUOTE] = ACTIONS(1295), - [sym_verbatim_string_literal] = ACTIONS(1293), - [aux_sym_preproc_if_token1] = ACTIONS(1297), + [anon_sym_stackalloc] = ACTIONS(127), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_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), @@ -357627,140 +361738,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(1299), - [sym_interpolation_verbatim_start] = ACTIONS(1301), - [sym_interpolation_raw_start] = ACTIONS(1303), - [sym_raw_string_start] = ACTIONS(1305), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [sym_interpolation_raw_start] = ACTIONS(155), + [sym_raw_string_start] = ACTIONS(157), }, - [1869] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(5160), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2204), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(4854), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3520), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3080), - [sym_postfix_unary_expression] = STATE(3111), - [sym_prefix_unary_expression] = STATE(3111), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6154), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3080), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3111), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3080), - [sym_member_access_expression] = STATE(2484), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3111), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7530), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(3080), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3080), - [sym_typeof_expression] = STATE(3080), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2484), - [sym_literal] = STATE(3080), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), - [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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [1894] = { + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(5893), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2361), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(5533), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3673), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3102), + [sym_postfix_unary_expression] = STATE(3079), + [sym_prefix_unary_expression] = STATE(3079), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6159), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3102), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3079), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3102), + [sym_member_access_expression] = STATE(2472), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3079), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7363), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(3102), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3102), + [sym_typeof_expression] = STATE(3102), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2472), + [sym_literal] = STATE(3102), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), + [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(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1481), - [anon_sym_LPAREN] = ACTIONS(43), - [anon_sym_ref] = ACTIONS(661), - [anon_sym_LBRACE] = ACTIONS(1487), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1479), + [anon_sym_LPAREN] = ACTIONS(2237), + [anon_sym_ref] = ACTIONS(2239), + [anon_sym_LBRACE] = ACTIONS(1481), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1061), + [anon_sym_new] = ACTIONS(2241), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = 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_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(2245), + [anon_sym_TILDE] = ACTIONS(2245), + [anon_sym_PLUS_PLUS] = ACTIONS(2245), + [anon_sym_DASH_DASH] = ACTIONS(2245), [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_PLUS] = ACTIONS(2243), + [anon_sym_DASH] = ACTIONS(2243), + [anon_sym_STAR] = ACTIONS(2247), + [anon_sym_CARET] = ACTIONS(2245), + [anon_sym_AMP] = ACTIONS(2245), [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(1067), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1589), + [anon_sym_throw] = ACTIONS(2249), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1591), - [anon_sym_DOT_DOT] = ACTIONS(123), + [anon_sym_await] = ACTIONS(2251), + [anon_sym_DOT_DOT] = ACTIONS(2253), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -357785,7 +361896,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(1089), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -357801,135 +361912,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), }, - [1870] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(5890), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2375), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(5537), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3656), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3080), - [sym_postfix_unary_expression] = STATE(3111), - [sym_prefix_unary_expression] = STATE(3111), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6157), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3080), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3111), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3080), - [sym_member_access_expression] = STATE(2484), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3111), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7362), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(3080), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3080), - [sym_typeof_expression] = STATE(3080), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2484), - [sym_literal] = STATE(3080), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), - [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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [1895] = { + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(5893), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2361), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(5534), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3673), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3102), + [sym_postfix_unary_expression] = STATE(3079), + [sym_prefix_unary_expression] = STATE(3079), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6159), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3102), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3079), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3102), + [sym_member_access_expression] = STATE(2472), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3079), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7363), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(3102), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3102), + [sym_typeof_expression] = STATE(3102), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2472), + [sym_literal] = STATE(3102), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), + [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(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1481), - [anon_sym_LPAREN] = ACTIONS(2177), - [anon_sym_ref] = ACTIONS(2179), - [anon_sym_LBRACE] = ACTIONS(1487), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1479), + [anon_sym_LPAREN] = ACTIONS(2237), + [anon_sym_ref] = ACTIONS(2239), + [anon_sym_LBRACE] = ACTIONS(1481), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(2181), + [anon_sym_new] = ACTIONS(2241), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1067), - [anon_sym_BANG] = ACTIONS(2185), - [anon_sym_TILDE] = ACTIONS(2185), - [anon_sym_PLUS_PLUS] = ACTIONS(2185), - [anon_sym_DASH_DASH] = ACTIONS(2185), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(2245), + [anon_sym_TILDE] = ACTIONS(2245), + [anon_sym_PLUS_PLUS] = ACTIONS(2245), + [anon_sym_DASH_DASH] = ACTIONS(2245), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(2183), - [anon_sym_DASH] = ACTIONS(2183), - [anon_sym_STAR] = ACTIONS(2187), - [anon_sym_CARET] = ACTIONS(2185), - [anon_sym_AMP] = ACTIONS(2185), + [anon_sym_PLUS] = ACTIONS(2243), + [anon_sym_DASH] = ACTIONS(2243), + [anon_sym_STAR] = ACTIONS(2247), + [anon_sym_CARET] = ACTIONS(2245), + [anon_sym_AMP] = ACTIONS(2245), [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(1067), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(2189), + [anon_sym_throw] = ACTIONS(2249), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2191), - [anon_sym_DOT_DOT] = ACTIONS(2193), + [anon_sym_await] = ACTIONS(2251), + [anon_sym_DOT_DOT] = ACTIONS(2253), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -357954,7 +362065,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(1089), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -357970,135 +362081,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), }, - [1871] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2610), - [sym__name] = STATE(5886), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2319), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(4448), - [sym_non_lvalue_expression] = STATE(3277), - [sym_lvalue_expression] = STATE(3347), - [sym__expression_statement_expression] = STATE(3228), - [sym_assignment_expression] = STATE(3289), - [sym_binary_expression] = STATE(3228), - [sym_postfix_unary_expression] = STATE(3289), - [sym_prefix_unary_expression] = STATE(3289), - [sym__pointer_indirection_expression] = STATE(2609), - [sym_query_expression] = STATE(3228), - [sym_from_clause] = STATE(6150), - [sym_conditional_expression] = STATE(3228), - [sym_conditional_access_expression] = STATE(3228), - [sym_as_expression] = STATE(3228), - [sym_is_expression] = STATE(3228), - [sym_is_pattern_expression] = STATE(3228), - [sym_cast_expression] = STATE(3228), - [sym_checked_expression] = STATE(3228), - [sym_invocation_expression] = STATE(3289), - [sym_switch_expression] = STATE(3228), - [sym_await_expression] = STATE(3289), - [sym_throw_expression] = STATE(3228), - [sym_element_access_expression] = STATE(2609), - [sym_interpolated_string_expression] = STATE(3228), - [sym_member_access_expression] = STATE(2609), - [sym_object_creation_expression] = STATE(3289), - [sym_parenthesized_expression] = STATE(3289), - [sym__parenthesized_lvalue_expression] = STATE(2609), - [sym_lambda_expression] = STATE(3228), - [sym__lambda_expression_init] = STATE(7531), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3228), - [sym_anonymous_method_expression] = STATE(3228), - [sym_anonymous_object_creation_expression] = STATE(3228), - [sym_implicit_array_creation_expression] = STATE(3228), - [sym_implicit_object_creation_expression] = STATE(3228), - [sym_implicit_stackalloc_expression] = STATE(3228), - [sym_initializer_expression] = STATE(3228), - [sym_default_expression] = STATE(3228), - [sym_with_expression] = STATE(3228), - [sym_sizeof_expression] = STATE(3228), - [sym_typeof_expression] = STATE(3228), - [sym_makeref_expression] = STATE(3228), - [sym_ref_expression] = STATE(3228), - [sym_reftype_expression] = STATE(3228), - [sym_refvalue_expression] = STATE(3228), - [sym_stackalloc_expression] = STATE(3228), - [sym_range_expression] = STATE(3228), - [sym_tuple_expression] = STATE(2609), - [sym_literal] = STATE(3228), - [sym_character_literal] = STATE(3278), - [sym_string_literal] = STATE(3278), - [sym_raw_string_literal] = STATE(3278), - [sym_boolean_literal] = STATE(3278), - [sym_identifier] = STATE(2267), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3228), - [sym_preproc_if_in_attribute_list] = STATE(5576), - [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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3396), + [1896] = { + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(5873), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2238), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(5544), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3468), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3102), + [sym_postfix_unary_expression] = STATE(3079), + [sym_prefix_unary_expression] = STATE(3079), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6134), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3102), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3079), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3102), + [sym_member_access_expression] = STATE(2472), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3079), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7309), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(3102), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3102), + [sym_typeof_expression] = STATE(3102), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2472), + [sym_literal] = STATE(3102), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), + [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(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1153), - [anon_sym_LPAREN] = ACTIONS(1525), - [anon_sym_ref] = ACTIONS(1527), - [anon_sym_LBRACE] = ACTIONS(1159), - [anon_sym_delegate] = ACTIONS(1161), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1479), + [anon_sym_LPAREN] = ACTIONS(659), + [anon_sym_ref] = ACTIONS(663), + [anon_sym_LBRACE] = ACTIONS(1481), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1529), + [anon_sym_new] = ACTIONS(1059), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1167), - [anon_sym_BANG] = ACTIONS(1533), - [anon_sym_TILDE] = ACTIONS(1533), - [anon_sym_PLUS_PLUS] = ACTIONS(1533), - [anon_sym_DASH_DASH] = ACTIONS(1533), - [anon_sym_true] = ACTIONS(1173), - [anon_sym_false] = ACTIONS(1173), - [anon_sym_PLUS] = ACTIONS(1531), - [anon_sym_DASH] = ACTIONS(1531), - [anon_sym_STAR] = ACTIONS(1535), - [anon_sym_CARET] = ACTIONS(1533), - [anon_sym_AMP] = ACTIONS(1533), - [anon_sym_this] = ACTIONS(1177), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(1485), + [anon_sym_TILDE] = ACTIONS(1485), + [anon_sym_PLUS_PLUS] = ACTIONS(1485), + [anon_sym_DASH_DASH] = ACTIONS(1485), + [anon_sym_true] = ACTIONS(77), + [anon_sym_false] = ACTIONS(77), + [anon_sym_PLUS] = ACTIONS(1483), + [anon_sym_DASH] = ACTIONS(1483), + [anon_sym_STAR] = ACTIONS(683), + [anon_sym_CARET] = ACTIONS(1485), + [anon_sym_AMP] = ACTIONS(1485), + [anon_sym_this] = ACTIONS(83), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1179), + [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1181), - [anon_sym_unchecked] = ACTIONS(1167), + [sym_predefined_type] = ACTIONS(91), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1183), - [anon_sym_throw] = ACTIONS(1537), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(1077), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1539), - [anon_sym_DOT_DOT] = ACTIONS(1541), + [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), @@ -358111,19 +362222,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1191), - [anon_sym_sizeof] = ACTIONS(1193), - [anon_sym_typeof] = ACTIONS(1195), - [anon_sym___makeref] = ACTIONS(1197), - [anon_sym___reftype] = ACTIONS(1199), - [anon_sym___refvalue] = ACTIONS(1201), - [sym_null_literal] = ACTIONS(1203), - [anon_sym_SQUOTE] = ACTIONS(1205), - [sym_integer_literal] = ACTIONS(1203), - [sym_real_literal] = ACTIONS(1207), - [anon_sym_DQUOTE] = ACTIONS(1209), - [sym_verbatim_string_literal] = ACTIONS(1207), - [aux_sym_preproc_if_token1] = ACTIONS(1211), + [anon_sym_stackalloc] = ACTIONS(127), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_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), @@ -358134,140 +362245,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(1213), - [sym_interpolation_verbatim_start] = ACTIONS(1215), - [sym_interpolation_raw_start] = ACTIONS(1217), - [sym_raw_string_start] = ACTIONS(1219), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [sym_interpolation_raw_start] = ACTIONS(155), + [sym_raw_string_start] = ACTIONS(157), }, - [1872] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(5634), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2204), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(5426), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3664), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3080), - [sym_postfix_unary_expression] = STATE(3111), - [sym_prefix_unary_expression] = STATE(3111), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6161), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3080), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3111), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3080), - [sym_member_access_expression] = STATE(2484), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3111), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7773), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(3080), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3080), - [sym_typeof_expression] = STATE(3080), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2484), - [sym_literal] = STATE(3080), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), - [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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [1897] = { + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(5873), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2238), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(5600), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3468), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3102), + [sym_postfix_unary_expression] = STATE(3079), + [sym_prefix_unary_expression] = STATE(3079), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6134), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3102), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3079), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3102), + [sym_member_access_expression] = STATE(2472), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3079), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7309), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(3102), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3102), + [sym_typeof_expression] = STATE(3102), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2472), + [sym_literal] = STATE(3102), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), + [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(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1481), - [anon_sym_LPAREN] = ACTIONS(2015), - [anon_sym_ref] = ACTIONS(2017), - [anon_sym_LBRACE] = ACTIONS(1487), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1479), + [anon_sym_LPAREN] = ACTIONS(659), + [anon_sym_ref] = ACTIONS(663), + [anon_sym_LBRACE] = ACTIONS(1481), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1101), + [anon_sym_new] = ACTIONS(1059), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1067), - [anon_sym_BANG] = ACTIONS(2021), - [anon_sym_TILDE] = ACTIONS(2021), - [anon_sym_PLUS_PLUS] = ACTIONS(2021), - [anon_sym_DASH_DASH] = ACTIONS(2021), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(1485), + [anon_sym_TILDE] = ACTIONS(1485), + [anon_sym_PLUS_PLUS] = ACTIONS(1485), + [anon_sym_DASH_DASH] = ACTIONS(1485), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(2019), - [anon_sym_DASH] = ACTIONS(2019), - [anon_sym_STAR] = ACTIONS(1229), - [anon_sym_CARET] = ACTIONS(2021), - [anon_sym_AMP] = ACTIONS(2021), + [anon_sym_PLUS] = ACTIONS(1483), + [anon_sym_DASH] = ACTIONS(1483), + [anon_sym_STAR] = ACTIONS(683), + [anon_sym_CARET] = ACTIONS(1485), + [anon_sym_AMP] = ACTIONS(1485), [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(1067), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1233), + [anon_sym_throw] = ACTIONS(1077), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1235), - [anon_sym_DOT_DOT] = ACTIONS(1237), + [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), @@ -358292,7 +362403,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(1089), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -358308,135 +362419,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), }, - [1873] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(5890), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2375), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(5544), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3656), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3080), - [sym_postfix_unary_expression] = STATE(3111), - [sym_prefix_unary_expression] = STATE(3111), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6157), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3080), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3111), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3080), - [sym_member_access_expression] = STATE(2484), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3111), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7362), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(3080), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3080), - [sym_typeof_expression] = STATE(3080), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2484), - [sym_literal] = STATE(3080), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), - [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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [1898] = { + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(5873), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2238), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(5606), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3468), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3102), + [sym_postfix_unary_expression] = STATE(3079), + [sym_prefix_unary_expression] = STATE(3079), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6134), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3102), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3079), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3102), + [sym_member_access_expression] = STATE(2472), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3079), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7309), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(3102), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3102), + [sym_typeof_expression] = STATE(3102), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2472), + [sym_literal] = STATE(3102), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), + [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(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1481), - [anon_sym_LPAREN] = ACTIONS(2177), - [anon_sym_ref] = ACTIONS(2179), - [anon_sym_LBRACE] = ACTIONS(1487), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1479), + [anon_sym_LPAREN] = ACTIONS(659), + [anon_sym_ref] = ACTIONS(663), + [anon_sym_LBRACE] = ACTIONS(1481), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(2181), + [anon_sym_new] = ACTIONS(1059), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1067), - [anon_sym_BANG] = ACTIONS(2185), - [anon_sym_TILDE] = ACTIONS(2185), - [anon_sym_PLUS_PLUS] = ACTIONS(2185), - [anon_sym_DASH_DASH] = ACTIONS(2185), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(1485), + [anon_sym_TILDE] = ACTIONS(1485), + [anon_sym_PLUS_PLUS] = ACTIONS(1485), + [anon_sym_DASH_DASH] = ACTIONS(1485), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(2183), - [anon_sym_DASH] = ACTIONS(2183), - [anon_sym_STAR] = ACTIONS(2187), - [anon_sym_CARET] = ACTIONS(2185), - [anon_sym_AMP] = ACTIONS(2185), + [anon_sym_PLUS] = ACTIONS(1483), + [anon_sym_DASH] = ACTIONS(1483), + [anon_sym_STAR] = ACTIONS(683), + [anon_sym_CARET] = ACTIONS(1485), + [anon_sym_AMP] = ACTIONS(1485), [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(1067), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(2189), + [anon_sym_throw] = ACTIONS(1077), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2191), - [anon_sym_DOT_DOT] = ACTIONS(2193), + [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), @@ -358461,7 +362572,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(1089), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -358477,135 +362588,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), }, - [1874] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(5890), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2375), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(5548), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3656), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3080), - [sym_postfix_unary_expression] = STATE(3111), - [sym_prefix_unary_expression] = STATE(3111), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6157), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3080), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3111), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3080), - [sym_member_access_expression] = STATE(2484), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3111), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7362), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(3080), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3080), - [sym_typeof_expression] = STATE(3080), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2484), - [sym_literal] = STATE(3080), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), - [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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [1899] = { + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2459), + [sym__name] = STATE(5873), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2238), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(5615), + [sym_non_lvalue_expression] = STATE(3072), + [sym_lvalue_expression] = STATE(3468), + [sym__expression_statement_expression] = STATE(3102), + [sym_assignment_expression] = STATE(3079), + [sym_binary_expression] = STATE(3102), + [sym_postfix_unary_expression] = STATE(3079), + [sym_prefix_unary_expression] = STATE(3079), + [sym__pointer_indirection_expression] = STATE(2472), + [sym_query_expression] = STATE(3102), + [sym_from_clause] = STATE(6134), + [sym_conditional_expression] = STATE(3102), + [sym_conditional_access_expression] = STATE(3102), + [sym_as_expression] = STATE(3102), + [sym_is_expression] = STATE(3102), + [sym_is_pattern_expression] = STATE(3102), + [sym_cast_expression] = STATE(3102), + [sym_checked_expression] = STATE(3102), + [sym_invocation_expression] = STATE(3079), + [sym_switch_expression] = STATE(3102), + [sym_await_expression] = STATE(3079), + [sym_throw_expression] = STATE(3102), + [sym_element_access_expression] = STATE(2472), + [sym_interpolated_string_expression] = STATE(3102), + [sym_member_access_expression] = STATE(2472), + [sym_object_creation_expression] = STATE(3079), + [sym_parenthesized_expression] = STATE(3079), + [sym__parenthesized_lvalue_expression] = STATE(2472), + [sym_lambda_expression] = STATE(3102), + [sym__lambda_expression_init] = STATE(7309), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3102), + [sym_anonymous_method_expression] = STATE(3102), + [sym_anonymous_object_creation_expression] = STATE(3102), + [sym_implicit_array_creation_expression] = STATE(3102), + [sym_implicit_object_creation_expression] = STATE(3102), + [sym_implicit_stackalloc_expression] = STATE(3102), + [sym_initializer_expression] = STATE(3102), + [sym_default_expression] = STATE(3102), + [sym_with_expression] = STATE(3102), + [sym_sizeof_expression] = STATE(3102), + [sym_typeof_expression] = STATE(3102), + [sym_makeref_expression] = STATE(3102), + [sym_ref_expression] = STATE(3102), + [sym_reftype_expression] = STATE(3102), + [sym_refvalue_expression] = STATE(3102), + [sym_stackalloc_expression] = STATE(3102), + [sym_range_expression] = STATE(3102), + [sym_tuple_expression] = STATE(2472), + [sym_literal] = STATE(3102), + [sym_character_literal] = STATE(3475), + [sym_string_literal] = STATE(3475), + [sym_raw_string_literal] = STATE(3475), + [sym_boolean_literal] = STATE(3475), + [sym_identifier] = STATE(2173), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3102), + [sym_preproc_if_in_attribute_list] = STATE(5583), + [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(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3492), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1481), - [anon_sym_LPAREN] = ACTIONS(2177), - [anon_sym_ref] = ACTIONS(2179), - [anon_sym_LBRACE] = ACTIONS(1487), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1479), + [anon_sym_LPAREN] = ACTIONS(659), + [anon_sym_ref] = ACTIONS(663), + [anon_sym_LBRACE] = ACTIONS(1481), + [anon_sym_delegate] = ACTIONS(669), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(2181), + [anon_sym_new] = ACTIONS(1059), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1067), - [anon_sym_BANG] = ACTIONS(2185), - [anon_sym_TILDE] = ACTIONS(2185), - [anon_sym_PLUS_PLUS] = ACTIONS(2185), - [anon_sym_DASH_DASH] = ACTIONS(2185), + [anon_sym_checked] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(1485), + [anon_sym_TILDE] = ACTIONS(1485), + [anon_sym_PLUS_PLUS] = ACTIONS(1485), + [anon_sym_DASH_DASH] = ACTIONS(1485), [anon_sym_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(2183), - [anon_sym_DASH] = ACTIONS(2183), - [anon_sym_STAR] = ACTIONS(2187), - [anon_sym_CARET] = ACTIONS(2185), - [anon_sym_AMP] = ACTIONS(2185), + [anon_sym_PLUS] = ACTIONS(1483), + [anon_sym_DASH] = ACTIONS(1483), + [anon_sym_STAR] = ACTIONS(683), + [anon_sym_CARET] = ACTIONS(1485), + [anon_sym_AMP] = ACTIONS(1485), [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(1067), + [anon_sym_unchecked] = ACTIONS(1065), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(2189), + [anon_sym_throw] = ACTIONS(1077), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2191), - [anon_sym_DOT_DOT] = ACTIONS(2193), + [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), @@ -358630,7 +362741,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(1089), + [aux_sym_preproc_if_token1] = ACTIONS(1087), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -358646,135 +362757,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), }, - [1875] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(5890), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2375), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(5551), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3656), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3080), - [sym_postfix_unary_expression] = STATE(3111), - [sym_prefix_unary_expression] = STATE(3111), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6157), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3080), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3111), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3080), - [sym_member_access_expression] = STATE(2484), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3111), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7362), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(3080), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3080), - [sym_typeof_expression] = STATE(3080), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2484), - [sym_literal] = STATE(3080), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), - [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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [1900] = { + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym_bracketed_argument_list] = STATE(2603), + [sym__name] = STATE(5862), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(2193), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_type] = STATE(5907), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_expression] = STATE(3123), + [sym_non_lvalue_expression] = STATE(3220), + [sym_lvalue_expression] = STATE(3403), + [sym__expression_statement_expression] = STATE(3236), + [sym_assignment_expression] = STATE(3221), + [sym_binary_expression] = STATE(3236), + [sym_postfix_unary_expression] = STATE(3221), + [sym_prefix_unary_expression] = STATE(3221), + [sym__pointer_indirection_expression] = STATE(2602), + [sym_query_expression] = STATE(3236), + [sym_from_clause] = STATE(6145), + [sym_conditional_expression] = STATE(3236), + [sym_conditional_access_expression] = STATE(3236), + [sym_as_expression] = STATE(3236), + [sym_is_expression] = STATE(3236), + [sym_is_pattern_expression] = STATE(3236), + [sym_cast_expression] = STATE(3236), + [sym_checked_expression] = STATE(3236), + [sym_invocation_expression] = STATE(3221), + [sym_switch_expression] = STATE(3236), + [sym_await_expression] = STATE(3221), + [sym_throw_expression] = STATE(3236), + [sym_element_access_expression] = STATE(2602), + [sym_interpolated_string_expression] = STATE(3236), + [sym_member_access_expression] = STATE(2602), + [sym_object_creation_expression] = STATE(3221), + [sym_parenthesized_expression] = STATE(3221), + [sym__parenthesized_lvalue_expression] = STATE(2602), + [sym_lambda_expression] = STATE(3236), + [sym__lambda_expression_init] = STATE(7639), + [sym__lambda_parameters] = STATE(7557), + [sym_array_creation_expression] = STATE(3236), + [sym_anonymous_method_expression] = STATE(3236), + [sym_anonymous_object_creation_expression] = STATE(3236), + [sym_implicit_array_creation_expression] = STATE(3236), + [sym_implicit_object_creation_expression] = STATE(3236), + [sym_implicit_stackalloc_expression] = STATE(3236), + [sym_initializer_expression] = STATE(3236), + [sym_default_expression] = STATE(3236), + [sym_with_expression] = STATE(3236), + [sym_sizeof_expression] = STATE(3236), + [sym_typeof_expression] = STATE(3236), + [sym_makeref_expression] = STATE(3236), + [sym_ref_expression] = STATE(3236), + [sym_reftype_expression] = STATE(3236), + [sym_refvalue_expression] = STATE(3236), + [sym_stackalloc_expression] = STATE(3236), + [sym_range_expression] = STATE(3236), + [sym_tuple_expression] = STATE(2602), + [sym_literal] = STATE(3236), + [sym_character_literal] = STATE(3272), + [sym_string_literal] = STATE(3272), + [sym_raw_string_literal] = STATE(3272), + [sym_boolean_literal] = STATE(3272), + [sym_identifier] = STATE(2261), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_expression] = STATE(3236), + [sym_preproc_if_in_attribute_list] = STATE(5583), + [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(3104), + [aux_sym__lambda_expression_init_repeat1] = STATE(3379), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1481), - [anon_sym_LPAREN] = ACTIONS(2177), - [anon_sym_ref] = ACTIONS(2179), - [anon_sym_LBRACE] = ACTIONS(1487), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1149), + [anon_sym_LPAREN] = ACTIONS(1549), + [anon_sym_ref] = ACTIONS(1551), + [anon_sym_LBRACE] = ACTIONS(1155), + [anon_sym_delegate] = ACTIONS(1157), + [anon_sym_async] = ACTIONS(1045), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(2181), + [anon_sym_new] = ACTIONS(1159), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1067), - [anon_sym_BANG] = ACTIONS(2185), - [anon_sym_TILDE] = ACTIONS(2185), - [anon_sym_PLUS_PLUS] = ACTIONS(2185), - [anon_sym_DASH_DASH] = ACTIONS(2185), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(2183), - [anon_sym_DASH] = ACTIONS(2183), - [anon_sym_STAR] = ACTIONS(2187), - [anon_sym_CARET] = ACTIONS(2185), - [anon_sym_AMP] = ACTIONS(2185), - [anon_sym_this] = ACTIONS(83), + [anon_sym_checked] = ACTIONS(1163), + [anon_sym_BANG] = ACTIONS(1555), + [anon_sym_TILDE] = ACTIONS(1555), + [anon_sym_PLUS_PLUS] = ACTIONS(1555), + [anon_sym_DASH_DASH] = ACTIONS(1555), + [anon_sym_true] = ACTIONS(1169), + [anon_sym_false] = ACTIONS(1169), + [anon_sym_PLUS] = ACTIONS(1553), + [anon_sym_DASH] = ACTIONS(1553), + [anon_sym_STAR] = ACTIONS(1557), + [anon_sym_CARET] = ACTIONS(1555), + [anon_sym_AMP] = ACTIONS(1555), + [anon_sym_this] = ACTIONS(1173), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), + [anon_sym_base] = ACTIONS(1175), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1067), + [sym_predefined_type] = ACTIONS(1177), + [anon_sym_unchecked] = ACTIONS(1163), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(2189), + [anon_sym_default] = ACTIONS(1179), + [anon_sym_throw] = ACTIONS(1559), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2191), - [anon_sym_DOT_DOT] = ACTIONS(2193), + [anon_sym_await] = ACTIONS(1561), + [anon_sym_DOT_DOT] = ACTIONS(1563), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -358787,19 +362898,19 @@ static const uint16_t ts_parse_table[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(1089), + [anon_sym_stackalloc] = ACTIONS(1187), + [anon_sym_sizeof] = ACTIONS(1189), + [anon_sym_typeof] = ACTIONS(1191), + [anon_sym___makeref] = ACTIONS(1193), + [anon_sym___reftype] = ACTIONS(1195), + [anon_sym___refvalue] = ACTIONS(1197), + [sym_null_literal] = ACTIONS(1199), + [anon_sym_SQUOTE] = ACTIONS(1201), + [sym_integer_literal] = ACTIONS(1199), + [sym_real_literal] = ACTIONS(1203), + [anon_sym_DQUOTE] = ACTIONS(1205), + [sym_verbatim_string_literal] = ACTIONS(1203), + [aux_sym_preproc_if_token1] = ACTIONS(1207), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -358810,165 +362921,146 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(151), - [sym_interpolation_verbatim_start] = ACTIONS(153), - [sym_interpolation_raw_start] = ACTIONS(155), - [sym_raw_string_start] = ACTIONS(157), + [sym_interpolation_regular_start] = ACTIONS(1209), + [sym_interpolation_verbatim_start] = ACTIONS(1211), + [sym_interpolation_raw_start] = ACTIONS(1213), + [sym_raw_string_start] = ACTIONS(1215), }, - [1876] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(5160), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2204), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(5380), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3461), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3080), - [sym_postfix_unary_expression] = STATE(3111), - [sym_prefix_unary_expression] = STATE(3111), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6154), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3080), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3111), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3080), - [sym_member_access_expression] = STATE(2484), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3111), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7547), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(3080), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3080), - [sym_typeof_expression] = STATE(3080), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2484), - [sym_literal] = STATE(3080), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), - [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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), - [sym__identifier_token] = ACTIONS(25), - [anon_sym_alias] = ACTIONS(29), - [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1481), - [anon_sym_LPAREN] = ACTIONS(1497), - [anon_sym_ref] = ACTIONS(1499), - [anon_sym_LBRACE] = ACTIONS(1487), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), - [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1501), - [anon_sym_where] = ACTIONS(29), - [anon_sym_notnull] = ACTIONS(29), - [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = 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(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(1067), - [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1503), - [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1505), - [anon_sym_DOT_DOT] = ACTIONS(1507), - [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(1089), + [1901] = { + [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), + [sym__identifier_token] = ACTIONS(2949), + [anon_sym_extern] = ACTIONS(2949), + [anon_sym_alias] = ACTIONS(2949), + [anon_sym_SEMI] = ACTIONS(2951), + [anon_sym_global] = ACTIONS(2949), + [anon_sym_using] = ACTIONS(2949), + [anon_sym_unsafe] = ACTIONS(2949), + [anon_sym_static] = ACTIONS(2949), + [anon_sym_LBRACK] = ACTIONS(2951), + [anon_sym_LPAREN] = ACTIONS(2951), + [anon_sym_return] = ACTIONS(2949), + [anon_sym_namespace] = ACTIONS(2949), + [anon_sym_class] = ACTIONS(2949), + [anon_sym_ref] = ACTIONS(2949), + [anon_sym_struct] = ACTIONS(2949), + [anon_sym_enum] = ACTIONS(2949), + [anon_sym_LBRACE] = ACTIONS(2951), + [anon_sym_interface] = ACTIONS(2949), + [anon_sym_delegate] = ACTIONS(2949), + [anon_sym_record] = ACTIONS(2949), + [anon_sym_abstract] = ACTIONS(2949), + [anon_sym_async] = ACTIONS(2949), + [anon_sym_const] = ACTIONS(2949), + [anon_sym_file] = ACTIONS(2949), + [anon_sym_fixed] = ACTIONS(2949), + [anon_sym_internal] = ACTIONS(2949), + [anon_sym_new] = ACTIONS(2949), + [anon_sym_override] = ACTIONS(2949), + [anon_sym_partial] = ACTIONS(2949), + [anon_sym_private] = ACTIONS(2949), + [anon_sym_protected] = ACTIONS(2949), + [anon_sym_public] = ACTIONS(2949), + [anon_sym_readonly] = ACTIONS(2949), + [anon_sym_required] = ACTIONS(2949), + [anon_sym_sealed] = ACTIONS(2949), + [anon_sym_virtual] = ACTIONS(2949), + [anon_sym_volatile] = ACTIONS(2949), + [anon_sym_LT] = ACTIONS(2953), + [anon_sym_GT] = ACTIONS(2953), + [anon_sym_where] = ACTIONS(2949), + [anon_sym_QMARK] = ACTIONS(2953), + [anon_sym_notnull] = ACTIONS(2949), + [anon_sym_unmanaged] = ACTIONS(2949), + [anon_sym_checked] = ACTIONS(2949), + [anon_sym_BANG] = ACTIONS(2949), + [anon_sym_TILDE] = ACTIONS(2951), + [anon_sym_PLUS_PLUS] = ACTIONS(2951), + [anon_sym_DASH_DASH] = ACTIONS(2951), + [anon_sym_true] = ACTIONS(2949), + [anon_sym_false] = ACTIONS(2949), + [anon_sym_PLUS] = ACTIONS(2949), + [anon_sym_DASH] = ACTIONS(2949), + [anon_sym_STAR] = ACTIONS(2951), + [anon_sym_SLASH] = ACTIONS(2953), + [anon_sym_PERCENT] = ACTIONS(2955), + [anon_sym_CARET] = ACTIONS(2951), + [anon_sym_PIPE] = ACTIONS(2953), + [anon_sym_AMP] = ACTIONS(2949), + [anon_sym_LT_LT] = ACTIONS(2955), + [anon_sym_GT_GT] = ACTIONS(2953), + [anon_sym_GT_GT_GT] = ACTIONS(2955), + [anon_sym_EQ_EQ] = ACTIONS(2955), + [anon_sym_BANG_EQ] = ACTIONS(2955), + [anon_sym_GT_EQ] = ACTIONS(2955), + [anon_sym_LT_EQ] = ACTIONS(2955), + [anon_sym_this] = ACTIONS(2949), + [anon_sym_DOT] = ACTIONS(2953), + [anon_sym_scoped] = ACTIONS(2949), + [anon_sym_base] = ACTIONS(2949), + [anon_sym_var] = ACTIONS(2949), + [sym_predefined_type] = ACTIONS(2949), + [anon_sym_break] = ACTIONS(2949), + [anon_sym_unchecked] = ACTIONS(2949), + [anon_sym_continue] = ACTIONS(2949), + [anon_sym_do] = ACTIONS(2949), + [anon_sym_while] = ACTIONS(2949), + [anon_sym_for] = ACTIONS(2949), + [anon_sym_lock] = ACTIONS(2949), + [anon_sym_yield] = ACTIONS(2949), + [anon_sym_switch] = ACTIONS(2949), + [anon_sym_default] = ACTIONS(2949), + [anon_sym_throw] = ACTIONS(2949), + [anon_sym_try] = ACTIONS(2949), + [anon_sym_when] = ACTIONS(2949), + [anon_sym_await] = ACTIONS(2949), + [anon_sym_foreach] = ACTIONS(2949), + [anon_sym_goto] = ACTIONS(2949), + [anon_sym_if] = ACTIONS(2949), + [anon_sym_else] = ACTIONS(2949), + [anon_sym_DOT_DOT] = ACTIONS(2951), + [anon_sym_AMP_AMP] = ACTIONS(2955), + [anon_sym_PIPE_PIPE] = ACTIONS(2955), + [anon_sym_QMARK_QMARK] = ACTIONS(2955), + [anon_sym_from] = ACTIONS(2949), + [anon_sym_into] = ACTIONS(2949), + [anon_sym_join] = ACTIONS(2949), + [anon_sym_on] = ACTIONS(2949), + [anon_sym_equals] = ACTIONS(2949), + [anon_sym_let] = ACTIONS(2949), + [anon_sym_orderby] = ACTIONS(2949), + [anon_sym_ascending] = ACTIONS(2949), + [anon_sym_descending] = ACTIONS(2949), + [anon_sym_group] = ACTIONS(2949), + [anon_sym_by] = ACTIONS(2949), + [anon_sym_select] = ACTIONS(2949), + [anon_sym_as] = ACTIONS(2953), + [anon_sym_is] = ACTIONS(2953), + [anon_sym_DASH_GT] = ACTIONS(2955), + [anon_sym_stackalloc] = ACTIONS(2949), + [anon_sym_with] = ACTIONS(2953), + [anon_sym_sizeof] = ACTIONS(2949), + [anon_sym_typeof] = ACTIONS(2949), + [anon_sym___makeref] = ACTIONS(2949), + [anon_sym___reftype] = ACTIONS(2949), + [anon_sym___refvalue] = ACTIONS(2949), + [sym_null_literal] = ACTIONS(2949), + [anon_sym_SQUOTE] = ACTIONS(2951), + [sym_integer_literal] = ACTIONS(2949), + [sym_real_literal] = ACTIONS(2951), + [anon_sym_DQUOTE] = ACTIONS(2951), + [sym_verbatim_string_literal] = ACTIONS(2951), + [aux_sym_preproc_if_token1] = ACTIONS(2951), + [aux_sym_preproc_if_token3] = ACTIONS(2951), + [aux_sym_preproc_else_token1] = ACTIONS(2951), + [aux_sym_preproc_elif_token1] = ACTIONS(2951), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -358979,165 +363071,146 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(151), - [sym_interpolation_verbatim_start] = ACTIONS(153), - [sym_interpolation_raw_start] = ACTIONS(155), - [sym_raw_string_start] = ACTIONS(157), + [sym_interpolation_regular_start] = ACTIONS(2951), + [sym_interpolation_verbatim_start] = ACTIONS(2951), + [sym_interpolation_raw_start] = ACTIONS(2951), + [sym_raw_string_start] = ACTIONS(2951), }, - [1877] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(5890), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2375), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(5603), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3656), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3080), - [sym_postfix_unary_expression] = STATE(3111), - [sym_prefix_unary_expression] = STATE(3111), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6157), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3080), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3111), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3080), - [sym_member_access_expression] = STATE(2484), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3111), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7362), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(3080), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3080), - [sym_typeof_expression] = STATE(3080), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2484), - [sym_literal] = STATE(3080), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), - [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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), - [sym__identifier_token] = ACTIONS(25), - [anon_sym_alias] = ACTIONS(29), - [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1481), - [anon_sym_LPAREN] = ACTIONS(2177), - [anon_sym_ref] = ACTIONS(2179), - [anon_sym_LBRACE] = ACTIONS(1487), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), - [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(2181), - [anon_sym_where] = ACTIONS(29), - [anon_sym_notnull] = ACTIONS(29), - [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1067), - [anon_sym_BANG] = ACTIONS(2185), - [anon_sym_TILDE] = ACTIONS(2185), - [anon_sym_PLUS_PLUS] = ACTIONS(2185), - [anon_sym_DASH_DASH] = ACTIONS(2185), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(2183), - [anon_sym_DASH] = ACTIONS(2183), - [anon_sym_STAR] = ACTIONS(2187), - [anon_sym_CARET] = ACTIONS(2185), - [anon_sym_AMP] = ACTIONS(2185), - [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(1067), - [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(2189), - [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2191), - [anon_sym_DOT_DOT] = ACTIONS(2193), - [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(1089), + [1902] = { + [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), + [sym__identifier_token] = ACTIONS(2957), + [anon_sym_extern] = ACTIONS(2957), + [anon_sym_alias] = ACTIONS(2957), + [anon_sym_SEMI] = ACTIONS(2959), + [anon_sym_global] = ACTIONS(2957), + [anon_sym_using] = ACTIONS(2957), + [anon_sym_unsafe] = ACTIONS(2957), + [anon_sym_static] = ACTIONS(2957), + [anon_sym_LBRACK] = ACTIONS(2959), + [anon_sym_LPAREN] = ACTIONS(2959), + [anon_sym_return] = ACTIONS(2957), + [anon_sym_namespace] = ACTIONS(2957), + [anon_sym_class] = ACTIONS(2957), + [anon_sym_ref] = ACTIONS(2957), + [anon_sym_struct] = ACTIONS(2957), + [anon_sym_enum] = ACTIONS(2957), + [anon_sym_LBRACE] = ACTIONS(2959), + [anon_sym_interface] = ACTIONS(2957), + [anon_sym_delegate] = ACTIONS(2957), + [anon_sym_record] = ACTIONS(2957), + [anon_sym_abstract] = ACTIONS(2957), + [anon_sym_async] = ACTIONS(2957), + [anon_sym_const] = ACTIONS(2957), + [anon_sym_file] = ACTIONS(2957), + [anon_sym_fixed] = ACTIONS(2957), + [anon_sym_internal] = ACTIONS(2957), + [anon_sym_new] = ACTIONS(2957), + [anon_sym_override] = ACTIONS(2957), + [anon_sym_partial] = ACTIONS(2957), + [anon_sym_private] = ACTIONS(2957), + [anon_sym_protected] = ACTIONS(2957), + [anon_sym_public] = ACTIONS(2957), + [anon_sym_readonly] = ACTIONS(2957), + [anon_sym_required] = ACTIONS(2957), + [anon_sym_sealed] = ACTIONS(2957), + [anon_sym_virtual] = ACTIONS(2957), + [anon_sym_volatile] = ACTIONS(2957), + [anon_sym_LT] = ACTIONS(2961), + [anon_sym_GT] = ACTIONS(2961), + [anon_sym_where] = ACTIONS(2957), + [anon_sym_QMARK] = ACTIONS(2961), + [anon_sym_notnull] = ACTIONS(2957), + [anon_sym_unmanaged] = ACTIONS(2957), + [anon_sym_checked] = ACTIONS(2957), + [anon_sym_BANG] = ACTIONS(2957), + [anon_sym_TILDE] = ACTIONS(2959), + [anon_sym_PLUS_PLUS] = ACTIONS(2959), + [anon_sym_DASH_DASH] = ACTIONS(2959), + [anon_sym_true] = ACTIONS(2957), + [anon_sym_false] = ACTIONS(2957), + [anon_sym_PLUS] = ACTIONS(2957), + [anon_sym_DASH] = ACTIONS(2957), + [anon_sym_STAR] = ACTIONS(2959), + [anon_sym_SLASH] = ACTIONS(2961), + [anon_sym_PERCENT] = ACTIONS(2963), + [anon_sym_CARET] = ACTIONS(2959), + [anon_sym_PIPE] = ACTIONS(2961), + [anon_sym_AMP] = ACTIONS(2957), + [anon_sym_LT_LT] = ACTIONS(2963), + [anon_sym_GT_GT] = ACTIONS(2961), + [anon_sym_GT_GT_GT] = ACTIONS(2963), + [anon_sym_EQ_EQ] = ACTIONS(2963), + [anon_sym_BANG_EQ] = ACTIONS(2963), + [anon_sym_GT_EQ] = ACTIONS(2963), + [anon_sym_LT_EQ] = ACTIONS(2963), + [anon_sym_this] = ACTIONS(2957), + [anon_sym_DOT] = ACTIONS(2961), + [anon_sym_scoped] = ACTIONS(2957), + [anon_sym_base] = ACTIONS(2957), + [anon_sym_var] = ACTIONS(2957), + [sym_predefined_type] = ACTIONS(2957), + [anon_sym_break] = ACTIONS(2957), + [anon_sym_unchecked] = ACTIONS(2957), + [anon_sym_continue] = ACTIONS(2957), + [anon_sym_do] = ACTIONS(2957), + [anon_sym_while] = ACTIONS(2957), + [anon_sym_for] = ACTIONS(2957), + [anon_sym_lock] = ACTIONS(2957), + [anon_sym_yield] = ACTIONS(2957), + [anon_sym_switch] = ACTIONS(2957), + [anon_sym_default] = ACTIONS(2957), + [anon_sym_throw] = ACTIONS(2957), + [anon_sym_try] = ACTIONS(2957), + [anon_sym_when] = ACTIONS(2957), + [anon_sym_await] = ACTIONS(2957), + [anon_sym_foreach] = ACTIONS(2957), + [anon_sym_goto] = ACTIONS(2957), + [anon_sym_if] = ACTIONS(2957), + [anon_sym_else] = ACTIONS(2957), + [anon_sym_DOT_DOT] = ACTIONS(2959), + [anon_sym_AMP_AMP] = ACTIONS(2963), + [anon_sym_PIPE_PIPE] = ACTIONS(2963), + [anon_sym_QMARK_QMARK] = ACTIONS(2963), + [anon_sym_from] = ACTIONS(2957), + [anon_sym_into] = ACTIONS(2957), + [anon_sym_join] = ACTIONS(2957), + [anon_sym_on] = ACTIONS(2957), + [anon_sym_equals] = ACTIONS(2957), + [anon_sym_let] = ACTIONS(2957), + [anon_sym_orderby] = ACTIONS(2957), + [anon_sym_ascending] = ACTIONS(2957), + [anon_sym_descending] = ACTIONS(2957), + [anon_sym_group] = ACTIONS(2957), + [anon_sym_by] = ACTIONS(2957), + [anon_sym_select] = ACTIONS(2957), + [anon_sym_as] = ACTIONS(2961), + [anon_sym_is] = ACTIONS(2961), + [anon_sym_DASH_GT] = ACTIONS(2963), + [anon_sym_stackalloc] = ACTIONS(2957), + [anon_sym_with] = ACTIONS(2961), + [anon_sym_sizeof] = ACTIONS(2957), + [anon_sym_typeof] = ACTIONS(2957), + [anon_sym___makeref] = ACTIONS(2957), + [anon_sym___reftype] = ACTIONS(2957), + [anon_sym___refvalue] = ACTIONS(2957), + [sym_null_literal] = ACTIONS(2957), + [anon_sym_SQUOTE] = ACTIONS(2959), + [sym_integer_literal] = ACTIONS(2957), + [sym_real_literal] = ACTIONS(2959), + [anon_sym_DQUOTE] = ACTIONS(2959), + [sym_verbatim_string_literal] = ACTIONS(2959), + [aux_sym_preproc_if_token1] = ACTIONS(2959), + [aux_sym_preproc_if_token3] = ACTIONS(2959), + [aux_sym_preproc_else_token1] = ACTIONS(2959), + [aux_sym_preproc_elif_token1] = ACTIONS(2959), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -359148,165 +363221,144 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(151), - [sym_interpolation_verbatim_start] = ACTIONS(153), - [sym_interpolation_raw_start] = ACTIONS(155), - [sym_raw_string_start] = ACTIONS(157), + [sym_interpolation_regular_start] = ACTIONS(2959), + [sym_interpolation_verbatim_start] = ACTIONS(2959), + [sym_interpolation_raw_start] = ACTIONS(2959), + [sym_raw_string_start] = ACTIONS(2959), }, - [1878] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(5910), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2247), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(5270), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3379), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3080), - [sym_postfix_unary_expression] = STATE(3111), - [sym_prefix_unary_expression] = STATE(3111), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6154), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3080), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3111), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3080), - [sym_member_access_expression] = STATE(2484), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3111), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7575), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(3080), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3080), - [sym_typeof_expression] = STATE(3080), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2484), - [sym_literal] = STATE(3080), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), - [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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), - [sym__identifier_token] = ACTIONS(25), - [anon_sym_alias] = ACTIONS(29), - [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1481), - [anon_sym_LPAREN] = ACTIONS(895), - [anon_sym_ref] = ACTIONS(897), - [anon_sym_LBRACE] = ACTIONS(1487), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), - [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1061), - [anon_sym_where] = ACTIONS(29), - [anon_sym_notnull] = ACTIONS(29), - [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1067), - [anon_sym_BANG] = ACTIONS(1495), - [anon_sym_TILDE] = ACTIONS(1495), - [anon_sym_PLUS_PLUS] = ACTIONS(1495), - [anon_sym_DASH_DASH] = ACTIONS(1495), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1493), - [anon_sym_DASH] = ACTIONS(1493), - [anon_sym_STAR] = ACTIONS(905), - [anon_sym_CARET] = ACTIONS(1495), - [anon_sym_AMP] = ACTIONS(1495), - [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(1067), - [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1079), - [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1081), - [anon_sym_DOT_DOT] = ACTIONS(911), - [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(1089), + [1903] = { + [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), + [ts_builtin_sym_end] = ACTIONS(2951), + [sym__identifier_token] = ACTIONS(2949), + [anon_sym_extern] = ACTIONS(2949), + [anon_sym_alias] = ACTIONS(2949), + [anon_sym_SEMI] = ACTIONS(2951), + [anon_sym_global] = ACTIONS(2949), + [anon_sym_using] = ACTIONS(2949), + [anon_sym_unsafe] = ACTIONS(2949), + [anon_sym_static] = ACTIONS(2949), + [anon_sym_LBRACK] = ACTIONS(2951), + [anon_sym_LPAREN] = ACTIONS(2951), + [anon_sym_return] = ACTIONS(2949), + [anon_sym_namespace] = ACTIONS(2949), + [anon_sym_class] = ACTIONS(2949), + [anon_sym_ref] = ACTIONS(2949), + [anon_sym_struct] = ACTIONS(2949), + [anon_sym_enum] = ACTIONS(2949), + [anon_sym_LBRACE] = ACTIONS(2951), + [anon_sym_interface] = ACTIONS(2949), + [anon_sym_delegate] = ACTIONS(2949), + [anon_sym_record] = ACTIONS(2949), + [anon_sym_abstract] = ACTIONS(2949), + [anon_sym_async] = ACTIONS(2949), + [anon_sym_const] = ACTIONS(2949), + [anon_sym_file] = ACTIONS(2949), + [anon_sym_fixed] = ACTIONS(2949), + [anon_sym_internal] = ACTIONS(2949), + [anon_sym_new] = ACTIONS(2949), + [anon_sym_override] = ACTIONS(2949), + [anon_sym_partial] = ACTIONS(2949), + [anon_sym_private] = ACTIONS(2949), + [anon_sym_protected] = ACTIONS(2949), + [anon_sym_public] = ACTIONS(2949), + [anon_sym_readonly] = ACTIONS(2949), + [anon_sym_required] = ACTIONS(2949), + [anon_sym_sealed] = ACTIONS(2949), + [anon_sym_virtual] = ACTIONS(2949), + [anon_sym_volatile] = ACTIONS(2949), + [anon_sym_LT] = ACTIONS(2953), + [anon_sym_GT] = ACTIONS(2953), + [anon_sym_where] = ACTIONS(2949), + [anon_sym_QMARK] = ACTIONS(2953), + [anon_sym_notnull] = ACTIONS(2949), + [anon_sym_unmanaged] = ACTIONS(2949), + [anon_sym_checked] = ACTIONS(2949), + [anon_sym_BANG] = ACTIONS(2949), + [anon_sym_TILDE] = ACTIONS(2951), + [anon_sym_PLUS_PLUS] = ACTIONS(2951), + [anon_sym_DASH_DASH] = ACTIONS(2951), + [anon_sym_true] = ACTIONS(2949), + [anon_sym_false] = ACTIONS(2949), + [anon_sym_PLUS] = ACTIONS(2949), + [anon_sym_DASH] = ACTIONS(2949), + [anon_sym_STAR] = ACTIONS(2951), + [anon_sym_SLASH] = ACTIONS(2953), + [anon_sym_PERCENT] = ACTIONS(2955), + [anon_sym_CARET] = ACTIONS(2951), + [anon_sym_PIPE] = ACTIONS(2953), + [anon_sym_AMP] = ACTIONS(2949), + [anon_sym_LT_LT] = ACTIONS(2955), + [anon_sym_GT_GT] = ACTIONS(2953), + [anon_sym_GT_GT_GT] = ACTIONS(2955), + [anon_sym_EQ_EQ] = ACTIONS(2955), + [anon_sym_BANG_EQ] = ACTIONS(2955), + [anon_sym_GT_EQ] = ACTIONS(2955), + [anon_sym_LT_EQ] = ACTIONS(2955), + [anon_sym_this] = ACTIONS(2949), + [anon_sym_DOT] = ACTIONS(2953), + [anon_sym_scoped] = ACTIONS(2949), + [anon_sym_base] = ACTIONS(2949), + [anon_sym_var] = ACTIONS(2949), + [sym_predefined_type] = ACTIONS(2949), + [anon_sym_break] = ACTIONS(2949), + [anon_sym_unchecked] = ACTIONS(2949), + [anon_sym_continue] = ACTIONS(2949), + [anon_sym_do] = ACTIONS(2949), + [anon_sym_while] = ACTIONS(2949), + [anon_sym_for] = ACTIONS(2949), + [anon_sym_lock] = ACTIONS(2949), + [anon_sym_yield] = ACTIONS(2949), + [anon_sym_switch] = ACTIONS(2949), + [anon_sym_default] = ACTIONS(2949), + [anon_sym_throw] = ACTIONS(2949), + [anon_sym_try] = ACTIONS(2949), + [anon_sym_when] = ACTIONS(2949), + [anon_sym_await] = ACTIONS(2949), + [anon_sym_foreach] = ACTIONS(2949), + [anon_sym_goto] = ACTIONS(2949), + [anon_sym_if] = ACTIONS(2949), + [anon_sym_else] = ACTIONS(2949), + [anon_sym_DOT_DOT] = ACTIONS(2951), + [anon_sym_AMP_AMP] = ACTIONS(2955), + [anon_sym_PIPE_PIPE] = ACTIONS(2955), + [anon_sym_QMARK_QMARK] = ACTIONS(2955), + [anon_sym_from] = ACTIONS(2949), + [anon_sym_into] = ACTIONS(2949), + [anon_sym_join] = ACTIONS(2949), + [anon_sym_on] = ACTIONS(2949), + [anon_sym_equals] = ACTIONS(2949), + [anon_sym_let] = ACTIONS(2949), + [anon_sym_orderby] = ACTIONS(2949), + [anon_sym_ascending] = ACTIONS(2949), + [anon_sym_descending] = ACTIONS(2949), + [anon_sym_group] = ACTIONS(2949), + [anon_sym_by] = ACTIONS(2949), + [anon_sym_select] = ACTIONS(2949), + [anon_sym_as] = ACTIONS(2953), + [anon_sym_is] = ACTIONS(2953), + [anon_sym_DASH_GT] = ACTIONS(2955), + [anon_sym_stackalloc] = ACTIONS(2949), + [anon_sym_with] = ACTIONS(2953), + [anon_sym_sizeof] = ACTIONS(2949), + [anon_sym_typeof] = ACTIONS(2949), + [anon_sym___makeref] = ACTIONS(2949), + [anon_sym___reftype] = ACTIONS(2949), + [anon_sym___refvalue] = ACTIONS(2949), + [sym_null_literal] = ACTIONS(2949), + [anon_sym_SQUOTE] = ACTIONS(2951), + [sym_integer_literal] = ACTIONS(2949), + [sym_real_literal] = ACTIONS(2951), + [anon_sym_DQUOTE] = ACTIONS(2951), + [sym_verbatim_string_literal] = ACTIONS(2951), + [aux_sym_preproc_if_token1] = ACTIONS(2951), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -359317,165 +363369,144 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(151), - [sym_interpolation_verbatim_start] = ACTIONS(153), - [sym_interpolation_raw_start] = ACTIONS(155), - [sym_raw_string_start] = ACTIONS(157), + [sym_interpolation_regular_start] = ACTIONS(2951), + [sym_interpolation_verbatim_start] = ACTIONS(2951), + [sym_interpolation_raw_start] = ACTIONS(2951), + [sym_raw_string_start] = ACTIONS(2951), }, - [1879] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(5890), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2375), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(5553), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3656), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3080), - [sym_postfix_unary_expression] = STATE(3111), - [sym_prefix_unary_expression] = STATE(3111), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6157), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3080), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3111), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3080), - [sym_member_access_expression] = STATE(2484), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3111), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7362), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(3080), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3080), - [sym_typeof_expression] = STATE(3080), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2484), - [sym_literal] = STATE(3080), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), - [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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), - [sym__identifier_token] = ACTIONS(25), - [anon_sym_alias] = ACTIONS(29), - [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1481), - [anon_sym_LPAREN] = ACTIONS(2177), - [anon_sym_ref] = ACTIONS(2179), - [anon_sym_LBRACE] = ACTIONS(1487), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), - [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(2181), - [anon_sym_where] = ACTIONS(29), - [anon_sym_notnull] = ACTIONS(29), - [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1067), - [anon_sym_BANG] = ACTIONS(2185), - [anon_sym_TILDE] = ACTIONS(2185), - [anon_sym_PLUS_PLUS] = ACTIONS(2185), - [anon_sym_DASH_DASH] = ACTIONS(2185), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(2183), - [anon_sym_DASH] = ACTIONS(2183), - [anon_sym_STAR] = ACTIONS(2187), - [anon_sym_CARET] = ACTIONS(2185), - [anon_sym_AMP] = ACTIONS(2185), - [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(1067), - [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(2189), - [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2191), - [anon_sym_DOT_DOT] = ACTIONS(2193), - [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(1089), + [1904] = { + [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), + [ts_builtin_sym_end] = ACTIONS(2959), + [sym__identifier_token] = ACTIONS(2957), + [anon_sym_extern] = ACTIONS(2957), + [anon_sym_alias] = ACTIONS(2957), + [anon_sym_SEMI] = ACTIONS(2959), + [anon_sym_global] = ACTIONS(2957), + [anon_sym_using] = ACTIONS(2957), + [anon_sym_unsafe] = ACTIONS(2957), + [anon_sym_static] = ACTIONS(2957), + [anon_sym_LBRACK] = ACTIONS(2959), + [anon_sym_LPAREN] = ACTIONS(2959), + [anon_sym_return] = ACTIONS(2957), + [anon_sym_namespace] = ACTIONS(2957), + [anon_sym_class] = ACTIONS(2957), + [anon_sym_ref] = ACTIONS(2957), + [anon_sym_struct] = ACTIONS(2957), + [anon_sym_enum] = ACTIONS(2957), + [anon_sym_LBRACE] = ACTIONS(2959), + [anon_sym_interface] = ACTIONS(2957), + [anon_sym_delegate] = ACTIONS(2957), + [anon_sym_record] = ACTIONS(2957), + [anon_sym_abstract] = ACTIONS(2957), + [anon_sym_async] = ACTIONS(2957), + [anon_sym_const] = ACTIONS(2957), + [anon_sym_file] = ACTIONS(2957), + [anon_sym_fixed] = ACTIONS(2957), + [anon_sym_internal] = ACTIONS(2957), + [anon_sym_new] = ACTIONS(2957), + [anon_sym_override] = ACTIONS(2957), + [anon_sym_partial] = ACTIONS(2957), + [anon_sym_private] = ACTIONS(2957), + [anon_sym_protected] = ACTIONS(2957), + [anon_sym_public] = ACTIONS(2957), + [anon_sym_readonly] = ACTIONS(2957), + [anon_sym_required] = ACTIONS(2957), + [anon_sym_sealed] = ACTIONS(2957), + [anon_sym_virtual] = ACTIONS(2957), + [anon_sym_volatile] = ACTIONS(2957), + [anon_sym_LT] = ACTIONS(2961), + [anon_sym_GT] = ACTIONS(2961), + [anon_sym_where] = ACTIONS(2957), + [anon_sym_QMARK] = ACTIONS(2961), + [anon_sym_notnull] = ACTIONS(2957), + [anon_sym_unmanaged] = ACTIONS(2957), + [anon_sym_checked] = ACTIONS(2957), + [anon_sym_BANG] = ACTIONS(2957), + [anon_sym_TILDE] = ACTIONS(2959), + [anon_sym_PLUS_PLUS] = ACTIONS(2959), + [anon_sym_DASH_DASH] = ACTIONS(2959), + [anon_sym_true] = ACTIONS(2957), + [anon_sym_false] = ACTIONS(2957), + [anon_sym_PLUS] = ACTIONS(2957), + [anon_sym_DASH] = ACTIONS(2957), + [anon_sym_STAR] = ACTIONS(2959), + [anon_sym_SLASH] = ACTIONS(2961), + [anon_sym_PERCENT] = ACTIONS(2963), + [anon_sym_CARET] = ACTIONS(2959), + [anon_sym_PIPE] = ACTIONS(2961), + [anon_sym_AMP] = ACTIONS(2957), + [anon_sym_LT_LT] = ACTIONS(2963), + [anon_sym_GT_GT] = ACTIONS(2961), + [anon_sym_GT_GT_GT] = ACTIONS(2963), + [anon_sym_EQ_EQ] = ACTIONS(2963), + [anon_sym_BANG_EQ] = ACTIONS(2963), + [anon_sym_GT_EQ] = ACTIONS(2963), + [anon_sym_LT_EQ] = ACTIONS(2963), + [anon_sym_this] = ACTIONS(2957), + [anon_sym_DOT] = ACTIONS(2961), + [anon_sym_scoped] = ACTIONS(2957), + [anon_sym_base] = ACTIONS(2957), + [anon_sym_var] = ACTIONS(2957), + [sym_predefined_type] = ACTIONS(2957), + [anon_sym_break] = ACTIONS(2957), + [anon_sym_unchecked] = ACTIONS(2957), + [anon_sym_continue] = ACTIONS(2957), + [anon_sym_do] = ACTIONS(2957), + [anon_sym_while] = ACTIONS(2957), + [anon_sym_for] = ACTIONS(2957), + [anon_sym_lock] = ACTIONS(2957), + [anon_sym_yield] = ACTIONS(2957), + [anon_sym_switch] = ACTIONS(2957), + [anon_sym_default] = ACTIONS(2957), + [anon_sym_throw] = ACTIONS(2957), + [anon_sym_try] = ACTIONS(2957), + [anon_sym_when] = ACTIONS(2957), + [anon_sym_await] = ACTIONS(2957), + [anon_sym_foreach] = ACTIONS(2957), + [anon_sym_goto] = ACTIONS(2957), + [anon_sym_if] = ACTIONS(2957), + [anon_sym_else] = ACTIONS(2957), + [anon_sym_DOT_DOT] = ACTIONS(2959), + [anon_sym_AMP_AMP] = ACTIONS(2963), + [anon_sym_PIPE_PIPE] = ACTIONS(2963), + [anon_sym_QMARK_QMARK] = ACTIONS(2963), + [anon_sym_from] = ACTIONS(2957), + [anon_sym_into] = ACTIONS(2957), + [anon_sym_join] = ACTIONS(2957), + [anon_sym_on] = ACTIONS(2957), + [anon_sym_equals] = ACTIONS(2957), + [anon_sym_let] = ACTIONS(2957), + [anon_sym_orderby] = ACTIONS(2957), + [anon_sym_ascending] = ACTIONS(2957), + [anon_sym_descending] = ACTIONS(2957), + [anon_sym_group] = ACTIONS(2957), + [anon_sym_by] = ACTIONS(2957), + [anon_sym_select] = ACTIONS(2957), + [anon_sym_as] = ACTIONS(2961), + [anon_sym_is] = ACTIONS(2961), + [anon_sym_DASH_GT] = ACTIONS(2963), + [anon_sym_stackalloc] = ACTIONS(2957), + [anon_sym_with] = ACTIONS(2961), + [anon_sym_sizeof] = ACTIONS(2957), + [anon_sym_typeof] = ACTIONS(2957), + [anon_sym___makeref] = ACTIONS(2957), + [anon_sym___reftype] = ACTIONS(2957), + [anon_sym___refvalue] = ACTIONS(2957), + [sym_null_literal] = ACTIONS(2957), + [anon_sym_SQUOTE] = ACTIONS(2959), + [sym_integer_literal] = ACTIONS(2957), + [sym_real_literal] = ACTIONS(2959), + [anon_sym_DQUOTE] = ACTIONS(2959), + [sym_verbatim_string_literal] = ACTIONS(2959), + [aux_sym_preproc_if_token1] = ACTIONS(2959), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -359486,165 +363517,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(2959), + [sym_interpolation_verbatim_start] = ACTIONS(2959), + [sym_interpolation_raw_start] = ACTIONS(2959), + [sym_raw_string_start] = ACTIONS(2959), }, - [1880] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(5890), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2375), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(5323), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3656), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3080), - [sym_postfix_unary_expression] = STATE(3111), - [sym_prefix_unary_expression] = STATE(3111), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6157), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3080), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3111), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3080), - [sym_member_access_expression] = STATE(2484), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3111), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7362), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(3080), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3080), - [sym_typeof_expression] = STATE(3080), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2484), - [sym_literal] = STATE(3080), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), - [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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), - [sym__identifier_token] = ACTIONS(25), - [anon_sym_alias] = ACTIONS(29), - [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1481), - [anon_sym_LPAREN] = ACTIONS(2177), - [anon_sym_ref] = ACTIONS(2179), - [anon_sym_LBRACE] = ACTIONS(1487), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), - [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(2181), - [anon_sym_where] = ACTIONS(29), - [anon_sym_notnull] = ACTIONS(29), - [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1067), - [anon_sym_BANG] = ACTIONS(2185), - [anon_sym_TILDE] = ACTIONS(2185), - [anon_sym_PLUS_PLUS] = ACTIONS(2185), - [anon_sym_DASH_DASH] = ACTIONS(2185), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(2183), - [anon_sym_DASH] = ACTIONS(2183), - [anon_sym_STAR] = ACTIONS(2187), - [anon_sym_CARET] = ACTIONS(2185), - [anon_sym_AMP] = ACTIONS(2185), - [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(1067), - [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(2189), - [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2191), - [anon_sym_DOT_DOT] = ACTIONS(2193), - [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(1089), + [1905] = { + [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), + [sym__identifier_token] = ACTIONS(2957), + [anon_sym_extern] = ACTIONS(2957), + [anon_sym_alias] = ACTIONS(2957), + [anon_sym_SEMI] = ACTIONS(2959), + [anon_sym_global] = ACTIONS(2957), + [anon_sym_using] = ACTIONS(2957), + [anon_sym_unsafe] = ACTIONS(2957), + [anon_sym_static] = ACTIONS(2957), + [anon_sym_LBRACK] = ACTIONS(2959), + [anon_sym_COMMA] = ACTIONS(2963), + [anon_sym_LPAREN] = ACTIONS(2959), + [anon_sym_return] = ACTIONS(2957), + [anon_sym_ref] = ACTIONS(2957), + [anon_sym_LBRACE] = ACTIONS(2959), + [anon_sym_RBRACE] = ACTIONS(2959), + [anon_sym_delegate] = ACTIONS(2957), + [anon_sym_abstract] = ACTIONS(2957), + [anon_sym_async] = ACTIONS(2957), + [anon_sym_const] = ACTIONS(2957), + [anon_sym_file] = ACTIONS(2957), + [anon_sym_fixed] = ACTIONS(2957), + [anon_sym_internal] = ACTIONS(2957), + [anon_sym_new] = ACTIONS(2957), + [anon_sym_override] = ACTIONS(2957), + [anon_sym_partial] = ACTIONS(2957), + [anon_sym_private] = ACTIONS(2957), + [anon_sym_protected] = ACTIONS(2957), + [anon_sym_public] = ACTIONS(2957), + [anon_sym_readonly] = ACTIONS(2957), + [anon_sym_required] = ACTIONS(2957), + [anon_sym_sealed] = ACTIONS(2957), + [anon_sym_virtual] = ACTIONS(2957), + [anon_sym_volatile] = ACTIONS(2957), + [anon_sym_LT] = ACTIONS(2961), + [anon_sym_GT] = ACTIONS(2961), + [anon_sym_where] = ACTIONS(2957), + [anon_sym_QMARK] = ACTIONS(2961), + [anon_sym_notnull] = ACTIONS(2957), + [anon_sym_unmanaged] = ACTIONS(2957), + [anon_sym_checked] = ACTIONS(2957), + [anon_sym_BANG] = ACTIONS(2957), + [anon_sym_TILDE] = ACTIONS(2959), + [anon_sym_PLUS_PLUS] = ACTIONS(2959), + [anon_sym_DASH_DASH] = ACTIONS(2959), + [anon_sym_true] = ACTIONS(2957), + [anon_sym_false] = ACTIONS(2957), + [anon_sym_PLUS] = ACTIONS(2957), + [anon_sym_DASH] = ACTIONS(2957), + [anon_sym_STAR] = ACTIONS(2959), + [anon_sym_SLASH] = ACTIONS(2961), + [anon_sym_PERCENT] = ACTIONS(2963), + [anon_sym_CARET] = ACTIONS(2959), + [anon_sym_PIPE] = ACTIONS(2961), + [anon_sym_AMP] = ACTIONS(2957), + [anon_sym_LT_LT] = ACTIONS(2963), + [anon_sym_GT_GT] = ACTIONS(2961), + [anon_sym_GT_GT_GT] = ACTIONS(2963), + [anon_sym_EQ_EQ] = ACTIONS(2963), + [anon_sym_BANG_EQ] = ACTIONS(2963), + [anon_sym_GT_EQ] = ACTIONS(2963), + [anon_sym_LT_EQ] = ACTIONS(2963), + [anon_sym_this] = ACTIONS(2957), + [anon_sym_DOT] = ACTIONS(2961), + [anon_sym_scoped] = ACTIONS(2957), + [anon_sym_base] = ACTIONS(2957), + [anon_sym_var] = ACTIONS(2957), + [sym_predefined_type] = ACTIONS(2957), + [anon_sym_break] = ACTIONS(2957), + [anon_sym_unchecked] = ACTIONS(2957), + [anon_sym_continue] = ACTIONS(2957), + [anon_sym_do] = ACTIONS(2957), + [anon_sym_while] = ACTIONS(2957), + [anon_sym_for] = ACTIONS(2957), + [anon_sym_lock] = ACTIONS(2957), + [anon_sym_yield] = ACTIONS(2957), + [anon_sym_switch] = ACTIONS(2957), + [anon_sym_case] = ACTIONS(2957), + [anon_sym_default] = ACTIONS(2957), + [anon_sym_throw] = ACTIONS(2957), + [anon_sym_try] = ACTIONS(2957), + [anon_sym_when] = ACTIONS(2957), + [anon_sym_await] = ACTIONS(2957), + [anon_sym_foreach] = ACTIONS(2957), + [anon_sym_goto] = ACTIONS(2957), + [anon_sym_if] = ACTIONS(2957), + [anon_sym_else] = ACTIONS(2957), + [anon_sym_DOT_DOT] = ACTIONS(2959), + [anon_sym_AMP_AMP] = ACTIONS(2963), + [anon_sym_PIPE_PIPE] = ACTIONS(2963), + [anon_sym_QMARK_QMARK] = ACTIONS(2963), + [anon_sym_from] = ACTIONS(2957), + [anon_sym_into] = ACTIONS(2957), + [anon_sym_join] = ACTIONS(2957), + [anon_sym_on] = ACTIONS(2957), + [anon_sym_equals] = ACTIONS(2957), + [anon_sym_let] = ACTIONS(2957), + [anon_sym_orderby] = ACTIONS(2957), + [anon_sym_ascending] = ACTIONS(2957), + [anon_sym_descending] = ACTIONS(2957), + [anon_sym_group] = ACTIONS(2957), + [anon_sym_by] = ACTIONS(2957), + [anon_sym_select] = ACTIONS(2957), + [anon_sym_as] = ACTIONS(2961), + [anon_sym_is] = ACTIONS(2961), + [anon_sym_DASH_GT] = ACTIONS(2963), + [anon_sym_stackalloc] = ACTIONS(2957), + [anon_sym_with] = ACTIONS(2961), + [anon_sym_sizeof] = ACTIONS(2957), + [anon_sym_typeof] = ACTIONS(2957), + [anon_sym___makeref] = ACTIONS(2957), + [anon_sym___reftype] = ACTIONS(2957), + [anon_sym___refvalue] = ACTIONS(2957), + [sym_null_literal] = ACTIONS(2957), + [anon_sym_SQUOTE] = ACTIONS(2959), + [sym_integer_literal] = ACTIONS(2957), + [sym_real_literal] = ACTIONS(2959), + [anon_sym_DQUOTE] = ACTIONS(2959), + [sym_verbatim_string_literal] = ACTIONS(2959), + [aux_sym_preproc_if_token1] = ACTIONS(2959), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -359655,165 +363661,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(2959), + [sym_interpolation_verbatim_start] = ACTIONS(2959), + [sym_interpolation_raw_start] = ACTIONS(2959), + [sym_raw_string_start] = ACTIONS(2959), }, - [1881] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(5890), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2375), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(5554), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3656), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3080), - [sym_postfix_unary_expression] = STATE(3111), - [sym_prefix_unary_expression] = STATE(3111), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6157), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3080), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3111), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3080), - [sym_member_access_expression] = STATE(2484), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3111), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7362), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(3080), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3080), - [sym_typeof_expression] = STATE(3080), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2484), - [sym_literal] = STATE(3080), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), - [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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), - [sym__identifier_token] = ACTIONS(25), - [anon_sym_alias] = ACTIONS(29), - [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1481), - [anon_sym_LPAREN] = ACTIONS(2177), - [anon_sym_ref] = ACTIONS(2179), - [anon_sym_LBRACE] = ACTIONS(1487), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), - [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(2181), - [anon_sym_where] = ACTIONS(29), - [anon_sym_notnull] = ACTIONS(29), - [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1067), - [anon_sym_BANG] = ACTIONS(2185), - [anon_sym_TILDE] = ACTIONS(2185), - [anon_sym_PLUS_PLUS] = ACTIONS(2185), - [anon_sym_DASH_DASH] = ACTIONS(2185), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(2183), - [anon_sym_DASH] = ACTIONS(2183), - [anon_sym_STAR] = ACTIONS(2187), - [anon_sym_CARET] = ACTIONS(2185), - [anon_sym_AMP] = ACTIONS(2185), - [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(1067), - [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(2189), - [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2191), - [anon_sym_DOT_DOT] = ACTIONS(2193), - [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(1089), + [1906] = { + [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), + [sym__identifier_token] = ACTIONS(2949), + [anon_sym_extern] = ACTIONS(2949), + [anon_sym_alias] = ACTIONS(2949), + [anon_sym_SEMI] = ACTIONS(2951), + [anon_sym_global] = ACTIONS(2949), + [anon_sym_using] = ACTIONS(2949), + [anon_sym_unsafe] = ACTIONS(2949), + [anon_sym_static] = ACTIONS(2949), + [anon_sym_LBRACK] = ACTIONS(2951), + [anon_sym_COMMA] = ACTIONS(2955), + [anon_sym_LPAREN] = ACTIONS(2951), + [anon_sym_return] = ACTIONS(2949), + [anon_sym_ref] = ACTIONS(2949), + [anon_sym_LBRACE] = ACTIONS(2951), + [anon_sym_RBRACE] = ACTIONS(2951), + [anon_sym_delegate] = ACTIONS(2949), + [anon_sym_abstract] = ACTIONS(2949), + [anon_sym_async] = ACTIONS(2949), + [anon_sym_const] = ACTIONS(2949), + [anon_sym_file] = ACTIONS(2949), + [anon_sym_fixed] = ACTIONS(2949), + [anon_sym_internal] = ACTIONS(2949), + [anon_sym_new] = ACTIONS(2949), + [anon_sym_override] = ACTIONS(2949), + [anon_sym_partial] = ACTIONS(2949), + [anon_sym_private] = ACTIONS(2949), + [anon_sym_protected] = ACTIONS(2949), + [anon_sym_public] = ACTIONS(2949), + [anon_sym_readonly] = ACTIONS(2949), + [anon_sym_required] = ACTIONS(2949), + [anon_sym_sealed] = ACTIONS(2949), + [anon_sym_virtual] = ACTIONS(2949), + [anon_sym_volatile] = ACTIONS(2949), + [anon_sym_LT] = ACTIONS(2953), + [anon_sym_GT] = ACTIONS(2953), + [anon_sym_where] = ACTIONS(2949), + [anon_sym_QMARK] = ACTIONS(2953), + [anon_sym_notnull] = ACTIONS(2949), + [anon_sym_unmanaged] = ACTIONS(2949), + [anon_sym_checked] = ACTIONS(2949), + [anon_sym_BANG] = ACTIONS(2949), + [anon_sym_TILDE] = ACTIONS(2951), + [anon_sym_PLUS_PLUS] = ACTIONS(2951), + [anon_sym_DASH_DASH] = ACTIONS(2951), + [anon_sym_true] = ACTIONS(2949), + [anon_sym_false] = ACTIONS(2949), + [anon_sym_PLUS] = ACTIONS(2949), + [anon_sym_DASH] = ACTIONS(2949), + [anon_sym_STAR] = ACTIONS(2951), + [anon_sym_SLASH] = ACTIONS(2953), + [anon_sym_PERCENT] = ACTIONS(2955), + [anon_sym_CARET] = ACTIONS(2951), + [anon_sym_PIPE] = ACTIONS(2953), + [anon_sym_AMP] = ACTIONS(2949), + [anon_sym_LT_LT] = ACTIONS(2955), + [anon_sym_GT_GT] = ACTIONS(2953), + [anon_sym_GT_GT_GT] = ACTIONS(2955), + [anon_sym_EQ_EQ] = ACTIONS(2955), + [anon_sym_BANG_EQ] = ACTIONS(2955), + [anon_sym_GT_EQ] = ACTIONS(2955), + [anon_sym_LT_EQ] = ACTIONS(2955), + [anon_sym_this] = ACTIONS(2949), + [anon_sym_DOT] = ACTIONS(2953), + [anon_sym_scoped] = ACTIONS(2949), + [anon_sym_base] = ACTIONS(2949), + [anon_sym_var] = ACTIONS(2949), + [sym_predefined_type] = ACTIONS(2949), + [anon_sym_break] = ACTIONS(2949), + [anon_sym_unchecked] = ACTIONS(2949), + [anon_sym_continue] = ACTIONS(2949), + [anon_sym_do] = ACTIONS(2949), + [anon_sym_while] = ACTIONS(2949), + [anon_sym_for] = ACTIONS(2949), + [anon_sym_lock] = ACTIONS(2949), + [anon_sym_yield] = ACTIONS(2949), + [anon_sym_switch] = ACTIONS(2949), + [anon_sym_case] = ACTIONS(2949), + [anon_sym_default] = ACTIONS(2949), + [anon_sym_throw] = ACTIONS(2949), + [anon_sym_try] = ACTIONS(2949), + [anon_sym_when] = ACTIONS(2949), + [anon_sym_await] = ACTIONS(2949), + [anon_sym_foreach] = ACTIONS(2949), + [anon_sym_goto] = ACTIONS(2949), + [anon_sym_if] = ACTIONS(2949), + [anon_sym_else] = ACTIONS(2949), + [anon_sym_DOT_DOT] = ACTIONS(2951), + [anon_sym_AMP_AMP] = ACTIONS(2955), + [anon_sym_PIPE_PIPE] = ACTIONS(2955), + [anon_sym_QMARK_QMARK] = ACTIONS(2955), + [anon_sym_from] = ACTIONS(2949), + [anon_sym_into] = ACTIONS(2949), + [anon_sym_join] = ACTIONS(2949), + [anon_sym_on] = ACTIONS(2949), + [anon_sym_equals] = ACTIONS(2949), + [anon_sym_let] = ACTIONS(2949), + [anon_sym_orderby] = ACTIONS(2949), + [anon_sym_ascending] = ACTIONS(2949), + [anon_sym_descending] = ACTIONS(2949), + [anon_sym_group] = ACTIONS(2949), + [anon_sym_by] = ACTIONS(2949), + [anon_sym_select] = ACTIONS(2949), + [anon_sym_as] = ACTIONS(2953), + [anon_sym_is] = ACTIONS(2953), + [anon_sym_DASH_GT] = ACTIONS(2955), + [anon_sym_stackalloc] = ACTIONS(2949), + [anon_sym_with] = ACTIONS(2953), + [anon_sym_sizeof] = ACTIONS(2949), + [anon_sym_typeof] = ACTIONS(2949), + [anon_sym___makeref] = ACTIONS(2949), + [anon_sym___reftype] = ACTIONS(2949), + [anon_sym___refvalue] = ACTIONS(2949), + [sym_null_literal] = ACTIONS(2949), + [anon_sym_SQUOTE] = ACTIONS(2951), + [sym_integer_literal] = ACTIONS(2949), + [sym_real_literal] = ACTIONS(2951), + [anon_sym_DQUOTE] = ACTIONS(2951), + [sym_verbatim_string_literal] = ACTIONS(2951), + [aux_sym_preproc_if_token1] = ACTIONS(2951), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -359824,165 +363805,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(2951), + [sym_interpolation_verbatim_start] = ACTIONS(2951), + [sym_interpolation_raw_start] = ACTIONS(2951), + [sym_raw_string_start] = ACTIONS(2951), }, - [1882] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(5890), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2375), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(5555), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3656), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3080), - [sym_postfix_unary_expression] = STATE(3111), - [sym_prefix_unary_expression] = STATE(3111), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6157), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3080), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3111), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3080), - [sym_member_access_expression] = STATE(2484), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3111), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7362), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(3080), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3080), - [sym_typeof_expression] = STATE(3080), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2484), - [sym_literal] = STATE(3080), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), - [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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), - [sym__identifier_token] = ACTIONS(25), - [anon_sym_alias] = ACTIONS(29), - [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1481), - [anon_sym_LPAREN] = ACTIONS(2177), - [anon_sym_ref] = ACTIONS(2179), - [anon_sym_LBRACE] = ACTIONS(1487), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), - [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(2181), - [anon_sym_where] = ACTIONS(29), - [anon_sym_notnull] = ACTIONS(29), - [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1067), - [anon_sym_BANG] = ACTIONS(2185), - [anon_sym_TILDE] = ACTIONS(2185), - [anon_sym_PLUS_PLUS] = ACTIONS(2185), - [anon_sym_DASH_DASH] = ACTIONS(2185), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(2183), - [anon_sym_DASH] = ACTIONS(2183), - [anon_sym_STAR] = ACTIONS(2187), - [anon_sym_CARET] = ACTIONS(2185), - [anon_sym_AMP] = ACTIONS(2185), - [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(1067), - [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(2189), - [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2191), - [anon_sym_DOT_DOT] = ACTIONS(2193), - [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(1089), + [1907] = { + [sym_using_directive] = STATE(2756), + [sym_attribute_list] = STATE(2848), + [sym__attribute_list] = STATE(2953), + [sym_namespace_declaration] = STATE(2756), + [sym_class_declaration] = STATE(2756), + [sym__class_declaration_initializer] = STATE(6696), + [sym_struct_declaration] = STATE(2756), + [sym__struct_declaration_initializer] = STATE(6697), + [sym_enum_declaration] = STATE(2756), + [sym__enum_declaration_initializer] = STATE(6955), + [sym_interface_declaration] = STATE(2756), + [sym__interface_declaration_initializer] = STATE(6701), + [sym_delegate_declaration] = STATE(2756), + [sym__delegate_declaration_initializer] = STATE(6703), + [sym_record_declaration] = STATE(2756), + [sym__record_declaration_initializer] = STATE(6704), + [sym_modifier] = STATE(3114), + [sym_operator_declaration] = STATE(2756), + [sym_conversion_operator_declaration] = STATE(2756), + [sym_declaration] = STATE(2773), + [sym_field_declaration] = STATE(2756), + [sym_constructor_declaration] = STATE(2756), + [sym__constructor_declaration_initializer] = STATE(6431), + [sym_destructor_declaration] = STATE(2756), + [sym_method_declaration] = STATE(2756), + [sym_event_declaration] = STATE(2756), + [sym_event_field_declaration] = STATE(2756), + [sym_indexer_declaration] = STATE(2756), + [sym_property_declaration] = STATE(2756), + [sym_variable_declaration] = STATE(7638), + [sym__name] = STATE(4369), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(4068), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(4073), + [sym_type] = STATE(5634), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_identifier] = STATE(5721), + [sym__reserved_identifier] = STATE(3654), + [sym_preproc_if] = STATE(2756), + [sym_preproc_else] = STATE(7646), + [sym_preproc_elif] = STATE(7646), + [sym_preproc_if_in_attribute_list] = STATE(3034), + [sym_preproc_else_in_attribute_list] = STATE(7380), + [sym_preproc_elif_in_attribute_list] = STATE(7380), + [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(2195), + [aux_sym__class_declaration_initializer_repeat2] = STATE(2273), + [aux_sym_declaration_list_repeat1] = STATE(1910), + [sym__identifier_token] = ACTIONS(2965), + [anon_sym_extern] = ACTIONS(2967), + [anon_sym_alias] = ACTIONS(2969), + [anon_sym_global] = ACTIONS(2971), + [anon_sym_using] = ACTIONS(2973), + [anon_sym_unsafe] = ACTIONS(65), + [anon_sym_static] = ACTIONS(65), + [anon_sym_LBRACK] = ACTIONS(2975), + [anon_sym_LPAREN] = ACTIONS(2977), + [anon_sym_event] = ACTIONS(2979), + [anon_sym_namespace] = ACTIONS(2981), + [anon_sym_class] = ACTIONS(49), + [anon_sym_ref] = ACTIONS(2983), + [anon_sym_struct] = ACTIONS(53), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_interface] = ACTIONS(59), + [anon_sym_delegate] = ACTIONS(2985), + [anon_sym_record] = ACTIONS(63), + [anon_sym_abstract] = ACTIONS(65), + [anon_sym_async] = ACTIONS(65), + [anon_sym_const] = ACTIONS(65), + [anon_sym_file] = ACTIONS(2987), + [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(2969), + [anon_sym_notnull] = ACTIONS(2969), + [anon_sym_unmanaged] = ACTIONS(2969), + [anon_sym_TILDE] = ACTIONS(2989), + [anon_sym_implicit] = ACTIONS(2991), + [anon_sym_explicit] = ACTIONS(2991), + [anon_sym_scoped] = ACTIONS(2993), + [anon_sym_var] = ACTIONS(2995), + [sym_predefined_type] = ACTIONS(2997), + [anon_sym_yield] = ACTIONS(2969), + [anon_sym_when] = ACTIONS(2969), + [anon_sym_from] = ACTIONS(2969), + [anon_sym_into] = ACTIONS(2969), + [anon_sym_join] = ACTIONS(2969), + [anon_sym_on] = ACTIONS(2969), + [anon_sym_equals] = ACTIONS(2969), + [anon_sym_let] = ACTIONS(2969), + [anon_sym_orderby] = ACTIONS(2969), + [anon_sym_ascending] = ACTIONS(2969), + [anon_sym_descending] = ACTIONS(2969), + [anon_sym_group] = ACTIONS(2969), + [anon_sym_by] = ACTIONS(2969), + [anon_sym_select] = ACTIONS(2969), + [aux_sym_preproc_if_token1] = ACTIONS(2999), + [aux_sym_preproc_if_token3] = ACTIONS(3001), + [aux_sym_preproc_else_token1] = ACTIONS(3003), + [aux_sym_preproc_elif_token1] = ACTIONS(3005), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -359993,165 +363949,136 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(151), - [sym_interpolation_verbatim_start] = ACTIONS(153), - [sym_interpolation_raw_start] = ACTIONS(155), - [sym_raw_string_start] = ACTIONS(157), }, - [1883] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(5890), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2375), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(5556), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3656), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3080), - [sym_postfix_unary_expression] = STATE(3111), - [sym_prefix_unary_expression] = STATE(3111), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6157), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3080), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3111), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3080), - [sym_member_access_expression] = STATE(2484), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3111), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7362), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(3080), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3080), - [sym_typeof_expression] = STATE(3080), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2484), - [sym_literal] = STATE(3080), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), - [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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), - [sym__identifier_token] = ACTIONS(25), - [anon_sym_alias] = ACTIONS(29), - [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1481), - [anon_sym_LPAREN] = ACTIONS(2177), - [anon_sym_ref] = ACTIONS(2179), - [anon_sym_LBRACE] = ACTIONS(1487), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), - [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(2181), - [anon_sym_where] = ACTIONS(29), - [anon_sym_notnull] = ACTIONS(29), - [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1067), - [anon_sym_BANG] = ACTIONS(2185), - [anon_sym_TILDE] = ACTIONS(2185), - [anon_sym_PLUS_PLUS] = ACTIONS(2185), - [anon_sym_DASH_DASH] = ACTIONS(2185), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(2183), - [anon_sym_DASH] = ACTIONS(2183), - [anon_sym_STAR] = ACTIONS(2187), - [anon_sym_CARET] = ACTIONS(2185), - [anon_sym_AMP] = ACTIONS(2185), - [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(1067), - [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(2189), - [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2191), - [anon_sym_DOT_DOT] = ACTIONS(2193), - [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(1089), + [1908] = { + [sym_using_directive] = STATE(2756), + [sym_attribute_list] = STATE(2841), + [sym__attribute_list] = STATE(2953), + [sym_namespace_declaration] = STATE(2756), + [sym_class_declaration] = STATE(2756), + [sym__class_declaration_initializer] = STATE(6696), + [sym_struct_declaration] = STATE(2756), + [sym__struct_declaration_initializer] = STATE(6697), + [sym_enum_declaration] = STATE(2756), + [sym__enum_declaration_initializer] = STATE(6955), + [sym_interface_declaration] = STATE(2756), + [sym__interface_declaration_initializer] = STATE(6701), + [sym_delegate_declaration] = STATE(2756), + [sym__delegate_declaration_initializer] = STATE(6703), + [sym_record_declaration] = STATE(2756), + [sym__record_declaration_initializer] = STATE(6704), + [sym_modifier] = STATE(3114), + [sym_operator_declaration] = STATE(2756), + [sym_conversion_operator_declaration] = STATE(2756), + [sym_declaration] = STATE(2773), + [sym_field_declaration] = STATE(2756), + [sym_constructor_declaration] = STATE(2756), + [sym__constructor_declaration_initializer] = STATE(6431), + [sym_destructor_declaration] = STATE(2756), + [sym_method_declaration] = STATE(2756), + [sym_event_declaration] = STATE(2756), + [sym_event_field_declaration] = STATE(2756), + [sym_indexer_declaration] = STATE(2756), + [sym_property_declaration] = STATE(2756), + [sym_variable_declaration] = STATE(7638), + [sym__name] = STATE(4369), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(4068), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(4073), + [sym_type] = STATE(5634), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_identifier] = STATE(5721), + [sym__reserved_identifier] = STATE(3654), + [sym_preproc_if] = STATE(2756), + [sym_preproc_else] = STATE(7565), + [sym_preproc_elif] = STATE(7565), + [sym_preproc_if_in_attribute_list] = STATE(3034), + [sym_preproc_else_in_attribute_list] = STATE(7598), + [sym_preproc_elif_in_attribute_list] = STATE(7598), + [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(2195), + [aux_sym__class_declaration_initializer_repeat2] = STATE(2273), + [aux_sym_declaration_list_repeat1] = STATE(1909), + [sym__identifier_token] = ACTIONS(2965), + [anon_sym_extern] = ACTIONS(2967), + [anon_sym_alias] = ACTIONS(2969), + [anon_sym_global] = ACTIONS(2971), + [anon_sym_using] = ACTIONS(2973), + [anon_sym_unsafe] = ACTIONS(65), + [anon_sym_static] = ACTIONS(65), + [anon_sym_LBRACK] = ACTIONS(2975), + [anon_sym_LPAREN] = ACTIONS(2977), + [anon_sym_event] = ACTIONS(2979), + [anon_sym_namespace] = ACTIONS(2981), + [anon_sym_class] = ACTIONS(49), + [anon_sym_ref] = ACTIONS(2983), + [anon_sym_struct] = ACTIONS(53), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_interface] = ACTIONS(59), + [anon_sym_delegate] = ACTIONS(2985), + [anon_sym_record] = ACTIONS(63), + [anon_sym_abstract] = ACTIONS(65), + [anon_sym_async] = ACTIONS(65), + [anon_sym_const] = ACTIONS(65), + [anon_sym_file] = ACTIONS(2987), + [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(2969), + [anon_sym_notnull] = ACTIONS(2969), + [anon_sym_unmanaged] = ACTIONS(2969), + [anon_sym_TILDE] = ACTIONS(2989), + [anon_sym_implicit] = ACTIONS(2991), + [anon_sym_explicit] = ACTIONS(2991), + [anon_sym_scoped] = ACTIONS(2993), + [anon_sym_var] = ACTIONS(2995), + [sym_predefined_type] = ACTIONS(2997), + [anon_sym_yield] = ACTIONS(2969), + [anon_sym_when] = ACTIONS(2969), + [anon_sym_from] = ACTIONS(2969), + [anon_sym_into] = ACTIONS(2969), + [anon_sym_join] = ACTIONS(2969), + [anon_sym_on] = ACTIONS(2969), + [anon_sym_equals] = ACTIONS(2969), + [anon_sym_let] = ACTIONS(2969), + [anon_sym_orderby] = ACTIONS(2969), + [anon_sym_ascending] = ACTIONS(2969), + [anon_sym_descending] = ACTIONS(2969), + [anon_sym_group] = ACTIONS(2969), + [anon_sym_by] = ACTIONS(2969), + [anon_sym_select] = ACTIONS(2969), + [aux_sym_preproc_if_token1] = ACTIONS(2999), + [aux_sym_preproc_if_token3] = ACTIONS(3007), + [aux_sym_preproc_else_token1] = ACTIONS(3003), + [aux_sym_preproc_elif_token1] = ACTIONS(3005), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -360162,165 +364089,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(151), - [sym_interpolation_verbatim_start] = ACTIONS(153), - [sym_interpolation_raw_start] = ACTIONS(155), - [sym_raw_string_start] = ACTIONS(157), }, - [1884] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(5890), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2375), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(5557), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3656), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3080), - [sym_postfix_unary_expression] = STATE(3111), - [sym_prefix_unary_expression] = STATE(3111), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6157), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3080), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3111), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3080), - [sym_member_access_expression] = STATE(2484), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3111), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7362), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(3080), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3080), - [sym_typeof_expression] = STATE(3080), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2484), - [sym_literal] = STATE(3080), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), - [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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), - [sym__identifier_token] = ACTIONS(25), - [anon_sym_alias] = ACTIONS(29), - [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1481), - [anon_sym_LPAREN] = ACTIONS(2177), - [anon_sym_ref] = ACTIONS(2179), - [anon_sym_LBRACE] = ACTIONS(1487), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), - [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(2181), - [anon_sym_where] = ACTIONS(29), - [anon_sym_notnull] = ACTIONS(29), - [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1067), - [anon_sym_BANG] = ACTIONS(2185), - [anon_sym_TILDE] = ACTIONS(2185), - [anon_sym_PLUS_PLUS] = ACTIONS(2185), - [anon_sym_DASH_DASH] = ACTIONS(2185), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(2183), - [anon_sym_DASH] = ACTIONS(2183), - [anon_sym_STAR] = ACTIONS(2187), - [anon_sym_CARET] = ACTIONS(2185), - [anon_sym_AMP] = ACTIONS(2185), - [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(1067), - [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(2189), - [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2191), - [anon_sym_DOT_DOT] = ACTIONS(2193), - [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(1089), + [1909] = { + [sym_using_directive] = STATE(2756), + [sym_attribute_list] = STATE(3034), + [sym__attribute_list] = STATE(2953), + [sym_namespace_declaration] = STATE(2756), + [sym_class_declaration] = STATE(2756), + [sym__class_declaration_initializer] = STATE(6696), + [sym_struct_declaration] = STATE(2756), + [sym__struct_declaration_initializer] = STATE(6697), + [sym_enum_declaration] = STATE(2756), + [sym__enum_declaration_initializer] = STATE(6955), + [sym_interface_declaration] = STATE(2756), + [sym__interface_declaration_initializer] = STATE(6701), + [sym_delegate_declaration] = STATE(2756), + [sym__delegate_declaration_initializer] = STATE(6703), + [sym_record_declaration] = STATE(2756), + [sym__record_declaration_initializer] = STATE(6704), + [sym_modifier] = STATE(3114), + [sym_operator_declaration] = STATE(2756), + [sym_conversion_operator_declaration] = STATE(2756), + [sym_declaration] = STATE(2773), + [sym_field_declaration] = STATE(2756), + [sym_constructor_declaration] = STATE(2756), + [sym__constructor_declaration_initializer] = STATE(6431), + [sym_destructor_declaration] = STATE(2756), + [sym_method_declaration] = STATE(2756), + [sym_event_declaration] = STATE(2756), + [sym_event_field_declaration] = STATE(2756), + [sym_indexer_declaration] = STATE(2756), + [sym_property_declaration] = STATE(2756), + [sym_variable_declaration] = STATE(7638), + [sym__name] = STATE(4369), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(4068), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(4073), + [sym_type] = STATE(5634), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_identifier] = STATE(5721), + [sym__reserved_identifier] = STATE(3654), + [sym_preproc_if] = STATE(2756), + [sym_preproc_else] = STATE(7443), + [sym_preproc_elif] = STATE(7443), + [sym_preproc_if_in_attribute_list] = STATE(3034), + [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(2195), + [aux_sym__class_declaration_initializer_repeat2] = STATE(2273), + [aux_sym_declaration_list_repeat1] = STATE(1912), + [sym__identifier_token] = ACTIONS(2965), + [anon_sym_extern] = ACTIONS(2967), + [anon_sym_alias] = ACTIONS(2969), + [anon_sym_global] = ACTIONS(2971), + [anon_sym_using] = ACTIONS(2973), + [anon_sym_unsafe] = ACTIONS(65), + [anon_sym_static] = ACTIONS(65), + [anon_sym_LBRACK] = ACTIONS(2975), + [anon_sym_LPAREN] = ACTIONS(2977), + [anon_sym_event] = ACTIONS(2979), + [anon_sym_namespace] = ACTIONS(2981), + [anon_sym_class] = ACTIONS(49), + [anon_sym_ref] = ACTIONS(2983), + [anon_sym_struct] = ACTIONS(53), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_interface] = ACTIONS(59), + [anon_sym_delegate] = ACTIONS(2985), + [anon_sym_record] = ACTIONS(63), + [anon_sym_abstract] = ACTIONS(65), + [anon_sym_async] = ACTIONS(65), + [anon_sym_const] = ACTIONS(65), + [anon_sym_file] = ACTIONS(2987), + [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(2969), + [anon_sym_notnull] = ACTIONS(2969), + [anon_sym_unmanaged] = ACTIONS(2969), + [anon_sym_TILDE] = ACTIONS(2989), + [anon_sym_implicit] = ACTIONS(2991), + [anon_sym_explicit] = ACTIONS(2991), + [anon_sym_scoped] = ACTIONS(2993), + [anon_sym_var] = ACTIONS(2995), + [sym_predefined_type] = ACTIONS(2997), + [anon_sym_yield] = ACTIONS(2969), + [anon_sym_when] = ACTIONS(2969), + [anon_sym_from] = ACTIONS(2969), + [anon_sym_into] = ACTIONS(2969), + [anon_sym_join] = ACTIONS(2969), + [anon_sym_on] = ACTIONS(2969), + [anon_sym_equals] = ACTIONS(2969), + [anon_sym_let] = ACTIONS(2969), + [anon_sym_orderby] = ACTIONS(2969), + [anon_sym_ascending] = ACTIONS(2969), + [anon_sym_descending] = ACTIONS(2969), + [anon_sym_group] = ACTIONS(2969), + [anon_sym_by] = ACTIONS(2969), + [anon_sym_select] = ACTIONS(2969), + [aux_sym_preproc_if_token1] = ACTIONS(2999), + [aux_sym_preproc_if_token3] = ACTIONS(3009), + [aux_sym_preproc_else_token1] = ACTIONS(3011), + [aux_sym_preproc_elif_token1] = ACTIONS(3013), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -360331,165 +364227,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(151), - [sym_interpolation_verbatim_start] = ACTIONS(153), - [sym_interpolation_raw_start] = ACTIONS(155), - [sym_raw_string_start] = ACTIONS(157), }, - [1885] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(5890), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2375), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(5558), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3656), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3080), - [sym_postfix_unary_expression] = STATE(3111), - [sym_prefix_unary_expression] = STATE(3111), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6157), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3080), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3111), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3080), - [sym_member_access_expression] = STATE(2484), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3111), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7362), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(3080), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3080), - [sym_typeof_expression] = STATE(3080), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2484), - [sym_literal] = STATE(3080), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), - [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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), - [sym__identifier_token] = ACTIONS(25), - [anon_sym_alias] = ACTIONS(29), - [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1481), - [anon_sym_LPAREN] = ACTIONS(2177), - [anon_sym_ref] = ACTIONS(2179), - [anon_sym_LBRACE] = ACTIONS(1487), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), - [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(2181), - [anon_sym_where] = ACTIONS(29), - [anon_sym_notnull] = ACTIONS(29), - [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1067), - [anon_sym_BANG] = ACTIONS(2185), - [anon_sym_TILDE] = ACTIONS(2185), - [anon_sym_PLUS_PLUS] = ACTIONS(2185), - [anon_sym_DASH_DASH] = ACTIONS(2185), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(2183), - [anon_sym_DASH] = ACTIONS(2183), - [anon_sym_STAR] = ACTIONS(2187), - [anon_sym_CARET] = ACTIONS(2185), - [anon_sym_AMP] = ACTIONS(2185), - [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(1067), - [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(2189), - [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2191), - [anon_sym_DOT_DOT] = ACTIONS(2193), - [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(1089), + [1910] = { + [sym_using_directive] = STATE(2756), + [sym_attribute_list] = STATE(3034), + [sym__attribute_list] = STATE(2953), + [sym_namespace_declaration] = STATE(2756), + [sym_class_declaration] = STATE(2756), + [sym__class_declaration_initializer] = STATE(6696), + [sym_struct_declaration] = STATE(2756), + [sym__struct_declaration_initializer] = STATE(6697), + [sym_enum_declaration] = STATE(2756), + [sym__enum_declaration_initializer] = STATE(6955), + [sym_interface_declaration] = STATE(2756), + [sym__interface_declaration_initializer] = STATE(6701), + [sym_delegate_declaration] = STATE(2756), + [sym__delegate_declaration_initializer] = STATE(6703), + [sym_record_declaration] = STATE(2756), + [sym__record_declaration_initializer] = STATE(6704), + [sym_modifier] = STATE(3114), + [sym_operator_declaration] = STATE(2756), + [sym_conversion_operator_declaration] = STATE(2756), + [sym_declaration] = STATE(2773), + [sym_field_declaration] = STATE(2756), + [sym_constructor_declaration] = STATE(2756), + [sym__constructor_declaration_initializer] = STATE(6431), + [sym_destructor_declaration] = STATE(2756), + [sym_method_declaration] = STATE(2756), + [sym_event_declaration] = STATE(2756), + [sym_event_field_declaration] = STATE(2756), + [sym_indexer_declaration] = STATE(2756), + [sym_property_declaration] = STATE(2756), + [sym_variable_declaration] = STATE(7638), + [sym__name] = STATE(4369), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(4068), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(4073), + [sym_type] = STATE(5634), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_identifier] = STATE(5721), + [sym__reserved_identifier] = STATE(3654), + [sym_preproc_if] = STATE(2756), + [sym_preproc_else] = STATE(7524), + [sym_preproc_elif] = STATE(7524), + [sym_preproc_if_in_attribute_list] = STATE(3034), + [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(2195), + [aux_sym__class_declaration_initializer_repeat2] = STATE(2273), + [aux_sym_declaration_list_repeat1] = STATE(1912), + [sym__identifier_token] = ACTIONS(2965), + [anon_sym_extern] = ACTIONS(2967), + [anon_sym_alias] = ACTIONS(2969), + [anon_sym_global] = ACTIONS(2971), + [anon_sym_using] = ACTIONS(2973), + [anon_sym_unsafe] = ACTIONS(65), + [anon_sym_static] = ACTIONS(65), + [anon_sym_LBRACK] = ACTIONS(2975), + [anon_sym_LPAREN] = ACTIONS(2977), + [anon_sym_event] = ACTIONS(2979), + [anon_sym_namespace] = ACTIONS(2981), + [anon_sym_class] = ACTIONS(49), + [anon_sym_ref] = ACTIONS(2983), + [anon_sym_struct] = ACTIONS(53), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_interface] = ACTIONS(59), + [anon_sym_delegate] = ACTIONS(2985), + [anon_sym_record] = ACTIONS(63), + [anon_sym_abstract] = ACTIONS(65), + [anon_sym_async] = ACTIONS(65), + [anon_sym_const] = ACTIONS(65), + [anon_sym_file] = ACTIONS(2987), + [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(2969), + [anon_sym_notnull] = ACTIONS(2969), + [anon_sym_unmanaged] = ACTIONS(2969), + [anon_sym_TILDE] = ACTIONS(2989), + [anon_sym_implicit] = ACTIONS(2991), + [anon_sym_explicit] = ACTIONS(2991), + [anon_sym_scoped] = ACTIONS(2993), + [anon_sym_var] = ACTIONS(2995), + [sym_predefined_type] = ACTIONS(2997), + [anon_sym_yield] = ACTIONS(2969), + [anon_sym_when] = ACTIONS(2969), + [anon_sym_from] = ACTIONS(2969), + [anon_sym_into] = ACTIONS(2969), + [anon_sym_join] = ACTIONS(2969), + [anon_sym_on] = ACTIONS(2969), + [anon_sym_equals] = ACTIONS(2969), + [anon_sym_let] = ACTIONS(2969), + [anon_sym_orderby] = ACTIONS(2969), + [anon_sym_ascending] = ACTIONS(2969), + [anon_sym_descending] = ACTIONS(2969), + [anon_sym_group] = ACTIONS(2969), + [anon_sym_by] = ACTIONS(2969), + [anon_sym_select] = ACTIONS(2969), + [aux_sym_preproc_if_token1] = ACTIONS(2999), + [aux_sym_preproc_if_token3] = ACTIONS(3015), + [aux_sym_preproc_else_token1] = ACTIONS(3011), + [aux_sym_preproc_elif_token1] = ACTIONS(3013), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -360500,165 +364365,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(151), - [sym_interpolation_verbatim_start] = ACTIONS(153), - [sym_interpolation_raw_start] = ACTIONS(155), - [sym_raw_string_start] = ACTIONS(157), }, - [1886] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(5160), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2204), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(4868), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3520), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3080), - [sym_postfix_unary_expression] = STATE(3111), - [sym_prefix_unary_expression] = STATE(3111), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6154), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3080), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3111), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3080), - [sym_member_access_expression] = STATE(2484), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3111), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7530), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(3080), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3080), - [sym_typeof_expression] = STATE(3080), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2484), - [sym_literal] = STATE(3080), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), - [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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), - [sym__identifier_token] = ACTIONS(25), - [anon_sym_alias] = ACTIONS(29), - [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1481), - [anon_sym_LPAREN] = ACTIONS(43), - [anon_sym_ref] = ACTIONS(661), - [anon_sym_LBRACE] = ACTIONS(1487), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), - [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1061), - [anon_sym_where] = ACTIONS(29), - [anon_sym_notnull] = ACTIONS(29), - [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = 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(1585), - [anon_sym_DASH] = ACTIONS(1585), - [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(1587), - [anon_sym_AMP] = ACTIONS(1587), - [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(1067), - [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1589), - [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1591), - [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(1089), + [1911] = { + [sym_using_directive] = STATE(2756), + [sym_attribute_list] = STATE(3034), + [sym__attribute_list] = STATE(2953), + [sym_namespace_declaration] = STATE(2756), + [sym_class_declaration] = STATE(2756), + [sym__class_declaration_initializer] = STATE(6696), + [sym_struct_declaration] = STATE(2756), + [sym__struct_declaration_initializer] = STATE(6697), + [sym_enum_declaration] = STATE(2756), + [sym__enum_declaration_initializer] = STATE(6955), + [sym_interface_declaration] = STATE(2756), + [sym__interface_declaration_initializer] = STATE(6701), + [sym_delegate_declaration] = STATE(2756), + [sym__delegate_declaration_initializer] = STATE(6703), + [sym_record_declaration] = STATE(2756), + [sym__record_declaration_initializer] = STATE(6704), + [sym_modifier] = STATE(3114), + [sym_operator_declaration] = STATE(2756), + [sym_conversion_operator_declaration] = STATE(2756), + [sym_declaration] = STATE(2773), + [sym_field_declaration] = STATE(2756), + [sym_constructor_declaration] = STATE(2756), + [sym__constructor_declaration_initializer] = STATE(6431), + [sym_destructor_declaration] = STATE(2756), + [sym_method_declaration] = STATE(2756), + [sym_event_declaration] = STATE(2756), + [sym_event_field_declaration] = STATE(2756), + [sym_indexer_declaration] = STATE(2756), + [sym_property_declaration] = STATE(2756), + [sym_variable_declaration] = STATE(7638), + [sym__name] = STATE(4369), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(4068), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(4073), + [sym_type] = STATE(5634), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_identifier] = STATE(5721), + [sym__reserved_identifier] = STATE(3654), + [sym_preproc_if] = STATE(2756), + [sym_preproc_else] = STATE(7646), + [sym_preproc_elif] = STATE(7646), + [sym_preproc_if_in_attribute_list] = STATE(3034), + [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(2195), + [aux_sym__class_declaration_initializer_repeat2] = STATE(2273), + [aux_sym_declaration_list_repeat1] = STATE(1910), + [sym__identifier_token] = ACTIONS(2965), + [anon_sym_extern] = ACTIONS(2967), + [anon_sym_alias] = ACTIONS(2969), + [anon_sym_global] = ACTIONS(2971), + [anon_sym_using] = ACTIONS(2973), + [anon_sym_unsafe] = ACTIONS(65), + [anon_sym_static] = ACTIONS(65), + [anon_sym_LBRACK] = ACTIONS(2975), + [anon_sym_LPAREN] = ACTIONS(2977), + [anon_sym_event] = ACTIONS(2979), + [anon_sym_namespace] = ACTIONS(2981), + [anon_sym_class] = ACTIONS(49), + [anon_sym_ref] = ACTIONS(2983), + [anon_sym_struct] = ACTIONS(53), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_interface] = ACTIONS(59), + [anon_sym_delegate] = ACTIONS(2985), + [anon_sym_record] = ACTIONS(63), + [anon_sym_abstract] = ACTIONS(65), + [anon_sym_async] = ACTIONS(65), + [anon_sym_const] = ACTIONS(65), + [anon_sym_file] = ACTIONS(2987), + [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(2969), + [anon_sym_notnull] = ACTIONS(2969), + [anon_sym_unmanaged] = ACTIONS(2969), + [anon_sym_TILDE] = ACTIONS(2989), + [anon_sym_implicit] = ACTIONS(2991), + [anon_sym_explicit] = ACTIONS(2991), + [anon_sym_scoped] = ACTIONS(2993), + [anon_sym_var] = ACTIONS(2995), + [sym_predefined_type] = ACTIONS(2997), + [anon_sym_yield] = ACTIONS(2969), + [anon_sym_when] = ACTIONS(2969), + [anon_sym_from] = ACTIONS(2969), + [anon_sym_into] = ACTIONS(2969), + [anon_sym_join] = ACTIONS(2969), + [anon_sym_on] = ACTIONS(2969), + [anon_sym_equals] = ACTIONS(2969), + [anon_sym_let] = ACTIONS(2969), + [anon_sym_orderby] = ACTIONS(2969), + [anon_sym_ascending] = ACTIONS(2969), + [anon_sym_descending] = ACTIONS(2969), + [anon_sym_group] = ACTIONS(2969), + [anon_sym_by] = ACTIONS(2969), + [anon_sym_select] = ACTIONS(2969), + [aux_sym_preproc_if_token1] = ACTIONS(2999), + [aux_sym_preproc_if_token3] = ACTIONS(3001), + [aux_sym_preproc_else_token1] = ACTIONS(3011), + [aux_sym_preproc_elif_token1] = ACTIONS(3013), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -360669,165 +364503,133 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(151), - [sym_interpolation_verbatim_start] = ACTIONS(153), - [sym_interpolation_raw_start] = ACTIONS(155), - [sym_raw_string_start] = ACTIONS(157), }, - [1887] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(5910), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2247), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(5569), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3379), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3080), - [sym_postfix_unary_expression] = STATE(3111), - [sym_prefix_unary_expression] = STATE(3111), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6154), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3080), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3111), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3080), - [sym_member_access_expression] = STATE(2484), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3111), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7575), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(3080), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3080), - [sym_typeof_expression] = STATE(3080), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2484), - [sym_literal] = STATE(3080), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), - [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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), - [sym__identifier_token] = ACTIONS(25), - [anon_sym_alias] = ACTIONS(29), - [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1481), - [anon_sym_LPAREN] = ACTIONS(895), - [anon_sym_ref] = ACTIONS(897), - [anon_sym_LBRACE] = ACTIONS(1487), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), - [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1061), - [anon_sym_where] = ACTIONS(29), - [anon_sym_notnull] = ACTIONS(29), - [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1067), - [anon_sym_BANG] = ACTIONS(1495), - [anon_sym_TILDE] = ACTIONS(1495), - [anon_sym_PLUS_PLUS] = ACTIONS(1495), - [anon_sym_DASH_DASH] = ACTIONS(1495), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1493), - [anon_sym_DASH] = ACTIONS(1493), - [anon_sym_STAR] = ACTIONS(905), - [anon_sym_CARET] = ACTIONS(1495), - [anon_sym_AMP] = ACTIONS(1495), - [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(1067), - [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1079), - [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1081), - [anon_sym_DOT_DOT] = ACTIONS(911), - [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(1089), + [1912] = { + [sym_using_directive] = STATE(2756), + [sym_attribute_list] = STATE(3034), + [sym__attribute_list] = STATE(2953), + [sym_namespace_declaration] = STATE(2756), + [sym_class_declaration] = STATE(2756), + [sym__class_declaration_initializer] = STATE(6696), + [sym_struct_declaration] = STATE(2756), + [sym__struct_declaration_initializer] = STATE(6697), + [sym_enum_declaration] = STATE(2756), + [sym__enum_declaration_initializer] = STATE(6955), + [sym_interface_declaration] = STATE(2756), + [sym__interface_declaration_initializer] = STATE(6701), + [sym_delegate_declaration] = STATE(2756), + [sym__delegate_declaration_initializer] = STATE(6703), + [sym_record_declaration] = STATE(2756), + [sym__record_declaration_initializer] = STATE(6704), + [sym_modifier] = STATE(3114), + [sym_operator_declaration] = STATE(2756), + [sym_conversion_operator_declaration] = STATE(2756), + [sym_declaration] = STATE(2773), + [sym_field_declaration] = STATE(2756), + [sym_constructor_declaration] = STATE(2756), + [sym__constructor_declaration_initializer] = STATE(6431), + [sym_destructor_declaration] = STATE(2756), + [sym_method_declaration] = STATE(2756), + [sym_event_declaration] = STATE(2756), + [sym_event_field_declaration] = STATE(2756), + [sym_indexer_declaration] = STATE(2756), + [sym_property_declaration] = STATE(2756), + [sym_variable_declaration] = STATE(7638), + [sym__name] = STATE(4369), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(4068), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(4073), + [sym_type] = STATE(5634), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_identifier] = STATE(5721), + [sym__reserved_identifier] = STATE(3654), + [sym_preproc_if] = STATE(2756), + [sym_preproc_if_in_attribute_list] = STATE(3034), + [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(2195), + [aux_sym__class_declaration_initializer_repeat2] = STATE(2273), + [aux_sym_declaration_list_repeat1] = STATE(1912), + [sym__identifier_token] = ACTIONS(3017), + [anon_sym_extern] = ACTIONS(3020), + [anon_sym_alias] = ACTIONS(3023), + [anon_sym_global] = ACTIONS(3026), + [anon_sym_using] = ACTIONS(3029), + [anon_sym_unsafe] = ACTIONS(3032), + [anon_sym_static] = ACTIONS(3032), + [anon_sym_LBRACK] = ACTIONS(3035), + [anon_sym_LPAREN] = ACTIONS(3038), + [anon_sym_event] = ACTIONS(3041), + [anon_sym_namespace] = ACTIONS(3044), + [anon_sym_class] = ACTIONS(3047), + [anon_sym_ref] = ACTIONS(3050), + [anon_sym_struct] = ACTIONS(3053), + [anon_sym_enum] = ACTIONS(3056), + [anon_sym_RBRACE] = ACTIONS(3059), + [anon_sym_interface] = ACTIONS(3061), + [anon_sym_delegate] = ACTIONS(3064), + [anon_sym_record] = ACTIONS(3067), + [anon_sym_abstract] = ACTIONS(3032), + [anon_sym_async] = ACTIONS(3032), + [anon_sym_const] = ACTIONS(3032), + [anon_sym_file] = ACTIONS(3070), + [anon_sym_fixed] = ACTIONS(3032), + [anon_sym_internal] = ACTIONS(3032), + [anon_sym_new] = ACTIONS(3032), + [anon_sym_override] = ACTIONS(3032), + [anon_sym_partial] = ACTIONS(3032), + [anon_sym_private] = ACTIONS(3032), + [anon_sym_protected] = ACTIONS(3032), + [anon_sym_public] = ACTIONS(3032), + [anon_sym_readonly] = ACTIONS(3032), + [anon_sym_required] = ACTIONS(3032), + [anon_sym_sealed] = ACTIONS(3032), + [anon_sym_virtual] = ACTIONS(3032), + [anon_sym_volatile] = ACTIONS(3032), + [anon_sym_where] = ACTIONS(3023), + [anon_sym_notnull] = ACTIONS(3023), + [anon_sym_unmanaged] = ACTIONS(3023), + [anon_sym_TILDE] = ACTIONS(3073), + [anon_sym_implicit] = ACTIONS(3076), + [anon_sym_explicit] = ACTIONS(3076), + [anon_sym_scoped] = ACTIONS(3079), + [anon_sym_var] = ACTIONS(3082), + [sym_predefined_type] = ACTIONS(3085), + [anon_sym_yield] = ACTIONS(3023), + [anon_sym_when] = ACTIONS(3023), + [anon_sym_from] = ACTIONS(3023), + [anon_sym_into] = ACTIONS(3023), + [anon_sym_join] = ACTIONS(3023), + [anon_sym_on] = ACTIONS(3023), + [anon_sym_equals] = ACTIONS(3023), + [anon_sym_let] = ACTIONS(3023), + [anon_sym_orderby] = ACTIONS(3023), + [anon_sym_ascending] = ACTIONS(3023), + [anon_sym_descending] = ACTIONS(3023), + [anon_sym_group] = ACTIONS(3023), + [anon_sym_by] = ACTIONS(3023), + [anon_sym_select] = ACTIONS(3023), + [aux_sym_preproc_if_token1] = ACTIONS(3088), + [aux_sym_preproc_if_token3] = ACTIONS(3059), + [aux_sym_preproc_else_token1] = ACTIONS(3059), + [aux_sym_preproc_elif_token1] = ACTIONS(3059), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -360838,334 +364640,398 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(151), - [sym_interpolation_verbatim_start] = ACTIONS(153), - [sym_interpolation_raw_start] = ACTIONS(155), - [sym_raw_string_start] = ACTIONS(157), }, - [1888] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(5160), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2204), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(5334), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3461), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3080), - [sym_postfix_unary_expression] = STATE(3111), - [sym_prefix_unary_expression] = STATE(3111), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6154), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3080), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3111), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3080), - [sym_member_access_expression] = STATE(2484), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3111), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7547), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(3080), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3080), - [sym_typeof_expression] = STATE(3080), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2484), - [sym_literal] = STATE(3080), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), - [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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), - [sym__identifier_token] = ACTIONS(25), - [anon_sym_alias] = ACTIONS(29), - [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1481), - [anon_sym_LPAREN] = ACTIONS(1497), - [anon_sym_ref] = ACTIONS(1499), - [anon_sym_LBRACE] = ACTIONS(1487), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), - [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1501), - [anon_sym_where] = ACTIONS(29), - [anon_sym_notnull] = ACTIONS(29), - [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = 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(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(1067), - [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1503), - [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1505), - [anon_sym_DOT_DOT] = ACTIONS(1507), - [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(1089), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(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), + [1913] = { + [sym_catch_clause] = STATE(1925), + [sym_finally_clause] = STATE(1946), + [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_try_statement_repeat1] = STATE(1914), + [sym__identifier_token] = ACTIONS(3091), + [anon_sym_extern] = ACTIONS(3091), + [anon_sym_alias] = ACTIONS(3091), + [anon_sym_SEMI] = ACTIONS(3093), + [anon_sym_global] = ACTIONS(3091), + [anon_sym_using] = ACTIONS(3091), + [anon_sym_unsafe] = ACTIONS(3091), + [anon_sym_static] = ACTIONS(3091), + [anon_sym_LBRACK] = ACTIONS(3093), + [anon_sym_LPAREN] = ACTIONS(3093), + [anon_sym_return] = ACTIONS(3091), + [anon_sym_namespace] = ACTIONS(3091), + [anon_sym_class] = ACTIONS(3091), + [anon_sym_ref] = ACTIONS(3091), + [anon_sym_struct] = ACTIONS(3091), + [anon_sym_enum] = ACTIONS(3091), + [anon_sym_LBRACE] = ACTIONS(3093), + [anon_sym_interface] = ACTIONS(3091), + [anon_sym_delegate] = ACTIONS(3091), + [anon_sym_record] = ACTIONS(3091), + [anon_sym_abstract] = ACTIONS(3091), + [anon_sym_async] = ACTIONS(3091), + [anon_sym_const] = ACTIONS(3091), + [anon_sym_file] = ACTIONS(3091), + [anon_sym_fixed] = ACTIONS(3091), + [anon_sym_internal] = ACTIONS(3091), + [anon_sym_new] = ACTIONS(3091), + [anon_sym_override] = ACTIONS(3091), + [anon_sym_partial] = ACTIONS(3091), + [anon_sym_private] = ACTIONS(3091), + [anon_sym_protected] = ACTIONS(3091), + [anon_sym_public] = ACTIONS(3091), + [anon_sym_readonly] = ACTIONS(3091), + [anon_sym_required] = ACTIONS(3091), + [anon_sym_sealed] = ACTIONS(3091), + [anon_sym_virtual] = ACTIONS(3091), + [anon_sym_volatile] = ACTIONS(3091), + [anon_sym_where] = ACTIONS(3091), + [anon_sym_notnull] = ACTIONS(3091), + [anon_sym_unmanaged] = ACTIONS(3091), + [anon_sym_checked] = ACTIONS(3091), + [anon_sym_BANG] = ACTIONS(3093), + [anon_sym_TILDE] = ACTIONS(3093), + [anon_sym_PLUS_PLUS] = ACTIONS(3093), + [anon_sym_DASH_DASH] = ACTIONS(3093), + [anon_sym_true] = ACTIONS(3091), + [anon_sym_false] = ACTIONS(3091), + [anon_sym_PLUS] = ACTIONS(3091), + [anon_sym_DASH] = ACTIONS(3091), + [anon_sym_STAR] = ACTIONS(3093), + [anon_sym_CARET] = ACTIONS(3093), + [anon_sym_AMP] = ACTIONS(3093), + [anon_sym_this] = ACTIONS(3091), + [anon_sym_scoped] = ACTIONS(3091), + [anon_sym_base] = ACTIONS(3091), + [anon_sym_var] = ACTIONS(3091), + [sym_predefined_type] = ACTIONS(3091), + [anon_sym_break] = ACTIONS(3091), + [anon_sym_unchecked] = ACTIONS(3091), + [anon_sym_continue] = ACTIONS(3091), + [anon_sym_do] = ACTIONS(3091), + [anon_sym_while] = ACTIONS(3091), + [anon_sym_for] = ACTIONS(3091), + [anon_sym_lock] = ACTIONS(3091), + [anon_sym_yield] = ACTIONS(3091), + [anon_sym_switch] = ACTIONS(3091), + [anon_sym_default] = ACTIONS(3091), + [anon_sym_throw] = ACTIONS(3091), + [anon_sym_try] = ACTIONS(3091), + [anon_sym_catch] = ACTIONS(3095), + [anon_sym_when] = ACTIONS(3091), + [anon_sym_finally] = ACTIONS(3097), + [anon_sym_await] = ACTIONS(3091), + [anon_sym_foreach] = ACTIONS(3091), + [anon_sym_goto] = ACTIONS(3091), + [anon_sym_if] = ACTIONS(3091), + [anon_sym_else] = ACTIONS(3091), + [anon_sym_DOT_DOT] = ACTIONS(3093), + [anon_sym_from] = ACTIONS(3091), + [anon_sym_into] = ACTIONS(3091), + [anon_sym_join] = ACTIONS(3091), + [anon_sym_on] = ACTIONS(3091), + [anon_sym_equals] = ACTIONS(3091), + [anon_sym_let] = ACTIONS(3091), + [anon_sym_orderby] = ACTIONS(3091), + [anon_sym_ascending] = ACTIONS(3091), + [anon_sym_descending] = ACTIONS(3091), + [anon_sym_group] = ACTIONS(3091), + [anon_sym_by] = ACTIONS(3091), + [anon_sym_select] = ACTIONS(3091), + [anon_sym_stackalloc] = ACTIONS(3091), + [anon_sym_sizeof] = ACTIONS(3091), + [anon_sym_typeof] = ACTIONS(3091), + [anon_sym___makeref] = ACTIONS(3091), + [anon_sym___reftype] = ACTIONS(3091), + [anon_sym___refvalue] = ACTIONS(3091), + [sym_null_literal] = ACTIONS(3091), + [anon_sym_SQUOTE] = ACTIONS(3093), + [sym_integer_literal] = ACTIONS(3091), + [sym_real_literal] = ACTIONS(3093), + [anon_sym_DQUOTE] = ACTIONS(3093), + [sym_verbatim_string_literal] = ACTIONS(3093), + [aux_sym_preproc_if_token1] = ACTIONS(3093), + [aux_sym_preproc_if_token3] = ACTIONS(3093), + [aux_sym_preproc_else_token1] = ACTIONS(3093), + [aux_sym_preproc_elif_token1] = ACTIONS(3093), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + [sym_interpolation_regular_start] = ACTIONS(3093), + [sym_interpolation_verbatim_start] = ACTIONS(3093), + [sym_interpolation_raw_start] = ACTIONS(3093), + [sym_raw_string_start] = ACTIONS(3093), }, - [1889] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2610), - [sym__name] = STATE(5886), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2319), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(4449), - [sym_non_lvalue_expression] = STATE(3277), - [sym_lvalue_expression] = STATE(3347), - [sym__expression_statement_expression] = STATE(3228), - [sym_assignment_expression] = STATE(3289), - [sym_binary_expression] = STATE(3228), - [sym_postfix_unary_expression] = STATE(3289), - [sym_prefix_unary_expression] = STATE(3289), - [sym__pointer_indirection_expression] = STATE(2609), - [sym_query_expression] = STATE(3228), - [sym_from_clause] = STATE(6150), - [sym_conditional_expression] = STATE(3228), - [sym_conditional_access_expression] = STATE(3228), - [sym_as_expression] = STATE(3228), - [sym_is_expression] = STATE(3228), - [sym_is_pattern_expression] = STATE(3228), - [sym_cast_expression] = STATE(3228), - [sym_checked_expression] = STATE(3228), - [sym_invocation_expression] = STATE(3289), - [sym_switch_expression] = STATE(3228), - [sym_await_expression] = STATE(3289), - [sym_throw_expression] = STATE(3228), - [sym_element_access_expression] = STATE(2609), - [sym_interpolated_string_expression] = STATE(3228), - [sym_member_access_expression] = STATE(2609), - [sym_object_creation_expression] = STATE(3289), - [sym_parenthesized_expression] = STATE(3289), - [sym__parenthesized_lvalue_expression] = STATE(2609), - [sym_lambda_expression] = STATE(3228), - [sym__lambda_expression_init] = STATE(7531), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3228), - [sym_anonymous_method_expression] = STATE(3228), - [sym_anonymous_object_creation_expression] = STATE(3228), - [sym_implicit_array_creation_expression] = STATE(3228), - [sym_implicit_object_creation_expression] = STATE(3228), - [sym_implicit_stackalloc_expression] = STATE(3228), - [sym_initializer_expression] = STATE(3228), - [sym_default_expression] = STATE(3228), - [sym_with_expression] = STATE(3228), - [sym_sizeof_expression] = STATE(3228), - [sym_typeof_expression] = STATE(3228), - [sym_makeref_expression] = STATE(3228), - [sym_ref_expression] = STATE(3228), - [sym_reftype_expression] = STATE(3228), - [sym_refvalue_expression] = STATE(3228), - [sym_stackalloc_expression] = STATE(3228), - [sym_range_expression] = STATE(3228), - [sym_tuple_expression] = STATE(2609), - [sym_literal] = STATE(3228), - [sym_character_literal] = STATE(3278), - [sym_string_literal] = STATE(3278), - [sym_raw_string_literal] = STATE(3278), - [sym_boolean_literal] = STATE(3278), - [sym_identifier] = STATE(2267), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3228), - [sym_preproc_if_in_attribute_list] = STATE(5576), - [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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3396), - [sym__identifier_token] = ACTIONS(25), - [anon_sym_alias] = ACTIONS(29), - [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1153), - [anon_sym_LPAREN] = ACTIONS(1525), - [anon_sym_ref] = ACTIONS(1527), - [anon_sym_LBRACE] = ACTIONS(1159), - [anon_sym_delegate] = ACTIONS(1161), - [anon_sym_async] = ACTIONS(1047), - [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1529), - [anon_sym_where] = ACTIONS(29), - [anon_sym_notnull] = ACTIONS(29), - [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1167), - [anon_sym_BANG] = ACTIONS(1533), - [anon_sym_TILDE] = ACTIONS(1533), - [anon_sym_PLUS_PLUS] = ACTIONS(1533), - [anon_sym_DASH_DASH] = ACTIONS(1533), - [anon_sym_true] = ACTIONS(1173), - [anon_sym_false] = ACTIONS(1173), - [anon_sym_PLUS] = ACTIONS(1531), - [anon_sym_DASH] = ACTIONS(1531), - [anon_sym_STAR] = ACTIONS(1535), - [anon_sym_CARET] = ACTIONS(1533), - [anon_sym_AMP] = ACTIONS(1533), - [anon_sym_this] = ACTIONS(1177), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1179), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1181), - [anon_sym_unchecked] = ACTIONS(1167), - [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1183), - [anon_sym_throw] = ACTIONS(1537), - [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1539), - [anon_sym_DOT_DOT] = ACTIONS(1541), - [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(1191), - [anon_sym_sizeof] = ACTIONS(1193), - [anon_sym_typeof] = ACTIONS(1195), - [anon_sym___makeref] = ACTIONS(1197), - [anon_sym___reftype] = ACTIONS(1199), - [anon_sym___refvalue] = ACTIONS(1201), - [sym_null_literal] = ACTIONS(1203), - [anon_sym_SQUOTE] = ACTIONS(1205), - [sym_integer_literal] = ACTIONS(1203), - [sym_real_literal] = ACTIONS(1207), - [anon_sym_DQUOTE] = ACTIONS(1209), - [sym_verbatim_string_literal] = ACTIONS(1207), - [aux_sym_preproc_if_token1] = ACTIONS(1211), + [1914] = { + [sym_catch_clause] = STATE(1925), + [sym_finally_clause] = STATE(1942), + [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_try_statement_repeat1] = STATE(1920), + [sym__identifier_token] = ACTIONS(3099), + [anon_sym_extern] = ACTIONS(3099), + [anon_sym_alias] = ACTIONS(3099), + [anon_sym_SEMI] = ACTIONS(3101), + [anon_sym_global] = ACTIONS(3099), + [anon_sym_using] = ACTIONS(3099), + [anon_sym_unsafe] = ACTIONS(3099), + [anon_sym_static] = ACTIONS(3099), + [anon_sym_LBRACK] = ACTIONS(3101), + [anon_sym_LPAREN] = ACTIONS(3101), + [anon_sym_return] = ACTIONS(3099), + [anon_sym_namespace] = ACTIONS(3099), + [anon_sym_class] = ACTIONS(3099), + [anon_sym_ref] = ACTIONS(3099), + [anon_sym_struct] = ACTIONS(3099), + [anon_sym_enum] = ACTIONS(3099), + [anon_sym_LBRACE] = ACTIONS(3101), + [anon_sym_interface] = ACTIONS(3099), + [anon_sym_delegate] = ACTIONS(3099), + [anon_sym_record] = ACTIONS(3099), + [anon_sym_abstract] = ACTIONS(3099), + [anon_sym_async] = ACTIONS(3099), + [anon_sym_const] = ACTIONS(3099), + [anon_sym_file] = ACTIONS(3099), + [anon_sym_fixed] = ACTIONS(3099), + [anon_sym_internal] = ACTIONS(3099), + [anon_sym_new] = ACTIONS(3099), + [anon_sym_override] = ACTIONS(3099), + [anon_sym_partial] = ACTIONS(3099), + [anon_sym_private] = ACTIONS(3099), + [anon_sym_protected] = ACTIONS(3099), + [anon_sym_public] = ACTIONS(3099), + [anon_sym_readonly] = ACTIONS(3099), + [anon_sym_required] = ACTIONS(3099), + [anon_sym_sealed] = ACTIONS(3099), + [anon_sym_virtual] = ACTIONS(3099), + [anon_sym_volatile] = ACTIONS(3099), + [anon_sym_where] = ACTIONS(3099), + [anon_sym_notnull] = ACTIONS(3099), + [anon_sym_unmanaged] = ACTIONS(3099), + [anon_sym_checked] = ACTIONS(3099), + [anon_sym_BANG] = ACTIONS(3101), + [anon_sym_TILDE] = ACTIONS(3101), + [anon_sym_PLUS_PLUS] = ACTIONS(3101), + [anon_sym_DASH_DASH] = ACTIONS(3101), + [anon_sym_true] = ACTIONS(3099), + [anon_sym_false] = ACTIONS(3099), + [anon_sym_PLUS] = ACTIONS(3099), + [anon_sym_DASH] = ACTIONS(3099), + [anon_sym_STAR] = ACTIONS(3101), + [anon_sym_CARET] = ACTIONS(3101), + [anon_sym_AMP] = ACTIONS(3101), + [anon_sym_this] = ACTIONS(3099), + [anon_sym_scoped] = ACTIONS(3099), + [anon_sym_base] = ACTIONS(3099), + [anon_sym_var] = ACTIONS(3099), + [sym_predefined_type] = ACTIONS(3099), + [anon_sym_break] = ACTIONS(3099), + [anon_sym_unchecked] = ACTIONS(3099), + [anon_sym_continue] = ACTIONS(3099), + [anon_sym_do] = ACTIONS(3099), + [anon_sym_while] = ACTIONS(3099), + [anon_sym_for] = ACTIONS(3099), + [anon_sym_lock] = ACTIONS(3099), + [anon_sym_yield] = ACTIONS(3099), + [anon_sym_switch] = ACTIONS(3099), + [anon_sym_default] = ACTIONS(3099), + [anon_sym_throw] = ACTIONS(3099), + [anon_sym_try] = ACTIONS(3099), + [anon_sym_catch] = ACTIONS(3095), + [anon_sym_when] = ACTIONS(3099), + [anon_sym_finally] = ACTIONS(3097), + [anon_sym_await] = ACTIONS(3099), + [anon_sym_foreach] = ACTIONS(3099), + [anon_sym_goto] = ACTIONS(3099), + [anon_sym_if] = ACTIONS(3099), + [anon_sym_else] = ACTIONS(3099), + [anon_sym_DOT_DOT] = ACTIONS(3101), + [anon_sym_from] = ACTIONS(3099), + [anon_sym_into] = ACTIONS(3099), + [anon_sym_join] = ACTIONS(3099), + [anon_sym_on] = ACTIONS(3099), + [anon_sym_equals] = ACTIONS(3099), + [anon_sym_let] = ACTIONS(3099), + [anon_sym_orderby] = ACTIONS(3099), + [anon_sym_ascending] = ACTIONS(3099), + [anon_sym_descending] = ACTIONS(3099), + [anon_sym_group] = ACTIONS(3099), + [anon_sym_by] = ACTIONS(3099), + [anon_sym_select] = ACTIONS(3099), + [anon_sym_stackalloc] = ACTIONS(3099), + [anon_sym_sizeof] = ACTIONS(3099), + [anon_sym_typeof] = ACTIONS(3099), + [anon_sym___makeref] = ACTIONS(3099), + [anon_sym___reftype] = ACTIONS(3099), + [anon_sym___refvalue] = ACTIONS(3099), + [sym_null_literal] = ACTIONS(3099), + [anon_sym_SQUOTE] = ACTIONS(3101), + [sym_integer_literal] = ACTIONS(3099), + [sym_real_literal] = ACTIONS(3101), + [anon_sym_DQUOTE] = ACTIONS(3101), + [sym_verbatim_string_literal] = ACTIONS(3101), + [aux_sym_preproc_if_token1] = ACTIONS(3101), + [aux_sym_preproc_if_token3] = ACTIONS(3101), + [aux_sym_preproc_else_token1] = ACTIONS(3101), + [aux_sym_preproc_elif_token1] = ACTIONS(3101), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + [sym_interpolation_regular_start] = ACTIONS(3101), + [sym_interpolation_verbatim_start] = ACTIONS(3101), + [sym_interpolation_raw_start] = ACTIONS(3101), + [sym_raw_string_start] = ACTIONS(3101), + }, + [1915] = { + [sym_using_directive] = STATE(2756), + [sym_attribute_list] = STATE(2925), + [sym__attribute_list] = STATE(2953), + [sym_namespace_declaration] = STATE(2756), + [sym_class_declaration] = STATE(2756), + [sym__class_declaration_initializer] = STATE(6696), + [sym_struct_declaration] = STATE(2756), + [sym__struct_declaration_initializer] = STATE(6697), + [sym_enum_declaration] = STATE(2756), + [sym__enum_declaration_initializer] = STATE(6955), + [sym_interface_declaration] = STATE(2756), + [sym__interface_declaration_initializer] = STATE(6701), + [sym_delegate_declaration] = STATE(2756), + [sym__delegate_declaration_initializer] = STATE(6703), + [sym_record_declaration] = STATE(2756), + [sym__record_declaration_initializer] = STATE(6704), + [sym_modifier] = STATE(3114), + [sym_operator_declaration] = STATE(2756), + [sym_conversion_operator_declaration] = STATE(2756), + [sym_declaration] = STATE(2773), + [sym_field_declaration] = STATE(2756), + [sym_constructor_declaration] = STATE(2756), + [sym__constructor_declaration_initializer] = STATE(6431), + [sym_destructor_declaration] = STATE(2756), + [sym_method_declaration] = STATE(2756), + [sym_event_declaration] = STATE(2756), + [sym_event_field_declaration] = STATE(2756), + [sym_indexer_declaration] = STATE(2756), + [sym_property_declaration] = STATE(2756), + [sym_variable_declaration] = STATE(7638), + [sym__name] = STATE(4369), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(4068), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(4073), + [sym_type] = STATE(5634), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_identifier] = STATE(5721), + [sym__reserved_identifier] = STATE(3654), + [sym_preproc_if] = STATE(2756), + [sym_preproc_if_in_attribute_list] = STATE(3034), + [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), + [aux_sym__class_declaration_initializer_repeat1] = STATE(2195), + [aux_sym__class_declaration_initializer_repeat2] = STATE(2273), + [aux_sym_declaration_list_repeat1] = STATE(1916), + [sym__identifier_token] = ACTIONS(2965), + [anon_sym_extern] = ACTIONS(2967), + [anon_sym_alias] = ACTIONS(2969), + [anon_sym_global] = ACTIONS(2971), + [anon_sym_using] = ACTIONS(2973), + [anon_sym_unsafe] = ACTIONS(65), + [anon_sym_static] = ACTIONS(65), + [anon_sym_LBRACK] = ACTIONS(2975), + [anon_sym_LPAREN] = ACTIONS(2977), + [anon_sym_event] = ACTIONS(2979), + [anon_sym_namespace] = ACTIONS(2981), + [anon_sym_class] = ACTIONS(49), + [anon_sym_ref] = ACTIONS(2983), + [anon_sym_struct] = ACTIONS(53), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_interface] = ACTIONS(59), + [anon_sym_delegate] = ACTIONS(2985), + [anon_sym_record] = ACTIONS(63), + [anon_sym_abstract] = ACTIONS(65), + [anon_sym_async] = ACTIONS(65), + [anon_sym_const] = ACTIONS(65), + [anon_sym_file] = ACTIONS(2987), + [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(2969), + [anon_sym_notnull] = ACTIONS(2969), + [anon_sym_unmanaged] = ACTIONS(2969), + [anon_sym_TILDE] = ACTIONS(2989), + [anon_sym_implicit] = ACTIONS(2991), + [anon_sym_explicit] = ACTIONS(2991), + [anon_sym_scoped] = ACTIONS(2993), + [anon_sym_var] = ACTIONS(2995), + [sym_predefined_type] = ACTIONS(2997), + [anon_sym_yield] = ACTIONS(2969), + [anon_sym_when] = ACTIONS(2969), + [anon_sym_from] = ACTIONS(2969), + [anon_sym_into] = ACTIONS(2969), + [anon_sym_join] = ACTIONS(2969), + [anon_sym_on] = ACTIONS(2969), + [anon_sym_equals] = ACTIONS(2969), + [anon_sym_let] = ACTIONS(2969), + [anon_sym_orderby] = ACTIONS(2969), + [anon_sym_ascending] = ACTIONS(2969), + [anon_sym_descending] = ACTIONS(2969), + [anon_sym_group] = ACTIONS(2969), + [anon_sym_by] = ACTIONS(2969), + [anon_sym_select] = ACTIONS(2969), + [aux_sym_preproc_if_token1] = ACTIONS(2999), + [aux_sym_preproc_if_token3] = ACTIONS(3103), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -361176,165 +365042,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(1213), - [sym_interpolation_verbatim_start] = ACTIONS(1215), - [sym_interpolation_raw_start] = ACTIONS(1217), - [sym_raw_string_start] = ACTIONS(1219), }, - [1890] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2610), - [sym__name] = STATE(5886), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2319), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(4450), - [sym_non_lvalue_expression] = STATE(3277), - [sym_lvalue_expression] = STATE(3347), - [sym__expression_statement_expression] = STATE(3228), - [sym_assignment_expression] = STATE(3289), - [sym_binary_expression] = STATE(3228), - [sym_postfix_unary_expression] = STATE(3289), - [sym_prefix_unary_expression] = STATE(3289), - [sym__pointer_indirection_expression] = STATE(2609), - [sym_query_expression] = STATE(3228), - [sym_from_clause] = STATE(6150), - [sym_conditional_expression] = STATE(3228), - [sym_conditional_access_expression] = STATE(3228), - [sym_as_expression] = STATE(3228), - [sym_is_expression] = STATE(3228), - [sym_is_pattern_expression] = STATE(3228), - [sym_cast_expression] = STATE(3228), - [sym_checked_expression] = STATE(3228), - [sym_invocation_expression] = STATE(3289), - [sym_switch_expression] = STATE(3228), - [sym_await_expression] = STATE(3289), - [sym_throw_expression] = STATE(3228), - [sym_element_access_expression] = STATE(2609), - [sym_interpolated_string_expression] = STATE(3228), - [sym_member_access_expression] = STATE(2609), - [sym_object_creation_expression] = STATE(3289), - [sym_parenthesized_expression] = STATE(3289), - [sym__parenthesized_lvalue_expression] = STATE(2609), - [sym_lambda_expression] = STATE(3228), - [sym__lambda_expression_init] = STATE(7531), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3228), - [sym_anonymous_method_expression] = STATE(3228), - [sym_anonymous_object_creation_expression] = STATE(3228), - [sym_implicit_array_creation_expression] = STATE(3228), - [sym_implicit_object_creation_expression] = STATE(3228), - [sym_implicit_stackalloc_expression] = STATE(3228), - [sym_initializer_expression] = STATE(3228), - [sym_default_expression] = STATE(3228), - [sym_with_expression] = STATE(3228), - [sym_sizeof_expression] = STATE(3228), - [sym_typeof_expression] = STATE(3228), - [sym_makeref_expression] = STATE(3228), - [sym_ref_expression] = STATE(3228), - [sym_reftype_expression] = STATE(3228), - [sym_refvalue_expression] = STATE(3228), - [sym_stackalloc_expression] = STATE(3228), - [sym_range_expression] = STATE(3228), - [sym_tuple_expression] = STATE(2609), - [sym_literal] = STATE(3228), - [sym_character_literal] = STATE(3278), - [sym_string_literal] = STATE(3278), - [sym_raw_string_literal] = STATE(3278), - [sym_boolean_literal] = STATE(3278), - [sym_identifier] = STATE(2267), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3228), - [sym_preproc_if_in_attribute_list] = STATE(5576), - [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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3396), - [sym__identifier_token] = ACTIONS(25), - [anon_sym_alias] = ACTIONS(29), - [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1153), - [anon_sym_LPAREN] = ACTIONS(1525), - [anon_sym_ref] = ACTIONS(1527), - [anon_sym_LBRACE] = ACTIONS(1159), - [anon_sym_delegate] = ACTIONS(1161), - [anon_sym_async] = ACTIONS(1047), - [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1529), - [anon_sym_where] = ACTIONS(29), - [anon_sym_notnull] = ACTIONS(29), - [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1167), - [anon_sym_BANG] = ACTIONS(1533), - [anon_sym_TILDE] = ACTIONS(1533), - [anon_sym_PLUS_PLUS] = ACTIONS(1533), - [anon_sym_DASH_DASH] = ACTIONS(1533), - [anon_sym_true] = ACTIONS(1173), - [anon_sym_false] = ACTIONS(1173), - [anon_sym_PLUS] = ACTIONS(1531), - [anon_sym_DASH] = ACTIONS(1531), - [anon_sym_STAR] = ACTIONS(1535), - [anon_sym_CARET] = ACTIONS(1533), - [anon_sym_AMP] = ACTIONS(1533), - [anon_sym_this] = ACTIONS(1177), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1179), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1181), - [anon_sym_unchecked] = ACTIONS(1167), - [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1183), - [anon_sym_throw] = ACTIONS(1537), - [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1539), - [anon_sym_DOT_DOT] = ACTIONS(1541), - [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(1191), - [anon_sym_sizeof] = ACTIONS(1193), - [anon_sym_typeof] = ACTIONS(1195), - [anon_sym___makeref] = ACTIONS(1197), - [anon_sym___reftype] = ACTIONS(1199), - [anon_sym___refvalue] = ACTIONS(1201), - [sym_null_literal] = ACTIONS(1203), - [anon_sym_SQUOTE] = ACTIONS(1205), - [sym_integer_literal] = ACTIONS(1203), - [sym_real_literal] = ACTIONS(1207), - [anon_sym_DQUOTE] = ACTIONS(1209), - [sym_verbatim_string_literal] = ACTIONS(1207), - [aux_sym_preproc_if_token1] = ACTIONS(1211), + [1916] = { + [sym_using_directive] = STATE(2756), + [sym_attribute_list] = STATE(3034), + [sym__attribute_list] = STATE(2953), + [sym_namespace_declaration] = STATE(2756), + [sym_class_declaration] = STATE(2756), + [sym__class_declaration_initializer] = STATE(6696), + [sym_struct_declaration] = STATE(2756), + [sym__struct_declaration_initializer] = STATE(6697), + [sym_enum_declaration] = STATE(2756), + [sym__enum_declaration_initializer] = STATE(6955), + [sym_interface_declaration] = STATE(2756), + [sym__interface_declaration_initializer] = STATE(6701), + [sym_delegate_declaration] = STATE(2756), + [sym__delegate_declaration_initializer] = STATE(6703), + [sym_record_declaration] = STATE(2756), + [sym__record_declaration_initializer] = STATE(6704), + [sym_modifier] = STATE(3114), + [sym_operator_declaration] = STATE(2756), + [sym_conversion_operator_declaration] = STATE(2756), + [sym_declaration] = STATE(2773), + [sym_field_declaration] = STATE(2756), + [sym_constructor_declaration] = STATE(2756), + [sym__constructor_declaration_initializer] = STATE(6431), + [sym_destructor_declaration] = STATE(2756), + [sym_method_declaration] = STATE(2756), + [sym_event_declaration] = STATE(2756), + [sym_event_field_declaration] = STATE(2756), + [sym_indexer_declaration] = STATE(2756), + [sym_property_declaration] = STATE(2756), + [sym_variable_declaration] = STATE(7638), + [sym__name] = STATE(4369), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(4068), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(4073), + [sym_type] = STATE(5634), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_identifier] = STATE(5721), + [sym__reserved_identifier] = STATE(3654), + [sym_preproc_if] = STATE(2756), + [sym_preproc_if_in_attribute_list] = STATE(3034), + [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), + [aux_sym__class_declaration_initializer_repeat1] = STATE(2195), + [aux_sym__class_declaration_initializer_repeat2] = STATE(2273), + [aux_sym_declaration_list_repeat1] = STATE(1912), + [sym__identifier_token] = ACTIONS(2965), + [anon_sym_extern] = ACTIONS(2967), + [anon_sym_alias] = ACTIONS(2969), + [anon_sym_global] = ACTIONS(2971), + [anon_sym_using] = ACTIONS(2973), + [anon_sym_unsafe] = ACTIONS(65), + [anon_sym_static] = ACTIONS(65), + [anon_sym_LBRACK] = ACTIONS(2975), + [anon_sym_LPAREN] = ACTIONS(2977), + [anon_sym_event] = ACTIONS(2979), + [anon_sym_namespace] = ACTIONS(2981), + [anon_sym_class] = ACTIONS(49), + [anon_sym_ref] = ACTIONS(2983), + [anon_sym_struct] = ACTIONS(53), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_interface] = ACTIONS(59), + [anon_sym_delegate] = ACTIONS(2985), + [anon_sym_record] = ACTIONS(63), + [anon_sym_abstract] = ACTIONS(65), + [anon_sym_async] = ACTIONS(65), + [anon_sym_const] = ACTIONS(65), + [anon_sym_file] = ACTIONS(2987), + [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(2969), + [anon_sym_notnull] = ACTIONS(2969), + [anon_sym_unmanaged] = ACTIONS(2969), + [anon_sym_TILDE] = ACTIONS(2989), + [anon_sym_implicit] = ACTIONS(2991), + [anon_sym_explicit] = ACTIONS(2991), + [anon_sym_scoped] = ACTIONS(2993), + [anon_sym_var] = ACTIONS(2995), + [sym_predefined_type] = ACTIONS(2997), + [anon_sym_yield] = ACTIONS(2969), + [anon_sym_when] = ACTIONS(2969), + [anon_sym_from] = ACTIONS(2969), + [anon_sym_into] = ACTIONS(2969), + [anon_sym_join] = ACTIONS(2969), + [anon_sym_on] = ACTIONS(2969), + [anon_sym_equals] = ACTIONS(2969), + [anon_sym_let] = ACTIONS(2969), + [anon_sym_orderby] = ACTIONS(2969), + [anon_sym_ascending] = ACTIONS(2969), + [anon_sym_descending] = ACTIONS(2969), + [anon_sym_group] = ACTIONS(2969), + [anon_sym_by] = ACTIONS(2969), + [anon_sym_select] = ACTIONS(2969), + [aux_sym_preproc_if_token1] = ACTIONS(2999), + [aux_sym_preproc_if_token3] = ACTIONS(3105), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -361345,165 +365176,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(1213), - [sym_interpolation_verbatim_start] = ACTIONS(1215), - [sym_interpolation_raw_start] = ACTIONS(1217), - [sym_raw_string_start] = ACTIONS(1219), }, - [1891] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(5910), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2247), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(5606), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3379), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3080), - [sym_postfix_unary_expression] = STATE(3111), - [sym_prefix_unary_expression] = STATE(3111), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6154), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3080), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3111), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3080), - [sym_member_access_expression] = STATE(2484), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3111), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7575), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(3080), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3080), - [sym_typeof_expression] = STATE(3080), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2484), - [sym_literal] = STATE(3080), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), - [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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), - [sym__identifier_token] = ACTIONS(25), - [anon_sym_alias] = ACTIONS(29), - [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1481), - [anon_sym_LPAREN] = ACTIONS(895), - [anon_sym_ref] = ACTIONS(897), - [anon_sym_LBRACE] = ACTIONS(1487), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), - [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1061), - [anon_sym_where] = ACTIONS(29), - [anon_sym_notnull] = ACTIONS(29), - [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1067), - [anon_sym_BANG] = ACTIONS(1495), - [anon_sym_TILDE] = ACTIONS(1495), - [anon_sym_PLUS_PLUS] = ACTIONS(1495), - [anon_sym_DASH_DASH] = ACTIONS(1495), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1493), - [anon_sym_DASH] = ACTIONS(1493), - [anon_sym_STAR] = ACTIONS(905), - [anon_sym_CARET] = ACTIONS(1495), - [anon_sym_AMP] = ACTIONS(1495), - [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(1067), - [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1079), - [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1081), - [anon_sym_DOT_DOT] = ACTIONS(911), - [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(1089), + [1917] = { + [sym_using_directive] = STATE(2756), + [sym_attribute_list] = STATE(3034), + [sym__attribute_list] = STATE(2953), + [sym_namespace_declaration] = STATE(2756), + [sym_class_declaration] = STATE(2756), + [sym__class_declaration_initializer] = STATE(6696), + [sym_struct_declaration] = STATE(2756), + [sym__struct_declaration_initializer] = STATE(6697), + [sym_enum_declaration] = STATE(2756), + [sym__enum_declaration_initializer] = STATE(6955), + [sym_interface_declaration] = STATE(2756), + [sym__interface_declaration_initializer] = STATE(6701), + [sym_delegate_declaration] = STATE(2756), + [sym__delegate_declaration_initializer] = STATE(6703), + [sym_record_declaration] = STATE(2756), + [sym__record_declaration_initializer] = STATE(6704), + [sym_modifier] = STATE(3114), + [sym_operator_declaration] = STATE(2756), + [sym_conversion_operator_declaration] = STATE(2756), + [sym_declaration] = STATE(2773), + [sym_field_declaration] = STATE(2756), + [sym_constructor_declaration] = STATE(2756), + [sym__constructor_declaration_initializer] = STATE(6431), + [sym_destructor_declaration] = STATE(2756), + [sym_method_declaration] = STATE(2756), + [sym_event_declaration] = STATE(2756), + [sym_event_field_declaration] = STATE(2756), + [sym_indexer_declaration] = STATE(2756), + [sym_property_declaration] = STATE(2756), + [sym_variable_declaration] = STATE(7638), + [sym__name] = STATE(4369), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(4068), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(4073), + [sym_type] = STATE(5634), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_identifier] = STATE(5721), + [sym__reserved_identifier] = STATE(3654), + [sym_preproc_if] = STATE(2756), + [sym_preproc_if_in_attribute_list] = STATE(3034), + [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), + [aux_sym__class_declaration_initializer_repeat1] = STATE(2195), + [aux_sym__class_declaration_initializer_repeat2] = STATE(2273), + [aux_sym_declaration_list_repeat1] = STATE(1916), + [sym__identifier_token] = ACTIONS(2965), + [anon_sym_extern] = ACTIONS(2967), + [anon_sym_alias] = ACTIONS(2969), + [anon_sym_global] = ACTIONS(2971), + [anon_sym_using] = ACTIONS(2973), + [anon_sym_unsafe] = ACTIONS(65), + [anon_sym_static] = ACTIONS(65), + [anon_sym_LBRACK] = ACTIONS(2975), + [anon_sym_LPAREN] = ACTIONS(2977), + [anon_sym_event] = ACTIONS(2979), + [anon_sym_namespace] = ACTIONS(2981), + [anon_sym_class] = ACTIONS(49), + [anon_sym_ref] = ACTIONS(2983), + [anon_sym_struct] = ACTIONS(53), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_interface] = ACTIONS(59), + [anon_sym_delegate] = ACTIONS(2985), + [anon_sym_record] = ACTIONS(63), + [anon_sym_abstract] = ACTIONS(65), + [anon_sym_async] = ACTIONS(65), + [anon_sym_const] = ACTIONS(65), + [anon_sym_file] = ACTIONS(2987), + [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(2969), + [anon_sym_notnull] = ACTIONS(2969), + [anon_sym_unmanaged] = ACTIONS(2969), + [anon_sym_TILDE] = ACTIONS(2989), + [anon_sym_implicit] = ACTIONS(2991), + [anon_sym_explicit] = ACTIONS(2991), + [anon_sym_scoped] = ACTIONS(2993), + [anon_sym_var] = ACTIONS(2995), + [sym_predefined_type] = ACTIONS(2997), + [anon_sym_yield] = ACTIONS(2969), + [anon_sym_when] = ACTIONS(2969), + [anon_sym_from] = ACTIONS(2969), + [anon_sym_into] = ACTIONS(2969), + [anon_sym_join] = ACTIONS(2969), + [anon_sym_on] = ACTIONS(2969), + [anon_sym_equals] = ACTIONS(2969), + [anon_sym_let] = ACTIONS(2969), + [anon_sym_orderby] = ACTIONS(2969), + [anon_sym_ascending] = ACTIONS(2969), + [anon_sym_descending] = ACTIONS(2969), + [anon_sym_group] = ACTIONS(2969), + [anon_sym_by] = ACTIONS(2969), + [anon_sym_select] = ACTIONS(2969), + [aux_sym_preproc_if_token1] = ACTIONS(2999), + [aux_sym_preproc_if_token3] = ACTIONS(3103), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -361514,165 +365310,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(151), - [sym_interpolation_verbatim_start] = ACTIONS(153), - [sym_interpolation_raw_start] = ACTIONS(155), - [sym_raw_string_start] = ACTIONS(157), }, - [1892] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(5910), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2247), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(5615), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3379), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3080), - [sym_postfix_unary_expression] = STATE(3111), - [sym_prefix_unary_expression] = STATE(3111), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6154), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3080), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3111), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3080), - [sym_member_access_expression] = STATE(2484), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3111), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7575), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(3080), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3080), - [sym_typeof_expression] = STATE(3080), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2484), - [sym_literal] = STATE(3080), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), - [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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), - [sym__identifier_token] = ACTIONS(25), - [anon_sym_alias] = ACTIONS(29), - [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1481), - [anon_sym_LPAREN] = ACTIONS(895), - [anon_sym_ref] = ACTIONS(897), - [anon_sym_LBRACE] = ACTIONS(1487), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), - [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1061), - [anon_sym_where] = ACTIONS(29), - [anon_sym_notnull] = ACTIONS(29), - [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1067), - [anon_sym_BANG] = ACTIONS(1495), - [anon_sym_TILDE] = ACTIONS(1495), - [anon_sym_PLUS_PLUS] = ACTIONS(1495), - [anon_sym_DASH_DASH] = ACTIONS(1495), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1493), - [anon_sym_DASH] = ACTIONS(1493), - [anon_sym_STAR] = ACTIONS(905), - [anon_sym_CARET] = ACTIONS(1495), - [anon_sym_AMP] = ACTIONS(1495), - [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(1067), - [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1079), - [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1081), - [anon_sym_DOT_DOT] = ACTIONS(911), - [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(1089), + [1918] = { + [sym_using_directive] = STATE(2756), + [sym_attribute_list] = STATE(3034), + [sym__attribute_list] = STATE(2953), + [sym_namespace_declaration] = STATE(2756), + [sym_class_declaration] = STATE(2756), + [sym__class_declaration_initializer] = STATE(6696), + [sym_struct_declaration] = STATE(2756), + [sym__struct_declaration_initializer] = STATE(6697), + [sym_enum_declaration] = STATE(2756), + [sym__enum_declaration_initializer] = STATE(6955), + [sym_interface_declaration] = STATE(2756), + [sym__interface_declaration_initializer] = STATE(6701), + [sym_delegate_declaration] = STATE(2756), + [sym__delegate_declaration_initializer] = STATE(6703), + [sym_record_declaration] = STATE(2756), + [sym__record_declaration_initializer] = STATE(6704), + [sym_modifier] = STATE(3114), + [sym_operator_declaration] = STATE(2756), + [sym_conversion_operator_declaration] = STATE(2756), + [sym_declaration] = STATE(2773), + [sym_field_declaration] = STATE(2756), + [sym_constructor_declaration] = STATE(2756), + [sym__constructor_declaration_initializer] = STATE(6431), + [sym_destructor_declaration] = STATE(2756), + [sym_method_declaration] = STATE(2756), + [sym_event_declaration] = STATE(2756), + [sym_event_field_declaration] = STATE(2756), + [sym_indexer_declaration] = STATE(2756), + [sym_property_declaration] = STATE(2756), + [sym_variable_declaration] = STATE(7638), + [sym__name] = STATE(4369), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(4068), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(4073), + [sym_type] = STATE(5634), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_identifier] = STATE(5721), + [sym__reserved_identifier] = STATE(3654), + [sym_preproc_if] = STATE(2756), + [sym_preproc_if_in_attribute_list] = STATE(3034), + [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), + [aux_sym__class_declaration_initializer_repeat1] = STATE(2195), + [aux_sym__class_declaration_initializer_repeat2] = STATE(2273), + [aux_sym_declaration_list_repeat1] = STATE(1912), + [sym__identifier_token] = ACTIONS(2965), + [anon_sym_extern] = ACTIONS(2967), + [anon_sym_alias] = ACTIONS(2969), + [anon_sym_global] = ACTIONS(2971), + [anon_sym_using] = ACTIONS(2973), + [anon_sym_unsafe] = ACTIONS(65), + [anon_sym_static] = ACTIONS(65), + [anon_sym_LBRACK] = ACTIONS(2975), + [anon_sym_LPAREN] = ACTIONS(2977), + [anon_sym_event] = ACTIONS(2979), + [anon_sym_namespace] = ACTIONS(2981), + [anon_sym_class] = ACTIONS(49), + [anon_sym_ref] = ACTIONS(2983), + [anon_sym_struct] = ACTIONS(53), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_RBRACE] = ACTIONS(3107), + [anon_sym_interface] = ACTIONS(59), + [anon_sym_delegate] = ACTIONS(2985), + [anon_sym_record] = ACTIONS(63), + [anon_sym_abstract] = ACTIONS(65), + [anon_sym_async] = ACTIONS(65), + [anon_sym_const] = ACTIONS(65), + [anon_sym_file] = ACTIONS(2987), + [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(2969), + [anon_sym_notnull] = ACTIONS(2969), + [anon_sym_unmanaged] = ACTIONS(2969), + [anon_sym_TILDE] = ACTIONS(2989), + [anon_sym_implicit] = ACTIONS(2991), + [anon_sym_explicit] = ACTIONS(2991), + [anon_sym_scoped] = ACTIONS(2993), + [anon_sym_var] = ACTIONS(2995), + [sym_predefined_type] = ACTIONS(2997), + [anon_sym_yield] = ACTIONS(2969), + [anon_sym_when] = ACTIONS(2969), + [anon_sym_from] = ACTIONS(2969), + [anon_sym_into] = ACTIONS(2969), + [anon_sym_join] = ACTIONS(2969), + [anon_sym_on] = ACTIONS(2969), + [anon_sym_equals] = ACTIONS(2969), + [anon_sym_let] = ACTIONS(2969), + [anon_sym_orderby] = ACTIONS(2969), + [anon_sym_ascending] = ACTIONS(2969), + [anon_sym_descending] = ACTIONS(2969), + [anon_sym_group] = ACTIONS(2969), + [anon_sym_by] = ACTIONS(2969), + [anon_sym_select] = ACTIONS(2969), + [aux_sym_preproc_if_token1] = ACTIONS(2999), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -361683,165 +365444,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(151), - [sym_interpolation_verbatim_start] = ACTIONS(153), - [sym_interpolation_raw_start] = ACTIONS(155), - [sym_raw_string_start] = ACTIONS(157), }, - [1893] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(5910), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2247), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(5624), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3379), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3080), - [sym_postfix_unary_expression] = STATE(3111), - [sym_prefix_unary_expression] = STATE(3111), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6154), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3080), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3111), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3080), - [sym_member_access_expression] = STATE(2484), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3111), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7575), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(3080), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3080), - [sym_typeof_expression] = STATE(3080), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2484), - [sym_literal] = STATE(3080), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), - [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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), - [sym__identifier_token] = ACTIONS(25), - [anon_sym_alias] = ACTIONS(29), - [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1481), - [anon_sym_LPAREN] = ACTIONS(895), - [anon_sym_ref] = ACTIONS(897), - [anon_sym_LBRACE] = ACTIONS(1487), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), - [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1061), - [anon_sym_where] = ACTIONS(29), - [anon_sym_notnull] = ACTIONS(29), - [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1067), - [anon_sym_BANG] = ACTIONS(1495), - [anon_sym_TILDE] = ACTIONS(1495), - [anon_sym_PLUS_PLUS] = ACTIONS(1495), - [anon_sym_DASH_DASH] = ACTIONS(1495), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1493), - [anon_sym_DASH] = ACTIONS(1493), - [anon_sym_STAR] = ACTIONS(905), - [anon_sym_CARET] = ACTIONS(1495), - [anon_sym_AMP] = ACTIONS(1495), - [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(1067), - [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1079), - [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1081), - [anon_sym_DOT_DOT] = ACTIONS(911), - [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(1089), + [1919] = { + [sym_using_directive] = STATE(2756), + [sym_attribute_list] = STATE(3034), + [sym__attribute_list] = STATE(2953), + [sym_namespace_declaration] = STATE(2756), + [sym_class_declaration] = STATE(2756), + [sym__class_declaration_initializer] = STATE(6696), + [sym_struct_declaration] = STATE(2756), + [sym__struct_declaration_initializer] = STATE(6697), + [sym_enum_declaration] = STATE(2756), + [sym__enum_declaration_initializer] = STATE(6955), + [sym_interface_declaration] = STATE(2756), + [sym__interface_declaration_initializer] = STATE(6701), + [sym_delegate_declaration] = STATE(2756), + [sym__delegate_declaration_initializer] = STATE(6703), + [sym_record_declaration] = STATE(2756), + [sym__record_declaration_initializer] = STATE(6704), + [sym_modifier] = STATE(3114), + [sym_operator_declaration] = STATE(2756), + [sym_conversion_operator_declaration] = STATE(2756), + [sym_declaration] = STATE(2773), + [sym_field_declaration] = STATE(2756), + [sym_constructor_declaration] = STATE(2756), + [sym__constructor_declaration_initializer] = STATE(6431), + [sym_destructor_declaration] = STATE(2756), + [sym_method_declaration] = STATE(2756), + [sym_event_declaration] = STATE(2756), + [sym_event_field_declaration] = STATE(2756), + [sym_indexer_declaration] = STATE(2756), + [sym_property_declaration] = STATE(2756), + [sym_variable_declaration] = STATE(7638), + [sym__name] = STATE(4369), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(4068), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(4073), + [sym_type] = STATE(5634), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_identifier] = STATE(5721), + [sym__reserved_identifier] = STATE(3654), + [sym_preproc_if] = STATE(2756), + [sym_preproc_if_in_attribute_list] = STATE(3034), + [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), + [aux_sym__class_declaration_initializer_repeat1] = STATE(2195), + [aux_sym__class_declaration_initializer_repeat2] = STATE(2273), + [aux_sym_declaration_list_repeat1] = STATE(1918), + [sym__identifier_token] = ACTIONS(2965), + [anon_sym_extern] = ACTIONS(2967), + [anon_sym_alias] = ACTIONS(2969), + [anon_sym_global] = ACTIONS(2971), + [anon_sym_using] = ACTIONS(2973), + [anon_sym_unsafe] = ACTIONS(65), + [anon_sym_static] = ACTIONS(65), + [anon_sym_LBRACK] = ACTIONS(2975), + [anon_sym_LPAREN] = ACTIONS(2977), + [anon_sym_event] = ACTIONS(2979), + [anon_sym_namespace] = ACTIONS(2981), + [anon_sym_class] = ACTIONS(49), + [anon_sym_ref] = ACTIONS(2983), + [anon_sym_struct] = ACTIONS(53), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_RBRACE] = ACTIONS(3109), + [anon_sym_interface] = ACTIONS(59), + [anon_sym_delegate] = ACTIONS(2985), + [anon_sym_record] = ACTIONS(63), + [anon_sym_abstract] = ACTIONS(65), + [anon_sym_async] = ACTIONS(65), + [anon_sym_const] = ACTIONS(65), + [anon_sym_file] = ACTIONS(2987), + [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(2969), + [anon_sym_notnull] = ACTIONS(2969), + [anon_sym_unmanaged] = ACTIONS(2969), + [anon_sym_TILDE] = ACTIONS(2989), + [anon_sym_implicit] = ACTIONS(2991), + [anon_sym_explicit] = ACTIONS(2991), + [anon_sym_scoped] = ACTIONS(2993), + [anon_sym_var] = ACTIONS(2995), + [sym_predefined_type] = ACTIONS(2997), + [anon_sym_yield] = ACTIONS(2969), + [anon_sym_when] = ACTIONS(2969), + [anon_sym_from] = ACTIONS(2969), + [anon_sym_into] = ACTIONS(2969), + [anon_sym_join] = ACTIONS(2969), + [anon_sym_on] = ACTIONS(2969), + [anon_sym_equals] = ACTIONS(2969), + [anon_sym_let] = ACTIONS(2969), + [anon_sym_orderby] = ACTIONS(2969), + [anon_sym_ascending] = ACTIONS(2969), + [anon_sym_descending] = ACTIONS(2969), + [anon_sym_group] = ACTIONS(2969), + [anon_sym_by] = ACTIONS(2969), + [anon_sym_select] = ACTIONS(2969), + [aux_sym_preproc_if_token1] = ACTIONS(2999), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -361852,165 +365578,782 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(151), - [sym_interpolation_verbatim_start] = ACTIONS(153), - [sym_interpolation_raw_start] = ACTIONS(155), - [sym_raw_string_start] = ACTIONS(157), }, - [1894] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(5910), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2247), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(5628), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3379), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3080), - [sym_postfix_unary_expression] = STATE(3111), - [sym_prefix_unary_expression] = STATE(3111), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6154), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3080), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3111), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3080), - [sym_member_access_expression] = STATE(2484), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3111), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7575), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(3080), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3080), - [sym_typeof_expression] = STATE(3080), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2484), - [sym_literal] = STATE(3080), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), - [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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), - [sym__identifier_token] = ACTIONS(25), - [anon_sym_alias] = ACTIONS(29), - [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1481), - [anon_sym_LPAREN] = ACTIONS(895), - [anon_sym_ref] = ACTIONS(897), - [anon_sym_LBRACE] = ACTIONS(1487), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), - [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1061), - [anon_sym_where] = ACTIONS(29), - [anon_sym_notnull] = ACTIONS(29), - [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1067), - [anon_sym_BANG] = ACTIONS(1495), - [anon_sym_TILDE] = ACTIONS(1495), - [anon_sym_PLUS_PLUS] = ACTIONS(1495), - [anon_sym_DASH_DASH] = ACTIONS(1495), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1493), - [anon_sym_DASH] = ACTIONS(1493), - [anon_sym_STAR] = ACTIONS(905), - [anon_sym_CARET] = ACTIONS(1495), - [anon_sym_AMP] = ACTIONS(1495), - [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(1067), - [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1079), - [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1081), - [anon_sym_DOT_DOT] = ACTIONS(911), - [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(1089), + [1920] = { + [sym_catch_clause] = STATE(1925), + [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), + [aux_sym_try_statement_repeat1] = STATE(1920), + [sym__identifier_token] = ACTIONS(3111), + [anon_sym_extern] = ACTIONS(3111), + [anon_sym_alias] = ACTIONS(3111), + [anon_sym_SEMI] = ACTIONS(3113), + [anon_sym_global] = ACTIONS(3111), + [anon_sym_using] = ACTIONS(3111), + [anon_sym_unsafe] = ACTIONS(3111), + [anon_sym_static] = ACTIONS(3111), + [anon_sym_LBRACK] = ACTIONS(3113), + [anon_sym_LPAREN] = ACTIONS(3113), + [anon_sym_return] = ACTIONS(3111), + [anon_sym_namespace] = ACTIONS(3111), + [anon_sym_class] = ACTIONS(3111), + [anon_sym_ref] = ACTIONS(3111), + [anon_sym_struct] = ACTIONS(3111), + [anon_sym_enum] = ACTIONS(3111), + [anon_sym_LBRACE] = ACTIONS(3113), + [anon_sym_interface] = ACTIONS(3111), + [anon_sym_delegate] = ACTIONS(3111), + [anon_sym_record] = ACTIONS(3111), + [anon_sym_abstract] = ACTIONS(3111), + [anon_sym_async] = ACTIONS(3111), + [anon_sym_const] = ACTIONS(3111), + [anon_sym_file] = ACTIONS(3111), + [anon_sym_fixed] = ACTIONS(3111), + [anon_sym_internal] = ACTIONS(3111), + [anon_sym_new] = ACTIONS(3111), + [anon_sym_override] = ACTIONS(3111), + [anon_sym_partial] = ACTIONS(3111), + [anon_sym_private] = ACTIONS(3111), + [anon_sym_protected] = ACTIONS(3111), + [anon_sym_public] = ACTIONS(3111), + [anon_sym_readonly] = ACTIONS(3111), + [anon_sym_required] = ACTIONS(3111), + [anon_sym_sealed] = ACTIONS(3111), + [anon_sym_virtual] = ACTIONS(3111), + [anon_sym_volatile] = ACTIONS(3111), + [anon_sym_where] = ACTIONS(3111), + [anon_sym_notnull] = ACTIONS(3111), + [anon_sym_unmanaged] = ACTIONS(3111), + [anon_sym_checked] = ACTIONS(3111), + [anon_sym_BANG] = ACTIONS(3113), + [anon_sym_TILDE] = ACTIONS(3113), + [anon_sym_PLUS_PLUS] = ACTIONS(3113), + [anon_sym_DASH_DASH] = ACTIONS(3113), + [anon_sym_true] = ACTIONS(3111), + [anon_sym_false] = ACTIONS(3111), + [anon_sym_PLUS] = ACTIONS(3111), + [anon_sym_DASH] = ACTIONS(3111), + [anon_sym_STAR] = ACTIONS(3113), + [anon_sym_CARET] = ACTIONS(3113), + [anon_sym_AMP] = ACTIONS(3113), + [anon_sym_this] = ACTIONS(3111), + [anon_sym_scoped] = ACTIONS(3111), + [anon_sym_base] = ACTIONS(3111), + [anon_sym_var] = ACTIONS(3111), + [sym_predefined_type] = ACTIONS(3111), + [anon_sym_break] = ACTIONS(3111), + [anon_sym_unchecked] = ACTIONS(3111), + [anon_sym_continue] = ACTIONS(3111), + [anon_sym_do] = ACTIONS(3111), + [anon_sym_while] = ACTIONS(3111), + [anon_sym_for] = ACTIONS(3111), + [anon_sym_lock] = ACTIONS(3111), + [anon_sym_yield] = ACTIONS(3111), + [anon_sym_switch] = ACTIONS(3111), + [anon_sym_default] = ACTIONS(3111), + [anon_sym_throw] = ACTIONS(3111), + [anon_sym_try] = ACTIONS(3111), + [anon_sym_catch] = ACTIONS(3115), + [anon_sym_when] = ACTIONS(3111), + [anon_sym_finally] = ACTIONS(3111), + [anon_sym_await] = ACTIONS(3111), + [anon_sym_foreach] = ACTIONS(3111), + [anon_sym_goto] = ACTIONS(3111), + [anon_sym_if] = ACTIONS(3111), + [anon_sym_else] = ACTIONS(3111), + [anon_sym_DOT_DOT] = ACTIONS(3113), + [anon_sym_from] = ACTIONS(3111), + [anon_sym_into] = ACTIONS(3111), + [anon_sym_join] = ACTIONS(3111), + [anon_sym_on] = ACTIONS(3111), + [anon_sym_equals] = ACTIONS(3111), + [anon_sym_let] = ACTIONS(3111), + [anon_sym_orderby] = ACTIONS(3111), + [anon_sym_ascending] = ACTIONS(3111), + [anon_sym_descending] = ACTIONS(3111), + [anon_sym_group] = ACTIONS(3111), + [anon_sym_by] = ACTIONS(3111), + [anon_sym_select] = ACTIONS(3111), + [anon_sym_stackalloc] = ACTIONS(3111), + [anon_sym_sizeof] = ACTIONS(3111), + [anon_sym_typeof] = ACTIONS(3111), + [anon_sym___makeref] = ACTIONS(3111), + [anon_sym___reftype] = ACTIONS(3111), + [anon_sym___refvalue] = ACTIONS(3111), + [sym_null_literal] = ACTIONS(3111), + [anon_sym_SQUOTE] = ACTIONS(3113), + [sym_integer_literal] = ACTIONS(3111), + [sym_real_literal] = ACTIONS(3113), + [anon_sym_DQUOTE] = ACTIONS(3113), + [sym_verbatim_string_literal] = ACTIONS(3113), + [aux_sym_preproc_if_token1] = ACTIONS(3113), + [aux_sym_preproc_if_token3] = ACTIONS(3113), + [aux_sym_preproc_else_token1] = ACTIONS(3113), + [aux_sym_preproc_elif_token1] = ACTIONS(3113), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + [sym_interpolation_regular_start] = ACTIONS(3113), + [sym_interpolation_verbatim_start] = ACTIONS(3113), + [sym_interpolation_raw_start] = ACTIONS(3113), + [sym_raw_string_start] = ACTIONS(3113), + }, + [1921] = { + [sym_catch_clause] = STATE(1979), + [sym_finally_clause] = STATE(2015), + [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_try_statement_repeat1] = STATE(1922), + [ts_builtin_sym_end] = ACTIONS(3093), + [sym__identifier_token] = ACTIONS(3091), + [anon_sym_extern] = ACTIONS(3091), + [anon_sym_alias] = ACTIONS(3091), + [anon_sym_SEMI] = ACTIONS(3093), + [anon_sym_global] = ACTIONS(3091), + [anon_sym_using] = ACTIONS(3091), + [anon_sym_unsafe] = ACTIONS(3091), + [anon_sym_static] = ACTIONS(3091), + [anon_sym_LBRACK] = ACTIONS(3093), + [anon_sym_LPAREN] = ACTIONS(3093), + [anon_sym_return] = ACTIONS(3091), + [anon_sym_namespace] = ACTIONS(3091), + [anon_sym_class] = ACTIONS(3091), + [anon_sym_ref] = ACTIONS(3091), + [anon_sym_struct] = ACTIONS(3091), + [anon_sym_enum] = ACTIONS(3091), + [anon_sym_LBRACE] = ACTIONS(3093), + [anon_sym_interface] = ACTIONS(3091), + [anon_sym_delegate] = ACTIONS(3091), + [anon_sym_record] = ACTIONS(3091), + [anon_sym_abstract] = ACTIONS(3091), + [anon_sym_async] = ACTIONS(3091), + [anon_sym_const] = ACTIONS(3091), + [anon_sym_file] = ACTIONS(3091), + [anon_sym_fixed] = ACTIONS(3091), + [anon_sym_internal] = ACTIONS(3091), + [anon_sym_new] = ACTIONS(3091), + [anon_sym_override] = ACTIONS(3091), + [anon_sym_partial] = ACTIONS(3091), + [anon_sym_private] = ACTIONS(3091), + [anon_sym_protected] = ACTIONS(3091), + [anon_sym_public] = ACTIONS(3091), + [anon_sym_readonly] = ACTIONS(3091), + [anon_sym_required] = ACTIONS(3091), + [anon_sym_sealed] = ACTIONS(3091), + [anon_sym_virtual] = ACTIONS(3091), + [anon_sym_volatile] = ACTIONS(3091), + [anon_sym_where] = ACTIONS(3091), + [anon_sym_notnull] = ACTIONS(3091), + [anon_sym_unmanaged] = ACTIONS(3091), + [anon_sym_checked] = ACTIONS(3091), + [anon_sym_BANG] = ACTIONS(3093), + [anon_sym_TILDE] = ACTIONS(3093), + [anon_sym_PLUS_PLUS] = ACTIONS(3093), + [anon_sym_DASH_DASH] = ACTIONS(3093), + [anon_sym_true] = ACTIONS(3091), + [anon_sym_false] = ACTIONS(3091), + [anon_sym_PLUS] = ACTIONS(3091), + [anon_sym_DASH] = ACTIONS(3091), + [anon_sym_STAR] = ACTIONS(3093), + [anon_sym_CARET] = ACTIONS(3093), + [anon_sym_AMP] = ACTIONS(3093), + [anon_sym_this] = ACTIONS(3091), + [anon_sym_scoped] = ACTIONS(3091), + [anon_sym_base] = ACTIONS(3091), + [anon_sym_var] = ACTIONS(3091), + [sym_predefined_type] = ACTIONS(3091), + [anon_sym_break] = ACTIONS(3091), + [anon_sym_unchecked] = ACTIONS(3091), + [anon_sym_continue] = ACTIONS(3091), + [anon_sym_do] = ACTIONS(3091), + [anon_sym_while] = ACTIONS(3091), + [anon_sym_for] = ACTIONS(3091), + [anon_sym_lock] = ACTIONS(3091), + [anon_sym_yield] = ACTIONS(3091), + [anon_sym_switch] = ACTIONS(3091), + [anon_sym_default] = ACTIONS(3091), + [anon_sym_throw] = ACTIONS(3091), + [anon_sym_try] = ACTIONS(3091), + [anon_sym_catch] = ACTIONS(3118), + [anon_sym_when] = ACTIONS(3091), + [anon_sym_finally] = ACTIONS(3120), + [anon_sym_await] = ACTIONS(3091), + [anon_sym_foreach] = ACTIONS(3091), + [anon_sym_goto] = ACTIONS(3091), + [anon_sym_if] = ACTIONS(3091), + [anon_sym_else] = ACTIONS(3091), + [anon_sym_DOT_DOT] = ACTIONS(3093), + [anon_sym_from] = ACTIONS(3091), + [anon_sym_into] = ACTIONS(3091), + [anon_sym_join] = ACTIONS(3091), + [anon_sym_on] = ACTIONS(3091), + [anon_sym_equals] = ACTIONS(3091), + [anon_sym_let] = ACTIONS(3091), + [anon_sym_orderby] = ACTIONS(3091), + [anon_sym_ascending] = ACTIONS(3091), + [anon_sym_descending] = ACTIONS(3091), + [anon_sym_group] = ACTIONS(3091), + [anon_sym_by] = ACTIONS(3091), + [anon_sym_select] = ACTIONS(3091), + [anon_sym_stackalloc] = ACTIONS(3091), + [anon_sym_sizeof] = ACTIONS(3091), + [anon_sym_typeof] = ACTIONS(3091), + [anon_sym___makeref] = ACTIONS(3091), + [anon_sym___reftype] = ACTIONS(3091), + [anon_sym___refvalue] = ACTIONS(3091), + [sym_null_literal] = ACTIONS(3091), + [anon_sym_SQUOTE] = ACTIONS(3093), + [sym_integer_literal] = ACTIONS(3091), + [sym_real_literal] = ACTIONS(3093), + [anon_sym_DQUOTE] = ACTIONS(3093), + [sym_verbatim_string_literal] = ACTIONS(3093), + [aux_sym_preproc_if_token1] = ACTIONS(3093), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + [sym_interpolation_regular_start] = ACTIONS(3093), + [sym_interpolation_verbatim_start] = ACTIONS(3093), + [sym_interpolation_raw_start] = ACTIONS(3093), + [sym_raw_string_start] = ACTIONS(3093), + }, + [1922] = { + [sym_catch_clause] = STATE(1979), + [sym_finally_clause] = STATE(2031), + [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_try_statement_repeat1] = STATE(1926), + [ts_builtin_sym_end] = ACTIONS(3101), + [sym__identifier_token] = ACTIONS(3099), + [anon_sym_extern] = ACTIONS(3099), + [anon_sym_alias] = ACTIONS(3099), + [anon_sym_SEMI] = ACTIONS(3101), + [anon_sym_global] = ACTIONS(3099), + [anon_sym_using] = ACTIONS(3099), + [anon_sym_unsafe] = ACTIONS(3099), + [anon_sym_static] = ACTIONS(3099), + [anon_sym_LBRACK] = ACTIONS(3101), + [anon_sym_LPAREN] = ACTIONS(3101), + [anon_sym_return] = ACTIONS(3099), + [anon_sym_namespace] = ACTIONS(3099), + [anon_sym_class] = ACTIONS(3099), + [anon_sym_ref] = ACTIONS(3099), + [anon_sym_struct] = ACTIONS(3099), + [anon_sym_enum] = ACTIONS(3099), + [anon_sym_LBRACE] = ACTIONS(3101), + [anon_sym_interface] = ACTIONS(3099), + [anon_sym_delegate] = ACTIONS(3099), + [anon_sym_record] = ACTIONS(3099), + [anon_sym_abstract] = ACTIONS(3099), + [anon_sym_async] = ACTIONS(3099), + [anon_sym_const] = ACTIONS(3099), + [anon_sym_file] = ACTIONS(3099), + [anon_sym_fixed] = ACTIONS(3099), + [anon_sym_internal] = ACTIONS(3099), + [anon_sym_new] = ACTIONS(3099), + [anon_sym_override] = ACTIONS(3099), + [anon_sym_partial] = ACTIONS(3099), + [anon_sym_private] = ACTIONS(3099), + [anon_sym_protected] = ACTIONS(3099), + [anon_sym_public] = ACTIONS(3099), + [anon_sym_readonly] = ACTIONS(3099), + [anon_sym_required] = ACTIONS(3099), + [anon_sym_sealed] = ACTIONS(3099), + [anon_sym_virtual] = ACTIONS(3099), + [anon_sym_volatile] = ACTIONS(3099), + [anon_sym_where] = ACTIONS(3099), + [anon_sym_notnull] = ACTIONS(3099), + [anon_sym_unmanaged] = ACTIONS(3099), + [anon_sym_checked] = ACTIONS(3099), + [anon_sym_BANG] = ACTIONS(3101), + [anon_sym_TILDE] = ACTIONS(3101), + [anon_sym_PLUS_PLUS] = ACTIONS(3101), + [anon_sym_DASH_DASH] = ACTIONS(3101), + [anon_sym_true] = ACTIONS(3099), + [anon_sym_false] = ACTIONS(3099), + [anon_sym_PLUS] = ACTIONS(3099), + [anon_sym_DASH] = ACTIONS(3099), + [anon_sym_STAR] = ACTIONS(3101), + [anon_sym_CARET] = ACTIONS(3101), + [anon_sym_AMP] = ACTIONS(3101), + [anon_sym_this] = ACTIONS(3099), + [anon_sym_scoped] = ACTIONS(3099), + [anon_sym_base] = ACTIONS(3099), + [anon_sym_var] = ACTIONS(3099), + [sym_predefined_type] = ACTIONS(3099), + [anon_sym_break] = ACTIONS(3099), + [anon_sym_unchecked] = ACTIONS(3099), + [anon_sym_continue] = ACTIONS(3099), + [anon_sym_do] = ACTIONS(3099), + [anon_sym_while] = ACTIONS(3099), + [anon_sym_for] = ACTIONS(3099), + [anon_sym_lock] = ACTIONS(3099), + [anon_sym_yield] = ACTIONS(3099), + [anon_sym_switch] = ACTIONS(3099), + [anon_sym_default] = ACTIONS(3099), + [anon_sym_throw] = ACTIONS(3099), + [anon_sym_try] = ACTIONS(3099), + [anon_sym_catch] = ACTIONS(3118), + [anon_sym_when] = ACTIONS(3099), + [anon_sym_finally] = ACTIONS(3120), + [anon_sym_await] = ACTIONS(3099), + [anon_sym_foreach] = ACTIONS(3099), + [anon_sym_goto] = ACTIONS(3099), + [anon_sym_if] = ACTIONS(3099), + [anon_sym_else] = ACTIONS(3099), + [anon_sym_DOT_DOT] = ACTIONS(3101), + [anon_sym_from] = ACTIONS(3099), + [anon_sym_into] = ACTIONS(3099), + [anon_sym_join] = ACTIONS(3099), + [anon_sym_on] = ACTIONS(3099), + [anon_sym_equals] = ACTIONS(3099), + [anon_sym_let] = ACTIONS(3099), + [anon_sym_orderby] = ACTIONS(3099), + [anon_sym_ascending] = ACTIONS(3099), + [anon_sym_descending] = ACTIONS(3099), + [anon_sym_group] = ACTIONS(3099), + [anon_sym_by] = ACTIONS(3099), + [anon_sym_select] = ACTIONS(3099), + [anon_sym_stackalloc] = ACTIONS(3099), + [anon_sym_sizeof] = ACTIONS(3099), + [anon_sym_typeof] = ACTIONS(3099), + [anon_sym___makeref] = ACTIONS(3099), + [anon_sym___reftype] = ACTIONS(3099), + [anon_sym___refvalue] = ACTIONS(3099), + [sym_null_literal] = ACTIONS(3099), + [anon_sym_SQUOTE] = ACTIONS(3101), + [sym_integer_literal] = ACTIONS(3099), + [sym_real_literal] = ACTIONS(3101), + [anon_sym_DQUOTE] = ACTIONS(3101), + [sym_verbatim_string_literal] = ACTIONS(3101), + [aux_sym_preproc_if_token1] = ACTIONS(3101), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + [sym_interpolation_regular_start] = ACTIONS(3101), + [sym_interpolation_verbatim_start] = ACTIONS(3101), + [sym_interpolation_raw_start] = ACTIONS(3101), + [sym_raw_string_start] = ACTIONS(3101), + }, + [1923] = { + [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), + [sym__identifier_token] = ACTIONS(3122), + [anon_sym_extern] = ACTIONS(3122), + [anon_sym_alias] = ACTIONS(3122), + [anon_sym_SEMI] = ACTIONS(3124), + [anon_sym_global] = ACTIONS(3122), + [anon_sym_using] = ACTIONS(3122), + [anon_sym_unsafe] = ACTIONS(3122), + [anon_sym_static] = ACTIONS(3122), + [anon_sym_LBRACK] = ACTIONS(3124), + [anon_sym_LPAREN] = ACTIONS(3124), + [anon_sym_return] = ACTIONS(3122), + [anon_sym_namespace] = ACTIONS(3122), + [anon_sym_class] = ACTIONS(3122), + [anon_sym_ref] = ACTIONS(3122), + [anon_sym_struct] = ACTIONS(3122), + [anon_sym_enum] = ACTIONS(3122), + [anon_sym_LBRACE] = ACTIONS(3124), + [anon_sym_interface] = ACTIONS(3122), + [anon_sym_delegate] = ACTIONS(3122), + [anon_sym_record] = ACTIONS(3122), + [anon_sym_abstract] = ACTIONS(3122), + [anon_sym_async] = ACTIONS(3122), + [anon_sym_const] = ACTIONS(3122), + [anon_sym_file] = ACTIONS(3122), + [anon_sym_fixed] = ACTIONS(3122), + [anon_sym_internal] = ACTIONS(3122), + [anon_sym_new] = ACTIONS(3122), + [anon_sym_override] = ACTIONS(3122), + [anon_sym_partial] = ACTIONS(3122), + [anon_sym_private] = ACTIONS(3122), + [anon_sym_protected] = ACTIONS(3122), + [anon_sym_public] = ACTIONS(3122), + [anon_sym_readonly] = ACTIONS(3122), + [anon_sym_required] = ACTIONS(3122), + [anon_sym_sealed] = ACTIONS(3122), + [anon_sym_virtual] = ACTIONS(3122), + [anon_sym_volatile] = ACTIONS(3122), + [anon_sym_where] = ACTIONS(3122), + [anon_sym_notnull] = ACTIONS(3122), + [anon_sym_unmanaged] = ACTIONS(3122), + [anon_sym_checked] = ACTIONS(3122), + [anon_sym_BANG] = ACTIONS(3124), + [anon_sym_TILDE] = ACTIONS(3124), + [anon_sym_PLUS_PLUS] = ACTIONS(3124), + [anon_sym_DASH_DASH] = ACTIONS(3124), + [anon_sym_true] = ACTIONS(3122), + [anon_sym_false] = ACTIONS(3122), + [anon_sym_PLUS] = ACTIONS(3122), + [anon_sym_DASH] = ACTIONS(3122), + [anon_sym_STAR] = ACTIONS(3124), + [anon_sym_CARET] = ACTIONS(3124), + [anon_sym_AMP] = ACTIONS(3124), + [anon_sym_this] = ACTIONS(3122), + [anon_sym_scoped] = ACTIONS(3122), + [anon_sym_base] = ACTIONS(3122), + [anon_sym_var] = ACTIONS(3122), + [sym_predefined_type] = ACTIONS(3122), + [anon_sym_break] = ACTIONS(3122), + [anon_sym_unchecked] = ACTIONS(3122), + [anon_sym_continue] = ACTIONS(3122), + [anon_sym_do] = ACTIONS(3122), + [anon_sym_while] = ACTIONS(3122), + [anon_sym_for] = ACTIONS(3122), + [anon_sym_lock] = ACTIONS(3122), + [anon_sym_yield] = ACTIONS(3122), + [anon_sym_switch] = ACTIONS(3122), + [anon_sym_default] = ACTIONS(3122), + [anon_sym_throw] = ACTIONS(3122), + [anon_sym_try] = ACTIONS(3122), + [anon_sym_catch] = ACTIONS(3122), + [anon_sym_when] = ACTIONS(3122), + [anon_sym_finally] = ACTIONS(3122), + [anon_sym_await] = ACTIONS(3122), + [anon_sym_foreach] = ACTIONS(3122), + [anon_sym_goto] = ACTIONS(3122), + [anon_sym_if] = ACTIONS(3122), + [anon_sym_else] = ACTIONS(3122), + [anon_sym_DOT_DOT] = ACTIONS(3124), + [anon_sym_from] = ACTIONS(3122), + [anon_sym_into] = ACTIONS(3122), + [anon_sym_join] = ACTIONS(3122), + [anon_sym_on] = ACTIONS(3122), + [anon_sym_equals] = ACTIONS(3122), + [anon_sym_let] = ACTIONS(3122), + [anon_sym_orderby] = ACTIONS(3122), + [anon_sym_ascending] = ACTIONS(3122), + [anon_sym_descending] = ACTIONS(3122), + [anon_sym_group] = ACTIONS(3122), + [anon_sym_by] = ACTIONS(3122), + [anon_sym_select] = ACTIONS(3122), + [anon_sym_stackalloc] = ACTIONS(3122), + [anon_sym_sizeof] = ACTIONS(3122), + [anon_sym_typeof] = ACTIONS(3122), + [anon_sym___makeref] = ACTIONS(3122), + [anon_sym___reftype] = ACTIONS(3122), + [anon_sym___refvalue] = ACTIONS(3122), + [sym_null_literal] = ACTIONS(3122), + [anon_sym_SQUOTE] = ACTIONS(3124), + [sym_integer_literal] = ACTIONS(3122), + [sym_real_literal] = ACTIONS(3124), + [anon_sym_DQUOTE] = ACTIONS(3124), + [sym_verbatim_string_literal] = ACTIONS(3124), + [aux_sym_preproc_if_token1] = ACTIONS(3124), + [aux_sym_preproc_if_token3] = ACTIONS(3124), + [aux_sym_preproc_else_token1] = ACTIONS(3124), + [aux_sym_preproc_elif_token1] = ACTIONS(3124), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + [sym_interpolation_regular_start] = ACTIONS(3124), + [sym_interpolation_verbatim_start] = ACTIONS(3124), + [sym_interpolation_raw_start] = ACTIONS(3124), + [sym_raw_string_start] = ACTIONS(3124), + }, + [1924] = { + [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), + [sym__identifier_token] = ACTIONS(2949), + [anon_sym_extern] = ACTIONS(2949), + [anon_sym_alias] = ACTIONS(2949), + [anon_sym_SEMI] = ACTIONS(2951), + [anon_sym_global] = ACTIONS(2949), + [anon_sym_using] = ACTIONS(2949), + [anon_sym_unsafe] = ACTIONS(2949), + [anon_sym_static] = ACTIONS(2949), + [anon_sym_LBRACK] = ACTIONS(2951), + [anon_sym_LPAREN] = ACTIONS(2951), + [anon_sym_return] = ACTIONS(2949), + [anon_sym_namespace] = ACTIONS(2949), + [anon_sym_class] = ACTIONS(2949), + [anon_sym_ref] = ACTIONS(2949), + [anon_sym_struct] = ACTIONS(2949), + [anon_sym_enum] = ACTIONS(2949), + [anon_sym_LBRACE] = ACTIONS(2951), + [anon_sym_interface] = ACTIONS(2949), + [anon_sym_delegate] = ACTIONS(2949), + [anon_sym_record] = ACTIONS(2949), + [anon_sym_abstract] = ACTIONS(2949), + [anon_sym_async] = ACTIONS(2949), + [anon_sym_const] = ACTIONS(2949), + [anon_sym_file] = ACTIONS(2949), + [anon_sym_fixed] = ACTIONS(2949), + [anon_sym_internal] = ACTIONS(2949), + [anon_sym_new] = ACTIONS(2949), + [anon_sym_override] = ACTIONS(2949), + [anon_sym_partial] = ACTIONS(2949), + [anon_sym_private] = ACTIONS(2949), + [anon_sym_protected] = ACTIONS(2949), + [anon_sym_public] = ACTIONS(2949), + [anon_sym_readonly] = ACTIONS(2949), + [anon_sym_required] = ACTIONS(2949), + [anon_sym_sealed] = ACTIONS(2949), + [anon_sym_virtual] = ACTIONS(2949), + [anon_sym_volatile] = ACTIONS(2949), + [anon_sym_where] = ACTIONS(2949), + [anon_sym_notnull] = ACTIONS(2949), + [anon_sym_unmanaged] = ACTIONS(2949), + [anon_sym_checked] = ACTIONS(2949), + [anon_sym_BANG] = ACTIONS(2951), + [anon_sym_TILDE] = ACTIONS(2951), + [anon_sym_PLUS_PLUS] = ACTIONS(2951), + [anon_sym_DASH_DASH] = ACTIONS(2951), + [anon_sym_true] = ACTIONS(2949), + [anon_sym_false] = ACTIONS(2949), + [anon_sym_PLUS] = ACTIONS(2949), + [anon_sym_DASH] = ACTIONS(2949), + [anon_sym_STAR] = ACTIONS(2951), + [anon_sym_CARET] = ACTIONS(2951), + [anon_sym_AMP] = ACTIONS(2951), + [anon_sym_this] = ACTIONS(2949), + [anon_sym_scoped] = ACTIONS(2949), + [anon_sym_base] = ACTIONS(2949), + [anon_sym_var] = ACTIONS(2949), + [sym_predefined_type] = ACTIONS(2949), + [anon_sym_break] = ACTIONS(2949), + [anon_sym_unchecked] = ACTIONS(2949), + [anon_sym_continue] = ACTIONS(2949), + [anon_sym_do] = ACTIONS(2949), + [anon_sym_while] = ACTIONS(2949), + [anon_sym_for] = ACTIONS(2949), + [anon_sym_lock] = ACTIONS(2949), + [anon_sym_yield] = ACTIONS(2949), + [anon_sym_switch] = ACTIONS(2949), + [anon_sym_default] = ACTIONS(2949), + [anon_sym_throw] = ACTIONS(2949), + [anon_sym_try] = ACTIONS(2949), + [anon_sym_catch] = ACTIONS(2949), + [anon_sym_when] = ACTIONS(2949), + [anon_sym_finally] = ACTIONS(2949), + [anon_sym_await] = ACTIONS(2949), + [anon_sym_foreach] = ACTIONS(2949), + [anon_sym_goto] = ACTIONS(2949), + [anon_sym_if] = ACTIONS(2949), + [anon_sym_else] = ACTIONS(2949), + [anon_sym_DOT_DOT] = ACTIONS(2951), + [anon_sym_from] = ACTIONS(2949), + [anon_sym_into] = ACTIONS(2949), + [anon_sym_join] = ACTIONS(2949), + [anon_sym_on] = ACTIONS(2949), + [anon_sym_equals] = ACTIONS(2949), + [anon_sym_let] = ACTIONS(2949), + [anon_sym_orderby] = ACTIONS(2949), + [anon_sym_ascending] = ACTIONS(2949), + [anon_sym_descending] = ACTIONS(2949), + [anon_sym_group] = ACTIONS(2949), + [anon_sym_by] = ACTIONS(2949), + [anon_sym_select] = ACTIONS(2949), + [anon_sym_stackalloc] = ACTIONS(2949), + [anon_sym_sizeof] = ACTIONS(2949), + [anon_sym_typeof] = ACTIONS(2949), + [anon_sym___makeref] = ACTIONS(2949), + [anon_sym___reftype] = ACTIONS(2949), + [anon_sym___refvalue] = ACTIONS(2949), + [sym_null_literal] = ACTIONS(2949), + [anon_sym_SQUOTE] = ACTIONS(2951), + [sym_integer_literal] = ACTIONS(2949), + [sym_real_literal] = ACTIONS(2951), + [anon_sym_DQUOTE] = ACTIONS(2951), + [sym_verbatim_string_literal] = ACTIONS(2951), + [aux_sym_preproc_if_token1] = ACTIONS(2951), + [aux_sym_preproc_if_token3] = ACTIONS(2951), + [aux_sym_preproc_else_token1] = ACTIONS(2951), + [aux_sym_preproc_elif_token1] = ACTIONS(2951), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + [sym_interpolation_regular_start] = ACTIONS(2951), + [sym_interpolation_verbatim_start] = ACTIONS(2951), + [sym_interpolation_raw_start] = ACTIONS(2951), + [sym_raw_string_start] = ACTIONS(2951), + }, + [1925] = { + [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), + [sym__identifier_token] = ACTIONS(3126), + [anon_sym_extern] = ACTIONS(3126), + [anon_sym_alias] = ACTIONS(3126), + [anon_sym_SEMI] = ACTIONS(3128), + [anon_sym_global] = ACTIONS(3126), + [anon_sym_using] = ACTIONS(3126), + [anon_sym_unsafe] = ACTIONS(3126), + [anon_sym_static] = ACTIONS(3126), + [anon_sym_LBRACK] = ACTIONS(3128), + [anon_sym_LPAREN] = ACTIONS(3128), + [anon_sym_return] = ACTIONS(3126), + [anon_sym_namespace] = ACTIONS(3126), + [anon_sym_class] = ACTIONS(3126), + [anon_sym_ref] = ACTIONS(3126), + [anon_sym_struct] = ACTIONS(3126), + [anon_sym_enum] = ACTIONS(3126), + [anon_sym_LBRACE] = ACTIONS(3128), + [anon_sym_interface] = ACTIONS(3126), + [anon_sym_delegate] = ACTIONS(3126), + [anon_sym_record] = ACTIONS(3126), + [anon_sym_abstract] = ACTIONS(3126), + [anon_sym_async] = ACTIONS(3126), + [anon_sym_const] = ACTIONS(3126), + [anon_sym_file] = ACTIONS(3126), + [anon_sym_fixed] = ACTIONS(3126), + [anon_sym_internal] = ACTIONS(3126), + [anon_sym_new] = ACTIONS(3126), + [anon_sym_override] = ACTIONS(3126), + [anon_sym_partial] = ACTIONS(3126), + [anon_sym_private] = ACTIONS(3126), + [anon_sym_protected] = ACTIONS(3126), + [anon_sym_public] = ACTIONS(3126), + [anon_sym_readonly] = ACTIONS(3126), + [anon_sym_required] = ACTIONS(3126), + [anon_sym_sealed] = ACTIONS(3126), + [anon_sym_virtual] = ACTIONS(3126), + [anon_sym_volatile] = ACTIONS(3126), + [anon_sym_where] = ACTIONS(3126), + [anon_sym_notnull] = ACTIONS(3126), + [anon_sym_unmanaged] = ACTIONS(3126), + [anon_sym_checked] = ACTIONS(3126), + [anon_sym_BANG] = ACTIONS(3128), + [anon_sym_TILDE] = ACTIONS(3128), + [anon_sym_PLUS_PLUS] = ACTIONS(3128), + [anon_sym_DASH_DASH] = ACTIONS(3128), + [anon_sym_true] = ACTIONS(3126), + [anon_sym_false] = ACTIONS(3126), + [anon_sym_PLUS] = ACTIONS(3126), + [anon_sym_DASH] = ACTIONS(3126), + [anon_sym_STAR] = ACTIONS(3128), + [anon_sym_CARET] = ACTIONS(3128), + [anon_sym_AMP] = ACTIONS(3128), + [anon_sym_this] = ACTIONS(3126), + [anon_sym_scoped] = ACTIONS(3126), + [anon_sym_base] = ACTIONS(3126), + [anon_sym_var] = ACTIONS(3126), + [sym_predefined_type] = ACTIONS(3126), + [anon_sym_break] = ACTIONS(3126), + [anon_sym_unchecked] = ACTIONS(3126), + [anon_sym_continue] = ACTIONS(3126), + [anon_sym_do] = ACTIONS(3126), + [anon_sym_while] = ACTIONS(3126), + [anon_sym_for] = ACTIONS(3126), + [anon_sym_lock] = ACTIONS(3126), + [anon_sym_yield] = ACTIONS(3126), + [anon_sym_switch] = ACTIONS(3126), + [anon_sym_default] = ACTIONS(3126), + [anon_sym_throw] = ACTIONS(3126), + [anon_sym_try] = ACTIONS(3126), + [anon_sym_catch] = ACTIONS(3126), + [anon_sym_when] = ACTIONS(3126), + [anon_sym_finally] = ACTIONS(3126), + [anon_sym_await] = ACTIONS(3126), + [anon_sym_foreach] = ACTIONS(3126), + [anon_sym_goto] = ACTIONS(3126), + [anon_sym_if] = ACTIONS(3126), + [anon_sym_else] = ACTIONS(3126), + [anon_sym_DOT_DOT] = ACTIONS(3128), + [anon_sym_from] = ACTIONS(3126), + [anon_sym_into] = ACTIONS(3126), + [anon_sym_join] = ACTIONS(3126), + [anon_sym_on] = ACTIONS(3126), + [anon_sym_equals] = ACTIONS(3126), + [anon_sym_let] = ACTIONS(3126), + [anon_sym_orderby] = ACTIONS(3126), + [anon_sym_ascending] = ACTIONS(3126), + [anon_sym_descending] = ACTIONS(3126), + [anon_sym_group] = ACTIONS(3126), + [anon_sym_by] = ACTIONS(3126), + [anon_sym_select] = ACTIONS(3126), + [anon_sym_stackalloc] = ACTIONS(3126), + [anon_sym_sizeof] = ACTIONS(3126), + [anon_sym_typeof] = ACTIONS(3126), + [anon_sym___makeref] = ACTIONS(3126), + [anon_sym___reftype] = ACTIONS(3126), + [anon_sym___refvalue] = ACTIONS(3126), + [sym_null_literal] = ACTIONS(3126), + [anon_sym_SQUOTE] = ACTIONS(3128), + [sym_integer_literal] = ACTIONS(3126), + [sym_real_literal] = ACTIONS(3128), + [anon_sym_DQUOTE] = ACTIONS(3128), + [sym_verbatim_string_literal] = ACTIONS(3128), + [aux_sym_preproc_if_token1] = ACTIONS(3128), + [aux_sym_preproc_if_token3] = ACTIONS(3128), + [aux_sym_preproc_else_token1] = ACTIONS(3128), + [aux_sym_preproc_elif_token1] = ACTIONS(3128), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -362021,334 +366364,518 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(151), - [sym_interpolation_verbatim_start] = ACTIONS(153), - [sym_interpolation_raw_start] = ACTIONS(155), - [sym_raw_string_start] = ACTIONS(157), + [sym_interpolation_regular_start] = ACTIONS(3128), + [sym_interpolation_verbatim_start] = ACTIONS(3128), + [sym_interpolation_raw_start] = ACTIONS(3128), + [sym_raw_string_start] = ACTIONS(3128), }, - [1895] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(3184), - [sym__name] = STATE(5883), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2313), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2269), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(4488), - [sym_non_lvalue_expression] = STATE(4541), - [sym_lvalue_expression] = STATE(3527), - [sym__expression_statement_expression] = STATE(4529), - [sym_assignment_expression] = STATE(4543), - [sym_binary_expression] = STATE(4529), - [sym_postfix_unary_expression] = STATE(4543), - [sym_prefix_unary_expression] = STATE(4543), - [sym__pointer_indirection_expression] = STATE(3175), - [sym_query_expression] = STATE(4529), - [sym_from_clause] = STATE(6169), - [sym_conditional_expression] = STATE(4529), - [sym_conditional_access_expression] = STATE(4529), - [sym_as_expression] = STATE(4529), - [sym_is_expression] = STATE(4529), - [sym_is_pattern_expression] = STATE(4529), - [sym_cast_expression] = STATE(4529), - [sym_checked_expression] = STATE(4529), - [sym_invocation_expression] = STATE(4543), - [sym_switch_expression] = STATE(4529), - [sym_await_expression] = STATE(4543), - [sym_throw_expression] = STATE(4529), - [sym_element_access_expression] = STATE(3175), - [sym_interpolated_string_expression] = STATE(4529), - [sym_member_access_expression] = STATE(3175), - [sym_object_creation_expression] = STATE(4543), - [sym_parenthesized_expression] = STATE(4543), - [sym__parenthesized_lvalue_expression] = STATE(3175), - [sym_lambda_expression] = STATE(4529), - [sym__lambda_expression_init] = STATE(7337), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(4529), - [sym_anonymous_method_expression] = STATE(4529), - [sym_anonymous_object_creation_expression] = STATE(4529), - [sym_implicit_array_creation_expression] = STATE(4529), - [sym_implicit_object_creation_expression] = STATE(4529), - [sym_implicit_stackalloc_expression] = STATE(4529), - [sym_initializer_expression] = STATE(4529), - [sym_default_expression] = STATE(4529), - [sym_with_expression] = STATE(4529), - [sym_sizeof_expression] = STATE(4529), - [sym_typeof_expression] = STATE(4529), - [sym_makeref_expression] = STATE(4529), - [sym_ref_expression] = STATE(4529), - [sym_reftype_expression] = STATE(4529), - [sym_refvalue_expression] = STATE(4529), - [sym_stackalloc_expression] = STATE(4529), - [sym_range_expression] = STATE(4529), - [sym_tuple_expression] = STATE(3175), - [sym_literal] = STATE(4529), - [sym_character_literal] = STATE(4536), - [sym_string_literal] = STATE(4536), - [sym_raw_string_literal] = STATE(4536), - [sym_boolean_literal] = STATE(4536), - [sym_identifier] = STATE(2246), - [sym__reserved_identifier] = STATE(2240), - [sym_preproc_if_in_expression] = STATE(4529), - [sym_preproc_if_in_attribute_list] = STATE(5576), - [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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3363), - [sym__identifier_token] = ACTIONS(1387), - [anon_sym_alias] = ACTIONS(1389), - [anon_sym_global] = ACTIONS(1389), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1391), - [anon_sym_LPAREN] = ACTIONS(1745), - [anon_sym_ref] = ACTIONS(1747), - [anon_sym_LBRACE] = ACTIONS(1397), - [anon_sym_delegate] = ACTIONS(1399), - [anon_sym_async] = ACTIONS(1047), - [anon_sym_file] = ACTIONS(1389), - [anon_sym_new] = ACTIONS(1467), - [anon_sym_where] = ACTIONS(1389), - [anon_sym_notnull] = ACTIONS(1389), - [anon_sym_unmanaged] = ACTIONS(1389), - [anon_sym_checked] = ACTIONS(1403), - [anon_sym_BANG] = ACTIONS(1751), - [anon_sym_TILDE] = ACTIONS(1751), - [anon_sym_PLUS_PLUS] = ACTIONS(1751), - [anon_sym_DASH_DASH] = ACTIONS(1751), - [anon_sym_true] = ACTIONS(1409), - [anon_sym_false] = ACTIONS(1409), - [anon_sym_PLUS] = ACTIONS(1749), - [anon_sym_DASH] = ACTIONS(1749), - [anon_sym_STAR] = ACTIONS(1473), - [anon_sym_CARET] = ACTIONS(1751), - [anon_sym_AMP] = ACTIONS(1751), - [anon_sym_this] = ACTIONS(1413), - [anon_sym_scoped] = ACTIONS(1415), - [anon_sym_base] = ACTIONS(1417), - [anon_sym_var] = ACTIONS(1419), - [sym_predefined_type] = ACTIONS(1421), - [anon_sym_unchecked] = ACTIONS(1403), - [anon_sym_yield] = ACTIONS(1389), - [anon_sym_default] = ACTIONS(1423), - [anon_sym_throw] = ACTIONS(1753), - [anon_sym_when] = ACTIONS(1389), - [anon_sym_await] = ACTIONS(1755), - [anon_sym_DOT_DOT] = ACTIONS(1757), - [anon_sym_from] = ACTIONS(1431), - [anon_sym_into] = ACTIONS(1389), - [anon_sym_join] = ACTIONS(1389), - [anon_sym_on] = ACTIONS(1389), - [anon_sym_equals] = ACTIONS(1389), - [anon_sym_let] = ACTIONS(1389), - [anon_sym_orderby] = ACTIONS(1389), - [anon_sym_ascending] = ACTIONS(1389), - [anon_sym_descending] = ACTIONS(1389), - [anon_sym_group] = ACTIONS(1389), - [anon_sym_by] = ACTIONS(1389), - [anon_sym_select] = ACTIONS(1389), - [anon_sym_stackalloc] = ACTIONS(1433), - [anon_sym_sizeof] = ACTIONS(1435), - [anon_sym_typeof] = ACTIONS(1437), - [anon_sym___makeref] = ACTIONS(1439), - [anon_sym___reftype] = ACTIONS(1441), - [anon_sym___refvalue] = ACTIONS(1443), - [sym_null_literal] = ACTIONS(1445), - [anon_sym_SQUOTE] = ACTIONS(1447), - [sym_integer_literal] = ACTIONS(1445), - [sym_real_literal] = ACTIONS(1449), - [anon_sym_DQUOTE] = ACTIONS(1451), - [sym_verbatim_string_literal] = ACTIONS(1449), - [aux_sym_preproc_if_token1] = ACTIONS(1453), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1455), - [sym_interpolation_verbatim_start] = ACTIONS(1457), - [sym_interpolation_raw_start] = ACTIONS(1459), - [sym_raw_string_start] = ACTIONS(1461), + [1926] = { + [sym_catch_clause] = STATE(1979), + [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_try_statement_repeat1] = STATE(1926), + [ts_builtin_sym_end] = ACTIONS(3113), + [sym__identifier_token] = ACTIONS(3111), + [anon_sym_extern] = ACTIONS(3111), + [anon_sym_alias] = ACTIONS(3111), + [anon_sym_SEMI] = ACTIONS(3113), + [anon_sym_global] = ACTIONS(3111), + [anon_sym_using] = ACTIONS(3111), + [anon_sym_unsafe] = ACTIONS(3111), + [anon_sym_static] = ACTIONS(3111), + [anon_sym_LBRACK] = ACTIONS(3113), + [anon_sym_LPAREN] = ACTIONS(3113), + [anon_sym_return] = ACTIONS(3111), + [anon_sym_namespace] = ACTIONS(3111), + [anon_sym_class] = ACTIONS(3111), + [anon_sym_ref] = ACTIONS(3111), + [anon_sym_struct] = ACTIONS(3111), + [anon_sym_enum] = ACTIONS(3111), + [anon_sym_LBRACE] = ACTIONS(3113), + [anon_sym_interface] = ACTIONS(3111), + [anon_sym_delegate] = ACTIONS(3111), + [anon_sym_record] = ACTIONS(3111), + [anon_sym_abstract] = ACTIONS(3111), + [anon_sym_async] = ACTIONS(3111), + [anon_sym_const] = ACTIONS(3111), + [anon_sym_file] = ACTIONS(3111), + [anon_sym_fixed] = ACTIONS(3111), + [anon_sym_internal] = ACTIONS(3111), + [anon_sym_new] = ACTIONS(3111), + [anon_sym_override] = ACTIONS(3111), + [anon_sym_partial] = ACTIONS(3111), + [anon_sym_private] = ACTIONS(3111), + [anon_sym_protected] = ACTIONS(3111), + [anon_sym_public] = ACTIONS(3111), + [anon_sym_readonly] = ACTIONS(3111), + [anon_sym_required] = ACTIONS(3111), + [anon_sym_sealed] = ACTIONS(3111), + [anon_sym_virtual] = ACTIONS(3111), + [anon_sym_volatile] = ACTIONS(3111), + [anon_sym_where] = ACTIONS(3111), + [anon_sym_notnull] = ACTIONS(3111), + [anon_sym_unmanaged] = ACTIONS(3111), + [anon_sym_checked] = ACTIONS(3111), + [anon_sym_BANG] = ACTIONS(3113), + [anon_sym_TILDE] = ACTIONS(3113), + [anon_sym_PLUS_PLUS] = ACTIONS(3113), + [anon_sym_DASH_DASH] = ACTIONS(3113), + [anon_sym_true] = ACTIONS(3111), + [anon_sym_false] = ACTIONS(3111), + [anon_sym_PLUS] = ACTIONS(3111), + [anon_sym_DASH] = ACTIONS(3111), + [anon_sym_STAR] = ACTIONS(3113), + [anon_sym_CARET] = ACTIONS(3113), + [anon_sym_AMP] = ACTIONS(3113), + [anon_sym_this] = ACTIONS(3111), + [anon_sym_scoped] = ACTIONS(3111), + [anon_sym_base] = ACTIONS(3111), + [anon_sym_var] = ACTIONS(3111), + [sym_predefined_type] = ACTIONS(3111), + [anon_sym_break] = ACTIONS(3111), + [anon_sym_unchecked] = ACTIONS(3111), + [anon_sym_continue] = ACTIONS(3111), + [anon_sym_do] = ACTIONS(3111), + [anon_sym_while] = ACTIONS(3111), + [anon_sym_for] = ACTIONS(3111), + [anon_sym_lock] = ACTIONS(3111), + [anon_sym_yield] = ACTIONS(3111), + [anon_sym_switch] = ACTIONS(3111), + [anon_sym_default] = ACTIONS(3111), + [anon_sym_throw] = ACTIONS(3111), + [anon_sym_try] = ACTIONS(3111), + [anon_sym_catch] = ACTIONS(3130), + [anon_sym_when] = ACTIONS(3111), + [anon_sym_finally] = ACTIONS(3111), + [anon_sym_await] = ACTIONS(3111), + [anon_sym_foreach] = ACTIONS(3111), + [anon_sym_goto] = ACTIONS(3111), + [anon_sym_if] = ACTIONS(3111), + [anon_sym_else] = ACTIONS(3111), + [anon_sym_DOT_DOT] = ACTIONS(3113), + [anon_sym_from] = ACTIONS(3111), + [anon_sym_into] = ACTIONS(3111), + [anon_sym_join] = ACTIONS(3111), + [anon_sym_on] = ACTIONS(3111), + [anon_sym_equals] = ACTIONS(3111), + [anon_sym_let] = ACTIONS(3111), + [anon_sym_orderby] = ACTIONS(3111), + [anon_sym_ascending] = ACTIONS(3111), + [anon_sym_descending] = ACTIONS(3111), + [anon_sym_group] = ACTIONS(3111), + [anon_sym_by] = ACTIONS(3111), + [anon_sym_select] = ACTIONS(3111), + [anon_sym_stackalloc] = ACTIONS(3111), + [anon_sym_sizeof] = ACTIONS(3111), + [anon_sym_typeof] = ACTIONS(3111), + [anon_sym___makeref] = ACTIONS(3111), + [anon_sym___reftype] = ACTIONS(3111), + [anon_sym___refvalue] = ACTIONS(3111), + [sym_null_literal] = ACTIONS(3111), + [anon_sym_SQUOTE] = ACTIONS(3113), + [sym_integer_literal] = ACTIONS(3111), + [sym_real_literal] = ACTIONS(3113), + [anon_sym_DQUOTE] = ACTIONS(3113), + [sym_verbatim_string_literal] = ACTIONS(3113), + [aux_sym_preproc_if_token1] = ACTIONS(3113), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + [sym_interpolation_regular_start] = ACTIONS(3113), + [sym_interpolation_verbatim_start] = ACTIONS(3113), + [sym_interpolation_raw_start] = ACTIONS(3113), + [sym_raw_string_start] = ACTIONS(3113), }, - [1896] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2610), - [sym__name] = STATE(5886), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2319), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(4451), - [sym_non_lvalue_expression] = STATE(3277), - [sym_lvalue_expression] = STATE(3347), - [sym__expression_statement_expression] = STATE(3228), - [sym_assignment_expression] = STATE(3289), - [sym_binary_expression] = STATE(3228), - [sym_postfix_unary_expression] = STATE(3289), - [sym_prefix_unary_expression] = STATE(3289), - [sym__pointer_indirection_expression] = STATE(2609), - [sym_query_expression] = STATE(3228), - [sym_from_clause] = STATE(6150), - [sym_conditional_expression] = STATE(3228), - [sym_conditional_access_expression] = STATE(3228), - [sym_as_expression] = STATE(3228), - [sym_is_expression] = STATE(3228), - [sym_is_pattern_expression] = STATE(3228), - [sym_cast_expression] = STATE(3228), - [sym_checked_expression] = STATE(3228), - [sym_invocation_expression] = STATE(3289), - [sym_switch_expression] = STATE(3228), - [sym_await_expression] = STATE(3289), - [sym_throw_expression] = STATE(3228), - [sym_element_access_expression] = STATE(2609), - [sym_interpolated_string_expression] = STATE(3228), - [sym_member_access_expression] = STATE(2609), - [sym_object_creation_expression] = STATE(3289), - [sym_parenthesized_expression] = STATE(3289), - [sym__parenthesized_lvalue_expression] = STATE(2609), - [sym_lambda_expression] = STATE(3228), - [sym__lambda_expression_init] = STATE(7531), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3228), - [sym_anonymous_method_expression] = STATE(3228), - [sym_anonymous_object_creation_expression] = STATE(3228), - [sym_implicit_array_creation_expression] = STATE(3228), - [sym_implicit_object_creation_expression] = STATE(3228), - [sym_implicit_stackalloc_expression] = STATE(3228), - [sym_initializer_expression] = STATE(3228), - [sym_default_expression] = STATE(3228), - [sym_with_expression] = STATE(3228), - [sym_sizeof_expression] = STATE(3228), - [sym_typeof_expression] = STATE(3228), - [sym_makeref_expression] = STATE(3228), - [sym_ref_expression] = STATE(3228), - [sym_reftype_expression] = STATE(3228), - [sym_refvalue_expression] = STATE(3228), - [sym_stackalloc_expression] = STATE(3228), - [sym_range_expression] = STATE(3228), - [sym_tuple_expression] = STATE(2609), - [sym_literal] = STATE(3228), - [sym_character_literal] = STATE(3278), - [sym_string_literal] = STATE(3278), - [sym_raw_string_literal] = STATE(3278), - [sym_boolean_literal] = STATE(3278), - [sym_identifier] = STATE(2267), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3228), - [sym_preproc_if_in_attribute_list] = STATE(5576), - [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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3396), - [sym__identifier_token] = ACTIONS(25), - [anon_sym_alias] = ACTIONS(29), - [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1153), - [anon_sym_LPAREN] = ACTIONS(1525), - [anon_sym_ref] = ACTIONS(1527), - [anon_sym_LBRACE] = ACTIONS(1159), - [anon_sym_delegate] = ACTIONS(1161), - [anon_sym_async] = ACTIONS(1047), - [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1529), - [anon_sym_where] = ACTIONS(29), - [anon_sym_notnull] = ACTIONS(29), - [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1167), - [anon_sym_BANG] = ACTIONS(1533), - [anon_sym_TILDE] = ACTIONS(1533), - [anon_sym_PLUS_PLUS] = ACTIONS(1533), - [anon_sym_DASH_DASH] = ACTIONS(1533), - [anon_sym_true] = ACTIONS(1173), - [anon_sym_false] = ACTIONS(1173), - [anon_sym_PLUS] = ACTIONS(1531), - [anon_sym_DASH] = ACTIONS(1531), - [anon_sym_STAR] = ACTIONS(1535), - [anon_sym_CARET] = ACTIONS(1533), - [anon_sym_AMP] = ACTIONS(1533), - [anon_sym_this] = ACTIONS(1177), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1179), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1181), - [anon_sym_unchecked] = ACTIONS(1167), - [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1183), - [anon_sym_throw] = ACTIONS(1537), - [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1539), - [anon_sym_DOT_DOT] = ACTIONS(1541), - [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(1191), - [anon_sym_sizeof] = ACTIONS(1193), - [anon_sym_typeof] = ACTIONS(1195), - [anon_sym___makeref] = ACTIONS(1197), - [anon_sym___reftype] = ACTIONS(1199), - [anon_sym___refvalue] = ACTIONS(1201), - [sym_null_literal] = ACTIONS(1203), - [anon_sym_SQUOTE] = ACTIONS(1205), - [sym_integer_literal] = ACTIONS(1203), - [sym_real_literal] = ACTIONS(1207), - [anon_sym_DQUOTE] = ACTIONS(1209), - [sym_verbatim_string_literal] = ACTIONS(1207), - [aux_sym_preproc_if_token1] = ACTIONS(1211), + [1927] = { + [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), + [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(3133), + [anon_sym_when] = ACTIONS(3133), + [anon_sym_finally] = 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), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(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), + }, + [1928] = { + [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), + [sym__identifier_token] = ACTIONS(3137), + [anon_sym_extern] = ACTIONS(3137), + [anon_sym_alias] = ACTIONS(3137), + [anon_sym_SEMI] = ACTIONS(3139), + [anon_sym_global] = ACTIONS(3137), + [anon_sym_using] = ACTIONS(3137), + [anon_sym_unsafe] = ACTIONS(3137), + [anon_sym_static] = ACTIONS(3137), + [anon_sym_LBRACK] = ACTIONS(3139), + [anon_sym_LPAREN] = ACTIONS(3139), + [anon_sym_return] = ACTIONS(3137), + [anon_sym_namespace] = ACTIONS(3137), + [anon_sym_class] = ACTIONS(3137), + [anon_sym_ref] = ACTIONS(3137), + [anon_sym_struct] = ACTIONS(3137), + [anon_sym_enum] = ACTIONS(3137), + [anon_sym_LBRACE] = ACTIONS(3139), + [anon_sym_interface] = ACTIONS(3137), + [anon_sym_delegate] = ACTIONS(3137), + [anon_sym_record] = ACTIONS(3137), + [anon_sym_abstract] = ACTIONS(3137), + [anon_sym_async] = ACTIONS(3137), + [anon_sym_const] = ACTIONS(3137), + [anon_sym_file] = ACTIONS(3137), + [anon_sym_fixed] = ACTIONS(3137), + [anon_sym_internal] = ACTIONS(3137), + [anon_sym_new] = ACTIONS(3137), + [anon_sym_override] = ACTIONS(3137), + [anon_sym_partial] = ACTIONS(3137), + [anon_sym_private] = ACTIONS(3137), + [anon_sym_protected] = ACTIONS(3137), + [anon_sym_public] = ACTIONS(3137), + [anon_sym_readonly] = ACTIONS(3137), + [anon_sym_required] = ACTIONS(3137), + [anon_sym_sealed] = ACTIONS(3137), + [anon_sym_virtual] = ACTIONS(3137), + [anon_sym_volatile] = ACTIONS(3137), + [anon_sym_where] = ACTIONS(3137), + [anon_sym_notnull] = ACTIONS(3137), + [anon_sym_unmanaged] = ACTIONS(3137), + [anon_sym_checked] = ACTIONS(3137), + [anon_sym_BANG] = ACTIONS(3139), + [anon_sym_TILDE] = ACTIONS(3139), + [anon_sym_PLUS_PLUS] = ACTIONS(3139), + [anon_sym_DASH_DASH] = ACTIONS(3139), + [anon_sym_true] = ACTIONS(3137), + [anon_sym_false] = ACTIONS(3137), + [anon_sym_PLUS] = ACTIONS(3137), + [anon_sym_DASH] = ACTIONS(3137), + [anon_sym_STAR] = ACTIONS(3139), + [anon_sym_CARET] = ACTIONS(3139), + [anon_sym_AMP] = ACTIONS(3139), + [anon_sym_this] = ACTIONS(3137), + [anon_sym_scoped] = ACTIONS(3137), + [anon_sym_base] = ACTIONS(3137), + [anon_sym_var] = ACTIONS(3137), + [sym_predefined_type] = ACTIONS(3137), + [anon_sym_break] = ACTIONS(3137), + [anon_sym_unchecked] = ACTIONS(3137), + [anon_sym_continue] = ACTIONS(3137), + [anon_sym_do] = ACTIONS(3137), + [anon_sym_while] = ACTIONS(3137), + [anon_sym_for] = ACTIONS(3137), + [anon_sym_lock] = ACTIONS(3137), + [anon_sym_yield] = ACTIONS(3137), + [anon_sym_switch] = ACTIONS(3137), + [anon_sym_default] = ACTIONS(3137), + [anon_sym_throw] = ACTIONS(3137), + [anon_sym_try] = ACTIONS(3137), + [anon_sym_catch] = ACTIONS(3137), + [anon_sym_when] = ACTIONS(3137), + [anon_sym_finally] = ACTIONS(3137), + [anon_sym_await] = ACTIONS(3137), + [anon_sym_foreach] = ACTIONS(3137), + [anon_sym_goto] = ACTIONS(3137), + [anon_sym_if] = ACTIONS(3137), + [anon_sym_else] = ACTIONS(3137), + [anon_sym_DOT_DOT] = ACTIONS(3139), + [anon_sym_from] = ACTIONS(3137), + [anon_sym_into] = ACTIONS(3137), + [anon_sym_join] = ACTIONS(3137), + [anon_sym_on] = ACTIONS(3137), + [anon_sym_equals] = ACTIONS(3137), + [anon_sym_let] = ACTIONS(3137), + [anon_sym_orderby] = ACTIONS(3137), + [anon_sym_ascending] = ACTIONS(3137), + [anon_sym_descending] = ACTIONS(3137), + [anon_sym_group] = ACTIONS(3137), + [anon_sym_by] = ACTIONS(3137), + [anon_sym_select] = ACTIONS(3137), + [anon_sym_stackalloc] = ACTIONS(3137), + [anon_sym_sizeof] = ACTIONS(3137), + [anon_sym_typeof] = ACTIONS(3137), + [anon_sym___makeref] = ACTIONS(3137), + [anon_sym___reftype] = ACTIONS(3137), + [anon_sym___refvalue] = ACTIONS(3137), + [sym_null_literal] = ACTIONS(3137), + [anon_sym_SQUOTE] = ACTIONS(3139), + [sym_integer_literal] = ACTIONS(3137), + [sym_real_literal] = ACTIONS(3139), + [anon_sym_DQUOTE] = ACTIONS(3139), + [sym_verbatim_string_literal] = ACTIONS(3139), + [aux_sym_preproc_if_token1] = ACTIONS(3139), + [aux_sym_preproc_if_token3] = ACTIONS(3139), + [aux_sym_preproc_else_token1] = ACTIONS(3139), + [aux_sym_preproc_elif_token1] = ACTIONS(3139), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + [sym_interpolation_regular_start] = ACTIONS(3139), + [sym_interpolation_verbatim_start] = ACTIONS(3139), + [sym_interpolation_raw_start] = ACTIONS(3139), + [sym_raw_string_start] = ACTIONS(3139), + }, + [1929] = { + [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), + [sym__identifier_token] = ACTIONS(3141), + [anon_sym_extern] = ACTIONS(3141), + [anon_sym_alias] = ACTIONS(3141), + [anon_sym_SEMI] = ACTIONS(3143), + [anon_sym_global] = ACTIONS(3141), + [anon_sym_using] = ACTIONS(3141), + [anon_sym_unsafe] = ACTIONS(3141), + [anon_sym_static] = ACTIONS(3141), + [anon_sym_LBRACK] = ACTIONS(3143), + [anon_sym_LPAREN] = ACTIONS(3143), + [anon_sym_return] = ACTIONS(3141), + [anon_sym_namespace] = ACTIONS(3141), + [anon_sym_class] = ACTIONS(3141), + [anon_sym_ref] = ACTIONS(3141), + [anon_sym_struct] = ACTIONS(3141), + [anon_sym_enum] = ACTIONS(3141), + [anon_sym_LBRACE] = ACTIONS(3143), + [anon_sym_interface] = ACTIONS(3141), + [anon_sym_delegate] = ACTIONS(3141), + [anon_sym_record] = ACTIONS(3141), + [anon_sym_abstract] = ACTIONS(3141), + [anon_sym_async] = ACTIONS(3141), + [anon_sym_const] = ACTIONS(3141), + [anon_sym_file] = ACTIONS(3141), + [anon_sym_fixed] = ACTIONS(3141), + [anon_sym_internal] = ACTIONS(3141), + [anon_sym_new] = ACTIONS(3141), + [anon_sym_override] = ACTIONS(3141), + [anon_sym_partial] = ACTIONS(3141), + [anon_sym_private] = ACTIONS(3141), + [anon_sym_protected] = ACTIONS(3141), + [anon_sym_public] = ACTIONS(3141), + [anon_sym_readonly] = ACTIONS(3141), + [anon_sym_required] = ACTIONS(3141), + [anon_sym_sealed] = ACTIONS(3141), + [anon_sym_virtual] = ACTIONS(3141), + [anon_sym_volatile] = ACTIONS(3141), + [anon_sym_where] = ACTIONS(3141), + [anon_sym_notnull] = ACTIONS(3141), + [anon_sym_unmanaged] = ACTIONS(3141), + [anon_sym_checked] = ACTIONS(3141), + [anon_sym_BANG] = ACTIONS(3143), + [anon_sym_TILDE] = ACTIONS(3143), + [anon_sym_PLUS_PLUS] = ACTIONS(3143), + [anon_sym_DASH_DASH] = ACTIONS(3143), + [anon_sym_true] = ACTIONS(3141), + [anon_sym_false] = ACTIONS(3141), + [anon_sym_PLUS] = ACTIONS(3141), + [anon_sym_DASH] = ACTIONS(3141), + [anon_sym_STAR] = ACTIONS(3143), + [anon_sym_CARET] = ACTIONS(3143), + [anon_sym_AMP] = ACTIONS(3143), + [anon_sym_this] = ACTIONS(3141), + [anon_sym_scoped] = ACTIONS(3141), + [anon_sym_base] = ACTIONS(3141), + [anon_sym_var] = ACTIONS(3141), + [sym_predefined_type] = ACTIONS(3141), + [anon_sym_break] = ACTIONS(3141), + [anon_sym_unchecked] = ACTIONS(3141), + [anon_sym_continue] = ACTIONS(3141), + [anon_sym_do] = ACTIONS(3141), + [anon_sym_while] = ACTIONS(3141), + [anon_sym_for] = ACTIONS(3141), + [anon_sym_lock] = ACTIONS(3141), + [anon_sym_yield] = ACTIONS(3141), + [anon_sym_switch] = ACTIONS(3141), + [anon_sym_default] = ACTIONS(3141), + [anon_sym_throw] = ACTIONS(3141), + [anon_sym_try] = ACTIONS(3141), + [anon_sym_when] = ACTIONS(3141), + [anon_sym_await] = ACTIONS(3141), + [anon_sym_foreach] = ACTIONS(3141), + [anon_sym_goto] = ACTIONS(3141), + [anon_sym_if] = ACTIONS(3141), + [anon_sym_else] = ACTIONS(3141), + [anon_sym_DOT_DOT] = ACTIONS(3143), + [anon_sym_from] = ACTIONS(3141), + [anon_sym_into] = ACTIONS(3141), + [anon_sym_join] = ACTIONS(3141), + [anon_sym_on] = ACTIONS(3141), + [anon_sym_equals] = ACTIONS(3141), + [anon_sym_let] = ACTIONS(3141), + [anon_sym_orderby] = ACTIONS(3141), + [anon_sym_ascending] = ACTIONS(3141), + [anon_sym_descending] = ACTIONS(3141), + [anon_sym_group] = ACTIONS(3141), + [anon_sym_by] = ACTIONS(3141), + [anon_sym_select] = ACTIONS(3141), + [anon_sym_stackalloc] = ACTIONS(3141), + [anon_sym_sizeof] = ACTIONS(3141), + [anon_sym_typeof] = ACTIONS(3141), + [anon_sym___makeref] = ACTIONS(3141), + [anon_sym___reftype] = ACTIONS(3141), + [anon_sym___refvalue] = ACTIONS(3141), + [sym_null_literal] = ACTIONS(3141), + [anon_sym_SQUOTE] = ACTIONS(3143), + [sym_integer_literal] = ACTIONS(3141), + [sym_real_literal] = ACTIONS(3143), + [anon_sym_DQUOTE] = ACTIONS(3143), + [sym_verbatim_string_literal] = ACTIONS(3143), + [aux_sym_preproc_if_token1] = ACTIONS(3143), + [aux_sym_preproc_if_token3] = ACTIONS(3143), + [aux_sym_preproc_else_token1] = ACTIONS(3143), + [aux_sym_preproc_elif_token1] = ACTIONS(3143), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -362359,165 +366886,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(1213), - [sym_interpolation_verbatim_start] = ACTIONS(1215), - [sym_interpolation_raw_start] = ACTIONS(1217), - [sym_raw_string_start] = ACTIONS(1219), + [sym_interpolation_regular_start] = ACTIONS(3143), + [sym_interpolation_verbatim_start] = ACTIONS(3143), + [sym_interpolation_raw_start] = ACTIONS(3143), + [sym_raw_string_start] = ACTIONS(3143), }, - [1897] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(5890), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2375), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(5639), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3656), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3080), - [sym_postfix_unary_expression] = STATE(3111), - [sym_prefix_unary_expression] = STATE(3111), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6157), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3080), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3111), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3080), - [sym_member_access_expression] = STATE(2484), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3111), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7362), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(3080), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3080), - [sym_typeof_expression] = STATE(3080), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2484), - [sym_literal] = STATE(3080), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), - [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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), - [sym__identifier_token] = ACTIONS(25), - [anon_sym_alias] = ACTIONS(29), - [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1481), - [anon_sym_LPAREN] = ACTIONS(2177), - [anon_sym_ref] = ACTIONS(2179), - [anon_sym_LBRACE] = ACTIONS(1487), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), - [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(2181), - [anon_sym_where] = ACTIONS(29), - [anon_sym_notnull] = ACTIONS(29), - [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1067), - [anon_sym_BANG] = ACTIONS(2185), - [anon_sym_TILDE] = ACTIONS(2185), - [anon_sym_PLUS_PLUS] = ACTIONS(2185), - [anon_sym_DASH_DASH] = ACTIONS(2185), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(2183), - [anon_sym_DASH] = ACTIONS(2183), - [anon_sym_STAR] = ACTIONS(2187), - [anon_sym_CARET] = ACTIONS(2185), - [anon_sym_AMP] = ACTIONS(2185), - [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(1067), - [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(2189), - [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2191), - [anon_sym_DOT_DOT] = ACTIONS(2193), - [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(1089), + [1930] = { + [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), + [sym__identifier_token] = ACTIONS(3145), + [anon_sym_extern] = ACTIONS(3145), + [anon_sym_alias] = ACTIONS(3145), + [anon_sym_SEMI] = ACTIONS(3147), + [anon_sym_global] = ACTIONS(3145), + [anon_sym_using] = ACTIONS(3145), + [anon_sym_unsafe] = ACTIONS(3145), + [anon_sym_static] = ACTIONS(3145), + [anon_sym_LBRACK] = ACTIONS(3147), + [anon_sym_LPAREN] = ACTIONS(3147), + [anon_sym_return] = ACTIONS(3145), + [anon_sym_namespace] = ACTIONS(3145), + [anon_sym_class] = ACTIONS(3145), + [anon_sym_ref] = ACTIONS(3145), + [anon_sym_struct] = ACTIONS(3145), + [anon_sym_enum] = ACTIONS(3145), + [anon_sym_LBRACE] = ACTIONS(3147), + [anon_sym_interface] = ACTIONS(3145), + [anon_sym_delegate] = ACTIONS(3145), + [anon_sym_record] = ACTIONS(3145), + [anon_sym_abstract] = ACTIONS(3145), + [anon_sym_async] = ACTIONS(3145), + [anon_sym_const] = ACTIONS(3145), + [anon_sym_file] = ACTIONS(3145), + [anon_sym_fixed] = ACTIONS(3145), + [anon_sym_internal] = ACTIONS(3145), + [anon_sym_new] = ACTIONS(3145), + [anon_sym_override] = ACTIONS(3145), + [anon_sym_partial] = ACTIONS(3145), + [anon_sym_private] = ACTIONS(3145), + [anon_sym_protected] = ACTIONS(3145), + [anon_sym_public] = ACTIONS(3145), + [anon_sym_readonly] = ACTIONS(3145), + [anon_sym_required] = ACTIONS(3145), + [anon_sym_sealed] = ACTIONS(3145), + [anon_sym_virtual] = ACTIONS(3145), + [anon_sym_volatile] = ACTIONS(3145), + [anon_sym_where] = ACTIONS(3145), + [anon_sym_notnull] = ACTIONS(3145), + [anon_sym_unmanaged] = ACTIONS(3145), + [anon_sym_checked] = ACTIONS(3145), + [anon_sym_BANG] = ACTIONS(3147), + [anon_sym_TILDE] = ACTIONS(3147), + [anon_sym_PLUS_PLUS] = ACTIONS(3147), + [anon_sym_DASH_DASH] = ACTIONS(3147), + [anon_sym_true] = ACTIONS(3145), + [anon_sym_false] = ACTIONS(3145), + [anon_sym_PLUS] = ACTIONS(3145), + [anon_sym_DASH] = ACTIONS(3145), + [anon_sym_STAR] = ACTIONS(3147), + [anon_sym_CARET] = ACTIONS(3147), + [anon_sym_AMP] = ACTIONS(3147), + [anon_sym_this] = ACTIONS(3145), + [anon_sym_scoped] = ACTIONS(3145), + [anon_sym_base] = ACTIONS(3145), + [anon_sym_var] = ACTIONS(3145), + [sym_predefined_type] = ACTIONS(3145), + [anon_sym_break] = ACTIONS(3145), + [anon_sym_unchecked] = ACTIONS(3145), + [anon_sym_continue] = ACTIONS(3145), + [anon_sym_do] = ACTIONS(3145), + [anon_sym_while] = ACTIONS(3145), + [anon_sym_for] = ACTIONS(3145), + [anon_sym_lock] = ACTIONS(3145), + [anon_sym_yield] = ACTIONS(3145), + [anon_sym_switch] = ACTIONS(3145), + [anon_sym_default] = ACTIONS(3145), + [anon_sym_throw] = ACTIONS(3145), + [anon_sym_try] = ACTIONS(3145), + [anon_sym_when] = ACTIONS(3145), + [anon_sym_await] = ACTIONS(3145), + [anon_sym_foreach] = ACTIONS(3145), + [anon_sym_goto] = ACTIONS(3145), + [anon_sym_if] = ACTIONS(3145), + [anon_sym_else] = ACTIONS(3145), + [anon_sym_DOT_DOT] = ACTIONS(3147), + [anon_sym_from] = ACTIONS(3145), + [anon_sym_into] = ACTIONS(3145), + [anon_sym_join] = ACTIONS(3145), + [anon_sym_on] = ACTIONS(3145), + [anon_sym_equals] = ACTIONS(3145), + [anon_sym_let] = ACTIONS(3145), + [anon_sym_orderby] = ACTIONS(3145), + [anon_sym_ascending] = ACTIONS(3145), + [anon_sym_descending] = ACTIONS(3145), + [anon_sym_group] = ACTIONS(3145), + [anon_sym_by] = ACTIONS(3145), + [anon_sym_select] = ACTIONS(3145), + [anon_sym_stackalloc] = ACTIONS(3145), + [anon_sym_sizeof] = ACTIONS(3145), + [anon_sym_typeof] = ACTIONS(3145), + [anon_sym___makeref] = ACTIONS(3145), + [anon_sym___reftype] = ACTIONS(3145), + [anon_sym___refvalue] = ACTIONS(3145), + [sym_null_literal] = ACTIONS(3145), + [anon_sym_SQUOTE] = ACTIONS(3147), + [sym_integer_literal] = ACTIONS(3145), + [sym_real_literal] = ACTIONS(3147), + [anon_sym_DQUOTE] = ACTIONS(3147), + [sym_verbatim_string_literal] = ACTIONS(3147), + [aux_sym_preproc_if_token1] = ACTIONS(3147), + [aux_sym_preproc_if_token3] = ACTIONS(3147), + [aux_sym_preproc_else_token1] = ACTIONS(3147), + [aux_sym_preproc_elif_token1] = ACTIONS(3147), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -362528,334 +367015,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(151), - [sym_interpolation_verbatim_start] = ACTIONS(153), - [sym_interpolation_raw_start] = ACTIONS(155), - [sym_raw_string_start] = ACTIONS(157), - }, - [1898] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(3184), - [sym__name] = STATE(5906), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2312), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2269), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(4262), - [sym_non_lvalue_expression] = STATE(4541), - [sym_lvalue_expression] = STATE(3439), - [sym__expression_statement_expression] = STATE(4529), - [sym_assignment_expression] = STATE(4543), - [sym_binary_expression] = STATE(4529), - [sym_postfix_unary_expression] = STATE(4543), - [sym_prefix_unary_expression] = STATE(4543), - [sym__pointer_indirection_expression] = STATE(3175), - [sym_query_expression] = STATE(4529), - [sym_from_clause] = STATE(6169), - [sym_conditional_expression] = STATE(4529), - [sym_conditional_access_expression] = STATE(4529), - [sym_as_expression] = STATE(4529), - [sym_is_expression] = STATE(4529), - [sym_is_pattern_expression] = STATE(4529), - [sym_cast_expression] = STATE(4529), - [sym_checked_expression] = STATE(4529), - [sym_invocation_expression] = STATE(4543), - [sym_switch_expression] = STATE(4529), - [sym_await_expression] = STATE(4543), - [sym_throw_expression] = STATE(4529), - [sym_element_access_expression] = STATE(3175), - [sym_interpolated_string_expression] = STATE(4529), - [sym_member_access_expression] = STATE(3175), - [sym_object_creation_expression] = STATE(4543), - [sym_parenthesized_expression] = STATE(4543), - [sym__parenthesized_lvalue_expression] = STATE(3175), - [sym_lambda_expression] = STATE(4529), - [sym__lambda_expression_init] = STATE(7684), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(4529), - [sym_anonymous_method_expression] = STATE(4529), - [sym_anonymous_object_creation_expression] = STATE(4529), - [sym_implicit_array_creation_expression] = STATE(4529), - [sym_implicit_object_creation_expression] = STATE(4529), - [sym_implicit_stackalloc_expression] = STATE(4529), - [sym_initializer_expression] = STATE(4529), - [sym_default_expression] = STATE(4529), - [sym_with_expression] = STATE(4529), - [sym_sizeof_expression] = STATE(4529), - [sym_typeof_expression] = STATE(4529), - [sym_makeref_expression] = STATE(4529), - [sym_ref_expression] = STATE(4529), - [sym_reftype_expression] = STATE(4529), - [sym_refvalue_expression] = STATE(4529), - [sym_stackalloc_expression] = STATE(4529), - [sym_range_expression] = STATE(4529), - [sym_tuple_expression] = STATE(3175), - [sym_literal] = STATE(4529), - [sym_character_literal] = STATE(4536), - [sym_string_literal] = STATE(4536), - [sym_raw_string_literal] = STATE(4536), - [sym_boolean_literal] = STATE(4536), - [sym_identifier] = STATE(2246), - [sym__reserved_identifier] = STATE(2240), - [sym_preproc_if_in_expression] = STATE(4529), - [sym_preproc_if_in_attribute_list] = STATE(5576), - [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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3363), - [sym__identifier_token] = ACTIONS(1387), - [anon_sym_alias] = ACTIONS(1389), - [anon_sym_global] = ACTIONS(1389), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1391), - [anon_sym_LPAREN] = ACTIONS(1775), - [anon_sym_ref] = ACTIONS(1777), - [anon_sym_LBRACE] = ACTIONS(1397), - [anon_sym_delegate] = ACTIONS(1399), - [anon_sym_async] = ACTIONS(1047), - [anon_sym_file] = ACTIONS(1389), - [anon_sym_new] = ACTIONS(1401), - [anon_sym_where] = ACTIONS(1389), - [anon_sym_notnull] = ACTIONS(1389), - [anon_sym_unmanaged] = ACTIONS(1389), - [anon_sym_checked] = ACTIONS(1403), - [anon_sym_BANG] = ACTIONS(1781), - [anon_sym_TILDE] = ACTIONS(1781), - [anon_sym_PLUS_PLUS] = ACTIONS(1781), - [anon_sym_DASH_DASH] = ACTIONS(1781), - [anon_sym_true] = ACTIONS(1409), - [anon_sym_false] = ACTIONS(1409), - [anon_sym_PLUS] = ACTIONS(1779), - [anon_sym_DASH] = ACTIONS(1779), - [anon_sym_STAR] = ACTIONS(1411), - [anon_sym_CARET] = ACTIONS(1781), - [anon_sym_AMP] = ACTIONS(1781), - [anon_sym_this] = ACTIONS(1413), - [anon_sym_scoped] = ACTIONS(1415), - [anon_sym_base] = ACTIONS(1417), - [anon_sym_var] = ACTIONS(1419), - [sym_predefined_type] = ACTIONS(1421), - [anon_sym_unchecked] = ACTIONS(1403), - [anon_sym_yield] = ACTIONS(1389), - [anon_sym_default] = ACTIONS(1423), - [anon_sym_throw] = ACTIONS(1783), - [anon_sym_when] = ACTIONS(1389), - [anon_sym_await] = ACTIONS(1785), - [anon_sym_DOT_DOT] = ACTIONS(1787), - [anon_sym_from] = ACTIONS(1431), - [anon_sym_into] = ACTIONS(1389), - [anon_sym_join] = ACTIONS(1389), - [anon_sym_on] = ACTIONS(1389), - [anon_sym_equals] = ACTIONS(1389), - [anon_sym_let] = ACTIONS(1389), - [anon_sym_orderby] = ACTIONS(1389), - [anon_sym_ascending] = ACTIONS(1389), - [anon_sym_descending] = ACTIONS(1389), - [anon_sym_group] = ACTIONS(1389), - [anon_sym_by] = ACTIONS(1389), - [anon_sym_select] = ACTIONS(1389), - [anon_sym_stackalloc] = ACTIONS(1433), - [anon_sym_sizeof] = ACTIONS(1435), - [anon_sym_typeof] = ACTIONS(1437), - [anon_sym___makeref] = ACTIONS(1439), - [anon_sym___reftype] = ACTIONS(1441), - [anon_sym___refvalue] = ACTIONS(1443), - [sym_null_literal] = ACTIONS(1445), - [anon_sym_SQUOTE] = ACTIONS(1447), - [sym_integer_literal] = ACTIONS(1445), - [sym_real_literal] = ACTIONS(1449), - [anon_sym_DQUOTE] = ACTIONS(1451), - [sym_verbatim_string_literal] = ACTIONS(1449), - [aux_sym_preproc_if_token1] = ACTIONS(1453), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1455), - [sym_interpolation_verbatim_start] = ACTIONS(1457), - [sym_interpolation_raw_start] = ACTIONS(1459), - [sym_raw_string_start] = ACTIONS(1461), + [sym_interpolation_regular_start] = ACTIONS(3147), + [sym_interpolation_verbatim_start] = ACTIONS(3147), + [sym_interpolation_raw_start] = ACTIONS(3147), + [sym_raw_string_start] = ACTIONS(3147), }, - [1899] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(3184), - [sym__name] = STATE(5906), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2312), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2269), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(5662), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3157), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3080), - [sym_postfix_unary_expression] = STATE(3111), - [sym_prefix_unary_expression] = STATE(3111), - [sym__pointer_indirection_expression] = STATE(3175), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6154), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3080), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3111), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(3175), - [sym_interpolated_string_expression] = STATE(3080), - [sym_member_access_expression] = STATE(3175), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3111), - [sym__parenthesized_lvalue_expression] = STATE(3175), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7530), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(3080), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3080), - [sym_typeof_expression] = STATE(3080), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(3175), - [sym_literal] = STATE(3080), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2246), - [sym__reserved_identifier] = STATE(2240), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), - [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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), - [sym__identifier_token] = ACTIONS(1387), - [anon_sym_alias] = ACTIONS(1389), - [anon_sym_global] = ACTIONS(1389), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1391), - [anon_sym_LPAREN] = ACTIONS(2943), - [anon_sym_ref] = ACTIONS(661), - [anon_sym_LBRACE] = ACTIONS(1487), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), - [anon_sym_file] = ACTIONS(1389), - [anon_sym_new] = ACTIONS(1061), - [anon_sym_where] = ACTIONS(1389), - [anon_sym_notnull] = ACTIONS(1389), - [anon_sym_unmanaged] = ACTIONS(1389), - [anon_sym_checked] = 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(1585), - [anon_sym_DASH] = ACTIONS(1585), - [anon_sym_STAR] = ACTIONS(1411), - [anon_sym_CARET] = ACTIONS(1587), - [anon_sym_AMP] = ACTIONS(1587), - [anon_sym_this] = ACTIONS(1413), - [anon_sym_scoped] = ACTIONS(1415), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(1419), - [sym_predefined_type] = ACTIONS(1421), - [anon_sym_unchecked] = ACTIONS(1067), - [anon_sym_yield] = ACTIONS(1389), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1589), - [anon_sym_when] = ACTIONS(1389), - [anon_sym_await] = ACTIONS(1591), - [anon_sym_DOT_DOT] = ACTIONS(123), - [anon_sym_from] = ACTIONS(1431), - [anon_sym_into] = ACTIONS(1389), - [anon_sym_join] = ACTIONS(1389), - [anon_sym_on] = ACTIONS(1389), - [anon_sym_equals] = ACTIONS(1389), - [anon_sym_let] = ACTIONS(1389), - [anon_sym_orderby] = ACTIONS(1389), - [anon_sym_ascending] = ACTIONS(1389), - [anon_sym_descending] = ACTIONS(1389), - [anon_sym_group] = ACTIONS(1389), - [anon_sym_by] = ACTIONS(1389), - [anon_sym_select] = ACTIONS(1389), - [anon_sym_stackalloc] = ACTIONS(127), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(133), - [anon_sym___reftype] = ACTIONS(135), - [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1089), + [1931] = { + [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), + [sym__identifier_token] = ACTIONS(3149), + [anon_sym_extern] = ACTIONS(3149), + [anon_sym_alias] = ACTIONS(3149), + [anon_sym_SEMI] = ACTIONS(3151), + [anon_sym_global] = ACTIONS(3149), + [anon_sym_using] = ACTIONS(3149), + [anon_sym_unsafe] = ACTIONS(3149), + [anon_sym_static] = ACTIONS(3149), + [anon_sym_LBRACK] = ACTIONS(3151), + [anon_sym_LPAREN] = ACTIONS(3151), + [anon_sym_return] = ACTIONS(3149), + [anon_sym_namespace] = ACTIONS(3149), + [anon_sym_class] = ACTIONS(3149), + [anon_sym_ref] = ACTIONS(3149), + [anon_sym_struct] = ACTIONS(3149), + [anon_sym_enum] = ACTIONS(3149), + [anon_sym_LBRACE] = ACTIONS(3151), + [anon_sym_interface] = ACTIONS(3149), + [anon_sym_delegate] = ACTIONS(3149), + [anon_sym_record] = ACTIONS(3149), + [anon_sym_abstract] = ACTIONS(3149), + [anon_sym_async] = ACTIONS(3149), + [anon_sym_const] = ACTIONS(3149), + [anon_sym_file] = ACTIONS(3149), + [anon_sym_fixed] = ACTIONS(3149), + [anon_sym_internal] = ACTIONS(3149), + [anon_sym_new] = ACTIONS(3149), + [anon_sym_override] = ACTIONS(3149), + [anon_sym_partial] = ACTIONS(3149), + [anon_sym_private] = ACTIONS(3149), + [anon_sym_protected] = ACTIONS(3149), + [anon_sym_public] = ACTIONS(3149), + [anon_sym_readonly] = ACTIONS(3149), + [anon_sym_required] = ACTIONS(3149), + [anon_sym_sealed] = ACTIONS(3149), + [anon_sym_virtual] = ACTIONS(3149), + [anon_sym_volatile] = ACTIONS(3149), + [anon_sym_where] = ACTIONS(3149), + [anon_sym_notnull] = ACTIONS(3149), + [anon_sym_unmanaged] = ACTIONS(3149), + [anon_sym_checked] = ACTIONS(3149), + [anon_sym_BANG] = ACTIONS(3151), + [anon_sym_TILDE] = ACTIONS(3151), + [anon_sym_PLUS_PLUS] = ACTIONS(3151), + [anon_sym_DASH_DASH] = ACTIONS(3151), + [anon_sym_true] = ACTIONS(3149), + [anon_sym_false] = ACTIONS(3149), + [anon_sym_PLUS] = ACTIONS(3149), + [anon_sym_DASH] = ACTIONS(3149), + [anon_sym_STAR] = ACTIONS(3151), + [anon_sym_CARET] = ACTIONS(3151), + [anon_sym_AMP] = ACTIONS(3151), + [anon_sym_this] = ACTIONS(3149), + [anon_sym_scoped] = ACTIONS(3149), + [anon_sym_base] = ACTIONS(3149), + [anon_sym_var] = ACTIONS(3149), + [sym_predefined_type] = ACTIONS(3149), + [anon_sym_break] = ACTIONS(3149), + [anon_sym_unchecked] = ACTIONS(3149), + [anon_sym_continue] = ACTIONS(3149), + [anon_sym_do] = ACTIONS(3149), + [anon_sym_while] = ACTIONS(3149), + [anon_sym_for] = ACTIONS(3149), + [anon_sym_lock] = ACTIONS(3149), + [anon_sym_yield] = ACTIONS(3149), + [anon_sym_switch] = ACTIONS(3149), + [anon_sym_default] = ACTIONS(3149), + [anon_sym_throw] = ACTIONS(3149), + [anon_sym_try] = ACTIONS(3149), + [anon_sym_when] = ACTIONS(3149), + [anon_sym_await] = ACTIONS(3149), + [anon_sym_foreach] = ACTIONS(3149), + [anon_sym_goto] = ACTIONS(3149), + [anon_sym_if] = ACTIONS(3149), + [anon_sym_else] = ACTIONS(3149), + [anon_sym_DOT_DOT] = ACTIONS(3151), + [anon_sym_from] = ACTIONS(3149), + [anon_sym_into] = ACTIONS(3149), + [anon_sym_join] = ACTIONS(3149), + [anon_sym_on] = ACTIONS(3149), + [anon_sym_equals] = ACTIONS(3149), + [anon_sym_let] = ACTIONS(3149), + [anon_sym_orderby] = ACTIONS(3149), + [anon_sym_ascending] = ACTIONS(3149), + [anon_sym_descending] = ACTIONS(3149), + [anon_sym_group] = ACTIONS(3149), + [anon_sym_by] = ACTIONS(3149), + [anon_sym_select] = ACTIONS(3149), + [anon_sym_stackalloc] = ACTIONS(3149), + [anon_sym_sizeof] = ACTIONS(3149), + [anon_sym_typeof] = ACTIONS(3149), + [anon_sym___makeref] = ACTIONS(3149), + [anon_sym___reftype] = ACTIONS(3149), + [anon_sym___refvalue] = ACTIONS(3149), + [sym_null_literal] = ACTIONS(3149), + [anon_sym_SQUOTE] = ACTIONS(3151), + [sym_integer_literal] = ACTIONS(3149), + [sym_real_literal] = ACTIONS(3151), + [anon_sym_DQUOTE] = ACTIONS(3151), + [sym_verbatim_string_literal] = ACTIONS(3151), + [aux_sym_preproc_if_token1] = ACTIONS(3151), + [aux_sym_preproc_if_token3] = ACTIONS(3151), + [aux_sym_preproc_else_token1] = ACTIONS(3151), + [aux_sym_preproc_elif_token1] = ACTIONS(3151), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -362866,165 +367144,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(151), - [sym_interpolation_verbatim_start] = ACTIONS(153), - [sym_interpolation_raw_start] = ACTIONS(155), - [sym_raw_string_start] = ACTIONS(157), + [sym_interpolation_regular_start] = ACTIONS(3151), + [sym_interpolation_verbatim_start] = ACTIONS(3151), + [sym_interpolation_raw_start] = ACTIONS(3151), + [sym_raw_string_start] = ACTIONS(3151), }, - [1900] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym_bracketed_argument_list] = STATE(2457), - [sym__name] = STATE(5160), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(2204), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_expression] = STATE(4558), - [sym_non_lvalue_expression] = STATE(3096), - [sym_lvalue_expression] = STATE(3461), - [sym__expression_statement_expression] = STATE(3080), - [sym_assignment_expression] = STATE(3111), - [sym_binary_expression] = STATE(3080), - [sym_postfix_unary_expression] = STATE(3111), - [sym_prefix_unary_expression] = STATE(3111), - [sym__pointer_indirection_expression] = STATE(2484), - [sym_query_expression] = STATE(3080), - [sym_from_clause] = STATE(6154), - [sym_conditional_expression] = STATE(3080), - [sym_conditional_access_expression] = STATE(3080), - [sym_as_expression] = STATE(3080), - [sym_is_expression] = STATE(3080), - [sym_is_pattern_expression] = STATE(3080), - [sym_cast_expression] = STATE(3080), - [sym_checked_expression] = STATE(3080), - [sym_invocation_expression] = STATE(3111), - [sym_switch_expression] = STATE(3080), - [sym_await_expression] = STATE(3111), - [sym_throw_expression] = STATE(3080), - [sym_element_access_expression] = STATE(2484), - [sym_interpolated_string_expression] = STATE(3080), - [sym_member_access_expression] = STATE(2484), - [sym_object_creation_expression] = STATE(3111), - [sym_parenthesized_expression] = STATE(3111), - [sym__parenthesized_lvalue_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3080), - [sym__lambda_expression_init] = STATE(7547), - [sym__lambda_parameters] = STATE(7598), - [sym_array_creation_expression] = STATE(3080), - [sym_anonymous_method_expression] = STATE(3080), - [sym_anonymous_object_creation_expression] = STATE(3080), - [sym_implicit_array_creation_expression] = STATE(3080), - [sym_implicit_object_creation_expression] = STATE(3080), - [sym_implicit_stackalloc_expression] = STATE(3080), - [sym_initializer_expression] = STATE(3080), - [sym_default_expression] = STATE(3080), - [sym_with_expression] = STATE(3080), - [sym_sizeof_expression] = STATE(3080), - [sym_typeof_expression] = STATE(3080), - [sym_makeref_expression] = STATE(3080), - [sym_ref_expression] = STATE(3080), - [sym_reftype_expression] = STATE(3080), - [sym_refvalue_expression] = STATE(3080), - [sym_stackalloc_expression] = STATE(3080), - [sym_range_expression] = STATE(3080), - [sym_tuple_expression] = STATE(2484), - [sym_literal] = STATE(3080), - [sym_character_literal] = STATE(3437), - [sym_string_literal] = STATE(3437), - [sym_raw_string_literal] = STATE(3437), - [sym_boolean_literal] = STATE(3437), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_expression] = STATE(3080), - [sym_preproc_if_in_attribute_list] = STATE(5576), - [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(3067), - [aux_sym__lambda_expression_init_repeat1] = STATE(3367), - [sym__identifier_token] = ACTIONS(25), - [anon_sym_alias] = ACTIONS(29), - [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1481), - [anon_sym_LPAREN] = ACTIONS(1497), - [anon_sym_ref] = ACTIONS(1499), - [anon_sym_LBRACE] = ACTIONS(1487), - [anon_sym_delegate] = ACTIONS(667), - [anon_sym_async] = ACTIONS(1047), - [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1501), - [anon_sym_where] = ACTIONS(29), - [anon_sym_notnull] = ACTIONS(29), - [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = 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(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(1067), - [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1503), - [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1505), - [anon_sym_DOT_DOT] = ACTIONS(1507), - [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(1089), + [1932] = { + [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), + [ts_builtin_sym_end] = ACTIONS(3139), + [sym__identifier_token] = ACTIONS(3137), + [anon_sym_extern] = ACTIONS(3137), + [anon_sym_alias] = ACTIONS(3137), + [anon_sym_SEMI] = ACTIONS(3139), + [anon_sym_global] = ACTIONS(3137), + [anon_sym_using] = ACTIONS(3137), + [anon_sym_unsafe] = ACTIONS(3137), + [anon_sym_static] = ACTIONS(3137), + [anon_sym_LBRACK] = ACTIONS(3139), + [anon_sym_LPAREN] = ACTIONS(3139), + [anon_sym_return] = ACTIONS(3137), + [anon_sym_namespace] = ACTIONS(3137), + [anon_sym_class] = ACTIONS(3137), + [anon_sym_ref] = ACTIONS(3137), + [anon_sym_struct] = ACTIONS(3137), + [anon_sym_enum] = ACTIONS(3137), + [anon_sym_LBRACE] = ACTIONS(3139), + [anon_sym_interface] = ACTIONS(3137), + [anon_sym_delegate] = ACTIONS(3137), + [anon_sym_record] = ACTIONS(3137), + [anon_sym_abstract] = ACTIONS(3137), + [anon_sym_async] = ACTIONS(3137), + [anon_sym_const] = ACTIONS(3137), + [anon_sym_file] = ACTIONS(3137), + [anon_sym_fixed] = ACTIONS(3137), + [anon_sym_internal] = ACTIONS(3137), + [anon_sym_new] = ACTIONS(3137), + [anon_sym_override] = ACTIONS(3137), + [anon_sym_partial] = ACTIONS(3137), + [anon_sym_private] = ACTIONS(3137), + [anon_sym_protected] = ACTIONS(3137), + [anon_sym_public] = ACTIONS(3137), + [anon_sym_readonly] = ACTIONS(3137), + [anon_sym_required] = ACTIONS(3137), + [anon_sym_sealed] = ACTIONS(3137), + [anon_sym_virtual] = ACTIONS(3137), + [anon_sym_volatile] = ACTIONS(3137), + [anon_sym_where] = ACTIONS(3137), + [anon_sym_notnull] = ACTIONS(3137), + [anon_sym_unmanaged] = ACTIONS(3137), + [anon_sym_checked] = ACTIONS(3137), + [anon_sym_BANG] = ACTIONS(3139), + [anon_sym_TILDE] = ACTIONS(3139), + [anon_sym_PLUS_PLUS] = ACTIONS(3139), + [anon_sym_DASH_DASH] = ACTIONS(3139), + [anon_sym_true] = ACTIONS(3137), + [anon_sym_false] = ACTIONS(3137), + [anon_sym_PLUS] = ACTIONS(3137), + [anon_sym_DASH] = ACTIONS(3137), + [anon_sym_STAR] = ACTIONS(3139), + [anon_sym_CARET] = ACTIONS(3139), + [anon_sym_AMP] = ACTIONS(3139), + [anon_sym_this] = ACTIONS(3137), + [anon_sym_scoped] = ACTIONS(3137), + [anon_sym_base] = ACTIONS(3137), + [anon_sym_var] = ACTIONS(3137), + [sym_predefined_type] = ACTIONS(3137), + [anon_sym_break] = ACTIONS(3137), + [anon_sym_unchecked] = ACTIONS(3137), + [anon_sym_continue] = ACTIONS(3137), + [anon_sym_do] = ACTIONS(3137), + [anon_sym_while] = ACTIONS(3137), + [anon_sym_for] = ACTIONS(3137), + [anon_sym_lock] = ACTIONS(3137), + [anon_sym_yield] = ACTIONS(3137), + [anon_sym_switch] = ACTIONS(3137), + [anon_sym_default] = ACTIONS(3137), + [anon_sym_throw] = ACTIONS(3137), + [anon_sym_try] = ACTIONS(3137), + [anon_sym_catch] = ACTIONS(3137), + [anon_sym_when] = ACTIONS(3137), + [anon_sym_finally] = ACTIONS(3137), + [anon_sym_await] = ACTIONS(3137), + [anon_sym_foreach] = ACTIONS(3137), + [anon_sym_goto] = ACTIONS(3137), + [anon_sym_if] = ACTIONS(3137), + [anon_sym_else] = ACTIONS(3137), + [anon_sym_DOT_DOT] = ACTIONS(3139), + [anon_sym_from] = ACTIONS(3137), + [anon_sym_into] = ACTIONS(3137), + [anon_sym_join] = ACTIONS(3137), + [anon_sym_on] = ACTIONS(3137), + [anon_sym_equals] = ACTIONS(3137), + [anon_sym_let] = ACTIONS(3137), + [anon_sym_orderby] = ACTIONS(3137), + [anon_sym_ascending] = ACTIONS(3137), + [anon_sym_descending] = ACTIONS(3137), + [anon_sym_group] = ACTIONS(3137), + [anon_sym_by] = ACTIONS(3137), + [anon_sym_select] = ACTIONS(3137), + [anon_sym_stackalloc] = ACTIONS(3137), + [anon_sym_sizeof] = ACTIONS(3137), + [anon_sym_typeof] = ACTIONS(3137), + [anon_sym___makeref] = ACTIONS(3137), + [anon_sym___reftype] = ACTIONS(3137), + [anon_sym___refvalue] = ACTIONS(3137), + [sym_null_literal] = ACTIONS(3137), + [anon_sym_SQUOTE] = ACTIONS(3139), + [sym_integer_literal] = ACTIONS(3137), + [sym_real_literal] = ACTIONS(3139), + [anon_sym_DQUOTE] = ACTIONS(3139), + [sym_verbatim_string_literal] = ACTIONS(3139), + [aux_sym_preproc_if_token1] = ACTIONS(3139), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + [sym_interpolation_regular_start] = ACTIONS(3139), + [sym_interpolation_verbatim_start] = ACTIONS(3139), + [sym_interpolation_raw_start] = ACTIONS(3139), + [sym_raw_string_start] = ACTIONS(3139), + }, + [1933] = { + [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), + [sym__identifier_token] = ACTIONS(3153), + [anon_sym_extern] = ACTIONS(3153), + [anon_sym_alias] = ACTIONS(3153), + [anon_sym_SEMI] = ACTIONS(3155), + [anon_sym_global] = ACTIONS(3153), + [anon_sym_using] = ACTIONS(3153), + [anon_sym_unsafe] = ACTIONS(3153), + [anon_sym_static] = ACTIONS(3153), + [anon_sym_LBRACK] = ACTIONS(3155), + [anon_sym_LPAREN] = ACTIONS(3155), + [anon_sym_return] = ACTIONS(3153), + [anon_sym_namespace] = ACTIONS(3153), + [anon_sym_class] = ACTIONS(3153), + [anon_sym_ref] = ACTIONS(3153), + [anon_sym_struct] = ACTIONS(3153), + [anon_sym_enum] = ACTIONS(3153), + [anon_sym_LBRACE] = ACTIONS(3155), + [anon_sym_interface] = ACTIONS(3153), + [anon_sym_delegate] = ACTIONS(3153), + [anon_sym_record] = ACTIONS(3153), + [anon_sym_abstract] = ACTIONS(3153), + [anon_sym_async] = ACTIONS(3153), + [anon_sym_const] = ACTIONS(3153), + [anon_sym_file] = ACTIONS(3153), + [anon_sym_fixed] = ACTIONS(3153), + [anon_sym_internal] = ACTIONS(3153), + [anon_sym_new] = ACTIONS(3153), + [anon_sym_override] = ACTIONS(3153), + [anon_sym_partial] = ACTIONS(3153), + [anon_sym_private] = ACTIONS(3153), + [anon_sym_protected] = ACTIONS(3153), + [anon_sym_public] = ACTIONS(3153), + [anon_sym_readonly] = ACTIONS(3153), + [anon_sym_required] = ACTIONS(3153), + [anon_sym_sealed] = ACTIONS(3153), + [anon_sym_virtual] = ACTIONS(3153), + [anon_sym_volatile] = ACTIONS(3153), + [anon_sym_where] = ACTIONS(3153), + [anon_sym_notnull] = ACTIONS(3153), + [anon_sym_unmanaged] = ACTIONS(3153), + [anon_sym_checked] = ACTIONS(3153), + [anon_sym_BANG] = ACTIONS(3155), + [anon_sym_TILDE] = ACTIONS(3155), + [anon_sym_PLUS_PLUS] = ACTIONS(3155), + [anon_sym_DASH_DASH] = ACTIONS(3155), + [anon_sym_true] = ACTIONS(3153), + [anon_sym_false] = ACTIONS(3153), + [anon_sym_PLUS] = ACTIONS(3153), + [anon_sym_DASH] = ACTIONS(3153), + [anon_sym_STAR] = ACTIONS(3155), + [anon_sym_CARET] = ACTIONS(3155), + [anon_sym_AMP] = ACTIONS(3155), + [anon_sym_this] = ACTIONS(3153), + [anon_sym_scoped] = ACTIONS(3153), + [anon_sym_base] = ACTIONS(3153), + [anon_sym_var] = ACTIONS(3153), + [sym_predefined_type] = ACTIONS(3153), + [anon_sym_break] = ACTIONS(3153), + [anon_sym_unchecked] = ACTIONS(3153), + [anon_sym_continue] = ACTIONS(3153), + [anon_sym_do] = ACTIONS(3153), + [anon_sym_while] = ACTIONS(3153), + [anon_sym_for] = ACTIONS(3153), + [anon_sym_lock] = ACTIONS(3153), + [anon_sym_yield] = ACTIONS(3153), + [anon_sym_switch] = ACTIONS(3153), + [anon_sym_default] = ACTIONS(3153), + [anon_sym_throw] = ACTIONS(3153), + [anon_sym_try] = ACTIONS(3153), + [anon_sym_when] = ACTIONS(3153), + [anon_sym_await] = ACTIONS(3153), + [anon_sym_foreach] = ACTIONS(3153), + [anon_sym_goto] = ACTIONS(3153), + [anon_sym_if] = ACTIONS(3153), + [anon_sym_else] = ACTIONS(3153), + [anon_sym_DOT_DOT] = ACTIONS(3155), + [anon_sym_from] = ACTIONS(3153), + [anon_sym_into] = ACTIONS(3153), + [anon_sym_join] = ACTIONS(3153), + [anon_sym_on] = ACTIONS(3153), + [anon_sym_equals] = ACTIONS(3153), + [anon_sym_let] = ACTIONS(3153), + [anon_sym_orderby] = ACTIONS(3153), + [anon_sym_ascending] = ACTIONS(3153), + [anon_sym_descending] = ACTIONS(3153), + [anon_sym_group] = ACTIONS(3153), + [anon_sym_by] = ACTIONS(3153), + [anon_sym_select] = ACTIONS(3153), + [anon_sym_stackalloc] = ACTIONS(3153), + [anon_sym_sizeof] = ACTIONS(3153), + [anon_sym_typeof] = ACTIONS(3153), + [anon_sym___makeref] = ACTIONS(3153), + [anon_sym___reftype] = ACTIONS(3153), + [anon_sym___refvalue] = ACTIONS(3153), + [sym_null_literal] = ACTIONS(3153), + [anon_sym_SQUOTE] = ACTIONS(3155), + [sym_integer_literal] = ACTIONS(3153), + [sym_real_literal] = ACTIONS(3155), + [anon_sym_DQUOTE] = ACTIONS(3155), + [sym_verbatim_string_literal] = ACTIONS(3155), + [aux_sym_preproc_if_token1] = ACTIONS(3155), + [aux_sym_preproc_if_token3] = ACTIONS(3155), + [aux_sym_preproc_else_token1] = ACTIONS(3155), + [aux_sym_preproc_elif_token1] = ACTIONS(3155), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -363035,146 +367402,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(151), - [sym_interpolation_verbatim_start] = ACTIONS(153), - [sym_interpolation_raw_start] = ACTIONS(155), - [sym_raw_string_start] = ACTIONS(157), + [sym_interpolation_regular_start] = ACTIONS(3155), + [sym_interpolation_verbatim_start] = ACTIONS(3155), + [sym_interpolation_raw_start] = ACTIONS(3155), + [sym_raw_string_start] = ACTIONS(3155), }, - [1901] = { - [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), - [sym__identifier_token] = ACTIONS(2951), - [anon_sym_extern] = ACTIONS(2951), - [anon_sym_alias] = ACTIONS(2951), - [anon_sym_SEMI] = ACTIONS(2953), - [anon_sym_global] = ACTIONS(2951), - [anon_sym_using] = ACTIONS(2951), - [anon_sym_unsafe] = ACTIONS(2951), - [anon_sym_static] = ACTIONS(2951), - [anon_sym_LBRACK] = ACTIONS(2953), - [anon_sym_LPAREN] = ACTIONS(2953), - [anon_sym_return] = ACTIONS(2951), - [anon_sym_namespace] = ACTIONS(2951), - [anon_sym_class] = ACTIONS(2951), - [anon_sym_ref] = ACTIONS(2951), - [anon_sym_struct] = ACTIONS(2951), - [anon_sym_enum] = ACTIONS(2951), - [anon_sym_LBRACE] = ACTIONS(2953), - [anon_sym_interface] = ACTIONS(2951), - [anon_sym_delegate] = ACTIONS(2951), - [anon_sym_record] = ACTIONS(2951), - [anon_sym_abstract] = ACTIONS(2951), - [anon_sym_async] = ACTIONS(2951), - [anon_sym_const] = ACTIONS(2951), - [anon_sym_file] = ACTIONS(2951), - [anon_sym_fixed] = ACTIONS(2951), - [anon_sym_internal] = ACTIONS(2951), - [anon_sym_new] = ACTIONS(2951), - [anon_sym_override] = ACTIONS(2951), - [anon_sym_partial] = ACTIONS(2951), - [anon_sym_private] = ACTIONS(2951), - [anon_sym_protected] = ACTIONS(2951), - [anon_sym_public] = ACTIONS(2951), - [anon_sym_readonly] = ACTIONS(2951), - [anon_sym_required] = ACTIONS(2951), - [anon_sym_sealed] = ACTIONS(2951), - [anon_sym_virtual] = ACTIONS(2951), - [anon_sym_volatile] = ACTIONS(2951), - [anon_sym_LT] = ACTIONS(2955), - [anon_sym_GT] = ACTIONS(2955), - [anon_sym_where] = ACTIONS(2951), - [anon_sym_QMARK] = ACTIONS(2955), - [anon_sym_notnull] = ACTIONS(2951), - [anon_sym_unmanaged] = ACTIONS(2951), - [anon_sym_checked] = ACTIONS(2951), - [anon_sym_BANG] = ACTIONS(2951), - [anon_sym_TILDE] = ACTIONS(2953), - [anon_sym_PLUS_PLUS] = ACTIONS(2953), - [anon_sym_DASH_DASH] = ACTIONS(2953), - [anon_sym_true] = ACTIONS(2951), - [anon_sym_false] = ACTIONS(2951), - [anon_sym_PLUS] = ACTIONS(2951), - [anon_sym_DASH] = ACTIONS(2951), - [anon_sym_STAR] = ACTIONS(2953), - [anon_sym_SLASH] = ACTIONS(2955), - [anon_sym_PERCENT] = ACTIONS(2957), - [anon_sym_CARET] = ACTIONS(2953), - [anon_sym_PIPE] = ACTIONS(2955), - [anon_sym_AMP] = ACTIONS(2951), - [anon_sym_LT_LT] = ACTIONS(2957), - [anon_sym_GT_GT] = ACTIONS(2955), - [anon_sym_GT_GT_GT] = ACTIONS(2957), - [anon_sym_EQ_EQ] = ACTIONS(2957), - [anon_sym_BANG_EQ] = ACTIONS(2957), - [anon_sym_GT_EQ] = ACTIONS(2957), - [anon_sym_LT_EQ] = ACTIONS(2957), - [anon_sym_this] = ACTIONS(2951), - [anon_sym_DOT] = ACTIONS(2955), - [anon_sym_scoped] = ACTIONS(2951), - [anon_sym_base] = ACTIONS(2951), - [anon_sym_var] = ACTIONS(2951), - [sym_predefined_type] = ACTIONS(2951), - [anon_sym_break] = ACTIONS(2951), - [anon_sym_unchecked] = ACTIONS(2951), - [anon_sym_continue] = ACTIONS(2951), - [anon_sym_do] = ACTIONS(2951), - [anon_sym_while] = ACTIONS(2951), - [anon_sym_for] = ACTIONS(2951), - [anon_sym_lock] = ACTIONS(2951), - [anon_sym_yield] = ACTIONS(2951), - [anon_sym_switch] = ACTIONS(2951), - [anon_sym_default] = ACTIONS(2951), - [anon_sym_throw] = ACTIONS(2951), - [anon_sym_try] = ACTIONS(2951), - [anon_sym_when] = ACTIONS(2951), - [anon_sym_await] = ACTIONS(2951), - [anon_sym_foreach] = ACTIONS(2951), - [anon_sym_goto] = ACTIONS(2951), - [anon_sym_if] = ACTIONS(2951), - [anon_sym_else] = ACTIONS(2951), - [anon_sym_DOT_DOT] = ACTIONS(2953), - [anon_sym_AMP_AMP] = ACTIONS(2957), - [anon_sym_PIPE_PIPE] = ACTIONS(2957), - [anon_sym_QMARK_QMARK] = ACTIONS(2957), - [anon_sym_from] = ACTIONS(2951), - [anon_sym_into] = ACTIONS(2951), - [anon_sym_join] = ACTIONS(2951), - [anon_sym_on] = ACTIONS(2951), - [anon_sym_equals] = ACTIONS(2951), - [anon_sym_let] = ACTIONS(2951), - [anon_sym_orderby] = ACTIONS(2951), - [anon_sym_ascending] = ACTIONS(2951), - [anon_sym_descending] = ACTIONS(2951), - [anon_sym_group] = ACTIONS(2951), - [anon_sym_by] = ACTIONS(2951), - [anon_sym_select] = ACTIONS(2951), - [anon_sym_as] = ACTIONS(2955), - [anon_sym_is] = ACTIONS(2955), - [anon_sym_DASH_GT] = ACTIONS(2957), - [anon_sym_stackalloc] = ACTIONS(2951), - [anon_sym_with] = ACTIONS(2955), - [anon_sym_sizeof] = ACTIONS(2951), - [anon_sym_typeof] = ACTIONS(2951), - [anon_sym___makeref] = ACTIONS(2951), - [anon_sym___reftype] = ACTIONS(2951), - [anon_sym___refvalue] = ACTIONS(2951), - [sym_null_literal] = ACTIONS(2951), - [anon_sym_SQUOTE] = ACTIONS(2953), - [sym_integer_literal] = ACTIONS(2951), - [sym_real_literal] = ACTIONS(2953), - [anon_sym_DQUOTE] = ACTIONS(2953), - [sym_verbatim_string_literal] = ACTIONS(2953), - [aux_sym_preproc_if_token1] = ACTIONS(2953), - [aux_sym_preproc_if_token3] = ACTIONS(2953), - [aux_sym_preproc_else_token1] = ACTIONS(2953), - [aux_sym_preproc_elif_token1] = ACTIONS(2953), + [1934] = { + [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), + [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_when] = 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), @@ -363185,442 +367531,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(2953), - [sym_interpolation_verbatim_start] = ACTIONS(2953), - [sym_interpolation_raw_start] = ACTIONS(2953), - [sym_raw_string_start] = ACTIONS(2953), - }, - [1902] = { - [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), - [sym__identifier_token] = ACTIONS(2959), - [anon_sym_extern] = ACTIONS(2959), - [anon_sym_alias] = ACTIONS(2959), - [anon_sym_SEMI] = ACTIONS(2961), - [anon_sym_global] = ACTIONS(2959), - [anon_sym_using] = ACTIONS(2959), - [anon_sym_unsafe] = ACTIONS(2959), - [anon_sym_static] = ACTIONS(2959), - [anon_sym_LBRACK] = ACTIONS(2961), - [anon_sym_LPAREN] = ACTIONS(2961), - [anon_sym_return] = ACTIONS(2959), - [anon_sym_namespace] = ACTIONS(2959), - [anon_sym_class] = ACTIONS(2959), - [anon_sym_ref] = ACTIONS(2959), - [anon_sym_struct] = ACTIONS(2959), - [anon_sym_enum] = ACTIONS(2959), - [anon_sym_LBRACE] = ACTIONS(2961), - [anon_sym_interface] = ACTIONS(2959), - [anon_sym_delegate] = ACTIONS(2959), - [anon_sym_record] = ACTIONS(2959), - [anon_sym_abstract] = ACTIONS(2959), - [anon_sym_async] = ACTIONS(2959), - [anon_sym_const] = ACTIONS(2959), - [anon_sym_file] = ACTIONS(2959), - [anon_sym_fixed] = ACTIONS(2959), - [anon_sym_internal] = ACTIONS(2959), - [anon_sym_new] = ACTIONS(2959), - [anon_sym_override] = ACTIONS(2959), - [anon_sym_partial] = ACTIONS(2959), - [anon_sym_private] = ACTIONS(2959), - [anon_sym_protected] = ACTIONS(2959), - [anon_sym_public] = ACTIONS(2959), - [anon_sym_readonly] = ACTIONS(2959), - [anon_sym_required] = ACTIONS(2959), - [anon_sym_sealed] = ACTIONS(2959), - [anon_sym_virtual] = ACTIONS(2959), - [anon_sym_volatile] = ACTIONS(2959), - [anon_sym_LT] = ACTIONS(2963), - [anon_sym_GT] = ACTIONS(2963), - [anon_sym_where] = ACTIONS(2959), - [anon_sym_QMARK] = ACTIONS(2963), - [anon_sym_notnull] = ACTIONS(2959), - [anon_sym_unmanaged] = ACTIONS(2959), - [anon_sym_checked] = ACTIONS(2959), - [anon_sym_BANG] = ACTIONS(2959), - [anon_sym_TILDE] = ACTIONS(2961), - [anon_sym_PLUS_PLUS] = ACTIONS(2961), - [anon_sym_DASH_DASH] = ACTIONS(2961), - [anon_sym_true] = ACTIONS(2959), - [anon_sym_false] = ACTIONS(2959), - [anon_sym_PLUS] = ACTIONS(2959), - [anon_sym_DASH] = ACTIONS(2959), - [anon_sym_STAR] = ACTIONS(2961), - [anon_sym_SLASH] = ACTIONS(2963), - [anon_sym_PERCENT] = ACTIONS(2965), - [anon_sym_CARET] = ACTIONS(2961), - [anon_sym_PIPE] = ACTIONS(2963), - [anon_sym_AMP] = ACTIONS(2959), - [anon_sym_LT_LT] = ACTIONS(2965), - [anon_sym_GT_GT] = ACTIONS(2963), - [anon_sym_GT_GT_GT] = ACTIONS(2965), - [anon_sym_EQ_EQ] = ACTIONS(2965), - [anon_sym_BANG_EQ] = ACTIONS(2965), - [anon_sym_GT_EQ] = ACTIONS(2965), - [anon_sym_LT_EQ] = ACTIONS(2965), - [anon_sym_this] = ACTIONS(2959), - [anon_sym_DOT] = ACTIONS(2963), - [anon_sym_scoped] = ACTIONS(2959), - [anon_sym_base] = ACTIONS(2959), - [anon_sym_var] = ACTIONS(2959), - [sym_predefined_type] = ACTIONS(2959), - [anon_sym_break] = ACTIONS(2959), - [anon_sym_unchecked] = ACTIONS(2959), - [anon_sym_continue] = ACTIONS(2959), - [anon_sym_do] = ACTIONS(2959), - [anon_sym_while] = ACTIONS(2959), - [anon_sym_for] = ACTIONS(2959), - [anon_sym_lock] = ACTIONS(2959), - [anon_sym_yield] = ACTIONS(2959), - [anon_sym_switch] = ACTIONS(2959), - [anon_sym_default] = ACTIONS(2959), - [anon_sym_throw] = ACTIONS(2959), - [anon_sym_try] = ACTIONS(2959), - [anon_sym_when] = ACTIONS(2959), - [anon_sym_await] = ACTIONS(2959), - [anon_sym_foreach] = ACTIONS(2959), - [anon_sym_goto] = ACTIONS(2959), - [anon_sym_if] = ACTIONS(2959), - [anon_sym_else] = ACTIONS(2959), - [anon_sym_DOT_DOT] = ACTIONS(2961), - [anon_sym_AMP_AMP] = ACTIONS(2965), - [anon_sym_PIPE_PIPE] = ACTIONS(2965), - [anon_sym_QMARK_QMARK] = ACTIONS(2965), - [anon_sym_from] = ACTIONS(2959), - [anon_sym_into] = ACTIONS(2959), - [anon_sym_join] = ACTIONS(2959), - [anon_sym_on] = ACTIONS(2959), - [anon_sym_equals] = ACTIONS(2959), - [anon_sym_let] = ACTIONS(2959), - [anon_sym_orderby] = ACTIONS(2959), - [anon_sym_ascending] = ACTIONS(2959), - [anon_sym_descending] = ACTIONS(2959), - [anon_sym_group] = ACTIONS(2959), - [anon_sym_by] = ACTIONS(2959), - [anon_sym_select] = ACTIONS(2959), - [anon_sym_as] = ACTIONS(2963), - [anon_sym_is] = ACTIONS(2963), - [anon_sym_DASH_GT] = ACTIONS(2965), - [anon_sym_stackalloc] = ACTIONS(2959), - [anon_sym_with] = ACTIONS(2963), - [anon_sym_sizeof] = ACTIONS(2959), - [anon_sym_typeof] = ACTIONS(2959), - [anon_sym___makeref] = ACTIONS(2959), - [anon_sym___reftype] = ACTIONS(2959), - [anon_sym___refvalue] = ACTIONS(2959), - [sym_null_literal] = ACTIONS(2959), - [anon_sym_SQUOTE] = ACTIONS(2961), - [sym_integer_literal] = ACTIONS(2959), - [sym_real_literal] = ACTIONS(2961), - [anon_sym_DQUOTE] = ACTIONS(2961), - [sym_verbatim_string_literal] = ACTIONS(2961), - [aux_sym_preproc_if_token1] = ACTIONS(2961), - [aux_sym_preproc_if_token3] = ACTIONS(2961), - [aux_sym_preproc_else_token1] = ACTIONS(2961), - [aux_sym_preproc_elif_token1] = ACTIONS(2961), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(2961), - [sym_interpolation_verbatim_start] = ACTIONS(2961), - [sym_interpolation_raw_start] = ACTIONS(2961), - [sym_raw_string_start] = ACTIONS(2961), - }, - [1903] = { - [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), - [ts_builtin_sym_end] = ACTIONS(2961), - [sym__identifier_token] = ACTIONS(2959), - [anon_sym_extern] = ACTIONS(2959), - [anon_sym_alias] = ACTIONS(2959), - [anon_sym_SEMI] = ACTIONS(2961), - [anon_sym_global] = ACTIONS(2959), - [anon_sym_using] = ACTIONS(2959), - [anon_sym_unsafe] = ACTIONS(2959), - [anon_sym_static] = ACTIONS(2959), - [anon_sym_LBRACK] = ACTIONS(2961), - [anon_sym_LPAREN] = ACTIONS(2961), - [anon_sym_return] = ACTIONS(2959), - [anon_sym_namespace] = ACTIONS(2959), - [anon_sym_class] = ACTIONS(2959), - [anon_sym_ref] = ACTIONS(2959), - [anon_sym_struct] = ACTIONS(2959), - [anon_sym_enum] = ACTIONS(2959), - [anon_sym_LBRACE] = ACTIONS(2961), - [anon_sym_interface] = ACTIONS(2959), - [anon_sym_delegate] = ACTIONS(2959), - [anon_sym_record] = ACTIONS(2959), - [anon_sym_abstract] = ACTIONS(2959), - [anon_sym_async] = ACTIONS(2959), - [anon_sym_const] = ACTIONS(2959), - [anon_sym_file] = ACTIONS(2959), - [anon_sym_fixed] = ACTIONS(2959), - [anon_sym_internal] = ACTIONS(2959), - [anon_sym_new] = ACTIONS(2959), - [anon_sym_override] = ACTIONS(2959), - [anon_sym_partial] = ACTIONS(2959), - [anon_sym_private] = ACTIONS(2959), - [anon_sym_protected] = ACTIONS(2959), - [anon_sym_public] = ACTIONS(2959), - [anon_sym_readonly] = ACTIONS(2959), - [anon_sym_required] = ACTIONS(2959), - [anon_sym_sealed] = ACTIONS(2959), - [anon_sym_virtual] = ACTIONS(2959), - [anon_sym_volatile] = ACTIONS(2959), - [anon_sym_LT] = ACTIONS(2963), - [anon_sym_GT] = ACTIONS(2963), - [anon_sym_where] = ACTIONS(2959), - [anon_sym_QMARK] = ACTIONS(2963), - [anon_sym_notnull] = ACTIONS(2959), - [anon_sym_unmanaged] = ACTIONS(2959), - [anon_sym_checked] = ACTIONS(2959), - [anon_sym_BANG] = ACTIONS(2959), - [anon_sym_TILDE] = ACTIONS(2961), - [anon_sym_PLUS_PLUS] = ACTIONS(2961), - [anon_sym_DASH_DASH] = ACTIONS(2961), - [anon_sym_true] = ACTIONS(2959), - [anon_sym_false] = ACTIONS(2959), - [anon_sym_PLUS] = ACTIONS(2959), - [anon_sym_DASH] = ACTIONS(2959), - [anon_sym_STAR] = ACTIONS(2961), - [anon_sym_SLASH] = ACTIONS(2963), - [anon_sym_PERCENT] = ACTIONS(2965), - [anon_sym_CARET] = ACTIONS(2961), - [anon_sym_PIPE] = ACTIONS(2963), - [anon_sym_AMP] = ACTIONS(2959), - [anon_sym_LT_LT] = ACTIONS(2965), - [anon_sym_GT_GT] = ACTIONS(2963), - [anon_sym_GT_GT_GT] = ACTIONS(2965), - [anon_sym_EQ_EQ] = ACTIONS(2965), - [anon_sym_BANG_EQ] = ACTIONS(2965), - [anon_sym_GT_EQ] = ACTIONS(2965), - [anon_sym_LT_EQ] = ACTIONS(2965), - [anon_sym_this] = ACTIONS(2959), - [anon_sym_DOT] = ACTIONS(2963), - [anon_sym_scoped] = ACTIONS(2959), - [anon_sym_base] = ACTIONS(2959), - [anon_sym_var] = ACTIONS(2959), - [sym_predefined_type] = ACTIONS(2959), - [anon_sym_break] = ACTIONS(2959), - [anon_sym_unchecked] = ACTIONS(2959), - [anon_sym_continue] = ACTIONS(2959), - [anon_sym_do] = ACTIONS(2959), - [anon_sym_while] = ACTIONS(2959), - [anon_sym_for] = ACTIONS(2959), - [anon_sym_lock] = ACTIONS(2959), - [anon_sym_yield] = ACTIONS(2959), - [anon_sym_switch] = ACTIONS(2959), - [anon_sym_default] = ACTIONS(2959), - [anon_sym_throw] = ACTIONS(2959), - [anon_sym_try] = ACTIONS(2959), - [anon_sym_when] = ACTIONS(2959), - [anon_sym_await] = ACTIONS(2959), - [anon_sym_foreach] = ACTIONS(2959), - [anon_sym_goto] = ACTIONS(2959), - [anon_sym_if] = ACTIONS(2959), - [anon_sym_else] = ACTIONS(2959), - [anon_sym_DOT_DOT] = ACTIONS(2961), - [anon_sym_AMP_AMP] = ACTIONS(2965), - [anon_sym_PIPE_PIPE] = ACTIONS(2965), - [anon_sym_QMARK_QMARK] = ACTIONS(2965), - [anon_sym_from] = ACTIONS(2959), - [anon_sym_into] = ACTIONS(2959), - [anon_sym_join] = ACTIONS(2959), - [anon_sym_on] = ACTIONS(2959), - [anon_sym_equals] = ACTIONS(2959), - [anon_sym_let] = ACTIONS(2959), - [anon_sym_orderby] = ACTIONS(2959), - [anon_sym_ascending] = ACTIONS(2959), - [anon_sym_descending] = ACTIONS(2959), - [anon_sym_group] = ACTIONS(2959), - [anon_sym_by] = ACTIONS(2959), - [anon_sym_select] = ACTIONS(2959), - [anon_sym_as] = ACTIONS(2963), - [anon_sym_is] = ACTIONS(2963), - [anon_sym_DASH_GT] = ACTIONS(2965), - [anon_sym_stackalloc] = ACTIONS(2959), - [anon_sym_with] = ACTIONS(2963), - [anon_sym_sizeof] = ACTIONS(2959), - [anon_sym_typeof] = ACTIONS(2959), - [anon_sym___makeref] = ACTIONS(2959), - [anon_sym___reftype] = ACTIONS(2959), - [anon_sym___refvalue] = ACTIONS(2959), - [sym_null_literal] = ACTIONS(2959), - [anon_sym_SQUOTE] = ACTIONS(2961), - [sym_integer_literal] = ACTIONS(2959), - [sym_real_literal] = ACTIONS(2961), - [anon_sym_DQUOTE] = ACTIONS(2961), - [sym_verbatim_string_literal] = ACTIONS(2961), - [aux_sym_preproc_if_token1] = ACTIONS(2961), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(2961), - [sym_interpolation_verbatim_start] = ACTIONS(2961), - [sym_interpolation_raw_start] = ACTIONS(2961), - [sym_raw_string_start] = ACTIONS(2961), + [sym_interpolation_regular_start] = ACTIONS(3159), + [sym_interpolation_verbatim_start] = ACTIONS(3159), + [sym_interpolation_raw_start] = ACTIONS(3159), + [sym_raw_string_start] = ACTIONS(3159), }, - [1904] = { - [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), - [ts_builtin_sym_end] = ACTIONS(2953), - [sym__identifier_token] = ACTIONS(2951), - [anon_sym_extern] = ACTIONS(2951), - [anon_sym_alias] = ACTIONS(2951), - [anon_sym_SEMI] = ACTIONS(2953), - [anon_sym_global] = ACTIONS(2951), - [anon_sym_using] = ACTIONS(2951), - [anon_sym_unsafe] = ACTIONS(2951), - [anon_sym_static] = ACTIONS(2951), - [anon_sym_LBRACK] = ACTIONS(2953), - [anon_sym_LPAREN] = ACTIONS(2953), - [anon_sym_return] = ACTIONS(2951), - [anon_sym_namespace] = ACTIONS(2951), - [anon_sym_class] = ACTIONS(2951), - [anon_sym_ref] = ACTIONS(2951), - [anon_sym_struct] = ACTIONS(2951), - [anon_sym_enum] = ACTIONS(2951), - [anon_sym_LBRACE] = ACTIONS(2953), - [anon_sym_interface] = ACTIONS(2951), - [anon_sym_delegate] = ACTIONS(2951), - [anon_sym_record] = ACTIONS(2951), - [anon_sym_abstract] = ACTIONS(2951), - [anon_sym_async] = ACTIONS(2951), - [anon_sym_const] = ACTIONS(2951), - [anon_sym_file] = ACTIONS(2951), - [anon_sym_fixed] = ACTIONS(2951), - [anon_sym_internal] = ACTIONS(2951), - [anon_sym_new] = ACTIONS(2951), - [anon_sym_override] = ACTIONS(2951), - [anon_sym_partial] = ACTIONS(2951), - [anon_sym_private] = ACTIONS(2951), - [anon_sym_protected] = ACTIONS(2951), - [anon_sym_public] = ACTIONS(2951), - [anon_sym_readonly] = ACTIONS(2951), - [anon_sym_required] = ACTIONS(2951), - [anon_sym_sealed] = ACTIONS(2951), - [anon_sym_virtual] = ACTIONS(2951), - [anon_sym_volatile] = ACTIONS(2951), - [anon_sym_LT] = ACTIONS(2955), - [anon_sym_GT] = ACTIONS(2955), - [anon_sym_where] = ACTIONS(2951), - [anon_sym_QMARK] = ACTIONS(2955), - [anon_sym_notnull] = ACTIONS(2951), - [anon_sym_unmanaged] = ACTIONS(2951), - [anon_sym_checked] = ACTIONS(2951), - [anon_sym_BANG] = ACTIONS(2951), - [anon_sym_TILDE] = ACTIONS(2953), - [anon_sym_PLUS_PLUS] = ACTIONS(2953), - [anon_sym_DASH_DASH] = ACTIONS(2953), - [anon_sym_true] = ACTIONS(2951), - [anon_sym_false] = ACTIONS(2951), - [anon_sym_PLUS] = ACTIONS(2951), - [anon_sym_DASH] = ACTIONS(2951), - [anon_sym_STAR] = ACTIONS(2953), - [anon_sym_SLASH] = ACTIONS(2955), - [anon_sym_PERCENT] = ACTIONS(2957), - [anon_sym_CARET] = ACTIONS(2953), - [anon_sym_PIPE] = ACTIONS(2955), - [anon_sym_AMP] = ACTIONS(2951), - [anon_sym_LT_LT] = ACTIONS(2957), - [anon_sym_GT_GT] = ACTIONS(2955), - [anon_sym_GT_GT_GT] = ACTIONS(2957), - [anon_sym_EQ_EQ] = ACTIONS(2957), - [anon_sym_BANG_EQ] = ACTIONS(2957), - [anon_sym_GT_EQ] = ACTIONS(2957), - [anon_sym_LT_EQ] = ACTIONS(2957), - [anon_sym_this] = ACTIONS(2951), - [anon_sym_DOT] = ACTIONS(2955), - [anon_sym_scoped] = ACTIONS(2951), - [anon_sym_base] = ACTIONS(2951), - [anon_sym_var] = ACTIONS(2951), - [sym_predefined_type] = ACTIONS(2951), - [anon_sym_break] = ACTIONS(2951), - [anon_sym_unchecked] = ACTIONS(2951), - [anon_sym_continue] = ACTIONS(2951), - [anon_sym_do] = ACTIONS(2951), - [anon_sym_while] = ACTIONS(2951), - [anon_sym_for] = ACTIONS(2951), - [anon_sym_lock] = ACTIONS(2951), - [anon_sym_yield] = ACTIONS(2951), - [anon_sym_switch] = ACTIONS(2951), - [anon_sym_default] = ACTIONS(2951), - [anon_sym_throw] = ACTIONS(2951), - [anon_sym_try] = ACTIONS(2951), - [anon_sym_when] = ACTIONS(2951), - [anon_sym_await] = ACTIONS(2951), - [anon_sym_foreach] = ACTIONS(2951), - [anon_sym_goto] = ACTIONS(2951), - [anon_sym_if] = ACTIONS(2951), - [anon_sym_else] = ACTIONS(2951), - [anon_sym_DOT_DOT] = ACTIONS(2953), - [anon_sym_AMP_AMP] = ACTIONS(2957), - [anon_sym_PIPE_PIPE] = ACTIONS(2957), - [anon_sym_QMARK_QMARK] = ACTIONS(2957), - [anon_sym_from] = ACTIONS(2951), - [anon_sym_into] = ACTIONS(2951), - [anon_sym_join] = ACTIONS(2951), - [anon_sym_on] = ACTIONS(2951), - [anon_sym_equals] = ACTIONS(2951), - [anon_sym_let] = ACTIONS(2951), - [anon_sym_orderby] = ACTIONS(2951), - [anon_sym_ascending] = ACTIONS(2951), - [anon_sym_descending] = ACTIONS(2951), - [anon_sym_group] = ACTIONS(2951), - [anon_sym_by] = ACTIONS(2951), - [anon_sym_select] = ACTIONS(2951), - [anon_sym_as] = ACTIONS(2955), - [anon_sym_is] = ACTIONS(2955), - [anon_sym_DASH_GT] = ACTIONS(2957), - [anon_sym_stackalloc] = ACTIONS(2951), - [anon_sym_with] = ACTIONS(2955), - [anon_sym_sizeof] = ACTIONS(2951), - [anon_sym_typeof] = ACTIONS(2951), - [anon_sym___makeref] = ACTIONS(2951), - [anon_sym___reftype] = ACTIONS(2951), - [anon_sym___refvalue] = ACTIONS(2951), - [sym_null_literal] = ACTIONS(2951), - [anon_sym_SQUOTE] = ACTIONS(2953), - [sym_integer_literal] = ACTIONS(2951), - [sym_real_literal] = ACTIONS(2953), - [anon_sym_DQUOTE] = ACTIONS(2953), - [sym_verbatim_string_literal] = ACTIONS(2953), - [aux_sym_preproc_if_token1] = ACTIONS(2953), + [1935] = { + [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), + [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_when] = 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), @@ -363631,284 +367660,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(2953), - [sym_interpolation_verbatim_start] = ACTIONS(2953), - [sym_interpolation_raw_start] = ACTIONS(2953), - [sym_raw_string_start] = ACTIONS(2953), - }, - [1905] = { - [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), - [sym__identifier_token] = ACTIONS(2959), - [anon_sym_extern] = ACTIONS(2959), - [anon_sym_alias] = ACTIONS(2959), - [anon_sym_SEMI] = ACTIONS(2961), - [anon_sym_global] = ACTIONS(2959), - [anon_sym_using] = ACTIONS(2959), - [anon_sym_unsafe] = ACTIONS(2959), - [anon_sym_static] = ACTIONS(2959), - [anon_sym_LBRACK] = ACTIONS(2961), - [anon_sym_COMMA] = ACTIONS(2965), - [anon_sym_LPAREN] = ACTIONS(2961), - [anon_sym_return] = ACTIONS(2959), - [anon_sym_ref] = ACTIONS(2959), - [anon_sym_LBRACE] = ACTIONS(2961), - [anon_sym_RBRACE] = ACTIONS(2961), - [anon_sym_delegate] = ACTIONS(2959), - [anon_sym_abstract] = ACTIONS(2959), - [anon_sym_async] = ACTIONS(2959), - [anon_sym_const] = ACTIONS(2959), - [anon_sym_file] = ACTIONS(2959), - [anon_sym_fixed] = ACTIONS(2959), - [anon_sym_internal] = ACTIONS(2959), - [anon_sym_new] = ACTIONS(2959), - [anon_sym_override] = ACTIONS(2959), - [anon_sym_partial] = ACTIONS(2959), - [anon_sym_private] = ACTIONS(2959), - [anon_sym_protected] = ACTIONS(2959), - [anon_sym_public] = ACTIONS(2959), - [anon_sym_readonly] = ACTIONS(2959), - [anon_sym_required] = ACTIONS(2959), - [anon_sym_sealed] = ACTIONS(2959), - [anon_sym_virtual] = ACTIONS(2959), - [anon_sym_volatile] = ACTIONS(2959), - [anon_sym_LT] = ACTIONS(2963), - [anon_sym_GT] = ACTIONS(2963), - [anon_sym_where] = ACTIONS(2959), - [anon_sym_QMARK] = ACTIONS(2963), - [anon_sym_notnull] = ACTIONS(2959), - [anon_sym_unmanaged] = ACTIONS(2959), - [anon_sym_checked] = ACTIONS(2959), - [anon_sym_BANG] = ACTIONS(2959), - [anon_sym_TILDE] = ACTIONS(2961), - [anon_sym_PLUS_PLUS] = ACTIONS(2961), - [anon_sym_DASH_DASH] = ACTIONS(2961), - [anon_sym_true] = ACTIONS(2959), - [anon_sym_false] = ACTIONS(2959), - [anon_sym_PLUS] = ACTIONS(2959), - [anon_sym_DASH] = ACTIONS(2959), - [anon_sym_STAR] = ACTIONS(2961), - [anon_sym_SLASH] = ACTIONS(2963), - [anon_sym_PERCENT] = ACTIONS(2965), - [anon_sym_CARET] = ACTIONS(2961), - [anon_sym_PIPE] = ACTIONS(2963), - [anon_sym_AMP] = ACTIONS(2959), - [anon_sym_LT_LT] = ACTIONS(2965), - [anon_sym_GT_GT] = ACTIONS(2963), - [anon_sym_GT_GT_GT] = ACTIONS(2965), - [anon_sym_EQ_EQ] = ACTIONS(2965), - [anon_sym_BANG_EQ] = ACTIONS(2965), - [anon_sym_GT_EQ] = ACTIONS(2965), - [anon_sym_LT_EQ] = ACTIONS(2965), - [anon_sym_this] = ACTIONS(2959), - [anon_sym_DOT] = ACTIONS(2963), - [anon_sym_scoped] = ACTIONS(2959), - [anon_sym_base] = ACTIONS(2959), - [anon_sym_var] = ACTIONS(2959), - [sym_predefined_type] = ACTIONS(2959), - [anon_sym_break] = ACTIONS(2959), - [anon_sym_unchecked] = ACTIONS(2959), - [anon_sym_continue] = ACTIONS(2959), - [anon_sym_do] = ACTIONS(2959), - [anon_sym_while] = ACTIONS(2959), - [anon_sym_for] = ACTIONS(2959), - [anon_sym_lock] = ACTIONS(2959), - [anon_sym_yield] = ACTIONS(2959), - [anon_sym_switch] = ACTIONS(2959), - [anon_sym_case] = ACTIONS(2959), - [anon_sym_default] = ACTIONS(2959), - [anon_sym_throw] = ACTIONS(2959), - [anon_sym_try] = ACTIONS(2959), - [anon_sym_when] = ACTIONS(2959), - [anon_sym_await] = ACTIONS(2959), - [anon_sym_foreach] = ACTIONS(2959), - [anon_sym_goto] = ACTIONS(2959), - [anon_sym_if] = ACTIONS(2959), - [anon_sym_else] = ACTIONS(2959), - [anon_sym_DOT_DOT] = ACTIONS(2961), - [anon_sym_AMP_AMP] = ACTIONS(2965), - [anon_sym_PIPE_PIPE] = ACTIONS(2965), - [anon_sym_QMARK_QMARK] = ACTIONS(2965), - [anon_sym_from] = ACTIONS(2959), - [anon_sym_into] = ACTIONS(2959), - [anon_sym_join] = ACTIONS(2959), - [anon_sym_on] = ACTIONS(2959), - [anon_sym_equals] = ACTIONS(2959), - [anon_sym_let] = ACTIONS(2959), - [anon_sym_orderby] = ACTIONS(2959), - [anon_sym_ascending] = ACTIONS(2959), - [anon_sym_descending] = ACTIONS(2959), - [anon_sym_group] = ACTIONS(2959), - [anon_sym_by] = ACTIONS(2959), - [anon_sym_select] = ACTIONS(2959), - [anon_sym_as] = ACTIONS(2963), - [anon_sym_is] = ACTIONS(2963), - [anon_sym_DASH_GT] = ACTIONS(2965), - [anon_sym_stackalloc] = ACTIONS(2959), - [anon_sym_with] = ACTIONS(2963), - [anon_sym_sizeof] = ACTIONS(2959), - [anon_sym_typeof] = ACTIONS(2959), - [anon_sym___makeref] = ACTIONS(2959), - [anon_sym___reftype] = ACTIONS(2959), - [anon_sym___refvalue] = ACTIONS(2959), - [sym_null_literal] = ACTIONS(2959), - [anon_sym_SQUOTE] = ACTIONS(2961), - [sym_integer_literal] = ACTIONS(2959), - [sym_real_literal] = ACTIONS(2961), - [anon_sym_DQUOTE] = ACTIONS(2961), - [sym_verbatim_string_literal] = ACTIONS(2961), - [aux_sym_preproc_if_token1] = ACTIONS(2961), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(2961), - [sym_interpolation_verbatim_start] = ACTIONS(2961), - [sym_interpolation_raw_start] = ACTIONS(2961), - [sym_raw_string_start] = ACTIONS(2961), + [sym_interpolation_regular_start] = ACTIONS(3163), + [sym_interpolation_verbatim_start] = ACTIONS(3163), + [sym_interpolation_raw_start] = ACTIONS(3163), + [sym_raw_string_start] = ACTIONS(3163), }, - [1906] = { - [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), - [sym__identifier_token] = ACTIONS(2951), - [anon_sym_extern] = ACTIONS(2951), - [anon_sym_alias] = ACTIONS(2951), - [anon_sym_SEMI] = ACTIONS(2953), - [anon_sym_global] = ACTIONS(2951), - [anon_sym_using] = ACTIONS(2951), - [anon_sym_unsafe] = ACTIONS(2951), - [anon_sym_static] = ACTIONS(2951), - [anon_sym_LBRACK] = ACTIONS(2953), - [anon_sym_COMMA] = ACTIONS(2957), - [anon_sym_LPAREN] = ACTIONS(2953), - [anon_sym_return] = ACTIONS(2951), - [anon_sym_ref] = ACTIONS(2951), - [anon_sym_LBRACE] = ACTIONS(2953), - [anon_sym_RBRACE] = ACTIONS(2953), - [anon_sym_delegate] = ACTIONS(2951), - [anon_sym_abstract] = ACTIONS(2951), - [anon_sym_async] = ACTIONS(2951), - [anon_sym_const] = ACTIONS(2951), - [anon_sym_file] = ACTIONS(2951), - [anon_sym_fixed] = ACTIONS(2951), - [anon_sym_internal] = ACTIONS(2951), - [anon_sym_new] = ACTIONS(2951), - [anon_sym_override] = ACTIONS(2951), - [anon_sym_partial] = ACTIONS(2951), - [anon_sym_private] = ACTIONS(2951), - [anon_sym_protected] = ACTIONS(2951), - [anon_sym_public] = ACTIONS(2951), - [anon_sym_readonly] = ACTIONS(2951), - [anon_sym_required] = ACTIONS(2951), - [anon_sym_sealed] = ACTIONS(2951), - [anon_sym_virtual] = ACTIONS(2951), - [anon_sym_volatile] = ACTIONS(2951), - [anon_sym_LT] = ACTIONS(2955), - [anon_sym_GT] = ACTIONS(2955), - [anon_sym_where] = ACTIONS(2951), - [anon_sym_QMARK] = ACTIONS(2955), - [anon_sym_notnull] = ACTIONS(2951), - [anon_sym_unmanaged] = ACTIONS(2951), - [anon_sym_checked] = ACTIONS(2951), - [anon_sym_BANG] = ACTIONS(2951), - [anon_sym_TILDE] = ACTIONS(2953), - [anon_sym_PLUS_PLUS] = ACTIONS(2953), - [anon_sym_DASH_DASH] = ACTIONS(2953), - [anon_sym_true] = ACTIONS(2951), - [anon_sym_false] = ACTIONS(2951), - [anon_sym_PLUS] = ACTIONS(2951), - [anon_sym_DASH] = ACTIONS(2951), - [anon_sym_STAR] = ACTIONS(2953), - [anon_sym_SLASH] = ACTIONS(2955), - [anon_sym_PERCENT] = ACTIONS(2957), - [anon_sym_CARET] = ACTIONS(2953), - [anon_sym_PIPE] = ACTIONS(2955), - [anon_sym_AMP] = ACTIONS(2951), - [anon_sym_LT_LT] = ACTIONS(2957), - [anon_sym_GT_GT] = ACTIONS(2955), - [anon_sym_GT_GT_GT] = ACTIONS(2957), - [anon_sym_EQ_EQ] = ACTIONS(2957), - [anon_sym_BANG_EQ] = ACTIONS(2957), - [anon_sym_GT_EQ] = ACTIONS(2957), - [anon_sym_LT_EQ] = ACTIONS(2957), - [anon_sym_this] = ACTIONS(2951), - [anon_sym_DOT] = ACTIONS(2955), - [anon_sym_scoped] = ACTIONS(2951), - [anon_sym_base] = ACTIONS(2951), - [anon_sym_var] = ACTIONS(2951), - [sym_predefined_type] = ACTIONS(2951), - [anon_sym_break] = ACTIONS(2951), - [anon_sym_unchecked] = ACTIONS(2951), - [anon_sym_continue] = ACTIONS(2951), - [anon_sym_do] = ACTIONS(2951), - [anon_sym_while] = ACTIONS(2951), - [anon_sym_for] = ACTIONS(2951), - [anon_sym_lock] = ACTIONS(2951), - [anon_sym_yield] = ACTIONS(2951), - [anon_sym_switch] = ACTIONS(2951), - [anon_sym_case] = ACTIONS(2951), - [anon_sym_default] = ACTIONS(2951), - [anon_sym_throw] = ACTIONS(2951), - [anon_sym_try] = ACTIONS(2951), - [anon_sym_when] = ACTIONS(2951), - [anon_sym_await] = ACTIONS(2951), - [anon_sym_foreach] = ACTIONS(2951), - [anon_sym_goto] = ACTIONS(2951), - [anon_sym_if] = ACTIONS(2951), - [anon_sym_else] = ACTIONS(2951), - [anon_sym_DOT_DOT] = ACTIONS(2953), - [anon_sym_AMP_AMP] = ACTIONS(2957), - [anon_sym_PIPE_PIPE] = ACTIONS(2957), - [anon_sym_QMARK_QMARK] = ACTIONS(2957), - [anon_sym_from] = ACTIONS(2951), - [anon_sym_into] = ACTIONS(2951), - [anon_sym_join] = ACTIONS(2951), - [anon_sym_on] = ACTIONS(2951), - [anon_sym_equals] = ACTIONS(2951), - [anon_sym_let] = ACTIONS(2951), - [anon_sym_orderby] = ACTIONS(2951), - [anon_sym_ascending] = ACTIONS(2951), - [anon_sym_descending] = ACTIONS(2951), - [anon_sym_group] = ACTIONS(2951), - [anon_sym_by] = ACTIONS(2951), - [anon_sym_select] = ACTIONS(2951), - [anon_sym_as] = ACTIONS(2955), - [anon_sym_is] = ACTIONS(2955), - [anon_sym_DASH_GT] = ACTIONS(2957), - [anon_sym_stackalloc] = ACTIONS(2951), - [anon_sym_with] = ACTIONS(2955), - [anon_sym_sizeof] = ACTIONS(2951), - [anon_sym_typeof] = ACTIONS(2951), - [anon_sym___makeref] = ACTIONS(2951), - [anon_sym___reftype] = ACTIONS(2951), - [anon_sym___refvalue] = ACTIONS(2951), - [sym_null_literal] = ACTIONS(2951), - [anon_sym_SQUOTE] = ACTIONS(2953), - [sym_integer_literal] = ACTIONS(2951), - [sym_real_literal] = ACTIONS(2953), - [anon_sym_DQUOTE] = ACTIONS(2953), - [sym_verbatim_string_literal] = ACTIONS(2953), - [aux_sym_preproc_if_token1] = ACTIONS(2953), + [1936] = { + [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), + [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_when] = 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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -363919,139 +367789,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(2953), - [sym_interpolation_verbatim_start] = ACTIONS(2953), - [sym_interpolation_raw_start] = ACTIONS(2953), - [sym_raw_string_start] = ACTIONS(2953), + [sym_interpolation_regular_start] = ACTIONS(3167), + [sym_interpolation_verbatim_start] = ACTIONS(3167), + [sym_interpolation_raw_start] = ACTIONS(3167), + [sym_raw_string_start] = ACTIONS(3167), }, - [1907] = { - [sym_using_directive] = STATE(2783), - [sym_attribute_list] = STATE(2855), - [sym__attribute_list] = STATE(2990), - [sym_namespace_declaration] = STATE(2783), - [sym_class_declaration] = STATE(2783), - [sym__class_declaration_initializer] = STATE(7687), - [sym_struct_declaration] = STATE(2783), - [sym__struct_declaration_initializer] = STATE(7229), - [sym_enum_declaration] = STATE(2783), - [sym_interface_declaration] = STATE(2783), - [sym__interface_declaration_initializer] = STATE(7040), - [sym_delegate_declaration] = STATE(2783), - [sym__delegate_declaration_initializer] = STATE(6693), - [sym_record_declaration] = STATE(2783), - [sym__record_declaration_initializer] = STATE(6732), - [sym_modifier] = STATE(3130), - [sym_operator_declaration] = STATE(2783), - [sym_conversion_operator_declaration] = STATE(2783), - [sym_declaration] = STATE(2784), - [sym_field_declaration] = STATE(2783), - [sym_constructor_declaration] = STATE(2783), - [sym__constructor_declaration_initializer] = STATE(6456), - [sym_destructor_declaration] = STATE(2783), - [sym_method_declaration] = STATE(2783), - [sym_event_declaration] = STATE(2783), - [sym_event_field_declaration] = STATE(2783), - [sym_indexer_declaration] = STATE(2783), - [sym_property_declaration] = STATE(2783), - [sym_variable_declaration] = STATE(7612), - [sym__name] = STATE(4390), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(4096), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(4109), - [sym_type] = STATE(5434), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_identifier] = STATE(5713), - [sym__reserved_identifier] = STATE(3691), - [sym_preproc_if] = STATE(2783), - [sym_preproc_else] = STATE(7422), - [sym_preproc_elif] = STATE(7422), - [sym_preproc_if_in_attribute_list] = STATE(2979), - [sym_preproc_else_in_attribute_list] = STATE(7359), - [sym_preproc_elif_in_attribute_list] = STATE(7359), - [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(2198), - [aux_sym__class_declaration_initializer_repeat2] = STATE(2278), - [aux_sym_declaration_list_repeat1] = STATE(1911), - [sym__identifier_token] = ACTIONS(2967), - [anon_sym_extern] = ACTIONS(2969), - [anon_sym_alias] = ACTIONS(2971), - [anon_sym_global] = ACTIONS(2973), - [anon_sym_using] = ACTIONS(2975), - [anon_sym_unsafe] = ACTIONS(65), - [anon_sym_static] = ACTIONS(65), - [anon_sym_LBRACK] = ACTIONS(2977), - [anon_sym_LPAREN] = ACTIONS(2979), - [anon_sym_event] = ACTIONS(2981), - [anon_sym_namespace] = ACTIONS(2983), - [anon_sym_class] = ACTIONS(49), - [anon_sym_ref] = ACTIONS(2985), - [anon_sym_struct] = ACTIONS(53), - [anon_sym_enum] = ACTIONS(2987), - [anon_sym_interface] = ACTIONS(59), - [anon_sym_delegate] = ACTIONS(2989), - [anon_sym_record] = ACTIONS(63), - [anon_sym_abstract] = ACTIONS(65), - [anon_sym_async] = ACTIONS(65), - [anon_sym_const] = ACTIONS(65), - [anon_sym_file] = ACTIONS(2991), - [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(2971), - [anon_sym_notnull] = ACTIONS(2971), - [anon_sym_unmanaged] = ACTIONS(2971), - [anon_sym_TILDE] = ACTIONS(2993), - [anon_sym_implicit] = ACTIONS(2995), - [anon_sym_explicit] = ACTIONS(2995), - [anon_sym_scoped] = ACTIONS(2997), - [anon_sym_var] = ACTIONS(2999), - [sym_predefined_type] = ACTIONS(3001), - [anon_sym_yield] = ACTIONS(2971), - [anon_sym_when] = ACTIONS(2971), - [anon_sym_from] = ACTIONS(2971), - [anon_sym_into] = ACTIONS(2971), - [anon_sym_join] = ACTIONS(2971), - [anon_sym_on] = ACTIONS(2971), - [anon_sym_equals] = ACTIONS(2971), - [anon_sym_let] = ACTIONS(2971), - [anon_sym_orderby] = ACTIONS(2971), - [anon_sym_ascending] = ACTIONS(2971), - [anon_sym_descending] = ACTIONS(2971), - [anon_sym_group] = ACTIONS(2971), - [anon_sym_by] = ACTIONS(2971), - [anon_sym_select] = ACTIONS(2971), - [aux_sym_preproc_if_token1] = ACTIONS(3003), - [aux_sym_preproc_if_token3] = ACTIONS(3005), - [aux_sym_preproc_else_token1] = ACTIONS(3007), - [aux_sym_preproc_elif_token1] = ACTIONS(3009), + [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(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), @@ -364062,135 +367918,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), }, - [1908] = { - [sym_using_directive] = STATE(2783), - [sym_attribute_list] = STATE(2859), - [sym__attribute_list] = STATE(2990), - [sym_namespace_declaration] = STATE(2783), - [sym_class_declaration] = STATE(2783), - [sym__class_declaration_initializer] = STATE(7687), - [sym_struct_declaration] = STATE(2783), - [sym__struct_declaration_initializer] = STATE(7229), - [sym_enum_declaration] = STATE(2783), - [sym_interface_declaration] = STATE(2783), - [sym__interface_declaration_initializer] = STATE(7040), - [sym_delegate_declaration] = STATE(2783), - [sym__delegate_declaration_initializer] = STATE(6693), - [sym_record_declaration] = STATE(2783), - [sym__record_declaration_initializer] = STATE(6732), - [sym_modifier] = STATE(3130), - [sym_operator_declaration] = STATE(2783), - [sym_conversion_operator_declaration] = STATE(2783), - [sym_declaration] = STATE(2784), - [sym_field_declaration] = STATE(2783), - [sym_constructor_declaration] = STATE(2783), - [sym__constructor_declaration_initializer] = STATE(6456), - [sym_destructor_declaration] = STATE(2783), - [sym_method_declaration] = STATE(2783), - [sym_event_declaration] = STATE(2783), - [sym_event_field_declaration] = STATE(2783), - [sym_indexer_declaration] = STATE(2783), - [sym_property_declaration] = STATE(2783), - [sym_variable_declaration] = STATE(7612), - [sym__name] = STATE(4390), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(4096), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(4109), - [sym_type] = STATE(5434), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_identifier] = STATE(5713), - [sym__reserved_identifier] = STATE(3691), - [sym_preproc_if] = STATE(2783), - [sym_preproc_else] = STATE(7604), - [sym_preproc_elif] = STATE(7604), - [sym_preproc_if_in_attribute_list] = STATE(2979), - [sym_preproc_else_in_attribute_list] = STATE(7760), - [sym_preproc_elif_in_attribute_list] = STATE(7760), - [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(2198), - [aux_sym__class_declaration_initializer_repeat2] = STATE(2278), - [aux_sym_declaration_list_repeat1] = STATE(1910), - [sym__identifier_token] = ACTIONS(2967), - [anon_sym_extern] = ACTIONS(2969), - [anon_sym_alias] = ACTIONS(2971), - [anon_sym_global] = ACTIONS(2973), - [anon_sym_using] = ACTIONS(2975), - [anon_sym_unsafe] = ACTIONS(65), - [anon_sym_static] = ACTIONS(65), - [anon_sym_LBRACK] = ACTIONS(2977), - [anon_sym_LPAREN] = ACTIONS(2979), - [anon_sym_event] = ACTIONS(2981), - [anon_sym_namespace] = ACTIONS(2983), - [anon_sym_class] = ACTIONS(49), - [anon_sym_ref] = ACTIONS(2985), - [anon_sym_struct] = ACTIONS(53), - [anon_sym_enum] = ACTIONS(2987), - [anon_sym_interface] = ACTIONS(59), - [anon_sym_delegate] = ACTIONS(2989), - [anon_sym_record] = ACTIONS(63), - [anon_sym_abstract] = ACTIONS(65), - [anon_sym_async] = ACTIONS(65), - [anon_sym_const] = ACTIONS(65), - [anon_sym_file] = ACTIONS(2991), - [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(2971), - [anon_sym_notnull] = ACTIONS(2971), - [anon_sym_unmanaged] = ACTIONS(2971), - [anon_sym_TILDE] = ACTIONS(2993), - [anon_sym_implicit] = ACTIONS(2995), - [anon_sym_explicit] = ACTIONS(2995), - [anon_sym_scoped] = ACTIONS(2997), - [anon_sym_var] = ACTIONS(2999), - [sym_predefined_type] = ACTIONS(3001), - [anon_sym_yield] = ACTIONS(2971), - [anon_sym_when] = ACTIONS(2971), - [anon_sym_from] = ACTIONS(2971), - [anon_sym_into] = ACTIONS(2971), - [anon_sym_join] = ACTIONS(2971), - [anon_sym_on] = ACTIONS(2971), - [anon_sym_equals] = ACTIONS(2971), - [anon_sym_let] = ACTIONS(2971), - [anon_sym_orderby] = ACTIONS(2971), - [anon_sym_ascending] = ACTIONS(2971), - [anon_sym_descending] = ACTIONS(2971), - [anon_sym_group] = ACTIONS(2971), - [anon_sym_by] = ACTIONS(2971), - [anon_sym_select] = ACTIONS(2971), - [aux_sym_preproc_if_token1] = ACTIONS(3003), - [aux_sym_preproc_if_token3] = ACTIONS(3011), - [aux_sym_preproc_else_token1] = ACTIONS(3007), - [aux_sym_preproc_elif_token1] = ACTIONS(3009), + [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(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), @@ -364201,133 +368047,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(3175), + [sym_interpolation_verbatim_start] = ACTIONS(3175), + [sym_interpolation_raw_start] = ACTIONS(3175), + [sym_raw_string_start] = ACTIONS(3175), }, - [1909] = { - [sym_using_directive] = STATE(2783), - [sym_attribute_list] = STATE(2979), - [sym__attribute_list] = STATE(2990), - [sym_namespace_declaration] = STATE(2783), - [sym_class_declaration] = STATE(2783), - [sym__class_declaration_initializer] = STATE(7687), - [sym_struct_declaration] = STATE(2783), - [sym__struct_declaration_initializer] = STATE(7229), - [sym_enum_declaration] = STATE(2783), - [sym_interface_declaration] = STATE(2783), - [sym__interface_declaration_initializer] = STATE(7040), - [sym_delegate_declaration] = STATE(2783), - [sym__delegate_declaration_initializer] = STATE(6693), - [sym_record_declaration] = STATE(2783), - [sym__record_declaration_initializer] = STATE(6732), - [sym_modifier] = STATE(3130), - [sym_operator_declaration] = STATE(2783), - [sym_conversion_operator_declaration] = STATE(2783), - [sym_declaration] = STATE(2784), - [sym_field_declaration] = STATE(2783), - [sym_constructor_declaration] = STATE(2783), - [sym__constructor_declaration_initializer] = STATE(6456), - [sym_destructor_declaration] = STATE(2783), - [sym_method_declaration] = STATE(2783), - [sym_event_declaration] = STATE(2783), - [sym_event_field_declaration] = STATE(2783), - [sym_indexer_declaration] = STATE(2783), - [sym_property_declaration] = STATE(2783), - [sym_variable_declaration] = STATE(7612), - [sym__name] = STATE(4390), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(4096), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(4109), - [sym_type] = STATE(5434), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_identifier] = STATE(5713), - [sym__reserved_identifier] = STATE(3691), - [sym_preproc_if] = STATE(2783), - [sym_preproc_else] = STATE(7422), - [sym_preproc_elif] = STATE(7422), - [sym_preproc_if_in_attribute_list] = STATE(2979), - [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(2198), - [aux_sym__class_declaration_initializer_repeat2] = STATE(2278), - [aux_sym_declaration_list_repeat1] = STATE(1911), - [sym__identifier_token] = ACTIONS(2967), - [anon_sym_extern] = ACTIONS(2969), - [anon_sym_alias] = ACTIONS(2971), - [anon_sym_global] = ACTIONS(2973), - [anon_sym_using] = ACTIONS(2975), - [anon_sym_unsafe] = ACTIONS(65), - [anon_sym_static] = ACTIONS(65), - [anon_sym_LBRACK] = ACTIONS(2977), - [anon_sym_LPAREN] = ACTIONS(2979), - [anon_sym_event] = ACTIONS(2981), - [anon_sym_namespace] = ACTIONS(2983), - [anon_sym_class] = ACTIONS(49), - [anon_sym_ref] = ACTIONS(2985), - [anon_sym_struct] = ACTIONS(53), - [anon_sym_enum] = ACTIONS(2987), - [anon_sym_interface] = ACTIONS(59), - [anon_sym_delegate] = ACTIONS(2989), - [anon_sym_record] = ACTIONS(63), - [anon_sym_abstract] = ACTIONS(65), - [anon_sym_async] = ACTIONS(65), - [anon_sym_const] = ACTIONS(65), - [anon_sym_file] = ACTIONS(2991), - [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(2971), - [anon_sym_notnull] = ACTIONS(2971), - [anon_sym_unmanaged] = ACTIONS(2971), - [anon_sym_TILDE] = ACTIONS(2993), - [anon_sym_implicit] = ACTIONS(2995), - [anon_sym_explicit] = ACTIONS(2995), - [anon_sym_scoped] = ACTIONS(2997), - [anon_sym_var] = ACTIONS(2999), - [sym_predefined_type] = ACTIONS(3001), - [anon_sym_yield] = ACTIONS(2971), - [anon_sym_when] = ACTIONS(2971), - [anon_sym_from] = ACTIONS(2971), - [anon_sym_into] = ACTIONS(2971), - [anon_sym_join] = ACTIONS(2971), - [anon_sym_on] = ACTIONS(2971), - [anon_sym_equals] = ACTIONS(2971), - [anon_sym_let] = ACTIONS(2971), - [anon_sym_orderby] = ACTIONS(2971), - [anon_sym_ascending] = ACTIONS(2971), - [anon_sym_descending] = ACTIONS(2971), - [anon_sym_group] = ACTIONS(2971), - [anon_sym_by] = ACTIONS(2971), - [anon_sym_select] = ACTIONS(2971), - [aux_sym_preproc_if_token1] = ACTIONS(3003), - [aux_sym_preproc_if_token3] = ACTIONS(3005), - [aux_sym_preproc_else_token1] = ACTIONS(3013), - [aux_sym_preproc_elif_token1] = ACTIONS(3015), + [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(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), @@ -364338,133 +368176,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(3179), + [sym_interpolation_verbatim_start] = ACTIONS(3179), + [sym_interpolation_raw_start] = ACTIONS(3179), + [sym_raw_string_start] = ACTIONS(3179), }, - [1910] = { - [sym_using_directive] = STATE(2783), - [sym_attribute_list] = STATE(2979), - [sym__attribute_list] = STATE(2990), - [sym_namespace_declaration] = STATE(2783), - [sym_class_declaration] = STATE(2783), - [sym__class_declaration_initializer] = STATE(7687), - [sym_struct_declaration] = STATE(2783), - [sym__struct_declaration_initializer] = STATE(7229), - [sym_enum_declaration] = STATE(2783), - [sym_interface_declaration] = STATE(2783), - [sym__interface_declaration_initializer] = STATE(7040), - [sym_delegate_declaration] = STATE(2783), - [sym__delegate_declaration_initializer] = STATE(6693), - [sym_record_declaration] = STATE(2783), - [sym__record_declaration_initializer] = STATE(6732), - [sym_modifier] = STATE(3130), - [sym_operator_declaration] = STATE(2783), - [sym_conversion_operator_declaration] = STATE(2783), - [sym_declaration] = STATE(2784), - [sym_field_declaration] = STATE(2783), - [sym_constructor_declaration] = STATE(2783), - [sym__constructor_declaration_initializer] = STATE(6456), - [sym_destructor_declaration] = STATE(2783), - [sym_method_declaration] = STATE(2783), - [sym_event_declaration] = STATE(2783), - [sym_event_field_declaration] = STATE(2783), - [sym_indexer_declaration] = STATE(2783), - [sym_property_declaration] = STATE(2783), - [sym_variable_declaration] = STATE(7612), - [sym__name] = STATE(4390), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(4096), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(4109), - [sym_type] = STATE(5434), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_identifier] = STATE(5713), - [sym__reserved_identifier] = STATE(3691), - [sym_preproc_if] = STATE(2783), - [sym_preproc_else] = STATE(7417), - [sym_preproc_elif] = STATE(7417), - [sym_preproc_if_in_attribute_list] = STATE(2979), - [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(2198), - [aux_sym__class_declaration_initializer_repeat2] = STATE(2278), - [aux_sym_declaration_list_repeat1] = STATE(1912), - [sym__identifier_token] = ACTIONS(2967), - [anon_sym_extern] = ACTIONS(2969), - [anon_sym_alias] = ACTIONS(2971), - [anon_sym_global] = ACTIONS(2973), - [anon_sym_using] = ACTIONS(2975), - [anon_sym_unsafe] = ACTIONS(65), - [anon_sym_static] = ACTIONS(65), - [anon_sym_LBRACK] = ACTIONS(2977), - [anon_sym_LPAREN] = ACTIONS(2979), - [anon_sym_event] = ACTIONS(2981), - [anon_sym_namespace] = ACTIONS(2983), - [anon_sym_class] = ACTIONS(49), - [anon_sym_ref] = ACTIONS(2985), - [anon_sym_struct] = ACTIONS(53), - [anon_sym_enum] = ACTIONS(2987), - [anon_sym_interface] = ACTIONS(59), - [anon_sym_delegate] = ACTIONS(2989), - [anon_sym_record] = ACTIONS(63), - [anon_sym_abstract] = ACTIONS(65), - [anon_sym_async] = ACTIONS(65), - [anon_sym_const] = ACTIONS(65), - [anon_sym_file] = ACTIONS(2991), - [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(2971), - [anon_sym_notnull] = ACTIONS(2971), - [anon_sym_unmanaged] = ACTIONS(2971), - [anon_sym_TILDE] = ACTIONS(2993), - [anon_sym_implicit] = ACTIONS(2995), - [anon_sym_explicit] = ACTIONS(2995), - [anon_sym_scoped] = ACTIONS(2997), - [anon_sym_var] = ACTIONS(2999), - [sym_predefined_type] = ACTIONS(3001), - [anon_sym_yield] = ACTIONS(2971), - [anon_sym_when] = ACTIONS(2971), - [anon_sym_from] = ACTIONS(2971), - [anon_sym_into] = ACTIONS(2971), - [anon_sym_join] = ACTIONS(2971), - [anon_sym_on] = ACTIONS(2971), - [anon_sym_equals] = ACTIONS(2971), - [anon_sym_let] = ACTIONS(2971), - [anon_sym_orderby] = ACTIONS(2971), - [anon_sym_ascending] = ACTIONS(2971), - [anon_sym_descending] = ACTIONS(2971), - [anon_sym_group] = ACTIONS(2971), - [anon_sym_by] = ACTIONS(2971), - [anon_sym_select] = ACTIONS(2971), - [aux_sym_preproc_if_token1] = ACTIONS(3003), - [aux_sym_preproc_if_token3] = ACTIONS(3017), - [aux_sym_preproc_else_token1] = ACTIONS(3013), - [aux_sym_preproc_elif_token1] = ACTIONS(3015), + [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(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), @@ -364475,133 +368305,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(3183), + [sym_interpolation_verbatim_start] = ACTIONS(3183), + [sym_interpolation_raw_start] = ACTIONS(3183), + [sym_raw_string_start] = ACTIONS(3183), }, - [1911] = { - [sym_using_directive] = STATE(2783), - [sym_attribute_list] = STATE(2979), - [sym__attribute_list] = STATE(2990), - [sym_namespace_declaration] = STATE(2783), - [sym_class_declaration] = STATE(2783), - [sym__class_declaration_initializer] = STATE(7687), - [sym_struct_declaration] = STATE(2783), - [sym__struct_declaration_initializer] = STATE(7229), - [sym_enum_declaration] = STATE(2783), - [sym_interface_declaration] = STATE(2783), - [sym__interface_declaration_initializer] = STATE(7040), - [sym_delegate_declaration] = STATE(2783), - [sym__delegate_declaration_initializer] = STATE(6693), - [sym_record_declaration] = STATE(2783), - [sym__record_declaration_initializer] = STATE(6732), - [sym_modifier] = STATE(3130), - [sym_operator_declaration] = STATE(2783), - [sym_conversion_operator_declaration] = STATE(2783), - [sym_declaration] = STATE(2784), - [sym_field_declaration] = STATE(2783), - [sym_constructor_declaration] = STATE(2783), - [sym__constructor_declaration_initializer] = STATE(6456), - [sym_destructor_declaration] = STATE(2783), - [sym_method_declaration] = STATE(2783), - [sym_event_declaration] = STATE(2783), - [sym_event_field_declaration] = STATE(2783), - [sym_indexer_declaration] = STATE(2783), - [sym_property_declaration] = STATE(2783), - [sym_variable_declaration] = STATE(7612), - [sym__name] = STATE(4390), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(4096), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(4109), - [sym_type] = STATE(5434), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_identifier] = STATE(5713), - [sym__reserved_identifier] = STATE(3691), - [sym_preproc_if] = STATE(2783), - [sym_preproc_else] = STATE(7747), - [sym_preproc_elif] = STATE(7747), - [sym_preproc_if_in_attribute_list] = STATE(2979), - [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(2198), - [aux_sym__class_declaration_initializer_repeat2] = STATE(2278), - [aux_sym_declaration_list_repeat1] = STATE(1912), - [sym__identifier_token] = ACTIONS(2967), - [anon_sym_extern] = ACTIONS(2969), - [anon_sym_alias] = ACTIONS(2971), - [anon_sym_global] = ACTIONS(2973), - [anon_sym_using] = ACTIONS(2975), - [anon_sym_unsafe] = ACTIONS(65), - [anon_sym_static] = ACTIONS(65), - [anon_sym_LBRACK] = ACTIONS(2977), - [anon_sym_LPAREN] = ACTIONS(2979), - [anon_sym_event] = ACTIONS(2981), - [anon_sym_namespace] = ACTIONS(2983), - [anon_sym_class] = ACTIONS(49), - [anon_sym_ref] = ACTIONS(2985), - [anon_sym_struct] = ACTIONS(53), - [anon_sym_enum] = ACTIONS(2987), - [anon_sym_interface] = ACTIONS(59), - [anon_sym_delegate] = ACTIONS(2989), - [anon_sym_record] = ACTIONS(63), - [anon_sym_abstract] = ACTIONS(65), - [anon_sym_async] = ACTIONS(65), - [anon_sym_const] = ACTIONS(65), - [anon_sym_file] = ACTIONS(2991), - [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(2971), - [anon_sym_notnull] = ACTIONS(2971), - [anon_sym_unmanaged] = ACTIONS(2971), - [anon_sym_TILDE] = ACTIONS(2993), - [anon_sym_implicit] = ACTIONS(2995), - [anon_sym_explicit] = ACTIONS(2995), - [anon_sym_scoped] = ACTIONS(2997), - [anon_sym_var] = ACTIONS(2999), - [sym_predefined_type] = ACTIONS(3001), - [anon_sym_yield] = ACTIONS(2971), - [anon_sym_when] = ACTIONS(2971), - [anon_sym_from] = ACTIONS(2971), - [anon_sym_into] = ACTIONS(2971), - [anon_sym_join] = ACTIONS(2971), - [anon_sym_on] = ACTIONS(2971), - [anon_sym_equals] = ACTIONS(2971), - [anon_sym_let] = ACTIONS(2971), - [anon_sym_orderby] = ACTIONS(2971), - [anon_sym_ascending] = ACTIONS(2971), - [anon_sym_descending] = ACTIONS(2971), - [anon_sym_group] = ACTIONS(2971), - [anon_sym_by] = ACTIONS(2971), - [anon_sym_select] = ACTIONS(2971), - [aux_sym_preproc_if_token1] = ACTIONS(3003), - [aux_sym_preproc_if_token3] = ACTIONS(3019), - [aux_sym_preproc_else_token1] = ACTIONS(3013), - [aux_sym_preproc_elif_token1] = ACTIONS(3015), + [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(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), @@ -364612,132 +368434,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(3187), + [sym_interpolation_verbatim_start] = ACTIONS(3187), + [sym_interpolation_raw_start] = ACTIONS(3187), + [sym_raw_string_start] = ACTIONS(3187), }, - [1912] = { - [sym_using_directive] = STATE(2783), - [sym_attribute_list] = STATE(2979), - [sym__attribute_list] = STATE(2990), - [sym_namespace_declaration] = STATE(2783), - [sym_class_declaration] = STATE(2783), - [sym__class_declaration_initializer] = STATE(7687), - [sym_struct_declaration] = STATE(2783), - [sym__struct_declaration_initializer] = STATE(7229), - [sym_enum_declaration] = STATE(2783), - [sym_interface_declaration] = STATE(2783), - [sym__interface_declaration_initializer] = STATE(7040), - [sym_delegate_declaration] = STATE(2783), - [sym__delegate_declaration_initializer] = STATE(6693), - [sym_record_declaration] = STATE(2783), - [sym__record_declaration_initializer] = STATE(6732), - [sym_modifier] = STATE(3130), - [sym_operator_declaration] = STATE(2783), - [sym_conversion_operator_declaration] = STATE(2783), - [sym_declaration] = STATE(2784), - [sym_field_declaration] = STATE(2783), - [sym_constructor_declaration] = STATE(2783), - [sym__constructor_declaration_initializer] = STATE(6456), - [sym_destructor_declaration] = STATE(2783), - [sym_method_declaration] = STATE(2783), - [sym_event_declaration] = STATE(2783), - [sym_event_field_declaration] = STATE(2783), - [sym_indexer_declaration] = STATE(2783), - [sym_property_declaration] = STATE(2783), - [sym_variable_declaration] = STATE(7612), - [sym__name] = STATE(4390), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(4096), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(4109), - [sym_type] = STATE(5434), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_identifier] = STATE(5713), - [sym__reserved_identifier] = STATE(3691), - [sym_preproc_if] = STATE(2783), - [sym_preproc_if_in_attribute_list] = STATE(2979), - [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(2198), - [aux_sym__class_declaration_initializer_repeat2] = STATE(2278), - [aux_sym_declaration_list_repeat1] = STATE(1912), - [sym__identifier_token] = ACTIONS(3021), - [anon_sym_extern] = ACTIONS(3024), - [anon_sym_alias] = ACTIONS(3027), - [anon_sym_global] = ACTIONS(3030), - [anon_sym_using] = ACTIONS(3033), - [anon_sym_unsafe] = ACTIONS(3036), - [anon_sym_static] = ACTIONS(3036), - [anon_sym_LBRACK] = ACTIONS(3039), - [anon_sym_LPAREN] = ACTIONS(3042), - [anon_sym_event] = ACTIONS(3045), - [anon_sym_namespace] = ACTIONS(3048), - [anon_sym_class] = ACTIONS(3051), - [anon_sym_ref] = ACTIONS(3054), - [anon_sym_struct] = ACTIONS(3057), - [anon_sym_enum] = ACTIONS(3060), - [anon_sym_RBRACE] = ACTIONS(3063), - [anon_sym_interface] = ACTIONS(3065), - [anon_sym_delegate] = ACTIONS(3068), - [anon_sym_record] = ACTIONS(3071), - [anon_sym_abstract] = ACTIONS(3036), - [anon_sym_async] = ACTIONS(3036), - [anon_sym_const] = ACTIONS(3036), - [anon_sym_file] = ACTIONS(3074), - [anon_sym_fixed] = ACTIONS(3036), - [anon_sym_internal] = ACTIONS(3036), - [anon_sym_new] = ACTIONS(3036), - [anon_sym_override] = ACTIONS(3036), - [anon_sym_partial] = ACTIONS(3036), - [anon_sym_private] = ACTIONS(3036), - [anon_sym_protected] = ACTIONS(3036), - [anon_sym_public] = ACTIONS(3036), - [anon_sym_readonly] = ACTIONS(3036), - [anon_sym_required] = ACTIONS(3036), - [anon_sym_sealed] = ACTIONS(3036), - [anon_sym_virtual] = ACTIONS(3036), - [anon_sym_volatile] = ACTIONS(3036), - [anon_sym_where] = ACTIONS(3027), - [anon_sym_notnull] = ACTIONS(3027), - [anon_sym_unmanaged] = ACTIONS(3027), - [anon_sym_TILDE] = ACTIONS(3077), - [anon_sym_implicit] = ACTIONS(3080), - [anon_sym_explicit] = ACTIONS(3080), - [anon_sym_scoped] = ACTIONS(3083), - [anon_sym_var] = ACTIONS(3086), - [sym_predefined_type] = ACTIONS(3089), - [anon_sym_yield] = ACTIONS(3027), - [anon_sym_when] = ACTIONS(3027), - [anon_sym_from] = ACTIONS(3027), - [anon_sym_into] = ACTIONS(3027), - [anon_sym_join] = ACTIONS(3027), - [anon_sym_on] = ACTIONS(3027), - [anon_sym_equals] = ACTIONS(3027), - [anon_sym_let] = ACTIONS(3027), - [anon_sym_orderby] = ACTIONS(3027), - [anon_sym_ascending] = ACTIONS(3027), - [anon_sym_descending] = ACTIONS(3027), - [anon_sym_group] = ACTIONS(3027), - [anon_sym_by] = ACTIONS(3027), - [anon_sym_select] = ACTIONS(3027), - [aux_sym_preproc_if_token1] = ACTIONS(3092), - [aux_sym_preproc_if_token3] = ACTIONS(3063), - [aux_sym_preproc_else_token1] = ACTIONS(3063), - [aux_sym_preproc_elif_token1] = ACTIONS(3063), + [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(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), @@ -364748,260 +368563,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(3191), + [sym_interpolation_verbatim_start] = ACTIONS(3191), + [sym_interpolation_raw_start] = ACTIONS(3191), + [sym_raw_string_start] = ACTIONS(3191), }, - [1913] = { - [sym_catch_clause] = STATE(1924), - [sym_finally_clause] = STATE(1945), - [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_try_statement_repeat1] = STATE(1916), - [sym__identifier_token] = ACTIONS(3095), - [anon_sym_extern] = ACTIONS(3095), - [anon_sym_alias] = ACTIONS(3095), - [anon_sym_SEMI] = ACTIONS(3097), - [anon_sym_global] = ACTIONS(3095), - [anon_sym_using] = ACTIONS(3095), - [anon_sym_unsafe] = ACTIONS(3095), - [anon_sym_static] = ACTIONS(3095), - [anon_sym_LBRACK] = ACTIONS(3097), - [anon_sym_LPAREN] = ACTIONS(3097), - [anon_sym_return] = ACTIONS(3095), - [anon_sym_namespace] = ACTIONS(3095), - [anon_sym_class] = ACTIONS(3095), - [anon_sym_ref] = ACTIONS(3095), - [anon_sym_struct] = ACTIONS(3095), - [anon_sym_enum] = ACTIONS(3095), - [anon_sym_LBRACE] = ACTIONS(3097), - [anon_sym_interface] = ACTIONS(3095), - [anon_sym_delegate] = ACTIONS(3095), - [anon_sym_record] = ACTIONS(3095), - [anon_sym_abstract] = ACTIONS(3095), - [anon_sym_async] = ACTIONS(3095), - [anon_sym_const] = ACTIONS(3095), - [anon_sym_file] = ACTIONS(3095), - [anon_sym_fixed] = ACTIONS(3095), - [anon_sym_internal] = ACTIONS(3095), - [anon_sym_new] = ACTIONS(3095), - [anon_sym_override] = ACTIONS(3095), - [anon_sym_partial] = ACTIONS(3095), - [anon_sym_private] = ACTIONS(3095), - [anon_sym_protected] = ACTIONS(3095), - [anon_sym_public] = ACTIONS(3095), - [anon_sym_readonly] = ACTIONS(3095), - [anon_sym_required] = ACTIONS(3095), - [anon_sym_sealed] = ACTIONS(3095), - [anon_sym_virtual] = ACTIONS(3095), - [anon_sym_volatile] = ACTIONS(3095), - [anon_sym_where] = ACTIONS(3095), - [anon_sym_notnull] = ACTIONS(3095), - [anon_sym_unmanaged] = ACTIONS(3095), - [anon_sym_checked] = ACTIONS(3095), - [anon_sym_BANG] = ACTIONS(3097), - [anon_sym_TILDE] = ACTIONS(3097), - [anon_sym_PLUS_PLUS] = ACTIONS(3097), - [anon_sym_DASH_DASH] = ACTIONS(3097), - [anon_sym_true] = ACTIONS(3095), - [anon_sym_false] = ACTIONS(3095), - [anon_sym_PLUS] = ACTIONS(3095), - [anon_sym_DASH] = ACTIONS(3095), - [anon_sym_STAR] = ACTIONS(3097), - [anon_sym_CARET] = ACTIONS(3097), - [anon_sym_AMP] = ACTIONS(3097), - [anon_sym_this] = ACTIONS(3095), - [anon_sym_scoped] = ACTIONS(3095), - [anon_sym_base] = ACTIONS(3095), - [anon_sym_var] = ACTIONS(3095), - [sym_predefined_type] = ACTIONS(3095), - [anon_sym_break] = ACTIONS(3095), - [anon_sym_unchecked] = ACTIONS(3095), - [anon_sym_continue] = ACTIONS(3095), - [anon_sym_do] = ACTIONS(3095), - [anon_sym_while] = ACTIONS(3095), - [anon_sym_for] = ACTIONS(3095), - [anon_sym_lock] = ACTIONS(3095), - [anon_sym_yield] = ACTIONS(3095), - [anon_sym_switch] = ACTIONS(3095), - [anon_sym_default] = ACTIONS(3095), - [anon_sym_throw] = ACTIONS(3095), - [anon_sym_try] = ACTIONS(3095), - [anon_sym_catch] = ACTIONS(3099), - [anon_sym_when] = ACTIONS(3095), - [anon_sym_finally] = ACTIONS(3101), - [anon_sym_await] = ACTIONS(3095), - [anon_sym_foreach] = ACTIONS(3095), - [anon_sym_goto] = ACTIONS(3095), - [anon_sym_if] = ACTIONS(3095), - [anon_sym_else] = ACTIONS(3095), - [anon_sym_DOT_DOT] = ACTIONS(3097), - [anon_sym_from] = ACTIONS(3095), - [anon_sym_into] = ACTIONS(3095), - [anon_sym_join] = ACTIONS(3095), - [anon_sym_on] = ACTIONS(3095), - [anon_sym_equals] = ACTIONS(3095), - [anon_sym_let] = ACTIONS(3095), - [anon_sym_orderby] = ACTIONS(3095), - [anon_sym_ascending] = ACTIONS(3095), - [anon_sym_descending] = ACTIONS(3095), - [anon_sym_group] = ACTIONS(3095), - [anon_sym_by] = ACTIONS(3095), - [anon_sym_select] = ACTIONS(3095), - [anon_sym_stackalloc] = ACTIONS(3095), - [anon_sym_sizeof] = ACTIONS(3095), - [anon_sym_typeof] = ACTIONS(3095), - [anon_sym___makeref] = ACTIONS(3095), - [anon_sym___reftype] = ACTIONS(3095), - [anon_sym___refvalue] = ACTIONS(3095), - [sym_null_literal] = ACTIONS(3095), - [anon_sym_SQUOTE] = ACTIONS(3097), - [sym_integer_literal] = ACTIONS(3095), - [sym_real_literal] = ACTIONS(3097), - [anon_sym_DQUOTE] = ACTIONS(3097), - [sym_verbatim_string_literal] = ACTIONS(3097), - [aux_sym_preproc_if_token1] = ACTIONS(3097), - [aux_sym_preproc_if_token3] = ACTIONS(3097), - [aux_sym_preproc_else_token1] = ACTIONS(3097), - [aux_sym_preproc_elif_token1] = ACTIONS(3097), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(3097), - [sym_interpolation_verbatim_start] = ACTIONS(3097), - [sym_interpolation_raw_start] = ACTIONS(3097), - [sym_raw_string_start] = ACTIONS(3097), - }, - [1914] = { - [sym_catch_clause] = STATE(1924), - [sym_finally_clause] = STATE(1934), - [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_try_statement_repeat1] = STATE(1913), - [sym__identifier_token] = ACTIONS(3103), - [anon_sym_extern] = ACTIONS(3103), - [anon_sym_alias] = ACTIONS(3103), - [anon_sym_SEMI] = ACTIONS(3105), - [anon_sym_global] = ACTIONS(3103), - [anon_sym_using] = ACTIONS(3103), - [anon_sym_unsafe] = ACTIONS(3103), - [anon_sym_static] = ACTIONS(3103), - [anon_sym_LBRACK] = ACTIONS(3105), - [anon_sym_LPAREN] = ACTIONS(3105), - [anon_sym_return] = ACTIONS(3103), - [anon_sym_namespace] = ACTIONS(3103), - [anon_sym_class] = ACTIONS(3103), - [anon_sym_ref] = ACTIONS(3103), - [anon_sym_struct] = ACTIONS(3103), - [anon_sym_enum] = ACTIONS(3103), - [anon_sym_LBRACE] = ACTIONS(3105), - [anon_sym_interface] = ACTIONS(3103), - [anon_sym_delegate] = ACTIONS(3103), - [anon_sym_record] = ACTIONS(3103), - [anon_sym_abstract] = ACTIONS(3103), - [anon_sym_async] = ACTIONS(3103), - [anon_sym_const] = ACTIONS(3103), - [anon_sym_file] = ACTIONS(3103), - [anon_sym_fixed] = ACTIONS(3103), - [anon_sym_internal] = ACTIONS(3103), - [anon_sym_new] = ACTIONS(3103), - [anon_sym_override] = ACTIONS(3103), - [anon_sym_partial] = ACTIONS(3103), - [anon_sym_private] = ACTIONS(3103), - [anon_sym_protected] = ACTIONS(3103), - [anon_sym_public] = ACTIONS(3103), - [anon_sym_readonly] = ACTIONS(3103), - [anon_sym_required] = ACTIONS(3103), - [anon_sym_sealed] = ACTIONS(3103), - [anon_sym_virtual] = ACTIONS(3103), - [anon_sym_volatile] = ACTIONS(3103), - [anon_sym_where] = ACTIONS(3103), - [anon_sym_notnull] = ACTIONS(3103), - [anon_sym_unmanaged] = ACTIONS(3103), - [anon_sym_checked] = ACTIONS(3103), - [anon_sym_BANG] = ACTIONS(3105), - [anon_sym_TILDE] = ACTIONS(3105), - [anon_sym_PLUS_PLUS] = ACTIONS(3105), - [anon_sym_DASH_DASH] = ACTIONS(3105), - [anon_sym_true] = ACTIONS(3103), - [anon_sym_false] = ACTIONS(3103), - [anon_sym_PLUS] = ACTIONS(3103), - [anon_sym_DASH] = ACTIONS(3103), - [anon_sym_STAR] = ACTIONS(3105), - [anon_sym_CARET] = ACTIONS(3105), - [anon_sym_AMP] = ACTIONS(3105), - [anon_sym_this] = ACTIONS(3103), - [anon_sym_scoped] = ACTIONS(3103), - [anon_sym_base] = ACTIONS(3103), - [anon_sym_var] = ACTIONS(3103), - [sym_predefined_type] = ACTIONS(3103), - [anon_sym_break] = ACTIONS(3103), - [anon_sym_unchecked] = ACTIONS(3103), - [anon_sym_continue] = ACTIONS(3103), - [anon_sym_do] = ACTIONS(3103), - [anon_sym_while] = ACTIONS(3103), - [anon_sym_for] = ACTIONS(3103), - [anon_sym_lock] = ACTIONS(3103), - [anon_sym_yield] = ACTIONS(3103), - [anon_sym_switch] = ACTIONS(3103), - [anon_sym_default] = ACTIONS(3103), - [anon_sym_throw] = ACTIONS(3103), - [anon_sym_try] = ACTIONS(3103), - [anon_sym_catch] = ACTIONS(3099), - [anon_sym_when] = ACTIONS(3103), - [anon_sym_finally] = ACTIONS(3101), - [anon_sym_await] = ACTIONS(3103), - [anon_sym_foreach] = ACTIONS(3103), - [anon_sym_goto] = ACTIONS(3103), - [anon_sym_if] = ACTIONS(3103), - [anon_sym_else] = ACTIONS(3103), - [anon_sym_DOT_DOT] = ACTIONS(3105), - [anon_sym_from] = ACTIONS(3103), - [anon_sym_into] = ACTIONS(3103), - [anon_sym_join] = ACTIONS(3103), - [anon_sym_on] = ACTIONS(3103), - [anon_sym_equals] = ACTIONS(3103), - [anon_sym_let] = ACTIONS(3103), - [anon_sym_orderby] = ACTIONS(3103), - [anon_sym_ascending] = ACTIONS(3103), - [anon_sym_descending] = ACTIONS(3103), - [anon_sym_group] = ACTIONS(3103), - [anon_sym_by] = ACTIONS(3103), - [anon_sym_select] = ACTIONS(3103), - [anon_sym_stackalloc] = ACTIONS(3103), - [anon_sym_sizeof] = ACTIONS(3103), - [anon_sym_typeof] = ACTIONS(3103), - [anon_sym___makeref] = ACTIONS(3103), - [anon_sym___reftype] = ACTIONS(3103), - [anon_sym___refvalue] = ACTIONS(3103), - [sym_null_literal] = ACTIONS(3103), - [anon_sym_SQUOTE] = ACTIONS(3105), - [sym_integer_literal] = ACTIONS(3103), - [sym_real_literal] = ACTIONS(3105), - [anon_sym_DQUOTE] = ACTIONS(3105), - [sym_verbatim_string_literal] = ACTIONS(3105), - [aux_sym_preproc_if_token1] = ACTIONS(3105), - [aux_sym_preproc_if_token3] = ACTIONS(3105), - [aux_sym_preproc_else_token1] = ACTIONS(3105), - [aux_sym_preproc_elif_token1] = ACTIONS(3105), + [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(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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -365012,133 +368692,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(3105), - [sym_interpolation_verbatim_start] = ACTIONS(3105), - [sym_interpolation_raw_start] = ACTIONS(3105), - [sym_raw_string_start] = ACTIONS(3105), - }, - [1915] = { - [sym_using_directive] = STATE(2783), - [sym_attribute_list] = STATE(2979), - [sym__attribute_list] = STATE(2990), - [sym_namespace_declaration] = STATE(2783), - [sym_class_declaration] = STATE(2783), - [sym__class_declaration_initializer] = STATE(7687), - [sym_struct_declaration] = STATE(2783), - [sym__struct_declaration_initializer] = STATE(7229), - [sym_enum_declaration] = STATE(2783), - [sym_interface_declaration] = STATE(2783), - [sym__interface_declaration_initializer] = STATE(7040), - [sym_delegate_declaration] = STATE(2783), - [sym__delegate_declaration_initializer] = STATE(6693), - [sym_record_declaration] = STATE(2783), - [sym__record_declaration_initializer] = STATE(6732), - [sym_modifier] = STATE(3130), - [sym_operator_declaration] = STATE(2783), - [sym_conversion_operator_declaration] = STATE(2783), - [sym_declaration] = STATE(2784), - [sym_field_declaration] = STATE(2783), - [sym_constructor_declaration] = STATE(2783), - [sym__constructor_declaration_initializer] = STATE(6456), - [sym_destructor_declaration] = STATE(2783), - [sym_method_declaration] = STATE(2783), - [sym_event_declaration] = STATE(2783), - [sym_event_field_declaration] = STATE(2783), - [sym_indexer_declaration] = STATE(2783), - [sym_property_declaration] = STATE(2783), - [sym_variable_declaration] = STATE(7612), - [sym__name] = STATE(4390), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(4096), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(4109), - [sym_type] = STATE(5434), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_identifier] = STATE(5713), - [sym__reserved_identifier] = STATE(3691), - [sym_preproc_if] = STATE(2783), - [sym_preproc_if_in_attribute_list] = STATE(2979), - [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), - [aux_sym__class_declaration_initializer_repeat1] = STATE(2198), - [aux_sym__class_declaration_initializer_repeat2] = STATE(2278), - [aux_sym_declaration_list_repeat1] = STATE(1920), - [sym__identifier_token] = ACTIONS(2967), - [anon_sym_extern] = ACTIONS(2969), - [anon_sym_alias] = ACTIONS(2971), - [anon_sym_global] = ACTIONS(2973), - [anon_sym_using] = ACTIONS(2975), - [anon_sym_unsafe] = ACTIONS(65), - [anon_sym_static] = ACTIONS(65), - [anon_sym_LBRACK] = ACTIONS(2977), - [anon_sym_LPAREN] = ACTIONS(2979), - [anon_sym_event] = ACTIONS(2981), - [anon_sym_namespace] = ACTIONS(2983), - [anon_sym_class] = ACTIONS(49), - [anon_sym_ref] = ACTIONS(2985), - [anon_sym_struct] = ACTIONS(53), - [anon_sym_enum] = ACTIONS(2987), - [anon_sym_interface] = ACTIONS(59), - [anon_sym_delegate] = ACTIONS(2989), - [anon_sym_record] = ACTIONS(63), - [anon_sym_abstract] = ACTIONS(65), - [anon_sym_async] = ACTIONS(65), - [anon_sym_const] = ACTIONS(65), - [anon_sym_file] = ACTIONS(2991), - [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(2971), - [anon_sym_notnull] = ACTIONS(2971), - [anon_sym_unmanaged] = ACTIONS(2971), - [anon_sym_TILDE] = ACTIONS(2993), - [anon_sym_implicit] = ACTIONS(2995), - [anon_sym_explicit] = ACTIONS(2995), - [anon_sym_scoped] = ACTIONS(2997), - [anon_sym_var] = ACTIONS(2999), - [sym_predefined_type] = ACTIONS(3001), - [anon_sym_yield] = ACTIONS(2971), - [anon_sym_when] = ACTIONS(2971), - [anon_sym_from] = ACTIONS(2971), - [anon_sym_into] = ACTIONS(2971), - [anon_sym_join] = ACTIONS(2971), - [anon_sym_on] = ACTIONS(2971), - [anon_sym_equals] = ACTIONS(2971), - [anon_sym_let] = ACTIONS(2971), - [anon_sym_orderby] = ACTIONS(2971), - [anon_sym_ascending] = ACTIONS(2971), - [anon_sym_descending] = ACTIONS(2971), - [anon_sym_group] = ACTIONS(2971), - [anon_sym_by] = ACTIONS(2971), - [anon_sym_select] = ACTIONS(2971), - [aux_sym_preproc_if_token1] = ACTIONS(3003), - [aux_sym_preproc_if_token3] = ACTIONS(3107), + [sym_interpolation_regular_start] = ACTIONS(3195), + [sym_interpolation_verbatim_start] = ACTIONS(3195), + [sym_interpolation_raw_start] = ACTIONS(3195), + [sym_raw_string_start] = ACTIONS(3195), + }, + [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(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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -365149,262 +368821,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), }, - [1916] = { - [sym_catch_clause] = STATE(1924), - [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), - [aux_sym_try_statement_repeat1] = STATE(1916), - [sym__identifier_token] = ACTIONS(3109), - [anon_sym_extern] = ACTIONS(3109), - [anon_sym_alias] = ACTIONS(3109), - [anon_sym_SEMI] = ACTIONS(3111), - [anon_sym_global] = ACTIONS(3109), - [anon_sym_using] = ACTIONS(3109), - [anon_sym_unsafe] = ACTIONS(3109), - [anon_sym_static] = ACTIONS(3109), - [anon_sym_LBRACK] = ACTIONS(3111), - [anon_sym_LPAREN] = ACTIONS(3111), - [anon_sym_return] = ACTIONS(3109), - [anon_sym_namespace] = ACTIONS(3109), - [anon_sym_class] = ACTIONS(3109), - [anon_sym_ref] = ACTIONS(3109), - [anon_sym_struct] = ACTIONS(3109), - [anon_sym_enum] = ACTIONS(3109), - [anon_sym_LBRACE] = ACTIONS(3111), - [anon_sym_interface] = ACTIONS(3109), - [anon_sym_delegate] = ACTIONS(3109), - [anon_sym_record] = ACTIONS(3109), - [anon_sym_abstract] = ACTIONS(3109), - [anon_sym_async] = ACTIONS(3109), - [anon_sym_const] = ACTIONS(3109), - [anon_sym_file] = ACTIONS(3109), - [anon_sym_fixed] = ACTIONS(3109), - [anon_sym_internal] = ACTIONS(3109), - [anon_sym_new] = ACTIONS(3109), - [anon_sym_override] = ACTIONS(3109), - [anon_sym_partial] = ACTIONS(3109), - [anon_sym_private] = ACTIONS(3109), - [anon_sym_protected] = ACTIONS(3109), - [anon_sym_public] = ACTIONS(3109), - [anon_sym_readonly] = ACTIONS(3109), - [anon_sym_required] = ACTIONS(3109), - [anon_sym_sealed] = ACTIONS(3109), - [anon_sym_virtual] = ACTIONS(3109), - [anon_sym_volatile] = ACTIONS(3109), - [anon_sym_where] = ACTIONS(3109), - [anon_sym_notnull] = ACTIONS(3109), - [anon_sym_unmanaged] = ACTIONS(3109), - [anon_sym_checked] = ACTIONS(3109), - [anon_sym_BANG] = ACTIONS(3111), - [anon_sym_TILDE] = ACTIONS(3111), - [anon_sym_PLUS_PLUS] = ACTIONS(3111), - [anon_sym_DASH_DASH] = ACTIONS(3111), - [anon_sym_true] = ACTIONS(3109), - [anon_sym_false] = ACTIONS(3109), - [anon_sym_PLUS] = ACTIONS(3109), - [anon_sym_DASH] = ACTIONS(3109), - [anon_sym_STAR] = ACTIONS(3111), - [anon_sym_CARET] = ACTIONS(3111), - [anon_sym_AMP] = ACTIONS(3111), - [anon_sym_this] = ACTIONS(3109), - [anon_sym_scoped] = ACTIONS(3109), - [anon_sym_base] = ACTIONS(3109), - [anon_sym_var] = ACTIONS(3109), - [sym_predefined_type] = ACTIONS(3109), - [anon_sym_break] = ACTIONS(3109), - [anon_sym_unchecked] = ACTIONS(3109), - [anon_sym_continue] = ACTIONS(3109), - [anon_sym_do] = ACTIONS(3109), - [anon_sym_while] = ACTIONS(3109), - [anon_sym_for] = ACTIONS(3109), - [anon_sym_lock] = ACTIONS(3109), - [anon_sym_yield] = ACTIONS(3109), - [anon_sym_switch] = ACTIONS(3109), - [anon_sym_default] = ACTIONS(3109), - [anon_sym_throw] = ACTIONS(3109), - [anon_sym_try] = ACTIONS(3109), - [anon_sym_catch] = ACTIONS(3113), - [anon_sym_when] = ACTIONS(3109), - [anon_sym_finally] = ACTIONS(3109), - [anon_sym_await] = ACTIONS(3109), - [anon_sym_foreach] = ACTIONS(3109), - [anon_sym_goto] = ACTIONS(3109), - [anon_sym_if] = ACTIONS(3109), - [anon_sym_else] = ACTIONS(3109), - [anon_sym_DOT_DOT] = ACTIONS(3111), - [anon_sym_from] = ACTIONS(3109), - [anon_sym_into] = ACTIONS(3109), - [anon_sym_join] = ACTIONS(3109), - [anon_sym_on] = ACTIONS(3109), - [anon_sym_equals] = ACTIONS(3109), - [anon_sym_let] = ACTIONS(3109), - [anon_sym_orderby] = ACTIONS(3109), - [anon_sym_ascending] = ACTIONS(3109), - [anon_sym_descending] = ACTIONS(3109), - [anon_sym_group] = ACTIONS(3109), - [anon_sym_by] = ACTIONS(3109), - [anon_sym_select] = ACTIONS(3109), - [anon_sym_stackalloc] = ACTIONS(3109), - [anon_sym_sizeof] = ACTIONS(3109), - [anon_sym_typeof] = ACTIONS(3109), - [anon_sym___makeref] = ACTIONS(3109), - [anon_sym___reftype] = ACTIONS(3109), - [anon_sym___refvalue] = ACTIONS(3109), - [sym_null_literal] = ACTIONS(3109), - [anon_sym_SQUOTE] = ACTIONS(3111), - [sym_integer_literal] = ACTIONS(3109), - [sym_real_literal] = ACTIONS(3111), - [anon_sym_DQUOTE] = ACTIONS(3111), - [sym_verbatim_string_literal] = ACTIONS(3111), - [aux_sym_preproc_if_token1] = ACTIONS(3111), - [aux_sym_preproc_if_token3] = ACTIONS(3111), - [aux_sym_preproc_else_token1] = ACTIONS(3111), - [aux_sym_preproc_elif_token1] = ACTIONS(3111), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(3111), - [sym_interpolation_verbatim_start] = ACTIONS(3111), - [sym_interpolation_raw_start] = ACTIONS(3111), - [sym_raw_string_start] = ACTIONS(3111), - }, - [1917] = { - [sym_using_directive] = STATE(2783), - [sym_attribute_list] = STATE(2979), - [sym__attribute_list] = STATE(2990), - [sym_namespace_declaration] = STATE(2783), - [sym_class_declaration] = STATE(2783), - [sym__class_declaration_initializer] = STATE(7687), - [sym_struct_declaration] = STATE(2783), - [sym__struct_declaration_initializer] = STATE(7229), - [sym_enum_declaration] = STATE(2783), - [sym_interface_declaration] = STATE(2783), - [sym__interface_declaration_initializer] = STATE(7040), - [sym_delegate_declaration] = STATE(2783), - [sym__delegate_declaration_initializer] = STATE(6693), - [sym_record_declaration] = STATE(2783), - [sym__record_declaration_initializer] = STATE(6732), - [sym_modifier] = STATE(3130), - [sym_operator_declaration] = STATE(2783), - [sym_conversion_operator_declaration] = STATE(2783), - [sym_declaration] = STATE(2784), - [sym_field_declaration] = STATE(2783), - [sym_constructor_declaration] = STATE(2783), - [sym__constructor_declaration_initializer] = STATE(6456), - [sym_destructor_declaration] = STATE(2783), - [sym_method_declaration] = STATE(2783), - [sym_event_declaration] = STATE(2783), - [sym_event_field_declaration] = STATE(2783), - [sym_indexer_declaration] = STATE(2783), - [sym_property_declaration] = STATE(2783), - [sym_variable_declaration] = STATE(7612), - [sym__name] = STATE(4390), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(4096), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(4109), - [sym_type] = STATE(5434), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_identifier] = STATE(5713), - [sym__reserved_identifier] = STATE(3691), - [sym_preproc_if] = STATE(2783), - [sym_preproc_if_in_attribute_list] = STATE(2979), - [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), - [aux_sym__class_declaration_initializer_repeat1] = STATE(2198), - [aux_sym__class_declaration_initializer_repeat2] = STATE(2278), - [aux_sym_declaration_list_repeat1] = STATE(1912), - [sym__identifier_token] = ACTIONS(2967), - [anon_sym_extern] = ACTIONS(2969), - [anon_sym_alias] = ACTIONS(2971), - [anon_sym_global] = ACTIONS(2973), - [anon_sym_using] = ACTIONS(2975), - [anon_sym_unsafe] = ACTIONS(65), - [anon_sym_static] = ACTIONS(65), - [anon_sym_LBRACK] = ACTIONS(2977), - [anon_sym_LPAREN] = ACTIONS(2979), - [anon_sym_event] = ACTIONS(2981), - [anon_sym_namespace] = ACTIONS(2983), - [anon_sym_class] = ACTIONS(49), - [anon_sym_ref] = ACTIONS(2985), - [anon_sym_struct] = ACTIONS(53), - [anon_sym_enum] = ACTIONS(2987), - [anon_sym_RBRACE] = ACTIONS(3116), - [anon_sym_interface] = ACTIONS(59), - [anon_sym_delegate] = ACTIONS(2989), - [anon_sym_record] = ACTIONS(63), - [anon_sym_abstract] = ACTIONS(65), - [anon_sym_async] = ACTIONS(65), - [anon_sym_const] = ACTIONS(65), - [anon_sym_file] = ACTIONS(2991), - [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(2971), - [anon_sym_notnull] = ACTIONS(2971), - [anon_sym_unmanaged] = ACTIONS(2971), - [anon_sym_TILDE] = ACTIONS(2993), - [anon_sym_implicit] = ACTIONS(2995), - [anon_sym_explicit] = ACTIONS(2995), - [anon_sym_scoped] = ACTIONS(2997), - [anon_sym_var] = ACTIONS(2999), - [sym_predefined_type] = ACTIONS(3001), - [anon_sym_yield] = ACTIONS(2971), - [anon_sym_when] = ACTIONS(2971), - [anon_sym_from] = ACTIONS(2971), - [anon_sym_into] = ACTIONS(2971), - [anon_sym_join] = ACTIONS(2971), - [anon_sym_on] = ACTIONS(2971), - [anon_sym_equals] = ACTIONS(2971), - [anon_sym_let] = ACTIONS(2971), - [anon_sym_orderby] = ACTIONS(2971), - [anon_sym_ascending] = ACTIONS(2971), - [anon_sym_descending] = ACTIONS(2971), - [anon_sym_group] = ACTIONS(2971), - [anon_sym_by] = ACTIONS(2971), - [anon_sym_select] = ACTIONS(2971), - [aux_sym_preproc_if_token1] = ACTIONS(3003), + [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(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), @@ -365415,129 +368950,383 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), }, - [1918] = { - [sym_using_directive] = STATE(2783), - [sym_attribute_list] = STATE(2979), - [sym__attribute_list] = STATE(2990), - [sym_namespace_declaration] = STATE(2783), - [sym_class_declaration] = STATE(2783), - [sym__class_declaration_initializer] = STATE(7687), - [sym_struct_declaration] = STATE(2783), - [sym__struct_declaration_initializer] = STATE(7229), - [sym_enum_declaration] = STATE(2783), - [sym_interface_declaration] = STATE(2783), - [sym__interface_declaration_initializer] = STATE(7040), - [sym_delegate_declaration] = STATE(2783), - [sym__delegate_declaration_initializer] = STATE(6693), - [sym_record_declaration] = STATE(2783), - [sym__record_declaration_initializer] = STATE(6732), - [sym_modifier] = STATE(3130), - [sym_operator_declaration] = STATE(2783), - [sym_conversion_operator_declaration] = STATE(2783), - [sym_declaration] = STATE(2784), - [sym_field_declaration] = STATE(2783), - [sym_constructor_declaration] = STATE(2783), - [sym__constructor_declaration_initializer] = STATE(6456), - [sym_destructor_declaration] = STATE(2783), - [sym_method_declaration] = STATE(2783), - [sym_event_declaration] = STATE(2783), - [sym_event_field_declaration] = STATE(2783), - [sym_indexer_declaration] = STATE(2783), - [sym_property_declaration] = STATE(2783), - [sym_variable_declaration] = STATE(7612), - [sym__name] = STATE(4390), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(4096), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(4109), - [sym_type] = STATE(5434), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_identifier] = STATE(5713), - [sym__reserved_identifier] = STATE(3691), - [sym_preproc_if] = STATE(2783), - [sym_preproc_if_in_attribute_list] = STATE(2979), - [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), - [aux_sym__class_declaration_initializer_repeat1] = STATE(2198), - [aux_sym__class_declaration_initializer_repeat2] = STATE(2278), - [aux_sym_declaration_list_repeat1] = STATE(1917), - [sym__identifier_token] = ACTIONS(2967), - [anon_sym_extern] = ACTIONS(2969), - [anon_sym_alias] = ACTIONS(2971), - [anon_sym_global] = ACTIONS(2973), - [anon_sym_using] = ACTIONS(2975), - [anon_sym_unsafe] = ACTIONS(65), - [anon_sym_static] = ACTIONS(65), - [anon_sym_LBRACK] = ACTIONS(2977), - [anon_sym_LPAREN] = ACTIONS(2979), - [anon_sym_event] = ACTIONS(2981), - [anon_sym_namespace] = ACTIONS(2983), - [anon_sym_class] = ACTIONS(49), - [anon_sym_ref] = ACTIONS(2985), - [anon_sym_struct] = ACTIONS(53), - [anon_sym_enum] = ACTIONS(2987), - [anon_sym_RBRACE] = ACTIONS(3118), - [anon_sym_interface] = ACTIONS(59), - [anon_sym_delegate] = ACTIONS(2989), - [anon_sym_record] = ACTIONS(63), - [anon_sym_abstract] = ACTIONS(65), - [anon_sym_async] = ACTIONS(65), - [anon_sym_const] = ACTIONS(65), - [anon_sym_file] = ACTIONS(2991), - [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(2971), - [anon_sym_notnull] = ACTIONS(2971), - [anon_sym_unmanaged] = ACTIONS(2971), - [anon_sym_TILDE] = ACTIONS(2993), - [anon_sym_implicit] = ACTIONS(2995), - [anon_sym_explicit] = ACTIONS(2995), - [anon_sym_scoped] = ACTIONS(2997), - [anon_sym_var] = ACTIONS(2999), - [sym_predefined_type] = ACTIONS(3001), - [anon_sym_yield] = ACTIONS(2971), - [anon_sym_when] = ACTIONS(2971), - [anon_sym_from] = ACTIONS(2971), - [anon_sym_into] = ACTIONS(2971), - [anon_sym_join] = ACTIONS(2971), - [anon_sym_on] = ACTIONS(2971), - [anon_sym_equals] = ACTIONS(2971), - [anon_sym_let] = ACTIONS(2971), - [anon_sym_orderby] = ACTIONS(2971), - [anon_sym_ascending] = ACTIONS(2971), - [anon_sym_descending] = ACTIONS(2971), - [anon_sym_group] = ACTIONS(2971), - [anon_sym_by] = ACTIONS(2971), - [anon_sym_select] = ACTIONS(2971), - [aux_sym_preproc_if_token1] = ACTIONS(3003), + [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(3099), + [anon_sym_extern] = ACTIONS(3099), + [anon_sym_alias] = ACTIONS(3099), + [anon_sym_SEMI] = ACTIONS(3101), + [anon_sym_global] = ACTIONS(3099), + [anon_sym_using] = ACTIONS(3099), + [anon_sym_unsafe] = ACTIONS(3099), + [anon_sym_static] = ACTIONS(3099), + [anon_sym_LBRACK] = ACTIONS(3101), + [anon_sym_LPAREN] = ACTIONS(3101), + [anon_sym_return] = ACTIONS(3099), + [anon_sym_namespace] = ACTIONS(3099), + [anon_sym_class] = ACTIONS(3099), + [anon_sym_ref] = ACTIONS(3099), + [anon_sym_struct] = ACTIONS(3099), + [anon_sym_enum] = ACTIONS(3099), + [anon_sym_LBRACE] = ACTIONS(3101), + [anon_sym_interface] = ACTIONS(3099), + [anon_sym_delegate] = ACTIONS(3099), + [anon_sym_record] = ACTIONS(3099), + [anon_sym_abstract] = ACTIONS(3099), + [anon_sym_async] = ACTIONS(3099), + [anon_sym_const] = ACTIONS(3099), + [anon_sym_file] = ACTIONS(3099), + [anon_sym_fixed] = ACTIONS(3099), + [anon_sym_internal] = ACTIONS(3099), + [anon_sym_new] = ACTIONS(3099), + [anon_sym_override] = ACTIONS(3099), + [anon_sym_partial] = ACTIONS(3099), + [anon_sym_private] = ACTIONS(3099), + [anon_sym_protected] = ACTIONS(3099), + [anon_sym_public] = ACTIONS(3099), + [anon_sym_readonly] = ACTIONS(3099), + [anon_sym_required] = ACTIONS(3099), + [anon_sym_sealed] = ACTIONS(3099), + [anon_sym_virtual] = ACTIONS(3099), + [anon_sym_volatile] = ACTIONS(3099), + [anon_sym_where] = ACTIONS(3099), + [anon_sym_notnull] = ACTIONS(3099), + [anon_sym_unmanaged] = ACTIONS(3099), + [anon_sym_checked] = ACTIONS(3099), + [anon_sym_BANG] = ACTIONS(3101), + [anon_sym_TILDE] = ACTIONS(3101), + [anon_sym_PLUS_PLUS] = ACTIONS(3101), + [anon_sym_DASH_DASH] = ACTIONS(3101), + [anon_sym_true] = ACTIONS(3099), + [anon_sym_false] = ACTIONS(3099), + [anon_sym_PLUS] = ACTIONS(3099), + [anon_sym_DASH] = ACTIONS(3099), + [anon_sym_STAR] = ACTIONS(3101), + [anon_sym_CARET] = ACTIONS(3101), + [anon_sym_AMP] = ACTIONS(3101), + [anon_sym_this] = ACTIONS(3099), + [anon_sym_scoped] = ACTIONS(3099), + [anon_sym_base] = ACTIONS(3099), + [anon_sym_var] = ACTIONS(3099), + [sym_predefined_type] = ACTIONS(3099), + [anon_sym_break] = ACTIONS(3099), + [anon_sym_unchecked] = ACTIONS(3099), + [anon_sym_continue] = ACTIONS(3099), + [anon_sym_do] = ACTIONS(3099), + [anon_sym_while] = ACTIONS(3099), + [anon_sym_for] = ACTIONS(3099), + [anon_sym_lock] = ACTIONS(3099), + [anon_sym_yield] = ACTIONS(3099), + [anon_sym_switch] = ACTIONS(3099), + [anon_sym_default] = ACTIONS(3099), + [anon_sym_throw] = ACTIONS(3099), + [anon_sym_try] = ACTIONS(3099), + [anon_sym_when] = ACTIONS(3099), + [anon_sym_await] = ACTIONS(3099), + [anon_sym_foreach] = ACTIONS(3099), + [anon_sym_goto] = ACTIONS(3099), + [anon_sym_if] = ACTIONS(3099), + [anon_sym_else] = ACTIONS(3099), + [anon_sym_DOT_DOT] = ACTIONS(3101), + [anon_sym_from] = ACTIONS(3099), + [anon_sym_into] = ACTIONS(3099), + [anon_sym_join] = ACTIONS(3099), + [anon_sym_on] = ACTIONS(3099), + [anon_sym_equals] = ACTIONS(3099), + [anon_sym_let] = ACTIONS(3099), + [anon_sym_orderby] = ACTIONS(3099), + [anon_sym_ascending] = ACTIONS(3099), + [anon_sym_descending] = ACTIONS(3099), + [anon_sym_group] = ACTIONS(3099), + [anon_sym_by] = ACTIONS(3099), + [anon_sym_select] = ACTIONS(3099), + [anon_sym_stackalloc] = ACTIONS(3099), + [anon_sym_sizeof] = ACTIONS(3099), + [anon_sym_typeof] = ACTIONS(3099), + [anon_sym___makeref] = ACTIONS(3099), + [anon_sym___reftype] = ACTIONS(3099), + [anon_sym___refvalue] = ACTIONS(3099), + [sym_null_literal] = ACTIONS(3099), + [anon_sym_SQUOTE] = ACTIONS(3101), + [sym_integer_literal] = ACTIONS(3099), + [sym_real_literal] = ACTIONS(3101), + [anon_sym_DQUOTE] = ACTIONS(3101), + [sym_verbatim_string_literal] = ACTIONS(3101), + [aux_sym_preproc_if_token1] = ACTIONS(3101), + [aux_sym_preproc_if_token3] = ACTIONS(3101), + [aux_sym_preproc_else_token1] = ACTIONS(3101), + [aux_sym_preproc_elif_token1] = ACTIONS(3101), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + [sym_interpolation_regular_start] = ACTIONS(3101), + [sym_interpolation_verbatim_start] = ACTIONS(3101), + [sym_interpolation_raw_start] = ACTIONS(3101), + [sym_raw_string_start] = ACTIONS(3101), + }, + [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(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(3133), + [anon_sym_when] = ACTIONS(3133), + [anon_sym_finally] = 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), + }, + [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(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), @@ -365548,129 +369337,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(3207), + [sym_interpolation_verbatim_start] = ACTIONS(3207), + [sym_interpolation_raw_start] = ACTIONS(3207), + [sym_raw_string_start] = ACTIONS(3207), }, - [1919] = { - [sym_using_directive] = STATE(2783), - [sym_attribute_list] = STATE(2934), - [sym__attribute_list] = STATE(2990), - [sym_namespace_declaration] = STATE(2783), - [sym_class_declaration] = STATE(2783), - [sym__class_declaration_initializer] = STATE(7687), - [sym_struct_declaration] = STATE(2783), - [sym__struct_declaration_initializer] = STATE(7229), - [sym_enum_declaration] = STATE(2783), - [sym_interface_declaration] = STATE(2783), - [sym__interface_declaration_initializer] = STATE(7040), - [sym_delegate_declaration] = STATE(2783), - [sym__delegate_declaration_initializer] = STATE(6693), - [sym_record_declaration] = STATE(2783), - [sym__record_declaration_initializer] = STATE(6732), - [sym_modifier] = STATE(3130), - [sym_operator_declaration] = STATE(2783), - [sym_conversion_operator_declaration] = STATE(2783), - [sym_declaration] = STATE(2784), - [sym_field_declaration] = STATE(2783), - [sym_constructor_declaration] = STATE(2783), - [sym__constructor_declaration_initializer] = STATE(6456), - [sym_destructor_declaration] = STATE(2783), - [sym_method_declaration] = STATE(2783), - [sym_event_declaration] = STATE(2783), - [sym_event_field_declaration] = STATE(2783), - [sym_indexer_declaration] = STATE(2783), - [sym_property_declaration] = STATE(2783), - [sym_variable_declaration] = STATE(7612), - [sym__name] = STATE(4390), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(4096), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(4109), - [sym_type] = STATE(5434), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_identifier] = STATE(5713), - [sym__reserved_identifier] = STATE(3691), - [sym_preproc_if] = STATE(2783), - [sym_preproc_if_in_attribute_list] = STATE(2979), - [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), - [aux_sym__class_declaration_initializer_repeat1] = STATE(2198), - [aux_sym__class_declaration_initializer_repeat2] = STATE(2278), - [aux_sym_declaration_list_repeat1] = STATE(1920), - [sym__identifier_token] = ACTIONS(2967), - [anon_sym_extern] = ACTIONS(2969), - [anon_sym_alias] = ACTIONS(2971), - [anon_sym_global] = ACTIONS(2973), - [anon_sym_using] = ACTIONS(2975), - [anon_sym_unsafe] = ACTIONS(65), - [anon_sym_static] = ACTIONS(65), - [anon_sym_LBRACK] = ACTIONS(2977), - [anon_sym_LPAREN] = ACTIONS(2979), - [anon_sym_event] = ACTIONS(2981), - [anon_sym_namespace] = ACTIONS(2983), - [anon_sym_class] = ACTIONS(49), - [anon_sym_ref] = ACTIONS(2985), - [anon_sym_struct] = ACTIONS(53), - [anon_sym_enum] = ACTIONS(2987), - [anon_sym_interface] = ACTIONS(59), - [anon_sym_delegate] = ACTIONS(2989), - [anon_sym_record] = ACTIONS(63), - [anon_sym_abstract] = ACTIONS(65), - [anon_sym_async] = ACTIONS(65), - [anon_sym_const] = ACTIONS(65), - [anon_sym_file] = ACTIONS(2991), - [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(2971), - [anon_sym_notnull] = ACTIONS(2971), - [anon_sym_unmanaged] = ACTIONS(2971), - [anon_sym_TILDE] = ACTIONS(2993), - [anon_sym_implicit] = ACTIONS(2995), - [anon_sym_explicit] = ACTIONS(2995), - [anon_sym_scoped] = ACTIONS(2997), - [anon_sym_var] = ACTIONS(2999), - [sym_predefined_type] = ACTIONS(3001), - [anon_sym_yield] = ACTIONS(2971), - [anon_sym_when] = ACTIONS(2971), - [anon_sym_from] = ACTIONS(2971), - [anon_sym_into] = ACTIONS(2971), - [anon_sym_join] = ACTIONS(2971), - [anon_sym_on] = ACTIONS(2971), - [anon_sym_equals] = ACTIONS(2971), - [anon_sym_let] = ACTIONS(2971), - [anon_sym_orderby] = ACTIONS(2971), - [anon_sym_ascending] = ACTIONS(2971), - [anon_sym_descending] = ACTIONS(2971), - [anon_sym_group] = ACTIONS(2971), - [anon_sym_by] = ACTIONS(2971), - [anon_sym_select] = ACTIONS(2971), - [aux_sym_preproc_if_token1] = ACTIONS(3003), - [aux_sym_preproc_if_token3] = ACTIONS(3107), + [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), + [ts_builtin_sym_end] = ACTIONS(2951), + [sym__identifier_token] = ACTIONS(2949), + [anon_sym_extern] = ACTIONS(2949), + [anon_sym_alias] = ACTIONS(2949), + [anon_sym_SEMI] = ACTIONS(2951), + [anon_sym_global] = ACTIONS(2949), + [anon_sym_using] = ACTIONS(2949), + [anon_sym_unsafe] = ACTIONS(2949), + [anon_sym_static] = ACTIONS(2949), + [anon_sym_LBRACK] = ACTIONS(2951), + [anon_sym_LPAREN] = ACTIONS(2951), + [anon_sym_return] = ACTIONS(2949), + [anon_sym_namespace] = ACTIONS(2949), + [anon_sym_class] = ACTIONS(2949), + [anon_sym_ref] = ACTIONS(2949), + [anon_sym_struct] = ACTIONS(2949), + [anon_sym_enum] = ACTIONS(2949), + [anon_sym_LBRACE] = ACTIONS(2951), + [anon_sym_interface] = ACTIONS(2949), + [anon_sym_delegate] = ACTIONS(2949), + [anon_sym_record] = ACTIONS(2949), + [anon_sym_abstract] = ACTIONS(2949), + [anon_sym_async] = ACTIONS(2949), + [anon_sym_const] = ACTIONS(2949), + [anon_sym_file] = ACTIONS(2949), + [anon_sym_fixed] = ACTIONS(2949), + [anon_sym_internal] = ACTIONS(2949), + [anon_sym_new] = ACTIONS(2949), + [anon_sym_override] = ACTIONS(2949), + [anon_sym_partial] = ACTIONS(2949), + [anon_sym_private] = ACTIONS(2949), + [anon_sym_protected] = ACTIONS(2949), + [anon_sym_public] = ACTIONS(2949), + [anon_sym_readonly] = ACTIONS(2949), + [anon_sym_required] = ACTIONS(2949), + [anon_sym_sealed] = ACTIONS(2949), + [anon_sym_virtual] = ACTIONS(2949), + [anon_sym_volatile] = ACTIONS(2949), + [anon_sym_where] = ACTIONS(2949), + [anon_sym_notnull] = ACTIONS(2949), + [anon_sym_unmanaged] = ACTIONS(2949), + [anon_sym_checked] = ACTIONS(2949), + [anon_sym_BANG] = ACTIONS(2951), + [anon_sym_TILDE] = ACTIONS(2951), + [anon_sym_PLUS_PLUS] = ACTIONS(2951), + [anon_sym_DASH_DASH] = ACTIONS(2951), + [anon_sym_true] = ACTIONS(2949), + [anon_sym_false] = ACTIONS(2949), + [anon_sym_PLUS] = ACTIONS(2949), + [anon_sym_DASH] = ACTIONS(2949), + [anon_sym_STAR] = ACTIONS(2951), + [anon_sym_CARET] = ACTIONS(2951), + [anon_sym_AMP] = ACTIONS(2951), + [anon_sym_this] = ACTIONS(2949), + [anon_sym_scoped] = ACTIONS(2949), + [anon_sym_base] = ACTIONS(2949), + [anon_sym_var] = ACTIONS(2949), + [sym_predefined_type] = ACTIONS(2949), + [anon_sym_break] = ACTIONS(2949), + [anon_sym_unchecked] = ACTIONS(2949), + [anon_sym_continue] = ACTIONS(2949), + [anon_sym_do] = ACTIONS(2949), + [anon_sym_while] = ACTIONS(2949), + [anon_sym_for] = ACTIONS(2949), + [anon_sym_lock] = ACTIONS(2949), + [anon_sym_yield] = ACTIONS(2949), + [anon_sym_switch] = ACTIONS(2949), + [anon_sym_default] = ACTIONS(2949), + [anon_sym_throw] = ACTIONS(2949), + [anon_sym_try] = ACTIONS(2949), + [anon_sym_catch] = ACTIONS(2949), + [anon_sym_when] = ACTIONS(2949), + [anon_sym_finally] = ACTIONS(2949), + [anon_sym_await] = ACTIONS(2949), + [anon_sym_foreach] = ACTIONS(2949), + [anon_sym_goto] = ACTIONS(2949), + [anon_sym_if] = ACTIONS(2949), + [anon_sym_else] = ACTIONS(2949), + [anon_sym_DOT_DOT] = ACTIONS(2951), + [anon_sym_from] = ACTIONS(2949), + [anon_sym_into] = ACTIONS(2949), + [anon_sym_join] = ACTIONS(2949), + [anon_sym_on] = ACTIONS(2949), + [anon_sym_equals] = ACTIONS(2949), + [anon_sym_let] = ACTIONS(2949), + [anon_sym_orderby] = ACTIONS(2949), + [anon_sym_ascending] = ACTIONS(2949), + [anon_sym_descending] = ACTIONS(2949), + [anon_sym_group] = ACTIONS(2949), + [anon_sym_by] = ACTIONS(2949), + [anon_sym_select] = ACTIONS(2949), + [anon_sym_stackalloc] = ACTIONS(2949), + [anon_sym_sizeof] = ACTIONS(2949), + [anon_sym_typeof] = ACTIONS(2949), + [anon_sym___makeref] = ACTIONS(2949), + [anon_sym___reftype] = ACTIONS(2949), + [anon_sym___refvalue] = ACTIONS(2949), + [sym_null_literal] = ACTIONS(2949), + [anon_sym_SQUOTE] = ACTIONS(2951), + [sym_integer_literal] = ACTIONS(2949), + [sym_real_literal] = ACTIONS(2951), + [anon_sym_DQUOTE] = ACTIONS(2951), + [sym_verbatim_string_literal] = ACTIONS(2951), + [aux_sym_preproc_if_token1] = ACTIONS(2951), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + [sym_interpolation_regular_start] = ACTIONS(2951), + [sym_interpolation_verbatim_start] = ACTIONS(2951), + [sym_interpolation_raw_start] = ACTIONS(2951), + [sym_raw_string_start] = ACTIONS(2951), + }, + [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(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), @@ -365681,129 +369595,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(3211), + [sym_interpolation_verbatim_start] = ACTIONS(3211), + [sym_interpolation_raw_start] = ACTIONS(3211), + [sym_raw_string_start] = ACTIONS(3211), }, - [1920] = { - [sym_using_directive] = STATE(2783), - [sym_attribute_list] = STATE(2979), - [sym__attribute_list] = STATE(2990), - [sym_namespace_declaration] = STATE(2783), - [sym_class_declaration] = STATE(2783), - [sym__class_declaration_initializer] = STATE(7687), - [sym_struct_declaration] = STATE(2783), - [sym__struct_declaration_initializer] = STATE(7229), - [sym_enum_declaration] = STATE(2783), - [sym_interface_declaration] = STATE(2783), - [sym__interface_declaration_initializer] = STATE(7040), - [sym_delegate_declaration] = STATE(2783), - [sym__delegate_declaration_initializer] = STATE(6693), - [sym_record_declaration] = STATE(2783), - [sym__record_declaration_initializer] = STATE(6732), - [sym_modifier] = STATE(3130), - [sym_operator_declaration] = STATE(2783), - [sym_conversion_operator_declaration] = STATE(2783), - [sym_declaration] = STATE(2784), - [sym_field_declaration] = STATE(2783), - [sym_constructor_declaration] = STATE(2783), - [sym__constructor_declaration_initializer] = STATE(6456), - [sym_destructor_declaration] = STATE(2783), - [sym_method_declaration] = STATE(2783), - [sym_event_declaration] = STATE(2783), - [sym_event_field_declaration] = STATE(2783), - [sym_indexer_declaration] = STATE(2783), - [sym_property_declaration] = STATE(2783), - [sym_variable_declaration] = STATE(7612), - [sym__name] = STATE(4390), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(4096), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(4109), - [sym_type] = STATE(5434), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_identifier] = STATE(5713), - [sym__reserved_identifier] = STATE(3691), - [sym_preproc_if] = STATE(2783), - [sym_preproc_if_in_attribute_list] = STATE(2979), - [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), - [aux_sym__class_declaration_initializer_repeat1] = STATE(2198), - [aux_sym__class_declaration_initializer_repeat2] = STATE(2278), - [aux_sym_declaration_list_repeat1] = STATE(1912), - [sym__identifier_token] = ACTIONS(2967), - [anon_sym_extern] = ACTIONS(2969), - [anon_sym_alias] = ACTIONS(2971), - [anon_sym_global] = ACTIONS(2973), - [anon_sym_using] = ACTIONS(2975), - [anon_sym_unsafe] = ACTIONS(65), - [anon_sym_static] = ACTIONS(65), - [anon_sym_LBRACK] = ACTIONS(2977), - [anon_sym_LPAREN] = ACTIONS(2979), - [anon_sym_event] = ACTIONS(2981), - [anon_sym_namespace] = ACTIONS(2983), - [anon_sym_class] = ACTIONS(49), - [anon_sym_ref] = ACTIONS(2985), - [anon_sym_struct] = ACTIONS(53), - [anon_sym_enum] = ACTIONS(2987), - [anon_sym_interface] = ACTIONS(59), - [anon_sym_delegate] = ACTIONS(2989), - [anon_sym_record] = ACTIONS(63), - [anon_sym_abstract] = ACTIONS(65), - [anon_sym_async] = ACTIONS(65), - [anon_sym_const] = ACTIONS(65), - [anon_sym_file] = ACTIONS(2991), - [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(2971), - [anon_sym_notnull] = ACTIONS(2971), - [anon_sym_unmanaged] = ACTIONS(2971), - [anon_sym_TILDE] = ACTIONS(2993), - [anon_sym_implicit] = ACTIONS(2995), - [anon_sym_explicit] = ACTIONS(2995), - [anon_sym_scoped] = ACTIONS(2997), - [anon_sym_var] = ACTIONS(2999), - [sym_predefined_type] = ACTIONS(3001), - [anon_sym_yield] = ACTIONS(2971), - [anon_sym_when] = ACTIONS(2971), - [anon_sym_from] = ACTIONS(2971), - [anon_sym_into] = ACTIONS(2971), - [anon_sym_join] = ACTIONS(2971), - [anon_sym_on] = ACTIONS(2971), - [anon_sym_equals] = ACTIONS(2971), - [anon_sym_let] = ACTIONS(2971), - [anon_sym_orderby] = ACTIONS(2971), - [anon_sym_ascending] = ACTIONS(2971), - [anon_sym_descending] = ACTIONS(2971), - [anon_sym_group] = ACTIONS(2971), - [anon_sym_by] = ACTIONS(2971), - [anon_sym_select] = ACTIONS(2971), - [aux_sym_preproc_if_token1] = ACTIONS(3003), - [aux_sym_preproc_if_token3] = ACTIONS(3120), + [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(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), @@ -365814,387 +369724,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(3215), + [sym_interpolation_verbatim_start] = ACTIONS(3215), + [sym_interpolation_raw_start] = ACTIONS(3215), + [sym_raw_string_start] = ACTIONS(3215), }, - [1921] = { - [sym_catch_clause] = STATE(1967), - [sym_finally_clause] = STATE(2013), - [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_try_statement_repeat1] = STATE(1922), - [ts_builtin_sym_end] = ACTIONS(3105), - [sym__identifier_token] = ACTIONS(3103), - [anon_sym_extern] = ACTIONS(3103), - [anon_sym_alias] = ACTIONS(3103), - [anon_sym_SEMI] = ACTIONS(3105), - [anon_sym_global] = ACTIONS(3103), - [anon_sym_using] = ACTIONS(3103), - [anon_sym_unsafe] = ACTIONS(3103), - [anon_sym_static] = ACTIONS(3103), - [anon_sym_LBRACK] = ACTIONS(3105), - [anon_sym_LPAREN] = ACTIONS(3105), - [anon_sym_return] = ACTIONS(3103), - [anon_sym_namespace] = ACTIONS(3103), - [anon_sym_class] = ACTIONS(3103), - [anon_sym_ref] = ACTIONS(3103), - [anon_sym_struct] = ACTIONS(3103), - [anon_sym_enum] = ACTIONS(3103), - [anon_sym_LBRACE] = ACTIONS(3105), - [anon_sym_interface] = ACTIONS(3103), - [anon_sym_delegate] = ACTIONS(3103), - [anon_sym_record] = ACTIONS(3103), - [anon_sym_abstract] = ACTIONS(3103), - [anon_sym_async] = ACTIONS(3103), - [anon_sym_const] = ACTIONS(3103), - [anon_sym_file] = ACTIONS(3103), - [anon_sym_fixed] = ACTIONS(3103), - [anon_sym_internal] = ACTIONS(3103), - [anon_sym_new] = ACTIONS(3103), - [anon_sym_override] = ACTIONS(3103), - [anon_sym_partial] = ACTIONS(3103), - [anon_sym_private] = ACTIONS(3103), - [anon_sym_protected] = ACTIONS(3103), - [anon_sym_public] = ACTIONS(3103), - [anon_sym_readonly] = ACTIONS(3103), - [anon_sym_required] = ACTIONS(3103), - [anon_sym_sealed] = ACTIONS(3103), - [anon_sym_virtual] = ACTIONS(3103), - [anon_sym_volatile] = ACTIONS(3103), - [anon_sym_where] = ACTIONS(3103), - [anon_sym_notnull] = ACTIONS(3103), - [anon_sym_unmanaged] = ACTIONS(3103), - [anon_sym_checked] = ACTIONS(3103), - [anon_sym_BANG] = ACTIONS(3105), - [anon_sym_TILDE] = ACTIONS(3105), - [anon_sym_PLUS_PLUS] = ACTIONS(3105), - [anon_sym_DASH_DASH] = ACTIONS(3105), - [anon_sym_true] = ACTIONS(3103), - [anon_sym_false] = ACTIONS(3103), - [anon_sym_PLUS] = ACTIONS(3103), - [anon_sym_DASH] = ACTIONS(3103), - [anon_sym_STAR] = ACTIONS(3105), - [anon_sym_CARET] = ACTIONS(3105), - [anon_sym_AMP] = ACTIONS(3105), - [anon_sym_this] = ACTIONS(3103), - [anon_sym_scoped] = ACTIONS(3103), - [anon_sym_base] = ACTIONS(3103), - [anon_sym_var] = ACTIONS(3103), - [sym_predefined_type] = ACTIONS(3103), - [anon_sym_break] = ACTIONS(3103), - [anon_sym_unchecked] = ACTIONS(3103), - [anon_sym_continue] = ACTIONS(3103), - [anon_sym_do] = ACTIONS(3103), - [anon_sym_while] = ACTIONS(3103), - [anon_sym_for] = ACTIONS(3103), - [anon_sym_lock] = ACTIONS(3103), - [anon_sym_yield] = ACTIONS(3103), - [anon_sym_switch] = ACTIONS(3103), - [anon_sym_default] = ACTIONS(3103), - [anon_sym_throw] = ACTIONS(3103), - [anon_sym_try] = ACTIONS(3103), - [anon_sym_catch] = ACTIONS(3122), - [anon_sym_when] = ACTIONS(3103), - [anon_sym_finally] = ACTIONS(3124), - [anon_sym_await] = ACTIONS(3103), - [anon_sym_foreach] = ACTIONS(3103), - [anon_sym_goto] = ACTIONS(3103), - [anon_sym_if] = ACTIONS(3103), - [anon_sym_else] = ACTIONS(3103), - [anon_sym_DOT_DOT] = ACTIONS(3105), - [anon_sym_from] = ACTIONS(3103), - [anon_sym_into] = ACTIONS(3103), - [anon_sym_join] = ACTIONS(3103), - [anon_sym_on] = ACTIONS(3103), - [anon_sym_equals] = ACTIONS(3103), - [anon_sym_let] = ACTIONS(3103), - [anon_sym_orderby] = ACTIONS(3103), - [anon_sym_ascending] = ACTIONS(3103), - [anon_sym_descending] = ACTIONS(3103), - [anon_sym_group] = ACTIONS(3103), - [anon_sym_by] = ACTIONS(3103), - [anon_sym_select] = ACTIONS(3103), - [anon_sym_stackalloc] = ACTIONS(3103), - [anon_sym_sizeof] = ACTIONS(3103), - [anon_sym_typeof] = ACTIONS(3103), - [anon_sym___makeref] = ACTIONS(3103), - [anon_sym___reftype] = ACTIONS(3103), - [anon_sym___refvalue] = ACTIONS(3103), - [sym_null_literal] = ACTIONS(3103), - [anon_sym_SQUOTE] = ACTIONS(3105), - [sym_integer_literal] = ACTIONS(3103), - [sym_real_literal] = ACTIONS(3105), - [anon_sym_DQUOTE] = ACTIONS(3105), - [sym_verbatim_string_literal] = ACTIONS(3105), - [aux_sym_preproc_if_token1] = ACTIONS(3105), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(3105), - [sym_interpolation_verbatim_start] = ACTIONS(3105), - [sym_interpolation_raw_start] = ACTIONS(3105), - [sym_raw_string_start] = ACTIONS(3105), - }, - [1922] = { - [sym_catch_clause] = STATE(1967), - [sym_finally_clause] = STATE(2056), - [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_try_statement_repeat1] = STATE(1926), - [ts_builtin_sym_end] = ACTIONS(3097), - [sym__identifier_token] = ACTIONS(3095), - [anon_sym_extern] = ACTIONS(3095), - [anon_sym_alias] = ACTIONS(3095), - [anon_sym_SEMI] = ACTIONS(3097), - [anon_sym_global] = ACTIONS(3095), - [anon_sym_using] = ACTIONS(3095), - [anon_sym_unsafe] = ACTIONS(3095), - [anon_sym_static] = ACTIONS(3095), - [anon_sym_LBRACK] = ACTIONS(3097), - [anon_sym_LPAREN] = ACTIONS(3097), - [anon_sym_return] = ACTIONS(3095), - [anon_sym_namespace] = ACTIONS(3095), - [anon_sym_class] = ACTIONS(3095), - [anon_sym_ref] = ACTIONS(3095), - [anon_sym_struct] = ACTIONS(3095), - [anon_sym_enum] = ACTIONS(3095), - [anon_sym_LBRACE] = ACTIONS(3097), - [anon_sym_interface] = ACTIONS(3095), - [anon_sym_delegate] = ACTIONS(3095), - [anon_sym_record] = ACTIONS(3095), - [anon_sym_abstract] = ACTIONS(3095), - [anon_sym_async] = ACTIONS(3095), - [anon_sym_const] = ACTIONS(3095), - [anon_sym_file] = ACTIONS(3095), - [anon_sym_fixed] = ACTIONS(3095), - [anon_sym_internal] = ACTIONS(3095), - [anon_sym_new] = ACTIONS(3095), - [anon_sym_override] = ACTIONS(3095), - [anon_sym_partial] = ACTIONS(3095), - [anon_sym_private] = ACTIONS(3095), - [anon_sym_protected] = ACTIONS(3095), - [anon_sym_public] = ACTIONS(3095), - [anon_sym_readonly] = ACTIONS(3095), - [anon_sym_required] = ACTIONS(3095), - [anon_sym_sealed] = ACTIONS(3095), - [anon_sym_virtual] = ACTIONS(3095), - [anon_sym_volatile] = ACTIONS(3095), - [anon_sym_where] = ACTIONS(3095), - [anon_sym_notnull] = ACTIONS(3095), - [anon_sym_unmanaged] = ACTIONS(3095), - [anon_sym_checked] = ACTIONS(3095), - [anon_sym_BANG] = ACTIONS(3097), - [anon_sym_TILDE] = ACTIONS(3097), - [anon_sym_PLUS_PLUS] = ACTIONS(3097), - [anon_sym_DASH_DASH] = ACTIONS(3097), - [anon_sym_true] = ACTIONS(3095), - [anon_sym_false] = ACTIONS(3095), - [anon_sym_PLUS] = ACTIONS(3095), - [anon_sym_DASH] = ACTIONS(3095), - [anon_sym_STAR] = ACTIONS(3097), - [anon_sym_CARET] = ACTIONS(3097), - [anon_sym_AMP] = ACTIONS(3097), - [anon_sym_this] = ACTIONS(3095), - [anon_sym_scoped] = ACTIONS(3095), - [anon_sym_base] = ACTIONS(3095), - [anon_sym_var] = ACTIONS(3095), - [sym_predefined_type] = ACTIONS(3095), - [anon_sym_break] = ACTIONS(3095), - [anon_sym_unchecked] = ACTIONS(3095), - [anon_sym_continue] = ACTIONS(3095), - [anon_sym_do] = ACTIONS(3095), - [anon_sym_while] = ACTIONS(3095), - [anon_sym_for] = ACTIONS(3095), - [anon_sym_lock] = ACTIONS(3095), - [anon_sym_yield] = ACTIONS(3095), - [anon_sym_switch] = ACTIONS(3095), - [anon_sym_default] = ACTIONS(3095), - [anon_sym_throw] = ACTIONS(3095), - [anon_sym_try] = ACTIONS(3095), - [anon_sym_catch] = ACTIONS(3122), - [anon_sym_when] = ACTIONS(3095), - [anon_sym_finally] = ACTIONS(3124), - [anon_sym_await] = ACTIONS(3095), - [anon_sym_foreach] = ACTIONS(3095), - [anon_sym_goto] = ACTIONS(3095), - [anon_sym_if] = ACTIONS(3095), - [anon_sym_else] = ACTIONS(3095), - [anon_sym_DOT_DOT] = ACTIONS(3097), - [anon_sym_from] = ACTIONS(3095), - [anon_sym_into] = ACTIONS(3095), - [anon_sym_join] = ACTIONS(3095), - [anon_sym_on] = ACTIONS(3095), - [anon_sym_equals] = ACTIONS(3095), - [anon_sym_let] = ACTIONS(3095), - [anon_sym_orderby] = ACTIONS(3095), - [anon_sym_ascending] = ACTIONS(3095), - [anon_sym_descending] = ACTIONS(3095), - [anon_sym_group] = ACTIONS(3095), - [anon_sym_by] = ACTIONS(3095), - [anon_sym_select] = ACTIONS(3095), - [anon_sym_stackalloc] = ACTIONS(3095), - [anon_sym_sizeof] = ACTIONS(3095), - [anon_sym_typeof] = ACTIONS(3095), - [anon_sym___makeref] = ACTIONS(3095), - [anon_sym___reftype] = ACTIONS(3095), - [anon_sym___refvalue] = ACTIONS(3095), - [sym_null_literal] = ACTIONS(3095), - [anon_sym_SQUOTE] = ACTIONS(3097), - [sym_integer_literal] = ACTIONS(3095), - [sym_real_literal] = ACTIONS(3097), - [anon_sym_DQUOTE] = ACTIONS(3097), - [sym_verbatim_string_literal] = ACTIONS(3097), - [aux_sym_preproc_if_token1] = ACTIONS(3097), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(3097), - [sym_interpolation_verbatim_start] = ACTIONS(3097), - [sym_interpolation_raw_start] = ACTIONS(3097), - [sym_raw_string_start] = ACTIONS(3097), - }, - [1923] = { - [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), - [sym__identifier_token] = ACTIONS(3126), - [anon_sym_extern] = ACTIONS(3126), - [anon_sym_alias] = ACTIONS(3126), - [anon_sym_SEMI] = ACTIONS(3128), - [anon_sym_global] = ACTIONS(3126), - [anon_sym_using] = ACTIONS(3126), - [anon_sym_unsafe] = ACTIONS(3126), - [anon_sym_static] = ACTIONS(3126), - [anon_sym_LBRACK] = ACTIONS(3128), - [anon_sym_LPAREN] = ACTIONS(3128), - [anon_sym_return] = ACTIONS(3126), - [anon_sym_namespace] = ACTIONS(3126), - [anon_sym_class] = ACTIONS(3126), - [anon_sym_ref] = ACTIONS(3126), - [anon_sym_struct] = ACTIONS(3126), - [anon_sym_enum] = ACTIONS(3126), - [anon_sym_LBRACE] = ACTIONS(3128), - [anon_sym_interface] = ACTIONS(3126), - [anon_sym_delegate] = ACTIONS(3126), - [anon_sym_record] = ACTIONS(3126), - [anon_sym_abstract] = ACTIONS(3126), - [anon_sym_async] = ACTIONS(3126), - [anon_sym_const] = ACTIONS(3126), - [anon_sym_file] = ACTIONS(3126), - [anon_sym_fixed] = ACTIONS(3126), - [anon_sym_internal] = ACTIONS(3126), - [anon_sym_new] = ACTIONS(3126), - [anon_sym_override] = ACTIONS(3126), - [anon_sym_partial] = ACTIONS(3126), - [anon_sym_private] = ACTIONS(3126), - [anon_sym_protected] = ACTIONS(3126), - [anon_sym_public] = ACTIONS(3126), - [anon_sym_readonly] = ACTIONS(3126), - [anon_sym_required] = ACTIONS(3126), - [anon_sym_sealed] = ACTIONS(3126), - [anon_sym_virtual] = ACTIONS(3126), - [anon_sym_volatile] = ACTIONS(3126), - [anon_sym_where] = ACTIONS(3126), - [anon_sym_notnull] = ACTIONS(3126), - [anon_sym_unmanaged] = ACTIONS(3126), - [anon_sym_checked] = ACTIONS(3126), - [anon_sym_BANG] = ACTIONS(3128), - [anon_sym_TILDE] = ACTIONS(3128), - [anon_sym_PLUS_PLUS] = ACTIONS(3128), - [anon_sym_DASH_DASH] = ACTIONS(3128), - [anon_sym_true] = ACTIONS(3126), - [anon_sym_false] = ACTIONS(3126), - [anon_sym_PLUS] = ACTIONS(3126), - [anon_sym_DASH] = ACTIONS(3126), - [anon_sym_STAR] = ACTIONS(3128), - [anon_sym_CARET] = ACTIONS(3128), - [anon_sym_AMP] = ACTIONS(3128), - [anon_sym_this] = ACTIONS(3126), - [anon_sym_scoped] = ACTIONS(3126), - [anon_sym_base] = ACTIONS(3126), - [anon_sym_var] = ACTIONS(3126), - [sym_predefined_type] = ACTIONS(3126), - [anon_sym_break] = ACTIONS(3126), - [anon_sym_unchecked] = ACTIONS(3126), - [anon_sym_continue] = ACTIONS(3126), - [anon_sym_do] = ACTIONS(3126), - [anon_sym_while] = ACTIONS(3126), - [anon_sym_for] = ACTIONS(3126), - [anon_sym_lock] = ACTIONS(3126), - [anon_sym_yield] = ACTIONS(3126), - [anon_sym_switch] = ACTIONS(3126), - [anon_sym_default] = ACTIONS(3126), - [anon_sym_throw] = ACTIONS(3126), - [anon_sym_try] = ACTIONS(3126), - [anon_sym_catch] = ACTIONS(3126), - [anon_sym_when] = ACTIONS(3126), - [anon_sym_finally] = ACTIONS(3126), - [anon_sym_await] = ACTIONS(3126), - [anon_sym_foreach] = ACTIONS(3126), - [anon_sym_goto] = ACTIONS(3126), - [anon_sym_if] = ACTIONS(3126), - [anon_sym_else] = ACTIONS(3126), - [anon_sym_DOT_DOT] = ACTIONS(3128), - [anon_sym_from] = ACTIONS(3126), - [anon_sym_into] = ACTIONS(3126), - [anon_sym_join] = ACTIONS(3126), - [anon_sym_on] = ACTIONS(3126), - [anon_sym_equals] = ACTIONS(3126), - [anon_sym_let] = ACTIONS(3126), - [anon_sym_orderby] = ACTIONS(3126), - [anon_sym_ascending] = ACTIONS(3126), - [anon_sym_descending] = ACTIONS(3126), - [anon_sym_group] = ACTIONS(3126), - [anon_sym_by] = ACTIONS(3126), - [anon_sym_select] = ACTIONS(3126), - [anon_sym_stackalloc] = ACTIONS(3126), - [anon_sym_sizeof] = ACTIONS(3126), - [anon_sym_typeof] = ACTIONS(3126), - [anon_sym___makeref] = ACTIONS(3126), - [anon_sym___reftype] = ACTIONS(3126), - [anon_sym___refvalue] = ACTIONS(3126), - [sym_null_literal] = ACTIONS(3126), - [anon_sym_SQUOTE] = ACTIONS(3128), - [sym_integer_literal] = ACTIONS(3126), - [sym_real_literal] = ACTIONS(3128), - [anon_sym_DQUOTE] = ACTIONS(3128), - [sym_verbatim_string_literal] = ACTIONS(3128), - [aux_sym_preproc_if_token1] = ACTIONS(3128), - [aux_sym_preproc_if_token3] = ACTIONS(3128), - [aux_sym_preproc_else_token1] = ACTIONS(3128), - [aux_sym_preproc_elif_token1] = ACTIONS(3128), + [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(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), @@ -366205,651 +369853,3350 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(3128), - [sym_interpolation_verbatim_start] = ACTIONS(3128), - [sym_interpolation_raw_start] = ACTIONS(3128), - [sym_raw_string_start] = ACTIONS(3128), + [sym_interpolation_regular_start] = ACTIONS(3219), + [sym_interpolation_verbatim_start] = ACTIONS(3219), + [sym_interpolation_raw_start] = ACTIONS(3219), + [sym_raw_string_start] = ACTIONS(3219), }, - [1924] = { - [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), - [sym__identifier_token] = ACTIONS(3130), - [anon_sym_extern] = ACTIONS(3130), - [anon_sym_alias] = ACTIONS(3130), - [anon_sym_SEMI] = ACTIONS(3132), - [anon_sym_global] = ACTIONS(3130), - [anon_sym_using] = ACTIONS(3130), - [anon_sym_unsafe] = ACTIONS(3130), - [anon_sym_static] = ACTIONS(3130), - [anon_sym_LBRACK] = ACTIONS(3132), - [anon_sym_LPAREN] = ACTIONS(3132), - [anon_sym_return] = ACTIONS(3130), - [anon_sym_namespace] = ACTIONS(3130), - [anon_sym_class] = ACTIONS(3130), - [anon_sym_ref] = ACTIONS(3130), - [anon_sym_struct] = ACTIONS(3130), - [anon_sym_enum] = ACTIONS(3130), - [anon_sym_LBRACE] = ACTIONS(3132), - [anon_sym_interface] = ACTIONS(3130), - [anon_sym_delegate] = ACTIONS(3130), - [anon_sym_record] = ACTIONS(3130), - [anon_sym_abstract] = ACTIONS(3130), - [anon_sym_async] = ACTIONS(3130), - [anon_sym_const] = ACTIONS(3130), - [anon_sym_file] = ACTIONS(3130), - [anon_sym_fixed] = ACTIONS(3130), - [anon_sym_internal] = ACTIONS(3130), - [anon_sym_new] = ACTIONS(3130), - [anon_sym_override] = ACTIONS(3130), - [anon_sym_partial] = ACTIONS(3130), - [anon_sym_private] = ACTIONS(3130), - [anon_sym_protected] = ACTIONS(3130), - [anon_sym_public] = ACTIONS(3130), - [anon_sym_readonly] = ACTIONS(3130), - [anon_sym_required] = ACTIONS(3130), - [anon_sym_sealed] = ACTIONS(3130), - [anon_sym_virtual] = ACTIONS(3130), - [anon_sym_volatile] = ACTIONS(3130), - [anon_sym_where] = ACTIONS(3130), - [anon_sym_notnull] = ACTIONS(3130), - [anon_sym_unmanaged] = ACTIONS(3130), - [anon_sym_checked] = ACTIONS(3130), - [anon_sym_BANG] = ACTIONS(3132), - [anon_sym_TILDE] = ACTIONS(3132), - [anon_sym_PLUS_PLUS] = ACTIONS(3132), - [anon_sym_DASH_DASH] = ACTIONS(3132), - [anon_sym_true] = ACTIONS(3130), - [anon_sym_false] = ACTIONS(3130), - [anon_sym_PLUS] = ACTIONS(3130), - [anon_sym_DASH] = ACTIONS(3130), - [anon_sym_STAR] = ACTIONS(3132), - [anon_sym_CARET] = ACTIONS(3132), - [anon_sym_AMP] = ACTIONS(3132), - [anon_sym_this] = ACTIONS(3130), - [anon_sym_scoped] = ACTIONS(3130), - [anon_sym_base] = ACTIONS(3130), - [anon_sym_var] = ACTIONS(3130), - [sym_predefined_type] = ACTIONS(3130), - [anon_sym_break] = ACTIONS(3130), - [anon_sym_unchecked] = ACTIONS(3130), - [anon_sym_continue] = ACTIONS(3130), - [anon_sym_do] = ACTIONS(3130), - [anon_sym_while] = ACTIONS(3130), - [anon_sym_for] = ACTIONS(3130), - [anon_sym_lock] = ACTIONS(3130), - [anon_sym_yield] = ACTIONS(3130), - [anon_sym_switch] = ACTIONS(3130), - [anon_sym_default] = ACTIONS(3130), - [anon_sym_throw] = ACTIONS(3130), - [anon_sym_try] = ACTIONS(3130), - [anon_sym_catch] = ACTIONS(3130), - [anon_sym_when] = ACTIONS(3130), - [anon_sym_finally] = ACTIONS(3130), - [anon_sym_await] = ACTIONS(3130), - [anon_sym_foreach] = ACTIONS(3130), - [anon_sym_goto] = ACTIONS(3130), - [anon_sym_if] = ACTIONS(3130), - [anon_sym_else] = ACTIONS(3130), - [anon_sym_DOT_DOT] = ACTIONS(3132), - [anon_sym_from] = ACTIONS(3130), - [anon_sym_into] = ACTIONS(3130), - [anon_sym_join] = ACTIONS(3130), - [anon_sym_on] = ACTIONS(3130), - [anon_sym_equals] = ACTIONS(3130), - [anon_sym_let] = ACTIONS(3130), - [anon_sym_orderby] = ACTIONS(3130), - [anon_sym_ascending] = ACTIONS(3130), - [anon_sym_descending] = ACTIONS(3130), - [anon_sym_group] = ACTIONS(3130), - [anon_sym_by] = ACTIONS(3130), - [anon_sym_select] = ACTIONS(3130), - [anon_sym_stackalloc] = ACTIONS(3130), - [anon_sym_sizeof] = ACTIONS(3130), - [anon_sym_typeof] = ACTIONS(3130), - [anon_sym___makeref] = ACTIONS(3130), - [anon_sym___reftype] = ACTIONS(3130), - [anon_sym___refvalue] = ACTIONS(3130), - [sym_null_literal] = ACTIONS(3130), - [anon_sym_SQUOTE] = ACTIONS(3132), - [sym_integer_literal] = ACTIONS(3130), - [sym_real_literal] = ACTIONS(3132), - [anon_sym_DQUOTE] = ACTIONS(3132), - [sym_verbatim_string_literal] = ACTIONS(3132), - [aux_sym_preproc_if_token1] = ACTIONS(3132), - [aux_sym_preproc_if_token3] = ACTIONS(3132), - [aux_sym_preproc_else_token1] = ACTIONS(3132), - [aux_sym_preproc_elif_token1] = ACTIONS(3132), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(3132), - [sym_interpolation_verbatim_start] = ACTIONS(3132), - [sym_interpolation_raw_start] = ACTIONS(3132), - [sym_raw_string_start] = ACTIONS(3132), + [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(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), }, - [1925] = { - [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), - [sym__identifier_token] = ACTIONS(3134), - [anon_sym_extern] = ACTIONS(3134), - [anon_sym_alias] = ACTIONS(3134), - [anon_sym_SEMI] = ACTIONS(3136), - [anon_sym_global] = ACTIONS(3134), - [anon_sym_using] = ACTIONS(3134), - [anon_sym_unsafe] = ACTIONS(3134), - [anon_sym_static] = ACTIONS(3134), - [anon_sym_LBRACK] = ACTIONS(3136), - [anon_sym_LPAREN] = ACTIONS(3136), - [anon_sym_return] = ACTIONS(3134), - [anon_sym_namespace] = ACTIONS(3134), - [anon_sym_class] = ACTIONS(3134), - [anon_sym_ref] = ACTIONS(3134), - [anon_sym_struct] = ACTIONS(3134), - [anon_sym_enum] = ACTIONS(3134), - [anon_sym_LBRACE] = ACTIONS(3136), - [anon_sym_interface] = ACTIONS(3134), - [anon_sym_delegate] = ACTIONS(3134), - [anon_sym_record] = ACTIONS(3134), - [anon_sym_abstract] = ACTIONS(3134), - [anon_sym_async] = ACTIONS(3134), - [anon_sym_const] = ACTIONS(3134), - [anon_sym_file] = ACTIONS(3134), - [anon_sym_fixed] = ACTIONS(3134), - [anon_sym_internal] = ACTIONS(3134), - [anon_sym_new] = ACTIONS(3134), - [anon_sym_override] = ACTIONS(3134), - [anon_sym_partial] = ACTIONS(3134), - [anon_sym_private] = ACTIONS(3134), - [anon_sym_protected] = ACTIONS(3134), - [anon_sym_public] = ACTIONS(3134), - [anon_sym_readonly] = ACTIONS(3134), - [anon_sym_required] = ACTIONS(3134), - [anon_sym_sealed] = ACTIONS(3134), - [anon_sym_virtual] = ACTIONS(3134), - [anon_sym_volatile] = ACTIONS(3134), - [anon_sym_where] = ACTIONS(3134), - [anon_sym_notnull] = ACTIONS(3134), - [anon_sym_unmanaged] = ACTIONS(3134), - [anon_sym_checked] = ACTIONS(3134), - [anon_sym_BANG] = ACTIONS(3136), - [anon_sym_TILDE] = ACTIONS(3136), - [anon_sym_PLUS_PLUS] = ACTIONS(3136), - [anon_sym_DASH_DASH] = ACTIONS(3136), - [anon_sym_true] = ACTIONS(3134), - [anon_sym_false] = ACTIONS(3134), - [anon_sym_PLUS] = ACTIONS(3134), - [anon_sym_DASH] = ACTIONS(3134), - [anon_sym_STAR] = ACTIONS(3136), - [anon_sym_CARET] = ACTIONS(3136), - [anon_sym_AMP] = ACTIONS(3136), - [anon_sym_this] = ACTIONS(3134), - [anon_sym_scoped] = ACTIONS(3134), - [anon_sym_base] = ACTIONS(3134), - [anon_sym_var] = ACTIONS(3134), - [sym_predefined_type] = ACTIONS(3134), - [anon_sym_break] = ACTIONS(3134), - [anon_sym_unchecked] = ACTIONS(3134), - [anon_sym_continue] = ACTIONS(3134), - [anon_sym_do] = ACTIONS(3134), - [anon_sym_while] = ACTIONS(3134), - [anon_sym_for] = ACTIONS(3134), - [anon_sym_lock] = ACTIONS(3134), - [anon_sym_yield] = ACTIONS(3134), - [anon_sym_switch] = ACTIONS(3134), - [anon_sym_default] = ACTIONS(3134), - [anon_sym_throw] = ACTIONS(3134), - [anon_sym_try] = ACTIONS(3134), - [anon_sym_catch] = ACTIONS(3134), - [anon_sym_when] = ACTIONS(3134), - [anon_sym_finally] = ACTIONS(3134), - [anon_sym_await] = ACTIONS(3134), - [anon_sym_foreach] = ACTIONS(3134), - [anon_sym_goto] = ACTIONS(3134), - [anon_sym_if] = ACTIONS(3134), - [anon_sym_else] = ACTIONS(3134), - [anon_sym_DOT_DOT] = ACTIONS(3136), - [anon_sym_from] = ACTIONS(3134), - [anon_sym_into] = ACTIONS(3134), - [anon_sym_join] = ACTIONS(3134), - [anon_sym_on] = ACTIONS(3134), - [anon_sym_equals] = ACTIONS(3134), - [anon_sym_let] = ACTIONS(3134), - [anon_sym_orderby] = ACTIONS(3134), - [anon_sym_ascending] = ACTIONS(3134), - [anon_sym_descending] = ACTIONS(3134), - [anon_sym_group] = ACTIONS(3134), - [anon_sym_by] = ACTIONS(3134), - [anon_sym_select] = ACTIONS(3134), - [anon_sym_stackalloc] = ACTIONS(3134), - [anon_sym_sizeof] = ACTIONS(3134), - [anon_sym_typeof] = ACTIONS(3134), - [anon_sym___makeref] = ACTIONS(3134), - [anon_sym___reftype] = ACTIONS(3134), - [anon_sym___refvalue] = ACTIONS(3134), - [sym_null_literal] = ACTIONS(3134), - [anon_sym_SQUOTE] = ACTIONS(3136), - [sym_integer_literal] = ACTIONS(3134), - [sym_real_literal] = ACTIONS(3136), - [anon_sym_DQUOTE] = ACTIONS(3136), - [sym_verbatim_string_literal] = ACTIONS(3136), - [aux_sym_preproc_if_token1] = ACTIONS(3136), - [aux_sym_preproc_if_token3] = ACTIONS(3136), - [aux_sym_preproc_else_token1] = ACTIONS(3136), - [aux_sym_preproc_elif_token1] = ACTIONS(3136), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(3136), - [sym_interpolation_verbatim_start] = ACTIONS(3136), - [sym_interpolation_raw_start] = ACTIONS(3136), - [sym_raw_string_start] = ACTIONS(3136), + [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(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), }, - [1926] = { - [sym_catch_clause] = STATE(1967), - [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_try_statement_repeat1] = STATE(1926), - [ts_builtin_sym_end] = ACTIONS(3111), - [sym__identifier_token] = ACTIONS(3109), - [anon_sym_extern] = ACTIONS(3109), - [anon_sym_alias] = ACTIONS(3109), - [anon_sym_SEMI] = ACTIONS(3111), - [anon_sym_global] = ACTIONS(3109), - [anon_sym_using] = ACTIONS(3109), - [anon_sym_unsafe] = ACTIONS(3109), - [anon_sym_static] = ACTIONS(3109), - [anon_sym_LBRACK] = ACTIONS(3111), - [anon_sym_LPAREN] = ACTIONS(3111), - [anon_sym_return] = ACTIONS(3109), - [anon_sym_namespace] = ACTIONS(3109), - [anon_sym_class] = ACTIONS(3109), - [anon_sym_ref] = ACTIONS(3109), - [anon_sym_struct] = ACTIONS(3109), - [anon_sym_enum] = ACTIONS(3109), - [anon_sym_LBRACE] = ACTIONS(3111), - [anon_sym_interface] = ACTIONS(3109), - [anon_sym_delegate] = ACTIONS(3109), - [anon_sym_record] = ACTIONS(3109), - [anon_sym_abstract] = ACTIONS(3109), - [anon_sym_async] = ACTIONS(3109), - [anon_sym_const] = ACTIONS(3109), - [anon_sym_file] = ACTIONS(3109), - [anon_sym_fixed] = ACTIONS(3109), - [anon_sym_internal] = ACTIONS(3109), - [anon_sym_new] = ACTIONS(3109), - [anon_sym_override] = ACTIONS(3109), - [anon_sym_partial] = ACTIONS(3109), - [anon_sym_private] = ACTIONS(3109), - [anon_sym_protected] = ACTIONS(3109), - [anon_sym_public] = ACTIONS(3109), - [anon_sym_readonly] = ACTIONS(3109), - [anon_sym_required] = ACTIONS(3109), - [anon_sym_sealed] = ACTIONS(3109), - [anon_sym_virtual] = ACTIONS(3109), - [anon_sym_volatile] = ACTIONS(3109), - [anon_sym_where] = ACTIONS(3109), - [anon_sym_notnull] = ACTIONS(3109), - [anon_sym_unmanaged] = ACTIONS(3109), - [anon_sym_checked] = ACTIONS(3109), - [anon_sym_BANG] = ACTIONS(3111), - [anon_sym_TILDE] = ACTIONS(3111), - [anon_sym_PLUS_PLUS] = ACTIONS(3111), - [anon_sym_DASH_DASH] = ACTIONS(3111), - [anon_sym_true] = ACTIONS(3109), - [anon_sym_false] = ACTIONS(3109), - [anon_sym_PLUS] = ACTIONS(3109), - [anon_sym_DASH] = ACTIONS(3109), - [anon_sym_STAR] = ACTIONS(3111), - [anon_sym_CARET] = ACTIONS(3111), - [anon_sym_AMP] = ACTIONS(3111), - [anon_sym_this] = ACTIONS(3109), - [anon_sym_scoped] = ACTIONS(3109), - [anon_sym_base] = ACTIONS(3109), - [anon_sym_var] = ACTIONS(3109), - [sym_predefined_type] = ACTIONS(3109), - [anon_sym_break] = ACTIONS(3109), - [anon_sym_unchecked] = ACTIONS(3109), - [anon_sym_continue] = ACTIONS(3109), - [anon_sym_do] = ACTIONS(3109), - [anon_sym_while] = ACTIONS(3109), - [anon_sym_for] = ACTIONS(3109), - [anon_sym_lock] = ACTIONS(3109), - [anon_sym_yield] = ACTIONS(3109), - [anon_sym_switch] = ACTIONS(3109), - [anon_sym_default] = ACTIONS(3109), - [anon_sym_throw] = ACTIONS(3109), - [anon_sym_try] = ACTIONS(3109), - [anon_sym_catch] = ACTIONS(3138), - [anon_sym_when] = ACTIONS(3109), - [anon_sym_finally] = ACTIONS(3109), - [anon_sym_await] = ACTIONS(3109), - [anon_sym_foreach] = ACTIONS(3109), - [anon_sym_goto] = ACTIONS(3109), - [anon_sym_if] = ACTIONS(3109), - [anon_sym_else] = ACTIONS(3109), - [anon_sym_DOT_DOT] = ACTIONS(3111), - [anon_sym_from] = ACTIONS(3109), - [anon_sym_into] = ACTIONS(3109), - [anon_sym_join] = ACTIONS(3109), - [anon_sym_on] = ACTIONS(3109), - [anon_sym_equals] = ACTIONS(3109), - [anon_sym_let] = ACTIONS(3109), - [anon_sym_orderby] = ACTIONS(3109), - [anon_sym_ascending] = ACTIONS(3109), - [anon_sym_descending] = ACTIONS(3109), - [anon_sym_group] = ACTIONS(3109), - [anon_sym_by] = ACTIONS(3109), - [anon_sym_select] = ACTIONS(3109), - [anon_sym_stackalloc] = ACTIONS(3109), - [anon_sym_sizeof] = ACTIONS(3109), - [anon_sym_typeof] = ACTIONS(3109), - [anon_sym___makeref] = ACTIONS(3109), - [anon_sym___reftype] = ACTIONS(3109), - [anon_sym___refvalue] = ACTIONS(3109), - [sym_null_literal] = ACTIONS(3109), - [anon_sym_SQUOTE] = ACTIONS(3111), - [sym_integer_literal] = ACTIONS(3109), - [sym_real_literal] = ACTIONS(3111), - [anon_sym_DQUOTE] = ACTIONS(3111), - [sym_verbatim_string_literal] = ACTIONS(3111), - [aux_sym_preproc_if_token1] = ACTIONS(3111), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(3111), - [sym_interpolation_verbatim_start] = ACTIONS(3111), - [sym_interpolation_raw_start] = ACTIONS(3111), - [sym_raw_string_start] = ACTIONS(3111), + [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(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), }, - [1927] = { - [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), - [sym__identifier_token] = ACTIONS(3141), - [anon_sym_extern] = ACTIONS(3141), - [anon_sym_alias] = ACTIONS(3141), - [anon_sym_SEMI] = ACTIONS(3143), - [anon_sym_global] = ACTIONS(3141), - [anon_sym_using] = ACTIONS(3141), - [anon_sym_unsafe] = ACTIONS(3141), - [anon_sym_static] = ACTIONS(3141), - [anon_sym_LBRACK] = ACTIONS(3143), - [anon_sym_LPAREN] = ACTIONS(3143), - [anon_sym_return] = ACTIONS(3141), - [anon_sym_namespace] = ACTIONS(3141), - [anon_sym_class] = ACTIONS(3141), - [anon_sym_ref] = ACTIONS(3141), - [anon_sym_struct] = ACTIONS(3141), - [anon_sym_enum] = ACTIONS(3141), - [anon_sym_LBRACE] = ACTIONS(3143), - [anon_sym_interface] = ACTIONS(3141), - [anon_sym_delegate] = ACTIONS(3141), - [anon_sym_record] = ACTIONS(3141), - [anon_sym_abstract] = ACTIONS(3141), - [anon_sym_async] = ACTIONS(3141), - [anon_sym_const] = ACTIONS(3141), - [anon_sym_file] = ACTIONS(3141), - [anon_sym_fixed] = ACTIONS(3141), - [anon_sym_internal] = ACTIONS(3141), - [anon_sym_new] = ACTIONS(3141), - [anon_sym_override] = ACTIONS(3141), - [anon_sym_partial] = ACTIONS(3141), - [anon_sym_private] = ACTIONS(3141), - [anon_sym_protected] = ACTIONS(3141), - [anon_sym_public] = ACTIONS(3141), - [anon_sym_readonly] = ACTIONS(3141), - [anon_sym_required] = ACTIONS(3141), - [anon_sym_sealed] = ACTIONS(3141), - [anon_sym_virtual] = ACTIONS(3141), - [anon_sym_volatile] = ACTIONS(3141), - [anon_sym_where] = ACTIONS(3141), - [anon_sym_notnull] = ACTIONS(3141), - [anon_sym_unmanaged] = ACTIONS(3141), - [anon_sym_checked] = ACTIONS(3141), - [anon_sym_BANG] = ACTIONS(3143), - [anon_sym_TILDE] = ACTIONS(3143), - [anon_sym_PLUS_PLUS] = ACTIONS(3143), - [anon_sym_DASH_DASH] = ACTIONS(3143), - [anon_sym_true] = ACTIONS(3141), - [anon_sym_false] = ACTIONS(3141), - [anon_sym_PLUS] = ACTIONS(3141), - [anon_sym_DASH] = ACTIONS(3141), - [anon_sym_STAR] = ACTIONS(3143), - [anon_sym_CARET] = ACTIONS(3143), - [anon_sym_AMP] = ACTIONS(3143), - [anon_sym_this] = ACTIONS(3141), - [anon_sym_scoped] = ACTIONS(3141), - [anon_sym_base] = ACTIONS(3141), - [anon_sym_var] = ACTIONS(3141), - [sym_predefined_type] = ACTIONS(3141), - [anon_sym_break] = ACTIONS(3141), - [anon_sym_unchecked] = ACTIONS(3141), - [anon_sym_continue] = ACTIONS(3141), - [anon_sym_do] = ACTIONS(3141), - [anon_sym_while] = ACTIONS(3141), - [anon_sym_for] = ACTIONS(3141), - [anon_sym_lock] = ACTIONS(3141), - [anon_sym_yield] = ACTIONS(3141), - [anon_sym_switch] = ACTIONS(3141), - [anon_sym_default] = ACTIONS(3141), - [anon_sym_throw] = ACTIONS(3141), - [anon_sym_try] = ACTIONS(3141), - [anon_sym_catch] = ACTIONS(3141), - [anon_sym_when] = ACTIONS(3141), - [anon_sym_finally] = ACTIONS(3141), - [anon_sym_await] = ACTIONS(3141), - [anon_sym_foreach] = ACTIONS(3141), - [anon_sym_goto] = ACTIONS(3141), - [anon_sym_if] = ACTIONS(3141), - [anon_sym_else] = ACTIONS(3141), - [anon_sym_DOT_DOT] = ACTIONS(3143), - [anon_sym_from] = ACTIONS(3141), - [anon_sym_into] = ACTIONS(3141), - [anon_sym_join] = ACTIONS(3141), - [anon_sym_on] = ACTIONS(3141), - [anon_sym_equals] = ACTIONS(3141), - [anon_sym_let] = ACTIONS(3141), - [anon_sym_orderby] = ACTIONS(3141), - [anon_sym_ascending] = ACTIONS(3141), - [anon_sym_descending] = ACTIONS(3141), - [anon_sym_group] = ACTIONS(3141), - [anon_sym_by] = ACTIONS(3141), - [anon_sym_select] = ACTIONS(3141), - [anon_sym_stackalloc] = ACTIONS(3141), - [anon_sym_sizeof] = ACTIONS(3141), - [anon_sym_typeof] = ACTIONS(3141), - [anon_sym___makeref] = ACTIONS(3141), - [anon_sym___reftype] = ACTIONS(3141), - [anon_sym___refvalue] = ACTIONS(3141), - [sym_null_literal] = ACTIONS(3141), - [anon_sym_SQUOTE] = ACTIONS(3143), - [sym_integer_literal] = ACTIONS(3141), - [sym_real_literal] = ACTIONS(3143), - [anon_sym_DQUOTE] = ACTIONS(3143), - [sym_verbatim_string_literal] = ACTIONS(3143), - [aux_sym_preproc_if_token1] = ACTIONS(3143), - [aux_sym_preproc_if_token3] = ACTIONS(3143), - [aux_sym_preproc_else_token1] = ACTIONS(3143), - [aux_sym_preproc_elif_token1] = ACTIONS(3143), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(3143), - [sym_interpolation_verbatim_start] = ACTIONS(3143), - [sym_interpolation_raw_start] = ACTIONS(3143), - [sym_raw_string_start] = ACTIONS(3143), + [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(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), }, - [1928] = { - [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), - [sym__identifier_token] = ACTIONS(2951), - [anon_sym_extern] = ACTIONS(2951), - [anon_sym_alias] = ACTIONS(2951), - [anon_sym_SEMI] = ACTIONS(2953), - [anon_sym_global] = ACTIONS(2951), - [anon_sym_using] = ACTIONS(2951), - [anon_sym_unsafe] = ACTIONS(2951), - [anon_sym_static] = ACTIONS(2951), - [anon_sym_LBRACK] = ACTIONS(2953), - [anon_sym_LPAREN] = ACTIONS(2953), - [anon_sym_return] = ACTIONS(2951), - [anon_sym_namespace] = ACTIONS(2951), - [anon_sym_class] = ACTIONS(2951), - [anon_sym_ref] = ACTIONS(2951), - [anon_sym_struct] = ACTIONS(2951), - [anon_sym_enum] = ACTIONS(2951), - [anon_sym_LBRACE] = ACTIONS(2953), - [anon_sym_interface] = ACTIONS(2951), - [anon_sym_delegate] = ACTIONS(2951), - [anon_sym_record] = ACTIONS(2951), - [anon_sym_abstract] = ACTIONS(2951), - [anon_sym_async] = ACTIONS(2951), - [anon_sym_const] = ACTIONS(2951), - [anon_sym_file] = ACTIONS(2951), - [anon_sym_fixed] = ACTIONS(2951), - [anon_sym_internal] = ACTIONS(2951), - [anon_sym_new] = ACTIONS(2951), - [anon_sym_override] = ACTIONS(2951), - [anon_sym_partial] = ACTIONS(2951), - [anon_sym_private] = ACTIONS(2951), - [anon_sym_protected] = ACTIONS(2951), - [anon_sym_public] = ACTIONS(2951), - [anon_sym_readonly] = ACTIONS(2951), - [anon_sym_required] = ACTIONS(2951), - [anon_sym_sealed] = ACTIONS(2951), - [anon_sym_virtual] = ACTIONS(2951), - [anon_sym_volatile] = ACTIONS(2951), - [anon_sym_where] = ACTIONS(2951), - [anon_sym_notnull] = ACTIONS(2951), - [anon_sym_unmanaged] = ACTIONS(2951), - [anon_sym_checked] = ACTIONS(2951), - [anon_sym_BANG] = ACTIONS(2953), - [anon_sym_TILDE] = ACTIONS(2953), - [anon_sym_PLUS_PLUS] = ACTIONS(2953), - [anon_sym_DASH_DASH] = ACTIONS(2953), - [anon_sym_true] = ACTIONS(2951), - [anon_sym_false] = ACTIONS(2951), - [anon_sym_PLUS] = ACTIONS(2951), - [anon_sym_DASH] = ACTIONS(2951), - [anon_sym_STAR] = ACTIONS(2953), - [anon_sym_CARET] = ACTIONS(2953), - [anon_sym_AMP] = ACTIONS(2953), - [anon_sym_this] = ACTIONS(2951), - [anon_sym_scoped] = ACTIONS(2951), - [anon_sym_base] = ACTIONS(2951), - [anon_sym_var] = ACTIONS(2951), - [sym_predefined_type] = ACTIONS(2951), - [anon_sym_break] = ACTIONS(2951), - [anon_sym_unchecked] = ACTIONS(2951), - [anon_sym_continue] = ACTIONS(2951), - [anon_sym_do] = ACTIONS(2951), - [anon_sym_while] = ACTIONS(2951), - [anon_sym_for] = ACTIONS(2951), - [anon_sym_lock] = ACTIONS(2951), - [anon_sym_yield] = ACTIONS(2951), - [anon_sym_switch] = ACTIONS(2951), - [anon_sym_default] = ACTIONS(2951), - [anon_sym_throw] = ACTIONS(2951), - [anon_sym_try] = ACTIONS(2951), - [anon_sym_catch] = ACTIONS(2951), - [anon_sym_when] = ACTIONS(2951), - [anon_sym_finally] = ACTIONS(2951), - [anon_sym_await] = ACTIONS(2951), - [anon_sym_foreach] = ACTIONS(2951), - [anon_sym_goto] = ACTIONS(2951), - [anon_sym_if] = ACTIONS(2951), - [anon_sym_else] = ACTIONS(2951), - [anon_sym_DOT_DOT] = ACTIONS(2953), - [anon_sym_from] = ACTIONS(2951), - [anon_sym_into] = ACTIONS(2951), - [anon_sym_join] = ACTIONS(2951), - [anon_sym_on] = ACTIONS(2951), - [anon_sym_equals] = ACTIONS(2951), - [anon_sym_let] = ACTIONS(2951), - [anon_sym_orderby] = ACTIONS(2951), - [anon_sym_ascending] = ACTIONS(2951), - [anon_sym_descending] = ACTIONS(2951), - [anon_sym_group] = ACTIONS(2951), - [anon_sym_by] = ACTIONS(2951), - [anon_sym_select] = ACTIONS(2951), - [anon_sym_stackalloc] = ACTIONS(2951), - [anon_sym_sizeof] = ACTIONS(2951), - [anon_sym_typeof] = ACTIONS(2951), - [anon_sym___makeref] = ACTIONS(2951), - [anon_sym___reftype] = ACTIONS(2951), - [anon_sym___refvalue] = ACTIONS(2951), - [sym_null_literal] = ACTIONS(2951), - [anon_sym_SQUOTE] = ACTIONS(2953), - [sym_integer_literal] = ACTIONS(2951), - [sym_real_literal] = ACTIONS(2953), - [anon_sym_DQUOTE] = ACTIONS(2953), - [sym_verbatim_string_literal] = ACTIONS(2953), - [aux_sym_preproc_if_token1] = ACTIONS(2953), - [aux_sym_preproc_if_token3] = ACTIONS(2953), - [aux_sym_preproc_else_token1] = ACTIONS(2953), - [aux_sym_preproc_elif_token1] = ACTIONS(2953), + [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(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), + }, + [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(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), + }, + [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(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), + }, + [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(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), + }, + [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(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), + }, + [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(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), + }, + [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(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), + }, + [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), + [ts_builtin_sym_end] = ACTIONS(3124), + [sym__identifier_token] = ACTIONS(3122), + [anon_sym_extern] = ACTIONS(3122), + [anon_sym_alias] = ACTIONS(3122), + [anon_sym_SEMI] = ACTIONS(3124), + [anon_sym_global] = ACTIONS(3122), + [anon_sym_using] = ACTIONS(3122), + [anon_sym_unsafe] = ACTIONS(3122), + [anon_sym_static] = ACTIONS(3122), + [anon_sym_LBRACK] = ACTIONS(3124), + [anon_sym_LPAREN] = ACTIONS(3124), + [anon_sym_return] = ACTIONS(3122), + [anon_sym_namespace] = ACTIONS(3122), + [anon_sym_class] = ACTIONS(3122), + [anon_sym_ref] = ACTIONS(3122), + [anon_sym_struct] = ACTIONS(3122), + [anon_sym_enum] = ACTIONS(3122), + [anon_sym_LBRACE] = ACTIONS(3124), + [anon_sym_interface] = ACTIONS(3122), + [anon_sym_delegate] = ACTIONS(3122), + [anon_sym_record] = ACTIONS(3122), + [anon_sym_abstract] = ACTIONS(3122), + [anon_sym_async] = ACTIONS(3122), + [anon_sym_const] = ACTIONS(3122), + [anon_sym_file] = ACTIONS(3122), + [anon_sym_fixed] = ACTIONS(3122), + [anon_sym_internal] = ACTIONS(3122), + [anon_sym_new] = ACTIONS(3122), + [anon_sym_override] = ACTIONS(3122), + [anon_sym_partial] = ACTIONS(3122), + [anon_sym_private] = ACTIONS(3122), + [anon_sym_protected] = ACTIONS(3122), + [anon_sym_public] = ACTIONS(3122), + [anon_sym_readonly] = ACTIONS(3122), + [anon_sym_required] = ACTIONS(3122), + [anon_sym_sealed] = ACTIONS(3122), + [anon_sym_virtual] = ACTIONS(3122), + [anon_sym_volatile] = ACTIONS(3122), + [anon_sym_where] = ACTIONS(3122), + [anon_sym_notnull] = ACTIONS(3122), + [anon_sym_unmanaged] = ACTIONS(3122), + [anon_sym_checked] = ACTIONS(3122), + [anon_sym_BANG] = ACTIONS(3124), + [anon_sym_TILDE] = ACTIONS(3124), + [anon_sym_PLUS_PLUS] = ACTIONS(3124), + [anon_sym_DASH_DASH] = ACTIONS(3124), + [anon_sym_true] = ACTIONS(3122), + [anon_sym_false] = ACTIONS(3122), + [anon_sym_PLUS] = ACTIONS(3122), + [anon_sym_DASH] = ACTIONS(3122), + [anon_sym_STAR] = ACTIONS(3124), + [anon_sym_CARET] = ACTIONS(3124), + [anon_sym_AMP] = ACTIONS(3124), + [anon_sym_this] = ACTIONS(3122), + [anon_sym_scoped] = ACTIONS(3122), + [anon_sym_base] = ACTIONS(3122), + [anon_sym_var] = ACTIONS(3122), + [sym_predefined_type] = ACTIONS(3122), + [anon_sym_break] = ACTIONS(3122), + [anon_sym_unchecked] = ACTIONS(3122), + [anon_sym_continue] = ACTIONS(3122), + [anon_sym_do] = ACTIONS(3122), + [anon_sym_while] = ACTIONS(3122), + [anon_sym_for] = ACTIONS(3122), + [anon_sym_lock] = ACTIONS(3122), + [anon_sym_yield] = ACTIONS(3122), + [anon_sym_switch] = ACTIONS(3122), + [anon_sym_default] = ACTIONS(3122), + [anon_sym_throw] = ACTIONS(3122), + [anon_sym_try] = ACTIONS(3122), + [anon_sym_catch] = ACTIONS(3122), + [anon_sym_when] = ACTIONS(3122), + [anon_sym_finally] = ACTIONS(3122), + [anon_sym_await] = ACTIONS(3122), + [anon_sym_foreach] = ACTIONS(3122), + [anon_sym_goto] = ACTIONS(3122), + [anon_sym_if] = ACTIONS(3122), + [anon_sym_else] = ACTIONS(3122), + [anon_sym_DOT_DOT] = ACTIONS(3124), + [anon_sym_from] = ACTIONS(3122), + [anon_sym_into] = ACTIONS(3122), + [anon_sym_join] = ACTIONS(3122), + [anon_sym_on] = ACTIONS(3122), + [anon_sym_equals] = ACTIONS(3122), + [anon_sym_let] = ACTIONS(3122), + [anon_sym_orderby] = ACTIONS(3122), + [anon_sym_ascending] = ACTIONS(3122), + [anon_sym_descending] = ACTIONS(3122), + [anon_sym_group] = ACTIONS(3122), + [anon_sym_by] = ACTIONS(3122), + [anon_sym_select] = ACTIONS(3122), + [anon_sym_stackalloc] = ACTIONS(3122), + [anon_sym_sizeof] = ACTIONS(3122), + [anon_sym_typeof] = ACTIONS(3122), + [anon_sym___makeref] = ACTIONS(3122), + [anon_sym___reftype] = ACTIONS(3122), + [anon_sym___refvalue] = ACTIONS(3122), + [sym_null_literal] = ACTIONS(3122), + [anon_sym_SQUOTE] = ACTIONS(3124), + [sym_integer_literal] = ACTIONS(3122), + [sym_real_literal] = ACTIONS(3124), + [anon_sym_DQUOTE] = ACTIONS(3124), + [sym_verbatim_string_literal] = ACTIONS(3124), + [aux_sym_preproc_if_token1] = ACTIONS(3124), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + [sym_interpolation_regular_start] = ACTIONS(3124), + [sym_interpolation_verbatim_start] = ACTIONS(3124), + [sym_interpolation_raw_start] = ACTIONS(3124), + [sym_raw_string_start] = ACTIONS(3124), + }, + [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(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), + }, + [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(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), + }, + [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(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(3273), + [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), + }, + [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(3277), + [anon_sym_extern] = ACTIONS(3277), + [anon_sym_alias] = ACTIONS(3277), + [anon_sym_SEMI] = ACTIONS(3279), + [anon_sym_global] = ACTIONS(3277), + [anon_sym_using] = ACTIONS(3277), + [anon_sym_unsafe] = ACTIONS(3277), + [anon_sym_static] = ACTIONS(3277), + [anon_sym_LBRACK] = ACTIONS(3279), + [anon_sym_LPAREN] = ACTIONS(3279), + [anon_sym_return] = ACTIONS(3277), + [anon_sym_namespace] = ACTIONS(3277), + [anon_sym_class] = ACTIONS(3277), + [anon_sym_ref] = ACTIONS(3277), + [anon_sym_struct] = ACTIONS(3277), + [anon_sym_enum] = ACTIONS(3277), + [anon_sym_LBRACE] = ACTIONS(3279), + [anon_sym_interface] = ACTIONS(3277), + [anon_sym_delegate] = ACTIONS(3277), + [anon_sym_record] = ACTIONS(3277), + [anon_sym_abstract] = ACTIONS(3277), + [anon_sym_async] = ACTIONS(3277), + [anon_sym_const] = ACTIONS(3277), + [anon_sym_file] = ACTIONS(3277), + [anon_sym_fixed] = ACTIONS(3277), + [anon_sym_internal] = ACTIONS(3277), + [anon_sym_new] = ACTIONS(3277), + [anon_sym_override] = ACTIONS(3277), + [anon_sym_partial] = ACTIONS(3277), + [anon_sym_private] = ACTIONS(3277), + [anon_sym_protected] = ACTIONS(3277), + [anon_sym_public] = ACTIONS(3277), + [anon_sym_readonly] = ACTIONS(3277), + [anon_sym_required] = ACTIONS(3277), + [anon_sym_sealed] = ACTIONS(3277), + [anon_sym_virtual] = ACTIONS(3277), + [anon_sym_volatile] = ACTIONS(3277), + [anon_sym_where] = ACTIONS(3277), + [anon_sym_notnull] = ACTIONS(3277), + [anon_sym_unmanaged] = ACTIONS(3277), + [anon_sym_checked] = ACTIONS(3277), + [anon_sym_BANG] = ACTIONS(3279), + [anon_sym_TILDE] = ACTIONS(3279), + [anon_sym_PLUS_PLUS] = ACTIONS(3279), + [anon_sym_DASH_DASH] = ACTIONS(3279), + [anon_sym_true] = ACTIONS(3277), + [anon_sym_false] = ACTIONS(3277), + [anon_sym_PLUS] = ACTIONS(3277), + [anon_sym_DASH] = ACTIONS(3277), + [anon_sym_STAR] = ACTIONS(3279), + [anon_sym_CARET] = ACTIONS(3279), + [anon_sym_AMP] = ACTIONS(3279), + [anon_sym_this] = ACTIONS(3277), + [anon_sym_scoped] = ACTIONS(3277), + [anon_sym_base] = ACTIONS(3277), + [anon_sym_var] = ACTIONS(3277), + [sym_predefined_type] = ACTIONS(3277), + [anon_sym_break] = ACTIONS(3277), + [anon_sym_unchecked] = ACTIONS(3277), + [anon_sym_continue] = ACTIONS(3277), + [anon_sym_do] = ACTIONS(3277), + [anon_sym_while] = ACTIONS(3277), + [anon_sym_for] = ACTIONS(3277), + [anon_sym_lock] = ACTIONS(3277), + [anon_sym_yield] = ACTIONS(3277), + [anon_sym_switch] = ACTIONS(3277), + [anon_sym_default] = ACTIONS(3277), + [anon_sym_throw] = ACTIONS(3277), + [anon_sym_try] = ACTIONS(3277), + [anon_sym_when] = ACTIONS(3277), + [anon_sym_await] = ACTIONS(3277), + [anon_sym_foreach] = ACTIONS(3277), + [anon_sym_goto] = ACTIONS(3277), + [anon_sym_if] = ACTIONS(3277), + [anon_sym_else] = ACTIONS(3277), + [anon_sym_DOT_DOT] = ACTIONS(3279), + [anon_sym_from] = ACTIONS(3277), + [anon_sym_into] = ACTIONS(3277), + [anon_sym_join] = ACTIONS(3277), + [anon_sym_on] = ACTIONS(3277), + [anon_sym_equals] = ACTIONS(3277), + [anon_sym_let] = ACTIONS(3277), + [anon_sym_orderby] = ACTIONS(3277), + [anon_sym_ascending] = ACTIONS(3277), + [anon_sym_descending] = ACTIONS(3277), + [anon_sym_group] = ACTIONS(3277), + [anon_sym_by] = ACTIONS(3277), + [anon_sym_select] = ACTIONS(3277), + [anon_sym_stackalloc] = ACTIONS(3277), + [anon_sym_sizeof] = ACTIONS(3277), + [anon_sym_typeof] = ACTIONS(3277), + [anon_sym___makeref] = ACTIONS(3277), + [anon_sym___reftype] = ACTIONS(3277), + [anon_sym___refvalue] = ACTIONS(3277), + [sym_null_literal] = ACTIONS(3277), + [anon_sym_SQUOTE] = ACTIONS(3279), + [sym_integer_literal] = ACTIONS(3277), + [sym_real_literal] = ACTIONS(3279), + [anon_sym_DQUOTE] = ACTIONS(3279), + [sym_verbatim_string_literal] = ACTIONS(3279), + [aux_sym_preproc_if_token1] = ACTIONS(3279), + [aux_sym_preproc_if_token3] = ACTIONS(3279), + [aux_sym_preproc_else_token1] = ACTIONS(3279), + [aux_sym_preproc_elif_token1] = ACTIONS(3279), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + [sym_interpolation_regular_start] = ACTIONS(3279), + [sym_interpolation_verbatim_start] = ACTIONS(3279), + [sym_interpolation_raw_start] = ACTIONS(3279), + [sym_raw_string_start] = ACTIONS(3279), + }, + [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(3281), + [anon_sym_extern] = ACTIONS(3281), + [anon_sym_alias] = ACTIONS(3281), + [anon_sym_SEMI] = ACTIONS(3283), + [anon_sym_global] = ACTIONS(3281), + [anon_sym_using] = ACTIONS(3281), + [anon_sym_unsafe] = ACTIONS(3281), + [anon_sym_static] = ACTIONS(3281), + [anon_sym_LBRACK] = ACTIONS(3283), + [anon_sym_LPAREN] = ACTIONS(3283), + [anon_sym_return] = ACTIONS(3281), + [anon_sym_namespace] = ACTIONS(3281), + [anon_sym_class] = ACTIONS(3281), + [anon_sym_ref] = ACTIONS(3281), + [anon_sym_struct] = ACTIONS(3281), + [anon_sym_enum] = ACTIONS(3281), + [anon_sym_LBRACE] = ACTIONS(3283), + [anon_sym_interface] = ACTIONS(3281), + [anon_sym_delegate] = ACTIONS(3281), + [anon_sym_record] = ACTIONS(3281), + [anon_sym_abstract] = ACTIONS(3281), + [anon_sym_async] = ACTIONS(3281), + [anon_sym_const] = ACTIONS(3281), + [anon_sym_file] = ACTIONS(3281), + [anon_sym_fixed] = ACTIONS(3281), + [anon_sym_internal] = ACTIONS(3281), + [anon_sym_new] = ACTIONS(3281), + [anon_sym_override] = ACTIONS(3281), + [anon_sym_partial] = ACTIONS(3281), + [anon_sym_private] = ACTIONS(3281), + [anon_sym_protected] = ACTIONS(3281), + [anon_sym_public] = ACTIONS(3281), + [anon_sym_readonly] = ACTIONS(3281), + [anon_sym_required] = ACTIONS(3281), + [anon_sym_sealed] = ACTIONS(3281), + [anon_sym_virtual] = ACTIONS(3281), + [anon_sym_volatile] = ACTIONS(3281), + [anon_sym_where] = ACTIONS(3281), + [anon_sym_notnull] = ACTIONS(3281), + [anon_sym_unmanaged] = ACTIONS(3281), + [anon_sym_checked] = ACTIONS(3281), + [anon_sym_BANG] = ACTIONS(3283), + [anon_sym_TILDE] = ACTIONS(3283), + [anon_sym_PLUS_PLUS] = ACTIONS(3283), + [anon_sym_DASH_DASH] = ACTIONS(3283), + [anon_sym_true] = ACTIONS(3281), + [anon_sym_false] = ACTIONS(3281), + [anon_sym_PLUS] = ACTIONS(3281), + [anon_sym_DASH] = ACTIONS(3281), + [anon_sym_STAR] = ACTIONS(3283), + [anon_sym_CARET] = ACTIONS(3283), + [anon_sym_AMP] = ACTIONS(3283), + [anon_sym_this] = ACTIONS(3281), + [anon_sym_scoped] = ACTIONS(3281), + [anon_sym_base] = ACTIONS(3281), + [anon_sym_var] = ACTIONS(3281), + [sym_predefined_type] = ACTIONS(3281), + [anon_sym_break] = ACTIONS(3281), + [anon_sym_unchecked] = ACTIONS(3281), + [anon_sym_continue] = ACTIONS(3281), + [anon_sym_do] = ACTIONS(3281), + [anon_sym_while] = ACTIONS(3281), + [anon_sym_for] = ACTIONS(3281), + [anon_sym_lock] = ACTIONS(3281), + [anon_sym_yield] = ACTIONS(3281), + [anon_sym_switch] = ACTIONS(3281), + [anon_sym_default] = ACTIONS(3281), + [anon_sym_throw] = ACTIONS(3281), + [anon_sym_try] = ACTIONS(3281), + [anon_sym_when] = ACTIONS(3281), + [anon_sym_await] = ACTIONS(3281), + [anon_sym_foreach] = ACTIONS(3281), + [anon_sym_goto] = ACTIONS(3281), + [anon_sym_if] = ACTIONS(3281), + [anon_sym_else] = ACTIONS(3281), + [anon_sym_DOT_DOT] = ACTIONS(3283), + [anon_sym_from] = ACTIONS(3281), + [anon_sym_into] = ACTIONS(3281), + [anon_sym_join] = ACTIONS(3281), + [anon_sym_on] = ACTIONS(3281), + [anon_sym_equals] = ACTIONS(3281), + [anon_sym_let] = ACTIONS(3281), + [anon_sym_orderby] = ACTIONS(3281), + [anon_sym_ascending] = ACTIONS(3281), + [anon_sym_descending] = ACTIONS(3281), + [anon_sym_group] = ACTIONS(3281), + [anon_sym_by] = ACTIONS(3281), + [anon_sym_select] = ACTIONS(3281), + [anon_sym_stackalloc] = ACTIONS(3281), + [anon_sym_sizeof] = ACTIONS(3281), + [anon_sym_typeof] = ACTIONS(3281), + [anon_sym___makeref] = ACTIONS(3281), + [anon_sym___reftype] = ACTIONS(3281), + [anon_sym___refvalue] = ACTIONS(3281), + [sym_null_literal] = ACTIONS(3281), + [anon_sym_SQUOTE] = ACTIONS(3283), + [sym_integer_literal] = ACTIONS(3281), + [sym_real_literal] = ACTIONS(3283), + [anon_sym_DQUOTE] = ACTIONS(3283), + [sym_verbatim_string_literal] = ACTIONS(3283), + [aux_sym_preproc_if_token1] = ACTIONS(3283), + [aux_sym_preproc_if_token3] = ACTIONS(3283), + [aux_sym_preproc_else_token1] = ACTIONS(3283), + [aux_sym_preproc_elif_token1] = ACTIONS(3283), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + [sym_interpolation_regular_start] = ACTIONS(3283), + [sym_interpolation_verbatim_start] = ACTIONS(3283), + [sym_interpolation_raw_start] = ACTIONS(3283), + [sym_raw_string_start] = ACTIONS(3283), + }, + [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(3285), + [anon_sym_extern] = ACTIONS(3285), + [anon_sym_alias] = ACTIONS(3285), + [anon_sym_SEMI] = ACTIONS(3287), + [anon_sym_global] = ACTIONS(3285), + [anon_sym_using] = ACTIONS(3285), + [anon_sym_unsafe] = ACTIONS(3285), + [anon_sym_static] = ACTIONS(3285), + [anon_sym_LBRACK] = ACTIONS(3287), + [anon_sym_LPAREN] = ACTIONS(3287), + [anon_sym_return] = ACTIONS(3285), + [anon_sym_namespace] = ACTIONS(3285), + [anon_sym_class] = ACTIONS(3285), + [anon_sym_ref] = ACTIONS(3285), + [anon_sym_struct] = ACTIONS(3285), + [anon_sym_enum] = ACTIONS(3285), + [anon_sym_LBRACE] = ACTIONS(3287), + [anon_sym_interface] = ACTIONS(3285), + [anon_sym_delegate] = ACTIONS(3285), + [anon_sym_record] = ACTIONS(3285), + [anon_sym_abstract] = ACTIONS(3285), + [anon_sym_async] = ACTIONS(3285), + [anon_sym_const] = ACTIONS(3285), + [anon_sym_file] = ACTIONS(3285), + [anon_sym_fixed] = ACTIONS(3285), + [anon_sym_internal] = ACTIONS(3285), + [anon_sym_new] = ACTIONS(3285), + [anon_sym_override] = ACTIONS(3285), + [anon_sym_partial] = ACTIONS(3285), + [anon_sym_private] = ACTIONS(3285), + [anon_sym_protected] = ACTIONS(3285), + [anon_sym_public] = ACTIONS(3285), + [anon_sym_readonly] = ACTIONS(3285), + [anon_sym_required] = ACTIONS(3285), + [anon_sym_sealed] = ACTIONS(3285), + [anon_sym_virtual] = ACTIONS(3285), + [anon_sym_volatile] = ACTIONS(3285), + [anon_sym_where] = ACTIONS(3285), + [anon_sym_notnull] = ACTIONS(3285), + [anon_sym_unmanaged] = ACTIONS(3285), + [anon_sym_checked] = ACTIONS(3285), + [anon_sym_BANG] = ACTIONS(3287), + [anon_sym_TILDE] = ACTIONS(3287), + [anon_sym_PLUS_PLUS] = ACTIONS(3287), + [anon_sym_DASH_DASH] = ACTIONS(3287), + [anon_sym_true] = ACTIONS(3285), + [anon_sym_false] = ACTIONS(3285), + [anon_sym_PLUS] = ACTIONS(3285), + [anon_sym_DASH] = ACTIONS(3285), + [anon_sym_STAR] = ACTIONS(3287), + [anon_sym_CARET] = ACTIONS(3287), + [anon_sym_AMP] = ACTIONS(3287), + [anon_sym_this] = ACTIONS(3285), + [anon_sym_scoped] = ACTIONS(3285), + [anon_sym_base] = ACTIONS(3285), + [anon_sym_var] = ACTIONS(3285), + [sym_predefined_type] = ACTIONS(3285), + [anon_sym_break] = ACTIONS(3285), + [anon_sym_unchecked] = ACTIONS(3285), + [anon_sym_continue] = ACTIONS(3285), + [anon_sym_do] = ACTIONS(3285), + [anon_sym_while] = ACTIONS(3285), + [anon_sym_for] = ACTIONS(3285), + [anon_sym_lock] = ACTIONS(3285), + [anon_sym_yield] = ACTIONS(3285), + [anon_sym_switch] = ACTIONS(3285), + [anon_sym_default] = ACTIONS(3285), + [anon_sym_throw] = ACTIONS(3285), + [anon_sym_try] = ACTIONS(3285), + [anon_sym_when] = ACTIONS(3285), + [anon_sym_await] = ACTIONS(3285), + [anon_sym_foreach] = ACTIONS(3285), + [anon_sym_goto] = ACTIONS(3285), + [anon_sym_if] = ACTIONS(3285), + [anon_sym_else] = ACTIONS(3285), + [anon_sym_DOT_DOT] = ACTIONS(3287), + [anon_sym_from] = ACTIONS(3285), + [anon_sym_into] = ACTIONS(3285), + [anon_sym_join] = ACTIONS(3285), + [anon_sym_on] = ACTIONS(3285), + [anon_sym_equals] = ACTIONS(3285), + [anon_sym_let] = ACTIONS(3285), + [anon_sym_orderby] = ACTIONS(3285), + [anon_sym_ascending] = ACTIONS(3285), + [anon_sym_descending] = ACTIONS(3285), + [anon_sym_group] = ACTIONS(3285), + [anon_sym_by] = ACTIONS(3285), + [anon_sym_select] = ACTIONS(3285), + [anon_sym_stackalloc] = ACTIONS(3285), + [anon_sym_sizeof] = ACTIONS(3285), + [anon_sym_typeof] = ACTIONS(3285), + [anon_sym___makeref] = ACTIONS(3285), + [anon_sym___reftype] = ACTIONS(3285), + [anon_sym___refvalue] = ACTIONS(3285), + [sym_null_literal] = ACTIONS(3285), + [anon_sym_SQUOTE] = ACTIONS(3287), + [sym_integer_literal] = ACTIONS(3285), + [sym_real_literal] = ACTIONS(3287), + [anon_sym_DQUOTE] = ACTIONS(3287), + [sym_verbatim_string_literal] = ACTIONS(3287), + [aux_sym_preproc_if_token1] = ACTIONS(3287), + [aux_sym_preproc_if_token3] = ACTIONS(3287), + [aux_sym_preproc_else_token1] = ACTIONS(3287), + [aux_sym_preproc_elif_token1] = ACTIONS(3287), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + [sym_interpolation_regular_start] = ACTIONS(3287), + [sym_interpolation_verbatim_start] = ACTIONS(3287), + [sym_interpolation_raw_start] = ACTIONS(3287), + [sym_raw_string_start] = ACTIONS(3287), + }, + [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(3289), + [anon_sym_extern] = ACTIONS(3289), + [anon_sym_alias] = ACTIONS(3289), + [anon_sym_SEMI] = ACTIONS(3291), + [anon_sym_global] = ACTIONS(3289), + [anon_sym_using] = ACTIONS(3289), + [anon_sym_unsafe] = ACTIONS(3289), + [anon_sym_static] = ACTIONS(3289), + [anon_sym_LBRACK] = ACTIONS(3291), + [anon_sym_LPAREN] = ACTIONS(3291), + [anon_sym_return] = ACTIONS(3289), + [anon_sym_namespace] = ACTIONS(3289), + [anon_sym_class] = ACTIONS(3289), + [anon_sym_ref] = ACTIONS(3289), + [anon_sym_struct] = ACTIONS(3289), + [anon_sym_enum] = ACTIONS(3289), + [anon_sym_LBRACE] = ACTIONS(3291), + [anon_sym_interface] = ACTIONS(3289), + [anon_sym_delegate] = ACTIONS(3289), + [anon_sym_record] = ACTIONS(3289), + [anon_sym_abstract] = ACTIONS(3289), + [anon_sym_async] = ACTIONS(3289), + [anon_sym_const] = ACTIONS(3289), + [anon_sym_file] = ACTIONS(3289), + [anon_sym_fixed] = ACTIONS(3289), + [anon_sym_internal] = ACTIONS(3289), + [anon_sym_new] = ACTIONS(3289), + [anon_sym_override] = ACTIONS(3289), + [anon_sym_partial] = ACTIONS(3289), + [anon_sym_private] = ACTIONS(3289), + [anon_sym_protected] = ACTIONS(3289), + [anon_sym_public] = ACTIONS(3289), + [anon_sym_readonly] = ACTIONS(3289), + [anon_sym_required] = ACTIONS(3289), + [anon_sym_sealed] = ACTIONS(3289), + [anon_sym_virtual] = ACTIONS(3289), + [anon_sym_volatile] = ACTIONS(3289), + [anon_sym_where] = ACTIONS(3289), + [anon_sym_notnull] = ACTIONS(3289), + [anon_sym_unmanaged] = ACTIONS(3289), + [anon_sym_checked] = ACTIONS(3289), + [anon_sym_BANG] = ACTIONS(3291), + [anon_sym_TILDE] = ACTIONS(3291), + [anon_sym_PLUS_PLUS] = ACTIONS(3291), + [anon_sym_DASH_DASH] = ACTIONS(3291), + [anon_sym_true] = ACTIONS(3289), + [anon_sym_false] = ACTIONS(3289), + [anon_sym_PLUS] = ACTIONS(3289), + [anon_sym_DASH] = ACTIONS(3289), + [anon_sym_STAR] = ACTIONS(3291), + [anon_sym_CARET] = ACTIONS(3291), + [anon_sym_AMP] = ACTIONS(3291), + [anon_sym_this] = ACTIONS(3289), + [anon_sym_scoped] = ACTIONS(3289), + [anon_sym_base] = ACTIONS(3289), + [anon_sym_var] = ACTIONS(3289), + [sym_predefined_type] = ACTIONS(3289), + [anon_sym_break] = ACTIONS(3289), + [anon_sym_unchecked] = ACTIONS(3289), + [anon_sym_continue] = ACTIONS(3289), + [anon_sym_do] = ACTIONS(3289), + [anon_sym_while] = ACTIONS(3289), + [anon_sym_for] = ACTIONS(3289), + [anon_sym_lock] = ACTIONS(3289), + [anon_sym_yield] = ACTIONS(3289), + [anon_sym_switch] = ACTIONS(3289), + [anon_sym_default] = ACTIONS(3289), + [anon_sym_throw] = ACTIONS(3289), + [anon_sym_try] = ACTIONS(3289), + [anon_sym_when] = ACTIONS(3289), + [anon_sym_await] = ACTIONS(3289), + [anon_sym_foreach] = ACTIONS(3289), + [anon_sym_goto] = ACTIONS(3289), + [anon_sym_if] = ACTIONS(3289), + [anon_sym_else] = ACTIONS(3289), + [anon_sym_DOT_DOT] = ACTIONS(3291), + [anon_sym_from] = ACTIONS(3289), + [anon_sym_into] = ACTIONS(3289), + [anon_sym_join] = ACTIONS(3289), + [anon_sym_on] = ACTIONS(3289), + [anon_sym_equals] = ACTIONS(3289), + [anon_sym_let] = ACTIONS(3289), + [anon_sym_orderby] = ACTIONS(3289), + [anon_sym_ascending] = ACTIONS(3289), + [anon_sym_descending] = ACTIONS(3289), + [anon_sym_group] = ACTIONS(3289), + [anon_sym_by] = ACTIONS(3289), + [anon_sym_select] = ACTIONS(3289), + [anon_sym_stackalloc] = ACTIONS(3289), + [anon_sym_sizeof] = ACTIONS(3289), + [anon_sym_typeof] = ACTIONS(3289), + [anon_sym___makeref] = ACTIONS(3289), + [anon_sym___reftype] = ACTIONS(3289), + [anon_sym___refvalue] = ACTIONS(3289), + [sym_null_literal] = ACTIONS(3289), + [anon_sym_SQUOTE] = ACTIONS(3291), + [sym_integer_literal] = ACTIONS(3289), + [sym_real_literal] = ACTIONS(3291), + [anon_sym_DQUOTE] = ACTIONS(3291), + [sym_verbatim_string_literal] = ACTIONS(3291), + [aux_sym_preproc_if_token1] = ACTIONS(3291), + [aux_sym_preproc_if_token3] = ACTIONS(3291), + [aux_sym_preproc_else_token1] = ACTIONS(3291), + [aux_sym_preproc_elif_token1] = ACTIONS(3291), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + [sym_interpolation_regular_start] = ACTIONS(3291), + [sym_interpolation_verbatim_start] = ACTIONS(3291), + [sym_interpolation_raw_start] = ACTIONS(3291), + [sym_raw_string_start] = ACTIONS(3291), + }, + [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(3293), + [anon_sym_extern] = ACTIONS(3293), + [anon_sym_alias] = ACTIONS(3293), + [anon_sym_SEMI] = ACTIONS(3295), + [anon_sym_global] = ACTIONS(3293), + [anon_sym_using] = ACTIONS(3293), + [anon_sym_unsafe] = ACTIONS(3293), + [anon_sym_static] = ACTIONS(3293), + [anon_sym_LBRACK] = ACTIONS(3295), + [anon_sym_LPAREN] = ACTIONS(3295), + [anon_sym_return] = ACTIONS(3293), + [anon_sym_namespace] = ACTIONS(3293), + [anon_sym_class] = ACTIONS(3293), + [anon_sym_ref] = ACTIONS(3293), + [anon_sym_struct] = ACTIONS(3293), + [anon_sym_enum] = ACTIONS(3293), + [anon_sym_LBRACE] = ACTIONS(3295), + [anon_sym_interface] = ACTIONS(3293), + [anon_sym_delegate] = ACTIONS(3293), + [anon_sym_record] = ACTIONS(3293), + [anon_sym_abstract] = ACTIONS(3293), + [anon_sym_async] = ACTIONS(3293), + [anon_sym_const] = ACTIONS(3293), + [anon_sym_file] = ACTIONS(3293), + [anon_sym_fixed] = ACTIONS(3293), + [anon_sym_internal] = ACTIONS(3293), + [anon_sym_new] = ACTIONS(3293), + [anon_sym_override] = ACTIONS(3293), + [anon_sym_partial] = ACTIONS(3293), + [anon_sym_private] = ACTIONS(3293), + [anon_sym_protected] = ACTIONS(3293), + [anon_sym_public] = ACTIONS(3293), + [anon_sym_readonly] = ACTIONS(3293), + [anon_sym_required] = ACTIONS(3293), + [anon_sym_sealed] = ACTIONS(3293), + [anon_sym_virtual] = ACTIONS(3293), + [anon_sym_volatile] = ACTIONS(3293), + [anon_sym_where] = ACTIONS(3293), + [anon_sym_notnull] = ACTIONS(3293), + [anon_sym_unmanaged] = ACTIONS(3293), + [anon_sym_checked] = ACTIONS(3293), + [anon_sym_BANG] = ACTIONS(3295), + [anon_sym_TILDE] = ACTIONS(3295), + [anon_sym_PLUS_PLUS] = ACTIONS(3295), + [anon_sym_DASH_DASH] = ACTIONS(3295), + [anon_sym_true] = ACTIONS(3293), + [anon_sym_false] = ACTIONS(3293), + [anon_sym_PLUS] = ACTIONS(3293), + [anon_sym_DASH] = ACTIONS(3293), + [anon_sym_STAR] = ACTIONS(3295), + [anon_sym_CARET] = ACTIONS(3295), + [anon_sym_AMP] = ACTIONS(3295), + [anon_sym_this] = ACTIONS(3293), + [anon_sym_scoped] = ACTIONS(3293), + [anon_sym_base] = ACTIONS(3293), + [anon_sym_var] = ACTIONS(3293), + [sym_predefined_type] = ACTIONS(3293), + [anon_sym_break] = ACTIONS(3293), + [anon_sym_unchecked] = ACTIONS(3293), + [anon_sym_continue] = ACTIONS(3293), + [anon_sym_do] = ACTIONS(3293), + [anon_sym_while] = ACTIONS(3293), + [anon_sym_for] = ACTIONS(3293), + [anon_sym_lock] = ACTIONS(3293), + [anon_sym_yield] = ACTIONS(3293), + [anon_sym_switch] = ACTIONS(3293), + [anon_sym_default] = ACTIONS(3293), + [anon_sym_throw] = ACTIONS(3293), + [anon_sym_try] = ACTIONS(3293), + [anon_sym_when] = ACTIONS(3293), + [anon_sym_await] = ACTIONS(3293), + [anon_sym_foreach] = ACTIONS(3293), + [anon_sym_goto] = ACTIONS(3293), + [anon_sym_if] = ACTIONS(3293), + [anon_sym_else] = ACTIONS(3293), + [anon_sym_DOT_DOT] = ACTIONS(3295), + [anon_sym_from] = ACTIONS(3293), + [anon_sym_into] = ACTIONS(3293), + [anon_sym_join] = ACTIONS(3293), + [anon_sym_on] = ACTIONS(3293), + [anon_sym_equals] = ACTIONS(3293), + [anon_sym_let] = ACTIONS(3293), + [anon_sym_orderby] = ACTIONS(3293), + [anon_sym_ascending] = ACTIONS(3293), + [anon_sym_descending] = ACTIONS(3293), + [anon_sym_group] = ACTIONS(3293), + [anon_sym_by] = ACTIONS(3293), + [anon_sym_select] = ACTIONS(3293), + [anon_sym_stackalloc] = ACTIONS(3293), + [anon_sym_sizeof] = ACTIONS(3293), + [anon_sym_typeof] = ACTIONS(3293), + [anon_sym___makeref] = ACTIONS(3293), + [anon_sym___reftype] = ACTIONS(3293), + [anon_sym___refvalue] = ACTIONS(3293), + [sym_null_literal] = ACTIONS(3293), + [anon_sym_SQUOTE] = ACTIONS(3295), + [sym_integer_literal] = ACTIONS(3293), + [sym_real_literal] = ACTIONS(3295), + [anon_sym_DQUOTE] = ACTIONS(3295), + [sym_verbatim_string_literal] = ACTIONS(3295), + [aux_sym_preproc_if_token1] = ACTIONS(3295), + [aux_sym_preproc_if_token3] = ACTIONS(3295), + [aux_sym_preproc_else_token1] = ACTIONS(3295), + [aux_sym_preproc_elif_token1] = ACTIONS(3295), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + [sym_interpolation_regular_start] = ACTIONS(3295), + [sym_interpolation_verbatim_start] = ACTIONS(3295), + [sym_interpolation_raw_start] = ACTIONS(3295), + [sym_raw_string_start] = ACTIONS(3295), + }, + [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(3297), + [anon_sym_extern] = ACTIONS(3297), + [anon_sym_alias] = ACTIONS(3297), + [anon_sym_SEMI] = ACTIONS(3299), + [anon_sym_global] = ACTIONS(3297), + [anon_sym_using] = ACTIONS(3297), + [anon_sym_unsafe] = ACTIONS(3297), + [anon_sym_static] = ACTIONS(3297), + [anon_sym_LBRACK] = ACTIONS(3299), + [anon_sym_LPAREN] = ACTIONS(3299), + [anon_sym_return] = ACTIONS(3297), + [anon_sym_namespace] = ACTIONS(3297), + [anon_sym_class] = ACTIONS(3297), + [anon_sym_ref] = ACTIONS(3297), + [anon_sym_struct] = ACTIONS(3297), + [anon_sym_enum] = ACTIONS(3297), + [anon_sym_LBRACE] = ACTIONS(3299), + [anon_sym_interface] = ACTIONS(3297), + [anon_sym_delegate] = ACTIONS(3297), + [anon_sym_record] = ACTIONS(3297), + [anon_sym_abstract] = ACTIONS(3297), + [anon_sym_async] = ACTIONS(3297), + [anon_sym_const] = ACTIONS(3297), + [anon_sym_file] = ACTIONS(3297), + [anon_sym_fixed] = ACTIONS(3297), + [anon_sym_internal] = ACTIONS(3297), + [anon_sym_new] = ACTIONS(3297), + [anon_sym_override] = ACTIONS(3297), + [anon_sym_partial] = ACTIONS(3297), + [anon_sym_private] = ACTIONS(3297), + [anon_sym_protected] = ACTIONS(3297), + [anon_sym_public] = ACTIONS(3297), + [anon_sym_readonly] = ACTIONS(3297), + [anon_sym_required] = ACTIONS(3297), + [anon_sym_sealed] = ACTIONS(3297), + [anon_sym_virtual] = ACTIONS(3297), + [anon_sym_volatile] = ACTIONS(3297), + [anon_sym_where] = ACTIONS(3297), + [anon_sym_notnull] = ACTIONS(3297), + [anon_sym_unmanaged] = ACTIONS(3297), + [anon_sym_checked] = ACTIONS(3297), + [anon_sym_BANG] = ACTIONS(3299), + [anon_sym_TILDE] = ACTIONS(3299), + [anon_sym_PLUS_PLUS] = ACTIONS(3299), + [anon_sym_DASH_DASH] = ACTIONS(3299), + [anon_sym_true] = ACTIONS(3297), + [anon_sym_false] = ACTIONS(3297), + [anon_sym_PLUS] = ACTIONS(3297), + [anon_sym_DASH] = ACTIONS(3297), + [anon_sym_STAR] = ACTIONS(3299), + [anon_sym_CARET] = ACTIONS(3299), + [anon_sym_AMP] = ACTIONS(3299), + [anon_sym_this] = ACTIONS(3297), + [anon_sym_scoped] = ACTIONS(3297), + [anon_sym_base] = ACTIONS(3297), + [anon_sym_var] = ACTIONS(3297), + [sym_predefined_type] = ACTIONS(3297), + [anon_sym_break] = ACTIONS(3297), + [anon_sym_unchecked] = ACTIONS(3297), + [anon_sym_continue] = ACTIONS(3297), + [anon_sym_do] = ACTIONS(3297), + [anon_sym_while] = ACTIONS(3297), + [anon_sym_for] = ACTIONS(3297), + [anon_sym_lock] = ACTIONS(3297), + [anon_sym_yield] = ACTIONS(3297), + [anon_sym_switch] = ACTIONS(3297), + [anon_sym_default] = ACTIONS(3297), + [anon_sym_throw] = ACTIONS(3297), + [anon_sym_try] = ACTIONS(3297), + [anon_sym_when] = ACTIONS(3297), + [anon_sym_await] = ACTIONS(3297), + [anon_sym_foreach] = ACTIONS(3297), + [anon_sym_goto] = ACTIONS(3297), + [anon_sym_if] = ACTIONS(3297), + [anon_sym_else] = ACTIONS(3297), + [anon_sym_DOT_DOT] = ACTIONS(3299), + [anon_sym_from] = ACTIONS(3297), + [anon_sym_into] = ACTIONS(3297), + [anon_sym_join] = ACTIONS(3297), + [anon_sym_on] = ACTIONS(3297), + [anon_sym_equals] = ACTIONS(3297), + [anon_sym_let] = ACTIONS(3297), + [anon_sym_orderby] = ACTIONS(3297), + [anon_sym_ascending] = ACTIONS(3297), + [anon_sym_descending] = ACTIONS(3297), + [anon_sym_group] = ACTIONS(3297), + [anon_sym_by] = ACTIONS(3297), + [anon_sym_select] = ACTIONS(3297), + [anon_sym_stackalloc] = ACTIONS(3297), + [anon_sym_sizeof] = ACTIONS(3297), + [anon_sym_typeof] = ACTIONS(3297), + [anon_sym___makeref] = ACTIONS(3297), + [anon_sym___reftype] = ACTIONS(3297), + [anon_sym___refvalue] = ACTIONS(3297), + [sym_null_literal] = ACTIONS(3297), + [anon_sym_SQUOTE] = ACTIONS(3299), + [sym_integer_literal] = ACTIONS(3297), + [sym_real_literal] = ACTIONS(3299), + [anon_sym_DQUOTE] = ACTIONS(3299), + [sym_verbatim_string_literal] = ACTIONS(3299), + [aux_sym_preproc_if_token1] = ACTIONS(3299), + [aux_sym_preproc_if_token3] = ACTIONS(3299), + [aux_sym_preproc_else_token1] = ACTIONS(3299), + [aux_sym_preproc_elif_token1] = ACTIONS(3299), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + [sym_interpolation_regular_start] = ACTIONS(3299), + [sym_interpolation_verbatim_start] = ACTIONS(3299), + [sym_interpolation_raw_start] = ACTIONS(3299), + [sym_raw_string_start] = ACTIONS(3299), + }, + [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(3301), + [anon_sym_extern] = ACTIONS(3301), + [anon_sym_alias] = ACTIONS(3301), + [anon_sym_SEMI] = ACTIONS(3303), + [anon_sym_global] = ACTIONS(3301), + [anon_sym_using] = ACTIONS(3301), + [anon_sym_unsafe] = ACTIONS(3301), + [anon_sym_static] = ACTIONS(3301), + [anon_sym_LBRACK] = ACTIONS(3303), + [anon_sym_LPAREN] = ACTIONS(3303), + [anon_sym_return] = ACTIONS(3301), + [anon_sym_namespace] = ACTIONS(3301), + [anon_sym_class] = ACTIONS(3301), + [anon_sym_ref] = ACTIONS(3301), + [anon_sym_struct] = ACTIONS(3301), + [anon_sym_enum] = ACTIONS(3301), + [anon_sym_LBRACE] = ACTIONS(3303), + [anon_sym_interface] = ACTIONS(3301), + [anon_sym_delegate] = ACTIONS(3301), + [anon_sym_record] = ACTIONS(3301), + [anon_sym_abstract] = ACTIONS(3301), + [anon_sym_async] = ACTIONS(3301), + [anon_sym_const] = ACTIONS(3301), + [anon_sym_file] = ACTIONS(3301), + [anon_sym_fixed] = ACTIONS(3301), + [anon_sym_internal] = ACTIONS(3301), + [anon_sym_new] = ACTIONS(3301), + [anon_sym_override] = ACTIONS(3301), + [anon_sym_partial] = ACTIONS(3301), + [anon_sym_private] = ACTIONS(3301), + [anon_sym_protected] = ACTIONS(3301), + [anon_sym_public] = ACTIONS(3301), + [anon_sym_readonly] = ACTIONS(3301), + [anon_sym_required] = ACTIONS(3301), + [anon_sym_sealed] = ACTIONS(3301), + [anon_sym_virtual] = ACTIONS(3301), + [anon_sym_volatile] = ACTIONS(3301), + [anon_sym_where] = ACTIONS(3301), + [anon_sym_notnull] = ACTIONS(3301), + [anon_sym_unmanaged] = ACTIONS(3301), + [anon_sym_checked] = ACTIONS(3301), + [anon_sym_BANG] = ACTIONS(3303), + [anon_sym_TILDE] = ACTIONS(3303), + [anon_sym_PLUS_PLUS] = ACTIONS(3303), + [anon_sym_DASH_DASH] = ACTIONS(3303), + [anon_sym_true] = ACTIONS(3301), + [anon_sym_false] = ACTIONS(3301), + [anon_sym_PLUS] = ACTIONS(3301), + [anon_sym_DASH] = ACTIONS(3301), + [anon_sym_STAR] = ACTIONS(3303), + [anon_sym_CARET] = ACTIONS(3303), + [anon_sym_AMP] = ACTIONS(3303), + [anon_sym_this] = ACTIONS(3301), + [anon_sym_scoped] = ACTIONS(3301), + [anon_sym_base] = ACTIONS(3301), + [anon_sym_var] = ACTIONS(3301), + [sym_predefined_type] = ACTIONS(3301), + [anon_sym_break] = ACTIONS(3301), + [anon_sym_unchecked] = ACTIONS(3301), + [anon_sym_continue] = ACTIONS(3301), + [anon_sym_do] = ACTIONS(3301), + [anon_sym_while] = ACTIONS(3301), + [anon_sym_for] = ACTIONS(3301), + [anon_sym_lock] = ACTIONS(3301), + [anon_sym_yield] = ACTIONS(3301), + [anon_sym_switch] = ACTIONS(3301), + [anon_sym_default] = ACTIONS(3301), + [anon_sym_throw] = ACTIONS(3301), + [anon_sym_try] = ACTIONS(3301), + [anon_sym_when] = ACTIONS(3301), + [anon_sym_await] = ACTIONS(3301), + [anon_sym_foreach] = ACTIONS(3301), + [anon_sym_goto] = ACTIONS(3301), + [anon_sym_if] = ACTIONS(3301), + [anon_sym_else] = ACTIONS(3301), + [anon_sym_DOT_DOT] = ACTIONS(3303), + [anon_sym_from] = ACTIONS(3301), + [anon_sym_into] = ACTIONS(3301), + [anon_sym_join] = ACTIONS(3301), + [anon_sym_on] = ACTIONS(3301), + [anon_sym_equals] = ACTIONS(3301), + [anon_sym_let] = ACTIONS(3301), + [anon_sym_orderby] = ACTIONS(3301), + [anon_sym_ascending] = ACTIONS(3301), + [anon_sym_descending] = ACTIONS(3301), + [anon_sym_group] = ACTIONS(3301), + [anon_sym_by] = ACTIONS(3301), + [anon_sym_select] = ACTIONS(3301), + [anon_sym_stackalloc] = ACTIONS(3301), + [anon_sym_sizeof] = ACTIONS(3301), + [anon_sym_typeof] = ACTIONS(3301), + [anon_sym___makeref] = ACTIONS(3301), + [anon_sym___reftype] = ACTIONS(3301), + [anon_sym___refvalue] = ACTIONS(3301), + [sym_null_literal] = ACTIONS(3301), + [anon_sym_SQUOTE] = ACTIONS(3303), + [sym_integer_literal] = ACTIONS(3301), + [sym_real_literal] = ACTIONS(3303), + [anon_sym_DQUOTE] = ACTIONS(3303), + [sym_verbatim_string_literal] = ACTIONS(3303), + [aux_sym_preproc_if_token1] = ACTIONS(3303), + [aux_sym_preproc_if_token3] = ACTIONS(3303), + [aux_sym_preproc_else_token1] = ACTIONS(3303), + [aux_sym_preproc_elif_token1] = ACTIONS(3303), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + [sym_interpolation_regular_start] = ACTIONS(3303), + [sym_interpolation_verbatim_start] = ACTIONS(3303), + [sym_interpolation_raw_start] = ACTIONS(3303), + [sym_raw_string_start] = ACTIONS(3303), + }, + [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(3305), + [anon_sym_extern] = ACTIONS(3305), + [anon_sym_alias] = ACTIONS(3305), + [anon_sym_SEMI] = ACTIONS(3307), + [anon_sym_global] = ACTIONS(3305), + [anon_sym_using] = ACTIONS(3305), + [anon_sym_unsafe] = ACTIONS(3305), + [anon_sym_static] = ACTIONS(3305), + [anon_sym_LBRACK] = ACTIONS(3307), + [anon_sym_LPAREN] = ACTIONS(3307), + [anon_sym_return] = ACTIONS(3305), + [anon_sym_namespace] = ACTIONS(3305), + [anon_sym_class] = ACTIONS(3305), + [anon_sym_ref] = ACTIONS(3305), + [anon_sym_struct] = ACTIONS(3305), + [anon_sym_enum] = ACTIONS(3305), + [anon_sym_LBRACE] = ACTIONS(3307), + [anon_sym_interface] = ACTIONS(3305), + [anon_sym_delegate] = ACTIONS(3305), + [anon_sym_record] = ACTIONS(3305), + [anon_sym_abstract] = ACTIONS(3305), + [anon_sym_async] = ACTIONS(3305), + [anon_sym_const] = ACTIONS(3305), + [anon_sym_file] = ACTIONS(3305), + [anon_sym_fixed] = ACTIONS(3305), + [anon_sym_internal] = ACTIONS(3305), + [anon_sym_new] = ACTIONS(3305), + [anon_sym_override] = ACTIONS(3305), + [anon_sym_partial] = ACTIONS(3305), + [anon_sym_private] = ACTIONS(3305), + [anon_sym_protected] = ACTIONS(3305), + [anon_sym_public] = ACTIONS(3305), + [anon_sym_readonly] = ACTIONS(3305), + [anon_sym_required] = ACTIONS(3305), + [anon_sym_sealed] = ACTIONS(3305), + [anon_sym_virtual] = ACTIONS(3305), + [anon_sym_volatile] = ACTIONS(3305), + [anon_sym_where] = ACTIONS(3305), + [anon_sym_notnull] = ACTIONS(3305), + [anon_sym_unmanaged] = ACTIONS(3305), + [anon_sym_checked] = ACTIONS(3305), + [anon_sym_BANG] = ACTIONS(3307), + [anon_sym_TILDE] = ACTIONS(3307), + [anon_sym_PLUS_PLUS] = ACTIONS(3307), + [anon_sym_DASH_DASH] = ACTIONS(3307), + [anon_sym_true] = ACTIONS(3305), + [anon_sym_false] = ACTIONS(3305), + [anon_sym_PLUS] = ACTIONS(3305), + [anon_sym_DASH] = ACTIONS(3305), + [anon_sym_STAR] = ACTIONS(3307), + [anon_sym_CARET] = ACTIONS(3307), + [anon_sym_AMP] = ACTIONS(3307), + [anon_sym_this] = ACTIONS(3305), + [anon_sym_scoped] = ACTIONS(3305), + [anon_sym_base] = ACTIONS(3305), + [anon_sym_var] = ACTIONS(3305), + [sym_predefined_type] = ACTIONS(3305), + [anon_sym_break] = ACTIONS(3305), + [anon_sym_unchecked] = ACTIONS(3305), + [anon_sym_continue] = ACTIONS(3305), + [anon_sym_do] = ACTIONS(3305), + [anon_sym_while] = ACTIONS(3305), + [anon_sym_for] = ACTIONS(3305), + [anon_sym_lock] = ACTIONS(3305), + [anon_sym_yield] = ACTIONS(3305), + [anon_sym_switch] = ACTIONS(3305), + [anon_sym_default] = ACTIONS(3305), + [anon_sym_throw] = ACTIONS(3305), + [anon_sym_try] = ACTIONS(3305), + [anon_sym_when] = ACTIONS(3305), + [anon_sym_await] = ACTIONS(3305), + [anon_sym_foreach] = ACTIONS(3305), + [anon_sym_goto] = ACTIONS(3305), + [anon_sym_if] = ACTIONS(3305), + [anon_sym_else] = ACTIONS(3305), + [anon_sym_DOT_DOT] = ACTIONS(3307), + [anon_sym_from] = ACTIONS(3305), + [anon_sym_into] = ACTIONS(3305), + [anon_sym_join] = ACTIONS(3305), + [anon_sym_on] = ACTIONS(3305), + [anon_sym_equals] = ACTIONS(3305), + [anon_sym_let] = ACTIONS(3305), + [anon_sym_orderby] = ACTIONS(3305), + [anon_sym_ascending] = ACTIONS(3305), + [anon_sym_descending] = ACTIONS(3305), + [anon_sym_group] = ACTIONS(3305), + [anon_sym_by] = ACTIONS(3305), + [anon_sym_select] = ACTIONS(3305), + [anon_sym_stackalloc] = ACTIONS(3305), + [anon_sym_sizeof] = ACTIONS(3305), + [anon_sym_typeof] = ACTIONS(3305), + [anon_sym___makeref] = ACTIONS(3305), + [anon_sym___reftype] = ACTIONS(3305), + [anon_sym___refvalue] = ACTIONS(3305), + [sym_null_literal] = ACTIONS(3305), + [anon_sym_SQUOTE] = ACTIONS(3307), + [sym_integer_literal] = ACTIONS(3305), + [sym_real_literal] = ACTIONS(3307), + [anon_sym_DQUOTE] = ACTIONS(3307), + [sym_verbatim_string_literal] = ACTIONS(3307), + [aux_sym_preproc_if_token1] = ACTIONS(3307), + [aux_sym_preproc_if_token3] = ACTIONS(3307), + [aux_sym_preproc_else_token1] = ACTIONS(3307), + [aux_sym_preproc_elif_token1] = ACTIONS(3307), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + [sym_interpolation_regular_start] = ACTIONS(3307), + [sym_interpolation_verbatim_start] = ACTIONS(3307), + [sym_interpolation_raw_start] = ACTIONS(3307), + [sym_raw_string_start] = ACTIONS(3307), + }, + [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(3309), + [anon_sym_extern] = ACTIONS(3309), + [anon_sym_alias] = ACTIONS(3309), + [anon_sym_SEMI] = ACTIONS(3311), + [anon_sym_global] = ACTIONS(3309), + [anon_sym_using] = ACTIONS(3309), + [anon_sym_unsafe] = ACTIONS(3309), + [anon_sym_static] = ACTIONS(3309), + [anon_sym_LBRACK] = ACTIONS(3311), + [anon_sym_LPAREN] = ACTIONS(3311), + [anon_sym_return] = ACTIONS(3309), + [anon_sym_namespace] = ACTIONS(3309), + [anon_sym_class] = ACTIONS(3309), + [anon_sym_ref] = ACTIONS(3309), + [anon_sym_struct] = ACTIONS(3309), + [anon_sym_enum] = ACTIONS(3309), + [anon_sym_LBRACE] = ACTIONS(3311), + [anon_sym_interface] = ACTIONS(3309), + [anon_sym_delegate] = ACTIONS(3309), + [anon_sym_record] = ACTIONS(3309), + [anon_sym_abstract] = ACTIONS(3309), + [anon_sym_async] = ACTIONS(3309), + [anon_sym_const] = ACTIONS(3309), + [anon_sym_file] = ACTIONS(3309), + [anon_sym_fixed] = ACTIONS(3309), + [anon_sym_internal] = ACTIONS(3309), + [anon_sym_new] = ACTIONS(3309), + [anon_sym_override] = ACTIONS(3309), + [anon_sym_partial] = ACTIONS(3309), + [anon_sym_private] = ACTIONS(3309), + [anon_sym_protected] = ACTIONS(3309), + [anon_sym_public] = ACTIONS(3309), + [anon_sym_readonly] = ACTIONS(3309), + [anon_sym_required] = ACTIONS(3309), + [anon_sym_sealed] = ACTIONS(3309), + [anon_sym_virtual] = ACTIONS(3309), + [anon_sym_volatile] = ACTIONS(3309), + [anon_sym_where] = ACTIONS(3309), + [anon_sym_notnull] = ACTIONS(3309), + [anon_sym_unmanaged] = ACTIONS(3309), + [anon_sym_checked] = ACTIONS(3309), + [anon_sym_BANG] = ACTIONS(3311), + [anon_sym_TILDE] = ACTIONS(3311), + [anon_sym_PLUS_PLUS] = ACTIONS(3311), + [anon_sym_DASH_DASH] = ACTIONS(3311), + [anon_sym_true] = ACTIONS(3309), + [anon_sym_false] = ACTIONS(3309), + [anon_sym_PLUS] = ACTIONS(3309), + [anon_sym_DASH] = ACTIONS(3309), + [anon_sym_STAR] = ACTIONS(3311), + [anon_sym_CARET] = ACTIONS(3311), + [anon_sym_AMP] = ACTIONS(3311), + [anon_sym_this] = ACTIONS(3309), + [anon_sym_scoped] = ACTIONS(3309), + [anon_sym_base] = ACTIONS(3309), + [anon_sym_var] = ACTIONS(3309), + [sym_predefined_type] = ACTIONS(3309), + [anon_sym_break] = ACTIONS(3309), + [anon_sym_unchecked] = ACTIONS(3309), + [anon_sym_continue] = ACTIONS(3309), + [anon_sym_do] = ACTIONS(3309), + [anon_sym_while] = ACTIONS(3309), + [anon_sym_for] = ACTIONS(3309), + [anon_sym_lock] = ACTIONS(3309), + [anon_sym_yield] = ACTIONS(3309), + [anon_sym_switch] = ACTIONS(3309), + [anon_sym_default] = ACTIONS(3309), + [anon_sym_throw] = ACTIONS(3309), + [anon_sym_try] = ACTIONS(3309), + [anon_sym_when] = ACTIONS(3309), + [anon_sym_await] = ACTIONS(3309), + [anon_sym_foreach] = ACTIONS(3309), + [anon_sym_goto] = ACTIONS(3309), + [anon_sym_if] = ACTIONS(3309), + [anon_sym_else] = ACTIONS(3309), + [anon_sym_DOT_DOT] = ACTIONS(3311), + [anon_sym_from] = ACTIONS(3309), + [anon_sym_into] = ACTIONS(3309), + [anon_sym_join] = ACTIONS(3309), + [anon_sym_on] = ACTIONS(3309), + [anon_sym_equals] = ACTIONS(3309), + [anon_sym_let] = ACTIONS(3309), + [anon_sym_orderby] = ACTIONS(3309), + [anon_sym_ascending] = ACTIONS(3309), + [anon_sym_descending] = ACTIONS(3309), + [anon_sym_group] = ACTIONS(3309), + [anon_sym_by] = ACTIONS(3309), + [anon_sym_select] = ACTIONS(3309), + [anon_sym_stackalloc] = ACTIONS(3309), + [anon_sym_sizeof] = ACTIONS(3309), + [anon_sym_typeof] = ACTIONS(3309), + [anon_sym___makeref] = ACTIONS(3309), + [anon_sym___reftype] = ACTIONS(3309), + [anon_sym___refvalue] = ACTIONS(3309), + [sym_null_literal] = ACTIONS(3309), + [anon_sym_SQUOTE] = ACTIONS(3311), + [sym_integer_literal] = ACTIONS(3309), + [sym_real_literal] = ACTIONS(3311), + [anon_sym_DQUOTE] = ACTIONS(3311), + [sym_verbatim_string_literal] = ACTIONS(3311), + [aux_sym_preproc_if_token1] = ACTIONS(3311), + [aux_sym_preproc_if_token3] = ACTIONS(3311), + [aux_sym_preproc_else_token1] = ACTIONS(3311), + [aux_sym_preproc_elif_token1] = ACTIONS(3311), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + [sym_interpolation_regular_start] = ACTIONS(3311), + [sym_interpolation_verbatim_start] = ACTIONS(3311), + [sym_interpolation_raw_start] = ACTIONS(3311), + [sym_raw_string_start] = ACTIONS(3311), + }, + [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(3313), + [anon_sym_extern] = ACTIONS(3313), + [anon_sym_alias] = ACTIONS(3313), + [anon_sym_SEMI] = ACTIONS(3315), + [anon_sym_global] = ACTIONS(3313), + [anon_sym_using] = ACTIONS(3313), + [anon_sym_unsafe] = ACTIONS(3313), + [anon_sym_static] = ACTIONS(3313), + [anon_sym_LBRACK] = ACTIONS(3315), + [anon_sym_LPAREN] = ACTIONS(3315), + [anon_sym_return] = ACTIONS(3313), + [anon_sym_namespace] = ACTIONS(3313), + [anon_sym_class] = ACTIONS(3313), + [anon_sym_ref] = ACTIONS(3313), + [anon_sym_struct] = ACTIONS(3313), + [anon_sym_enum] = ACTIONS(3313), + [anon_sym_LBRACE] = ACTIONS(3315), + [anon_sym_interface] = ACTIONS(3313), + [anon_sym_delegate] = ACTIONS(3313), + [anon_sym_record] = ACTIONS(3313), + [anon_sym_abstract] = ACTIONS(3313), + [anon_sym_async] = ACTIONS(3313), + [anon_sym_const] = ACTIONS(3313), + [anon_sym_file] = ACTIONS(3313), + [anon_sym_fixed] = ACTIONS(3313), + [anon_sym_internal] = ACTIONS(3313), + [anon_sym_new] = ACTIONS(3313), + [anon_sym_override] = ACTIONS(3313), + [anon_sym_partial] = ACTIONS(3313), + [anon_sym_private] = ACTIONS(3313), + [anon_sym_protected] = ACTIONS(3313), + [anon_sym_public] = ACTIONS(3313), + [anon_sym_readonly] = ACTIONS(3313), + [anon_sym_required] = ACTIONS(3313), + [anon_sym_sealed] = ACTIONS(3313), + [anon_sym_virtual] = ACTIONS(3313), + [anon_sym_volatile] = ACTIONS(3313), + [anon_sym_where] = ACTIONS(3313), + [anon_sym_notnull] = ACTIONS(3313), + [anon_sym_unmanaged] = ACTIONS(3313), + [anon_sym_checked] = ACTIONS(3313), + [anon_sym_BANG] = ACTIONS(3315), + [anon_sym_TILDE] = ACTIONS(3315), + [anon_sym_PLUS_PLUS] = ACTIONS(3315), + [anon_sym_DASH_DASH] = ACTIONS(3315), + [anon_sym_true] = ACTIONS(3313), + [anon_sym_false] = ACTIONS(3313), + [anon_sym_PLUS] = ACTIONS(3313), + [anon_sym_DASH] = ACTIONS(3313), + [anon_sym_STAR] = ACTIONS(3315), + [anon_sym_CARET] = ACTIONS(3315), + [anon_sym_AMP] = ACTIONS(3315), + [anon_sym_this] = ACTIONS(3313), + [anon_sym_scoped] = ACTIONS(3313), + [anon_sym_base] = ACTIONS(3313), + [anon_sym_var] = ACTIONS(3313), + [sym_predefined_type] = ACTIONS(3313), + [anon_sym_break] = ACTIONS(3313), + [anon_sym_unchecked] = ACTIONS(3313), + [anon_sym_continue] = ACTIONS(3313), + [anon_sym_do] = ACTIONS(3313), + [anon_sym_while] = ACTIONS(3313), + [anon_sym_for] = ACTIONS(3313), + [anon_sym_lock] = ACTIONS(3313), + [anon_sym_yield] = ACTIONS(3313), + [anon_sym_switch] = ACTIONS(3313), + [anon_sym_default] = ACTIONS(3313), + [anon_sym_throw] = ACTIONS(3313), + [anon_sym_try] = ACTIONS(3313), + [anon_sym_when] = ACTIONS(3313), + [anon_sym_await] = ACTIONS(3313), + [anon_sym_foreach] = ACTIONS(3313), + [anon_sym_goto] = ACTIONS(3313), + [anon_sym_if] = ACTIONS(3313), + [anon_sym_else] = ACTIONS(3317), + [anon_sym_DOT_DOT] = ACTIONS(3315), + [anon_sym_from] = ACTIONS(3313), + [anon_sym_into] = ACTIONS(3313), + [anon_sym_join] = ACTIONS(3313), + [anon_sym_on] = ACTIONS(3313), + [anon_sym_equals] = ACTIONS(3313), + [anon_sym_let] = ACTIONS(3313), + [anon_sym_orderby] = ACTIONS(3313), + [anon_sym_ascending] = ACTIONS(3313), + [anon_sym_descending] = ACTIONS(3313), + [anon_sym_group] = ACTIONS(3313), + [anon_sym_by] = ACTIONS(3313), + [anon_sym_select] = ACTIONS(3313), + [anon_sym_stackalloc] = ACTIONS(3313), + [anon_sym_sizeof] = ACTIONS(3313), + [anon_sym_typeof] = ACTIONS(3313), + [anon_sym___makeref] = ACTIONS(3313), + [anon_sym___reftype] = ACTIONS(3313), + [anon_sym___refvalue] = ACTIONS(3313), + [sym_null_literal] = ACTIONS(3313), + [anon_sym_SQUOTE] = ACTIONS(3315), + [sym_integer_literal] = ACTIONS(3313), + [sym_real_literal] = ACTIONS(3315), + [anon_sym_DQUOTE] = ACTIONS(3315), + [sym_verbatim_string_literal] = ACTIONS(3315), + [aux_sym_preproc_if_token1] = ACTIONS(3315), + [aux_sym_preproc_if_token3] = ACTIONS(3315), + [aux_sym_preproc_else_token1] = ACTIONS(3315), + [aux_sym_preproc_elif_token1] = ACTIONS(3315), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + [sym_interpolation_regular_start] = ACTIONS(3315), + [sym_interpolation_verbatim_start] = ACTIONS(3315), + [sym_interpolation_raw_start] = ACTIONS(3315), + [sym_raw_string_start] = ACTIONS(3315), + }, + [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(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), @@ -366860,125 +373207,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(2953), - [sym_interpolation_verbatim_start] = ACTIONS(2953), - [sym_interpolation_raw_start] = ACTIONS(2953), - [sym_raw_string_start] = ACTIONS(2953), + [sym_interpolation_regular_start] = ACTIONS(3321), + [sym_interpolation_verbatim_start] = ACTIONS(3321), + [sym_interpolation_raw_start] = ACTIONS(3321), + [sym_raw_string_start] = ACTIONS(3321), }, - [1929] = { - [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), - [sym__identifier_token] = ACTIONS(3145), - [anon_sym_extern] = ACTIONS(3145), - [anon_sym_alias] = ACTIONS(3145), - [anon_sym_SEMI] = ACTIONS(3147), - [anon_sym_global] = ACTIONS(3145), - [anon_sym_using] = ACTIONS(3145), - [anon_sym_unsafe] = ACTIONS(3145), - [anon_sym_static] = ACTIONS(3145), - [anon_sym_LBRACK] = ACTIONS(3147), - [anon_sym_LPAREN] = ACTIONS(3147), - [anon_sym_return] = ACTIONS(3145), - [anon_sym_namespace] = ACTIONS(3145), - [anon_sym_class] = ACTIONS(3145), - [anon_sym_ref] = ACTIONS(3145), - [anon_sym_struct] = ACTIONS(3145), - [anon_sym_enum] = ACTIONS(3145), - [anon_sym_LBRACE] = ACTIONS(3147), - [anon_sym_interface] = ACTIONS(3145), - [anon_sym_delegate] = ACTIONS(3145), - [anon_sym_record] = ACTIONS(3145), - [anon_sym_abstract] = ACTIONS(3145), - [anon_sym_async] = ACTIONS(3145), - [anon_sym_const] = ACTIONS(3145), - [anon_sym_file] = ACTIONS(3145), - [anon_sym_fixed] = ACTIONS(3145), - [anon_sym_internal] = ACTIONS(3145), - [anon_sym_new] = ACTIONS(3145), - [anon_sym_override] = ACTIONS(3145), - [anon_sym_partial] = ACTIONS(3145), - [anon_sym_private] = ACTIONS(3145), - [anon_sym_protected] = ACTIONS(3145), - [anon_sym_public] = ACTIONS(3145), - [anon_sym_readonly] = ACTIONS(3145), - [anon_sym_required] = ACTIONS(3145), - [anon_sym_sealed] = ACTIONS(3145), - [anon_sym_virtual] = ACTIONS(3145), - [anon_sym_volatile] = ACTIONS(3145), - [anon_sym_where] = ACTIONS(3145), - [anon_sym_notnull] = ACTIONS(3145), - [anon_sym_unmanaged] = ACTIONS(3145), - [anon_sym_checked] = ACTIONS(3145), - [anon_sym_BANG] = ACTIONS(3147), - [anon_sym_TILDE] = ACTIONS(3147), - [anon_sym_PLUS_PLUS] = ACTIONS(3147), - [anon_sym_DASH_DASH] = ACTIONS(3147), - [anon_sym_true] = ACTIONS(3145), - [anon_sym_false] = ACTIONS(3145), - [anon_sym_PLUS] = ACTIONS(3145), - [anon_sym_DASH] = ACTIONS(3145), - [anon_sym_STAR] = ACTIONS(3147), - [anon_sym_CARET] = ACTIONS(3147), - [anon_sym_AMP] = ACTIONS(3147), - [anon_sym_this] = ACTIONS(3145), - [anon_sym_scoped] = ACTIONS(3145), - [anon_sym_base] = ACTIONS(3145), - [anon_sym_var] = ACTIONS(3145), - [sym_predefined_type] = ACTIONS(3145), - [anon_sym_break] = ACTIONS(3145), - [anon_sym_unchecked] = ACTIONS(3145), - [anon_sym_continue] = ACTIONS(3145), - [anon_sym_do] = ACTIONS(3145), - [anon_sym_while] = ACTIONS(3145), - [anon_sym_for] = ACTIONS(3145), - [anon_sym_lock] = ACTIONS(3145), - [anon_sym_yield] = ACTIONS(3145), - [anon_sym_switch] = ACTIONS(3145), - [anon_sym_default] = ACTIONS(3145), - [anon_sym_throw] = ACTIONS(3145), - [anon_sym_try] = ACTIONS(3145), - [anon_sym_when] = ACTIONS(3145), - [anon_sym_await] = ACTIONS(3145), - [anon_sym_foreach] = ACTIONS(3145), - [anon_sym_goto] = ACTIONS(3145), - [anon_sym_if] = ACTIONS(3145), - [anon_sym_else] = ACTIONS(3145), - [anon_sym_DOT_DOT] = ACTIONS(3147), - [anon_sym_from] = ACTIONS(3145), - [anon_sym_into] = ACTIONS(3145), - [anon_sym_join] = ACTIONS(3145), - [anon_sym_on] = ACTIONS(3145), - [anon_sym_equals] = ACTIONS(3145), - [anon_sym_let] = ACTIONS(3145), - [anon_sym_orderby] = ACTIONS(3145), - [anon_sym_ascending] = ACTIONS(3145), - [anon_sym_descending] = ACTIONS(3145), - [anon_sym_group] = ACTIONS(3145), - [anon_sym_by] = ACTIONS(3145), - [anon_sym_select] = ACTIONS(3145), - [anon_sym_stackalloc] = ACTIONS(3145), - [anon_sym_sizeof] = ACTIONS(3145), - [anon_sym_typeof] = ACTIONS(3145), - [anon_sym___makeref] = ACTIONS(3145), - [anon_sym___reftype] = ACTIONS(3145), - [anon_sym___refvalue] = ACTIONS(3145), - [sym_null_literal] = ACTIONS(3145), - [anon_sym_SQUOTE] = ACTIONS(3147), - [sym_integer_literal] = ACTIONS(3145), - [sym_real_literal] = ACTIONS(3147), - [anon_sym_DQUOTE] = ACTIONS(3147), - [sym_verbatim_string_literal] = ACTIONS(3147), - [aux_sym_preproc_if_token1] = ACTIONS(3147), - [aux_sym_preproc_if_token3] = ACTIONS(3147), - [aux_sym_preproc_else_token1] = ACTIONS(3147), - [aux_sym_preproc_elif_token1] = ACTIONS(3147), + [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(3128), + [sym__identifier_token] = ACTIONS(3126), + [anon_sym_extern] = ACTIONS(3126), + [anon_sym_alias] = ACTIONS(3126), + [anon_sym_SEMI] = ACTIONS(3128), + [anon_sym_global] = ACTIONS(3126), + [anon_sym_using] = ACTIONS(3126), + [anon_sym_unsafe] = ACTIONS(3126), + [anon_sym_static] = ACTIONS(3126), + [anon_sym_LBRACK] = ACTIONS(3128), + [anon_sym_LPAREN] = ACTIONS(3128), + [anon_sym_return] = ACTIONS(3126), + [anon_sym_namespace] = ACTIONS(3126), + [anon_sym_class] = ACTIONS(3126), + [anon_sym_ref] = ACTIONS(3126), + [anon_sym_struct] = ACTIONS(3126), + [anon_sym_enum] = ACTIONS(3126), + [anon_sym_LBRACE] = ACTIONS(3128), + [anon_sym_interface] = ACTIONS(3126), + [anon_sym_delegate] = ACTIONS(3126), + [anon_sym_record] = ACTIONS(3126), + [anon_sym_abstract] = ACTIONS(3126), + [anon_sym_async] = ACTIONS(3126), + [anon_sym_const] = ACTIONS(3126), + [anon_sym_file] = ACTIONS(3126), + [anon_sym_fixed] = ACTIONS(3126), + [anon_sym_internal] = ACTIONS(3126), + [anon_sym_new] = ACTIONS(3126), + [anon_sym_override] = ACTIONS(3126), + [anon_sym_partial] = ACTIONS(3126), + [anon_sym_private] = ACTIONS(3126), + [anon_sym_protected] = ACTIONS(3126), + [anon_sym_public] = ACTIONS(3126), + [anon_sym_readonly] = ACTIONS(3126), + [anon_sym_required] = ACTIONS(3126), + [anon_sym_sealed] = ACTIONS(3126), + [anon_sym_virtual] = ACTIONS(3126), + [anon_sym_volatile] = ACTIONS(3126), + [anon_sym_where] = ACTIONS(3126), + [anon_sym_notnull] = ACTIONS(3126), + [anon_sym_unmanaged] = ACTIONS(3126), + [anon_sym_checked] = ACTIONS(3126), + [anon_sym_BANG] = ACTIONS(3128), + [anon_sym_TILDE] = ACTIONS(3128), + [anon_sym_PLUS_PLUS] = ACTIONS(3128), + [anon_sym_DASH_DASH] = ACTIONS(3128), + [anon_sym_true] = ACTIONS(3126), + [anon_sym_false] = ACTIONS(3126), + [anon_sym_PLUS] = ACTIONS(3126), + [anon_sym_DASH] = ACTIONS(3126), + [anon_sym_STAR] = ACTIONS(3128), + [anon_sym_CARET] = ACTIONS(3128), + [anon_sym_AMP] = ACTIONS(3128), + [anon_sym_this] = ACTIONS(3126), + [anon_sym_scoped] = ACTIONS(3126), + [anon_sym_base] = ACTIONS(3126), + [anon_sym_var] = ACTIONS(3126), + [sym_predefined_type] = ACTIONS(3126), + [anon_sym_break] = ACTIONS(3126), + [anon_sym_unchecked] = ACTIONS(3126), + [anon_sym_continue] = ACTIONS(3126), + [anon_sym_do] = ACTIONS(3126), + [anon_sym_while] = ACTIONS(3126), + [anon_sym_for] = ACTIONS(3126), + [anon_sym_lock] = ACTIONS(3126), + [anon_sym_yield] = ACTIONS(3126), + [anon_sym_switch] = ACTIONS(3126), + [anon_sym_default] = ACTIONS(3126), + [anon_sym_throw] = ACTIONS(3126), + [anon_sym_try] = ACTIONS(3126), + [anon_sym_catch] = ACTIONS(3126), + [anon_sym_when] = ACTIONS(3126), + [anon_sym_finally] = ACTIONS(3126), + [anon_sym_await] = ACTIONS(3126), + [anon_sym_foreach] = ACTIONS(3126), + [anon_sym_goto] = ACTIONS(3126), + [anon_sym_if] = ACTIONS(3126), + [anon_sym_else] = ACTIONS(3126), + [anon_sym_DOT_DOT] = ACTIONS(3128), + [anon_sym_from] = ACTIONS(3126), + [anon_sym_into] = ACTIONS(3126), + [anon_sym_join] = ACTIONS(3126), + [anon_sym_on] = ACTIONS(3126), + [anon_sym_equals] = ACTIONS(3126), + [anon_sym_let] = ACTIONS(3126), + [anon_sym_orderby] = ACTIONS(3126), + [anon_sym_ascending] = ACTIONS(3126), + [anon_sym_descending] = ACTIONS(3126), + [anon_sym_group] = ACTIONS(3126), + [anon_sym_by] = ACTIONS(3126), + [anon_sym_select] = ACTIONS(3126), + [anon_sym_stackalloc] = ACTIONS(3126), + [anon_sym_sizeof] = ACTIONS(3126), + [anon_sym_typeof] = ACTIONS(3126), + [anon_sym___makeref] = ACTIONS(3126), + [anon_sym___reftype] = ACTIONS(3126), + [anon_sym___refvalue] = ACTIONS(3126), + [sym_null_literal] = ACTIONS(3126), + [anon_sym_SQUOTE] = ACTIONS(3128), + [sym_integer_literal] = ACTIONS(3126), + [sym_real_literal] = ACTIONS(3128), + [anon_sym_DQUOTE] = ACTIONS(3128), + [sym_verbatim_string_literal] = ACTIONS(3128), + [aux_sym_preproc_if_token1] = ACTIONS(3128), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -366989,125 +373336,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(3147), - [sym_interpolation_verbatim_start] = ACTIONS(3147), - [sym_interpolation_raw_start] = ACTIONS(3147), - [sym_raw_string_start] = ACTIONS(3147), + [sym_interpolation_regular_start] = ACTIONS(3128), + [sym_interpolation_verbatim_start] = ACTIONS(3128), + [sym_interpolation_raw_start] = ACTIONS(3128), + [sym_raw_string_start] = ACTIONS(3128), }, - [1930] = { - [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), - [sym__identifier_token] = ACTIONS(3149), - [anon_sym_extern] = ACTIONS(3149), - [anon_sym_alias] = ACTIONS(3149), - [anon_sym_SEMI] = ACTIONS(3151), - [anon_sym_global] = ACTIONS(3149), - [anon_sym_using] = ACTIONS(3149), - [anon_sym_unsafe] = ACTIONS(3149), - [anon_sym_static] = ACTIONS(3149), - [anon_sym_LBRACK] = ACTIONS(3151), - [anon_sym_LPAREN] = ACTIONS(3151), - [anon_sym_return] = ACTIONS(3149), - [anon_sym_namespace] = ACTIONS(3149), - [anon_sym_class] = ACTIONS(3149), - [anon_sym_ref] = ACTIONS(3149), - [anon_sym_struct] = ACTIONS(3149), - [anon_sym_enum] = ACTIONS(3149), - [anon_sym_LBRACE] = ACTIONS(3151), - [anon_sym_interface] = ACTIONS(3149), - [anon_sym_delegate] = ACTIONS(3149), - [anon_sym_record] = ACTIONS(3149), - [anon_sym_abstract] = ACTIONS(3149), - [anon_sym_async] = ACTIONS(3149), - [anon_sym_const] = ACTIONS(3149), - [anon_sym_file] = ACTIONS(3149), - [anon_sym_fixed] = ACTIONS(3149), - [anon_sym_internal] = ACTIONS(3149), - [anon_sym_new] = ACTIONS(3149), - [anon_sym_override] = ACTIONS(3149), - [anon_sym_partial] = ACTIONS(3149), - [anon_sym_private] = ACTIONS(3149), - [anon_sym_protected] = ACTIONS(3149), - [anon_sym_public] = ACTIONS(3149), - [anon_sym_readonly] = ACTIONS(3149), - [anon_sym_required] = ACTIONS(3149), - [anon_sym_sealed] = ACTIONS(3149), - [anon_sym_virtual] = ACTIONS(3149), - [anon_sym_volatile] = ACTIONS(3149), - [anon_sym_where] = ACTIONS(3149), - [anon_sym_notnull] = ACTIONS(3149), - [anon_sym_unmanaged] = ACTIONS(3149), - [anon_sym_checked] = ACTIONS(3149), - [anon_sym_BANG] = ACTIONS(3151), - [anon_sym_TILDE] = ACTIONS(3151), - [anon_sym_PLUS_PLUS] = ACTIONS(3151), - [anon_sym_DASH_DASH] = ACTIONS(3151), - [anon_sym_true] = ACTIONS(3149), - [anon_sym_false] = ACTIONS(3149), - [anon_sym_PLUS] = ACTIONS(3149), - [anon_sym_DASH] = ACTIONS(3149), - [anon_sym_STAR] = ACTIONS(3151), - [anon_sym_CARET] = ACTIONS(3151), - [anon_sym_AMP] = ACTIONS(3151), - [anon_sym_this] = ACTIONS(3149), - [anon_sym_scoped] = ACTIONS(3149), - [anon_sym_base] = ACTIONS(3149), - [anon_sym_var] = ACTIONS(3149), - [sym_predefined_type] = ACTIONS(3149), - [anon_sym_break] = ACTIONS(3149), - [anon_sym_unchecked] = ACTIONS(3149), - [anon_sym_continue] = ACTIONS(3149), - [anon_sym_do] = ACTIONS(3149), - [anon_sym_while] = ACTIONS(3149), - [anon_sym_for] = ACTIONS(3149), - [anon_sym_lock] = ACTIONS(3149), - [anon_sym_yield] = ACTIONS(3149), - [anon_sym_switch] = ACTIONS(3149), - [anon_sym_default] = ACTIONS(3149), - [anon_sym_throw] = ACTIONS(3149), - [anon_sym_try] = ACTIONS(3149), - [anon_sym_when] = ACTIONS(3149), - [anon_sym_await] = ACTIONS(3149), - [anon_sym_foreach] = ACTIONS(3149), - [anon_sym_goto] = ACTIONS(3149), - [anon_sym_if] = ACTIONS(3149), - [anon_sym_else] = ACTIONS(3149), - [anon_sym_DOT_DOT] = ACTIONS(3151), - [anon_sym_from] = ACTIONS(3149), - [anon_sym_into] = ACTIONS(3149), - [anon_sym_join] = ACTIONS(3149), - [anon_sym_on] = ACTIONS(3149), - [anon_sym_equals] = ACTIONS(3149), - [anon_sym_let] = ACTIONS(3149), - [anon_sym_orderby] = ACTIONS(3149), - [anon_sym_ascending] = ACTIONS(3149), - [anon_sym_descending] = ACTIONS(3149), - [anon_sym_group] = ACTIONS(3149), - [anon_sym_by] = ACTIONS(3149), - [anon_sym_select] = ACTIONS(3149), - [anon_sym_stackalloc] = ACTIONS(3149), - [anon_sym_sizeof] = ACTIONS(3149), - [anon_sym_typeof] = ACTIONS(3149), - [anon_sym___makeref] = ACTIONS(3149), - [anon_sym___reftype] = ACTIONS(3149), - [anon_sym___refvalue] = ACTIONS(3149), - [sym_null_literal] = ACTIONS(3149), - [anon_sym_SQUOTE] = ACTIONS(3151), - [sym_integer_literal] = ACTIONS(3149), - [sym_real_literal] = ACTIONS(3151), - [anon_sym_DQUOTE] = ACTIONS(3151), - [sym_verbatim_string_literal] = ACTIONS(3151), - [aux_sym_preproc_if_token1] = ACTIONS(3151), - [aux_sym_preproc_if_token3] = ACTIONS(3151), - [aux_sym_preproc_else_token1] = ACTIONS(3151), - [aux_sym_preproc_elif_token1] = ACTIONS(3151), + [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(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_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), @@ -367118,125 +373464,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(3151), - [sym_interpolation_verbatim_start] = ACTIONS(3151), - [sym_interpolation_raw_start] = ACTIONS(3151), - [sym_raw_string_start] = ACTIONS(3151), + [sym_interpolation_regular_start] = ACTIONS(3325), + [sym_interpolation_verbatim_start] = ACTIONS(3325), + [sym_interpolation_raw_start] = ACTIONS(3325), + [sym_raw_string_start] = ACTIONS(3325), }, - [1931] = { - [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), - [sym__identifier_token] = ACTIONS(3153), - [anon_sym_extern] = ACTIONS(3153), - [anon_sym_alias] = ACTIONS(3153), - [anon_sym_SEMI] = ACTIONS(3155), - [anon_sym_global] = ACTIONS(3153), - [anon_sym_using] = ACTIONS(3153), - [anon_sym_unsafe] = ACTIONS(3153), - [anon_sym_static] = ACTIONS(3153), - [anon_sym_LBRACK] = ACTIONS(3155), - [anon_sym_LPAREN] = ACTIONS(3155), - [anon_sym_return] = ACTIONS(3153), - [anon_sym_namespace] = ACTIONS(3153), - [anon_sym_class] = ACTIONS(3153), - [anon_sym_ref] = ACTIONS(3153), - [anon_sym_struct] = ACTIONS(3153), - [anon_sym_enum] = ACTIONS(3153), - [anon_sym_LBRACE] = ACTIONS(3155), - [anon_sym_interface] = ACTIONS(3153), - [anon_sym_delegate] = ACTIONS(3153), - [anon_sym_record] = ACTIONS(3153), - [anon_sym_abstract] = ACTIONS(3153), - [anon_sym_async] = ACTIONS(3153), - [anon_sym_const] = ACTIONS(3153), - [anon_sym_file] = ACTIONS(3153), - [anon_sym_fixed] = ACTIONS(3153), - [anon_sym_internal] = ACTIONS(3153), - [anon_sym_new] = ACTIONS(3153), - [anon_sym_override] = ACTIONS(3153), - [anon_sym_partial] = ACTIONS(3153), - [anon_sym_private] = ACTIONS(3153), - [anon_sym_protected] = ACTIONS(3153), - [anon_sym_public] = ACTIONS(3153), - [anon_sym_readonly] = ACTIONS(3153), - [anon_sym_required] = ACTIONS(3153), - [anon_sym_sealed] = ACTIONS(3153), - [anon_sym_virtual] = ACTIONS(3153), - [anon_sym_volatile] = ACTIONS(3153), - [anon_sym_where] = ACTIONS(3153), - [anon_sym_notnull] = ACTIONS(3153), - [anon_sym_unmanaged] = ACTIONS(3153), - [anon_sym_checked] = ACTIONS(3153), - [anon_sym_BANG] = ACTIONS(3155), - [anon_sym_TILDE] = ACTIONS(3155), - [anon_sym_PLUS_PLUS] = ACTIONS(3155), - [anon_sym_DASH_DASH] = ACTIONS(3155), - [anon_sym_true] = ACTIONS(3153), - [anon_sym_false] = ACTIONS(3153), - [anon_sym_PLUS] = ACTIONS(3153), - [anon_sym_DASH] = ACTIONS(3153), - [anon_sym_STAR] = ACTIONS(3155), - [anon_sym_CARET] = ACTIONS(3155), - [anon_sym_AMP] = ACTIONS(3155), - [anon_sym_this] = ACTIONS(3153), - [anon_sym_scoped] = ACTIONS(3153), - [anon_sym_base] = ACTIONS(3153), - [anon_sym_var] = ACTIONS(3153), - [sym_predefined_type] = ACTIONS(3153), - [anon_sym_break] = ACTIONS(3153), - [anon_sym_unchecked] = ACTIONS(3153), - [anon_sym_continue] = ACTIONS(3153), - [anon_sym_do] = ACTIONS(3153), - [anon_sym_while] = ACTIONS(3153), - [anon_sym_for] = ACTIONS(3153), - [anon_sym_lock] = ACTIONS(3153), - [anon_sym_yield] = ACTIONS(3153), - [anon_sym_switch] = ACTIONS(3153), - [anon_sym_default] = ACTIONS(3153), - [anon_sym_throw] = ACTIONS(3153), - [anon_sym_try] = ACTIONS(3153), - [anon_sym_when] = ACTIONS(3153), - [anon_sym_await] = ACTIONS(3153), - [anon_sym_foreach] = ACTIONS(3153), - [anon_sym_goto] = ACTIONS(3153), - [anon_sym_if] = ACTIONS(3153), - [anon_sym_else] = ACTIONS(3153), - [anon_sym_DOT_DOT] = ACTIONS(3155), - [anon_sym_from] = ACTIONS(3153), - [anon_sym_into] = ACTIONS(3153), - [anon_sym_join] = ACTIONS(3153), - [anon_sym_on] = ACTIONS(3153), - [anon_sym_equals] = ACTIONS(3153), - [anon_sym_let] = ACTIONS(3153), - [anon_sym_orderby] = ACTIONS(3153), - [anon_sym_ascending] = ACTIONS(3153), - [anon_sym_descending] = ACTIONS(3153), - [anon_sym_group] = ACTIONS(3153), - [anon_sym_by] = ACTIONS(3153), - [anon_sym_select] = ACTIONS(3153), - [anon_sym_stackalloc] = ACTIONS(3153), - [anon_sym_sizeof] = ACTIONS(3153), - [anon_sym_typeof] = ACTIONS(3153), - [anon_sym___makeref] = ACTIONS(3153), - [anon_sym___reftype] = ACTIONS(3153), - [anon_sym___refvalue] = ACTIONS(3153), - [sym_null_literal] = ACTIONS(3153), - [anon_sym_SQUOTE] = ACTIONS(3155), - [sym_integer_literal] = ACTIONS(3153), - [sym_real_literal] = ACTIONS(3155), - [anon_sym_DQUOTE] = ACTIONS(3155), - [sym_verbatim_string_literal] = ACTIONS(3155), - [aux_sym_preproc_if_token1] = ACTIONS(3155), - [aux_sym_preproc_if_token3] = ACTIONS(3155), - [aux_sym_preproc_else_token1] = ACTIONS(3155), - [aux_sym_preproc_elif_token1] = ACTIONS(3155), + [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(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_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), @@ -367247,125 +373592,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(3155), - [sym_interpolation_verbatim_start] = ACTIONS(3155), - [sym_interpolation_raw_start] = ACTIONS(3155), - [sym_raw_string_start] = ACTIONS(3155), + [sym_interpolation_regular_start] = ACTIONS(3329), + [sym_interpolation_verbatim_start] = ACTIONS(3329), + [sym_interpolation_raw_start] = ACTIONS(3329), + [sym_raw_string_start] = ACTIONS(3329), }, - [1932] = { - [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), - [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_when] = 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), + [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(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_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), @@ -367376,125 +373720,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(3159), - [sym_interpolation_verbatim_start] = ACTIONS(3159), - [sym_interpolation_raw_start] = ACTIONS(3159), - [sym_raw_string_start] = ACTIONS(3159), + [sym_interpolation_regular_start] = ACTIONS(3333), + [sym_interpolation_verbatim_start] = ACTIONS(3333), + [sym_interpolation_raw_start] = ACTIONS(3333), + [sym_raw_string_start] = ACTIONS(3333), }, - [1933] = { - [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), - [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_when] = 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), + [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(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_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), @@ -367505,254 +373848,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(3163), - [sym_interpolation_verbatim_start] = ACTIONS(3163), - [sym_interpolation_raw_start] = ACTIONS(3163), - [sym_raw_string_start] = ACTIONS(3163), - }, - [1934] = { - [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), - [sym__identifier_token] = ACTIONS(3095), - [anon_sym_extern] = ACTIONS(3095), - [anon_sym_alias] = ACTIONS(3095), - [anon_sym_SEMI] = ACTIONS(3097), - [anon_sym_global] = ACTIONS(3095), - [anon_sym_using] = ACTIONS(3095), - [anon_sym_unsafe] = ACTIONS(3095), - [anon_sym_static] = ACTIONS(3095), - [anon_sym_LBRACK] = ACTIONS(3097), - [anon_sym_LPAREN] = ACTIONS(3097), - [anon_sym_return] = ACTIONS(3095), - [anon_sym_namespace] = ACTIONS(3095), - [anon_sym_class] = ACTIONS(3095), - [anon_sym_ref] = ACTIONS(3095), - [anon_sym_struct] = ACTIONS(3095), - [anon_sym_enum] = ACTIONS(3095), - [anon_sym_LBRACE] = ACTIONS(3097), - [anon_sym_interface] = ACTIONS(3095), - [anon_sym_delegate] = ACTIONS(3095), - [anon_sym_record] = ACTIONS(3095), - [anon_sym_abstract] = ACTIONS(3095), - [anon_sym_async] = ACTIONS(3095), - [anon_sym_const] = ACTIONS(3095), - [anon_sym_file] = ACTIONS(3095), - [anon_sym_fixed] = ACTIONS(3095), - [anon_sym_internal] = ACTIONS(3095), - [anon_sym_new] = ACTIONS(3095), - [anon_sym_override] = ACTIONS(3095), - [anon_sym_partial] = ACTIONS(3095), - [anon_sym_private] = ACTIONS(3095), - [anon_sym_protected] = ACTIONS(3095), - [anon_sym_public] = ACTIONS(3095), - [anon_sym_readonly] = ACTIONS(3095), - [anon_sym_required] = ACTIONS(3095), - [anon_sym_sealed] = ACTIONS(3095), - [anon_sym_virtual] = ACTIONS(3095), - [anon_sym_volatile] = ACTIONS(3095), - [anon_sym_where] = ACTIONS(3095), - [anon_sym_notnull] = ACTIONS(3095), - [anon_sym_unmanaged] = ACTIONS(3095), - [anon_sym_checked] = ACTIONS(3095), - [anon_sym_BANG] = ACTIONS(3097), - [anon_sym_TILDE] = ACTIONS(3097), - [anon_sym_PLUS_PLUS] = ACTIONS(3097), - [anon_sym_DASH_DASH] = ACTIONS(3097), - [anon_sym_true] = ACTIONS(3095), - [anon_sym_false] = ACTIONS(3095), - [anon_sym_PLUS] = ACTIONS(3095), - [anon_sym_DASH] = ACTIONS(3095), - [anon_sym_STAR] = ACTIONS(3097), - [anon_sym_CARET] = ACTIONS(3097), - [anon_sym_AMP] = ACTIONS(3097), - [anon_sym_this] = ACTIONS(3095), - [anon_sym_scoped] = ACTIONS(3095), - [anon_sym_base] = ACTIONS(3095), - [anon_sym_var] = ACTIONS(3095), - [sym_predefined_type] = ACTIONS(3095), - [anon_sym_break] = ACTIONS(3095), - [anon_sym_unchecked] = ACTIONS(3095), - [anon_sym_continue] = ACTIONS(3095), - [anon_sym_do] = ACTIONS(3095), - [anon_sym_while] = ACTIONS(3095), - [anon_sym_for] = ACTIONS(3095), - [anon_sym_lock] = ACTIONS(3095), - [anon_sym_yield] = ACTIONS(3095), - [anon_sym_switch] = ACTIONS(3095), - [anon_sym_default] = ACTIONS(3095), - [anon_sym_throw] = ACTIONS(3095), - [anon_sym_try] = ACTIONS(3095), - [anon_sym_when] = ACTIONS(3095), - [anon_sym_await] = ACTIONS(3095), - [anon_sym_foreach] = ACTIONS(3095), - [anon_sym_goto] = ACTIONS(3095), - [anon_sym_if] = ACTIONS(3095), - [anon_sym_else] = ACTIONS(3095), - [anon_sym_DOT_DOT] = ACTIONS(3097), - [anon_sym_from] = ACTIONS(3095), - [anon_sym_into] = ACTIONS(3095), - [anon_sym_join] = ACTIONS(3095), - [anon_sym_on] = ACTIONS(3095), - [anon_sym_equals] = ACTIONS(3095), - [anon_sym_let] = ACTIONS(3095), - [anon_sym_orderby] = ACTIONS(3095), - [anon_sym_ascending] = ACTIONS(3095), - [anon_sym_descending] = ACTIONS(3095), - [anon_sym_group] = ACTIONS(3095), - [anon_sym_by] = ACTIONS(3095), - [anon_sym_select] = ACTIONS(3095), - [anon_sym_stackalloc] = ACTIONS(3095), - [anon_sym_sizeof] = ACTIONS(3095), - [anon_sym_typeof] = ACTIONS(3095), - [anon_sym___makeref] = ACTIONS(3095), - [anon_sym___reftype] = ACTIONS(3095), - [anon_sym___refvalue] = ACTIONS(3095), - [sym_null_literal] = ACTIONS(3095), - [anon_sym_SQUOTE] = ACTIONS(3097), - [sym_integer_literal] = ACTIONS(3095), - [sym_real_literal] = ACTIONS(3097), - [anon_sym_DQUOTE] = ACTIONS(3097), - [sym_verbatim_string_literal] = ACTIONS(3097), - [aux_sym_preproc_if_token1] = ACTIONS(3097), - [aux_sym_preproc_if_token3] = ACTIONS(3097), - [aux_sym_preproc_else_token1] = ACTIONS(3097), - [aux_sym_preproc_elif_token1] = ACTIONS(3097), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(3097), - [sym_interpolation_verbatim_start] = ACTIONS(3097), - [sym_interpolation_raw_start] = ACTIONS(3097), - [sym_raw_string_start] = ACTIONS(3097), + [sym_interpolation_regular_start] = ACTIONS(3337), + [sym_interpolation_verbatim_start] = ACTIONS(3337), + [sym_interpolation_raw_start] = ACTIONS(3337), + [sym_raw_string_start] = ACTIONS(3337), }, - [1935] = { - [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), - [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_when] = 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), + [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(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_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), @@ -367763,254 +373976,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(3167), - [sym_interpolation_verbatim_start] = ACTIONS(3167), - [sym_interpolation_raw_start] = ACTIONS(3167), - [sym_raw_string_start] = ACTIONS(3167), + [sym_interpolation_regular_start] = ACTIONS(3341), + [sym_interpolation_verbatim_start] = ACTIONS(3341), + [sym_interpolation_raw_start] = ACTIONS(3341), + [sym_raw_string_start] = ACTIONS(3341), }, - [1936] = { - [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), - [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), - }, - [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(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), + [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(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_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), @@ -368021,125 +374104,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(3345), + [sym_interpolation_verbatim_start] = ACTIONS(3345), + [sym_interpolation_raw_start] = ACTIONS(3345), + [sym_raw_string_start] = ACTIONS(3345), }, - [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(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), + [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(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_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), @@ -368150,125 +374232,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(3349), + [sym_interpolation_verbatim_start] = ACTIONS(3349), + [sym_interpolation_raw_start] = ACTIONS(3349), + [sym_raw_string_start] = ACTIONS(3349), }, - [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(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), + [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(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), @@ -368279,125 +374360,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), + [sym_interpolation_regular_start] = ACTIONS(3353), + [sym_interpolation_verbatim_start] = ACTIONS(3353), + [sym_interpolation_raw_start] = ACTIONS(3353), + [sym_raw_string_start] = ACTIONS(3353), }, - [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(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), + [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(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), @@ -368408,254 +374488,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(3187), - [sym_interpolation_verbatim_start] = ACTIONS(3187), - [sym_interpolation_raw_start] = ACTIONS(3187), - [sym_raw_string_start] = ACTIONS(3187), + [sym_interpolation_regular_start] = ACTIONS(3357), + [sym_interpolation_verbatim_start] = ACTIONS(3357), + [sym_interpolation_raw_start] = ACTIONS(3357), + [sym_raw_string_start] = ACTIONS(3357), }, - [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(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), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [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), - }, - [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(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), + [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(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), @@ -368666,125 +374616,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(3195), - [sym_interpolation_verbatim_start] = ACTIONS(3195), - [sym_interpolation_raw_start] = ACTIONS(3195), - [sym_raw_string_start] = ACTIONS(3195), + [sym_interpolation_regular_start] = ACTIONS(3361), + [sym_interpolation_verbatim_start] = ACTIONS(3361), + [sym_interpolation_raw_start] = ACTIONS(3361), + [sym_raw_string_start] = ACTIONS(3361), }, - [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(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), + [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(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), @@ -368795,125 +374744,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(3199), - [sym_interpolation_verbatim_start] = ACTIONS(3199), - [sym_interpolation_raw_start] = ACTIONS(3199), - [sym_raw_string_start] = ACTIONS(3199), + [sym_interpolation_regular_start] = ACTIONS(3365), + [sym_interpolation_verbatim_start] = ACTIONS(3365), + [sym_interpolation_raw_start] = ACTIONS(3365), + [sym_raw_string_start] = ACTIONS(3365), }, - [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), - [ts_builtin_sym_end] = ACTIONS(3143), - [sym__identifier_token] = ACTIONS(3141), - [anon_sym_extern] = ACTIONS(3141), - [anon_sym_alias] = ACTIONS(3141), - [anon_sym_SEMI] = ACTIONS(3143), - [anon_sym_global] = ACTIONS(3141), - [anon_sym_using] = ACTIONS(3141), - [anon_sym_unsafe] = ACTIONS(3141), - [anon_sym_static] = ACTIONS(3141), - [anon_sym_LBRACK] = ACTIONS(3143), - [anon_sym_LPAREN] = ACTIONS(3143), - [anon_sym_return] = ACTIONS(3141), - [anon_sym_namespace] = ACTIONS(3141), - [anon_sym_class] = ACTIONS(3141), - [anon_sym_ref] = ACTIONS(3141), - [anon_sym_struct] = ACTIONS(3141), - [anon_sym_enum] = ACTIONS(3141), - [anon_sym_LBRACE] = ACTIONS(3143), - [anon_sym_interface] = ACTIONS(3141), - [anon_sym_delegate] = ACTIONS(3141), - [anon_sym_record] = ACTIONS(3141), - [anon_sym_abstract] = ACTIONS(3141), - [anon_sym_async] = ACTIONS(3141), - [anon_sym_const] = ACTIONS(3141), - [anon_sym_file] = ACTIONS(3141), - [anon_sym_fixed] = ACTIONS(3141), - [anon_sym_internal] = ACTIONS(3141), - [anon_sym_new] = ACTIONS(3141), - [anon_sym_override] = ACTIONS(3141), - [anon_sym_partial] = ACTIONS(3141), - [anon_sym_private] = ACTIONS(3141), - [anon_sym_protected] = ACTIONS(3141), - [anon_sym_public] = ACTIONS(3141), - [anon_sym_readonly] = ACTIONS(3141), - [anon_sym_required] = ACTIONS(3141), - [anon_sym_sealed] = ACTIONS(3141), - [anon_sym_virtual] = ACTIONS(3141), - [anon_sym_volatile] = ACTIONS(3141), - [anon_sym_where] = ACTIONS(3141), - [anon_sym_notnull] = ACTIONS(3141), - [anon_sym_unmanaged] = ACTIONS(3141), - [anon_sym_checked] = ACTIONS(3141), - [anon_sym_BANG] = ACTIONS(3143), - [anon_sym_TILDE] = ACTIONS(3143), - [anon_sym_PLUS_PLUS] = ACTIONS(3143), - [anon_sym_DASH_DASH] = ACTIONS(3143), - [anon_sym_true] = ACTIONS(3141), - [anon_sym_false] = ACTIONS(3141), - [anon_sym_PLUS] = ACTIONS(3141), - [anon_sym_DASH] = ACTIONS(3141), - [anon_sym_STAR] = ACTIONS(3143), - [anon_sym_CARET] = ACTIONS(3143), - [anon_sym_AMP] = ACTIONS(3143), - [anon_sym_this] = ACTIONS(3141), - [anon_sym_scoped] = ACTIONS(3141), - [anon_sym_base] = ACTIONS(3141), - [anon_sym_var] = ACTIONS(3141), - [sym_predefined_type] = ACTIONS(3141), - [anon_sym_break] = ACTIONS(3141), - [anon_sym_unchecked] = ACTIONS(3141), - [anon_sym_continue] = ACTIONS(3141), - [anon_sym_do] = ACTIONS(3141), - [anon_sym_while] = ACTIONS(3141), - [anon_sym_for] = ACTIONS(3141), - [anon_sym_lock] = ACTIONS(3141), - [anon_sym_yield] = ACTIONS(3141), - [anon_sym_switch] = ACTIONS(3141), - [anon_sym_default] = ACTIONS(3141), - [anon_sym_throw] = ACTIONS(3141), - [anon_sym_try] = ACTIONS(3141), - [anon_sym_catch] = ACTIONS(3141), - [anon_sym_when] = ACTIONS(3141), - [anon_sym_finally] = ACTIONS(3141), - [anon_sym_await] = ACTIONS(3141), - [anon_sym_foreach] = ACTIONS(3141), - [anon_sym_goto] = ACTIONS(3141), - [anon_sym_if] = ACTIONS(3141), - [anon_sym_else] = ACTIONS(3141), - [anon_sym_DOT_DOT] = ACTIONS(3143), - [anon_sym_from] = ACTIONS(3141), - [anon_sym_into] = ACTIONS(3141), - [anon_sym_join] = ACTIONS(3141), - [anon_sym_on] = ACTIONS(3141), - [anon_sym_equals] = ACTIONS(3141), - [anon_sym_let] = ACTIONS(3141), - [anon_sym_orderby] = ACTIONS(3141), - [anon_sym_ascending] = ACTIONS(3141), - [anon_sym_descending] = ACTIONS(3141), - [anon_sym_group] = ACTIONS(3141), - [anon_sym_by] = ACTIONS(3141), - [anon_sym_select] = ACTIONS(3141), - [anon_sym_stackalloc] = ACTIONS(3141), - [anon_sym_sizeof] = ACTIONS(3141), - [anon_sym_typeof] = ACTIONS(3141), - [anon_sym___makeref] = ACTIONS(3141), - [anon_sym___reftype] = ACTIONS(3141), - [anon_sym___refvalue] = ACTIONS(3141), - [sym_null_literal] = ACTIONS(3141), - [anon_sym_SQUOTE] = ACTIONS(3143), - [sym_integer_literal] = ACTIONS(3141), - [sym_real_literal] = ACTIONS(3143), - [anon_sym_DQUOTE] = ACTIONS(3143), - [sym_verbatim_string_literal] = ACTIONS(3143), - [aux_sym_preproc_if_token1] = ACTIONS(3143), + [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(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), @@ -368924,125 +374872,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(3143), - [sym_interpolation_verbatim_start] = ACTIONS(3143), - [sym_interpolation_raw_start] = ACTIONS(3143), - [sym_raw_string_start] = ACTIONS(3143), + [sym_interpolation_regular_start] = ACTIONS(3369), + [sym_interpolation_verbatim_start] = ACTIONS(3369), + [sym_interpolation_raw_start] = ACTIONS(3369), + [sym_raw_string_start] = ACTIONS(3369), }, - [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(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), + [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(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), @@ -369053,34 +375000,674 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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(3373), + [sym_interpolation_verbatim_start] = ACTIONS(3373), + [sym_interpolation_raw_start] = ACTIONS(3373), + [sym_raw_string_start] = ACTIONS(3373), }, - [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(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), + [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(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), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(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), + }, + [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(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), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [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), + }, + [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(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), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [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), + }, + [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(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), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [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), + }, + [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(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), + }, + [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(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), @@ -369142,7 +375729,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), @@ -369187,120 +375773,119 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_interpolation_raw_start] = ACTIONS(3207), [sym_raw_string_start] = ACTIONS(3207), }, - [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(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), + [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(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), @@ -369311,1028 +375896,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(3211), - [sym_interpolation_verbatim_start] = ACTIONS(3211), - [sym_interpolation_raw_start] = ACTIONS(3211), - [sym_raw_string_start] = ACTIONS(3211), + [sym_interpolation_regular_start] = ACTIONS(3397), + [sym_interpolation_verbatim_start] = ACTIONS(3397), + [sym_interpolation_raw_start] = ACTIONS(3397), + [sym_raw_string_start] = ACTIONS(3397), }, - [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(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(3217), - [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), - }, - [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(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), - }, - [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), - [ts_builtin_sym_end] = ACTIONS(3136), - [sym__identifier_token] = ACTIONS(3134), - [anon_sym_extern] = ACTIONS(3134), - [anon_sym_alias] = ACTIONS(3134), - [anon_sym_SEMI] = ACTIONS(3136), - [anon_sym_global] = ACTIONS(3134), - [anon_sym_using] = ACTIONS(3134), - [anon_sym_unsafe] = ACTIONS(3134), - [anon_sym_static] = ACTIONS(3134), - [anon_sym_LBRACK] = ACTIONS(3136), - [anon_sym_LPAREN] = ACTIONS(3136), - [anon_sym_return] = ACTIONS(3134), - [anon_sym_namespace] = ACTIONS(3134), - [anon_sym_class] = ACTIONS(3134), - [anon_sym_ref] = ACTIONS(3134), - [anon_sym_struct] = ACTIONS(3134), - [anon_sym_enum] = ACTIONS(3134), - [anon_sym_LBRACE] = ACTIONS(3136), - [anon_sym_interface] = ACTIONS(3134), - [anon_sym_delegate] = ACTIONS(3134), - [anon_sym_record] = ACTIONS(3134), - [anon_sym_abstract] = ACTIONS(3134), - [anon_sym_async] = ACTIONS(3134), - [anon_sym_const] = ACTIONS(3134), - [anon_sym_file] = ACTIONS(3134), - [anon_sym_fixed] = ACTIONS(3134), - [anon_sym_internal] = ACTIONS(3134), - [anon_sym_new] = ACTIONS(3134), - [anon_sym_override] = ACTIONS(3134), - [anon_sym_partial] = ACTIONS(3134), - [anon_sym_private] = ACTIONS(3134), - [anon_sym_protected] = ACTIONS(3134), - [anon_sym_public] = ACTIONS(3134), - [anon_sym_readonly] = ACTIONS(3134), - [anon_sym_required] = ACTIONS(3134), - [anon_sym_sealed] = ACTIONS(3134), - [anon_sym_virtual] = ACTIONS(3134), - [anon_sym_volatile] = ACTIONS(3134), - [anon_sym_where] = ACTIONS(3134), - [anon_sym_notnull] = ACTIONS(3134), - [anon_sym_unmanaged] = ACTIONS(3134), - [anon_sym_checked] = ACTIONS(3134), - [anon_sym_BANG] = ACTIONS(3136), - [anon_sym_TILDE] = ACTIONS(3136), - [anon_sym_PLUS_PLUS] = ACTIONS(3136), - [anon_sym_DASH_DASH] = ACTIONS(3136), - [anon_sym_true] = ACTIONS(3134), - [anon_sym_false] = ACTIONS(3134), - [anon_sym_PLUS] = ACTIONS(3134), - [anon_sym_DASH] = ACTIONS(3134), - [anon_sym_STAR] = ACTIONS(3136), - [anon_sym_CARET] = ACTIONS(3136), - [anon_sym_AMP] = ACTIONS(3136), - [anon_sym_this] = ACTIONS(3134), - [anon_sym_scoped] = ACTIONS(3134), - [anon_sym_base] = ACTIONS(3134), - [anon_sym_var] = ACTIONS(3134), - [sym_predefined_type] = ACTIONS(3134), - [anon_sym_break] = ACTIONS(3134), - [anon_sym_unchecked] = ACTIONS(3134), - [anon_sym_continue] = ACTIONS(3134), - [anon_sym_do] = ACTIONS(3134), - [anon_sym_while] = ACTIONS(3134), - [anon_sym_for] = ACTIONS(3134), - [anon_sym_lock] = ACTIONS(3134), - [anon_sym_yield] = ACTIONS(3134), - [anon_sym_switch] = ACTIONS(3134), - [anon_sym_default] = ACTIONS(3134), - [anon_sym_throw] = ACTIONS(3134), - [anon_sym_try] = ACTIONS(3134), - [anon_sym_catch] = ACTIONS(3134), - [anon_sym_when] = ACTIONS(3134), - [anon_sym_finally] = ACTIONS(3134), - [anon_sym_await] = ACTIONS(3134), - [anon_sym_foreach] = ACTIONS(3134), - [anon_sym_goto] = ACTIONS(3134), - [anon_sym_if] = ACTIONS(3134), - [anon_sym_else] = ACTIONS(3134), - [anon_sym_DOT_DOT] = ACTIONS(3136), - [anon_sym_from] = ACTIONS(3134), - [anon_sym_into] = ACTIONS(3134), - [anon_sym_join] = ACTIONS(3134), - [anon_sym_on] = ACTIONS(3134), - [anon_sym_equals] = ACTIONS(3134), - [anon_sym_let] = ACTIONS(3134), - [anon_sym_orderby] = ACTIONS(3134), - [anon_sym_ascending] = ACTIONS(3134), - [anon_sym_descending] = ACTIONS(3134), - [anon_sym_group] = ACTIONS(3134), - [anon_sym_by] = ACTIONS(3134), - [anon_sym_select] = ACTIONS(3134), - [anon_sym_stackalloc] = ACTIONS(3134), - [anon_sym_sizeof] = ACTIONS(3134), - [anon_sym_typeof] = ACTIONS(3134), - [anon_sym___makeref] = ACTIONS(3134), - [anon_sym___reftype] = ACTIONS(3134), - [anon_sym___refvalue] = ACTIONS(3134), - [sym_null_literal] = ACTIONS(3134), - [anon_sym_SQUOTE] = ACTIONS(3136), - [sym_integer_literal] = ACTIONS(3134), - [sym_real_literal] = ACTIONS(3136), - [anon_sym_DQUOTE] = ACTIONS(3136), - [sym_verbatim_string_literal] = ACTIONS(3136), - [aux_sym_preproc_if_token1] = ACTIONS(3136), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(3136), - [sym_interpolation_verbatim_start] = ACTIONS(3136), - [sym_interpolation_raw_start] = ACTIONS(3136), - [sym_raw_string_start] = ACTIONS(3136), - }, - [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(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), - }, - [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(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), - }, - [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(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), - }, - [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(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), - }, - [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), - [ts_builtin_sym_end] = ACTIONS(2953), - [sym__identifier_token] = ACTIONS(2951), - [anon_sym_extern] = ACTIONS(2951), - [anon_sym_alias] = ACTIONS(2951), - [anon_sym_SEMI] = ACTIONS(2953), - [anon_sym_global] = ACTIONS(2951), - [anon_sym_using] = ACTIONS(2951), - [anon_sym_unsafe] = ACTIONS(2951), - [anon_sym_static] = ACTIONS(2951), - [anon_sym_LBRACK] = ACTIONS(2953), - [anon_sym_LPAREN] = ACTIONS(2953), - [anon_sym_return] = ACTIONS(2951), - [anon_sym_namespace] = ACTIONS(2951), - [anon_sym_class] = ACTIONS(2951), - [anon_sym_ref] = ACTIONS(2951), - [anon_sym_struct] = ACTIONS(2951), - [anon_sym_enum] = ACTIONS(2951), - [anon_sym_LBRACE] = ACTIONS(2953), - [anon_sym_interface] = ACTIONS(2951), - [anon_sym_delegate] = ACTIONS(2951), - [anon_sym_record] = ACTIONS(2951), - [anon_sym_abstract] = ACTIONS(2951), - [anon_sym_async] = ACTIONS(2951), - [anon_sym_const] = ACTIONS(2951), - [anon_sym_file] = ACTIONS(2951), - [anon_sym_fixed] = ACTIONS(2951), - [anon_sym_internal] = ACTIONS(2951), - [anon_sym_new] = ACTIONS(2951), - [anon_sym_override] = ACTIONS(2951), - [anon_sym_partial] = ACTIONS(2951), - [anon_sym_private] = ACTIONS(2951), - [anon_sym_protected] = ACTIONS(2951), - [anon_sym_public] = ACTIONS(2951), - [anon_sym_readonly] = ACTIONS(2951), - [anon_sym_required] = ACTIONS(2951), - [anon_sym_sealed] = ACTIONS(2951), - [anon_sym_virtual] = ACTIONS(2951), - [anon_sym_volatile] = ACTIONS(2951), - [anon_sym_where] = ACTIONS(2951), - [anon_sym_notnull] = ACTIONS(2951), - [anon_sym_unmanaged] = ACTIONS(2951), - [anon_sym_checked] = ACTIONS(2951), - [anon_sym_BANG] = ACTIONS(2953), - [anon_sym_TILDE] = ACTIONS(2953), - [anon_sym_PLUS_PLUS] = ACTIONS(2953), - [anon_sym_DASH_DASH] = ACTIONS(2953), - [anon_sym_true] = ACTIONS(2951), - [anon_sym_false] = ACTIONS(2951), - [anon_sym_PLUS] = ACTIONS(2951), - [anon_sym_DASH] = ACTIONS(2951), - [anon_sym_STAR] = ACTIONS(2953), - [anon_sym_CARET] = ACTIONS(2953), - [anon_sym_AMP] = ACTIONS(2953), - [anon_sym_this] = ACTIONS(2951), - [anon_sym_scoped] = ACTIONS(2951), - [anon_sym_base] = ACTIONS(2951), - [anon_sym_var] = ACTIONS(2951), - [sym_predefined_type] = ACTIONS(2951), - [anon_sym_break] = ACTIONS(2951), - [anon_sym_unchecked] = ACTIONS(2951), - [anon_sym_continue] = ACTIONS(2951), - [anon_sym_do] = ACTIONS(2951), - [anon_sym_while] = ACTIONS(2951), - [anon_sym_for] = ACTIONS(2951), - [anon_sym_lock] = ACTIONS(2951), - [anon_sym_yield] = ACTIONS(2951), - [anon_sym_switch] = ACTIONS(2951), - [anon_sym_default] = ACTIONS(2951), - [anon_sym_throw] = ACTIONS(2951), - [anon_sym_try] = ACTIONS(2951), - [anon_sym_catch] = ACTIONS(2951), - [anon_sym_when] = ACTIONS(2951), - [anon_sym_finally] = ACTIONS(2951), - [anon_sym_await] = ACTIONS(2951), - [anon_sym_foreach] = ACTIONS(2951), - [anon_sym_goto] = ACTIONS(2951), - [anon_sym_if] = ACTIONS(2951), - [anon_sym_else] = ACTIONS(2951), - [anon_sym_DOT_DOT] = ACTIONS(2953), - [anon_sym_from] = ACTIONS(2951), - [anon_sym_into] = ACTIONS(2951), - [anon_sym_join] = ACTIONS(2951), - [anon_sym_on] = ACTIONS(2951), - [anon_sym_equals] = ACTIONS(2951), - [anon_sym_let] = ACTIONS(2951), - [anon_sym_orderby] = ACTIONS(2951), - [anon_sym_ascending] = ACTIONS(2951), - [anon_sym_descending] = ACTIONS(2951), - [anon_sym_group] = ACTIONS(2951), - [anon_sym_by] = ACTIONS(2951), - [anon_sym_select] = ACTIONS(2951), - [anon_sym_stackalloc] = ACTIONS(2951), - [anon_sym_sizeof] = ACTIONS(2951), - [anon_sym_typeof] = ACTIONS(2951), - [anon_sym___makeref] = ACTIONS(2951), - [anon_sym___reftype] = ACTIONS(2951), - [anon_sym___refvalue] = ACTIONS(2951), - [sym_null_literal] = ACTIONS(2951), - [anon_sym_SQUOTE] = ACTIONS(2953), - [sym_integer_literal] = ACTIONS(2951), - [sym_real_literal] = ACTIONS(2953), - [anon_sym_DQUOTE] = ACTIONS(2953), - [sym_verbatim_string_literal] = ACTIONS(2953), - [aux_sym_preproc_if_token1] = ACTIONS(2953), + [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(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), @@ -370343,1028 +376024,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(2953), - [sym_interpolation_verbatim_start] = ACTIONS(2953), - [sym_interpolation_raw_start] = ACTIONS(2953), - [sym_raw_string_start] = ACTIONS(2953), - }, - [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(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), - }, - [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(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), - }, - [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(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), - }, - [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(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), - }, - [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(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), - }, - [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(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), - }, - [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(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), + [sym_interpolation_regular_start] = ACTIONS(3401), + [sym_interpolation_verbatim_start] = ACTIONS(3401), + [sym_interpolation_raw_start] = ACTIONS(3401), + [sym_raw_string_start] = ACTIONS(3401), }, - [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), - [ts_builtin_sym_end] = ACTIONS(3128), - [sym__identifier_token] = ACTIONS(3126), - [anon_sym_extern] = ACTIONS(3126), - [anon_sym_alias] = ACTIONS(3126), - [anon_sym_SEMI] = ACTIONS(3128), - [anon_sym_global] = ACTIONS(3126), - [anon_sym_using] = ACTIONS(3126), - [anon_sym_unsafe] = ACTIONS(3126), - [anon_sym_static] = ACTIONS(3126), - [anon_sym_LBRACK] = ACTIONS(3128), - [anon_sym_LPAREN] = ACTIONS(3128), - [anon_sym_return] = ACTIONS(3126), - [anon_sym_namespace] = ACTIONS(3126), - [anon_sym_class] = ACTIONS(3126), - [anon_sym_ref] = ACTIONS(3126), - [anon_sym_struct] = ACTIONS(3126), - [anon_sym_enum] = ACTIONS(3126), - [anon_sym_LBRACE] = ACTIONS(3128), - [anon_sym_interface] = ACTIONS(3126), - [anon_sym_delegate] = ACTIONS(3126), - [anon_sym_record] = ACTIONS(3126), - [anon_sym_abstract] = ACTIONS(3126), - [anon_sym_async] = ACTIONS(3126), - [anon_sym_const] = ACTIONS(3126), - [anon_sym_file] = ACTIONS(3126), - [anon_sym_fixed] = ACTIONS(3126), - [anon_sym_internal] = ACTIONS(3126), - [anon_sym_new] = ACTIONS(3126), - [anon_sym_override] = ACTIONS(3126), - [anon_sym_partial] = ACTIONS(3126), - [anon_sym_private] = ACTIONS(3126), - [anon_sym_protected] = ACTIONS(3126), - [anon_sym_public] = ACTIONS(3126), - [anon_sym_readonly] = ACTIONS(3126), - [anon_sym_required] = ACTIONS(3126), - [anon_sym_sealed] = ACTIONS(3126), - [anon_sym_virtual] = ACTIONS(3126), - [anon_sym_volatile] = ACTIONS(3126), - [anon_sym_where] = ACTIONS(3126), - [anon_sym_notnull] = ACTIONS(3126), - [anon_sym_unmanaged] = ACTIONS(3126), - [anon_sym_checked] = ACTIONS(3126), - [anon_sym_BANG] = ACTIONS(3128), - [anon_sym_TILDE] = ACTIONS(3128), - [anon_sym_PLUS_PLUS] = ACTIONS(3128), - [anon_sym_DASH_DASH] = ACTIONS(3128), - [anon_sym_true] = ACTIONS(3126), - [anon_sym_false] = ACTIONS(3126), - [anon_sym_PLUS] = ACTIONS(3126), - [anon_sym_DASH] = ACTIONS(3126), - [anon_sym_STAR] = ACTIONS(3128), - [anon_sym_CARET] = ACTIONS(3128), - [anon_sym_AMP] = ACTIONS(3128), - [anon_sym_this] = ACTIONS(3126), - [anon_sym_scoped] = ACTIONS(3126), - [anon_sym_base] = ACTIONS(3126), - [anon_sym_var] = ACTIONS(3126), - [sym_predefined_type] = ACTIONS(3126), - [anon_sym_break] = ACTIONS(3126), - [anon_sym_unchecked] = ACTIONS(3126), - [anon_sym_continue] = ACTIONS(3126), - [anon_sym_do] = ACTIONS(3126), - [anon_sym_while] = ACTIONS(3126), - [anon_sym_for] = ACTIONS(3126), - [anon_sym_lock] = ACTIONS(3126), - [anon_sym_yield] = ACTIONS(3126), - [anon_sym_switch] = ACTIONS(3126), - [anon_sym_default] = ACTIONS(3126), - [anon_sym_throw] = ACTIONS(3126), - [anon_sym_try] = ACTIONS(3126), - [anon_sym_catch] = ACTIONS(3126), - [anon_sym_when] = ACTIONS(3126), - [anon_sym_finally] = ACTIONS(3126), - [anon_sym_await] = ACTIONS(3126), - [anon_sym_foreach] = ACTIONS(3126), - [anon_sym_goto] = ACTIONS(3126), - [anon_sym_if] = ACTIONS(3126), - [anon_sym_else] = ACTIONS(3126), - [anon_sym_DOT_DOT] = ACTIONS(3128), - [anon_sym_from] = ACTIONS(3126), - [anon_sym_into] = ACTIONS(3126), - [anon_sym_join] = ACTIONS(3126), - [anon_sym_on] = ACTIONS(3126), - [anon_sym_equals] = ACTIONS(3126), - [anon_sym_let] = ACTIONS(3126), - [anon_sym_orderby] = ACTIONS(3126), - [anon_sym_ascending] = ACTIONS(3126), - [anon_sym_descending] = ACTIONS(3126), - [anon_sym_group] = ACTIONS(3126), - [anon_sym_by] = ACTIONS(3126), - [anon_sym_select] = ACTIONS(3126), - [anon_sym_stackalloc] = ACTIONS(3126), - [anon_sym_sizeof] = ACTIONS(3126), - [anon_sym_typeof] = ACTIONS(3126), - [anon_sym___makeref] = ACTIONS(3126), - [anon_sym___reftype] = ACTIONS(3126), - [anon_sym___refvalue] = ACTIONS(3126), - [sym_null_literal] = ACTIONS(3126), - [anon_sym_SQUOTE] = ACTIONS(3128), - [sym_integer_literal] = ACTIONS(3126), - [sym_real_literal] = ACTIONS(3128), - [anon_sym_DQUOTE] = ACTIONS(3128), - [sym_verbatim_string_literal] = ACTIONS(3128), - [aux_sym_preproc_if_token1] = ACTIONS(3128), + [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(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), @@ -371375,1931 +376152,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(3128), - [sym_interpolation_verbatim_start] = ACTIONS(3128), - [sym_interpolation_raw_start] = ACTIONS(3128), - [sym_raw_string_start] = ACTIONS(3128), - }, - [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(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), - }, - [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(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), - }, - [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(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), - }, - [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), - [ts_builtin_sym_end] = ACTIONS(3132), - [sym__identifier_token] = ACTIONS(3130), - [anon_sym_extern] = ACTIONS(3130), - [anon_sym_alias] = ACTIONS(3130), - [anon_sym_SEMI] = ACTIONS(3132), - [anon_sym_global] = ACTIONS(3130), - [anon_sym_using] = ACTIONS(3130), - [anon_sym_unsafe] = ACTIONS(3130), - [anon_sym_static] = ACTIONS(3130), - [anon_sym_LBRACK] = ACTIONS(3132), - [anon_sym_LPAREN] = ACTIONS(3132), - [anon_sym_return] = ACTIONS(3130), - [anon_sym_namespace] = ACTIONS(3130), - [anon_sym_class] = ACTIONS(3130), - [anon_sym_ref] = ACTIONS(3130), - [anon_sym_struct] = ACTIONS(3130), - [anon_sym_enum] = ACTIONS(3130), - [anon_sym_LBRACE] = ACTIONS(3132), - [anon_sym_interface] = ACTIONS(3130), - [anon_sym_delegate] = ACTIONS(3130), - [anon_sym_record] = ACTIONS(3130), - [anon_sym_abstract] = ACTIONS(3130), - [anon_sym_async] = ACTIONS(3130), - [anon_sym_const] = ACTIONS(3130), - [anon_sym_file] = ACTIONS(3130), - [anon_sym_fixed] = ACTIONS(3130), - [anon_sym_internal] = ACTIONS(3130), - [anon_sym_new] = ACTIONS(3130), - [anon_sym_override] = ACTIONS(3130), - [anon_sym_partial] = ACTIONS(3130), - [anon_sym_private] = ACTIONS(3130), - [anon_sym_protected] = ACTIONS(3130), - [anon_sym_public] = ACTIONS(3130), - [anon_sym_readonly] = ACTIONS(3130), - [anon_sym_required] = ACTIONS(3130), - [anon_sym_sealed] = ACTIONS(3130), - [anon_sym_virtual] = ACTIONS(3130), - [anon_sym_volatile] = ACTIONS(3130), - [anon_sym_where] = ACTIONS(3130), - [anon_sym_notnull] = ACTIONS(3130), - [anon_sym_unmanaged] = ACTIONS(3130), - [anon_sym_checked] = ACTIONS(3130), - [anon_sym_BANG] = ACTIONS(3132), - [anon_sym_TILDE] = ACTIONS(3132), - [anon_sym_PLUS_PLUS] = ACTIONS(3132), - [anon_sym_DASH_DASH] = ACTIONS(3132), - [anon_sym_true] = ACTIONS(3130), - [anon_sym_false] = ACTIONS(3130), - [anon_sym_PLUS] = ACTIONS(3130), - [anon_sym_DASH] = ACTIONS(3130), - [anon_sym_STAR] = ACTIONS(3132), - [anon_sym_CARET] = ACTIONS(3132), - [anon_sym_AMP] = ACTIONS(3132), - [anon_sym_this] = ACTIONS(3130), - [anon_sym_scoped] = ACTIONS(3130), - [anon_sym_base] = ACTIONS(3130), - [anon_sym_var] = ACTIONS(3130), - [sym_predefined_type] = ACTIONS(3130), - [anon_sym_break] = ACTIONS(3130), - [anon_sym_unchecked] = ACTIONS(3130), - [anon_sym_continue] = ACTIONS(3130), - [anon_sym_do] = ACTIONS(3130), - [anon_sym_while] = ACTIONS(3130), - [anon_sym_for] = ACTIONS(3130), - [anon_sym_lock] = ACTIONS(3130), - [anon_sym_yield] = ACTIONS(3130), - [anon_sym_switch] = ACTIONS(3130), - [anon_sym_default] = ACTIONS(3130), - [anon_sym_throw] = ACTIONS(3130), - [anon_sym_try] = ACTIONS(3130), - [anon_sym_catch] = ACTIONS(3130), - [anon_sym_when] = ACTIONS(3130), - [anon_sym_finally] = ACTIONS(3130), - [anon_sym_await] = ACTIONS(3130), - [anon_sym_foreach] = ACTIONS(3130), - [anon_sym_goto] = ACTIONS(3130), - [anon_sym_if] = ACTIONS(3130), - [anon_sym_else] = ACTIONS(3130), - [anon_sym_DOT_DOT] = ACTIONS(3132), - [anon_sym_from] = ACTIONS(3130), - [anon_sym_into] = ACTIONS(3130), - [anon_sym_join] = ACTIONS(3130), - [anon_sym_on] = ACTIONS(3130), - [anon_sym_equals] = ACTIONS(3130), - [anon_sym_let] = ACTIONS(3130), - [anon_sym_orderby] = ACTIONS(3130), - [anon_sym_ascending] = ACTIONS(3130), - [anon_sym_descending] = ACTIONS(3130), - [anon_sym_group] = ACTIONS(3130), - [anon_sym_by] = ACTIONS(3130), - [anon_sym_select] = ACTIONS(3130), - [anon_sym_stackalloc] = ACTIONS(3130), - [anon_sym_sizeof] = ACTIONS(3130), - [anon_sym_typeof] = ACTIONS(3130), - [anon_sym___makeref] = ACTIONS(3130), - [anon_sym___reftype] = ACTIONS(3130), - [anon_sym___refvalue] = ACTIONS(3130), - [sym_null_literal] = ACTIONS(3130), - [anon_sym_SQUOTE] = ACTIONS(3132), - [sym_integer_literal] = ACTIONS(3130), - [sym_real_literal] = ACTIONS(3132), - [anon_sym_DQUOTE] = ACTIONS(3132), - [sym_verbatim_string_literal] = ACTIONS(3132), - [aux_sym_preproc_if_token1] = ACTIONS(3132), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(3132), - [sym_interpolation_verbatim_start] = ACTIONS(3132), - [sym_interpolation_raw_start] = ACTIONS(3132), - [sym_raw_string_start] = ACTIONS(3132), - }, - [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(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), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(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), - }, - [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(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), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(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), - }, - [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(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), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(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), - }, - [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(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), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(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), - }, - [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(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), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(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), - }, - [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(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), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(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), - }, - [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(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), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(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), - }, - [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(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), - }, - [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(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), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [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), - }, - [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(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), + [sym_interpolation_regular_start] = ACTIONS(3405), + [sym_interpolation_verbatim_start] = ACTIONS(3405), + [sym_interpolation_raw_start] = ACTIONS(3405), + [sym_raw_string_start] = ACTIONS(3405), }, - [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(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), + [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(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), @@ -373310,125 +376280,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(3321), - [sym_interpolation_verbatim_start] = ACTIONS(3321), - [sym_interpolation_raw_start] = ACTIONS(3321), - [sym_raw_string_start] = ACTIONS(3321), + [sym_interpolation_regular_start] = ACTIONS(3409), + [sym_interpolation_verbatim_start] = ACTIONS(3409), + [sym_interpolation_raw_start] = ACTIONS(3409), + [sym_raw_string_start] = ACTIONS(3409), }, - [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(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), + [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(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), @@ -373439,124 +376408,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(3325), - [sym_interpolation_verbatim_start] = ACTIONS(3325), - [sym_interpolation_raw_start] = ACTIONS(3325), - [sym_raw_string_start] = ACTIONS(3325), + [sym_interpolation_regular_start] = ACTIONS(3413), + [sym_interpolation_verbatim_start] = ACTIONS(3413), + [sym_interpolation_raw_start] = ACTIONS(3413), + [sym_raw_string_start] = ACTIONS(3413), }, - [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(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_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), + [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(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), @@ -373567,124 +376536,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(3329), - [sym_interpolation_verbatim_start] = ACTIONS(3329), - [sym_interpolation_raw_start] = ACTIONS(3329), - [sym_raw_string_start] = ACTIONS(3329), + [sym_interpolation_regular_start] = ACTIONS(3417), + [sym_interpolation_verbatim_start] = ACTIONS(3417), + [sym_interpolation_raw_start] = ACTIONS(3417), + [sym_raw_string_start] = ACTIONS(3417), }, - [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(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_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), + [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), + [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), @@ -373695,252 +376663,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(3333), - [sym_interpolation_verbatim_start] = ACTIONS(3333), - [sym_interpolation_raw_start] = ACTIONS(3333), - [sym_raw_string_start] = ACTIONS(3333), + [sym_interpolation_regular_start] = ACTIONS(3321), + [sym_interpolation_verbatim_start] = ACTIONS(3321), + [sym_interpolation_raw_start] = ACTIONS(3321), + [sym_raw_string_start] = ACTIONS(3321), }, - [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(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_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), + [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), + [ts_builtin_sym_end] = ACTIONS(3291), + [sym__identifier_token] = ACTIONS(3289), + [anon_sym_extern] = ACTIONS(3289), + [anon_sym_alias] = ACTIONS(3289), + [anon_sym_SEMI] = ACTIONS(3291), + [anon_sym_global] = ACTIONS(3289), + [anon_sym_using] = ACTIONS(3289), + [anon_sym_unsafe] = ACTIONS(3289), + [anon_sym_static] = ACTIONS(3289), + [anon_sym_LBRACK] = ACTIONS(3291), + [anon_sym_LPAREN] = ACTIONS(3291), + [anon_sym_return] = ACTIONS(3289), + [anon_sym_namespace] = ACTIONS(3289), + [anon_sym_class] = ACTIONS(3289), + [anon_sym_ref] = ACTIONS(3289), + [anon_sym_struct] = ACTIONS(3289), + [anon_sym_enum] = ACTIONS(3289), + [anon_sym_LBRACE] = ACTIONS(3291), + [anon_sym_interface] = ACTIONS(3289), + [anon_sym_delegate] = ACTIONS(3289), + [anon_sym_record] = ACTIONS(3289), + [anon_sym_abstract] = ACTIONS(3289), + [anon_sym_async] = ACTIONS(3289), + [anon_sym_const] = ACTIONS(3289), + [anon_sym_file] = ACTIONS(3289), + [anon_sym_fixed] = ACTIONS(3289), + [anon_sym_internal] = ACTIONS(3289), + [anon_sym_new] = ACTIONS(3289), + [anon_sym_override] = ACTIONS(3289), + [anon_sym_partial] = ACTIONS(3289), + [anon_sym_private] = ACTIONS(3289), + [anon_sym_protected] = ACTIONS(3289), + [anon_sym_public] = ACTIONS(3289), + [anon_sym_readonly] = ACTIONS(3289), + [anon_sym_required] = ACTIONS(3289), + [anon_sym_sealed] = ACTIONS(3289), + [anon_sym_virtual] = ACTIONS(3289), + [anon_sym_volatile] = ACTIONS(3289), + [anon_sym_where] = ACTIONS(3289), + [anon_sym_notnull] = ACTIONS(3289), + [anon_sym_unmanaged] = ACTIONS(3289), + [anon_sym_checked] = ACTIONS(3289), + [anon_sym_BANG] = ACTIONS(3291), + [anon_sym_TILDE] = ACTIONS(3291), + [anon_sym_PLUS_PLUS] = ACTIONS(3291), + [anon_sym_DASH_DASH] = ACTIONS(3291), + [anon_sym_true] = ACTIONS(3289), + [anon_sym_false] = ACTIONS(3289), + [anon_sym_PLUS] = ACTIONS(3289), + [anon_sym_DASH] = ACTIONS(3289), + [anon_sym_STAR] = ACTIONS(3291), + [anon_sym_CARET] = ACTIONS(3291), + [anon_sym_AMP] = ACTIONS(3291), + [anon_sym_this] = ACTIONS(3289), + [anon_sym_scoped] = ACTIONS(3289), + [anon_sym_base] = ACTIONS(3289), + [anon_sym_var] = ACTIONS(3289), + [sym_predefined_type] = ACTIONS(3289), + [anon_sym_break] = ACTIONS(3289), + [anon_sym_unchecked] = ACTIONS(3289), + [anon_sym_continue] = ACTIONS(3289), + [anon_sym_do] = ACTIONS(3289), + [anon_sym_while] = ACTIONS(3289), + [anon_sym_for] = ACTIONS(3289), + [anon_sym_lock] = ACTIONS(3289), + [anon_sym_yield] = ACTIONS(3289), + [anon_sym_switch] = ACTIONS(3289), + [anon_sym_default] = ACTIONS(3289), + [anon_sym_throw] = ACTIONS(3289), + [anon_sym_try] = ACTIONS(3289), + [anon_sym_when] = ACTIONS(3289), + [anon_sym_await] = ACTIONS(3289), + [anon_sym_foreach] = ACTIONS(3289), + [anon_sym_goto] = ACTIONS(3289), + [anon_sym_if] = ACTIONS(3289), + [anon_sym_else] = ACTIONS(3289), + [anon_sym_DOT_DOT] = ACTIONS(3291), + [anon_sym_from] = ACTIONS(3289), + [anon_sym_into] = ACTIONS(3289), + [anon_sym_join] = ACTIONS(3289), + [anon_sym_on] = ACTIONS(3289), + [anon_sym_equals] = ACTIONS(3289), + [anon_sym_let] = ACTIONS(3289), + [anon_sym_orderby] = ACTIONS(3289), + [anon_sym_ascending] = ACTIONS(3289), + [anon_sym_descending] = ACTIONS(3289), + [anon_sym_group] = ACTIONS(3289), + [anon_sym_by] = ACTIONS(3289), + [anon_sym_select] = ACTIONS(3289), + [anon_sym_stackalloc] = ACTIONS(3289), + [anon_sym_sizeof] = ACTIONS(3289), + [anon_sym_typeof] = ACTIONS(3289), + [anon_sym___makeref] = ACTIONS(3289), + [anon_sym___reftype] = ACTIONS(3289), + [anon_sym___refvalue] = ACTIONS(3289), + [sym_null_literal] = ACTIONS(3289), + [anon_sym_SQUOTE] = ACTIONS(3291), + [sym_integer_literal] = ACTIONS(3289), + [sym_real_literal] = ACTIONS(3291), + [anon_sym_DQUOTE] = ACTIONS(3291), + [sym_verbatim_string_literal] = ACTIONS(3291), + [aux_sym_preproc_if_token1] = ACTIONS(3291), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + [sym_interpolation_regular_start] = ACTIONS(3291), + [sym_interpolation_verbatim_start] = ACTIONS(3291), + [sym_interpolation_raw_start] = ACTIONS(3291), + [sym_raw_string_start] = ACTIONS(3291), }, - [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(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_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), + [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), + [ts_builtin_sym_end] = ACTIONS(3279), + [sym__identifier_token] = ACTIONS(3277), + [anon_sym_extern] = ACTIONS(3277), + [anon_sym_alias] = ACTIONS(3277), + [anon_sym_SEMI] = ACTIONS(3279), + [anon_sym_global] = ACTIONS(3277), + [anon_sym_using] = ACTIONS(3277), + [anon_sym_unsafe] = ACTIONS(3277), + [anon_sym_static] = ACTIONS(3277), + [anon_sym_LBRACK] = ACTIONS(3279), + [anon_sym_LPAREN] = ACTIONS(3279), + [anon_sym_return] = ACTIONS(3277), + [anon_sym_namespace] = ACTIONS(3277), + [anon_sym_class] = ACTIONS(3277), + [anon_sym_ref] = ACTIONS(3277), + [anon_sym_struct] = ACTIONS(3277), + [anon_sym_enum] = ACTIONS(3277), + [anon_sym_LBRACE] = ACTIONS(3279), + [anon_sym_interface] = ACTIONS(3277), + [anon_sym_delegate] = ACTIONS(3277), + [anon_sym_record] = ACTIONS(3277), + [anon_sym_abstract] = ACTIONS(3277), + [anon_sym_async] = ACTIONS(3277), + [anon_sym_const] = ACTIONS(3277), + [anon_sym_file] = ACTIONS(3277), + [anon_sym_fixed] = ACTIONS(3277), + [anon_sym_internal] = ACTIONS(3277), + [anon_sym_new] = ACTIONS(3277), + [anon_sym_override] = ACTIONS(3277), + [anon_sym_partial] = ACTIONS(3277), + [anon_sym_private] = ACTIONS(3277), + [anon_sym_protected] = ACTIONS(3277), + [anon_sym_public] = ACTIONS(3277), + [anon_sym_readonly] = ACTIONS(3277), + [anon_sym_required] = ACTIONS(3277), + [anon_sym_sealed] = ACTIONS(3277), + [anon_sym_virtual] = ACTIONS(3277), + [anon_sym_volatile] = ACTIONS(3277), + [anon_sym_where] = ACTIONS(3277), + [anon_sym_notnull] = ACTIONS(3277), + [anon_sym_unmanaged] = ACTIONS(3277), + [anon_sym_checked] = ACTIONS(3277), + [anon_sym_BANG] = ACTIONS(3279), + [anon_sym_TILDE] = ACTIONS(3279), + [anon_sym_PLUS_PLUS] = ACTIONS(3279), + [anon_sym_DASH_DASH] = ACTIONS(3279), + [anon_sym_true] = ACTIONS(3277), + [anon_sym_false] = ACTIONS(3277), + [anon_sym_PLUS] = ACTIONS(3277), + [anon_sym_DASH] = ACTIONS(3277), + [anon_sym_STAR] = ACTIONS(3279), + [anon_sym_CARET] = ACTIONS(3279), + [anon_sym_AMP] = ACTIONS(3279), + [anon_sym_this] = ACTIONS(3277), + [anon_sym_scoped] = ACTIONS(3277), + [anon_sym_base] = ACTIONS(3277), + [anon_sym_var] = ACTIONS(3277), + [sym_predefined_type] = ACTIONS(3277), + [anon_sym_break] = ACTIONS(3277), + [anon_sym_unchecked] = ACTIONS(3277), + [anon_sym_continue] = ACTIONS(3277), + [anon_sym_do] = ACTIONS(3277), + [anon_sym_while] = ACTIONS(3277), + [anon_sym_for] = ACTIONS(3277), + [anon_sym_lock] = ACTIONS(3277), + [anon_sym_yield] = ACTIONS(3277), + [anon_sym_switch] = ACTIONS(3277), + [anon_sym_default] = ACTIONS(3277), + [anon_sym_throw] = ACTIONS(3277), + [anon_sym_try] = ACTIONS(3277), + [anon_sym_when] = ACTIONS(3277), + [anon_sym_await] = ACTIONS(3277), + [anon_sym_foreach] = ACTIONS(3277), + [anon_sym_goto] = ACTIONS(3277), + [anon_sym_if] = ACTIONS(3277), + [anon_sym_else] = ACTIONS(3277), + [anon_sym_DOT_DOT] = ACTIONS(3279), + [anon_sym_from] = ACTIONS(3277), + [anon_sym_into] = ACTIONS(3277), + [anon_sym_join] = ACTIONS(3277), + [anon_sym_on] = ACTIONS(3277), + [anon_sym_equals] = ACTIONS(3277), + [anon_sym_let] = ACTIONS(3277), + [anon_sym_orderby] = ACTIONS(3277), + [anon_sym_ascending] = ACTIONS(3277), + [anon_sym_descending] = ACTIONS(3277), + [anon_sym_group] = ACTIONS(3277), + [anon_sym_by] = ACTIONS(3277), + [anon_sym_select] = ACTIONS(3277), + [anon_sym_stackalloc] = ACTIONS(3277), + [anon_sym_sizeof] = ACTIONS(3277), + [anon_sym_typeof] = ACTIONS(3277), + [anon_sym___makeref] = ACTIONS(3277), + [anon_sym___reftype] = ACTIONS(3277), + [anon_sym___refvalue] = ACTIONS(3277), + [sym_null_literal] = ACTIONS(3277), + [anon_sym_SQUOTE] = ACTIONS(3279), + [sym_integer_literal] = ACTIONS(3277), + [sym_real_literal] = ACTIONS(3279), + [anon_sym_DQUOTE] = ACTIONS(3279), + [sym_verbatim_string_literal] = ACTIONS(3279), + [aux_sym_preproc_if_token1] = ACTIONS(3279), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + [sym_interpolation_regular_start] = ACTIONS(3279), + [sym_interpolation_verbatim_start] = ACTIONS(3279), + [sym_interpolation_raw_start] = ACTIONS(3279), + [sym_raw_string_start] = ACTIONS(3279), + }, + [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), + [ts_builtin_sym_end] = ACTIONS(3151), + [sym__identifier_token] = ACTIONS(3149), + [anon_sym_extern] = ACTIONS(3149), + [anon_sym_alias] = ACTIONS(3149), + [anon_sym_SEMI] = ACTIONS(3151), + [anon_sym_global] = ACTIONS(3149), + [anon_sym_using] = ACTIONS(3149), + [anon_sym_unsafe] = ACTIONS(3149), + [anon_sym_static] = ACTIONS(3149), + [anon_sym_LBRACK] = ACTIONS(3151), + [anon_sym_LPAREN] = ACTIONS(3151), + [anon_sym_return] = ACTIONS(3149), + [anon_sym_namespace] = ACTIONS(3149), + [anon_sym_class] = ACTIONS(3149), + [anon_sym_ref] = ACTIONS(3149), + [anon_sym_struct] = ACTIONS(3149), + [anon_sym_enum] = ACTIONS(3149), + [anon_sym_LBRACE] = ACTIONS(3151), + [anon_sym_interface] = ACTIONS(3149), + [anon_sym_delegate] = ACTIONS(3149), + [anon_sym_record] = ACTIONS(3149), + [anon_sym_abstract] = ACTIONS(3149), + [anon_sym_async] = ACTIONS(3149), + [anon_sym_const] = ACTIONS(3149), + [anon_sym_file] = ACTIONS(3149), + [anon_sym_fixed] = ACTIONS(3149), + [anon_sym_internal] = ACTIONS(3149), + [anon_sym_new] = ACTIONS(3149), + [anon_sym_override] = ACTIONS(3149), + [anon_sym_partial] = ACTIONS(3149), + [anon_sym_private] = ACTIONS(3149), + [anon_sym_protected] = ACTIONS(3149), + [anon_sym_public] = ACTIONS(3149), + [anon_sym_readonly] = ACTIONS(3149), + [anon_sym_required] = ACTIONS(3149), + [anon_sym_sealed] = ACTIONS(3149), + [anon_sym_virtual] = ACTIONS(3149), + [anon_sym_volatile] = ACTIONS(3149), + [anon_sym_where] = ACTIONS(3149), + [anon_sym_notnull] = ACTIONS(3149), + [anon_sym_unmanaged] = ACTIONS(3149), + [anon_sym_checked] = ACTIONS(3149), + [anon_sym_BANG] = ACTIONS(3151), + [anon_sym_TILDE] = ACTIONS(3151), + [anon_sym_PLUS_PLUS] = ACTIONS(3151), + [anon_sym_DASH_DASH] = ACTIONS(3151), + [anon_sym_true] = ACTIONS(3149), + [anon_sym_false] = ACTIONS(3149), + [anon_sym_PLUS] = ACTIONS(3149), + [anon_sym_DASH] = ACTIONS(3149), + [anon_sym_STAR] = ACTIONS(3151), + [anon_sym_CARET] = ACTIONS(3151), + [anon_sym_AMP] = ACTIONS(3151), + [anon_sym_this] = ACTIONS(3149), + [anon_sym_scoped] = ACTIONS(3149), + [anon_sym_base] = ACTIONS(3149), + [anon_sym_var] = ACTIONS(3149), + [sym_predefined_type] = ACTIONS(3149), + [anon_sym_break] = ACTIONS(3149), + [anon_sym_unchecked] = ACTIONS(3149), + [anon_sym_continue] = ACTIONS(3149), + [anon_sym_do] = ACTIONS(3149), + [anon_sym_while] = ACTIONS(3149), + [anon_sym_for] = ACTIONS(3149), + [anon_sym_lock] = ACTIONS(3149), + [anon_sym_yield] = ACTIONS(3149), + [anon_sym_switch] = ACTIONS(3149), + [anon_sym_default] = ACTIONS(3149), + [anon_sym_throw] = ACTIONS(3149), + [anon_sym_try] = ACTIONS(3149), + [anon_sym_when] = ACTIONS(3149), + [anon_sym_await] = ACTIONS(3149), + [anon_sym_foreach] = ACTIONS(3149), + [anon_sym_goto] = ACTIONS(3149), + [anon_sym_if] = ACTIONS(3149), + [anon_sym_else] = ACTIONS(3149), + [anon_sym_DOT_DOT] = ACTIONS(3151), + [anon_sym_from] = ACTIONS(3149), + [anon_sym_into] = ACTIONS(3149), + [anon_sym_join] = ACTIONS(3149), + [anon_sym_on] = ACTIONS(3149), + [anon_sym_equals] = ACTIONS(3149), + [anon_sym_let] = ACTIONS(3149), + [anon_sym_orderby] = ACTIONS(3149), + [anon_sym_ascending] = ACTIONS(3149), + [anon_sym_descending] = ACTIONS(3149), + [anon_sym_group] = ACTIONS(3149), + [anon_sym_by] = ACTIONS(3149), + [anon_sym_select] = ACTIONS(3149), + [anon_sym_stackalloc] = ACTIONS(3149), + [anon_sym_sizeof] = ACTIONS(3149), + [anon_sym_typeof] = ACTIONS(3149), + [anon_sym___makeref] = ACTIONS(3149), + [anon_sym___reftype] = ACTIONS(3149), + [anon_sym___refvalue] = ACTIONS(3149), + [sym_null_literal] = ACTIONS(3149), + [anon_sym_SQUOTE] = ACTIONS(3151), + [sym_integer_literal] = ACTIONS(3149), + [sym_real_literal] = ACTIONS(3151), + [anon_sym_DQUOTE] = ACTIONS(3151), + [sym_verbatim_string_literal] = ACTIONS(3151), + [aux_sym_preproc_if_token1] = ACTIONS(3151), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -373951,124 +377044,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(3341), - [sym_interpolation_verbatim_start] = ACTIONS(3341), - [sym_interpolation_raw_start] = ACTIONS(3341), - [sym_raw_string_start] = ACTIONS(3341), + [sym_interpolation_regular_start] = ACTIONS(3151), + [sym_interpolation_verbatim_start] = ACTIONS(3151), + [sym_interpolation_raw_start] = ACTIONS(3151), + [sym_raw_string_start] = ACTIONS(3151), }, - [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(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_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), + [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), + [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), + }, + [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), + [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), + }, + [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), + [ts_builtin_sym_end] = ACTIONS(3155), + [sym__identifier_token] = ACTIONS(3153), + [anon_sym_extern] = ACTIONS(3153), + [anon_sym_alias] = ACTIONS(3153), + [anon_sym_SEMI] = ACTIONS(3155), + [anon_sym_global] = ACTIONS(3153), + [anon_sym_using] = ACTIONS(3153), + [anon_sym_unsafe] = ACTIONS(3153), + [anon_sym_static] = ACTIONS(3153), + [anon_sym_LBRACK] = ACTIONS(3155), + [anon_sym_LPAREN] = ACTIONS(3155), + [anon_sym_return] = ACTIONS(3153), + [anon_sym_namespace] = ACTIONS(3153), + [anon_sym_class] = ACTIONS(3153), + [anon_sym_ref] = ACTIONS(3153), + [anon_sym_struct] = ACTIONS(3153), + [anon_sym_enum] = ACTIONS(3153), + [anon_sym_LBRACE] = ACTIONS(3155), + [anon_sym_interface] = ACTIONS(3153), + [anon_sym_delegate] = ACTIONS(3153), + [anon_sym_record] = ACTIONS(3153), + [anon_sym_abstract] = ACTIONS(3153), + [anon_sym_async] = ACTIONS(3153), + [anon_sym_const] = ACTIONS(3153), + [anon_sym_file] = ACTIONS(3153), + [anon_sym_fixed] = ACTIONS(3153), + [anon_sym_internal] = ACTIONS(3153), + [anon_sym_new] = ACTIONS(3153), + [anon_sym_override] = ACTIONS(3153), + [anon_sym_partial] = ACTIONS(3153), + [anon_sym_private] = ACTIONS(3153), + [anon_sym_protected] = ACTIONS(3153), + [anon_sym_public] = ACTIONS(3153), + [anon_sym_readonly] = ACTIONS(3153), + [anon_sym_required] = ACTIONS(3153), + [anon_sym_sealed] = ACTIONS(3153), + [anon_sym_virtual] = ACTIONS(3153), + [anon_sym_volatile] = ACTIONS(3153), + [anon_sym_where] = ACTIONS(3153), + [anon_sym_notnull] = ACTIONS(3153), + [anon_sym_unmanaged] = ACTIONS(3153), + [anon_sym_checked] = ACTIONS(3153), + [anon_sym_BANG] = ACTIONS(3155), + [anon_sym_TILDE] = ACTIONS(3155), + [anon_sym_PLUS_PLUS] = ACTIONS(3155), + [anon_sym_DASH_DASH] = ACTIONS(3155), + [anon_sym_true] = ACTIONS(3153), + [anon_sym_false] = ACTIONS(3153), + [anon_sym_PLUS] = ACTIONS(3153), + [anon_sym_DASH] = ACTIONS(3153), + [anon_sym_STAR] = ACTIONS(3155), + [anon_sym_CARET] = ACTIONS(3155), + [anon_sym_AMP] = ACTIONS(3155), + [anon_sym_this] = ACTIONS(3153), + [anon_sym_scoped] = ACTIONS(3153), + [anon_sym_base] = ACTIONS(3153), + [anon_sym_var] = ACTIONS(3153), + [sym_predefined_type] = ACTIONS(3153), + [anon_sym_break] = ACTIONS(3153), + [anon_sym_unchecked] = ACTIONS(3153), + [anon_sym_continue] = ACTIONS(3153), + [anon_sym_do] = ACTIONS(3153), + [anon_sym_while] = ACTIONS(3153), + [anon_sym_for] = ACTIONS(3153), + [anon_sym_lock] = ACTIONS(3153), + [anon_sym_yield] = ACTIONS(3153), + [anon_sym_switch] = ACTIONS(3153), + [anon_sym_default] = ACTIONS(3153), + [anon_sym_throw] = ACTIONS(3153), + [anon_sym_try] = ACTIONS(3153), + [anon_sym_when] = ACTIONS(3153), + [anon_sym_await] = ACTIONS(3153), + [anon_sym_foreach] = ACTIONS(3153), + [anon_sym_goto] = ACTIONS(3153), + [anon_sym_if] = ACTIONS(3153), + [anon_sym_else] = ACTIONS(3153), + [anon_sym_DOT_DOT] = ACTIONS(3155), + [anon_sym_from] = ACTIONS(3153), + [anon_sym_into] = ACTIONS(3153), + [anon_sym_join] = ACTIONS(3153), + [anon_sym_on] = ACTIONS(3153), + [anon_sym_equals] = ACTIONS(3153), + [anon_sym_let] = ACTIONS(3153), + [anon_sym_orderby] = ACTIONS(3153), + [anon_sym_ascending] = ACTIONS(3153), + [anon_sym_descending] = ACTIONS(3153), + [anon_sym_group] = ACTIONS(3153), + [anon_sym_by] = ACTIONS(3153), + [anon_sym_select] = ACTIONS(3153), + [anon_sym_stackalloc] = ACTIONS(3153), + [anon_sym_sizeof] = ACTIONS(3153), + [anon_sym_typeof] = ACTIONS(3153), + [anon_sym___makeref] = ACTIONS(3153), + [anon_sym___reftype] = ACTIONS(3153), + [anon_sym___refvalue] = ACTIONS(3153), + [sym_null_literal] = ACTIONS(3153), + [anon_sym_SQUOTE] = ACTIONS(3155), + [sym_integer_literal] = ACTIONS(3153), + [sym_real_literal] = ACTIONS(3155), + [anon_sym_DQUOTE] = ACTIONS(3155), + [sym_verbatim_string_literal] = ACTIONS(3155), + [aux_sym_preproc_if_token1] = ACTIONS(3155), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -374079,124 +377425,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(3345), - [sym_interpolation_verbatim_start] = ACTIONS(3345), - [sym_interpolation_raw_start] = ACTIONS(3345), - [sym_raw_string_start] = ACTIONS(3345), + [sym_interpolation_regular_start] = ACTIONS(3155), + [sym_interpolation_verbatim_start] = ACTIONS(3155), + [sym_interpolation_raw_start] = ACTIONS(3155), + [sym_raw_string_start] = ACTIONS(3155), }, - [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(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_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), + [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), + [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), @@ -374207,124 +377552,1012 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_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(3187), + [sym_interpolation_verbatim_start] = ACTIONS(3187), + [sym_interpolation_raw_start] = ACTIONS(3187), + [sym_raw_string_start] = ACTIONS(3187), }, - [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(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), + [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), + [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), + }, + [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), + [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), + }, + [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), + [ts_builtin_sym_end] = ACTIONS(3101), + [sym__identifier_token] = ACTIONS(3099), + [anon_sym_extern] = ACTIONS(3099), + [anon_sym_alias] = ACTIONS(3099), + [anon_sym_SEMI] = ACTIONS(3101), + [anon_sym_global] = ACTIONS(3099), + [anon_sym_using] = ACTIONS(3099), + [anon_sym_unsafe] = ACTIONS(3099), + [anon_sym_static] = ACTIONS(3099), + [anon_sym_LBRACK] = ACTIONS(3101), + [anon_sym_LPAREN] = ACTIONS(3101), + [anon_sym_return] = ACTIONS(3099), + [anon_sym_namespace] = ACTIONS(3099), + [anon_sym_class] = ACTIONS(3099), + [anon_sym_ref] = ACTIONS(3099), + [anon_sym_struct] = ACTIONS(3099), + [anon_sym_enum] = ACTIONS(3099), + [anon_sym_LBRACE] = ACTIONS(3101), + [anon_sym_interface] = ACTIONS(3099), + [anon_sym_delegate] = ACTIONS(3099), + [anon_sym_record] = ACTIONS(3099), + [anon_sym_abstract] = ACTIONS(3099), + [anon_sym_async] = ACTIONS(3099), + [anon_sym_const] = ACTIONS(3099), + [anon_sym_file] = ACTIONS(3099), + [anon_sym_fixed] = ACTIONS(3099), + [anon_sym_internal] = ACTIONS(3099), + [anon_sym_new] = ACTIONS(3099), + [anon_sym_override] = ACTIONS(3099), + [anon_sym_partial] = ACTIONS(3099), + [anon_sym_private] = ACTIONS(3099), + [anon_sym_protected] = ACTIONS(3099), + [anon_sym_public] = ACTIONS(3099), + [anon_sym_readonly] = ACTIONS(3099), + [anon_sym_required] = ACTIONS(3099), + [anon_sym_sealed] = ACTIONS(3099), + [anon_sym_virtual] = ACTIONS(3099), + [anon_sym_volatile] = ACTIONS(3099), + [anon_sym_where] = ACTIONS(3099), + [anon_sym_notnull] = ACTIONS(3099), + [anon_sym_unmanaged] = ACTIONS(3099), + [anon_sym_checked] = ACTIONS(3099), + [anon_sym_BANG] = ACTIONS(3101), + [anon_sym_TILDE] = ACTIONS(3101), + [anon_sym_PLUS_PLUS] = ACTIONS(3101), + [anon_sym_DASH_DASH] = ACTIONS(3101), + [anon_sym_true] = ACTIONS(3099), + [anon_sym_false] = ACTIONS(3099), + [anon_sym_PLUS] = ACTIONS(3099), + [anon_sym_DASH] = ACTIONS(3099), + [anon_sym_STAR] = ACTIONS(3101), + [anon_sym_CARET] = ACTIONS(3101), + [anon_sym_AMP] = ACTIONS(3101), + [anon_sym_this] = ACTIONS(3099), + [anon_sym_scoped] = ACTIONS(3099), + [anon_sym_base] = ACTIONS(3099), + [anon_sym_var] = ACTIONS(3099), + [sym_predefined_type] = ACTIONS(3099), + [anon_sym_break] = ACTIONS(3099), + [anon_sym_unchecked] = ACTIONS(3099), + [anon_sym_continue] = ACTIONS(3099), + [anon_sym_do] = ACTIONS(3099), + [anon_sym_while] = ACTIONS(3099), + [anon_sym_for] = ACTIONS(3099), + [anon_sym_lock] = ACTIONS(3099), + [anon_sym_yield] = ACTIONS(3099), + [anon_sym_switch] = ACTIONS(3099), + [anon_sym_default] = ACTIONS(3099), + [anon_sym_throw] = ACTIONS(3099), + [anon_sym_try] = ACTIONS(3099), + [anon_sym_when] = ACTIONS(3099), + [anon_sym_await] = ACTIONS(3099), + [anon_sym_foreach] = ACTIONS(3099), + [anon_sym_goto] = ACTIONS(3099), + [anon_sym_if] = ACTIONS(3099), + [anon_sym_else] = ACTIONS(3099), + [anon_sym_DOT_DOT] = ACTIONS(3101), + [anon_sym_from] = ACTIONS(3099), + [anon_sym_into] = ACTIONS(3099), + [anon_sym_join] = ACTIONS(3099), + [anon_sym_on] = ACTIONS(3099), + [anon_sym_equals] = ACTIONS(3099), + [anon_sym_let] = ACTIONS(3099), + [anon_sym_orderby] = ACTIONS(3099), + [anon_sym_ascending] = ACTIONS(3099), + [anon_sym_descending] = ACTIONS(3099), + [anon_sym_group] = ACTIONS(3099), + [anon_sym_by] = ACTIONS(3099), + [anon_sym_select] = ACTIONS(3099), + [anon_sym_stackalloc] = ACTIONS(3099), + [anon_sym_sizeof] = ACTIONS(3099), + [anon_sym_typeof] = ACTIONS(3099), + [anon_sym___makeref] = ACTIONS(3099), + [anon_sym___reftype] = ACTIONS(3099), + [anon_sym___refvalue] = ACTIONS(3099), + [sym_null_literal] = ACTIONS(3099), + [anon_sym_SQUOTE] = ACTIONS(3101), + [sym_integer_literal] = ACTIONS(3099), + [sym_real_literal] = ACTIONS(3101), + [anon_sym_DQUOTE] = ACTIONS(3101), + [sym_verbatim_string_literal] = ACTIONS(3101), + [aux_sym_preproc_if_token1] = ACTIONS(3101), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + [sym_interpolation_regular_start] = ACTIONS(3101), + [sym_interpolation_verbatim_start] = ACTIONS(3101), + [sym_interpolation_raw_start] = ACTIONS(3101), + [sym_raw_string_start] = ACTIONS(3101), + }, + [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), + [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), + }, + [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), + [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(3273), + [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), + }, + [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), + [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), + }, + [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(3299), + [sym__identifier_token] = ACTIONS(3297), + [anon_sym_extern] = ACTIONS(3297), + [anon_sym_alias] = ACTIONS(3297), + [anon_sym_SEMI] = ACTIONS(3299), + [anon_sym_global] = ACTIONS(3297), + [anon_sym_using] = ACTIONS(3297), + [anon_sym_unsafe] = ACTIONS(3297), + [anon_sym_static] = ACTIONS(3297), + [anon_sym_LBRACK] = ACTIONS(3299), + [anon_sym_LPAREN] = ACTIONS(3299), + [anon_sym_return] = ACTIONS(3297), + [anon_sym_namespace] = ACTIONS(3297), + [anon_sym_class] = ACTIONS(3297), + [anon_sym_ref] = ACTIONS(3297), + [anon_sym_struct] = ACTIONS(3297), + [anon_sym_enum] = ACTIONS(3297), + [anon_sym_LBRACE] = ACTIONS(3299), + [anon_sym_interface] = ACTIONS(3297), + [anon_sym_delegate] = ACTIONS(3297), + [anon_sym_record] = ACTIONS(3297), + [anon_sym_abstract] = ACTIONS(3297), + [anon_sym_async] = ACTIONS(3297), + [anon_sym_const] = ACTIONS(3297), + [anon_sym_file] = ACTIONS(3297), + [anon_sym_fixed] = ACTIONS(3297), + [anon_sym_internal] = ACTIONS(3297), + [anon_sym_new] = ACTIONS(3297), + [anon_sym_override] = ACTIONS(3297), + [anon_sym_partial] = ACTIONS(3297), + [anon_sym_private] = ACTIONS(3297), + [anon_sym_protected] = ACTIONS(3297), + [anon_sym_public] = ACTIONS(3297), + [anon_sym_readonly] = ACTIONS(3297), + [anon_sym_required] = ACTIONS(3297), + [anon_sym_sealed] = ACTIONS(3297), + [anon_sym_virtual] = ACTIONS(3297), + [anon_sym_volatile] = ACTIONS(3297), + [anon_sym_where] = ACTIONS(3297), + [anon_sym_notnull] = ACTIONS(3297), + [anon_sym_unmanaged] = ACTIONS(3297), + [anon_sym_checked] = ACTIONS(3297), + [anon_sym_BANG] = ACTIONS(3299), + [anon_sym_TILDE] = ACTIONS(3299), + [anon_sym_PLUS_PLUS] = ACTIONS(3299), + [anon_sym_DASH_DASH] = ACTIONS(3299), + [anon_sym_true] = ACTIONS(3297), + [anon_sym_false] = ACTIONS(3297), + [anon_sym_PLUS] = ACTIONS(3297), + [anon_sym_DASH] = ACTIONS(3297), + [anon_sym_STAR] = ACTIONS(3299), + [anon_sym_CARET] = ACTIONS(3299), + [anon_sym_AMP] = ACTIONS(3299), + [anon_sym_this] = ACTIONS(3297), + [anon_sym_scoped] = ACTIONS(3297), + [anon_sym_base] = ACTIONS(3297), + [anon_sym_var] = ACTIONS(3297), + [sym_predefined_type] = ACTIONS(3297), + [anon_sym_break] = ACTIONS(3297), + [anon_sym_unchecked] = ACTIONS(3297), + [anon_sym_continue] = ACTIONS(3297), + [anon_sym_do] = ACTIONS(3297), + [anon_sym_while] = ACTIONS(3297), + [anon_sym_for] = ACTIONS(3297), + [anon_sym_lock] = ACTIONS(3297), + [anon_sym_yield] = ACTIONS(3297), + [anon_sym_switch] = ACTIONS(3297), + [anon_sym_default] = ACTIONS(3297), + [anon_sym_throw] = ACTIONS(3297), + [anon_sym_try] = ACTIONS(3297), + [anon_sym_when] = ACTIONS(3297), + [anon_sym_await] = ACTIONS(3297), + [anon_sym_foreach] = ACTIONS(3297), + [anon_sym_goto] = ACTIONS(3297), + [anon_sym_if] = ACTIONS(3297), + [anon_sym_else] = ACTIONS(3297), + [anon_sym_DOT_DOT] = ACTIONS(3299), + [anon_sym_from] = ACTIONS(3297), + [anon_sym_into] = ACTIONS(3297), + [anon_sym_join] = ACTIONS(3297), + [anon_sym_on] = ACTIONS(3297), + [anon_sym_equals] = ACTIONS(3297), + [anon_sym_let] = ACTIONS(3297), + [anon_sym_orderby] = ACTIONS(3297), + [anon_sym_ascending] = ACTIONS(3297), + [anon_sym_descending] = ACTIONS(3297), + [anon_sym_group] = ACTIONS(3297), + [anon_sym_by] = ACTIONS(3297), + [anon_sym_select] = ACTIONS(3297), + [anon_sym_stackalloc] = ACTIONS(3297), + [anon_sym_sizeof] = ACTIONS(3297), + [anon_sym_typeof] = ACTIONS(3297), + [anon_sym___makeref] = ACTIONS(3297), + [anon_sym___reftype] = ACTIONS(3297), + [anon_sym___refvalue] = ACTIONS(3297), + [sym_null_literal] = ACTIONS(3297), + [anon_sym_SQUOTE] = ACTIONS(3299), + [sym_integer_literal] = ACTIONS(3297), + [sym_real_literal] = ACTIONS(3299), + [anon_sym_DQUOTE] = ACTIONS(3299), + [sym_verbatim_string_literal] = ACTIONS(3299), + [aux_sym_preproc_if_token1] = ACTIONS(3299), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + [sym_interpolation_regular_start] = ACTIONS(3299), + [sym_interpolation_verbatim_start] = ACTIONS(3299), + [sym_interpolation_raw_start] = ACTIONS(3299), + [sym_raw_string_start] = ACTIONS(3299), + }, + [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(3147), + [sym__identifier_token] = ACTIONS(3145), + [anon_sym_extern] = ACTIONS(3145), + [anon_sym_alias] = ACTIONS(3145), + [anon_sym_SEMI] = ACTIONS(3147), + [anon_sym_global] = ACTIONS(3145), + [anon_sym_using] = ACTIONS(3145), + [anon_sym_unsafe] = ACTIONS(3145), + [anon_sym_static] = ACTIONS(3145), + [anon_sym_LBRACK] = ACTIONS(3147), + [anon_sym_LPAREN] = ACTIONS(3147), + [anon_sym_return] = ACTIONS(3145), + [anon_sym_namespace] = ACTIONS(3145), + [anon_sym_class] = ACTIONS(3145), + [anon_sym_ref] = ACTIONS(3145), + [anon_sym_struct] = ACTIONS(3145), + [anon_sym_enum] = ACTIONS(3145), + [anon_sym_LBRACE] = ACTIONS(3147), + [anon_sym_interface] = ACTIONS(3145), + [anon_sym_delegate] = ACTIONS(3145), + [anon_sym_record] = ACTIONS(3145), + [anon_sym_abstract] = ACTIONS(3145), + [anon_sym_async] = ACTIONS(3145), + [anon_sym_const] = ACTIONS(3145), + [anon_sym_file] = ACTIONS(3145), + [anon_sym_fixed] = ACTIONS(3145), + [anon_sym_internal] = ACTIONS(3145), + [anon_sym_new] = ACTIONS(3145), + [anon_sym_override] = ACTIONS(3145), + [anon_sym_partial] = ACTIONS(3145), + [anon_sym_private] = ACTIONS(3145), + [anon_sym_protected] = ACTIONS(3145), + [anon_sym_public] = ACTIONS(3145), + [anon_sym_readonly] = ACTIONS(3145), + [anon_sym_required] = ACTIONS(3145), + [anon_sym_sealed] = ACTIONS(3145), + [anon_sym_virtual] = ACTIONS(3145), + [anon_sym_volatile] = ACTIONS(3145), + [anon_sym_where] = ACTIONS(3145), + [anon_sym_notnull] = ACTIONS(3145), + [anon_sym_unmanaged] = ACTIONS(3145), + [anon_sym_checked] = ACTIONS(3145), + [anon_sym_BANG] = ACTIONS(3147), + [anon_sym_TILDE] = ACTIONS(3147), + [anon_sym_PLUS_PLUS] = ACTIONS(3147), + [anon_sym_DASH_DASH] = ACTIONS(3147), + [anon_sym_true] = ACTIONS(3145), + [anon_sym_false] = ACTIONS(3145), + [anon_sym_PLUS] = ACTIONS(3145), + [anon_sym_DASH] = ACTIONS(3145), + [anon_sym_STAR] = ACTIONS(3147), + [anon_sym_CARET] = ACTIONS(3147), + [anon_sym_AMP] = ACTIONS(3147), + [anon_sym_this] = ACTIONS(3145), + [anon_sym_scoped] = ACTIONS(3145), + [anon_sym_base] = ACTIONS(3145), + [anon_sym_var] = ACTIONS(3145), + [sym_predefined_type] = ACTIONS(3145), + [anon_sym_break] = ACTIONS(3145), + [anon_sym_unchecked] = ACTIONS(3145), + [anon_sym_continue] = ACTIONS(3145), + [anon_sym_do] = ACTIONS(3145), + [anon_sym_while] = ACTIONS(3145), + [anon_sym_for] = ACTIONS(3145), + [anon_sym_lock] = ACTIONS(3145), + [anon_sym_yield] = ACTIONS(3145), + [anon_sym_switch] = ACTIONS(3145), + [anon_sym_default] = ACTIONS(3145), + [anon_sym_throw] = ACTIONS(3145), + [anon_sym_try] = ACTIONS(3145), + [anon_sym_when] = ACTIONS(3145), + [anon_sym_await] = ACTIONS(3145), + [anon_sym_foreach] = ACTIONS(3145), + [anon_sym_goto] = ACTIONS(3145), + [anon_sym_if] = ACTIONS(3145), + [anon_sym_else] = ACTIONS(3145), + [anon_sym_DOT_DOT] = ACTIONS(3147), + [anon_sym_from] = ACTIONS(3145), + [anon_sym_into] = ACTIONS(3145), + [anon_sym_join] = ACTIONS(3145), + [anon_sym_on] = ACTIONS(3145), + [anon_sym_equals] = ACTIONS(3145), + [anon_sym_let] = ACTIONS(3145), + [anon_sym_orderby] = ACTIONS(3145), + [anon_sym_ascending] = ACTIONS(3145), + [anon_sym_descending] = ACTIONS(3145), + [anon_sym_group] = ACTIONS(3145), + [anon_sym_by] = ACTIONS(3145), + [anon_sym_select] = ACTIONS(3145), + [anon_sym_stackalloc] = ACTIONS(3145), + [anon_sym_sizeof] = ACTIONS(3145), + [anon_sym_typeof] = ACTIONS(3145), + [anon_sym___makeref] = ACTIONS(3145), + [anon_sym___reftype] = ACTIONS(3145), + [anon_sym___refvalue] = ACTIONS(3145), + [sym_null_literal] = ACTIONS(3145), + [anon_sym_SQUOTE] = ACTIONS(3147), + [sym_integer_literal] = ACTIONS(3145), + [sym_real_literal] = ACTIONS(3147), + [anon_sym_DQUOTE] = ACTIONS(3147), + [sym_verbatim_string_literal] = ACTIONS(3147), + [aux_sym_preproc_if_token1] = ACTIONS(3147), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -374335,124 +378568,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(3353), - [sym_interpolation_verbatim_start] = ACTIONS(3353), - [sym_interpolation_raw_start] = ACTIONS(3353), - [sym_raw_string_start] = ACTIONS(3353), + [sym_interpolation_regular_start] = ACTIONS(3147), + [sym_interpolation_verbatim_start] = ACTIONS(3147), + [sym_interpolation_raw_start] = ACTIONS(3147), + [sym_raw_string_start] = ACTIONS(3147), }, - [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(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), + [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(3303), + [sym__identifier_token] = ACTIONS(3301), + [anon_sym_extern] = ACTIONS(3301), + [anon_sym_alias] = ACTIONS(3301), + [anon_sym_SEMI] = ACTIONS(3303), + [anon_sym_global] = ACTIONS(3301), + [anon_sym_using] = ACTIONS(3301), + [anon_sym_unsafe] = ACTIONS(3301), + [anon_sym_static] = ACTIONS(3301), + [anon_sym_LBRACK] = ACTIONS(3303), + [anon_sym_LPAREN] = ACTIONS(3303), + [anon_sym_return] = ACTIONS(3301), + [anon_sym_namespace] = ACTIONS(3301), + [anon_sym_class] = ACTIONS(3301), + [anon_sym_ref] = ACTIONS(3301), + [anon_sym_struct] = ACTIONS(3301), + [anon_sym_enum] = ACTIONS(3301), + [anon_sym_LBRACE] = ACTIONS(3303), + [anon_sym_interface] = ACTIONS(3301), + [anon_sym_delegate] = ACTIONS(3301), + [anon_sym_record] = ACTIONS(3301), + [anon_sym_abstract] = ACTIONS(3301), + [anon_sym_async] = ACTIONS(3301), + [anon_sym_const] = ACTIONS(3301), + [anon_sym_file] = ACTIONS(3301), + [anon_sym_fixed] = ACTIONS(3301), + [anon_sym_internal] = ACTIONS(3301), + [anon_sym_new] = ACTIONS(3301), + [anon_sym_override] = ACTIONS(3301), + [anon_sym_partial] = ACTIONS(3301), + [anon_sym_private] = ACTIONS(3301), + [anon_sym_protected] = ACTIONS(3301), + [anon_sym_public] = ACTIONS(3301), + [anon_sym_readonly] = ACTIONS(3301), + [anon_sym_required] = ACTIONS(3301), + [anon_sym_sealed] = ACTIONS(3301), + [anon_sym_virtual] = ACTIONS(3301), + [anon_sym_volatile] = ACTIONS(3301), + [anon_sym_where] = ACTIONS(3301), + [anon_sym_notnull] = ACTIONS(3301), + [anon_sym_unmanaged] = ACTIONS(3301), + [anon_sym_checked] = ACTIONS(3301), + [anon_sym_BANG] = ACTIONS(3303), + [anon_sym_TILDE] = ACTIONS(3303), + [anon_sym_PLUS_PLUS] = ACTIONS(3303), + [anon_sym_DASH_DASH] = ACTIONS(3303), + [anon_sym_true] = ACTIONS(3301), + [anon_sym_false] = ACTIONS(3301), + [anon_sym_PLUS] = ACTIONS(3301), + [anon_sym_DASH] = ACTIONS(3301), + [anon_sym_STAR] = ACTIONS(3303), + [anon_sym_CARET] = ACTIONS(3303), + [anon_sym_AMP] = ACTIONS(3303), + [anon_sym_this] = ACTIONS(3301), + [anon_sym_scoped] = ACTIONS(3301), + [anon_sym_base] = ACTIONS(3301), + [anon_sym_var] = ACTIONS(3301), + [sym_predefined_type] = ACTIONS(3301), + [anon_sym_break] = ACTIONS(3301), + [anon_sym_unchecked] = ACTIONS(3301), + [anon_sym_continue] = ACTIONS(3301), + [anon_sym_do] = ACTIONS(3301), + [anon_sym_while] = ACTIONS(3301), + [anon_sym_for] = ACTIONS(3301), + [anon_sym_lock] = ACTIONS(3301), + [anon_sym_yield] = ACTIONS(3301), + [anon_sym_switch] = ACTIONS(3301), + [anon_sym_default] = ACTIONS(3301), + [anon_sym_throw] = ACTIONS(3301), + [anon_sym_try] = ACTIONS(3301), + [anon_sym_when] = ACTIONS(3301), + [anon_sym_await] = ACTIONS(3301), + [anon_sym_foreach] = ACTIONS(3301), + [anon_sym_goto] = ACTIONS(3301), + [anon_sym_if] = ACTIONS(3301), + [anon_sym_else] = ACTIONS(3301), + [anon_sym_DOT_DOT] = ACTIONS(3303), + [anon_sym_from] = ACTIONS(3301), + [anon_sym_into] = ACTIONS(3301), + [anon_sym_join] = ACTIONS(3301), + [anon_sym_on] = ACTIONS(3301), + [anon_sym_equals] = ACTIONS(3301), + [anon_sym_let] = ACTIONS(3301), + [anon_sym_orderby] = ACTIONS(3301), + [anon_sym_ascending] = ACTIONS(3301), + [anon_sym_descending] = ACTIONS(3301), + [anon_sym_group] = ACTIONS(3301), + [anon_sym_by] = ACTIONS(3301), + [anon_sym_select] = ACTIONS(3301), + [anon_sym_stackalloc] = ACTIONS(3301), + [anon_sym_sizeof] = ACTIONS(3301), + [anon_sym_typeof] = ACTIONS(3301), + [anon_sym___makeref] = ACTIONS(3301), + [anon_sym___reftype] = ACTIONS(3301), + [anon_sym___refvalue] = ACTIONS(3301), + [sym_null_literal] = ACTIONS(3301), + [anon_sym_SQUOTE] = ACTIONS(3303), + [sym_integer_literal] = ACTIONS(3301), + [sym_real_literal] = ACTIONS(3303), + [anon_sym_DQUOTE] = ACTIONS(3303), + [sym_verbatim_string_literal] = ACTIONS(3303), + [aux_sym_preproc_if_token1] = ACTIONS(3303), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + [sym_interpolation_regular_start] = ACTIONS(3303), + [sym_interpolation_verbatim_start] = ACTIONS(3303), + [sym_interpolation_raw_start] = ACTIONS(3303), + [sym_raw_string_start] = ACTIONS(3303), + }, + [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(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), @@ -374463,124 +378822,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(3357), - [sym_interpolation_verbatim_start] = ACTIONS(3357), - [sym_interpolation_raw_start] = ACTIONS(3357), - [sym_raw_string_start] = ACTIONS(3357), + [sym_interpolation_regular_start] = ACTIONS(3179), + [sym_interpolation_verbatim_start] = ACTIONS(3179), + [sym_interpolation_raw_start] = ACTIONS(3179), + [sym_raw_string_start] = ACTIONS(3179), }, - [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(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), + [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(3295), + [sym__identifier_token] = ACTIONS(3293), + [anon_sym_extern] = ACTIONS(3293), + [anon_sym_alias] = ACTIONS(3293), + [anon_sym_SEMI] = ACTIONS(3295), + [anon_sym_global] = ACTIONS(3293), + [anon_sym_using] = ACTIONS(3293), + [anon_sym_unsafe] = ACTIONS(3293), + [anon_sym_static] = ACTIONS(3293), + [anon_sym_LBRACK] = ACTIONS(3295), + [anon_sym_LPAREN] = ACTIONS(3295), + [anon_sym_return] = ACTIONS(3293), + [anon_sym_namespace] = ACTIONS(3293), + [anon_sym_class] = ACTIONS(3293), + [anon_sym_ref] = ACTIONS(3293), + [anon_sym_struct] = ACTIONS(3293), + [anon_sym_enum] = ACTIONS(3293), + [anon_sym_LBRACE] = ACTIONS(3295), + [anon_sym_interface] = ACTIONS(3293), + [anon_sym_delegate] = ACTIONS(3293), + [anon_sym_record] = ACTIONS(3293), + [anon_sym_abstract] = ACTIONS(3293), + [anon_sym_async] = ACTIONS(3293), + [anon_sym_const] = ACTIONS(3293), + [anon_sym_file] = ACTIONS(3293), + [anon_sym_fixed] = ACTIONS(3293), + [anon_sym_internal] = ACTIONS(3293), + [anon_sym_new] = ACTIONS(3293), + [anon_sym_override] = ACTIONS(3293), + [anon_sym_partial] = ACTIONS(3293), + [anon_sym_private] = ACTIONS(3293), + [anon_sym_protected] = ACTIONS(3293), + [anon_sym_public] = ACTIONS(3293), + [anon_sym_readonly] = ACTIONS(3293), + [anon_sym_required] = ACTIONS(3293), + [anon_sym_sealed] = ACTIONS(3293), + [anon_sym_virtual] = ACTIONS(3293), + [anon_sym_volatile] = ACTIONS(3293), + [anon_sym_where] = ACTIONS(3293), + [anon_sym_notnull] = ACTIONS(3293), + [anon_sym_unmanaged] = ACTIONS(3293), + [anon_sym_checked] = ACTIONS(3293), + [anon_sym_BANG] = ACTIONS(3295), + [anon_sym_TILDE] = ACTIONS(3295), + [anon_sym_PLUS_PLUS] = ACTIONS(3295), + [anon_sym_DASH_DASH] = ACTIONS(3295), + [anon_sym_true] = ACTIONS(3293), + [anon_sym_false] = ACTIONS(3293), + [anon_sym_PLUS] = ACTIONS(3293), + [anon_sym_DASH] = ACTIONS(3293), + [anon_sym_STAR] = ACTIONS(3295), + [anon_sym_CARET] = ACTIONS(3295), + [anon_sym_AMP] = ACTIONS(3295), + [anon_sym_this] = ACTIONS(3293), + [anon_sym_scoped] = ACTIONS(3293), + [anon_sym_base] = ACTIONS(3293), + [anon_sym_var] = ACTIONS(3293), + [sym_predefined_type] = ACTIONS(3293), + [anon_sym_break] = ACTIONS(3293), + [anon_sym_unchecked] = ACTIONS(3293), + [anon_sym_continue] = ACTIONS(3293), + [anon_sym_do] = ACTIONS(3293), + [anon_sym_while] = ACTIONS(3293), + [anon_sym_for] = ACTIONS(3293), + [anon_sym_lock] = ACTIONS(3293), + [anon_sym_yield] = ACTIONS(3293), + [anon_sym_switch] = ACTIONS(3293), + [anon_sym_default] = ACTIONS(3293), + [anon_sym_throw] = ACTIONS(3293), + [anon_sym_try] = ACTIONS(3293), + [anon_sym_when] = ACTIONS(3293), + [anon_sym_await] = ACTIONS(3293), + [anon_sym_foreach] = ACTIONS(3293), + [anon_sym_goto] = ACTIONS(3293), + [anon_sym_if] = ACTIONS(3293), + [anon_sym_else] = ACTIONS(3293), + [anon_sym_DOT_DOT] = ACTIONS(3295), + [anon_sym_from] = ACTIONS(3293), + [anon_sym_into] = ACTIONS(3293), + [anon_sym_join] = ACTIONS(3293), + [anon_sym_on] = ACTIONS(3293), + [anon_sym_equals] = ACTIONS(3293), + [anon_sym_let] = ACTIONS(3293), + [anon_sym_orderby] = ACTIONS(3293), + [anon_sym_ascending] = ACTIONS(3293), + [anon_sym_descending] = ACTIONS(3293), + [anon_sym_group] = ACTIONS(3293), + [anon_sym_by] = ACTIONS(3293), + [anon_sym_select] = ACTIONS(3293), + [anon_sym_stackalloc] = ACTIONS(3293), + [anon_sym_sizeof] = ACTIONS(3293), + [anon_sym_typeof] = ACTIONS(3293), + [anon_sym___makeref] = ACTIONS(3293), + [anon_sym___reftype] = ACTIONS(3293), + [anon_sym___refvalue] = ACTIONS(3293), + [sym_null_literal] = ACTIONS(3293), + [anon_sym_SQUOTE] = ACTIONS(3295), + [sym_integer_literal] = ACTIONS(3293), + [sym_real_literal] = ACTIONS(3295), + [anon_sym_DQUOTE] = ACTIONS(3295), + [sym_verbatim_string_literal] = ACTIONS(3295), + [aux_sym_preproc_if_token1] = ACTIONS(3295), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + [sym_interpolation_regular_start] = ACTIONS(3295), + [sym_interpolation_verbatim_start] = ACTIONS(3295), + [sym_interpolation_raw_start] = ACTIONS(3295), + [sym_raw_string_start] = ACTIONS(3295), + }, + [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(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), @@ -374591,124 +379076,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(3361), - [sym_interpolation_verbatim_start] = ACTIONS(3361), - [sym_interpolation_raw_start] = ACTIONS(3361), - [sym_raw_string_start] = ACTIONS(3361), + [sym_interpolation_regular_start] = ACTIONS(3171), + [sym_interpolation_verbatim_start] = ACTIONS(3171), + [sym_interpolation_raw_start] = ACTIONS(3171), + [sym_raw_string_start] = ACTIONS(3171), }, - [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(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), + [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(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), @@ -374719,124 +379203,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(3365), - [sym_interpolation_verbatim_start] = ACTIONS(3365), - [sym_interpolation_raw_start] = ACTIONS(3365), - [sym_raw_string_start] = ACTIONS(3365), + [sym_interpolation_regular_start] = ACTIONS(3175), + [sym_interpolation_verbatim_start] = ACTIONS(3175), + [sym_interpolation_raw_start] = ACTIONS(3175), + [sym_raw_string_start] = ACTIONS(3175), }, - [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(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), + [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(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), @@ -374847,124 +379330,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(3369), - [sym_interpolation_verbatim_start] = ACTIONS(3369), - [sym_interpolation_raw_start] = ACTIONS(3369), - [sym_raw_string_start] = ACTIONS(3369), + [sym_interpolation_regular_start] = ACTIONS(3207), + [sym_interpolation_verbatim_start] = ACTIONS(3207), + [sym_interpolation_raw_start] = ACTIONS(3207), + [sym_raw_string_start] = ACTIONS(3207), }, - [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(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), + [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(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_when] = 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), @@ -374975,124 +379457,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(3373), - [sym_interpolation_verbatim_start] = ACTIONS(3373), - [sym_interpolation_raw_start] = ACTIONS(3373), - [sym_raw_string_start] = ACTIONS(3373), + [sym_interpolation_regular_start] = ACTIONS(3163), + [sym_interpolation_verbatim_start] = ACTIONS(3163), + [sym_interpolation_raw_start] = ACTIONS(3163), + [sym_raw_string_start] = ACTIONS(3163), }, - [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(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), + [2028] = { + [sym_catch_clause] = STATE(2083), + [sym_finally_clause] = STATE(2132), + [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), + [aux_sym_try_statement_repeat1] = STATE(2079), + [sym__identifier_token] = ACTIONS(3099), + [anon_sym_extern] = ACTIONS(3099), + [anon_sym_alias] = ACTIONS(3099), + [anon_sym_SEMI] = ACTIONS(3101), + [anon_sym_global] = ACTIONS(3099), + [anon_sym_using] = ACTIONS(3099), + [anon_sym_unsafe] = ACTIONS(3099), + [anon_sym_static] = ACTIONS(3099), + [anon_sym_LBRACK] = ACTIONS(3101), + [anon_sym_LPAREN] = ACTIONS(3101), + [anon_sym_return] = ACTIONS(3099), + [anon_sym_ref] = ACTIONS(3099), + [anon_sym_LBRACE] = ACTIONS(3101), + [anon_sym_RBRACE] = ACTIONS(3101), + [anon_sym_delegate] = ACTIONS(3099), + [anon_sym_abstract] = ACTIONS(3099), + [anon_sym_async] = ACTIONS(3099), + [anon_sym_const] = ACTIONS(3099), + [anon_sym_file] = ACTIONS(3099), + [anon_sym_fixed] = ACTIONS(3099), + [anon_sym_internal] = ACTIONS(3099), + [anon_sym_new] = ACTIONS(3099), + [anon_sym_override] = ACTIONS(3099), + [anon_sym_partial] = ACTIONS(3099), + [anon_sym_private] = ACTIONS(3099), + [anon_sym_protected] = ACTIONS(3099), + [anon_sym_public] = ACTIONS(3099), + [anon_sym_readonly] = ACTIONS(3099), + [anon_sym_required] = ACTIONS(3099), + [anon_sym_sealed] = ACTIONS(3099), + [anon_sym_virtual] = ACTIONS(3099), + [anon_sym_volatile] = ACTIONS(3099), + [anon_sym_where] = ACTIONS(3099), + [anon_sym_notnull] = ACTIONS(3099), + [anon_sym_unmanaged] = ACTIONS(3099), + [anon_sym_checked] = ACTIONS(3099), + [anon_sym_BANG] = ACTIONS(3101), + [anon_sym_TILDE] = ACTIONS(3101), + [anon_sym_PLUS_PLUS] = ACTIONS(3101), + [anon_sym_DASH_DASH] = ACTIONS(3101), + [anon_sym_true] = ACTIONS(3099), + [anon_sym_false] = ACTIONS(3099), + [anon_sym_PLUS] = ACTIONS(3099), + [anon_sym_DASH] = ACTIONS(3099), + [anon_sym_STAR] = ACTIONS(3101), + [anon_sym_CARET] = ACTIONS(3101), + [anon_sym_AMP] = ACTIONS(3101), + [anon_sym_this] = ACTIONS(3099), + [anon_sym_scoped] = ACTIONS(3099), + [anon_sym_base] = ACTIONS(3099), + [anon_sym_var] = ACTIONS(3099), + [sym_predefined_type] = ACTIONS(3099), + [anon_sym_break] = ACTIONS(3099), + [anon_sym_unchecked] = ACTIONS(3099), + [anon_sym_continue] = ACTIONS(3099), + [anon_sym_do] = ACTIONS(3099), + [anon_sym_while] = ACTIONS(3099), + [anon_sym_for] = ACTIONS(3099), + [anon_sym_lock] = ACTIONS(3099), + [anon_sym_yield] = ACTIONS(3099), + [anon_sym_switch] = ACTIONS(3099), + [anon_sym_case] = ACTIONS(3099), + [anon_sym_default] = ACTIONS(3099), + [anon_sym_throw] = ACTIONS(3099), + [anon_sym_try] = ACTIONS(3099), + [anon_sym_catch] = ACTIONS(3419), + [anon_sym_when] = ACTIONS(3099), + [anon_sym_finally] = ACTIONS(3421), + [anon_sym_await] = ACTIONS(3099), + [anon_sym_foreach] = ACTIONS(3099), + [anon_sym_goto] = ACTIONS(3099), + [anon_sym_if] = ACTIONS(3099), + [anon_sym_else] = ACTIONS(3099), + [anon_sym_DOT_DOT] = ACTIONS(3101), + [anon_sym_from] = ACTIONS(3099), + [anon_sym_into] = ACTIONS(3099), + [anon_sym_join] = ACTIONS(3099), + [anon_sym_on] = ACTIONS(3099), + [anon_sym_equals] = ACTIONS(3099), + [anon_sym_let] = ACTIONS(3099), + [anon_sym_orderby] = ACTIONS(3099), + [anon_sym_ascending] = ACTIONS(3099), + [anon_sym_descending] = ACTIONS(3099), + [anon_sym_group] = ACTIONS(3099), + [anon_sym_by] = ACTIONS(3099), + [anon_sym_select] = ACTIONS(3099), + [anon_sym_stackalloc] = ACTIONS(3099), + [anon_sym_sizeof] = ACTIONS(3099), + [anon_sym_typeof] = ACTIONS(3099), + [anon_sym___makeref] = ACTIONS(3099), + [anon_sym___reftype] = ACTIONS(3099), + [anon_sym___refvalue] = ACTIONS(3099), + [sym_null_literal] = ACTIONS(3099), + [anon_sym_SQUOTE] = ACTIONS(3101), + [sym_integer_literal] = ACTIONS(3099), + [sym_real_literal] = ACTIONS(3101), + [anon_sym_DQUOTE] = ACTIONS(3101), + [sym_verbatim_string_literal] = ACTIONS(3101), + [aux_sym_preproc_if_token1] = ACTIONS(3101), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + [sym_interpolation_regular_start] = ACTIONS(3101), + [sym_interpolation_verbatim_start] = ACTIONS(3101), + [sym_interpolation_raw_start] = ACTIONS(3101), + [sym_raw_string_start] = ACTIONS(3101), + }, + [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(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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -375103,124 +379711,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(3377), - [sym_interpolation_verbatim_start] = ACTIONS(3377), - [sym_interpolation_raw_start] = ACTIONS(3377), - [sym_raw_string_start] = ACTIONS(3377), + [sym_interpolation_regular_start] = ACTIONS(3199), + [sym_interpolation_verbatim_start] = ACTIONS(3199), + [sym_interpolation_raw_start] = ACTIONS(3199), + [sym_raw_string_start] = ACTIONS(3199), }, - [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(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), + [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(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), @@ -375231,124 +379838,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(3381), - [sym_interpolation_verbatim_start] = ACTIONS(3381), - [sym_interpolation_raw_start] = ACTIONS(3381), - [sym_raw_string_start] = ACTIONS(3381), + [sym_interpolation_regular_start] = ACTIONS(3183), + [sym_interpolation_verbatim_start] = ACTIONS(3183), + [sym_interpolation_raw_start] = ACTIONS(3183), + [sym_raw_string_start] = ACTIONS(3183), }, - [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(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), + [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(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), @@ -375359,124 +379965,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(3385), - [sym_interpolation_verbatim_start] = ACTIONS(3385), - [sym_interpolation_raw_start] = ACTIONS(3385), - [sym_raw_string_start] = ACTIONS(3385), + [sym_interpolation_regular_start] = ACTIONS(3191), + [sym_interpolation_verbatim_start] = ACTIONS(3191), + [sym_interpolation_raw_start] = ACTIONS(3191), + [sym_raw_string_start] = ACTIONS(3191), }, - [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(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), + [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(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), @@ -375487,124 +380092,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(3389), - [sym_interpolation_verbatim_start] = ACTIONS(3389), - [sym_interpolation_raw_start] = ACTIONS(3389), - [sym_raw_string_start] = ACTIONS(3389), + [sym_interpolation_regular_start] = ACTIONS(3219), + [sym_interpolation_verbatim_start] = ACTIONS(3219), + [sym_interpolation_raw_start] = ACTIONS(3219), + [sym_raw_string_start] = ACTIONS(3219), }, - [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(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), + [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(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), @@ -375615,124 +380219,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(3393), - [sym_interpolation_verbatim_start] = ACTIONS(3393), - [sym_interpolation_raw_start] = ACTIONS(3393), - [sym_raw_string_start] = ACTIONS(3393), + [sym_interpolation_regular_start] = ACTIONS(3215), + [sym_interpolation_verbatim_start] = ACTIONS(3215), + [sym_interpolation_raw_start] = ACTIONS(3215), + [sym_raw_string_start] = ACTIONS(3215), }, - [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(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), + [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(3143), + [sym__identifier_token] = ACTIONS(3141), + [anon_sym_extern] = ACTIONS(3141), + [anon_sym_alias] = ACTIONS(3141), + [anon_sym_SEMI] = ACTIONS(3143), + [anon_sym_global] = ACTIONS(3141), + [anon_sym_using] = ACTIONS(3141), + [anon_sym_unsafe] = ACTIONS(3141), + [anon_sym_static] = ACTIONS(3141), + [anon_sym_LBRACK] = ACTIONS(3143), + [anon_sym_LPAREN] = ACTIONS(3143), + [anon_sym_return] = ACTIONS(3141), + [anon_sym_namespace] = ACTIONS(3141), + [anon_sym_class] = ACTIONS(3141), + [anon_sym_ref] = ACTIONS(3141), + [anon_sym_struct] = ACTIONS(3141), + [anon_sym_enum] = ACTIONS(3141), + [anon_sym_LBRACE] = ACTIONS(3143), + [anon_sym_interface] = ACTIONS(3141), + [anon_sym_delegate] = ACTIONS(3141), + [anon_sym_record] = ACTIONS(3141), + [anon_sym_abstract] = ACTIONS(3141), + [anon_sym_async] = ACTIONS(3141), + [anon_sym_const] = ACTIONS(3141), + [anon_sym_file] = ACTIONS(3141), + [anon_sym_fixed] = ACTIONS(3141), + [anon_sym_internal] = ACTIONS(3141), + [anon_sym_new] = ACTIONS(3141), + [anon_sym_override] = ACTIONS(3141), + [anon_sym_partial] = ACTIONS(3141), + [anon_sym_private] = ACTIONS(3141), + [anon_sym_protected] = ACTIONS(3141), + [anon_sym_public] = ACTIONS(3141), + [anon_sym_readonly] = ACTIONS(3141), + [anon_sym_required] = ACTIONS(3141), + [anon_sym_sealed] = ACTIONS(3141), + [anon_sym_virtual] = ACTIONS(3141), + [anon_sym_volatile] = ACTIONS(3141), + [anon_sym_where] = ACTIONS(3141), + [anon_sym_notnull] = ACTIONS(3141), + [anon_sym_unmanaged] = ACTIONS(3141), + [anon_sym_checked] = ACTIONS(3141), + [anon_sym_BANG] = ACTIONS(3143), + [anon_sym_TILDE] = ACTIONS(3143), + [anon_sym_PLUS_PLUS] = ACTIONS(3143), + [anon_sym_DASH_DASH] = ACTIONS(3143), + [anon_sym_true] = ACTIONS(3141), + [anon_sym_false] = ACTIONS(3141), + [anon_sym_PLUS] = ACTIONS(3141), + [anon_sym_DASH] = ACTIONS(3141), + [anon_sym_STAR] = ACTIONS(3143), + [anon_sym_CARET] = ACTIONS(3143), + [anon_sym_AMP] = ACTIONS(3143), + [anon_sym_this] = ACTIONS(3141), + [anon_sym_scoped] = ACTIONS(3141), + [anon_sym_base] = ACTIONS(3141), + [anon_sym_var] = ACTIONS(3141), + [sym_predefined_type] = ACTIONS(3141), + [anon_sym_break] = ACTIONS(3141), + [anon_sym_unchecked] = ACTIONS(3141), + [anon_sym_continue] = ACTIONS(3141), + [anon_sym_do] = ACTIONS(3141), + [anon_sym_while] = ACTIONS(3141), + [anon_sym_for] = ACTIONS(3141), + [anon_sym_lock] = ACTIONS(3141), + [anon_sym_yield] = ACTIONS(3141), + [anon_sym_switch] = ACTIONS(3141), + [anon_sym_default] = ACTIONS(3141), + [anon_sym_throw] = ACTIONS(3141), + [anon_sym_try] = ACTIONS(3141), + [anon_sym_when] = ACTIONS(3141), + [anon_sym_await] = ACTIONS(3141), + [anon_sym_foreach] = ACTIONS(3141), + [anon_sym_goto] = ACTIONS(3141), + [anon_sym_if] = ACTIONS(3141), + [anon_sym_else] = ACTIONS(3141), + [anon_sym_DOT_DOT] = ACTIONS(3143), + [anon_sym_from] = ACTIONS(3141), + [anon_sym_into] = ACTIONS(3141), + [anon_sym_join] = ACTIONS(3141), + [anon_sym_on] = ACTIONS(3141), + [anon_sym_equals] = ACTIONS(3141), + [anon_sym_let] = ACTIONS(3141), + [anon_sym_orderby] = ACTIONS(3141), + [anon_sym_ascending] = ACTIONS(3141), + [anon_sym_descending] = ACTIONS(3141), + [anon_sym_group] = ACTIONS(3141), + [anon_sym_by] = ACTIONS(3141), + [anon_sym_select] = ACTIONS(3141), + [anon_sym_stackalloc] = ACTIONS(3141), + [anon_sym_sizeof] = ACTIONS(3141), + [anon_sym_typeof] = ACTIONS(3141), + [anon_sym___makeref] = ACTIONS(3141), + [anon_sym___reftype] = ACTIONS(3141), + [anon_sym___refvalue] = ACTIONS(3141), + [sym_null_literal] = ACTIONS(3141), + [anon_sym_SQUOTE] = ACTIONS(3143), + [sym_integer_literal] = ACTIONS(3141), + [sym_real_literal] = ACTIONS(3143), + [anon_sym_DQUOTE] = ACTIONS(3143), + [sym_verbatim_string_literal] = ACTIONS(3143), + [aux_sym_preproc_if_token1] = ACTIONS(3143), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -375743,252 +380346,381 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_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(3143), + [sym_interpolation_verbatim_start] = ACTIONS(3143), + [sym_interpolation_raw_start] = ACTIONS(3143), + [sym_raw_string_start] = ACTIONS(3143), }, - [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(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), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [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), + [2035] = { + [sym_catch_clause] = STATE(2083), + [sym_finally_clause] = STATE(2115), + [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), + [aux_sym_try_statement_repeat1] = STATE(2028), + [sym__identifier_token] = ACTIONS(3091), + [anon_sym_extern] = ACTIONS(3091), + [anon_sym_alias] = ACTIONS(3091), + [anon_sym_SEMI] = ACTIONS(3093), + [anon_sym_global] = ACTIONS(3091), + [anon_sym_using] = ACTIONS(3091), + [anon_sym_unsafe] = ACTIONS(3091), + [anon_sym_static] = ACTIONS(3091), + [anon_sym_LBRACK] = ACTIONS(3093), + [anon_sym_LPAREN] = ACTIONS(3093), + [anon_sym_return] = ACTIONS(3091), + [anon_sym_ref] = ACTIONS(3091), + [anon_sym_LBRACE] = ACTIONS(3093), + [anon_sym_RBRACE] = ACTIONS(3093), + [anon_sym_delegate] = ACTIONS(3091), + [anon_sym_abstract] = ACTIONS(3091), + [anon_sym_async] = ACTIONS(3091), + [anon_sym_const] = ACTIONS(3091), + [anon_sym_file] = ACTIONS(3091), + [anon_sym_fixed] = ACTIONS(3091), + [anon_sym_internal] = ACTIONS(3091), + [anon_sym_new] = ACTIONS(3091), + [anon_sym_override] = ACTIONS(3091), + [anon_sym_partial] = ACTIONS(3091), + [anon_sym_private] = ACTIONS(3091), + [anon_sym_protected] = ACTIONS(3091), + [anon_sym_public] = ACTIONS(3091), + [anon_sym_readonly] = ACTIONS(3091), + [anon_sym_required] = ACTIONS(3091), + [anon_sym_sealed] = ACTIONS(3091), + [anon_sym_virtual] = ACTIONS(3091), + [anon_sym_volatile] = ACTIONS(3091), + [anon_sym_where] = ACTIONS(3091), + [anon_sym_notnull] = ACTIONS(3091), + [anon_sym_unmanaged] = ACTIONS(3091), + [anon_sym_checked] = ACTIONS(3091), + [anon_sym_BANG] = ACTIONS(3093), + [anon_sym_TILDE] = ACTIONS(3093), + [anon_sym_PLUS_PLUS] = ACTIONS(3093), + [anon_sym_DASH_DASH] = ACTIONS(3093), + [anon_sym_true] = ACTIONS(3091), + [anon_sym_false] = ACTIONS(3091), + [anon_sym_PLUS] = ACTIONS(3091), + [anon_sym_DASH] = ACTIONS(3091), + [anon_sym_STAR] = ACTIONS(3093), + [anon_sym_CARET] = ACTIONS(3093), + [anon_sym_AMP] = ACTIONS(3093), + [anon_sym_this] = ACTIONS(3091), + [anon_sym_scoped] = ACTIONS(3091), + [anon_sym_base] = ACTIONS(3091), + [anon_sym_var] = ACTIONS(3091), + [sym_predefined_type] = ACTIONS(3091), + [anon_sym_break] = ACTIONS(3091), + [anon_sym_unchecked] = ACTIONS(3091), + [anon_sym_continue] = ACTIONS(3091), + [anon_sym_do] = ACTIONS(3091), + [anon_sym_while] = ACTIONS(3091), + [anon_sym_for] = ACTIONS(3091), + [anon_sym_lock] = ACTIONS(3091), + [anon_sym_yield] = ACTIONS(3091), + [anon_sym_switch] = ACTIONS(3091), + [anon_sym_case] = ACTIONS(3091), + [anon_sym_default] = ACTIONS(3091), + [anon_sym_throw] = ACTIONS(3091), + [anon_sym_try] = ACTIONS(3091), + [anon_sym_catch] = ACTIONS(3419), + [anon_sym_when] = ACTIONS(3091), + [anon_sym_finally] = ACTIONS(3421), + [anon_sym_await] = ACTIONS(3091), + [anon_sym_foreach] = ACTIONS(3091), + [anon_sym_goto] = ACTIONS(3091), + [anon_sym_if] = ACTIONS(3091), + [anon_sym_else] = ACTIONS(3091), + [anon_sym_DOT_DOT] = ACTIONS(3093), + [anon_sym_from] = ACTIONS(3091), + [anon_sym_into] = ACTIONS(3091), + [anon_sym_join] = ACTIONS(3091), + [anon_sym_on] = ACTIONS(3091), + [anon_sym_equals] = ACTIONS(3091), + [anon_sym_let] = ACTIONS(3091), + [anon_sym_orderby] = ACTIONS(3091), + [anon_sym_ascending] = ACTIONS(3091), + [anon_sym_descending] = ACTIONS(3091), + [anon_sym_group] = ACTIONS(3091), + [anon_sym_by] = ACTIONS(3091), + [anon_sym_select] = ACTIONS(3091), + [anon_sym_stackalloc] = ACTIONS(3091), + [anon_sym_sizeof] = ACTIONS(3091), + [anon_sym_typeof] = ACTIONS(3091), + [anon_sym___makeref] = ACTIONS(3091), + [anon_sym___reftype] = ACTIONS(3091), + [anon_sym___refvalue] = ACTIONS(3091), + [sym_null_literal] = ACTIONS(3091), + [anon_sym_SQUOTE] = ACTIONS(3093), + [sym_integer_literal] = ACTIONS(3091), + [sym_real_literal] = ACTIONS(3093), + [anon_sym_DQUOTE] = ACTIONS(3093), + [sym_verbatim_string_literal] = ACTIONS(3093), + [aux_sym_preproc_if_token1] = ACTIONS(3093), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + [sym_interpolation_regular_start] = ACTIONS(3093), + [sym_interpolation_verbatim_start] = ACTIONS(3093), + [sym_interpolation_raw_start] = ACTIONS(3093), + [sym_raw_string_start] = ACTIONS(3093), }, - [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(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), + [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(3283), + [sym__identifier_token] = ACTIONS(3281), + [anon_sym_extern] = ACTIONS(3281), + [anon_sym_alias] = ACTIONS(3281), + [anon_sym_SEMI] = ACTIONS(3283), + [anon_sym_global] = ACTIONS(3281), + [anon_sym_using] = ACTIONS(3281), + [anon_sym_unsafe] = ACTIONS(3281), + [anon_sym_static] = ACTIONS(3281), + [anon_sym_LBRACK] = ACTIONS(3283), + [anon_sym_LPAREN] = ACTIONS(3283), + [anon_sym_return] = ACTIONS(3281), + [anon_sym_namespace] = ACTIONS(3281), + [anon_sym_class] = ACTIONS(3281), + [anon_sym_ref] = ACTIONS(3281), + [anon_sym_struct] = ACTIONS(3281), + [anon_sym_enum] = ACTIONS(3281), + [anon_sym_LBRACE] = ACTIONS(3283), + [anon_sym_interface] = ACTIONS(3281), + [anon_sym_delegate] = ACTIONS(3281), + [anon_sym_record] = ACTIONS(3281), + [anon_sym_abstract] = ACTIONS(3281), + [anon_sym_async] = ACTIONS(3281), + [anon_sym_const] = ACTIONS(3281), + [anon_sym_file] = ACTIONS(3281), + [anon_sym_fixed] = ACTIONS(3281), + [anon_sym_internal] = ACTIONS(3281), + [anon_sym_new] = ACTIONS(3281), + [anon_sym_override] = ACTIONS(3281), + [anon_sym_partial] = ACTIONS(3281), + [anon_sym_private] = ACTIONS(3281), + [anon_sym_protected] = ACTIONS(3281), + [anon_sym_public] = ACTIONS(3281), + [anon_sym_readonly] = ACTIONS(3281), + [anon_sym_required] = ACTIONS(3281), + [anon_sym_sealed] = ACTIONS(3281), + [anon_sym_virtual] = ACTIONS(3281), + [anon_sym_volatile] = ACTIONS(3281), + [anon_sym_where] = ACTIONS(3281), + [anon_sym_notnull] = ACTIONS(3281), + [anon_sym_unmanaged] = ACTIONS(3281), + [anon_sym_checked] = ACTIONS(3281), + [anon_sym_BANG] = ACTIONS(3283), + [anon_sym_TILDE] = ACTIONS(3283), + [anon_sym_PLUS_PLUS] = ACTIONS(3283), + [anon_sym_DASH_DASH] = ACTIONS(3283), + [anon_sym_true] = ACTIONS(3281), + [anon_sym_false] = ACTIONS(3281), + [anon_sym_PLUS] = ACTIONS(3281), + [anon_sym_DASH] = ACTIONS(3281), + [anon_sym_STAR] = ACTIONS(3283), + [anon_sym_CARET] = ACTIONS(3283), + [anon_sym_AMP] = ACTIONS(3283), + [anon_sym_this] = ACTIONS(3281), + [anon_sym_scoped] = ACTIONS(3281), + [anon_sym_base] = ACTIONS(3281), + [anon_sym_var] = ACTIONS(3281), + [sym_predefined_type] = ACTIONS(3281), + [anon_sym_break] = ACTIONS(3281), + [anon_sym_unchecked] = ACTIONS(3281), + [anon_sym_continue] = ACTIONS(3281), + [anon_sym_do] = ACTIONS(3281), + [anon_sym_while] = ACTIONS(3281), + [anon_sym_for] = ACTIONS(3281), + [anon_sym_lock] = ACTIONS(3281), + [anon_sym_yield] = ACTIONS(3281), + [anon_sym_switch] = ACTIONS(3281), + [anon_sym_default] = ACTIONS(3281), + [anon_sym_throw] = ACTIONS(3281), + [anon_sym_try] = ACTIONS(3281), + [anon_sym_when] = ACTIONS(3281), + [anon_sym_await] = ACTIONS(3281), + [anon_sym_foreach] = ACTIONS(3281), + [anon_sym_goto] = ACTIONS(3281), + [anon_sym_if] = ACTIONS(3281), + [anon_sym_else] = ACTIONS(3281), + [anon_sym_DOT_DOT] = ACTIONS(3283), + [anon_sym_from] = ACTIONS(3281), + [anon_sym_into] = ACTIONS(3281), + [anon_sym_join] = ACTIONS(3281), + [anon_sym_on] = ACTIONS(3281), + [anon_sym_equals] = ACTIONS(3281), + [anon_sym_let] = ACTIONS(3281), + [anon_sym_orderby] = ACTIONS(3281), + [anon_sym_ascending] = ACTIONS(3281), + [anon_sym_descending] = ACTIONS(3281), + [anon_sym_group] = ACTIONS(3281), + [anon_sym_by] = ACTIONS(3281), + [anon_sym_select] = ACTIONS(3281), + [anon_sym_stackalloc] = ACTIONS(3281), + [anon_sym_sizeof] = ACTIONS(3281), + [anon_sym_typeof] = ACTIONS(3281), + [anon_sym___makeref] = ACTIONS(3281), + [anon_sym___reftype] = ACTIONS(3281), + [anon_sym___refvalue] = ACTIONS(3281), + [sym_null_literal] = ACTIONS(3281), + [anon_sym_SQUOTE] = ACTIONS(3283), + [sym_integer_literal] = ACTIONS(3281), + [sym_real_literal] = ACTIONS(3283), + [anon_sym_DQUOTE] = ACTIONS(3283), + [sym_verbatim_string_literal] = ACTIONS(3283), + [aux_sym_preproc_if_token1] = ACTIONS(3283), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + [sym_interpolation_regular_start] = ACTIONS(3283), + [sym_interpolation_verbatim_start] = ACTIONS(3283), + [sym_interpolation_raw_start] = ACTIONS(3283), + [sym_raw_string_start] = ACTIONS(3283), + }, + [2037] = { + [sym__name] = STATE(4369), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(4068), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(4073), + [sym_type] = STATE(6082), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_identifier] = STATE(5785), + [sym__reserved_identifier] = STATE(3654), + [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), + [sym__identifier_token] = ACTIONS(3423), + [anon_sym_alias] = ACTIONS(3426), + [anon_sym_SEMI] = ACTIONS(3429), + [anon_sym_global] = ACTIONS(3426), + [anon_sym_EQ] = ACTIONS(3431), + [anon_sym_LBRACK] = ACTIONS(3429), + [anon_sym_COLON] = ACTIONS(3431), + [anon_sym_COMMA] = ACTIONS(3429), + [anon_sym_RBRACK] = ACTIONS(3429), + [anon_sym_LPAREN] = ACTIONS(3433), + [anon_sym_RPAREN] = ACTIONS(3429), + [anon_sym_ref] = ACTIONS(3436), + [anon_sym_LBRACE] = ACTIONS(3429), + [anon_sym_RBRACE] = ACTIONS(3429), + [anon_sym_delegate] = ACTIONS(3438), + [anon_sym_file] = ACTIONS(3426), + [anon_sym_LT] = ACTIONS(3431), + [anon_sym_GT] = ACTIONS(3431), + [anon_sym_in] = ACTIONS(3431), + [anon_sym_where] = ACTIONS(3426), + [anon_sym_QMARK] = ACTIONS(3431), + [anon_sym_notnull] = ACTIONS(3426), + [anon_sym_unmanaged] = ACTIONS(3426), + [anon_sym_BANG] = ACTIONS(3431), + [anon_sym_PLUS_PLUS] = ACTIONS(3429), + [anon_sym_DASH_DASH] = ACTIONS(3429), + [anon_sym_PLUS] = ACTIONS(3431), + [anon_sym_DASH] = ACTIONS(3431), + [anon_sym_STAR] = ACTIONS(3431), + [anon_sym_SLASH] = ACTIONS(3431), + [anon_sym_PERCENT] = ACTIONS(3431), + [anon_sym_CARET] = ACTIONS(3431), + [anon_sym_PIPE] = ACTIONS(3431), + [anon_sym_AMP] = ACTIONS(3431), + [anon_sym_LT_LT] = ACTIONS(3431), + [anon_sym_GT_GT] = ACTIONS(3431), + [anon_sym_GT_GT_GT] = ACTIONS(3431), + [anon_sym_EQ_EQ] = ACTIONS(3429), + [anon_sym_BANG_EQ] = ACTIONS(3429), + [anon_sym_GT_EQ] = ACTIONS(3429), + [anon_sym_LT_EQ] = ACTIONS(3429), + [anon_sym_DOT] = ACTIONS(3431), + [anon_sym_scoped] = ACTIONS(3440), + [anon_sym_EQ_GT] = ACTIONS(3429), + [anon_sym_COLON_COLON] = ACTIONS(3429), + [anon_sym_var] = ACTIONS(3443), + [sym_predefined_type] = ACTIONS(2997), + [anon_sym_yield] = ACTIONS(3426), + [anon_sym_switch] = ACTIONS(3431), + [anon_sym_when] = ACTIONS(3426), + [sym_discard] = ACTIONS(3431), + [anon_sym_DOT_DOT] = ACTIONS(3429), + [anon_sym_and] = ACTIONS(3431), + [anon_sym_or] = ACTIONS(3431), + [anon_sym_PLUS_EQ] = ACTIONS(3429), + [anon_sym_DASH_EQ] = ACTIONS(3429), + [anon_sym_STAR_EQ] = ACTIONS(3429), + [anon_sym_SLASH_EQ] = ACTIONS(3429), + [anon_sym_PERCENT_EQ] = ACTIONS(3429), + [anon_sym_AMP_EQ] = ACTIONS(3429), + [anon_sym_CARET_EQ] = ACTIONS(3429), + [anon_sym_PIPE_EQ] = ACTIONS(3429), + [anon_sym_LT_LT_EQ] = ACTIONS(3429), + [anon_sym_GT_GT_EQ] = ACTIONS(3429), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3429), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3429), + [anon_sym_AMP_AMP] = ACTIONS(3429), + [anon_sym_PIPE_PIPE] = ACTIONS(3429), + [anon_sym_QMARK_QMARK] = ACTIONS(3431), + [anon_sym_from] = ACTIONS(3426), + [anon_sym_into] = ACTIONS(3426), + [anon_sym_join] = ACTIONS(3426), + [anon_sym_on] = ACTIONS(3426), + [anon_sym_equals] = ACTIONS(3426), + [anon_sym_let] = ACTIONS(3426), + [anon_sym_orderby] = ACTIONS(3426), + [anon_sym_ascending] = ACTIONS(3426), + [anon_sym_descending] = ACTIONS(3426), + [anon_sym_group] = ACTIONS(3426), + [anon_sym_by] = ACTIONS(3426), + [anon_sym_select] = ACTIONS(3426), + [anon_sym_as] = ACTIONS(3431), + [anon_sym_is] = ACTIONS(3431), + [anon_sym_DASH_GT] = ACTIONS(3429), + [anon_sym_with] = ACTIONS(3431), + [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), @@ -375999,124 +380731,119 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_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), }, - [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(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), + [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(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_when] = 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), @@ -376127,124 +380854,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(3409), - [sym_interpolation_verbatim_start] = ACTIONS(3409), - [sym_interpolation_raw_start] = ACTIONS(3409), - [sym_raw_string_start] = ACTIONS(3409), + [sym_interpolation_regular_start] = ACTIONS(3159), + [sym_interpolation_verbatim_start] = ACTIONS(3159), + [sym_interpolation_raw_start] = ACTIONS(3159), + [sym_raw_string_start] = ACTIONS(3159), }, - [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(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), + [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(3307), + [sym__identifier_token] = ACTIONS(3305), + [anon_sym_extern] = ACTIONS(3305), + [anon_sym_alias] = ACTIONS(3305), + [anon_sym_SEMI] = ACTIONS(3307), + [anon_sym_global] = ACTIONS(3305), + [anon_sym_using] = ACTIONS(3305), + [anon_sym_unsafe] = ACTIONS(3305), + [anon_sym_static] = ACTIONS(3305), + [anon_sym_LBRACK] = ACTIONS(3307), + [anon_sym_LPAREN] = ACTIONS(3307), + [anon_sym_return] = ACTIONS(3305), + [anon_sym_namespace] = ACTIONS(3305), + [anon_sym_class] = ACTIONS(3305), + [anon_sym_ref] = ACTIONS(3305), + [anon_sym_struct] = ACTIONS(3305), + [anon_sym_enum] = ACTIONS(3305), + [anon_sym_LBRACE] = ACTIONS(3307), + [anon_sym_interface] = ACTIONS(3305), + [anon_sym_delegate] = ACTIONS(3305), + [anon_sym_record] = ACTIONS(3305), + [anon_sym_abstract] = ACTIONS(3305), + [anon_sym_async] = ACTIONS(3305), + [anon_sym_const] = ACTIONS(3305), + [anon_sym_file] = ACTIONS(3305), + [anon_sym_fixed] = ACTIONS(3305), + [anon_sym_internal] = ACTIONS(3305), + [anon_sym_new] = ACTIONS(3305), + [anon_sym_override] = ACTIONS(3305), + [anon_sym_partial] = ACTIONS(3305), + [anon_sym_private] = ACTIONS(3305), + [anon_sym_protected] = ACTIONS(3305), + [anon_sym_public] = ACTIONS(3305), + [anon_sym_readonly] = ACTIONS(3305), + [anon_sym_required] = ACTIONS(3305), + [anon_sym_sealed] = ACTIONS(3305), + [anon_sym_virtual] = ACTIONS(3305), + [anon_sym_volatile] = ACTIONS(3305), + [anon_sym_where] = ACTIONS(3305), + [anon_sym_notnull] = ACTIONS(3305), + [anon_sym_unmanaged] = ACTIONS(3305), + [anon_sym_checked] = ACTIONS(3305), + [anon_sym_BANG] = ACTIONS(3307), + [anon_sym_TILDE] = ACTIONS(3307), + [anon_sym_PLUS_PLUS] = ACTIONS(3307), + [anon_sym_DASH_DASH] = ACTIONS(3307), + [anon_sym_true] = ACTIONS(3305), + [anon_sym_false] = ACTIONS(3305), + [anon_sym_PLUS] = ACTIONS(3305), + [anon_sym_DASH] = ACTIONS(3305), + [anon_sym_STAR] = ACTIONS(3307), + [anon_sym_CARET] = ACTIONS(3307), + [anon_sym_AMP] = ACTIONS(3307), + [anon_sym_this] = ACTIONS(3305), + [anon_sym_scoped] = ACTIONS(3305), + [anon_sym_base] = ACTIONS(3305), + [anon_sym_var] = ACTIONS(3305), + [sym_predefined_type] = ACTIONS(3305), + [anon_sym_break] = ACTIONS(3305), + [anon_sym_unchecked] = ACTIONS(3305), + [anon_sym_continue] = ACTIONS(3305), + [anon_sym_do] = ACTIONS(3305), + [anon_sym_while] = ACTIONS(3305), + [anon_sym_for] = ACTIONS(3305), + [anon_sym_lock] = ACTIONS(3305), + [anon_sym_yield] = ACTIONS(3305), + [anon_sym_switch] = ACTIONS(3305), + [anon_sym_default] = ACTIONS(3305), + [anon_sym_throw] = ACTIONS(3305), + [anon_sym_try] = ACTIONS(3305), + [anon_sym_when] = ACTIONS(3305), + [anon_sym_await] = ACTIONS(3305), + [anon_sym_foreach] = ACTIONS(3305), + [anon_sym_goto] = ACTIONS(3305), + [anon_sym_if] = ACTIONS(3305), + [anon_sym_else] = ACTIONS(3305), + [anon_sym_DOT_DOT] = ACTIONS(3307), + [anon_sym_from] = ACTIONS(3305), + [anon_sym_into] = ACTIONS(3305), + [anon_sym_join] = ACTIONS(3305), + [anon_sym_on] = ACTIONS(3305), + [anon_sym_equals] = ACTIONS(3305), + [anon_sym_let] = ACTIONS(3305), + [anon_sym_orderby] = ACTIONS(3305), + [anon_sym_ascending] = ACTIONS(3305), + [anon_sym_descending] = ACTIONS(3305), + [anon_sym_group] = ACTIONS(3305), + [anon_sym_by] = ACTIONS(3305), + [anon_sym_select] = ACTIONS(3305), + [anon_sym_stackalloc] = ACTIONS(3305), + [anon_sym_sizeof] = ACTIONS(3305), + [anon_sym_typeof] = ACTIONS(3305), + [anon_sym___makeref] = ACTIONS(3305), + [anon_sym___reftype] = ACTIONS(3305), + [anon_sym___refvalue] = ACTIONS(3305), + [sym_null_literal] = ACTIONS(3305), + [anon_sym_SQUOTE] = ACTIONS(3307), + [sym_integer_literal] = ACTIONS(3305), + [sym_real_literal] = ACTIONS(3307), + [anon_sym_DQUOTE] = ACTIONS(3307), + [sym_verbatim_string_literal] = ACTIONS(3307), + [aux_sym_preproc_if_token1] = ACTIONS(3307), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + [sym_interpolation_regular_start] = ACTIONS(3307), + [sym_interpolation_verbatim_start] = ACTIONS(3307), + [sym_interpolation_raw_start] = ACTIONS(3307), + [sym_raw_string_start] = ACTIONS(3307), + }, + [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(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_when] = 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), @@ -376255,636 +381108,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(3413), - [sym_interpolation_verbatim_start] = ACTIONS(3413), - [sym_interpolation_raw_start] = ACTIONS(3413), - [sym_raw_string_start] = ACTIONS(3413), + [sym_interpolation_regular_start] = ACTIONS(3167), + [sym_interpolation_verbatim_start] = ACTIONS(3167), + [sym_interpolation_raw_start] = ACTIONS(3167), + [sym_raw_string_start] = ACTIONS(3167), }, - [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(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), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(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), - }, - [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(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), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(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), - }, - [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(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(3425), - [sym_interpolation_verbatim_start] = ACTIONS(3425), - [sym_interpolation_raw_start] = ACTIONS(3425), - [sym_raw_string_start] = ACTIONS(3425), - }, - [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(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), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(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), - }, - [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(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), + [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(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), @@ -376895,1398 +381235,1266 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_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), - }, - [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(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_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), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(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), + [sym_interpolation_regular_start] = ACTIONS(3203), + [sym_interpolation_verbatim_start] = ACTIONS(3203), + [sym_interpolation_raw_start] = ACTIONS(3203), + [sym_raw_string_start] = ACTIONS(3203), }, - [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), - [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), + [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(3287), + [sym__identifier_token] = ACTIONS(3285), + [anon_sym_extern] = ACTIONS(3285), + [anon_sym_alias] = ACTIONS(3285), + [anon_sym_SEMI] = ACTIONS(3287), + [anon_sym_global] = ACTIONS(3285), + [anon_sym_using] = ACTIONS(3285), + [anon_sym_unsafe] = ACTIONS(3285), + [anon_sym_static] = ACTIONS(3285), + [anon_sym_LBRACK] = ACTIONS(3287), + [anon_sym_LPAREN] = ACTIONS(3287), + [anon_sym_return] = ACTIONS(3285), + [anon_sym_namespace] = ACTIONS(3285), + [anon_sym_class] = ACTIONS(3285), + [anon_sym_ref] = ACTIONS(3285), + [anon_sym_struct] = ACTIONS(3285), + [anon_sym_enum] = ACTIONS(3285), + [anon_sym_LBRACE] = ACTIONS(3287), + [anon_sym_interface] = ACTIONS(3285), + [anon_sym_delegate] = ACTIONS(3285), + [anon_sym_record] = ACTIONS(3285), + [anon_sym_abstract] = ACTIONS(3285), + [anon_sym_async] = ACTIONS(3285), + [anon_sym_const] = ACTIONS(3285), + [anon_sym_file] = ACTIONS(3285), + [anon_sym_fixed] = ACTIONS(3285), + [anon_sym_internal] = ACTIONS(3285), + [anon_sym_new] = ACTIONS(3285), + [anon_sym_override] = ACTIONS(3285), + [anon_sym_partial] = ACTIONS(3285), + [anon_sym_private] = ACTIONS(3285), + [anon_sym_protected] = ACTIONS(3285), + [anon_sym_public] = ACTIONS(3285), + [anon_sym_readonly] = ACTIONS(3285), + [anon_sym_required] = ACTIONS(3285), + [anon_sym_sealed] = ACTIONS(3285), + [anon_sym_virtual] = ACTIONS(3285), + [anon_sym_volatile] = ACTIONS(3285), + [anon_sym_where] = ACTIONS(3285), + [anon_sym_notnull] = ACTIONS(3285), + [anon_sym_unmanaged] = ACTIONS(3285), + [anon_sym_checked] = ACTIONS(3285), + [anon_sym_BANG] = ACTIONS(3287), + [anon_sym_TILDE] = ACTIONS(3287), + [anon_sym_PLUS_PLUS] = ACTIONS(3287), + [anon_sym_DASH_DASH] = ACTIONS(3287), + [anon_sym_true] = ACTIONS(3285), + [anon_sym_false] = ACTIONS(3285), + [anon_sym_PLUS] = ACTIONS(3285), + [anon_sym_DASH] = ACTIONS(3285), + [anon_sym_STAR] = ACTIONS(3287), + [anon_sym_CARET] = ACTIONS(3287), + [anon_sym_AMP] = ACTIONS(3287), + [anon_sym_this] = ACTIONS(3285), + [anon_sym_scoped] = ACTIONS(3285), + [anon_sym_base] = ACTIONS(3285), + [anon_sym_var] = ACTIONS(3285), + [sym_predefined_type] = ACTIONS(3285), + [anon_sym_break] = ACTIONS(3285), + [anon_sym_unchecked] = ACTIONS(3285), + [anon_sym_continue] = ACTIONS(3285), + [anon_sym_do] = ACTIONS(3285), + [anon_sym_while] = ACTIONS(3285), + [anon_sym_for] = ACTIONS(3285), + [anon_sym_lock] = ACTIONS(3285), + [anon_sym_yield] = ACTIONS(3285), + [anon_sym_switch] = ACTIONS(3285), + [anon_sym_default] = ACTIONS(3285), + [anon_sym_throw] = ACTIONS(3285), + [anon_sym_try] = ACTIONS(3285), + [anon_sym_when] = ACTIONS(3285), + [anon_sym_await] = ACTIONS(3285), + [anon_sym_foreach] = ACTIONS(3285), + [anon_sym_goto] = ACTIONS(3285), + [anon_sym_if] = ACTIONS(3285), + [anon_sym_else] = ACTIONS(3285), + [anon_sym_DOT_DOT] = ACTIONS(3287), + [anon_sym_from] = ACTIONS(3285), + [anon_sym_into] = ACTIONS(3285), + [anon_sym_join] = ACTIONS(3285), + [anon_sym_on] = ACTIONS(3285), + [anon_sym_equals] = ACTIONS(3285), + [anon_sym_let] = ACTIONS(3285), + [anon_sym_orderby] = ACTIONS(3285), + [anon_sym_ascending] = ACTIONS(3285), + [anon_sym_descending] = ACTIONS(3285), + [anon_sym_group] = ACTIONS(3285), + [anon_sym_by] = ACTIONS(3285), + [anon_sym_select] = ACTIONS(3285), + [anon_sym_stackalloc] = ACTIONS(3285), + [anon_sym_sizeof] = ACTIONS(3285), + [anon_sym_typeof] = ACTIONS(3285), + [anon_sym___makeref] = ACTIONS(3285), + [anon_sym___reftype] = ACTIONS(3285), + [anon_sym___refvalue] = ACTIONS(3285), + [sym_null_literal] = ACTIONS(3285), + [anon_sym_SQUOTE] = ACTIONS(3287), + [sym_integer_literal] = ACTIONS(3285), + [sym_real_literal] = ACTIONS(3287), + [anon_sym_DQUOTE] = ACTIONS(3287), + [sym_verbatim_string_literal] = ACTIONS(3287), + [aux_sym_preproc_if_token1] = ACTIONS(3287), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + [sym_interpolation_regular_start] = ACTIONS(3287), + [sym_interpolation_verbatim_start] = ACTIONS(3287), + [sym_interpolation_raw_start] = ACTIONS(3287), + [sym_raw_string_start] = ACTIONS(3287), }, - [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), - [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), + [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(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), }, - [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), - [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), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [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), + [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(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), }, - [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), - [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), + [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(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), }, - [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), - [ts_builtin_sym_end] = ACTIONS(3155), - [sym__identifier_token] = ACTIONS(3153), - [anon_sym_extern] = ACTIONS(3153), - [anon_sym_alias] = ACTIONS(3153), - [anon_sym_SEMI] = ACTIONS(3155), - [anon_sym_global] = ACTIONS(3153), - [anon_sym_using] = ACTIONS(3153), - [anon_sym_unsafe] = ACTIONS(3153), - [anon_sym_static] = ACTIONS(3153), - [anon_sym_LBRACK] = ACTIONS(3155), - [anon_sym_LPAREN] = ACTIONS(3155), - [anon_sym_return] = ACTIONS(3153), - [anon_sym_namespace] = ACTIONS(3153), - [anon_sym_class] = ACTIONS(3153), - [anon_sym_ref] = ACTIONS(3153), - [anon_sym_struct] = ACTIONS(3153), - [anon_sym_enum] = ACTIONS(3153), - [anon_sym_LBRACE] = ACTIONS(3155), - [anon_sym_interface] = ACTIONS(3153), - [anon_sym_delegate] = ACTIONS(3153), - [anon_sym_record] = ACTIONS(3153), - [anon_sym_abstract] = ACTIONS(3153), - [anon_sym_async] = ACTIONS(3153), - [anon_sym_const] = ACTIONS(3153), - [anon_sym_file] = ACTIONS(3153), - [anon_sym_fixed] = ACTIONS(3153), - [anon_sym_internal] = ACTIONS(3153), - [anon_sym_new] = ACTIONS(3153), - [anon_sym_override] = ACTIONS(3153), - [anon_sym_partial] = ACTIONS(3153), - [anon_sym_private] = ACTIONS(3153), - [anon_sym_protected] = ACTIONS(3153), - [anon_sym_public] = ACTIONS(3153), - [anon_sym_readonly] = ACTIONS(3153), - [anon_sym_required] = ACTIONS(3153), - [anon_sym_sealed] = ACTIONS(3153), - [anon_sym_virtual] = ACTIONS(3153), - [anon_sym_volatile] = ACTIONS(3153), - [anon_sym_where] = ACTIONS(3153), - [anon_sym_notnull] = ACTIONS(3153), - [anon_sym_unmanaged] = ACTIONS(3153), - [anon_sym_checked] = ACTIONS(3153), - [anon_sym_BANG] = ACTIONS(3155), - [anon_sym_TILDE] = ACTIONS(3155), - [anon_sym_PLUS_PLUS] = ACTIONS(3155), - [anon_sym_DASH_DASH] = ACTIONS(3155), - [anon_sym_true] = ACTIONS(3153), - [anon_sym_false] = ACTIONS(3153), - [anon_sym_PLUS] = ACTIONS(3153), - [anon_sym_DASH] = ACTIONS(3153), - [anon_sym_STAR] = ACTIONS(3155), - [anon_sym_CARET] = ACTIONS(3155), - [anon_sym_AMP] = ACTIONS(3155), - [anon_sym_this] = ACTIONS(3153), - [anon_sym_scoped] = ACTIONS(3153), - [anon_sym_base] = ACTIONS(3153), - [anon_sym_var] = ACTIONS(3153), - [sym_predefined_type] = ACTIONS(3153), - [anon_sym_break] = ACTIONS(3153), - [anon_sym_unchecked] = ACTIONS(3153), - [anon_sym_continue] = ACTIONS(3153), - [anon_sym_do] = ACTIONS(3153), - [anon_sym_while] = ACTIONS(3153), - [anon_sym_for] = ACTIONS(3153), - [anon_sym_lock] = ACTIONS(3153), - [anon_sym_yield] = ACTIONS(3153), - [anon_sym_switch] = ACTIONS(3153), - [anon_sym_default] = ACTIONS(3153), - [anon_sym_throw] = ACTIONS(3153), - [anon_sym_try] = ACTIONS(3153), - [anon_sym_when] = ACTIONS(3153), - [anon_sym_await] = ACTIONS(3153), - [anon_sym_foreach] = ACTIONS(3153), - [anon_sym_goto] = ACTIONS(3153), - [anon_sym_if] = ACTIONS(3153), - [anon_sym_else] = ACTIONS(3153), - [anon_sym_DOT_DOT] = ACTIONS(3155), - [anon_sym_from] = ACTIONS(3153), - [anon_sym_into] = ACTIONS(3153), - [anon_sym_join] = ACTIONS(3153), - [anon_sym_on] = ACTIONS(3153), - [anon_sym_equals] = ACTIONS(3153), - [anon_sym_let] = ACTIONS(3153), - [anon_sym_orderby] = ACTIONS(3153), - [anon_sym_ascending] = ACTIONS(3153), - [anon_sym_descending] = ACTIONS(3153), - [anon_sym_group] = ACTIONS(3153), - [anon_sym_by] = ACTIONS(3153), - [anon_sym_select] = ACTIONS(3153), - [anon_sym_stackalloc] = ACTIONS(3153), - [anon_sym_sizeof] = ACTIONS(3153), - [anon_sym_typeof] = ACTIONS(3153), - [anon_sym___makeref] = ACTIONS(3153), - [anon_sym___reftype] = ACTIONS(3153), - [anon_sym___refvalue] = ACTIONS(3153), - [sym_null_literal] = ACTIONS(3153), - [anon_sym_SQUOTE] = ACTIONS(3155), - [sym_integer_literal] = ACTIONS(3153), - [sym_real_literal] = ACTIONS(3155), - [anon_sym_DQUOTE] = ACTIONS(3155), - [sym_verbatim_string_literal] = ACTIONS(3155), - [aux_sym_preproc_if_token1] = ACTIONS(3155), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(3155), - [sym_interpolation_verbatim_start] = ACTIONS(3155), - [sym_interpolation_raw_start] = ACTIONS(3155), - [sym_raw_string_start] = ACTIONS(3155), + [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(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), }, - [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), - [ts_builtin_sym_end] = ACTIONS(3097), - [sym__identifier_token] = ACTIONS(3095), - [anon_sym_extern] = ACTIONS(3095), - [anon_sym_alias] = ACTIONS(3095), - [anon_sym_SEMI] = ACTIONS(3097), - [anon_sym_global] = ACTIONS(3095), - [anon_sym_using] = ACTIONS(3095), - [anon_sym_unsafe] = ACTIONS(3095), - [anon_sym_static] = ACTIONS(3095), - [anon_sym_LBRACK] = ACTIONS(3097), - [anon_sym_LPAREN] = ACTIONS(3097), - [anon_sym_return] = ACTIONS(3095), - [anon_sym_namespace] = ACTIONS(3095), - [anon_sym_class] = ACTIONS(3095), - [anon_sym_ref] = ACTIONS(3095), - [anon_sym_struct] = ACTIONS(3095), - [anon_sym_enum] = ACTIONS(3095), - [anon_sym_LBRACE] = ACTIONS(3097), - [anon_sym_interface] = ACTIONS(3095), - [anon_sym_delegate] = ACTIONS(3095), - [anon_sym_record] = ACTIONS(3095), - [anon_sym_abstract] = ACTIONS(3095), - [anon_sym_async] = ACTIONS(3095), - [anon_sym_const] = ACTIONS(3095), - [anon_sym_file] = ACTIONS(3095), - [anon_sym_fixed] = ACTIONS(3095), - [anon_sym_internal] = ACTIONS(3095), - [anon_sym_new] = ACTIONS(3095), - [anon_sym_override] = ACTIONS(3095), - [anon_sym_partial] = ACTIONS(3095), - [anon_sym_private] = ACTIONS(3095), - [anon_sym_protected] = ACTIONS(3095), - [anon_sym_public] = ACTIONS(3095), - [anon_sym_readonly] = ACTIONS(3095), - [anon_sym_required] = ACTIONS(3095), - [anon_sym_sealed] = ACTIONS(3095), - [anon_sym_virtual] = ACTIONS(3095), - [anon_sym_volatile] = ACTIONS(3095), - [anon_sym_where] = ACTIONS(3095), - [anon_sym_notnull] = ACTIONS(3095), - [anon_sym_unmanaged] = ACTIONS(3095), - [anon_sym_checked] = ACTIONS(3095), - [anon_sym_BANG] = ACTIONS(3097), - [anon_sym_TILDE] = ACTIONS(3097), - [anon_sym_PLUS_PLUS] = ACTIONS(3097), - [anon_sym_DASH_DASH] = ACTIONS(3097), - [anon_sym_true] = ACTIONS(3095), - [anon_sym_false] = ACTIONS(3095), - [anon_sym_PLUS] = ACTIONS(3095), - [anon_sym_DASH] = ACTIONS(3095), - [anon_sym_STAR] = ACTIONS(3097), - [anon_sym_CARET] = ACTIONS(3097), - [anon_sym_AMP] = ACTIONS(3097), - [anon_sym_this] = ACTIONS(3095), - [anon_sym_scoped] = ACTIONS(3095), - [anon_sym_base] = ACTIONS(3095), - [anon_sym_var] = ACTIONS(3095), - [sym_predefined_type] = ACTIONS(3095), - [anon_sym_break] = ACTIONS(3095), - [anon_sym_unchecked] = ACTIONS(3095), - [anon_sym_continue] = ACTIONS(3095), - [anon_sym_do] = ACTIONS(3095), - [anon_sym_while] = ACTIONS(3095), - [anon_sym_for] = ACTIONS(3095), - [anon_sym_lock] = ACTIONS(3095), - [anon_sym_yield] = ACTIONS(3095), - [anon_sym_switch] = ACTIONS(3095), - [anon_sym_default] = ACTIONS(3095), - [anon_sym_throw] = ACTIONS(3095), - [anon_sym_try] = ACTIONS(3095), - [anon_sym_when] = ACTIONS(3095), - [anon_sym_await] = ACTIONS(3095), - [anon_sym_foreach] = ACTIONS(3095), - [anon_sym_goto] = ACTIONS(3095), - [anon_sym_if] = ACTIONS(3095), - [anon_sym_else] = ACTIONS(3095), - [anon_sym_DOT_DOT] = ACTIONS(3097), - [anon_sym_from] = ACTIONS(3095), - [anon_sym_into] = ACTIONS(3095), - [anon_sym_join] = ACTIONS(3095), - [anon_sym_on] = ACTIONS(3095), - [anon_sym_equals] = ACTIONS(3095), - [anon_sym_let] = ACTIONS(3095), - [anon_sym_orderby] = ACTIONS(3095), - [anon_sym_ascending] = ACTIONS(3095), - [anon_sym_descending] = ACTIONS(3095), - [anon_sym_group] = ACTIONS(3095), - [anon_sym_by] = ACTIONS(3095), - [anon_sym_select] = ACTIONS(3095), - [anon_sym_stackalloc] = ACTIONS(3095), - [anon_sym_sizeof] = ACTIONS(3095), - [anon_sym_typeof] = ACTIONS(3095), - [anon_sym___makeref] = ACTIONS(3095), - [anon_sym___reftype] = ACTIONS(3095), - [anon_sym___refvalue] = ACTIONS(3095), - [sym_null_literal] = ACTIONS(3095), - [anon_sym_SQUOTE] = ACTIONS(3097), - [sym_integer_literal] = ACTIONS(3095), - [sym_real_literal] = ACTIONS(3097), - [anon_sym_DQUOTE] = ACTIONS(3097), - [sym_verbatim_string_literal] = ACTIONS(3097), - [aux_sym_preproc_if_token1] = ACTIONS(3097), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(3097), - [sym_interpolation_verbatim_start] = ACTIONS(3097), - [sym_interpolation_raw_start] = ACTIONS(3097), - [sym_raw_string_start] = ACTIONS(3097), + [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(3315), + [sym__identifier_token] = ACTIONS(3313), + [anon_sym_extern] = ACTIONS(3313), + [anon_sym_alias] = ACTIONS(3313), + [anon_sym_SEMI] = ACTIONS(3315), + [anon_sym_global] = ACTIONS(3313), + [anon_sym_using] = ACTIONS(3313), + [anon_sym_unsafe] = ACTIONS(3313), + [anon_sym_static] = ACTIONS(3313), + [anon_sym_LBRACK] = ACTIONS(3315), + [anon_sym_LPAREN] = ACTIONS(3315), + [anon_sym_return] = ACTIONS(3313), + [anon_sym_namespace] = ACTIONS(3313), + [anon_sym_class] = ACTIONS(3313), + [anon_sym_ref] = ACTIONS(3313), + [anon_sym_struct] = ACTIONS(3313), + [anon_sym_enum] = ACTIONS(3313), + [anon_sym_LBRACE] = ACTIONS(3315), + [anon_sym_interface] = ACTIONS(3313), + [anon_sym_delegate] = ACTIONS(3313), + [anon_sym_record] = ACTIONS(3313), + [anon_sym_abstract] = ACTIONS(3313), + [anon_sym_async] = ACTIONS(3313), + [anon_sym_const] = ACTIONS(3313), + [anon_sym_file] = ACTIONS(3313), + [anon_sym_fixed] = ACTIONS(3313), + [anon_sym_internal] = ACTIONS(3313), + [anon_sym_new] = ACTIONS(3313), + [anon_sym_override] = ACTIONS(3313), + [anon_sym_partial] = ACTIONS(3313), + [anon_sym_private] = ACTIONS(3313), + [anon_sym_protected] = ACTIONS(3313), + [anon_sym_public] = ACTIONS(3313), + [anon_sym_readonly] = ACTIONS(3313), + [anon_sym_required] = ACTIONS(3313), + [anon_sym_sealed] = ACTIONS(3313), + [anon_sym_virtual] = ACTIONS(3313), + [anon_sym_volatile] = ACTIONS(3313), + [anon_sym_where] = ACTIONS(3313), + [anon_sym_notnull] = ACTIONS(3313), + [anon_sym_unmanaged] = ACTIONS(3313), + [anon_sym_checked] = ACTIONS(3313), + [anon_sym_BANG] = ACTIONS(3315), + [anon_sym_TILDE] = ACTIONS(3315), + [anon_sym_PLUS_PLUS] = ACTIONS(3315), + [anon_sym_DASH_DASH] = ACTIONS(3315), + [anon_sym_true] = ACTIONS(3313), + [anon_sym_false] = ACTIONS(3313), + [anon_sym_PLUS] = ACTIONS(3313), + [anon_sym_DASH] = ACTIONS(3313), + [anon_sym_STAR] = ACTIONS(3315), + [anon_sym_CARET] = ACTIONS(3315), + [anon_sym_AMP] = ACTIONS(3315), + [anon_sym_this] = ACTIONS(3313), + [anon_sym_scoped] = ACTIONS(3313), + [anon_sym_base] = ACTIONS(3313), + [anon_sym_var] = ACTIONS(3313), + [sym_predefined_type] = ACTIONS(3313), + [anon_sym_break] = ACTIONS(3313), + [anon_sym_unchecked] = ACTIONS(3313), + [anon_sym_continue] = ACTIONS(3313), + [anon_sym_do] = ACTIONS(3313), + [anon_sym_while] = ACTIONS(3313), + [anon_sym_for] = ACTIONS(3313), + [anon_sym_lock] = ACTIONS(3313), + [anon_sym_yield] = ACTIONS(3313), + [anon_sym_switch] = ACTIONS(3313), + [anon_sym_default] = ACTIONS(3313), + [anon_sym_throw] = ACTIONS(3313), + [anon_sym_try] = ACTIONS(3313), + [anon_sym_when] = ACTIONS(3313), + [anon_sym_await] = ACTIONS(3313), + [anon_sym_foreach] = ACTIONS(3313), + [anon_sym_goto] = ACTIONS(3313), + [anon_sym_if] = ACTIONS(3313), + [anon_sym_else] = ACTIONS(3446), + [anon_sym_DOT_DOT] = ACTIONS(3315), + [anon_sym_from] = ACTIONS(3313), + [anon_sym_into] = ACTIONS(3313), + [anon_sym_join] = ACTIONS(3313), + [anon_sym_on] = ACTIONS(3313), + [anon_sym_equals] = ACTIONS(3313), + [anon_sym_let] = ACTIONS(3313), + [anon_sym_orderby] = ACTIONS(3313), + [anon_sym_ascending] = ACTIONS(3313), + [anon_sym_descending] = ACTIONS(3313), + [anon_sym_group] = ACTIONS(3313), + [anon_sym_by] = ACTIONS(3313), + [anon_sym_select] = ACTIONS(3313), + [anon_sym_stackalloc] = ACTIONS(3313), + [anon_sym_sizeof] = ACTIONS(3313), + [anon_sym_typeof] = ACTIONS(3313), + [anon_sym___makeref] = ACTIONS(3313), + [anon_sym___reftype] = ACTIONS(3313), + [anon_sym___refvalue] = ACTIONS(3313), + [sym_null_literal] = ACTIONS(3313), + [anon_sym_SQUOTE] = ACTIONS(3315), + [sym_integer_literal] = ACTIONS(3313), + [sym_real_literal] = ACTIONS(3315), + [anon_sym_DQUOTE] = ACTIONS(3315), + [sym_verbatim_string_literal] = ACTIONS(3315), + [aux_sym_preproc_if_token1] = ACTIONS(3315), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + [sym_interpolation_regular_start] = ACTIONS(3315), + [sym_interpolation_verbatim_start] = ACTIONS(3315), + [sym_interpolation_raw_start] = ACTIONS(3315), + [sym_raw_string_start] = ACTIONS(3315), }, - [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), - [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), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [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), + [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(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), }, - [2015] = { - [sym_catch_clause] = STATE(2089), - [sym_finally_clause] = STATE(2114), - [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), - [aux_sym_try_statement_repeat1] = STATE(2016), - [sym__identifier_token] = ACTIONS(3103), - [anon_sym_extern] = ACTIONS(3103), - [anon_sym_alias] = ACTIONS(3103), - [anon_sym_SEMI] = ACTIONS(3105), - [anon_sym_global] = ACTIONS(3103), - [anon_sym_using] = ACTIONS(3103), - [anon_sym_unsafe] = ACTIONS(3103), - [anon_sym_static] = ACTIONS(3103), - [anon_sym_LBRACK] = ACTIONS(3105), - [anon_sym_LPAREN] = ACTIONS(3105), - [anon_sym_return] = ACTIONS(3103), - [anon_sym_ref] = ACTIONS(3103), - [anon_sym_LBRACE] = ACTIONS(3105), - [anon_sym_RBRACE] = ACTIONS(3105), - [anon_sym_delegate] = ACTIONS(3103), - [anon_sym_abstract] = ACTIONS(3103), - [anon_sym_async] = ACTIONS(3103), - [anon_sym_const] = ACTIONS(3103), - [anon_sym_file] = ACTIONS(3103), - [anon_sym_fixed] = ACTIONS(3103), - [anon_sym_internal] = ACTIONS(3103), - [anon_sym_new] = ACTIONS(3103), - [anon_sym_override] = ACTIONS(3103), - [anon_sym_partial] = ACTIONS(3103), - [anon_sym_private] = ACTIONS(3103), - [anon_sym_protected] = ACTIONS(3103), - [anon_sym_public] = ACTIONS(3103), - [anon_sym_readonly] = ACTIONS(3103), - [anon_sym_required] = ACTIONS(3103), - [anon_sym_sealed] = ACTIONS(3103), - [anon_sym_virtual] = ACTIONS(3103), - [anon_sym_volatile] = ACTIONS(3103), - [anon_sym_where] = ACTIONS(3103), - [anon_sym_notnull] = ACTIONS(3103), - [anon_sym_unmanaged] = ACTIONS(3103), - [anon_sym_checked] = ACTIONS(3103), - [anon_sym_BANG] = ACTIONS(3105), - [anon_sym_TILDE] = ACTIONS(3105), - [anon_sym_PLUS_PLUS] = ACTIONS(3105), - [anon_sym_DASH_DASH] = ACTIONS(3105), - [anon_sym_true] = ACTIONS(3103), - [anon_sym_false] = ACTIONS(3103), - [anon_sym_PLUS] = ACTIONS(3103), - [anon_sym_DASH] = ACTIONS(3103), - [anon_sym_STAR] = ACTIONS(3105), - [anon_sym_CARET] = ACTIONS(3105), - [anon_sym_AMP] = ACTIONS(3105), - [anon_sym_this] = ACTIONS(3103), - [anon_sym_scoped] = ACTIONS(3103), - [anon_sym_base] = ACTIONS(3103), - [anon_sym_var] = ACTIONS(3103), - [sym_predefined_type] = ACTIONS(3103), - [anon_sym_break] = ACTIONS(3103), - [anon_sym_unchecked] = ACTIONS(3103), - [anon_sym_continue] = ACTIONS(3103), - [anon_sym_do] = ACTIONS(3103), - [anon_sym_while] = ACTIONS(3103), - [anon_sym_for] = ACTIONS(3103), - [anon_sym_lock] = ACTIONS(3103), - [anon_sym_yield] = ACTIONS(3103), - [anon_sym_switch] = ACTIONS(3103), - [anon_sym_case] = ACTIONS(3103), - [anon_sym_default] = ACTIONS(3103), - [anon_sym_throw] = ACTIONS(3103), - [anon_sym_try] = ACTIONS(3103), - [anon_sym_catch] = ACTIONS(3435), - [anon_sym_when] = ACTIONS(3103), - [anon_sym_finally] = ACTIONS(3437), - [anon_sym_await] = ACTIONS(3103), - [anon_sym_foreach] = ACTIONS(3103), - [anon_sym_goto] = ACTIONS(3103), - [anon_sym_if] = ACTIONS(3103), - [anon_sym_else] = ACTIONS(3103), - [anon_sym_DOT_DOT] = ACTIONS(3105), - [anon_sym_from] = ACTIONS(3103), - [anon_sym_into] = ACTIONS(3103), - [anon_sym_join] = ACTIONS(3103), - [anon_sym_on] = ACTIONS(3103), - [anon_sym_equals] = ACTIONS(3103), - [anon_sym_let] = ACTIONS(3103), - [anon_sym_orderby] = ACTIONS(3103), - [anon_sym_ascending] = ACTIONS(3103), - [anon_sym_descending] = ACTIONS(3103), - [anon_sym_group] = ACTIONS(3103), - [anon_sym_by] = ACTIONS(3103), - [anon_sym_select] = ACTIONS(3103), - [anon_sym_stackalloc] = ACTIONS(3103), - [anon_sym_sizeof] = ACTIONS(3103), - [anon_sym_typeof] = ACTIONS(3103), - [anon_sym___makeref] = ACTIONS(3103), - [anon_sym___reftype] = ACTIONS(3103), - [anon_sym___refvalue] = ACTIONS(3103), - [sym_null_literal] = ACTIONS(3103), - [anon_sym_SQUOTE] = ACTIONS(3105), - [sym_integer_literal] = ACTIONS(3103), - [sym_real_literal] = ACTIONS(3105), - [anon_sym_DQUOTE] = ACTIONS(3105), - [sym_verbatim_string_literal] = ACTIONS(3105), - [aux_sym_preproc_if_token1] = ACTIONS(3105), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(3105), - [sym_interpolation_verbatim_start] = ACTIONS(3105), - [sym_interpolation_raw_start] = ACTIONS(3105), - [sym_raw_string_start] = ACTIONS(3105), + [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(3311), + [sym__identifier_token] = ACTIONS(3309), + [anon_sym_extern] = ACTIONS(3309), + [anon_sym_alias] = ACTIONS(3309), + [anon_sym_SEMI] = ACTIONS(3311), + [anon_sym_global] = ACTIONS(3309), + [anon_sym_using] = ACTIONS(3309), + [anon_sym_unsafe] = ACTIONS(3309), + [anon_sym_static] = ACTIONS(3309), + [anon_sym_LBRACK] = ACTIONS(3311), + [anon_sym_LPAREN] = ACTIONS(3311), + [anon_sym_return] = ACTIONS(3309), + [anon_sym_namespace] = ACTIONS(3309), + [anon_sym_class] = ACTIONS(3309), + [anon_sym_ref] = ACTIONS(3309), + [anon_sym_struct] = ACTIONS(3309), + [anon_sym_enum] = ACTIONS(3309), + [anon_sym_LBRACE] = ACTIONS(3311), + [anon_sym_interface] = ACTIONS(3309), + [anon_sym_delegate] = ACTIONS(3309), + [anon_sym_record] = ACTIONS(3309), + [anon_sym_abstract] = ACTIONS(3309), + [anon_sym_async] = ACTIONS(3309), + [anon_sym_const] = ACTIONS(3309), + [anon_sym_file] = ACTIONS(3309), + [anon_sym_fixed] = ACTIONS(3309), + [anon_sym_internal] = ACTIONS(3309), + [anon_sym_new] = ACTIONS(3309), + [anon_sym_override] = ACTIONS(3309), + [anon_sym_partial] = ACTIONS(3309), + [anon_sym_private] = ACTIONS(3309), + [anon_sym_protected] = ACTIONS(3309), + [anon_sym_public] = ACTIONS(3309), + [anon_sym_readonly] = ACTIONS(3309), + [anon_sym_required] = ACTIONS(3309), + [anon_sym_sealed] = ACTIONS(3309), + [anon_sym_virtual] = ACTIONS(3309), + [anon_sym_volatile] = ACTIONS(3309), + [anon_sym_where] = ACTIONS(3309), + [anon_sym_notnull] = ACTIONS(3309), + [anon_sym_unmanaged] = ACTIONS(3309), + [anon_sym_checked] = ACTIONS(3309), + [anon_sym_BANG] = ACTIONS(3311), + [anon_sym_TILDE] = ACTIONS(3311), + [anon_sym_PLUS_PLUS] = ACTIONS(3311), + [anon_sym_DASH_DASH] = ACTIONS(3311), + [anon_sym_true] = ACTIONS(3309), + [anon_sym_false] = ACTIONS(3309), + [anon_sym_PLUS] = ACTIONS(3309), + [anon_sym_DASH] = ACTIONS(3309), + [anon_sym_STAR] = ACTIONS(3311), + [anon_sym_CARET] = ACTIONS(3311), + [anon_sym_AMP] = ACTIONS(3311), + [anon_sym_this] = ACTIONS(3309), + [anon_sym_scoped] = ACTIONS(3309), + [anon_sym_base] = ACTIONS(3309), + [anon_sym_var] = ACTIONS(3309), + [sym_predefined_type] = ACTIONS(3309), + [anon_sym_break] = ACTIONS(3309), + [anon_sym_unchecked] = ACTIONS(3309), + [anon_sym_continue] = ACTIONS(3309), + [anon_sym_do] = ACTIONS(3309), + [anon_sym_while] = ACTIONS(3309), + [anon_sym_for] = ACTIONS(3309), + [anon_sym_lock] = ACTIONS(3309), + [anon_sym_yield] = ACTIONS(3309), + [anon_sym_switch] = ACTIONS(3309), + [anon_sym_default] = ACTIONS(3309), + [anon_sym_throw] = ACTIONS(3309), + [anon_sym_try] = ACTIONS(3309), + [anon_sym_when] = ACTIONS(3309), + [anon_sym_await] = ACTIONS(3309), + [anon_sym_foreach] = ACTIONS(3309), + [anon_sym_goto] = ACTIONS(3309), + [anon_sym_if] = ACTIONS(3309), + [anon_sym_else] = ACTIONS(3309), + [anon_sym_DOT_DOT] = ACTIONS(3311), + [anon_sym_from] = ACTIONS(3309), + [anon_sym_into] = ACTIONS(3309), + [anon_sym_join] = ACTIONS(3309), + [anon_sym_on] = ACTIONS(3309), + [anon_sym_equals] = ACTIONS(3309), + [anon_sym_let] = ACTIONS(3309), + [anon_sym_orderby] = ACTIONS(3309), + [anon_sym_ascending] = ACTIONS(3309), + [anon_sym_descending] = ACTIONS(3309), + [anon_sym_group] = ACTIONS(3309), + [anon_sym_by] = ACTIONS(3309), + [anon_sym_select] = ACTIONS(3309), + [anon_sym_stackalloc] = ACTIONS(3309), + [anon_sym_sizeof] = ACTIONS(3309), + [anon_sym_typeof] = ACTIONS(3309), + [anon_sym___makeref] = ACTIONS(3309), + [anon_sym___reftype] = ACTIONS(3309), + [anon_sym___refvalue] = ACTIONS(3309), + [sym_null_literal] = ACTIONS(3309), + [anon_sym_SQUOTE] = ACTIONS(3311), + [sym_integer_literal] = ACTIONS(3309), + [sym_real_literal] = ACTIONS(3311), + [anon_sym_DQUOTE] = ACTIONS(3311), + [sym_verbatim_string_literal] = ACTIONS(3311), + [aux_sym_preproc_if_token1] = ACTIONS(3311), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + [sym_interpolation_regular_start] = ACTIONS(3311), + [sym_interpolation_verbatim_start] = ACTIONS(3311), + [sym_interpolation_raw_start] = ACTIONS(3311), + [sym_raw_string_start] = ACTIONS(3311), }, - [2016] = { - [sym_catch_clause] = STATE(2089), - [sym_finally_clause] = STATE(2125), - [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), - [aux_sym_try_statement_repeat1] = STATE(2072), - [sym__identifier_token] = ACTIONS(3095), - [anon_sym_extern] = ACTIONS(3095), - [anon_sym_alias] = ACTIONS(3095), - [anon_sym_SEMI] = ACTIONS(3097), - [anon_sym_global] = ACTIONS(3095), - [anon_sym_using] = ACTIONS(3095), - [anon_sym_unsafe] = ACTIONS(3095), - [anon_sym_static] = ACTIONS(3095), - [anon_sym_LBRACK] = ACTIONS(3097), - [anon_sym_LPAREN] = ACTIONS(3097), - [anon_sym_return] = ACTIONS(3095), - [anon_sym_ref] = ACTIONS(3095), - [anon_sym_LBRACE] = ACTIONS(3097), - [anon_sym_RBRACE] = ACTIONS(3097), - [anon_sym_delegate] = ACTIONS(3095), - [anon_sym_abstract] = ACTIONS(3095), - [anon_sym_async] = ACTIONS(3095), - [anon_sym_const] = ACTIONS(3095), - [anon_sym_file] = ACTIONS(3095), - [anon_sym_fixed] = ACTIONS(3095), - [anon_sym_internal] = ACTIONS(3095), - [anon_sym_new] = ACTIONS(3095), - [anon_sym_override] = ACTIONS(3095), - [anon_sym_partial] = ACTIONS(3095), - [anon_sym_private] = ACTIONS(3095), - [anon_sym_protected] = ACTIONS(3095), - [anon_sym_public] = ACTIONS(3095), - [anon_sym_readonly] = ACTIONS(3095), - [anon_sym_required] = ACTIONS(3095), - [anon_sym_sealed] = ACTIONS(3095), - [anon_sym_virtual] = ACTIONS(3095), - [anon_sym_volatile] = ACTIONS(3095), - [anon_sym_where] = ACTIONS(3095), - [anon_sym_notnull] = ACTIONS(3095), - [anon_sym_unmanaged] = ACTIONS(3095), - [anon_sym_checked] = ACTIONS(3095), - [anon_sym_BANG] = ACTIONS(3097), - [anon_sym_TILDE] = ACTIONS(3097), - [anon_sym_PLUS_PLUS] = ACTIONS(3097), - [anon_sym_DASH_DASH] = ACTIONS(3097), - [anon_sym_true] = ACTIONS(3095), - [anon_sym_false] = ACTIONS(3095), - [anon_sym_PLUS] = ACTIONS(3095), - [anon_sym_DASH] = ACTIONS(3095), - [anon_sym_STAR] = ACTIONS(3097), - [anon_sym_CARET] = ACTIONS(3097), - [anon_sym_AMP] = ACTIONS(3097), - [anon_sym_this] = ACTIONS(3095), - [anon_sym_scoped] = ACTIONS(3095), - [anon_sym_base] = ACTIONS(3095), - [anon_sym_var] = ACTIONS(3095), - [sym_predefined_type] = ACTIONS(3095), - [anon_sym_break] = ACTIONS(3095), - [anon_sym_unchecked] = ACTIONS(3095), - [anon_sym_continue] = ACTIONS(3095), - [anon_sym_do] = ACTIONS(3095), - [anon_sym_while] = ACTIONS(3095), - [anon_sym_for] = ACTIONS(3095), - [anon_sym_lock] = ACTIONS(3095), - [anon_sym_yield] = ACTIONS(3095), - [anon_sym_switch] = ACTIONS(3095), - [anon_sym_case] = ACTIONS(3095), - [anon_sym_default] = ACTIONS(3095), - [anon_sym_throw] = ACTIONS(3095), - [anon_sym_try] = ACTIONS(3095), - [anon_sym_catch] = ACTIONS(3435), - [anon_sym_when] = ACTIONS(3095), - [anon_sym_finally] = ACTIONS(3437), - [anon_sym_await] = ACTIONS(3095), - [anon_sym_foreach] = ACTIONS(3095), - [anon_sym_goto] = ACTIONS(3095), - [anon_sym_if] = ACTIONS(3095), - [anon_sym_else] = ACTIONS(3095), - [anon_sym_DOT_DOT] = ACTIONS(3097), - [anon_sym_from] = ACTIONS(3095), - [anon_sym_into] = ACTIONS(3095), - [anon_sym_join] = ACTIONS(3095), - [anon_sym_on] = ACTIONS(3095), - [anon_sym_equals] = ACTIONS(3095), - [anon_sym_let] = ACTIONS(3095), - [anon_sym_orderby] = ACTIONS(3095), - [anon_sym_ascending] = ACTIONS(3095), - [anon_sym_descending] = ACTIONS(3095), - [anon_sym_group] = ACTIONS(3095), - [anon_sym_by] = ACTIONS(3095), - [anon_sym_select] = ACTIONS(3095), - [anon_sym_stackalloc] = ACTIONS(3095), - [anon_sym_sizeof] = ACTIONS(3095), - [anon_sym_typeof] = ACTIONS(3095), - [anon_sym___makeref] = ACTIONS(3095), - [anon_sym___reftype] = ACTIONS(3095), - [anon_sym___refvalue] = ACTIONS(3095), - [sym_null_literal] = ACTIONS(3095), - [anon_sym_SQUOTE] = ACTIONS(3097), - [sym_integer_literal] = ACTIONS(3095), - [sym_real_literal] = ACTIONS(3097), - [anon_sym_DQUOTE] = ACTIONS(3097), - [sym_verbatim_string_literal] = ACTIONS(3097), - [aux_sym_preproc_if_token1] = ACTIONS(3097), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(3097), - [sym_interpolation_verbatim_start] = ACTIONS(3097), - [sym_interpolation_raw_start] = ACTIONS(3097), - [sym_raw_string_start] = ACTIONS(3097), + [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(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), }, - [2017] = { - [sym__name] = STATE(4390), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(4096), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(4109), - [sym_type] = STATE(6080), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_identifier] = STATE(5789), - [sym__reserved_identifier] = STATE(3691), - [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_alias] = ACTIONS(3442), - [anon_sym_SEMI] = ACTIONS(3445), - [anon_sym_global] = ACTIONS(3442), - [anon_sym_EQ] = ACTIONS(3447), - [anon_sym_LBRACK] = ACTIONS(3445), - [anon_sym_COLON] = ACTIONS(3447), - [anon_sym_COMMA] = ACTIONS(3445), - [anon_sym_RBRACK] = ACTIONS(3445), - [anon_sym_LPAREN] = ACTIONS(3449), - [anon_sym_RPAREN] = ACTIONS(3445), - [anon_sym_ref] = ACTIONS(3452), - [anon_sym_LBRACE] = ACTIONS(3445), - [anon_sym_RBRACE] = ACTIONS(3445), - [anon_sym_delegate] = ACTIONS(3454), - [anon_sym_file] = ACTIONS(3442), - [anon_sym_LT] = ACTIONS(3447), - [anon_sym_GT] = ACTIONS(3447), - [anon_sym_in] = ACTIONS(3447), - [anon_sym_where] = ACTIONS(3442), - [anon_sym_QMARK] = ACTIONS(3447), - [anon_sym_notnull] = ACTIONS(3442), - [anon_sym_unmanaged] = ACTIONS(3442), - [anon_sym_BANG] = ACTIONS(3447), - [anon_sym_PLUS_PLUS] = ACTIONS(3445), - [anon_sym_DASH_DASH] = ACTIONS(3445), - [anon_sym_PLUS] = ACTIONS(3447), - [anon_sym_DASH] = ACTIONS(3447), - [anon_sym_STAR] = ACTIONS(3447), - [anon_sym_SLASH] = ACTIONS(3447), - [anon_sym_PERCENT] = ACTIONS(3447), - [anon_sym_CARET] = ACTIONS(3447), - [anon_sym_PIPE] = ACTIONS(3447), - [anon_sym_AMP] = ACTIONS(3447), - [anon_sym_LT_LT] = ACTIONS(3447), - [anon_sym_GT_GT] = ACTIONS(3447), - [anon_sym_GT_GT_GT] = ACTIONS(3447), - [anon_sym_EQ_EQ] = ACTIONS(3445), - [anon_sym_BANG_EQ] = ACTIONS(3445), - [anon_sym_GT_EQ] = ACTIONS(3445), - [anon_sym_LT_EQ] = ACTIONS(3445), - [anon_sym_DOT] = ACTIONS(3447), - [anon_sym_scoped] = ACTIONS(3456), - [anon_sym_EQ_GT] = ACTIONS(3445), - [anon_sym_COLON_COLON] = ACTIONS(3445), - [anon_sym_var] = ACTIONS(3459), - [sym_predefined_type] = ACTIONS(3001), - [anon_sym_yield] = ACTIONS(3442), - [anon_sym_switch] = ACTIONS(3447), - [anon_sym_when] = ACTIONS(3442), - [sym_discard] = ACTIONS(3447), - [anon_sym_DOT_DOT] = ACTIONS(3445), - [anon_sym_and] = ACTIONS(3447), - [anon_sym_or] = ACTIONS(3447), - [anon_sym_PLUS_EQ] = ACTIONS(3445), - [anon_sym_DASH_EQ] = ACTIONS(3445), - [anon_sym_STAR_EQ] = ACTIONS(3445), - [anon_sym_SLASH_EQ] = ACTIONS(3445), - [anon_sym_PERCENT_EQ] = ACTIONS(3445), - [anon_sym_AMP_EQ] = ACTIONS(3445), - [anon_sym_CARET_EQ] = ACTIONS(3445), - [anon_sym_PIPE_EQ] = ACTIONS(3445), - [anon_sym_LT_LT_EQ] = ACTIONS(3445), - [anon_sym_GT_GT_EQ] = ACTIONS(3445), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3445), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3445), - [anon_sym_AMP_AMP] = ACTIONS(3445), - [anon_sym_PIPE_PIPE] = ACTIONS(3445), - [anon_sym_QMARK_QMARK] = ACTIONS(3447), - [anon_sym_from] = ACTIONS(3442), - [anon_sym_into] = ACTIONS(3442), - [anon_sym_join] = ACTIONS(3442), - [anon_sym_on] = ACTIONS(3442), - [anon_sym_equals] = ACTIONS(3442), - [anon_sym_let] = ACTIONS(3442), - [anon_sym_orderby] = ACTIONS(3442), - [anon_sym_ascending] = ACTIONS(3442), - [anon_sym_descending] = ACTIONS(3442), - [anon_sym_group] = ACTIONS(3442), - [anon_sym_by] = ACTIONS(3442), - [anon_sym_select] = ACTIONS(3442), - [anon_sym_as] = ACTIONS(3447), - [anon_sym_is] = ACTIONS(3447), - [anon_sym_DASH_GT] = ACTIONS(3445), - [anon_sym_with] = ACTIONS(3447), - [aux_sym_preproc_if_token3] = ACTIONS(3445), - [aux_sym_preproc_else_token1] = ACTIONS(3445), - [aux_sym_preproc_elif_token1] = ACTIONS(3445), + [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(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), @@ -378297,17 +382505,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(3211), + [sym_interpolation_verbatim_start] = ACTIONS(3211), + [sym_interpolation_raw_start] = ACTIONS(3211), + [sym_raw_string_start] = ACTIONS(3211), }, - [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), + [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(3195), [sym__identifier_token] = ACTIONS(3193), [anon_sym_extern] = ACTIONS(3193), @@ -378425,372 +382637,244 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_interpolation_raw_start] = ACTIONS(3195), [sym_raw_string_start] = ACTIONS(3195), }, - [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(3147), - [sym__identifier_token] = ACTIONS(3145), - [anon_sym_extern] = ACTIONS(3145), - [anon_sym_alias] = ACTIONS(3145), - [anon_sym_SEMI] = ACTIONS(3147), - [anon_sym_global] = ACTIONS(3145), - [anon_sym_using] = ACTIONS(3145), - [anon_sym_unsafe] = ACTIONS(3145), - [anon_sym_static] = ACTIONS(3145), - [anon_sym_LBRACK] = ACTIONS(3147), - [anon_sym_LPAREN] = ACTIONS(3147), - [anon_sym_return] = ACTIONS(3145), - [anon_sym_namespace] = ACTIONS(3145), - [anon_sym_class] = ACTIONS(3145), - [anon_sym_ref] = ACTIONS(3145), - [anon_sym_struct] = ACTIONS(3145), - [anon_sym_enum] = ACTIONS(3145), - [anon_sym_LBRACE] = ACTIONS(3147), - [anon_sym_interface] = ACTIONS(3145), - [anon_sym_delegate] = ACTIONS(3145), - [anon_sym_record] = ACTIONS(3145), - [anon_sym_abstract] = ACTIONS(3145), - [anon_sym_async] = ACTIONS(3145), - [anon_sym_const] = ACTIONS(3145), - [anon_sym_file] = ACTIONS(3145), - [anon_sym_fixed] = ACTIONS(3145), - [anon_sym_internal] = ACTIONS(3145), - [anon_sym_new] = ACTIONS(3145), - [anon_sym_override] = ACTIONS(3145), - [anon_sym_partial] = ACTIONS(3145), - [anon_sym_private] = ACTIONS(3145), - [anon_sym_protected] = ACTIONS(3145), - [anon_sym_public] = ACTIONS(3145), - [anon_sym_readonly] = ACTIONS(3145), - [anon_sym_required] = ACTIONS(3145), - [anon_sym_sealed] = ACTIONS(3145), - [anon_sym_virtual] = ACTIONS(3145), - [anon_sym_volatile] = ACTIONS(3145), - [anon_sym_where] = ACTIONS(3145), - [anon_sym_notnull] = ACTIONS(3145), - [anon_sym_unmanaged] = ACTIONS(3145), - [anon_sym_checked] = ACTIONS(3145), - [anon_sym_BANG] = ACTIONS(3147), - [anon_sym_TILDE] = ACTIONS(3147), - [anon_sym_PLUS_PLUS] = ACTIONS(3147), - [anon_sym_DASH_DASH] = ACTIONS(3147), - [anon_sym_true] = ACTIONS(3145), - [anon_sym_false] = ACTIONS(3145), - [anon_sym_PLUS] = ACTIONS(3145), - [anon_sym_DASH] = ACTIONS(3145), - [anon_sym_STAR] = ACTIONS(3147), - [anon_sym_CARET] = ACTIONS(3147), - [anon_sym_AMP] = ACTIONS(3147), - [anon_sym_this] = ACTIONS(3145), - [anon_sym_scoped] = ACTIONS(3145), - [anon_sym_base] = ACTIONS(3145), - [anon_sym_var] = ACTIONS(3145), - [sym_predefined_type] = ACTIONS(3145), - [anon_sym_break] = ACTIONS(3145), - [anon_sym_unchecked] = ACTIONS(3145), - [anon_sym_continue] = ACTIONS(3145), - [anon_sym_do] = ACTIONS(3145), - [anon_sym_while] = ACTIONS(3145), - [anon_sym_for] = ACTIONS(3145), - [anon_sym_lock] = ACTIONS(3145), - [anon_sym_yield] = ACTIONS(3145), - [anon_sym_switch] = ACTIONS(3145), - [anon_sym_default] = ACTIONS(3145), - [anon_sym_throw] = ACTIONS(3145), - [anon_sym_try] = ACTIONS(3145), - [anon_sym_when] = ACTIONS(3145), - [anon_sym_await] = ACTIONS(3145), - [anon_sym_foreach] = ACTIONS(3145), - [anon_sym_goto] = ACTIONS(3145), - [anon_sym_if] = ACTIONS(3145), - [anon_sym_else] = ACTIONS(3145), - [anon_sym_DOT_DOT] = ACTIONS(3147), - [anon_sym_from] = ACTIONS(3145), - [anon_sym_into] = ACTIONS(3145), - [anon_sym_join] = ACTIONS(3145), - [anon_sym_on] = ACTIONS(3145), - [anon_sym_equals] = ACTIONS(3145), - [anon_sym_let] = ACTIONS(3145), - [anon_sym_orderby] = ACTIONS(3145), - [anon_sym_ascending] = ACTIONS(3145), - [anon_sym_descending] = ACTIONS(3145), - [anon_sym_group] = ACTIONS(3145), - [anon_sym_by] = ACTIONS(3145), - [anon_sym_select] = ACTIONS(3145), - [anon_sym_stackalloc] = ACTIONS(3145), - [anon_sym_sizeof] = ACTIONS(3145), - [anon_sym_typeof] = ACTIONS(3145), - [anon_sym___makeref] = ACTIONS(3145), - [anon_sym___reftype] = ACTIONS(3145), - [anon_sym___refvalue] = ACTIONS(3145), - [sym_null_literal] = ACTIONS(3145), - [anon_sym_SQUOTE] = ACTIONS(3147), - [sym_integer_literal] = ACTIONS(3145), - [sym_real_literal] = ACTIONS(3147), - [anon_sym_DQUOTE] = ACTIONS(3147), - [sym_verbatim_string_literal] = ACTIONS(3147), - [aux_sym_preproc_if_token1] = ACTIONS(3147), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(3147), - [sym_interpolation_verbatim_start] = ACTIONS(3147), - [sym_interpolation_raw_start] = ACTIONS(3147), - [sym_raw_string_start] = ACTIONS(3147), - }, - [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(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), + [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(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), }, - [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(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), + [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(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), @@ -378801,377 +382885,122 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_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), - }, - [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(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), - }, - [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(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), + [sym_interpolation_regular_start] = ACTIONS(3393), + [sym_interpolation_verbatim_start] = ACTIONS(3393), + [sym_interpolation_raw_start] = ACTIONS(3393), + [sym_raw_string_start] = ACTIONS(3393), }, - [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(3151), - [sym__identifier_token] = ACTIONS(3149), - [anon_sym_extern] = ACTIONS(3149), - [anon_sym_alias] = ACTIONS(3149), - [anon_sym_SEMI] = ACTIONS(3151), - [anon_sym_global] = ACTIONS(3149), - [anon_sym_using] = ACTIONS(3149), - [anon_sym_unsafe] = ACTIONS(3149), - [anon_sym_static] = ACTIONS(3149), - [anon_sym_LBRACK] = ACTIONS(3151), - [anon_sym_LPAREN] = ACTIONS(3151), - [anon_sym_return] = ACTIONS(3149), - [anon_sym_namespace] = ACTIONS(3149), - [anon_sym_class] = ACTIONS(3149), - [anon_sym_ref] = ACTIONS(3149), - [anon_sym_struct] = ACTIONS(3149), - [anon_sym_enum] = ACTIONS(3149), - [anon_sym_LBRACE] = ACTIONS(3151), - [anon_sym_interface] = ACTIONS(3149), - [anon_sym_delegate] = ACTIONS(3149), - [anon_sym_record] = ACTIONS(3149), - [anon_sym_abstract] = ACTIONS(3149), - [anon_sym_async] = ACTIONS(3149), - [anon_sym_const] = ACTIONS(3149), - [anon_sym_file] = ACTIONS(3149), - [anon_sym_fixed] = ACTIONS(3149), - [anon_sym_internal] = ACTIONS(3149), - [anon_sym_new] = ACTIONS(3149), - [anon_sym_override] = ACTIONS(3149), - [anon_sym_partial] = ACTIONS(3149), - [anon_sym_private] = ACTIONS(3149), - [anon_sym_protected] = ACTIONS(3149), - [anon_sym_public] = ACTIONS(3149), - [anon_sym_readonly] = ACTIONS(3149), - [anon_sym_required] = ACTIONS(3149), - [anon_sym_sealed] = ACTIONS(3149), - [anon_sym_virtual] = ACTIONS(3149), - [anon_sym_volatile] = ACTIONS(3149), - [anon_sym_where] = ACTIONS(3149), - [anon_sym_notnull] = ACTIONS(3149), - [anon_sym_unmanaged] = ACTIONS(3149), - [anon_sym_checked] = ACTIONS(3149), - [anon_sym_BANG] = ACTIONS(3151), - [anon_sym_TILDE] = ACTIONS(3151), - [anon_sym_PLUS_PLUS] = ACTIONS(3151), - [anon_sym_DASH_DASH] = ACTIONS(3151), - [anon_sym_true] = ACTIONS(3149), - [anon_sym_false] = ACTIONS(3149), - [anon_sym_PLUS] = ACTIONS(3149), - [anon_sym_DASH] = ACTIONS(3149), - [anon_sym_STAR] = ACTIONS(3151), - [anon_sym_CARET] = ACTIONS(3151), - [anon_sym_AMP] = ACTIONS(3151), - [anon_sym_this] = ACTIONS(3149), - [anon_sym_scoped] = ACTIONS(3149), - [anon_sym_base] = ACTIONS(3149), - [anon_sym_var] = ACTIONS(3149), - [sym_predefined_type] = ACTIONS(3149), - [anon_sym_break] = ACTIONS(3149), - [anon_sym_unchecked] = ACTIONS(3149), - [anon_sym_continue] = ACTIONS(3149), - [anon_sym_do] = ACTIONS(3149), - [anon_sym_while] = ACTIONS(3149), - [anon_sym_for] = ACTIONS(3149), - [anon_sym_lock] = ACTIONS(3149), - [anon_sym_yield] = ACTIONS(3149), - [anon_sym_switch] = ACTIONS(3149), - [anon_sym_default] = ACTIONS(3149), - [anon_sym_throw] = ACTIONS(3149), - [anon_sym_try] = ACTIONS(3149), - [anon_sym_when] = ACTIONS(3149), - [anon_sym_await] = ACTIONS(3149), - [anon_sym_foreach] = ACTIONS(3149), - [anon_sym_goto] = ACTIONS(3149), - [anon_sym_if] = ACTIONS(3149), - [anon_sym_else] = ACTIONS(3149), - [anon_sym_DOT_DOT] = ACTIONS(3151), - [anon_sym_from] = ACTIONS(3149), - [anon_sym_into] = ACTIONS(3149), - [anon_sym_join] = ACTIONS(3149), - [anon_sym_on] = ACTIONS(3149), - [anon_sym_equals] = ACTIONS(3149), - [anon_sym_let] = ACTIONS(3149), - [anon_sym_orderby] = ACTIONS(3149), - [anon_sym_ascending] = ACTIONS(3149), - [anon_sym_descending] = ACTIONS(3149), - [anon_sym_group] = ACTIONS(3149), - [anon_sym_by] = ACTIONS(3149), - [anon_sym_select] = ACTIONS(3149), - [anon_sym_stackalloc] = ACTIONS(3149), - [anon_sym_sizeof] = ACTIONS(3149), - [anon_sym_typeof] = ACTIONS(3149), - [anon_sym___makeref] = ACTIONS(3149), - [anon_sym___reftype] = ACTIONS(3149), - [anon_sym___refvalue] = ACTIONS(3149), - [sym_null_literal] = ACTIONS(3149), - [anon_sym_SQUOTE] = ACTIONS(3151), - [sym_integer_literal] = ACTIONS(3149), - [sym_real_literal] = ACTIONS(3151), - [anon_sym_DQUOTE] = ACTIONS(3151), - [sym_verbatim_string_literal] = ACTIONS(3151), - [aux_sym_preproc_if_token1] = ACTIONS(3151), + [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(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_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), @@ -379182,123 +383011,122 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(3151), - [sym_interpolation_verbatim_start] = ACTIONS(3151), - [sym_interpolation_raw_start] = ACTIONS(3151), - [sym_raw_string_start] = ACTIONS(3151), + [sym_interpolation_regular_start] = ACTIONS(3349), + [sym_interpolation_verbatim_start] = ACTIONS(3349), + [sym_interpolation_raw_start] = ACTIONS(3349), + [sym_raw_string_start] = ACTIONS(3349), }, - [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(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), + [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(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), @@ -379309,250 +383137,122 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), - }, - [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(3281), - [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_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(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), + [sym_interpolation_regular_start] = ACTIONS(3373), + [sym_interpolation_verbatim_start] = ACTIONS(3373), + [sym_interpolation_raw_start] = ACTIONS(3373), + [sym_raw_string_start] = ACTIONS(3373), }, - [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(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), + [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(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), @@ -379563,250 +383263,122 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_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(3361), + [sym_interpolation_verbatim_start] = ACTIONS(3361), + [sym_interpolation_raw_start] = ACTIONS(3361), + [sym_raw_string_start] = ACTIONS(3361), }, - [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(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), - }, - [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(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), + [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(3409), + [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_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -379817,758 +383389,122 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_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), - }, - [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(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), - }, - [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(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), - }, - [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(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), - }, - [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(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), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [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), - }, - [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(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), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(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), + [sym_interpolation_regular_start] = ACTIONS(3409), + [sym_interpolation_verbatim_start] = ACTIONS(3409), + [sym_interpolation_raw_start] = ACTIONS(3409), + [sym_raw_string_start] = ACTIONS(3409), }, - [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(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_when] = 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), + [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(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), @@ -380579,377 +383515,122 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_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), - }, - [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(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), - }, - [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(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), + [sym_interpolation_regular_start] = ACTIONS(3381), + [sym_interpolation_verbatim_start] = ACTIONS(3381), + [sym_interpolation_raw_start] = ACTIONS(3381), + [sym_raw_string_start] = ACTIONS(3381), }, - [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(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), + [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(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), @@ -380960,123 +383641,122 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_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(3385), + [sym_interpolation_verbatim_start] = ACTIONS(3385), + [sym_interpolation_raw_start] = ACTIONS(3385), + [sym_raw_string_start] = ACTIONS(3385), }, - [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(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), + [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(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), @@ -381087,377 +383767,122 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_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), - }, - [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(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), + [sym_interpolation_regular_start] = ACTIONS(3397), + [sym_interpolation_verbatim_start] = ACTIONS(3397), + [sym_interpolation_raw_start] = ACTIONS(3397), + [sym_raw_string_start] = ACTIONS(3397), }, - [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(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), - }, - [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(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_when] = 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), + [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(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_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), @@ -381468,250 +383893,122 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_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), - }, - [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(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), + [sym_interpolation_regular_start] = ACTIONS(3337), + [sym_interpolation_verbatim_start] = ACTIONS(3337), + [sym_interpolation_raw_start] = ACTIONS(3337), + [sym_raw_string_start] = ACTIONS(3337), }, - [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(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), + [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(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), @@ -381722,123 +384019,374 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_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(3417), + [sym_interpolation_verbatim_start] = ACTIONS(3417), + [sym_interpolation_raw_start] = ACTIONS(3417), + [sym_raw_string_start] = ACTIONS(3417), }, - [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(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(3462), - [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), + [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(3448), + [sym__identifier_token] = ACTIONS(3450), + [anon_sym_extern] = ACTIONS(3450), + [anon_sym_alias] = ACTIONS(3450), + [anon_sym_SEMI] = ACTIONS(3448), + [anon_sym_global] = ACTIONS(3450), + [anon_sym_using] = ACTIONS(3450), + [anon_sym_unsafe] = ACTIONS(3450), + [anon_sym_static] = ACTIONS(3450), + [anon_sym_LBRACK] = ACTIONS(3448), + [anon_sym_LPAREN] = ACTIONS(3448), + [anon_sym_return] = ACTIONS(3450), + [anon_sym_namespace] = ACTIONS(3450), + [anon_sym_class] = ACTIONS(3450), + [anon_sym_ref] = ACTIONS(3450), + [anon_sym_struct] = ACTIONS(3450), + [anon_sym_enum] = ACTIONS(3450), + [anon_sym_LBRACE] = ACTIONS(3448), + [anon_sym_interface] = ACTIONS(3450), + [anon_sym_delegate] = ACTIONS(3450), + [anon_sym_record] = ACTIONS(3450), + [anon_sym_abstract] = ACTIONS(3450), + [anon_sym_async] = ACTIONS(3450), + [anon_sym_const] = ACTIONS(3450), + [anon_sym_file] = ACTIONS(3450), + [anon_sym_fixed] = ACTIONS(3450), + [anon_sym_internal] = ACTIONS(3450), + [anon_sym_new] = ACTIONS(3450), + [anon_sym_override] = ACTIONS(3450), + [anon_sym_partial] = ACTIONS(3450), + [anon_sym_private] = ACTIONS(3450), + [anon_sym_protected] = ACTIONS(3450), + [anon_sym_public] = ACTIONS(3450), + [anon_sym_readonly] = ACTIONS(3450), + [anon_sym_required] = ACTIONS(3450), + [anon_sym_sealed] = ACTIONS(3450), + [anon_sym_virtual] = ACTIONS(3450), + [anon_sym_volatile] = ACTIONS(3450), + [anon_sym_where] = ACTIONS(3450), + [anon_sym_notnull] = ACTIONS(3450), + [anon_sym_unmanaged] = ACTIONS(3450), + [anon_sym_checked] = ACTIONS(3450), + [anon_sym_BANG] = ACTIONS(3448), + [anon_sym_TILDE] = ACTIONS(3448), + [anon_sym_PLUS_PLUS] = ACTIONS(3448), + [anon_sym_DASH_DASH] = ACTIONS(3448), + [anon_sym_true] = ACTIONS(3450), + [anon_sym_false] = ACTIONS(3450), + [anon_sym_PLUS] = ACTIONS(3450), + [anon_sym_DASH] = ACTIONS(3450), + [anon_sym_STAR] = ACTIONS(3448), + [anon_sym_CARET] = ACTIONS(3448), + [anon_sym_AMP] = ACTIONS(3448), + [anon_sym_this] = ACTIONS(3450), + [anon_sym_scoped] = ACTIONS(3450), + [anon_sym_base] = ACTIONS(3450), + [anon_sym_var] = ACTIONS(3450), + [sym_predefined_type] = ACTIONS(3450), + [anon_sym_break] = ACTIONS(3450), + [anon_sym_unchecked] = ACTIONS(3450), + [anon_sym_continue] = ACTIONS(3450), + [anon_sym_do] = ACTIONS(3450), + [anon_sym_while] = ACTIONS(3450), + [anon_sym_for] = ACTIONS(3450), + [anon_sym_lock] = ACTIONS(3450), + [anon_sym_yield] = ACTIONS(3450), + [anon_sym_switch] = ACTIONS(3450), + [anon_sym_default] = ACTIONS(3450), + [anon_sym_throw] = ACTIONS(3450), + [anon_sym_try] = ACTIONS(3450), + [anon_sym_when] = ACTIONS(3450), + [anon_sym_await] = ACTIONS(3450), + [anon_sym_foreach] = ACTIONS(3450), + [anon_sym_goto] = ACTIONS(3450), + [anon_sym_if] = ACTIONS(3450), + [anon_sym_DOT_DOT] = ACTIONS(3448), + [anon_sym_from] = ACTIONS(3450), + [anon_sym_into] = ACTIONS(3450), + [anon_sym_join] = ACTIONS(3450), + [anon_sym_on] = ACTIONS(3450), + [anon_sym_equals] = ACTIONS(3450), + [anon_sym_let] = ACTIONS(3450), + [anon_sym_orderby] = ACTIONS(3450), + [anon_sym_ascending] = ACTIONS(3450), + [anon_sym_descending] = ACTIONS(3450), + [anon_sym_group] = ACTIONS(3450), + [anon_sym_by] = ACTIONS(3450), + [anon_sym_select] = ACTIONS(3450), + [anon_sym_stackalloc] = ACTIONS(3450), + [anon_sym_sizeof] = ACTIONS(3450), + [anon_sym_typeof] = ACTIONS(3450), + [anon_sym___makeref] = ACTIONS(3450), + [anon_sym___reftype] = ACTIONS(3450), + [anon_sym___refvalue] = ACTIONS(3450), + [sym_null_literal] = ACTIONS(3450), + [anon_sym_SQUOTE] = ACTIONS(3448), + [sym_integer_literal] = ACTIONS(3450), + [sym_real_literal] = ACTIONS(3448), + [anon_sym_DQUOTE] = ACTIONS(3448), + [sym_verbatim_string_literal] = ACTIONS(3448), + [aux_sym_preproc_if_token1] = ACTIONS(3448), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + [sym_interpolation_regular_start] = ACTIONS(3448), + [sym_interpolation_verbatim_start] = ACTIONS(3448), + [sym_interpolation_raw_start] = ACTIONS(3448), + [sym_raw_string_start] = ACTIONS(3448), + }, + [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(3452), + [sym__identifier_token] = ACTIONS(3454), + [anon_sym_extern] = ACTIONS(3454), + [anon_sym_alias] = ACTIONS(3454), + [anon_sym_SEMI] = ACTIONS(3452), + [anon_sym_global] = ACTIONS(3454), + [anon_sym_using] = ACTIONS(3454), + [anon_sym_unsafe] = ACTIONS(3454), + [anon_sym_static] = ACTIONS(3454), + [anon_sym_LBRACK] = ACTIONS(3452), + [anon_sym_LPAREN] = ACTIONS(3452), + [anon_sym_return] = ACTIONS(3454), + [anon_sym_namespace] = ACTIONS(3454), + [anon_sym_class] = ACTIONS(3454), + [anon_sym_ref] = ACTIONS(3454), + [anon_sym_struct] = ACTIONS(3454), + [anon_sym_enum] = ACTIONS(3454), + [anon_sym_LBRACE] = ACTIONS(3452), + [anon_sym_interface] = ACTIONS(3454), + [anon_sym_delegate] = ACTIONS(3454), + [anon_sym_record] = ACTIONS(3454), + [anon_sym_abstract] = ACTIONS(3454), + [anon_sym_async] = ACTIONS(3454), + [anon_sym_const] = ACTIONS(3454), + [anon_sym_file] = ACTIONS(3454), + [anon_sym_fixed] = ACTIONS(3454), + [anon_sym_internal] = ACTIONS(3454), + [anon_sym_new] = ACTIONS(3454), + [anon_sym_override] = ACTIONS(3454), + [anon_sym_partial] = ACTIONS(3454), + [anon_sym_private] = ACTIONS(3454), + [anon_sym_protected] = ACTIONS(3454), + [anon_sym_public] = ACTIONS(3454), + [anon_sym_readonly] = ACTIONS(3454), + [anon_sym_required] = ACTIONS(3454), + [anon_sym_sealed] = ACTIONS(3454), + [anon_sym_virtual] = ACTIONS(3454), + [anon_sym_volatile] = ACTIONS(3454), + [anon_sym_where] = ACTIONS(3454), + [anon_sym_notnull] = ACTIONS(3454), + [anon_sym_unmanaged] = ACTIONS(3454), + [anon_sym_checked] = ACTIONS(3454), + [anon_sym_BANG] = ACTIONS(3452), + [anon_sym_TILDE] = ACTIONS(3452), + [anon_sym_PLUS_PLUS] = ACTIONS(3452), + [anon_sym_DASH_DASH] = ACTIONS(3452), + [anon_sym_true] = ACTIONS(3454), + [anon_sym_false] = ACTIONS(3454), + [anon_sym_PLUS] = ACTIONS(3454), + [anon_sym_DASH] = ACTIONS(3454), + [anon_sym_STAR] = ACTIONS(3452), + [anon_sym_CARET] = ACTIONS(3452), + [anon_sym_AMP] = ACTIONS(3452), + [anon_sym_this] = ACTIONS(3454), + [anon_sym_scoped] = ACTIONS(3454), + [anon_sym_base] = ACTIONS(3454), + [anon_sym_var] = ACTIONS(3454), + [sym_predefined_type] = ACTIONS(3454), + [anon_sym_break] = ACTIONS(3454), + [anon_sym_unchecked] = ACTIONS(3454), + [anon_sym_continue] = ACTIONS(3454), + [anon_sym_do] = ACTIONS(3454), + [anon_sym_while] = ACTIONS(3454), + [anon_sym_for] = ACTIONS(3454), + [anon_sym_lock] = ACTIONS(3454), + [anon_sym_yield] = ACTIONS(3454), + [anon_sym_switch] = ACTIONS(3454), + [anon_sym_default] = ACTIONS(3454), + [anon_sym_throw] = ACTIONS(3454), + [anon_sym_try] = ACTIONS(3454), + [anon_sym_when] = ACTIONS(3454), + [anon_sym_await] = ACTIONS(3454), + [anon_sym_foreach] = ACTIONS(3454), + [anon_sym_goto] = ACTIONS(3454), + [anon_sym_if] = ACTIONS(3454), + [anon_sym_DOT_DOT] = ACTIONS(3452), + [anon_sym_from] = ACTIONS(3454), + [anon_sym_into] = ACTIONS(3454), + [anon_sym_join] = ACTIONS(3454), + [anon_sym_on] = ACTIONS(3454), + [anon_sym_equals] = ACTIONS(3454), + [anon_sym_let] = ACTIONS(3454), + [anon_sym_orderby] = ACTIONS(3454), + [anon_sym_ascending] = ACTIONS(3454), + [anon_sym_descending] = ACTIONS(3454), + [anon_sym_group] = ACTIONS(3454), + [anon_sym_by] = ACTIONS(3454), + [anon_sym_select] = ACTIONS(3454), + [anon_sym_stackalloc] = ACTIONS(3454), + [anon_sym_sizeof] = ACTIONS(3454), + [anon_sym_typeof] = ACTIONS(3454), + [anon_sym___makeref] = ACTIONS(3454), + [anon_sym___reftype] = ACTIONS(3454), + [anon_sym___refvalue] = ACTIONS(3454), + [sym_null_literal] = ACTIONS(3454), + [anon_sym_SQUOTE] = ACTIONS(3452), + [sym_integer_literal] = ACTIONS(3454), + [sym_real_literal] = ACTIONS(3452), + [anon_sym_DQUOTE] = ACTIONS(3452), + [sym_verbatim_string_literal] = ACTIONS(3452), + [aux_sym_preproc_if_token1] = ACTIONS(3452), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + [sym_interpolation_regular_start] = ACTIONS(3452), + [sym_interpolation_verbatim_start] = ACTIONS(3452), + [sym_interpolation_raw_start] = ACTIONS(3452), + [sym_raw_string_start] = ACTIONS(3452), + }, + [2066] = { + [sym_preproc_region] = STATE(2066), + [sym_preproc_endregion] = STATE(2066), + [sym_preproc_line] = STATE(2066), + [sym_preproc_pragma] = STATE(2066), + [sym_preproc_nullable] = STATE(2066), + [sym_preproc_error] = STATE(2066), + [sym_preproc_warning] = STATE(2066), + [sym_preproc_define] = STATE(2066), + [sym_preproc_undef] = STATE(2066), + [ts_builtin_sym_end] = ACTIONS(3329), + [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_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), @@ -381849,504 +384397,122 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), - }, - [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(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), - }, - [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(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), - }, - [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(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), + [sym_interpolation_regular_start] = ACTIONS(3329), + [sym_interpolation_verbatim_start] = ACTIONS(3329), + [sym_interpolation_raw_start] = ACTIONS(3329), + [sym_raw_string_start] = ACTIONS(3329), }, - [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(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), + [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(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), @@ -382357,1792 +384523,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(3175), - [sym_interpolation_verbatim_start] = ACTIONS(3175), - [sym_interpolation_raw_start] = ACTIONS(3175), - [sym_raw_string_start] = ACTIONS(3175), - }, - [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(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), - }, - [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(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), + [sym_interpolation_regular_start] = ACTIONS(3389), + [sym_interpolation_verbatim_start] = ACTIONS(3389), + [sym_interpolation_raw_start] = ACTIONS(3389), + [sym_raw_string_start] = ACTIONS(3389), }, - [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(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), - }, - [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(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), - }, - [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(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), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(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), - }, - [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(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_when] = 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), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [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), - }, - [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(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), - }, - [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(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), - }, - [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(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), - }, - [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(3464), - [sym__identifier_token] = ACTIONS(3466), - [anon_sym_extern] = ACTIONS(3466), - [anon_sym_alias] = ACTIONS(3466), - [anon_sym_SEMI] = ACTIONS(3464), - [anon_sym_global] = ACTIONS(3466), - [anon_sym_using] = ACTIONS(3466), - [anon_sym_unsafe] = ACTIONS(3466), - [anon_sym_static] = ACTIONS(3466), - [anon_sym_LBRACK] = ACTIONS(3464), - [anon_sym_LPAREN] = ACTIONS(3464), - [anon_sym_return] = ACTIONS(3466), - [anon_sym_namespace] = ACTIONS(3466), - [anon_sym_class] = ACTIONS(3466), - [anon_sym_ref] = ACTIONS(3466), - [anon_sym_struct] = ACTIONS(3466), - [anon_sym_enum] = ACTIONS(3466), - [anon_sym_LBRACE] = ACTIONS(3464), - [anon_sym_interface] = ACTIONS(3466), - [anon_sym_delegate] = ACTIONS(3466), - [anon_sym_record] = ACTIONS(3466), - [anon_sym_abstract] = ACTIONS(3466), - [anon_sym_async] = ACTIONS(3466), - [anon_sym_const] = ACTIONS(3466), - [anon_sym_file] = ACTIONS(3466), - [anon_sym_fixed] = ACTIONS(3466), - [anon_sym_internal] = ACTIONS(3466), - [anon_sym_new] = ACTIONS(3466), - [anon_sym_override] = ACTIONS(3466), - [anon_sym_partial] = ACTIONS(3466), - [anon_sym_private] = ACTIONS(3466), - [anon_sym_protected] = ACTIONS(3466), - [anon_sym_public] = ACTIONS(3466), - [anon_sym_readonly] = ACTIONS(3466), - [anon_sym_required] = ACTIONS(3466), - [anon_sym_sealed] = ACTIONS(3466), - [anon_sym_virtual] = ACTIONS(3466), - [anon_sym_volatile] = ACTIONS(3466), - [anon_sym_where] = ACTIONS(3466), - [anon_sym_notnull] = ACTIONS(3466), - [anon_sym_unmanaged] = ACTIONS(3466), - [anon_sym_checked] = ACTIONS(3466), - [anon_sym_BANG] = ACTIONS(3464), - [anon_sym_TILDE] = ACTIONS(3464), - [anon_sym_PLUS_PLUS] = ACTIONS(3464), - [anon_sym_DASH_DASH] = ACTIONS(3464), - [anon_sym_true] = ACTIONS(3466), - [anon_sym_false] = ACTIONS(3466), - [anon_sym_PLUS] = ACTIONS(3466), - [anon_sym_DASH] = ACTIONS(3466), - [anon_sym_STAR] = ACTIONS(3464), - [anon_sym_CARET] = ACTIONS(3464), - [anon_sym_AMP] = ACTIONS(3464), - [anon_sym_this] = ACTIONS(3466), - [anon_sym_scoped] = ACTIONS(3466), - [anon_sym_base] = ACTIONS(3466), - [anon_sym_var] = ACTIONS(3466), - [sym_predefined_type] = ACTIONS(3466), - [anon_sym_break] = ACTIONS(3466), - [anon_sym_unchecked] = ACTIONS(3466), - [anon_sym_continue] = ACTIONS(3466), - [anon_sym_do] = ACTIONS(3466), - [anon_sym_while] = ACTIONS(3466), - [anon_sym_for] = ACTIONS(3466), - [anon_sym_lock] = ACTIONS(3466), - [anon_sym_yield] = ACTIONS(3466), - [anon_sym_switch] = ACTIONS(3466), - [anon_sym_default] = ACTIONS(3466), - [anon_sym_throw] = ACTIONS(3466), - [anon_sym_try] = ACTIONS(3466), - [anon_sym_when] = ACTIONS(3466), - [anon_sym_await] = ACTIONS(3466), - [anon_sym_foreach] = ACTIONS(3466), - [anon_sym_goto] = ACTIONS(3466), - [anon_sym_if] = ACTIONS(3466), - [anon_sym_DOT_DOT] = ACTIONS(3464), - [anon_sym_from] = ACTIONS(3466), - [anon_sym_into] = ACTIONS(3466), - [anon_sym_join] = ACTIONS(3466), - [anon_sym_on] = ACTIONS(3466), - [anon_sym_equals] = ACTIONS(3466), - [anon_sym_let] = ACTIONS(3466), - [anon_sym_orderby] = ACTIONS(3466), - [anon_sym_ascending] = ACTIONS(3466), - [anon_sym_descending] = ACTIONS(3466), - [anon_sym_group] = ACTIONS(3466), - [anon_sym_by] = ACTIONS(3466), - [anon_sym_select] = ACTIONS(3466), - [anon_sym_stackalloc] = ACTIONS(3466), - [anon_sym_sizeof] = ACTIONS(3466), - [anon_sym_typeof] = ACTIONS(3466), - [anon_sym___makeref] = ACTIONS(3466), - [anon_sym___reftype] = ACTIONS(3466), - [anon_sym___refvalue] = ACTIONS(3466), - [sym_null_literal] = ACTIONS(3466), - [anon_sym_SQUOTE] = ACTIONS(3464), - [sym_integer_literal] = ACTIONS(3466), - [sym_real_literal] = ACTIONS(3464), - [anon_sym_DQUOTE] = ACTIONS(3464), - [sym_verbatim_string_literal] = ACTIONS(3464), - [aux_sym_preproc_if_token1] = ACTIONS(3464), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(3464), - [sym_interpolation_verbatim_start] = ACTIONS(3464), - [sym_interpolation_raw_start] = ACTIONS(3464), - [sym_raw_string_start] = ACTIONS(3464), - }, - [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(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), - }, - [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(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_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), - }, - [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(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), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [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), - }, - [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(3468), - [sym__identifier_token] = ACTIONS(3470), - [anon_sym_extern] = ACTIONS(3470), - [anon_sym_alias] = ACTIONS(3470), - [anon_sym_SEMI] = ACTIONS(3468), - [anon_sym_global] = ACTIONS(3470), - [anon_sym_using] = ACTIONS(3470), - [anon_sym_unsafe] = ACTIONS(3470), - [anon_sym_static] = ACTIONS(3470), - [anon_sym_LBRACK] = ACTIONS(3468), - [anon_sym_LPAREN] = ACTIONS(3468), - [anon_sym_return] = ACTIONS(3470), - [anon_sym_namespace] = ACTIONS(3470), - [anon_sym_class] = ACTIONS(3470), - [anon_sym_ref] = ACTIONS(3470), - [anon_sym_struct] = ACTIONS(3470), - [anon_sym_enum] = ACTIONS(3470), - [anon_sym_LBRACE] = ACTIONS(3468), - [anon_sym_interface] = ACTIONS(3470), - [anon_sym_delegate] = ACTIONS(3470), - [anon_sym_record] = ACTIONS(3470), - [anon_sym_abstract] = ACTIONS(3470), - [anon_sym_async] = ACTIONS(3470), - [anon_sym_const] = ACTIONS(3470), - [anon_sym_file] = ACTIONS(3470), - [anon_sym_fixed] = ACTIONS(3470), - [anon_sym_internal] = ACTIONS(3470), - [anon_sym_new] = ACTIONS(3470), - [anon_sym_override] = ACTIONS(3470), - [anon_sym_partial] = ACTIONS(3470), - [anon_sym_private] = ACTIONS(3470), - [anon_sym_protected] = ACTIONS(3470), - [anon_sym_public] = ACTIONS(3470), - [anon_sym_readonly] = ACTIONS(3470), - [anon_sym_required] = ACTIONS(3470), - [anon_sym_sealed] = ACTIONS(3470), - [anon_sym_virtual] = ACTIONS(3470), - [anon_sym_volatile] = ACTIONS(3470), - [anon_sym_where] = ACTIONS(3470), - [anon_sym_notnull] = ACTIONS(3470), - [anon_sym_unmanaged] = ACTIONS(3470), - [anon_sym_checked] = ACTIONS(3470), - [anon_sym_BANG] = ACTIONS(3468), - [anon_sym_TILDE] = ACTIONS(3468), - [anon_sym_PLUS_PLUS] = ACTIONS(3468), - [anon_sym_DASH_DASH] = ACTIONS(3468), - [anon_sym_true] = ACTIONS(3470), - [anon_sym_false] = ACTIONS(3470), - [anon_sym_PLUS] = ACTIONS(3470), - [anon_sym_DASH] = ACTIONS(3470), - [anon_sym_STAR] = ACTIONS(3468), - [anon_sym_CARET] = ACTIONS(3468), - [anon_sym_AMP] = ACTIONS(3468), - [anon_sym_this] = ACTIONS(3470), - [anon_sym_scoped] = ACTIONS(3470), - [anon_sym_base] = ACTIONS(3470), - [anon_sym_var] = ACTIONS(3470), - [sym_predefined_type] = ACTIONS(3470), - [anon_sym_break] = ACTIONS(3470), - [anon_sym_unchecked] = ACTIONS(3470), - [anon_sym_continue] = ACTIONS(3470), - [anon_sym_do] = ACTIONS(3470), - [anon_sym_while] = ACTIONS(3470), - [anon_sym_for] = ACTIONS(3470), - [anon_sym_lock] = ACTIONS(3470), - [anon_sym_yield] = ACTIONS(3470), - [anon_sym_switch] = ACTIONS(3470), - [anon_sym_default] = ACTIONS(3470), - [anon_sym_throw] = ACTIONS(3470), - [anon_sym_try] = ACTIONS(3470), - [anon_sym_when] = ACTIONS(3470), - [anon_sym_await] = ACTIONS(3470), - [anon_sym_foreach] = ACTIONS(3470), - [anon_sym_goto] = ACTIONS(3470), - [anon_sym_if] = ACTIONS(3470), - [anon_sym_DOT_DOT] = ACTIONS(3468), - [anon_sym_from] = ACTIONS(3470), - [anon_sym_into] = ACTIONS(3470), - [anon_sym_join] = ACTIONS(3470), - [anon_sym_on] = ACTIONS(3470), - [anon_sym_equals] = ACTIONS(3470), - [anon_sym_let] = ACTIONS(3470), - [anon_sym_orderby] = ACTIONS(3470), - [anon_sym_ascending] = ACTIONS(3470), - [anon_sym_descending] = ACTIONS(3470), - [anon_sym_group] = ACTIONS(3470), - [anon_sym_by] = ACTIONS(3470), - [anon_sym_select] = ACTIONS(3470), - [anon_sym_stackalloc] = ACTIONS(3470), - [anon_sym_sizeof] = ACTIONS(3470), - [anon_sym_typeof] = ACTIONS(3470), - [anon_sym___makeref] = ACTIONS(3470), - [anon_sym___reftype] = ACTIONS(3470), - [anon_sym___refvalue] = ACTIONS(3470), - [sym_null_literal] = ACTIONS(3470), - [anon_sym_SQUOTE] = ACTIONS(3468), - [sym_integer_literal] = ACTIONS(3470), - [sym_real_literal] = ACTIONS(3468), - [anon_sym_DQUOTE] = ACTIONS(3468), - [sym_verbatim_string_literal] = ACTIONS(3468), - [aux_sym_preproc_if_token1] = ACTIONS(3468), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(3468), - [sym_interpolation_verbatim_start] = ACTIONS(3468), - [sym_interpolation_raw_start] = ACTIONS(3468), - [sym_raw_string_start] = ACTIONS(3468), - }, - [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), + [2068] = { + [sym_preproc_region] = STATE(2068), + [sym_preproc_endregion] = STATE(2068), + [sym_preproc_line] = STATE(2068), + [sym_preproc_pragma] = STATE(2068), + [sym_preproc_nullable] = STATE(2068), + [sym_preproc_error] = STATE(2068), + [sym_preproc_warning] = STATE(2068), + [sym_preproc_define] = STATE(2068), + [sym_preproc_undef] = STATE(2068), [ts_builtin_sym_end] = ACTIONS(3345), [sym__identifier_token] = ACTIONS(3343), [anon_sym_extern] = ACTIONS(3343), @@ -384259,170 +384654,422 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_interpolation_raw_start] = ACTIONS(3345), [sym_raw_string_start] = ACTIONS(3345), }, - [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(3464), - [sym__identifier_token] = ACTIONS(3466), - [anon_sym_extern] = ACTIONS(3466), - [anon_sym_alias] = ACTIONS(3466), - [anon_sym_SEMI] = ACTIONS(3464), - [anon_sym_global] = ACTIONS(3466), - [anon_sym_using] = ACTIONS(3466), - [anon_sym_unsafe] = ACTIONS(3466), - [anon_sym_static] = ACTIONS(3466), - [anon_sym_LBRACK] = ACTIONS(3464), - [anon_sym_LPAREN] = ACTIONS(3464), - [anon_sym_return] = ACTIONS(3466), - [anon_sym_namespace] = ACTIONS(3466), - [anon_sym_class] = ACTIONS(3466), - [anon_sym_ref] = ACTIONS(3466), - [anon_sym_struct] = ACTIONS(3466), - [anon_sym_enum] = ACTIONS(3466), - [anon_sym_LBRACE] = ACTIONS(3464), - [anon_sym_interface] = ACTIONS(3466), - [anon_sym_delegate] = ACTIONS(3466), - [anon_sym_record] = ACTIONS(3466), - [anon_sym_abstract] = ACTIONS(3466), - [anon_sym_async] = ACTIONS(3466), - [anon_sym_const] = ACTIONS(3466), - [anon_sym_file] = ACTIONS(3466), - [anon_sym_fixed] = ACTIONS(3466), - [anon_sym_internal] = ACTIONS(3466), - [anon_sym_new] = ACTIONS(3466), - [anon_sym_override] = ACTIONS(3466), - [anon_sym_partial] = ACTIONS(3466), - [anon_sym_private] = ACTIONS(3466), - [anon_sym_protected] = ACTIONS(3466), - [anon_sym_public] = ACTIONS(3466), - [anon_sym_readonly] = ACTIONS(3466), - [anon_sym_required] = ACTIONS(3466), - [anon_sym_sealed] = ACTIONS(3466), - [anon_sym_virtual] = ACTIONS(3466), - [anon_sym_volatile] = ACTIONS(3466), - [anon_sym_where] = ACTIONS(3466), - [anon_sym_notnull] = ACTIONS(3466), - [anon_sym_unmanaged] = ACTIONS(3466), - [anon_sym_checked] = ACTIONS(3466), - [anon_sym_BANG] = ACTIONS(3464), - [anon_sym_TILDE] = ACTIONS(3464), - [anon_sym_PLUS_PLUS] = ACTIONS(3464), - [anon_sym_DASH_DASH] = ACTIONS(3464), - [anon_sym_true] = ACTIONS(3466), - [anon_sym_false] = ACTIONS(3466), - [anon_sym_PLUS] = ACTIONS(3466), - [anon_sym_DASH] = ACTIONS(3466), - [anon_sym_STAR] = ACTIONS(3464), - [anon_sym_CARET] = ACTIONS(3464), - [anon_sym_AMP] = ACTIONS(3464), - [anon_sym_this] = ACTIONS(3466), - [anon_sym_scoped] = ACTIONS(3466), - [anon_sym_base] = ACTIONS(3466), - [anon_sym_var] = ACTIONS(3466), - [sym_predefined_type] = ACTIONS(3466), - [anon_sym_break] = ACTIONS(3466), - [anon_sym_unchecked] = ACTIONS(3466), - [anon_sym_continue] = ACTIONS(3466), - [anon_sym_do] = ACTIONS(3466), - [anon_sym_while] = ACTIONS(3466), - [anon_sym_for] = ACTIONS(3466), - [anon_sym_lock] = ACTIONS(3466), - [anon_sym_yield] = ACTIONS(3466), - [anon_sym_switch] = ACTIONS(3466), - [anon_sym_default] = ACTIONS(3466), - [anon_sym_throw] = ACTIONS(3466), - [anon_sym_try] = ACTIONS(3466), - [anon_sym_when] = ACTIONS(3466), - [anon_sym_await] = ACTIONS(3466), - [anon_sym_foreach] = ACTIONS(3466), - [anon_sym_goto] = ACTIONS(3466), - [anon_sym_if] = ACTIONS(3466), - [anon_sym_DOT_DOT] = ACTIONS(3464), - [anon_sym_from] = ACTIONS(3466), - [anon_sym_into] = ACTIONS(3466), - [anon_sym_join] = ACTIONS(3466), - [anon_sym_on] = ACTIONS(3466), - [anon_sym_equals] = ACTIONS(3466), - [anon_sym_let] = ACTIONS(3466), - [anon_sym_orderby] = ACTIONS(3466), - [anon_sym_ascending] = ACTIONS(3466), - [anon_sym_descending] = ACTIONS(3466), - [anon_sym_group] = ACTIONS(3466), - [anon_sym_by] = ACTIONS(3466), - [anon_sym_select] = ACTIONS(3466), - [anon_sym_stackalloc] = ACTIONS(3466), - [anon_sym_sizeof] = ACTIONS(3466), - [anon_sym_typeof] = ACTIONS(3466), - [anon_sym___makeref] = ACTIONS(3466), - [anon_sym___reftype] = ACTIONS(3466), - [anon_sym___refvalue] = ACTIONS(3466), - [sym_null_literal] = ACTIONS(3466), - [anon_sym_SQUOTE] = ACTIONS(3464), - [sym_integer_literal] = ACTIONS(3466), - [sym_real_literal] = ACTIONS(3464), - [anon_sym_DQUOTE] = ACTIONS(3464), - [sym_verbatim_string_literal] = ACTIONS(3464), - [aux_sym_preproc_if_token1] = ACTIONS(3464), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(3464), - [sym_interpolation_verbatim_start] = ACTIONS(3464), - [sym_interpolation_raw_start] = ACTIONS(3464), - [sym_raw_string_start] = ACTIONS(3464), - }, - [2066] = { - [sym_preproc_region] = STATE(2066), - [sym_preproc_endregion] = STATE(2066), - [sym_preproc_line] = STATE(2066), - [sym_preproc_pragma] = STATE(2066), - [sym_preproc_nullable] = STATE(2066), - [sym_preproc_error] = STATE(2066), - [sym_preproc_warning] = STATE(2066), - [sym_preproc_define] = STATE(2066), - [sym_preproc_undef] = STATE(2066), - [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), + [2069] = { + [sym_preproc_region] = STATE(2069), + [sym_preproc_endregion] = STATE(2069), + [sym_preproc_line] = STATE(2069), + [sym_preproc_pragma] = STATE(2069), + [sym_preproc_nullable] = STATE(2069), + [sym_preproc_error] = STATE(2069), + [sym_preproc_warning] = STATE(2069), + [sym_preproc_define] = STATE(2069), + [sym_preproc_undef] = STATE(2069), + [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_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), + }, + [2070] = { + [sym_preproc_region] = STATE(2070), + [sym_preproc_endregion] = STATE(2070), + [sym_preproc_line] = STATE(2070), + [sym_preproc_pragma] = STATE(2070), + [sym_preproc_nullable] = STATE(2070), + [sym_preproc_error] = STATE(2070), + [sym_preproc_warning] = STATE(2070), + [sym_preproc_define] = STATE(2070), + [sym_preproc_undef] = STATE(2070), + [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), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [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), + }, + [2071] = { + [sym_preproc_region] = STATE(2071), + [sym_preproc_endregion] = STATE(2071), + [sym_preproc_line] = STATE(2071), + [sym_preproc_pragma] = STATE(2071), + [sym_preproc_nullable] = STATE(2071), + [sym_preproc_error] = STATE(2071), + [sym_preproc_warning] = STATE(2071), + [sym_preproc_define] = STATE(2071), + [sym_preproc_undef] = STATE(2071), + [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), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [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), + }, + [2072] = { + [sym_preproc_region] = STATE(2072), + [sym_preproc_endregion] = STATE(2072), + [sym_preproc_line] = STATE(2072), + [sym_preproc_pragma] = STATE(2072), + [sym_preproc_nullable] = STATE(2072), + [sym_preproc_error] = STATE(2072), + [sym_preproc_warning] = STATE(2072), + [sym_preproc_define] = STATE(2072), + [sym_preproc_undef] = STATE(2072), + [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), @@ -384511,117 +385158,117 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_interpolation_raw_start] = ACTIONS(3365), [sym_raw_string_start] = ACTIONS(3365), }, - [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(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), + [2073] = { + [sym_preproc_region] = STATE(2073), + [sym_preproc_endregion] = STATE(2073), + [sym_preproc_line] = STATE(2073), + [sym_preproc_pragma] = STATE(2073), + [sym_preproc_nullable] = STATE(2073), + [sym_preproc_error] = STATE(2073), + [sym_preproc_warning] = STATE(2073), + [sym_preproc_define] = STATE(2073), + [sym_preproc_undef] = STATE(2073), + [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), @@ -384632,122 +385279,122 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_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(3405), + [sym_interpolation_verbatim_start] = ACTIONS(3405), + [sym_interpolation_raw_start] = ACTIONS(3405), + [sym_raw_string_start] = ACTIONS(3405), }, - [2068] = { - [sym_preproc_region] = STATE(2068), - [sym_preproc_endregion] = STATE(2068), - [sym_preproc_line] = STATE(2068), - [sym_preproc_pragma] = STATE(2068), - [sym_preproc_nullable] = STATE(2068), - [sym_preproc_error] = STATE(2068), - [sym_preproc_warning] = STATE(2068), - [sym_preproc_define] = STATE(2068), - [sym_preproc_undef] = STATE(2068), - [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_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), + [2074] = { + [sym_preproc_region] = STATE(2074), + [sym_preproc_endregion] = STATE(2074), + [sym_preproc_line] = STATE(2074), + [sym_preproc_pragma] = STATE(2074), + [sym_preproc_nullable] = STATE(2074), + [sym_preproc_error] = STATE(2074), + [sym_preproc_warning] = STATE(2074), + [sym_preproc_define] = STATE(2074), + [sym_preproc_undef] = STATE(2074), + [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), @@ -384758,248 +385405,248 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_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(3377), + [sym_interpolation_verbatim_start] = ACTIONS(3377), + [sym_interpolation_raw_start] = ACTIONS(3377), + [sym_raw_string_start] = ACTIONS(3377), }, - [2069] = { - [sym_preproc_region] = STATE(2069), - [sym_preproc_endregion] = STATE(2069), - [sym_preproc_line] = STATE(2069), - [sym_preproc_pragma] = STATE(2069), - [sym_preproc_nullable] = STATE(2069), - [sym_preproc_error] = STATE(2069), - [sym_preproc_warning] = STATE(2069), - [sym_preproc_define] = STATE(2069), - [sym_preproc_undef] = STATE(2069), - [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_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), + [2075] = { + [sym_preproc_region] = STATE(2075), + [sym_preproc_endregion] = STATE(2075), + [sym_preproc_line] = STATE(2075), + [sym_preproc_pragma] = STATE(2075), + [sym_preproc_nullable] = STATE(2075), + [sym_preproc_error] = STATE(2075), + [sym_preproc_warning] = STATE(2075), + [sym_preproc_define] = STATE(2075), + [sym_preproc_undef] = STATE(2075), + [ts_builtin_sym_end] = ACTIONS(3452), + [sym__identifier_token] = ACTIONS(3454), + [anon_sym_extern] = ACTIONS(3454), + [anon_sym_alias] = ACTIONS(3454), + [anon_sym_SEMI] = ACTIONS(3452), + [anon_sym_global] = ACTIONS(3454), + [anon_sym_using] = ACTIONS(3454), + [anon_sym_unsafe] = ACTIONS(3454), + [anon_sym_static] = ACTIONS(3454), + [anon_sym_LBRACK] = ACTIONS(3452), + [anon_sym_LPAREN] = ACTIONS(3452), + [anon_sym_return] = ACTIONS(3454), + [anon_sym_namespace] = ACTIONS(3454), + [anon_sym_class] = ACTIONS(3454), + [anon_sym_ref] = ACTIONS(3454), + [anon_sym_struct] = ACTIONS(3454), + [anon_sym_enum] = ACTIONS(3454), + [anon_sym_LBRACE] = ACTIONS(3452), + [anon_sym_interface] = ACTIONS(3454), + [anon_sym_delegate] = ACTIONS(3454), + [anon_sym_record] = ACTIONS(3454), + [anon_sym_abstract] = ACTIONS(3454), + [anon_sym_async] = ACTIONS(3454), + [anon_sym_const] = ACTIONS(3454), + [anon_sym_file] = ACTIONS(3454), + [anon_sym_fixed] = ACTIONS(3454), + [anon_sym_internal] = ACTIONS(3454), + [anon_sym_new] = ACTIONS(3454), + [anon_sym_override] = ACTIONS(3454), + [anon_sym_partial] = ACTIONS(3454), + [anon_sym_private] = ACTIONS(3454), + [anon_sym_protected] = ACTIONS(3454), + [anon_sym_public] = ACTIONS(3454), + [anon_sym_readonly] = ACTIONS(3454), + [anon_sym_required] = ACTIONS(3454), + [anon_sym_sealed] = ACTIONS(3454), + [anon_sym_virtual] = ACTIONS(3454), + [anon_sym_volatile] = ACTIONS(3454), + [anon_sym_where] = ACTIONS(3454), + [anon_sym_notnull] = ACTIONS(3454), + [anon_sym_unmanaged] = ACTIONS(3454), + [anon_sym_checked] = ACTIONS(3454), + [anon_sym_BANG] = ACTIONS(3452), + [anon_sym_TILDE] = ACTIONS(3452), + [anon_sym_PLUS_PLUS] = ACTIONS(3452), + [anon_sym_DASH_DASH] = ACTIONS(3452), + [anon_sym_true] = ACTIONS(3454), + [anon_sym_false] = ACTIONS(3454), + [anon_sym_PLUS] = ACTIONS(3454), + [anon_sym_DASH] = ACTIONS(3454), + [anon_sym_STAR] = ACTIONS(3452), + [anon_sym_CARET] = ACTIONS(3452), + [anon_sym_AMP] = ACTIONS(3452), + [anon_sym_this] = ACTIONS(3454), + [anon_sym_scoped] = ACTIONS(3454), + [anon_sym_base] = ACTIONS(3454), + [anon_sym_var] = ACTIONS(3454), + [sym_predefined_type] = ACTIONS(3454), + [anon_sym_break] = ACTIONS(3454), + [anon_sym_unchecked] = ACTIONS(3454), + [anon_sym_continue] = ACTIONS(3454), + [anon_sym_do] = ACTIONS(3454), + [anon_sym_while] = ACTIONS(3454), + [anon_sym_for] = ACTIONS(3454), + [anon_sym_lock] = ACTIONS(3454), + [anon_sym_yield] = ACTIONS(3454), + [anon_sym_switch] = ACTIONS(3454), + [anon_sym_default] = ACTIONS(3454), + [anon_sym_throw] = ACTIONS(3454), + [anon_sym_try] = ACTIONS(3454), + [anon_sym_when] = ACTIONS(3454), + [anon_sym_await] = ACTIONS(3454), + [anon_sym_foreach] = ACTIONS(3454), + [anon_sym_goto] = ACTIONS(3454), + [anon_sym_if] = ACTIONS(3454), + [anon_sym_DOT_DOT] = ACTIONS(3452), + [anon_sym_from] = ACTIONS(3454), + [anon_sym_into] = ACTIONS(3454), + [anon_sym_join] = ACTIONS(3454), + [anon_sym_on] = ACTIONS(3454), + [anon_sym_equals] = ACTIONS(3454), + [anon_sym_let] = ACTIONS(3454), + [anon_sym_orderby] = ACTIONS(3454), + [anon_sym_ascending] = ACTIONS(3454), + [anon_sym_descending] = ACTIONS(3454), + [anon_sym_group] = ACTIONS(3454), + [anon_sym_by] = ACTIONS(3454), + [anon_sym_select] = ACTIONS(3454), + [anon_sym_stackalloc] = ACTIONS(3454), + [anon_sym_sizeof] = ACTIONS(3454), + [anon_sym_typeof] = ACTIONS(3454), + [anon_sym___makeref] = ACTIONS(3454), + [anon_sym___reftype] = ACTIONS(3454), + [anon_sym___refvalue] = ACTIONS(3454), + [sym_null_literal] = ACTIONS(3454), + [anon_sym_SQUOTE] = ACTIONS(3452), + [sym_integer_literal] = ACTIONS(3454), + [sym_real_literal] = ACTIONS(3452), + [anon_sym_DQUOTE] = ACTIONS(3452), + [sym_verbatim_string_literal] = ACTIONS(3452), + [aux_sym_preproc_if_token1] = ACTIONS(3452), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + [sym_interpolation_regular_start] = ACTIONS(3452), + [sym_interpolation_verbatim_start] = ACTIONS(3452), + [sym_interpolation_raw_start] = ACTIONS(3452), + [sym_raw_string_start] = ACTIONS(3452), }, - [2070] = { - [sym_preproc_region] = STATE(2070), - [sym_preproc_endregion] = STATE(2070), - [sym_preproc_line] = STATE(2070), - [sym_preproc_pragma] = STATE(2070), - [sym_preproc_nullable] = STATE(2070), - [sym_preproc_error] = STATE(2070), - [sym_preproc_warning] = STATE(2070), - [sym_preproc_define] = STATE(2070), - [sym_preproc_undef] = STATE(2070), - [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), + [2076] = { + [sym_preproc_region] = STATE(2076), + [sym_preproc_endregion] = STATE(2076), + [sym_preproc_line] = STATE(2076), + [sym_preproc_pragma] = STATE(2076), + [sym_preproc_nullable] = STATE(2076), + [sym_preproc_error] = STATE(2076), + [sym_preproc_warning] = STATE(2076), + [sym_preproc_define] = STATE(2076), + [sym_preproc_undef] = STATE(2076), + [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_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), @@ -385010,21 +385657,525 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_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(3325), + [sym_interpolation_verbatim_start] = ACTIONS(3325), + [sym_interpolation_raw_start] = ACTIONS(3325), + [sym_raw_string_start] = ACTIONS(3325), }, - [2071] = { - [sym_preproc_region] = STATE(2071), - [sym_preproc_endregion] = STATE(2071), - [sym_preproc_line] = STATE(2071), - [sym_preproc_pragma] = STATE(2071), - [sym_preproc_nullable] = STATE(2071), - [sym_preproc_error] = STATE(2071), - [sym_preproc_warning] = STATE(2071), - [sym_preproc_define] = STATE(2071), - [sym_preproc_undef] = STATE(2071), + [2077] = { + [sym_preproc_region] = STATE(2077), + [sym_preproc_endregion] = STATE(2077), + [sym_preproc_line] = STATE(2077), + [sym_preproc_pragma] = STATE(2077), + [sym_preproc_nullable] = STATE(2077), + [sym_preproc_error] = STATE(2077), + [sym_preproc_warning] = STATE(2077), + [sym_preproc_define] = STATE(2077), + [sym_preproc_undef] = STATE(2077), + [ts_builtin_sym_end] = ACTIONS(3456), + [sym__identifier_token] = ACTIONS(3458), + [anon_sym_extern] = ACTIONS(3458), + [anon_sym_alias] = ACTIONS(3458), + [anon_sym_SEMI] = ACTIONS(3456), + [anon_sym_global] = ACTIONS(3458), + [anon_sym_using] = ACTIONS(3458), + [anon_sym_unsafe] = ACTIONS(3458), + [anon_sym_static] = ACTIONS(3458), + [anon_sym_LBRACK] = ACTIONS(3456), + [anon_sym_LPAREN] = ACTIONS(3456), + [anon_sym_return] = ACTIONS(3458), + [anon_sym_namespace] = ACTIONS(3458), + [anon_sym_class] = ACTIONS(3458), + [anon_sym_ref] = ACTIONS(3458), + [anon_sym_struct] = ACTIONS(3458), + [anon_sym_enum] = ACTIONS(3458), + [anon_sym_LBRACE] = ACTIONS(3456), + [anon_sym_interface] = ACTIONS(3458), + [anon_sym_delegate] = ACTIONS(3458), + [anon_sym_record] = ACTIONS(3458), + [anon_sym_abstract] = ACTIONS(3458), + [anon_sym_async] = ACTIONS(3458), + [anon_sym_const] = ACTIONS(3458), + [anon_sym_file] = ACTIONS(3458), + [anon_sym_fixed] = ACTIONS(3458), + [anon_sym_internal] = ACTIONS(3458), + [anon_sym_new] = ACTIONS(3458), + [anon_sym_override] = ACTIONS(3458), + [anon_sym_partial] = ACTIONS(3458), + [anon_sym_private] = ACTIONS(3458), + [anon_sym_protected] = ACTIONS(3458), + [anon_sym_public] = ACTIONS(3458), + [anon_sym_readonly] = ACTIONS(3458), + [anon_sym_required] = ACTIONS(3458), + [anon_sym_sealed] = ACTIONS(3458), + [anon_sym_virtual] = ACTIONS(3458), + [anon_sym_volatile] = ACTIONS(3458), + [anon_sym_where] = ACTIONS(3458), + [anon_sym_notnull] = ACTIONS(3458), + [anon_sym_unmanaged] = ACTIONS(3458), + [anon_sym_checked] = ACTIONS(3458), + [anon_sym_BANG] = ACTIONS(3456), + [anon_sym_TILDE] = ACTIONS(3456), + [anon_sym_PLUS_PLUS] = ACTIONS(3456), + [anon_sym_DASH_DASH] = ACTIONS(3456), + [anon_sym_true] = ACTIONS(3458), + [anon_sym_false] = ACTIONS(3458), + [anon_sym_PLUS] = ACTIONS(3458), + [anon_sym_DASH] = ACTIONS(3458), + [anon_sym_STAR] = ACTIONS(3456), + [anon_sym_CARET] = ACTIONS(3456), + [anon_sym_AMP] = ACTIONS(3456), + [anon_sym_this] = ACTIONS(3458), + [anon_sym_scoped] = ACTIONS(3458), + [anon_sym_base] = ACTIONS(3458), + [anon_sym_var] = ACTIONS(3458), + [sym_predefined_type] = ACTIONS(3458), + [anon_sym_break] = ACTIONS(3458), + [anon_sym_unchecked] = ACTIONS(3458), + [anon_sym_continue] = ACTIONS(3458), + [anon_sym_do] = ACTIONS(3458), + [anon_sym_while] = ACTIONS(3458), + [anon_sym_for] = ACTIONS(3458), + [anon_sym_lock] = ACTIONS(3458), + [anon_sym_yield] = ACTIONS(3458), + [anon_sym_switch] = ACTIONS(3458), + [anon_sym_default] = ACTIONS(3458), + [anon_sym_throw] = ACTIONS(3458), + [anon_sym_try] = ACTIONS(3458), + [anon_sym_when] = ACTIONS(3458), + [anon_sym_await] = ACTIONS(3458), + [anon_sym_foreach] = ACTIONS(3458), + [anon_sym_goto] = ACTIONS(3458), + [anon_sym_if] = ACTIONS(3458), + [anon_sym_DOT_DOT] = ACTIONS(3456), + [anon_sym_from] = ACTIONS(3458), + [anon_sym_into] = ACTIONS(3458), + [anon_sym_join] = ACTIONS(3458), + [anon_sym_on] = ACTIONS(3458), + [anon_sym_equals] = ACTIONS(3458), + [anon_sym_let] = ACTIONS(3458), + [anon_sym_orderby] = ACTIONS(3458), + [anon_sym_ascending] = ACTIONS(3458), + [anon_sym_descending] = ACTIONS(3458), + [anon_sym_group] = ACTIONS(3458), + [anon_sym_by] = ACTIONS(3458), + [anon_sym_select] = ACTIONS(3458), + [anon_sym_stackalloc] = ACTIONS(3458), + [anon_sym_sizeof] = ACTIONS(3458), + [anon_sym_typeof] = ACTIONS(3458), + [anon_sym___makeref] = ACTIONS(3458), + [anon_sym___reftype] = ACTIONS(3458), + [anon_sym___refvalue] = ACTIONS(3458), + [sym_null_literal] = ACTIONS(3458), + [anon_sym_SQUOTE] = ACTIONS(3456), + [sym_integer_literal] = ACTIONS(3458), + [sym_real_literal] = ACTIONS(3456), + [anon_sym_DQUOTE] = ACTIONS(3456), + [sym_verbatim_string_literal] = ACTIONS(3456), + [aux_sym_preproc_if_token1] = ACTIONS(3456), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + [sym_interpolation_regular_start] = ACTIONS(3456), + [sym_interpolation_verbatim_start] = ACTIONS(3456), + [sym_interpolation_raw_start] = ACTIONS(3456), + [sym_raw_string_start] = ACTIONS(3456), + }, + [2078] = { + [sym_preproc_region] = STATE(2078), + [sym_preproc_endregion] = STATE(2078), + [sym_preproc_line] = STATE(2078), + [sym_preproc_pragma] = STATE(2078), + [sym_preproc_nullable] = STATE(2078), + [sym_preproc_error] = STATE(2078), + [sym_preproc_warning] = STATE(2078), + [sym_preproc_define] = STATE(2078), + [sym_preproc_undef] = STATE(2078), + [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), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [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), + }, + [2079] = { + [sym_catch_clause] = STATE(2083), + [sym_preproc_region] = STATE(2079), + [sym_preproc_endregion] = STATE(2079), + [sym_preproc_line] = STATE(2079), + [sym_preproc_pragma] = STATE(2079), + [sym_preproc_nullable] = STATE(2079), + [sym_preproc_error] = STATE(2079), + [sym_preproc_warning] = STATE(2079), + [sym_preproc_define] = STATE(2079), + [sym_preproc_undef] = STATE(2079), + [aux_sym_try_statement_repeat1] = STATE(2079), + [sym__identifier_token] = ACTIONS(3111), + [anon_sym_extern] = ACTIONS(3111), + [anon_sym_alias] = ACTIONS(3111), + [anon_sym_SEMI] = ACTIONS(3113), + [anon_sym_global] = ACTIONS(3111), + [anon_sym_using] = ACTIONS(3111), + [anon_sym_unsafe] = ACTIONS(3111), + [anon_sym_static] = ACTIONS(3111), + [anon_sym_LBRACK] = ACTIONS(3113), + [anon_sym_LPAREN] = ACTIONS(3113), + [anon_sym_return] = ACTIONS(3111), + [anon_sym_ref] = ACTIONS(3111), + [anon_sym_LBRACE] = ACTIONS(3113), + [anon_sym_RBRACE] = ACTIONS(3113), + [anon_sym_delegate] = ACTIONS(3111), + [anon_sym_abstract] = ACTIONS(3111), + [anon_sym_async] = ACTIONS(3111), + [anon_sym_const] = ACTIONS(3111), + [anon_sym_file] = ACTIONS(3111), + [anon_sym_fixed] = ACTIONS(3111), + [anon_sym_internal] = ACTIONS(3111), + [anon_sym_new] = ACTIONS(3111), + [anon_sym_override] = ACTIONS(3111), + [anon_sym_partial] = ACTIONS(3111), + [anon_sym_private] = ACTIONS(3111), + [anon_sym_protected] = ACTIONS(3111), + [anon_sym_public] = ACTIONS(3111), + [anon_sym_readonly] = ACTIONS(3111), + [anon_sym_required] = ACTIONS(3111), + [anon_sym_sealed] = ACTIONS(3111), + [anon_sym_virtual] = ACTIONS(3111), + [anon_sym_volatile] = ACTIONS(3111), + [anon_sym_where] = ACTIONS(3111), + [anon_sym_notnull] = ACTIONS(3111), + [anon_sym_unmanaged] = ACTIONS(3111), + [anon_sym_checked] = ACTIONS(3111), + [anon_sym_BANG] = ACTIONS(3113), + [anon_sym_TILDE] = ACTIONS(3113), + [anon_sym_PLUS_PLUS] = ACTIONS(3113), + [anon_sym_DASH_DASH] = ACTIONS(3113), + [anon_sym_true] = ACTIONS(3111), + [anon_sym_false] = ACTIONS(3111), + [anon_sym_PLUS] = ACTIONS(3111), + [anon_sym_DASH] = ACTIONS(3111), + [anon_sym_STAR] = ACTIONS(3113), + [anon_sym_CARET] = ACTIONS(3113), + [anon_sym_AMP] = ACTIONS(3113), + [anon_sym_this] = ACTIONS(3111), + [anon_sym_scoped] = ACTIONS(3111), + [anon_sym_base] = ACTIONS(3111), + [anon_sym_var] = ACTIONS(3111), + [sym_predefined_type] = ACTIONS(3111), + [anon_sym_break] = ACTIONS(3111), + [anon_sym_unchecked] = ACTIONS(3111), + [anon_sym_continue] = ACTIONS(3111), + [anon_sym_do] = ACTIONS(3111), + [anon_sym_while] = ACTIONS(3111), + [anon_sym_for] = ACTIONS(3111), + [anon_sym_lock] = ACTIONS(3111), + [anon_sym_yield] = ACTIONS(3111), + [anon_sym_switch] = ACTIONS(3111), + [anon_sym_case] = ACTIONS(3111), + [anon_sym_default] = ACTIONS(3111), + [anon_sym_throw] = ACTIONS(3111), + [anon_sym_try] = ACTIONS(3111), + [anon_sym_catch] = ACTIONS(3460), + [anon_sym_when] = ACTIONS(3111), + [anon_sym_finally] = ACTIONS(3111), + [anon_sym_await] = ACTIONS(3111), + [anon_sym_foreach] = ACTIONS(3111), + [anon_sym_goto] = ACTIONS(3111), + [anon_sym_if] = ACTIONS(3111), + [anon_sym_else] = ACTIONS(3111), + [anon_sym_DOT_DOT] = ACTIONS(3113), + [anon_sym_from] = ACTIONS(3111), + [anon_sym_into] = ACTIONS(3111), + [anon_sym_join] = ACTIONS(3111), + [anon_sym_on] = ACTIONS(3111), + [anon_sym_equals] = ACTIONS(3111), + [anon_sym_let] = ACTIONS(3111), + [anon_sym_orderby] = ACTIONS(3111), + [anon_sym_ascending] = ACTIONS(3111), + [anon_sym_descending] = ACTIONS(3111), + [anon_sym_group] = ACTIONS(3111), + [anon_sym_by] = ACTIONS(3111), + [anon_sym_select] = ACTIONS(3111), + [anon_sym_stackalloc] = ACTIONS(3111), + [anon_sym_sizeof] = ACTIONS(3111), + [anon_sym_typeof] = ACTIONS(3111), + [anon_sym___makeref] = ACTIONS(3111), + [anon_sym___reftype] = ACTIONS(3111), + [anon_sym___refvalue] = ACTIONS(3111), + [sym_null_literal] = ACTIONS(3111), + [anon_sym_SQUOTE] = ACTIONS(3113), + [sym_integer_literal] = ACTIONS(3111), + [sym_real_literal] = ACTIONS(3113), + [anon_sym_DQUOTE] = ACTIONS(3113), + [sym_verbatim_string_literal] = ACTIONS(3113), + [aux_sym_preproc_if_token1] = ACTIONS(3113), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + [sym_interpolation_regular_start] = ACTIONS(3113), + [sym_interpolation_verbatim_start] = ACTIONS(3113), + [sym_interpolation_raw_start] = ACTIONS(3113), + [sym_raw_string_start] = ACTIONS(3113), + }, + [2080] = { + [sym_preproc_region] = STATE(2080), + [sym_preproc_endregion] = STATE(2080), + [sym_preproc_line] = STATE(2080), + [sym_preproc_pragma] = STATE(2080), + [sym_preproc_nullable] = STATE(2080), + [sym_preproc_error] = STATE(2080), + [sym_preproc_warning] = STATE(2080), + [sym_preproc_define] = STATE(2080), + [sym_preproc_undef] = STATE(2080), + [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_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), + }, + [2081] = { + [sym_preproc_region] = STATE(2081), + [sym_preproc_endregion] = STATE(2081), + [sym_preproc_line] = STATE(2081), + [sym_preproc_pragma] = STATE(2081), + [sym_preproc_nullable] = STATE(2081), + [sym_preproc_error] = STATE(2081), + [sym_preproc_warning] = STATE(2081), + [sym_preproc_define] = STATE(2081), + [sym_preproc_undef] = STATE(2081), [ts_builtin_sym_end] = ACTIONS(3357), [sym__identifier_token] = ACTIONS(3355), [anon_sym_extern] = ACTIONS(3355), @@ -385141,243 +386292,239 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_interpolation_raw_start] = ACTIONS(3357), [sym_raw_string_start] = ACTIONS(3357), }, - [2072] = { - [sym_catch_clause] = STATE(2089), - [sym_preproc_region] = STATE(2072), - [sym_preproc_endregion] = STATE(2072), - [sym_preproc_line] = STATE(2072), - [sym_preproc_pragma] = STATE(2072), - [sym_preproc_nullable] = STATE(2072), - [sym_preproc_error] = STATE(2072), - [sym_preproc_warning] = STATE(2072), - [sym_preproc_define] = STATE(2072), - [sym_preproc_undef] = STATE(2072), - [aux_sym_try_statement_repeat1] = STATE(2072), - [sym__identifier_token] = ACTIONS(3109), - [anon_sym_extern] = ACTIONS(3109), - [anon_sym_alias] = ACTIONS(3109), - [anon_sym_SEMI] = ACTIONS(3111), - [anon_sym_global] = ACTIONS(3109), - [anon_sym_using] = ACTIONS(3109), - [anon_sym_unsafe] = ACTIONS(3109), - [anon_sym_static] = ACTIONS(3109), - [anon_sym_LBRACK] = ACTIONS(3111), - [anon_sym_LPAREN] = ACTIONS(3111), - [anon_sym_return] = ACTIONS(3109), - [anon_sym_ref] = ACTIONS(3109), - [anon_sym_LBRACE] = ACTIONS(3111), - [anon_sym_RBRACE] = ACTIONS(3111), - [anon_sym_delegate] = ACTIONS(3109), - [anon_sym_abstract] = ACTIONS(3109), - [anon_sym_async] = ACTIONS(3109), - [anon_sym_const] = ACTIONS(3109), - [anon_sym_file] = ACTIONS(3109), - [anon_sym_fixed] = ACTIONS(3109), - [anon_sym_internal] = ACTIONS(3109), - [anon_sym_new] = ACTIONS(3109), - [anon_sym_override] = ACTIONS(3109), - [anon_sym_partial] = ACTIONS(3109), - [anon_sym_private] = ACTIONS(3109), - [anon_sym_protected] = ACTIONS(3109), - [anon_sym_public] = ACTIONS(3109), - [anon_sym_readonly] = ACTIONS(3109), - [anon_sym_required] = ACTIONS(3109), - [anon_sym_sealed] = ACTIONS(3109), - [anon_sym_virtual] = ACTIONS(3109), - [anon_sym_volatile] = ACTIONS(3109), - [anon_sym_where] = ACTIONS(3109), - [anon_sym_notnull] = ACTIONS(3109), - [anon_sym_unmanaged] = ACTIONS(3109), - [anon_sym_checked] = ACTIONS(3109), - [anon_sym_BANG] = ACTIONS(3111), - [anon_sym_TILDE] = ACTIONS(3111), - [anon_sym_PLUS_PLUS] = ACTIONS(3111), - [anon_sym_DASH_DASH] = ACTIONS(3111), - [anon_sym_true] = ACTIONS(3109), - [anon_sym_false] = ACTIONS(3109), - [anon_sym_PLUS] = ACTIONS(3109), - [anon_sym_DASH] = ACTIONS(3109), - [anon_sym_STAR] = ACTIONS(3111), - [anon_sym_CARET] = ACTIONS(3111), - [anon_sym_AMP] = ACTIONS(3111), - [anon_sym_this] = ACTIONS(3109), - [anon_sym_scoped] = ACTIONS(3109), - [anon_sym_base] = ACTIONS(3109), - [anon_sym_var] = ACTIONS(3109), - [sym_predefined_type] = ACTIONS(3109), - [anon_sym_break] = ACTIONS(3109), - [anon_sym_unchecked] = ACTIONS(3109), - [anon_sym_continue] = ACTIONS(3109), - [anon_sym_do] = ACTIONS(3109), - [anon_sym_while] = ACTIONS(3109), - [anon_sym_for] = ACTIONS(3109), - [anon_sym_lock] = ACTIONS(3109), - [anon_sym_yield] = ACTIONS(3109), - [anon_sym_switch] = ACTIONS(3109), - [anon_sym_case] = ACTIONS(3109), - [anon_sym_default] = ACTIONS(3109), - [anon_sym_throw] = ACTIONS(3109), - [anon_sym_try] = ACTIONS(3109), - [anon_sym_catch] = ACTIONS(3472), - [anon_sym_when] = ACTIONS(3109), - [anon_sym_finally] = ACTIONS(3109), - [anon_sym_await] = ACTIONS(3109), - [anon_sym_foreach] = ACTIONS(3109), - [anon_sym_goto] = ACTIONS(3109), - [anon_sym_if] = ACTIONS(3109), - [anon_sym_else] = ACTIONS(3109), - [anon_sym_DOT_DOT] = ACTIONS(3111), - [anon_sym_from] = ACTIONS(3109), - [anon_sym_into] = ACTIONS(3109), - [anon_sym_join] = ACTIONS(3109), - [anon_sym_on] = ACTIONS(3109), - [anon_sym_equals] = ACTIONS(3109), - [anon_sym_let] = ACTIONS(3109), - [anon_sym_orderby] = ACTIONS(3109), - [anon_sym_ascending] = ACTIONS(3109), - [anon_sym_descending] = ACTIONS(3109), - [anon_sym_group] = ACTIONS(3109), - [anon_sym_by] = ACTIONS(3109), - [anon_sym_select] = ACTIONS(3109), - [anon_sym_stackalloc] = ACTIONS(3109), - [anon_sym_sizeof] = ACTIONS(3109), - [anon_sym_typeof] = ACTIONS(3109), - [anon_sym___makeref] = ACTIONS(3109), - [anon_sym___reftype] = ACTIONS(3109), - [anon_sym___refvalue] = ACTIONS(3109), - [sym_null_literal] = ACTIONS(3109), - [anon_sym_SQUOTE] = ACTIONS(3111), - [sym_integer_literal] = ACTIONS(3109), - [sym_real_literal] = ACTIONS(3111), - [anon_sym_DQUOTE] = ACTIONS(3111), - [sym_verbatim_string_literal] = ACTIONS(3111), - [aux_sym_preproc_if_token1] = ACTIONS(3111), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(3111), - [sym_interpolation_verbatim_start] = ACTIONS(3111), - [sym_interpolation_raw_start] = ACTIONS(3111), - [sym_raw_string_start] = ACTIONS(3111), + [2082] = { + [sym_preproc_region] = STATE(2082), + [sym_preproc_endregion] = STATE(2082), + [sym_preproc_line] = STATE(2082), + [sym_preproc_pragma] = STATE(2082), + [sym_preproc_nullable] = STATE(2082), + [sym_preproc_error] = STATE(2082), + [sym_preproc_warning] = STATE(2082), + [sym_preproc_define] = STATE(2082), + [sym_preproc_undef] = STATE(2082), + [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(3133), + [anon_sym_when] = ACTIONS(3133), + [anon_sym_finally] = 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), }, - [2073] = { - [sym_preproc_region] = STATE(2073), - [sym_preproc_endregion] = STATE(2073), - [sym_preproc_line] = STATE(2073), - [sym_preproc_pragma] = STATE(2073), - [sym_preproc_nullable] = STATE(2073), - [sym_preproc_error] = STATE(2073), - [sym_preproc_warning] = STATE(2073), - [sym_preproc_define] = STATE(2073), - [sym_preproc_undef] = STATE(2073), - [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), + [2083] = { + [sym_preproc_region] = STATE(2083), + [sym_preproc_endregion] = STATE(2083), + [sym_preproc_line] = STATE(2083), + [sym_preproc_pragma] = STATE(2083), + [sym_preproc_nullable] = STATE(2083), + [sym_preproc_error] = STATE(2083), + [sym_preproc_warning] = STATE(2083), + [sym_preproc_define] = STATE(2083), + [sym_preproc_undef] = STATE(2083), + [sym__identifier_token] = ACTIONS(3126), + [anon_sym_extern] = ACTIONS(3126), + [anon_sym_alias] = ACTIONS(3126), + [anon_sym_SEMI] = ACTIONS(3128), + [anon_sym_global] = ACTIONS(3126), + [anon_sym_using] = ACTIONS(3126), + [anon_sym_unsafe] = ACTIONS(3126), + [anon_sym_static] = ACTIONS(3126), + [anon_sym_LBRACK] = ACTIONS(3128), + [anon_sym_LPAREN] = ACTIONS(3128), + [anon_sym_return] = ACTIONS(3126), + [anon_sym_ref] = ACTIONS(3126), + [anon_sym_LBRACE] = ACTIONS(3128), + [anon_sym_RBRACE] = ACTIONS(3128), + [anon_sym_delegate] = ACTIONS(3126), + [anon_sym_abstract] = ACTIONS(3126), + [anon_sym_async] = ACTIONS(3126), + [anon_sym_const] = ACTIONS(3126), + [anon_sym_file] = ACTIONS(3126), + [anon_sym_fixed] = ACTIONS(3126), + [anon_sym_internal] = ACTIONS(3126), + [anon_sym_new] = ACTIONS(3126), + [anon_sym_override] = ACTIONS(3126), + [anon_sym_partial] = ACTIONS(3126), + [anon_sym_private] = ACTIONS(3126), + [anon_sym_protected] = ACTIONS(3126), + [anon_sym_public] = ACTIONS(3126), + [anon_sym_readonly] = ACTIONS(3126), + [anon_sym_required] = ACTIONS(3126), + [anon_sym_sealed] = ACTIONS(3126), + [anon_sym_virtual] = ACTIONS(3126), + [anon_sym_volatile] = ACTIONS(3126), + [anon_sym_where] = ACTIONS(3126), + [anon_sym_notnull] = ACTIONS(3126), + [anon_sym_unmanaged] = ACTIONS(3126), + [anon_sym_checked] = ACTIONS(3126), + [anon_sym_BANG] = ACTIONS(3128), + [anon_sym_TILDE] = ACTIONS(3128), + [anon_sym_PLUS_PLUS] = ACTIONS(3128), + [anon_sym_DASH_DASH] = ACTIONS(3128), + [anon_sym_true] = ACTIONS(3126), + [anon_sym_false] = ACTIONS(3126), + [anon_sym_PLUS] = ACTIONS(3126), + [anon_sym_DASH] = ACTIONS(3126), + [anon_sym_STAR] = ACTIONS(3128), + [anon_sym_CARET] = ACTIONS(3128), + [anon_sym_AMP] = ACTIONS(3128), + [anon_sym_this] = ACTIONS(3126), + [anon_sym_scoped] = ACTIONS(3126), + [anon_sym_base] = ACTIONS(3126), + [anon_sym_var] = ACTIONS(3126), + [sym_predefined_type] = ACTIONS(3126), + [anon_sym_break] = ACTIONS(3126), + [anon_sym_unchecked] = ACTIONS(3126), + [anon_sym_continue] = ACTIONS(3126), + [anon_sym_do] = ACTIONS(3126), + [anon_sym_while] = ACTIONS(3126), + [anon_sym_for] = ACTIONS(3126), + [anon_sym_lock] = ACTIONS(3126), + [anon_sym_yield] = ACTIONS(3126), + [anon_sym_switch] = ACTIONS(3126), + [anon_sym_case] = ACTIONS(3126), + [anon_sym_default] = ACTIONS(3126), + [anon_sym_throw] = ACTIONS(3126), + [anon_sym_try] = ACTIONS(3126), + [anon_sym_catch] = ACTIONS(3126), + [anon_sym_when] = ACTIONS(3126), + [anon_sym_finally] = ACTIONS(3126), + [anon_sym_await] = ACTIONS(3126), + [anon_sym_foreach] = ACTIONS(3126), + [anon_sym_goto] = ACTIONS(3126), + [anon_sym_if] = ACTIONS(3126), + [anon_sym_else] = ACTIONS(3126), + [anon_sym_DOT_DOT] = ACTIONS(3128), + [anon_sym_from] = ACTIONS(3126), + [anon_sym_into] = ACTIONS(3126), + [anon_sym_join] = ACTIONS(3126), + [anon_sym_on] = ACTIONS(3126), + [anon_sym_equals] = ACTIONS(3126), + [anon_sym_let] = ACTIONS(3126), + [anon_sym_orderby] = ACTIONS(3126), + [anon_sym_ascending] = ACTIONS(3126), + [anon_sym_descending] = ACTIONS(3126), + [anon_sym_group] = ACTIONS(3126), + [anon_sym_by] = ACTIONS(3126), + [anon_sym_select] = ACTIONS(3126), + [anon_sym_stackalloc] = ACTIONS(3126), + [anon_sym_sizeof] = ACTIONS(3126), + [anon_sym_typeof] = ACTIONS(3126), + [anon_sym___makeref] = ACTIONS(3126), + [anon_sym___reftype] = ACTIONS(3126), + [anon_sym___refvalue] = ACTIONS(3126), + [sym_null_literal] = ACTIONS(3126), + [anon_sym_SQUOTE] = ACTIONS(3128), + [sym_integer_literal] = ACTIONS(3126), + [sym_real_literal] = ACTIONS(3128), + [anon_sym_DQUOTE] = ACTIONS(3128), + [sym_verbatim_string_literal] = ACTIONS(3128), + [aux_sym_preproc_if_token1] = ACTIONS(3128), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -385388,248 +386535,495 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_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(3128), + [sym_interpolation_verbatim_start] = ACTIONS(3128), + [sym_interpolation_raw_start] = ACTIONS(3128), + [sym_raw_string_start] = ACTIONS(3128), }, - [2074] = { - [sym_preproc_region] = STATE(2074), - [sym_preproc_endregion] = STATE(2074), - [sym_preproc_line] = STATE(2074), - [sym_preproc_pragma] = STATE(2074), - [sym_preproc_nullable] = STATE(2074), - [sym_preproc_error] = STATE(2074), - [sym_preproc_warning] = STATE(2074), - [sym_preproc_define] = STATE(2074), - [sym_preproc_undef] = STATE(2074), - [ts_builtin_sym_end] = ACTIONS(3425), - [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_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(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), + [2084] = { + [sym_preproc_region] = STATE(2084), + [sym_preproc_endregion] = STATE(2084), + [sym_preproc_line] = STATE(2084), + [sym_preproc_pragma] = STATE(2084), + [sym_preproc_nullable] = STATE(2084), + [sym_preproc_error] = STATE(2084), + [sym_preproc_warning] = STATE(2084), + [sym_preproc_define] = STATE(2084), + [sym_preproc_undef] = STATE(2084), + [sym__identifier_token] = ACTIONS(2949), + [anon_sym_extern] = ACTIONS(2949), + [anon_sym_alias] = ACTIONS(2949), + [anon_sym_SEMI] = ACTIONS(2951), + [anon_sym_global] = ACTIONS(2949), + [anon_sym_using] = ACTIONS(2949), + [anon_sym_unsafe] = ACTIONS(2949), + [anon_sym_static] = ACTIONS(2949), + [anon_sym_LBRACK] = ACTIONS(2951), + [anon_sym_LPAREN] = ACTIONS(2951), + [anon_sym_return] = ACTIONS(2949), + [anon_sym_ref] = ACTIONS(2949), + [anon_sym_LBRACE] = ACTIONS(2951), + [anon_sym_RBRACE] = ACTIONS(2951), + [anon_sym_delegate] = ACTIONS(2949), + [anon_sym_abstract] = ACTIONS(2949), + [anon_sym_async] = ACTIONS(2949), + [anon_sym_const] = ACTIONS(2949), + [anon_sym_file] = ACTIONS(2949), + [anon_sym_fixed] = ACTIONS(2949), + [anon_sym_internal] = ACTIONS(2949), + [anon_sym_new] = ACTIONS(2949), + [anon_sym_override] = ACTIONS(2949), + [anon_sym_partial] = ACTIONS(2949), + [anon_sym_private] = ACTIONS(2949), + [anon_sym_protected] = ACTIONS(2949), + [anon_sym_public] = ACTIONS(2949), + [anon_sym_readonly] = ACTIONS(2949), + [anon_sym_required] = ACTIONS(2949), + [anon_sym_sealed] = ACTIONS(2949), + [anon_sym_virtual] = ACTIONS(2949), + [anon_sym_volatile] = ACTIONS(2949), + [anon_sym_where] = ACTIONS(2949), + [anon_sym_notnull] = ACTIONS(2949), + [anon_sym_unmanaged] = ACTIONS(2949), + [anon_sym_checked] = ACTIONS(2949), + [anon_sym_BANG] = ACTIONS(2951), + [anon_sym_TILDE] = ACTIONS(2951), + [anon_sym_PLUS_PLUS] = ACTIONS(2951), + [anon_sym_DASH_DASH] = ACTIONS(2951), + [anon_sym_true] = ACTIONS(2949), + [anon_sym_false] = ACTIONS(2949), + [anon_sym_PLUS] = ACTIONS(2949), + [anon_sym_DASH] = ACTIONS(2949), + [anon_sym_STAR] = ACTIONS(2951), + [anon_sym_CARET] = ACTIONS(2951), + [anon_sym_AMP] = ACTIONS(2951), + [anon_sym_this] = ACTIONS(2949), + [anon_sym_scoped] = ACTIONS(2949), + [anon_sym_base] = ACTIONS(2949), + [anon_sym_var] = ACTIONS(2949), + [sym_predefined_type] = ACTIONS(2949), + [anon_sym_break] = ACTIONS(2949), + [anon_sym_unchecked] = ACTIONS(2949), + [anon_sym_continue] = ACTIONS(2949), + [anon_sym_do] = ACTIONS(2949), + [anon_sym_while] = ACTIONS(2949), + [anon_sym_for] = ACTIONS(2949), + [anon_sym_lock] = ACTIONS(2949), + [anon_sym_yield] = ACTIONS(2949), + [anon_sym_switch] = ACTIONS(2949), + [anon_sym_case] = ACTIONS(2949), + [anon_sym_default] = ACTIONS(2949), + [anon_sym_throw] = ACTIONS(2949), + [anon_sym_try] = ACTIONS(2949), + [anon_sym_catch] = ACTIONS(2949), + [anon_sym_when] = ACTIONS(2949), + [anon_sym_finally] = ACTIONS(2949), + [anon_sym_await] = ACTIONS(2949), + [anon_sym_foreach] = ACTIONS(2949), + [anon_sym_goto] = ACTIONS(2949), + [anon_sym_if] = ACTIONS(2949), + [anon_sym_else] = ACTIONS(2949), + [anon_sym_DOT_DOT] = ACTIONS(2951), + [anon_sym_from] = ACTIONS(2949), + [anon_sym_into] = ACTIONS(2949), + [anon_sym_join] = ACTIONS(2949), + [anon_sym_on] = ACTIONS(2949), + [anon_sym_equals] = ACTIONS(2949), + [anon_sym_let] = ACTIONS(2949), + [anon_sym_orderby] = ACTIONS(2949), + [anon_sym_ascending] = ACTIONS(2949), + [anon_sym_descending] = ACTIONS(2949), + [anon_sym_group] = ACTIONS(2949), + [anon_sym_by] = ACTIONS(2949), + [anon_sym_select] = ACTIONS(2949), + [anon_sym_stackalloc] = ACTIONS(2949), + [anon_sym_sizeof] = ACTIONS(2949), + [anon_sym_typeof] = ACTIONS(2949), + [anon_sym___makeref] = ACTIONS(2949), + [anon_sym___reftype] = ACTIONS(2949), + [anon_sym___refvalue] = ACTIONS(2949), + [sym_null_literal] = ACTIONS(2949), + [anon_sym_SQUOTE] = ACTIONS(2951), + [sym_integer_literal] = ACTIONS(2949), + [sym_real_literal] = ACTIONS(2951), + [anon_sym_DQUOTE] = ACTIONS(2951), + [sym_verbatim_string_literal] = ACTIONS(2951), + [aux_sym_preproc_if_token1] = ACTIONS(2951), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + [sym_interpolation_regular_start] = ACTIONS(2951), + [sym_interpolation_verbatim_start] = ACTIONS(2951), + [sym_interpolation_raw_start] = ACTIONS(2951), + [sym_raw_string_start] = ACTIONS(2951), }, - [2075] = { - [sym_preproc_region] = STATE(2075), - [sym_preproc_endregion] = STATE(2075), - [sym_preproc_line] = STATE(2075), - [sym_preproc_pragma] = STATE(2075), - [sym_preproc_nullable] = STATE(2075), - [sym_preproc_error] = STATE(2075), - [sym_preproc_warning] = STATE(2075), - [sym_preproc_define] = STATE(2075), - [sym_preproc_undef] = STATE(2075), - [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), + [2085] = { + [sym_preproc_region] = STATE(2085), + [sym_preproc_endregion] = STATE(2085), + [sym_preproc_line] = STATE(2085), + [sym_preproc_pragma] = STATE(2085), + [sym_preproc_nullable] = STATE(2085), + [sym_preproc_error] = STATE(2085), + [sym_preproc_warning] = STATE(2085), + [sym_preproc_define] = STATE(2085), + [sym_preproc_undef] = STATE(2085), + [sym__identifier_token] = ACTIONS(3122), + [anon_sym_extern] = ACTIONS(3122), + [anon_sym_alias] = ACTIONS(3122), + [anon_sym_SEMI] = ACTIONS(3124), + [anon_sym_global] = ACTIONS(3122), + [anon_sym_using] = ACTIONS(3122), + [anon_sym_unsafe] = ACTIONS(3122), + [anon_sym_static] = ACTIONS(3122), + [anon_sym_LBRACK] = ACTIONS(3124), + [anon_sym_LPAREN] = ACTIONS(3124), + [anon_sym_return] = ACTIONS(3122), + [anon_sym_ref] = ACTIONS(3122), + [anon_sym_LBRACE] = ACTIONS(3124), + [anon_sym_RBRACE] = ACTIONS(3124), + [anon_sym_delegate] = ACTIONS(3122), + [anon_sym_abstract] = ACTIONS(3122), + [anon_sym_async] = ACTIONS(3122), + [anon_sym_const] = ACTIONS(3122), + [anon_sym_file] = ACTIONS(3122), + [anon_sym_fixed] = ACTIONS(3122), + [anon_sym_internal] = ACTIONS(3122), + [anon_sym_new] = ACTIONS(3122), + [anon_sym_override] = ACTIONS(3122), + [anon_sym_partial] = ACTIONS(3122), + [anon_sym_private] = ACTIONS(3122), + [anon_sym_protected] = ACTIONS(3122), + [anon_sym_public] = ACTIONS(3122), + [anon_sym_readonly] = ACTIONS(3122), + [anon_sym_required] = ACTIONS(3122), + [anon_sym_sealed] = ACTIONS(3122), + [anon_sym_virtual] = ACTIONS(3122), + [anon_sym_volatile] = ACTIONS(3122), + [anon_sym_where] = ACTIONS(3122), + [anon_sym_notnull] = ACTIONS(3122), + [anon_sym_unmanaged] = ACTIONS(3122), + [anon_sym_checked] = ACTIONS(3122), + [anon_sym_BANG] = ACTIONS(3124), + [anon_sym_TILDE] = ACTIONS(3124), + [anon_sym_PLUS_PLUS] = ACTIONS(3124), + [anon_sym_DASH_DASH] = ACTIONS(3124), + [anon_sym_true] = ACTIONS(3122), + [anon_sym_false] = ACTIONS(3122), + [anon_sym_PLUS] = ACTIONS(3122), + [anon_sym_DASH] = ACTIONS(3122), + [anon_sym_STAR] = ACTIONS(3124), + [anon_sym_CARET] = ACTIONS(3124), + [anon_sym_AMP] = ACTIONS(3124), + [anon_sym_this] = ACTIONS(3122), + [anon_sym_scoped] = ACTIONS(3122), + [anon_sym_base] = ACTIONS(3122), + [anon_sym_var] = ACTIONS(3122), + [sym_predefined_type] = ACTIONS(3122), + [anon_sym_break] = ACTIONS(3122), + [anon_sym_unchecked] = ACTIONS(3122), + [anon_sym_continue] = ACTIONS(3122), + [anon_sym_do] = ACTIONS(3122), + [anon_sym_while] = ACTIONS(3122), + [anon_sym_for] = ACTIONS(3122), + [anon_sym_lock] = ACTIONS(3122), + [anon_sym_yield] = ACTIONS(3122), + [anon_sym_switch] = ACTIONS(3122), + [anon_sym_case] = ACTIONS(3122), + [anon_sym_default] = ACTIONS(3122), + [anon_sym_throw] = ACTIONS(3122), + [anon_sym_try] = ACTIONS(3122), + [anon_sym_catch] = ACTIONS(3122), + [anon_sym_when] = ACTIONS(3122), + [anon_sym_finally] = ACTIONS(3122), + [anon_sym_await] = ACTIONS(3122), + [anon_sym_foreach] = ACTIONS(3122), + [anon_sym_goto] = ACTIONS(3122), + [anon_sym_if] = ACTIONS(3122), + [anon_sym_else] = ACTIONS(3122), + [anon_sym_DOT_DOT] = ACTIONS(3124), + [anon_sym_from] = ACTIONS(3122), + [anon_sym_into] = ACTIONS(3122), + [anon_sym_join] = ACTIONS(3122), + [anon_sym_on] = ACTIONS(3122), + [anon_sym_equals] = ACTIONS(3122), + [anon_sym_let] = ACTIONS(3122), + [anon_sym_orderby] = ACTIONS(3122), + [anon_sym_ascending] = ACTIONS(3122), + [anon_sym_descending] = ACTIONS(3122), + [anon_sym_group] = ACTIONS(3122), + [anon_sym_by] = ACTIONS(3122), + [anon_sym_select] = ACTIONS(3122), + [anon_sym_stackalloc] = ACTIONS(3122), + [anon_sym_sizeof] = ACTIONS(3122), + [anon_sym_typeof] = ACTIONS(3122), + [anon_sym___makeref] = ACTIONS(3122), + [anon_sym___reftype] = ACTIONS(3122), + [anon_sym___refvalue] = ACTIONS(3122), + [sym_null_literal] = ACTIONS(3122), + [anon_sym_SQUOTE] = ACTIONS(3124), + [sym_integer_literal] = ACTIONS(3122), + [sym_real_literal] = ACTIONS(3124), + [anon_sym_DQUOTE] = ACTIONS(3124), + [sym_verbatim_string_literal] = ACTIONS(3124), + [aux_sym_preproc_if_token1] = ACTIONS(3124), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + [sym_interpolation_regular_start] = ACTIONS(3124), + [sym_interpolation_verbatim_start] = ACTIONS(3124), + [sym_interpolation_raw_start] = ACTIONS(3124), + [sym_raw_string_start] = ACTIONS(3124), + }, + [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), + [sym__identifier_token] = ACTIONS(3137), + [anon_sym_extern] = ACTIONS(3137), + [anon_sym_alias] = ACTIONS(3137), + [anon_sym_SEMI] = ACTIONS(3139), + [anon_sym_global] = ACTIONS(3137), + [anon_sym_using] = ACTIONS(3137), + [anon_sym_unsafe] = ACTIONS(3137), + [anon_sym_static] = ACTIONS(3137), + [anon_sym_LBRACK] = ACTIONS(3139), + [anon_sym_LPAREN] = ACTIONS(3139), + [anon_sym_return] = ACTIONS(3137), + [anon_sym_ref] = ACTIONS(3137), + [anon_sym_LBRACE] = ACTIONS(3139), + [anon_sym_RBRACE] = ACTIONS(3139), + [anon_sym_delegate] = ACTIONS(3137), + [anon_sym_abstract] = ACTIONS(3137), + [anon_sym_async] = ACTIONS(3137), + [anon_sym_const] = ACTIONS(3137), + [anon_sym_file] = ACTIONS(3137), + [anon_sym_fixed] = ACTIONS(3137), + [anon_sym_internal] = ACTIONS(3137), + [anon_sym_new] = ACTIONS(3137), + [anon_sym_override] = ACTIONS(3137), + [anon_sym_partial] = ACTIONS(3137), + [anon_sym_private] = ACTIONS(3137), + [anon_sym_protected] = ACTIONS(3137), + [anon_sym_public] = ACTIONS(3137), + [anon_sym_readonly] = ACTIONS(3137), + [anon_sym_required] = ACTIONS(3137), + [anon_sym_sealed] = ACTIONS(3137), + [anon_sym_virtual] = ACTIONS(3137), + [anon_sym_volatile] = ACTIONS(3137), + [anon_sym_where] = ACTIONS(3137), + [anon_sym_notnull] = ACTIONS(3137), + [anon_sym_unmanaged] = ACTIONS(3137), + [anon_sym_checked] = ACTIONS(3137), + [anon_sym_BANG] = ACTIONS(3139), + [anon_sym_TILDE] = ACTIONS(3139), + [anon_sym_PLUS_PLUS] = ACTIONS(3139), + [anon_sym_DASH_DASH] = ACTIONS(3139), + [anon_sym_true] = ACTIONS(3137), + [anon_sym_false] = ACTIONS(3137), + [anon_sym_PLUS] = ACTIONS(3137), + [anon_sym_DASH] = ACTIONS(3137), + [anon_sym_STAR] = ACTIONS(3139), + [anon_sym_CARET] = ACTIONS(3139), + [anon_sym_AMP] = ACTIONS(3139), + [anon_sym_this] = ACTIONS(3137), + [anon_sym_scoped] = ACTIONS(3137), + [anon_sym_base] = ACTIONS(3137), + [anon_sym_var] = ACTIONS(3137), + [sym_predefined_type] = ACTIONS(3137), + [anon_sym_break] = ACTIONS(3137), + [anon_sym_unchecked] = ACTIONS(3137), + [anon_sym_continue] = ACTIONS(3137), + [anon_sym_do] = ACTIONS(3137), + [anon_sym_while] = ACTIONS(3137), + [anon_sym_for] = ACTIONS(3137), + [anon_sym_lock] = ACTIONS(3137), + [anon_sym_yield] = ACTIONS(3137), + [anon_sym_switch] = ACTIONS(3137), + [anon_sym_case] = ACTIONS(3137), + [anon_sym_default] = ACTIONS(3137), + [anon_sym_throw] = ACTIONS(3137), + [anon_sym_try] = ACTIONS(3137), + [anon_sym_catch] = ACTIONS(3137), + [anon_sym_when] = ACTIONS(3137), + [anon_sym_finally] = ACTIONS(3137), + [anon_sym_await] = ACTIONS(3137), + [anon_sym_foreach] = ACTIONS(3137), + [anon_sym_goto] = ACTIONS(3137), + [anon_sym_if] = ACTIONS(3137), + [anon_sym_else] = ACTIONS(3137), + [anon_sym_DOT_DOT] = ACTIONS(3139), + [anon_sym_from] = ACTIONS(3137), + [anon_sym_into] = ACTIONS(3137), + [anon_sym_join] = ACTIONS(3137), + [anon_sym_on] = ACTIONS(3137), + [anon_sym_equals] = ACTIONS(3137), + [anon_sym_let] = ACTIONS(3137), + [anon_sym_orderby] = ACTIONS(3137), + [anon_sym_ascending] = ACTIONS(3137), + [anon_sym_descending] = ACTIONS(3137), + [anon_sym_group] = ACTIONS(3137), + [anon_sym_by] = ACTIONS(3137), + [anon_sym_select] = ACTIONS(3137), + [anon_sym_stackalloc] = ACTIONS(3137), + [anon_sym_sizeof] = ACTIONS(3137), + [anon_sym_typeof] = ACTIONS(3137), + [anon_sym___makeref] = ACTIONS(3137), + [anon_sym___reftype] = ACTIONS(3137), + [anon_sym___refvalue] = ACTIONS(3137), + [sym_null_literal] = ACTIONS(3137), + [anon_sym_SQUOTE] = ACTIONS(3139), + [sym_integer_literal] = ACTIONS(3137), + [sym_real_literal] = ACTIONS(3139), + [anon_sym_DQUOTE] = ACTIONS(3139), + [sym_verbatim_string_literal] = ACTIONS(3139), + [aux_sym_preproc_if_token1] = ACTIONS(3139), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + [sym_interpolation_regular_start] = ACTIONS(3139), + [sym_interpolation_verbatim_start] = ACTIONS(3139), + [sym_interpolation_raw_start] = ACTIONS(3139), + [sym_raw_string_start] = ACTIONS(3139), + }, + [2087] = { + [sym_preproc_region] = STATE(2087), + [sym_preproc_endregion] = STATE(2087), + [sym_preproc_line] = STATE(2087), + [sym_preproc_pragma] = STATE(2087), + [sym_preproc_nullable] = STATE(2087), + [sym_preproc_error] = STATE(2087), + [sym_preproc_warning] = STATE(2087), + [sym_preproc_define] = STATE(2087), + [sym_preproc_undef] = STATE(2087), + [sym__identifier_token] = ACTIONS(3463), + [anon_sym_extern] = ACTIONS(3466), + [anon_sym_alias] = ACTIONS(3463), + [anon_sym_global] = ACTIONS(3463), + [anon_sym_unsafe] = ACTIONS(3466), + [anon_sym_EQ] = ACTIONS(3431), + [anon_sym_static] = ACTIONS(3466), + [anon_sym_LBRACK] = ACTIONS(3429), + [anon_sym_COLON] = ACTIONS(3431), + [anon_sym_LPAREN] = ACTIONS(3468), + [anon_sym_class] = ACTIONS(3466), + [anon_sym_ref] = ACTIONS(3466), + [anon_sym_struct] = ACTIONS(3466), + [anon_sym_enum] = ACTIONS(3466), + [anon_sym_interface] = ACTIONS(3466), + [anon_sym_delegate] = ACTIONS(3466), + [anon_sym_record] = ACTIONS(3466), + [anon_sym_abstract] = ACTIONS(3466), + [anon_sym_async] = ACTIONS(3466), + [anon_sym_const] = ACTIONS(3466), + [anon_sym_file] = ACTIONS(3463), + [anon_sym_fixed] = ACTIONS(3466), + [anon_sym_internal] = ACTIONS(3466), + [anon_sym_new] = ACTIONS(3466), + [anon_sym_override] = ACTIONS(3466), + [anon_sym_partial] = ACTIONS(3466), + [anon_sym_private] = ACTIONS(3466), + [anon_sym_protected] = ACTIONS(3466), + [anon_sym_public] = ACTIONS(3466), + [anon_sym_readonly] = ACTIONS(3466), + [anon_sym_required] = ACTIONS(3466), + [anon_sym_sealed] = ACTIONS(3466), + [anon_sym_virtual] = ACTIONS(3466), + [anon_sym_volatile] = ACTIONS(3466), + [anon_sym_LT] = ACTIONS(3431), + [anon_sym_GT] = ACTIONS(3431), + [anon_sym_where] = ACTIONS(3463), + [anon_sym_QMARK] = ACTIONS(3431), + [anon_sym_notnull] = ACTIONS(3463), + [anon_sym_unmanaged] = ACTIONS(3463), + [anon_sym_BANG] = ACTIONS(3431), + [anon_sym_PLUS_PLUS] = ACTIONS(3429), + [anon_sym_DASH_DASH] = ACTIONS(3429), + [anon_sym_PLUS] = ACTIONS(3431), + [anon_sym_DASH] = ACTIONS(3431), + [anon_sym_STAR] = ACTIONS(3431), + [anon_sym_SLASH] = ACTIONS(3431), + [anon_sym_PERCENT] = ACTIONS(3431), + [anon_sym_CARET] = ACTIONS(3431), + [anon_sym_PIPE] = ACTIONS(3431), + [anon_sym_AMP] = ACTIONS(3431), + [anon_sym_LT_LT] = ACTIONS(3431), + [anon_sym_GT_GT] = ACTIONS(3431), + [anon_sym_GT_GT_GT] = ACTIONS(3431), + [anon_sym_EQ_EQ] = ACTIONS(3429), + [anon_sym_BANG_EQ] = ACTIONS(3429), + [anon_sym_GT_EQ] = ACTIONS(3429), + [anon_sym_LT_EQ] = ACTIONS(3429), + [anon_sym_DOT] = ACTIONS(3431), + [anon_sym_scoped] = ACTIONS(3463), + [anon_sym_EQ_GT] = ACTIONS(3429), + [anon_sym_COLON_COLON] = ACTIONS(3429), + [anon_sym_var] = ACTIONS(3463), + [sym_predefined_type] = ACTIONS(3466), + [anon_sym_yield] = ACTIONS(3463), + [anon_sym_switch] = ACTIONS(3431), + [anon_sym_when] = ACTIONS(3463), + [anon_sym_DOT_DOT] = ACTIONS(3429), + [anon_sym_PLUS_EQ] = ACTIONS(3429), + [anon_sym_DASH_EQ] = ACTIONS(3429), + [anon_sym_STAR_EQ] = ACTIONS(3429), + [anon_sym_SLASH_EQ] = ACTIONS(3429), + [anon_sym_PERCENT_EQ] = ACTIONS(3429), + [anon_sym_AMP_EQ] = ACTIONS(3429), + [anon_sym_CARET_EQ] = ACTIONS(3429), + [anon_sym_PIPE_EQ] = ACTIONS(3429), + [anon_sym_LT_LT_EQ] = ACTIONS(3429), + [anon_sym_GT_GT_EQ] = ACTIONS(3429), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3429), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3429), + [anon_sym_AMP_AMP] = ACTIONS(3429), + [anon_sym_PIPE_PIPE] = ACTIONS(3429), + [anon_sym_QMARK_QMARK] = ACTIONS(3431), + [anon_sym_from] = ACTIONS(3463), + [anon_sym_into] = ACTIONS(3463), + [anon_sym_join] = ACTIONS(3463), + [anon_sym_on] = ACTIONS(3463), + [anon_sym_equals] = ACTIONS(3463), + [anon_sym_let] = ACTIONS(3463), + [anon_sym_orderby] = ACTIONS(3463), + [anon_sym_ascending] = ACTIONS(3463), + [anon_sym_descending] = ACTIONS(3463), + [anon_sym_group] = ACTIONS(3463), + [anon_sym_by] = ACTIONS(3463), + [anon_sym_select] = ACTIONS(3463), + [anon_sym_as] = ACTIONS(3431), + [anon_sym_is] = ACTIONS(3431), + [anon_sym_DASH_GT] = ACTIONS(3429), + [anon_sym_with] = ACTIONS(3431), + [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), @@ -385640,122 +387034,724 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_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), }, - [2076] = { - [sym_preproc_region] = STATE(2076), - [sym_preproc_endregion] = STATE(2076), - [sym_preproc_line] = STATE(2076), - [sym_preproc_pragma] = STATE(2076), - [sym_preproc_nullable] = STATE(2076), - [sym_preproc_error] = STATE(2076), - [sym_preproc_warning] = STATE(2076), - [sym_preproc_define] = STATE(2076), - [sym_preproc_undef] = STATE(2076), - [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), + [2088] = { + [sym_preproc_region] = STATE(2088), + [sym_preproc_endregion] = STATE(2088), + [sym_preproc_line] = STATE(2088), + [sym_preproc_pragma] = STATE(2088), + [sym_preproc_nullable] = STATE(2088), + [sym_preproc_error] = STATE(2088), + [sym_preproc_warning] = STATE(2088), + [sym_preproc_define] = STATE(2088), + [sym_preproc_undef] = STATE(2088), + [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), + }, + [2089] = { + [sym_preproc_region] = STATE(2089), + [sym_preproc_endregion] = STATE(2089), + [sym_preproc_line] = STATE(2089), + [sym_preproc_pragma] = STATE(2089), + [sym_preproc_nullable] = STATE(2089), + [sym_preproc_error] = STATE(2089), + [sym_preproc_warning] = STATE(2089), + [sym_preproc_define] = STATE(2089), + [sym_preproc_undef] = STATE(2089), + [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(3273), + [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), + }, + [2090] = { + [sym_preproc_region] = STATE(2090), + [sym_preproc_endregion] = STATE(2090), + [sym_preproc_line] = STATE(2090), + [sym_preproc_pragma] = STATE(2090), + [sym_preproc_nullable] = STATE(2090), + [sym_preproc_error] = STATE(2090), + [sym_preproc_warning] = STATE(2090), + [sym_preproc_define] = STATE(2090), + [sym_preproc_undef] = STATE(2090), + [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), + }, + [2091] = { + [sym_preproc_region] = STATE(2091), + [sym_preproc_endregion] = STATE(2091), + [sym_preproc_line] = STATE(2091), + [sym_preproc_pragma] = STATE(2091), + [sym_preproc_nullable] = STATE(2091), + [sym_preproc_error] = STATE(2091), + [sym_preproc_warning] = STATE(2091), + [sym_preproc_define] = STATE(2091), + [sym_preproc_undef] = STATE(2091), + [sym__identifier_token] = ACTIONS(3285), + [anon_sym_extern] = ACTIONS(3285), + [anon_sym_alias] = ACTIONS(3285), + [anon_sym_SEMI] = ACTIONS(3287), + [anon_sym_global] = ACTIONS(3285), + [anon_sym_using] = ACTIONS(3285), + [anon_sym_unsafe] = ACTIONS(3285), + [anon_sym_static] = ACTIONS(3285), + [anon_sym_LBRACK] = ACTIONS(3287), + [anon_sym_LPAREN] = ACTIONS(3287), + [anon_sym_return] = ACTIONS(3285), + [anon_sym_ref] = ACTIONS(3285), + [anon_sym_LBRACE] = ACTIONS(3287), + [anon_sym_RBRACE] = ACTIONS(3287), + [anon_sym_delegate] = ACTIONS(3285), + [anon_sym_abstract] = ACTIONS(3285), + [anon_sym_async] = ACTIONS(3285), + [anon_sym_const] = ACTIONS(3285), + [anon_sym_file] = ACTIONS(3285), + [anon_sym_fixed] = ACTIONS(3285), + [anon_sym_internal] = ACTIONS(3285), + [anon_sym_new] = ACTIONS(3285), + [anon_sym_override] = ACTIONS(3285), + [anon_sym_partial] = ACTIONS(3285), + [anon_sym_private] = ACTIONS(3285), + [anon_sym_protected] = ACTIONS(3285), + [anon_sym_public] = ACTIONS(3285), + [anon_sym_readonly] = ACTIONS(3285), + [anon_sym_required] = ACTIONS(3285), + [anon_sym_sealed] = ACTIONS(3285), + [anon_sym_virtual] = ACTIONS(3285), + [anon_sym_volatile] = ACTIONS(3285), + [anon_sym_where] = ACTIONS(3285), + [anon_sym_notnull] = ACTIONS(3285), + [anon_sym_unmanaged] = ACTIONS(3285), + [anon_sym_checked] = ACTIONS(3285), + [anon_sym_BANG] = ACTIONS(3287), + [anon_sym_TILDE] = ACTIONS(3287), + [anon_sym_PLUS_PLUS] = ACTIONS(3287), + [anon_sym_DASH_DASH] = ACTIONS(3287), + [anon_sym_true] = ACTIONS(3285), + [anon_sym_false] = ACTIONS(3285), + [anon_sym_PLUS] = ACTIONS(3285), + [anon_sym_DASH] = ACTIONS(3285), + [anon_sym_STAR] = ACTIONS(3287), + [anon_sym_CARET] = ACTIONS(3287), + [anon_sym_AMP] = ACTIONS(3287), + [anon_sym_this] = ACTIONS(3285), + [anon_sym_scoped] = ACTIONS(3285), + [anon_sym_base] = ACTIONS(3285), + [anon_sym_var] = ACTIONS(3285), + [sym_predefined_type] = ACTIONS(3285), + [anon_sym_break] = ACTIONS(3285), + [anon_sym_unchecked] = ACTIONS(3285), + [anon_sym_continue] = ACTIONS(3285), + [anon_sym_do] = ACTIONS(3285), + [anon_sym_while] = ACTIONS(3285), + [anon_sym_for] = ACTIONS(3285), + [anon_sym_lock] = ACTIONS(3285), + [anon_sym_yield] = ACTIONS(3285), + [anon_sym_switch] = ACTIONS(3285), + [anon_sym_case] = ACTIONS(3285), + [anon_sym_default] = ACTIONS(3285), + [anon_sym_throw] = ACTIONS(3285), + [anon_sym_try] = ACTIONS(3285), + [anon_sym_when] = ACTIONS(3285), + [anon_sym_await] = ACTIONS(3285), + [anon_sym_foreach] = ACTIONS(3285), + [anon_sym_goto] = ACTIONS(3285), + [anon_sym_if] = ACTIONS(3285), + [anon_sym_else] = ACTIONS(3285), + [anon_sym_DOT_DOT] = ACTIONS(3287), + [anon_sym_from] = ACTIONS(3285), + [anon_sym_into] = ACTIONS(3285), + [anon_sym_join] = ACTIONS(3285), + [anon_sym_on] = ACTIONS(3285), + [anon_sym_equals] = ACTIONS(3285), + [anon_sym_let] = ACTIONS(3285), + [anon_sym_orderby] = ACTIONS(3285), + [anon_sym_ascending] = ACTIONS(3285), + [anon_sym_descending] = ACTIONS(3285), + [anon_sym_group] = ACTIONS(3285), + [anon_sym_by] = ACTIONS(3285), + [anon_sym_select] = ACTIONS(3285), + [anon_sym_stackalloc] = ACTIONS(3285), + [anon_sym_sizeof] = ACTIONS(3285), + [anon_sym_typeof] = ACTIONS(3285), + [anon_sym___makeref] = ACTIONS(3285), + [anon_sym___reftype] = ACTIONS(3285), + [anon_sym___refvalue] = ACTIONS(3285), + [sym_null_literal] = ACTIONS(3285), + [anon_sym_SQUOTE] = ACTIONS(3287), + [sym_integer_literal] = ACTIONS(3285), + [sym_real_literal] = ACTIONS(3287), + [anon_sym_DQUOTE] = ACTIONS(3287), + [sym_verbatim_string_literal] = ACTIONS(3287), + [aux_sym_preproc_if_token1] = ACTIONS(3287), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + [sym_interpolation_regular_start] = ACTIONS(3287), + [sym_interpolation_verbatim_start] = ACTIONS(3287), + [sym_interpolation_raw_start] = ACTIONS(3287), + [sym_raw_string_start] = ACTIONS(3287), + }, + [2092] = { + [sym_preproc_region] = STATE(2092), + [sym_preproc_endregion] = STATE(2092), + [sym_preproc_line] = STATE(2092), + [sym_preproc_pragma] = STATE(2092), + [sym_preproc_nullable] = STATE(2092), + [sym_preproc_error] = STATE(2092), + [sym_preproc_warning] = STATE(2092), + [sym_preproc_define] = STATE(2092), + [sym_preproc_undef] = STATE(2092), + [sym__identifier_token] = ACTIONS(3293), + [anon_sym_extern] = ACTIONS(3293), + [anon_sym_alias] = ACTIONS(3293), + [anon_sym_SEMI] = ACTIONS(3295), + [anon_sym_global] = ACTIONS(3293), + [anon_sym_using] = ACTIONS(3293), + [anon_sym_unsafe] = ACTIONS(3293), + [anon_sym_static] = ACTIONS(3293), + [anon_sym_LBRACK] = ACTIONS(3295), + [anon_sym_LPAREN] = ACTIONS(3295), + [anon_sym_return] = ACTIONS(3293), + [anon_sym_ref] = ACTIONS(3293), + [anon_sym_LBRACE] = ACTIONS(3295), + [anon_sym_RBRACE] = ACTIONS(3295), + [anon_sym_delegate] = ACTIONS(3293), + [anon_sym_abstract] = ACTIONS(3293), + [anon_sym_async] = ACTIONS(3293), + [anon_sym_const] = ACTIONS(3293), + [anon_sym_file] = ACTIONS(3293), + [anon_sym_fixed] = ACTIONS(3293), + [anon_sym_internal] = ACTIONS(3293), + [anon_sym_new] = ACTIONS(3293), + [anon_sym_override] = ACTIONS(3293), + [anon_sym_partial] = ACTIONS(3293), + [anon_sym_private] = ACTIONS(3293), + [anon_sym_protected] = ACTIONS(3293), + [anon_sym_public] = ACTIONS(3293), + [anon_sym_readonly] = ACTIONS(3293), + [anon_sym_required] = ACTIONS(3293), + [anon_sym_sealed] = ACTIONS(3293), + [anon_sym_virtual] = ACTIONS(3293), + [anon_sym_volatile] = ACTIONS(3293), + [anon_sym_where] = ACTIONS(3293), + [anon_sym_notnull] = ACTIONS(3293), + [anon_sym_unmanaged] = ACTIONS(3293), + [anon_sym_checked] = ACTIONS(3293), + [anon_sym_BANG] = ACTIONS(3295), + [anon_sym_TILDE] = ACTIONS(3295), + [anon_sym_PLUS_PLUS] = ACTIONS(3295), + [anon_sym_DASH_DASH] = ACTIONS(3295), + [anon_sym_true] = ACTIONS(3293), + [anon_sym_false] = ACTIONS(3293), + [anon_sym_PLUS] = ACTIONS(3293), + [anon_sym_DASH] = ACTIONS(3293), + [anon_sym_STAR] = ACTIONS(3295), + [anon_sym_CARET] = ACTIONS(3295), + [anon_sym_AMP] = ACTIONS(3295), + [anon_sym_this] = ACTIONS(3293), + [anon_sym_scoped] = ACTIONS(3293), + [anon_sym_base] = ACTIONS(3293), + [anon_sym_var] = ACTIONS(3293), + [sym_predefined_type] = ACTIONS(3293), + [anon_sym_break] = ACTIONS(3293), + [anon_sym_unchecked] = ACTIONS(3293), + [anon_sym_continue] = ACTIONS(3293), + [anon_sym_do] = ACTIONS(3293), + [anon_sym_while] = ACTIONS(3293), + [anon_sym_for] = ACTIONS(3293), + [anon_sym_lock] = ACTIONS(3293), + [anon_sym_yield] = ACTIONS(3293), + [anon_sym_switch] = ACTIONS(3293), + [anon_sym_case] = ACTIONS(3293), + [anon_sym_default] = ACTIONS(3293), + [anon_sym_throw] = ACTIONS(3293), + [anon_sym_try] = ACTIONS(3293), + [anon_sym_when] = ACTIONS(3293), + [anon_sym_await] = ACTIONS(3293), + [anon_sym_foreach] = ACTIONS(3293), + [anon_sym_goto] = ACTIONS(3293), + [anon_sym_if] = ACTIONS(3293), + [anon_sym_else] = ACTIONS(3293), + [anon_sym_DOT_DOT] = ACTIONS(3295), + [anon_sym_from] = ACTIONS(3293), + [anon_sym_into] = ACTIONS(3293), + [anon_sym_join] = ACTIONS(3293), + [anon_sym_on] = ACTIONS(3293), + [anon_sym_equals] = ACTIONS(3293), + [anon_sym_let] = ACTIONS(3293), + [anon_sym_orderby] = ACTIONS(3293), + [anon_sym_ascending] = ACTIONS(3293), + [anon_sym_descending] = ACTIONS(3293), + [anon_sym_group] = ACTIONS(3293), + [anon_sym_by] = ACTIONS(3293), + [anon_sym_select] = ACTIONS(3293), + [anon_sym_stackalloc] = ACTIONS(3293), + [anon_sym_sizeof] = ACTIONS(3293), + [anon_sym_typeof] = ACTIONS(3293), + [anon_sym___makeref] = ACTIONS(3293), + [anon_sym___reftype] = ACTIONS(3293), + [anon_sym___refvalue] = ACTIONS(3293), + [sym_null_literal] = ACTIONS(3293), + [anon_sym_SQUOTE] = ACTIONS(3295), + [sym_integer_literal] = ACTIONS(3293), + [sym_real_literal] = ACTIONS(3295), + [anon_sym_DQUOTE] = ACTIONS(3295), + [sym_verbatim_string_literal] = ACTIONS(3295), + [aux_sym_preproc_if_token1] = ACTIONS(3295), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + [sym_interpolation_regular_start] = ACTIONS(3295), + [sym_interpolation_verbatim_start] = ACTIONS(3295), + [sym_interpolation_raw_start] = ACTIONS(3295), + [sym_raw_string_start] = ACTIONS(3295), + }, + [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), + [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), @@ -385766,122 +387762,240 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_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(3207), + [sym_interpolation_verbatim_start] = ACTIONS(3207), + [sym_interpolation_raw_start] = ACTIONS(3207), + [sym_raw_string_start] = ACTIONS(3207), }, - [2077] = { - [sym_preproc_region] = STATE(2077), - [sym_preproc_endregion] = STATE(2077), - [sym_preproc_line] = STATE(2077), - [sym_preproc_pragma] = STATE(2077), - [sym_preproc_nullable] = STATE(2077), - [sym_preproc_error] = STATE(2077), - [sym_preproc_warning] = STATE(2077), - [sym_preproc_define] = STATE(2077), - [sym_preproc_undef] = STATE(2077), - [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), + [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), + [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), + }, + [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), + [sym__identifier_token] = ACTIONS(3141), + [anon_sym_extern] = ACTIONS(3141), + [anon_sym_alias] = ACTIONS(3141), + [anon_sym_SEMI] = ACTIONS(3143), + [anon_sym_global] = ACTIONS(3141), + [anon_sym_using] = ACTIONS(3141), + [anon_sym_unsafe] = ACTIONS(3141), + [anon_sym_static] = ACTIONS(3141), + [anon_sym_LBRACK] = ACTIONS(3143), + [anon_sym_LPAREN] = ACTIONS(3143), + [anon_sym_return] = ACTIONS(3141), + [anon_sym_ref] = ACTIONS(3141), + [anon_sym_LBRACE] = ACTIONS(3143), + [anon_sym_RBRACE] = ACTIONS(3143), + [anon_sym_delegate] = ACTIONS(3141), + [anon_sym_abstract] = ACTIONS(3141), + [anon_sym_async] = ACTIONS(3141), + [anon_sym_const] = ACTIONS(3141), + [anon_sym_file] = ACTIONS(3141), + [anon_sym_fixed] = ACTIONS(3141), + [anon_sym_internal] = ACTIONS(3141), + [anon_sym_new] = ACTIONS(3141), + [anon_sym_override] = ACTIONS(3141), + [anon_sym_partial] = ACTIONS(3141), + [anon_sym_private] = ACTIONS(3141), + [anon_sym_protected] = ACTIONS(3141), + [anon_sym_public] = ACTIONS(3141), + [anon_sym_readonly] = ACTIONS(3141), + [anon_sym_required] = ACTIONS(3141), + [anon_sym_sealed] = ACTIONS(3141), + [anon_sym_virtual] = ACTIONS(3141), + [anon_sym_volatile] = ACTIONS(3141), + [anon_sym_where] = ACTIONS(3141), + [anon_sym_notnull] = ACTIONS(3141), + [anon_sym_unmanaged] = ACTIONS(3141), + [anon_sym_checked] = ACTIONS(3141), + [anon_sym_BANG] = ACTIONS(3143), + [anon_sym_TILDE] = ACTIONS(3143), + [anon_sym_PLUS_PLUS] = ACTIONS(3143), + [anon_sym_DASH_DASH] = ACTIONS(3143), + [anon_sym_true] = ACTIONS(3141), + [anon_sym_false] = ACTIONS(3141), + [anon_sym_PLUS] = ACTIONS(3141), + [anon_sym_DASH] = ACTIONS(3141), + [anon_sym_STAR] = ACTIONS(3143), + [anon_sym_CARET] = ACTIONS(3143), + [anon_sym_AMP] = ACTIONS(3143), + [anon_sym_this] = ACTIONS(3141), + [anon_sym_scoped] = ACTIONS(3141), + [anon_sym_base] = ACTIONS(3141), + [anon_sym_var] = ACTIONS(3141), + [sym_predefined_type] = ACTIONS(3141), + [anon_sym_break] = ACTIONS(3141), + [anon_sym_unchecked] = ACTIONS(3141), + [anon_sym_continue] = ACTIONS(3141), + [anon_sym_do] = ACTIONS(3141), + [anon_sym_while] = ACTIONS(3141), + [anon_sym_for] = ACTIONS(3141), + [anon_sym_lock] = ACTIONS(3141), + [anon_sym_yield] = ACTIONS(3141), + [anon_sym_switch] = ACTIONS(3141), + [anon_sym_case] = ACTIONS(3141), + [anon_sym_default] = ACTIONS(3141), + [anon_sym_throw] = ACTIONS(3141), + [anon_sym_try] = ACTIONS(3141), + [anon_sym_when] = ACTIONS(3141), + [anon_sym_await] = ACTIONS(3141), + [anon_sym_foreach] = ACTIONS(3141), + [anon_sym_goto] = ACTIONS(3141), + [anon_sym_if] = ACTIONS(3141), + [anon_sym_else] = ACTIONS(3141), + [anon_sym_DOT_DOT] = ACTIONS(3143), + [anon_sym_from] = ACTIONS(3141), + [anon_sym_into] = ACTIONS(3141), + [anon_sym_join] = ACTIONS(3141), + [anon_sym_on] = ACTIONS(3141), + [anon_sym_equals] = ACTIONS(3141), + [anon_sym_let] = ACTIONS(3141), + [anon_sym_orderby] = ACTIONS(3141), + [anon_sym_ascending] = ACTIONS(3141), + [anon_sym_descending] = ACTIONS(3141), + [anon_sym_group] = ACTIONS(3141), + [anon_sym_by] = ACTIONS(3141), + [anon_sym_select] = ACTIONS(3141), + [anon_sym_stackalloc] = ACTIONS(3141), + [anon_sym_sizeof] = ACTIONS(3141), + [anon_sym_typeof] = ACTIONS(3141), + [anon_sym___makeref] = ACTIONS(3141), + [anon_sym___reftype] = ACTIONS(3141), + [anon_sym___refvalue] = ACTIONS(3141), + [sym_null_literal] = ACTIONS(3141), + [anon_sym_SQUOTE] = ACTIONS(3143), + [sym_integer_literal] = ACTIONS(3141), + [sym_real_literal] = ACTIONS(3143), + [anon_sym_DQUOTE] = ACTIONS(3143), + [sym_verbatim_string_literal] = ACTIONS(3143), + [aux_sym_preproc_if_token1] = ACTIONS(3143), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -385892,122 +388006,484 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_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(3143), + [sym_interpolation_verbatim_start] = ACTIONS(3143), + [sym_interpolation_raw_start] = ACTIONS(3143), + [sym_raw_string_start] = ACTIONS(3143), }, - [2078] = { - [sym_preproc_region] = STATE(2078), - [sym_preproc_endregion] = STATE(2078), - [sym_preproc_line] = STATE(2078), - [sym_preproc_pragma] = STATE(2078), - [sym_preproc_nullable] = STATE(2078), - [sym_preproc_error] = STATE(2078), - [sym_preproc_warning] = STATE(2078), - [sym_preproc_define] = STATE(2078), - [sym_preproc_undef] = STATE(2078), - [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), + [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(3281), + [anon_sym_extern] = ACTIONS(3281), + [anon_sym_alias] = ACTIONS(3281), + [anon_sym_SEMI] = ACTIONS(3283), + [anon_sym_global] = ACTIONS(3281), + [anon_sym_using] = ACTIONS(3281), + [anon_sym_unsafe] = ACTIONS(3281), + [anon_sym_static] = ACTIONS(3281), + [anon_sym_LBRACK] = ACTIONS(3283), + [anon_sym_LPAREN] = ACTIONS(3283), + [anon_sym_return] = ACTIONS(3281), + [anon_sym_ref] = ACTIONS(3281), + [anon_sym_LBRACE] = ACTIONS(3283), + [anon_sym_RBRACE] = ACTIONS(3283), + [anon_sym_delegate] = ACTIONS(3281), + [anon_sym_abstract] = ACTIONS(3281), + [anon_sym_async] = ACTIONS(3281), + [anon_sym_const] = ACTIONS(3281), + [anon_sym_file] = ACTIONS(3281), + [anon_sym_fixed] = ACTIONS(3281), + [anon_sym_internal] = ACTIONS(3281), + [anon_sym_new] = ACTIONS(3281), + [anon_sym_override] = ACTIONS(3281), + [anon_sym_partial] = ACTIONS(3281), + [anon_sym_private] = ACTIONS(3281), + [anon_sym_protected] = ACTIONS(3281), + [anon_sym_public] = ACTIONS(3281), + [anon_sym_readonly] = ACTIONS(3281), + [anon_sym_required] = ACTIONS(3281), + [anon_sym_sealed] = ACTIONS(3281), + [anon_sym_virtual] = ACTIONS(3281), + [anon_sym_volatile] = ACTIONS(3281), + [anon_sym_where] = ACTIONS(3281), + [anon_sym_notnull] = ACTIONS(3281), + [anon_sym_unmanaged] = ACTIONS(3281), + [anon_sym_checked] = ACTIONS(3281), + [anon_sym_BANG] = ACTIONS(3283), + [anon_sym_TILDE] = ACTIONS(3283), + [anon_sym_PLUS_PLUS] = ACTIONS(3283), + [anon_sym_DASH_DASH] = ACTIONS(3283), + [anon_sym_true] = ACTIONS(3281), + [anon_sym_false] = ACTIONS(3281), + [anon_sym_PLUS] = ACTIONS(3281), + [anon_sym_DASH] = ACTIONS(3281), + [anon_sym_STAR] = ACTIONS(3283), + [anon_sym_CARET] = ACTIONS(3283), + [anon_sym_AMP] = ACTIONS(3283), + [anon_sym_this] = ACTIONS(3281), + [anon_sym_scoped] = ACTIONS(3281), + [anon_sym_base] = ACTIONS(3281), + [anon_sym_var] = ACTIONS(3281), + [sym_predefined_type] = ACTIONS(3281), + [anon_sym_break] = ACTIONS(3281), + [anon_sym_unchecked] = ACTIONS(3281), + [anon_sym_continue] = ACTIONS(3281), + [anon_sym_do] = ACTIONS(3281), + [anon_sym_while] = ACTIONS(3281), + [anon_sym_for] = ACTIONS(3281), + [anon_sym_lock] = ACTIONS(3281), + [anon_sym_yield] = ACTIONS(3281), + [anon_sym_switch] = ACTIONS(3281), + [anon_sym_case] = ACTIONS(3281), + [anon_sym_default] = ACTIONS(3281), + [anon_sym_throw] = ACTIONS(3281), + [anon_sym_try] = ACTIONS(3281), + [anon_sym_when] = ACTIONS(3281), + [anon_sym_await] = ACTIONS(3281), + [anon_sym_foreach] = ACTIONS(3281), + [anon_sym_goto] = ACTIONS(3281), + [anon_sym_if] = ACTIONS(3281), + [anon_sym_else] = ACTIONS(3281), + [anon_sym_DOT_DOT] = ACTIONS(3283), + [anon_sym_from] = ACTIONS(3281), + [anon_sym_into] = ACTIONS(3281), + [anon_sym_join] = ACTIONS(3281), + [anon_sym_on] = ACTIONS(3281), + [anon_sym_equals] = ACTIONS(3281), + [anon_sym_let] = ACTIONS(3281), + [anon_sym_orderby] = ACTIONS(3281), + [anon_sym_ascending] = ACTIONS(3281), + [anon_sym_descending] = ACTIONS(3281), + [anon_sym_group] = ACTIONS(3281), + [anon_sym_by] = ACTIONS(3281), + [anon_sym_select] = ACTIONS(3281), + [anon_sym_stackalloc] = ACTIONS(3281), + [anon_sym_sizeof] = ACTIONS(3281), + [anon_sym_typeof] = ACTIONS(3281), + [anon_sym___makeref] = ACTIONS(3281), + [anon_sym___reftype] = ACTIONS(3281), + [anon_sym___refvalue] = ACTIONS(3281), + [sym_null_literal] = ACTIONS(3281), + [anon_sym_SQUOTE] = ACTIONS(3283), + [sym_integer_literal] = ACTIONS(3281), + [sym_real_literal] = ACTIONS(3283), + [anon_sym_DQUOTE] = ACTIONS(3283), + [sym_verbatim_string_literal] = ACTIONS(3283), + [aux_sym_preproc_if_token1] = ACTIONS(3283), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + [sym_interpolation_regular_start] = ACTIONS(3283), + [sym_interpolation_verbatim_start] = ACTIONS(3283), + [sym_interpolation_raw_start] = ACTIONS(3283), + [sym_raw_string_start] = ACTIONS(3283), + }, + [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(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), + }, + [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(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), + }, + [2099] = { + [sym_preproc_region] = STATE(2099), + [sym_preproc_endregion] = STATE(2099), + [sym_preproc_line] = STATE(2099), + [sym_preproc_pragma] = STATE(2099), + [sym_preproc_nullable] = STATE(2099), + [sym_preproc_error] = STATE(2099), + [sym_preproc_warning] = STATE(2099), + [sym_preproc_define] = STATE(2099), + [sym_preproc_undef] = STATE(2099), + [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_ref] = ACTIONS(3193), + [anon_sym_LBRACE] = ACTIONS(3195), + [anon_sym_RBRACE] = ACTIONS(3195), + [anon_sym_delegate] = 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_case] = 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_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -386018,122 +388494,972 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_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(3195), + [sym_interpolation_verbatim_start] = ACTIONS(3195), + [sym_interpolation_raw_start] = ACTIONS(3195), + [sym_raw_string_start] = ACTIONS(3195), }, - [2079] = { - [sym_preproc_region] = STATE(2079), - [sym_preproc_endregion] = STATE(2079), - [sym_preproc_line] = STATE(2079), - [sym_preproc_pragma] = STATE(2079), - [sym_preproc_nullable] = STATE(2079), - [sym_preproc_error] = STATE(2079), - [sym_preproc_warning] = STATE(2079), - [sym_preproc_define] = STATE(2079), - [sym_preproc_undef] = STATE(2079), - [ts_builtin_sym_end] = ACTIONS(3475), - [sym__identifier_token] = ACTIONS(3477), - [anon_sym_extern] = ACTIONS(3477), - [anon_sym_alias] = ACTIONS(3477), - [anon_sym_SEMI] = ACTIONS(3475), - [anon_sym_global] = ACTIONS(3477), - [anon_sym_using] = ACTIONS(3477), - [anon_sym_unsafe] = ACTIONS(3477), - [anon_sym_static] = ACTIONS(3477), - [anon_sym_LBRACK] = ACTIONS(3475), - [anon_sym_LPAREN] = ACTIONS(3475), - [anon_sym_return] = ACTIONS(3477), - [anon_sym_namespace] = ACTIONS(3477), - [anon_sym_class] = ACTIONS(3477), - [anon_sym_ref] = ACTIONS(3477), - [anon_sym_struct] = ACTIONS(3477), - [anon_sym_enum] = ACTIONS(3477), - [anon_sym_LBRACE] = ACTIONS(3475), - [anon_sym_interface] = ACTIONS(3477), - [anon_sym_delegate] = ACTIONS(3477), - [anon_sym_record] = ACTIONS(3477), - [anon_sym_abstract] = ACTIONS(3477), - [anon_sym_async] = ACTIONS(3477), - [anon_sym_const] = ACTIONS(3477), - [anon_sym_file] = ACTIONS(3477), - [anon_sym_fixed] = ACTIONS(3477), - [anon_sym_internal] = ACTIONS(3477), - [anon_sym_new] = ACTIONS(3477), - [anon_sym_override] = ACTIONS(3477), - [anon_sym_partial] = ACTIONS(3477), - [anon_sym_private] = ACTIONS(3477), - [anon_sym_protected] = ACTIONS(3477), - [anon_sym_public] = ACTIONS(3477), - [anon_sym_readonly] = ACTIONS(3477), - [anon_sym_required] = ACTIONS(3477), - [anon_sym_sealed] = ACTIONS(3477), - [anon_sym_virtual] = ACTIONS(3477), - [anon_sym_volatile] = ACTIONS(3477), - [anon_sym_where] = ACTIONS(3477), - [anon_sym_notnull] = ACTIONS(3477), - [anon_sym_unmanaged] = ACTIONS(3477), - [anon_sym_checked] = ACTIONS(3477), - [anon_sym_BANG] = ACTIONS(3475), - [anon_sym_TILDE] = ACTIONS(3475), - [anon_sym_PLUS_PLUS] = ACTIONS(3475), - [anon_sym_DASH_DASH] = ACTIONS(3475), - [anon_sym_true] = ACTIONS(3477), - [anon_sym_false] = ACTIONS(3477), - [anon_sym_PLUS] = ACTIONS(3477), - [anon_sym_DASH] = ACTIONS(3477), - [anon_sym_STAR] = ACTIONS(3475), - [anon_sym_CARET] = ACTIONS(3475), - [anon_sym_AMP] = ACTIONS(3475), - [anon_sym_this] = ACTIONS(3477), - [anon_sym_scoped] = ACTIONS(3477), - [anon_sym_base] = ACTIONS(3477), - [anon_sym_var] = ACTIONS(3477), - [sym_predefined_type] = ACTIONS(3477), - [anon_sym_break] = ACTIONS(3477), - [anon_sym_unchecked] = ACTIONS(3477), - [anon_sym_continue] = ACTIONS(3477), - [anon_sym_do] = ACTIONS(3477), - [anon_sym_while] = ACTIONS(3477), - [anon_sym_for] = ACTIONS(3477), - [anon_sym_lock] = ACTIONS(3477), - [anon_sym_yield] = ACTIONS(3477), - [anon_sym_switch] = ACTIONS(3477), - [anon_sym_default] = ACTIONS(3477), - [anon_sym_throw] = ACTIONS(3477), - [anon_sym_try] = ACTIONS(3477), - [anon_sym_when] = ACTIONS(3477), - [anon_sym_await] = ACTIONS(3477), - [anon_sym_foreach] = ACTIONS(3477), - [anon_sym_goto] = ACTIONS(3477), - [anon_sym_if] = ACTIONS(3477), - [anon_sym_DOT_DOT] = ACTIONS(3475), - [anon_sym_from] = ACTIONS(3477), - [anon_sym_into] = ACTIONS(3477), - [anon_sym_join] = ACTIONS(3477), - [anon_sym_on] = ACTIONS(3477), - [anon_sym_equals] = ACTIONS(3477), - [anon_sym_let] = ACTIONS(3477), - [anon_sym_orderby] = ACTIONS(3477), - [anon_sym_ascending] = ACTIONS(3477), - [anon_sym_descending] = ACTIONS(3477), - [anon_sym_group] = ACTIONS(3477), - [anon_sym_by] = ACTIONS(3477), - [anon_sym_select] = ACTIONS(3477), - [anon_sym_stackalloc] = ACTIONS(3477), - [anon_sym_sizeof] = ACTIONS(3477), - [anon_sym_typeof] = ACTIONS(3477), - [anon_sym___makeref] = ACTIONS(3477), - [anon_sym___reftype] = ACTIONS(3477), - [anon_sym___refvalue] = ACTIONS(3477), - [sym_null_literal] = ACTIONS(3477), - [anon_sym_SQUOTE] = ACTIONS(3475), - [sym_integer_literal] = ACTIONS(3477), - [sym_real_literal] = ACTIONS(3475), - [anon_sym_DQUOTE] = ACTIONS(3475), - [sym_verbatim_string_literal] = ACTIONS(3475), - [aux_sym_preproc_if_token1] = ACTIONS(3475), + [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(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), + }, + [2101] = { + [sym_preproc_region] = STATE(2101), + [sym_preproc_endregion] = STATE(2101), + [sym_preproc_line] = STATE(2101), + [sym_preproc_pragma] = STATE(2101), + [sym_preproc_nullable] = STATE(2101), + [sym_preproc_error] = STATE(2101), + [sym_preproc_warning] = STATE(2101), + [sym_preproc_define] = STATE(2101), + [sym_preproc_undef] = STATE(2101), + [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), + }, + [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(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), + }, + [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(3277), + [anon_sym_extern] = ACTIONS(3277), + [anon_sym_alias] = ACTIONS(3277), + [anon_sym_SEMI] = ACTIONS(3279), + [anon_sym_global] = ACTIONS(3277), + [anon_sym_using] = ACTIONS(3277), + [anon_sym_unsafe] = ACTIONS(3277), + [anon_sym_static] = ACTIONS(3277), + [anon_sym_LBRACK] = ACTIONS(3279), + [anon_sym_LPAREN] = ACTIONS(3279), + [anon_sym_return] = ACTIONS(3277), + [anon_sym_ref] = ACTIONS(3277), + [anon_sym_LBRACE] = ACTIONS(3279), + [anon_sym_RBRACE] = ACTIONS(3279), + [anon_sym_delegate] = ACTIONS(3277), + [anon_sym_abstract] = ACTIONS(3277), + [anon_sym_async] = ACTIONS(3277), + [anon_sym_const] = ACTIONS(3277), + [anon_sym_file] = ACTIONS(3277), + [anon_sym_fixed] = ACTIONS(3277), + [anon_sym_internal] = ACTIONS(3277), + [anon_sym_new] = ACTIONS(3277), + [anon_sym_override] = ACTIONS(3277), + [anon_sym_partial] = ACTIONS(3277), + [anon_sym_private] = ACTIONS(3277), + [anon_sym_protected] = ACTIONS(3277), + [anon_sym_public] = ACTIONS(3277), + [anon_sym_readonly] = ACTIONS(3277), + [anon_sym_required] = ACTIONS(3277), + [anon_sym_sealed] = ACTIONS(3277), + [anon_sym_virtual] = ACTIONS(3277), + [anon_sym_volatile] = ACTIONS(3277), + [anon_sym_where] = ACTIONS(3277), + [anon_sym_notnull] = ACTIONS(3277), + [anon_sym_unmanaged] = ACTIONS(3277), + [anon_sym_checked] = ACTIONS(3277), + [anon_sym_BANG] = ACTIONS(3279), + [anon_sym_TILDE] = ACTIONS(3279), + [anon_sym_PLUS_PLUS] = ACTIONS(3279), + [anon_sym_DASH_DASH] = ACTIONS(3279), + [anon_sym_true] = ACTIONS(3277), + [anon_sym_false] = ACTIONS(3277), + [anon_sym_PLUS] = ACTIONS(3277), + [anon_sym_DASH] = ACTIONS(3277), + [anon_sym_STAR] = ACTIONS(3279), + [anon_sym_CARET] = ACTIONS(3279), + [anon_sym_AMP] = ACTIONS(3279), + [anon_sym_this] = ACTIONS(3277), + [anon_sym_scoped] = ACTIONS(3277), + [anon_sym_base] = ACTIONS(3277), + [anon_sym_var] = ACTIONS(3277), + [sym_predefined_type] = ACTIONS(3277), + [anon_sym_break] = ACTIONS(3277), + [anon_sym_unchecked] = ACTIONS(3277), + [anon_sym_continue] = ACTIONS(3277), + [anon_sym_do] = ACTIONS(3277), + [anon_sym_while] = ACTIONS(3277), + [anon_sym_for] = ACTIONS(3277), + [anon_sym_lock] = ACTIONS(3277), + [anon_sym_yield] = ACTIONS(3277), + [anon_sym_switch] = ACTIONS(3277), + [anon_sym_case] = ACTIONS(3277), + [anon_sym_default] = ACTIONS(3277), + [anon_sym_throw] = ACTIONS(3277), + [anon_sym_try] = ACTIONS(3277), + [anon_sym_when] = ACTIONS(3277), + [anon_sym_await] = ACTIONS(3277), + [anon_sym_foreach] = ACTIONS(3277), + [anon_sym_goto] = ACTIONS(3277), + [anon_sym_if] = ACTIONS(3277), + [anon_sym_else] = ACTIONS(3277), + [anon_sym_DOT_DOT] = ACTIONS(3279), + [anon_sym_from] = ACTIONS(3277), + [anon_sym_into] = ACTIONS(3277), + [anon_sym_join] = ACTIONS(3277), + [anon_sym_on] = ACTIONS(3277), + [anon_sym_equals] = ACTIONS(3277), + [anon_sym_let] = ACTIONS(3277), + [anon_sym_orderby] = ACTIONS(3277), + [anon_sym_ascending] = ACTIONS(3277), + [anon_sym_descending] = ACTIONS(3277), + [anon_sym_group] = ACTIONS(3277), + [anon_sym_by] = ACTIONS(3277), + [anon_sym_select] = ACTIONS(3277), + [anon_sym_stackalloc] = ACTIONS(3277), + [anon_sym_sizeof] = ACTIONS(3277), + [anon_sym_typeof] = ACTIONS(3277), + [anon_sym___makeref] = ACTIONS(3277), + [anon_sym___reftype] = ACTIONS(3277), + [anon_sym___refvalue] = ACTIONS(3277), + [sym_null_literal] = ACTIONS(3277), + [anon_sym_SQUOTE] = ACTIONS(3279), + [sym_integer_literal] = ACTIONS(3277), + [sym_real_literal] = ACTIONS(3279), + [anon_sym_DQUOTE] = ACTIONS(3279), + [sym_verbatim_string_literal] = ACTIONS(3279), + [aux_sym_preproc_if_token1] = ACTIONS(3279), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + [sym_interpolation_regular_start] = ACTIONS(3279), + [sym_interpolation_verbatim_start] = ACTIONS(3279), + [sym_interpolation_raw_start] = ACTIONS(3279), + [sym_raw_string_start] = ACTIONS(3279), + }, + [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(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), + }, + [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(3297), + [anon_sym_extern] = ACTIONS(3297), + [anon_sym_alias] = ACTIONS(3297), + [anon_sym_SEMI] = ACTIONS(3299), + [anon_sym_global] = ACTIONS(3297), + [anon_sym_using] = ACTIONS(3297), + [anon_sym_unsafe] = ACTIONS(3297), + [anon_sym_static] = ACTIONS(3297), + [anon_sym_LBRACK] = ACTIONS(3299), + [anon_sym_LPAREN] = ACTIONS(3299), + [anon_sym_return] = ACTIONS(3297), + [anon_sym_ref] = ACTIONS(3297), + [anon_sym_LBRACE] = ACTIONS(3299), + [anon_sym_RBRACE] = ACTIONS(3299), + [anon_sym_delegate] = ACTIONS(3297), + [anon_sym_abstract] = ACTIONS(3297), + [anon_sym_async] = ACTIONS(3297), + [anon_sym_const] = ACTIONS(3297), + [anon_sym_file] = ACTIONS(3297), + [anon_sym_fixed] = ACTIONS(3297), + [anon_sym_internal] = ACTIONS(3297), + [anon_sym_new] = ACTIONS(3297), + [anon_sym_override] = ACTIONS(3297), + [anon_sym_partial] = ACTIONS(3297), + [anon_sym_private] = ACTIONS(3297), + [anon_sym_protected] = ACTIONS(3297), + [anon_sym_public] = ACTIONS(3297), + [anon_sym_readonly] = ACTIONS(3297), + [anon_sym_required] = ACTIONS(3297), + [anon_sym_sealed] = ACTIONS(3297), + [anon_sym_virtual] = ACTIONS(3297), + [anon_sym_volatile] = ACTIONS(3297), + [anon_sym_where] = ACTIONS(3297), + [anon_sym_notnull] = ACTIONS(3297), + [anon_sym_unmanaged] = ACTIONS(3297), + [anon_sym_checked] = ACTIONS(3297), + [anon_sym_BANG] = ACTIONS(3299), + [anon_sym_TILDE] = ACTIONS(3299), + [anon_sym_PLUS_PLUS] = ACTIONS(3299), + [anon_sym_DASH_DASH] = ACTIONS(3299), + [anon_sym_true] = ACTIONS(3297), + [anon_sym_false] = ACTIONS(3297), + [anon_sym_PLUS] = ACTIONS(3297), + [anon_sym_DASH] = ACTIONS(3297), + [anon_sym_STAR] = ACTIONS(3299), + [anon_sym_CARET] = ACTIONS(3299), + [anon_sym_AMP] = ACTIONS(3299), + [anon_sym_this] = ACTIONS(3297), + [anon_sym_scoped] = ACTIONS(3297), + [anon_sym_base] = ACTIONS(3297), + [anon_sym_var] = ACTIONS(3297), + [sym_predefined_type] = ACTIONS(3297), + [anon_sym_break] = ACTIONS(3297), + [anon_sym_unchecked] = ACTIONS(3297), + [anon_sym_continue] = ACTIONS(3297), + [anon_sym_do] = ACTIONS(3297), + [anon_sym_while] = ACTIONS(3297), + [anon_sym_for] = ACTIONS(3297), + [anon_sym_lock] = ACTIONS(3297), + [anon_sym_yield] = ACTIONS(3297), + [anon_sym_switch] = ACTIONS(3297), + [anon_sym_case] = ACTIONS(3297), + [anon_sym_default] = ACTIONS(3297), + [anon_sym_throw] = ACTIONS(3297), + [anon_sym_try] = ACTIONS(3297), + [anon_sym_when] = ACTIONS(3297), + [anon_sym_await] = ACTIONS(3297), + [anon_sym_foreach] = ACTIONS(3297), + [anon_sym_goto] = ACTIONS(3297), + [anon_sym_if] = ACTIONS(3297), + [anon_sym_else] = ACTIONS(3297), + [anon_sym_DOT_DOT] = ACTIONS(3299), + [anon_sym_from] = ACTIONS(3297), + [anon_sym_into] = ACTIONS(3297), + [anon_sym_join] = ACTIONS(3297), + [anon_sym_on] = ACTIONS(3297), + [anon_sym_equals] = ACTIONS(3297), + [anon_sym_let] = ACTIONS(3297), + [anon_sym_orderby] = ACTIONS(3297), + [anon_sym_ascending] = ACTIONS(3297), + [anon_sym_descending] = ACTIONS(3297), + [anon_sym_group] = ACTIONS(3297), + [anon_sym_by] = ACTIONS(3297), + [anon_sym_select] = ACTIONS(3297), + [anon_sym_stackalloc] = ACTIONS(3297), + [anon_sym_sizeof] = ACTIONS(3297), + [anon_sym_typeof] = ACTIONS(3297), + [anon_sym___makeref] = ACTIONS(3297), + [anon_sym___reftype] = ACTIONS(3297), + [anon_sym___refvalue] = ACTIONS(3297), + [sym_null_literal] = ACTIONS(3297), + [anon_sym_SQUOTE] = ACTIONS(3299), + [sym_integer_literal] = ACTIONS(3297), + [sym_real_literal] = ACTIONS(3299), + [anon_sym_DQUOTE] = ACTIONS(3299), + [sym_verbatim_string_literal] = ACTIONS(3299), + [aux_sym_preproc_if_token1] = ACTIONS(3299), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + [sym_interpolation_regular_start] = ACTIONS(3299), + [sym_interpolation_verbatim_start] = ACTIONS(3299), + [sym_interpolation_raw_start] = ACTIONS(3299), + [sym_raw_string_start] = ACTIONS(3299), + }, + [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(3305), + [anon_sym_extern] = ACTIONS(3305), + [anon_sym_alias] = ACTIONS(3305), + [anon_sym_SEMI] = ACTIONS(3307), + [anon_sym_global] = ACTIONS(3305), + [anon_sym_using] = ACTIONS(3305), + [anon_sym_unsafe] = ACTIONS(3305), + [anon_sym_static] = ACTIONS(3305), + [anon_sym_LBRACK] = ACTIONS(3307), + [anon_sym_LPAREN] = ACTIONS(3307), + [anon_sym_return] = ACTIONS(3305), + [anon_sym_ref] = ACTIONS(3305), + [anon_sym_LBRACE] = ACTIONS(3307), + [anon_sym_RBRACE] = ACTIONS(3307), + [anon_sym_delegate] = ACTIONS(3305), + [anon_sym_abstract] = ACTIONS(3305), + [anon_sym_async] = ACTIONS(3305), + [anon_sym_const] = ACTIONS(3305), + [anon_sym_file] = ACTIONS(3305), + [anon_sym_fixed] = ACTIONS(3305), + [anon_sym_internal] = ACTIONS(3305), + [anon_sym_new] = ACTIONS(3305), + [anon_sym_override] = ACTIONS(3305), + [anon_sym_partial] = ACTIONS(3305), + [anon_sym_private] = ACTIONS(3305), + [anon_sym_protected] = ACTIONS(3305), + [anon_sym_public] = ACTIONS(3305), + [anon_sym_readonly] = ACTIONS(3305), + [anon_sym_required] = ACTIONS(3305), + [anon_sym_sealed] = ACTIONS(3305), + [anon_sym_virtual] = ACTIONS(3305), + [anon_sym_volatile] = ACTIONS(3305), + [anon_sym_where] = ACTIONS(3305), + [anon_sym_notnull] = ACTIONS(3305), + [anon_sym_unmanaged] = ACTIONS(3305), + [anon_sym_checked] = ACTIONS(3305), + [anon_sym_BANG] = ACTIONS(3307), + [anon_sym_TILDE] = ACTIONS(3307), + [anon_sym_PLUS_PLUS] = ACTIONS(3307), + [anon_sym_DASH_DASH] = ACTIONS(3307), + [anon_sym_true] = ACTIONS(3305), + [anon_sym_false] = ACTIONS(3305), + [anon_sym_PLUS] = ACTIONS(3305), + [anon_sym_DASH] = ACTIONS(3305), + [anon_sym_STAR] = ACTIONS(3307), + [anon_sym_CARET] = ACTIONS(3307), + [anon_sym_AMP] = ACTIONS(3307), + [anon_sym_this] = ACTIONS(3305), + [anon_sym_scoped] = ACTIONS(3305), + [anon_sym_base] = ACTIONS(3305), + [anon_sym_var] = ACTIONS(3305), + [sym_predefined_type] = ACTIONS(3305), + [anon_sym_break] = ACTIONS(3305), + [anon_sym_unchecked] = ACTIONS(3305), + [anon_sym_continue] = ACTIONS(3305), + [anon_sym_do] = ACTIONS(3305), + [anon_sym_while] = ACTIONS(3305), + [anon_sym_for] = ACTIONS(3305), + [anon_sym_lock] = ACTIONS(3305), + [anon_sym_yield] = ACTIONS(3305), + [anon_sym_switch] = ACTIONS(3305), + [anon_sym_case] = ACTIONS(3305), + [anon_sym_default] = ACTIONS(3305), + [anon_sym_throw] = ACTIONS(3305), + [anon_sym_try] = ACTIONS(3305), + [anon_sym_when] = ACTIONS(3305), + [anon_sym_await] = ACTIONS(3305), + [anon_sym_foreach] = ACTIONS(3305), + [anon_sym_goto] = ACTIONS(3305), + [anon_sym_if] = ACTIONS(3305), + [anon_sym_else] = ACTIONS(3305), + [anon_sym_DOT_DOT] = ACTIONS(3307), + [anon_sym_from] = ACTIONS(3305), + [anon_sym_into] = ACTIONS(3305), + [anon_sym_join] = ACTIONS(3305), + [anon_sym_on] = ACTIONS(3305), + [anon_sym_equals] = ACTIONS(3305), + [anon_sym_let] = ACTIONS(3305), + [anon_sym_orderby] = ACTIONS(3305), + [anon_sym_ascending] = ACTIONS(3305), + [anon_sym_descending] = ACTIONS(3305), + [anon_sym_group] = ACTIONS(3305), + [anon_sym_by] = ACTIONS(3305), + [anon_sym_select] = ACTIONS(3305), + [anon_sym_stackalloc] = ACTIONS(3305), + [anon_sym_sizeof] = ACTIONS(3305), + [anon_sym_typeof] = ACTIONS(3305), + [anon_sym___makeref] = ACTIONS(3305), + [anon_sym___reftype] = ACTIONS(3305), + [anon_sym___refvalue] = ACTIONS(3305), + [sym_null_literal] = ACTIONS(3305), + [anon_sym_SQUOTE] = ACTIONS(3307), + [sym_integer_literal] = ACTIONS(3305), + [sym_real_literal] = ACTIONS(3307), + [anon_sym_DQUOTE] = ACTIONS(3307), + [sym_verbatim_string_literal] = ACTIONS(3307), + [aux_sym_preproc_if_token1] = ACTIONS(3307), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + [sym_interpolation_regular_start] = ACTIONS(3307), + [sym_interpolation_verbatim_start] = ACTIONS(3307), + [sym_interpolation_raw_start] = ACTIONS(3307), + [sym_raw_string_start] = ACTIONS(3307), + }, + [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(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), @@ -386144,122 +389470,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(3475), - [sym_interpolation_verbatim_start] = ACTIONS(3475), - [sym_interpolation_raw_start] = ACTIONS(3475), - [sym_raw_string_start] = ACTIONS(3475), + [sym_interpolation_regular_start] = ACTIONS(3211), + [sym_interpolation_verbatim_start] = ACTIONS(3211), + [sym_interpolation_raw_start] = ACTIONS(3211), + [sym_raw_string_start] = ACTIONS(3211), }, - [2080] = { - [sym_preproc_region] = STATE(2080), - [sym_preproc_endregion] = STATE(2080), - [sym_preproc_line] = STATE(2080), - [sym_preproc_pragma] = STATE(2080), - [sym_preproc_nullable] = STATE(2080), - [sym_preproc_error] = STATE(2080), - [sym_preproc_warning] = STATE(2080), - [sym_preproc_define] = STATE(2080), - [sym_preproc_undef] = STATE(2080), - [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), + [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(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_ref] = ACTIONS(3319), + [anon_sym_LBRACE] = ACTIONS(3321), + [anon_sym_RBRACE] = ACTIONS(3321), + [anon_sym_delegate] = 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_case] = 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), @@ -386270,248 +389592,240 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_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(3321), + [sym_interpolation_verbatim_start] = ACTIONS(3321), + [sym_interpolation_raw_start] = ACTIONS(3321), + [sym_raw_string_start] = ACTIONS(3321), }, - [2081] = { - [sym_preproc_region] = STATE(2081), - [sym_preproc_endregion] = STATE(2081), - [sym_preproc_line] = STATE(2081), - [sym_preproc_pragma] = STATE(2081), - [sym_preproc_nullable] = STATE(2081), - [sym_preproc_error] = STATE(2081), - [sym_preproc_warning] = STATE(2081), - [sym_preproc_define] = STATE(2081), - [sym_preproc_undef] = STATE(2081), - [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), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [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), + [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(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), }, - [2082] = { - [sym_preproc_region] = STATE(2082), - [sym_preproc_endregion] = STATE(2082), - [sym_preproc_line] = STATE(2082), - [sym_preproc_pragma] = STATE(2082), - [sym_preproc_nullable] = STATE(2082), - [sym_preproc_error] = STATE(2082), - [sym_preproc_warning] = STATE(2082), - [sym_preproc_define] = STATE(2082), - [sym_preproc_undef] = STATE(2082), - [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), + [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(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), @@ -386522,122 +389836,240 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_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(3215), + [sym_interpolation_verbatim_start] = ACTIONS(3215), + [sym_interpolation_raw_start] = ACTIONS(3215), + [sym_raw_string_start] = ACTIONS(3215), }, - [2083] = { - [sym_preproc_region] = STATE(2083), - [sym_preproc_endregion] = STATE(2083), - [sym_preproc_line] = STATE(2083), - [sym_preproc_pragma] = STATE(2083), - [sym_preproc_nullable] = STATE(2083), - [sym_preproc_error] = STATE(2083), - [sym_preproc_warning] = STATE(2083), - [sym_preproc_define] = STATE(2083), - [sym_preproc_undef] = STATE(2083), - [ts_builtin_sym_end] = ACTIONS(3329), - [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_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), + [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(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), + }, + [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(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), @@ -386648,122 +390080,850 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_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(3187), + [sym_interpolation_verbatim_start] = ACTIONS(3187), + [sym_interpolation_raw_start] = ACTIONS(3187), + [sym_raw_string_start] = ACTIONS(3187), }, - [2084] = { - [sym_preproc_region] = STATE(2084), - [sym_preproc_endregion] = STATE(2084), - [sym_preproc_line] = STATE(2084), - [sym_preproc_pragma] = STATE(2084), - [sym_preproc_nullable] = STATE(2084), - [sym_preproc_error] = STATE(2084), - [sym_preproc_warning] = STATE(2084), - [sym_preproc_define] = STATE(2084), - [sym_preproc_undef] = STATE(2084), - [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), + [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(3289), + [anon_sym_extern] = ACTIONS(3289), + [anon_sym_alias] = ACTIONS(3289), + [anon_sym_SEMI] = ACTIONS(3291), + [anon_sym_global] = ACTIONS(3289), + [anon_sym_using] = ACTIONS(3289), + [anon_sym_unsafe] = ACTIONS(3289), + [anon_sym_static] = ACTIONS(3289), + [anon_sym_LBRACK] = ACTIONS(3291), + [anon_sym_LPAREN] = ACTIONS(3291), + [anon_sym_return] = ACTIONS(3289), + [anon_sym_ref] = ACTIONS(3289), + [anon_sym_LBRACE] = ACTIONS(3291), + [anon_sym_RBRACE] = ACTIONS(3291), + [anon_sym_delegate] = ACTIONS(3289), + [anon_sym_abstract] = ACTIONS(3289), + [anon_sym_async] = ACTIONS(3289), + [anon_sym_const] = ACTIONS(3289), + [anon_sym_file] = ACTIONS(3289), + [anon_sym_fixed] = ACTIONS(3289), + [anon_sym_internal] = ACTIONS(3289), + [anon_sym_new] = ACTIONS(3289), + [anon_sym_override] = ACTIONS(3289), + [anon_sym_partial] = ACTIONS(3289), + [anon_sym_private] = ACTIONS(3289), + [anon_sym_protected] = ACTIONS(3289), + [anon_sym_public] = ACTIONS(3289), + [anon_sym_readonly] = ACTIONS(3289), + [anon_sym_required] = ACTIONS(3289), + [anon_sym_sealed] = ACTIONS(3289), + [anon_sym_virtual] = ACTIONS(3289), + [anon_sym_volatile] = ACTIONS(3289), + [anon_sym_where] = ACTIONS(3289), + [anon_sym_notnull] = ACTIONS(3289), + [anon_sym_unmanaged] = ACTIONS(3289), + [anon_sym_checked] = ACTIONS(3289), + [anon_sym_BANG] = ACTIONS(3291), + [anon_sym_TILDE] = ACTIONS(3291), + [anon_sym_PLUS_PLUS] = ACTIONS(3291), + [anon_sym_DASH_DASH] = ACTIONS(3291), + [anon_sym_true] = ACTIONS(3289), + [anon_sym_false] = ACTIONS(3289), + [anon_sym_PLUS] = ACTIONS(3289), + [anon_sym_DASH] = ACTIONS(3289), + [anon_sym_STAR] = ACTIONS(3291), + [anon_sym_CARET] = ACTIONS(3291), + [anon_sym_AMP] = ACTIONS(3291), + [anon_sym_this] = ACTIONS(3289), + [anon_sym_scoped] = ACTIONS(3289), + [anon_sym_base] = ACTIONS(3289), + [anon_sym_var] = ACTIONS(3289), + [sym_predefined_type] = ACTIONS(3289), + [anon_sym_break] = ACTIONS(3289), + [anon_sym_unchecked] = ACTIONS(3289), + [anon_sym_continue] = ACTIONS(3289), + [anon_sym_do] = ACTIONS(3289), + [anon_sym_while] = ACTIONS(3289), + [anon_sym_for] = ACTIONS(3289), + [anon_sym_lock] = ACTIONS(3289), + [anon_sym_yield] = ACTIONS(3289), + [anon_sym_switch] = ACTIONS(3289), + [anon_sym_case] = ACTIONS(3289), + [anon_sym_default] = ACTIONS(3289), + [anon_sym_throw] = ACTIONS(3289), + [anon_sym_try] = ACTIONS(3289), + [anon_sym_when] = ACTIONS(3289), + [anon_sym_await] = ACTIONS(3289), + [anon_sym_foreach] = ACTIONS(3289), + [anon_sym_goto] = ACTIONS(3289), + [anon_sym_if] = ACTIONS(3289), + [anon_sym_else] = ACTIONS(3289), + [anon_sym_DOT_DOT] = ACTIONS(3291), + [anon_sym_from] = ACTIONS(3289), + [anon_sym_into] = ACTIONS(3289), + [anon_sym_join] = ACTIONS(3289), + [anon_sym_on] = ACTIONS(3289), + [anon_sym_equals] = ACTIONS(3289), + [anon_sym_let] = ACTIONS(3289), + [anon_sym_orderby] = ACTIONS(3289), + [anon_sym_ascending] = ACTIONS(3289), + [anon_sym_descending] = ACTIONS(3289), + [anon_sym_group] = ACTIONS(3289), + [anon_sym_by] = ACTIONS(3289), + [anon_sym_select] = ACTIONS(3289), + [anon_sym_stackalloc] = ACTIONS(3289), + [anon_sym_sizeof] = ACTIONS(3289), + [anon_sym_typeof] = ACTIONS(3289), + [anon_sym___makeref] = ACTIONS(3289), + [anon_sym___reftype] = ACTIONS(3289), + [anon_sym___refvalue] = ACTIONS(3289), + [sym_null_literal] = ACTIONS(3289), + [anon_sym_SQUOTE] = ACTIONS(3291), + [sym_integer_literal] = ACTIONS(3289), + [sym_real_literal] = ACTIONS(3291), + [anon_sym_DQUOTE] = ACTIONS(3291), + [sym_verbatim_string_literal] = ACTIONS(3291), + [aux_sym_preproc_if_token1] = ACTIONS(3291), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + [sym_interpolation_regular_start] = ACTIONS(3291), + [sym_interpolation_verbatim_start] = ACTIONS(3291), + [sym_interpolation_raw_start] = ACTIONS(3291), + [sym_raw_string_start] = ACTIONS(3291), + }, + [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(3313), + [anon_sym_extern] = ACTIONS(3313), + [anon_sym_alias] = ACTIONS(3313), + [anon_sym_SEMI] = ACTIONS(3315), + [anon_sym_global] = ACTIONS(3313), + [anon_sym_using] = ACTIONS(3313), + [anon_sym_unsafe] = ACTIONS(3313), + [anon_sym_static] = ACTIONS(3313), + [anon_sym_LBRACK] = ACTIONS(3315), + [anon_sym_LPAREN] = ACTIONS(3315), + [anon_sym_return] = ACTIONS(3313), + [anon_sym_ref] = ACTIONS(3313), + [anon_sym_LBRACE] = ACTIONS(3315), + [anon_sym_RBRACE] = ACTIONS(3315), + [anon_sym_delegate] = ACTIONS(3313), + [anon_sym_abstract] = ACTIONS(3313), + [anon_sym_async] = ACTIONS(3313), + [anon_sym_const] = ACTIONS(3313), + [anon_sym_file] = ACTIONS(3313), + [anon_sym_fixed] = ACTIONS(3313), + [anon_sym_internal] = ACTIONS(3313), + [anon_sym_new] = ACTIONS(3313), + [anon_sym_override] = ACTIONS(3313), + [anon_sym_partial] = ACTIONS(3313), + [anon_sym_private] = ACTIONS(3313), + [anon_sym_protected] = ACTIONS(3313), + [anon_sym_public] = ACTIONS(3313), + [anon_sym_readonly] = ACTIONS(3313), + [anon_sym_required] = ACTIONS(3313), + [anon_sym_sealed] = ACTIONS(3313), + [anon_sym_virtual] = ACTIONS(3313), + [anon_sym_volatile] = ACTIONS(3313), + [anon_sym_where] = ACTIONS(3313), + [anon_sym_notnull] = ACTIONS(3313), + [anon_sym_unmanaged] = ACTIONS(3313), + [anon_sym_checked] = ACTIONS(3313), + [anon_sym_BANG] = ACTIONS(3315), + [anon_sym_TILDE] = ACTIONS(3315), + [anon_sym_PLUS_PLUS] = ACTIONS(3315), + [anon_sym_DASH_DASH] = ACTIONS(3315), + [anon_sym_true] = ACTIONS(3313), + [anon_sym_false] = ACTIONS(3313), + [anon_sym_PLUS] = ACTIONS(3313), + [anon_sym_DASH] = ACTIONS(3313), + [anon_sym_STAR] = ACTIONS(3315), + [anon_sym_CARET] = ACTIONS(3315), + [anon_sym_AMP] = ACTIONS(3315), + [anon_sym_this] = ACTIONS(3313), + [anon_sym_scoped] = ACTIONS(3313), + [anon_sym_base] = ACTIONS(3313), + [anon_sym_var] = ACTIONS(3313), + [sym_predefined_type] = ACTIONS(3313), + [anon_sym_break] = ACTIONS(3313), + [anon_sym_unchecked] = ACTIONS(3313), + [anon_sym_continue] = ACTIONS(3313), + [anon_sym_do] = ACTIONS(3313), + [anon_sym_while] = ACTIONS(3313), + [anon_sym_for] = ACTIONS(3313), + [anon_sym_lock] = ACTIONS(3313), + [anon_sym_yield] = ACTIONS(3313), + [anon_sym_switch] = ACTIONS(3313), + [anon_sym_case] = ACTIONS(3313), + [anon_sym_default] = ACTIONS(3313), + [anon_sym_throw] = ACTIONS(3313), + [anon_sym_try] = ACTIONS(3313), + [anon_sym_when] = ACTIONS(3313), + [anon_sym_await] = ACTIONS(3313), + [anon_sym_foreach] = ACTIONS(3313), + [anon_sym_goto] = ACTIONS(3313), + [anon_sym_if] = ACTIONS(3313), + [anon_sym_else] = ACTIONS(3471), + [anon_sym_DOT_DOT] = ACTIONS(3315), + [anon_sym_from] = ACTIONS(3313), + [anon_sym_into] = ACTIONS(3313), + [anon_sym_join] = ACTIONS(3313), + [anon_sym_on] = ACTIONS(3313), + [anon_sym_equals] = ACTIONS(3313), + [anon_sym_let] = ACTIONS(3313), + [anon_sym_orderby] = ACTIONS(3313), + [anon_sym_ascending] = ACTIONS(3313), + [anon_sym_descending] = ACTIONS(3313), + [anon_sym_group] = ACTIONS(3313), + [anon_sym_by] = ACTIONS(3313), + [anon_sym_select] = ACTIONS(3313), + [anon_sym_stackalloc] = ACTIONS(3313), + [anon_sym_sizeof] = ACTIONS(3313), + [anon_sym_typeof] = ACTIONS(3313), + [anon_sym___makeref] = ACTIONS(3313), + [anon_sym___reftype] = ACTIONS(3313), + [anon_sym___refvalue] = ACTIONS(3313), + [sym_null_literal] = ACTIONS(3313), + [anon_sym_SQUOTE] = ACTIONS(3315), + [sym_integer_literal] = ACTIONS(3313), + [sym_real_literal] = ACTIONS(3315), + [anon_sym_DQUOTE] = ACTIONS(3315), + [sym_verbatim_string_literal] = ACTIONS(3315), + [aux_sym_preproc_if_token1] = ACTIONS(3315), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + [sym_interpolation_regular_start] = ACTIONS(3315), + [sym_interpolation_verbatim_start] = ACTIONS(3315), + [sym_interpolation_raw_start] = ACTIONS(3315), + [sym_raw_string_start] = ACTIONS(3315), + }, + [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(3099), + [anon_sym_extern] = ACTIONS(3099), + [anon_sym_alias] = ACTIONS(3099), + [anon_sym_SEMI] = ACTIONS(3101), + [anon_sym_global] = ACTIONS(3099), + [anon_sym_using] = ACTIONS(3099), + [anon_sym_unsafe] = ACTIONS(3099), + [anon_sym_static] = ACTIONS(3099), + [anon_sym_LBRACK] = ACTIONS(3101), + [anon_sym_LPAREN] = ACTIONS(3101), + [anon_sym_return] = ACTIONS(3099), + [anon_sym_ref] = ACTIONS(3099), + [anon_sym_LBRACE] = ACTIONS(3101), + [anon_sym_RBRACE] = ACTIONS(3101), + [anon_sym_delegate] = ACTIONS(3099), + [anon_sym_abstract] = ACTIONS(3099), + [anon_sym_async] = ACTIONS(3099), + [anon_sym_const] = ACTIONS(3099), + [anon_sym_file] = ACTIONS(3099), + [anon_sym_fixed] = ACTIONS(3099), + [anon_sym_internal] = ACTIONS(3099), + [anon_sym_new] = ACTIONS(3099), + [anon_sym_override] = ACTIONS(3099), + [anon_sym_partial] = ACTIONS(3099), + [anon_sym_private] = ACTIONS(3099), + [anon_sym_protected] = ACTIONS(3099), + [anon_sym_public] = ACTIONS(3099), + [anon_sym_readonly] = ACTIONS(3099), + [anon_sym_required] = ACTIONS(3099), + [anon_sym_sealed] = ACTIONS(3099), + [anon_sym_virtual] = ACTIONS(3099), + [anon_sym_volatile] = ACTIONS(3099), + [anon_sym_where] = ACTIONS(3099), + [anon_sym_notnull] = ACTIONS(3099), + [anon_sym_unmanaged] = ACTIONS(3099), + [anon_sym_checked] = ACTIONS(3099), + [anon_sym_BANG] = ACTIONS(3101), + [anon_sym_TILDE] = ACTIONS(3101), + [anon_sym_PLUS_PLUS] = ACTIONS(3101), + [anon_sym_DASH_DASH] = ACTIONS(3101), + [anon_sym_true] = ACTIONS(3099), + [anon_sym_false] = ACTIONS(3099), + [anon_sym_PLUS] = ACTIONS(3099), + [anon_sym_DASH] = ACTIONS(3099), + [anon_sym_STAR] = ACTIONS(3101), + [anon_sym_CARET] = ACTIONS(3101), + [anon_sym_AMP] = ACTIONS(3101), + [anon_sym_this] = ACTIONS(3099), + [anon_sym_scoped] = ACTIONS(3099), + [anon_sym_base] = ACTIONS(3099), + [anon_sym_var] = ACTIONS(3099), + [sym_predefined_type] = ACTIONS(3099), + [anon_sym_break] = ACTIONS(3099), + [anon_sym_unchecked] = ACTIONS(3099), + [anon_sym_continue] = ACTIONS(3099), + [anon_sym_do] = ACTIONS(3099), + [anon_sym_while] = ACTIONS(3099), + [anon_sym_for] = ACTIONS(3099), + [anon_sym_lock] = ACTIONS(3099), + [anon_sym_yield] = ACTIONS(3099), + [anon_sym_switch] = ACTIONS(3099), + [anon_sym_case] = ACTIONS(3099), + [anon_sym_default] = ACTIONS(3099), + [anon_sym_throw] = ACTIONS(3099), + [anon_sym_try] = ACTIONS(3099), + [anon_sym_when] = ACTIONS(3099), + [anon_sym_await] = ACTIONS(3099), + [anon_sym_foreach] = ACTIONS(3099), + [anon_sym_goto] = ACTIONS(3099), + [anon_sym_if] = ACTIONS(3099), + [anon_sym_else] = ACTIONS(3099), + [anon_sym_DOT_DOT] = ACTIONS(3101), + [anon_sym_from] = ACTIONS(3099), + [anon_sym_into] = ACTIONS(3099), + [anon_sym_join] = ACTIONS(3099), + [anon_sym_on] = ACTIONS(3099), + [anon_sym_equals] = ACTIONS(3099), + [anon_sym_let] = ACTIONS(3099), + [anon_sym_orderby] = ACTIONS(3099), + [anon_sym_ascending] = ACTIONS(3099), + [anon_sym_descending] = ACTIONS(3099), + [anon_sym_group] = ACTIONS(3099), + [anon_sym_by] = ACTIONS(3099), + [anon_sym_select] = ACTIONS(3099), + [anon_sym_stackalloc] = ACTIONS(3099), + [anon_sym_sizeof] = ACTIONS(3099), + [anon_sym_typeof] = ACTIONS(3099), + [anon_sym___makeref] = ACTIONS(3099), + [anon_sym___reftype] = ACTIONS(3099), + [anon_sym___refvalue] = ACTIONS(3099), + [sym_null_literal] = ACTIONS(3099), + [anon_sym_SQUOTE] = ACTIONS(3101), + [sym_integer_literal] = ACTIONS(3099), + [sym_real_literal] = ACTIONS(3101), + [anon_sym_DQUOTE] = ACTIONS(3101), + [sym_verbatim_string_literal] = ACTIONS(3101), + [aux_sym_preproc_if_token1] = ACTIONS(3101), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + [sym_interpolation_regular_start] = ACTIONS(3101), + [sym_interpolation_verbatim_start] = ACTIONS(3101), + [sym_interpolation_raw_start] = ACTIONS(3101), + [sym_raw_string_start] = ACTIONS(3101), + }, + [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(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), + }, + [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(3309), + [anon_sym_extern] = ACTIONS(3309), + [anon_sym_alias] = ACTIONS(3309), + [anon_sym_SEMI] = ACTIONS(3311), + [anon_sym_global] = ACTIONS(3309), + [anon_sym_using] = ACTIONS(3309), + [anon_sym_unsafe] = ACTIONS(3309), + [anon_sym_static] = ACTIONS(3309), + [anon_sym_LBRACK] = ACTIONS(3311), + [anon_sym_LPAREN] = ACTIONS(3311), + [anon_sym_return] = ACTIONS(3309), + [anon_sym_ref] = ACTIONS(3309), + [anon_sym_LBRACE] = ACTIONS(3311), + [anon_sym_RBRACE] = ACTIONS(3311), + [anon_sym_delegate] = ACTIONS(3309), + [anon_sym_abstract] = ACTIONS(3309), + [anon_sym_async] = ACTIONS(3309), + [anon_sym_const] = ACTIONS(3309), + [anon_sym_file] = ACTIONS(3309), + [anon_sym_fixed] = ACTIONS(3309), + [anon_sym_internal] = ACTIONS(3309), + [anon_sym_new] = ACTIONS(3309), + [anon_sym_override] = ACTIONS(3309), + [anon_sym_partial] = ACTIONS(3309), + [anon_sym_private] = ACTIONS(3309), + [anon_sym_protected] = ACTIONS(3309), + [anon_sym_public] = ACTIONS(3309), + [anon_sym_readonly] = ACTIONS(3309), + [anon_sym_required] = ACTIONS(3309), + [anon_sym_sealed] = ACTIONS(3309), + [anon_sym_virtual] = ACTIONS(3309), + [anon_sym_volatile] = ACTIONS(3309), + [anon_sym_where] = ACTIONS(3309), + [anon_sym_notnull] = ACTIONS(3309), + [anon_sym_unmanaged] = ACTIONS(3309), + [anon_sym_checked] = ACTIONS(3309), + [anon_sym_BANG] = ACTIONS(3311), + [anon_sym_TILDE] = ACTIONS(3311), + [anon_sym_PLUS_PLUS] = ACTIONS(3311), + [anon_sym_DASH_DASH] = ACTIONS(3311), + [anon_sym_true] = ACTIONS(3309), + [anon_sym_false] = ACTIONS(3309), + [anon_sym_PLUS] = ACTIONS(3309), + [anon_sym_DASH] = ACTIONS(3309), + [anon_sym_STAR] = ACTIONS(3311), + [anon_sym_CARET] = ACTIONS(3311), + [anon_sym_AMP] = ACTIONS(3311), + [anon_sym_this] = ACTIONS(3309), + [anon_sym_scoped] = ACTIONS(3309), + [anon_sym_base] = ACTIONS(3309), + [anon_sym_var] = ACTIONS(3309), + [sym_predefined_type] = ACTIONS(3309), + [anon_sym_break] = ACTIONS(3309), + [anon_sym_unchecked] = ACTIONS(3309), + [anon_sym_continue] = ACTIONS(3309), + [anon_sym_do] = ACTIONS(3309), + [anon_sym_while] = ACTIONS(3309), + [anon_sym_for] = ACTIONS(3309), + [anon_sym_lock] = ACTIONS(3309), + [anon_sym_yield] = ACTIONS(3309), + [anon_sym_switch] = ACTIONS(3309), + [anon_sym_case] = ACTIONS(3309), + [anon_sym_default] = ACTIONS(3309), + [anon_sym_throw] = ACTIONS(3309), + [anon_sym_try] = ACTIONS(3309), + [anon_sym_when] = ACTIONS(3309), + [anon_sym_await] = ACTIONS(3309), + [anon_sym_foreach] = ACTIONS(3309), + [anon_sym_goto] = ACTIONS(3309), + [anon_sym_if] = ACTIONS(3309), + [anon_sym_else] = ACTIONS(3309), + [anon_sym_DOT_DOT] = ACTIONS(3311), + [anon_sym_from] = ACTIONS(3309), + [anon_sym_into] = ACTIONS(3309), + [anon_sym_join] = ACTIONS(3309), + [anon_sym_on] = ACTIONS(3309), + [anon_sym_equals] = ACTIONS(3309), + [anon_sym_let] = ACTIONS(3309), + [anon_sym_orderby] = ACTIONS(3309), + [anon_sym_ascending] = ACTIONS(3309), + [anon_sym_descending] = ACTIONS(3309), + [anon_sym_group] = ACTIONS(3309), + [anon_sym_by] = ACTIONS(3309), + [anon_sym_select] = ACTIONS(3309), + [anon_sym_stackalloc] = ACTIONS(3309), + [anon_sym_sizeof] = ACTIONS(3309), + [anon_sym_typeof] = ACTIONS(3309), + [anon_sym___makeref] = ACTIONS(3309), + [anon_sym___reftype] = ACTIONS(3309), + [anon_sym___refvalue] = ACTIONS(3309), + [sym_null_literal] = ACTIONS(3309), + [anon_sym_SQUOTE] = ACTIONS(3311), + [sym_integer_literal] = ACTIONS(3309), + [sym_real_literal] = ACTIONS(3311), + [anon_sym_DQUOTE] = ACTIONS(3311), + [sym_verbatim_string_literal] = ACTIONS(3311), + [aux_sym_preproc_if_token1] = ACTIONS(3311), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + [sym_interpolation_regular_start] = ACTIONS(3311), + [sym_interpolation_verbatim_start] = ACTIONS(3311), + [sym_interpolation_raw_start] = ACTIONS(3311), + [sym_raw_string_start] = ACTIONS(3311), + }, + [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(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), + }, + [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(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_ref] = ACTIONS(3157), + [anon_sym_LBRACE] = ACTIONS(3159), + [anon_sym_RBRACE] = ACTIONS(3159), + [anon_sym_delegate] = 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_case] = ACTIONS(3157), + [anon_sym_default] = ACTIONS(3157), + [anon_sym_throw] = ACTIONS(3157), + [anon_sym_try] = ACTIONS(3157), + [anon_sym_when] = 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), @@ -386774,122 +390934,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(3373), - [sym_interpolation_verbatim_start] = ACTIONS(3373), - [sym_interpolation_raw_start] = ACTIONS(3373), - [sym_raw_string_start] = ACTIONS(3373), + [sym_interpolation_regular_start] = ACTIONS(3159), + [sym_interpolation_verbatim_start] = ACTIONS(3159), + [sym_interpolation_raw_start] = ACTIONS(3159), + [sym_raw_string_start] = ACTIONS(3159), }, - [2085] = { - [sym_preproc_region] = STATE(2085), - [sym_preproc_endregion] = STATE(2085), - [sym_preproc_line] = STATE(2085), - [sym_preproc_pragma] = STATE(2085), - [sym_preproc_nullable] = STATE(2085), - [sym_preproc_error] = STATE(2085), - [sym_preproc_warning] = STATE(2085), - [sym_preproc_define] = STATE(2085), - [sym_preproc_undef] = STATE(2085), - [ts_builtin_sym_end] = ACTIONS(3409), - [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), + [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(3145), + [anon_sym_extern] = ACTIONS(3145), + [anon_sym_alias] = ACTIONS(3145), + [anon_sym_SEMI] = ACTIONS(3147), + [anon_sym_global] = ACTIONS(3145), + [anon_sym_using] = ACTIONS(3145), + [anon_sym_unsafe] = ACTIONS(3145), + [anon_sym_static] = ACTIONS(3145), + [anon_sym_LBRACK] = ACTIONS(3147), + [anon_sym_LPAREN] = ACTIONS(3147), + [anon_sym_return] = ACTIONS(3145), + [anon_sym_ref] = ACTIONS(3145), + [anon_sym_LBRACE] = ACTIONS(3147), + [anon_sym_RBRACE] = ACTIONS(3147), + [anon_sym_delegate] = ACTIONS(3145), + [anon_sym_abstract] = ACTIONS(3145), + [anon_sym_async] = ACTIONS(3145), + [anon_sym_const] = ACTIONS(3145), + [anon_sym_file] = ACTIONS(3145), + [anon_sym_fixed] = ACTIONS(3145), + [anon_sym_internal] = ACTIONS(3145), + [anon_sym_new] = ACTIONS(3145), + [anon_sym_override] = ACTIONS(3145), + [anon_sym_partial] = ACTIONS(3145), + [anon_sym_private] = ACTIONS(3145), + [anon_sym_protected] = ACTIONS(3145), + [anon_sym_public] = ACTIONS(3145), + [anon_sym_readonly] = ACTIONS(3145), + [anon_sym_required] = ACTIONS(3145), + [anon_sym_sealed] = ACTIONS(3145), + [anon_sym_virtual] = ACTIONS(3145), + [anon_sym_volatile] = ACTIONS(3145), + [anon_sym_where] = ACTIONS(3145), + [anon_sym_notnull] = ACTIONS(3145), + [anon_sym_unmanaged] = ACTIONS(3145), + [anon_sym_checked] = ACTIONS(3145), + [anon_sym_BANG] = ACTIONS(3147), + [anon_sym_TILDE] = ACTIONS(3147), + [anon_sym_PLUS_PLUS] = ACTIONS(3147), + [anon_sym_DASH_DASH] = ACTIONS(3147), + [anon_sym_true] = ACTIONS(3145), + [anon_sym_false] = ACTIONS(3145), + [anon_sym_PLUS] = ACTIONS(3145), + [anon_sym_DASH] = ACTIONS(3145), + [anon_sym_STAR] = ACTIONS(3147), + [anon_sym_CARET] = ACTIONS(3147), + [anon_sym_AMP] = ACTIONS(3147), + [anon_sym_this] = ACTIONS(3145), + [anon_sym_scoped] = ACTIONS(3145), + [anon_sym_base] = ACTIONS(3145), + [anon_sym_var] = ACTIONS(3145), + [sym_predefined_type] = ACTIONS(3145), + [anon_sym_break] = ACTIONS(3145), + [anon_sym_unchecked] = ACTIONS(3145), + [anon_sym_continue] = ACTIONS(3145), + [anon_sym_do] = ACTIONS(3145), + [anon_sym_while] = ACTIONS(3145), + [anon_sym_for] = ACTIONS(3145), + [anon_sym_lock] = ACTIONS(3145), + [anon_sym_yield] = ACTIONS(3145), + [anon_sym_switch] = ACTIONS(3145), + [anon_sym_case] = ACTIONS(3145), + [anon_sym_default] = ACTIONS(3145), + [anon_sym_throw] = ACTIONS(3145), + [anon_sym_try] = ACTIONS(3145), + [anon_sym_when] = ACTIONS(3145), + [anon_sym_await] = ACTIONS(3145), + [anon_sym_foreach] = ACTIONS(3145), + [anon_sym_goto] = ACTIONS(3145), + [anon_sym_if] = ACTIONS(3145), + [anon_sym_else] = ACTIONS(3145), + [anon_sym_DOT_DOT] = ACTIONS(3147), + [anon_sym_from] = ACTIONS(3145), + [anon_sym_into] = ACTIONS(3145), + [anon_sym_join] = ACTIONS(3145), + [anon_sym_on] = ACTIONS(3145), + [anon_sym_equals] = ACTIONS(3145), + [anon_sym_let] = ACTIONS(3145), + [anon_sym_orderby] = ACTIONS(3145), + [anon_sym_ascending] = ACTIONS(3145), + [anon_sym_descending] = ACTIONS(3145), + [anon_sym_group] = ACTIONS(3145), + [anon_sym_by] = ACTIONS(3145), + [anon_sym_select] = ACTIONS(3145), + [anon_sym_stackalloc] = ACTIONS(3145), + [anon_sym_sizeof] = ACTIONS(3145), + [anon_sym_typeof] = ACTIONS(3145), + [anon_sym___makeref] = ACTIONS(3145), + [anon_sym___reftype] = ACTIONS(3145), + [anon_sym___refvalue] = ACTIONS(3145), + [sym_null_literal] = ACTIONS(3145), + [anon_sym_SQUOTE] = ACTIONS(3147), + [sym_integer_literal] = ACTIONS(3145), + [sym_real_literal] = ACTIONS(3147), + [anon_sym_DQUOTE] = ACTIONS(3147), + [sym_verbatim_string_literal] = ACTIONS(3147), + [aux_sym_preproc_if_token1] = ACTIONS(3147), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -386900,122 +391056,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(3409), - [sym_interpolation_verbatim_start] = ACTIONS(3409), - [sym_interpolation_raw_start] = ACTIONS(3409), - [sym_raw_string_start] = ACTIONS(3409), + [sym_interpolation_regular_start] = ACTIONS(3147), + [sym_interpolation_verbatim_start] = ACTIONS(3147), + [sym_interpolation_raw_start] = ACTIONS(3147), + [sym_raw_string_start] = ACTIONS(3147), }, - [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(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), + [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(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), @@ -387026,122 +391178,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(3381), - [sym_interpolation_verbatim_start] = ACTIONS(3381), - [sym_interpolation_raw_start] = ACTIONS(3381), - [sym_raw_string_start] = ACTIONS(3381), + [sym_interpolation_regular_start] = ACTIONS(3179), + [sym_interpolation_verbatim_start] = ACTIONS(3179), + [sym_interpolation_raw_start] = ACTIONS(3179), + [sym_raw_string_start] = ACTIONS(3179), }, - [2087] = { - [sym_preproc_region] = STATE(2087), - [sym_preproc_endregion] = STATE(2087), - [sym_preproc_line] = STATE(2087), - [sym_preproc_pragma] = STATE(2087), - [sym_preproc_nullable] = STATE(2087), - [sym_preproc_error] = STATE(2087), - [sym_preproc_warning] = STATE(2087), - [sym_preproc_define] = STATE(2087), - [sym_preproc_undef] = STATE(2087), - [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_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), + [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(3149), + [anon_sym_extern] = ACTIONS(3149), + [anon_sym_alias] = ACTIONS(3149), + [anon_sym_SEMI] = ACTIONS(3151), + [anon_sym_global] = ACTIONS(3149), + [anon_sym_using] = ACTIONS(3149), + [anon_sym_unsafe] = ACTIONS(3149), + [anon_sym_static] = ACTIONS(3149), + [anon_sym_LBRACK] = ACTIONS(3151), + [anon_sym_LPAREN] = ACTIONS(3151), + [anon_sym_return] = ACTIONS(3149), + [anon_sym_ref] = ACTIONS(3149), + [anon_sym_LBRACE] = ACTIONS(3151), + [anon_sym_RBRACE] = ACTIONS(3151), + [anon_sym_delegate] = ACTIONS(3149), + [anon_sym_abstract] = ACTIONS(3149), + [anon_sym_async] = ACTIONS(3149), + [anon_sym_const] = ACTIONS(3149), + [anon_sym_file] = ACTIONS(3149), + [anon_sym_fixed] = ACTIONS(3149), + [anon_sym_internal] = ACTIONS(3149), + [anon_sym_new] = ACTIONS(3149), + [anon_sym_override] = ACTIONS(3149), + [anon_sym_partial] = ACTIONS(3149), + [anon_sym_private] = ACTIONS(3149), + [anon_sym_protected] = ACTIONS(3149), + [anon_sym_public] = ACTIONS(3149), + [anon_sym_readonly] = ACTIONS(3149), + [anon_sym_required] = ACTIONS(3149), + [anon_sym_sealed] = ACTIONS(3149), + [anon_sym_virtual] = ACTIONS(3149), + [anon_sym_volatile] = ACTIONS(3149), + [anon_sym_where] = ACTIONS(3149), + [anon_sym_notnull] = ACTIONS(3149), + [anon_sym_unmanaged] = ACTIONS(3149), + [anon_sym_checked] = ACTIONS(3149), + [anon_sym_BANG] = ACTIONS(3151), + [anon_sym_TILDE] = ACTIONS(3151), + [anon_sym_PLUS_PLUS] = ACTIONS(3151), + [anon_sym_DASH_DASH] = ACTIONS(3151), + [anon_sym_true] = ACTIONS(3149), + [anon_sym_false] = ACTIONS(3149), + [anon_sym_PLUS] = ACTIONS(3149), + [anon_sym_DASH] = ACTIONS(3149), + [anon_sym_STAR] = ACTIONS(3151), + [anon_sym_CARET] = ACTIONS(3151), + [anon_sym_AMP] = ACTIONS(3151), + [anon_sym_this] = ACTIONS(3149), + [anon_sym_scoped] = ACTIONS(3149), + [anon_sym_base] = ACTIONS(3149), + [anon_sym_var] = ACTIONS(3149), + [sym_predefined_type] = ACTIONS(3149), + [anon_sym_break] = ACTIONS(3149), + [anon_sym_unchecked] = ACTIONS(3149), + [anon_sym_continue] = ACTIONS(3149), + [anon_sym_do] = ACTIONS(3149), + [anon_sym_while] = ACTIONS(3149), + [anon_sym_for] = ACTIONS(3149), + [anon_sym_lock] = ACTIONS(3149), + [anon_sym_yield] = ACTIONS(3149), + [anon_sym_switch] = ACTIONS(3149), + [anon_sym_case] = ACTIONS(3149), + [anon_sym_default] = ACTIONS(3149), + [anon_sym_throw] = ACTIONS(3149), + [anon_sym_try] = ACTIONS(3149), + [anon_sym_when] = ACTIONS(3149), + [anon_sym_await] = ACTIONS(3149), + [anon_sym_foreach] = ACTIONS(3149), + [anon_sym_goto] = ACTIONS(3149), + [anon_sym_if] = ACTIONS(3149), + [anon_sym_else] = ACTIONS(3149), + [anon_sym_DOT_DOT] = ACTIONS(3151), + [anon_sym_from] = ACTIONS(3149), + [anon_sym_into] = ACTIONS(3149), + [anon_sym_join] = ACTIONS(3149), + [anon_sym_on] = ACTIONS(3149), + [anon_sym_equals] = ACTIONS(3149), + [anon_sym_let] = ACTIONS(3149), + [anon_sym_orderby] = ACTIONS(3149), + [anon_sym_ascending] = ACTIONS(3149), + [anon_sym_descending] = ACTIONS(3149), + [anon_sym_group] = ACTIONS(3149), + [anon_sym_by] = ACTIONS(3149), + [anon_sym_select] = ACTIONS(3149), + [anon_sym_stackalloc] = ACTIONS(3149), + [anon_sym_sizeof] = ACTIONS(3149), + [anon_sym_typeof] = ACTIONS(3149), + [anon_sym___makeref] = ACTIONS(3149), + [anon_sym___reftype] = ACTIONS(3149), + [anon_sym___refvalue] = ACTIONS(3149), + [sym_null_literal] = ACTIONS(3149), + [anon_sym_SQUOTE] = ACTIONS(3151), + [sym_integer_literal] = ACTIONS(3149), + [sym_real_literal] = ACTIONS(3151), + [anon_sym_DQUOTE] = ACTIONS(3151), + [sym_verbatim_string_literal] = ACTIONS(3151), + [aux_sym_preproc_if_token1] = ACTIONS(3151), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -387152,368 +391300,240 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_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), - }, - [2088] = { - [sym_preproc_region] = STATE(2088), - [sym_preproc_endregion] = STATE(2088), - [sym_preproc_line] = STATE(2088), - [sym_preproc_pragma] = STATE(2088), - [sym_preproc_nullable] = STATE(2088), - [sym_preproc_error] = STATE(2088), - [sym_preproc_warning] = STATE(2088), - [sym_preproc_define] = STATE(2088), - [sym_preproc_undef] = STATE(2088), - [sym__identifier_token] = ACTIONS(3134), - [anon_sym_extern] = ACTIONS(3134), - [anon_sym_alias] = ACTIONS(3134), - [anon_sym_SEMI] = ACTIONS(3136), - [anon_sym_global] = ACTIONS(3134), - [anon_sym_using] = ACTIONS(3134), - [anon_sym_unsafe] = ACTIONS(3134), - [anon_sym_static] = ACTIONS(3134), - [anon_sym_LBRACK] = ACTIONS(3136), - [anon_sym_LPAREN] = ACTIONS(3136), - [anon_sym_return] = ACTIONS(3134), - [anon_sym_ref] = ACTIONS(3134), - [anon_sym_LBRACE] = ACTIONS(3136), - [anon_sym_RBRACE] = ACTIONS(3136), - [anon_sym_delegate] = ACTIONS(3134), - [anon_sym_abstract] = ACTIONS(3134), - [anon_sym_async] = ACTIONS(3134), - [anon_sym_const] = ACTIONS(3134), - [anon_sym_file] = ACTIONS(3134), - [anon_sym_fixed] = ACTIONS(3134), - [anon_sym_internal] = ACTIONS(3134), - [anon_sym_new] = ACTIONS(3134), - [anon_sym_override] = ACTIONS(3134), - [anon_sym_partial] = ACTIONS(3134), - [anon_sym_private] = ACTIONS(3134), - [anon_sym_protected] = ACTIONS(3134), - [anon_sym_public] = ACTIONS(3134), - [anon_sym_readonly] = ACTIONS(3134), - [anon_sym_required] = ACTIONS(3134), - [anon_sym_sealed] = ACTIONS(3134), - [anon_sym_virtual] = ACTIONS(3134), - [anon_sym_volatile] = ACTIONS(3134), - [anon_sym_where] = ACTIONS(3134), - [anon_sym_notnull] = ACTIONS(3134), - [anon_sym_unmanaged] = ACTIONS(3134), - [anon_sym_checked] = ACTIONS(3134), - [anon_sym_BANG] = ACTIONS(3136), - [anon_sym_TILDE] = ACTIONS(3136), - [anon_sym_PLUS_PLUS] = ACTIONS(3136), - [anon_sym_DASH_DASH] = ACTIONS(3136), - [anon_sym_true] = ACTIONS(3134), - [anon_sym_false] = ACTIONS(3134), - [anon_sym_PLUS] = ACTIONS(3134), - [anon_sym_DASH] = ACTIONS(3134), - [anon_sym_STAR] = ACTIONS(3136), - [anon_sym_CARET] = ACTIONS(3136), - [anon_sym_AMP] = ACTIONS(3136), - [anon_sym_this] = ACTIONS(3134), - [anon_sym_scoped] = ACTIONS(3134), - [anon_sym_base] = ACTIONS(3134), - [anon_sym_var] = ACTIONS(3134), - [sym_predefined_type] = ACTIONS(3134), - [anon_sym_break] = ACTIONS(3134), - [anon_sym_unchecked] = ACTIONS(3134), - [anon_sym_continue] = ACTIONS(3134), - [anon_sym_do] = ACTIONS(3134), - [anon_sym_while] = ACTIONS(3134), - [anon_sym_for] = ACTIONS(3134), - [anon_sym_lock] = ACTIONS(3134), - [anon_sym_yield] = ACTIONS(3134), - [anon_sym_switch] = ACTIONS(3134), - [anon_sym_case] = ACTIONS(3134), - [anon_sym_default] = ACTIONS(3134), - [anon_sym_throw] = ACTIONS(3134), - [anon_sym_try] = ACTIONS(3134), - [anon_sym_catch] = ACTIONS(3134), - [anon_sym_when] = ACTIONS(3134), - [anon_sym_finally] = ACTIONS(3134), - [anon_sym_await] = ACTIONS(3134), - [anon_sym_foreach] = ACTIONS(3134), - [anon_sym_goto] = ACTIONS(3134), - [anon_sym_if] = ACTIONS(3134), - [anon_sym_else] = ACTIONS(3134), - [anon_sym_DOT_DOT] = ACTIONS(3136), - [anon_sym_from] = ACTIONS(3134), - [anon_sym_into] = ACTIONS(3134), - [anon_sym_join] = ACTIONS(3134), - [anon_sym_on] = ACTIONS(3134), - [anon_sym_equals] = ACTIONS(3134), - [anon_sym_let] = ACTIONS(3134), - [anon_sym_orderby] = ACTIONS(3134), - [anon_sym_ascending] = ACTIONS(3134), - [anon_sym_descending] = ACTIONS(3134), - [anon_sym_group] = ACTIONS(3134), - [anon_sym_by] = ACTIONS(3134), - [anon_sym_select] = ACTIONS(3134), - [anon_sym_stackalloc] = ACTIONS(3134), - [anon_sym_sizeof] = ACTIONS(3134), - [anon_sym_typeof] = ACTIONS(3134), - [anon_sym___makeref] = ACTIONS(3134), - [anon_sym___reftype] = ACTIONS(3134), - [anon_sym___refvalue] = ACTIONS(3134), - [sym_null_literal] = ACTIONS(3134), - [anon_sym_SQUOTE] = ACTIONS(3136), - [sym_integer_literal] = ACTIONS(3134), - [sym_real_literal] = ACTIONS(3136), - [anon_sym_DQUOTE] = ACTIONS(3136), - [sym_verbatim_string_literal] = ACTIONS(3136), - [aux_sym_preproc_if_token1] = ACTIONS(3136), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(3136), - [sym_interpolation_verbatim_start] = ACTIONS(3136), - [sym_interpolation_raw_start] = ACTIONS(3136), - [sym_raw_string_start] = ACTIONS(3136), + [sym_interpolation_regular_start] = ACTIONS(3151), + [sym_interpolation_verbatim_start] = ACTIONS(3151), + [sym_interpolation_raw_start] = ACTIONS(3151), + [sym_raw_string_start] = ACTIONS(3151), }, - [2089] = { - [sym_preproc_region] = STATE(2089), - [sym_preproc_endregion] = STATE(2089), - [sym_preproc_line] = STATE(2089), - [sym_preproc_pragma] = STATE(2089), - [sym_preproc_nullable] = STATE(2089), - [sym_preproc_error] = STATE(2089), - [sym_preproc_warning] = STATE(2089), - [sym_preproc_define] = STATE(2089), - [sym_preproc_undef] = STATE(2089), - [sym__identifier_token] = ACTIONS(3130), - [anon_sym_extern] = ACTIONS(3130), - [anon_sym_alias] = ACTIONS(3130), - [anon_sym_SEMI] = ACTIONS(3132), - [anon_sym_global] = ACTIONS(3130), - [anon_sym_using] = ACTIONS(3130), - [anon_sym_unsafe] = ACTIONS(3130), - [anon_sym_static] = ACTIONS(3130), - [anon_sym_LBRACK] = ACTIONS(3132), - [anon_sym_LPAREN] = ACTIONS(3132), - [anon_sym_return] = ACTIONS(3130), - [anon_sym_ref] = ACTIONS(3130), - [anon_sym_LBRACE] = ACTIONS(3132), - [anon_sym_RBRACE] = ACTIONS(3132), - [anon_sym_delegate] = ACTIONS(3130), - [anon_sym_abstract] = ACTIONS(3130), - [anon_sym_async] = ACTIONS(3130), - [anon_sym_const] = ACTIONS(3130), - [anon_sym_file] = ACTIONS(3130), - [anon_sym_fixed] = ACTIONS(3130), - [anon_sym_internal] = ACTIONS(3130), - [anon_sym_new] = ACTIONS(3130), - [anon_sym_override] = ACTIONS(3130), - [anon_sym_partial] = ACTIONS(3130), - [anon_sym_private] = ACTIONS(3130), - [anon_sym_protected] = ACTIONS(3130), - [anon_sym_public] = ACTIONS(3130), - [anon_sym_readonly] = ACTIONS(3130), - [anon_sym_required] = ACTIONS(3130), - [anon_sym_sealed] = ACTIONS(3130), - [anon_sym_virtual] = ACTIONS(3130), - [anon_sym_volatile] = ACTIONS(3130), - [anon_sym_where] = ACTIONS(3130), - [anon_sym_notnull] = ACTIONS(3130), - [anon_sym_unmanaged] = ACTIONS(3130), - [anon_sym_checked] = ACTIONS(3130), - [anon_sym_BANG] = ACTIONS(3132), - [anon_sym_TILDE] = ACTIONS(3132), - [anon_sym_PLUS_PLUS] = ACTIONS(3132), - [anon_sym_DASH_DASH] = ACTIONS(3132), - [anon_sym_true] = ACTIONS(3130), - [anon_sym_false] = ACTIONS(3130), - [anon_sym_PLUS] = ACTIONS(3130), - [anon_sym_DASH] = ACTIONS(3130), - [anon_sym_STAR] = ACTIONS(3132), - [anon_sym_CARET] = ACTIONS(3132), - [anon_sym_AMP] = ACTIONS(3132), - [anon_sym_this] = ACTIONS(3130), - [anon_sym_scoped] = ACTIONS(3130), - [anon_sym_base] = ACTIONS(3130), - [anon_sym_var] = ACTIONS(3130), - [sym_predefined_type] = ACTIONS(3130), - [anon_sym_break] = ACTIONS(3130), - [anon_sym_unchecked] = ACTIONS(3130), - [anon_sym_continue] = ACTIONS(3130), - [anon_sym_do] = ACTIONS(3130), - [anon_sym_while] = ACTIONS(3130), - [anon_sym_for] = ACTIONS(3130), - [anon_sym_lock] = ACTIONS(3130), - [anon_sym_yield] = ACTIONS(3130), - [anon_sym_switch] = ACTIONS(3130), - [anon_sym_case] = ACTIONS(3130), - [anon_sym_default] = ACTIONS(3130), - [anon_sym_throw] = ACTIONS(3130), - [anon_sym_try] = ACTIONS(3130), - [anon_sym_catch] = ACTIONS(3130), - [anon_sym_when] = ACTIONS(3130), - [anon_sym_finally] = ACTIONS(3130), - [anon_sym_await] = ACTIONS(3130), - [anon_sym_foreach] = ACTIONS(3130), - [anon_sym_goto] = ACTIONS(3130), - [anon_sym_if] = ACTIONS(3130), - [anon_sym_else] = ACTIONS(3130), - [anon_sym_DOT_DOT] = ACTIONS(3132), - [anon_sym_from] = ACTIONS(3130), - [anon_sym_into] = ACTIONS(3130), - [anon_sym_join] = ACTIONS(3130), - [anon_sym_on] = ACTIONS(3130), - [anon_sym_equals] = ACTIONS(3130), - [anon_sym_let] = ACTIONS(3130), - [anon_sym_orderby] = ACTIONS(3130), - [anon_sym_ascending] = ACTIONS(3130), - [anon_sym_descending] = ACTIONS(3130), - [anon_sym_group] = ACTIONS(3130), - [anon_sym_by] = ACTIONS(3130), - [anon_sym_select] = ACTIONS(3130), - [anon_sym_stackalloc] = ACTIONS(3130), - [anon_sym_sizeof] = ACTIONS(3130), - [anon_sym_typeof] = ACTIONS(3130), - [anon_sym___makeref] = ACTIONS(3130), - [anon_sym___reftype] = ACTIONS(3130), - [anon_sym___refvalue] = ACTIONS(3130), - [sym_null_literal] = ACTIONS(3130), - [anon_sym_SQUOTE] = ACTIONS(3132), - [sym_integer_literal] = ACTIONS(3130), - [sym_real_literal] = ACTIONS(3132), - [anon_sym_DQUOTE] = ACTIONS(3132), - [sym_verbatim_string_literal] = ACTIONS(3132), - [aux_sym_preproc_if_token1] = ACTIONS(3132), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(3132), - [sym_interpolation_verbatim_start] = ACTIONS(3132), - [sym_interpolation_raw_start] = ACTIONS(3132), - [sym_raw_string_start] = ACTIONS(3132), + [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(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_ref] = ACTIONS(3165), + [anon_sym_LBRACE] = ACTIONS(3167), + [anon_sym_RBRACE] = ACTIONS(3167), + [anon_sym_delegate] = 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_case] = ACTIONS(3165), + [anon_sym_default] = ACTIONS(3165), + [anon_sym_throw] = ACTIONS(3165), + [anon_sym_try] = ACTIONS(3165), + [anon_sym_when] = 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), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [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), }, - [2090] = { - [sym_preproc_region] = STATE(2090), - [sym_preproc_endregion] = STATE(2090), - [sym_preproc_line] = STATE(2090), - [sym_preproc_pragma] = STATE(2090), - [sym_preproc_nullable] = STATE(2090), - [sym_preproc_error] = STATE(2090), - [sym_preproc_warning] = STATE(2090), - [sym_preproc_define] = STATE(2090), - [sym_preproc_undef] = STATE(2090), - [sym__identifier_token] = ACTIONS(2951), - [anon_sym_extern] = ACTIONS(2951), - [anon_sym_alias] = ACTIONS(2951), - [anon_sym_SEMI] = ACTIONS(2953), - [anon_sym_global] = ACTIONS(2951), - [anon_sym_using] = ACTIONS(2951), - [anon_sym_unsafe] = ACTIONS(2951), - [anon_sym_static] = ACTIONS(2951), - [anon_sym_LBRACK] = ACTIONS(2953), - [anon_sym_LPAREN] = ACTIONS(2953), - [anon_sym_return] = ACTIONS(2951), - [anon_sym_ref] = ACTIONS(2951), - [anon_sym_LBRACE] = ACTIONS(2953), - [anon_sym_RBRACE] = ACTIONS(2953), - [anon_sym_delegate] = ACTIONS(2951), - [anon_sym_abstract] = ACTIONS(2951), - [anon_sym_async] = ACTIONS(2951), - [anon_sym_const] = ACTIONS(2951), - [anon_sym_file] = ACTIONS(2951), - [anon_sym_fixed] = ACTIONS(2951), - [anon_sym_internal] = ACTIONS(2951), - [anon_sym_new] = ACTIONS(2951), - [anon_sym_override] = ACTIONS(2951), - [anon_sym_partial] = ACTIONS(2951), - [anon_sym_private] = ACTIONS(2951), - [anon_sym_protected] = ACTIONS(2951), - [anon_sym_public] = ACTIONS(2951), - [anon_sym_readonly] = ACTIONS(2951), - [anon_sym_required] = ACTIONS(2951), - [anon_sym_sealed] = ACTIONS(2951), - [anon_sym_virtual] = ACTIONS(2951), - [anon_sym_volatile] = ACTIONS(2951), - [anon_sym_where] = ACTIONS(2951), - [anon_sym_notnull] = ACTIONS(2951), - [anon_sym_unmanaged] = ACTIONS(2951), - [anon_sym_checked] = ACTIONS(2951), - [anon_sym_BANG] = ACTIONS(2953), - [anon_sym_TILDE] = ACTIONS(2953), - [anon_sym_PLUS_PLUS] = ACTIONS(2953), - [anon_sym_DASH_DASH] = ACTIONS(2953), - [anon_sym_true] = ACTIONS(2951), - [anon_sym_false] = ACTIONS(2951), - [anon_sym_PLUS] = ACTIONS(2951), - [anon_sym_DASH] = ACTIONS(2951), - [anon_sym_STAR] = ACTIONS(2953), - [anon_sym_CARET] = ACTIONS(2953), - [anon_sym_AMP] = ACTIONS(2953), - [anon_sym_this] = ACTIONS(2951), - [anon_sym_scoped] = ACTIONS(2951), - [anon_sym_base] = ACTIONS(2951), - [anon_sym_var] = ACTIONS(2951), - [sym_predefined_type] = ACTIONS(2951), - [anon_sym_break] = ACTIONS(2951), - [anon_sym_unchecked] = ACTIONS(2951), - [anon_sym_continue] = ACTIONS(2951), - [anon_sym_do] = ACTIONS(2951), - [anon_sym_while] = ACTIONS(2951), - [anon_sym_for] = ACTIONS(2951), - [anon_sym_lock] = ACTIONS(2951), - [anon_sym_yield] = ACTIONS(2951), - [anon_sym_switch] = ACTIONS(2951), - [anon_sym_case] = ACTIONS(2951), - [anon_sym_default] = ACTIONS(2951), - [anon_sym_throw] = ACTIONS(2951), - [anon_sym_try] = ACTIONS(2951), - [anon_sym_catch] = ACTIONS(2951), - [anon_sym_when] = ACTIONS(2951), - [anon_sym_finally] = ACTIONS(2951), - [anon_sym_await] = ACTIONS(2951), - [anon_sym_foreach] = ACTIONS(2951), - [anon_sym_goto] = ACTIONS(2951), - [anon_sym_if] = ACTIONS(2951), - [anon_sym_else] = ACTIONS(2951), - [anon_sym_DOT_DOT] = ACTIONS(2953), - [anon_sym_from] = ACTIONS(2951), - [anon_sym_into] = ACTIONS(2951), - [anon_sym_join] = ACTIONS(2951), - [anon_sym_on] = ACTIONS(2951), - [anon_sym_equals] = ACTIONS(2951), - [anon_sym_let] = ACTIONS(2951), - [anon_sym_orderby] = ACTIONS(2951), - [anon_sym_ascending] = ACTIONS(2951), - [anon_sym_descending] = ACTIONS(2951), - [anon_sym_group] = ACTIONS(2951), - [anon_sym_by] = ACTIONS(2951), - [anon_sym_select] = ACTIONS(2951), - [anon_sym_stackalloc] = ACTIONS(2951), - [anon_sym_sizeof] = ACTIONS(2951), - [anon_sym_typeof] = ACTIONS(2951), - [anon_sym___makeref] = ACTIONS(2951), - [anon_sym___reftype] = ACTIONS(2951), - [anon_sym___refvalue] = ACTIONS(2951), - [sym_null_literal] = ACTIONS(2951), - [anon_sym_SQUOTE] = ACTIONS(2953), - [sym_integer_literal] = ACTIONS(2951), - [sym_real_literal] = ACTIONS(2953), - [anon_sym_DQUOTE] = ACTIONS(2953), - [sym_verbatim_string_literal] = ACTIONS(2953), - [aux_sym_preproc_if_token1] = ACTIONS(2953), + [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(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), @@ -387524,120 +391544,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(2953), - [sym_interpolation_verbatim_start] = ACTIONS(2953), - [sym_interpolation_raw_start] = ACTIONS(2953), - [sym_raw_string_start] = ACTIONS(2953), + [sym_interpolation_regular_start] = ACTIONS(3203), + [sym_interpolation_verbatim_start] = ACTIONS(3203), + [sym_interpolation_raw_start] = ACTIONS(3203), + [sym_raw_string_start] = ACTIONS(3203), }, - [2091] = { - [sym_preproc_region] = STATE(2091), - [sym_preproc_endregion] = STATE(2091), - [sym_preproc_line] = STATE(2091), - [sym_preproc_pragma] = STATE(2091), - [sym_preproc_nullable] = STATE(2091), - [sym_preproc_error] = STATE(2091), - [sym_preproc_warning] = STATE(2091), - [sym_preproc_define] = STATE(2091), - [sym_preproc_undef] = STATE(2091), - [sym__identifier_token] = ACTIONS(3141), - [anon_sym_extern] = ACTIONS(3141), - [anon_sym_alias] = ACTIONS(3141), - [anon_sym_SEMI] = ACTIONS(3143), - [anon_sym_global] = ACTIONS(3141), - [anon_sym_using] = ACTIONS(3141), - [anon_sym_unsafe] = ACTIONS(3141), - [anon_sym_static] = ACTIONS(3141), - [anon_sym_LBRACK] = ACTIONS(3143), - [anon_sym_LPAREN] = ACTIONS(3143), - [anon_sym_return] = ACTIONS(3141), - [anon_sym_ref] = ACTIONS(3141), - [anon_sym_LBRACE] = ACTIONS(3143), - [anon_sym_RBRACE] = ACTIONS(3143), - [anon_sym_delegate] = ACTIONS(3141), - [anon_sym_abstract] = ACTIONS(3141), - [anon_sym_async] = ACTIONS(3141), - [anon_sym_const] = ACTIONS(3141), - [anon_sym_file] = ACTIONS(3141), - [anon_sym_fixed] = ACTIONS(3141), - [anon_sym_internal] = ACTIONS(3141), - [anon_sym_new] = ACTIONS(3141), - [anon_sym_override] = ACTIONS(3141), - [anon_sym_partial] = ACTIONS(3141), - [anon_sym_private] = ACTIONS(3141), - [anon_sym_protected] = ACTIONS(3141), - [anon_sym_public] = ACTIONS(3141), - [anon_sym_readonly] = ACTIONS(3141), - [anon_sym_required] = ACTIONS(3141), - [anon_sym_sealed] = ACTIONS(3141), - [anon_sym_virtual] = ACTIONS(3141), - [anon_sym_volatile] = ACTIONS(3141), - [anon_sym_where] = ACTIONS(3141), - [anon_sym_notnull] = ACTIONS(3141), - [anon_sym_unmanaged] = ACTIONS(3141), - [anon_sym_checked] = ACTIONS(3141), - [anon_sym_BANG] = ACTIONS(3143), - [anon_sym_TILDE] = ACTIONS(3143), - [anon_sym_PLUS_PLUS] = ACTIONS(3143), - [anon_sym_DASH_DASH] = ACTIONS(3143), - [anon_sym_true] = ACTIONS(3141), - [anon_sym_false] = ACTIONS(3141), - [anon_sym_PLUS] = ACTIONS(3141), - [anon_sym_DASH] = ACTIONS(3141), - [anon_sym_STAR] = ACTIONS(3143), - [anon_sym_CARET] = ACTIONS(3143), - [anon_sym_AMP] = ACTIONS(3143), - [anon_sym_this] = ACTIONS(3141), - [anon_sym_scoped] = ACTIONS(3141), - [anon_sym_base] = ACTIONS(3141), - [anon_sym_var] = ACTIONS(3141), - [sym_predefined_type] = ACTIONS(3141), - [anon_sym_break] = ACTIONS(3141), - [anon_sym_unchecked] = ACTIONS(3141), - [anon_sym_continue] = ACTIONS(3141), - [anon_sym_do] = ACTIONS(3141), - [anon_sym_while] = ACTIONS(3141), - [anon_sym_for] = ACTIONS(3141), - [anon_sym_lock] = ACTIONS(3141), - [anon_sym_yield] = ACTIONS(3141), - [anon_sym_switch] = ACTIONS(3141), - [anon_sym_case] = ACTIONS(3141), - [anon_sym_default] = ACTIONS(3141), - [anon_sym_throw] = ACTIONS(3141), - [anon_sym_try] = ACTIONS(3141), - [anon_sym_catch] = ACTIONS(3141), - [anon_sym_when] = ACTIONS(3141), - [anon_sym_finally] = ACTIONS(3141), - [anon_sym_await] = ACTIONS(3141), - [anon_sym_foreach] = ACTIONS(3141), - [anon_sym_goto] = ACTIONS(3141), - [anon_sym_if] = ACTIONS(3141), - [anon_sym_else] = ACTIONS(3141), - [anon_sym_DOT_DOT] = ACTIONS(3143), - [anon_sym_from] = ACTIONS(3141), - [anon_sym_into] = ACTIONS(3141), - [anon_sym_join] = ACTIONS(3141), - [anon_sym_on] = ACTIONS(3141), - [anon_sym_equals] = ACTIONS(3141), - [anon_sym_let] = ACTIONS(3141), - [anon_sym_orderby] = ACTIONS(3141), - [anon_sym_ascending] = ACTIONS(3141), - [anon_sym_descending] = ACTIONS(3141), - [anon_sym_group] = ACTIONS(3141), - [anon_sym_by] = ACTIONS(3141), - [anon_sym_select] = ACTIONS(3141), - [anon_sym_stackalloc] = ACTIONS(3141), - [anon_sym_sizeof] = ACTIONS(3141), - [anon_sym_typeof] = ACTIONS(3141), - [anon_sym___makeref] = ACTIONS(3141), - [anon_sym___reftype] = ACTIONS(3141), - [anon_sym___refvalue] = ACTIONS(3141), - [sym_null_literal] = ACTIONS(3141), - [anon_sym_SQUOTE] = ACTIONS(3143), - [sym_integer_literal] = ACTIONS(3141), - [sym_real_literal] = ACTIONS(3143), - [anon_sym_DQUOTE] = ACTIONS(3143), - [sym_verbatim_string_literal] = ACTIONS(3143), - [aux_sym_preproc_if_token1] = ACTIONS(3143), + [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(3153), + [anon_sym_extern] = ACTIONS(3153), + [anon_sym_alias] = ACTIONS(3153), + [anon_sym_SEMI] = ACTIONS(3155), + [anon_sym_global] = ACTIONS(3153), + [anon_sym_using] = ACTIONS(3153), + [anon_sym_unsafe] = ACTIONS(3153), + [anon_sym_static] = ACTIONS(3153), + [anon_sym_LBRACK] = ACTIONS(3155), + [anon_sym_LPAREN] = ACTIONS(3155), + [anon_sym_return] = ACTIONS(3153), + [anon_sym_ref] = ACTIONS(3153), + [anon_sym_LBRACE] = ACTIONS(3155), + [anon_sym_RBRACE] = ACTIONS(3155), + [anon_sym_delegate] = ACTIONS(3153), + [anon_sym_abstract] = ACTIONS(3153), + [anon_sym_async] = ACTIONS(3153), + [anon_sym_const] = ACTIONS(3153), + [anon_sym_file] = ACTIONS(3153), + [anon_sym_fixed] = ACTIONS(3153), + [anon_sym_internal] = ACTIONS(3153), + [anon_sym_new] = ACTIONS(3153), + [anon_sym_override] = ACTIONS(3153), + [anon_sym_partial] = ACTIONS(3153), + [anon_sym_private] = ACTIONS(3153), + [anon_sym_protected] = ACTIONS(3153), + [anon_sym_public] = ACTIONS(3153), + [anon_sym_readonly] = ACTIONS(3153), + [anon_sym_required] = ACTIONS(3153), + [anon_sym_sealed] = ACTIONS(3153), + [anon_sym_virtual] = ACTIONS(3153), + [anon_sym_volatile] = ACTIONS(3153), + [anon_sym_where] = ACTIONS(3153), + [anon_sym_notnull] = ACTIONS(3153), + [anon_sym_unmanaged] = ACTIONS(3153), + [anon_sym_checked] = ACTIONS(3153), + [anon_sym_BANG] = ACTIONS(3155), + [anon_sym_TILDE] = ACTIONS(3155), + [anon_sym_PLUS_PLUS] = ACTIONS(3155), + [anon_sym_DASH_DASH] = ACTIONS(3155), + [anon_sym_true] = ACTIONS(3153), + [anon_sym_false] = ACTIONS(3153), + [anon_sym_PLUS] = ACTIONS(3153), + [anon_sym_DASH] = ACTIONS(3153), + [anon_sym_STAR] = ACTIONS(3155), + [anon_sym_CARET] = ACTIONS(3155), + [anon_sym_AMP] = ACTIONS(3155), + [anon_sym_this] = ACTIONS(3153), + [anon_sym_scoped] = ACTIONS(3153), + [anon_sym_base] = ACTIONS(3153), + [anon_sym_var] = ACTIONS(3153), + [sym_predefined_type] = ACTIONS(3153), + [anon_sym_break] = ACTIONS(3153), + [anon_sym_unchecked] = ACTIONS(3153), + [anon_sym_continue] = ACTIONS(3153), + [anon_sym_do] = ACTIONS(3153), + [anon_sym_while] = ACTIONS(3153), + [anon_sym_for] = ACTIONS(3153), + [anon_sym_lock] = ACTIONS(3153), + [anon_sym_yield] = ACTIONS(3153), + [anon_sym_switch] = ACTIONS(3153), + [anon_sym_case] = ACTIONS(3153), + [anon_sym_default] = ACTIONS(3153), + [anon_sym_throw] = ACTIONS(3153), + [anon_sym_try] = ACTIONS(3153), + [anon_sym_when] = ACTIONS(3153), + [anon_sym_await] = ACTIONS(3153), + [anon_sym_foreach] = ACTIONS(3153), + [anon_sym_goto] = ACTIONS(3153), + [anon_sym_if] = ACTIONS(3153), + [anon_sym_else] = ACTIONS(3153), + [anon_sym_DOT_DOT] = ACTIONS(3155), + [anon_sym_from] = ACTIONS(3153), + [anon_sym_into] = ACTIONS(3153), + [anon_sym_join] = ACTIONS(3153), + [anon_sym_on] = ACTIONS(3153), + [anon_sym_equals] = ACTIONS(3153), + [anon_sym_let] = ACTIONS(3153), + [anon_sym_orderby] = ACTIONS(3153), + [anon_sym_ascending] = ACTIONS(3153), + [anon_sym_descending] = ACTIONS(3153), + [anon_sym_group] = ACTIONS(3153), + [anon_sym_by] = ACTIONS(3153), + [anon_sym_select] = ACTIONS(3153), + [anon_sym_stackalloc] = ACTIONS(3153), + [anon_sym_sizeof] = ACTIONS(3153), + [anon_sym_typeof] = ACTIONS(3153), + [anon_sym___makeref] = ACTIONS(3153), + [anon_sym___reftype] = ACTIONS(3153), + [anon_sym___refvalue] = ACTIONS(3153), + [sym_null_literal] = ACTIONS(3153), + [anon_sym_SQUOTE] = ACTIONS(3155), + [sym_integer_literal] = ACTIONS(3153), + [sym_real_literal] = ACTIONS(3155), + [anon_sym_DQUOTE] = ACTIONS(3155), + [sym_verbatim_string_literal] = ACTIONS(3155), + [aux_sym_preproc_if_token1] = ACTIONS(3155), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -387648,120 +391666,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(3143), - [sym_interpolation_verbatim_start] = ACTIONS(3143), - [sym_interpolation_raw_start] = ACTIONS(3143), - [sym_raw_string_start] = ACTIONS(3143), + [sym_interpolation_regular_start] = ACTIONS(3155), + [sym_interpolation_verbatim_start] = ACTIONS(3155), + [sym_interpolation_raw_start] = ACTIONS(3155), + [sym_raw_string_start] = ACTIONS(3155), }, - [2092] = { - [sym_preproc_region] = STATE(2092), - [sym_preproc_endregion] = STATE(2092), - [sym_preproc_line] = STATE(2092), - [sym_preproc_pragma] = STATE(2092), - [sym_preproc_nullable] = STATE(2092), - [sym_preproc_error] = STATE(2092), - [sym_preproc_warning] = STATE(2092), - [sym_preproc_define] = STATE(2092), - [sym_preproc_undef] = STATE(2092), - [sym__identifier_token] = ACTIONS(3126), - [anon_sym_extern] = ACTIONS(3126), - [anon_sym_alias] = ACTIONS(3126), - [anon_sym_SEMI] = ACTIONS(3128), - [anon_sym_global] = ACTIONS(3126), - [anon_sym_using] = ACTIONS(3126), - [anon_sym_unsafe] = ACTIONS(3126), - [anon_sym_static] = ACTIONS(3126), - [anon_sym_LBRACK] = ACTIONS(3128), - [anon_sym_LPAREN] = ACTIONS(3128), - [anon_sym_return] = ACTIONS(3126), - [anon_sym_ref] = ACTIONS(3126), - [anon_sym_LBRACE] = ACTIONS(3128), - [anon_sym_RBRACE] = ACTIONS(3128), - [anon_sym_delegate] = ACTIONS(3126), - [anon_sym_abstract] = ACTIONS(3126), - [anon_sym_async] = ACTIONS(3126), - [anon_sym_const] = ACTIONS(3126), - [anon_sym_file] = ACTIONS(3126), - [anon_sym_fixed] = ACTIONS(3126), - [anon_sym_internal] = ACTIONS(3126), - [anon_sym_new] = ACTIONS(3126), - [anon_sym_override] = ACTIONS(3126), - [anon_sym_partial] = ACTIONS(3126), - [anon_sym_private] = ACTIONS(3126), - [anon_sym_protected] = ACTIONS(3126), - [anon_sym_public] = ACTIONS(3126), - [anon_sym_readonly] = ACTIONS(3126), - [anon_sym_required] = ACTIONS(3126), - [anon_sym_sealed] = ACTIONS(3126), - [anon_sym_virtual] = ACTIONS(3126), - [anon_sym_volatile] = ACTIONS(3126), - [anon_sym_where] = ACTIONS(3126), - [anon_sym_notnull] = ACTIONS(3126), - [anon_sym_unmanaged] = ACTIONS(3126), - [anon_sym_checked] = ACTIONS(3126), - [anon_sym_BANG] = ACTIONS(3128), - [anon_sym_TILDE] = ACTIONS(3128), - [anon_sym_PLUS_PLUS] = ACTIONS(3128), - [anon_sym_DASH_DASH] = ACTIONS(3128), - [anon_sym_true] = ACTIONS(3126), - [anon_sym_false] = ACTIONS(3126), - [anon_sym_PLUS] = ACTIONS(3126), - [anon_sym_DASH] = ACTIONS(3126), - [anon_sym_STAR] = ACTIONS(3128), - [anon_sym_CARET] = ACTIONS(3128), - [anon_sym_AMP] = ACTIONS(3128), - [anon_sym_this] = ACTIONS(3126), - [anon_sym_scoped] = ACTIONS(3126), - [anon_sym_base] = ACTIONS(3126), - [anon_sym_var] = ACTIONS(3126), - [sym_predefined_type] = ACTIONS(3126), - [anon_sym_break] = ACTIONS(3126), - [anon_sym_unchecked] = ACTIONS(3126), - [anon_sym_continue] = ACTIONS(3126), - [anon_sym_do] = ACTIONS(3126), - [anon_sym_while] = ACTIONS(3126), - [anon_sym_for] = ACTIONS(3126), - [anon_sym_lock] = ACTIONS(3126), - [anon_sym_yield] = ACTIONS(3126), - [anon_sym_switch] = ACTIONS(3126), - [anon_sym_case] = ACTIONS(3126), - [anon_sym_default] = ACTIONS(3126), - [anon_sym_throw] = ACTIONS(3126), - [anon_sym_try] = ACTIONS(3126), - [anon_sym_catch] = ACTIONS(3126), - [anon_sym_when] = ACTIONS(3126), - [anon_sym_finally] = ACTIONS(3126), - [anon_sym_await] = ACTIONS(3126), - [anon_sym_foreach] = ACTIONS(3126), - [anon_sym_goto] = ACTIONS(3126), - [anon_sym_if] = ACTIONS(3126), - [anon_sym_else] = ACTIONS(3126), - [anon_sym_DOT_DOT] = ACTIONS(3128), - [anon_sym_from] = ACTIONS(3126), - [anon_sym_into] = ACTIONS(3126), - [anon_sym_join] = ACTIONS(3126), - [anon_sym_on] = ACTIONS(3126), - [anon_sym_equals] = ACTIONS(3126), - [anon_sym_let] = ACTIONS(3126), - [anon_sym_orderby] = ACTIONS(3126), - [anon_sym_ascending] = ACTIONS(3126), - [anon_sym_descending] = ACTIONS(3126), - [anon_sym_group] = ACTIONS(3126), - [anon_sym_by] = ACTIONS(3126), - [anon_sym_select] = ACTIONS(3126), - [anon_sym_stackalloc] = ACTIONS(3126), - [anon_sym_sizeof] = ACTIONS(3126), - [anon_sym_typeof] = ACTIONS(3126), - [anon_sym___makeref] = ACTIONS(3126), - [anon_sym___reftype] = ACTIONS(3126), - [anon_sym___refvalue] = ACTIONS(3126), - [sym_null_literal] = ACTIONS(3126), - [anon_sym_SQUOTE] = ACTIONS(3128), - [sym_integer_literal] = ACTIONS(3126), - [sym_real_literal] = ACTIONS(3128), - [anon_sym_DQUOTE] = ACTIONS(3128), - [sym_verbatim_string_literal] = ACTIONS(3128), - [aux_sym_preproc_if_token1] = ACTIONS(3128), + [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(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), @@ -387772,123 +391788,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(3128), - [sym_interpolation_verbatim_start] = ACTIONS(3128), - [sym_interpolation_raw_start] = ACTIONS(3128), - [sym_raw_string_start] = ACTIONS(3128), + [sym_interpolation_regular_start] = ACTIONS(3199), + [sym_interpolation_verbatim_start] = ACTIONS(3199), + [sym_interpolation_raw_start] = ACTIONS(3199), + [sym_raw_string_start] = ACTIONS(3199), }, - [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), - [sym__identifier_token] = ACTIONS(3479), - [anon_sym_extern] = ACTIONS(3482), - [anon_sym_alias] = ACTIONS(3479), - [anon_sym_global] = ACTIONS(3479), - [anon_sym_unsafe] = ACTIONS(3482), - [anon_sym_EQ] = ACTIONS(3447), - [anon_sym_static] = ACTIONS(3482), - [anon_sym_LBRACK] = ACTIONS(3445), - [anon_sym_COLON] = ACTIONS(3447), - [anon_sym_LPAREN] = ACTIONS(3484), - [anon_sym_class] = ACTIONS(3482), - [anon_sym_ref] = ACTIONS(3482), - [anon_sym_struct] = ACTIONS(3482), - [anon_sym_enum] = ACTIONS(3482), - [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(3479), - [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_LT] = ACTIONS(3447), - [anon_sym_GT] = ACTIONS(3447), - [anon_sym_where] = ACTIONS(3479), - [anon_sym_QMARK] = ACTIONS(3447), - [anon_sym_notnull] = ACTIONS(3479), - [anon_sym_unmanaged] = ACTIONS(3479), - [anon_sym_BANG] = ACTIONS(3447), - [anon_sym_PLUS_PLUS] = ACTIONS(3445), - [anon_sym_DASH_DASH] = ACTIONS(3445), - [anon_sym_PLUS] = ACTIONS(3447), - [anon_sym_DASH] = ACTIONS(3447), - [anon_sym_STAR] = ACTIONS(3447), - [anon_sym_SLASH] = ACTIONS(3447), - [anon_sym_PERCENT] = ACTIONS(3447), - [anon_sym_CARET] = ACTIONS(3447), - [anon_sym_PIPE] = ACTIONS(3447), - [anon_sym_AMP] = ACTIONS(3447), - [anon_sym_LT_LT] = ACTIONS(3447), - [anon_sym_GT_GT] = ACTIONS(3447), - [anon_sym_GT_GT_GT] = ACTIONS(3447), - [anon_sym_EQ_EQ] = ACTIONS(3445), - [anon_sym_BANG_EQ] = ACTIONS(3445), - [anon_sym_GT_EQ] = ACTIONS(3445), - [anon_sym_LT_EQ] = ACTIONS(3445), - [anon_sym_DOT] = ACTIONS(3447), - [anon_sym_scoped] = ACTIONS(3479), - [anon_sym_EQ_GT] = ACTIONS(3445), - [anon_sym_COLON_COLON] = ACTIONS(3445), - [anon_sym_var] = ACTIONS(3479), - [sym_predefined_type] = ACTIONS(3482), - [anon_sym_yield] = ACTIONS(3479), - [anon_sym_switch] = ACTIONS(3447), - [anon_sym_when] = ACTIONS(3479), - [anon_sym_DOT_DOT] = ACTIONS(3445), - [anon_sym_PLUS_EQ] = ACTIONS(3445), - [anon_sym_DASH_EQ] = ACTIONS(3445), - [anon_sym_STAR_EQ] = ACTIONS(3445), - [anon_sym_SLASH_EQ] = ACTIONS(3445), - [anon_sym_PERCENT_EQ] = ACTIONS(3445), - [anon_sym_AMP_EQ] = ACTIONS(3445), - [anon_sym_CARET_EQ] = ACTIONS(3445), - [anon_sym_PIPE_EQ] = ACTIONS(3445), - [anon_sym_LT_LT_EQ] = ACTIONS(3445), - [anon_sym_GT_GT_EQ] = ACTIONS(3445), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3445), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3445), - [anon_sym_AMP_AMP] = ACTIONS(3445), - [anon_sym_PIPE_PIPE] = ACTIONS(3445), - [anon_sym_QMARK_QMARK] = ACTIONS(3447), - [anon_sym_from] = ACTIONS(3479), - [anon_sym_into] = ACTIONS(3479), - [anon_sym_join] = ACTIONS(3479), - [anon_sym_on] = ACTIONS(3479), - [anon_sym_equals] = ACTIONS(3479), - [anon_sym_let] = ACTIONS(3479), - [anon_sym_orderby] = ACTIONS(3479), - [anon_sym_ascending] = ACTIONS(3479), - [anon_sym_descending] = ACTIONS(3479), - [anon_sym_group] = ACTIONS(3479), - [anon_sym_by] = ACTIONS(3479), - [anon_sym_select] = ACTIONS(3479), - [anon_sym_as] = ACTIONS(3447), - [anon_sym_is] = ACTIONS(3447), - [anon_sym_DASH_GT] = ACTIONS(3445), - [anon_sym_with] = ACTIONS(3447), - [aux_sym_preproc_if_token3] = ACTIONS(3445), - [aux_sym_preproc_else_token1] = ACTIONS(3445), - [aux_sym_preproc_elif_token1] = ACTIONS(3445), + [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(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_ref] = ACTIONS(3169), + [anon_sym_LBRACE] = ACTIONS(3171), + [anon_sym_RBRACE] = ACTIONS(3171), + [anon_sym_delegate] = 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_case] = 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), @@ -387899,480 +391910,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(3171), + [sym_interpolation_verbatim_start] = ACTIONS(3171), + [sym_interpolation_raw_start] = ACTIONS(3171), + [sym_raw_string_start] = ACTIONS(3171), }, - [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), - [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), - }, - [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), - [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), - }, - [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(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_ref] = ACTIONS(3307), - [anon_sym_LBRACE] = ACTIONS(3309), - [anon_sym_RBRACE] = ACTIONS(3309), - [anon_sym_delegate] = 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_case] = 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), - }, - [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(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_ref] = ACTIONS(3323), - [anon_sym_LBRACE] = ACTIONS(3325), - [anon_sym_RBRACE] = ACTIONS(3325), - [anon_sym_delegate] = 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_case] = 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), + [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(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), @@ -388383,240 +392032,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(3325), - [sym_interpolation_verbatim_start] = ACTIONS(3325), - [sym_interpolation_raw_start] = ACTIONS(3325), - [sym_raw_string_start] = ACTIONS(3325), - }, - [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(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), + [sym_interpolation_regular_start] = ACTIONS(3175), + [sym_interpolation_verbatim_start] = ACTIONS(3175), + [sym_interpolation_raw_start] = ACTIONS(3175), + [sym_raw_string_start] = ACTIONS(3175), }, - [2099] = { - [sym_preproc_region] = STATE(2099), - [sym_preproc_endregion] = STATE(2099), - [sym_preproc_line] = STATE(2099), - [sym_preproc_pragma] = STATE(2099), - [sym_preproc_nullable] = STATE(2099), - [sym_preproc_error] = STATE(2099), - [sym_preproc_warning] = STATE(2099), - [sym_preproc_define] = STATE(2099), - [sym_preproc_undef] = STATE(2099), - [sym__identifier_token] = ACTIONS(3149), - [anon_sym_extern] = ACTIONS(3149), - [anon_sym_alias] = ACTIONS(3149), - [anon_sym_SEMI] = ACTIONS(3151), - [anon_sym_global] = ACTIONS(3149), - [anon_sym_using] = ACTIONS(3149), - [anon_sym_unsafe] = ACTIONS(3149), - [anon_sym_static] = ACTIONS(3149), - [anon_sym_LBRACK] = ACTIONS(3151), - [anon_sym_LPAREN] = ACTIONS(3151), - [anon_sym_return] = ACTIONS(3149), - [anon_sym_ref] = ACTIONS(3149), - [anon_sym_LBRACE] = ACTIONS(3151), - [anon_sym_RBRACE] = ACTIONS(3151), - [anon_sym_delegate] = ACTIONS(3149), - [anon_sym_abstract] = ACTIONS(3149), - [anon_sym_async] = ACTIONS(3149), - [anon_sym_const] = ACTIONS(3149), - [anon_sym_file] = ACTIONS(3149), - [anon_sym_fixed] = ACTIONS(3149), - [anon_sym_internal] = ACTIONS(3149), - [anon_sym_new] = ACTIONS(3149), - [anon_sym_override] = ACTIONS(3149), - [anon_sym_partial] = ACTIONS(3149), - [anon_sym_private] = ACTIONS(3149), - [anon_sym_protected] = ACTIONS(3149), - [anon_sym_public] = ACTIONS(3149), - [anon_sym_readonly] = ACTIONS(3149), - [anon_sym_required] = ACTIONS(3149), - [anon_sym_sealed] = ACTIONS(3149), - [anon_sym_virtual] = ACTIONS(3149), - [anon_sym_volatile] = ACTIONS(3149), - [anon_sym_where] = ACTIONS(3149), - [anon_sym_notnull] = ACTIONS(3149), - [anon_sym_unmanaged] = ACTIONS(3149), - [anon_sym_checked] = ACTIONS(3149), - [anon_sym_BANG] = ACTIONS(3151), - [anon_sym_TILDE] = ACTIONS(3151), - [anon_sym_PLUS_PLUS] = ACTIONS(3151), - [anon_sym_DASH_DASH] = ACTIONS(3151), - [anon_sym_true] = ACTIONS(3149), - [anon_sym_false] = ACTIONS(3149), - [anon_sym_PLUS] = ACTIONS(3149), - [anon_sym_DASH] = ACTIONS(3149), - [anon_sym_STAR] = ACTIONS(3151), - [anon_sym_CARET] = ACTIONS(3151), - [anon_sym_AMP] = ACTIONS(3151), - [anon_sym_this] = ACTIONS(3149), - [anon_sym_scoped] = ACTIONS(3149), - [anon_sym_base] = ACTIONS(3149), - [anon_sym_var] = ACTIONS(3149), - [sym_predefined_type] = ACTIONS(3149), - [anon_sym_break] = ACTIONS(3149), - [anon_sym_unchecked] = ACTIONS(3149), - [anon_sym_continue] = ACTIONS(3149), - [anon_sym_do] = ACTIONS(3149), - [anon_sym_while] = ACTIONS(3149), - [anon_sym_for] = ACTIONS(3149), - [anon_sym_lock] = ACTIONS(3149), - [anon_sym_yield] = ACTIONS(3149), - [anon_sym_switch] = ACTIONS(3149), - [anon_sym_case] = ACTIONS(3149), - [anon_sym_default] = ACTIONS(3149), - [anon_sym_throw] = ACTIONS(3149), - [anon_sym_try] = ACTIONS(3149), - [anon_sym_when] = ACTIONS(3149), - [anon_sym_await] = ACTIONS(3149), - [anon_sym_foreach] = ACTIONS(3149), - [anon_sym_goto] = ACTIONS(3149), - [anon_sym_if] = ACTIONS(3149), - [anon_sym_else] = ACTIONS(3149), - [anon_sym_DOT_DOT] = ACTIONS(3151), - [anon_sym_from] = ACTIONS(3149), - [anon_sym_into] = ACTIONS(3149), - [anon_sym_join] = ACTIONS(3149), - [anon_sym_on] = ACTIONS(3149), - [anon_sym_equals] = ACTIONS(3149), - [anon_sym_let] = ACTIONS(3149), - [anon_sym_orderby] = ACTIONS(3149), - [anon_sym_ascending] = ACTIONS(3149), - [anon_sym_descending] = ACTIONS(3149), - [anon_sym_group] = ACTIONS(3149), - [anon_sym_by] = ACTIONS(3149), - [anon_sym_select] = ACTIONS(3149), - [anon_sym_stackalloc] = ACTIONS(3149), - [anon_sym_sizeof] = ACTIONS(3149), - [anon_sym_typeof] = ACTIONS(3149), - [anon_sym___makeref] = ACTIONS(3149), - [anon_sym___reftype] = ACTIONS(3149), - [anon_sym___refvalue] = ACTIONS(3149), - [sym_null_literal] = ACTIONS(3149), - [anon_sym_SQUOTE] = ACTIONS(3151), - [sym_integer_literal] = ACTIONS(3149), - [sym_real_literal] = ACTIONS(3151), - [anon_sym_DQUOTE] = ACTIONS(3151), - [sym_verbatim_string_literal] = ACTIONS(3151), - [aux_sym_preproc_if_token1] = ACTIONS(3151), + [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(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_ref] = ACTIONS(3161), + [anon_sym_LBRACE] = ACTIONS(3163), + [anon_sym_RBRACE] = ACTIONS(3163), + [anon_sym_delegate] = 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_case] = ACTIONS(3161), + [anon_sym_default] = ACTIONS(3161), + [anon_sym_throw] = ACTIONS(3161), + [anon_sym_try] = ACTIONS(3161), + [anon_sym_when] = 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), @@ -388627,1460 +392154,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(3151), - [sym_interpolation_verbatim_start] = ACTIONS(3151), - [sym_interpolation_raw_start] = ACTIONS(3151), - [sym_raw_string_start] = ACTIONS(3151), + [sym_interpolation_regular_start] = ACTIONS(3163), + [sym_interpolation_verbatim_start] = ACTIONS(3163), + [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(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), - }, - [2101] = { - [sym_preproc_region] = STATE(2101), - [sym_preproc_endregion] = STATE(2101), - [sym_preproc_line] = STATE(2101), - [sym_preproc_pragma] = STATE(2101), - [sym_preproc_nullable] = STATE(2101), - [sym_preproc_error] = STATE(2101), - [sym_preproc_warning] = STATE(2101), - [sym_preproc_define] = STATE(2101), - [sym_preproc_undef] = STATE(2101), - [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), - }, - [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(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), - }, - [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(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_ref] = ACTIONS(3311), - [anon_sym_LBRACE] = ACTIONS(3313), - [anon_sym_RBRACE] = ACTIONS(3313), - [anon_sym_delegate] = 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_case] = 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), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [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), - }, - [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(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), - }, - [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(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_ref] = ACTIONS(3165), - [anon_sym_LBRACE] = ACTIONS(3167), - [anon_sym_RBRACE] = ACTIONS(3167), - [anon_sym_delegate] = 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_case] = ACTIONS(3165), - [anon_sym_default] = ACTIONS(3165), - [anon_sym_throw] = ACTIONS(3165), - [anon_sym_try] = ACTIONS(3165), - [anon_sym_when] = 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), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [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), - }, - [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(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), - }, - [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(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), - }, - [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(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), - }, - [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(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), - }, - [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(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_ref] = ACTIONS(3303), - [anon_sym_LBRACE] = ACTIONS(3305), - [anon_sym_RBRACE] = ACTIONS(3305), - [anon_sym_delegate] = 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_case] = 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), - }, - [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(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_ref] = ACTIONS(3319), - [anon_sym_LBRACE] = ACTIONS(3321), - [anon_sym_RBRACE] = ACTIONS(3321), - [anon_sym_delegate] = 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_case] = 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), + [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(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_ref] = ACTIONS(3181), + [anon_sym_LBRACE] = ACTIONS(3183), + [anon_sym_RBRACE] = ACTIONS(3183), + [anon_sym_delegate] = 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_case] = 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), @@ -390091,240 +392276,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(3321), - [sym_interpolation_verbatim_start] = ACTIONS(3321), - [sym_interpolation_raw_start] = ACTIONS(3321), - [sym_raw_string_start] = ACTIONS(3321), - }, - [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(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), + [sym_interpolation_regular_start] = ACTIONS(3183), + [sym_interpolation_verbatim_start] = ACTIONS(3183), + [sym_interpolation_raw_start] = ACTIONS(3183), + [sym_raw_string_start] = ACTIONS(3183), }, - [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(3153), - [anon_sym_extern] = ACTIONS(3153), - [anon_sym_alias] = ACTIONS(3153), - [anon_sym_SEMI] = ACTIONS(3155), - [anon_sym_global] = ACTIONS(3153), - [anon_sym_using] = ACTIONS(3153), - [anon_sym_unsafe] = ACTIONS(3153), - [anon_sym_static] = ACTIONS(3153), - [anon_sym_LBRACK] = ACTIONS(3155), - [anon_sym_LPAREN] = ACTIONS(3155), - [anon_sym_return] = ACTIONS(3153), - [anon_sym_ref] = ACTIONS(3153), - [anon_sym_LBRACE] = ACTIONS(3155), - [anon_sym_RBRACE] = ACTIONS(3155), - [anon_sym_delegate] = ACTIONS(3153), - [anon_sym_abstract] = ACTIONS(3153), - [anon_sym_async] = ACTIONS(3153), - [anon_sym_const] = ACTIONS(3153), - [anon_sym_file] = ACTIONS(3153), - [anon_sym_fixed] = ACTIONS(3153), - [anon_sym_internal] = ACTIONS(3153), - [anon_sym_new] = ACTIONS(3153), - [anon_sym_override] = ACTIONS(3153), - [anon_sym_partial] = ACTIONS(3153), - [anon_sym_private] = ACTIONS(3153), - [anon_sym_protected] = ACTIONS(3153), - [anon_sym_public] = ACTIONS(3153), - [anon_sym_readonly] = ACTIONS(3153), - [anon_sym_required] = ACTIONS(3153), - [anon_sym_sealed] = ACTIONS(3153), - [anon_sym_virtual] = ACTIONS(3153), - [anon_sym_volatile] = ACTIONS(3153), - [anon_sym_where] = ACTIONS(3153), - [anon_sym_notnull] = ACTIONS(3153), - [anon_sym_unmanaged] = ACTIONS(3153), - [anon_sym_checked] = ACTIONS(3153), - [anon_sym_BANG] = ACTIONS(3155), - [anon_sym_TILDE] = ACTIONS(3155), - [anon_sym_PLUS_PLUS] = ACTIONS(3155), - [anon_sym_DASH_DASH] = ACTIONS(3155), - [anon_sym_true] = ACTIONS(3153), - [anon_sym_false] = ACTIONS(3153), - [anon_sym_PLUS] = ACTIONS(3153), - [anon_sym_DASH] = ACTIONS(3153), - [anon_sym_STAR] = ACTIONS(3155), - [anon_sym_CARET] = ACTIONS(3155), - [anon_sym_AMP] = ACTIONS(3155), - [anon_sym_this] = ACTIONS(3153), - [anon_sym_scoped] = ACTIONS(3153), - [anon_sym_base] = ACTIONS(3153), - [anon_sym_var] = ACTIONS(3153), - [sym_predefined_type] = ACTIONS(3153), - [anon_sym_break] = ACTIONS(3153), - [anon_sym_unchecked] = ACTIONS(3153), - [anon_sym_continue] = ACTIONS(3153), - [anon_sym_do] = ACTIONS(3153), - [anon_sym_while] = ACTIONS(3153), - [anon_sym_for] = ACTIONS(3153), - [anon_sym_lock] = ACTIONS(3153), - [anon_sym_yield] = ACTIONS(3153), - [anon_sym_switch] = ACTIONS(3153), - [anon_sym_case] = ACTIONS(3153), - [anon_sym_default] = ACTIONS(3153), - [anon_sym_throw] = ACTIONS(3153), - [anon_sym_try] = ACTIONS(3153), - [anon_sym_when] = ACTIONS(3153), - [anon_sym_await] = ACTIONS(3153), - [anon_sym_foreach] = ACTIONS(3153), - [anon_sym_goto] = ACTIONS(3153), - [anon_sym_if] = ACTIONS(3153), - [anon_sym_else] = ACTIONS(3153), - [anon_sym_DOT_DOT] = ACTIONS(3155), - [anon_sym_from] = ACTIONS(3153), - [anon_sym_into] = ACTIONS(3153), - [anon_sym_join] = ACTIONS(3153), - [anon_sym_on] = ACTIONS(3153), - [anon_sym_equals] = ACTIONS(3153), - [anon_sym_let] = ACTIONS(3153), - [anon_sym_orderby] = ACTIONS(3153), - [anon_sym_ascending] = ACTIONS(3153), - [anon_sym_descending] = ACTIONS(3153), - [anon_sym_group] = ACTIONS(3153), - [anon_sym_by] = ACTIONS(3153), - [anon_sym_select] = ACTIONS(3153), - [anon_sym_stackalloc] = ACTIONS(3153), - [anon_sym_sizeof] = ACTIONS(3153), - [anon_sym_typeof] = ACTIONS(3153), - [anon_sym___makeref] = ACTIONS(3153), - [anon_sym___reftype] = ACTIONS(3153), - [anon_sym___refvalue] = ACTIONS(3153), - [sym_null_literal] = ACTIONS(3153), - [anon_sym_SQUOTE] = ACTIONS(3155), - [sym_integer_literal] = ACTIONS(3153), - [sym_real_literal] = ACTIONS(3155), - [anon_sym_DQUOTE] = ACTIONS(3155), - [sym_verbatim_string_literal] = ACTIONS(3155), - [aux_sym_preproc_if_token1] = ACTIONS(3155), + [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(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), @@ -390335,143 +392398,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(3155), - [sym_interpolation_verbatim_start] = ACTIONS(3155), - [sym_interpolation_raw_start] = ACTIONS(3155), - [sym_raw_string_start] = ACTIONS(3155), - }, - [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(3095), - [anon_sym_extern] = ACTIONS(3095), - [anon_sym_alias] = ACTIONS(3095), - [anon_sym_SEMI] = ACTIONS(3097), - [anon_sym_global] = ACTIONS(3095), - [anon_sym_using] = ACTIONS(3095), - [anon_sym_unsafe] = ACTIONS(3095), - [anon_sym_static] = ACTIONS(3095), - [anon_sym_LBRACK] = ACTIONS(3097), - [anon_sym_LPAREN] = ACTIONS(3097), - [anon_sym_return] = ACTIONS(3095), - [anon_sym_ref] = ACTIONS(3095), - [anon_sym_LBRACE] = ACTIONS(3097), - [anon_sym_RBRACE] = ACTIONS(3097), - [anon_sym_delegate] = ACTIONS(3095), - [anon_sym_abstract] = ACTIONS(3095), - [anon_sym_async] = ACTIONS(3095), - [anon_sym_const] = ACTIONS(3095), - [anon_sym_file] = ACTIONS(3095), - [anon_sym_fixed] = ACTIONS(3095), - [anon_sym_internal] = ACTIONS(3095), - [anon_sym_new] = ACTIONS(3095), - [anon_sym_override] = ACTIONS(3095), - [anon_sym_partial] = ACTIONS(3095), - [anon_sym_private] = ACTIONS(3095), - [anon_sym_protected] = ACTIONS(3095), - [anon_sym_public] = ACTIONS(3095), - [anon_sym_readonly] = ACTIONS(3095), - [anon_sym_required] = ACTIONS(3095), - [anon_sym_sealed] = ACTIONS(3095), - [anon_sym_virtual] = ACTIONS(3095), - [anon_sym_volatile] = ACTIONS(3095), - [anon_sym_where] = ACTIONS(3095), - [anon_sym_notnull] = ACTIONS(3095), - [anon_sym_unmanaged] = ACTIONS(3095), - [anon_sym_checked] = ACTIONS(3095), - [anon_sym_BANG] = ACTIONS(3097), - [anon_sym_TILDE] = ACTIONS(3097), - [anon_sym_PLUS_PLUS] = ACTIONS(3097), - [anon_sym_DASH_DASH] = ACTIONS(3097), - [anon_sym_true] = ACTIONS(3095), - [anon_sym_false] = ACTIONS(3095), - [anon_sym_PLUS] = ACTIONS(3095), - [anon_sym_DASH] = ACTIONS(3095), - [anon_sym_STAR] = ACTIONS(3097), - [anon_sym_CARET] = ACTIONS(3097), - [anon_sym_AMP] = ACTIONS(3097), - [anon_sym_this] = ACTIONS(3095), - [anon_sym_scoped] = ACTIONS(3095), - [anon_sym_base] = ACTIONS(3095), - [anon_sym_var] = ACTIONS(3095), - [sym_predefined_type] = ACTIONS(3095), - [anon_sym_break] = ACTIONS(3095), - [anon_sym_unchecked] = ACTIONS(3095), - [anon_sym_continue] = ACTIONS(3095), - [anon_sym_do] = ACTIONS(3095), - [anon_sym_while] = ACTIONS(3095), - [anon_sym_for] = ACTIONS(3095), - [anon_sym_lock] = ACTIONS(3095), - [anon_sym_yield] = ACTIONS(3095), - [anon_sym_switch] = ACTIONS(3095), - [anon_sym_case] = ACTIONS(3095), - [anon_sym_default] = ACTIONS(3095), - [anon_sym_throw] = ACTIONS(3095), - [anon_sym_try] = ACTIONS(3095), - [anon_sym_when] = ACTIONS(3095), - [anon_sym_await] = ACTIONS(3095), - [anon_sym_foreach] = ACTIONS(3095), - [anon_sym_goto] = ACTIONS(3095), - [anon_sym_if] = ACTIONS(3095), - [anon_sym_else] = ACTIONS(3095), - [anon_sym_DOT_DOT] = ACTIONS(3097), - [anon_sym_from] = ACTIONS(3095), - [anon_sym_into] = ACTIONS(3095), - [anon_sym_join] = ACTIONS(3095), - [anon_sym_on] = ACTIONS(3095), - [anon_sym_equals] = ACTIONS(3095), - [anon_sym_let] = ACTIONS(3095), - [anon_sym_orderby] = ACTIONS(3095), - [anon_sym_ascending] = ACTIONS(3095), - [anon_sym_descending] = ACTIONS(3095), - [anon_sym_group] = ACTIONS(3095), - [anon_sym_by] = ACTIONS(3095), - [anon_sym_select] = ACTIONS(3095), - [anon_sym_stackalloc] = ACTIONS(3095), - [anon_sym_sizeof] = ACTIONS(3095), - [anon_sym_typeof] = ACTIONS(3095), - [anon_sym___makeref] = ACTIONS(3095), - [anon_sym___reftype] = ACTIONS(3095), - [anon_sym___refvalue] = ACTIONS(3095), - [sym_null_literal] = ACTIONS(3095), - [anon_sym_SQUOTE] = ACTIONS(3097), - [sym_integer_literal] = ACTIONS(3095), - [sym_real_literal] = ACTIONS(3097), - [anon_sym_DQUOTE] = ACTIONS(3097), - [sym_verbatim_string_literal] = ACTIONS(3097), - [aux_sym_preproc_if_token1] = ACTIONS(3097), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(3097), - [sym_interpolation_verbatim_start] = ACTIONS(3097), - [sym_interpolation_raw_start] = ACTIONS(3097), - [sym_raw_string_start] = ACTIONS(3097), + [sym_interpolation_regular_start] = ACTIONS(3219), + [sym_interpolation_verbatim_start] = ACTIONS(3219), + [sym_interpolation_raw_start] = ACTIONS(3219), + [sym_raw_string_start] = ACTIONS(3219), }, - [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), + [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(3189), [anon_sym_extern] = ACTIONS(3189), [anon_sym_alias] = ACTIONS(3189), @@ -390584,235 +392525,234 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_interpolation_raw_start] = ACTIONS(3191), [sym_raw_string_start] = ACTIONS(3191), }, - [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(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_ref] = ACTIONS(3193), - [anon_sym_LBRACE] = ACTIONS(3195), - [anon_sym_RBRACE] = ACTIONS(3195), - [anon_sym_delegate] = 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_case] = 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_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(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(3301), + [anon_sym_extern] = ACTIONS(3301), + [anon_sym_alias] = ACTIONS(3301), + [anon_sym_SEMI] = ACTIONS(3303), + [anon_sym_global] = ACTIONS(3301), + [anon_sym_using] = ACTIONS(3301), + [anon_sym_unsafe] = ACTIONS(3301), + [anon_sym_static] = ACTIONS(3301), + [anon_sym_LBRACK] = ACTIONS(3303), + [anon_sym_LPAREN] = ACTIONS(3303), + [anon_sym_return] = ACTIONS(3301), + [anon_sym_ref] = ACTIONS(3301), + [anon_sym_LBRACE] = ACTIONS(3303), + [anon_sym_RBRACE] = ACTIONS(3303), + [anon_sym_delegate] = ACTIONS(3301), + [anon_sym_abstract] = ACTIONS(3301), + [anon_sym_async] = ACTIONS(3301), + [anon_sym_const] = ACTIONS(3301), + [anon_sym_file] = ACTIONS(3301), + [anon_sym_fixed] = ACTIONS(3301), + [anon_sym_internal] = ACTIONS(3301), + [anon_sym_new] = ACTIONS(3301), + [anon_sym_override] = ACTIONS(3301), + [anon_sym_partial] = ACTIONS(3301), + [anon_sym_private] = ACTIONS(3301), + [anon_sym_protected] = ACTIONS(3301), + [anon_sym_public] = ACTIONS(3301), + [anon_sym_readonly] = ACTIONS(3301), + [anon_sym_required] = ACTIONS(3301), + [anon_sym_sealed] = ACTIONS(3301), + [anon_sym_virtual] = ACTIONS(3301), + [anon_sym_volatile] = ACTIONS(3301), + [anon_sym_where] = ACTIONS(3301), + [anon_sym_notnull] = ACTIONS(3301), + [anon_sym_unmanaged] = ACTIONS(3301), + [anon_sym_checked] = ACTIONS(3301), + [anon_sym_BANG] = ACTIONS(3303), + [anon_sym_TILDE] = ACTIONS(3303), + [anon_sym_PLUS_PLUS] = ACTIONS(3303), + [anon_sym_DASH_DASH] = ACTIONS(3303), + [anon_sym_true] = ACTIONS(3301), + [anon_sym_false] = ACTIONS(3301), + [anon_sym_PLUS] = ACTIONS(3301), + [anon_sym_DASH] = ACTIONS(3301), + [anon_sym_STAR] = ACTIONS(3303), + [anon_sym_CARET] = ACTIONS(3303), + [anon_sym_AMP] = ACTIONS(3303), + [anon_sym_this] = ACTIONS(3301), + [anon_sym_scoped] = ACTIONS(3301), + [anon_sym_base] = ACTIONS(3301), + [anon_sym_var] = ACTIONS(3301), + [sym_predefined_type] = ACTIONS(3301), + [anon_sym_break] = ACTIONS(3301), + [anon_sym_unchecked] = ACTIONS(3301), + [anon_sym_continue] = ACTIONS(3301), + [anon_sym_do] = ACTIONS(3301), + [anon_sym_while] = ACTIONS(3301), + [anon_sym_for] = ACTIONS(3301), + [anon_sym_lock] = ACTIONS(3301), + [anon_sym_yield] = ACTIONS(3301), + [anon_sym_switch] = ACTIONS(3301), + [anon_sym_case] = ACTIONS(3301), + [anon_sym_default] = ACTIONS(3301), + [anon_sym_throw] = ACTIONS(3301), + [anon_sym_try] = ACTIONS(3301), + [anon_sym_when] = ACTIONS(3301), + [anon_sym_await] = ACTIONS(3301), + [anon_sym_foreach] = ACTIONS(3301), + [anon_sym_goto] = ACTIONS(3301), + [anon_sym_if] = ACTIONS(3301), + [anon_sym_else] = ACTIONS(3301), + [anon_sym_DOT_DOT] = ACTIONS(3303), + [anon_sym_from] = ACTIONS(3301), + [anon_sym_into] = ACTIONS(3301), + [anon_sym_join] = ACTIONS(3301), + [anon_sym_on] = ACTIONS(3301), + [anon_sym_equals] = ACTIONS(3301), + [anon_sym_let] = ACTIONS(3301), + [anon_sym_orderby] = ACTIONS(3301), + [anon_sym_ascending] = ACTIONS(3301), + [anon_sym_descending] = ACTIONS(3301), + [anon_sym_group] = ACTIONS(3301), + [anon_sym_by] = ACTIONS(3301), + [anon_sym_select] = ACTIONS(3301), + [anon_sym_stackalloc] = ACTIONS(3301), + [anon_sym_sizeof] = ACTIONS(3301), + [anon_sym_typeof] = ACTIONS(3301), + [anon_sym___makeref] = ACTIONS(3301), + [anon_sym___reftype] = ACTIONS(3301), + [anon_sym___refvalue] = ACTIONS(3301), + [sym_null_literal] = ACTIONS(3301), + [anon_sym_SQUOTE] = ACTIONS(3303), + [sym_integer_literal] = ACTIONS(3301), + [sym_real_literal] = ACTIONS(3303), + [anon_sym_DQUOTE] = ACTIONS(3303), + [sym_verbatim_string_literal] = ACTIONS(3303), + [aux_sym_preproc_if_token1] = ACTIONS(3303), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + [sym_interpolation_regular_start] = ACTIONS(3303), + [sym_interpolation_verbatim_start] = ACTIONS(3303), + [sym_interpolation_raw_start] = ACTIONS(3303), + [sym_raw_string_start] = ACTIONS(3303), }, - [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(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_ref] = ACTIONS(3161), - [anon_sym_LBRACE] = ACTIONS(3163), - [anon_sym_RBRACE] = ACTIONS(3163), - [anon_sym_delegate] = 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_case] = ACTIONS(3161), - [anon_sym_default] = ACTIONS(3161), - [anon_sym_throw] = ACTIONS(3161), - [anon_sym_try] = ACTIONS(3161), - [anon_sym_when] = 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), + [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(3473), + [anon_sym_extern] = ACTIONS(3473), + [anon_sym_alias] = ACTIONS(3473), + [anon_sym_SEMI] = ACTIONS(3475), + [anon_sym_global] = ACTIONS(3473), + [anon_sym_using] = ACTIONS(3473), + [anon_sym_unsafe] = ACTIONS(3473), + [anon_sym_static] = ACTIONS(3473), + [anon_sym_LBRACK] = ACTIONS(3475), + [anon_sym_LPAREN] = ACTIONS(3475), + [anon_sym_return] = ACTIONS(3473), + [anon_sym_ref] = ACTIONS(3473), + [anon_sym_LBRACE] = ACTIONS(3475), + [anon_sym_RBRACE] = ACTIONS(3475), + [anon_sym_delegate] = ACTIONS(3473), + [anon_sym_abstract] = ACTIONS(3473), + [anon_sym_async] = ACTIONS(3473), + [anon_sym_const] = ACTIONS(3473), + [anon_sym_file] = ACTIONS(3473), + [anon_sym_fixed] = ACTIONS(3473), + [anon_sym_internal] = ACTIONS(3473), + [anon_sym_new] = ACTIONS(3473), + [anon_sym_override] = ACTIONS(3473), + [anon_sym_partial] = ACTIONS(3473), + [anon_sym_private] = ACTIONS(3473), + [anon_sym_protected] = ACTIONS(3473), + [anon_sym_public] = ACTIONS(3473), + [anon_sym_readonly] = ACTIONS(3473), + [anon_sym_required] = ACTIONS(3473), + [anon_sym_sealed] = ACTIONS(3473), + [anon_sym_virtual] = ACTIONS(3473), + [anon_sym_volatile] = ACTIONS(3473), + [anon_sym_where] = ACTIONS(3473), + [anon_sym_notnull] = ACTIONS(3473), + [anon_sym_unmanaged] = ACTIONS(3473), + [anon_sym_checked] = ACTIONS(3473), + [anon_sym_BANG] = ACTIONS(3475), + [anon_sym_TILDE] = ACTIONS(3475), + [anon_sym_PLUS_PLUS] = ACTIONS(3475), + [anon_sym_DASH_DASH] = ACTIONS(3475), + [anon_sym_true] = ACTIONS(3473), + [anon_sym_false] = ACTIONS(3473), + [anon_sym_PLUS] = ACTIONS(3473), + [anon_sym_DASH] = ACTIONS(3473), + [anon_sym_STAR] = ACTIONS(3475), + [anon_sym_CARET] = ACTIONS(3475), + [anon_sym_AMP] = ACTIONS(3475), + [anon_sym_this] = ACTIONS(3473), + [anon_sym_scoped] = ACTIONS(3473), + [anon_sym_base] = ACTIONS(3473), + [anon_sym_var] = ACTIONS(3473), + [sym_predefined_type] = ACTIONS(3473), + [anon_sym_break] = ACTIONS(3473), + [anon_sym_unchecked] = ACTIONS(3473), + [anon_sym_continue] = ACTIONS(3473), + [anon_sym_do] = ACTIONS(3473), + [anon_sym_while] = ACTIONS(3473), + [anon_sym_for] = ACTIONS(3473), + [anon_sym_lock] = ACTIONS(3473), + [anon_sym_yield] = ACTIONS(3473), + [anon_sym_switch] = ACTIONS(3473), + [anon_sym_case] = ACTIONS(3473), + [anon_sym_default] = ACTIONS(3473), + [anon_sym_throw] = ACTIONS(3473), + [anon_sym_try] = ACTIONS(3473), + [anon_sym_when] = ACTIONS(3473), + [anon_sym_await] = ACTIONS(3473), + [anon_sym_foreach] = ACTIONS(3473), + [anon_sym_goto] = ACTIONS(3473), + [anon_sym_if] = ACTIONS(3473), + [anon_sym_DOT_DOT] = ACTIONS(3475), + [anon_sym_from] = ACTIONS(3473), + [anon_sym_into] = ACTIONS(3473), + [anon_sym_join] = ACTIONS(3473), + [anon_sym_on] = ACTIONS(3473), + [anon_sym_equals] = ACTIONS(3473), + [anon_sym_let] = ACTIONS(3473), + [anon_sym_orderby] = ACTIONS(3473), + [anon_sym_ascending] = ACTIONS(3473), + [anon_sym_descending] = ACTIONS(3473), + [anon_sym_group] = ACTIONS(3473), + [anon_sym_by] = ACTIONS(3473), + [anon_sym_select] = ACTIONS(3473), + [anon_sym_stackalloc] = ACTIONS(3473), + [anon_sym_sizeof] = ACTIONS(3473), + [anon_sym_typeof] = ACTIONS(3473), + [anon_sym___makeref] = ACTIONS(3473), + [anon_sym___reftype] = ACTIONS(3473), + [anon_sym___refvalue] = ACTIONS(3473), + [sym_null_literal] = ACTIONS(3473), + [anon_sym_SQUOTE] = ACTIONS(3475), + [sym_integer_literal] = ACTIONS(3473), + [sym_real_literal] = ACTIONS(3475), + [anon_sym_DQUOTE] = ACTIONS(3475), + [sym_verbatim_string_literal] = ACTIONS(3475), + [aux_sym_preproc_if_token1] = ACTIONS(3475), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -390823,484 +392763,121 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_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), - }, - [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(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), - }, - [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(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), - }, - [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), + [sym_interpolation_regular_start] = ACTIONS(3475), + [sym_interpolation_verbatim_start] = ACTIONS(3475), + [sym_interpolation_raw_start] = ACTIONS(3475), + [sym_raw_string_start] = ACTIONS(3475), }, - [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(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_ref] = ACTIONS(3181), - [anon_sym_LBRACE] = ACTIONS(3183), - [anon_sym_RBRACE] = ACTIONS(3183), - [anon_sym_delegate] = 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_case] = 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), + [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(3463), + [anon_sym_extern] = ACTIONS(3466), + [anon_sym_alias] = ACTIONS(3463), + [anon_sym_SEMI] = ACTIONS(3429), + [anon_sym_global] = ACTIONS(3463), + [anon_sym_unsafe] = ACTIONS(3466), + [anon_sym_EQ] = ACTIONS(3431), + [anon_sym_static] = ACTIONS(3466), + [anon_sym_LBRACK] = ACTIONS(3429), + [anon_sym_COLON] = ACTIONS(3431), + [anon_sym_COMMA] = ACTIONS(3429), + [anon_sym_LPAREN] = ACTIONS(3468), + [anon_sym_ref] = ACTIONS(3466), + [anon_sym_RBRACE] = ACTIONS(3429), + [anon_sym_delegate] = ACTIONS(3466), + [anon_sym_abstract] = ACTIONS(3466), + [anon_sym_async] = ACTIONS(3466), + [anon_sym_const] = ACTIONS(3466), + [anon_sym_file] = ACTIONS(3463), + [anon_sym_fixed] = ACTIONS(3466), + [anon_sym_internal] = ACTIONS(3466), + [anon_sym_new] = ACTIONS(3466), + [anon_sym_override] = ACTIONS(3466), + [anon_sym_partial] = ACTIONS(3466), + [anon_sym_private] = ACTIONS(3466), + [anon_sym_protected] = ACTIONS(3466), + [anon_sym_public] = ACTIONS(3466), + [anon_sym_readonly] = ACTIONS(3466), + [anon_sym_required] = ACTIONS(3466), + [anon_sym_sealed] = ACTIONS(3466), + [anon_sym_virtual] = ACTIONS(3466), + [anon_sym_volatile] = ACTIONS(3466), + [anon_sym_LT] = ACTIONS(3431), + [anon_sym_GT] = ACTIONS(3431), + [anon_sym_where] = ACTIONS(3463), + [anon_sym_QMARK] = ACTIONS(3431), + [anon_sym_notnull] = ACTIONS(3463), + [anon_sym_unmanaged] = ACTIONS(3463), + [anon_sym_BANG] = ACTIONS(3431), + [anon_sym_PLUS_PLUS] = ACTIONS(3429), + [anon_sym_DASH_DASH] = ACTIONS(3429), + [anon_sym_PLUS] = ACTIONS(3431), + [anon_sym_DASH] = ACTIONS(3431), + [anon_sym_STAR] = ACTIONS(3431), + [anon_sym_SLASH] = ACTIONS(3431), + [anon_sym_PERCENT] = ACTIONS(3431), + [anon_sym_CARET] = ACTIONS(3431), + [anon_sym_PIPE] = ACTIONS(3431), + [anon_sym_AMP] = ACTIONS(3431), + [anon_sym_LT_LT] = ACTIONS(3431), + [anon_sym_GT_GT] = ACTIONS(3431), + [anon_sym_GT_GT_GT] = ACTIONS(3431), + [anon_sym_EQ_EQ] = ACTIONS(3429), + [anon_sym_BANG_EQ] = ACTIONS(3429), + [anon_sym_GT_EQ] = ACTIONS(3429), + [anon_sym_LT_EQ] = ACTIONS(3429), + [anon_sym_DOT] = ACTIONS(3431), + [anon_sym_scoped] = ACTIONS(3463), + [anon_sym_EQ_GT] = ACTIONS(3429), + [anon_sym_COLON_COLON] = ACTIONS(3429), + [anon_sym_var] = ACTIONS(3463), + [sym_predefined_type] = ACTIONS(3466), + [anon_sym_yield] = ACTIONS(3463), + [anon_sym_switch] = ACTIONS(3431), + [anon_sym_when] = ACTIONS(3463), + [anon_sym_DOT_DOT] = ACTIONS(3429), + [anon_sym_PLUS_EQ] = ACTIONS(3429), + [anon_sym_DASH_EQ] = ACTIONS(3429), + [anon_sym_STAR_EQ] = ACTIONS(3429), + [anon_sym_SLASH_EQ] = ACTIONS(3429), + [anon_sym_PERCENT_EQ] = ACTIONS(3429), + [anon_sym_AMP_EQ] = ACTIONS(3429), + [anon_sym_CARET_EQ] = ACTIONS(3429), + [anon_sym_PIPE_EQ] = ACTIONS(3429), + [anon_sym_LT_LT_EQ] = ACTIONS(3429), + [anon_sym_GT_GT_EQ] = ACTIONS(3429), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3429), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3429), + [anon_sym_AMP_AMP] = ACTIONS(3429), + [anon_sym_PIPE_PIPE] = ACTIONS(3429), + [anon_sym_QMARK_QMARK] = ACTIONS(3431), + [anon_sym_from] = ACTIONS(3463), + [anon_sym_into] = ACTIONS(3463), + [anon_sym_join] = ACTIONS(3463), + [anon_sym_on] = ACTIONS(3463), + [anon_sym_equals] = ACTIONS(3463), + [anon_sym_let] = ACTIONS(3463), + [anon_sym_orderby] = ACTIONS(3463), + [anon_sym_ascending] = ACTIONS(3463), + [anon_sym_descending] = ACTIONS(3463), + [anon_sym_group] = ACTIONS(3463), + [anon_sym_by] = ACTIONS(3463), + [anon_sym_select] = ACTIONS(3463), + [anon_sym_as] = ACTIONS(3431), + [anon_sym_is] = ACTIONS(3431), + [anon_sym_DASH_GT] = ACTIONS(3429), + [anon_sym_with] = ACTIONS(3431), + [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), @@ -391311,362 +392888,115 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_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), - }, - [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(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), - }, - [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(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), }, - [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(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), + [2136] = { + [sym__name] = STATE(4369), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(4068), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(4073), + [sym_type] = STATE(6082), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_identifier] = STATE(5785), + [sym__reserved_identifier] = STATE(3654), + [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(3423), + [anon_sym_alias] = ACTIONS(3426), + [anon_sym_global] = ACTIONS(3426), + [anon_sym_EQ] = ACTIONS(3431), + [anon_sym_LBRACK] = ACTIONS(3429), + [anon_sym_COLON] = ACTIONS(3431), + [anon_sym_COMMA] = ACTIONS(3429), + [anon_sym_LPAREN] = ACTIONS(3433), + [anon_sym_ref] = ACTIONS(3436), + [anon_sym_LBRACE] = ACTIONS(3429), + [anon_sym_delegate] = ACTIONS(3438), + [anon_sym_file] = ACTIONS(3426), + [anon_sym_LT] = ACTIONS(3431), + [anon_sym_GT] = ACTIONS(3431), + [anon_sym_where] = ACTIONS(3426), + [anon_sym_QMARK] = ACTIONS(3431), + [anon_sym_notnull] = ACTIONS(3426), + [anon_sym_unmanaged] = ACTIONS(3426), + [anon_sym_BANG] = ACTIONS(3431), + [anon_sym_PLUS_PLUS] = ACTIONS(3429), + [anon_sym_DASH_DASH] = ACTIONS(3429), + [anon_sym_PLUS] = ACTIONS(3431), + [anon_sym_DASH] = ACTIONS(3431), + [anon_sym_STAR] = ACTIONS(3431), + [anon_sym_SLASH] = ACTIONS(3431), + [anon_sym_PERCENT] = ACTIONS(3431), + [anon_sym_CARET] = ACTIONS(3431), + [anon_sym_PIPE] = ACTIONS(3431), + [anon_sym_AMP] = ACTIONS(3431), + [anon_sym_LT_LT] = ACTIONS(3431), + [anon_sym_GT_GT] = ACTIONS(3431), + [anon_sym_GT_GT_GT] = ACTIONS(3431), + [anon_sym_EQ_EQ] = ACTIONS(3429), + [anon_sym_BANG_EQ] = ACTIONS(3429), + [anon_sym_GT_EQ] = ACTIONS(3429), + [anon_sym_LT_EQ] = ACTIONS(3429), + [anon_sym_DOT] = ACTIONS(3431), + [anon_sym_scoped] = ACTIONS(3440), + [anon_sym_EQ_GT] = ACTIONS(3429), + [anon_sym_COLON_COLON] = ACTIONS(3429), + [anon_sym_var] = ACTIONS(3443), + [sym_predefined_type] = ACTIONS(2997), + [anon_sym_yield] = ACTIONS(3426), + [anon_sym_switch] = ACTIONS(3431), + [anon_sym_when] = ACTIONS(3426), + [sym_discard] = ACTIONS(3431), + [anon_sym_DOT_DOT] = ACTIONS(3429), + [anon_sym_and] = ACTIONS(3431), + [anon_sym_or] = ACTIONS(3431), + [anon_sym_PLUS_EQ] = ACTIONS(3429), + [anon_sym_DASH_EQ] = ACTIONS(3429), + [anon_sym_STAR_EQ] = ACTIONS(3429), + [anon_sym_SLASH_EQ] = ACTIONS(3429), + [anon_sym_PERCENT_EQ] = ACTIONS(3429), + [anon_sym_AMP_EQ] = ACTIONS(3429), + [anon_sym_CARET_EQ] = ACTIONS(3429), + [anon_sym_PIPE_EQ] = ACTIONS(3429), + [anon_sym_LT_LT_EQ] = ACTIONS(3429), + [anon_sym_GT_GT_EQ] = ACTIONS(3429), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3429), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3429), + [anon_sym_AMP_AMP] = ACTIONS(3429), + [anon_sym_PIPE_PIPE] = ACTIONS(3429), + [anon_sym_QMARK_QMARK] = ACTIONS(3431), + [anon_sym_from] = ACTIONS(3426), + [anon_sym_into] = ACTIONS(3426), + [anon_sym_join] = ACTIONS(3426), + [anon_sym_on] = ACTIONS(3426), + [anon_sym_equals] = ACTIONS(3426), + [anon_sym_let] = ACTIONS(3426), + [anon_sym_orderby] = ACTIONS(3426), + [anon_sym_ascending] = ACTIONS(3426), + [anon_sym_descending] = ACTIONS(3426), + [anon_sym_group] = ACTIONS(3426), + [anon_sym_by] = ACTIONS(3426), + [anon_sym_select] = ACTIONS(3426), + [anon_sym_as] = ACTIONS(3431), + [anon_sym_is] = ACTIONS(3431), + [anon_sym_DASH_GT] = ACTIONS(3429), + [anon_sym_with] = ACTIONS(3431), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -391677,118 +393007,112 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_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), + [sym_interpolation_close_brace] = ACTIONS(3429), }, - [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(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), + [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(3477), + [anon_sym_extern] = ACTIONS(3477), + [anon_sym_alias] = ACTIONS(3477), + [anon_sym_SEMI] = ACTIONS(3479), + [anon_sym_global] = ACTIONS(3477), + [anon_sym_using] = ACTIONS(3477), + [anon_sym_unsafe] = ACTIONS(3477), + [anon_sym_static] = ACTIONS(3477), + [anon_sym_LBRACK] = ACTIONS(3479), + [anon_sym_LPAREN] = ACTIONS(3479), + [anon_sym_return] = ACTIONS(3477), + [anon_sym_ref] = ACTIONS(3477), + [anon_sym_LBRACE] = ACTIONS(3479), + [anon_sym_delegate] = ACTIONS(3477), + [anon_sym_abstract] = ACTIONS(3477), + [anon_sym_async] = ACTIONS(3477), + [anon_sym_const] = ACTIONS(3477), + [anon_sym_file] = ACTIONS(3477), + [anon_sym_fixed] = ACTIONS(3477), + [anon_sym_internal] = ACTIONS(3477), + [anon_sym_new] = ACTIONS(3477), + [anon_sym_override] = ACTIONS(3477), + [anon_sym_partial] = ACTIONS(3477), + [anon_sym_private] = ACTIONS(3477), + [anon_sym_protected] = ACTIONS(3477), + [anon_sym_public] = ACTIONS(3477), + [anon_sym_readonly] = ACTIONS(3477), + [anon_sym_required] = ACTIONS(3477), + [anon_sym_sealed] = ACTIONS(3477), + [anon_sym_virtual] = ACTIONS(3477), + [anon_sym_volatile] = ACTIONS(3477), + [anon_sym_where] = ACTIONS(3477), + [anon_sym_notnull] = ACTIONS(3477), + [anon_sym_unmanaged] = ACTIONS(3477), + [anon_sym_checked] = ACTIONS(3477), + [anon_sym_BANG] = ACTIONS(3479), + [anon_sym_TILDE] = ACTIONS(3479), + [anon_sym_PLUS_PLUS] = ACTIONS(3479), + [anon_sym_DASH_DASH] = ACTIONS(3479), + [anon_sym_true] = ACTIONS(3477), + [anon_sym_false] = ACTIONS(3477), + [anon_sym_PLUS] = ACTIONS(3477), + [anon_sym_DASH] = ACTIONS(3477), + [anon_sym_STAR] = ACTIONS(3479), + [anon_sym_CARET] = ACTIONS(3479), + [anon_sym_AMP] = ACTIONS(3479), + [anon_sym_this] = ACTIONS(3477), + [anon_sym_scoped] = ACTIONS(3477), + [anon_sym_base] = ACTIONS(3477), + [anon_sym_var] = ACTIONS(3477), + [sym_predefined_type] = ACTIONS(3477), + [anon_sym_break] = ACTIONS(3477), + [anon_sym_unchecked] = ACTIONS(3477), + [anon_sym_continue] = ACTIONS(3477), + [anon_sym_do] = ACTIONS(3477), + [anon_sym_while] = ACTIONS(3477), + [anon_sym_for] = ACTIONS(3477), + [anon_sym_lock] = ACTIONS(3477), + [anon_sym_yield] = ACTIONS(3477), + [anon_sym_switch] = ACTIONS(3477), + [anon_sym_default] = ACTIONS(3477), + [anon_sym_throw] = ACTIONS(3477), + [anon_sym_try] = ACTIONS(3477), + [anon_sym_when] = ACTIONS(3477), + [anon_sym_await] = ACTIONS(3477), + [anon_sym_foreach] = ACTIONS(3477), + [anon_sym_goto] = ACTIONS(3477), + [anon_sym_if] = ACTIONS(3477), + [anon_sym_DOT_DOT] = ACTIONS(3479), + [anon_sym_from] = ACTIONS(3477), + [anon_sym_into] = ACTIONS(3477), + [anon_sym_join] = ACTIONS(3477), + [anon_sym_on] = ACTIONS(3477), + [anon_sym_equals] = ACTIONS(3477), + [anon_sym_let] = ACTIONS(3477), + [anon_sym_orderby] = ACTIONS(3477), + [anon_sym_ascending] = ACTIONS(3477), + [anon_sym_descending] = ACTIONS(3477), + [anon_sym_group] = ACTIONS(3477), + [anon_sym_by] = ACTIONS(3477), + [anon_sym_select] = ACTIONS(3477), + [anon_sym_stackalloc] = ACTIONS(3477), + [anon_sym_sizeof] = ACTIONS(3477), + [anon_sym_typeof] = ACTIONS(3477), + [anon_sym___makeref] = ACTIONS(3477), + [anon_sym___reftype] = ACTIONS(3477), + [anon_sym___refvalue] = ACTIONS(3477), + [sym_null_literal] = ACTIONS(3477), + [anon_sym_SQUOTE] = ACTIONS(3479), + [sym_integer_literal] = ACTIONS(3477), + [sym_real_literal] = ACTIONS(3479), + [anon_sym_DQUOTE] = ACTIONS(3479), + [sym_verbatim_string_literal] = ACTIONS(3479), + [aux_sym_preproc_if_token1] = ACTIONS(3479), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -391799,1829 +393123,353 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), - }, - [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(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), + [sym_interpolation_regular_start] = ACTIONS(3479), + [sym_interpolation_verbatim_start] = ACTIONS(3479), + [sym_interpolation_raw_start] = ACTIONS(3479), + [sym_raw_string_start] = ACTIONS(3479), }, - [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(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), + [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(3481), + [anon_sym_extern] = ACTIONS(3481), + [anon_sym_alias] = ACTIONS(3481), + [anon_sym_SEMI] = ACTIONS(3483), + [anon_sym_global] = ACTIONS(3481), + [anon_sym_using] = ACTIONS(3481), + [anon_sym_unsafe] = ACTIONS(3481), + [anon_sym_static] = ACTIONS(3481), + [anon_sym_LBRACK] = ACTIONS(3483), + [anon_sym_LPAREN] = ACTIONS(3483), + [anon_sym_return] = ACTIONS(3481), + [anon_sym_ref] = ACTIONS(3481), + [anon_sym_LBRACE] = ACTIONS(3483), + [anon_sym_delegate] = ACTIONS(3481), + [anon_sym_abstract] = ACTIONS(3481), + [anon_sym_async] = ACTIONS(3481), + [anon_sym_const] = ACTIONS(3481), + [anon_sym_file] = ACTIONS(3481), + [anon_sym_fixed] = ACTIONS(3481), + [anon_sym_internal] = ACTIONS(3481), + [anon_sym_new] = ACTIONS(3481), + [anon_sym_override] = ACTIONS(3481), + [anon_sym_partial] = ACTIONS(3481), + [anon_sym_private] = ACTIONS(3481), + [anon_sym_protected] = ACTIONS(3481), + [anon_sym_public] = ACTIONS(3481), + [anon_sym_readonly] = ACTIONS(3481), + [anon_sym_required] = ACTIONS(3481), + [anon_sym_sealed] = ACTIONS(3481), + [anon_sym_virtual] = ACTIONS(3481), + [anon_sym_volatile] = ACTIONS(3481), + [anon_sym_where] = ACTIONS(3481), + [anon_sym_notnull] = ACTIONS(3481), + [anon_sym_unmanaged] = ACTIONS(3481), + [anon_sym_checked] = ACTIONS(3481), + [anon_sym_BANG] = ACTIONS(3483), + [anon_sym_TILDE] = ACTIONS(3483), + [anon_sym_PLUS_PLUS] = ACTIONS(3483), + [anon_sym_DASH_DASH] = ACTIONS(3483), + [anon_sym_true] = ACTIONS(3481), + [anon_sym_false] = ACTIONS(3481), + [anon_sym_PLUS] = ACTIONS(3481), + [anon_sym_DASH] = ACTIONS(3481), + [anon_sym_STAR] = ACTIONS(3483), + [anon_sym_CARET] = ACTIONS(3483), + [anon_sym_AMP] = ACTIONS(3483), + [anon_sym_this] = ACTIONS(3481), + [anon_sym_scoped] = ACTIONS(3481), + [anon_sym_base] = ACTIONS(3481), + [anon_sym_var] = ACTIONS(3481), + [sym_predefined_type] = ACTIONS(3481), + [anon_sym_break] = ACTIONS(3481), + [anon_sym_unchecked] = ACTIONS(3481), + [anon_sym_continue] = ACTIONS(3481), + [anon_sym_do] = ACTIONS(3481), + [anon_sym_while] = ACTIONS(3481), + [anon_sym_for] = ACTIONS(3481), + [anon_sym_lock] = ACTIONS(3481), + [anon_sym_yield] = ACTIONS(3481), + [anon_sym_switch] = ACTIONS(3481), + [anon_sym_default] = ACTIONS(3481), + [anon_sym_throw] = ACTIONS(3481), + [anon_sym_try] = ACTIONS(3481), + [anon_sym_when] = ACTIONS(3481), + [anon_sym_await] = ACTIONS(3481), + [anon_sym_foreach] = ACTIONS(3481), + [anon_sym_goto] = ACTIONS(3481), + [anon_sym_if] = ACTIONS(3481), + [anon_sym_DOT_DOT] = ACTIONS(3483), + [anon_sym_from] = ACTIONS(3481), + [anon_sym_into] = ACTIONS(3481), + [anon_sym_join] = ACTIONS(3481), + [anon_sym_on] = ACTIONS(3481), + [anon_sym_equals] = ACTIONS(3481), + [anon_sym_let] = ACTIONS(3481), + [anon_sym_orderby] = ACTIONS(3481), + [anon_sym_ascending] = ACTIONS(3481), + [anon_sym_descending] = ACTIONS(3481), + [anon_sym_group] = ACTIONS(3481), + [anon_sym_by] = ACTIONS(3481), + [anon_sym_select] = ACTIONS(3481), + [anon_sym_stackalloc] = ACTIONS(3481), + [anon_sym_sizeof] = ACTIONS(3481), + [anon_sym_typeof] = ACTIONS(3481), + [anon_sym___makeref] = ACTIONS(3481), + [anon_sym___reftype] = ACTIONS(3481), + [anon_sym___refvalue] = ACTIONS(3481), + [sym_null_literal] = ACTIONS(3481), + [anon_sym_SQUOTE] = ACTIONS(3483), + [sym_integer_literal] = ACTIONS(3481), + [sym_real_literal] = ACTIONS(3483), + [anon_sym_DQUOTE] = ACTIONS(3483), + [sym_verbatim_string_literal] = ACTIONS(3483), + [aux_sym_preproc_if_token1] = ACTIONS(3483), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + [sym_interpolation_regular_start] = ACTIONS(3483), + [sym_interpolation_verbatim_start] = ACTIONS(3483), + [sym_interpolation_raw_start] = ACTIONS(3483), + [sym_raw_string_start] = ACTIONS(3483), }, - [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(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), + [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(3485), + [anon_sym_extern] = ACTIONS(3485), + [anon_sym_alias] = ACTIONS(3485), + [anon_sym_SEMI] = ACTIONS(3487), + [anon_sym_global] = ACTIONS(3485), + [anon_sym_using] = ACTIONS(3485), + [anon_sym_unsafe] = ACTIONS(3485), + [anon_sym_static] = ACTIONS(3485), + [anon_sym_LBRACK] = ACTIONS(3487), + [anon_sym_LPAREN] = ACTIONS(3487), + [anon_sym_return] = ACTIONS(3485), + [anon_sym_ref] = ACTIONS(3485), + [anon_sym_LBRACE] = ACTIONS(3487), + [anon_sym_delegate] = ACTIONS(3485), + [anon_sym_abstract] = ACTIONS(3485), + [anon_sym_async] = ACTIONS(3485), + [anon_sym_const] = ACTIONS(3485), + [anon_sym_file] = ACTIONS(3485), + [anon_sym_fixed] = ACTIONS(3485), + [anon_sym_internal] = ACTIONS(3485), + [anon_sym_new] = ACTIONS(3485), + [anon_sym_override] = ACTIONS(3485), + [anon_sym_partial] = ACTIONS(3485), + [anon_sym_private] = ACTIONS(3485), + [anon_sym_protected] = ACTIONS(3485), + [anon_sym_public] = ACTIONS(3485), + [anon_sym_readonly] = ACTIONS(3485), + [anon_sym_required] = ACTIONS(3485), + [anon_sym_sealed] = ACTIONS(3485), + [anon_sym_virtual] = ACTIONS(3485), + [anon_sym_volatile] = ACTIONS(3485), + [anon_sym_where] = ACTIONS(3485), + [anon_sym_notnull] = ACTIONS(3485), + [anon_sym_unmanaged] = ACTIONS(3485), + [anon_sym_checked] = ACTIONS(3485), + [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(3485), + [anon_sym_false] = ACTIONS(3485), + [anon_sym_PLUS] = ACTIONS(3485), + [anon_sym_DASH] = ACTIONS(3485), + [anon_sym_STAR] = ACTIONS(3487), + [anon_sym_CARET] = ACTIONS(3487), + [anon_sym_AMP] = ACTIONS(3487), + [anon_sym_this] = ACTIONS(3485), + [anon_sym_scoped] = ACTIONS(3485), + [anon_sym_base] = ACTIONS(3485), + [anon_sym_var] = ACTIONS(3485), + [sym_predefined_type] = ACTIONS(3485), + [anon_sym_break] = ACTIONS(3485), + [anon_sym_unchecked] = ACTIONS(3485), + [anon_sym_continue] = ACTIONS(3485), + [anon_sym_do] = ACTIONS(3485), + [anon_sym_while] = ACTIONS(3485), + [anon_sym_for] = ACTIONS(3485), + [anon_sym_lock] = ACTIONS(3485), + [anon_sym_yield] = ACTIONS(3485), + [anon_sym_switch] = ACTIONS(3485), + [anon_sym_default] = ACTIONS(3485), + [anon_sym_throw] = ACTIONS(3485), + [anon_sym_try] = ACTIONS(3485), + [anon_sym_when] = ACTIONS(3485), + [anon_sym_await] = ACTIONS(3485), + [anon_sym_foreach] = ACTIONS(3485), + [anon_sym_goto] = ACTIONS(3485), + [anon_sym_if] = ACTIONS(3485), + [anon_sym_DOT_DOT] = ACTIONS(3487), + [anon_sym_from] = ACTIONS(3485), + [anon_sym_into] = ACTIONS(3485), + [anon_sym_join] = ACTIONS(3485), + [anon_sym_on] = ACTIONS(3485), + [anon_sym_equals] = ACTIONS(3485), + [anon_sym_let] = ACTIONS(3485), + [anon_sym_orderby] = ACTIONS(3485), + [anon_sym_ascending] = ACTIONS(3485), + [anon_sym_descending] = ACTIONS(3485), + [anon_sym_group] = ACTIONS(3485), + [anon_sym_by] = ACTIONS(3485), + [anon_sym_select] = ACTIONS(3485), + [anon_sym_stackalloc] = ACTIONS(3485), + [anon_sym_sizeof] = ACTIONS(3485), + [anon_sym_typeof] = ACTIONS(3485), + [anon_sym___makeref] = ACTIONS(3485), + [anon_sym___reftype] = ACTIONS(3485), + [anon_sym___refvalue] = ACTIONS(3485), + [sym_null_literal] = ACTIONS(3485), + [anon_sym_SQUOTE] = ACTIONS(3487), + [sym_integer_literal] = ACTIONS(3485), + [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), }, - [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(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_ref] = ACTIONS(3169), - [anon_sym_LBRACE] = ACTIONS(3171), - [anon_sym_RBRACE] = ACTIONS(3171), - [anon_sym_delegate] = 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_case] = 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), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(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), - }, - [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(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), - }, - [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(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), - }, - [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(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), - }, - [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(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_ref] = ACTIONS(3157), - [anon_sym_LBRACE] = ACTIONS(3159), - [anon_sym_RBRACE] = ACTIONS(3159), - [anon_sym_delegate] = 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_case] = ACTIONS(3157), - [anon_sym_default] = ACTIONS(3157), - [anon_sym_throw] = ACTIONS(3157), - [anon_sym_try] = ACTIONS(3157), - [anon_sym_when] = 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), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [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), - }, - [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(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), - }, - [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(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(3487), - [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), - }, - [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(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), - }, - [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(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), - }, - [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(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), - }, - [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(3145), - [anon_sym_extern] = ACTIONS(3145), - [anon_sym_alias] = ACTIONS(3145), - [anon_sym_SEMI] = ACTIONS(3147), - [anon_sym_global] = ACTIONS(3145), - [anon_sym_using] = ACTIONS(3145), - [anon_sym_unsafe] = ACTIONS(3145), - [anon_sym_static] = ACTIONS(3145), - [anon_sym_LBRACK] = ACTIONS(3147), - [anon_sym_LPAREN] = ACTIONS(3147), - [anon_sym_return] = ACTIONS(3145), - [anon_sym_ref] = ACTIONS(3145), - [anon_sym_LBRACE] = ACTIONS(3147), - [anon_sym_RBRACE] = ACTIONS(3147), - [anon_sym_delegate] = ACTIONS(3145), - [anon_sym_abstract] = ACTIONS(3145), - [anon_sym_async] = ACTIONS(3145), - [anon_sym_const] = ACTIONS(3145), - [anon_sym_file] = ACTIONS(3145), - [anon_sym_fixed] = ACTIONS(3145), - [anon_sym_internal] = ACTIONS(3145), - [anon_sym_new] = ACTIONS(3145), - [anon_sym_override] = ACTIONS(3145), - [anon_sym_partial] = ACTIONS(3145), - [anon_sym_private] = ACTIONS(3145), - [anon_sym_protected] = ACTIONS(3145), - [anon_sym_public] = ACTIONS(3145), - [anon_sym_readonly] = ACTIONS(3145), - [anon_sym_required] = ACTIONS(3145), - [anon_sym_sealed] = ACTIONS(3145), - [anon_sym_virtual] = ACTIONS(3145), - [anon_sym_volatile] = ACTIONS(3145), - [anon_sym_where] = ACTIONS(3145), - [anon_sym_notnull] = ACTIONS(3145), - [anon_sym_unmanaged] = ACTIONS(3145), - [anon_sym_checked] = ACTIONS(3145), - [anon_sym_BANG] = ACTIONS(3147), - [anon_sym_TILDE] = ACTIONS(3147), - [anon_sym_PLUS_PLUS] = ACTIONS(3147), - [anon_sym_DASH_DASH] = ACTIONS(3147), - [anon_sym_true] = ACTIONS(3145), - [anon_sym_false] = ACTIONS(3145), - [anon_sym_PLUS] = ACTIONS(3145), - [anon_sym_DASH] = ACTIONS(3145), - [anon_sym_STAR] = ACTIONS(3147), - [anon_sym_CARET] = ACTIONS(3147), - [anon_sym_AMP] = ACTIONS(3147), - [anon_sym_this] = ACTIONS(3145), - [anon_sym_scoped] = ACTIONS(3145), - [anon_sym_base] = ACTIONS(3145), - [anon_sym_var] = ACTIONS(3145), - [sym_predefined_type] = ACTIONS(3145), - [anon_sym_break] = ACTIONS(3145), - [anon_sym_unchecked] = ACTIONS(3145), - [anon_sym_continue] = ACTIONS(3145), - [anon_sym_do] = ACTIONS(3145), - [anon_sym_while] = ACTIONS(3145), - [anon_sym_for] = ACTIONS(3145), - [anon_sym_lock] = ACTIONS(3145), - [anon_sym_yield] = ACTIONS(3145), - [anon_sym_switch] = ACTIONS(3145), - [anon_sym_case] = ACTIONS(3145), - [anon_sym_default] = ACTIONS(3145), - [anon_sym_throw] = ACTIONS(3145), - [anon_sym_try] = ACTIONS(3145), - [anon_sym_when] = ACTIONS(3145), - [anon_sym_await] = ACTIONS(3145), - [anon_sym_foreach] = ACTIONS(3145), - [anon_sym_goto] = ACTIONS(3145), - [anon_sym_if] = ACTIONS(3145), - [anon_sym_else] = ACTIONS(3145), - [anon_sym_DOT_DOT] = ACTIONS(3147), - [anon_sym_from] = ACTIONS(3145), - [anon_sym_into] = ACTIONS(3145), - [anon_sym_join] = ACTIONS(3145), - [anon_sym_on] = ACTIONS(3145), - [anon_sym_equals] = ACTIONS(3145), - [anon_sym_let] = ACTIONS(3145), - [anon_sym_orderby] = ACTIONS(3145), - [anon_sym_ascending] = ACTIONS(3145), - [anon_sym_descending] = ACTIONS(3145), - [anon_sym_group] = ACTIONS(3145), - [anon_sym_by] = ACTIONS(3145), - [anon_sym_select] = ACTIONS(3145), - [anon_sym_stackalloc] = ACTIONS(3145), - [anon_sym_sizeof] = ACTIONS(3145), - [anon_sym_typeof] = ACTIONS(3145), - [anon_sym___makeref] = ACTIONS(3145), - [anon_sym___reftype] = ACTIONS(3145), - [anon_sym___refvalue] = ACTIONS(3145), - [sym_null_literal] = ACTIONS(3145), - [anon_sym_SQUOTE] = ACTIONS(3147), - [sym_integer_literal] = ACTIONS(3145), - [sym_real_literal] = ACTIONS(3147), - [anon_sym_DQUOTE] = ACTIONS(3147), - [sym_verbatim_string_literal] = ACTIONS(3147), - [aux_sym_preproc_if_token1] = ACTIONS(3147), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(3147), - [sym_interpolation_verbatim_start] = ACTIONS(3147), - [sym_interpolation_raw_start] = ACTIONS(3147), - [sym_raw_string_start] = ACTIONS(3147), - }, - [2140] = { - [sym_preproc_region] = STATE(2140), - [sym_preproc_endregion] = STATE(2140), - [sym_preproc_line] = STATE(2140), - [sym_preproc_pragma] = STATE(2140), - [sym_preproc_nullable] = STATE(2140), - [sym_preproc_error] = STATE(2140), - [sym_preproc_warning] = STATE(2140), - [sym_preproc_define] = STATE(2140), - [sym_preproc_undef] = STATE(2140), - [sym__identifier_token] = ACTIONS(3479), - [anon_sym_extern] = ACTIONS(3482), - [anon_sym_alias] = ACTIONS(3479), - [anon_sym_SEMI] = ACTIONS(3445), - [anon_sym_global] = ACTIONS(3479), - [anon_sym_unsafe] = ACTIONS(3482), - [anon_sym_EQ] = ACTIONS(3447), - [anon_sym_static] = ACTIONS(3482), - [anon_sym_LBRACK] = ACTIONS(3445), - [anon_sym_COLON] = ACTIONS(3447), - [anon_sym_COMMA] = ACTIONS(3445), - [anon_sym_LPAREN] = ACTIONS(3484), - [anon_sym_ref] = ACTIONS(3482), - [anon_sym_RBRACE] = ACTIONS(3445), - [anon_sym_delegate] = ACTIONS(3482), - [anon_sym_abstract] = ACTIONS(3482), - [anon_sym_async] = ACTIONS(3482), - [anon_sym_const] = ACTIONS(3482), - [anon_sym_file] = ACTIONS(3479), - [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_LT] = ACTIONS(3447), - [anon_sym_GT] = ACTIONS(3447), - [anon_sym_where] = ACTIONS(3479), - [anon_sym_QMARK] = ACTIONS(3447), - [anon_sym_notnull] = ACTIONS(3479), - [anon_sym_unmanaged] = ACTIONS(3479), - [anon_sym_BANG] = ACTIONS(3447), - [anon_sym_PLUS_PLUS] = ACTIONS(3445), - [anon_sym_DASH_DASH] = ACTIONS(3445), - [anon_sym_PLUS] = ACTIONS(3447), - [anon_sym_DASH] = ACTIONS(3447), - [anon_sym_STAR] = ACTIONS(3447), - [anon_sym_SLASH] = ACTIONS(3447), - [anon_sym_PERCENT] = ACTIONS(3447), - [anon_sym_CARET] = ACTIONS(3447), - [anon_sym_PIPE] = ACTIONS(3447), - [anon_sym_AMP] = ACTIONS(3447), - [anon_sym_LT_LT] = ACTIONS(3447), - [anon_sym_GT_GT] = ACTIONS(3447), - [anon_sym_GT_GT_GT] = ACTIONS(3447), - [anon_sym_EQ_EQ] = ACTIONS(3445), - [anon_sym_BANG_EQ] = ACTIONS(3445), - [anon_sym_GT_EQ] = ACTIONS(3445), - [anon_sym_LT_EQ] = ACTIONS(3445), - [anon_sym_DOT] = ACTIONS(3447), - [anon_sym_scoped] = ACTIONS(3479), - [anon_sym_EQ_GT] = ACTIONS(3445), - [anon_sym_COLON_COLON] = ACTIONS(3445), - [anon_sym_var] = ACTIONS(3479), - [sym_predefined_type] = ACTIONS(3482), - [anon_sym_yield] = ACTIONS(3479), - [anon_sym_switch] = ACTIONS(3447), - [anon_sym_when] = ACTIONS(3479), - [anon_sym_DOT_DOT] = ACTIONS(3445), - [anon_sym_PLUS_EQ] = ACTIONS(3445), - [anon_sym_DASH_EQ] = ACTIONS(3445), - [anon_sym_STAR_EQ] = ACTIONS(3445), - [anon_sym_SLASH_EQ] = ACTIONS(3445), - [anon_sym_PERCENT_EQ] = ACTIONS(3445), - [anon_sym_AMP_EQ] = ACTIONS(3445), - [anon_sym_CARET_EQ] = ACTIONS(3445), - [anon_sym_PIPE_EQ] = ACTIONS(3445), - [anon_sym_LT_LT_EQ] = ACTIONS(3445), - [anon_sym_GT_GT_EQ] = ACTIONS(3445), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3445), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3445), - [anon_sym_AMP_AMP] = ACTIONS(3445), - [anon_sym_PIPE_PIPE] = ACTIONS(3445), - [anon_sym_QMARK_QMARK] = ACTIONS(3447), - [anon_sym_from] = ACTIONS(3479), - [anon_sym_into] = ACTIONS(3479), - [anon_sym_join] = ACTIONS(3479), - [anon_sym_on] = ACTIONS(3479), - [anon_sym_equals] = ACTIONS(3479), - [anon_sym_let] = ACTIONS(3479), - [anon_sym_orderby] = ACTIONS(3479), - [anon_sym_ascending] = ACTIONS(3479), - [anon_sym_descending] = ACTIONS(3479), - [anon_sym_group] = ACTIONS(3479), - [anon_sym_by] = ACTIONS(3479), - [anon_sym_select] = ACTIONS(3479), - [anon_sym_as] = ACTIONS(3447), - [anon_sym_is] = ACTIONS(3447), - [anon_sym_DASH_GT] = ACTIONS(3445), - [anon_sym_with] = ACTIONS(3447), - [aux_sym_preproc_if_token3] = ACTIONS(3445), - [aux_sym_preproc_else_token1] = ACTIONS(3445), - [aux_sym_preproc_elif_token1] = ACTIONS(3445), + [2140] = { + [sym_preproc_region] = STATE(2140), + [sym_preproc_endregion] = STATE(2140), + [sym_preproc_line] = STATE(2140), + [sym_preproc_pragma] = STATE(2140), + [sym_preproc_nullable] = STATE(2140), + [sym_preproc_error] = STATE(2140), + [sym_preproc_warning] = STATE(2140), + [sym_preproc_define] = STATE(2140), + [sym_preproc_undef] = STATE(2140), + [sym__identifier_token] = ACTIONS(3489), + [anon_sym_extern] = ACTIONS(3489), + [anon_sym_alias] = ACTIONS(3489), + [anon_sym_SEMI] = ACTIONS(3491), + [anon_sym_global] = ACTIONS(3489), + [anon_sym_using] = ACTIONS(3489), + [anon_sym_unsafe] = ACTIONS(3489), + [anon_sym_static] = ACTIONS(3489), + [anon_sym_LBRACK] = ACTIONS(3491), + [anon_sym_LPAREN] = ACTIONS(3491), + [anon_sym_return] = ACTIONS(3489), + [anon_sym_ref] = ACTIONS(3489), + [anon_sym_LBRACE] = ACTIONS(3491), + [anon_sym_delegate] = 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(3491), + [anon_sym_TILDE] = ACTIONS(3491), + [anon_sym_PLUS_PLUS] = ACTIONS(3491), + [anon_sym_DASH_DASH] = ACTIONS(3491), + [anon_sym_true] = ACTIONS(3489), + [anon_sym_false] = ACTIONS(3489), + [anon_sym_PLUS] = ACTIONS(3489), + [anon_sym_DASH] = ACTIONS(3489), + [anon_sym_STAR] = ACTIONS(3491), + [anon_sym_CARET] = ACTIONS(3491), + [anon_sym_AMP] = ACTIONS(3491), + [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(3491), + [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(3491), + [sym_integer_literal] = ACTIONS(3489), + [sym_real_literal] = ACTIONS(3491), + [anon_sym_DQUOTE] = ACTIONS(3491), + [sym_verbatim_string_literal] = ACTIONS(3491), + [aux_sym_preproc_if_token1] = ACTIONS(3491), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -393632,6 +393480,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(3491), + [sym_interpolation_verbatim_start] = ACTIONS(3491), + [sym_interpolation_raw_start] = ACTIONS(3491), + [sym_raw_string_start] = ACTIONS(3491), }, [2141] = { [sym_preproc_region] = STATE(2141), @@ -393643,247 +393495,6 @@ 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(3489), - [anon_sym_extern] = ACTIONS(3489), - [anon_sym_alias] = ACTIONS(3489), - [anon_sym_SEMI] = ACTIONS(3491), - [anon_sym_global] = ACTIONS(3489), - [anon_sym_using] = ACTIONS(3489), - [anon_sym_unsafe] = ACTIONS(3489), - [anon_sym_static] = ACTIONS(3489), - [anon_sym_LBRACK] = ACTIONS(3491), - [anon_sym_LPAREN] = ACTIONS(3491), - [anon_sym_return] = ACTIONS(3489), - [anon_sym_ref] = ACTIONS(3489), - [anon_sym_LBRACE] = ACTIONS(3491), - [anon_sym_RBRACE] = ACTIONS(3491), - [anon_sym_delegate] = 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(3491), - [anon_sym_TILDE] = ACTIONS(3491), - [anon_sym_PLUS_PLUS] = ACTIONS(3491), - [anon_sym_DASH_DASH] = ACTIONS(3491), - [anon_sym_true] = ACTIONS(3489), - [anon_sym_false] = ACTIONS(3489), - [anon_sym_PLUS] = ACTIONS(3489), - [anon_sym_DASH] = ACTIONS(3489), - [anon_sym_STAR] = ACTIONS(3491), - [anon_sym_CARET] = ACTIONS(3491), - [anon_sym_AMP] = ACTIONS(3491), - [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_case] = 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(3491), - [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(3491), - [sym_integer_literal] = ACTIONS(3489), - [sym_real_literal] = ACTIONS(3491), - [anon_sym_DQUOTE] = ACTIONS(3491), - [sym_verbatim_string_literal] = ACTIONS(3491), - [aux_sym_preproc_if_token1] = 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), - [sym_interpolation_regular_start] = ACTIONS(3491), - [sym_interpolation_verbatim_start] = ACTIONS(3491), - [sym_interpolation_raw_start] = ACTIONS(3491), - [sym_raw_string_start] = ACTIONS(3491), - }, - [2142] = { - [sym__name] = STATE(4390), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(4096), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(4109), - [sym_type] = STATE(6080), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_identifier] = STATE(5789), - [sym__reserved_identifier] = STATE(3691), - [sym_preproc_region] = STATE(2142), - [sym_preproc_endregion] = STATE(2142), - [sym_preproc_line] = STATE(2142), - [sym_preproc_pragma] = STATE(2142), - [sym_preproc_nullable] = STATE(2142), - [sym_preproc_error] = STATE(2142), - [sym_preproc_warning] = STATE(2142), - [sym_preproc_define] = STATE(2142), - [sym_preproc_undef] = STATE(2142), - [sym__identifier_token] = ACTIONS(3439), - [anon_sym_alias] = ACTIONS(3442), - [anon_sym_global] = ACTIONS(3442), - [anon_sym_EQ] = ACTIONS(3447), - [anon_sym_LBRACK] = ACTIONS(3445), - [anon_sym_COLON] = ACTIONS(3447), - [anon_sym_COMMA] = ACTIONS(3445), - [anon_sym_LPAREN] = ACTIONS(3449), - [anon_sym_ref] = ACTIONS(3452), - [anon_sym_LBRACE] = ACTIONS(3445), - [anon_sym_delegate] = ACTIONS(3454), - [anon_sym_file] = ACTIONS(3442), - [anon_sym_LT] = ACTIONS(3447), - [anon_sym_GT] = ACTIONS(3447), - [anon_sym_where] = ACTIONS(3442), - [anon_sym_QMARK] = ACTIONS(3447), - [anon_sym_notnull] = ACTIONS(3442), - [anon_sym_unmanaged] = ACTIONS(3442), - [anon_sym_BANG] = ACTIONS(3447), - [anon_sym_PLUS_PLUS] = ACTIONS(3445), - [anon_sym_DASH_DASH] = ACTIONS(3445), - [anon_sym_PLUS] = ACTIONS(3447), - [anon_sym_DASH] = ACTIONS(3447), - [anon_sym_STAR] = ACTIONS(3447), - [anon_sym_SLASH] = ACTIONS(3447), - [anon_sym_PERCENT] = ACTIONS(3447), - [anon_sym_CARET] = ACTIONS(3447), - [anon_sym_PIPE] = ACTIONS(3447), - [anon_sym_AMP] = ACTIONS(3447), - [anon_sym_LT_LT] = ACTIONS(3447), - [anon_sym_GT_GT] = ACTIONS(3447), - [anon_sym_GT_GT_GT] = ACTIONS(3447), - [anon_sym_EQ_EQ] = ACTIONS(3445), - [anon_sym_BANG_EQ] = ACTIONS(3445), - [anon_sym_GT_EQ] = ACTIONS(3445), - [anon_sym_LT_EQ] = ACTIONS(3445), - [anon_sym_DOT] = ACTIONS(3447), - [anon_sym_scoped] = ACTIONS(3456), - [anon_sym_EQ_GT] = ACTIONS(3445), - [anon_sym_COLON_COLON] = ACTIONS(3445), - [anon_sym_var] = ACTIONS(3459), - [sym_predefined_type] = ACTIONS(3001), - [anon_sym_yield] = ACTIONS(3442), - [anon_sym_switch] = ACTIONS(3447), - [anon_sym_when] = ACTIONS(3442), - [sym_discard] = ACTIONS(3447), - [anon_sym_DOT_DOT] = ACTIONS(3445), - [anon_sym_and] = ACTIONS(3447), - [anon_sym_or] = ACTIONS(3447), - [anon_sym_PLUS_EQ] = ACTIONS(3445), - [anon_sym_DASH_EQ] = ACTIONS(3445), - [anon_sym_STAR_EQ] = ACTIONS(3445), - [anon_sym_SLASH_EQ] = ACTIONS(3445), - [anon_sym_PERCENT_EQ] = ACTIONS(3445), - [anon_sym_AMP_EQ] = ACTIONS(3445), - [anon_sym_CARET_EQ] = ACTIONS(3445), - [anon_sym_PIPE_EQ] = ACTIONS(3445), - [anon_sym_LT_LT_EQ] = ACTIONS(3445), - [anon_sym_GT_GT_EQ] = ACTIONS(3445), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3445), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3445), - [anon_sym_AMP_AMP] = ACTIONS(3445), - [anon_sym_PIPE_PIPE] = ACTIONS(3445), - [anon_sym_QMARK_QMARK] = ACTIONS(3447), - [anon_sym_from] = ACTIONS(3442), - [anon_sym_into] = ACTIONS(3442), - [anon_sym_join] = ACTIONS(3442), - [anon_sym_on] = ACTIONS(3442), - [anon_sym_equals] = ACTIONS(3442), - [anon_sym_let] = ACTIONS(3442), - [anon_sym_orderby] = ACTIONS(3442), - [anon_sym_ascending] = ACTIONS(3442), - [anon_sym_descending] = ACTIONS(3442), - [anon_sym_group] = ACTIONS(3442), - [anon_sym_by] = ACTIONS(3442), - [anon_sym_select] = ACTIONS(3442), - [anon_sym_as] = ACTIONS(3447), - [anon_sym_is] = ACTIONS(3447), - [anon_sym_DASH_GT] = ACTIONS(3445), - [anon_sym_with] = ACTIONS(3447), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_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(3445), - }, - [2143] = { - [sym_preproc_region] = STATE(2143), - [sym_preproc_endregion] = STATE(2143), - [sym_preproc_line] = STATE(2143), - [sym_preproc_pragma] = STATE(2143), - [sym_preproc_nullable] = STATE(2143), - [sym_preproc_error] = STATE(2143), - [sym_preproc_warning] = STATE(2143), - [sym_preproc_define] = STATE(2143), - [sym_preproc_undef] = STATE(2143), [sym__identifier_token] = ACTIONS(3493), [anon_sym_extern] = ACTIONS(3493), [anon_sym_alias] = ACTIONS(3493), @@ -393993,16 +393604,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_interpolation_raw_start] = ACTIONS(3495), [sym_raw_string_start] = ACTIONS(3495), }, - [2144] = { - [sym_preproc_region] = STATE(2144), - [sym_preproc_endregion] = STATE(2144), - [sym_preproc_line] = STATE(2144), - [sym_preproc_pragma] = STATE(2144), - [sym_preproc_nullable] = STATE(2144), - [sym_preproc_error] = STATE(2144), - [sym_preproc_warning] = STATE(2144), - [sym_preproc_define] = STATE(2144), - [sym_preproc_undef] = STATE(2144), + [2142] = { + [sym_preproc_region] = STATE(2142), + [sym_preproc_endregion] = STATE(2142), + [sym_preproc_line] = STATE(2142), + [sym_preproc_pragma] = STATE(2142), + [sym_preproc_nullable] = STATE(2142), + [sym_preproc_error] = STATE(2142), + [sym_preproc_warning] = STATE(2142), + [sym_preproc_define] = STATE(2142), + [sym_preproc_undef] = STATE(2142), [sym__identifier_token] = ACTIONS(3497), [anon_sym_extern] = ACTIONS(3497), [anon_sym_alias] = ACTIONS(3497), @@ -394112,16 +393723,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_interpolation_raw_start] = ACTIONS(3499), [sym_raw_string_start] = ACTIONS(3499), }, - [2145] = { - [sym_preproc_region] = STATE(2145), - [sym_preproc_endregion] = STATE(2145), - [sym_preproc_line] = STATE(2145), - [sym_preproc_pragma] = STATE(2145), - [sym_preproc_nullable] = STATE(2145), - [sym_preproc_error] = STATE(2145), - [sym_preproc_warning] = STATE(2145), - [sym_preproc_define] = STATE(2145), - [sym_preproc_undef] = STATE(2145), + [2143] = { + [sym_preproc_region] = STATE(2143), + [sym_preproc_endregion] = STATE(2143), + [sym_preproc_line] = STATE(2143), + [sym_preproc_pragma] = STATE(2143), + [sym_preproc_nullable] = STATE(2143), + [sym_preproc_error] = STATE(2143), + [sym_preproc_warning] = STATE(2143), + [sym_preproc_define] = STATE(2143), + [sym_preproc_undef] = STATE(2143), [sym__identifier_token] = ACTIONS(3501), [anon_sym_extern] = ACTIONS(3501), [anon_sym_alias] = ACTIONS(3501), @@ -394231,16 +393842,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_interpolation_raw_start] = ACTIONS(3503), [sym_raw_string_start] = ACTIONS(3503), }, - [2146] = { - [sym_preproc_region] = STATE(2146), - [sym_preproc_endregion] = STATE(2146), - [sym_preproc_line] = STATE(2146), - [sym_preproc_pragma] = STATE(2146), - [sym_preproc_nullable] = STATE(2146), - [sym_preproc_error] = STATE(2146), - [sym_preproc_warning] = STATE(2146), - [sym_preproc_define] = STATE(2146), - [sym_preproc_undef] = STATE(2146), + [2144] = { + [sym_preproc_region] = STATE(2144), + [sym_preproc_endregion] = STATE(2144), + [sym_preproc_line] = STATE(2144), + [sym_preproc_pragma] = STATE(2144), + [sym_preproc_nullable] = STATE(2144), + [sym_preproc_error] = STATE(2144), + [sym_preproc_warning] = STATE(2144), + [sym_preproc_define] = STATE(2144), + [sym_preproc_undef] = STATE(2144), [sym__identifier_token] = ACTIONS(3505), [anon_sym_extern] = ACTIONS(3505), [anon_sym_alias] = ACTIONS(3505), @@ -394350,16 +393961,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_interpolation_raw_start] = ACTIONS(3507), [sym_raw_string_start] = ACTIONS(3507), }, - [2147] = { - [sym_preproc_region] = STATE(2147), - [sym_preproc_endregion] = STATE(2147), - [sym_preproc_line] = STATE(2147), - [sym_preproc_pragma] = STATE(2147), - [sym_preproc_nullable] = STATE(2147), - [sym_preproc_error] = STATE(2147), - [sym_preproc_warning] = STATE(2147), - [sym_preproc_define] = STATE(2147), - [sym_preproc_undef] = STATE(2147), + [2145] = { + [sym_preproc_region] = STATE(2145), + [sym_preproc_endregion] = STATE(2145), + [sym_preproc_line] = STATE(2145), + [sym_preproc_pragma] = STATE(2145), + [sym_preproc_nullable] = STATE(2145), + [sym_preproc_error] = STATE(2145), + [sym_preproc_warning] = STATE(2145), + [sym_preproc_define] = STATE(2145), + [sym_preproc_undef] = STATE(2145), [sym__identifier_token] = ACTIONS(3509), [anon_sym_extern] = ACTIONS(3509), [anon_sym_alias] = ACTIONS(3509), @@ -394469,16 +394080,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_interpolation_raw_start] = ACTIONS(3511), [sym_raw_string_start] = ACTIONS(3511), }, - [2148] = { - [sym_preproc_region] = STATE(2148), - [sym_preproc_endregion] = STATE(2148), - [sym_preproc_line] = STATE(2148), - [sym_preproc_pragma] = STATE(2148), - [sym_preproc_nullable] = STATE(2148), - [sym_preproc_error] = STATE(2148), - [sym_preproc_warning] = STATE(2148), - [sym_preproc_define] = STATE(2148), - [sym_preproc_undef] = STATE(2148), + [2146] = { + [sym_preproc_region] = STATE(2146), + [sym_preproc_endregion] = STATE(2146), + [sym_preproc_line] = STATE(2146), + [sym_preproc_pragma] = STATE(2146), + [sym_preproc_nullable] = STATE(2146), + [sym_preproc_error] = STATE(2146), + [sym_preproc_warning] = STATE(2146), + [sym_preproc_define] = STATE(2146), + [sym_preproc_undef] = STATE(2146), [sym__identifier_token] = ACTIONS(3513), [anon_sym_extern] = ACTIONS(3513), [anon_sym_alias] = ACTIONS(3513), @@ -394588,16 +394199,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_interpolation_raw_start] = ACTIONS(3515), [sym_raw_string_start] = ACTIONS(3515), }, - [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), + [2147] = { + [sym_preproc_region] = STATE(2147), + [sym_preproc_endregion] = STATE(2147), + [sym_preproc_line] = STATE(2147), + [sym_preproc_pragma] = STATE(2147), + [sym_preproc_nullable] = STATE(2147), + [sym_preproc_error] = STATE(2147), + [sym_preproc_warning] = STATE(2147), + [sym_preproc_define] = STATE(2147), + [sym_preproc_undef] = STATE(2147), [sym__identifier_token] = ACTIONS(3517), [anon_sym_extern] = ACTIONS(3517), [anon_sym_alias] = ACTIONS(3517), @@ -394707,16 +394318,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_interpolation_raw_start] = ACTIONS(3519), [sym_raw_string_start] = ACTIONS(3519), }, - [2150] = { - [sym_preproc_region] = STATE(2150), - [sym_preproc_endregion] = STATE(2150), - [sym_preproc_line] = STATE(2150), - [sym_preproc_pragma] = STATE(2150), - [sym_preproc_nullable] = STATE(2150), - [sym_preproc_error] = STATE(2150), - [sym_preproc_warning] = STATE(2150), - [sym_preproc_define] = STATE(2150), - [sym_preproc_undef] = STATE(2150), + [2148] = { + [sym_preproc_region] = STATE(2148), + [sym_preproc_endregion] = STATE(2148), + [sym_preproc_line] = STATE(2148), + [sym_preproc_pragma] = STATE(2148), + [sym_preproc_nullable] = STATE(2148), + [sym_preproc_error] = STATE(2148), + [sym_preproc_warning] = STATE(2148), + [sym_preproc_define] = STATE(2148), + [sym_preproc_undef] = STATE(2148), [sym__identifier_token] = ACTIONS(3521), [anon_sym_extern] = ACTIONS(3521), [anon_sym_alias] = ACTIONS(3521), @@ -394826,16 +394437,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_interpolation_raw_start] = ACTIONS(3523), [sym_raw_string_start] = ACTIONS(3523), }, - [2151] = { - [sym_preproc_region] = STATE(2151), - [sym_preproc_endregion] = STATE(2151), - [sym_preproc_line] = STATE(2151), - [sym_preproc_pragma] = STATE(2151), - [sym_preproc_nullable] = STATE(2151), - [sym_preproc_error] = STATE(2151), - [sym_preproc_warning] = STATE(2151), - [sym_preproc_define] = STATE(2151), - [sym_preproc_undef] = STATE(2151), + [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(3525), [anon_sym_extern] = ACTIONS(3525), [anon_sym_alias] = ACTIONS(3525), @@ -394945,16 +394556,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_interpolation_raw_start] = ACTIONS(3527), [sym_raw_string_start] = ACTIONS(3527), }, - [2152] = { - [sym_preproc_region] = STATE(2152), - [sym_preproc_endregion] = STATE(2152), - [sym_preproc_line] = STATE(2152), - [sym_preproc_pragma] = STATE(2152), - [sym_preproc_nullable] = STATE(2152), - [sym_preproc_error] = STATE(2152), - [sym_preproc_warning] = STATE(2152), - [sym_preproc_define] = STATE(2152), - [sym_preproc_undef] = STATE(2152), + [2150] = { + [sym_preproc_region] = STATE(2150), + [sym_preproc_endregion] = STATE(2150), + [sym_preproc_line] = STATE(2150), + [sym_preproc_pragma] = STATE(2150), + [sym_preproc_nullable] = STATE(2150), + [sym_preproc_error] = STATE(2150), + [sym_preproc_warning] = STATE(2150), + [sym_preproc_define] = STATE(2150), + [sym_preproc_undef] = STATE(2150), [sym__identifier_token] = ACTIONS(3529), [anon_sym_extern] = ACTIONS(3529), [anon_sym_alias] = ACTIONS(3529), @@ -395064,16 +394675,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_interpolation_raw_start] = ACTIONS(3531), [sym_raw_string_start] = ACTIONS(3531), }, - [2153] = { - [sym_preproc_region] = STATE(2153), - [sym_preproc_endregion] = STATE(2153), - [sym_preproc_line] = STATE(2153), - [sym_preproc_pragma] = STATE(2153), - [sym_preproc_nullable] = STATE(2153), - [sym_preproc_error] = STATE(2153), - [sym_preproc_warning] = STATE(2153), - [sym_preproc_define] = STATE(2153), - [sym_preproc_undef] = STATE(2153), + [2151] = { + [sym_preproc_region] = STATE(2151), + [sym_preproc_endregion] = STATE(2151), + [sym_preproc_line] = STATE(2151), + [sym_preproc_pragma] = STATE(2151), + [sym_preproc_nullable] = STATE(2151), + [sym_preproc_error] = STATE(2151), + [sym_preproc_warning] = STATE(2151), + [sym_preproc_define] = STATE(2151), + [sym_preproc_undef] = STATE(2151), [sym__identifier_token] = ACTIONS(3533), [anon_sym_extern] = ACTIONS(3533), [anon_sym_alias] = ACTIONS(3533), @@ -395183,16 +394794,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_interpolation_raw_start] = ACTIONS(3535), [sym_raw_string_start] = ACTIONS(3535), }, - [2154] = { - [sym_preproc_region] = STATE(2154), - [sym_preproc_endregion] = STATE(2154), - [sym_preproc_line] = STATE(2154), - [sym_preproc_pragma] = STATE(2154), - [sym_preproc_nullable] = STATE(2154), - [sym_preproc_error] = STATE(2154), - [sym_preproc_warning] = STATE(2154), - [sym_preproc_define] = STATE(2154), - [sym_preproc_undef] = STATE(2154), + [2152] = { + [sym_preproc_region] = STATE(2152), + [sym_preproc_endregion] = STATE(2152), + [sym_preproc_line] = STATE(2152), + [sym_preproc_pragma] = STATE(2152), + [sym_preproc_nullable] = STATE(2152), + [sym_preproc_error] = STATE(2152), + [sym_preproc_warning] = STATE(2152), + [sym_preproc_define] = STATE(2152), + [sym_preproc_undef] = STATE(2152), [sym__identifier_token] = ACTIONS(3537), [anon_sym_extern] = ACTIONS(3537), [anon_sym_alias] = ACTIONS(3537), @@ -395302,16 +394913,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_interpolation_raw_start] = ACTIONS(3539), [sym_raw_string_start] = ACTIONS(3539), }, - [2155] = { - [sym_preproc_region] = STATE(2155), - [sym_preproc_endregion] = STATE(2155), - [sym_preproc_line] = STATE(2155), - [sym_preproc_pragma] = STATE(2155), - [sym_preproc_nullable] = STATE(2155), - [sym_preproc_error] = STATE(2155), - [sym_preproc_warning] = STATE(2155), - [sym_preproc_define] = STATE(2155), - [sym_preproc_undef] = STATE(2155), + [2153] = { + [sym_preproc_region] = STATE(2153), + [sym_preproc_endregion] = STATE(2153), + [sym_preproc_line] = STATE(2153), + [sym_preproc_pragma] = STATE(2153), + [sym_preproc_nullable] = STATE(2153), + [sym_preproc_error] = STATE(2153), + [sym_preproc_warning] = STATE(2153), + [sym_preproc_define] = STATE(2153), + [sym_preproc_undef] = STATE(2153), [sym__identifier_token] = ACTIONS(3541), [anon_sym_extern] = ACTIONS(3541), [anon_sym_alias] = ACTIONS(3541), @@ -395421,16 +395032,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_interpolation_raw_start] = ACTIONS(3543), [sym_raw_string_start] = ACTIONS(3543), }, - [2156] = { - [sym_preproc_region] = STATE(2156), - [sym_preproc_endregion] = STATE(2156), - [sym_preproc_line] = STATE(2156), - [sym_preproc_pragma] = STATE(2156), - [sym_preproc_nullable] = STATE(2156), - [sym_preproc_error] = STATE(2156), - [sym_preproc_warning] = STATE(2156), - [sym_preproc_define] = STATE(2156), - [sym_preproc_undef] = STATE(2156), + [2154] = { + [sym_preproc_region] = STATE(2154), + [sym_preproc_endregion] = STATE(2154), + [sym_preproc_line] = STATE(2154), + [sym_preproc_pragma] = STATE(2154), + [sym_preproc_nullable] = STATE(2154), + [sym_preproc_error] = STATE(2154), + [sym_preproc_warning] = STATE(2154), + [sym_preproc_define] = STATE(2154), + [sym_preproc_undef] = STATE(2154), [sym__identifier_token] = ACTIONS(3545), [anon_sym_extern] = ACTIONS(3545), [anon_sym_alias] = ACTIONS(3545), @@ -395540,16 +395151,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_interpolation_raw_start] = ACTIONS(3547), [sym_raw_string_start] = ACTIONS(3547), }, - [2157] = { - [sym_preproc_region] = STATE(2157), - [sym_preproc_endregion] = STATE(2157), - [sym_preproc_line] = STATE(2157), - [sym_preproc_pragma] = STATE(2157), - [sym_preproc_nullable] = STATE(2157), - [sym_preproc_error] = STATE(2157), - [sym_preproc_warning] = STATE(2157), - [sym_preproc_define] = STATE(2157), - [sym_preproc_undef] = STATE(2157), + [2155] = { + [sym_preproc_region] = STATE(2155), + [sym_preproc_endregion] = STATE(2155), + [sym_preproc_line] = STATE(2155), + [sym_preproc_pragma] = STATE(2155), + [sym_preproc_nullable] = STATE(2155), + [sym_preproc_error] = STATE(2155), + [sym_preproc_warning] = STATE(2155), + [sym_preproc_define] = STATE(2155), + [sym_preproc_undef] = STATE(2155), [sym__identifier_token] = ACTIONS(3549), [anon_sym_extern] = ACTIONS(3549), [anon_sym_alias] = ACTIONS(3549), @@ -395659,16 +395270,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_interpolation_raw_start] = ACTIONS(3551), [sym_raw_string_start] = ACTIONS(3551), }, - [2158] = { - [sym_preproc_region] = STATE(2158), - [sym_preproc_endregion] = STATE(2158), - [sym_preproc_line] = STATE(2158), - [sym_preproc_pragma] = STATE(2158), - [sym_preproc_nullable] = STATE(2158), - [sym_preproc_error] = STATE(2158), - [sym_preproc_warning] = STATE(2158), - [sym_preproc_define] = STATE(2158), - [sym_preproc_undef] = STATE(2158), + [2156] = { + [sym_preproc_region] = STATE(2156), + [sym_preproc_endregion] = STATE(2156), + [sym_preproc_line] = STATE(2156), + [sym_preproc_pragma] = STATE(2156), + [sym_preproc_nullable] = STATE(2156), + [sym_preproc_error] = STATE(2156), + [sym_preproc_warning] = STATE(2156), + [sym_preproc_define] = STATE(2156), + [sym_preproc_undef] = STATE(2156), [sym__identifier_token] = ACTIONS(3553), [anon_sym_extern] = ACTIONS(3553), [anon_sym_alias] = ACTIONS(3553), @@ -395778,16 +395389,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_interpolation_raw_start] = ACTIONS(3555), [sym_raw_string_start] = ACTIONS(3555), }, - [2159] = { - [sym_preproc_region] = STATE(2159), - [sym_preproc_endregion] = STATE(2159), - [sym_preproc_line] = STATE(2159), - [sym_preproc_pragma] = STATE(2159), - [sym_preproc_nullable] = STATE(2159), - [sym_preproc_error] = STATE(2159), - [sym_preproc_warning] = STATE(2159), - [sym_preproc_define] = STATE(2159), - [sym_preproc_undef] = STATE(2159), + [2157] = { + [sym_preproc_region] = STATE(2157), + [sym_preproc_endregion] = STATE(2157), + [sym_preproc_line] = STATE(2157), + [sym_preproc_pragma] = STATE(2157), + [sym_preproc_nullable] = STATE(2157), + [sym_preproc_error] = STATE(2157), + [sym_preproc_warning] = STATE(2157), + [sym_preproc_define] = STATE(2157), + [sym_preproc_undef] = STATE(2157), [sym__identifier_token] = ACTIONS(3557), [anon_sym_extern] = ACTIONS(3557), [anon_sym_alias] = ACTIONS(3557), @@ -395897,16 +395508,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_interpolation_raw_start] = ACTIONS(3559), [sym_raw_string_start] = ACTIONS(3559), }, - [2160] = { - [sym_preproc_region] = STATE(2160), - [sym_preproc_endregion] = STATE(2160), - [sym_preproc_line] = STATE(2160), - [sym_preproc_pragma] = STATE(2160), - [sym_preproc_nullable] = STATE(2160), - [sym_preproc_error] = STATE(2160), - [sym_preproc_warning] = STATE(2160), - [sym_preproc_define] = STATE(2160), - [sym_preproc_undef] = STATE(2160), + [2158] = { + [sym_preproc_region] = STATE(2158), + [sym_preproc_endregion] = STATE(2158), + [sym_preproc_line] = STATE(2158), + [sym_preproc_pragma] = STATE(2158), + [sym_preproc_nullable] = STATE(2158), + [sym_preproc_error] = STATE(2158), + [sym_preproc_warning] = STATE(2158), + [sym_preproc_define] = STATE(2158), + [sym_preproc_undef] = STATE(2158), [sym__identifier_token] = ACTIONS(3561), [anon_sym_extern] = ACTIONS(3561), [anon_sym_alias] = ACTIONS(3561), @@ -396016,204 +395627,94 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_interpolation_raw_start] = ACTIONS(3563), [sym_raw_string_start] = ACTIONS(3563), }, - [2161] = { - [sym_preproc_region] = STATE(2161), - [sym_preproc_endregion] = STATE(2161), - [sym_preproc_line] = STATE(2161), - [sym_preproc_pragma] = STATE(2161), - [sym_preproc_nullable] = STATE(2161), - [sym_preproc_error] = STATE(2161), - [sym_preproc_warning] = STATE(2161), - [sym_preproc_define] = STATE(2161), - [sym_preproc_undef] = STATE(2161), + [2159] = { + [sym__name] = STATE(5130), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(4068), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_ref_type] = STATE(2331), + [sym__scoped_base_type] = STATE(2339), + [sym_identifier] = STATE(4370), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_region] = STATE(2159), + [sym_preproc_endregion] = STATE(2159), + [sym_preproc_line] = STATE(2159), + [sym_preproc_pragma] = STATE(2159), + [sym_preproc_nullable] = STATE(2159), + [sym_preproc_error] = STATE(2159), + [sym_preproc_warning] = STATE(2159), + [sym_preproc_define] = STATE(2159), + [sym_preproc_undef] = STATE(2159), [sym__identifier_token] = ACTIONS(3565), - [anon_sym_extern] = ACTIONS(3565), - [anon_sym_alias] = ACTIONS(3565), - [anon_sym_SEMI] = ACTIONS(3567), - [anon_sym_global] = ACTIONS(3565), - [anon_sym_using] = ACTIONS(3565), - [anon_sym_unsafe] = ACTIONS(3565), - [anon_sym_static] = ACTIONS(3565), - [anon_sym_LBRACK] = ACTIONS(3567), - [anon_sym_LPAREN] = ACTIONS(3567), - [anon_sym_return] = ACTIONS(3565), - [anon_sym_ref] = ACTIONS(3565), - [anon_sym_LBRACE] = ACTIONS(3567), - [anon_sym_delegate] = ACTIONS(3565), - [anon_sym_abstract] = ACTIONS(3565), - [anon_sym_async] = ACTIONS(3565), - [anon_sym_const] = ACTIONS(3565), - [anon_sym_file] = ACTIONS(3565), - [anon_sym_fixed] = ACTIONS(3565), - [anon_sym_internal] = ACTIONS(3565), - [anon_sym_new] = ACTIONS(3565), - [anon_sym_override] = ACTIONS(3565), - [anon_sym_partial] = ACTIONS(3565), - [anon_sym_private] = ACTIONS(3565), - [anon_sym_protected] = ACTIONS(3565), - [anon_sym_public] = ACTIONS(3565), - [anon_sym_readonly] = ACTIONS(3565), - [anon_sym_required] = ACTIONS(3565), - [anon_sym_sealed] = ACTIONS(3565), - [anon_sym_virtual] = ACTIONS(3565), - [anon_sym_volatile] = ACTIONS(3565), - [anon_sym_where] = ACTIONS(3565), - [anon_sym_notnull] = ACTIONS(3565), - [anon_sym_unmanaged] = ACTIONS(3565), - [anon_sym_checked] = ACTIONS(3565), - [anon_sym_BANG] = ACTIONS(3567), - [anon_sym_TILDE] = ACTIONS(3567), - [anon_sym_PLUS_PLUS] = ACTIONS(3567), - [anon_sym_DASH_DASH] = ACTIONS(3567), - [anon_sym_true] = ACTIONS(3565), - [anon_sym_false] = ACTIONS(3565), - [anon_sym_PLUS] = ACTIONS(3565), - [anon_sym_DASH] = ACTIONS(3565), - [anon_sym_STAR] = ACTIONS(3567), - [anon_sym_CARET] = ACTIONS(3567), - [anon_sym_AMP] = ACTIONS(3567), - [anon_sym_this] = ACTIONS(3565), - [anon_sym_scoped] = ACTIONS(3565), - [anon_sym_base] = ACTIONS(3565), - [anon_sym_var] = ACTIONS(3565), - [sym_predefined_type] = ACTIONS(3565), - [anon_sym_break] = ACTIONS(3565), - [anon_sym_unchecked] = ACTIONS(3565), - [anon_sym_continue] = ACTIONS(3565), - [anon_sym_do] = ACTIONS(3565), - [anon_sym_while] = ACTIONS(3565), - [anon_sym_for] = ACTIONS(3565), - [anon_sym_lock] = ACTIONS(3565), - [anon_sym_yield] = ACTIONS(3565), - [anon_sym_switch] = ACTIONS(3565), - [anon_sym_default] = ACTIONS(3565), - [anon_sym_throw] = ACTIONS(3565), - [anon_sym_try] = ACTIONS(3565), - [anon_sym_when] = ACTIONS(3565), - [anon_sym_await] = ACTIONS(3565), - [anon_sym_foreach] = ACTIONS(3565), - [anon_sym_goto] = ACTIONS(3565), - [anon_sym_if] = ACTIONS(3565), - [anon_sym_DOT_DOT] = ACTIONS(3567), - [anon_sym_from] = ACTIONS(3565), - [anon_sym_into] = ACTIONS(3565), - [anon_sym_join] = ACTIONS(3565), - [anon_sym_on] = ACTIONS(3565), - [anon_sym_equals] = ACTIONS(3565), - [anon_sym_let] = ACTIONS(3565), - [anon_sym_orderby] = ACTIONS(3565), - [anon_sym_ascending] = ACTIONS(3565), - [anon_sym_descending] = ACTIONS(3565), - [anon_sym_group] = ACTIONS(3565), - [anon_sym_by] = ACTIONS(3565), - [anon_sym_select] = ACTIONS(3565), - [anon_sym_stackalloc] = ACTIONS(3565), - [anon_sym_sizeof] = ACTIONS(3565), - [anon_sym_typeof] = ACTIONS(3565), - [anon_sym___makeref] = ACTIONS(3565), - [anon_sym___reftype] = ACTIONS(3565), - [anon_sym___refvalue] = ACTIONS(3565), - [sym_null_literal] = ACTIONS(3565), - [anon_sym_SQUOTE] = ACTIONS(3567), - [sym_integer_literal] = ACTIONS(3565), - [sym_real_literal] = ACTIONS(3567), - [anon_sym_DQUOTE] = ACTIONS(3567), - [sym_verbatim_string_literal] = ACTIONS(3567), - [aux_sym_preproc_if_token1] = ACTIONS(3567), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(3567), - [sym_interpolation_verbatim_start] = ACTIONS(3567), - [sym_interpolation_raw_start] = ACTIONS(3567), - [sym_raw_string_start] = ACTIONS(3567), - }, - [2162] = { - [sym_preproc_region] = STATE(2162), - [sym_preproc_endregion] = STATE(2162), - [sym_preproc_line] = STATE(2162), - [sym_preproc_pragma] = STATE(2162), - [sym_preproc_nullable] = STATE(2162), - [sym_preproc_error] = STATE(2162), - [sym_preproc_warning] = STATE(2162), - [sym_preproc_define] = STATE(2162), - [sym_preproc_undef] = STATE(2162), - [sym__identifier_token] = ACTIONS(3569), - [anon_sym_extern] = ACTIONS(3569), [anon_sym_alias] = ACTIONS(3569), - [anon_sym_SEMI] = ACTIONS(3571), [anon_sym_global] = ACTIONS(3569), - [anon_sym_using] = ACTIONS(3569), - [anon_sym_unsafe] = ACTIONS(3569), - [anon_sym_static] = ACTIONS(3569), - [anon_sym_LBRACK] = ACTIONS(3571), - [anon_sym_LPAREN] = ACTIONS(3571), - [anon_sym_return] = ACTIONS(3569), - [anon_sym_ref] = ACTIONS(3569), - [anon_sym_LBRACE] = ACTIONS(3571), - [anon_sym_delegate] = ACTIONS(3569), - [anon_sym_abstract] = ACTIONS(3569), - [anon_sym_async] = ACTIONS(3569), - [anon_sym_const] = ACTIONS(3569), + [anon_sym_EQ] = ACTIONS(3431), + [anon_sym_LBRACK] = ACTIONS(3429), + [anon_sym_COLON] = ACTIONS(3431), + [anon_sym_COMMA] = ACTIONS(3429), + [anon_sym_LPAREN] = ACTIONS(3573), + [anon_sym_RPAREN] = ACTIONS(3429), + [anon_sym_ref] = ACTIONS(2689), + [anon_sym_LBRACE] = ACTIONS(3429), + [anon_sym_delegate] = ACTIONS(2689), [anon_sym_file] = ACTIONS(3569), - [anon_sym_fixed] = ACTIONS(3569), - [anon_sym_internal] = ACTIONS(3569), - [anon_sym_new] = ACTIONS(3569), - [anon_sym_override] = ACTIONS(3569), - [anon_sym_partial] = ACTIONS(3569), - [anon_sym_private] = ACTIONS(3569), - [anon_sym_protected] = ACTIONS(3569), - [anon_sym_public] = ACTIONS(3569), - [anon_sym_readonly] = ACTIONS(3569), - [anon_sym_required] = ACTIONS(3569), - [anon_sym_sealed] = ACTIONS(3569), - [anon_sym_virtual] = ACTIONS(3569), - [anon_sym_volatile] = ACTIONS(3569), + [anon_sym_readonly] = ACTIONS(2689), + [anon_sym_LT] = ACTIONS(3431), + [anon_sym_GT] = ACTIONS(3431), + [anon_sym_in] = ACTIONS(2689), + [anon_sym_out] = ACTIONS(2689), [anon_sym_where] = ACTIONS(3569), + [anon_sym_QMARK] = ACTIONS(3431), [anon_sym_notnull] = ACTIONS(3569), [anon_sym_unmanaged] = ACTIONS(3569), - [anon_sym_checked] = ACTIONS(3569), - [anon_sym_BANG] = ACTIONS(3571), - [anon_sym_TILDE] = ACTIONS(3571), - [anon_sym_PLUS_PLUS] = ACTIONS(3571), - [anon_sym_DASH_DASH] = ACTIONS(3571), - [anon_sym_true] = ACTIONS(3569), - [anon_sym_false] = ACTIONS(3569), - [anon_sym_PLUS] = ACTIONS(3569), - [anon_sym_DASH] = ACTIONS(3569), - [anon_sym_STAR] = ACTIONS(3571), - [anon_sym_CARET] = ACTIONS(3571), - [anon_sym_AMP] = ACTIONS(3571), - [anon_sym_this] = ACTIONS(3569), + [anon_sym_BANG] = ACTIONS(3431), + [anon_sym_PLUS_PLUS] = ACTIONS(3429), + [anon_sym_DASH_DASH] = ACTIONS(3429), + [anon_sym_PLUS] = ACTIONS(3431), + [anon_sym_DASH] = ACTIONS(3431), + [anon_sym_STAR] = ACTIONS(3431), + [anon_sym_SLASH] = ACTIONS(3431), + [anon_sym_PERCENT] = ACTIONS(3431), + [anon_sym_CARET] = ACTIONS(3431), + [anon_sym_PIPE] = ACTIONS(3431), + [anon_sym_AMP] = ACTIONS(3431), + [anon_sym_LT_LT] = ACTIONS(3431), + [anon_sym_GT_GT] = ACTIONS(3431), + [anon_sym_GT_GT_GT] = ACTIONS(3431), + [anon_sym_EQ_EQ] = ACTIONS(3429), + [anon_sym_BANG_EQ] = ACTIONS(3429), + [anon_sym_GT_EQ] = ACTIONS(3429), + [anon_sym_LT_EQ] = ACTIONS(3429), + [anon_sym_this] = ACTIONS(2689), + [anon_sym_DOT] = ACTIONS(3431), [anon_sym_scoped] = ACTIONS(3569), - [anon_sym_base] = ACTIONS(3569), + [anon_sym_EQ_GT] = ACTIONS(3429), + [anon_sym_COLON_COLON] = ACTIONS(3429), [anon_sym_var] = ACTIONS(3569), - [sym_predefined_type] = ACTIONS(3569), - [anon_sym_break] = ACTIONS(3569), - [anon_sym_unchecked] = ACTIONS(3569), - [anon_sym_continue] = ACTIONS(3569), - [anon_sym_do] = ACTIONS(3569), - [anon_sym_while] = ACTIONS(3569), - [anon_sym_for] = ACTIONS(3569), - [anon_sym_lock] = ACTIONS(3569), + [sym_predefined_type] = ACTIONS(2689), [anon_sym_yield] = ACTIONS(3569), - [anon_sym_switch] = ACTIONS(3569), - [anon_sym_default] = ACTIONS(3569), - [anon_sym_throw] = ACTIONS(3569), - [anon_sym_try] = ACTIONS(3569), + [anon_sym_switch] = ACTIONS(3431), [anon_sym_when] = ACTIONS(3569), - [anon_sym_await] = ACTIONS(3569), - [anon_sym_foreach] = ACTIONS(3569), - [anon_sym_goto] = ACTIONS(3569), - [anon_sym_if] = ACTIONS(3569), - [anon_sym_DOT_DOT] = ACTIONS(3571), + [sym_discard] = ACTIONS(3431), + [anon_sym_DOT_DOT] = ACTIONS(3429), + [anon_sym_and] = ACTIONS(3431), + [anon_sym_or] = ACTIONS(3431), + [anon_sym_PLUS_EQ] = ACTIONS(3429), + [anon_sym_DASH_EQ] = ACTIONS(3429), + [anon_sym_STAR_EQ] = ACTIONS(3429), + [anon_sym_SLASH_EQ] = ACTIONS(3429), + [anon_sym_PERCENT_EQ] = ACTIONS(3429), + [anon_sym_AMP_EQ] = ACTIONS(3429), + [anon_sym_CARET_EQ] = ACTIONS(3429), + [anon_sym_PIPE_EQ] = ACTIONS(3429), + [anon_sym_LT_LT_EQ] = ACTIONS(3429), + [anon_sym_GT_GT_EQ] = ACTIONS(3429), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3429), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3429), + [anon_sym_AMP_AMP] = ACTIONS(3429), + [anon_sym_PIPE_PIPE] = ACTIONS(3429), + [anon_sym_QMARK_QMARK] = ACTIONS(3431), [anon_sym_from] = ACTIONS(3569), [anon_sym_into] = ACTIONS(3569), [anon_sym_join] = ACTIONS(3569), @@ -396226,19 +395727,350 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(3569), [anon_sym_by] = ACTIONS(3569), [anon_sym_select] = ACTIONS(3569), - [anon_sym_stackalloc] = ACTIONS(3569), - [anon_sym_sizeof] = ACTIONS(3569), - [anon_sym_typeof] = ACTIONS(3569), - [anon_sym___makeref] = ACTIONS(3569), - [anon_sym___reftype] = ACTIONS(3569), - [anon_sym___refvalue] = ACTIONS(3569), - [sym_null_literal] = ACTIONS(3569), - [anon_sym_SQUOTE] = ACTIONS(3571), - [sym_integer_literal] = ACTIONS(3569), - [sym_real_literal] = ACTIONS(3571), - [anon_sym_DQUOTE] = ACTIONS(3571), - [sym_verbatim_string_literal] = ACTIONS(3571), - [aux_sym_preproc_if_token1] = ACTIONS(3571), + [anon_sym_as] = ACTIONS(3431), + [anon_sym_is] = ACTIONS(3431), + [anon_sym_DASH_GT] = ACTIONS(3429), + [anon_sym_with] = ACTIONS(3431), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + }, + [2160] = { + [sym__name] = STATE(2426), + [sym_alias_qualified_name] = STATE(2402), + [sym__simple_name] = STATE(2402), + [sym_qualified_name] = STATE(2402), + [sym_generic_name] = STATE(2384), + [sym_ref_type] = STATE(2331), + [sym__scoped_base_type] = STATE(2339), + [sym_identifier] = STATE(2351), + [sym__reserved_identifier] = STATE(2354), + [sym_preproc_region] = STATE(2160), + [sym_preproc_endregion] = STATE(2160), + [sym_preproc_line] = STATE(2160), + [sym_preproc_pragma] = STATE(2160), + [sym_preproc_nullable] = STATE(2160), + [sym_preproc_error] = STATE(2160), + [sym_preproc_warning] = STATE(2160), + [sym_preproc_define] = STATE(2160), + [sym_preproc_undef] = STATE(2160), + [sym__identifier_token] = ACTIONS(3576), + [anon_sym_alias] = ACTIONS(3579), + [anon_sym_SEMI] = ACTIONS(3429), + [anon_sym_global] = ACTIONS(3579), + [anon_sym_EQ] = ACTIONS(3431), + [anon_sym_LBRACK] = ACTIONS(3429), + [anon_sym_COMMA] = ACTIONS(3429), + [anon_sym_RBRACK] = ACTIONS(3429), + [anon_sym_LPAREN] = ACTIONS(3429), + [anon_sym_RPAREN] = ACTIONS(3429), + [anon_sym_ref] = ACTIONS(3582), + [anon_sym_LBRACE] = ACTIONS(3429), + [anon_sym_RBRACE] = ACTIONS(3429), + [anon_sym_file] = ACTIONS(3579), + [anon_sym_LT] = ACTIONS(3431), + [anon_sym_GT] = ACTIONS(3431), + [anon_sym_in] = ACTIONS(3431), + [anon_sym_where] = ACTIONS(3579), + [anon_sym_QMARK] = ACTIONS(3431), + [anon_sym_notnull] = ACTIONS(3579), + [anon_sym_unmanaged] = ACTIONS(3579), + [anon_sym_BANG] = ACTIONS(3431), + [anon_sym_PLUS_PLUS] = ACTIONS(3429), + [anon_sym_DASH_DASH] = ACTIONS(3429), + [anon_sym_PLUS] = ACTIONS(3431), + [anon_sym_DASH] = ACTIONS(3431), + [anon_sym_STAR] = ACTIONS(3431), + [anon_sym_SLASH] = ACTIONS(3431), + [anon_sym_PERCENT] = ACTIONS(3431), + [anon_sym_CARET] = ACTIONS(3431), + [anon_sym_PIPE] = ACTIONS(3431), + [anon_sym_AMP] = ACTIONS(3431), + [anon_sym_LT_LT] = ACTIONS(3431), + [anon_sym_GT_GT] = ACTIONS(3431), + [anon_sym_GT_GT_GT] = ACTIONS(3431), + [anon_sym_EQ_EQ] = ACTIONS(3429), + [anon_sym_BANG_EQ] = ACTIONS(3429), + [anon_sym_GT_EQ] = ACTIONS(3429), + [anon_sym_LT_EQ] = ACTIONS(3429), + [anon_sym_DOT] = ACTIONS(3431), + [anon_sym_scoped] = ACTIONS(3579), + [anon_sym_EQ_GT] = ACTIONS(3429), + [anon_sym_COLON_COLON] = ACTIONS(3429), + [anon_sym_var] = ACTIONS(3579), + [anon_sym_yield] = ACTIONS(3579), + [anon_sym_switch] = ACTIONS(3431), + [anon_sym_when] = ACTIONS(3579), + [sym_discard] = ACTIONS(3431), + [anon_sym_DOT_DOT] = ACTIONS(3429), + [anon_sym_and] = ACTIONS(3431), + [anon_sym_or] = ACTIONS(3431), + [anon_sym_PLUS_EQ] = ACTIONS(3429), + [anon_sym_DASH_EQ] = ACTIONS(3429), + [anon_sym_STAR_EQ] = ACTIONS(3429), + [anon_sym_SLASH_EQ] = ACTIONS(3429), + [anon_sym_PERCENT_EQ] = ACTIONS(3429), + [anon_sym_AMP_EQ] = ACTIONS(3429), + [anon_sym_CARET_EQ] = ACTIONS(3429), + [anon_sym_PIPE_EQ] = ACTIONS(3429), + [anon_sym_LT_LT_EQ] = ACTIONS(3429), + [anon_sym_GT_GT_EQ] = ACTIONS(3429), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3429), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3429), + [anon_sym_AMP_AMP] = ACTIONS(3429), + [anon_sym_PIPE_PIPE] = ACTIONS(3429), + [anon_sym_QMARK_QMARK] = ACTIONS(3431), + [anon_sym_from] = ACTIONS(3579), + [anon_sym_into] = ACTIONS(3579), + [anon_sym_join] = ACTIONS(3579), + [anon_sym_on] = ACTIONS(3579), + [anon_sym_equals] = ACTIONS(3579), + [anon_sym_let] = ACTIONS(3579), + [anon_sym_orderby] = ACTIONS(3579), + [anon_sym_ascending] = ACTIONS(3579), + [anon_sym_descending] = ACTIONS(3579), + [anon_sym_group] = ACTIONS(3579), + [anon_sym_by] = ACTIONS(3579), + [anon_sym_select] = ACTIONS(3579), + [anon_sym_as] = ACTIONS(3431), + [anon_sym_is] = ACTIONS(3431), + [anon_sym_DASH_GT] = ACTIONS(3429), + [anon_sym_with] = ACTIONS(3431), + [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), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + }, + [2161] = { + [sym__name] = STATE(5130), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(4068), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_ref_type] = STATE(2331), + [sym__scoped_base_type] = STATE(2339), + [sym_identifier] = STATE(4370), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_region] = STATE(2161), + [sym_preproc_endregion] = STATE(2161), + [sym_preproc_line] = STATE(2161), + [sym_preproc_pragma] = STATE(2161), + [sym_preproc_nullable] = STATE(2161), + [sym_preproc_error] = STATE(2161), + [sym_preproc_warning] = STATE(2161), + [sym_preproc_define] = STATE(2161), + [sym_preproc_undef] = STATE(2161), + [sym__identifier_token] = ACTIONS(3584), + [anon_sym_alias] = ACTIONS(3587), + [anon_sym_SEMI] = ACTIONS(3429), + [anon_sym_global] = ACTIONS(3587), + [anon_sym_EQ] = ACTIONS(3431), + [anon_sym_LBRACK] = ACTIONS(3429), + [anon_sym_COLON] = ACTIONS(3431), + [anon_sym_COMMA] = ACTIONS(3429), + [anon_sym_RBRACK] = ACTIONS(3429), + [anon_sym_LPAREN] = ACTIONS(3429), + [anon_sym_RPAREN] = ACTIONS(3429), + [anon_sym_ref] = ACTIONS(3436), + [anon_sym_RBRACE] = ACTIONS(3429), + [anon_sym_file] = ACTIONS(3587), + [anon_sym_LT] = ACTIONS(3431), + [anon_sym_GT] = ACTIONS(3431), + [anon_sym_in] = ACTIONS(3431), + [anon_sym_where] = ACTIONS(3587), + [anon_sym_QMARK] = ACTIONS(3431), + [anon_sym_notnull] = ACTIONS(3587), + [anon_sym_unmanaged] = ACTIONS(3587), + [anon_sym_BANG] = ACTIONS(3431), + [anon_sym_PLUS_PLUS] = ACTIONS(3429), + [anon_sym_DASH_DASH] = ACTIONS(3429), + [anon_sym_PLUS] = ACTIONS(3431), + [anon_sym_DASH] = ACTIONS(3431), + [anon_sym_STAR] = ACTIONS(3431), + [anon_sym_SLASH] = ACTIONS(3431), + [anon_sym_PERCENT] = ACTIONS(3431), + [anon_sym_CARET] = ACTIONS(3431), + [anon_sym_PIPE] = ACTIONS(3431), + [anon_sym_AMP] = ACTIONS(3431), + [anon_sym_LT_LT] = ACTIONS(3431), + [anon_sym_GT_GT] = ACTIONS(3431), + [anon_sym_GT_GT_GT] = ACTIONS(3431), + [anon_sym_EQ_EQ] = ACTIONS(3429), + [anon_sym_BANG_EQ] = ACTIONS(3429), + [anon_sym_GT_EQ] = ACTIONS(3429), + [anon_sym_LT_EQ] = ACTIONS(3429), + [anon_sym_DOT] = ACTIONS(3431), + [anon_sym_scoped] = ACTIONS(3587), + [anon_sym_EQ_GT] = ACTIONS(3429), + [anon_sym_COLON_COLON] = ACTIONS(3429), + [anon_sym_var] = ACTIONS(3587), + [anon_sym_yield] = ACTIONS(3587), + [anon_sym_switch] = ACTIONS(3431), + [anon_sym_when] = ACTIONS(3587), + [anon_sym_DOT_DOT] = ACTIONS(3429), + [anon_sym_and] = ACTIONS(3431), + [anon_sym_or] = ACTIONS(3431), + [anon_sym_PLUS_EQ] = ACTIONS(3429), + [anon_sym_DASH_EQ] = ACTIONS(3429), + [anon_sym_STAR_EQ] = ACTIONS(3429), + [anon_sym_SLASH_EQ] = ACTIONS(3429), + [anon_sym_PERCENT_EQ] = ACTIONS(3429), + [anon_sym_AMP_EQ] = ACTIONS(3429), + [anon_sym_CARET_EQ] = ACTIONS(3429), + [anon_sym_PIPE_EQ] = ACTIONS(3429), + [anon_sym_LT_LT_EQ] = ACTIONS(3429), + [anon_sym_GT_GT_EQ] = ACTIONS(3429), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3429), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3429), + [anon_sym_AMP_AMP] = ACTIONS(3429), + [anon_sym_PIPE_PIPE] = ACTIONS(3429), + [anon_sym_QMARK_QMARK] = ACTIONS(3431), + [anon_sym_from] = ACTIONS(3587), + [anon_sym_into] = ACTIONS(3587), + [anon_sym_join] = ACTIONS(3587), + [anon_sym_on] = ACTIONS(3587), + [anon_sym_equals] = ACTIONS(3587), + [anon_sym_let] = ACTIONS(3587), + [anon_sym_orderby] = ACTIONS(3587), + [anon_sym_ascending] = ACTIONS(3587), + [anon_sym_descending] = ACTIONS(3587), + [anon_sym_group] = ACTIONS(3587), + [anon_sym_by] = ACTIONS(3587), + [anon_sym_select] = ACTIONS(3587), + [anon_sym_as] = ACTIONS(3431), + [anon_sym_is] = ACTIONS(3431), + [anon_sym_DASH_GT] = ACTIONS(3429), + [anon_sym_with] = ACTIONS(3431), + [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), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + }, + [2162] = { + [sym__name] = STATE(5130), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(4068), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_ref_type] = STATE(2331), + [sym__scoped_base_type] = STATE(2339), + [sym_identifier] = STATE(4370), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_region] = STATE(2162), + [sym_preproc_endregion] = STATE(2162), + [sym_preproc_line] = STATE(2162), + [sym_preproc_pragma] = STATE(2162), + [sym_preproc_nullable] = STATE(2162), + [sym_preproc_error] = STATE(2162), + [sym_preproc_warning] = STATE(2162), + [sym_preproc_define] = STATE(2162), + [sym_preproc_undef] = STATE(2162), + [sym__identifier_token] = ACTIONS(3584), + [anon_sym_alias] = ACTIONS(3587), + [anon_sym_global] = ACTIONS(3587), + [anon_sym_EQ] = ACTIONS(3431), + [anon_sym_LBRACK] = ACTIONS(3429), + [anon_sym_COLON] = ACTIONS(3431), + [anon_sym_COMMA] = ACTIONS(3429), + [anon_sym_RBRACK] = ACTIONS(3429), + [anon_sym_LPAREN] = ACTIONS(3429), + [anon_sym_RPAREN] = ACTIONS(3429), + [anon_sym_ref] = ACTIONS(3590), + [anon_sym_LBRACE] = ACTIONS(3429), + [anon_sym_RBRACE] = ACTIONS(3429), + [anon_sym_file] = ACTIONS(3587), + [anon_sym_LT] = ACTIONS(3431), + [anon_sym_GT] = ACTIONS(3431), + [anon_sym_where] = ACTIONS(3587), + [anon_sym_QMARK] = ACTIONS(3431), + [anon_sym_notnull] = ACTIONS(3587), + [anon_sym_unmanaged] = ACTIONS(3587), + [anon_sym_BANG] = ACTIONS(3431), + [anon_sym_PLUS_PLUS] = ACTIONS(3429), + [anon_sym_DASH_DASH] = ACTIONS(3429), + [anon_sym_PLUS] = ACTIONS(3431), + [anon_sym_DASH] = ACTIONS(3431), + [anon_sym_STAR] = ACTIONS(3431), + [anon_sym_SLASH] = ACTIONS(3431), + [anon_sym_PERCENT] = ACTIONS(3431), + [anon_sym_CARET] = ACTIONS(3431), + [anon_sym_PIPE] = ACTIONS(3431), + [anon_sym_AMP] = ACTIONS(3431), + [anon_sym_LT_LT] = ACTIONS(3431), + [anon_sym_GT_GT] = ACTIONS(3431), + [anon_sym_GT_GT_GT] = ACTIONS(3431), + [anon_sym_EQ_EQ] = ACTIONS(3429), + [anon_sym_BANG_EQ] = ACTIONS(3429), + [anon_sym_GT_EQ] = ACTIONS(3429), + [anon_sym_LT_EQ] = ACTIONS(3429), + [anon_sym_DOT] = ACTIONS(3431), + [anon_sym_scoped] = ACTIONS(3587), + [anon_sym_EQ_GT] = ACTIONS(3429), + [anon_sym_COLON_COLON] = ACTIONS(3429), + [anon_sym_var] = ACTIONS(3587), + [anon_sym_yield] = ACTIONS(3587), + [anon_sym_switch] = ACTIONS(3431), + [anon_sym_when] = ACTIONS(3587), + [sym_discard] = ACTIONS(3431), + [anon_sym_DOT_DOT] = ACTIONS(3429), + [anon_sym_and] = ACTIONS(3431), + [anon_sym_or] = ACTIONS(3431), + [anon_sym_PLUS_EQ] = ACTIONS(3429), + [anon_sym_DASH_EQ] = ACTIONS(3429), + [anon_sym_STAR_EQ] = ACTIONS(3429), + [anon_sym_SLASH_EQ] = ACTIONS(3429), + [anon_sym_PERCENT_EQ] = ACTIONS(3429), + [anon_sym_AMP_EQ] = ACTIONS(3429), + [anon_sym_CARET_EQ] = ACTIONS(3429), + [anon_sym_PIPE_EQ] = ACTIONS(3429), + [anon_sym_LT_LT_EQ] = ACTIONS(3429), + [anon_sym_GT_GT_EQ] = ACTIONS(3429), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3429), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3429), + [anon_sym_AMP_AMP] = ACTIONS(3429), + [anon_sym_PIPE_PIPE] = ACTIONS(3429), + [anon_sym_QMARK_QMARK] = ACTIONS(3431), + [anon_sym_from] = ACTIONS(3587), + [anon_sym_into] = ACTIONS(3587), + [anon_sym_join] = ACTIONS(3587), + [anon_sym_on] = ACTIONS(3587), + [anon_sym_equals] = ACTIONS(3587), + [anon_sym_let] = ACTIONS(3587), + [anon_sym_orderby] = ACTIONS(3587), + [anon_sym_ascending] = ACTIONS(3587), + [anon_sym_descending] = ACTIONS(3587), + [anon_sym_group] = ACTIONS(3587), + [anon_sym_by] = ACTIONS(3587), + [anon_sym_select] = ACTIONS(3587), + [anon_sym_as] = ACTIONS(3431), + [anon_sym_is] = ACTIONS(3431), + [anon_sym_DASH_GT] = ACTIONS(3429), + [anon_sym_with] = ACTIONS(3431), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -396249,12 +396081,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(3571), - [sym_interpolation_verbatim_start] = ACTIONS(3571), - [sym_interpolation_raw_start] = ACTIONS(3571), - [sym_raw_string_start] = ACTIONS(3571), }, [2163] = { + [sym__variable_designation] = STATE(3345), + [sym_parenthesized_variable_designation] = STATE(3344), + [sym_identifier] = STATE(3346), + [sym__reserved_identifier] = STATE(3199), [sym_preproc_region] = STATE(2163), [sym_preproc_endregion] = STATE(2163), [sym_preproc_line] = STATE(2163), @@ -396264,116 +396096,112 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2163), [sym_preproc_define] = STATE(2163), [sym_preproc_undef] = STATE(2163), - [sym__identifier_token] = ACTIONS(3573), - [anon_sym_extern] = ACTIONS(3573), - [anon_sym_alias] = ACTIONS(3573), - [anon_sym_SEMI] = ACTIONS(3575), - [anon_sym_global] = ACTIONS(3573), - [anon_sym_using] = ACTIONS(3573), - [anon_sym_unsafe] = ACTIONS(3573), - [anon_sym_static] = ACTIONS(3573), - [anon_sym_LBRACK] = ACTIONS(3575), - [anon_sym_LPAREN] = ACTIONS(3575), - [anon_sym_return] = ACTIONS(3573), - [anon_sym_ref] = ACTIONS(3573), - [anon_sym_LBRACE] = ACTIONS(3575), - [anon_sym_delegate] = ACTIONS(3573), - [anon_sym_abstract] = ACTIONS(3573), - [anon_sym_async] = ACTIONS(3573), - [anon_sym_const] = ACTIONS(3573), - [anon_sym_file] = ACTIONS(3573), - [anon_sym_fixed] = ACTIONS(3573), - [anon_sym_internal] = ACTIONS(3573), - [anon_sym_new] = ACTIONS(3573), - [anon_sym_override] = ACTIONS(3573), - [anon_sym_partial] = ACTIONS(3573), - [anon_sym_private] = ACTIONS(3573), - [anon_sym_protected] = ACTIONS(3573), - [anon_sym_public] = ACTIONS(3573), - [anon_sym_readonly] = ACTIONS(3573), - [anon_sym_required] = ACTIONS(3573), - [anon_sym_sealed] = ACTIONS(3573), - [anon_sym_virtual] = ACTIONS(3573), - [anon_sym_volatile] = ACTIONS(3573), - [anon_sym_where] = ACTIONS(3573), - [anon_sym_notnull] = ACTIONS(3573), - [anon_sym_unmanaged] = ACTIONS(3573), - [anon_sym_checked] = ACTIONS(3573), - [anon_sym_BANG] = ACTIONS(3575), - [anon_sym_TILDE] = ACTIONS(3575), - [anon_sym_PLUS_PLUS] = ACTIONS(3575), - [anon_sym_DASH_DASH] = ACTIONS(3575), - [anon_sym_true] = ACTIONS(3573), - [anon_sym_false] = ACTIONS(3573), - [anon_sym_PLUS] = ACTIONS(3573), - [anon_sym_DASH] = ACTIONS(3573), - [anon_sym_STAR] = ACTIONS(3575), - [anon_sym_CARET] = ACTIONS(3575), - [anon_sym_AMP] = ACTIONS(3575), - [anon_sym_this] = ACTIONS(3573), - [anon_sym_scoped] = ACTIONS(3573), - [anon_sym_base] = ACTIONS(3573), - [anon_sym_var] = ACTIONS(3573), - [sym_predefined_type] = ACTIONS(3573), - [anon_sym_break] = ACTIONS(3573), - [anon_sym_unchecked] = ACTIONS(3573), - [anon_sym_continue] = ACTIONS(3573), - [anon_sym_do] = ACTIONS(3573), - [anon_sym_while] = ACTIONS(3573), - [anon_sym_for] = ACTIONS(3573), - [anon_sym_lock] = ACTIONS(3573), - [anon_sym_yield] = ACTIONS(3573), - [anon_sym_switch] = ACTIONS(3573), - [anon_sym_default] = ACTIONS(3573), - [anon_sym_throw] = ACTIONS(3573), - [anon_sym_try] = ACTIONS(3573), - [anon_sym_when] = ACTIONS(3573), - [anon_sym_await] = ACTIONS(3573), - [anon_sym_foreach] = ACTIONS(3573), - [anon_sym_goto] = ACTIONS(3573), - [anon_sym_if] = ACTIONS(3573), - [anon_sym_DOT_DOT] = ACTIONS(3575), - [anon_sym_from] = ACTIONS(3573), - [anon_sym_into] = ACTIONS(3573), - [anon_sym_join] = ACTIONS(3573), - [anon_sym_on] = ACTIONS(3573), - [anon_sym_equals] = ACTIONS(3573), - [anon_sym_let] = ACTIONS(3573), - [anon_sym_orderby] = ACTIONS(3573), - [anon_sym_ascending] = ACTIONS(3573), - [anon_sym_descending] = ACTIONS(3573), - [anon_sym_group] = ACTIONS(3573), - [anon_sym_by] = ACTIONS(3573), - [anon_sym_select] = ACTIONS(3573), - [anon_sym_stackalloc] = ACTIONS(3573), - [anon_sym_sizeof] = ACTIONS(3573), - [anon_sym_typeof] = ACTIONS(3573), - [anon_sym___makeref] = ACTIONS(3573), - [anon_sym___reftype] = ACTIONS(3573), - [anon_sym___refvalue] = ACTIONS(3573), - [sym_null_literal] = ACTIONS(3573), - [anon_sym_SQUOTE] = ACTIONS(3575), - [sym_integer_literal] = ACTIONS(3573), - [sym_real_literal] = ACTIONS(3575), - [anon_sym_DQUOTE] = ACTIONS(3575), - [sym_verbatim_string_literal] = ACTIONS(3575), - [aux_sym_preproc_if_token1] = ACTIONS(3575), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(3575), - [sym_interpolation_verbatim_start] = ACTIONS(3575), - [sym_interpolation_raw_start] = ACTIONS(3575), - [sym_raw_string_start] = ACTIONS(3575), + [sym__identifier_token] = ACTIONS(3592), + [anon_sym_alias] = ACTIONS(3596), + [anon_sym_SEMI] = ACTIONS(3600), + [anon_sym_global] = ACTIONS(3596), + [anon_sym_EQ] = ACTIONS(3431), + [anon_sym_LBRACK] = ACTIONS(3600), + [anon_sym_COLON] = ACTIONS(3603), + [anon_sym_COMMA] = ACTIONS(3600), + [anon_sym_RBRACK] = ACTIONS(3600), + [anon_sym_LPAREN] = ACTIONS(3606), + [anon_sym_RPAREN] = ACTIONS(3600), + [anon_sym_LBRACE] = ACTIONS(3600), + [anon_sym_RBRACE] = ACTIONS(3600), + [anon_sym_file] = ACTIONS(3596), + [anon_sym_LT] = ACTIONS(3603), + [anon_sym_GT] = ACTIONS(3603), + [anon_sym_in] = ACTIONS(3603), + [anon_sym_where] = ACTIONS(3596), + [anon_sym_QMARK] = ACTIONS(3603), + [anon_sym_notnull] = ACTIONS(3596), + [anon_sym_unmanaged] = ACTIONS(3596), + [anon_sym_BANG] = ACTIONS(3603), + [anon_sym_PLUS_PLUS] = ACTIONS(3600), + [anon_sym_DASH_DASH] = ACTIONS(3600), + [anon_sym_PLUS] = ACTIONS(3603), + [anon_sym_DASH] = ACTIONS(3603), + [anon_sym_STAR] = ACTIONS(3603), + [anon_sym_SLASH] = ACTIONS(3603), + [anon_sym_PERCENT] = ACTIONS(3603), + [anon_sym_CARET] = ACTIONS(3603), + [anon_sym_PIPE] = ACTIONS(3603), + [anon_sym_AMP] = ACTIONS(3603), + [anon_sym_LT_LT] = ACTIONS(3603), + [anon_sym_GT_GT] = ACTIONS(3603), + [anon_sym_GT_GT_GT] = ACTIONS(3603), + [anon_sym_EQ_EQ] = ACTIONS(3600), + [anon_sym_BANG_EQ] = ACTIONS(3600), + [anon_sym_GT_EQ] = ACTIONS(3600), + [anon_sym_LT_EQ] = ACTIONS(3600), + [anon_sym_DOT] = ACTIONS(3603), + [anon_sym_scoped] = ACTIONS(3596), + [anon_sym_EQ_GT] = ACTIONS(3429), + [anon_sym_COLON_COLON] = ACTIONS(3429), + [anon_sym_var] = ACTIONS(3596), + [anon_sym_yield] = ACTIONS(3596), + [anon_sym_switch] = ACTIONS(3603), + [anon_sym_when] = ACTIONS(3596), + [sym_discard] = ACTIONS(3610), + [anon_sym_DOT_DOT] = ACTIONS(3600), + [anon_sym_and] = ACTIONS(3603), + [anon_sym_or] = ACTIONS(3603), + [anon_sym_PLUS_EQ] = ACTIONS(3429), + [anon_sym_DASH_EQ] = ACTIONS(3429), + [anon_sym_STAR_EQ] = ACTIONS(3429), + [anon_sym_SLASH_EQ] = ACTIONS(3429), + [anon_sym_PERCENT_EQ] = ACTIONS(3429), + [anon_sym_AMP_EQ] = ACTIONS(3429), + [anon_sym_CARET_EQ] = ACTIONS(3429), + [anon_sym_PIPE_EQ] = ACTIONS(3429), + [anon_sym_LT_LT_EQ] = ACTIONS(3429), + [anon_sym_GT_GT_EQ] = ACTIONS(3429), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3429), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3429), + [anon_sym_AMP_AMP] = ACTIONS(3600), + [anon_sym_PIPE_PIPE] = ACTIONS(3600), + [anon_sym_QMARK_QMARK] = ACTIONS(3603), + [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(3603), + [anon_sym_is] = ACTIONS(3603), + [anon_sym_DASH_GT] = ACTIONS(3600), + [anon_sym_with] = ACTIONS(3603), + [aux_sym_preproc_if_token3] = ACTIONS(3600), + [aux_sym_preproc_else_token1] = ACTIONS(3600), + [aux_sym_preproc_elif_token1] = ACTIONS(3600), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), }, [2164] = { + [sym__name] = STATE(2634), + [sym_alias_qualified_name] = STATE(2402), + [sym__simple_name] = STATE(2402), + [sym_qualified_name] = STATE(2402), + [sym_generic_name] = STATE(2384), + [sym_ref_type] = STATE(2331), + [sym__scoped_base_type] = STATE(2339), + [sym_identifier] = STATE(2547), + [sym__reserved_identifier] = STATE(2354), [sym_preproc_region] = STATE(2164), [sym_preproc_endregion] = STATE(2164), [sym_preproc_line] = STATE(2164), @@ -396383,125 +396211,102 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2164), [sym_preproc_define] = STATE(2164), [sym_preproc_undef] = STATE(2164), - [sym__identifier_token] = ACTIONS(3577), - [anon_sym_extern] = ACTIONS(3577), - [anon_sym_alias] = ACTIONS(3577), - [anon_sym_SEMI] = ACTIONS(3579), - [anon_sym_global] = ACTIONS(3577), - [anon_sym_using] = ACTIONS(3577), - [anon_sym_unsafe] = ACTIONS(3577), - [anon_sym_static] = ACTIONS(3577), - [anon_sym_LBRACK] = ACTIONS(3579), - [anon_sym_LPAREN] = ACTIONS(3579), - [anon_sym_return] = ACTIONS(3577), - [anon_sym_ref] = ACTIONS(3577), - [anon_sym_LBRACE] = ACTIONS(3579), - [anon_sym_delegate] = ACTIONS(3577), - [anon_sym_abstract] = ACTIONS(3577), - [anon_sym_async] = ACTIONS(3577), - [anon_sym_const] = ACTIONS(3577), - [anon_sym_file] = ACTIONS(3577), - [anon_sym_fixed] = ACTIONS(3577), - [anon_sym_internal] = ACTIONS(3577), - [anon_sym_new] = ACTIONS(3577), - [anon_sym_override] = ACTIONS(3577), - [anon_sym_partial] = ACTIONS(3577), - [anon_sym_private] = ACTIONS(3577), - [anon_sym_protected] = ACTIONS(3577), - [anon_sym_public] = ACTIONS(3577), - [anon_sym_readonly] = ACTIONS(3577), - [anon_sym_required] = ACTIONS(3577), - [anon_sym_sealed] = ACTIONS(3577), - [anon_sym_virtual] = ACTIONS(3577), - [anon_sym_volatile] = ACTIONS(3577), - [anon_sym_where] = ACTIONS(3577), - [anon_sym_notnull] = ACTIONS(3577), - [anon_sym_unmanaged] = ACTIONS(3577), - [anon_sym_checked] = ACTIONS(3577), - [anon_sym_BANG] = ACTIONS(3579), - [anon_sym_TILDE] = ACTIONS(3579), - [anon_sym_PLUS_PLUS] = ACTIONS(3579), - [anon_sym_DASH_DASH] = ACTIONS(3579), - [anon_sym_true] = ACTIONS(3577), - [anon_sym_false] = ACTIONS(3577), - [anon_sym_PLUS] = ACTIONS(3577), - [anon_sym_DASH] = ACTIONS(3577), - [anon_sym_STAR] = ACTIONS(3579), - [anon_sym_CARET] = ACTIONS(3579), - [anon_sym_AMP] = ACTIONS(3579), - [anon_sym_this] = ACTIONS(3577), - [anon_sym_scoped] = ACTIONS(3577), - [anon_sym_base] = ACTIONS(3577), - [anon_sym_var] = ACTIONS(3577), - [sym_predefined_type] = ACTIONS(3577), - [anon_sym_break] = ACTIONS(3577), - [anon_sym_unchecked] = ACTIONS(3577), - [anon_sym_continue] = ACTIONS(3577), - [anon_sym_do] = ACTIONS(3577), - [anon_sym_while] = ACTIONS(3577), - [anon_sym_for] = ACTIONS(3577), - [anon_sym_lock] = ACTIONS(3577), - [anon_sym_yield] = ACTIONS(3577), - [anon_sym_switch] = ACTIONS(3577), - [anon_sym_default] = ACTIONS(3577), - [anon_sym_throw] = ACTIONS(3577), - [anon_sym_try] = ACTIONS(3577), - [anon_sym_when] = ACTIONS(3577), - [anon_sym_await] = ACTIONS(3577), - [anon_sym_foreach] = ACTIONS(3577), - [anon_sym_goto] = ACTIONS(3577), - [anon_sym_if] = ACTIONS(3577), - [anon_sym_DOT_DOT] = ACTIONS(3579), - [anon_sym_from] = ACTIONS(3577), - [anon_sym_into] = ACTIONS(3577), - [anon_sym_join] = ACTIONS(3577), - [anon_sym_on] = ACTIONS(3577), - [anon_sym_equals] = ACTIONS(3577), - [anon_sym_let] = ACTIONS(3577), - [anon_sym_orderby] = ACTIONS(3577), - [anon_sym_ascending] = ACTIONS(3577), - [anon_sym_descending] = ACTIONS(3577), - [anon_sym_group] = ACTIONS(3577), - [anon_sym_by] = ACTIONS(3577), - [anon_sym_select] = ACTIONS(3577), - [anon_sym_stackalloc] = ACTIONS(3577), - [anon_sym_sizeof] = ACTIONS(3577), - [anon_sym_typeof] = ACTIONS(3577), - [anon_sym___makeref] = ACTIONS(3577), - [anon_sym___reftype] = ACTIONS(3577), - [anon_sym___refvalue] = ACTIONS(3577), - [sym_null_literal] = ACTIONS(3577), - [anon_sym_SQUOTE] = ACTIONS(3579), - [sym_integer_literal] = ACTIONS(3577), - [sym_real_literal] = ACTIONS(3579), - [anon_sym_DQUOTE] = ACTIONS(3579), - [sym_verbatim_string_literal] = ACTIONS(3579), - [aux_sym_preproc_if_token1] = ACTIONS(3579), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(3579), - [sym_interpolation_verbatim_start] = ACTIONS(3579), - [sym_interpolation_raw_start] = ACTIONS(3579), - [sym_raw_string_start] = ACTIONS(3579), + [sym__identifier_token] = ACTIONS(3576), + [anon_sym_alias] = ACTIONS(3579), + [anon_sym_global] = ACTIONS(3579), + [anon_sym_EQ] = ACTIONS(3431), + [anon_sym_LBRACK] = ACTIONS(3429), + [anon_sym_COLON] = ACTIONS(3431), + [anon_sym_COMMA] = ACTIONS(3429), + [anon_sym_LPAREN] = ACTIONS(3429), + [anon_sym_RPAREN] = ACTIONS(3429), + [anon_sym_ref] = ACTIONS(3614), + [anon_sym_LBRACE] = ACTIONS(3429), + [anon_sym_RBRACE] = ACTIONS(3429), + [anon_sym_file] = ACTIONS(3579), + [anon_sym_LT] = ACTIONS(3431), + [anon_sym_GT] = ACTIONS(3431), + [anon_sym_where] = ACTIONS(3579), + [anon_sym_QMARK] = ACTIONS(3431), + [anon_sym_notnull] = ACTIONS(3579), + [anon_sym_unmanaged] = ACTIONS(3579), + [anon_sym_BANG] = ACTIONS(3431), + [anon_sym_PLUS_PLUS] = ACTIONS(3429), + [anon_sym_DASH_DASH] = ACTIONS(3429), + [anon_sym_PLUS] = ACTIONS(3431), + [anon_sym_DASH] = ACTIONS(3431), + [anon_sym_STAR] = ACTIONS(3431), + [anon_sym_SLASH] = ACTIONS(3431), + [anon_sym_PERCENT] = ACTIONS(3431), + [anon_sym_CARET] = ACTIONS(3431), + [anon_sym_PIPE] = ACTIONS(3431), + [anon_sym_AMP] = ACTIONS(3431), + [anon_sym_LT_LT] = ACTIONS(3431), + [anon_sym_GT_GT] = ACTIONS(3431), + [anon_sym_GT_GT_GT] = ACTIONS(3431), + [anon_sym_EQ_EQ] = ACTIONS(3429), + [anon_sym_BANG_EQ] = ACTIONS(3429), + [anon_sym_GT_EQ] = ACTIONS(3429), + [anon_sym_LT_EQ] = ACTIONS(3429), + [anon_sym_DOT] = ACTIONS(3431), + [anon_sym_scoped] = ACTIONS(3579), + [anon_sym_EQ_GT] = ACTIONS(3429), + [anon_sym_COLON_COLON] = ACTIONS(3429), + [anon_sym_var] = ACTIONS(3579), + [anon_sym_yield] = ACTIONS(3579), + [anon_sym_switch] = ACTIONS(3431), + [anon_sym_when] = ACTIONS(3579), + [sym_discard] = ACTIONS(3431), + [anon_sym_DOT_DOT] = ACTIONS(3429), + [anon_sym_and] = ACTIONS(3431), + [anon_sym_or] = ACTIONS(3431), + [anon_sym_PLUS_EQ] = ACTIONS(3429), + [anon_sym_DASH_EQ] = ACTIONS(3429), + [anon_sym_STAR_EQ] = ACTIONS(3429), + [anon_sym_SLASH_EQ] = ACTIONS(3429), + [anon_sym_PERCENT_EQ] = ACTIONS(3429), + [anon_sym_AMP_EQ] = ACTIONS(3429), + [anon_sym_CARET_EQ] = ACTIONS(3429), + [anon_sym_PIPE_EQ] = ACTIONS(3429), + [anon_sym_LT_LT_EQ] = ACTIONS(3429), + [anon_sym_GT_GT_EQ] = ACTIONS(3429), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3429), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3429), + [anon_sym_AMP_AMP] = ACTIONS(3429), + [anon_sym_PIPE_PIPE] = ACTIONS(3429), + [anon_sym_QMARK_QMARK] = ACTIONS(3431), + [anon_sym_from] = ACTIONS(3579), + [anon_sym_into] = ACTIONS(3579), + [anon_sym_join] = ACTIONS(3579), + [anon_sym_on] = ACTIONS(3579), + [anon_sym_equals] = ACTIONS(3579), + [anon_sym_let] = ACTIONS(3579), + [anon_sym_orderby] = ACTIONS(3579), + [anon_sym_ascending] = ACTIONS(3579), + [anon_sym_descending] = ACTIONS(3579), + [anon_sym_group] = ACTIONS(3579), + [anon_sym_by] = ACTIONS(3579), + [anon_sym_select] = ACTIONS(3579), + [anon_sym_as] = ACTIONS(3431), + [anon_sym_is] = ACTIONS(3431), + [anon_sym_DASH_GT] = ACTIONS(3429), + [anon_sym_with] = ACTIONS(3431), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), }, [2165] = { - [sym__name] = STATE(2446), - [sym_alias_qualified_name] = STATE(2373), - [sym__simple_name] = STATE(2373), - [sym_qualified_name] = STATE(2373), - [sym_generic_name] = STATE(2389), - [sym_ref_type] = STATE(2317), - [sym__scoped_base_type] = STATE(2340), - [sym_identifier] = STATE(2359), - [sym__reserved_identifier] = STATE(2361), + [sym__variable_designation] = STATE(3353), + [sym_parenthesized_variable_designation] = STATE(3352), + [sym_identifier] = STATE(3355), + [sym__reserved_identifier] = STATE(3199), [sym_preproc_region] = STATE(2165), [sym_preproc_endregion] = STATE(2165), [sym_preproc_line] = STATE(2165), @@ -396511,91 +396316,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2165), [sym_preproc_define] = STATE(2165), [sym_preproc_undef] = STATE(2165), - [sym__identifier_token] = ACTIONS(3581), - [anon_sym_alias] = ACTIONS(3584), - [anon_sym_SEMI] = ACTIONS(3445), - [anon_sym_global] = ACTIONS(3584), - [anon_sym_EQ] = ACTIONS(3447), - [anon_sym_LBRACK] = ACTIONS(3445), - [anon_sym_COMMA] = ACTIONS(3445), - [anon_sym_RBRACK] = ACTIONS(3445), - [anon_sym_LPAREN] = ACTIONS(3445), - [anon_sym_RPAREN] = ACTIONS(3445), - [anon_sym_ref] = ACTIONS(3587), - [anon_sym_LBRACE] = ACTIONS(3445), - [anon_sym_RBRACE] = ACTIONS(3445), - [anon_sym_file] = ACTIONS(3584), - [anon_sym_LT] = ACTIONS(3447), - [anon_sym_GT] = ACTIONS(3447), - [anon_sym_in] = ACTIONS(3447), - [anon_sym_where] = ACTIONS(3584), - [anon_sym_QMARK] = ACTIONS(3447), - [anon_sym_notnull] = ACTIONS(3584), - [anon_sym_unmanaged] = ACTIONS(3584), - [anon_sym_BANG] = ACTIONS(3447), - [anon_sym_PLUS_PLUS] = ACTIONS(3445), - [anon_sym_DASH_DASH] = ACTIONS(3445), - [anon_sym_PLUS] = ACTIONS(3447), - [anon_sym_DASH] = ACTIONS(3447), - [anon_sym_STAR] = ACTIONS(3447), - [anon_sym_SLASH] = ACTIONS(3447), - [anon_sym_PERCENT] = ACTIONS(3447), - [anon_sym_CARET] = ACTIONS(3447), - [anon_sym_PIPE] = ACTIONS(3447), - [anon_sym_AMP] = ACTIONS(3447), - [anon_sym_LT_LT] = ACTIONS(3447), - [anon_sym_GT_GT] = ACTIONS(3447), - [anon_sym_GT_GT_GT] = ACTIONS(3447), - [anon_sym_EQ_EQ] = ACTIONS(3445), - [anon_sym_BANG_EQ] = ACTIONS(3445), - [anon_sym_GT_EQ] = ACTIONS(3445), - [anon_sym_LT_EQ] = ACTIONS(3445), - [anon_sym_DOT] = ACTIONS(3447), - [anon_sym_scoped] = ACTIONS(3584), - [anon_sym_EQ_GT] = ACTIONS(3445), - [anon_sym_COLON_COLON] = ACTIONS(3445), - [anon_sym_var] = ACTIONS(3584), - [anon_sym_yield] = ACTIONS(3584), - [anon_sym_switch] = ACTIONS(3447), - [anon_sym_when] = ACTIONS(3584), - [sym_discard] = ACTIONS(3447), - [anon_sym_DOT_DOT] = ACTIONS(3445), - [anon_sym_and] = ACTIONS(3447), - [anon_sym_or] = ACTIONS(3447), - [anon_sym_PLUS_EQ] = ACTIONS(3445), - [anon_sym_DASH_EQ] = ACTIONS(3445), - [anon_sym_STAR_EQ] = ACTIONS(3445), - [anon_sym_SLASH_EQ] = ACTIONS(3445), - [anon_sym_PERCENT_EQ] = ACTIONS(3445), - [anon_sym_AMP_EQ] = ACTIONS(3445), - [anon_sym_CARET_EQ] = ACTIONS(3445), - [anon_sym_PIPE_EQ] = ACTIONS(3445), - [anon_sym_LT_LT_EQ] = ACTIONS(3445), - [anon_sym_GT_GT_EQ] = ACTIONS(3445), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3445), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3445), - [anon_sym_AMP_AMP] = ACTIONS(3445), - [anon_sym_PIPE_PIPE] = ACTIONS(3445), - [anon_sym_QMARK_QMARK] = ACTIONS(3447), - [anon_sym_from] = ACTIONS(3584), - [anon_sym_into] = ACTIONS(3584), - [anon_sym_join] = ACTIONS(3584), - [anon_sym_on] = ACTIONS(3584), - [anon_sym_equals] = ACTIONS(3584), - [anon_sym_let] = ACTIONS(3584), - [anon_sym_orderby] = ACTIONS(3584), - [anon_sym_ascending] = ACTIONS(3584), - [anon_sym_descending] = ACTIONS(3584), - [anon_sym_group] = ACTIONS(3584), - [anon_sym_by] = ACTIONS(3584), - [anon_sym_select] = ACTIONS(3584), - [anon_sym_as] = ACTIONS(3447), - [anon_sym_is] = ACTIONS(3447), - [anon_sym_DASH_GT] = ACTIONS(3445), - [anon_sym_with] = ACTIONS(3447), - [aux_sym_preproc_if_token3] = ACTIONS(3445), - [aux_sym_preproc_else_token1] = ACTIONS(3445), - [aux_sym_preproc_elif_token1] = ACTIONS(3445), + [sym__identifier_token] = ACTIONS(3592), + [anon_sym_alias] = ACTIONS(3596), + [anon_sym_SEMI] = ACTIONS(3600), + [anon_sym_global] = ACTIONS(3596), + [anon_sym_EQ] = ACTIONS(3431), + [anon_sym_LBRACK] = ACTIONS(3600), + [anon_sym_COLON] = ACTIONS(3603), + [anon_sym_COMMA] = ACTIONS(3600), + [anon_sym_RBRACK] = ACTIONS(3600), + [anon_sym_LPAREN] = ACTIONS(3616), + [anon_sym_RPAREN] = ACTIONS(3600), + [anon_sym_LBRACE] = ACTIONS(3600), + [anon_sym_RBRACE] = ACTIONS(3600), + [anon_sym_file] = ACTIONS(3596), + [anon_sym_LT] = ACTIONS(3603), + [anon_sym_GT] = ACTIONS(3603), + [anon_sym_where] = ACTIONS(3596), + [anon_sym_QMARK] = ACTIONS(3603), + [anon_sym_notnull] = ACTIONS(3596), + [anon_sym_unmanaged] = ACTIONS(3596), + [anon_sym_BANG] = ACTIONS(3603), + [anon_sym_PLUS_PLUS] = ACTIONS(3600), + [anon_sym_DASH_DASH] = ACTIONS(3600), + [anon_sym_PLUS] = ACTIONS(3603), + [anon_sym_DASH] = ACTIONS(3603), + [anon_sym_STAR] = ACTIONS(3603), + [anon_sym_SLASH] = ACTIONS(3603), + [anon_sym_PERCENT] = ACTIONS(3603), + [anon_sym_CARET] = ACTIONS(3603), + [anon_sym_PIPE] = ACTIONS(3603), + [anon_sym_AMP] = ACTIONS(3603), + [anon_sym_LT_LT] = ACTIONS(3603), + [anon_sym_GT_GT] = ACTIONS(3603), + [anon_sym_GT_GT_GT] = ACTIONS(3603), + [anon_sym_EQ_EQ] = ACTIONS(3600), + [anon_sym_BANG_EQ] = ACTIONS(3600), + [anon_sym_GT_EQ] = ACTIONS(3600), + [anon_sym_LT_EQ] = ACTIONS(3600), + [anon_sym_DOT] = ACTIONS(3603), + [anon_sym_scoped] = ACTIONS(3596), + [anon_sym_EQ_GT] = ACTIONS(3429), + [anon_sym_COLON_COLON] = ACTIONS(3429), + [anon_sym_var] = ACTIONS(3596), + [anon_sym_yield] = ACTIONS(3596), + [anon_sym_switch] = ACTIONS(3603), + [anon_sym_when] = ACTIONS(3596), + [sym_discard] = ACTIONS(3620), + [anon_sym_DOT_DOT] = ACTIONS(3600), + [anon_sym_and] = ACTIONS(3603), + [anon_sym_or] = ACTIONS(3603), + [anon_sym_PLUS_EQ] = ACTIONS(3429), + [anon_sym_DASH_EQ] = ACTIONS(3429), + [anon_sym_STAR_EQ] = ACTIONS(3429), + [anon_sym_SLASH_EQ] = ACTIONS(3429), + [anon_sym_PERCENT_EQ] = ACTIONS(3429), + [anon_sym_AMP_EQ] = ACTIONS(3429), + [anon_sym_CARET_EQ] = ACTIONS(3429), + [anon_sym_PIPE_EQ] = ACTIONS(3429), + [anon_sym_LT_LT_EQ] = ACTIONS(3429), + [anon_sym_GT_GT_EQ] = ACTIONS(3429), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3429), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3429), + [anon_sym_AMP_AMP] = ACTIONS(3600), + [anon_sym_PIPE_PIPE] = ACTIONS(3600), + [anon_sym_QMARK_QMARK] = ACTIONS(3603), + [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(3603), + [anon_sym_is] = ACTIONS(3603), + [anon_sym_DASH_GT] = ACTIONS(3600), + [anon_sym_with] = ACTIONS(3603), + [aux_sym_preproc_if_token3] = ACTIONS(3600), + [aux_sym_preproc_else_token1] = ACTIONS(3600), + [aux_sym_preproc_elif_token1] = ACTIONS(3600), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -396608,15 +396412,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2166] = { - [sym__name] = STATE(5302), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(4096), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_ref_type] = STATE(2317), - [sym__scoped_base_type] = STATE(2340), - [sym_identifier] = STATE(4373), - [sym__reserved_identifier] = STATE(2175), + [sym__name] = STATE(5130), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(4068), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_ref_type] = STATE(2331), + [sym__scoped_base_type] = STATE(2339), + [sym_identifier] = STATE(4370), + [sym__reserved_identifier] = STATE(2168), [sym_preproc_region] = STATE(2166), [sym_preproc_endregion] = STATE(2166), [sym_preproc_line] = STATE(2166), @@ -396626,91 +396430,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2166), [sym_preproc_define] = STATE(2166), [sym_preproc_undef] = STATE(2166), - [sym__identifier_token] = ACTIONS(3589), - [anon_sym_alias] = ACTIONS(3593), - [anon_sym_global] = ACTIONS(3593), - [anon_sym_EQ] = ACTIONS(3447), - [anon_sym_LBRACK] = ACTIONS(3445), - [anon_sym_COLON] = ACTIONS(3447), - [anon_sym_COMMA] = ACTIONS(3445), - [anon_sym_LPAREN] = ACTIONS(3597), - [anon_sym_RPAREN] = ACTIONS(3445), - [anon_sym_ref] = ACTIONS(2693), - [anon_sym_LBRACE] = ACTIONS(3445), - [anon_sym_delegate] = ACTIONS(2693), - [anon_sym_file] = ACTIONS(3593), - [anon_sym_readonly] = ACTIONS(2693), - [anon_sym_LT] = ACTIONS(3447), - [anon_sym_GT] = ACTIONS(3447), - [anon_sym_in] = ACTIONS(2693), - [anon_sym_out] = ACTIONS(2693), - [anon_sym_where] = ACTIONS(3593), - [anon_sym_QMARK] = ACTIONS(3447), - [anon_sym_notnull] = ACTIONS(3593), - [anon_sym_unmanaged] = ACTIONS(3593), - [anon_sym_BANG] = ACTIONS(3447), - [anon_sym_PLUS_PLUS] = ACTIONS(3445), - [anon_sym_DASH_DASH] = ACTIONS(3445), - [anon_sym_PLUS] = ACTIONS(3447), - [anon_sym_DASH] = ACTIONS(3447), - [anon_sym_STAR] = ACTIONS(3447), - [anon_sym_SLASH] = ACTIONS(3447), - [anon_sym_PERCENT] = ACTIONS(3447), - [anon_sym_CARET] = ACTIONS(3447), - [anon_sym_PIPE] = ACTIONS(3447), - [anon_sym_AMP] = ACTIONS(3447), - [anon_sym_LT_LT] = ACTIONS(3447), - [anon_sym_GT_GT] = ACTIONS(3447), - [anon_sym_GT_GT_GT] = ACTIONS(3447), - [anon_sym_EQ_EQ] = ACTIONS(3445), - [anon_sym_BANG_EQ] = ACTIONS(3445), - [anon_sym_GT_EQ] = ACTIONS(3445), - [anon_sym_LT_EQ] = ACTIONS(3445), - [anon_sym_this] = ACTIONS(2693), - [anon_sym_DOT] = ACTIONS(3447), - [anon_sym_scoped] = ACTIONS(3593), - [anon_sym_EQ_GT] = ACTIONS(3445), - [anon_sym_COLON_COLON] = ACTIONS(3445), - [anon_sym_var] = ACTIONS(3593), - [sym_predefined_type] = ACTIONS(2693), - [anon_sym_yield] = ACTIONS(3593), - [anon_sym_switch] = ACTIONS(3447), - [anon_sym_when] = ACTIONS(3593), - [sym_discard] = ACTIONS(3447), - [anon_sym_DOT_DOT] = ACTIONS(3445), - [anon_sym_and] = ACTIONS(3447), - [anon_sym_or] = ACTIONS(3447), - [anon_sym_PLUS_EQ] = ACTIONS(3445), - [anon_sym_DASH_EQ] = ACTIONS(3445), - [anon_sym_STAR_EQ] = ACTIONS(3445), - [anon_sym_SLASH_EQ] = ACTIONS(3445), - [anon_sym_PERCENT_EQ] = ACTIONS(3445), - [anon_sym_AMP_EQ] = ACTIONS(3445), - [anon_sym_CARET_EQ] = ACTIONS(3445), - [anon_sym_PIPE_EQ] = ACTIONS(3445), - [anon_sym_LT_LT_EQ] = ACTIONS(3445), - [anon_sym_GT_GT_EQ] = ACTIONS(3445), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3445), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3445), - [anon_sym_AMP_AMP] = ACTIONS(3445), - [anon_sym_PIPE_PIPE] = ACTIONS(3445), - [anon_sym_QMARK_QMARK] = ACTIONS(3447), - [anon_sym_from] = ACTIONS(3593), - [anon_sym_into] = ACTIONS(3593), - [anon_sym_join] = ACTIONS(3593), - [anon_sym_on] = ACTIONS(3593), - [anon_sym_equals] = ACTIONS(3593), - [anon_sym_let] = ACTIONS(3593), - [anon_sym_orderby] = ACTIONS(3593), - [anon_sym_ascending] = ACTIONS(3593), - [anon_sym_descending] = ACTIONS(3593), - [anon_sym_group] = ACTIONS(3593), - [anon_sym_by] = ACTIONS(3593), - [anon_sym_select] = ACTIONS(3593), - [anon_sym_as] = ACTIONS(3447), - [anon_sym_is] = ACTIONS(3447), - [anon_sym_DASH_GT] = ACTIONS(3445), - [anon_sym_with] = ACTIONS(3447), + [sym__identifier_token] = ACTIONS(3584), + [anon_sym_alias] = ACTIONS(3587), + [anon_sym_global] = ACTIONS(3587), + [anon_sym_EQ] = ACTIONS(3431), + [anon_sym_LBRACK] = ACTIONS(3429), + [anon_sym_COLON] = ACTIONS(3431), + [anon_sym_COMMA] = ACTIONS(3429), + [anon_sym_LPAREN] = ACTIONS(3429), + [anon_sym_RPAREN] = ACTIONS(3429), + [anon_sym_ref] = ACTIONS(3624), + [anon_sym_LBRACE] = ACTIONS(3429), + [anon_sym_file] = ACTIONS(3587), + [anon_sym_LT] = ACTIONS(3431), + [anon_sym_GT] = ACTIONS(3431), + [anon_sym_where] = ACTIONS(3587), + [anon_sym_QMARK] = ACTIONS(3431), + [anon_sym_notnull] = ACTIONS(3587), + [anon_sym_unmanaged] = ACTIONS(3587), + [anon_sym_BANG] = ACTIONS(3431), + [anon_sym_PLUS_PLUS] = ACTIONS(3429), + [anon_sym_DASH_DASH] = ACTIONS(3429), + [anon_sym_PLUS] = ACTIONS(3431), + [anon_sym_DASH] = ACTIONS(3431), + [anon_sym_STAR] = ACTIONS(3431), + [anon_sym_SLASH] = ACTIONS(3431), + [anon_sym_PERCENT] = ACTIONS(3431), + [anon_sym_CARET] = ACTIONS(3431), + [anon_sym_PIPE] = ACTIONS(3431), + [anon_sym_AMP] = ACTIONS(3431), + [anon_sym_LT_LT] = ACTIONS(3431), + [anon_sym_GT_GT] = ACTIONS(3431), + [anon_sym_GT_GT_GT] = ACTIONS(3431), + [anon_sym_EQ_EQ] = ACTIONS(3429), + [anon_sym_BANG_EQ] = ACTIONS(3429), + [anon_sym_GT_EQ] = ACTIONS(3429), + [anon_sym_LT_EQ] = ACTIONS(3429), + [anon_sym_DOT] = ACTIONS(3431), + [anon_sym_scoped] = ACTIONS(3587), + [anon_sym_EQ_GT] = ACTIONS(3429), + [anon_sym_COLON_COLON] = ACTIONS(3429), + [anon_sym_var] = ACTIONS(3587), + [anon_sym_yield] = ACTIONS(3587), + [anon_sym_switch] = ACTIONS(3431), + [anon_sym_when] = ACTIONS(3587), + [sym_discard] = ACTIONS(3431), + [anon_sym_DOT_DOT] = ACTIONS(3429), + [anon_sym_and] = ACTIONS(3431), + [anon_sym_or] = ACTIONS(3431), + [anon_sym_PLUS_EQ] = ACTIONS(3429), + [anon_sym_DASH_EQ] = ACTIONS(3429), + [anon_sym_STAR_EQ] = ACTIONS(3429), + [anon_sym_SLASH_EQ] = ACTIONS(3429), + [anon_sym_PERCENT_EQ] = ACTIONS(3429), + [anon_sym_AMP_EQ] = ACTIONS(3429), + [anon_sym_CARET_EQ] = ACTIONS(3429), + [anon_sym_PIPE_EQ] = ACTIONS(3429), + [anon_sym_LT_LT_EQ] = ACTIONS(3429), + [anon_sym_GT_GT_EQ] = ACTIONS(3429), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3429), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3429), + [anon_sym_AMP_AMP] = ACTIONS(3429), + [anon_sym_PIPE_PIPE] = ACTIONS(3429), + [anon_sym_QMARK_QMARK] = ACTIONS(3431), + [anon_sym_from] = ACTIONS(3587), + [anon_sym_into] = ACTIONS(3587), + [anon_sym_join] = ACTIONS(3587), + [anon_sym_on] = ACTIONS(3587), + [anon_sym_equals] = ACTIONS(3587), + [anon_sym_let] = ACTIONS(3587), + [anon_sym_orderby] = ACTIONS(3587), + [anon_sym_ascending] = ACTIONS(3587), + [anon_sym_descending] = ACTIONS(3587), + [anon_sym_group] = ACTIONS(3587), + [anon_sym_by] = ACTIONS(3587), + [anon_sym_select] = ACTIONS(3587), + [anon_sym_as] = ACTIONS(3431), + [anon_sym_is] = ACTIONS(3431), + [anon_sym_DASH_GT] = ACTIONS(3429), + [anon_sym_with] = ACTIONS(3431), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -396723,15 +396521,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2167] = { - [sym__name] = STATE(5302), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(4096), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_ref_type] = STATE(2317), - [sym__scoped_base_type] = STATE(2340), - [sym_identifier] = STATE(4373), - [sym__reserved_identifier] = STATE(2175), + [sym__name] = STATE(2712), + [sym_alias_qualified_name] = STATE(2821), + [sym__simple_name] = STATE(2821), + [sym_qualified_name] = STATE(2821), + [sym_generic_name] = STATE(2698), + [sym_ref_type] = STATE(2713), + [sym__scoped_base_type] = STATE(2715), + [sym_identifier] = STATE(2582), + [sym__reserved_identifier] = STATE(2620), [sym_preproc_region] = STATE(2167), [sym_preproc_endregion] = STATE(2167), [sym_preproc_line] = STATE(2167), @@ -396741,90 +396539,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2167), [sym_preproc_define] = STATE(2167), [sym_preproc_undef] = STATE(2167), - [sym__identifier_token] = ACTIONS(3600), - [anon_sym_alias] = ACTIONS(3603), - [anon_sym_SEMI] = ACTIONS(3445), - [anon_sym_global] = ACTIONS(3603), - [anon_sym_EQ] = ACTIONS(3447), - [anon_sym_LBRACK] = ACTIONS(3445), - [anon_sym_COLON] = ACTIONS(3447), - [anon_sym_COMMA] = ACTIONS(3445), - [anon_sym_RBRACK] = ACTIONS(3445), - [anon_sym_LPAREN] = ACTIONS(3445), - [anon_sym_RPAREN] = ACTIONS(3445), - [anon_sym_ref] = ACTIONS(3452), - [anon_sym_RBRACE] = ACTIONS(3445), - [anon_sym_file] = ACTIONS(3603), - [anon_sym_LT] = ACTIONS(3447), - [anon_sym_GT] = ACTIONS(3447), - [anon_sym_in] = ACTIONS(3447), - [anon_sym_where] = ACTIONS(3603), - [anon_sym_QMARK] = ACTIONS(3447), - [anon_sym_notnull] = ACTIONS(3603), - [anon_sym_unmanaged] = ACTIONS(3603), - [anon_sym_BANG] = ACTIONS(3447), - [anon_sym_PLUS_PLUS] = ACTIONS(3445), - [anon_sym_DASH_DASH] = ACTIONS(3445), - [anon_sym_PLUS] = ACTIONS(3447), - [anon_sym_DASH] = ACTIONS(3447), - [anon_sym_STAR] = ACTIONS(3447), - [anon_sym_SLASH] = ACTIONS(3447), - [anon_sym_PERCENT] = ACTIONS(3447), - [anon_sym_CARET] = ACTIONS(3447), - [anon_sym_PIPE] = ACTIONS(3447), - [anon_sym_AMP] = ACTIONS(3447), - [anon_sym_LT_LT] = ACTIONS(3447), - [anon_sym_GT_GT] = ACTIONS(3447), - [anon_sym_GT_GT_GT] = ACTIONS(3447), - [anon_sym_EQ_EQ] = ACTIONS(3445), - [anon_sym_BANG_EQ] = ACTIONS(3445), - [anon_sym_GT_EQ] = ACTIONS(3445), - [anon_sym_LT_EQ] = ACTIONS(3445), - [anon_sym_DOT] = ACTIONS(3447), - [anon_sym_scoped] = ACTIONS(3603), - [anon_sym_EQ_GT] = ACTIONS(3445), - [anon_sym_COLON_COLON] = ACTIONS(3445), - [anon_sym_var] = ACTIONS(3603), - [anon_sym_yield] = ACTIONS(3603), - [anon_sym_switch] = ACTIONS(3447), - [anon_sym_when] = ACTIONS(3603), - [anon_sym_DOT_DOT] = ACTIONS(3445), - [anon_sym_and] = ACTIONS(3447), - [anon_sym_or] = ACTIONS(3447), - [anon_sym_PLUS_EQ] = ACTIONS(3445), - [anon_sym_DASH_EQ] = ACTIONS(3445), - [anon_sym_STAR_EQ] = ACTIONS(3445), - [anon_sym_SLASH_EQ] = ACTIONS(3445), - [anon_sym_PERCENT_EQ] = ACTIONS(3445), - [anon_sym_AMP_EQ] = ACTIONS(3445), - [anon_sym_CARET_EQ] = ACTIONS(3445), - [anon_sym_PIPE_EQ] = ACTIONS(3445), - [anon_sym_LT_LT_EQ] = ACTIONS(3445), - [anon_sym_GT_GT_EQ] = ACTIONS(3445), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3445), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3445), - [anon_sym_AMP_AMP] = ACTIONS(3445), - [anon_sym_PIPE_PIPE] = ACTIONS(3445), - [anon_sym_QMARK_QMARK] = ACTIONS(3447), - [anon_sym_from] = ACTIONS(3603), - [anon_sym_into] = ACTIONS(3603), - [anon_sym_join] = ACTIONS(3603), - [anon_sym_on] = ACTIONS(3603), - [anon_sym_equals] = ACTIONS(3603), - [anon_sym_let] = ACTIONS(3603), - [anon_sym_orderby] = ACTIONS(3603), - [anon_sym_ascending] = ACTIONS(3603), - [anon_sym_descending] = ACTIONS(3603), - [anon_sym_group] = ACTIONS(3603), - [anon_sym_by] = ACTIONS(3603), - [anon_sym_select] = ACTIONS(3603), - [anon_sym_as] = ACTIONS(3447), - [anon_sym_is] = ACTIONS(3447), - [anon_sym_DASH_GT] = ACTIONS(3445), - [anon_sym_with] = ACTIONS(3447), - [aux_sym_preproc_if_token3] = ACTIONS(3445), - [aux_sym_preproc_else_token1] = ACTIONS(3445), - [aux_sym_preproc_elif_token1] = ACTIONS(3445), + [sym__identifier_token] = ACTIONS(3626), + [anon_sym_alias] = ACTIONS(3629), + [anon_sym_global] = ACTIONS(3629), + [anon_sym_EQ] = ACTIONS(3431), + [anon_sym_LBRACK] = ACTIONS(3429), + [anon_sym_COLON] = ACTIONS(3431), + [anon_sym_COMMA] = ACTIONS(3429), + [anon_sym_LPAREN] = ACTIONS(3429), + [anon_sym_ref] = ACTIONS(3632), + [anon_sym_LBRACE] = ACTIONS(3429), + [anon_sym_file] = ACTIONS(3629), + [anon_sym_LT] = ACTIONS(3431), + [anon_sym_GT] = ACTIONS(3431), + [anon_sym_where] = ACTIONS(3629), + [anon_sym_QMARK] = ACTIONS(3431), + [anon_sym_notnull] = ACTIONS(3629), + [anon_sym_unmanaged] = ACTIONS(3629), + [anon_sym_BANG] = ACTIONS(3431), + [anon_sym_PLUS_PLUS] = ACTIONS(3429), + [anon_sym_DASH_DASH] = ACTIONS(3429), + [anon_sym_PLUS] = ACTIONS(3431), + [anon_sym_DASH] = ACTIONS(3431), + [anon_sym_STAR] = ACTIONS(3431), + [anon_sym_SLASH] = ACTIONS(3431), + [anon_sym_PERCENT] = ACTIONS(3431), + [anon_sym_CARET] = ACTIONS(3431), + [anon_sym_PIPE] = ACTIONS(3431), + [anon_sym_AMP] = ACTIONS(3431), + [anon_sym_LT_LT] = ACTIONS(3431), + [anon_sym_GT_GT] = ACTIONS(3431), + [anon_sym_GT_GT_GT] = ACTIONS(3431), + [anon_sym_EQ_EQ] = ACTIONS(3429), + [anon_sym_BANG_EQ] = ACTIONS(3429), + [anon_sym_GT_EQ] = ACTIONS(3429), + [anon_sym_LT_EQ] = ACTIONS(3429), + [anon_sym_DOT] = ACTIONS(3431), + [anon_sym_scoped] = ACTIONS(3629), + [anon_sym_EQ_GT] = ACTIONS(3429), + [anon_sym_COLON_COLON] = ACTIONS(3429), + [anon_sym_var] = ACTIONS(3629), + [anon_sym_yield] = ACTIONS(3629), + [anon_sym_switch] = ACTIONS(3431), + [anon_sym_when] = ACTIONS(3629), + [sym_discard] = ACTIONS(3431), + [anon_sym_DOT_DOT] = ACTIONS(3429), + [anon_sym_and] = ACTIONS(3431), + [anon_sym_or] = ACTIONS(3431), + [anon_sym_PLUS_EQ] = ACTIONS(3429), + [anon_sym_DASH_EQ] = ACTIONS(3429), + [anon_sym_STAR_EQ] = ACTIONS(3429), + [anon_sym_SLASH_EQ] = ACTIONS(3429), + [anon_sym_PERCENT_EQ] = ACTIONS(3429), + [anon_sym_AMP_EQ] = ACTIONS(3429), + [anon_sym_CARET_EQ] = ACTIONS(3429), + [anon_sym_PIPE_EQ] = ACTIONS(3429), + [anon_sym_LT_LT_EQ] = ACTIONS(3429), + [anon_sym_GT_GT_EQ] = ACTIONS(3429), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3429), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3429), + [anon_sym_AMP_AMP] = ACTIONS(3429), + [anon_sym_PIPE_PIPE] = ACTIONS(3429), + [anon_sym_QMARK_QMARK] = ACTIONS(3431), + [anon_sym_from] = ACTIONS(3629), + [anon_sym_into] = ACTIONS(3629), + [anon_sym_join] = ACTIONS(3629), + [anon_sym_on] = ACTIONS(3629), + [anon_sym_equals] = ACTIONS(3629), + [anon_sym_let] = ACTIONS(3629), + [anon_sym_orderby] = ACTIONS(3629), + [anon_sym_ascending] = ACTIONS(3629), + [anon_sym_descending] = ACTIONS(3629), + [anon_sym_group] = ACTIONS(3629), + [anon_sym_by] = ACTIONS(3629), + [anon_sym_select] = ACTIONS(3629), + [anon_sym_as] = ACTIONS(3431), + [anon_sym_is] = ACTIONS(3431), + [anon_sym_DASH_GT] = ACTIONS(3429), + [anon_sym_with] = ACTIONS(3431), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -396835,17 +396627,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(3429), }, [2168] = { - [sym__name] = STATE(5302), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(4096), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_ref_type] = STATE(2317), - [sym__scoped_base_type] = STATE(2340), - [sym_identifier] = STATE(4373), - [sym__reserved_identifier] = STATE(2175), [sym_preproc_region] = STATE(2168), [sym_preproc_endregion] = STATE(2168), [sym_preproc_line] = STATE(2168), @@ -396855,87 +396639,93 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2168), [sym_preproc_define] = STATE(2168), [sym_preproc_undef] = STATE(2168), - [sym__identifier_token] = ACTIONS(3600), - [anon_sym_alias] = ACTIONS(3603), - [anon_sym_global] = ACTIONS(3603), - [anon_sym_EQ] = ACTIONS(3447), - [anon_sym_LBRACK] = ACTIONS(3445), - [anon_sym_COLON] = ACTIONS(3447), - [anon_sym_COMMA] = ACTIONS(3445), - [anon_sym_RBRACK] = ACTIONS(3445), - [anon_sym_LPAREN] = ACTIONS(3445), - [anon_sym_RPAREN] = ACTIONS(3445), - [anon_sym_ref] = ACTIONS(3606), - [anon_sym_LBRACE] = ACTIONS(3445), - [anon_sym_RBRACE] = ACTIONS(3445), - [anon_sym_file] = ACTIONS(3603), - [anon_sym_LT] = ACTIONS(3447), - [anon_sym_GT] = ACTIONS(3447), - [anon_sym_where] = ACTIONS(3603), - [anon_sym_QMARK] = ACTIONS(3447), - [anon_sym_notnull] = ACTIONS(3603), - [anon_sym_unmanaged] = ACTIONS(3603), - [anon_sym_BANG] = ACTIONS(3447), - [anon_sym_PLUS_PLUS] = ACTIONS(3445), - [anon_sym_DASH_DASH] = ACTIONS(3445), - [anon_sym_PLUS] = ACTIONS(3447), - [anon_sym_DASH] = ACTIONS(3447), - [anon_sym_STAR] = ACTIONS(3447), - [anon_sym_SLASH] = ACTIONS(3447), - [anon_sym_PERCENT] = ACTIONS(3447), - [anon_sym_CARET] = ACTIONS(3447), - [anon_sym_PIPE] = ACTIONS(3447), - [anon_sym_AMP] = ACTIONS(3447), - [anon_sym_LT_LT] = ACTIONS(3447), - [anon_sym_GT_GT] = ACTIONS(3447), - [anon_sym_GT_GT_GT] = ACTIONS(3447), - [anon_sym_EQ_EQ] = ACTIONS(3445), - [anon_sym_BANG_EQ] = ACTIONS(3445), - [anon_sym_GT_EQ] = ACTIONS(3445), - [anon_sym_LT_EQ] = ACTIONS(3445), - [anon_sym_DOT] = ACTIONS(3447), - [anon_sym_scoped] = ACTIONS(3603), - [anon_sym_EQ_GT] = ACTIONS(3445), - [anon_sym_COLON_COLON] = ACTIONS(3445), - [anon_sym_var] = ACTIONS(3603), - [anon_sym_yield] = ACTIONS(3603), - [anon_sym_switch] = ACTIONS(3447), - [anon_sym_when] = ACTIONS(3603), - [sym_discard] = ACTIONS(3447), - [anon_sym_DOT_DOT] = ACTIONS(3445), - [anon_sym_and] = ACTIONS(3447), - [anon_sym_or] = ACTIONS(3447), - [anon_sym_PLUS_EQ] = ACTIONS(3445), - [anon_sym_DASH_EQ] = ACTIONS(3445), - [anon_sym_STAR_EQ] = ACTIONS(3445), - [anon_sym_SLASH_EQ] = ACTIONS(3445), - [anon_sym_PERCENT_EQ] = ACTIONS(3445), - [anon_sym_AMP_EQ] = ACTIONS(3445), - [anon_sym_CARET_EQ] = ACTIONS(3445), - [anon_sym_PIPE_EQ] = ACTIONS(3445), - [anon_sym_LT_LT_EQ] = ACTIONS(3445), - [anon_sym_GT_GT_EQ] = ACTIONS(3445), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3445), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3445), - [anon_sym_AMP_AMP] = ACTIONS(3445), - [anon_sym_PIPE_PIPE] = ACTIONS(3445), - [anon_sym_QMARK_QMARK] = ACTIONS(3447), - [anon_sym_from] = ACTIONS(3603), - [anon_sym_into] = ACTIONS(3603), - [anon_sym_join] = ACTIONS(3603), - [anon_sym_on] = ACTIONS(3603), - [anon_sym_equals] = ACTIONS(3603), - [anon_sym_let] = ACTIONS(3603), - [anon_sym_orderby] = ACTIONS(3603), - [anon_sym_ascending] = ACTIONS(3603), - [anon_sym_descending] = ACTIONS(3603), - [anon_sym_group] = ACTIONS(3603), - [anon_sym_by] = ACTIONS(3603), - [anon_sym_select] = ACTIONS(3603), - [anon_sym_as] = ACTIONS(3447), - [anon_sym_is] = ACTIONS(3447), - [anon_sym_DASH_GT] = ACTIONS(3445), - [anon_sym_with] = ACTIONS(3447), + [sym__identifier_token] = ACTIONS(3634), + [anon_sym_alias] = ACTIONS(3634), + [anon_sym_SEMI] = ACTIONS(3636), + [anon_sym_global] = ACTIONS(3634), + [anon_sym_EQ] = ACTIONS(3634), + [anon_sym_LBRACK] = ACTIONS(3636), + [anon_sym_COLON] = ACTIONS(3634), + [anon_sym_COMMA] = ACTIONS(3636), + [anon_sym_RBRACK] = ACTIONS(3636), + [anon_sym_LPAREN] = ACTIONS(3636), + [anon_sym_RPAREN] = ACTIONS(3636), + [anon_sym_LBRACE] = ACTIONS(3636), + [anon_sym_RBRACE] = ACTIONS(3636), + [anon_sym_file] = ACTIONS(3634), + [anon_sym_LT] = ACTIONS(3634), + [anon_sym_GT] = ACTIONS(3634), + [anon_sym_in] = ACTIONS(3634), + [anon_sym_where] = ACTIONS(3634), + [anon_sym_QMARK] = ACTIONS(3634), + [anon_sym_notnull] = ACTIONS(3634), + [anon_sym_unmanaged] = ACTIONS(3634), + [anon_sym_operator] = ACTIONS(3634), + [anon_sym_BANG] = ACTIONS(3634), + [anon_sym_PLUS_PLUS] = ACTIONS(3636), + [anon_sym_DASH_DASH] = ACTIONS(3636), + [anon_sym_PLUS] = ACTIONS(3634), + [anon_sym_DASH] = ACTIONS(3634), + [anon_sym_STAR] = ACTIONS(3634), + [anon_sym_SLASH] = ACTIONS(3634), + [anon_sym_PERCENT] = ACTIONS(3634), + [anon_sym_CARET] = ACTIONS(3634), + [anon_sym_PIPE] = ACTIONS(3634), + [anon_sym_AMP] = ACTIONS(3634), + [anon_sym_LT_LT] = ACTIONS(3634), + [anon_sym_GT_GT] = ACTIONS(3634), + [anon_sym_GT_GT_GT] = ACTIONS(3634), + [anon_sym_EQ_EQ] = ACTIONS(3636), + [anon_sym_BANG_EQ] = ACTIONS(3636), + [anon_sym_GT_EQ] = ACTIONS(3636), + [anon_sym_LT_EQ] = ACTIONS(3636), + [anon_sym_this] = ACTIONS(3634), + [anon_sym_DOT] = ACTIONS(3634), + [anon_sym_scoped] = ACTIONS(3634), + [anon_sym_EQ_GT] = ACTIONS(3636), + [anon_sym_COLON_COLON] = ACTIONS(3636), + [anon_sym_var] = ACTIONS(3634), + [anon_sym_yield] = ACTIONS(3634), + [anon_sym_switch] = ACTIONS(3634), + [anon_sym_when] = ACTIONS(3634), + [sym_discard] = ACTIONS(3634), + [anon_sym_DOT_DOT] = ACTIONS(3636), + [anon_sym_and] = ACTIONS(3634), + [anon_sym_or] = ACTIONS(3634), + [anon_sym_PLUS_EQ] = ACTIONS(3636), + [anon_sym_DASH_EQ] = ACTIONS(3636), + [anon_sym_STAR_EQ] = ACTIONS(3636), + [anon_sym_SLASH_EQ] = ACTIONS(3636), + [anon_sym_PERCENT_EQ] = ACTIONS(3636), + [anon_sym_AMP_EQ] = ACTIONS(3636), + [anon_sym_CARET_EQ] = ACTIONS(3636), + [anon_sym_PIPE_EQ] = ACTIONS(3636), + [anon_sym_LT_LT_EQ] = ACTIONS(3636), + [anon_sym_GT_GT_EQ] = ACTIONS(3636), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3636), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3636), + [anon_sym_AMP_AMP] = ACTIONS(3636), + [anon_sym_PIPE_PIPE] = ACTIONS(3636), + [anon_sym_QMARK_QMARK] = ACTIONS(3634), + [anon_sym_from] = ACTIONS(3634), + [anon_sym_into] = ACTIONS(3634), + [anon_sym_join] = ACTIONS(3634), + [anon_sym_on] = ACTIONS(3634), + [anon_sym_equals] = ACTIONS(3634), + [anon_sym_let] = ACTIONS(3634), + [anon_sym_orderby] = ACTIONS(3634), + [anon_sym_ascending] = ACTIONS(3634), + [anon_sym_descending] = ACTIONS(3634), + [anon_sym_group] = ACTIONS(3634), + [anon_sym_by] = ACTIONS(3634), + [anon_sym_select] = ACTIONS(3634), + [anon_sym_as] = ACTIONS(3634), + [anon_sym_is] = ACTIONS(3634), + [anon_sym_DASH_GT] = ACTIONS(3636), + [anon_sym_with] = ACTIONS(3634), + [aux_sym_preproc_if_token3] = ACTIONS(3636), + [aux_sym_preproc_else_token1] = ACTIONS(3636), + [aux_sym_preproc_elif_token1] = ACTIONS(3636), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -396948,10 +396738,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2169] = { - [sym__variable_designation] = STATE(3343), - [sym_parenthesized_variable_designation] = STATE(3340), - [sym_identifier] = STATE(3345), - [sym__reserved_identifier] = STATE(3177), [sym_preproc_region] = STATE(2169), [sym_preproc_endregion] = STATE(2169), [sym_preproc_line] = STATE(2169), @@ -396961,91 +396747,93 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2169), [sym_preproc_define] = STATE(2169), [sym_preproc_undef] = STATE(2169), - [sym__identifier_token] = ACTIONS(3608), - [anon_sym_alias] = ACTIONS(3612), - [anon_sym_SEMI] = ACTIONS(3616), - [anon_sym_global] = ACTIONS(3612), - [anon_sym_EQ] = ACTIONS(3447), - [anon_sym_LBRACK] = ACTIONS(3616), - [anon_sym_COLON] = ACTIONS(3619), - [anon_sym_COMMA] = ACTIONS(3616), - [anon_sym_RBRACK] = ACTIONS(3616), - [anon_sym_LPAREN] = ACTIONS(3622), - [anon_sym_RPAREN] = ACTIONS(3616), - [anon_sym_LBRACE] = ACTIONS(3616), - [anon_sym_RBRACE] = ACTIONS(3616), - [anon_sym_file] = ACTIONS(3612), - [anon_sym_LT] = ACTIONS(3619), - [anon_sym_GT] = ACTIONS(3619), - [anon_sym_in] = ACTIONS(3619), - [anon_sym_where] = ACTIONS(3612), - [anon_sym_QMARK] = ACTIONS(3619), - [anon_sym_notnull] = ACTIONS(3612), - [anon_sym_unmanaged] = ACTIONS(3612), - [anon_sym_BANG] = ACTIONS(3619), - [anon_sym_PLUS_PLUS] = ACTIONS(3616), - [anon_sym_DASH_DASH] = ACTIONS(3616), - [anon_sym_PLUS] = ACTIONS(3619), - [anon_sym_DASH] = ACTIONS(3619), - [anon_sym_STAR] = ACTIONS(3619), - [anon_sym_SLASH] = ACTIONS(3619), - [anon_sym_PERCENT] = ACTIONS(3619), - [anon_sym_CARET] = ACTIONS(3619), - [anon_sym_PIPE] = ACTIONS(3619), - [anon_sym_AMP] = ACTIONS(3619), - [anon_sym_LT_LT] = ACTIONS(3619), - [anon_sym_GT_GT] = ACTIONS(3619), - [anon_sym_GT_GT_GT] = ACTIONS(3619), - [anon_sym_EQ_EQ] = ACTIONS(3616), - [anon_sym_BANG_EQ] = ACTIONS(3616), - [anon_sym_GT_EQ] = ACTIONS(3616), - [anon_sym_LT_EQ] = ACTIONS(3616), - [anon_sym_DOT] = ACTIONS(3619), - [anon_sym_scoped] = ACTIONS(3612), - [anon_sym_EQ_GT] = ACTIONS(3445), - [anon_sym_COLON_COLON] = ACTIONS(3445), - [anon_sym_var] = ACTIONS(3612), - [anon_sym_yield] = ACTIONS(3612), - [anon_sym_switch] = ACTIONS(3619), - [anon_sym_when] = ACTIONS(3612), - [sym_discard] = ACTIONS(3626), - [anon_sym_DOT_DOT] = ACTIONS(3616), - [anon_sym_and] = ACTIONS(3619), - [anon_sym_or] = ACTIONS(3619), - [anon_sym_PLUS_EQ] = ACTIONS(3445), - [anon_sym_DASH_EQ] = ACTIONS(3445), - [anon_sym_STAR_EQ] = ACTIONS(3445), - [anon_sym_SLASH_EQ] = ACTIONS(3445), - [anon_sym_PERCENT_EQ] = ACTIONS(3445), - [anon_sym_AMP_EQ] = ACTIONS(3445), - [anon_sym_CARET_EQ] = ACTIONS(3445), - [anon_sym_PIPE_EQ] = ACTIONS(3445), - [anon_sym_LT_LT_EQ] = ACTIONS(3445), - [anon_sym_GT_GT_EQ] = ACTIONS(3445), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3445), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3445), - [anon_sym_AMP_AMP] = ACTIONS(3616), - [anon_sym_PIPE_PIPE] = ACTIONS(3616), - [anon_sym_QMARK_QMARK] = ACTIONS(3619), - [anon_sym_from] = ACTIONS(3612), - [anon_sym_into] = ACTIONS(3612), - [anon_sym_join] = ACTIONS(3612), - [anon_sym_on] = ACTIONS(3612), - [anon_sym_equals] = ACTIONS(3612), - [anon_sym_let] = ACTIONS(3612), - [anon_sym_orderby] = ACTIONS(3612), - [anon_sym_ascending] = ACTIONS(3612), - [anon_sym_descending] = ACTIONS(3612), - [anon_sym_group] = ACTIONS(3612), - [anon_sym_by] = ACTIONS(3612), - [anon_sym_select] = ACTIONS(3612), - [anon_sym_as] = ACTIONS(3619), - [anon_sym_is] = ACTIONS(3619), - [anon_sym_DASH_GT] = ACTIONS(3616), - [anon_sym_with] = ACTIONS(3619), - [aux_sym_preproc_if_token3] = ACTIONS(3616), - [aux_sym_preproc_else_token1] = ACTIONS(3616), - [aux_sym_preproc_elif_token1] = ACTIONS(3616), + [sym__identifier_token] = ACTIONS(3431), + [anon_sym_alias] = ACTIONS(3431), + [anon_sym_SEMI] = ACTIONS(3429), + [anon_sym_global] = ACTIONS(3431), + [anon_sym_EQ] = ACTIONS(3431), + [anon_sym_LBRACK] = ACTIONS(3429), + [anon_sym_COLON] = ACTIONS(3431), + [anon_sym_COMMA] = ACTIONS(3429), + [anon_sym_RBRACK] = ACTIONS(3429), + [anon_sym_LPAREN] = ACTIONS(3429), + [anon_sym_RPAREN] = ACTIONS(3429), + [anon_sym_LBRACE] = ACTIONS(3429), + [anon_sym_RBRACE] = ACTIONS(3429), + [anon_sym_file] = ACTIONS(3431), + [anon_sym_LT] = ACTIONS(3431), + [anon_sym_GT] = ACTIONS(3431), + [anon_sym_in] = ACTIONS(3431), + [anon_sym_where] = ACTIONS(3431), + [anon_sym_QMARK] = ACTIONS(3431), + [anon_sym_notnull] = ACTIONS(3431), + [anon_sym_unmanaged] = ACTIONS(3431), + [anon_sym_operator] = ACTIONS(3431), + [anon_sym_BANG] = ACTIONS(3431), + [anon_sym_PLUS_PLUS] = ACTIONS(3429), + [anon_sym_DASH_DASH] = ACTIONS(3429), + [anon_sym_PLUS] = ACTIONS(3431), + [anon_sym_DASH] = ACTIONS(3431), + [anon_sym_STAR] = ACTIONS(3431), + [anon_sym_SLASH] = ACTIONS(3431), + [anon_sym_PERCENT] = ACTIONS(3431), + [anon_sym_CARET] = ACTIONS(3431), + [anon_sym_PIPE] = ACTIONS(3431), + [anon_sym_AMP] = ACTIONS(3431), + [anon_sym_LT_LT] = ACTIONS(3431), + [anon_sym_GT_GT] = ACTIONS(3431), + [anon_sym_GT_GT_GT] = ACTIONS(3431), + [anon_sym_EQ_EQ] = ACTIONS(3429), + [anon_sym_BANG_EQ] = ACTIONS(3429), + [anon_sym_GT_EQ] = ACTIONS(3429), + [anon_sym_LT_EQ] = ACTIONS(3429), + [anon_sym_this] = ACTIONS(3431), + [anon_sym_DOT] = ACTIONS(3431), + [anon_sym_scoped] = ACTIONS(3431), + [anon_sym_EQ_GT] = ACTIONS(3429), + [anon_sym_COLON_COLON] = ACTIONS(3429), + [anon_sym_var] = ACTIONS(3431), + [anon_sym_yield] = ACTIONS(3431), + [anon_sym_switch] = ACTIONS(3431), + [anon_sym_when] = ACTIONS(3431), + [sym_discard] = ACTIONS(3431), + [anon_sym_DOT_DOT] = ACTIONS(3429), + [anon_sym_and] = ACTIONS(3431), + [anon_sym_or] = ACTIONS(3431), + [anon_sym_PLUS_EQ] = ACTIONS(3429), + [anon_sym_DASH_EQ] = ACTIONS(3429), + [anon_sym_STAR_EQ] = ACTIONS(3429), + [anon_sym_SLASH_EQ] = ACTIONS(3429), + [anon_sym_PERCENT_EQ] = ACTIONS(3429), + [anon_sym_AMP_EQ] = ACTIONS(3429), + [anon_sym_CARET_EQ] = ACTIONS(3429), + [anon_sym_PIPE_EQ] = ACTIONS(3429), + [anon_sym_LT_LT_EQ] = ACTIONS(3429), + [anon_sym_GT_GT_EQ] = ACTIONS(3429), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3429), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3429), + [anon_sym_AMP_AMP] = ACTIONS(3429), + [anon_sym_PIPE_PIPE] = ACTIONS(3429), + [anon_sym_QMARK_QMARK] = 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), + [anon_sym_as] = ACTIONS(3431), + [anon_sym_is] = ACTIONS(3431), + [anon_sym_DASH_GT] = ACTIONS(3429), + [anon_sym_with] = ACTIONS(3431), + [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), @@ -397058,15 +396846,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2170] = { - [sym__name] = STATE(2637), - [sym_alias_qualified_name] = STATE(2373), - [sym__simple_name] = STATE(2373), - [sym_qualified_name] = STATE(2373), - [sym_generic_name] = STATE(2389), - [sym_ref_type] = STATE(2317), - [sym__scoped_base_type] = STATE(2340), - [sym_identifier] = STATE(2564), - [sym__reserved_identifier] = STATE(2361), [sym_preproc_region] = STATE(2170), [sym_preproc_endregion] = STATE(2170), [sym_preproc_line] = STATE(2170), @@ -397076,86 +396855,92 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2170), [sym_preproc_define] = STATE(2170), [sym_preproc_undef] = STATE(2170), - [sym__identifier_token] = ACTIONS(3581), - [anon_sym_alias] = ACTIONS(3584), - [anon_sym_global] = ACTIONS(3584), - [anon_sym_EQ] = ACTIONS(3447), - [anon_sym_LBRACK] = ACTIONS(3445), - [anon_sym_COLON] = ACTIONS(3447), - [anon_sym_COMMA] = ACTIONS(3445), - [anon_sym_LPAREN] = ACTIONS(3445), - [anon_sym_RPAREN] = ACTIONS(3445), - [anon_sym_ref] = ACTIONS(3630), - [anon_sym_LBRACE] = ACTIONS(3445), - [anon_sym_RBRACE] = ACTIONS(3445), - [anon_sym_file] = ACTIONS(3584), - [anon_sym_LT] = ACTIONS(3447), - [anon_sym_GT] = ACTIONS(3447), - [anon_sym_where] = ACTIONS(3584), - [anon_sym_QMARK] = ACTIONS(3447), - [anon_sym_notnull] = ACTIONS(3584), - [anon_sym_unmanaged] = ACTIONS(3584), - [anon_sym_BANG] = ACTIONS(3447), - [anon_sym_PLUS_PLUS] = ACTIONS(3445), - [anon_sym_DASH_DASH] = ACTIONS(3445), - [anon_sym_PLUS] = ACTIONS(3447), - [anon_sym_DASH] = ACTIONS(3447), - [anon_sym_STAR] = ACTIONS(3447), - [anon_sym_SLASH] = ACTIONS(3447), - [anon_sym_PERCENT] = ACTIONS(3447), - [anon_sym_CARET] = ACTIONS(3447), - [anon_sym_PIPE] = ACTIONS(3447), - [anon_sym_AMP] = ACTIONS(3447), - [anon_sym_LT_LT] = ACTIONS(3447), - [anon_sym_GT_GT] = ACTIONS(3447), - [anon_sym_GT_GT_GT] = ACTIONS(3447), - [anon_sym_EQ_EQ] = ACTIONS(3445), - [anon_sym_BANG_EQ] = ACTIONS(3445), - [anon_sym_GT_EQ] = ACTIONS(3445), - [anon_sym_LT_EQ] = ACTIONS(3445), - [anon_sym_DOT] = ACTIONS(3447), - [anon_sym_scoped] = ACTIONS(3584), - [anon_sym_EQ_GT] = ACTIONS(3445), - [anon_sym_COLON_COLON] = ACTIONS(3445), - [anon_sym_var] = ACTIONS(3584), - [anon_sym_yield] = ACTIONS(3584), - [anon_sym_switch] = ACTIONS(3447), - [anon_sym_when] = ACTIONS(3584), - [sym_discard] = ACTIONS(3447), - [anon_sym_DOT_DOT] = ACTIONS(3445), - [anon_sym_and] = ACTIONS(3447), - [anon_sym_or] = ACTIONS(3447), - [anon_sym_PLUS_EQ] = ACTIONS(3445), - [anon_sym_DASH_EQ] = ACTIONS(3445), - [anon_sym_STAR_EQ] = ACTIONS(3445), - [anon_sym_SLASH_EQ] = ACTIONS(3445), - [anon_sym_PERCENT_EQ] = ACTIONS(3445), - [anon_sym_AMP_EQ] = ACTIONS(3445), - [anon_sym_CARET_EQ] = ACTIONS(3445), - [anon_sym_PIPE_EQ] = ACTIONS(3445), - [anon_sym_LT_LT_EQ] = ACTIONS(3445), - [anon_sym_GT_GT_EQ] = ACTIONS(3445), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3445), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3445), - [anon_sym_AMP_AMP] = ACTIONS(3445), - [anon_sym_PIPE_PIPE] = ACTIONS(3445), - [anon_sym_QMARK_QMARK] = ACTIONS(3447), - [anon_sym_from] = ACTIONS(3584), - [anon_sym_into] = ACTIONS(3584), - [anon_sym_join] = ACTIONS(3584), - [anon_sym_on] = ACTIONS(3584), - [anon_sym_equals] = ACTIONS(3584), - [anon_sym_let] = ACTIONS(3584), - [anon_sym_orderby] = ACTIONS(3584), - [anon_sym_ascending] = ACTIONS(3584), - [anon_sym_descending] = ACTIONS(3584), - [anon_sym_group] = ACTIONS(3584), - [anon_sym_by] = ACTIONS(3584), - [anon_sym_select] = ACTIONS(3584), - [anon_sym_as] = ACTIONS(3447), - [anon_sym_is] = ACTIONS(3447), - [anon_sym_DASH_GT] = ACTIONS(3445), - [anon_sym_with] = ACTIONS(3447), + [sym__identifier_token] = ACTIONS(3638), + [anon_sym_alias] = ACTIONS(3638), + [anon_sym_SEMI] = ACTIONS(3640), + [anon_sym_global] = ACTIONS(3638), + [anon_sym_EQ] = ACTIONS(3638), + [anon_sym_LBRACK] = ACTIONS(3640), + [anon_sym_COLON] = ACTIONS(3640), + [anon_sym_COMMA] = ACTIONS(3640), + [anon_sym_RBRACK] = ACTIONS(3640), + [anon_sym_LPAREN] = ACTIONS(3640), + [anon_sym_RPAREN] = ACTIONS(3640), + [anon_sym_LBRACE] = ACTIONS(3640), + [anon_sym_RBRACE] = ACTIONS(3640), + [anon_sym_file] = ACTIONS(3638), + [anon_sym_LT] = ACTIONS(3638), + [anon_sym_GT] = ACTIONS(3638), + [anon_sym_in] = ACTIONS(3638), + [anon_sym_where] = ACTIONS(3638), + [anon_sym_QMARK] = ACTIONS(3638), + [anon_sym_notnull] = ACTIONS(3638), + [anon_sym_unmanaged] = ACTIONS(3638), + [anon_sym_operator] = ACTIONS(3638), + [anon_sym_BANG] = ACTIONS(3638), + [anon_sym_PLUS_PLUS] = ACTIONS(3640), + [anon_sym_DASH_DASH] = ACTIONS(3640), + [anon_sym_PLUS] = ACTIONS(3638), + [anon_sym_DASH] = ACTIONS(3638), + [anon_sym_STAR] = ACTIONS(3638), + [anon_sym_SLASH] = ACTIONS(3638), + [anon_sym_PERCENT] = ACTIONS(3638), + [anon_sym_CARET] = ACTIONS(3638), + [anon_sym_PIPE] = ACTIONS(3638), + [anon_sym_AMP] = ACTIONS(3638), + [anon_sym_LT_LT] = ACTIONS(3638), + [anon_sym_GT_GT] = ACTIONS(3638), + [anon_sym_GT_GT_GT] = ACTIONS(3638), + [anon_sym_EQ_EQ] = ACTIONS(3640), + [anon_sym_BANG_EQ] = ACTIONS(3640), + [anon_sym_GT_EQ] = ACTIONS(3640), + [anon_sym_LT_EQ] = ACTIONS(3640), + [anon_sym_this] = ACTIONS(3638), + [anon_sym_DOT] = ACTIONS(3638), + [anon_sym_scoped] = ACTIONS(3638), + [anon_sym_EQ_GT] = ACTIONS(3640), + [anon_sym_var] = ACTIONS(3638), + [anon_sym_yield] = ACTIONS(3638), + [anon_sym_switch] = ACTIONS(3638), + [anon_sym_when] = ACTIONS(3638), + [sym_discard] = ACTIONS(3638), + [anon_sym_DOT_DOT] = ACTIONS(3640), + [anon_sym_and] = ACTIONS(3638), + [anon_sym_or] = ACTIONS(3638), + [anon_sym_PLUS_EQ] = ACTIONS(3640), + [anon_sym_DASH_EQ] = ACTIONS(3640), + [anon_sym_STAR_EQ] = ACTIONS(3640), + [anon_sym_SLASH_EQ] = ACTIONS(3640), + [anon_sym_PERCENT_EQ] = ACTIONS(3640), + [anon_sym_AMP_EQ] = ACTIONS(3640), + [anon_sym_CARET_EQ] = ACTIONS(3640), + [anon_sym_PIPE_EQ] = ACTIONS(3640), + [anon_sym_LT_LT_EQ] = ACTIONS(3640), + [anon_sym_GT_GT_EQ] = ACTIONS(3640), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3640), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3640), + [anon_sym_AMP_AMP] = ACTIONS(3640), + [anon_sym_PIPE_PIPE] = ACTIONS(3640), + [anon_sym_QMARK_QMARK] = ACTIONS(3638), + [anon_sym_from] = ACTIONS(3638), + [anon_sym_into] = ACTIONS(3638), + [anon_sym_join] = ACTIONS(3638), + [anon_sym_on] = ACTIONS(3638), + [anon_sym_equals] = ACTIONS(3638), + [anon_sym_let] = ACTIONS(3638), + [anon_sym_orderby] = ACTIONS(3638), + [anon_sym_ascending] = ACTIONS(3638), + [anon_sym_descending] = ACTIONS(3638), + [anon_sym_group] = ACTIONS(3638), + [anon_sym_by] = ACTIONS(3638), + [anon_sym_select] = ACTIONS(3638), + [anon_sym_as] = ACTIONS(3638), + [anon_sym_is] = ACTIONS(3638), + [anon_sym_DASH_GT] = ACTIONS(3640), + [anon_sym_with] = ACTIONS(3638), + [aux_sym_preproc_if_token3] = ACTIONS(3640), + [aux_sym_preproc_else_token1] = ACTIONS(3640), + [aux_sym_preproc_elif_token1] = ACTIONS(3640), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -397168,10 +396953,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2171] = { - [sym__variable_designation] = STATE(3474), - [sym_parenthesized_variable_designation] = STATE(3463), - [sym_identifier] = STATE(3479), - [sym__reserved_identifier] = STATE(3177), [sym_preproc_region] = STATE(2171), [sym_preproc_endregion] = STATE(2171), [sym_preproc_line] = STATE(2171), @@ -397181,90 +396962,92 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2171), [sym_preproc_define] = STATE(2171), [sym_preproc_undef] = STATE(2171), - [sym__identifier_token] = ACTIONS(3608), - [anon_sym_alias] = ACTIONS(3612), - [anon_sym_SEMI] = ACTIONS(3616), - [anon_sym_global] = ACTIONS(3612), - [anon_sym_EQ] = ACTIONS(3447), - [anon_sym_LBRACK] = ACTIONS(3616), - [anon_sym_COLON] = ACTIONS(3619), - [anon_sym_COMMA] = ACTIONS(3616), - [anon_sym_RBRACK] = ACTIONS(3616), - [anon_sym_LPAREN] = ACTIONS(3632), - [anon_sym_RPAREN] = ACTIONS(3616), - [anon_sym_LBRACE] = ACTIONS(3616), - [anon_sym_RBRACE] = ACTIONS(3616), - [anon_sym_file] = ACTIONS(3612), - [anon_sym_LT] = ACTIONS(3619), - [anon_sym_GT] = ACTIONS(3619), - [anon_sym_where] = ACTIONS(3612), - [anon_sym_QMARK] = ACTIONS(3619), - [anon_sym_notnull] = ACTIONS(3612), - [anon_sym_unmanaged] = ACTIONS(3612), - [anon_sym_BANG] = ACTIONS(3619), - [anon_sym_PLUS_PLUS] = ACTIONS(3616), - [anon_sym_DASH_DASH] = ACTIONS(3616), - [anon_sym_PLUS] = ACTIONS(3619), - [anon_sym_DASH] = ACTIONS(3619), - [anon_sym_STAR] = ACTIONS(3619), - [anon_sym_SLASH] = ACTIONS(3619), - [anon_sym_PERCENT] = ACTIONS(3619), - [anon_sym_CARET] = ACTIONS(3619), - [anon_sym_PIPE] = ACTIONS(3619), - [anon_sym_AMP] = ACTIONS(3619), - [anon_sym_LT_LT] = ACTIONS(3619), - [anon_sym_GT_GT] = ACTIONS(3619), - [anon_sym_GT_GT_GT] = ACTIONS(3619), - [anon_sym_EQ_EQ] = ACTIONS(3616), - [anon_sym_BANG_EQ] = ACTIONS(3616), - [anon_sym_GT_EQ] = ACTIONS(3616), - [anon_sym_LT_EQ] = ACTIONS(3616), - [anon_sym_DOT] = ACTIONS(3619), - [anon_sym_scoped] = ACTIONS(3612), - [anon_sym_EQ_GT] = ACTIONS(3445), - [anon_sym_COLON_COLON] = ACTIONS(3445), - [anon_sym_var] = ACTIONS(3612), - [anon_sym_yield] = ACTIONS(3612), - [anon_sym_switch] = ACTIONS(3619), - [anon_sym_when] = ACTIONS(3612), - [sym_discard] = ACTIONS(3636), - [anon_sym_DOT_DOT] = ACTIONS(3616), - [anon_sym_and] = ACTIONS(3619), - [anon_sym_or] = ACTIONS(3619), - [anon_sym_PLUS_EQ] = ACTIONS(3445), - [anon_sym_DASH_EQ] = ACTIONS(3445), - [anon_sym_STAR_EQ] = ACTIONS(3445), - [anon_sym_SLASH_EQ] = ACTIONS(3445), - [anon_sym_PERCENT_EQ] = ACTIONS(3445), - [anon_sym_AMP_EQ] = ACTIONS(3445), - [anon_sym_CARET_EQ] = ACTIONS(3445), - [anon_sym_PIPE_EQ] = ACTIONS(3445), - [anon_sym_LT_LT_EQ] = ACTIONS(3445), - [anon_sym_GT_GT_EQ] = ACTIONS(3445), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3445), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3445), - [anon_sym_AMP_AMP] = ACTIONS(3616), - [anon_sym_PIPE_PIPE] = ACTIONS(3616), - [anon_sym_QMARK_QMARK] = ACTIONS(3619), - [anon_sym_from] = ACTIONS(3612), - [anon_sym_into] = ACTIONS(3612), - [anon_sym_join] = ACTIONS(3612), - [anon_sym_on] = ACTIONS(3612), - [anon_sym_equals] = ACTIONS(3612), - [anon_sym_let] = ACTIONS(3612), - [anon_sym_orderby] = ACTIONS(3612), - [anon_sym_ascending] = ACTIONS(3612), - [anon_sym_descending] = ACTIONS(3612), - [anon_sym_group] = ACTIONS(3612), - [anon_sym_by] = ACTIONS(3612), - [anon_sym_select] = ACTIONS(3612), - [anon_sym_as] = ACTIONS(3619), - [anon_sym_is] = ACTIONS(3619), - [anon_sym_DASH_GT] = ACTIONS(3616), - [anon_sym_with] = ACTIONS(3619), - [aux_sym_preproc_if_token3] = ACTIONS(3616), - [aux_sym_preproc_else_token1] = ACTIONS(3616), - [aux_sym_preproc_elif_token1] = ACTIONS(3616), + [sym__identifier_token] = ACTIONS(3642), + [anon_sym_alias] = ACTIONS(3642), + [anon_sym_SEMI] = ACTIONS(3644), + [anon_sym_global] = ACTIONS(3642), + [anon_sym_EQ] = ACTIONS(3642), + [anon_sym_LBRACK] = ACTIONS(3644), + [anon_sym_COLON] = ACTIONS(3644), + [anon_sym_COMMA] = ACTIONS(3644), + [anon_sym_RBRACK] = ACTIONS(3644), + [anon_sym_LPAREN] = ACTIONS(3644), + [anon_sym_RPAREN] = ACTIONS(3644), + [anon_sym_LBRACE] = ACTIONS(3644), + [anon_sym_RBRACE] = ACTIONS(3644), + [anon_sym_file] = ACTIONS(3642), + [anon_sym_LT] = ACTIONS(3642), + [anon_sym_GT] = ACTIONS(3642), + [anon_sym_in] = ACTIONS(3642), + [anon_sym_where] = ACTIONS(3642), + [anon_sym_QMARK] = ACTIONS(3642), + [anon_sym_notnull] = ACTIONS(3642), + [anon_sym_unmanaged] = ACTIONS(3642), + [anon_sym_operator] = ACTIONS(3642), + [anon_sym_BANG] = ACTIONS(3642), + [anon_sym_PLUS_PLUS] = ACTIONS(3644), + [anon_sym_DASH_DASH] = ACTIONS(3644), + [anon_sym_PLUS] = ACTIONS(3642), + [anon_sym_DASH] = ACTIONS(3642), + [anon_sym_STAR] = ACTIONS(3642), + [anon_sym_SLASH] = ACTIONS(3642), + [anon_sym_PERCENT] = ACTIONS(3642), + [anon_sym_CARET] = ACTIONS(3642), + [anon_sym_PIPE] = ACTIONS(3642), + [anon_sym_AMP] = ACTIONS(3642), + [anon_sym_LT_LT] = ACTIONS(3642), + [anon_sym_GT_GT] = ACTIONS(3642), + [anon_sym_GT_GT_GT] = ACTIONS(3642), + [anon_sym_EQ_EQ] = ACTIONS(3644), + [anon_sym_BANG_EQ] = ACTIONS(3644), + [anon_sym_GT_EQ] = ACTIONS(3644), + [anon_sym_LT_EQ] = ACTIONS(3644), + [anon_sym_this] = ACTIONS(3642), + [anon_sym_DOT] = ACTIONS(3642), + [anon_sym_scoped] = ACTIONS(3642), + [anon_sym_EQ_GT] = ACTIONS(3644), + [anon_sym_var] = ACTIONS(3642), + [anon_sym_yield] = ACTIONS(3642), + [anon_sym_switch] = ACTIONS(3642), + [anon_sym_when] = ACTIONS(3642), + [sym_discard] = ACTIONS(3642), + [anon_sym_DOT_DOT] = ACTIONS(3644), + [anon_sym_and] = ACTIONS(3642), + [anon_sym_or] = ACTIONS(3642), + [anon_sym_PLUS_EQ] = ACTIONS(3644), + [anon_sym_DASH_EQ] = ACTIONS(3644), + [anon_sym_STAR_EQ] = ACTIONS(3644), + [anon_sym_SLASH_EQ] = ACTIONS(3644), + [anon_sym_PERCENT_EQ] = ACTIONS(3644), + [anon_sym_AMP_EQ] = ACTIONS(3644), + [anon_sym_CARET_EQ] = ACTIONS(3644), + [anon_sym_PIPE_EQ] = ACTIONS(3644), + [anon_sym_LT_LT_EQ] = ACTIONS(3644), + [anon_sym_GT_GT_EQ] = ACTIONS(3644), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3644), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3644), + [anon_sym_AMP_AMP] = ACTIONS(3644), + [anon_sym_PIPE_PIPE] = ACTIONS(3644), + [anon_sym_QMARK_QMARK] = ACTIONS(3642), + [anon_sym_from] = ACTIONS(3642), + [anon_sym_into] = ACTIONS(3642), + [anon_sym_join] = ACTIONS(3642), + [anon_sym_on] = ACTIONS(3642), + [anon_sym_equals] = ACTIONS(3642), + [anon_sym_let] = ACTIONS(3642), + [anon_sym_orderby] = ACTIONS(3642), + [anon_sym_ascending] = ACTIONS(3642), + [anon_sym_descending] = ACTIONS(3642), + [anon_sym_group] = ACTIONS(3642), + [anon_sym_by] = ACTIONS(3642), + [anon_sym_select] = ACTIONS(3642), + [anon_sym_as] = ACTIONS(3642), + [anon_sym_is] = ACTIONS(3642), + [anon_sym_DASH_GT] = ACTIONS(3644), + [anon_sym_with] = ACTIONS(3642), + [aux_sym_preproc_if_token3] = ACTIONS(3644), + [aux_sym_preproc_else_token1] = ACTIONS(3644), + [aux_sym_preproc_elif_token1] = ACTIONS(3644), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -397277,15 +397060,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2172] = { - [sym__name] = STATE(5302), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(4096), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_ref_type] = STATE(2317), - [sym__scoped_base_type] = STATE(2340), - [sym_identifier] = STATE(4373), - [sym__reserved_identifier] = STATE(2175), + [sym__name] = STATE(5818), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(4068), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_ref_type] = STATE(2331), + [sym__scoped_base_type] = STATE(2339), + [sym_identifier] = STATE(5738), + [sym__reserved_identifier] = STATE(2168), [sym_preproc_region] = STATE(2172), [sym_preproc_endregion] = STATE(2172), [sym_preproc_line] = STATE(2172), @@ -397295,85 +397078,83 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2172), [sym_preproc_define] = STATE(2172), [sym_preproc_undef] = STATE(2172), - [sym__identifier_token] = ACTIONS(3600), - [anon_sym_alias] = ACTIONS(3603), - [anon_sym_global] = ACTIONS(3603), - [anon_sym_EQ] = ACTIONS(3447), - [anon_sym_LBRACK] = ACTIONS(3445), - [anon_sym_COLON] = ACTIONS(3447), - [anon_sym_COMMA] = ACTIONS(3445), - [anon_sym_LPAREN] = ACTIONS(3445), - [anon_sym_RPAREN] = ACTIONS(3445), - [anon_sym_ref] = ACTIONS(3640), - [anon_sym_LBRACE] = ACTIONS(3445), - [anon_sym_file] = ACTIONS(3603), - [anon_sym_LT] = ACTIONS(3447), - [anon_sym_GT] = ACTIONS(3447), - [anon_sym_where] = ACTIONS(3603), - [anon_sym_QMARK] = ACTIONS(3447), - [anon_sym_notnull] = ACTIONS(3603), - [anon_sym_unmanaged] = ACTIONS(3603), - [anon_sym_BANG] = ACTIONS(3447), - [anon_sym_PLUS_PLUS] = ACTIONS(3445), - [anon_sym_DASH_DASH] = ACTIONS(3445), - [anon_sym_PLUS] = ACTIONS(3447), - [anon_sym_DASH] = ACTIONS(3447), - [anon_sym_STAR] = ACTIONS(3447), - [anon_sym_SLASH] = ACTIONS(3447), - [anon_sym_PERCENT] = ACTIONS(3447), - [anon_sym_CARET] = ACTIONS(3447), - [anon_sym_PIPE] = ACTIONS(3447), - [anon_sym_AMP] = ACTIONS(3447), - [anon_sym_LT_LT] = ACTIONS(3447), - [anon_sym_GT_GT] = ACTIONS(3447), - [anon_sym_GT_GT_GT] = ACTIONS(3447), - [anon_sym_EQ_EQ] = ACTIONS(3445), - [anon_sym_BANG_EQ] = ACTIONS(3445), - [anon_sym_GT_EQ] = ACTIONS(3445), - [anon_sym_LT_EQ] = ACTIONS(3445), - [anon_sym_DOT] = ACTIONS(3447), - [anon_sym_scoped] = ACTIONS(3603), - [anon_sym_EQ_GT] = ACTIONS(3445), - [anon_sym_COLON_COLON] = ACTIONS(3445), - [anon_sym_var] = ACTIONS(3603), - [anon_sym_yield] = ACTIONS(3603), - [anon_sym_switch] = ACTIONS(3447), - [anon_sym_when] = ACTIONS(3603), - [sym_discard] = ACTIONS(3447), - [anon_sym_DOT_DOT] = ACTIONS(3445), - [anon_sym_and] = ACTIONS(3447), - [anon_sym_or] = ACTIONS(3447), - [anon_sym_PLUS_EQ] = ACTIONS(3445), - [anon_sym_DASH_EQ] = ACTIONS(3445), - [anon_sym_STAR_EQ] = ACTIONS(3445), - [anon_sym_SLASH_EQ] = ACTIONS(3445), - [anon_sym_PERCENT_EQ] = ACTIONS(3445), - [anon_sym_AMP_EQ] = ACTIONS(3445), - [anon_sym_CARET_EQ] = ACTIONS(3445), - [anon_sym_PIPE_EQ] = ACTIONS(3445), - [anon_sym_LT_LT_EQ] = ACTIONS(3445), - [anon_sym_GT_GT_EQ] = ACTIONS(3445), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3445), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3445), - [anon_sym_AMP_AMP] = ACTIONS(3445), - [anon_sym_PIPE_PIPE] = ACTIONS(3445), - [anon_sym_QMARK_QMARK] = ACTIONS(3447), - [anon_sym_from] = ACTIONS(3603), - [anon_sym_into] = ACTIONS(3603), - [anon_sym_join] = ACTIONS(3603), - [anon_sym_on] = ACTIONS(3603), - [anon_sym_equals] = ACTIONS(3603), - [anon_sym_let] = ACTIONS(3603), - [anon_sym_orderby] = ACTIONS(3603), - [anon_sym_ascending] = ACTIONS(3603), - [anon_sym_descending] = ACTIONS(3603), - [anon_sym_group] = ACTIONS(3603), - [anon_sym_by] = ACTIONS(3603), - [anon_sym_select] = ACTIONS(3603), - [anon_sym_as] = ACTIONS(3447), - [anon_sym_is] = ACTIONS(3447), - [anon_sym_DASH_GT] = ACTIONS(3445), - [anon_sym_with] = ACTIONS(3447), + [sym__identifier_token] = ACTIONS(3584), + [anon_sym_alias] = ACTIONS(3587), + [anon_sym_global] = ACTIONS(3587), + [anon_sym_EQ] = ACTIONS(3431), + [anon_sym_LBRACK] = ACTIONS(3429), + [anon_sym_COLON] = ACTIONS(3431), + [anon_sym_LPAREN] = ACTIONS(3429), + [anon_sym_ref] = ACTIONS(3646), + [anon_sym_LBRACE] = ACTIONS(3429), + [anon_sym_file] = ACTIONS(3587), + [anon_sym_LT] = ACTIONS(3431), + [anon_sym_GT] = ACTIONS(3431), + [anon_sym_where] = ACTIONS(3587), + [anon_sym_QMARK] = ACTIONS(3431), + [anon_sym_notnull] = ACTIONS(3587), + [anon_sym_unmanaged] = ACTIONS(3587), + [anon_sym_BANG] = ACTIONS(3431), + [anon_sym_PLUS_PLUS] = ACTIONS(3429), + [anon_sym_DASH_DASH] = ACTIONS(3429), + [anon_sym_PLUS] = ACTIONS(3431), + [anon_sym_DASH] = ACTIONS(3431), + [anon_sym_STAR] = ACTIONS(3431), + [anon_sym_SLASH] = ACTIONS(3431), + [anon_sym_PERCENT] = ACTIONS(3431), + [anon_sym_CARET] = ACTIONS(3431), + [anon_sym_PIPE] = ACTIONS(3431), + [anon_sym_AMP] = ACTIONS(3431), + [anon_sym_LT_LT] = ACTIONS(3431), + [anon_sym_GT_GT] = ACTIONS(3431), + [anon_sym_GT_GT_GT] = ACTIONS(3431), + [anon_sym_EQ_EQ] = ACTIONS(3429), + [anon_sym_BANG_EQ] = ACTIONS(3429), + [anon_sym_GT_EQ] = ACTIONS(3429), + [anon_sym_LT_EQ] = ACTIONS(3429), + [anon_sym_DOT] = ACTIONS(3431), + [anon_sym_scoped] = ACTIONS(3587), + [anon_sym_EQ_GT] = ACTIONS(3429), + [anon_sym_COLON_COLON] = ACTIONS(3429), + [anon_sym_var] = ACTIONS(3587), + [anon_sym_yield] = ACTIONS(3587), + [anon_sym_switch] = ACTIONS(3431), + [anon_sym_when] = ACTIONS(3587), + [sym_discard] = ACTIONS(3431), + [anon_sym_DOT_DOT] = ACTIONS(3429), + [anon_sym_and] = ACTIONS(3431), + [anon_sym_or] = ACTIONS(3431), + [anon_sym_PLUS_EQ] = ACTIONS(3429), + [anon_sym_DASH_EQ] = ACTIONS(3429), + [anon_sym_STAR_EQ] = ACTIONS(3429), + [anon_sym_SLASH_EQ] = ACTIONS(3429), + [anon_sym_PERCENT_EQ] = ACTIONS(3429), + [anon_sym_AMP_EQ] = ACTIONS(3429), + [anon_sym_CARET_EQ] = ACTIONS(3429), + [anon_sym_PIPE_EQ] = ACTIONS(3429), + [anon_sym_LT_LT_EQ] = ACTIONS(3429), + [anon_sym_GT_GT_EQ] = ACTIONS(3429), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3429), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3429), + [anon_sym_AMP_AMP] = ACTIONS(3429), + [anon_sym_PIPE_PIPE] = ACTIONS(3429), + [anon_sym_QMARK_QMARK] = ACTIONS(3431), + [anon_sym_from] = ACTIONS(3587), + [anon_sym_into] = ACTIONS(3587), + [anon_sym_join] = ACTIONS(3587), + [anon_sym_on] = ACTIONS(3587), + [anon_sym_equals] = ACTIONS(3587), + [anon_sym_let] = ACTIONS(3587), + [anon_sym_orderby] = ACTIONS(3587), + [anon_sym_ascending] = ACTIONS(3587), + [anon_sym_descending] = ACTIONS(3587), + [anon_sym_group] = ACTIONS(3587), + [anon_sym_by] = ACTIONS(3587), + [anon_sym_select] = ACTIONS(3587), + [anon_sym_as] = ACTIONS(3431), + [anon_sym_is] = ACTIONS(3431), + [anon_sym_DASH_GT] = ACTIONS(3429), + [anon_sym_with] = ACTIONS(3431), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -397386,15 +397167,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2173] = { - [sym__name] = STATE(2799), - [sym_alias_qualified_name] = STATE(2764), - [sym__simple_name] = STATE(2764), - [sym_qualified_name] = STATE(2764), - [sym_generic_name] = STATE(2722), - [sym_ref_type] = STATE(2800), - [sym__scoped_base_type] = STATE(2801), - [sym_identifier] = STATE(2581), - [sym__reserved_identifier] = STATE(2627), + [sym_type_argument_list] = STATE(2171), [sym_preproc_region] = STATE(2173), [sym_preproc_endregion] = STATE(2173), [sym_preproc_line] = STATE(2173), @@ -397404,95 +397177,101 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2173), [sym_preproc_define] = STATE(2173), [sym_preproc_undef] = STATE(2173), - [sym__identifier_token] = ACTIONS(3642), - [anon_sym_alias] = ACTIONS(3645), - [anon_sym_global] = ACTIONS(3645), - [anon_sym_EQ] = ACTIONS(3447), - [anon_sym_LBRACK] = ACTIONS(3445), - [anon_sym_COLON] = ACTIONS(3447), - [anon_sym_COMMA] = ACTIONS(3445), - [anon_sym_LPAREN] = ACTIONS(3445), - [anon_sym_ref] = ACTIONS(3648), - [anon_sym_LBRACE] = ACTIONS(3445), - [anon_sym_file] = ACTIONS(3645), - [anon_sym_LT] = ACTIONS(3447), - [anon_sym_GT] = ACTIONS(3447), - [anon_sym_where] = ACTIONS(3645), - [anon_sym_QMARK] = ACTIONS(3447), - [anon_sym_notnull] = ACTIONS(3645), - [anon_sym_unmanaged] = ACTIONS(3645), - [anon_sym_BANG] = ACTIONS(3447), - [anon_sym_PLUS_PLUS] = ACTIONS(3445), - [anon_sym_DASH_DASH] = ACTIONS(3445), - [anon_sym_PLUS] = ACTIONS(3447), - [anon_sym_DASH] = ACTIONS(3447), - [anon_sym_STAR] = ACTIONS(3447), - [anon_sym_SLASH] = ACTIONS(3447), - [anon_sym_PERCENT] = ACTIONS(3447), - [anon_sym_CARET] = ACTIONS(3447), - [anon_sym_PIPE] = ACTIONS(3447), - [anon_sym_AMP] = ACTIONS(3447), - [anon_sym_LT_LT] = ACTIONS(3447), - [anon_sym_GT_GT] = ACTIONS(3447), - [anon_sym_GT_GT_GT] = ACTIONS(3447), - [anon_sym_EQ_EQ] = ACTIONS(3445), - [anon_sym_BANG_EQ] = ACTIONS(3445), - [anon_sym_GT_EQ] = ACTIONS(3445), - [anon_sym_LT_EQ] = ACTIONS(3445), - [anon_sym_DOT] = ACTIONS(3447), - [anon_sym_scoped] = ACTIONS(3645), - [anon_sym_EQ_GT] = ACTIONS(3445), - [anon_sym_COLON_COLON] = ACTIONS(3445), - [anon_sym_var] = ACTIONS(3645), - [anon_sym_yield] = ACTIONS(3645), - [anon_sym_switch] = ACTIONS(3447), - [anon_sym_when] = ACTIONS(3645), - [sym_discard] = ACTIONS(3447), - [anon_sym_DOT_DOT] = ACTIONS(3445), - [anon_sym_and] = ACTIONS(3447), - [anon_sym_or] = ACTIONS(3447), - [anon_sym_PLUS_EQ] = ACTIONS(3445), - [anon_sym_DASH_EQ] = ACTIONS(3445), - [anon_sym_STAR_EQ] = ACTIONS(3445), - [anon_sym_SLASH_EQ] = ACTIONS(3445), - [anon_sym_PERCENT_EQ] = ACTIONS(3445), - [anon_sym_AMP_EQ] = ACTIONS(3445), - [anon_sym_CARET_EQ] = ACTIONS(3445), - [anon_sym_PIPE_EQ] = ACTIONS(3445), - [anon_sym_LT_LT_EQ] = ACTIONS(3445), - [anon_sym_GT_GT_EQ] = ACTIONS(3445), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3445), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3445), - [anon_sym_AMP_AMP] = ACTIONS(3445), - [anon_sym_PIPE_PIPE] = ACTIONS(3445), - [anon_sym_QMARK_QMARK] = ACTIONS(3447), - [anon_sym_from] = ACTIONS(3645), - [anon_sym_into] = ACTIONS(3645), - [anon_sym_join] = ACTIONS(3645), - [anon_sym_on] = ACTIONS(3645), - [anon_sym_equals] = ACTIONS(3645), - [anon_sym_let] = ACTIONS(3645), - [anon_sym_orderby] = ACTIONS(3645), - [anon_sym_ascending] = ACTIONS(3645), - [anon_sym_descending] = ACTIONS(3645), - [anon_sym_group] = ACTIONS(3645), - [anon_sym_by] = ACTIONS(3645), - [anon_sym_select] = ACTIONS(3645), - [anon_sym_as] = ACTIONS(3447), - [anon_sym_is] = ACTIONS(3447), - [anon_sym_DASH_GT] = ACTIONS(3445), - [anon_sym_with] = ACTIONS(3447), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_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(3445), + [sym__identifier_token] = ACTIONS(3638), + [anon_sym_alias] = ACTIONS(3638), + [anon_sym_SEMI] = ACTIONS(3640), + [anon_sym_global] = ACTIONS(3638), + [anon_sym_EQ] = ACTIONS(3638), + [anon_sym_LBRACK] = ACTIONS(3640), + [anon_sym_COLON] = ACTIONS(3638), + [anon_sym_COMMA] = ACTIONS(3640), + [anon_sym_RBRACK] = ACTIONS(3640), + [anon_sym_LPAREN] = ACTIONS(3640), + [anon_sym_RPAREN] = ACTIONS(3640), + [anon_sym_LBRACE] = ACTIONS(3640), + [anon_sym_RBRACE] = ACTIONS(3640), + [anon_sym_file] = ACTIONS(3638), + [anon_sym_LT] = ACTIONS(3648), + [anon_sym_GT] = ACTIONS(3638), + [anon_sym_in] = ACTIONS(3638), + [anon_sym_where] = ACTIONS(3638), + [anon_sym_QMARK] = ACTIONS(3638), + [anon_sym_notnull] = ACTIONS(3638), + [anon_sym_unmanaged] = ACTIONS(3638), + [anon_sym_BANG] = ACTIONS(3638), + [anon_sym_PLUS_PLUS] = ACTIONS(3640), + [anon_sym_DASH_DASH] = ACTIONS(3640), + [anon_sym_PLUS] = ACTIONS(3638), + [anon_sym_DASH] = ACTIONS(3638), + [anon_sym_STAR] = ACTIONS(3638), + [anon_sym_SLASH] = ACTIONS(3638), + [anon_sym_PERCENT] = ACTIONS(3638), + [anon_sym_CARET] = ACTIONS(3638), + [anon_sym_PIPE] = ACTIONS(3638), + [anon_sym_AMP] = ACTIONS(3638), + [anon_sym_LT_LT] = ACTIONS(3638), + [anon_sym_GT_GT] = ACTIONS(3638), + [anon_sym_GT_GT_GT] = ACTIONS(3638), + [anon_sym_EQ_EQ] = ACTIONS(3640), + [anon_sym_BANG_EQ] = ACTIONS(3640), + [anon_sym_GT_EQ] = ACTIONS(3640), + [anon_sym_LT_EQ] = ACTIONS(3640), + [anon_sym_DOT] = ACTIONS(3638), + [anon_sym_scoped] = ACTIONS(3638), + [anon_sym_EQ_GT] = ACTIONS(3651), + [anon_sym_COLON_COLON] = ACTIONS(3653), + [anon_sym_var] = ACTIONS(3638), + [anon_sym_yield] = ACTIONS(3638), + [anon_sym_switch] = ACTIONS(3638), + [anon_sym_when] = ACTIONS(3638), + [sym_discard] = ACTIONS(3638), + [anon_sym_DOT_DOT] = ACTIONS(3640), + [anon_sym_and] = ACTIONS(3638), + [anon_sym_or] = ACTIONS(3638), + [anon_sym_PLUS_EQ] = ACTIONS(3640), + [anon_sym_DASH_EQ] = ACTIONS(3640), + [anon_sym_STAR_EQ] = ACTIONS(3640), + [anon_sym_SLASH_EQ] = ACTIONS(3640), + [anon_sym_PERCENT_EQ] = ACTIONS(3640), + [anon_sym_AMP_EQ] = ACTIONS(3640), + [anon_sym_CARET_EQ] = ACTIONS(3640), + [anon_sym_PIPE_EQ] = ACTIONS(3640), + [anon_sym_LT_LT_EQ] = ACTIONS(3640), + [anon_sym_GT_GT_EQ] = ACTIONS(3640), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3640), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3640), + [anon_sym_AMP_AMP] = ACTIONS(3640), + [anon_sym_PIPE_PIPE] = ACTIONS(3640), + [anon_sym_QMARK_QMARK] = ACTIONS(3638), + [anon_sym_from] = ACTIONS(3638), + [anon_sym_into] = ACTIONS(3638), + [anon_sym_join] = ACTIONS(3638), + [anon_sym_on] = ACTIONS(3638), + [anon_sym_equals] = ACTIONS(3638), + [anon_sym_let] = ACTIONS(3638), + [anon_sym_orderby] = ACTIONS(3638), + [anon_sym_ascending] = ACTIONS(3638), + [anon_sym_descending] = ACTIONS(3638), + [anon_sym_group] = ACTIONS(3638), + [anon_sym_by] = ACTIONS(3638), + [anon_sym_select] = ACTIONS(3638), + [anon_sym_as] = ACTIONS(3638), + [anon_sym_is] = ACTIONS(3638), + [anon_sym_DASH_GT] = ACTIONS(3640), + [anon_sym_with] = ACTIONS(3638), + [aux_sym_preproc_if_token3] = ACTIONS(3640), + [aux_sym_preproc_else_token1] = ACTIONS(3640), + [aux_sym_preproc_elif_token1] = ACTIONS(3640), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), }, [2174] = { [sym_preproc_region] = STATE(2174), @@ -397504,93 +397283,92 @@ 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(3447), - [anon_sym_alias] = ACTIONS(3447), - [anon_sym_SEMI] = ACTIONS(3445), - [anon_sym_global] = ACTIONS(3447), - [anon_sym_EQ] = ACTIONS(3447), - [anon_sym_LBRACK] = ACTIONS(3445), - [anon_sym_COLON] = ACTIONS(3447), - [anon_sym_COMMA] = ACTIONS(3445), - [anon_sym_RBRACK] = ACTIONS(3445), - [anon_sym_LPAREN] = ACTIONS(3445), - [anon_sym_RPAREN] = ACTIONS(3445), - [anon_sym_LBRACE] = ACTIONS(3445), - [anon_sym_RBRACE] = ACTIONS(3445), - [anon_sym_file] = ACTIONS(3447), - [anon_sym_LT] = ACTIONS(3447), - [anon_sym_GT] = ACTIONS(3447), - [anon_sym_in] = ACTIONS(3447), - [anon_sym_where] = ACTIONS(3447), - [anon_sym_QMARK] = ACTIONS(3447), - [anon_sym_notnull] = ACTIONS(3447), - [anon_sym_unmanaged] = ACTIONS(3447), - [anon_sym_operator] = ACTIONS(3447), - [anon_sym_BANG] = ACTIONS(3447), - [anon_sym_PLUS_PLUS] = ACTIONS(3445), - [anon_sym_DASH_DASH] = ACTIONS(3445), - [anon_sym_PLUS] = ACTIONS(3447), - [anon_sym_DASH] = ACTIONS(3447), - [anon_sym_STAR] = ACTIONS(3447), - [anon_sym_SLASH] = ACTIONS(3447), - [anon_sym_PERCENT] = ACTIONS(3447), - [anon_sym_CARET] = ACTIONS(3447), - [anon_sym_PIPE] = ACTIONS(3447), - [anon_sym_AMP] = ACTIONS(3447), - [anon_sym_LT_LT] = ACTIONS(3447), - [anon_sym_GT_GT] = ACTIONS(3447), - [anon_sym_GT_GT_GT] = ACTIONS(3447), - [anon_sym_EQ_EQ] = ACTIONS(3445), - [anon_sym_BANG_EQ] = ACTIONS(3445), - [anon_sym_GT_EQ] = ACTIONS(3445), - [anon_sym_LT_EQ] = ACTIONS(3445), - [anon_sym_this] = ACTIONS(3447), - [anon_sym_DOT] = ACTIONS(3447), - [anon_sym_scoped] = ACTIONS(3447), - [anon_sym_EQ_GT] = ACTIONS(3445), - [anon_sym_COLON_COLON] = ACTIONS(3445), - [anon_sym_var] = ACTIONS(3447), - [anon_sym_yield] = ACTIONS(3447), - [anon_sym_switch] = ACTIONS(3447), - [anon_sym_when] = ACTIONS(3447), - [sym_discard] = ACTIONS(3447), - [anon_sym_DOT_DOT] = ACTIONS(3445), - [anon_sym_and] = ACTIONS(3447), - [anon_sym_or] = ACTIONS(3447), - [anon_sym_PLUS_EQ] = ACTIONS(3445), - [anon_sym_DASH_EQ] = ACTIONS(3445), - [anon_sym_STAR_EQ] = ACTIONS(3445), - [anon_sym_SLASH_EQ] = ACTIONS(3445), - [anon_sym_PERCENT_EQ] = ACTIONS(3445), - [anon_sym_AMP_EQ] = ACTIONS(3445), - [anon_sym_CARET_EQ] = ACTIONS(3445), - [anon_sym_PIPE_EQ] = ACTIONS(3445), - [anon_sym_LT_LT_EQ] = ACTIONS(3445), - [anon_sym_GT_GT_EQ] = ACTIONS(3445), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3445), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3445), - [anon_sym_AMP_AMP] = ACTIONS(3445), - [anon_sym_PIPE_PIPE] = ACTIONS(3445), - [anon_sym_QMARK_QMARK] = ACTIONS(3447), - [anon_sym_from] = ACTIONS(3447), - [anon_sym_into] = ACTIONS(3447), - [anon_sym_join] = ACTIONS(3447), - [anon_sym_on] = ACTIONS(3447), - [anon_sym_equals] = ACTIONS(3447), - [anon_sym_let] = ACTIONS(3447), - [anon_sym_orderby] = ACTIONS(3447), - [anon_sym_ascending] = ACTIONS(3447), - [anon_sym_descending] = ACTIONS(3447), - [anon_sym_group] = ACTIONS(3447), - [anon_sym_by] = ACTIONS(3447), - [anon_sym_select] = ACTIONS(3447), - [anon_sym_as] = ACTIONS(3447), - [anon_sym_is] = ACTIONS(3447), - [anon_sym_DASH_GT] = ACTIONS(3445), - [anon_sym_with] = ACTIONS(3447), - [aux_sym_preproc_if_token3] = ACTIONS(3445), - [aux_sym_preproc_else_token1] = ACTIONS(3445), - [aux_sym_preproc_elif_token1] = ACTIONS(3445), + [sym__identifier_token] = ACTIONS(3655), + [anon_sym_alias] = ACTIONS(3655), + [anon_sym_SEMI] = ACTIONS(3657), + [anon_sym_global] = ACTIONS(3655), + [anon_sym_EQ] = ACTIONS(3655), + [anon_sym_LBRACK] = ACTIONS(3657), + [anon_sym_COLON] = ACTIONS(3657), + [anon_sym_COMMA] = ACTIONS(3657), + [anon_sym_RBRACK] = ACTIONS(3657), + [anon_sym_LPAREN] = ACTIONS(3657), + [anon_sym_RPAREN] = ACTIONS(3657), + [anon_sym_LBRACE] = ACTIONS(3657), + [anon_sym_RBRACE] = ACTIONS(3657), + [anon_sym_file] = ACTIONS(3655), + [anon_sym_LT] = ACTIONS(3655), + [anon_sym_GT] = ACTIONS(3655), + [anon_sym_in] = ACTIONS(3655), + [anon_sym_where] = ACTIONS(3655), + [anon_sym_QMARK] = ACTIONS(3655), + [anon_sym_notnull] = ACTIONS(3655), + [anon_sym_unmanaged] = ACTIONS(3655), + [anon_sym_operator] = ACTIONS(3655), + [anon_sym_BANG] = ACTIONS(3655), + [anon_sym_PLUS_PLUS] = ACTIONS(3657), + [anon_sym_DASH_DASH] = ACTIONS(3657), + [anon_sym_PLUS] = ACTIONS(3655), + [anon_sym_DASH] = ACTIONS(3655), + [anon_sym_STAR] = ACTIONS(3655), + [anon_sym_SLASH] = ACTIONS(3655), + [anon_sym_PERCENT] = ACTIONS(3655), + [anon_sym_CARET] = ACTIONS(3655), + [anon_sym_PIPE] = ACTIONS(3655), + [anon_sym_AMP] = ACTIONS(3655), + [anon_sym_LT_LT] = ACTIONS(3655), + [anon_sym_GT_GT] = ACTIONS(3655), + [anon_sym_GT_GT_GT] = ACTIONS(3655), + [anon_sym_EQ_EQ] = ACTIONS(3657), + [anon_sym_BANG_EQ] = ACTIONS(3657), + [anon_sym_GT_EQ] = ACTIONS(3657), + [anon_sym_LT_EQ] = ACTIONS(3657), + [anon_sym_this] = ACTIONS(3655), + [anon_sym_DOT] = ACTIONS(3655), + [anon_sym_scoped] = ACTIONS(3655), + [anon_sym_EQ_GT] = ACTIONS(3657), + [anon_sym_var] = ACTIONS(3655), + [anon_sym_yield] = ACTIONS(3655), + [anon_sym_switch] = ACTIONS(3655), + [anon_sym_when] = ACTIONS(3655), + [sym_discard] = ACTIONS(3655), + [anon_sym_DOT_DOT] = ACTIONS(3657), + [anon_sym_and] = ACTIONS(3655), + [anon_sym_or] = ACTIONS(3655), + [anon_sym_PLUS_EQ] = ACTIONS(3657), + [anon_sym_DASH_EQ] = ACTIONS(3657), + [anon_sym_STAR_EQ] = ACTIONS(3657), + [anon_sym_SLASH_EQ] = ACTIONS(3657), + [anon_sym_PERCENT_EQ] = ACTIONS(3657), + [anon_sym_AMP_EQ] = ACTIONS(3657), + [anon_sym_CARET_EQ] = ACTIONS(3657), + [anon_sym_PIPE_EQ] = ACTIONS(3657), + [anon_sym_LT_LT_EQ] = ACTIONS(3657), + [anon_sym_GT_GT_EQ] = ACTIONS(3657), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3657), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3657), + [anon_sym_AMP_AMP] = ACTIONS(3657), + [anon_sym_PIPE_PIPE] = ACTIONS(3657), + [anon_sym_QMARK_QMARK] = ACTIONS(3655), + [anon_sym_from] = ACTIONS(3655), + [anon_sym_into] = ACTIONS(3655), + [anon_sym_join] = ACTIONS(3655), + [anon_sym_on] = ACTIONS(3655), + [anon_sym_equals] = ACTIONS(3655), + [anon_sym_let] = ACTIONS(3655), + [anon_sym_orderby] = ACTIONS(3655), + [anon_sym_ascending] = ACTIONS(3655), + [anon_sym_descending] = ACTIONS(3655), + [anon_sym_group] = ACTIONS(3655), + [anon_sym_by] = ACTIONS(3655), + [anon_sym_select] = ACTIONS(3655), + [anon_sym_as] = ACTIONS(3655), + [anon_sym_is] = ACTIONS(3655), + [anon_sym_DASH_GT] = ACTIONS(3657), + [anon_sym_with] = ACTIONS(3655), + [aux_sym_preproc_if_token3] = ACTIONS(3657), + [aux_sym_preproc_else_token1] = ACTIONS(3657), + [aux_sym_preproc_elif_token1] = ACTIONS(3657), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -397612,93 +397390,92 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2175), [sym_preproc_define] = STATE(2175), [sym_preproc_undef] = STATE(2175), - [sym__identifier_token] = ACTIONS(3650), - [anon_sym_alias] = ACTIONS(3650), - [anon_sym_SEMI] = ACTIONS(3652), - [anon_sym_global] = ACTIONS(3650), - [anon_sym_EQ] = ACTIONS(3650), - [anon_sym_LBRACK] = ACTIONS(3652), - [anon_sym_COLON] = ACTIONS(3650), - [anon_sym_COMMA] = ACTIONS(3652), - [anon_sym_RBRACK] = ACTIONS(3652), - [anon_sym_LPAREN] = ACTIONS(3652), - [anon_sym_RPAREN] = ACTIONS(3652), - [anon_sym_LBRACE] = ACTIONS(3652), - [anon_sym_RBRACE] = ACTIONS(3652), - [anon_sym_file] = ACTIONS(3650), - [anon_sym_LT] = ACTIONS(3650), - [anon_sym_GT] = ACTIONS(3650), - [anon_sym_in] = ACTIONS(3650), - [anon_sym_where] = ACTIONS(3650), - [anon_sym_QMARK] = ACTIONS(3650), - [anon_sym_notnull] = ACTIONS(3650), - [anon_sym_unmanaged] = ACTIONS(3650), - [anon_sym_operator] = ACTIONS(3650), - [anon_sym_BANG] = ACTIONS(3650), - [anon_sym_PLUS_PLUS] = ACTIONS(3652), - [anon_sym_DASH_DASH] = ACTIONS(3652), - [anon_sym_PLUS] = ACTIONS(3650), - [anon_sym_DASH] = ACTIONS(3650), - [anon_sym_STAR] = ACTIONS(3650), - [anon_sym_SLASH] = ACTIONS(3650), - [anon_sym_PERCENT] = ACTIONS(3650), - [anon_sym_CARET] = ACTIONS(3650), - [anon_sym_PIPE] = ACTIONS(3650), - [anon_sym_AMP] = ACTIONS(3650), - [anon_sym_LT_LT] = ACTIONS(3650), - [anon_sym_GT_GT] = ACTIONS(3650), - [anon_sym_GT_GT_GT] = ACTIONS(3650), - [anon_sym_EQ_EQ] = ACTIONS(3652), - [anon_sym_BANG_EQ] = ACTIONS(3652), - [anon_sym_GT_EQ] = ACTIONS(3652), - [anon_sym_LT_EQ] = ACTIONS(3652), - [anon_sym_this] = ACTIONS(3650), - [anon_sym_DOT] = ACTIONS(3650), - [anon_sym_scoped] = ACTIONS(3650), - [anon_sym_EQ_GT] = ACTIONS(3652), - [anon_sym_COLON_COLON] = ACTIONS(3652), - [anon_sym_var] = ACTIONS(3650), - [anon_sym_yield] = ACTIONS(3650), - [anon_sym_switch] = ACTIONS(3650), - [anon_sym_when] = ACTIONS(3650), - [sym_discard] = ACTIONS(3650), - [anon_sym_DOT_DOT] = ACTIONS(3652), - [anon_sym_and] = ACTIONS(3650), - [anon_sym_or] = ACTIONS(3650), - [anon_sym_PLUS_EQ] = ACTIONS(3652), - [anon_sym_DASH_EQ] = ACTIONS(3652), - [anon_sym_STAR_EQ] = ACTIONS(3652), - [anon_sym_SLASH_EQ] = ACTIONS(3652), - [anon_sym_PERCENT_EQ] = ACTIONS(3652), - [anon_sym_AMP_EQ] = ACTIONS(3652), - [anon_sym_CARET_EQ] = ACTIONS(3652), - [anon_sym_PIPE_EQ] = ACTIONS(3652), - [anon_sym_LT_LT_EQ] = ACTIONS(3652), - [anon_sym_GT_GT_EQ] = ACTIONS(3652), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3652), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3652), - [anon_sym_AMP_AMP] = ACTIONS(3652), - [anon_sym_PIPE_PIPE] = ACTIONS(3652), - [anon_sym_QMARK_QMARK] = ACTIONS(3650), - [anon_sym_from] = ACTIONS(3650), - [anon_sym_into] = ACTIONS(3650), - [anon_sym_join] = ACTIONS(3650), - [anon_sym_on] = ACTIONS(3650), - [anon_sym_equals] = ACTIONS(3650), - [anon_sym_let] = ACTIONS(3650), - [anon_sym_orderby] = ACTIONS(3650), - [anon_sym_ascending] = ACTIONS(3650), - [anon_sym_descending] = ACTIONS(3650), - [anon_sym_group] = ACTIONS(3650), - [anon_sym_by] = ACTIONS(3650), - [anon_sym_select] = ACTIONS(3650), - [anon_sym_as] = ACTIONS(3650), - [anon_sym_is] = ACTIONS(3650), - [anon_sym_DASH_GT] = ACTIONS(3652), - [anon_sym_with] = ACTIONS(3650), - [aux_sym_preproc_if_token3] = ACTIONS(3652), - [aux_sym_preproc_else_token1] = ACTIONS(3652), - [aux_sym_preproc_elif_token1] = ACTIONS(3652), + [sym__identifier_token] = ACTIONS(3659), + [anon_sym_alias] = ACTIONS(3659), + [anon_sym_SEMI] = ACTIONS(3661), + [anon_sym_global] = ACTIONS(3659), + [anon_sym_EQ] = ACTIONS(3659), + [anon_sym_LBRACK] = ACTIONS(3661), + [anon_sym_COLON] = ACTIONS(3661), + [anon_sym_COMMA] = ACTIONS(3661), + [anon_sym_RBRACK] = ACTIONS(3661), + [anon_sym_LPAREN] = ACTIONS(3661), + [anon_sym_RPAREN] = ACTIONS(3661), + [anon_sym_LBRACE] = ACTIONS(3661), + [anon_sym_RBRACE] = ACTIONS(3661), + [anon_sym_file] = ACTIONS(3659), + [anon_sym_LT] = ACTIONS(3659), + [anon_sym_GT] = ACTIONS(3659), + [anon_sym_in] = ACTIONS(3659), + [anon_sym_where] = ACTIONS(3659), + [anon_sym_QMARK] = ACTIONS(3659), + [anon_sym_notnull] = ACTIONS(3659), + [anon_sym_unmanaged] = ACTIONS(3659), + [anon_sym_operator] = ACTIONS(3659), + [anon_sym_BANG] = ACTIONS(3659), + [anon_sym_PLUS_PLUS] = ACTIONS(3661), + [anon_sym_DASH_DASH] = ACTIONS(3661), + [anon_sym_PLUS] = ACTIONS(3659), + [anon_sym_DASH] = ACTIONS(3659), + [anon_sym_STAR] = ACTIONS(3659), + [anon_sym_SLASH] = ACTIONS(3659), + [anon_sym_PERCENT] = ACTIONS(3659), + [anon_sym_CARET] = ACTIONS(3659), + [anon_sym_PIPE] = ACTIONS(3659), + [anon_sym_AMP] = ACTIONS(3659), + [anon_sym_LT_LT] = ACTIONS(3659), + [anon_sym_GT_GT] = ACTIONS(3659), + [anon_sym_GT_GT_GT] = ACTIONS(3659), + [anon_sym_EQ_EQ] = ACTIONS(3661), + [anon_sym_BANG_EQ] = ACTIONS(3661), + [anon_sym_GT_EQ] = ACTIONS(3661), + [anon_sym_LT_EQ] = ACTIONS(3661), + [anon_sym_this] = ACTIONS(3659), + [anon_sym_DOT] = ACTIONS(3659), + [anon_sym_scoped] = ACTIONS(3659), + [anon_sym_EQ_GT] = ACTIONS(3661), + [anon_sym_var] = ACTIONS(3659), + [anon_sym_yield] = ACTIONS(3659), + [anon_sym_switch] = ACTIONS(3659), + [anon_sym_when] = ACTIONS(3659), + [sym_discard] = ACTIONS(3659), + [anon_sym_DOT_DOT] = ACTIONS(3661), + [anon_sym_and] = ACTIONS(3659), + [anon_sym_or] = ACTIONS(3659), + [anon_sym_PLUS_EQ] = ACTIONS(3661), + [anon_sym_DASH_EQ] = ACTIONS(3661), + [anon_sym_STAR_EQ] = ACTIONS(3661), + [anon_sym_SLASH_EQ] = ACTIONS(3661), + [anon_sym_PERCENT_EQ] = ACTIONS(3661), + [anon_sym_AMP_EQ] = ACTIONS(3661), + [anon_sym_CARET_EQ] = ACTIONS(3661), + [anon_sym_PIPE_EQ] = ACTIONS(3661), + [anon_sym_LT_LT_EQ] = ACTIONS(3661), + [anon_sym_GT_GT_EQ] = ACTIONS(3661), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3661), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3661), + [anon_sym_AMP_AMP] = ACTIONS(3661), + [anon_sym_PIPE_PIPE] = ACTIONS(3661), + [anon_sym_QMARK_QMARK] = ACTIONS(3659), + [anon_sym_from] = ACTIONS(3659), + [anon_sym_into] = ACTIONS(3659), + [anon_sym_join] = ACTIONS(3659), + [anon_sym_on] = ACTIONS(3659), + [anon_sym_equals] = ACTIONS(3659), + [anon_sym_let] = ACTIONS(3659), + [anon_sym_orderby] = ACTIONS(3659), + [anon_sym_ascending] = ACTIONS(3659), + [anon_sym_descending] = ACTIONS(3659), + [anon_sym_group] = ACTIONS(3659), + [anon_sym_by] = ACTIONS(3659), + [anon_sym_select] = ACTIONS(3659), + [anon_sym_as] = ACTIONS(3659), + [anon_sym_is] = ACTIONS(3659), + [anon_sym_DASH_GT] = ACTIONS(3661), + [anon_sym_with] = ACTIONS(3659), + [aux_sym_preproc_if_token3] = ACTIONS(3661), + [aux_sym_preproc_else_token1] = ACTIONS(3661), + [aux_sym_preproc_elif_token1] = ACTIONS(3661), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -397711,15 +397488,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2176] = { - [sym__name] = STATE(5302), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(4096), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_ref_type] = STATE(2317), - [sym__scoped_base_type] = STATE(2340), - [sym_identifier] = STATE(4373), - [sym__reserved_identifier] = STATE(2175), [sym_preproc_region] = STATE(2176), [sym_preproc_endregion] = STATE(2176), [sym_preproc_line] = STATE(2176), @@ -397729,82 +397497,92 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2176), [sym_preproc_define] = STATE(2176), [sym_preproc_undef] = STATE(2176), - [sym__identifier_token] = ACTIONS(3600), - [anon_sym_alias] = ACTIONS(3603), - [anon_sym_global] = ACTIONS(3603), - [anon_sym_EQ] = ACTIONS(3447), - [anon_sym_LBRACK] = ACTIONS(3445), - [anon_sym_COLON] = ACTIONS(3447), - [anon_sym_COMMA] = ACTIONS(3445), - [anon_sym_LPAREN] = ACTIONS(3445), - [anon_sym_ref] = ACTIONS(3452), - [anon_sym_file] = ACTIONS(3603), - [anon_sym_LT] = ACTIONS(3447), - [anon_sym_GT] = ACTIONS(3447), - [anon_sym_where] = ACTIONS(3603), - [anon_sym_QMARK] = ACTIONS(3447), - [anon_sym_notnull] = ACTIONS(3603), - [anon_sym_unmanaged] = ACTIONS(3603), - [anon_sym_BANG] = ACTIONS(3447), - [anon_sym_PLUS_PLUS] = ACTIONS(3445), - [anon_sym_DASH_DASH] = ACTIONS(3445), - [anon_sym_PLUS] = ACTIONS(3447), - [anon_sym_DASH] = ACTIONS(3447), - [anon_sym_STAR] = ACTIONS(3447), - [anon_sym_SLASH] = ACTIONS(3447), - [anon_sym_PERCENT] = ACTIONS(3447), - [anon_sym_CARET] = ACTIONS(3447), - [anon_sym_PIPE] = ACTIONS(3447), - [anon_sym_AMP] = ACTIONS(3447), - [anon_sym_LT_LT] = ACTIONS(3447), - [anon_sym_GT_GT] = ACTIONS(3447), - [anon_sym_GT_GT_GT] = ACTIONS(3447), - [anon_sym_EQ_EQ] = ACTIONS(3445), - [anon_sym_BANG_EQ] = ACTIONS(3445), - [anon_sym_GT_EQ] = ACTIONS(3445), - [anon_sym_LT_EQ] = ACTIONS(3445), - [anon_sym_DOT] = ACTIONS(3447), - [anon_sym_scoped] = ACTIONS(3603), - [anon_sym_EQ_GT] = ACTIONS(3445), - [anon_sym_COLON_COLON] = ACTIONS(3445), - [anon_sym_var] = ACTIONS(3603), - [anon_sym_yield] = ACTIONS(3603), - [anon_sym_switch] = ACTIONS(3447), - [anon_sym_when] = ACTIONS(3603), - [anon_sym_DOT_DOT] = ACTIONS(3445), - [anon_sym_and] = ACTIONS(3447), - [anon_sym_or] = ACTIONS(3447), - [anon_sym_PLUS_EQ] = ACTIONS(3445), - [anon_sym_DASH_EQ] = ACTIONS(3445), - [anon_sym_STAR_EQ] = ACTIONS(3445), - [anon_sym_SLASH_EQ] = ACTIONS(3445), - [anon_sym_PERCENT_EQ] = ACTIONS(3445), - [anon_sym_AMP_EQ] = ACTIONS(3445), - [anon_sym_CARET_EQ] = ACTIONS(3445), - [anon_sym_PIPE_EQ] = ACTIONS(3445), - [anon_sym_LT_LT_EQ] = ACTIONS(3445), - [anon_sym_GT_GT_EQ] = ACTIONS(3445), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3445), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3445), - [anon_sym_AMP_AMP] = ACTIONS(3445), - [anon_sym_PIPE_PIPE] = ACTIONS(3445), - [anon_sym_QMARK_QMARK] = ACTIONS(3447), - [anon_sym_from] = ACTIONS(3603), - [anon_sym_into] = ACTIONS(3603), - [anon_sym_join] = ACTIONS(3603), - [anon_sym_on] = ACTIONS(3603), - [anon_sym_equals] = ACTIONS(3603), - [anon_sym_let] = ACTIONS(3603), - [anon_sym_orderby] = ACTIONS(3603), - [anon_sym_ascending] = ACTIONS(3603), - [anon_sym_descending] = ACTIONS(3603), - [anon_sym_group] = ACTIONS(3603), - [anon_sym_by] = ACTIONS(3603), - [anon_sym_select] = ACTIONS(3603), - [anon_sym_as] = ACTIONS(3447), - [anon_sym_is] = ACTIONS(3447), - [anon_sym_DASH_GT] = ACTIONS(3445), - [anon_sym_with] = ACTIONS(3447), + [sym__identifier_token] = ACTIONS(3663), + [anon_sym_alias] = ACTIONS(3663), + [anon_sym_SEMI] = ACTIONS(3665), + [anon_sym_global] = ACTIONS(3663), + [anon_sym_EQ] = ACTIONS(3663), + [anon_sym_LBRACK] = ACTIONS(3665), + [anon_sym_COLON] = ACTIONS(3665), + [anon_sym_COMMA] = ACTIONS(3665), + [anon_sym_RBRACK] = ACTIONS(3665), + [anon_sym_LPAREN] = ACTIONS(3665), + [anon_sym_RPAREN] = ACTIONS(3665), + [anon_sym_LBRACE] = ACTIONS(3665), + [anon_sym_RBRACE] = ACTIONS(3665), + [anon_sym_file] = ACTIONS(3663), + [anon_sym_LT] = ACTIONS(3663), + [anon_sym_GT] = ACTIONS(3663), + [anon_sym_in] = ACTIONS(3663), + [anon_sym_where] = ACTIONS(3663), + [anon_sym_QMARK] = ACTIONS(3663), + [anon_sym_notnull] = ACTIONS(3663), + [anon_sym_unmanaged] = ACTIONS(3663), + [anon_sym_operator] = ACTIONS(3663), + [anon_sym_BANG] = ACTIONS(3663), + [anon_sym_PLUS_PLUS] = ACTIONS(3665), + [anon_sym_DASH_DASH] = ACTIONS(3665), + [anon_sym_PLUS] = ACTIONS(3663), + [anon_sym_DASH] = ACTIONS(3663), + [anon_sym_STAR] = ACTIONS(3663), + [anon_sym_SLASH] = ACTIONS(3663), + [anon_sym_PERCENT] = ACTIONS(3663), + [anon_sym_CARET] = ACTIONS(3663), + [anon_sym_PIPE] = ACTIONS(3663), + [anon_sym_AMP] = ACTIONS(3663), + [anon_sym_LT_LT] = ACTIONS(3663), + [anon_sym_GT_GT] = ACTIONS(3663), + [anon_sym_GT_GT_GT] = ACTIONS(3663), + [anon_sym_EQ_EQ] = ACTIONS(3665), + [anon_sym_BANG_EQ] = ACTIONS(3665), + [anon_sym_GT_EQ] = ACTIONS(3665), + [anon_sym_LT_EQ] = ACTIONS(3665), + [anon_sym_this] = ACTIONS(3663), + [anon_sym_DOT] = ACTIONS(3663), + [anon_sym_scoped] = ACTIONS(3663), + [anon_sym_EQ_GT] = ACTIONS(3665), + [anon_sym_var] = ACTIONS(3663), + [anon_sym_yield] = ACTIONS(3663), + [anon_sym_switch] = ACTIONS(3663), + [anon_sym_when] = ACTIONS(3663), + [sym_discard] = ACTIONS(3663), + [anon_sym_DOT_DOT] = ACTIONS(3665), + [anon_sym_and] = ACTIONS(3663), + [anon_sym_or] = ACTIONS(3663), + [anon_sym_PLUS_EQ] = ACTIONS(3665), + [anon_sym_DASH_EQ] = ACTIONS(3665), + [anon_sym_STAR_EQ] = ACTIONS(3665), + [anon_sym_SLASH_EQ] = ACTIONS(3665), + [anon_sym_PERCENT_EQ] = ACTIONS(3665), + [anon_sym_AMP_EQ] = ACTIONS(3665), + [anon_sym_CARET_EQ] = ACTIONS(3665), + [anon_sym_PIPE_EQ] = ACTIONS(3665), + [anon_sym_LT_LT_EQ] = ACTIONS(3665), + [anon_sym_GT_GT_EQ] = ACTIONS(3665), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3665), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3665), + [anon_sym_AMP_AMP] = ACTIONS(3665), + [anon_sym_PIPE_PIPE] = ACTIONS(3665), + [anon_sym_QMARK_QMARK] = ACTIONS(3663), + [anon_sym_from] = ACTIONS(3663), + [anon_sym_into] = ACTIONS(3663), + [anon_sym_join] = ACTIONS(3663), + [anon_sym_on] = ACTIONS(3663), + [anon_sym_equals] = ACTIONS(3663), + [anon_sym_let] = ACTIONS(3663), + [anon_sym_orderby] = ACTIONS(3663), + [anon_sym_ascending] = ACTIONS(3663), + [anon_sym_descending] = ACTIONS(3663), + [anon_sym_group] = ACTIONS(3663), + [anon_sym_by] = ACTIONS(3663), + [anon_sym_select] = ACTIONS(3663), + [anon_sym_as] = ACTIONS(3663), + [anon_sym_is] = ACTIONS(3663), + [anon_sym_DASH_GT] = ACTIONS(3665), + [anon_sym_with] = ACTIONS(3663), + [aux_sym_preproc_if_token3] = ACTIONS(3665), + [aux_sym_preproc_else_token1] = ACTIONS(3665), + [aux_sym_preproc_elif_token1] = ACTIONS(3665), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -397815,9 +397593,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(3445), }, [2177] = { + [sym__name] = STATE(5130), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(4068), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_ref_type] = STATE(2331), + [sym__scoped_base_type] = STATE(2339), + [sym_identifier] = STATE(4370), + [sym__reserved_identifier] = STATE(2168), [sym_preproc_region] = STATE(2177), [sym_preproc_endregion] = STATE(2177), [sym_preproc_line] = STATE(2177), @@ -397827,92 +397613,82 @@ 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(3654), - [anon_sym_alias] = ACTIONS(3654), - [anon_sym_SEMI] = ACTIONS(3656), - [anon_sym_global] = ACTIONS(3654), - [anon_sym_EQ] = ACTIONS(3654), - [anon_sym_LBRACK] = ACTIONS(3656), - [anon_sym_COLON] = ACTIONS(3656), - [anon_sym_COMMA] = ACTIONS(3656), - [anon_sym_RBRACK] = ACTIONS(3656), - [anon_sym_LPAREN] = ACTIONS(3656), - [anon_sym_RPAREN] = ACTIONS(3656), - [anon_sym_LBRACE] = ACTIONS(3656), - [anon_sym_RBRACE] = ACTIONS(3656), - [anon_sym_file] = ACTIONS(3654), - [anon_sym_LT] = ACTIONS(3654), - [anon_sym_GT] = ACTIONS(3654), - [anon_sym_in] = ACTIONS(3654), - [anon_sym_where] = ACTIONS(3654), - [anon_sym_QMARK] = ACTIONS(3654), - [anon_sym_notnull] = ACTIONS(3654), - [anon_sym_unmanaged] = ACTIONS(3654), - [anon_sym_operator] = ACTIONS(3654), - [anon_sym_BANG] = ACTIONS(3654), - [anon_sym_PLUS_PLUS] = ACTIONS(3656), - [anon_sym_DASH_DASH] = ACTIONS(3656), - [anon_sym_PLUS] = ACTIONS(3654), - [anon_sym_DASH] = ACTIONS(3654), - [anon_sym_STAR] = ACTIONS(3654), - [anon_sym_SLASH] = ACTIONS(3654), - [anon_sym_PERCENT] = ACTIONS(3654), - [anon_sym_CARET] = ACTIONS(3654), - [anon_sym_PIPE] = ACTIONS(3654), - [anon_sym_AMP] = ACTIONS(3654), - [anon_sym_LT_LT] = ACTIONS(3654), - [anon_sym_GT_GT] = ACTIONS(3654), - [anon_sym_GT_GT_GT] = ACTIONS(3654), - [anon_sym_EQ_EQ] = ACTIONS(3656), - [anon_sym_BANG_EQ] = ACTIONS(3656), - [anon_sym_GT_EQ] = ACTIONS(3656), - [anon_sym_LT_EQ] = ACTIONS(3656), - [anon_sym_this] = ACTIONS(3654), - [anon_sym_DOT] = ACTIONS(3654), - [anon_sym_scoped] = ACTIONS(3654), - [anon_sym_EQ_GT] = ACTIONS(3656), - [anon_sym_var] = ACTIONS(3654), - [anon_sym_yield] = ACTIONS(3654), - [anon_sym_switch] = ACTIONS(3654), - [anon_sym_when] = ACTIONS(3654), - [sym_discard] = ACTIONS(3654), - [anon_sym_DOT_DOT] = ACTIONS(3656), - [anon_sym_and] = ACTIONS(3654), - [anon_sym_or] = ACTIONS(3654), - [anon_sym_PLUS_EQ] = ACTIONS(3656), - [anon_sym_DASH_EQ] = ACTIONS(3656), - [anon_sym_STAR_EQ] = ACTIONS(3656), - [anon_sym_SLASH_EQ] = ACTIONS(3656), - [anon_sym_PERCENT_EQ] = ACTIONS(3656), - [anon_sym_AMP_EQ] = ACTIONS(3656), - [anon_sym_CARET_EQ] = ACTIONS(3656), - [anon_sym_PIPE_EQ] = ACTIONS(3656), - [anon_sym_LT_LT_EQ] = ACTIONS(3656), - [anon_sym_GT_GT_EQ] = ACTIONS(3656), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3656), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3656), - [anon_sym_AMP_AMP] = ACTIONS(3656), - [anon_sym_PIPE_PIPE] = ACTIONS(3656), - [anon_sym_QMARK_QMARK] = ACTIONS(3654), - [anon_sym_from] = ACTIONS(3654), - [anon_sym_into] = ACTIONS(3654), - [anon_sym_join] = ACTIONS(3654), - [anon_sym_on] = ACTIONS(3654), - [anon_sym_equals] = ACTIONS(3654), - [anon_sym_let] = ACTIONS(3654), - [anon_sym_orderby] = ACTIONS(3654), - [anon_sym_ascending] = ACTIONS(3654), - [anon_sym_descending] = ACTIONS(3654), - [anon_sym_group] = ACTIONS(3654), - [anon_sym_by] = ACTIONS(3654), - [anon_sym_select] = ACTIONS(3654), - [anon_sym_as] = ACTIONS(3654), - [anon_sym_is] = ACTIONS(3654), - [anon_sym_DASH_GT] = ACTIONS(3656), - [anon_sym_with] = ACTIONS(3654), - [aux_sym_preproc_if_token3] = ACTIONS(3656), - [aux_sym_preproc_else_token1] = ACTIONS(3656), - [aux_sym_preproc_elif_token1] = ACTIONS(3656), + [sym__identifier_token] = ACTIONS(3584), + [anon_sym_alias] = ACTIONS(3587), + [anon_sym_global] = ACTIONS(3587), + [anon_sym_EQ] = ACTIONS(3431), + [anon_sym_LBRACK] = ACTIONS(3429), + [anon_sym_COLON] = ACTIONS(3431), + [anon_sym_COMMA] = ACTIONS(3429), + [anon_sym_LPAREN] = ACTIONS(3429), + [anon_sym_ref] = ACTIONS(3436), + [anon_sym_file] = ACTIONS(3587), + [anon_sym_LT] = ACTIONS(3431), + [anon_sym_GT] = ACTIONS(3431), + [anon_sym_where] = ACTIONS(3587), + [anon_sym_QMARK] = ACTIONS(3431), + [anon_sym_notnull] = ACTIONS(3587), + [anon_sym_unmanaged] = ACTIONS(3587), + [anon_sym_BANG] = ACTIONS(3431), + [anon_sym_PLUS_PLUS] = ACTIONS(3429), + [anon_sym_DASH_DASH] = ACTIONS(3429), + [anon_sym_PLUS] = ACTIONS(3431), + [anon_sym_DASH] = ACTIONS(3431), + [anon_sym_STAR] = ACTIONS(3431), + [anon_sym_SLASH] = ACTIONS(3431), + [anon_sym_PERCENT] = ACTIONS(3431), + [anon_sym_CARET] = ACTIONS(3431), + [anon_sym_PIPE] = ACTIONS(3431), + [anon_sym_AMP] = ACTIONS(3431), + [anon_sym_LT_LT] = ACTIONS(3431), + [anon_sym_GT_GT] = ACTIONS(3431), + [anon_sym_GT_GT_GT] = ACTIONS(3431), + [anon_sym_EQ_EQ] = ACTIONS(3429), + [anon_sym_BANG_EQ] = ACTIONS(3429), + [anon_sym_GT_EQ] = ACTIONS(3429), + [anon_sym_LT_EQ] = ACTIONS(3429), + [anon_sym_DOT] = ACTIONS(3431), + [anon_sym_scoped] = ACTIONS(3587), + [anon_sym_EQ_GT] = ACTIONS(3429), + [anon_sym_COLON_COLON] = ACTIONS(3429), + [anon_sym_var] = ACTIONS(3587), + [anon_sym_yield] = ACTIONS(3587), + [anon_sym_switch] = ACTIONS(3431), + [anon_sym_when] = ACTIONS(3587), + [anon_sym_DOT_DOT] = ACTIONS(3429), + [anon_sym_and] = ACTIONS(3431), + [anon_sym_or] = ACTIONS(3431), + [anon_sym_PLUS_EQ] = ACTIONS(3429), + [anon_sym_DASH_EQ] = ACTIONS(3429), + [anon_sym_STAR_EQ] = ACTIONS(3429), + [anon_sym_SLASH_EQ] = ACTIONS(3429), + [anon_sym_PERCENT_EQ] = ACTIONS(3429), + [anon_sym_AMP_EQ] = ACTIONS(3429), + [anon_sym_CARET_EQ] = ACTIONS(3429), + [anon_sym_PIPE_EQ] = ACTIONS(3429), + [anon_sym_LT_LT_EQ] = ACTIONS(3429), + [anon_sym_GT_GT_EQ] = ACTIONS(3429), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3429), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3429), + [anon_sym_AMP_AMP] = ACTIONS(3429), + [anon_sym_PIPE_PIPE] = ACTIONS(3429), + [anon_sym_QMARK_QMARK] = ACTIONS(3431), + [anon_sym_from] = ACTIONS(3587), + [anon_sym_into] = ACTIONS(3587), + [anon_sym_join] = ACTIONS(3587), + [anon_sym_on] = ACTIONS(3587), + [anon_sym_equals] = ACTIONS(3587), + [anon_sym_let] = ACTIONS(3587), + [anon_sym_orderby] = ACTIONS(3587), + [anon_sym_ascending] = ACTIONS(3587), + [anon_sym_descending] = ACTIONS(3587), + [anon_sym_group] = ACTIONS(3587), + [anon_sym_by] = ACTIONS(3587), + [anon_sym_select] = ACTIONS(3587), + [anon_sym_as] = ACTIONS(3431), + [anon_sym_is] = ACTIONS(3431), + [anon_sym_DASH_GT] = ACTIONS(3429), + [anon_sym_with] = ACTIONS(3431), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -397923,17 +397699,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(3429), }, [2178] = { - [sym__name] = STATE(5839), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(4096), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_ref_type] = STATE(2317), - [sym__scoped_base_type] = STATE(2340), - [sym_identifier] = STATE(5752), - [sym__reserved_identifier] = STATE(2175), + [sym_type_argument_list] = STATE(2171), [sym_preproc_region] = STATE(2178), [sym_preproc_endregion] = STATE(2178), [sym_preproc_line] = STATE(2178), @@ -397943,83 +397712,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2178), [sym_preproc_define] = STATE(2178), [sym_preproc_undef] = STATE(2178), - [sym__identifier_token] = ACTIONS(3600), - [anon_sym_alias] = ACTIONS(3603), - [anon_sym_global] = ACTIONS(3603), - [anon_sym_EQ] = ACTIONS(3447), - [anon_sym_LBRACK] = ACTIONS(3445), - [anon_sym_COLON] = ACTIONS(3447), - [anon_sym_LPAREN] = ACTIONS(3445), - [anon_sym_ref] = ACTIONS(3658), - [anon_sym_LBRACE] = ACTIONS(3445), - [anon_sym_file] = ACTIONS(3603), - [anon_sym_LT] = ACTIONS(3447), - [anon_sym_GT] = ACTIONS(3447), - [anon_sym_where] = ACTIONS(3603), - [anon_sym_QMARK] = ACTIONS(3447), - [anon_sym_notnull] = ACTIONS(3603), - [anon_sym_unmanaged] = ACTIONS(3603), - [anon_sym_BANG] = ACTIONS(3447), - [anon_sym_PLUS_PLUS] = ACTIONS(3445), - [anon_sym_DASH_DASH] = ACTIONS(3445), - [anon_sym_PLUS] = ACTIONS(3447), - [anon_sym_DASH] = ACTIONS(3447), - [anon_sym_STAR] = ACTIONS(3447), - [anon_sym_SLASH] = ACTIONS(3447), - [anon_sym_PERCENT] = ACTIONS(3447), - [anon_sym_CARET] = ACTIONS(3447), - [anon_sym_PIPE] = ACTIONS(3447), - [anon_sym_AMP] = ACTIONS(3447), - [anon_sym_LT_LT] = ACTIONS(3447), - [anon_sym_GT_GT] = ACTIONS(3447), - [anon_sym_GT_GT_GT] = ACTIONS(3447), - [anon_sym_EQ_EQ] = ACTIONS(3445), - [anon_sym_BANG_EQ] = ACTIONS(3445), - [anon_sym_GT_EQ] = ACTIONS(3445), - [anon_sym_LT_EQ] = ACTIONS(3445), - [anon_sym_DOT] = ACTIONS(3447), - [anon_sym_scoped] = ACTIONS(3603), - [anon_sym_EQ_GT] = ACTIONS(3445), - [anon_sym_COLON_COLON] = ACTIONS(3445), - [anon_sym_var] = ACTIONS(3603), - [anon_sym_yield] = ACTIONS(3603), - [anon_sym_switch] = ACTIONS(3447), - [anon_sym_when] = ACTIONS(3603), - [sym_discard] = ACTIONS(3447), - [anon_sym_DOT_DOT] = ACTIONS(3445), - [anon_sym_and] = ACTIONS(3447), - [anon_sym_or] = ACTIONS(3447), - [anon_sym_PLUS_EQ] = ACTIONS(3445), - [anon_sym_DASH_EQ] = ACTIONS(3445), - [anon_sym_STAR_EQ] = ACTIONS(3445), - [anon_sym_SLASH_EQ] = ACTIONS(3445), - [anon_sym_PERCENT_EQ] = ACTIONS(3445), - [anon_sym_AMP_EQ] = ACTIONS(3445), - [anon_sym_CARET_EQ] = ACTIONS(3445), - [anon_sym_PIPE_EQ] = ACTIONS(3445), - [anon_sym_LT_LT_EQ] = ACTIONS(3445), - [anon_sym_GT_GT_EQ] = ACTIONS(3445), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3445), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3445), - [anon_sym_AMP_AMP] = ACTIONS(3445), - [anon_sym_PIPE_PIPE] = ACTIONS(3445), - [anon_sym_QMARK_QMARK] = ACTIONS(3447), - [anon_sym_from] = ACTIONS(3603), - [anon_sym_into] = ACTIONS(3603), - [anon_sym_join] = ACTIONS(3603), - [anon_sym_on] = ACTIONS(3603), - [anon_sym_equals] = ACTIONS(3603), - [anon_sym_let] = ACTIONS(3603), - [anon_sym_orderby] = ACTIONS(3603), - [anon_sym_ascending] = ACTIONS(3603), - [anon_sym_descending] = ACTIONS(3603), - [anon_sym_group] = ACTIONS(3603), - [anon_sym_by] = ACTIONS(3603), - [anon_sym_select] = ACTIONS(3603), - [anon_sym_as] = ACTIONS(3447), - [anon_sym_is] = ACTIONS(3447), - [anon_sym_DASH_GT] = ACTIONS(3445), - [anon_sym_with] = ACTIONS(3447), + [sym__identifier_token] = ACTIONS(3638), + [anon_sym_alias] = ACTIONS(3638), + [anon_sym_SEMI] = ACTIONS(3640), + [anon_sym_global] = ACTIONS(3638), + [anon_sym_EQ] = ACTIONS(3638), + [anon_sym_LBRACK] = ACTIONS(3640), + [anon_sym_COMMA] = ACTIONS(3640), + [anon_sym_RBRACK] = ACTIONS(3640), + [anon_sym_LPAREN] = ACTIONS(3640), + [anon_sym_RPAREN] = ACTIONS(3640), + [anon_sym_LBRACE] = ACTIONS(3640), + [anon_sym_RBRACE] = ACTIONS(3640), + [anon_sym_file] = ACTIONS(3638), + [anon_sym_LT] = ACTIONS(3648), + [anon_sym_GT] = ACTIONS(3638), + [anon_sym_in] = ACTIONS(3638), + [anon_sym_where] = ACTIONS(3638), + [anon_sym_QMARK] = ACTIONS(3638), + [anon_sym_notnull] = ACTIONS(3638), + [anon_sym_unmanaged] = ACTIONS(3638), + [anon_sym_BANG] = ACTIONS(3638), + [anon_sym_PLUS_PLUS] = ACTIONS(3640), + [anon_sym_DASH_DASH] = ACTIONS(3640), + [anon_sym_PLUS] = ACTIONS(3638), + [anon_sym_DASH] = ACTIONS(3638), + [anon_sym_STAR] = ACTIONS(3638), + [anon_sym_SLASH] = ACTIONS(3638), + [anon_sym_PERCENT] = ACTIONS(3638), + [anon_sym_CARET] = ACTIONS(3638), + [anon_sym_PIPE] = ACTIONS(3638), + [anon_sym_AMP] = ACTIONS(3638), + [anon_sym_LT_LT] = ACTIONS(3638), + [anon_sym_GT_GT] = ACTIONS(3638), + [anon_sym_GT_GT_GT] = ACTIONS(3638), + [anon_sym_EQ_EQ] = ACTIONS(3640), + [anon_sym_BANG_EQ] = ACTIONS(3640), + [anon_sym_GT_EQ] = ACTIONS(3640), + [anon_sym_LT_EQ] = ACTIONS(3640), + [anon_sym_DOT] = ACTIONS(3638), + [anon_sym_scoped] = ACTIONS(3638), + [anon_sym_EQ_GT] = ACTIONS(3651), + [anon_sym_COLON_COLON] = ACTIONS(3667), + [anon_sym_var] = ACTIONS(3638), + [anon_sym_yield] = ACTIONS(3638), + [anon_sym_switch] = ACTIONS(3638), + [anon_sym_when] = ACTIONS(3638), + [sym_discard] = ACTIONS(3638), + [anon_sym_DOT_DOT] = ACTIONS(3640), + [anon_sym_and] = ACTIONS(3638), + [anon_sym_or] = ACTIONS(3638), + [anon_sym_PLUS_EQ] = ACTIONS(3640), + [anon_sym_DASH_EQ] = ACTIONS(3640), + [anon_sym_STAR_EQ] = ACTIONS(3640), + [anon_sym_SLASH_EQ] = ACTIONS(3640), + [anon_sym_PERCENT_EQ] = ACTIONS(3640), + [anon_sym_AMP_EQ] = ACTIONS(3640), + [anon_sym_CARET_EQ] = ACTIONS(3640), + [anon_sym_PIPE_EQ] = ACTIONS(3640), + [anon_sym_LT_LT_EQ] = ACTIONS(3640), + [anon_sym_GT_GT_EQ] = ACTIONS(3640), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3640), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3640), + [anon_sym_AMP_AMP] = ACTIONS(3640), + [anon_sym_PIPE_PIPE] = ACTIONS(3640), + [anon_sym_QMARK_QMARK] = ACTIONS(3638), + [anon_sym_from] = ACTIONS(3638), + [anon_sym_into] = ACTIONS(3638), + [anon_sym_join] = ACTIONS(3638), + [anon_sym_on] = ACTIONS(3638), + [anon_sym_equals] = ACTIONS(3638), + [anon_sym_let] = ACTIONS(3638), + [anon_sym_orderby] = ACTIONS(3638), + [anon_sym_ascending] = ACTIONS(3638), + [anon_sym_descending] = ACTIONS(3638), + [anon_sym_group] = ACTIONS(3638), + [anon_sym_by] = ACTIONS(3638), + [anon_sym_select] = ACTIONS(3638), + [anon_sym_as] = ACTIONS(3638), + [anon_sym_is] = ACTIONS(3638), + [anon_sym_DASH_GT] = ACTIONS(3640), + [anon_sym_with] = ACTIONS(3638), + [aux_sym_preproc_if_token3] = ACTIONS(3640), + [aux_sym_preproc_else_token1] = ACTIONS(3640), + [aux_sym_preproc_elif_token1] = ACTIONS(3640), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -398032,7 +397808,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2179] = { - [sym_type_argument_list] = STATE(2183), + [sym_type_argument_list] = STATE(2171), [sym_preproc_region] = STATE(2179), [sym_preproc_endregion] = STATE(2179), [sym_preproc_line] = STATE(2179), @@ -398042,91 +397818,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2179), [sym_preproc_define] = STATE(2179), [sym_preproc_undef] = STATE(2179), - [sym__identifier_token] = ACTIONS(3660), - [anon_sym_alias] = ACTIONS(3660), - [anon_sym_SEMI] = ACTIONS(3662), - [anon_sym_global] = ACTIONS(3660), - [anon_sym_EQ] = ACTIONS(3660), - [anon_sym_LBRACK] = ACTIONS(3662), - [anon_sym_COLON] = ACTIONS(3660), - [anon_sym_COMMA] = ACTIONS(3662), - [anon_sym_RBRACK] = ACTIONS(3662), - [anon_sym_LPAREN] = ACTIONS(3662), - [anon_sym_RPAREN] = ACTIONS(3662), - [anon_sym_LBRACE] = ACTIONS(3662), - [anon_sym_RBRACE] = ACTIONS(3662), - [anon_sym_file] = ACTIONS(3660), - [anon_sym_LT] = ACTIONS(3664), - [anon_sym_GT] = ACTIONS(3660), - [anon_sym_in] = ACTIONS(3660), - [anon_sym_where] = ACTIONS(3660), - [anon_sym_QMARK] = ACTIONS(3660), - [anon_sym_notnull] = ACTIONS(3660), - [anon_sym_unmanaged] = ACTIONS(3660), - [anon_sym_BANG] = ACTIONS(3660), - [anon_sym_PLUS_PLUS] = ACTIONS(3662), - [anon_sym_DASH_DASH] = ACTIONS(3662), - [anon_sym_PLUS] = ACTIONS(3660), - [anon_sym_DASH] = ACTIONS(3660), - [anon_sym_STAR] = ACTIONS(3660), - [anon_sym_SLASH] = ACTIONS(3660), - [anon_sym_PERCENT] = ACTIONS(3660), - [anon_sym_CARET] = ACTIONS(3660), - [anon_sym_PIPE] = ACTIONS(3660), - [anon_sym_AMP] = ACTIONS(3660), - [anon_sym_LT_LT] = ACTIONS(3660), - [anon_sym_GT_GT] = ACTIONS(3660), - [anon_sym_GT_GT_GT] = ACTIONS(3660), - [anon_sym_EQ_EQ] = ACTIONS(3662), - [anon_sym_BANG_EQ] = ACTIONS(3662), - [anon_sym_GT_EQ] = ACTIONS(3662), - [anon_sym_LT_EQ] = ACTIONS(3662), - [anon_sym_DOT] = ACTIONS(3660), - [anon_sym_scoped] = ACTIONS(3660), - [anon_sym_EQ_GT] = ACTIONS(3667), - [anon_sym_COLON_COLON] = ACTIONS(3669), - [anon_sym_var] = ACTIONS(3660), - [anon_sym_yield] = ACTIONS(3660), - [anon_sym_switch] = ACTIONS(3660), - [anon_sym_when] = ACTIONS(3660), - [sym_discard] = ACTIONS(3660), - [anon_sym_DOT_DOT] = ACTIONS(3662), - [anon_sym_and] = ACTIONS(3660), - [anon_sym_or] = ACTIONS(3660), - [anon_sym_PLUS_EQ] = ACTIONS(3662), - [anon_sym_DASH_EQ] = ACTIONS(3662), - [anon_sym_STAR_EQ] = ACTIONS(3662), - [anon_sym_SLASH_EQ] = ACTIONS(3662), - [anon_sym_PERCENT_EQ] = ACTIONS(3662), - [anon_sym_AMP_EQ] = ACTIONS(3662), - [anon_sym_CARET_EQ] = ACTIONS(3662), - [anon_sym_PIPE_EQ] = ACTIONS(3662), - [anon_sym_LT_LT_EQ] = ACTIONS(3662), - [anon_sym_GT_GT_EQ] = ACTIONS(3662), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3662), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3662), - [anon_sym_AMP_AMP] = ACTIONS(3662), - [anon_sym_PIPE_PIPE] = ACTIONS(3662), - [anon_sym_QMARK_QMARK] = ACTIONS(3660), - [anon_sym_from] = ACTIONS(3660), - [anon_sym_into] = ACTIONS(3660), - [anon_sym_join] = ACTIONS(3660), - [anon_sym_on] = ACTIONS(3660), - [anon_sym_equals] = ACTIONS(3660), - [anon_sym_let] = ACTIONS(3660), - [anon_sym_orderby] = ACTIONS(3660), - [anon_sym_ascending] = ACTIONS(3660), - [anon_sym_descending] = ACTIONS(3660), - [anon_sym_group] = ACTIONS(3660), - [anon_sym_by] = ACTIONS(3660), - [anon_sym_select] = ACTIONS(3660), - [anon_sym_as] = ACTIONS(3660), - [anon_sym_is] = ACTIONS(3660), - [anon_sym_DASH_GT] = ACTIONS(3662), - [anon_sym_with] = ACTIONS(3660), - [aux_sym_preproc_if_token3] = ACTIONS(3662), - [aux_sym_preproc_else_token1] = ACTIONS(3662), - [aux_sym_preproc_elif_token1] = ACTIONS(3662), + [sym__identifier_token] = ACTIONS(3638), + [anon_sym_alias] = ACTIONS(3638), + [anon_sym_SEMI] = ACTIONS(3640), + [anon_sym_global] = ACTIONS(3638), + [anon_sym_EQ] = ACTIONS(3638), + [anon_sym_LBRACK] = ACTIONS(3640), + [anon_sym_COLON] = ACTIONS(3640), + [anon_sym_COMMA] = ACTIONS(3640), + [anon_sym_RBRACK] = ACTIONS(3640), + [anon_sym_LPAREN] = ACTIONS(3640), + [anon_sym_RPAREN] = ACTIONS(3640), + [anon_sym_LBRACE] = ACTIONS(3640), + [anon_sym_RBRACE] = ACTIONS(3640), + [anon_sym_file] = ACTIONS(3638), + [anon_sym_LT] = ACTIONS(3648), + [anon_sym_GT] = ACTIONS(3638), + [anon_sym_in] = ACTIONS(3638), + [anon_sym_where] = ACTIONS(3638), + [anon_sym_QMARK] = ACTIONS(3638), + [anon_sym_notnull] = ACTIONS(3638), + [anon_sym_unmanaged] = ACTIONS(3638), + [anon_sym_BANG] = ACTIONS(3638), + [anon_sym_PLUS_PLUS] = ACTIONS(3640), + [anon_sym_DASH_DASH] = ACTIONS(3640), + [anon_sym_PLUS] = ACTIONS(3638), + [anon_sym_DASH] = ACTIONS(3638), + [anon_sym_STAR] = ACTIONS(3638), + [anon_sym_SLASH] = ACTIONS(3638), + [anon_sym_PERCENT] = ACTIONS(3638), + [anon_sym_CARET] = ACTIONS(3638), + [anon_sym_PIPE] = ACTIONS(3638), + [anon_sym_AMP] = ACTIONS(3638), + [anon_sym_LT_LT] = ACTIONS(3638), + [anon_sym_GT_GT] = ACTIONS(3638), + [anon_sym_GT_GT_GT] = ACTIONS(3638), + [anon_sym_EQ_EQ] = ACTIONS(3640), + [anon_sym_BANG_EQ] = ACTIONS(3640), + [anon_sym_GT_EQ] = ACTIONS(3640), + [anon_sym_LT_EQ] = ACTIONS(3640), + [anon_sym_DOT] = ACTIONS(3638), + [anon_sym_scoped] = ACTIONS(3638), + [anon_sym_EQ_GT] = ACTIONS(3640), + [anon_sym_var] = ACTIONS(3638), + [anon_sym_yield] = ACTIONS(3638), + [anon_sym_switch] = ACTIONS(3638), + [anon_sym_when] = ACTIONS(3638), + [sym_discard] = ACTIONS(3638), + [anon_sym_DOT_DOT] = ACTIONS(3640), + [anon_sym_and] = ACTIONS(3638), + [anon_sym_or] = ACTIONS(3638), + [anon_sym_PLUS_EQ] = ACTIONS(3640), + [anon_sym_DASH_EQ] = ACTIONS(3640), + [anon_sym_STAR_EQ] = ACTIONS(3640), + [anon_sym_SLASH_EQ] = ACTIONS(3640), + [anon_sym_PERCENT_EQ] = ACTIONS(3640), + [anon_sym_AMP_EQ] = ACTIONS(3640), + [anon_sym_CARET_EQ] = ACTIONS(3640), + [anon_sym_PIPE_EQ] = ACTIONS(3640), + [anon_sym_LT_LT_EQ] = ACTIONS(3640), + [anon_sym_GT_GT_EQ] = ACTIONS(3640), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3640), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3640), + [anon_sym_AMP_AMP] = ACTIONS(3640), + [anon_sym_PIPE_PIPE] = ACTIONS(3640), + [anon_sym_QMARK_QMARK] = ACTIONS(3638), + [anon_sym_from] = ACTIONS(3638), + [anon_sym_into] = ACTIONS(3638), + [anon_sym_join] = ACTIONS(3638), + [anon_sym_on] = ACTIONS(3638), + [anon_sym_equals] = ACTIONS(3638), + [anon_sym_let] = ACTIONS(3638), + [anon_sym_orderby] = ACTIONS(3638), + [anon_sym_ascending] = ACTIONS(3638), + [anon_sym_descending] = ACTIONS(3638), + [anon_sym_group] = ACTIONS(3638), + [anon_sym_by] = ACTIONS(3638), + [anon_sym_select] = ACTIONS(3638), + [anon_sym_as] = ACTIONS(3638), + [anon_sym_is] = ACTIONS(3638), + [anon_sym_DASH_GT] = ACTIONS(3640), + [anon_sym_with] = ACTIONS(3638), + [aux_sym_preproc_if_token3] = ACTIONS(3640), + [aux_sym_preproc_else_token1] = ACTIONS(3640), + [aux_sym_preproc_elif_token1] = ACTIONS(3640), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -398148,92 +397923,91 @@ 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(3671), - [anon_sym_alias] = ACTIONS(3671), - [anon_sym_SEMI] = ACTIONS(3673), - [anon_sym_global] = ACTIONS(3671), - [anon_sym_EQ] = ACTIONS(3671), - [anon_sym_LBRACK] = ACTIONS(3673), - [anon_sym_COLON] = ACTIONS(3673), - [anon_sym_COMMA] = ACTIONS(3673), - [anon_sym_RBRACK] = ACTIONS(3673), - [anon_sym_LPAREN] = ACTIONS(3673), - [anon_sym_RPAREN] = ACTIONS(3673), - [anon_sym_LBRACE] = ACTIONS(3673), - [anon_sym_RBRACE] = ACTIONS(3673), - [anon_sym_file] = ACTIONS(3671), - [anon_sym_LT] = ACTIONS(3671), - [anon_sym_GT] = ACTIONS(3671), - [anon_sym_in] = ACTIONS(3671), - [anon_sym_where] = ACTIONS(3671), - [anon_sym_QMARK] = ACTIONS(3671), - [anon_sym_notnull] = ACTIONS(3671), - [anon_sym_unmanaged] = ACTIONS(3671), - [anon_sym_operator] = ACTIONS(3671), - [anon_sym_BANG] = ACTIONS(3671), - [anon_sym_PLUS_PLUS] = ACTIONS(3673), - [anon_sym_DASH_DASH] = ACTIONS(3673), - [anon_sym_PLUS] = ACTIONS(3671), - [anon_sym_DASH] = ACTIONS(3671), - [anon_sym_STAR] = ACTIONS(3671), - [anon_sym_SLASH] = ACTIONS(3671), - [anon_sym_PERCENT] = ACTIONS(3671), - [anon_sym_CARET] = ACTIONS(3671), - [anon_sym_PIPE] = ACTIONS(3671), - [anon_sym_AMP] = ACTIONS(3671), - [anon_sym_LT_LT] = ACTIONS(3671), - [anon_sym_GT_GT] = ACTIONS(3671), - [anon_sym_GT_GT_GT] = ACTIONS(3671), - [anon_sym_EQ_EQ] = ACTIONS(3673), - [anon_sym_BANG_EQ] = ACTIONS(3673), - [anon_sym_GT_EQ] = ACTIONS(3673), - [anon_sym_LT_EQ] = ACTIONS(3673), - [anon_sym_this] = ACTIONS(3671), - [anon_sym_DOT] = ACTIONS(3671), - [anon_sym_scoped] = ACTIONS(3671), - [anon_sym_EQ_GT] = ACTIONS(3673), - [anon_sym_var] = ACTIONS(3671), - [anon_sym_yield] = ACTIONS(3671), - [anon_sym_switch] = ACTIONS(3671), - [anon_sym_when] = ACTIONS(3671), - [sym_discard] = ACTIONS(3671), - [anon_sym_DOT_DOT] = ACTIONS(3673), - [anon_sym_and] = ACTIONS(3671), - [anon_sym_or] = ACTIONS(3671), - [anon_sym_PLUS_EQ] = ACTIONS(3673), - [anon_sym_DASH_EQ] = ACTIONS(3673), - [anon_sym_STAR_EQ] = ACTIONS(3673), - [anon_sym_SLASH_EQ] = ACTIONS(3673), - [anon_sym_PERCENT_EQ] = ACTIONS(3673), - [anon_sym_AMP_EQ] = ACTIONS(3673), - [anon_sym_CARET_EQ] = ACTIONS(3673), - [anon_sym_PIPE_EQ] = ACTIONS(3673), - [anon_sym_LT_LT_EQ] = ACTIONS(3673), - [anon_sym_GT_GT_EQ] = ACTIONS(3673), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3673), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3673), - [anon_sym_AMP_AMP] = ACTIONS(3673), - [anon_sym_PIPE_PIPE] = ACTIONS(3673), - [anon_sym_QMARK_QMARK] = ACTIONS(3671), - [anon_sym_from] = ACTIONS(3671), - [anon_sym_into] = ACTIONS(3671), - [anon_sym_join] = ACTIONS(3671), - [anon_sym_on] = ACTIONS(3671), - [anon_sym_equals] = ACTIONS(3671), - [anon_sym_let] = ACTIONS(3671), - [anon_sym_orderby] = ACTIONS(3671), - [anon_sym_ascending] = ACTIONS(3671), - [anon_sym_descending] = ACTIONS(3671), - [anon_sym_group] = ACTIONS(3671), - [anon_sym_by] = ACTIONS(3671), - [anon_sym_select] = ACTIONS(3671), - [anon_sym_as] = ACTIONS(3671), - [anon_sym_is] = ACTIONS(3671), - [anon_sym_DASH_GT] = ACTIONS(3673), - [anon_sym_with] = ACTIONS(3671), - [aux_sym_preproc_if_token3] = ACTIONS(3673), - [aux_sym_preproc_else_token1] = ACTIONS(3673), - [aux_sym_preproc_elif_token1] = ACTIONS(3673), + [sym__identifier_token] = ACTIONS(3603), + [anon_sym_alias] = ACTIONS(3603), + [anon_sym_SEMI] = ACTIONS(3600), + [anon_sym_global] = ACTIONS(3603), + [anon_sym_EQ] = ACTIONS(3431), + [anon_sym_LBRACK] = ACTIONS(3600), + [anon_sym_COLON] = ACTIONS(3603), + [anon_sym_COMMA] = ACTIONS(3600), + [anon_sym_RBRACK] = ACTIONS(3600), + [anon_sym_LPAREN] = ACTIONS(3600), + [anon_sym_RPAREN] = ACTIONS(3600), + [anon_sym_LBRACE] = ACTIONS(3600), + [anon_sym_RBRACE] = ACTIONS(3600), + [anon_sym_file] = ACTIONS(3603), + [anon_sym_LT] = ACTIONS(3603), + [anon_sym_GT] = ACTIONS(3603), + [anon_sym_in] = ACTIONS(3603), + [anon_sym_where] = ACTIONS(3603), + [anon_sym_QMARK] = ACTIONS(3603), + [anon_sym_notnull] = ACTIONS(3603), + [anon_sym_unmanaged] = ACTIONS(3603), + [anon_sym_BANG] = ACTIONS(3603), + [anon_sym_PLUS_PLUS] = ACTIONS(3600), + [anon_sym_DASH_DASH] = ACTIONS(3600), + [anon_sym_PLUS] = ACTIONS(3603), + [anon_sym_DASH] = ACTIONS(3603), + [anon_sym_STAR] = ACTIONS(3603), + [anon_sym_SLASH] = ACTIONS(3603), + [anon_sym_PERCENT] = ACTIONS(3603), + [anon_sym_CARET] = ACTIONS(3603), + [anon_sym_PIPE] = ACTIONS(3603), + [anon_sym_AMP] = ACTIONS(3603), + [anon_sym_LT_LT] = ACTIONS(3603), + [anon_sym_GT_GT] = ACTIONS(3603), + [anon_sym_GT_GT_GT] = ACTIONS(3603), + [anon_sym_EQ_EQ] = ACTIONS(3600), + [anon_sym_BANG_EQ] = ACTIONS(3600), + [anon_sym_GT_EQ] = ACTIONS(3600), + [anon_sym_LT_EQ] = ACTIONS(3600), + [anon_sym_DOT] = ACTIONS(3603), + [anon_sym_scoped] = ACTIONS(3603), + [anon_sym_EQ_GT] = ACTIONS(3429), + [anon_sym_COLON_COLON] = ACTIONS(3429), + [anon_sym_var] = ACTIONS(3603), + [anon_sym_yield] = ACTIONS(3603), + [anon_sym_switch] = ACTIONS(3603), + [anon_sym_when] = ACTIONS(3603), + [sym_discard] = ACTIONS(3603), + [anon_sym_DOT_DOT] = ACTIONS(3600), + [anon_sym_and] = ACTIONS(3603), + [anon_sym_or] = ACTIONS(3603), + [anon_sym_PLUS_EQ] = ACTIONS(3429), + [anon_sym_DASH_EQ] = ACTIONS(3429), + [anon_sym_STAR_EQ] = ACTIONS(3429), + [anon_sym_SLASH_EQ] = ACTIONS(3429), + [anon_sym_PERCENT_EQ] = ACTIONS(3429), + [anon_sym_AMP_EQ] = ACTIONS(3429), + [anon_sym_CARET_EQ] = ACTIONS(3429), + [anon_sym_PIPE_EQ] = ACTIONS(3429), + [anon_sym_LT_LT_EQ] = ACTIONS(3429), + [anon_sym_GT_GT_EQ] = ACTIONS(3429), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3429), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3429), + [anon_sym_AMP_AMP] = ACTIONS(3600), + [anon_sym_PIPE_PIPE] = ACTIONS(3600), + [anon_sym_QMARK_QMARK] = ACTIONS(3603), + [anon_sym_from] = ACTIONS(3603), + [anon_sym_into] = ACTIONS(3603), + [anon_sym_join] = ACTIONS(3603), + [anon_sym_on] = ACTIONS(3603), + [anon_sym_equals] = ACTIONS(3603), + [anon_sym_let] = ACTIONS(3603), + [anon_sym_orderby] = ACTIONS(3603), + [anon_sym_ascending] = ACTIONS(3603), + [anon_sym_descending] = ACTIONS(3603), + [anon_sym_group] = ACTIONS(3603), + [anon_sym_by] = ACTIONS(3603), + [anon_sym_select] = ACTIONS(3603), + [anon_sym_as] = ACTIONS(3603), + [anon_sym_is] = ACTIONS(3603), + [anon_sym_DASH_GT] = ACTIONS(3600), + [anon_sym_with] = ACTIONS(3603), + [aux_sym_preproc_if_token3] = ACTIONS(3600), + [aux_sym_preproc_else_token1] = ACTIONS(3600), + [aux_sym_preproc_elif_token1] = ACTIONS(3600), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -398255,92 +398029,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2181), [sym_preproc_define] = STATE(2181), [sym_preproc_undef] = STATE(2181), - [sym__identifier_token] = ACTIONS(3660), - [anon_sym_alias] = ACTIONS(3660), - [anon_sym_SEMI] = ACTIONS(3662), - [anon_sym_global] = ACTIONS(3660), - [anon_sym_EQ] = ACTIONS(3660), - [anon_sym_LBRACK] = ACTIONS(3662), - [anon_sym_COLON] = ACTIONS(3662), - [anon_sym_COMMA] = ACTIONS(3662), - [anon_sym_RBRACK] = ACTIONS(3662), - [anon_sym_LPAREN] = ACTIONS(3662), - [anon_sym_RPAREN] = ACTIONS(3662), - [anon_sym_LBRACE] = ACTIONS(3662), - [anon_sym_RBRACE] = ACTIONS(3662), - [anon_sym_file] = ACTIONS(3660), - [anon_sym_LT] = ACTIONS(3660), - [anon_sym_GT] = ACTIONS(3660), - [anon_sym_in] = ACTIONS(3660), - [anon_sym_where] = ACTIONS(3660), - [anon_sym_QMARK] = ACTIONS(3660), - [anon_sym_notnull] = ACTIONS(3660), - [anon_sym_unmanaged] = ACTIONS(3660), - [anon_sym_operator] = ACTIONS(3660), - [anon_sym_BANG] = ACTIONS(3660), - [anon_sym_PLUS_PLUS] = ACTIONS(3662), - [anon_sym_DASH_DASH] = ACTIONS(3662), - [anon_sym_PLUS] = ACTIONS(3660), - [anon_sym_DASH] = ACTIONS(3660), - [anon_sym_STAR] = ACTIONS(3660), - [anon_sym_SLASH] = ACTIONS(3660), - [anon_sym_PERCENT] = ACTIONS(3660), - [anon_sym_CARET] = ACTIONS(3660), - [anon_sym_PIPE] = ACTIONS(3660), - [anon_sym_AMP] = ACTIONS(3660), - [anon_sym_LT_LT] = ACTIONS(3660), - [anon_sym_GT_GT] = ACTIONS(3660), - [anon_sym_GT_GT_GT] = ACTIONS(3660), - [anon_sym_EQ_EQ] = ACTIONS(3662), - [anon_sym_BANG_EQ] = ACTIONS(3662), - [anon_sym_GT_EQ] = ACTIONS(3662), - [anon_sym_LT_EQ] = ACTIONS(3662), - [anon_sym_this] = ACTIONS(3660), - [anon_sym_DOT] = ACTIONS(3660), - [anon_sym_scoped] = ACTIONS(3660), - [anon_sym_EQ_GT] = ACTIONS(3662), - [anon_sym_var] = ACTIONS(3660), - [anon_sym_yield] = ACTIONS(3660), - [anon_sym_switch] = ACTIONS(3660), - [anon_sym_when] = ACTIONS(3660), - [sym_discard] = ACTIONS(3660), - [anon_sym_DOT_DOT] = ACTIONS(3662), - [anon_sym_and] = ACTIONS(3660), - [anon_sym_or] = ACTIONS(3660), - [anon_sym_PLUS_EQ] = ACTIONS(3662), - [anon_sym_DASH_EQ] = ACTIONS(3662), - [anon_sym_STAR_EQ] = ACTIONS(3662), - [anon_sym_SLASH_EQ] = ACTIONS(3662), - [anon_sym_PERCENT_EQ] = ACTIONS(3662), - [anon_sym_AMP_EQ] = ACTIONS(3662), - [anon_sym_CARET_EQ] = ACTIONS(3662), - [anon_sym_PIPE_EQ] = ACTIONS(3662), - [anon_sym_LT_LT_EQ] = ACTIONS(3662), - [anon_sym_GT_GT_EQ] = ACTIONS(3662), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3662), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3662), - [anon_sym_AMP_AMP] = ACTIONS(3662), - [anon_sym_PIPE_PIPE] = ACTIONS(3662), - [anon_sym_QMARK_QMARK] = ACTIONS(3660), - [anon_sym_from] = ACTIONS(3660), - [anon_sym_into] = ACTIONS(3660), - [anon_sym_join] = ACTIONS(3660), - [anon_sym_on] = ACTIONS(3660), - [anon_sym_equals] = ACTIONS(3660), - [anon_sym_let] = ACTIONS(3660), - [anon_sym_orderby] = ACTIONS(3660), - [anon_sym_ascending] = ACTIONS(3660), - [anon_sym_descending] = ACTIONS(3660), - [anon_sym_group] = ACTIONS(3660), - [anon_sym_by] = ACTIONS(3660), - [anon_sym_select] = ACTIONS(3660), - [anon_sym_as] = ACTIONS(3660), - [anon_sym_is] = ACTIONS(3660), - [anon_sym_DASH_GT] = ACTIONS(3662), - [anon_sym_with] = ACTIONS(3660), - [aux_sym_preproc_if_token3] = ACTIONS(3662), - [aux_sym_preproc_else_token1] = ACTIONS(3662), - [aux_sym_preproc_elif_token1] = ACTIONS(3662), + [sym__identifier_token] = ACTIONS(3669), + [anon_sym_alias] = ACTIONS(3669), + [anon_sym_SEMI] = ACTIONS(3671), + [anon_sym_global] = ACTIONS(3669), + [anon_sym_EQ] = ACTIONS(3673), + [anon_sym_LBRACK] = ACTIONS(3675), + [anon_sym_COLON] = ACTIONS(3671), + [anon_sym_COMMA] = ACTIONS(3675), + [anon_sym_RBRACK] = ACTIONS(3675), + [anon_sym_LPAREN] = ACTIONS(3675), + [anon_sym_RPAREN] = ACTIONS(3675), + [anon_sym_LBRACE] = ACTIONS(3678), + [anon_sym_RBRACE] = ACTIONS(3675), + [anon_sym_file] = ACTIONS(3669), + [anon_sym_LT] = ACTIONS(3673), + [anon_sym_GT] = ACTIONS(3673), + [anon_sym_in] = ACTIONS(3673), + [anon_sym_where] = ACTIONS(3669), + [anon_sym_QMARK] = ACTIONS(3680), + [anon_sym_notnull] = ACTIONS(3669), + [anon_sym_unmanaged] = ACTIONS(3669), + [anon_sym_BANG] = ACTIONS(3673), + [anon_sym_PLUS_PLUS] = ACTIONS(3671), + [anon_sym_DASH_DASH] = ACTIONS(3671), + [anon_sym_PLUS] = ACTIONS(3673), + [anon_sym_DASH] = ACTIONS(3673), + [anon_sym_STAR] = ACTIONS(3680), + [anon_sym_SLASH] = ACTIONS(3673), + [anon_sym_PERCENT] = ACTIONS(3673), + [anon_sym_CARET] = ACTIONS(3673), + [anon_sym_PIPE] = ACTIONS(3673), + [anon_sym_AMP] = ACTIONS(3673), + [anon_sym_LT_LT] = ACTIONS(3673), + [anon_sym_GT_GT] = ACTIONS(3673), + [anon_sym_GT_GT_GT] = ACTIONS(3673), + [anon_sym_EQ_EQ] = ACTIONS(3671), + [anon_sym_BANG_EQ] = ACTIONS(3671), + [anon_sym_GT_EQ] = ACTIONS(3671), + [anon_sym_LT_EQ] = ACTIONS(3671), + [anon_sym_DOT] = ACTIONS(3680), + [anon_sym_scoped] = ACTIONS(3669), + [anon_sym_EQ_GT] = ACTIONS(3671), + [anon_sym_var] = ACTIONS(3669), + [anon_sym_yield] = ACTIONS(3669), + [anon_sym_switch] = ACTIONS(3673), + [anon_sym_when] = ACTIONS(3669), + [sym_discard] = ACTIONS(3669), + [anon_sym_DOT_DOT] = ACTIONS(3671), + [anon_sym_and] = ACTIONS(3680), + [anon_sym_or] = ACTIONS(3680), + [anon_sym_PLUS_EQ] = ACTIONS(3671), + [anon_sym_DASH_EQ] = ACTIONS(3671), + [anon_sym_STAR_EQ] = ACTIONS(3671), + [anon_sym_SLASH_EQ] = ACTIONS(3671), + [anon_sym_PERCENT_EQ] = ACTIONS(3671), + [anon_sym_AMP_EQ] = ACTIONS(3671), + [anon_sym_CARET_EQ] = ACTIONS(3671), + [anon_sym_PIPE_EQ] = ACTIONS(3671), + [anon_sym_LT_LT_EQ] = ACTIONS(3671), + [anon_sym_GT_GT_EQ] = ACTIONS(3671), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3671), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3671), + [anon_sym_AMP_AMP] = ACTIONS(3671), + [anon_sym_PIPE_PIPE] = ACTIONS(3671), + [anon_sym_QMARK_QMARK] = ACTIONS(3673), + [anon_sym_from] = ACTIONS(3669), + [anon_sym_into] = ACTIONS(3669), + [anon_sym_join] = ACTIONS(3669), + [anon_sym_on] = ACTIONS(3669), + [anon_sym_equals] = ACTIONS(3669), + [anon_sym_let] = ACTIONS(3669), + [anon_sym_orderby] = ACTIONS(3669), + [anon_sym_ascending] = ACTIONS(3669), + [anon_sym_descending] = ACTIONS(3669), + [anon_sym_group] = ACTIONS(3669), + [anon_sym_by] = ACTIONS(3669), + [anon_sym_select] = ACTIONS(3669), + [anon_sym_as] = ACTIONS(3673), + [anon_sym_is] = ACTIONS(3673), + [anon_sym_DASH_GT] = ACTIONS(3675), + [anon_sym_with] = ACTIONS(3673), + [aux_sym_preproc_if_token3] = ACTIONS(3671), + [aux_sym_preproc_else_token1] = ACTIONS(3671), + [aux_sym_preproc_elif_token1] = ACTIONS(3671), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -398353,6 +398125,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2182] = { + [sym__variable_designation] = STATE(3353), + [sym_parenthesized_variable_designation] = STATE(3352), + [sym_identifier] = STATE(3355), + [sym__reserved_identifier] = STATE(2565), [sym_preproc_region] = STATE(2182), [sym_preproc_endregion] = STATE(2182), [sym_preproc_line] = STATE(2182), @@ -398362,92 +398138,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2182), [sym_preproc_define] = STATE(2182), [sym_preproc_undef] = STATE(2182), - [sym__identifier_token] = ACTIONS(3675), - [anon_sym_alias] = ACTIONS(3675), - [anon_sym_SEMI] = ACTIONS(3677), - [anon_sym_global] = ACTIONS(3675), - [anon_sym_EQ] = ACTIONS(3675), - [anon_sym_LBRACK] = ACTIONS(3677), - [anon_sym_COLON] = ACTIONS(3677), - [anon_sym_COMMA] = ACTIONS(3677), - [anon_sym_RBRACK] = ACTIONS(3677), - [anon_sym_LPAREN] = ACTIONS(3677), - [anon_sym_RPAREN] = ACTIONS(3677), - [anon_sym_LBRACE] = ACTIONS(3677), - [anon_sym_RBRACE] = ACTIONS(3677), - [anon_sym_file] = ACTIONS(3675), - [anon_sym_LT] = ACTIONS(3675), - [anon_sym_GT] = ACTIONS(3675), - [anon_sym_in] = ACTIONS(3675), - [anon_sym_where] = ACTIONS(3675), - [anon_sym_QMARK] = ACTIONS(3675), - [anon_sym_notnull] = ACTIONS(3675), - [anon_sym_unmanaged] = ACTIONS(3675), - [anon_sym_operator] = ACTIONS(3675), - [anon_sym_BANG] = ACTIONS(3675), - [anon_sym_PLUS_PLUS] = ACTIONS(3677), - [anon_sym_DASH_DASH] = ACTIONS(3677), - [anon_sym_PLUS] = ACTIONS(3675), - [anon_sym_DASH] = ACTIONS(3675), - [anon_sym_STAR] = ACTIONS(3675), - [anon_sym_SLASH] = ACTIONS(3675), - [anon_sym_PERCENT] = ACTIONS(3675), - [anon_sym_CARET] = ACTIONS(3675), - [anon_sym_PIPE] = ACTIONS(3675), - [anon_sym_AMP] = ACTIONS(3675), - [anon_sym_LT_LT] = ACTIONS(3675), - [anon_sym_GT_GT] = ACTIONS(3675), - [anon_sym_GT_GT_GT] = ACTIONS(3675), - [anon_sym_EQ_EQ] = ACTIONS(3677), - [anon_sym_BANG_EQ] = ACTIONS(3677), - [anon_sym_GT_EQ] = ACTIONS(3677), - [anon_sym_LT_EQ] = ACTIONS(3677), - [anon_sym_this] = ACTIONS(3675), - [anon_sym_DOT] = ACTIONS(3675), - [anon_sym_scoped] = ACTIONS(3675), - [anon_sym_EQ_GT] = ACTIONS(3677), - [anon_sym_var] = ACTIONS(3675), - [anon_sym_yield] = ACTIONS(3675), - [anon_sym_switch] = ACTIONS(3675), - [anon_sym_when] = ACTIONS(3675), - [sym_discard] = ACTIONS(3675), - [anon_sym_DOT_DOT] = ACTIONS(3677), - [anon_sym_and] = ACTIONS(3675), - [anon_sym_or] = ACTIONS(3675), - [anon_sym_PLUS_EQ] = ACTIONS(3677), - [anon_sym_DASH_EQ] = ACTIONS(3677), - [anon_sym_STAR_EQ] = ACTIONS(3677), - [anon_sym_SLASH_EQ] = ACTIONS(3677), - [anon_sym_PERCENT_EQ] = ACTIONS(3677), - [anon_sym_AMP_EQ] = ACTIONS(3677), - [anon_sym_CARET_EQ] = ACTIONS(3677), - [anon_sym_PIPE_EQ] = ACTIONS(3677), - [anon_sym_LT_LT_EQ] = ACTIONS(3677), - [anon_sym_GT_GT_EQ] = ACTIONS(3677), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3677), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3677), - [anon_sym_AMP_AMP] = ACTIONS(3677), - [anon_sym_PIPE_PIPE] = ACTIONS(3677), - [anon_sym_QMARK_QMARK] = ACTIONS(3675), - [anon_sym_from] = ACTIONS(3675), - [anon_sym_into] = ACTIONS(3675), - [anon_sym_join] = ACTIONS(3675), - [anon_sym_on] = ACTIONS(3675), - [anon_sym_equals] = ACTIONS(3675), - [anon_sym_let] = ACTIONS(3675), - [anon_sym_orderby] = ACTIONS(3675), - [anon_sym_ascending] = ACTIONS(3675), - [anon_sym_descending] = ACTIONS(3675), - [anon_sym_group] = ACTIONS(3675), - [anon_sym_by] = ACTIONS(3675), - [anon_sym_select] = ACTIONS(3675), - [anon_sym_as] = ACTIONS(3675), - [anon_sym_is] = ACTIONS(3675), - [anon_sym_DASH_GT] = ACTIONS(3677), - [anon_sym_with] = ACTIONS(3675), - [aux_sym_preproc_if_token3] = ACTIONS(3677), - [aux_sym_preproc_else_token1] = ACTIONS(3677), - [aux_sym_preproc_elif_token1] = ACTIONS(3677), + [sym__identifier_token] = ACTIONS(3683), + [anon_sym_alias] = ACTIONS(3687), + [anon_sym_global] = ACTIONS(3687), + [anon_sym_EQ] = ACTIONS(3431), + [anon_sym_LBRACK] = ACTIONS(3429), + [anon_sym_COLON] = ACTIONS(3431), + [anon_sym_COMMA] = ACTIONS(3600), + [anon_sym_RBRACK] = ACTIONS(3600), + [anon_sym_LPAREN] = ACTIONS(3616), + [anon_sym_RPAREN] = ACTIONS(3600), + [anon_sym_LBRACE] = ACTIONS(3600), + [anon_sym_RBRACE] = ACTIONS(3600), + [anon_sym_file] = ACTIONS(3687), + [anon_sym_LT] = ACTIONS(3431), + [anon_sym_GT] = ACTIONS(3431), + [anon_sym_where] = ACTIONS(3687), + [anon_sym_QMARK] = ACTIONS(3431), + [anon_sym_notnull] = ACTIONS(3687), + [anon_sym_unmanaged] = ACTIONS(3687), + [anon_sym_BANG] = ACTIONS(3431), + [anon_sym_PLUS_PLUS] = ACTIONS(3429), + [anon_sym_DASH_DASH] = ACTIONS(3429), + [anon_sym_PLUS] = ACTIONS(3431), + [anon_sym_DASH] = ACTIONS(3431), + [anon_sym_STAR] = ACTIONS(3431), + [anon_sym_SLASH] = ACTIONS(3431), + [anon_sym_PERCENT] = ACTIONS(3431), + [anon_sym_CARET] = ACTIONS(3431), + [anon_sym_PIPE] = ACTIONS(3431), + [anon_sym_AMP] = ACTIONS(3431), + [anon_sym_LT_LT] = ACTIONS(3431), + [anon_sym_GT_GT] = ACTIONS(3431), + [anon_sym_GT_GT_GT] = ACTIONS(3431), + [anon_sym_EQ_EQ] = ACTIONS(3429), + [anon_sym_BANG_EQ] = ACTIONS(3429), + [anon_sym_GT_EQ] = ACTIONS(3429), + [anon_sym_LT_EQ] = ACTIONS(3429), + [anon_sym_DOT] = ACTIONS(3431), + [anon_sym_scoped] = ACTIONS(3687), + [anon_sym_EQ_GT] = ACTIONS(3429), + [anon_sym_COLON_COLON] = ACTIONS(3429), + [anon_sym_var] = ACTIONS(3687), + [anon_sym_yield] = ACTIONS(3687), + [anon_sym_switch] = ACTIONS(3431), + [anon_sym_when] = ACTIONS(3687), + [sym_discard] = ACTIONS(3620), + [anon_sym_DOT_DOT] = ACTIONS(3429), + [anon_sym_and] = ACTIONS(3603), + [anon_sym_or] = ACTIONS(3603), + [anon_sym_PLUS_EQ] = ACTIONS(3429), + [anon_sym_DASH_EQ] = ACTIONS(3429), + [anon_sym_STAR_EQ] = ACTIONS(3429), + [anon_sym_SLASH_EQ] = ACTIONS(3429), + [anon_sym_PERCENT_EQ] = ACTIONS(3429), + [anon_sym_AMP_EQ] = ACTIONS(3429), + [anon_sym_CARET_EQ] = ACTIONS(3429), + [anon_sym_PIPE_EQ] = ACTIONS(3429), + [anon_sym_LT_LT_EQ] = ACTIONS(3429), + [anon_sym_GT_GT_EQ] = ACTIONS(3429), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3429), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3429), + [anon_sym_AMP_AMP] = ACTIONS(3429), + [anon_sym_PIPE_PIPE] = ACTIONS(3429), + [anon_sym_QMARK_QMARK] = ACTIONS(3431), + [anon_sym_from] = ACTIONS(3687), + [anon_sym_into] = ACTIONS(3687), + [anon_sym_join] = ACTIONS(3687), + [anon_sym_on] = ACTIONS(3687), + [anon_sym_equals] = ACTIONS(3687), + [anon_sym_let] = ACTIONS(3687), + [anon_sym_orderby] = ACTIONS(3687), + [anon_sym_ascending] = ACTIONS(3687), + [anon_sym_descending] = ACTIONS(3687), + [anon_sym_group] = ACTIONS(3687), + [anon_sym_by] = ACTIONS(3687), + [anon_sym_select] = ACTIONS(3687), + [anon_sym_as] = ACTIONS(3431), + [anon_sym_is] = ACTIONS(3431), + [anon_sym_DASH_GT] = ACTIONS(3429), + [anon_sym_with] = ACTIONS(3431), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -398469,92 +398239,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2183), [sym_preproc_define] = STATE(2183), [sym_preproc_undef] = STATE(2183), - [sym__identifier_token] = ACTIONS(3679), - [anon_sym_alias] = ACTIONS(3679), - [anon_sym_SEMI] = ACTIONS(3681), - [anon_sym_global] = ACTIONS(3679), - [anon_sym_EQ] = ACTIONS(3679), - [anon_sym_LBRACK] = ACTIONS(3681), - [anon_sym_COLON] = ACTIONS(3681), - [anon_sym_COMMA] = ACTIONS(3681), - [anon_sym_RBRACK] = ACTIONS(3681), - [anon_sym_LPAREN] = ACTIONS(3681), - [anon_sym_RPAREN] = ACTIONS(3681), - [anon_sym_LBRACE] = ACTIONS(3681), - [anon_sym_RBRACE] = ACTIONS(3681), - [anon_sym_file] = ACTIONS(3679), - [anon_sym_LT] = ACTIONS(3679), - [anon_sym_GT] = ACTIONS(3679), - [anon_sym_in] = ACTIONS(3679), - [anon_sym_where] = ACTIONS(3679), - [anon_sym_QMARK] = ACTIONS(3679), - [anon_sym_notnull] = ACTIONS(3679), - [anon_sym_unmanaged] = ACTIONS(3679), - [anon_sym_operator] = ACTIONS(3679), - [anon_sym_BANG] = ACTIONS(3679), - [anon_sym_PLUS_PLUS] = ACTIONS(3681), - [anon_sym_DASH_DASH] = ACTIONS(3681), - [anon_sym_PLUS] = ACTIONS(3679), - [anon_sym_DASH] = ACTIONS(3679), - [anon_sym_STAR] = ACTIONS(3679), - [anon_sym_SLASH] = ACTIONS(3679), - [anon_sym_PERCENT] = ACTIONS(3679), - [anon_sym_CARET] = ACTIONS(3679), - [anon_sym_PIPE] = ACTIONS(3679), - [anon_sym_AMP] = ACTIONS(3679), - [anon_sym_LT_LT] = ACTIONS(3679), - [anon_sym_GT_GT] = ACTIONS(3679), - [anon_sym_GT_GT_GT] = ACTIONS(3679), - [anon_sym_EQ_EQ] = ACTIONS(3681), - [anon_sym_BANG_EQ] = ACTIONS(3681), - [anon_sym_GT_EQ] = ACTIONS(3681), - [anon_sym_LT_EQ] = ACTIONS(3681), - [anon_sym_this] = ACTIONS(3679), - [anon_sym_DOT] = ACTIONS(3679), - [anon_sym_scoped] = ACTIONS(3679), - [anon_sym_EQ_GT] = ACTIONS(3681), - [anon_sym_var] = ACTIONS(3679), - [anon_sym_yield] = ACTIONS(3679), - [anon_sym_switch] = ACTIONS(3679), - [anon_sym_when] = ACTIONS(3679), - [sym_discard] = ACTIONS(3679), - [anon_sym_DOT_DOT] = ACTIONS(3681), - [anon_sym_and] = ACTIONS(3679), - [anon_sym_or] = ACTIONS(3679), - [anon_sym_PLUS_EQ] = ACTIONS(3681), - [anon_sym_DASH_EQ] = ACTIONS(3681), - [anon_sym_STAR_EQ] = ACTIONS(3681), - [anon_sym_SLASH_EQ] = ACTIONS(3681), - [anon_sym_PERCENT_EQ] = ACTIONS(3681), - [anon_sym_AMP_EQ] = ACTIONS(3681), - [anon_sym_CARET_EQ] = ACTIONS(3681), - [anon_sym_PIPE_EQ] = ACTIONS(3681), - [anon_sym_LT_LT_EQ] = ACTIONS(3681), - [anon_sym_GT_GT_EQ] = ACTIONS(3681), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3681), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3681), - [anon_sym_AMP_AMP] = ACTIONS(3681), - [anon_sym_PIPE_PIPE] = ACTIONS(3681), - [anon_sym_QMARK_QMARK] = ACTIONS(3679), - [anon_sym_from] = ACTIONS(3679), - [anon_sym_into] = ACTIONS(3679), - [anon_sym_join] = ACTIONS(3679), - [anon_sym_on] = ACTIONS(3679), - [anon_sym_equals] = ACTIONS(3679), - [anon_sym_let] = ACTIONS(3679), - [anon_sym_orderby] = ACTIONS(3679), - [anon_sym_ascending] = ACTIONS(3679), - [anon_sym_descending] = ACTIONS(3679), - [anon_sym_group] = ACTIONS(3679), - [anon_sym_by] = ACTIONS(3679), - [anon_sym_select] = ACTIONS(3679), - [anon_sym_as] = ACTIONS(3679), - [anon_sym_is] = ACTIONS(3679), - [anon_sym_DASH_GT] = ACTIONS(3681), - [anon_sym_with] = ACTIONS(3679), - [aux_sym_preproc_if_token3] = ACTIONS(3681), - [aux_sym_preproc_else_token1] = ACTIONS(3681), - [aux_sym_preproc_elif_token1] = ACTIONS(3681), + [sym__identifier_token] = ACTIONS(3669), + [anon_sym_alias] = ACTIONS(3669), + [anon_sym_SEMI] = ACTIONS(3675), + [anon_sym_global] = ACTIONS(3669), + [anon_sym_EQ] = ACTIONS(3673), + [anon_sym_LBRACK] = ACTIONS(3675), + [anon_sym_COLON] = ACTIONS(3675), + [anon_sym_COMMA] = ACTIONS(3675), + [anon_sym_RBRACK] = ACTIONS(3675), + [anon_sym_LPAREN] = ACTIONS(3675), + [anon_sym_RPAREN] = ACTIONS(3675), + [anon_sym_LBRACE] = ACTIONS(3678), + [anon_sym_RBRACE] = ACTIONS(3675), + [anon_sym_file] = ACTIONS(3669), + [anon_sym_LT] = ACTIONS(3680), + [anon_sym_GT] = ACTIONS(3680), + [anon_sym_in] = ACTIONS(3680), + [anon_sym_where] = ACTIONS(3669), + [anon_sym_QMARK] = ACTIONS(3680), + [anon_sym_notnull] = ACTIONS(3669), + [anon_sym_unmanaged] = ACTIONS(3669), + [anon_sym_BANG] = ACTIONS(3680), + [anon_sym_PLUS_PLUS] = ACTIONS(3675), + [anon_sym_DASH_DASH] = ACTIONS(3675), + [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(3675), + [anon_sym_BANG_EQ] = ACTIONS(3675), + [anon_sym_GT_EQ] = ACTIONS(3675), + [anon_sym_LT_EQ] = ACTIONS(3675), + [anon_sym_DOT] = ACTIONS(3680), + [anon_sym_scoped] = ACTIONS(3669), + [anon_sym_EQ_GT] = ACTIONS(3675), + [anon_sym_var] = ACTIONS(3669), + [anon_sym_yield] = ACTIONS(3669), + [anon_sym_switch] = ACTIONS(3680), + [anon_sym_when] = ACTIONS(3669), + [sym_discard] = ACTIONS(3669), + [anon_sym_DOT_DOT] = ACTIONS(3675), + [anon_sym_and] = ACTIONS(3680), + [anon_sym_or] = ACTIONS(3680), + [anon_sym_PLUS_EQ] = ACTIONS(3671), + [anon_sym_DASH_EQ] = ACTIONS(3671), + [anon_sym_STAR_EQ] = ACTIONS(3671), + [anon_sym_SLASH_EQ] = ACTIONS(3671), + [anon_sym_PERCENT_EQ] = ACTIONS(3671), + [anon_sym_AMP_EQ] = ACTIONS(3671), + [anon_sym_CARET_EQ] = ACTIONS(3671), + [anon_sym_PIPE_EQ] = ACTIONS(3671), + [anon_sym_LT_LT_EQ] = ACTIONS(3671), + [anon_sym_GT_GT_EQ] = ACTIONS(3671), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3671), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3671), + [anon_sym_AMP_AMP] = ACTIONS(3675), + [anon_sym_PIPE_PIPE] = ACTIONS(3675), + [anon_sym_QMARK_QMARK] = ACTIONS(3680), + [anon_sym_from] = ACTIONS(3669), + [anon_sym_into] = ACTIONS(3669), + [anon_sym_join] = ACTIONS(3669), + [anon_sym_on] = ACTIONS(3669), + [anon_sym_equals] = ACTIONS(3669), + [anon_sym_let] = ACTIONS(3669), + [anon_sym_orderby] = ACTIONS(3669), + [anon_sym_ascending] = ACTIONS(3669), + [anon_sym_descending] = ACTIONS(3669), + [anon_sym_group] = ACTIONS(3669), + [anon_sym_by] = ACTIONS(3669), + [anon_sym_select] = ACTIONS(3669), + [anon_sym_as] = ACTIONS(3680), + [anon_sym_is] = ACTIONS(3680), + [anon_sym_DASH_GT] = ACTIONS(3675), + [anon_sym_with] = ACTIONS(3680), + [aux_sym_preproc_if_token3] = ACTIONS(3675), + [aux_sym_preproc_else_token1] = ACTIONS(3675), + [aux_sym_preproc_elif_token1] = ACTIONS(3675), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -398567,7 +398335,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2184] = { - [sym_type_argument_list] = STATE(2183), [sym_preproc_region] = STATE(2184), [sym_preproc_endregion] = STATE(2184), [sym_preproc_line] = STATE(2184), @@ -398577,90 +398344,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2184), [sym_preproc_define] = STATE(2184), [sym_preproc_undef] = STATE(2184), - [sym__identifier_token] = ACTIONS(3660), - [anon_sym_alias] = ACTIONS(3660), - [anon_sym_SEMI] = ACTIONS(3662), - [anon_sym_global] = ACTIONS(3660), - [anon_sym_EQ] = ACTIONS(3660), - [anon_sym_LBRACK] = ACTIONS(3662), - [anon_sym_COLON] = ACTIONS(3662), - [anon_sym_COMMA] = ACTIONS(3662), - [anon_sym_RBRACK] = ACTIONS(3662), - [anon_sym_LPAREN] = ACTIONS(3662), - [anon_sym_RPAREN] = ACTIONS(3662), - [anon_sym_LBRACE] = ACTIONS(3662), - [anon_sym_RBRACE] = ACTIONS(3662), - [anon_sym_file] = ACTIONS(3660), - [anon_sym_LT] = ACTIONS(3664), - [anon_sym_GT] = ACTIONS(3660), - [anon_sym_in] = ACTIONS(3660), - [anon_sym_where] = ACTIONS(3660), - [anon_sym_QMARK] = ACTIONS(3660), - [anon_sym_notnull] = ACTIONS(3660), - [anon_sym_unmanaged] = ACTIONS(3660), - [anon_sym_BANG] = ACTIONS(3660), - [anon_sym_PLUS_PLUS] = ACTIONS(3662), - [anon_sym_DASH_DASH] = ACTIONS(3662), - [anon_sym_PLUS] = ACTIONS(3660), - [anon_sym_DASH] = ACTIONS(3660), - [anon_sym_STAR] = ACTIONS(3660), - [anon_sym_SLASH] = ACTIONS(3660), - [anon_sym_PERCENT] = ACTIONS(3660), - [anon_sym_CARET] = ACTIONS(3660), - [anon_sym_PIPE] = ACTIONS(3660), - [anon_sym_AMP] = ACTIONS(3660), - [anon_sym_LT_LT] = ACTIONS(3660), - [anon_sym_GT_GT] = ACTIONS(3660), - [anon_sym_GT_GT_GT] = ACTIONS(3660), - [anon_sym_EQ_EQ] = ACTIONS(3662), - [anon_sym_BANG_EQ] = ACTIONS(3662), - [anon_sym_GT_EQ] = ACTIONS(3662), - [anon_sym_LT_EQ] = ACTIONS(3662), - [anon_sym_DOT] = ACTIONS(3660), - [anon_sym_scoped] = ACTIONS(3660), - [anon_sym_EQ_GT] = ACTIONS(3662), - [anon_sym_var] = ACTIONS(3660), - [anon_sym_yield] = ACTIONS(3660), - [anon_sym_switch] = ACTIONS(3660), - [anon_sym_when] = ACTIONS(3660), - [sym_discard] = ACTIONS(3660), - [anon_sym_DOT_DOT] = ACTIONS(3662), - [anon_sym_and] = ACTIONS(3660), - [anon_sym_or] = ACTIONS(3660), - [anon_sym_PLUS_EQ] = ACTIONS(3662), - [anon_sym_DASH_EQ] = ACTIONS(3662), - [anon_sym_STAR_EQ] = ACTIONS(3662), - [anon_sym_SLASH_EQ] = ACTIONS(3662), - [anon_sym_PERCENT_EQ] = ACTIONS(3662), - [anon_sym_AMP_EQ] = ACTIONS(3662), - [anon_sym_CARET_EQ] = ACTIONS(3662), - [anon_sym_PIPE_EQ] = ACTIONS(3662), - [anon_sym_LT_LT_EQ] = ACTIONS(3662), - [anon_sym_GT_GT_EQ] = ACTIONS(3662), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3662), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3662), - [anon_sym_AMP_AMP] = ACTIONS(3662), - [anon_sym_PIPE_PIPE] = ACTIONS(3662), - [anon_sym_QMARK_QMARK] = ACTIONS(3660), - [anon_sym_from] = ACTIONS(3660), - [anon_sym_into] = ACTIONS(3660), - [anon_sym_join] = ACTIONS(3660), - [anon_sym_on] = ACTIONS(3660), - [anon_sym_equals] = ACTIONS(3660), - [anon_sym_let] = ACTIONS(3660), - [anon_sym_orderby] = ACTIONS(3660), - [anon_sym_ascending] = ACTIONS(3660), - [anon_sym_descending] = ACTIONS(3660), - [anon_sym_group] = ACTIONS(3660), - [anon_sym_by] = ACTIONS(3660), - [anon_sym_select] = ACTIONS(3660), - [anon_sym_as] = ACTIONS(3660), - [anon_sym_is] = ACTIONS(3660), - [anon_sym_DASH_GT] = ACTIONS(3662), - [anon_sym_with] = ACTIONS(3660), - [aux_sym_preproc_if_token3] = ACTIONS(3662), - [aux_sym_preproc_else_token1] = ACTIONS(3662), - [aux_sym_preproc_elif_token1] = ACTIONS(3662), + [sym__identifier_token] = ACTIONS(3691), + [anon_sym_alias] = ACTIONS(3691), + [anon_sym_SEMI] = ACTIONS(3693), + [anon_sym_global] = ACTIONS(3691), + [anon_sym_EQ] = ACTIONS(3696), + [anon_sym_LBRACK] = ACTIONS(3698), + [anon_sym_COLON] = ACTIONS(3693), + [anon_sym_COMMA] = ACTIONS(3693), + [anon_sym_RBRACK] = ACTIONS(3693), + [anon_sym_LPAREN] = ACTIONS(3698), + [anon_sym_RPAREN] = ACTIONS(3693), + [anon_sym_LBRACE] = ACTIONS(3702), + [anon_sym_RBRACE] = ACTIONS(3693), + [anon_sym_file] = ACTIONS(3691), + [anon_sym_LT] = ACTIONS(3704), + [anon_sym_GT] = ACTIONS(3704), + [anon_sym_in] = ACTIONS(3708), + [anon_sym_where] = ACTIONS(3691), + [anon_sym_QMARK] = ACTIONS(3704), + [anon_sym_notnull] = ACTIONS(3691), + [anon_sym_unmanaged] = ACTIONS(3691), + [anon_sym_BANG] = ACTIONS(3704), + [anon_sym_PLUS_PLUS] = ACTIONS(3698), + [anon_sym_DASH_DASH] = ACTIONS(3698), + [anon_sym_PLUS] = ACTIONS(3704), + [anon_sym_DASH] = ACTIONS(3704), + [anon_sym_STAR] = ACTIONS(3704), + [anon_sym_SLASH] = ACTIONS(3704), + [anon_sym_PERCENT] = ACTIONS(3704), + [anon_sym_CARET] = ACTIONS(3704), + [anon_sym_PIPE] = ACTIONS(3704), + [anon_sym_AMP] = ACTIONS(3704), + [anon_sym_LT_LT] = ACTIONS(3704), + [anon_sym_GT_GT] = ACTIONS(3704), + [anon_sym_GT_GT_GT] = ACTIONS(3704), + [anon_sym_EQ_EQ] = ACTIONS(3698), + [anon_sym_BANG_EQ] = ACTIONS(3698), + [anon_sym_GT_EQ] = ACTIONS(3698), + [anon_sym_LT_EQ] = ACTIONS(3698), + [anon_sym_DOT] = ACTIONS(3704), + [anon_sym_scoped] = ACTIONS(3691), + [anon_sym_EQ_GT] = ACTIONS(3693), + [anon_sym_var] = ACTIONS(3691), + [anon_sym_yield] = ACTIONS(3691), + [anon_sym_switch] = ACTIONS(3704), + [anon_sym_when] = ACTIONS(3691), + [sym_discard] = ACTIONS(3691), + [anon_sym_DOT_DOT] = ACTIONS(3698), + [anon_sym_and] = ACTIONS(3708), + [anon_sym_or] = ACTIONS(3708), + [anon_sym_PLUS_EQ] = ACTIONS(3711), + [anon_sym_DASH_EQ] = ACTIONS(3711), + [anon_sym_STAR_EQ] = ACTIONS(3711), + [anon_sym_SLASH_EQ] = ACTIONS(3711), + [anon_sym_PERCENT_EQ] = ACTIONS(3711), + [anon_sym_AMP_EQ] = ACTIONS(3711), + [anon_sym_CARET_EQ] = ACTIONS(3711), + [anon_sym_PIPE_EQ] = ACTIONS(3711), + [anon_sym_LT_LT_EQ] = ACTIONS(3711), + [anon_sym_GT_GT_EQ] = ACTIONS(3711), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3711), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3711), + [anon_sym_AMP_AMP] = ACTIONS(3698), + [anon_sym_PIPE_PIPE] = ACTIONS(3698), + [anon_sym_QMARK_QMARK] = ACTIONS(3704), + [anon_sym_from] = ACTIONS(3691), + [anon_sym_into] = ACTIONS(3691), + [anon_sym_join] = ACTIONS(3691), + [anon_sym_on] = ACTIONS(3691), + [anon_sym_equals] = ACTIONS(3691), + [anon_sym_let] = ACTIONS(3691), + [anon_sym_orderby] = ACTIONS(3691), + [anon_sym_ascending] = ACTIONS(3691), + [anon_sym_descending] = ACTIONS(3691), + [anon_sym_group] = ACTIONS(3691), + [anon_sym_by] = ACTIONS(3691), + [anon_sym_select] = ACTIONS(3691), + [anon_sym_as] = ACTIONS(3704), + [anon_sym_is] = ACTIONS(3704), + [anon_sym_DASH_GT] = ACTIONS(3698), + [anon_sym_with] = ACTIONS(3704), + [aux_sym_preproc_if_token3] = ACTIONS(3693), + [aux_sym_preproc_else_token1] = ACTIONS(3693), + [aux_sym_preproc_elif_token1] = ACTIONS(3693), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -398682,91 +398449,90 @@ 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(3619), - [anon_sym_alias] = ACTIONS(3619), - [anon_sym_SEMI] = ACTIONS(3616), - [anon_sym_global] = ACTIONS(3619), - [anon_sym_EQ] = ACTIONS(3447), - [anon_sym_LBRACK] = ACTIONS(3616), - [anon_sym_COLON] = ACTIONS(3619), - [anon_sym_COMMA] = ACTIONS(3616), - [anon_sym_RBRACK] = ACTIONS(3616), - [anon_sym_LPAREN] = ACTIONS(3616), - [anon_sym_RPAREN] = ACTIONS(3616), - [anon_sym_LBRACE] = ACTIONS(3616), - [anon_sym_RBRACE] = ACTIONS(3616), - [anon_sym_file] = ACTIONS(3619), - [anon_sym_LT] = ACTIONS(3619), - [anon_sym_GT] = ACTIONS(3619), - [anon_sym_in] = ACTIONS(3619), - [anon_sym_where] = ACTIONS(3619), - [anon_sym_QMARK] = ACTIONS(3619), - [anon_sym_notnull] = ACTIONS(3619), - [anon_sym_unmanaged] = ACTIONS(3619), - [anon_sym_BANG] = ACTIONS(3619), - [anon_sym_PLUS_PLUS] = ACTIONS(3616), - [anon_sym_DASH_DASH] = ACTIONS(3616), - [anon_sym_PLUS] = ACTIONS(3619), - [anon_sym_DASH] = ACTIONS(3619), - [anon_sym_STAR] = ACTIONS(3619), - [anon_sym_SLASH] = ACTIONS(3619), - [anon_sym_PERCENT] = ACTIONS(3619), - [anon_sym_CARET] = ACTIONS(3619), - [anon_sym_PIPE] = ACTIONS(3619), - [anon_sym_AMP] = ACTIONS(3619), - [anon_sym_LT_LT] = ACTIONS(3619), - [anon_sym_GT_GT] = ACTIONS(3619), - [anon_sym_GT_GT_GT] = ACTIONS(3619), - [anon_sym_EQ_EQ] = ACTIONS(3616), - [anon_sym_BANG_EQ] = ACTIONS(3616), - [anon_sym_GT_EQ] = ACTIONS(3616), - [anon_sym_LT_EQ] = ACTIONS(3616), - [anon_sym_DOT] = ACTIONS(3619), - [anon_sym_scoped] = ACTIONS(3619), - [anon_sym_EQ_GT] = ACTIONS(3445), - [anon_sym_COLON_COLON] = ACTIONS(3445), - [anon_sym_var] = ACTIONS(3619), - [anon_sym_yield] = ACTIONS(3619), - [anon_sym_switch] = ACTIONS(3619), - [anon_sym_when] = ACTIONS(3619), - [sym_discard] = ACTIONS(3619), - [anon_sym_DOT_DOT] = ACTIONS(3616), - [anon_sym_and] = ACTIONS(3619), - [anon_sym_or] = ACTIONS(3619), - [anon_sym_PLUS_EQ] = ACTIONS(3445), - [anon_sym_DASH_EQ] = ACTIONS(3445), - [anon_sym_STAR_EQ] = ACTIONS(3445), - [anon_sym_SLASH_EQ] = ACTIONS(3445), - [anon_sym_PERCENT_EQ] = ACTIONS(3445), - [anon_sym_AMP_EQ] = ACTIONS(3445), - [anon_sym_CARET_EQ] = ACTIONS(3445), - [anon_sym_PIPE_EQ] = ACTIONS(3445), - [anon_sym_LT_LT_EQ] = ACTIONS(3445), - [anon_sym_GT_GT_EQ] = ACTIONS(3445), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3445), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3445), - [anon_sym_AMP_AMP] = ACTIONS(3616), - [anon_sym_PIPE_PIPE] = ACTIONS(3616), - [anon_sym_QMARK_QMARK] = ACTIONS(3619), - [anon_sym_from] = ACTIONS(3619), - [anon_sym_into] = ACTIONS(3619), - [anon_sym_join] = ACTIONS(3619), - [anon_sym_on] = ACTIONS(3619), - [anon_sym_equals] = ACTIONS(3619), - [anon_sym_let] = ACTIONS(3619), - [anon_sym_orderby] = ACTIONS(3619), - [anon_sym_ascending] = ACTIONS(3619), - [anon_sym_descending] = ACTIONS(3619), - [anon_sym_group] = ACTIONS(3619), - [anon_sym_by] = ACTIONS(3619), - [anon_sym_select] = ACTIONS(3619), - [anon_sym_as] = ACTIONS(3619), - [anon_sym_is] = ACTIONS(3619), - [anon_sym_DASH_GT] = ACTIONS(3616), - [anon_sym_with] = ACTIONS(3619), - [aux_sym_preproc_if_token3] = ACTIONS(3616), - [aux_sym_preproc_else_token1] = ACTIONS(3616), - [aux_sym_preproc_elif_token1] = ACTIONS(3616), + [sym__identifier_token] = ACTIONS(3691), + [anon_sym_alias] = ACTIONS(3691), + [anon_sym_SEMI] = ACTIONS(3693), + [anon_sym_global] = ACTIONS(3691), + [anon_sym_EQ] = ACTIONS(3696), + [anon_sym_LBRACK] = ACTIONS(3698), + [anon_sym_COLON] = ACTIONS(3693), + [anon_sym_COMMA] = ACTIONS(3693), + [anon_sym_RBRACK] = ACTIONS(3693), + [anon_sym_LPAREN] = ACTIONS(3698), + [anon_sym_RPAREN] = ACTIONS(3693), + [anon_sym_LBRACE] = ACTIONS(3702), + [anon_sym_RBRACE] = ACTIONS(3693), + [anon_sym_file] = ACTIONS(3691), + [anon_sym_LT] = ACTIONS(3704), + [anon_sym_GT] = ACTIONS(3704), + [anon_sym_in] = ACTIONS(3708), + [anon_sym_where] = ACTIONS(3691), + [anon_sym_QMARK] = ACTIONS(3704), + [anon_sym_notnull] = ACTIONS(3691), + [anon_sym_unmanaged] = ACTIONS(3691), + [anon_sym_BANG] = ACTIONS(3704), + [anon_sym_PLUS_PLUS] = ACTIONS(3698), + [anon_sym_DASH_DASH] = ACTIONS(3698), + [anon_sym_PLUS] = ACTIONS(3704), + [anon_sym_DASH] = ACTIONS(3704), + [anon_sym_STAR] = ACTIONS(3704), + [anon_sym_SLASH] = ACTIONS(3704), + [anon_sym_PERCENT] = ACTIONS(3704), + [anon_sym_CARET] = ACTIONS(3704), + [anon_sym_PIPE] = ACTIONS(3704), + [anon_sym_AMP] = ACTIONS(3704), + [anon_sym_LT_LT] = ACTIONS(3704), + [anon_sym_GT_GT] = ACTIONS(3704), + [anon_sym_GT_GT_GT] = ACTIONS(3704), + [anon_sym_EQ_EQ] = ACTIONS(3698), + [anon_sym_BANG_EQ] = ACTIONS(3698), + [anon_sym_GT_EQ] = ACTIONS(3698), + [anon_sym_LT_EQ] = ACTIONS(3698), + [anon_sym_DOT] = ACTIONS(3704), + [anon_sym_scoped] = ACTIONS(3691), + [anon_sym_EQ_GT] = ACTIONS(3693), + [anon_sym_var] = ACTIONS(3691), + [anon_sym_yield] = ACTIONS(3691), + [anon_sym_switch] = ACTIONS(3704), + [anon_sym_when] = ACTIONS(3691), + [sym_discard] = ACTIONS(3691), + [anon_sym_DOT_DOT] = ACTIONS(3698), + [anon_sym_and] = ACTIONS(3708), + [anon_sym_or] = ACTIONS(3708), + [anon_sym_PLUS_EQ] = ACTIONS(3711), + [anon_sym_DASH_EQ] = ACTIONS(3711), + [anon_sym_STAR_EQ] = ACTIONS(3711), + [anon_sym_SLASH_EQ] = ACTIONS(3711), + [anon_sym_PERCENT_EQ] = ACTIONS(3711), + [anon_sym_AMP_EQ] = ACTIONS(3711), + [anon_sym_CARET_EQ] = ACTIONS(3711), + [anon_sym_PIPE_EQ] = ACTIONS(3711), + [anon_sym_LT_LT_EQ] = ACTIONS(3711), + [anon_sym_GT_GT_EQ] = ACTIONS(3711), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3711), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3711), + [anon_sym_AMP_AMP] = ACTIONS(3698), + [anon_sym_PIPE_PIPE] = ACTIONS(3698), + [anon_sym_QMARK_QMARK] = ACTIONS(3704), + [anon_sym_from] = ACTIONS(3691), + [anon_sym_into] = ACTIONS(3708), + [anon_sym_join] = ACTIONS(3691), + [anon_sym_on] = ACTIONS(3691), + [anon_sym_equals] = ACTIONS(3691), + [anon_sym_let] = ACTIONS(3691), + [anon_sym_orderby] = ACTIONS(3691), + [anon_sym_ascending] = ACTIONS(3691), + [anon_sym_descending] = ACTIONS(3691), + [anon_sym_group] = ACTIONS(3691), + [anon_sym_by] = ACTIONS(3691), + [anon_sym_select] = ACTIONS(3691), + [anon_sym_as] = ACTIONS(3704), + [anon_sym_is] = ACTIONS(3704), + [anon_sym_DASH_GT] = ACTIONS(3698), + [anon_sym_with] = ACTIONS(3704), + [aux_sym_preproc_if_token3] = ACTIONS(3693), + [aux_sym_preproc_else_token1] = ACTIONS(3693), + [aux_sym_preproc_elif_token1] = ACTIONS(3693), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -398779,7 +398545,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2186] = { - [sym_type_argument_list] = STATE(2183), [sym_preproc_region] = STATE(2186), [sym_preproc_endregion] = STATE(2186), [sym_preproc_line] = STATE(2186), @@ -398789,90 +398554,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2186), [sym_preproc_define] = STATE(2186), [sym_preproc_undef] = STATE(2186), - [sym__identifier_token] = ACTIONS(3660), - [anon_sym_alias] = ACTIONS(3660), - [anon_sym_SEMI] = ACTIONS(3662), - [anon_sym_global] = ACTIONS(3660), - [anon_sym_EQ] = ACTIONS(3660), - [anon_sym_LBRACK] = ACTIONS(3662), - [anon_sym_COMMA] = ACTIONS(3662), - [anon_sym_RBRACK] = ACTIONS(3662), - [anon_sym_LPAREN] = ACTIONS(3662), - [anon_sym_RPAREN] = ACTIONS(3662), - [anon_sym_LBRACE] = ACTIONS(3662), - [anon_sym_RBRACE] = ACTIONS(3662), - [anon_sym_file] = ACTIONS(3660), - [anon_sym_LT] = ACTIONS(3664), - [anon_sym_GT] = ACTIONS(3660), - [anon_sym_in] = ACTIONS(3660), - [anon_sym_where] = ACTIONS(3660), - [anon_sym_QMARK] = ACTIONS(3660), - [anon_sym_notnull] = ACTIONS(3660), - [anon_sym_unmanaged] = ACTIONS(3660), - [anon_sym_BANG] = ACTIONS(3660), - [anon_sym_PLUS_PLUS] = ACTIONS(3662), - [anon_sym_DASH_DASH] = ACTIONS(3662), - [anon_sym_PLUS] = ACTIONS(3660), - [anon_sym_DASH] = ACTIONS(3660), - [anon_sym_STAR] = ACTIONS(3660), - [anon_sym_SLASH] = ACTIONS(3660), - [anon_sym_PERCENT] = ACTIONS(3660), - [anon_sym_CARET] = ACTIONS(3660), - [anon_sym_PIPE] = ACTIONS(3660), - [anon_sym_AMP] = ACTIONS(3660), - [anon_sym_LT_LT] = ACTIONS(3660), - [anon_sym_GT_GT] = ACTIONS(3660), - [anon_sym_GT_GT_GT] = ACTIONS(3660), - [anon_sym_EQ_EQ] = ACTIONS(3662), - [anon_sym_BANG_EQ] = ACTIONS(3662), - [anon_sym_GT_EQ] = ACTIONS(3662), - [anon_sym_LT_EQ] = ACTIONS(3662), - [anon_sym_DOT] = ACTIONS(3660), - [anon_sym_scoped] = ACTIONS(3660), - [anon_sym_EQ_GT] = ACTIONS(3667), - [anon_sym_COLON_COLON] = ACTIONS(3683), - [anon_sym_var] = ACTIONS(3660), - [anon_sym_yield] = ACTIONS(3660), - [anon_sym_switch] = ACTIONS(3660), - [anon_sym_when] = ACTIONS(3660), - [sym_discard] = ACTIONS(3660), - [anon_sym_DOT_DOT] = ACTIONS(3662), - [anon_sym_and] = ACTIONS(3660), - [anon_sym_or] = ACTIONS(3660), - [anon_sym_PLUS_EQ] = ACTIONS(3662), - [anon_sym_DASH_EQ] = ACTIONS(3662), - [anon_sym_STAR_EQ] = ACTIONS(3662), - [anon_sym_SLASH_EQ] = ACTIONS(3662), - [anon_sym_PERCENT_EQ] = ACTIONS(3662), - [anon_sym_AMP_EQ] = ACTIONS(3662), - [anon_sym_CARET_EQ] = ACTIONS(3662), - [anon_sym_PIPE_EQ] = ACTIONS(3662), - [anon_sym_LT_LT_EQ] = ACTIONS(3662), - [anon_sym_GT_GT_EQ] = ACTIONS(3662), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3662), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3662), - [anon_sym_AMP_AMP] = ACTIONS(3662), - [anon_sym_PIPE_PIPE] = ACTIONS(3662), - [anon_sym_QMARK_QMARK] = ACTIONS(3660), - [anon_sym_from] = ACTIONS(3660), - [anon_sym_into] = ACTIONS(3660), - [anon_sym_join] = ACTIONS(3660), - [anon_sym_on] = ACTIONS(3660), - [anon_sym_equals] = ACTIONS(3660), - [anon_sym_let] = ACTIONS(3660), - [anon_sym_orderby] = ACTIONS(3660), - [anon_sym_ascending] = ACTIONS(3660), - [anon_sym_descending] = ACTIONS(3660), - [anon_sym_group] = ACTIONS(3660), - [anon_sym_by] = ACTIONS(3660), - [anon_sym_select] = ACTIONS(3660), - [anon_sym_as] = ACTIONS(3660), - [anon_sym_is] = ACTIONS(3660), - [anon_sym_DASH_GT] = ACTIONS(3662), - [anon_sym_with] = ACTIONS(3660), - [aux_sym_preproc_if_token3] = ACTIONS(3662), - [aux_sym_preproc_else_token1] = ACTIONS(3662), - [aux_sym_preproc_elif_token1] = ACTIONS(3662), + [sym__identifier_token] = ACTIONS(3669), + [anon_sym_alias] = ACTIONS(3669), + [anon_sym_SEMI] = ACTIONS(3675), + [anon_sym_global] = ACTIONS(3669), + [anon_sym_EQ] = ACTIONS(3673), + [anon_sym_LBRACK] = ACTIONS(3675), + [anon_sym_COLON] = ACTIONS(3675), + [anon_sym_COMMA] = ACTIONS(3675), + [anon_sym_RBRACK] = ACTIONS(3675), + [anon_sym_LPAREN] = ACTIONS(3675), + [anon_sym_RPAREN] = ACTIONS(3675), + [anon_sym_LBRACE] = ACTIONS(3678), + [anon_sym_RBRACE] = ACTIONS(3675), + [anon_sym_file] = ACTIONS(3669), + [anon_sym_LT] = ACTIONS(3680), + [anon_sym_GT] = ACTIONS(3680), + [anon_sym_in] = ACTIONS(3680), + [anon_sym_where] = ACTIONS(3669), + [anon_sym_QMARK] = ACTIONS(3680), + [anon_sym_notnull] = ACTIONS(3669), + [anon_sym_unmanaged] = ACTIONS(3669), + [anon_sym_BANG] = ACTIONS(3680), + [anon_sym_PLUS_PLUS] = ACTIONS(3675), + [anon_sym_DASH_DASH] = ACTIONS(3675), + [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(3675), + [anon_sym_BANG_EQ] = ACTIONS(3675), + [anon_sym_GT_EQ] = ACTIONS(3675), + [anon_sym_LT_EQ] = ACTIONS(3675), + [anon_sym_DOT] = ACTIONS(3680), + [anon_sym_scoped] = ACTIONS(3669), + [anon_sym_EQ_GT] = ACTIONS(3675), + [anon_sym_var] = ACTIONS(3669), + [anon_sym_yield] = ACTIONS(3669), + [anon_sym_switch] = ACTIONS(3680), + [anon_sym_when] = ACTIONS(3669), + [sym_discard] = ACTIONS(3669), + [anon_sym_DOT_DOT] = ACTIONS(3675), + [anon_sym_and] = ACTIONS(3680), + [anon_sym_or] = ACTIONS(3680), + [anon_sym_PLUS_EQ] = ACTIONS(3671), + [anon_sym_DASH_EQ] = ACTIONS(3671), + [anon_sym_STAR_EQ] = ACTIONS(3671), + [anon_sym_SLASH_EQ] = ACTIONS(3671), + [anon_sym_PERCENT_EQ] = ACTIONS(3671), + [anon_sym_AMP_EQ] = ACTIONS(3671), + [anon_sym_CARET_EQ] = ACTIONS(3671), + [anon_sym_PIPE_EQ] = ACTIONS(3671), + [anon_sym_LT_LT_EQ] = ACTIONS(3671), + [anon_sym_GT_GT_EQ] = ACTIONS(3671), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3671), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3671), + [anon_sym_AMP_AMP] = ACTIONS(3675), + [anon_sym_PIPE_PIPE] = ACTIONS(3675), + [anon_sym_QMARK_QMARK] = ACTIONS(3680), + [anon_sym_from] = ACTIONS(3669), + [anon_sym_into] = ACTIONS(3680), + [anon_sym_join] = ACTIONS(3669), + [anon_sym_on] = ACTIONS(3669), + [anon_sym_equals] = ACTIONS(3669), + [anon_sym_let] = ACTIONS(3669), + [anon_sym_orderby] = ACTIONS(3669), + [anon_sym_ascending] = ACTIONS(3669), + [anon_sym_descending] = ACTIONS(3669), + [anon_sym_group] = ACTIONS(3669), + [anon_sym_by] = ACTIONS(3669), + [anon_sym_select] = ACTIONS(3669), + [anon_sym_as] = ACTIONS(3680), + [anon_sym_is] = ACTIONS(3680), + [anon_sym_DASH_GT] = ACTIONS(3675), + [anon_sym_with] = ACTIONS(3680), + [aux_sym_preproc_if_token3] = ACTIONS(3675), + [aux_sym_preproc_else_token1] = ACTIONS(3675), + [aux_sym_preproc_elif_token1] = ACTIONS(3675), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -398894,90 +398659,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2187), [sym_preproc_define] = STATE(2187), [sym_preproc_undef] = STATE(2187), - [sym__identifier_token] = ACTIONS(3685), - [anon_sym_alias] = ACTIONS(3685), - [anon_sym_SEMI] = ACTIONS(3687), - [anon_sym_global] = ACTIONS(3685), - [anon_sym_EQ] = ACTIONS(3689), - [anon_sym_LBRACK] = ACTIONS(3691), - [anon_sym_COLON] = ACTIONS(3687), - [anon_sym_COMMA] = ACTIONS(3687), - [anon_sym_RBRACK] = ACTIONS(3687), - [anon_sym_LPAREN] = ACTIONS(3691), - [anon_sym_RPAREN] = ACTIONS(3687), - [anon_sym_LBRACE] = ACTIONS(3687), - [anon_sym_RBRACE] = ACTIONS(3687), - [anon_sym_file] = ACTIONS(3685), - [anon_sym_LT] = ACTIONS(3694), - [anon_sym_GT] = ACTIONS(3694), - [anon_sym_in] = ACTIONS(3685), - [anon_sym_where] = ACTIONS(3685), - [anon_sym_QMARK] = ACTIONS(3694), - [anon_sym_notnull] = ACTIONS(3685), - [anon_sym_unmanaged] = ACTIONS(3685), - [anon_sym_BANG] = ACTIONS(3694), - [anon_sym_PLUS_PLUS] = ACTIONS(3691), - [anon_sym_DASH_DASH] = ACTIONS(3691), - [anon_sym_PLUS] = ACTIONS(3694), - [anon_sym_DASH] = ACTIONS(3694), - [anon_sym_STAR] = ACTIONS(3694), - [anon_sym_SLASH] = ACTIONS(3694), - [anon_sym_PERCENT] = ACTIONS(3694), - [anon_sym_CARET] = ACTIONS(3694), - [anon_sym_PIPE] = ACTIONS(3694), - [anon_sym_AMP] = ACTIONS(3694), - [anon_sym_LT_LT] = ACTIONS(3694), - [anon_sym_GT_GT] = ACTIONS(3694), - [anon_sym_GT_GT_GT] = ACTIONS(3694), - [anon_sym_EQ_EQ] = ACTIONS(3691), - [anon_sym_BANG_EQ] = ACTIONS(3691), - [anon_sym_GT_EQ] = ACTIONS(3691), - [anon_sym_LT_EQ] = ACTIONS(3691), - [anon_sym_DOT] = ACTIONS(3694), - [anon_sym_scoped] = ACTIONS(3685), - [anon_sym_EQ_GT] = ACTIONS(3687), - [anon_sym_var] = ACTIONS(3685), - [anon_sym_yield] = ACTIONS(3685), - [anon_sym_switch] = ACTIONS(3694), - [anon_sym_when] = ACTIONS(3685), - [sym_discard] = ACTIONS(3685), - [anon_sym_DOT_DOT] = ACTIONS(3691), - [anon_sym_and] = ACTIONS(3685), - [anon_sym_or] = ACTIONS(3685), - [anon_sym_PLUS_EQ] = ACTIONS(3697), - [anon_sym_DASH_EQ] = ACTIONS(3697), - [anon_sym_STAR_EQ] = ACTIONS(3697), - [anon_sym_SLASH_EQ] = ACTIONS(3697), - [anon_sym_PERCENT_EQ] = ACTIONS(3697), - [anon_sym_AMP_EQ] = ACTIONS(3697), - [anon_sym_CARET_EQ] = ACTIONS(3697), - [anon_sym_PIPE_EQ] = ACTIONS(3697), - [anon_sym_LT_LT_EQ] = ACTIONS(3697), - [anon_sym_GT_GT_EQ] = ACTIONS(3697), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3697), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3697), - [anon_sym_AMP_AMP] = ACTIONS(3691), - [anon_sym_PIPE_PIPE] = ACTIONS(3691), - [anon_sym_QMARK_QMARK] = ACTIONS(3694), - [anon_sym_from] = ACTIONS(3685), - [anon_sym_into] = ACTIONS(3685), - [anon_sym_join] = ACTIONS(3685), - [anon_sym_on] = ACTIONS(3685), - [anon_sym_equals] = ACTIONS(3685), - [anon_sym_let] = ACTIONS(3685), - [anon_sym_orderby] = ACTIONS(3685), - [anon_sym_ascending] = ACTIONS(3685), - [anon_sym_descending] = ACTIONS(3685), - [anon_sym_group] = ACTIONS(3685), - [anon_sym_by] = ACTIONS(3685), - [anon_sym_select] = ACTIONS(3685), - [anon_sym_as] = ACTIONS(3694), - [anon_sym_is] = ACTIONS(3694), - [anon_sym_DASH_GT] = ACTIONS(3691), - [anon_sym_with] = ACTIONS(3694), - [aux_sym_preproc_if_token3] = ACTIONS(3687), - [aux_sym_preproc_else_token1] = ACTIONS(3687), - [aux_sym_preproc_elif_token1] = ACTIONS(3687), + [sym__identifier_token] = ACTIONS(3691), + [anon_sym_alias] = ACTIONS(3691), + [anon_sym_SEMI] = ACTIONS(3702), + [anon_sym_global] = ACTIONS(3691), + [anon_sym_EQ] = ACTIONS(3696), + [anon_sym_LBRACK] = ACTIONS(3713), + [anon_sym_COLON] = ACTIONS(3702), + [anon_sym_COMMA] = ACTIONS(3702), + [anon_sym_RBRACK] = ACTIONS(3702), + [anon_sym_LPAREN] = ACTIONS(3713), + [anon_sym_RPAREN] = ACTIONS(3702), + [anon_sym_LBRACE] = ACTIONS(3702), + [anon_sym_RBRACE] = ACTIONS(3702), + [anon_sym_file] = ACTIONS(3691), + [anon_sym_LT] = ACTIONS(3716), + [anon_sym_GT] = ACTIONS(3716), + [anon_sym_in] = ACTIONS(3691), + [anon_sym_where] = ACTIONS(3691), + [anon_sym_QMARK] = ACTIONS(3716), + [anon_sym_notnull] = ACTIONS(3691), + [anon_sym_unmanaged] = ACTIONS(3691), + [anon_sym_BANG] = ACTIONS(3716), + [anon_sym_PLUS_PLUS] = ACTIONS(3713), + [anon_sym_DASH_DASH] = ACTIONS(3713), + [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(3713), + [anon_sym_BANG_EQ] = ACTIONS(3713), + [anon_sym_GT_EQ] = ACTIONS(3713), + [anon_sym_LT_EQ] = ACTIONS(3713), + [anon_sym_DOT] = ACTIONS(3716), + [anon_sym_scoped] = ACTIONS(3691), + [anon_sym_EQ_GT] = ACTIONS(3702), + [anon_sym_var] = ACTIONS(3691), + [anon_sym_yield] = ACTIONS(3691), + [anon_sym_switch] = ACTIONS(3716), + [anon_sym_when] = ACTIONS(3691), + [sym_discard] = ACTIONS(3691), + [anon_sym_DOT_DOT] = ACTIONS(3713), + [anon_sym_and] = ACTIONS(3691), + [anon_sym_or] = ACTIONS(3691), + [anon_sym_PLUS_EQ] = ACTIONS(3711), + [anon_sym_DASH_EQ] = ACTIONS(3711), + [anon_sym_STAR_EQ] = ACTIONS(3711), + [anon_sym_SLASH_EQ] = ACTIONS(3711), + [anon_sym_PERCENT_EQ] = ACTIONS(3711), + [anon_sym_AMP_EQ] = ACTIONS(3711), + [anon_sym_CARET_EQ] = ACTIONS(3711), + [anon_sym_PIPE_EQ] = ACTIONS(3711), + [anon_sym_LT_LT_EQ] = ACTIONS(3711), + [anon_sym_GT_GT_EQ] = ACTIONS(3711), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3711), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3711), + [anon_sym_AMP_AMP] = ACTIONS(3713), + [anon_sym_PIPE_PIPE] = ACTIONS(3713), + [anon_sym_QMARK_QMARK] = ACTIONS(3716), + [anon_sym_from] = ACTIONS(3691), + [anon_sym_into] = ACTIONS(3691), + [anon_sym_join] = ACTIONS(3691), + [anon_sym_on] = ACTIONS(3691), + [anon_sym_equals] = ACTIONS(3691), + [anon_sym_let] = ACTIONS(3691), + [anon_sym_orderby] = ACTIONS(3691), + [anon_sym_ascending] = ACTIONS(3691), + [anon_sym_descending] = ACTIONS(3691), + [anon_sym_group] = ACTIONS(3691), + [anon_sym_by] = ACTIONS(3691), + [anon_sym_select] = ACTIONS(3691), + [anon_sym_as] = ACTIONS(3716), + [anon_sym_is] = ACTIONS(3716), + [anon_sym_DASH_GT] = ACTIONS(3713), + [anon_sym_with] = ACTIONS(3716), + [aux_sym_preproc_if_token3] = ACTIONS(3702), + [aux_sym_preproc_else_token1] = ACTIONS(3702), + [aux_sym_preproc_elif_token1] = ACTIONS(3702), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -398999,90 +398764,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2188), [sym_preproc_define] = STATE(2188), [sym_preproc_undef] = STATE(2188), - [sym__identifier_token] = ACTIONS(3685), - [anon_sym_alias] = ACTIONS(3685), - [anon_sym_SEMI] = ACTIONS(3691), - [anon_sym_global] = ACTIONS(3685), - [anon_sym_EQ] = ACTIONS(3689), - [anon_sym_LBRACK] = ACTIONS(3691), - [anon_sym_COLON] = ACTIONS(3691), - [anon_sym_COMMA] = ACTIONS(3691), - [anon_sym_RBRACK] = ACTIONS(3691), - [anon_sym_LPAREN] = ACTIONS(3691), - [anon_sym_RPAREN] = ACTIONS(3691), - [anon_sym_LBRACE] = ACTIONS(3687), - [anon_sym_RBRACE] = ACTIONS(3691), - [anon_sym_file] = ACTIONS(3685), - [anon_sym_LT] = ACTIONS(3694), - [anon_sym_GT] = ACTIONS(3694), - [anon_sym_in] = ACTIONS(3694), - [anon_sym_where] = ACTIONS(3685), - [anon_sym_QMARK] = ACTIONS(3694), - [anon_sym_notnull] = ACTIONS(3685), - [anon_sym_unmanaged] = ACTIONS(3685), - [anon_sym_BANG] = ACTIONS(3694), - [anon_sym_PLUS_PLUS] = ACTIONS(3691), - [anon_sym_DASH_DASH] = ACTIONS(3691), - [anon_sym_PLUS] = ACTIONS(3694), - [anon_sym_DASH] = ACTIONS(3694), - [anon_sym_STAR] = ACTIONS(3694), - [anon_sym_SLASH] = ACTIONS(3694), - [anon_sym_PERCENT] = ACTIONS(3694), - [anon_sym_CARET] = ACTIONS(3694), - [anon_sym_PIPE] = ACTIONS(3694), - [anon_sym_AMP] = ACTIONS(3694), - [anon_sym_LT_LT] = ACTIONS(3694), - [anon_sym_GT_GT] = ACTIONS(3694), - [anon_sym_GT_GT_GT] = ACTIONS(3694), - [anon_sym_EQ_EQ] = ACTIONS(3691), - [anon_sym_BANG_EQ] = ACTIONS(3691), - [anon_sym_GT_EQ] = ACTIONS(3691), - [anon_sym_LT_EQ] = ACTIONS(3691), - [anon_sym_DOT] = ACTIONS(3694), - [anon_sym_scoped] = ACTIONS(3685), - [anon_sym_EQ_GT] = ACTIONS(3691), - [anon_sym_var] = ACTIONS(3685), - [anon_sym_yield] = ACTIONS(3685), - [anon_sym_switch] = ACTIONS(3694), - [anon_sym_when] = ACTIONS(3685), - [sym_discard] = ACTIONS(3685), - [anon_sym_DOT_DOT] = ACTIONS(3691), - [anon_sym_and] = ACTIONS(3694), - [anon_sym_or] = ACTIONS(3694), - [anon_sym_PLUS_EQ] = ACTIONS(3697), - [anon_sym_DASH_EQ] = ACTIONS(3697), - [anon_sym_STAR_EQ] = ACTIONS(3697), - [anon_sym_SLASH_EQ] = ACTIONS(3697), - [anon_sym_PERCENT_EQ] = ACTIONS(3697), - [anon_sym_AMP_EQ] = ACTIONS(3697), - [anon_sym_CARET_EQ] = ACTIONS(3697), - [anon_sym_PIPE_EQ] = ACTIONS(3697), - [anon_sym_LT_LT_EQ] = ACTIONS(3697), - [anon_sym_GT_GT_EQ] = ACTIONS(3697), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3697), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3697), - [anon_sym_AMP_AMP] = ACTIONS(3691), - [anon_sym_PIPE_PIPE] = ACTIONS(3691), - [anon_sym_QMARK_QMARK] = ACTIONS(3694), - [anon_sym_from] = ACTIONS(3685), - [anon_sym_into] = ACTIONS(3694), - [anon_sym_join] = ACTIONS(3685), - [anon_sym_on] = ACTIONS(3685), - [anon_sym_equals] = ACTIONS(3685), - [anon_sym_let] = ACTIONS(3685), - [anon_sym_orderby] = ACTIONS(3685), - [anon_sym_ascending] = ACTIONS(3685), - [anon_sym_descending] = ACTIONS(3685), - [anon_sym_group] = ACTIONS(3685), - [anon_sym_by] = ACTIONS(3685), - [anon_sym_select] = ACTIONS(3685), - [anon_sym_as] = ACTIONS(3694), - [anon_sym_is] = ACTIONS(3694), - [anon_sym_DASH_GT] = ACTIONS(3691), - [anon_sym_with] = ACTIONS(3694), - [aux_sym_preproc_if_token3] = ACTIONS(3691), - [aux_sym_preproc_else_token1] = ACTIONS(3691), - [aux_sym_preproc_elif_token1] = ACTIONS(3691), + [sym__identifier_token] = ACTIONS(3669), + [anon_sym_alias] = ACTIONS(3669), + [anon_sym_SEMI] = ACTIONS(3678), + [anon_sym_global] = ACTIONS(3669), + [anon_sym_EQ] = ACTIONS(3673), + [anon_sym_LBRACK] = ACTIONS(3675), + [anon_sym_COLON] = ACTIONS(3678), + [anon_sym_COMMA] = ACTIONS(3678), + [anon_sym_RBRACK] = ACTIONS(3678), + [anon_sym_LPAREN] = ACTIONS(3675), + [anon_sym_RPAREN] = ACTIONS(3678), + [anon_sym_LBRACE] = ACTIONS(3678), + [anon_sym_RBRACE] = ACTIONS(3678), + [anon_sym_file] = ACTIONS(3669), + [anon_sym_LT] = ACTIONS(3680), + [anon_sym_GT] = ACTIONS(3680), + [anon_sym_in] = ACTIONS(3669), + [anon_sym_where] = ACTIONS(3669), + [anon_sym_QMARK] = ACTIONS(3680), + [anon_sym_notnull] = ACTIONS(3669), + [anon_sym_unmanaged] = ACTIONS(3669), + [anon_sym_BANG] = ACTIONS(3680), + [anon_sym_PLUS_PLUS] = ACTIONS(3675), + [anon_sym_DASH_DASH] = ACTIONS(3675), + [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(3675), + [anon_sym_BANG_EQ] = ACTIONS(3675), + [anon_sym_GT_EQ] = ACTIONS(3675), + [anon_sym_LT_EQ] = ACTIONS(3675), + [anon_sym_DOT] = ACTIONS(3680), + [anon_sym_scoped] = ACTIONS(3669), + [anon_sym_EQ_GT] = ACTIONS(3678), + [anon_sym_var] = ACTIONS(3669), + [anon_sym_yield] = ACTIONS(3669), + [anon_sym_switch] = ACTIONS(3680), + [anon_sym_when] = ACTIONS(3669), + [sym_discard] = ACTIONS(3669), + [anon_sym_DOT_DOT] = ACTIONS(3675), + [anon_sym_and] = ACTIONS(3669), + [anon_sym_or] = ACTIONS(3669), + [anon_sym_PLUS_EQ] = ACTIONS(3671), + [anon_sym_DASH_EQ] = ACTIONS(3671), + [anon_sym_STAR_EQ] = ACTIONS(3671), + [anon_sym_SLASH_EQ] = ACTIONS(3671), + [anon_sym_PERCENT_EQ] = ACTIONS(3671), + [anon_sym_AMP_EQ] = ACTIONS(3671), + [anon_sym_CARET_EQ] = ACTIONS(3671), + [anon_sym_PIPE_EQ] = ACTIONS(3671), + [anon_sym_LT_LT_EQ] = ACTIONS(3671), + [anon_sym_GT_GT_EQ] = ACTIONS(3671), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3671), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3671), + [anon_sym_AMP_AMP] = ACTIONS(3675), + [anon_sym_PIPE_PIPE] = ACTIONS(3675), + [anon_sym_QMARK_QMARK] = ACTIONS(3680), + [anon_sym_from] = ACTIONS(3669), + [anon_sym_into] = ACTIONS(3669), + [anon_sym_join] = ACTIONS(3669), + [anon_sym_on] = ACTIONS(3669), + [anon_sym_equals] = ACTIONS(3669), + [anon_sym_let] = ACTIONS(3669), + [anon_sym_orderby] = ACTIONS(3669), + [anon_sym_ascending] = ACTIONS(3669), + [anon_sym_descending] = ACTIONS(3669), + [anon_sym_group] = ACTIONS(3669), + [anon_sym_by] = ACTIONS(3669), + [anon_sym_select] = ACTIONS(3669), + [anon_sym_as] = ACTIONS(3680), + [anon_sym_is] = ACTIONS(3680), + [anon_sym_DASH_GT] = ACTIONS(3675), + [anon_sym_with] = ACTIONS(3680), + [aux_sym_preproc_if_token3] = ACTIONS(3678), + [aux_sym_preproc_else_token1] = ACTIONS(3678), + [aux_sym_preproc_elif_token1] = ACTIONS(3678), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -399104,90 +398869,89 @@ 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(3699), - [anon_sym_alias] = ACTIONS(3699), - [anon_sym_SEMI] = ACTIONS(3701), - [anon_sym_global] = ACTIONS(3699), - [anon_sym_EQ] = ACTIONS(3704), - [anon_sym_LBRACK] = ACTIONS(3706), - [anon_sym_COLON] = ACTIONS(3701), - [anon_sym_COMMA] = ACTIONS(3701), - [anon_sym_RBRACK] = ACTIONS(3701), - [anon_sym_LPAREN] = ACTIONS(3706), - [anon_sym_RPAREN] = ACTIONS(3701), - [anon_sym_LBRACE] = ACTIONS(3710), - [anon_sym_RBRACE] = ACTIONS(3701), - [anon_sym_file] = ACTIONS(3699), - [anon_sym_LT] = ACTIONS(3712), - [anon_sym_GT] = ACTIONS(3712), - [anon_sym_in] = ACTIONS(3716), - [anon_sym_where] = ACTIONS(3699), - [anon_sym_QMARK] = ACTIONS(3712), - [anon_sym_notnull] = ACTIONS(3699), - [anon_sym_unmanaged] = ACTIONS(3699), - [anon_sym_BANG] = ACTIONS(3712), - [anon_sym_PLUS_PLUS] = ACTIONS(3706), - [anon_sym_DASH_DASH] = ACTIONS(3706), - [anon_sym_PLUS] = ACTIONS(3712), - [anon_sym_DASH] = ACTIONS(3712), - [anon_sym_STAR] = ACTIONS(3712), - [anon_sym_SLASH] = ACTIONS(3712), - [anon_sym_PERCENT] = ACTIONS(3712), - [anon_sym_CARET] = ACTIONS(3712), - [anon_sym_PIPE] = ACTIONS(3712), - [anon_sym_AMP] = ACTIONS(3712), - [anon_sym_LT_LT] = ACTIONS(3712), - [anon_sym_GT_GT] = ACTIONS(3712), - [anon_sym_GT_GT_GT] = ACTIONS(3712), - [anon_sym_EQ_EQ] = ACTIONS(3706), - [anon_sym_BANG_EQ] = ACTIONS(3706), - [anon_sym_GT_EQ] = ACTIONS(3706), - [anon_sym_LT_EQ] = ACTIONS(3706), - [anon_sym_DOT] = ACTIONS(3712), - [anon_sym_scoped] = ACTIONS(3699), - [anon_sym_EQ_GT] = ACTIONS(3701), - [anon_sym_var] = ACTIONS(3699), - [anon_sym_yield] = ACTIONS(3699), - [anon_sym_switch] = ACTIONS(3712), - [anon_sym_when] = ACTIONS(3699), - [sym_discard] = ACTIONS(3699), - [anon_sym_DOT_DOT] = ACTIONS(3706), - [anon_sym_and] = ACTIONS(3716), - [anon_sym_or] = ACTIONS(3716), - [anon_sym_PLUS_EQ] = ACTIONS(3719), - [anon_sym_DASH_EQ] = ACTIONS(3719), - [anon_sym_STAR_EQ] = ACTIONS(3719), - [anon_sym_SLASH_EQ] = ACTIONS(3719), - [anon_sym_PERCENT_EQ] = ACTIONS(3719), - [anon_sym_AMP_EQ] = ACTIONS(3719), - [anon_sym_CARET_EQ] = ACTIONS(3719), - [anon_sym_PIPE_EQ] = ACTIONS(3719), - [anon_sym_LT_LT_EQ] = ACTIONS(3719), - [anon_sym_GT_GT_EQ] = ACTIONS(3719), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3719), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3719), - [anon_sym_AMP_AMP] = ACTIONS(3706), - [anon_sym_PIPE_PIPE] = ACTIONS(3706), - [anon_sym_QMARK_QMARK] = ACTIONS(3712), - [anon_sym_from] = ACTIONS(3699), - [anon_sym_into] = ACTIONS(3716), - [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_ascending] = ACTIONS(3699), - [anon_sym_descending] = ACTIONS(3699), - [anon_sym_group] = ACTIONS(3699), - [anon_sym_by] = ACTIONS(3699), - [anon_sym_select] = ACTIONS(3699), - [anon_sym_as] = ACTIONS(3712), - [anon_sym_is] = ACTIONS(3712), - [anon_sym_DASH_GT] = ACTIONS(3706), - [anon_sym_with] = ACTIONS(3712), - [aux_sym_preproc_if_token3] = ACTIONS(3701), - [aux_sym_preproc_else_token1] = ACTIONS(3701), - [aux_sym_preproc_elif_token1] = ACTIONS(3701), + [sym__identifier_token] = ACTIONS(3603), + [anon_sym_alias] = ACTIONS(3603), + [anon_sym_SEMI] = ACTIONS(3429), + [anon_sym_global] = ACTIONS(3603), + [anon_sym_EQ] = ACTIONS(3431), + [anon_sym_LBRACK] = ACTIONS(3429), + [anon_sym_COLON] = ACTIONS(3431), + [anon_sym_COMMA] = ACTIONS(3429), + [anon_sym_RBRACK] = ACTIONS(3429), + [anon_sym_LPAREN] = ACTIONS(3600), + [anon_sym_RPAREN] = ACTIONS(3429), + [anon_sym_RBRACE] = ACTIONS(3429), + [anon_sym_file] = ACTIONS(3603), + [anon_sym_LT] = ACTIONS(3431), + [anon_sym_GT] = ACTIONS(3431), + [anon_sym_in] = ACTIONS(3431), + [anon_sym_where] = ACTIONS(3603), + [anon_sym_QMARK] = ACTIONS(3431), + [anon_sym_notnull] = ACTIONS(3603), + [anon_sym_unmanaged] = ACTIONS(3603), + [anon_sym_BANG] = ACTIONS(3431), + [anon_sym_PLUS_PLUS] = ACTIONS(3429), + [anon_sym_DASH_DASH] = ACTIONS(3429), + [anon_sym_PLUS] = ACTIONS(3431), + [anon_sym_DASH] = ACTIONS(3431), + [anon_sym_STAR] = ACTIONS(3431), + [anon_sym_SLASH] = ACTIONS(3431), + [anon_sym_PERCENT] = ACTIONS(3431), + [anon_sym_CARET] = ACTIONS(3431), + [anon_sym_PIPE] = ACTIONS(3431), + [anon_sym_AMP] = ACTIONS(3431), + [anon_sym_LT_LT] = ACTIONS(3431), + [anon_sym_GT_GT] = ACTIONS(3431), + [anon_sym_GT_GT_GT] = ACTIONS(3431), + [anon_sym_EQ_EQ] = ACTIONS(3429), + [anon_sym_BANG_EQ] = ACTIONS(3429), + [anon_sym_GT_EQ] = ACTIONS(3429), + [anon_sym_LT_EQ] = ACTIONS(3429), + [anon_sym_DOT] = ACTIONS(3431), + [anon_sym_scoped] = ACTIONS(3603), + [anon_sym_EQ_GT] = ACTIONS(3429), + [anon_sym_COLON_COLON] = ACTIONS(3429), + [anon_sym_var] = ACTIONS(3603), + [anon_sym_yield] = ACTIONS(3603), + [anon_sym_switch] = ACTIONS(3431), + [anon_sym_when] = ACTIONS(3603), + [anon_sym_DOT_DOT] = ACTIONS(3429), + [anon_sym_and] = ACTIONS(3431), + [anon_sym_or] = ACTIONS(3431), + [anon_sym_PLUS_EQ] = ACTIONS(3429), + [anon_sym_DASH_EQ] = ACTIONS(3429), + [anon_sym_STAR_EQ] = ACTIONS(3429), + [anon_sym_SLASH_EQ] = ACTIONS(3429), + [anon_sym_PERCENT_EQ] = ACTIONS(3429), + [anon_sym_AMP_EQ] = ACTIONS(3429), + [anon_sym_CARET_EQ] = ACTIONS(3429), + [anon_sym_PIPE_EQ] = ACTIONS(3429), + [anon_sym_LT_LT_EQ] = ACTIONS(3429), + [anon_sym_GT_GT_EQ] = ACTIONS(3429), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3429), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3429), + [anon_sym_AMP_AMP] = ACTIONS(3429), + [anon_sym_PIPE_PIPE] = ACTIONS(3429), + [anon_sym_QMARK_QMARK] = ACTIONS(3431), + [anon_sym_from] = ACTIONS(3603), + [anon_sym_into] = ACTIONS(3603), + [anon_sym_join] = ACTIONS(3603), + [anon_sym_on] = ACTIONS(3603), + [anon_sym_equals] = ACTIONS(3603), + [anon_sym_let] = ACTIONS(3603), + [anon_sym_orderby] = ACTIONS(3603), + [anon_sym_ascending] = ACTIONS(3603), + [anon_sym_descending] = ACTIONS(3603), + [anon_sym_group] = ACTIONS(3603), + [anon_sym_by] = ACTIONS(3603), + [anon_sym_select] = ACTIONS(3603), + [anon_sym_as] = ACTIONS(3431), + [anon_sym_is] = ACTIONS(3431), + [anon_sym_DASH_GT] = ACTIONS(3429), + [anon_sym_with] = ACTIONS(3431), + [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), @@ -399200,6 +398964,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2190] = { + [sym__variable_designation] = STATE(4761), + [sym_parenthesized_variable_designation] = STATE(4760), + [sym_identifier] = STATE(4763), + [sym__reserved_identifier] = STATE(4328), [sym_preproc_region] = STATE(2190), [sym_preproc_endregion] = STATE(2190), [sym_preproc_line] = STATE(2190), @@ -399209,100 +398977,94 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2190), [sym_preproc_define] = STATE(2190), [sym_preproc_undef] = STATE(2190), - [sym__identifier_token] = ACTIONS(3699), - [anon_sym_alias] = ACTIONS(3699), - [anon_sym_SEMI] = ACTIONS(3710), - [anon_sym_global] = ACTIONS(3699), - [anon_sym_EQ] = ACTIONS(3704), - [anon_sym_LBRACK] = ACTIONS(3721), - [anon_sym_COLON] = ACTIONS(3710), - [anon_sym_COMMA] = ACTIONS(3710), - [anon_sym_RBRACK] = ACTIONS(3710), - [anon_sym_LPAREN] = ACTIONS(3721), - [anon_sym_RPAREN] = ACTIONS(3710), - [anon_sym_LBRACE] = ACTIONS(3710), - [anon_sym_RBRACE] = ACTIONS(3710), - [anon_sym_file] = ACTIONS(3699), - [anon_sym_LT] = ACTIONS(3724), - [anon_sym_GT] = ACTIONS(3724), - [anon_sym_in] = ACTIONS(3699), - [anon_sym_where] = ACTIONS(3699), - [anon_sym_QMARK] = ACTIONS(3724), - [anon_sym_notnull] = ACTIONS(3699), - [anon_sym_unmanaged] = ACTIONS(3699), - [anon_sym_BANG] = ACTIONS(3724), - [anon_sym_PLUS_PLUS] = ACTIONS(3721), - [anon_sym_DASH_DASH] = ACTIONS(3721), - [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(3721), - [anon_sym_BANG_EQ] = ACTIONS(3721), - [anon_sym_GT_EQ] = ACTIONS(3721), - [anon_sym_LT_EQ] = ACTIONS(3721), - [anon_sym_DOT] = ACTIONS(3724), - [anon_sym_scoped] = ACTIONS(3699), - [anon_sym_EQ_GT] = ACTIONS(3710), - [anon_sym_var] = ACTIONS(3699), - [anon_sym_yield] = ACTIONS(3699), - [anon_sym_switch] = ACTIONS(3724), - [anon_sym_when] = ACTIONS(3699), - [sym_discard] = ACTIONS(3699), - [anon_sym_DOT_DOT] = ACTIONS(3721), - [anon_sym_and] = ACTIONS(3699), - [anon_sym_or] = ACTIONS(3699), - [anon_sym_PLUS_EQ] = ACTIONS(3719), - [anon_sym_DASH_EQ] = ACTIONS(3719), - [anon_sym_STAR_EQ] = ACTIONS(3719), - [anon_sym_SLASH_EQ] = ACTIONS(3719), - [anon_sym_PERCENT_EQ] = ACTIONS(3719), - [anon_sym_AMP_EQ] = ACTIONS(3719), - [anon_sym_CARET_EQ] = ACTIONS(3719), - [anon_sym_PIPE_EQ] = ACTIONS(3719), - [anon_sym_LT_LT_EQ] = ACTIONS(3719), - [anon_sym_GT_GT_EQ] = ACTIONS(3719), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3719), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3719), - [anon_sym_AMP_AMP] = ACTIONS(3721), - [anon_sym_PIPE_PIPE] = ACTIONS(3721), - [anon_sym_QMARK_QMARK] = ACTIONS(3724), - [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_ascending] = ACTIONS(3699), - [anon_sym_descending] = ACTIONS(3699), - [anon_sym_group] = ACTIONS(3699), - [anon_sym_by] = ACTIONS(3699), - [anon_sym_select] = ACTIONS(3699), - [anon_sym_as] = ACTIONS(3724), - [anon_sym_is] = ACTIONS(3724), - [anon_sym_DASH_GT] = ACTIONS(3721), - [anon_sym_with] = ACTIONS(3724), - [aux_sym_preproc_if_token3] = ACTIONS(3710), - [aux_sym_preproc_else_token1] = ACTIONS(3710), - [aux_sym_preproc_elif_token1] = 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), + [sym__identifier_token] = ACTIONS(3719), + [anon_sym_alias] = ACTIONS(3723), + [anon_sym_global] = ACTIONS(3723), + [anon_sym_EQ] = ACTIONS(3431), + [anon_sym_LBRACK] = ACTIONS(3600), + [anon_sym_COLON] = ACTIONS(3603), + [anon_sym_COMMA] = ACTIONS(3600), + [anon_sym_LPAREN] = ACTIONS(3727), + [anon_sym_LBRACE] = ACTIONS(3600), + [anon_sym_file] = ACTIONS(3723), + [anon_sym_LT] = ACTIONS(3603), + [anon_sym_GT] = ACTIONS(3603), + [anon_sym_where] = ACTIONS(3723), + [anon_sym_QMARK] = ACTIONS(3603), + [anon_sym_notnull] = ACTIONS(3723), + [anon_sym_unmanaged] = ACTIONS(3723), + [anon_sym_BANG] = ACTIONS(3603), + [anon_sym_PLUS_PLUS] = ACTIONS(3600), + [anon_sym_DASH_DASH] = ACTIONS(3600), + [anon_sym_PLUS] = ACTIONS(3603), + [anon_sym_DASH] = ACTIONS(3603), + [anon_sym_STAR] = ACTIONS(3603), + [anon_sym_SLASH] = ACTIONS(3603), + [anon_sym_PERCENT] = ACTIONS(3603), + [anon_sym_CARET] = ACTIONS(3603), + [anon_sym_PIPE] = ACTIONS(3603), + [anon_sym_AMP] = ACTIONS(3603), + [anon_sym_LT_LT] = ACTIONS(3603), + [anon_sym_GT_GT] = ACTIONS(3603), + [anon_sym_GT_GT_GT] = ACTIONS(3603), + [anon_sym_EQ_EQ] = ACTIONS(3600), + [anon_sym_BANG_EQ] = ACTIONS(3600), + [anon_sym_GT_EQ] = ACTIONS(3600), + [anon_sym_LT_EQ] = ACTIONS(3600), + [anon_sym_DOT] = ACTIONS(3603), + [anon_sym_scoped] = ACTIONS(3723), + [anon_sym_EQ_GT] = ACTIONS(3429), + [anon_sym_COLON_COLON] = ACTIONS(3429), + [anon_sym_var] = ACTIONS(3723), + [anon_sym_yield] = ACTIONS(3723), + [anon_sym_switch] = ACTIONS(3603), + [anon_sym_when] = ACTIONS(3723), + [sym_discard] = ACTIONS(3731), + [anon_sym_DOT_DOT] = ACTIONS(3600), + [anon_sym_and] = ACTIONS(3603), + [anon_sym_or] = ACTIONS(3603), + [anon_sym_PLUS_EQ] = ACTIONS(3429), + [anon_sym_DASH_EQ] = ACTIONS(3429), + [anon_sym_STAR_EQ] = ACTIONS(3429), + [anon_sym_SLASH_EQ] = ACTIONS(3429), + [anon_sym_PERCENT_EQ] = ACTIONS(3429), + [anon_sym_AMP_EQ] = ACTIONS(3429), + [anon_sym_CARET_EQ] = ACTIONS(3429), + [anon_sym_PIPE_EQ] = ACTIONS(3429), + [anon_sym_LT_LT_EQ] = ACTIONS(3429), + [anon_sym_GT_GT_EQ] = ACTIONS(3429), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3429), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3429), + [anon_sym_AMP_AMP] = ACTIONS(3600), + [anon_sym_PIPE_PIPE] = ACTIONS(3600), + [anon_sym_QMARK_QMARK] = ACTIONS(3603), + [anon_sym_from] = ACTIONS(3723), + [anon_sym_into] = ACTIONS(3723), + [anon_sym_join] = ACTIONS(3723), + [anon_sym_on] = ACTIONS(3723), + [anon_sym_equals] = ACTIONS(3723), + [anon_sym_let] = ACTIONS(3723), + [anon_sym_orderby] = ACTIONS(3723), + [anon_sym_ascending] = ACTIONS(3723), + [anon_sym_descending] = ACTIONS(3723), + [anon_sym_group] = ACTIONS(3723), + [anon_sym_by] = ACTIONS(3723), + [anon_sym_select] = ACTIONS(3723), + [anon_sym_as] = ACTIONS(3603), + [anon_sym_is] = ACTIONS(3603), + [anon_sym_DASH_GT] = ACTIONS(3600), + [anon_sym_with] = ACTIONS(3603), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_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(3600), }, [2191] = { [sym_preproc_region] = STATE(2191), @@ -399314,90 +399076,88 @@ 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(3699), - [anon_sym_alias] = ACTIONS(3699), - [anon_sym_SEMI] = ACTIONS(3701), - [anon_sym_global] = ACTIONS(3699), - [anon_sym_EQ] = ACTIONS(3704), - [anon_sym_LBRACK] = ACTIONS(3706), - [anon_sym_COLON] = ACTIONS(3701), - [anon_sym_COMMA] = ACTIONS(3701), - [anon_sym_RBRACK] = ACTIONS(3701), - [anon_sym_LPAREN] = ACTIONS(3706), - [anon_sym_RPAREN] = ACTIONS(3701), - [anon_sym_LBRACE] = ACTIONS(3710), - [anon_sym_RBRACE] = ACTIONS(3701), - [anon_sym_file] = ACTIONS(3699), - [anon_sym_LT] = ACTIONS(3712), - [anon_sym_GT] = ACTIONS(3712), - [anon_sym_in] = ACTIONS(3716), - [anon_sym_where] = ACTIONS(3699), - [anon_sym_QMARK] = ACTIONS(3712), - [anon_sym_notnull] = ACTIONS(3699), - [anon_sym_unmanaged] = ACTIONS(3699), - [anon_sym_BANG] = ACTIONS(3712), - [anon_sym_PLUS_PLUS] = ACTIONS(3706), - [anon_sym_DASH_DASH] = ACTIONS(3706), - [anon_sym_PLUS] = ACTIONS(3712), - [anon_sym_DASH] = ACTIONS(3712), - [anon_sym_STAR] = ACTIONS(3712), - [anon_sym_SLASH] = ACTIONS(3712), - [anon_sym_PERCENT] = ACTIONS(3712), - [anon_sym_CARET] = ACTIONS(3712), - [anon_sym_PIPE] = ACTIONS(3712), - [anon_sym_AMP] = ACTIONS(3712), - [anon_sym_LT_LT] = ACTIONS(3712), - [anon_sym_GT_GT] = ACTIONS(3712), - [anon_sym_GT_GT_GT] = ACTIONS(3712), - [anon_sym_EQ_EQ] = ACTIONS(3706), - [anon_sym_BANG_EQ] = ACTIONS(3706), - [anon_sym_GT_EQ] = ACTIONS(3706), - [anon_sym_LT_EQ] = ACTIONS(3706), - [anon_sym_DOT] = ACTIONS(3712), - [anon_sym_scoped] = ACTIONS(3699), - [anon_sym_EQ_GT] = ACTIONS(3701), - [anon_sym_var] = ACTIONS(3699), - [anon_sym_yield] = ACTIONS(3699), - [anon_sym_switch] = ACTIONS(3712), - [anon_sym_when] = ACTIONS(3699), - [sym_discard] = ACTIONS(3699), - [anon_sym_DOT_DOT] = ACTIONS(3706), - [anon_sym_and] = ACTIONS(3716), - [anon_sym_or] = ACTIONS(3716), - [anon_sym_PLUS_EQ] = ACTIONS(3719), - [anon_sym_DASH_EQ] = ACTIONS(3719), - [anon_sym_STAR_EQ] = ACTIONS(3719), - [anon_sym_SLASH_EQ] = ACTIONS(3719), - [anon_sym_PERCENT_EQ] = ACTIONS(3719), - [anon_sym_AMP_EQ] = ACTIONS(3719), - [anon_sym_CARET_EQ] = ACTIONS(3719), - [anon_sym_PIPE_EQ] = ACTIONS(3719), - [anon_sym_LT_LT_EQ] = ACTIONS(3719), - [anon_sym_GT_GT_EQ] = ACTIONS(3719), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3719), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3719), - [anon_sym_AMP_AMP] = ACTIONS(3706), - [anon_sym_PIPE_PIPE] = ACTIONS(3706), - [anon_sym_QMARK_QMARK] = ACTIONS(3712), - [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_ascending] = ACTIONS(3699), - [anon_sym_descending] = ACTIONS(3699), - [anon_sym_group] = ACTIONS(3699), - [anon_sym_by] = ACTIONS(3699), - [anon_sym_select] = ACTIONS(3699), - [anon_sym_as] = ACTIONS(3712), - [anon_sym_is] = ACTIONS(3712), - [anon_sym_DASH_GT] = ACTIONS(3706), - [anon_sym_with] = ACTIONS(3712), - [aux_sym_preproc_if_token3] = ACTIONS(3701), - [aux_sym_preproc_else_token1] = ACTIONS(3701), - [aux_sym_preproc_elif_token1] = ACTIONS(3701), + [sym__identifier_token] = ACTIONS(3669), + [anon_sym_alias] = ACTIONS(3669), + [anon_sym_SEMI] = ACTIONS(3671), + [anon_sym_global] = ACTIONS(3669), + [anon_sym_EQ] = ACTIONS(3673), + [anon_sym_LBRACK] = ACTIONS(3675), + [anon_sym_COLON] = ACTIONS(3671), + [anon_sym_COMMA] = ACTIONS(3671), + [anon_sym_RBRACK] = ACTIONS(3671), + [anon_sym_LPAREN] = ACTIONS(3675), + [anon_sym_RPAREN] = ACTIONS(3671), + [anon_sym_RBRACE] = ACTIONS(3671), + [anon_sym_file] = ACTIONS(3669), + [anon_sym_LT] = ACTIONS(3673), + [anon_sym_GT] = ACTIONS(3673), + [anon_sym_in] = ACTIONS(3673), + [anon_sym_where] = ACTIONS(3669), + [anon_sym_QMARK] = ACTIONS(3680), + [anon_sym_notnull] = ACTIONS(3669), + [anon_sym_unmanaged] = ACTIONS(3669), + [anon_sym_BANG] = ACTIONS(3673), + [anon_sym_PLUS_PLUS] = ACTIONS(3671), + [anon_sym_DASH_DASH] = ACTIONS(3671), + [anon_sym_PLUS] = ACTIONS(3673), + [anon_sym_DASH] = ACTIONS(3673), + [anon_sym_STAR] = ACTIONS(3680), + [anon_sym_SLASH] = ACTIONS(3673), + [anon_sym_PERCENT] = ACTIONS(3673), + [anon_sym_CARET] = ACTIONS(3673), + [anon_sym_PIPE] = ACTIONS(3673), + [anon_sym_AMP] = ACTIONS(3673), + [anon_sym_LT_LT] = ACTIONS(3673), + [anon_sym_GT_GT] = ACTIONS(3673), + [anon_sym_GT_GT_GT] = ACTIONS(3673), + [anon_sym_EQ_EQ] = ACTIONS(3671), + [anon_sym_BANG_EQ] = ACTIONS(3671), + [anon_sym_GT_EQ] = ACTIONS(3671), + [anon_sym_LT_EQ] = ACTIONS(3671), + [anon_sym_DOT] = ACTIONS(3680), + [anon_sym_scoped] = ACTIONS(3669), + [anon_sym_EQ_GT] = ACTIONS(3671), + [anon_sym_var] = ACTIONS(3669), + [anon_sym_yield] = ACTIONS(3669), + [anon_sym_switch] = ACTIONS(3673), + [anon_sym_when] = ACTIONS(3669), + [anon_sym_DOT_DOT] = ACTIONS(3671), + [anon_sym_and] = ACTIONS(3673), + [anon_sym_or] = ACTIONS(3673), + [anon_sym_PLUS_EQ] = ACTIONS(3671), + [anon_sym_DASH_EQ] = ACTIONS(3671), + [anon_sym_STAR_EQ] = ACTIONS(3671), + [anon_sym_SLASH_EQ] = ACTIONS(3671), + [anon_sym_PERCENT_EQ] = ACTIONS(3671), + [anon_sym_AMP_EQ] = ACTIONS(3671), + [anon_sym_CARET_EQ] = ACTIONS(3671), + [anon_sym_PIPE_EQ] = ACTIONS(3671), + [anon_sym_LT_LT_EQ] = ACTIONS(3671), + [anon_sym_GT_GT_EQ] = ACTIONS(3671), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3671), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3671), + [anon_sym_AMP_AMP] = ACTIONS(3671), + [anon_sym_PIPE_PIPE] = ACTIONS(3671), + [anon_sym_QMARK_QMARK] = ACTIONS(3673), + [anon_sym_from] = ACTIONS(3669), + [anon_sym_into] = ACTIONS(3669), + [anon_sym_join] = ACTIONS(3669), + [anon_sym_on] = ACTIONS(3669), + [anon_sym_equals] = ACTIONS(3669), + [anon_sym_let] = ACTIONS(3669), + [anon_sym_orderby] = ACTIONS(3669), + [anon_sym_ascending] = ACTIONS(3669), + [anon_sym_descending] = ACTIONS(3669), + [anon_sym_group] = ACTIONS(3669), + [anon_sym_by] = ACTIONS(3669), + [anon_sym_select] = ACTIONS(3669), + [anon_sym_as] = ACTIONS(3673), + [anon_sym_is] = ACTIONS(3673), + [anon_sym_DASH_GT] = ACTIONS(3675), + [anon_sym_with] = ACTIONS(3673), + [aux_sym_preproc_if_token3] = ACTIONS(3671), + [aux_sym_preproc_else_token1] = ACTIONS(3671), + [aux_sym_preproc_elif_token1] = ACTIONS(3671), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -399410,10 +399170,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2192] = { - [sym__variable_designation] = STATE(3474), - [sym_parenthesized_variable_designation] = STATE(3463), - [sym_identifier] = STATE(3479), - [sym__reserved_identifier] = STATE(2571), + [sym__variable_designation] = STATE(3353), + [sym_parenthesized_variable_designation] = STATE(3352), + [sym_identifier] = STATE(3355), + [sym__reserved_identifier] = STATE(2565), [sym_preproc_region] = STATE(2192), [sym_preproc_endregion] = STATE(2192), [sym_preproc_line] = STATE(2192), @@ -399423,86 +399183,84 @@ 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(3727), - [anon_sym_alias] = ACTIONS(3731), - [anon_sym_global] = ACTIONS(3731), - [anon_sym_EQ] = ACTIONS(3447), - [anon_sym_LBRACK] = ACTIONS(3445), - [anon_sym_COLON] = ACTIONS(3447), - [anon_sym_COMMA] = ACTIONS(3616), - [anon_sym_RBRACK] = ACTIONS(3616), - [anon_sym_LPAREN] = ACTIONS(3632), - [anon_sym_RPAREN] = ACTIONS(3616), - [anon_sym_LBRACE] = ACTIONS(3616), - [anon_sym_RBRACE] = ACTIONS(3616), - [anon_sym_file] = ACTIONS(3731), - [anon_sym_LT] = ACTIONS(3447), - [anon_sym_GT] = ACTIONS(3447), - [anon_sym_where] = ACTIONS(3731), - [anon_sym_QMARK] = ACTIONS(3447), - [anon_sym_notnull] = ACTIONS(3731), - [anon_sym_unmanaged] = ACTIONS(3731), - [anon_sym_BANG] = ACTIONS(3447), - [anon_sym_PLUS_PLUS] = ACTIONS(3445), - [anon_sym_DASH_DASH] = ACTIONS(3445), - [anon_sym_PLUS] = ACTIONS(3447), - [anon_sym_DASH] = ACTIONS(3447), - [anon_sym_STAR] = ACTIONS(3447), - [anon_sym_SLASH] = ACTIONS(3447), - [anon_sym_PERCENT] = ACTIONS(3447), - [anon_sym_CARET] = ACTIONS(3447), - [anon_sym_PIPE] = ACTIONS(3447), - [anon_sym_AMP] = ACTIONS(3447), - [anon_sym_LT_LT] = ACTIONS(3447), - [anon_sym_GT_GT] = ACTIONS(3447), - [anon_sym_GT_GT_GT] = ACTIONS(3447), - [anon_sym_EQ_EQ] = ACTIONS(3445), - [anon_sym_BANG_EQ] = ACTIONS(3445), - [anon_sym_GT_EQ] = ACTIONS(3445), - [anon_sym_LT_EQ] = ACTIONS(3445), - [anon_sym_DOT] = ACTIONS(3447), - [anon_sym_scoped] = ACTIONS(3731), - [anon_sym_EQ_GT] = ACTIONS(3445), - [anon_sym_COLON_COLON] = ACTIONS(3445), - [anon_sym_var] = ACTIONS(3731), - [anon_sym_yield] = ACTIONS(3731), - [anon_sym_switch] = ACTIONS(3447), - [anon_sym_when] = ACTIONS(3731), - [sym_discard] = ACTIONS(3636), - [anon_sym_DOT_DOT] = ACTIONS(3445), - [anon_sym_and] = ACTIONS(3619), - [anon_sym_or] = ACTIONS(3619), - [anon_sym_PLUS_EQ] = ACTIONS(3445), - [anon_sym_DASH_EQ] = ACTIONS(3445), - [anon_sym_STAR_EQ] = ACTIONS(3445), - [anon_sym_SLASH_EQ] = ACTIONS(3445), - [anon_sym_PERCENT_EQ] = ACTIONS(3445), - [anon_sym_AMP_EQ] = ACTIONS(3445), - [anon_sym_CARET_EQ] = ACTIONS(3445), - [anon_sym_PIPE_EQ] = ACTIONS(3445), - [anon_sym_LT_LT_EQ] = ACTIONS(3445), - [anon_sym_GT_GT_EQ] = ACTIONS(3445), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3445), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3445), - [anon_sym_AMP_AMP] = ACTIONS(3445), - [anon_sym_PIPE_PIPE] = ACTIONS(3445), - [anon_sym_QMARK_QMARK] = ACTIONS(3447), - [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_ascending] = ACTIONS(3731), - [anon_sym_descending] = ACTIONS(3731), - [anon_sym_group] = ACTIONS(3731), - [anon_sym_by] = ACTIONS(3731), - [anon_sym_select] = ACTIONS(3731), - [anon_sym_as] = ACTIONS(3447), - [anon_sym_is] = ACTIONS(3447), - [anon_sym_DASH_GT] = ACTIONS(3445), - [anon_sym_with] = ACTIONS(3447), + [sym__identifier_token] = ACTIONS(3683), + [anon_sym_alias] = ACTIONS(3687), + [anon_sym_global] = ACTIONS(3687), + [anon_sym_EQ] = ACTIONS(3431), + [anon_sym_LBRACK] = ACTIONS(3429), + [anon_sym_COLON] = ACTIONS(3431), + [anon_sym_COMMA] = ACTIONS(3600), + [anon_sym_LPAREN] = ACTIONS(3616), + [anon_sym_RPAREN] = ACTIONS(3429), + [anon_sym_LBRACE] = ACTIONS(3600), + [anon_sym_file] = ACTIONS(3687), + [anon_sym_LT] = ACTIONS(3431), + [anon_sym_GT] = ACTIONS(3431), + [anon_sym_where] = ACTIONS(3687), + [anon_sym_QMARK] = ACTIONS(3431), + [anon_sym_notnull] = ACTIONS(3687), + [anon_sym_unmanaged] = ACTIONS(3687), + [anon_sym_BANG] = ACTIONS(3431), + [anon_sym_PLUS_PLUS] = ACTIONS(3429), + [anon_sym_DASH_DASH] = ACTIONS(3429), + [anon_sym_PLUS] = ACTIONS(3431), + [anon_sym_DASH] = ACTIONS(3431), + [anon_sym_STAR] = ACTIONS(3431), + [anon_sym_SLASH] = ACTIONS(3431), + [anon_sym_PERCENT] = ACTIONS(3431), + [anon_sym_CARET] = ACTIONS(3431), + [anon_sym_PIPE] = ACTIONS(3431), + [anon_sym_AMP] = ACTIONS(3431), + [anon_sym_LT_LT] = ACTIONS(3431), + [anon_sym_GT_GT] = ACTIONS(3431), + [anon_sym_GT_GT_GT] = ACTIONS(3431), + [anon_sym_EQ_EQ] = ACTIONS(3429), + [anon_sym_BANG_EQ] = ACTIONS(3429), + [anon_sym_GT_EQ] = ACTIONS(3429), + [anon_sym_LT_EQ] = ACTIONS(3429), + [anon_sym_DOT] = ACTIONS(3431), + [anon_sym_scoped] = ACTIONS(3687), + [anon_sym_EQ_GT] = ACTIONS(3429), + [anon_sym_COLON_COLON] = ACTIONS(3429), + [anon_sym_var] = ACTIONS(3687), + [anon_sym_yield] = ACTIONS(3687), + [anon_sym_switch] = ACTIONS(3431), + [anon_sym_when] = ACTIONS(3687), + [sym_discard] = ACTIONS(3620), + [anon_sym_DOT_DOT] = ACTIONS(3429), + [anon_sym_and] = ACTIONS(3603), + [anon_sym_or] = ACTIONS(3603), + [anon_sym_PLUS_EQ] = ACTIONS(3429), + [anon_sym_DASH_EQ] = ACTIONS(3429), + [anon_sym_STAR_EQ] = ACTIONS(3429), + [anon_sym_SLASH_EQ] = ACTIONS(3429), + [anon_sym_PERCENT_EQ] = ACTIONS(3429), + [anon_sym_AMP_EQ] = ACTIONS(3429), + [anon_sym_CARET_EQ] = ACTIONS(3429), + [anon_sym_PIPE_EQ] = ACTIONS(3429), + [anon_sym_LT_LT_EQ] = ACTIONS(3429), + [anon_sym_GT_GT_EQ] = ACTIONS(3429), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3429), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3429), + [anon_sym_AMP_AMP] = ACTIONS(3429), + [anon_sym_PIPE_PIPE] = ACTIONS(3429), + [anon_sym_QMARK_QMARK] = ACTIONS(3431), + [anon_sym_from] = ACTIONS(3687), + [anon_sym_into] = ACTIONS(3687), + [anon_sym_join] = ACTIONS(3687), + [anon_sym_on] = ACTIONS(3687), + [anon_sym_equals] = ACTIONS(3687), + [anon_sym_let] = ACTIONS(3687), + [anon_sym_orderby] = ACTIONS(3687), + [anon_sym_ascending] = ACTIONS(3687), + [anon_sym_descending] = ACTIONS(3687), + [anon_sym_group] = ACTIONS(3687), + [anon_sym_by] = ACTIONS(3687), + [anon_sym_select] = ACTIONS(3687), + [anon_sym_as] = ACTIONS(3431), + [anon_sym_is] = ACTIONS(3431), + [anon_sym_DASH_GT] = ACTIONS(3429), + [anon_sym_with] = ACTIONS(3431), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -399524,90 +399282,88 @@ 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(3685), - [anon_sym_alias] = ACTIONS(3685), - [anon_sym_SEMI] = ACTIONS(3691), - [anon_sym_global] = ACTIONS(3685), - [anon_sym_EQ] = ACTIONS(3689), - [anon_sym_LBRACK] = ACTIONS(3691), - [anon_sym_COLON] = ACTIONS(3691), - [anon_sym_COMMA] = ACTIONS(3691), - [anon_sym_RBRACK] = ACTIONS(3691), - [anon_sym_LPAREN] = ACTIONS(3691), - [anon_sym_RPAREN] = ACTIONS(3691), - [anon_sym_LBRACE] = ACTIONS(3687), - [anon_sym_RBRACE] = ACTIONS(3691), - [anon_sym_file] = ACTIONS(3685), - [anon_sym_LT] = ACTIONS(3694), - [anon_sym_GT] = ACTIONS(3694), - [anon_sym_in] = ACTIONS(3694), - [anon_sym_where] = ACTIONS(3685), - [anon_sym_QMARK] = ACTIONS(3694), - [anon_sym_notnull] = ACTIONS(3685), - [anon_sym_unmanaged] = ACTIONS(3685), - [anon_sym_BANG] = ACTIONS(3694), - [anon_sym_PLUS_PLUS] = ACTIONS(3691), - [anon_sym_DASH_DASH] = ACTIONS(3691), - [anon_sym_PLUS] = ACTIONS(3694), - [anon_sym_DASH] = ACTIONS(3694), - [anon_sym_STAR] = ACTIONS(3694), - [anon_sym_SLASH] = ACTIONS(3694), - [anon_sym_PERCENT] = ACTIONS(3694), - [anon_sym_CARET] = ACTIONS(3694), - [anon_sym_PIPE] = ACTIONS(3694), - [anon_sym_AMP] = ACTIONS(3694), - [anon_sym_LT_LT] = ACTIONS(3694), - [anon_sym_GT_GT] = ACTIONS(3694), - [anon_sym_GT_GT_GT] = ACTIONS(3694), - [anon_sym_EQ_EQ] = ACTIONS(3691), - [anon_sym_BANG_EQ] = ACTIONS(3691), - [anon_sym_GT_EQ] = ACTIONS(3691), - [anon_sym_LT_EQ] = ACTIONS(3691), - [anon_sym_DOT] = ACTIONS(3694), - [anon_sym_scoped] = ACTIONS(3685), - [anon_sym_EQ_GT] = ACTIONS(3691), - [anon_sym_var] = ACTIONS(3685), - [anon_sym_yield] = ACTIONS(3685), - [anon_sym_switch] = ACTIONS(3694), - [anon_sym_when] = ACTIONS(3685), - [sym_discard] = ACTIONS(3685), - [anon_sym_DOT_DOT] = ACTIONS(3691), - [anon_sym_and] = ACTIONS(3694), - [anon_sym_or] = ACTIONS(3694), - [anon_sym_PLUS_EQ] = ACTIONS(3697), - [anon_sym_DASH_EQ] = ACTIONS(3697), - [anon_sym_STAR_EQ] = ACTIONS(3697), - [anon_sym_SLASH_EQ] = ACTIONS(3697), - [anon_sym_PERCENT_EQ] = ACTIONS(3697), - [anon_sym_AMP_EQ] = ACTIONS(3697), - [anon_sym_CARET_EQ] = ACTIONS(3697), - [anon_sym_PIPE_EQ] = ACTIONS(3697), - [anon_sym_LT_LT_EQ] = ACTIONS(3697), - [anon_sym_GT_GT_EQ] = ACTIONS(3697), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3697), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3697), - [anon_sym_AMP_AMP] = ACTIONS(3691), - [anon_sym_PIPE_PIPE] = ACTIONS(3691), - [anon_sym_QMARK_QMARK] = ACTIONS(3694), - [anon_sym_from] = ACTIONS(3685), - [anon_sym_into] = ACTIONS(3685), - [anon_sym_join] = ACTIONS(3685), - [anon_sym_on] = ACTIONS(3685), - [anon_sym_equals] = ACTIONS(3685), - [anon_sym_let] = ACTIONS(3685), - [anon_sym_orderby] = ACTIONS(3685), - [anon_sym_ascending] = ACTIONS(3685), - [anon_sym_descending] = ACTIONS(3685), - [anon_sym_group] = ACTIONS(3685), - [anon_sym_by] = ACTIONS(3685), - [anon_sym_select] = ACTIONS(3685), - [anon_sym_as] = ACTIONS(3694), - [anon_sym_is] = ACTIONS(3694), - [anon_sym_DASH_GT] = ACTIONS(3691), - [anon_sym_with] = ACTIONS(3694), - [aux_sym_preproc_if_token3] = ACTIONS(3691), - [aux_sym_preproc_else_token1] = ACTIONS(3691), - [aux_sym_preproc_elif_token1] = ACTIONS(3691), + [sym__identifier_token] = ACTIONS(3691), + [anon_sym_alias] = ACTIONS(3691), + [anon_sym_SEMI] = ACTIONS(3711), + [anon_sym_global] = ACTIONS(3691), + [anon_sym_EQ] = ACTIONS(3696), + [anon_sym_LBRACK] = ACTIONS(3713), + [anon_sym_COLON] = ACTIONS(3711), + [anon_sym_COMMA] = ACTIONS(3711), + [anon_sym_RBRACK] = ACTIONS(3711), + [anon_sym_LPAREN] = ACTIONS(3713), + [anon_sym_RPAREN] = ACTIONS(3711), + [anon_sym_RBRACE] = ACTIONS(3711), + [anon_sym_file] = ACTIONS(3691), + [anon_sym_LT] = ACTIONS(3696), + [anon_sym_GT] = ACTIONS(3696), + [anon_sym_in] = ACTIONS(3696), + [anon_sym_where] = ACTIONS(3691), + [anon_sym_QMARK] = ACTIONS(3716), + [anon_sym_notnull] = ACTIONS(3691), + [anon_sym_unmanaged] = ACTIONS(3691), + [anon_sym_BANG] = ACTIONS(3696), + [anon_sym_PLUS_PLUS] = ACTIONS(3711), + [anon_sym_DASH_DASH] = ACTIONS(3711), + [anon_sym_PLUS] = ACTIONS(3696), + [anon_sym_DASH] = ACTIONS(3696), + [anon_sym_STAR] = ACTIONS(3716), + [anon_sym_SLASH] = ACTIONS(3696), + [anon_sym_PERCENT] = ACTIONS(3696), + [anon_sym_CARET] = ACTIONS(3696), + [anon_sym_PIPE] = ACTIONS(3696), + [anon_sym_AMP] = ACTIONS(3696), + [anon_sym_LT_LT] = ACTIONS(3696), + [anon_sym_GT_GT] = ACTIONS(3696), + [anon_sym_GT_GT_GT] = ACTIONS(3696), + [anon_sym_EQ_EQ] = ACTIONS(3711), + [anon_sym_BANG_EQ] = ACTIONS(3711), + [anon_sym_GT_EQ] = ACTIONS(3711), + [anon_sym_LT_EQ] = ACTIONS(3711), + [anon_sym_DOT] = ACTIONS(3716), + [anon_sym_scoped] = ACTIONS(3691), + [anon_sym_EQ_GT] = ACTIONS(3711), + [anon_sym_var] = ACTIONS(3691), + [anon_sym_yield] = ACTIONS(3691), + [anon_sym_switch] = ACTIONS(3696), + [anon_sym_when] = ACTIONS(3691), + [anon_sym_DOT_DOT] = ACTIONS(3711), + [anon_sym_and] = ACTIONS(3696), + [anon_sym_or] = ACTIONS(3696), + [anon_sym_PLUS_EQ] = ACTIONS(3711), + [anon_sym_DASH_EQ] = ACTIONS(3711), + [anon_sym_STAR_EQ] = ACTIONS(3711), + [anon_sym_SLASH_EQ] = ACTIONS(3711), + [anon_sym_PERCENT_EQ] = ACTIONS(3711), + [anon_sym_AMP_EQ] = ACTIONS(3711), + [anon_sym_CARET_EQ] = ACTIONS(3711), + [anon_sym_PIPE_EQ] = ACTIONS(3711), + [anon_sym_LT_LT_EQ] = ACTIONS(3711), + [anon_sym_GT_GT_EQ] = ACTIONS(3711), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3711), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3711), + [anon_sym_AMP_AMP] = ACTIONS(3711), + [anon_sym_PIPE_PIPE] = ACTIONS(3711), + [anon_sym_QMARK_QMARK] = ACTIONS(3696), + [anon_sym_from] = ACTIONS(3691), + [anon_sym_into] = ACTIONS(3716), + [anon_sym_join] = ACTIONS(3691), + [anon_sym_on] = ACTIONS(3691), + [anon_sym_equals] = ACTIONS(3691), + [anon_sym_let] = ACTIONS(3691), + [anon_sym_orderby] = ACTIONS(3691), + [anon_sym_ascending] = ACTIONS(3691), + [anon_sym_descending] = ACTIONS(3691), + [anon_sym_group] = ACTIONS(3691), + [anon_sym_by] = ACTIONS(3691), + [anon_sym_select] = ACTIONS(3691), + [anon_sym_as] = ACTIONS(3696), + [anon_sym_is] = ACTIONS(3696), + [anon_sym_DASH_GT] = ACTIONS(3713), + [anon_sym_with] = ACTIONS(3696), + [aux_sym_preproc_if_token3] = ACTIONS(3711), + [aux_sym_preproc_else_token1] = ACTIONS(3711), + [aux_sym_preproc_elif_token1] = ACTIONS(3711), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -399629,90 +399385,88 @@ 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(3685), - [anon_sym_alias] = ACTIONS(3685), - [anon_sym_SEMI] = ACTIONS(3697), - [anon_sym_global] = ACTIONS(3685), - [anon_sym_EQ] = ACTIONS(3689), - [anon_sym_LBRACK] = ACTIONS(3691), - [anon_sym_COLON] = ACTIONS(3697), - [anon_sym_COMMA] = ACTIONS(3691), - [anon_sym_RBRACK] = ACTIONS(3691), - [anon_sym_LPAREN] = ACTIONS(3691), - [anon_sym_RPAREN] = ACTIONS(3691), - [anon_sym_LBRACE] = ACTIONS(3687), - [anon_sym_RBRACE] = ACTIONS(3691), - [anon_sym_file] = ACTIONS(3685), - [anon_sym_LT] = ACTIONS(3689), - [anon_sym_GT] = ACTIONS(3689), - [anon_sym_in] = ACTIONS(3689), - [anon_sym_where] = ACTIONS(3685), - [anon_sym_QMARK] = ACTIONS(3694), - [anon_sym_notnull] = ACTIONS(3685), - [anon_sym_unmanaged] = ACTIONS(3685), - [anon_sym_BANG] = ACTIONS(3689), - [anon_sym_PLUS_PLUS] = ACTIONS(3697), - [anon_sym_DASH_DASH] = ACTIONS(3697), - [anon_sym_PLUS] = ACTIONS(3689), - [anon_sym_DASH] = ACTIONS(3689), - [anon_sym_STAR] = ACTIONS(3694), - [anon_sym_SLASH] = ACTIONS(3689), - [anon_sym_PERCENT] = ACTIONS(3689), - [anon_sym_CARET] = ACTIONS(3689), - [anon_sym_PIPE] = ACTIONS(3689), - [anon_sym_AMP] = ACTIONS(3689), - [anon_sym_LT_LT] = ACTIONS(3689), - [anon_sym_GT_GT] = ACTIONS(3689), - [anon_sym_GT_GT_GT] = ACTIONS(3689), - [anon_sym_EQ_EQ] = ACTIONS(3697), - [anon_sym_BANG_EQ] = ACTIONS(3697), - [anon_sym_GT_EQ] = ACTIONS(3697), - [anon_sym_LT_EQ] = ACTIONS(3697), - [anon_sym_DOT] = ACTIONS(3694), - [anon_sym_scoped] = ACTIONS(3685), - [anon_sym_EQ_GT] = ACTIONS(3697), - [anon_sym_var] = ACTIONS(3685), - [anon_sym_yield] = ACTIONS(3685), - [anon_sym_switch] = ACTIONS(3689), - [anon_sym_when] = ACTIONS(3685), - [sym_discard] = ACTIONS(3685), - [anon_sym_DOT_DOT] = ACTIONS(3697), - [anon_sym_and] = ACTIONS(3694), - [anon_sym_or] = ACTIONS(3694), - [anon_sym_PLUS_EQ] = ACTIONS(3697), - [anon_sym_DASH_EQ] = ACTIONS(3697), - [anon_sym_STAR_EQ] = ACTIONS(3697), - [anon_sym_SLASH_EQ] = ACTIONS(3697), - [anon_sym_PERCENT_EQ] = ACTIONS(3697), - [anon_sym_AMP_EQ] = ACTIONS(3697), - [anon_sym_CARET_EQ] = ACTIONS(3697), - [anon_sym_PIPE_EQ] = ACTIONS(3697), - [anon_sym_LT_LT_EQ] = ACTIONS(3697), - [anon_sym_GT_GT_EQ] = ACTIONS(3697), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3697), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3697), - [anon_sym_AMP_AMP] = ACTIONS(3697), - [anon_sym_PIPE_PIPE] = ACTIONS(3697), - [anon_sym_QMARK_QMARK] = ACTIONS(3689), - [anon_sym_from] = ACTIONS(3685), - [anon_sym_into] = ACTIONS(3685), - [anon_sym_join] = ACTIONS(3685), - [anon_sym_on] = ACTIONS(3685), - [anon_sym_equals] = ACTIONS(3685), - [anon_sym_let] = ACTIONS(3685), - [anon_sym_orderby] = ACTIONS(3685), - [anon_sym_ascending] = ACTIONS(3685), - [anon_sym_descending] = ACTIONS(3685), - [anon_sym_group] = ACTIONS(3685), - [anon_sym_by] = ACTIONS(3685), - [anon_sym_select] = ACTIONS(3685), - [anon_sym_as] = ACTIONS(3689), - [anon_sym_is] = ACTIONS(3689), - [anon_sym_DASH_GT] = ACTIONS(3691), - [anon_sym_with] = ACTIONS(3689), - [aux_sym_preproc_if_token3] = ACTIONS(3697), - [aux_sym_preproc_else_token1] = ACTIONS(3697), - [aux_sym_preproc_elif_token1] = ACTIONS(3697), + [sym__identifier_token] = ACTIONS(3669), + [anon_sym_alias] = ACTIONS(3669), + [anon_sym_SEMI] = ACTIONS(3671), + [anon_sym_global] = ACTIONS(3669), + [anon_sym_EQ] = ACTIONS(3673), + [anon_sym_LBRACK] = ACTIONS(3675), + [anon_sym_COLON] = ACTIONS(3671), + [anon_sym_COMMA] = ACTIONS(3671), + [anon_sym_RBRACK] = ACTIONS(3671), + [anon_sym_LPAREN] = ACTIONS(3675), + [anon_sym_RPAREN] = ACTIONS(3671), + [anon_sym_RBRACE] = ACTIONS(3671), + [anon_sym_file] = ACTIONS(3669), + [anon_sym_LT] = ACTIONS(3673), + [anon_sym_GT] = ACTIONS(3673), + [anon_sym_in] = ACTIONS(3673), + [anon_sym_where] = ACTIONS(3669), + [anon_sym_QMARK] = ACTIONS(3680), + [anon_sym_notnull] = ACTIONS(3669), + [anon_sym_unmanaged] = ACTIONS(3669), + [anon_sym_BANG] = ACTIONS(3673), + [anon_sym_PLUS_PLUS] = ACTIONS(3671), + [anon_sym_DASH_DASH] = ACTIONS(3671), + [anon_sym_PLUS] = ACTIONS(3673), + [anon_sym_DASH] = ACTIONS(3673), + [anon_sym_STAR] = ACTIONS(3680), + [anon_sym_SLASH] = ACTIONS(3673), + [anon_sym_PERCENT] = ACTIONS(3673), + [anon_sym_CARET] = ACTIONS(3673), + [anon_sym_PIPE] = ACTIONS(3673), + [anon_sym_AMP] = ACTIONS(3673), + [anon_sym_LT_LT] = ACTIONS(3673), + [anon_sym_GT_GT] = ACTIONS(3673), + [anon_sym_GT_GT_GT] = ACTIONS(3673), + [anon_sym_EQ_EQ] = ACTIONS(3671), + [anon_sym_BANG_EQ] = ACTIONS(3671), + [anon_sym_GT_EQ] = ACTIONS(3671), + [anon_sym_LT_EQ] = ACTIONS(3671), + [anon_sym_DOT] = ACTIONS(3680), + [anon_sym_scoped] = ACTIONS(3669), + [anon_sym_EQ_GT] = ACTIONS(3671), + [anon_sym_var] = ACTIONS(3669), + [anon_sym_yield] = ACTIONS(3669), + [anon_sym_switch] = ACTIONS(3673), + [anon_sym_when] = ACTIONS(3669), + [anon_sym_DOT_DOT] = ACTIONS(3671), + [anon_sym_and] = ACTIONS(3673), + [anon_sym_or] = ACTIONS(3673), + [anon_sym_PLUS_EQ] = ACTIONS(3671), + [anon_sym_DASH_EQ] = ACTIONS(3671), + [anon_sym_STAR_EQ] = ACTIONS(3671), + [anon_sym_SLASH_EQ] = ACTIONS(3671), + [anon_sym_PERCENT_EQ] = ACTIONS(3671), + [anon_sym_AMP_EQ] = ACTIONS(3671), + [anon_sym_CARET_EQ] = ACTIONS(3671), + [anon_sym_PIPE_EQ] = ACTIONS(3671), + [anon_sym_LT_LT_EQ] = ACTIONS(3671), + [anon_sym_GT_GT_EQ] = ACTIONS(3671), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3671), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3671), + [anon_sym_AMP_AMP] = ACTIONS(3671), + [anon_sym_PIPE_PIPE] = ACTIONS(3671), + [anon_sym_QMARK_QMARK] = ACTIONS(3673), + [anon_sym_from] = ACTIONS(3669), + [anon_sym_into] = ACTIONS(3680), + [anon_sym_join] = ACTIONS(3669), + [anon_sym_on] = ACTIONS(3669), + [anon_sym_equals] = ACTIONS(3669), + [anon_sym_let] = ACTIONS(3669), + [anon_sym_orderby] = ACTIONS(3669), + [anon_sym_ascending] = ACTIONS(3669), + [anon_sym_descending] = ACTIONS(3669), + [anon_sym_group] = ACTIONS(3669), + [anon_sym_by] = ACTIONS(3669), + [anon_sym_select] = ACTIONS(3669), + [anon_sym_as] = ACTIONS(3673), + [anon_sym_is] = ACTIONS(3673), + [anon_sym_DASH_GT] = ACTIONS(3675), + [anon_sym_with] = ACTIONS(3673), + [aux_sym_preproc_if_token3] = ACTIONS(3671), + [aux_sym_preproc_else_token1] = ACTIONS(3671), + [aux_sym_preproc_elif_token1] = ACTIONS(3671), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -399725,6 +399479,29 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2195] = { + [sym_attribute_list] = STATE(3034), + [sym__attribute_list] = STATE(2953), + [sym_modifier] = STATE(3114), + [sym_variable_declaration] = STATE(7465), + [sym__name] = STATE(4369), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(4068), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(4073), + [sym_type] = STATE(5439), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_identifier] = STATE(5717), + [sym__reserved_identifier] = STATE(3654), + [sym_preproc_if_in_attribute_list] = STATE(3034), [sym_preproc_region] = STATE(2195), [sym_preproc_endregion] = STATE(2195), [sym_preproc_line] = STATE(2195), @@ -399734,89 +399511,65 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2195), [sym_preproc_define] = STATE(2195), [sym_preproc_undef] = STATE(2195), - [sym__identifier_token] = ACTIONS(3619), - [anon_sym_alias] = ACTIONS(3619), - [anon_sym_SEMI] = ACTIONS(3445), - [anon_sym_global] = ACTIONS(3619), - [anon_sym_EQ] = ACTIONS(3447), - [anon_sym_LBRACK] = ACTIONS(3445), - [anon_sym_COLON] = ACTIONS(3447), - [anon_sym_COMMA] = ACTIONS(3445), - [anon_sym_RBRACK] = ACTIONS(3445), - [anon_sym_LPAREN] = ACTIONS(3616), - [anon_sym_RPAREN] = ACTIONS(3445), - [anon_sym_RBRACE] = ACTIONS(3445), - [anon_sym_file] = ACTIONS(3619), - [anon_sym_LT] = ACTIONS(3447), - [anon_sym_GT] = ACTIONS(3447), - [anon_sym_in] = ACTIONS(3447), - [anon_sym_where] = ACTIONS(3619), - [anon_sym_QMARK] = ACTIONS(3447), - [anon_sym_notnull] = ACTIONS(3619), - [anon_sym_unmanaged] = ACTIONS(3619), - [anon_sym_BANG] = ACTIONS(3447), - [anon_sym_PLUS_PLUS] = ACTIONS(3445), - [anon_sym_DASH_DASH] = ACTIONS(3445), - [anon_sym_PLUS] = ACTIONS(3447), - [anon_sym_DASH] = ACTIONS(3447), - [anon_sym_STAR] = ACTIONS(3447), - [anon_sym_SLASH] = ACTIONS(3447), - [anon_sym_PERCENT] = ACTIONS(3447), - [anon_sym_CARET] = ACTIONS(3447), - [anon_sym_PIPE] = ACTIONS(3447), - [anon_sym_AMP] = ACTIONS(3447), - [anon_sym_LT_LT] = ACTIONS(3447), - [anon_sym_GT_GT] = ACTIONS(3447), - [anon_sym_GT_GT_GT] = ACTIONS(3447), - [anon_sym_EQ_EQ] = ACTIONS(3445), - [anon_sym_BANG_EQ] = ACTIONS(3445), - [anon_sym_GT_EQ] = ACTIONS(3445), - [anon_sym_LT_EQ] = ACTIONS(3445), - [anon_sym_DOT] = ACTIONS(3447), - [anon_sym_scoped] = ACTIONS(3619), - [anon_sym_EQ_GT] = ACTIONS(3445), - [anon_sym_COLON_COLON] = ACTIONS(3445), - [anon_sym_var] = ACTIONS(3619), - [anon_sym_yield] = ACTIONS(3619), - [anon_sym_switch] = ACTIONS(3447), - [anon_sym_when] = ACTIONS(3619), - [anon_sym_DOT_DOT] = ACTIONS(3445), - [anon_sym_and] = ACTIONS(3447), - [anon_sym_or] = ACTIONS(3447), - [anon_sym_PLUS_EQ] = ACTIONS(3445), - [anon_sym_DASH_EQ] = ACTIONS(3445), - [anon_sym_STAR_EQ] = ACTIONS(3445), - [anon_sym_SLASH_EQ] = ACTIONS(3445), - [anon_sym_PERCENT_EQ] = ACTIONS(3445), - [anon_sym_AMP_EQ] = ACTIONS(3445), - [anon_sym_CARET_EQ] = ACTIONS(3445), - [anon_sym_PIPE_EQ] = ACTIONS(3445), - [anon_sym_LT_LT_EQ] = ACTIONS(3445), - [anon_sym_GT_GT_EQ] = ACTIONS(3445), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3445), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3445), - [anon_sym_AMP_AMP] = ACTIONS(3445), - [anon_sym_PIPE_PIPE] = ACTIONS(3445), - [anon_sym_QMARK_QMARK] = ACTIONS(3447), - [anon_sym_from] = ACTIONS(3619), - [anon_sym_into] = ACTIONS(3619), - [anon_sym_join] = ACTIONS(3619), - [anon_sym_on] = ACTIONS(3619), - [anon_sym_equals] = ACTIONS(3619), - [anon_sym_let] = ACTIONS(3619), - [anon_sym_orderby] = ACTIONS(3619), - [anon_sym_ascending] = ACTIONS(3619), - [anon_sym_descending] = ACTIONS(3619), - [anon_sym_group] = ACTIONS(3619), - [anon_sym_by] = ACTIONS(3619), - [anon_sym_select] = ACTIONS(3619), - [anon_sym_as] = ACTIONS(3447), - [anon_sym_is] = ACTIONS(3447), - [anon_sym_DASH_GT] = ACTIONS(3445), - [anon_sym_with] = ACTIONS(3447), - [aux_sym_preproc_if_token3] = ACTIONS(3445), - [aux_sym_preproc_else_token1] = ACTIONS(3445), - [aux_sym_preproc_elif_token1] = ACTIONS(3445), + [aux_sym__class_declaration_initializer_repeat1] = STATE(2858), + [aux_sym__class_declaration_initializer_repeat2] = STATE(2282), + [sym__identifier_token] = ACTIONS(2965), + [anon_sym_extern] = ACTIONS(3735), + [anon_sym_alias] = ACTIONS(2969), + [anon_sym_global] = ACTIONS(2969), + [anon_sym_unsafe] = ACTIONS(65), + [anon_sym_static] = ACTIONS(65), + [anon_sym_LBRACK] = ACTIONS(2975), + [anon_sym_LPAREN] = ACTIONS(2977), + [anon_sym_event] = ACTIONS(3737), + [anon_sym_class] = ACTIONS(3739), + [anon_sym_ref] = ACTIONS(3741), + [anon_sym_struct] = ACTIONS(2823), + [anon_sym_enum] = ACTIONS(3743), + [anon_sym_interface] = ACTIONS(3745), + [anon_sym_delegate] = ACTIONS(3747), + [anon_sym_record] = ACTIONS(3749), + [anon_sym_abstract] = ACTIONS(65), + [anon_sym_async] = ACTIONS(65), + [anon_sym_const] = ACTIONS(65), + [anon_sym_file] = ACTIONS(2987), + [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(2969), + [anon_sym_notnull] = ACTIONS(2969), + [anon_sym_unmanaged] = ACTIONS(2969), + [anon_sym_TILDE] = ACTIONS(3751), + [anon_sym_implicit] = ACTIONS(3753), + [anon_sym_explicit] = ACTIONS(3753), + [anon_sym_scoped] = ACTIONS(2993), + [anon_sym_var] = ACTIONS(2995), + [sym_predefined_type] = ACTIONS(2997), + [anon_sym_yield] = ACTIONS(2969), + [anon_sym_when] = ACTIONS(2969), + [anon_sym_from] = ACTIONS(2969), + [anon_sym_into] = ACTIONS(2969), + [anon_sym_join] = ACTIONS(2969), + [anon_sym_on] = ACTIONS(2969), + [anon_sym_equals] = ACTIONS(2969), + [anon_sym_let] = ACTIONS(2969), + [anon_sym_orderby] = ACTIONS(2969), + [anon_sym_ascending] = ACTIONS(2969), + [anon_sym_descending] = ACTIONS(2969), + [anon_sym_group] = ACTIONS(2969), + [anon_sym_by] = ACTIONS(2969), + [anon_sym_select] = ACTIONS(2969), + [aux_sym_preproc_if_token1] = ACTIONS(3755), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -399838,88 +399591,87 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2196), [sym_preproc_define] = STATE(2196), [sym_preproc_undef] = STATE(2196), - [sym__identifier_token] = ACTIONS(3685), - [anon_sym_alias] = ACTIONS(3685), - [anon_sym_SEMI] = ACTIONS(3697), - [anon_sym_global] = ACTIONS(3685), - [anon_sym_EQ] = ACTIONS(3689), - [anon_sym_LBRACK] = ACTIONS(3691), - [anon_sym_COLON] = ACTIONS(3697), - [anon_sym_COMMA] = ACTIONS(3697), - [anon_sym_RBRACK] = ACTIONS(3697), - [anon_sym_LPAREN] = ACTIONS(3691), - [anon_sym_RPAREN] = ACTIONS(3697), - [anon_sym_RBRACE] = ACTIONS(3697), - [anon_sym_file] = ACTIONS(3685), - [anon_sym_LT] = ACTIONS(3689), - [anon_sym_GT] = ACTIONS(3689), - [anon_sym_in] = ACTIONS(3689), - [anon_sym_where] = ACTIONS(3685), - [anon_sym_QMARK] = ACTIONS(3694), - [anon_sym_notnull] = ACTIONS(3685), - [anon_sym_unmanaged] = ACTIONS(3685), - [anon_sym_BANG] = ACTIONS(3689), - [anon_sym_PLUS_PLUS] = ACTIONS(3697), - [anon_sym_DASH_DASH] = ACTIONS(3697), - [anon_sym_PLUS] = ACTIONS(3689), - [anon_sym_DASH] = ACTIONS(3689), - [anon_sym_STAR] = ACTIONS(3694), - [anon_sym_SLASH] = ACTIONS(3689), - [anon_sym_PERCENT] = ACTIONS(3689), - [anon_sym_CARET] = ACTIONS(3689), - [anon_sym_PIPE] = ACTIONS(3689), - [anon_sym_AMP] = ACTIONS(3689), - [anon_sym_LT_LT] = ACTIONS(3689), - [anon_sym_GT_GT] = ACTIONS(3689), - [anon_sym_GT_GT_GT] = ACTIONS(3689), - [anon_sym_EQ_EQ] = ACTIONS(3697), - [anon_sym_BANG_EQ] = ACTIONS(3697), - [anon_sym_GT_EQ] = ACTIONS(3697), - [anon_sym_LT_EQ] = ACTIONS(3697), - [anon_sym_DOT] = ACTIONS(3694), - [anon_sym_scoped] = ACTIONS(3685), - [anon_sym_EQ_GT] = ACTIONS(3697), - [anon_sym_var] = ACTIONS(3685), - [anon_sym_yield] = ACTIONS(3685), - [anon_sym_switch] = ACTIONS(3689), - [anon_sym_when] = ACTIONS(3685), - [anon_sym_DOT_DOT] = ACTIONS(3697), - [anon_sym_and] = ACTIONS(3689), - [anon_sym_or] = ACTIONS(3689), - [anon_sym_PLUS_EQ] = ACTIONS(3697), - [anon_sym_DASH_EQ] = ACTIONS(3697), - [anon_sym_STAR_EQ] = ACTIONS(3697), - [anon_sym_SLASH_EQ] = ACTIONS(3697), - [anon_sym_PERCENT_EQ] = ACTIONS(3697), - [anon_sym_AMP_EQ] = ACTIONS(3697), - [anon_sym_CARET_EQ] = ACTIONS(3697), - [anon_sym_PIPE_EQ] = ACTIONS(3697), - [anon_sym_LT_LT_EQ] = ACTIONS(3697), - [anon_sym_GT_GT_EQ] = ACTIONS(3697), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3697), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3697), - [anon_sym_AMP_AMP] = ACTIONS(3697), - [anon_sym_PIPE_PIPE] = ACTIONS(3697), - [anon_sym_QMARK_QMARK] = ACTIONS(3689), - [anon_sym_from] = ACTIONS(3685), - [anon_sym_into] = ACTIONS(3685), - [anon_sym_join] = ACTIONS(3685), - [anon_sym_on] = ACTIONS(3685), - [anon_sym_equals] = ACTIONS(3685), - [anon_sym_let] = ACTIONS(3685), - [anon_sym_orderby] = ACTIONS(3685), - [anon_sym_ascending] = ACTIONS(3685), - [anon_sym_descending] = ACTIONS(3685), - [anon_sym_group] = ACTIONS(3685), - [anon_sym_by] = ACTIONS(3685), - [anon_sym_select] = ACTIONS(3685), - [anon_sym_as] = ACTIONS(3689), - [anon_sym_is] = ACTIONS(3689), - [anon_sym_DASH_GT] = ACTIONS(3691), - [anon_sym_with] = ACTIONS(3689), - [aux_sym_preproc_if_token3] = ACTIONS(3697), - [aux_sym_preproc_else_token1] = ACTIONS(3697), - [aux_sym_preproc_elif_token1] = ACTIONS(3697), + [sym__identifier_token] = ACTIONS(3691), + [anon_sym_alias] = ACTIONS(3691), + [anon_sym_SEMI] = ACTIONS(3711), + [anon_sym_global] = ACTIONS(3691), + [anon_sym_EQ] = ACTIONS(3696), + [anon_sym_LBRACK] = ACTIONS(3713), + [anon_sym_COLON] = ACTIONS(3711), + [anon_sym_COMMA] = ACTIONS(3713), + [anon_sym_RBRACK] = ACTIONS(3713), + [anon_sym_LPAREN] = ACTIONS(3713), + [anon_sym_RPAREN] = ACTIONS(3713), + [anon_sym_file] = ACTIONS(3691), + [anon_sym_LT] = ACTIONS(3696), + [anon_sym_GT] = ACTIONS(3696), + [anon_sym_in] = ACTIONS(3696), + [anon_sym_where] = ACTIONS(3691), + [anon_sym_QMARK] = ACTIONS(3716), + [anon_sym_notnull] = ACTIONS(3691), + [anon_sym_unmanaged] = ACTIONS(3691), + [anon_sym_BANG] = ACTIONS(3696), + [anon_sym_PLUS_PLUS] = ACTIONS(3711), + [anon_sym_DASH_DASH] = ACTIONS(3711), + [anon_sym_PLUS] = ACTIONS(3696), + [anon_sym_DASH] = ACTIONS(3696), + [anon_sym_STAR] = ACTIONS(3716), + [anon_sym_SLASH] = ACTIONS(3696), + [anon_sym_PERCENT] = ACTIONS(3696), + [anon_sym_CARET] = ACTIONS(3696), + [anon_sym_PIPE] = ACTIONS(3696), + [anon_sym_AMP] = ACTIONS(3696), + [anon_sym_LT_LT] = ACTIONS(3696), + [anon_sym_GT_GT] = ACTIONS(3696), + [anon_sym_GT_GT_GT] = ACTIONS(3696), + [anon_sym_EQ_EQ] = ACTIONS(3711), + [anon_sym_BANG_EQ] = ACTIONS(3711), + [anon_sym_GT_EQ] = ACTIONS(3711), + [anon_sym_LT_EQ] = ACTIONS(3711), + [anon_sym_DOT] = ACTIONS(3716), + [anon_sym_scoped] = ACTIONS(3691), + [anon_sym_EQ_GT] = ACTIONS(3711), + [anon_sym_var] = ACTIONS(3691), + [anon_sym_yield] = ACTIONS(3691), + [anon_sym_switch] = ACTIONS(3696), + [anon_sym_when] = ACTIONS(3691), + [anon_sym_DOT_DOT] = ACTIONS(3711), + [anon_sym_and] = ACTIONS(3696), + [anon_sym_or] = ACTIONS(3696), + [anon_sym_PLUS_EQ] = ACTIONS(3711), + [anon_sym_DASH_EQ] = ACTIONS(3711), + [anon_sym_STAR_EQ] = ACTIONS(3711), + [anon_sym_SLASH_EQ] = ACTIONS(3711), + [anon_sym_PERCENT_EQ] = ACTIONS(3711), + [anon_sym_AMP_EQ] = ACTIONS(3711), + [anon_sym_CARET_EQ] = ACTIONS(3711), + [anon_sym_PIPE_EQ] = ACTIONS(3711), + [anon_sym_LT_LT_EQ] = ACTIONS(3711), + [anon_sym_GT_GT_EQ] = ACTIONS(3711), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3711), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3711), + [anon_sym_AMP_AMP] = ACTIONS(3711), + [anon_sym_PIPE_PIPE] = ACTIONS(3711), + [anon_sym_QMARK_QMARK] = ACTIONS(3696), + [anon_sym_from] = ACTIONS(3691), + [anon_sym_into] = ACTIONS(3691), + [anon_sym_join] = ACTIONS(3691), + [anon_sym_on] = ACTIONS(3691), + [anon_sym_equals] = ACTIONS(3691), + [anon_sym_let] = ACTIONS(3691), + [anon_sym_orderby] = ACTIONS(3691), + [anon_sym_ascending] = ACTIONS(3691), + [anon_sym_descending] = ACTIONS(3691), + [anon_sym_group] = ACTIONS(3691), + [anon_sym_by] = ACTIONS(3691), + [anon_sym_select] = ACTIONS(3691), + [anon_sym_as] = ACTIONS(3696), + [anon_sym_is] = ACTIONS(3696), + [anon_sym_DASH_GT] = ACTIONS(3713), + [anon_sym_with] = ACTIONS(3696), + [aux_sym_preproc_if_token3] = ACTIONS(3711), + [aux_sym_preproc_else_token1] = ACTIONS(3711), + [aux_sym_preproc_elif_token1] = ACTIONS(3711), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -399941,88 +399693,87 @@ 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(3699), - [anon_sym_alias] = ACTIONS(3699), - [anon_sym_SEMI] = ACTIONS(3719), - [anon_sym_global] = ACTIONS(3699), - [anon_sym_EQ] = ACTIONS(3704), - [anon_sym_LBRACK] = ACTIONS(3721), - [anon_sym_COLON] = ACTIONS(3719), - [anon_sym_COMMA] = ACTIONS(3719), - [anon_sym_RBRACK] = ACTIONS(3719), - [anon_sym_LPAREN] = ACTIONS(3721), - [anon_sym_RPAREN] = ACTIONS(3719), - [anon_sym_RBRACE] = ACTIONS(3719), - [anon_sym_file] = ACTIONS(3699), - [anon_sym_LT] = ACTIONS(3704), - [anon_sym_GT] = ACTIONS(3704), - [anon_sym_in] = ACTIONS(3704), - [anon_sym_where] = ACTIONS(3699), - [anon_sym_QMARK] = ACTIONS(3724), - [anon_sym_notnull] = ACTIONS(3699), - [anon_sym_unmanaged] = ACTIONS(3699), - [anon_sym_BANG] = ACTIONS(3704), - [anon_sym_PLUS_PLUS] = ACTIONS(3719), - [anon_sym_DASH_DASH] = ACTIONS(3719), - [anon_sym_PLUS] = ACTIONS(3704), - [anon_sym_DASH] = ACTIONS(3704), - [anon_sym_STAR] = ACTIONS(3724), - [anon_sym_SLASH] = ACTIONS(3704), - [anon_sym_PERCENT] = ACTIONS(3704), - [anon_sym_CARET] = ACTIONS(3704), - [anon_sym_PIPE] = ACTIONS(3704), - [anon_sym_AMP] = ACTIONS(3704), - [anon_sym_LT_LT] = ACTIONS(3704), - [anon_sym_GT_GT] = ACTIONS(3704), - [anon_sym_GT_GT_GT] = ACTIONS(3704), - [anon_sym_EQ_EQ] = ACTIONS(3719), - [anon_sym_BANG_EQ] = ACTIONS(3719), - [anon_sym_GT_EQ] = ACTIONS(3719), - [anon_sym_LT_EQ] = ACTIONS(3719), - [anon_sym_DOT] = ACTIONS(3724), - [anon_sym_scoped] = ACTIONS(3699), - [anon_sym_EQ_GT] = ACTIONS(3719), - [anon_sym_var] = ACTIONS(3699), - [anon_sym_yield] = ACTIONS(3699), - [anon_sym_switch] = ACTIONS(3704), - [anon_sym_when] = ACTIONS(3699), - [anon_sym_DOT_DOT] = ACTIONS(3719), - [anon_sym_and] = ACTIONS(3704), - [anon_sym_or] = ACTIONS(3704), - [anon_sym_PLUS_EQ] = ACTIONS(3719), - [anon_sym_DASH_EQ] = ACTIONS(3719), - [anon_sym_STAR_EQ] = ACTIONS(3719), - [anon_sym_SLASH_EQ] = ACTIONS(3719), - [anon_sym_PERCENT_EQ] = ACTIONS(3719), - [anon_sym_AMP_EQ] = ACTIONS(3719), - [anon_sym_CARET_EQ] = ACTIONS(3719), - [anon_sym_PIPE_EQ] = ACTIONS(3719), - [anon_sym_LT_LT_EQ] = ACTIONS(3719), - [anon_sym_GT_GT_EQ] = ACTIONS(3719), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3719), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3719), - [anon_sym_AMP_AMP] = ACTIONS(3719), - [anon_sym_PIPE_PIPE] = ACTIONS(3719), - [anon_sym_QMARK_QMARK] = ACTIONS(3704), - [anon_sym_from] = ACTIONS(3699), - [anon_sym_into] = ACTIONS(3724), - [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_ascending] = ACTIONS(3699), - [anon_sym_descending] = ACTIONS(3699), - [anon_sym_group] = ACTIONS(3699), - [anon_sym_by] = ACTIONS(3699), - [anon_sym_select] = ACTIONS(3699), - [anon_sym_as] = ACTIONS(3704), - [anon_sym_is] = ACTIONS(3704), - [anon_sym_DASH_GT] = ACTIONS(3721), - [anon_sym_with] = ACTIONS(3704), - [aux_sym_preproc_if_token3] = ACTIONS(3719), - [aux_sym_preproc_else_token1] = ACTIONS(3719), - [aux_sym_preproc_elif_token1] = ACTIONS(3719), + [sym__identifier_token] = ACTIONS(3757), + [anon_sym_extern] = ACTIONS(3757), + [anon_sym_alias] = ACTIONS(3757), + [anon_sym_global] = ACTIONS(3757), + [anon_sym_unsafe] = ACTIONS(3757), + [anon_sym_static] = ACTIONS(3757), + [anon_sym_LBRACK] = ACTIONS(3759), + [anon_sym_LPAREN] = ACTIONS(3759), + [anon_sym_ref] = ACTIONS(3757), + [anon_sym_delegate] = ACTIONS(3757), + [anon_sym_abstract] = ACTIONS(3757), + [anon_sym_async] = ACTIONS(3757), + [anon_sym_const] = ACTIONS(3757), + [anon_sym_file] = ACTIONS(3757), + [anon_sym_fixed] = ACTIONS(3757), + [anon_sym_internal] = ACTIONS(3757), + [anon_sym_new] = ACTIONS(3757), + [anon_sym_override] = ACTIONS(3757), + [anon_sym_partial] = ACTIONS(3757), + [anon_sym_private] = ACTIONS(3757), + [anon_sym_protected] = ACTIONS(3757), + [anon_sym_public] = ACTIONS(3757), + [anon_sym_readonly] = ACTIONS(3757), + [anon_sym_required] = ACTIONS(3757), + [anon_sym_sealed] = ACTIONS(3757), + [anon_sym_virtual] = ACTIONS(3757), + [anon_sym_volatile] = ACTIONS(3757), + [anon_sym_LT] = ACTIONS(2961), + [anon_sym_GT] = ACTIONS(2961), + [anon_sym_where] = ACTIONS(3757), + [anon_sym_QMARK] = ACTIONS(2961), + [anon_sym_notnull] = ACTIONS(3757), + [anon_sym_unmanaged] = ACTIONS(3757), + [anon_sym_BANG] = ACTIONS(2961), + [anon_sym_PLUS_PLUS] = ACTIONS(2963), + [anon_sym_DASH_DASH] = ACTIONS(2963), + [anon_sym_PLUS] = ACTIONS(2961), + [anon_sym_DASH] = ACTIONS(2961), + [anon_sym_STAR] = ACTIONS(2963), + [anon_sym_SLASH] = ACTIONS(2961), + [anon_sym_PERCENT] = ACTIONS(2963), + [anon_sym_CARET] = ACTIONS(2963), + [anon_sym_PIPE] = ACTIONS(2961), + [anon_sym_AMP] = ACTIONS(2961), + [anon_sym_LT_LT] = ACTIONS(2963), + [anon_sym_GT_GT] = ACTIONS(2961), + [anon_sym_GT_GT_GT] = ACTIONS(2963), + [anon_sym_EQ_EQ] = ACTIONS(2963), + [anon_sym_BANG_EQ] = ACTIONS(2963), + [anon_sym_GT_EQ] = ACTIONS(2963), + [anon_sym_LT_EQ] = ACTIONS(2963), + [anon_sym_DOT] = ACTIONS(2961), + [anon_sym_scoped] = ACTIONS(3757), + [anon_sym_var] = ACTIONS(3757), + [sym_predefined_type] = ACTIONS(3757), + [anon_sym_while] = ACTIONS(2957), + [anon_sym_yield] = ACTIONS(3757), + [anon_sym_switch] = ACTIONS(2961), + [anon_sym_when] = ACTIONS(3757), + [anon_sym_else] = ACTIONS(2957), + [anon_sym_DOT_DOT] = ACTIONS(2963), + [anon_sym_AMP_AMP] = ACTIONS(2963), + [anon_sym_PIPE_PIPE] = ACTIONS(2963), + [anon_sym_QMARK_QMARK] = ACTIONS(2963), + [anon_sym_from] = ACTIONS(3757), + [anon_sym_into] = ACTIONS(3757), + [anon_sym_join] = ACTIONS(3757), + [anon_sym_on] = ACTIONS(3757), + [anon_sym_equals] = ACTIONS(3757), + [anon_sym_let] = ACTIONS(3757), + [anon_sym_orderby] = ACTIONS(3757), + [anon_sym_ascending] = ACTIONS(3757), + [anon_sym_descending] = ACTIONS(3757), + [anon_sym_group] = ACTIONS(3757), + [anon_sym_by] = ACTIONS(3757), + [anon_sym_select] = ACTIONS(3757), + [anon_sym_as] = ACTIONS(2961), + [anon_sym_is] = ACTIONS(2961), + [anon_sym_DASH_GT] = ACTIONS(2963), + [anon_sym_with] = ACTIONS(2961), + [aux_sym_preproc_if_token1] = ACTIONS(3759), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -400035,29 +399786,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2198] = { - [sym_attribute_list] = STATE(2979), - [sym__attribute_list] = STATE(2990), - [sym_modifier] = STATE(3130), - [sym_variable_declaration] = STATE(7443), - [sym__name] = STATE(4390), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(4096), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(4109), - [sym_type] = STATE(5519), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_identifier] = STATE(5728), - [sym__reserved_identifier] = STATE(3691), - [sym_preproc_if_in_attribute_list] = STATE(2979), + [sym__name] = STATE(2426), + [sym_alias_qualified_name] = STATE(2402), + [sym__simple_name] = STATE(2402), + [sym_qualified_name] = STATE(2402), + [sym_generic_name] = STATE(2384), + [sym_ref_type] = STATE(2331), + [sym__scoped_base_type] = STATE(2339), + [sym_identifier] = STATE(2351), + [sym__reserved_identifier] = STATE(2354), [sym_preproc_region] = STATE(2198), [sym_preproc_endregion] = STATE(2198), [sym_preproc_line] = STATE(2198), @@ -400067,65 +399804,78 @@ 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), - [aux_sym__class_declaration_initializer_repeat1] = STATE(2861), - [aux_sym__class_declaration_initializer_repeat2] = STATE(2290), - [sym__identifier_token] = ACTIONS(2967), - [anon_sym_extern] = ACTIONS(3735), - [anon_sym_alias] = ACTIONS(2971), - [anon_sym_global] = ACTIONS(2971), - [anon_sym_unsafe] = ACTIONS(65), - [anon_sym_static] = ACTIONS(65), - [anon_sym_LBRACK] = ACTIONS(2977), - [anon_sym_LPAREN] = ACTIONS(2979), - [anon_sym_event] = ACTIONS(3737), - [anon_sym_class] = ACTIONS(3739), - [anon_sym_ref] = ACTIONS(3741), - [anon_sym_struct] = ACTIONS(2747), - [anon_sym_enum] = ACTIONS(3743), - [anon_sym_interface] = ACTIONS(3745), - [anon_sym_delegate] = ACTIONS(3747), - [anon_sym_record] = ACTIONS(3749), - [anon_sym_abstract] = ACTIONS(65), - [anon_sym_async] = ACTIONS(65), - [anon_sym_const] = ACTIONS(65), - [anon_sym_file] = ACTIONS(2991), - [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(2971), - [anon_sym_notnull] = ACTIONS(2971), - [anon_sym_unmanaged] = ACTIONS(2971), - [anon_sym_TILDE] = ACTIONS(3751), - [anon_sym_implicit] = ACTIONS(3753), - [anon_sym_explicit] = ACTIONS(3753), - [anon_sym_scoped] = ACTIONS(2997), - [anon_sym_var] = ACTIONS(2999), - [sym_predefined_type] = ACTIONS(3001), - [anon_sym_yield] = ACTIONS(2971), - [anon_sym_when] = ACTIONS(2971), - [anon_sym_from] = ACTIONS(2971), - [anon_sym_into] = ACTIONS(2971), - [anon_sym_join] = ACTIONS(2971), - [anon_sym_on] = ACTIONS(2971), - [anon_sym_equals] = ACTIONS(2971), - [anon_sym_let] = ACTIONS(2971), - [anon_sym_orderby] = ACTIONS(2971), - [anon_sym_ascending] = ACTIONS(2971), - [anon_sym_descending] = ACTIONS(2971), - [anon_sym_group] = ACTIONS(2971), - [anon_sym_by] = ACTIONS(2971), - [anon_sym_select] = ACTIONS(2971), - [aux_sym_preproc_if_token1] = ACTIONS(3755), + [sym__identifier_token] = ACTIONS(3576), + [anon_sym_alias] = ACTIONS(3579), + [anon_sym_SEMI] = ACTIONS(3429), + [anon_sym_global] = ACTIONS(3579), + [anon_sym_LBRACK] = ACTIONS(3429), + [anon_sym_COMMA] = ACTIONS(3429), + [anon_sym_RBRACK] = ACTIONS(3429), + [anon_sym_LPAREN] = ACTIONS(3429), + [anon_sym_RPAREN] = ACTIONS(3429), + [anon_sym_ref] = ACTIONS(3582), + [anon_sym_LBRACE] = ACTIONS(3429), + [anon_sym_RBRACE] = ACTIONS(3429), + [anon_sym_file] = ACTIONS(3579), + [anon_sym_LT] = ACTIONS(3431), + [anon_sym_GT] = ACTIONS(3431), + [anon_sym_in] = ACTIONS(3431), + [anon_sym_where] = ACTIONS(3579), + [anon_sym_QMARK] = ACTIONS(3431), + [anon_sym_notnull] = ACTIONS(3579), + [anon_sym_unmanaged] = ACTIONS(3579), + [anon_sym_BANG] = ACTIONS(3431), + [anon_sym_PLUS_PLUS] = ACTIONS(3429), + [anon_sym_DASH_DASH] = ACTIONS(3429), + [anon_sym_PLUS] = ACTIONS(3431), + [anon_sym_DASH] = ACTIONS(3431), + [anon_sym_STAR] = ACTIONS(3429), + [anon_sym_SLASH] = ACTIONS(3431), + [anon_sym_PERCENT] = ACTIONS(3429), + [anon_sym_CARET] = ACTIONS(3429), + [anon_sym_PIPE] = ACTIONS(3431), + [anon_sym_AMP] = ACTIONS(3431), + [anon_sym_LT_LT] = ACTIONS(3429), + [anon_sym_GT_GT] = ACTIONS(3431), + [anon_sym_GT_GT_GT] = ACTIONS(3429), + [anon_sym_EQ_EQ] = ACTIONS(3429), + [anon_sym_BANG_EQ] = ACTIONS(3429), + [anon_sym_GT_EQ] = ACTIONS(3429), + [anon_sym_LT_EQ] = ACTIONS(3429), + [anon_sym_DOT] = ACTIONS(3431), + [anon_sym_scoped] = ACTIONS(3579), + [anon_sym_EQ_GT] = ACTIONS(3429), + [anon_sym_COLON_COLON] = ACTIONS(3429), + [anon_sym_var] = ACTIONS(3579), + [anon_sym_yield] = ACTIONS(3579), + [anon_sym_switch] = ACTIONS(3431), + [anon_sym_when] = ACTIONS(3579), + [sym_discard] = ACTIONS(3431), + [anon_sym_DOT_DOT] = ACTIONS(3429), + [anon_sym_and] = ACTIONS(3431), + [anon_sym_or] = ACTIONS(3431), + [anon_sym_AMP_AMP] = ACTIONS(3429), + [anon_sym_PIPE_PIPE] = ACTIONS(3429), + [anon_sym_QMARK_QMARK] = ACTIONS(3429), + [anon_sym_from] = ACTIONS(3579), + [anon_sym_into] = ACTIONS(3579), + [anon_sym_join] = ACTIONS(3579), + [anon_sym_on] = ACTIONS(3579), + [anon_sym_equals] = ACTIONS(3579), + [anon_sym_let] = ACTIONS(3579), + [anon_sym_orderby] = ACTIONS(3579), + [anon_sym_ascending] = ACTIONS(3579), + [anon_sym_descending] = ACTIONS(3579), + [anon_sym_group] = ACTIONS(3579), + [anon_sym_by] = ACTIONS(3579), + [anon_sym_select] = ACTIONS(3579), + [anon_sym_as] = ACTIONS(3431), + [anon_sym_is] = ACTIONS(3431), + [anon_sym_DASH_GT] = ACTIONS(3429), + [anon_sym_with] = ACTIONS(3431), + [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), @@ -400138,6 +399888,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2199] = { + [sym__name] = STATE(3152), + [sym_alias_qualified_name] = STATE(3143), + [sym__simple_name] = STATE(3143), + [sym_qualified_name] = STATE(3143), + [sym_generic_name] = STATE(3184), + [sym_ref_type] = STATE(3153), + [sym__scoped_base_type] = STATE(3154), + [sym_identifier] = STATE(3119), + [sym__reserved_identifier] = STATE(3120), [sym_preproc_region] = STATE(2199), [sym_preproc_endregion] = STATE(2199), [sym_preproc_line] = STATE(2199), @@ -400147,88 +399906,78 @@ 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(3685), - [anon_sym_alias] = ACTIONS(3685), - [anon_sym_SEMI] = ACTIONS(3697), - [anon_sym_global] = ACTIONS(3685), - [anon_sym_EQ] = ACTIONS(3689), - [anon_sym_LBRACK] = ACTIONS(3691), - [anon_sym_COLON] = ACTIONS(3697), - [anon_sym_COMMA] = ACTIONS(3697), - [anon_sym_RBRACK] = ACTIONS(3697), - [anon_sym_LPAREN] = ACTIONS(3691), - [anon_sym_RPAREN] = ACTIONS(3697), - [anon_sym_RBRACE] = ACTIONS(3697), - [anon_sym_file] = ACTIONS(3685), - [anon_sym_LT] = ACTIONS(3689), - [anon_sym_GT] = ACTIONS(3689), - [anon_sym_in] = ACTIONS(3689), - [anon_sym_where] = ACTIONS(3685), - [anon_sym_QMARK] = ACTIONS(3694), - [anon_sym_notnull] = ACTIONS(3685), - [anon_sym_unmanaged] = ACTIONS(3685), - [anon_sym_BANG] = ACTIONS(3689), - [anon_sym_PLUS_PLUS] = ACTIONS(3697), - [anon_sym_DASH_DASH] = ACTIONS(3697), - [anon_sym_PLUS] = ACTIONS(3689), - [anon_sym_DASH] = ACTIONS(3689), - [anon_sym_STAR] = ACTIONS(3694), - [anon_sym_SLASH] = ACTIONS(3689), - [anon_sym_PERCENT] = ACTIONS(3689), - [anon_sym_CARET] = ACTIONS(3689), - [anon_sym_PIPE] = ACTIONS(3689), - [anon_sym_AMP] = ACTIONS(3689), - [anon_sym_LT_LT] = ACTIONS(3689), - [anon_sym_GT_GT] = ACTIONS(3689), - [anon_sym_GT_GT_GT] = ACTIONS(3689), - [anon_sym_EQ_EQ] = ACTIONS(3697), - [anon_sym_BANG_EQ] = ACTIONS(3697), - [anon_sym_GT_EQ] = ACTIONS(3697), - [anon_sym_LT_EQ] = ACTIONS(3697), - [anon_sym_DOT] = ACTIONS(3694), - [anon_sym_scoped] = ACTIONS(3685), - [anon_sym_EQ_GT] = ACTIONS(3697), - [anon_sym_var] = ACTIONS(3685), - [anon_sym_yield] = ACTIONS(3685), - [anon_sym_switch] = ACTIONS(3689), - [anon_sym_when] = ACTIONS(3685), - [anon_sym_DOT_DOT] = ACTIONS(3697), - [anon_sym_and] = ACTIONS(3689), - [anon_sym_or] = ACTIONS(3689), - [anon_sym_PLUS_EQ] = ACTIONS(3697), - [anon_sym_DASH_EQ] = ACTIONS(3697), - [anon_sym_STAR_EQ] = ACTIONS(3697), - [anon_sym_SLASH_EQ] = ACTIONS(3697), - [anon_sym_PERCENT_EQ] = ACTIONS(3697), - [anon_sym_AMP_EQ] = ACTIONS(3697), - [anon_sym_CARET_EQ] = ACTIONS(3697), - [anon_sym_PIPE_EQ] = ACTIONS(3697), - [anon_sym_LT_LT_EQ] = ACTIONS(3697), - [anon_sym_GT_GT_EQ] = ACTIONS(3697), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3697), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3697), - [anon_sym_AMP_AMP] = ACTIONS(3697), - [anon_sym_PIPE_PIPE] = ACTIONS(3697), - [anon_sym_QMARK_QMARK] = ACTIONS(3689), - [anon_sym_from] = ACTIONS(3685), - [anon_sym_into] = ACTIONS(3694), - [anon_sym_join] = ACTIONS(3685), - [anon_sym_on] = ACTIONS(3685), - [anon_sym_equals] = ACTIONS(3685), - [anon_sym_let] = ACTIONS(3685), - [anon_sym_orderby] = ACTIONS(3685), - [anon_sym_ascending] = ACTIONS(3685), - [anon_sym_descending] = ACTIONS(3685), - [anon_sym_group] = ACTIONS(3685), - [anon_sym_by] = ACTIONS(3685), - [anon_sym_select] = ACTIONS(3685), - [anon_sym_as] = ACTIONS(3689), - [anon_sym_is] = ACTIONS(3689), - [anon_sym_DASH_GT] = ACTIONS(3691), - [anon_sym_with] = ACTIONS(3689), - [aux_sym_preproc_if_token3] = ACTIONS(3697), - [aux_sym_preproc_else_token1] = ACTIONS(3697), - [aux_sym_preproc_elif_token1] = ACTIONS(3697), + [sym__identifier_token] = ACTIONS(3761), + [anon_sym_alias] = ACTIONS(3763), + [anon_sym_SEMI] = ACTIONS(3429), + [anon_sym_global] = ACTIONS(3763), + [anon_sym_LBRACK] = ACTIONS(3429), + [anon_sym_COLON] = ACTIONS(3431), + [anon_sym_COMMA] = ACTIONS(3429), + [anon_sym_RBRACK] = ACTIONS(3429), + [anon_sym_LPAREN] = ACTIONS(3429), + [anon_sym_RPAREN] = ACTIONS(3429), + [anon_sym_ref] = ACTIONS(3765), + [anon_sym_LBRACE] = ACTIONS(3429), + [anon_sym_RBRACE] = ACTIONS(3429), + [anon_sym_file] = ACTIONS(3763), + [anon_sym_LT] = ACTIONS(3431), + [anon_sym_GT] = ACTIONS(3431), + [anon_sym_in] = ACTIONS(3431), + [anon_sym_where] = ACTIONS(3763), + [anon_sym_QMARK] = ACTIONS(3431), + [anon_sym_notnull] = ACTIONS(3763), + [anon_sym_unmanaged] = ACTIONS(3763), + [anon_sym_BANG] = ACTIONS(3431), + [anon_sym_PLUS_PLUS] = ACTIONS(3429), + [anon_sym_DASH_DASH] = ACTIONS(3429), + [anon_sym_PLUS] = ACTIONS(3431), + [anon_sym_DASH] = ACTIONS(3431), + [anon_sym_STAR] = ACTIONS(3429), + [anon_sym_SLASH] = ACTIONS(3431), + [anon_sym_PERCENT] = ACTIONS(3429), + [anon_sym_CARET] = ACTIONS(3429), + [anon_sym_PIPE] = ACTIONS(3431), + [anon_sym_AMP] = ACTIONS(3431), + [anon_sym_LT_LT] = ACTIONS(3429), + [anon_sym_GT_GT] = ACTIONS(3431), + [anon_sym_GT_GT_GT] = ACTIONS(3429), + [anon_sym_EQ_EQ] = ACTIONS(3429), + [anon_sym_BANG_EQ] = ACTIONS(3429), + [anon_sym_GT_EQ] = ACTIONS(3429), + [anon_sym_LT_EQ] = ACTIONS(3429), + [anon_sym_DOT] = ACTIONS(3431), + [anon_sym_scoped] = ACTIONS(3763), + [anon_sym_EQ_GT] = ACTIONS(3429), + [anon_sym_COLON_COLON] = ACTIONS(3429), + [anon_sym_var] = ACTIONS(3763), + [anon_sym_yield] = ACTIONS(3763), + [anon_sym_switch] = ACTIONS(3431), + [anon_sym_when] = ACTIONS(3763), + [anon_sym_DOT_DOT] = ACTIONS(3429), + [anon_sym_and] = ACTIONS(3431), + [anon_sym_or] = ACTIONS(3431), + [anon_sym_AMP_AMP] = ACTIONS(3429), + [anon_sym_PIPE_PIPE] = ACTIONS(3429), + [anon_sym_QMARK_QMARK] = ACTIONS(3429), + [anon_sym_from] = ACTIONS(3763), + [anon_sym_into] = ACTIONS(3767), + [anon_sym_join] = ACTIONS(3763), + [anon_sym_on] = ACTIONS(3763), + [anon_sym_equals] = ACTIONS(3763), + [anon_sym_let] = ACTIONS(3763), + [anon_sym_orderby] = ACTIONS(3763), + [anon_sym_ascending] = ACTIONS(3763), + [anon_sym_descending] = ACTIONS(3763), + [anon_sym_group] = ACTIONS(3763), + [anon_sym_by] = ACTIONS(3763), + [anon_sym_select] = ACTIONS(3763), + [anon_sym_as] = ACTIONS(3431), + [anon_sym_is] = ACTIONS(3431), + [anon_sym_DASH_GT] = ACTIONS(3429), + [anon_sym_with] = ACTIONS(3431), + [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), @@ -400241,10 +399990,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2200] = { - [sym__variable_designation] = STATE(4762), - [sym_parenthesized_variable_designation] = STATE(4761), - [sym_identifier] = STATE(4764), - [sym__reserved_identifier] = STATE(4323), + [sym__variable_designation] = STATE(3691), + [sym_parenthesized_variable_designation] = STATE(3688), + [sym_identifier] = STATE(3692), + [sym__reserved_identifier] = STATE(2354), [sym_preproc_region] = STATE(2200), [sym_preproc_endregion] = STATE(2200), [sym_preproc_line] = STATE(2200), @@ -400254,100 +400003,118 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2200), [sym_preproc_define] = STATE(2200), [sym_preproc_undef] = STATE(2200), - [sym__identifier_token] = ACTIONS(3757), - [anon_sym_alias] = ACTIONS(3761), - [anon_sym_global] = ACTIONS(3761), - [anon_sym_EQ] = ACTIONS(3447), - [anon_sym_LBRACK] = ACTIONS(3616), - [anon_sym_COLON] = ACTIONS(3619), - [anon_sym_COMMA] = ACTIONS(3616), - [anon_sym_LPAREN] = ACTIONS(3765), - [anon_sym_LBRACE] = ACTIONS(3616), - [anon_sym_file] = ACTIONS(3761), - [anon_sym_LT] = ACTIONS(3619), - [anon_sym_GT] = ACTIONS(3619), - [anon_sym_where] = ACTIONS(3761), - [anon_sym_QMARK] = ACTIONS(3619), - [anon_sym_notnull] = ACTIONS(3761), - [anon_sym_unmanaged] = ACTIONS(3761), - [anon_sym_BANG] = ACTIONS(3619), - [anon_sym_PLUS_PLUS] = ACTIONS(3616), - [anon_sym_DASH_DASH] = ACTIONS(3616), - [anon_sym_PLUS] = ACTIONS(3619), - [anon_sym_DASH] = ACTIONS(3619), - [anon_sym_STAR] = ACTIONS(3619), - [anon_sym_SLASH] = ACTIONS(3619), - [anon_sym_PERCENT] = ACTIONS(3619), - [anon_sym_CARET] = ACTIONS(3619), - [anon_sym_PIPE] = ACTIONS(3619), - [anon_sym_AMP] = ACTIONS(3619), - [anon_sym_LT_LT] = ACTIONS(3619), - [anon_sym_GT_GT] = ACTIONS(3619), - [anon_sym_GT_GT_GT] = ACTIONS(3619), - [anon_sym_EQ_EQ] = ACTIONS(3616), - [anon_sym_BANG_EQ] = ACTIONS(3616), - [anon_sym_GT_EQ] = ACTIONS(3616), - [anon_sym_LT_EQ] = ACTIONS(3616), - [anon_sym_DOT] = ACTIONS(3619), - [anon_sym_scoped] = ACTIONS(3761), - [anon_sym_EQ_GT] = ACTIONS(3445), - [anon_sym_COLON_COLON] = ACTIONS(3445), - [anon_sym_var] = ACTIONS(3761), - [anon_sym_yield] = ACTIONS(3761), - [anon_sym_switch] = ACTIONS(3619), - [anon_sym_when] = ACTIONS(3761), - [sym_discard] = ACTIONS(3769), - [anon_sym_DOT_DOT] = ACTIONS(3616), - [anon_sym_and] = ACTIONS(3619), - [anon_sym_or] = ACTIONS(3619), - [anon_sym_PLUS_EQ] = ACTIONS(3445), - [anon_sym_DASH_EQ] = ACTIONS(3445), - [anon_sym_STAR_EQ] = ACTIONS(3445), - [anon_sym_SLASH_EQ] = ACTIONS(3445), - [anon_sym_PERCENT_EQ] = ACTIONS(3445), - [anon_sym_AMP_EQ] = ACTIONS(3445), - [anon_sym_CARET_EQ] = ACTIONS(3445), - [anon_sym_PIPE_EQ] = ACTIONS(3445), - [anon_sym_LT_LT_EQ] = ACTIONS(3445), - [anon_sym_GT_GT_EQ] = ACTIONS(3445), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3445), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3445), - [anon_sym_AMP_AMP] = ACTIONS(3616), - [anon_sym_PIPE_PIPE] = ACTIONS(3616), - [anon_sym_QMARK_QMARK] = ACTIONS(3619), - [anon_sym_from] = ACTIONS(3761), - [anon_sym_into] = ACTIONS(3761), - [anon_sym_join] = ACTIONS(3761), - [anon_sym_on] = ACTIONS(3761), - [anon_sym_equals] = ACTIONS(3761), - [anon_sym_let] = ACTIONS(3761), - [anon_sym_orderby] = ACTIONS(3761), - [anon_sym_ascending] = ACTIONS(3761), - [anon_sym_descending] = ACTIONS(3761), - [anon_sym_group] = ACTIONS(3761), - [anon_sym_by] = ACTIONS(3761), - [anon_sym_select] = ACTIONS(3761), - [anon_sym_as] = ACTIONS(3619), - [anon_sym_is] = ACTIONS(3619), - [anon_sym_DASH_GT] = ACTIONS(3616), - [anon_sym_with] = ACTIONS(3619), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_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(3616), + [sym__identifier_token] = ACTIONS(3770), + [anon_sym_alias] = ACTIONS(3774), + [anon_sym_global] = ACTIONS(3774), + [anon_sym_EQ] = ACTIONS(3431), + [anon_sym_LBRACK] = ACTIONS(3600), + [anon_sym_COMMA] = ACTIONS(3600), + [anon_sym_LPAREN] = ACTIONS(3778), + [anon_sym_LBRACE] = ACTIONS(3600), + [anon_sym_file] = ACTIONS(3774), + [anon_sym_LT] = ACTIONS(3603), + [anon_sym_GT] = ACTIONS(3603), + [anon_sym_where] = ACTIONS(3774), + [anon_sym_QMARK] = ACTIONS(3603), + [anon_sym_notnull] = ACTIONS(3774), + [anon_sym_unmanaged] = ACTIONS(3774), + [anon_sym_BANG] = ACTIONS(3603), + [anon_sym_PLUS_PLUS] = ACTIONS(3600), + [anon_sym_DASH_DASH] = ACTIONS(3600), + [anon_sym_PLUS] = ACTIONS(3603), + [anon_sym_DASH] = ACTIONS(3603), + [anon_sym_STAR] = ACTIONS(3603), + [anon_sym_SLASH] = ACTIONS(3603), + [anon_sym_PERCENT] = ACTIONS(3603), + [anon_sym_CARET] = ACTIONS(3603), + [anon_sym_PIPE] = ACTIONS(3603), + [anon_sym_AMP] = ACTIONS(3603), + [anon_sym_LT_LT] = ACTIONS(3603), + [anon_sym_GT_GT] = ACTIONS(3603), + [anon_sym_GT_GT_GT] = ACTIONS(3603), + [anon_sym_EQ_EQ] = ACTIONS(3600), + [anon_sym_BANG_EQ] = ACTIONS(3600), + [anon_sym_GT_EQ] = ACTIONS(3600), + [anon_sym_LT_EQ] = ACTIONS(3600), + [anon_sym_DOT] = ACTIONS(3603), + [anon_sym_scoped] = ACTIONS(3774), + [anon_sym_EQ_GT] = ACTIONS(3429), + [anon_sym_COLON_COLON] = ACTIONS(3429), + [anon_sym_var] = ACTIONS(3774), + [anon_sym_yield] = ACTIONS(3774), + [anon_sym_switch] = ACTIONS(3603), + [anon_sym_when] = ACTIONS(3774), + [sym_discard] = ACTIONS(3782), + [anon_sym_DOT_DOT] = ACTIONS(3600), + [anon_sym_and] = ACTIONS(3603), + [anon_sym_or] = ACTIONS(3603), + [anon_sym_PLUS_EQ] = ACTIONS(3429), + [anon_sym_DASH_EQ] = ACTIONS(3429), + [anon_sym_STAR_EQ] = ACTIONS(3429), + [anon_sym_SLASH_EQ] = ACTIONS(3429), + [anon_sym_PERCENT_EQ] = ACTIONS(3429), + [anon_sym_AMP_EQ] = ACTIONS(3429), + [anon_sym_CARET_EQ] = ACTIONS(3429), + [anon_sym_PIPE_EQ] = ACTIONS(3429), + [anon_sym_LT_LT_EQ] = ACTIONS(3429), + [anon_sym_GT_GT_EQ] = ACTIONS(3429), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3429), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3429), + [anon_sym_AMP_AMP] = ACTIONS(3600), + [anon_sym_PIPE_PIPE] = ACTIONS(3600), + [anon_sym_QMARK_QMARK] = ACTIONS(3603), + [anon_sym_from] = ACTIONS(3774), + [anon_sym_into] = ACTIONS(3774), + [anon_sym_join] = ACTIONS(3774), + [anon_sym_on] = ACTIONS(3774), + [anon_sym_equals] = ACTIONS(3774), + [anon_sym_let] = ACTIONS(3774), + [anon_sym_orderby] = ACTIONS(3774), + [anon_sym_ascending] = ACTIONS(3774), + [anon_sym_descending] = ACTIONS(3774), + [anon_sym_group] = ACTIONS(3774), + [anon_sym_by] = ACTIONS(3774), + [anon_sym_select] = ACTIONS(3774), + [anon_sym_as] = ACTIONS(3603), + [anon_sym_is] = ACTIONS(3603), + [anon_sym_DASH_GT] = ACTIONS(3600), + [anon_sym_with] = ACTIONS(3603), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), }, [2201] = { - [sym__variable_designation] = STATE(3474), - [sym_parenthesized_variable_designation] = STATE(3463), - [sym_identifier] = STATE(3479), - [sym__reserved_identifier] = STATE(2571), + [sym_attribute_list] = STATE(3034), + [sym__attribute_list] = STATE(2953), + [sym_modifier] = STATE(3114), + [sym_parameter_list] = STATE(7531), + [sym__name] = STATE(4369), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(4068), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(4073), + [sym_type] = STATE(5913), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym__lambda_parameters] = STATE(7609), + [sym_identifier] = STATE(5764), + [sym__reserved_identifier] = STATE(3654), + [sym_preproc_if_in_attribute_list] = STATE(3034), [sym_preproc_region] = STATE(2201), [sym_preproc_endregion] = STATE(2201), [sym_preproc_line] = STATE(2201), @@ -400357,84 +400124,62 @@ 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(3727), - [anon_sym_alias] = ACTIONS(3731), - [anon_sym_global] = ACTIONS(3731), - [anon_sym_EQ] = ACTIONS(3447), - [anon_sym_LBRACK] = ACTIONS(3445), - [anon_sym_COLON] = ACTIONS(3447), - [anon_sym_COMMA] = ACTIONS(3616), - [anon_sym_LPAREN] = ACTIONS(3632), - [anon_sym_RPAREN] = ACTIONS(3445), - [anon_sym_LBRACE] = ACTIONS(3616), - [anon_sym_file] = ACTIONS(3731), - [anon_sym_LT] = ACTIONS(3447), - [anon_sym_GT] = ACTIONS(3447), - [anon_sym_where] = ACTIONS(3731), - [anon_sym_QMARK] = ACTIONS(3447), - [anon_sym_notnull] = ACTIONS(3731), - [anon_sym_unmanaged] = ACTIONS(3731), - [anon_sym_BANG] = ACTIONS(3447), - [anon_sym_PLUS_PLUS] = ACTIONS(3445), - [anon_sym_DASH_DASH] = ACTIONS(3445), - [anon_sym_PLUS] = ACTIONS(3447), - [anon_sym_DASH] = ACTIONS(3447), - [anon_sym_STAR] = ACTIONS(3447), - [anon_sym_SLASH] = ACTIONS(3447), - [anon_sym_PERCENT] = ACTIONS(3447), - [anon_sym_CARET] = ACTIONS(3447), - [anon_sym_PIPE] = ACTIONS(3447), - [anon_sym_AMP] = ACTIONS(3447), - [anon_sym_LT_LT] = ACTIONS(3447), - [anon_sym_GT_GT] = ACTIONS(3447), - [anon_sym_GT_GT_GT] = ACTIONS(3447), - [anon_sym_EQ_EQ] = ACTIONS(3445), - [anon_sym_BANG_EQ] = ACTIONS(3445), - [anon_sym_GT_EQ] = ACTIONS(3445), - [anon_sym_LT_EQ] = ACTIONS(3445), - [anon_sym_DOT] = ACTIONS(3447), - [anon_sym_scoped] = ACTIONS(3731), - [anon_sym_EQ_GT] = ACTIONS(3445), - [anon_sym_COLON_COLON] = ACTIONS(3445), - [anon_sym_var] = ACTIONS(3731), - [anon_sym_yield] = ACTIONS(3731), - [anon_sym_switch] = ACTIONS(3447), - [anon_sym_when] = ACTIONS(3731), - [sym_discard] = ACTIONS(3636), - [anon_sym_DOT_DOT] = ACTIONS(3445), - [anon_sym_and] = ACTIONS(3619), - [anon_sym_or] = ACTIONS(3619), - [anon_sym_PLUS_EQ] = ACTIONS(3445), - [anon_sym_DASH_EQ] = ACTIONS(3445), - [anon_sym_STAR_EQ] = ACTIONS(3445), - [anon_sym_SLASH_EQ] = ACTIONS(3445), - [anon_sym_PERCENT_EQ] = ACTIONS(3445), - [anon_sym_AMP_EQ] = ACTIONS(3445), - [anon_sym_CARET_EQ] = ACTIONS(3445), - [anon_sym_PIPE_EQ] = ACTIONS(3445), - [anon_sym_LT_LT_EQ] = ACTIONS(3445), - [anon_sym_GT_GT_EQ] = ACTIONS(3445), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3445), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3445), - [anon_sym_AMP_AMP] = ACTIONS(3445), - [anon_sym_PIPE_PIPE] = ACTIONS(3445), - [anon_sym_QMARK_QMARK] = ACTIONS(3447), - [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_ascending] = ACTIONS(3731), - [anon_sym_descending] = ACTIONS(3731), - [anon_sym_group] = ACTIONS(3731), - [anon_sym_by] = ACTIONS(3731), - [anon_sym_select] = ACTIONS(3731), - [anon_sym_as] = ACTIONS(3447), - [anon_sym_is] = ACTIONS(3447), - [anon_sym_DASH_GT] = ACTIONS(3445), - [anon_sym_with] = ACTIONS(3447), + [aux_sym__class_declaration_initializer_repeat1] = STATE(2858), + [aux_sym__class_declaration_initializer_repeat2] = STATE(2383), + [aux_sym__lambda_expression_init_repeat1] = STATE(3435), + [sym__identifier_token] = ACTIONS(2965), + [anon_sym_extern] = ACTIONS(65), + [anon_sym_alias] = ACTIONS(2969), + [anon_sym_global] = ACTIONS(2969), + [anon_sym_unsafe] = ACTIONS(65), + [anon_sym_static] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(2975), + [anon_sym_LPAREN] = ACTIONS(3786), + [anon_sym_class] = ACTIONS(3739), + [anon_sym_ref] = ACTIONS(3741), + [anon_sym_struct] = ACTIONS(2823), + [anon_sym_enum] = ACTIONS(3743), + [anon_sym_interface] = ACTIONS(3745), + [anon_sym_delegate] = ACTIONS(3747), + [anon_sym_record] = ACTIONS(3749), + [anon_sym_abstract] = ACTIONS(65), + [anon_sym_async] = ACTIONS(39), + [anon_sym_const] = ACTIONS(65), + [anon_sym_file] = ACTIONS(2987), + [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(2969), + [anon_sym_notnull] = ACTIONS(2969), + [anon_sym_unmanaged] = ACTIONS(2969), + [anon_sym_scoped] = ACTIONS(2993), + [anon_sym_var] = ACTIONS(2995), + [sym_predefined_type] = ACTIONS(2997), + [anon_sym_yield] = ACTIONS(2969), + [anon_sym_when] = ACTIONS(2969), + [anon_sym_from] = ACTIONS(2969), + [anon_sym_into] = ACTIONS(2969), + [anon_sym_join] = ACTIONS(2969), + [anon_sym_on] = ACTIONS(2969), + [anon_sym_equals] = ACTIONS(2969), + [anon_sym_let] = ACTIONS(2969), + [anon_sym_orderby] = ACTIONS(2969), + [anon_sym_ascending] = ACTIONS(2969), + [anon_sym_descending] = ACTIONS(2969), + [anon_sym_group] = ACTIONS(2969), + [anon_sym_by] = ACTIONS(2969), + [anon_sym_select] = ACTIONS(2969), + [aux_sym_preproc_if_token1] = ACTIONS(3755), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -400447,15 +400192,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2202] = { - [sym__name] = STATE(2446), - [sym_alias_qualified_name] = STATE(2373), - [sym__simple_name] = STATE(2373), - [sym_qualified_name] = STATE(2373), - [sym_generic_name] = STATE(2389), - [sym_ref_type] = STATE(2317), - [sym__scoped_base_type] = STATE(2340), - [sym_identifier] = STATE(2359), - [sym__reserved_identifier] = STATE(2361), + [sym_type_argument_list] = STATE(2171), [sym_preproc_region] = STATE(2202), [sym_preproc_endregion] = STATE(2202), [sym_preproc_line] = STATE(2202), @@ -400465,78 +400202,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2202), [sym_preproc_define] = STATE(2202), [sym_preproc_undef] = STATE(2202), - [sym__identifier_token] = ACTIONS(3581), - [anon_sym_alias] = ACTIONS(3584), - [anon_sym_SEMI] = ACTIONS(3445), - [anon_sym_global] = ACTIONS(3584), - [anon_sym_LBRACK] = ACTIONS(3445), - [anon_sym_COMMA] = ACTIONS(3445), - [anon_sym_RBRACK] = ACTIONS(3445), - [anon_sym_LPAREN] = ACTIONS(3445), - [anon_sym_RPAREN] = ACTIONS(3445), - [anon_sym_ref] = ACTIONS(3587), - [anon_sym_LBRACE] = ACTIONS(3445), - [anon_sym_RBRACE] = ACTIONS(3445), - [anon_sym_file] = ACTIONS(3584), - [anon_sym_LT] = ACTIONS(3447), - [anon_sym_GT] = ACTIONS(3447), - [anon_sym_in] = ACTIONS(3447), - [anon_sym_where] = ACTIONS(3584), - [anon_sym_QMARK] = ACTIONS(3447), - [anon_sym_notnull] = ACTIONS(3584), - [anon_sym_unmanaged] = ACTIONS(3584), - [anon_sym_BANG] = ACTIONS(3447), - [anon_sym_PLUS_PLUS] = ACTIONS(3445), - [anon_sym_DASH_DASH] = ACTIONS(3445), - [anon_sym_PLUS] = ACTIONS(3447), - [anon_sym_DASH] = ACTIONS(3447), - [anon_sym_STAR] = ACTIONS(3445), - [anon_sym_SLASH] = ACTIONS(3447), - [anon_sym_PERCENT] = ACTIONS(3445), - [anon_sym_CARET] = ACTIONS(3445), - [anon_sym_PIPE] = ACTIONS(3447), - [anon_sym_AMP] = ACTIONS(3447), - [anon_sym_LT_LT] = ACTIONS(3445), - [anon_sym_GT_GT] = ACTIONS(3447), - [anon_sym_GT_GT_GT] = ACTIONS(3445), - [anon_sym_EQ_EQ] = ACTIONS(3445), - [anon_sym_BANG_EQ] = ACTIONS(3445), - [anon_sym_GT_EQ] = ACTIONS(3445), - [anon_sym_LT_EQ] = ACTIONS(3445), - [anon_sym_DOT] = ACTIONS(3447), - [anon_sym_scoped] = ACTIONS(3584), - [anon_sym_EQ_GT] = ACTIONS(3445), - [anon_sym_COLON_COLON] = ACTIONS(3445), - [anon_sym_var] = ACTIONS(3584), - [anon_sym_yield] = ACTIONS(3584), - [anon_sym_switch] = ACTIONS(3447), - [anon_sym_when] = ACTIONS(3584), - [sym_discard] = ACTIONS(3447), - [anon_sym_DOT_DOT] = ACTIONS(3445), - [anon_sym_and] = ACTIONS(3447), - [anon_sym_or] = ACTIONS(3447), - [anon_sym_AMP_AMP] = ACTIONS(3445), - [anon_sym_PIPE_PIPE] = ACTIONS(3445), - [anon_sym_QMARK_QMARK] = ACTIONS(3445), - [anon_sym_from] = ACTIONS(3584), - [anon_sym_into] = ACTIONS(3584), - [anon_sym_join] = ACTIONS(3584), - [anon_sym_on] = ACTIONS(3584), - [anon_sym_equals] = ACTIONS(3584), - [anon_sym_let] = ACTIONS(3584), - [anon_sym_orderby] = ACTIONS(3584), - [anon_sym_ascending] = ACTIONS(3584), - [anon_sym_descending] = ACTIONS(3584), - [anon_sym_group] = ACTIONS(3584), - [anon_sym_by] = ACTIONS(3584), - [anon_sym_select] = ACTIONS(3584), - [anon_sym_as] = ACTIONS(3447), - [anon_sym_is] = ACTIONS(3447), - [anon_sym_DASH_GT] = ACTIONS(3445), - [anon_sym_with] = ACTIONS(3447), - [aux_sym_preproc_if_token3] = ACTIONS(3445), - [aux_sym_preproc_else_token1] = ACTIONS(3445), - [aux_sym_preproc_elif_token1] = ACTIONS(3445), + [sym__identifier_token] = ACTIONS(3638), + [anon_sym_alias] = ACTIONS(3638), + [anon_sym_global] = ACTIONS(3638), + [anon_sym_EQ] = ACTIONS(3638), + [anon_sym_LBRACK] = ACTIONS(3640), + [anon_sym_COLON] = ACTIONS(3638), + [anon_sym_COMMA] = ACTIONS(3640), + [anon_sym_LPAREN] = ACTIONS(3640), + [anon_sym_RPAREN] = ACTIONS(3640), + [anon_sym_LBRACE] = ACTIONS(3640), + [anon_sym_RBRACE] = ACTIONS(3640), + [anon_sym_file] = ACTIONS(3638), + [anon_sym_LT] = ACTIONS(3648), + [anon_sym_GT] = ACTIONS(3638), + [anon_sym_where] = ACTIONS(3638), + [anon_sym_QMARK] = ACTIONS(3638), + [anon_sym_notnull] = ACTIONS(3638), + [anon_sym_unmanaged] = ACTIONS(3638), + [anon_sym_BANG] = ACTIONS(3638), + [anon_sym_PLUS_PLUS] = ACTIONS(3640), + [anon_sym_DASH_DASH] = ACTIONS(3640), + [anon_sym_PLUS] = ACTIONS(3638), + [anon_sym_DASH] = ACTIONS(3638), + [anon_sym_STAR] = ACTIONS(3638), + [anon_sym_SLASH] = ACTIONS(3638), + [anon_sym_PERCENT] = ACTIONS(3638), + [anon_sym_CARET] = ACTIONS(3638), + [anon_sym_PIPE] = ACTIONS(3638), + [anon_sym_AMP] = ACTIONS(3638), + [anon_sym_LT_LT] = ACTIONS(3638), + [anon_sym_GT_GT] = ACTIONS(3638), + [anon_sym_GT_GT_GT] = ACTIONS(3638), + [anon_sym_EQ_EQ] = ACTIONS(3640), + [anon_sym_BANG_EQ] = ACTIONS(3640), + [anon_sym_GT_EQ] = ACTIONS(3640), + [anon_sym_LT_EQ] = ACTIONS(3640), + [anon_sym_DOT] = ACTIONS(3638), + [anon_sym_scoped] = ACTIONS(3638), + [anon_sym_EQ_GT] = ACTIONS(3651), + [anon_sym_COLON_COLON] = ACTIONS(3788), + [anon_sym_var] = ACTIONS(3638), + [anon_sym_yield] = ACTIONS(3638), + [anon_sym_switch] = ACTIONS(3638), + [anon_sym_when] = ACTIONS(3638), + [sym_discard] = ACTIONS(3638), + [anon_sym_DOT_DOT] = ACTIONS(3640), + [anon_sym_and] = ACTIONS(3638), + [anon_sym_or] = ACTIONS(3638), + [anon_sym_PLUS_EQ] = ACTIONS(3640), + [anon_sym_DASH_EQ] = ACTIONS(3640), + [anon_sym_STAR_EQ] = ACTIONS(3640), + [anon_sym_SLASH_EQ] = ACTIONS(3640), + [anon_sym_PERCENT_EQ] = ACTIONS(3640), + [anon_sym_AMP_EQ] = ACTIONS(3640), + [anon_sym_CARET_EQ] = ACTIONS(3640), + [anon_sym_PIPE_EQ] = ACTIONS(3640), + [anon_sym_LT_LT_EQ] = ACTIONS(3640), + [anon_sym_GT_GT_EQ] = ACTIONS(3640), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3640), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3640), + [anon_sym_AMP_AMP] = ACTIONS(3640), + [anon_sym_PIPE_PIPE] = ACTIONS(3640), + [anon_sym_QMARK_QMARK] = ACTIONS(3638), + [anon_sym_from] = ACTIONS(3638), + [anon_sym_into] = ACTIONS(3638), + [anon_sym_join] = ACTIONS(3638), + [anon_sym_on] = ACTIONS(3638), + [anon_sym_equals] = ACTIONS(3638), + [anon_sym_let] = ACTIONS(3638), + [anon_sym_orderby] = ACTIONS(3638), + [anon_sym_ascending] = ACTIONS(3638), + [anon_sym_descending] = ACTIONS(3638), + [anon_sym_group] = ACTIONS(3638), + [anon_sym_by] = ACTIONS(3638), + [anon_sym_select] = ACTIONS(3638), + [anon_sym_as] = ACTIONS(3638), + [anon_sym_is] = ACTIONS(3638), + [anon_sym_DASH_GT] = ACTIONS(3640), + [anon_sym_with] = ACTIONS(3638), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -400549,15 +400293,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2203] = { - [sym__name] = STATE(3191), - [sym_alias_qualified_name] = STATE(3200), - [sym__simple_name] = STATE(3200), - [sym_qualified_name] = STATE(3200), - [sym_generic_name] = STATE(3156), - [sym_ref_type] = STATE(3178), - [sym__scoped_base_type] = STATE(3202), - [sym_identifier] = STATE(3129), - [sym__reserved_identifier] = STATE(3149), + [sym__variable_designation] = STATE(3353), + [sym_parenthesized_variable_designation] = STATE(3352), + [sym_identifier] = STATE(3355), + [sym__reserved_identifier] = STATE(3205), [sym_preproc_region] = STATE(2203), [sym_preproc_endregion] = STATE(2203), [sym_preproc_line] = STATE(2203), @@ -400567,78 +400306,82 @@ 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(3773), - [anon_sym_alias] = ACTIONS(3775), - [anon_sym_SEMI] = ACTIONS(3445), - [anon_sym_global] = ACTIONS(3775), - [anon_sym_LBRACK] = ACTIONS(3445), - [anon_sym_COLON] = ACTIONS(3447), - [anon_sym_COMMA] = ACTIONS(3445), - [anon_sym_RBRACK] = ACTIONS(3445), - [anon_sym_LPAREN] = ACTIONS(3445), - [anon_sym_RPAREN] = ACTIONS(3445), - [anon_sym_ref] = ACTIONS(3777), - [anon_sym_LBRACE] = ACTIONS(3445), - [anon_sym_RBRACE] = ACTIONS(3445), - [anon_sym_file] = ACTIONS(3775), - [anon_sym_LT] = ACTIONS(3447), - [anon_sym_GT] = ACTIONS(3447), - [anon_sym_in] = ACTIONS(3447), - [anon_sym_where] = ACTIONS(3775), - [anon_sym_QMARK] = ACTIONS(3447), - [anon_sym_notnull] = ACTIONS(3775), - [anon_sym_unmanaged] = ACTIONS(3775), - [anon_sym_BANG] = ACTIONS(3447), - [anon_sym_PLUS_PLUS] = ACTIONS(3445), - [anon_sym_DASH_DASH] = ACTIONS(3445), - [anon_sym_PLUS] = ACTIONS(3447), - [anon_sym_DASH] = ACTIONS(3447), - [anon_sym_STAR] = ACTIONS(3445), - [anon_sym_SLASH] = ACTIONS(3447), - [anon_sym_PERCENT] = ACTIONS(3445), - [anon_sym_CARET] = ACTIONS(3445), - [anon_sym_PIPE] = ACTIONS(3447), - [anon_sym_AMP] = ACTIONS(3447), - [anon_sym_LT_LT] = ACTIONS(3445), - [anon_sym_GT_GT] = ACTIONS(3447), - [anon_sym_GT_GT_GT] = ACTIONS(3445), - [anon_sym_EQ_EQ] = ACTIONS(3445), - [anon_sym_BANG_EQ] = ACTIONS(3445), - [anon_sym_GT_EQ] = ACTIONS(3445), - [anon_sym_LT_EQ] = ACTIONS(3445), - [anon_sym_DOT] = ACTIONS(3447), - [anon_sym_scoped] = ACTIONS(3775), - [anon_sym_EQ_GT] = ACTIONS(3445), - [anon_sym_COLON_COLON] = ACTIONS(3445), - [anon_sym_var] = ACTIONS(3775), - [anon_sym_yield] = ACTIONS(3775), - [anon_sym_switch] = ACTIONS(3447), - [anon_sym_when] = ACTIONS(3775), - [anon_sym_DOT_DOT] = ACTIONS(3445), - [anon_sym_and] = ACTIONS(3447), - [anon_sym_or] = ACTIONS(3447), - [anon_sym_AMP_AMP] = ACTIONS(3445), - [anon_sym_PIPE_PIPE] = ACTIONS(3445), - [anon_sym_QMARK_QMARK] = ACTIONS(3445), - [anon_sym_from] = ACTIONS(3775), - [anon_sym_into] = ACTIONS(3779), - [anon_sym_join] = ACTIONS(3775), - [anon_sym_on] = ACTIONS(3775), - [anon_sym_equals] = ACTIONS(3775), - [anon_sym_let] = ACTIONS(3775), - [anon_sym_orderby] = ACTIONS(3775), - [anon_sym_ascending] = ACTIONS(3775), - [anon_sym_descending] = ACTIONS(3775), - [anon_sym_group] = ACTIONS(3775), - [anon_sym_by] = ACTIONS(3775), - [anon_sym_select] = ACTIONS(3775), - [anon_sym_as] = ACTIONS(3447), - [anon_sym_is] = ACTIONS(3447), - [anon_sym_DASH_GT] = ACTIONS(3445), - [anon_sym_with] = ACTIONS(3447), - [aux_sym_preproc_if_token3] = ACTIONS(3445), - [aux_sym_preproc_else_token1] = ACTIONS(3445), - [aux_sym_preproc_elif_token1] = ACTIONS(3445), + [sym__identifier_token] = ACTIONS(3790), + [anon_sym_alias] = ACTIONS(3794), + [anon_sym_global] = ACTIONS(3794), + [anon_sym_EQ] = ACTIONS(3431), + [anon_sym_LBRACK] = ACTIONS(3600), + [anon_sym_LPAREN] = ACTIONS(3616), + [anon_sym_LBRACE] = ACTIONS(3600), + [anon_sym_file] = ACTIONS(3794), + [anon_sym_LT] = ACTIONS(3603), + [anon_sym_GT] = ACTIONS(3603), + [anon_sym_in] = ACTIONS(3603), + [anon_sym_where] = ACTIONS(3794), + [anon_sym_QMARK] = ACTIONS(3603), + [anon_sym_notnull] = ACTIONS(3794), + [anon_sym_unmanaged] = ACTIONS(3794), + [anon_sym_BANG] = ACTIONS(3603), + [anon_sym_PLUS_PLUS] = ACTIONS(3600), + [anon_sym_DASH_DASH] = ACTIONS(3600), + [anon_sym_PLUS] = ACTIONS(3603), + [anon_sym_DASH] = ACTIONS(3603), + [anon_sym_STAR] = ACTIONS(3603), + [anon_sym_SLASH] = ACTIONS(3603), + [anon_sym_PERCENT] = ACTIONS(3603), + [anon_sym_CARET] = ACTIONS(3603), + [anon_sym_PIPE] = ACTIONS(3603), + [anon_sym_AMP] = ACTIONS(3603), + [anon_sym_LT_LT] = ACTIONS(3603), + [anon_sym_GT_GT] = ACTIONS(3603), + [anon_sym_GT_GT_GT] = ACTIONS(3603), + [anon_sym_EQ_EQ] = ACTIONS(3600), + [anon_sym_BANG_EQ] = ACTIONS(3600), + [anon_sym_GT_EQ] = ACTIONS(3600), + [anon_sym_LT_EQ] = ACTIONS(3600), + [anon_sym_DOT] = ACTIONS(3603), + [anon_sym_scoped] = ACTIONS(3794), + [anon_sym_EQ_GT] = ACTIONS(3429), + [anon_sym_COLON_COLON] = ACTIONS(3429), + [anon_sym_var] = ACTIONS(3794), + [anon_sym_yield] = ACTIONS(3794), + [anon_sym_switch] = ACTIONS(3603), + [anon_sym_when] = ACTIONS(3794), + [sym_discard] = ACTIONS(3620), + [anon_sym_DOT_DOT] = ACTIONS(3600), + [anon_sym_and] = ACTIONS(3603), + [anon_sym_or] = ACTIONS(3603), + [anon_sym_PLUS_EQ] = ACTIONS(3429), + [anon_sym_DASH_EQ] = ACTIONS(3429), + [anon_sym_STAR_EQ] = ACTIONS(3429), + [anon_sym_SLASH_EQ] = ACTIONS(3429), + [anon_sym_PERCENT_EQ] = ACTIONS(3429), + [anon_sym_AMP_EQ] = ACTIONS(3429), + [anon_sym_CARET_EQ] = ACTIONS(3429), + [anon_sym_PIPE_EQ] = ACTIONS(3429), + [anon_sym_LT_LT_EQ] = ACTIONS(3429), + [anon_sym_GT_GT_EQ] = ACTIONS(3429), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3429), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3429), + [anon_sym_AMP_AMP] = ACTIONS(3600), + [anon_sym_PIPE_PIPE] = ACTIONS(3600), + [anon_sym_QMARK_QMARK] = ACTIONS(3603), + [anon_sym_from] = ACTIONS(3794), + [anon_sym_into] = ACTIONS(3794), + [anon_sym_join] = ACTIONS(3794), + [anon_sym_on] = ACTIONS(3794), + [anon_sym_equals] = ACTIONS(3794), + [anon_sym_let] = ACTIONS(3794), + [anon_sym_orderby] = ACTIONS(3794), + [anon_sym_ascending] = ACTIONS(3794), + [anon_sym_descending] = ACTIONS(3794), + [anon_sym_group] = ACTIONS(3794), + [anon_sym_by] = ACTIONS(3794), + [anon_sym_select] = ACTIONS(3794), + [anon_sym_as] = ACTIONS(3603), + [anon_sym_is] = ACTIONS(3603), + [anon_sym_DASH_GT] = ACTIONS(3600), + [anon_sym_with] = ACTIONS(3603), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -400660,87 +400403,86 @@ 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), - [sym__identifier_token] = ACTIONS(3699), - [anon_sym_alias] = ACTIONS(3699), - [anon_sym_SEMI] = ACTIONS(3719), - [anon_sym_global] = ACTIONS(3699), - [anon_sym_EQ] = ACTIONS(3704), - [anon_sym_LBRACK] = ACTIONS(3721), - [anon_sym_COLON] = ACTIONS(3719), - [anon_sym_COMMA] = ACTIONS(3721), - [anon_sym_RBRACK] = ACTIONS(3721), - [anon_sym_LPAREN] = ACTIONS(3721), - [anon_sym_RPAREN] = ACTIONS(3721), - [anon_sym_file] = ACTIONS(3699), - [anon_sym_LT] = ACTIONS(3704), - [anon_sym_GT] = ACTIONS(3704), - [anon_sym_in] = ACTIONS(3704), - [anon_sym_where] = ACTIONS(3699), - [anon_sym_QMARK] = ACTIONS(3724), - [anon_sym_notnull] = ACTIONS(3699), - [anon_sym_unmanaged] = ACTIONS(3699), - [anon_sym_BANG] = ACTIONS(3704), - [anon_sym_PLUS_PLUS] = ACTIONS(3719), - [anon_sym_DASH_DASH] = ACTIONS(3719), - [anon_sym_PLUS] = ACTIONS(3704), - [anon_sym_DASH] = ACTIONS(3704), - [anon_sym_STAR] = ACTIONS(3724), - [anon_sym_SLASH] = ACTIONS(3704), - [anon_sym_PERCENT] = ACTIONS(3704), - [anon_sym_CARET] = ACTIONS(3704), - [anon_sym_PIPE] = ACTIONS(3704), - [anon_sym_AMP] = ACTIONS(3704), - [anon_sym_LT_LT] = ACTIONS(3704), - [anon_sym_GT_GT] = ACTIONS(3704), - [anon_sym_GT_GT_GT] = ACTIONS(3704), - [anon_sym_EQ_EQ] = ACTIONS(3719), - [anon_sym_BANG_EQ] = ACTIONS(3719), - [anon_sym_GT_EQ] = ACTIONS(3719), - [anon_sym_LT_EQ] = ACTIONS(3719), - [anon_sym_DOT] = ACTIONS(3724), - [anon_sym_scoped] = ACTIONS(3699), - [anon_sym_EQ_GT] = ACTIONS(3719), - [anon_sym_var] = ACTIONS(3699), - [anon_sym_yield] = ACTIONS(3699), - [anon_sym_switch] = ACTIONS(3704), - [anon_sym_when] = ACTIONS(3699), - [anon_sym_DOT_DOT] = ACTIONS(3719), - [anon_sym_and] = ACTIONS(3704), - [anon_sym_or] = ACTIONS(3704), - [anon_sym_PLUS_EQ] = ACTIONS(3719), - [anon_sym_DASH_EQ] = ACTIONS(3719), - [anon_sym_STAR_EQ] = ACTIONS(3719), - [anon_sym_SLASH_EQ] = ACTIONS(3719), - [anon_sym_PERCENT_EQ] = ACTIONS(3719), - [anon_sym_AMP_EQ] = ACTIONS(3719), - [anon_sym_CARET_EQ] = ACTIONS(3719), - [anon_sym_PIPE_EQ] = ACTIONS(3719), - [anon_sym_LT_LT_EQ] = ACTIONS(3719), - [anon_sym_GT_GT_EQ] = ACTIONS(3719), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3719), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3719), - [anon_sym_AMP_AMP] = ACTIONS(3719), - [anon_sym_PIPE_PIPE] = ACTIONS(3719), - [anon_sym_QMARK_QMARK] = ACTIONS(3704), - [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_ascending] = ACTIONS(3699), - [anon_sym_descending] = ACTIONS(3699), - [anon_sym_group] = ACTIONS(3699), - [anon_sym_by] = ACTIONS(3699), - [anon_sym_select] = ACTIONS(3699), - [anon_sym_as] = ACTIONS(3704), - [anon_sym_is] = ACTIONS(3704), - [anon_sym_DASH_GT] = ACTIONS(3721), - [anon_sym_with] = ACTIONS(3704), - [aux_sym_preproc_if_token3] = ACTIONS(3719), - [aux_sym_preproc_else_token1] = ACTIONS(3719), - [aux_sym_preproc_elif_token1] = ACTIONS(3719), + [sym__identifier_token] = ACTIONS(3603), + [anon_sym_alias] = ACTIONS(3603), + [anon_sym_global] = ACTIONS(3603), + [anon_sym_EQ] = ACTIONS(3431), + [anon_sym_LBRACK] = ACTIONS(3429), + [anon_sym_COLON] = ACTIONS(3603), + [anon_sym_COMMA] = ACTIONS(3600), + [anon_sym_RBRACK] = ACTIONS(3600), + [anon_sym_LPAREN] = ACTIONS(3600), + [anon_sym_RPAREN] = ACTIONS(3429), + [anon_sym_LBRACE] = ACTIONS(3600), + [anon_sym_RBRACE] = ACTIONS(3600), + [anon_sym_file] = ACTIONS(3603), + [anon_sym_LT] = ACTIONS(3431), + [anon_sym_GT] = ACTIONS(3431), + [anon_sym_where] = ACTIONS(3603), + [anon_sym_QMARK] = ACTIONS(3431), + [anon_sym_notnull] = ACTIONS(3603), + [anon_sym_unmanaged] = ACTIONS(3603), + [anon_sym_BANG] = ACTIONS(3431), + [anon_sym_PLUS_PLUS] = ACTIONS(3429), + [anon_sym_DASH_DASH] = ACTIONS(3429), + [anon_sym_PLUS] = ACTIONS(3431), + [anon_sym_DASH] = ACTIONS(3431), + [anon_sym_STAR] = ACTIONS(3431), + [anon_sym_SLASH] = ACTIONS(3431), + [anon_sym_PERCENT] = ACTIONS(3431), + [anon_sym_CARET] = ACTIONS(3431), + [anon_sym_PIPE] = ACTIONS(3431), + [anon_sym_AMP] = ACTIONS(3431), + [anon_sym_LT_LT] = ACTIONS(3431), + [anon_sym_GT_GT] = ACTIONS(3431), + [anon_sym_GT_GT_GT] = ACTIONS(3431), + [anon_sym_EQ_EQ] = ACTIONS(3429), + [anon_sym_BANG_EQ] = ACTIONS(3429), + [anon_sym_GT_EQ] = ACTIONS(3429), + [anon_sym_LT_EQ] = ACTIONS(3429), + [anon_sym_DOT] = ACTIONS(3431), + [anon_sym_scoped] = ACTIONS(3603), + [anon_sym_EQ_GT] = ACTIONS(3429), + [anon_sym_COLON_COLON] = ACTIONS(3429), + [anon_sym_var] = ACTIONS(3603), + [anon_sym_yield] = ACTIONS(3603), + [anon_sym_switch] = ACTIONS(3431), + [anon_sym_when] = ACTIONS(3603), + [sym_discard] = ACTIONS(3603), + [anon_sym_DOT_DOT] = ACTIONS(3429), + [anon_sym_and] = ACTIONS(3603), + [anon_sym_or] = ACTIONS(3603), + [anon_sym_PLUS_EQ] = ACTIONS(3429), + [anon_sym_DASH_EQ] = ACTIONS(3429), + [anon_sym_STAR_EQ] = ACTIONS(3429), + [anon_sym_SLASH_EQ] = ACTIONS(3429), + [anon_sym_PERCENT_EQ] = ACTIONS(3429), + [anon_sym_AMP_EQ] = ACTIONS(3429), + [anon_sym_CARET_EQ] = ACTIONS(3429), + [anon_sym_PIPE_EQ] = ACTIONS(3429), + [anon_sym_LT_LT_EQ] = ACTIONS(3429), + [anon_sym_GT_GT_EQ] = ACTIONS(3429), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3429), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3429), + [anon_sym_AMP_AMP] = ACTIONS(3429), + [anon_sym_PIPE_PIPE] = ACTIONS(3429), + [anon_sym_QMARK_QMARK] = ACTIONS(3431), + [anon_sym_from] = ACTIONS(3603), + [anon_sym_into] = ACTIONS(3603), + [anon_sym_join] = ACTIONS(3603), + [anon_sym_on] = ACTIONS(3603), + [anon_sym_equals] = ACTIONS(3603), + [anon_sym_let] = ACTIONS(3603), + [anon_sym_orderby] = ACTIONS(3603), + [anon_sym_ascending] = ACTIONS(3603), + [anon_sym_descending] = ACTIONS(3603), + [anon_sym_group] = ACTIONS(3603), + [anon_sym_by] = ACTIONS(3603), + [anon_sym_select] = ACTIONS(3603), + [anon_sym_as] = ACTIONS(3431), + [anon_sym_is] = ACTIONS(3431), + [anon_sym_DASH_GT] = ACTIONS(3429), + [anon_sym_with] = ACTIONS(3431), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -400753,6 +400495,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2205] = { + [sym__variable_designation] = STATE(3353), + [sym_parenthesized_variable_designation] = STATE(3352), + [sym_identifier] = STATE(3355), + [sym__reserved_identifier] = STATE(2565), [sym_preproc_region] = STATE(2205), [sym_preproc_endregion] = STATE(2205), [sym_preproc_line] = STATE(2205), @@ -400762,87 +400508,82 @@ 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(3782), - [anon_sym_extern] = ACTIONS(3782), - [anon_sym_alias] = ACTIONS(3782), - [anon_sym_global] = ACTIONS(3782), - [anon_sym_unsafe] = ACTIONS(3782), - [anon_sym_static] = ACTIONS(3782), - [anon_sym_LBRACK] = ACTIONS(3784), - [anon_sym_LPAREN] = ACTIONS(3784), - [anon_sym_ref] = ACTIONS(3782), - [anon_sym_delegate] = ACTIONS(3782), - [anon_sym_abstract] = ACTIONS(3782), - [anon_sym_async] = ACTIONS(3782), - [anon_sym_const] = ACTIONS(3782), - [anon_sym_file] = ACTIONS(3782), - [anon_sym_fixed] = ACTIONS(3782), - [anon_sym_internal] = ACTIONS(3782), - [anon_sym_new] = ACTIONS(3782), - [anon_sym_override] = ACTIONS(3782), - [anon_sym_partial] = ACTIONS(3782), - [anon_sym_private] = ACTIONS(3782), - [anon_sym_protected] = ACTIONS(3782), - [anon_sym_public] = ACTIONS(3782), - [anon_sym_readonly] = ACTIONS(3782), - [anon_sym_required] = ACTIONS(3782), - [anon_sym_sealed] = ACTIONS(3782), - [anon_sym_virtual] = ACTIONS(3782), - [anon_sym_volatile] = ACTIONS(3782), - [anon_sym_LT] = ACTIONS(2963), - [anon_sym_GT] = ACTIONS(2963), - [anon_sym_where] = ACTIONS(3782), - [anon_sym_QMARK] = ACTIONS(2963), - [anon_sym_notnull] = ACTIONS(3782), - [anon_sym_unmanaged] = ACTIONS(3782), - [anon_sym_BANG] = ACTIONS(2963), - [anon_sym_PLUS_PLUS] = ACTIONS(2965), - [anon_sym_DASH_DASH] = ACTIONS(2965), - [anon_sym_PLUS] = ACTIONS(2963), - [anon_sym_DASH] = ACTIONS(2963), - [anon_sym_STAR] = ACTIONS(2965), - [anon_sym_SLASH] = ACTIONS(2963), - [anon_sym_PERCENT] = ACTIONS(2965), - [anon_sym_CARET] = ACTIONS(2965), - [anon_sym_PIPE] = ACTIONS(2963), - [anon_sym_AMP] = ACTIONS(2963), - [anon_sym_LT_LT] = ACTIONS(2965), - [anon_sym_GT_GT] = ACTIONS(2963), - [anon_sym_GT_GT_GT] = ACTIONS(2965), - [anon_sym_EQ_EQ] = ACTIONS(2965), - [anon_sym_BANG_EQ] = ACTIONS(2965), - [anon_sym_GT_EQ] = ACTIONS(2965), - [anon_sym_LT_EQ] = ACTIONS(2965), - [anon_sym_DOT] = ACTIONS(2963), - [anon_sym_scoped] = ACTIONS(3782), - [anon_sym_var] = ACTIONS(3782), - [sym_predefined_type] = ACTIONS(3782), - [anon_sym_while] = ACTIONS(2959), - [anon_sym_yield] = ACTIONS(3782), - [anon_sym_switch] = ACTIONS(2963), - [anon_sym_when] = ACTIONS(3782), - [anon_sym_else] = ACTIONS(2959), - [anon_sym_DOT_DOT] = ACTIONS(2965), - [anon_sym_AMP_AMP] = ACTIONS(2965), - [anon_sym_PIPE_PIPE] = ACTIONS(2965), - [anon_sym_QMARK_QMARK] = ACTIONS(2965), - [anon_sym_from] = ACTIONS(3782), - [anon_sym_into] = ACTIONS(3782), - [anon_sym_join] = ACTIONS(3782), - [anon_sym_on] = ACTIONS(3782), - [anon_sym_equals] = ACTIONS(3782), - [anon_sym_let] = ACTIONS(3782), - [anon_sym_orderby] = ACTIONS(3782), - [anon_sym_ascending] = ACTIONS(3782), - [anon_sym_descending] = ACTIONS(3782), - [anon_sym_group] = ACTIONS(3782), - [anon_sym_by] = ACTIONS(3782), - [anon_sym_select] = ACTIONS(3782), - [anon_sym_as] = ACTIONS(2963), - [anon_sym_is] = ACTIONS(2963), - [anon_sym_DASH_GT] = ACTIONS(2965), - [anon_sym_with] = ACTIONS(2963), - [aux_sym_preproc_if_token1] = ACTIONS(3784), + [sym__identifier_token] = ACTIONS(3683), + [anon_sym_alias] = ACTIONS(3687), + [anon_sym_global] = ACTIONS(3687), + [anon_sym_EQ] = ACTIONS(3431), + [anon_sym_LBRACK] = ACTIONS(3429), + [anon_sym_COLON] = ACTIONS(3603), + [anon_sym_LPAREN] = ACTIONS(3616), + [anon_sym_LBRACE] = ACTIONS(3600), + [anon_sym_file] = ACTIONS(3687), + [anon_sym_LT] = ACTIONS(3431), + [anon_sym_GT] = ACTIONS(3431), + [anon_sym_where] = ACTIONS(3687), + [anon_sym_QMARK] = ACTIONS(3431), + [anon_sym_notnull] = ACTIONS(3687), + [anon_sym_unmanaged] = ACTIONS(3687), + [anon_sym_BANG] = ACTIONS(3431), + [anon_sym_PLUS_PLUS] = ACTIONS(3429), + [anon_sym_DASH_DASH] = ACTIONS(3429), + [anon_sym_PLUS] = ACTIONS(3431), + [anon_sym_DASH] = ACTIONS(3431), + [anon_sym_STAR] = ACTIONS(3431), + [anon_sym_SLASH] = ACTIONS(3431), + [anon_sym_PERCENT] = ACTIONS(3431), + [anon_sym_CARET] = ACTIONS(3431), + [anon_sym_PIPE] = ACTIONS(3431), + [anon_sym_AMP] = ACTIONS(3431), + [anon_sym_LT_LT] = ACTIONS(3431), + [anon_sym_GT_GT] = ACTIONS(3431), + [anon_sym_GT_GT_GT] = ACTIONS(3431), + [anon_sym_EQ_EQ] = ACTIONS(3429), + [anon_sym_BANG_EQ] = ACTIONS(3429), + [anon_sym_GT_EQ] = ACTIONS(3429), + [anon_sym_LT_EQ] = ACTIONS(3429), + [anon_sym_DOT] = ACTIONS(3431), + [anon_sym_scoped] = ACTIONS(3687), + [anon_sym_EQ_GT] = ACTIONS(3429), + [anon_sym_COLON_COLON] = ACTIONS(3429), + [anon_sym_var] = ACTIONS(3687), + [anon_sym_yield] = ACTIONS(3687), + [anon_sym_switch] = ACTIONS(3431), + [anon_sym_when] = ACTIONS(3687), + [sym_discard] = ACTIONS(3620), + [anon_sym_DOT_DOT] = ACTIONS(3429), + [anon_sym_and] = ACTIONS(3603), + [anon_sym_or] = ACTIONS(3603), + [anon_sym_PLUS_EQ] = ACTIONS(3429), + [anon_sym_DASH_EQ] = ACTIONS(3429), + [anon_sym_STAR_EQ] = ACTIONS(3429), + [anon_sym_SLASH_EQ] = ACTIONS(3429), + [anon_sym_PERCENT_EQ] = ACTIONS(3429), + [anon_sym_AMP_EQ] = ACTIONS(3429), + [anon_sym_CARET_EQ] = ACTIONS(3429), + [anon_sym_PIPE_EQ] = ACTIONS(3429), + [anon_sym_LT_LT_EQ] = ACTIONS(3429), + [anon_sym_GT_GT_EQ] = ACTIONS(3429), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3429), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3429), + [anon_sym_AMP_AMP] = ACTIONS(3429), + [anon_sym_PIPE_PIPE] = ACTIONS(3429), + [anon_sym_QMARK_QMARK] = ACTIONS(3431), + [anon_sym_from] = ACTIONS(3687), + [anon_sym_into] = ACTIONS(3687), + [anon_sym_join] = ACTIONS(3687), + [anon_sym_on] = ACTIONS(3687), + [anon_sym_equals] = ACTIONS(3687), + [anon_sym_let] = ACTIONS(3687), + [anon_sym_orderby] = ACTIONS(3687), + [anon_sym_ascending] = ACTIONS(3687), + [anon_sym_descending] = ACTIONS(3687), + [anon_sym_group] = ACTIONS(3687), + [anon_sym_by] = ACTIONS(3687), + [anon_sym_select] = ACTIONS(3687), + [anon_sym_as] = ACTIONS(3431), + [anon_sym_is] = ACTIONS(3431), + [anon_sym_DASH_GT] = ACTIONS(3429), + [anon_sym_with] = ACTIONS(3431), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -400855,7 +400596,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2206] = { - [sym_type_argument_list] = STATE(2183), + [sym__name] = STATE(3489), + [sym_alias_qualified_name] = STATE(3304), + [sym__simple_name] = STATE(3304), + [sym_qualified_name] = STATE(3304), + [sym_generic_name] = STATE(3241), + [sym_ref_type] = STATE(3327), + [sym__scoped_base_type] = STATE(3340), + [sym_identifier] = STATE(3177), + [sym__reserved_identifier] = STATE(3205), [sym_preproc_region] = STATE(2206), [sym_preproc_endregion] = STATE(2206), [sym_preproc_line] = STATE(2206), @@ -400865,85 +400614,77 @@ 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(3660), - [anon_sym_alias] = ACTIONS(3660), - [anon_sym_global] = ACTIONS(3660), - [anon_sym_EQ] = ACTIONS(3660), - [anon_sym_LBRACK] = ACTIONS(3662), - [anon_sym_COLON] = ACTIONS(3786), - [anon_sym_COMMA] = ACTIONS(3662), - [anon_sym_RBRACK] = ACTIONS(3662), - [anon_sym_LPAREN] = ACTIONS(3662), - [anon_sym_RPAREN] = ACTIONS(3662), - [anon_sym_LBRACE] = ACTIONS(3662), - [anon_sym_file] = ACTIONS(3660), - [anon_sym_LT] = ACTIONS(3664), - [anon_sym_GT] = ACTIONS(3660), - [anon_sym_where] = ACTIONS(3660), - [anon_sym_QMARK] = ACTIONS(3660), - [anon_sym_notnull] = ACTIONS(3660), - [anon_sym_unmanaged] = ACTIONS(3660), - [anon_sym_BANG] = ACTIONS(3660), - [anon_sym_PLUS_PLUS] = ACTIONS(3662), - [anon_sym_DASH_DASH] = ACTIONS(3662), - [anon_sym_PLUS] = ACTIONS(3660), - [anon_sym_DASH] = ACTIONS(3660), - [anon_sym_STAR] = ACTIONS(3660), - [anon_sym_SLASH] = ACTIONS(3660), - [anon_sym_PERCENT] = ACTIONS(3660), - [anon_sym_CARET] = ACTIONS(3660), - [anon_sym_PIPE] = ACTIONS(3660), - [anon_sym_AMP] = ACTIONS(3660), - [anon_sym_LT_LT] = ACTIONS(3660), - [anon_sym_GT_GT] = ACTIONS(3660), - [anon_sym_GT_GT_GT] = ACTIONS(3660), - [anon_sym_EQ_EQ] = ACTIONS(3662), - [anon_sym_BANG_EQ] = ACTIONS(3662), - [anon_sym_GT_EQ] = ACTIONS(3662), - [anon_sym_LT_EQ] = ACTIONS(3662), - [anon_sym_DOT] = ACTIONS(3660), - [anon_sym_scoped] = ACTIONS(3660), - [anon_sym_EQ_GT] = ACTIONS(3667), - [anon_sym_COLON_COLON] = ACTIONS(3669), - [anon_sym_var] = ACTIONS(3660), - [anon_sym_yield] = ACTIONS(3660), - [anon_sym_switch] = ACTIONS(3660), - [anon_sym_when] = ACTIONS(3660), - [sym_discard] = ACTIONS(3660), - [anon_sym_DOT_DOT] = ACTIONS(3662), - [anon_sym_and] = ACTIONS(3660), - [anon_sym_or] = ACTIONS(3660), - [anon_sym_PLUS_EQ] = ACTIONS(3662), - [anon_sym_DASH_EQ] = ACTIONS(3662), - [anon_sym_STAR_EQ] = ACTIONS(3662), - [anon_sym_SLASH_EQ] = ACTIONS(3662), - [anon_sym_PERCENT_EQ] = ACTIONS(3662), - [anon_sym_AMP_EQ] = ACTIONS(3662), - [anon_sym_CARET_EQ] = ACTIONS(3662), - [anon_sym_PIPE_EQ] = ACTIONS(3662), - [anon_sym_LT_LT_EQ] = ACTIONS(3662), - [anon_sym_GT_GT_EQ] = ACTIONS(3662), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3662), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3662), - [anon_sym_AMP_AMP] = ACTIONS(3662), - [anon_sym_PIPE_PIPE] = ACTIONS(3662), - [anon_sym_QMARK_QMARK] = ACTIONS(3660), - [anon_sym_from] = ACTIONS(3660), - [anon_sym_into] = ACTIONS(3660), - [anon_sym_join] = ACTIONS(3660), - [anon_sym_on] = ACTIONS(3660), - [anon_sym_equals] = ACTIONS(3660), - [anon_sym_let] = ACTIONS(3660), - [anon_sym_orderby] = ACTIONS(3660), - [anon_sym_ascending] = ACTIONS(3660), - [anon_sym_descending] = ACTIONS(3660), - [anon_sym_group] = ACTIONS(3660), - [anon_sym_by] = ACTIONS(3660), - [anon_sym_select] = ACTIONS(3660), - [anon_sym_as] = ACTIONS(3660), - [anon_sym_is] = ACTIONS(3660), - [anon_sym_DASH_GT] = ACTIONS(3662), - [anon_sym_with] = ACTIONS(3660), + [sym__identifier_token] = ACTIONS(3798), + [anon_sym_alias] = ACTIONS(3800), + [anon_sym_SEMI] = ACTIONS(3429), + [anon_sym_global] = ACTIONS(3800), + [anon_sym_LBRACK] = ACTIONS(3429), + [anon_sym_COLON] = ACTIONS(3431), + [anon_sym_COMMA] = ACTIONS(3429), + [anon_sym_RBRACK] = ACTIONS(3429), + [anon_sym_LPAREN] = ACTIONS(3429), + [anon_sym_RPAREN] = ACTIONS(3429), + [anon_sym_ref] = ACTIONS(3802), + [anon_sym_LBRACE] = ACTIONS(3429), + [anon_sym_RBRACE] = ACTIONS(3429), + [anon_sym_file] = ACTIONS(3800), + [anon_sym_LT] = ACTIONS(3431), + [anon_sym_GT] = ACTIONS(3431), + [anon_sym_where] = ACTIONS(3800), + [anon_sym_QMARK] = ACTIONS(3431), + [anon_sym_notnull] = ACTIONS(3800), + [anon_sym_unmanaged] = ACTIONS(3800), + [anon_sym_BANG] = ACTIONS(3431), + [anon_sym_PLUS_PLUS] = ACTIONS(3429), + [anon_sym_DASH_DASH] = ACTIONS(3429), + [anon_sym_PLUS] = ACTIONS(3431), + [anon_sym_DASH] = ACTIONS(3431), + [anon_sym_STAR] = ACTIONS(3429), + [anon_sym_SLASH] = ACTIONS(3431), + [anon_sym_PERCENT] = ACTIONS(3429), + [anon_sym_CARET] = ACTIONS(3429), + [anon_sym_PIPE] = ACTIONS(3431), + [anon_sym_AMP] = ACTIONS(3431), + [anon_sym_LT_LT] = ACTIONS(3429), + [anon_sym_GT_GT] = ACTIONS(3431), + [anon_sym_GT_GT_GT] = ACTIONS(3429), + [anon_sym_EQ_EQ] = ACTIONS(3429), + [anon_sym_BANG_EQ] = ACTIONS(3429), + [anon_sym_GT_EQ] = ACTIONS(3429), + [anon_sym_LT_EQ] = ACTIONS(3429), + [anon_sym_DOT] = ACTIONS(3431), + [anon_sym_scoped] = ACTIONS(3800), + [anon_sym_EQ_GT] = ACTIONS(3429), + [anon_sym_COLON_COLON] = ACTIONS(3429), + [anon_sym_var] = ACTIONS(3800), + [anon_sym_yield] = ACTIONS(3800), + [anon_sym_switch] = ACTIONS(3431), + [anon_sym_when] = ACTIONS(3800), + [anon_sym_DOT_DOT] = ACTIONS(3429), + [anon_sym_and] = ACTIONS(3431), + [anon_sym_or] = ACTIONS(3431), + [anon_sym_AMP_AMP] = ACTIONS(3429), + [anon_sym_PIPE_PIPE] = ACTIONS(3429), + [anon_sym_QMARK_QMARK] = ACTIONS(3429), + [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(3431), + [anon_sym_is] = ACTIONS(3431), + [anon_sym_DASH_GT] = ACTIONS(3429), + [anon_sym_with] = ACTIONS(3431), + [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), @@ -400956,6 +400697,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2207] = { + [sym_type_argument_list] = STATE(2171), [sym_preproc_region] = STATE(2207), [sym_preproc_endregion] = STATE(2207), [sym_preproc_line] = STATE(2207), @@ -400965,86 +400707,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2207), [sym_preproc_define] = STATE(2207), [sym_preproc_undef] = STATE(2207), - [sym__identifier_token] = ACTIONS(3619), - [anon_sym_alias] = ACTIONS(3619), - [anon_sym_global] = ACTIONS(3619), - [anon_sym_EQ] = ACTIONS(3447), - [anon_sym_LBRACK] = ACTIONS(3445), - [anon_sym_COLON] = ACTIONS(3619), - [anon_sym_COMMA] = ACTIONS(3616), - [anon_sym_RBRACK] = ACTIONS(3616), - [anon_sym_LPAREN] = ACTIONS(3616), - [anon_sym_RPAREN] = ACTIONS(3445), - [anon_sym_LBRACE] = ACTIONS(3616), - [anon_sym_RBRACE] = ACTIONS(3616), - [anon_sym_file] = ACTIONS(3619), - [anon_sym_LT] = ACTIONS(3447), - [anon_sym_GT] = ACTIONS(3447), - [anon_sym_where] = ACTIONS(3619), - [anon_sym_QMARK] = ACTIONS(3447), - [anon_sym_notnull] = ACTIONS(3619), - [anon_sym_unmanaged] = ACTIONS(3619), - [anon_sym_BANG] = ACTIONS(3447), - [anon_sym_PLUS_PLUS] = ACTIONS(3445), - [anon_sym_DASH_DASH] = ACTIONS(3445), - [anon_sym_PLUS] = ACTIONS(3447), - [anon_sym_DASH] = ACTIONS(3447), - [anon_sym_STAR] = ACTIONS(3447), - [anon_sym_SLASH] = ACTIONS(3447), - [anon_sym_PERCENT] = ACTIONS(3447), - [anon_sym_CARET] = ACTIONS(3447), - [anon_sym_PIPE] = ACTIONS(3447), - [anon_sym_AMP] = ACTIONS(3447), - [anon_sym_LT_LT] = ACTIONS(3447), - [anon_sym_GT_GT] = ACTIONS(3447), - [anon_sym_GT_GT_GT] = ACTIONS(3447), - [anon_sym_EQ_EQ] = ACTIONS(3445), - [anon_sym_BANG_EQ] = ACTIONS(3445), - [anon_sym_GT_EQ] = ACTIONS(3445), - [anon_sym_LT_EQ] = ACTIONS(3445), - [anon_sym_DOT] = ACTIONS(3447), - [anon_sym_scoped] = ACTIONS(3619), - [anon_sym_EQ_GT] = ACTIONS(3445), - [anon_sym_COLON_COLON] = ACTIONS(3445), - [anon_sym_var] = ACTIONS(3619), - [anon_sym_yield] = ACTIONS(3619), - [anon_sym_switch] = ACTIONS(3447), - [anon_sym_when] = ACTIONS(3619), - [sym_discard] = ACTIONS(3619), - [anon_sym_DOT_DOT] = ACTIONS(3445), - [anon_sym_and] = ACTIONS(3619), - [anon_sym_or] = ACTIONS(3619), - [anon_sym_PLUS_EQ] = ACTIONS(3445), - [anon_sym_DASH_EQ] = ACTIONS(3445), - [anon_sym_STAR_EQ] = ACTIONS(3445), - [anon_sym_SLASH_EQ] = ACTIONS(3445), - [anon_sym_PERCENT_EQ] = ACTIONS(3445), - [anon_sym_AMP_EQ] = ACTIONS(3445), - [anon_sym_CARET_EQ] = ACTIONS(3445), - [anon_sym_PIPE_EQ] = ACTIONS(3445), - [anon_sym_LT_LT_EQ] = ACTIONS(3445), - [anon_sym_GT_GT_EQ] = ACTIONS(3445), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3445), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3445), - [anon_sym_AMP_AMP] = ACTIONS(3445), - [anon_sym_PIPE_PIPE] = ACTIONS(3445), - [anon_sym_QMARK_QMARK] = ACTIONS(3447), - [anon_sym_from] = ACTIONS(3619), - [anon_sym_into] = ACTIONS(3619), - [anon_sym_join] = ACTIONS(3619), - [anon_sym_on] = ACTIONS(3619), - [anon_sym_equals] = ACTIONS(3619), - [anon_sym_let] = ACTIONS(3619), - [anon_sym_orderby] = ACTIONS(3619), - [anon_sym_ascending] = ACTIONS(3619), - [anon_sym_descending] = ACTIONS(3619), - [anon_sym_group] = ACTIONS(3619), - [anon_sym_by] = ACTIONS(3619), - [anon_sym_select] = ACTIONS(3619), - [anon_sym_as] = ACTIONS(3447), - [anon_sym_is] = ACTIONS(3447), - [anon_sym_DASH_GT] = ACTIONS(3445), - [anon_sym_with] = ACTIONS(3447), + [sym__identifier_token] = ACTIONS(3638), + [anon_sym_alias] = ACTIONS(3638), + [anon_sym_global] = ACTIONS(3638), + [anon_sym_EQ] = ACTIONS(3638), + [anon_sym_LBRACK] = ACTIONS(3640), + [anon_sym_COLON] = ACTIONS(3804), + [anon_sym_COMMA] = ACTIONS(3640), + [anon_sym_RBRACK] = ACTIONS(3640), + [anon_sym_LPAREN] = ACTIONS(3640), + [anon_sym_RPAREN] = ACTIONS(3640), + [anon_sym_LBRACE] = ACTIONS(3640), + [anon_sym_file] = ACTIONS(3638), + [anon_sym_LT] = ACTIONS(3648), + [anon_sym_GT] = ACTIONS(3638), + [anon_sym_where] = ACTIONS(3638), + [anon_sym_QMARK] = ACTIONS(3638), + [anon_sym_notnull] = ACTIONS(3638), + [anon_sym_unmanaged] = ACTIONS(3638), + [anon_sym_BANG] = ACTIONS(3638), + [anon_sym_PLUS_PLUS] = ACTIONS(3640), + [anon_sym_DASH_DASH] = ACTIONS(3640), + [anon_sym_PLUS] = ACTIONS(3638), + [anon_sym_DASH] = ACTIONS(3638), + [anon_sym_STAR] = ACTIONS(3638), + [anon_sym_SLASH] = ACTIONS(3638), + [anon_sym_PERCENT] = ACTIONS(3638), + [anon_sym_CARET] = ACTIONS(3638), + [anon_sym_PIPE] = ACTIONS(3638), + [anon_sym_AMP] = ACTIONS(3638), + [anon_sym_LT_LT] = ACTIONS(3638), + [anon_sym_GT_GT] = ACTIONS(3638), + [anon_sym_GT_GT_GT] = ACTIONS(3638), + [anon_sym_EQ_EQ] = ACTIONS(3640), + [anon_sym_BANG_EQ] = ACTIONS(3640), + [anon_sym_GT_EQ] = ACTIONS(3640), + [anon_sym_LT_EQ] = ACTIONS(3640), + [anon_sym_DOT] = ACTIONS(3638), + [anon_sym_scoped] = ACTIONS(3638), + [anon_sym_EQ_GT] = ACTIONS(3651), + [anon_sym_COLON_COLON] = ACTIONS(3653), + [anon_sym_var] = ACTIONS(3638), + [anon_sym_yield] = ACTIONS(3638), + [anon_sym_switch] = ACTIONS(3638), + [anon_sym_when] = ACTIONS(3638), + [sym_discard] = ACTIONS(3638), + [anon_sym_DOT_DOT] = ACTIONS(3640), + [anon_sym_and] = ACTIONS(3638), + [anon_sym_or] = ACTIONS(3638), + [anon_sym_PLUS_EQ] = ACTIONS(3640), + [anon_sym_DASH_EQ] = ACTIONS(3640), + [anon_sym_STAR_EQ] = ACTIONS(3640), + [anon_sym_SLASH_EQ] = ACTIONS(3640), + [anon_sym_PERCENT_EQ] = ACTIONS(3640), + [anon_sym_AMP_EQ] = ACTIONS(3640), + [anon_sym_CARET_EQ] = ACTIONS(3640), + [anon_sym_PIPE_EQ] = ACTIONS(3640), + [anon_sym_LT_LT_EQ] = ACTIONS(3640), + [anon_sym_GT_GT_EQ] = ACTIONS(3640), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3640), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3640), + [anon_sym_AMP_AMP] = ACTIONS(3640), + [anon_sym_PIPE_PIPE] = ACTIONS(3640), + [anon_sym_QMARK_QMARK] = ACTIONS(3638), + [anon_sym_from] = ACTIONS(3638), + [anon_sym_into] = ACTIONS(3638), + [anon_sym_join] = ACTIONS(3638), + [anon_sym_on] = ACTIONS(3638), + [anon_sym_equals] = ACTIONS(3638), + [anon_sym_let] = ACTIONS(3638), + [anon_sym_orderby] = ACTIONS(3638), + [anon_sym_ascending] = ACTIONS(3638), + [anon_sym_descending] = ACTIONS(3638), + [anon_sym_group] = ACTIONS(3638), + [anon_sym_by] = ACTIONS(3638), + [anon_sym_select] = ACTIONS(3638), + [anon_sym_as] = ACTIONS(3638), + [anon_sym_is] = ACTIONS(3638), + [anon_sym_DASH_GT] = ACTIONS(3640), + [anon_sym_with] = ACTIONS(3638), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -401057,15 +400798,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2208] = { - [sym__name] = STATE(3497), - [sym_alias_qualified_name] = STATE(3251), - [sym__simple_name] = STATE(3251), - [sym_qualified_name] = STATE(3251), - [sym_generic_name] = STATE(3246), - [sym_ref_type] = STATE(3261), - [sym__scoped_base_type] = STATE(3262), - [sym_identifier] = STATE(3167), - [sym__reserved_identifier] = STATE(3225), + [sym__variable_designation] = STATE(3353), + [sym_parenthesized_variable_designation] = STATE(3352), + [sym_identifier] = STATE(3355), + [sym__reserved_identifier] = STATE(2565), [sym_preproc_region] = STATE(2208), [sym_preproc_endregion] = STATE(2208), [sym_preproc_line] = STATE(2208), @@ -401075,77 +400811,81 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2208), [sym_preproc_define] = STATE(2208), [sym_preproc_undef] = STATE(2208), - [sym__identifier_token] = ACTIONS(3788), - [anon_sym_alias] = ACTIONS(3790), - [anon_sym_SEMI] = ACTIONS(3445), - [anon_sym_global] = ACTIONS(3790), - [anon_sym_LBRACK] = ACTIONS(3445), - [anon_sym_COLON] = ACTIONS(3447), - [anon_sym_COMMA] = ACTIONS(3445), - [anon_sym_RBRACK] = ACTIONS(3445), - [anon_sym_LPAREN] = ACTIONS(3445), - [anon_sym_RPAREN] = ACTIONS(3445), - [anon_sym_ref] = ACTIONS(3792), - [anon_sym_LBRACE] = ACTIONS(3445), - [anon_sym_RBRACE] = ACTIONS(3445), - [anon_sym_file] = ACTIONS(3790), - [anon_sym_LT] = ACTIONS(3447), - [anon_sym_GT] = ACTIONS(3447), - [anon_sym_where] = ACTIONS(3790), - [anon_sym_QMARK] = ACTIONS(3447), - [anon_sym_notnull] = ACTIONS(3790), - [anon_sym_unmanaged] = ACTIONS(3790), - [anon_sym_BANG] = ACTIONS(3447), - [anon_sym_PLUS_PLUS] = ACTIONS(3445), - [anon_sym_DASH_DASH] = ACTIONS(3445), - [anon_sym_PLUS] = ACTIONS(3447), - [anon_sym_DASH] = ACTIONS(3447), - [anon_sym_STAR] = ACTIONS(3445), - [anon_sym_SLASH] = ACTIONS(3447), - [anon_sym_PERCENT] = ACTIONS(3445), - [anon_sym_CARET] = ACTIONS(3445), - [anon_sym_PIPE] = ACTIONS(3447), - [anon_sym_AMP] = ACTIONS(3447), - [anon_sym_LT_LT] = ACTIONS(3445), - [anon_sym_GT_GT] = ACTIONS(3447), - [anon_sym_GT_GT_GT] = ACTIONS(3445), - [anon_sym_EQ_EQ] = ACTIONS(3445), - [anon_sym_BANG_EQ] = ACTIONS(3445), - [anon_sym_GT_EQ] = ACTIONS(3445), - [anon_sym_LT_EQ] = ACTIONS(3445), - [anon_sym_DOT] = ACTIONS(3447), - [anon_sym_scoped] = ACTIONS(3790), - [anon_sym_EQ_GT] = ACTIONS(3445), - [anon_sym_COLON_COLON] = ACTIONS(3445), - [anon_sym_var] = ACTIONS(3790), - [anon_sym_yield] = ACTIONS(3790), - [anon_sym_switch] = ACTIONS(3447), - [anon_sym_when] = ACTIONS(3790), - [anon_sym_DOT_DOT] = ACTIONS(3445), - [anon_sym_and] = ACTIONS(3447), - [anon_sym_or] = ACTIONS(3447), - [anon_sym_AMP_AMP] = ACTIONS(3445), - [anon_sym_PIPE_PIPE] = ACTIONS(3445), - [anon_sym_QMARK_QMARK] = ACTIONS(3445), - [anon_sym_from] = ACTIONS(3790), - [anon_sym_into] = ACTIONS(3790), - [anon_sym_join] = ACTIONS(3790), - [anon_sym_on] = ACTIONS(3790), - [anon_sym_equals] = ACTIONS(3790), - [anon_sym_let] = ACTIONS(3790), - [anon_sym_orderby] = ACTIONS(3790), - [anon_sym_ascending] = ACTIONS(3790), - [anon_sym_descending] = ACTIONS(3790), - [anon_sym_group] = ACTIONS(3790), - [anon_sym_by] = ACTIONS(3790), - [anon_sym_select] = ACTIONS(3790), - [anon_sym_as] = ACTIONS(3447), - [anon_sym_is] = ACTIONS(3447), - [anon_sym_DASH_GT] = ACTIONS(3445), - [anon_sym_with] = ACTIONS(3447), - [aux_sym_preproc_if_token3] = ACTIONS(3445), - [aux_sym_preproc_else_token1] = ACTIONS(3445), - [aux_sym_preproc_elif_token1] = ACTIONS(3445), + [sym__identifier_token] = ACTIONS(3683), + [anon_sym_alias] = ACTIONS(3687), + [anon_sym_global] = ACTIONS(3687), + [anon_sym_EQ] = ACTIONS(3431), + [anon_sym_LBRACK] = ACTIONS(3429), + [anon_sym_LPAREN] = ACTIONS(3616), + [anon_sym_LBRACE] = ACTIONS(3600), + [anon_sym_file] = ACTIONS(3687), + [anon_sym_LT] = ACTIONS(3431), + [anon_sym_GT] = ACTIONS(3431), + [anon_sym_where] = ACTIONS(3687), + [anon_sym_QMARK] = ACTIONS(3431), + [anon_sym_notnull] = ACTIONS(3687), + [anon_sym_unmanaged] = ACTIONS(3687), + [anon_sym_BANG] = ACTIONS(3431), + [anon_sym_PLUS_PLUS] = ACTIONS(3429), + [anon_sym_DASH_DASH] = ACTIONS(3429), + [anon_sym_PLUS] = ACTIONS(3431), + [anon_sym_DASH] = ACTIONS(3431), + [anon_sym_STAR] = ACTIONS(3431), + [anon_sym_SLASH] = ACTIONS(3431), + [anon_sym_PERCENT] = ACTIONS(3431), + [anon_sym_CARET] = ACTIONS(3431), + [anon_sym_PIPE] = ACTIONS(3431), + [anon_sym_AMP] = ACTIONS(3431), + [anon_sym_LT_LT] = ACTIONS(3431), + [anon_sym_GT_GT] = ACTIONS(3431), + [anon_sym_GT_GT_GT] = ACTIONS(3431), + [anon_sym_EQ_EQ] = ACTIONS(3429), + [anon_sym_BANG_EQ] = ACTIONS(3429), + [anon_sym_GT_EQ] = ACTIONS(3429), + [anon_sym_LT_EQ] = ACTIONS(3429), + [anon_sym_DOT] = ACTIONS(3431), + [anon_sym_scoped] = ACTIONS(3687), + [anon_sym_EQ_GT] = ACTIONS(3600), + [anon_sym_COLON_COLON] = ACTIONS(3429), + [anon_sym_var] = ACTIONS(3687), + [anon_sym_yield] = ACTIONS(3687), + [anon_sym_switch] = ACTIONS(3431), + [anon_sym_when] = ACTIONS(3687), + [sym_discard] = ACTIONS(3620), + [anon_sym_DOT_DOT] = ACTIONS(3429), + [anon_sym_and] = ACTIONS(3603), + [anon_sym_or] = ACTIONS(3603), + [anon_sym_PLUS_EQ] = ACTIONS(3429), + [anon_sym_DASH_EQ] = ACTIONS(3429), + [anon_sym_STAR_EQ] = ACTIONS(3429), + [anon_sym_SLASH_EQ] = ACTIONS(3429), + [anon_sym_PERCENT_EQ] = ACTIONS(3429), + [anon_sym_AMP_EQ] = ACTIONS(3429), + [anon_sym_CARET_EQ] = ACTIONS(3429), + [anon_sym_PIPE_EQ] = ACTIONS(3429), + [anon_sym_LT_LT_EQ] = ACTIONS(3429), + [anon_sym_GT_GT_EQ] = ACTIONS(3429), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3429), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3429), + [anon_sym_AMP_AMP] = ACTIONS(3429), + [anon_sym_PIPE_PIPE] = ACTIONS(3429), + [anon_sym_QMARK_QMARK] = ACTIONS(3431), + [anon_sym_from] = ACTIONS(3687), + [anon_sym_into] = ACTIONS(3687), + [anon_sym_join] = ACTIONS(3687), + [anon_sym_on] = ACTIONS(3687), + [anon_sym_equals] = ACTIONS(3687), + [anon_sym_let] = ACTIONS(3687), + [anon_sym_orderby] = ACTIONS(3687), + [anon_sym_ascending] = ACTIONS(3687), + [anon_sym_descending] = ACTIONS(3687), + [anon_sym_group] = ACTIONS(3687), + [anon_sym_by] = ACTIONS(3687), + [anon_sym_select] = ACTIONS(3687), + [anon_sym_as] = ACTIONS(3431), + [anon_sym_is] = ACTIONS(3431), + [anon_sym_DASH_GT] = ACTIONS(3429), + [anon_sym_with] = ACTIONS(3431), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -401158,30 +400898,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2209] = { - [sym_attribute_list] = STATE(2979), - [sym__attribute_list] = STATE(2990), - [sym_modifier] = STATE(3130), - [sym_parameter_list] = STATE(7311), - [sym__name] = STATE(4390), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(4096), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(4109), - [sym_type] = STATE(5916), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym__lambda_parameters] = STATE(7489), - [sym_identifier] = STATE(5763), - [sym__reserved_identifier] = STATE(3691), - [sym_preproc_if_in_attribute_list] = STATE(2979), + [sym_type_argument_list] = STATE(2171), [sym_preproc_region] = STATE(2209), [sym_preproc_endregion] = STATE(2209), [sym_preproc_line] = STATE(2209), @@ -401191,62 +400908,84 @@ 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), - [aux_sym__class_declaration_initializer_repeat1] = STATE(2861), - [aux_sym__class_declaration_initializer_repeat2] = STATE(2390), - [aux_sym__lambda_expression_init_repeat1] = STATE(3498), - [sym__identifier_token] = ACTIONS(2967), - [anon_sym_extern] = ACTIONS(65), - [anon_sym_alias] = ACTIONS(2971), - [anon_sym_global] = ACTIONS(2971), - [anon_sym_unsafe] = ACTIONS(65), - [anon_sym_static] = ACTIONS(39), - [anon_sym_LBRACK] = ACTIONS(2977), - [anon_sym_LPAREN] = ACTIONS(3794), - [anon_sym_class] = ACTIONS(3739), - [anon_sym_ref] = ACTIONS(3741), - [anon_sym_struct] = ACTIONS(2747), - [anon_sym_enum] = ACTIONS(3796), - [anon_sym_interface] = ACTIONS(3745), - [anon_sym_delegate] = ACTIONS(3747), - [anon_sym_record] = ACTIONS(3749), - [anon_sym_abstract] = ACTIONS(65), - [anon_sym_async] = ACTIONS(39), - [anon_sym_const] = ACTIONS(65), - [anon_sym_file] = ACTIONS(2991), - [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(2971), - [anon_sym_notnull] = ACTIONS(2971), - [anon_sym_unmanaged] = ACTIONS(2971), - [anon_sym_scoped] = ACTIONS(2997), - [anon_sym_var] = ACTIONS(2999), - [sym_predefined_type] = ACTIONS(3001), - [anon_sym_yield] = ACTIONS(2971), - [anon_sym_when] = ACTIONS(2971), - [anon_sym_from] = ACTIONS(2971), - [anon_sym_into] = ACTIONS(2971), - [anon_sym_join] = ACTIONS(2971), - [anon_sym_on] = ACTIONS(2971), - [anon_sym_equals] = ACTIONS(2971), - [anon_sym_let] = ACTIONS(2971), - [anon_sym_orderby] = ACTIONS(2971), - [anon_sym_ascending] = ACTIONS(2971), - [anon_sym_descending] = ACTIONS(2971), - [anon_sym_group] = ACTIONS(2971), - [anon_sym_by] = ACTIONS(2971), - [anon_sym_select] = ACTIONS(2971), - [aux_sym_preproc_if_token1] = ACTIONS(3755), + [sym__identifier_token] = ACTIONS(3638), + [anon_sym_alias] = ACTIONS(3638), + [anon_sym_global] = ACTIONS(3638), + [anon_sym_EQ] = ACTIONS(3806), + [anon_sym_LBRACK] = ACTIONS(3640), + [anon_sym_COLON] = ACTIONS(3638), + [anon_sym_COMMA] = ACTIONS(3809), + [anon_sym_LPAREN] = ACTIONS(3640), + [anon_sym_RPAREN] = ACTIONS(3809), + [anon_sym_LBRACE] = ACTIONS(3640), + [anon_sym_file] = ACTIONS(3638), + [anon_sym_LT] = ACTIONS(3648), + [anon_sym_GT] = ACTIONS(3638), + [anon_sym_where] = ACTIONS(3638), + [anon_sym_QMARK] = ACTIONS(3638), + [anon_sym_notnull] = ACTIONS(3638), + [anon_sym_unmanaged] = ACTIONS(3638), + [anon_sym_BANG] = ACTIONS(3638), + [anon_sym_PLUS_PLUS] = ACTIONS(3640), + [anon_sym_DASH_DASH] = ACTIONS(3640), + [anon_sym_PLUS] = ACTIONS(3638), + [anon_sym_DASH] = ACTIONS(3638), + [anon_sym_STAR] = ACTIONS(3638), + [anon_sym_SLASH] = ACTIONS(3638), + [anon_sym_PERCENT] = ACTIONS(3638), + [anon_sym_CARET] = ACTIONS(3638), + [anon_sym_PIPE] = ACTIONS(3638), + [anon_sym_AMP] = ACTIONS(3638), + [anon_sym_LT_LT] = ACTIONS(3638), + [anon_sym_GT_GT] = ACTIONS(3638), + [anon_sym_GT_GT_GT] = ACTIONS(3638), + [anon_sym_EQ_EQ] = ACTIONS(3640), + [anon_sym_BANG_EQ] = ACTIONS(3640), + [anon_sym_GT_EQ] = ACTIONS(3640), + [anon_sym_LT_EQ] = ACTIONS(3640), + [anon_sym_DOT] = ACTIONS(3638), + [anon_sym_scoped] = ACTIONS(3638), + [anon_sym_EQ_GT] = ACTIONS(3651), + [anon_sym_COLON_COLON] = ACTIONS(3653), + [anon_sym_var] = ACTIONS(3638), + [anon_sym_yield] = ACTIONS(3638), + [anon_sym_switch] = ACTIONS(3638), + [anon_sym_when] = ACTIONS(3638), + [sym_discard] = ACTIONS(3638), + [anon_sym_DOT_DOT] = ACTIONS(3640), + [anon_sym_and] = ACTIONS(3638), + [anon_sym_or] = ACTIONS(3638), + [anon_sym_PLUS_EQ] = ACTIONS(3640), + [anon_sym_DASH_EQ] = ACTIONS(3640), + [anon_sym_STAR_EQ] = ACTIONS(3640), + [anon_sym_SLASH_EQ] = ACTIONS(3640), + [anon_sym_PERCENT_EQ] = ACTIONS(3640), + [anon_sym_AMP_EQ] = ACTIONS(3640), + [anon_sym_CARET_EQ] = ACTIONS(3640), + [anon_sym_PIPE_EQ] = ACTIONS(3640), + [anon_sym_LT_LT_EQ] = ACTIONS(3640), + [anon_sym_GT_GT_EQ] = ACTIONS(3640), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3640), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3640), + [anon_sym_AMP_AMP] = ACTIONS(3640), + [anon_sym_PIPE_PIPE] = ACTIONS(3640), + [anon_sym_QMARK_QMARK] = ACTIONS(3638), + [anon_sym_from] = ACTIONS(3638), + [anon_sym_into] = ACTIONS(3638), + [anon_sym_join] = ACTIONS(3638), + [anon_sym_on] = ACTIONS(3638), + [anon_sym_equals] = ACTIONS(3638), + [anon_sym_let] = ACTIONS(3638), + [anon_sym_orderby] = ACTIONS(3638), + [anon_sym_ascending] = ACTIONS(3638), + [anon_sym_descending] = ACTIONS(3638), + [anon_sym_group] = ACTIONS(3638), + [anon_sym_by] = ACTIONS(3638), + [anon_sym_select] = ACTIONS(3638), + [anon_sym_as] = ACTIONS(3638), + [anon_sym_is] = ACTIONS(3638), + [anon_sym_DASH_GT] = ACTIONS(3640), + [anon_sym_with] = ACTIONS(3638), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -401259,10 +400998,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2210] = { - [sym__variable_designation] = STATE(3780), - [sym_parenthesized_variable_designation] = STATE(3779), - [sym_identifier] = STATE(3781), - [sym__reserved_identifier] = STATE(2361), [sym_preproc_region] = STATE(2210), [sym_preproc_endregion] = STATE(2210), [sym_preproc_line] = STATE(2210), @@ -401272,82 +401007,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2210), [sym_preproc_define] = STATE(2210), [sym_preproc_undef] = STATE(2210), - [sym__identifier_token] = ACTIONS(3798), - [anon_sym_alias] = ACTIONS(3802), - [anon_sym_global] = ACTIONS(3802), - [anon_sym_EQ] = ACTIONS(3447), - [anon_sym_LBRACK] = ACTIONS(3616), - [anon_sym_COMMA] = ACTIONS(3616), - [anon_sym_LPAREN] = ACTIONS(3806), - [anon_sym_LBRACE] = ACTIONS(3616), - [anon_sym_file] = ACTIONS(3802), - [anon_sym_LT] = ACTIONS(3619), - [anon_sym_GT] = ACTIONS(3619), - [anon_sym_where] = ACTIONS(3802), - [anon_sym_QMARK] = ACTIONS(3619), - [anon_sym_notnull] = ACTIONS(3802), - [anon_sym_unmanaged] = ACTIONS(3802), - [anon_sym_BANG] = ACTIONS(3619), - [anon_sym_PLUS_PLUS] = ACTIONS(3616), - [anon_sym_DASH_DASH] = ACTIONS(3616), - [anon_sym_PLUS] = ACTIONS(3619), - [anon_sym_DASH] = ACTIONS(3619), - [anon_sym_STAR] = ACTIONS(3619), - [anon_sym_SLASH] = ACTIONS(3619), - [anon_sym_PERCENT] = ACTIONS(3619), - [anon_sym_CARET] = ACTIONS(3619), - [anon_sym_PIPE] = ACTIONS(3619), - [anon_sym_AMP] = ACTIONS(3619), - [anon_sym_LT_LT] = ACTIONS(3619), - [anon_sym_GT_GT] = ACTIONS(3619), - [anon_sym_GT_GT_GT] = ACTIONS(3619), - [anon_sym_EQ_EQ] = ACTIONS(3616), - [anon_sym_BANG_EQ] = ACTIONS(3616), - [anon_sym_GT_EQ] = ACTIONS(3616), - [anon_sym_LT_EQ] = ACTIONS(3616), - [anon_sym_DOT] = ACTIONS(3619), - [anon_sym_scoped] = ACTIONS(3802), - [anon_sym_EQ_GT] = ACTIONS(3445), - [anon_sym_COLON_COLON] = ACTIONS(3445), - [anon_sym_var] = ACTIONS(3802), - [anon_sym_yield] = ACTIONS(3802), - [anon_sym_switch] = ACTIONS(3619), - [anon_sym_when] = ACTIONS(3802), - [sym_discard] = ACTIONS(3810), - [anon_sym_DOT_DOT] = ACTIONS(3616), - [anon_sym_and] = ACTIONS(3619), - [anon_sym_or] = ACTIONS(3619), - [anon_sym_PLUS_EQ] = ACTIONS(3445), - [anon_sym_DASH_EQ] = ACTIONS(3445), - [anon_sym_STAR_EQ] = ACTIONS(3445), - [anon_sym_SLASH_EQ] = ACTIONS(3445), - [anon_sym_PERCENT_EQ] = ACTIONS(3445), - [anon_sym_AMP_EQ] = ACTIONS(3445), - [anon_sym_CARET_EQ] = ACTIONS(3445), - [anon_sym_PIPE_EQ] = ACTIONS(3445), - [anon_sym_LT_LT_EQ] = ACTIONS(3445), - [anon_sym_GT_GT_EQ] = ACTIONS(3445), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3445), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3445), - [anon_sym_AMP_AMP] = ACTIONS(3616), - [anon_sym_PIPE_PIPE] = ACTIONS(3616), - [anon_sym_QMARK_QMARK] = ACTIONS(3619), - [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(3619), - [anon_sym_is] = ACTIONS(3619), - [anon_sym_DASH_GT] = ACTIONS(3616), - [anon_sym_with] = ACTIONS(3619), + [sym__identifier_token] = ACTIONS(3757), + [anon_sym_alias] = ACTIONS(3757), + [anon_sym_SEMI] = ACTIONS(2963), + [anon_sym_global] = ACTIONS(3757), + [anon_sym_static] = ACTIONS(3757), + [anon_sym_LBRACK] = ACTIONS(3759), + [anon_sym_COLON] = ACTIONS(2963), + [anon_sym_COMMA] = ACTIONS(2963), + [anon_sym_RBRACK] = ACTIONS(2963), + [anon_sym_LPAREN] = ACTIONS(3759), + [anon_sym_RPAREN] = ACTIONS(2963), + [anon_sym_ref] = ACTIONS(3757), + [anon_sym_RBRACE] = ACTIONS(2963), + [anon_sym_delegate] = ACTIONS(3757), + [anon_sym_async] = ACTIONS(3757), + [anon_sym_file] = ACTIONS(3757), + [anon_sym_readonly] = ACTIONS(3757), + [anon_sym_LT] = ACTIONS(2961), + [anon_sym_GT] = ACTIONS(2961), + [anon_sym_in] = ACTIONS(3757), + [anon_sym_out] = ACTIONS(3757), + [anon_sym_where] = ACTIONS(3757), + [anon_sym_QMARK] = ACTIONS(2961), + [anon_sym_notnull] = ACTIONS(3757), + [anon_sym_unmanaged] = ACTIONS(3757), + [anon_sym_BANG] = ACTIONS(2961), + [anon_sym_PLUS_PLUS] = ACTIONS(2963), + [anon_sym_DASH_DASH] = ACTIONS(2963), + [anon_sym_PLUS] = ACTIONS(2961), + [anon_sym_DASH] = ACTIONS(2961), + [anon_sym_STAR] = ACTIONS(2963), + [anon_sym_SLASH] = ACTIONS(2961), + [anon_sym_PERCENT] = ACTIONS(2963), + [anon_sym_CARET] = ACTIONS(2963), + [anon_sym_PIPE] = ACTIONS(2961), + [anon_sym_AMP] = ACTIONS(2961), + [anon_sym_LT_LT] = ACTIONS(2963), + [anon_sym_GT_GT] = ACTIONS(2961), + [anon_sym_GT_GT_GT] = ACTIONS(2963), + [anon_sym_EQ_EQ] = ACTIONS(2963), + [anon_sym_BANG_EQ] = ACTIONS(2963), + [anon_sym_GT_EQ] = ACTIONS(2963), + [anon_sym_LT_EQ] = ACTIONS(2963), + [anon_sym_this] = ACTIONS(3757), + [anon_sym_DOT] = ACTIONS(2961), + [anon_sym_scoped] = ACTIONS(3757), + [anon_sym_params] = ACTIONS(3757), + [anon_sym_EQ_GT] = ACTIONS(2963), + [anon_sym_var] = ACTIONS(3757), + [sym_predefined_type] = ACTIONS(3757), + [anon_sym_yield] = ACTIONS(3757), + [anon_sym_switch] = ACTIONS(2961), + [anon_sym_when] = ACTIONS(3757), + [anon_sym_DOT_DOT] = ACTIONS(2963), + [anon_sym_and] = ACTIONS(2961), + [anon_sym_or] = ACTIONS(2961), + [anon_sym_AMP_AMP] = ACTIONS(2963), + [anon_sym_PIPE_PIPE] = ACTIONS(2963), + [anon_sym_QMARK_QMARK] = ACTIONS(2963), + [anon_sym_from] = ACTIONS(3757), + [anon_sym_into] = ACTIONS(3757), + [anon_sym_join] = ACTIONS(3757), + [anon_sym_on] = ACTIONS(3757), + [anon_sym_equals] = ACTIONS(3757), + [anon_sym_let] = ACTIONS(3757), + [anon_sym_orderby] = ACTIONS(3757), + [anon_sym_ascending] = ACTIONS(3757), + [anon_sym_descending] = ACTIONS(3757), + [anon_sym_group] = ACTIONS(3757), + [anon_sym_by] = ACTIONS(3757), + [anon_sym_select] = ACTIONS(3757), + [anon_sym_as] = ACTIONS(2961), + [anon_sym_is] = ACTIONS(2961), + [anon_sym_DASH_GT] = ACTIONS(2963), + [anon_sym_with] = ACTIONS(2961), + [aux_sym_preproc_if_token1] = ACTIONS(3759), + [aux_sym_preproc_if_token3] = ACTIONS(2963), + [aux_sym_preproc_else_token1] = ACTIONS(2963), + [aux_sym_preproc_elif_token1] = ACTIONS(2963), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -401360,10 +401098,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2211] = { - [sym__variable_designation] = STATE(3474), - [sym_parenthesized_variable_designation] = STATE(3463), - [sym_identifier] = STATE(3479), - [sym__reserved_identifier] = STATE(3225), [sym_preproc_region] = STATE(2211), [sym_preproc_endregion] = STATE(2211), [sym_preproc_line] = STATE(2211), @@ -401373,82 +401107,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2211), [sym_preproc_define] = STATE(2211), [sym_preproc_undef] = STATE(2211), - [sym__identifier_token] = ACTIONS(3814), - [anon_sym_alias] = ACTIONS(3818), - [anon_sym_global] = ACTIONS(3818), - [anon_sym_EQ] = ACTIONS(3447), - [anon_sym_LBRACK] = ACTIONS(3616), - [anon_sym_LPAREN] = ACTIONS(3632), - [anon_sym_LBRACE] = ACTIONS(3616), - [anon_sym_file] = ACTIONS(3818), - [anon_sym_LT] = ACTIONS(3619), - [anon_sym_GT] = ACTIONS(3619), - [anon_sym_in] = ACTIONS(3619), - [anon_sym_where] = ACTIONS(3818), - [anon_sym_QMARK] = ACTIONS(3619), - [anon_sym_notnull] = ACTIONS(3818), - [anon_sym_unmanaged] = ACTIONS(3818), - [anon_sym_BANG] = ACTIONS(3619), - [anon_sym_PLUS_PLUS] = ACTIONS(3616), - [anon_sym_DASH_DASH] = ACTIONS(3616), - [anon_sym_PLUS] = ACTIONS(3619), - [anon_sym_DASH] = ACTIONS(3619), - [anon_sym_STAR] = ACTIONS(3619), - [anon_sym_SLASH] = ACTIONS(3619), - [anon_sym_PERCENT] = ACTIONS(3619), - [anon_sym_CARET] = ACTIONS(3619), - [anon_sym_PIPE] = ACTIONS(3619), - [anon_sym_AMP] = ACTIONS(3619), - [anon_sym_LT_LT] = ACTIONS(3619), - [anon_sym_GT_GT] = ACTIONS(3619), - [anon_sym_GT_GT_GT] = ACTIONS(3619), - [anon_sym_EQ_EQ] = ACTIONS(3616), - [anon_sym_BANG_EQ] = ACTIONS(3616), - [anon_sym_GT_EQ] = ACTIONS(3616), - [anon_sym_LT_EQ] = ACTIONS(3616), - [anon_sym_DOT] = ACTIONS(3619), - [anon_sym_scoped] = ACTIONS(3818), - [anon_sym_EQ_GT] = ACTIONS(3445), - [anon_sym_COLON_COLON] = ACTIONS(3445), - [anon_sym_var] = ACTIONS(3818), - [anon_sym_yield] = ACTIONS(3818), - [anon_sym_switch] = ACTIONS(3619), - [anon_sym_when] = ACTIONS(3818), - [sym_discard] = ACTIONS(3636), - [anon_sym_DOT_DOT] = ACTIONS(3616), - [anon_sym_and] = ACTIONS(3619), - [anon_sym_or] = ACTIONS(3619), - [anon_sym_PLUS_EQ] = ACTIONS(3445), - [anon_sym_DASH_EQ] = ACTIONS(3445), - [anon_sym_STAR_EQ] = ACTIONS(3445), - [anon_sym_SLASH_EQ] = ACTIONS(3445), - [anon_sym_PERCENT_EQ] = ACTIONS(3445), - [anon_sym_AMP_EQ] = ACTIONS(3445), - [anon_sym_CARET_EQ] = ACTIONS(3445), - [anon_sym_PIPE_EQ] = ACTIONS(3445), - [anon_sym_LT_LT_EQ] = ACTIONS(3445), - [anon_sym_GT_GT_EQ] = ACTIONS(3445), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3445), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3445), - [anon_sym_AMP_AMP] = ACTIONS(3616), - [anon_sym_PIPE_PIPE] = ACTIONS(3616), - [anon_sym_QMARK_QMARK] = ACTIONS(3619), - [anon_sym_from] = ACTIONS(3818), - [anon_sym_into] = ACTIONS(3818), - [anon_sym_join] = ACTIONS(3818), - [anon_sym_on] = ACTIONS(3818), - [anon_sym_equals] = ACTIONS(3818), - [anon_sym_let] = ACTIONS(3818), - [anon_sym_orderby] = ACTIONS(3818), - [anon_sym_ascending] = ACTIONS(3818), - [anon_sym_descending] = ACTIONS(3818), - [anon_sym_group] = ACTIONS(3818), - [anon_sym_by] = ACTIONS(3818), - [anon_sym_select] = ACTIONS(3818), - [anon_sym_as] = ACTIONS(3619), - [anon_sym_is] = ACTIONS(3619), - [anon_sym_DASH_GT] = ACTIONS(3616), - [anon_sym_with] = ACTIONS(3619), + [sym__identifier_token] = ACTIONS(2689), + [anon_sym_alias] = ACTIONS(2689), + [anon_sym_global] = ACTIONS(2689), + [anon_sym_EQ] = ACTIONS(3696), + [anon_sym_LBRACK] = ACTIONS(3711), + [anon_sym_COLON] = ACTIONS(3711), + [anon_sym_COMMA] = ACTIONS(3711), + [anon_sym_LPAREN] = ACTIONS(3811), + [anon_sym_RPAREN] = ACTIONS(3711), + [anon_sym_ref] = ACTIONS(2689), + [anon_sym_delegate] = ACTIONS(2689), + [anon_sym_file] = ACTIONS(2689), + [anon_sym_readonly] = ACTIONS(2689), + [anon_sym_LT] = ACTIONS(3696), + [anon_sym_GT] = ACTIONS(3696), + [anon_sym_in] = ACTIONS(2689), + [anon_sym_out] = ACTIONS(2689), + [anon_sym_where] = ACTIONS(2689), + [anon_sym_QMARK] = ACTIONS(3696), + [anon_sym_notnull] = ACTIONS(2689), + [anon_sym_unmanaged] = ACTIONS(2689), + [anon_sym_BANG] = ACTIONS(3696), + [anon_sym_PLUS_PLUS] = ACTIONS(3711), + [anon_sym_DASH_DASH] = ACTIONS(3711), + [anon_sym_PLUS] = ACTIONS(3696), + [anon_sym_DASH] = ACTIONS(3696), + [anon_sym_STAR] = ACTIONS(3696), + [anon_sym_SLASH] = ACTIONS(3696), + [anon_sym_PERCENT] = ACTIONS(3696), + [anon_sym_CARET] = ACTIONS(3696), + [anon_sym_PIPE] = ACTIONS(3696), + [anon_sym_AMP] = ACTIONS(3696), + [anon_sym_LT_LT] = ACTIONS(3696), + [anon_sym_GT_GT] = ACTIONS(3696), + [anon_sym_GT_GT_GT] = ACTIONS(3696), + [anon_sym_EQ_EQ] = ACTIONS(3711), + [anon_sym_BANG_EQ] = ACTIONS(3711), + [anon_sym_GT_EQ] = ACTIONS(3711), + [anon_sym_LT_EQ] = ACTIONS(3711), + [anon_sym_this] = ACTIONS(2689), + [anon_sym_DOT] = ACTIONS(3696), + [anon_sym_scoped] = ACTIONS(2689), + [anon_sym_var] = ACTIONS(2689), + [sym_predefined_type] = ACTIONS(2689), + [anon_sym_yield] = ACTIONS(2689), + [anon_sym_switch] = ACTIONS(3696), + [anon_sym_when] = ACTIONS(2689), + [anon_sym_DOT_DOT] = ACTIONS(3711), + [anon_sym_PLUS_EQ] = ACTIONS(3711), + [anon_sym_DASH_EQ] = ACTIONS(3711), + [anon_sym_STAR_EQ] = ACTIONS(3711), + [anon_sym_SLASH_EQ] = ACTIONS(3711), + [anon_sym_PERCENT_EQ] = ACTIONS(3711), + [anon_sym_AMP_EQ] = ACTIONS(3711), + [anon_sym_CARET_EQ] = ACTIONS(3711), + [anon_sym_PIPE_EQ] = ACTIONS(3711), + [anon_sym_LT_LT_EQ] = ACTIONS(3711), + [anon_sym_GT_GT_EQ] = ACTIONS(3711), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3711), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3711), + [anon_sym_AMP_AMP] = ACTIONS(3711), + [anon_sym_PIPE_PIPE] = ACTIONS(3711), + [anon_sym_QMARK_QMARK] = ACTIONS(3696), + [anon_sym_from] = ACTIONS(2689), + [anon_sym_into] = ACTIONS(2689), + [anon_sym_join] = ACTIONS(2689), + [anon_sym_on] = ACTIONS(2689), + [anon_sym_equals] = ACTIONS(2689), + [anon_sym_let] = ACTIONS(2689), + [anon_sym_orderby] = ACTIONS(2689), + [anon_sym_ascending] = ACTIONS(2689), + [anon_sym_descending] = ACTIONS(2689), + [anon_sym_group] = ACTIONS(2689), + [anon_sym_by] = ACTIONS(2689), + [anon_sym_select] = ACTIONS(2689), + [anon_sym_as] = ACTIONS(3696), + [anon_sym_is] = ACTIONS(3696), + [anon_sym_DASH_GT] = ACTIONS(3711), + [anon_sym_with] = ACTIONS(3696), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -401461,30 +401198,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2212] = { - [sym_attribute_list] = STATE(2979), - [sym__attribute_list] = STATE(2990), - [sym_modifier] = STATE(3130), - [sym_parameter_list] = STATE(7311), - [sym__name] = STATE(4390), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(4096), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(4109), - [sym_type] = STATE(5916), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym__lambda_parameters] = STATE(7489), - [sym_identifier] = STATE(5763), - [sym__reserved_identifier] = STATE(3691), - [sym_preproc_if_in_attribute_list] = STATE(2979), [sym_preproc_region] = STATE(2212), [sym_preproc_endregion] = STATE(2212), [sym_preproc_line] = STATE(2212), @@ -401494,62 +401207,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2212), [sym_preproc_define] = STATE(2212), [sym_preproc_undef] = STATE(2212), - [aux_sym__class_declaration_initializer_repeat1] = STATE(2861), - [aux_sym__class_declaration_initializer_repeat2] = STATE(2396), - [aux_sym__lambda_expression_init_repeat1] = STATE(3498), - [sym__identifier_token] = ACTIONS(2967), - [anon_sym_extern] = ACTIONS(65), - [anon_sym_alias] = ACTIONS(2971), - [anon_sym_global] = ACTIONS(2971), - [anon_sym_unsafe] = ACTIONS(65), - [anon_sym_static] = ACTIONS(39), - [anon_sym_LBRACK] = ACTIONS(2977), - [anon_sym_LPAREN] = ACTIONS(3794), - [anon_sym_class] = ACTIONS(3739), - [anon_sym_ref] = ACTIONS(3741), - [anon_sym_struct] = ACTIONS(2747), - [anon_sym_enum] = ACTIONS(3822), - [anon_sym_interface] = ACTIONS(3745), - [anon_sym_delegate] = ACTIONS(3747), - [anon_sym_record] = ACTIONS(3749), - [anon_sym_abstract] = ACTIONS(65), - [anon_sym_async] = ACTIONS(39), - [anon_sym_const] = ACTIONS(65), - [anon_sym_file] = ACTIONS(2991), - [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(2971), - [anon_sym_notnull] = ACTIONS(2971), - [anon_sym_unmanaged] = ACTIONS(2971), - [anon_sym_scoped] = ACTIONS(2997), - [anon_sym_var] = ACTIONS(2999), - [sym_predefined_type] = ACTIONS(3001), - [anon_sym_yield] = ACTIONS(2971), - [anon_sym_when] = ACTIONS(2971), - [anon_sym_from] = ACTIONS(2971), - [anon_sym_into] = ACTIONS(2971), - [anon_sym_join] = ACTIONS(2971), - [anon_sym_on] = ACTIONS(2971), - [anon_sym_equals] = ACTIONS(2971), - [anon_sym_let] = ACTIONS(2971), - [anon_sym_orderby] = ACTIONS(2971), - [anon_sym_ascending] = ACTIONS(2971), - [anon_sym_descending] = ACTIONS(2971), - [anon_sym_group] = ACTIONS(2971), - [anon_sym_by] = ACTIONS(2971), - [anon_sym_select] = ACTIONS(2971), - [aux_sym_preproc_if_token1] = ACTIONS(3755), + [sym__identifier_token] = ACTIONS(3691), + [anon_sym_alias] = ACTIONS(3691), + [anon_sym_global] = ACTIONS(3691), + [anon_sym_EQ] = ACTIONS(3696), + [anon_sym_LBRACK] = ACTIONS(3713), + [anon_sym_COLON] = ACTIONS(3711), + [anon_sym_COMMA] = ACTIONS(3702), + [anon_sym_RBRACK] = ACTIONS(3702), + [anon_sym_LPAREN] = ACTIONS(3713), + [anon_sym_RPAREN] = ACTIONS(3711), + [anon_sym_LBRACE] = ACTIONS(3702), + [anon_sym_RBRACE] = ACTIONS(3702), + [anon_sym_file] = ACTIONS(3691), + [anon_sym_LT] = ACTIONS(3696), + [anon_sym_GT] = ACTIONS(3696), + [anon_sym_where] = ACTIONS(3691), + [anon_sym_QMARK] = ACTIONS(3716), + [anon_sym_notnull] = ACTIONS(3691), + [anon_sym_unmanaged] = ACTIONS(3691), + [anon_sym_BANG] = ACTIONS(3696), + [anon_sym_PLUS_PLUS] = ACTIONS(3711), + [anon_sym_DASH_DASH] = ACTIONS(3711), + [anon_sym_PLUS] = ACTIONS(3696), + [anon_sym_DASH] = ACTIONS(3696), + [anon_sym_STAR] = ACTIONS(3716), + [anon_sym_SLASH] = ACTIONS(3696), + [anon_sym_PERCENT] = ACTIONS(3696), + [anon_sym_CARET] = ACTIONS(3696), + [anon_sym_PIPE] = ACTIONS(3696), + [anon_sym_AMP] = ACTIONS(3696), + [anon_sym_LT_LT] = ACTIONS(3696), + [anon_sym_GT_GT] = ACTIONS(3696), + [anon_sym_GT_GT_GT] = ACTIONS(3696), + [anon_sym_EQ_EQ] = ACTIONS(3711), + [anon_sym_BANG_EQ] = ACTIONS(3711), + [anon_sym_GT_EQ] = ACTIONS(3711), + [anon_sym_LT_EQ] = ACTIONS(3711), + [anon_sym_DOT] = ACTIONS(3716), + [anon_sym_scoped] = ACTIONS(3691), + [anon_sym_EQ_GT] = ACTIONS(3702), + [anon_sym_var] = ACTIONS(3691), + [anon_sym_yield] = ACTIONS(3691), + [anon_sym_switch] = ACTIONS(3696), + [anon_sym_when] = ACTIONS(3691), + [sym_discard] = ACTIONS(3691), + [anon_sym_DOT_DOT] = ACTIONS(3711), + [anon_sym_and] = ACTIONS(3691), + [anon_sym_or] = ACTIONS(3691), + [anon_sym_PLUS_EQ] = ACTIONS(3711), + [anon_sym_DASH_EQ] = ACTIONS(3711), + [anon_sym_STAR_EQ] = ACTIONS(3711), + [anon_sym_SLASH_EQ] = ACTIONS(3711), + [anon_sym_PERCENT_EQ] = ACTIONS(3711), + [anon_sym_AMP_EQ] = ACTIONS(3711), + [anon_sym_CARET_EQ] = ACTIONS(3711), + [anon_sym_PIPE_EQ] = ACTIONS(3711), + [anon_sym_LT_LT_EQ] = ACTIONS(3711), + [anon_sym_GT_GT_EQ] = ACTIONS(3711), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3711), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3711), + [anon_sym_AMP_AMP] = ACTIONS(3711), + [anon_sym_PIPE_PIPE] = ACTIONS(3711), + [anon_sym_QMARK_QMARK] = ACTIONS(3696), + [anon_sym_from] = ACTIONS(3691), + [anon_sym_into] = ACTIONS(3691), + [anon_sym_join] = ACTIONS(3691), + [anon_sym_on] = ACTIONS(3691), + [anon_sym_equals] = ACTIONS(3691), + [anon_sym_let] = ACTIONS(3691), + [anon_sym_orderby] = ACTIONS(3691), + [anon_sym_ascending] = ACTIONS(3691), + [anon_sym_descending] = ACTIONS(3691), + [anon_sym_group] = ACTIONS(3691), + [anon_sym_by] = ACTIONS(3691), + [anon_sym_select] = ACTIONS(3691), + [anon_sym_as] = ACTIONS(3696), + [anon_sym_is] = ACTIONS(3696), + [anon_sym_DASH_GT] = ACTIONS(3713), + [anon_sym_with] = ACTIONS(3696), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -401562,10 +401298,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2213] = { - [sym__variable_designation] = STATE(3474), - [sym_parenthesized_variable_designation] = STATE(3463), - [sym_identifier] = STATE(3479), - [sym__reserved_identifier] = STATE(2571), + [sym_type_argument_list] = STATE(2171), [sym_preproc_region] = STATE(2213), [sym_preproc_endregion] = STATE(2213), [sym_preproc_line] = STATE(2213), @@ -401575,82 +401308,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2213), [sym_preproc_define] = STATE(2213), [sym_preproc_undef] = STATE(2213), - [sym__identifier_token] = ACTIONS(3727), - [anon_sym_alias] = ACTIONS(3731), - [anon_sym_global] = ACTIONS(3731), - [anon_sym_EQ] = ACTIONS(3447), - [anon_sym_LBRACK] = ACTIONS(3445), - [anon_sym_COLON] = ACTIONS(3619), - [anon_sym_LPAREN] = ACTIONS(3632), - [anon_sym_LBRACE] = ACTIONS(3616), - [anon_sym_file] = ACTIONS(3731), - [anon_sym_LT] = ACTIONS(3447), - [anon_sym_GT] = ACTIONS(3447), - [anon_sym_where] = ACTIONS(3731), - [anon_sym_QMARK] = ACTIONS(3447), - [anon_sym_notnull] = ACTIONS(3731), - [anon_sym_unmanaged] = ACTIONS(3731), - [anon_sym_BANG] = ACTIONS(3447), - [anon_sym_PLUS_PLUS] = ACTIONS(3445), - [anon_sym_DASH_DASH] = ACTIONS(3445), - [anon_sym_PLUS] = ACTIONS(3447), - [anon_sym_DASH] = ACTIONS(3447), - [anon_sym_STAR] = ACTIONS(3447), - [anon_sym_SLASH] = ACTIONS(3447), - [anon_sym_PERCENT] = ACTIONS(3447), - [anon_sym_CARET] = ACTIONS(3447), - [anon_sym_PIPE] = ACTIONS(3447), - [anon_sym_AMP] = ACTIONS(3447), - [anon_sym_LT_LT] = ACTIONS(3447), - [anon_sym_GT_GT] = ACTIONS(3447), - [anon_sym_GT_GT_GT] = ACTIONS(3447), - [anon_sym_EQ_EQ] = ACTIONS(3445), - [anon_sym_BANG_EQ] = ACTIONS(3445), - [anon_sym_GT_EQ] = ACTIONS(3445), - [anon_sym_LT_EQ] = ACTIONS(3445), - [anon_sym_DOT] = ACTIONS(3447), - [anon_sym_scoped] = ACTIONS(3731), - [anon_sym_EQ_GT] = ACTIONS(3445), - [anon_sym_COLON_COLON] = ACTIONS(3445), - [anon_sym_var] = ACTIONS(3731), - [anon_sym_yield] = ACTIONS(3731), - [anon_sym_switch] = ACTIONS(3447), - [anon_sym_when] = ACTIONS(3731), - [sym_discard] = ACTIONS(3636), - [anon_sym_DOT_DOT] = ACTIONS(3445), - [anon_sym_and] = ACTIONS(3619), - [anon_sym_or] = ACTIONS(3619), - [anon_sym_PLUS_EQ] = ACTIONS(3445), - [anon_sym_DASH_EQ] = ACTIONS(3445), - [anon_sym_STAR_EQ] = ACTIONS(3445), - [anon_sym_SLASH_EQ] = ACTIONS(3445), - [anon_sym_PERCENT_EQ] = ACTIONS(3445), - [anon_sym_AMP_EQ] = ACTIONS(3445), - [anon_sym_CARET_EQ] = ACTIONS(3445), - [anon_sym_PIPE_EQ] = ACTIONS(3445), - [anon_sym_LT_LT_EQ] = ACTIONS(3445), - [anon_sym_GT_GT_EQ] = ACTIONS(3445), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3445), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3445), - [anon_sym_AMP_AMP] = ACTIONS(3445), - [anon_sym_PIPE_PIPE] = ACTIONS(3445), - [anon_sym_QMARK_QMARK] = ACTIONS(3447), - [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_ascending] = ACTIONS(3731), - [anon_sym_descending] = ACTIONS(3731), - [anon_sym_group] = ACTIONS(3731), - [anon_sym_by] = ACTIONS(3731), - [anon_sym_select] = ACTIONS(3731), - [anon_sym_as] = ACTIONS(3447), - [anon_sym_is] = ACTIONS(3447), - [anon_sym_DASH_GT] = ACTIONS(3445), - [anon_sym_with] = ACTIONS(3447), + [sym__identifier_token] = ACTIONS(3638), + [anon_sym_alias] = ACTIONS(3638), + [anon_sym_global] = ACTIONS(3638), + [anon_sym_EQ] = ACTIONS(3806), + [anon_sym_LBRACK] = ACTIONS(3640), + [anon_sym_COLON] = ACTIONS(3804), + [anon_sym_COMMA] = ACTIONS(3809), + [anon_sym_LPAREN] = ACTIONS(3640), + [anon_sym_RPAREN] = ACTIONS(3809), + [anon_sym_LBRACE] = ACTIONS(3640), + [anon_sym_file] = ACTIONS(3638), + [anon_sym_LT] = ACTIONS(3648), + [anon_sym_GT] = ACTIONS(3638), + [anon_sym_where] = ACTIONS(3638), + [anon_sym_QMARK] = ACTIONS(3638), + [anon_sym_notnull] = ACTIONS(3638), + [anon_sym_unmanaged] = ACTIONS(3638), + [anon_sym_BANG] = ACTIONS(3638), + [anon_sym_PLUS_PLUS] = ACTIONS(3640), + [anon_sym_DASH_DASH] = ACTIONS(3640), + [anon_sym_PLUS] = ACTIONS(3638), + [anon_sym_DASH] = ACTIONS(3638), + [anon_sym_STAR] = ACTIONS(3638), + [anon_sym_SLASH] = ACTIONS(3638), + [anon_sym_PERCENT] = ACTIONS(3638), + [anon_sym_CARET] = ACTIONS(3638), + [anon_sym_PIPE] = ACTIONS(3638), + [anon_sym_AMP] = ACTIONS(3638), + [anon_sym_LT_LT] = ACTIONS(3638), + [anon_sym_GT_GT] = ACTIONS(3638), + [anon_sym_GT_GT_GT] = ACTIONS(3638), + [anon_sym_EQ_EQ] = ACTIONS(3640), + [anon_sym_BANG_EQ] = ACTIONS(3640), + [anon_sym_GT_EQ] = ACTIONS(3640), + [anon_sym_LT_EQ] = ACTIONS(3640), + [anon_sym_DOT] = ACTIONS(3638), + [anon_sym_scoped] = ACTIONS(3638), + [anon_sym_EQ_GT] = ACTIONS(3651), + [anon_sym_COLON_COLON] = ACTIONS(3653), + [anon_sym_var] = ACTIONS(3638), + [anon_sym_yield] = ACTIONS(3638), + [anon_sym_switch] = ACTIONS(3638), + [anon_sym_when] = ACTIONS(3638), + [sym_discard] = ACTIONS(3638), + [anon_sym_DOT_DOT] = ACTIONS(3640), + [anon_sym_and] = ACTIONS(3638), + [anon_sym_or] = ACTIONS(3638), + [anon_sym_PLUS_EQ] = ACTIONS(3640), + [anon_sym_DASH_EQ] = ACTIONS(3640), + [anon_sym_STAR_EQ] = ACTIONS(3640), + [anon_sym_SLASH_EQ] = ACTIONS(3640), + [anon_sym_PERCENT_EQ] = ACTIONS(3640), + [anon_sym_AMP_EQ] = ACTIONS(3640), + [anon_sym_CARET_EQ] = ACTIONS(3640), + [anon_sym_PIPE_EQ] = ACTIONS(3640), + [anon_sym_LT_LT_EQ] = ACTIONS(3640), + [anon_sym_GT_GT_EQ] = ACTIONS(3640), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3640), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3640), + [anon_sym_AMP_AMP] = ACTIONS(3640), + [anon_sym_PIPE_PIPE] = ACTIONS(3640), + [anon_sym_QMARK_QMARK] = ACTIONS(3638), + [anon_sym_from] = ACTIONS(3638), + [anon_sym_into] = ACTIONS(3638), + [anon_sym_join] = ACTIONS(3638), + [anon_sym_on] = ACTIONS(3638), + [anon_sym_equals] = ACTIONS(3638), + [anon_sym_let] = ACTIONS(3638), + [anon_sym_orderby] = ACTIONS(3638), + [anon_sym_ascending] = ACTIONS(3638), + [anon_sym_descending] = ACTIONS(3638), + [anon_sym_group] = ACTIONS(3638), + [anon_sym_by] = ACTIONS(3638), + [anon_sym_select] = ACTIONS(3638), + [anon_sym_as] = ACTIONS(3638), + [anon_sym_is] = ACTIONS(3638), + [anon_sym_DASH_GT] = ACTIONS(3640), + [anon_sym_with] = ACTIONS(3638), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -401663,7 +401398,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2214] = { - [sym_type_argument_list] = STATE(2183), + [sym__name] = STATE(3517), + [sym_alias_qualified_name] = STATE(2907), + [sym__simple_name] = STATE(2907), + [sym_qualified_name] = STATE(2907), + [sym_generic_name] = STATE(2950), + [sym_ref_type] = STATE(2923), + [sym__scoped_base_type] = STATE(2940), + [sym_identifier] = STATE(3317), + [sym__reserved_identifier] = STATE(2900), [sym_preproc_region] = STATE(2214), [sym_preproc_endregion] = STATE(2214), [sym_preproc_line] = STATE(2214), @@ -401673,85 +401416,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2214), [sym_preproc_define] = STATE(2214), [sym_preproc_undef] = STATE(2214), - [sym__identifier_token] = ACTIONS(3660), - [anon_sym_alias] = ACTIONS(3660), - [anon_sym_global] = ACTIONS(3660), - [anon_sym_EQ] = ACTIONS(3660), - [anon_sym_LBRACK] = ACTIONS(3662), - [anon_sym_COLON] = ACTIONS(3660), - [anon_sym_COMMA] = ACTIONS(3662), - [anon_sym_LPAREN] = ACTIONS(3662), - [anon_sym_RPAREN] = ACTIONS(3662), - [anon_sym_LBRACE] = ACTIONS(3662), - [anon_sym_RBRACE] = ACTIONS(3662), - [anon_sym_file] = ACTIONS(3660), - [anon_sym_LT] = ACTIONS(3664), - [anon_sym_GT] = ACTIONS(3660), - [anon_sym_where] = ACTIONS(3660), - [anon_sym_QMARK] = ACTIONS(3660), - [anon_sym_notnull] = ACTIONS(3660), - [anon_sym_unmanaged] = ACTIONS(3660), - [anon_sym_BANG] = ACTIONS(3660), - [anon_sym_PLUS_PLUS] = ACTIONS(3662), - [anon_sym_DASH_DASH] = ACTIONS(3662), - [anon_sym_PLUS] = ACTIONS(3660), - [anon_sym_DASH] = ACTIONS(3660), - [anon_sym_STAR] = ACTIONS(3660), - [anon_sym_SLASH] = ACTIONS(3660), - [anon_sym_PERCENT] = ACTIONS(3660), - [anon_sym_CARET] = ACTIONS(3660), - [anon_sym_PIPE] = ACTIONS(3660), - [anon_sym_AMP] = ACTIONS(3660), - [anon_sym_LT_LT] = ACTIONS(3660), - [anon_sym_GT_GT] = ACTIONS(3660), - [anon_sym_GT_GT_GT] = ACTIONS(3660), - [anon_sym_EQ_EQ] = ACTIONS(3662), - [anon_sym_BANG_EQ] = ACTIONS(3662), - [anon_sym_GT_EQ] = ACTIONS(3662), - [anon_sym_LT_EQ] = ACTIONS(3662), - [anon_sym_DOT] = ACTIONS(3660), - [anon_sym_scoped] = ACTIONS(3660), - [anon_sym_EQ_GT] = ACTIONS(3667), - [anon_sym_COLON_COLON] = ACTIONS(3824), - [anon_sym_var] = ACTIONS(3660), - [anon_sym_yield] = ACTIONS(3660), - [anon_sym_switch] = ACTIONS(3660), - [anon_sym_when] = ACTIONS(3660), - [sym_discard] = ACTIONS(3660), - [anon_sym_DOT_DOT] = ACTIONS(3662), - [anon_sym_and] = ACTIONS(3660), - [anon_sym_or] = ACTIONS(3660), - [anon_sym_PLUS_EQ] = ACTIONS(3662), - [anon_sym_DASH_EQ] = ACTIONS(3662), - [anon_sym_STAR_EQ] = ACTIONS(3662), - [anon_sym_SLASH_EQ] = ACTIONS(3662), - [anon_sym_PERCENT_EQ] = ACTIONS(3662), - [anon_sym_AMP_EQ] = ACTIONS(3662), - [anon_sym_CARET_EQ] = ACTIONS(3662), - [anon_sym_PIPE_EQ] = ACTIONS(3662), - [anon_sym_LT_LT_EQ] = ACTIONS(3662), - [anon_sym_GT_GT_EQ] = ACTIONS(3662), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3662), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3662), - [anon_sym_AMP_AMP] = ACTIONS(3662), - [anon_sym_PIPE_PIPE] = ACTIONS(3662), - [anon_sym_QMARK_QMARK] = ACTIONS(3660), - [anon_sym_from] = ACTIONS(3660), - [anon_sym_into] = ACTIONS(3660), - [anon_sym_join] = ACTIONS(3660), - [anon_sym_on] = ACTIONS(3660), - [anon_sym_equals] = ACTIONS(3660), - [anon_sym_let] = ACTIONS(3660), - [anon_sym_orderby] = ACTIONS(3660), - [anon_sym_ascending] = ACTIONS(3660), - [anon_sym_descending] = ACTIONS(3660), - [anon_sym_group] = ACTIONS(3660), - [anon_sym_by] = ACTIONS(3660), - [anon_sym_select] = ACTIONS(3660), - [anon_sym_as] = ACTIONS(3660), - [anon_sym_is] = ACTIONS(3660), - [anon_sym_DASH_GT] = ACTIONS(3662), - [anon_sym_with] = ACTIONS(3660), + [sym__identifier_token] = ACTIONS(3814), + [anon_sym_alias] = ACTIONS(3816), + [anon_sym_SEMI] = ACTIONS(3429), + [anon_sym_global] = ACTIONS(3816), + [anon_sym_LBRACK] = ACTIONS(3429), + [anon_sym_COLON] = ACTIONS(3431), + [anon_sym_COMMA] = ACTIONS(3429), + [anon_sym_RBRACK] = ACTIONS(3429), + [anon_sym_LPAREN] = ACTIONS(3429), + [anon_sym_RPAREN] = ACTIONS(3429), + [anon_sym_ref] = ACTIONS(3818), + [anon_sym_LBRACE] = ACTIONS(3429), + [anon_sym_RBRACE] = ACTIONS(3429), + [anon_sym_file] = ACTIONS(3816), + [anon_sym_LT] = ACTIONS(3431), + [anon_sym_GT] = ACTIONS(3431), + [anon_sym_in] = ACTIONS(3431), + [anon_sym_where] = ACTIONS(3816), + [anon_sym_QMARK] = ACTIONS(3431), + [anon_sym_notnull] = ACTIONS(3816), + [anon_sym_unmanaged] = ACTIONS(3816), + [anon_sym_BANG] = ACTIONS(3431), + [anon_sym_PLUS_PLUS] = ACTIONS(3429), + [anon_sym_DASH_DASH] = ACTIONS(3429), + [anon_sym_PLUS] = ACTIONS(3431), + [anon_sym_DASH] = ACTIONS(3431), + [anon_sym_STAR] = ACTIONS(3429), + [anon_sym_SLASH] = ACTIONS(3431), + [anon_sym_PERCENT] = ACTIONS(3429), + [anon_sym_CARET] = ACTIONS(3429), + [anon_sym_PIPE] = ACTIONS(3431), + [anon_sym_AMP] = ACTIONS(3431), + [anon_sym_LT_LT] = ACTIONS(3429), + [anon_sym_GT_GT] = ACTIONS(3431), + [anon_sym_GT_GT_GT] = ACTIONS(3429), + [anon_sym_EQ_EQ] = ACTIONS(3429), + [anon_sym_BANG_EQ] = ACTIONS(3429), + [anon_sym_GT_EQ] = ACTIONS(3429), + [anon_sym_LT_EQ] = ACTIONS(3429), + [anon_sym_DOT] = ACTIONS(3431), + [anon_sym_scoped] = ACTIONS(3816), + [anon_sym_EQ_GT] = ACTIONS(3429), + [anon_sym_COLON_COLON] = ACTIONS(3429), + [anon_sym_var] = ACTIONS(3816), + [anon_sym_yield] = ACTIONS(3816), + [anon_sym_switch] = ACTIONS(3431), + [anon_sym_when] = ACTIONS(3816), + [anon_sym_DOT_DOT] = ACTIONS(3429), + [anon_sym_AMP_AMP] = ACTIONS(3429), + [anon_sym_PIPE_PIPE] = ACTIONS(3429), + [anon_sym_QMARK_QMARK] = ACTIONS(3429), + [anon_sym_from] = ACTIONS(3816), + [anon_sym_into] = ACTIONS(3820), + [anon_sym_join] = ACTIONS(3816), + [anon_sym_on] = ACTIONS(3816), + [anon_sym_equals] = ACTIONS(3816), + [anon_sym_let] = ACTIONS(3816), + [anon_sym_orderby] = ACTIONS(3816), + [anon_sym_ascending] = ACTIONS(3816), + [anon_sym_descending] = ACTIONS(3816), + [anon_sym_group] = ACTIONS(3816), + [anon_sym_by] = ACTIONS(3816), + [anon_sym_select] = ACTIONS(3816), + [anon_sym_as] = ACTIONS(3431), + [anon_sym_is] = ACTIONS(3431), + [anon_sym_DASH_GT] = ACTIONS(3429), + [anon_sym_with] = ACTIONS(3431), + [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), @@ -401764,7 +401498,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2215] = { - [sym_type_argument_list] = STATE(2183), + [sym__variable_designation] = STATE(3345), + [sym_parenthesized_variable_designation] = STATE(3344), + [sym_identifier] = STATE(3346), + [sym__reserved_identifier] = STATE(3199), [sym_preproc_region] = STATE(2215), [sym_preproc_endregion] = STATE(2215), [sym_preproc_line] = STATE(2215), @@ -401774,84 +401511,81 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2215), [sym_preproc_define] = STATE(2215), [sym_preproc_undef] = STATE(2215), - [sym__identifier_token] = ACTIONS(3660), - [anon_sym_alias] = ACTIONS(3660), - [anon_sym_global] = ACTIONS(3660), - [anon_sym_EQ] = ACTIONS(3826), - [anon_sym_LBRACK] = ACTIONS(3662), - [anon_sym_COLON] = ACTIONS(3660), - [anon_sym_COMMA] = ACTIONS(3829), - [anon_sym_LPAREN] = ACTIONS(3662), - [anon_sym_RPAREN] = ACTIONS(3829), - [anon_sym_LBRACE] = ACTIONS(3662), - [anon_sym_file] = ACTIONS(3660), - [anon_sym_LT] = ACTIONS(3664), - [anon_sym_GT] = ACTIONS(3660), - [anon_sym_where] = ACTIONS(3660), - [anon_sym_QMARK] = ACTIONS(3660), - [anon_sym_notnull] = ACTIONS(3660), - [anon_sym_unmanaged] = ACTIONS(3660), - [anon_sym_BANG] = ACTIONS(3660), - [anon_sym_PLUS_PLUS] = ACTIONS(3662), - [anon_sym_DASH_DASH] = ACTIONS(3662), - [anon_sym_PLUS] = ACTIONS(3660), - [anon_sym_DASH] = ACTIONS(3660), - [anon_sym_STAR] = ACTIONS(3660), - [anon_sym_SLASH] = ACTIONS(3660), - [anon_sym_PERCENT] = ACTIONS(3660), - [anon_sym_CARET] = ACTIONS(3660), - [anon_sym_PIPE] = ACTIONS(3660), - [anon_sym_AMP] = ACTIONS(3660), - [anon_sym_LT_LT] = ACTIONS(3660), - [anon_sym_GT_GT] = ACTIONS(3660), - [anon_sym_GT_GT_GT] = ACTIONS(3660), - [anon_sym_EQ_EQ] = ACTIONS(3662), - [anon_sym_BANG_EQ] = ACTIONS(3662), - [anon_sym_GT_EQ] = ACTIONS(3662), - [anon_sym_LT_EQ] = ACTIONS(3662), - [anon_sym_DOT] = ACTIONS(3660), - [anon_sym_scoped] = ACTIONS(3660), - [anon_sym_EQ_GT] = ACTIONS(3667), - [anon_sym_COLON_COLON] = ACTIONS(3669), - [anon_sym_var] = ACTIONS(3660), - [anon_sym_yield] = ACTIONS(3660), - [anon_sym_switch] = ACTIONS(3660), - [anon_sym_when] = ACTIONS(3660), - [sym_discard] = ACTIONS(3660), - [anon_sym_DOT_DOT] = ACTIONS(3662), - [anon_sym_and] = ACTIONS(3660), - [anon_sym_or] = ACTIONS(3660), - [anon_sym_PLUS_EQ] = ACTIONS(3662), - [anon_sym_DASH_EQ] = ACTIONS(3662), - [anon_sym_STAR_EQ] = ACTIONS(3662), - [anon_sym_SLASH_EQ] = ACTIONS(3662), - [anon_sym_PERCENT_EQ] = ACTIONS(3662), - [anon_sym_AMP_EQ] = ACTIONS(3662), - [anon_sym_CARET_EQ] = ACTIONS(3662), - [anon_sym_PIPE_EQ] = ACTIONS(3662), - [anon_sym_LT_LT_EQ] = ACTIONS(3662), - [anon_sym_GT_GT_EQ] = ACTIONS(3662), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3662), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3662), - [anon_sym_AMP_AMP] = ACTIONS(3662), - [anon_sym_PIPE_PIPE] = ACTIONS(3662), - [anon_sym_QMARK_QMARK] = ACTIONS(3660), - [anon_sym_from] = ACTIONS(3660), - [anon_sym_into] = ACTIONS(3660), - [anon_sym_join] = ACTIONS(3660), - [anon_sym_on] = ACTIONS(3660), - [anon_sym_equals] = ACTIONS(3660), - [anon_sym_let] = ACTIONS(3660), - [anon_sym_orderby] = ACTIONS(3660), - [anon_sym_ascending] = ACTIONS(3660), - [anon_sym_descending] = ACTIONS(3660), - [anon_sym_group] = ACTIONS(3660), - [anon_sym_by] = ACTIONS(3660), - [anon_sym_select] = ACTIONS(3660), - [anon_sym_as] = ACTIONS(3660), - [anon_sym_is] = ACTIONS(3660), - [anon_sym_DASH_GT] = ACTIONS(3662), - [anon_sym_with] = ACTIONS(3660), + [sym__identifier_token] = ACTIONS(3592), + [anon_sym_alias] = ACTIONS(3596), + [anon_sym_global] = ACTIONS(3596), + [anon_sym_EQ] = ACTIONS(3431), + [anon_sym_LBRACK] = ACTIONS(3600), + [anon_sym_LPAREN] = ACTIONS(3606), + [anon_sym_LBRACE] = ACTIONS(3600), + [anon_sym_file] = ACTIONS(3596), + [anon_sym_LT] = ACTIONS(3603), + [anon_sym_GT] = ACTIONS(3603), + [anon_sym_where] = ACTIONS(3596), + [anon_sym_QMARK] = ACTIONS(3603), + [anon_sym_notnull] = ACTIONS(3596), + [anon_sym_unmanaged] = ACTIONS(3596), + [anon_sym_BANG] = ACTIONS(3603), + [anon_sym_PLUS_PLUS] = ACTIONS(3600), + [anon_sym_DASH_DASH] = ACTIONS(3600), + [anon_sym_PLUS] = ACTIONS(3603), + [anon_sym_DASH] = ACTIONS(3603), + [anon_sym_STAR] = ACTIONS(3603), + [anon_sym_SLASH] = ACTIONS(3603), + [anon_sym_PERCENT] = ACTIONS(3603), + [anon_sym_CARET] = ACTIONS(3603), + [anon_sym_PIPE] = ACTIONS(3603), + [anon_sym_AMP] = ACTIONS(3603), + [anon_sym_LT_LT] = ACTIONS(3603), + [anon_sym_GT_GT] = ACTIONS(3603), + [anon_sym_GT_GT_GT] = ACTIONS(3603), + [anon_sym_EQ_EQ] = ACTIONS(3600), + [anon_sym_BANG_EQ] = ACTIONS(3600), + [anon_sym_GT_EQ] = ACTIONS(3600), + [anon_sym_LT_EQ] = ACTIONS(3600), + [anon_sym_DOT] = ACTIONS(3603), + [anon_sym_scoped] = ACTIONS(3596), + [anon_sym_EQ_GT] = ACTIONS(3600), + [anon_sym_COLON_COLON] = ACTIONS(3429), + [anon_sym_var] = ACTIONS(3596), + [anon_sym_yield] = ACTIONS(3596), + [anon_sym_switch] = ACTIONS(3603), + [anon_sym_when] = ACTIONS(3596), + [sym_discard] = ACTIONS(3610), + [anon_sym_DOT_DOT] = ACTIONS(3600), + [anon_sym_and] = ACTIONS(3603), + [anon_sym_or] = ACTIONS(3603), + [anon_sym_PLUS_EQ] = ACTIONS(3429), + [anon_sym_DASH_EQ] = ACTIONS(3429), + [anon_sym_STAR_EQ] = ACTIONS(3429), + [anon_sym_SLASH_EQ] = ACTIONS(3429), + [anon_sym_PERCENT_EQ] = ACTIONS(3429), + [anon_sym_AMP_EQ] = ACTIONS(3429), + [anon_sym_CARET_EQ] = ACTIONS(3429), + [anon_sym_PIPE_EQ] = ACTIONS(3429), + [anon_sym_LT_LT_EQ] = ACTIONS(3429), + [anon_sym_GT_GT_EQ] = ACTIONS(3429), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3429), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3429), + [anon_sym_AMP_AMP] = ACTIONS(3600), + [anon_sym_PIPE_PIPE] = ACTIONS(3600), + [anon_sym_QMARK_QMARK] = ACTIONS(3603), + [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(3603), + [anon_sym_is] = ACTIONS(3603), + [anon_sym_DASH_GT] = ACTIONS(3600), + [anon_sym_with] = ACTIONS(3603), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -401873,85 +401607,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2216), [sym_preproc_define] = STATE(2216), [sym_preproc_undef] = STATE(2216), - [sym__identifier_token] = ACTIONS(2693), - [anon_sym_alias] = ACTIONS(2693), - [anon_sym_global] = ACTIONS(2693), - [anon_sym_EQ] = ACTIONS(3704), - [anon_sym_LBRACK] = ACTIONS(3719), - [anon_sym_COLON] = ACTIONS(3719), - [anon_sym_COMMA] = ACTIONS(3719), - [anon_sym_LPAREN] = ACTIONS(3831), - [anon_sym_RPAREN] = ACTIONS(3719), - [anon_sym_ref] = ACTIONS(2693), - [anon_sym_delegate] = ACTIONS(2693), - [anon_sym_file] = ACTIONS(2693), - [anon_sym_readonly] = ACTIONS(2693), - [anon_sym_LT] = ACTIONS(3704), - [anon_sym_GT] = ACTIONS(3704), - [anon_sym_in] = ACTIONS(2693), - [anon_sym_out] = ACTIONS(2693), - [anon_sym_where] = ACTIONS(2693), - [anon_sym_QMARK] = ACTIONS(3704), - [anon_sym_notnull] = ACTIONS(2693), - [anon_sym_unmanaged] = ACTIONS(2693), - [anon_sym_BANG] = ACTIONS(3704), - [anon_sym_PLUS_PLUS] = ACTIONS(3719), - [anon_sym_DASH_DASH] = ACTIONS(3719), - [anon_sym_PLUS] = ACTIONS(3704), - [anon_sym_DASH] = ACTIONS(3704), - [anon_sym_STAR] = ACTIONS(3704), - [anon_sym_SLASH] = ACTIONS(3704), - [anon_sym_PERCENT] = ACTIONS(3704), - [anon_sym_CARET] = ACTIONS(3704), - [anon_sym_PIPE] = ACTIONS(3704), - [anon_sym_AMP] = ACTIONS(3704), - [anon_sym_LT_LT] = ACTIONS(3704), - [anon_sym_GT_GT] = ACTIONS(3704), - [anon_sym_GT_GT_GT] = ACTIONS(3704), - [anon_sym_EQ_EQ] = ACTIONS(3719), - [anon_sym_BANG_EQ] = ACTIONS(3719), - [anon_sym_GT_EQ] = ACTIONS(3719), - [anon_sym_LT_EQ] = ACTIONS(3719), - [anon_sym_this] = ACTIONS(2693), - [anon_sym_DOT] = ACTIONS(3704), - [anon_sym_scoped] = ACTIONS(2693), - [anon_sym_var] = ACTIONS(2693), - [sym_predefined_type] = ACTIONS(2693), - [anon_sym_yield] = ACTIONS(2693), - [anon_sym_switch] = ACTIONS(3704), - [anon_sym_when] = ACTIONS(2693), - [anon_sym_DOT_DOT] = ACTIONS(3719), - [anon_sym_PLUS_EQ] = ACTIONS(3719), - [anon_sym_DASH_EQ] = ACTIONS(3719), - [anon_sym_STAR_EQ] = ACTIONS(3719), - [anon_sym_SLASH_EQ] = ACTIONS(3719), - [anon_sym_PERCENT_EQ] = ACTIONS(3719), - [anon_sym_AMP_EQ] = ACTIONS(3719), - [anon_sym_CARET_EQ] = ACTIONS(3719), - [anon_sym_PIPE_EQ] = ACTIONS(3719), - [anon_sym_LT_LT_EQ] = ACTIONS(3719), - [anon_sym_GT_GT_EQ] = ACTIONS(3719), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3719), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3719), - [anon_sym_AMP_AMP] = ACTIONS(3719), - [anon_sym_PIPE_PIPE] = ACTIONS(3719), - [anon_sym_QMARK_QMARK] = ACTIONS(3704), - [anon_sym_from] = ACTIONS(2693), - [anon_sym_into] = ACTIONS(2693), - [anon_sym_join] = ACTIONS(2693), - [anon_sym_on] = ACTIONS(2693), - [anon_sym_equals] = ACTIONS(2693), - [anon_sym_let] = ACTIONS(2693), - [anon_sym_orderby] = ACTIONS(2693), - [anon_sym_ascending] = ACTIONS(2693), - [anon_sym_descending] = ACTIONS(2693), - [anon_sym_group] = ACTIONS(2693), - [anon_sym_by] = ACTIONS(2693), - [anon_sym_select] = ACTIONS(2693), - [anon_sym_as] = ACTIONS(3704), - [anon_sym_is] = ACTIONS(3704), - [anon_sym_DASH_GT] = ACTIONS(3719), - [anon_sym_with] = ACTIONS(3704), + [sym__identifier_token] = ACTIONS(3603), + [anon_sym_alias] = ACTIONS(3603), + [anon_sym_global] = ACTIONS(3603), + [anon_sym_EQ] = ACTIONS(3431), + [anon_sym_LBRACK] = ACTIONS(3429), + [anon_sym_COLON] = ACTIONS(3431), + [anon_sym_COMMA] = ACTIONS(3600), + [anon_sym_LPAREN] = ACTIONS(3600), + [anon_sym_RPAREN] = ACTIONS(3600), + [anon_sym_LBRACE] = ACTIONS(3600), + [anon_sym_RBRACE] = ACTIONS(3600), + [anon_sym_file] = ACTIONS(3603), + [anon_sym_LT] = ACTIONS(3431), + [anon_sym_GT] = ACTIONS(3431), + [anon_sym_where] = ACTIONS(3603), + [anon_sym_QMARK] = ACTIONS(3431), + [anon_sym_notnull] = ACTIONS(3603), + [anon_sym_unmanaged] = ACTIONS(3603), + [anon_sym_BANG] = ACTIONS(3431), + [anon_sym_PLUS_PLUS] = ACTIONS(3429), + [anon_sym_DASH_DASH] = ACTIONS(3429), + [anon_sym_PLUS] = ACTIONS(3431), + [anon_sym_DASH] = ACTIONS(3431), + [anon_sym_STAR] = ACTIONS(3431), + [anon_sym_SLASH] = ACTIONS(3431), + [anon_sym_PERCENT] = ACTIONS(3431), + [anon_sym_CARET] = ACTIONS(3431), + [anon_sym_PIPE] = ACTIONS(3431), + [anon_sym_AMP] = ACTIONS(3431), + [anon_sym_LT_LT] = ACTIONS(3431), + [anon_sym_GT_GT] = ACTIONS(3431), + [anon_sym_GT_GT_GT] = ACTIONS(3431), + [anon_sym_EQ_EQ] = ACTIONS(3429), + [anon_sym_BANG_EQ] = ACTIONS(3429), + [anon_sym_GT_EQ] = ACTIONS(3429), + [anon_sym_LT_EQ] = ACTIONS(3429), + [anon_sym_DOT] = ACTIONS(3431), + [anon_sym_scoped] = ACTIONS(3603), + [anon_sym_EQ_GT] = ACTIONS(3429), + [anon_sym_COLON_COLON] = ACTIONS(3429), + [anon_sym_var] = ACTIONS(3603), + [anon_sym_yield] = ACTIONS(3603), + [anon_sym_switch] = ACTIONS(3431), + [anon_sym_when] = ACTIONS(3603), + [sym_discard] = ACTIONS(3603), + [anon_sym_DOT_DOT] = ACTIONS(3429), + [anon_sym_and] = ACTIONS(3603), + [anon_sym_or] = ACTIONS(3603), + [anon_sym_PLUS_EQ] = ACTIONS(3429), + [anon_sym_DASH_EQ] = ACTIONS(3429), + [anon_sym_STAR_EQ] = ACTIONS(3429), + [anon_sym_SLASH_EQ] = ACTIONS(3429), + [anon_sym_PERCENT_EQ] = ACTIONS(3429), + [anon_sym_AMP_EQ] = ACTIONS(3429), + [anon_sym_CARET_EQ] = ACTIONS(3429), + [anon_sym_PIPE_EQ] = ACTIONS(3429), + [anon_sym_LT_LT_EQ] = ACTIONS(3429), + [anon_sym_GT_GT_EQ] = ACTIONS(3429), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3429), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3429), + [anon_sym_AMP_AMP] = ACTIONS(3429), + [anon_sym_PIPE_PIPE] = ACTIONS(3429), + [anon_sym_QMARK_QMARK] = ACTIONS(3431), + [anon_sym_from] = ACTIONS(3603), + [anon_sym_into] = ACTIONS(3603), + [anon_sym_join] = ACTIONS(3603), + [anon_sym_on] = ACTIONS(3603), + [anon_sym_equals] = ACTIONS(3603), + [anon_sym_let] = ACTIONS(3603), + [anon_sym_orderby] = ACTIONS(3603), + [anon_sym_ascending] = ACTIONS(3603), + [anon_sym_descending] = ACTIONS(3603), + [anon_sym_group] = ACTIONS(3603), + [anon_sym_by] = ACTIONS(3603), + [anon_sym_select] = ACTIONS(3603), + [anon_sym_as] = ACTIONS(3431), + [anon_sym_is] = ACTIONS(3431), + [anon_sym_DASH_GT] = ACTIONS(3429), + [anon_sym_with] = ACTIONS(3431), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -401964,10 +401698,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2217] = { - [sym__variable_designation] = STATE(3474), - [sym_parenthesized_variable_designation] = STATE(3463), - [sym_identifier] = STATE(3479), - [sym__reserved_identifier] = STATE(3177), + [sym__variable_designation] = STATE(3353), + [sym_parenthesized_variable_designation] = STATE(3352), + [sym_identifier] = STATE(3355), + [sym__reserved_identifier] = STATE(3199), [sym_preproc_region] = STATE(2217), [sym_preproc_endregion] = STATE(2217), [sym_preproc_line] = STATE(2217), @@ -401977,81 +401711,81 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2217), [sym_preproc_define] = STATE(2217), [sym_preproc_undef] = STATE(2217), - [sym__identifier_token] = ACTIONS(3608), - [anon_sym_alias] = ACTIONS(3612), - [anon_sym_global] = ACTIONS(3612), - [anon_sym_EQ] = ACTIONS(3447), - [anon_sym_LBRACK] = ACTIONS(3616), - [anon_sym_LPAREN] = ACTIONS(3632), - [anon_sym_LBRACE] = ACTIONS(3616), - [anon_sym_file] = ACTIONS(3612), - [anon_sym_LT] = ACTIONS(3619), - [anon_sym_GT] = ACTIONS(3619), - [anon_sym_where] = ACTIONS(3612), - [anon_sym_QMARK] = ACTIONS(3619), - [anon_sym_notnull] = ACTIONS(3612), - [anon_sym_unmanaged] = ACTIONS(3612), - [anon_sym_BANG] = ACTIONS(3619), - [anon_sym_PLUS_PLUS] = ACTIONS(3616), - [anon_sym_DASH_DASH] = ACTIONS(3616), - [anon_sym_PLUS] = ACTIONS(3619), - [anon_sym_DASH] = ACTIONS(3619), - [anon_sym_STAR] = ACTIONS(3619), - [anon_sym_SLASH] = ACTIONS(3619), - [anon_sym_PERCENT] = ACTIONS(3619), - [anon_sym_CARET] = ACTIONS(3619), - [anon_sym_PIPE] = ACTIONS(3619), - [anon_sym_AMP] = ACTIONS(3619), - [anon_sym_LT_LT] = ACTIONS(3619), - [anon_sym_GT_GT] = ACTIONS(3619), - [anon_sym_GT_GT_GT] = ACTIONS(3619), - [anon_sym_EQ_EQ] = ACTIONS(3616), - [anon_sym_BANG_EQ] = ACTIONS(3616), - [anon_sym_GT_EQ] = ACTIONS(3616), - [anon_sym_LT_EQ] = ACTIONS(3616), - [anon_sym_DOT] = ACTIONS(3619), - [anon_sym_scoped] = ACTIONS(3612), - [anon_sym_EQ_GT] = ACTIONS(3616), - [anon_sym_COLON_COLON] = ACTIONS(3445), - [anon_sym_var] = ACTIONS(3612), - [anon_sym_yield] = ACTIONS(3612), - [anon_sym_switch] = ACTIONS(3619), - [anon_sym_when] = ACTIONS(3612), - [sym_discard] = ACTIONS(3636), - [anon_sym_DOT_DOT] = ACTIONS(3616), - [anon_sym_and] = ACTIONS(3619), - [anon_sym_or] = ACTIONS(3619), - [anon_sym_PLUS_EQ] = ACTIONS(3445), - [anon_sym_DASH_EQ] = ACTIONS(3445), - [anon_sym_STAR_EQ] = ACTIONS(3445), - [anon_sym_SLASH_EQ] = ACTIONS(3445), - [anon_sym_PERCENT_EQ] = ACTIONS(3445), - [anon_sym_AMP_EQ] = ACTIONS(3445), - [anon_sym_CARET_EQ] = ACTIONS(3445), - [anon_sym_PIPE_EQ] = ACTIONS(3445), - [anon_sym_LT_LT_EQ] = ACTIONS(3445), - [anon_sym_GT_GT_EQ] = ACTIONS(3445), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3445), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3445), - [anon_sym_AMP_AMP] = ACTIONS(3616), - [anon_sym_PIPE_PIPE] = ACTIONS(3616), - [anon_sym_QMARK_QMARK] = ACTIONS(3619), - [anon_sym_from] = ACTIONS(3612), - [anon_sym_into] = ACTIONS(3612), - [anon_sym_join] = ACTIONS(3612), - [anon_sym_on] = ACTIONS(3612), - [anon_sym_equals] = ACTIONS(3612), - [anon_sym_let] = ACTIONS(3612), - [anon_sym_orderby] = ACTIONS(3612), - [anon_sym_ascending] = ACTIONS(3612), - [anon_sym_descending] = ACTIONS(3612), - [anon_sym_group] = ACTIONS(3612), - [anon_sym_by] = ACTIONS(3612), - [anon_sym_select] = ACTIONS(3612), - [anon_sym_as] = ACTIONS(3619), - [anon_sym_is] = ACTIONS(3619), - [anon_sym_DASH_GT] = ACTIONS(3616), - [anon_sym_with] = ACTIONS(3619), + [sym__identifier_token] = ACTIONS(3592), + [anon_sym_alias] = ACTIONS(3596), + [anon_sym_global] = ACTIONS(3596), + [anon_sym_EQ] = ACTIONS(3431), + [anon_sym_LBRACK] = ACTIONS(3600), + [anon_sym_LPAREN] = ACTIONS(3616), + [anon_sym_LBRACE] = ACTIONS(3600), + [anon_sym_file] = ACTIONS(3596), + [anon_sym_LT] = ACTIONS(3603), + [anon_sym_GT] = ACTIONS(3603), + [anon_sym_where] = ACTIONS(3596), + [anon_sym_QMARK] = ACTIONS(3603), + [anon_sym_notnull] = ACTIONS(3596), + [anon_sym_unmanaged] = ACTIONS(3596), + [anon_sym_BANG] = ACTIONS(3603), + [anon_sym_PLUS_PLUS] = ACTIONS(3600), + [anon_sym_DASH_DASH] = ACTIONS(3600), + [anon_sym_PLUS] = ACTIONS(3603), + [anon_sym_DASH] = ACTIONS(3603), + [anon_sym_STAR] = ACTIONS(3603), + [anon_sym_SLASH] = ACTIONS(3603), + [anon_sym_PERCENT] = ACTIONS(3603), + [anon_sym_CARET] = ACTIONS(3603), + [anon_sym_PIPE] = ACTIONS(3603), + [anon_sym_AMP] = ACTIONS(3603), + [anon_sym_LT_LT] = ACTIONS(3603), + [anon_sym_GT_GT] = ACTIONS(3603), + [anon_sym_GT_GT_GT] = ACTIONS(3603), + [anon_sym_EQ_EQ] = ACTIONS(3600), + [anon_sym_BANG_EQ] = ACTIONS(3600), + [anon_sym_GT_EQ] = ACTIONS(3600), + [anon_sym_LT_EQ] = ACTIONS(3600), + [anon_sym_DOT] = ACTIONS(3603), + [anon_sym_scoped] = ACTIONS(3596), + [anon_sym_EQ_GT] = ACTIONS(3600), + [anon_sym_COLON_COLON] = ACTIONS(3429), + [anon_sym_var] = ACTIONS(3596), + [anon_sym_yield] = ACTIONS(3596), + [anon_sym_switch] = ACTIONS(3603), + [anon_sym_when] = ACTIONS(3596), + [sym_discard] = ACTIONS(3620), + [anon_sym_DOT_DOT] = ACTIONS(3600), + [anon_sym_and] = ACTIONS(3603), + [anon_sym_or] = ACTIONS(3603), + [anon_sym_PLUS_EQ] = ACTIONS(3429), + [anon_sym_DASH_EQ] = ACTIONS(3429), + [anon_sym_STAR_EQ] = ACTIONS(3429), + [anon_sym_SLASH_EQ] = ACTIONS(3429), + [anon_sym_PERCENT_EQ] = ACTIONS(3429), + [anon_sym_AMP_EQ] = ACTIONS(3429), + [anon_sym_CARET_EQ] = ACTIONS(3429), + [anon_sym_PIPE_EQ] = ACTIONS(3429), + [anon_sym_LT_LT_EQ] = ACTIONS(3429), + [anon_sym_GT_GT_EQ] = ACTIONS(3429), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3429), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3429), + [anon_sym_AMP_AMP] = ACTIONS(3600), + [anon_sym_PIPE_PIPE] = ACTIONS(3600), + [anon_sym_QMARK_QMARK] = ACTIONS(3603), + [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(3603), + [anon_sym_is] = ACTIONS(3603), + [anon_sym_DASH_GT] = ACTIONS(3600), + [anon_sym_with] = ACTIONS(3603), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -402064,6 +401798,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2218] = { + [sym__variable_designation] = STATE(4145), + [sym_parenthesized_variable_designation] = STATE(4116), + [sym_identifier] = STATE(4152), + [sym__reserved_identifier] = STATE(2916), [sym_preproc_region] = STATE(2218), [sym_preproc_endregion] = STATE(2218), [sym_preproc_line] = STATE(2218), @@ -402073,85 +401811,81 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2218), [sym_preproc_define] = STATE(2218), [sym_preproc_undef] = STATE(2218), - [sym__identifier_token] = ACTIONS(3782), - [anon_sym_alias] = ACTIONS(3782), - [anon_sym_SEMI] = ACTIONS(2965), - [anon_sym_global] = ACTIONS(3782), - [anon_sym_static] = ACTIONS(3782), - [anon_sym_LBRACK] = ACTIONS(3784), - [anon_sym_COLON] = ACTIONS(2965), - [anon_sym_COMMA] = ACTIONS(2965), - [anon_sym_RBRACK] = ACTIONS(2965), - [anon_sym_LPAREN] = ACTIONS(3784), - [anon_sym_RPAREN] = ACTIONS(2965), - [anon_sym_ref] = ACTIONS(3782), - [anon_sym_RBRACE] = ACTIONS(2965), - [anon_sym_delegate] = ACTIONS(3782), - [anon_sym_async] = ACTIONS(3782), - [anon_sym_file] = ACTIONS(3782), - [anon_sym_readonly] = ACTIONS(3782), - [anon_sym_LT] = ACTIONS(2963), - [anon_sym_GT] = ACTIONS(2963), - [anon_sym_in] = ACTIONS(3782), - [anon_sym_out] = ACTIONS(3782), - [anon_sym_where] = ACTIONS(3782), - [anon_sym_QMARK] = ACTIONS(2963), - [anon_sym_notnull] = ACTIONS(3782), - [anon_sym_unmanaged] = ACTIONS(3782), - [anon_sym_BANG] = ACTIONS(2963), - [anon_sym_PLUS_PLUS] = ACTIONS(2965), - [anon_sym_DASH_DASH] = ACTIONS(2965), - [anon_sym_PLUS] = ACTIONS(2963), - [anon_sym_DASH] = ACTIONS(2963), - [anon_sym_STAR] = ACTIONS(2965), - [anon_sym_SLASH] = ACTIONS(2963), - [anon_sym_PERCENT] = ACTIONS(2965), - [anon_sym_CARET] = ACTIONS(2965), - [anon_sym_PIPE] = ACTIONS(2963), - [anon_sym_AMP] = ACTIONS(2963), - [anon_sym_LT_LT] = ACTIONS(2965), - [anon_sym_GT_GT] = ACTIONS(2963), - [anon_sym_GT_GT_GT] = ACTIONS(2965), - [anon_sym_EQ_EQ] = ACTIONS(2965), - [anon_sym_BANG_EQ] = ACTIONS(2965), - [anon_sym_GT_EQ] = ACTIONS(2965), - [anon_sym_LT_EQ] = ACTIONS(2965), - [anon_sym_this] = ACTIONS(3782), - [anon_sym_DOT] = ACTIONS(2963), - [anon_sym_scoped] = ACTIONS(3782), - [anon_sym_params] = ACTIONS(3782), - [anon_sym_EQ_GT] = ACTIONS(2965), - [anon_sym_var] = ACTIONS(3782), - [sym_predefined_type] = ACTIONS(3782), - [anon_sym_yield] = ACTIONS(3782), - [anon_sym_switch] = ACTIONS(2963), - [anon_sym_when] = ACTIONS(3782), - [anon_sym_DOT_DOT] = ACTIONS(2965), - [anon_sym_and] = ACTIONS(2963), - [anon_sym_or] = ACTIONS(2963), - [anon_sym_AMP_AMP] = ACTIONS(2965), - [anon_sym_PIPE_PIPE] = ACTIONS(2965), - [anon_sym_QMARK_QMARK] = ACTIONS(2965), - [anon_sym_from] = ACTIONS(3782), - [anon_sym_into] = ACTIONS(3782), - [anon_sym_join] = ACTIONS(3782), - [anon_sym_on] = ACTIONS(3782), - [anon_sym_equals] = ACTIONS(3782), - [anon_sym_let] = ACTIONS(3782), - [anon_sym_orderby] = ACTIONS(3782), - [anon_sym_ascending] = ACTIONS(3782), - [anon_sym_descending] = ACTIONS(3782), - [anon_sym_group] = ACTIONS(3782), - [anon_sym_by] = ACTIONS(3782), - [anon_sym_select] = ACTIONS(3782), - [anon_sym_as] = ACTIONS(2963), - [anon_sym_is] = ACTIONS(2963), - [anon_sym_DASH_GT] = ACTIONS(2965), - [anon_sym_with] = ACTIONS(2963), - [aux_sym_preproc_if_token1] = ACTIONS(3784), - [aux_sym_preproc_if_token3] = ACTIONS(2965), - [aux_sym_preproc_else_token1] = ACTIONS(2965), - [aux_sym_preproc_elif_token1] = ACTIONS(2965), + [sym__identifier_token] = ACTIONS(3823), + [anon_sym_alias] = ACTIONS(3827), + [anon_sym_global] = ACTIONS(3827), + [anon_sym_EQ] = ACTIONS(3431), + [anon_sym_LBRACK] = ACTIONS(3600), + [anon_sym_LPAREN] = ACTIONS(3831), + [anon_sym_LBRACE] = ACTIONS(3600), + [anon_sym_file] = ACTIONS(3827), + [anon_sym_LT] = ACTIONS(3603), + [anon_sym_GT] = ACTIONS(3603), + [anon_sym_where] = ACTIONS(3827), + [anon_sym_QMARK] = ACTIONS(3603), + [anon_sym_notnull] = ACTIONS(3827), + [anon_sym_unmanaged] = ACTIONS(3827), + [anon_sym_BANG] = ACTIONS(3603), + [anon_sym_PLUS_PLUS] = ACTIONS(3600), + [anon_sym_DASH_DASH] = ACTIONS(3600), + [anon_sym_PLUS] = ACTIONS(3603), + [anon_sym_DASH] = ACTIONS(3603), + [anon_sym_STAR] = ACTIONS(3603), + [anon_sym_SLASH] = ACTIONS(3603), + [anon_sym_PERCENT] = ACTIONS(3603), + [anon_sym_CARET] = ACTIONS(3603), + [anon_sym_PIPE] = ACTIONS(3603), + [anon_sym_AMP] = ACTIONS(3603), + [anon_sym_LT_LT] = ACTIONS(3603), + [anon_sym_GT_GT] = ACTIONS(3603), + [anon_sym_GT_GT_GT] = ACTIONS(3603), + [anon_sym_EQ_EQ] = ACTIONS(3600), + [anon_sym_BANG_EQ] = ACTIONS(3600), + [anon_sym_GT_EQ] = ACTIONS(3600), + [anon_sym_LT_EQ] = ACTIONS(3600), + [anon_sym_DOT] = ACTIONS(3603), + [anon_sym_scoped] = ACTIONS(3827), + [anon_sym_EQ_GT] = ACTIONS(3429), + [anon_sym_COLON_COLON] = ACTIONS(3429), + [anon_sym_var] = ACTIONS(3827), + [anon_sym_yield] = ACTIONS(3827), + [anon_sym_switch] = ACTIONS(3603), + [anon_sym_when] = ACTIONS(3827), + [sym_discard] = ACTIONS(3835), + [anon_sym_DOT_DOT] = ACTIONS(3600), + [anon_sym_and] = ACTIONS(3603), + [anon_sym_or] = ACTIONS(3603), + [anon_sym_PLUS_EQ] = ACTIONS(3429), + [anon_sym_DASH_EQ] = ACTIONS(3429), + [anon_sym_STAR_EQ] = ACTIONS(3429), + [anon_sym_SLASH_EQ] = ACTIONS(3429), + [anon_sym_PERCENT_EQ] = ACTIONS(3429), + [anon_sym_AMP_EQ] = ACTIONS(3429), + [anon_sym_CARET_EQ] = ACTIONS(3429), + [anon_sym_PIPE_EQ] = ACTIONS(3429), + [anon_sym_LT_LT_EQ] = ACTIONS(3429), + [anon_sym_GT_GT_EQ] = ACTIONS(3429), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3429), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3429), + [anon_sym_AMP_AMP] = ACTIONS(3600), + [anon_sym_PIPE_PIPE] = ACTIONS(3600), + [anon_sym_QMARK_QMARK] = ACTIONS(3603), + [anon_sym_from] = ACTIONS(3827), + [anon_sym_into] = ACTIONS(3827), + [anon_sym_join] = ACTIONS(3827), + [anon_sym_on] = ACTIONS(3827), + [anon_sym_equals] = ACTIONS(3827), + [anon_sym_let] = ACTIONS(3827), + [anon_sym_orderby] = ACTIONS(3827), + [anon_sym_ascending] = ACTIONS(3827), + [anon_sym_descending] = ACTIONS(3827), + [anon_sym_group] = ACTIONS(3827), + [anon_sym_by] = ACTIONS(3827), + [anon_sym_select] = ACTIONS(3827), + [anon_sym_as] = ACTIONS(3603), + [anon_sym_is] = ACTIONS(3603), + [anon_sym_DASH_GT] = ACTIONS(3600), + [anon_sym_with] = ACTIONS(3603), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -402164,10 +401898,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2219] = { - [sym__variable_designation] = STATE(4162), - [sym_parenthesized_variable_designation] = STATE(4173), - [sym_identifier] = STATE(4177), - [sym__reserved_identifier] = STATE(2904), + [sym_type_argument_list] = STATE(2266), [sym_preproc_region] = STATE(2219), [sym_preproc_endregion] = STATE(2219), [sym_preproc_line] = STATE(2219), @@ -402177,97 +401908,96 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2219), [sym_preproc_define] = STATE(2219), [sym_preproc_undef] = STATE(2219), - [sym__identifier_token] = ACTIONS(3834), - [anon_sym_alias] = ACTIONS(3838), - [anon_sym_global] = ACTIONS(3838), - [anon_sym_EQ] = ACTIONS(3447), - [anon_sym_LBRACK] = ACTIONS(3616), - [anon_sym_LPAREN] = ACTIONS(3842), - [anon_sym_LBRACE] = ACTIONS(3616), - [anon_sym_file] = ACTIONS(3838), - [anon_sym_LT] = ACTIONS(3619), - [anon_sym_GT] = ACTIONS(3619), - [anon_sym_where] = ACTIONS(3838), - [anon_sym_QMARK] = ACTIONS(3619), - [anon_sym_notnull] = ACTIONS(3838), - [anon_sym_unmanaged] = ACTIONS(3838), - [anon_sym_BANG] = ACTIONS(3619), - [anon_sym_PLUS_PLUS] = ACTIONS(3616), - [anon_sym_DASH_DASH] = ACTIONS(3616), - [anon_sym_PLUS] = ACTIONS(3619), - [anon_sym_DASH] = ACTIONS(3619), - [anon_sym_STAR] = ACTIONS(3619), - [anon_sym_SLASH] = ACTIONS(3619), - [anon_sym_PERCENT] = ACTIONS(3619), - [anon_sym_CARET] = ACTIONS(3619), - [anon_sym_PIPE] = ACTIONS(3619), - [anon_sym_AMP] = ACTIONS(3619), - [anon_sym_LT_LT] = ACTIONS(3619), - [anon_sym_GT_GT] = ACTIONS(3619), - [anon_sym_GT_GT_GT] = ACTIONS(3619), - [anon_sym_EQ_EQ] = ACTIONS(3616), - [anon_sym_BANG_EQ] = ACTIONS(3616), - [anon_sym_GT_EQ] = ACTIONS(3616), - [anon_sym_LT_EQ] = ACTIONS(3616), - [anon_sym_DOT] = ACTIONS(3619), - [anon_sym_scoped] = ACTIONS(3838), - [anon_sym_EQ_GT] = ACTIONS(3445), - [anon_sym_COLON_COLON] = ACTIONS(3445), - [anon_sym_var] = ACTIONS(3838), - [anon_sym_yield] = ACTIONS(3838), - [anon_sym_switch] = ACTIONS(3619), - [anon_sym_when] = ACTIONS(3838), - [sym_discard] = ACTIONS(3846), - [anon_sym_DOT_DOT] = ACTIONS(3616), - [anon_sym_and] = ACTIONS(3619), - [anon_sym_or] = ACTIONS(3619), - [anon_sym_PLUS_EQ] = ACTIONS(3445), - [anon_sym_DASH_EQ] = ACTIONS(3445), - [anon_sym_STAR_EQ] = ACTIONS(3445), - [anon_sym_SLASH_EQ] = ACTIONS(3445), - [anon_sym_PERCENT_EQ] = ACTIONS(3445), - [anon_sym_AMP_EQ] = ACTIONS(3445), - [anon_sym_CARET_EQ] = ACTIONS(3445), - [anon_sym_PIPE_EQ] = ACTIONS(3445), - [anon_sym_LT_LT_EQ] = ACTIONS(3445), - [anon_sym_GT_GT_EQ] = ACTIONS(3445), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3445), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3445), - [anon_sym_AMP_AMP] = ACTIONS(3616), - [anon_sym_PIPE_PIPE] = ACTIONS(3616), - [anon_sym_QMARK_QMARK] = ACTIONS(3619), - [anon_sym_from] = ACTIONS(3838), - [anon_sym_into] = ACTIONS(3838), - [anon_sym_join] = ACTIONS(3838), - [anon_sym_on] = ACTIONS(3838), - [anon_sym_equals] = ACTIONS(3838), - [anon_sym_let] = ACTIONS(3838), - [anon_sym_orderby] = ACTIONS(3838), - [anon_sym_ascending] = ACTIONS(3838), - [anon_sym_descending] = ACTIONS(3838), - [anon_sym_group] = ACTIONS(3838), - [anon_sym_by] = ACTIONS(3838), - [anon_sym_select] = ACTIONS(3838), - [anon_sym_as] = ACTIONS(3619), - [anon_sym_is] = ACTIONS(3619), - [anon_sym_DASH_GT] = ACTIONS(3616), - [anon_sym_with] = ACTIONS(3619), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_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(3638), + [anon_sym_alias] = ACTIONS(3638), + [anon_sym_global] = ACTIONS(3638), + [anon_sym_EQ] = ACTIONS(3638), + [anon_sym_LBRACK] = ACTIONS(3640), + [anon_sym_COLON] = ACTIONS(3638), + [anon_sym_COMMA] = ACTIONS(3640), + [anon_sym_LPAREN] = ACTIONS(3640), + [anon_sym_LBRACE] = ACTIONS(3640), + [anon_sym_file] = ACTIONS(3638), + [anon_sym_LT] = ACTIONS(3839), + [anon_sym_GT] = ACTIONS(3638), + [anon_sym_where] = ACTIONS(3638), + [anon_sym_QMARK] = ACTIONS(3638), + [anon_sym_notnull] = ACTIONS(3638), + [anon_sym_unmanaged] = ACTIONS(3638), + [anon_sym_BANG] = ACTIONS(3638), + [anon_sym_PLUS_PLUS] = ACTIONS(3640), + [anon_sym_DASH_DASH] = ACTIONS(3640), + [anon_sym_PLUS] = ACTIONS(3638), + [anon_sym_DASH] = ACTIONS(3638), + [anon_sym_STAR] = ACTIONS(3638), + [anon_sym_SLASH] = ACTIONS(3638), + [anon_sym_PERCENT] = ACTIONS(3638), + [anon_sym_CARET] = ACTIONS(3638), + [anon_sym_PIPE] = ACTIONS(3638), + [anon_sym_AMP] = ACTIONS(3638), + [anon_sym_LT_LT] = ACTIONS(3638), + [anon_sym_GT_GT] = ACTIONS(3638), + [anon_sym_GT_GT_GT] = ACTIONS(3638), + [anon_sym_EQ_EQ] = ACTIONS(3640), + [anon_sym_BANG_EQ] = ACTIONS(3640), + [anon_sym_GT_EQ] = ACTIONS(3640), + [anon_sym_LT_EQ] = ACTIONS(3640), + [anon_sym_DOT] = ACTIONS(3638), + [anon_sym_scoped] = ACTIONS(3638), + [anon_sym_EQ_GT] = ACTIONS(3651), + [anon_sym_COLON_COLON] = ACTIONS(3842), + [anon_sym_var] = ACTIONS(3638), + [anon_sym_yield] = ACTIONS(3638), + [anon_sym_switch] = ACTIONS(3638), + [anon_sym_when] = ACTIONS(3638), + [sym_discard] = ACTIONS(3638), + [anon_sym_DOT_DOT] = ACTIONS(3640), + [anon_sym_and] = ACTIONS(3638), + [anon_sym_or] = ACTIONS(3638), + [anon_sym_PLUS_EQ] = ACTIONS(3640), + [anon_sym_DASH_EQ] = ACTIONS(3640), + [anon_sym_STAR_EQ] = ACTIONS(3640), + [anon_sym_SLASH_EQ] = ACTIONS(3640), + [anon_sym_PERCENT_EQ] = ACTIONS(3640), + [anon_sym_AMP_EQ] = ACTIONS(3640), + [anon_sym_CARET_EQ] = ACTIONS(3640), + [anon_sym_PIPE_EQ] = ACTIONS(3640), + [anon_sym_LT_LT_EQ] = ACTIONS(3640), + [anon_sym_GT_GT_EQ] = ACTIONS(3640), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3640), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3640), + [anon_sym_AMP_AMP] = ACTIONS(3640), + [anon_sym_PIPE_PIPE] = ACTIONS(3640), + [anon_sym_QMARK_QMARK] = ACTIONS(3638), + [anon_sym_from] = ACTIONS(3638), + [anon_sym_into] = ACTIONS(3638), + [anon_sym_join] = ACTIONS(3638), + [anon_sym_on] = ACTIONS(3638), + [anon_sym_equals] = ACTIONS(3638), + [anon_sym_let] = ACTIONS(3638), + [anon_sym_orderby] = ACTIONS(3638), + [anon_sym_ascending] = ACTIONS(3638), + [anon_sym_descending] = ACTIONS(3638), + [anon_sym_group] = ACTIONS(3638), + [anon_sym_by] = ACTIONS(3638), + [anon_sym_select] = ACTIONS(3638), + [anon_sym_as] = ACTIONS(3638), + [anon_sym_is] = ACTIONS(3638), + [anon_sym_DASH_GT] = ACTIONS(3640), + [anon_sym_with] = ACTIONS(3638), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_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(3640), }, [2220] = { - [sym__variable_designation] = STATE(3474), - [sym_parenthesized_variable_designation] = STATE(3463), - [sym_identifier] = STATE(3479), - [sym__reserved_identifier] = STATE(2571), [sym_preproc_region] = STATE(2220), [sym_preproc_endregion] = STATE(2220), [sym_preproc_line] = STATE(2220), @@ -402277,81 +402007,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2220), [sym_preproc_define] = STATE(2220), [sym_preproc_undef] = STATE(2220), - [sym__identifier_token] = ACTIONS(3727), - [anon_sym_alias] = ACTIONS(3731), - [anon_sym_global] = ACTIONS(3731), - [anon_sym_EQ] = ACTIONS(3447), - [anon_sym_LBRACK] = ACTIONS(3445), - [anon_sym_LPAREN] = ACTIONS(3632), - [anon_sym_LBRACE] = ACTIONS(3616), - [anon_sym_file] = ACTIONS(3731), - [anon_sym_LT] = ACTIONS(3447), - [anon_sym_GT] = ACTIONS(3447), - [anon_sym_where] = ACTIONS(3731), - [anon_sym_QMARK] = ACTIONS(3447), - [anon_sym_notnull] = ACTIONS(3731), - [anon_sym_unmanaged] = ACTIONS(3731), - [anon_sym_BANG] = ACTIONS(3447), - [anon_sym_PLUS_PLUS] = ACTIONS(3445), - [anon_sym_DASH_DASH] = ACTIONS(3445), - [anon_sym_PLUS] = ACTIONS(3447), - [anon_sym_DASH] = ACTIONS(3447), - [anon_sym_STAR] = ACTIONS(3447), - [anon_sym_SLASH] = ACTIONS(3447), - [anon_sym_PERCENT] = ACTIONS(3447), - [anon_sym_CARET] = ACTIONS(3447), - [anon_sym_PIPE] = ACTIONS(3447), - [anon_sym_AMP] = ACTIONS(3447), - [anon_sym_LT_LT] = ACTIONS(3447), - [anon_sym_GT_GT] = ACTIONS(3447), - [anon_sym_GT_GT_GT] = ACTIONS(3447), - [anon_sym_EQ_EQ] = ACTIONS(3445), - [anon_sym_BANG_EQ] = ACTIONS(3445), - [anon_sym_GT_EQ] = ACTIONS(3445), - [anon_sym_LT_EQ] = ACTIONS(3445), - [anon_sym_DOT] = ACTIONS(3447), - [anon_sym_scoped] = ACTIONS(3731), - [anon_sym_EQ_GT] = ACTIONS(3616), - [anon_sym_COLON_COLON] = ACTIONS(3445), - [anon_sym_var] = ACTIONS(3731), - [anon_sym_yield] = ACTIONS(3731), - [anon_sym_switch] = ACTIONS(3447), - [anon_sym_when] = ACTIONS(3731), - [sym_discard] = ACTIONS(3636), - [anon_sym_DOT_DOT] = ACTIONS(3445), - [anon_sym_and] = ACTIONS(3619), - [anon_sym_or] = ACTIONS(3619), - [anon_sym_PLUS_EQ] = ACTIONS(3445), - [anon_sym_DASH_EQ] = ACTIONS(3445), - [anon_sym_STAR_EQ] = ACTIONS(3445), - [anon_sym_SLASH_EQ] = ACTIONS(3445), - [anon_sym_PERCENT_EQ] = ACTIONS(3445), - [anon_sym_AMP_EQ] = ACTIONS(3445), - [anon_sym_CARET_EQ] = ACTIONS(3445), - [anon_sym_PIPE_EQ] = ACTIONS(3445), - [anon_sym_LT_LT_EQ] = ACTIONS(3445), - [anon_sym_GT_GT_EQ] = ACTIONS(3445), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3445), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3445), - [anon_sym_AMP_AMP] = ACTIONS(3445), - [anon_sym_PIPE_PIPE] = ACTIONS(3445), - [anon_sym_QMARK_QMARK] = ACTIONS(3447), - [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_ascending] = ACTIONS(3731), - [anon_sym_descending] = ACTIONS(3731), - [anon_sym_group] = ACTIONS(3731), - [anon_sym_by] = ACTIONS(3731), - [anon_sym_select] = ACTIONS(3731), - [anon_sym_as] = ACTIONS(3447), - [anon_sym_is] = ACTIONS(3447), - [anon_sym_DASH_GT] = ACTIONS(3445), - [anon_sym_with] = ACTIONS(3447), + [sym__identifier_token] = ACTIONS(3669), + [anon_sym_alias] = ACTIONS(3669), + [anon_sym_global] = ACTIONS(3669), + [anon_sym_EQ] = ACTIONS(3673), + [anon_sym_LBRACK] = ACTIONS(3675), + [anon_sym_COLON] = ACTIONS(3671), + [anon_sym_COMMA] = ACTIONS(3678), + [anon_sym_RBRACK] = ACTIONS(3678), + [anon_sym_LPAREN] = ACTIONS(3675), + [anon_sym_RPAREN] = ACTIONS(3671), + [anon_sym_LBRACE] = ACTIONS(3678), + [anon_sym_RBRACE] = ACTIONS(3678), + [anon_sym_file] = ACTIONS(3669), + [anon_sym_LT] = ACTIONS(3673), + [anon_sym_GT] = ACTIONS(3673), + [anon_sym_where] = ACTIONS(3669), + [anon_sym_QMARK] = ACTIONS(3680), + [anon_sym_notnull] = ACTIONS(3669), + [anon_sym_unmanaged] = ACTIONS(3669), + [anon_sym_BANG] = ACTIONS(3673), + [anon_sym_PLUS_PLUS] = ACTIONS(3671), + [anon_sym_DASH_DASH] = ACTIONS(3671), + [anon_sym_PLUS] = ACTIONS(3673), + [anon_sym_DASH] = ACTIONS(3673), + [anon_sym_STAR] = ACTIONS(3680), + [anon_sym_SLASH] = ACTIONS(3673), + [anon_sym_PERCENT] = ACTIONS(3673), + [anon_sym_CARET] = ACTIONS(3673), + [anon_sym_PIPE] = ACTIONS(3673), + [anon_sym_AMP] = ACTIONS(3673), + [anon_sym_LT_LT] = ACTIONS(3673), + [anon_sym_GT_GT] = ACTIONS(3673), + [anon_sym_GT_GT_GT] = ACTIONS(3673), + [anon_sym_EQ_EQ] = ACTIONS(3671), + [anon_sym_BANG_EQ] = ACTIONS(3671), + [anon_sym_GT_EQ] = ACTIONS(3671), + [anon_sym_LT_EQ] = ACTIONS(3671), + [anon_sym_DOT] = ACTIONS(3680), + [anon_sym_scoped] = ACTIONS(3669), + [anon_sym_EQ_GT] = ACTIONS(3678), + [anon_sym_var] = ACTIONS(3669), + [anon_sym_yield] = ACTIONS(3669), + [anon_sym_switch] = ACTIONS(3673), + [anon_sym_when] = ACTIONS(3669), + [sym_discard] = ACTIONS(3669), + [anon_sym_DOT_DOT] = ACTIONS(3671), + [anon_sym_and] = ACTIONS(3669), + [anon_sym_or] = ACTIONS(3669), + [anon_sym_PLUS_EQ] = ACTIONS(3671), + [anon_sym_DASH_EQ] = ACTIONS(3671), + [anon_sym_STAR_EQ] = ACTIONS(3671), + [anon_sym_SLASH_EQ] = ACTIONS(3671), + [anon_sym_PERCENT_EQ] = ACTIONS(3671), + [anon_sym_AMP_EQ] = ACTIONS(3671), + [anon_sym_CARET_EQ] = ACTIONS(3671), + [anon_sym_PIPE_EQ] = ACTIONS(3671), + [anon_sym_LT_LT_EQ] = ACTIONS(3671), + [anon_sym_GT_GT_EQ] = ACTIONS(3671), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3671), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3671), + [anon_sym_AMP_AMP] = ACTIONS(3671), + [anon_sym_PIPE_PIPE] = ACTIONS(3671), + [anon_sym_QMARK_QMARK] = ACTIONS(3673), + [anon_sym_from] = ACTIONS(3669), + [anon_sym_into] = ACTIONS(3669), + [anon_sym_join] = ACTIONS(3669), + [anon_sym_on] = ACTIONS(3669), + [anon_sym_equals] = ACTIONS(3669), + [anon_sym_let] = ACTIONS(3669), + [anon_sym_orderby] = ACTIONS(3669), + [anon_sym_ascending] = ACTIONS(3669), + [anon_sym_descending] = ACTIONS(3669), + [anon_sym_group] = ACTIONS(3669), + [anon_sym_by] = ACTIONS(3669), + [anon_sym_select] = ACTIONS(3669), + [anon_sym_as] = ACTIONS(3673), + [anon_sym_is] = ACTIONS(3673), + [anon_sym_DASH_GT] = ACTIONS(3675), + [anon_sym_with] = ACTIONS(3673), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -402364,10 +402098,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2221] = { - [sym__variable_designation] = STATE(3343), - [sym_parenthesized_variable_designation] = STATE(3340), - [sym_identifier] = STATE(3345), - [sym__reserved_identifier] = STATE(3177), + [sym_type_argument_list] = STATE(2171), [sym_preproc_region] = STATE(2221), [sym_preproc_endregion] = STATE(2221), [sym_preproc_line] = STATE(2221), @@ -402377,81 +402108,84 @@ 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(3608), - [anon_sym_alias] = ACTIONS(3612), - [anon_sym_global] = ACTIONS(3612), - [anon_sym_EQ] = ACTIONS(3447), - [anon_sym_LBRACK] = ACTIONS(3616), - [anon_sym_LPAREN] = ACTIONS(3622), - [anon_sym_LBRACE] = ACTIONS(3616), - [anon_sym_file] = ACTIONS(3612), - [anon_sym_LT] = ACTIONS(3619), - [anon_sym_GT] = ACTIONS(3619), - [anon_sym_where] = ACTIONS(3612), - [anon_sym_QMARK] = ACTIONS(3619), - [anon_sym_notnull] = ACTIONS(3612), - [anon_sym_unmanaged] = ACTIONS(3612), - [anon_sym_BANG] = ACTIONS(3619), - [anon_sym_PLUS_PLUS] = ACTIONS(3616), - [anon_sym_DASH_DASH] = ACTIONS(3616), - [anon_sym_PLUS] = ACTIONS(3619), - [anon_sym_DASH] = ACTIONS(3619), - [anon_sym_STAR] = ACTIONS(3619), - [anon_sym_SLASH] = ACTIONS(3619), - [anon_sym_PERCENT] = ACTIONS(3619), - [anon_sym_CARET] = ACTIONS(3619), - [anon_sym_PIPE] = ACTIONS(3619), - [anon_sym_AMP] = ACTIONS(3619), - [anon_sym_LT_LT] = ACTIONS(3619), - [anon_sym_GT_GT] = ACTIONS(3619), - [anon_sym_GT_GT_GT] = ACTIONS(3619), - [anon_sym_EQ_EQ] = ACTIONS(3616), - [anon_sym_BANG_EQ] = ACTIONS(3616), - [anon_sym_GT_EQ] = ACTIONS(3616), - [anon_sym_LT_EQ] = ACTIONS(3616), - [anon_sym_DOT] = ACTIONS(3619), - [anon_sym_scoped] = ACTIONS(3612), - [anon_sym_EQ_GT] = ACTIONS(3616), - [anon_sym_COLON_COLON] = ACTIONS(3445), - [anon_sym_var] = ACTIONS(3612), - [anon_sym_yield] = ACTIONS(3612), - [anon_sym_switch] = ACTIONS(3619), - [anon_sym_when] = ACTIONS(3612), - [sym_discard] = ACTIONS(3626), - [anon_sym_DOT_DOT] = ACTIONS(3616), - [anon_sym_and] = ACTIONS(3619), - [anon_sym_or] = ACTIONS(3619), - [anon_sym_PLUS_EQ] = ACTIONS(3445), - [anon_sym_DASH_EQ] = ACTIONS(3445), - [anon_sym_STAR_EQ] = ACTIONS(3445), - [anon_sym_SLASH_EQ] = ACTIONS(3445), - [anon_sym_PERCENT_EQ] = ACTIONS(3445), - [anon_sym_AMP_EQ] = ACTIONS(3445), - [anon_sym_CARET_EQ] = ACTIONS(3445), - [anon_sym_PIPE_EQ] = ACTIONS(3445), - [anon_sym_LT_LT_EQ] = ACTIONS(3445), - [anon_sym_GT_GT_EQ] = ACTIONS(3445), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3445), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3445), - [anon_sym_AMP_AMP] = ACTIONS(3616), - [anon_sym_PIPE_PIPE] = ACTIONS(3616), - [anon_sym_QMARK_QMARK] = ACTIONS(3619), - [anon_sym_from] = ACTIONS(3612), - [anon_sym_into] = ACTIONS(3612), - [anon_sym_join] = ACTIONS(3612), - [anon_sym_on] = ACTIONS(3612), - [anon_sym_equals] = ACTIONS(3612), - [anon_sym_let] = ACTIONS(3612), - [anon_sym_orderby] = ACTIONS(3612), - [anon_sym_ascending] = ACTIONS(3612), - [anon_sym_descending] = ACTIONS(3612), - [anon_sym_group] = ACTIONS(3612), - [anon_sym_by] = ACTIONS(3612), - [anon_sym_select] = ACTIONS(3612), - [anon_sym_as] = ACTIONS(3619), - [anon_sym_is] = ACTIONS(3619), - [anon_sym_DASH_GT] = ACTIONS(3616), - [anon_sym_with] = ACTIONS(3619), + [sym__identifier_token] = ACTIONS(3638), + [anon_sym_alias] = ACTIONS(3638), + [anon_sym_global] = ACTIONS(3638), + [anon_sym_EQ] = ACTIONS(3806), + [anon_sym_LBRACK] = ACTIONS(3640), + [anon_sym_COLON] = ACTIONS(3804), + [anon_sym_COMMA] = ACTIONS(3844), + [anon_sym_LPAREN] = ACTIONS(3640), + [anon_sym_RPAREN] = ACTIONS(3844), + [anon_sym_LBRACE] = ACTIONS(3640), + [anon_sym_file] = ACTIONS(3638), + [anon_sym_LT] = ACTIONS(3648), + [anon_sym_GT] = ACTIONS(3638), + [anon_sym_where] = ACTIONS(3638), + [anon_sym_QMARK] = ACTIONS(3638), + [anon_sym_notnull] = ACTIONS(3638), + [anon_sym_unmanaged] = ACTIONS(3638), + [anon_sym_BANG] = ACTIONS(3638), + [anon_sym_PLUS_PLUS] = ACTIONS(3640), + [anon_sym_DASH_DASH] = ACTIONS(3640), + [anon_sym_PLUS] = ACTIONS(3638), + [anon_sym_DASH] = ACTIONS(3638), + [anon_sym_STAR] = ACTIONS(3638), + [anon_sym_SLASH] = ACTIONS(3638), + [anon_sym_PERCENT] = ACTIONS(3638), + [anon_sym_CARET] = ACTIONS(3638), + [anon_sym_PIPE] = ACTIONS(3638), + [anon_sym_AMP] = ACTIONS(3638), + [anon_sym_LT_LT] = ACTIONS(3638), + [anon_sym_GT_GT] = ACTIONS(3638), + [anon_sym_GT_GT_GT] = ACTIONS(3638), + [anon_sym_EQ_EQ] = ACTIONS(3640), + [anon_sym_BANG_EQ] = ACTIONS(3640), + [anon_sym_GT_EQ] = ACTIONS(3640), + [anon_sym_LT_EQ] = ACTIONS(3640), + [anon_sym_DOT] = ACTIONS(3638), + [anon_sym_scoped] = ACTIONS(3638), + [anon_sym_EQ_GT] = ACTIONS(3651), + [anon_sym_COLON_COLON] = ACTIONS(3653), + [anon_sym_var] = ACTIONS(3638), + [anon_sym_yield] = ACTIONS(3638), + [anon_sym_switch] = ACTIONS(3638), + [anon_sym_when] = ACTIONS(3638), + [sym_discard] = ACTIONS(3638), + [anon_sym_DOT_DOT] = ACTIONS(3640), + [anon_sym_and] = ACTIONS(3638), + [anon_sym_or] = ACTIONS(3638), + [anon_sym_PLUS_EQ] = ACTIONS(3640), + [anon_sym_DASH_EQ] = ACTIONS(3640), + [anon_sym_STAR_EQ] = ACTIONS(3640), + [anon_sym_SLASH_EQ] = ACTIONS(3640), + [anon_sym_PERCENT_EQ] = ACTIONS(3640), + [anon_sym_AMP_EQ] = ACTIONS(3640), + [anon_sym_CARET_EQ] = ACTIONS(3640), + [anon_sym_PIPE_EQ] = ACTIONS(3640), + [anon_sym_LT_LT_EQ] = ACTIONS(3640), + [anon_sym_GT_GT_EQ] = ACTIONS(3640), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3640), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3640), + [anon_sym_AMP_AMP] = ACTIONS(3640), + [anon_sym_PIPE_PIPE] = ACTIONS(3640), + [anon_sym_QMARK_QMARK] = ACTIONS(3638), + [anon_sym_from] = ACTIONS(3638), + [anon_sym_into] = ACTIONS(3638), + [anon_sym_join] = ACTIONS(3638), + [anon_sym_on] = ACTIONS(3638), + [anon_sym_equals] = ACTIONS(3638), + [anon_sym_let] = ACTIONS(3638), + [anon_sym_orderby] = ACTIONS(3638), + [anon_sym_ascending] = ACTIONS(3638), + [anon_sym_descending] = ACTIONS(3638), + [anon_sym_group] = ACTIONS(3638), + [anon_sym_by] = ACTIONS(3638), + [anon_sym_select] = ACTIONS(3638), + [anon_sym_as] = ACTIONS(3638), + [anon_sym_is] = ACTIONS(3638), + [anon_sym_DASH_GT] = ACTIONS(3640), + [anon_sym_with] = ACTIONS(3638), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -402464,7 +402198,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2222] = { - [sym_type_argument_list] = STATE(2183), + [sym__variable_designation] = STATE(4145), + [sym_parenthesized_variable_designation] = STATE(4116), + [sym_identifier] = STATE(4152), + [sym__reserved_identifier] = STATE(2900), [sym_preproc_region] = STATE(2222), [sym_preproc_endregion] = STATE(2222), [sym_preproc_line] = STATE(2222), @@ -402474,84 +402211,81 @@ 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(3660), - [anon_sym_alias] = ACTIONS(3660), - [anon_sym_global] = ACTIONS(3660), - [anon_sym_EQ] = ACTIONS(3826), - [anon_sym_LBRACK] = ACTIONS(3662), - [anon_sym_COLON] = ACTIONS(3786), - [anon_sym_COMMA] = ACTIONS(3850), - [anon_sym_LPAREN] = ACTIONS(3662), - [anon_sym_RPAREN] = ACTIONS(3850), - [anon_sym_LBRACE] = ACTIONS(3662), - [anon_sym_file] = ACTIONS(3660), - [anon_sym_LT] = ACTIONS(3664), - [anon_sym_GT] = ACTIONS(3660), - [anon_sym_where] = ACTIONS(3660), - [anon_sym_QMARK] = ACTIONS(3660), - [anon_sym_notnull] = ACTIONS(3660), - [anon_sym_unmanaged] = ACTIONS(3660), - [anon_sym_BANG] = ACTIONS(3660), - [anon_sym_PLUS_PLUS] = ACTIONS(3662), - [anon_sym_DASH_DASH] = ACTIONS(3662), - [anon_sym_PLUS] = ACTIONS(3660), - [anon_sym_DASH] = ACTIONS(3660), - [anon_sym_STAR] = ACTIONS(3660), - [anon_sym_SLASH] = ACTIONS(3660), - [anon_sym_PERCENT] = ACTIONS(3660), - [anon_sym_CARET] = ACTIONS(3660), - [anon_sym_PIPE] = ACTIONS(3660), - [anon_sym_AMP] = ACTIONS(3660), - [anon_sym_LT_LT] = ACTIONS(3660), - [anon_sym_GT_GT] = ACTIONS(3660), - [anon_sym_GT_GT_GT] = ACTIONS(3660), - [anon_sym_EQ_EQ] = ACTIONS(3662), - [anon_sym_BANG_EQ] = ACTIONS(3662), - [anon_sym_GT_EQ] = ACTIONS(3662), - [anon_sym_LT_EQ] = ACTIONS(3662), - [anon_sym_DOT] = ACTIONS(3660), - [anon_sym_scoped] = ACTIONS(3660), - [anon_sym_EQ_GT] = ACTIONS(3667), - [anon_sym_COLON_COLON] = ACTIONS(3669), - [anon_sym_var] = ACTIONS(3660), - [anon_sym_yield] = ACTIONS(3660), - [anon_sym_switch] = ACTIONS(3660), - [anon_sym_when] = ACTIONS(3660), - [sym_discard] = ACTIONS(3660), - [anon_sym_DOT_DOT] = ACTIONS(3662), - [anon_sym_and] = ACTIONS(3660), - [anon_sym_or] = ACTIONS(3660), - [anon_sym_PLUS_EQ] = ACTIONS(3662), - [anon_sym_DASH_EQ] = ACTIONS(3662), - [anon_sym_STAR_EQ] = ACTIONS(3662), - [anon_sym_SLASH_EQ] = ACTIONS(3662), - [anon_sym_PERCENT_EQ] = ACTIONS(3662), - [anon_sym_AMP_EQ] = ACTIONS(3662), - [anon_sym_CARET_EQ] = ACTIONS(3662), - [anon_sym_PIPE_EQ] = ACTIONS(3662), - [anon_sym_LT_LT_EQ] = ACTIONS(3662), - [anon_sym_GT_GT_EQ] = ACTIONS(3662), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3662), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3662), - [anon_sym_AMP_AMP] = ACTIONS(3662), - [anon_sym_PIPE_PIPE] = ACTIONS(3662), - [anon_sym_QMARK_QMARK] = ACTIONS(3660), - [anon_sym_from] = ACTIONS(3660), - [anon_sym_into] = ACTIONS(3660), - [anon_sym_join] = ACTIONS(3660), - [anon_sym_on] = ACTIONS(3660), - [anon_sym_equals] = ACTIONS(3660), - [anon_sym_let] = ACTIONS(3660), - [anon_sym_orderby] = ACTIONS(3660), - [anon_sym_ascending] = ACTIONS(3660), - [anon_sym_descending] = ACTIONS(3660), - [anon_sym_group] = ACTIONS(3660), - [anon_sym_by] = ACTIONS(3660), - [anon_sym_select] = ACTIONS(3660), - [anon_sym_as] = ACTIONS(3660), - [anon_sym_is] = ACTIONS(3660), - [anon_sym_DASH_GT] = ACTIONS(3662), - [anon_sym_with] = ACTIONS(3660), + [sym__identifier_token] = ACTIONS(3847), + [anon_sym_alias] = ACTIONS(3851), + [anon_sym_global] = ACTIONS(3851), + [anon_sym_EQ] = ACTIONS(3431), + [anon_sym_LBRACK] = ACTIONS(3600), + [anon_sym_LPAREN] = ACTIONS(3831), + [anon_sym_LBRACE] = ACTIONS(3600), + [anon_sym_file] = ACTIONS(3851), + [anon_sym_LT] = ACTIONS(3603), + [anon_sym_GT] = ACTIONS(3603), + [anon_sym_where] = ACTIONS(3851), + [anon_sym_QMARK] = ACTIONS(3603), + [anon_sym_notnull] = ACTIONS(3851), + [anon_sym_unmanaged] = ACTIONS(3851), + [anon_sym_BANG] = ACTIONS(3603), + [anon_sym_PLUS_PLUS] = ACTIONS(3600), + [anon_sym_DASH_DASH] = ACTIONS(3600), + [anon_sym_PLUS] = ACTIONS(3603), + [anon_sym_DASH] = ACTIONS(3603), + [anon_sym_STAR] = ACTIONS(3603), + [anon_sym_SLASH] = ACTIONS(3603), + [anon_sym_PERCENT] = ACTIONS(3603), + [anon_sym_CARET] = ACTIONS(3603), + [anon_sym_PIPE] = ACTIONS(3603), + [anon_sym_AMP] = ACTIONS(3603), + [anon_sym_LT_LT] = ACTIONS(3603), + [anon_sym_GT_GT] = ACTIONS(3603), + [anon_sym_GT_GT_GT] = ACTIONS(3603), + [anon_sym_EQ_EQ] = ACTIONS(3600), + [anon_sym_BANG_EQ] = ACTIONS(3600), + [anon_sym_GT_EQ] = ACTIONS(3600), + [anon_sym_LT_EQ] = ACTIONS(3600), + [anon_sym_DOT] = ACTIONS(3603), + [anon_sym_scoped] = ACTIONS(3851), + [anon_sym_EQ_GT] = ACTIONS(3429), + [anon_sym_COLON_COLON] = ACTIONS(3429), + [anon_sym_var] = ACTIONS(3851), + [anon_sym_yield] = ACTIONS(3851), + [anon_sym_switch] = ACTIONS(3603), + [anon_sym_when] = ACTIONS(3851), + [sym_discard] = ACTIONS(3835), + [anon_sym_DOT_DOT] = ACTIONS(3600), + [anon_sym_and] = ACTIONS(3603), + [anon_sym_or] = ACTIONS(3603), + [anon_sym_PLUS_EQ] = ACTIONS(3429), + [anon_sym_DASH_EQ] = ACTIONS(3429), + [anon_sym_STAR_EQ] = ACTIONS(3429), + [anon_sym_SLASH_EQ] = ACTIONS(3429), + [anon_sym_PERCENT_EQ] = ACTIONS(3429), + [anon_sym_AMP_EQ] = ACTIONS(3429), + [anon_sym_CARET_EQ] = ACTIONS(3429), + [anon_sym_PIPE_EQ] = ACTIONS(3429), + [anon_sym_LT_LT_EQ] = ACTIONS(3429), + [anon_sym_GT_GT_EQ] = ACTIONS(3429), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3429), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3429), + [anon_sym_AMP_AMP] = ACTIONS(3600), + [anon_sym_PIPE_PIPE] = ACTIONS(3600), + [anon_sym_QMARK_QMARK] = ACTIONS(3603), + [anon_sym_from] = ACTIONS(3851), + [anon_sym_into] = ACTIONS(3851), + [anon_sym_join] = ACTIONS(3851), + [anon_sym_on] = ACTIONS(3851), + [anon_sym_equals] = ACTIONS(3851), + [anon_sym_let] = ACTIONS(3851), + [anon_sym_orderby] = ACTIONS(3851), + [anon_sym_ascending] = ACTIONS(3851), + [anon_sym_descending] = ACTIONS(3851), + [anon_sym_group] = ACTIONS(3851), + [anon_sym_by] = ACTIONS(3851), + [anon_sym_select] = ACTIONS(3851), + [anon_sym_as] = ACTIONS(3603), + [anon_sym_is] = ACTIONS(3603), + [anon_sym_DASH_GT] = ACTIONS(3600), + [anon_sym_with] = ACTIONS(3603), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -402564,10 +402298,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2223] = { - [sym__variable_designation] = STATE(4162), - [sym_parenthesized_variable_designation] = STATE(4173), - [sym_identifier] = STATE(4177), - [sym__reserved_identifier] = STATE(2945), [sym_preproc_region] = STATE(2223), [sym_preproc_endregion] = STATE(2223), [sym_preproc_line] = STATE(2223), @@ -402577,81 +402307,84 @@ 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(3853), - [anon_sym_alias] = ACTIONS(3857), - [anon_sym_global] = ACTIONS(3857), - [anon_sym_EQ] = ACTIONS(3447), - [anon_sym_LBRACK] = ACTIONS(3616), - [anon_sym_LPAREN] = ACTIONS(3842), - [anon_sym_LBRACE] = ACTIONS(3616), - [anon_sym_file] = ACTIONS(3857), - [anon_sym_LT] = ACTIONS(3619), - [anon_sym_GT] = ACTIONS(3619), - [anon_sym_where] = ACTIONS(3857), - [anon_sym_QMARK] = ACTIONS(3619), - [anon_sym_notnull] = ACTIONS(3857), - [anon_sym_unmanaged] = ACTIONS(3857), - [anon_sym_BANG] = ACTIONS(3619), - [anon_sym_PLUS_PLUS] = ACTIONS(3616), - [anon_sym_DASH_DASH] = ACTIONS(3616), - [anon_sym_PLUS] = ACTIONS(3619), - [anon_sym_DASH] = ACTIONS(3619), - [anon_sym_STAR] = ACTIONS(3619), - [anon_sym_SLASH] = ACTIONS(3619), - [anon_sym_PERCENT] = ACTIONS(3619), - [anon_sym_CARET] = ACTIONS(3619), - [anon_sym_PIPE] = ACTIONS(3619), - [anon_sym_AMP] = ACTIONS(3619), - [anon_sym_LT_LT] = ACTIONS(3619), - [anon_sym_GT_GT] = ACTIONS(3619), - [anon_sym_GT_GT_GT] = ACTIONS(3619), - [anon_sym_EQ_EQ] = ACTIONS(3616), - [anon_sym_BANG_EQ] = ACTIONS(3616), - [anon_sym_GT_EQ] = ACTIONS(3616), - [anon_sym_LT_EQ] = ACTIONS(3616), - [anon_sym_DOT] = ACTIONS(3619), - [anon_sym_scoped] = ACTIONS(3857), - [anon_sym_EQ_GT] = ACTIONS(3445), - [anon_sym_COLON_COLON] = ACTIONS(3445), - [anon_sym_var] = ACTIONS(3857), - [anon_sym_yield] = ACTIONS(3857), - [anon_sym_switch] = ACTIONS(3619), - [anon_sym_when] = ACTIONS(3857), - [sym_discard] = ACTIONS(3846), - [anon_sym_DOT_DOT] = ACTIONS(3616), - [anon_sym_and] = ACTIONS(3619), - [anon_sym_or] = ACTIONS(3619), - [anon_sym_PLUS_EQ] = ACTIONS(3445), - [anon_sym_DASH_EQ] = ACTIONS(3445), - [anon_sym_STAR_EQ] = ACTIONS(3445), - [anon_sym_SLASH_EQ] = ACTIONS(3445), - [anon_sym_PERCENT_EQ] = ACTIONS(3445), - [anon_sym_AMP_EQ] = ACTIONS(3445), - [anon_sym_CARET_EQ] = ACTIONS(3445), - [anon_sym_PIPE_EQ] = ACTIONS(3445), - [anon_sym_LT_LT_EQ] = ACTIONS(3445), - [anon_sym_GT_GT_EQ] = ACTIONS(3445), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3445), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3445), - [anon_sym_AMP_AMP] = ACTIONS(3616), - [anon_sym_PIPE_PIPE] = ACTIONS(3616), - [anon_sym_QMARK_QMARK] = ACTIONS(3619), - [anon_sym_from] = ACTIONS(3857), - [anon_sym_into] = ACTIONS(3857), - [anon_sym_join] = ACTIONS(3857), - [anon_sym_on] = ACTIONS(3857), - [anon_sym_equals] = ACTIONS(3857), - [anon_sym_let] = ACTIONS(3857), - [anon_sym_orderby] = ACTIONS(3857), - [anon_sym_ascending] = ACTIONS(3857), - [anon_sym_descending] = ACTIONS(3857), - [anon_sym_group] = ACTIONS(3857), - [anon_sym_by] = ACTIONS(3857), - [anon_sym_select] = ACTIONS(3857), - [anon_sym_as] = ACTIONS(3619), - [anon_sym_is] = ACTIONS(3619), - [anon_sym_DASH_GT] = ACTIONS(3616), - [anon_sym_with] = ACTIONS(3619), + [sym__identifier_token] = ACTIONS(3691), + [anon_sym_alias] = ACTIONS(3691), + [anon_sym_global] = ACTIONS(3691), + [anon_sym_EQ] = ACTIONS(3696), + [anon_sym_LBRACK] = ACTIONS(3713), + [anon_sym_COLON] = ACTIONS(3711), + [anon_sym_COMMA] = ACTIONS(3713), + [anon_sym_RBRACK] = ACTIONS(3713), + [anon_sym_LPAREN] = ACTIONS(3713), + [anon_sym_RPAREN] = ACTIONS(3711), + [anon_sym_LBRACE] = ACTIONS(3702), + [anon_sym_RBRACE] = ACTIONS(3713), + [anon_sym_file] = ACTIONS(3691), + [anon_sym_LT] = ACTIONS(3696), + [anon_sym_GT] = ACTIONS(3696), + [anon_sym_where] = ACTIONS(3691), + [anon_sym_QMARK] = ACTIONS(3716), + [anon_sym_notnull] = ACTIONS(3691), + [anon_sym_unmanaged] = ACTIONS(3691), + [anon_sym_BANG] = ACTIONS(3696), + [anon_sym_PLUS_PLUS] = ACTIONS(3711), + [anon_sym_DASH_DASH] = ACTIONS(3711), + [anon_sym_PLUS] = ACTIONS(3696), + [anon_sym_DASH] = ACTIONS(3696), + [anon_sym_STAR] = ACTIONS(3716), + [anon_sym_SLASH] = ACTIONS(3696), + [anon_sym_PERCENT] = ACTIONS(3696), + [anon_sym_CARET] = ACTIONS(3696), + [anon_sym_PIPE] = ACTIONS(3696), + [anon_sym_AMP] = ACTIONS(3696), + [anon_sym_LT_LT] = ACTIONS(3696), + [anon_sym_GT_GT] = ACTIONS(3696), + [anon_sym_GT_GT_GT] = ACTIONS(3696), + [anon_sym_EQ_EQ] = ACTIONS(3711), + [anon_sym_BANG_EQ] = ACTIONS(3711), + [anon_sym_GT_EQ] = ACTIONS(3711), + [anon_sym_LT_EQ] = ACTIONS(3711), + [anon_sym_DOT] = ACTIONS(3716), + [anon_sym_scoped] = ACTIONS(3691), + [anon_sym_var] = ACTIONS(3691), + [anon_sym_yield] = ACTIONS(3691), + [anon_sym_switch] = ACTIONS(3696), + [anon_sym_when] = ACTIONS(3691), + [sym_discard] = ACTIONS(3691), + [anon_sym_DOT_DOT] = ACTIONS(3711), + [anon_sym_and] = ACTIONS(3691), + [anon_sym_or] = ACTIONS(3691), + [anon_sym_PLUS_EQ] = ACTIONS(3711), + [anon_sym_DASH_EQ] = ACTIONS(3711), + [anon_sym_STAR_EQ] = ACTIONS(3711), + [anon_sym_SLASH_EQ] = ACTIONS(3711), + [anon_sym_PERCENT_EQ] = ACTIONS(3711), + [anon_sym_AMP_EQ] = ACTIONS(3711), + [anon_sym_CARET_EQ] = ACTIONS(3711), + [anon_sym_PIPE_EQ] = ACTIONS(3711), + [anon_sym_LT_LT_EQ] = ACTIONS(3711), + [anon_sym_GT_GT_EQ] = ACTIONS(3711), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3711), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3711), + [anon_sym_AMP_AMP] = ACTIONS(3711), + [anon_sym_PIPE_PIPE] = ACTIONS(3711), + [anon_sym_QMARK_QMARK] = ACTIONS(3696), + [anon_sym_from] = ACTIONS(3691), + [anon_sym_into] = ACTIONS(3691), + [anon_sym_join] = ACTIONS(3691), + [anon_sym_on] = ACTIONS(3691), + [anon_sym_equals] = ACTIONS(3691), + [anon_sym_let] = ACTIONS(3691), + [anon_sym_orderby] = ACTIONS(3691), + [anon_sym_ascending] = ACTIONS(3691), + [anon_sym_descending] = ACTIONS(3691), + [anon_sym_group] = ACTIONS(3691), + [anon_sym_by] = ACTIONS(3691), + [anon_sym_select] = ACTIONS(3691), + [anon_sym_as] = ACTIONS(3696), + [anon_sym_is] = ACTIONS(3696), + [anon_sym_DASH_GT] = ACTIONS(3713), + [anon_sym_with] = ACTIONS(3696), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -402664,15 +402397,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2224] = { - [sym__name] = STATE(3522), - [sym_alias_qualified_name] = STATE(2921), - [sym__simple_name] = STATE(2921), - [sym_qualified_name] = STATE(2921), - [sym_generic_name] = STATE(2929), - [sym_ref_type] = STATE(2922), - [sym__scoped_base_type] = STATE(2924), - [sym_identifier] = STATE(3260), - [sym__reserved_identifier] = STATE(2904), [sym_preproc_region] = STATE(2224), [sym_preproc_endregion] = STATE(2224), [sym_preproc_line] = STATE(2224), @@ -402682,76 +402406,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(3861), - [anon_sym_alias] = ACTIONS(3863), - [anon_sym_SEMI] = ACTIONS(3445), - [anon_sym_global] = ACTIONS(3863), - [anon_sym_LBRACK] = ACTIONS(3445), - [anon_sym_COLON] = ACTIONS(3447), - [anon_sym_COMMA] = ACTIONS(3445), - [anon_sym_RBRACK] = ACTIONS(3445), - [anon_sym_LPAREN] = ACTIONS(3445), - [anon_sym_RPAREN] = ACTIONS(3445), - [anon_sym_ref] = ACTIONS(3865), - [anon_sym_LBRACE] = ACTIONS(3445), - [anon_sym_RBRACE] = ACTIONS(3445), - [anon_sym_file] = ACTIONS(3863), - [anon_sym_LT] = ACTIONS(3447), - [anon_sym_GT] = ACTIONS(3447), - [anon_sym_in] = ACTIONS(3447), - [anon_sym_where] = ACTIONS(3863), - [anon_sym_QMARK] = ACTIONS(3447), - [anon_sym_notnull] = ACTIONS(3863), - [anon_sym_unmanaged] = ACTIONS(3863), - [anon_sym_BANG] = ACTIONS(3447), - [anon_sym_PLUS_PLUS] = ACTIONS(3445), - [anon_sym_DASH_DASH] = ACTIONS(3445), - [anon_sym_PLUS] = ACTIONS(3447), - [anon_sym_DASH] = ACTIONS(3447), - [anon_sym_STAR] = ACTIONS(3445), - [anon_sym_SLASH] = ACTIONS(3447), - [anon_sym_PERCENT] = ACTIONS(3445), - [anon_sym_CARET] = ACTIONS(3445), - [anon_sym_PIPE] = ACTIONS(3447), - [anon_sym_AMP] = ACTIONS(3447), - [anon_sym_LT_LT] = ACTIONS(3445), - [anon_sym_GT_GT] = ACTIONS(3447), - [anon_sym_GT_GT_GT] = ACTIONS(3445), - [anon_sym_EQ_EQ] = ACTIONS(3445), - [anon_sym_BANG_EQ] = ACTIONS(3445), - [anon_sym_GT_EQ] = ACTIONS(3445), - [anon_sym_LT_EQ] = ACTIONS(3445), - [anon_sym_DOT] = ACTIONS(3447), - [anon_sym_scoped] = ACTIONS(3863), - [anon_sym_EQ_GT] = ACTIONS(3445), - [anon_sym_COLON_COLON] = ACTIONS(3445), - [anon_sym_var] = ACTIONS(3863), - [anon_sym_yield] = ACTIONS(3863), - [anon_sym_switch] = ACTIONS(3447), - [anon_sym_when] = ACTIONS(3863), - [anon_sym_DOT_DOT] = ACTIONS(3445), - [anon_sym_AMP_AMP] = ACTIONS(3445), - [anon_sym_PIPE_PIPE] = ACTIONS(3445), - [anon_sym_QMARK_QMARK] = ACTIONS(3445), - [anon_sym_from] = ACTIONS(3863), - [anon_sym_into] = ACTIONS(3867), - [anon_sym_join] = ACTIONS(3863), - [anon_sym_on] = ACTIONS(3863), - [anon_sym_equals] = ACTIONS(3863), - [anon_sym_let] = ACTIONS(3863), - [anon_sym_orderby] = ACTIONS(3863), - [anon_sym_ascending] = ACTIONS(3863), - [anon_sym_descending] = ACTIONS(3863), - [anon_sym_group] = ACTIONS(3863), - [anon_sym_by] = ACTIONS(3863), - [anon_sym_select] = ACTIONS(3863), - [anon_sym_as] = ACTIONS(3447), - [anon_sym_is] = ACTIONS(3447), - [anon_sym_DASH_GT] = ACTIONS(3445), - [anon_sym_with] = ACTIONS(3447), - [aux_sym_preproc_if_token3] = ACTIONS(3445), - [aux_sym_preproc_else_token1] = ACTIONS(3445), - [aux_sym_preproc_elif_token1] = ACTIONS(3445), + [sym__identifier_token] = ACTIONS(3691), + [anon_sym_alias] = ACTIONS(3691), + [anon_sym_global] = ACTIONS(3691), + [anon_sym_EQ] = ACTIONS(3696), + [anon_sym_LBRACK] = ACTIONS(3713), + [anon_sym_COLON] = ACTIONS(3711), + [anon_sym_COMMA] = ACTIONS(3698), + [anon_sym_RBRACK] = ACTIONS(3698), + [anon_sym_LPAREN] = ACTIONS(3713), + [anon_sym_RPAREN] = ACTIONS(3698), + [anon_sym_LBRACE] = ACTIONS(3702), + [anon_sym_RBRACE] = ACTIONS(3698), + [anon_sym_file] = ACTIONS(3691), + [anon_sym_LT] = ACTIONS(3696), + [anon_sym_GT] = ACTIONS(3696), + [anon_sym_where] = ACTIONS(3691), + [anon_sym_QMARK] = ACTIONS(3716), + [anon_sym_notnull] = ACTIONS(3691), + [anon_sym_unmanaged] = ACTIONS(3691), + [anon_sym_BANG] = ACTIONS(3696), + [anon_sym_PLUS_PLUS] = ACTIONS(3711), + [anon_sym_DASH_DASH] = ACTIONS(3711), + [anon_sym_PLUS] = ACTIONS(3696), + [anon_sym_DASH] = ACTIONS(3696), + [anon_sym_STAR] = ACTIONS(3716), + [anon_sym_SLASH] = ACTIONS(3696), + [anon_sym_PERCENT] = ACTIONS(3696), + [anon_sym_CARET] = ACTIONS(3696), + [anon_sym_PIPE] = ACTIONS(3696), + [anon_sym_AMP] = ACTIONS(3696), + [anon_sym_LT_LT] = ACTIONS(3696), + [anon_sym_GT_GT] = ACTIONS(3696), + [anon_sym_GT_GT_GT] = ACTIONS(3696), + [anon_sym_EQ_EQ] = ACTIONS(3711), + [anon_sym_BANG_EQ] = ACTIONS(3711), + [anon_sym_GT_EQ] = ACTIONS(3711), + [anon_sym_LT_EQ] = ACTIONS(3711), + [anon_sym_DOT] = ACTIONS(3716), + [anon_sym_scoped] = ACTIONS(3691), + [anon_sym_var] = ACTIONS(3691), + [anon_sym_yield] = ACTIONS(3691), + [anon_sym_switch] = ACTIONS(3696), + [anon_sym_when] = ACTIONS(3691), + [sym_discard] = ACTIONS(3691), + [anon_sym_DOT_DOT] = ACTIONS(3711), + [anon_sym_and] = ACTIONS(3708), + [anon_sym_or] = ACTIONS(3708), + [anon_sym_PLUS_EQ] = ACTIONS(3711), + [anon_sym_DASH_EQ] = ACTIONS(3711), + [anon_sym_STAR_EQ] = ACTIONS(3711), + [anon_sym_SLASH_EQ] = ACTIONS(3711), + [anon_sym_PERCENT_EQ] = ACTIONS(3711), + [anon_sym_AMP_EQ] = ACTIONS(3711), + [anon_sym_CARET_EQ] = ACTIONS(3711), + [anon_sym_PIPE_EQ] = ACTIONS(3711), + [anon_sym_LT_LT_EQ] = ACTIONS(3711), + [anon_sym_GT_GT_EQ] = ACTIONS(3711), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3711), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3711), + [anon_sym_AMP_AMP] = ACTIONS(3711), + [anon_sym_PIPE_PIPE] = ACTIONS(3711), + [anon_sym_QMARK_QMARK] = ACTIONS(3696), + [anon_sym_from] = ACTIONS(3691), + [anon_sym_into] = ACTIONS(3691), + [anon_sym_join] = ACTIONS(3691), + [anon_sym_on] = ACTIONS(3691), + [anon_sym_equals] = ACTIONS(3691), + [anon_sym_let] = ACTIONS(3691), + [anon_sym_orderby] = ACTIONS(3691), + [anon_sym_ascending] = ACTIONS(3691), + [anon_sym_descending] = ACTIONS(3691), + [anon_sym_group] = ACTIONS(3691), + [anon_sym_by] = ACTIONS(3691), + [anon_sym_select] = ACTIONS(3691), + [anon_sym_as] = ACTIONS(3696), + [anon_sym_is] = ACTIONS(3696), + [anon_sym_DASH_GT] = ACTIONS(3713), + [anon_sym_with] = ACTIONS(3696), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -402773,85 +402505,84 @@ 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(3699), - [anon_sym_alias] = ACTIONS(3699), - [anon_sym_global] = ACTIONS(3699), - [anon_sym_EQ] = ACTIONS(3704), - [anon_sym_LBRACK] = ACTIONS(3721), - [anon_sym_COLON] = ACTIONS(3719), - [anon_sym_COMMA] = ACTIONS(3710), - [anon_sym_RBRACK] = ACTIONS(3710), - [anon_sym_LPAREN] = ACTIONS(3721), - [anon_sym_RPAREN] = ACTIONS(3719), - [anon_sym_LBRACE] = ACTIONS(3710), - [anon_sym_RBRACE] = ACTIONS(3710), - [anon_sym_file] = ACTIONS(3699), - [anon_sym_LT] = ACTIONS(3704), - [anon_sym_GT] = ACTIONS(3704), - [anon_sym_where] = ACTIONS(3699), - [anon_sym_QMARK] = ACTIONS(3724), - [anon_sym_notnull] = ACTIONS(3699), - [anon_sym_unmanaged] = ACTIONS(3699), - [anon_sym_BANG] = ACTIONS(3704), - [anon_sym_PLUS_PLUS] = ACTIONS(3719), - [anon_sym_DASH_DASH] = ACTIONS(3719), - [anon_sym_PLUS] = ACTIONS(3704), - [anon_sym_DASH] = ACTIONS(3704), - [anon_sym_STAR] = ACTIONS(3724), - [anon_sym_SLASH] = ACTIONS(3704), - [anon_sym_PERCENT] = ACTIONS(3704), - [anon_sym_CARET] = ACTIONS(3704), - [anon_sym_PIPE] = ACTIONS(3704), - [anon_sym_AMP] = ACTIONS(3704), - [anon_sym_LT_LT] = ACTIONS(3704), - [anon_sym_GT_GT] = ACTIONS(3704), - [anon_sym_GT_GT_GT] = ACTIONS(3704), - [anon_sym_EQ_EQ] = ACTIONS(3719), - [anon_sym_BANG_EQ] = ACTIONS(3719), - [anon_sym_GT_EQ] = ACTIONS(3719), - [anon_sym_LT_EQ] = ACTIONS(3719), - [anon_sym_DOT] = ACTIONS(3724), - [anon_sym_scoped] = ACTIONS(3699), - [anon_sym_EQ_GT] = ACTIONS(3710), - [anon_sym_var] = ACTIONS(3699), - [anon_sym_yield] = ACTIONS(3699), - [anon_sym_switch] = ACTIONS(3704), - [anon_sym_when] = ACTIONS(3699), - [sym_discard] = ACTIONS(3699), - [anon_sym_DOT_DOT] = ACTIONS(3719), - [anon_sym_and] = ACTIONS(3699), - [anon_sym_or] = ACTIONS(3699), - [anon_sym_PLUS_EQ] = ACTIONS(3719), - [anon_sym_DASH_EQ] = ACTIONS(3719), - [anon_sym_STAR_EQ] = ACTIONS(3719), - [anon_sym_SLASH_EQ] = ACTIONS(3719), - [anon_sym_PERCENT_EQ] = ACTIONS(3719), - [anon_sym_AMP_EQ] = ACTIONS(3719), - [anon_sym_CARET_EQ] = ACTIONS(3719), - [anon_sym_PIPE_EQ] = ACTIONS(3719), - [anon_sym_LT_LT_EQ] = ACTIONS(3719), - [anon_sym_GT_GT_EQ] = ACTIONS(3719), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3719), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3719), - [anon_sym_AMP_AMP] = ACTIONS(3719), - [anon_sym_PIPE_PIPE] = ACTIONS(3719), - [anon_sym_QMARK_QMARK] = ACTIONS(3704), - [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_ascending] = ACTIONS(3699), - [anon_sym_descending] = ACTIONS(3699), - [anon_sym_group] = ACTIONS(3699), - [anon_sym_by] = ACTIONS(3699), - [anon_sym_select] = ACTIONS(3699), - [anon_sym_as] = ACTIONS(3704), - [anon_sym_is] = ACTIONS(3704), - [anon_sym_DASH_GT] = ACTIONS(3721), - [anon_sym_with] = ACTIONS(3704), + [sym__identifier_token] = ACTIONS(3691), + [anon_sym_alias] = ACTIONS(3691), + [anon_sym_global] = ACTIONS(3691), + [anon_sym_EQ] = ACTIONS(3696), + [anon_sym_LBRACK] = ACTIONS(3713), + [anon_sym_COLON] = ACTIONS(3711), + [anon_sym_COMMA] = ACTIONS(3693), + [anon_sym_RBRACK] = ACTIONS(3693), + [anon_sym_LPAREN] = ACTIONS(3713), + [anon_sym_RPAREN] = ACTIONS(3693), + [anon_sym_LBRACE] = ACTIONS(3702), + [anon_sym_RBRACE] = ACTIONS(3693), + [anon_sym_file] = ACTIONS(3691), + [anon_sym_LT] = ACTIONS(3696), + [anon_sym_GT] = ACTIONS(3696), + [anon_sym_where] = ACTIONS(3691), + [anon_sym_QMARK] = ACTIONS(3716), + [anon_sym_notnull] = ACTIONS(3691), + [anon_sym_unmanaged] = ACTIONS(3691), + [anon_sym_BANG] = ACTIONS(3696), + [anon_sym_PLUS_PLUS] = ACTIONS(3711), + [anon_sym_DASH_DASH] = ACTIONS(3711), + [anon_sym_PLUS] = ACTIONS(3696), + [anon_sym_DASH] = ACTIONS(3696), + [anon_sym_STAR] = ACTIONS(3716), + [anon_sym_SLASH] = ACTIONS(3696), + [anon_sym_PERCENT] = ACTIONS(3696), + [anon_sym_CARET] = ACTIONS(3696), + [anon_sym_PIPE] = ACTIONS(3696), + [anon_sym_AMP] = ACTIONS(3696), + [anon_sym_LT_LT] = ACTIONS(3696), + [anon_sym_GT_GT] = ACTIONS(3696), + [anon_sym_GT_GT_GT] = ACTIONS(3696), + [anon_sym_EQ_EQ] = ACTIONS(3711), + [anon_sym_BANG_EQ] = ACTIONS(3711), + [anon_sym_GT_EQ] = ACTIONS(3711), + [anon_sym_LT_EQ] = ACTIONS(3711), + [anon_sym_DOT] = ACTIONS(3716), + [anon_sym_scoped] = ACTIONS(3691), + [anon_sym_var] = ACTIONS(3691), + [anon_sym_yield] = ACTIONS(3691), + [anon_sym_switch] = ACTIONS(3696), + [anon_sym_when] = ACTIONS(3691), + [sym_discard] = ACTIONS(3691), + [anon_sym_DOT_DOT] = ACTIONS(3711), + [anon_sym_and] = ACTIONS(3708), + [anon_sym_or] = ACTIONS(3708), + [anon_sym_PLUS_EQ] = ACTIONS(3711), + [anon_sym_DASH_EQ] = ACTIONS(3711), + [anon_sym_STAR_EQ] = ACTIONS(3711), + [anon_sym_SLASH_EQ] = ACTIONS(3711), + [anon_sym_PERCENT_EQ] = ACTIONS(3711), + [anon_sym_AMP_EQ] = ACTIONS(3711), + [anon_sym_CARET_EQ] = ACTIONS(3711), + [anon_sym_PIPE_EQ] = ACTIONS(3711), + [anon_sym_LT_LT_EQ] = ACTIONS(3711), + [anon_sym_GT_GT_EQ] = ACTIONS(3711), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3711), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3711), + [anon_sym_AMP_AMP] = ACTIONS(3711), + [anon_sym_PIPE_PIPE] = ACTIONS(3711), + [anon_sym_QMARK_QMARK] = ACTIONS(3696), + [anon_sym_from] = ACTIONS(3691), + [anon_sym_into] = ACTIONS(3691), + [anon_sym_join] = ACTIONS(3691), + [anon_sym_on] = ACTIONS(3691), + [anon_sym_equals] = ACTIONS(3691), + [anon_sym_let] = ACTIONS(3691), + [anon_sym_orderby] = ACTIONS(3691), + [anon_sym_ascending] = ACTIONS(3691), + [anon_sym_descending] = ACTIONS(3691), + [anon_sym_group] = ACTIONS(3691), + [anon_sym_by] = ACTIONS(3691), + [anon_sym_select] = ACTIONS(3691), + [anon_sym_as] = ACTIONS(3696), + [anon_sym_is] = ACTIONS(3696), + [anon_sym_DASH_GT] = ACTIONS(3713), + [anon_sym_with] = ACTIONS(3696), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -402864,7 +402595,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2226] = { - [sym_type_argument_list] = STATE(2270), [sym_preproc_region] = STATE(2226), [sym_preproc_endregion] = STATE(2226), [sym_preproc_line] = STATE(2226), @@ -402874,94 +402604,94 @@ 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(3660), - [anon_sym_alias] = ACTIONS(3660), - [anon_sym_global] = ACTIONS(3660), - [anon_sym_EQ] = ACTIONS(3660), - [anon_sym_LBRACK] = ACTIONS(3662), - [anon_sym_COLON] = ACTIONS(3660), - [anon_sym_COMMA] = ACTIONS(3662), - [anon_sym_LPAREN] = ACTIONS(3662), - [anon_sym_LBRACE] = ACTIONS(3662), - [anon_sym_file] = ACTIONS(3660), - [anon_sym_LT] = ACTIONS(3870), - [anon_sym_GT] = ACTIONS(3660), - [anon_sym_where] = ACTIONS(3660), - [anon_sym_QMARK] = ACTIONS(3660), - [anon_sym_notnull] = ACTIONS(3660), - [anon_sym_unmanaged] = ACTIONS(3660), - [anon_sym_BANG] = ACTIONS(3660), - [anon_sym_PLUS_PLUS] = ACTIONS(3662), - [anon_sym_DASH_DASH] = ACTIONS(3662), - [anon_sym_PLUS] = ACTIONS(3660), - [anon_sym_DASH] = ACTIONS(3660), - [anon_sym_STAR] = ACTIONS(3660), - [anon_sym_SLASH] = ACTIONS(3660), - [anon_sym_PERCENT] = ACTIONS(3660), - [anon_sym_CARET] = ACTIONS(3660), - [anon_sym_PIPE] = ACTIONS(3660), - [anon_sym_AMP] = ACTIONS(3660), - [anon_sym_LT_LT] = ACTIONS(3660), - [anon_sym_GT_GT] = ACTIONS(3660), - [anon_sym_GT_GT_GT] = ACTIONS(3660), - [anon_sym_EQ_EQ] = ACTIONS(3662), - [anon_sym_BANG_EQ] = ACTIONS(3662), - [anon_sym_GT_EQ] = ACTIONS(3662), - [anon_sym_LT_EQ] = ACTIONS(3662), - [anon_sym_DOT] = ACTIONS(3660), - [anon_sym_scoped] = ACTIONS(3660), - [anon_sym_EQ_GT] = ACTIONS(3667), - [anon_sym_COLON_COLON] = ACTIONS(3873), - [anon_sym_var] = ACTIONS(3660), - [anon_sym_yield] = ACTIONS(3660), - [anon_sym_switch] = ACTIONS(3660), - [anon_sym_when] = ACTIONS(3660), - [sym_discard] = ACTIONS(3660), - [anon_sym_DOT_DOT] = ACTIONS(3662), - [anon_sym_and] = ACTIONS(3660), - [anon_sym_or] = ACTIONS(3660), - [anon_sym_PLUS_EQ] = ACTIONS(3662), - [anon_sym_DASH_EQ] = ACTIONS(3662), - [anon_sym_STAR_EQ] = ACTIONS(3662), - [anon_sym_SLASH_EQ] = ACTIONS(3662), - [anon_sym_PERCENT_EQ] = ACTIONS(3662), - [anon_sym_AMP_EQ] = ACTIONS(3662), - [anon_sym_CARET_EQ] = ACTIONS(3662), - [anon_sym_PIPE_EQ] = ACTIONS(3662), - [anon_sym_LT_LT_EQ] = ACTIONS(3662), - [anon_sym_GT_GT_EQ] = ACTIONS(3662), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3662), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3662), - [anon_sym_AMP_AMP] = ACTIONS(3662), - [anon_sym_PIPE_PIPE] = ACTIONS(3662), - [anon_sym_QMARK_QMARK] = ACTIONS(3660), - [anon_sym_from] = ACTIONS(3660), - [anon_sym_into] = ACTIONS(3660), - [anon_sym_join] = ACTIONS(3660), - [anon_sym_on] = ACTIONS(3660), - [anon_sym_equals] = ACTIONS(3660), - [anon_sym_let] = ACTIONS(3660), - [anon_sym_orderby] = ACTIONS(3660), - [anon_sym_ascending] = ACTIONS(3660), - [anon_sym_descending] = ACTIONS(3660), - [anon_sym_group] = ACTIONS(3660), - [anon_sym_by] = ACTIONS(3660), - [anon_sym_select] = ACTIONS(3660), - [anon_sym_as] = ACTIONS(3660), - [anon_sym_is] = ACTIONS(3660), - [anon_sym_DASH_GT] = ACTIONS(3662), - [anon_sym_with] = ACTIONS(3660), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_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(3662), + [sym__identifier_token] = ACTIONS(3431), + [anon_sym_alias] = ACTIONS(3431), + [anon_sym_global] = ACTIONS(3431), + [anon_sym_EQ] = ACTIONS(3431), + [anon_sym_LBRACK] = ACTIONS(3429), + [anon_sym_COLON] = ACTIONS(3431), + [anon_sym_COMMA] = ACTIONS(3429), + [anon_sym_LPAREN] = ACTIONS(3429), + [anon_sym_LBRACE] = ACTIONS(3429), + [anon_sym_file] = ACTIONS(3431), + [anon_sym_LT] = ACTIONS(3431), + [anon_sym_GT] = ACTIONS(3431), + [anon_sym_where] = ACTIONS(3431), + [anon_sym_QMARK] = ACTIONS(3431), + [anon_sym_notnull] = ACTIONS(3431), + [anon_sym_unmanaged] = ACTIONS(3431), + [anon_sym_BANG] = ACTIONS(3431), + [anon_sym_PLUS_PLUS] = ACTIONS(3429), + [anon_sym_DASH_DASH] = ACTIONS(3429), + [anon_sym_PLUS] = ACTIONS(3431), + [anon_sym_DASH] = ACTIONS(3431), + [anon_sym_STAR] = ACTIONS(3431), + [anon_sym_SLASH] = ACTIONS(3431), + [anon_sym_PERCENT] = ACTIONS(3431), + [anon_sym_CARET] = ACTIONS(3431), + [anon_sym_PIPE] = ACTIONS(3431), + [anon_sym_AMP] = ACTIONS(3431), + [anon_sym_LT_LT] = ACTIONS(3431), + [anon_sym_GT_GT] = ACTIONS(3431), + [anon_sym_GT_GT_GT] = ACTIONS(3431), + [anon_sym_EQ_EQ] = ACTIONS(3429), + [anon_sym_BANG_EQ] = ACTIONS(3429), + [anon_sym_GT_EQ] = ACTIONS(3429), + [anon_sym_LT_EQ] = ACTIONS(3429), + [anon_sym_DOT] = ACTIONS(3431), + [anon_sym_scoped] = ACTIONS(3431), + [anon_sym_EQ_GT] = ACTIONS(3429), + [anon_sym_COLON_COLON] = ACTIONS(3429), + [anon_sym_var] = ACTIONS(3431), + [anon_sym_yield] = ACTIONS(3431), + [anon_sym_switch] = ACTIONS(3431), + [anon_sym_when] = ACTIONS(3431), + [sym_discard] = ACTIONS(3431), + [anon_sym_DOT_DOT] = ACTIONS(3429), + [anon_sym_and] = ACTIONS(3431), + [anon_sym_or] = ACTIONS(3431), + [anon_sym_PLUS_EQ] = ACTIONS(3429), + [anon_sym_DASH_EQ] = ACTIONS(3429), + [anon_sym_STAR_EQ] = ACTIONS(3429), + [anon_sym_SLASH_EQ] = ACTIONS(3429), + [anon_sym_PERCENT_EQ] = ACTIONS(3429), + [anon_sym_AMP_EQ] = ACTIONS(3429), + [anon_sym_CARET_EQ] = ACTIONS(3429), + [anon_sym_PIPE_EQ] = ACTIONS(3429), + [anon_sym_LT_LT_EQ] = ACTIONS(3429), + [anon_sym_GT_GT_EQ] = ACTIONS(3429), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3429), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3429), + [anon_sym_AMP_AMP] = ACTIONS(3429), + [anon_sym_PIPE_PIPE] = ACTIONS(3429), + [anon_sym_QMARK_QMARK] = 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), + [anon_sym_as] = ACTIONS(3431), + [anon_sym_is] = ACTIONS(3431), + [anon_sym_DASH_GT] = ACTIONS(3429), + [anon_sym_with] = ACTIONS(3431), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_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(3429), }, [2227] = { [sym_preproc_region] = STATE(2227), @@ -402973,85 +402703,83 @@ 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(3619), - [anon_sym_alias] = ACTIONS(3619), - [anon_sym_global] = ACTIONS(3619), - [anon_sym_EQ] = ACTIONS(3447), - [anon_sym_LBRACK] = ACTIONS(3445), - [anon_sym_COLON] = ACTIONS(3447), - [anon_sym_COMMA] = ACTIONS(3616), - [anon_sym_LPAREN] = ACTIONS(3616), - [anon_sym_RPAREN] = ACTIONS(3616), - [anon_sym_LBRACE] = ACTIONS(3616), - [anon_sym_RBRACE] = ACTIONS(3616), - [anon_sym_file] = ACTIONS(3619), - [anon_sym_LT] = ACTIONS(3447), - [anon_sym_GT] = ACTIONS(3447), - [anon_sym_where] = ACTIONS(3619), - [anon_sym_QMARK] = ACTIONS(3447), - [anon_sym_notnull] = ACTIONS(3619), - [anon_sym_unmanaged] = ACTIONS(3619), - [anon_sym_BANG] = ACTIONS(3447), - [anon_sym_PLUS_PLUS] = ACTIONS(3445), - [anon_sym_DASH_DASH] = ACTIONS(3445), - [anon_sym_PLUS] = ACTIONS(3447), - [anon_sym_DASH] = ACTIONS(3447), - [anon_sym_STAR] = ACTIONS(3447), - [anon_sym_SLASH] = ACTIONS(3447), - [anon_sym_PERCENT] = ACTIONS(3447), - [anon_sym_CARET] = ACTIONS(3447), - [anon_sym_PIPE] = ACTIONS(3447), - [anon_sym_AMP] = ACTIONS(3447), - [anon_sym_LT_LT] = ACTIONS(3447), - [anon_sym_GT_GT] = ACTIONS(3447), - [anon_sym_GT_GT_GT] = ACTIONS(3447), - [anon_sym_EQ_EQ] = ACTIONS(3445), - [anon_sym_BANG_EQ] = ACTIONS(3445), - [anon_sym_GT_EQ] = ACTIONS(3445), - [anon_sym_LT_EQ] = ACTIONS(3445), - [anon_sym_DOT] = ACTIONS(3447), - [anon_sym_scoped] = ACTIONS(3619), - [anon_sym_EQ_GT] = ACTIONS(3445), - [anon_sym_COLON_COLON] = ACTIONS(3445), - [anon_sym_var] = ACTIONS(3619), - [anon_sym_yield] = ACTIONS(3619), - [anon_sym_switch] = ACTIONS(3447), - [anon_sym_when] = ACTIONS(3619), - [sym_discard] = ACTIONS(3619), - [anon_sym_DOT_DOT] = ACTIONS(3445), - [anon_sym_and] = ACTIONS(3619), - [anon_sym_or] = ACTIONS(3619), - [anon_sym_PLUS_EQ] = ACTIONS(3445), - [anon_sym_DASH_EQ] = ACTIONS(3445), - [anon_sym_STAR_EQ] = ACTIONS(3445), - [anon_sym_SLASH_EQ] = ACTIONS(3445), - [anon_sym_PERCENT_EQ] = ACTIONS(3445), - [anon_sym_AMP_EQ] = ACTIONS(3445), - [anon_sym_CARET_EQ] = ACTIONS(3445), - [anon_sym_PIPE_EQ] = ACTIONS(3445), - [anon_sym_LT_LT_EQ] = ACTIONS(3445), - [anon_sym_GT_GT_EQ] = ACTIONS(3445), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3445), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3445), - [anon_sym_AMP_AMP] = ACTIONS(3445), - [anon_sym_PIPE_PIPE] = ACTIONS(3445), - [anon_sym_QMARK_QMARK] = ACTIONS(3447), - [anon_sym_from] = ACTIONS(3619), - [anon_sym_into] = ACTIONS(3619), - [anon_sym_join] = ACTIONS(3619), - [anon_sym_on] = ACTIONS(3619), - [anon_sym_equals] = ACTIONS(3619), - [anon_sym_let] = ACTIONS(3619), - [anon_sym_orderby] = ACTIONS(3619), - [anon_sym_ascending] = ACTIONS(3619), - [anon_sym_descending] = ACTIONS(3619), - [anon_sym_group] = ACTIONS(3619), - [anon_sym_by] = ACTIONS(3619), - [anon_sym_select] = ACTIONS(3619), - [anon_sym_as] = ACTIONS(3447), - [anon_sym_is] = ACTIONS(3447), - [anon_sym_DASH_GT] = ACTIONS(3445), - [anon_sym_with] = ACTIONS(3447), + [sym__identifier_token] = ACTIONS(3603), + [anon_sym_alias] = ACTIONS(3603), + [anon_sym_global] = ACTIONS(3603), + [anon_sym_EQ] = ACTIONS(3431), + [anon_sym_LBRACK] = ACTIONS(3600), + [anon_sym_COLON] = ACTIONS(3603), + [anon_sym_COMMA] = ACTIONS(3600), + [anon_sym_LPAREN] = ACTIONS(3600), + [anon_sym_LBRACE] = ACTIONS(3600), + [anon_sym_file] = ACTIONS(3603), + [anon_sym_LT] = ACTIONS(3603), + [anon_sym_GT] = ACTIONS(3603), + [anon_sym_where] = ACTIONS(3603), + [anon_sym_QMARK] = ACTIONS(3603), + [anon_sym_notnull] = ACTIONS(3603), + [anon_sym_unmanaged] = ACTIONS(3603), + [anon_sym_BANG] = ACTIONS(3603), + [anon_sym_PLUS_PLUS] = ACTIONS(3600), + [anon_sym_DASH_DASH] = ACTIONS(3600), + [anon_sym_PLUS] = ACTIONS(3603), + [anon_sym_DASH] = ACTIONS(3603), + [anon_sym_STAR] = ACTIONS(3603), + [anon_sym_SLASH] = ACTIONS(3603), + [anon_sym_PERCENT] = ACTIONS(3603), + [anon_sym_CARET] = ACTIONS(3603), + [anon_sym_PIPE] = ACTIONS(3603), + [anon_sym_AMP] = ACTIONS(3603), + [anon_sym_LT_LT] = ACTIONS(3603), + [anon_sym_GT_GT] = ACTIONS(3603), + [anon_sym_GT_GT_GT] = ACTIONS(3603), + [anon_sym_EQ_EQ] = ACTIONS(3600), + [anon_sym_BANG_EQ] = ACTIONS(3600), + [anon_sym_GT_EQ] = ACTIONS(3600), + [anon_sym_LT_EQ] = ACTIONS(3600), + [anon_sym_DOT] = ACTIONS(3603), + [anon_sym_scoped] = ACTIONS(3603), + [anon_sym_EQ_GT] = ACTIONS(3429), + [anon_sym_COLON_COLON] = ACTIONS(3429), + [anon_sym_var] = ACTIONS(3603), + [anon_sym_yield] = ACTIONS(3603), + [anon_sym_switch] = ACTIONS(3603), + [anon_sym_when] = ACTIONS(3603), + [sym_discard] = ACTIONS(3603), + [anon_sym_DOT_DOT] = ACTIONS(3600), + [anon_sym_and] = ACTIONS(3603), + [anon_sym_or] = ACTIONS(3603), + [anon_sym_PLUS_EQ] = ACTIONS(3429), + [anon_sym_DASH_EQ] = ACTIONS(3429), + [anon_sym_STAR_EQ] = ACTIONS(3429), + [anon_sym_SLASH_EQ] = ACTIONS(3429), + [anon_sym_PERCENT_EQ] = ACTIONS(3429), + [anon_sym_AMP_EQ] = ACTIONS(3429), + [anon_sym_CARET_EQ] = ACTIONS(3429), + [anon_sym_PIPE_EQ] = ACTIONS(3429), + [anon_sym_LT_LT_EQ] = ACTIONS(3429), + [anon_sym_GT_GT_EQ] = ACTIONS(3429), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3429), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3429), + [anon_sym_AMP_AMP] = ACTIONS(3600), + [anon_sym_PIPE_PIPE] = ACTIONS(3600), + [anon_sym_QMARK_QMARK] = ACTIONS(3603), + [anon_sym_from] = ACTIONS(3603), + [anon_sym_into] = ACTIONS(3603), + [anon_sym_join] = ACTIONS(3603), + [anon_sym_on] = ACTIONS(3603), + [anon_sym_equals] = ACTIONS(3603), + [anon_sym_let] = ACTIONS(3603), + [anon_sym_orderby] = ACTIONS(3603), + [anon_sym_ascending] = ACTIONS(3603), + [anon_sym_descending] = ACTIONS(3603), + [anon_sym_group] = ACTIONS(3603), + [anon_sym_by] = ACTIONS(3603), + [anon_sym_select] = ACTIONS(3603), + [anon_sym_as] = ACTIONS(3603), + [anon_sym_is] = ACTIONS(3603), + [anon_sym_DASH_GT] = ACTIONS(3600), + [anon_sym_with] = ACTIONS(3603), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -403062,8 +402790,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(3600), }, [2228] = { + [sym_parameter_list] = STATE(7531), + [sym_positional_pattern_clause] = STATE(2249), + [sym_property_pattern_clause] = STATE(2304), + [sym__variable_designation] = STATE(3347), + [sym_parenthesized_variable_designation] = STATE(3344), + [sym__lambda_parameters] = STATE(7378), + [sym_identifier] = STATE(3309), + [sym__reserved_identifier] = STATE(3199), [sym_preproc_region] = STATE(2228), [sym_preproc_endregion] = STATE(2228), [sym_preproc_line] = STATE(2228), @@ -403073,85 +402810,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2228), [sym_preproc_define] = STATE(2228), [sym_preproc_undef] = STATE(2228), - [sym__identifier_token] = ACTIONS(3685), - [anon_sym_alias] = ACTIONS(3685), - [anon_sym_global] = ACTIONS(3685), - [anon_sym_EQ] = ACTIONS(3689), - [anon_sym_LBRACK] = ACTIONS(3691), - [anon_sym_COLON] = ACTIONS(3697), - [anon_sym_COMMA] = ACTIONS(3687), - [anon_sym_RBRACK] = ACTIONS(3687), - [anon_sym_LPAREN] = ACTIONS(3691), - [anon_sym_RPAREN] = ACTIONS(3697), - [anon_sym_LBRACE] = ACTIONS(3687), - [anon_sym_RBRACE] = ACTIONS(3687), - [anon_sym_file] = ACTIONS(3685), - [anon_sym_LT] = ACTIONS(3689), - [anon_sym_GT] = ACTIONS(3689), - [anon_sym_where] = ACTIONS(3685), - [anon_sym_QMARK] = ACTIONS(3694), - [anon_sym_notnull] = ACTIONS(3685), - [anon_sym_unmanaged] = ACTIONS(3685), - [anon_sym_BANG] = ACTIONS(3689), - [anon_sym_PLUS_PLUS] = ACTIONS(3697), - [anon_sym_DASH_DASH] = ACTIONS(3697), - [anon_sym_PLUS] = ACTIONS(3689), - [anon_sym_DASH] = ACTIONS(3689), - [anon_sym_STAR] = ACTIONS(3694), - [anon_sym_SLASH] = ACTIONS(3689), - [anon_sym_PERCENT] = ACTIONS(3689), - [anon_sym_CARET] = ACTIONS(3689), - [anon_sym_PIPE] = ACTIONS(3689), - [anon_sym_AMP] = ACTIONS(3689), - [anon_sym_LT_LT] = ACTIONS(3689), - [anon_sym_GT_GT] = ACTIONS(3689), - [anon_sym_GT_GT_GT] = ACTIONS(3689), - [anon_sym_EQ_EQ] = ACTIONS(3697), - [anon_sym_BANG_EQ] = ACTIONS(3697), - [anon_sym_GT_EQ] = ACTIONS(3697), - [anon_sym_LT_EQ] = ACTIONS(3697), - [anon_sym_DOT] = ACTIONS(3694), - [anon_sym_scoped] = ACTIONS(3685), - [anon_sym_EQ_GT] = ACTIONS(3687), - [anon_sym_var] = ACTIONS(3685), - [anon_sym_yield] = ACTIONS(3685), - [anon_sym_switch] = ACTIONS(3689), - [anon_sym_when] = ACTIONS(3685), - [sym_discard] = ACTIONS(3685), - [anon_sym_DOT_DOT] = ACTIONS(3697), - [anon_sym_and] = ACTIONS(3685), - [anon_sym_or] = ACTIONS(3685), - [anon_sym_PLUS_EQ] = ACTIONS(3697), - [anon_sym_DASH_EQ] = ACTIONS(3697), - [anon_sym_STAR_EQ] = ACTIONS(3697), - [anon_sym_SLASH_EQ] = ACTIONS(3697), - [anon_sym_PERCENT_EQ] = ACTIONS(3697), - [anon_sym_AMP_EQ] = ACTIONS(3697), - [anon_sym_CARET_EQ] = ACTIONS(3697), - [anon_sym_PIPE_EQ] = ACTIONS(3697), - [anon_sym_LT_LT_EQ] = ACTIONS(3697), - [anon_sym_GT_GT_EQ] = ACTIONS(3697), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3697), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3697), - [anon_sym_AMP_AMP] = ACTIONS(3697), - [anon_sym_PIPE_PIPE] = ACTIONS(3697), - [anon_sym_QMARK_QMARK] = ACTIONS(3689), - [anon_sym_from] = ACTIONS(3685), - [anon_sym_into] = ACTIONS(3685), - [anon_sym_join] = ACTIONS(3685), - [anon_sym_on] = ACTIONS(3685), - [anon_sym_equals] = ACTIONS(3685), - [anon_sym_let] = ACTIONS(3685), - [anon_sym_orderby] = ACTIONS(3685), - [anon_sym_ascending] = ACTIONS(3685), - [anon_sym_descending] = ACTIONS(3685), - [anon_sym_group] = ACTIONS(3685), - [anon_sym_by] = ACTIONS(3685), - [anon_sym_select] = ACTIONS(3685), - [anon_sym_as] = ACTIONS(3689), - [anon_sym_is] = ACTIONS(3689), - [anon_sym_DASH_GT] = ACTIONS(3691), - [anon_sym_with] = ACTIONS(3689), + [sym__identifier_token] = ACTIONS(3855), + [anon_sym_alias] = ACTIONS(3857), + [anon_sym_SEMI] = ACTIONS(3859), + [anon_sym_global] = ACTIONS(3857), + [anon_sym_LBRACK] = ACTIONS(3859), + [anon_sym_COLON] = ACTIONS(3859), + [anon_sym_COMMA] = ACTIONS(3859), + [anon_sym_RBRACK] = ACTIONS(3859), + [anon_sym_LPAREN] = ACTIONS(3859), + [anon_sym_RPAREN] = ACTIONS(3859), + [anon_sym_LBRACE] = ACTIONS(3861), + [anon_sym_RBRACE] = ACTIONS(3859), + [anon_sym_file] = ACTIONS(3857), + [anon_sym_LT] = ACTIONS(3863), + [anon_sym_GT] = ACTIONS(3863), + [anon_sym_in] = ACTIONS(3863), + [anon_sym_where] = ACTIONS(3857), + [anon_sym_QMARK] = ACTIONS(3863), + [anon_sym_notnull] = ACTIONS(3857), + [anon_sym_unmanaged] = ACTIONS(3857), + [anon_sym_BANG] = ACTIONS(3863), + [anon_sym_PLUS_PLUS] = ACTIONS(3859), + [anon_sym_DASH_DASH] = ACTIONS(3859), + [anon_sym_PLUS] = ACTIONS(3863), + [anon_sym_DASH] = ACTIONS(3863), + [anon_sym_STAR] = ACTIONS(3859), + [anon_sym_SLASH] = ACTIONS(3863), + [anon_sym_PERCENT] = ACTIONS(3859), + [anon_sym_CARET] = ACTIONS(3859), + [anon_sym_PIPE] = ACTIONS(3863), + [anon_sym_AMP] = ACTIONS(3863), + [anon_sym_LT_LT] = ACTIONS(3859), + [anon_sym_GT_GT] = ACTIONS(3863), + [anon_sym_GT_GT_GT] = ACTIONS(3859), + [anon_sym_EQ_EQ] = ACTIONS(3859), + [anon_sym_BANG_EQ] = ACTIONS(3859), + [anon_sym_GT_EQ] = ACTIONS(3859), + [anon_sym_LT_EQ] = ACTIONS(3859), + [anon_sym_DOT] = ACTIONS(3863), + [anon_sym_scoped] = ACTIONS(3857), + [anon_sym_var] = ACTIONS(3857), + [anon_sym_yield] = ACTIONS(3857), + [anon_sym_switch] = ACTIONS(3863), + [anon_sym_when] = ACTIONS(3857), + [sym_discard] = ACTIONS(3865), + [anon_sym_DOT_DOT] = ACTIONS(3859), + [anon_sym_and] = ACTIONS(3863), + [anon_sym_or] = ACTIONS(3863), + [anon_sym_AMP_AMP] = ACTIONS(3859), + [anon_sym_PIPE_PIPE] = ACTIONS(3859), + [anon_sym_QMARK_QMARK] = ACTIONS(3859), + [anon_sym_from] = ACTIONS(3857), + [anon_sym_into] = ACTIONS(3863), + [anon_sym_join] = ACTIONS(3857), + [anon_sym_on] = ACTIONS(3857), + [anon_sym_equals] = ACTIONS(3857), + [anon_sym_let] = ACTIONS(3857), + [anon_sym_orderby] = ACTIONS(3857), + [anon_sym_ascending] = ACTIONS(3857), + [anon_sym_descending] = ACTIONS(3857), + [anon_sym_group] = ACTIONS(3857), + [anon_sym_by] = ACTIONS(3857), + [anon_sym_select] = ACTIONS(3857), + [anon_sym_as] = ACTIONS(3863), + [anon_sym_is] = ACTIONS(3863), + [anon_sym_DASH_GT] = ACTIONS(3859), + [anon_sym_with] = ACTIONS(3863), + [aux_sym_preproc_if_token3] = ACTIONS(3859), + [aux_sym_preproc_else_token1] = ACTIONS(3859), + [aux_sym_preproc_elif_token1] = ACTIONS(3859), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -403164,7 +402892,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2229] = { - [sym_type_argument_list] = STATE(2183), [sym_preproc_region] = STATE(2229), [sym_preproc_endregion] = STATE(2229), [sym_preproc_line] = STATE(2229), @@ -403174,96 +402901,104 @@ 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(3660), - [anon_sym_alias] = ACTIONS(3660), - [anon_sym_global] = ACTIONS(3660), - [anon_sym_EQ] = ACTIONS(3826), - [anon_sym_LBRACK] = ACTIONS(3662), - [anon_sym_COLON] = ACTIONS(3786), - [anon_sym_COMMA] = ACTIONS(3829), - [anon_sym_LPAREN] = ACTIONS(3662), - [anon_sym_RPAREN] = ACTIONS(3829), - [anon_sym_LBRACE] = ACTIONS(3662), - [anon_sym_file] = ACTIONS(3660), - [anon_sym_LT] = ACTIONS(3664), - [anon_sym_GT] = ACTIONS(3660), - [anon_sym_where] = ACTIONS(3660), - [anon_sym_QMARK] = ACTIONS(3660), - [anon_sym_notnull] = ACTIONS(3660), - [anon_sym_unmanaged] = ACTIONS(3660), - [anon_sym_BANG] = ACTIONS(3660), - [anon_sym_PLUS_PLUS] = ACTIONS(3662), - [anon_sym_DASH_DASH] = ACTIONS(3662), - [anon_sym_PLUS] = ACTIONS(3660), - [anon_sym_DASH] = ACTIONS(3660), - [anon_sym_STAR] = ACTIONS(3660), - [anon_sym_SLASH] = ACTIONS(3660), - [anon_sym_PERCENT] = ACTIONS(3660), - [anon_sym_CARET] = ACTIONS(3660), - [anon_sym_PIPE] = ACTIONS(3660), - [anon_sym_AMP] = ACTIONS(3660), - [anon_sym_LT_LT] = ACTIONS(3660), - [anon_sym_GT_GT] = ACTIONS(3660), - [anon_sym_GT_GT_GT] = ACTIONS(3660), - [anon_sym_EQ_EQ] = ACTIONS(3662), - [anon_sym_BANG_EQ] = ACTIONS(3662), - [anon_sym_GT_EQ] = ACTIONS(3662), - [anon_sym_LT_EQ] = ACTIONS(3662), - [anon_sym_DOT] = ACTIONS(3660), - [anon_sym_scoped] = ACTIONS(3660), - [anon_sym_EQ_GT] = ACTIONS(3667), - [anon_sym_COLON_COLON] = ACTIONS(3669), - [anon_sym_var] = ACTIONS(3660), - [anon_sym_yield] = ACTIONS(3660), - [anon_sym_switch] = ACTIONS(3660), - [anon_sym_when] = ACTIONS(3660), - [sym_discard] = ACTIONS(3660), - [anon_sym_DOT_DOT] = ACTIONS(3662), - [anon_sym_and] = ACTIONS(3660), - [anon_sym_or] = ACTIONS(3660), - [anon_sym_PLUS_EQ] = ACTIONS(3662), - [anon_sym_DASH_EQ] = ACTIONS(3662), - [anon_sym_STAR_EQ] = ACTIONS(3662), - [anon_sym_SLASH_EQ] = ACTIONS(3662), - [anon_sym_PERCENT_EQ] = ACTIONS(3662), - [anon_sym_AMP_EQ] = ACTIONS(3662), - [anon_sym_CARET_EQ] = ACTIONS(3662), - [anon_sym_PIPE_EQ] = ACTIONS(3662), - [anon_sym_LT_LT_EQ] = ACTIONS(3662), - [anon_sym_GT_GT_EQ] = ACTIONS(3662), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3662), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3662), - [anon_sym_AMP_AMP] = ACTIONS(3662), - [anon_sym_PIPE_PIPE] = ACTIONS(3662), - [anon_sym_QMARK_QMARK] = ACTIONS(3660), - [anon_sym_from] = ACTIONS(3660), - [anon_sym_into] = ACTIONS(3660), - [anon_sym_join] = ACTIONS(3660), - [anon_sym_on] = ACTIONS(3660), - [anon_sym_equals] = ACTIONS(3660), - [anon_sym_let] = ACTIONS(3660), - [anon_sym_orderby] = ACTIONS(3660), - [anon_sym_ascending] = ACTIONS(3660), - [anon_sym_descending] = ACTIONS(3660), - [anon_sym_group] = ACTIONS(3660), - [anon_sym_by] = ACTIONS(3660), - [anon_sym_select] = ACTIONS(3660), - [anon_sym_as] = ACTIONS(3660), - [anon_sym_is] = ACTIONS(3660), - [anon_sym_DASH_GT] = ACTIONS(3662), - [anon_sym_with] = ACTIONS(3660), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_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(3634), + [anon_sym_alias] = ACTIONS(3634), + [anon_sym_global] = ACTIONS(3634), + [anon_sym_EQ] = ACTIONS(3634), + [anon_sym_LBRACK] = ACTIONS(3636), + [anon_sym_COLON] = ACTIONS(3634), + [anon_sym_COMMA] = ACTIONS(3636), + [anon_sym_LPAREN] = ACTIONS(3636), + [anon_sym_LBRACE] = ACTIONS(3636), + [anon_sym_file] = ACTIONS(3634), + [anon_sym_LT] = ACTIONS(3634), + [anon_sym_GT] = ACTIONS(3634), + [anon_sym_where] = ACTIONS(3634), + [anon_sym_QMARK] = ACTIONS(3634), + [anon_sym_notnull] = ACTIONS(3634), + [anon_sym_unmanaged] = ACTIONS(3634), + [anon_sym_BANG] = ACTIONS(3634), + [anon_sym_PLUS_PLUS] = ACTIONS(3636), + [anon_sym_DASH_DASH] = ACTIONS(3636), + [anon_sym_PLUS] = ACTIONS(3634), + [anon_sym_DASH] = ACTIONS(3634), + [anon_sym_STAR] = ACTIONS(3634), + [anon_sym_SLASH] = ACTIONS(3634), + [anon_sym_PERCENT] = ACTIONS(3634), + [anon_sym_CARET] = ACTIONS(3634), + [anon_sym_PIPE] = ACTIONS(3634), + [anon_sym_AMP] = ACTIONS(3634), + [anon_sym_LT_LT] = ACTIONS(3634), + [anon_sym_GT_GT] = ACTIONS(3634), + [anon_sym_GT_GT_GT] = ACTIONS(3634), + [anon_sym_EQ_EQ] = ACTIONS(3636), + [anon_sym_BANG_EQ] = ACTIONS(3636), + [anon_sym_GT_EQ] = ACTIONS(3636), + [anon_sym_LT_EQ] = ACTIONS(3636), + [anon_sym_DOT] = ACTIONS(3634), + [anon_sym_scoped] = ACTIONS(3634), + [anon_sym_EQ_GT] = ACTIONS(3636), + [anon_sym_COLON_COLON] = ACTIONS(3636), + [anon_sym_var] = ACTIONS(3634), + [anon_sym_yield] = ACTIONS(3634), + [anon_sym_switch] = ACTIONS(3634), + [anon_sym_when] = ACTIONS(3634), + [sym_discard] = ACTIONS(3634), + [anon_sym_DOT_DOT] = ACTIONS(3636), + [anon_sym_and] = ACTIONS(3634), + [anon_sym_or] = ACTIONS(3634), + [anon_sym_PLUS_EQ] = ACTIONS(3636), + [anon_sym_DASH_EQ] = ACTIONS(3636), + [anon_sym_STAR_EQ] = ACTIONS(3636), + [anon_sym_SLASH_EQ] = ACTIONS(3636), + [anon_sym_PERCENT_EQ] = ACTIONS(3636), + [anon_sym_AMP_EQ] = ACTIONS(3636), + [anon_sym_CARET_EQ] = ACTIONS(3636), + [anon_sym_PIPE_EQ] = ACTIONS(3636), + [anon_sym_LT_LT_EQ] = ACTIONS(3636), + [anon_sym_GT_GT_EQ] = ACTIONS(3636), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3636), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3636), + [anon_sym_AMP_AMP] = ACTIONS(3636), + [anon_sym_PIPE_PIPE] = ACTIONS(3636), + [anon_sym_QMARK_QMARK] = ACTIONS(3634), + [anon_sym_from] = ACTIONS(3634), + [anon_sym_into] = ACTIONS(3634), + [anon_sym_join] = ACTIONS(3634), + [anon_sym_on] = ACTIONS(3634), + [anon_sym_equals] = ACTIONS(3634), + [anon_sym_let] = ACTIONS(3634), + [anon_sym_orderby] = ACTIONS(3634), + [anon_sym_ascending] = ACTIONS(3634), + [anon_sym_descending] = ACTIONS(3634), + [anon_sym_group] = ACTIONS(3634), + [anon_sym_by] = ACTIONS(3634), + [anon_sym_select] = ACTIONS(3634), + [anon_sym_as] = ACTIONS(3634), + [anon_sym_is] = ACTIONS(3634), + [anon_sym_DASH_GT] = ACTIONS(3636), + [anon_sym_with] = ACTIONS(3634), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_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(3636), }, [2230] = { + [sym_parameter_list] = STATE(7531), + [sym_positional_pattern_clause] = STATE(2249), + [sym_property_pattern_clause] = STATE(2304), + [sym__variable_designation] = STATE(3347), + [sym_parenthesized_variable_designation] = STATE(3344), + [sym__lambda_parameters] = STATE(7378), + [sym_identifier] = STATE(3309), + [sym__reserved_identifier] = STATE(3199), [sym_preproc_region] = STATE(2230), [sym_preproc_endregion] = STATE(2230), [sym_preproc_line] = STATE(2230), @@ -403273,84 +403008,76 @@ 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(3699), - [anon_sym_alias] = ACTIONS(3699), - [anon_sym_global] = ACTIONS(3699), - [anon_sym_EQ] = ACTIONS(3704), - [anon_sym_LBRACK] = ACTIONS(3721), - [anon_sym_COLON] = ACTIONS(3719), - [anon_sym_COMMA] = ACTIONS(3701), - [anon_sym_RBRACK] = ACTIONS(3701), - [anon_sym_LPAREN] = ACTIONS(3721), - [anon_sym_RPAREN] = ACTIONS(3701), - [anon_sym_LBRACE] = ACTIONS(3710), - [anon_sym_RBRACE] = ACTIONS(3701), - [anon_sym_file] = ACTIONS(3699), - [anon_sym_LT] = ACTIONS(3704), - [anon_sym_GT] = ACTIONS(3704), - [anon_sym_where] = ACTIONS(3699), - [anon_sym_QMARK] = ACTIONS(3724), - [anon_sym_notnull] = ACTIONS(3699), - [anon_sym_unmanaged] = ACTIONS(3699), - [anon_sym_BANG] = ACTIONS(3704), - [anon_sym_PLUS_PLUS] = ACTIONS(3719), - [anon_sym_DASH_DASH] = ACTIONS(3719), - [anon_sym_PLUS] = ACTIONS(3704), - [anon_sym_DASH] = ACTIONS(3704), - [anon_sym_STAR] = ACTIONS(3724), - [anon_sym_SLASH] = ACTIONS(3704), - [anon_sym_PERCENT] = ACTIONS(3704), - [anon_sym_CARET] = ACTIONS(3704), - [anon_sym_PIPE] = ACTIONS(3704), - [anon_sym_AMP] = ACTIONS(3704), - [anon_sym_LT_LT] = ACTIONS(3704), - [anon_sym_GT_GT] = ACTIONS(3704), - [anon_sym_GT_GT_GT] = ACTIONS(3704), - [anon_sym_EQ_EQ] = ACTIONS(3719), - [anon_sym_BANG_EQ] = ACTIONS(3719), - [anon_sym_GT_EQ] = ACTIONS(3719), - [anon_sym_LT_EQ] = ACTIONS(3719), - [anon_sym_DOT] = ACTIONS(3724), - [anon_sym_scoped] = ACTIONS(3699), - [anon_sym_var] = ACTIONS(3699), - [anon_sym_yield] = ACTIONS(3699), - [anon_sym_switch] = ACTIONS(3704), - [anon_sym_when] = ACTIONS(3699), - [sym_discard] = ACTIONS(3699), - [anon_sym_DOT_DOT] = ACTIONS(3719), - [anon_sym_and] = ACTIONS(3716), - [anon_sym_or] = ACTIONS(3716), - [anon_sym_PLUS_EQ] = ACTIONS(3719), - [anon_sym_DASH_EQ] = ACTIONS(3719), - [anon_sym_STAR_EQ] = ACTIONS(3719), - [anon_sym_SLASH_EQ] = ACTIONS(3719), - [anon_sym_PERCENT_EQ] = ACTIONS(3719), - [anon_sym_AMP_EQ] = ACTIONS(3719), - [anon_sym_CARET_EQ] = ACTIONS(3719), - [anon_sym_PIPE_EQ] = ACTIONS(3719), - [anon_sym_LT_LT_EQ] = ACTIONS(3719), - [anon_sym_GT_GT_EQ] = ACTIONS(3719), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3719), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3719), - [anon_sym_AMP_AMP] = ACTIONS(3719), - [anon_sym_PIPE_PIPE] = ACTIONS(3719), - [anon_sym_QMARK_QMARK] = ACTIONS(3704), - [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_ascending] = ACTIONS(3699), - [anon_sym_descending] = ACTIONS(3699), - [anon_sym_group] = ACTIONS(3699), - [anon_sym_by] = ACTIONS(3699), - [anon_sym_select] = ACTIONS(3699), - [anon_sym_as] = ACTIONS(3704), - [anon_sym_is] = ACTIONS(3704), - [anon_sym_DASH_GT] = ACTIONS(3721), - [anon_sym_with] = ACTIONS(3704), + [sym__identifier_token] = ACTIONS(3855), + [anon_sym_alias] = ACTIONS(3857), + [anon_sym_SEMI] = ACTIONS(3859), + [anon_sym_global] = ACTIONS(3857), + [anon_sym_LBRACK] = ACTIONS(3859), + [anon_sym_COLON] = ACTIONS(3859), + [anon_sym_COMMA] = ACTIONS(3859), + [anon_sym_RBRACK] = ACTIONS(3859), + [anon_sym_LPAREN] = ACTIONS(3859), + [anon_sym_RPAREN] = ACTIONS(3859), + [anon_sym_LBRACE] = ACTIONS(3861), + [anon_sym_RBRACE] = ACTIONS(3859), + [anon_sym_file] = ACTIONS(3857), + [anon_sym_LT] = ACTIONS(3863), + [anon_sym_GT] = ACTIONS(3863), + [anon_sym_in] = ACTIONS(3863), + [anon_sym_where] = ACTIONS(3857), + [anon_sym_QMARK] = ACTIONS(3863), + [anon_sym_notnull] = ACTIONS(3857), + [anon_sym_unmanaged] = ACTIONS(3857), + [anon_sym_BANG] = ACTIONS(3863), + [anon_sym_PLUS_PLUS] = ACTIONS(3859), + [anon_sym_DASH_DASH] = ACTIONS(3859), + [anon_sym_PLUS] = ACTIONS(3863), + [anon_sym_DASH] = ACTIONS(3863), + [anon_sym_STAR] = ACTIONS(3859), + [anon_sym_SLASH] = ACTIONS(3863), + [anon_sym_PERCENT] = ACTIONS(3859), + [anon_sym_CARET] = ACTIONS(3859), + [anon_sym_PIPE] = ACTIONS(3863), + [anon_sym_AMP] = ACTIONS(3863), + [anon_sym_LT_LT] = ACTIONS(3859), + [anon_sym_GT_GT] = ACTIONS(3863), + [anon_sym_GT_GT_GT] = ACTIONS(3859), + [anon_sym_EQ_EQ] = ACTIONS(3859), + [anon_sym_BANG_EQ] = ACTIONS(3859), + [anon_sym_GT_EQ] = ACTIONS(3859), + [anon_sym_LT_EQ] = ACTIONS(3859), + [anon_sym_DOT] = ACTIONS(3863), + [anon_sym_scoped] = ACTIONS(3857), + [anon_sym_var] = ACTIONS(3857), + [anon_sym_yield] = ACTIONS(3857), + [anon_sym_switch] = ACTIONS(3863), + [anon_sym_when] = ACTIONS(3857), + [sym_discard] = ACTIONS(3865), + [anon_sym_DOT_DOT] = ACTIONS(3859), + [anon_sym_and] = ACTIONS(3867), + [anon_sym_or] = ACTIONS(3867), + [anon_sym_AMP_AMP] = ACTIONS(3859), + [anon_sym_PIPE_PIPE] = ACTIONS(3859), + [anon_sym_QMARK_QMARK] = ACTIONS(3859), + [anon_sym_from] = ACTIONS(3857), + [anon_sym_into] = ACTIONS(3863), + [anon_sym_join] = ACTIONS(3857), + [anon_sym_on] = ACTIONS(3857), + [anon_sym_equals] = ACTIONS(3857), + [anon_sym_let] = ACTIONS(3857), + [anon_sym_orderby] = ACTIONS(3857), + [anon_sym_ascending] = ACTIONS(3857), + [anon_sym_descending] = ACTIONS(3857), + [anon_sym_group] = ACTIONS(3857), + [anon_sym_by] = ACTIONS(3857), + [anon_sym_select] = ACTIONS(3857), + [anon_sym_as] = ACTIONS(3863), + [anon_sym_is] = ACTIONS(3863), + [anon_sym_DASH_GT] = ACTIONS(3859), + [anon_sym_with] = ACTIONS(3863), + [aux_sym_preproc_if_token3] = ACTIONS(3859), + [aux_sym_preproc_else_token1] = ACTIONS(3859), + [aux_sym_preproc_elif_token1] = ACTIONS(3859), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -403363,14 +403090,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2231] = { - [sym_parameter_list] = STATE(7311), - [sym_positional_pattern_clause] = STATE(2271), - [sym_property_pattern_clause] = STATE(2294), - [sym__variable_designation] = STATE(3346), - [sym_parenthesized_variable_designation] = STATE(3340), - [sym__lambda_parameters] = STATE(7536), - [sym_identifier] = STATE(3342), - [sym__reserved_identifier] = STATE(3177), [sym_preproc_region] = STATE(2231), [sym_preproc_endregion] = STATE(2231), [sym_preproc_line] = STATE(2231), @@ -403380,76 +403099,84 @@ 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(3875), - [anon_sym_alias] = ACTIONS(3877), - [anon_sym_SEMI] = ACTIONS(3879), - [anon_sym_global] = ACTIONS(3877), - [anon_sym_LBRACK] = ACTIONS(3879), - [anon_sym_COLON] = ACTIONS(3879), - [anon_sym_COMMA] = ACTIONS(3879), - [anon_sym_RBRACK] = ACTIONS(3879), - [anon_sym_LPAREN] = ACTIONS(3879), - [anon_sym_RPAREN] = ACTIONS(3879), - [anon_sym_LBRACE] = ACTIONS(3881), - [anon_sym_RBRACE] = ACTIONS(3879), - [anon_sym_file] = ACTIONS(3877), - [anon_sym_LT] = ACTIONS(3883), - [anon_sym_GT] = ACTIONS(3883), - [anon_sym_in] = ACTIONS(3883), - [anon_sym_where] = ACTIONS(3877), - [anon_sym_QMARK] = ACTIONS(3883), - [anon_sym_notnull] = ACTIONS(3877), - [anon_sym_unmanaged] = ACTIONS(3877), - [anon_sym_BANG] = ACTIONS(3883), - [anon_sym_PLUS_PLUS] = ACTIONS(3879), - [anon_sym_DASH_DASH] = ACTIONS(3879), - [anon_sym_PLUS] = ACTIONS(3883), - [anon_sym_DASH] = ACTIONS(3883), - [anon_sym_STAR] = ACTIONS(3879), - [anon_sym_SLASH] = ACTIONS(3883), - [anon_sym_PERCENT] = ACTIONS(3879), - [anon_sym_CARET] = ACTIONS(3879), - [anon_sym_PIPE] = ACTIONS(3883), - [anon_sym_AMP] = ACTIONS(3883), - [anon_sym_LT_LT] = ACTIONS(3879), - [anon_sym_GT_GT] = ACTIONS(3883), - [anon_sym_GT_GT_GT] = ACTIONS(3879), - [anon_sym_EQ_EQ] = ACTIONS(3879), - [anon_sym_BANG_EQ] = ACTIONS(3879), - [anon_sym_GT_EQ] = ACTIONS(3879), - [anon_sym_LT_EQ] = ACTIONS(3879), - [anon_sym_DOT] = ACTIONS(3883), - [anon_sym_scoped] = ACTIONS(3877), - [anon_sym_var] = ACTIONS(3877), - [anon_sym_yield] = ACTIONS(3877), - [anon_sym_switch] = ACTIONS(3883), - [anon_sym_when] = ACTIONS(3877), - [sym_discard] = ACTIONS(3885), - [anon_sym_DOT_DOT] = ACTIONS(3879), - [anon_sym_and] = ACTIONS(3883), - [anon_sym_or] = ACTIONS(3883), - [anon_sym_AMP_AMP] = ACTIONS(3879), - [anon_sym_PIPE_PIPE] = ACTIONS(3879), - [anon_sym_QMARK_QMARK] = ACTIONS(3879), - [anon_sym_from] = ACTIONS(3877), - [anon_sym_into] = ACTIONS(3883), - [anon_sym_join] = ACTIONS(3877), - [anon_sym_on] = ACTIONS(3877), - [anon_sym_equals] = ACTIONS(3877), - [anon_sym_let] = ACTIONS(3877), - [anon_sym_orderby] = ACTIONS(3877), - [anon_sym_ascending] = ACTIONS(3877), - [anon_sym_descending] = ACTIONS(3877), - [anon_sym_group] = ACTIONS(3877), - [anon_sym_by] = ACTIONS(3877), - [anon_sym_select] = ACTIONS(3877), - [anon_sym_as] = ACTIONS(3883), - [anon_sym_is] = ACTIONS(3883), - [anon_sym_DASH_GT] = ACTIONS(3879), - [anon_sym_with] = ACTIONS(3883), - [aux_sym_preproc_if_token3] = ACTIONS(3879), - [aux_sym_preproc_else_token1] = ACTIONS(3879), - [aux_sym_preproc_elif_token1] = ACTIONS(3879), + [sym__identifier_token] = ACTIONS(3669), + [anon_sym_alias] = ACTIONS(3669), + [anon_sym_global] = ACTIONS(3669), + [anon_sym_EQ] = ACTIONS(3673), + [anon_sym_LBRACK] = ACTIONS(3675), + [anon_sym_COLON] = ACTIONS(3671), + [anon_sym_COMMA] = ACTIONS(3675), + [anon_sym_RBRACK] = ACTIONS(3675), + [anon_sym_LPAREN] = ACTIONS(3675), + [anon_sym_RPAREN] = ACTIONS(3671), + [anon_sym_LBRACE] = ACTIONS(3678), + [anon_sym_RBRACE] = ACTIONS(3675), + [anon_sym_file] = ACTIONS(3669), + [anon_sym_LT] = ACTIONS(3673), + [anon_sym_GT] = ACTIONS(3673), + [anon_sym_where] = ACTIONS(3669), + [anon_sym_QMARK] = ACTIONS(3680), + [anon_sym_notnull] = ACTIONS(3669), + [anon_sym_unmanaged] = ACTIONS(3669), + [anon_sym_BANG] = ACTIONS(3673), + [anon_sym_PLUS_PLUS] = ACTIONS(3671), + [anon_sym_DASH_DASH] = ACTIONS(3671), + [anon_sym_PLUS] = ACTIONS(3673), + [anon_sym_DASH] = ACTIONS(3673), + [anon_sym_STAR] = ACTIONS(3680), + [anon_sym_SLASH] = ACTIONS(3673), + [anon_sym_PERCENT] = ACTIONS(3673), + [anon_sym_CARET] = ACTIONS(3673), + [anon_sym_PIPE] = ACTIONS(3673), + [anon_sym_AMP] = ACTIONS(3673), + [anon_sym_LT_LT] = ACTIONS(3673), + [anon_sym_GT_GT] = ACTIONS(3673), + [anon_sym_GT_GT_GT] = ACTIONS(3673), + [anon_sym_EQ_EQ] = ACTIONS(3671), + [anon_sym_BANG_EQ] = ACTIONS(3671), + [anon_sym_GT_EQ] = ACTIONS(3671), + [anon_sym_LT_EQ] = ACTIONS(3671), + [anon_sym_DOT] = ACTIONS(3680), + [anon_sym_scoped] = ACTIONS(3669), + [anon_sym_var] = ACTIONS(3669), + [anon_sym_yield] = ACTIONS(3669), + [anon_sym_switch] = ACTIONS(3673), + [anon_sym_when] = ACTIONS(3669), + [sym_discard] = ACTIONS(3669), + [anon_sym_DOT_DOT] = ACTIONS(3671), + [anon_sym_and] = ACTIONS(3669), + [anon_sym_or] = ACTIONS(3669), + [anon_sym_PLUS_EQ] = ACTIONS(3671), + [anon_sym_DASH_EQ] = ACTIONS(3671), + [anon_sym_STAR_EQ] = ACTIONS(3671), + [anon_sym_SLASH_EQ] = ACTIONS(3671), + [anon_sym_PERCENT_EQ] = ACTIONS(3671), + [anon_sym_AMP_EQ] = ACTIONS(3671), + [anon_sym_CARET_EQ] = ACTIONS(3671), + [anon_sym_PIPE_EQ] = ACTIONS(3671), + [anon_sym_LT_LT_EQ] = ACTIONS(3671), + [anon_sym_GT_GT_EQ] = ACTIONS(3671), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3671), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3671), + [anon_sym_AMP_AMP] = ACTIONS(3671), + [anon_sym_PIPE_PIPE] = ACTIONS(3671), + [anon_sym_QMARK_QMARK] = ACTIONS(3673), + [anon_sym_from] = ACTIONS(3669), + [anon_sym_into] = ACTIONS(3669), + [anon_sym_join] = ACTIONS(3669), + [anon_sym_on] = ACTIONS(3669), + [anon_sym_equals] = ACTIONS(3669), + [anon_sym_let] = ACTIONS(3669), + [anon_sym_orderby] = ACTIONS(3669), + [anon_sym_ascending] = ACTIONS(3669), + [anon_sym_descending] = ACTIONS(3669), + [anon_sym_group] = ACTIONS(3669), + [anon_sym_by] = ACTIONS(3669), + [anon_sym_select] = ACTIONS(3669), + [anon_sym_as] = ACTIONS(3673), + [anon_sym_is] = ACTIONS(3673), + [anon_sym_DASH_GT] = ACTIONS(3675), + [anon_sym_with] = ACTIONS(3673), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -403462,6 +403189,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2232] = { + [sym_parameter_list] = STATE(7531), + [sym_positional_pattern_clause] = STATE(2249), + [sym_property_pattern_clause] = STATE(2304), + [sym__variable_designation] = STATE(3347), + [sym_parenthesized_variable_designation] = STATE(3344), + [sym__lambda_parameters] = STATE(7378), + [sym_identifier] = STATE(3309), + [sym__reserved_identifier] = STATE(3199), [sym_preproc_region] = STATE(2232), [sym_preproc_endregion] = STATE(2232), [sym_preproc_line] = STATE(2232), @@ -403471,183 +403206,175 @@ 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(3619), - [anon_sym_alias] = ACTIONS(3619), - [anon_sym_global] = ACTIONS(3619), - [anon_sym_EQ] = ACTIONS(3447), - [anon_sym_LBRACK] = ACTIONS(3616), - [anon_sym_COLON] = ACTIONS(3619), - [anon_sym_COMMA] = ACTIONS(3616), - [anon_sym_LPAREN] = ACTIONS(3616), - [anon_sym_LBRACE] = ACTIONS(3616), - [anon_sym_file] = ACTIONS(3619), - [anon_sym_LT] = ACTIONS(3619), - [anon_sym_GT] = ACTIONS(3619), - [anon_sym_where] = ACTIONS(3619), - [anon_sym_QMARK] = ACTIONS(3619), - [anon_sym_notnull] = ACTIONS(3619), - [anon_sym_unmanaged] = ACTIONS(3619), - [anon_sym_BANG] = ACTIONS(3619), - [anon_sym_PLUS_PLUS] = ACTIONS(3616), - [anon_sym_DASH_DASH] = ACTIONS(3616), - [anon_sym_PLUS] = ACTIONS(3619), - [anon_sym_DASH] = ACTIONS(3619), - [anon_sym_STAR] = ACTIONS(3619), - [anon_sym_SLASH] = ACTIONS(3619), - [anon_sym_PERCENT] = ACTIONS(3619), - [anon_sym_CARET] = ACTIONS(3619), - [anon_sym_PIPE] = ACTIONS(3619), - [anon_sym_AMP] = ACTIONS(3619), - [anon_sym_LT_LT] = ACTIONS(3619), - [anon_sym_GT_GT] = ACTIONS(3619), - [anon_sym_GT_GT_GT] = ACTIONS(3619), - [anon_sym_EQ_EQ] = ACTIONS(3616), - [anon_sym_BANG_EQ] = ACTIONS(3616), - [anon_sym_GT_EQ] = ACTIONS(3616), - [anon_sym_LT_EQ] = ACTIONS(3616), - [anon_sym_DOT] = ACTIONS(3619), - [anon_sym_scoped] = ACTIONS(3619), - [anon_sym_EQ_GT] = ACTIONS(3445), - [anon_sym_COLON_COLON] = ACTIONS(3445), - [anon_sym_var] = ACTIONS(3619), - [anon_sym_yield] = ACTIONS(3619), - [anon_sym_switch] = ACTIONS(3619), - [anon_sym_when] = ACTIONS(3619), - [sym_discard] = ACTIONS(3619), - [anon_sym_DOT_DOT] = ACTIONS(3616), - [anon_sym_and] = ACTIONS(3619), - [anon_sym_or] = ACTIONS(3619), - [anon_sym_PLUS_EQ] = ACTIONS(3445), - [anon_sym_DASH_EQ] = ACTIONS(3445), - [anon_sym_STAR_EQ] = ACTIONS(3445), - [anon_sym_SLASH_EQ] = ACTIONS(3445), - [anon_sym_PERCENT_EQ] = ACTIONS(3445), - [anon_sym_AMP_EQ] = ACTIONS(3445), - [anon_sym_CARET_EQ] = ACTIONS(3445), - [anon_sym_PIPE_EQ] = ACTIONS(3445), - [anon_sym_LT_LT_EQ] = ACTIONS(3445), - [anon_sym_GT_GT_EQ] = ACTIONS(3445), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3445), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3445), - [anon_sym_AMP_AMP] = ACTIONS(3616), - [anon_sym_PIPE_PIPE] = ACTIONS(3616), - [anon_sym_QMARK_QMARK] = ACTIONS(3619), - [anon_sym_from] = ACTIONS(3619), - [anon_sym_into] = ACTIONS(3619), - [anon_sym_join] = ACTIONS(3619), - [anon_sym_on] = ACTIONS(3619), - [anon_sym_equals] = ACTIONS(3619), - [anon_sym_let] = ACTIONS(3619), - [anon_sym_orderby] = ACTIONS(3619), - [anon_sym_ascending] = ACTIONS(3619), - [anon_sym_descending] = ACTIONS(3619), - [anon_sym_group] = ACTIONS(3619), - [anon_sym_by] = ACTIONS(3619), - [anon_sym_select] = ACTIONS(3619), - [anon_sym_as] = ACTIONS(3619), - [anon_sym_is] = ACTIONS(3619), - [anon_sym_DASH_GT] = ACTIONS(3616), - [anon_sym_with] = ACTIONS(3619), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_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(3616), - }, - [2233] = { - [sym_preproc_region] = STATE(2233), - [sym_preproc_endregion] = STATE(2233), - [sym_preproc_line] = STATE(2233), - [sym_preproc_pragma] = STATE(2233), - [sym_preproc_nullable] = STATE(2233), - [sym_preproc_error] = STATE(2233), - [sym_preproc_warning] = STATE(2233), - [sym_preproc_define] = STATE(2233), - [sym_preproc_undef] = STATE(2233), - [sym__identifier_token] = ACTIONS(3699), - [anon_sym_alias] = ACTIONS(3699), - [anon_sym_global] = ACTIONS(3699), - [anon_sym_EQ] = ACTIONS(3704), - [anon_sym_LBRACK] = ACTIONS(3721), - [anon_sym_COLON] = ACTIONS(3719), - [anon_sym_COMMA] = ACTIONS(3721), - [anon_sym_RBRACK] = ACTIONS(3721), - [anon_sym_LPAREN] = ACTIONS(3721), - [anon_sym_RPAREN] = ACTIONS(3719), - [anon_sym_LBRACE] = ACTIONS(3710), - [anon_sym_RBRACE] = ACTIONS(3721), - [anon_sym_file] = ACTIONS(3699), - [anon_sym_LT] = ACTIONS(3704), - [anon_sym_GT] = ACTIONS(3704), - [anon_sym_where] = ACTIONS(3699), - [anon_sym_QMARK] = ACTIONS(3724), - [anon_sym_notnull] = ACTIONS(3699), - [anon_sym_unmanaged] = ACTIONS(3699), - [anon_sym_BANG] = ACTIONS(3704), - [anon_sym_PLUS_PLUS] = ACTIONS(3719), - [anon_sym_DASH_DASH] = ACTIONS(3719), - [anon_sym_PLUS] = ACTIONS(3704), - [anon_sym_DASH] = ACTIONS(3704), - [anon_sym_STAR] = ACTIONS(3724), - [anon_sym_SLASH] = ACTIONS(3704), - [anon_sym_PERCENT] = ACTIONS(3704), - [anon_sym_CARET] = ACTIONS(3704), - [anon_sym_PIPE] = ACTIONS(3704), - [anon_sym_AMP] = ACTIONS(3704), - [anon_sym_LT_LT] = ACTIONS(3704), - [anon_sym_GT_GT] = ACTIONS(3704), - [anon_sym_GT_GT_GT] = ACTIONS(3704), - [anon_sym_EQ_EQ] = ACTIONS(3719), - [anon_sym_BANG_EQ] = ACTIONS(3719), - [anon_sym_GT_EQ] = ACTIONS(3719), - [anon_sym_LT_EQ] = ACTIONS(3719), - [anon_sym_DOT] = ACTIONS(3724), - [anon_sym_scoped] = ACTIONS(3699), - [anon_sym_var] = ACTIONS(3699), - [anon_sym_yield] = ACTIONS(3699), - [anon_sym_switch] = ACTIONS(3704), - [anon_sym_when] = ACTIONS(3699), - [sym_discard] = ACTIONS(3699), - [anon_sym_DOT_DOT] = ACTIONS(3719), - [anon_sym_and] = ACTIONS(3699), - [anon_sym_or] = ACTIONS(3699), - [anon_sym_PLUS_EQ] = ACTIONS(3719), - [anon_sym_DASH_EQ] = ACTIONS(3719), - [anon_sym_STAR_EQ] = ACTIONS(3719), - [anon_sym_SLASH_EQ] = ACTIONS(3719), - [anon_sym_PERCENT_EQ] = ACTIONS(3719), - [anon_sym_AMP_EQ] = ACTIONS(3719), - [anon_sym_CARET_EQ] = ACTIONS(3719), - [anon_sym_PIPE_EQ] = ACTIONS(3719), - [anon_sym_LT_LT_EQ] = ACTIONS(3719), - [anon_sym_GT_GT_EQ] = ACTIONS(3719), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3719), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3719), - [anon_sym_AMP_AMP] = ACTIONS(3719), - [anon_sym_PIPE_PIPE] = ACTIONS(3719), - [anon_sym_QMARK_QMARK] = ACTIONS(3704), - [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_ascending] = ACTIONS(3699), - [anon_sym_descending] = ACTIONS(3699), - [anon_sym_group] = ACTIONS(3699), - [anon_sym_by] = ACTIONS(3699), - [anon_sym_select] = ACTIONS(3699), - [anon_sym_as] = ACTIONS(3704), - [anon_sym_is] = ACTIONS(3704), - [anon_sym_DASH_GT] = ACTIONS(3721), - [anon_sym_with] = ACTIONS(3704), + [sym__identifier_token] = ACTIONS(3855), + [anon_sym_alias] = ACTIONS(3857), + [anon_sym_SEMI] = ACTIONS(3869), + [anon_sym_global] = ACTIONS(3857), + [anon_sym_LBRACK] = ACTIONS(3869), + [anon_sym_COLON] = ACTIONS(3869), + [anon_sym_COMMA] = ACTIONS(3869), + [anon_sym_RBRACK] = ACTIONS(3869), + [anon_sym_LPAREN] = ACTIONS(3869), + [anon_sym_RPAREN] = ACTIONS(3869), + [anon_sym_LBRACE] = ACTIONS(3861), + [anon_sym_RBRACE] = ACTIONS(3869), + [anon_sym_file] = ACTIONS(3857), + [anon_sym_LT] = ACTIONS(3867), + [anon_sym_GT] = ACTIONS(3867), + [anon_sym_in] = ACTIONS(3867), + [anon_sym_where] = ACTIONS(3857), + [anon_sym_QMARK] = ACTIONS(3867), + [anon_sym_notnull] = ACTIONS(3857), + [anon_sym_unmanaged] = ACTIONS(3857), + [anon_sym_BANG] = ACTIONS(3867), + [anon_sym_PLUS_PLUS] = ACTIONS(3869), + [anon_sym_DASH_DASH] = ACTIONS(3869), + [anon_sym_PLUS] = ACTIONS(3867), + [anon_sym_DASH] = ACTIONS(3867), + [anon_sym_STAR] = ACTIONS(3869), + [anon_sym_SLASH] = ACTIONS(3867), + [anon_sym_PERCENT] = ACTIONS(3869), + [anon_sym_CARET] = ACTIONS(3869), + [anon_sym_PIPE] = ACTIONS(3867), + [anon_sym_AMP] = ACTIONS(3867), + [anon_sym_LT_LT] = ACTIONS(3869), + [anon_sym_GT_GT] = ACTIONS(3867), + [anon_sym_GT_GT_GT] = ACTIONS(3869), + [anon_sym_EQ_EQ] = ACTIONS(3869), + [anon_sym_BANG_EQ] = ACTIONS(3869), + [anon_sym_GT_EQ] = ACTIONS(3869), + [anon_sym_LT_EQ] = ACTIONS(3869), + [anon_sym_DOT] = ACTIONS(3867), + [anon_sym_scoped] = ACTIONS(3857), + [anon_sym_var] = ACTIONS(3857), + [anon_sym_yield] = ACTIONS(3857), + [anon_sym_switch] = ACTIONS(3867), + [anon_sym_when] = ACTIONS(3857), + [sym_discard] = ACTIONS(3865), + [anon_sym_DOT_DOT] = ACTIONS(3869), + [anon_sym_and] = ACTIONS(3867), + [anon_sym_or] = ACTIONS(3867), + [anon_sym_AMP_AMP] = ACTIONS(3869), + [anon_sym_PIPE_PIPE] = ACTIONS(3869), + [anon_sym_QMARK_QMARK] = ACTIONS(3869), + [anon_sym_from] = ACTIONS(3857), + [anon_sym_into] = ACTIONS(3867), + [anon_sym_join] = ACTIONS(3857), + [anon_sym_on] = ACTIONS(3857), + [anon_sym_equals] = ACTIONS(3857), + [anon_sym_let] = ACTIONS(3857), + [anon_sym_orderby] = ACTIONS(3857), + [anon_sym_ascending] = ACTIONS(3857), + [anon_sym_descending] = ACTIONS(3857), + [anon_sym_group] = ACTIONS(3857), + [anon_sym_by] = ACTIONS(3857), + [anon_sym_select] = ACTIONS(3857), + [anon_sym_as] = ACTIONS(3867), + [anon_sym_is] = ACTIONS(3867), + [anon_sym_DASH_GT] = ACTIONS(3869), + [anon_sym_with] = ACTIONS(3867), + [aux_sym_preproc_if_token3] = ACTIONS(3869), + [aux_sym_preproc_else_token1] = ACTIONS(3869), + [aux_sym_preproc_elif_token1] = ACTIONS(3869), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + }, + [2233] = { + [sym__name] = STATE(3107), + [sym_alias_qualified_name] = STATE(2976), + [sym__simple_name] = STATE(2976), + [sym_qualified_name] = STATE(2976), + [sym_generic_name] = STATE(3030), + [sym_ref_type] = STATE(3000), + [sym__scoped_base_type] = STATE(3001), + [sym_identifier] = STATE(2927), + [sym__reserved_identifier] = STATE(2916), + [sym_preproc_region] = STATE(2233), + [sym_preproc_endregion] = STATE(2233), + [sym_preproc_line] = STATE(2233), + [sym_preproc_pragma] = STATE(2233), + [sym_preproc_nullable] = STATE(2233), + [sym_preproc_error] = STATE(2233), + [sym_preproc_warning] = STATE(2233), + [sym_preproc_define] = STATE(2233), + [sym_preproc_undef] = STATE(2233), + [sym__identifier_token] = ACTIONS(3871), + [anon_sym_alias] = ACTIONS(3873), + [anon_sym_SEMI] = ACTIONS(3429), + [anon_sym_global] = ACTIONS(3873), + [anon_sym_LBRACK] = ACTIONS(3429), + [anon_sym_COMMA] = ACTIONS(3429), + [anon_sym_RBRACK] = ACTIONS(3429), + [anon_sym_LPAREN] = ACTIONS(3429), + [anon_sym_RPAREN] = ACTIONS(3429), + [anon_sym_ref] = ACTIONS(3875), + [anon_sym_LBRACE] = ACTIONS(3429), + [anon_sym_RBRACE] = ACTIONS(3429), + [anon_sym_file] = ACTIONS(3873), + [anon_sym_LT] = ACTIONS(3431), + [anon_sym_GT] = ACTIONS(3431), + [anon_sym_in] = ACTIONS(3431), + [anon_sym_where] = ACTIONS(3873), + [anon_sym_QMARK] = ACTIONS(3431), + [anon_sym_notnull] = ACTIONS(3873), + [anon_sym_unmanaged] = ACTIONS(3873), + [anon_sym_BANG] = ACTIONS(3431), + [anon_sym_PLUS_PLUS] = ACTIONS(3429), + [anon_sym_DASH_DASH] = ACTIONS(3429), + [anon_sym_PLUS] = ACTIONS(3431), + [anon_sym_DASH] = ACTIONS(3431), + [anon_sym_STAR] = ACTIONS(3429), + [anon_sym_SLASH] = ACTIONS(3431), + [anon_sym_PERCENT] = ACTIONS(3429), + [anon_sym_CARET] = ACTIONS(3429), + [anon_sym_PIPE] = ACTIONS(3431), + [anon_sym_AMP] = ACTIONS(3431), + [anon_sym_LT_LT] = ACTIONS(3429), + [anon_sym_GT_GT] = ACTIONS(3431), + [anon_sym_GT_GT_GT] = ACTIONS(3429), + [anon_sym_EQ_EQ] = ACTIONS(3429), + [anon_sym_BANG_EQ] = ACTIONS(3429), + [anon_sym_GT_EQ] = ACTIONS(3429), + [anon_sym_LT_EQ] = ACTIONS(3429), + [anon_sym_DOT] = ACTIONS(3431), + [anon_sym_scoped] = ACTIONS(3873), + [anon_sym_EQ_GT] = ACTIONS(3429), + [anon_sym_COLON_COLON] = ACTIONS(3429), + [anon_sym_var] = ACTIONS(3873), + [anon_sym_yield] = ACTIONS(3873), + [anon_sym_switch] = ACTIONS(3431), + [anon_sym_when] = ACTIONS(3873), + [anon_sym_DOT_DOT] = ACTIONS(3429), + [anon_sym_AMP_AMP] = ACTIONS(3429), + [anon_sym_PIPE_PIPE] = ACTIONS(3429), + [anon_sym_QMARK_QMARK] = ACTIONS(3429), + [anon_sym_from] = ACTIONS(3873), + [anon_sym_into] = ACTIONS(3873), + [anon_sym_join] = ACTIONS(3873), + [anon_sym_on] = ACTIONS(3873), + [anon_sym_equals] = ACTIONS(3873), + [anon_sym_let] = ACTIONS(3873), + [anon_sym_orderby] = ACTIONS(3873), + [anon_sym_ascending] = ACTIONS(3873), + [anon_sym_descending] = ACTIONS(3873), + [anon_sym_group] = ACTIONS(3873), + [anon_sym_by] = ACTIONS(3873), + [anon_sym_select] = ACTIONS(3873), + [anon_sym_as] = ACTIONS(3431), + [anon_sym_is] = ACTIONS(3431), + [anon_sym_DASH_GT] = ACTIONS(3429), + [anon_sym_with] = ACTIONS(3431), + [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), @@ -403669,84 +403396,83 @@ 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(3699), - [anon_sym_alias] = ACTIONS(3699), - [anon_sym_global] = ACTIONS(3699), - [anon_sym_EQ] = ACTIONS(3704), - [anon_sym_LBRACK] = ACTIONS(3721), - [anon_sym_COLON] = ACTIONS(3719), - [anon_sym_COMMA] = ACTIONS(3706), - [anon_sym_RBRACK] = ACTIONS(3706), - [anon_sym_LPAREN] = ACTIONS(3721), - [anon_sym_RPAREN] = ACTIONS(3706), - [anon_sym_LBRACE] = ACTIONS(3710), - [anon_sym_RBRACE] = ACTIONS(3706), - [anon_sym_file] = ACTIONS(3699), - [anon_sym_LT] = ACTIONS(3704), - [anon_sym_GT] = ACTIONS(3704), - [anon_sym_where] = ACTIONS(3699), - [anon_sym_QMARK] = ACTIONS(3724), - [anon_sym_notnull] = ACTIONS(3699), - [anon_sym_unmanaged] = ACTIONS(3699), - [anon_sym_BANG] = ACTIONS(3704), - [anon_sym_PLUS_PLUS] = ACTIONS(3719), - [anon_sym_DASH_DASH] = ACTIONS(3719), - [anon_sym_PLUS] = ACTIONS(3704), - [anon_sym_DASH] = ACTIONS(3704), - [anon_sym_STAR] = ACTIONS(3724), - [anon_sym_SLASH] = ACTIONS(3704), - [anon_sym_PERCENT] = ACTIONS(3704), - [anon_sym_CARET] = ACTIONS(3704), - [anon_sym_PIPE] = ACTIONS(3704), - [anon_sym_AMP] = ACTIONS(3704), - [anon_sym_LT_LT] = ACTIONS(3704), - [anon_sym_GT_GT] = ACTIONS(3704), - [anon_sym_GT_GT_GT] = ACTIONS(3704), - [anon_sym_EQ_EQ] = ACTIONS(3719), - [anon_sym_BANG_EQ] = ACTIONS(3719), - [anon_sym_GT_EQ] = ACTIONS(3719), - [anon_sym_LT_EQ] = ACTIONS(3719), - [anon_sym_DOT] = ACTIONS(3724), - [anon_sym_scoped] = ACTIONS(3699), - [anon_sym_var] = ACTIONS(3699), - [anon_sym_yield] = ACTIONS(3699), - [anon_sym_switch] = ACTIONS(3704), - [anon_sym_when] = ACTIONS(3699), - [sym_discard] = ACTIONS(3699), - [anon_sym_DOT_DOT] = ACTIONS(3719), - [anon_sym_and] = ACTIONS(3716), - [anon_sym_or] = ACTIONS(3716), - [anon_sym_PLUS_EQ] = ACTIONS(3719), - [anon_sym_DASH_EQ] = ACTIONS(3719), - [anon_sym_STAR_EQ] = ACTIONS(3719), - [anon_sym_SLASH_EQ] = ACTIONS(3719), - [anon_sym_PERCENT_EQ] = ACTIONS(3719), - [anon_sym_AMP_EQ] = ACTIONS(3719), - [anon_sym_CARET_EQ] = ACTIONS(3719), - [anon_sym_PIPE_EQ] = ACTIONS(3719), - [anon_sym_LT_LT_EQ] = ACTIONS(3719), - [anon_sym_GT_GT_EQ] = ACTIONS(3719), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3719), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3719), - [anon_sym_AMP_AMP] = ACTIONS(3719), - [anon_sym_PIPE_PIPE] = ACTIONS(3719), - [anon_sym_QMARK_QMARK] = ACTIONS(3704), - [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_ascending] = ACTIONS(3699), - [anon_sym_descending] = ACTIONS(3699), - [anon_sym_group] = ACTIONS(3699), - [anon_sym_by] = ACTIONS(3699), - [anon_sym_select] = ACTIONS(3699), - [anon_sym_as] = ACTIONS(3704), - [anon_sym_is] = ACTIONS(3704), - [anon_sym_DASH_GT] = ACTIONS(3721), - [anon_sym_with] = ACTIONS(3704), + [sym__identifier_token] = ACTIONS(3634), + [anon_sym_alias] = ACTIONS(3634), + [anon_sym_global] = ACTIONS(3634), + [anon_sym_EQ] = ACTIONS(3634), + [anon_sym_LBRACK] = ACTIONS(3636), + [anon_sym_COLON] = ACTIONS(3636), + [anon_sym_COMMA] = ACTIONS(3636), + [anon_sym_LPAREN] = ACTIONS(3636), + [anon_sym_RPAREN] = ACTIONS(3636), + [anon_sym_LBRACE] = ACTIONS(3636), + [anon_sym_RBRACE] = ACTIONS(3636), + [anon_sym_file] = ACTIONS(3634), + [anon_sym_LT] = ACTIONS(3634), + [anon_sym_GT] = ACTIONS(3634), + [anon_sym_where] = ACTIONS(3634), + [anon_sym_QMARK] = ACTIONS(3634), + [anon_sym_notnull] = ACTIONS(3634), + [anon_sym_unmanaged] = ACTIONS(3634), + [anon_sym_BANG] = ACTIONS(3634), + [anon_sym_PLUS_PLUS] = ACTIONS(3636), + [anon_sym_DASH_DASH] = ACTIONS(3636), + [anon_sym_PLUS] = ACTIONS(3634), + [anon_sym_DASH] = ACTIONS(3634), + [anon_sym_STAR] = ACTIONS(3634), + [anon_sym_SLASH] = ACTIONS(3634), + [anon_sym_PERCENT] = ACTIONS(3634), + [anon_sym_CARET] = ACTIONS(3634), + [anon_sym_PIPE] = ACTIONS(3634), + [anon_sym_AMP] = ACTIONS(3634), + [anon_sym_LT_LT] = ACTIONS(3634), + [anon_sym_GT_GT] = ACTIONS(3634), + [anon_sym_GT_GT_GT] = ACTIONS(3634), + [anon_sym_EQ_EQ] = ACTIONS(3636), + [anon_sym_BANG_EQ] = ACTIONS(3636), + [anon_sym_GT_EQ] = ACTIONS(3636), + [anon_sym_LT_EQ] = ACTIONS(3636), + [anon_sym_DOT] = ACTIONS(3634), + [anon_sym_scoped] = ACTIONS(3634), + [anon_sym_var] = ACTIONS(3634), + [anon_sym_yield] = ACTIONS(3634), + [anon_sym_switch] = ACTIONS(3634), + [anon_sym_when] = ACTIONS(3634), + [sym_discard] = ACTIONS(3634), + [anon_sym_DOT_DOT] = ACTIONS(3636), + [anon_sym_and] = ACTIONS(3634), + [anon_sym_or] = ACTIONS(3634), + [anon_sym_PLUS_EQ] = ACTIONS(3636), + [anon_sym_DASH_EQ] = ACTIONS(3636), + [anon_sym_STAR_EQ] = ACTIONS(3636), + [anon_sym_SLASH_EQ] = ACTIONS(3636), + [anon_sym_PERCENT_EQ] = ACTIONS(3636), + [anon_sym_AMP_EQ] = ACTIONS(3636), + [anon_sym_CARET_EQ] = ACTIONS(3636), + [anon_sym_PIPE_EQ] = ACTIONS(3636), + [anon_sym_LT_LT_EQ] = ACTIONS(3636), + [anon_sym_GT_GT_EQ] = ACTIONS(3636), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3636), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3636), + [anon_sym_AMP_AMP] = ACTIONS(3636), + [anon_sym_PIPE_PIPE] = ACTIONS(3636), + [anon_sym_QMARK_QMARK] = ACTIONS(3634), + [anon_sym_from] = ACTIONS(3634), + [anon_sym_into] = ACTIONS(3634), + [anon_sym_join] = ACTIONS(3634), + [anon_sym_on] = ACTIONS(3634), + [anon_sym_equals] = ACTIONS(3634), + [anon_sym_let] = ACTIONS(3634), + [anon_sym_orderby] = ACTIONS(3634), + [anon_sym_ascending] = ACTIONS(3634), + [anon_sym_descending] = ACTIONS(3634), + [anon_sym_group] = ACTIONS(3634), + [anon_sym_by] = ACTIONS(3634), + [anon_sym_select] = ACTIONS(3634), + [anon_sym_as] = ACTIONS(3634), + [anon_sym_is] = ACTIONS(3634), + [anon_sym_DASH_GT] = ACTIONS(3636), + [anon_sym_with] = ACTIONS(3634), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -403759,15 +403485,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2235] = { - [sym__name] = STATE(3087), - [sym_alias_qualified_name] = STATE(3029), - [sym__simple_name] = STATE(3029), - [sym_qualified_name] = STATE(3029), - [sym_generic_name] = STATE(2985), - [sym_ref_type] = STATE(3043), - [sym__scoped_base_type] = STATE(2963), - [sym_identifier] = STATE(2923), - [sym__reserved_identifier] = STATE(2945), + [sym_parameter_list] = STATE(7531), + [sym_positional_pattern_clause] = STATE(2280), + [sym_property_pattern_clause] = STATE(2326), + [sym__variable_designation] = STATE(3422), + [sym_parenthesized_variable_designation] = STATE(3352), + [sym__lambda_parameters] = STATE(7378), + [sym_identifier] = STATE(3430), + [sym__reserved_identifier] = STATE(3199), [sym_preproc_region] = STATE(2235), [sym_preproc_endregion] = STATE(2235), [sym_preproc_line] = STATE(2235), @@ -403777,75 +403502,75 @@ 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(3887), - [anon_sym_alias] = ACTIONS(3889), - [anon_sym_SEMI] = ACTIONS(3445), - [anon_sym_global] = ACTIONS(3889), - [anon_sym_LBRACK] = ACTIONS(3445), - [anon_sym_COMMA] = ACTIONS(3445), - [anon_sym_RBRACK] = ACTIONS(3445), - [anon_sym_LPAREN] = ACTIONS(3445), - [anon_sym_RPAREN] = ACTIONS(3445), - [anon_sym_ref] = ACTIONS(3891), - [anon_sym_LBRACE] = ACTIONS(3445), - [anon_sym_RBRACE] = ACTIONS(3445), - [anon_sym_file] = ACTIONS(3889), - [anon_sym_LT] = ACTIONS(3447), - [anon_sym_GT] = ACTIONS(3447), - [anon_sym_in] = ACTIONS(3447), - [anon_sym_where] = ACTIONS(3889), - [anon_sym_QMARK] = ACTIONS(3447), - [anon_sym_notnull] = ACTIONS(3889), - [anon_sym_unmanaged] = ACTIONS(3889), - [anon_sym_BANG] = ACTIONS(3447), - [anon_sym_PLUS_PLUS] = ACTIONS(3445), - [anon_sym_DASH_DASH] = ACTIONS(3445), - [anon_sym_PLUS] = ACTIONS(3447), - [anon_sym_DASH] = ACTIONS(3447), - [anon_sym_STAR] = ACTIONS(3445), - [anon_sym_SLASH] = ACTIONS(3447), - [anon_sym_PERCENT] = ACTIONS(3445), - [anon_sym_CARET] = ACTIONS(3445), - [anon_sym_PIPE] = ACTIONS(3447), - [anon_sym_AMP] = ACTIONS(3447), - [anon_sym_LT_LT] = ACTIONS(3445), - [anon_sym_GT_GT] = ACTIONS(3447), - [anon_sym_GT_GT_GT] = ACTIONS(3445), - [anon_sym_EQ_EQ] = ACTIONS(3445), - [anon_sym_BANG_EQ] = ACTIONS(3445), - [anon_sym_GT_EQ] = ACTIONS(3445), - [anon_sym_LT_EQ] = ACTIONS(3445), - [anon_sym_DOT] = ACTIONS(3447), - [anon_sym_scoped] = ACTIONS(3889), - [anon_sym_EQ_GT] = ACTIONS(3445), - [anon_sym_COLON_COLON] = ACTIONS(3445), - [anon_sym_var] = ACTIONS(3889), - [anon_sym_yield] = ACTIONS(3889), - [anon_sym_switch] = ACTIONS(3447), - [anon_sym_when] = ACTIONS(3889), - [anon_sym_DOT_DOT] = ACTIONS(3445), - [anon_sym_AMP_AMP] = ACTIONS(3445), - [anon_sym_PIPE_PIPE] = ACTIONS(3445), - [anon_sym_QMARK_QMARK] = ACTIONS(3445), - [anon_sym_from] = ACTIONS(3889), - [anon_sym_into] = ACTIONS(3889), - [anon_sym_join] = ACTIONS(3889), - [anon_sym_on] = ACTIONS(3889), - [anon_sym_equals] = ACTIONS(3889), - [anon_sym_let] = ACTIONS(3889), - [anon_sym_orderby] = ACTIONS(3889), - [anon_sym_ascending] = ACTIONS(3889), - [anon_sym_descending] = ACTIONS(3889), - [anon_sym_group] = ACTIONS(3889), - [anon_sym_by] = ACTIONS(3889), - [anon_sym_select] = ACTIONS(3889), - [anon_sym_as] = ACTIONS(3447), - [anon_sym_is] = ACTIONS(3447), - [anon_sym_DASH_GT] = ACTIONS(3445), - [anon_sym_with] = ACTIONS(3447), - [aux_sym_preproc_if_token3] = ACTIONS(3445), - [aux_sym_preproc_else_token1] = ACTIONS(3445), - [aux_sym_preproc_elif_token1] = ACTIONS(3445), + [sym__identifier_token] = ACTIONS(3855), + [anon_sym_alias] = ACTIONS(3857), + [anon_sym_SEMI] = ACTIONS(3859), + [anon_sym_global] = ACTIONS(3857), + [anon_sym_LBRACK] = ACTIONS(3859), + [anon_sym_COLON] = ACTIONS(3859), + [anon_sym_COMMA] = ACTIONS(3859), + [anon_sym_RBRACK] = ACTIONS(3859), + [anon_sym_LPAREN] = ACTIONS(3859), + [anon_sym_RPAREN] = ACTIONS(3859), + [anon_sym_LBRACE] = ACTIONS(3861), + [anon_sym_RBRACE] = ACTIONS(3859), + [anon_sym_file] = ACTIONS(3857), + [anon_sym_LT] = ACTIONS(3863), + [anon_sym_GT] = ACTIONS(3863), + [anon_sym_where] = ACTIONS(3857), + [anon_sym_QMARK] = ACTIONS(3863), + [anon_sym_notnull] = ACTIONS(3857), + [anon_sym_unmanaged] = ACTIONS(3857), + [anon_sym_BANG] = ACTIONS(3863), + [anon_sym_PLUS_PLUS] = ACTIONS(3859), + [anon_sym_DASH_DASH] = ACTIONS(3859), + [anon_sym_PLUS] = ACTIONS(3863), + [anon_sym_DASH] = ACTIONS(3863), + [anon_sym_STAR] = ACTIONS(3859), + [anon_sym_SLASH] = ACTIONS(3863), + [anon_sym_PERCENT] = ACTIONS(3859), + [anon_sym_CARET] = ACTIONS(3859), + [anon_sym_PIPE] = ACTIONS(3863), + [anon_sym_AMP] = ACTIONS(3863), + [anon_sym_LT_LT] = ACTIONS(3859), + [anon_sym_GT_GT] = ACTIONS(3863), + [anon_sym_GT_GT_GT] = ACTIONS(3859), + [anon_sym_EQ_EQ] = ACTIONS(3859), + [anon_sym_BANG_EQ] = ACTIONS(3859), + [anon_sym_GT_EQ] = ACTIONS(3859), + [anon_sym_LT_EQ] = ACTIONS(3859), + [anon_sym_DOT] = ACTIONS(3863), + [anon_sym_scoped] = ACTIONS(3857), + [anon_sym_var] = ACTIONS(3857), + [anon_sym_yield] = ACTIONS(3857), + [anon_sym_switch] = ACTIONS(3863), + [anon_sym_when] = ACTIONS(3857), + [sym_discard] = ACTIONS(3877), + [anon_sym_DOT_DOT] = ACTIONS(3859), + [anon_sym_and] = ACTIONS(3867), + [anon_sym_or] = ACTIONS(3867), + [anon_sym_AMP_AMP] = ACTIONS(3859), + [anon_sym_PIPE_PIPE] = ACTIONS(3859), + [anon_sym_QMARK_QMARK] = ACTIONS(3859), + [anon_sym_from] = ACTIONS(3857), + [anon_sym_into] = ACTIONS(3857), + [anon_sym_join] = ACTIONS(3857), + [anon_sym_on] = ACTIONS(3857), + [anon_sym_equals] = ACTIONS(3857), + [anon_sym_let] = ACTIONS(3857), + [anon_sym_orderby] = ACTIONS(3857), + [anon_sym_ascending] = ACTIONS(3857), + [anon_sym_descending] = ACTIONS(3857), + [anon_sym_group] = ACTIONS(3857), + [anon_sym_by] = ACTIONS(3857), + [anon_sym_select] = ACTIONS(3857), + [anon_sym_as] = ACTIONS(3863), + [anon_sym_is] = ACTIONS(3863), + [anon_sym_DASH_GT] = ACTIONS(3859), + [anon_sym_with] = ACTIONS(3863), + [aux_sym_preproc_if_token3] = ACTIONS(3859), + [aux_sym_preproc_else_token1] = ACTIONS(3859), + [aux_sym_preproc_elif_token1] = ACTIONS(3859), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -403858,6 +403583,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2236] = { + [sym_parameter_list] = STATE(7531), + [sym_positional_pattern_clause] = STATE(2280), + [sym_property_pattern_clause] = STATE(2326), + [sym__variable_designation] = STATE(3422), + [sym_parenthesized_variable_designation] = STATE(3352), + [sym__lambda_parameters] = STATE(7378), + [sym_identifier] = STATE(3430), + [sym__reserved_identifier] = STATE(3199), [sym_preproc_region] = STATE(2236), [sym_preproc_endregion] = STATE(2236), [sym_preproc_line] = STATE(2236), @@ -403867,84 +403600,75 @@ 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(3685), - [anon_sym_alias] = ACTIONS(3685), - [anon_sym_global] = ACTIONS(3685), - [anon_sym_EQ] = ACTIONS(3689), - [anon_sym_LBRACK] = ACTIONS(3691), - [anon_sym_COLON] = ACTIONS(3697), - [anon_sym_COMMA] = ACTIONS(3691), - [anon_sym_RBRACK] = ACTIONS(3691), - [anon_sym_LPAREN] = ACTIONS(3691), - [anon_sym_RPAREN] = ACTIONS(3697), - [anon_sym_LBRACE] = ACTIONS(3687), - [anon_sym_RBRACE] = ACTIONS(3691), - [anon_sym_file] = ACTIONS(3685), - [anon_sym_LT] = ACTIONS(3689), - [anon_sym_GT] = ACTIONS(3689), - [anon_sym_where] = ACTIONS(3685), - [anon_sym_QMARK] = ACTIONS(3694), - [anon_sym_notnull] = ACTIONS(3685), - [anon_sym_unmanaged] = ACTIONS(3685), - [anon_sym_BANG] = ACTIONS(3689), - [anon_sym_PLUS_PLUS] = ACTIONS(3697), - [anon_sym_DASH_DASH] = ACTIONS(3697), - [anon_sym_PLUS] = ACTIONS(3689), - [anon_sym_DASH] = ACTIONS(3689), - [anon_sym_STAR] = ACTIONS(3694), - [anon_sym_SLASH] = ACTIONS(3689), - [anon_sym_PERCENT] = ACTIONS(3689), - [anon_sym_CARET] = ACTIONS(3689), - [anon_sym_PIPE] = ACTIONS(3689), - [anon_sym_AMP] = ACTIONS(3689), - [anon_sym_LT_LT] = ACTIONS(3689), - [anon_sym_GT_GT] = ACTIONS(3689), - [anon_sym_GT_GT_GT] = ACTIONS(3689), - [anon_sym_EQ_EQ] = ACTIONS(3697), - [anon_sym_BANG_EQ] = ACTIONS(3697), - [anon_sym_GT_EQ] = ACTIONS(3697), - [anon_sym_LT_EQ] = ACTIONS(3697), - [anon_sym_DOT] = ACTIONS(3694), - [anon_sym_scoped] = ACTIONS(3685), - [anon_sym_var] = ACTIONS(3685), - [anon_sym_yield] = ACTIONS(3685), - [anon_sym_switch] = ACTIONS(3689), - [anon_sym_when] = ACTIONS(3685), - [sym_discard] = ACTIONS(3685), - [anon_sym_DOT_DOT] = ACTIONS(3697), - [anon_sym_and] = ACTIONS(3685), - [anon_sym_or] = ACTIONS(3685), - [anon_sym_PLUS_EQ] = ACTIONS(3697), - [anon_sym_DASH_EQ] = ACTIONS(3697), - [anon_sym_STAR_EQ] = ACTIONS(3697), - [anon_sym_SLASH_EQ] = ACTIONS(3697), - [anon_sym_PERCENT_EQ] = ACTIONS(3697), - [anon_sym_AMP_EQ] = ACTIONS(3697), - [anon_sym_CARET_EQ] = ACTIONS(3697), - [anon_sym_PIPE_EQ] = ACTIONS(3697), - [anon_sym_LT_LT_EQ] = ACTIONS(3697), - [anon_sym_GT_GT_EQ] = ACTIONS(3697), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3697), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3697), - [anon_sym_AMP_AMP] = ACTIONS(3697), - [anon_sym_PIPE_PIPE] = ACTIONS(3697), - [anon_sym_QMARK_QMARK] = ACTIONS(3689), - [anon_sym_from] = ACTIONS(3685), - [anon_sym_into] = ACTIONS(3685), - [anon_sym_join] = ACTIONS(3685), - [anon_sym_on] = ACTIONS(3685), - [anon_sym_equals] = ACTIONS(3685), - [anon_sym_let] = ACTIONS(3685), - [anon_sym_orderby] = ACTIONS(3685), - [anon_sym_ascending] = ACTIONS(3685), - [anon_sym_descending] = ACTIONS(3685), - [anon_sym_group] = ACTIONS(3685), - [anon_sym_by] = ACTIONS(3685), - [anon_sym_select] = ACTIONS(3685), - [anon_sym_as] = ACTIONS(3689), - [anon_sym_is] = ACTIONS(3689), - [anon_sym_DASH_GT] = ACTIONS(3691), - [anon_sym_with] = ACTIONS(3689), + [sym__identifier_token] = ACTIONS(3855), + [anon_sym_alias] = ACTIONS(3857), + [anon_sym_SEMI] = ACTIONS(3869), + [anon_sym_global] = ACTIONS(3857), + [anon_sym_LBRACK] = ACTIONS(3869), + [anon_sym_COLON] = ACTIONS(3869), + [anon_sym_COMMA] = ACTIONS(3869), + [anon_sym_RBRACK] = ACTIONS(3869), + [anon_sym_LPAREN] = ACTIONS(3869), + [anon_sym_RPAREN] = ACTIONS(3869), + [anon_sym_LBRACE] = ACTIONS(3861), + [anon_sym_RBRACE] = ACTIONS(3869), + [anon_sym_file] = ACTIONS(3857), + [anon_sym_LT] = ACTIONS(3867), + [anon_sym_GT] = ACTIONS(3867), + [anon_sym_where] = ACTIONS(3857), + [anon_sym_QMARK] = ACTIONS(3867), + [anon_sym_notnull] = ACTIONS(3857), + [anon_sym_unmanaged] = ACTIONS(3857), + [anon_sym_BANG] = ACTIONS(3867), + [anon_sym_PLUS_PLUS] = ACTIONS(3869), + [anon_sym_DASH_DASH] = ACTIONS(3869), + [anon_sym_PLUS] = ACTIONS(3867), + [anon_sym_DASH] = ACTIONS(3867), + [anon_sym_STAR] = ACTIONS(3869), + [anon_sym_SLASH] = ACTIONS(3867), + [anon_sym_PERCENT] = ACTIONS(3869), + [anon_sym_CARET] = ACTIONS(3869), + [anon_sym_PIPE] = ACTIONS(3867), + [anon_sym_AMP] = ACTIONS(3867), + [anon_sym_LT_LT] = ACTIONS(3869), + [anon_sym_GT_GT] = ACTIONS(3867), + [anon_sym_GT_GT_GT] = ACTIONS(3869), + [anon_sym_EQ_EQ] = ACTIONS(3869), + [anon_sym_BANG_EQ] = ACTIONS(3869), + [anon_sym_GT_EQ] = ACTIONS(3869), + [anon_sym_LT_EQ] = ACTIONS(3869), + [anon_sym_DOT] = ACTIONS(3867), + [anon_sym_scoped] = ACTIONS(3857), + [anon_sym_var] = ACTIONS(3857), + [anon_sym_yield] = ACTIONS(3857), + [anon_sym_switch] = ACTIONS(3867), + [anon_sym_when] = ACTIONS(3857), + [sym_discard] = ACTIONS(3877), + [anon_sym_DOT_DOT] = ACTIONS(3869), + [anon_sym_and] = ACTIONS(3867), + [anon_sym_or] = ACTIONS(3867), + [anon_sym_AMP_AMP] = ACTIONS(3869), + [anon_sym_PIPE_PIPE] = ACTIONS(3869), + [anon_sym_QMARK_QMARK] = ACTIONS(3869), + [anon_sym_from] = ACTIONS(3857), + [anon_sym_into] = ACTIONS(3857), + [anon_sym_join] = ACTIONS(3857), + [anon_sym_on] = ACTIONS(3857), + [anon_sym_equals] = ACTIONS(3857), + [anon_sym_let] = ACTIONS(3857), + [anon_sym_orderby] = ACTIONS(3857), + [anon_sym_ascending] = ACTIONS(3857), + [anon_sym_descending] = ACTIONS(3857), + [anon_sym_group] = ACTIONS(3857), + [anon_sym_by] = ACTIONS(3857), + [anon_sym_select] = ACTIONS(3857), + [anon_sym_as] = ACTIONS(3867), + [anon_sym_is] = ACTIONS(3867), + [anon_sym_DASH_GT] = ACTIONS(3869), + [anon_sym_with] = ACTIONS(3867), + [aux_sym_preproc_if_token3] = ACTIONS(3869), + [aux_sym_preproc_else_token1] = ACTIONS(3869), + [aux_sym_preproc_elif_token1] = ACTIONS(3869), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -403957,14 +403681,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2237] = { - [sym_parameter_list] = STATE(7311), - [sym_positional_pattern_clause] = STATE(2271), - [sym_property_pattern_clause] = STATE(2294), - [sym__variable_designation] = STATE(3346), - [sym_parenthesized_variable_designation] = STATE(3340), - [sym__lambda_parameters] = STATE(7536), - [sym_identifier] = STATE(3342), - [sym__reserved_identifier] = STATE(3177), + [sym_type_argument_list] = STATE(2266), [sym_preproc_region] = STATE(2237), [sym_preproc_endregion] = STATE(2237), [sym_preproc_line] = STATE(2237), @@ -403974,96 +403691,94 @@ 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(3875), - [anon_sym_alias] = ACTIONS(3877), - [anon_sym_SEMI] = ACTIONS(3893), - [anon_sym_global] = ACTIONS(3877), - [anon_sym_LBRACK] = ACTIONS(3893), - [anon_sym_COLON] = ACTIONS(3893), - [anon_sym_COMMA] = ACTIONS(3893), - [anon_sym_RBRACK] = ACTIONS(3893), - [anon_sym_LPAREN] = ACTIONS(3893), - [anon_sym_RPAREN] = ACTIONS(3893), - [anon_sym_LBRACE] = ACTIONS(3881), - [anon_sym_RBRACE] = ACTIONS(3893), - [anon_sym_file] = ACTIONS(3877), - [anon_sym_LT] = ACTIONS(3895), - [anon_sym_GT] = ACTIONS(3895), - [anon_sym_in] = ACTIONS(3895), - [anon_sym_where] = ACTIONS(3877), - [anon_sym_QMARK] = ACTIONS(3895), - [anon_sym_notnull] = ACTIONS(3877), - [anon_sym_unmanaged] = ACTIONS(3877), - [anon_sym_BANG] = ACTIONS(3895), - [anon_sym_PLUS_PLUS] = ACTIONS(3893), - [anon_sym_DASH_DASH] = ACTIONS(3893), - [anon_sym_PLUS] = ACTIONS(3895), - [anon_sym_DASH] = ACTIONS(3895), - [anon_sym_STAR] = ACTIONS(3893), - [anon_sym_SLASH] = ACTIONS(3895), - [anon_sym_PERCENT] = ACTIONS(3893), - [anon_sym_CARET] = ACTIONS(3893), - [anon_sym_PIPE] = ACTIONS(3895), - [anon_sym_AMP] = ACTIONS(3895), - [anon_sym_LT_LT] = ACTIONS(3893), - [anon_sym_GT_GT] = ACTIONS(3895), - [anon_sym_GT_GT_GT] = ACTIONS(3893), - [anon_sym_EQ_EQ] = ACTIONS(3893), - [anon_sym_BANG_EQ] = ACTIONS(3893), - [anon_sym_GT_EQ] = ACTIONS(3893), - [anon_sym_LT_EQ] = ACTIONS(3893), - [anon_sym_DOT] = ACTIONS(3895), - [anon_sym_scoped] = ACTIONS(3877), - [anon_sym_var] = ACTIONS(3877), - [anon_sym_yield] = ACTIONS(3877), - [anon_sym_switch] = ACTIONS(3895), - [anon_sym_when] = ACTIONS(3877), - [sym_discard] = ACTIONS(3885), - [anon_sym_DOT_DOT] = ACTIONS(3893), - [anon_sym_and] = ACTIONS(3895), - [anon_sym_or] = ACTIONS(3895), - [anon_sym_AMP_AMP] = ACTIONS(3893), - [anon_sym_PIPE_PIPE] = ACTIONS(3893), - [anon_sym_QMARK_QMARK] = ACTIONS(3893), - [anon_sym_from] = ACTIONS(3877), - [anon_sym_into] = ACTIONS(3895), - [anon_sym_join] = ACTIONS(3877), - [anon_sym_on] = ACTIONS(3877), - [anon_sym_equals] = ACTIONS(3877), - [anon_sym_let] = ACTIONS(3877), - [anon_sym_orderby] = ACTIONS(3877), - [anon_sym_ascending] = ACTIONS(3877), - [anon_sym_descending] = ACTIONS(3877), - [anon_sym_group] = ACTIONS(3877), - [anon_sym_by] = ACTIONS(3877), - [anon_sym_select] = ACTIONS(3877), - [anon_sym_as] = ACTIONS(3895), - [anon_sym_is] = ACTIONS(3895), - [anon_sym_DASH_GT] = ACTIONS(3893), - [anon_sym_with] = ACTIONS(3895), - [aux_sym_preproc_if_token3] = ACTIONS(3893), - [aux_sym_preproc_else_token1] = ACTIONS(3893), - [aux_sym_preproc_elif_token1] = 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), + [sym__identifier_token] = ACTIONS(3638), + [anon_sym_alias] = ACTIONS(3638), + [anon_sym_global] = ACTIONS(3638), + [anon_sym_EQ] = ACTIONS(3638), + [anon_sym_LBRACK] = ACTIONS(3640), + [anon_sym_COLON] = ACTIONS(3638), + [anon_sym_COMMA] = ACTIONS(3640), + [anon_sym_LPAREN] = ACTIONS(3640), + [anon_sym_file] = ACTIONS(3638), + [anon_sym_LT] = ACTIONS(3839), + [anon_sym_GT] = ACTIONS(3638), + [anon_sym_where] = ACTIONS(3638), + [anon_sym_QMARK] = ACTIONS(3638), + [anon_sym_notnull] = ACTIONS(3638), + [anon_sym_unmanaged] = ACTIONS(3638), + [anon_sym_BANG] = ACTIONS(3638), + [anon_sym_PLUS_PLUS] = ACTIONS(3640), + [anon_sym_DASH_DASH] = ACTIONS(3640), + [anon_sym_PLUS] = ACTIONS(3638), + [anon_sym_DASH] = ACTIONS(3638), + [anon_sym_STAR] = ACTIONS(3638), + [anon_sym_SLASH] = ACTIONS(3638), + [anon_sym_PERCENT] = ACTIONS(3638), + [anon_sym_CARET] = ACTIONS(3638), + [anon_sym_PIPE] = ACTIONS(3638), + [anon_sym_AMP] = ACTIONS(3638), + [anon_sym_LT_LT] = ACTIONS(3638), + [anon_sym_GT_GT] = ACTIONS(3638), + [anon_sym_GT_GT_GT] = ACTIONS(3638), + [anon_sym_EQ_EQ] = ACTIONS(3640), + [anon_sym_BANG_EQ] = ACTIONS(3640), + [anon_sym_GT_EQ] = ACTIONS(3640), + [anon_sym_LT_EQ] = ACTIONS(3640), + [anon_sym_DOT] = ACTIONS(3638), + [anon_sym_scoped] = ACTIONS(3638), + [anon_sym_EQ_GT] = ACTIONS(3651), + [anon_sym_COLON_COLON] = ACTIONS(3653), + [anon_sym_var] = ACTIONS(3638), + [anon_sym_yield] = ACTIONS(3638), + [anon_sym_switch] = ACTIONS(3638), + [anon_sym_when] = ACTIONS(3638), + [anon_sym_DOT_DOT] = ACTIONS(3640), + [anon_sym_and] = ACTIONS(3638), + [anon_sym_or] = ACTIONS(3638), + [anon_sym_PLUS_EQ] = ACTIONS(3640), + [anon_sym_DASH_EQ] = ACTIONS(3640), + [anon_sym_STAR_EQ] = ACTIONS(3640), + [anon_sym_SLASH_EQ] = ACTIONS(3640), + [anon_sym_PERCENT_EQ] = ACTIONS(3640), + [anon_sym_AMP_EQ] = ACTIONS(3640), + [anon_sym_CARET_EQ] = ACTIONS(3640), + [anon_sym_PIPE_EQ] = ACTIONS(3640), + [anon_sym_LT_LT_EQ] = ACTIONS(3640), + [anon_sym_GT_GT_EQ] = ACTIONS(3640), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3640), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3640), + [anon_sym_AMP_AMP] = ACTIONS(3640), + [anon_sym_PIPE_PIPE] = ACTIONS(3640), + [anon_sym_QMARK_QMARK] = ACTIONS(3638), + [anon_sym_from] = ACTIONS(3638), + [anon_sym_into] = ACTIONS(3638), + [anon_sym_join] = ACTIONS(3638), + [anon_sym_on] = ACTIONS(3638), + [anon_sym_equals] = ACTIONS(3638), + [anon_sym_let] = ACTIONS(3638), + [anon_sym_orderby] = ACTIONS(3638), + [anon_sym_ascending] = ACTIONS(3638), + [anon_sym_descending] = ACTIONS(3638), + [anon_sym_group] = ACTIONS(3638), + [anon_sym_by] = ACTIONS(3638), + [anon_sym_select] = ACTIONS(3638), + [anon_sym_as] = ACTIONS(3638), + [anon_sym_is] = ACTIONS(3638), + [anon_sym_DASH_GT] = ACTIONS(3640), + [anon_sym_with] = ACTIONS(3638), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_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(3640), }, [2238] = { - [sym_parameter_list] = STATE(7311), - [sym_positional_pattern_clause] = STATE(2271), - [sym_property_pattern_clause] = STATE(2294), - [sym__variable_designation] = STATE(3346), - [sym_parenthesized_variable_designation] = STATE(3340), - [sym__lambda_parameters] = STATE(7536), - [sym_identifier] = STATE(3342), - [sym__reserved_identifier] = STATE(3177), [sym_preproc_region] = STATE(2238), [sym_preproc_endregion] = STATE(2238), [sym_preproc_line] = STATE(2238), @@ -404073,76 +403788,83 @@ 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(3875), - [anon_sym_alias] = ACTIONS(3877), - [anon_sym_SEMI] = ACTIONS(3893), - [anon_sym_global] = ACTIONS(3877), - [anon_sym_LBRACK] = ACTIONS(3893), - [anon_sym_COLON] = ACTIONS(3893), - [anon_sym_COMMA] = ACTIONS(3893), - [anon_sym_RBRACK] = ACTIONS(3893), - [anon_sym_LPAREN] = ACTIONS(3893), - [anon_sym_RPAREN] = ACTIONS(3893), - [anon_sym_LBRACE] = ACTIONS(3881), - [anon_sym_RBRACE] = ACTIONS(3893), - [anon_sym_file] = ACTIONS(3877), - [anon_sym_LT] = ACTIONS(3895), - [anon_sym_GT] = ACTIONS(3895), - [anon_sym_in] = ACTIONS(3895), - [anon_sym_where] = ACTIONS(3877), - [anon_sym_QMARK] = ACTIONS(3895), - [anon_sym_notnull] = ACTIONS(3877), - [anon_sym_unmanaged] = ACTIONS(3877), - [anon_sym_BANG] = ACTIONS(3895), - [anon_sym_PLUS_PLUS] = ACTIONS(3893), - [anon_sym_DASH_DASH] = ACTIONS(3893), - [anon_sym_PLUS] = ACTIONS(3895), - [anon_sym_DASH] = ACTIONS(3895), - [anon_sym_STAR] = ACTIONS(3893), - [anon_sym_SLASH] = ACTIONS(3895), - [anon_sym_PERCENT] = ACTIONS(3893), - [anon_sym_CARET] = ACTIONS(3893), - [anon_sym_PIPE] = ACTIONS(3895), - [anon_sym_AMP] = ACTIONS(3895), - [anon_sym_LT_LT] = ACTIONS(3893), - [anon_sym_GT_GT] = ACTIONS(3895), - [anon_sym_GT_GT_GT] = ACTIONS(3893), - [anon_sym_EQ_EQ] = ACTIONS(3893), - [anon_sym_BANG_EQ] = ACTIONS(3893), - [anon_sym_GT_EQ] = ACTIONS(3893), - [anon_sym_LT_EQ] = ACTIONS(3893), - [anon_sym_DOT] = ACTIONS(3895), - [anon_sym_scoped] = ACTIONS(3877), - [anon_sym_var] = ACTIONS(3877), - [anon_sym_yield] = ACTIONS(3877), - [anon_sym_switch] = ACTIONS(3895), - [anon_sym_when] = ACTIONS(3877), - [sym_discard] = ACTIONS(3885), - [anon_sym_DOT_DOT] = ACTIONS(3893), - [anon_sym_and] = ACTIONS(3883), - [anon_sym_or] = ACTIONS(3883), - [anon_sym_AMP_AMP] = ACTIONS(3893), - [anon_sym_PIPE_PIPE] = ACTIONS(3893), - [anon_sym_QMARK_QMARK] = ACTIONS(3893), - [anon_sym_from] = ACTIONS(3877), - [anon_sym_into] = ACTIONS(3895), - [anon_sym_join] = ACTIONS(3877), - [anon_sym_on] = ACTIONS(3877), - [anon_sym_equals] = ACTIONS(3877), - [anon_sym_let] = ACTIONS(3877), - [anon_sym_orderby] = ACTIONS(3877), - [anon_sym_ascending] = ACTIONS(3877), - [anon_sym_descending] = ACTIONS(3877), - [anon_sym_group] = ACTIONS(3877), - [anon_sym_by] = ACTIONS(3877), - [anon_sym_select] = ACTIONS(3877), - [anon_sym_as] = ACTIONS(3895), - [anon_sym_is] = ACTIONS(3895), - [anon_sym_DASH_GT] = ACTIONS(3893), - [anon_sym_with] = ACTIONS(3895), - [aux_sym_preproc_if_token3] = ACTIONS(3893), - [aux_sym_preproc_else_token1] = ACTIONS(3893), - [aux_sym_preproc_elif_token1] = ACTIONS(3893), + [sym__identifier_token] = ACTIONS(3691), + [anon_sym_alias] = ACTIONS(3691), + [anon_sym_SEMI] = ACTIONS(3711), + [anon_sym_global] = ACTIONS(3691), + [anon_sym_EQ] = ACTIONS(3696), + [anon_sym_LBRACK] = ACTIONS(3713), + [anon_sym_COLON] = ACTIONS(3711), + [anon_sym_COMMA] = ACTIONS(3711), + [anon_sym_RBRACK] = ACTIONS(3711), + [anon_sym_LPAREN] = ACTIONS(3713), + [anon_sym_RPAREN] = ACTIONS(3711), + [anon_sym_RBRACE] = ACTIONS(3711), + [anon_sym_file] = ACTIONS(3691), + [anon_sym_LT] = ACTIONS(3696), + [anon_sym_GT] = ACTIONS(3696), + [anon_sym_where] = ACTIONS(3691), + [anon_sym_QMARK] = ACTIONS(3716), + [anon_sym_notnull] = ACTIONS(3691), + [anon_sym_unmanaged] = ACTIONS(3691), + [anon_sym_BANG] = ACTIONS(3696), + [anon_sym_PLUS_PLUS] = ACTIONS(3711), + [anon_sym_DASH_DASH] = ACTIONS(3711), + [anon_sym_PLUS] = ACTIONS(3696), + [anon_sym_DASH] = ACTIONS(3696), + [anon_sym_STAR] = ACTIONS(3716), + [anon_sym_SLASH] = ACTIONS(3696), + [anon_sym_PERCENT] = ACTIONS(3696), + [anon_sym_CARET] = ACTIONS(3696), + [anon_sym_PIPE] = ACTIONS(3696), + [anon_sym_AMP] = ACTIONS(3696), + [anon_sym_LT_LT] = ACTIONS(3696), + [anon_sym_GT_GT] = ACTIONS(3696), + [anon_sym_GT_GT_GT] = ACTIONS(3696), + [anon_sym_EQ_EQ] = ACTIONS(3711), + [anon_sym_BANG_EQ] = ACTIONS(3711), + [anon_sym_GT_EQ] = ACTIONS(3711), + [anon_sym_LT_EQ] = ACTIONS(3711), + [anon_sym_DOT] = ACTIONS(3716), + [anon_sym_scoped] = ACTIONS(3691), + [anon_sym_var] = ACTIONS(3691), + [anon_sym_yield] = ACTIONS(3691), + [anon_sym_switch] = ACTIONS(3696), + [anon_sym_when] = ACTIONS(3691), + [anon_sym_DOT_DOT] = ACTIONS(3711), + [anon_sym_and] = ACTIONS(3696), + [anon_sym_or] = ACTIONS(3696), + [anon_sym_PLUS_EQ] = ACTIONS(3711), + [anon_sym_DASH_EQ] = ACTIONS(3711), + [anon_sym_STAR_EQ] = ACTIONS(3711), + [anon_sym_SLASH_EQ] = ACTIONS(3711), + [anon_sym_PERCENT_EQ] = ACTIONS(3711), + [anon_sym_AMP_EQ] = ACTIONS(3711), + [anon_sym_CARET_EQ] = ACTIONS(3711), + [anon_sym_PIPE_EQ] = ACTIONS(3711), + [anon_sym_LT_LT_EQ] = ACTIONS(3711), + [anon_sym_GT_GT_EQ] = ACTIONS(3711), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3711), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3711), + [anon_sym_AMP_AMP] = ACTIONS(3711), + [anon_sym_PIPE_PIPE] = ACTIONS(3711), + [anon_sym_QMARK_QMARK] = ACTIONS(3696), + [anon_sym_from] = ACTIONS(3691), + [anon_sym_into] = ACTIONS(3691), + [anon_sym_join] = ACTIONS(3691), + [anon_sym_on] = ACTIONS(3691), + [anon_sym_equals] = ACTIONS(3691), + [anon_sym_let] = ACTIONS(3691), + [anon_sym_orderby] = ACTIONS(3691), + [anon_sym_ascending] = ACTIONS(3691), + [anon_sym_descending] = ACTIONS(3691), + [anon_sym_group] = ACTIONS(3691), + [anon_sym_by] = ACTIONS(3691), + [anon_sym_select] = ACTIONS(3691), + [anon_sym_as] = ACTIONS(3696), + [anon_sym_is] = ACTIONS(3696), + [anon_sym_DASH_GT] = ACTIONS(3713), + [anon_sym_with] = ACTIONS(3696), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -404155,6 +403877,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2239] = { + [sym_parameter_list] = STATE(7531), + [sym_positional_pattern_clause] = STATE(2280), + [sym_property_pattern_clause] = STATE(2326), + [sym__variable_designation] = STATE(3422), + [sym_parenthesized_variable_designation] = STATE(3352), + [sym__lambda_parameters] = STATE(7378), + [sym_identifier] = STATE(3430), + [sym__reserved_identifier] = STATE(3199), [sym_preproc_region] = STATE(2239), [sym_preproc_endregion] = STATE(2239), [sym_preproc_line] = STATE(2239), @@ -404164,94 +403894,85 @@ 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(3447), - [anon_sym_alias] = ACTIONS(3447), - [anon_sym_global] = ACTIONS(3447), - [anon_sym_EQ] = ACTIONS(3447), - [anon_sym_LBRACK] = ACTIONS(3445), - [anon_sym_COLON] = ACTIONS(3447), - [anon_sym_COMMA] = ACTIONS(3445), - [anon_sym_LPAREN] = ACTIONS(3445), - [anon_sym_LBRACE] = ACTIONS(3445), - [anon_sym_file] = ACTIONS(3447), - [anon_sym_LT] = ACTIONS(3447), - [anon_sym_GT] = ACTIONS(3447), - [anon_sym_where] = ACTIONS(3447), - [anon_sym_QMARK] = ACTIONS(3447), - [anon_sym_notnull] = ACTIONS(3447), - [anon_sym_unmanaged] = ACTIONS(3447), - [anon_sym_BANG] = ACTIONS(3447), - [anon_sym_PLUS_PLUS] = ACTIONS(3445), - [anon_sym_DASH_DASH] = ACTIONS(3445), - [anon_sym_PLUS] = ACTIONS(3447), - [anon_sym_DASH] = ACTIONS(3447), - [anon_sym_STAR] = ACTIONS(3447), - [anon_sym_SLASH] = ACTIONS(3447), - [anon_sym_PERCENT] = ACTIONS(3447), - [anon_sym_CARET] = ACTIONS(3447), - [anon_sym_PIPE] = ACTIONS(3447), - [anon_sym_AMP] = ACTIONS(3447), - [anon_sym_LT_LT] = ACTIONS(3447), - [anon_sym_GT_GT] = ACTIONS(3447), - [anon_sym_GT_GT_GT] = ACTIONS(3447), - [anon_sym_EQ_EQ] = ACTIONS(3445), - [anon_sym_BANG_EQ] = ACTIONS(3445), - [anon_sym_GT_EQ] = ACTIONS(3445), - [anon_sym_LT_EQ] = ACTIONS(3445), - [anon_sym_DOT] = ACTIONS(3447), - [anon_sym_scoped] = ACTIONS(3447), - [anon_sym_EQ_GT] = ACTIONS(3445), - [anon_sym_COLON_COLON] = ACTIONS(3445), - [anon_sym_var] = ACTIONS(3447), - [anon_sym_yield] = ACTIONS(3447), - [anon_sym_switch] = ACTIONS(3447), - [anon_sym_when] = ACTIONS(3447), - [sym_discard] = ACTIONS(3447), - [anon_sym_DOT_DOT] = ACTIONS(3445), - [anon_sym_and] = ACTIONS(3447), - [anon_sym_or] = ACTIONS(3447), - [anon_sym_PLUS_EQ] = ACTIONS(3445), - [anon_sym_DASH_EQ] = ACTIONS(3445), - [anon_sym_STAR_EQ] = ACTIONS(3445), - [anon_sym_SLASH_EQ] = ACTIONS(3445), - [anon_sym_PERCENT_EQ] = ACTIONS(3445), - [anon_sym_AMP_EQ] = ACTIONS(3445), - [anon_sym_CARET_EQ] = ACTIONS(3445), - [anon_sym_PIPE_EQ] = ACTIONS(3445), - [anon_sym_LT_LT_EQ] = ACTIONS(3445), - [anon_sym_GT_GT_EQ] = ACTIONS(3445), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3445), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3445), - [anon_sym_AMP_AMP] = ACTIONS(3445), - [anon_sym_PIPE_PIPE] = ACTIONS(3445), - [anon_sym_QMARK_QMARK] = ACTIONS(3447), - [anon_sym_from] = ACTIONS(3447), - [anon_sym_into] = ACTIONS(3447), - [anon_sym_join] = ACTIONS(3447), - [anon_sym_on] = ACTIONS(3447), - [anon_sym_equals] = ACTIONS(3447), - [anon_sym_let] = ACTIONS(3447), - [anon_sym_orderby] = ACTIONS(3447), - [anon_sym_ascending] = ACTIONS(3447), - [anon_sym_descending] = ACTIONS(3447), - [anon_sym_group] = ACTIONS(3447), - [anon_sym_by] = ACTIONS(3447), - [anon_sym_select] = ACTIONS(3447), - [anon_sym_as] = ACTIONS(3447), - [anon_sym_is] = ACTIONS(3447), - [anon_sym_DASH_GT] = ACTIONS(3445), - [anon_sym_with] = ACTIONS(3447), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_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(3445), + [sym__identifier_token] = ACTIONS(3855), + [anon_sym_alias] = ACTIONS(3857), + [anon_sym_SEMI] = ACTIONS(3859), + [anon_sym_global] = ACTIONS(3857), + [anon_sym_LBRACK] = ACTIONS(3859), + [anon_sym_COLON] = ACTIONS(3859), + [anon_sym_COMMA] = ACTIONS(3859), + [anon_sym_RBRACK] = ACTIONS(3859), + [anon_sym_LPAREN] = ACTIONS(3859), + [anon_sym_RPAREN] = ACTIONS(3859), + [anon_sym_LBRACE] = ACTIONS(3861), + [anon_sym_RBRACE] = ACTIONS(3859), + [anon_sym_file] = ACTIONS(3857), + [anon_sym_LT] = ACTIONS(3863), + [anon_sym_GT] = ACTIONS(3863), + [anon_sym_where] = ACTIONS(3857), + [anon_sym_QMARK] = ACTIONS(3863), + [anon_sym_notnull] = ACTIONS(3857), + [anon_sym_unmanaged] = ACTIONS(3857), + [anon_sym_BANG] = ACTIONS(3863), + [anon_sym_PLUS_PLUS] = ACTIONS(3859), + [anon_sym_DASH_DASH] = ACTIONS(3859), + [anon_sym_PLUS] = ACTIONS(3863), + [anon_sym_DASH] = ACTIONS(3863), + [anon_sym_STAR] = ACTIONS(3859), + [anon_sym_SLASH] = ACTIONS(3863), + [anon_sym_PERCENT] = ACTIONS(3859), + [anon_sym_CARET] = ACTIONS(3859), + [anon_sym_PIPE] = ACTIONS(3863), + [anon_sym_AMP] = ACTIONS(3863), + [anon_sym_LT_LT] = ACTIONS(3859), + [anon_sym_GT_GT] = ACTIONS(3863), + [anon_sym_GT_GT_GT] = ACTIONS(3859), + [anon_sym_EQ_EQ] = ACTIONS(3859), + [anon_sym_BANG_EQ] = ACTIONS(3859), + [anon_sym_GT_EQ] = ACTIONS(3859), + [anon_sym_LT_EQ] = ACTIONS(3859), + [anon_sym_DOT] = ACTIONS(3863), + [anon_sym_scoped] = ACTIONS(3857), + [anon_sym_var] = ACTIONS(3857), + [anon_sym_yield] = ACTIONS(3857), + [anon_sym_switch] = ACTIONS(3863), + [anon_sym_when] = ACTIONS(3857), + [sym_discard] = ACTIONS(3877), + [anon_sym_DOT_DOT] = ACTIONS(3859), + [anon_sym_and] = ACTIONS(3863), + [anon_sym_or] = ACTIONS(3863), + [anon_sym_AMP_AMP] = ACTIONS(3859), + [anon_sym_PIPE_PIPE] = ACTIONS(3859), + [anon_sym_QMARK_QMARK] = ACTIONS(3859), + [anon_sym_from] = ACTIONS(3857), + [anon_sym_into] = ACTIONS(3857), + [anon_sym_join] = ACTIONS(3857), + [anon_sym_on] = ACTIONS(3857), + [anon_sym_equals] = ACTIONS(3857), + [anon_sym_let] = ACTIONS(3857), + [anon_sym_orderby] = ACTIONS(3857), + [anon_sym_ascending] = ACTIONS(3857), + [anon_sym_descending] = ACTIONS(3857), + [anon_sym_group] = ACTIONS(3857), + [anon_sym_by] = ACTIONS(3857), + [anon_sym_select] = ACTIONS(3857), + [anon_sym_as] = ACTIONS(3863), + [anon_sym_is] = ACTIONS(3863), + [anon_sym_DASH_GT] = ACTIONS(3859), + [anon_sym_with] = ACTIONS(3863), + [aux_sym_preproc_if_token3] = ACTIONS(3859), + [aux_sym_preproc_else_token1] = ACTIONS(3859), + [aux_sym_preproc_elif_token1] = ACTIONS(3859), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_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), @@ -404263,94 +403984,93 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2240), [sym_preproc_define] = STATE(2240), [sym_preproc_undef] = STATE(2240), - [sym__identifier_token] = ACTIONS(3650), - [anon_sym_alias] = ACTIONS(3650), - [anon_sym_global] = ACTIONS(3650), - [anon_sym_EQ] = ACTIONS(3650), - [anon_sym_LBRACK] = ACTIONS(3652), - [anon_sym_COLON] = ACTIONS(3650), - [anon_sym_COMMA] = ACTIONS(3652), - [anon_sym_LPAREN] = ACTIONS(3652), - [anon_sym_LBRACE] = ACTIONS(3652), - [anon_sym_file] = ACTIONS(3650), - [anon_sym_LT] = ACTIONS(3650), - [anon_sym_GT] = ACTIONS(3650), - [anon_sym_where] = ACTIONS(3650), - [anon_sym_QMARK] = ACTIONS(3650), - [anon_sym_notnull] = ACTIONS(3650), - [anon_sym_unmanaged] = ACTIONS(3650), - [anon_sym_BANG] = ACTIONS(3650), - [anon_sym_PLUS_PLUS] = ACTIONS(3652), - [anon_sym_DASH_DASH] = ACTIONS(3652), - [anon_sym_PLUS] = ACTIONS(3650), - [anon_sym_DASH] = ACTIONS(3650), - [anon_sym_STAR] = ACTIONS(3650), - [anon_sym_SLASH] = ACTIONS(3650), - [anon_sym_PERCENT] = ACTIONS(3650), - [anon_sym_CARET] = ACTIONS(3650), - [anon_sym_PIPE] = ACTIONS(3650), - [anon_sym_AMP] = ACTIONS(3650), - [anon_sym_LT_LT] = ACTIONS(3650), - [anon_sym_GT_GT] = ACTIONS(3650), - [anon_sym_GT_GT_GT] = ACTIONS(3650), - [anon_sym_EQ_EQ] = ACTIONS(3652), - [anon_sym_BANG_EQ] = ACTIONS(3652), - [anon_sym_GT_EQ] = ACTIONS(3652), - [anon_sym_LT_EQ] = ACTIONS(3652), - [anon_sym_DOT] = ACTIONS(3650), - [anon_sym_scoped] = ACTIONS(3650), - [anon_sym_EQ_GT] = ACTIONS(3652), - [anon_sym_COLON_COLON] = ACTIONS(3652), - [anon_sym_var] = ACTIONS(3650), - [anon_sym_yield] = ACTIONS(3650), - [anon_sym_switch] = ACTIONS(3650), - [anon_sym_when] = ACTIONS(3650), - [sym_discard] = ACTIONS(3650), - [anon_sym_DOT_DOT] = ACTIONS(3652), - [anon_sym_and] = ACTIONS(3650), - [anon_sym_or] = ACTIONS(3650), - [anon_sym_PLUS_EQ] = ACTIONS(3652), - [anon_sym_DASH_EQ] = ACTIONS(3652), - [anon_sym_STAR_EQ] = ACTIONS(3652), - [anon_sym_SLASH_EQ] = ACTIONS(3652), - [anon_sym_PERCENT_EQ] = ACTIONS(3652), - [anon_sym_AMP_EQ] = ACTIONS(3652), - [anon_sym_CARET_EQ] = ACTIONS(3652), - [anon_sym_PIPE_EQ] = ACTIONS(3652), - [anon_sym_LT_LT_EQ] = ACTIONS(3652), - [anon_sym_GT_GT_EQ] = ACTIONS(3652), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3652), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3652), - [anon_sym_AMP_AMP] = ACTIONS(3652), - [anon_sym_PIPE_PIPE] = ACTIONS(3652), - [anon_sym_QMARK_QMARK] = ACTIONS(3650), - [anon_sym_from] = ACTIONS(3650), - [anon_sym_into] = ACTIONS(3650), - [anon_sym_join] = ACTIONS(3650), - [anon_sym_on] = ACTIONS(3650), - [anon_sym_equals] = ACTIONS(3650), - [anon_sym_let] = ACTIONS(3650), - [anon_sym_orderby] = ACTIONS(3650), - [anon_sym_ascending] = ACTIONS(3650), - [anon_sym_descending] = ACTIONS(3650), - [anon_sym_group] = ACTIONS(3650), - [anon_sym_by] = ACTIONS(3650), - [anon_sym_select] = ACTIONS(3650), - [anon_sym_as] = ACTIONS(3650), - [anon_sym_is] = ACTIONS(3650), - [anon_sym_DASH_GT] = ACTIONS(3652), - [anon_sym_with] = ACTIONS(3650), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_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(3652), + [sym__identifier_token] = ACTIONS(3431), + [anon_sym_alias] = ACTIONS(3431), + [anon_sym_global] = ACTIONS(3431), + [anon_sym_EQ] = ACTIONS(3431), + [anon_sym_LBRACK] = ACTIONS(3429), + [anon_sym_COLON] = ACTIONS(3431), + [anon_sym_LPAREN] = ACTIONS(3429), + [anon_sym_return] = ACTIONS(3879), + [anon_sym_file] = ACTIONS(3431), + [anon_sym_LT] = ACTIONS(3431), + [anon_sym_GT] = ACTIONS(3431), + [anon_sym_where] = ACTIONS(3431), + [anon_sym_QMARK] = ACTIONS(3431), + [anon_sym_notnull] = ACTIONS(3431), + [anon_sym_unmanaged] = ACTIONS(3431), + [anon_sym_BANG] = ACTIONS(3431), + [anon_sym_PLUS_PLUS] = ACTIONS(3429), + [anon_sym_DASH_DASH] = ACTIONS(3429), + [anon_sym_PLUS] = ACTIONS(3431), + [anon_sym_DASH] = ACTIONS(3431), + [anon_sym_STAR] = ACTIONS(3431), + [anon_sym_SLASH] = ACTIONS(3431), + [anon_sym_PERCENT] = ACTIONS(3431), + [anon_sym_CARET] = ACTIONS(3431), + [anon_sym_PIPE] = ACTIONS(3431), + [anon_sym_AMP] = ACTIONS(3431), + [anon_sym_LT_LT] = ACTIONS(3431), + [anon_sym_GT_GT] = ACTIONS(3431), + [anon_sym_GT_GT_GT] = ACTIONS(3431), + [anon_sym_EQ_EQ] = ACTIONS(3429), + [anon_sym_BANG_EQ] = ACTIONS(3429), + [anon_sym_GT_EQ] = ACTIONS(3429), + [anon_sym_LT_EQ] = ACTIONS(3429), + [anon_sym_DOT] = ACTIONS(3431), + [anon_sym_scoped] = ACTIONS(3431), + [anon_sym_EQ_GT] = ACTIONS(3429), + [anon_sym_COLON_COLON] = ACTIONS(3429), + [anon_sym_var] = ACTIONS(3431), + [anon_sym_break] = ACTIONS(3881), + [anon_sym_yield] = ACTIONS(3431), + [anon_sym_switch] = ACTIONS(3431), + [anon_sym_when] = ACTIONS(3431), + [anon_sym_DOT_DOT] = ACTIONS(3429), + [anon_sym_PLUS_EQ] = ACTIONS(3429), + [anon_sym_DASH_EQ] = ACTIONS(3429), + [anon_sym_STAR_EQ] = ACTIONS(3429), + [anon_sym_SLASH_EQ] = ACTIONS(3429), + [anon_sym_PERCENT_EQ] = ACTIONS(3429), + [anon_sym_AMP_EQ] = ACTIONS(3429), + [anon_sym_CARET_EQ] = ACTIONS(3429), + [anon_sym_PIPE_EQ] = ACTIONS(3429), + [anon_sym_LT_LT_EQ] = ACTIONS(3429), + [anon_sym_GT_GT_EQ] = ACTIONS(3429), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3429), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3429), + [anon_sym_AMP_AMP] = ACTIONS(3429), + [anon_sym_PIPE_PIPE] = ACTIONS(3429), + [anon_sym_QMARK_QMARK] = 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), + [anon_sym_as] = ACTIONS(3431), + [anon_sym_is] = ACTIONS(3431), + [anon_sym_DASH_GT] = ACTIONS(3429), + [anon_sym_with] = ACTIONS(3431), + [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), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), }, [2241] = { [sym_preproc_region] = STATE(2241), @@ -404362,83 +404082,83 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2241), [sym_preproc_define] = STATE(2241), [sym_preproc_undef] = STATE(2241), - [sym__identifier_token] = ACTIONS(3650), - [anon_sym_alias] = ACTIONS(3650), - [anon_sym_global] = ACTIONS(3650), - [anon_sym_EQ] = ACTIONS(3650), - [anon_sym_LBRACK] = ACTIONS(3652), - [anon_sym_COLON] = ACTIONS(3652), - [anon_sym_COMMA] = ACTIONS(3652), - [anon_sym_LPAREN] = ACTIONS(3652), - [anon_sym_RPAREN] = ACTIONS(3652), - [anon_sym_LBRACE] = ACTIONS(3652), - [anon_sym_RBRACE] = ACTIONS(3652), - [anon_sym_file] = ACTIONS(3650), - [anon_sym_LT] = ACTIONS(3650), - [anon_sym_GT] = ACTIONS(3650), - [anon_sym_where] = ACTIONS(3650), - [anon_sym_QMARK] = ACTIONS(3650), - [anon_sym_notnull] = ACTIONS(3650), - [anon_sym_unmanaged] = ACTIONS(3650), - [anon_sym_BANG] = ACTIONS(3650), - [anon_sym_PLUS_PLUS] = ACTIONS(3652), - [anon_sym_DASH_DASH] = ACTIONS(3652), - [anon_sym_PLUS] = ACTIONS(3650), - [anon_sym_DASH] = ACTIONS(3650), - [anon_sym_STAR] = ACTIONS(3650), - [anon_sym_SLASH] = ACTIONS(3650), - [anon_sym_PERCENT] = ACTIONS(3650), - [anon_sym_CARET] = ACTIONS(3650), - [anon_sym_PIPE] = ACTIONS(3650), - [anon_sym_AMP] = ACTIONS(3650), - [anon_sym_LT_LT] = ACTIONS(3650), - [anon_sym_GT_GT] = ACTIONS(3650), - [anon_sym_GT_GT_GT] = ACTIONS(3650), - [anon_sym_EQ_EQ] = ACTIONS(3652), - [anon_sym_BANG_EQ] = ACTIONS(3652), - [anon_sym_GT_EQ] = ACTIONS(3652), - [anon_sym_LT_EQ] = ACTIONS(3652), - [anon_sym_DOT] = ACTIONS(3650), - [anon_sym_scoped] = ACTIONS(3650), - [anon_sym_var] = ACTIONS(3650), - [anon_sym_yield] = ACTIONS(3650), - [anon_sym_switch] = ACTIONS(3650), - [anon_sym_when] = ACTIONS(3650), - [sym_discard] = ACTIONS(3650), - [anon_sym_DOT_DOT] = ACTIONS(3652), - [anon_sym_and] = ACTIONS(3650), - [anon_sym_or] = ACTIONS(3650), - [anon_sym_PLUS_EQ] = ACTIONS(3652), - [anon_sym_DASH_EQ] = ACTIONS(3652), - [anon_sym_STAR_EQ] = ACTIONS(3652), - [anon_sym_SLASH_EQ] = ACTIONS(3652), - [anon_sym_PERCENT_EQ] = ACTIONS(3652), - [anon_sym_AMP_EQ] = ACTIONS(3652), - [anon_sym_CARET_EQ] = ACTIONS(3652), - [anon_sym_PIPE_EQ] = ACTIONS(3652), - [anon_sym_LT_LT_EQ] = ACTIONS(3652), - [anon_sym_GT_GT_EQ] = ACTIONS(3652), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3652), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3652), - [anon_sym_AMP_AMP] = ACTIONS(3652), - [anon_sym_PIPE_PIPE] = ACTIONS(3652), - [anon_sym_QMARK_QMARK] = ACTIONS(3650), - [anon_sym_from] = ACTIONS(3650), - [anon_sym_into] = ACTIONS(3650), - [anon_sym_join] = ACTIONS(3650), - [anon_sym_on] = ACTIONS(3650), - [anon_sym_equals] = ACTIONS(3650), - [anon_sym_let] = ACTIONS(3650), - [anon_sym_orderby] = ACTIONS(3650), - [anon_sym_ascending] = ACTIONS(3650), - [anon_sym_descending] = ACTIONS(3650), - [anon_sym_group] = ACTIONS(3650), - [anon_sym_by] = ACTIONS(3650), - [anon_sym_select] = ACTIONS(3650), - [anon_sym_as] = ACTIONS(3650), - [anon_sym_is] = ACTIONS(3650), - [anon_sym_DASH_GT] = ACTIONS(3652), - [anon_sym_with] = ACTIONS(3650), + [sym__identifier_token] = ACTIONS(3431), + [anon_sym_alias] = ACTIONS(3431), + [anon_sym_global] = ACTIONS(3431), + [anon_sym_EQ] = ACTIONS(3431), + [anon_sym_LBRACK] = ACTIONS(3429), + [anon_sym_COLON] = ACTIONS(3429), + [anon_sym_COMMA] = ACTIONS(3429), + [anon_sym_LPAREN] = ACTIONS(3429), + [anon_sym_RPAREN] = ACTIONS(3429), + [anon_sym_LBRACE] = ACTIONS(3429), + [anon_sym_RBRACE] = ACTIONS(3429), + [anon_sym_file] = ACTIONS(3431), + [anon_sym_LT] = ACTIONS(3431), + [anon_sym_GT] = ACTIONS(3431), + [anon_sym_where] = ACTIONS(3431), + [anon_sym_QMARK] = ACTIONS(3431), + [anon_sym_notnull] = ACTIONS(3431), + [anon_sym_unmanaged] = ACTIONS(3431), + [anon_sym_BANG] = ACTIONS(3431), + [anon_sym_PLUS_PLUS] = ACTIONS(3429), + [anon_sym_DASH_DASH] = ACTIONS(3429), + [anon_sym_PLUS] = ACTIONS(3431), + [anon_sym_DASH] = ACTIONS(3431), + [anon_sym_STAR] = ACTIONS(3431), + [anon_sym_SLASH] = ACTIONS(3431), + [anon_sym_PERCENT] = ACTIONS(3431), + [anon_sym_CARET] = ACTIONS(3431), + [anon_sym_PIPE] = ACTIONS(3431), + [anon_sym_AMP] = ACTIONS(3431), + [anon_sym_LT_LT] = ACTIONS(3431), + [anon_sym_GT_GT] = ACTIONS(3431), + [anon_sym_GT_GT_GT] = ACTIONS(3431), + [anon_sym_EQ_EQ] = ACTIONS(3429), + [anon_sym_BANG_EQ] = ACTIONS(3429), + [anon_sym_GT_EQ] = ACTIONS(3429), + [anon_sym_LT_EQ] = ACTIONS(3429), + [anon_sym_DOT] = ACTIONS(3431), + [anon_sym_scoped] = ACTIONS(3431), + [anon_sym_var] = ACTIONS(3431), + [anon_sym_yield] = ACTIONS(3431), + [anon_sym_switch] = ACTIONS(3431), + [anon_sym_when] = ACTIONS(3431), + [sym_discard] = ACTIONS(3431), + [anon_sym_DOT_DOT] = ACTIONS(3429), + [anon_sym_and] = ACTIONS(3431), + [anon_sym_or] = ACTIONS(3431), + [anon_sym_PLUS_EQ] = ACTIONS(3429), + [anon_sym_DASH_EQ] = ACTIONS(3429), + [anon_sym_STAR_EQ] = ACTIONS(3429), + [anon_sym_SLASH_EQ] = ACTIONS(3429), + [anon_sym_PERCENT_EQ] = ACTIONS(3429), + [anon_sym_AMP_EQ] = ACTIONS(3429), + [anon_sym_CARET_EQ] = ACTIONS(3429), + [anon_sym_PIPE_EQ] = ACTIONS(3429), + [anon_sym_LT_LT_EQ] = ACTIONS(3429), + [anon_sym_GT_GT_EQ] = ACTIONS(3429), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3429), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3429), + [anon_sym_AMP_AMP] = ACTIONS(3429), + [anon_sym_PIPE_PIPE] = ACTIONS(3429), + [anon_sym_QMARK_QMARK] = 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), + [anon_sym_as] = ACTIONS(3431), + [anon_sym_is] = ACTIONS(3431), + [anon_sym_DASH_GT] = ACTIONS(3429), + [anon_sym_with] = ACTIONS(3431), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -404451,14 +404171,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2242] = { - [sym_parameter_list] = STATE(7311), - [sym_positional_pattern_clause] = STATE(2285), - [sym_property_pattern_clause] = STATE(2342), - [sym__variable_designation] = STATE(3492), - [sym_parenthesized_variable_designation] = STATE(3463), - [sym__lambda_parameters] = STATE(7536), - [sym_identifier] = STATE(3493), - [sym__reserved_identifier] = STATE(3177), + [sym_type_argument_list] = STATE(2171), [sym_preproc_region] = STATE(2242), [sym_preproc_endregion] = STATE(2242), [sym_preproc_line] = STATE(2242), @@ -404468,75 +404181,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2242), [sym_preproc_define] = STATE(2242), [sym_preproc_undef] = STATE(2242), - [sym__identifier_token] = ACTIONS(3875), - [anon_sym_alias] = ACTIONS(3877), - [anon_sym_SEMI] = ACTIONS(3879), - [anon_sym_global] = ACTIONS(3877), - [anon_sym_LBRACK] = ACTIONS(3879), - [anon_sym_COLON] = ACTIONS(3879), - [anon_sym_COMMA] = ACTIONS(3879), - [anon_sym_RBRACK] = ACTIONS(3879), - [anon_sym_LPAREN] = ACTIONS(3879), - [anon_sym_RPAREN] = ACTIONS(3879), - [anon_sym_LBRACE] = ACTIONS(3881), - [anon_sym_RBRACE] = ACTIONS(3879), - [anon_sym_file] = ACTIONS(3877), - [anon_sym_LT] = ACTIONS(3883), - [anon_sym_GT] = ACTIONS(3883), - [anon_sym_where] = ACTIONS(3877), - [anon_sym_QMARK] = ACTIONS(3883), - [anon_sym_notnull] = ACTIONS(3877), - [anon_sym_unmanaged] = ACTIONS(3877), - [anon_sym_BANG] = ACTIONS(3883), - [anon_sym_PLUS_PLUS] = ACTIONS(3879), - [anon_sym_DASH_DASH] = ACTIONS(3879), - [anon_sym_PLUS] = ACTIONS(3883), - [anon_sym_DASH] = ACTIONS(3883), - [anon_sym_STAR] = ACTIONS(3879), - [anon_sym_SLASH] = ACTIONS(3883), - [anon_sym_PERCENT] = ACTIONS(3879), - [anon_sym_CARET] = ACTIONS(3879), - [anon_sym_PIPE] = ACTIONS(3883), - [anon_sym_AMP] = ACTIONS(3883), - [anon_sym_LT_LT] = ACTIONS(3879), - [anon_sym_GT_GT] = ACTIONS(3883), - [anon_sym_GT_GT_GT] = ACTIONS(3879), - [anon_sym_EQ_EQ] = ACTIONS(3879), - [anon_sym_BANG_EQ] = ACTIONS(3879), - [anon_sym_GT_EQ] = ACTIONS(3879), - [anon_sym_LT_EQ] = ACTIONS(3879), - [anon_sym_DOT] = ACTIONS(3883), - [anon_sym_scoped] = ACTIONS(3877), - [anon_sym_var] = ACTIONS(3877), - [anon_sym_yield] = ACTIONS(3877), - [anon_sym_switch] = ACTIONS(3883), - [anon_sym_when] = ACTIONS(3877), - [sym_discard] = ACTIONS(3897), - [anon_sym_DOT_DOT] = ACTIONS(3879), - [anon_sym_and] = ACTIONS(3883), - [anon_sym_or] = ACTIONS(3883), - [anon_sym_AMP_AMP] = ACTIONS(3879), - [anon_sym_PIPE_PIPE] = ACTIONS(3879), - [anon_sym_QMARK_QMARK] = ACTIONS(3879), - [anon_sym_from] = ACTIONS(3877), - [anon_sym_into] = ACTIONS(3877), - [anon_sym_join] = ACTIONS(3877), - [anon_sym_on] = ACTIONS(3877), - [anon_sym_equals] = ACTIONS(3877), - [anon_sym_let] = ACTIONS(3877), - [anon_sym_orderby] = ACTIONS(3877), - [anon_sym_ascending] = ACTIONS(3877), - [anon_sym_descending] = ACTIONS(3877), - [anon_sym_group] = ACTIONS(3877), - [anon_sym_by] = ACTIONS(3877), - [anon_sym_select] = ACTIONS(3877), - [anon_sym_as] = ACTIONS(3883), - [anon_sym_is] = ACTIONS(3883), - [anon_sym_DASH_GT] = ACTIONS(3879), - [anon_sym_with] = ACTIONS(3883), - [aux_sym_preproc_if_token3] = ACTIONS(3879), - [aux_sym_preproc_else_token1] = ACTIONS(3879), - [aux_sym_preproc_elif_token1] = ACTIONS(3879), + [sym__identifier_token] = ACTIONS(3638), + [anon_sym_alias] = ACTIONS(3638), + [anon_sym_global] = ACTIONS(3638), + [anon_sym_EQ] = ACTIONS(3638), + [anon_sym_LBRACK] = ACTIONS(3640), + [anon_sym_COLON] = ACTIONS(3638), + [anon_sym_LPAREN] = ACTIONS(3640), + [anon_sym_LBRACE] = ACTIONS(3640), + [anon_sym_file] = ACTIONS(3638), + [anon_sym_LT] = ACTIONS(3648), + [anon_sym_GT] = ACTIONS(3638), + [anon_sym_where] = ACTIONS(3638), + [anon_sym_QMARK] = ACTIONS(3638), + [anon_sym_notnull] = ACTIONS(3638), + [anon_sym_unmanaged] = ACTIONS(3638), + [anon_sym_BANG] = ACTIONS(3638), + [anon_sym_PLUS_PLUS] = ACTIONS(3640), + [anon_sym_DASH_DASH] = ACTIONS(3640), + [anon_sym_PLUS] = ACTIONS(3638), + [anon_sym_DASH] = ACTIONS(3638), + [anon_sym_STAR] = ACTIONS(3638), + [anon_sym_SLASH] = ACTIONS(3638), + [anon_sym_PERCENT] = ACTIONS(3638), + [anon_sym_CARET] = ACTIONS(3638), + [anon_sym_PIPE] = ACTIONS(3638), + [anon_sym_AMP] = ACTIONS(3638), + [anon_sym_LT_LT] = ACTIONS(3638), + [anon_sym_GT_GT] = ACTIONS(3638), + [anon_sym_GT_GT_GT] = ACTIONS(3638), + [anon_sym_EQ_EQ] = ACTIONS(3640), + [anon_sym_BANG_EQ] = ACTIONS(3640), + [anon_sym_GT_EQ] = ACTIONS(3640), + [anon_sym_LT_EQ] = ACTIONS(3640), + [anon_sym_DOT] = ACTIONS(3638), + [anon_sym_scoped] = ACTIONS(3638), + [anon_sym_EQ_GT] = ACTIONS(3651), + [anon_sym_COLON_COLON] = ACTIONS(3883), + [anon_sym_var] = ACTIONS(3638), + [anon_sym_yield] = ACTIONS(3638), + [anon_sym_switch] = ACTIONS(3638), + [anon_sym_when] = ACTIONS(3638), + [sym_discard] = ACTIONS(3638), + [anon_sym_DOT_DOT] = ACTIONS(3640), + [anon_sym_and] = ACTIONS(3638), + [anon_sym_or] = ACTIONS(3638), + [anon_sym_PLUS_EQ] = ACTIONS(3640), + [anon_sym_DASH_EQ] = ACTIONS(3640), + [anon_sym_STAR_EQ] = ACTIONS(3640), + [anon_sym_SLASH_EQ] = ACTIONS(3640), + [anon_sym_PERCENT_EQ] = ACTIONS(3640), + [anon_sym_AMP_EQ] = ACTIONS(3640), + [anon_sym_CARET_EQ] = ACTIONS(3640), + [anon_sym_PIPE_EQ] = ACTIONS(3640), + [anon_sym_LT_LT_EQ] = ACTIONS(3640), + [anon_sym_GT_GT_EQ] = ACTIONS(3640), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3640), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3640), + [anon_sym_AMP_AMP] = ACTIONS(3640), + [anon_sym_PIPE_PIPE] = ACTIONS(3640), + [anon_sym_QMARK_QMARK] = ACTIONS(3638), + [anon_sym_from] = ACTIONS(3638), + [anon_sym_into] = ACTIONS(3638), + [anon_sym_join] = ACTIONS(3638), + [anon_sym_on] = ACTIONS(3638), + [anon_sym_equals] = ACTIONS(3638), + [anon_sym_let] = ACTIONS(3638), + [anon_sym_orderby] = ACTIONS(3638), + [anon_sym_ascending] = ACTIONS(3638), + [anon_sym_descending] = ACTIONS(3638), + [anon_sym_group] = ACTIONS(3638), + [anon_sym_by] = ACTIONS(3638), + [anon_sym_select] = ACTIONS(3638), + [anon_sym_as] = ACTIONS(3638), + [anon_sym_is] = ACTIONS(3638), + [anon_sym_DASH_GT] = ACTIONS(3640), + [anon_sym_with] = ACTIONS(3638), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -404549,7 +404269,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2243] = { - [sym_type_argument_list] = STATE(2183), + [sym_type_argument_list] = STATE(2266), [sym_preproc_region] = STATE(2243), [sym_preproc_endregion] = STATE(2243), [sym_preproc_line] = STATE(2243), @@ -404559,92 +404279,92 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2243), [sym_preproc_define] = STATE(2243), [sym_preproc_undef] = STATE(2243), - [sym__identifier_token] = ACTIONS(3660), - [anon_sym_alias] = ACTIONS(3660), - [anon_sym_global] = ACTIONS(3660), - [anon_sym_EQ] = ACTIONS(3660), - [anon_sym_LBRACK] = ACTIONS(3662), - [anon_sym_COLON] = ACTIONS(3660), - [anon_sym_LPAREN] = ACTIONS(3662), - [anon_sym_LBRACE] = ACTIONS(3662), - [anon_sym_file] = ACTIONS(3660), - [anon_sym_LT] = ACTIONS(3664), - [anon_sym_GT] = ACTIONS(3660), - [anon_sym_where] = ACTIONS(3660), - [anon_sym_QMARK] = ACTIONS(3660), - [anon_sym_notnull] = ACTIONS(3660), - [anon_sym_unmanaged] = ACTIONS(3660), - [anon_sym_BANG] = ACTIONS(3660), - [anon_sym_PLUS_PLUS] = ACTIONS(3662), - [anon_sym_DASH_DASH] = ACTIONS(3662), - [anon_sym_PLUS] = ACTIONS(3660), - [anon_sym_DASH] = ACTIONS(3660), - [anon_sym_STAR] = ACTIONS(3660), - [anon_sym_SLASH] = ACTIONS(3660), - [anon_sym_PERCENT] = ACTIONS(3660), - [anon_sym_CARET] = ACTIONS(3660), - [anon_sym_PIPE] = ACTIONS(3660), - [anon_sym_AMP] = ACTIONS(3660), - [anon_sym_LT_LT] = ACTIONS(3660), - [anon_sym_GT_GT] = ACTIONS(3660), - [anon_sym_GT_GT_GT] = ACTIONS(3660), - [anon_sym_EQ_EQ] = ACTIONS(3662), - [anon_sym_BANG_EQ] = ACTIONS(3662), - [anon_sym_GT_EQ] = ACTIONS(3662), - [anon_sym_LT_EQ] = ACTIONS(3662), - [anon_sym_DOT] = ACTIONS(3660), - [anon_sym_scoped] = ACTIONS(3660), - [anon_sym_EQ_GT] = ACTIONS(3667), - [anon_sym_COLON_COLON] = ACTIONS(3899), - [anon_sym_var] = ACTIONS(3660), - [anon_sym_yield] = ACTIONS(3660), - [anon_sym_switch] = ACTIONS(3660), - [anon_sym_when] = ACTIONS(3660), - [sym_discard] = ACTIONS(3660), - [anon_sym_DOT_DOT] = ACTIONS(3662), - [anon_sym_and] = ACTIONS(3660), - [anon_sym_or] = ACTIONS(3660), - [anon_sym_PLUS_EQ] = ACTIONS(3662), - [anon_sym_DASH_EQ] = ACTIONS(3662), - [anon_sym_STAR_EQ] = ACTIONS(3662), - [anon_sym_SLASH_EQ] = ACTIONS(3662), - [anon_sym_PERCENT_EQ] = ACTIONS(3662), - [anon_sym_AMP_EQ] = ACTIONS(3662), - [anon_sym_CARET_EQ] = ACTIONS(3662), - [anon_sym_PIPE_EQ] = ACTIONS(3662), - [anon_sym_LT_LT_EQ] = ACTIONS(3662), - [anon_sym_GT_GT_EQ] = ACTIONS(3662), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3662), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3662), - [anon_sym_AMP_AMP] = ACTIONS(3662), - [anon_sym_PIPE_PIPE] = ACTIONS(3662), - [anon_sym_QMARK_QMARK] = ACTIONS(3660), - [anon_sym_from] = ACTIONS(3660), - [anon_sym_into] = ACTIONS(3660), - [anon_sym_join] = ACTIONS(3660), - [anon_sym_on] = ACTIONS(3660), - [anon_sym_equals] = ACTIONS(3660), - [anon_sym_let] = ACTIONS(3660), - [anon_sym_orderby] = ACTIONS(3660), - [anon_sym_ascending] = ACTIONS(3660), - [anon_sym_descending] = ACTIONS(3660), - [anon_sym_group] = ACTIONS(3660), - [anon_sym_by] = ACTIONS(3660), - [anon_sym_select] = ACTIONS(3660), - [anon_sym_as] = ACTIONS(3660), - [anon_sym_is] = ACTIONS(3660), - [anon_sym_DASH_GT] = ACTIONS(3662), - [anon_sym_with] = ACTIONS(3660), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_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(3638), + [anon_sym_alias] = ACTIONS(3638), + [anon_sym_global] = ACTIONS(3638), + [anon_sym_EQ] = ACTIONS(3638), + [anon_sym_LBRACK] = ACTIONS(3640), + [anon_sym_COLON] = ACTIONS(3640), + [anon_sym_COMMA] = ACTIONS(3640), + [anon_sym_LPAREN] = ACTIONS(3640), + [anon_sym_LBRACE] = ACTIONS(3640), + [anon_sym_file] = ACTIONS(3638), + [anon_sym_LT] = ACTIONS(3839), + [anon_sym_GT] = ACTIONS(3638), + [anon_sym_where] = ACTIONS(3638), + [anon_sym_QMARK] = ACTIONS(3638), + [anon_sym_notnull] = ACTIONS(3638), + [anon_sym_unmanaged] = ACTIONS(3638), + [anon_sym_BANG] = ACTIONS(3638), + [anon_sym_PLUS_PLUS] = ACTIONS(3640), + [anon_sym_DASH_DASH] = ACTIONS(3640), + [anon_sym_PLUS] = ACTIONS(3638), + [anon_sym_DASH] = ACTIONS(3638), + [anon_sym_STAR] = ACTIONS(3638), + [anon_sym_SLASH] = ACTIONS(3638), + [anon_sym_PERCENT] = ACTIONS(3638), + [anon_sym_CARET] = ACTIONS(3638), + [anon_sym_PIPE] = ACTIONS(3638), + [anon_sym_AMP] = ACTIONS(3638), + [anon_sym_LT_LT] = ACTIONS(3638), + [anon_sym_GT_GT] = ACTIONS(3638), + [anon_sym_GT_GT_GT] = ACTIONS(3638), + [anon_sym_EQ_EQ] = ACTIONS(3640), + [anon_sym_BANG_EQ] = ACTIONS(3640), + [anon_sym_GT_EQ] = ACTIONS(3640), + [anon_sym_LT_EQ] = ACTIONS(3640), + [anon_sym_DOT] = ACTIONS(3638), + [anon_sym_scoped] = ACTIONS(3638), + [anon_sym_var] = ACTIONS(3638), + [anon_sym_yield] = ACTIONS(3638), + [anon_sym_switch] = ACTIONS(3638), + [anon_sym_when] = ACTIONS(3638), + [sym_discard] = ACTIONS(3638), + [anon_sym_DOT_DOT] = ACTIONS(3640), + [anon_sym_and] = ACTIONS(3638), + [anon_sym_or] = ACTIONS(3638), + [anon_sym_PLUS_EQ] = ACTIONS(3640), + [anon_sym_DASH_EQ] = ACTIONS(3640), + [anon_sym_STAR_EQ] = ACTIONS(3640), + [anon_sym_SLASH_EQ] = ACTIONS(3640), + [anon_sym_PERCENT_EQ] = ACTIONS(3640), + [anon_sym_AMP_EQ] = ACTIONS(3640), + [anon_sym_CARET_EQ] = ACTIONS(3640), + [anon_sym_PIPE_EQ] = ACTIONS(3640), + [anon_sym_LT_LT_EQ] = ACTIONS(3640), + [anon_sym_GT_GT_EQ] = ACTIONS(3640), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3640), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3640), + [anon_sym_AMP_AMP] = ACTIONS(3640), + [anon_sym_PIPE_PIPE] = ACTIONS(3640), + [anon_sym_QMARK_QMARK] = ACTIONS(3638), + [anon_sym_from] = ACTIONS(3638), + [anon_sym_into] = ACTIONS(3638), + [anon_sym_join] = ACTIONS(3638), + [anon_sym_on] = ACTIONS(3638), + [anon_sym_equals] = ACTIONS(3638), + [anon_sym_let] = ACTIONS(3638), + [anon_sym_orderby] = ACTIONS(3638), + [anon_sym_ascending] = ACTIONS(3638), + [anon_sym_descending] = ACTIONS(3638), + [anon_sym_group] = ACTIONS(3638), + [anon_sym_by] = ACTIONS(3638), + [anon_sym_select] = ACTIONS(3638), + [anon_sym_as] = ACTIONS(3638), + [anon_sym_is] = ACTIONS(3638), + [anon_sym_DASH_GT] = ACTIONS(3640), + [anon_sym_with] = ACTIONS(3638), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_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(3640), }, [2244] = { [sym_preproc_region] = STATE(2244), @@ -404656,83 +404376,81 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2244), [sym_preproc_define] = STATE(2244), [sym_preproc_undef] = STATE(2244), - [sym__identifier_token] = ACTIONS(3447), - [anon_sym_alias] = ACTIONS(3447), - [anon_sym_global] = ACTIONS(3447), - [anon_sym_EQ] = ACTIONS(3447), - [anon_sym_LBRACK] = ACTIONS(3445), - [anon_sym_COLON] = ACTIONS(3447), - [anon_sym_LPAREN] = ACTIONS(3445), - [anon_sym_return] = ACTIONS(3901), - [anon_sym_file] = ACTIONS(3447), - [anon_sym_LT] = ACTIONS(3447), - [anon_sym_GT] = ACTIONS(3447), - [anon_sym_where] = ACTIONS(3447), - [anon_sym_QMARK] = ACTIONS(3447), - [anon_sym_notnull] = ACTIONS(3447), - [anon_sym_unmanaged] = ACTIONS(3447), - [anon_sym_BANG] = ACTIONS(3447), - [anon_sym_PLUS_PLUS] = ACTIONS(3445), - [anon_sym_DASH_DASH] = ACTIONS(3445), - [anon_sym_PLUS] = ACTIONS(3447), - [anon_sym_DASH] = ACTIONS(3447), - [anon_sym_STAR] = ACTIONS(3447), - [anon_sym_SLASH] = ACTIONS(3447), - [anon_sym_PERCENT] = ACTIONS(3447), - [anon_sym_CARET] = ACTIONS(3447), - [anon_sym_PIPE] = ACTIONS(3447), - [anon_sym_AMP] = ACTIONS(3447), - [anon_sym_LT_LT] = ACTIONS(3447), - [anon_sym_GT_GT] = ACTIONS(3447), - [anon_sym_GT_GT_GT] = ACTIONS(3447), - [anon_sym_EQ_EQ] = ACTIONS(3445), - [anon_sym_BANG_EQ] = ACTIONS(3445), - [anon_sym_GT_EQ] = ACTIONS(3445), - [anon_sym_LT_EQ] = ACTIONS(3445), - [anon_sym_DOT] = ACTIONS(3447), - [anon_sym_scoped] = ACTIONS(3447), - [anon_sym_EQ_GT] = ACTIONS(3445), - [anon_sym_COLON_COLON] = ACTIONS(3445), - [anon_sym_var] = ACTIONS(3447), - [anon_sym_break] = ACTIONS(3903), - [anon_sym_yield] = ACTIONS(3447), - [anon_sym_switch] = ACTIONS(3447), - [anon_sym_when] = ACTIONS(3447), - [anon_sym_DOT_DOT] = ACTIONS(3445), - [anon_sym_PLUS_EQ] = ACTIONS(3445), - [anon_sym_DASH_EQ] = ACTIONS(3445), - [anon_sym_STAR_EQ] = ACTIONS(3445), - [anon_sym_SLASH_EQ] = ACTIONS(3445), - [anon_sym_PERCENT_EQ] = ACTIONS(3445), - [anon_sym_AMP_EQ] = ACTIONS(3445), - [anon_sym_CARET_EQ] = ACTIONS(3445), - [anon_sym_PIPE_EQ] = ACTIONS(3445), - [anon_sym_LT_LT_EQ] = ACTIONS(3445), - [anon_sym_GT_GT_EQ] = ACTIONS(3445), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3445), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3445), - [anon_sym_AMP_AMP] = ACTIONS(3445), - [anon_sym_PIPE_PIPE] = ACTIONS(3445), - [anon_sym_QMARK_QMARK] = ACTIONS(3447), - [anon_sym_from] = ACTIONS(3447), - [anon_sym_into] = ACTIONS(3447), - [anon_sym_join] = ACTIONS(3447), - [anon_sym_on] = ACTIONS(3447), - [anon_sym_equals] = ACTIONS(3447), - [anon_sym_let] = ACTIONS(3447), - [anon_sym_orderby] = ACTIONS(3447), - [anon_sym_ascending] = ACTIONS(3447), - [anon_sym_descending] = ACTIONS(3447), - [anon_sym_group] = ACTIONS(3447), - [anon_sym_by] = ACTIONS(3447), - [anon_sym_select] = ACTIONS(3447), - [anon_sym_as] = ACTIONS(3447), - [anon_sym_is] = ACTIONS(3447), - [anon_sym_DASH_GT] = ACTIONS(3445), - [anon_sym_with] = ACTIONS(3447), - [aux_sym_preproc_if_token3] = ACTIONS(3445), - [aux_sym_preproc_else_token1] = ACTIONS(3445), - [aux_sym_preproc_elif_token1] = ACTIONS(3445), + [sym__identifier_token] = ACTIONS(3603), + [anon_sym_alias] = ACTIONS(3603), + [anon_sym_global] = ACTIONS(3603), + [anon_sym_EQ] = ACTIONS(3431), + [anon_sym_LBRACK] = ACTIONS(3429), + [anon_sym_COLON] = ACTIONS(3431), + [anon_sym_COMMA] = ACTIONS(3429), + [anon_sym_LPAREN] = ACTIONS(3600), + [anon_sym_file] = ACTIONS(3603), + [anon_sym_LT] = ACTIONS(3431), + [anon_sym_GT] = ACTIONS(3431), + [anon_sym_where] = ACTIONS(3603), + [anon_sym_QMARK] = ACTIONS(3431), + [anon_sym_notnull] = ACTIONS(3603), + [anon_sym_unmanaged] = ACTIONS(3603), + [anon_sym_BANG] = ACTIONS(3431), + [anon_sym_PLUS_PLUS] = ACTIONS(3429), + [anon_sym_DASH_DASH] = ACTIONS(3429), + [anon_sym_PLUS] = ACTIONS(3431), + [anon_sym_DASH] = ACTIONS(3431), + [anon_sym_STAR] = ACTIONS(3431), + [anon_sym_SLASH] = ACTIONS(3431), + [anon_sym_PERCENT] = ACTIONS(3431), + [anon_sym_CARET] = ACTIONS(3431), + [anon_sym_PIPE] = ACTIONS(3431), + [anon_sym_AMP] = ACTIONS(3431), + [anon_sym_LT_LT] = ACTIONS(3431), + [anon_sym_GT_GT] = ACTIONS(3431), + [anon_sym_GT_GT_GT] = ACTIONS(3431), + [anon_sym_EQ_EQ] = ACTIONS(3429), + [anon_sym_BANG_EQ] = ACTIONS(3429), + [anon_sym_GT_EQ] = ACTIONS(3429), + [anon_sym_LT_EQ] = ACTIONS(3429), + [anon_sym_DOT] = ACTIONS(3431), + [anon_sym_scoped] = ACTIONS(3603), + [anon_sym_EQ_GT] = ACTIONS(3429), + [anon_sym_COLON_COLON] = ACTIONS(3429), + [anon_sym_var] = ACTIONS(3603), + [anon_sym_yield] = ACTIONS(3603), + [anon_sym_switch] = ACTIONS(3431), + [anon_sym_when] = ACTIONS(3603), + [anon_sym_DOT_DOT] = ACTIONS(3429), + [anon_sym_and] = ACTIONS(3431), + [anon_sym_or] = ACTIONS(3431), + [anon_sym_PLUS_EQ] = ACTIONS(3429), + [anon_sym_DASH_EQ] = ACTIONS(3429), + [anon_sym_STAR_EQ] = ACTIONS(3429), + [anon_sym_SLASH_EQ] = ACTIONS(3429), + [anon_sym_PERCENT_EQ] = ACTIONS(3429), + [anon_sym_AMP_EQ] = ACTIONS(3429), + [anon_sym_CARET_EQ] = ACTIONS(3429), + [anon_sym_PIPE_EQ] = ACTIONS(3429), + [anon_sym_LT_LT_EQ] = ACTIONS(3429), + [anon_sym_GT_GT_EQ] = ACTIONS(3429), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3429), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3429), + [anon_sym_AMP_AMP] = ACTIONS(3429), + [anon_sym_PIPE_PIPE] = ACTIONS(3429), + [anon_sym_QMARK_QMARK] = ACTIONS(3431), + [anon_sym_from] = ACTIONS(3603), + [anon_sym_into] = ACTIONS(3603), + [anon_sym_join] = ACTIONS(3603), + [anon_sym_on] = ACTIONS(3603), + [anon_sym_equals] = ACTIONS(3603), + [anon_sym_let] = ACTIONS(3603), + [anon_sym_orderby] = ACTIONS(3603), + [anon_sym_ascending] = ACTIONS(3603), + [anon_sym_descending] = ACTIONS(3603), + [anon_sym_group] = ACTIONS(3603), + [anon_sym_by] = ACTIONS(3603), + [anon_sym_select] = ACTIONS(3603), + [anon_sym_as] = ACTIONS(3431), + [anon_sym_is] = ACTIONS(3431), + [anon_sym_DASH_GT] = ACTIONS(3429), + [anon_sym_with] = ACTIONS(3431), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -404743,6 +404461,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(3429), }, [2245] = { [sym_preproc_region] = STATE(2245), @@ -404754,83 +404473,81 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2245), [sym_preproc_define] = STATE(2245), [sym_preproc_undef] = STATE(2245), - [sym__identifier_token] = ACTIONS(3447), - [anon_sym_alias] = ACTIONS(3447), - [anon_sym_global] = ACTIONS(3447), - [anon_sym_EQ] = ACTIONS(3447), - [anon_sym_LBRACK] = ACTIONS(3445), - [anon_sym_COLON] = ACTIONS(3445), - [anon_sym_COMMA] = ACTIONS(3445), - [anon_sym_LPAREN] = ACTIONS(3445), - [anon_sym_RPAREN] = ACTIONS(3445), - [anon_sym_LBRACE] = ACTIONS(3445), - [anon_sym_RBRACE] = ACTIONS(3445), - [anon_sym_file] = ACTIONS(3447), - [anon_sym_LT] = ACTIONS(3447), - [anon_sym_GT] = ACTIONS(3447), - [anon_sym_where] = ACTIONS(3447), - [anon_sym_QMARK] = ACTIONS(3447), - [anon_sym_notnull] = ACTIONS(3447), - [anon_sym_unmanaged] = ACTIONS(3447), - [anon_sym_BANG] = ACTIONS(3447), - [anon_sym_PLUS_PLUS] = ACTIONS(3445), - [anon_sym_DASH_DASH] = ACTIONS(3445), - [anon_sym_PLUS] = ACTIONS(3447), - [anon_sym_DASH] = ACTIONS(3447), - [anon_sym_STAR] = ACTIONS(3447), - [anon_sym_SLASH] = ACTIONS(3447), - [anon_sym_PERCENT] = ACTIONS(3447), - [anon_sym_CARET] = ACTIONS(3447), - [anon_sym_PIPE] = ACTIONS(3447), - [anon_sym_AMP] = ACTIONS(3447), - [anon_sym_LT_LT] = ACTIONS(3447), - [anon_sym_GT_GT] = ACTIONS(3447), - [anon_sym_GT_GT_GT] = ACTIONS(3447), - [anon_sym_EQ_EQ] = ACTIONS(3445), - [anon_sym_BANG_EQ] = ACTIONS(3445), - [anon_sym_GT_EQ] = ACTIONS(3445), - [anon_sym_LT_EQ] = ACTIONS(3445), - [anon_sym_DOT] = ACTIONS(3447), - [anon_sym_scoped] = ACTIONS(3447), - [anon_sym_var] = ACTIONS(3447), - [anon_sym_yield] = ACTIONS(3447), - [anon_sym_switch] = ACTIONS(3447), - [anon_sym_when] = ACTIONS(3447), - [sym_discard] = ACTIONS(3447), - [anon_sym_DOT_DOT] = ACTIONS(3445), - [anon_sym_and] = ACTIONS(3447), - [anon_sym_or] = ACTIONS(3447), - [anon_sym_PLUS_EQ] = ACTIONS(3445), - [anon_sym_DASH_EQ] = ACTIONS(3445), - [anon_sym_STAR_EQ] = ACTIONS(3445), - [anon_sym_SLASH_EQ] = ACTIONS(3445), - [anon_sym_PERCENT_EQ] = ACTIONS(3445), - [anon_sym_AMP_EQ] = ACTIONS(3445), - [anon_sym_CARET_EQ] = ACTIONS(3445), - [anon_sym_PIPE_EQ] = ACTIONS(3445), - [anon_sym_LT_LT_EQ] = ACTIONS(3445), - [anon_sym_GT_GT_EQ] = ACTIONS(3445), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3445), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3445), - [anon_sym_AMP_AMP] = ACTIONS(3445), - [anon_sym_PIPE_PIPE] = ACTIONS(3445), - [anon_sym_QMARK_QMARK] = ACTIONS(3447), - [anon_sym_from] = ACTIONS(3447), - [anon_sym_into] = ACTIONS(3447), - [anon_sym_join] = ACTIONS(3447), - [anon_sym_on] = ACTIONS(3447), - [anon_sym_equals] = ACTIONS(3447), - [anon_sym_let] = ACTIONS(3447), - [anon_sym_orderby] = ACTIONS(3447), - [anon_sym_ascending] = ACTIONS(3447), - [anon_sym_descending] = ACTIONS(3447), - [anon_sym_group] = ACTIONS(3447), - [anon_sym_by] = ACTIONS(3447), - [anon_sym_select] = ACTIONS(3447), - [anon_sym_as] = ACTIONS(3447), - [anon_sym_is] = ACTIONS(3447), - [anon_sym_DASH_GT] = ACTIONS(3445), - [anon_sym_with] = ACTIONS(3447), + [sym__identifier_token] = ACTIONS(3431), + [anon_sym_alias] = ACTIONS(3431), + [anon_sym_global] = ACTIONS(3431), + [anon_sym_EQ] = ACTIONS(3431), + [anon_sym_LBRACK] = ACTIONS(3429), + [anon_sym_COLON] = ACTIONS(3429), + [anon_sym_COMMA] = ACTIONS(3429), + [anon_sym_LPAREN] = ACTIONS(3429), + [anon_sym_LBRACE] = ACTIONS(3429), + [anon_sym_file] = ACTIONS(3431), + [anon_sym_LT] = ACTIONS(3431), + [anon_sym_GT] = ACTIONS(3431), + [anon_sym_where] = ACTIONS(3431), + [anon_sym_QMARK] = ACTIONS(3431), + [anon_sym_notnull] = ACTIONS(3431), + [anon_sym_unmanaged] = ACTIONS(3431), + [anon_sym_BANG] = ACTIONS(3431), + [anon_sym_PLUS_PLUS] = ACTIONS(3429), + [anon_sym_DASH_DASH] = ACTIONS(3429), + [anon_sym_PLUS] = ACTIONS(3431), + [anon_sym_DASH] = ACTIONS(3431), + [anon_sym_STAR] = ACTIONS(3431), + [anon_sym_SLASH] = ACTIONS(3431), + [anon_sym_PERCENT] = ACTIONS(3431), + [anon_sym_CARET] = ACTIONS(3431), + [anon_sym_PIPE] = ACTIONS(3431), + [anon_sym_AMP] = ACTIONS(3431), + [anon_sym_LT_LT] = ACTIONS(3431), + [anon_sym_GT_GT] = ACTIONS(3431), + [anon_sym_GT_GT_GT] = ACTIONS(3431), + [anon_sym_EQ_EQ] = ACTIONS(3429), + [anon_sym_BANG_EQ] = ACTIONS(3429), + [anon_sym_GT_EQ] = ACTIONS(3429), + [anon_sym_LT_EQ] = ACTIONS(3429), + [anon_sym_DOT] = ACTIONS(3431), + [anon_sym_scoped] = ACTIONS(3431), + [anon_sym_var] = ACTIONS(3431), + [anon_sym_yield] = ACTIONS(3431), + [anon_sym_switch] = ACTIONS(3431), + [anon_sym_when] = ACTIONS(3431), + [sym_discard] = ACTIONS(3431), + [anon_sym_DOT_DOT] = ACTIONS(3429), + [anon_sym_and] = ACTIONS(3431), + [anon_sym_or] = ACTIONS(3431), + [anon_sym_PLUS_EQ] = ACTIONS(3429), + [anon_sym_DASH_EQ] = ACTIONS(3429), + [anon_sym_STAR_EQ] = ACTIONS(3429), + [anon_sym_SLASH_EQ] = ACTIONS(3429), + [anon_sym_PERCENT_EQ] = ACTIONS(3429), + [anon_sym_AMP_EQ] = ACTIONS(3429), + [anon_sym_CARET_EQ] = ACTIONS(3429), + [anon_sym_PIPE_EQ] = ACTIONS(3429), + [anon_sym_LT_LT_EQ] = ACTIONS(3429), + [anon_sym_GT_GT_EQ] = ACTIONS(3429), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3429), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3429), + [anon_sym_AMP_AMP] = ACTIONS(3429), + [anon_sym_PIPE_PIPE] = ACTIONS(3429), + [anon_sym_QMARK_QMARK] = 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), + [anon_sym_as] = ACTIONS(3431), + [anon_sym_is] = ACTIONS(3431), + [anon_sym_DASH_GT] = ACTIONS(3429), + [anon_sym_with] = ACTIONS(3431), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -404841,9 +404558,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(3429), }, [2246] = { - [sym_type_argument_list] = STATE(2270), [sym_preproc_region] = STATE(2246), [sym_preproc_endregion] = STATE(2246), [sym_preproc_line] = STATE(2246), @@ -404853,92 +404570,92 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2246), [sym_preproc_define] = STATE(2246), [sym_preproc_undef] = STATE(2246), - [sym__identifier_token] = ACTIONS(3660), - [anon_sym_alias] = ACTIONS(3660), - [anon_sym_global] = ACTIONS(3660), - [anon_sym_EQ] = ACTIONS(3660), - [anon_sym_LBRACK] = ACTIONS(3662), - [anon_sym_COLON] = ACTIONS(3660), - [anon_sym_COMMA] = ACTIONS(3662), - [anon_sym_LPAREN] = ACTIONS(3662), - [anon_sym_file] = ACTIONS(3660), - [anon_sym_LT] = ACTIONS(3870), - [anon_sym_GT] = ACTIONS(3660), - [anon_sym_where] = ACTIONS(3660), - [anon_sym_QMARK] = ACTIONS(3660), - [anon_sym_notnull] = ACTIONS(3660), - [anon_sym_unmanaged] = ACTIONS(3660), - [anon_sym_BANG] = ACTIONS(3660), - [anon_sym_PLUS_PLUS] = ACTIONS(3662), - [anon_sym_DASH_DASH] = ACTIONS(3662), - [anon_sym_PLUS] = ACTIONS(3660), - [anon_sym_DASH] = ACTIONS(3660), - [anon_sym_STAR] = ACTIONS(3660), - [anon_sym_SLASH] = ACTIONS(3660), - [anon_sym_PERCENT] = ACTIONS(3660), - [anon_sym_CARET] = ACTIONS(3660), - [anon_sym_PIPE] = ACTIONS(3660), - [anon_sym_AMP] = ACTIONS(3660), - [anon_sym_LT_LT] = ACTIONS(3660), - [anon_sym_GT_GT] = ACTIONS(3660), - [anon_sym_GT_GT_GT] = ACTIONS(3660), - [anon_sym_EQ_EQ] = ACTIONS(3662), - [anon_sym_BANG_EQ] = ACTIONS(3662), - [anon_sym_GT_EQ] = ACTIONS(3662), - [anon_sym_LT_EQ] = ACTIONS(3662), - [anon_sym_DOT] = ACTIONS(3660), - [anon_sym_scoped] = ACTIONS(3660), - [anon_sym_EQ_GT] = ACTIONS(3667), - [anon_sym_COLON_COLON] = ACTIONS(3669), - [anon_sym_var] = ACTIONS(3660), - [anon_sym_yield] = ACTIONS(3660), - [anon_sym_switch] = ACTIONS(3660), - [anon_sym_when] = ACTIONS(3660), - [anon_sym_DOT_DOT] = ACTIONS(3662), - [anon_sym_and] = ACTIONS(3660), - [anon_sym_or] = ACTIONS(3660), - [anon_sym_PLUS_EQ] = ACTIONS(3662), - [anon_sym_DASH_EQ] = ACTIONS(3662), - [anon_sym_STAR_EQ] = ACTIONS(3662), - [anon_sym_SLASH_EQ] = ACTIONS(3662), - [anon_sym_PERCENT_EQ] = ACTIONS(3662), - [anon_sym_AMP_EQ] = ACTIONS(3662), - [anon_sym_CARET_EQ] = ACTIONS(3662), - [anon_sym_PIPE_EQ] = ACTIONS(3662), - [anon_sym_LT_LT_EQ] = ACTIONS(3662), - [anon_sym_GT_GT_EQ] = ACTIONS(3662), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3662), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3662), - [anon_sym_AMP_AMP] = ACTIONS(3662), - [anon_sym_PIPE_PIPE] = ACTIONS(3662), - [anon_sym_QMARK_QMARK] = ACTIONS(3660), - [anon_sym_from] = ACTIONS(3660), - [anon_sym_into] = ACTIONS(3660), - [anon_sym_join] = ACTIONS(3660), - [anon_sym_on] = ACTIONS(3660), - [anon_sym_equals] = ACTIONS(3660), - [anon_sym_let] = ACTIONS(3660), - [anon_sym_orderby] = ACTIONS(3660), - [anon_sym_ascending] = ACTIONS(3660), - [anon_sym_descending] = ACTIONS(3660), - [anon_sym_group] = ACTIONS(3660), - [anon_sym_by] = ACTIONS(3660), - [anon_sym_select] = ACTIONS(3660), - [anon_sym_as] = ACTIONS(3660), - [anon_sym_is] = ACTIONS(3660), - [anon_sym_DASH_GT] = ACTIONS(3662), - [anon_sym_with] = ACTIONS(3660), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_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(3662), + [sym__identifier_token] = ACTIONS(3655), + [anon_sym_alias] = ACTIONS(3655), + [anon_sym_global] = ACTIONS(3655), + [anon_sym_EQ] = ACTIONS(3655), + [anon_sym_LBRACK] = ACTIONS(3657), + [anon_sym_COLON] = ACTIONS(3657), + [anon_sym_COMMA] = ACTIONS(3657), + [anon_sym_LPAREN] = ACTIONS(3657), + [anon_sym_LBRACE] = ACTIONS(3657), + [anon_sym_file] = ACTIONS(3655), + [anon_sym_LT] = ACTIONS(3655), + [anon_sym_GT] = ACTIONS(3655), + [anon_sym_where] = ACTIONS(3655), + [anon_sym_QMARK] = ACTIONS(3655), + [anon_sym_notnull] = ACTIONS(3655), + [anon_sym_unmanaged] = ACTIONS(3655), + [anon_sym_BANG] = ACTIONS(3655), + [anon_sym_PLUS_PLUS] = ACTIONS(3657), + [anon_sym_DASH_DASH] = ACTIONS(3657), + [anon_sym_PLUS] = ACTIONS(3655), + [anon_sym_DASH] = ACTIONS(3655), + [anon_sym_STAR] = ACTIONS(3655), + [anon_sym_SLASH] = ACTIONS(3655), + [anon_sym_PERCENT] = ACTIONS(3655), + [anon_sym_CARET] = ACTIONS(3655), + [anon_sym_PIPE] = ACTIONS(3655), + [anon_sym_AMP] = ACTIONS(3655), + [anon_sym_LT_LT] = ACTIONS(3655), + [anon_sym_GT_GT] = ACTIONS(3655), + [anon_sym_GT_GT_GT] = ACTIONS(3655), + [anon_sym_EQ_EQ] = ACTIONS(3657), + [anon_sym_BANG_EQ] = ACTIONS(3657), + [anon_sym_GT_EQ] = ACTIONS(3657), + [anon_sym_LT_EQ] = ACTIONS(3657), + [anon_sym_DOT] = ACTIONS(3655), + [anon_sym_scoped] = ACTIONS(3655), + [anon_sym_var] = ACTIONS(3655), + [anon_sym_yield] = ACTIONS(3655), + [anon_sym_switch] = ACTIONS(3655), + [anon_sym_when] = ACTIONS(3655), + [sym_discard] = ACTIONS(3655), + [anon_sym_DOT_DOT] = ACTIONS(3657), + [anon_sym_and] = ACTIONS(3655), + [anon_sym_or] = ACTIONS(3655), + [anon_sym_PLUS_EQ] = ACTIONS(3657), + [anon_sym_DASH_EQ] = ACTIONS(3657), + [anon_sym_STAR_EQ] = ACTIONS(3657), + [anon_sym_SLASH_EQ] = ACTIONS(3657), + [anon_sym_PERCENT_EQ] = ACTIONS(3657), + [anon_sym_AMP_EQ] = ACTIONS(3657), + [anon_sym_CARET_EQ] = ACTIONS(3657), + [anon_sym_PIPE_EQ] = ACTIONS(3657), + [anon_sym_LT_LT_EQ] = ACTIONS(3657), + [anon_sym_GT_GT_EQ] = ACTIONS(3657), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3657), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3657), + [anon_sym_AMP_AMP] = ACTIONS(3657), + [anon_sym_PIPE_PIPE] = ACTIONS(3657), + [anon_sym_QMARK_QMARK] = ACTIONS(3655), + [anon_sym_from] = ACTIONS(3655), + [anon_sym_into] = ACTIONS(3655), + [anon_sym_join] = ACTIONS(3655), + [anon_sym_on] = ACTIONS(3655), + [anon_sym_equals] = ACTIONS(3655), + [anon_sym_let] = ACTIONS(3655), + [anon_sym_orderby] = ACTIONS(3655), + [anon_sym_ascending] = ACTIONS(3655), + [anon_sym_descending] = ACTIONS(3655), + [anon_sym_group] = ACTIONS(3655), + [anon_sym_by] = ACTIONS(3655), + [anon_sym_select] = ACTIONS(3655), + [anon_sym_as] = ACTIONS(3655), + [anon_sym_is] = ACTIONS(3655), + [anon_sym_DASH_GT] = ACTIONS(3657), + [anon_sym_with] = ACTIONS(3655), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_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(3657), }, [2247] = { [sym_preproc_region] = STATE(2247), @@ -404950,96 +404667,94 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2247), [sym_preproc_define] = STATE(2247), [sym_preproc_undef] = STATE(2247), - [sym__identifier_token] = ACTIONS(3699), - [anon_sym_alias] = ACTIONS(3699), - [anon_sym_SEMI] = ACTIONS(3719), - [anon_sym_global] = ACTIONS(3699), - [anon_sym_EQ] = ACTIONS(3704), - [anon_sym_LBRACK] = ACTIONS(3721), - [anon_sym_COLON] = ACTIONS(3719), - [anon_sym_COMMA] = ACTIONS(3719), - [anon_sym_RBRACK] = ACTIONS(3719), - [anon_sym_LPAREN] = ACTIONS(3721), - [anon_sym_RPAREN] = ACTIONS(3719), - [anon_sym_RBRACE] = ACTIONS(3719), - [anon_sym_file] = ACTIONS(3699), - [anon_sym_LT] = ACTIONS(3704), - [anon_sym_GT] = ACTIONS(3704), - [anon_sym_where] = ACTIONS(3699), - [anon_sym_QMARK] = ACTIONS(3724), - [anon_sym_notnull] = ACTIONS(3699), - [anon_sym_unmanaged] = ACTIONS(3699), - [anon_sym_BANG] = ACTIONS(3704), - [anon_sym_PLUS_PLUS] = ACTIONS(3719), - [anon_sym_DASH_DASH] = ACTIONS(3719), - [anon_sym_PLUS] = ACTIONS(3704), - [anon_sym_DASH] = ACTIONS(3704), - [anon_sym_STAR] = ACTIONS(3724), - [anon_sym_SLASH] = ACTIONS(3704), - [anon_sym_PERCENT] = ACTIONS(3704), - [anon_sym_CARET] = ACTIONS(3704), - [anon_sym_PIPE] = ACTIONS(3704), - [anon_sym_AMP] = ACTIONS(3704), - [anon_sym_LT_LT] = ACTIONS(3704), - [anon_sym_GT_GT] = ACTIONS(3704), - [anon_sym_GT_GT_GT] = ACTIONS(3704), - [anon_sym_EQ_EQ] = ACTIONS(3719), - [anon_sym_BANG_EQ] = ACTIONS(3719), - [anon_sym_GT_EQ] = ACTIONS(3719), - [anon_sym_LT_EQ] = ACTIONS(3719), - [anon_sym_DOT] = ACTIONS(3724), - [anon_sym_scoped] = ACTIONS(3699), - [anon_sym_var] = ACTIONS(3699), - [anon_sym_yield] = ACTIONS(3699), - [anon_sym_switch] = ACTIONS(3704), - [anon_sym_when] = ACTIONS(3699), - [anon_sym_DOT_DOT] = ACTIONS(3719), - [anon_sym_and] = ACTIONS(3704), - [anon_sym_or] = ACTIONS(3704), - [anon_sym_PLUS_EQ] = ACTIONS(3719), - [anon_sym_DASH_EQ] = ACTIONS(3719), - [anon_sym_STAR_EQ] = ACTIONS(3719), - [anon_sym_SLASH_EQ] = ACTIONS(3719), - [anon_sym_PERCENT_EQ] = ACTIONS(3719), - [anon_sym_AMP_EQ] = ACTIONS(3719), - [anon_sym_CARET_EQ] = ACTIONS(3719), - [anon_sym_PIPE_EQ] = ACTIONS(3719), - [anon_sym_LT_LT_EQ] = ACTIONS(3719), - [anon_sym_GT_GT_EQ] = ACTIONS(3719), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3719), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3719), - [anon_sym_AMP_AMP] = ACTIONS(3719), - [anon_sym_PIPE_PIPE] = ACTIONS(3719), - [anon_sym_QMARK_QMARK] = ACTIONS(3704), - [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_ascending] = ACTIONS(3699), - [anon_sym_descending] = ACTIONS(3699), - [anon_sym_group] = ACTIONS(3699), - [anon_sym_by] = ACTIONS(3699), - [anon_sym_select] = ACTIONS(3699), - [anon_sym_as] = ACTIONS(3704), - [anon_sym_is] = ACTIONS(3704), - [anon_sym_DASH_GT] = ACTIONS(3721), - [anon_sym_with] = ACTIONS(3704), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_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(3669), + [anon_sym_alias] = ACTIONS(3669), + [anon_sym_global] = ACTIONS(3669), + [anon_sym_EQ] = ACTIONS(3673), + [anon_sym_LBRACK] = ACTIONS(3675), + [anon_sym_COLON] = ACTIONS(3678), + [anon_sym_COMMA] = ACTIONS(3678), + [anon_sym_LPAREN] = ACTIONS(3675), + [anon_sym_LBRACE] = ACTIONS(3678), + [anon_sym_file] = ACTIONS(3669), + [anon_sym_LT] = ACTIONS(3680), + [anon_sym_GT] = ACTIONS(3680), + [anon_sym_where] = ACTIONS(3669), + [anon_sym_QMARK] = ACTIONS(3680), + [anon_sym_notnull] = ACTIONS(3669), + [anon_sym_unmanaged] = ACTIONS(3669), + [anon_sym_BANG] = ACTIONS(3680), + [anon_sym_PLUS_PLUS] = ACTIONS(3675), + [anon_sym_DASH_DASH] = ACTIONS(3675), + [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(3675), + [anon_sym_BANG_EQ] = ACTIONS(3675), + [anon_sym_GT_EQ] = ACTIONS(3675), + [anon_sym_LT_EQ] = ACTIONS(3675), + [anon_sym_DOT] = ACTIONS(3680), + [anon_sym_scoped] = ACTIONS(3669), + [anon_sym_var] = ACTIONS(3669), + [anon_sym_yield] = ACTIONS(3669), + [anon_sym_switch] = ACTIONS(3680), + [anon_sym_when] = ACTIONS(3669), + [sym_discard] = ACTIONS(3669), + [anon_sym_DOT_DOT] = ACTIONS(3675), + [anon_sym_and] = ACTIONS(3669), + [anon_sym_or] = ACTIONS(3669), + [anon_sym_PLUS_EQ] = ACTIONS(3671), + [anon_sym_DASH_EQ] = ACTIONS(3671), + [anon_sym_STAR_EQ] = ACTIONS(3671), + [anon_sym_SLASH_EQ] = ACTIONS(3671), + [anon_sym_PERCENT_EQ] = ACTIONS(3671), + [anon_sym_AMP_EQ] = ACTIONS(3671), + [anon_sym_CARET_EQ] = ACTIONS(3671), + [anon_sym_PIPE_EQ] = ACTIONS(3671), + [anon_sym_LT_LT_EQ] = ACTIONS(3671), + [anon_sym_GT_GT_EQ] = ACTIONS(3671), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3671), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3671), + [anon_sym_AMP_AMP] = ACTIONS(3675), + [anon_sym_PIPE_PIPE] = ACTIONS(3675), + [anon_sym_QMARK_QMARK] = ACTIONS(3680), + [anon_sym_from] = ACTIONS(3669), + [anon_sym_into] = ACTIONS(3669), + [anon_sym_join] = ACTIONS(3669), + [anon_sym_on] = ACTIONS(3669), + [anon_sym_equals] = ACTIONS(3669), + [anon_sym_let] = ACTIONS(3669), + [anon_sym_orderby] = ACTIONS(3669), + [anon_sym_ascending] = ACTIONS(3669), + [anon_sym_descending] = ACTIONS(3669), + [anon_sym_group] = ACTIONS(3669), + [anon_sym_by] = ACTIONS(3669), + [anon_sym_select] = ACTIONS(3669), + [anon_sym_as] = ACTIONS(3680), + [anon_sym_is] = ACTIONS(3680), + [anon_sym_DASH_GT] = ACTIONS(3675), + [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(3678), }, [2248] = { - [sym_type_argument_list] = STATE(2270), [sym_preproc_region] = STATE(2248), [sym_preproc_endregion] = STATE(2248), [sym_preproc_line] = STATE(2248), @@ -405049,102 +404764,99 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2248), [sym_preproc_define] = STATE(2248), [sym_preproc_undef] = STATE(2248), - [sym__identifier_token] = ACTIONS(3660), - [anon_sym_alias] = ACTIONS(3660), - [anon_sym_global] = ACTIONS(3660), - [anon_sym_EQ] = ACTIONS(3660), - [anon_sym_LBRACK] = ACTIONS(3662), - [anon_sym_COLON] = ACTIONS(3662), - [anon_sym_COMMA] = ACTIONS(3662), - [anon_sym_LPAREN] = ACTIONS(3662), - [anon_sym_LBRACE] = ACTIONS(3662), - [anon_sym_file] = ACTIONS(3660), - [anon_sym_LT] = ACTIONS(3870), - [anon_sym_GT] = ACTIONS(3660), - [anon_sym_where] = ACTIONS(3660), - [anon_sym_QMARK] = ACTIONS(3660), - [anon_sym_notnull] = ACTIONS(3660), - [anon_sym_unmanaged] = ACTIONS(3660), - [anon_sym_BANG] = ACTIONS(3660), - [anon_sym_PLUS_PLUS] = ACTIONS(3662), - [anon_sym_DASH_DASH] = ACTIONS(3662), - [anon_sym_PLUS] = ACTIONS(3660), - [anon_sym_DASH] = ACTIONS(3660), - [anon_sym_STAR] = ACTIONS(3660), - [anon_sym_SLASH] = ACTIONS(3660), - [anon_sym_PERCENT] = ACTIONS(3660), - [anon_sym_CARET] = ACTIONS(3660), - [anon_sym_PIPE] = ACTIONS(3660), - [anon_sym_AMP] = ACTIONS(3660), - [anon_sym_LT_LT] = ACTIONS(3660), - [anon_sym_GT_GT] = ACTIONS(3660), - [anon_sym_GT_GT_GT] = ACTIONS(3660), - [anon_sym_EQ_EQ] = ACTIONS(3662), - [anon_sym_BANG_EQ] = ACTIONS(3662), - [anon_sym_GT_EQ] = ACTIONS(3662), - [anon_sym_LT_EQ] = ACTIONS(3662), - [anon_sym_DOT] = ACTIONS(3660), - [anon_sym_scoped] = ACTIONS(3660), - [anon_sym_var] = ACTIONS(3660), - [anon_sym_yield] = ACTIONS(3660), - [anon_sym_switch] = ACTIONS(3660), - [anon_sym_when] = ACTIONS(3660), - [sym_discard] = ACTIONS(3660), - [anon_sym_DOT_DOT] = ACTIONS(3662), - [anon_sym_and] = ACTIONS(3660), - [anon_sym_or] = ACTIONS(3660), - [anon_sym_PLUS_EQ] = ACTIONS(3662), - [anon_sym_DASH_EQ] = ACTIONS(3662), - [anon_sym_STAR_EQ] = ACTIONS(3662), - [anon_sym_SLASH_EQ] = ACTIONS(3662), - [anon_sym_PERCENT_EQ] = ACTIONS(3662), - [anon_sym_AMP_EQ] = ACTIONS(3662), - [anon_sym_CARET_EQ] = ACTIONS(3662), - [anon_sym_PIPE_EQ] = ACTIONS(3662), - [anon_sym_LT_LT_EQ] = ACTIONS(3662), - [anon_sym_GT_GT_EQ] = ACTIONS(3662), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3662), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3662), - [anon_sym_AMP_AMP] = ACTIONS(3662), - [anon_sym_PIPE_PIPE] = ACTIONS(3662), - [anon_sym_QMARK_QMARK] = ACTIONS(3660), - [anon_sym_from] = ACTIONS(3660), - [anon_sym_into] = ACTIONS(3660), - [anon_sym_join] = ACTIONS(3660), - [anon_sym_on] = ACTIONS(3660), - [anon_sym_equals] = ACTIONS(3660), - [anon_sym_let] = ACTIONS(3660), - [anon_sym_orderby] = ACTIONS(3660), - [anon_sym_ascending] = ACTIONS(3660), - [anon_sym_descending] = ACTIONS(3660), - [anon_sym_group] = ACTIONS(3660), - [anon_sym_by] = ACTIONS(3660), - [anon_sym_select] = ACTIONS(3660), - [anon_sym_as] = ACTIONS(3660), - [anon_sym_is] = ACTIONS(3660), - [anon_sym_DASH_GT] = ACTIONS(3662), - [anon_sym_with] = ACTIONS(3660), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_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(3662), + [sym__identifier_token] = ACTIONS(3659), + [anon_sym_alias] = ACTIONS(3659), + [anon_sym_global] = ACTIONS(3659), + [anon_sym_EQ] = ACTIONS(3659), + [anon_sym_LBRACK] = ACTIONS(3661), + [anon_sym_COLON] = ACTIONS(3661), + [anon_sym_COMMA] = ACTIONS(3661), + [anon_sym_LPAREN] = ACTIONS(3661), + [anon_sym_LBRACE] = ACTIONS(3661), + [anon_sym_file] = ACTIONS(3659), + [anon_sym_LT] = ACTIONS(3659), + [anon_sym_GT] = ACTIONS(3659), + [anon_sym_where] = ACTIONS(3659), + [anon_sym_QMARK] = ACTIONS(3659), + [anon_sym_notnull] = ACTIONS(3659), + [anon_sym_unmanaged] = ACTIONS(3659), + [anon_sym_BANG] = ACTIONS(3659), + [anon_sym_PLUS_PLUS] = ACTIONS(3661), + [anon_sym_DASH_DASH] = ACTIONS(3661), + [anon_sym_PLUS] = ACTIONS(3659), + [anon_sym_DASH] = ACTIONS(3659), + [anon_sym_STAR] = ACTIONS(3659), + [anon_sym_SLASH] = ACTIONS(3659), + [anon_sym_PERCENT] = ACTIONS(3659), + [anon_sym_CARET] = ACTIONS(3659), + [anon_sym_PIPE] = ACTIONS(3659), + [anon_sym_AMP] = ACTIONS(3659), + [anon_sym_LT_LT] = ACTIONS(3659), + [anon_sym_GT_GT] = ACTIONS(3659), + [anon_sym_GT_GT_GT] = ACTIONS(3659), + [anon_sym_EQ_EQ] = ACTIONS(3661), + [anon_sym_BANG_EQ] = ACTIONS(3661), + [anon_sym_GT_EQ] = ACTIONS(3661), + [anon_sym_LT_EQ] = ACTIONS(3661), + [anon_sym_DOT] = ACTIONS(3659), + [anon_sym_scoped] = ACTIONS(3659), + [anon_sym_var] = ACTIONS(3659), + [anon_sym_yield] = ACTIONS(3659), + [anon_sym_switch] = ACTIONS(3659), + [anon_sym_when] = ACTIONS(3659), + [sym_discard] = ACTIONS(3659), + [anon_sym_DOT_DOT] = ACTIONS(3661), + [anon_sym_and] = ACTIONS(3659), + [anon_sym_or] = ACTIONS(3659), + [anon_sym_PLUS_EQ] = ACTIONS(3661), + [anon_sym_DASH_EQ] = ACTIONS(3661), + [anon_sym_STAR_EQ] = ACTIONS(3661), + [anon_sym_SLASH_EQ] = ACTIONS(3661), + [anon_sym_PERCENT_EQ] = ACTIONS(3661), + [anon_sym_AMP_EQ] = ACTIONS(3661), + [anon_sym_CARET_EQ] = ACTIONS(3661), + [anon_sym_PIPE_EQ] = ACTIONS(3661), + [anon_sym_LT_LT_EQ] = ACTIONS(3661), + [anon_sym_GT_GT_EQ] = ACTIONS(3661), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3661), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3661), + [anon_sym_AMP_AMP] = ACTIONS(3661), + [anon_sym_PIPE_PIPE] = ACTIONS(3661), + [anon_sym_QMARK_QMARK] = ACTIONS(3659), + [anon_sym_from] = ACTIONS(3659), + [anon_sym_into] = ACTIONS(3659), + [anon_sym_join] = ACTIONS(3659), + [anon_sym_on] = ACTIONS(3659), + [anon_sym_equals] = ACTIONS(3659), + [anon_sym_let] = ACTIONS(3659), + [anon_sym_orderby] = ACTIONS(3659), + [anon_sym_ascending] = ACTIONS(3659), + [anon_sym_descending] = ACTIONS(3659), + [anon_sym_group] = ACTIONS(3659), + [anon_sym_by] = ACTIONS(3659), + [anon_sym_select] = ACTIONS(3659), + [anon_sym_as] = ACTIONS(3659), + [anon_sym_is] = ACTIONS(3659), + [anon_sym_DASH_GT] = ACTIONS(3661), + [anon_sym_with] = ACTIONS(3659), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_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(3661), }, [2249] = { - [sym_parameter_list] = STATE(7311), - [sym_positional_pattern_clause] = STATE(2285), - [sym_property_pattern_clause] = STATE(2342), - [sym__variable_designation] = STATE(3492), - [sym_parenthesized_variable_designation] = STATE(3463), - [sym__lambda_parameters] = STATE(7536), - [sym_identifier] = STATE(3493), - [sym__reserved_identifier] = STATE(3177), + [sym_property_pattern_clause] = STATE(2307), + [sym__variable_designation] = STATE(3249), + [sym_parenthesized_variable_designation] = STATE(3344), + [sym_identifier] = STATE(3346), + [sym__reserved_identifier] = STATE(3199), [sym_preproc_region] = STATE(2249), [sym_preproc_endregion] = STATE(2249), [sym_preproc_line] = STATE(2249), @@ -405154,75 +404866,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2249), [sym_preproc_define] = STATE(2249), [sym_preproc_undef] = STATE(2249), - [sym__identifier_token] = ACTIONS(3875), - [anon_sym_alias] = ACTIONS(3877), - [anon_sym_SEMI] = ACTIONS(3893), - [anon_sym_global] = ACTIONS(3877), - [anon_sym_LBRACK] = ACTIONS(3893), - [anon_sym_COLON] = ACTIONS(3893), - [anon_sym_COMMA] = ACTIONS(3893), - [anon_sym_RBRACK] = ACTIONS(3893), - [anon_sym_LPAREN] = ACTIONS(3893), - [anon_sym_RPAREN] = ACTIONS(3893), - [anon_sym_LBRACE] = ACTIONS(3881), - [anon_sym_RBRACE] = ACTIONS(3893), - [anon_sym_file] = ACTIONS(3877), - [anon_sym_LT] = ACTIONS(3895), - [anon_sym_GT] = ACTIONS(3895), - [anon_sym_where] = ACTIONS(3877), - [anon_sym_QMARK] = ACTIONS(3895), - [anon_sym_notnull] = ACTIONS(3877), - [anon_sym_unmanaged] = ACTIONS(3877), - [anon_sym_BANG] = ACTIONS(3895), - [anon_sym_PLUS_PLUS] = ACTIONS(3893), - [anon_sym_DASH_DASH] = ACTIONS(3893), - [anon_sym_PLUS] = ACTIONS(3895), - [anon_sym_DASH] = ACTIONS(3895), - [anon_sym_STAR] = ACTIONS(3893), - [anon_sym_SLASH] = ACTIONS(3895), - [anon_sym_PERCENT] = ACTIONS(3893), - [anon_sym_CARET] = ACTIONS(3893), - [anon_sym_PIPE] = ACTIONS(3895), - [anon_sym_AMP] = ACTIONS(3895), - [anon_sym_LT_LT] = ACTIONS(3893), - [anon_sym_GT_GT] = ACTIONS(3895), - [anon_sym_GT_GT_GT] = ACTIONS(3893), - [anon_sym_EQ_EQ] = ACTIONS(3893), - [anon_sym_BANG_EQ] = ACTIONS(3893), - [anon_sym_GT_EQ] = ACTIONS(3893), - [anon_sym_LT_EQ] = ACTIONS(3893), - [anon_sym_DOT] = ACTIONS(3895), - [anon_sym_scoped] = ACTIONS(3877), - [anon_sym_var] = ACTIONS(3877), - [anon_sym_yield] = ACTIONS(3877), - [anon_sym_switch] = ACTIONS(3895), - [anon_sym_when] = ACTIONS(3877), - [sym_discard] = ACTIONS(3897), - [anon_sym_DOT_DOT] = ACTIONS(3893), - [anon_sym_and] = ACTIONS(3883), - [anon_sym_or] = ACTIONS(3883), - [anon_sym_AMP_AMP] = ACTIONS(3893), - [anon_sym_PIPE_PIPE] = ACTIONS(3893), - [anon_sym_QMARK_QMARK] = ACTIONS(3893), - [anon_sym_from] = ACTIONS(3877), - [anon_sym_into] = ACTIONS(3877), - [anon_sym_join] = ACTIONS(3877), - [anon_sym_on] = ACTIONS(3877), - [anon_sym_equals] = ACTIONS(3877), - [anon_sym_let] = ACTIONS(3877), - [anon_sym_orderby] = ACTIONS(3877), - [anon_sym_ascending] = ACTIONS(3877), - [anon_sym_descending] = ACTIONS(3877), - [anon_sym_group] = ACTIONS(3877), - [anon_sym_by] = ACTIONS(3877), - [anon_sym_select] = ACTIONS(3877), - [anon_sym_as] = ACTIONS(3895), - [anon_sym_is] = ACTIONS(3895), - [anon_sym_DASH_GT] = ACTIONS(3893), - [anon_sym_with] = ACTIONS(3895), - [aux_sym_preproc_if_token3] = ACTIONS(3893), - [aux_sym_preproc_else_token1] = ACTIONS(3893), - [aux_sym_preproc_elif_token1] = ACTIONS(3893), + [sym__identifier_token] = ACTIONS(3855), + [anon_sym_alias] = ACTIONS(3857), + [anon_sym_SEMI] = ACTIONS(3885), + [anon_sym_global] = ACTIONS(3857), + [anon_sym_LBRACK] = ACTIONS(3885), + [anon_sym_COLON] = ACTIONS(3885), + [anon_sym_COMMA] = ACTIONS(3885), + [anon_sym_RBRACK] = ACTIONS(3885), + [anon_sym_LPAREN] = ACTIONS(3885), + [anon_sym_RPAREN] = ACTIONS(3885), + [anon_sym_LBRACE] = ACTIONS(3861), + [anon_sym_RBRACE] = ACTIONS(3885), + [anon_sym_file] = ACTIONS(3857), + [anon_sym_LT] = ACTIONS(3887), + [anon_sym_GT] = ACTIONS(3887), + [anon_sym_in] = ACTIONS(3887), + [anon_sym_where] = ACTIONS(3857), + [anon_sym_QMARK] = ACTIONS(3887), + [anon_sym_notnull] = ACTIONS(3857), + [anon_sym_unmanaged] = ACTIONS(3857), + [anon_sym_BANG] = ACTIONS(3887), + [anon_sym_PLUS_PLUS] = ACTIONS(3885), + [anon_sym_DASH_DASH] = ACTIONS(3885), + [anon_sym_PLUS] = ACTIONS(3887), + [anon_sym_DASH] = ACTIONS(3887), + [anon_sym_STAR] = ACTIONS(3885), + [anon_sym_SLASH] = ACTIONS(3887), + [anon_sym_PERCENT] = ACTIONS(3885), + [anon_sym_CARET] = ACTIONS(3885), + [anon_sym_PIPE] = ACTIONS(3887), + [anon_sym_AMP] = ACTIONS(3887), + [anon_sym_LT_LT] = ACTIONS(3885), + [anon_sym_GT_GT] = ACTIONS(3887), + [anon_sym_GT_GT_GT] = ACTIONS(3885), + [anon_sym_EQ_EQ] = ACTIONS(3885), + [anon_sym_BANG_EQ] = ACTIONS(3885), + [anon_sym_GT_EQ] = ACTIONS(3885), + [anon_sym_LT_EQ] = ACTIONS(3885), + [anon_sym_DOT] = ACTIONS(3887), + [anon_sym_scoped] = ACTIONS(3857), + [anon_sym_EQ_GT] = ACTIONS(3885), + [anon_sym_var] = ACTIONS(3857), + [anon_sym_yield] = ACTIONS(3857), + [anon_sym_switch] = ACTIONS(3887), + [anon_sym_when] = ACTIONS(3857), + [sym_discard] = ACTIONS(3865), + [anon_sym_DOT_DOT] = ACTIONS(3885), + [anon_sym_and] = ACTIONS(3887), + [anon_sym_or] = ACTIONS(3887), + [anon_sym_AMP_AMP] = ACTIONS(3885), + [anon_sym_PIPE_PIPE] = ACTIONS(3885), + [anon_sym_QMARK_QMARK] = ACTIONS(3885), + [anon_sym_from] = ACTIONS(3857), + [anon_sym_into] = ACTIONS(3887), + [anon_sym_join] = ACTIONS(3857), + [anon_sym_on] = ACTIONS(3857), + [anon_sym_equals] = ACTIONS(3857), + [anon_sym_let] = ACTIONS(3857), + [anon_sym_orderby] = ACTIONS(3857), + [anon_sym_ascending] = ACTIONS(3857), + [anon_sym_descending] = ACTIONS(3857), + [anon_sym_group] = ACTIONS(3857), + [anon_sym_by] = ACTIONS(3857), + [anon_sym_select] = ACTIONS(3857), + [anon_sym_as] = ACTIONS(3887), + [anon_sym_is] = ACTIONS(3887), + [anon_sym_DASH_GT] = ACTIONS(3885), + [anon_sym_with] = ACTIONS(3887), + [aux_sym_preproc_if_token3] = ACTIONS(3885), + [aux_sym_preproc_else_token1] = ACTIONS(3885), + [aux_sym_preproc_elif_token1] = ACTIONS(3885), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -405235,14 +404949,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2250] = { - [sym_parameter_list] = STATE(7311), - [sym_positional_pattern_clause] = STATE(2285), - [sym_property_pattern_clause] = STATE(2342), - [sym__variable_designation] = STATE(3492), - [sym_parenthesized_variable_designation] = STATE(3463), - [sym__lambda_parameters] = STATE(7536), - [sym_identifier] = STATE(3493), - [sym__reserved_identifier] = STATE(3177), [sym_preproc_region] = STATE(2250), [sym_preproc_endregion] = STATE(2250), [sym_preproc_line] = STATE(2250), @@ -405252,75 +404958,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2250), [sym_preproc_define] = STATE(2250), [sym_preproc_undef] = STATE(2250), - [sym__identifier_token] = ACTIONS(3875), - [anon_sym_alias] = ACTIONS(3877), - [anon_sym_SEMI] = ACTIONS(3893), - [anon_sym_global] = ACTIONS(3877), - [anon_sym_LBRACK] = ACTIONS(3893), - [anon_sym_COLON] = ACTIONS(3893), - [anon_sym_COMMA] = ACTIONS(3893), - [anon_sym_RBRACK] = ACTIONS(3893), - [anon_sym_LPAREN] = ACTIONS(3893), - [anon_sym_RPAREN] = ACTIONS(3893), - [anon_sym_LBRACE] = ACTIONS(3881), - [anon_sym_RBRACE] = ACTIONS(3893), - [anon_sym_file] = ACTIONS(3877), - [anon_sym_LT] = ACTIONS(3895), - [anon_sym_GT] = ACTIONS(3895), - [anon_sym_where] = ACTIONS(3877), - [anon_sym_QMARK] = ACTIONS(3895), - [anon_sym_notnull] = ACTIONS(3877), - [anon_sym_unmanaged] = ACTIONS(3877), - [anon_sym_BANG] = ACTIONS(3895), - [anon_sym_PLUS_PLUS] = ACTIONS(3893), - [anon_sym_DASH_DASH] = ACTIONS(3893), - [anon_sym_PLUS] = ACTIONS(3895), - [anon_sym_DASH] = ACTIONS(3895), - [anon_sym_STAR] = ACTIONS(3893), - [anon_sym_SLASH] = ACTIONS(3895), - [anon_sym_PERCENT] = ACTIONS(3893), - [anon_sym_CARET] = ACTIONS(3893), - [anon_sym_PIPE] = ACTIONS(3895), - [anon_sym_AMP] = ACTIONS(3895), - [anon_sym_LT_LT] = ACTIONS(3893), - [anon_sym_GT_GT] = ACTIONS(3895), - [anon_sym_GT_GT_GT] = ACTIONS(3893), - [anon_sym_EQ_EQ] = ACTIONS(3893), - [anon_sym_BANG_EQ] = ACTIONS(3893), - [anon_sym_GT_EQ] = ACTIONS(3893), - [anon_sym_LT_EQ] = ACTIONS(3893), - [anon_sym_DOT] = ACTIONS(3895), - [anon_sym_scoped] = ACTIONS(3877), - [anon_sym_var] = ACTIONS(3877), - [anon_sym_yield] = ACTIONS(3877), - [anon_sym_switch] = ACTIONS(3895), - [anon_sym_when] = ACTIONS(3877), - [sym_discard] = ACTIONS(3897), - [anon_sym_DOT_DOT] = ACTIONS(3893), - [anon_sym_and] = ACTIONS(3895), - [anon_sym_or] = ACTIONS(3895), - [anon_sym_AMP_AMP] = ACTIONS(3893), - [anon_sym_PIPE_PIPE] = ACTIONS(3893), - [anon_sym_QMARK_QMARK] = ACTIONS(3893), - [anon_sym_from] = ACTIONS(3877), - [anon_sym_into] = ACTIONS(3877), - [anon_sym_join] = ACTIONS(3877), - [anon_sym_on] = ACTIONS(3877), - [anon_sym_equals] = ACTIONS(3877), - [anon_sym_let] = ACTIONS(3877), - [anon_sym_orderby] = ACTIONS(3877), - [anon_sym_ascending] = ACTIONS(3877), - [anon_sym_descending] = ACTIONS(3877), - [anon_sym_group] = ACTIONS(3877), - [anon_sym_by] = ACTIONS(3877), - [anon_sym_select] = ACTIONS(3877), - [anon_sym_as] = ACTIONS(3895), - [anon_sym_is] = ACTIONS(3895), - [anon_sym_DASH_GT] = ACTIONS(3893), - [anon_sym_with] = ACTIONS(3895), - [aux_sym_preproc_if_token3] = ACTIONS(3893), - [aux_sym_preproc_else_token1] = ACTIONS(3893), - [aux_sym_preproc_elif_token1] = ACTIONS(3893), + [sym__identifier_token] = ACTIONS(3669), + [anon_sym_alias] = ACTIONS(3669), + [anon_sym_global] = ACTIONS(3669), + [anon_sym_EQ] = ACTIONS(3673), + [anon_sym_LBRACK] = ACTIONS(3675), + [anon_sym_COLON] = ACTIONS(3671), + [anon_sym_COMMA] = ACTIONS(3678), + [anon_sym_LPAREN] = ACTIONS(3675), + [anon_sym_RPAREN] = ACTIONS(3678), + [anon_sym_LBRACE] = ACTIONS(3678), + [anon_sym_file] = ACTIONS(3669), + [anon_sym_LT] = ACTIONS(3673), + [anon_sym_GT] = ACTIONS(3673), + [anon_sym_where] = ACTIONS(3669), + [anon_sym_QMARK] = ACTIONS(3680), + [anon_sym_notnull] = ACTIONS(3669), + [anon_sym_unmanaged] = ACTIONS(3669), + [anon_sym_BANG] = ACTIONS(3673), + [anon_sym_PLUS_PLUS] = ACTIONS(3671), + [anon_sym_DASH_DASH] = ACTIONS(3671), + [anon_sym_PLUS] = ACTIONS(3673), + [anon_sym_DASH] = ACTIONS(3673), + [anon_sym_STAR] = ACTIONS(3680), + [anon_sym_SLASH] = ACTIONS(3673), + [anon_sym_PERCENT] = ACTIONS(3673), + [anon_sym_CARET] = ACTIONS(3673), + [anon_sym_PIPE] = ACTIONS(3673), + [anon_sym_AMP] = ACTIONS(3673), + [anon_sym_LT_LT] = ACTIONS(3673), + [anon_sym_GT_GT] = ACTIONS(3673), + [anon_sym_GT_GT_GT] = ACTIONS(3673), + [anon_sym_EQ_EQ] = ACTIONS(3671), + [anon_sym_BANG_EQ] = ACTIONS(3671), + [anon_sym_GT_EQ] = ACTIONS(3671), + [anon_sym_LT_EQ] = ACTIONS(3671), + [anon_sym_DOT] = ACTIONS(3680), + [anon_sym_scoped] = ACTIONS(3669), + [anon_sym_var] = ACTIONS(3669), + [anon_sym_yield] = ACTIONS(3669), + [anon_sym_switch] = ACTIONS(3673), + [anon_sym_when] = ACTIONS(3669), + [sym_discard] = ACTIONS(3669), + [anon_sym_DOT_DOT] = ACTIONS(3671), + [anon_sym_and] = ACTIONS(3669), + [anon_sym_or] = ACTIONS(3669), + [anon_sym_PLUS_EQ] = ACTIONS(3671), + [anon_sym_DASH_EQ] = ACTIONS(3671), + [anon_sym_STAR_EQ] = ACTIONS(3671), + [anon_sym_SLASH_EQ] = ACTIONS(3671), + [anon_sym_PERCENT_EQ] = ACTIONS(3671), + [anon_sym_AMP_EQ] = ACTIONS(3671), + [anon_sym_CARET_EQ] = ACTIONS(3671), + [anon_sym_PIPE_EQ] = ACTIONS(3671), + [anon_sym_LT_LT_EQ] = ACTIONS(3671), + [anon_sym_GT_GT_EQ] = ACTIONS(3671), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3671), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3671), + [anon_sym_AMP_AMP] = ACTIONS(3671), + [anon_sym_PIPE_PIPE] = ACTIONS(3671), + [anon_sym_QMARK_QMARK] = ACTIONS(3673), + [anon_sym_from] = ACTIONS(3669), + [anon_sym_into] = ACTIONS(3669), + [anon_sym_join] = ACTIONS(3669), + [anon_sym_on] = ACTIONS(3669), + [anon_sym_equals] = ACTIONS(3669), + [anon_sym_let] = ACTIONS(3669), + [anon_sym_orderby] = ACTIONS(3669), + [anon_sym_ascending] = ACTIONS(3669), + [anon_sym_descending] = ACTIONS(3669), + [anon_sym_group] = ACTIONS(3669), + [anon_sym_by] = ACTIONS(3669), + [anon_sym_select] = ACTIONS(3669), + [anon_sym_as] = ACTIONS(3673), + [anon_sym_is] = ACTIONS(3673), + [anon_sym_DASH_GT] = ACTIONS(3675), + [anon_sym_with] = ACTIONS(3673), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -405333,11 +405046,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2251] = { - [sym_property_pattern_clause] = STATE(2298), - [sym__variable_designation] = STATE(3349), - [sym_parenthesized_variable_designation] = STATE(3340), - [sym_identifier] = STATE(3345), - [sym__reserved_identifier] = STATE(3177), [sym_preproc_region] = STATE(2251), [sym_preproc_endregion] = STATE(2251), [sym_preproc_line] = STATE(2251), @@ -405347,87 +405055,92 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2251), [sym_preproc_define] = STATE(2251), [sym_preproc_undef] = STATE(2251), - [sym__identifier_token] = ACTIONS(3875), - [anon_sym_alias] = ACTIONS(3877), - [anon_sym_SEMI] = ACTIONS(3905), - [anon_sym_global] = ACTIONS(3877), - [anon_sym_LBRACK] = ACTIONS(3905), - [anon_sym_COLON] = ACTIONS(3905), - [anon_sym_COMMA] = ACTIONS(3905), - [anon_sym_RBRACK] = ACTIONS(3905), - [anon_sym_LPAREN] = ACTIONS(3905), - [anon_sym_RPAREN] = ACTIONS(3905), - [anon_sym_LBRACE] = ACTIONS(3881), - [anon_sym_RBRACE] = ACTIONS(3905), - [anon_sym_file] = ACTIONS(3877), - [anon_sym_LT] = ACTIONS(3907), - [anon_sym_GT] = ACTIONS(3907), - [anon_sym_in] = ACTIONS(3907), - [anon_sym_where] = ACTIONS(3877), - [anon_sym_QMARK] = ACTIONS(3907), - [anon_sym_notnull] = ACTIONS(3877), - [anon_sym_unmanaged] = ACTIONS(3877), - [anon_sym_BANG] = ACTIONS(3907), - [anon_sym_PLUS_PLUS] = ACTIONS(3905), - [anon_sym_DASH_DASH] = ACTIONS(3905), - [anon_sym_PLUS] = ACTIONS(3907), - [anon_sym_DASH] = ACTIONS(3907), - [anon_sym_STAR] = ACTIONS(3905), - [anon_sym_SLASH] = ACTIONS(3907), - [anon_sym_PERCENT] = ACTIONS(3905), - [anon_sym_CARET] = ACTIONS(3905), - [anon_sym_PIPE] = ACTIONS(3907), - [anon_sym_AMP] = ACTIONS(3907), - [anon_sym_LT_LT] = ACTIONS(3905), - [anon_sym_GT_GT] = ACTIONS(3907), - [anon_sym_GT_GT_GT] = ACTIONS(3905), - [anon_sym_EQ_EQ] = ACTIONS(3905), - [anon_sym_BANG_EQ] = ACTIONS(3905), - [anon_sym_GT_EQ] = ACTIONS(3905), - [anon_sym_LT_EQ] = ACTIONS(3905), - [anon_sym_DOT] = ACTIONS(3907), - [anon_sym_scoped] = ACTIONS(3877), - [anon_sym_EQ_GT] = ACTIONS(3905), - [anon_sym_var] = ACTIONS(3877), - [anon_sym_yield] = ACTIONS(3877), - [anon_sym_switch] = ACTIONS(3907), - [anon_sym_when] = ACTIONS(3877), - [sym_discard] = ACTIONS(3885), - [anon_sym_DOT_DOT] = ACTIONS(3905), - [anon_sym_and] = ACTIONS(3907), - [anon_sym_or] = ACTIONS(3907), - [anon_sym_AMP_AMP] = ACTIONS(3905), - [anon_sym_PIPE_PIPE] = ACTIONS(3905), - [anon_sym_QMARK_QMARK] = ACTIONS(3905), - [anon_sym_from] = ACTIONS(3877), - [anon_sym_into] = ACTIONS(3907), - [anon_sym_join] = ACTIONS(3877), - [anon_sym_on] = ACTIONS(3877), - [anon_sym_equals] = ACTIONS(3877), - [anon_sym_let] = ACTIONS(3877), - [anon_sym_orderby] = ACTIONS(3877), - [anon_sym_ascending] = ACTIONS(3877), - [anon_sym_descending] = ACTIONS(3877), - [anon_sym_group] = ACTIONS(3877), - [anon_sym_by] = ACTIONS(3877), - [anon_sym_select] = ACTIONS(3877), - [anon_sym_as] = ACTIONS(3907), - [anon_sym_is] = ACTIONS(3907), - [anon_sym_DASH_GT] = ACTIONS(3905), - [anon_sym_with] = ACTIONS(3907), - [aux_sym_preproc_if_token3] = ACTIONS(3905), - [aux_sym_preproc_else_token1] = ACTIONS(3905), - [aux_sym_preproc_elif_token1] = 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__identifier_token] = ACTIONS(3663), + [anon_sym_alias] = ACTIONS(3663), + [anon_sym_global] = ACTIONS(3663), + [anon_sym_EQ] = ACTIONS(3663), + [anon_sym_LBRACK] = ACTIONS(3665), + [anon_sym_COLON] = ACTIONS(3665), + [anon_sym_COMMA] = ACTIONS(3665), + [anon_sym_LPAREN] = ACTIONS(3665), + [anon_sym_LBRACE] = ACTIONS(3665), + [anon_sym_file] = ACTIONS(3663), + [anon_sym_LT] = ACTIONS(3663), + [anon_sym_GT] = ACTIONS(3663), + [anon_sym_where] = ACTIONS(3663), + [anon_sym_QMARK] = ACTIONS(3663), + [anon_sym_notnull] = ACTIONS(3663), + [anon_sym_unmanaged] = ACTIONS(3663), + [anon_sym_BANG] = ACTIONS(3663), + [anon_sym_PLUS_PLUS] = ACTIONS(3665), + [anon_sym_DASH_DASH] = ACTIONS(3665), + [anon_sym_PLUS] = ACTIONS(3663), + [anon_sym_DASH] = ACTIONS(3663), + [anon_sym_STAR] = ACTIONS(3663), + [anon_sym_SLASH] = ACTIONS(3663), + [anon_sym_PERCENT] = ACTIONS(3663), + [anon_sym_CARET] = ACTIONS(3663), + [anon_sym_PIPE] = ACTIONS(3663), + [anon_sym_AMP] = ACTIONS(3663), + [anon_sym_LT_LT] = ACTIONS(3663), + [anon_sym_GT_GT] = ACTIONS(3663), + [anon_sym_GT_GT_GT] = ACTIONS(3663), + [anon_sym_EQ_EQ] = ACTIONS(3665), + [anon_sym_BANG_EQ] = ACTIONS(3665), + [anon_sym_GT_EQ] = ACTIONS(3665), + [anon_sym_LT_EQ] = ACTIONS(3665), + [anon_sym_DOT] = ACTIONS(3663), + [anon_sym_scoped] = ACTIONS(3663), + [anon_sym_var] = ACTIONS(3663), + [anon_sym_yield] = ACTIONS(3663), + [anon_sym_switch] = ACTIONS(3663), + [anon_sym_when] = ACTIONS(3663), + [sym_discard] = ACTIONS(3663), + [anon_sym_DOT_DOT] = ACTIONS(3665), + [anon_sym_and] = ACTIONS(3663), + [anon_sym_or] = ACTIONS(3663), + [anon_sym_PLUS_EQ] = ACTIONS(3665), + [anon_sym_DASH_EQ] = ACTIONS(3665), + [anon_sym_STAR_EQ] = ACTIONS(3665), + [anon_sym_SLASH_EQ] = ACTIONS(3665), + [anon_sym_PERCENT_EQ] = ACTIONS(3665), + [anon_sym_AMP_EQ] = ACTIONS(3665), + [anon_sym_CARET_EQ] = ACTIONS(3665), + [anon_sym_PIPE_EQ] = ACTIONS(3665), + [anon_sym_LT_LT_EQ] = ACTIONS(3665), + [anon_sym_GT_GT_EQ] = ACTIONS(3665), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3665), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3665), + [anon_sym_AMP_AMP] = ACTIONS(3665), + [anon_sym_PIPE_PIPE] = ACTIONS(3665), + [anon_sym_QMARK_QMARK] = ACTIONS(3663), + [anon_sym_from] = ACTIONS(3663), + [anon_sym_into] = ACTIONS(3663), + [anon_sym_join] = ACTIONS(3663), + [anon_sym_on] = ACTIONS(3663), + [anon_sym_equals] = ACTIONS(3663), + [anon_sym_let] = ACTIONS(3663), + [anon_sym_orderby] = ACTIONS(3663), + [anon_sym_ascending] = ACTIONS(3663), + [anon_sym_descending] = ACTIONS(3663), + [anon_sym_group] = ACTIONS(3663), + [anon_sym_by] = ACTIONS(3663), + [anon_sym_select] = ACTIONS(3663), + [anon_sym_as] = ACTIONS(3663), + [anon_sym_is] = ACTIONS(3663), + [anon_sym_DASH_GT] = ACTIONS(3665), + [anon_sym_with] = ACTIONS(3663), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_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(3665), }, [2252] = { [sym_preproc_region] = STATE(2252), @@ -405439,92 +405152,92 @@ 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(3699), - [anon_sym_alias] = ACTIONS(3699), - [anon_sym_global] = ACTIONS(3699), - [anon_sym_EQ] = ACTIONS(3704), - [anon_sym_LBRACK] = ACTIONS(3706), - [anon_sym_COLON] = ACTIONS(3701), - [anon_sym_COMMA] = ACTIONS(3701), - [anon_sym_LPAREN] = ACTIONS(3706), - [anon_sym_LBRACE] = ACTIONS(3710), - [anon_sym_file] = ACTIONS(3699), - [anon_sym_LT] = ACTIONS(3712), - [anon_sym_GT] = ACTIONS(3712), - [anon_sym_where] = ACTIONS(3699), - [anon_sym_QMARK] = ACTIONS(3712), - [anon_sym_notnull] = ACTIONS(3699), - [anon_sym_unmanaged] = ACTIONS(3699), - [anon_sym_BANG] = ACTIONS(3712), - [anon_sym_PLUS_PLUS] = ACTIONS(3706), - [anon_sym_DASH_DASH] = ACTIONS(3706), - [anon_sym_PLUS] = ACTIONS(3712), - [anon_sym_DASH] = ACTIONS(3712), - [anon_sym_STAR] = ACTIONS(3712), - [anon_sym_SLASH] = ACTIONS(3712), - [anon_sym_PERCENT] = ACTIONS(3712), - [anon_sym_CARET] = ACTIONS(3712), - [anon_sym_PIPE] = ACTIONS(3712), - [anon_sym_AMP] = ACTIONS(3712), - [anon_sym_LT_LT] = ACTIONS(3712), - [anon_sym_GT_GT] = ACTIONS(3712), - [anon_sym_GT_GT_GT] = ACTIONS(3712), - [anon_sym_EQ_EQ] = ACTIONS(3706), - [anon_sym_BANG_EQ] = ACTIONS(3706), - [anon_sym_GT_EQ] = ACTIONS(3706), - [anon_sym_LT_EQ] = ACTIONS(3706), - [anon_sym_DOT] = ACTIONS(3712), - [anon_sym_scoped] = ACTIONS(3699), - [anon_sym_var] = ACTIONS(3699), - [anon_sym_yield] = ACTIONS(3699), - [anon_sym_switch] = ACTIONS(3712), - [anon_sym_when] = ACTIONS(3699), - [sym_discard] = ACTIONS(3699), - [anon_sym_DOT_DOT] = ACTIONS(3706), - [anon_sym_and] = ACTIONS(3716), - [anon_sym_or] = ACTIONS(3716), - [anon_sym_PLUS_EQ] = ACTIONS(3719), - [anon_sym_DASH_EQ] = ACTIONS(3719), - [anon_sym_STAR_EQ] = ACTIONS(3719), - [anon_sym_SLASH_EQ] = ACTIONS(3719), - [anon_sym_PERCENT_EQ] = ACTIONS(3719), - [anon_sym_AMP_EQ] = ACTIONS(3719), - [anon_sym_CARET_EQ] = ACTIONS(3719), - [anon_sym_PIPE_EQ] = ACTIONS(3719), - [anon_sym_LT_LT_EQ] = ACTIONS(3719), - [anon_sym_GT_GT_EQ] = ACTIONS(3719), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3719), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3719), - [anon_sym_AMP_AMP] = ACTIONS(3706), - [anon_sym_PIPE_PIPE] = ACTIONS(3706), - [anon_sym_QMARK_QMARK] = ACTIONS(3712), - [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_ascending] = ACTIONS(3699), - [anon_sym_descending] = ACTIONS(3699), - [anon_sym_group] = ACTIONS(3699), - [anon_sym_by] = ACTIONS(3699), - [anon_sym_select] = ACTIONS(3699), - [anon_sym_as] = ACTIONS(3712), - [anon_sym_is] = ACTIONS(3712), - [anon_sym_DASH_GT] = ACTIONS(3706), - [anon_sym_with] = ACTIONS(3712), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_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(3701), + [sym__identifier_token] = ACTIONS(3634), + [anon_sym_alias] = ACTIONS(3634), + [anon_sym_global] = ACTIONS(3634), + [anon_sym_EQ] = ACTIONS(3634), + [anon_sym_LBRACK] = ACTIONS(3636), + [anon_sym_COLON] = ACTIONS(3636), + [anon_sym_COMMA] = ACTIONS(3636), + [anon_sym_LPAREN] = ACTIONS(3636), + [anon_sym_LBRACE] = ACTIONS(3636), + [anon_sym_file] = ACTIONS(3634), + [anon_sym_LT] = ACTIONS(3634), + [anon_sym_GT] = ACTIONS(3634), + [anon_sym_where] = ACTIONS(3634), + [anon_sym_QMARK] = ACTIONS(3634), + [anon_sym_notnull] = ACTIONS(3634), + [anon_sym_unmanaged] = ACTIONS(3634), + [anon_sym_BANG] = ACTIONS(3634), + [anon_sym_PLUS_PLUS] = ACTIONS(3636), + [anon_sym_DASH_DASH] = ACTIONS(3636), + [anon_sym_PLUS] = ACTIONS(3634), + [anon_sym_DASH] = ACTIONS(3634), + [anon_sym_STAR] = ACTIONS(3634), + [anon_sym_SLASH] = ACTIONS(3634), + [anon_sym_PERCENT] = ACTIONS(3634), + [anon_sym_CARET] = ACTIONS(3634), + [anon_sym_PIPE] = ACTIONS(3634), + [anon_sym_AMP] = ACTIONS(3634), + [anon_sym_LT_LT] = ACTIONS(3634), + [anon_sym_GT_GT] = ACTIONS(3634), + [anon_sym_GT_GT_GT] = ACTIONS(3634), + [anon_sym_EQ_EQ] = ACTIONS(3636), + [anon_sym_BANG_EQ] = ACTIONS(3636), + [anon_sym_GT_EQ] = ACTIONS(3636), + [anon_sym_LT_EQ] = ACTIONS(3636), + [anon_sym_DOT] = ACTIONS(3634), + [anon_sym_scoped] = ACTIONS(3634), + [anon_sym_var] = ACTIONS(3634), + [anon_sym_yield] = ACTIONS(3634), + [anon_sym_switch] = ACTIONS(3634), + [anon_sym_when] = ACTIONS(3634), + [sym_discard] = ACTIONS(3634), + [anon_sym_DOT_DOT] = ACTIONS(3636), + [anon_sym_and] = ACTIONS(3634), + [anon_sym_or] = ACTIONS(3634), + [anon_sym_PLUS_EQ] = ACTIONS(3636), + [anon_sym_DASH_EQ] = ACTIONS(3636), + [anon_sym_STAR_EQ] = ACTIONS(3636), + [anon_sym_SLASH_EQ] = ACTIONS(3636), + [anon_sym_PERCENT_EQ] = ACTIONS(3636), + [anon_sym_AMP_EQ] = ACTIONS(3636), + [anon_sym_CARET_EQ] = ACTIONS(3636), + [anon_sym_PIPE_EQ] = ACTIONS(3636), + [anon_sym_LT_LT_EQ] = ACTIONS(3636), + [anon_sym_GT_GT_EQ] = ACTIONS(3636), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3636), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3636), + [anon_sym_AMP_AMP] = ACTIONS(3636), + [anon_sym_PIPE_PIPE] = ACTIONS(3636), + [anon_sym_QMARK_QMARK] = ACTIONS(3634), + [anon_sym_from] = ACTIONS(3634), + [anon_sym_into] = ACTIONS(3634), + [anon_sym_join] = ACTIONS(3634), + [anon_sym_on] = ACTIONS(3634), + [anon_sym_equals] = ACTIONS(3634), + [anon_sym_let] = ACTIONS(3634), + [anon_sym_orderby] = ACTIONS(3634), + [anon_sym_ascending] = ACTIONS(3634), + [anon_sym_descending] = ACTIONS(3634), + [anon_sym_group] = ACTIONS(3634), + [anon_sym_by] = ACTIONS(3634), + [anon_sym_select] = ACTIONS(3634), + [anon_sym_as] = ACTIONS(3634), + [anon_sym_is] = ACTIONS(3634), + [anon_sym_DASH_GT] = ACTIONS(3636), + [anon_sym_with] = ACTIONS(3634), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_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(3636), }, [2253] = { [sym_preproc_region] = STATE(2253), @@ -405536,92 +405249,92 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2253), [sym_preproc_define] = STATE(2253), [sym_preproc_undef] = STATE(2253), - [sym__identifier_token] = ACTIONS(3447), - [anon_sym_alias] = ACTIONS(3447), - [anon_sym_global] = ACTIONS(3447), - [anon_sym_EQ] = ACTIONS(3447), - [anon_sym_LBRACK] = ACTIONS(3445), - [anon_sym_COLON] = ACTIONS(3445), - [anon_sym_COMMA] = ACTIONS(3445), - [anon_sym_LPAREN] = ACTIONS(3445), - [anon_sym_LBRACE] = ACTIONS(3445), - [anon_sym_file] = ACTIONS(3447), - [anon_sym_LT] = ACTIONS(3447), - [anon_sym_GT] = ACTIONS(3447), - [anon_sym_where] = ACTIONS(3447), - [anon_sym_QMARK] = ACTIONS(3447), - [anon_sym_notnull] = ACTIONS(3447), - [anon_sym_unmanaged] = ACTIONS(3447), - [anon_sym_BANG] = ACTIONS(3447), - [anon_sym_PLUS_PLUS] = ACTIONS(3445), - [anon_sym_DASH_DASH] = ACTIONS(3445), - [anon_sym_PLUS] = ACTIONS(3447), - [anon_sym_DASH] = ACTIONS(3447), - [anon_sym_STAR] = ACTIONS(3447), - [anon_sym_SLASH] = ACTIONS(3447), - [anon_sym_PERCENT] = ACTIONS(3447), - [anon_sym_CARET] = ACTIONS(3447), - [anon_sym_PIPE] = ACTIONS(3447), - [anon_sym_AMP] = ACTIONS(3447), - [anon_sym_LT_LT] = ACTIONS(3447), - [anon_sym_GT_GT] = ACTIONS(3447), - [anon_sym_GT_GT_GT] = ACTIONS(3447), - [anon_sym_EQ_EQ] = ACTIONS(3445), - [anon_sym_BANG_EQ] = ACTIONS(3445), - [anon_sym_GT_EQ] = ACTIONS(3445), - [anon_sym_LT_EQ] = ACTIONS(3445), - [anon_sym_DOT] = ACTIONS(3447), - [anon_sym_scoped] = ACTIONS(3447), - [anon_sym_var] = ACTIONS(3447), - [anon_sym_yield] = ACTIONS(3447), - [anon_sym_switch] = ACTIONS(3447), - [anon_sym_when] = ACTIONS(3447), - [sym_discard] = ACTIONS(3447), - [anon_sym_DOT_DOT] = ACTIONS(3445), - [anon_sym_and] = ACTIONS(3447), - [anon_sym_or] = ACTIONS(3447), - [anon_sym_PLUS_EQ] = ACTIONS(3445), - [anon_sym_DASH_EQ] = ACTIONS(3445), - [anon_sym_STAR_EQ] = ACTIONS(3445), - [anon_sym_SLASH_EQ] = ACTIONS(3445), - [anon_sym_PERCENT_EQ] = ACTIONS(3445), - [anon_sym_AMP_EQ] = ACTIONS(3445), - [anon_sym_CARET_EQ] = ACTIONS(3445), - [anon_sym_PIPE_EQ] = ACTIONS(3445), - [anon_sym_LT_LT_EQ] = ACTIONS(3445), - [anon_sym_GT_GT_EQ] = ACTIONS(3445), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3445), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3445), - [anon_sym_AMP_AMP] = ACTIONS(3445), - [anon_sym_PIPE_PIPE] = ACTIONS(3445), - [anon_sym_QMARK_QMARK] = ACTIONS(3447), - [anon_sym_from] = ACTIONS(3447), - [anon_sym_into] = ACTIONS(3447), - [anon_sym_join] = ACTIONS(3447), - [anon_sym_on] = ACTIONS(3447), - [anon_sym_equals] = ACTIONS(3447), - [anon_sym_let] = ACTIONS(3447), - [anon_sym_orderby] = ACTIONS(3447), - [anon_sym_ascending] = ACTIONS(3447), - [anon_sym_descending] = ACTIONS(3447), - [anon_sym_group] = ACTIONS(3447), - [anon_sym_by] = ACTIONS(3447), - [anon_sym_select] = ACTIONS(3447), - [anon_sym_as] = ACTIONS(3447), - [anon_sym_is] = ACTIONS(3447), - [anon_sym_DASH_GT] = ACTIONS(3445), - [anon_sym_with] = ACTIONS(3447), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_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(3445), + [sym__identifier_token] = ACTIONS(3431), + [anon_sym_alias] = ACTIONS(3431), + [anon_sym_global] = ACTIONS(3431), + [anon_sym_EQ] = ACTIONS(3431), + [anon_sym_LBRACK] = ACTIONS(3429), + [anon_sym_COLON] = ACTIONS(3431), + [anon_sym_COMMA] = ACTIONS(3429), + [anon_sym_LPAREN] = ACTIONS(3429), + [anon_sym_return] = ACTIONS(3889), + [anon_sym_RBRACE] = ACTIONS(3429), + [anon_sym_file] = ACTIONS(3431), + [anon_sym_LT] = ACTIONS(3431), + [anon_sym_GT] = ACTIONS(3431), + [anon_sym_where] = ACTIONS(3431), + [anon_sym_QMARK] = ACTIONS(3431), + [anon_sym_notnull] = ACTIONS(3431), + [anon_sym_unmanaged] = ACTIONS(3431), + [anon_sym_BANG] = ACTIONS(3431), + [anon_sym_PLUS_PLUS] = ACTIONS(3429), + [anon_sym_DASH_DASH] = ACTIONS(3429), + [anon_sym_PLUS] = ACTIONS(3431), + [anon_sym_DASH] = ACTIONS(3431), + [anon_sym_STAR] = ACTIONS(3431), + [anon_sym_SLASH] = ACTIONS(3431), + [anon_sym_PERCENT] = ACTIONS(3431), + [anon_sym_CARET] = ACTIONS(3431), + [anon_sym_PIPE] = ACTIONS(3431), + [anon_sym_AMP] = ACTIONS(3431), + [anon_sym_LT_LT] = ACTIONS(3431), + [anon_sym_GT_GT] = ACTIONS(3431), + [anon_sym_GT_GT_GT] = ACTIONS(3431), + [anon_sym_EQ_EQ] = ACTIONS(3429), + [anon_sym_BANG_EQ] = ACTIONS(3429), + [anon_sym_GT_EQ] = ACTIONS(3429), + [anon_sym_LT_EQ] = ACTIONS(3429), + [anon_sym_DOT] = ACTIONS(3431), + [anon_sym_scoped] = ACTIONS(3431), + [anon_sym_EQ_GT] = ACTIONS(3429), + [anon_sym_COLON_COLON] = ACTIONS(3429), + [anon_sym_var] = ACTIONS(3431), + [anon_sym_break] = ACTIONS(3891), + [anon_sym_yield] = ACTIONS(3431), + [anon_sym_switch] = ACTIONS(3431), + [anon_sym_when] = ACTIONS(3431), + [anon_sym_DOT_DOT] = ACTIONS(3429), + [anon_sym_PLUS_EQ] = ACTIONS(3429), + [anon_sym_DASH_EQ] = ACTIONS(3429), + [anon_sym_STAR_EQ] = ACTIONS(3429), + [anon_sym_SLASH_EQ] = ACTIONS(3429), + [anon_sym_PERCENT_EQ] = ACTIONS(3429), + [anon_sym_AMP_EQ] = ACTIONS(3429), + [anon_sym_CARET_EQ] = ACTIONS(3429), + [anon_sym_PIPE_EQ] = ACTIONS(3429), + [anon_sym_LT_LT_EQ] = ACTIONS(3429), + [anon_sym_GT_GT_EQ] = ACTIONS(3429), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3429), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3429), + [anon_sym_AMP_AMP] = ACTIONS(3429), + [anon_sym_PIPE_PIPE] = ACTIONS(3429), + [anon_sym_QMARK_QMARK] = 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), + [anon_sym_as] = ACTIONS(3431), + [anon_sym_is] = ACTIONS(3431), + [anon_sym_DASH_GT] = ACTIONS(3429), + [anon_sym_with] = ACTIONS(3431), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), }, [2254] = { [sym_preproc_region] = STATE(2254), @@ -405633,92 +405346,92 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2254), [sym_preproc_define] = STATE(2254), [sym_preproc_undef] = STATE(2254), - [sym__identifier_token] = ACTIONS(3650), - [anon_sym_alias] = ACTIONS(3650), - [anon_sym_global] = ACTIONS(3650), - [anon_sym_EQ] = ACTIONS(3650), - [anon_sym_LBRACK] = ACTIONS(3652), - [anon_sym_COLON] = ACTIONS(3652), - [anon_sym_COMMA] = ACTIONS(3652), - [anon_sym_LPAREN] = ACTIONS(3652), - [anon_sym_LBRACE] = ACTIONS(3652), - [anon_sym_file] = ACTIONS(3650), - [anon_sym_LT] = ACTIONS(3650), - [anon_sym_GT] = ACTIONS(3650), - [anon_sym_where] = ACTIONS(3650), - [anon_sym_QMARK] = ACTIONS(3650), - [anon_sym_notnull] = ACTIONS(3650), - [anon_sym_unmanaged] = ACTIONS(3650), - [anon_sym_BANG] = ACTIONS(3650), - [anon_sym_PLUS_PLUS] = ACTIONS(3652), - [anon_sym_DASH_DASH] = ACTIONS(3652), - [anon_sym_PLUS] = ACTIONS(3650), - [anon_sym_DASH] = ACTIONS(3650), - [anon_sym_STAR] = ACTIONS(3650), - [anon_sym_SLASH] = ACTIONS(3650), - [anon_sym_PERCENT] = ACTIONS(3650), - [anon_sym_CARET] = ACTIONS(3650), - [anon_sym_PIPE] = ACTIONS(3650), - [anon_sym_AMP] = ACTIONS(3650), - [anon_sym_LT_LT] = ACTIONS(3650), - [anon_sym_GT_GT] = ACTIONS(3650), - [anon_sym_GT_GT_GT] = ACTIONS(3650), - [anon_sym_EQ_EQ] = ACTIONS(3652), - [anon_sym_BANG_EQ] = ACTIONS(3652), - [anon_sym_GT_EQ] = ACTIONS(3652), - [anon_sym_LT_EQ] = ACTIONS(3652), - [anon_sym_DOT] = ACTIONS(3650), - [anon_sym_scoped] = ACTIONS(3650), - [anon_sym_var] = ACTIONS(3650), - [anon_sym_yield] = ACTIONS(3650), - [anon_sym_switch] = ACTIONS(3650), - [anon_sym_when] = ACTIONS(3650), - [sym_discard] = ACTIONS(3650), - [anon_sym_DOT_DOT] = ACTIONS(3652), - [anon_sym_and] = ACTIONS(3650), - [anon_sym_or] = ACTIONS(3650), - [anon_sym_PLUS_EQ] = ACTIONS(3652), - [anon_sym_DASH_EQ] = ACTIONS(3652), - [anon_sym_STAR_EQ] = ACTIONS(3652), - [anon_sym_SLASH_EQ] = ACTIONS(3652), - [anon_sym_PERCENT_EQ] = ACTIONS(3652), - [anon_sym_AMP_EQ] = ACTIONS(3652), - [anon_sym_CARET_EQ] = ACTIONS(3652), - [anon_sym_PIPE_EQ] = ACTIONS(3652), - [anon_sym_LT_LT_EQ] = ACTIONS(3652), - [anon_sym_GT_GT_EQ] = ACTIONS(3652), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3652), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3652), - [anon_sym_AMP_AMP] = ACTIONS(3652), - [anon_sym_PIPE_PIPE] = ACTIONS(3652), - [anon_sym_QMARK_QMARK] = ACTIONS(3650), - [anon_sym_from] = ACTIONS(3650), - [anon_sym_into] = ACTIONS(3650), - [anon_sym_join] = ACTIONS(3650), - [anon_sym_on] = ACTIONS(3650), - [anon_sym_equals] = ACTIONS(3650), - [anon_sym_let] = ACTIONS(3650), - [anon_sym_orderby] = ACTIONS(3650), - [anon_sym_ascending] = ACTIONS(3650), - [anon_sym_descending] = ACTIONS(3650), - [anon_sym_group] = ACTIONS(3650), - [anon_sym_by] = ACTIONS(3650), - [anon_sym_select] = ACTIONS(3650), - [anon_sym_as] = ACTIONS(3650), - [anon_sym_is] = ACTIONS(3650), - [anon_sym_DASH_GT] = ACTIONS(3652), - [anon_sym_with] = ACTIONS(3650), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_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(3652), + [sym__identifier_token] = ACTIONS(3669), + [anon_sym_alias] = ACTIONS(3669), + [anon_sym_global] = ACTIONS(3669), + [anon_sym_EQ] = ACTIONS(3673), + [anon_sym_LBRACK] = ACTIONS(3675), + [anon_sym_COLON] = ACTIONS(3671), + [anon_sym_COMMA] = ACTIONS(3675), + [anon_sym_LPAREN] = ACTIONS(3675), + [anon_sym_RPAREN] = ACTIONS(3675), + [anon_sym_LBRACE] = ACTIONS(3678), + [anon_sym_file] = ACTIONS(3669), + [anon_sym_LT] = ACTIONS(3673), + [anon_sym_GT] = ACTIONS(3673), + [anon_sym_where] = ACTIONS(3669), + [anon_sym_QMARK] = ACTIONS(3680), + [anon_sym_notnull] = ACTIONS(3669), + [anon_sym_unmanaged] = ACTIONS(3669), + [anon_sym_BANG] = ACTIONS(3673), + [anon_sym_PLUS_PLUS] = ACTIONS(3671), + [anon_sym_DASH_DASH] = ACTIONS(3671), + [anon_sym_PLUS] = ACTIONS(3673), + [anon_sym_DASH] = ACTIONS(3673), + [anon_sym_STAR] = ACTIONS(3680), + [anon_sym_SLASH] = ACTIONS(3673), + [anon_sym_PERCENT] = ACTIONS(3673), + [anon_sym_CARET] = ACTIONS(3673), + [anon_sym_PIPE] = ACTIONS(3673), + [anon_sym_AMP] = ACTIONS(3673), + [anon_sym_LT_LT] = ACTIONS(3673), + [anon_sym_GT_GT] = ACTIONS(3673), + [anon_sym_GT_GT_GT] = ACTIONS(3673), + [anon_sym_EQ_EQ] = ACTIONS(3671), + [anon_sym_BANG_EQ] = ACTIONS(3671), + [anon_sym_GT_EQ] = ACTIONS(3671), + [anon_sym_LT_EQ] = ACTIONS(3671), + [anon_sym_DOT] = ACTIONS(3680), + [anon_sym_scoped] = ACTIONS(3669), + [anon_sym_var] = ACTIONS(3669), + [anon_sym_yield] = ACTIONS(3669), + [anon_sym_switch] = ACTIONS(3673), + [anon_sym_when] = ACTIONS(3669), + [sym_discard] = ACTIONS(3669), + [anon_sym_DOT_DOT] = ACTIONS(3671), + [anon_sym_and] = ACTIONS(3669), + [anon_sym_or] = ACTIONS(3669), + [anon_sym_PLUS_EQ] = ACTIONS(3671), + [anon_sym_DASH_EQ] = ACTIONS(3671), + [anon_sym_STAR_EQ] = ACTIONS(3671), + [anon_sym_SLASH_EQ] = ACTIONS(3671), + [anon_sym_PERCENT_EQ] = ACTIONS(3671), + [anon_sym_AMP_EQ] = ACTIONS(3671), + [anon_sym_CARET_EQ] = ACTIONS(3671), + [anon_sym_PIPE_EQ] = ACTIONS(3671), + [anon_sym_LT_LT_EQ] = ACTIONS(3671), + [anon_sym_GT_GT_EQ] = ACTIONS(3671), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3671), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3671), + [anon_sym_AMP_AMP] = ACTIONS(3671), + [anon_sym_PIPE_PIPE] = ACTIONS(3671), + [anon_sym_QMARK_QMARK] = ACTIONS(3673), + [anon_sym_from] = ACTIONS(3669), + [anon_sym_into] = ACTIONS(3669), + [anon_sym_join] = ACTIONS(3669), + [anon_sym_on] = ACTIONS(3669), + [anon_sym_equals] = ACTIONS(3669), + [anon_sym_let] = ACTIONS(3669), + [anon_sym_orderby] = ACTIONS(3669), + [anon_sym_ascending] = ACTIONS(3669), + [anon_sym_descending] = ACTIONS(3669), + [anon_sym_group] = ACTIONS(3669), + [anon_sym_by] = ACTIONS(3669), + [anon_sym_select] = ACTIONS(3669), + [anon_sym_as] = ACTIONS(3673), + [anon_sym_is] = ACTIONS(3673), + [anon_sym_DASH_GT] = ACTIONS(3675), + [anon_sym_with] = ACTIONS(3673), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_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_preproc_region] = STATE(2255), @@ -405730,92 +405443,92 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2255), [sym_preproc_define] = STATE(2255), [sym_preproc_undef] = STATE(2255), - [sym__identifier_token] = ACTIONS(3699), - [anon_sym_alias] = ACTIONS(3699), - [anon_sym_global] = ACTIONS(3699), - [anon_sym_EQ] = ACTIONS(3704), - [anon_sym_LBRACK] = ACTIONS(3721), - [anon_sym_COLON] = ACTIONS(3710), - [anon_sym_COMMA] = ACTIONS(3710), - [anon_sym_LPAREN] = ACTIONS(3721), - [anon_sym_LBRACE] = ACTIONS(3710), - [anon_sym_file] = ACTIONS(3699), - [anon_sym_LT] = ACTIONS(3724), - [anon_sym_GT] = ACTIONS(3724), - [anon_sym_where] = ACTIONS(3699), - [anon_sym_QMARK] = ACTIONS(3724), - [anon_sym_notnull] = ACTIONS(3699), - [anon_sym_unmanaged] = ACTIONS(3699), - [anon_sym_BANG] = ACTIONS(3724), - [anon_sym_PLUS_PLUS] = ACTIONS(3721), - [anon_sym_DASH_DASH] = ACTIONS(3721), - [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(3721), - [anon_sym_BANG_EQ] = ACTIONS(3721), - [anon_sym_GT_EQ] = ACTIONS(3721), - [anon_sym_LT_EQ] = ACTIONS(3721), - [anon_sym_DOT] = ACTIONS(3724), - [anon_sym_scoped] = ACTIONS(3699), - [anon_sym_var] = ACTIONS(3699), - [anon_sym_yield] = ACTIONS(3699), - [anon_sym_switch] = ACTIONS(3724), - [anon_sym_when] = ACTIONS(3699), - [sym_discard] = ACTIONS(3699), - [anon_sym_DOT_DOT] = ACTIONS(3721), - [anon_sym_and] = ACTIONS(3699), - [anon_sym_or] = ACTIONS(3699), - [anon_sym_PLUS_EQ] = ACTIONS(3719), - [anon_sym_DASH_EQ] = ACTIONS(3719), - [anon_sym_STAR_EQ] = ACTIONS(3719), - [anon_sym_SLASH_EQ] = ACTIONS(3719), - [anon_sym_PERCENT_EQ] = ACTIONS(3719), - [anon_sym_AMP_EQ] = ACTIONS(3719), - [anon_sym_CARET_EQ] = ACTIONS(3719), - [anon_sym_PIPE_EQ] = ACTIONS(3719), - [anon_sym_LT_LT_EQ] = ACTIONS(3719), - [anon_sym_GT_GT_EQ] = ACTIONS(3719), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3719), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3719), - [anon_sym_AMP_AMP] = ACTIONS(3721), - [anon_sym_PIPE_PIPE] = ACTIONS(3721), - [anon_sym_QMARK_QMARK] = ACTIONS(3724), - [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_ascending] = ACTIONS(3699), - [anon_sym_descending] = ACTIONS(3699), - [anon_sym_group] = ACTIONS(3699), - [anon_sym_by] = ACTIONS(3699), - [anon_sym_select] = ACTIONS(3699), - [anon_sym_as] = ACTIONS(3724), - [anon_sym_is] = ACTIONS(3724), - [anon_sym_DASH_GT] = ACTIONS(3721), - [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(3710), + [sym__identifier_token] = ACTIONS(3669), + [anon_sym_alias] = ACTIONS(3669), + [anon_sym_global] = ACTIONS(3669), + [anon_sym_EQ] = ACTIONS(3673), + [anon_sym_LBRACK] = ACTIONS(3675), + [anon_sym_COLON] = ACTIONS(3675), + [anon_sym_COMMA] = ACTIONS(3675), + [anon_sym_LPAREN] = ACTIONS(3675), + [anon_sym_LBRACE] = ACTIONS(3678), + [anon_sym_file] = ACTIONS(3669), + [anon_sym_LT] = ACTIONS(3680), + [anon_sym_GT] = ACTIONS(3680), + [anon_sym_where] = ACTIONS(3669), + [anon_sym_QMARK] = ACTIONS(3680), + [anon_sym_notnull] = ACTIONS(3669), + [anon_sym_unmanaged] = ACTIONS(3669), + [anon_sym_BANG] = ACTIONS(3680), + [anon_sym_PLUS_PLUS] = ACTIONS(3675), + [anon_sym_DASH_DASH] = ACTIONS(3675), + [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(3675), + [anon_sym_BANG_EQ] = ACTIONS(3675), + [anon_sym_GT_EQ] = ACTIONS(3675), + [anon_sym_LT_EQ] = ACTIONS(3675), + [anon_sym_DOT] = ACTIONS(3680), + [anon_sym_scoped] = ACTIONS(3669), + [anon_sym_var] = ACTIONS(3669), + [anon_sym_yield] = ACTIONS(3669), + [anon_sym_switch] = ACTIONS(3680), + [anon_sym_when] = ACTIONS(3669), + [sym_discard] = ACTIONS(3669), + [anon_sym_DOT_DOT] = ACTIONS(3675), + [anon_sym_and] = ACTIONS(3680), + [anon_sym_or] = ACTIONS(3680), + [anon_sym_PLUS_EQ] = ACTIONS(3671), + [anon_sym_DASH_EQ] = ACTIONS(3671), + [anon_sym_STAR_EQ] = ACTIONS(3671), + [anon_sym_SLASH_EQ] = ACTIONS(3671), + [anon_sym_PERCENT_EQ] = ACTIONS(3671), + [anon_sym_AMP_EQ] = ACTIONS(3671), + [anon_sym_CARET_EQ] = ACTIONS(3671), + [anon_sym_PIPE_EQ] = ACTIONS(3671), + [anon_sym_LT_LT_EQ] = ACTIONS(3671), + [anon_sym_GT_GT_EQ] = ACTIONS(3671), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3671), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3671), + [anon_sym_AMP_AMP] = ACTIONS(3675), + [anon_sym_PIPE_PIPE] = ACTIONS(3675), + [anon_sym_QMARK_QMARK] = ACTIONS(3680), + [anon_sym_from] = ACTIONS(3669), + [anon_sym_into] = ACTIONS(3669), + [anon_sym_join] = ACTIONS(3669), + [anon_sym_on] = ACTIONS(3669), + [anon_sym_equals] = ACTIONS(3669), + [anon_sym_let] = ACTIONS(3669), + [anon_sym_orderby] = ACTIONS(3669), + [anon_sym_ascending] = ACTIONS(3669), + [anon_sym_descending] = ACTIONS(3669), + [anon_sym_group] = ACTIONS(3669), + [anon_sym_by] = ACTIONS(3669), + [anon_sym_select] = ACTIONS(3669), + [anon_sym_as] = ACTIONS(3680), + [anon_sym_is] = ACTIONS(3680), + [anon_sym_DASH_GT] = ACTIONS(3675), + [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(3675), }, [2256] = { [sym_preproc_region] = STATE(2256), @@ -405827,81 +405540,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2256), [sym_preproc_define] = STATE(2256), [sym_preproc_undef] = STATE(2256), - [sym__identifier_token] = ACTIONS(3699), - [anon_sym_alias] = ACTIONS(3699), - [anon_sym_global] = ACTIONS(3699), - [anon_sym_EQ] = ACTIONS(3704), - [anon_sym_LBRACK] = ACTIONS(3706), - [anon_sym_COLON] = ACTIONS(3701), - [anon_sym_COMMA] = ACTIONS(3701), - [anon_sym_LPAREN] = ACTIONS(3706), - [anon_sym_LBRACE] = ACTIONS(3710), - [anon_sym_file] = ACTIONS(3699), - [anon_sym_LT] = ACTIONS(3712), - [anon_sym_GT] = ACTIONS(3712), - [anon_sym_where] = ACTIONS(3699), - [anon_sym_QMARK] = ACTIONS(3712), - [anon_sym_notnull] = ACTIONS(3699), - [anon_sym_unmanaged] = ACTIONS(3699), - [anon_sym_BANG] = ACTIONS(3712), - [anon_sym_PLUS_PLUS] = ACTIONS(3706), - [anon_sym_DASH_DASH] = ACTIONS(3706), - [anon_sym_PLUS] = ACTIONS(3712), - [anon_sym_DASH] = ACTIONS(3712), - [anon_sym_STAR] = ACTIONS(3712), - [anon_sym_SLASH] = ACTIONS(3712), - [anon_sym_PERCENT] = ACTIONS(3712), - [anon_sym_CARET] = ACTIONS(3712), - [anon_sym_PIPE] = ACTIONS(3712), - [anon_sym_AMP] = ACTIONS(3712), - [anon_sym_LT_LT] = ACTIONS(3712), - [anon_sym_GT_GT] = ACTIONS(3712), - [anon_sym_GT_GT_GT] = ACTIONS(3712), - [anon_sym_EQ_EQ] = ACTIONS(3706), - [anon_sym_BANG_EQ] = ACTIONS(3706), - [anon_sym_GT_EQ] = ACTIONS(3706), - [anon_sym_LT_EQ] = ACTIONS(3706), - [anon_sym_DOT] = ACTIONS(3712), - [anon_sym_scoped] = ACTIONS(3699), - [anon_sym_var] = ACTIONS(3699), - [anon_sym_yield] = ACTIONS(3699), - [anon_sym_switch] = ACTIONS(3712), - [anon_sym_when] = ACTIONS(3699), - [sym_discard] = ACTIONS(3699), - [anon_sym_DOT_DOT] = ACTIONS(3706), - [anon_sym_and] = ACTIONS(3716), - [anon_sym_or] = ACTIONS(3716), - [anon_sym_PLUS_EQ] = ACTIONS(3719), - [anon_sym_DASH_EQ] = ACTIONS(3719), - [anon_sym_STAR_EQ] = ACTIONS(3719), - [anon_sym_SLASH_EQ] = ACTIONS(3719), - [anon_sym_PERCENT_EQ] = ACTIONS(3719), - [anon_sym_AMP_EQ] = ACTIONS(3719), - [anon_sym_CARET_EQ] = ACTIONS(3719), - [anon_sym_PIPE_EQ] = ACTIONS(3719), - [anon_sym_LT_LT_EQ] = ACTIONS(3719), - [anon_sym_GT_GT_EQ] = ACTIONS(3719), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3719), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3719), - [anon_sym_AMP_AMP] = ACTIONS(3706), - [anon_sym_PIPE_PIPE] = ACTIONS(3706), - [anon_sym_QMARK_QMARK] = ACTIONS(3712), - [anon_sym_from] = ACTIONS(3699), - [anon_sym_into] = ACTIONS(3716), - [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_ascending] = ACTIONS(3699), - [anon_sym_descending] = ACTIONS(3699), - [anon_sym_group] = ACTIONS(3699), - [anon_sym_by] = ACTIONS(3699), - [anon_sym_select] = ACTIONS(3699), - [anon_sym_as] = ACTIONS(3712), - [anon_sym_is] = ACTIONS(3712), - [anon_sym_DASH_GT] = ACTIONS(3706), - [anon_sym_with] = ACTIONS(3712), + [sym__identifier_token] = ACTIONS(3691), + [anon_sym_alias] = ACTIONS(3691), + [anon_sym_global] = ACTIONS(3691), + [anon_sym_EQ] = ACTIONS(3696), + [anon_sym_LBRACK] = ACTIONS(3713), + [anon_sym_COLON] = ACTIONS(3711), + [anon_sym_COMMA] = ACTIONS(3702), + [anon_sym_LPAREN] = ACTIONS(3713), + [anon_sym_RPAREN] = ACTIONS(3702), + [anon_sym_LBRACE] = ACTIONS(3702), + [anon_sym_file] = ACTIONS(3691), + [anon_sym_LT] = ACTIONS(3696), + [anon_sym_GT] = ACTIONS(3696), + [anon_sym_where] = ACTIONS(3691), + [anon_sym_QMARK] = ACTIONS(3716), + [anon_sym_notnull] = ACTIONS(3691), + [anon_sym_unmanaged] = ACTIONS(3691), + [anon_sym_BANG] = ACTIONS(3696), + [anon_sym_PLUS_PLUS] = ACTIONS(3711), + [anon_sym_DASH_DASH] = ACTIONS(3711), + [anon_sym_PLUS] = ACTIONS(3696), + [anon_sym_DASH] = ACTIONS(3696), + [anon_sym_STAR] = ACTIONS(3716), + [anon_sym_SLASH] = ACTIONS(3696), + [anon_sym_PERCENT] = ACTIONS(3696), + [anon_sym_CARET] = ACTIONS(3696), + [anon_sym_PIPE] = ACTIONS(3696), + [anon_sym_AMP] = ACTIONS(3696), + [anon_sym_LT_LT] = ACTIONS(3696), + [anon_sym_GT_GT] = ACTIONS(3696), + [anon_sym_GT_GT_GT] = ACTIONS(3696), + [anon_sym_EQ_EQ] = ACTIONS(3711), + [anon_sym_BANG_EQ] = ACTIONS(3711), + [anon_sym_GT_EQ] = ACTIONS(3711), + [anon_sym_LT_EQ] = ACTIONS(3711), + [anon_sym_DOT] = ACTIONS(3716), + [anon_sym_scoped] = ACTIONS(3691), + [anon_sym_var] = ACTIONS(3691), + [anon_sym_yield] = ACTIONS(3691), + [anon_sym_switch] = ACTIONS(3696), + [anon_sym_when] = ACTIONS(3691), + [sym_discard] = ACTIONS(3691), + [anon_sym_DOT_DOT] = ACTIONS(3711), + [anon_sym_and] = ACTIONS(3691), + [anon_sym_or] = ACTIONS(3691), + [anon_sym_PLUS_EQ] = ACTIONS(3711), + [anon_sym_DASH_EQ] = ACTIONS(3711), + [anon_sym_STAR_EQ] = ACTIONS(3711), + [anon_sym_SLASH_EQ] = ACTIONS(3711), + [anon_sym_PERCENT_EQ] = ACTIONS(3711), + [anon_sym_AMP_EQ] = ACTIONS(3711), + [anon_sym_CARET_EQ] = ACTIONS(3711), + [anon_sym_PIPE_EQ] = ACTIONS(3711), + [anon_sym_LT_LT_EQ] = ACTIONS(3711), + [anon_sym_GT_GT_EQ] = ACTIONS(3711), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3711), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3711), + [anon_sym_AMP_AMP] = ACTIONS(3711), + [anon_sym_PIPE_PIPE] = ACTIONS(3711), + [anon_sym_QMARK_QMARK] = ACTIONS(3696), + [anon_sym_from] = ACTIONS(3691), + [anon_sym_into] = ACTIONS(3691), + [anon_sym_join] = ACTIONS(3691), + [anon_sym_on] = ACTIONS(3691), + [anon_sym_equals] = ACTIONS(3691), + [anon_sym_let] = ACTIONS(3691), + [anon_sym_orderby] = ACTIONS(3691), + [anon_sym_ascending] = ACTIONS(3691), + [anon_sym_descending] = ACTIONS(3691), + [anon_sym_group] = ACTIONS(3691), + [anon_sym_by] = ACTIONS(3691), + [anon_sym_select] = ACTIONS(3691), + [anon_sym_as] = ACTIONS(3696), + [anon_sym_is] = ACTIONS(3696), + [anon_sym_DASH_GT] = ACTIONS(3713), + [anon_sym_with] = ACTIONS(3696), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -405912,9 +405626,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(3701), }, [2257] = { + [sym_property_pattern_clause] = STATE(2300), + [sym__variable_designation] = STATE(3224), + [sym_parenthesized_variable_designation] = STATE(3344), + [sym_identifier] = STATE(3346), + [sym__reserved_identifier] = STATE(3199), [sym_preproc_region] = STATE(2257), [sym_preproc_endregion] = STATE(2257), [sym_preproc_line] = STATE(2257), @@ -405924,82 +405642,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2257), [sym_preproc_define] = STATE(2257), [sym_preproc_undef] = STATE(2257), - [sym__identifier_token] = ACTIONS(3447), - [anon_sym_alias] = ACTIONS(3447), - [anon_sym_global] = ACTIONS(3447), - [anon_sym_using] = ACTIONS(3909), - [anon_sym_EQ] = ACTIONS(3447), - [anon_sym_LBRACK] = ACTIONS(3445), - [anon_sym_COLON] = ACTIONS(3447), - [anon_sym_LPAREN] = ACTIONS(3445), - [anon_sym_file] = ACTIONS(3447), - [anon_sym_LT] = ACTIONS(3447), - [anon_sym_GT] = ACTIONS(3447), - [anon_sym_where] = ACTIONS(3447), - [anon_sym_QMARK] = ACTIONS(3447), - [anon_sym_notnull] = ACTIONS(3447), - [anon_sym_unmanaged] = ACTIONS(3447), - [anon_sym_BANG] = ACTIONS(3447), - [anon_sym_PLUS_PLUS] = ACTIONS(3445), - [anon_sym_DASH_DASH] = ACTIONS(3445), - [anon_sym_PLUS] = ACTIONS(3447), - [anon_sym_DASH] = ACTIONS(3447), - [anon_sym_STAR] = ACTIONS(3447), - [anon_sym_SLASH] = ACTIONS(3447), - [anon_sym_PERCENT] = ACTIONS(3447), - [anon_sym_CARET] = ACTIONS(3447), - [anon_sym_PIPE] = ACTIONS(3447), - [anon_sym_AMP] = ACTIONS(3447), - [anon_sym_LT_LT] = ACTIONS(3447), - [anon_sym_GT_GT] = ACTIONS(3447), - [anon_sym_GT_GT_GT] = ACTIONS(3447), - [anon_sym_EQ_EQ] = ACTIONS(3445), - [anon_sym_BANG_EQ] = ACTIONS(3445), - [anon_sym_GT_EQ] = ACTIONS(3445), - [anon_sym_LT_EQ] = ACTIONS(3445), - [anon_sym_DOT] = ACTIONS(3447), - [anon_sym_scoped] = ACTIONS(3447), - [anon_sym_EQ_GT] = ACTIONS(3445), - [anon_sym_COLON_COLON] = ACTIONS(3445), - [anon_sym_var] = ACTIONS(3447), - [anon_sym_yield] = ACTIONS(3447), - [anon_sym_switch] = ACTIONS(3447), - [anon_sym_when] = ACTIONS(3447), - [anon_sym_DOT_DOT] = ACTIONS(3445), - [anon_sym_PLUS_EQ] = ACTIONS(3445), - [anon_sym_DASH_EQ] = ACTIONS(3445), - [anon_sym_STAR_EQ] = ACTIONS(3445), - [anon_sym_SLASH_EQ] = ACTIONS(3445), - [anon_sym_PERCENT_EQ] = ACTIONS(3445), - [anon_sym_AMP_EQ] = ACTIONS(3445), - [anon_sym_CARET_EQ] = ACTIONS(3445), - [anon_sym_PIPE_EQ] = ACTIONS(3445), - [anon_sym_LT_LT_EQ] = ACTIONS(3445), - [anon_sym_GT_GT_EQ] = ACTIONS(3445), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3445), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3445), - [anon_sym_AMP_AMP] = ACTIONS(3445), - [anon_sym_PIPE_PIPE] = ACTIONS(3445), - [anon_sym_QMARK_QMARK] = ACTIONS(3447), - [anon_sym_from] = ACTIONS(3447), - [anon_sym_into] = ACTIONS(3447), - [anon_sym_join] = ACTIONS(3447), - [anon_sym_on] = ACTIONS(3447), - [anon_sym_equals] = ACTIONS(3447), - [anon_sym_let] = ACTIONS(3447), - [anon_sym_orderby] = ACTIONS(3447), - [anon_sym_ascending] = ACTIONS(3447), - [anon_sym_descending] = ACTIONS(3447), - [anon_sym_group] = ACTIONS(3447), - [anon_sym_by] = ACTIONS(3447), - [anon_sym_select] = ACTIONS(3447), - [anon_sym_as] = ACTIONS(3447), - [anon_sym_is] = ACTIONS(3447), - [anon_sym_DASH_GT] = ACTIONS(3445), - [anon_sym_with] = ACTIONS(3447), - [aux_sym_preproc_if_token3] = ACTIONS(3445), - [aux_sym_preproc_else_token1] = ACTIONS(3445), - [aux_sym_preproc_elif_token1] = ACTIONS(3445), + [sym__identifier_token] = ACTIONS(3855), + [anon_sym_alias] = ACTIONS(3857), + [anon_sym_SEMI] = ACTIONS(3893), + [anon_sym_global] = ACTIONS(3857), + [anon_sym_LBRACK] = ACTIONS(3893), + [anon_sym_COLON] = ACTIONS(3893), + [anon_sym_COMMA] = ACTIONS(3893), + [anon_sym_RBRACK] = ACTIONS(3893), + [anon_sym_LPAREN] = ACTIONS(3893), + [anon_sym_RPAREN] = ACTIONS(3893), + [anon_sym_LBRACE] = ACTIONS(3861), + [anon_sym_RBRACE] = ACTIONS(3893), + [anon_sym_file] = ACTIONS(3857), + [anon_sym_LT] = ACTIONS(3895), + [anon_sym_GT] = ACTIONS(3895), + [anon_sym_in] = ACTIONS(3895), + [anon_sym_where] = ACTIONS(3857), + [anon_sym_QMARK] = ACTIONS(3895), + [anon_sym_notnull] = ACTIONS(3857), + [anon_sym_unmanaged] = ACTIONS(3857), + [anon_sym_BANG] = ACTIONS(3895), + [anon_sym_PLUS_PLUS] = ACTIONS(3893), + [anon_sym_DASH_DASH] = ACTIONS(3893), + [anon_sym_PLUS] = ACTIONS(3895), + [anon_sym_DASH] = ACTIONS(3895), + [anon_sym_STAR] = ACTIONS(3893), + [anon_sym_SLASH] = ACTIONS(3895), + [anon_sym_PERCENT] = ACTIONS(3893), + [anon_sym_CARET] = ACTIONS(3893), + [anon_sym_PIPE] = ACTIONS(3895), + [anon_sym_AMP] = ACTIONS(3895), + [anon_sym_LT_LT] = ACTIONS(3893), + [anon_sym_GT_GT] = ACTIONS(3895), + [anon_sym_GT_GT_GT] = ACTIONS(3893), + [anon_sym_EQ_EQ] = ACTIONS(3893), + [anon_sym_BANG_EQ] = ACTIONS(3893), + [anon_sym_GT_EQ] = ACTIONS(3893), + [anon_sym_LT_EQ] = ACTIONS(3893), + [anon_sym_DOT] = ACTIONS(3895), + [anon_sym_scoped] = ACTIONS(3857), + [anon_sym_EQ_GT] = ACTIONS(3893), + [anon_sym_var] = ACTIONS(3857), + [anon_sym_yield] = ACTIONS(3857), + [anon_sym_switch] = ACTIONS(3895), + [anon_sym_when] = ACTIONS(3857), + [sym_discard] = ACTIONS(3865), + [anon_sym_DOT_DOT] = ACTIONS(3893), + [anon_sym_and] = ACTIONS(3895), + [anon_sym_or] = ACTIONS(3895), + [anon_sym_AMP_AMP] = ACTIONS(3893), + [anon_sym_PIPE_PIPE] = ACTIONS(3893), + [anon_sym_QMARK_QMARK] = ACTIONS(3893), + [anon_sym_from] = ACTIONS(3857), + [anon_sym_into] = ACTIONS(3895), + [anon_sym_join] = ACTIONS(3857), + [anon_sym_on] = ACTIONS(3857), + [anon_sym_equals] = ACTIONS(3857), + [anon_sym_let] = ACTIONS(3857), + [anon_sym_orderby] = ACTIONS(3857), + [anon_sym_ascending] = ACTIONS(3857), + [anon_sym_descending] = ACTIONS(3857), + [anon_sym_group] = ACTIONS(3857), + [anon_sym_by] = ACTIONS(3857), + [anon_sym_select] = ACTIONS(3857), + [anon_sym_as] = ACTIONS(3895), + [anon_sym_is] = ACTIONS(3895), + [anon_sym_DASH_GT] = ACTIONS(3893), + [anon_sym_with] = ACTIONS(3895), + [aux_sym_preproc_if_token3] = ACTIONS(3893), + [aux_sym_preproc_else_token1] = ACTIONS(3893), + [aux_sym_preproc_elif_token1] = ACTIONS(3893), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -406012,7 +405725,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2258] = { - [sym_type_argument_list] = STATE(2183), [sym_preproc_region] = STATE(2258), [sym_preproc_endregion] = STATE(2258), [sym_preproc_line] = STATE(2258), @@ -406022,81 +405734,81 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2258), [sym_preproc_define] = STATE(2258), [sym_preproc_undef] = STATE(2258), - [sym__identifier_token] = ACTIONS(3660), - [anon_sym_alias] = ACTIONS(3660), - [anon_sym_global] = ACTIONS(3660), - [anon_sym_EQ] = ACTIONS(3660), - [anon_sym_LBRACK] = ACTIONS(3662), - [anon_sym_LPAREN] = ACTIONS(3662), - [anon_sym_LBRACE] = ACTIONS(3662), - [anon_sym_file] = ACTIONS(3660), - [anon_sym_LT] = ACTIONS(3664), - [anon_sym_GT] = ACTIONS(3660), - [anon_sym_where] = ACTIONS(3660), - [anon_sym_QMARK] = ACTIONS(3660), - [anon_sym_notnull] = ACTIONS(3660), - [anon_sym_unmanaged] = ACTIONS(3660), - [anon_sym_BANG] = ACTIONS(3660), - [anon_sym_PLUS_PLUS] = ACTIONS(3662), - [anon_sym_DASH_DASH] = ACTIONS(3662), - [anon_sym_PLUS] = ACTIONS(3660), - [anon_sym_DASH] = ACTIONS(3660), - [anon_sym_STAR] = ACTIONS(3660), - [anon_sym_SLASH] = ACTIONS(3660), - [anon_sym_PERCENT] = ACTIONS(3660), - [anon_sym_CARET] = ACTIONS(3660), - [anon_sym_PIPE] = ACTIONS(3660), - [anon_sym_AMP] = ACTIONS(3660), - [anon_sym_LT_LT] = ACTIONS(3660), - [anon_sym_GT_GT] = ACTIONS(3660), - [anon_sym_GT_GT_GT] = ACTIONS(3660), - [anon_sym_EQ_EQ] = ACTIONS(3662), - [anon_sym_BANG_EQ] = ACTIONS(3662), - [anon_sym_GT_EQ] = ACTIONS(3662), - [anon_sym_LT_EQ] = ACTIONS(3662), - [anon_sym_DOT] = ACTIONS(3660), - [anon_sym_scoped] = ACTIONS(3660), - [anon_sym_EQ_GT] = ACTIONS(3662), - [anon_sym_COLON_COLON] = ACTIONS(3683), - [anon_sym_var] = ACTIONS(3660), - [anon_sym_yield] = ACTIONS(3660), - [anon_sym_switch] = ACTIONS(3660), - [anon_sym_when] = ACTIONS(3660), - [sym_discard] = ACTIONS(3660), - [anon_sym_DOT_DOT] = ACTIONS(3662), - [anon_sym_and] = ACTIONS(3660), - [anon_sym_or] = ACTIONS(3660), - [anon_sym_PLUS_EQ] = ACTIONS(3662), - [anon_sym_DASH_EQ] = ACTIONS(3662), - [anon_sym_STAR_EQ] = ACTIONS(3662), - [anon_sym_SLASH_EQ] = ACTIONS(3662), - [anon_sym_PERCENT_EQ] = ACTIONS(3662), - [anon_sym_AMP_EQ] = ACTIONS(3662), - [anon_sym_CARET_EQ] = ACTIONS(3662), - [anon_sym_PIPE_EQ] = ACTIONS(3662), - [anon_sym_LT_LT_EQ] = ACTIONS(3662), - [anon_sym_GT_GT_EQ] = ACTIONS(3662), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3662), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3662), - [anon_sym_AMP_AMP] = ACTIONS(3662), - [anon_sym_PIPE_PIPE] = ACTIONS(3662), - [anon_sym_QMARK_QMARK] = ACTIONS(3660), - [anon_sym_from] = ACTIONS(3660), - [anon_sym_into] = ACTIONS(3660), - [anon_sym_join] = ACTIONS(3660), - [anon_sym_on] = ACTIONS(3660), - [anon_sym_equals] = ACTIONS(3660), - [anon_sym_let] = ACTIONS(3660), - [anon_sym_orderby] = ACTIONS(3660), - [anon_sym_ascending] = ACTIONS(3660), - [anon_sym_descending] = ACTIONS(3660), - [anon_sym_group] = ACTIONS(3660), - [anon_sym_by] = ACTIONS(3660), - [anon_sym_select] = ACTIONS(3660), - [anon_sym_as] = ACTIONS(3660), - [anon_sym_is] = ACTIONS(3660), - [anon_sym_DASH_GT] = ACTIONS(3662), - [anon_sym_with] = ACTIONS(3660), + [sym__identifier_token] = ACTIONS(3691), + [anon_sym_alias] = ACTIONS(3691), + [anon_sym_global] = ACTIONS(3691), + [anon_sym_EQ] = ACTIONS(3696), + [anon_sym_LBRACK] = ACTIONS(3698), + [anon_sym_COLON] = ACTIONS(3693), + [anon_sym_COMMA] = ACTIONS(3693), + [anon_sym_LPAREN] = ACTIONS(3698), + [anon_sym_LBRACE] = ACTIONS(3702), + [anon_sym_file] = ACTIONS(3691), + [anon_sym_LT] = ACTIONS(3704), + [anon_sym_GT] = ACTIONS(3704), + [anon_sym_where] = ACTIONS(3691), + [anon_sym_QMARK] = ACTIONS(3704), + [anon_sym_notnull] = ACTIONS(3691), + [anon_sym_unmanaged] = ACTIONS(3691), + [anon_sym_BANG] = ACTIONS(3704), + [anon_sym_PLUS_PLUS] = ACTIONS(3698), + [anon_sym_DASH_DASH] = ACTIONS(3698), + [anon_sym_PLUS] = ACTIONS(3704), + [anon_sym_DASH] = ACTIONS(3704), + [anon_sym_STAR] = ACTIONS(3704), + [anon_sym_SLASH] = ACTIONS(3704), + [anon_sym_PERCENT] = ACTIONS(3704), + [anon_sym_CARET] = ACTIONS(3704), + [anon_sym_PIPE] = ACTIONS(3704), + [anon_sym_AMP] = ACTIONS(3704), + [anon_sym_LT_LT] = ACTIONS(3704), + [anon_sym_GT_GT] = ACTIONS(3704), + [anon_sym_GT_GT_GT] = ACTIONS(3704), + [anon_sym_EQ_EQ] = ACTIONS(3698), + [anon_sym_BANG_EQ] = ACTIONS(3698), + [anon_sym_GT_EQ] = ACTIONS(3698), + [anon_sym_LT_EQ] = ACTIONS(3698), + [anon_sym_DOT] = ACTIONS(3704), + [anon_sym_scoped] = ACTIONS(3691), + [anon_sym_var] = ACTIONS(3691), + [anon_sym_yield] = ACTIONS(3691), + [anon_sym_switch] = ACTIONS(3704), + [anon_sym_when] = ACTIONS(3691), + [sym_discard] = ACTIONS(3691), + [anon_sym_DOT_DOT] = ACTIONS(3698), + [anon_sym_and] = ACTIONS(3708), + [anon_sym_or] = ACTIONS(3708), + [anon_sym_PLUS_EQ] = ACTIONS(3711), + [anon_sym_DASH_EQ] = ACTIONS(3711), + [anon_sym_STAR_EQ] = ACTIONS(3711), + [anon_sym_SLASH_EQ] = ACTIONS(3711), + [anon_sym_PERCENT_EQ] = ACTIONS(3711), + [anon_sym_AMP_EQ] = ACTIONS(3711), + [anon_sym_CARET_EQ] = ACTIONS(3711), + [anon_sym_PIPE_EQ] = ACTIONS(3711), + [anon_sym_LT_LT_EQ] = ACTIONS(3711), + [anon_sym_GT_GT_EQ] = ACTIONS(3711), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3711), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3711), + [anon_sym_AMP_AMP] = ACTIONS(3698), + [anon_sym_PIPE_PIPE] = ACTIONS(3698), + [anon_sym_QMARK_QMARK] = ACTIONS(3704), + [anon_sym_from] = ACTIONS(3691), + [anon_sym_into] = ACTIONS(3691), + [anon_sym_join] = ACTIONS(3691), + [anon_sym_on] = ACTIONS(3691), + [anon_sym_equals] = ACTIONS(3691), + [anon_sym_let] = ACTIONS(3691), + [anon_sym_orderby] = ACTIONS(3691), + [anon_sym_ascending] = ACTIONS(3691), + [anon_sym_descending] = ACTIONS(3691), + [anon_sym_group] = ACTIONS(3691), + [anon_sym_by] = ACTIONS(3691), + [anon_sym_select] = ACTIONS(3691), + [anon_sym_as] = ACTIONS(3704), + [anon_sym_is] = ACTIONS(3704), + [anon_sym_DASH_GT] = ACTIONS(3698), + [anon_sym_with] = ACTIONS(3704), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -406107,8 +405819,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(3693), }, [2259] = { + [sym_type_argument_list] = STATE(2171), [sym_preproc_region] = STATE(2259), [sym_preproc_endregion] = STATE(2259), [sym_preproc_line] = STATE(2259), @@ -406118,94 +405832,94 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2259), [sym_preproc_define] = STATE(2259), [sym_preproc_undef] = STATE(2259), - [sym__identifier_token] = ACTIONS(3685), - [anon_sym_alias] = ACTIONS(3685), - [anon_sym_global] = ACTIONS(3685), - [anon_sym_EQ] = ACTIONS(3689), - [anon_sym_LBRACK] = ACTIONS(3691), - [anon_sym_COLON] = ACTIONS(3691), - [anon_sym_COMMA] = ACTIONS(3691), - [anon_sym_LPAREN] = ACTIONS(3691), - [anon_sym_LBRACE] = ACTIONS(3687), - [anon_sym_file] = ACTIONS(3685), - [anon_sym_LT] = ACTIONS(3694), - [anon_sym_GT] = ACTIONS(3694), - [anon_sym_where] = ACTIONS(3685), - [anon_sym_QMARK] = ACTIONS(3694), - [anon_sym_notnull] = ACTIONS(3685), - [anon_sym_unmanaged] = ACTIONS(3685), - [anon_sym_BANG] = ACTIONS(3694), - [anon_sym_PLUS_PLUS] = ACTIONS(3691), - [anon_sym_DASH_DASH] = ACTIONS(3691), - [anon_sym_PLUS] = ACTIONS(3694), - [anon_sym_DASH] = ACTIONS(3694), - [anon_sym_STAR] = ACTIONS(3694), - [anon_sym_SLASH] = ACTIONS(3694), - [anon_sym_PERCENT] = ACTIONS(3694), - [anon_sym_CARET] = ACTIONS(3694), - [anon_sym_PIPE] = ACTIONS(3694), - [anon_sym_AMP] = ACTIONS(3694), - [anon_sym_LT_LT] = ACTIONS(3694), - [anon_sym_GT_GT] = ACTIONS(3694), - [anon_sym_GT_GT_GT] = ACTIONS(3694), - [anon_sym_EQ_EQ] = ACTIONS(3691), - [anon_sym_BANG_EQ] = ACTIONS(3691), - [anon_sym_GT_EQ] = ACTIONS(3691), - [anon_sym_LT_EQ] = ACTIONS(3691), - [anon_sym_DOT] = ACTIONS(3694), - [anon_sym_scoped] = ACTIONS(3685), - [anon_sym_var] = ACTIONS(3685), - [anon_sym_yield] = ACTIONS(3685), - [anon_sym_switch] = ACTIONS(3694), - [anon_sym_when] = ACTIONS(3685), - [sym_discard] = ACTIONS(3685), - [anon_sym_DOT_DOT] = ACTIONS(3691), - [anon_sym_and] = ACTIONS(3694), - [anon_sym_or] = ACTIONS(3694), - [anon_sym_PLUS_EQ] = ACTIONS(3697), - [anon_sym_DASH_EQ] = ACTIONS(3697), - [anon_sym_STAR_EQ] = ACTIONS(3697), - [anon_sym_SLASH_EQ] = ACTIONS(3697), - [anon_sym_PERCENT_EQ] = ACTIONS(3697), - [anon_sym_AMP_EQ] = ACTIONS(3697), - [anon_sym_CARET_EQ] = ACTIONS(3697), - [anon_sym_PIPE_EQ] = ACTIONS(3697), - [anon_sym_LT_LT_EQ] = ACTIONS(3697), - [anon_sym_GT_GT_EQ] = ACTIONS(3697), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3697), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3697), - [anon_sym_AMP_AMP] = ACTIONS(3691), - [anon_sym_PIPE_PIPE] = ACTIONS(3691), - [anon_sym_QMARK_QMARK] = ACTIONS(3694), - [anon_sym_from] = ACTIONS(3685), - [anon_sym_into] = ACTIONS(3685), - [anon_sym_join] = ACTIONS(3685), - [anon_sym_on] = ACTIONS(3685), - [anon_sym_equals] = ACTIONS(3685), - [anon_sym_let] = ACTIONS(3685), - [anon_sym_orderby] = ACTIONS(3685), - [anon_sym_ascending] = ACTIONS(3685), - [anon_sym_descending] = ACTIONS(3685), - [anon_sym_group] = ACTIONS(3685), - [anon_sym_by] = ACTIONS(3685), - [anon_sym_select] = ACTIONS(3685), - [anon_sym_as] = ACTIONS(3694), - [anon_sym_is] = ACTIONS(3694), - [anon_sym_DASH_GT] = ACTIONS(3691), - [anon_sym_with] = ACTIONS(3694), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_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(3691), + [sym__identifier_token] = ACTIONS(3638), + [anon_sym_alias] = ACTIONS(3638), + [anon_sym_global] = ACTIONS(3638), + [anon_sym_EQ] = ACTIONS(3638), + [anon_sym_LBRACK] = ACTIONS(3640), + [anon_sym_COLON] = ACTIONS(3897), + [anon_sym_LPAREN] = ACTIONS(3640), + [anon_sym_file] = ACTIONS(3638), + [anon_sym_LT] = ACTIONS(3648), + [anon_sym_GT] = ACTIONS(3638), + [anon_sym_where] = ACTIONS(3638), + [anon_sym_QMARK] = ACTIONS(3638), + [anon_sym_notnull] = ACTIONS(3638), + [anon_sym_unmanaged] = ACTIONS(3638), + [anon_sym_BANG] = ACTIONS(3638), + [anon_sym_PLUS_PLUS] = ACTIONS(3640), + [anon_sym_DASH_DASH] = ACTIONS(3640), + [anon_sym_PLUS] = ACTIONS(3638), + [anon_sym_DASH] = ACTIONS(3638), + [anon_sym_STAR] = ACTIONS(3638), + [anon_sym_SLASH] = ACTIONS(3638), + [anon_sym_PERCENT] = ACTIONS(3638), + [anon_sym_CARET] = ACTIONS(3638), + [anon_sym_PIPE] = ACTIONS(3638), + [anon_sym_AMP] = ACTIONS(3638), + [anon_sym_LT_LT] = ACTIONS(3638), + [anon_sym_GT_GT] = ACTIONS(3638), + [anon_sym_GT_GT_GT] = ACTIONS(3638), + [anon_sym_EQ_EQ] = ACTIONS(3640), + [anon_sym_BANG_EQ] = ACTIONS(3640), + [anon_sym_GT_EQ] = ACTIONS(3640), + [anon_sym_LT_EQ] = ACTIONS(3640), + [anon_sym_DOT] = ACTIONS(3638), + [anon_sym_scoped] = ACTIONS(3638), + [anon_sym_EQ_GT] = ACTIONS(3651), + [anon_sym_COLON_COLON] = ACTIONS(3653), + [anon_sym_var] = ACTIONS(3638), + [anon_sym_yield] = ACTIONS(3638), + [anon_sym_switch] = ACTIONS(3638), + [anon_sym_when] = ACTIONS(3638), + [anon_sym_DOT_DOT] = ACTIONS(3640), + [anon_sym_PLUS_EQ] = ACTIONS(3640), + [anon_sym_DASH_EQ] = ACTIONS(3640), + [anon_sym_STAR_EQ] = ACTIONS(3640), + [anon_sym_SLASH_EQ] = ACTIONS(3640), + [anon_sym_PERCENT_EQ] = ACTIONS(3640), + [anon_sym_AMP_EQ] = ACTIONS(3640), + [anon_sym_CARET_EQ] = ACTIONS(3640), + [anon_sym_PIPE_EQ] = ACTIONS(3640), + [anon_sym_LT_LT_EQ] = ACTIONS(3640), + [anon_sym_GT_GT_EQ] = ACTIONS(3640), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3640), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3640), + [anon_sym_AMP_AMP] = ACTIONS(3640), + [anon_sym_PIPE_PIPE] = ACTIONS(3640), + [anon_sym_QMARK_QMARK] = ACTIONS(3638), + [anon_sym_from] = ACTIONS(3638), + [anon_sym_into] = ACTIONS(3638), + [anon_sym_join] = ACTIONS(3638), + [anon_sym_on] = ACTIONS(3638), + [anon_sym_equals] = ACTIONS(3638), + [anon_sym_let] = ACTIONS(3638), + [anon_sym_orderby] = ACTIONS(3638), + [anon_sym_ascending] = ACTIONS(3638), + [anon_sym_descending] = ACTIONS(3638), + [anon_sym_group] = ACTIONS(3638), + [anon_sym_by] = ACTIONS(3638), + [anon_sym_select] = ACTIONS(3638), + [anon_sym_as] = ACTIONS(3638), + [anon_sym_is] = ACTIONS(3638), + [anon_sym_DASH_GT] = ACTIONS(3640), + [anon_sym_with] = ACTIONS(3638), + [aux_sym_preproc_if_token3] = ACTIONS(3640), + [aux_sym_preproc_else_token1] = ACTIONS(3640), + [aux_sym_preproc_elif_token1] = ACTIONS(3640), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), }, [2260] = { + [sym_type_argument_list] = STATE(2171), [sym_preproc_region] = STATE(2260), [sym_preproc_endregion] = STATE(2260), [sym_preproc_line] = STATE(2260), @@ -406215,82 +405929,81 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2260), [sym_preproc_define] = STATE(2260), [sym_preproc_undef] = STATE(2260), - [sym__identifier_token] = ACTIONS(3699), - [anon_sym_alias] = ACTIONS(3699), - [anon_sym_global] = ACTIONS(3699), - [anon_sym_EQ] = ACTIONS(3704), - [anon_sym_LBRACK] = ACTIONS(3721), - [anon_sym_COLON] = ACTIONS(3719), - [anon_sym_COMMA] = ACTIONS(3710), - [anon_sym_LPAREN] = ACTIONS(3721), - [anon_sym_RPAREN] = ACTIONS(3710), - [anon_sym_LBRACE] = ACTIONS(3710), - [anon_sym_file] = ACTIONS(3699), - [anon_sym_LT] = ACTIONS(3704), - [anon_sym_GT] = ACTIONS(3704), - [anon_sym_where] = ACTIONS(3699), - [anon_sym_QMARK] = ACTIONS(3724), - [anon_sym_notnull] = ACTIONS(3699), - [anon_sym_unmanaged] = ACTIONS(3699), - [anon_sym_BANG] = ACTIONS(3704), - [anon_sym_PLUS_PLUS] = ACTIONS(3719), - [anon_sym_DASH_DASH] = ACTIONS(3719), - [anon_sym_PLUS] = ACTIONS(3704), - [anon_sym_DASH] = ACTIONS(3704), - [anon_sym_STAR] = ACTIONS(3724), - [anon_sym_SLASH] = ACTIONS(3704), - [anon_sym_PERCENT] = ACTIONS(3704), - [anon_sym_CARET] = ACTIONS(3704), - [anon_sym_PIPE] = ACTIONS(3704), - [anon_sym_AMP] = ACTIONS(3704), - [anon_sym_LT_LT] = ACTIONS(3704), - [anon_sym_GT_GT] = ACTIONS(3704), - [anon_sym_GT_GT_GT] = ACTIONS(3704), - [anon_sym_EQ_EQ] = ACTIONS(3719), - [anon_sym_BANG_EQ] = ACTIONS(3719), - [anon_sym_GT_EQ] = ACTIONS(3719), - [anon_sym_LT_EQ] = ACTIONS(3719), - [anon_sym_DOT] = ACTIONS(3724), - [anon_sym_scoped] = ACTIONS(3699), - [anon_sym_var] = ACTIONS(3699), - [anon_sym_yield] = ACTIONS(3699), - [anon_sym_switch] = ACTIONS(3704), - [anon_sym_when] = ACTIONS(3699), - [sym_discard] = ACTIONS(3699), - [anon_sym_DOT_DOT] = ACTIONS(3719), - [anon_sym_and] = ACTIONS(3699), - [anon_sym_or] = ACTIONS(3699), - [anon_sym_PLUS_EQ] = ACTIONS(3719), - [anon_sym_DASH_EQ] = ACTIONS(3719), - [anon_sym_STAR_EQ] = ACTIONS(3719), - [anon_sym_SLASH_EQ] = ACTIONS(3719), - [anon_sym_PERCENT_EQ] = ACTIONS(3719), - [anon_sym_AMP_EQ] = ACTIONS(3719), - [anon_sym_CARET_EQ] = ACTIONS(3719), - [anon_sym_PIPE_EQ] = ACTIONS(3719), - [anon_sym_LT_LT_EQ] = ACTIONS(3719), - [anon_sym_GT_GT_EQ] = ACTIONS(3719), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3719), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3719), - [anon_sym_AMP_AMP] = ACTIONS(3719), - [anon_sym_PIPE_PIPE] = ACTIONS(3719), - [anon_sym_QMARK_QMARK] = ACTIONS(3704), - [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_ascending] = ACTIONS(3699), - [anon_sym_descending] = ACTIONS(3699), - [anon_sym_group] = ACTIONS(3699), - [anon_sym_by] = ACTIONS(3699), - [anon_sym_select] = ACTIONS(3699), - [anon_sym_as] = ACTIONS(3704), - [anon_sym_is] = ACTIONS(3704), - [anon_sym_DASH_GT] = ACTIONS(3721), - [anon_sym_with] = ACTIONS(3704), + [sym__identifier_token] = ACTIONS(3638), + [anon_sym_alias] = ACTIONS(3638), + [anon_sym_global] = ACTIONS(3638), + [anon_sym_EQ] = ACTIONS(3638), + [anon_sym_LBRACK] = ACTIONS(3640), + [anon_sym_LPAREN] = ACTIONS(3640), + [anon_sym_LBRACE] = ACTIONS(3640), + [anon_sym_file] = ACTIONS(3638), + [anon_sym_LT] = ACTIONS(3648), + [anon_sym_GT] = ACTIONS(3638), + [anon_sym_where] = ACTIONS(3638), + [anon_sym_QMARK] = ACTIONS(3638), + [anon_sym_notnull] = ACTIONS(3638), + [anon_sym_unmanaged] = ACTIONS(3638), + [anon_sym_BANG] = ACTIONS(3638), + [anon_sym_PLUS_PLUS] = ACTIONS(3640), + [anon_sym_DASH_DASH] = ACTIONS(3640), + [anon_sym_PLUS] = ACTIONS(3638), + [anon_sym_DASH] = ACTIONS(3638), + [anon_sym_STAR] = ACTIONS(3638), + [anon_sym_SLASH] = ACTIONS(3638), + [anon_sym_PERCENT] = ACTIONS(3638), + [anon_sym_CARET] = ACTIONS(3638), + [anon_sym_PIPE] = ACTIONS(3638), + [anon_sym_AMP] = ACTIONS(3638), + [anon_sym_LT_LT] = ACTIONS(3638), + [anon_sym_GT_GT] = ACTIONS(3638), + [anon_sym_GT_GT_GT] = ACTIONS(3638), + [anon_sym_EQ_EQ] = ACTIONS(3640), + [anon_sym_BANG_EQ] = ACTIONS(3640), + [anon_sym_GT_EQ] = ACTIONS(3640), + [anon_sym_LT_EQ] = ACTIONS(3640), + [anon_sym_DOT] = ACTIONS(3638), + [anon_sym_scoped] = ACTIONS(3638), + [anon_sym_EQ_GT] = ACTIONS(3640), + [anon_sym_COLON_COLON] = ACTIONS(3667), + [anon_sym_var] = ACTIONS(3638), + [anon_sym_yield] = ACTIONS(3638), + [anon_sym_switch] = ACTIONS(3638), + [anon_sym_when] = ACTIONS(3638), + [sym_discard] = ACTIONS(3638), + [anon_sym_DOT_DOT] = ACTIONS(3640), + [anon_sym_and] = ACTIONS(3638), + [anon_sym_or] = ACTIONS(3638), + [anon_sym_PLUS_EQ] = ACTIONS(3640), + [anon_sym_DASH_EQ] = ACTIONS(3640), + [anon_sym_STAR_EQ] = ACTIONS(3640), + [anon_sym_SLASH_EQ] = ACTIONS(3640), + [anon_sym_PERCENT_EQ] = ACTIONS(3640), + [anon_sym_AMP_EQ] = ACTIONS(3640), + [anon_sym_CARET_EQ] = ACTIONS(3640), + [anon_sym_PIPE_EQ] = ACTIONS(3640), + [anon_sym_LT_LT_EQ] = ACTIONS(3640), + [anon_sym_GT_GT_EQ] = ACTIONS(3640), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3640), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3640), + [anon_sym_AMP_AMP] = ACTIONS(3640), + [anon_sym_PIPE_PIPE] = ACTIONS(3640), + [anon_sym_QMARK_QMARK] = ACTIONS(3638), + [anon_sym_from] = ACTIONS(3638), + [anon_sym_into] = ACTIONS(3638), + [anon_sym_join] = ACTIONS(3638), + [anon_sym_on] = ACTIONS(3638), + [anon_sym_equals] = ACTIONS(3638), + [anon_sym_let] = ACTIONS(3638), + [anon_sym_orderby] = ACTIONS(3638), + [anon_sym_ascending] = ACTIONS(3638), + [anon_sym_descending] = ACTIONS(3638), + [anon_sym_group] = ACTIONS(3638), + [anon_sym_by] = ACTIONS(3638), + [anon_sym_select] = ACTIONS(3638), + [anon_sym_as] = ACTIONS(3638), + [anon_sym_is] = ACTIONS(3638), + [anon_sym_DASH_GT] = ACTIONS(3640), + [anon_sym_with] = ACTIONS(3638), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -406303,6 +406016,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2261] = { + [sym_type_argument_list] = STATE(2171), [sym_preproc_region] = STATE(2261), [sym_preproc_endregion] = STATE(2261), [sym_preproc_line] = STATE(2261), @@ -406312,92 +406026,91 @@ 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(3685), - [anon_sym_alias] = ACTIONS(3685), - [anon_sym_global] = ACTIONS(3685), - [anon_sym_EQ] = ACTIONS(3689), - [anon_sym_LBRACK] = ACTIONS(3691), - [anon_sym_COLON] = ACTIONS(3687), - [anon_sym_COMMA] = ACTIONS(3687), - [anon_sym_LPAREN] = ACTIONS(3691), - [anon_sym_LBRACE] = ACTIONS(3687), - [anon_sym_file] = ACTIONS(3685), - [anon_sym_LT] = ACTIONS(3694), - [anon_sym_GT] = ACTIONS(3694), - [anon_sym_where] = ACTIONS(3685), - [anon_sym_QMARK] = ACTIONS(3694), - [anon_sym_notnull] = ACTIONS(3685), - [anon_sym_unmanaged] = ACTIONS(3685), - [anon_sym_BANG] = ACTIONS(3694), - [anon_sym_PLUS_PLUS] = ACTIONS(3691), - [anon_sym_DASH_DASH] = ACTIONS(3691), - [anon_sym_PLUS] = ACTIONS(3694), - [anon_sym_DASH] = ACTIONS(3694), - [anon_sym_STAR] = ACTIONS(3694), - [anon_sym_SLASH] = ACTIONS(3694), - [anon_sym_PERCENT] = ACTIONS(3694), - [anon_sym_CARET] = ACTIONS(3694), - [anon_sym_PIPE] = ACTIONS(3694), - [anon_sym_AMP] = ACTIONS(3694), - [anon_sym_LT_LT] = ACTIONS(3694), - [anon_sym_GT_GT] = ACTIONS(3694), - [anon_sym_GT_GT_GT] = ACTIONS(3694), - [anon_sym_EQ_EQ] = ACTIONS(3691), - [anon_sym_BANG_EQ] = ACTIONS(3691), - [anon_sym_GT_EQ] = ACTIONS(3691), - [anon_sym_LT_EQ] = ACTIONS(3691), - [anon_sym_DOT] = ACTIONS(3694), - [anon_sym_scoped] = ACTIONS(3685), - [anon_sym_var] = ACTIONS(3685), - [anon_sym_yield] = ACTIONS(3685), - [anon_sym_switch] = ACTIONS(3694), - [anon_sym_when] = ACTIONS(3685), - [sym_discard] = ACTIONS(3685), - [anon_sym_DOT_DOT] = ACTIONS(3691), - [anon_sym_and] = ACTIONS(3685), - [anon_sym_or] = ACTIONS(3685), - [anon_sym_PLUS_EQ] = ACTIONS(3697), - [anon_sym_DASH_EQ] = ACTIONS(3697), - [anon_sym_STAR_EQ] = ACTIONS(3697), - [anon_sym_SLASH_EQ] = ACTIONS(3697), - [anon_sym_PERCENT_EQ] = ACTIONS(3697), - [anon_sym_AMP_EQ] = ACTIONS(3697), - [anon_sym_CARET_EQ] = ACTIONS(3697), - [anon_sym_PIPE_EQ] = ACTIONS(3697), - [anon_sym_LT_LT_EQ] = ACTIONS(3697), - [anon_sym_GT_GT_EQ] = ACTIONS(3697), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3697), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3697), - [anon_sym_AMP_AMP] = ACTIONS(3691), - [anon_sym_PIPE_PIPE] = ACTIONS(3691), - [anon_sym_QMARK_QMARK] = ACTIONS(3694), - [anon_sym_from] = ACTIONS(3685), - [anon_sym_into] = ACTIONS(3685), - [anon_sym_join] = ACTIONS(3685), - [anon_sym_on] = ACTIONS(3685), - [anon_sym_equals] = ACTIONS(3685), - [anon_sym_let] = ACTIONS(3685), - [anon_sym_orderby] = ACTIONS(3685), - [anon_sym_ascending] = ACTIONS(3685), - [anon_sym_descending] = ACTIONS(3685), - [anon_sym_group] = ACTIONS(3685), - [anon_sym_by] = ACTIONS(3685), - [anon_sym_select] = ACTIONS(3685), - [anon_sym_as] = ACTIONS(3694), - [anon_sym_is] = ACTIONS(3694), - [anon_sym_DASH_GT] = ACTIONS(3691), - [anon_sym_with] = ACTIONS(3694), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_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(3687), + [sym__identifier_token] = ACTIONS(3638), + [anon_sym_alias] = ACTIONS(3638), + [anon_sym_global] = ACTIONS(3638), + [anon_sym_EQ] = ACTIONS(3638), + [anon_sym_LBRACK] = ACTIONS(3640), + [anon_sym_LPAREN] = ACTIONS(3640), + [anon_sym_LBRACE] = ACTIONS(3640), + [anon_sym_file] = ACTIONS(3638), + [anon_sym_LT] = ACTIONS(3648), + [anon_sym_GT] = ACTIONS(3638), + [anon_sym_where] = ACTIONS(3638), + [anon_sym_QMARK] = ACTIONS(3638), + [anon_sym_notnull] = ACTIONS(3638), + [anon_sym_unmanaged] = ACTIONS(3638), + [anon_sym_BANG] = ACTIONS(3638), + [anon_sym_PLUS_PLUS] = ACTIONS(3640), + [anon_sym_DASH_DASH] = ACTIONS(3640), + [anon_sym_PLUS] = ACTIONS(3638), + [anon_sym_DASH] = ACTIONS(3638), + [anon_sym_STAR] = ACTIONS(3638), + [anon_sym_SLASH] = ACTIONS(3638), + [anon_sym_PERCENT] = ACTIONS(3638), + [anon_sym_CARET] = ACTIONS(3638), + [anon_sym_PIPE] = ACTIONS(3638), + [anon_sym_AMP] = ACTIONS(3638), + [anon_sym_LT_LT] = ACTIONS(3638), + [anon_sym_GT_GT] = ACTIONS(3638), + [anon_sym_GT_GT_GT] = ACTIONS(3638), + [anon_sym_EQ_EQ] = ACTIONS(3640), + [anon_sym_BANG_EQ] = ACTIONS(3640), + [anon_sym_GT_EQ] = ACTIONS(3640), + [anon_sym_LT_EQ] = ACTIONS(3640), + [anon_sym_DOT] = ACTIONS(3638), + [anon_sym_scoped] = ACTIONS(3638), + [anon_sym_EQ_GT] = ACTIONS(3640), + [anon_sym_COLON_COLON] = ACTIONS(3653), + [anon_sym_var] = ACTIONS(3638), + [anon_sym_yield] = ACTIONS(3638), + [anon_sym_switch] = ACTIONS(3638), + [anon_sym_when] = ACTIONS(3638), + [sym_discard] = ACTIONS(3638), + [anon_sym_DOT_DOT] = ACTIONS(3640), + [anon_sym_and] = ACTIONS(3638), + [anon_sym_or] = ACTIONS(3638), + [anon_sym_PLUS_EQ] = ACTIONS(3640), + [anon_sym_DASH_EQ] = ACTIONS(3640), + [anon_sym_STAR_EQ] = ACTIONS(3640), + [anon_sym_SLASH_EQ] = ACTIONS(3640), + [anon_sym_PERCENT_EQ] = ACTIONS(3640), + [anon_sym_AMP_EQ] = ACTIONS(3640), + [anon_sym_CARET_EQ] = ACTIONS(3640), + [anon_sym_PIPE_EQ] = ACTIONS(3640), + [anon_sym_LT_LT_EQ] = ACTIONS(3640), + [anon_sym_GT_GT_EQ] = ACTIONS(3640), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3640), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3640), + [anon_sym_AMP_AMP] = ACTIONS(3640), + [anon_sym_PIPE_PIPE] = ACTIONS(3640), + [anon_sym_QMARK_QMARK] = ACTIONS(3638), + [anon_sym_from] = ACTIONS(3638), + [anon_sym_into] = ACTIONS(3638), + [anon_sym_join] = ACTIONS(3638), + [anon_sym_on] = ACTIONS(3638), + [anon_sym_equals] = ACTIONS(3638), + [anon_sym_let] = ACTIONS(3638), + [anon_sym_orderby] = ACTIONS(3638), + [anon_sym_ascending] = ACTIONS(3638), + [anon_sym_descending] = ACTIONS(3638), + [anon_sym_group] = ACTIONS(3638), + [anon_sym_by] = ACTIONS(3638), + [anon_sym_select] = ACTIONS(3638), + [anon_sym_as] = ACTIONS(3638), + [anon_sym_is] = ACTIONS(3638), + [anon_sym_DASH_GT] = ACTIONS(3640), + [anon_sym_with] = ACTIONS(3638), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), }, [2262] = { [sym_preproc_region] = STATE(2262), @@ -406409,92 +406122,92 @@ 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(3699), - [anon_sym_alias] = ACTIONS(3699), - [anon_sym_global] = ACTIONS(3699), - [anon_sym_EQ] = ACTIONS(3704), - [anon_sym_LBRACK] = ACTIONS(3721), - [anon_sym_COLON] = ACTIONS(3719), - [anon_sym_COMMA] = ACTIONS(3721), - [anon_sym_LPAREN] = ACTIONS(3721), - [anon_sym_RPAREN] = ACTIONS(3721), - [anon_sym_LBRACE] = ACTIONS(3710), - [anon_sym_file] = ACTIONS(3699), - [anon_sym_LT] = ACTIONS(3704), - [anon_sym_GT] = ACTIONS(3704), - [anon_sym_where] = ACTIONS(3699), - [anon_sym_QMARK] = ACTIONS(3724), - [anon_sym_notnull] = ACTIONS(3699), - [anon_sym_unmanaged] = ACTIONS(3699), - [anon_sym_BANG] = ACTIONS(3704), - [anon_sym_PLUS_PLUS] = ACTIONS(3719), - [anon_sym_DASH_DASH] = ACTIONS(3719), - [anon_sym_PLUS] = ACTIONS(3704), - [anon_sym_DASH] = ACTIONS(3704), - [anon_sym_STAR] = ACTIONS(3724), - [anon_sym_SLASH] = ACTIONS(3704), - [anon_sym_PERCENT] = ACTIONS(3704), - [anon_sym_CARET] = ACTIONS(3704), - [anon_sym_PIPE] = ACTIONS(3704), - [anon_sym_AMP] = ACTIONS(3704), - [anon_sym_LT_LT] = ACTIONS(3704), - [anon_sym_GT_GT] = ACTIONS(3704), - [anon_sym_GT_GT_GT] = ACTIONS(3704), - [anon_sym_EQ_EQ] = ACTIONS(3719), - [anon_sym_BANG_EQ] = ACTIONS(3719), - [anon_sym_GT_EQ] = ACTIONS(3719), - [anon_sym_LT_EQ] = ACTIONS(3719), - [anon_sym_DOT] = ACTIONS(3724), - [anon_sym_scoped] = ACTIONS(3699), - [anon_sym_var] = ACTIONS(3699), - [anon_sym_yield] = ACTIONS(3699), - [anon_sym_switch] = ACTIONS(3704), - [anon_sym_when] = ACTIONS(3699), - [sym_discard] = ACTIONS(3699), - [anon_sym_DOT_DOT] = ACTIONS(3719), - [anon_sym_and] = ACTIONS(3699), - [anon_sym_or] = ACTIONS(3699), - [anon_sym_PLUS_EQ] = ACTIONS(3719), - [anon_sym_DASH_EQ] = ACTIONS(3719), - [anon_sym_STAR_EQ] = ACTIONS(3719), - [anon_sym_SLASH_EQ] = ACTIONS(3719), - [anon_sym_PERCENT_EQ] = ACTIONS(3719), - [anon_sym_AMP_EQ] = ACTIONS(3719), - [anon_sym_CARET_EQ] = ACTIONS(3719), - [anon_sym_PIPE_EQ] = ACTIONS(3719), - [anon_sym_LT_LT_EQ] = ACTIONS(3719), - [anon_sym_GT_GT_EQ] = ACTIONS(3719), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3719), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3719), - [anon_sym_AMP_AMP] = ACTIONS(3719), - [anon_sym_PIPE_PIPE] = ACTIONS(3719), - [anon_sym_QMARK_QMARK] = ACTIONS(3704), - [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_ascending] = ACTIONS(3699), - [anon_sym_descending] = ACTIONS(3699), - [anon_sym_group] = ACTIONS(3699), - [anon_sym_by] = ACTIONS(3699), - [anon_sym_select] = ACTIONS(3699), - [anon_sym_as] = ACTIONS(3704), - [anon_sym_is] = ACTIONS(3704), - [anon_sym_DASH_GT] = ACTIONS(3721), - [anon_sym_with] = ACTIONS(3704), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_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(3638), + [anon_sym_alias] = ACTIONS(3638), + [anon_sym_global] = ACTIONS(3638), + [anon_sym_EQ] = ACTIONS(3638), + [anon_sym_LBRACK] = ACTIONS(3640), + [anon_sym_COLON] = ACTIONS(3640), + [anon_sym_COMMA] = ACTIONS(3640), + [anon_sym_LPAREN] = ACTIONS(3640), + [anon_sym_LBRACE] = ACTIONS(3640), + [anon_sym_file] = ACTIONS(3638), + [anon_sym_LT] = ACTIONS(3638), + [anon_sym_GT] = ACTIONS(3638), + [anon_sym_where] = ACTIONS(3638), + [anon_sym_QMARK] = ACTIONS(3638), + [anon_sym_notnull] = ACTIONS(3638), + [anon_sym_unmanaged] = ACTIONS(3638), + [anon_sym_BANG] = ACTIONS(3638), + [anon_sym_PLUS_PLUS] = ACTIONS(3640), + [anon_sym_DASH_DASH] = ACTIONS(3640), + [anon_sym_PLUS] = ACTIONS(3638), + [anon_sym_DASH] = ACTIONS(3638), + [anon_sym_STAR] = ACTIONS(3638), + [anon_sym_SLASH] = ACTIONS(3638), + [anon_sym_PERCENT] = ACTIONS(3638), + [anon_sym_CARET] = ACTIONS(3638), + [anon_sym_PIPE] = ACTIONS(3638), + [anon_sym_AMP] = ACTIONS(3638), + [anon_sym_LT_LT] = ACTIONS(3638), + [anon_sym_GT_GT] = ACTIONS(3638), + [anon_sym_GT_GT_GT] = ACTIONS(3638), + [anon_sym_EQ_EQ] = ACTIONS(3640), + [anon_sym_BANG_EQ] = ACTIONS(3640), + [anon_sym_GT_EQ] = ACTIONS(3640), + [anon_sym_LT_EQ] = ACTIONS(3640), + [anon_sym_DOT] = ACTIONS(3638), + [anon_sym_scoped] = ACTIONS(3638), + [anon_sym_var] = ACTIONS(3638), + [anon_sym_yield] = ACTIONS(3638), + [anon_sym_switch] = ACTIONS(3638), + [anon_sym_when] = ACTIONS(3638), + [sym_discard] = ACTIONS(3638), + [anon_sym_DOT_DOT] = ACTIONS(3640), + [anon_sym_and] = ACTIONS(3638), + [anon_sym_or] = ACTIONS(3638), + [anon_sym_PLUS_EQ] = ACTIONS(3640), + [anon_sym_DASH_EQ] = ACTIONS(3640), + [anon_sym_STAR_EQ] = ACTIONS(3640), + [anon_sym_SLASH_EQ] = ACTIONS(3640), + [anon_sym_PERCENT_EQ] = ACTIONS(3640), + [anon_sym_AMP_EQ] = ACTIONS(3640), + [anon_sym_CARET_EQ] = ACTIONS(3640), + [anon_sym_PIPE_EQ] = ACTIONS(3640), + [anon_sym_LT_LT_EQ] = ACTIONS(3640), + [anon_sym_GT_GT_EQ] = ACTIONS(3640), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3640), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3640), + [anon_sym_AMP_AMP] = ACTIONS(3640), + [anon_sym_PIPE_PIPE] = ACTIONS(3640), + [anon_sym_QMARK_QMARK] = ACTIONS(3638), + [anon_sym_from] = ACTIONS(3638), + [anon_sym_into] = ACTIONS(3638), + [anon_sym_join] = ACTIONS(3638), + [anon_sym_on] = ACTIONS(3638), + [anon_sym_equals] = ACTIONS(3638), + [anon_sym_let] = ACTIONS(3638), + [anon_sym_orderby] = ACTIONS(3638), + [anon_sym_ascending] = ACTIONS(3638), + [anon_sym_descending] = ACTIONS(3638), + [anon_sym_group] = ACTIONS(3638), + [anon_sym_by] = ACTIONS(3638), + [anon_sym_select] = ACTIONS(3638), + [anon_sym_as] = ACTIONS(3638), + [anon_sym_is] = ACTIONS(3638), + [anon_sym_DASH_GT] = ACTIONS(3640), + [anon_sym_with] = ACTIONS(3638), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_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(3640), }, [2263] = { [sym_preproc_region] = STATE(2263), @@ -406506,95 +406219,94 @@ 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(3685), - [anon_sym_alias] = ACTIONS(3685), - [anon_sym_global] = ACTIONS(3685), - [anon_sym_EQ] = ACTIONS(3689), - [anon_sym_LBRACK] = ACTIONS(3691), - [anon_sym_COLON] = ACTIONS(3691), - [anon_sym_COMMA] = ACTIONS(3691), - [anon_sym_LPAREN] = ACTIONS(3691), - [anon_sym_LBRACE] = ACTIONS(3687), - [anon_sym_file] = ACTIONS(3685), - [anon_sym_LT] = ACTIONS(3694), - [anon_sym_GT] = ACTIONS(3694), - [anon_sym_where] = ACTIONS(3685), - [anon_sym_QMARK] = ACTIONS(3694), - [anon_sym_notnull] = ACTIONS(3685), - [anon_sym_unmanaged] = ACTIONS(3685), - [anon_sym_BANG] = ACTIONS(3694), - [anon_sym_PLUS_PLUS] = ACTIONS(3691), - [anon_sym_DASH_DASH] = ACTIONS(3691), - [anon_sym_PLUS] = ACTIONS(3694), - [anon_sym_DASH] = ACTIONS(3694), - [anon_sym_STAR] = ACTIONS(3694), - [anon_sym_SLASH] = ACTIONS(3694), - [anon_sym_PERCENT] = ACTIONS(3694), - [anon_sym_CARET] = ACTIONS(3694), - [anon_sym_PIPE] = ACTIONS(3694), - [anon_sym_AMP] = ACTIONS(3694), - [anon_sym_LT_LT] = ACTIONS(3694), - [anon_sym_GT_GT] = ACTIONS(3694), - [anon_sym_GT_GT_GT] = ACTIONS(3694), - [anon_sym_EQ_EQ] = ACTIONS(3691), - [anon_sym_BANG_EQ] = ACTIONS(3691), - [anon_sym_GT_EQ] = ACTIONS(3691), - [anon_sym_LT_EQ] = ACTIONS(3691), - [anon_sym_DOT] = ACTIONS(3694), - [anon_sym_scoped] = ACTIONS(3685), - [anon_sym_var] = ACTIONS(3685), - [anon_sym_yield] = ACTIONS(3685), - [anon_sym_switch] = ACTIONS(3694), - [anon_sym_when] = ACTIONS(3685), - [sym_discard] = ACTIONS(3685), - [anon_sym_DOT_DOT] = ACTIONS(3691), - [anon_sym_and] = ACTIONS(3694), - [anon_sym_or] = ACTIONS(3694), - [anon_sym_PLUS_EQ] = ACTIONS(3697), - [anon_sym_DASH_EQ] = ACTIONS(3697), - [anon_sym_STAR_EQ] = ACTIONS(3697), - [anon_sym_SLASH_EQ] = ACTIONS(3697), - [anon_sym_PERCENT_EQ] = ACTIONS(3697), - [anon_sym_AMP_EQ] = ACTIONS(3697), - [anon_sym_CARET_EQ] = ACTIONS(3697), - [anon_sym_PIPE_EQ] = ACTIONS(3697), - [anon_sym_LT_LT_EQ] = ACTIONS(3697), - [anon_sym_GT_GT_EQ] = ACTIONS(3697), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3697), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3697), - [anon_sym_AMP_AMP] = ACTIONS(3691), - [anon_sym_PIPE_PIPE] = ACTIONS(3691), - [anon_sym_QMARK_QMARK] = ACTIONS(3694), - [anon_sym_from] = ACTIONS(3685), - [anon_sym_into] = ACTIONS(3694), - [anon_sym_join] = ACTIONS(3685), - [anon_sym_on] = ACTIONS(3685), - [anon_sym_equals] = ACTIONS(3685), - [anon_sym_let] = ACTIONS(3685), - [anon_sym_orderby] = ACTIONS(3685), - [anon_sym_ascending] = ACTIONS(3685), - [anon_sym_descending] = ACTIONS(3685), - [anon_sym_group] = ACTIONS(3685), - [anon_sym_by] = ACTIONS(3685), - [anon_sym_select] = ACTIONS(3685), - [anon_sym_as] = ACTIONS(3694), - [anon_sym_is] = ACTIONS(3694), - [anon_sym_DASH_GT] = ACTIONS(3691), - [anon_sym_with] = ACTIONS(3694), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_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(3691), + [sym__identifier_token] = ACTIONS(3691), + [anon_sym_alias] = ACTIONS(3691), + [anon_sym_global] = ACTIONS(3691), + [anon_sym_EQ] = ACTIONS(3696), + [anon_sym_LBRACK] = ACTIONS(3713), + [anon_sym_COLON] = ACTIONS(3702), + [anon_sym_COMMA] = ACTIONS(3702), + [anon_sym_LPAREN] = ACTIONS(3713), + [anon_sym_LBRACE] = ACTIONS(3702), + [anon_sym_file] = ACTIONS(3691), + [anon_sym_LT] = ACTIONS(3716), + [anon_sym_GT] = ACTIONS(3716), + [anon_sym_where] = ACTIONS(3691), + [anon_sym_QMARK] = ACTIONS(3716), + [anon_sym_notnull] = ACTIONS(3691), + [anon_sym_unmanaged] = ACTIONS(3691), + [anon_sym_BANG] = ACTIONS(3716), + [anon_sym_PLUS_PLUS] = ACTIONS(3713), + [anon_sym_DASH_DASH] = ACTIONS(3713), + [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(3713), + [anon_sym_BANG_EQ] = ACTIONS(3713), + [anon_sym_GT_EQ] = ACTIONS(3713), + [anon_sym_LT_EQ] = ACTIONS(3713), + [anon_sym_DOT] = ACTIONS(3716), + [anon_sym_scoped] = ACTIONS(3691), + [anon_sym_var] = ACTIONS(3691), + [anon_sym_yield] = ACTIONS(3691), + [anon_sym_switch] = ACTIONS(3716), + [anon_sym_when] = ACTIONS(3691), + [sym_discard] = ACTIONS(3691), + [anon_sym_DOT_DOT] = ACTIONS(3713), + [anon_sym_and] = ACTIONS(3691), + [anon_sym_or] = ACTIONS(3691), + [anon_sym_PLUS_EQ] = ACTIONS(3711), + [anon_sym_DASH_EQ] = ACTIONS(3711), + [anon_sym_STAR_EQ] = ACTIONS(3711), + [anon_sym_SLASH_EQ] = ACTIONS(3711), + [anon_sym_PERCENT_EQ] = ACTIONS(3711), + [anon_sym_AMP_EQ] = ACTIONS(3711), + [anon_sym_CARET_EQ] = ACTIONS(3711), + [anon_sym_PIPE_EQ] = ACTIONS(3711), + [anon_sym_LT_LT_EQ] = ACTIONS(3711), + [anon_sym_GT_GT_EQ] = ACTIONS(3711), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3711), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3711), + [anon_sym_AMP_AMP] = ACTIONS(3713), + [anon_sym_PIPE_PIPE] = ACTIONS(3713), + [anon_sym_QMARK_QMARK] = ACTIONS(3716), + [anon_sym_from] = ACTIONS(3691), + [anon_sym_into] = ACTIONS(3691), + [anon_sym_join] = ACTIONS(3691), + [anon_sym_on] = ACTIONS(3691), + [anon_sym_equals] = ACTIONS(3691), + [anon_sym_let] = ACTIONS(3691), + [anon_sym_orderby] = ACTIONS(3691), + [anon_sym_ascending] = ACTIONS(3691), + [anon_sym_descending] = ACTIONS(3691), + [anon_sym_group] = ACTIONS(3691), + [anon_sym_by] = ACTIONS(3691), + [anon_sym_select] = ACTIONS(3691), + [anon_sym_as] = ACTIONS(3716), + [anon_sym_is] = ACTIONS(3716), + [anon_sym_DASH_GT] = ACTIONS(3713), + [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(3702), }, [2264] = { - [sym_type_argument_list] = STATE(2183), [sym_preproc_region] = STATE(2264), [sym_preproc_endregion] = STATE(2264), [sym_preproc_line] = STATE(2264), @@ -406604,91 +406316,92 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2264), [sym_preproc_define] = STATE(2264), [sym_preproc_undef] = STATE(2264), - [sym__identifier_token] = ACTIONS(3660), - [anon_sym_alias] = ACTIONS(3660), - [anon_sym_global] = ACTIONS(3660), - [anon_sym_EQ] = ACTIONS(3660), - [anon_sym_LBRACK] = ACTIONS(3662), - [anon_sym_COLON] = ACTIONS(3911), - [anon_sym_LPAREN] = ACTIONS(3662), - [anon_sym_file] = ACTIONS(3660), - [anon_sym_LT] = ACTIONS(3664), - [anon_sym_GT] = ACTIONS(3660), - [anon_sym_where] = ACTIONS(3660), - [anon_sym_QMARK] = ACTIONS(3660), - [anon_sym_notnull] = ACTIONS(3660), - [anon_sym_unmanaged] = ACTIONS(3660), - [anon_sym_BANG] = ACTIONS(3660), - [anon_sym_PLUS_PLUS] = ACTIONS(3662), - [anon_sym_DASH_DASH] = ACTIONS(3662), - [anon_sym_PLUS] = ACTIONS(3660), - [anon_sym_DASH] = ACTIONS(3660), - [anon_sym_STAR] = ACTIONS(3660), - [anon_sym_SLASH] = ACTIONS(3660), - [anon_sym_PERCENT] = ACTIONS(3660), - [anon_sym_CARET] = ACTIONS(3660), - [anon_sym_PIPE] = ACTIONS(3660), - [anon_sym_AMP] = ACTIONS(3660), - [anon_sym_LT_LT] = ACTIONS(3660), - [anon_sym_GT_GT] = ACTIONS(3660), - [anon_sym_GT_GT_GT] = ACTIONS(3660), - [anon_sym_EQ_EQ] = ACTIONS(3662), - [anon_sym_BANG_EQ] = ACTIONS(3662), - [anon_sym_GT_EQ] = ACTIONS(3662), - [anon_sym_LT_EQ] = ACTIONS(3662), - [anon_sym_DOT] = ACTIONS(3660), - [anon_sym_scoped] = ACTIONS(3660), - [anon_sym_EQ_GT] = ACTIONS(3667), - [anon_sym_COLON_COLON] = ACTIONS(3669), - [anon_sym_var] = ACTIONS(3660), - [anon_sym_yield] = ACTIONS(3660), - [anon_sym_switch] = ACTIONS(3660), - [anon_sym_when] = ACTIONS(3660), - [anon_sym_DOT_DOT] = ACTIONS(3662), - [anon_sym_PLUS_EQ] = ACTIONS(3662), - [anon_sym_DASH_EQ] = ACTIONS(3662), - [anon_sym_STAR_EQ] = ACTIONS(3662), - [anon_sym_SLASH_EQ] = ACTIONS(3662), - [anon_sym_PERCENT_EQ] = ACTIONS(3662), - [anon_sym_AMP_EQ] = ACTIONS(3662), - [anon_sym_CARET_EQ] = ACTIONS(3662), - [anon_sym_PIPE_EQ] = ACTIONS(3662), - [anon_sym_LT_LT_EQ] = ACTIONS(3662), - [anon_sym_GT_GT_EQ] = ACTIONS(3662), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3662), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3662), - [anon_sym_AMP_AMP] = ACTIONS(3662), - [anon_sym_PIPE_PIPE] = ACTIONS(3662), - [anon_sym_QMARK_QMARK] = ACTIONS(3660), - [anon_sym_from] = ACTIONS(3660), - [anon_sym_into] = ACTIONS(3660), - [anon_sym_join] = ACTIONS(3660), - [anon_sym_on] = ACTIONS(3660), - [anon_sym_equals] = ACTIONS(3660), - [anon_sym_let] = ACTIONS(3660), - [anon_sym_orderby] = ACTIONS(3660), - [anon_sym_ascending] = ACTIONS(3660), - [anon_sym_descending] = ACTIONS(3660), - [anon_sym_group] = ACTIONS(3660), - [anon_sym_by] = ACTIONS(3660), - [anon_sym_select] = ACTIONS(3660), - [anon_sym_as] = ACTIONS(3660), - [anon_sym_is] = ACTIONS(3660), - [anon_sym_DASH_GT] = ACTIONS(3662), - [anon_sym_with] = ACTIONS(3660), - [aux_sym_preproc_if_token3] = ACTIONS(3662), - [aux_sym_preproc_else_token1] = ACTIONS(3662), - [aux_sym_preproc_elif_token1] = 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__identifier_token] = ACTIONS(3669), + [anon_sym_alias] = ACTIONS(3669), + [anon_sym_global] = ACTIONS(3669), + [anon_sym_EQ] = ACTIONS(3673), + [anon_sym_LBRACK] = ACTIONS(3675), + [anon_sym_COLON] = ACTIONS(3675), + [anon_sym_COMMA] = ACTIONS(3675), + [anon_sym_LPAREN] = ACTIONS(3675), + [anon_sym_LBRACE] = ACTIONS(3678), + [anon_sym_file] = ACTIONS(3669), + [anon_sym_LT] = ACTIONS(3680), + [anon_sym_GT] = ACTIONS(3680), + [anon_sym_where] = ACTIONS(3669), + [anon_sym_QMARK] = ACTIONS(3680), + [anon_sym_notnull] = ACTIONS(3669), + [anon_sym_unmanaged] = ACTIONS(3669), + [anon_sym_BANG] = ACTIONS(3680), + [anon_sym_PLUS_PLUS] = ACTIONS(3675), + [anon_sym_DASH_DASH] = ACTIONS(3675), + [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(3675), + [anon_sym_BANG_EQ] = ACTIONS(3675), + [anon_sym_GT_EQ] = ACTIONS(3675), + [anon_sym_LT_EQ] = ACTIONS(3675), + [anon_sym_DOT] = ACTIONS(3680), + [anon_sym_scoped] = ACTIONS(3669), + [anon_sym_var] = ACTIONS(3669), + [anon_sym_yield] = ACTIONS(3669), + [anon_sym_switch] = ACTIONS(3680), + [anon_sym_when] = ACTIONS(3669), + [sym_discard] = ACTIONS(3669), + [anon_sym_DOT_DOT] = ACTIONS(3675), + [anon_sym_and] = ACTIONS(3680), + [anon_sym_or] = ACTIONS(3680), + [anon_sym_PLUS_EQ] = ACTIONS(3671), + [anon_sym_DASH_EQ] = ACTIONS(3671), + [anon_sym_STAR_EQ] = ACTIONS(3671), + [anon_sym_SLASH_EQ] = ACTIONS(3671), + [anon_sym_PERCENT_EQ] = ACTIONS(3671), + [anon_sym_AMP_EQ] = ACTIONS(3671), + [anon_sym_CARET_EQ] = ACTIONS(3671), + [anon_sym_PIPE_EQ] = ACTIONS(3671), + [anon_sym_LT_LT_EQ] = ACTIONS(3671), + [anon_sym_GT_GT_EQ] = ACTIONS(3671), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3671), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3671), + [anon_sym_AMP_AMP] = ACTIONS(3675), + [anon_sym_PIPE_PIPE] = ACTIONS(3675), + [anon_sym_QMARK_QMARK] = ACTIONS(3680), + [anon_sym_from] = ACTIONS(3669), + [anon_sym_into] = ACTIONS(3680), + [anon_sym_join] = ACTIONS(3669), + [anon_sym_on] = ACTIONS(3669), + [anon_sym_equals] = ACTIONS(3669), + [anon_sym_let] = ACTIONS(3669), + [anon_sym_orderby] = ACTIONS(3669), + [anon_sym_ascending] = ACTIONS(3669), + [anon_sym_descending] = ACTIONS(3669), + [anon_sym_group] = ACTIONS(3669), + [anon_sym_by] = ACTIONS(3669), + [anon_sym_select] = ACTIONS(3669), + [anon_sym_as] = ACTIONS(3680), + [anon_sym_is] = ACTIONS(3680), + [anon_sym_DASH_GT] = ACTIONS(3675), + [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(3675), }, [2265] = { [sym_preproc_region] = STATE(2265), @@ -406700,92 +406413,92 @@ 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(3619), - [anon_sym_alias] = ACTIONS(3619), - [anon_sym_global] = ACTIONS(3619), - [anon_sym_EQ] = ACTIONS(3447), - [anon_sym_LBRACK] = ACTIONS(3445), - [anon_sym_COLON] = ACTIONS(3447), - [anon_sym_COMMA] = ACTIONS(3445), - [anon_sym_LPAREN] = ACTIONS(3616), - [anon_sym_file] = ACTIONS(3619), - [anon_sym_LT] = ACTIONS(3447), - [anon_sym_GT] = ACTIONS(3447), - [anon_sym_where] = ACTIONS(3619), - [anon_sym_QMARK] = ACTIONS(3447), - [anon_sym_notnull] = ACTIONS(3619), - [anon_sym_unmanaged] = ACTIONS(3619), - [anon_sym_BANG] = ACTIONS(3447), - [anon_sym_PLUS_PLUS] = ACTIONS(3445), - [anon_sym_DASH_DASH] = ACTIONS(3445), - [anon_sym_PLUS] = ACTIONS(3447), - [anon_sym_DASH] = ACTIONS(3447), - [anon_sym_STAR] = ACTIONS(3447), - [anon_sym_SLASH] = ACTIONS(3447), - [anon_sym_PERCENT] = ACTIONS(3447), - [anon_sym_CARET] = ACTIONS(3447), - [anon_sym_PIPE] = ACTIONS(3447), - [anon_sym_AMP] = ACTIONS(3447), - [anon_sym_LT_LT] = ACTIONS(3447), - [anon_sym_GT_GT] = ACTIONS(3447), - [anon_sym_GT_GT_GT] = ACTIONS(3447), - [anon_sym_EQ_EQ] = ACTIONS(3445), - [anon_sym_BANG_EQ] = ACTIONS(3445), - [anon_sym_GT_EQ] = ACTIONS(3445), - [anon_sym_LT_EQ] = ACTIONS(3445), - [anon_sym_DOT] = ACTIONS(3447), - [anon_sym_scoped] = ACTIONS(3619), - [anon_sym_EQ_GT] = ACTIONS(3445), - [anon_sym_COLON_COLON] = ACTIONS(3445), - [anon_sym_var] = ACTIONS(3619), - [anon_sym_yield] = ACTIONS(3619), - [anon_sym_switch] = ACTIONS(3447), - [anon_sym_when] = ACTIONS(3619), - [anon_sym_DOT_DOT] = ACTIONS(3445), - [anon_sym_and] = ACTIONS(3447), - [anon_sym_or] = ACTIONS(3447), - [anon_sym_PLUS_EQ] = ACTIONS(3445), - [anon_sym_DASH_EQ] = ACTIONS(3445), - [anon_sym_STAR_EQ] = ACTIONS(3445), - [anon_sym_SLASH_EQ] = ACTIONS(3445), - [anon_sym_PERCENT_EQ] = ACTIONS(3445), - [anon_sym_AMP_EQ] = ACTIONS(3445), - [anon_sym_CARET_EQ] = ACTIONS(3445), - [anon_sym_PIPE_EQ] = ACTIONS(3445), - [anon_sym_LT_LT_EQ] = ACTIONS(3445), - [anon_sym_GT_GT_EQ] = ACTIONS(3445), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3445), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3445), - [anon_sym_AMP_AMP] = ACTIONS(3445), - [anon_sym_PIPE_PIPE] = ACTIONS(3445), - [anon_sym_QMARK_QMARK] = ACTIONS(3447), - [anon_sym_from] = ACTIONS(3619), - [anon_sym_into] = ACTIONS(3619), - [anon_sym_join] = ACTIONS(3619), - [anon_sym_on] = ACTIONS(3619), - [anon_sym_equals] = ACTIONS(3619), - [anon_sym_let] = ACTIONS(3619), - [anon_sym_orderby] = ACTIONS(3619), - [anon_sym_ascending] = ACTIONS(3619), - [anon_sym_descending] = ACTIONS(3619), - [anon_sym_group] = ACTIONS(3619), - [anon_sym_by] = ACTIONS(3619), - [anon_sym_select] = ACTIONS(3619), - [anon_sym_as] = ACTIONS(3447), - [anon_sym_is] = ACTIONS(3447), - [anon_sym_DASH_GT] = ACTIONS(3445), - [anon_sym_with] = ACTIONS(3447), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_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(3445), + [sym__identifier_token] = ACTIONS(3691), + [anon_sym_alias] = ACTIONS(3691), + [anon_sym_global] = ACTIONS(3691), + [anon_sym_EQ] = ACTIONS(3696), + [anon_sym_LBRACK] = ACTIONS(3713), + [anon_sym_COLON] = ACTIONS(3711), + [anon_sym_COMMA] = ACTIONS(3713), + [anon_sym_LPAREN] = ACTIONS(3713), + [anon_sym_RPAREN] = ACTIONS(3713), + [anon_sym_LBRACE] = ACTIONS(3702), + [anon_sym_file] = ACTIONS(3691), + [anon_sym_LT] = ACTIONS(3696), + [anon_sym_GT] = ACTIONS(3696), + [anon_sym_where] = ACTIONS(3691), + [anon_sym_QMARK] = ACTIONS(3716), + [anon_sym_notnull] = ACTIONS(3691), + [anon_sym_unmanaged] = ACTIONS(3691), + [anon_sym_BANG] = ACTIONS(3696), + [anon_sym_PLUS_PLUS] = ACTIONS(3711), + [anon_sym_DASH_DASH] = ACTIONS(3711), + [anon_sym_PLUS] = ACTIONS(3696), + [anon_sym_DASH] = ACTIONS(3696), + [anon_sym_STAR] = ACTIONS(3716), + [anon_sym_SLASH] = ACTIONS(3696), + [anon_sym_PERCENT] = ACTIONS(3696), + [anon_sym_CARET] = ACTIONS(3696), + [anon_sym_PIPE] = ACTIONS(3696), + [anon_sym_AMP] = ACTIONS(3696), + [anon_sym_LT_LT] = ACTIONS(3696), + [anon_sym_GT_GT] = ACTIONS(3696), + [anon_sym_GT_GT_GT] = ACTIONS(3696), + [anon_sym_EQ_EQ] = ACTIONS(3711), + [anon_sym_BANG_EQ] = ACTIONS(3711), + [anon_sym_GT_EQ] = ACTIONS(3711), + [anon_sym_LT_EQ] = ACTIONS(3711), + [anon_sym_DOT] = ACTIONS(3716), + [anon_sym_scoped] = ACTIONS(3691), + [anon_sym_var] = ACTIONS(3691), + [anon_sym_yield] = ACTIONS(3691), + [anon_sym_switch] = ACTIONS(3696), + [anon_sym_when] = ACTIONS(3691), + [sym_discard] = ACTIONS(3691), + [anon_sym_DOT_DOT] = ACTIONS(3711), + [anon_sym_and] = ACTIONS(3691), + [anon_sym_or] = ACTIONS(3691), + [anon_sym_PLUS_EQ] = ACTIONS(3711), + [anon_sym_DASH_EQ] = ACTIONS(3711), + [anon_sym_STAR_EQ] = ACTIONS(3711), + [anon_sym_SLASH_EQ] = ACTIONS(3711), + [anon_sym_PERCENT_EQ] = ACTIONS(3711), + [anon_sym_AMP_EQ] = ACTIONS(3711), + [anon_sym_CARET_EQ] = ACTIONS(3711), + [anon_sym_PIPE_EQ] = ACTIONS(3711), + [anon_sym_LT_LT_EQ] = ACTIONS(3711), + [anon_sym_GT_GT_EQ] = ACTIONS(3711), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3711), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3711), + [anon_sym_AMP_AMP] = ACTIONS(3711), + [anon_sym_PIPE_PIPE] = ACTIONS(3711), + [anon_sym_QMARK_QMARK] = ACTIONS(3696), + [anon_sym_from] = ACTIONS(3691), + [anon_sym_into] = ACTIONS(3691), + [anon_sym_join] = ACTIONS(3691), + [anon_sym_on] = ACTIONS(3691), + [anon_sym_equals] = ACTIONS(3691), + [anon_sym_let] = ACTIONS(3691), + [anon_sym_orderby] = ACTIONS(3691), + [anon_sym_ascending] = ACTIONS(3691), + [anon_sym_descending] = ACTIONS(3691), + [anon_sym_group] = ACTIONS(3691), + [anon_sym_by] = ACTIONS(3691), + [anon_sym_select] = ACTIONS(3691), + [anon_sym_as] = ACTIONS(3696), + [anon_sym_is] = ACTIONS(3696), + [anon_sym_DASH_GT] = ACTIONS(3713), + [anon_sym_with] = ACTIONS(3696), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), }, [2266] = { [sym_preproc_region] = STATE(2266), @@ -406797,95 +406510,94 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2266), [sym_preproc_define] = STATE(2266), [sym_preproc_undef] = STATE(2266), - [sym__identifier_token] = ACTIONS(3685), - [anon_sym_alias] = ACTIONS(3685), - [anon_sym_global] = ACTIONS(3685), - [anon_sym_EQ] = ACTIONS(3689), - [anon_sym_LBRACK] = ACTIONS(3691), - [anon_sym_COLON] = ACTIONS(3697), - [anon_sym_COMMA] = ACTIONS(3687), - [anon_sym_LPAREN] = ACTIONS(3691), - [anon_sym_RPAREN] = ACTIONS(3687), - [anon_sym_LBRACE] = ACTIONS(3687), - [anon_sym_file] = ACTIONS(3685), - [anon_sym_LT] = ACTIONS(3689), - [anon_sym_GT] = ACTIONS(3689), - [anon_sym_where] = ACTIONS(3685), - [anon_sym_QMARK] = ACTIONS(3694), - [anon_sym_notnull] = ACTIONS(3685), - [anon_sym_unmanaged] = ACTIONS(3685), - [anon_sym_BANG] = ACTIONS(3689), - [anon_sym_PLUS_PLUS] = ACTIONS(3697), - [anon_sym_DASH_DASH] = ACTIONS(3697), - [anon_sym_PLUS] = ACTIONS(3689), - [anon_sym_DASH] = ACTIONS(3689), - [anon_sym_STAR] = ACTIONS(3694), - [anon_sym_SLASH] = ACTIONS(3689), - [anon_sym_PERCENT] = ACTIONS(3689), - [anon_sym_CARET] = ACTIONS(3689), - [anon_sym_PIPE] = ACTIONS(3689), - [anon_sym_AMP] = ACTIONS(3689), - [anon_sym_LT_LT] = ACTIONS(3689), - [anon_sym_GT_GT] = ACTIONS(3689), - [anon_sym_GT_GT_GT] = ACTIONS(3689), - [anon_sym_EQ_EQ] = ACTIONS(3697), - [anon_sym_BANG_EQ] = ACTIONS(3697), - [anon_sym_GT_EQ] = ACTIONS(3697), - [anon_sym_LT_EQ] = ACTIONS(3697), - [anon_sym_DOT] = ACTIONS(3694), - [anon_sym_scoped] = ACTIONS(3685), - [anon_sym_var] = ACTIONS(3685), - [anon_sym_yield] = ACTIONS(3685), - [anon_sym_switch] = ACTIONS(3689), - [anon_sym_when] = ACTIONS(3685), - [sym_discard] = ACTIONS(3685), - [anon_sym_DOT_DOT] = ACTIONS(3697), - [anon_sym_and] = ACTIONS(3685), - [anon_sym_or] = ACTIONS(3685), - [anon_sym_PLUS_EQ] = ACTIONS(3697), - [anon_sym_DASH_EQ] = ACTIONS(3697), - [anon_sym_STAR_EQ] = ACTIONS(3697), - [anon_sym_SLASH_EQ] = ACTIONS(3697), - [anon_sym_PERCENT_EQ] = ACTIONS(3697), - [anon_sym_AMP_EQ] = ACTIONS(3697), - [anon_sym_CARET_EQ] = ACTIONS(3697), - [anon_sym_PIPE_EQ] = ACTIONS(3697), - [anon_sym_LT_LT_EQ] = ACTIONS(3697), - [anon_sym_GT_GT_EQ] = ACTIONS(3697), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3697), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3697), - [anon_sym_AMP_AMP] = ACTIONS(3697), - [anon_sym_PIPE_PIPE] = ACTIONS(3697), - [anon_sym_QMARK_QMARK] = ACTIONS(3689), - [anon_sym_from] = ACTIONS(3685), - [anon_sym_into] = ACTIONS(3685), - [anon_sym_join] = ACTIONS(3685), - [anon_sym_on] = ACTIONS(3685), - [anon_sym_equals] = ACTIONS(3685), - [anon_sym_let] = ACTIONS(3685), - [anon_sym_orderby] = ACTIONS(3685), - [anon_sym_ascending] = ACTIONS(3685), - [anon_sym_descending] = ACTIONS(3685), - [anon_sym_group] = ACTIONS(3685), - [anon_sym_by] = ACTIONS(3685), - [anon_sym_select] = ACTIONS(3685), - [anon_sym_as] = ACTIONS(3689), - [anon_sym_is] = ACTIONS(3689), - [anon_sym_DASH_GT] = ACTIONS(3691), - [anon_sym_with] = ACTIONS(3689), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_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(3642), + [anon_sym_alias] = ACTIONS(3642), + [anon_sym_global] = ACTIONS(3642), + [anon_sym_EQ] = ACTIONS(3642), + [anon_sym_LBRACK] = ACTIONS(3644), + [anon_sym_COLON] = ACTIONS(3644), + [anon_sym_COMMA] = ACTIONS(3644), + [anon_sym_LPAREN] = ACTIONS(3644), + [anon_sym_LBRACE] = ACTIONS(3644), + [anon_sym_file] = ACTIONS(3642), + [anon_sym_LT] = ACTIONS(3642), + [anon_sym_GT] = ACTIONS(3642), + [anon_sym_where] = ACTIONS(3642), + [anon_sym_QMARK] = ACTIONS(3642), + [anon_sym_notnull] = ACTIONS(3642), + [anon_sym_unmanaged] = ACTIONS(3642), + [anon_sym_BANG] = ACTIONS(3642), + [anon_sym_PLUS_PLUS] = ACTIONS(3644), + [anon_sym_DASH_DASH] = ACTIONS(3644), + [anon_sym_PLUS] = ACTIONS(3642), + [anon_sym_DASH] = ACTIONS(3642), + [anon_sym_STAR] = ACTIONS(3642), + [anon_sym_SLASH] = ACTIONS(3642), + [anon_sym_PERCENT] = ACTIONS(3642), + [anon_sym_CARET] = ACTIONS(3642), + [anon_sym_PIPE] = ACTIONS(3642), + [anon_sym_AMP] = ACTIONS(3642), + [anon_sym_LT_LT] = ACTIONS(3642), + [anon_sym_GT_GT] = ACTIONS(3642), + [anon_sym_GT_GT_GT] = ACTIONS(3642), + [anon_sym_EQ_EQ] = ACTIONS(3644), + [anon_sym_BANG_EQ] = ACTIONS(3644), + [anon_sym_GT_EQ] = ACTIONS(3644), + [anon_sym_LT_EQ] = ACTIONS(3644), + [anon_sym_DOT] = ACTIONS(3642), + [anon_sym_scoped] = ACTIONS(3642), + [anon_sym_var] = ACTIONS(3642), + [anon_sym_yield] = ACTIONS(3642), + [anon_sym_switch] = ACTIONS(3642), + [anon_sym_when] = ACTIONS(3642), + [sym_discard] = ACTIONS(3642), + [anon_sym_DOT_DOT] = ACTIONS(3644), + [anon_sym_and] = ACTIONS(3642), + [anon_sym_or] = ACTIONS(3642), + [anon_sym_PLUS_EQ] = ACTIONS(3644), + [anon_sym_DASH_EQ] = ACTIONS(3644), + [anon_sym_STAR_EQ] = ACTIONS(3644), + [anon_sym_SLASH_EQ] = ACTIONS(3644), + [anon_sym_PERCENT_EQ] = ACTIONS(3644), + [anon_sym_AMP_EQ] = ACTIONS(3644), + [anon_sym_CARET_EQ] = ACTIONS(3644), + [anon_sym_PIPE_EQ] = ACTIONS(3644), + [anon_sym_LT_LT_EQ] = ACTIONS(3644), + [anon_sym_GT_GT_EQ] = ACTIONS(3644), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3644), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3644), + [anon_sym_AMP_AMP] = ACTIONS(3644), + [anon_sym_PIPE_PIPE] = ACTIONS(3644), + [anon_sym_QMARK_QMARK] = ACTIONS(3642), + [anon_sym_from] = ACTIONS(3642), + [anon_sym_into] = ACTIONS(3642), + [anon_sym_join] = ACTIONS(3642), + [anon_sym_on] = ACTIONS(3642), + [anon_sym_equals] = ACTIONS(3642), + [anon_sym_let] = ACTIONS(3642), + [anon_sym_orderby] = ACTIONS(3642), + [anon_sym_ascending] = ACTIONS(3642), + [anon_sym_descending] = ACTIONS(3642), + [anon_sym_group] = ACTIONS(3642), + [anon_sym_by] = ACTIONS(3642), + [anon_sym_select] = ACTIONS(3642), + [anon_sym_as] = ACTIONS(3642), + [anon_sym_is] = ACTIONS(3642), + [anon_sym_DASH_GT] = ACTIONS(3644), + [anon_sym_with] = ACTIONS(3642), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_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(3644), }, [2267] = { - [sym_type_argument_list] = STATE(2183), [sym_preproc_region] = STATE(2267), [sym_preproc_endregion] = STATE(2267), [sym_preproc_line] = STATE(2267), @@ -406895,81 +406607,82 @@ 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(3660), - [anon_sym_alias] = ACTIONS(3660), - [anon_sym_global] = ACTIONS(3660), - [anon_sym_EQ] = ACTIONS(3660), - [anon_sym_LBRACK] = ACTIONS(3662), - [anon_sym_LPAREN] = ACTIONS(3662), - [anon_sym_LBRACE] = ACTIONS(3662), - [anon_sym_file] = ACTIONS(3660), - [anon_sym_LT] = ACTIONS(3664), - [anon_sym_GT] = ACTIONS(3660), - [anon_sym_where] = ACTIONS(3660), - [anon_sym_QMARK] = ACTIONS(3660), - [anon_sym_notnull] = ACTIONS(3660), - [anon_sym_unmanaged] = ACTIONS(3660), - [anon_sym_BANG] = ACTIONS(3660), - [anon_sym_PLUS_PLUS] = ACTIONS(3662), - [anon_sym_DASH_DASH] = ACTIONS(3662), - [anon_sym_PLUS] = ACTIONS(3660), - [anon_sym_DASH] = ACTIONS(3660), - [anon_sym_STAR] = ACTIONS(3660), - [anon_sym_SLASH] = ACTIONS(3660), - [anon_sym_PERCENT] = ACTIONS(3660), - [anon_sym_CARET] = ACTIONS(3660), - [anon_sym_PIPE] = ACTIONS(3660), - [anon_sym_AMP] = ACTIONS(3660), - [anon_sym_LT_LT] = ACTIONS(3660), - [anon_sym_GT_GT] = ACTIONS(3660), - [anon_sym_GT_GT_GT] = ACTIONS(3660), - [anon_sym_EQ_EQ] = ACTIONS(3662), - [anon_sym_BANG_EQ] = ACTIONS(3662), - [anon_sym_GT_EQ] = ACTIONS(3662), - [anon_sym_LT_EQ] = ACTIONS(3662), - [anon_sym_DOT] = ACTIONS(3660), - [anon_sym_scoped] = ACTIONS(3660), - [anon_sym_EQ_GT] = ACTIONS(3662), - [anon_sym_COLON_COLON] = ACTIONS(3669), - [anon_sym_var] = ACTIONS(3660), - [anon_sym_yield] = ACTIONS(3660), - [anon_sym_switch] = ACTIONS(3660), - [anon_sym_when] = ACTIONS(3660), - [sym_discard] = ACTIONS(3660), - [anon_sym_DOT_DOT] = ACTIONS(3662), - [anon_sym_and] = ACTIONS(3660), - [anon_sym_or] = ACTIONS(3660), - [anon_sym_PLUS_EQ] = ACTIONS(3662), - [anon_sym_DASH_EQ] = ACTIONS(3662), - [anon_sym_STAR_EQ] = ACTIONS(3662), - [anon_sym_SLASH_EQ] = ACTIONS(3662), - [anon_sym_PERCENT_EQ] = ACTIONS(3662), - [anon_sym_AMP_EQ] = ACTIONS(3662), - [anon_sym_CARET_EQ] = ACTIONS(3662), - [anon_sym_PIPE_EQ] = ACTIONS(3662), - [anon_sym_LT_LT_EQ] = ACTIONS(3662), - [anon_sym_GT_GT_EQ] = ACTIONS(3662), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3662), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3662), - [anon_sym_AMP_AMP] = ACTIONS(3662), - [anon_sym_PIPE_PIPE] = ACTIONS(3662), - [anon_sym_QMARK_QMARK] = ACTIONS(3660), - [anon_sym_from] = ACTIONS(3660), - [anon_sym_into] = ACTIONS(3660), - [anon_sym_join] = ACTIONS(3660), - [anon_sym_on] = ACTIONS(3660), - [anon_sym_equals] = ACTIONS(3660), - [anon_sym_let] = ACTIONS(3660), - [anon_sym_orderby] = ACTIONS(3660), - [anon_sym_ascending] = ACTIONS(3660), - [anon_sym_descending] = ACTIONS(3660), - [anon_sym_group] = ACTIONS(3660), - [anon_sym_by] = ACTIONS(3660), - [anon_sym_select] = ACTIONS(3660), - [anon_sym_as] = ACTIONS(3660), - [anon_sym_is] = ACTIONS(3660), - [anon_sym_DASH_GT] = ACTIONS(3662), - [anon_sym_with] = ACTIONS(3660), + [sym__identifier_token] = ACTIONS(3431), + [anon_sym_alias] = ACTIONS(3431), + [anon_sym_global] = ACTIONS(3431), + [anon_sym_using] = ACTIONS(3899), + [anon_sym_EQ] = ACTIONS(3431), + [anon_sym_LBRACK] = ACTIONS(3429), + [anon_sym_COLON] = ACTIONS(3431), + [anon_sym_LPAREN] = ACTIONS(3429), + [anon_sym_file] = ACTIONS(3431), + [anon_sym_LT] = ACTIONS(3431), + [anon_sym_GT] = ACTIONS(3431), + [anon_sym_where] = ACTIONS(3431), + [anon_sym_QMARK] = ACTIONS(3431), + [anon_sym_notnull] = ACTIONS(3431), + [anon_sym_unmanaged] = ACTIONS(3431), + [anon_sym_BANG] = ACTIONS(3431), + [anon_sym_PLUS_PLUS] = ACTIONS(3429), + [anon_sym_DASH_DASH] = ACTIONS(3429), + [anon_sym_PLUS] = ACTIONS(3431), + [anon_sym_DASH] = ACTIONS(3431), + [anon_sym_STAR] = ACTIONS(3431), + [anon_sym_SLASH] = ACTIONS(3431), + [anon_sym_PERCENT] = ACTIONS(3431), + [anon_sym_CARET] = ACTIONS(3431), + [anon_sym_PIPE] = ACTIONS(3431), + [anon_sym_AMP] = ACTIONS(3431), + [anon_sym_LT_LT] = ACTIONS(3431), + [anon_sym_GT_GT] = ACTIONS(3431), + [anon_sym_GT_GT_GT] = ACTIONS(3431), + [anon_sym_EQ_EQ] = ACTIONS(3429), + [anon_sym_BANG_EQ] = ACTIONS(3429), + [anon_sym_GT_EQ] = ACTIONS(3429), + [anon_sym_LT_EQ] = ACTIONS(3429), + [anon_sym_DOT] = ACTIONS(3431), + [anon_sym_scoped] = ACTIONS(3431), + [anon_sym_EQ_GT] = ACTIONS(3429), + [anon_sym_COLON_COLON] = ACTIONS(3429), + [anon_sym_var] = ACTIONS(3431), + [anon_sym_yield] = ACTIONS(3431), + [anon_sym_switch] = ACTIONS(3431), + [anon_sym_when] = ACTIONS(3431), + [anon_sym_DOT_DOT] = ACTIONS(3429), + [anon_sym_PLUS_EQ] = ACTIONS(3429), + [anon_sym_DASH_EQ] = ACTIONS(3429), + [anon_sym_STAR_EQ] = ACTIONS(3429), + [anon_sym_SLASH_EQ] = ACTIONS(3429), + [anon_sym_PERCENT_EQ] = ACTIONS(3429), + [anon_sym_AMP_EQ] = ACTIONS(3429), + [anon_sym_CARET_EQ] = ACTIONS(3429), + [anon_sym_PIPE_EQ] = ACTIONS(3429), + [anon_sym_LT_LT_EQ] = ACTIONS(3429), + [anon_sym_GT_GT_EQ] = ACTIONS(3429), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3429), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3429), + [anon_sym_AMP_AMP] = ACTIONS(3429), + [anon_sym_PIPE_PIPE] = ACTIONS(3429), + [anon_sym_QMARK_QMARK] = 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), + [anon_sym_as] = ACTIONS(3431), + [anon_sym_is] = ACTIONS(3431), + [anon_sym_DASH_GT] = ACTIONS(3429), + [anon_sym_with] = ACTIONS(3431), + [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), @@ -406991,82 +406704,81 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2268), [sym_preproc_define] = STATE(2268), [sym_preproc_undef] = STATE(2268), - [sym__identifier_token] = ACTIONS(3685), - [anon_sym_alias] = ACTIONS(3685), - [anon_sym_global] = ACTIONS(3685), - [anon_sym_EQ] = ACTIONS(3689), - [anon_sym_LBRACK] = ACTIONS(3691), - [anon_sym_COLON] = ACTIONS(3697), - [anon_sym_COMMA] = ACTIONS(3691), - [anon_sym_LPAREN] = ACTIONS(3691), - [anon_sym_RPAREN] = ACTIONS(3691), - [anon_sym_LBRACE] = ACTIONS(3687), - [anon_sym_file] = ACTIONS(3685), - [anon_sym_LT] = ACTIONS(3689), - [anon_sym_GT] = ACTIONS(3689), - [anon_sym_where] = ACTIONS(3685), - [anon_sym_QMARK] = ACTIONS(3694), - [anon_sym_notnull] = ACTIONS(3685), - [anon_sym_unmanaged] = ACTIONS(3685), - [anon_sym_BANG] = ACTIONS(3689), - [anon_sym_PLUS_PLUS] = ACTIONS(3697), - [anon_sym_DASH_DASH] = ACTIONS(3697), - [anon_sym_PLUS] = ACTIONS(3689), - [anon_sym_DASH] = ACTIONS(3689), - [anon_sym_STAR] = ACTIONS(3694), - [anon_sym_SLASH] = ACTIONS(3689), - [anon_sym_PERCENT] = ACTIONS(3689), - [anon_sym_CARET] = ACTIONS(3689), - [anon_sym_PIPE] = ACTIONS(3689), - [anon_sym_AMP] = ACTIONS(3689), - [anon_sym_LT_LT] = ACTIONS(3689), - [anon_sym_GT_GT] = ACTIONS(3689), - [anon_sym_GT_GT_GT] = ACTIONS(3689), - [anon_sym_EQ_EQ] = ACTIONS(3697), - [anon_sym_BANG_EQ] = ACTIONS(3697), - [anon_sym_GT_EQ] = ACTIONS(3697), - [anon_sym_LT_EQ] = ACTIONS(3697), - [anon_sym_DOT] = ACTIONS(3694), - [anon_sym_scoped] = ACTIONS(3685), - [anon_sym_var] = ACTIONS(3685), - [anon_sym_yield] = ACTIONS(3685), - [anon_sym_switch] = ACTIONS(3689), - [anon_sym_when] = ACTIONS(3685), - [sym_discard] = ACTIONS(3685), - [anon_sym_DOT_DOT] = ACTIONS(3697), - [anon_sym_and] = ACTIONS(3685), - [anon_sym_or] = ACTIONS(3685), - [anon_sym_PLUS_EQ] = ACTIONS(3697), - [anon_sym_DASH_EQ] = ACTIONS(3697), - [anon_sym_STAR_EQ] = ACTIONS(3697), - [anon_sym_SLASH_EQ] = ACTIONS(3697), - [anon_sym_PERCENT_EQ] = ACTIONS(3697), - [anon_sym_AMP_EQ] = ACTIONS(3697), - [anon_sym_CARET_EQ] = ACTIONS(3697), - [anon_sym_PIPE_EQ] = ACTIONS(3697), - [anon_sym_LT_LT_EQ] = ACTIONS(3697), - [anon_sym_GT_GT_EQ] = ACTIONS(3697), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3697), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3697), - [anon_sym_AMP_AMP] = ACTIONS(3697), - [anon_sym_PIPE_PIPE] = ACTIONS(3697), - [anon_sym_QMARK_QMARK] = ACTIONS(3689), - [anon_sym_from] = ACTIONS(3685), - [anon_sym_into] = ACTIONS(3685), - [anon_sym_join] = ACTIONS(3685), - [anon_sym_on] = ACTIONS(3685), - [anon_sym_equals] = ACTIONS(3685), - [anon_sym_let] = ACTIONS(3685), - [anon_sym_orderby] = ACTIONS(3685), - [anon_sym_ascending] = ACTIONS(3685), - [anon_sym_descending] = ACTIONS(3685), - [anon_sym_group] = ACTIONS(3685), - [anon_sym_by] = ACTIONS(3685), - [anon_sym_select] = ACTIONS(3685), - [anon_sym_as] = ACTIONS(3689), - [anon_sym_is] = ACTIONS(3689), - [anon_sym_DASH_GT] = ACTIONS(3691), - [anon_sym_with] = ACTIONS(3689), + [sym__identifier_token] = ACTIONS(3691), + [anon_sym_alias] = ACTIONS(3691), + [anon_sym_global] = ACTIONS(3691), + [anon_sym_EQ] = ACTIONS(3696), + [anon_sym_LBRACK] = ACTIONS(3698), + [anon_sym_COLON] = ACTIONS(3693), + [anon_sym_COMMA] = ACTIONS(3693), + [anon_sym_LPAREN] = ACTIONS(3698), + [anon_sym_LBRACE] = ACTIONS(3702), + [anon_sym_file] = ACTIONS(3691), + [anon_sym_LT] = ACTIONS(3704), + [anon_sym_GT] = ACTIONS(3704), + [anon_sym_where] = ACTIONS(3691), + [anon_sym_QMARK] = ACTIONS(3704), + [anon_sym_notnull] = ACTIONS(3691), + [anon_sym_unmanaged] = ACTIONS(3691), + [anon_sym_BANG] = ACTIONS(3704), + [anon_sym_PLUS_PLUS] = ACTIONS(3698), + [anon_sym_DASH_DASH] = ACTIONS(3698), + [anon_sym_PLUS] = ACTIONS(3704), + [anon_sym_DASH] = ACTIONS(3704), + [anon_sym_STAR] = ACTIONS(3704), + [anon_sym_SLASH] = ACTIONS(3704), + [anon_sym_PERCENT] = ACTIONS(3704), + [anon_sym_CARET] = ACTIONS(3704), + [anon_sym_PIPE] = ACTIONS(3704), + [anon_sym_AMP] = ACTIONS(3704), + [anon_sym_LT_LT] = ACTIONS(3704), + [anon_sym_GT_GT] = ACTIONS(3704), + [anon_sym_GT_GT_GT] = ACTIONS(3704), + [anon_sym_EQ_EQ] = ACTIONS(3698), + [anon_sym_BANG_EQ] = ACTIONS(3698), + [anon_sym_GT_EQ] = ACTIONS(3698), + [anon_sym_LT_EQ] = ACTIONS(3698), + [anon_sym_DOT] = ACTIONS(3704), + [anon_sym_scoped] = ACTIONS(3691), + [anon_sym_var] = ACTIONS(3691), + [anon_sym_yield] = ACTIONS(3691), + [anon_sym_switch] = ACTIONS(3704), + [anon_sym_when] = ACTIONS(3691), + [sym_discard] = ACTIONS(3691), + [anon_sym_DOT_DOT] = ACTIONS(3698), + [anon_sym_and] = ACTIONS(3708), + [anon_sym_or] = ACTIONS(3708), + [anon_sym_PLUS_EQ] = ACTIONS(3711), + [anon_sym_DASH_EQ] = ACTIONS(3711), + [anon_sym_STAR_EQ] = ACTIONS(3711), + [anon_sym_SLASH_EQ] = ACTIONS(3711), + [anon_sym_PERCENT_EQ] = ACTIONS(3711), + [anon_sym_AMP_EQ] = ACTIONS(3711), + [anon_sym_CARET_EQ] = ACTIONS(3711), + [anon_sym_PIPE_EQ] = ACTIONS(3711), + [anon_sym_LT_LT_EQ] = ACTIONS(3711), + [anon_sym_GT_GT_EQ] = ACTIONS(3711), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3711), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3711), + [anon_sym_AMP_AMP] = ACTIONS(3698), + [anon_sym_PIPE_PIPE] = ACTIONS(3698), + [anon_sym_QMARK_QMARK] = ACTIONS(3704), + [anon_sym_from] = ACTIONS(3691), + [anon_sym_into] = ACTIONS(3708), + [anon_sym_join] = ACTIONS(3691), + [anon_sym_on] = ACTIONS(3691), + [anon_sym_equals] = ACTIONS(3691), + [anon_sym_let] = ACTIONS(3691), + [anon_sym_orderby] = ACTIONS(3691), + [anon_sym_ascending] = ACTIONS(3691), + [anon_sym_descending] = ACTIONS(3691), + [anon_sym_group] = ACTIONS(3691), + [anon_sym_by] = ACTIONS(3691), + [anon_sym_select] = ACTIONS(3691), + [anon_sym_as] = ACTIONS(3704), + [anon_sym_is] = ACTIONS(3704), + [anon_sym_DASH_GT] = ACTIONS(3698), + [anon_sym_with] = ACTIONS(3704), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -407077,8 +406789,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(3693), }, [2269] = { + [sym_type_argument_list] = STATE(2171), [sym_preproc_region] = STATE(2269), [sym_preproc_endregion] = STATE(2269), [sym_preproc_line] = STATE(2269), @@ -407088,92 +406802,90 @@ 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(3660), - [anon_sym_alias] = ACTIONS(3660), - [anon_sym_global] = ACTIONS(3660), - [anon_sym_EQ] = ACTIONS(3660), - [anon_sym_LBRACK] = ACTIONS(3662), - [anon_sym_COLON] = ACTIONS(3662), - [anon_sym_COMMA] = ACTIONS(3662), - [anon_sym_LPAREN] = ACTIONS(3662), - [anon_sym_LBRACE] = ACTIONS(3662), - [anon_sym_file] = ACTIONS(3660), - [anon_sym_LT] = ACTIONS(3660), - [anon_sym_GT] = ACTIONS(3660), - [anon_sym_where] = ACTIONS(3660), - [anon_sym_QMARK] = ACTIONS(3660), - [anon_sym_notnull] = ACTIONS(3660), - [anon_sym_unmanaged] = ACTIONS(3660), - [anon_sym_BANG] = ACTIONS(3660), - [anon_sym_PLUS_PLUS] = ACTIONS(3662), - [anon_sym_DASH_DASH] = ACTIONS(3662), - [anon_sym_PLUS] = ACTIONS(3660), - [anon_sym_DASH] = ACTIONS(3660), - [anon_sym_STAR] = ACTIONS(3660), - [anon_sym_SLASH] = ACTIONS(3660), - [anon_sym_PERCENT] = ACTIONS(3660), - [anon_sym_CARET] = ACTIONS(3660), - [anon_sym_PIPE] = ACTIONS(3660), - [anon_sym_AMP] = ACTIONS(3660), - [anon_sym_LT_LT] = ACTIONS(3660), - [anon_sym_GT_GT] = ACTIONS(3660), - [anon_sym_GT_GT_GT] = ACTIONS(3660), - [anon_sym_EQ_EQ] = ACTIONS(3662), - [anon_sym_BANG_EQ] = ACTIONS(3662), - [anon_sym_GT_EQ] = ACTIONS(3662), - [anon_sym_LT_EQ] = ACTIONS(3662), - [anon_sym_DOT] = ACTIONS(3660), - [anon_sym_scoped] = ACTIONS(3660), - [anon_sym_var] = ACTIONS(3660), - [anon_sym_yield] = ACTIONS(3660), - [anon_sym_switch] = ACTIONS(3660), - [anon_sym_when] = ACTIONS(3660), - [sym_discard] = ACTIONS(3660), - [anon_sym_DOT_DOT] = ACTIONS(3662), - [anon_sym_and] = ACTIONS(3660), - [anon_sym_or] = ACTIONS(3660), - [anon_sym_PLUS_EQ] = ACTIONS(3662), - [anon_sym_DASH_EQ] = ACTIONS(3662), - [anon_sym_STAR_EQ] = ACTIONS(3662), - [anon_sym_SLASH_EQ] = ACTIONS(3662), - [anon_sym_PERCENT_EQ] = ACTIONS(3662), - [anon_sym_AMP_EQ] = ACTIONS(3662), - [anon_sym_CARET_EQ] = ACTIONS(3662), - [anon_sym_PIPE_EQ] = ACTIONS(3662), - [anon_sym_LT_LT_EQ] = ACTIONS(3662), - [anon_sym_GT_GT_EQ] = ACTIONS(3662), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3662), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3662), - [anon_sym_AMP_AMP] = ACTIONS(3662), - [anon_sym_PIPE_PIPE] = ACTIONS(3662), - [anon_sym_QMARK_QMARK] = ACTIONS(3660), - [anon_sym_from] = ACTIONS(3660), - [anon_sym_into] = ACTIONS(3660), - [anon_sym_join] = ACTIONS(3660), - [anon_sym_on] = ACTIONS(3660), - [anon_sym_equals] = ACTIONS(3660), - [anon_sym_let] = ACTIONS(3660), - [anon_sym_orderby] = ACTIONS(3660), - [anon_sym_ascending] = ACTIONS(3660), - [anon_sym_descending] = ACTIONS(3660), - [anon_sym_group] = ACTIONS(3660), - [anon_sym_by] = ACTIONS(3660), - [anon_sym_select] = ACTIONS(3660), - [anon_sym_as] = ACTIONS(3660), - [anon_sym_is] = ACTIONS(3660), - [anon_sym_DASH_GT] = ACTIONS(3662), - [anon_sym_with] = ACTIONS(3660), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_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(3662), + [sym__identifier_token] = ACTIONS(3638), + [anon_sym_alias] = ACTIONS(3638), + [anon_sym_global] = ACTIONS(3638), + [anon_sym_EQ] = ACTIONS(3638), + [anon_sym_LBRACK] = ACTIONS(3640), + [anon_sym_COLON] = ACTIONS(3901), + [anon_sym_COMMA] = ACTIONS(3640), + [anon_sym_LPAREN] = ACTIONS(3640), + [anon_sym_RBRACE] = ACTIONS(3640), + [anon_sym_file] = ACTIONS(3638), + [anon_sym_LT] = ACTIONS(3648), + [anon_sym_GT] = ACTIONS(3638), + [anon_sym_where] = ACTIONS(3638), + [anon_sym_QMARK] = ACTIONS(3638), + [anon_sym_notnull] = ACTIONS(3638), + [anon_sym_unmanaged] = ACTIONS(3638), + [anon_sym_BANG] = ACTIONS(3638), + [anon_sym_PLUS_PLUS] = ACTIONS(3640), + [anon_sym_DASH_DASH] = ACTIONS(3640), + [anon_sym_PLUS] = ACTIONS(3638), + [anon_sym_DASH] = ACTIONS(3638), + [anon_sym_STAR] = ACTIONS(3638), + [anon_sym_SLASH] = ACTIONS(3638), + [anon_sym_PERCENT] = ACTIONS(3638), + [anon_sym_CARET] = ACTIONS(3638), + [anon_sym_PIPE] = ACTIONS(3638), + [anon_sym_AMP] = ACTIONS(3638), + [anon_sym_LT_LT] = ACTIONS(3638), + [anon_sym_GT_GT] = ACTIONS(3638), + [anon_sym_GT_GT_GT] = ACTIONS(3638), + [anon_sym_EQ_EQ] = ACTIONS(3640), + [anon_sym_BANG_EQ] = ACTIONS(3640), + [anon_sym_GT_EQ] = ACTIONS(3640), + [anon_sym_LT_EQ] = ACTIONS(3640), + [anon_sym_DOT] = ACTIONS(3638), + [anon_sym_scoped] = ACTIONS(3638), + [anon_sym_EQ_GT] = ACTIONS(3651), + [anon_sym_COLON_COLON] = ACTIONS(3653), + [anon_sym_var] = ACTIONS(3638), + [anon_sym_yield] = ACTIONS(3638), + [anon_sym_switch] = ACTIONS(3638), + [anon_sym_when] = ACTIONS(3638), + [anon_sym_DOT_DOT] = ACTIONS(3640), + [anon_sym_PLUS_EQ] = ACTIONS(3640), + [anon_sym_DASH_EQ] = ACTIONS(3640), + [anon_sym_STAR_EQ] = ACTIONS(3640), + [anon_sym_SLASH_EQ] = ACTIONS(3640), + [anon_sym_PERCENT_EQ] = ACTIONS(3640), + [anon_sym_AMP_EQ] = ACTIONS(3640), + [anon_sym_CARET_EQ] = ACTIONS(3640), + [anon_sym_PIPE_EQ] = ACTIONS(3640), + [anon_sym_LT_LT_EQ] = ACTIONS(3640), + [anon_sym_GT_GT_EQ] = ACTIONS(3640), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3640), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3640), + [anon_sym_AMP_AMP] = ACTIONS(3640), + [anon_sym_PIPE_PIPE] = ACTIONS(3640), + [anon_sym_QMARK_QMARK] = ACTIONS(3638), + [anon_sym_from] = ACTIONS(3638), + [anon_sym_into] = ACTIONS(3638), + [anon_sym_join] = ACTIONS(3638), + [anon_sym_on] = ACTIONS(3638), + [anon_sym_equals] = ACTIONS(3638), + [anon_sym_let] = ACTIONS(3638), + [anon_sym_orderby] = ACTIONS(3638), + [anon_sym_ascending] = ACTIONS(3638), + [anon_sym_descending] = ACTIONS(3638), + [anon_sym_group] = ACTIONS(3638), + [anon_sym_by] = ACTIONS(3638), + [anon_sym_select] = ACTIONS(3638), + [anon_sym_as] = ACTIONS(3638), + [anon_sym_is] = ACTIONS(3638), + [anon_sym_DASH_GT] = ACTIONS(3640), + [anon_sym_with] = ACTIONS(3638), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), }, [2270] = { [sym_preproc_region] = STATE(2270), @@ -407185,99 +406897,93 @@ 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(3679), - [anon_sym_alias] = ACTIONS(3679), - [anon_sym_global] = ACTIONS(3679), - [anon_sym_EQ] = ACTIONS(3679), - [anon_sym_LBRACK] = ACTIONS(3681), - [anon_sym_COLON] = ACTIONS(3681), - [anon_sym_COMMA] = ACTIONS(3681), - [anon_sym_LPAREN] = ACTIONS(3681), - [anon_sym_LBRACE] = ACTIONS(3681), - [anon_sym_file] = ACTIONS(3679), - [anon_sym_LT] = ACTIONS(3679), - [anon_sym_GT] = ACTIONS(3679), - [anon_sym_where] = ACTIONS(3679), - [anon_sym_QMARK] = ACTIONS(3679), - [anon_sym_notnull] = ACTIONS(3679), - [anon_sym_unmanaged] = ACTIONS(3679), - [anon_sym_BANG] = ACTIONS(3679), - [anon_sym_PLUS_PLUS] = ACTIONS(3681), - [anon_sym_DASH_DASH] = ACTIONS(3681), - [anon_sym_PLUS] = ACTIONS(3679), - [anon_sym_DASH] = ACTIONS(3679), - [anon_sym_STAR] = ACTIONS(3679), - [anon_sym_SLASH] = ACTIONS(3679), - [anon_sym_PERCENT] = ACTIONS(3679), - [anon_sym_CARET] = ACTIONS(3679), - [anon_sym_PIPE] = ACTIONS(3679), - [anon_sym_AMP] = ACTIONS(3679), - [anon_sym_LT_LT] = ACTIONS(3679), - [anon_sym_GT_GT] = ACTIONS(3679), - [anon_sym_GT_GT_GT] = ACTIONS(3679), - [anon_sym_EQ_EQ] = ACTIONS(3681), - [anon_sym_BANG_EQ] = ACTIONS(3681), - [anon_sym_GT_EQ] = ACTIONS(3681), - [anon_sym_LT_EQ] = ACTIONS(3681), - [anon_sym_DOT] = ACTIONS(3679), - [anon_sym_scoped] = ACTIONS(3679), - [anon_sym_var] = ACTIONS(3679), - [anon_sym_yield] = ACTIONS(3679), - [anon_sym_switch] = ACTIONS(3679), - [anon_sym_when] = ACTIONS(3679), - [sym_discard] = ACTIONS(3679), - [anon_sym_DOT_DOT] = ACTIONS(3681), - [anon_sym_and] = ACTIONS(3679), - [anon_sym_or] = ACTIONS(3679), - [anon_sym_PLUS_EQ] = ACTIONS(3681), - [anon_sym_DASH_EQ] = ACTIONS(3681), - [anon_sym_STAR_EQ] = ACTIONS(3681), - [anon_sym_SLASH_EQ] = ACTIONS(3681), - [anon_sym_PERCENT_EQ] = ACTIONS(3681), - [anon_sym_AMP_EQ] = ACTIONS(3681), - [anon_sym_CARET_EQ] = ACTIONS(3681), - [anon_sym_PIPE_EQ] = ACTIONS(3681), - [anon_sym_LT_LT_EQ] = ACTIONS(3681), - [anon_sym_GT_GT_EQ] = ACTIONS(3681), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3681), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3681), - [anon_sym_AMP_AMP] = ACTIONS(3681), - [anon_sym_PIPE_PIPE] = ACTIONS(3681), - [anon_sym_QMARK_QMARK] = ACTIONS(3679), - [anon_sym_from] = ACTIONS(3679), - [anon_sym_into] = ACTIONS(3679), - [anon_sym_join] = ACTIONS(3679), - [anon_sym_on] = ACTIONS(3679), - [anon_sym_equals] = ACTIONS(3679), - [anon_sym_let] = ACTIONS(3679), - [anon_sym_orderby] = ACTIONS(3679), - [anon_sym_ascending] = ACTIONS(3679), - [anon_sym_descending] = ACTIONS(3679), - [anon_sym_group] = ACTIONS(3679), - [anon_sym_by] = ACTIONS(3679), - [anon_sym_select] = ACTIONS(3679), - [anon_sym_as] = ACTIONS(3679), - [anon_sym_is] = ACTIONS(3679), - [anon_sym_DASH_GT] = ACTIONS(3681), - [anon_sym_with] = ACTIONS(3679), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_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(3681), + [sym__identifier_token] = ACTIONS(3691), + [anon_sym_alias] = ACTIONS(3691), + [anon_sym_global] = ACTIONS(3691), + [anon_sym_EQ] = ACTIONS(3696), + [anon_sym_LBRACK] = ACTIONS(3713), + [anon_sym_COLON] = ACTIONS(3698), + [anon_sym_LPAREN] = ACTIONS(3713), + [anon_sym_LBRACE] = ACTIONS(3702), + [anon_sym_file] = ACTIONS(3691), + [anon_sym_LT] = ACTIONS(3696), + [anon_sym_GT] = ACTIONS(3696), + [anon_sym_where] = ACTIONS(3691), + [anon_sym_QMARK] = ACTIONS(3716), + [anon_sym_notnull] = ACTIONS(3691), + [anon_sym_unmanaged] = ACTIONS(3691), + [anon_sym_BANG] = ACTIONS(3696), + [anon_sym_PLUS_PLUS] = ACTIONS(3711), + [anon_sym_DASH_DASH] = ACTIONS(3711), + [anon_sym_PLUS] = ACTIONS(3696), + [anon_sym_DASH] = ACTIONS(3696), + [anon_sym_STAR] = ACTIONS(3716), + [anon_sym_SLASH] = ACTIONS(3696), + [anon_sym_PERCENT] = ACTIONS(3696), + [anon_sym_CARET] = ACTIONS(3696), + [anon_sym_PIPE] = ACTIONS(3696), + [anon_sym_AMP] = ACTIONS(3696), + [anon_sym_LT_LT] = ACTIONS(3696), + [anon_sym_GT_GT] = ACTIONS(3696), + [anon_sym_GT_GT_GT] = ACTIONS(3696), + [anon_sym_EQ_EQ] = ACTIONS(3711), + [anon_sym_BANG_EQ] = ACTIONS(3711), + [anon_sym_GT_EQ] = ACTIONS(3711), + [anon_sym_LT_EQ] = ACTIONS(3711), + [anon_sym_DOT] = ACTIONS(3716), + [anon_sym_scoped] = ACTIONS(3691), + [anon_sym_EQ_GT] = ACTIONS(3693), + [anon_sym_var] = ACTIONS(3691), + [anon_sym_yield] = ACTIONS(3691), + [anon_sym_switch] = ACTIONS(3696), + [anon_sym_when] = ACTIONS(3708), + [sym_discard] = ACTIONS(3691), + [anon_sym_DOT_DOT] = ACTIONS(3711), + [anon_sym_and] = ACTIONS(3708), + [anon_sym_or] = ACTIONS(3708), + [anon_sym_PLUS_EQ] = ACTIONS(3711), + [anon_sym_DASH_EQ] = ACTIONS(3711), + [anon_sym_STAR_EQ] = ACTIONS(3711), + [anon_sym_SLASH_EQ] = ACTIONS(3711), + [anon_sym_PERCENT_EQ] = ACTIONS(3711), + [anon_sym_AMP_EQ] = ACTIONS(3711), + [anon_sym_CARET_EQ] = ACTIONS(3711), + [anon_sym_PIPE_EQ] = ACTIONS(3711), + [anon_sym_LT_LT_EQ] = ACTIONS(3711), + [anon_sym_GT_GT_EQ] = ACTIONS(3711), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3711), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3711), + [anon_sym_AMP_AMP] = ACTIONS(3711), + [anon_sym_PIPE_PIPE] = ACTIONS(3711), + [anon_sym_QMARK_QMARK] = ACTIONS(3696), + [anon_sym_from] = ACTIONS(3691), + [anon_sym_into] = ACTIONS(3691), + [anon_sym_join] = ACTIONS(3691), + [anon_sym_on] = ACTIONS(3691), + [anon_sym_equals] = ACTIONS(3691), + [anon_sym_let] = ACTIONS(3691), + [anon_sym_orderby] = ACTIONS(3691), + [anon_sym_ascending] = ACTIONS(3691), + [anon_sym_descending] = ACTIONS(3691), + [anon_sym_group] = ACTIONS(3691), + [anon_sym_by] = ACTIONS(3691), + [anon_sym_select] = ACTIONS(3691), + [anon_sym_as] = ACTIONS(3696), + [anon_sym_is] = ACTIONS(3696), + [anon_sym_DASH_GT] = ACTIONS(3713), + [anon_sym_with] = ACTIONS(3696), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), }, [2271] = { - [sym_property_pattern_clause] = STATE(2299), - [sym__variable_designation] = STATE(3341), - [sym_parenthesized_variable_designation] = STATE(3340), - [sym_identifier] = STATE(3345), - [sym__reserved_identifier] = STATE(3177), [sym_preproc_region] = STATE(2271), [sym_preproc_endregion] = STATE(2271), [sym_preproc_line] = STATE(2271), @@ -407287,77 +406993,81 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2271), [sym_preproc_define] = STATE(2271), [sym_preproc_undef] = STATE(2271), - [sym__identifier_token] = ACTIONS(3875), - [anon_sym_alias] = ACTIONS(3877), - [anon_sym_SEMI] = ACTIONS(3913), - [anon_sym_global] = ACTIONS(3877), - [anon_sym_LBRACK] = ACTIONS(3913), - [anon_sym_COLON] = ACTIONS(3913), - [anon_sym_COMMA] = ACTIONS(3913), - [anon_sym_RBRACK] = ACTIONS(3913), - [anon_sym_LPAREN] = ACTIONS(3913), - [anon_sym_RPAREN] = ACTIONS(3913), - [anon_sym_LBRACE] = ACTIONS(3881), - [anon_sym_RBRACE] = ACTIONS(3913), - [anon_sym_file] = ACTIONS(3877), - [anon_sym_LT] = ACTIONS(3915), - [anon_sym_GT] = ACTIONS(3915), - [anon_sym_in] = ACTIONS(3915), - [anon_sym_where] = ACTIONS(3877), - [anon_sym_QMARK] = ACTIONS(3915), - [anon_sym_notnull] = ACTIONS(3877), - [anon_sym_unmanaged] = ACTIONS(3877), - [anon_sym_BANG] = ACTIONS(3915), - [anon_sym_PLUS_PLUS] = ACTIONS(3913), - [anon_sym_DASH_DASH] = ACTIONS(3913), - [anon_sym_PLUS] = ACTIONS(3915), - [anon_sym_DASH] = ACTIONS(3915), - [anon_sym_STAR] = ACTIONS(3913), - [anon_sym_SLASH] = ACTIONS(3915), - [anon_sym_PERCENT] = ACTIONS(3913), - [anon_sym_CARET] = ACTIONS(3913), - [anon_sym_PIPE] = ACTIONS(3915), - [anon_sym_AMP] = ACTIONS(3915), - [anon_sym_LT_LT] = ACTIONS(3913), - [anon_sym_GT_GT] = ACTIONS(3915), - [anon_sym_GT_GT_GT] = ACTIONS(3913), - [anon_sym_EQ_EQ] = ACTIONS(3913), - [anon_sym_BANG_EQ] = ACTIONS(3913), - [anon_sym_GT_EQ] = ACTIONS(3913), - [anon_sym_LT_EQ] = ACTIONS(3913), - [anon_sym_DOT] = ACTIONS(3915), - [anon_sym_scoped] = ACTIONS(3877), - [anon_sym_EQ_GT] = ACTIONS(3913), - [anon_sym_var] = ACTIONS(3877), - [anon_sym_yield] = ACTIONS(3877), - [anon_sym_switch] = ACTIONS(3915), - [anon_sym_when] = ACTIONS(3877), - [sym_discard] = ACTIONS(3885), - [anon_sym_DOT_DOT] = ACTIONS(3913), - [anon_sym_and] = ACTIONS(3915), - [anon_sym_or] = ACTIONS(3915), - [anon_sym_AMP_AMP] = ACTIONS(3913), - [anon_sym_PIPE_PIPE] = ACTIONS(3913), - [anon_sym_QMARK_QMARK] = ACTIONS(3913), - [anon_sym_from] = ACTIONS(3877), - [anon_sym_into] = ACTIONS(3915), - [anon_sym_join] = ACTIONS(3877), - [anon_sym_on] = ACTIONS(3877), - [anon_sym_equals] = ACTIONS(3877), - [anon_sym_let] = ACTIONS(3877), - [anon_sym_orderby] = ACTIONS(3877), - [anon_sym_ascending] = ACTIONS(3877), - [anon_sym_descending] = ACTIONS(3877), - [anon_sym_group] = ACTIONS(3877), - [anon_sym_by] = ACTIONS(3877), - [anon_sym_select] = ACTIONS(3877), - [anon_sym_as] = ACTIONS(3915), - [anon_sym_is] = ACTIONS(3915), - [anon_sym_DASH_GT] = ACTIONS(3913), - [anon_sym_with] = ACTIONS(3915), - [aux_sym_preproc_if_token3] = ACTIONS(3913), - [aux_sym_preproc_else_token1] = ACTIONS(3913), - [aux_sym_preproc_elif_token1] = ACTIONS(3913), + [sym__identifier_token] = ACTIONS(3691), + [anon_sym_alias] = ACTIONS(3691), + [anon_sym_global] = ACTIONS(3691), + [anon_sym_EQ] = ACTIONS(3696), + [anon_sym_LBRACK] = ACTIONS(3698), + [anon_sym_COLON] = ACTIONS(3693), + [anon_sym_LPAREN] = ACTIONS(3698), + [anon_sym_LBRACE] = ACTIONS(3702), + [anon_sym_file] = ACTIONS(3691), + [anon_sym_LT] = ACTIONS(3704), + [anon_sym_GT] = ACTIONS(3704), + [anon_sym_where] = ACTIONS(3691), + [anon_sym_QMARK] = ACTIONS(3704), + [anon_sym_notnull] = ACTIONS(3691), + [anon_sym_unmanaged] = ACTIONS(3691), + [anon_sym_BANG] = ACTIONS(3704), + [anon_sym_PLUS_PLUS] = ACTIONS(3698), + [anon_sym_DASH_DASH] = ACTIONS(3698), + [anon_sym_PLUS] = ACTIONS(3704), + [anon_sym_DASH] = ACTIONS(3704), + [anon_sym_STAR] = ACTIONS(3704), + [anon_sym_SLASH] = ACTIONS(3704), + [anon_sym_PERCENT] = ACTIONS(3704), + [anon_sym_CARET] = ACTIONS(3704), + [anon_sym_PIPE] = ACTIONS(3704), + [anon_sym_AMP] = ACTIONS(3704), + [anon_sym_LT_LT] = ACTIONS(3704), + [anon_sym_GT_GT] = ACTIONS(3704), + [anon_sym_GT_GT_GT] = ACTIONS(3704), + [anon_sym_EQ_EQ] = ACTIONS(3698), + [anon_sym_BANG_EQ] = ACTIONS(3698), + [anon_sym_GT_EQ] = ACTIONS(3698), + [anon_sym_LT_EQ] = ACTIONS(3698), + [anon_sym_DOT] = ACTIONS(3704), + [anon_sym_scoped] = ACTIONS(3691), + [anon_sym_EQ_GT] = ACTIONS(3693), + [anon_sym_var] = ACTIONS(3691), + [anon_sym_yield] = ACTIONS(3691), + [anon_sym_switch] = ACTIONS(3704), + [anon_sym_when] = ACTIONS(3708), + [sym_discard] = ACTIONS(3691), + [anon_sym_DOT_DOT] = ACTIONS(3698), + [anon_sym_and] = ACTIONS(3708), + [anon_sym_or] = ACTIONS(3708), + [anon_sym_PLUS_EQ] = ACTIONS(3711), + [anon_sym_DASH_EQ] = ACTIONS(3711), + [anon_sym_STAR_EQ] = ACTIONS(3711), + [anon_sym_SLASH_EQ] = ACTIONS(3711), + [anon_sym_PERCENT_EQ] = ACTIONS(3711), + [anon_sym_AMP_EQ] = ACTIONS(3711), + [anon_sym_CARET_EQ] = ACTIONS(3711), + [anon_sym_PIPE_EQ] = ACTIONS(3711), + [anon_sym_LT_LT_EQ] = ACTIONS(3711), + [anon_sym_GT_GT_EQ] = ACTIONS(3711), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3711), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3711), + [anon_sym_AMP_AMP] = ACTIONS(3698), + [anon_sym_PIPE_PIPE] = ACTIONS(3698), + [anon_sym_QMARK_QMARK] = ACTIONS(3704), + [anon_sym_from] = ACTIONS(3691), + [anon_sym_into] = ACTIONS(3708), + [anon_sym_join] = ACTIONS(3691), + [anon_sym_on] = ACTIONS(3691), + [anon_sym_equals] = ACTIONS(3691), + [anon_sym_let] = ACTIONS(3691), + [anon_sym_orderby] = ACTIONS(3691), + [anon_sym_ascending] = ACTIONS(3691), + [anon_sym_descending] = ACTIONS(3691), + [anon_sym_group] = ACTIONS(3691), + [anon_sym_by] = ACTIONS(3691), + [anon_sym_select] = ACTIONS(3691), + [anon_sym_as] = ACTIONS(3704), + [anon_sym_is] = ACTIONS(3704), + [anon_sym_DASH_GT] = ACTIONS(3698), + [anon_sym_with] = ACTIONS(3704), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -407379,94 +407089,113 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2272), [sym_preproc_define] = STATE(2272), [sym_preproc_undef] = STATE(2272), - [sym__identifier_token] = ACTIONS(3675), - [anon_sym_alias] = ACTIONS(3675), - [anon_sym_global] = ACTIONS(3675), - [anon_sym_EQ] = ACTIONS(3675), - [anon_sym_LBRACK] = ACTIONS(3677), - [anon_sym_COLON] = ACTIONS(3677), - [anon_sym_COMMA] = ACTIONS(3677), - [anon_sym_LPAREN] = ACTIONS(3677), - [anon_sym_LBRACE] = ACTIONS(3677), - [anon_sym_file] = ACTIONS(3675), - [anon_sym_LT] = ACTIONS(3675), - [anon_sym_GT] = ACTIONS(3675), - [anon_sym_where] = ACTIONS(3675), - [anon_sym_QMARK] = ACTIONS(3675), - [anon_sym_notnull] = ACTIONS(3675), - [anon_sym_unmanaged] = ACTIONS(3675), - [anon_sym_BANG] = ACTIONS(3675), - [anon_sym_PLUS_PLUS] = ACTIONS(3677), - [anon_sym_DASH_DASH] = ACTIONS(3677), - [anon_sym_PLUS] = ACTIONS(3675), - [anon_sym_DASH] = ACTIONS(3675), - [anon_sym_STAR] = ACTIONS(3675), - [anon_sym_SLASH] = ACTIONS(3675), - [anon_sym_PERCENT] = ACTIONS(3675), - [anon_sym_CARET] = ACTIONS(3675), - [anon_sym_PIPE] = ACTIONS(3675), - [anon_sym_AMP] = ACTIONS(3675), - [anon_sym_LT_LT] = ACTIONS(3675), - [anon_sym_GT_GT] = ACTIONS(3675), - [anon_sym_GT_GT_GT] = ACTIONS(3675), - [anon_sym_EQ_EQ] = ACTIONS(3677), - [anon_sym_BANG_EQ] = ACTIONS(3677), - [anon_sym_GT_EQ] = ACTIONS(3677), - [anon_sym_LT_EQ] = ACTIONS(3677), - [anon_sym_DOT] = ACTIONS(3675), - [anon_sym_scoped] = ACTIONS(3675), - [anon_sym_var] = ACTIONS(3675), - [anon_sym_yield] = ACTIONS(3675), - [anon_sym_switch] = ACTIONS(3675), - [anon_sym_when] = ACTIONS(3675), - [sym_discard] = ACTIONS(3675), - [anon_sym_DOT_DOT] = ACTIONS(3677), - [anon_sym_and] = ACTIONS(3675), - [anon_sym_or] = ACTIONS(3675), - [anon_sym_PLUS_EQ] = ACTIONS(3677), - [anon_sym_DASH_EQ] = ACTIONS(3677), - [anon_sym_STAR_EQ] = ACTIONS(3677), - [anon_sym_SLASH_EQ] = ACTIONS(3677), - [anon_sym_PERCENT_EQ] = ACTIONS(3677), - [anon_sym_AMP_EQ] = ACTIONS(3677), - [anon_sym_CARET_EQ] = ACTIONS(3677), - [anon_sym_PIPE_EQ] = ACTIONS(3677), - [anon_sym_LT_LT_EQ] = ACTIONS(3677), - [anon_sym_GT_GT_EQ] = ACTIONS(3677), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3677), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3677), - [anon_sym_AMP_AMP] = ACTIONS(3677), - [anon_sym_PIPE_PIPE] = ACTIONS(3677), - [anon_sym_QMARK_QMARK] = ACTIONS(3675), - [anon_sym_from] = ACTIONS(3675), - [anon_sym_into] = ACTIONS(3675), - [anon_sym_join] = ACTIONS(3675), - [anon_sym_on] = ACTIONS(3675), - [anon_sym_equals] = ACTIONS(3675), - [anon_sym_let] = ACTIONS(3675), - [anon_sym_orderby] = ACTIONS(3675), - [anon_sym_ascending] = ACTIONS(3675), - [anon_sym_descending] = ACTIONS(3675), - [anon_sym_group] = ACTIONS(3675), - [anon_sym_by] = ACTIONS(3675), - [anon_sym_select] = ACTIONS(3675), - [anon_sym_as] = ACTIONS(3675), - [anon_sym_is] = ACTIONS(3675), - [anon_sym_DASH_GT] = ACTIONS(3677), - [anon_sym_with] = ACTIONS(3675), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_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(3677), + [sym__identifier_token] = ACTIONS(3603), + [anon_sym_alias] = ACTIONS(3603), + [anon_sym_global] = ACTIONS(3603), + [anon_sym_EQ] = ACTIONS(3431), + [anon_sym_LBRACK] = ACTIONS(3429), + [anon_sym_LPAREN] = ACTIONS(3600), + [anon_sym_LBRACE] = ACTIONS(3600), + [anon_sym_file] = ACTIONS(3603), + [anon_sym_LT] = ACTIONS(3431), + [anon_sym_GT] = ACTIONS(3431), + [anon_sym_where] = ACTIONS(3603), + [anon_sym_QMARK] = ACTIONS(3431), + [anon_sym_notnull] = ACTIONS(3603), + [anon_sym_unmanaged] = ACTIONS(3603), + [anon_sym_BANG] = ACTIONS(3431), + [anon_sym_PLUS_PLUS] = ACTIONS(3429), + [anon_sym_DASH_DASH] = ACTIONS(3429), + [anon_sym_PLUS] = ACTIONS(3431), + [anon_sym_DASH] = ACTIONS(3431), + [anon_sym_STAR] = ACTIONS(3431), + [anon_sym_SLASH] = ACTIONS(3431), + [anon_sym_PERCENT] = ACTIONS(3431), + [anon_sym_CARET] = ACTIONS(3431), + [anon_sym_PIPE] = ACTIONS(3431), + [anon_sym_AMP] = ACTIONS(3431), + [anon_sym_LT_LT] = ACTIONS(3431), + [anon_sym_GT_GT] = ACTIONS(3431), + [anon_sym_GT_GT_GT] = ACTIONS(3431), + [anon_sym_EQ_EQ] = ACTIONS(3429), + [anon_sym_BANG_EQ] = ACTIONS(3429), + [anon_sym_GT_EQ] = ACTIONS(3429), + [anon_sym_LT_EQ] = ACTIONS(3429), + [anon_sym_DOT] = ACTIONS(3431), + [anon_sym_scoped] = ACTIONS(3603), + [anon_sym_EQ_GT] = ACTIONS(3600), + [anon_sym_COLON_COLON] = ACTIONS(3429), + [anon_sym_var] = ACTIONS(3603), + [anon_sym_yield] = ACTIONS(3603), + [anon_sym_switch] = ACTIONS(3431), + [anon_sym_when] = ACTIONS(3603), + [sym_discard] = ACTIONS(3603), + [anon_sym_DOT_DOT] = ACTIONS(3429), + [anon_sym_and] = ACTIONS(3603), + [anon_sym_or] = ACTIONS(3603), + [anon_sym_PLUS_EQ] = ACTIONS(3429), + [anon_sym_DASH_EQ] = ACTIONS(3429), + [anon_sym_STAR_EQ] = ACTIONS(3429), + [anon_sym_SLASH_EQ] = ACTIONS(3429), + [anon_sym_PERCENT_EQ] = ACTIONS(3429), + [anon_sym_AMP_EQ] = ACTIONS(3429), + [anon_sym_CARET_EQ] = ACTIONS(3429), + [anon_sym_PIPE_EQ] = ACTIONS(3429), + [anon_sym_LT_LT_EQ] = ACTIONS(3429), + [anon_sym_GT_GT_EQ] = ACTIONS(3429), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3429), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3429), + [anon_sym_AMP_AMP] = ACTIONS(3429), + [anon_sym_PIPE_PIPE] = ACTIONS(3429), + [anon_sym_QMARK_QMARK] = ACTIONS(3431), + [anon_sym_from] = ACTIONS(3603), + [anon_sym_into] = ACTIONS(3603), + [anon_sym_join] = ACTIONS(3603), + [anon_sym_on] = ACTIONS(3603), + [anon_sym_equals] = ACTIONS(3603), + [anon_sym_let] = ACTIONS(3603), + [anon_sym_orderby] = ACTIONS(3603), + [anon_sym_ascending] = ACTIONS(3603), + [anon_sym_descending] = ACTIONS(3603), + [anon_sym_group] = ACTIONS(3603), + [anon_sym_by] = ACTIONS(3603), + [anon_sym_select] = ACTIONS(3603), + [anon_sym_as] = ACTIONS(3431), + [anon_sym_is] = ACTIONS(3431), + [anon_sym_DASH_GT] = ACTIONS(3429), + [anon_sym_with] = ACTIONS(3431), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_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_modifier] = STATE(3114), + [sym_variable_declaration] = STATE(7465), + [sym__name] = STATE(4369), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(4068), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(4073), + [sym_type] = STATE(5439), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_identifier] = STATE(5717), + [sym__reserved_identifier] = STATE(3654), [sym_preproc_region] = STATE(2273), [sym_preproc_endregion] = STATE(2273), [sym_preproc_line] = STATE(2273), @@ -407476,81 +407205,61 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2273), [sym_preproc_define] = STATE(2273), [sym_preproc_undef] = STATE(2273), - [sym__identifier_token] = ACTIONS(3671), - [anon_sym_alias] = ACTIONS(3671), - [anon_sym_global] = ACTIONS(3671), - [anon_sym_EQ] = ACTIONS(3671), - [anon_sym_LBRACK] = ACTIONS(3673), - [anon_sym_COLON] = ACTIONS(3673), - [anon_sym_COMMA] = ACTIONS(3673), - [anon_sym_LPAREN] = ACTIONS(3673), - [anon_sym_LBRACE] = ACTIONS(3673), - [anon_sym_file] = ACTIONS(3671), - [anon_sym_LT] = ACTIONS(3671), - [anon_sym_GT] = ACTIONS(3671), - [anon_sym_where] = ACTIONS(3671), - [anon_sym_QMARK] = ACTIONS(3671), - [anon_sym_notnull] = ACTIONS(3671), - [anon_sym_unmanaged] = ACTIONS(3671), - [anon_sym_BANG] = ACTIONS(3671), - [anon_sym_PLUS_PLUS] = ACTIONS(3673), - [anon_sym_DASH_DASH] = ACTIONS(3673), - [anon_sym_PLUS] = ACTIONS(3671), - [anon_sym_DASH] = ACTIONS(3671), - [anon_sym_STAR] = ACTIONS(3671), - [anon_sym_SLASH] = ACTIONS(3671), - [anon_sym_PERCENT] = ACTIONS(3671), - [anon_sym_CARET] = ACTIONS(3671), - [anon_sym_PIPE] = ACTIONS(3671), - [anon_sym_AMP] = ACTIONS(3671), - [anon_sym_LT_LT] = ACTIONS(3671), - [anon_sym_GT_GT] = ACTIONS(3671), - [anon_sym_GT_GT_GT] = ACTIONS(3671), - [anon_sym_EQ_EQ] = ACTIONS(3673), - [anon_sym_BANG_EQ] = ACTIONS(3673), - [anon_sym_GT_EQ] = ACTIONS(3673), - [anon_sym_LT_EQ] = ACTIONS(3673), - [anon_sym_DOT] = ACTIONS(3671), - [anon_sym_scoped] = ACTIONS(3671), - [anon_sym_var] = ACTIONS(3671), - [anon_sym_yield] = ACTIONS(3671), - [anon_sym_switch] = ACTIONS(3671), - [anon_sym_when] = ACTIONS(3671), - [sym_discard] = ACTIONS(3671), - [anon_sym_DOT_DOT] = ACTIONS(3673), - [anon_sym_and] = ACTIONS(3671), - [anon_sym_or] = ACTIONS(3671), - [anon_sym_PLUS_EQ] = ACTIONS(3673), - [anon_sym_DASH_EQ] = ACTIONS(3673), - [anon_sym_STAR_EQ] = ACTIONS(3673), - [anon_sym_SLASH_EQ] = ACTIONS(3673), - [anon_sym_PERCENT_EQ] = ACTIONS(3673), - [anon_sym_AMP_EQ] = ACTIONS(3673), - [anon_sym_CARET_EQ] = ACTIONS(3673), - [anon_sym_PIPE_EQ] = ACTIONS(3673), - [anon_sym_LT_LT_EQ] = ACTIONS(3673), - [anon_sym_GT_GT_EQ] = ACTIONS(3673), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3673), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3673), - [anon_sym_AMP_AMP] = ACTIONS(3673), - [anon_sym_PIPE_PIPE] = ACTIONS(3673), - [anon_sym_QMARK_QMARK] = ACTIONS(3671), - [anon_sym_from] = ACTIONS(3671), - [anon_sym_into] = ACTIONS(3671), - [anon_sym_join] = ACTIONS(3671), - [anon_sym_on] = ACTIONS(3671), - [anon_sym_equals] = ACTIONS(3671), - [anon_sym_let] = ACTIONS(3671), - [anon_sym_orderby] = ACTIONS(3671), - [anon_sym_ascending] = ACTIONS(3671), - [anon_sym_descending] = ACTIONS(3671), - [anon_sym_group] = ACTIONS(3671), - [anon_sym_by] = ACTIONS(3671), - [anon_sym_select] = ACTIONS(3671), - [anon_sym_as] = ACTIONS(3671), - [anon_sym_is] = ACTIONS(3671), - [anon_sym_DASH_GT] = ACTIONS(3673), - [anon_sym_with] = ACTIONS(3671), + [aux_sym__class_declaration_initializer_repeat2] = STATE(3065), + [sym__identifier_token] = ACTIONS(2965), + [anon_sym_extern] = ACTIONS(65), + [anon_sym_alias] = ACTIONS(2969), + [anon_sym_global] = ACTIONS(2969), + [anon_sym_unsafe] = ACTIONS(65), + [anon_sym_static] = ACTIONS(65), + [anon_sym_LPAREN] = ACTIONS(2977), + [anon_sym_event] = ACTIONS(3737), + [anon_sym_class] = ACTIONS(3739), + [anon_sym_ref] = ACTIONS(3741), + [anon_sym_struct] = ACTIONS(2823), + [anon_sym_enum] = ACTIONS(3743), + [anon_sym_interface] = ACTIONS(3745), + [anon_sym_delegate] = ACTIONS(3747), + [anon_sym_record] = ACTIONS(3749), + [anon_sym_abstract] = ACTIONS(65), + [anon_sym_async] = ACTIONS(65), + [anon_sym_const] = ACTIONS(65), + [anon_sym_file] = ACTIONS(2987), + [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(2969), + [anon_sym_notnull] = ACTIONS(2969), + [anon_sym_unmanaged] = ACTIONS(2969), + [anon_sym_implicit] = ACTIONS(3753), + [anon_sym_explicit] = ACTIONS(3753), + [anon_sym_scoped] = ACTIONS(2993), + [anon_sym_var] = ACTIONS(2995), + [sym_predefined_type] = ACTIONS(2997), + [anon_sym_yield] = ACTIONS(2969), + [anon_sym_when] = ACTIONS(2969), + [anon_sym_from] = ACTIONS(2969), + [anon_sym_into] = ACTIONS(2969), + [anon_sym_join] = ACTIONS(2969), + [anon_sym_on] = ACTIONS(2969), + [anon_sym_equals] = ACTIONS(2969), + [anon_sym_let] = ACTIONS(2969), + [anon_sym_orderby] = ACTIONS(2969), + [anon_sym_ascending] = ACTIONS(2969), + [anon_sym_descending] = ACTIONS(2969), + [anon_sym_group] = ACTIONS(2969), + [anon_sym_by] = ACTIONS(2969), + [anon_sym_select] = ACTIONS(2969), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -407561,7 +407270,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(3673), }, [2274] = { [sym_preproc_region] = STATE(2274), @@ -407573,179 +407281,81 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2274), [sym_preproc_define] = STATE(2274), [sym_preproc_undef] = STATE(2274), - [sym__identifier_token] = ACTIONS(3654), - [anon_sym_alias] = ACTIONS(3654), - [anon_sym_global] = ACTIONS(3654), - [anon_sym_EQ] = ACTIONS(3654), - [anon_sym_LBRACK] = ACTIONS(3656), - [anon_sym_COLON] = ACTIONS(3656), - [anon_sym_COMMA] = ACTIONS(3656), - [anon_sym_LPAREN] = ACTIONS(3656), - [anon_sym_LBRACE] = ACTIONS(3656), - [anon_sym_file] = ACTIONS(3654), - [anon_sym_LT] = ACTIONS(3654), - [anon_sym_GT] = ACTIONS(3654), - [anon_sym_where] = ACTIONS(3654), - [anon_sym_QMARK] = ACTIONS(3654), - [anon_sym_notnull] = ACTIONS(3654), - [anon_sym_unmanaged] = ACTIONS(3654), - [anon_sym_BANG] = ACTIONS(3654), - [anon_sym_PLUS_PLUS] = ACTIONS(3656), - [anon_sym_DASH_DASH] = ACTIONS(3656), - [anon_sym_PLUS] = ACTIONS(3654), - [anon_sym_DASH] = ACTIONS(3654), - [anon_sym_STAR] = ACTIONS(3654), - [anon_sym_SLASH] = ACTIONS(3654), - [anon_sym_PERCENT] = ACTIONS(3654), - [anon_sym_CARET] = ACTIONS(3654), - [anon_sym_PIPE] = ACTIONS(3654), - [anon_sym_AMP] = ACTIONS(3654), - [anon_sym_LT_LT] = ACTIONS(3654), - [anon_sym_GT_GT] = ACTIONS(3654), - [anon_sym_GT_GT_GT] = ACTIONS(3654), - [anon_sym_EQ_EQ] = ACTIONS(3656), - [anon_sym_BANG_EQ] = ACTIONS(3656), - [anon_sym_GT_EQ] = ACTIONS(3656), - [anon_sym_LT_EQ] = ACTIONS(3656), - [anon_sym_DOT] = ACTIONS(3654), - [anon_sym_scoped] = ACTIONS(3654), - [anon_sym_var] = ACTIONS(3654), - [anon_sym_yield] = ACTIONS(3654), - [anon_sym_switch] = ACTIONS(3654), - [anon_sym_when] = ACTIONS(3654), - [sym_discard] = ACTIONS(3654), - [anon_sym_DOT_DOT] = ACTIONS(3656), - [anon_sym_and] = ACTIONS(3654), - [anon_sym_or] = ACTIONS(3654), - [anon_sym_PLUS_EQ] = ACTIONS(3656), - [anon_sym_DASH_EQ] = ACTIONS(3656), - [anon_sym_STAR_EQ] = ACTIONS(3656), - [anon_sym_SLASH_EQ] = ACTIONS(3656), - [anon_sym_PERCENT_EQ] = ACTIONS(3656), - [anon_sym_AMP_EQ] = ACTIONS(3656), - [anon_sym_CARET_EQ] = ACTIONS(3656), - [anon_sym_PIPE_EQ] = ACTIONS(3656), - [anon_sym_LT_LT_EQ] = ACTIONS(3656), - [anon_sym_GT_GT_EQ] = ACTIONS(3656), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3656), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3656), - [anon_sym_AMP_AMP] = ACTIONS(3656), - [anon_sym_PIPE_PIPE] = ACTIONS(3656), - [anon_sym_QMARK_QMARK] = ACTIONS(3654), - [anon_sym_from] = ACTIONS(3654), - [anon_sym_into] = ACTIONS(3654), - [anon_sym_join] = ACTIONS(3654), - [anon_sym_on] = ACTIONS(3654), - [anon_sym_equals] = ACTIONS(3654), - [anon_sym_let] = ACTIONS(3654), - [anon_sym_orderby] = ACTIONS(3654), - [anon_sym_ascending] = ACTIONS(3654), - [anon_sym_descending] = ACTIONS(3654), - [anon_sym_group] = ACTIONS(3654), - [anon_sym_by] = ACTIONS(3654), - [anon_sym_select] = ACTIONS(3654), - [anon_sym_as] = ACTIONS(3654), - [anon_sym_is] = ACTIONS(3654), - [anon_sym_DASH_GT] = ACTIONS(3656), - [anon_sym_with] = ACTIONS(3654), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_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(3656), - }, - [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(3447), - [anon_sym_alias] = ACTIONS(3447), - [anon_sym_global] = ACTIONS(3447), - [anon_sym_EQ] = ACTIONS(3447), - [anon_sym_LBRACK] = ACTIONS(3445), - [anon_sym_COLON] = ACTIONS(3447), - [anon_sym_COMMA] = ACTIONS(3445), - [anon_sym_LPAREN] = ACTIONS(3445), - [anon_sym_return] = ACTIONS(3917), - [anon_sym_RBRACE] = ACTIONS(3445), - [anon_sym_file] = ACTIONS(3447), - [anon_sym_LT] = ACTIONS(3447), - [anon_sym_GT] = ACTIONS(3447), - [anon_sym_where] = ACTIONS(3447), - [anon_sym_QMARK] = ACTIONS(3447), - [anon_sym_notnull] = ACTIONS(3447), - [anon_sym_unmanaged] = ACTIONS(3447), - [anon_sym_BANG] = ACTIONS(3447), - [anon_sym_PLUS_PLUS] = ACTIONS(3445), - [anon_sym_DASH_DASH] = ACTIONS(3445), - [anon_sym_PLUS] = ACTIONS(3447), - [anon_sym_DASH] = ACTIONS(3447), - [anon_sym_STAR] = ACTIONS(3447), - [anon_sym_SLASH] = ACTIONS(3447), - [anon_sym_PERCENT] = ACTIONS(3447), - [anon_sym_CARET] = ACTIONS(3447), - [anon_sym_PIPE] = ACTIONS(3447), - [anon_sym_AMP] = ACTIONS(3447), - [anon_sym_LT_LT] = ACTIONS(3447), - [anon_sym_GT_GT] = ACTIONS(3447), - [anon_sym_GT_GT_GT] = ACTIONS(3447), - [anon_sym_EQ_EQ] = ACTIONS(3445), - [anon_sym_BANG_EQ] = ACTIONS(3445), - [anon_sym_GT_EQ] = ACTIONS(3445), - [anon_sym_LT_EQ] = ACTIONS(3445), - [anon_sym_DOT] = ACTIONS(3447), - [anon_sym_scoped] = ACTIONS(3447), - [anon_sym_EQ_GT] = ACTIONS(3445), - [anon_sym_COLON_COLON] = ACTIONS(3445), - [anon_sym_var] = ACTIONS(3447), - [anon_sym_break] = ACTIONS(3919), - [anon_sym_yield] = ACTIONS(3447), - [anon_sym_switch] = ACTIONS(3447), - [anon_sym_when] = ACTIONS(3447), - [anon_sym_DOT_DOT] = ACTIONS(3445), - [anon_sym_PLUS_EQ] = ACTIONS(3445), - [anon_sym_DASH_EQ] = ACTIONS(3445), - [anon_sym_STAR_EQ] = ACTIONS(3445), - [anon_sym_SLASH_EQ] = ACTIONS(3445), - [anon_sym_PERCENT_EQ] = ACTIONS(3445), - [anon_sym_AMP_EQ] = ACTIONS(3445), - [anon_sym_CARET_EQ] = ACTIONS(3445), - [anon_sym_PIPE_EQ] = ACTIONS(3445), - [anon_sym_LT_LT_EQ] = ACTIONS(3445), - [anon_sym_GT_GT_EQ] = ACTIONS(3445), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3445), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3445), - [anon_sym_AMP_AMP] = ACTIONS(3445), - [anon_sym_PIPE_PIPE] = ACTIONS(3445), - [anon_sym_QMARK_QMARK] = ACTIONS(3447), - [anon_sym_from] = ACTIONS(3447), - [anon_sym_into] = ACTIONS(3447), - [anon_sym_join] = ACTIONS(3447), - [anon_sym_on] = ACTIONS(3447), - [anon_sym_equals] = ACTIONS(3447), - [anon_sym_let] = ACTIONS(3447), - [anon_sym_orderby] = ACTIONS(3447), - [anon_sym_ascending] = ACTIONS(3447), - [anon_sym_descending] = ACTIONS(3447), - [anon_sym_group] = ACTIONS(3447), - [anon_sym_by] = ACTIONS(3447), - [anon_sym_select] = ACTIONS(3447), - [anon_sym_as] = ACTIONS(3447), - [anon_sym_is] = ACTIONS(3447), - [anon_sym_DASH_GT] = ACTIONS(3445), - [anon_sym_with] = ACTIONS(3447), + [sym__identifier_token] = ACTIONS(3669), + [anon_sym_alias] = ACTIONS(3669), + [anon_sym_global] = ACTIONS(3669), + [anon_sym_EQ] = ACTIONS(3673), + [anon_sym_LBRACK] = ACTIONS(3675), + [anon_sym_COLON] = ACTIONS(3675), + [anon_sym_LPAREN] = ACTIONS(3675), + [anon_sym_LBRACE] = ACTIONS(3678), + [anon_sym_file] = ACTIONS(3669), + [anon_sym_LT] = ACTIONS(3680), + [anon_sym_GT] = ACTIONS(3680), + [anon_sym_where] = ACTIONS(3669), + [anon_sym_QMARK] = ACTIONS(3680), + [anon_sym_notnull] = ACTIONS(3669), + [anon_sym_unmanaged] = ACTIONS(3669), + [anon_sym_BANG] = ACTIONS(3680), + [anon_sym_PLUS_PLUS] = ACTIONS(3675), + [anon_sym_DASH_DASH] = ACTIONS(3675), + [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(3675), + [anon_sym_BANG_EQ] = ACTIONS(3675), + [anon_sym_GT_EQ] = ACTIONS(3675), + [anon_sym_LT_EQ] = ACTIONS(3675), + [anon_sym_DOT] = ACTIONS(3680), + [anon_sym_scoped] = ACTIONS(3669), + [anon_sym_EQ_GT] = ACTIONS(3675), + [anon_sym_var] = ACTIONS(3669), + [anon_sym_yield] = ACTIONS(3669), + [anon_sym_switch] = ACTIONS(3680), + [anon_sym_when] = ACTIONS(3680), + [sym_discard] = ACTIONS(3669), + [anon_sym_DOT_DOT] = ACTIONS(3675), + [anon_sym_and] = ACTIONS(3680), + [anon_sym_or] = ACTIONS(3680), + [anon_sym_PLUS_EQ] = ACTIONS(3671), + [anon_sym_DASH_EQ] = ACTIONS(3671), + [anon_sym_STAR_EQ] = ACTIONS(3671), + [anon_sym_SLASH_EQ] = ACTIONS(3671), + [anon_sym_PERCENT_EQ] = ACTIONS(3671), + [anon_sym_AMP_EQ] = ACTIONS(3671), + [anon_sym_CARET_EQ] = ACTIONS(3671), + [anon_sym_PIPE_EQ] = ACTIONS(3671), + [anon_sym_LT_LT_EQ] = ACTIONS(3671), + [anon_sym_GT_GT_EQ] = ACTIONS(3671), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3671), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3671), + [anon_sym_AMP_AMP] = ACTIONS(3675), + [anon_sym_PIPE_PIPE] = ACTIONS(3675), + [anon_sym_QMARK_QMARK] = ACTIONS(3680), + [anon_sym_from] = ACTIONS(3669), + [anon_sym_into] = ACTIONS(3669), + [anon_sym_join] = ACTIONS(3669), + [anon_sym_on] = ACTIONS(3669), + [anon_sym_equals] = ACTIONS(3669), + [anon_sym_let] = ACTIONS(3669), + [anon_sym_orderby] = ACTIONS(3669), + [anon_sym_ascending] = ACTIONS(3669), + [anon_sym_descending] = ACTIONS(3669), + [anon_sym_group] = ACTIONS(3669), + [anon_sym_by] = ACTIONS(3669), + [anon_sym_select] = ACTIONS(3669), + [anon_sym_as] = ACTIONS(3680), + [anon_sym_is] = ACTIONS(3680), + [anon_sym_DASH_GT] = ACTIONS(3675), + [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), @@ -407757,92 +407367,188 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), }, - [2276] = { - [sym_property_pattern_clause] = STATE(2334), - [sym__variable_designation] = STATE(3495), - [sym_parenthesized_variable_designation] = STATE(3463), - [sym_identifier] = STATE(3479), - [sym__reserved_identifier] = STATE(3177), - [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(3875), - [anon_sym_alias] = ACTIONS(3877), - [anon_sym_SEMI] = ACTIONS(3905), - [anon_sym_global] = ACTIONS(3877), - [anon_sym_LBRACK] = ACTIONS(3905), - [anon_sym_COLON] = ACTIONS(3905), - [anon_sym_COMMA] = ACTIONS(3905), - [anon_sym_RBRACK] = ACTIONS(3905), - [anon_sym_LPAREN] = ACTIONS(3905), - [anon_sym_RPAREN] = ACTIONS(3905), - [anon_sym_LBRACE] = ACTIONS(3881), - [anon_sym_RBRACE] = ACTIONS(3905), - [anon_sym_file] = ACTIONS(3877), - [anon_sym_LT] = ACTIONS(3907), - [anon_sym_GT] = ACTIONS(3907), - [anon_sym_where] = ACTIONS(3877), - [anon_sym_QMARK] = ACTIONS(3907), - [anon_sym_notnull] = ACTIONS(3877), - [anon_sym_unmanaged] = ACTIONS(3877), - [anon_sym_BANG] = ACTIONS(3907), - [anon_sym_PLUS_PLUS] = ACTIONS(3905), - [anon_sym_DASH_DASH] = ACTIONS(3905), - [anon_sym_PLUS] = ACTIONS(3907), - [anon_sym_DASH] = ACTIONS(3907), - [anon_sym_STAR] = ACTIONS(3905), - [anon_sym_SLASH] = ACTIONS(3907), - [anon_sym_PERCENT] = ACTIONS(3905), - [anon_sym_CARET] = ACTIONS(3905), - [anon_sym_PIPE] = ACTIONS(3907), - [anon_sym_AMP] = ACTIONS(3907), - [anon_sym_LT_LT] = ACTIONS(3905), - [anon_sym_GT_GT] = ACTIONS(3907), - [anon_sym_GT_GT_GT] = ACTIONS(3905), - [anon_sym_EQ_EQ] = ACTIONS(3905), - [anon_sym_BANG_EQ] = ACTIONS(3905), - [anon_sym_GT_EQ] = ACTIONS(3905), - [anon_sym_LT_EQ] = ACTIONS(3905), - [anon_sym_DOT] = ACTIONS(3907), - [anon_sym_scoped] = ACTIONS(3877), - [anon_sym_EQ_GT] = ACTIONS(3905), - [anon_sym_var] = ACTIONS(3877), - [anon_sym_yield] = ACTIONS(3877), - [anon_sym_switch] = ACTIONS(3907), - [anon_sym_when] = ACTIONS(3877), - [sym_discard] = ACTIONS(3897), - [anon_sym_DOT_DOT] = ACTIONS(3905), - [anon_sym_and] = ACTIONS(3907), - [anon_sym_or] = ACTIONS(3907), - [anon_sym_AMP_AMP] = ACTIONS(3905), - [anon_sym_PIPE_PIPE] = ACTIONS(3905), - [anon_sym_QMARK_QMARK] = ACTIONS(3905), - [anon_sym_from] = ACTIONS(3877), - [anon_sym_into] = ACTIONS(3877), - [anon_sym_join] = ACTIONS(3877), - [anon_sym_on] = ACTIONS(3877), - [anon_sym_equals] = ACTIONS(3877), - [anon_sym_let] = ACTIONS(3877), - [anon_sym_orderby] = ACTIONS(3877), - [anon_sym_ascending] = ACTIONS(3877), - [anon_sym_descending] = ACTIONS(3877), - [anon_sym_group] = ACTIONS(3877), - [anon_sym_by] = ACTIONS(3877), - [anon_sym_select] = ACTIONS(3877), - [anon_sym_as] = ACTIONS(3907), - [anon_sym_is] = ACTIONS(3907), - [anon_sym_DASH_GT] = ACTIONS(3905), - [anon_sym_with] = ACTIONS(3907), - [aux_sym_preproc_if_token3] = ACTIONS(3905), - [aux_sym_preproc_else_token1] = ACTIONS(3905), - [aux_sym_preproc_elif_token1] = ACTIONS(3905), - [aux_sym_preproc_region_token1] = ACTIONS(3), + [2275] = { + [sym_property_pattern_clause] = STATE(2338), + [sym__variable_designation] = STATE(3447), + [sym_parenthesized_variable_designation] = STATE(3352), + [sym_identifier] = STATE(3355), + [sym__reserved_identifier] = STATE(3199), + [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(3855), + [anon_sym_alias] = ACTIONS(3857), + [anon_sym_SEMI] = ACTIONS(3893), + [anon_sym_global] = ACTIONS(3857), + [anon_sym_LBRACK] = ACTIONS(3893), + [anon_sym_COLON] = ACTIONS(3893), + [anon_sym_COMMA] = ACTIONS(3893), + [anon_sym_RBRACK] = ACTIONS(3893), + [anon_sym_LPAREN] = ACTIONS(3893), + [anon_sym_RPAREN] = ACTIONS(3893), + [anon_sym_LBRACE] = ACTIONS(3861), + [anon_sym_RBRACE] = ACTIONS(3893), + [anon_sym_file] = ACTIONS(3857), + [anon_sym_LT] = ACTIONS(3895), + [anon_sym_GT] = ACTIONS(3895), + [anon_sym_where] = ACTIONS(3857), + [anon_sym_QMARK] = ACTIONS(3895), + [anon_sym_notnull] = ACTIONS(3857), + [anon_sym_unmanaged] = ACTIONS(3857), + [anon_sym_BANG] = ACTIONS(3895), + [anon_sym_PLUS_PLUS] = ACTIONS(3893), + [anon_sym_DASH_DASH] = ACTIONS(3893), + [anon_sym_PLUS] = ACTIONS(3895), + [anon_sym_DASH] = ACTIONS(3895), + [anon_sym_STAR] = ACTIONS(3893), + [anon_sym_SLASH] = ACTIONS(3895), + [anon_sym_PERCENT] = ACTIONS(3893), + [anon_sym_CARET] = ACTIONS(3893), + [anon_sym_PIPE] = ACTIONS(3895), + [anon_sym_AMP] = ACTIONS(3895), + [anon_sym_LT_LT] = ACTIONS(3893), + [anon_sym_GT_GT] = ACTIONS(3895), + [anon_sym_GT_GT_GT] = ACTIONS(3893), + [anon_sym_EQ_EQ] = ACTIONS(3893), + [anon_sym_BANG_EQ] = ACTIONS(3893), + [anon_sym_GT_EQ] = ACTIONS(3893), + [anon_sym_LT_EQ] = ACTIONS(3893), + [anon_sym_DOT] = ACTIONS(3895), + [anon_sym_scoped] = ACTIONS(3857), + [anon_sym_EQ_GT] = ACTIONS(3893), + [anon_sym_var] = ACTIONS(3857), + [anon_sym_yield] = ACTIONS(3857), + [anon_sym_switch] = ACTIONS(3895), + [anon_sym_when] = ACTIONS(3857), + [sym_discard] = ACTIONS(3877), + [anon_sym_DOT_DOT] = ACTIONS(3893), + [anon_sym_and] = ACTIONS(3895), + [anon_sym_or] = ACTIONS(3895), + [anon_sym_AMP_AMP] = ACTIONS(3893), + [anon_sym_PIPE_PIPE] = ACTIONS(3893), + [anon_sym_QMARK_QMARK] = ACTIONS(3893), + [anon_sym_from] = ACTIONS(3857), + [anon_sym_into] = ACTIONS(3857), + [anon_sym_join] = ACTIONS(3857), + [anon_sym_on] = ACTIONS(3857), + [anon_sym_equals] = ACTIONS(3857), + [anon_sym_let] = ACTIONS(3857), + [anon_sym_orderby] = ACTIONS(3857), + [anon_sym_ascending] = ACTIONS(3857), + [anon_sym_descending] = ACTIONS(3857), + [anon_sym_group] = ACTIONS(3857), + [anon_sym_by] = ACTIONS(3857), + [anon_sym_select] = ACTIONS(3857), + [anon_sym_as] = ACTIONS(3895), + [anon_sym_is] = ACTIONS(3895), + [anon_sym_DASH_GT] = ACTIONS(3893), + [anon_sym_with] = ACTIONS(3895), + [aux_sym_preproc_if_token3] = ACTIONS(3893), + [aux_sym_preproc_else_token1] = ACTIONS(3893), + [aux_sym_preproc_elif_token1] = 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), + }, + [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(3603), + [anon_sym_alias] = ACTIONS(3603), + [anon_sym_global] = ACTIONS(3603), + [anon_sym_EQ] = ACTIONS(3431), + [anon_sym_LBRACK] = ACTIONS(3600), + [anon_sym_LPAREN] = ACTIONS(3600), + [anon_sym_LBRACE] = ACTIONS(3600), + [anon_sym_file] = ACTIONS(3603), + [anon_sym_LT] = ACTIONS(3603), + [anon_sym_GT] = ACTIONS(3603), + [anon_sym_where] = ACTIONS(3603), + [anon_sym_QMARK] = ACTIONS(3603), + [anon_sym_notnull] = ACTIONS(3603), + [anon_sym_unmanaged] = ACTIONS(3603), + [anon_sym_BANG] = ACTIONS(3603), + [anon_sym_PLUS_PLUS] = ACTIONS(3600), + [anon_sym_DASH_DASH] = ACTIONS(3600), + [anon_sym_PLUS] = ACTIONS(3603), + [anon_sym_DASH] = ACTIONS(3603), + [anon_sym_STAR] = ACTIONS(3603), + [anon_sym_SLASH] = ACTIONS(3603), + [anon_sym_PERCENT] = ACTIONS(3603), + [anon_sym_CARET] = ACTIONS(3603), + [anon_sym_PIPE] = ACTIONS(3603), + [anon_sym_AMP] = ACTIONS(3603), + [anon_sym_LT_LT] = ACTIONS(3603), + [anon_sym_GT_GT] = ACTIONS(3603), + [anon_sym_GT_GT_GT] = ACTIONS(3603), + [anon_sym_EQ_EQ] = ACTIONS(3600), + [anon_sym_BANG_EQ] = ACTIONS(3600), + [anon_sym_GT_EQ] = ACTIONS(3600), + [anon_sym_LT_EQ] = ACTIONS(3600), + [anon_sym_DOT] = ACTIONS(3603), + [anon_sym_scoped] = ACTIONS(3603), + [anon_sym_EQ_GT] = ACTIONS(3600), + [anon_sym_COLON_COLON] = ACTIONS(3429), + [anon_sym_var] = ACTIONS(3603), + [anon_sym_yield] = ACTIONS(3603), + [anon_sym_switch] = ACTIONS(3603), + [anon_sym_when] = ACTIONS(3603), + [sym_discard] = ACTIONS(3603), + [anon_sym_DOT_DOT] = ACTIONS(3600), + [anon_sym_and] = ACTIONS(3603), + [anon_sym_or] = ACTIONS(3603), + [anon_sym_PLUS_EQ] = ACTIONS(3429), + [anon_sym_DASH_EQ] = ACTIONS(3429), + [anon_sym_STAR_EQ] = ACTIONS(3429), + [anon_sym_SLASH_EQ] = ACTIONS(3429), + [anon_sym_PERCENT_EQ] = ACTIONS(3429), + [anon_sym_AMP_EQ] = ACTIONS(3429), + [anon_sym_CARET_EQ] = ACTIONS(3429), + [anon_sym_PIPE_EQ] = ACTIONS(3429), + [anon_sym_LT_LT_EQ] = ACTIONS(3429), + [anon_sym_GT_GT_EQ] = ACTIONS(3429), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3429), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3429), + [anon_sym_AMP_AMP] = ACTIONS(3600), + [anon_sym_PIPE_PIPE] = ACTIONS(3600), + [anon_sym_QMARK_QMARK] = ACTIONS(3603), + [anon_sym_from] = ACTIONS(3603), + [anon_sym_into] = ACTIONS(3603), + [anon_sym_join] = ACTIONS(3603), + [anon_sym_on] = ACTIONS(3603), + [anon_sym_equals] = ACTIONS(3603), + [anon_sym_let] = ACTIONS(3603), + [anon_sym_orderby] = ACTIONS(3603), + [anon_sym_ascending] = ACTIONS(3603), + [anon_sym_descending] = ACTIONS(3603), + [anon_sym_group] = ACTIONS(3603), + [anon_sym_by] = ACTIONS(3603), + [anon_sym_select] = ACTIONS(3603), + [anon_sym_as] = ACTIONS(3603), + [anon_sym_is] = ACTIONS(3603), + [anon_sym_DASH_GT] = ACTIONS(3600), + [anon_sym_with] = ACTIONS(3603), + [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), [aux_sym_preproc_pragma_token1] = ACTIONS(9), @@ -407854,6 +407560,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2277] = { + [sym_attribute_list] = STATE(3612), + [sym__attribute_list] = STATE(3570), + [sym_modifier] = STATE(3845), + [sym_parameter_list] = STATE(7531), + [sym__name] = STATE(4369), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(4068), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(4073), + [sym_type] = STATE(5913), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym__lambda_parameters] = STATE(7609), + [sym_identifier] = STATE(5764), + [sym__reserved_identifier] = STATE(3654), + [sym_preproc_if_in_attribute_list] = STATE(3612), [sym_preproc_region] = STATE(2277), [sym_preproc_endregion] = STATE(2277), [sym_preproc_line] = STATE(2277), @@ -407863,81 +407593,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2277), [sym_preproc_define] = STATE(2277), [sym_preproc_undef] = STATE(2277), - [sym__identifier_token] = ACTIONS(3699), - [anon_sym_alias] = ACTIONS(3699), - [anon_sym_global] = ACTIONS(3699), - [anon_sym_EQ] = ACTIONS(3704), - [anon_sym_LBRACK] = ACTIONS(3706), - [anon_sym_COLON] = ACTIONS(3701), - [anon_sym_LPAREN] = ACTIONS(3706), - [anon_sym_LBRACE] = ACTIONS(3710), - [anon_sym_file] = ACTIONS(3699), - [anon_sym_LT] = ACTIONS(3712), - [anon_sym_GT] = ACTIONS(3712), - [anon_sym_where] = ACTIONS(3699), - [anon_sym_QMARK] = ACTIONS(3712), - [anon_sym_notnull] = ACTIONS(3699), - [anon_sym_unmanaged] = ACTIONS(3699), - [anon_sym_BANG] = ACTIONS(3712), - [anon_sym_PLUS_PLUS] = ACTIONS(3706), - [anon_sym_DASH_DASH] = ACTIONS(3706), - [anon_sym_PLUS] = ACTIONS(3712), - [anon_sym_DASH] = ACTIONS(3712), - [anon_sym_STAR] = ACTIONS(3712), - [anon_sym_SLASH] = ACTIONS(3712), - [anon_sym_PERCENT] = ACTIONS(3712), - [anon_sym_CARET] = ACTIONS(3712), - [anon_sym_PIPE] = ACTIONS(3712), - [anon_sym_AMP] = ACTIONS(3712), - [anon_sym_LT_LT] = ACTIONS(3712), - [anon_sym_GT_GT] = ACTIONS(3712), - [anon_sym_GT_GT_GT] = ACTIONS(3712), - [anon_sym_EQ_EQ] = ACTIONS(3706), - [anon_sym_BANG_EQ] = ACTIONS(3706), - [anon_sym_GT_EQ] = ACTIONS(3706), - [anon_sym_LT_EQ] = ACTIONS(3706), - [anon_sym_DOT] = ACTIONS(3712), - [anon_sym_scoped] = ACTIONS(3699), - [anon_sym_EQ_GT] = ACTIONS(3701), - [anon_sym_var] = ACTIONS(3699), - [anon_sym_yield] = ACTIONS(3699), - [anon_sym_switch] = ACTIONS(3712), - [anon_sym_when] = ACTIONS(3716), - [sym_discard] = ACTIONS(3699), - [anon_sym_DOT_DOT] = ACTIONS(3706), - [anon_sym_and] = ACTIONS(3716), - [anon_sym_or] = ACTIONS(3716), - [anon_sym_PLUS_EQ] = ACTIONS(3719), - [anon_sym_DASH_EQ] = ACTIONS(3719), - [anon_sym_STAR_EQ] = ACTIONS(3719), - [anon_sym_SLASH_EQ] = ACTIONS(3719), - [anon_sym_PERCENT_EQ] = ACTIONS(3719), - [anon_sym_AMP_EQ] = ACTIONS(3719), - [anon_sym_CARET_EQ] = ACTIONS(3719), - [anon_sym_PIPE_EQ] = ACTIONS(3719), - [anon_sym_LT_LT_EQ] = ACTIONS(3719), - [anon_sym_GT_GT_EQ] = ACTIONS(3719), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3719), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3719), - [anon_sym_AMP_AMP] = ACTIONS(3706), - [anon_sym_PIPE_PIPE] = ACTIONS(3706), - [anon_sym_QMARK_QMARK] = ACTIONS(3712), - [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_ascending] = ACTIONS(3699), - [anon_sym_descending] = ACTIONS(3699), - [anon_sym_group] = ACTIONS(3699), - [anon_sym_by] = ACTIONS(3699), - [anon_sym_select] = ACTIONS(3699), - [anon_sym_as] = ACTIONS(3712), - [anon_sym_is] = ACTIONS(3712), - [anon_sym_DASH_GT] = ACTIONS(3706), - [anon_sym_with] = ACTIONS(3712), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3193), + [aux_sym__class_declaration_initializer_repeat2] = STATE(2551), + [aux_sym__lambda_expression_init_repeat1] = STATE(3435), + [sym__identifier_token] = ACTIONS(2965), + [anon_sym_extern] = ACTIONS(645), + [anon_sym_alias] = ACTIONS(2969), + [anon_sym_global] = ACTIONS(2969), + [anon_sym_unsafe] = ACTIONS(645), + [anon_sym_static] = ACTIONS(653), + [anon_sym_LBRACK] = ACTIONS(3903), + [anon_sym_LPAREN] = ACTIONS(3786), + [anon_sym_ref] = ACTIONS(3436), + [anon_sym_delegate] = ACTIONS(3438), + [anon_sym_abstract] = ACTIONS(645), + [anon_sym_async] = ACTIONS(653), + [anon_sym_const] = ACTIONS(645), + [anon_sym_file] = ACTIONS(3905), + [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(2969), + [anon_sym_notnull] = ACTIONS(2969), + [anon_sym_unmanaged] = ACTIONS(2969), + [anon_sym_scoped] = ACTIONS(2993), + [anon_sym_var] = ACTIONS(2995), + [sym_predefined_type] = ACTIONS(2997), + [anon_sym_yield] = ACTIONS(2969), + [anon_sym_when] = ACTIONS(2969), + [anon_sym_from] = ACTIONS(2969), + [anon_sym_into] = ACTIONS(2969), + [anon_sym_join] = ACTIONS(2969), + [anon_sym_on] = ACTIONS(2969), + [anon_sym_equals] = ACTIONS(2969), + [anon_sym_let] = ACTIONS(2969), + [anon_sym_orderby] = ACTIONS(2969), + [anon_sym_ascending] = ACTIONS(2969), + [anon_sym_descending] = ACTIONS(2969), + [anon_sym_group] = ACTIONS(2969), + [anon_sym_by] = ACTIONS(2969), + [anon_sym_select] = ACTIONS(2969), + [aux_sym_preproc_if_token1] = ACTIONS(3907), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -407950,26 +407656,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2278] = { - [sym_modifier] = STATE(3130), - [sym_variable_declaration] = STATE(7443), - [sym__name] = STATE(4390), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(4096), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(4109), - [sym_type] = STATE(5519), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_identifier] = STATE(5728), - [sym__reserved_identifier] = STATE(3691), [sym_preproc_region] = STATE(2278), [sym_preproc_endregion] = STATE(2278), [sym_preproc_line] = STATE(2278), @@ -407979,61 +407665,81 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2278), [sym_preproc_define] = STATE(2278), [sym_preproc_undef] = STATE(2278), - [aux_sym__class_declaration_initializer_repeat2] = STATE(3100), - [sym__identifier_token] = ACTIONS(2967), - [anon_sym_extern] = ACTIONS(65), - [anon_sym_alias] = ACTIONS(2971), - [anon_sym_global] = ACTIONS(2971), - [anon_sym_unsafe] = ACTIONS(65), - [anon_sym_static] = ACTIONS(65), - [anon_sym_LPAREN] = ACTIONS(2979), - [anon_sym_event] = ACTIONS(3737), - [anon_sym_class] = ACTIONS(3739), - [anon_sym_ref] = ACTIONS(3741), - [anon_sym_struct] = ACTIONS(2747), - [anon_sym_enum] = ACTIONS(3743), - [anon_sym_interface] = ACTIONS(3745), - [anon_sym_delegate] = ACTIONS(3747), - [anon_sym_record] = ACTIONS(3749), - [anon_sym_abstract] = ACTIONS(65), - [anon_sym_async] = ACTIONS(65), - [anon_sym_const] = ACTIONS(65), - [anon_sym_file] = ACTIONS(2991), - [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(2971), - [anon_sym_notnull] = ACTIONS(2971), - [anon_sym_unmanaged] = ACTIONS(2971), - [anon_sym_implicit] = ACTIONS(3753), - [anon_sym_explicit] = ACTIONS(3753), - [anon_sym_scoped] = ACTIONS(2997), - [anon_sym_var] = ACTIONS(2999), - [sym_predefined_type] = ACTIONS(3001), - [anon_sym_yield] = ACTIONS(2971), - [anon_sym_when] = ACTIONS(2971), - [anon_sym_from] = ACTIONS(2971), - [anon_sym_into] = ACTIONS(2971), - [anon_sym_join] = ACTIONS(2971), - [anon_sym_on] = ACTIONS(2971), - [anon_sym_equals] = ACTIONS(2971), - [anon_sym_let] = ACTIONS(2971), - [anon_sym_orderby] = ACTIONS(2971), - [anon_sym_ascending] = ACTIONS(2971), - [anon_sym_descending] = ACTIONS(2971), - [anon_sym_group] = ACTIONS(2971), - [anon_sym_by] = ACTIONS(2971), - [anon_sym_select] = ACTIONS(2971), + [sym__identifier_token] = ACTIONS(3669), + [anon_sym_alias] = ACTIONS(3669), + [anon_sym_global] = ACTIONS(3669), + [anon_sym_EQ] = ACTIONS(3673), + [anon_sym_LBRACK] = ACTIONS(3675), + [anon_sym_COLON] = ACTIONS(3675), + [anon_sym_LPAREN] = ACTIONS(3675), + [anon_sym_LBRACE] = ACTIONS(3678), + [anon_sym_file] = ACTIONS(3669), + [anon_sym_LT] = ACTIONS(3673), + [anon_sym_GT] = ACTIONS(3673), + [anon_sym_where] = ACTIONS(3669), + [anon_sym_QMARK] = ACTIONS(3680), + [anon_sym_notnull] = ACTIONS(3669), + [anon_sym_unmanaged] = ACTIONS(3669), + [anon_sym_BANG] = ACTIONS(3673), + [anon_sym_PLUS_PLUS] = ACTIONS(3671), + [anon_sym_DASH_DASH] = ACTIONS(3671), + [anon_sym_PLUS] = ACTIONS(3673), + [anon_sym_DASH] = ACTIONS(3673), + [anon_sym_STAR] = ACTIONS(3680), + [anon_sym_SLASH] = ACTIONS(3673), + [anon_sym_PERCENT] = ACTIONS(3673), + [anon_sym_CARET] = ACTIONS(3673), + [anon_sym_PIPE] = ACTIONS(3673), + [anon_sym_AMP] = ACTIONS(3673), + [anon_sym_LT_LT] = ACTIONS(3673), + [anon_sym_GT_GT] = ACTIONS(3673), + [anon_sym_GT_GT_GT] = ACTIONS(3673), + [anon_sym_EQ_EQ] = ACTIONS(3671), + [anon_sym_BANG_EQ] = ACTIONS(3671), + [anon_sym_GT_EQ] = ACTIONS(3671), + [anon_sym_LT_EQ] = ACTIONS(3671), + [anon_sym_DOT] = ACTIONS(3680), + [anon_sym_scoped] = ACTIONS(3669), + [anon_sym_EQ_GT] = ACTIONS(3675), + [anon_sym_var] = ACTIONS(3669), + [anon_sym_yield] = ACTIONS(3669), + [anon_sym_switch] = ACTIONS(3673), + [anon_sym_when] = ACTIONS(3680), + [sym_discard] = ACTIONS(3669), + [anon_sym_DOT_DOT] = ACTIONS(3671), + [anon_sym_and] = ACTIONS(3680), + [anon_sym_or] = ACTIONS(3680), + [anon_sym_PLUS_EQ] = ACTIONS(3671), + [anon_sym_DASH_EQ] = ACTIONS(3671), + [anon_sym_STAR_EQ] = ACTIONS(3671), + [anon_sym_SLASH_EQ] = ACTIONS(3671), + [anon_sym_PERCENT_EQ] = ACTIONS(3671), + [anon_sym_AMP_EQ] = ACTIONS(3671), + [anon_sym_CARET_EQ] = ACTIONS(3671), + [anon_sym_PIPE_EQ] = ACTIONS(3671), + [anon_sym_LT_LT_EQ] = ACTIONS(3671), + [anon_sym_GT_GT_EQ] = ACTIONS(3671), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3671), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3671), + [anon_sym_AMP_AMP] = ACTIONS(3671), + [anon_sym_PIPE_PIPE] = ACTIONS(3671), + [anon_sym_QMARK_QMARK] = ACTIONS(3673), + [anon_sym_from] = ACTIONS(3669), + [anon_sym_into] = ACTIONS(3669), + [anon_sym_join] = ACTIONS(3669), + [anon_sym_on] = ACTIONS(3669), + [anon_sym_equals] = ACTIONS(3669), + [anon_sym_let] = ACTIONS(3669), + [anon_sym_orderby] = ACTIONS(3669), + [anon_sym_ascending] = ACTIONS(3669), + [anon_sym_descending] = ACTIONS(3669), + [anon_sym_group] = ACTIONS(3669), + [anon_sym_by] = ACTIONS(3669), + [anon_sym_select] = ACTIONS(3669), + [anon_sym_as] = ACTIONS(3673), + [anon_sym_is] = ACTIONS(3673), + [anon_sym_DASH_GT] = ACTIONS(3675), + [anon_sym_with] = ACTIONS(3673), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -408046,6 +407752,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2279] = { + [sym_parameter_list] = STATE(7531), + [sym__lambda_parameters] = STATE(7378), + [sym_identifier] = STATE(7285), + [sym__reserved_identifier] = STATE(2168), [sym_preproc_region] = STATE(2279), [sym_preproc_endregion] = STATE(2279), [sym_preproc_line] = STATE(2279), @@ -408055,81 +407765,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2279), [sym_preproc_define] = STATE(2279), [sym_preproc_undef] = STATE(2279), - [sym__identifier_token] = ACTIONS(3699), - [anon_sym_alias] = ACTIONS(3699), - [anon_sym_global] = ACTIONS(3699), - [anon_sym_EQ] = ACTIONS(3704), - [anon_sym_LBRACK] = ACTIONS(3706), - [anon_sym_COLON] = ACTIONS(3701), - [anon_sym_LPAREN] = ACTIONS(3706), - [anon_sym_LBRACE] = ACTIONS(3710), - [anon_sym_file] = ACTIONS(3699), - [anon_sym_LT] = ACTIONS(3712), - [anon_sym_GT] = ACTIONS(3712), - [anon_sym_where] = ACTIONS(3699), - [anon_sym_QMARK] = ACTIONS(3712), - [anon_sym_notnull] = ACTIONS(3699), - [anon_sym_unmanaged] = ACTIONS(3699), - [anon_sym_BANG] = ACTIONS(3712), - [anon_sym_PLUS_PLUS] = ACTIONS(3706), - [anon_sym_DASH_DASH] = ACTIONS(3706), - [anon_sym_PLUS] = ACTIONS(3712), - [anon_sym_DASH] = ACTIONS(3712), - [anon_sym_STAR] = ACTIONS(3712), - [anon_sym_SLASH] = ACTIONS(3712), - [anon_sym_PERCENT] = ACTIONS(3712), - [anon_sym_CARET] = ACTIONS(3712), - [anon_sym_PIPE] = ACTIONS(3712), - [anon_sym_AMP] = ACTIONS(3712), - [anon_sym_LT_LT] = ACTIONS(3712), - [anon_sym_GT_GT] = ACTIONS(3712), - [anon_sym_GT_GT_GT] = ACTIONS(3712), - [anon_sym_EQ_EQ] = ACTIONS(3706), - [anon_sym_BANG_EQ] = ACTIONS(3706), - [anon_sym_GT_EQ] = ACTIONS(3706), - [anon_sym_LT_EQ] = ACTIONS(3706), - [anon_sym_DOT] = ACTIONS(3712), - [anon_sym_scoped] = ACTIONS(3699), - [anon_sym_EQ_GT] = ACTIONS(3701), - [anon_sym_var] = ACTIONS(3699), - [anon_sym_yield] = ACTIONS(3699), - [anon_sym_switch] = ACTIONS(3712), - [anon_sym_when] = ACTIONS(3716), - [sym_discard] = ACTIONS(3699), - [anon_sym_DOT_DOT] = ACTIONS(3706), - [anon_sym_and] = ACTIONS(3716), - [anon_sym_or] = ACTIONS(3716), - [anon_sym_PLUS_EQ] = ACTIONS(3719), - [anon_sym_DASH_EQ] = ACTIONS(3719), - [anon_sym_STAR_EQ] = ACTIONS(3719), - [anon_sym_SLASH_EQ] = ACTIONS(3719), - [anon_sym_PERCENT_EQ] = ACTIONS(3719), - [anon_sym_AMP_EQ] = ACTIONS(3719), - [anon_sym_CARET_EQ] = ACTIONS(3719), - [anon_sym_PIPE_EQ] = ACTIONS(3719), - [anon_sym_LT_LT_EQ] = ACTIONS(3719), - [anon_sym_GT_GT_EQ] = ACTIONS(3719), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3719), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3719), - [anon_sym_AMP_AMP] = ACTIONS(3706), - [anon_sym_PIPE_PIPE] = ACTIONS(3706), - [anon_sym_QMARK_QMARK] = ACTIONS(3712), - [anon_sym_from] = ACTIONS(3699), - [anon_sym_into] = ACTIONS(3716), - [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_ascending] = ACTIONS(3699), - [anon_sym_descending] = ACTIONS(3699), - [anon_sym_group] = ACTIONS(3699), - [anon_sym_by] = ACTIONS(3699), - [anon_sym_select] = ACTIONS(3699), - [anon_sym_as] = ACTIONS(3712), - [anon_sym_is] = ACTIONS(3712), - [anon_sym_DASH_GT] = ACTIONS(3706), - [anon_sym_with] = ACTIONS(3712), + [sym__identifier_token] = ACTIONS(3909), + [anon_sym_alias] = ACTIONS(3909), + [anon_sym_SEMI] = ACTIONS(3911), + [anon_sym_global] = ACTIONS(3909), + [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(3911), + [anon_sym_RBRACE] = ACTIONS(3911), + [anon_sym_file] = ACTIONS(3909), + [anon_sym_LT] = ACTIONS(3909), + [anon_sym_GT] = ACTIONS(3909), + [anon_sym_in] = ACTIONS(3909), + [anon_sym_where] = ACTIONS(3909), + [anon_sym_QMARK] = ACTIONS(3909), + [anon_sym_notnull] = ACTIONS(3909), + [anon_sym_unmanaged] = ACTIONS(3909), + [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(3909), + [anon_sym_EQ_GT] = ACTIONS(3911), + [anon_sym_var] = ACTIONS(3909), + [anon_sym_yield] = ACTIONS(3909), + [anon_sym_switch] = ACTIONS(3909), + [anon_sym_when] = ACTIONS(3909), + [sym_discard] = ACTIONS(3909), + [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(3909), + [anon_sym_join] = ACTIONS(3909), + [anon_sym_on] = ACTIONS(3909), + [anon_sym_equals] = ACTIONS(3909), + [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(3909), + [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_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), @@ -408142,6 +407848,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2280] = { + [sym_property_pattern_clause] = STATE(2324), + [sym__variable_designation] = STATE(3471), + [sym_parenthesized_variable_designation] = STATE(3352), + [sym_identifier] = STATE(3355), + [sym__reserved_identifier] = STATE(3199), [sym_preproc_region] = STATE(2280), [sym_preproc_endregion] = STATE(2280), [sym_preproc_line] = STATE(2280), @@ -408151,81 +407862,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2280), [sym_preproc_define] = STATE(2280), [sym_preproc_undef] = STATE(2280), - [sym__identifier_token] = ACTIONS(3685), - [anon_sym_alias] = ACTIONS(3685), - [anon_sym_global] = ACTIONS(3685), - [anon_sym_EQ] = ACTIONS(3689), - [anon_sym_LBRACK] = ACTIONS(3691), - [anon_sym_COLON] = ACTIONS(3691), - [anon_sym_LPAREN] = ACTIONS(3691), - [anon_sym_LBRACE] = ACTIONS(3687), - [anon_sym_file] = ACTIONS(3685), - [anon_sym_LT] = ACTIONS(3689), - [anon_sym_GT] = ACTIONS(3689), - [anon_sym_where] = ACTIONS(3685), - [anon_sym_QMARK] = ACTIONS(3694), - [anon_sym_notnull] = ACTIONS(3685), - [anon_sym_unmanaged] = ACTIONS(3685), - [anon_sym_BANG] = ACTIONS(3689), - [anon_sym_PLUS_PLUS] = ACTIONS(3697), - [anon_sym_DASH_DASH] = ACTIONS(3697), - [anon_sym_PLUS] = ACTIONS(3689), - [anon_sym_DASH] = ACTIONS(3689), - [anon_sym_STAR] = ACTIONS(3694), - [anon_sym_SLASH] = ACTIONS(3689), - [anon_sym_PERCENT] = ACTIONS(3689), - [anon_sym_CARET] = ACTIONS(3689), - [anon_sym_PIPE] = ACTIONS(3689), - [anon_sym_AMP] = ACTIONS(3689), - [anon_sym_LT_LT] = ACTIONS(3689), - [anon_sym_GT_GT] = ACTIONS(3689), - [anon_sym_GT_GT_GT] = ACTIONS(3689), - [anon_sym_EQ_EQ] = ACTIONS(3697), - [anon_sym_BANG_EQ] = ACTIONS(3697), - [anon_sym_GT_EQ] = ACTIONS(3697), - [anon_sym_LT_EQ] = ACTIONS(3697), - [anon_sym_DOT] = ACTIONS(3694), - [anon_sym_scoped] = ACTIONS(3685), - [anon_sym_EQ_GT] = ACTIONS(3691), - [anon_sym_var] = ACTIONS(3685), - [anon_sym_yield] = ACTIONS(3685), - [anon_sym_switch] = ACTIONS(3689), - [anon_sym_when] = ACTIONS(3694), - [sym_discard] = ACTIONS(3685), - [anon_sym_DOT_DOT] = ACTIONS(3697), - [anon_sym_and] = ACTIONS(3694), - [anon_sym_or] = ACTIONS(3694), - [anon_sym_PLUS_EQ] = ACTIONS(3697), - [anon_sym_DASH_EQ] = ACTIONS(3697), - [anon_sym_STAR_EQ] = ACTIONS(3697), - [anon_sym_SLASH_EQ] = ACTIONS(3697), - [anon_sym_PERCENT_EQ] = ACTIONS(3697), - [anon_sym_AMP_EQ] = ACTIONS(3697), - [anon_sym_CARET_EQ] = ACTIONS(3697), - [anon_sym_PIPE_EQ] = ACTIONS(3697), - [anon_sym_LT_LT_EQ] = ACTIONS(3697), - [anon_sym_GT_GT_EQ] = ACTIONS(3697), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3697), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3697), - [anon_sym_AMP_AMP] = ACTIONS(3697), - [anon_sym_PIPE_PIPE] = ACTIONS(3697), - [anon_sym_QMARK_QMARK] = ACTIONS(3689), - [anon_sym_from] = ACTIONS(3685), - [anon_sym_into] = ACTIONS(3685), - [anon_sym_join] = ACTIONS(3685), - [anon_sym_on] = ACTIONS(3685), - [anon_sym_equals] = ACTIONS(3685), - [anon_sym_let] = ACTIONS(3685), - [anon_sym_orderby] = ACTIONS(3685), - [anon_sym_ascending] = ACTIONS(3685), - [anon_sym_descending] = ACTIONS(3685), - [anon_sym_group] = ACTIONS(3685), - [anon_sym_by] = ACTIONS(3685), - [anon_sym_select] = ACTIONS(3685), - [anon_sym_as] = ACTIONS(3689), - [anon_sym_is] = ACTIONS(3689), - [anon_sym_DASH_GT] = ACTIONS(3691), - [anon_sym_with] = ACTIONS(3689), + [sym__identifier_token] = ACTIONS(3855), + [anon_sym_alias] = ACTIONS(3857), + [anon_sym_SEMI] = ACTIONS(3885), + [anon_sym_global] = ACTIONS(3857), + [anon_sym_LBRACK] = ACTIONS(3885), + [anon_sym_COLON] = ACTIONS(3885), + [anon_sym_COMMA] = ACTIONS(3885), + [anon_sym_RBRACK] = ACTIONS(3885), + [anon_sym_LPAREN] = ACTIONS(3885), + [anon_sym_RPAREN] = ACTIONS(3885), + [anon_sym_LBRACE] = ACTIONS(3861), + [anon_sym_RBRACE] = ACTIONS(3885), + [anon_sym_file] = ACTIONS(3857), + [anon_sym_LT] = ACTIONS(3887), + [anon_sym_GT] = ACTIONS(3887), + [anon_sym_where] = ACTIONS(3857), + [anon_sym_QMARK] = ACTIONS(3887), + [anon_sym_notnull] = ACTIONS(3857), + [anon_sym_unmanaged] = ACTIONS(3857), + [anon_sym_BANG] = ACTIONS(3887), + [anon_sym_PLUS_PLUS] = ACTIONS(3885), + [anon_sym_DASH_DASH] = ACTIONS(3885), + [anon_sym_PLUS] = ACTIONS(3887), + [anon_sym_DASH] = ACTIONS(3887), + [anon_sym_STAR] = ACTIONS(3885), + [anon_sym_SLASH] = ACTIONS(3887), + [anon_sym_PERCENT] = ACTIONS(3885), + [anon_sym_CARET] = ACTIONS(3885), + [anon_sym_PIPE] = ACTIONS(3887), + [anon_sym_AMP] = ACTIONS(3887), + [anon_sym_LT_LT] = ACTIONS(3885), + [anon_sym_GT_GT] = ACTIONS(3887), + [anon_sym_GT_GT_GT] = ACTIONS(3885), + [anon_sym_EQ_EQ] = ACTIONS(3885), + [anon_sym_BANG_EQ] = ACTIONS(3885), + [anon_sym_GT_EQ] = ACTIONS(3885), + [anon_sym_LT_EQ] = ACTIONS(3885), + [anon_sym_DOT] = ACTIONS(3887), + [anon_sym_scoped] = ACTIONS(3857), + [anon_sym_EQ_GT] = ACTIONS(3885), + [anon_sym_var] = ACTIONS(3857), + [anon_sym_yield] = ACTIONS(3857), + [anon_sym_switch] = ACTIONS(3887), + [anon_sym_when] = ACTIONS(3857), + [sym_discard] = ACTIONS(3877), + [anon_sym_DOT_DOT] = ACTIONS(3885), + [anon_sym_and] = ACTIONS(3887), + [anon_sym_or] = ACTIONS(3887), + [anon_sym_AMP_AMP] = ACTIONS(3885), + [anon_sym_PIPE_PIPE] = ACTIONS(3885), + [anon_sym_QMARK_QMARK] = ACTIONS(3885), + [anon_sym_from] = ACTIONS(3857), + [anon_sym_into] = ACTIONS(3857), + [anon_sym_join] = ACTIONS(3857), + [anon_sym_on] = ACTIONS(3857), + [anon_sym_equals] = ACTIONS(3857), + [anon_sym_let] = ACTIONS(3857), + [anon_sym_orderby] = ACTIONS(3857), + [anon_sym_ascending] = ACTIONS(3857), + [anon_sym_descending] = ACTIONS(3857), + [anon_sym_group] = ACTIONS(3857), + [anon_sym_by] = ACTIONS(3857), + [anon_sym_select] = ACTIONS(3857), + [anon_sym_as] = ACTIONS(3887), + [anon_sym_is] = ACTIONS(3887), + [anon_sym_DASH_GT] = ACTIONS(3885), + [anon_sym_with] = ACTIONS(3887), + [aux_sym_preproc_if_token3] = ACTIONS(3885), + [aux_sym_preproc_else_token1] = ACTIONS(3885), + [aux_sym_preproc_elif_token1] = ACTIONS(3885), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -408238,15 +407944,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2281] = { - [sym__name] = STATE(2637), - [sym_alias_qualified_name] = STATE(2373), - [sym__simple_name] = STATE(2373), - [sym_qualified_name] = STATE(2373), - [sym_generic_name] = STATE(2389), - [sym_ref_type] = STATE(2317), - [sym__scoped_base_type] = STATE(2340), - [sym_identifier] = STATE(2564), - [sym__reserved_identifier] = STATE(2361), + [sym_type_argument_list] = STATE(2171), [sym_preproc_region] = STATE(2281), [sym_preproc_endregion] = STATE(2281), [sym_preproc_line] = STATE(2281), @@ -408256,72 +407954,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2281), [sym_preproc_define] = STATE(2281), [sym_preproc_undef] = STATE(2281), - [sym__identifier_token] = ACTIONS(3581), - [anon_sym_alias] = ACTIONS(3584), - [anon_sym_global] = ACTIONS(3584), - [anon_sym_LBRACK] = ACTIONS(3445), - [anon_sym_COLON] = ACTIONS(3447), - [anon_sym_COMMA] = ACTIONS(3445), - [anon_sym_LPAREN] = ACTIONS(3445), - [anon_sym_RPAREN] = ACTIONS(3445), - [anon_sym_ref] = ACTIONS(3630), - [anon_sym_LBRACE] = ACTIONS(3445), - [anon_sym_RBRACE] = ACTIONS(3445), - [anon_sym_file] = ACTIONS(3584), - [anon_sym_LT] = ACTIONS(3447), - [anon_sym_GT] = ACTIONS(3447), - [anon_sym_where] = ACTIONS(3584), - [anon_sym_QMARK] = ACTIONS(3447), - [anon_sym_notnull] = ACTIONS(3584), - [anon_sym_unmanaged] = ACTIONS(3584), - [anon_sym_BANG] = ACTIONS(3447), - [anon_sym_PLUS_PLUS] = ACTIONS(3445), - [anon_sym_DASH_DASH] = ACTIONS(3445), - [anon_sym_PLUS] = ACTIONS(3447), - [anon_sym_DASH] = ACTIONS(3447), - [anon_sym_STAR] = ACTIONS(3445), - [anon_sym_SLASH] = ACTIONS(3447), - [anon_sym_PERCENT] = ACTIONS(3445), - [anon_sym_CARET] = ACTIONS(3445), - [anon_sym_PIPE] = ACTIONS(3447), - [anon_sym_AMP] = ACTIONS(3447), - [anon_sym_LT_LT] = ACTIONS(3445), - [anon_sym_GT_GT] = ACTIONS(3447), - [anon_sym_GT_GT_GT] = ACTIONS(3445), - [anon_sym_EQ_EQ] = ACTIONS(3445), - [anon_sym_BANG_EQ] = ACTIONS(3445), - [anon_sym_GT_EQ] = ACTIONS(3445), - [anon_sym_LT_EQ] = ACTIONS(3445), - [anon_sym_DOT] = ACTIONS(3447), - [anon_sym_scoped] = ACTIONS(3584), - [anon_sym_COLON_COLON] = ACTIONS(3445), - [anon_sym_var] = ACTIONS(3584), - [anon_sym_yield] = ACTIONS(3584), - [anon_sym_switch] = ACTIONS(3447), - [anon_sym_when] = ACTIONS(3584), - [sym_discard] = ACTIONS(3447), - [anon_sym_DOT_DOT] = ACTIONS(3445), - [anon_sym_and] = ACTIONS(3447), - [anon_sym_or] = ACTIONS(3447), - [anon_sym_AMP_AMP] = ACTIONS(3445), - [anon_sym_PIPE_PIPE] = ACTIONS(3445), - [anon_sym_QMARK_QMARK] = ACTIONS(3445), - [anon_sym_from] = ACTIONS(3584), - [anon_sym_into] = ACTIONS(3584), - [anon_sym_join] = ACTIONS(3584), - [anon_sym_on] = ACTIONS(3584), - [anon_sym_equals] = ACTIONS(3584), - [anon_sym_let] = ACTIONS(3584), - [anon_sym_orderby] = ACTIONS(3584), - [anon_sym_ascending] = ACTIONS(3584), - [anon_sym_descending] = ACTIONS(3584), - [anon_sym_group] = ACTIONS(3584), - [anon_sym_by] = ACTIONS(3584), - [anon_sym_select] = ACTIONS(3584), - [anon_sym_as] = ACTIONS(3447), - [anon_sym_is] = ACTIONS(3447), - [anon_sym_DASH_GT] = ACTIONS(3445), - [anon_sym_with] = ACTIONS(3447), + [sym__identifier_token] = ACTIONS(3638), + [anon_sym_alias] = ACTIONS(3638), + [anon_sym_global] = ACTIONS(3638), + [anon_sym_EQ] = ACTIONS(3638), + [anon_sym_LBRACK] = ACTIONS(3640), + [anon_sym_COLON] = ACTIONS(3913), + [anon_sym_COMMA] = ACTIONS(3640), + [anon_sym_LPAREN] = ACTIONS(3640), + [anon_sym_RPAREN] = ACTIONS(3640), + [anon_sym_file] = ACTIONS(3638), + [anon_sym_LT] = ACTIONS(3648), + [anon_sym_GT] = ACTIONS(3638), + [anon_sym_where] = ACTIONS(3638), + [anon_sym_QMARK] = ACTIONS(3638), + [anon_sym_notnull] = ACTIONS(3638), + [anon_sym_unmanaged] = ACTIONS(3638), + [anon_sym_BANG] = ACTIONS(3638), + [anon_sym_PLUS_PLUS] = ACTIONS(3640), + [anon_sym_DASH_DASH] = ACTIONS(3640), + [anon_sym_PLUS] = ACTIONS(3638), + [anon_sym_DASH] = ACTIONS(3638), + [anon_sym_STAR] = ACTIONS(3638), + [anon_sym_SLASH] = ACTIONS(3638), + [anon_sym_PERCENT] = ACTIONS(3638), + [anon_sym_CARET] = ACTIONS(3638), + [anon_sym_PIPE] = ACTIONS(3638), + [anon_sym_AMP] = ACTIONS(3638), + [anon_sym_LT_LT] = ACTIONS(3638), + [anon_sym_GT_GT] = ACTIONS(3638), + [anon_sym_GT_GT_GT] = ACTIONS(3638), + [anon_sym_EQ_EQ] = ACTIONS(3640), + [anon_sym_BANG_EQ] = ACTIONS(3640), + [anon_sym_GT_EQ] = ACTIONS(3640), + [anon_sym_LT_EQ] = ACTIONS(3640), + [anon_sym_DOT] = ACTIONS(3638), + [anon_sym_scoped] = ACTIONS(3638), + [anon_sym_EQ_GT] = ACTIONS(3651), + [anon_sym_COLON_COLON] = ACTIONS(3653), + [anon_sym_var] = ACTIONS(3638), + [anon_sym_yield] = ACTIONS(3638), + [anon_sym_switch] = ACTIONS(3638), + [anon_sym_when] = ACTIONS(3638), + [anon_sym_DOT_DOT] = ACTIONS(3640), + [anon_sym_PLUS_EQ] = ACTIONS(3640), + [anon_sym_DASH_EQ] = ACTIONS(3640), + [anon_sym_STAR_EQ] = ACTIONS(3640), + [anon_sym_SLASH_EQ] = ACTIONS(3640), + [anon_sym_PERCENT_EQ] = ACTIONS(3640), + [anon_sym_AMP_EQ] = ACTIONS(3640), + [anon_sym_CARET_EQ] = ACTIONS(3640), + [anon_sym_PIPE_EQ] = ACTIONS(3640), + [anon_sym_LT_LT_EQ] = ACTIONS(3640), + [anon_sym_GT_GT_EQ] = ACTIONS(3640), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3640), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3640), + [anon_sym_AMP_AMP] = ACTIONS(3640), + [anon_sym_PIPE_PIPE] = ACTIONS(3640), + [anon_sym_QMARK_QMARK] = ACTIONS(3638), + [anon_sym_from] = ACTIONS(3638), + [anon_sym_into] = ACTIONS(3638), + [anon_sym_join] = ACTIONS(3638), + [anon_sym_on] = ACTIONS(3638), + [anon_sym_equals] = ACTIONS(3638), + [anon_sym_let] = ACTIONS(3638), + [anon_sym_orderby] = ACTIONS(3638), + [anon_sym_ascending] = ACTIONS(3638), + [anon_sym_descending] = ACTIONS(3638), + [anon_sym_group] = ACTIONS(3638), + [anon_sym_by] = ACTIONS(3638), + [anon_sym_select] = ACTIONS(3638), + [anon_sym_as] = ACTIONS(3638), + [anon_sym_is] = ACTIONS(3638), + [anon_sym_DASH_GT] = ACTIONS(3640), + [anon_sym_with] = ACTIONS(3638), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -408334,7 +408040,26 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2282] = { - [sym_type_argument_list] = STATE(2183), + [sym_modifier] = STATE(3114), + [sym_variable_declaration] = STATE(7366), + [sym__name] = STATE(4369), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(4068), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(4073), + [sym_type] = STATE(5355), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_identifier] = STATE(5705), + [sym__reserved_identifier] = STATE(3654), [sym_preproc_region] = STATE(2282), [sym_preproc_endregion] = STATE(2282), [sym_preproc_line] = STATE(2282), @@ -408344,80 +408069,61 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2282), [sym_preproc_define] = STATE(2282), [sym_preproc_undef] = STATE(2282), - [sym__identifier_token] = ACTIONS(3660), - [anon_sym_alias] = ACTIONS(3660), - [anon_sym_global] = ACTIONS(3660), - [anon_sym_EQ] = ACTIONS(3660), - [anon_sym_LBRACK] = ACTIONS(3662), - [anon_sym_COLON] = ACTIONS(3921), - [anon_sym_COMMA] = ACTIONS(3662), - [anon_sym_LPAREN] = ACTIONS(3662), - [anon_sym_RBRACE] = ACTIONS(3662), - [anon_sym_file] = ACTIONS(3660), - [anon_sym_LT] = ACTIONS(3664), - [anon_sym_GT] = ACTIONS(3660), - [anon_sym_where] = ACTIONS(3660), - [anon_sym_QMARK] = ACTIONS(3660), - [anon_sym_notnull] = ACTIONS(3660), - [anon_sym_unmanaged] = ACTIONS(3660), - [anon_sym_BANG] = ACTIONS(3660), - [anon_sym_PLUS_PLUS] = ACTIONS(3662), - [anon_sym_DASH_DASH] = ACTIONS(3662), - [anon_sym_PLUS] = ACTIONS(3660), - [anon_sym_DASH] = ACTIONS(3660), - [anon_sym_STAR] = ACTIONS(3660), - [anon_sym_SLASH] = ACTIONS(3660), - [anon_sym_PERCENT] = ACTIONS(3660), - [anon_sym_CARET] = ACTIONS(3660), - [anon_sym_PIPE] = ACTIONS(3660), - [anon_sym_AMP] = ACTIONS(3660), - [anon_sym_LT_LT] = ACTIONS(3660), - [anon_sym_GT_GT] = ACTIONS(3660), - [anon_sym_GT_GT_GT] = ACTIONS(3660), - [anon_sym_EQ_EQ] = ACTIONS(3662), - [anon_sym_BANG_EQ] = ACTIONS(3662), - [anon_sym_GT_EQ] = ACTIONS(3662), - [anon_sym_LT_EQ] = ACTIONS(3662), - [anon_sym_DOT] = ACTIONS(3660), - [anon_sym_scoped] = ACTIONS(3660), - [anon_sym_EQ_GT] = ACTIONS(3667), - [anon_sym_COLON_COLON] = ACTIONS(3669), - [anon_sym_var] = ACTIONS(3660), - [anon_sym_yield] = ACTIONS(3660), - [anon_sym_switch] = ACTIONS(3660), - [anon_sym_when] = ACTIONS(3660), - [anon_sym_DOT_DOT] = ACTIONS(3662), - [anon_sym_PLUS_EQ] = ACTIONS(3662), - [anon_sym_DASH_EQ] = ACTIONS(3662), - [anon_sym_STAR_EQ] = ACTIONS(3662), - [anon_sym_SLASH_EQ] = ACTIONS(3662), - [anon_sym_PERCENT_EQ] = ACTIONS(3662), - [anon_sym_AMP_EQ] = ACTIONS(3662), - [anon_sym_CARET_EQ] = ACTIONS(3662), - [anon_sym_PIPE_EQ] = ACTIONS(3662), - [anon_sym_LT_LT_EQ] = ACTIONS(3662), - [anon_sym_GT_GT_EQ] = ACTIONS(3662), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3662), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3662), - [anon_sym_AMP_AMP] = ACTIONS(3662), - [anon_sym_PIPE_PIPE] = ACTIONS(3662), - [anon_sym_QMARK_QMARK] = ACTIONS(3660), - [anon_sym_from] = ACTIONS(3660), - [anon_sym_into] = ACTIONS(3660), - [anon_sym_join] = ACTIONS(3660), - [anon_sym_on] = ACTIONS(3660), - [anon_sym_equals] = ACTIONS(3660), - [anon_sym_let] = ACTIONS(3660), - [anon_sym_orderby] = ACTIONS(3660), - [anon_sym_ascending] = ACTIONS(3660), - [anon_sym_descending] = ACTIONS(3660), - [anon_sym_group] = ACTIONS(3660), - [anon_sym_by] = ACTIONS(3660), - [anon_sym_select] = ACTIONS(3660), - [anon_sym_as] = ACTIONS(3660), - [anon_sym_is] = ACTIONS(3660), - [anon_sym_DASH_GT] = ACTIONS(3662), - [anon_sym_with] = ACTIONS(3660), + [aux_sym__class_declaration_initializer_repeat2] = STATE(3065), + [sym__identifier_token] = ACTIONS(2965), + [anon_sym_extern] = ACTIONS(65), + [anon_sym_alias] = ACTIONS(2969), + [anon_sym_global] = ACTIONS(2969), + [anon_sym_unsafe] = ACTIONS(65), + [anon_sym_static] = ACTIONS(65), + [anon_sym_LPAREN] = ACTIONS(2977), + [anon_sym_event] = ACTIONS(3915), + [anon_sym_class] = ACTIONS(3917), + [anon_sym_ref] = ACTIONS(3919), + [anon_sym_struct] = ACTIONS(3921), + [anon_sym_enum] = ACTIONS(3923), + [anon_sym_interface] = ACTIONS(3925), + [anon_sym_delegate] = ACTIONS(3927), + [anon_sym_record] = ACTIONS(3929), + [anon_sym_abstract] = ACTIONS(65), + [anon_sym_async] = ACTIONS(65), + [anon_sym_const] = ACTIONS(65), + [anon_sym_file] = ACTIONS(2987), + [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(2969), + [anon_sym_notnull] = ACTIONS(2969), + [anon_sym_unmanaged] = ACTIONS(2969), + [anon_sym_implicit] = ACTIONS(3931), + [anon_sym_explicit] = ACTIONS(3931), + [anon_sym_scoped] = ACTIONS(2993), + [anon_sym_var] = ACTIONS(2995), + [sym_predefined_type] = ACTIONS(2997), + [anon_sym_yield] = ACTIONS(2969), + [anon_sym_when] = ACTIONS(2969), + [anon_sym_from] = ACTIONS(2969), + [anon_sym_into] = ACTIONS(2969), + [anon_sym_join] = ACTIONS(2969), + [anon_sym_on] = ACTIONS(2969), + [anon_sym_equals] = ACTIONS(2969), + [anon_sym_let] = ACTIONS(2969), + [anon_sym_orderby] = ACTIONS(2969), + [anon_sym_ascending] = ACTIONS(2969), + [anon_sym_descending] = ACTIONS(2969), + [anon_sym_group] = ACTIONS(2969), + [anon_sym_by] = ACTIONS(2969), + [anon_sym_select] = ACTIONS(2969), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -408430,6 +408136,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2283] = { + [sym__name] = STATE(2634), + [sym_alias_qualified_name] = STATE(2402), + [sym__simple_name] = STATE(2402), + [sym_qualified_name] = STATE(2402), + [sym_generic_name] = STATE(2384), + [sym_ref_type] = STATE(2331), + [sym__scoped_base_type] = STATE(2339), + [sym_identifier] = STATE(2547), + [sym__reserved_identifier] = STATE(2354), [sym_preproc_region] = STATE(2283), [sym_preproc_endregion] = STATE(2283), [sym_preproc_line] = STATE(2283), @@ -408439,81 +408154,72 @@ 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(3619), - [anon_sym_alias] = ACTIONS(3619), - [anon_sym_global] = ACTIONS(3619), - [anon_sym_EQ] = ACTIONS(3447), - [anon_sym_LBRACK] = ACTIONS(3445), - [anon_sym_LPAREN] = ACTIONS(3616), - [anon_sym_LBRACE] = ACTIONS(3616), - [anon_sym_file] = ACTIONS(3619), - [anon_sym_LT] = ACTIONS(3447), - [anon_sym_GT] = ACTIONS(3447), - [anon_sym_where] = ACTIONS(3619), - [anon_sym_QMARK] = ACTIONS(3447), - [anon_sym_notnull] = ACTIONS(3619), - [anon_sym_unmanaged] = ACTIONS(3619), - [anon_sym_BANG] = ACTIONS(3447), - [anon_sym_PLUS_PLUS] = ACTIONS(3445), - [anon_sym_DASH_DASH] = ACTIONS(3445), - [anon_sym_PLUS] = ACTIONS(3447), - [anon_sym_DASH] = ACTIONS(3447), - [anon_sym_STAR] = ACTIONS(3447), - [anon_sym_SLASH] = ACTIONS(3447), - [anon_sym_PERCENT] = ACTIONS(3447), - [anon_sym_CARET] = ACTIONS(3447), - [anon_sym_PIPE] = ACTIONS(3447), - [anon_sym_AMP] = ACTIONS(3447), - [anon_sym_LT_LT] = ACTIONS(3447), - [anon_sym_GT_GT] = ACTIONS(3447), - [anon_sym_GT_GT_GT] = ACTIONS(3447), - [anon_sym_EQ_EQ] = ACTIONS(3445), - [anon_sym_BANG_EQ] = ACTIONS(3445), - [anon_sym_GT_EQ] = ACTIONS(3445), - [anon_sym_LT_EQ] = ACTIONS(3445), - [anon_sym_DOT] = ACTIONS(3447), - [anon_sym_scoped] = ACTIONS(3619), - [anon_sym_EQ_GT] = ACTIONS(3616), - [anon_sym_COLON_COLON] = ACTIONS(3445), - [anon_sym_var] = ACTIONS(3619), - [anon_sym_yield] = ACTIONS(3619), - [anon_sym_switch] = ACTIONS(3447), - [anon_sym_when] = ACTIONS(3619), - [sym_discard] = ACTIONS(3619), - [anon_sym_DOT_DOT] = ACTIONS(3445), - [anon_sym_and] = ACTIONS(3619), - [anon_sym_or] = ACTIONS(3619), - [anon_sym_PLUS_EQ] = ACTIONS(3445), - [anon_sym_DASH_EQ] = ACTIONS(3445), - [anon_sym_STAR_EQ] = ACTIONS(3445), - [anon_sym_SLASH_EQ] = ACTIONS(3445), - [anon_sym_PERCENT_EQ] = ACTIONS(3445), - [anon_sym_AMP_EQ] = ACTIONS(3445), - [anon_sym_CARET_EQ] = ACTIONS(3445), - [anon_sym_PIPE_EQ] = ACTIONS(3445), - [anon_sym_LT_LT_EQ] = ACTIONS(3445), - [anon_sym_GT_GT_EQ] = ACTIONS(3445), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3445), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3445), - [anon_sym_AMP_AMP] = ACTIONS(3445), - [anon_sym_PIPE_PIPE] = ACTIONS(3445), - [anon_sym_QMARK_QMARK] = ACTIONS(3447), - [anon_sym_from] = ACTIONS(3619), - [anon_sym_into] = ACTIONS(3619), - [anon_sym_join] = ACTIONS(3619), - [anon_sym_on] = ACTIONS(3619), - [anon_sym_equals] = ACTIONS(3619), - [anon_sym_let] = ACTIONS(3619), - [anon_sym_orderby] = ACTIONS(3619), - [anon_sym_ascending] = ACTIONS(3619), - [anon_sym_descending] = ACTIONS(3619), - [anon_sym_group] = ACTIONS(3619), - [anon_sym_by] = ACTIONS(3619), - [anon_sym_select] = ACTIONS(3619), - [anon_sym_as] = ACTIONS(3447), - [anon_sym_is] = ACTIONS(3447), - [anon_sym_DASH_GT] = ACTIONS(3445), - [anon_sym_with] = ACTIONS(3447), + [sym__identifier_token] = ACTIONS(3576), + [anon_sym_alias] = ACTIONS(3579), + [anon_sym_global] = ACTIONS(3579), + [anon_sym_LBRACK] = ACTIONS(3429), + [anon_sym_COLON] = ACTIONS(3431), + [anon_sym_COMMA] = ACTIONS(3429), + [anon_sym_LPAREN] = ACTIONS(3429), + [anon_sym_RPAREN] = ACTIONS(3429), + [anon_sym_ref] = ACTIONS(3614), + [anon_sym_LBRACE] = ACTIONS(3429), + [anon_sym_RBRACE] = ACTIONS(3429), + [anon_sym_file] = ACTIONS(3579), + [anon_sym_LT] = ACTIONS(3431), + [anon_sym_GT] = ACTIONS(3431), + [anon_sym_where] = ACTIONS(3579), + [anon_sym_QMARK] = ACTIONS(3431), + [anon_sym_notnull] = ACTIONS(3579), + [anon_sym_unmanaged] = ACTIONS(3579), + [anon_sym_BANG] = ACTIONS(3431), + [anon_sym_PLUS_PLUS] = ACTIONS(3429), + [anon_sym_DASH_DASH] = ACTIONS(3429), + [anon_sym_PLUS] = ACTIONS(3431), + [anon_sym_DASH] = ACTIONS(3431), + [anon_sym_STAR] = ACTIONS(3429), + [anon_sym_SLASH] = ACTIONS(3431), + [anon_sym_PERCENT] = ACTIONS(3429), + [anon_sym_CARET] = ACTIONS(3429), + [anon_sym_PIPE] = ACTIONS(3431), + [anon_sym_AMP] = ACTIONS(3431), + [anon_sym_LT_LT] = ACTIONS(3429), + [anon_sym_GT_GT] = ACTIONS(3431), + [anon_sym_GT_GT_GT] = ACTIONS(3429), + [anon_sym_EQ_EQ] = ACTIONS(3429), + [anon_sym_BANG_EQ] = ACTIONS(3429), + [anon_sym_GT_EQ] = ACTIONS(3429), + [anon_sym_LT_EQ] = ACTIONS(3429), + [anon_sym_DOT] = ACTIONS(3431), + [anon_sym_scoped] = ACTIONS(3579), + [anon_sym_COLON_COLON] = ACTIONS(3429), + [anon_sym_var] = ACTIONS(3579), + [anon_sym_yield] = ACTIONS(3579), + [anon_sym_switch] = ACTIONS(3431), + [anon_sym_when] = ACTIONS(3579), + [sym_discard] = ACTIONS(3431), + [anon_sym_DOT_DOT] = ACTIONS(3429), + [anon_sym_and] = ACTIONS(3431), + [anon_sym_or] = ACTIONS(3431), + [anon_sym_AMP_AMP] = ACTIONS(3429), + [anon_sym_PIPE_PIPE] = ACTIONS(3429), + [anon_sym_QMARK_QMARK] = ACTIONS(3429), + [anon_sym_from] = ACTIONS(3579), + [anon_sym_into] = ACTIONS(3579), + [anon_sym_join] = ACTIONS(3579), + [anon_sym_on] = ACTIONS(3579), + [anon_sym_equals] = ACTIONS(3579), + [anon_sym_let] = ACTIONS(3579), + [anon_sym_orderby] = ACTIONS(3579), + [anon_sym_ascending] = ACTIONS(3579), + [anon_sym_descending] = ACTIONS(3579), + [anon_sym_group] = ACTIONS(3579), + [anon_sym_by] = ACTIONS(3579), + [anon_sym_select] = ACTIONS(3579), + [anon_sym_as] = ACTIONS(3431), + [anon_sym_is] = ACTIONS(3431), + [anon_sym_DASH_GT] = ACTIONS(3429), + [anon_sym_with] = ACTIONS(3431), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -408535,81 +408241,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(3699), - [anon_sym_alias] = ACTIONS(3699), - [anon_sym_global] = ACTIONS(3699), - [anon_sym_EQ] = ACTIONS(3704), - [anon_sym_LBRACK] = ACTIONS(3721), - [anon_sym_COLON] = ACTIONS(3706), - [anon_sym_LPAREN] = ACTIONS(3721), - [anon_sym_LBRACE] = ACTIONS(3710), - [anon_sym_file] = ACTIONS(3699), - [anon_sym_LT] = ACTIONS(3704), - [anon_sym_GT] = ACTIONS(3704), - [anon_sym_where] = ACTIONS(3699), - [anon_sym_QMARK] = ACTIONS(3724), - [anon_sym_notnull] = ACTIONS(3699), - [anon_sym_unmanaged] = ACTIONS(3699), - [anon_sym_BANG] = ACTIONS(3704), - [anon_sym_PLUS_PLUS] = ACTIONS(3719), - [anon_sym_DASH_DASH] = ACTIONS(3719), - [anon_sym_PLUS] = ACTIONS(3704), - [anon_sym_DASH] = ACTIONS(3704), - [anon_sym_STAR] = ACTIONS(3724), - [anon_sym_SLASH] = ACTIONS(3704), - [anon_sym_PERCENT] = ACTIONS(3704), - [anon_sym_CARET] = ACTIONS(3704), - [anon_sym_PIPE] = ACTIONS(3704), - [anon_sym_AMP] = ACTIONS(3704), - [anon_sym_LT_LT] = ACTIONS(3704), - [anon_sym_GT_GT] = ACTIONS(3704), - [anon_sym_GT_GT_GT] = ACTIONS(3704), - [anon_sym_EQ_EQ] = ACTIONS(3719), - [anon_sym_BANG_EQ] = ACTIONS(3719), - [anon_sym_GT_EQ] = ACTIONS(3719), - [anon_sym_LT_EQ] = ACTIONS(3719), - [anon_sym_DOT] = ACTIONS(3724), - [anon_sym_scoped] = ACTIONS(3699), - [anon_sym_EQ_GT] = ACTIONS(3701), - [anon_sym_var] = ACTIONS(3699), - [anon_sym_yield] = ACTIONS(3699), - [anon_sym_switch] = ACTIONS(3704), - [anon_sym_when] = ACTIONS(3716), - [sym_discard] = ACTIONS(3699), - [anon_sym_DOT_DOT] = ACTIONS(3719), - [anon_sym_and] = ACTIONS(3716), - [anon_sym_or] = ACTIONS(3716), - [anon_sym_PLUS_EQ] = ACTIONS(3719), - [anon_sym_DASH_EQ] = ACTIONS(3719), - [anon_sym_STAR_EQ] = ACTIONS(3719), - [anon_sym_SLASH_EQ] = ACTIONS(3719), - [anon_sym_PERCENT_EQ] = ACTIONS(3719), - [anon_sym_AMP_EQ] = ACTIONS(3719), - [anon_sym_CARET_EQ] = ACTIONS(3719), - [anon_sym_PIPE_EQ] = ACTIONS(3719), - [anon_sym_LT_LT_EQ] = ACTIONS(3719), - [anon_sym_GT_GT_EQ] = ACTIONS(3719), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3719), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3719), - [anon_sym_AMP_AMP] = ACTIONS(3719), - [anon_sym_PIPE_PIPE] = ACTIONS(3719), - [anon_sym_QMARK_QMARK] = ACTIONS(3704), - [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_ascending] = ACTIONS(3699), - [anon_sym_descending] = ACTIONS(3699), - [anon_sym_group] = ACTIONS(3699), - [anon_sym_by] = ACTIONS(3699), - [anon_sym_select] = ACTIONS(3699), - [anon_sym_as] = ACTIONS(3704), - [anon_sym_is] = ACTIONS(3704), - [anon_sym_DASH_GT] = ACTIONS(3721), - [anon_sym_with] = ACTIONS(3704), + [sym__identifier_token] = ACTIONS(3669), + [anon_sym_alias] = ACTIONS(3669), + [anon_sym_global] = ACTIONS(3669), + [anon_sym_EQ] = ACTIONS(3673), + [anon_sym_LBRACK] = ACTIONS(3675), + [anon_sym_COLON] = ACTIONS(3675), + [anon_sym_LPAREN] = ACTIONS(3675), + [anon_sym_LBRACE] = ACTIONS(3678), + [anon_sym_file] = ACTIONS(3669), + [anon_sym_LT] = ACTIONS(3680), + [anon_sym_GT] = ACTIONS(3680), + [anon_sym_where] = ACTIONS(3669), + [anon_sym_QMARK] = ACTIONS(3680), + [anon_sym_notnull] = ACTIONS(3669), + [anon_sym_unmanaged] = ACTIONS(3669), + [anon_sym_BANG] = ACTIONS(3680), + [anon_sym_PLUS_PLUS] = ACTIONS(3675), + [anon_sym_DASH_DASH] = ACTIONS(3675), + [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(3675), + [anon_sym_BANG_EQ] = ACTIONS(3675), + [anon_sym_GT_EQ] = ACTIONS(3675), + [anon_sym_LT_EQ] = ACTIONS(3675), + [anon_sym_DOT] = ACTIONS(3680), + [anon_sym_scoped] = ACTIONS(3669), + [anon_sym_EQ_GT] = ACTIONS(3675), + [anon_sym_var] = ACTIONS(3669), + [anon_sym_yield] = ACTIONS(3669), + [anon_sym_switch] = ACTIONS(3680), + [anon_sym_when] = ACTIONS(3680), + [sym_discard] = ACTIONS(3669), + [anon_sym_DOT_DOT] = ACTIONS(3675), + [anon_sym_and] = ACTIONS(3680), + [anon_sym_or] = ACTIONS(3680), + [anon_sym_PLUS_EQ] = ACTIONS(3671), + [anon_sym_DASH_EQ] = ACTIONS(3671), + [anon_sym_STAR_EQ] = ACTIONS(3671), + [anon_sym_SLASH_EQ] = ACTIONS(3671), + [anon_sym_PERCENT_EQ] = ACTIONS(3671), + [anon_sym_AMP_EQ] = ACTIONS(3671), + [anon_sym_CARET_EQ] = ACTIONS(3671), + [anon_sym_PIPE_EQ] = ACTIONS(3671), + [anon_sym_LT_LT_EQ] = ACTIONS(3671), + [anon_sym_GT_GT_EQ] = ACTIONS(3671), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3671), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3671), + [anon_sym_AMP_AMP] = ACTIONS(3675), + [anon_sym_PIPE_PIPE] = ACTIONS(3675), + [anon_sym_QMARK_QMARK] = ACTIONS(3680), + [anon_sym_from] = ACTIONS(3669), + [anon_sym_into] = ACTIONS(3680), + [anon_sym_join] = ACTIONS(3669), + [anon_sym_on] = ACTIONS(3669), + [anon_sym_equals] = ACTIONS(3669), + [anon_sym_let] = ACTIONS(3669), + [anon_sym_orderby] = ACTIONS(3669), + [anon_sym_ascending] = ACTIONS(3669), + [anon_sym_descending] = ACTIONS(3669), + [anon_sym_group] = ACTIONS(3669), + [anon_sym_by] = ACTIONS(3669), + [anon_sym_select] = ACTIONS(3669), + [anon_sym_as] = ACTIONS(3680), + [anon_sym_is] = ACTIONS(3680), + [anon_sym_DASH_GT] = ACTIONS(3675), + [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), @@ -408622,11 +408328,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2285] = { - [sym_property_pattern_clause] = STATE(2346), - [sym__variable_designation] = STATE(3496), - [sym_parenthesized_variable_designation] = STATE(3463), - [sym_identifier] = STATE(3479), - [sym__reserved_identifier] = STATE(3177), [sym_preproc_region] = STATE(2285), [sym_preproc_endregion] = STATE(2285), [sym_preproc_line] = STATE(2285), @@ -408636,76 +408337,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(3875), - [anon_sym_alias] = ACTIONS(3877), - [anon_sym_SEMI] = ACTIONS(3913), - [anon_sym_global] = ACTIONS(3877), - [anon_sym_LBRACK] = ACTIONS(3913), - [anon_sym_COLON] = ACTIONS(3913), - [anon_sym_COMMA] = ACTIONS(3913), - [anon_sym_RBRACK] = ACTIONS(3913), - [anon_sym_LPAREN] = ACTIONS(3913), - [anon_sym_RPAREN] = ACTIONS(3913), - [anon_sym_LBRACE] = ACTIONS(3881), - [anon_sym_RBRACE] = ACTIONS(3913), - [anon_sym_file] = ACTIONS(3877), - [anon_sym_LT] = ACTIONS(3915), - [anon_sym_GT] = ACTIONS(3915), - [anon_sym_where] = ACTIONS(3877), - [anon_sym_QMARK] = ACTIONS(3915), - [anon_sym_notnull] = ACTIONS(3877), - [anon_sym_unmanaged] = ACTIONS(3877), - [anon_sym_BANG] = ACTIONS(3915), - [anon_sym_PLUS_PLUS] = ACTIONS(3913), - [anon_sym_DASH_DASH] = ACTIONS(3913), - [anon_sym_PLUS] = ACTIONS(3915), - [anon_sym_DASH] = ACTIONS(3915), - [anon_sym_STAR] = ACTIONS(3913), - [anon_sym_SLASH] = ACTIONS(3915), - [anon_sym_PERCENT] = ACTIONS(3913), - [anon_sym_CARET] = ACTIONS(3913), - [anon_sym_PIPE] = ACTIONS(3915), - [anon_sym_AMP] = ACTIONS(3915), - [anon_sym_LT_LT] = ACTIONS(3913), - [anon_sym_GT_GT] = ACTIONS(3915), - [anon_sym_GT_GT_GT] = ACTIONS(3913), - [anon_sym_EQ_EQ] = ACTIONS(3913), - [anon_sym_BANG_EQ] = ACTIONS(3913), - [anon_sym_GT_EQ] = ACTIONS(3913), - [anon_sym_LT_EQ] = ACTIONS(3913), - [anon_sym_DOT] = ACTIONS(3915), - [anon_sym_scoped] = ACTIONS(3877), - [anon_sym_EQ_GT] = ACTIONS(3913), - [anon_sym_var] = ACTIONS(3877), - [anon_sym_yield] = ACTIONS(3877), - [anon_sym_switch] = ACTIONS(3915), - [anon_sym_when] = ACTIONS(3877), - [sym_discard] = ACTIONS(3897), - [anon_sym_DOT_DOT] = ACTIONS(3913), - [anon_sym_and] = ACTIONS(3915), - [anon_sym_or] = ACTIONS(3915), - [anon_sym_AMP_AMP] = ACTIONS(3913), - [anon_sym_PIPE_PIPE] = ACTIONS(3913), - [anon_sym_QMARK_QMARK] = ACTIONS(3913), - [anon_sym_from] = ACTIONS(3877), - [anon_sym_into] = ACTIONS(3877), - [anon_sym_join] = ACTIONS(3877), - [anon_sym_on] = ACTIONS(3877), - [anon_sym_equals] = ACTIONS(3877), - [anon_sym_let] = ACTIONS(3877), - [anon_sym_orderby] = ACTIONS(3877), - [anon_sym_ascending] = ACTIONS(3877), - [anon_sym_descending] = ACTIONS(3877), - [anon_sym_group] = ACTIONS(3877), - [anon_sym_by] = ACTIONS(3877), - [anon_sym_select] = ACTIONS(3877), - [anon_sym_as] = ACTIONS(3915), - [anon_sym_is] = ACTIONS(3915), - [anon_sym_DASH_GT] = ACTIONS(3913), - [anon_sym_with] = ACTIONS(3915), - [aux_sym_preproc_if_token3] = ACTIONS(3913), - [aux_sym_preproc_else_token1] = ACTIONS(3913), - [aux_sym_preproc_elif_token1] = ACTIONS(3913), + [sym__identifier_token] = ACTIONS(3691), + [anon_sym_alias] = ACTIONS(3691), + [anon_sym_global] = ACTIONS(3691), + [anon_sym_EQ] = ACTIONS(3696), + [anon_sym_LBRACK] = ACTIONS(3698), + [anon_sym_COLON] = ACTIONS(3693), + [anon_sym_LPAREN] = ACTIONS(3698), + [anon_sym_LBRACE] = ACTIONS(3702), + [anon_sym_file] = ACTIONS(3691), + [anon_sym_LT] = ACTIONS(3704), + [anon_sym_GT] = ACTIONS(3704), + [anon_sym_where] = ACTIONS(3691), + [anon_sym_QMARK] = ACTIONS(3704), + [anon_sym_notnull] = ACTIONS(3691), + [anon_sym_unmanaged] = ACTIONS(3691), + [anon_sym_BANG] = ACTIONS(3704), + [anon_sym_PLUS_PLUS] = ACTIONS(3698), + [anon_sym_DASH_DASH] = ACTIONS(3698), + [anon_sym_PLUS] = ACTIONS(3704), + [anon_sym_DASH] = ACTIONS(3704), + [anon_sym_STAR] = ACTIONS(3704), + [anon_sym_SLASH] = ACTIONS(3704), + [anon_sym_PERCENT] = ACTIONS(3704), + [anon_sym_CARET] = ACTIONS(3704), + [anon_sym_PIPE] = ACTIONS(3704), + [anon_sym_AMP] = ACTIONS(3704), + [anon_sym_LT_LT] = ACTIONS(3704), + [anon_sym_GT_GT] = ACTIONS(3704), + [anon_sym_GT_GT_GT] = ACTIONS(3704), + [anon_sym_EQ_EQ] = ACTIONS(3698), + [anon_sym_BANG_EQ] = ACTIONS(3698), + [anon_sym_GT_EQ] = ACTIONS(3698), + [anon_sym_LT_EQ] = ACTIONS(3698), + [anon_sym_DOT] = ACTIONS(3704), + [anon_sym_scoped] = ACTIONS(3691), + [anon_sym_EQ_GT] = ACTIONS(3693), + [anon_sym_var] = ACTIONS(3691), + [anon_sym_yield] = ACTIONS(3691), + [anon_sym_switch] = ACTIONS(3704), + [anon_sym_when] = ACTIONS(3708), + [sym_discard] = ACTIONS(3691), + [anon_sym_DOT_DOT] = ACTIONS(3698), + [anon_sym_and] = ACTIONS(3708), + [anon_sym_or] = ACTIONS(3708), + [anon_sym_PLUS_EQ] = ACTIONS(3711), + [anon_sym_DASH_EQ] = ACTIONS(3711), + [anon_sym_STAR_EQ] = ACTIONS(3711), + [anon_sym_SLASH_EQ] = ACTIONS(3711), + [anon_sym_PERCENT_EQ] = ACTIONS(3711), + [anon_sym_AMP_EQ] = ACTIONS(3711), + [anon_sym_CARET_EQ] = ACTIONS(3711), + [anon_sym_PIPE_EQ] = ACTIONS(3711), + [anon_sym_LT_LT_EQ] = ACTIONS(3711), + [anon_sym_GT_GT_EQ] = ACTIONS(3711), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3711), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3711), + [anon_sym_AMP_AMP] = ACTIONS(3698), + [anon_sym_PIPE_PIPE] = ACTIONS(3698), + [anon_sym_QMARK_QMARK] = ACTIONS(3704), + [anon_sym_from] = ACTIONS(3691), + [anon_sym_into] = ACTIONS(3691), + [anon_sym_join] = ACTIONS(3691), + [anon_sym_on] = ACTIONS(3691), + [anon_sym_equals] = ACTIONS(3691), + [anon_sym_let] = ACTIONS(3691), + [anon_sym_orderby] = ACTIONS(3691), + [anon_sym_ascending] = ACTIONS(3691), + [anon_sym_descending] = ACTIONS(3691), + [anon_sym_group] = ACTIONS(3691), + [anon_sym_by] = ACTIONS(3691), + [anon_sym_select] = ACTIONS(3691), + [anon_sym_as] = ACTIONS(3704), + [anon_sym_is] = ACTIONS(3704), + [anon_sym_DASH_GT] = ACTIONS(3698), + [anon_sym_with] = ACTIONS(3704), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -408718,30 +408424,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2286] = { - [sym_attribute_list] = STATE(3645), - [sym__attribute_list] = STATE(3580), - [sym_modifier] = STATE(3878), - [sym_parameter_list] = STATE(7311), - [sym__name] = STATE(4390), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(4096), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(4109), - [sym_type] = STATE(5916), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym__lambda_parameters] = STATE(7489), - [sym_identifier] = STATE(5763), - [sym__reserved_identifier] = STATE(3691), - [sym_preproc_if_in_attribute_list] = STATE(3645), [sym_preproc_region] = STATE(2286), [sym_preproc_endregion] = STATE(2286), [sym_preproc_line] = STATE(2286), @@ -408751,57 +408433,79 @@ 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), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3199), - [aux_sym__class_declaration_initializer_repeat2] = STATE(2560), - [aux_sym__lambda_expression_init_repeat1] = STATE(3498), - [sym__identifier_token] = ACTIONS(2967), - [anon_sym_extern] = ACTIONS(647), - [anon_sym_alias] = ACTIONS(2971), - [anon_sym_global] = ACTIONS(2971), - [anon_sym_unsafe] = ACTIONS(647), - [anon_sym_static] = ACTIONS(655), - [anon_sym_LBRACK] = ACTIONS(3923), - [anon_sym_LPAREN] = ACTIONS(3794), - [anon_sym_ref] = ACTIONS(3452), - [anon_sym_delegate] = ACTIONS(3454), - [anon_sym_abstract] = ACTIONS(647), - [anon_sym_async] = ACTIONS(655), - [anon_sym_const] = ACTIONS(647), - [anon_sym_file] = ACTIONS(3925), - [anon_sym_fixed] = ACTIONS(647), - [anon_sym_internal] = ACTIONS(647), - [anon_sym_new] = ACTIONS(647), - [anon_sym_override] = ACTIONS(647), - [anon_sym_partial] = ACTIONS(647), - [anon_sym_private] = ACTIONS(647), - [anon_sym_protected] = ACTIONS(647), - [anon_sym_public] = ACTIONS(647), - [anon_sym_readonly] = ACTIONS(647), - [anon_sym_required] = ACTIONS(647), - [anon_sym_sealed] = ACTIONS(647), - [anon_sym_virtual] = ACTIONS(647), - [anon_sym_volatile] = ACTIONS(647), - [anon_sym_where] = ACTIONS(2971), - [anon_sym_notnull] = ACTIONS(2971), - [anon_sym_unmanaged] = ACTIONS(2971), - [anon_sym_scoped] = ACTIONS(2997), - [anon_sym_var] = ACTIONS(2999), - [sym_predefined_type] = ACTIONS(3001), - [anon_sym_yield] = ACTIONS(2971), - [anon_sym_when] = ACTIONS(2971), - [anon_sym_from] = ACTIONS(2971), - [anon_sym_into] = ACTIONS(2971), - [anon_sym_join] = ACTIONS(2971), - [anon_sym_on] = ACTIONS(2971), - [anon_sym_equals] = ACTIONS(2971), - [anon_sym_let] = ACTIONS(2971), - [anon_sym_orderby] = ACTIONS(2971), - [anon_sym_ascending] = ACTIONS(2971), - [anon_sym_descending] = ACTIONS(2971), - [anon_sym_group] = ACTIONS(2971), - [anon_sym_by] = ACTIONS(2971), - [anon_sym_select] = ACTIONS(2971), - [aux_sym_preproc_if_token1] = ACTIONS(3927), + [sym__identifier_token] = ACTIONS(3691), + [anon_sym_alias] = ACTIONS(3691), + [anon_sym_global] = ACTIONS(3691), + [anon_sym_EQ] = ACTIONS(3696), + [anon_sym_LBRACK] = ACTIONS(3713), + [anon_sym_COLON] = ACTIONS(3711), + [anon_sym_COMMA] = ACTIONS(3711), + [anon_sym_LPAREN] = ACTIONS(3713), + [anon_sym_file] = ACTIONS(3691), + [anon_sym_LT] = ACTIONS(3696), + [anon_sym_GT] = ACTIONS(3696), + [anon_sym_where] = ACTIONS(3691), + [anon_sym_QMARK] = ACTIONS(3716), + [anon_sym_notnull] = ACTIONS(3691), + [anon_sym_unmanaged] = ACTIONS(3691), + [anon_sym_BANG] = ACTIONS(3696), + [anon_sym_PLUS_PLUS] = ACTIONS(3711), + [anon_sym_DASH_DASH] = ACTIONS(3711), + [anon_sym_PLUS] = ACTIONS(3696), + [anon_sym_DASH] = ACTIONS(3696), + [anon_sym_STAR] = ACTIONS(3716), + [anon_sym_SLASH] = ACTIONS(3696), + [anon_sym_PERCENT] = ACTIONS(3696), + [anon_sym_CARET] = ACTIONS(3696), + [anon_sym_PIPE] = ACTIONS(3696), + [anon_sym_AMP] = ACTIONS(3696), + [anon_sym_LT_LT] = ACTIONS(3696), + [anon_sym_GT_GT] = ACTIONS(3696), + [anon_sym_GT_GT_GT] = ACTIONS(3696), + [anon_sym_EQ_EQ] = ACTIONS(3711), + [anon_sym_BANG_EQ] = ACTIONS(3711), + [anon_sym_GT_EQ] = ACTIONS(3711), + [anon_sym_LT_EQ] = ACTIONS(3711), + [anon_sym_DOT] = ACTIONS(3716), + [anon_sym_scoped] = ACTIONS(3691), + [anon_sym_var] = ACTIONS(3691), + [anon_sym_yield] = ACTIONS(3691), + [anon_sym_switch] = ACTIONS(3696), + [anon_sym_when] = ACTIONS(3691), + [anon_sym_DOT_DOT] = ACTIONS(3711), + [anon_sym_and] = ACTIONS(3696), + [anon_sym_or] = ACTIONS(3696), + [anon_sym_PLUS_EQ] = ACTIONS(3711), + [anon_sym_DASH_EQ] = ACTIONS(3711), + [anon_sym_STAR_EQ] = ACTIONS(3711), + [anon_sym_SLASH_EQ] = ACTIONS(3711), + [anon_sym_PERCENT_EQ] = ACTIONS(3711), + [anon_sym_AMP_EQ] = ACTIONS(3711), + [anon_sym_CARET_EQ] = ACTIONS(3711), + [anon_sym_PIPE_EQ] = ACTIONS(3711), + [anon_sym_LT_LT_EQ] = ACTIONS(3711), + [anon_sym_GT_GT_EQ] = ACTIONS(3711), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3711), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3711), + [anon_sym_AMP_AMP] = ACTIONS(3711), + [anon_sym_PIPE_PIPE] = ACTIONS(3711), + [anon_sym_QMARK_QMARK] = ACTIONS(3696), + [anon_sym_from] = ACTIONS(3691), + [anon_sym_into] = ACTIONS(3716), + [anon_sym_join] = ACTIONS(3691), + [anon_sym_on] = ACTIONS(3691), + [anon_sym_equals] = ACTIONS(3691), + [anon_sym_let] = ACTIONS(3691), + [anon_sym_orderby] = ACTIONS(3691), + [anon_sym_ascending] = ACTIONS(3691), + [anon_sym_descending] = ACTIONS(3691), + [anon_sym_group] = ACTIONS(3691), + [anon_sym_by] = ACTIONS(3691), + [anon_sym_select] = ACTIONS(3691), + [anon_sym_as] = ACTIONS(3696), + [anon_sym_is] = ACTIONS(3696), + [anon_sym_DASH_GT] = ACTIONS(3713), + [anon_sym_with] = ACTIONS(3696), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -408812,9 +408516,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(3711), }, [2287] = { - [sym_type_argument_list] = STATE(2183), [sym_preproc_region] = STATE(2287), [sym_preproc_endregion] = STATE(2287), [sym_preproc_line] = STATE(2287), @@ -408824,80 +408528,79 @@ 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(3660), - [anon_sym_alias] = ACTIONS(3660), - [anon_sym_global] = ACTIONS(3660), - [anon_sym_EQ] = ACTIONS(3660), - [anon_sym_LBRACK] = ACTIONS(3662), - [anon_sym_COLON] = ACTIONS(3929), - [anon_sym_COMMA] = ACTIONS(3662), - [anon_sym_LPAREN] = ACTIONS(3662), - [anon_sym_RPAREN] = ACTIONS(3662), - [anon_sym_file] = ACTIONS(3660), - [anon_sym_LT] = ACTIONS(3664), - [anon_sym_GT] = ACTIONS(3660), - [anon_sym_where] = ACTIONS(3660), - [anon_sym_QMARK] = ACTIONS(3660), - [anon_sym_notnull] = ACTIONS(3660), - [anon_sym_unmanaged] = ACTIONS(3660), - [anon_sym_BANG] = ACTIONS(3660), - [anon_sym_PLUS_PLUS] = ACTIONS(3662), - [anon_sym_DASH_DASH] = ACTIONS(3662), - [anon_sym_PLUS] = ACTIONS(3660), - [anon_sym_DASH] = ACTIONS(3660), - [anon_sym_STAR] = ACTIONS(3660), - [anon_sym_SLASH] = ACTIONS(3660), - [anon_sym_PERCENT] = ACTIONS(3660), - [anon_sym_CARET] = ACTIONS(3660), - [anon_sym_PIPE] = ACTIONS(3660), - [anon_sym_AMP] = ACTIONS(3660), - [anon_sym_LT_LT] = ACTIONS(3660), - [anon_sym_GT_GT] = ACTIONS(3660), - [anon_sym_GT_GT_GT] = ACTIONS(3660), - [anon_sym_EQ_EQ] = ACTIONS(3662), - [anon_sym_BANG_EQ] = ACTIONS(3662), - [anon_sym_GT_EQ] = ACTIONS(3662), - [anon_sym_LT_EQ] = ACTIONS(3662), - [anon_sym_DOT] = ACTIONS(3660), - [anon_sym_scoped] = ACTIONS(3660), - [anon_sym_EQ_GT] = ACTIONS(3667), - [anon_sym_COLON_COLON] = ACTIONS(3669), - [anon_sym_var] = ACTIONS(3660), - [anon_sym_yield] = ACTIONS(3660), - [anon_sym_switch] = ACTIONS(3660), - [anon_sym_when] = ACTIONS(3660), - [anon_sym_DOT_DOT] = ACTIONS(3662), - [anon_sym_PLUS_EQ] = ACTIONS(3662), - [anon_sym_DASH_EQ] = ACTIONS(3662), - [anon_sym_STAR_EQ] = ACTIONS(3662), - [anon_sym_SLASH_EQ] = ACTIONS(3662), - [anon_sym_PERCENT_EQ] = ACTIONS(3662), - [anon_sym_AMP_EQ] = ACTIONS(3662), - [anon_sym_CARET_EQ] = ACTIONS(3662), - [anon_sym_PIPE_EQ] = ACTIONS(3662), - [anon_sym_LT_LT_EQ] = ACTIONS(3662), - [anon_sym_GT_GT_EQ] = ACTIONS(3662), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3662), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3662), - [anon_sym_AMP_AMP] = ACTIONS(3662), - [anon_sym_PIPE_PIPE] = ACTIONS(3662), - [anon_sym_QMARK_QMARK] = ACTIONS(3660), - [anon_sym_from] = ACTIONS(3660), - [anon_sym_into] = ACTIONS(3660), - [anon_sym_join] = ACTIONS(3660), - [anon_sym_on] = ACTIONS(3660), - [anon_sym_equals] = ACTIONS(3660), - [anon_sym_let] = ACTIONS(3660), - [anon_sym_orderby] = ACTIONS(3660), - [anon_sym_ascending] = ACTIONS(3660), - [anon_sym_descending] = ACTIONS(3660), - [anon_sym_group] = ACTIONS(3660), - [anon_sym_by] = ACTIONS(3660), - [anon_sym_select] = ACTIONS(3660), - [anon_sym_as] = ACTIONS(3660), - [anon_sym_is] = ACTIONS(3660), - [anon_sym_DASH_GT] = ACTIONS(3662), - [anon_sym_with] = ACTIONS(3660), + [sym__identifier_token] = ACTIONS(3669), + [anon_sym_alias] = ACTIONS(3669), + [anon_sym_global] = ACTIONS(3669), + [anon_sym_EQ] = ACTIONS(3673), + [anon_sym_LBRACK] = ACTIONS(3675), + [anon_sym_COLON] = ACTIONS(3671), + [anon_sym_COMMA] = ACTIONS(3671), + [anon_sym_LPAREN] = ACTIONS(3675), + [anon_sym_file] = ACTIONS(3669), + [anon_sym_LT] = ACTIONS(3673), + [anon_sym_GT] = ACTIONS(3673), + [anon_sym_where] = ACTIONS(3669), + [anon_sym_QMARK] = ACTIONS(3680), + [anon_sym_notnull] = ACTIONS(3669), + [anon_sym_unmanaged] = ACTIONS(3669), + [anon_sym_BANG] = ACTIONS(3673), + [anon_sym_PLUS_PLUS] = ACTIONS(3671), + [anon_sym_DASH_DASH] = ACTIONS(3671), + [anon_sym_PLUS] = ACTIONS(3673), + [anon_sym_DASH] = ACTIONS(3673), + [anon_sym_STAR] = ACTIONS(3680), + [anon_sym_SLASH] = ACTIONS(3673), + [anon_sym_PERCENT] = ACTIONS(3673), + [anon_sym_CARET] = ACTIONS(3673), + [anon_sym_PIPE] = ACTIONS(3673), + [anon_sym_AMP] = ACTIONS(3673), + [anon_sym_LT_LT] = ACTIONS(3673), + [anon_sym_GT_GT] = ACTIONS(3673), + [anon_sym_GT_GT_GT] = ACTIONS(3673), + [anon_sym_EQ_EQ] = ACTIONS(3671), + [anon_sym_BANG_EQ] = ACTIONS(3671), + [anon_sym_GT_EQ] = ACTIONS(3671), + [anon_sym_LT_EQ] = ACTIONS(3671), + [anon_sym_DOT] = ACTIONS(3680), + [anon_sym_scoped] = ACTIONS(3669), + [anon_sym_var] = ACTIONS(3669), + [anon_sym_yield] = ACTIONS(3669), + [anon_sym_switch] = ACTIONS(3673), + [anon_sym_when] = ACTIONS(3669), + [anon_sym_DOT_DOT] = ACTIONS(3671), + [anon_sym_and] = ACTIONS(3673), + [anon_sym_or] = ACTIONS(3673), + [anon_sym_PLUS_EQ] = ACTIONS(3671), + [anon_sym_DASH_EQ] = ACTIONS(3671), + [anon_sym_STAR_EQ] = ACTIONS(3671), + [anon_sym_SLASH_EQ] = ACTIONS(3671), + [anon_sym_PERCENT_EQ] = ACTIONS(3671), + [anon_sym_AMP_EQ] = ACTIONS(3671), + [anon_sym_CARET_EQ] = ACTIONS(3671), + [anon_sym_PIPE_EQ] = ACTIONS(3671), + [anon_sym_LT_LT_EQ] = ACTIONS(3671), + [anon_sym_GT_GT_EQ] = ACTIONS(3671), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3671), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3671), + [anon_sym_AMP_AMP] = ACTIONS(3671), + [anon_sym_PIPE_PIPE] = ACTIONS(3671), + [anon_sym_QMARK_QMARK] = ACTIONS(3673), + [anon_sym_from] = ACTIONS(3669), + [anon_sym_into] = ACTIONS(3680), + [anon_sym_join] = ACTIONS(3669), + [anon_sym_on] = ACTIONS(3669), + [anon_sym_equals] = ACTIONS(3669), + [anon_sym_let] = ACTIONS(3669), + [anon_sym_orderby] = ACTIONS(3669), + [anon_sym_ascending] = ACTIONS(3669), + [anon_sym_descending] = ACTIONS(3669), + [anon_sym_group] = ACTIONS(3669), + [anon_sym_by] = ACTIONS(3669), + [anon_sym_select] = ACTIONS(3669), + [anon_sym_as] = ACTIONS(3673), + [anon_sym_is] = ACTIONS(3673), + [anon_sym_DASH_GT] = ACTIONS(3675), + [anon_sym_with] = ACTIONS(3673), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -408908,6 +408611,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(3671), }, [2288] = { [sym_preproc_region] = STATE(2288), @@ -408919,81 +408623,80 @@ 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(3619), - [anon_sym_alias] = ACTIONS(3619), - [anon_sym_global] = ACTIONS(3619), - [anon_sym_EQ] = ACTIONS(3447), - [anon_sym_LBRACK] = ACTIONS(3616), - [anon_sym_LPAREN] = ACTIONS(3616), - [anon_sym_LBRACE] = ACTIONS(3616), - [anon_sym_file] = ACTIONS(3619), - [anon_sym_LT] = ACTIONS(3619), - [anon_sym_GT] = ACTIONS(3619), - [anon_sym_where] = ACTIONS(3619), - [anon_sym_QMARK] = ACTIONS(3619), - [anon_sym_notnull] = ACTIONS(3619), - [anon_sym_unmanaged] = ACTIONS(3619), - [anon_sym_BANG] = ACTIONS(3619), - [anon_sym_PLUS_PLUS] = ACTIONS(3616), - [anon_sym_DASH_DASH] = ACTIONS(3616), - [anon_sym_PLUS] = ACTIONS(3619), - [anon_sym_DASH] = ACTIONS(3619), - [anon_sym_STAR] = ACTIONS(3619), - [anon_sym_SLASH] = ACTIONS(3619), - [anon_sym_PERCENT] = ACTIONS(3619), - [anon_sym_CARET] = ACTIONS(3619), - [anon_sym_PIPE] = ACTIONS(3619), - [anon_sym_AMP] = ACTIONS(3619), - [anon_sym_LT_LT] = ACTIONS(3619), - [anon_sym_GT_GT] = ACTIONS(3619), - [anon_sym_GT_GT_GT] = ACTIONS(3619), - [anon_sym_EQ_EQ] = ACTIONS(3616), - [anon_sym_BANG_EQ] = ACTIONS(3616), - [anon_sym_GT_EQ] = ACTIONS(3616), - [anon_sym_LT_EQ] = ACTIONS(3616), - [anon_sym_DOT] = ACTIONS(3619), - [anon_sym_scoped] = ACTIONS(3619), - [anon_sym_EQ_GT] = ACTIONS(3616), - [anon_sym_COLON_COLON] = ACTIONS(3445), - [anon_sym_var] = ACTIONS(3619), - [anon_sym_yield] = ACTIONS(3619), - [anon_sym_switch] = ACTIONS(3619), - [anon_sym_when] = ACTIONS(3619), - [sym_discard] = ACTIONS(3619), - [anon_sym_DOT_DOT] = ACTIONS(3616), - [anon_sym_and] = ACTIONS(3619), - [anon_sym_or] = ACTIONS(3619), - [anon_sym_PLUS_EQ] = ACTIONS(3445), - [anon_sym_DASH_EQ] = ACTIONS(3445), - [anon_sym_STAR_EQ] = ACTIONS(3445), - [anon_sym_SLASH_EQ] = ACTIONS(3445), - [anon_sym_PERCENT_EQ] = ACTIONS(3445), - [anon_sym_AMP_EQ] = ACTIONS(3445), - [anon_sym_CARET_EQ] = ACTIONS(3445), - [anon_sym_PIPE_EQ] = ACTIONS(3445), - [anon_sym_LT_LT_EQ] = ACTIONS(3445), - [anon_sym_GT_GT_EQ] = ACTIONS(3445), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3445), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3445), - [anon_sym_AMP_AMP] = ACTIONS(3616), - [anon_sym_PIPE_PIPE] = ACTIONS(3616), - [anon_sym_QMARK_QMARK] = ACTIONS(3619), - [anon_sym_from] = ACTIONS(3619), - [anon_sym_into] = ACTIONS(3619), - [anon_sym_join] = ACTIONS(3619), - [anon_sym_on] = ACTIONS(3619), - [anon_sym_equals] = ACTIONS(3619), - [anon_sym_let] = ACTIONS(3619), - [anon_sym_orderby] = ACTIONS(3619), - [anon_sym_ascending] = ACTIONS(3619), - [anon_sym_descending] = ACTIONS(3619), - [anon_sym_group] = ACTIONS(3619), - [anon_sym_by] = ACTIONS(3619), - [anon_sym_select] = ACTIONS(3619), - [anon_sym_as] = ACTIONS(3619), - [anon_sym_is] = ACTIONS(3619), - [anon_sym_DASH_GT] = ACTIONS(3616), - [anon_sym_with] = ACTIONS(3619), + [sym__identifier_token] = ACTIONS(3691), + [anon_sym_alias] = ACTIONS(3691), + [anon_sym_global] = ACTIONS(3691), + [anon_sym_EQ] = ACTIONS(3696), + [anon_sym_LBRACK] = ACTIONS(3698), + [anon_sym_COMMA] = ACTIONS(3693), + [anon_sym_LPAREN] = ACTIONS(3698), + [anon_sym_LBRACE] = ACTIONS(3702), + [anon_sym_file] = ACTIONS(3691), + [anon_sym_LT] = ACTIONS(3704), + [anon_sym_GT] = ACTIONS(3704), + [anon_sym_where] = ACTIONS(3708), + [anon_sym_QMARK] = ACTIONS(3704), + [anon_sym_notnull] = ACTIONS(3691), + [anon_sym_unmanaged] = ACTIONS(3691), + [anon_sym_BANG] = ACTIONS(3704), + [anon_sym_PLUS_PLUS] = ACTIONS(3698), + [anon_sym_DASH_DASH] = ACTIONS(3698), + [anon_sym_PLUS] = ACTIONS(3704), + [anon_sym_DASH] = ACTIONS(3704), + [anon_sym_STAR] = ACTIONS(3704), + [anon_sym_SLASH] = ACTIONS(3704), + [anon_sym_PERCENT] = ACTIONS(3704), + [anon_sym_CARET] = ACTIONS(3704), + [anon_sym_PIPE] = ACTIONS(3704), + [anon_sym_AMP] = ACTIONS(3704), + [anon_sym_LT_LT] = ACTIONS(3704), + [anon_sym_GT_GT] = ACTIONS(3704), + [anon_sym_GT_GT_GT] = ACTIONS(3704), + [anon_sym_EQ_EQ] = ACTIONS(3698), + [anon_sym_BANG_EQ] = ACTIONS(3698), + [anon_sym_GT_EQ] = ACTIONS(3698), + [anon_sym_LT_EQ] = ACTIONS(3698), + [anon_sym_DOT] = ACTIONS(3704), + [anon_sym_scoped] = ACTIONS(3691), + [anon_sym_var] = ACTIONS(3691), + [anon_sym_yield] = ACTIONS(3691), + [anon_sym_switch] = ACTIONS(3704), + [anon_sym_when] = ACTIONS(3691), + [sym_discard] = ACTIONS(3691), + [anon_sym_DOT_DOT] = ACTIONS(3698), + [anon_sym_and] = ACTIONS(3708), + [anon_sym_or] = ACTIONS(3708), + [anon_sym_PLUS_EQ] = ACTIONS(3711), + [anon_sym_DASH_EQ] = ACTIONS(3711), + [anon_sym_STAR_EQ] = ACTIONS(3711), + [anon_sym_SLASH_EQ] = ACTIONS(3711), + [anon_sym_PERCENT_EQ] = ACTIONS(3711), + [anon_sym_AMP_EQ] = ACTIONS(3711), + [anon_sym_CARET_EQ] = ACTIONS(3711), + [anon_sym_PIPE_EQ] = ACTIONS(3711), + [anon_sym_LT_LT_EQ] = ACTIONS(3711), + [anon_sym_GT_GT_EQ] = ACTIONS(3711), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3711), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3711), + [anon_sym_AMP_AMP] = ACTIONS(3698), + [anon_sym_PIPE_PIPE] = ACTIONS(3698), + [anon_sym_QMARK_QMARK] = ACTIONS(3704), + [anon_sym_from] = ACTIONS(3708), + [anon_sym_into] = ACTIONS(3708), + [anon_sym_join] = ACTIONS(3708), + [anon_sym_on] = ACTIONS(3691), + [anon_sym_equals] = ACTIONS(3691), + [anon_sym_let] = ACTIONS(3708), + [anon_sym_orderby] = ACTIONS(3708), + [anon_sym_ascending] = ACTIONS(3708), + [anon_sym_descending] = ACTIONS(3708), + [anon_sym_group] = ACTIONS(3708), + [anon_sym_by] = ACTIONS(3691), + [anon_sym_select] = ACTIONS(3708), + [anon_sym_as] = ACTIONS(3704), + [anon_sym_is] = ACTIONS(3704), + [anon_sym_DASH_GT] = ACTIONS(3698), + [anon_sym_with] = ACTIONS(3704), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -409006,6 +408709,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2289] = { + [sym__variable_designation] = STATE(3227), + [sym_parenthesized_variable_designation] = STATE(3344), + [sym_identifier] = STATE(3346), + [sym__reserved_identifier] = STATE(3199), [sym_preproc_region] = STATE(2289), [sym_preproc_endregion] = STATE(2289), [sym_preproc_line] = STATE(2289), @@ -409015,81 +408722,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2289), [sym_preproc_define] = STATE(2289), [sym_preproc_undef] = STATE(2289), - [sym__identifier_token] = ACTIONS(3685), - [anon_sym_alias] = ACTIONS(3685), - [anon_sym_global] = ACTIONS(3685), - [anon_sym_EQ] = ACTIONS(3689), - [anon_sym_LBRACK] = ACTIONS(3691), - [anon_sym_COLON] = ACTIONS(3691), - [anon_sym_LPAREN] = ACTIONS(3691), - [anon_sym_LBRACE] = ACTIONS(3687), - [anon_sym_file] = ACTIONS(3685), - [anon_sym_LT] = ACTIONS(3694), - [anon_sym_GT] = ACTIONS(3694), - [anon_sym_where] = ACTIONS(3685), - [anon_sym_QMARK] = ACTIONS(3694), - [anon_sym_notnull] = ACTIONS(3685), - [anon_sym_unmanaged] = ACTIONS(3685), - [anon_sym_BANG] = ACTIONS(3694), - [anon_sym_PLUS_PLUS] = ACTIONS(3691), - [anon_sym_DASH_DASH] = ACTIONS(3691), - [anon_sym_PLUS] = ACTIONS(3694), - [anon_sym_DASH] = ACTIONS(3694), - [anon_sym_STAR] = ACTIONS(3694), - [anon_sym_SLASH] = ACTIONS(3694), - [anon_sym_PERCENT] = ACTIONS(3694), - [anon_sym_CARET] = ACTIONS(3694), - [anon_sym_PIPE] = ACTIONS(3694), - [anon_sym_AMP] = ACTIONS(3694), - [anon_sym_LT_LT] = ACTIONS(3694), - [anon_sym_GT_GT] = ACTIONS(3694), - [anon_sym_GT_GT_GT] = ACTIONS(3694), - [anon_sym_EQ_EQ] = ACTIONS(3691), - [anon_sym_BANG_EQ] = ACTIONS(3691), - [anon_sym_GT_EQ] = ACTIONS(3691), - [anon_sym_LT_EQ] = ACTIONS(3691), - [anon_sym_DOT] = ACTIONS(3694), - [anon_sym_scoped] = ACTIONS(3685), - [anon_sym_EQ_GT] = ACTIONS(3691), - [anon_sym_var] = ACTIONS(3685), - [anon_sym_yield] = ACTIONS(3685), - [anon_sym_switch] = ACTIONS(3694), - [anon_sym_when] = ACTIONS(3694), - [sym_discard] = ACTIONS(3685), - [anon_sym_DOT_DOT] = ACTIONS(3691), - [anon_sym_and] = ACTIONS(3694), - [anon_sym_or] = ACTIONS(3694), - [anon_sym_PLUS_EQ] = ACTIONS(3697), - [anon_sym_DASH_EQ] = ACTIONS(3697), - [anon_sym_STAR_EQ] = ACTIONS(3697), - [anon_sym_SLASH_EQ] = ACTIONS(3697), - [anon_sym_PERCENT_EQ] = ACTIONS(3697), - [anon_sym_AMP_EQ] = ACTIONS(3697), - [anon_sym_CARET_EQ] = ACTIONS(3697), - [anon_sym_PIPE_EQ] = ACTIONS(3697), - [anon_sym_LT_LT_EQ] = ACTIONS(3697), - [anon_sym_GT_GT_EQ] = ACTIONS(3697), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3697), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3697), - [anon_sym_AMP_AMP] = ACTIONS(3691), - [anon_sym_PIPE_PIPE] = ACTIONS(3691), - [anon_sym_QMARK_QMARK] = ACTIONS(3694), - [anon_sym_from] = ACTIONS(3685), - [anon_sym_into] = ACTIONS(3685), - [anon_sym_join] = ACTIONS(3685), - [anon_sym_on] = ACTIONS(3685), - [anon_sym_equals] = ACTIONS(3685), - [anon_sym_let] = ACTIONS(3685), - [anon_sym_orderby] = ACTIONS(3685), - [anon_sym_ascending] = ACTIONS(3685), - [anon_sym_descending] = ACTIONS(3685), - [anon_sym_group] = ACTIONS(3685), - [anon_sym_by] = ACTIONS(3685), - [anon_sym_select] = ACTIONS(3685), - [anon_sym_as] = ACTIONS(3694), - [anon_sym_is] = ACTIONS(3694), - [anon_sym_DASH_GT] = ACTIONS(3691), - [anon_sym_with] = ACTIONS(3694), + [sym__identifier_token] = ACTIONS(3855), + [anon_sym_alias] = ACTIONS(3857), + [anon_sym_SEMI] = ACTIONS(3893), + [anon_sym_global] = ACTIONS(3857), + [anon_sym_LBRACK] = ACTIONS(3893), + [anon_sym_COLON] = ACTIONS(3893), + [anon_sym_COMMA] = ACTIONS(3893), + [anon_sym_RBRACK] = ACTIONS(3893), + [anon_sym_LPAREN] = ACTIONS(3893), + [anon_sym_RPAREN] = ACTIONS(3893), + [anon_sym_RBRACE] = ACTIONS(3893), + [anon_sym_file] = ACTIONS(3857), + [anon_sym_LT] = ACTIONS(3895), + [anon_sym_GT] = ACTIONS(3895), + [anon_sym_in] = ACTIONS(3895), + [anon_sym_where] = ACTIONS(3857), + [anon_sym_QMARK] = ACTIONS(3895), + [anon_sym_notnull] = ACTIONS(3857), + [anon_sym_unmanaged] = ACTIONS(3857), + [anon_sym_BANG] = ACTIONS(3895), + [anon_sym_PLUS_PLUS] = ACTIONS(3893), + [anon_sym_DASH_DASH] = ACTIONS(3893), + [anon_sym_PLUS] = ACTIONS(3895), + [anon_sym_DASH] = ACTIONS(3895), + [anon_sym_STAR] = ACTIONS(3893), + [anon_sym_SLASH] = ACTIONS(3895), + [anon_sym_PERCENT] = ACTIONS(3893), + [anon_sym_CARET] = ACTIONS(3893), + [anon_sym_PIPE] = ACTIONS(3895), + [anon_sym_AMP] = ACTIONS(3895), + [anon_sym_LT_LT] = ACTIONS(3893), + [anon_sym_GT_GT] = ACTIONS(3895), + [anon_sym_GT_GT_GT] = ACTIONS(3893), + [anon_sym_EQ_EQ] = ACTIONS(3893), + [anon_sym_BANG_EQ] = ACTIONS(3893), + [anon_sym_GT_EQ] = ACTIONS(3893), + [anon_sym_LT_EQ] = ACTIONS(3893), + [anon_sym_DOT] = ACTIONS(3895), + [anon_sym_scoped] = ACTIONS(3857), + [anon_sym_EQ_GT] = ACTIONS(3893), + [anon_sym_var] = ACTIONS(3857), + [anon_sym_yield] = ACTIONS(3857), + [anon_sym_switch] = ACTIONS(3895), + [anon_sym_when] = ACTIONS(3857), + [sym_discard] = ACTIONS(3865), + [anon_sym_DOT_DOT] = ACTIONS(3893), + [anon_sym_and] = ACTIONS(3895), + [anon_sym_or] = ACTIONS(3895), + [anon_sym_AMP_AMP] = ACTIONS(3893), + [anon_sym_PIPE_PIPE] = ACTIONS(3893), + [anon_sym_QMARK_QMARK] = ACTIONS(3893), + [anon_sym_from] = ACTIONS(3857), + [anon_sym_into] = ACTIONS(3895), + [anon_sym_join] = ACTIONS(3857), + [anon_sym_on] = ACTIONS(3857), + [anon_sym_equals] = ACTIONS(3857), + [anon_sym_let] = ACTIONS(3857), + [anon_sym_orderby] = ACTIONS(3857), + [anon_sym_ascending] = ACTIONS(3857), + [anon_sym_descending] = ACTIONS(3857), + [anon_sym_group] = ACTIONS(3857), + [anon_sym_by] = ACTIONS(3857), + [anon_sym_select] = ACTIONS(3857), + [anon_sym_as] = ACTIONS(3895), + [anon_sym_is] = ACTIONS(3895), + [anon_sym_DASH_GT] = ACTIONS(3893), + [anon_sym_with] = ACTIONS(3895), + [aux_sym_preproc_if_token3] = ACTIONS(3893), + [aux_sym_preproc_else_token1] = ACTIONS(3893), + [aux_sym_preproc_elif_token1] = ACTIONS(3893), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -409102,26 +408804,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2290] = { - [sym_modifier] = STATE(3130), - [sym_variable_declaration] = STATE(7371), - [sym__name] = STATE(4390), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(4096), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(4109), - [sym_type] = STATE(5363), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_identifier] = STATE(5715), - [sym__reserved_identifier] = STATE(3691), [sym_preproc_region] = STATE(2290), [sym_preproc_endregion] = STATE(2290), [sym_preproc_line] = STATE(2290), @@ -409131,61 +408813,80 @@ 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), - [aux_sym__class_declaration_initializer_repeat2] = STATE(3100), - [sym__identifier_token] = ACTIONS(2967), - [anon_sym_extern] = ACTIONS(65), - [anon_sym_alias] = ACTIONS(2971), - [anon_sym_global] = ACTIONS(2971), - [anon_sym_unsafe] = ACTIONS(65), - [anon_sym_static] = ACTIONS(65), - [anon_sym_LPAREN] = ACTIONS(2979), - [anon_sym_event] = ACTIONS(3931), - [anon_sym_class] = ACTIONS(3933), - [anon_sym_ref] = ACTIONS(3935), - [anon_sym_struct] = ACTIONS(3937), - [anon_sym_enum] = ACTIONS(3939), - [anon_sym_interface] = ACTIONS(3941), - [anon_sym_delegate] = ACTIONS(3943), - [anon_sym_record] = ACTIONS(3945), - [anon_sym_abstract] = ACTIONS(65), - [anon_sym_async] = ACTIONS(65), - [anon_sym_const] = ACTIONS(65), - [anon_sym_file] = ACTIONS(2991), - [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(2971), - [anon_sym_notnull] = ACTIONS(2971), - [anon_sym_unmanaged] = ACTIONS(2971), - [anon_sym_implicit] = ACTIONS(3947), - [anon_sym_explicit] = ACTIONS(3947), - [anon_sym_scoped] = ACTIONS(2997), - [anon_sym_var] = ACTIONS(2999), - [sym_predefined_type] = ACTIONS(3001), - [anon_sym_yield] = ACTIONS(2971), - [anon_sym_when] = ACTIONS(2971), - [anon_sym_from] = ACTIONS(2971), - [anon_sym_into] = ACTIONS(2971), - [anon_sym_join] = ACTIONS(2971), - [anon_sym_on] = ACTIONS(2971), - [anon_sym_equals] = ACTIONS(2971), - [anon_sym_let] = ACTIONS(2971), - [anon_sym_orderby] = ACTIONS(2971), - [anon_sym_ascending] = ACTIONS(2971), - [anon_sym_descending] = ACTIONS(2971), - [anon_sym_group] = ACTIONS(2971), - [anon_sym_by] = ACTIONS(2971), - [anon_sym_select] = ACTIONS(2971), + [sym__identifier_token] = ACTIONS(3691), + [anon_sym_alias] = ACTIONS(3691), + [anon_sym_global] = ACTIONS(3691), + [anon_sym_EQ] = ACTIONS(3696), + [anon_sym_LBRACK] = ACTIONS(3698), + [anon_sym_COMMA] = ACTIONS(3693), + [anon_sym_LPAREN] = ACTIONS(3698), + [anon_sym_LBRACE] = ACTIONS(3702), + [anon_sym_file] = ACTIONS(3691), + [anon_sym_LT] = ACTIONS(3704), + [anon_sym_GT] = ACTIONS(3704), + [anon_sym_where] = ACTIONS(3708), + [anon_sym_QMARK] = ACTIONS(3704), + [anon_sym_notnull] = ACTIONS(3691), + [anon_sym_unmanaged] = ACTIONS(3691), + [anon_sym_BANG] = ACTIONS(3704), + [anon_sym_PLUS_PLUS] = ACTIONS(3698), + [anon_sym_DASH_DASH] = ACTIONS(3698), + [anon_sym_PLUS] = ACTIONS(3704), + [anon_sym_DASH] = ACTIONS(3704), + [anon_sym_STAR] = ACTIONS(3704), + [anon_sym_SLASH] = ACTIONS(3704), + [anon_sym_PERCENT] = ACTIONS(3704), + [anon_sym_CARET] = ACTIONS(3704), + [anon_sym_PIPE] = ACTIONS(3704), + [anon_sym_AMP] = ACTIONS(3704), + [anon_sym_LT_LT] = ACTIONS(3704), + [anon_sym_GT_GT] = ACTIONS(3704), + [anon_sym_GT_GT_GT] = ACTIONS(3704), + [anon_sym_EQ_EQ] = ACTIONS(3698), + [anon_sym_BANG_EQ] = ACTIONS(3698), + [anon_sym_GT_EQ] = ACTIONS(3698), + [anon_sym_LT_EQ] = ACTIONS(3698), + [anon_sym_DOT] = ACTIONS(3704), + [anon_sym_scoped] = ACTIONS(3691), + [anon_sym_var] = ACTIONS(3691), + [anon_sym_yield] = ACTIONS(3691), + [anon_sym_switch] = ACTIONS(3704), + [anon_sym_when] = ACTIONS(3691), + [sym_discard] = ACTIONS(3691), + [anon_sym_DOT_DOT] = ACTIONS(3698), + [anon_sym_and] = ACTIONS(3708), + [anon_sym_or] = ACTIONS(3708), + [anon_sym_PLUS_EQ] = ACTIONS(3711), + [anon_sym_DASH_EQ] = ACTIONS(3711), + [anon_sym_STAR_EQ] = ACTIONS(3711), + [anon_sym_SLASH_EQ] = ACTIONS(3711), + [anon_sym_PERCENT_EQ] = ACTIONS(3711), + [anon_sym_AMP_EQ] = ACTIONS(3711), + [anon_sym_CARET_EQ] = ACTIONS(3711), + [anon_sym_PIPE_EQ] = ACTIONS(3711), + [anon_sym_LT_LT_EQ] = ACTIONS(3711), + [anon_sym_GT_GT_EQ] = ACTIONS(3711), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3711), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3711), + [anon_sym_AMP_AMP] = ACTIONS(3698), + [anon_sym_PIPE_PIPE] = ACTIONS(3698), + [anon_sym_QMARK_QMARK] = ACTIONS(3704), + [anon_sym_from] = ACTIONS(3708), + [anon_sym_into] = ACTIONS(3691), + [anon_sym_join] = ACTIONS(3708), + [anon_sym_on] = ACTIONS(3691), + [anon_sym_equals] = ACTIONS(3691), + [anon_sym_let] = ACTIONS(3708), + [anon_sym_orderby] = ACTIONS(3708), + [anon_sym_ascending] = ACTIONS(3708), + [anon_sym_descending] = ACTIONS(3708), + [anon_sym_group] = ACTIONS(3708), + [anon_sym_by] = ACTIONS(3691), + [anon_sym_select] = ACTIONS(3708), + [anon_sym_as] = ACTIONS(3704), + [anon_sym_is] = ACTIONS(3704), + [anon_sym_DASH_GT] = ACTIONS(3698), + [anon_sym_with] = ACTIONS(3704), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -409198,10 +408899,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2291] = { - [sym_parameter_list] = STATE(7311), - [sym__lambda_parameters] = STATE(7536), - [sym_identifier] = STATE(7626), - [sym__reserved_identifier] = STATE(2175), [sym_preproc_region] = STATE(2291), [sym_preproc_endregion] = STATE(2291), [sym_preproc_line] = STATE(2291), @@ -409211,77 +408908,80 @@ 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), - [sym__identifier_token] = ACTIONS(3949), - [anon_sym_alias] = ACTIONS(3949), - [anon_sym_SEMI] = ACTIONS(3951), - [anon_sym_global] = ACTIONS(3949), - [anon_sym_LBRACK] = ACTIONS(3951), - [anon_sym_COLON] = ACTIONS(3951), - [anon_sym_COMMA] = ACTIONS(3951), - [anon_sym_RBRACK] = ACTIONS(3951), - [anon_sym_LPAREN] = ACTIONS(3951), - [anon_sym_RPAREN] = ACTIONS(3951), - [anon_sym_LBRACE] = ACTIONS(3951), - [anon_sym_RBRACE] = ACTIONS(3951), - [anon_sym_file] = ACTIONS(3949), - [anon_sym_LT] = ACTIONS(3949), - [anon_sym_GT] = ACTIONS(3949), - [anon_sym_in] = ACTIONS(3949), - [anon_sym_where] = ACTIONS(3949), - [anon_sym_QMARK] = ACTIONS(3949), - [anon_sym_notnull] = ACTIONS(3949), - [anon_sym_unmanaged] = ACTIONS(3949), - [anon_sym_BANG] = ACTIONS(3949), - [anon_sym_PLUS_PLUS] = ACTIONS(3951), - [anon_sym_DASH_DASH] = ACTIONS(3951), - [anon_sym_PLUS] = ACTIONS(3949), - [anon_sym_DASH] = ACTIONS(3949), - [anon_sym_STAR] = ACTIONS(3951), - [anon_sym_SLASH] = ACTIONS(3949), - [anon_sym_PERCENT] = ACTIONS(3951), - [anon_sym_CARET] = ACTIONS(3951), - [anon_sym_PIPE] = ACTIONS(3949), - [anon_sym_AMP] = ACTIONS(3949), - [anon_sym_LT_LT] = ACTIONS(3951), - [anon_sym_GT_GT] = ACTIONS(3949), - [anon_sym_GT_GT_GT] = ACTIONS(3951), - [anon_sym_EQ_EQ] = ACTIONS(3951), - [anon_sym_BANG_EQ] = ACTIONS(3951), - [anon_sym_GT_EQ] = ACTIONS(3951), - [anon_sym_LT_EQ] = ACTIONS(3951), - [anon_sym_DOT] = ACTIONS(3949), - [anon_sym_scoped] = ACTIONS(3949), - [anon_sym_EQ_GT] = ACTIONS(3951), - [anon_sym_var] = ACTIONS(3949), - [anon_sym_yield] = ACTIONS(3949), - [anon_sym_switch] = ACTIONS(3949), - [anon_sym_when] = ACTIONS(3949), - [sym_discard] = ACTIONS(3949), - [anon_sym_DOT_DOT] = ACTIONS(3951), - [anon_sym_and] = ACTIONS(3949), - [anon_sym_or] = ACTIONS(3949), - [anon_sym_AMP_AMP] = ACTIONS(3951), - [anon_sym_PIPE_PIPE] = ACTIONS(3951), - [anon_sym_QMARK_QMARK] = ACTIONS(3951), - [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_ascending] = ACTIONS(3949), - [anon_sym_descending] = 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(3951), - [anon_sym_with] = ACTIONS(3949), - [aux_sym_preproc_if_token3] = ACTIONS(3951), - [aux_sym_preproc_else_token1] = ACTIONS(3951), - [aux_sym_preproc_elif_token1] = ACTIONS(3951), + [sym__identifier_token] = ACTIONS(3691), + [anon_sym_alias] = ACTIONS(3691), + [anon_sym_global] = ACTIONS(3691), + [anon_sym_EQ] = ACTIONS(3696), + [anon_sym_LBRACK] = ACTIONS(3713), + [anon_sym_COLON] = ACTIONS(3693), + [anon_sym_LPAREN] = ACTIONS(3713), + [anon_sym_LBRACE] = ACTIONS(3702), + [anon_sym_file] = ACTIONS(3691), + [anon_sym_LT] = ACTIONS(3696), + [anon_sym_GT] = ACTIONS(3696), + [anon_sym_where] = ACTIONS(3691), + [anon_sym_QMARK] = ACTIONS(3716), + [anon_sym_notnull] = ACTIONS(3691), + [anon_sym_unmanaged] = ACTIONS(3691), + [anon_sym_BANG] = ACTIONS(3696), + [anon_sym_PLUS_PLUS] = ACTIONS(3711), + [anon_sym_DASH_DASH] = ACTIONS(3711), + [anon_sym_PLUS] = ACTIONS(3696), + [anon_sym_DASH] = ACTIONS(3696), + [anon_sym_STAR] = ACTIONS(3716), + [anon_sym_SLASH] = ACTIONS(3696), + [anon_sym_PERCENT] = ACTIONS(3696), + [anon_sym_CARET] = ACTIONS(3696), + [anon_sym_PIPE] = ACTIONS(3696), + [anon_sym_AMP] = ACTIONS(3696), + [anon_sym_LT_LT] = ACTIONS(3696), + [anon_sym_GT_GT] = ACTIONS(3696), + [anon_sym_GT_GT_GT] = ACTIONS(3696), + [anon_sym_EQ_EQ] = ACTIONS(3711), + [anon_sym_BANG_EQ] = ACTIONS(3711), + [anon_sym_GT_EQ] = ACTIONS(3711), + [anon_sym_LT_EQ] = ACTIONS(3711), + [anon_sym_DOT] = ACTIONS(3716), + [anon_sym_scoped] = ACTIONS(3691), + [anon_sym_var] = ACTIONS(3691), + [anon_sym_yield] = ACTIONS(3691), + [anon_sym_switch] = ACTIONS(3696), + [anon_sym_when] = ACTIONS(3708), + [sym_discard] = ACTIONS(3691), + [anon_sym_DOT_DOT] = ACTIONS(3711), + [anon_sym_and] = ACTIONS(3708), + [anon_sym_or] = ACTIONS(3708), + [anon_sym_PLUS_EQ] = ACTIONS(3711), + [anon_sym_DASH_EQ] = ACTIONS(3711), + [anon_sym_STAR_EQ] = ACTIONS(3711), + [anon_sym_SLASH_EQ] = ACTIONS(3711), + [anon_sym_PERCENT_EQ] = ACTIONS(3711), + [anon_sym_AMP_EQ] = ACTIONS(3711), + [anon_sym_CARET_EQ] = ACTIONS(3711), + [anon_sym_PIPE_EQ] = ACTIONS(3711), + [anon_sym_LT_LT_EQ] = ACTIONS(3711), + [anon_sym_GT_GT_EQ] = ACTIONS(3711), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3711), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3711), + [anon_sym_AMP_AMP] = ACTIONS(3711), + [anon_sym_PIPE_PIPE] = ACTIONS(3711), + [anon_sym_QMARK_QMARK] = ACTIONS(3696), + [anon_sym_from] = ACTIONS(3691), + [anon_sym_into] = ACTIONS(3691), + [anon_sym_join] = ACTIONS(3691), + [anon_sym_on] = ACTIONS(3691), + [anon_sym_equals] = ACTIONS(3691), + [anon_sym_let] = ACTIONS(3691), + [anon_sym_orderby] = ACTIONS(3691), + [anon_sym_ascending] = ACTIONS(3691), + [anon_sym_descending] = ACTIONS(3691), + [anon_sym_group] = ACTIONS(3691), + [anon_sym_by] = ACTIONS(3691), + [anon_sym_select] = ACTIONS(3691), + [anon_sym_as] = ACTIONS(3696), + [anon_sym_is] = ACTIONS(3696), + [anon_sym_DASH_GT] = ACTIONS(3713), + [anon_sym_with] = ACTIONS(3696), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -409303,81 +409003,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2292), [sym_preproc_define] = STATE(2292), [sym_preproc_undef] = STATE(2292), - [sym__identifier_token] = ACTIONS(3685), - [anon_sym_alias] = ACTIONS(3685), - [anon_sym_global] = ACTIONS(3685), - [anon_sym_EQ] = ACTIONS(3689), - [anon_sym_LBRACK] = ACTIONS(3691), - [anon_sym_COLON] = ACTIONS(3691), - [anon_sym_LPAREN] = ACTIONS(3691), - [anon_sym_LBRACE] = ACTIONS(3687), - [anon_sym_file] = ACTIONS(3685), - [anon_sym_LT] = ACTIONS(3694), - [anon_sym_GT] = ACTIONS(3694), - [anon_sym_where] = ACTIONS(3685), - [anon_sym_QMARK] = ACTIONS(3694), - [anon_sym_notnull] = ACTIONS(3685), - [anon_sym_unmanaged] = ACTIONS(3685), - [anon_sym_BANG] = ACTIONS(3694), - [anon_sym_PLUS_PLUS] = ACTIONS(3691), - [anon_sym_DASH_DASH] = ACTIONS(3691), - [anon_sym_PLUS] = ACTIONS(3694), - [anon_sym_DASH] = ACTIONS(3694), - [anon_sym_STAR] = ACTIONS(3694), - [anon_sym_SLASH] = ACTIONS(3694), - [anon_sym_PERCENT] = ACTIONS(3694), - [anon_sym_CARET] = ACTIONS(3694), - [anon_sym_PIPE] = ACTIONS(3694), - [anon_sym_AMP] = ACTIONS(3694), - [anon_sym_LT_LT] = ACTIONS(3694), - [anon_sym_GT_GT] = ACTIONS(3694), - [anon_sym_GT_GT_GT] = ACTIONS(3694), - [anon_sym_EQ_EQ] = ACTIONS(3691), - [anon_sym_BANG_EQ] = ACTIONS(3691), - [anon_sym_GT_EQ] = ACTIONS(3691), - [anon_sym_LT_EQ] = ACTIONS(3691), - [anon_sym_DOT] = ACTIONS(3694), - [anon_sym_scoped] = ACTIONS(3685), - [anon_sym_EQ_GT] = ACTIONS(3691), - [anon_sym_var] = ACTIONS(3685), - [anon_sym_yield] = ACTIONS(3685), - [anon_sym_switch] = ACTIONS(3694), - [anon_sym_when] = ACTIONS(3694), - [sym_discard] = ACTIONS(3685), - [anon_sym_DOT_DOT] = ACTIONS(3691), - [anon_sym_and] = ACTIONS(3694), - [anon_sym_or] = ACTIONS(3694), - [anon_sym_PLUS_EQ] = ACTIONS(3697), - [anon_sym_DASH_EQ] = ACTIONS(3697), - [anon_sym_STAR_EQ] = ACTIONS(3697), - [anon_sym_SLASH_EQ] = ACTIONS(3697), - [anon_sym_PERCENT_EQ] = ACTIONS(3697), - [anon_sym_AMP_EQ] = ACTIONS(3697), - [anon_sym_CARET_EQ] = ACTIONS(3697), - [anon_sym_PIPE_EQ] = ACTIONS(3697), - [anon_sym_LT_LT_EQ] = ACTIONS(3697), - [anon_sym_GT_GT_EQ] = ACTIONS(3697), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3697), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3697), - [anon_sym_AMP_AMP] = ACTIONS(3691), - [anon_sym_PIPE_PIPE] = ACTIONS(3691), - [anon_sym_QMARK_QMARK] = ACTIONS(3694), - [anon_sym_from] = ACTIONS(3685), - [anon_sym_into] = ACTIONS(3694), - [anon_sym_join] = ACTIONS(3685), - [anon_sym_on] = ACTIONS(3685), - [anon_sym_equals] = ACTIONS(3685), - [anon_sym_let] = ACTIONS(3685), - [anon_sym_orderby] = ACTIONS(3685), - [anon_sym_ascending] = ACTIONS(3685), - [anon_sym_descending] = ACTIONS(3685), - [anon_sym_group] = ACTIONS(3685), - [anon_sym_by] = ACTIONS(3685), - [anon_sym_select] = ACTIONS(3685), - [anon_sym_as] = ACTIONS(3694), - [anon_sym_is] = ACTIONS(3694), - [anon_sym_DASH_GT] = ACTIONS(3691), - [anon_sym_with] = ACTIONS(3694), + [sym__identifier_token] = ACTIONS(3431), + [anon_sym_alias] = ACTIONS(3431), + [anon_sym_global] = ACTIONS(3431), + [anon_sym_EQ] = ACTIONS(3431), + [anon_sym_LBRACK] = ACTIONS(3429), + [anon_sym_COLON] = ACTIONS(3431), + [anon_sym_LPAREN] = ACTIONS(3429), + [anon_sym_return] = ACTIONS(3933), + [anon_sym_file] = ACTIONS(3431), + [anon_sym_LT] = ACTIONS(3431), + [anon_sym_GT] = ACTIONS(3431), + [anon_sym_where] = ACTIONS(3431), + [anon_sym_QMARK] = ACTIONS(3431), + [anon_sym_notnull] = ACTIONS(3431), + [anon_sym_unmanaged] = ACTIONS(3431), + [anon_sym_BANG] = ACTIONS(3431), + [anon_sym_PLUS_PLUS] = ACTIONS(3429), + [anon_sym_DASH_DASH] = ACTIONS(3429), + [anon_sym_PLUS] = ACTIONS(3431), + [anon_sym_DASH] = ACTIONS(3431), + [anon_sym_STAR] = ACTIONS(3431), + [anon_sym_SLASH] = ACTIONS(3431), + [anon_sym_PERCENT] = ACTIONS(3431), + [anon_sym_CARET] = ACTIONS(3431), + [anon_sym_PIPE] = ACTIONS(3431), + [anon_sym_AMP] = ACTIONS(3431), + [anon_sym_LT_LT] = ACTIONS(3431), + [anon_sym_GT_GT] = ACTIONS(3431), + [anon_sym_GT_GT_GT] = ACTIONS(3431), + [anon_sym_EQ_EQ] = ACTIONS(3429), + [anon_sym_BANG_EQ] = ACTIONS(3429), + [anon_sym_GT_EQ] = ACTIONS(3429), + [anon_sym_LT_EQ] = ACTIONS(3429), + [anon_sym_DOT] = ACTIONS(3431), + [anon_sym_scoped] = ACTIONS(3431), + [anon_sym_EQ_GT] = ACTIONS(3429), + [anon_sym_COLON_COLON] = ACTIONS(3429), + [anon_sym_var] = ACTIONS(3431), + [anon_sym_break] = ACTIONS(3935), + [anon_sym_yield] = ACTIONS(3431), + [anon_sym_switch] = ACTIONS(3431), + [anon_sym_when] = ACTIONS(3431), + [anon_sym_DOT_DOT] = ACTIONS(3429), + [anon_sym_PLUS_EQ] = ACTIONS(3429), + [anon_sym_DASH_EQ] = ACTIONS(3429), + [anon_sym_STAR_EQ] = ACTIONS(3429), + [anon_sym_SLASH_EQ] = ACTIONS(3429), + [anon_sym_PERCENT_EQ] = ACTIONS(3429), + [anon_sym_AMP_EQ] = ACTIONS(3429), + [anon_sym_CARET_EQ] = ACTIONS(3429), + [anon_sym_PIPE_EQ] = ACTIONS(3429), + [anon_sym_LT_LT_EQ] = ACTIONS(3429), + [anon_sym_GT_GT_EQ] = ACTIONS(3429), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3429), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3429), + [anon_sym_AMP_AMP] = ACTIONS(3429), + [anon_sym_PIPE_PIPE] = ACTIONS(3429), + [anon_sym_QMARK_QMARK] = 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), + [anon_sym_as] = ACTIONS(3431), + [anon_sym_is] = ACTIONS(3431), + [anon_sym_DASH_GT] = ACTIONS(3429), + [anon_sym_with] = ACTIONS(3431), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -409399,80 +409098,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(3447), - [anon_sym_alias] = ACTIONS(3447), - [anon_sym_global] = ACTIONS(3447), - [anon_sym_EQ] = ACTIONS(3447), - [anon_sym_LBRACK] = ACTIONS(3445), - [anon_sym_COLON] = ACTIONS(3447), - [anon_sym_LPAREN] = ACTIONS(3445), - [anon_sym_return] = ACTIONS(3953), - [anon_sym_file] = ACTIONS(3447), - [anon_sym_LT] = ACTIONS(3447), - [anon_sym_GT] = ACTIONS(3447), - [anon_sym_where] = ACTIONS(3447), - [anon_sym_QMARK] = ACTIONS(3447), - [anon_sym_notnull] = ACTIONS(3447), - [anon_sym_unmanaged] = ACTIONS(3447), - [anon_sym_BANG] = ACTIONS(3447), - [anon_sym_PLUS_PLUS] = ACTIONS(3445), - [anon_sym_DASH_DASH] = ACTIONS(3445), - [anon_sym_PLUS] = ACTIONS(3447), - [anon_sym_DASH] = ACTIONS(3447), - [anon_sym_STAR] = ACTIONS(3447), - [anon_sym_SLASH] = ACTIONS(3447), - [anon_sym_PERCENT] = ACTIONS(3447), - [anon_sym_CARET] = ACTIONS(3447), - [anon_sym_PIPE] = ACTIONS(3447), - [anon_sym_AMP] = ACTIONS(3447), - [anon_sym_LT_LT] = ACTIONS(3447), - [anon_sym_GT_GT] = ACTIONS(3447), - [anon_sym_GT_GT_GT] = ACTIONS(3447), - [anon_sym_EQ_EQ] = ACTIONS(3445), - [anon_sym_BANG_EQ] = ACTIONS(3445), - [anon_sym_GT_EQ] = ACTIONS(3445), - [anon_sym_LT_EQ] = ACTIONS(3445), - [anon_sym_DOT] = ACTIONS(3447), - [anon_sym_scoped] = ACTIONS(3447), - [anon_sym_EQ_GT] = ACTIONS(3445), - [anon_sym_COLON_COLON] = ACTIONS(3445), - [anon_sym_var] = ACTIONS(3447), - [anon_sym_break] = ACTIONS(3955), - [anon_sym_yield] = ACTIONS(3447), - [anon_sym_switch] = ACTIONS(3447), - [anon_sym_when] = ACTIONS(3447), - [anon_sym_DOT_DOT] = ACTIONS(3445), - [anon_sym_PLUS_EQ] = ACTIONS(3445), - [anon_sym_DASH_EQ] = ACTIONS(3445), - [anon_sym_STAR_EQ] = ACTIONS(3445), - [anon_sym_SLASH_EQ] = ACTIONS(3445), - [anon_sym_PERCENT_EQ] = ACTIONS(3445), - [anon_sym_AMP_EQ] = ACTIONS(3445), - [anon_sym_CARET_EQ] = ACTIONS(3445), - [anon_sym_PIPE_EQ] = ACTIONS(3445), - [anon_sym_LT_LT_EQ] = ACTIONS(3445), - [anon_sym_GT_GT_EQ] = ACTIONS(3445), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3445), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3445), - [anon_sym_AMP_AMP] = ACTIONS(3445), - [anon_sym_PIPE_PIPE] = ACTIONS(3445), - [anon_sym_QMARK_QMARK] = ACTIONS(3447), - [anon_sym_from] = ACTIONS(3447), - [anon_sym_into] = ACTIONS(3447), - [anon_sym_join] = ACTIONS(3447), - [anon_sym_on] = ACTIONS(3447), - [anon_sym_equals] = ACTIONS(3447), - [anon_sym_let] = ACTIONS(3447), - [anon_sym_orderby] = ACTIONS(3447), - [anon_sym_ascending] = ACTIONS(3447), - [anon_sym_descending] = ACTIONS(3447), - [anon_sym_group] = ACTIONS(3447), - [anon_sym_by] = ACTIONS(3447), - [anon_sym_select] = ACTIONS(3447), - [anon_sym_as] = ACTIONS(3447), - [anon_sym_is] = ACTIONS(3447), - [anon_sym_DASH_GT] = ACTIONS(3445), - [anon_sym_with] = ACTIONS(3447), + [sym__identifier_token] = ACTIONS(3669), + [anon_sym_alias] = ACTIONS(3669), + [anon_sym_global] = ACTIONS(3669), + [anon_sym_EQ] = ACTIONS(3673), + [anon_sym_LBRACK] = ACTIONS(3675), + [anon_sym_COLON] = ACTIONS(3675), + [anon_sym_LPAREN] = ACTIONS(3675), + [anon_sym_LBRACE] = ACTIONS(3678), + [anon_sym_file] = ACTIONS(3669), + [anon_sym_LT] = ACTIONS(3673), + [anon_sym_GT] = ACTIONS(3673), + [anon_sym_where] = ACTIONS(3669), + [anon_sym_QMARK] = ACTIONS(3680), + [anon_sym_notnull] = ACTIONS(3669), + [anon_sym_unmanaged] = ACTIONS(3669), + [anon_sym_BANG] = ACTIONS(3673), + [anon_sym_PLUS_PLUS] = ACTIONS(3671), + [anon_sym_DASH_DASH] = ACTIONS(3671), + [anon_sym_PLUS] = ACTIONS(3673), + [anon_sym_DASH] = ACTIONS(3673), + [anon_sym_STAR] = ACTIONS(3680), + [anon_sym_SLASH] = ACTIONS(3673), + [anon_sym_PERCENT] = ACTIONS(3673), + [anon_sym_CARET] = ACTIONS(3673), + [anon_sym_PIPE] = ACTIONS(3673), + [anon_sym_AMP] = ACTIONS(3673), + [anon_sym_LT_LT] = ACTIONS(3673), + [anon_sym_GT_GT] = ACTIONS(3673), + [anon_sym_GT_GT_GT] = ACTIONS(3673), + [anon_sym_EQ_EQ] = ACTIONS(3671), + [anon_sym_BANG_EQ] = ACTIONS(3671), + [anon_sym_GT_EQ] = ACTIONS(3671), + [anon_sym_LT_EQ] = ACTIONS(3671), + [anon_sym_DOT] = ACTIONS(3680), + [anon_sym_scoped] = ACTIONS(3669), + [anon_sym_var] = ACTIONS(3669), + [anon_sym_yield] = ACTIONS(3669), + [anon_sym_switch] = ACTIONS(3673), + [anon_sym_when] = ACTIONS(3669), + [sym_discard] = ACTIONS(3669), + [anon_sym_DOT_DOT] = ACTIONS(3671), + [anon_sym_and] = ACTIONS(3669), + [anon_sym_or] = ACTIONS(3669), + [anon_sym_PLUS_EQ] = ACTIONS(3671), + [anon_sym_DASH_EQ] = ACTIONS(3671), + [anon_sym_STAR_EQ] = ACTIONS(3671), + [anon_sym_SLASH_EQ] = ACTIONS(3671), + [anon_sym_PERCENT_EQ] = ACTIONS(3671), + [anon_sym_AMP_EQ] = ACTIONS(3671), + [anon_sym_CARET_EQ] = ACTIONS(3671), + [anon_sym_PIPE_EQ] = ACTIONS(3671), + [anon_sym_LT_LT_EQ] = ACTIONS(3671), + [anon_sym_GT_GT_EQ] = ACTIONS(3671), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3671), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3671), + [anon_sym_AMP_AMP] = ACTIONS(3671), + [anon_sym_PIPE_PIPE] = ACTIONS(3671), + [anon_sym_QMARK_QMARK] = ACTIONS(3673), + [anon_sym_from] = ACTIONS(3669), + [anon_sym_into] = ACTIONS(3669), + [anon_sym_join] = ACTIONS(3669), + [anon_sym_on] = ACTIONS(3669), + [anon_sym_equals] = ACTIONS(3669), + [anon_sym_let] = ACTIONS(3669), + [anon_sym_orderby] = ACTIONS(3669), + [anon_sym_ascending] = ACTIONS(3669), + [anon_sym_descending] = ACTIONS(3669), + [anon_sym_group] = ACTIONS(3669), + [anon_sym_by] = ACTIONS(3669), + [anon_sym_select] = ACTIONS(3669), + [anon_sym_as] = ACTIONS(3673), + [anon_sym_is] = ACTIONS(3673), + [anon_sym_DASH_GT] = ACTIONS(3675), + [anon_sym_with] = ACTIONS(3673), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -409485,10 +409184,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2294] = { - [sym__variable_designation] = STATE(3234), - [sym_parenthesized_variable_designation] = STATE(3340), - [sym_identifier] = STATE(3345), - [sym__reserved_identifier] = STATE(3177), [sym_preproc_region] = STATE(2294), [sym_preproc_endregion] = STATE(2294), [sym_preproc_line] = STATE(2294), @@ -409498,76 +409193,80 @@ 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), - [sym__identifier_token] = ACTIONS(3875), - [anon_sym_alias] = ACTIONS(3877), - [anon_sym_SEMI] = ACTIONS(3913), - [anon_sym_global] = ACTIONS(3877), - [anon_sym_LBRACK] = ACTIONS(3913), - [anon_sym_COLON] = ACTIONS(3913), - [anon_sym_COMMA] = ACTIONS(3913), - [anon_sym_RBRACK] = ACTIONS(3913), - [anon_sym_LPAREN] = ACTIONS(3913), - [anon_sym_RPAREN] = ACTIONS(3913), - [anon_sym_RBRACE] = ACTIONS(3913), - [anon_sym_file] = ACTIONS(3877), - [anon_sym_LT] = ACTIONS(3915), - [anon_sym_GT] = ACTIONS(3915), - [anon_sym_in] = ACTIONS(3915), - [anon_sym_where] = ACTIONS(3877), - [anon_sym_QMARK] = ACTIONS(3915), - [anon_sym_notnull] = ACTIONS(3877), - [anon_sym_unmanaged] = ACTIONS(3877), - [anon_sym_BANG] = ACTIONS(3915), - [anon_sym_PLUS_PLUS] = ACTIONS(3913), - [anon_sym_DASH_DASH] = ACTIONS(3913), - [anon_sym_PLUS] = ACTIONS(3915), - [anon_sym_DASH] = ACTIONS(3915), - [anon_sym_STAR] = ACTIONS(3913), - [anon_sym_SLASH] = ACTIONS(3915), - [anon_sym_PERCENT] = ACTIONS(3913), - [anon_sym_CARET] = ACTIONS(3913), - [anon_sym_PIPE] = ACTIONS(3915), - [anon_sym_AMP] = ACTIONS(3915), - [anon_sym_LT_LT] = ACTIONS(3913), - [anon_sym_GT_GT] = ACTIONS(3915), - [anon_sym_GT_GT_GT] = ACTIONS(3913), - [anon_sym_EQ_EQ] = ACTIONS(3913), - [anon_sym_BANG_EQ] = ACTIONS(3913), - [anon_sym_GT_EQ] = ACTIONS(3913), - [anon_sym_LT_EQ] = ACTIONS(3913), - [anon_sym_DOT] = ACTIONS(3915), - [anon_sym_scoped] = ACTIONS(3877), - [anon_sym_EQ_GT] = ACTIONS(3913), - [anon_sym_var] = ACTIONS(3877), - [anon_sym_yield] = ACTIONS(3877), - [anon_sym_switch] = ACTIONS(3915), - [anon_sym_when] = ACTIONS(3877), - [sym_discard] = ACTIONS(3885), - [anon_sym_DOT_DOT] = ACTIONS(3913), - [anon_sym_and] = ACTIONS(3915), - [anon_sym_or] = ACTIONS(3915), - [anon_sym_AMP_AMP] = ACTIONS(3913), - [anon_sym_PIPE_PIPE] = ACTIONS(3913), - [anon_sym_QMARK_QMARK] = ACTIONS(3913), - [anon_sym_from] = ACTIONS(3877), - [anon_sym_into] = ACTIONS(3915), - [anon_sym_join] = ACTIONS(3877), - [anon_sym_on] = ACTIONS(3877), - [anon_sym_equals] = ACTIONS(3877), - [anon_sym_let] = ACTIONS(3877), - [anon_sym_orderby] = ACTIONS(3877), - [anon_sym_ascending] = ACTIONS(3877), - [anon_sym_descending] = ACTIONS(3877), - [anon_sym_group] = ACTIONS(3877), - [anon_sym_by] = ACTIONS(3877), - [anon_sym_select] = ACTIONS(3877), - [anon_sym_as] = ACTIONS(3915), - [anon_sym_is] = ACTIONS(3915), - [anon_sym_DASH_GT] = ACTIONS(3913), - [anon_sym_with] = ACTIONS(3915), - [aux_sym_preproc_if_token3] = ACTIONS(3913), - [aux_sym_preproc_else_token1] = ACTIONS(3913), - [aux_sym_preproc_elif_token1] = ACTIONS(3913), + [sym__identifier_token] = ACTIONS(3691), + [anon_sym_alias] = ACTIONS(3691), + [anon_sym_global] = ACTIONS(3691), + [anon_sym_EQ] = ACTIONS(3696), + [anon_sym_LBRACK] = ACTIONS(3713), + [anon_sym_COLON] = ACTIONS(3713), + [anon_sym_LPAREN] = ACTIONS(3713), + [anon_sym_LBRACE] = ACTIONS(3702), + [anon_sym_file] = ACTIONS(3691), + [anon_sym_LT] = ACTIONS(3696), + [anon_sym_GT] = ACTIONS(3696), + [anon_sym_where] = ACTIONS(3691), + [anon_sym_QMARK] = ACTIONS(3716), + [anon_sym_notnull] = ACTIONS(3691), + [anon_sym_unmanaged] = ACTIONS(3691), + [anon_sym_BANG] = ACTIONS(3696), + [anon_sym_PLUS_PLUS] = ACTIONS(3711), + [anon_sym_DASH_DASH] = ACTIONS(3711), + [anon_sym_PLUS] = ACTIONS(3696), + [anon_sym_DASH] = ACTIONS(3696), + [anon_sym_STAR] = ACTIONS(3716), + [anon_sym_SLASH] = ACTIONS(3696), + [anon_sym_PERCENT] = ACTIONS(3696), + [anon_sym_CARET] = ACTIONS(3696), + [anon_sym_PIPE] = ACTIONS(3696), + [anon_sym_AMP] = ACTIONS(3696), + [anon_sym_LT_LT] = ACTIONS(3696), + [anon_sym_GT_GT] = ACTIONS(3696), + [anon_sym_GT_GT_GT] = ACTIONS(3696), + [anon_sym_EQ_EQ] = ACTIONS(3711), + [anon_sym_BANG_EQ] = ACTIONS(3711), + [anon_sym_GT_EQ] = ACTIONS(3711), + [anon_sym_LT_EQ] = ACTIONS(3711), + [anon_sym_DOT] = ACTIONS(3716), + [anon_sym_scoped] = ACTIONS(3691), + [anon_sym_var] = ACTIONS(3691), + [anon_sym_yield] = ACTIONS(3691), + [anon_sym_switch] = ACTIONS(3696), + [anon_sym_when] = ACTIONS(3691), + [sym_discard] = ACTIONS(3691), + [anon_sym_DOT_DOT] = ACTIONS(3711), + [anon_sym_and] = ACTIONS(3691), + [anon_sym_or] = ACTIONS(3691), + [anon_sym_PLUS_EQ] = ACTIONS(3711), + [anon_sym_DASH_EQ] = ACTIONS(3711), + [anon_sym_STAR_EQ] = ACTIONS(3711), + [anon_sym_SLASH_EQ] = ACTIONS(3711), + [anon_sym_PERCENT_EQ] = ACTIONS(3711), + [anon_sym_AMP_EQ] = ACTIONS(3711), + [anon_sym_CARET_EQ] = ACTIONS(3711), + [anon_sym_PIPE_EQ] = ACTIONS(3711), + [anon_sym_LT_LT_EQ] = ACTIONS(3711), + [anon_sym_GT_GT_EQ] = ACTIONS(3711), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3711), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3711), + [anon_sym_AMP_AMP] = ACTIONS(3711), + [anon_sym_PIPE_PIPE] = ACTIONS(3711), + [anon_sym_QMARK_QMARK] = ACTIONS(3696), + [anon_sym_from] = ACTIONS(3691), + [anon_sym_into] = ACTIONS(3691), + [anon_sym_join] = ACTIONS(3691), + [anon_sym_on] = ACTIONS(3691), + [anon_sym_equals] = ACTIONS(3691), + [anon_sym_let] = ACTIONS(3691), + [anon_sym_orderby] = ACTIONS(3691), + [anon_sym_ascending] = ACTIONS(3691), + [anon_sym_descending] = ACTIONS(3691), + [anon_sym_group] = ACTIONS(3691), + [anon_sym_by] = ACTIONS(3691), + [anon_sym_select] = ACTIONS(3691), + [anon_sym_as] = ACTIONS(3696), + [anon_sym_is] = ACTIONS(3696), + [anon_sym_DASH_GT] = ACTIONS(3713), + [anon_sym_with] = ACTIONS(3696), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -409580,6 +409279,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2295] = { + [sym__name] = STATE(2712), + [sym_alias_qualified_name] = STATE(2821), + [sym__simple_name] = STATE(2821), + [sym_qualified_name] = STATE(2821), + [sym_generic_name] = STATE(2698), + [sym_ref_type] = STATE(2713), + [sym__scoped_base_type] = STATE(2715), + [sym_identifier] = STATE(2582), + [sym__reserved_identifier] = STATE(2620), [sym_preproc_region] = STATE(2295), [sym_preproc_endregion] = STATE(2295), [sym_preproc_line] = STATE(2295), @@ -409589,80 +409297,70 @@ 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(3685), - [anon_sym_alias] = ACTIONS(3685), - [anon_sym_global] = ACTIONS(3685), - [anon_sym_EQ] = ACTIONS(3689), - [anon_sym_LBRACK] = ACTIONS(3691), - [anon_sym_COMMA] = ACTIONS(3691), - [anon_sym_LPAREN] = ACTIONS(3691), - [anon_sym_LBRACE] = ACTIONS(3687), - [anon_sym_file] = ACTIONS(3685), - [anon_sym_LT] = ACTIONS(3694), - [anon_sym_GT] = ACTIONS(3694), - [anon_sym_where] = ACTIONS(3694), - [anon_sym_QMARK] = ACTIONS(3694), - [anon_sym_notnull] = ACTIONS(3685), - [anon_sym_unmanaged] = ACTIONS(3685), - [anon_sym_BANG] = ACTIONS(3694), - [anon_sym_PLUS_PLUS] = ACTIONS(3691), - [anon_sym_DASH_DASH] = ACTIONS(3691), - [anon_sym_PLUS] = ACTIONS(3694), - [anon_sym_DASH] = ACTIONS(3694), - [anon_sym_STAR] = ACTIONS(3694), - [anon_sym_SLASH] = ACTIONS(3694), - [anon_sym_PERCENT] = ACTIONS(3694), - [anon_sym_CARET] = ACTIONS(3694), - [anon_sym_PIPE] = ACTIONS(3694), - [anon_sym_AMP] = ACTIONS(3694), - [anon_sym_LT_LT] = ACTIONS(3694), - [anon_sym_GT_GT] = ACTIONS(3694), - [anon_sym_GT_GT_GT] = ACTIONS(3694), - [anon_sym_EQ_EQ] = ACTIONS(3691), - [anon_sym_BANG_EQ] = ACTIONS(3691), - [anon_sym_GT_EQ] = ACTIONS(3691), - [anon_sym_LT_EQ] = ACTIONS(3691), - [anon_sym_DOT] = ACTIONS(3694), - [anon_sym_scoped] = ACTIONS(3685), - [anon_sym_var] = ACTIONS(3685), - [anon_sym_yield] = ACTIONS(3685), - [anon_sym_switch] = ACTIONS(3694), - [anon_sym_when] = ACTIONS(3685), - [sym_discard] = ACTIONS(3685), - [anon_sym_DOT_DOT] = ACTIONS(3691), - [anon_sym_and] = ACTIONS(3694), - [anon_sym_or] = ACTIONS(3694), - [anon_sym_PLUS_EQ] = ACTIONS(3697), - [anon_sym_DASH_EQ] = ACTIONS(3697), - [anon_sym_STAR_EQ] = ACTIONS(3697), - [anon_sym_SLASH_EQ] = ACTIONS(3697), - [anon_sym_PERCENT_EQ] = ACTIONS(3697), - [anon_sym_AMP_EQ] = ACTIONS(3697), - [anon_sym_CARET_EQ] = ACTIONS(3697), - [anon_sym_PIPE_EQ] = ACTIONS(3697), - [anon_sym_LT_LT_EQ] = ACTIONS(3697), - [anon_sym_GT_GT_EQ] = ACTIONS(3697), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3697), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3697), - [anon_sym_AMP_AMP] = ACTIONS(3691), - [anon_sym_PIPE_PIPE] = ACTIONS(3691), - [anon_sym_QMARK_QMARK] = ACTIONS(3694), - [anon_sym_from] = ACTIONS(3694), - [anon_sym_into] = ACTIONS(3685), - [anon_sym_join] = ACTIONS(3694), - [anon_sym_on] = ACTIONS(3685), - [anon_sym_equals] = ACTIONS(3685), - [anon_sym_let] = ACTIONS(3694), - [anon_sym_orderby] = ACTIONS(3694), - [anon_sym_ascending] = ACTIONS(3694), - [anon_sym_descending] = ACTIONS(3694), - [anon_sym_group] = ACTIONS(3694), - [anon_sym_by] = ACTIONS(3685), - [anon_sym_select] = ACTIONS(3694), - [anon_sym_as] = ACTIONS(3694), - [anon_sym_is] = ACTIONS(3694), - [anon_sym_DASH_GT] = ACTIONS(3691), - [anon_sym_with] = ACTIONS(3694), + [sym__identifier_token] = ACTIONS(3626), + [anon_sym_alias] = ACTIONS(3629), + [anon_sym_global] = ACTIONS(3629), + [anon_sym_LBRACK] = ACTIONS(3429), + [anon_sym_COLON] = ACTIONS(3431), + [anon_sym_COMMA] = ACTIONS(3429), + [anon_sym_LPAREN] = ACTIONS(3429), + [anon_sym_ref] = ACTIONS(3632), + [anon_sym_LBRACE] = ACTIONS(3429), + [anon_sym_file] = ACTIONS(3629), + [anon_sym_LT] = ACTIONS(3431), + [anon_sym_GT] = ACTIONS(3431), + [anon_sym_where] = ACTIONS(3629), + [anon_sym_QMARK] = ACTIONS(3431), + [anon_sym_notnull] = ACTIONS(3629), + [anon_sym_unmanaged] = ACTIONS(3629), + [anon_sym_BANG] = ACTIONS(3431), + [anon_sym_PLUS_PLUS] = ACTIONS(3429), + [anon_sym_DASH_DASH] = ACTIONS(3429), + [anon_sym_PLUS] = ACTIONS(3431), + [anon_sym_DASH] = ACTIONS(3431), + [anon_sym_STAR] = ACTIONS(3429), + [anon_sym_SLASH] = ACTIONS(3431), + [anon_sym_PERCENT] = ACTIONS(3429), + [anon_sym_CARET] = ACTIONS(3429), + [anon_sym_PIPE] = ACTIONS(3431), + [anon_sym_AMP] = ACTIONS(3431), + [anon_sym_LT_LT] = ACTIONS(3429), + [anon_sym_GT_GT] = ACTIONS(3431), + [anon_sym_GT_GT_GT] = ACTIONS(3429), + [anon_sym_EQ_EQ] = ACTIONS(3429), + [anon_sym_BANG_EQ] = ACTIONS(3429), + [anon_sym_GT_EQ] = ACTIONS(3429), + [anon_sym_LT_EQ] = ACTIONS(3429), + [anon_sym_DOT] = ACTIONS(3431), + [anon_sym_scoped] = ACTIONS(3629), + [anon_sym_COLON_COLON] = ACTIONS(3429), + [anon_sym_var] = ACTIONS(3629), + [anon_sym_yield] = ACTIONS(3629), + [anon_sym_switch] = ACTIONS(3431), + [anon_sym_when] = ACTIONS(3629), + [sym_discard] = ACTIONS(3431), + [anon_sym_DOT_DOT] = ACTIONS(3429), + [anon_sym_and] = ACTIONS(3431), + [anon_sym_or] = ACTIONS(3431), + [anon_sym_AMP_AMP] = ACTIONS(3429), + [anon_sym_PIPE_PIPE] = ACTIONS(3429), + [anon_sym_QMARK_QMARK] = ACTIONS(3429), + [anon_sym_from] = ACTIONS(3629), + [anon_sym_into] = ACTIONS(3629), + [anon_sym_join] = ACTIONS(3629), + [anon_sym_on] = ACTIONS(3629), + [anon_sym_equals] = ACTIONS(3629), + [anon_sym_let] = ACTIONS(3629), + [anon_sym_orderby] = ACTIONS(3629), + [anon_sym_ascending] = ACTIONS(3629), + [anon_sym_descending] = ACTIONS(3629), + [anon_sym_group] = ACTIONS(3629), + [anon_sym_by] = ACTIONS(3629), + [anon_sym_select] = ACTIONS(3629), + [anon_sym_as] = ACTIONS(3431), + [anon_sym_is] = ACTIONS(3431), + [anon_sym_DASH_GT] = ACTIONS(3429), + [anon_sym_with] = ACTIONS(3431), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -409673,6 +409371,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(3429), }, [2296] = { [sym_preproc_region] = STATE(2296), @@ -409684,80 +409383,80 @@ 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(3699), - [anon_sym_alias] = ACTIONS(3699), - [anon_sym_global] = ACTIONS(3699), - [anon_sym_EQ] = ACTIONS(3704), - [anon_sym_LBRACK] = ACTIONS(3706), - [anon_sym_COMMA] = ACTIONS(3701), - [anon_sym_LPAREN] = ACTIONS(3706), - [anon_sym_LBRACE] = ACTIONS(3710), - [anon_sym_file] = ACTIONS(3699), - [anon_sym_LT] = ACTIONS(3712), - [anon_sym_GT] = ACTIONS(3712), - [anon_sym_where] = ACTIONS(3716), - [anon_sym_QMARK] = ACTIONS(3712), - [anon_sym_notnull] = ACTIONS(3699), - [anon_sym_unmanaged] = ACTIONS(3699), - [anon_sym_BANG] = ACTIONS(3712), - [anon_sym_PLUS_PLUS] = ACTIONS(3706), - [anon_sym_DASH_DASH] = ACTIONS(3706), - [anon_sym_PLUS] = ACTIONS(3712), - [anon_sym_DASH] = ACTIONS(3712), - [anon_sym_STAR] = ACTIONS(3712), - [anon_sym_SLASH] = ACTIONS(3712), - [anon_sym_PERCENT] = ACTIONS(3712), - [anon_sym_CARET] = ACTIONS(3712), - [anon_sym_PIPE] = ACTIONS(3712), - [anon_sym_AMP] = ACTIONS(3712), - [anon_sym_LT_LT] = ACTIONS(3712), - [anon_sym_GT_GT] = ACTIONS(3712), - [anon_sym_GT_GT_GT] = ACTIONS(3712), - [anon_sym_EQ_EQ] = ACTIONS(3706), - [anon_sym_BANG_EQ] = ACTIONS(3706), - [anon_sym_GT_EQ] = ACTIONS(3706), - [anon_sym_LT_EQ] = ACTIONS(3706), - [anon_sym_DOT] = ACTIONS(3712), - [anon_sym_scoped] = ACTIONS(3699), - [anon_sym_var] = ACTIONS(3699), - [anon_sym_yield] = ACTIONS(3699), - [anon_sym_switch] = ACTIONS(3712), - [anon_sym_when] = ACTIONS(3699), - [sym_discard] = ACTIONS(3699), - [anon_sym_DOT_DOT] = ACTIONS(3706), - [anon_sym_and] = ACTIONS(3716), - [anon_sym_or] = ACTIONS(3716), - [anon_sym_PLUS_EQ] = ACTIONS(3719), - [anon_sym_DASH_EQ] = ACTIONS(3719), - [anon_sym_STAR_EQ] = ACTIONS(3719), - [anon_sym_SLASH_EQ] = ACTIONS(3719), - [anon_sym_PERCENT_EQ] = ACTIONS(3719), - [anon_sym_AMP_EQ] = ACTIONS(3719), - [anon_sym_CARET_EQ] = ACTIONS(3719), - [anon_sym_PIPE_EQ] = ACTIONS(3719), - [anon_sym_LT_LT_EQ] = ACTIONS(3719), - [anon_sym_GT_GT_EQ] = ACTIONS(3719), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3719), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3719), - [anon_sym_AMP_AMP] = ACTIONS(3706), - [anon_sym_PIPE_PIPE] = ACTIONS(3706), - [anon_sym_QMARK_QMARK] = ACTIONS(3712), - [anon_sym_from] = ACTIONS(3716), - [anon_sym_into] = ACTIONS(3699), - [anon_sym_join] = ACTIONS(3716), - [anon_sym_on] = ACTIONS(3699), - [anon_sym_equals] = ACTIONS(3699), - [anon_sym_let] = ACTIONS(3716), - [anon_sym_orderby] = ACTIONS(3716), - [anon_sym_ascending] = ACTIONS(3716), - [anon_sym_descending] = ACTIONS(3716), - [anon_sym_group] = ACTIONS(3716), - [anon_sym_by] = ACTIONS(3699), - [anon_sym_select] = ACTIONS(3716), - [anon_sym_as] = ACTIONS(3712), - [anon_sym_is] = ACTIONS(3712), - [anon_sym_DASH_GT] = ACTIONS(3706), - [anon_sym_with] = ACTIONS(3712), + [sym__identifier_token] = ACTIONS(3691), + [anon_sym_alias] = ACTIONS(3691), + [anon_sym_global] = ACTIONS(3691), + [anon_sym_EQ] = ACTIONS(3696), + [anon_sym_LBRACK] = ACTIONS(3713), + [anon_sym_COLON] = ACTIONS(3702), + [anon_sym_LPAREN] = ACTIONS(3713), + [anon_sym_LBRACE] = ACTIONS(3702), + [anon_sym_file] = ACTIONS(3691), + [anon_sym_LT] = ACTIONS(3696), + [anon_sym_GT] = ACTIONS(3696), + [anon_sym_where] = ACTIONS(3691), + [anon_sym_QMARK] = ACTIONS(3716), + [anon_sym_notnull] = ACTIONS(3691), + [anon_sym_unmanaged] = ACTIONS(3691), + [anon_sym_BANG] = ACTIONS(3696), + [anon_sym_PLUS_PLUS] = ACTIONS(3711), + [anon_sym_DASH_DASH] = ACTIONS(3711), + [anon_sym_PLUS] = ACTIONS(3696), + [anon_sym_DASH] = ACTIONS(3696), + [anon_sym_STAR] = ACTIONS(3716), + [anon_sym_SLASH] = ACTIONS(3696), + [anon_sym_PERCENT] = ACTIONS(3696), + [anon_sym_CARET] = ACTIONS(3696), + [anon_sym_PIPE] = ACTIONS(3696), + [anon_sym_AMP] = ACTIONS(3696), + [anon_sym_LT_LT] = ACTIONS(3696), + [anon_sym_GT_GT] = ACTIONS(3696), + [anon_sym_GT_GT_GT] = ACTIONS(3696), + [anon_sym_EQ_EQ] = ACTIONS(3711), + [anon_sym_BANG_EQ] = ACTIONS(3711), + [anon_sym_GT_EQ] = ACTIONS(3711), + [anon_sym_LT_EQ] = ACTIONS(3711), + [anon_sym_DOT] = ACTIONS(3716), + [anon_sym_scoped] = ACTIONS(3691), + [anon_sym_var] = ACTIONS(3691), + [anon_sym_yield] = ACTIONS(3691), + [anon_sym_switch] = ACTIONS(3696), + [anon_sym_when] = ACTIONS(3691), + [sym_discard] = ACTIONS(3691), + [anon_sym_DOT_DOT] = ACTIONS(3711), + [anon_sym_and] = ACTIONS(3691), + [anon_sym_or] = ACTIONS(3691), + [anon_sym_PLUS_EQ] = ACTIONS(3711), + [anon_sym_DASH_EQ] = ACTIONS(3711), + [anon_sym_STAR_EQ] = ACTIONS(3711), + [anon_sym_SLASH_EQ] = ACTIONS(3711), + [anon_sym_PERCENT_EQ] = ACTIONS(3711), + [anon_sym_AMP_EQ] = ACTIONS(3711), + [anon_sym_CARET_EQ] = ACTIONS(3711), + [anon_sym_PIPE_EQ] = ACTIONS(3711), + [anon_sym_LT_LT_EQ] = ACTIONS(3711), + [anon_sym_GT_GT_EQ] = ACTIONS(3711), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3711), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3711), + [anon_sym_AMP_AMP] = ACTIONS(3711), + [anon_sym_PIPE_PIPE] = ACTIONS(3711), + [anon_sym_QMARK_QMARK] = ACTIONS(3696), + [anon_sym_from] = ACTIONS(3691), + [anon_sym_into] = ACTIONS(3691), + [anon_sym_join] = ACTIONS(3691), + [anon_sym_on] = ACTIONS(3691), + [anon_sym_equals] = ACTIONS(3691), + [anon_sym_let] = ACTIONS(3691), + [anon_sym_orderby] = ACTIONS(3691), + [anon_sym_ascending] = ACTIONS(3691), + [anon_sym_descending] = ACTIONS(3691), + [anon_sym_group] = ACTIONS(3691), + [anon_sym_by] = ACTIONS(3691), + [anon_sym_select] = ACTIONS(3691), + [anon_sym_as] = ACTIONS(3696), + [anon_sym_is] = ACTIONS(3696), + [anon_sym_DASH_GT] = ACTIONS(3713), + [anon_sym_with] = ACTIONS(3696), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -409770,6 +409469,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2297] = { + [sym_type_argument_list] = STATE(2171), [sym_preproc_region] = STATE(2297), [sym_preproc_endregion] = STATE(2297), [sym_preproc_line] = STATE(2297), @@ -409779,80 +409479,79 @@ 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(3619), - [anon_sym_alias] = ACTIONS(3619), - [anon_sym_global] = ACTIONS(3619), - [anon_sym_EQ] = ACTIONS(3447), - [anon_sym_LBRACK] = ACTIONS(3445), - [anon_sym_COLON] = ACTIONS(3447), - [anon_sym_COMMA] = ACTIONS(3616), - [anon_sym_LPAREN] = ACTIONS(3616), - [anon_sym_RPAREN] = ACTIONS(3445), - [anon_sym_file] = ACTIONS(3619), - [anon_sym_LT] = ACTIONS(3447), - [anon_sym_GT] = ACTIONS(3447), - [anon_sym_where] = ACTIONS(3619), - [anon_sym_QMARK] = ACTIONS(3447), - [anon_sym_notnull] = ACTIONS(3619), - [anon_sym_unmanaged] = ACTIONS(3619), - [anon_sym_BANG] = ACTIONS(3447), - [anon_sym_PLUS_PLUS] = ACTIONS(3445), - [anon_sym_DASH_DASH] = ACTIONS(3445), - [anon_sym_PLUS] = ACTIONS(3447), - [anon_sym_DASH] = ACTIONS(3447), - [anon_sym_STAR] = ACTIONS(3447), - [anon_sym_SLASH] = ACTIONS(3447), - [anon_sym_PERCENT] = ACTIONS(3447), - [anon_sym_CARET] = ACTIONS(3447), - [anon_sym_PIPE] = ACTIONS(3447), - [anon_sym_AMP] = ACTIONS(3447), - [anon_sym_LT_LT] = ACTIONS(3447), - [anon_sym_GT_GT] = ACTIONS(3447), - [anon_sym_GT_GT_GT] = ACTIONS(3447), - [anon_sym_EQ_EQ] = ACTIONS(3445), - [anon_sym_BANG_EQ] = ACTIONS(3445), - [anon_sym_GT_EQ] = ACTIONS(3445), - [anon_sym_LT_EQ] = ACTIONS(3445), - [anon_sym_DOT] = ACTIONS(3447), - [anon_sym_scoped] = ACTIONS(3619), - [anon_sym_EQ_GT] = ACTIONS(3445), - [anon_sym_COLON_COLON] = ACTIONS(3445), - [anon_sym_var] = ACTIONS(3619), - [anon_sym_yield] = ACTIONS(3619), - [anon_sym_switch] = ACTIONS(3447), - [anon_sym_when] = ACTIONS(3619), - [anon_sym_DOT_DOT] = ACTIONS(3445), - [anon_sym_PLUS_EQ] = ACTIONS(3445), - [anon_sym_DASH_EQ] = ACTIONS(3445), - [anon_sym_STAR_EQ] = ACTIONS(3445), - [anon_sym_SLASH_EQ] = ACTIONS(3445), - [anon_sym_PERCENT_EQ] = ACTIONS(3445), - [anon_sym_AMP_EQ] = ACTIONS(3445), - [anon_sym_CARET_EQ] = ACTIONS(3445), - [anon_sym_PIPE_EQ] = ACTIONS(3445), - [anon_sym_LT_LT_EQ] = ACTIONS(3445), - [anon_sym_GT_GT_EQ] = ACTIONS(3445), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3445), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3445), - [anon_sym_AMP_AMP] = ACTIONS(3445), - [anon_sym_PIPE_PIPE] = ACTIONS(3445), - [anon_sym_QMARK_QMARK] = ACTIONS(3447), - [anon_sym_from] = ACTIONS(3619), - [anon_sym_into] = ACTIONS(3619), - [anon_sym_join] = ACTIONS(3619), - [anon_sym_on] = ACTIONS(3619), - [anon_sym_equals] = ACTIONS(3619), - [anon_sym_let] = ACTIONS(3619), - [anon_sym_orderby] = ACTIONS(3619), - [anon_sym_ascending] = ACTIONS(3619), - [anon_sym_descending] = ACTIONS(3619), - [anon_sym_group] = ACTIONS(3619), - [anon_sym_by] = ACTIONS(3619), - [anon_sym_select] = ACTIONS(3619), - [anon_sym_as] = ACTIONS(3447), - [anon_sym_is] = ACTIONS(3447), - [anon_sym_DASH_GT] = ACTIONS(3445), - [anon_sym_with] = ACTIONS(3447), + [sym__identifier_token] = ACTIONS(3638), + [anon_sym_alias] = ACTIONS(3638), + [anon_sym_global] = ACTIONS(3638), + [anon_sym_EQ] = ACTIONS(3937), + [anon_sym_LBRACK] = ACTIONS(3640), + [anon_sym_COMMA] = ACTIONS(3640), + [anon_sym_LPAREN] = ACTIONS(3640), + [anon_sym_RBRACE] = ACTIONS(3640), + [anon_sym_file] = ACTIONS(3638), + [anon_sym_LT] = ACTIONS(3648), + [anon_sym_GT] = ACTIONS(3638), + [anon_sym_where] = ACTIONS(3638), + [anon_sym_QMARK] = ACTIONS(3638), + [anon_sym_notnull] = ACTIONS(3638), + [anon_sym_unmanaged] = ACTIONS(3638), + [anon_sym_BANG] = ACTIONS(3638), + [anon_sym_PLUS_PLUS] = ACTIONS(3640), + [anon_sym_DASH_DASH] = ACTIONS(3640), + [anon_sym_PLUS] = ACTIONS(3638), + [anon_sym_DASH] = ACTIONS(3638), + [anon_sym_STAR] = ACTIONS(3638), + [anon_sym_SLASH] = ACTIONS(3638), + [anon_sym_PERCENT] = ACTIONS(3638), + [anon_sym_CARET] = ACTIONS(3638), + [anon_sym_PIPE] = ACTIONS(3638), + [anon_sym_AMP] = ACTIONS(3638), + [anon_sym_LT_LT] = ACTIONS(3638), + [anon_sym_GT_GT] = ACTIONS(3638), + [anon_sym_GT_GT_GT] = ACTIONS(3638), + [anon_sym_EQ_EQ] = ACTIONS(3640), + [anon_sym_BANG_EQ] = ACTIONS(3640), + [anon_sym_GT_EQ] = ACTIONS(3640), + [anon_sym_LT_EQ] = ACTIONS(3640), + [anon_sym_DOT] = ACTIONS(3638), + [anon_sym_scoped] = ACTIONS(3638), + [anon_sym_EQ_GT] = ACTIONS(3651), + [anon_sym_COLON_COLON] = ACTIONS(3653), + [anon_sym_var] = ACTIONS(3638), + [anon_sym_yield] = ACTIONS(3638), + [anon_sym_switch] = ACTIONS(3638), + [anon_sym_when] = ACTIONS(3638), + [anon_sym_DOT_DOT] = ACTIONS(3640), + [anon_sym_PLUS_EQ] = ACTIONS(3640), + [anon_sym_DASH_EQ] = ACTIONS(3640), + [anon_sym_STAR_EQ] = ACTIONS(3640), + [anon_sym_SLASH_EQ] = ACTIONS(3640), + [anon_sym_PERCENT_EQ] = ACTIONS(3640), + [anon_sym_AMP_EQ] = ACTIONS(3640), + [anon_sym_CARET_EQ] = ACTIONS(3640), + [anon_sym_PIPE_EQ] = ACTIONS(3640), + [anon_sym_LT_LT_EQ] = ACTIONS(3640), + [anon_sym_GT_GT_EQ] = ACTIONS(3640), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3640), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3640), + [anon_sym_AMP_AMP] = ACTIONS(3640), + [anon_sym_PIPE_PIPE] = ACTIONS(3640), + [anon_sym_QMARK_QMARK] = ACTIONS(3638), + [anon_sym_from] = ACTIONS(3638), + [anon_sym_into] = ACTIONS(3638), + [anon_sym_join] = ACTIONS(3638), + [anon_sym_on] = ACTIONS(3638), + [anon_sym_equals] = ACTIONS(3638), + [anon_sym_let] = ACTIONS(3638), + [anon_sym_orderby] = ACTIONS(3638), + [anon_sym_ascending] = ACTIONS(3638), + [anon_sym_descending] = ACTIONS(3638), + [anon_sym_group] = ACTIONS(3638), + [anon_sym_by] = ACTIONS(3638), + [anon_sym_select] = ACTIONS(3638), + [anon_sym_as] = ACTIONS(3638), + [anon_sym_is] = ACTIONS(3638), + [anon_sym_DASH_GT] = ACTIONS(3640), + [anon_sym_with] = ACTIONS(3638), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -409865,10 +409564,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2298] = { - [sym__variable_designation] = STATE(3245), - [sym_parenthesized_variable_designation] = STATE(3340), - [sym_identifier] = STATE(3345), - [sym__reserved_identifier] = STATE(3177), [sym_preproc_region] = STATE(2298), [sym_preproc_endregion] = STATE(2298), [sym_preproc_line] = STATE(2298), @@ -409878,76 +409573,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2298), [sym_preproc_define] = STATE(2298), [sym_preproc_undef] = STATE(2298), - [sym__identifier_token] = ACTIONS(3875), - [anon_sym_alias] = ACTIONS(3877), - [anon_sym_SEMI] = ACTIONS(3957), - [anon_sym_global] = ACTIONS(3877), - [anon_sym_LBRACK] = ACTIONS(3957), - [anon_sym_COLON] = ACTIONS(3957), - [anon_sym_COMMA] = ACTIONS(3957), - [anon_sym_RBRACK] = ACTIONS(3957), - [anon_sym_LPAREN] = ACTIONS(3957), - [anon_sym_RPAREN] = ACTIONS(3957), - [anon_sym_RBRACE] = ACTIONS(3957), - [anon_sym_file] = ACTIONS(3877), - [anon_sym_LT] = ACTIONS(3959), - [anon_sym_GT] = ACTIONS(3959), - [anon_sym_in] = ACTIONS(3959), - [anon_sym_where] = ACTIONS(3877), - [anon_sym_QMARK] = ACTIONS(3959), - [anon_sym_notnull] = ACTIONS(3877), - [anon_sym_unmanaged] = ACTIONS(3877), - [anon_sym_BANG] = ACTIONS(3959), - [anon_sym_PLUS_PLUS] = ACTIONS(3957), - [anon_sym_DASH_DASH] = ACTIONS(3957), - [anon_sym_PLUS] = ACTIONS(3959), - [anon_sym_DASH] = ACTIONS(3959), - [anon_sym_STAR] = ACTIONS(3957), - [anon_sym_SLASH] = ACTIONS(3959), - [anon_sym_PERCENT] = ACTIONS(3957), - [anon_sym_CARET] = ACTIONS(3957), - [anon_sym_PIPE] = ACTIONS(3959), - [anon_sym_AMP] = ACTIONS(3959), - [anon_sym_LT_LT] = ACTIONS(3957), - [anon_sym_GT_GT] = ACTIONS(3959), - [anon_sym_GT_GT_GT] = ACTIONS(3957), - [anon_sym_EQ_EQ] = ACTIONS(3957), - [anon_sym_BANG_EQ] = ACTIONS(3957), - [anon_sym_GT_EQ] = ACTIONS(3957), - [anon_sym_LT_EQ] = ACTIONS(3957), - [anon_sym_DOT] = ACTIONS(3959), - [anon_sym_scoped] = ACTIONS(3877), - [anon_sym_EQ_GT] = ACTIONS(3957), - [anon_sym_var] = ACTIONS(3877), - [anon_sym_yield] = ACTIONS(3877), - [anon_sym_switch] = ACTIONS(3959), - [anon_sym_when] = ACTIONS(3877), - [sym_discard] = ACTIONS(3885), - [anon_sym_DOT_DOT] = ACTIONS(3957), - [anon_sym_and] = ACTIONS(3959), - [anon_sym_or] = ACTIONS(3959), - [anon_sym_AMP_AMP] = ACTIONS(3957), - [anon_sym_PIPE_PIPE] = ACTIONS(3957), - [anon_sym_QMARK_QMARK] = ACTIONS(3957), - [anon_sym_from] = ACTIONS(3877), - [anon_sym_into] = ACTIONS(3959), - [anon_sym_join] = ACTIONS(3877), - [anon_sym_on] = ACTIONS(3877), - [anon_sym_equals] = ACTIONS(3877), - [anon_sym_let] = ACTIONS(3877), - [anon_sym_orderby] = ACTIONS(3877), - [anon_sym_ascending] = ACTIONS(3877), - [anon_sym_descending] = ACTIONS(3877), - [anon_sym_group] = ACTIONS(3877), - [anon_sym_by] = ACTIONS(3877), - [anon_sym_select] = ACTIONS(3877), - [anon_sym_as] = ACTIONS(3959), - [anon_sym_is] = ACTIONS(3959), - [anon_sym_DASH_GT] = ACTIONS(3957), - [anon_sym_with] = ACTIONS(3959), - [aux_sym_preproc_if_token3] = ACTIONS(3957), - [aux_sym_preproc_else_token1] = ACTIONS(3957), - [aux_sym_preproc_elif_token1] = ACTIONS(3957), + [sym__identifier_token] = ACTIONS(3669), + [anon_sym_alias] = ACTIONS(3669), + [anon_sym_global] = ACTIONS(3669), + [anon_sym_EQ] = ACTIONS(3673), + [anon_sym_LBRACK] = ACTIONS(3675), + [anon_sym_COMMA] = ACTIONS(3675), + [anon_sym_LPAREN] = ACTIONS(3675), + [anon_sym_LBRACE] = ACTIONS(3678), + [anon_sym_file] = ACTIONS(3669), + [anon_sym_LT] = ACTIONS(3680), + [anon_sym_GT] = ACTIONS(3680), + [anon_sym_where] = ACTIONS(3680), + [anon_sym_QMARK] = ACTIONS(3680), + [anon_sym_notnull] = ACTIONS(3669), + [anon_sym_unmanaged] = ACTIONS(3669), + [anon_sym_BANG] = ACTIONS(3680), + [anon_sym_PLUS_PLUS] = ACTIONS(3675), + [anon_sym_DASH_DASH] = ACTIONS(3675), + [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(3675), + [anon_sym_BANG_EQ] = ACTIONS(3675), + [anon_sym_GT_EQ] = ACTIONS(3675), + [anon_sym_LT_EQ] = ACTIONS(3675), + [anon_sym_DOT] = ACTIONS(3680), + [anon_sym_scoped] = ACTIONS(3669), + [anon_sym_var] = ACTIONS(3669), + [anon_sym_yield] = ACTIONS(3669), + [anon_sym_switch] = ACTIONS(3680), + [anon_sym_when] = ACTIONS(3669), + [sym_discard] = ACTIONS(3669), + [anon_sym_DOT_DOT] = ACTIONS(3675), + [anon_sym_and] = ACTIONS(3680), + [anon_sym_or] = ACTIONS(3680), + [anon_sym_PLUS_EQ] = ACTIONS(3671), + [anon_sym_DASH_EQ] = ACTIONS(3671), + [anon_sym_STAR_EQ] = ACTIONS(3671), + [anon_sym_SLASH_EQ] = ACTIONS(3671), + [anon_sym_PERCENT_EQ] = ACTIONS(3671), + [anon_sym_AMP_EQ] = ACTIONS(3671), + [anon_sym_CARET_EQ] = ACTIONS(3671), + [anon_sym_PIPE_EQ] = ACTIONS(3671), + [anon_sym_LT_LT_EQ] = ACTIONS(3671), + [anon_sym_GT_GT_EQ] = ACTIONS(3671), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3671), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3671), + [anon_sym_AMP_AMP] = ACTIONS(3675), + [anon_sym_PIPE_PIPE] = ACTIONS(3675), + [anon_sym_QMARK_QMARK] = ACTIONS(3680), + [anon_sym_from] = ACTIONS(3680), + [anon_sym_into] = ACTIONS(3669), + [anon_sym_join] = ACTIONS(3680), + [anon_sym_on] = ACTIONS(3669), + [anon_sym_equals] = ACTIONS(3669), + [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(3669), + [anon_sym_select] = ACTIONS(3680), + [anon_sym_as] = ACTIONS(3680), + [anon_sym_is] = ACTIONS(3680), + [anon_sym_DASH_GT] = ACTIONS(3675), + [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), @@ -409960,10 +409659,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2299] = { - [sym__variable_designation] = STATE(3318), - [sym_parenthesized_variable_designation] = STATE(3340), - [sym_identifier] = STATE(3345), - [sym__reserved_identifier] = STATE(3177), [sym_preproc_region] = STATE(2299), [sym_preproc_endregion] = STATE(2299), [sym_preproc_line] = STATE(2299), @@ -409973,76 +409668,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2299), [sym_preproc_define] = STATE(2299), [sym_preproc_undef] = STATE(2299), - [sym__identifier_token] = ACTIONS(3875), - [anon_sym_alias] = ACTIONS(3877), - [anon_sym_SEMI] = ACTIONS(3961), - [anon_sym_global] = ACTIONS(3877), - [anon_sym_LBRACK] = ACTIONS(3961), - [anon_sym_COLON] = ACTIONS(3961), - [anon_sym_COMMA] = ACTIONS(3961), - [anon_sym_RBRACK] = ACTIONS(3961), - [anon_sym_LPAREN] = ACTIONS(3961), - [anon_sym_RPAREN] = ACTIONS(3961), - [anon_sym_RBRACE] = ACTIONS(3961), - [anon_sym_file] = ACTIONS(3877), - [anon_sym_LT] = ACTIONS(3963), - [anon_sym_GT] = ACTIONS(3963), - [anon_sym_in] = ACTIONS(3963), - [anon_sym_where] = ACTIONS(3877), - [anon_sym_QMARK] = ACTIONS(3963), - [anon_sym_notnull] = ACTIONS(3877), - [anon_sym_unmanaged] = ACTIONS(3877), - [anon_sym_BANG] = ACTIONS(3963), - [anon_sym_PLUS_PLUS] = ACTIONS(3961), - [anon_sym_DASH_DASH] = ACTIONS(3961), - [anon_sym_PLUS] = ACTIONS(3963), - [anon_sym_DASH] = ACTIONS(3963), - [anon_sym_STAR] = ACTIONS(3961), - [anon_sym_SLASH] = ACTIONS(3963), - [anon_sym_PERCENT] = ACTIONS(3961), - [anon_sym_CARET] = ACTIONS(3961), - [anon_sym_PIPE] = ACTIONS(3963), - [anon_sym_AMP] = ACTIONS(3963), - [anon_sym_LT_LT] = ACTIONS(3961), - [anon_sym_GT_GT] = ACTIONS(3963), - [anon_sym_GT_GT_GT] = ACTIONS(3961), - [anon_sym_EQ_EQ] = ACTIONS(3961), - [anon_sym_BANG_EQ] = ACTIONS(3961), - [anon_sym_GT_EQ] = ACTIONS(3961), - [anon_sym_LT_EQ] = ACTIONS(3961), - [anon_sym_DOT] = ACTIONS(3963), - [anon_sym_scoped] = ACTIONS(3877), - [anon_sym_EQ_GT] = ACTIONS(3961), - [anon_sym_var] = ACTIONS(3877), - [anon_sym_yield] = ACTIONS(3877), - [anon_sym_switch] = ACTIONS(3963), - [anon_sym_when] = ACTIONS(3877), - [sym_discard] = ACTIONS(3885), - [anon_sym_DOT_DOT] = ACTIONS(3961), - [anon_sym_and] = ACTIONS(3963), - [anon_sym_or] = ACTIONS(3963), - [anon_sym_AMP_AMP] = ACTIONS(3961), - [anon_sym_PIPE_PIPE] = ACTIONS(3961), - [anon_sym_QMARK_QMARK] = ACTIONS(3961), - [anon_sym_from] = ACTIONS(3877), - [anon_sym_into] = ACTIONS(3963), - [anon_sym_join] = ACTIONS(3877), - [anon_sym_on] = ACTIONS(3877), - [anon_sym_equals] = ACTIONS(3877), - [anon_sym_let] = ACTIONS(3877), - [anon_sym_orderby] = ACTIONS(3877), - [anon_sym_ascending] = ACTIONS(3877), - [anon_sym_descending] = ACTIONS(3877), - [anon_sym_group] = ACTIONS(3877), - [anon_sym_by] = ACTIONS(3877), - [anon_sym_select] = ACTIONS(3877), - [anon_sym_as] = ACTIONS(3963), - [anon_sym_is] = ACTIONS(3963), - [anon_sym_DASH_GT] = ACTIONS(3961), - [anon_sym_with] = ACTIONS(3963), - [aux_sym_preproc_if_token3] = ACTIONS(3961), - [aux_sym_preproc_else_token1] = ACTIONS(3961), - [aux_sym_preproc_elif_token1] = ACTIONS(3961), + [sym__identifier_token] = ACTIONS(3669), + [anon_sym_alias] = ACTIONS(3669), + [anon_sym_global] = ACTIONS(3669), + [anon_sym_EQ] = ACTIONS(3673), + [anon_sym_LBRACK] = ACTIONS(3675), + [anon_sym_COMMA] = ACTIONS(3675), + [anon_sym_LPAREN] = ACTIONS(3675), + [anon_sym_LBRACE] = ACTIONS(3678), + [anon_sym_file] = ACTIONS(3669), + [anon_sym_LT] = ACTIONS(3680), + [anon_sym_GT] = ACTIONS(3680), + [anon_sym_where] = ACTIONS(3680), + [anon_sym_QMARK] = ACTIONS(3680), + [anon_sym_notnull] = ACTIONS(3669), + [anon_sym_unmanaged] = ACTIONS(3669), + [anon_sym_BANG] = ACTIONS(3680), + [anon_sym_PLUS_PLUS] = ACTIONS(3675), + [anon_sym_DASH_DASH] = ACTIONS(3675), + [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(3675), + [anon_sym_BANG_EQ] = ACTIONS(3675), + [anon_sym_GT_EQ] = ACTIONS(3675), + [anon_sym_LT_EQ] = ACTIONS(3675), + [anon_sym_DOT] = ACTIONS(3680), + [anon_sym_scoped] = ACTIONS(3669), + [anon_sym_var] = ACTIONS(3669), + [anon_sym_yield] = ACTIONS(3669), + [anon_sym_switch] = ACTIONS(3680), + [anon_sym_when] = ACTIONS(3669), + [sym_discard] = ACTIONS(3669), + [anon_sym_DOT_DOT] = ACTIONS(3675), + [anon_sym_and] = ACTIONS(3680), + [anon_sym_or] = ACTIONS(3680), + [anon_sym_PLUS_EQ] = ACTIONS(3671), + [anon_sym_DASH_EQ] = ACTIONS(3671), + [anon_sym_STAR_EQ] = ACTIONS(3671), + [anon_sym_SLASH_EQ] = ACTIONS(3671), + [anon_sym_PERCENT_EQ] = ACTIONS(3671), + [anon_sym_AMP_EQ] = ACTIONS(3671), + [anon_sym_CARET_EQ] = ACTIONS(3671), + [anon_sym_PIPE_EQ] = ACTIONS(3671), + [anon_sym_LT_LT_EQ] = ACTIONS(3671), + [anon_sym_GT_GT_EQ] = ACTIONS(3671), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3671), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3671), + [anon_sym_AMP_AMP] = ACTIONS(3675), + [anon_sym_PIPE_PIPE] = ACTIONS(3675), + [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(3669), + [anon_sym_equals] = ACTIONS(3669), + [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(3669), + [anon_sym_select] = ACTIONS(3680), + [anon_sym_as] = ACTIONS(3680), + [anon_sym_is] = ACTIONS(3680), + [anon_sym_DASH_GT] = ACTIONS(3675), + [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), @@ -410055,6 +409754,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2300] = { + [sym__variable_designation] = STATE(3265), + [sym_parenthesized_variable_designation] = STATE(3344), + [sym_identifier] = STATE(3346), + [sym__reserved_identifier] = STATE(3199), [sym_preproc_region] = STATE(2300), [sym_preproc_endregion] = STATE(2300), [sym_preproc_line] = STATE(2300), @@ -410064,80 +409767,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2300), [sym_preproc_define] = STATE(2300), [sym_preproc_undef] = STATE(2300), - [sym__identifier_token] = ACTIONS(3699), - [anon_sym_alias] = ACTIONS(3699), - [anon_sym_global] = ACTIONS(3699), - [anon_sym_EQ] = ACTIONS(3704), - [anon_sym_LBRACK] = ACTIONS(3721), - [anon_sym_COLON] = ACTIONS(3701), - [anon_sym_LPAREN] = ACTIONS(3721), - [anon_sym_LBRACE] = ACTIONS(3710), - [anon_sym_file] = ACTIONS(3699), - [anon_sym_LT] = ACTIONS(3704), - [anon_sym_GT] = ACTIONS(3704), - [anon_sym_where] = ACTIONS(3699), - [anon_sym_QMARK] = ACTIONS(3724), - [anon_sym_notnull] = ACTIONS(3699), - [anon_sym_unmanaged] = ACTIONS(3699), - [anon_sym_BANG] = ACTIONS(3704), - [anon_sym_PLUS_PLUS] = ACTIONS(3719), - [anon_sym_DASH_DASH] = ACTIONS(3719), - [anon_sym_PLUS] = ACTIONS(3704), - [anon_sym_DASH] = ACTIONS(3704), - [anon_sym_STAR] = ACTIONS(3724), - [anon_sym_SLASH] = ACTIONS(3704), - [anon_sym_PERCENT] = ACTIONS(3704), - [anon_sym_CARET] = ACTIONS(3704), - [anon_sym_PIPE] = ACTIONS(3704), - [anon_sym_AMP] = ACTIONS(3704), - [anon_sym_LT_LT] = ACTIONS(3704), - [anon_sym_GT_GT] = ACTIONS(3704), - [anon_sym_GT_GT_GT] = ACTIONS(3704), - [anon_sym_EQ_EQ] = ACTIONS(3719), - [anon_sym_BANG_EQ] = ACTIONS(3719), - [anon_sym_GT_EQ] = ACTIONS(3719), - [anon_sym_LT_EQ] = ACTIONS(3719), - [anon_sym_DOT] = ACTIONS(3724), - [anon_sym_scoped] = ACTIONS(3699), - [anon_sym_var] = ACTIONS(3699), - [anon_sym_yield] = ACTIONS(3699), - [anon_sym_switch] = ACTIONS(3704), - [anon_sym_when] = ACTIONS(3716), - [sym_discard] = ACTIONS(3699), - [anon_sym_DOT_DOT] = ACTIONS(3719), - [anon_sym_and] = ACTIONS(3716), - [anon_sym_or] = ACTIONS(3716), - [anon_sym_PLUS_EQ] = ACTIONS(3719), - [anon_sym_DASH_EQ] = ACTIONS(3719), - [anon_sym_STAR_EQ] = ACTIONS(3719), - [anon_sym_SLASH_EQ] = ACTIONS(3719), - [anon_sym_PERCENT_EQ] = ACTIONS(3719), - [anon_sym_AMP_EQ] = ACTIONS(3719), - [anon_sym_CARET_EQ] = ACTIONS(3719), - [anon_sym_PIPE_EQ] = ACTIONS(3719), - [anon_sym_LT_LT_EQ] = ACTIONS(3719), - [anon_sym_GT_GT_EQ] = ACTIONS(3719), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3719), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3719), - [anon_sym_AMP_AMP] = ACTIONS(3719), - [anon_sym_PIPE_PIPE] = ACTIONS(3719), - [anon_sym_QMARK_QMARK] = ACTIONS(3704), - [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_ascending] = ACTIONS(3699), - [anon_sym_descending] = ACTIONS(3699), - [anon_sym_group] = ACTIONS(3699), - [anon_sym_by] = ACTIONS(3699), - [anon_sym_select] = ACTIONS(3699), - [anon_sym_as] = ACTIONS(3704), - [anon_sym_is] = ACTIONS(3704), - [anon_sym_DASH_GT] = ACTIONS(3721), - [anon_sym_with] = ACTIONS(3704), + [sym__identifier_token] = ACTIONS(3855), + [anon_sym_alias] = ACTIONS(3857), + [anon_sym_SEMI] = ACTIONS(3939), + [anon_sym_global] = ACTIONS(3857), + [anon_sym_LBRACK] = ACTIONS(3939), + [anon_sym_COLON] = ACTIONS(3939), + [anon_sym_COMMA] = ACTIONS(3939), + [anon_sym_RBRACK] = ACTIONS(3939), + [anon_sym_LPAREN] = ACTIONS(3939), + [anon_sym_RPAREN] = ACTIONS(3939), + [anon_sym_RBRACE] = ACTIONS(3939), + [anon_sym_file] = ACTIONS(3857), + [anon_sym_LT] = ACTIONS(3941), + [anon_sym_GT] = ACTIONS(3941), + [anon_sym_in] = ACTIONS(3941), + [anon_sym_where] = ACTIONS(3857), + [anon_sym_QMARK] = ACTIONS(3941), + [anon_sym_notnull] = ACTIONS(3857), + [anon_sym_unmanaged] = ACTIONS(3857), + [anon_sym_BANG] = ACTIONS(3941), + [anon_sym_PLUS_PLUS] = ACTIONS(3939), + [anon_sym_DASH_DASH] = ACTIONS(3939), + [anon_sym_PLUS] = ACTIONS(3941), + [anon_sym_DASH] = ACTIONS(3941), + [anon_sym_STAR] = ACTIONS(3939), + [anon_sym_SLASH] = ACTIONS(3941), + [anon_sym_PERCENT] = ACTIONS(3939), + [anon_sym_CARET] = ACTIONS(3939), + [anon_sym_PIPE] = ACTIONS(3941), + [anon_sym_AMP] = ACTIONS(3941), + [anon_sym_LT_LT] = ACTIONS(3939), + [anon_sym_GT_GT] = ACTIONS(3941), + [anon_sym_GT_GT_GT] = ACTIONS(3939), + [anon_sym_EQ_EQ] = ACTIONS(3939), + [anon_sym_BANG_EQ] = ACTIONS(3939), + [anon_sym_GT_EQ] = ACTIONS(3939), + [anon_sym_LT_EQ] = ACTIONS(3939), + [anon_sym_DOT] = ACTIONS(3941), + [anon_sym_scoped] = ACTIONS(3857), + [anon_sym_EQ_GT] = ACTIONS(3939), + [anon_sym_var] = ACTIONS(3857), + [anon_sym_yield] = ACTIONS(3857), + [anon_sym_switch] = ACTIONS(3941), + [anon_sym_when] = ACTIONS(3857), + [sym_discard] = ACTIONS(3865), + [anon_sym_DOT_DOT] = ACTIONS(3939), + [anon_sym_and] = ACTIONS(3941), + [anon_sym_or] = ACTIONS(3941), + [anon_sym_AMP_AMP] = ACTIONS(3939), + [anon_sym_PIPE_PIPE] = ACTIONS(3939), + [anon_sym_QMARK_QMARK] = ACTIONS(3939), + [anon_sym_from] = ACTIONS(3857), + [anon_sym_into] = ACTIONS(3941), + [anon_sym_join] = ACTIONS(3857), + [anon_sym_on] = ACTIONS(3857), + [anon_sym_equals] = ACTIONS(3857), + [anon_sym_let] = ACTIONS(3857), + [anon_sym_orderby] = ACTIONS(3857), + [anon_sym_ascending] = ACTIONS(3857), + [anon_sym_descending] = ACTIONS(3857), + [anon_sym_group] = ACTIONS(3857), + [anon_sym_by] = ACTIONS(3857), + [anon_sym_select] = ACTIONS(3857), + [anon_sym_as] = ACTIONS(3941), + [anon_sym_is] = ACTIONS(3941), + [anon_sym_DASH_GT] = ACTIONS(3939), + [anon_sym_with] = ACTIONS(3941), + [aux_sym_preproc_if_token3] = ACTIONS(3939), + [aux_sym_preproc_else_token1] = ACTIONS(3939), + [aux_sym_preproc_elif_token1] = ACTIONS(3939), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -410159,96 +409858,92 @@ 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(3685), - [anon_sym_alias] = ACTIONS(3685), - [anon_sym_global] = ACTIONS(3685), - [anon_sym_EQ] = ACTIONS(3689), - [anon_sym_LBRACK] = ACTIONS(3691), - [anon_sym_COLON] = ACTIONS(3697), - [anon_sym_COMMA] = ACTIONS(3697), - [anon_sym_LPAREN] = ACTIONS(3691), - [anon_sym_file] = ACTIONS(3685), - [anon_sym_LT] = ACTIONS(3689), - [anon_sym_GT] = ACTIONS(3689), - [anon_sym_where] = ACTIONS(3685), - [anon_sym_QMARK] = ACTIONS(3694), - [anon_sym_notnull] = ACTIONS(3685), - [anon_sym_unmanaged] = ACTIONS(3685), - [anon_sym_BANG] = ACTIONS(3689), - [anon_sym_PLUS_PLUS] = ACTIONS(3697), - [anon_sym_DASH_DASH] = ACTIONS(3697), - [anon_sym_PLUS] = ACTIONS(3689), - [anon_sym_DASH] = ACTIONS(3689), - [anon_sym_STAR] = ACTIONS(3694), - [anon_sym_SLASH] = ACTIONS(3689), - [anon_sym_PERCENT] = ACTIONS(3689), - [anon_sym_CARET] = ACTIONS(3689), - [anon_sym_PIPE] = ACTIONS(3689), - [anon_sym_AMP] = ACTIONS(3689), - [anon_sym_LT_LT] = ACTIONS(3689), - [anon_sym_GT_GT] = ACTIONS(3689), - [anon_sym_GT_GT_GT] = ACTIONS(3689), - [anon_sym_EQ_EQ] = ACTIONS(3697), - [anon_sym_BANG_EQ] = ACTIONS(3697), - [anon_sym_GT_EQ] = ACTIONS(3697), - [anon_sym_LT_EQ] = ACTIONS(3697), - [anon_sym_DOT] = ACTIONS(3694), - [anon_sym_scoped] = ACTIONS(3685), - [anon_sym_var] = ACTIONS(3685), - [anon_sym_yield] = ACTIONS(3685), - [anon_sym_switch] = ACTIONS(3689), - [anon_sym_when] = ACTIONS(3685), - [anon_sym_DOT_DOT] = ACTIONS(3697), - [anon_sym_and] = ACTIONS(3689), - [anon_sym_or] = ACTIONS(3689), - [anon_sym_PLUS_EQ] = ACTIONS(3697), - [anon_sym_DASH_EQ] = ACTIONS(3697), - [anon_sym_STAR_EQ] = ACTIONS(3697), - [anon_sym_SLASH_EQ] = ACTIONS(3697), - [anon_sym_PERCENT_EQ] = ACTIONS(3697), - [anon_sym_AMP_EQ] = ACTIONS(3697), - [anon_sym_CARET_EQ] = ACTIONS(3697), - [anon_sym_PIPE_EQ] = ACTIONS(3697), - [anon_sym_LT_LT_EQ] = ACTIONS(3697), - [anon_sym_GT_GT_EQ] = ACTIONS(3697), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3697), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3697), - [anon_sym_AMP_AMP] = ACTIONS(3697), - [anon_sym_PIPE_PIPE] = ACTIONS(3697), - [anon_sym_QMARK_QMARK] = ACTIONS(3689), - [anon_sym_from] = ACTIONS(3685), - [anon_sym_into] = ACTIONS(3694), - [anon_sym_join] = ACTIONS(3685), - [anon_sym_on] = ACTIONS(3685), - [anon_sym_equals] = ACTIONS(3685), - [anon_sym_let] = ACTIONS(3685), - [anon_sym_orderby] = ACTIONS(3685), - [anon_sym_ascending] = ACTIONS(3685), - [anon_sym_descending] = ACTIONS(3685), - [anon_sym_group] = ACTIONS(3685), - [anon_sym_by] = ACTIONS(3685), - [anon_sym_select] = ACTIONS(3685), - [anon_sym_as] = ACTIONS(3689), - [anon_sym_is] = ACTIONS(3689), - [anon_sym_DASH_GT] = ACTIONS(3691), - [anon_sym_with] = ACTIONS(3689), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_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(3697), + [sym__identifier_token] = ACTIONS(3431), + [anon_sym_alias] = ACTIONS(3431), + [anon_sym_global] = ACTIONS(3431), + [anon_sym_EQ] = ACTIONS(3431), + [anon_sym_LBRACK] = ACTIONS(3429), + [anon_sym_COLON] = ACTIONS(3431), + [anon_sym_LPAREN] = ACTIONS(3429), + [anon_sym_return] = ACTIONS(3943), + [anon_sym_file] = ACTIONS(3431), + [anon_sym_LT] = ACTIONS(3431), + [anon_sym_GT] = ACTIONS(3431), + [anon_sym_where] = ACTIONS(3431), + [anon_sym_QMARK] = ACTIONS(3431), + [anon_sym_notnull] = ACTIONS(3431), + [anon_sym_unmanaged] = ACTIONS(3431), + [anon_sym_BANG] = ACTIONS(3431), + [anon_sym_PLUS_PLUS] = ACTIONS(3429), + [anon_sym_DASH_DASH] = ACTIONS(3429), + [anon_sym_PLUS] = ACTIONS(3431), + [anon_sym_DASH] = ACTIONS(3431), + [anon_sym_STAR] = ACTIONS(3431), + [anon_sym_SLASH] = ACTIONS(3431), + [anon_sym_PERCENT] = ACTIONS(3431), + [anon_sym_CARET] = ACTIONS(3431), + [anon_sym_PIPE] = ACTIONS(3431), + [anon_sym_AMP] = ACTIONS(3431), + [anon_sym_LT_LT] = ACTIONS(3431), + [anon_sym_GT_GT] = ACTIONS(3431), + [anon_sym_GT_GT_GT] = ACTIONS(3431), + [anon_sym_EQ_EQ] = ACTIONS(3429), + [anon_sym_BANG_EQ] = ACTIONS(3429), + [anon_sym_GT_EQ] = ACTIONS(3429), + [anon_sym_LT_EQ] = ACTIONS(3429), + [anon_sym_DOT] = ACTIONS(3431), + [anon_sym_scoped] = ACTIONS(3431), + [anon_sym_EQ_GT] = ACTIONS(3429), + [anon_sym_COLON_COLON] = ACTIONS(3429), + [anon_sym_var] = ACTIONS(3431), + [anon_sym_break] = ACTIONS(3945), + [anon_sym_yield] = ACTIONS(3431), + [anon_sym_switch] = ACTIONS(3431), + [anon_sym_when] = ACTIONS(3431), + [anon_sym_DOT_DOT] = ACTIONS(3429), + [anon_sym_PLUS_EQ] = ACTIONS(3429), + [anon_sym_DASH_EQ] = ACTIONS(3429), + [anon_sym_STAR_EQ] = ACTIONS(3429), + [anon_sym_SLASH_EQ] = ACTIONS(3429), + [anon_sym_PERCENT_EQ] = ACTIONS(3429), + [anon_sym_AMP_EQ] = ACTIONS(3429), + [anon_sym_CARET_EQ] = ACTIONS(3429), + [anon_sym_PIPE_EQ] = ACTIONS(3429), + [anon_sym_LT_LT_EQ] = ACTIONS(3429), + [anon_sym_GT_GT_EQ] = ACTIONS(3429), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3429), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3429), + [anon_sym_AMP_AMP] = ACTIONS(3429), + [anon_sym_PIPE_PIPE] = ACTIONS(3429), + [anon_sym_QMARK_QMARK] = 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), + [anon_sym_as] = ACTIONS(3431), + [anon_sym_is] = ACTIONS(3431), + [anon_sym_DASH_GT] = ACTIONS(3429), + [anon_sym_with] = ACTIONS(3431), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), }, [2302] = { - [sym__variable_designation] = STATE(3350), - [sym_parenthesized_variable_designation] = STATE(3340), - [sym_identifier] = STATE(3345), - [sym__reserved_identifier] = STATE(3177), [sym_preproc_region] = STATE(2302), [sym_preproc_endregion] = STATE(2302), [sym_preproc_line] = STATE(2302), @@ -410258,76 +409953,80 @@ 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(3875), - [anon_sym_alias] = ACTIONS(3877), - [anon_sym_SEMI] = ACTIONS(3905), - [anon_sym_global] = ACTIONS(3877), - [anon_sym_LBRACK] = ACTIONS(3905), - [anon_sym_COLON] = ACTIONS(3905), - [anon_sym_COMMA] = ACTIONS(3905), - [anon_sym_RBRACK] = ACTIONS(3905), - [anon_sym_LPAREN] = ACTIONS(3905), - [anon_sym_RPAREN] = ACTIONS(3905), - [anon_sym_RBRACE] = ACTIONS(3905), - [anon_sym_file] = ACTIONS(3877), - [anon_sym_LT] = ACTIONS(3907), - [anon_sym_GT] = ACTIONS(3907), - [anon_sym_in] = ACTIONS(3907), - [anon_sym_where] = ACTIONS(3877), - [anon_sym_QMARK] = ACTIONS(3907), - [anon_sym_notnull] = ACTIONS(3877), - [anon_sym_unmanaged] = ACTIONS(3877), - [anon_sym_BANG] = ACTIONS(3907), - [anon_sym_PLUS_PLUS] = ACTIONS(3905), - [anon_sym_DASH_DASH] = ACTIONS(3905), - [anon_sym_PLUS] = ACTIONS(3907), - [anon_sym_DASH] = ACTIONS(3907), - [anon_sym_STAR] = ACTIONS(3905), - [anon_sym_SLASH] = ACTIONS(3907), - [anon_sym_PERCENT] = ACTIONS(3905), - [anon_sym_CARET] = ACTIONS(3905), - [anon_sym_PIPE] = ACTIONS(3907), - [anon_sym_AMP] = ACTIONS(3907), - [anon_sym_LT_LT] = ACTIONS(3905), - [anon_sym_GT_GT] = ACTIONS(3907), - [anon_sym_GT_GT_GT] = ACTIONS(3905), - [anon_sym_EQ_EQ] = ACTIONS(3905), - [anon_sym_BANG_EQ] = ACTIONS(3905), - [anon_sym_GT_EQ] = ACTIONS(3905), - [anon_sym_LT_EQ] = ACTIONS(3905), - [anon_sym_DOT] = ACTIONS(3907), - [anon_sym_scoped] = ACTIONS(3877), - [anon_sym_EQ_GT] = ACTIONS(3905), - [anon_sym_var] = ACTIONS(3877), - [anon_sym_yield] = ACTIONS(3877), - [anon_sym_switch] = ACTIONS(3907), - [anon_sym_when] = ACTIONS(3877), - [sym_discard] = ACTIONS(3885), - [anon_sym_DOT_DOT] = ACTIONS(3905), - [anon_sym_and] = ACTIONS(3907), - [anon_sym_or] = ACTIONS(3907), - [anon_sym_AMP_AMP] = ACTIONS(3905), - [anon_sym_PIPE_PIPE] = ACTIONS(3905), - [anon_sym_QMARK_QMARK] = ACTIONS(3905), - [anon_sym_from] = ACTIONS(3877), - [anon_sym_into] = ACTIONS(3907), - [anon_sym_join] = ACTIONS(3877), - [anon_sym_on] = ACTIONS(3877), - [anon_sym_equals] = ACTIONS(3877), - [anon_sym_let] = ACTIONS(3877), - [anon_sym_orderby] = ACTIONS(3877), - [anon_sym_ascending] = ACTIONS(3877), - [anon_sym_descending] = ACTIONS(3877), - [anon_sym_group] = ACTIONS(3877), - [anon_sym_by] = ACTIONS(3877), - [anon_sym_select] = ACTIONS(3877), - [anon_sym_as] = ACTIONS(3907), - [anon_sym_is] = ACTIONS(3907), - [anon_sym_DASH_GT] = ACTIONS(3905), - [anon_sym_with] = ACTIONS(3907), - [aux_sym_preproc_if_token3] = ACTIONS(3905), - [aux_sym_preproc_else_token1] = ACTIONS(3905), - [aux_sym_preproc_elif_token1] = ACTIONS(3905), + [sym__identifier_token] = ACTIONS(3669), + [anon_sym_alias] = ACTIONS(3669), + [anon_sym_global] = ACTIONS(3669), + [anon_sym_EQ] = ACTIONS(3673), + [anon_sym_LBRACK] = ACTIONS(3675), + [anon_sym_COLON] = ACTIONS(3678), + [anon_sym_LPAREN] = ACTIONS(3675), + [anon_sym_LBRACE] = ACTIONS(3678), + [anon_sym_file] = ACTIONS(3669), + [anon_sym_LT] = ACTIONS(3673), + [anon_sym_GT] = ACTIONS(3673), + [anon_sym_where] = ACTIONS(3669), + [anon_sym_QMARK] = ACTIONS(3680), + [anon_sym_notnull] = ACTIONS(3669), + [anon_sym_unmanaged] = ACTIONS(3669), + [anon_sym_BANG] = ACTIONS(3673), + [anon_sym_PLUS_PLUS] = ACTIONS(3671), + [anon_sym_DASH_DASH] = ACTIONS(3671), + [anon_sym_PLUS] = ACTIONS(3673), + [anon_sym_DASH] = ACTIONS(3673), + [anon_sym_STAR] = ACTIONS(3680), + [anon_sym_SLASH] = ACTIONS(3673), + [anon_sym_PERCENT] = ACTIONS(3673), + [anon_sym_CARET] = ACTIONS(3673), + [anon_sym_PIPE] = ACTIONS(3673), + [anon_sym_AMP] = ACTIONS(3673), + [anon_sym_LT_LT] = ACTIONS(3673), + [anon_sym_GT_GT] = ACTIONS(3673), + [anon_sym_GT_GT_GT] = ACTIONS(3673), + [anon_sym_EQ_EQ] = ACTIONS(3671), + [anon_sym_BANG_EQ] = ACTIONS(3671), + [anon_sym_GT_EQ] = ACTIONS(3671), + [anon_sym_LT_EQ] = ACTIONS(3671), + [anon_sym_DOT] = ACTIONS(3680), + [anon_sym_scoped] = ACTIONS(3669), + [anon_sym_var] = ACTIONS(3669), + [anon_sym_yield] = ACTIONS(3669), + [anon_sym_switch] = ACTIONS(3673), + [anon_sym_when] = ACTIONS(3669), + [sym_discard] = ACTIONS(3669), + [anon_sym_DOT_DOT] = ACTIONS(3671), + [anon_sym_and] = ACTIONS(3669), + [anon_sym_or] = ACTIONS(3669), + [anon_sym_PLUS_EQ] = ACTIONS(3671), + [anon_sym_DASH_EQ] = ACTIONS(3671), + [anon_sym_STAR_EQ] = ACTIONS(3671), + [anon_sym_SLASH_EQ] = ACTIONS(3671), + [anon_sym_PERCENT_EQ] = ACTIONS(3671), + [anon_sym_AMP_EQ] = ACTIONS(3671), + [anon_sym_CARET_EQ] = ACTIONS(3671), + [anon_sym_PIPE_EQ] = ACTIONS(3671), + [anon_sym_LT_LT_EQ] = ACTIONS(3671), + [anon_sym_GT_GT_EQ] = ACTIONS(3671), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3671), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3671), + [anon_sym_AMP_AMP] = ACTIONS(3671), + [anon_sym_PIPE_PIPE] = ACTIONS(3671), + [anon_sym_QMARK_QMARK] = ACTIONS(3673), + [anon_sym_from] = ACTIONS(3669), + [anon_sym_into] = ACTIONS(3669), + [anon_sym_join] = ACTIONS(3669), + [anon_sym_on] = ACTIONS(3669), + [anon_sym_equals] = ACTIONS(3669), + [anon_sym_let] = ACTIONS(3669), + [anon_sym_orderby] = ACTIONS(3669), + [anon_sym_ascending] = ACTIONS(3669), + [anon_sym_descending] = ACTIONS(3669), + [anon_sym_group] = ACTIONS(3669), + [anon_sym_by] = ACTIONS(3669), + [anon_sym_select] = ACTIONS(3669), + [anon_sym_as] = ACTIONS(3673), + [anon_sym_is] = ACTIONS(3673), + [anon_sym_DASH_GT] = ACTIONS(3675), + [anon_sym_with] = ACTIONS(3673), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -410349,80 +410048,79 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2303), [sym_preproc_define] = STATE(2303), [sym_preproc_undef] = STATE(2303), - [sym__identifier_token] = ACTIONS(3699), - [anon_sym_alias] = ACTIONS(3699), - [anon_sym_global] = ACTIONS(3699), - [anon_sym_EQ] = ACTIONS(3704), - [anon_sym_LBRACK] = ACTIONS(3721), - [anon_sym_COLON] = ACTIONS(3721), - [anon_sym_LPAREN] = ACTIONS(3721), - [anon_sym_LBRACE] = ACTIONS(3710), - [anon_sym_file] = ACTIONS(3699), - [anon_sym_LT] = ACTIONS(3704), - [anon_sym_GT] = ACTIONS(3704), - [anon_sym_where] = ACTIONS(3699), - [anon_sym_QMARK] = ACTIONS(3724), - [anon_sym_notnull] = ACTIONS(3699), - [anon_sym_unmanaged] = ACTIONS(3699), - [anon_sym_BANG] = ACTIONS(3704), - [anon_sym_PLUS_PLUS] = ACTIONS(3719), - [anon_sym_DASH_DASH] = ACTIONS(3719), - [anon_sym_PLUS] = ACTIONS(3704), - [anon_sym_DASH] = ACTIONS(3704), - [anon_sym_STAR] = ACTIONS(3724), - [anon_sym_SLASH] = ACTIONS(3704), - [anon_sym_PERCENT] = ACTIONS(3704), - [anon_sym_CARET] = ACTIONS(3704), - [anon_sym_PIPE] = ACTIONS(3704), - [anon_sym_AMP] = ACTIONS(3704), - [anon_sym_LT_LT] = ACTIONS(3704), - [anon_sym_GT_GT] = ACTIONS(3704), - [anon_sym_GT_GT_GT] = ACTIONS(3704), - [anon_sym_EQ_EQ] = ACTIONS(3719), - [anon_sym_BANG_EQ] = ACTIONS(3719), - [anon_sym_GT_EQ] = ACTIONS(3719), - [anon_sym_LT_EQ] = ACTIONS(3719), - [anon_sym_DOT] = ACTIONS(3724), - [anon_sym_scoped] = ACTIONS(3699), - [anon_sym_var] = ACTIONS(3699), - [anon_sym_yield] = ACTIONS(3699), - [anon_sym_switch] = ACTIONS(3704), - [anon_sym_when] = ACTIONS(3699), - [sym_discard] = ACTIONS(3699), - [anon_sym_DOT_DOT] = ACTIONS(3719), - [anon_sym_and] = ACTIONS(3699), - [anon_sym_or] = ACTIONS(3699), - [anon_sym_PLUS_EQ] = ACTIONS(3719), - [anon_sym_DASH_EQ] = ACTIONS(3719), - [anon_sym_STAR_EQ] = ACTIONS(3719), - [anon_sym_SLASH_EQ] = ACTIONS(3719), - [anon_sym_PERCENT_EQ] = ACTIONS(3719), - [anon_sym_AMP_EQ] = ACTIONS(3719), - [anon_sym_CARET_EQ] = ACTIONS(3719), - [anon_sym_PIPE_EQ] = ACTIONS(3719), - [anon_sym_LT_LT_EQ] = ACTIONS(3719), - [anon_sym_GT_GT_EQ] = ACTIONS(3719), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3719), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3719), - [anon_sym_AMP_AMP] = ACTIONS(3719), - [anon_sym_PIPE_PIPE] = ACTIONS(3719), - [anon_sym_QMARK_QMARK] = ACTIONS(3704), - [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_ascending] = ACTIONS(3699), - [anon_sym_descending] = ACTIONS(3699), - [anon_sym_group] = ACTIONS(3699), - [anon_sym_by] = ACTIONS(3699), - [anon_sym_select] = ACTIONS(3699), - [anon_sym_as] = ACTIONS(3704), - [anon_sym_is] = ACTIONS(3704), - [anon_sym_DASH_GT] = ACTIONS(3721), - [anon_sym_with] = ACTIONS(3704), + [sym__identifier_token] = ACTIONS(3669), + [anon_sym_alias] = ACTIONS(3669), + [anon_sym_global] = ACTIONS(3669), + [anon_sym_EQ] = ACTIONS(3673), + [anon_sym_LBRACK] = ACTIONS(3675), + [anon_sym_COLON] = ACTIONS(3671), + [anon_sym_COMMA] = ACTIONS(3671), + [anon_sym_LPAREN] = ACTIONS(3675), + [anon_sym_file] = ACTIONS(3669), + [anon_sym_LT] = ACTIONS(3673), + [anon_sym_GT] = ACTIONS(3673), + [anon_sym_where] = ACTIONS(3669), + [anon_sym_QMARK] = ACTIONS(3680), + [anon_sym_notnull] = ACTIONS(3669), + [anon_sym_unmanaged] = ACTIONS(3669), + [anon_sym_BANG] = ACTIONS(3673), + [anon_sym_PLUS_PLUS] = ACTIONS(3671), + [anon_sym_DASH_DASH] = ACTIONS(3671), + [anon_sym_PLUS] = ACTIONS(3673), + [anon_sym_DASH] = ACTIONS(3673), + [anon_sym_STAR] = ACTIONS(3680), + [anon_sym_SLASH] = ACTIONS(3673), + [anon_sym_PERCENT] = ACTIONS(3673), + [anon_sym_CARET] = ACTIONS(3673), + [anon_sym_PIPE] = ACTIONS(3673), + [anon_sym_AMP] = ACTIONS(3673), + [anon_sym_LT_LT] = ACTIONS(3673), + [anon_sym_GT_GT] = ACTIONS(3673), + [anon_sym_GT_GT_GT] = ACTIONS(3673), + [anon_sym_EQ_EQ] = ACTIONS(3671), + [anon_sym_BANG_EQ] = ACTIONS(3671), + [anon_sym_GT_EQ] = ACTIONS(3671), + [anon_sym_LT_EQ] = ACTIONS(3671), + [anon_sym_DOT] = ACTIONS(3680), + [anon_sym_scoped] = ACTIONS(3669), + [anon_sym_var] = ACTIONS(3669), + [anon_sym_yield] = ACTIONS(3669), + [anon_sym_switch] = ACTIONS(3673), + [anon_sym_when] = ACTIONS(3669), + [anon_sym_DOT_DOT] = ACTIONS(3671), + [anon_sym_and] = ACTIONS(3673), + [anon_sym_or] = ACTIONS(3673), + [anon_sym_PLUS_EQ] = ACTIONS(3671), + [anon_sym_DASH_EQ] = ACTIONS(3671), + [anon_sym_STAR_EQ] = ACTIONS(3671), + [anon_sym_SLASH_EQ] = ACTIONS(3671), + [anon_sym_PERCENT_EQ] = ACTIONS(3671), + [anon_sym_AMP_EQ] = ACTIONS(3671), + [anon_sym_CARET_EQ] = ACTIONS(3671), + [anon_sym_PIPE_EQ] = ACTIONS(3671), + [anon_sym_LT_LT_EQ] = ACTIONS(3671), + [anon_sym_GT_GT_EQ] = ACTIONS(3671), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3671), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3671), + [anon_sym_AMP_AMP] = ACTIONS(3671), + [anon_sym_PIPE_PIPE] = ACTIONS(3671), + [anon_sym_QMARK_QMARK] = ACTIONS(3673), + [anon_sym_from] = ACTIONS(3669), + [anon_sym_into] = ACTIONS(3669), + [anon_sym_join] = ACTIONS(3669), + [anon_sym_on] = ACTIONS(3669), + [anon_sym_equals] = ACTIONS(3669), + [anon_sym_let] = ACTIONS(3669), + [anon_sym_orderby] = ACTIONS(3669), + [anon_sym_ascending] = ACTIONS(3669), + [anon_sym_descending] = ACTIONS(3669), + [anon_sym_group] = ACTIONS(3669), + [anon_sym_by] = ACTIONS(3669), + [anon_sym_select] = ACTIONS(3669), + [anon_sym_as] = ACTIONS(3673), + [anon_sym_is] = ACTIONS(3673), + [anon_sym_DASH_GT] = ACTIONS(3675), + [anon_sym_with] = ACTIONS(3673), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -410433,17 +410131,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(3671), }, [2304] = { - [sym__name] = STATE(2799), - [sym_alias_qualified_name] = STATE(2764), - [sym__simple_name] = STATE(2764), - [sym_qualified_name] = STATE(2764), - [sym_generic_name] = STATE(2722), - [sym_ref_type] = STATE(2800), - [sym__scoped_base_type] = STATE(2801), - [sym_identifier] = STATE(2581), - [sym__reserved_identifier] = STATE(2627), + [sym__variable_designation] = STATE(3256), + [sym_parenthesized_variable_designation] = STATE(3344), + [sym_identifier] = STATE(3346), + [sym__reserved_identifier] = STATE(3199), [sym_preproc_region] = STATE(2304), [sym_preproc_endregion] = STATE(2304), [sym_preproc_line] = STATE(2304), @@ -410453,81 +410147,86 @@ 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(3642), - [anon_sym_alias] = ACTIONS(3645), - [anon_sym_global] = ACTIONS(3645), - [anon_sym_LBRACK] = ACTIONS(3445), - [anon_sym_COLON] = ACTIONS(3447), - [anon_sym_COMMA] = ACTIONS(3445), - [anon_sym_LPAREN] = ACTIONS(3445), - [anon_sym_ref] = ACTIONS(3648), - [anon_sym_LBRACE] = ACTIONS(3445), - [anon_sym_file] = ACTIONS(3645), - [anon_sym_LT] = ACTIONS(3447), - [anon_sym_GT] = ACTIONS(3447), - [anon_sym_where] = ACTIONS(3645), - [anon_sym_QMARK] = ACTIONS(3447), - [anon_sym_notnull] = ACTIONS(3645), - [anon_sym_unmanaged] = ACTIONS(3645), - [anon_sym_BANG] = ACTIONS(3447), - [anon_sym_PLUS_PLUS] = ACTIONS(3445), - [anon_sym_DASH_DASH] = ACTIONS(3445), - [anon_sym_PLUS] = ACTIONS(3447), - [anon_sym_DASH] = ACTIONS(3447), - [anon_sym_STAR] = ACTIONS(3445), - [anon_sym_SLASH] = ACTIONS(3447), - [anon_sym_PERCENT] = ACTIONS(3445), - [anon_sym_CARET] = ACTIONS(3445), - [anon_sym_PIPE] = ACTIONS(3447), - [anon_sym_AMP] = ACTIONS(3447), - [anon_sym_LT_LT] = ACTIONS(3445), - [anon_sym_GT_GT] = ACTIONS(3447), - [anon_sym_GT_GT_GT] = ACTIONS(3445), - [anon_sym_EQ_EQ] = ACTIONS(3445), - [anon_sym_BANG_EQ] = ACTIONS(3445), - [anon_sym_GT_EQ] = ACTIONS(3445), - [anon_sym_LT_EQ] = ACTIONS(3445), - [anon_sym_DOT] = ACTIONS(3447), - [anon_sym_scoped] = ACTIONS(3645), - [anon_sym_COLON_COLON] = ACTIONS(3445), - [anon_sym_var] = ACTIONS(3645), - [anon_sym_yield] = ACTIONS(3645), - [anon_sym_switch] = ACTIONS(3447), - [anon_sym_when] = ACTIONS(3645), - [sym_discard] = ACTIONS(3447), - [anon_sym_DOT_DOT] = ACTIONS(3445), - [anon_sym_and] = ACTIONS(3447), - [anon_sym_or] = ACTIONS(3447), - [anon_sym_AMP_AMP] = ACTIONS(3445), - [anon_sym_PIPE_PIPE] = ACTIONS(3445), - [anon_sym_QMARK_QMARK] = ACTIONS(3445), - [anon_sym_from] = ACTIONS(3645), - [anon_sym_into] = ACTIONS(3645), - [anon_sym_join] = ACTIONS(3645), - [anon_sym_on] = ACTIONS(3645), - [anon_sym_equals] = ACTIONS(3645), - [anon_sym_let] = ACTIONS(3645), - [anon_sym_orderby] = ACTIONS(3645), - [anon_sym_ascending] = ACTIONS(3645), - [anon_sym_descending] = ACTIONS(3645), - [anon_sym_group] = ACTIONS(3645), - [anon_sym_by] = ACTIONS(3645), - [anon_sym_select] = ACTIONS(3645), - [anon_sym_as] = ACTIONS(3447), - [anon_sym_is] = ACTIONS(3447), - [anon_sym_DASH_GT] = ACTIONS(3445), - [anon_sym_with] = ACTIONS(3447), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_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(3445), + [sym__identifier_token] = ACTIONS(3855), + [anon_sym_alias] = ACTIONS(3857), + [anon_sym_SEMI] = ACTIONS(3885), + [anon_sym_global] = ACTIONS(3857), + [anon_sym_LBRACK] = ACTIONS(3885), + [anon_sym_COLON] = ACTIONS(3885), + [anon_sym_COMMA] = ACTIONS(3885), + [anon_sym_RBRACK] = ACTIONS(3885), + [anon_sym_LPAREN] = ACTIONS(3885), + [anon_sym_RPAREN] = ACTIONS(3885), + [anon_sym_RBRACE] = ACTIONS(3885), + [anon_sym_file] = ACTIONS(3857), + [anon_sym_LT] = ACTIONS(3887), + [anon_sym_GT] = ACTIONS(3887), + [anon_sym_in] = ACTIONS(3887), + [anon_sym_where] = ACTIONS(3857), + [anon_sym_QMARK] = ACTIONS(3887), + [anon_sym_notnull] = ACTIONS(3857), + [anon_sym_unmanaged] = ACTIONS(3857), + [anon_sym_BANG] = ACTIONS(3887), + [anon_sym_PLUS_PLUS] = ACTIONS(3885), + [anon_sym_DASH_DASH] = ACTIONS(3885), + [anon_sym_PLUS] = ACTIONS(3887), + [anon_sym_DASH] = ACTIONS(3887), + [anon_sym_STAR] = ACTIONS(3885), + [anon_sym_SLASH] = ACTIONS(3887), + [anon_sym_PERCENT] = ACTIONS(3885), + [anon_sym_CARET] = ACTIONS(3885), + [anon_sym_PIPE] = ACTIONS(3887), + [anon_sym_AMP] = ACTIONS(3887), + [anon_sym_LT_LT] = ACTIONS(3885), + [anon_sym_GT_GT] = ACTIONS(3887), + [anon_sym_GT_GT_GT] = ACTIONS(3885), + [anon_sym_EQ_EQ] = ACTIONS(3885), + [anon_sym_BANG_EQ] = ACTIONS(3885), + [anon_sym_GT_EQ] = ACTIONS(3885), + [anon_sym_LT_EQ] = ACTIONS(3885), + [anon_sym_DOT] = ACTIONS(3887), + [anon_sym_scoped] = ACTIONS(3857), + [anon_sym_EQ_GT] = ACTIONS(3885), + [anon_sym_var] = ACTIONS(3857), + [anon_sym_yield] = ACTIONS(3857), + [anon_sym_switch] = ACTIONS(3887), + [anon_sym_when] = ACTIONS(3857), + [sym_discard] = ACTIONS(3865), + [anon_sym_DOT_DOT] = ACTIONS(3885), + [anon_sym_and] = ACTIONS(3887), + [anon_sym_or] = ACTIONS(3887), + [anon_sym_AMP_AMP] = ACTIONS(3885), + [anon_sym_PIPE_PIPE] = ACTIONS(3885), + [anon_sym_QMARK_QMARK] = ACTIONS(3885), + [anon_sym_from] = ACTIONS(3857), + [anon_sym_into] = ACTIONS(3887), + [anon_sym_join] = ACTIONS(3857), + [anon_sym_on] = ACTIONS(3857), + [anon_sym_equals] = ACTIONS(3857), + [anon_sym_let] = ACTIONS(3857), + [anon_sym_orderby] = ACTIONS(3857), + [anon_sym_ascending] = ACTIONS(3857), + [anon_sym_descending] = ACTIONS(3857), + [anon_sym_group] = ACTIONS(3857), + [anon_sym_by] = ACTIONS(3857), + [anon_sym_select] = ACTIONS(3857), + [anon_sym_as] = ACTIONS(3887), + [anon_sym_is] = ACTIONS(3887), + [anon_sym_DASH_GT] = ACTIONS(3885), + [anon_sym_with] = ACTIONS(3887), + [aux_sym_preproc_if_token3] = ACTIONS(3885), + [aux_sym_preproc_else_token1] = ACTIONS(3885), + [aux_sym_preproc_elif_token1] = ACTIONS(3885), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), }, [2305] = { [sym_preproc_region] = STATE(2305), @@ -410539,80 +410238,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(3699), - [anon_sym_alias] = ACTIONS(3699), - [anon_sym_global] = ACTIONS(3699), - [anon_sym_EQ] = ACTIONS(3704), - [anon_sym_LBRACK] = ACTIONS(3721), - [anon_sym_COLON] = ACTIONS(3710), - [anon_sym_LPAREN] = ACTIONS(3721), - [anon_sym_LBRACE] = ACTIONS(3710), - [anon_sym_file] = ACTIONS(3699), - [anon_sym_LT] = ACTIONS(3704), - [anon_sym_GT] = ACTIONS(3704), - [anon_sym_where] = ACTIONS(3699), - [anon_sym_QMARK] = ACTIONS(3724), - [anon_sym_notnull] = ACTIONS(3699), - [anon_sym_unmanaged] = ACTIONS(3699), - [anon_sym_BANG] = ACTIONS(3704), - [anon_sym_PLUS_PLUS] = ACTIONS(3719), - [anon_sym_DASH_DASH] = ACTIONS(3719), - [anon_sym_PLUS] = ACTIONS(3704), - [anon_sym_DASH] = ACTIONS(3704), - [anon_sym_STAR] = ACTIONS(3724), - [anon_sym_SLASH] = ACTIONS(3704), - [anon_sym_PERCENT] = ACTIONS(3704), - [anon_sym_CARET] = ACTIONS(3704), - [anon_sym_PIPE] = ACTIONS(3704), - [anon_sym_AMP] = ACTIONS(3704), - [anon_sym_LT_LT] = ACTIONS(3704), - [anon_sym_GT_GT] = ACTIONS(3704), - [anon_sym_GT_GT_GT] = ACTIONS(3704), - [anon_sym_EQ_EQ] = ACTIONS(3719), - [anon_sym_BANG_EQ] = ACTIONS(3719), - [anon_sym_GT_EQ] = ACTIONS(3719), - [anon_sym_LT_EQ] = ACTIONS(3719), - [anon_sym_DOT] = ACTIONS(3724), - [anon_sym_scoped] = ACTIONS(3699), - [anon_sym_var] = ACTIONS(3699), - [anon_sym_yield] = ACTIONS(3699), - [anon_sym_switch] = ACTIONS(3704), - [anon_sym_when] = ACTIONS(3699), - [sym_discard] = ACTIONS(3699), - [anon_sym_DOT_DOT] = ACTIONS(3719), - [anon_sym_and] = ACTIONS(3699), - [anon_sym_or] = ACTIONS(3699), - [anon_sym_PLUS_EQ] = ACTIONS(3719), - [anon_sym_DASH_EQ] = ACTIONS(3719), - [anon_sym_STAR_EQ] = ACTIONS(3719), - [anon_sym_SLASH_EQ] = ACTIONS(3719), - [anon_sym_PERCENT_EQ] = ACTIONS(3719), - [anon_sym_AMP_EQ] = ACTIONS(3719), - [anon_sym_CARET_EQ] = ACTIONS(3719), - [anon_sym_PIPE_EQ] = ACTIONS(3719), - [anon_sym_LT_LT_EQ] = ACTIONS(3719), - [anon_sym_GT_GT_EQ] = ACTIONS(3719), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3719), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3719), - [anon_sym_AMP_AMP] = ACTIONS(3719), - [anon_sym_PIPE_PIPE] = ACTIONS(3719), - [anon_sym_QMARK_QMARK] = ACTIONS(3704), - [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_ascending] = ACTIONS(3699), - [anon_sym_descending] = ACTIONS(3699), - [anon_sym_group] = ACTIONS(3699), - [anon_sym_by] = ACTIONS(3699), - [anon_sym_select] = ACTIONS(3699), - [anon_sym_as] = ACTIONS(3704), - [anon_sym_is] = ACTIONS(3704), - [anon_sym_DASH_GT] = ACTIONS(3721), - [anon_sym_with] = ACTIONS(3704), + [sym__identifier_token] = ACTIONS(3603), + [anon_sym_alias] = ACTIONS(3603), + [anon_sym_global] = ACTIONS(3603), + [anon_sym_EQ] = ACTIONS(3431), + [anon_sym_LBRACK] = ACTIONS(3429), + [anon_sym_COLON] = ACTIONS(3431), + [anon_sym_COMMA] = ACTIONS(3600), + [anon_sym_LPAREN] = ACTIONS(3600), + [anon_sym_RPAREN] = ACTIONS(3429), + [anon_sym_file] = ACTIONS(3603), + [anon_sym_LT] = ACTIONS(3431), + [anon_sym_GT] = ACTIONS(3431), + [anon_sym_where] = ACTIONS(3603), + [anon_sym_QMARK] = ACTIONS(3431), + [anon_sym_notnull] = ACTIONS(3603), + [anon_sym_unmanaged] = ACTIONS(3603), + [anon_sym_BANG] = ACTIONS(3431), + [anon_sym_PLUS_PLUS] = ACTIONS(3429), + [anon_sym_DASH_DASH] = ACTIONS(3429), + [anon_sym_PLUS] = ACTIONS(3431), + [anon_sym_DASH] = ACTIONS(3431), + [anon_sym_STAR] = ACTIONS(3431), + [anon_sym_SLASH] = ACTIONS(3431), + [anon_sym_PERCENT] = ACTIONS(3431), + [anon_sym_CARET] = ACTIONS(3431), + [anon_sym_PIPE] = ACTIONS(3431), + [anon_sym_AMP] = ACTIONS(3431), + [anon_sym_LT_LT] = ACTIONS(3431), + [anon_sym_GT_GT] = ACTIONS(3431), + [anon_sym_GT_GT_GT] = ACTIONS(3431), + [anon_sym_EQ_EQ] = ACTIONS(3429), + [anon_sym_BANG_EQ] = ACTIONS(3429), + [anon_sym_GT_EQ] = ACTIONS(3429), + [anon_sym_LT_EQ] = ACTIONS(3429), + [anon_sym_DOT] = ACTIONS(3431), + [anon_sym_scoped] = ACTIONS(3603), + [anon_sym_EQ_GT] = ACTIONS(3429), + [anon_sym_COLON_COLON] = ACTIONS(3429), + [anon_sym_var] = ACTIONS(3603), + [anon_sym_yield] = ACTIONS(3603), + [anon_sym_switch] = ACTIONS(3431), + [anon_sym_when] = ACTIONS(3603), + [anon_sym_DOT_DOT] = ACTIONS(3429), + [anon_sym_PLUS_EQ] = ACTIONS(3429), + [anon_sym_DASH_EQ] = ACTIONS(3429), + [anon_sym_STAR_EQ] = ACTIONS(3429), + [anon_sym_SLASH_EQ] = ACTIONS(3429), + [anon_sym_PERCENT_EQ] = ACTIONS(3429), + [anon_sym_AMP_EQ] = ACTIONS(3429), + [anon_sym_CARET_EQ] = ACTIONS(3429), + [anon_sym_PIPE_EQ] = ACTIONS(3429), + [anon_sym_LT_LT_EQ] = ACTIONS(3429), + [anon_sym_GT_GT_EQ] = ACTIONS(3429), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3429), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3429), + [anon_sym_AMP_AMP] = ACTIONS(3429), + [anon_sym_PIPE_PIPE] = ACTIONS(3429), + [anon_sym_QMARK_QMARK] = ACTIONS(3431), + [anon_sym_from] = ACTIONS(3603), + [anon_sym_into] = ACTIONS(3603), + [anon_sym_join] = ACTIONS(3603), + [anon_sym_on] = ACTIONS(3603), + [anon_sym_equals] = ACTIONS(3603), + [anon_sym_let] = ACTIONS(3603), + [anon_sym_orderby] = ACTIONS(3603), + [anon_sym_ascending] = ACTIONS(3603), + [anon_sym_descending] = ACTIONS(3603), + [anon_sym_group] = ACTIONS(3603), + [anon_sym_by] = ACTIONS(3603), + [anon_sym_select] = ACTIONS(3603), + [anon_sym_as] = ACTIONS(3431), + [anon_sym_is] = ACTIONS(3431), + [anon_sym_DASH_GT] = ACTIONS(3429), + [anon_sym_with] = ACTIONS(3431), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -410634,92 +410333,96 @@ 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(3685), - [anon_sym_alias] = ACTIONS(3685), - [anon_sym_global] = ACTIONS(3685), - [anon_sym_EQ] = ACTIONS(3689), - [anon_sym_LBRACK] = ACTIONS(3691), - [anon_sym_COMMA] = ACTIONS(3691), - [anon_sym_LPAREN] = ACTIONS(3691), - [anon_sym_LBRACE] = ACTIONS(3687), - [anon_sym_file] = ACTIONS(3685), - [anon_sym_LT] = ACTIONS(3694), - [anon_sym_GT] = ACTIONS(3694), - [anon_sym_where] = ACTIONS(3694), - [anon_sym_QMARK] = ACTIONS(3694), - [anon_sym_notnull] = ACTIONS(3685), - [anon_sym_unmanaged] = ACTIONS(3685), - [anon_sym_BANG] = ACTIONS(3694), - [anon_sym_PLUS_PLUS] = ACTIONS(3691), - [anon_sym_DASH_DASH] = ACTIONS(3691), - [anon_sym_PLUS] = ACTIONS(3694), - [anon_sym_DASH] = ACTIONS(3694), - [anon_sym_STAR] = ACTIONS(3694), - [anon_sym_SLASH] = ACTIONS(3694), - [anon_sym_PERCENT] = ACTIONS(3694), - [anon_sym_CARET] = ACTIONS(3694), - [anon_sym_PIPE] = ACTIONS(3694), - [anon_sym_AMP] = ACTIONS(3694), - [anon_sym_LT_LT] = ACTIONS(3694), - [anon_sym_GT_GT] = ACTIONS(3694), - [anon_sym_GT_GT_GT] = ACTIONS(3694), - [anon_sym_EQ_EQ] = ACTIONS(3691), - [anon_sym_BANG_EQ] = ACTIONS(3691), - [anon_sym_GT_EQ] = ACTIONS(3691), - [anon_sym_LT_EQ] = ACTIONS(3691), - [anon_sym_DOT] = ACTIONS(3694), - [anon_sym_scoped] = ACTIONS(3685), - [anon_sym_var] = ACTIONS(3685), - [anon_sym_yield] = ACTIONS(3685), - [anon_sym_switch] = ACTIONS(3694), - [anon_sym_when] = ACTIONS(3685), - [sym_discard] = ACTIONS(3685), - [anon_sym_DOT_DOT] = ACTIONS(3691), - [anon_sym_and] = ACTIONS(3694), - [anon_sym_or] = ACTIONS(3694), - [anon_sym_PLUS_EQ] = ACTIONS(3697), - [anon_sym_DASH_EQ] = ACTIONS(3697), - [anon_sym_STAR_EQ] = ACTIONS(3697), - [anon_sym_SLASH_EQ] = ACTIONS(3697), - [anon_sym_PERCENT_EQ] = ACTIONS(3697), - [anon_sym_AMP_EQ] = ACTIONS(3697), - [anon_sym_CARET_EQ] = ACTIONS(3697), - [anon_sym_PIPE_EQ] = ACTIONS(3697), - [anon_sym_LT_LT_EQ] = ACTIONS(3697), - [anon_sym_GT_GT_EQ] = ACTIONS(3697), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3697), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3697), - [anon_sym_AMP_AMP] = ACTIONS(3691), - [anon_sym_PIPE_PIPE] = ACTIONS(3691), - [anon_sym_QMARK_QMARK] = ACTIONS(3694), - [anon_sym_from] = ACTIONS(3694), - [anon_sym_into] = ACTIONS(3694), - [anon_sym_join] = ACTIONS(3694), - [anon_sym_on] = ACTIONS(3685), - [anon_sym_equals] = ACTIONS(3685), - [anon_sym_let] = ACTIONS(3694), - [anon_sym_orderby] = ACTIONS(3694), - [anon_sym_ascending] = ACTIONS(3694), - [anon_sym_descending] = ACTIONS(3694), - [anon_sym_group] = ACTIONS(3694), - [anon_sym_by] = ACTIONS(3685), - [anon_sym_select] = ACTIONS(3694), - [anon_sym_as] = ACTIONS(3694), - [anon_sym_is] = ACTIONS(3694), - [anon_sym_DASH_GT] = ACTIONS(3691), - [anon_sym_with] = ACTIONS(3694), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_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(3691), + [anon_sym_alias] = ACTIONS(3691), + [anon_sym_global] = ACTIONS(3691), + [anon_sym_EQ] = ACTIONS(3696), + [anon_sym_LBRACK] = ACTIONS(3713), + [anon_sym_COLON] = ACTIONS(3711), + [anon_sym_COMMA] = ACTIONS(3711), + [anon_sym_LPAREN] = ACTIONS(3713), + [anon_sym_file] = ACTIONS(3691), + [anon_sym_LT] = ACTIONS(3696), + [anon_sym_GT] = ACTIONS(3696), + [anon_sym_where] = ACTIONS(3691), + [anon_sym_QMARK] = ACTIONS(3716), + [anon_sym_notnull] = ACTIONS(3691), + [anon_sym_unmanaged] = ACTIONS(3691), + [anon_sym_BANG] = ACTIONS(3696), + [anon_sym_PLUS_PLUS] = ACTIONS(3711), + [anon_sym_DASH_DASH] = ACTIONS(3711), + [anon_sym_PLUS] = ACTIONS(3696), + [anon_sym_DASH] = ACTIONS(3696), + [anon_sym_STAR] = ACTIONS(3716), + [anon_sym_SLASH] = ACTIONS(3696), + [anon_sym_PERCENT] = ACTIONS(3696), + [anon_sym_CARET] = ACTIONS(3696), + [anon_sym_PIPE] = ACTIONS(3696), + [anon_sym_AMP] = ACTIONS(3696), + [anon_sym_LT_LT] = ACTIONS(3696), + [anon_sym_GT_GT] = ACTIONS(3696), + [anon_sym_GT_GT_GT] = ACTIONS(3696), + [anon_sym_EQ_EQ] = ACTIONS(3711), + [anon_sym_BANG_EQ] = ACTIONS(3711), + [anon_sym_GT_EQ] = ACTIONS(3711), + [anon_sym_LT_EQ] = ACTIONS(3711), + [anon_sym_DOT] = ACTIONS(3716), + [anon_sym_scoped] = ACTIONS(3691), + [anon_sym_var] = ACTIONS(3691), + [anon_sym_yield] = ACTIONS(3691), + [anon_sym_switch] = ACTIONS(3696), + [anon_sym_when] = ACTIONS(3691), + [anon_sym_DOT_DOT] = ACTIONS(3711), + [anon_sym_and] = ACTIONS(3696), + [anon_sym_or] = ACTIONS(3696), + [anon_sym_PLUS_EQ] = ACTIONS(3711), + [anon_sym_DASH_EQ] = ACTIONS(3711), + [anon_sym_STAR_EQ] = ACTIONS(3711), + [anon_sym_SLASH_EQ] = ACTIONS(3711), + [anon_sym_PERCENT_EQ] = ACTIONS(3711), + [anon_sym_AMP_EQ] = ACTIONS(3711), + [anon_sym_CARET_EQ] = ACTIONS(3711), + [anon_sym_PIPE_EQ] = ACTIONS(3711), + [anon_sym_LT_LT_EQ] = ACTIONS(3711), + [anon_sym_GT_GT_EQ] = ACTIONS(3711), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3711), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3711), + [anon_sym_AMP_AMP] = ACTIONS(3711), + [anon_sym_PIPE_PIPE] = ACTIONS(3711), + [anon_sym_QMARK_QMARK] = ACTIONS(3696), + [anon_sym_from] = ACTIONS(3691), + [anon_sym_into] = ACTIONS(3691), + [anon_sym_join] = ACTIONS(3691), + [anon_sym_on] = ACTIONS(3691), + [anon_sym_equals] = ACTIONS(3691), + [anon_sym_let] = ACTIONS(3691), + [anon_sym_orderby] = ACTIONS(3691), + [anon_sym_ascending] = ACTIONS(3691), + [anon_sym_descending] = ACTIONS(3691), + [anon_sym_group] = ACTIONS(3691), + [anon_sym_by] = ACTIONS(3691), + [anon_sym_select] = ACTIONS(3691), + [anon_sym_as] = ACTIONS(3696), + [anon_sym_is] = ACTIONS(3696), + [anon_sym_DASH_GT] = ACTIONS(3713), + [anon_sym_with] = ACTIONS(3696), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_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(3711), }, [2307] = { + [sym__variable_designation] = STATE(3314), + [sym_parenthesized_variable_designation] = STATE(3344), + [sym_identifier] = STATE(3346), + [sym__reserved_identifier] = STATE(3199), [sym_preproc_region] = STATE(2307), [sym_preproc_endregion] = STATE(2307), [sym_preproc_line] = STATE(2307), @@ -410729,80 +410432,76 @@ 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(3447), - [anon_sym_alias] = ACTIONS(3447), - [anon_sym_global] = ACTIONS(3447), - [anon_sym_EQ] = ACTIONS(3447), - [anon_sym_LBRACK] = ACTIONS(3445), - [anon_sym_COLON] = ACTIONS(3447), - [anon_sym_LPAREN] = ACTIONS(3445), - [anon_sym_return] = ACTIONS(3965), - [anon_sym_file] = ACTIONS(3447), - [anon_sym_LT] = ACTIONS(3447), - [anon_sym_GT] = ACTIONS(3447), - [anon_sym_where] = ACTIONS(3447), - [anon_sym_QMARK] = ACTIONS(3447), - [anon_sym_notnull] = ACTIONS(3447), - [anon_sym_unmanaged] = ACTIONS(3447), - [anon_sym_BANG] = ACTIONS(3447), - [anon_sym_PLUS_PLUS] = ACTIONS(3445), - [anon_sym_DASH_DASH] = ACTIONS(3445), - [anon_sym_PLUS] = ACTIONS(3447), - [anon_sym_DASH] = ACTIONS(3447), - [anon_sym_STAR] = ACTIONS(3447), - [anon_sym_SLASH] = ACTIONS(3447), - [anon_sym_PERCENT] = ACTIONS(3447), - [anon_sym_CARET] = ACTIONS(3447), - [anon_sym_PIPE] = ACTIONS(3447), - [anon_sym_AMP] = ACTIONS(3447), - [anon_sym_LT_LT] = ACTIONS(3447), - [anon_sym_GT_GT] = ACTIONS(3447), - [anon_sym_GT_GT_GT] = ACTIONS(3447), - [anon_sym_EQ_EQ] = ACTIONS(3445), - [anon_sym_BANG_EQ] = ACTIONS(3445), - [anon_sym_GT_EQ] = ACTIONS(3445), - [anon_sym_LT_EQ] = ACTIONS(3445), - [anon_sym_DOT] = ACTIONS(3447), - [anon_sym_scoped] = ACTIONS(3447), - [anon_sym_EQ_GT] = ACTIONS(3445), - [anon_sym_COLON_COLON] = ACTIONS(3445), - [anon_sym_var] = ACTIONS(3447), - [anon_sym_break] = ACTIONS(3967), - [anon_sym_yield] = ACTIONS(3447), - [anon_sym_switch] = ACTIONS(3447), - [anon_sym_when] = ACTIONS(3447), - [anon_sym_DOT_DOT] = ACTIONS(3445), - [anon_sym_PLUS_EQ] = ACTIONS(3445), - [anon_sym_DASH_EQ] = ACTIONS(3445), - [anon_sym_STAR_EQ] = ACTIONS(3445), - [anon_sym_SLASH_EQ] = ACTIONS(3445), - [anon_sym_PERCENT_EQ] = ACTIONS(3445), - [anon_sym_AMP_EQ] = ACTIONS(3445), - [anon_sym_CARET_EQ] = ACTIONS(3445), - [anon_sym_PIPE_EQ] = ACTIONS(3445), - [anon_sym_LT_LT_EQ] = ACTIONS(3445), - [anon_sym_GT_GT_EQ] = ACTIONS(3445), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3445), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3445), - [anon_sym_AMP_AMP] = ACTIONS(3445), - [anon_sym_PIPE_PIPE] = ACTIONS(3445), - [anon_sym_QMARK_QMARK] = ACTIONS(3447), - [anon_sym_from] = ACTIONS(3447), - [anon_sym_into] = ACTIONS(3447), - [anon_sym_join] = ACTIONS(3447), - [anon_sym_on] = ACTIONS(3447), - [anon_sym_equals] = ACTIONS(3447), - [anon_sym_let] = ACTIONS(3447), - [anon_sym_orderby] = ACTIONS(3447), - [anon_sym_ascending] = ACTIONS(3447), - [anon_sym_descending] = ACTIONS(3447), - [anon_sym_group] = ACTIONS(3447), - [anon_sym_by] = ACTIONS(3447), - [anon_sym_select] = ACTIONS(3447), - [anon_sym_as] = ACTIONS(3447), - [anon_sym_is] = ACTIONS(3447), - [anon_sym_DASH_GT] = ACTIONS(3445), - [anon_sym_with] = ACTIONS(3447), + [sym__identifier_token] = ACTIONS(3855), + [anon_sym_alias] = ACTIONS(3857), + [anon_sym_SEMI] = ACTIONS(3947), + [anon_sym_global] = ACTIONS(3857), + [anon_sym_LBRACK] = ACTIONS(3947), + [anon_sym_COLON] = ACTIONS(3947), + [anon_sym_COMMA] = ACTIONS(3947), + [anon_sym_RBRACK] = ACTIONS(3947), + [anon_sym_LPAREN] = ACTIONS(3947), + [anon_sym_RPAREN] = ACTIONS(3947), + [anon_sym_RBRACE] = ACTIONS(3947), + [anon_sym_file] = ACTIONS(3857), + [anon_sym_LT] = ACTIONS(3949), + [anon_sym_GT] = ACTIONS(3949), + [anon_sym_in] = ACTIONS(3949), + [anon_sym_where] = ACTIONS(3857), + [anon_sym_QMARK] = ACTIONS(3949), + [anon_sym_notnull] = ACTIONS(3857), + [anon_sym_unmanaged] = ACTIONS(3857), + [anon_sym_BANG] = ACTIONS(3949), + [anon_sym_PLUS_PLUS] = ACTIONS(3947), + [anon_sym_DASH_DASH] = ACTIONS(3947), + [anon_sym_PLUS] = ACTIONS(3949), + [anon_sym_DASH] = ACTIONS(3949), + [anon_sym_STAR] = ACTIONS(3947), + [anon_sym_SLASH] = ACTIONS(3949), + [anon_sym_PERCENT] = ACTIONS(3947), + [anon_sym_CARET] = ACTIONS(3947), + [anon_sym_PIPE] = ACTIONS(3949), + [anon_sym_AMP] = ACTIONS(3949), + [anon_sym_LT_LT] = ACTIONS(3947), + [anon_sym_GT_GT] = ACTIONS(3949), + [anon_sym_GT_GT_GT] = ACTIONS(3947), + [anon_sym_EQ_EQ] = ACTIONS(3947), + [anon_sym_BANG_EQ] = ACTIONS(3947), + [anon_sym_GT_EQ] = ACTIONS(3947), + [anon_sym_LT_EQ] = ACTIONS(3947), + [anon_sym_DOT] = ACTIONS(3949), + [anon_sym_scoped] = ACTIONS(3857), + [anon_sym_EQ_GT] = ACTIONS(3947), + [anon_sym_var] = ACTIONS(3857), + [anon_sym_yield] = ACTIONS(3857), + [anon_sym_switch] = ACTIONS(3949), + [anon_sym_when] = ACTIONS(3857), + [sym_discard] = ACTIONS(3865), + [anon_sym_DOT_DOT] = ACTIONS(3947), + [anon_sym_and] = ACTIONS(3949), + [anon_sym_or] = ACTIONS(3949), + [anon_sym_AMP_AMP] = ACTIONS(3947), + [anon_sym_PIPE_PIPE] = ACTIONS(3947), + [anon_sym_QMARK_QMARK] = ACTIONS(3947), + [anon_sym_from] = ACTIONS(3857), + [anon_sym_into] = ACTIONS(3949), + [anon_sym_join] = ACTIONS(3857), + [anon_sym_on] = ACTIONS(3857), + [anon_sym_equals] = ACTIONS(3857), + [anon_sym_let] = ACTIONS(3857), + [anon_sym_orderby] = ACTIONS(3857), + [anon_sym_ascending] = ACTIONS(3857), + [anon_sym_descending] = ACTIONS(3857), + [anon_sym_group] = ACTIONS(3857), + [anon_sym_by] = ACTIONS(3857), + [anon_sym_select] = ACTIONS(3857), + [anon_sym_as] = ACTIONS(3949), + [anon_sym_is] = ACTIONS(3949), + [anon_sym_DASH_GT] = ACTIONS(3947), + [anon_sym_with] = ACTIONS(3949), + [aux_sym_preproc_if_token3] = ACTIONS(3947), + [aux_sym_preproc_else_token1] = ACTIONS(3947), + [aux_sym_preproc_elif_token1] = ACTIONS(3947), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -410824,80 +410523,79 @@ 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(3685), - [anon_sym_alias] = ACTIONS(3685), - [anon_sym_global] = ACTIONS(3685), - [anon_sym_EQ] = ACTIONS(3689), - [anon_sym_LBRACK] = ACTIONS(3691), - [anon_sym_COLON] = ACTIONS(3691), - [anon_sym_LPAREN] = ACTIONS(3691), - [anon_sym_LBRACE] = ACTIONS(3687), - [anon_sym_file] = ACTIONS(3685), - [anon_sym_LT] = ACTIONS(3689), - [anon_sym_GT] = ACTIONS(3689), - [anon_sym_where] = ACTIONS(3685), - [anon_sym_QMARK] = ACTIONS(3694), - [anon_sym_notnull] = ACTIONS(3685), - [anon_sym_unmanaged] = ACTIONS(3685), - [anon_sym_BANG] = ACTIONS(3689), - [anon_sym_PLUS_PLUS] = ACTIONS(3697), - [anon_sym_DASH_DASH] = ACTIONS(3697), - [anon_sym_PLUS] = ACTIONS(3689), - [anon_sym_DASH] = ACTIONS(3689), - [anon_sym_STAR] = ACTIONS(3694), - [anon_sym_SLASH] = ACTIONS(3689), - [anon_sym_PERCENT] = ACTIONS(3689), - [anon_sym_CARET] = ACTIONS(3689), - [anon_sym_PIPE] = ACTIONS(3689), - [anon_sym_AMP] = ACTIONS(3689), - [anon_sym_LT_LT] = ACTIONS(3689), - [anon_sym_GT_GT] = ACTIONS(3689), - [anon_sym_GT_GT_GT] = ACTIONS(3689), - [anon_sym_EQ_EQ] = ACTIONS(3697), - [anon_sym_BANG_EQ] = ACTIONS(3697), - [anon_sym_GT_EQ] = ACTIONS(3697), - [anon_sym_LT_EQ] = ACTIONS(3697), - [anon_sym_DOT] = ACTIONS(3694), - [anon_sym_scoped] = ACTIONS(3685), - [anon_sym_var] = ACTIONS(3685), - [anon_sym_yield] = ACTIONS(3685), - [anon_sym_switch] = ACTIONS(3689), - [anon_sym_when] = ACTIONS(3685), - [sym_discard] = ACTIONS(3685), - [anon_sym_DOT_DOT] = ACTIONS(3697), - [anon_sym_and] = ACTIONS(3685), - [anon_sym_or] = ACTIONS(3685), - [anon_sym_PLUS_EQ] = ACTIONS(3697), - [anon_sym_DASH_EQ] = ACTIONS(3697), - [anon_sym_STAR_EQ] = ACTIONS(3697), - [anon_sym_SLASH_EQ] = ACTIONS(3697), - [anon_sym_PERCENT_EQ] = ACTIONS(3697), - [anon_sym_AMP_EQ] = ACTIONS(3697), - [anon_sym_CARET_EQ] = ACTIONS(3697), - [anon_sym_PIPE_EQ] = ACTIONS(3697), - [anon_sym_LT_LT_EQ] = ACTIONS(3697), - [anon_sym_GT_GT_EQ] = ACTIONS(3697), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3697), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3697), - [anon_sym_AMP_AMP] = ACTIONS(3697), - [anon_sym_PIPE_PIPE] = ACTIONS(3697), - [anon_sym_QMARK_QMARK] = ACTIONS(3689), - [anon_sym_from] = ACTIONS(3685), - [anon_sym_into] = ACTIONS(3685), - [anon_sym_join] = ACTIONS(3685), - [anon_sym_on] = ACTIONS(3685), - [anon_sym_equals] = ACTIONS(3685), - [anon_sym_let] = ACTIONS(3685), - [anon_sym_orderby] = ACTIONS(3685), - [anon_sym_ascending] = ACTIONS(3685), - [anon_sym_descending] = ACTIONS(3685), - [anon_sym_group] = ACTIONS(3685), - [anon_sym_by] = ACTIONS(3685), - [anon_sym_select] = ACTIONS(3685), - [anon_sym_as] = ACTIONS(3689), - [anon_sym_is] = ACTIONS(3689), - [anon_sym_DASH_GT] = ACTIONS(3691), - [anon_sym_with] = ACTIONS(3689), + [sym__identifier_token] = ACTIONS(3691), + [anon_sym_alias] = ACTIONS(3691), + [anon_sym_global] = ACTIONS(3691), + [anon_sym_EQ] = ACTIONS(3696), + [anon_sym_LBRACK] = ACTIONS(3698), + [anon_sym_LPAREN] = ACTIONS(3698), + [anon_sym_LBRACE] = ACTIONS(3702), + [anon_sym_file] = ACTIONS(3691), + [anon_sym_LT] = ACTIONS(3704), + [anon_sym_GT] = ACTIONS(3704), + [anon_sym_where] = ACTIONS(3691), + [anon_sym_QMARK] = ACTIONS(3704), + [anon_sym_notnull] = ACTIONS(3691), + [anon_sym_unmanaged] = ACTIONS(3691), + [anon_sym_BANG] = ACTIONS(3704), + [anon_sym_PLUS_PLUS] = ACTIONS(3698), + [anon_sym_DASH_DASH] = ACTIONS(3698), + [anon_sym_PLUS] = ACTIONS(3704), + [anon_sym_DASH] = ACTIONS(3704), + [anon_sym_STAR] = ACTIONS(3704), + [anon_sym_SLASH] = ACTIONS(3704), + [anon_sym_PERCENT] = ACTIONS(3704), + [anon_sym_CARET] = ACTIONS(3704), + [anon_sym_PIPE] = ACTIONS(3704), + [anon_sym_AMP] = ACTIONS(3704), + [anon_sym_LT_LT] = ACTIONS(3704), + [anon_sym_GT_GT] = ACTIONS(3704), + [anon_sym_GT_GT_GT] = ACTIONS(3704), + [anon_sym_EQ_EQ] = ACTIONS(3698), + [anon_sym_BANG_EQ] = ACTIONS(3698), + [anon_sym_GT_EQ] = ACTIONS(3698), + [anon_sym_LT_EQ] = ACTIONS(3698), + [anon_sym_DOT] = ACTIONS(3704), + [anon_sym_scoped] = ACTIONS(3691), + [anon_sym_var] = ACTIONS(3691), + [anon_sym_yield] = ACTIONS(3691), + [anon_sym_switch] = ACTIONS(3704), + [anon_sym_when] = ACTIONS(3691), + [sym_discard] = ACTIONS(3691), + [anon_sym_DOT_DOT] = ACTIONS(3698), + [anon_sym_and] = ACTIONS(3708), + [anon_sym_or] = ACTIONS(3708), + [anon_sym_PLUS_EQ] = ACTIONS(3711), + [anon_sym_DASH_EQ] = ACTIONS(3711), + [anon_sym_STAR_EQ] = ACTIONS(3711), + [anon_sym_SLASH_EQ] = ACTIONS(3711), + [anon_sym_PERCENT_EQ] = ACTIONS(3711), + [anon_sym_AMP_EQ] = ACTIONS(3711), + [anon_sym_CARET_EQ] = ACTIONS(3711), + [anon_sym_PIPE_EQ] = ACTIONS(3711), + [anon_sym_LT_LT_EQ] = ACTIONS(3711), + [anon_sym_GT_GT_EQ] = ACTIONS(3711), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3711), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3711), + [anon_sym_AMP_AMP] = ACTIONS(3698), + [anon_sym_PIPE_PIPE] = ACTIONS(3698), + [anon_sym_QMARK_QMARK] = ACTIONS(3704), + [anon_sym_from] = ACTIONS(3691), + [anon_sym_into] = ACTIONS(3691), + [anon_sym_join] = ACTIONS(3691), + [anon_sym_on] = ACTIONS(3691), + [anon_sym_equals] = ACTIONS(3691), + [anon_sym_let] = ACTIONS(3691), + [anon_sym_orderby] = ACTIONS(3691), + [anon_sym_ascending] = ACTIONS(3691), + [anon_sym_descending] = ACTIONS(3691), + [anon_sym_group] = ACTIONS(3691), + [anon_sym_by] = ACTIONS(3708), + [anon_sym_select] = ACTIONS(3691), + [anon_sym_as] = ACTIONS(3704), + [anon_sym_is] = ACTIONS(3704), + [anon_sym_DASH_GT] = ACTIONS(3698), + [anon_sym_with] = ACTIONS(3704), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -410919,80 +410617,79 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2309), [sym_preproc_define] = STATE(2309), [sym_preproc_undef] = STATE(2309), - [sym__identifier_token] = ACTIONS(3685), - [anon_sym_alias] = ACTIONS(3685), - [anon_sym_global] = ACTIONS(3685), - [anon_sym_EQ] = ACTIONS(3689), - [anon_sym_LBRACK] = ACTIONS(3691), - [anon_sym_COLON] = ACTIONS(3687), - [anon_sym_LPAREN] = ACTIONS(3691), - [anon_sym_LBRACE] = ACTIONS(3687), - [anon_sym_file] = ACTIONS(3685), - [anon_sym_LT] = ACTIONS(3689), - [anon_sym_GT] = ACTIONS(3689), - [anon_sym_where] = ACTIONS(3685), - [anon_sym_QMARK] = ACTIONS(3694), - [anon_sym_notnull] = ACTIONS(3685), - [anon_sym_unmanaged] = ACTIONS(3685), - [anon_sym_BANG] = ACTIONS(3689), - [anon_sym_PLUS_PLUS] = ACTIONS(3697), - [anon_sym_DASH_DASH] = ACTIONS(3697), - [anon_sym_PLUS] = ACTIONS(3689), - [anon_sym_DASH] = ACTIONS(3689), - [anon_sym_STAR] = ACTIONS(3694), - [anon_sym_SLASH] = ACTIONS(3689), - [anon_sym_PERCENT] = ACTIONS(3689), - [anon_sym_CARET] = ACTIONS(3689), - [anon_sym_PIPE] = ACTIONS(3689), - [anon_sym_AMP] = ACTIONS(3689), - [anon_sym_LT_LT] = ACTIONS(3689), - [anon_sym_GT_GT] = ACTIONS(3689), - [anon_sym_GT_GT_GT] = ACTIONS(3689), - [anon_sym_EQ_EQ] = ACTIONS(3697), - [anon_sym_BANG_EQ] = ACTIONS(3697), - [anon_sym_GT_EQ] = ACTIONS(3697), - [anon_sym_LT_EQ] = ACTIONS(3697), - [anon_sym_DOT] = ACTIONS(3694), - [anon_sym_scoped] = ACTIONS(3685), - [anon_sym_var] = ACTIONS(3685), - [anon_sym_yield] = ACTIONS(3685), - [anon_sym_switch] = ACTIONS(3689), - [anon_sym_when] = ACTIONS(3685), - [sym_discard] = ACTIONS(3685), - [anon_sym_DOT_DOT] = ACTIONS(3697), - [anon_sym_and] = ACTIONS(3685), - [anon_sym_or] = ACTIONS(3685), - [anon_sym_PLUS_EQ] = ACTIONS(3697), - [anon_sym_DASH_EQ] = ACTIONS(3697), - [anon_sym_STAR_EQ] = ACTIONS(3697), - [anon_sym_SLASH_EQ] = ACTIONS(3697), - [anon_sym_PERCENT_EQ] = ACTIONS(3697), - [anon_sym_AMP_EQ] = ACTIONS(3697), - [anon_sym_CARET_EQ] = ACTIONS(3697), - [anon_sym_PIPE_EQ] = ACTIONS(3697), - [anon_sym_LT_LT_EQ] = ACTIONS(3697), - [anon_sym_GT_GT_EQ] = ACTIONS(3697), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3697), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3697), - [anon_sym_AMP_AMP] = ACTIONS(3697), - [anon_sym_PIPE_PIPE] = ACTIONS(3697), - [anon_sym_QMARK_QMARK] = ACTIONS(3689), - [anon_sym_from] = ACTIONS(3685), - [anon_sym_into] = ACTIONS(3685), - [anon_sym_join] = ACTIONS(3685), - [anon_sym_on] = ACTIONS(3685), - [anon_sym_equals] = ACTIONS(3685), - [anon_sym_let] = ACTIONS(3685), - [anon_sym_orderby] = ACTIONS(3685), - [anon_sym_ascending] = ACTIONS(3685), - [anon_sym_descending] = ACTIONS(3685), - [anon_sym_group] = ACTIONS(3685), - [anon_sym_by] = ACTIONS(3685), - [anon_sym_select] = ACTIONS(3685), - [anon_sym_as] = ACTIONS(3689), - [anon_sym_is] = ACTIONS(3689), - [anon_sym_DASH_GT] = ACTIONS(3691), - [anon_sym_with] = ACTIONS(3689), + [sym__identifier_token] = ACTIONS(3951), + [anon_sym_alias] = ACTIONS(3951), + [anon_sym_SEMI] = ACTIONS(3953), + [anon_sym_global] = ACTIONS(3951), + [anon_sym_LBRACK] = ACTIONS(3953), + [anon_sym_COLON] = ACTIONS(3953), + [anon_sym_COMMA] = ACTIONS(3953), + [anon_sym_RBRACK] = ACTIONS(3953), + [anon_sym_LPAREN] = ACTIONS(3953), + [anon_sym_RPAREN] = ACTIONS(3953), + [anon_sym_LBRACE] = ACTIONS(3953), + [anon_sym_RBRACE] = ACTIONS(3953), + [anon_sym_file] = ACTIONS(3951), + [anon_sym_LT] = ACTIONS(3951), + [anon_sym_GT] = ACTIONS(3951), + [anon_sym_in] = ACTIONS(3951), + [anon_sym_where] = ACTIONS(3951), + [anon_sym_QMARK] = ACTIONS(3951), + [anon_sym_notnull] = ACTIONS(3951), + [anon_sym_unmanaged] = ACTIONS(3951), + [anon_sym_operator] = ACTIONS(3951), + [anon_sym_BANG] = ACTIONS(3951), + [anon_sym_PLUS_PLUS] = ACTIONS(3953), + [anon_sym_DASH_DASH] = ACTIONS(3953), + [anon_sym_PLUS] = ACTIONS(3951), + [anon_sym_DASH] = ACTIONS(3951), + [anon_sym_STAR] = ACTIONS(3953), + [anon_sym_SLASH] = ACTIONS(3951), + [anon_sym_PERCENT] = ACTIONS(3953), + [anon_sym_CARET] = ACTIONS(3953), + [anon_sym_PIPE] = ACTIONS(3951), + [anon_sym_AMP] = ACTIONS(3951), + [anon_sym_LT_LT] = ACTIONS(3953), + [anon_sym_GT_GT] = ACTIONS(3951), + [anon_sym_GT_GT_GT] = ACTIONS(3953), + [anon_sym_EQ_EQ] = ACTIONS(3953), + [anon_sym_BANG_EQ] = ACTIONS(3953), + [anon_sym_GT_EQ] = ACTIONS(3953), + [anon_sym_LT_EQ] = ACTIONS(3953), + [anon_sym_this] = ACTIONS(3951), + [anon_sym_DOT] = ACTIONS(3951), + [anon_sym_scoped] = ACTIONS(3951), + [anon_sym_EQ_GT] = ACTIONS(3953), + [anon_sym_var] = ACTIONS(3951), + [anon_sym_yield] = ACTIONS(3951), + [anon_sym_switch] = ACTIONS(3951), + [anon_sym_when] = ACTIONS(3951), + [sym_discard] = ACTIONS(3951), + [anon_sym_DOT_DOT] = ACTIONS(3953), + [anon_sym_and] = ACTIONS(3951), + [anon_sym_or] = ACTIONS(3951), + [anon_sym_AMP_AMP] = ACTIONS(3953), + [anon_sym_PIPE_PIPE] = ACTIONS(3953), + [anon_sym_QMARK_QMARK] = ACTIONS(3953), + [anon_sym_from] = ACTIONS(3951), + [anon_sym_into] = ACTIONS(3951), + [anon_sym_join] = ACTIONS(3951), + [anon_sym_on] = ACTIONS(3951), + [anon_sym_equals] = ACTIONS(3951), + [anon_sym_let] = ACTIONS(3951), + [anon_sym_orderby] = ACTIONS(3951), + [anon_sym_ascending] = ACTIONS(3951), + [anon_sym_descending] = ACTIONS(3951), + [anon_sym_group] = ACTIONS(3951), + [anon_sym_by] = ACTIONS(3951), + [anon_sym_select] = ACTIONS(3951), + [anon_sym_as] = ACTIONS(3951), + [anon_sym_is] = ACTIONS(3951), + [anon_sym_DASH_GT] = ACTIONS(3953), + [anon_sym_with] = ACTIONS(3951), + [aux_sym_preproc_if_token3] = ACTIONS(3953), + [aux_sym_preproc_else_token1] = ACTIONS(3953), + [aux_sym_preproc_elif_token1] = ACTIONS(3953), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -411014,93 +410711,91 @@ 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(3685), - [anon_sym_alias] = ACTIONS(3685), - [anon_sym_global] = ACTIONS(3685), - [anon_sym_EQ] = ACTIONS(3689), - [anon_sym_LBRACK] = ACTIONS(3691), - [anon_sym_COLON] = ACTIONS(3697), - [anon_sym_COMMA] = ACTIONS(3697), - [anon_sym_LPAREN] = ACTIONS(3691), - [anon_sym_file] = ACTIONS(3685), - [anon_sym_LT] = ACTIONS(3689), - [anon_sym_GT] = ACTIONS(3689), - [anon_sym_where] = ACTIONS(3685), - [anon_sym_QMARK] = ACTIONS(3694), - [anon_sym_notnull] = ACTIONS(3685), - [anon_sym_unmanaged] = ACTIONS(3685), - [anon_sym_BANG] = ACTIONS(3689), - [anon_sym_PLUS_PLUS] = ACTIONS(3697), - [anon_sym_DASH_DASH] = ACTIONS(3697), - [anon_sym_PLUS] = ACTIONS(3689), - [anon_sym_DASH] = ACTIONS(3689), - [anon_sym_STAR] = ACTIONS(3694), - [anon_sym_SLASH] = ACTIONS(3689), - [anon_sym_PERCENT] = ACTIONS(3689), - [anon_sym_CARET] = ACTIONS(3689), - [anon_sym_PIPE] = ACTIONS(3689), - [anon_sym_AMP] = ACTIONS(3689), - [anon_sym_LT_LT] = ACTIONS(3689), - [anon_sym_GT_GT] = ACTIONS(3689), - [anon_sym_GT_GT_GT] = ACTIONS(3689), - [anon_sym_EQ_EQ] = ACTIONS(3697), - [anon_sym_BANG_EQ] = ACTIONS(3697), - [anon_sym_GT_EQ] = ACTIONS(3697), - [anon_sym_LT_EQ] = ACTIONS(3697), - [anon_sym_DOT] = ACTIONS(3694), - [anon_sym_scoped] = ACTIONS(3685), - [anon_sym_var] = ACTIONS(3685), - [anon_sym_yield] = ACTIONS(3685), - [anon_sym_switch] = ACTIONS(3689), - [anon_sym_when] = ACTIONS(3685), - [anon_sym_DOT_DOT] = ACTIONS(3697), - [anon_sym_and] = ACTIONS(3689), - [anon_sym_or] = ACTIONS(3689), - [anon_sym_PLUS_EQ] = ACTIONS(3697), - [anon_sym_DASH_EQ] = ACTIONS(3697), - [anon_sym_STAR_EQ] = ACTIONS(3697), - [anon_sym_SLASH_EQ] = ACTIONS(3697), - [anon_sym_PERCENT_EQ] = ACTIONS(3697), - [anon_sym_AMP_EQ] = ACTIONS(3697), - [anon_sym_CARET_EQ] = ACTIONS(3697), - [anon_sym_PIPE_EQ] = ACTIONS(3697), - [anon_sym_LT_LT_EQ] = ACTIONS(3697), - [anon_sym_GT_GT_EQ] = ACTIONS(3697), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3697), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3697), - [anon_sym_AMP_AMP] = ACTIONS(3697), - [anon_sym_PIPE_PIPE] = ACTIONS(3697), - [anon_sym_QMARK_QMARK] = ACTIONS(3689), - [anon_sym_from] = ACTIONS(3685), - [anon_sym_into] = ACTIONS(3685), - [anon_sym_join] = ACTIONS(3685), - [anon_sym_on] = ACTIONS(3685), - [anon_sym_equals] = ACTIONS(3685), - [anon_sym_let] = ACTIONS(3685), - [anon_sym_orderby] = ACTIONS(3685), - [anon_sym_ascending] = ACTIONS(3685), - [anon_sym_descending] = ACTIONS(3685), - [anon_sym_group] = ACTIONS(3685), - [anon_sym_by] = ACTIONS(3685), - [anon_sym_select] = ACTIONS(3685), - [anon_sym_as] = ACTIONS(3689), - [anon_sym_is] = ACTIONS(3689), - [anon_sym_DASH_GT] = ACTIONS(3691), - [anon_sym_with] = ACTIONS(3689), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_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(3697), + [sym__identifier_token] = ACTIONS(3669), + [anon_sym_alias] = ACTIONS(3669), + [anon_sym_global] = ACTIONS(3669), + [anon_sym_EQ] = ACTIONS(3673), + [anon_sym_LBRACK] = ACTIONS(3675), + [anon_sym_LPAREN] = ACTIONS(3675), + [anon_sym_LBRACE] = ACTIONS(3678), + [anon_sym_file] = ACTIONS(3669), + [anon_sym_LT] = ACTIONS(3680), + [anon_sym_GT] = ACTIONS(3680), + [anon_sym_where] = ACTIONS(3669), + [anon_sym_QMARK] = ACTIONS(3680), + [anon_sym_notnull] = ACTIONS(3669), + [anon_sym_unmanaged] = ACTIONS(3669), + [anon_sym_BANG] = ACTIONS(3680), + [anon_sym_PLUS_PLUS] = ACTIONS(3675), + [anon_sym_DASH_DASH] = ACTIONS(3675), + [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(3675), + [anon_sym_BANG_EQ] = ACTIONS(3675), + [anon_sym_GT_EQ] = ACTIONS(3675), + [anon_sym_LT_EQ] = ACTIONS(3675), + [anon_sym_DOT] = ACTIONS(3680), + [anon_sym_scoped] = ACTIONS(3669), + [anon_sym_var] = ACTIONS(3669), + [anon_sym_yield] = ACTIONS(3669), + [anon_sym_switch] = ACTIONS(3680), + [anon_sym_when] = ACTIONS(3669), + [sym_discard] = ACTIONS(3669), + [anon_sym_DOT_DOT] = ACTIONS(3675), + [anon_sym_and] = ACTIONS(3680), + [anon_sym_or] = ACTIONS(3680), + [anon_sym_PLUS_EQ] = ACTIONS(3671), + [anon_sym_DASH_EQ] = ACTIONS(3671), + [anon_sym_STAR_EQ] = ACTIONS(3671), + [anon_sym_SLASH_EQ] = ACTIONS(3671), + [anon_sym_PERCENT_EQ] = ACTIONS(3671), + [anon_sym_AMP_EQ] = ACTIONS(3671), + [anon_sym_CARET_EQ] = ACTIONS(3671), + [anon_sym_PIPE_EQ] = ACTIONS(3671), + [anon_sym_LT_LT_EQ] = ACTIONS(3671), + [anon_sym_GT_GT_EQ] = ACTIONS(3671), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3671), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3671), + [anon_sym_AMP_AMP] = ACTIONS(3675), + [anon_sym_PIPE_PIPE] = ACTIONS(3675), + [anon_sym_QMARK_QMARK] = ACTIONS(3680), + [anon_sym_from] = ACTIONS(3669), + [anon_sym_into] = ACTIONS(3680), + [anon_sym_join] = ACTIONS(3669), + [anon_sym_on] = ACTIONS(3680), + [anon_sym_equals] = ACTIONS(3669), + [anon_sym_let] = ACTIONS(3669), + [anon_sym_orderby] = ACTIONS(3669), + [anon_sym_ascending] = ACTIONS(3669), + [anon_sym_descending] = ACTIONS(3669), + [anon_sym_group] = ACTIONS(3669), + [anon_sym_by] = ACTIONS(3669), + [anon_sym_select] = ACTIONS(3669), + [anon_sym_as] = ACTIONS(3680), + [anon_sym_is] = ACTIONS(3680), + [anon_sym_DASH_GT] = ACTIONS(3675), + [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), }, [2311] = { - [sym_type_argument_list] = STATE(2183), [sym_preproc_region] = STATE(2311), [sym_preproc_endregion] = STATE(2311), [sym_preproc_line] = STATE(2311), @@ -411110,79 +410805,79 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2311), [sym_preproc_define] = STATE(2311), [sym_preproc_undef] = STATE(2311), - [sym__identifier_token] = ACTIONS(3660), - [anon_sym_alias] = ACTIONS(3660), - [anon_sym_global] = ACTIONS(3660), - [anon_sym_EQ] = ACTIONS(3969), - [anon_sym_LBRACK] = ACTIONS(3662), - [anon_sym_COMMA] = ACTIONS(3662), - [anon_sym_LPAREN] = ACTIONS(3662), - [anon_sym_RBRACE] = ACTIONS(3662), - [anon_sym_file] = ACTIONS(3660), - [anon_sym_LT] = ACTIONS(3664), - [anon_sym_GT] = ACTIONS(3660), - [anon_sym_where] = ACTIONS(3660), - [anon_sym_QMARK] = ACTIONS(3660), - [anon_sym_notnull] = ACTIONS(3660), - [anon_sym_unmanaged] = ACTIONS(3660), - [anon_sym_BANG] = ACTIONS(3660), - [anon_sym_PLUS_PLUS] = ACTIONS(3662), - [anon_sym_DASH_DASH] = ACTIONS(3662), - [anon_sym_PLUS] = ACTIONS(3660), - [anon_sym_DASH] = ACTIONS(3660), - [anon_sym_STAR] = ACTIONS(3660), - [anon_sym_SLASH] = ACTIONS(3660), - [anon_sym_PERCENT] = ACTIONS(3660), - [anon_sym_CARET] = ACTIONS(3660), - [anon_sym_PIPE] = ACTIONS(3660), - [anon_sym_AMP] = ACTIONS(3660), - [anon_sym_LT_LT] = ACTIONS(3660), - [anon_sym_GT_GT] = ACTIONS(3660), - [anon_sym_GT_GT_GT] = ACTIONS(3660), - [anon_sym_EQ_EQ] = ACTIONS(3662), - [anon_sym_BANG_EQ] = ACTIONS(3662), - [anon_sym_GT_EQ] = ACTIONS(3662), - [anon_sym_LT_EQ] = ACTIONS(3662), - [anon_sym_DOT] = ACTIONS(3660), - [anon_sym_scoped] = ACTIONS(3660), - [anon_sym_EQ_GT] = ACTIONS(3667), - [anon_sym_COLON_COLON] = ACTIONS(3669), - [anon_sym_var] = ACTIONS(3660), - [anon_sym_yield] = ACTIONS(3660), - [anon_sym_switch] = ACTIONS(3660), - [anon_sym_when] = ACTIONS(3660), - [anon_sym_DOT_DOT] = ACTIONS(3662), - [anon_sym_PLUS_EQ] = ACTIONS(3662), - [anon_sym_DASH_EQ] = ACTIONS(3662), - [anon_sym_STAR_EQ] = ACTIONS(3662), - [anon_sym_SLASH_EQ] = ACTIONS(3662), - [anon_sym_PERCENT_EQ] = ACTIONS(3662), - [anon_sym_AMP_EQ] = ACTIONS(3662), - [anon_sym_CARET_EQ] = ACTIONS(3662), - [anon_sym_PIPE_EQ] = ACTIONS(3662), - [anon_sym_LT_LT_EQ] = ACTIONS(3662), - [anon_sym_GT_GT_EQ] = ACTIONS(3662), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3662), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3662), - [anon_sym_AMP_AMP] = ACTIONS(3662), - [anon_sym_PIPE_PIPE] = ACTIONS(3662), - [anon_sym_QMARK_QMARK] = ACTIONS(3660), - [anon_sym_from] = ACTIONS(3660), - [anon_sym_into] = ACTIONS(3660), - [anon_sym_join] = ACTIONS(3660), - [anon_sym_on] = ACTIONS(3660), - [anon_sym_equals] = ACTIONS(3660), - [anon_sym_let] = ACTIONS(3660), - [anon_sym_orderby] = ACTIONS(3660), - [anon_sym_ascending] = ACTIONS(3660), - [anon_sym_descending] = ACTIONS(3660), - [anon_sym_group] = ACTIONS(3660), - [anon_sym_by] = ACTIONS(3660), - [anon_sym_select] = ACTIONS(3660), - [anon_sym_as] = ACTIONS(3660), - [anon_sym_is] = ACTIONS(3660), - [anon_sym_DASH_GT] = ACTIONS(3662), - [anon_sym_with] = ACTIONS(3660), + [sym__identifier_token] = ACTIONS(3955), + [anon_sym_alias] = ACTIONS(3955), + [anon_sym_SEMI] = ACTIONS(3957), + [anon_sym_global] = ACTIONS(3955), + [anon_sym_LBRACK] = ACTIONS(3957), + [anon_sym_COLON] = ACTIONS(3957), + [anon_sym_COMMA] = ACTIONS(3957), + [anon_sym_RBRACK] = ACTIONS(3957), + [anon_sym_LPAREN] = ACTIONS(3957), + [anon_sym_RPAREN] = ACTIONS(3957), + [anon_sym_LBRACE] = ACTIONS(3957), + [anon_sym_RBRACE] = ACTIONS(3957), + [anon_sym_file] = ACTIONS(3955), + [anon_sym_LT] = ACTIONS(3955), + [anon_sym_GT] = ACTIONS(3955), + [anon_sym_in] = ACTIONS(3955), + [anon_sym_where] = ACTIONS(3955), + [anon_sym_QMARK] = ACTIONS(3955), + [anon_sym_notnull] = ACTIONS(3955), + [anon_sym_unmanaged] = ACTIONS(3955), + [anon_sym_operator] = ACTIONS(3955), + [anon_sym_BANG] = ACTIONS(3955), + [anon_sym_PLUS_PLUS] = ACTIONS(3957), + [anon_sym_DASH_DASH] = ACTIONS(3957), + [anon_sym_PLUS] = ACTIONS(3955), + [anon_sym_DASH] = ACTIONS(3955), + [anon_sym_STAR] = ACTIONS(3957), + [anon_sym_SLASH] = ACTIONS(3955), + [anon_sym_PERCENT] = ACTIONS(3957), + [anon_sym_CARET] = ACTIONS(3957), + [anon_sym_PIPE] = ACTIONS(3955), + [anon_sym_AMP] = ACTIONS(3955), + [anon_sym_LT_LT] = ACTIONS(3957), + [anon_sym_GT_GT] = ACTIONS(3955), + [anon_sym_GT_GT_GT] = ACTIONS(3957), + [anon_sym_EQ_EQ] = ACTIONS(3957), + [anon_sym_BANG_EQ] = ACTIONS(3957), + [anon_sym_GT_EQ] = ACTIONS(3957), + [anon_sym_LT_EQ] = ACTIONS(3957), + [anon_sym_this] = ACTIONS(3955), + [anon_sym_DOT] = ACTIONS(3955), + [anon_sym_scoped] = ACTIONS(3955), + [anon_sym_EQ_GT] = ACTIONS(3957), + [anon_sym_var] = ACTIONS(3955), + [anon_sym_yield] = ACTIONS(3955), + [anon_sym_switch] = ACTIONS(3955), + [anon_sym_when] = ACTIONS(3955), + [sym_discard] = ACTIONS(3955), + [anon_sym_DOT_DOT] = ACTIONS(3957), + [anon_sym_and] = ACTIONS(3955), + [anon_sym_or] = ACTIONS(3955), + [anon_sym_AMP_AMP] = ACTIONS(3957), + [anon_sym_PIPE_PIPE] = ACTIONS(3957), + [anon_sym_QMARK_QMARK] = ACTIONS(3957), + [anon_sym_from] = ACTIONS(3955), + [anon_sym_into] = ACTIONS(3955), + [anon_sym_join] = ACTIONS(3955), + [anon_sym_on] = ACTIONS(3955), + [anon_sym_equals] = ACTIONS(3955), + [anon_sym_let] = ACTIONS(3955), + [anon_sym_orderby] = ACTIONS(3955), + [anon_sym_ascending] = ACTIONS(3955), + [anon_sym_descending] = ACTIONS(3955), + [anon_sym_group] = ACTIONS(3955), + [anon_sym_by] = ACTIONS(3955), + [anon_sym_select] = ACTIONS(3955), + [anon_sym_as] = ACTIONS(3955), + [anon_sym_is] = ACTIONS(3955), + [anon_sym_DASH_GT] = ACTIONS(3957), + [anon_sym_with] = ACTIONS(3955), + [aux_sym_preproc_if_token3] = ACTIONS(3957), + [aux_sym_preproc_else_token1] = ACTIONS(3957), + [aux_sym_preproc_elif_token1] = ACTIONS(3957), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -411204,79 +410899,79 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2312), [sym_preproc_define] = STATE(2312), [sym_preproc_undef] = STATE(2312), - [sym__identifier_token] = ACTIONS(3699), - [anon_sym_alias] = ACTIONS(3699), - [anon_sym_global] = ACTIONS(3699), - [anon_sym_EQ] = ACTIONS(3704), - [anon_sym_LBRACK] = ACTIONS(3721), - [anon_sym_COLON] = ACTIONS(3719), - [anon_sym_COMMA] = ACTIONS(3719), - [anon_sym_LPAREN] = ACTIONS(3721), - [anon_sym_file] = ACTIONS(3699), - [anon_sym_LT] = ACTIONS(3704), - [anon_sym_GT] = ACTIONS(3704), - [anon_sym_where] = ACTIONS(3699), - [anon_sym_QMARK] = ACTIONS(3724), - [anon_sym_notnull] = ACTIONS(3699), - [anon_sym_unmanaged] = ACTIONS(3699), - [anon_sym_BANG] = ACTIONS(3704), - [anon_sym_PLUS_PLUS] = ACTIONS(3719), - [anon_sym_DASH_DASH] = ACTIONS(3719), - [anon_sym_PLUS] = ACTIONS(3704), - [anon_sym_DASH] = ACTIONS(3704), - [anon_sym_STAR] = ACTIONS(3724), - [anon_sym_SLASH] = ACTIONS(3704), - [anon_sym_PERCENT] = ACTIONS(3704), - [anon_sym_CARET] = ACTIONS(3704), - [anon_sym_PIPE] = ACTIONS(3704), - [anon_sym_AMP] = ACTIONS(3704), - [anon_sym_LT_LT] = ACTIONS(3704), - [anon_sym_GT_GT] = ACTIONS(3704), - [anon_sym_GT_GT_GT] = ACTIONS(3704), - [anon_sym_EQ_EQ] = ACTIONS(3719), - [anon_sym_BANG_EQ] = ACTIONS(3719), - [anon_sym_GT_EQ] = ACTIONS(3719), - [anon_sym_LT_EQ] = ACTIONS(3719), - [anon_sym_DOT] = ACTIONS(3724), - [anon_sym_scoped] = ACTIONS(3699), - [anon_sym_var] = ACTIONS(3699), - [anon_sym_yield] = ACTIONS(3699), - [anon_sym_switch] = ACTIONS(3704), - [anon_sym_when] = ACTIONS(3699), - [anon_sym_DOT_DOT] = ACTIONS(3719), - [anon_sym_and] = ACTIONS(3704), - [anon_sym_or] = ACTIONS(3704), - [anon_sym_PLUS_EQ] = ACTIONS(3719), - [anon_sym_DASH_EQ] = ACTIONS(3719), - [anon_sym_STAR_EQ] = ACTIONS(3719), - [anon_sym_SLASH_EQ] = ACTIONS(3719), - [anon_sym_PERCENT_EQ] = ACTIONS(3719), - [anon_sym_AMP_EQ] = ACTIONS(3719), - [anon_sym_CARET_EQ] = ACTIONS(3719), - [anon_sym_PIPE_EQ] = ACTIONS(3719), - [anon_sym_LT_LT_EQ] = ACTIONS(3719), - [anon_sym_GT_GT_EQ] = ACTIONS(3719), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3719), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3719), - [anon_sym_AMP_AMP] = ACTIONS(3719), - [anon_sym_PIPE_PIPE] = ACTIONS(3719), - [anon_sym_QMARK_QMARK] = ACTIONS(3704), - [anon_sym_from] = ACTIONS(3699), - [anon_sym_into] = ACTIONS(3724), - [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_ascending] = ACTIONS(3699), - [anon_sym_descending] = ACTIONS(3699), - [anon_sym_group] = ACTIONS(3699), - [anon_sym_by] = ACTIONS(3699), - [anon_sym_select] = ACTIONS(3699), - [anon_sym_as] = ACTIONS(3704), - [anon_sym_is] = ACTIONS(3704), - [anon_sym_DASH_GT] = ACTIONS(3721), - [anon_sym_with] = ACTIONS(3704), + [sym__identifier_token] = ACTIONS(3669), + [anon_sym_alias] = ACTIONS(3669), + [anon_sym_global] = ACTIONS(3669), + [anon_sym_EQ] = ACTIONS(3673), + [anon_sym_LBRACK] = ACTIONS(3675), + [anon_sym_COLON] = ACTIONS(3671), + [anon_sym_LPAREN] = ACTIONS(3675), + [anon_sym_file] = ACTIONS(3669), + [anon_sym_LT] = ACTIONS(3673), + [anon_sym_GT] = ACTIONS(3673), + [anon_sym_where] = ACTIONS(3669), + [anon_sym_QMARK] = ACTIONS(3680), + [anon_sym_notnull] = ACTIONS(3669), + [anon_sym_unmanaged] = ACTIONS(3669), + [anon_sym_BANG] = ACTIONS(3673), + [anon_sym_PLUS_PLUS] = ACTIONS(3671), + [anon_sym_DASH_DASH] = ACTIONS(3671), + [anon_sym_PLUS] = ACTIONS(3673), + [anon_sym_DASH] = ACTIONS(3673), + [anon_sym_STAR] = ACTIONS(3680), + [anon_sym_SLASH] = ACTIONS(3673), + [anon_sym_PERCENT] = ACTIONS(3673), + [anon_sym_CARET] = ACTIONS(3673), + [anon_sym_PIPE] = ACTIONS(3673), + [anon_sym_AMP] = ACTIONS(3673), + [anon_sym_LT_LT] = ACTIONS(3673), + [anon_sym_GT_GT] = ACTIONS(3673), + [anon_sym_GT_GT_GT] = ACTIONS(3673), + [anon_sym_EQ_EQ] = ACTIONS(3671), + [anon_sym_BANG_EQ] = ACTIONS(3671), + [anon_sym_GT_EQ] = ACTIONS(3671), + [anon_sym_LT_EQ] = ACTIONS(3671), + [anon_sym_DOT] = ACTIONS(3680), + [anon_sym_scoped] = ACTIONS(3669), + [anon_sym_EQ_GT] = ACTIONS(3671), + [anon_sym_var] = ACTIONS(3669), + [anon_sym_yield] = ACTIONS(3669), + [anon_sym_switch] = ACTIONS(3673), + [anon_sym_when] = ACTIONS(3680), + [anon_sym_DOT_DOT] = ACTIONS(3671), + [anon_sym_and] = ACTIONS(3673), + [anon_sym_or] = ACTIONS(3673), + [anon_sym_PLUS_EQ] = ACTIONS(3671), + [anon_sym_DASH_EQ] = ACTIONS(3671), + [anon_sym_STAR_EQ] = ACTIONS(3671), + [anon_sym_SLASH_EQ] = ACTIONS(3671), + [anon_sym_PERCENT_EQ] = ACTIONS(3671), + [anon_sym_AMP_EQ] = ACTIONS(3671), + [anon_sym_CARET_EQ] = ACTIONS(3671), + [anon_sym_PIPE_EQ] = ACTIONS(3671), + [anon_sym_LT_LT_EQ] = ACTIONS(3671), + [anon_sym_GT_GT_EQ] = ACTIONS(3671), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3671), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3671), + [anon_sym_AMP_AMP] = ACTIONS(3671), + [anon_sym_PIPE_PIPE] = ACTIONS(3671), + [anon_sym_QMARK_QMARK] = ACTIONS(3673), + [anon_sym_from] = ACTIONS(3669), + [anon_sym_into] = ACTIONS(3680), + [anon_sym_join] = ACTIONS(3669), + [anon_sym_on] = ACTIONS(3669), + [anon_sym_equals] = ACTIONS(3669), + [anon_sym_let] = ACTIONS(3669), + [anon_sym_orderby] = ACTIONS(3669), + [anon_sym_ascending] = ACTIONS(3669), + [anon_sym_descending] = ACTIONS(3669), + [anon_sym_group] = ACTIONS(3669), + [anon_sym_by] = ACTIONS(3669), + [anon_sym_select] = ACTIONS(3669), + [anon_sym_as] = ACTIONS(3673), + [anon_sym_is] = ACTIONS(3673), + [anon_sym_DASH_GT] = ACTIONS(3675), + [anon_sym_with] = ACTIONS(3673), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -411287,9 +410982,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(3719), }, [2313] = { + [sym_type_argument_list] = STATE(2171), [sym_preproc_region] = STATE(2313), [sym_preproc_endregion] = STATE(2313), [sym_preproc_line] = STATE(2313), @@ -411299,79 +410994,78 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2313), [sym_preproc_define] = STATE(2313), [sym_preproc_undef] = STATE(2313), - [sym__identifier_token] = ACTIONS(3699), - [anon_sym_alias] = ACTIONS(3699), - [anon_sym_global] = ACTIONS(3699), - [anon_sym_EQ] = ACTIONS(3704), - [anon_sym_LBRACK] = ACTIONS(3721), - [anon_sym_COLON] = ACTIONS(3719), - [anon_sym_COMMA] = ACTIONS(3719), - [anon_sym_LPAREN] = ACTIONS(3721), - [anon_sym_file] = ACTIONS(3699), - [anon_sym_LT] = ACTIONS(3704), - [anon_sym_GT] = ACTIONS(3704), - [anon_sym_where] = ACTIONS(3699), - [anon_sym_QMARK] = ACTIONS(3724), - [anon_sym_notnull] = ACTIONS(3699), - [anon_sym_unmanaged] = ACTIONS(3699), - [anon_sym_BANG] = ACTIONS(3704), - [anon_sym_PLUS_PLUS] = ACTIONS(3719), - [anon_sym_DASH_DASH] = ACTIONS(3719), - [anon_sym_PLUS] = ACTIONS(3704), - [anon_sym_DASH] = ACTIONS(3704), - [anon_sym_STAR] = ACTIONS(3724), - [anon_sym_SLASH] = ACTIONS(3704), - [anon_sym_PERCENT] = ACTIONS(3704), - [anon_sym_CARET] = ACTIONS(3704), - [anon_sym_PIPE] = ACTIONS(3704), - [anon_sym_AMP] = ACTIONS(3704), - [anon_sym_LT_LT] = ACTIONS(3704), - [anon_sym_GT_GT] = ACTIONS(3704), - [anon_sym_GT_GT_GT] = ACTIONS(3704), - [anon_sym_EQ_EQ] = ACTIONS(3719), - [anon_sym_BANG_EQ] = ACTIONS(3719), - [anon_sym_GT_EQ] = ACTIONS(3719), - [anon_sym_LT_EQ] = ACTIONS(3719), - [anon_sym_DOT] = ACTIONS(3724), - [anon_sym_scoped] = ACTIONS(3699), - [anon_sym_var] = ACTIONS(3699), - [anon_sym_yield] = ACTIONS(3699), - [anon_sym_switch] = ACTIONS(3704), - [anon_sym_when] = ACTIONS(3699), - [anon_sym_DOT_DOT] = ACTIONS(3719), - [anon_sym_and] = ACTIONS(3704), - [anon_sym_or] = ACTIONS(3704), - [anon_sym_PLUS_EQ] = ACTIONS(3719), - [anon_sym_DASH_EQ] = ACTIONS(3719), - [anon_sym_STAR_EQ] = ACTIONS(3719), - [anon_sym_SLASH_EQ] = ACTIONS(3719), - [anon_sym_PERCENT_EQ] = ACTIONS(3719), - [anon_sym_AMP_EQ] = ACTIONS(3719), - [anon_sym_CARET_EQ] = ACTIONS(3719), - [anon_sym_PIPE_EQ] = ACTIONS(3719), - [anon_sym_LT_LT_EQ] = ACTIONS(3719), - [anon_sym_GT_GT_EQ] = ACTIONS(3719), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3719), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3719), - [anon_sym_AMP_AMP] = ACTIONS(3719), - [anon_sym_PIPE_PIPE] = ACTIONS(3719), - [anon_sym_QMARK_QMARK] = ACTIONS(3704), - [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_ascending] = ACTIONS(3699), - [anon_sym_descending] = ACTIONS(3699), - [anon_sym_group] = ACTIONS(3699), - [anon_sym_by] = ACTIONS(3699), - [anon_sym_select] = ACTIONS(3699), - [anon_sym_as] = ACTIONS(3704), - [anon_sym_is] = ACTIONS(3704), - [anon_sym_DASH_GT] = ACTIONS(3721), - [anon_sym_with] = ACTIONS(3704), + [sym__identifier_token] = ACTIONS(3638), + [anon_sym_alias] = ACTIONS(3638), + [anon_sym_global] = ACTIONS(3638), + [anon_sym_EQ] = ACTIONS(3638), + [anon_sym_LBRACK] = ACTIONS(3640), + [anon_sym_COLON] = ACTIONS(3959), + [anon_sym_LPAREN] = ACTIONS(3640), + [anon_sym_file] = ACTIONS(3638), + [anon_sym_LT] = ACTIONS(3648), + [anon_sym_GT] = ACTIONS(3638), + [anon_sym_where] = ACTIONS(3638), + [anon_sym_QMARK] = ACTIONS(3638), + [anon_sym_notnull] = ACTIONS(3638), + [anon_sym_unmanaged] = ACTIONS(3638), + [anon_sym_BANG] = ACTIONS(3638), + [anon_sym_PLUS_PLUS] = ACTIONS(3640), + [anon_sym_DASH_DASH] = ACTIONS(3640), + [anon_sym_PLUS] = ACTIONS(3638), + [anon_sym_DASH] = ACTIONS(3638), + [anon_sym_STAR] = ACTIONS(3638), + [anon_sym_SLASH] = ACTIONS(3638), + [anon_sym_PERCENT] = ACTIONS(3638), + [anon_sym_CARET] = ACTIONS(3638), + [anon_sym_PIPE] = ACTIONS(3638), + [anon_sym_AMP] = ACTIONS(3638), + [anon_sym_LT_LT] = ACTIONS(3638), + [anon_sym_GT_GT] = ACTIONS(3638), + [anon_sym_GT_GT_GT] = ACTIONS(3638), + [anon_sym_EQ_EQ] = ACTIONS(3640), + [anon_sym_BANG_EQ] = ACTIONS(3640), + [anon_sym_GT_EQ] = ACTIONS(3640), + [anon_sym_LT_EQ] = ACTIONS(3640), + [anon_sym_DOT] = ACTIONS(3638), + [anon_sym_scoped] = ACTIONS(3638), + [anon_sym_EQ_GT] = ACTIONS(3651), + [anon_sym_COLON_COLON] = ACTIONS(3653), + [anon_sym_var] = ACTIONS(3638), + [anon_sym_yield] = ACTIONS(3638), + [anon_sym_switch] = ACTIONS(3638), + [anon_sym_when] = ACTIONS(3638), + [anon_sym_DOT_DOT] = ACTIONS(3640), + [anon_sym_PLUS_EQ] = ACTIONS(3640), + [anon_sym_DASH_EQ] = ACTIONS(3640), + [anon_sym_STAR_EQ] = ACTIONS(3640), + [anon_sym_SLASH_EQ] = ACTIONS(3640), + [anon_sym_PERCENT_EQ] = ACTIONS(3640), + [anon_sym_AMP_EQ] = ACTIONS(3640), + [anon_sym_CARET_EQ] = ACTIONS(3640), + [anon_sym_PIPE_EQ] = ACTIONS(3640), + [anon_sym_LT_LT_EQ] = ACTIONS(3640), + [anon_sym_GT_GT_EQ] = ACTIONS(3640), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3640), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3640), + [anon_sym_AMP_AMP] = ACTIONS(3640), + [anon_sym_PIPE_PIPE] = ACTIONS(3640), + [anon_sym_QMARK_QMARK] = ACTIONS(3638), + [anon_sym_from] = ACTIONS(3638), + [anon_sym_into] = ACTIONS(3638), + [anon_sym_join] = ACTIONS(3638), + [anon_sym_on] = ACTIONS(3638), + [anon_sym_equals] = ACTIONS(3638), + [anon_sym_let] = ACTIONS(3638), + [anon_sym_orderby] = ACTIONS(3638), + [anon_sym_ascending] = ACTIONS(3638), + [anon_sym_descending] = ACTIONS(3638), + [anon_sym_group] = ACTIONS(3638), + [anon_sym_by] = ACTIONS(3638), + [anon_sym_select] = ACTIONS(3638), + [anon_sym_as] = ACTIONS(3638), + [anon_sym_is] = ACTIONS(3638), + [anon_sym_DASH_GT] = ACTIONS(3640), + [anon_sym_with] = ACTIONS(3638), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -411382,7 +411076,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(3719), }, [2314] = { [sym_preproc_region] = STATE(2314), @@ -411394,80 +411087,79 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2314), [sym_preproc_define] = STATE(2314), [sym_preproc_undef] = STATE(2314), - [sym__identifier_token] = ACTIONS(3699), - [anon_sym_alias] = ACTIONS(3699), - [anon_sym_global] = ACTIONS(3699), - [anon_sym_EQ] = ACTIONS(3704), - [anon_sym_LBRACK] = ACTIONS(3706), - [anon_sym_COMMA] = ACTIONS(3701), - [anon_sym_LPAREN] = ACTIONS(3706), - [anon_sym_LBRACE] = ACTIONS(3710), - [anon_sym_file] = ACTIONS(3699), - [anon_sym_LT] = ACTIONS(3712), - [anon_sym_GT] = ACTIONS(3712), - [anon_sym_where] = ACTIONS(3716), - [anon_sym_QMARK] = ACTIONS(3712), - [anon_sym_notnull] = ACTIONS(3699), - [anon_sym_unmanaged] = ACTIONS(3699), - [anon_sym_BANG] = ACTIONS(3712), - [anon_sym_PLUS_PLUS] = ACTIONS(3706), - [anon_sym_DASH_DASH] = ACTIONS(3706), - [anon_sym_PLUS] = ACTIONS(3712), - [anon_sym_DASH] = ACTIONS(3712), - [anon_sym_STAR] = ACTIONS(3712), - [anon_sym_SLASH] = ACTIONS(3712), - [anon_sym_PERCENT] = ACTIONS(3712), - [anon_sym_CARET] = ACTIONS(3712), - [anon_sym_PIPE] = ACTIONS(3712), - [anon_sym_AMP] = ACTIONS(3712), - [anon_sym_LT_LT] = ACTIONS(3712), - [anon_sym_GT_GT] = ACTIONS(3712), - [anon_sym_GT_GT_GT] = ACTIONS(3712), - [anon_sym_EQ_EQ] = ACTIONS(3706), - [anon_sym_BANG_EQ] = ACTIONS(3706), - [anon_sym_GT_EQ] = ACTIONS(3706), - [anon_sym_LT_EQ] = ACTIONS(3706), - [anon_sym_DOT] = ACTIONS(3712), - [anon_sym_scoped] = ACTIONS(3699), - [anon_sym_var] = ACTIONS(3699), - [anon_sym_yield] = ACTIONS(3699), - [anon_sym_switch] = ACTIONS(3712), - [anon_sym_when] = ACTIONS(3699), - [sym_discard] = ACTIONS(3699), - [anon_sym_DOT_DOT] = ACTIONS(3706), - [anon_sym_and] = ACTIONS(3716), - [anon_sym_or] = ACTIONS(3716), - [anon_sym_PLUS_EQ] = ACTIONS(3719), - [anon_sym_DASH_EQ] = ACTIONS(3719), - [anon_sym_STAR_EQ] = ACTIONS(3719), - [anon_sym_SLASH_EQ] = ACTIONS(3719), - [anon_sym_PERCENT_EQ] = ACTIONS(3719), - [anon_sym_AMP_EQ] = ACTIONS(3719), - [anon_sym_CARET_EQ] = ACTIONS(3719), - [anon_sym_PIPE_EQ] = ACTIONS(3719), - [anon_sym_LT_LT_EQ] = ACTIONS(3719), - [anon_sym_GT_GT_EQ] = ACTIONS(3719), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3719), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3719), - [anon_sym_AMP_AMP] = ACTIONS(3706), - [anon_sym_PIPE_PIPE] = ACTIONS(3706), - [anon_sym_QMARK_QMARK] = ACTIONS(3712), - [anon_sym_from] = ACTIONS(3716), - [anon_sym_into] = ACTIONS(3716), - [anon_sym_join] = ACTIONS(3716), - [anon_sym_on] = ACTIONS(3699), - [anon_sym_equals] = ACTIONS(3699), - [anon_sym_let] = ACTIONS(3716), - [anon_sym_orderby] = ACTIONS(3716), - [anon_sym_ascending] = ACTIONS(3716), - [anon_sym_descending] = ACTIONS(3716), - [anon_sym_group] = ACTIONS(3716), - [anon_sym_by] = ACTIONS(3699), - [anon_sym_select] = ACTIONS(3716), - [anon_sym_as] = ACTIONS(3712), - [anon_sym_is] = ACTIONS(3712), - [anon_sym_DASH_GT] = ACTIONS(3706), - [anon_sym_with] = ACTIONS(3712), + [sym__identifier_token] = ACTIONS(3669), + [anon_sym_alias] = ACTIONS(3669), + [anon_sym_global] = ACTIONS(3669), + [anon_sym_EQ] = ACTIONS(3673), + [anon_sym_LBRACK] = ACTIONS(3675), + [anon_sym_LPAREN] = ACTIONS(3675), + [anon_sym_LBRACE] = ACTIONS(3678), + [anon_sym_file] = ACTIONS(3669), + [anon_sym_LT] = ACTIONS(3680), + [anon_sym_GT] = ACTIONS(3680), + [anon_sym_where] = ACTIONS(3669), + [anon_sym_QMARK] = ACTIONS(3680), + [anon_sym_notnull] = ACTIONS(3669), + [anon_sym_unmanaged] = ACTIONS(3669), + [anon_sym_BANG] = ACTIONS(3680), + [anon_sym_PLUS_PLUS] = ACTIONS(3675), + [anon_sym_DASH_DASH] = ACTIONS(3675), + [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(3675), + [anon_sym_BANG_EQ] = ACTIONS(3675), + [anon_sym_GT_EQ] = ACTIONS(3675), + [anon_sym_LT_EQ] = ACTIONS(3675), + [anon_sym_DOT] = ACTIONS(3680), + [anon_sym_scoped] = ACTIONS(3669), + [anon_sym_var] = ACTIONS(3669), + [anon_sym_yield] = ACTIONS(3669), + [anon_sym_switch] = ACTIONS(3680), + [anon_sym_when] = ACTIONS(3669), + [sym_discard] = ACTIONS(3669), + [anon_sym_DOT_DOT] = ACTIONS(3675), + [anon_sym_and] = ACTIONS(3680), + [anon_sym_or] = ACTIONS(3680), + [anon_sym_PLUS_EQ] = ACTIONS(3671), + [anon_sym_DASH_EQ] = ACTIONS(3671), + [anon_sym_STAR_EQ] = ACTIONS(3671), + [anon_sym_SLASH_EQ] = ACTIONS(3671), + [anon_sym_PERCENT_EQ] = ACTIONS(3671), + [anon_sym_AMP_EQ] = ACTIONS(3671), + [anon_sym_CARET_EQ] = ACTIONS(3671), + [anon_sym_PIPE_EQ] = ACTIONS(3671), + [anon_sym_LT_LT_EQ] = ACTIONS(3671), + [anon_sym_GT_GT_EQ] = ACTIONS(3671), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3671), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3671), + [anon_sym_AMP_AMP] = ACTIONS(3675), + [anon_sym_PIPE_PIPE] = ACTIONS(3675), + [anon_sym_QMARK_QMARK] = ACTIONS(3680), + [anon_sym_from] = ACTIONS(3669), + [anon_sym_into] = ACTIONS(3669), + [anon_sym_join] = ACTIONS(3669), + [anon_sym_on] = ACTIONS(3680), + [anon_sym_equals] = ACTIONS(3669), + [anon_sym_let] = ACTIONS(3669), + [anon_sym_orderby] = ACTIONS(3669), + [anon_sym_ascending] = ACTIONS(3669), + [anon_sym_descending] = ACTIONS(3669), + [anon_sym_group] = ACTIONS(3669), + [anon_sym_by] = ACTIONS(3669), + [anon_sym_select] = ACTIONS(3669), + [anon_sym_as] = ACTIONS(3680), + [anon_sym_is] = ACTIONS(3680), + [anon_sym_DASH_GT] = ACTIONS(3675), + [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), @@ -411480,6 +411172,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2315] = { + [sym__variable_designation] = STATE(3449), + [sym_parenthesized_variable_designation] = STATE(3352), + [sym_identifier] = STATE(3355), + [sym__reserved_identifier] = STATE(3199), [sym_preproc_region] = STATE(2315), [sym_preproc_endregion] = STATE(2315), [sym_preproc_line] = STATE(2315), @@ -411489,79 +411185,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2315), [sym_preproc_define] = STATE(2315), [sym_preproc_undef] = STATE(2315), - [sym__identifier_token] = ACTIONS(3971), - [anon_sym_alias] = ACTIONS(3971), - [anon_sym_SEMI] = ACTIONS(3973), - [anon_sym_global] = ACTIONS(3971), - [anon_sym_LBRACK] = ACTIONS(3973), - [anon_sym_COLON] = ACTIONS(3973), - [anon_sym_COMMA] = ACTIONS(3973), - [anon_sym_RBRACK] = ACTIONS(3973), - [anon_sym_LPAREN] = ACTIONS(3973), - [anon_sym_RPAREN] = ACTIONS(3973), - [anon_sym_LBRACE] = ACTIONS(3973), - [anon_sym_RBRACE] = ACTIONS(3973), - [anon_sym_file] = ACTIONS(3971), - [anon_sym_LT] = ACTIONS(3971), - [anon_sym_GT] = ACTIONS(3971), - [anon_sym_in] = ACTIONS(3971), - [anon_sym_where] = ACTIONS(3971), - [anon_sym_QMARK] = ACTIONS(3971), - [anon_sym_notnull] = ACTIONS(3971), - [anon_sym_unmanaged] = ACTIONS(3971), - [anon_sym_operator] = ACTIONS(3971), - [anon_sym_BANG] = ACTIONS(3971), - [anon_sym_PLUS_PLUS] = ACTIONS(3973), - [anon_sym_DASH_DASH] = ACTIONS(3973), - [anon_sym_PLUS] = ACTIONS(3971), - [anon_sym_DASH] = ACTIONS(3971), - [anon_sym_STAR] = ACTIONS(3973), - [anon_sym_SLASH] = ACTIONS(3971), - [anon_sym_PERCENT] = ACTIONS(3973), - [anon_sym_CARET] = ACTIONS(3973), - [anon_sym_PIPE] = ACTIONS(3971), - [anon_sym_AMP] = ACTIONS(3971), - [anon_sym_LT_LT] = ACTIONS(3973), - [anon_sym_GT_GT] = ACTIONS(3971), - [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_this] = ACTIONS(3971), - [anon_sym_DOT] = ACTIONS(3971), - [anon_sym_scoped] = ACTIONS(3971), - [anon_sym_EQ_GT] = ACTIONS(3973), - [anon_sym_var] = ACTIONS(3971), - [anon_sym_yield] = ACTIONS(3971), - [anon_sym_switch] = ACTIONS(3971), - [anon_sym_when] = ACTIONS(3971), - [sym_discard] = ACTIONS(3971), - [anon_sym_DOT_DOT] = ACTIONS(3973), - [anon_sym_and] = ACTIONS(3971), - [anon_sym_or] = ACTIONS(3971), - [anon_sym_AMP_AMP] = ACTIONS(3973), - [anon_sym_PIPE_PIPE] = ACTIONS(3973), - [anon_sym_QMARK_QMARK] = ACTIONS(3973), - [anon_sym_from] = ACTIONS(3971), - [anon_sym_into] = ACTIONS(3971), - [anon_sym_join] = ACTIONS(3971), - [anon_sym_on] = ACTIONS(3971), - [anon_sym_equals] = ACTIONS(3971), - [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(3971), - [anon_sym_select] = ACTIONS(3971), - [anon_sym_as] = ACTIONS(3971), - [anon_sym_is] = ACTIONS(3971), - [anon_sym_DASH_GT] = ACTIONS(3973), - [anon_sym_with] = ACTIONS(3971), - [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(3855), + [anon_sym_alias] = ACTIONS(3857), + [anon_sym_SEMI] = ACTIONS(3893), + [anon_sym_global] = ACTIONS(3857), + [anon_sym_LBRACK] = ACTIONS(3893), + [anon_sym_COLON] = ACTIONS(3893), + [anon_sym_COMMA] = ACTIONS(3893), + [anon_sym_RBRACK] = ACTIONS(3893), + [anon_sym_LPAREN] = ACTIONS(3893), + [anon_sym_RPAREN] = ACTIONS(3893), + [anon_sym_RBRACE] = ACTIONS(3893), + [anon_sym_file] = ACTIONS(3857), + [anon_sym_LT] = ACTIONS(3895), + [anon_sym_GT] = ACTIONS(3895), + [anon_sym_where] = ACTIONS(3857), + [anon_sym_QMARK] = ACTIONS(3895), + [anon_sym_notnull] = ACTIONS(3857), + [anon_sym_unmanaged] = ACTIONS(3857), + [anon_sym_BANG] = ACTIONS(3895), + [anon_sym_PLUS_PLUS] = ACTIONS(3893), + [anon_sym_DASH_DASH] = ACTIONS(3893), + [anon_sym_PLUS] = ACTIONS(3895), + [anon_sym_DASH] = ACTIONS(3895), + [anon_sym_STAR] = ACTIONS(3893), + [anon_sym_SLASH] = ACTIONS(3895), + [anon_sym_PERCENT] = ACTIONS(3893), + [anon_sym_CARET] = ACTIONS(3893), + [anon_sym_PIPE] = ACTIONS(3895), + [anon_sym_AMP] = ACTIONS(3895), + [anon_sym_LT_LT] = ACTIONS(3893), + [anon_sym_GT_GT] = ACTIONS(3895), + [anon_sym_GT_GT_GT] = ACTIONS(3893), + [anon_sym_EQ_EQ] = ACTIONS(3893), + [anon_sym_BANG_EQ] = ACTIONS(3893), + [anon_sym_GT_EQ] = ACTIONS(3893), + [anon_sym_LT_EQ] = ACTIONS(3893), + [anon_sym_DOT] = ACTIONS(3895), + [anon_sym_scoped] = ACTIONS(3857), + [anon_sym_EQ_GT] = ACTIONS(3893), + [anon_sym_var] = ACTIONS(3857), + [anon_sym_yield] = ACTIONS(3857), + [anon_sym_switch] = ACTIONS(3895), + [anon_sym_when] = ACTIONS(3857), + [sym_discard] = ACTIONS(3877), + [anon_sym_DOT_DOT] = ACTIONS(3893), + [anon_sym_and] = ACTIONS(3895), + [anon_sym_or] = ACTIONS(3895), + [anon_sym_AMP_AMP] = ACTIONS(3893), + [anon_sym_PIPE_PIPE] = ACTIONS(3893), + [anon_sym_QMARK_QMARK] = ACTIONS(3893), + [anon_sym_from] = ACTIONS(3857), + [anon_sym_into] = ACTIONS(3857), + [anon_sym_join] = ACTIONS(3857), + [anon_sym_on] = ACTIONS(3857), + [anon_sym_equals] = ACTIONS(3857), + [anon_sym_let] = ACTIONS(3857), + [anon_sym_orderby] = ACTIONS(3857), + [anon_sym_ascending] = ACTIONS(3857), + [anon_sym_descending] = ACTIONS(3857), + [anon_sym_group] = ACTIONS(3857), + [anon_sym_by] = ACTIONS(3857), + [anon_sym_select] = ACTIONS(3857), + [anon_sym_as] = ACTIONS(3895), + [anon_sym_is] = ACTIONS(3895), + [anon_sym_DASH_GT] = ACTIONS(3893), + [anon_sym_with] = ACTIONS(3895), + [aux_sym_preproc_if_token3] = ACTIONS(3893), + [aux_sym_preproc_else_token1] = ACTIONS(3893), + [aux_sym_preproc_elif_token1] = ACTIONS(3893), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -411583,79 +411275,79 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2316), [sym_preproc_define] = STATE(2316), [sym_preproc_undef] = STATE(2316), - [sym__identifier_token] = ACTIONS(3699), - [anon_sym_alias] = ACTIONS(3699), - [anon_sym_global] = ACTIONS(3699), - [anon_sym_EQ] = ACTIONS(3704), - [anon_sym_LBRACK] = ACTIONS(3721), - [anon_sym_COLON] = ACTIONS(3719), - [anon_sym_LPAREN] = ACTIONS(3721), - [anon_sym_file] = ACTIONS(3699), - [anon_sym_LT] = ACTIONS(3704), - [anon_sym_GT] = ACTIONS(3704), - [anon_sym_where] = ACTIONS(3699), - [anon_sym_QMARK] = ACTIONS(3724), - [anon_sym_notnull] = ACTIONS(3699), - [anon_sym_unmanaged] = ACTIONS(3699), - [anon_sym_BANG] = ACTIONS(3704), - [anon_sym_PLUS_PLUS] = ACTIONS(3719), - [anon_sym_DASH_DASH] = ACTIONS(3719), - [anon_sym_PLUS] = ACTIONS(3704), - [anon_sym_DASH] = ACTIONS(3704), - [anon_sym_STAR] = ACTIONS(3724), - [anon_sym_SLASH] = ACTIONS(3704), - [anon_sym_PERCENT] = ACTIONS(3704), - [anon_sym_CARET] = ACTIONS(3704), - [anon_sym_PIPE] = ACTIONS(3704), - [anon_sym_AMP] = ACTIONS(3704), - [anon_sym_LT_LT] = ACTIONS(3704), - [anon_sym_GT_GT] = ACTIONS(3704), - [anon_sym_GT_GT_GT] = ACTIONS(3704), - [anon_sym_EQ_EQ] = ACTIONS(3719), - [anon_sym_BANG_EQ] = ACTIONS(3719), - [anon_sym_GT_EQ] = ACTIONS(3719), - [anon_sym_LT_EQ] = ACTIONS(3719), - [anon_sym_DOT] = ACTIONS(3724), - [anon_sym_scoped] = ACTIONS(3699), - [anon_sym_EQ_GT] = ACTIONS(3719), - [anon_sym_var] = ACTIONS(3699), - [anon_sym_yield] = ACTIONS(3699), - [anon_sym_switch] = ACTIONS(3704), - [anon_sym_when] = ACTIONS(3724), - [anon_sym_DOT_DOT] = ACTIONS(3719), - [anon_sym_and] = ACTIONS(3704), - [anon_sym_or] = ACTIONS(3704), - [anon_sym_PLUS_EQ] = ACTIONS(3719), - [anon_sym_DASH_EQ] = ACTIONS(3719), - [anon_sym_STAR_EQ] = ACTIONS(3719), - [anon_sym_SLASH_EQ] = ACTIONS(3719), - [anon_sym_PERCENT_EQ] = ACTIONS(3719), - [anon_sym_AMP_EQ] = ACTIONS(3719), - [anon_sym_CARET_EQ] = ACTIONS(3719), - [anon_sym_PIPE_EQ] = ACTIONS(3719), - [anon_sym_LT_LT_EQ] = ACTIONS(3719), - [anon_sym_GT_GT_EQ] = ACTIONS(3719), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3719), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3719), - [anon_sym_AMP_AMP] = ACTIONS(3719), - [anon_sym_PIPE_PIPE] = ACTIONS(3719), - [anon_sym_QMARK_QMARK] = ACTIONS(3704), - [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_ascending] = ACTIONS(3699), - [anon_sym_descending] = ACTIONS(3699), - [anon_sym_group] = ACTIONS(3699), - [anon_sym_by] = ACTIONS(3699), - [anon_sym_select] = ACTIONS(3699), - [anon_sym_as] = ACTIONS(3704), - [anon_sym_is] = ACTIONS(3704), - [anon_sym_DASH_GT] = ACTIONS(3721), - [anon_sym_with] = ACTIONS(3704), + [sym__identifier_token] = ACTIONS(3961), + [anon_sym_alias] = ACTIONS(3961), + [anon_sym_SEMI] = ACTIONS(3963), + [anon_sym_global] = ACTIONS(3961), + [anon_sym_LBRACK] = ACTIONS(3963), + [anon_sym_COLON] = ACTIONS(3963), + [anon_sym_COMMA] = ACTIONS(3963), + [anon_sym_RBRACK] = ACTIONS(3963), + [anon_sym_LPAREN] = ACTIONS(3963), + [anon_sym_RPAREN] = ACTIONS(3963), + [anon_sym_LBRACE] = ACTIONS(3963), + [anon_sym_RBRACE] = ACTIONS(3963), + [anon_sym_file] = ACTIONS(3961), + [anon_sym_LT] = ACTIONS(3961), + [anon_sym_GT] = ACTIONS(3961), + [anon_sym_in] = ACTIONS(3961), + [anon_sym_where] = ACTIONS(3961), + [anon_sym_QMARK] = ACTIONS(3961), + [anon_sym_notnull] = ACTIONS(3961), + [anon_sym_unmanaged] = ACTIONS(3961), + [anon_sym_operator] = ACTIONS(3961), + [anon_sym_BANG] = ACTIONS(3961), + [anon_sym_PLUS_PLUS] = ACTIONS(3963), + [anon_sym_DASH_DASH] = ACTIONS(3963), + [anon_sym_PLUS] = ACTIONS(3961), + [anon_sym_DASH] = ACTIONS(3961), + [anon_sym_STAR] = ACTIONS(3963), + [anon_sym_SLASH] = ACTIONS(3961), + [anon_sym_PERCENT] = ACTIONS(3963), + [anon_sym_CARET] = ACTIONS(3963), + [anon_sym_PIPE] = ACTIONS(3961), + [anon_sym_AMP] = ACTIONS(3961), + [anon_sym_LT_LT] = ACTIONS(3963), + [anon_sym_GT_GT] = ACTIONS(3961), + [anon_sym_GT_GT_GT] = ACTIONS(3963), + [anon_sym_EQ_EQ] = ACTIONS(3963), + [anon_sym_BANG_EQ] = ACTIONS(3963), + [anon_sym_GT_EQ] = ACTIONS(3963), + [anon_sym_LT_EQ] = ACTIONS(3963), + [anon_sym_this] = ACTIONS(3961), + [anon_sym_DOT] = ACTIONS(3961), + [anon_sym_scoped] = ACTIONS(3961), + [anon_sym_EQ_GT] = ACTIONS(3963), + [anon_sym_var] = ACTIONS(3961), + [anon_sym_yield] = ACTIONS(3961), + [anon_sym_switch] = ACTIONS(3961), + [anon_sym_when] = ACTIONS(3961), + [sym_discard] = ACTIONS(3961), + [anon_sym_DOT_DOT] = ACTIONS(3963), + [anon_sym_and] = ACTIONS(3961), + [anon_sym_or] = ACTIONS(3961), + [anon_sym_AMP_AMP] = ACTIONS(3963), + [anon_sym_PIPE_PIPE] = ACTIONS(3963), + [anon_sym_QMARK_QMARK] = ACTIONS(3963), + [anon_sym_from] = ACTIONS(3961), + [anon_sym_into] = ACTIONS(3961), + [anon_sym_join] = ACTIONS(3961), + [anon_sym_on] = ACTIONS(3961), + [anon_sym_equals] = ACTIONS(3961), + [anon_sym_let] = ACTIONS(3961), + [anon_sym_orderby] = ACTIONS(3961), + [anon_sym_ascending] = ACTIONS(3961), + [anon_sym_descending] = ACTIONS(3961), + [anon_sym_group] = ACTIONS(3961), + [anon_sym_by] = ACTIONS(3961), + [anon_sym_select] = ACTIONS(3961), + [anon_sym_as] = ACTIONS(3961), + [anon_sym_is] = ACTIONS(3961), + [anon_sym_DASH_GT] = ACTIONS(3963), + [anon_sym_with] = ACTIONS(3961), + [aux_sym_preproc_if_token3] = ACTIONS(3963), + [aux_sym_preproc_else_token1] = ACTIONS(3963), + [aux_sym_preproc_elif_token1] = ACTIONS(3963), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -411677,79 +411369,79 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2317), [sym_preproc_define] = STATE(2317), [sym_preproc_undef] = STATE(2317), - [sym__identifier_token] = ACTIONS(3975), - [anon_sym_alias] = ACTIONS(3975), - [anon_sym_SEMI] = ACTIONS(3977), - [anon_sym_global] = ACTIONS(3975), - [anon_sym_LBRACK] = ACTIONS(3977), - [anon_sym_COLON] = ACTIONS(3977), - [anon_sym_COMMA] = ACTIONS(3977), - [anon_sym_RBRACK] = ACTIONS(3977), - [anon_sym_LPAREN] = ACTIONS(3977), - [anon_sym_RPAREN] = ACTIONS(3977), - [anon_sym_LBRACE] = ACTIONS(3977), - [anon_sym_RBRACE] = ACTIONS(3977), - [anon_sym_file] = ACTIONS(3975), - [anon_sym_LT] = ACTIONS(3975), - [anon_sym_GT] = ACTIONS(3975), - [anon_sym_in] = ACTIONS(3975), - [anon_sym_where] = ACTIONS(3975), - [anon_sym_QMARK] = ACTIONS(3975), - [anon_sym_notnull] = ACTIONS(3975), - [anon_sym_unmanaged] = ACTIONS(3975), - [anon_sym_operator] = ACTIONS(3975), - [anon_sym_BANG] = ACTIONS(3975), - [anon_sym_PLUS_PLUS] = ACTIONS(3977), - [anon_sym_DASH_DASH] = ACTIONS(3977), - [anon_sym_PLUS] = ACTIONS(3975), - [anon_sym_DASH] = ACTIONS(3975), - [anon_sym_STAR] = ACTIONS(3977), - [anon_sym_SLASH] = ACTIONS(3975), - [anon_sym_PERCENT] = ACTIONS(3977), - [anon_sym_CARET] = ACTIONS(3977), - [anon_sym_PIPE] = ACTIONS(3975), - [anon_sym_AMP] = ACTIONS(3975), - [anon_sym_LT_LT] = ACTIONS(3977), - [anon_sym_GT_GT] = ACTIONS(3975), - [anon_sym_GT_GT_GT] = ACTIONS(3977), - [anon_sym_EQ_EQ] = ACTIONS(3977), - [anon_sym_BANG_EQ] = ACTIONS(3977), - [anon_sym_GT_EQ] = ACTIONS(3977), - [anon_sym_LT_EQ] = ACTIONS(3977), - [anon_sym_this] = ACTIONS(3975), - [anon_sym_DOT] = ACTIONS(3975), - [anon_sym_scoped] = ACTIONS(3975), - [anon_sym_EQ_GT] = ACTIONS(3977), - [anon_sym_var] = ACTIONS(3975), - [anon_sym_yield] = ACTIONS(3975), - [anon_sym_switch] = ACTIONS(3975), - [anon_sym_when] = ACTIONS(3975), - [sym_discard] = ACTIONS(3975), - [anon_sym_DOT_DOT] = ACTIONS(3977), - [anon_sym_and] = ACTIONS(3975), - [anon_sym_or] = ACTIONS(3975), - [anon_sym_AMP_AMP] = ACTIONS(3977), - [anon_sym_PIPE_PIPE] = ACTIONS(3977), - [anon_sym_QMARK_QMARK] = ACTIONS(3977), - [anon_sym_from] = ACTIONS(3975), - [anon_sym_into] = ACTIONS(3975), - [anon_sym_join] = ACTIONS(3975), - [anon_sym_on] = ACTIONS(3975), - [anon_sym_equals] = ACTIONS(3975), - [anon_sym_let] = ACTIONS(3975), - [anon_sym_orderby] = ACTIONS(3975), - [anon_sym_ascending] = ACTIONS(3975), - [anon_sym_descending] = ACTIONS(3975), - [anon_sym_group] = ACTIONS(3975), - [anon_sym_by] = ACTIONS(3975), - [anon_sym_select] = ACTIONS(3975), - [anon_sym_as] = ACTIONS(3975), - [anon_sym_is] = ACTIONS(3975), - [anon_sym_DASH_GT] = ACTIONS(3977), - [anon_sym_with] = ACTIONS(3975), - [aux_sym_preproc_if_token3] = ACTIONS(3977), - [aux_sym_preproc_else_token1] = ACTIONS(3977), - [aux_sym_preproc_elif_token1] = ACTIONS(3977), + [sym__identifier_token] = ACTIONS(3669), + [anon_sym_alias] = ACTIONS(3669), + [anon_sym_global] = ACTIONS(3669), + [anon_sym_EQ] = ACTIONS(3673), + [anon_sym_LBRACK] = ACTIONS(3675), + [anon_sym_LPAREN] = ACTIONS(3675), + [anon_sym_LBRACE] = ACTIONS(3678), + [anon_sym_file] = ACTIONS(3669), + [anon_sym_LT] = ACTIONS(3680), + [anon_sym_GT] = ACTIONS(3680), + [anon_sym_where] = ACTIONS(3680), + [anon_sym_QMARK] = ACTIONS(3680), + [anon_sym_notnull] = ACTIONS(3669), + [anon_sym_unmanaged] = ACTIONS(3669), + [anon_sym_BANG] = ACTIONS(3680), + [anon_sym_PLUS_PLUS] = ACTIONS(3675), + [anon_sym_DASH_DASH] = ACTIONS(3675), + [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(3675), + [anon_sym_BANG_EQ] = ACTIONS(3675), + [anon_sym_GT_EQ] = ACTIONS(3675), + [anon_sym_LT_EQ] = ACTIONS(3675), + [anon_sym_DOT] = ACTIONS(3680), + [anon_sym_scoped] = ACTIONS(3669), + [anon_sym_var] = ACTIONS(3669), + [anon_sym_yield] = ACTIONS(3669), + [anon_sym_switch] = ACTIONS(3680), + [anon_sym_when] = ACTIONS(3669), + [sym_discard] = ACTIONS(3669), + [anon_sym_DOT_DOT] = ACTIONS(3675), + [anon_sym_and] = ACTIONS(3680), + [anon_sym_or] = ACTIONS(3680), + [anon_sym_PLUS_EQ] = ACTIONS(3671), + [anon_sym_DASH_EQ] = ACTIONS(3671), + [anon_sym_STAR_EQ] = ACTIONS(3671), + [anon_sym_SLASH_EQ] = ACTIONS(3671), + [anon_sym_PERCENT_EQ] = ACTIONS(3671), + [anon_sym_AMP_EQ] = ACTIONS(3671), + [anon_sym_CARET_EQ] = ACTIONS(3671), + [anon_sym_PIPE_EQ] = ACTIONS(3671), + [anon_sym_LT_LT_EQ] = ACTIONS(3671), + [anon_sym_GT_GT_EQ] = ACTIONS(3671), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3671), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3671), + [anon_sym_AMP_AMP] = ACTIONS(3675), + [anon_sym_PIPE_PIPE] = ACTIONS(3675), + [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(3669), + [anon_sym_equals] = ACTIONS(3669), + [anon_sym_let] = ACTIONS(3680), + [anon_sym_orderby] = ACTIONS(3680), + [anon_sym_ascending] = ACTIONS(3669), + [anon_sym_descending] = ACTIONS(3669), + [anon_sym_group] = ACTIONS(3680), + [anon_sym_by] = ACTIONS(3669), + [anon_sym_select] = ACTIONS(3680), + [anon_sym_as] = ACTIONS(3680), + [anon_sym_is] = ACTIONS(3680), + [anon_sym_DASH_GT] = ACTIONS(3675), + [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), @@ -411762,6 +411454,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2318] = { + [sym__name] = STATE(4448), + [sym_alias_qualified_name] = STATE(4462), + [sym__simple_name] = STATE(4462), + [sym_qualified_name] = STATE(4462), + [sym_generic_name] = STATE(4410), + [sym_ref_type] = STATE(4339), + [sym__scoped_base_type] = STATE(4341), + [sym_identifier] = STATE(4194), + [sym__reserved_identifier] = STATE(4314), [sym_preproc_region] = STATE(2318), [sym_preproc_endregion] = STATE(2318), [sym_preproc_line] = STATE(2318), @@ -411771,79 +411472,69 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2318), [sym_preproc_define] = STATE(2318), [sym_preproc_undef] = STATE(2318), - [sym__identifier_token] = ACTIONS(3979), - [anon_sym_alias] = ACTIONS(3979), - [anon_sym_SEMI] = ACTIONS(3981), - [anon_sym_global] = ACTIONS(3979), - [anon_sym_LBRACK] = ACTIONS(3981), - [anon_sym_COLON] = ACTIONS(3981), - [anon_sym_COMMA] = ACTIONS(3981), - [anon_sym_RBRACK] = ACTIONS(3981), - [anon_sym_LPAREN] = ACTIONS(3981), - [anon_sym_RPAREN] = ACTIONS(3981), - [anon_sym_LBRACE] = ACTIONS(3981), - [anon_sym_RBRACE] = ACTIONS(3981), - [anon_sym_file] = ACTIONS(3979), - [anon_sym_LT] = ACTIONS(3979), - [anon_sym_GT] = ACTIONS(3979), - [anon_sym_in] = ACTIONS(3979), - [anon_sym_where] = ACTIONS(3979), - [anon_sym_QMARK] = ACTIONS(3979), - [anon_sym_notnull] = ACTIONS(3979), - [anon_sym_unmanaged] = ACTIONS(3979), - [anon_sym_operator] = ACTIONS(3979), - [anon_sym_BANG] = ACTIONS(3979), - [anon_sym_PLUS_PLUS] = ACTIONS(3981), - [anon_sym_DASH_DASH] = ACTIONS(3981), - [anon_sym_PLUS] = ACTIONS(3979), - [anon_sym_DASH] = ACTIONS(3979), - [anon_sym_STAR] = ACTIONS(3981), - [anon_sym_SLASH] = ACTIONS(3979), - [anon_sym_PERCENT] = ACTIONS(3981), - [anon_sym_CARET] = ACTIONS(3981), - [anon_sym_PIPE] = ACTIONS(3979), - [anon_sym_AMP] = ACTIONS(3979), - [anon_sym_LT_LT] = ACTIONS(3981), - [anon_sym_GT_GT] = ACTIONS(3979), - [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_this] = ACTIONS(3979), - [anon_sym_DOT] = ACTIONS(3979), - [anon_sym_scoped] = ACTIONS(3979), - [anon_sym_EQ_GT] = ACTIONS(3981), - [anon_sym_var] = ACTIONS(3979), - [anon_sym_yield] = ACTIONS(3979), - [anon_sym_switch] = ACTIONS(3979), - [anon_sym_when] = ACTIONS(3979), - [sym_discard] = ACTIONS(3979), - [anon_sym_DOT_DOT] = ACTIONS(3981), - [anon_sym_and] = ACTIONS(3979), - [anon_sym_or] = ACTIONS(3979), - [anon_sym_AMP_AMP] = ACTIONS(3981), - [anon_sym_PIPE_PIPE] = ACTIONS(3981), - [anon_sym_QMARK_QMARK] = ACTIONS(3981), - [anon_sym_from] = ACTIONS(3979), - [anon_sym_into] = ACTIONS(3979), - [anon_sym_join] = ACTIONS(3979), - [anon_sym_on] = ACTIONS(3979), - [anon_sym_equals] = ACTIONS(3979), - [anon_sym_let] = ACTIONS(3979), - [anon_sym_orderby] = ACTIONS(3979), - [anon_sym_ascending] = ACTIONS(3979), - [anon_sym_descending] = ACTIONS(3979), - [anon_sym_group] = ACTIONS(3979), - [anon_sym_by] = ACTIONS(3979), - [anon_sym_select] = ACTIONS(3979), - [anon_sym_as] = ACTIONS(3979), - [anon_sym_is] = ACTIONS(3979), - [anon_sym_DASH_GT] = ACTIONS(3981), - [anon_sym_with] = ACTIONS(3979), - [aux_sym_preproc_if_token3] = ACTIONS(3981), - [aux_sym_preproc_else_token1] = ACTIONS(3981), - [aux_sym_preproc_elif_token1] = ACTIONS(3981), + [sym__identifier_token] = ACTIONS(3965), + [anon_sym_alias] = ACTIONS(3967), + [anon_sym_global] = ACTIONS(3967), + [anon_sym_LBRACK] = ACTIONS(3429), + [anon_sym_COLON] = ACTIONS(3431), + [anon_sym_COMMA] = ACTIONS(3429), + [anon_sym_LPAREN] = ACTIONS(3429), + [anon_sym_ref] = ACTIONS(3969), + [anon_sym_LBRACE] = ACTIONS(3429), + [anon_sym_file] = ACTIONS(3967), + [anon_sym_LT] = ACTIONS(3431), + [anon_sym_GT] = ACTIONS(3431), + [anon_sym_where] = ACTIONS(3967), + [anon_sym_QMARK] = ACTIONS(3431), + [anon_sym_notnull] = ACTIONS(3967), + [anon_sym_unmanaged] = ACTIONS(3967), + [anon_sym_BANG] = ACTIONS(3431), + [anon_sym_PLUS_PLUS] = ACTIONS(3429), + [anon_sym_DASH_DASH] = ACTIONS(3429), + [anon_sym_PLUS] = ACTIONS(3431), + [anon_sym_DASH] = ACTIONS(3431), + [anon_sym_STAR] = ACTIONS(3429), + [anon_sym_SLASH] = ACTIONS(3431), + [anon_sym_PERCENT] = ACTIONS(3429), + [anon_sym_CARET] = ACTIONS(3429), + [anon_sym_PIPE] = ACTIONS(3431), + [anon_sym_AMP] = ACTIONS(3431), + [anon_sym_LT_LT] = ACTIONS(3429), + [anon_sym_GT_GT] = ACTIONS(3431), + [anon_sym_GT_GT_GT] = ACTIONS(3429), + [anon_sym_EQ_EQ] = ACTIONS(3429), + [anon_sym_BANG_EQ] = ACTIONS(3429), + [anon_sym_GT_EQ] = ACTIONS(3429), + [anon_sym_LT_EQ] = ACTIONS(3429), + [anon_sym_DOT] = ACTIONS(3431), + [anon_sym_scoped] = ACTIONS(3967), + [anon_sym_COLON_COLON] = ACTIONS(3429), + [anon_sym_var] = ACTIONS(3967), + [anon_sym_yield] = ACTIONS(3967), + [anon_sym_switch] = ACTIONS(3431), + [anon_sym_when] = ACTIONS(3967), + [anon_sym_DOT_DOT] = ACTIONS(3429), + [anon_sym_and] = ACTIONS(3431), + [anon_sym_or] = ACTIONS(3431), + [anon_sym_AMP_AMP] = ACTIONS(3429), + [anon_sym_PIPE_PIPE] = ACTIONS(3429), + [anon_sym_QMARK_QMARK] = ACTIONS(3429), + [anon_sym_from] = ACTIONS(3967), + [anon_sym_into] = ACTIONS(3971), + [anon_sym_join] = ACTIONS(3967), + [anon_sym_on] = ACTIONS(3967), + [anon_sym_equals] = ACTIONS(3967), + [anon_sym_let] = ACTIONS(3967), + [anon_sym_orderby] = ACTIONS(3967), + [anon_sym_ascending] = ACTIONS(3967), + [anon_sym_descending] = ACTIONS(3967), + [anon_sym_group] = ACTIONS(3967), + [anon_sym_by] = ACTIONS(3967), + [anon_sym_select] = ACTIONS(3967), + [anon_sym_as] = ACTIONS(3431), + [anon_sym_is] = ACTIONS(3431), + [anon_sym_DASH_GT] = ACTIONS(3429), + [anon_sym_with] = ACTIONS(3431), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -411854,6 +411545,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(3429), }, [2319] = { [sym_preproc_region] = STATE(2319), @@ -411865,26 +411557,26 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2319), [sym_preproc_define] = STATE(2319), [sym_preproc_undef] = STATE(2319), - [sym__identifier_token] = ACTIONS(3699), - [anon_sym_alias] = ACTIONS(3699), - [anon_sym_global] = ACTIONS(3699), - [anon_sym_EQ] = ACTIONS(3704), - [anon_sym_LBRACK] = ACTIONS(3721), - [anon_sym_COLON] = ACTIONS(3719), - [anon_sym_LPAREN] = ACTIONS(3721), - [anon_sym_file] = ACTIONS(3699), + [sym__identifier_token] = ACTIONS(3691), + [anon_sym_alias] = ACTIONS(3691), + [anon_sym_global] = ACTIONS(3691), + [anon_sym_EQ] = ACTIONS(3696), + [anon_sym_LBRACK] = ACTIONS(3698), + [anon_sym_LPAREN] = ACTIONS(3698), + [anon_sym_LBRACE] = ACTIONS(3702), + [anon_sym_file] = ACTIONS(3691), [anon_sym_LT] = ACTIONS(3704), [anon_sym_GT] = ACTIONS(3704), - [anon_sym_where] = ACTIONS(3699), - [anon_sym_QMARK] = ACTIONS(3724), - [anon_sym_notnull] = ACTIONS(3699), - [anon_sym_unmanaged] = ACTIONS(3699), + [anon_sym_where] = ACTIONS(3691), + [anon_sym_QMARK] = ACTIONS(3704), + [anon_sym_notnull] = ACTIONS(3691), + [anon_sym_unmanaged] = ACTIONS(3691), [anon_sym_BANG] = ACTIONS(3704), - [anon_sym_PLUS_PLUS] = ACTIONS(3719), - [anon_sym_DASH_DASH] = ACTIONS(3719), + [anon_sym_PLUS_PLUS] = ACTIONS(3698), + [anon_sym_DASH_DASH] = ACTIONS(3698), [anon_sym_PLUS] = ACTIONS(3704), [anon_sym_DASH] = ACTIONS(3704), - [anon_sym_STAR] = ACTIONS(3724), + [anon_sym_STAR] = ACTIONS(3704), [anon_sym_SLASH] = ACTIONS(3704), [anon_sym_PERCENT] = ACTIONS(3704), [anon_sym_CARET] = ACTIONS(3704), @@ -411893,50 +411585,50 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_LT] = ACTIONS(3704), [anon_sym_GT_GT] = ACTIONS(3704), [anon_sym_GT_GT_GT] = ACTIONS(3704), - [anon_sym_EQ_EQ] = ACTIONS(3719), - [anon_sym_BANG_EQ] = ACTIONS(3719), - [anon_sym_GT_EQ] = ACTIONS(3719), - [anon_sym_LT_EQ] = ACTIONS(3719), - [anon_sym_DOT] = ACTIONS(3724), - [anon_sym_scoped] = ACTIONS(3699), - [anon_sym_EQ_GT] = ACTIONS(3719), - [anon_sym_var] = ACTIONS(3699), - [anon_sym_yield] = ACTIONS(3699), + [anon_sym_EQ_EQ] = ACTIONS(3698), + [anon_sym_BANG_EQ] = ACTIONS(3698), + [anon_sym_GT_EQ] = ACTIONS(3698), + [anon_sym_LT_EQ] = ACTIONS(3698), + [anon_sym_DOT] = ACTIONS(3704), + [anon_sym_scoped] = ACTIONS(3691), + [anon_sym_var] = ACTIONS(3691), + [anon_sym_yield] = ACTIONS(3691), [anon_sym_switch] = ACTIONS(3704), - [anon_sym_when] = ACTIONS(3724), - [anon_sym_DOT_DOT] = ACTIONS(3719), - [anon_sym_and] = ACTIONS(3704), - [anon_sym_or] = ACTIONS(3704), - [anon_sym_PLUS_EQ] = ACTIONS(3719), - [anon_sym_DASH_EQ] = ACTIONS(3719), - [anon_sym_STAR_EQ] = ACTIONS(3719), - [anon_sym_SLASH_EQ] = ACTIONS(3719), - [anon_sym_PERCENT_EQ] = ACTIONS(3719), - [anon_sym_AMP_EQ] = ACTIONS(3719), - [anon_sym_CARET_EQ] = ACTIONS(3719), - [anon_sym_PIPE_EQ] = ACTIONS(3719), - [anon_sym_LT_LT_EQ] = ACTIONS(3719), - [anon_sym_GT_GT_EQ] = ACTIONS(3719), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3719), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3719), - [anon_sym_AMP_AMP] = ACTIONS(3719), - [anon_sym_PIPE_PIPE] = ACTIONS(3719), + [anon_sym_when] = ACTIONS(3691), + [sym_discard] = ACTIONS(3691), + [anon_sym_DOT_DOT] = ACTIONS(3698), + [anon_sym_and] = ACTIONS(3708), + [anon_sym_or] = ACTIONS(3708), + [anon_sym_PLUS_EQ] = ACTIONS(3711), + [anon_sym_DASH_EQ] = ACTIONS(3711), + [anon_sym_STAR_EQ] = ACTIONS(3711), + [anon_sym_SLASH_EQ] = ACTIONS(3711), + [anon_sym_PERCENT_EQ] = ACTIONS(3711), + [anon_sym_AMP_EQ] = ACTIONS(3711), + [anon_sym_CARET_EQ] = ACTIONS(3711), + [anon_sym_PIPE_EQ] = ACTIONS(3711), + [anon_sym_LT_LT_EQ] = ACTIONS(3711), + [anon_sym_GT_GT_EQ] = ACTIONS(3711), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3711), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3711), + [anon_sym_AMP_AMP] = ACTIONS(3698), + [anon_sym_PIPE_PIPE] = ACTIONS(3698), [anon_sym_QMARK_QMARK] = ACTIONS(3704), - [anon_sym_from] = ACTIONS(3699), - [anon_sym_into] = ACTIONS(3724), - [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_ascending] = ACTIONS(3699), - [anon_sym_descending] = ACTIONS(3699), - [anon_sym_group] = ACTIONS(3699), - [anon_sym_by] = ACTIONS(3699), - [anon_sym_select] = ACTIONS(3699), + [anon_sym_from] = ACTIONS(3691), + [anon_sym_into] = ACTIONS(3708), + [anon_sym_join] = ACTIONS(3691), + [anon_sym_on] = ACTIONS(3691), + [anon_sym_equals] = ACTIONS(3708), + [anon_sym_let] = ACTIONS(3691), + [anon_sym_orderby] = ACTIONS(3691), + [anon_sym_ascending] = ACTIONS(3691), + [anon_sym_descending] = ACTIONS(3691), + [anon_sym_group] = ACTIONS(3691), + [anon_sym_by] = ACTIONS(3691), + [anon_sym_select] = ACTIONS(3691), [anon_sym_as] = ACTIONS(3704), [anon_sym_is] = ACTIONS(3704), - [anon_sym_DASH_GT] = ACTIONS(3721), + [anon_sym_DASH_GT] = ACTIONS(3698), [anon_sym_with] = ACTIONS(3704), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), @@ -411950,15 +411642,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2320] = { - [sym__name] = STATE(4382), - [sym_alias_qualified_name] = STATE(4464), - [sym__simple_name] = STATE(4464), - [sym_qualified_name] = STATE(4464), - [sym_generic_name] = STATE(4403), - [sym_ref_type] = STATE(4383), - [sym__scoped_base_type] = STATE(4385), - [sym_identifier] = STATE(4215), - [sym__reserved_identifier] = STATE(4297), [sym_preproc_region] = STATE(2320), [sym_preproc_endregion] = STATE(2320), [sym_preproc_line] = STATE(2320), @@ -411968,164 +411651,173 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2320), [sym_preproc_define] = STATE(2320), [sym_preproc_undef] = STATE(2320), - [sym__identifier_token] = ACTIONS(3983), - [anon_sym_alias] = ACTIONS(3985), - [anon_sym_global] = ACTIONS(3985), - [anon_sym_LBRACK] = ACTIONS(3445), - [anon_sym_COLON] = ACTIONS(3447), - [anon_sym_COMMA] = ACTIONS(3445), - [anon_sym_LPAREN] = ACTIONS(3445), - [anon_sym_ref] = ACTIONS(3987), - [anon_sym_LBRACE] = ACTIONS(3445), - [anon_sym_file] = ACTIONS(3985), - [anon_sym_LT] = ACTIONS(3447), - [anon_sym_GT] = ACTIONS(3447), - [anon_sym_where] = ACTIONS(3985), - [anon_sym_QMARK] = ACTIONS(3447), - [anon_sym_notnull] = ACTIONS(3985), - [anon_sym_unmanaged] = ACTIONS(3985), - [anon_sym_BANG] = ACTIONS(3447), - [anon_sym_PLUS_PLUS] = ACTIONS(3445), - [anon_sym_DASH_DASH] = ACTIONS(3445), - [anon_sym_PLUS] = ACTIONS(3447), - [anon_sym_DASH] = ACTIONS(3447), - [anon_sym_STAR] = ACTIONS(3445), - [anon_sym_SLASH] = ACTIONS(3447), - [anon_sym_PERCENT] = ACTIONS(3445), - [anon_sym_CARET] = ACTIONS(3445), - [anon_sym_PIPE] = ACTIONS(3447), - [anon_sym_AMP] = ACTIONS(3447), - [anon_sym_LT_LT] = ACTIONS(3445), - [anon_sym_GT_GT] = ACTIONS(3447), - [anon_sym_GT_GT_GT] = ACTIONS(3445), - [anon_sym_EQ_EQ] = ACTIONS(3445), - [anon_sym_BANG_EQ] = ACTIONS(3445), - [anon_sym_GT_EQ] = ACTIONS(3445), - [anon_sym_LT_EQ] = ACTIONS(3445), - [anon_sym_DOT] = ACTIONS(3447), - [anon_sym_scoped] = ACTIONS(3985), - [anon_sym_COLON_COLON] = ACTIONS(3445), - [anon_sym_var] = ACTIONS(3985), - [anon_sym_yield] = ACTIONS(3985), - [anon_sym_switch] = ACTIONS(3447), - [anon_sym_when] = ACTIONS(3985), - [anon_sym_DOT_DOT] = ACTIONS(3445), - [anon_sym_and] = ACTIONS(3447), - [anon_sym_or] = ACTIONS(3447), - [anon_sym_AMP_AMP] = ACTIONS(3445), - [anon_sym_PIPE_PIPE] = ACTIONS(3445), - [anon_sym_QMARK_QMARK] = ACTIONS(3445), - [anon_sym_from] = ACTIONS(3985), - [anon_sym_into] = ACTIONS(3989), - [anon_sym_join] = ACTIONS(3985), - [anon_sym_on] = ACTIONS(3985), - [anon_sym_equals] = ACTIONS(3985), - [anon_sym_let] = ACTIONS(3985), - [anon_sym_orderby] = ACTIONS(3985), - [anon_sym_ascending] = ACTIONS(3985), - [anon_sym_descending] = ACTIONS(3985), - [anon_sym_group] = ACTIONS(3985), - [anon_sym_by] = ACTIONS(3985), - [anon_sym_select] = ACTIONS(3985), - [anon_sym_as] = ACTIONS(3447), - [anon_sym_is] = ACTIONS(3447), - [anon_sym_DASH_GT] = ACTIONS(3445), - [anon_sym_with] = ACTIONS(3447), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_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(3445), - }, - [2321] = { - [sym_preproc_region] = STATE(2321), - [sym_preproc_endregion] = STATE(2321), - [sym_preproc_line] = STATE(2321), - [sym_preproc_pragma] = STATE(2321), + [sym__identifier_token] = ACTIONS(3669), + [anon_sym_alias] = ACTIONS(3669), + [anon_sym_global] = ACTIONS(3669), + [anon_sym_EQ] = ACTIONS(3673), + [anon_sym_LBRACK] = ACTIONS(3675), + [anon_sym_COLON] = ACTIONS(3671), + [anon_sym_LPAREN] = ACTIONS(3675), + [anon_sym_file] = ACTIONS(3669), + [anon_sym_LT] = ACTIONS(3673), + [anon_sym_GT] = ACTIONS(3673), + [anon_sym_where] = ACTIONS(3669), + [anon_sym_QMARK] = ACTIONS(3680), + [anon_sym_notnull] = ACTIONS(3669), + [anon_sym_unmanaged] = ACTIONS(3669), + [anon_sym_BANG] = ACTIONS(3673), + [anon_sym_PLUS_PLUS] = ACTIONS(3671), + [anon_sym_DASH_DASH] = ACTIONS(3671), + [anon_sym_PLUS] = ACTIONS(3673), + [anon_sym_DASH] = ACTIONS(3673), + [anon_sym_STAR] = ACTIONS(3680), + [anon_sym_SLASH] = ACTIONS(3673), + [anon_sym_PERCENT] = ACTIONS(3673), + [anon_sym_CARET] = ACTIONS(3673), + [anon_sym_PIPE] = ACTIONS(3673), + [anon_sym_AMP] = ACTIONS(3673), + [anon_sym_LT_LT] = ACTIONS(3673), + [anon_sym_GT_GT] = ACTIONS(3673), + [anon_sym_GT_GT_GT] = ACTIONS(3673), + [anon_sym_EQ_EQ] = ACTIONS(3671), + [anon_sym_BANG_EQ] = ACTIONS(3671), + [anon_sym_GT_EQ] = ACTIONS(3671), + [anon_sym_LT_EQ] = ACTIONS(3671), + [anon_sym_DOT] = ACTIONS(3680), + [anon_sym_scoped] = ACTIONS(3669), + [anon_sym_EQ_GT] = ACTIONS(3671), + [anon_sym_var] = ACTIONS(3669), + [anon_sym_yield] = ACTIONS(3669), + [anon_sym_switch] = ACTIONS(3673), + [anon_sym_when] = ACTIONS(3680), + [anon_sym_DOT_DOT] = ACTIONS(3671), + [anon_sym_and] = ACTIONS(3673), + [anon_sym_or] = ACTIONS(3673), + [anon_sym_PLUS_EQ] = ACTIONS(3671), + [anon_sym_DASH_EQ] = ACTIONS(3671), + [anon_sym_STAR_EQ] = ACTIONS(3671), + [anon_sym_SLASH_EQ] = ACTIONS(3671), + [anon_sym_PERCENT_EQ] = ACTIONS(3671), + [anon_sym_AMP_EQ] = ACTIONS(3671), + [anon_sym_CARET_EQ] = ACTIONS(3671), + [anon_sym_PIPE_EQ] = ACTIONS(3671), + [anon_sym_LT_LT_EQ] = ACTIONS(3671), + [anon_sym_GT_GT_EQ] = ACTIONS(3671), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3671), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3671), + [anon_sym_AMP_AMP] = ACTIONS(3671), + [anon_sym_PIPE_PIPE] = ACTIONS(3671), + [anon_sym_QMARK_QMARK] = ACTIONS(3673), + [anon_sym_from] = ACTIONS(3669), + [anon_sym_into] = ACTIONS(3669), + [anon_sym_join] = ACTIONS(3669), + [anon_sym_on] = ACTIONS(3669), + [anon_sym_equals] = ACTIONS(3669), + [anon_sym_let] = ACTIONS(3669), + [anon_sym_orderby] = ACTIONS(3669), + [anon_sym_ascending] = ACTIONS(3669), + [anon_sym_descending] = ACTIONS(3669), + [anon_sym_group] = ACTIONS(3669), + [anon_sym_by] = ACTIONS(3669), + [anon_sym_select] = ACTIONS(3669), + [anon_sym_as] = ACTIONS(3673), + [anon_sym_is] = ACTIONS(3673), + [anon_sym_DASH_GT] = ACTIONS(3675), + [anon_sym_with] = ACTIONS(3673), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + }, + [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(3685), - [anon_sym_alias] = ACTIONS(3685), - [anon_sym_global] = ACTIONS(3685), - [anon_sym_EQ] = ACTIONS(3689), - [anon_sym_LBRACK] = ACTIONS(3691), - [anon_sym_LPAREN] = ACTIONS(3691), - [anon_sym_LBRACE] = ACTIONS(3687), - [anon_sym_file] = ACTIONS(3685), - [anon_sym_LT] = ACTIONS(3694), - [anon_sym_GT] = ACTIONS(3694), - [anon_sym_where] = ACTIONS(3694), - [anon_sym_QMARK] = ACTIONS(3694), - [anon_sym_notnull] = ACTIONS(3685), - [anon_sym_unmanaged] = ACTIONS(3685), - [anon_sym_BANG] = ACTIONS(3694), - [anon_sym_PLUS_PLUS] = ACTIONS(3691), - [anon_sym_DASH_DASH] = ACTIONS(3691), - [anon_sym_PLUS] = ACTIONS(3694), - [anon_sym_DASH] = ACTIONS(3694), - [anon_sym_STAR] = ACTIONS(3694), - [anon_sym_SLASH] = ACTIONS(3694), - [anon_sym_PERCENT] = ACTIONS(3694), - [anon_sym_CARET] = ACTIONS(3694), - [anon_sym_PIPE] = ACTIONS(3694), - [anon_sym_AMP] = ACTIONS(3694), - [anon_sym_LT_LT] = ACTIONS(3694), - [anon_sym_GT_GT] = ACTIONS(3694), - [anon_sym_GT_GT_GT] = ACTIONS(3694), - [anon_sym_EQ_EQ] = ACTIONS(3691), - [anon_sym_BANG_EQ] = ACTIONS(3691), - [anon_sym_GT_EQ] = ACTIONS(3691), - [anon_sym_LT_EQ] = ACTIONS(3691), - [anon_sym_DOT] = ACTIONS(3694), - [anon_sym_scoped] = ACTIONS(3685), - [anon_sym_var] = ACTIONS(3685), - [anon_sym_yield] = ACTIONS(3685), - [anon_sym_switch] = ACTIONS(3694), - [anon_sym_when] = ACTIONS(3685), - [sym_discard] = ACTIONS(3685), - [anon_sym_DOT_DOT] = ACTIONS(3691), - [anon_sym_and] = ACTIONS(3694), - [anon_sym_or] = ACTIONS(3694), - [anon_sym_PLUS_EQ] = ACTIONS(3697), - [anon_sym_DASH_EQ] = ACTIONS(3697), - [anon_sym_STAR_EQ] = ACTIONS(3697), - [anon_sym_SLASH_EQ] = ACTIONS(3697), - [anon_sym_PERCENT_EQ] = ACTIONS(3697), - [anon_sym_AMP_EQ] = ACTIONS(3697), - [anon_sym_CARET_EQ] = ACTIONS(3697), - [anon_sym_PIPE_EQ] = ACTIONS(3697), - [anon_sym_LT_LT_EQ] = ACTIONS(3697), - [anon_sym_GT_GT_EQ] = ACTIONS(3697), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3697), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3697), - [anon_sym_AMP_AMP] = ACTIONS(3691), - [anon_sym_PIPE_PIPE] = ACTIONS(3691), - [anon_sym_QMARK_QMARK] = ACTIONS(3694), - [anon_sym_from] = ACTIONS(3694), - [anon_sym_into] = ACTIONS(3685), - [anon_sym_join] = ACTIONS(3694), - [anon_sym_on] = ACTIONS(3685), - [anon_sym_equals] = ACTIONS(3685), - [anon_sym_let] = ACTIONS(3694), - [anon_sym_orderby] = ACTIONS(3694), - [anon_sym_ascending] = ACTIONS(3685), - [anon_sym_descending] = ACTIONS(3685), - [anon_sym_group] = ACTIONS(3694), - [anon_sym_by] = ACTIONS(3685), - [anon_sym_select] = ACTIONS(3694), - [anon_sym_as] = ACTIONS(3694), - [anon_sym_is] = ACTIONS(3694), - [anon_sym_DASH_GT] = ACTIONS(3691), - [anon_sym_with] = ACTIONS(3694), + [sym__identifier_token] = ACTIONS(3691), + [anon_sym_alias] = ACTIONS(3691), + [anon_sym_global] = ACTIONS(3691), + [anon_sym_EQ] = ACTIONS(3696), + [anon_sym_LBRACK] = ACTIONS(3713), + [anon_sym_COLON] = ACTIONS(3711), + [anon_sym_LPAREN] = ACTIONS(3713), + [anon_sym_file] = ACTIONS(3691), + [anon_sym_LT] = ACTIONS(3696), + [anon_sym_GT] = ACTIONS(3696), + [anon_sym_where] = ACTIONS(3691), + [anon_sym_QMARK] = ACTIONS(3716), + [anon_sym_notnull] = ACTIONS(3691), + [anon_sym_unmanaged] = ACTIONS(3691), + [anon_sym_BANG] = ACTIONS(3696), + [anon_sym_PLUS_PLUS] = ACTIONS(3711), + [anon_sym_DASH_DASH] = ACTIONS(3711), + [anon_sym_PLUS] = ACTIONS(3696), + [anon_sym_DASH] = ACTIONS(3696), + [anon_sym_STAR] = ACTIONS(3716), + [anon_sym_SLASH] = ACTIONS(3696), + [anon_sym_PERCENT] = ACTIONS(3696), + [anon_sym_CARET] = ACTIONS(3696), + [anon_sym_PIPE] = ACTIONS(3696), + [anon_sym_AMP] = ACTIONS(3696), + [anon_sym_LT_LT] = ACTIONS(3696), + [anon_sym_GT_GT] = ACTIONS(3696), + [anon_sym_GT_GT_GT] = ACTIONS(3696), + [anon_sym_EQ_EQ] = ACTIONS(3711), + [anon_sym_BANG_EQ] = ACTIONS(3711), + [anon_sym_GT_EQ] = ACTIONS(3711), + [anon_sym_LT_EQ] = ACTIONS(3711), + [anon_sym_DOT] = ACTIONS(3716), + [anon_sym_scoped] = ACTIONS(3691), + [anon_sym_EQ_GT] = ACTIONS(3711), + [anon_sym_var] = ACTIONS(3691), + [anon_sym_yield] = ACTIONS(3691), + [anon_sym_switch] = ACTIONS(3696), + [anon_sym_when] = ACTIONS(3716), + [anon_sym_DOT_DOT] = ACTIONS(3711), + [anon_sym_and] = ACTIONS(3696), + [anon_sym_or] = ACTIONS(3696), + [anon_sym_PLUS_EQ] = ACTIONS(3711), + [anon_sym_DASH_EQ] = ACTIONS(3711), + [anon_sym_STAR_EQ] = ACTIONS(3711), + [anon_sym_SLASH_EQ] = ACTIONS(3711), + [anon_sym_PERCENT_EQ] = ACTIONS(3711), + [anon_sym_AMP_EQ] = ACTIONS(3711), + [anon_sym_CARET_EQ] = ACTIONS(3711), + [anon_sym_PIPE_EQ] = ACTIONS(3711), + [anon_sym_LT_LT_EQ] = ACTIONS(3711), + [anon_sym_GT_GT_EQ] = ACTIONS(3711), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3711), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3711), + [anon_sym_AMP_AMP] = ACTIONS(3711), + [anon_sym_PIPE_PIPE] = ACTIONS(3711), + [anon_sym_QMARK_QMARK] = ACTIONS(3696), + [anon_sym_from] = ACTIONS(3691), + [anon_sym_into] = ACTIONS(3691), + [anon_sym_join] = ACTIONS(3691), + [anon_sym_on] = ACTIONS(3691), + [anon_sym_equals] = ACTIONS(3691), + [anon_sym_let] = ACTIONS(3691), + [anon_sym_orderby] = ACTIONS(3691), + [anon_sym_ascending] = ACTIONS(3691), + [anon_sym_descending] = ACTIONS(3691), + [anon_sym_group] = ACTIONS(3691), + [anon_sym_by] = ACTIONS(3691), + [anon_sym_select] = ACTIONS(3691), + [anon_sym_as] = ACTIONS(3696), + [anon_sym_is] = ACTIONS(3696), + [anon_sym_DASH_GT] = ACTIONS(3713), + [anon_sym_with] = ACTIONS(3696), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -412147,79 +411839,79 @@ 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(3699), - [anon_sym_alias] = ACTIONS(3699), - [anon_sym_global] = ACTIONS(3699), - [anon_sym_EQ] = ACTIONS(3704), - [anon_sym_LBRACK] = ACTIONS(3706), - [anon_sym_LPAREN] = ACTIONS(3706), - [anon_sym_LBRACE] = ACTIONS(3710), - [anon_sym_file] = ACTIONS(3699), - [anon_sym_LT] = ACTIONS(3712), - [anon_sym_GT] = ACTIONS(3712), - [anon_sym_where] = ACTIONS(3716), - [anon_sym_QMARK] = ACTIONS(3712), - [anon_sym_notnull] = ACTIONS(3699), - [anon_sym_unmanaged] = ACTIONS(3699), - [anon_sym_BANG] = ACTIONS(3712), - [anon_sym_PLUS_PLUS] = ACTIONS(3706), - [anon_sym_DASH_DASH] = ACTIONS(3706), - [anon_sym_PLUS] = ACTIONS(3712), - [anon_sym_DASH] = ACTIONS(3712), - [anon_sym_STAR] = ACTIONS(3712), - [anon_sym_SLASH] = ACTIONS(3712), - [anon_sym_PERCENT] = ACTIONS(3712), - [anon_sym_CARET] = ACTIONS(3712), - [anon_sym_PIPE] = ACTIONS(3712), - [anon_sym_AMP] = ACTIONS(3712), - [anon_sym_LT_LT] = ACTIONS(3712), - [anon_sym_GT_GT] = ACTIONS(3712), - [anon_sym_GT_GT_GT] = ACTIONS(3712), - [anon_sym_EQ_EQ] = ACTIONS(3706), - [anon_sym_BANG_EQ] = ACTIONS(3706), - [anon_sym_GT_EQ] = ACTIONS(3706), - [anon_sym_LT_EQ] = ACTIONS(3706), - [anon_sym_DOT] = ACTIONS(3712), - [anon_sym_scoped] = ACTIONS(3699), - [anon_sym_var] = ACTIONS(3699), - [anon_sym_yield] = ACTIONS(3699), - [anon_sym_switch] = ACTIONS(3712), - [anon_sym_when] = ACTIONS(3699), - [sym_discard] = ACTIONS(3699), - [anon_sym_DOT_DOT] = ACTIONS(3706), - [anon_sym_and] = ACTIONS(3716), - [anon_sym_or] = ACTIONS(3716), - [anon_sym_PLUS_EQ] = ACTIONS(3719), - [anon_sym_DASH_EQ] = ACTIONS(3719), - [anon_sym_STAR_EQ] = ACTIONS(3719), - [anon_sym_SLASH_EQ] = ACTIONS(3719), - [anon_sym_PERCENT_EQ] = ACTIONS(3719), - [anon_sym_AMP_EQ] = ACTIONS(3719), - [anon_sym_CARET_EQ] = ACTIONS(3719), - [anon_sym_PIPE_EQ] = ACTIONS(3719), - [anon_sym_LT_LT_EQ] = ACTIONS(3719), - [anon_sym_GT_GT_EQ] = ACTIONS(3719), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3719), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3719), - [anon_sym_AMP_AMP] = ACTIONS(3706), - [anon_sym_PIPE_PIPE] = ACTIONS(3706), - [anon_sym_QMARK_QMARK] = ACTIONS(3712), - [anon_sym_from] = ACTIONS(3716), - [anon_sym_into] = ACTIONS(3716), - [anon_sym_join] = ACTIONS(3716), - [anon_sym_on] = ACTIONS(3699), - [anon_sym_equals] = ACTIONS(3699), - [anon_sym_let] = ACTIONS(3716), - [anon_sym_orderby] = ACTIONS(3716), - [anon_sym_ascending] = ACTIONS(3699), - [anon_sym_descending] = ACTIONS(3699), - [anon_sym_group] = ACTIONS(3716), - [anon_sym_by] = ACTIONS(3699), - [anon_sym_select] = ACTIONS(3716), - [anon_sym_as] = ACTIONS(3712), - [anon_sym_is] = ACTIONS(3712), - [anon_sym_DASH_GT] = ACTIONS(3706), - [anon_sym_with] = ACTIONS(3712), + [sym__identifier_token] = ACTIONS(3669), + [anon_sym_alias] = ACTIONS(3669), + [anon_sym_global] = ACTIONS(3669), + [anon_sym_EQ] = ACTIONS(3673), + [anon_sym_LBRACK] = ACTIONS(3675), + [anon_sym_LPAREN] = ACTIONS(3675), + [anon_sym_LBRACE] = ACTIONS(3678), + [anon_sym_file] = ACTIONS(3669), + [anon_sym_LT] = ACTIONS(3680), + [anon_sym_GT] = ACTIONS(3680), + [anon_sym_where] = ACTIONS(3680), + [anon_sym_QMARK] = ACTIONS(3680), + [anon_sym_notnull] = ACTIONS(3669), + [anon_sym_unmanaged] = ACTIONS(3669), + [anon_sym_BANG] = ACTIONS(3680), + [anon_sym_PLUS_PLUS] = ACTIONS(3675), + [anon_sym_DASH_DASH] = ACTIONS(3675), + [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(3675), + [anon_sym_BANG_EQ] = ACTIONS(3675), + [anon_sym_GT_EQ] = ACTIONS(3675), + [anon_sym_LT_EQ] = ACTIONS(3675), + [anon_sym_DOT] = ACTIONS(3680), + [anon_sym_scoped] = ACTIONS(3669), + [anon_sym_var] = ACTIONS(3669), + [anon_sym_yield] = ACTIONS(3669), + [anon_sym_switch] = ACTIONS(3680), + [anon_sym_when] = ACTIONS(3669), + [sym_discard] = ACTIONS(3669), + [anon_sym_DOT_DOT] = ACTIONS(3675), + [anon_sym_and] = ACTIONS(3680), + [anon_sym_or] = ACTIONS(3680), + [anon_sym_PLUS_EQ] = ACTIONS(3671), + [anon_sym_DASH_EQ] = ACTIONS(3671), + [anon_sym_STAR_EQ] = ACTIONS(3671), + [anon_sym_SLASH_EQ] = ACTIONS(3671), + [anon_sym_PERCENT_EQ] = ACTIONS(3671), + [anon_sym_AMP_EQ] = ACTIONS(3671), + [anon_sym_CARET_EQ] = ACTIONS(3671), + [anon_sym_PIPE_EQ] = ACTIONS(3671), + [anon_sym_LT_LT_EQ] = ACTIONS(3671), + [anon_sym_GT_GT_EQ] = ACTIONS(3671), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3671), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3671), + [anon_sym_AMP_AMP] = ACTIONS(3675), + [anon_sym_PIPE_PIPE] = ACTIONS(3675), + [anon_sym_QMARK_QMARK] = ACTIONS(3680), + [anon_sym_from] = ACTIONS(3680), + [anon_sym_into] = ACTIONS(3669), + [anon_sym_join] = ACTIONS(3680), + [anon_sym_on] = ACTIONS(3669), + [anon_sym_equals] = ACTIONS(3669), + [anon_sym_let] = ACTIONS(3680), + [anon_sym_orderby] = ACTIONS(3680), + [anon_sym_ascending] = ACTIONS(3669), + [anon_sym_descending] = ACTIONS(3669), + [anon_sym_group] = ACTIONS(3680), + [anon_sym_by] = ACTIONS(3669), + [anon_sym_select] = ACTIONS(3680), + [anon_sym_as] = ACTIONS(3680), + [anon_sym_is] = ACTIONS(3680), + [anon_sym_DASH_GT] = ACTIONS(3675), + [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), @@ -412241,79 +411933,79 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2323), [sym_preproc_define] = STATE(2323), [sym_preproc_undef] = STATE(2323), - [sym__identifier_token] = ACTIONS(3685), - [anon_sym_alias] = ACTIONS(3685), - [anon_sym_global] = ACTIONS(3685), - [anon_sym_EQ] = ACTIONS(3689), - [anon_sym_LBRACK] = ACTIONS(3691), - [anon_sym_COLON] = ACTIONS(3697), - [anon_sym_LPAREN] = ACTIONS(3691), - [anon_sym_file] = ACTIONS(3685), - [anon_sym_LT] = ACTIONS(3689), - [anon_sym_GT] = ACTIONS(3689), - [anon_sym_where] = ACTIONS(3685), - [anon_sym_QMARK] = ACTIONS(3694), - [anon_sym_notnull] = ACTIONS(3685), - [anon_sym_unmanaged] = ACTIONS(3685), - [anon_sym_BANG] = ACTIONS(3689), - [anon_sym_PLUS_PLUS] = ACTIONS(3697), - [anon_sym_DASH_DASH] = ACTIONS(3697), - [anon_sym_PLUS] = ACTIONS(3689), - [anon_sym_DASH] = ACTIONS(3689), - [anon_sym_STAR] = ACTIONS(3694), - [anon_sym_SLASH] = ACTIONS(3689), - [anon_sym_PERCENT] = ACTIONS(3689), - [anon_sym_CARET] = ACTIONS(3689), - [anon_sym_PIPE] = ACTIONS(3689), - [anon_sym_AMP] = ACTIONS(3689), - [anon_sym_LT_LT] = ACTIONS(3689), - [anon_sym_GT_GT] = ACTIONS(3689), - [anon_sym_GT_GT_GT] = ACTIONS(3689), - [anon_sym_EQ_EQ] = ACTIONS(3697), - [anon_sym_BANG_EQ] = ACTIONS(3697), - [anon_sym_GT_EQ] = ACTIONS(3697), - [anon_sym_LT_EQ] = ACTIONS(3697), - [anon_sym_DOT] = ACTIONS(3694), - [anon_sym_scoped] = ACTIONS(3685), - [anon_sym_EQ_GT] = ACTIONS(3697), - [anon_sym_var] = ACTIONS(3685), - [anon_sym_yield] = ACTIONS(3685), - [anon_sym_switch] = ACTIONS(3689), - [anon_sym_when] = ACTIONS(3694), - [anon_sym_DOT_DOT] = ACTIONS(3697), - [anon_sym_and] = ACTIONS(3689), - [anon_sym_or] = ACTIONS(3689), - [anon_sym_PLUS_EQ] = ACTIONS(3697), - [anon_sym_DASH_EQ] = ACTIONS(3697), - [anon_sym_STAR_EQ] = ACTIONS(3697), - [anon_sym_SLASH_EQ] = ACTIONS(3697), - [anon_sym_PERCENT_EQ] = ACTIONS(3697), - [anon_sym_AMP_EQ] = ACTIONS(3697), - [anon_sym_CARET_EQ] = ACTIONS(3697), - [anon_sym_PIPE_EQ] = ACTIONS(3697), - [anon_sym_LT_LT_EQ] = ACTIONS(3697), - [anon_sym_GT_GT_EQ] = ACTIONS(3697), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3697), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3697), - [anon_sym_AMP_AMP] = ACTIONS(3697), - [anon_sym_PIPE_PIPE] = ACTIONS(3697), - [anon_sym_QMARK_QMARK] = ACTIONS(3689), - [anon_sym_from] = ACTIONS(3685), - [anon_sym_into] = ACTIONS(3694), - [anon_sym_join] = ACTIONS(3685), - [anon_sym_on] = ACTIONS(3685), - [anon_sym_equals] = ACTIONS(3685), - [anon_sym_let] = ACTIONS(3685), - [anon_sym_orderby] = ACTIONS(3685), - [anon_sym_ascending] = ACTIONS(3685), - [anon_sym_descending] = ACTIONS(3685), - [anon_sym_group] = ACTIONS(3685), - [anon_sym_by] = ACTIONS(3685), - [anon_sym_select] = ACTIONS(3685), - [anon_sym_as] = ACTIONS(3689), - [anon_sym_is] = ACTIONS(3689), - [anon_sym_DASH_GT] = ACTIONS(3691), - [anon_sym_with] = ACTIONS(3689), + [sym__identifier_token] = ACTIONS(3691), + [anon_sym_alias] = ACTIONS(3691), + [anon_sym_global] = ACTIONS(3691), + [anon_sym_EQ] = ACTIONS(3696), + [anon_sym_LBRACK] = ACTIONS(3698), + [anon_sym_LPAREN] = ACTIONS(3698), + [anon_sym_LBRACE] = ACTIONS(3702), + [anon_sym_file] = ACTIONS(3691), + [anon_sym_LT] = ACTIONS(3704), + [anon_sym_GT] = ACTIONS(3704), + [anon_sym_where] = ACTIONS(3708), + [anon_sym_QMARK] = ACTIONS(3704), + [anon_sym_notnull] = ACTIONS(3691), + [anon_sym_unmanaged] = ACTIONS(3691), + [anon_sym_BANG] = ACTIONS(3704), + [anon_sym_PLUS_PLUS] = ACTIONS(3698), + [anon_sym_DASH_DASH] = ACTIONS(3698), + [anon_sym_PLUS] = ACTIONS(3704), + [anon_sym_DASH] = ACTIONS(3704), + [anon_sym_STAR] = ACTIONS(3704), + [anon_sym_SLASH] = ACTIONS(3704), + [anon_sym_PERCENT] = ACTIONS(3704), + [anon_sym_CARET] = ACTIONS(3704), + [anon_sym_PIPE] = ACTIONS(3704), + [anon_sym_AMP] = ACTIONS(3704), + [anon_sym_LT_LT] = ACTIONS(3704), + [anon_sym_GT_GT] = ACTIONS(3704), + [anon_sym_GT_GT_GT] = ACTIONS(3704), + [anon_sym_EQ_EQ] = ACTIONS(3698), + [anon_sym_BANG_EQ] = ACTIONS(3698), + [anon_sym_GT_EQ] = ACTIONS(3698), + [anon_sym_LT_EQ] = ACTIONS(3698), + [anon_sym_DOT] = ACTIONS(3704), + [anon_sym_scoped] = ACTIONS(3691), + [anon_sym_var] = ACTIONS(3691), + [anon_sym_yield] = ACTIONS(3691), + [anon_sym_switch] = ACTIONS(3704), + [anon_sym_when] = ACTIONS(3691), + [sym_discard] = ACTIONS(3691), + [anon_sym_DOT_DOT] = ACTIONS(3698), + [anon_sym_and] = ACTIONS(3708), + [anon_sym_or] = ACTIONS(3708), + [anon_sym_PLUS_EQ] = ACTIONS(3711), + [anon_sym_DASH_EQ] = ACTIONS(3711), + [anon_sym_STAR_EQ] = ACTIONS(3711), + [anon_sym_SLASH_EQ] = ACTIONS(3711), + [anon_sym_PERCENT_EQ] = ACTIONS(3711), + [anon_sym_AMP_EQ] = ACTIONS(3711), + [anon_sym_CARET_EQ] = ACTIONS(3711), + [anon_sym_PIPE_EQ] = ACTIONS(3711), + [anon_sym_LT_LT_EQ] = ACTIONS(3711), + [anon_sym_GT_GT_EQ] = ACTIONS(3711), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3711), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3711), + [anon_sym_AMP_AMP] = ACTIONS(3698), + [anon_sym_PIPE_PIPE] = ACTIONS(3698), + [anon_sym_QMARK_QMARK] = ACTIONS(3704), + [anon_sym_from] = ACTIONS(3708), + [anon_sym_into] = ACTIONS(3708), + [anon_sym_join] = ACTIONS(3708), + [anon_sym_on] = ACTIONS(3691), + [anon_sym_equals] = ACTIONS(3691), + [anon_sym_let] = ACTIONS(3708), + [anon_sym_orderby] = ACTIONS(3708), + [anon_sym_ascending] = ACTIONS(3691), + [anon_sym_descending] = ACTIONS(3691), + [anon_sym_group] = ACTIONS(3708), + [anon_sym_by] = ACTIONS(3691), + [anon_sym_select] = ACTIONS(3708), + [anon_sym_as] = ACTIONS(3704), + [anon_sym_is] = ACTIONS(3704), + [anon_sym_DASH_GT] = ACTIONS(3698), + [anon_sym_with] = ACTIONS(3704), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -412326,6 +412018,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2324] = { + [sym__variable_designation] = STATE(3461), + [sym_parenthesized_variable_designation] = STATE(3352), + [sym_identifier] = STATE(3355), + [sym__reserved_identifier] = STATE(3199), [sym_preproc_region] = STATE(2324), [sym_preproc_endregion] = STATE(2324), [sym_preproc_line] = STATE(2324), @@ -412335,79 +412031,75 @@ 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(3699), - [anon_sym_alias] = ACTIONS(3699), - [anon_sym_global] = ACTIONS(3699), - [anon_sym_EQ] = ACTIONS(3704), - [anon_sym_LBRACK] = ACTIONS(3706), - [anon_sym_LPAREN] = ACTIONS(3706), - [anon_sym_LBRACE] = ACTIONS(3710), - [anon_sym_file] = ACTIONS(3699), - [anon_sym_LT] = ACTIONS(3712), - [anon_sym_GT] = ACTIONS(3712), - [anon_sym_where] = ACTIONS(3699), - [anon_sym_QMARK] = ACTIONS(3712), - [anon_sym_notnull] = ACTIONS(3699), - [anon_sym_unmanaged] = ACTIONS(3699), - [anon_sym_BANG] = ACTIONS(3712), - [anon_sym_PLUS_PLUS] = ACTIONS(3706), - [anon_sym_DASH_DASH] = ACTIONS(3706), - [anon_sym_PLUS] = ACTIONS(3712), - [anon_sym_DASH] = ACTIONS(3712), - [anon_sym_STAR] = ACTIONS(3712), - [anon_sym_SLASH] = ACTIONS(3712), - [anon_sym_PERCENT] = ACTIONS(3712), - [anon_sym_CARET] = ACTIONS(3712), - [anon_sym_PIPE] = ACTIONS(3712), - [anon_sym_AMP] = ACTIONS(3712), - [anon_sym_LT_LT] = ACTIONS(3712), - [anon_sym_GT_GT] = ACTIONS(3712), - [anon_sym_GT_GT_GT] = ACTIONS(3712), - [anon_sym_EQ_EQ] = ACTIONS(3706), - [anon_sym_BANG_EQ] = ACTIONS(3706), - [anon_sym_GT_EQ] = ACTIONS(3706), - [anon_sym_LT_EQ] = ACTIONS(3706), - [anon_sym_DOT] = ACTIONS(3712), - [anon_sym_scoped] = ACTIONS(3699), - [anon_sym_var] = ACTIONS(3699), - [anon_sym_yield] = ACTIONS(3699), - [anon_sym_switch] = ACTIONS(3712), - [anon_sym_when] = ACTIONS(3699), - [sym_discard] = ACTIONS(3699), - [anon_sym_DOT_DOT] = ACTIONS(3706), - [anon_sym_and] = ACTIONS(3716), - [anon_sym_or] = ACTIONS(3716), - [anon_sym_PLUS_EQ] = ACTIONS(3719), - [anon_sym_DASH_EQ] = ACTIONS(3719), - [anon_sym_STAR_EQ] = ACTIONS(3719), - [anon_sym_SLASH_EQ] = ACTIONS(3719), - [anon_sym_PERCENT_EQ] = ACTIONS(3719), - [anon_sym_AMP_EQ] = ACTIONS(3719), - [anon_sym_CARET_EQ] = ACTIONS(3719), - [anon_sym_PIPE_EQ] = ACTIONS(3719), - [anon_sym_LT_LT_EQ] = ACTIONS(3719), - [anon_sym_GT_GT_EQ] = ACTIONS(3719), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3719), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3719), - [anon_sym_AMP_AMP] = ACTIONS(3706), - [anon_sym_PIPE_PIPE] = ACTIONS(3706), - [anon_sym_QMARK_QMARK] = ACTIONS(3712), - [anon_sym_from] = ACTIONS(3699), - [anon_sym_into] = ACTIONS(3716), - [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_ascending] = ACTIONS(3699), - [anon_sym_descending] = ACTIONS(3699), - [anon_sym_group] = ACTIONS(3699), - [anon_sym_by] = ACTIONS(3716), - [anon_sym_select] = ACTIONS(3699), - [anon_sym_as] = ACTIONS(3712), - [anon_sym_is] = ACTIONS(3712), - [anon_sym_DASH_GT] = ACTIONS(3706), - [anon_sym_with] = ACTIONS(3712), + [sym__identifier_token] = ACTIONS(3855), + [anon_sym_alias] = ACTIONS(3857), + [anon_sym_SEMI] = ACTIONS(3947), + [anon_sym_global] = ACTIONS(3857), + [anon_sym_LBRACK] = ACTIONS(3947), + [anon_sym_COLON] = ACTIONS(3947), + [anon_sym_COMMA] = ACTIONS(3947), + [anon_sym_RBRACK] = ACTIONS(3947), + [anon_sym_LPAREN] = ACTIONS(3947), + [anon_sym_RPAREN] = ACTIONS(3947), + [anon_sym_RBRACE] = ACTIONS(3947), + [anon_sym_file] = ACTIONS(3857), + [anon_sym_LT] = ACTIONS(3949), + [anon_sym_GT] = ACTIONS(3949), + [anon_sym_where] = ACTIONS(3857), + [anon_sym_QMARK] = ACTIONS(3949), + [anon_sym_notnull] = ACTIONS(3857), + [anon_sym_unmanaged] = ACTIONS(3857), + [anon_sym_BANG] = ACTIONS(3949), + [anon_sym_PLUS_PLUS] = ACTIONS(3947), + [anon_sym_DASH_DASH] = ACTIONS(3947), + [anon_sym_PLUS] = ACTIONS(3949), + [anon_sym_DASH] = ACTIONS(3949), + [anon_sym_STAR] = ACTIONS(3947), + [anon_sym_SLASH] = ACTIONS(3949), + [anon_sym_PERCENT] = ACTIONS(3947), + [anon_sym_CARET] = ACTIONS(3947), + [anon_sym_PIPE] = ACTIONS(3949), + [anon_sym_AMP] = ACTIONS(3949), + [anon_sym_LT_LT] = ACTIONS(3947), + [anon_sym_GT_GT] = ACTIONS(3949), + [anon_sym_GT_GT_GT] = ACTIONS(3947), + [anon_sym_EQ_EQ] = ACTIONS(3947), + [anon_sym_BANG_EQ] = ACTIONS(3947), + [anon_sym_GT_EQ] = ACTIONS(3947), + [anon_sym_LT_EQ] = ACTIONS(3947), + [anon_sym_DOT] = ACTIONS(3949), + [anon_sym_scoped] = ACTIONS(3857), + [anon_sym_EQ_GT] = ACTIONS(3947), + [anon_sym_var] = ACTIONS(3857), + [anon_sym_yield] = ACTIONS(3857), + [anon_sym_switch] = ACTIONS(3949), + [anon_sym_when] = ACTIONS(3857), + [sym_discard] = ACTIONS(3877), + [anon_sym_DOT_DOT] = ACTIONS(3947), + [anon_sym_and] = ACTIONS(3949), + [anon_sym_or] = ACTIONS(3949), + [anon_sym_AMP_AMP] = ACTIONS(3947), + [anon_sym_PIPE_PIPE] = ACTIONS(3947), + [anon_sym_QMARK_QMARK] = ACTIONS(3947), + [anon_sym_from] = ACTIONS(3857), + [anon_sym_into] = ACTIONS(3857), + [anon_sym_join] = ACTIONS(3857), + [anon_sym_on] = ACTIONS(3857), + [anon_sym_equals] = ACTIONS(3857), + [anon_sym_let] = ACTIONS(3857), + [anon_sym_orderby] = ACTIONS(3857), + [anon_sym_ascending] = ACTIONS(3857), + [anon_sym_descending] = ACTIONS(3857), + [anon_sym_group] = ACTIONS(3857), + [anon_sym_by] = ACTIONS(3857), + [anon_sym_select] = ACTIONS(3857), + [anon_sym_as] = ACTIONS(3949), + [anon_sym_is] = ACTIONS(3949), + [anon_sym_DASH_GT] = ACTIONS(3947), + [anon_sym_with] = ACTIONS(3949), + [aux_sym_preproc_if_token3] = ACTIONS(3947), + [aux_sym_preproc_else_token1] = ACTIONS(3947), + [aux_sym_preproc_elif_token1] = ACTIONS(3947), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -412429,79 +412121,79 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2325), [sym_preproc_define] = STATE(2325), [sym_preproc_undef] = STATE(2325), - [sym__identifier_token] = ACTIONS(3685), - [anon_sym_alias] = ACTIONS(3685), - [anon_sym_global] = ACTIONS(3685), - [anon_sym_EQ] = ACTIONS(3689), - [anon_sym_LBRACK] = ACTIONS(3691), - [anon_sym_LPAREN] = ACTIONS(3691), - [anon_sym_LBRACE] = ACTIONS(3687), - [anon_sym_file] = ACTIONS(3685), - [anon_sym_LT] = ACTIONS(3694), - [anon_sym_GT] = ACTIONS(3694), - [anon_sym_where] = ACTIONS(3694), - [anon_sym_QMARK] = ACTIONS(3694), - [anon_sym_notnull] = ACTIONS(3685), - [anon_sym_unmanaged] = ACTIONS(3685), - [anon_sym_BANG] = ACTIONS(3694), - [anon_sym_PLUS_PLUS] = ACTIONS(3691), - [anon_sym_DASH_DASH] = ACTIONS(3691), - [anon_sym_PLUS] = ACTIONS(3694), - [anon_sym_DASH] = ACTIONS(3694), - [anon_sym_STAR] = ACTIONS(3694), - [anon_sym_SLASH] = ACTIONS(3694), - [anon_sym_PERCENT] = ACTIONS(3694), - [anon_sym_CARET] = ACTIONS(3694), - [anon_sym_PIPE] = ACTIONS(3694), - [anon_sym_AMP] = ACTIONS(3694), - [anon_sym_LT_LT] = ACTIONS(3694), - [anon_sym_GT_GT] = ACTIONS(3694), - [anon_sym_GT_GT_GT] = ACTIONS(3694), - [anon_sym_EQ_EQ] = ACTIONS(3691), - [anon_sym_BANG_EQ] = ACTIONS(3691), - [anon_sym_GT_EQ] = ACTIONS(3691), - [anon_sym_LT_EQ] = ACTIONS(3691), - [anon_sym_DOT] = ACTIONS(3694), - [anon_sym_scoped] = ACTIONS(3685), - [anon_sym_var] = ACTIONS(3685), - [anon_sym_yield] = ACTIONS(3685), - [anon_sym_switch] = ACTIONS(3694), - [anon_sym_when] = ACTIONS(3685), - [sym_discard] = ACTIONS(3685), - [anon_sym_DOT_DOT] = ACTIONS(3691), - [anon_sym_and] = ACTIONS(3694), - [anon_sym_or] = ACTIONS(3694), - [anon_sym_PLUS_EQ] = ACTIONS(3697), - [anon_sym_DASH_EQ] = ACTIONS(3697), - [anon_sym_STAR_EQ] = ACTIONS(3697), - [anon_sym_SLASH_EQ] = ACTIONS(3697), - [anon_sym_PERCENT_EQ] = ACTIONS(3697), - [anon_sym_AMP_EQ] = ACTIONS(3697), - [anon_sym_CARET_EQ] = ACTIONS(3697), - [anon_sym_PIPE_EQ] = ACTIONS(3697), - [anon_sym_LT_LT_EQ] = ACTIONS(3697), - [anon_sym_GT_GT_EQ] = ACTIONS(3697), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3697), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3697), - [anon_sym_AMP_AMP] = ACTIONS(3691), - [anon_sym_PIPE_PIPE] = ACTIONS(3691), - [anon_sym_QMARK_QMARK] = ACTIONS(3694), - [anon_sym_from] = ACTIONS(3694), - [anon_sym_into] = ACTIONS(3694), - [anon_sym_join] = ACTIONS(3694), - [anon_sym_on] = ACTIONS(3685), - [anon_sym_equals] = ACTIONS(3685), - [anon_sym_let] = ACTIONS(3694), - [anon_sym_orderby] = ACTIONS(3694), - [anon_sym_ascending] = ACTIONS(3685), - [anon_sym_descending] = ACTIONS(3685), - [anon_sym_group] = ACTIONS(3694), - [anon_sym_by] = ACTIONS(3685), - [anon_sym_select] = ACTIONS(3694), - [anon_sym_as] = ACTIONS(3694), - [anon_sym_is] = ACTIONS(3694), - [anon_sym_DASH_GT] = ACTIONS(3691), - [anon_sym_with] = ACTIONS(3694), + [sym__identifier_token] = ACTIONS(3669), + [anon_sym_alias] = ACTIONS(3669), + [anon_sym_global] = ACTIONS(3669), + [anon_sym_EQ] = ACTIONS(3673), + [anon_sym_LBRACK] = ACTIONS(3675), + [anon_sym_LPAREN] = ACTIONS(3675), + [anon_sym_LBRACE] = ACTIONS(3678), + [anon_sym_file] = ACTIONS(3669), + [anon_sym_LT] = ACTIONS(3680), + [anon_sym_GT] = ACTIONS(3680), + [anon_sym_where] = ACTIONS(3669), + [anon_sym_QMARK] = ACTIONS(3680), + [anon_sym_notnull] = ACTIONS(3669), + [anon_sym_unmanaged] = ACTIONS(3669), + [anon_sym_BANG] = ACTIONS(3680), + [anon_sym_PLUS_PLUS] = ACTIONS(3675), + [anon_sym_DASH_DASH] = ACTIONS(3675), + [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(3675), + [anon_sym_BANG_EQ] = ACTIONS(3675), + [anon_sym_GT_EQ] = ACTIONS(3675), + [anon_sym_LT_EQ] = ACTIONS(3675), + [anon_sym_DOT] = ACTIONS(3680), + [anon_sym_scoped] = ACTIONS(3669), + [anon_sym_var] = ACTIONS(3669), + [anon_sym_yield] = ACTIONS(3669), + [anon_sym_switch] = ACTIONS(3680), + [anon_sym_when] = ACTIONS(3669), + [sym_discard] = ACTIONS(3669), + [anon_sym_DOT_DOT] = ACTIONS(3675), + [anon_sym_and] = ACTIONS(3680), + [anon_sym_or] = ACTIONS(3680), + [anon_sym_PLUS_EQ] = ACTIONS(3671), + [anon_sym_DASH_EQ] = ACTIONS(3671), + [anon_sym_STAR_EQ] = ACTIONS(3671), + [anon_sym_SLASH_EQ] = ACTIONS(3671), + [anon_sym_PERCENT_EQ] = ACTIONS(3671), + [anon_sym_AMP_EQ] = ACTIONS(3671), + [anon_sym_CARET_EQ] = ACTIONS(3671), + [anon_sym_PIPE_EQ] = ACTIONS(3671), + [anon_sym_LT_LT_EQ] = ACTIONS(3671), + [anon_sym_GT_GT_EQ] = ACTIONS(3671), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3671), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3671), + [anon_sym_AMP_AMP] = ACTIONS(3675), + [anon_sym_PIPE_PIPE] = ACTIONS(3675), + [anon_sym_QMARK_QMARK] = ACTIONS(3680), + [anon_sym_from] = ACTIONS(3669), + [anon_sym_into] = ACTIONS(3669), + [anon_sym_join] = ACTIONS(3669), + [anon_sym_on] = ACTIONS(3669), + [anon_sym_equals] = ACTIONS(3680), + [anon_sym_let] = ACTIONS(3669), + [anon_sym_orderby] = ACTIONS(3669), + [anon_sym_ascending] = ACTIONS(3669), + [anon_sym_descending] = ACTIONS(3669), + [anon_sym_group] = ACTIONS(3669), + [anon_sym_by] = ACTIONS(3669), + [anon_sym_select] = ACTIONS(3669), + [anon_sym_as] = ACTIONS(3680), + [anon_sym_is] = ACTIONS(3680), + [anon_sym_DASH_GT] = ACTIONS(3675), + [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), @@ -412514,6 +412206,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2326] = { + [sym__variable_designation] = STATE(3413), + [sym_parenthesized_variable_designation] = STATE(3352), + [sym_identifier] = STATE(3355), + [sym__reserved_identifier] = STATE(3199), [sym_preproc_region] = STATE(2326), [sym_preproc_endregion] = STATE(2326), [sym_preproc_line] = STATE(2326), @@ -412523,79 +412219,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2326), [sym_preproc_define] = STATE(2326), [sym_preproc_undef] = STATE(2326), - [sym__identifier_token] = ACTIONS(3685), - [anon_sym_alias] = ACTIONS(3685), - [anon_sym_global] = ACTIONS(3685), - [anon_sym_EQ] = ACTIONS(3689), - [anon_sym_LBRACK] = ACTIONS(3691), - [anon_sym_LPAREN] = ACTIONS(3691), - [anon_sym_LBRACE] = ACTIONS(3687), - [anon_sym_file] = ACTIONS(3685), - [anon_sym_LT] = ACTIONS(3694), - [anon_sym_GT] = ACTIONS(3694), - [anon_sym_where] = ACTIONS(3685), - [anon_sym_QMARK] = ACTIONS(3694), - [anon_sym_notnull] = ACTIONS(3685), - [anon_sym_unmanaged] = ACTIONS(3685), - [anon_sym_BANG] = ACTIONS(3694), - [anon_sym_PLUS_PLUS] = ACTIONS(3691), - [anon_sym_DASH_DASH] = ACTIONS(3691), - [anon_sym_PLUS] = ACTIONS(3694), - [anon_sym_DASH] = ACTIONS(3694), - [anon_sym_STAR] = ACTIONS(3694), - [anon_sym_SLASH] = ACTIONS(3694), - [anon_sym_PERCENT] = ACTIONS(3694), - [anon_sym_CARET] = ACTIONS(3694), - [anon_sym_PIPE] = ACTIONS(3694), - [anon_sym_AMP] = ACTIONS(3694), - [anon_sym_LT_LT] = ACTIONS(3694), - [anon_sym_GT_GT] = ACTIONS(3694), - [anon_sym_GT_GT_GT] = ACTIONS(3694), - [anon_sym_EQ_EQ] = ACTIONS(3691), - [anon_sym_BANG_EQ] = ACTIONS(3691), - [anon_sym_GT_EQ] = ACTIONS(3691), - [anon_sym_LT_EQ] = ACTIONS(3691), - [anon_sym_DOT] = ACTIONS(3694), - [anon_sym_scoped] = ACTIONS(3685), - [anon_sym_var] = ACTIONS(3685), - [anon_sym_yield] = ACTIONS(3685), - [anon_sym_switch] = ACTIONS(3694), - [anon_sym_when] = ACTIONS(3685), - [sym_discard] = ACTIONS(3685), - [anon_sym_DOT_DOT] = ACTIONS(3691), - [anon_sym_and] = ACTIONS(3694), - [anon_sym_or] = ACTIONS(3694), - [anon_sym_PLUS_EQ] = ACTIONS(3697), - [anon_sym_DASH_EQ] = ACTIONS(3697), - [anon_sym_STAR_EQ] = ACTIONS(3697), - [anon_sym_SLASH_EQ] = ACTIONS(3697), - [anon_sym_PERCENT_EQ] = ACTIONS(3697), - [anon_sym_AMP_EQ] = ACTIONS(3697), - [anon_sym_CARET_EQ] = ACTIONS(3697), - [anon_sym_PIPE_EQ] = ACTIONS(3697), - [anon_sym_LT_LT_EQ] = ACTIONS(3697), - [anon_sym_GT_GT_EQ] = ACTIONS(3697), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3697), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3697), - [anon_sym_AMP_AMP] = ACTIONS(3691), - [anon_sym_PIPE_PIPE] = ACTIONS(3691), - [anon_sym_QMARK_QMARK] = ACTIONS(3694), - [anon_sym_from] = ACTIONS(3685), - [anon_sym_into] = ACTIONS(3685), - [anon_sym_join] = ACTIONS(3685), - [anon_sym_on] = ACTIONS(3685), - [anon_sym_equals] = ACTIONS(3694), - [anon_sym_let] = ACTIONS(3685), - [anon_sym_orderby] = ACTIONS(3685), - [anon_sym_ascending] = ACTIONS(3685), - [anon_sym_descending] = ACTIONS(3685), - [anon_sym_group] = ACTIONS(3685), - [anon_sym_by] = ACTIONS(3685), - [anon_sym_select] = ACTIONS(3685), - [anon_sym_as] = ACTIONS(3694), - [anon_sym_is] = ACTIONS(3694), - [anon_sym_DASH_GT] = ACTIONS(3691), - [anon_sym_with] = ACTIONS(3694), + [sym__identifier_token] = ACTIONS(3855), + [anon_sym_alias] = ACTIONS(3857), + [anon_sym_SEMI] = ACTIONS(3885), + [anon_sym_global] = ACTIONS(3857), + [anon_sym_LBRACK] = ACTIONS(3885), + [anon_sym_COLON] = ACTIONS(3885), + [anon_sym_COMMA] = ACTIONS(3885), + [anon_sym_RBRACK] = ACTIONS(3885), + [anon_sym_LPAREN] = ACTIONS(3885), + [anon_sym_RPAREN] = ACTIONS(3885), + [anon_sym_RBRACE] = ACTIONS(3885), + [anon_sym_file] = ACTIONS(3857), + [anon_sym_LT] = ACTIONS(3887), + [anon_sym_GT] = ACTIONS(3887), + [anon_sym_where] = ACTIONS(3857), + [anon_sym_QMARK] = ACTIONS(3887), + [anon_sym_notnull] = ACTIONS(3857), + [anon_sym_unmanaged] = ACTIONS(3857), + [anon_sym_BANG] = ACTIONS(3887), + [anon_sym_PLUS_PLUS] = ACTIONS(3885), + [anon_sym_DASH_DASH] = ACTIONS(3885), + [anon_sym_PLUS] = ACTIONS(3887), + [anon_sym_DASH] = ACTIONS(3887), + [anon_sym_STAR] = ACTIONS(3885), + [anon_sym_SLASH] = ACTIONS(3887), + [anon_sym_PERCENT] = ACTIONS(3885), + [anon_sym_CARET] = ACTIONS(3885), + [anon_sym_PIPE] = ACTIONS(3887), + [anon_sym_AMP] = ACTIONS(3887), + [anon_sym_LT_LT] = ACTIONS(3885), + [anon_sym_GT_GT] = ACTIONS(3887), + [anon_sym_GT_GT_GT] = ACTIONS(3885), + [anon_sym_EQ_EQ] = ACTIONS(3885), + [anon_sym_BANG_EQ] = ACTIONS(3885), + [anon_sym_GT_EQ] = ACTIONS(3885), + [anon_sym_LT_EQ] = ACTIONS(3885), + [anon_sym_DOT] = ACTIONS(3887), + [anon_sym_scoped] = ACTIONS(3857), + [anon_sym_EQ_GT] = ACTIONS(3885), + [anon_sym_var] = ACTIONS(3857), + [anon_sym_yield] = ACTIONS(3857), + [anon_sym_switch] = ACTIONS(3887), + [anon_sym_when] = ACTIONS(3857), + [sym_discard] = ACTIONS(3877), + [anon_sym_DOT_DOT] = ACTIONS(3885), + [anon_sym_and] = ACTIONS(3887), + [anon_sym_or] = ACTIONS(3887), + [anon_sym_AMP_AMP] = ACTIONS(3885), + [anon_sym_PIPE_PIPE] = ACTIONS(3885), + [anon_sym_QMARK_QMARK] = ACTIONS(3885), + [anon_sym_from] = ACTIONS(3857), + [anon_sym_into] = ACTIONS(3857), + [anon_sym_join] = ACTIONS(3857), + [anon_sym_on] = ACTIONS(3857), + [anon_sym_equals] = ACTIONS(3857), + [anon_sym_let] = ACTIONS(3857), + [anon_sym_orderby] = ACTIONS(3857), + [anon_sym_ascending] = ACTIONS(3857), + [anon_sym_descending] = ACTIONS(3857), + [anon_sym_group] = ACTIONS(3857), + [anon_sym_by] = ACTIONS(3857), + [anon_sym_select] = ACTIONS(3857), + [anon_sym_as] = ACTIONS(3887), + [anon_sym_is] = ACTIONS(3887), + [anon_sym_DASH_GT] = ACTIONS(3885), + [anon_sym_with] = ACTIONS(3887), + [aux_sym_preproc_if_token3] = ACTIONS(3885), + [aux_sym_preproc_else_token1] = ACTIONS(3885), + [aux_sym_preproc_elif_token1] = ACTIONS(3885), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -412617,79 +412309,79 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2327), [sym_preproc_define] = STATE(2327), [sym_preproc_undef] = STATE(2327), - [sym__identifier_token] = ACTIONS(3685), - [anon_sym_alias] = ACTIONS(3685), - [anon_sym_global] = ACTIONS(3685), - [anon_sym_EQ] = ACTIONS(3689), - [anon_sym_LBRACK] = ACTIONS(3691), - [anon_sym_LPAREN] = ACTIONS(3691), - [anon_sym_LBRACE] = ACTIONS(3687), - [anon_sym_file] = ACTIONS(3685), - [anon_sym_LT] = ACTIONS(3694), - [anon_sym_GT] = ACTIONS(3694), - [anon_sym_where] = ACTIONS(3685), - [anon_sym_QMARK] = ACTIONS(3694), - [anon_sym_notnull] = ACTIONS(3685), - [anon_sym_unmanaged] = ACTIONS(3685), - [anon_sym_BANG] = ACTIONS(3694), - [anon_sym_PLUS_PLUS] = ACTIONS(3691), - [anon_sym_DASH_DASH] = ACTIONS(3691), - [anon_sym_PLUS] = ACTIONS(3694), - [anon_sym_DASH] = ACTIONS(3694), - [anon_sym_STAR] = ACTIONS(3694), - [anon_sym_SLASH] = ACTIONS(3694), - [anon_sym_PERCENT] = ACTIONS(3694), - [anon_sym_CARET] = ACTIONS(3694), - [anon_sym_PIPE] = ACTIONS(3694), - [anon_sym_AMP] = ACTIONS(3694), - [anon_sym_LT_LT] = ACTIONS(3694), - [anon_sym_GT_GT] = ACTIONS(3694), - [anon_sym_GT_GT_GT] = ACTIONS(3694), - [anon_sym_EQ_EQ] = ACTIONS(3691), - [anon_sym_BANG_EQ] = ACTIONS(3691), - [anon_sym_GT_EQ] = ACTIONS(3691), - [anon_sym_LT_EQ] = ACTIONS(3691), - [anon_sym_DOT] = ACTIONS(3694), - [anon_sym_scoped] = ACTIONS(3685), - [anon_sym_var] = ACTIONS(3685), - [anon_sym_yield] = ACTIONS(3685), - [anon_sym_switch] = ACTIONS(3694), - [anon_sym_when] = ACTIONS(3685), - [sym_discard] = ACTIONS(3685), - [anon_sym_DOT_DOT] = ACTIONS(3691), - [anon_sym_and] = ACTIONS(3694), - [anon_sym_or] = ACTIONS(3694), - [anon_sym_PLUS_EQ] = ACTIONS(3697), - [anon_sym_DASH_EQ] = ACTIONS(3697), - [anon_sym_STAR_EQ] = ACTIONS(3697), - [anon_sym_SLASH_EQ] = ACTIONS(3697), - [anon_sym_PERCENT_EQ] = ACTIONS(3697), - [anon_sym_AMP_EQ] = ACTIONS(3697), - [anon_sym_CARET_EQ] = ACTIONS(3697), - [anon_sym_PIPE_EQ] = ACTIONS(3697), - [anon_sym_LT_LT_EQ] = ACTIONS(3697), - [anon_sym_GT_GT_EQ] = ACTIONS(3697), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3697), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3697), - [anon_sym_AMP_AMP] = ACTIONS(3691), - [anon_sym_PIPE_PIPE] = ACTIONS(3691), - [anon_sym_QMARK_QMARK] = ACTIONS(3694), - [anon_sym_from] = ACTIONS(3685), - [anon_sym_into] = ACTIONS(3685), - [anon_sym_join] = ACTIONS(3685), - [anon_sym_on] = ACTIONS(3694), - [anon_sym_equals] = ACTIONS(3685), - [anon_sym_let] = ACTIONS(3685), - [anon_sym_orderby] = ACTIONS(3685), - [anon_sym_ascending] = ACTIONS(3685), - [anon_sym_descending] = ACTIONS(3685), - [anon_sym_group] = ACTIONS(3685), - [anon_sym_by] = ACTIONS(3685), - [anon_sym_select] = ACTIONS(3685), - [anon_sym_as] = ACTIONS(3694), - [anon_sym_is] = ACTIONS(3694), - [anon_sym_DASH_GT] = ACTIONS(3691), - [anon_sym_with] = ACTIONS(3694), + [sym__identifier_token] = ACTIONS(3691), + [anon_sym_alias] = ACTIONS(3691), + [anon_sym_global] = ACTIONS(3691), + [anon_sym_EQ] = ACTIONS(3696), + [anon_sym_LBRACK] = ACTIONS(3698), + [anon_sym_LPAREN] = ACTIONS(3698), + [anon_sym_LBRACE] = ACTIONS(3702), + [anon_sym_file] = ACTIONS(3691), + [anon_sym_LT] = ACTIONS(3704), + [anon_sym_GT] = ACTIONS(3704), + [anon_sym_where] = ACTIONS(3691), + [anon_sym_QMARK] = ACTIONS(3704), + [anon_sym_notnull] = ACTIONS(3691), + [anon_sym_unmanaged] = ACTIONS(3691), + [anon_sym_BANG] = ACTIONS(3704), + [anon_sym_PLUS_PLUS] = ACTIONS(3698), + [anon_sym_DASH_DASH] = ACTIONS(3698), + [anon_sym_PLUS] = ACTIONS(3704), + [anon_sym_DASH] = ACTIONS(3704), + [anon_sym_STAR] = ACTIONS(3704), + [anon_sym_SLASH] = ACTIONS(3704), + [anon_sym_PERCENT] = ACTIONS(3704), + [anon_sym_CARET] = ACTIONS(3704), + [anon_sym_PIPE] = ACTIONS(3704), + [anon_sym_AMP] = ACTIONS(3704), + [anon_sym_LT_LT] = ACTIONS(3704), + [anon_sym_GT_GT] = ACTIONS(3704), + [anon_sym_GT_GT_GT] = ACTIONS(3704), + [anon_sym_EQ_EQ] = ACTIONS(3698), + [anon_sym_BANG_EQ] = ACTIONS(3698), + [anon_sym_GT_EQ] = ACTIONS(3698), + [anon_sym_LT_EQ] = ACTIONS(3698), + [anon_sym_DOT] = ACTIONS(3704), + [anon_sym_scoped] = ACTIONS(3691), + [anon_sym_var] = ACTIONS(3691), + [anon_sym_yield] = ACTIONS(3691), + [anon_sym_switch] = ACTIONS(3704), + [anon_sym_when] = ACTIONS(3691), + [sym_discard] = ACTIONS(3691), + [anon_sym_DOT_DOT] = ACTIONS(3698), + [anon_sym_and] = ACTIONS(3708), + [anon_sym_or] = ACTIONS(3708), + [anon_sym_PLUS_EQ] = ACTIONS(3711), + [anon_sym_DASH_EQ] = ACTIONS(3711), + [anon_sym_STAR_EQ] = ACTIONS(3711), + [anon_sym_SLASH_EQ] = ACTIONS(3711), + [anon_sym_PERCENT_EQ] = ACTIONS(3711), + [anon_sym_AMP_EQ] = ACTIONS(3711), + [anon_sym_CARET_EQ] = ACTIONS(3711), + [anon_sym_PIPE_EQ] = ACTIONS(3711), + [anon_sym_LT_LT_EQ] = ACTIONS(3711), + [anon_sym_GT_GT_EQ] = ACTIONS(3711), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3711), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3711), + [anon_sym_AMP_AMP] = ACTIONS(3698), + [anon_sym_PIPE_PIPE] = ACTIONS(3698), + [anon_sym_QMARK_QMARK] = ACTIONS(3704), + [anon_sym_from] = ACTIONS(3691), + [anon_sym_into] = ACTIONS(3708), + [anon_sym_join] = ACTIONS(3691), + [anon_sym_on] = ACTIONS(3708), + [anon_sym_equals] = ACTIONS(3691), + [anon_sym_let] = ACTIONS(3691), + [anon_sym_orderby] = ACTIONS(3691), + [anon_sym_ascending] = ACTIONS(3691), + [anon_sym_descending] = ACTIONS(3691), + [anon_sym_group] = ACTIONS(3691), + [anon_sym_by] = ACTIONS(3691), + [anon_sym_select] = ACTIONS(3691), + [anon_sym_as] = ACTIONS(3704), + [anon_sym_is] = ACTIONS(3704), + [anon_sym_DASH_GT] = ACTIONS(3698), + [anon_sym_with] = ACTIONS(3704), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -412711,79 +412403,79 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2328), [sym_preproc_define] = STATE(2328), [sym_preproc_undef] = STATE(2328), - [sym__identifier_token] = ACTIONS(3685), - [anon_sym_alias] = ACTIONS(3685), - [anon_sym_global] = ACTIONS(3685), - [anon_sym_EQ] = ACTIONS(3689), - [anon_sym_LBRACK] = ACTIONS(3691), - [anon_sym_LPAREN] = ACTIONS(3691), - [anon_sym_LBRACE] = ACTIONS(3687), - [anon_sym_file] = ACTIONS(3685), - [anon_sym_LT] = ACTIONS(3694), - [anon_sym_GT] = ACTIONS(3694), - [anon_sym_where] = ACTIONS(3685), - [anon_sym_QMARK] = ACTIONS(3694), - [anon_sym_notnull] = ACTIONS(3685), - [anon_sym_unmanaged] = ACTIONS(3685), - [anon_sym_BANG] = ACTIONS(3694), - [anon_sym_PLUS_PLUS] = ACTIONS(3691), - [anon_sym_DASH_DASH] = ACTIONS(3691), - [anon_sym_PLUS] = ACTIONS(3694), - [anon_sym_DASH] = ACTIONS(3694), - [anon_sym_STAR] = ACTIONS(3694), - [anon_sym_SLASH] = ACTIONS(3694), - [anon_sym_PERCENT] = ACTIONS(3694), - [anon_sym_CARET] = ACTIONS(3694), - [anon_sym_PIPE] = ACTIONS(3694), - [anon_sym_AMP] = ACTIONS(3694), - [anon_sym_LT_LT] = ACTIONS(3694), - [anon_sym_GT_GT] = ACTIONS(3694), - [anon_sym_GT_GT_GT] = ACTIONS(3694), - [anon_sym_EQ_EQ] = ACTIONS(3691), - [anon_sym_BANG_EQ] = ACTIONS(3691), - [anon_sym_GT_EQ] = ACTIONS(3691), - [anon_sym_LT_EQ] = ACTIONS(3691), - [anon_sym_DOT] = ACTIONS(3694), - [anon_sym_scoped] = ACTIONS(3685), - [anon_sym_var] = ACTIONS(3685), - [anon_sym_yield] = ACTIONS(3685), - [anon_sym_switch] = ACTIONS(3694), - [anon_sym_when] = ACTIONS(3685), - [sym_discard] = ACTIONS(3685), - [anon_sym_DOT_DOT] = ACTIONS(3691), - [anon_sym_and] = ACTIONS(3694), - [anon_sym_or] = ACTIONS(3694), - [anon_sym_PLUS_EQ] = ACTIONS(3697), - [anon_sym_DASH_EQ] = ACTIONS(3697), - [anon_sym_STAR_EQ] = ACTIONS(3697), - [anon_sym_SLASH_EQ] = ACTIONS(3697), - [anon_sym_PERCENT_EQ] = ACTIONS(3697), - [anon_sym_AMP_EQ] = ACTIONS(3697), - [anon_sym_CARET_EQ] = ACTIONS(3697), - [anon_sym_PIPE_EQ] = ACTIONS(3697), - [anon_sym_LT_LT_EQ] = ACTIONS(3697), - [anon_sym_GT_GT_EQ] = ACTIONS(3697), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3697), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3697), - [anon_sym_AMP_AMP] = ACTIONS(3691), - [anon_sym_PIPE_PIPE] = ACTIONS(3691), - [anon_sym_QMARK_QMARK] = ACTIONS(3694), - [anon_sym_from] = ACTIONS(3685), - [anon_sym_into] = ACTIONS(3685), - [anon_sym_join] = ACTIONS(3685), - [anon_sym_on] = ACTIONS(3685), - [anon_sym_equals] = ACTIONS(3685), - [anon_sym_let] = ACTIONS(3685), - [anon_sym_orderby] = ACTIONS(3685), - [anon_sym_ascending] = ACTIONS(3685), - [anon_sym_descending] = ACTIONS(3685), - [anon_sym_group] = ACTIONS(3685), - [anon_sym_by] = ACTIONS(3694), - [anon_sym_select] = ACTIONS(3685), - [anon_sym_as] = ACTIONS(3694), - [anon_sym_is] = ACTIONS(3694), - [anon_sym_DASH_GT] = ACTIONS(3691), - [anon_sym_with] = ACTIONS(3694), + [sym__identifier_token] = ACTIONS(3691), + [anon_sym_alias] = ACTIONS(3691), + [anon_sym_global] = ACTIONS(3691), + [anon_sym_EQ] = ACTIONS(3696), + [anon_sym_LBRACK] = ACTIONS(3698), + [anon_sym_LPAREN] = ACTIONS(3698), + [anon_sym_LBRACE] = ACTIONS(3702), + [anon_sym_file] = ACTIONS(3691), + [anon_sym_LT] = ACTIONS(3704), + [anon_sym_GT] = ACTIONS(3704), + [anon_sym_where] = ACTIONS(3691), + [anon_sym_QMARK] = ACTIONS(3704), + [anon_sym_notnull] = ACTIONS(3691), + [anon_sym_unmanaged] = ACTIONS(3691), + [anon_sym_BANG] = ACTIONS(3704), + [anon_sym_PLUS_PLUS] = ACTIONS(3698), + [anon_sym_DASH_DASH] = ACTIONS(3698), + [anon_sym_PLUS] = ACTIONS(3704), + [anon_sym_DASH] = ACTIONS(3704), + [anon_sym_STAR] = ACTIONS(3704), + [anon_sym_SLASH] = ACTIONS(3704), + [anon_sym_PERCENT] = ACTIONS(3704), + [anon_sym_CARET] = ACTIONS(3704), + [anon_sym_PIPE] = ACTIONS(3704), + [anon_sym_AMP] = ACTIONS(3704), + [anon_sym_LT_LT] = ACTIONS(3704), + [anon_sym_GT_GT] = ACTIONS(3704), + [anon_sym_GT_GT_GT] = ACTIONS(3704), + [anon_sym_EQ_EQ] = ACTIONS(3698), + [anon_sym_BANG_EQ] = ACTIONS(3698), + [anon_sym_GT_EQ] = ACTIONS(3698), + [anon_sym_LT_EQ] = ACTIONS(3698), + [anon_sym_DOT] = ACTIONS(3704), + [anon_sym_scoped] = ACTIONS(3691), + [anon_sym_var] = ACTIONS(3691), + [anon_sym_yield] = ACTIONS(3691), + [anon_sym_switch] = ACTIONS(3704), + [anon_sym_when] = ACTIONS(3691), + [sym_discard] = ACTIONS(3691), + [anon_sym_DOT_DOT] = ACTIONS(3698), + [anon_sym_and] = ACTIONS(3708), + [anon_sym_or] = ACTIONS(3708), + [anon_sym_PLUS_EQ] = ACTIONS(3711), + [anon_sym_DASH_EQ] = ACTIONS(3711), + [anon_sym_STAR_EQ] = ACTIONS(3711), + [anon_sym_SLASH_EQ] = ACTIONS(3711), + [anon_sym_PERCENT_EQ] = ACTIONS(3711), + [anon_sym_AMP_EQ] = ACTIONS(3711), + [anon_sym_CARET_EQ] = ACTIONS(3711), + [anon_sym_PIPE_EQ] = ACTIONS(3711), + [anon_sym_LT_LT_EQ] = ACTIONS(3711), + [anon_sym_GT_GT_EQ] = ACTIONS(3711), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3711), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3711), + [anon_sym_AMP_AMP] = ACTIONS(3698), + [anon_sym_PIPE_PIPE] = ACTIONS(3698), + [anon_sym_QMARK_QMARK] = ACTIONS(3704), + [anon_sym_from] = ACTIONS(3691), + [anon_sym_into] = ACTIONS(3691), + [anon_sym_join] = ACTIONS(3691), + [anon_sym_on] = ACTIONS(3691), + [anon_sym_equals] = ACTIONS(3708), + [anon_sym_let] = ACTIONS(3691), + [anon_sym_orderby] = ACTIONS(3691), + [anon_sym_ascending] = ACTIONS(3691), + [anon_sym_descending] = ACTIONS(3691), + [anon_sym_group] = ACTIONS(3691), + [anon_sym_by] = ACTIONS(3691), + [anon_sym_select] = ACTIONS(3691), + [anon_sym_as] = ACTIONS(3704), + [anon_sym_is] = ACTIONS(3704), + [anon_sym_DASH_GT] = ACTIONS(3698), + [anon_sym_with] = ACTIONS(3704), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -412796,6 +412488,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2329] = { + [sym__name] = STATE(4448), + [sym_alias_qualified_name] = STATE(4462), + [sym__simple_name] = STATE(4462), + [sym_qualified_name] = STATE(4462), + [sym_generic_name] = STATE(4410), + [sym_ref_type] = STATE(4339), + [sym__scoped_base_type] = STATE(4341), + [sym_identifier] = STATE(4194), + [sym__reserved_identifier] = STATE(4314), [sym_preproc_region] = STATE(2329), [sym_preproc_endregion] = STATE(2329), [sym_preproc_line] = STATE(2329), @@ -412805,79 +412506,69 @@ 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(3685), - [anon_sym_alias] = ACTIONS(3685), - [anon_sym_global] = ACTIONS(3685), - [anon_sym_EQ] = ACTIONS(3689), - [anon_sym_LBRACK] = ACTIONS(3691), - [anon_sym_LPAREN] = ACTIONS(3691), - [anon_sym_LBRACE] = ACTIONS(3687), - [anon_sym_file] = ACTIONS(3685), - [anon_sym_LT] = ACTIONS(3694), - [anon_sym_GT] = ACTIONS(3694), - [anon_sym_where] = ACTIONS(3685), - [anon_sym_QMARK] = ACTIONS(3694), - [anon_sym_notnull] = ACTIONS(3685), - [anon_sym_unmanaged] = ACTIONS(3685), - [anon_sym_BANG] = ACTIONS(3694), - [anon_sym_PLUS_PLUS] = ACTIONS(3691), - [anon_sym_DASH_DASH] = ACTIONS(3691), - [anon_sym_PLUS] = ACTIONS(3694), - [anon_sym_DASH] = ACTIONS(3694), - [anon_sym_STAR] = ACTIONS(3694), - [anon_sym_SLASH] = ACTIONS(3694), - [anon_sym_PERCENT] = ACTIONS(3694), - [anon_sym_CARET] = ACTIONS(3694), - [anon_sym_PIPE] = ACTIONS(3694), - [anon_sym_AMP] = ACTIONS(3694), - [anon_sym_LT_LT] = ACTIONS(3694), - [anon_sym_GT_GT] = ACTIONS(3694), - [anon_sym_GT_GT_GT] = ACTIONS(3694), - [anon_sym_EQ_EQ] = ACTIONS(3691), - [anon_sym_BANG_EQ] = ACTIONS(3691), - [anon_sym_GT_EQ] = ACTIONS(3691), - [anon_sym_LT_EQ] = ACTIONS(3691), - [anon_sym_DOT] = ACTIONS(3694), - [anon_sym_scoped] = ACTIONS(3685), - [anon_sym_var] = ACTIONS(3685), - [anon_sym_yield] = ACTIONS(3685), - [anon_sym_switch] = ACTIONS(3694), - [anon_sym_when] = ACTIONS(3685), - [sym_discard] = ACTIONS(3685), - [anon_sym_DOT_DOT] = ACTIONS(3691), - [anon_sym_and] = ACTIONS(3694), - [anon_sym_or] = ACTIONS(3694), - [anon_sym_PLUS_EQ] = ACTIONS(3697), - [anon_sym_DASH_EQ] = ACTIONS(3697), - [anon_sym_STAR_EQ] = ACTIONS(3697), - [anon_sym_SLASH_EQ] = ACTIONS(3697), - [anon_sym_PERCENT_EQ] = ACTIONS(3697), - [anon_sym_AMP_EQ] = ACTIONS(3697), - [anon_sym_CARET_EQ] = ACTIONS(3697), - [anon_sym_PIPE_EQ] = ACTIONS(3697), - [anon_sym_LT_LT_EQ] = ACTIONS(3697), - [anon_sym_GT_GT_EQ] = ACTIONS(3697), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3697), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3697), - [anon_sym_AMP_AMP] = ACTIONS(3691), - [anon_sym_PIPE_PIPE] = ACTIONS(3691), - [anon_sym_QMARK_QMARK] = ACTIONS(3694), - [anon_sym_from] = ACTIONS(3685), - [anon_sym_into] = ACTIONS(3694), - [anon_sym_join] = ACTIONS(3685), - [anon_sym_on] = ACTIONS(3685), - [anon_sym_equals] = ACTIONS(3685), - [anon_sym_let] = ACTIONS(3685), - [anon_sym_orderby] = ACTIONS(3685), - [anon_sym_ascending] = ACTIONS(3685), - [anon_sym_descending] = ACTIONS(3685), - [anon_sym_group] = ACTIONS(3685), - [anon_sym_by] = ACTIONS(3694), - [anon_sym_select] = ACTIONS(3685), - [anon_sym_as] = ACTIONS(3694), - [anon_sym_is] = ACTIONS(3694), - [anon_sym_DASH_GT] = ACTIONS(3691), - [anon_sym_with] = ACTIONS(3694), + [sym__identifier_token] = ACTIONS(3965), + [anon_sym_alias] = ACTIONS(3967), + [anon_sym_global] = ACTIONS(3967), + [anon_sym_LBRACK] = ACTIONS(3429), + [anon_sym_COLON] = ACTIONS(3431), + [anon_sym_COMMA] = ACTIONS(3429), + [anon_sym_LPAREN] = ACTIONS(3429), + [anon_sym_ref] = ACTIONS(3974), + [anon_sym_LBRACE] = ACTIONS(3429), + [anon_sym_file] = ACTIONS(3967), + [anon_sym_LT] = ACTIONS(3431), + [anon_sym_GT] = ACTIONS(3431), + [anon_sym_where] = ACTIONS(3967), + [anon_sym_QMARK] = ACTIONS(3431), + [anon_sym_notnull] = ACTIONS(3967), + [anon_sym_unmanaged] = ACTIONS(3967), + [anon_sym_BANG] = ACTIONS(3431), + [anon_sym_PLUS_PLUS] = ACTIONS(3429), + [anon_sym_DASH_DASH] = ACTIONS(3429), + [anon_sym_PLUS] = ACTIONS(3431), + [anon_sym_DASH] = ACTIONS(3431), + [anon_sym_STAR] = ACTIONS(3429), + [anon_sym_SLASH] = ACTIONS(3431), + [anon_sym_PERCENT] = ACTIONS(3429), + [anon_sym_CARET] = ACTIONS(3429), + [anon_sym_PIPE] = ACTIONS(3431), + [anon_sym_AMP] = ACTIONS(3431), + [anon_sym_LT_LT] = ACTIONS(3429), + [anon_sym_GT_GT] = ACTIONS(3431), + [anon_sym_GT_GT_GT] = ACTIONS(3429), + [anon_sym_EQ_EQ] = ACTIONS(3429), + [anon_sym_BANG_EQ] = ACTIONS(3429), + [anon_sym_GT_EQ] = ACTIONS(3429), + [anon_sym_LT_EQ] = ACTIONS(3429), + [anon_sym_DOT] = ACTIONS(3431), + [anon_sym_scoped] = ACTIONS(3967), + [anon_sym_COLON_COLON] = ACTIONS(3429), + [anon_sym_var] = ACTIONS(3967), + [anon_sym_yield] = ACTIONS(3967), + [anon_sym_switch] = ACTIONS(3431), + [anon_sym_when] = ACTIONS(3967), + [anon_sym_DOT_DOT] = ACTIONS(3429), + [anon_sym_and] = ACTIONS(3431), + [anon_sym_or] = ACTIONS(3431), + [anon_sym_AMP_AMP] = ACTIONS(3429), + [anon_sym_PIPE_PIPE] = ACTIONS(3429), + [anon_sym_QMARK_QMARK] = ACTIONS(3429), + [anon_sym_from] = ACTIONS(3967), + [anon_sym_into] = ACTIONS(3967), + [anon_sym_join] = ACTIONS(3967), + [anon_sym_on] = ACTIONS(3967), + [anon_sym_equals] = ACTIONS(3967), + [anon_sym_let] = ACTIONS(3967), + [anon_sym_orderby] = ACTIONS(3967), + [anon_sym_ascending] = ACTIONS(3967), + [anon_sym_descending] = ACTIONS(3967), + [anon_sym_group] = ACTIONS(3967), + [anon_sym_by] = ACTIONS(3967), + [anon_sym_select] = ACTIONS(3967), + [anon_sym_as] = ACTIONS(3431), + [anon_sym_is] = ACTIONS(3431), + [anon_sym_DASH_GT] = ACTIONS(3429), + [anon_sym_with] = ACTIONS(3431), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -412888,12 +412579,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(3429), }, [2330] = { - [sym__variable_designation] = STATE(3507), - [sym_parenthesized_variable_designation] = STATE(3463), - [sym_identifier] = STATE(3479), - [sym__reserved_identifier] = STATE(3177), [sym_preproc_region] = STATE(2330), [sym_preproc_endregion] = STATE(2330), [sym_preproc_line] = STATE(2330), @@ -412903,75 +412591,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(3875), - [anon_sym_alias] = ACTIONS(3877), - [anon_sym_SEMI] = ACTIONS(3905), - [anon_sym_global] = ACTIONS(3877), - [anon_sym_LBRACK] = ACTIONS(3905), - [anon_sym_COLON] = ACTIONS(3905), - [anon_sym_COMMA] = ACTIONS(3905), - [anon_sym_RBRACK] = ACTIONS(3905), - [anon_sym_LPAREN] = ACTIONS(3905), - [anon_sym_RPAREN] = ACTIONS(3905), - [anon_sym_RBRACE] = ACTIONS(3905), - [anon_sym_file] = ACTIONS(3877), - [anon_sym_LT] = ACTIONS(3907), - [anon_sym_GT] = ACTIONS(3907), - [anon_sym_where] = ACTIONS(3877), - [anon_sym_QMARK] = ACTIONS(3907), - [anon_sym_notnull] = ACTIONS(3877), - [anon_sym_unmanaged] = ACTIONS(3877), - [anon_sym_BANG] = ACTIONS(3907), - [anon_sym_PLUS_PLUS] = ACTIONS(3905), - [anon_sym_DASH_DASH] = ACTIONS(3905), - [anon_sym_PLUS] = ACTIONS(3907), - [anon_sym_DASH] = ACTIONS(3907), - [anon_sym_STAR] = ACTIONS(3905), - [anon_sym_SLASH] = ACTIONS(3907), - [anon_sym_PERCENT] = ACTIONS(3905), - [anon_sym_CARET] = ACTIONS(3905), - [anon_sym_PIPE] = ACTIONS(3907), - [anon_sym_AMP] = ACTIONS(3907), - [anon_sym_LT_LT] = ACTIONS(3905), - [anon_sym_GT_GT] = ACTIONS(3907), - [anon_sym_GT_GT_GT] = ACTIONS(3905), - [anon_sym_EQ_EQ] = ACTIONS(3905), - [anon_sym_BANG_EQ] = ACTIONS(3905), - [anon_sym_GT_EQ] = ACTIONS(3905), - [anon_sym_LT_EQ] = ACTIONS(3905), - [anon_sym_DOT] = ACTIONS(3907), - [anon_sym_scoped] = ACTIONS(3877), - [anon_sym_EQ_GT] = ACTIONS(3905), - [anon_sym_var] = ACTIONS(3877), - [anon_sym_yield] = ACTIONS(3877), - [anon_sym_switch] = ACTIONS(3907), - [anon_sym_when] = ACTIONS(3877), - [sym_discard] = ACTIONS(3897), - [anon_sym_DOT_DOT] = ACTIONS(3905), - [anon_sym_and] = ACTIONS(3907), - [anon_sym_or] = ACTIONS(3907), - [anon_sym_AMP_AMP] = ACTIONS(3905), - [anon_sym_PIPE_PIPE] = ACTIONS(3905), - [anon_sym_QMARK_QMARK] = ACTIONS(3905), - [anon_sym_from] = ACTIONS(3877), - [anon_sym_into] = ACTIONS(3877), - [anon_sym_join] = ACTIONS(3877), - [anon_sym_on] = ACTIONS(3877), - [anon_sym_equals] = ACTIONS(3877), - [anon_sym_let] = ACTIONS(3877), - [anon_sym_orderby] = ACTIONS(3877), - [anon_sym_ascending] = ACTIONS(3877), - [anon_sym_descending] = ACTIONS(3877), - [anon_sym_group] = ACTIONS(3877), - [anon_sym_by] = ACTIONS(3877), - [anon_sym_select] = ACTIONS(3877), - [anon_sym_as] = ACTIONS(3907), - [anon_sym_is] = ACTIONS(3907), - [anon_sym_DASH_GT] = ACTIONS(3905), - [anon_sym_with] = ACTIONS(3907), - [aux_sym_preproc_if_token3] = ACTIONS(3905), - [aux_sym_preproc_else_token1] = ACTIONS(3905), - [aux_sym_preproc_elif_token1] = ACTIONS(3905), + [sym__identifier_token] = ACTIONS(3691), + [anon_sym_alias] = ACTIONS(3691), + [anon_sym_global] = ACTIONS(3691), + [anon_sym_EQ] = ACTIONS(3696), + [anon_sym_LBRACK] = ACTIONS(3698), + [anon_sym_LPAREN] = ACTIONS(3698), + [anon_sym_LBRACE] = ACTIONS(3702), + [anon_sym_file] = ACTIONS(3691), + [anon_sym_LT] = ACTIONS(3704), + [anon_sym_GT] = ACTIONS(3704), + [anon_sym_where] = ACTIONS(3691), + [anon_sym_QMARK] = ACTIONS(3704), + [anon_sym_notnull] = ACTIONS(3691), + [anon_sym_unmanaged] = ACTIONS(3691), + [anon_sym_BANG] = ACTIONS(3704), + [anon_sym_PLUS_PLUS] = ACTIONS(3698), + [anon_sym_DASH_DASH] = ACTIONS(3698), + [anon_sym_PLUS] = ACTIONS(3704), + [anon_sym_DASH] = ACTIONS(3704), + [anon_sym_STAR] = ACTIONS(3704), + [anon_sym_SLASH] = ACTIONS(3704), + [anon_sym_PERCENT] = ACTIONS(3704), + [anon_sym_CARET] = ACTIONS(3704), + [anon_sym_PIPE] = ACTIONS(3704), + [anon_sym_AMP] = ACTIONS(3704), + [anon_sym_LT_LT] = ACTIONS(3704), + [anon_sym_GT_GT] = ACTIONS(3704), + [anon_sym_GT_GT_GT] = ACTIONS(3704), + [anon_sym_EQ_EQ] = ACTIONS(3698), + [anon_sym_BANG_EQ] = ACTIONS(3698), + [anon_sym_GT_EQ] = ACTIONS(3698), + [anon_sym_LT_EQ] = ACTIONS(3698), + [anon_sym_DOT] = ACTIONS(3704), + [anon_sym_scoped] = ACTIONS(3691), + [anon_sym_var] = ACTIONS(3691), + [anon_sym_yield] = ACTIONS(3691), + [anon_sym_switch] = ACTIONS(3704), + [anon_sym_when] = ACTIONS(3691), + [sym_discard] = ACTIONS(3691), + [anon_sym_DOT_DOT] = ACTIONS(3698), + [anon_sym_and] = ACTIONS(3708), + [anon_sym_or] = ACTIONS(3708), + [anon_sym_PLUS_EQ] = ACTIONS(3711), + [anon_sym_DASH_EQ] = ACTIONS(3711), + [anon_sym_STAR_EQ] = ACTIONS(3711), + [anon_sym_SLASH_EQ] = ACTIONS(3711), + [anon_sym_PERCENT_EQ] = ACTIONS(3711), + [anon_sym_AMP_EQ] = ACTIONS(3711), + [anon_sym_CARET_EQ] = ACTIONS(3711), + [anon_sym_PIPE_EQ] = ACTIONS(3711), + [anon_sym_LT_LT_EQ] = ACTIONS(3711), + [anon_sym_GT_GT_EQ] = ACTIONS(3711), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3711), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3711), + [anon_sym_AMP_AMP] = ACTIONS(3698), + [anon_sym_PIPE_PIPE] = ACTIONS(3698), + [anon_sym_QMARK_QMARK] = ACTIONS(3704), + [anon_sym_from] = ACTIONS(3691), + [anon_sym_into] = ACTIONS(3691), + [anon_sym_join] = ACTIONS(3691), + [anon_sym_on] = ACTIONS(3708), + [anon_sym_equals] = ACTIONS(3691), + [anon_sym_let] = ACTIONS(3691), + [anon_sym_orderby] = ACTIONS(3691), + [anon_sym_ascending] = ACTIONS(3691), + [anon_sym_descending] = ACTIONS(3691), + [anon_sym_group] = ACTIONS(3691), + [anon_sym_by] = ACTIONS(3691), + [anon_sym_select] = ACTIONS(3691), + [anon_sym_as] = ACTIONS(3704), + [anon_sym_is] = ACTIONS(3704), + [anon_sym_DASH_GT] = ACTIONS(3698), + [anon_sym_with] = ACTIONS(3704), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -412993,79 +412685,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(3685), - [anon_sym_alias] = ACTIONS(3685), - [anon_sym_global] = ACTIONS(3685), - [anon_sym_EQ] = ACTIONS(3689), - [anon_sym_LBRACK] = ACTIONS(3691), - [anon_sym_LPAREN] = ACTIONS(3691), - [anon_sym_LBRACE] = ACTIONS(3687), - [anon_sym_file] = ACTIONS(3685), - [anon_sym_LT] = ACTIONS(3694), - [anon_sym_GT] = ACTIONS(3694), - [anon_sym_where] = ACTIONS(3685), - [anon_sym_QMARK] = ACTIONS(3694), - [anon_sym_notnull] = ACTIONS(3685), - [anon_sym_unmanaged] = ACTIONS(3685), - [anon_sym_BANG] = ACTIONS(3694), - [anon_sym_PLUS_PLUS] = ACTIONS(3691), - [anon_sym_DASH_DASH] = ACTIONS(3691), - [anon_sym_PLUS] = ACTIONS(3694), - [anon_sym_DASH] = ACTIONS(3694), - [anon_sym_STAR] = ACTIONS(3694), - [anon_sym_SLASH] = ACTIONS(3694), - [anon_sym_PERCENT] = ACTIONS(3694), - [anon_sym_CARET] = ACTIONS(3694), - [anon_sym_PIPE] = ACTIONS(3694), - [anon_sym_AMP] = ACTIONS(3694), - [anon_sym_LT_LT] = ACTIONS(3694), - [anon_sym_GT_GT] = ACTIONS(3694), - [anon_sym_GT_GT_GT] = ACTIONS(3694), - [anon_sym_EQ_EQ] = ACTIONS(3691), - [anon_sym_BANG_EQ] = ACTIONS(3691), - [anon_sym_GT_EQ] = ACTIONS(3691), - [anon_sym_LT_EQ] = ACTIONS(3691), - [anon_sym_DOT] = ACTIONS(3694), - [anon_sym_scoped] = ACTIONS(3685), - [anon_sym_var] = ACTIONS(3685), - [anon_sym_yield] = ACTIONS(3685), - [anon_sym_switch] = ACTIONS(3694), - [anon_sym_when] = ACTIONS(3685), - [sym_discard] = ACTIONS(3685), - [anon_sym_DOT_DOT] = ACTIONS(3691), - [anon_sym_and] = ACTIONS(3694), - [anon_sym_or] = ACTIONS(3694), - [anon_sym_PLUS_EQ] = ACTIONS(3697), - [anon_sym_DASH_EQ] = ACTIONS(3697), - [anon_sym_STAR_EQ] = ACTIONS(3697), - [anon_sym_SLASH_EQ] = ACTIONS(3697), - [anon_sym_PERCENT_EQ] = ACTIONS(3697), - [anon_sym_AMP_EQ] = ACTIONS(3697), - [anon_sym_CARET_EQ] = ACTIONS(3697), - [anon_sym_PIPE_EQ] = ACTIONS(3697), - [anon_sym_LT_LT_EQ] = ACTIONS(3697), - [anon_sym_GT_GT_EQ] = ACTIONS(3697), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3697), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3697), - [anon_sym_AMP_AMP] = ACTIONS(3691), - [anon_sym_PIPE_PIPE] = ACTIONS(3691), - [anon_sym_QMARK_QMARK] = ACTIONS(3694), - [anon_sym_from] = ACTIONS(3685), - [anon_sym_into] = ACTIONS(3694), - [anon_sym_join] = ACTIONS(3685), - [anon_sym_on] = ACTIONS(3685), - [anon_sym_equals] = ACTIONS(3694), - [anon_sym_let] = ACTIONS(3685), - [anon_sym_orderby] = ACTIONS(3685), - [anon_sym_ascending] = ACTIONS(3685), - [anon_sym_descending] = ACTIONS(3685), - [anon_sym_group] = ACTIONS(3685), - [anon_sym_by] = ACTIONS(3685), - [anon_sym_select] = ACTIONS(3685), - [anon_sym_as] = ACTIONS(3694), - [anon_sym_is] = ACTIONS(3694), - [anon_sym_DASH_GT] = ACTIONS(3691), - [anon_sym_with] = ACTIONS(3694), + [sym__identifier_token] = ACTIONS(3976), + [anon_sym_alias] = ACTIONS(3976), + [anon_sym_SEMI] = ACTIONS(3978), + [anon_sym_global] = ACTIONS(3976), + [anon_sym_LBRACK] = ACTIONS(3978), + [anon_sym_COLON] = ACTIONS(3978), + [anon_sym_COMMA] = ACTIONS(3978), + [anon_sym_RBRACK] = ACTIONS(3978), + [anon_sym_LPAREN] = ACTIONS(3978), + [anon_sym_RPAREN] = ACTIONS(3978), + [anon_sym_LBRACE] = ACTIONS(3978), + [anon_sym_RBRACE] = ACTIONS(3978), + [anon_sym_file] = ACTIONS(3976), + [anon_sym_LT] = ACTIONS(3976), + [anon_sym_GT] = ACTIONS(3976), + [anon_sym_in] = ACTIONS(3976), + [anon_sym_where] = ACTIONS(3976), + [anon_sym_QMARK] = ACTIONS(3976), + [anon_sym_notnull] = ACTIONS(3976), + [anon_sym_unmanaged] = ACTIONS(3976), + [anon_sym_operator] = ACTIONS(3976), + [anon_sym_BANG] = ACTIONS(3976), + [anon_sym_PLUS_PLUS] = ACTIONS(3978), + [anon_sym_DASH_DASH] = ACTIONS(3978), + [anon_sym_PLUS] = ACTIONS(3976), + [anon_sym_DASH] = ACTIONS(3976), + [anon_sym_STAR] = ACTIONS(3978), + [anon_sym_SLASH] = ACTIONS(3976), + [anon_sym_PERCENT] = ACTIONS(3978), + [anon_sym_CARET] = ACTIONS(3978), + [anon_sym_PIPE] = ACTIONS(3976), + [anon_sym_AMP] = ACTIONS(3976), + [anon_sym_LT_LT] = ACTIONS(3978), + [anon_sym_GT_GT] = ACTIONS(3976), + [anon_sym_GT_GT_GT] = ACTIONS(3978), + [anon_sym_EQ_EQ] = ACTIONS(3978), + [anon_sym_BANG_EQ] = ACTIONS(3978), + [anon_sym_GT_EQ] = ACTIONS(3978), + [anon_sym_LT_EQ] = ACTIONS(3978), + [anon_sym_this] = ACTIONS(3976), + [anon_sym_DOT] = ACTIONS(3976), + [anon_sym_scoped] = ACTIONS(3976), + [anon_sym_EQ_GT] = ACTIONS(3978), + [anon_sym_var] = ACTIONS(3976), + [anon_sym_yield] = ACTIONS(3976), + [anon_sym_switch] = ACTIONS(3976), + [anon_sym_when] = ACTIONS(3976), + [sym_discard] = ACTIONS(3976), + [anon_sym_DOT_DOT] = ACTIONS(3978), + [anon_sym_and] = ACTIONS(3976), + [anon_sym_or] = ACTIONS(3976), + [anon_sym_AMP_AMP] = ACTIONS(3978), + [anon_sym_PIPE_PIPE] = ACTIONS(3978), + [anon_sym_QMARK_QMARK] = ACTIONS(3978), + [anon_sym_from] = ACTIONS(3976), + [anon_sym_into] = ACTIONS(3976), + [anon_sym_join] = ACTIONS(3976), + [anon_sym_on] = ACTIONS(3976), + [anon_sym_equals] = ACTIONS(3976), + [anon_sym_let] = ACTIONS(3976), + [anon_sym_orderby] = ACTIONS(3976), + [anon_sym_ascending] = ACTIONS(3976), + [anon_sym_descending] = ACTIONS(3976), + [anon_sym_group] = ACTIONS(3976), + [anon_sym_by] = ACTIONS(3976), + [anon_sym_select] = ACTIONS(3976), + [anon_sym_as] = ACTIONS(3976), + [anon_sym_is] = ACTIONS(3976), + [anon_sym_DASH_GT] = ACTIONS(3978), + [anon_sym_with] = ACTIONS(3976), + [aux_sym_preproc_if_token3] = ACTIONS(3978), + [aux_sym_preproc_else_token1] = ACTIONS(3978), + [aux_sym_preproc_elif_token1] = ACTIONS(3978), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -413078,6 +412770,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2332] = { + [sym_type_argument_list] = STATE(2171), [sym_preproc_region] = STATE(2332), [sym_preproc_endregion] = STATE(2332), [sym_preproc_line] = STATE(2332), @@ -413087,79 +412780,78 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2332), [sym_preproc_define] = STATE(2332), [sym_preproc_undef] = STATE(2332), - [sym__identifier_token] = ACTIONS(3685), - [anon_sym_alias] = ACTIONS(3685), - [anon_sym_global] = ACTIONS(3685), - [anon_sym_EQ] = ACTIONS(3689), - [anon_sym_LBRACK] = ACTIONS(3691), - [anon_sym_LPAREN] = ACTIONS(3691), - [anon_sym_LBRACE] = ACTIONS(3687), - [anon_sym_file] = ACTIONS(3685), - [anon_sym_LT] = ACTIONS(3694), - [anon_sym_GT] = ACTIONS(3694), - [anon_sym_where] = ACTIONS(3685), - [anon_sym_QMARK] = ACTIONS(3694), - [anon_sym_notnull] = ACTIONS(3685), - [anon_sym_unmanaged] = ACTIONS(3685), - [anon_sym_BANG] = ACTIONS(3694), - [anon_sym_PLUS_PLUS] = ACTIONS(3691), - [anon_sym_DASH_DASH] = ACTIONS(3691), - [anon_sym_PLUS] = ACTIONS(3694), - [anon_sym_DASH] = ACTIONS(3694), - [anon_sym_STAR] = ACTIONS(3694), - [anon_sym_SLASH] = ACTIONS(3694), - [anon_sym_PERCENT] = ACTIONS(3694), - [anon_sym_CARET] = ACTIONS(3694), - [anon_sym_PIPE] = ACTIONS(3694), - [anon_sym_AMP] = ACTIONS(3694), - [anon_sym_LT_LT] = ACTIONS(3694), - [anon_sym_GT_GT] = ACTIONS(3694), - [anon_sym_GT_GT_GT] = ACTIONS(3694), - [anon_sym_EQ_EQ] = ACTIONS(3691), - [anon_sym_BANG_EQ] = ACTIONS(3691), - [anon_sym_GT_EQ] = ACTIONS(3691), - [anon_sym_LT_EQ] = ACTIONS(3691), - [anon_sym_DOT] = ACTIONS(3694), - [anon_sym_scoped] = ACTIONS(3685), - [anon_sym_var] = ACTIONS(3685), - [anon_sym_yield] = ACTIONS(3685), - [anon_sym_switch] = ACTIONS(3694), - [anon_sym_when] = ACTIONS(3685), - [sym_discard] = ACTIONS(3685), - [anon_sym_DOT_DOT] = ACTIONS(3691), - [anon_sym_and] = ACTIONS(3694), - [anon_sym_or] = ACTIONS(3694), - [anon_sym_PLUS_EQ] = ACTIONS(3697), - [anon_sym_DASH_EQ] = ACTIONS(3697), - [anon_sym_STAR_EQ] = ACTIONS(3697), - [anon_sym_SLASH_EQ] = ACTIONS(3697), - [anon_sym_PERCENT_EQ] = ACTIONS(3697), - [anon_sym_AMP_EQ] = ACTIONS(3697), - [anon_sym_CARET_EQ] = ACTIONS(3697), - [anon_sym_PIPE_EQ] = ACTIONS(3697), - [anon_sym_LT_LT_EQ] = ACTIONS(3697), - [anon_sym_GT_GT_EQ] = ACTIONS(3697), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3697), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3697), - [anon_sym_AMP_AMP] = ACTIONS(3691), - [anon_sym_PIPE_PIPE] = ACTIONS(3691), - [anon_sym_QMARK_QMARK] = ACTIONS(3694), - [anon_sym_from] = ACTIONS(3685), - [anon_sym_into] = ACTIONS(3694), - [anon_sym_join] = ACTIONS(3685), - [anon_sym_on] = ACTIONS(3694), - [anon_sym_equals] = ACTIONS(3685), - [anon_sym_let] = ACTIONS(3685), - [anon_sym_orderby] = ACTIONS(3685), - [anon_sym_ascending] = ACTIONS(3685), - [anon_sym_descending] = ACTIONS(3685), - [anon_sym_group] = ACTIONS(3685), - [anon_sym_by] = ACTIONS(3685), - [anon_sym_select] = ACTIONS(3685), - [anon_sym_as] = ACTIONS(3694), - [anon_sym_is] = ACTIONS(3694), - [anon_sym_DASH_GT] = ACTIONS(3691), - [anon_sym_with] = ACTIONS(3694), + [sym__identifier_token] = ACTIONS(3638), + [anon_sym_alias] = ACTIONS(3638), + [anon_sym_global] = ACTIONS(3638), + [anon_sym_EQ] = ACTIONS(3638), + [anon_sym_LBRACK] = ACTIONS(3640), + [anon_sym_COLON] = ACTIONS(3980), + [anon_sym_LPAREN] = ACTIONS(3640), + [anon_sym_file] = ACTIONS(3638), + [anon_sym_LT] = ACTIONS(3648), + [anon_sym_GT] = ACTIONS(3638), + [anon_sym_where] = ACTIONS(3638), + [anon_sym_QMARK] = ACTIONS(3638), + [anon_sym_notnull] = ACTIONS(3638), + [anon_sym_unmanaged] = ACTIONS(3638), + [anon_sym_BANG] = ACTIONS(3638), + [anon_sym_PLUS_PLUS] = ACTIONS(3640), + [anon_sym_DASH_DASH] = ACTIONS(3640), + [anon_sym_PLUS] = ACTIONS(3638), + [anon_sym_DASH] = ACTIONS(3638), + [anon_sym_STAR] = ACTIONS(3638), + [anon_sym_SLASH] = ACTIONS(3638), + [anon_sym_PERCENT] = ACTIONS(3638), + [anon_sym_CARET] = ACTIONS(3638), + [anon_sym_PIPE] = ACTIONS(3638), + [anon_sym_AMP] = ACTIONS(3638), + [anon_sym_LT_LT] = ACTIONS(3638), + [anon_sym_GT_GT] = ACTIONS(3638), + [anon_sym_GT_GT_GT] = ACTIONS(3638), + [anon_sym_EQ_EQ] = ACTIONS(3640), + [anon_sym_BANG_EQ] = ACTIONS(3640), + [anon_sym_GT_EQ] = ACTIONS(3640), + [anon_sym_LT_EQ] = ACTIONS(3640), + [anon_sym_DOT] = ACTIONS(3638), + [anon_sym_scoped] = ACTIONS(3638), + [anon_sym_EQ_GT] = ACTIONS(3651), + [anon_sym_COLON_COLON] = ACTIONS(3653), + [anon_sym_var] = ACTIONS(3638), + [anon_sym_yield] = ACTIONS(3638), + [anon_sym_switch] = ACTIONS(3638), + [anon_sym_when] = ACTIONS(3638), + [anon_sym_DOT_DOT] = ACTIONS(3640), + [anon_sym_PLUS_EQ] = ACTIONS(3640), + [anon_sym_DASH_EQ] = ACTIONS(3640), + [anon_sym_STAR_EQ] = ACTIONS(3640), + [anon_sym_SLASH_EQ] = ACTIONS(3640), + [anon_sym_PERCENT_EQ] = ACTIONS(3640), + [anon_sym_AMP_EQ] = ACTIONS(3640), + [anon_sym_CARET_EQ] = ACTIONS(3640), + [anon_sym_PIPE_EQ] = ACTIONS(3640), + [anon_sym_LT_LT_EQ] = ACTIONS(3640), + [anon_sym_GT_GT_EQ] = ACTIONS(3640), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3640), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3640), + [anon_sym_AMP_AMP] = ACTIONS(3640), + [anon_sym_PIPE_PIPE] = ACTIONS(3640), + [anon_sym_QMARK_QMARK] = ACTIONS(3638), + [anon_sym_from] = ACTIONS(3638), + [anon_sym_into] = ACTIONS(3638), + [anon_sym_join] = ACTIONS(3638), + [anon_sym_on] = ACTIONS(3638), + [anon_sym_equals] = ACTIONS(3638), + [anon_sym_let] = ACTIONS(3638), + [anon_sym_orderby] = ACTIONS(3638), + [anon_sym_ascending] = ACTIONS(3638), + [anon_sym_descending] = ACTIONS(3638), + [anon_sym_group] = ACTIONS(3638), + [anon_sym_by] = ACTIONS(3638), + [anon_sym_select] = ACTIONS(3638), + [anon_sym_as] = ACTIONS(3638), + [anon_sym_is] = ACTIONS(3638), + [anon_sym_DASH_GT] = ACTIONS(3640), + [anon_sym_with] = ACTIONS(3638), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -413172,7 +412864,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2333] = { - [sym_type_argument_list] = STATE(2183), [sym_preproc_region] = STATE(2333), [sym_preproc_endregion] = STATE(2333), [sym_preproc_line] = STATE(2333), @@ -413182,78 +412873,79 @@ 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(3660), - [anon_sym_alias] = ACTIONS(3660), - [anon_sym_global] = ACTIONS(3660), - [anon_sym_EQ] = ACTIONS(3660), - [anon_sym_LBRACK] = ACTIONS(3662), - [anon_sym_COLON] = ACTIONS(3992), - [anon_sym_LPAREN] = ACTIONS(3662), - [anon_sym_file] = ACTIONS(3660), - [anon_sym_LT] = ACTIONS(3664), - [anon_sym_GT] = ACTIONS(3660), - [anon_sym_where] = ACTIONS(3660), - [anon_sym_QMARK] = ACTIONS(3660), - [anon_sym_notnull] = ACTIONS(3660), - [anon_sym_unmanaged] = ACTIONS(3660), - [anon_sym_BANG] = ACTIONS(3660), - [anon_sym_PLUS_PLUS] = ACTIONS(3662), - [anon_sym_DASH_DASH] = ACTIONS(3662), - [anon_sym_PLUS] = ACTIONS(3660), - [anon_sym_DASH] = ACTIONS(3660), - [anon_sym_STAR] = ACTIONS(3660), - [anon_sym_SLASH] = ACTIONS(3660), - [anon_sym_PERCENT] = ACTIONS(3660), - [anon_sym_CARET] = ACTIONS(3660), - [anon_sym_PIPE] = ACTIONS(3660), - [anon_sym_AMP] = ACTIONS(3660), - [anon_sym_LT_LT] = ACTIONS(3660), - [anon_sym_GT_GT] = ACTIONS(3660), - [anon_sym_GT_GT_GT] = ACTIONS(3660), - [anon_sym_EQ_EQ] = ACTIONS(3662), - [anon_sym_BANG_EQ] = ACTIONS(3662), - [anon_sym_GT_EQ] = ACTIONS(3662), - [anon_sym_LT_EQ] = ACTIONS(3662), - [anon_sym_DOT] = ACTIONS(3660), - [anon_sym_scoped] = ACTIONS(3660), - [anon_sym_EQ_GT] = ACTIONS(3667), - [anon_sym_COLON_COLON] = ACTIONS(3669), - [anon_sym_var] = ACTIONS(3660), - [anon_sym_yield] = ACTIONS(3660), - [anon_sym_switch] = ACTIONS(3660), - [anon_sym_when] = ACTIONS(3660), - [anon_sym_DOT_DOT] = ACTIONS(3662), - [anon_sym_PLUS_EQ] = ACTIONS(3662), - [anon_sym_DASH_EQ] = ACTIONS(3662), - [anon_sym_STAR_EQ] = ACTIONS(3662), - [anon_sym_SLASH_EQ] = ACTIONS(3662), - [anon_sym_PERCENT_EQ] = ACTIONS(3662), - [anon_sym_AMP_EQ] = ACTIONS(3662), - [anon_sym_CARET_EQ] = ACTIONS(3662), - [anon_sym_PIPE_EQ] = ACTIONS(3662), - [anon_sym_LT_LT_EQ] = ACTIONS(3662), - [anon_sym_GT_GT_EQ] = ACTIONS(3662), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3662), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3662), - [anon_sym_AMP_AMP] = ACTIONS(3662), - [anon_sym_PIPE_PIPE] = ACTIONS(3662), - [anon_sym_QMARK_QMARK] = ACTIONS(3660), - [anon_sym_from] = ACTIONS(3660), - [anon_sym_into] = ACTIONS(3660), - [anon_sym_join] = ACTIONS(3660), - [anon_sym_on] = ACTIONS(3660), - [anon_sym_equals] = ACTIONS(3660), - [anon_sym_let] = ACTIONS(3660), - [anon_sym_orderby] = ACTIONS(3660), - [anon_sym_ascending] = ACTIONS(3660), - [anon_sym_descending] = ACTIONS(3660), - [anon_sym_group] = ACTIONS(3660), - [anon_sym_by] = ACTIONS(3660), - [anon_sym_select] = ACTIONS(3660), - [anon_sym_as] = ACTIONS(3660), - [anon_sym_is] = ACTIONS(3660), - [anon_sym_DASH_GT] = ACTIONS(3662), - [anon_sym_with] = ACTIONS(3660), + [sym__identifier_token] = ACTIONS(3431), + [anon_sym_alias] = ACTIONS(3431), + [anon_sym_global] = ACTIONS(3431), + [anon_sym_using] = ACTIONS(3982), + [anon_sym_EQ] = ACTIONS(3431), + [anon_sym_LBRACK] = ACTIONS(3429), + [anon_sym_COLON] = ACTIONS(3431), + [anon_sym_LPAREN] = ACTIONS(3429), + [anon_sym_file] = ACTIONS(3431), + [anon_sym_LT] = ACTIONS(3431), + [anon_sym_GT] = ACTIONS(3431), + [anon_sym_where] = ACTIONS(3431), + [anon_sym_QMARK] = ACTIONS(3431), + [anon_sym_notnull] = ACTIONS(3431), + [anon_sym_unmanaged] = ACTIONS(3431), + [anon_sym_BANG] = ACTIONS(3431), + [anon_sym_PLUS_PLUS] = ACTIONS(3429), + [anon_sym_DASH_DASH] = ACTIONS(3429), + [anon_sym_PLUS] = ACTIONS(3431), + [anon_sym_DASH] = ACTIONS(3431), + [anon_sym_STAR] = ACTIONS(3431), + [anon_sym_SLASH] = ACTIONS(3431), + [anon_sym_PERCENT] = ACTIONS(3431), + [anon_sym_CARET] = ACTIONS(3431), + [anon_sym_PIPE] = ACTIONS(3431), + [anon_sym_AMP] = ACTIONS(3431), + [anon_sym_LT_LT] = ACTIONS(3431), + [anon_sym_GT_GT] = ACTIONS(3431), + [anon_sym_GT_GT_GT] = ACTIONS(3431), + [anon_sym_EQ_EQ] = ACTIONS(3429), + [anon_sym_BANG_EQ] = ACTIONS(3429), + [anon_sym_GT_EQ] = ACTIONS(3429), + [anon_sym_LT_EQ] = ACTIONS(3429), + [anon_sym_DOT] = ACTIONS(3431), + [anon_sym_scoped] = ACTIONS(3431), + [anon_sym_EQ_GT] = ACTIONS(3429), + [anon_sym_COLON_COLON] = ACTIONS(3429), + [anon_sym_var] = ACTIONS(3431), + [anon_sym_yield] = ACTIONS(3431), + [anon_sym_switch] = ACTIONS(3431), + [anon_sym_when] = ACTIONS(3431), + [anon_sym_DOT_DOT] = ACTIONS(3429), + [anon_sym_PLUS_EQ] = ACTIONS(3429), + [anon_sym_DASH_EQ] = ACTIONS(3429), + [anon_sym_STAR_EQ] = ACTIONS(3429), + [anon_sym_SLASH_EQ] = ACTIONS(3429), + [anon_sym_PERCENT_EQ] = ACTIONS(3429), + [anon_sym_AMP_EQ] = ACTIONS(3429), + [anon_sym_CARET_EQ] = ACTIONS(3429), + [anon_sym_PIPE_EQ] = ACTIONS(3429), + [anon_sym_LT_LT_EQ] = ACTIONS(3429), + [anon_sym_GT_GT_EQ] = ACTIONS(3429), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3429), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3429), + [anon_sym_AMP_AMP] = ACTIONS(3429), + [anon_sym_PIPE_PIPE] = ACTIONS(3429), + [anon_sym_QMARK_QMARK] = 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), + [anon_sym_as] = ACTIONS(3431), + [anon_sym_is] = ACTIONS(3431), + [anon_sym_DASH_GT] = ACTIONS(3429), + [anon_sym_with] = ACTIONS(3431), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -413266,10 +412958,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2334] = { - [sym__variable_designation] = STATE(3434), - [sym_parenthesized_variable_designation] = STATE(3463), - [sym_identifier] = STATE(3479), - [sym__reserved_identifier] = STATE(3177), [sym_preproc_region] = STATE(2334), [sym_preproc_endregion] = STATE(2334), [sym_preproc_line] = STATE(2334), @@ -413279,75 +412967,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(3875), - [anon_sym_alias] = ACTIONS(3877), - [anon_sym_SEMI] = ACTIONS(3957), - [anon_sym_global] = ACTIONS(3877), - [anon_sym_LBRACK] = ACTIONS(3957), - [anon_sym_COLON] = ACTIONS(3957), - [anon_sym_COMMA] = ACTIONS(3957), - [anon_sym_RBRACK] = ACTIONS(3957), - [anon_sym_LPAREN] = ACTIONS(3957), - [anon_sym_RPAREN] = ACTIONS(3957), - [anon_sym_RBRACE] = ACTIONS(3957), - [anon_sym_file] = ACTIONS(3877), - [anon_sym_LT] = ACTIONS(3959), - [anon_sym_GT] = ACTIONS(3959), - [anon_sym_where] = ACTIONS(3877), - [anon_sym_QMARK] = ACTIONS(3959), - [anon_sym_notnull] = ACTIONS(3877), - [anon_sym_unmanaged] = ACTIONS(3877), - [anon_sym_BANG] = ACTIONS(3959), - [anon_sym_PLUS_PLUS] = ACTIONS(3957), - [anon_sym_DASH_DASH] = ACTIONS(3957), - [anon_sym_PLUS] = ACTIONS(3959), - [anon_sym_DASH] = ACTIONS(3959), - [anon_sym_STAR] = ACTIONS(3957), - [anon_sym_SLASH] = ACTIONS(3959), - [anon_sym_PERCENT] = ACTIONS(3957), - [anon_sym_CARET] = ACTIONS(3957), - [anon_sym_PIPE] = ACTIONS(3959), - [anon_sym_AMP] = ACTIONS(3959), - [anon_sym_LT_LT] = ACTIONS(3957), - [anon_sym_GT_GT] = ACTIONS(3959), - [anon_sym_GT_GT_GT] = ACTIONS(3957), - [anon_sym_EQ_EQ] = ACTIONS(3957), - [anon_sym_BANG_EQ] = ACTIONS(3957), - [anon_sym_GT_EQ] = ACTIONS(3957), - [anon_sym_LT_EQ] = ACTIONS(3957), - [anon_sym_DOT] = ACTIONS(3959), - [anon_sym_scoped] = ACTIONS(3877), - [anon_sym_EQ_GT] = ACTIONS(3957), - [anon_sym_var] = ACTIONS(3877), - [anon_sym_yield] = ACTIONS(3877), - [anon_sym_switch] = ACTIONS(3959), - [anon_sym_when] = ACTIONS(3877), - [sym_discard] = ACTIONS(3897), - [anon_sym_DOT_DOT] = ACTIONS(3957), - [anon_sym_and] = ACTIONS(3959), - [anon_sym_or] = ACTIONS(3959), - [anon_sym_AMP_AMP] = ACTIONS(3957), - [anon_sym_PIPE_PIPE] = ACTIONS(3957), - [anon_sym_QMARK_QMARK] = ACTIONS(3957), - [anon_sym_from] = ACTIONS(3877), - [anon_sym_into] = ACTIONS(3877), - [anon_sym_join] = ACTIONS(3877), - [anon_sym_on] = ACTIONS(3877), - [anon_sym_equals] = ACTIONS(3877), - [anon_sym_let] = ACTIONS(3877), - [anon_sym_orderby] = ACTIONS(3877), - [anon_sym_ascending] = ACTIONS(3877), - [anon_sym_descending] = ACTIONS(3877), - [anon_sym_group] = ACTIONS(3877), - [anon_sym_by] = ACTIONS(3877), - [anon_sym_select] = ACTIONS(3877), - [anon_sym_as] = ACTIONS(3959), - [anon_sym_is] = ACTIONS(3959), - [anon_sym_DASH_GT] = ACTIONS(3957), - [anon_sym_with] = ACTIONS(3959), - [aux_sym_preproc_if_token3] = ACTIONS(3957), - [aux_sym_preproc_else_token1] = ACTIONS(3957), - [aux_sym_preproc_elif_token1] = ACTIONS(3957), + [sym__identifier_token] = ACTIONS(3984), + [anon_sym_alias] = ACTIONS(3984), + [anon_sym_SEMI] = ACTIONS(3986), + [anon_sym_global] = ACTIONS(3984), + [anon_sym_LBRACK] = ACTIONS(3986), + [anon_sym_COLON] = ACTIONS(3986), + [anon_sym_COMMA] = ACTIONS(3986), + [anon_sym_RBRACK] = ACTIONS(3986), + [anon_sym_LPAREN] = ACTIONS(3986), + [anon_sym_RPAREN] = ACTIONS(3986), + [anon_sym_LBRACE] = ACTIONS(3986), + [anon_sym_RBRACE] = ACTIONS(3986), + [anon_sym_file] = ACTIONS(3984), + [anon_sym_LT] = ACTIONS(3984), + [anon_sym_GT] = ACTIONS(3984), + [anon_sym_in] = ACTIONS(3984), + [anon_sym_where] = ACTIONS(3984), + [anon_sym_QMARK] = ACTIONS(3984), + [anon_sym_notnull] = ACTIONS(3984), + [anon_sym_unmanaged] = ACTIONS(3984), + [anon_sym_operator] = ACTIONS(3984), + [anon_sym_BANG] = ACTIONS(3984), + [anon_sym_PLUS_PLUS] = ACTIONS(3986), + [anon_sym_DASH_DASH] = ACTIONS(3986), + [anon_sym_PLUS] = ACTIONS(3984), + [anon_sym_DASH] = ACTIONS(3984), + [anon_sym_STAR] = ACTIONS(3986), + [anon_sym_SLASH] = ACTIONS(3984), + [anon_sym_PERCENT] = ACTIONS(3986), + [anon_sym_CARET] = ACTIONS(3986), + [anon_sym_PIPE] = ACTIONS(3984), + [anon_sym_AMP] = ACTIONS(3984), + [anon_sym_LT_LT] = ACTIONS(3986), + [anon_sym_GT_GT] = ACTIONS(3984), + [anon_sym_GT_GT_GT] = ACTIONS(3986), + [anon_sym_EQ_EQ] = ACTIONS(3986), + [anon_sym_BANG_EQ] = ACTIONS(3986), + [anon_sym_GT_EQ] = ACTIONS(3986), + [anon_sym_LT_EQ] = ACTIONS(3986), + [anon_sym_this] = ACTIONS(3984), + [anon_sym_DOT] = ACTIONS(3984), + [anon_sym_scoped] = ACTIONS(3984), + [anon_sym_EQ_GT] = ACTIONS(3986), + [anon_sym_var] = ACTIONS(3984), + [anon_sym_yield] = ACTIONS(3984), + [anon_sym_switch] = ACTIONS(3984), + [anon_sym_when] = ACTIONS(3984), + [sym_discard] = ACTIONS(3984), + [anon_sym_DOT_DOT] = ACTIONS(3986), + [anon_sym_and] = ACTIONS(3984), + [anon_sym_or] = ACTIONS(3984), + [anon_sym_AMP_AMP] = ACTIONS(3986), + [anon_sym_PIPE_PIPE] = ACTIONS(3986), + [anon_sym_QMARK_QMARK] = ACTIONS(3986), + [anon_sym_from] = ACTIONS(3984), + [anon_sym_into] = ACTIONS(3984), + [anon_sym_join] = ACTIONS(3984), + [anon_sym_on] = ACTIONS(3984), + [anon_sym_equals] = ACTIONS(3984), + [anon_sym_let] = ACTIONS(3984), + [anon_sym_orderby] = ACTIONS(3984), + [anon_sym_ascending] = ACTIONS(3984), + [anon_sym_descending] = ACTIONS(3984), + [anon_sym_group] = ACTIONS(3984), + [anon_sym_by] = ACTIONS(3984), + [anon_sym_select] = ACTIONS(3984), + [anon_sym_as] = ACTIONS(3984), + [anon_sym_is] = ACTIONS(3984), + [anon_sym_DASH_GT] = ACTIONS(3986), + [anon_sym_with] = ACTIONS(3984), + [aux_sym_preproc_if_token3] = ACTIONS(3986), + [aux_sym_preproc_else_token1] = ACTIONS(3986), + [aux_sym_preproc_elif_token1] = ACTIONS(3986), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -413369,79 +413061,79 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2335), [sym_preproc_define] = STATE(2335), [sym_preproc_undef] = STATE(2335), - [sym__identifier_token] = ACTIONS(3699), - [anon_sym_alias] = ACTIONS(3699), - [anon_sym_global] = ACTIONS(3699), - [anon_sym_EQ] = ACTIONS(3704), - [anon_sym_LBRACK] = ACTIONS(3706), - [anon_sym_LPAREN] = ACTIONS(3706), - [anon_sym_LBRACE] = ACTIONS(3710), - [anon_sym_file] = ACTIONS(3699), - [anon_sym_LT] = ACTIONS(3712), - [anon_sym_GT] = ACTIONS(3712), - [anon_sym_where] = ACTIONS(3699), - [anon_sym_QMARK] = ACTIONS(3712), - [anon_sym_notnull] = ACTIONS(3699), - [anon_sym_unmanaged] = ACTIONS(3699), - [anon_sym_BANG] = ACTIONS(3712), - [anon_sym_PLUS_PLUS] = ACTIONS(3706), - [anon_sym_DASH_DASH] = ACTIONS(3706), - [anon_sym_PLUS] = ACTIONS(3712), - [anon_sym_DASH] = ACTIONS(3712), - [anon_sym_STAR] = ACTIONS(3712), - [anon_sym_SLASH] = ACTIONS(3712), - [anon_sym_PERCENT] = ACTIONS(3712), - [anon_sym_CARET] = ACTIONS(3712), - [anon_sym_PIPE] = ACTIONS(3712), - [anon_sym_AMP] = ACTIONS(3712), - [anon_sym_LT_LT] = ACTIONS(3712), - [anon_sym_GT_GT] = ACTIONS(3712), - [anon_sym_GT_GT_GT] = ACTIONS(3712), - [anon_sym_EQ_EQ] = ACTIONS(3706), - [anon_sym_BANG_EQ] = ACTIONS(3706), - [anon_sym_GT_EQ] = ACTIONS(3706), - [anon_sym_LT_EQ] = ACTIONS(3706), - [anon_sym_DOT] = ACTIONS(3712), - [anon_sym_scoped] = ACTIONS(3699), - [anon_sym_var] = ACTIONS(3699), - [anon_sym_yield] = ACTIONS(3699), - [anon_sym_switch] = ACTIONS(3712), - [anon_sym_when] = ACTIONS(3699), - [sym_discard] = ACTIONS(3699), - [anon_sym_DOT_DOT] = ACTIONS(3706), - [anon_sym_and] = ACTIONS(3716), - [anon_sym_or] = ACTIONS(3716), - [anon_sym_PLUS_EQ] = ACTIONS(3719), - [anon_sym_DASH_EQ] = ACTIONS(3719), - [anon_sym_STAR_EQ] = ACTIONS(3719), - [anon_sym_SLASH_EQ] = ACTIONS(3719), - [anon_sym_PERCENT_EQ] = ACTIONS(3719), - [anon_sym_AMP_EQ] = ACTIONS(3719), - [anon_sym_CARET_EQ] = ACTIONS(3719), - [anon_sym_PIPE_EQ] = ACTIONS(3719), - [anon_sym_LT_LT_EQ] = ACTIONS(3719), - [anon_sym_GT_GT_EQ] = ACTIONS(3719), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3719), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3719), - [anon_sym_AMP_AMP] = ACTIONS(3706), - [anon_sym_PIPE_PIPE] = ACTIONS(3706), - [anon_sym_QMARK_QMARK] = ACTIONS(3712), - [anon_sym_from] = ACTIONS(3699), - [anon_sym_into] = ACTIONS(3716), - [anon_sym_join] = ACTIONS(3699), - [anon_sym_on] = ACTIONS(3699), - [anon_sym_equals] = ACTIONS(3716), - [anon_sym_let] = ACTIONS(3699), - [anon_sym_orderby] = ACTIONS(3699), - [anon_sym_ascending] = ACTIONS(3699), - [anon_sym_descending] = ACTIONS(3699), - [anon_sym_group] = ACTIONS(3699), - [anon_sym_by] = ACTIONS(3699), - [anon_sym_select] = ACTIONS(3699), - [anon_sym_as] = ACTIONS(3712), - [anon_sym_is] = ACTIONS(3712), - [anon_sym_DASH_GT] = ACTIONS(3706), - [anon_sym_with] = ACTIONS(3712), + [sym__identifier_token] = ACTIONS(3669), + [anon_sym_alias] = ACTIONS(3669), + [anon_sym_global] = ACTIONS(3669), + [anon_sym_EQ] = ACTIONS(3673), + [anon_sym_LBRACK] = ACTIONS(3675), + [anon_sym_LPAREN] = ACTIONS(3675), + [anon_sym_LBRACE] = ACTIONS(3678), + [anon_sym_file] = ACTIONS(3669), + [anon_sym_LT] = ACTIONS(3680), + [anon_sym_GT] = ACTIONS(3680), + [anon_sym_where] = ACTIONS(3669), + [anon_sym_QMARK] = ACTIONS(3680), + [anon_sym_notnull] = ACTIONS(3669), + [anon_sym_unmanaged] = ACTIONS(3669), + [anon_sym_BANG] = ACTIONS(3680), + [anon_sym_PLUS_PLUS] = ACTIONS(3675), + [anon_sym_DASH_DASH] = ACTIONS(3675), + [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(3675), + [anon_sym_BANG_EQ] = ACTIONS(3675), + [anon_sym_GT_EQ] = ACTIONS(3675), + [anon_sym_LT_EQ] = ACTIONS(3675), + [anon_sym_DOT] = ACTIONS(3680), + [anon_sym_scoped] = ACTIONS(3669), + [anon_sym_var] = ACTIONS(3669), + [anon_sym_yield] = ACTIONS(3669), + [anon_sym_switch] = ACTIONS(3680), + [anon_sym_when] = ACTIONS(3669), + [sym_discard] = ACTIONS(3669), + [anon_sym_DOT_DOT] = ACTIONS(3675), + [anon_sym_and] = ACTIONS(3680), + [anon_sym_or] = ACTIONS(3680), + [anon_sym_PLUS_EQ] = ACTIONS(3671), + [anon_sym_DASH_EQ] = ACTIONS(3671), + [anon_sym_STAR_EQ] = ACTIONS(3671), + [anon_sym_SLASH_EQ] = ACTIONS(3671), + [anon_sym_PERCENT_EQ] = ACTIONS(3671), + [anon_sym_AMP_EQ] = ACTIONS(3671), + [anon_sym_CARET_EQ] = ACTIONS(3671), + [anon_sym_PIPE_EQ] = ACTIONS(3671), + [anon_sym_LT_LT_EQ] = ACTIONS(3671), + [anon_sym_GT_GT_EQ] = ACTIONS(3671), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3671), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3671), + [anon_sym_AMP_AMP] = ACTIONS(3675), + [anon_sym_PIPE_PIPE] = ACTIONS(3675), + [anon_sym_QMARK_QMARK] = ACTIONS(3680), + [anon_sym_from] = ACTIONS(3669), + [anon_sym_into] = ACTIONS(3680), + [anon_sym_join] = ACTIONS(3669), + [anon_sym_on] = ACTIONS(3669), + [anon_sym_equals] = ACTIONS(3669), + [anon_sym_let] = ACTIONS(3669), + [anon_sym_orderby] = ACTIONS(3669), + [anon_sym_ascending] = ACTIONS(3669), + [anon_sym_descending] = ACTIONS(3669), + [anon_sym_group] = ACTIONS(3669), + [anon_sym_by] = ACTIONS(3680), + [anon_sym_select] = ACTIONS(3669), + [anon_sym_as] = ACTIONS(3680), + [anon_sym_is] = ACTIONS(3680), + [anon_sym_DASH_GT] = ACTIONS(3675), + [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), @@ -413463,79 +413155,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(3994), - [anon_sym_alias] = ACTIONS(3994), - [anon_sym_SEMI] = ACTIONS(3996), - [anon_sym_global] = ACTIONS(3994), - [anon_sym_LBRACK] = ACTIONS(3996), - [anon_sym_COLON] = ACTIONS(3996), - [anon_sym_COMMA] = ACTIONS(3996), - [anon_sym_RBRACK] = ACTIONS(3996), - [anon_sym_LPAREN] = ACTIONS(3996), - [anon_sym_RPAREN] = ACTIONS(3996), - [anon_sym_LBRACE] = ACTIONS(3996), - [anon_sym_RBRACE] = ACTIONS(3996), - [anon_sym_file] = ACTIONS(3994), - [anon_sym_LT] = ACTIONS(3994), - [anon_sym_GT] = ACTIONS(3994), - [anon_sym_in] = ACTIONS(3994), - [anon_sym_where] = ACTIONS(3994), - [anon_sym_QMARK] = ACTIONS(3994), - [anon_sym_notnull] = ACTIONS(3994), - [anon_sym_unmanaged] = ACTIONS(3994), - [anon_sym_operator] = ACTIONS(3994), - [anon_sym_BANG] = ACTIONS(3994), - [anon_sym_PLUS_PLUS] = ACTIONS(3996), - [anon_sym_DASH_DASH] = ACTIONS(3996), - [anon_sym_PLUS] = ACTIONS(3994), - [anon_sym_DASH] = ACTIONS(3994), - [anon_sym_STAR] = ACTIONS(3996), - [anon_sym_SLASH] = ACTIONS(3994), - [anon_sym_PERCENT] = ACTIONS(3996), - [anon_sym_CARET] = ACTIONS(3996), - [anon_sym_PIPE] = ACTIONS(3994), - [anon_sym_AMP] = ACTIONS(3994), - [anon_sym_LT_LT] = ACTIONS(3996), - [anon_sym_GT_GT] = ACTIONS(3994), - [anon_sym_GT_GT_GT] = ACTIONS(3996), - [anon_sym_EQ_EQ] = ACTIONS(3996), - [anon_sym_BANG_EQ] = ACTIONS(3996), - [anon_sym_GT_EQ] = ACTIONS(3996), - [anon_sym_LT_EQ] = ACTIONS(3996), - [anon_sym_this] = ACTIONS(3994), - [anon_sym_DOT] = ACTIONS(3994), - [anon_sym_scoped] = ACTIONS(3994), - [anon_sym_EQ_GT] = ACTIONS(3996), - [anon_sym_var] = ACTIONS(3994), - [anon_sym_yield] = ACTIONS(3994), - [anon_sym_switch] = ACTIONS(3994), - [anon_sym_when] = ACTIONS(3994), - [sym_discard] = ACTIONS(3994), - [anon_sym_DOT_DOT] = ACTIONS(3996), - [anon_sym_and] = ACTIONS(3994), - [anon_sym_or] = ACTIONS(3994), - [anon_sym_AMP_AMP] = ACTIONS(3996), - [anon_sym_PIPE_PIPE] = ACTIONS(3996), - [anon_sym_QMARK_QMARK] = ACTIONS(3996), - [anon_sym_from] = ACTIONS(3994), - [anon_sym_into] = ACTIONS(3994), - [anon_sym_join] = ACTIONS(3994), - [anon_sym_on] = ACTIONS(3994), - [anon_sym_equals] = ACTIONS(3994), - [anon_sym_let] = ACTIONS(3994), - [anon_sym_orderby] = ACTIONS(3994), - [anon_sym_ascending] = ACTIONS(3994), - [anon_sym_descending] = ACTIONS(3994), - [anon_sym_group] = ACTIONS(3994), - [anon_sym_by] = ACTIONS(3994), - [anon_sym_select] = ACTIONS(3994), - [anon_sym_as] = ACTIONS(3994), - [anon_sym_is] = ACTIONS(3994), - [anon_sym_DASH_GT] = ACTIONS(3996), - [anon_sym_with] = ACTIONS(3994), - [aux_sym_preproc_if_token3] = ACTIONS(3996), - [aux_sym_preproc_else_token1] = ACTIONS(3996), - [aux_sym_preproc_elif_token1] = ACTIONS(3996), + [sym__identifier_token] = ACTIONS(3691), + [anon_sym_alias] = ACTIONS(3691), + [anon_sym_global] = ACTIONS(3691), + [anon_sym_EQ] = ACTIONS(3696), + [anon_sym_LBRACK] = ACTIONS(3698), + [anon_sym_LPAREN] = ACTIONS(3698), + [anon_sym_LBRACE] = ACTIONS(3702), + [anon_sym_file] = ACTIONS(3691), + [anon_sym_LT] = ACTIONS(3704), + [anon_sym_GT] = ACTIONS(3704), + [anon_sym_where] = ACTIONS(3708), + [anon_sym_QMARK] = ACTIONS(3704), + [anon_sym_notnull] = ACTIONS(3691), + [anon_sym_unmanaged] = ACTIONS(3691), + [anon_sym_BANG] = ACTIONS(3704), + [anon_sym_PLUS_PLUS] = ACTIONS(3698), + [anon_sym_DASH_DASH] = ACTIONS(3698), + [anon_sym_PLUS] = ACTIONS(3704), + [anon_sym_DASH] = ACTIONS(3704), + [anon_sym_STAR] = ACTIONS(3704), + [anon_sym_SLASH] = ACTIONS(3704), + [anon_sym_PERCENT] = ACTIONS(3704), + [anon_sym_CARET] = ACTIONS(3704), + [anon_sym_PIPE] = ACTIONS(3704), + [anon_sym_AMP] = ACTIONS(3704), + [anon_sym_LT_LT] = ACTIONS(3704), + [anon_sym_GT_GT] = ACTIONS(3704), + [anon_sym_GT_GT_GT] = ACTIONS(3704), + [anon_sym_EQ_EQ] = ACTIONS(3698), + [anon_sym_BANG_EQ] = ACTIONS(3698), + [anon_sym_GT_EQ] = ACTIONS(3698), + [anon_sym_LT_EQ] = ACTIONS(3698), + [anon_sym_DOT] = ACTIONS(3704), + [anon_sym_scoped] = ACTIONS(3691), + [anon_sym_var] = ACTIONS(3691), + [anon_sym_yield] = ACTIONS(3691), + [anon_sym_switch] = ACTIONS(3704), + [anon_sym_when] = ACTIONS(3691), + [sym_discard] = ACTIONS(3691), + [anon_sym_DOT_DOT] = ACTIONS(3698), + [anon_sym_and] = ACTIONS(3708), + [anon_sym_or] = ACTIONS(3708), + [anon_sym_PLUS_EQ] = ACTIONS(3711), + [anon_sym_DASH_EQ] = ACTIONS(3711), + [anon_sym_STAR_EQ] = ACTIONS(3711), + [anon_sym_SLASH_EQ] = ACTIONS(3711), + [anon_sym_PERCENT_EQ] = ACTIONS(3711), + [anon_sym_AMP_EQ] = ACTIONS(3711), + [anon_sym_CARET_EQ] = ACTIONS(3711), + [anon_sym_PIPE_EQ] = ACTIONS(3711), + [anon_sym_LT_LT_EQ] = ACTIONS(3711), + [anon_sym_GT_GT_EQ] = ACTIONS(3711), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3711), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3711), + [anon_sym_AMP_AMP] = ACTIONS(3698), + [anon_sym_PIPE_PIPE] = ACTIONS(3698), + [anon_sym_QMARK_QMARK] = ACTIONS(3704), + [anon_sym_from] = ACTIONS(3708), + [anon_sym_into] = ACTIONS(3691), + [anon_sym_join] = ACTIONS(3708), + [anon_sym_on] = ACTIONS(3691), + [anon_sym_equals] = ACTIONS(3691), + [anon_sym_let] = ACTIONS(3708), + [anon_sym_orderby] = ACTIONS(3708), + [anon_sym_ascending] = ACTIONS(3691), + [anon_sym_descending] = ACTIONS(3691), + [anon_sym_group] = ACTIONS(3708), + [anon_sym_by] = ACTIONS(3691), + [anon_sym_select] = ACTIONS(3708), + [anon_sym_as] = ACTIONS(3704), + [anon_sym_is] = ACTIONS(3704), + [anon_sym_DASH_GT] = ACTIONS(3698), + [anon_sym_with] = ACTIONS(3704), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -413548,15 +413240,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2337] = { - [sym__name] = STATE(4382), - [sym_alias_qualified_name] = STATE(4464), - [sym__simple_name] = STATE(4464), - [sym_qualified_name] = STATE(4464), - [sym_generic_name] = STATE(4403), - [sym_ref_type] = STATE(4383), - [sym__scoped_base_type] = STATE(4385), - [sym_identifier] = STATE(4215), - [sym__reserved_identifier] = STATE(4297), [sym_preproc_region] = STATE(2337), [sym_preproc_endregion] = STATE(2337), [sym_preproc_line] = STATE(2337), @@ -413566,82 +413249,95 @@ 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(3983), - [anon_sym_alias] = ACTIONS(3985), - [anon_sym_global] = ACTIONS(3985), - [anon_sym_LBRACK] = ACTIONS(3445), - [anon_sym_COLON] = ACTIONS(3447), - [anon_sym_COMMA] = ACTIONS(3445), - [anon_sym_LPAREN] = ACTIONS(3445), - [anon_sym_ref] = ACTIONS(3998), - [anon_sym_LBRACE] = ACTIONS(3445), - [anon_sym_file] = ACTIONS(3985), - [anon_sym_LT] = ACTIONS(3447), - [anon_sym_GT] = ACTIONS(3447), - [anon_sym_where] = ACTIONS(3985), - [anon_sym_QMARK] = ACTIONS(3447), - [anon_sym_notnull] = ACTIONS(3985), - [anon_sym_unmanaged] = ACTIONS(3985), - [anon_sym_BANG] = ACTIONS(3447), - [anon_sym_PLUS_PLUS] = ACTIONS(3445), - [anon_sym_DASH_DASH] = ACTIONS(3445), - [anon_sym_PLUS] = ACTIONS(3447), - [anon_sym_DASH] = ACTIONS(3447), - [anon_sym_STAR] = ACTIONS(3445), - [anon_sym_SLASH] = ACTIONS(3447), - [anon_sym_PERCENT] = ACTIONS(3445), - [anon_sym_CARET] = ACTIONS(3445), - [anon_sym_PIPE] = ACTIONS(3447), - [anon_sym_AMP] = ACTIONS(3447), - [anon_sym_LT_LT] = ACTIONS(3445), - [anon_sym_GT_GT] = ACTIONS(3447), - [anon_sym_GT_GT_GT] = ACTIONS(3445), - [anon_sym_EQ_EQ] = ACTIONS(3445), - [anon_sym_BANG_EQ] = ACTIONS(3445), - [anon_sym_GT_EQ] = ACTIONS(3445), - [anon_sym_LT_EQ] = ACTIONS(3445), - [anon_sym_DOT] = ACTIONS(3447), - [anon_sym_scoped] = ACTIONS(3985), - [anon_sym_COLON_COLON] = ACTIONS(3445), - [anon_sym_var] = ACTIONS(3985), - [anon_sym_yield] = ACTIONS(3985), - [anon_sym_switch] = ACTIONS(3447), - [anon_sym_when] = ACTIONS(3985), - [anon_sym_DOT_DOT] = ACTIONS(3445), - [anon_sym_and] = ACTIONS(3447), - [anon_sym_or] = ACTIONS(3447), - [anon_sym_AMP_AMP] = ACTIONS(3445), - [anon_sym_PIPE_PIPE] = ACTIONS(3445), - [anon_sym_QMARK_QMARK] = ACTIONS(3445), - [anon_sym_from] = ACTIONS(3985), - [anon_sym_into] = ACTIONS(3985), - [anon_sym_join] = ACTIONS(3985), - [anon_sym_on] = ACTIONS(3985), - [anon_sym_equals] = ACTIONS(3985), - [anon_sym_let] = ACTIONS(3985), - [anon_sym_orderby] = ACTIONS(3985), - [anon_sym_ascending] = ACTIONS(3985), - [anon_sym_descending] = ACTIONS(3985), - [anon_sym_group] = ACTIONS(3985), - [anon_sym_by] = ACTIONS(3985), - [anon_sym_select] = ACTIONS(3985), - [anon_sym_as] = ACTIONS(3447), - [anon_sym_is] = ACTIONS(3447), - [anon_sym_DASH_GT] = ACTIONS(3445), - [anon_sym_with] = ACTIONS(3447), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_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(3445), + [sym__identifier_token] = ACTIONS(3988), + [anon_sym_alias] = ACTIONS(3988), + [anon_sym_SEMI] = ACTIONS(3990), + [anon_sym_global] = ACTIONS(3988), + [anon_sym_LBRACK] = ACTIONS(3990), + [anon_sym_COLON] = ACTIONS(3990), + [anon_sym_COMMA] = ACTIONS(3990), + [anon_sym_RBRACK] = ACTIONS(3990), + [anon_sym_LPAREN] = ACTIONS(3990), + [anon_sym_RPAREN] = ACTIONS(3990), + [anon_sym_LBRACE] = ACTIONS(3990), + [anon_sym_RBRACE] = ACTIONS(3990), + [anon_sym_file] = ACTIONS(3988), + [anon_sym_LT] = ACTIONS(3988), + [anon_sym_GT] = ACTIONS(3988), + [anon_sym_in] = ACTIONS(3988), + [anon_sym_where] = ACTIONS(3988), + [anon_sym_QMARK] = ACTIONS(3988), + [anon_sym_notnull] = ACTIONS(3988), + [anon_sym_unmanaged] = ACTIONS(3988), + [anon_sym_operator] = ACTIONS(3988), + [anon_sym_BANG] = ACTIONS(3988), + [anon_sym_PLUS_PLUS] = ACTIONS(3990), + [anon_sym_DASH_DASH] = ACTIONS(3990), + [anon_sym_PLUS] = ACTIONS(3988), + [anon_sym_DASH] = ACTIONS(3988), + [anon_sym_STAR] = ACTIONS(3990), + [anon_sym_SLASH] = ACTIONS(3988), + [anon_sym_PERCENT] = ACTIONS(3990), + [anon_sym_CARET] = ACTIONS(3990), + [anon_sym_PIPE] = ACTIONS(3988), + [anon_sym_AMP] = ACTIONS(3988), + [anon_sym_LT_LT] = ACTIONS(3990), + [anon_sym_GT_GT] = ACTIONS(3988), + [anon_sym_GT_GT_GT] = ACTIONS(3990), + [anon_sym_EQ_EQ] = ACTIONS(3990), + [anon_sym_BANG_EQ] = ACTIONS(3990), + [anon_sym_GT_EQ] = ACTIONS(3990), + [anon_sym_LT_EQ] = ACTIONS(3990), + [anon_sym_this] = ACTIONS(3988), + [anon_sym_DOT] = ACTIONS(3988), + [anon_sym_scoped] = ACTIONS(3988), + [anon_sym_EQ_GT] = ACTIONS(3990), + [anon_sym_var] = ACTIONS(3988), + [anon_sym_yield] = ACTIONS(3988), + [anon_sym_switch] = ACTIONS(3988), + [anon_sym_when] = ACTIONS(3988), + [sym_discard] = ACTIONS(3988), + [anon_sym_DOT_DOT] = ACTIONS(3990), + [anon_sym_and] = ACTIONS(3988), + [anon_sym_or] = ACTIONS(3988), + [anon_sym_AMP_AMP] = ACTIONS(3990), + [anon_sym_PIPE_PIPE] = ACTIONS(3990), + [anon_sym_QMARK_QMARK] = ACTIONS(3990), + [anon_sym_from] = ACTIONS(3988), + [anon_sym_into] = ACTIONS(3988), + [anon_sym_join] = ACTIONS(3988), + [anon_sym_on] = ACTIONS(3988), + [anon_sym_equals] = ACTIONS(3988), + [anon_sym_let] = ACTIONS(3988), + [anon_sym_orderby] = ACTIONS(3988), + [anon_sym_ascending] = ACTIONS(3988), + [anon_sym_descending] = ACTIONS(3988), + [anon_sym_group] = ACTIONS(3988), + [anon_sym_by] = ACTIONS(3988), + [anon_sym_select] = ACTIONS(3988), + [anon_sym_as] = ACTIONS(3988), + [anon_sym_is] = ACTIONS(3988), + [anon_sym_DASH_GT] = ACTIONS(3990), + [anon_sym_with] = ACTIONS(3988), + [aux_sym_preproc_if_token3] = ACTIONS(3990), + [aux_sym_preproc_else_token1] = ACTIONS(3990), + [aux_sym_preproc_elif_token1] = ACTIONS(3990), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), }, [2338] = { + [sym__variable_designation] = STATE(3411), + [sym_parenthesized_variable_designation] = STATE(3352), + [sym_identifier] = STATE(3355), + [sym__reserved_identifier] = STATE(3199), [sym_preproc_region] = STATE(2338), [sym_preproc_endregion] = STATE(2338), [sym_preproc_line] = STATE(2338), @@ -413651,79 +413347,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(3699), - [anon_sym_alias] = ACTIONS(3699), - [anon_sym_global] = ACTIONS(3699), - [anon_sym_EQ] = ACTIONS(3704), - [anon_sym_LBRACK] = ACTIONS(3706), - [anon_sym_LPAREN] = ACTIONS(3706), - [anon_sym_LBRACE] = ACTIONS(3710), - [anon_sym_file] = ACTIONS(3699), - [anon_sym_LT] = ACTIONS(3712), - [anon_sym_GT] = ACTIONS(3712), - [anon_sym_where] = ACTIONS(3699), - [anon_sym_QMARK] = ACTIONS(3712), - [anon_sym_notnull] = ACTIONS(3699), - [anon_sym_unmanaged] = ACTIONS(3699), - [anon_sym_BANG] = ACTIONS(3712), - [anon_sym_PLUS_PLUS] = ACTIONS(3706), - [anon_sym_DASH_DASH] = ACTIONS(3706), - [anon_sym_PLUS] = ACTIONS(3712), - [anon_sym_DASH] = ACTIONS(3712), - [anon_sym_STAR] = ACTIONS(3712), - [anon_sym_SLASH] = ACTIONS(3712), - [anon_sym_PERCENT] = ACTIONS(3712), - [anon_sym_CARET] = ACTIONS(3712), - [anon_sym_PIPE] = ACTIONS(3712), - [anon_sym_AMP] = ACTIONS(3712), - [anon_sym_LT_LT] = ACTIONS(3712), - [anon_sym_GT_GT] = ACTIONS(3712), - [anon_sym_GT_GT_GT] = ACTIONS(3712), - [anon_sym_EQ_EQ] = ACTIONS(3706), - [anon_sym_BANG_EQ] = ACTIONS(3706), - [anon_sym_GT_EQ] = ACTIONS(3706), - [anon_sym_LT_EQ] = ACTIONS(3706), - [anon_sym_DOT] = ACTIONS(3712), - [anon_sym_scoped] = ACTIONS(3699), - [anon_sym_var] = ACTIONS(3699), - [anon_sym_yield] = ACTIONS(3699), - [anon_sym_switch] = ACTIONS(3712), - [anon_sym_when] = ACTIONS(3699), - [sym_discard] = ACTIONS(3699), - [anon_sym_DOT_DOT] = ACTIONS(3706), - [anon_sym_and] = ACTIONS(3716), - [anon_sym_or] = ACTIONS(3716), - [anon_sym_PLUS_EQ] = ACTIONS(3719), - [anon_sym_DASH_EQ] = ACTIONS(3719), - [anon_sym_STAR_EQ] = ACTIONS(3719), - [anon_sym_SLASH_EQ] = ACTIONS(3719), - [anon_sym_PERCENT_EQ] = ACTIONS(3719), - [anon_sym_AMP_EQ] = ACTIONS(3719), - [anon_sym_CARET_EQ] = ACTIONS(3719), - [anon_sym_PIPE_EQ] = ACTIONS(3719), - [anon_sym_LT_LT_EQ] = ACTIONS(3719), - [anon_sym_GT_GT_EQ] = ACTIONS(3719), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3719), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3719), - [anon_sym_AMP_AMP] = ACTIONS(3706), - [anon_sym_PIPE_PIPE] = ACTIONS(3706), - [anon_sym_QMARK_QMARK] = ACTIONS(3712), - [anon_sym_from] = ACTIONS(3699), - [anon_sym_into] = ACTIONS(3699), - [anon_sym_join] = ACTIONS(3699), - [anon_sym_on] = ACTIONS(3716), - [anon_sym_equals] = ACTIONS(3699), - [anon_sym_let] = ACTIONS(3699), - [anon_sym_orderby] = ACTIONS(3699), - [anon_sym_ascending] = ACTIONS(3699), - [anon_sym_descending] = ACTIONS(3699), - [anon_sym_group] = ACTIONS(3699), - [anon_sym_by] = ACTIONS(3699), - [anon_sym_select] = ACTIONS(3699), - [anon_sym_as] = ACTIONS(3712), - [anon_sym_is] = ACTIONS(3712), - [anon_sym_DASH_GT] = ACTIONS(3706), - [anon_sym_with] = ACTIONS(3712), + [sym__identifier_token] = ACTIONS(3855), + [anon_sym_alias] = ACTIONS(3857), + [anon_sym_SEMI] = ACTIONS(3939), + [anon_sym_global] = ACTIONS(3857), + [anon_sym_LBRACK] = ACTIONS(3939), + [anon_sym_COLON] = ACTIONS(3939), + [anon_sym_COMMA] = ACTIONS(3939), + [anon_sym_RBRACK] = ACTIONS(3939), + [anon_sym_LPAREN] = ACTIONS(3939), + [anon_sym_RPAREN] = ACTIONS(3939), + [anon_sym_RBRACE] = ACTIONS(3939), + [anon_sym_file] = ACTIONS(3857), + [anon_sym_LT] = ACTIONS(3941), + [anon_sym_GT] = ACTIONS(3941), + [anon_sym_where] = ACTIONS(3857), + [anon_sym_QMARK] = ACTIONS(3941), + [anon_sym_notnull] = ACTIONS(3857), + [anon_sym_unmanaged] = ACTIONS(3857), + [anon_sym_BANG] = ACTIONS(3941), + [anon_sym_PLUS_PLUS] = ACTIONS(3939), + [anon_sym_DASH_DASH] = ACTIONS(3939), + [anon_sym_PLUS] = ACTIONS(3941), + [anon_sym_DASH] = ACTIONS(3941), + [anon_sym_STAR] = ACTIONS(3939), + [anon_sym_SLASH] = ACTIONS(3941), + [anon_sym_PERCENT] = ACTIONS(3939), + [anon_sym_CARET] = ACTIONS(3939), + [anon_sym_PIPE] = ACTIONS(3941), + [anon_sym_AMP] = ACTIONS(3941), + [anon_sym_LT_LT] = ACTIONS(3939), + [anon_sym_GT_GT] = ACTIONS(3941), + [anon_sym_GT_GT_GT] = ACTIONS(3939), + [anon_sym_EQ_EQ] = ACTIONS(3939), + [anon_sym_BANG_EQ] = ACTIONS(3939), + [anon_sym_GT_EQ] = ACTIONS(3939), + [anon_sym_LT_EQ] = ACTIONS(3939), + [anon_sym_DOT] = ACTIONS(3941), + [anon_sym_scoped] = ACTIONS(3857), + [anon_sym_EQ_GT] = ACTIONS(3939), + [anon_sym_var] = ACTIONS(3857), + [anon_sym_yield] = ACTIONS(3857), + [anon_sym_switch] = ACTIONS(3941), + [anon_sym_when] = ACTIONS(3857), + [sym_discard] = ACTIONS(3877), + [anon_sym_DOT_DOT] = ACTIONS(3939), + [anon_sym_and] = ACTIONS(3941), + [anon_sym_or] = ACTIONS(3941), + [anon_sym_AMP_AMP] = ACTIONS(3939), + [anon_sym_PIPE_PIPE] = ACTIONS(3939), + [anon_sym_QMARK_QMARK] = ACTIONS(3939), + [anon_sym_from] = ACTIONS(3857), + [anon_sym_into] = ACTIONS(3857), + [anon_sym_join] = ACTIONS(3857), + [anon_sym_on] = ACTIONS(3857), + [anon_sym_equals] = ACTIONS(3857), + [anon_sym_let] = ACTIONS(3857), + [anon_sym_orderby] = ACTIONS(3857), + [anon_sym_ascending] = ACTIONS(3857), + [anon_sym_descending] = ACTIONS(3857), + [anon_sym_group] = ACTIONS(3857), + [anon_sym_by] = ACTIONS(3857), + [anon_sym_select] = ACTIONS(3857), + [anon_sym_as] = ACTIONS(3941), + [anon_sym_is] = ACTIONS(3941), + [anon_sym_DASH_GT] = ACTIONS(3939), + [anon_sym_with] = ACTIONS(3941), + [aux_sym_preproc_if_token3] = ACTIONS(3939), + [aux_sym_preproc_else_token1] = ACTIONS(3939), + [aux_sym_preproc_elif_token1] = ACTIONS(3939), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -413745,79 +413437,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(3685), - [anon_sym_alias] = ACTIONS(3685), - [anon_sym_global] = ACTIONS(3685), - [anon_sym_EQ] = ACTIONS(3689), - [anon_sym_LBRACK] = ACTIONS(3691), - [anon_sym_COLON] = ACTIONS(3697), - [anon_sym_LPAREN] = ACTIONS(3691), - [anon_sym_file] = ACTIONS(3685), - [anon_sym_LT] = ACTIONS(3689), - [anon_sym_GT] = ACTIONS(3689), - [anon_sym_where] = ACTIONS(3685), - [anon_sym_QMARK] = ACTIONS(3694), - [anon_sym_notnull] = ACTIONS(3685), - [anon_sym_unmanaged] = ACTIONS(3685), - [anon_sym_BANG] = ACTIONS(3689), - [anon_sym_PLUS_PLUS] = ACTIONS(3697), - [anon_sym_DASH_DASH] = ACTIONS(3697), - [anon_sym_PLUS] = ACTIONS(3689), - [anon_sym_DASH] = ACTIONS(3689), - [anon_sym_STAR] = ACTIONS(3694), - [anon_sym_SLASH] = ACTIONS(3689), - [anon_sym_PERCENT] = ACTIONS(3689), - [anon_sym_CARET] = ACTIONS(3689), - [anon_sym_PIPE] = ACTIONS(3689), - [anon_sym_AMP] = ACTIONS(3689), - [anon_sym_LT_LT] = ACTIONS(3689), - [anon_sym_GT_GT] = ACTIONS(3689), - [anon_sym_GT_GT_GT] = ACTIONS(3689), - [anon_sym_EQ_EQ] = ACTIONS(3697), - [anon_sym_BANG_EQ] = ACTIONS(3697), - [anon_sym_GT_EQ] = ACTIONS(3697), - [anon_sym_LT_EQ] = ACTIONS(3697), - [anon_sym_DOT] = ACTIONS(3694), - [anon_sym_scoped] = ACTIONS(3685), - [anon_sym_EQ_GT] = ACTIONS(3697), - [anon_sym_var] = ACTIONS(3685), - [anon_sym_yield] = ACTIONS(3685), - [anon_sym_switch] = ACTIONS(3689), - [anon_sym_when] = ACTIONS(3694), - [anon_sym_DOT_DOT] = ACTIONS(3697), - [anon_sym_and] = ACTIONS(3689), - [anon_sym_or] = ACTIONS(3689), - [anon_sym_PLUS_EQ] = ACTIONS(3697), - [anon_sym_DASH_EQ] = ACTIONS(3697), - [anon_sym_STAR_EQ] = ACTIONS(3697), - [anon_sym_SLASH_EQ] = ACTIONS(3697), - [anon_sym_PERCENT_EQ] = ACTIONS(3697), - [anon_sym_AMP_EQ] = ACTIONS(3697), - [anon_sym_CARET_EQ] = ACTIONS(3697), - [anon_sym_PIPE_EQ] = ACTIONS(3697), - [anon_sym_LT_LT_EQ] = ACTIONS(3697), - [anon_sym_GT_GT_EQ] = ACTIONS(3697), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3697), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3697), - [anon_sym_AMP_AMP] = ACTIONS(3697), - [anon_sym_PIPE_PIPE] = ACTIONS(3697), - [anon_sym_QMARK_QMARK] = ACTIONS(3689), - [anon_sym_from] = ACTIONS(3685), - [anon_sym_into] = ACTIONS(3685), - [anon_sym_join] = ACTIONS(3685), - [anon_sym_on] = ACTIONS(3685), - [anon_sym_equals] = ACTIONS(3685), - [anon_sym_let] = ACTIONS(3685), - [anon_sym_orderby] = ACTIONS(3685), - [anon_sym_ascending] = ACTIONS(3685), - [anon_sym_descending] = ACTIONS(3685), - [anon_sym_group] = ACTIONS(3685), - [anon_sym_by] = ACTIONS(3685), - [anon_sym_select] = ACTIONS(3685), - [anon_sym_as] = ACTIONS(3689), - [anon_sym_is] = ACTIONS(3689), - [anon_sym_DASH_GT] = ACTIONS(3691), - [anon_sym_with] = ACTIONS(3689), + [sym__identifier_token] = ACTIONS(3992), + [anon_sym_alias] = ACTIONS(3992), + [anon_sym_SEMI] = ACTIONS(3994), + [anon_sym_global] = ACTIONS(3992), + [anon_sym_LBRACK] = ACTIONS(3994), + [anon_sym_COLON] = ACTIONS(3994), + [anon_sym_COMMA] = ACTIONS(3994), + [anon_sym_RBRACK] = ACTIONS(3994), + [anon_sym_LPAREN] = ACTIONS(3994), + [anon_sym_RPAREN] = ACTIONS(3994), + [anon_sym_LBRACE] = ACTIONS(3994), + [anon_sym_RBRACE] = ACTIONS(3994), + [anon_sym_file] = ACTIONS(3992), + [anon_sym_LT] = ACTIONS(3992), + [anon_sym_GT] = ACTIONS(3992), + [anon_sym_in] = ACTIONS(3992), + [anon_sym_where] = ACTIONS(3992), + [anon_sym_QMARK] = ACTIONS(3992), + [anon_sym_notnull] = ACTIONS(3992), + [anon_sym_unmanaged] = ACTIONS(3992), + [anon_sym_operator] = ACTIONS(3992), + [anon_sym_BANG] = ACTIONS(3992), + [anon_sym_PLUS_PLUS] = ACTIONS(3994), + [anon_sym_DASH_DASH] = ACTIONS(3994), + [anon_sym_PLUS] = ACTIONS(3992), + [anon_sym_DASH] = ACTIONS(3992), + [anon_sym_STAR] = ACTIONS(3994), + [anon_sym_SLASH] = ACTIONS(3992), + [anon_sym_PERCENT] = ACTIONS(3994), + [anon_sym_CARET] = ACTIONS(3994), + [anon_sym_PIPE] = ACTIONS(3992), + [anon_sym_AMP] = ACTIONS(3992), + [anon_sym_LT_LT] = ACTIONS(3994), + [anon_sym_GT_GT] = ACTIONS(3992), + [anon_sym_GT_GT_GT] = ACTIONS(3994), + [anon_sym_EQ_EQ] = ACTIONS(3994), + [anon_sym_BANG_EQ] = ACTIONS(3994), + [anon_sym_GT_EQ] = ACTIONS(3994), + [anon_sym_LT_EQ] = ACTIONS(3994), + [anon_sym_this] = ACTIONS(3992), + [anon_sym_DOT] = ACTIONS(3992), + [anon_sym_scoped] = ACTIONS(3992), + [anon_sym_EQ_GT] = ACTIONS(3994), + [anon_sym_var] = ACTIONS(3992), + [anon_sym_yield] = ACTIONS(3992), + [anon_sym_switch] = ACTIONS(3992), + [anon_sym_when] = ACTIONS(3992), + [sym_discard] = ACTIONS(3992), + [anon_sym_DOT_DOT] = ACTIONS(3994), + [anon_sym_and] = ACTIONS(3992), + [anon_sym_or] = ACTIONS(3992), + [anon_sym_AMP_AMP] = ACTIONS(3994), + [anon_sym_PIPE_PIPE] = ACTIONS(3994), + [anon_sym_QMARK_QMARK] = ACTIONS(3994), + [anon_sym_from] = ACTIONS(3992), + [anon_sym_into] = ACTIONS(3992), + [anon_sym_join] = ACTIONS(3992), + [anon_sym_on] = ACTIONS(3992), + [anon_sym_equals] = ACTIONS(3992), + [anon_sym_let] = ACTIONS(3992), + [anon_sym_orderby] = ACTIONS(3992), + [anon_sym_ascending] = ACTIONS(3992), + [anon_sym_descending] = ACTIONS(3992), + [anon_sym_group] = ACTIONS(3992), + [anon_sym_by] = ACTIONS(3992), + [anon_sym_select] = ACTIONS(3992), + [anon_sym_as] = ACTIONS(3992), + [anon_sym_is] = ACTIONS(3992), + [anon_sym_DASH_GT] = ACTIONS(3994), + [anon_sym_with] = ACTIONS(3992), + [aux_sym_preproc_if_token3] = ACTIONS(3994), + [aux_sym_preproc_else_token1] = ACTIONS(3994), + [aux_sym_preproc_elif_token1] = ACTIONS(3994), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -413839,79 +413531,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(4000), - [anon_sym_alias] = ACTIONS(4000), - [anon_sym_SEMI] = ACTIONS(4002), - [anon_sym_global] = ACTIONS(4000), - [anon_sym_LBRACK] = ACTIONS(4002), - [anon_sym_COLON] = ACTIONS(4002), - [anon_sym_COMMA] = ACTIONS(4002), - [anon_sym_RBRACK] = ACTIONS(4002), - [anon_sym_LPAREN] = ACTIONS(4002), - [anon_sym_RPAREN] = ACTIONS(4002), - [anon_sym_LBRACE] = ACTIONS(4002), - [anon_sym_RBRACE] = ACTIONS(4002), - [anon_sym_file] = ACTIONS(4000), - [anon_sym_LT] = ACTIONS(4000), - [anon_sym_GT] = ACTIONS(4000), - [anon_sym_in] = ACTIONS(4000), - [anon_sym_where] = ACTIONS(4000), - [anon_sym_QMARK] = ACTIONS(4000), - [anon_sym_notnull] = ACTIONS(4000), - [anon_sym_unmanaged] = ACTIONS(4000), - [anon_sym_operator] = ACTIONS(4000), - [anon_sym_BANG] = ACTIONS(4000), - [anon_sym_PLUS_PLUS] = ACTIONS(4002), - [anon_sym_DASH_DASH] = ACTIONS(4002), - [anon_sym_PLUS] = ACTIONS(4000), - [anon_sym_DASH] = ACTIONS(4000), - [anon_sym_STAR] = ACTIONS(4002), - [anon_sym_SLASH] = ACTIONS(4000), - [anon_sym_PERCENT] = ACTIONS(4002), - [anon_sym_CARET] = ACTIONS(4002), - [anon_sym_PIPE] = ACTIONS(4000), - [anon_sym_AMP] = ACTIONS(4000), - [anon_sym_LT_LT] = ACTIONS(4002), - [anon_sym_GT_GT] = ACTIONS(4000), - [anon_sym_GT_GT_GT] = ACTIONS(4002), - [anon_sym_EQ_EQ] = ACTIONS(4002), - [anon_sym_BANG_EQ] = ACTIONS(4002), - [anon_sym_GT_EQ] = ACTIONS(4002), - [anon_sym_LT_EQ] = ACTIONS(4002), - [anon_sym_this] = ACTIONS(4000), - [anon_sym_DOT] = ACTIONS(4000), - [anon_sym_scoped] = ACTIONS(4000), - [anon_sym_EQ_GT] = ACTIONS(4002), - [anon_sym_var] = ACTIONS(4000), - [anon_sym_yield] = ACTIONS(4000), - [anon_sym_switch] = ACTIONS(4000), - [anon_sym_when] = ACTIONS(4000), - [sym_discard] = ACTIONS(4000), - [anon_sym_DOT_DOT] = ACTIONS(4002), - [anon_sym_and] = ACTIONS(4000), - [anon_sym_or] = ACTIONS(4000), - [anon_sym_AMP_AMP] = ACTIONS(4002), - [anon_sym_PIPE_PIPE] = ACTIONS(4002), - [anon_sym_QMARK_QMARK] = ACTIONS(4002), - [anon_sym_from] = ACTIONS(4000), - [anon_sym_into] = ACTIONS(4000), - [anon_sym_join] = ACTIONS(4000), - [anon_sym_on] = ACTIONS(4000), - [anon_sym_equals] = ACTIONS(4000), - [anon_sym_let] = ACTIONS(4000), - [anon_sym_orderby] = ACTIONS(4000), - [anon_sym_ascending] = ACTIONS(4000), - [anon_sym_descending] = ACTIONS(4000), - [anon_sym_group] = ACTIONS(4000), - [anon_sym_by] = ACTIONS(4000), - [anon_sym_select] = ACTIONS(4000), - [anon_sym_as] = ACTIONS(4000), - [anon_sym_is] = ACTIONS(4000), - [anon_sym_DASH_GT] = ACTIONS(4002), - [anon_sym_with] = ACTIONS(4000), - [aux_sym_preproc_if_token3] = ACTIONS(4002), - [aux_sym_preproc_else_token1] = ACTIONS(4002), - [aux_sym_preproc_elif_token1] = ACTIONS(4002), + [sym__identifier_token] = ACTIONS(3691), + [anon_sym_alias] = ACTIONS(3691), + [anon_sym_global] = ACTIONS(3691), + [anon_sym_EQ] = ACTIONS(3696), + [anon_sym_LBRACK] = ACTIONS(3698), + [anon_sym_LPAREN] = ACTIONS(3698), + [anon_sym_LBRACE] = ACTIONS(3702), + [anon_sym_file] = ACTIONS(3691), + [anon_sym_LT] = ACTIONS(3704), + [anon_sym_GT] = ACTIONS(3704), + [anon_sym_where] = ACTIONS(3691), + [anon_sym_QMARK] = ACTIONS(3704), + [anon_sym_notnull] = ACTIONS(3691), + [anon_sym_unmanaged] = ACTIONS(3691), + [anon_sym_BANG] = ACTIONS(3704), + [anon_sym_PLUS_PLUS] = ACTIONS(3698), + [anon_sym_DASH_DASH] = ACTIONS(3698), + [anon_sym_PLUS] = ACTIONS(3704), + [anon_sym_DASH] = ACTIONS(3704), + [anon_sym_STAR] = ACTIONS(3704), + [anon_sym_SLASH] = ACTIONS(3704), + [anon_sym_PERCENT] = ACTIONS(3704), + [anon_sym_CARET] = ACTIONS(3704), + [anon_sym_PIPE] = ACTIONS(3704), + [anon_sym_AMP] = ACTIONS(3704), + [anon_sym_LT_LT] = ACTIONS(3704), + [anon_sym_GT_GT] = ACTIONS(3704), + [anon_sym_GT_GT_GT] = ACTIONS(3704), + [anon_sym_EQ_EQ] = ACTIONS(3698), + [anon_sym_BANG_EQ] = ACTIONS(3698), + [anon_sym_GT_EQ] = ACTIONS(3698), + [anon_sym_LT_EQ] = ACTIONS(3698), + [anon_sym_DOT] = ACTIONS(3704), + [anon_sym_scoped] = ACTIONS(3691), + [anon_sym_var] = ACTIONS(3691), + [anon_sym_yield] = ACTIONS(3691), + [anon_sym_switch] = ACTIONS(3704), + [anon_sym_when] = ACTIONS(3691), + [sym_discard] = ACTIONS(3691), + [anon_sym_DOT_DOT] = ACTIONS(3698), + [anon_sym_and] = ACTIONS(3708), + [anon_sym_or] = ACTIONS(3708), + [anon_sym_PLUS_EQ] = ACTIONS(3711), + [anon_sym_DASH_EQ] = ACTIONS(3711), + [anon_sym_STAR_EQ] = ACTIONS(3711), + [anon_sym_SLASH_EQ] = ACTIONS(3711), + [anon_sym_PERCENT_EQ] = ACTIONS(3711), + [anon_sym_AMP_EQ] = ACTIONS(3711), + [anon_sym_CARET_EQ] = ACTIONS(3711), + [anon_sym_PIPE_EQ] = ACTIONS(3711), + [anon_sym_LT_LT_EQ] = ACTIONS(3711), + [anon_sym_GT_GT_EQ] = ACTIONS(3711), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3711), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3711), + [anon_sym_AMP_AMP] = ACTIONS(3698), + [anon_sym_PIPE_PIPE] = ACTIONS(3698), + [anon_sym_QMARK_QMARK] = ACTIONS(3704), + [anon_sym_from] = ACTIONS(3691), + [anon_sym_into] = ACTIONS(3708), + [anon_sym_join] = ACTIONS(3691), + [anon_sym_on] = ACTIONS(3691), + [anon_sym_equals] = ACTIONS(3691), + [anon_sym_let] = ACTIONS(3691), + [anon_sym_orderby] = ACTIONS(3691), + [anon_sym_ascending] = ACTIONS(3691), + [anon_sym_descending] = ACTIONS(3691), + [anon_sym_group] = ACTIONS(3691), + [anon_sym_by] = ACTIONS(3708), + [anon_sym_select] = ACTIONS(3691), + [anon_sym_as] = ACTIONS(3704), + [anon_sym_is] = ACTIONS(3704), + [anon_sym_DASH_GT] = ACTIONS(3698), + [anon_sym_with] = ACTIONS(3704), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -413933,79 +413625,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(4004), - [anon_sym_alias] = ACTIONS(4004), - [anon_sym_SEMI] = ACTIONS(4006), - [anon_sym_global] = ACTIONS(4004), - [anon_sym_LBRACK] = ACTIONS(4006), - [anon_sym_COLON] = ACTIONS(4006), - [anon_sym_COMMA] = ACTIONS(4006), - [anon_sym_RBRACK] = ACTIONS(4006), - [anon_sym_LPAREN] = ACTIONS(4006), - [anon_sym_RPAREN] = ACTIONS(4006), - [anon_sym_LBRACE] = ACTIONS(4006), - [anon_sym_RBRACE] = ACTIONS(4006), - [anon_sym_file] = ACTIONS(4004), - [anon_sym_LT] = ACTIONS(4004), - [anon_sym_GT] = ACTIONS(4004), - [anon_sym_in] = ACTIONS(4004), - [anon_sym_where] = ACTIONS(4004), - [anon_sym_QMARK] = ACTIONS(4004), - [anon_sym_notnull] = ACTIONS(4004), - [anon_sym_unmanaged] = ACTIONS(4004), - [anon_sym_operator] = ACTIONS(4004), - [anon_sym_BANG] = ACTIONS(4004), - [anon_sym_PLUS_PLUS] = ACTIONS(4006), - [anon_sym_DASH_DASH] = ACTIONS(4006), - [anon_sym_PLUS] = ACTIONS(4004), - [anon_sym_DASH] = ACTIONS(4004), - [anon_sym_STAR] = ACTIONS(4006), - [anon_sym_SLASH] = ACTIONS(4004), - [anon_sym_PERCENT] = ACTIONS(4006), - [anon_sym_CARET] = ACTIONS(4006), - [anon_sym_PIPE] = ACTIONS(4004), - [anon_sym_AMP] = ACTIONS(4004), - [anon_sym_LT_LT] = ACTIONS(4006), - [anon_sym_GT_GT] = ACTIONS(4004), - [anon_sym_GT_GT_GT] = ACTIONS(4006), - [anon_sym_EQ_EQ] = ACTIONS(4006), - [anon_sym_BANG_EQ] = ACTIONS(4006), - [anon_sym_GT_EQ] = ACTIONS(4006), - [anon_sym_LT_EQ] = ACTIONS(4006), - [anon_sym_this] = ACTIONS(4004), - [anon_sym_DOT] = ACTIONS(4004), - [anon_sym_scoped] = ACTIONS(4004), - [anon_sym_EQ_GT] = ACTIONS(4006), - [anon_sym_var] = ACTIONS(4004), - [anon_sym_yield] = ACTIONS(4004), - [anon_sym_switch] = ACTIONS(4004), - [anon_sym_when] = ACTIONS(4004), - [sym_discard] = ACTIONS(4004), - [anon_sym_DOT_DOT] = ACTIONS(4006), - [anon_sym_and] = ACTIONS(4004), - [anon_sym_or] = ACTIONS(4004), - [anon_sym_AMP_AMP] = ACTIONS(4006), - [anon_sym_PIPE_PIPE] = ACTIONS(4006), - [anon_sym_QMARK_QMARK] = ACTIONS(4006), - [anon_sym_from] = ACTIONS(4004), - [anon_sym_into] = ACTIONS(4004), - [anon_sym_join] = ACTIONS(4004), - [anon_sym_on] = ACTIONS(4004), - [anon_sym_equals] = ACTIONS(4004), - [anon_sym_let] = ACTIONS(4004), - [anon_sym_orderby] = ACTIONS(4004), - [anon_sym_ascending] = ACTIONS(4004), - [anon_sym_descending] = ACTIONS(4004), - [anon_sym_group] = ACTIONS(4004), - [anon_sym_by] = ACTIONS(4004), - [anon_sym_select] = ACTIONS(4004), - [anon_sym_as] = ACTIONS(4004), - [anon_sym_is] = ACTIONS(4004), - [anon_sym_DASH_GT] = ACTIONS(4006), - [anon_sym_with] = ACTIONS(4004), - [aux_sym_preproc_if_token3] = ACTIONS(4006), - [aux_sym_preproc_else_token1] = ACTIONS(4006), - [aux_sym_preproc_elif_token1] = ACTIONS(4006), + [sym__identifier_token] = ACTIONS(3669), + [anon_sym_alias] = ACTIONS(3669), + [anon_sym_global] = ACTIONS(3669), + [anon_sym_EQ] = ACTIONS(3673), + [anon_sym_LBRACK] = ACTIONS(3675), + [anon_sym_LPAREN] = ACTIONS(3675), + [anon_sym_LBRACE] = ACTIONS(3678), + [anon_sym_file] = ACTIONS(3669), + [anon_sym_LT] = ACTIONS(3680), + [anon_sym_GT] = ACTIONS(3680), + [anon_sym_where] = ACTIONS(3669), + [anon_sym_QMARK] = ACTIONS(3680), + [anon_sym_notnull] = ACTIONS(3669), + [anon_sym_unmanaged] = ACTIONS(3669), + [anon_sym_BANG] = ACTIONS(3680), + [anon_sym_PLUS_PLUS] = ACTIONS(3675), + [anon_sym_DASH_DASH] = ACTIONS(3675), + [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(3675), + [anon_sym_BANG_EQ] = ACTIONS(3675), + [anon_sym_GT_EQ] = ACTIONS(3675), + [anon_sym_LT_EQ] = ACTIONS(3675), + [anon_sym_DOT] = ACTIONS(3680), + [anon_sym_scoped] = ACTIONS(3669), + [anon_sym_var] = ACTIONS(3669), + [anon_sym_yield] = ACTIONS(3669), + [anon_sym_switch] = ACTIONS(3680), + [anon_sym_when] = ACTIONS(3669), + [sym_discard] = ACTIONS(3669), + [anon_sym_DOT_DOT] = ACTIONS(3675), + [anon_sym_and] = ACTIONS(3680), + [anon_sym_or] = ACTIONS(3680), + [anon_sym_PLUS_EQ] = ACTIONS(3671), + [anon_sym_DASH_EQ] = ACTIONS(3671), + [anon_sym_STAR_EQ] = ACTIONS(3671), + [anon_sym_SLASH_EQ] = ACTIONS(3671), + [anon_sym_PERCENT_EQ] = ACTIONS(3671), + [anon_sym_AMP_EQ] = ACTIONS(3671), + [anon_sym_CARET_EQ] = ACTIONS(3671), + [anon_sym_PIPE_EQ] = ACTIONS(3671), + [anon_sym_LT_LT_EQ] = ACTIONS(3671), + [anon_sym_GT_GT_EQ] = ACTIONS(3671), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3671), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3671), + [anon_sym_AMP_AMP] = ACTIONS(3675), + [anon_sym_PIPE_PIPE] = ACTIONS(3675), + [anon_sym_QMARK_QMARK] = ACTIONS(3680), + [anon_sym_from] = ACTIONS(3669), + [anon_sym_into] = ACTIONS(3669), + [anon_sym_join] = ACTIONS(3669), + [anon_sym_on] = ACTIONS(3669), + [anon_sym_equals] = ACTIONS(3669), + [anon_sym_let] = ACTIONS(3669), + [anon_sym_orderby] = ACTIONS(3669), + [anon_sym_ascending] = ACTIONS(3669), + [anon_sym_descending] = ACTIONS(3669), + [anon_sym_group] = ACTIONS(3669), + [anon_sym_by] = ACTIONS(3680), + [anon_sym_select] = ACTIONS(3669), + [anon_sym_as] = ACTIONS(3680), + [anon_sym_is] = ACTIONS(3680), + [anon_sym_DASH_GT] = ACTIONS(3675), + [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), @@ -414018,10 +413710,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2342] = { - [sym__variable_designation] = STATE(3365), - [sym_parenthesized_variable_designation] = STATE(3463), - [sym_identifier] = STATE(3479), - [sym__reserved_identifier] = STATE(3177), [sym_preproc_region] = STATE(2342), [sym_preproc_endregion] = STATE(2342), [sym_preproc_line] = STATE(2342), @@ -414031,75 +413719,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(3875), - [anon_sym_alias] = ACTIONS(3877), - [anon_sym_SEMI] = ACTIONS(3913), - [anon_sym_global] = ACTIONS(3877), - [anon_sym_LBRACK] = ACTIONS(3913), - [anon_sym_COLON] = ACTIONS(3913), - [anon_sym_COMMA] = ACTIONS(3913), - [anon_sym_RBRACK] = ACTIONS(3913), - [anon_sym_LPAREN] = ACTIONS(3913), - [anon_sym_RPAREN] = ACTIONS(3913), - [anon_sym_RBRACE] = ACTIONS(3913), - [anon_sym_file] = ACTIONS(3877), - [anon_sym_LT] = ACTIONS(3915), - [anon_sym_GT] = ACTIONS(3915), - [anon_sym_where] = ACTIONS(3877), - [anon_sym_QMARK] = ACTIONS(3915), - [anon_sym_notnull] = ACTIONS(3877), - [anon_sym_unmanaged] = ACTIONS(3877), - [anon_sym_BANG] = ACTIONS(3915), - [anon_sym_PLUS_PLUS] = ACTIONS(3913), - [anon_sym_DASH_DASH] = ACTIONS(3913), - [anon_sym_PLUS] = ACTIONS(3915), - [anon_sym_DASH] = ACTIONS(3915), - [anon_sym_STAR] = ACTIONS(3913), - [anon_sym_SLASH] = ACTIONS(3915), - [anon_sym_PERCENT] = ACTIONS(3913), - [anon_sym_CARET] = ACTIONS(3913), - [anon_sym_PIPE] = ACTIONS(3915), - [anon_sym_AMP] = ACTIONS(3915), - [anon_sym_LT_LT] = ACTIONS(3913), - [anon_sym_GT_GT] = ACTIONS(3915), - [anon_sym_GT_GT_GT] = ACTIONS(3913), - [anon_sym_EQ_EQ] = ACTIONS(3913), - [anon_sym_BANG_EQ] = ACTIONS(3913), - [anon_sym_GT_EQ] = ACTIONS(3913), - [anon_sym_LT_EQ] = ACTIONS(3913), - [anon_sym_DOT] = ACTIONS(3915), - [anon_sym_scoped] = ACTIONS(3877), - [anon_sym_EQ_GT] = ACTIONS(3913), - [anon_sym_var] = ACTIONS(3877), - [anon_sym_yield] = ACTIONS(3877), - [anon_sym_switch] = ACTIONS(3915), - [anon_sym_when] = ACTIONS(3877), - [sym_discard] = ACTIONS(3897), - [anon_sym_DOT_DOT] = ACTIONS(3913), - [anon_sym_and] = ACTIONS(3915), - [anon_sym_or] = ACTIONS(3915), - [anon_sym_AMP_AMP] = ACTIONS(3913), - [anon_sym_PIPE_PIPE] = ACTIONS(3913), - [anon_sym_QMARK_QMARK] = ACTIONS(3913), - [anon_sym_from] = ACTIONS(3877), - [anon_sym_into] = ACTIONS(3877), - [anon_sym_join] = ACTIONS(3877), - [anon_sym_on] = ACTIONS(3877), - [anon_sym_equals] = ACTIONS(3877), - [anon_sym_let] = ACTIONS(3877), - [anon_sym_orderby] = ACTIONS(3877), - [anon_sym_ascending] = ACTIONS(3877), - [anon_sym_descending] = ACTIONS(3877), - [anon_sym_group] = ACTIONS(3877), - [anon_sym_by] = ACTIONS(3877), - [anon_sym_select] = ACTIONS(3877), - [anon_sym_as] = ACTIONS(3915), - [anon_sym_is] = ACTIONS(3915), - [anon_sym_DASH_GT] = ACTIONS(3913), - [anon_sym_with] = ACTIONS(3915), - [aux_sym_preproc_if_token3] = ACTIONS(3913), - [aux_sym_preproc_else_token1] = ACTIONS(3913), - [aux_sym_preproc_elif_token1] = ACTIONS(3913), + [sym__identifier_token] = ACTIONS(3996), + [anon_sym_alias] = ACTIONS(3996), + [anon_sym_SEMI] = ACTIONS(3998), + [anon_sym_global] = ACTIONS(3996), + [anon_sym_LBRACK] = ACTIONS(3998), + [anon_sym_COLON] = ACTIONS(3998), + [anon_sym_COMMA] = ACTIONS(3998), + [anon_sym_RBRACK] = ACTIONS(3998), + [anon_sym_LPAREN] = ACTIONS(3998), + [anon_sym_RPAREN] = ACTIONS(3998), + [anon_sym_LBRACE] = ACTIONS(3998), + [anon_sym_RBRACE] = ACTIONS(3998), + [anon_sym_file] = ACTIONS(3996), + [anon_sym_LT] = ACTIONS(3996), + [anon_sym_GT] = ACTIONS(3996), + [anon_sym_in] = ACTIONS(3996), + [anon_sym_where] = ACTIONS(3996), + [anon_sym_QMARK] = ACTIONS(3996), + [anon_sym_notnull] = ACTIONS(3996), + [anon_sym_unmanaged] = ACTIONS(3996), + [anon_sym_operator] = ACTIONS(3996), + [anon_sym_BANG] = ACTIONS(3996), + [anon_sym_PLUS_PLUS] = ACTIONS(3998), + [anon_sym_DASH_DASH] = ACTIONS(3998), + [anon_sym_PLUS] = ACTIONS(3996), + [anon_sym_DASH] = ACTIONS(3996), + [anon_sym_STAR] = ACTIONS(3998), + [anon_sym_SLASH] = ACTIONS(3996), + [anon_sym_PERCENT] = ACTIONS(3998), + [anon_sym_CARET] = ACTIONS(3998), + [anon_sym_PIPE] = ACTIONS(3996), + [anon_sym_AMP] = ACTIONS(3996), + [anon_sym_LT_LT] = ACTIONS(3998), + [anon_sym_GT_GT] = ACTIONS(3996), + [anon_sym_GT_GT_GT] = ACTIONS(3998), + [anon_sym_EQ_EQ] = ACTIONS(3998), + [anon_sym_BANG_EQ] = ACTIONS(3998), + [anon_sym_GT_EQ] = ACTIONS(3998), + [anon_sym_LT_EQ] = ACTIONS(3998), + [anon_sym_this] = ACTIONS(3996), + [anon_sym_DOT] = ACTIONS(3996), + [anon_sym_scoped] = ACTIONS(3996), + [anon_sym_EQ_GT] = ACTIONS(3998), + [anon_sym_var] = ACTIONS(3996), + [anon_sym_yield] = ACTIONS(3996), + [anon_sym_switch] = ACTIONS(3996), + [anon_sym_when] = ACTIONS(3996), + [sym_discard] = ACTIONS(3996), + [anon_sym_DOT_DOT] = ACTIONS(3998), + [anon_sym_and] = ACTIONS(3996), + [anon_sym_or] = ACTIONS(3996), + [anon_sym_AMP_AMP] = ACTIONS(3998), + [anon_sym_PIPE_PIPE] = ACTIONS(3998), + [anon_sym_QMARK_QMARK] = ACTIONS(3998), + [anon_sym_from] = ACTIONS(3996), + [anon_sym_into] = ACTIONS(3996), + [anon_sym_join] = ACTIONS(3996), + [anon_sym_on] = ACTIONS(3996), + [anon_sym_equals] = ACTIONS(3996), + [anon_sym_let] = ACTIONS(3996), + [anon_sym_orderby] = ACTIONS(3996), + [anon_sym_ascending] = ACTIONS(3996), + [anon_sym_descending] = ACTIONS(3996), + [anon_sym_group] = ACTIONS(3996), + [anon_sym_by] = ACTIONS(3996), + [anon_sym_select] = ACTIONS(3996), + [anon_sym_as] = ACTIONS(3996), + [anon_sym_is] = ACTIONS(3996), + [anon_sym_DASH_GT] = ACTIONS(3998), + [anon_sym_with] = ACTIONS(3996), + [aux_sym_preproc_if_token3] = ACTIONS(3998), + [aux_sym_preproc_else_token1] = ACTIONS(3998), + [aux_sym_preproc_elif_token1] = ACTIONS(3998), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -414121,79 +413813,79 @@ 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(4008), - [anon_sym_alias] = ACTIONS(4008), - [anon_sym_SEMI] = ACTIONS(4010), - [anon_sym_global] = ACTIONS(4008), - [anon_sym_LBRACK] = ACTIONS(4010), - [anon_sym_COLON] = ACTIONS(4010), - [anon_sym_COMMA] = ACTIONS(4010), - [anon_sym_RBRACK] = ACTIONS(4010), - [anon_sym_LPAREN] = ACTIONS(4010), - [anon_sym_RPAREN] = ACTIONS(4010), - [anon_sym_LBRACE] = ACTIONS(4010), - [anon_sym_RBRACE] = ACTIONS(4010), - [anon_sym_file] = ACTIONS(4008), - [anon_sym_LT] = ACTIONS(4008), - [anon_sym_GT] = ACTIONS(4008), - [anon_sym_in] = ACTIONS(4008), - [anon_sym_where] = ACTIONS(4008), - [anon_sym_QMARK] = ACTIONS(4008), - [anon_sym_notnull] = ACTIONS(4008), - [anon_sym_unmanaged] = ACTIONS(4008), - [anon_sym_operator] = ACTIONS(4008), - [anon_sym_BANG] = ACTIONS(4008), - [anon_sym_PLUS_PLUS] = ACTIONS(4010), - [anon_sym_DASH_DASH] = ACTIONS(4010), - [anon_sym_PLUS] = ACTIONS(4008), - [anon_sym_DASH] = ACTIONS(4008), - [anon_sym_STAR] = ACTIONS(4010), - [anon_sym_SLASH] = ACTIONS(4008), - [anon_sym_PERCENT] = ACTIONS(4010), - [anon_sym_CARET] = ACTIONS(4010), - [anon_sym_PIPE] = ACTIONS(4008), - [anon_sym_AMP] = ACTIONS(4008), - [anon_sym_LT_LT] = ACTIONS(4010), - [anon_sym_GT_GT] = ACTIONS(4008), - [anon_sym_GT_GT_GT] = ACTIONS(4010), - [anon_sym_EQ_EQ] = ACTIONS(4010), - [anon_sym_BANG_EQ] = ACTIONS(4010), - [anon_sym_GT_EQ] = ACTIONS(4010), - [anon_sym_LT_EQ] = ACTIONS(4010), - [anon_sym_this] = ACTIONS(4008), - [anon_sym_DOT] = ACTIONS(4008), - [anon_sym_scoped] = ACTIONS(4008), - [anon_sym_EQ_GT] = ACTIONS(4010), - [anon_sym_var] = ACTIONS(4008), - [anon_sym_yield] = ACTIONS(4008), - [anon_sym_switch] = ACTIONS(4008), - [anon_sym_when] = ACTIONS(4008), - [sym_discard] = ACTIONS(4008), - [anon_sym_DOT_DOT] = ACTIONS(4010), - [anon_sym_and] = ACTIONS(4008), - [anon_sym_or] = ACTIONS(4008), - [anon_sym_AMP_AMP] = ACTIONS(4010), - [anon_sym_PIPE_PIPE] = ACTIONS(4010), - [anon_sym_QMARK_QMARK] = ACTIONS(4010), - [anon_sym_from] = ACTIONS(4008), - [anon_sym_into] = ACTIONS(4008), - [anon_sym_join] = ACTIONS(4008), - [anon_sym_on] = ACTIONS(4008), - [anon_sym_equals] = ACTIONS(4008), - [anon_sym_let] = ACTIONS(4008), - [anon_sym_orderby] = ACTIONS(4008), - [anon_sym_ascending] = ACTIONS(4008), - [anon_sym_descending] = ACTIONS(4008), - [anon_sym_group] = ACTIONS(4008), - [anon_sym_by] = ACTIONS(4008), - [anon_sym_select] = ACTIONS(4008), - [anon_sym_as] = ACTIONS(4008), - [anon_sym_is] = ACTIONS(4008), - [anon_sym_DASH_GT] = ACTIONS(4010), - [anon_sym_with] = ACTIONS(4008), - [aux_sym_preproc_if_token3] = ACTIONS(4010), - [aux_sym_preproc_else_token1] = ACTIONS(4010), - [aux_sym_preproc_elif_token1] = ACTIONS(4010), + [sym__identifier_token] = ACTIONS(3669), + [anon_sym_alias] = ACTIONS(3669), + [anon_sym_global] = ACTIONS(3669), + [anon_sym_EQ] = ACTIONS(3673), + [anon_sym_LBRACK] = ACTIONS(3675), + [anon_sym_LPAREN] = ACTIONS(3675), + [anon_sym_LBRACE] = ACTIONS(3678), + [anon_sym_file] = ACTIONS(3669), + [anon_sym_LT] = ACTIONS(3680), + [anon_sym_GT] = ACTIONS(3680), + [anon_sym_where] = ACTIONS(3669), + [anon_sym_QMARK] = ACTIONS(3680), + [anon_sym_notnull] = ACTIONS(3669), + [anon_sym_unmanaged] = ACTIONS(3669), + [anon_sym_BANG] = ACTIONS(3680), + [anon_sym_PLUS_PLUS] = ACTIONS(3675), + [anon_sym_DASH_DASH] = ACTIONS(3675), + [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(3675), + [anon_sym_BANG_EQ] = ACTIONS(3675), + [anon_sym_GT_EQ] = ACTIONS(3675), + [anon_sym_LT_EQ] = ACTIONS(3675), + [anon_sym_DOT] = ACTIONS(3680), + [anon_sym_scoped] = ACTIONS(3669), + [anon_sym_var] = ACTIONS(3669), + [anon_sym_yield] = ACTIONS(3669), + [anon_sym_switch] = ACTIONS(3680), + [anon_sym_when] = ACTIONS(3669), + [sym_discard] = ACTIONS(3669), + [anon_sym_DOT_DOT] = ACTIONS(3675), + [anon_sym_and] = ACTIONS(3680), + [anon_sym_or] = ACTIONS(3680), + [anon_sym_PLUS_EQ] = ACTIONS(3671), + [anon_sym_DASH_EQ] = ACTIONS(3671), + [anon_sym_STAR_EQ] = ACTIONS(3671), + [anon_sym_SLASH_EQ] = ACTIONS(3671), + [anon_sym_PERCENT_EQ] = ACTIONS(3671), + [anon_sym_AMP_EQ] = ACTIONS(3671), + [anon_sym_CARET_EQ] = ACTIONS(3671), + [anon_sym_PIPE_EQ] = ACTIONS(3671), + [anon_sym_LT_LT_EQ] = ACTIONS(3671), + [anon_sym_GT_GT_EQ] = ACTIONS(3671), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3671), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3671), + [anon_sym_AMP_AMP] = ACTIONS(3675), + [anon_sym_PIPE_PIPE] = ACTIONS(3675), + [anon_sym_QMARK_QMARK] = ACTIONS(3680), + [anon_sym_from] = ACTIONS(3669), + [anon_sym_into] = ACTIONS(3680), + [anon_sym_join] = ACTIONS(3669), + [anon_sym_on] = ACTIONS(3669), + [anon_sym_equals] = ACTIONS(3680), + [anon_sym_let] = ACTIONS(3669), + [anon_sym_orderby] = ACTIONS(3669), + [anon_sym_ascending] = ACTIONS(3669), + [anon_sym_descending] = ACTIONS(3669), + [anon_sym_group] = ACTIONS(3669), + [anon_sym_by] = ACTIONS(3669), + [anon_sym_select] = ACTIONS(3669), + [anon_sym_as] = ACTIONS(3680), + [anon_sym_is] = ACTIONS(3680), + [anon_sym_DASH_GT] = ACTIONS(3675), + [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), @@ -414215,79 +413907,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(4012), - [anon_sym_alias] = ACTIONS(4012), - [anon_sym_SEMI] = ACTIONS(4014), - [anon_sym_global] = ACTIONS(4012), - [anon_sym_LBRACK] = ACTIONS(4014), - [anon_sym_COLON] = ACTIONS(4014), - [anon_sym_COMMA] = ACTIONS(4014), - [anon_sym_RBRACK] = ACTIONS(4014), - [anon_sym_LPAREN] = ACTIONS(4014), - [anon_sym_RPAREN] = ACTIONS(4014), - [anon_sym_LBRACE] = ACTIONS(4014), - [anon_sym_RBRACE] = ACTIONS(4014), - [anon_sym_file] = ACTIONS(4012), - [anon_sym_LT] = ACTIONS(4012), - [anon_sym_GT] = ACTIONS(4012), - [anon_sym_in] = ACTIONS(4012), - [anon_sym_where] = ACTIONS(4012), - [anon_sym_QMARK] = ACTIONS(4012), - [anon_sym_notnull] = ACTIONS(4012), - [anon_sym_unmanaged] = ACTIONS(4012), - [anon_sym_operator] = ACTIONS(4012), - [anon_sym_BANG] = ACTIONS(4012), - [anon_sym_PLUS_PLUS] = ACTIONS(4014), - [anon_sym_DASH_DASH] = ACTIONS(4014), - [anon_sym_PLUS] = ACTIONS(4012), - [anon_sym_DASH] = ACTIONS(4012), - [anon_sym_STAR] = ACTIONS(4014), - [anon_sym_SLASH] = ACTIONS(4012), - [anon_sym_PERCENT] = ACTIONS(4014), - [anon_sym_CARET] = ACTIONS(4014), - [anon_sym_PIPE] = ACTIONS(4012), - [anon_sym_AMP] = ACTIONS(4012), - [anon_sym_LT_LT] = ACTIONS(4014), - [anon_sym_GT_GT] = ACTIONS(4012), - [anon_sym_GT_GT_GT] = ACTIONS(4014), - [anon_sym_EQ_EQ] = ACTIONS(4014), - [anon_sym_BANG_EQ] = ACTIONS(4014), - [anon_sym_GT_EQ] = ACTIONS(4014), - [anon_sym_LT_EQ] = ACTIONS(4014), - [anon_sym_this] = ACTIONS(4012), - [anon_sym_DOT] = ACTIONS(4012), - [anon_sym_scoped] = ACTIONS(4012), - [anon_sym_EQ_GT] = ACTIONS(4014), - [anon_sym_var] = ACTIONS(4012), - [anon_sym_yield] = ACTIONS(4012), - [anon_sym_switch] = ACTIONS(4012), - [anon_sym_when] = ACTIONS(4012), - [sym_discard] = ACTIONS(4012), - [anon_sym_DOT_DOT] = ACTIONS(4014), - [anon_sym_and] = ACTIONS(4012), - [anon_sym_or] = ACTIONS(4012), - [anon_sym_AMP_AMP] = ACTIONS(4014), - [anon_sym_PIPE_PIPE] = ACTIONS(4014), - [anon_sym_QMARK_QMARK] = ACTIONS(4014), - [anon_sym_from] = ACTIONS(4012), - [anon_sym_into] = ACTIONS(4012), - [anon_sym_join] = ACTIONS(4012), - [anon_sym_on] = ACTIONS(4012), - [anon_sym_equals] = ACTIONS(4012), - [anon_sym_let] = ACTIONS(4012), - [anon_sym_orderby] = ACTIONS(4012), - [anon_sym_ascending] = ACTIONS(4012), - [anon_sym_descending] = ACTIONS(4012), - [anon_sym_group] = ACTIONS(4012), - [anon_sym_by] = ACTIONS(4012), - [anon_sym_select] = ACTIONS(4012), - [anon_sym_as] = ACTIONS(4012), - [anon_sym_is] = ACTIONS(4012), - [anon_sym_DASH_GT] = ACTIONS(4014), - [anon_sym_with] = ACTIONS(4012), - [aux_sym_preproc_if_token3] = ACTIONS(4014), - [aux_sym_preproc_else_token1] = ACTIONS(4014), - [aux_sym_preproc_elif_token1] = ACTIONS(4014), + [sym__identifier_token] = ACTIONS(3691), + [anon_sym_alias] = ACTIONS(3691), + [anon_sym_global] = ACTIONS(3691), + [anon_sym_EQ] = ACTIONS(3696), + [anon_sym_LBRACK] = ACTIONS(3713), + [anon_sym_COLON] = ACTIONS(3711), + [anon_sym_LPAREN] = ACTIONS(3713), + [anon_sym_file] = ACTIONS(3691), + [anon_sym_LT] = ACTIONS(3696), + [anon_sym_GT] = ACTIONS(3696), + [anon_sym_where] = ACTIONS(3691), + [anon_sym_QMARK] = ACTIONS(3716), + [anon_sym_notnull] = ACTIONS(3691), + [anon_sym_unmanaged] = ACTIONS(3691), + [anon_sym_BANG] = ACTIONS(3696), + [anon_sym_PLUS_PLUS] = ACTIONS(3711), + [anon_sym_DASH_DASH] = ACTIONS(3711), + [anon_sym_PLUS] = ACTIONS(3696), + [anon_sym_DASH] = ACTIONS(3696), + [anon_sym_STAR] = ACTIONS(3716), + [anon_sym_SLASH] = ACTIONS(3696), + [anon_sym_PERCENT] = ACTIONS(3696), + [anon_sym_CARET] = ACTIONS(3696), + [anon_sym_PIPE] = ACTIONS(3696), + [anon_sym_AMP] = ACTIONS(3696), + [anon_sym_LT_LT] = ACTIONS(3696), + [anon_sym_GT_GT] = ACTIONS(3696), + [anon_sym_GT_GT_GT] = ACTIONS(3696), + [anon_sym_EQ_EQ] = ACTIONS(3711), + [anon_sym_BANG_EQ] = ACTIONS(3711), + [anon_sym_GT_EQ] = ACTIONS(3711), + [anon_sym_LT_EQ] = ACTIONS(3711), + [anon_sym_DOT] = ACTIONS(3716), + [anon_sym_scoped] = ACTIONS(3691), + [anon_sym_EQ_GT] = ACTIONS(3711), + [anon_sym_var] = ACTIONS(3691), + [anon_sym_yield] = ACTIONS(3691), + [anon_sym_switch] = ACTIONS(3696), + [anon_sym_when] = ACTIONS(3716), + [anon_sym_DOT_DOT] = ACTIONS(3711), + [anon_sym_and] = ACTIONS(3696), + [anon_sym_or] = ACTIONS(3696), + [anon_sym_PLUS_EQ] = ACTIONS(3711), + [anon_sym_DASH_EQ] = ACTIONS(3711), + [anon_sym_STAR_EQ] = ACTIONS(3711), + [anon_sym_SLASH_EQ] = ACTIONS(3711), + [anon_sym_PERCENT_EQ] = ACTIONS(3711), + [anon_sym_AMP_EQ] = ACTIONS(3711), + [anon_sym_CARET_EQ] = ACTIONS(3711), + [anon_sym_PIPE_EQ] = ACTIONS(3711), + [anon_sym_LT_LT_EQ] = ACTIONS(3711), + [anon_sym_GT_GT_EQ] = ACTIONS(3711), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3711), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3711), + [anon_sym_AMP_AMP] = ACTIONS(3711), + [anon_sym_PIPE_PIPE] = ACTIONS(3711), + [anon_sym_QMARK_QMARK] = ACTIONS(3696), + [anon_sym_from] = ACTIONS(3691), + [anon_sym_into] = ACTIONS(3716), + [anon_sym_join] = ACTIONS(3691), + [anon_sym_on] = ACTIONS(3691), + [anon_sym_equals] = ACTIONS(3691), + [anon_sym_let] = ACTIONS(3691), + [anon_sym_orderby] = ACTIONS(3691), + [anon_sym_ascending] = ACTIONS(3691), + [anon_sym_descending] = ACTIONS(3691), + [anon_sym_group] = ACTIONS(3691), + [anon_sym_by] = ACTIONS(3691), + [anon_sym_select] = ACTIONS(3691), + [anon_sym_as] = ACTIONS(3696), + [anon_sym_is] = ACTIONS(3696), + [anon_sym_DASH_GT] = ACTIONS(3713), + [anon_sym_with] = ACTIONS(3696), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -414309,79 +414001,79 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2345), [sym_preproc_define] = STATE(2345), [sym_preproc_undef] = STATE(2345), - [sym__identifier_token] = ACTIONS(3699), - [anon_sym_alias] = ACTIONS(3699), - [anon_sym_global] = ACTIONS(3699), - [anon_sym_EQ] = ACTIONS(3704), - [anon_sym_LBRACK] = ACTIONS(3706), - [anon_sym_LPAREN] = ACTIONS(3706), - [anon_sym_LBRACE] = ACTIONS(3710), - [anon_sym_file] = ACTIONS(3699), - [anon_sym_LT] = ACTIONS(3712), - [anon_sym_GT] = ACTIONS(3712), - [anon_sym_where] = ACTIONS(3716), - [anon_sym_QMARK] = ACTIONS(3712), - [anon_sym_notnull] = ACTIONS(3699), - [anon_sym_unmanaged] = ACTIONS(3699), - [anon_sym_BANG] = ACTIONS(3712), - [anon_sym_PLUS_PLUS] = ACTIONS(3706), - [anon_sym_DASH_DASH] = ACTIONS(3706), - [anon_sym_PLUS] = ACTIONS(3712), - [anon_sym_DASH] = ACTIONS(3712), - [anon_sym_STAR] = ACTIONS(3712), - [anon_sym_SLASH] = ACTIONS(3712), - [anon_sym_PERCENT] = ACTIONS(3712), - [anon_sym_CARET] = ACTIONS(3712), - [anon_sym_PIPE] = ACTIONS(3712), - [anon_sym_AMP] = ACTIONS(3712), - [anon_sym_LT_LT] = ACTIONS(3712), - [anon_sym_GT_GT] = ACTIONS(3712), - [anon_sym_GT_GT_GT] = ACTIONS(3712), - [anon_sym_EQ_EQ] = ACTIONS(3706), - [anon_sym_BANG_EQ] = ACTIONS(3706), - [anon_sym_GT_EQ] = ACTIONS(3706), - [anon_sym_LT_EQ] = ACTIONS(3706), - [anon_sym_DOT] = ACTIONS(3712), - [anon_sym_scoped] = ACTIONS(3699), - [anon_sym_var] = ACTIONS(3699), - [anon_sym_yield] = ACTIONS(3699), - [anon_sym_switch] = ACTIONS(3712), - [anon_sym_when] = ACTIONS(3699), - [sym_discard] = ACTIONS(3699), - [anon_sym_DOT_DOT] = ACTIONS(3706), - [anon_sym_and] = ACTIONS(3716), - [anon_sym_or] = ACTIONS(3716), - [anon_sym_PLUS_EQ] = ACTIONS(3719), - [anon_sym_DASH_EQ] = ACTIONS(3719), - [anon_sym_STAR_EQ] = ACTIONS(3719), - [anon_sym_SLASH_EQ] = ACTIONS(3719), - [anon_sym_PERCENT_EQ] = ACTIONS(3719), - [anon_sym_AMP_EQ] = ACTIONS(3719), - [anon_sym_CARET_EQ] = ACTIONS(3719), - [anon_sym_PIPE_EQ] = ACTIONS(3719), - [anon_sym_LT_LT_EQ] = ACTIONS(3719), - [anon_sym_GT_GT_EQ] = ACTIONS(3719), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3719), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3719), - [anon_sym_AMP_AMP] = ACTIONS(3706), - [anon_sym_PIPE_PIPE] = ACTIONS(3706), - [anon_sym_QMARK_QMARK] = ACTIONS(3712), - [anon_sym_from] = ACTIONS(3716), - [anon_sym_into] = ACTIONS(3699), - [anon_sym_join] = ACTIONS(3716), - [anon_sym_on] = ACTIONS(3699), - [anon_sym_equals] = ACTIONS(3699), - [anon_sym_let] = ACTIONS(3716), - [anon_sym_orderby] = ACTIONS(3716), - [anon_sym_ascending] = ACTIONS(3699), - [anon_sym_descending] = ACTIONS(3699), - [anon_sym_group] = ACTIONS(3716), - [anon_sym_by] = ACTIONS(3699), - [anon_sym_select] = ACTIONS(3716), - [anon_sym_as] = ACTIONS(3712), - [anon_sym_is] = ACTIONS(3712), - [anon_sym_DASH_GT] = ACTIONS(3706), - [anon_sym_with] = ACTIONS(3712), + [sym__identifier_token] = ACTIONS(4000), + [anon_sym_alias] = ACTIONS(4000), + [anon_sym_SEMI] = ACTIONS(4002), + [anon_sym_global] = ACTIONS(4000), + [anon_sym_LBRACK] = ACTIONS(4002), + [anon_sym_COLON] = ACTIONS(4002), + [anon_sym_COMMA] = ACTIONS(4002), + [anon_sym_RBRACK] = ACTIONS(4002), + [anon_sym_LPAREN] = ACTIONS(4002), + [anon_sym_RPAREN] = ACTIONS(4002), + [anon_sym_LBRACE] = ACTIONS(4002), + [anon_sym_RBRACE] = ACTIONS(4002), + [anon_sym_file] = ACTIONS(4000), + [anon_sym_LT] = ACTIONS(4000), + [anon_sym_GT] = ACTIONS(4000), + [anon_sym_in] = ACTIONS(4000), + [anon_sym_where] = ACTIONS(4000), + [anon_sym_QMARK] = ACTIONS(4000), + [anon_sym_notnull] = ACTIONS(4000), + [anon_sym_unmanaged] = ACTIONS(4000), + [anon_sym_operator] = ACTIONS(4000), + [anon_sym_BANG] = ACTIONS(4000), + [anon_sym_PLUS_PLUS] = ACTIONS(4002), + [anon_sym_DASH_DASH] = ACTIONS(4002), + [anon_sym_PLUS] = ACTIONS(4000), + [anon_sym_DASH] = ACTIONS(4000), + [anon_sym_STAR] = ACTIONS(4002), + [anon_sym_SLASH] = ACTIONS(4000), + [anon_sym_PERCENT] = ACTIONS(4002), + [anon_sym_CARET] = ACTIONS(4002), + [anon_sym_PIPE] = ACTIONS(4000), + [anon_sym_AMP] = ACTIONS(4000), + [anon_sym_LT_LT] = ACTIONS(4002), + [anon_sym_GT_GT] = ACTIONS(4000), + [anon_sym_GT_GT_GT] = ACTIONS(4002), + [anon_sym_EQ_EQ] = ACTIONS(4002), + [anon_sym_BANG_EQ] = ACTIONS(4002), + [anon_sym_GT_EQ] = ACTIONS(4002), + [anon_sym_LT_EQ] = ACTIONS(4002), + [anon_sym_this] = ACTIONS(4000), + [anon_sym_DOT] = ACTIONS(4000), + [anon_sym_scoped] = ACTIONS(4000), + [anon_sym_EQ_GT] = ACTIONS(4002), + [anon_sym_var] = ACTIONS(4000), + [anon_sym_yield] = ACTIONS(4000), + [anon_sym_switch] = ACTIONS(4000), + [anon_sym_when] = ACTIONS(4000), + [sym_discard] = ACTIONS(4000), + [anon_sym_DOT_DOT] = ACTIONS(4002), + [anon_sym_and] = ACTIONS(4000), + [anon_sym_or] = ACTIONS(4000), + [anon_sym_AMP_AMP] = ACTIONS(4002), + [anon_sym_PIPE_PIPE] = ACTIONS(4002), + [anon_sym_QMARK_QMARK] = ACTIONS(4002), + [anon_sym_from] = ACTIONS(4000), + [anon_sym_into] = ACTIONS(4000), + [anon_sym_join] = ACTIONS(4000), + [anon_sym_on] = ACTIONS(4000), + [anon_sym_equals] = ACTIONS(4000), + [anon_sym_let] = ACTIONS(4000), + [anon_sym_orderby] = ACTIONS(4000), + [anon_sym_ascending] = ACTIONS(4000), + [anon_sym_descending] = ACTIONS(4000), + [anon_sym_group] = ACTIONS(4000), + [anon_sym_by] = ACTIONS(4000), + [anon_sym_select] = ACTIONS(4000), + [anon_sym_as] = ACTIONS(4000), + [anon_sym_is] = ACTIONS(4000), + [anon_sym_DASH_GT] = ACTIONS(4002), + [anon_sym_with] = ACTIONS(4000), + [aux_sym_preproc_if_token3] = ACTIONS(4002), + [aux_sym_preproc_else_token1] = ACTIONS(4002), + [aux_sym_preproc_elif_token1] = ACTIONS(4002), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -414394,10 +414086,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2346] = { - [sym__variable_designation] = STATE(3481), - [sym_parenthesized_variable_designation] = STATE(3463), - [sym_identifier] = STATE(3479), - [sym__reserved_identifier] = STATE(3177), [sym_preproc_region] = STATE(2346), [sym_preproc_endregion] = STATE(2346), [sym_preproc_line] = STATE(2346), @@ -414407,75 +414095,78 @@ 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(3875), - [anon_sym_alias] = ACTIONS(3877), - [anon_sym_SEMI] = ACTIONS(3961), - [anon_sym_global] = ACTIONS(3877), - [anon_sym_LBRACK] = ACTIONS(3961), - [anon_sym_COLON] = ACTIONS(3961), - [anon_sym_COMMA] = ACTIONS(3961), - [anon_sym_RBRACK] = ACTIONS(3961), - [anon_sym_LPAREN] = ACTIONS(3961), - [anon_sym_RPAREN] = ACTIONS(3961), - [anon_sym_RBRACE] = ACTIONS(3961), - [anon_sym_file] = ACTIONS(3877), - [anon_sym_LT] = ACTIONS(3963), - [anon_sym_GT] = ACTIONS(3963), - [anon_sym_where] = ACTIONS(3877), - [anon_sym_QMARK] = ACTIONS(3963), - [anon_sym_notnull] = ACTIONS(3877), - [anon_sym_unmanaged] = ACTIONS(3877), - [anon_sym_BANG] = ACTIONS(3963), - [anon_sym_PLUS_PLUS] = ACTIONS(3961), - [anon_sym_DASH_DASH] = ACTIONS(3961), - [anon_sym_PLUS] = ACTIONS(3963), - [anon_sym_DASH] = ACTIONS(3963), - [anon_sym_STAR] = ACTIONS(3961), - [anon_sym_SLASH] = ACTIONS(3963), - [anon_sym_PERCENT] = ACTIONS(3961), - [anon_sym_CARET] = ACTIONS(3961), - [anon_sym_PIPE] = ACTIONS(3963), - [anon_sym_AMP] = ACTIONS(3963), - [anon_sym_LT_LT] = ACTIONS(3961), - [anon_sym_GT_GT] = ACTIONS(3963), - [anon_sym_GT_GT_GT] = ACTIONS(3961), - [anon_sym_EQ_EQ] = ACTIONS(3961), - [anon_sym_BANG_EQ] = ACTIONS(3961), - [anon_sym_GT_EQ] = ACTIONS(3961), - [anon_sym_LT_EQ] = ACTIONS(3961), - [anon_sym_DOT] = ACTIONS(3963), - [anon_sym_scoped] = ACTIONS(3877), - [anon_sym_EQ_GT] = ACTIONS(3961), - [anon_sym_var] = ACTIONS(3877), - [anon_sym_yield] = ACTIONS(3877), - [anon_sym_switch] = ACTIONS(3963), - [anon_sym_when] = ACTIONS(3877), - [sym_discard] = ACTIONS(3897), - [anon_sym_DOT_DOT] = ACTIONS(3961), - [anon_sym_and] = ACTIONS(3963), - [anon_sym_or] = ACTIONS(3963), - [anon_sym_AMP_AMP] = ACTIONS(3961), - [anon_sym_PIPE_PIPE] = ACTIONS(3961), - [anon_sym_QMARK_QMARK] = ACTIONS(3961), - [anon_sym_from] = ACTIONS(3877), - [anon_sym_into] = ACTIONS(3877), - [anon_sym_join] = ACTIONS(3877), - [anon_sym_on] = ACTIONS(3877), - [anon_sym_equals] = ACTIONS(3877), - [anon_sym_let] = ACTIONS(3877), - [anon_sym_orderby] = ACTIONS(3877), - [anon_sym_ascending] = ACTIONS(3877), - [anon_sym_descending] = ACTIONS(3877), - [anon_sym_group] = ACTIONS(3877), - [anon_sym_by] = ACTIONS(3877), - [anon_sym_select] = ACTIONS(3877), - [anon_sym_as] = ACTIONS(3963), - [anon_sym_is] = ACTIONS(3963), - [anon_sym_DASH_GT] = ACTIONS(3961), - [anon_sym_with] = ACTIONS(3963), - [aux_sym_preproc_if_token3] = ACTIONS(3961), - [aux_sym_preproc_else_token1] = ACTIONS(3961), - [aux_sym_preproc_elif_token1] = ACTIONS(3961), + [sym__identifier_token] = ACTIONS(3669), + [anon_sym_alias] = ACTIONS(3669), + [anon_sym_global] = ACTIONS(3669), + [anon_sym_EQ] = ACTIONS(3673), + [anon_sym_LBRACK] = ACTIONS(3675), + [anon_sym_COMMA] = ACTIONS(3671), + [anon_sym_LPAREN] = ACTIONS(3675), + [anon_sym_file] = ACTIONS(3669), + [anon_sym_LT] = ACTIONS(3673), + [anon_sym_GT] = ACTIONS(3673), + [anon_sym_where] = ACTIONS(3680), + [anon_sym_QMARK] = ACTIONS(3680), + [anon_sym_notnull] = ACTIONS(3669), + [anon_sym_unmanaged] = ACTIONS(3669), + [anon_sym_BANG] = ACTIONS(3673), + [anon_sym_PLUS_PLUS] = ACTIONS(3671), + [anon_sym_DASH_DASH] = ACTIONS(3671), + [anon_sym_PLUS] = ACTIONS(3673), + [anon_sym_DASH] = ACTIONS(3673), + [anon_sym_STAR] = ACTIONS(3680), + [anon_sym_SLASH] = ACTIONS(3673), + [anon_sym_PERCENT] = ACTIONS(3673), + [anon_sym_CARET] = ACTIONS(3673), + [anon_sym_PIPE] = ACTIONS(3673), + [anon_sym_AMP] = ACTIONS(3673), + [anon_sym_LT_LT] = ACTIONS(3673), + [anon_sym_GT_GT] = ACTIONS(3673), + [anon_sym_GT_GT_GT] = ACTIONS(3673), + [anon_sym_EQ_EQ] = ACTIONS(3671), + [anon_sym_BANG_EQ] = ACTIONS(3671), + [anon_sym_GT_EQ] = ACTIONS(3671), + [anon_sym_LT_EQ] = ACTIONS(3671), + [anon_sym_DOT] = ACTIONS(3680), + [anon_sym_scoped] = ACTIONS(3669), + [anon_sym_var] = ACTIONS(3669), + [anon_sym_yield] = ACTIONS(3669), + [anon_sym_switch] = ACTIONS(3673), + [anon_sym_when] = ACTIONS(3669), + [anon_sym_DOT_DOT] = ACTIONS(3671), + [anon_sym_and] = ACTIONS(3673), + [anon_sym_or] = ACTIONS(3673), + [anon_sym_PLUS_EQ] = ACTIONS(3671), + [anon_sym_DASH_EQ] = ACTIONS(3671), + [anon_sym_STAR_EQ] = ACTIONS(3671), + [anon_sym_SLASH_EQ] = ACTIONS(3671), + [anon_sym_PERCENT_EQ] = ACTIONS(3671), + [anon_sym_AMP_EQ] = ACTIONS(3671), + [anon_sym_CARET_EQ] = ACTIONS(3671), + [anon_sym_PIPE_EQ] = ACTIONS(3671), + [anon_sym_LT_LT_EQ] = ACTIONS(3671), + [anon_sym_GT_GT_EQ] = ACTIONS(3671), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3671), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3671), + [anon_sym_AMP_AMP] = ACTIONS(3671), + [anon_sym_PIPE_PIPE] = ACTIONS(3671), + [anon_sym_QMARK_QMARK] = ACTIONS(3673), + [anon_sym_from] = ACTIONS(3680), + [anon_sym_into] = ACTIONS(3680), + [anon_sym_join] = ACTIONS(3680), + [anon_sym_on] = ACTIONS(3669), + [anon_sym_equals] = ACTIONS(3669), + [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(3669), + [anon_sym_select] = ACTIONS(3680), + [anon_sym_as] = ACTIONS(3673), + [anon_sym_is] = ACTIONS(3673), + [anon_sym_DASH_GT] = ACTIONS(3675), + [anon_sym_with] = ACTIONS(3673), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -414488,6 +414179,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2347] = { + [sym_type_argument_list] = STATE(2395), [sym_preproc_region] = STATE(2347), [sym_preproc_endregion] = STATE(2347), [sym_preproc_line] = STATE(2347), @@ -414497,79 +414189,77 @@ 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(4016), - [anon_sym_alias] = ACTIONS(4016), - [anon_sym_SEMI] = ACTIONS(4018), - [anon_sym_global] = ACTIONS(4016), - [anon_sym_LBRACK] = ACTIONS(4018), - [anon_sym_COLON] = ACTIONS(4018), - [anon_sym_COMMA] = ACTIONS(4018), - [anon_sym_RBRACK] = ACTIONS(4018), - [anon_sym_LPAREN] = ACTIONS(4018), - [anon_sym_RPAREN] = ACTIONS(4018), - [anon_sym_LBRACE] = ACTIONS(4018), - [anon_sym_RBRACE] = ACTIONS(4018), - [anon_sym_file] = ACTIONS(4016), - [anon_sym_LT] = ACTIONS(4016), - [anon_sym_GT] = ACTIONS(4016), - [anon_sym_in] = ACTIONS(4016), - [anon_sym_where] = ACTIONS(4016), - [anon_sym_QMARK] = ACTIONS(4016), - [anon_sym_notnull] = ACTIONS(4016), - [anon_sym_unmanaged] = ACTIONS(4016), - [anon_sym_operator] = ACTIONS(4016), - [anon_sym_BANG] = ACTIONS(4016), - [anon_sym_PLUS_PLUS] = ACTIONS(4018), - [anon_sym_DASH_DASH] = ACTIONS(4018), - [anon_sym_PLUS] = ACTIONS(4016), - [anon_sym_DASH] = ACTIONS(4016), - [anon_sym_STAR] = ACTIONS(4018), - [anon_sym_SLASH] = ACTIONS(4016), - [anon_sym_PERCENT] = ACTIONS(4018), - [anon_sym_CARET] = ACTIONS(4018), - [anon_sym_PIPE] = ACTIONS(4016), - [anon_sym_AMP] = ACTIONS(4016), - [anon_sym_LT_LT] = ACTIONS(4018), - [anon_sym_GT_GT] = ACTIONS(4016), - [anon_sym_GT_GT_GT] = ACTIONS(4018), - [anon_sym_EQ_EQ] = ACTIONS(4018), - [anon_sym_BANG_EQ] = ACTIONS(4018), - [anon_sym_GT_EQ] = ACTIONS(4018), - [anon_sym_LT_EQ] = ACTIONS(4018), - [anon_sym_this] = ACTIONS(4016), - [anon_sym_DOT] = ACTIONS(4016), - [anon_sym_scoped] = ACTIONS(4016), - [anon_sym_EQ_GT] = ACTIONS(4018), - [anon_sym_var] = ACTIONS(4016), - [anon_sym_yield] = ACTIONS(4016), - [anon_sym_switch] = ACTIONS(4016), - [anon_sym_when] = ACTIONS(4016), - [sym_discard] = ACTIONS(4016), - [anon_sym_DOT_DOT] = ACTIONS(4018), - [anon_sym_and] = ACTIONS(4016), - [anon_sym_or] = ACTIONS(4016), - [anon_sym_AMP_AMP] = ACTIONS(4018), - [anon_sym_PIPE_PIPE] = ACTIONS(4018), - [anon_sym_QMARK_QMARK] = ACTIONS(4018), - [anon_sym_from] = ACTIONS(4016), - [anon_sym_into] = ACTIONS(4016), - [anon_sym_join] = ACTIONS(4016), - [anon_sym_on] = ACTIONS(4016), - [anon_sym_equals] = ACTIONS(4016), - [anon_sym_let] = ACTIONS(4016), - [anon_sym_orderby] = ACTIONS(4016), - [anon_sym_ascending] = ACTIONS(4016), - [anon_sym_descending] = ACTIONS(4016), - [anon_sym_group] = ACTIONS(4016), - [anon_sym_by] = ACTIONS(4016), - [anon_sym_select] = ACTIONS(4016), - [anon_sym_as] = ACTIONS(4016), - [anon_sym_is] = ACTIONS(4016), - [anon_sym_DASH_GT] = ACTIONS(4018), - [anon_sym_with] = ACTIONS(4016), - [aux_sym_preproc_if_token3] = ACTIONS(4018), - [aux_sym_preproc_else_token1] = ACTIONS(4018), - [aux_sym_preproc_elif_token1] = ACTIONS(4018), + [sym__identifier_token] = ACTIONS(3638), + [anon_sym_alias] = ACTIONS(3638), + [anon_sym_SEMI] = ACTIONS(3640), + [anon_sym_global] = ACTIONS(3638), + [anon_sym_LBRACK] = ACTIONS(3640), + [anon_sym_COLON] = ACTIONS(3640), + [anon_sym_COMMA] = ACTIONS(3640), + [anon_sym_RBRACK] = ACTIONS(3640), + [anon_sym_LPAREN] = ACTIONS(3640), + [anon_sym_RPAREN] = ACTIONS(3640), + [anon_sym_LBRACE] = ACTIONS(3640), + [anon_sym_RBRACE] = ACTIONS(3640), + [anon_sym_file] = ACTIONS(3638), + [anon_sym_LT] = ACTIONS(4004), + [anon_sym_GT] = ACTIONS(3638), + [anon_sym_in] = ACTIONS(3638), + [anon_sym_where] = ACTIONS(3638), + [anon_sym_QMARK] = ACTIONS(3638), + [anon_sym_notnull] = ACTIONS(3638), + [anon_sym_unmanaged] = ACTIONS(3638), + [anon_sym_BANG] = ACTIONS(3638), + [anon_sym_PLUS_PLUS] = ACTIONS(3640), + [anon_sym_DASH_DASH] = ACTIONS(3640), + [anon_sym_PLUS] = ACTIONS(3638), + [anon_sym_DASH] = ACTIONS(3638), + [anon_sym_STAR] = ACTIONS(3640), + [anon_sym_SLASH] = ACTIONS(3638), + [anon_sym_PERCENT] = ACTIONS(3640), + [anon_sym_CARET] = ACTIONS(3640), + [anon_sym_PIPE] = ACTIONS(3638), + [anon_sym_AMP] = ACTIONS(3638), + [anon_sym_LT_LT] = ACTIONS(3640), + [anon_sym_GT_GT] = ACTIONS(3638), + [anon_sym_GT_GT_GT] = ACTIONS(3640), + [anon_sym_EQ_EQ] = ACTIONS(3640), + [anon_sym_BANG_EQ] = ACTIONS(3640), + [anon_sym_GT_EQ] = ACTIONS(3640), + [anon_sym_LT_EQ] = ACTIONS(3640), + [anon_sym_DOT] = ACTIONS(3638), + [anon_sym_scoped] = ACTIONS(3638), + [anon_sym_EQ_GT] = ACTIONS(3640), + [anon_sym_var] = ACTIONS(3638), + [anon_sym_yield] = ACTIONS(3638), + [anon_sym_switch] = ACTIONS(3638), + [anon_sym_when] = ACTIONS(3638), + [sym_discard] = ACTIONS(3638), + [anon_sym_DOT_DOT] = ACTIONS(3640), + [anon_sym_and] = ACTIONS(3638), + [anon_sym_or] = ACTIONS(3638), + [anon_sym_AMP_AMP] = ACTIONS(3640), + [anon_sym_PIPE_PIPE] = ACTIONS(3640), + [anon_sym_QMARK_QMARK] = ACTIONS(3640), + [anon_sym_from] = ACTIONS(3638), + [anon_sym_into] = ACTIONS(3638), + [anon_sym_join] = ACTIONS(3638), + [anon_sym_on] = ACTIONS(3638), + [anon_sym_equals] = ACTIONS(3638), + [anon_sym_let] = ACTIONS(3638), + [anon_sym_orderby] = ACTIONS(3638), + [anon_sym_ascending] = ACTIONS(3638), + [anon_sym_descending] = ACTIONS(3638), + [anon_sym_group] = ACTIONS(3638), + [anon_sym_by] = ACTIONS(3638), + [anon_sym_select] = ACTIONS(3638), + [anon_sym_as] = ACTIONS(3638), + [anon_sym_is] = ACTIONS(3638), + [anon_sym_DASH_GT] = ACTIONS(3640), + [anon_sym_with] = ACTIONS(3638), + [aux_sym_preproc_if_token3] = ACTIONS(3640), + [aux_sym_preproc_else_token1] = ACTIONS(3640), + [aux_sym_preproc_elif_token1] = ACTIONS(3640), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -414582,7 +414272,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2348] = { - [sym_type_argument_list] = STATE(2183), + [sym__name] = STATE(5084), + [sym_alias_qualified_name] = STATE(2976), + [sym__simple_name] = STATE(2976), + [sym_qualified_name] = STATE(2976), + [sym_generic_name] = STATE(3030), + [sym_ref_type] = STATE(3000), + [sym__scoped_base_type] = STATE(3001), + [sym_identifier] = STATE(4356), + [sym__reserved_identifier] = STATE(2916), [sym_preproc_region] = STATE(2348), [sym_preproc_endregion] = STATE(2348), [sym_preproc_line] = STATE(2348), @@ -414592,78 +414290,69 @@ 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(3660), - [anon_sym_alias] = ACTIONS(3660), - [anon_sym_global] = ACTIONS(3660), - [anon_sym_EQ] = ACTIONS(3660), - [anon_sym_LBRACK] = ACTIONS(3662), - [anon_sym_COLON] = ACTIONS(4020), - [anon_sym_LPAREN] = ACTIONS(3662), - [anon_sym_file] = ACTIONS(3660), - [anon_sym_LT] = ACTIONS(3664), - [anon_sym_GT] = ACTIONS(3660), - [anon_sym_where] = ACTIONS(3660), - [anon_sym_QMARK] = ACTIONS(3660), - [anon_sym_notnull] = ACTIONS(3660), - [anon_sym_unmanaged] = ACTIONS(3660), - [anon_sym_BANG] = ACTIONS(3660), - [anon_sym_PLUS_PLUS] = ACTIONS(3662), - [anon_sym_DASH_DASH] = ACTIONS(3662), - [anon_sym_PLUS] = ACTIONS(3660), - [anon_sym_DASH] = ACTIONS(3660), - [anon_sym_STAR] = ACTIONS(3660), - [anon_sym_SLASH] = ACTIONS(3660), - [anon_sym_PERCENT] = ACTIONS(3660), - [anon_sym_CARET] = ACTIONS(3660), - [anon_sym_PIPE] = ACTIONS(3660), - [anon_sym_AMP] = ACTIONS(3660), - [anon_sym_LT_LT] = ACTIONS(3660), - [anon_sym_GT_GT] = ACTIONS(3660), - [anon_sym_GT_GT_GT] = ACTIONS(3660), - [anon_sym_EQ_EQ] = ACTIONS(3662), - [anon_sym_BANG_EQ] = ACTIONS(3662), - [anon_sym_GT_EQ] = ACTIONS(3662), - [anon_sym_LT_EQ] = ACTIONS(3662), - [anon_sym_DOT] = ACTIONS(3660), - [anon_sym_scoped] = ACTIONS(3660), - [anon_sym_EQ_GT] = ACTIONS(3667), - [anon_sym_COLON_COLON] = ACTIONS(3669), - [anon_sym_var] = ACTIONS(3660), - [anon_sym_yield] = ACTIONS(3660), - [anon_sym_switch] = ACTIONS(3660), - [anon_sym_when] = ACTIONS(3660), - [anon_sym_DOT_DOT] = ACTIONS(3662), - [anon_sym_PLUS_EQ] = ACTIONS(3662), - [anon_sym_DASH_EQ] = ACTIONS(3662), - [anon_sym_STAR_EQ] = ACTIONS(3662), - [anon_sym_SLASH_EQ] = ACTIONS(3662), - [anon_sym_PERCENT_EQ] = ACTIONS(3662), - [anon_sym_AMP_EQ] = ACTIONS(3662), - [anon_sym_CARET_EQ] = ACTIONS(3662), - [anon_sym_PIPE_EQ] = ACTIONS(3662), - [anon_sym_LT_LT_EQ] = ACTIONS(3662), - [anon_sym_GT_GT_EQ] = ACTIONS(3662), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3662), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3662), - [anon_sym_AMP_AMP] = ACTIONS(3662), - [anon_sym_PIPE_PIPE] = ACTIONS(3662), - [anon_sym_QMARK_QMARK] = ACTIONS(3660), - [anon_sym_from] = ACTIONS(3660), - [anon_sym_into] = ACTIONS(3660), - [anon_sym_join] = ACTIONS(3660), - [anon_sym_on] = ACTIONS(3660), - [anon_sym_equals] = ACTIONS(3660), - [anon_sym_let] = ACTIONS(3660), - [anon_sym_orderby] = ACTIONS(3660), - [anon_sym_ascending] = ACTIONS(3660), - [anon_sym_descending] = ACTIONS(3660), - [anon_sym_group] = ACTIONS(3660), - [anon_sym_by] = ACTIONS(3660), - [anon_sym_select] = ACTIONS(3660), - [anon_sym_as] = ACTIONS(3660), - [anon_sym_is] = ACTIONS(3660), - [anon_sym_DASH_GT] = ACTIONS(3662), - [anon_sym_with] = ACTIONS(3660), + [sym__identifier_token] = ACTIONS(3871), + [anon_sym_alias] = ACTIONS(3873), + [anon_sym_global] = ACTIONS(3873), + [anon_sym_LBRACK] = ACTIONS(3429), + [anon_sym_COLON] = ACTIONS(3431), + [anon_sym_COMMA] = ACTIONS(3429), + [anon_sym_LPAREN] = ACTIONS(3429), + [anon_sym_RPAREN] = ACTIONS(3429), + [anon_sym_ref] = ACTIONS(4007), + [anon_sym_LBRACE] = ACTIONS(3429), + [anon_sym_RBRACE] = ACTIONS(3429), + [anon_sym_file] = ACTIONS(3873), + [anon_sym_LT] = ACTIONS(3431), + [anon_sym_GT] = ACTIONS(3431), + [anon_sym_where] = ACTIONS(3873), + [anon_sym_QMARK] = ACTIONS(3431), + [anon_sym_notnull] = ACTIONS(3873), + [anon_sym_unmanaged] = ACTIONS(3873), + [anon_sym_BANG] = ACTIONS(3431), + [anon_sym_PLUS_PLUS] = ACTIONS(3429), + [anon_sym_DASH_DASH] = ACTIONS(3429), + [anon_sym_PLUS] = ACTIONS(3431), + [anon_sym_DASH] = ACTIONS(3431), + [anon_sym_STAR] = ACTIONS(3429), + [anon_sym_SLASH] = ACTIONS(3431), + [anon_sym_PERCENT] = ACTIONS(3429), + [anon_sym_CARET] = ACTIONS(3429), + [anon_sym_PIPE] = ACTIONS(3431), + [anon_sym_AMP] = ACTIONS(3431), + [anon_sym_LT_LT] = ACTIONS(3429), + [anon_sym_GT_GT] = ACTIONS(3431), + [anon_sym_GT_GT_GT] = ACTIONS(3429), + [anon_sym_EQ_EQ] = ACTIONS(3429), + [anon_sym_BANG_EQ] = ACTIONS(3429), + [anon_sym_GT_EQ] = ACTIONS(3429), + [anon_sym_LT_EQ] = ACTIONS(3429), + [anon_sym_DOT] = ACTIONS(3431), + [anon_sym_scoped] = ACTIONS(3873), + [anon_sym_COLON_COLON] = ACTIONS(3429), + [anon_sym_var] = ACTIONS(3873), + [anon_sym_yield] = ACTIONS(3873), + [anon_sym_switch] = ACTIONS(3431), + [anon_sym_when] = ACTIONS(3873), + [anon_sym_DOT_DOT] = ACTIONS(3429), + [anon_sym_AMP_AMP] = ACTIONS(3429), + [anon_sym_PIPE_PIPE] = ACTIONS(3429), + [anon_sym_QMARK_QMARK] = ACTIONS(3429), + [anon_sym_from] = ACTIONS(3873), + [anon_sym_into] = ACTIONS(3873), + [anon_sym_join] = ACTIONS(3873), + [anon_sym_on] = ACTIONS(3873), + [anon_sym_equals] = ACTIONS(3873), + [anon_sym_let] = ACTIONS(3873), + [anon_sym_orderby] = ACTIONS(3873), + [anon_sym_ascending] = ACTIONS(3873), + [anon_sym_descending] = ACTIONS(3873), + [anon_sym_group] = ACTIONS(3873), + [anon_sym_by] = ACTIONS(3873), + [anon_sym_select] = ACTIONS(3873), + [anon_sym_as] = ACTIONS(3431), + [anon_sym_is] = ACTIONS(3431), + [anon_sym_DASH_GT] = ACTIONS(3429), + [anon_sym_with] = ACTIONS(3431), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -414685,79 +414374,78 @@ 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(3699), - [anon_sym_alias] = ACTIONS(3699), - [anon_sym_global] = ACTIONS(3699), - [anon_sym_EQ] = ACTIONS(3704), - [anon_sym_LBRACK] = ACTIONS(3706), - [anon_sym_LPAREN] = ACTIONS(3706), - [anon_sym_LBRACE] = ACTIONS(3710), - [anon_sym_file] = ACTIONS(3699), - [anon_sym_LT] = ACTIONS(3712), - [anon_sym_GT] = ACTIONS(3712), - [anon_sym_where] = ACTIONS(3699), - [anon_sym_QMARK] = ACTIONS(3712), - [anon_sym_notnull] = ACTIONS(3699), - [anon_sym_unmanaged] = ACTIONS(3699), - [anon_sym_BANG] = ACTIONS(3712), - [anon_sym_PLUS_PLUS] = ACTIONS(3706), - [anon_sym_DASH_DASH] = ACTIONS(3706), - [anon_sym_PLUS] = ACTIONS(3712), - [anon_sym_DASH] = ACTIONS(3712), - [anon_sym_STAR] = ACTIONS(3712), - [anon_sym_SLASH] = ACTIONS(3712), - [anon_sym_PERCENT] = ACTIONS(3712), - [anon_sym_CARET] = ACTIONS(3712), - [anon_sym_PIPE] = ACTIONS(3712), - [anon_sym_AMP] = ACTIONS(3712), - [anon_sym_LT_LT] = ACTIONS(3712), - [anon_sym_GT_GT] = ACTIONS(3712), - [anon_sym_GT_GT_GT] = ACTIONS(3712), - [anon_sym_EQ_EQ] = ACTIONS(3706), - [anon_sym_BANG_EQ] = ACTIONS(3706), - [anon_sym_GT_EQ] = ACTIONS(3706), - [anon_sym_LT_EQ] = ACTIONS(3706), - [anon_sym_DOT] = ACTIONS(3712), - [anon_sym_scoped] = ACTIONS(3699), - [anon_sym_var] = ACTIONS(3699), - [anon_sym_yield] = ACTIONS(3699), - [anon_sym_switch] = ACTIONS(3712), - [anon_sym_when] = ACTIONS(3699), - [sym_discard] = ACTIONS(3699), - [anon_sym_DOT_DOT] = ACTIONS(3706), - [anon_sym_and] = ACTIONS(3716), - [anon_sym_or] = ACTIONS(3716), - [anon_sym_PLUS_EQ] = ACTIONS(3719), - [anon_sym_DASH_EQ] = ACTIONS(3719), - [anon_sym_STAR_EQ] = ACTIONS(3719), - [anon_sym_SLASH_EQ] = ACTIONS(3719), - [anon_sym_PERCENT_EQ] = ACTIONS(3719), - [anon_sym_AMP_EQ] = ACTIONS(3719), - [anon_sym_CARET_EQ] = ACTIONS(3719), - [anon_sym_PIPE_EQ] = ACTIONS(3719), - [anon_sym_LT_LT_EQ] = ACTIONS(3719), - [anon_sym_GT_GT_EQ] = ACTIONS(3719), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3719), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3719), - [anon_sym_AMP_AMP] = ACTIONS(3706), - [anon_sym_PIPE_PIPE] = ACTIONS(3706), - [anon_sym_QMARK_QMARK] = ACTIONS(3712), - [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_ascending] = ACTIONS(3699), - [anon_sym_descending] = ACTIONS(3699), - [anon_sym_group] = ACTIONS(3699), - [anon_sym_by] = ACTIONS(3716), - [anon_sym_select] = ACTIONS(3699), - [anon_sym_as] = ACTIONS(3712), - [anon_sym_is] = ACTIONS(3712), - [anon_sym_DASH_GT] = ACTIONS(3706), - [anon_sym_with] = ACTIONS(3712), + [sym__identifier_token] = ACTIONS(3691), + [anon_sym_alias] = ACTIONS(3691), + [anon_sym_global] = ACTIONS(3691), + [anon_sym_EQ] = ACTIONS(3696), + [anon_sym_LBRACK] = ACTIONS(3713), + [anon_sym_COMMA] = ACTIONS(3711), + [anon_sym_LPAREN] = ACTIONS(3713), + [anon_sym_file] = ACTIONS(3691), + [anon_sym_LT] = ACTIONS(3696), + [anon_sym_GT] = ACTIONS(3696), + [anon_sym_where] = ACTIONS(3716), + [anon_sym_QMARK] = ACTIONS(3716), + [anon_sym_notnull] = ACTIONS(3691), + [anon_sym_unmanaged] = ACTIONS(3691), + [anon_sym_BANG] = ACTIONS(3696), + [anon_sym_PLUS_PLUS] = ACTIONS(3711), + [anon_sym_DASH_DASH] = ACTIONS(3711), + [anon_sym_PLUS] = ACTIONS(3696), + [anon_sym_DASH] = ACTIONS(3696), + [anon_sym_STAR] = ACTIONS(3716), + [anon_sym_SLASH] = ACTIONS(3696), + [anon_sym_PERCENT] = ACTIONS(3696), + [anon_sym_CARET] = ACTIONS(3696), + [anon_sym_PIPE] = ACTIONS(3696), + [anon_sym_AMP] = ACTIONS(3696), + [anon_sym_LT_LT] = ACTIONS(3696), + [anon_sym_GT_GT] = ACTIONS(3696), + [anon_sym_GT_GT_GT] = ACTIONS(3696), + [anon_sym_EQ_EQ] = ACTIONS(3711), + [anon_sym_BANG_EQ] = ACTIONS(3711), + [anon_sym_GT_EQ] = ACTIONS(3711), + [anon_sym_LT_EQ] = ACTIONS(3711), + [anon_sym_DOT] = ACTIONS(3716), + [anon_sym_scoped] = ACTIONS(3691), + [anon_sym_var] = ACTIONS(3691), + [anon_sym_yield] = ACTIONS(3691), + [anon_sym_switch] = ACTIONS(3696), + [anon_sym_when] = ACTIONS(3691), + [anon_sym_DOT_DOT] = ACTIONS(3711), + [anon_sym_and] = ACTIONS(3696), + [anon_sym_or] = ACTIONS(3696), + [anon_sym_PLUS_EQ] = ACTIONS(3711), + [anon_sym_DASH_EQ] = ACTIONS(3711), + [anon_sym_STAR_EQ] = ACTIONS(3711), + [anon_sym_SLASH_EQ] = ACTIONS(3711), + [anon_sym_PERCENT_EQ] = ACTIONS(3711), + [anon_sym_AMP_EQ] = ACTIONS(3711), + [anon_sym_CARET_EQ] = ACTIONS(3711), + [anon_sym_PIPE_EQ] = ACTIONS(3711), + [anon_sym_LT_LT_EQ] = ACTIONS(3711), + [anon_sym_GT_GT_EQ] = ACTIONS(3711), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3711), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3711), + [anon_sym_AMP_AMP] = ACTIONS(3711), + [anon_sym_PIPE_PIPE] = ACTIONS(3711), + [anon_sym_QMARK_QMARK] = ACTIONS(3696), + [anon_sym_from] = ACTIONS(3716), + [anon_sym_into] = ACTIONS(3716), + [anon_sym_join] = ACTIONS(3716), + [anon_sym_on] = ACTIONS(3691), + [anon_sym_equals] = ACTIONS(3691), + [anon_sym_let] = ACTIONS(3716), + [anon_sym_orderby] = ACTIONS(3716), + [anon_sym_ascending] = ACTIONS(3716), + [anon_sym_descending] = ACTIONS(3716), + [anon_sym_group] = ACTIONS(3716), + [anon_sym_by] = ACTIONS(3691), + [anon_sym_select] = ACTIONS(3716), + [anon_sym_as] = ACTIONS(3696), + [anon_sym_is] = ACTIONS(3696), + [anon_sym_DASH_GT] = ACTIONS(3713), + [anon_sym_with] = ACTIONS(3696), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -414779,79 +414467,78 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2350), [sym_preproc_define] = STATE(2350), [sym_preproc_undef] = STATE(2350), - [sym__identifier_token] = ACTIONS(3699), - [anon_sym_alias] = ACTIONS(3699), - [anon_sym_global] = ACTIONS(3699), - [anon_sym_EQ] = ACTIONS(3704), - [anon_sym_LBRACK] = ACTIONS(3706), - [anon_sym_LPAREN] = ACTIONS(3706), - [anon_sym_LBRACE] = ACTIONS(3710), - [anon_sym_file] = ACTIONS(3699), - [anon_sym_LT] = ACTIONS(3712), - [anon_sym_GT] = ACTIONS(3712), - [anon_sym_where] = ACTIONS(3699), - [anon_sym_QMARK] = ACTIONS(3712), - [anon_sym_notnull] = ACTIONS(3699), - [anon_sym_unmanaged] = ACTIONS(3699), - [anon_sym_BANG] = ACTIONS(3712), - [anon_sym_PLUS_PLUS] = ACTIONS(3706), - [anon_sym_DASH_DASH] = ACTIONS(3706), - [anon_sym_PLUS] = ACTIONS(3712), - [anon_sym_DASH] = ACTIONS(3712), - [anon_sym_STAR] = ACTIONS(3712), - [anon_sym_SLASH] = ACTIONS(3712), - [anon_sym_PERCENT] = ACTIONS(3712), - [anon_sym_CARET] = ACTIONS(3712), - [anon_sym_PIPE] = ACTIONS(3712), - [anon_sym_AMP] = ACTIONS(3712), - [anon_sym_LT_LT] = ACTIONS(3712), - [anon_sym_GT_GT] = ACTIONS(3712), - [anon_sym_GT_GT_GT] = ACTIONS(3712), - [anon_sym_EQ_EQ] = ACTIONS(3706), - [anon_sym_BANG_EQ] = ACTIONS(3706), - [anon_sym_GT_EQ] = ACTIONS(3706), - [anon_sym_LT_EQ] = ACTIONS(3706), - [anon_sym_DOT] = ACTIONS(3712), - [anon_sym_scoped] = ACTIONS(3699), - [anon_sym_var] = ACTIONS(3699), - [anon_sym_yield] = ACTIONS(3699), - [anon_sym_switch] = ACTIONS(3712), - [anon_sym_when] = ACTIONS(3699), - [sym_discard] = ACTIONS(3699), - [anon_sym_DOT_DOT] = ACTIONS(3706), - [anon_sym_and] = ACTIONS(3716), - [anon_sym_or] = ACTIONS(3716), - [anon_sym_PLUS_EQ] = ACTIONS(3719), - [anon_sym_DASH_EQ] = ACTIONS(3719), - [anon_sym_STAR_EQ] = ACTIONS(3719), - [anon_sym_SLASH_EQ] = ACTIONS(3719), - [anon_sym_PERCENT_EQ] = ACTIONS(3719), - [anon_sym_AMP_EQ] = ACTIONS(3719), - [anon_sym_CARET_EQ] = ACTIONS(3719), - [anon_sym_PIPE_EQ] = ACTIONS(3719), - [anon_sym_LT_LT_EQ] = ACTIONS(3719), - [anon_sym_GT_GT_EQ] = ACTIONS(3719), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3719), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3719), - [anon_sym_AMP_AMP] = ACTIONS(3706), - [anon_sym_PIPE_PIPE] = ACTIONS(3706), - [anon_sym_QMARK_QMARK] = ACTIONS(3712), - [anon_sym_from] = ACTIONS(3699), - [anon_sym_into] = ACTIONS(3716), - [anon_sym_join] = ACTIONS(3699), - [anon_sym_on] = ACTIONS(3716), - [anon_sym_equals] = ACTIONS(3699), - [anon_sym_let] = ACTIONS(3699), - [anon_sym_orderby] = ACTIONS(3699), - [anon_sym_ascending] = ACTIONS(3699), - [anon_sym_descending] = ACTIONS(3699), - [anon_sym_group] = ACTIONS(3699), - [anon_sym_by] = ACTIONS(3699), - [anon_sym_select] = ACTIONS(3699), - [anon_sym_as] = ACTIONS(3712), - [anon_sym_is] = ACTIONS(3712), - [anon_sym_DASH_GT] = ACTIONS(3706), - [anon_sym_with] = ACTIONS(3712), + [sym__identifier_token] = ACTIONS(3431), + [anon_sym_alias] = ACTIONS(3431), + [anon_sym_SEMI] = ACTIONS(3429), + [anon_sym_global] = ACTIONS(3431), + [anon_sym_LBRACK] = ACTIONS(3429), + [anon_sym_COLON] = ACTIONS(3431), + [anon_sym_COMMA] = ACTIONS(3429), + [anon_sym_RBRACK] = ACTIONS(3429), + [anon_sym_LPAREN] = ACTIONS(3429), + [anon_sym_RPAREN] = ACTIONS(3429), + [anon_sym_LBRACE] = ACTIONS(3429), + [anon_sym_RBRACE] = ACTIONS(3429), + [anon_sym_file] = ACTIONS(3431), + [anon_sym_LT] = ACTIONS(3431), + [anon_sym_GT] = ACTIONS(3431), + [anon_sym_in] = ACTIONS(3431), + [anon_sym_where] = ACTIONS(3431), + [anon_sym_QMARK] = ACTIONS(3431), + [anon_sym_notnull] = ACTIONS(3431), + [anon_sym_unmanaged] = ACTIONS(3431), + [anon_sym_BANG] = ACTIONS(3431), + [anon_sym_PLUS_PLUS] = ACTIONS(3429), + [anon_sym_DASH_DASH] = ACTIONS(3429), + [anon_sym_PLUS] = ACTIONS(3431), + [anon_sym_DASH] = ACTIONS(3431), + [anon_sym_STAR] = ACTIONS(3429), + [anon_sym_SLASH] = ACTIONS(3431), + [anon_sym_PERCENT] = ACTIONS(3429), + [anon_sym_CARET] = ACTIONS(3429), + [anon_sym_PIPE] = ACTIONS(3431), + [anon_sym_AMP] = ACTIONS(3431), + [anon_sym_LT_LT] = ACTIONS(3429), + [anon_sym_GT_GT] = ACTIONS(3431), + [anon_sym_GT_GT_GT] = ACTIONS(3429), + [anon_sym_EQ_EQ] = ACTIONS(3429), + [anon_sym_BANG_EQ] = ACTIONS(3429), + [anon_sym_GT_EQ] = ACTIONS(3429), + [anon_sym_LT_EQ] = ACTIONS(3429), + [anon_sym_DOT] = ACTIONS(3431), + [anon_sym_scoped] = ACTIONS(3431), + [anon_sym_EQ_GT] = ACTIONS(3429), + [anon_sym_COLON_COLON] = ACTIONS(3429), + [anon_sym_var] = ACTIONS(3431), + [anon_sym_yield] = ACTIONS(3431), + [anon_sym_switch] = ACTIONS(3431), + [anon_sym_when] = ACTIONS(3431), + [sym_discard] = ACTIONS(3431), + [anon_sym_DOT_DOT] = ACTIONS(3429), + [anon_sym_and] = ACTIONS(3431), + [anon_sym_or] = ACTIONS(3431), + [anon_sym_AMP_AMP] = ACTIONS(3429), + [anon_sym_PIPE_PIPE] = ACTIONS(3429), + [anon_sym_QMARK_QMARK] = ACTIONS(3429), + [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_as] = ACTIONS(3431), + [anon_sym_is] = ACTIONS(3431), + [anon_sym_DASH_GT] = ACTIONS(3429), + [anon_sym_with] = ACTIONS(3431), + [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), @@ -414864,6 +414551,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2351] = { + [sym_type_argument_list] = STATE(2395), [sym_preproc_region] = STATE(2351), [sym_preproc_endregion] = STATE(2351), [sym_preproc_line] = STATE(2351), @@ -414873,79 +414561,77 @@ 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(3447), - [anon_sym_alias] = ACTIONS(3447), - [anon_sym_global] = ACTIONS(3447), - [anon_sym_using] = ACTIONS(4022), - [anon_sym_EQ] = ACTIONS(3447), - [anon_sym_LBRACK] = ACTIONS(3445), - [anon_sym_COLON] = ACTIONS(3447), - [anon_sym_LPAREN] = ACTIONS(3445), - [anon_sym_file] = ACTIONS(3447), - [anon_sym_LT] = ACTIONS(3447), - [anon_sym_GT] = ACTIONS(3447), - [anon_sym_where] = ACTIONS(3447), - [anon_sym_QMARK] = ACTIONS(3447), - [anon_sym_notnull] = ACTIONS(3447), - [anon_sym_unmanaged] = ACTIONS(3447), - [anon_sym_BANG] = ACTIONS(3447), - [anon_sym_PLUS_PLUS] = ACTIONS(3445), - [anon_sym_DASH_DASH] = ACTIONS(3445), - [anon_sym_PLUS] = ACTIONS(3447), - [anon_sym_DASH] = ACTIONS(3447), - [anon_sym_STAR] = ACTIONS(3447), - [anon_sym_SLASH] = ACTIONS(3447), - [anon_sym_PERCENT] = ACTIONS(3447), - [anon_sym_CARET] = ACTIONS(3447), - [anon_sym_PIPE] = ACTIONS(3447), - [anon_sym_AMP] = ACTIONS(3447), - [anon_sym_LT_LT] = ACTIONS(3447), - [anon_sym_GT_GT] = ACTIONS(3447), - [anon_sym_GT_GT_GT] = ACTIONS(3447), - [anon_sym_EQ_EQ] = ACTIONS(3445), - [anon_sym_BANG_EQ] = ACTIONS(3445), - [anon_sym_GT_EQ] = ACTIONS(3445), - [anon_sym_LT_EQ] = ACTIONS(3445), - [anon_sym_DOT] = ACTIONS(3447), - [anon_sym_scoped] = ACTIONS(3447), - [anon_sym_EQ_GT] = ACTIONS(3445), - [anon_sym_COLON_COLON] = ACTIONS(3445), - [anon_sym_var] = ACTIONS(3447), - [anon_sym_yield] = ACTIONS(3447), - [anon_sym_switch] = ACTIONS(3447), - [anon_sym_when] = ACTIONS(3447), - [anon_sym_DOT_DOT] = ACTIONS(3445), - [anon_sym_PLUS_EQ] = ACTIONS(3445), - [anon_sym_DASH_EQ] = ACTIONS(3445), - [anon_sym_STAR_EQ] = ACTIONS(3445), - [anon_sym_SLASH_EQ] = ACTIONS(3445), - [anon_sym_PERCENT_EQ] = ACTIONS(3445), - [anon_sym_AMP_EQ] = ACTIONS(3445), - [anon_sym_CARET_EQ] = ACTIONS(3445), - [anon_sym_PIPE_EQ] = ACTIONS(3445), - [anon_sym_LT_LT_EQ] = ACTIONS(3445), - [anon_sym_GT_GT_EQ] = ACTIONS(3445), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3445), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3445), - [anon_sym_AMP_AMP] = ACTIONS(3445), - [anon_sym_PIPE_PIPE] = ACTIONS(3445), - [anon_sym_QMARK_QMARK] = ACTIONS(3447), - [anon_sym_from] = ACTIONS(3447), - [anon_sym_into] = ACTIONS(3447), - [anon_sym_join] = ACTIONS(3447), - [anon_sym_on] = ACTIONS(3447), - [anon_sym_equals] = ACTIONS(3447), - [anon_sym_let] = ACTIONS(3447), - [anon_sym_orderby] = ACTIONS(3447), - [anon_sym_ascending] = ACTIONS(3447), - [anon_sym_descending] = ACTIONS(3447), - [anon_sym_group] = ACTIONS(3447), - [anon_sym_by] = ACTIONS(3447), - [anon_sym_select] = ACTIONS(3447), - [anon_sym_as] = ACTIONS(3447), - [anon_sym_is] = ACTIONS(3447), - [anon_sym_DASH_GT] = ACTIONS(3445), - [anon_sym_with] = ACTIONS(3447), + [sym__identifier_token] = ACTIONS(3638), + [anon_sym_alias] = ACTIONS(3638), + [anon_sym_SEMI] = ACTIONS(3640), + [anon_sym_global] = ACTIONS(3638), + [anon_sym_LBRACK] = ACTIONS(3640), + [anon_sym_COMMA] = ACTIONS(3640), + [anon_sym_RBRACK] = ACTIONS(3640), + [anon_sym_LPAREN] = ACTIONS(3640), + [anon_sym_RPAREN] = ACTIONS(3640), + [anon_sym_LBRACE] = ACTIONS(3640), + [anon_sym_RBRACE] = ACTIONS(3640), + [anon_sym_file] = ACTIONS(3638), + [anon_sym_LT] = ACTIONS(4004), + [anon_sym_GT] = ACTIONS(3638), + [anon_sym_in] = ACTIONS(3638), + [anon_sym_where] = ACTIONS(3638), + [anon_sym_QMARK] = ACTIONS(3638), + [anon_sym_notnull] = ACTIONS(3638), + [anon_sym_unmanaged] = ACTIONS(3638), + [anon_sym_BANG] = ACTIONS(3638), + [anon_sym_PLUS_PLUS] = ACTIONS(3640), + [anon_sym_DASH_DASH] = ACTIONS(3640), + [anon_sym_PLUS] = ACTIONS(3638), + [anon_sym_DASH] = ACTIONS(3638), + [anon_sym_STAR] = ACTIONS(3640), + [anon_sym_SLASH] = ACTIONS(3638), + [anon_sym_PERCENT] = ACTIONS(3640), + [anon_sym_CARET] = ACTIONS(3640), + [anon_sym_PIPE] = ACTIONS(3638), + [anon_sym_AMP] = ACTIONS(3638), + [anon_sym_LT_LT] = ACTIONS(3640), + [anon_sym_GT_GT] = ACTIONS(3638), + [anon_sym_GT_GT_GT] = ACTIONS(3640), + [anon_sym_EQ_EQ] = ACTIONS(3640), + [anon_sym_BANG_EQ] = ACTIONS(3640), + [anon_sym_GT_EQ] = ACTIONS(3640), + [anon_sym_LT_EQ] = ACTIONS(3640), + [anon_sym_DOT] = ACTIONS(3638), + [anon_sym_scoped] = ACTIONS(3638), + [anon_sym_EQ_GT] = ACTIONS(3640), + [anon_sym_COLON_COLON] = ACTIONS(3667), + [anon_sym_var] = ACTIONS(3638), + [anon_sym_yield] = ACTIONS(3638), + [anon_sym_switch] = ACTIONS(3638), + [anon_sym_when] = ACTIONS(3638), + [sym_discard] = ACTIONS(3638), + [anon_sym_DOT_DOT] = ACTIONS(3640), + [anon_sym_and] = ACTIONS(3638), + [anon_sym_or] = ACTIONS(3638), + [anon_sym_AMP_AMP] = ACTIONS(3640), + [anon_sym_PIPE_PIPE] = ACTIONS(3640), + [anon_sym_QMARK_QMARK] = ACTIONS(3640), + [anon_sym_from] = ACTIONS(3638), + [anon_sym_into] = ACTIONS(3638), + [anon_sym_join] = ACTIONS(3638), + [anon_sym_on] = ACTIONS(3638), + [anon_sym_equals] = ACTIONS(3638), + [anon_sym_let] = ACTIONS(3638), + [anon_sym_orderby] = ACTIONS(3638), + [anon_sym_ascending] = ACTIONS(3638), + [anon_sym_descending] = ACTIONS(3638), + [anon_sym_group] = ACTIONS(3638), + [anon_sym_by] = ACTIONS(3638), + [anon_sym_select] = ACTIONS(3638), + [anon_sym_as] = ACTIONS(3638), + [anon_sym_is] = ACTIONS(3638), + [anon_sym_DASH_GT] = ACTIONS(3640), + [anon_sym_with] = ACTIONS(3638), + [aux_sym_preproc_if_token3] = ACTIONS(3640), + [aux_sym_preproc_else_token1] = ACTIONS(3640), + [aux_sym_preproc_elif_token1] = ACTIONS(3640), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -414958,6 +414644,26 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2352] = { + [sym_modifier] = STATE(3114), + [sym_variable_declaration] = STATE(7308), + [sym__name] = STATE(4369), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(4068), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(4073), + [sym_type] = STATE(5911), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_identifier] = STATE(4081), + [sym__reserved_identifier] = STATE(3654), [sym_preproc_region] = STATE(2352), [sym_preproc_endregion] = STATE(2352), [sym_preproc_line] = STATE(2352), @@ -414967,79 +414673,58 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2352), [sym_preproc_define] = STATE(2352), [sym_preproc_undef] = STATE(2352), - [sym__identifier_token] = ACTIONS(3699), - [anon_sym_alias] = ACTIONS(3699), - [anon_sym_global] = ACTIONS(3699), - [anon_sym_EQ] = ACTIONS(3704), - [anon_sym_LBRACK] = ACTIONS(3706), - [anon_sym_LPAREN] = ACTIONS(3706), - [anon_sym_LBRACE] = ACTIONS(3710), - [anon_sym_file] = ACTIONS(3699), - [anon_sym_LT] = ACTIONS(3712), - [anon_sym_GT] = ACTIONS(3712), - [anon_sym_where] = ACTIONS(3699), - [anon_sym_QMARK] = ACTIONS(3712), - [anon_sym_notnull] = ACTIONS(3699), - [anon_sym_unmanaged] = ACTIONS(3699), - [anon_sym_BANG] = ACTIONS(3712), - [anon_sym_PLUS_PLUS] = ACTIONS(3706), - [anon_sym_DASH_DASH] = ACTIONS(3706), - [anon_sym_PLUS] = ACTIONS(3712), - [anon_sym_DASH] = ACTIONS(3712), - [anon_sym_STAR] = ACTIONS(3712), - [anon_sym_SLASH] = ACTIONS(3712), - [anon_sym_PERCENT] = ACTIONS(3712), - [anon_sym_CARET] = ACTIONS(3712), - [anon_sym_PIPE] = ACTIONS(3712), - [anon_sym_AMP] = ACTIONS(3712), - [anon_sym_LT_LT] = ACTIONS(3712), - [anon_sym_GT_GT] = ACTIONS(3712), - [anon_sym_GT_GT_GT] = ACTIONS(3712), - [anon_sym_EQ_EQ] = ACTIONS(3706), - [anon_sym_BANG_EQ] = ACTIONS(3706), - [anon_sym_GT_EQ] = ACTIONS(3706), - [anon_sym_LT_EQ] = ACTIONS(3706), - [anon_sym_DOT] = ACTIONS(3712), - [anon_sym_scoped] = ACTIONS(3699), - [anon_sym_var] = ACTIONS(3699), - [anon_sym_yield] = ACTIONS(3699), - [anon_sym_switch] = ACTIONS(3712), - [anon_sym_when] = ACTIONS(3699), - [sym_discard] = ACTIONS(3699), - [anon_sym_DOT_DOT] = ACTIONS(3706), - [anon_sym_and] = ACTIONS(3716), - [anon_sym_or] = ACTIONS(3716), - [anon_sym_PLUS_EQ] = ACTIONS(3719), - [anon_sym_DASH_EQ] = ACTIONS(3719), - [anon_sym_STAR_EQ] = ACTIONS(3719), - [anon_sym_SLASH_EQ] = ACTIONS(3719), - [anon_sym_PERCENT_EQ] = ACTIONS(3719), - [anon_sym_AMP_EQ] = ACTIONS(3719), - [anon_sym_CARET_EQ] = ACTIONS(3719), - [anon_sym_PIPE_EQ] = ACTIONS(3719), - [anon_sym_LT_LT_EQ] = ACTIONS(3719), - [anon_sym_GT_GT_EQ] = ACTIONS(3719), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3719), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3719), - [anon_sym_AMP_AMP] = ACTIONS(3706), - [anon_sym_PIPE_PIPE] = ACTIONS(3706), - [anon_sym_QMARK_QMARK] = ACTIONS(3712), - [anon_sym_from] = ACTIONS(3699), - [anon_sym_into] = ACTIONS(3699), - [anon_sym_join] = ACTIONS(3699), - [anon_sym_on] = ACTIONS(3699), - [anon_sym_equals] = ACTIONS(3716), - [anon_sym_let] = ACTIONS(3699), - [anon_sym_orderby] = ACTIONS(3699), - [anon_sym_ascending] = ACTIONS(3699), - [anon_sym_descending] = ACTIONS(3699), - [anon_sym_group] = ACTIONS(3699), - [anon_sym_by] = ACTIONS(3699), - [anon_sym_select] = ACTIONS(3699), - [anon_sym_as] = ACTIONS(3712), - [anon_sym_is] = ACTIONS(3712), - [anon_sym_DASH_GT] = ACTIONS(3706), - [anon_sym_with] = ACTIONS(3712), + [aux_sym__class_declaration_initializer_repeat2] = STATE(3065), + [sym__identifier_token] = ACTIONS(2965), + [anon_sym_extern] = ACTIONS(65), + [anon_sym_alias] = ACTIONS(2969), + [anon_sym_global] = ACTIONS(2969), + [anon_sym_unsafe] = ACTIONS(65), + [anon_sym_static] = ACTIONS(65), + [anon_sym_LPAREN] = ACTIONS(2977), + [anon_sym_class] = ACTIONS(3739), + [anon_sym_ref] = ACTIONS(3741), + [anon_sym_struct] = ACTIONS(2823), + [anon_sym_enum] = ACTIONS(3743), + [anon_sym_interface] = ACTIONS(3745), + [anon_sym_delegate] = ACTIONS(3747), + [anon_sym_record] = ACTIONS(3749), + [anon_sym_abstract] = ACTIONS(65), + [anon_sym_async] = ACTIONS(65), + [anon_sym_const] = ACTIONS(65), + [anon_sym_file] = ACTIONS(2987), + [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(2969), + [anon_sym_notnull] = ACTIONS(2969), + [anon_sym_unmanaged] = ACTIONS(2969), + [anon_sym_scoped] = ACTIONS(2993), + [anon_sym_var] = ACTIONS(2995), + [sym_predefined_type] = ACTIONS(2997), + [anon_sym_yield] = ACTIONS(2969), + [anon_sym_when] = ACTIONS(2969), + [anon_sym_from] = ACTIONS(2969), + [anon_sym_into] = ACTIONS(2969), + [anon_sym_join] = ACTIONS(2969), + [anon_sym_on] = ACTIONS(2969), + [anon_sym_equals] = ACTIONS(2969), + [anon_sym_let] = ACTIONS(2969), + [anon_sym_orderby] = ACTIONS(2969), + [anon_sym_ascending] = ACTIONS(2969), + [anon_sym_descending] = ACTIONS(2969), + [anon_sym_group] = ACTIONS(2969), + [anon_sym_by] = ACTIONS(2969), + [anon_sym_select] = ACTIONS(2969), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -415052,15 +414737,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2353] = { - [sym__name] = STATE(5024), - [sym_alias_qualified_name] = STATE(3029), - [sym__simple_name] = STATE(3029), - [sym_qualified_name] = STATE(3029), - [sym_generic_name] = STATE(2985), - [sym_ref_type] = STATE(3043), - [sym__scoped_base_type] = STATE(2963), - [sym_identifier] = STATE(4395), - [sym__reserved_identifier] = STATE(2945), [sym_preproc_region] = STATE(2353), [sym_preproc_endregion] = STATE(2353), [sym_preproc_line] = STATE(2353), @@ -415070,69 +414746,78 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2353), [sym_preproc_define] = STATE(2353), [sym_preproc_undef] = STATE(2353), - [sym__identifier_token] = ACTIONS(3887), - [anon_sym_alias] = ACTIONS(3889), - [anon_sym_global] = ACTIONS(3889), - [anon_sym_LBRACK] = ACTIONS(3445), - [anon_sym_COLON] = ACTIONS(3447), - [anon_sym_COMMA] = ACTIONS(3445), - [anon_sym_LPAREN] = ACTIONS(3445), - [anon_sym_RPAREN] = ACTIONS(3445), - [anon_sym_ref] = ACTIONS(4024), - [anon_sym_LBRACE] = ACTIONS(3445), - [anon_sym_RBRACE] = ACTIONS(3445), - [anon_sym_file] = ACTIONS(3889), - [anon_sym_LT] = ACTIONS(3447), - [anon_sym_GT] = ACTIONS(3447), - [anon_sym_where] = ACTIONS(3889), - [anon_sym_QMARK] = ACTIONS(3447), - [anon_sym_notnull] = ACTIONS(3889), - [anon_sym_unmanaged] = ACTIONS(3889), - [anon_sym_BANG] = ACTIONS(3447), - [anon_sym_PLUS_PLUS] = ACTIONS(3445), - [anon_sym_DASH_DASH] = ACTIONS(3445), - [anon_sym_PLUS] = ACTIONS(3447), - [anon_sym_DASH] = ACTIONS(3447), - [anon_sym_STAR] = ACTIONS(3445), - [anon_sym_SLASH] = ACTIONS(3447), - [anon_sym_PERCENT] = ACTIONS(3445), - [anon_sym_CARET] = ACTIONS(3445), - [anon_sym_PIPE] = ACTIONS(3447), - [anon_sym_AMP] = ACTIONS(3447), - [anon_sym_LT_LT] = ACTIONS(3445), - [anon_sym_GT_GT] = ACTIONS(3447), - [anon_sym_GT_GT_GT] = ACTIONS(3445), - [anon_sym_EQ_EQ] = ACTIONS(3445), - [anon_sym_BANG_EQ] = ACTIONS(3445), - [anon_sym_GT_EQ] = ACTIONS(3445), - [anon_sym_LT_EQ] = ACTIONS(3445), - [anon_sym_DOT] = ACTIONS(3447), - [anon_sym_scoped] = ACTIONS(3889), - [anon_sym_COLON_COLON] = ACTIONS(3445), - [anon_sym_var] = ACTIONS(3889), - [anon_sym_yield] = ACTIONS(3889), - [anon_sym_switch] = ACTIONS(3447), - [anon_sym_when] = ACTIONS(3889), - [anon_sym_DOT_DOT] = ACTIONS(3445), - [anon_sym_AMP_AMP] = ACTIONS(3445), - [anon_sym_PIPE_PIPE] = ACTIONS(3445), - [anon_sym_QMARK_QMARK] = ACTIONS(3445), - [anon_sym_from] = ACTIONS(3889), - [anon_sym_into] = ACTIONS(3889), - [anon_sym_join] = ACTIONS(3889), - [anon_sym_on] = ACTIONS(3889), - [anon_sym_equals] = ACTIONS(3889), - [anon_sym_let] = ACTIONS(3889), - [anon_sym_orderby] = ACTIONS(3889), - [anon_sym_ascending] = ACTIONS(3889), - [anon_sym_descending] = ACTIONS(3889), - [anon_sym_group] = ACTIONS(3889), - [anon_sym_by] = ACTIONS(3889), - [anon_sym_select] = ACTIONS(3889), - [anon_sym_as] = ACTIONS(3447), - [anon_sym_is] = ACTIONS(3447), - [anon_sym_DASH_GT] = ACTIONS(3445), - [anon_sym_with] = ACTIONS(3447), + [sym__identifier_token] = ACTIONS(3669), + [anon_sym_alias] = ACTIONS(3669), + [anon_sym_global] = ACTIONS(3669), + [anon_sym_EQ] = ACTIONS(3673), + [anon_sym_LBRACK] = ACTIONS(3675), + [anon_sym_COMMA] = ACTIONS(3671), + [anon_sym_LPAREN] = ACTIONS(3675), + [anon_sym_file] = ACTIONS(3669), + [anon_sym_LT] = ACTIONS(3673), + [anon_sym_GT] = ACTIONS(3673), + [anon_sym_where] = ACTIONS(3680), + [anon_sym_QMARK] = ACTIONS(3680), + [anon_sym_notnull] = ACTIONS(3669), + [anon_sym_unmanaged] = ACTIONS(3669), + [anon_sym_BANG] = ACTIONS(3673), + [anon_sym_PLUS_PLUS] = ACTIONS(3671), + [anon_sym_DASH_DASH] = ACTIONS(3671), + [anon_sym_PLUS] = ACTIONS(3673), + [anon_sym_DASH] = ACTIONS(3673), + [anon_sym_STAR] = ACTIONS(3680), + [anon_sym_SLASH] = ACTIONS(3673), + [anon_sym_PERCENT] = ACTIONS(3673), + [anon_sym_CARET] = ACTIONS(3673), + [anon_sym_PIPE] = ACTIONS(3673), + [anon_sym_AMP] = ACTIONS(3673), + [anon_sym_LT_LT] = ACTIONS(3673), + [anon_sym_GT_GT] = ACTIONS(3673), + [anon_sym_GT_GT_GT] = ACTIONS(3673), + [anon_sym_EQ_EQ] = ACTIONS(3671), + [anon_sym_BANG_EQ] = ACTIONS(3671), + [anon_sym_GT_EQ] = ACTIONS(3671), + [anon_sym_LT_EQ] = ACTIONS(3671), + [anon_sym_DOT] = ACTIONS(3680), + [anon_sym_scoped] = ACTIONS(3669), + [anon_sym_var] = ACTIONS(3669), + [anon_sym_yield] = ACTIONS(3669), + [anon_sym_switch] = ACTIONS(3673), + [anon_sym_when] = ACTIONS(3669), + [anon_sym_DOT_DOT] = ACTIONS(3671), + [anon_sym_and] = ACTIONS(3673), + [anon_sym_or] = ACTIONS(3673), + [anon_sym_PLUS_EQ] = ACTIONS(3671), + [anon_sym_DASH_EQ] = ACTIONS(3671), + [anon_sym_STAR_EQ] = ACTIONS(3671), + [anon_sym_SLASH_EQ] = ACTIONS(3671), + [anon_sym_PERCENT_EQ] = ACTIONS(3671), + [anon_sym_AMP_EQ] = ACTIONS(3671), + [anon_sym_CARET_EQ] = ACTIONS(3671), + [anon_sym_PIPE_EQ] = ACTIONS(3671), + [anon_sym_LT_LT_EQ] = ACTIONS(3671), + [anon_sym_GT_GT_EQ] = ACTIONS(3671), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3671), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3671), + [anon_sym_AMP_AMP] = ACTIONS(3671), + [anon_sym_PIPE_PIPE] = ACTIONS(3671), + [anon_sym_QMARK_QMARK] = ACTIONS(3673), + [anon_sym_from] = ACTIONS(3680), + [anon_sym_into] = ACTIONS(3669), + [anon_sym_join] = ACTIONS(3680), + [anon_sym_on] = ACTIONS(3669), + [anon_sym_equals] = ACTIONS(3669), + [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(3669), + [anon_sym_select] = ACTIONS(3680), + [anon_sym_as] = ACTIONS(3673), + [anon_sym_is] = ACTIONS(3673), + [anon_sym_DASH_GT] = ACTIONS(3675), + [anon_sym_with] = ACTIONS(3673), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -415145,15 +414830,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2354] = { - [sym__name] = STATE(3191), - [sym_alias_qualified_name] = STATE(3200), - [sym__simple_name] = STATE(3200), - [sym_qualified_name] = STATE(3200), - [sym_generic_name] = STATE(3156), - [sym_ref_type] = STATE(3178), - [sym__scoped_base_type] = STATE(3202), - [sym_identifier] = STATE(3129), - [sym__reserved_identifier] = STATE(3149), [sym_preproc_region] = STATE(2354), [sym_preproc_endregion] = STATE(2354), [sym_preproc_line] = STATE(2354), @@ -415163,69 +414839,78 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2354), [sym_preproc_define] = STATE(2354), [sym_preproc_undef] = STATE(2354), - [sym__identifier_token] = ACTIONS(3773), - [anon_sym_alias] = ACTIONS(3775), - [anon_sym_global] = ACTIONS(3775), - [anon_sym_LBRACK] = ACTIONS(3445), - [anon_sym_COLON] = ACTIONS(3447), - [anon_sym_LPAREN] = ACTIONS(3445), - [anon_sym_ref] = ACTIONS(4026), - [anon_sym_LBRACE] = ACTIONS(3445), - [anon_sym_file] = ACTIONS(3775), - [anon_sym_LT] = ACTIONS(3447), - [anon_sym_GT] = ACTIONS(3447), - [anon_sym_where] = ACTIONS(3775), - [anon_sym_QMARK] = ACTIONS(3447), - [anon_sym_notnull] = ACTIONS(3775), - [anon_sym_unmanaged] = ACTIONS(3775), - [anon_sym_BANG] = ACTIONS(3447), - [anon_sym_PLUS_PLUS] = ACTIONS(3445), - [anon_sym_DASH_DASH] = ACTIONS(3445), - [anon_sym_PLUS] = ACTIONS(3447), - [anon_sym_DASH] = ACTIONS(3447), - [anon_sym_STAR] = ACTIONS(3445), - [anon_sym_SLASH] = ACTIONS(3447), - [anon_sym_PERCENT] = ACTIONS(3445), - [anon_sym_CARET] = ACTIONS(3445), - [anon_sym_PIPE] = ACTIONS(3447), - [anon_sym_AMP] = ACTIONS(3447), - [anon_sym_LT_LT] = ACTIONS(3445), - [anon_sym_GT_GT] = ACTIONS(3447), - [anon_sym_GT_GT_GT] = ACTIONS(3445), - [anon_sym_EQ_EQ] = ACTIONS(3445), - [anon_sym_BANG_EQ] = ACTIONS(3445), - [anon_sym_GT_EQ] = ACTIONS(3445), - [anon_sym_LT_EQ] = ACTIONS(3445), - [anon_sym_DOT] = ACTIONS(3447), - [anon_sym_scoped] = ACTIONS(3775), - [anon_sym_EQ_GT] = ACTIONS(3445), - [anon_sym_COLON_COLON] = ACTIONS(3445), - [anon_sym_var] = ACTIONS(3775), - [anon_sym_yield] = ACTIONS(3775), - [anon_sym_switch] = ACTIONS(3447), - [anon_sym_when] = ACTIONS(3779), - [anon_sym_DOT_DOT] = ACTIONS(3445), - [anon_sym_and] = ACTIONS(3447), - [anon_sym_or] = ACTIONS(3447), - [anon_sym_AMP_AMP] = ACTIONS(3445), - [anon_sym_PIPE_PIPE] = ACTIONS(3445), - [anon_sym_QMARK_QMARK] = ACTIONS(3445), - [anon_sym_from] = ACTIONS(3775), - [anon_sym_into] = ACTIONS(3779), - [anon_sym_join] = ACTIONS(3775), - [anon_sym_on] = ACTIONS(3775), - [anon_sym_equals] = ACTIONS(3775), - [anon_sym_let] = ACTIONS(3775), - [anon_sym_orderby] = ACTIONS(3775), - [anon_sym_ascending] = ACTIONS(3775), - [anon_sym_descending] = ACTIONS(3775), - [anon_sym_group] = ACTIONS(3775), - [anon_sym_by] = ACTIONS(3775), - [anon_sym_select] = ACTIONS(3775), - [anon_sym_as] = ACTIONS(3447), - [anon_sym_is] = ACTIONS(3447), - [anon_sym_DASH_GT] = ACTIONS(3445), - [anon_sym_with] = ACTIONS(3447), + [sym__identifier_token] = ACTIONS(3634), + [anon_sym_alias] = ACTIONS(3634), + [anon_sym_SEMI] = ACTIONS(3636), + [anon_sym_global] = ACTIONS(3634), + [anon_sym_LBRACK] = ACTIONS(3636), + [anon_sym_COLON] = ACTIONS(3634), + [anon_sym_COMMA] = ACTIONS(3636), + [anon_sym_RBRACK] = ACTIONS(3636), + [anon_sym_LPAREN] = ACTIONS(3636), + [anon_sym_RPAREN] = ACTIONS(3636), + [anon_sym_LBRACE] = ACTIONS(3636), + [anon_sym_RBRACE] = ACTIONS(3636), + [anon_sym_file] = ACTIONS(3634), + [anon_sym_LT] = ACTIONS(3634), + [anon_sym_GT] = ACTIONS(3634), + [anon_sym_in] = ACTIONS(3634), + [anon_sym_where] = ACTIONS(3634), + [anon_sym_QMARK] = ACTIONS(3634), + [anon_sym_notnull] = ACTIONS(3634), + [anon_sym_unmanaged] = ACTIONS(3634), + [anon_sym_BANG] = ACTIONS(3634), + [anon_sym_PLUS_PLUS] = ACTIONS(3636), + [anon_sym_DASH_DASH] = ACTIONS(3636), + [anon_sym_PLUS] = ACTIONS(3634), + [anon_sym_DASH] = ACTIONS(3634), + [anon_sym_STAR] = ACTIONS(3636), + [anon_sym_SLASH] = ACTIONS(3634), + [anon_sym_PERCENT] = ACTIONS(3636), + [anon_sym_CARET] = ACTIONS(3636), + [anon_sym_PIPE] = ACTIONS(3634), + [anon_sym_AMP] = ACTIONS(3634), + [anon_sym_LT_LT] = ACTIONS(3636), + [anon_sym_GT_GT] = ACTIONS(3634), + [anon_sym_GT_GT_GT] = ACTIONS(3636), + [anon_sym_EQ_EQ] = ACTIONS(3636), + [anon_sym_BANG_EQ] = ACTIONS(3636), + [anon_sym_GT_EQ] = ACTIONS(3636), + [anon_sym_LT_EQ] = ACTIONS(3636), + [anon_sym_DOT] = ACTIONS(3634), + [anon_sym_scoped] = ACTIONS(3634), + [anon_sym_EQ_GT] = ACTIONS(3636), + [anon_sym_COLON_COLON] = ACTIONS(3636), + [anon_sym_var] = ACTIONS(3634), + [anon_sym_yield] = ACTIONS(3634), + [anon_sym_switch] = ACTIONS(3634), + [anon_sym_when] = ACTIONS(3634), + [sym_discard] = ACTIONS(3634), + [anon_sym_DOT_DOT] = ACTIONS(3636), + [anon_sym_and] = ACTIONS(3634), + [anon_sym_or] = ACTIONS(3634), + [anon_sym_AMP_AMP] = ACTIONS(3636), + [anon_sym_PIPE_PIPE] = ACTIONS(3636), + [anon_sym_QMARK_QMARK] = ACTIONS(3636), + [anon_sym_from] = ACTIONS(3634), + [anon_sym_into] = ACTIONS(3634), + [anon_sym_join] = ACTIONS(3634), + [anon_sym_on] = ACTIONS(3634), + [anon_sym_equals] = ACTIONS(3634), + [anon_sym_let] = ACTIONS(3634), + [anon_sym_orderby] = ACTIONS(3634), + [anon_sym_ascending] = ACTIONS(3634), + [anon_sym_descending] = ACTIONS(3634), + [anon_sym_group] = ACTIONS(3634), + [anon_sym_by] = ACTIONS(3634), + [anon_sym_select] = ACTIONS(3634), + [anon_sym_as] = ACTIONS(3634), + [anon_sym_is] = ACTIONS(3634), + [anon_sym_DASH_GT] = ACTIONS(3636), + [anon_sym_with] = ACTIONS(3634), + [aux_sym_preproc_if_token3] = ACTIONS(3636), + [aux_sym_preproc_else_token1] = ACTIONS(3636), + [aux_sym_preproc_elif_token1] = ACTIONS(3636), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -415238,15 +414923,25 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2355] = { - [sym__name] = STATE(3497), - [sym_alias_qualified_name] = STATE(3251), - [sym__simple_name] = STATE(3251), - [sym_qualified_name] = STATE(3251), - [sym_generic_name] = STATE(3246), - [sym_ref_type] = STATE(3261), - [sym__scoped_base_type] = STATE(3262), - [sym_identifier] = STATE(3167), - [sym__reserved_identifier] = STATE(3225), + [sym_argument_list] = STATE(2922), + [sym__name] = STATE(3086), + [sym_alias_qualified_name] = STATE(2976), + [sym__simple_name] = STATE(2976), + [sym_qualified_name] = STATE(2976), + [sym_generic_name] = STATE(3030), + [sym_type] = STATE(3472), + [sym_implicit_type] = STATE(2977), + [sym_array_type] = STATE(2908), + [sym__array_base_type] = STATE(7236), + [sym_nullable_type] = STATE(2979), + [sym_pointer_type] = STATE(2979), + [sym__pointer_base_type] = STATE(7622), + [sym_function_pointer_type] = STATE(2979), + [sym_ref_type] = STATE(2977), + [sym_scoped_type] = STATE(2977), + [sym_tuple_type] = STATE(2980), + [sym_identifier] = STATE(2927), + [sym__reserved_identifier] = STATE(2916), [sym_preproc_region] = STATE(2355), [sym_preproc_endregion] = STATE(2355), [sym_preproc_line] = STATE(2355), @@ -415256,69 +414951,59 @@ 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(3788), - [anon_sym_alias] = ACTIONS(3790), - [anon_sym_global] = ACTIONS(3790), - [anon_sym_LBRACK] = ACTIONS(3445), - [anon_sym_COLON] = ACTIONS(3447), - [anon_sym_LPAREN] = ACTIONS(3445), - [anon_sym_ref] = ACTIONS(4028), - [anon_sym_LBRACE] = ACTIONS(3445), - [anon_sym_file] = ACTIONS(3790), - [anon_sym_LT] = ACTIONS(3447), - [anon_sym_GT] = ACTIONS(3447), - [anon_sym_where] = ACTIONS(3790), - [anon_sym_QMARK] = ACTIONS(3447), - [anon_sym_notnull] = ACTIONS(3790), - [anon_sym_unmanaged] = ACTIONS(3790), - [anon_sym_BANG] = ACTIONS(3447), - [anon_sym_PLUS_PLUS] = ACTIONS(3445), - [anon_sym_DASH_DASH] = ACTIONS(3445), - [anon_sym_PLUS] = ACTIONS(3447), - [anon_sym_DASH] = ACTIONS(3447), - [anon_sym_STAR] = ACTIONS(3445), - [anon_sym_SLASH] = ACTIONS(3447), - [anon_sym_PERCENT] = ACTIONS(3445), - [anon_sym_CARET] = ACTIONS(3445), - [anon_sym_PIPE] = ACTIONS(3447), - [anon_sym_AMP] = ACTIONS(3447), - [anon_sym_LT_LT] = ACTIONS(3445), - [anon_sym_GT_GT] = ACTIONS(3447), - [anon_sym_GT_GT_GT] = ACTIONS(3445), - [anon_sym_EQ_EQ] = ACTIONS(3445), - [anon_sym_BANG_EQ] = ACTIONS(3445), - [anon_sym_GT_EQ] = ACTIONS(3445), - [anon_sym_LT_EQ] = ACTIONS(3445), - [anon_sym_DOT] = ACTIONS(3447), - [anon_sym_scoped] = ACTIONS(3790), - [anon_sym_EQ_GT] = ACTIONS(3445), - [anon_sym_COLON_COLON] = ACTIONS(3445), - [anon_sym_var] = ACTIONS(3790), - [anon_sym_yield] = ACTIONS(3790), - [anon_sym_switch] = ACTIONS(3447), - [anon_sym_when] = ACTIONS(4030), - [anon_sym_DOT_DOT] = ACTIONS(3445), - [anon_sym_and] = ACTIONS(3447), - [anon_sym_or] = ACTIONS(3447), - [anon_sym_AMP_AMP] = ACTIONS(3445), - [anon_sym_PIPE_PIPE] = ACTIONS(3445), - [anon_sym_QMARK_QMARK] = ACTIONS(3445), - [anon_sym_from] = ACTIONS(3790), - [anon_sym_into] = ACTIONS(3790), - [anon_sym_join] = ACTIONS(3790), - [anon_sym_on] = ACTIONS(3790), - [anon_sym_equals] = ACTIONS(3790), - [anon_sym_let] = ACTIONS(3790), - [anon_sym_orderby] = ACTIONS(3790), - [anon_sym_ascending] = ACTIONS(3790), - [anon_sym_descending] = ACTIONS(3790), - [anon_sym_group] = ACTIONS(3790), - [anon_sym_by] = ACTIONS(3790), - [anon_sym_select] = ACTIONS(3790), - [anon_sym_as] = ACTIONS(3447), - [anon_sym_is] = ACTIONS(3447), - [anon_sym_DASH_GT] = ACTIONS(3445), - [anon_sym_with] = ACTIONS(3447), + [sym__identifier_token] = ACTIONS(3871), + [anon_sym_extern] = ACTIONS(3466), + [anon_sym_alias] = ACTIONS(3873), + [anon_sym_global] = ACTIONS(3873), + [anon_sym_unsafe] = ACTIONS(3466), + [anon_sym_static] = ACTIONS(3466), + [anon_sym_LBRACK] = ACTIONS(4009), + [anon_sym_LPAREN] = ACTIONS(4011), + [anon_sym_class] = ACTIONS(3466), + [anon_sym_ref] = ACTIONS(3875), + [anon_sym_struct] = ACTIONS(3466), + [anon_sym_enum] = ACTIONS(3466), + [anon_sym_LBRACE] = ACTIONS(4013), + [anon_sym_interface] = ACTIONS(3466), + [anon_sym_delegate] = ACTIONS(4015), + [anon_sym_record] = ACTIONS(3466), + [anon_sym_abstract] = ACTIONS(3466), + [anon_sym_async] = ACTIONS(3466), + [anon_sym_const] = ACTIONS(3466), + [anon_sym_file] = ACTIONS(3873), + [anon_sym_fixed] = ACTIONS(3466), + [anon_sym_internal] = ACTIONS(3466), + [anon_sym_new] = ACTIONS(3466), + [anon_sym_override] = ACTIONS(3466), + [anon_sym_partial] = ACTIONS(3466), + [anon_sym_private] = ACTIONS(3466), + [anon_sym_protected] = ACTIONS(3466), + [anon_sym_public] = ACTIONS(3466), + [anon_sym_readonly] = ACTIONS(3466), + [anon_sym_required] = ACTIONS(3466), + [anon_sym_sealed] = ACTIONS(3466), + [anon_sym_virtual] = ACTIONS(3466), + [anon_sym_volatile] = ACTIONS(3466), + [anon_sym_where] = ACTIONS(3873), + [anon_sym_notnull] = ACTIONS(3873), + [anon_sym_unmanaged] = ACTIONS(3873), + [anon_sym_scoped] = ACTIONS(4017), + [anon_sym_var] = ACTIONS(4019), + [sym_predefined_type] = ACTIONS(4021), + [anon_sym_yield] = ACTIONS(3873), + [anon_sym_when] = ACTIONS(3873), + [anon_sym_from] = ACTIONS(3873), + [anon_sym_into] = ACTIONS(3873), + [anon_sym_join] = ACTIONS(3873), + [anon_sym_on] = ACTIONS(3873), + [anon_sym_equals] = ACTIONS(3873), + [anon_sym_let] = ACTIONS(3873), + [anon_sym_orderby] = ACTIONS(3873), + [anon_sym_ascending] = ACTIONS(3873), + [anon_sym_descending] = ACTIONS(3873), + [anon_sym_group] = ACTIONS(3873), + [anon_sym_by] = ACTIONS(3873), + [anon_sym_select] = ACTIONS(3873), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -415331,26 +415016,26 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2356] = { - [sym_modifier] = STATE(3130), - [sym_variable_declaration] = STATE(7708), - [sym__name] = STATE(4390), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(4096), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(4109), - [sym_type] = STATE(5919), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_identifier] = STATE(4087), - [sym__reserved_identifier] = STATE(3691), + [sym_modifier] = STATE(3114), + [sym_variable_declaration] = STATE(7398), + [sym__name] = STATE(4369), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(4068), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(4073), + [sym_type] = STATE(5911), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_identifier] = STATE(4081), + [sym__reserved_identifier] = STATE(3654), [sym_preproc_region] = STATE(2356), [sym_preproc_endregion] = STATE(2356), [sym_preproc_line] = STATE(2356), @@ -415360,25 +415045,25 @@ 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), - [aux_sym__class_declaration_initializer_repeat2] = STATE(3100), - [sym__identifier_token] = ACTIONS(2967), + [aux_sym__class_declaration_initializer_repeat2] = STATE(3065), + [sym__identifier_token] = ACTIONS(2965), [anon_sym_extern] = ACTIONS(65), - [anon_sym_alias] = ACTIONS(2971), - [anon_sym_global] = ACTIONS(2971), + [anon_sym_alias] = ACTIONS(2969), + [anon_sym_global] = ACTIONS(2969), [anon_sym_unsafe] = ACTIONS(65), [anon_sym_static] = ACTIONS(65), - [anon_sym_LPAREN] = ACTIONS(2979), + [anon_sym_LPAREN] = ACTIONS(2977), [anon_sym_class] = ACTIONS(3739), [anon_sym_ref] = ACTIONS(3741), - [anon_sym_struct] = ACTIONS(2747), - [anon_sym_enum] = ACTIONS(3796), + [anon_sym_struct] = ACTIONS(2823), + [anon_sym_enum] = ACTIONS(3743), [anon_sym_interface] = ACTIONS(3745), [anon_sym_delegate] = ACTIONS(3747), [anon_sym_record] = ACTIONS(3749), [anon_sym_abstract] = ACTIONS(65), [anon_sym_async] = ACTIONS(65), [anon_sym_const] = ACTIONS(65), - [anon_sym_file] = ACTIONS(2991), + [anon_sym_file] = ACTIONS(2987), [anon_sym_fixed] = ACTIONS(65), [anon_sym_internal] = ACTIONS(65), [anon_sym_new] = ACTIONS(65), @@ -415392,26 +415077,26 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_sealed] = ACTIONS(65), [anon_sym_virtual] = ACTIONS(65), [anon_sym_volatile] = ACTIONS(65), - [anon_sym_where] = ACTIONS(2971), - [anon_sym_notnull] = ACTIONS(2971), - [anon_sym_unmanaged] = ACTIONS(2971), - [anon_sym_scoped] = ACTIONS(2997), - [anon_sym_var] = ACTIONS(2999), - [sym_predefined_type] = ACTIONS(3001), - [anon_sym_yield] = ACTIONS(2971), - [anon_sym_when] = ACTIONS(2971), - [anon_sym_from] = ACTIONS(2971), - [anon_sym_into] = ACTIONS(2971), - [anon_sym_join] = ACTIONS(2971), - [anon_sym_on] = ACTIONS(2971), - [anon_sym_equals] = ACTIONS(2971), - [anon_sym_let] = ACTIONS(2971), - [anon_sym_orderby] = ACTIONS(2971), - [anon_sym_ascending] = ACTIONS(2971), - [anon_sym_descending] = ACTIONS(2971), - [anon_sym_group] = ACTIONS(2971), - [anon_sym_by] = ACTIONS(2971), - [anon_sym_select] = ACTIONS(2971), + [anon_sym_where] = ACTIONS(2969), + [anon_sym_notnull] = ACTIONS(2969), + [anon_sym_unmanaged] = ACTIONS(2969), + [anon_sym_scoped] = ACTIONS(2993), + [anon_sym_var] = ACTIONS(2995), + [sym_predefined_type] = ACTIONS(2997), + [anon_sym_yield] = ACTIONS(2969), + [anon_sym_when] = ACTIONS(2969), + [anon_sym_from] = ACTIONS(2969), + [anon_sym_into] = ACTIONS(2969), + [anon_sym_join] = ACTIONS(2969), + [anon_sym_on] = ACTIONS(2969), + [anon_sym_equals] = ACTIONS(2969), + [anon_sym_let] = ACTIONS(2969), + [anon_sym_orderby] = ACTIONS(2969), + [anon_sym_ascending] = ACTIONS(2969), + [anon_sym_descending] = ACTIONS(2969), + [anon_sym_group] = ACTIONS(2969), + [anon_sym_by] = ACTIONS(2969), + [anon_sym_select] = ACTIONS(2969), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -415424,6 +415109,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2357] = { + [sym__name] = STATE(3152), + [sym_alias_qualified_name] = STATE(3143), + [sym__simple_name] = STATE(3143), + [sym_qualified_name] = STATE(3143), + [sym_generic_name] = STATE(3184), + [sym_ref_type] = STATE(3153), + [sym__scoped_base_type] = STATE(3154), + [sym_identifier] = STATE(3119), + [sym__reserved_identifier] = STATE(3120), [sym_preproc_region] = STATE(2357), [sym_preproc_endregion] = STATE(2357), [sym_preproc_line] = STATE(2357), @@ -415433,78 +415127,69 @@ 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(3699), - [anon_sym_alias] = ACTIONS(3699), - [anon_sym_global] = ACTIONS(3699), - [anon_sym_EQ] = ACTIONS(3704), - [anon_sym_LBRACK] = ACTIONS(3721), - [anon_sym_COMMA] = ACTIONS(3719), - [anon_sym_LPAREN] = ACTIONS(3721), - [anon_sym_file] = ACTIONS(3699), - [anon_sym_LT] = ACTIONS(3704), - [anon_sym_GT] = ACTIONS(3704), - [anon_sym_where] = ACTIONS(3724), - [anon_sym_QMARK] = ACTIONS(3724), - [anon_sym_notnull] = ACTIONS(3699), - [anon_sym_unmanaged] = ACTIONS(3699), - [anon_sym_BANG] = ACTIONS(3704), - [anon_sym_PLUS_PLUS] = ACTIONS(3719), - [anon_sym_DASH_DASH] = ACTIONS(3719), - [anon_sym_PLUS] = ACTIONS(3704), - [anon_sym_DASH] = ACTIONS(3704), - [anon_sym_STAR] = ACTIONS(3724), - [anon_sym_SLASH] = ACTIONS(3704), - [anon_sym_PERCENT] = ACTIONS(3704), - [anon_sym_CARET] = ACTIONS(3704), - [anon_sym_PIPE] = ACTIONS(3704), - [anon_sym_AMP] = ACTIONS(3704), - [anon_sym_LT_LT] = ACTIONS(3704), - [anon_sym_GT_GT] = ACTIONS(3704), - [anon_sym_GT_GT_GT] = ACTIONS(3704), - [anon_sym_EQ_EQ] = ACTIONS(3719), - [anon_sym_BANG_EQ] = ACTIONS(3719), - [anon_sym_GT_EQ] = ACTIONS(3719), - [anon_sym_LT_EQ] = ACTIONS(3719), - [anon_sym_DOT] = ACTIONS(3724), - [anon_sym_scoped] = ACTIONS(3699), - [anon_sym_var] = ACTIONS(3699), - [anon_sym_yield] = ACTIONS(3699), - [anon_sym_switch] = ACTIONS(3704), - [anon_sym_when] = ACTIONS(3699), - [anon_sym_DOT_DOT] = ACTIONS(3719), - [anon_sym_and] = ACTIONS(3704), - [anon_sym_or] = ACTIONS(3704), - [anon_sym_PLUS_EQ] = ACTIONS(3719), - [anon_sym_DASH_EQ] = ACTIONS(3719), - [anon_sym_STAR_EQ] = ACTIONS(3719), - [anon_sym_SLASH_EQ] = ACTIONS(3719), - [anon_sym_PERCENT_EQ] = ACTIONS(3719), - [anon_sym_AMP_EQ] = ACTIONS(3719), - [anon_sym_CARET_EQ] = ACTIONS(3719), - [anon_sym_PIPE_EQ] = ACTIONS(3719), - [anon_sym_LT_LT_EQ] = ACTIONS(3719), - [anon_sym_GT_GT_EQ] = ACTIONS(3719), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3719), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3719), - [anon_sym_AMP_AMP] = ACTIONS(3719), - [anon_sym_PIPE_PIPE] = ACTIONS(3719), - [anon_sym_QMARK_QMARK] = ACTIONS(3704), - [anon_sym_from] = ACTIONS(3724), - [anon_sym_into] = ACTIONS(3724), - [anon_sym_join] = ACTIONS(3724), - [anon_sym_on] = ACTIONS(3699), - [anon_sym_equals] = ACTIONS(3699), - [anon_sym_let] = ACTIONS(3724), - [anon_sym_orderby] = ACTIONS(3724), - [anon_sym_ascending] = ACTIONS(3724), - [anon_sym_descending] = ACTIONS(3724), - [anon_sym_group] = ACTIONS(3724), - [anon_sym_by] = ACTIONS(3699), - [anon_sym_select] = ACTIONS(3724), - [anon_sym_as] = ACTIONS(3704), - [anon_sym_is] = ACTIONS(3704), - [anon_sym_DASH_GT] = ACTIONS(3721), - [anon_sym_with] = ACTIONS(3704), + [sym__identifier_token] = ACTIONS(3761), + [anon_sym_alias] = ACTIONS(3763), + [anon_sym_global] = ACTIONS(3763), + [anon_sym_LBRACK] = ACTIONS(3429), + [anon_sym_COLON] = ACTIONS(3431), + [anon_sym_LPAREN] = ACTIONS(3429), + [anon_sym_ref] = ACTIONS(4023), + [anon_sym_LBRACE] = ACTIONS(3429), + [anon_sym_file] = ACTIONS(3763), + [anon_sym_LT] = ACTIONS(3431), + [anon_sym_GT] = ACTIONS(3431), + [anon_sym_where] = ACTIONS(3763), + [anon_sym_QMARK] = ACTIONS(3431), + [anon_sym_notnull] = ACTIONS(3763), + [anon_sym_unmanaged] = ACTIONS(3763), + [anon_sym_BANG] = ACTIONS(3431), + [anon_sym_PLUS_PLUS] = ACTIONS(3429), + [anon_sym_DASH_DASH] = ACTIONS(3429), + [anon_sym_PLUS] = ACTIONS(3431), + [anon_sym_DASH] = ACTIONS(3431), + [anon_sym_STAR] = ACTIONS(3429), + [anon_sym_SLASH] = ACTIONS(3431), + [anon_sym_PERCENT] = ACTIONS(3429), + [anon_sym_CARET] = ACTIONS(3429), + [anon_sym_PIPE] = ACTIONS(3431), + [anon_sym_AMP] = ACTIONS(3431), + [anon_sym_LT_LT] = ACTIONS(3429), + [anon_sym_GT_GT] = ACTIONS(3431), + [anon_sym_GT_GT_GT] = ACTIONS(3429), + [anon_sym_EQ_EQ] = ACTIONS(3429), + [anon_sym_BANG_EQ] = ACTIONS(3429), + [anon_sym_GT_EQ] = ACTIONS(3429), + [anon_sym_LT_EQ] = ACTIONS(3429), + [anon_sym_DOT] = ACTIONS(3431), + [anon_sym_scoped] = ACTIONS(3763), + [anon_sym_EQ_GT] = ACTIONS(3429), + [anon_sym_COLON_COLON] = ACTIONS(3429), + [anon_sym_var] = ACTIONS(3763), + [anon_sym_yield] = ACTIONS(3763), + [anon_sym_switch] = ACTIONS(3431), + [anon_sym_when] = ACTIONS(3767), + [anon_sym_DOT_DOT] = ACTIONS(3429), + [anon_sym_and] = ACTIONS(3431), + [anon_sym_or] = ACTIONS(3431), + [anon_sym_AMP_AMP] = ACTIONS(3429), + [anon_sym_PIPE_PIPE] = ACTIONS(3429), + [anon_sym_QMARK_QMARK] = ACTIONS(3429), + [anon_sym_from] = ACTIONS(3763), + [anon_sym_into] = ACTIONS(3767), + [anon_sym_join] = ACTIONS(3763), + [anon_sym_on] = ACTIONS(3763), + [anon_sym_equals] = ACTIONS(3763), + [anon_sym_let] = ACTIONS(3763), + [anon_sym_orderby] = ACTIONS(3763), + [anon_sym_ascending] = ACTIONS(3763), + [anon_sym_descending] = ACTIONS(3763), + [anon_sym_group] = ACTIONS(3763), + [anon_sym_by] = ACTIONS(3763), + [anon_sym_select] = ACTIONS(3763), + [anon_sym_as] = ACTIONS(3431), + [anon_sym_is] = ACTIONS(3431), + [anon_sym_DASH_GT] = ACTIONS(3429), + [anon_sym_with] = ACTIONS(3431), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -415517,26 +415202,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2358] = { - [sym_modifier] = STATE(3130), - [sym_variable_declaration] = STATE(7339), - [sym__name] = STATE(4390), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(4096), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(4109), - [sym_type] = STATE(5919), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_identifier] = STATE(4087), - [sym__reserved_identifier] = STATE(3691), + [sym__name] = STATE(3489), + [sym_alias_qualified_name] = STATE(3304), + [sym__simple_name] = STATE(3304), + [sym_qualified_name] = STATE(3304), + [sym_generic_name] = STATE(3241), + [sym_ref_type] = STATE(3327), + [sym__scoped_base_type] = STATE(3340), + [sym_identifier] = STATE(3177), + [sym__reserved_identifier] = STATE(3205), [sym_preproc_region] = STATE(2358), [sym_preproc_endregion] = STATE(2358), [sym_preproc_line] = STATE(2358), @@ -415546,58 +415220,69 @@ 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), - [aux_sym__class_declaration_initializer_repeat2] = STATE(3100), - [sym__identifier_token] = ACTIONS(2967), - [anon_sym_extern] = ACTIONS(65), - [anon_sym_alias] = ACTIONS(2971), - [anon_sym_global] = ACTIONS(2971), - [anon_sym_unsafe] = ACTIONS(65), - [anon_sym_static] = ACTIONS(65), - [anon_sym_LPAREN] = ACTIONS(2979), - [anon_sym_class] = ACTIONS(3739), - [anon_sym_ref] = ACTIONS(3741), - [anon_sym_struct] = ACTIONS(2747), - [anon_sym_enum] = ACTIONS(3822), - [anon_sym_interface] = ACTIONS(3745), - [anon_sym_delegate] = ACTIONS(3747), - [anon_sym_record] = ACTIONS(3749), - [anon_sym_abstract] = ACTIONS(65), - [anon_sym_async] = ACTIONS(65), - [anon_sym_const] = ACTIONS(65), - [anon_sym_file] = ACTIONS(2991), - [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(2971), - [anon_sym_notnull] = ACTIONS(2971), - [anon_sym_unmanaged] = ACTIONS(2971), - [anon_sym_scoped] = ACTIONS(2997), - [anon_sym_var] = ACTIONS(2999), - [sym_predefined_type] = ACTIONS(3001), - [anon_sym_yield] = ACTIONS(2971), - [anon_sym_when] = ACTIONS(2971), - [anon_sym_from] = ACTIONS(2971), - [anon_sym_into] = ACTIONS(2971), - [anon_sym_join] = ACTIONS(2971), - [anon_sym_on] = ACTIONS(2971), - [anon_sym_equals] = ACTIONS(2971), - [anon_sym_let] = ACTIONS(2971), - [anon_sym_orderby] = ACTIONS(2971), - [anon_sym_ascending] = ACTIONS(2971), - [anon_sym_descending] = ACTIONS(2971), - [anon_sym_group] = ACTIONS(2971), - [anon_sym_by] = ACTIONS(2971), - [anon_sym_select] = ACTIONS(2971), + [sym__identifier_token] = ACTIONS(3798), + [anon_sym_alias] = ACTIONS(3800), + [anon_sym_global] = ACTIONS(3800), + [anon_sym_LBRACK] = ACTIONS(3429), + [anon_sym_COLON] = ACTIONS(3431), + [anon_sym_LPAREN] = ACTIONS(3429), + [anon_sym_ref] = ACTIONS(4025), + [anon_sym_LBRACE] = ACTIONS(3429), + [anon_sym_file] = ACTIONS(3800), + [anon_sym_LT] = ACTIONS(3431), + [anon_sym_GT] = ACTIONS(3431), + [anon_sym_where] = ACTIONS(3800), + [anon_sym_QMARK] = ACTIONS(3431), + [anon_sym_notnull] = ACTIONS(3800), + [anon_sym_unmanaged] = ACTIONS(3800), + [anon_sym_BANG] = ACTIONS(3431), + [anon_sym_PLUS_PLUS] = ACTIONS(3429), + [anon_sym_DASH_DASH] = ACTIONS(3429), + [anon_sym_PLUS] = ACTIONS(3431), + [anon_sym_DASH] = ACTIONS(3431), + [anon_sym_STAR] = ACTIONS(3429), + [anon_sym_SLASH] = ACTIONS(3431), + [anon_sym_PERCENT] = ACTIONS(3429), + [anon_sym_CARET] = ACTIONS(3429), + [anon_sym_PIPE] = ACTIONS(3431), + [anon_sym_AMP] = ACTIONS(3431), + [anon_sym_LT_LT] = ACTIONS(3429), + [anon_sym_GT_GT] = ACTIONS(3431), + [anon_sym_GT_GT_GT] = ACTIONS(3429), + [anon_sym_EQ_EQ] = ACTIONS(3429), + [anon_sym_BANG_EQ] = ACTIONS(3429), + [anon_sym_GT_EQ] = ACTIONS(3429), + [anon_sym_LT_EQ] = ACTIONS(3429), + [anon_sym_DOT] = ACTIONS(3431), + [anon_sym_scoped] = ACTIONS(3800), + [anon_sym_EQ_GT] = ACTIONS(3429), + [anon_sym_COLON_COLON] = ACTIONS(3429), + [anon_sym_var] = ACTIONS(3800), + [anon_sym_yield] = ACTIONS(3800), + [anon_sym_switch] = ACTIONS(3431), + [anon_sym_when] = ACTIONS(4027), + [anon_sym_DOT_DOT] = ACTIONS(3429), + [anon_sym_and] = ACTIONS(3431), + [anon_sym_or] = ACTIONS(3431), + [anon_sym_AMP_AMP] = ACTIONS(3429), + [anon_sym_PIPE_PIPE] = ACTIONS(3429), + [anon_sym_QMARK_QMARK] = ACTIONS(3429), + [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(3431), + [anon_sym_is] = ACTIONS(3431), + [anon_sym_DASH_GT] = ACTIONS(3429), + [anon_sym_with] = ACTIONS(3431), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -415610,7 +415295,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2359] = { - [sym_type_argument_list] = STATE(2417), [sym_preproc_region] = STATE(2359), [sym_preproc_endregion] = STATE(2359), [sym_preproc_line] = STATE(2359), @@ -415620,77 +415304,78 @@ 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(3660), - [anon_sym_alias] = ACTIONS(3660), - [anon_sym_SEMI] = ACTIONS(3662), - [anon_sym_global] = ACTIONS(3660), - [anon_sym_LBRACK] = ACTIONS(3662), - [anon_sym_COMMA] = ACTIONS(3662), - [anon_sym_RBRACK] = ACTIONS(3662), - [anon_sym_LPAREN] = ACTIONS(3662), - [anon_sym_RPAREN] = ACTIONS(3662), - [anon_sym_LBRACE] = ACTIONS(3662), - [anon_sym_RBRACE] = ACTIONS(3662), - [anon_sym_file] = ACTIONS(3660), - [anon_sym_LT] = ACTIONS(4033), - [anon_sym_GT] = ACTIONS(3660), - [anon_sym_in] = ACTIONS(3660), - [anon_sym_where] = ACTIONS(3660), - [anon_sym_QMARK] = ACTIONS(3660), - [anon_sym_notnull] = ACTIONS(3660), - [anon_sym_unmanaged] = ACTIONS(3660), - [anon_sym_BANG] = ACTIONS(3660), - [anon_sym_PLUS_PLUS] = ACTIONS(3662), - [anon_sym_DASH_DASH] = ACTIONS(3662), - [anon_sym_PLUS] = ACTIONS(3660), - [anon_sym_DASH] = ACTIONS(3660), - [anon_sym_STAR] = ACTIONS(3662), - [anon_sym_SLASH] = ACTIONS(3660), - [anon_sym_PERCENT] = ACTIONS(3662), - [anon_sym_CARET] = ACTIONS(3662), - [anon_sym_PIPE] = ACTIONS(3660), - [anon_sym_AMP] = ACTIONS(3660), - [anon_sym_LT_LT] = ACTIONS(3662), - [anon_sym_GT_GT] = ACTIONS(3660), - [anon_sym_GT_GT_GT] = ACTIONS(3662), - [anon_sym_EQ_EQ] = ACTIONS(3662), - [anon_sym_BANG_EQ] = ACTIONS(3662), - [anon_sym_GT_EQ] = ACTIONS(3662), - [anon_sym_LT_EQ] = ACTIONS(3662), - [anon_sym_DOT] = ACTIONS(3660), - [anon_sym_scoped] = ACTIONS(3660), - [anon_sym_EQ_GT] = ACTIONS(3662), - [anon_sym_COLON_COLON] = ACTIONS(3683), - [anon_sym_var] = ACTIONS(3660), - [anon_sym_yield] = ACTIONS(3660), - [anon_sym_switch] = ACTIONS(3660), - [anon_sym_when] = ACTIONS(3660), - [sym_discard] = ACTIONS(3660), - [anon_sym_DOT_DOT] = ACTIONS(3662), - [anon_sym_and] = ACTIONS(3660), - [anon_sym_or] = ACTIONS(3660), - [anon_sym_AMP_AMP] = ACTIONS(3662), - [anon_sym_PIPE_PIPE] = ACTIONS(3662), - [anon_sym_QMARK_QMARK] = ACTIONS(3662), - [anon_sym_from] = ACTIONS(3660), - [anon_sym_into] = ACTIONS(3660), - [anon_sym_join] = ACTIONS(3660), - [anon_sym_on] = ACTIONS(3660), - [anon_sym_equals] = ACTIONS(3660), - [anon_sym_let] = ACTIONS(3660), - [anon_sym_orderby] = ACTIONS(3660), - [anon_sym_ascending] = ACTIONS(3660), - [anon_sym_descending] = ACTIONS(3660), - [anon_sym_group] = ACTIONS(3660), - [anon_sym_by] = ACTIONS(3660), - [anon_sym_select] = ACTIONS(3660), - [anon_sym_as] = ACTIONS(3660), - [anon_sym_is] = ACTIONS(3660), - [anon_sym_DASH_GT] = ACTIONS(3662), - [anon_sym_with] = ACTIONS(3660), - [aux_sym_preproc_if_token3] = ACTIONS(3662), - [aux_sym_preproc_else_token1] = ACTIONS(3662), - [aux_sym_preproc_elif_token1] = ACTIONS(3662), + [sym__identifier_token] = ACTIONS(3691), + [anon_sym_alias] = ACTIONS(3691), + [anon_sym_global] = ACTIONS(3691), + [anon_sym_EQ] = ACTIONS(3696), + [anon_sym_LBRACK] = ACTIONS(3713), + [anon_sym_COMMA] = ACTIONS(3711), + [anon_sym_LPAREN] = ACTIONS(3713), + [anon_sym_file] = ACTIONS(3691), + [anon_sym_LT] = ACTIONS(3696), + [anon_sym_GT] = ACTIONS(3696), + [anon_sym_where] = ACTIONS(3716), + [anon_sym_QMARK] = ACTIONS(3716), + [anon_sym_notnull] = ACTIONS(3691), + [anon_sym_unmanaged] = ACTIONS(3691), + [anon_sym_BANG] = ACTIONS(3696), + [anon_sym_PLUS_PLUS] = ACTIONS(3711), + [anon_sym_DASH_DASH] = ACTIONS(3711), + [anon_sym_PLUS] = ACTIONS(3696), + [anon_sym_DASH] = ACTIONS(3696), + [anon_sym_STAR] = ACTIONS(3716), + [anon_sym_SLASH] = ACTIONS(3696), + [anon_sym_PERCENT] = ACTIONS(3696), + [anon_sym_CARET] = ACTIONS(3696), + [anon_sym_PIPE] = ACTIONS(3696), + [anon_sym_AMP] = ACTIONS(3696), + [anon_sym_LT_LT] = ACTIONS(3696), + [anon_sym_GT_GT] = ACTIONS(3696), + [anon_sym_GT_GT_GT] = ACTIONS(3696), + [anon_sym_EQ_EQ] = ACTIONS(3711), + [anon_sym_BANG_EQ] = ACTIONS(3711), + [anon_sym_GT_EQ] = ACTIONS(3711), + [anon_sym_LT_EQ] = ACTIONS(3711), + [anon_sym_DOT] = ACTIONS(3716), + [anon_sym_scoped] = ACTIONS(3691), + [anon_sym_var] = ACTIONS(3691), + [anon_sym_yield] = ACTIONS(3691), + [anon_sym_switch] = ACTIONS(3696), + [anon_sym_when] = ACTIONS(3691), + [anon_sym_DOT_DOT] = ACTIONS(3711), + [anon_sym_and] = ACTIONS(3696), + [anon_sym_or] = ACTIONS(3696), + [anon_sym_PLUS_EQ] = ACTIONS(3711), + [anon_sym_DASH_EQ] = ACTIONS(3711), + [anon_sym_STAR_EQ] = ACTIONS(3711), + [anon_sym_SLASH_EQ] = ACTIONS(3711), + [anon_sym_PERCENT_EQ] = ACTIONS(3711), + [anon_sym_AMP_EQ] = ACTIONS(3711), + [anon_sym_CARET_EQ] = ACTIONS(3711), + [anon_sym_PIPE_EQ] = ACTIONS(3711), + [anon_sym_LT_LT_EQ] = ACTIONS(3711), + [anon_sym_GT_GT_EQ] = ACTIONS(3711), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3711), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3711), + [anon_sym_AMP_AMP] = ACTIONS(3711), + [anon_sym_PIPE_PIPE] = ACTIONS(3711), + [anon_sym_QMARK_QMARK] = ACTIONS(3696), + [anon_sym_from] = ACTIONS(3716), + [anon_sym_into] = ACTIONS(3691), + [anon_sym_join] = ACTIONS(3716), + [anon_sym_on] = ACTIONS(3691), + [anon_sym_equals] = ACTIONS(3691), + [anon_sym_let] = ACTIONS(3716), + [anon_sym_orderby] = ACTIONS(3716), + [anon_sym_ascending] = ACTIONS(3716), + [anon_sym_descending] = ACTIONS(3716), + [anon_sym_group] = ACTIONS(3716), + [anon_sym_by] = ACTIONS(3691), + [anon_sym_select] = ACTIONS(3716), + [anon_sym_as] = ACTIONS(3696), + [anon_sym_is] = ACTIONS(3696), + [anon_sym_DASH_GT] = ACTIONS(3713), + [anon_sym_with] = ACTIONS(3696), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -415712,78 +415397,78 @@ 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(3685), - [anon_sym_alias] = ACTIONS(3685), - [anon_sym_global] = ACTIONS(3685), - [anon_sym_EQ] = ACTIONS(3689), - [anon_sym_LBRACK] = ACTIONS(3691), - [anon_sym_COMMA] = ACTIONS(3697), - [anon_sym_LPAREN] = ACTIONS(3691), - [anon_sym_file] = ACTIONS(3685), - [anon_sym_LT] = ACTIONS(3689), - [anon_sym_GT] = ACTIONS(3689), - [anon_sym_where] = ACTIONS(3694), - [anon_sym_QMARK] = ACTIONS(3694), - [anon_sym_notnull] = ACTIONS(3685), - [anon_sym_unmanaged] = ACTIONS(3685), - [anon_sym_BANG] = ACTIONS(3689), - [anon_sym_PLUS_PLUS] = ACTIONS(3697), - [anon_sym_DASH_DASH] = ACTIONS(3697), - [anon_sym_PLUS] = ACTIONS(3689), - [anon_sym_DASH] = ACTIONS(3689), - [anon_sym_STAR] = ACTIONS(3694), - [anon_sym_SLASH] = ACTIONS(3689), - [anon_sym_PERCENT] = ACTIONS(3689), - [anon_sym_CARET] = ACTIONS(3689), - [anon_sym_PIPE] = ACTIONS(3689), - [anon_sym_AMP] = ACTIONS(3689), - [anon_sym_LT_LT] = ACTIONS(3689), - [anon_sym_GT_GT] = ACTIONS(3689), - [anon_sym_GT_GT_GT] = ACTIONS(3689), - [anon_sym_EQ_EQ] = ACTIONS(3697), - [anon_sym_BANG_EQ] = ACTIONS(3697), - [anon_sym_GT_EQ] = ACTIONS(3697), - [anon_sym_LT_EQ] = ACTIONS(3697), - [anon_sym_DOT] = ACTIONS(3694), - [anon_sym_scoped] = ACTIONS(3685), - [anon_sym_var] = ACTIONS(3685), - [anon_sym_yield] = ACTIONS(3685), - [anon_sym_switch] = ACTIONS(3689), - [anon_sym_when] = ACTIONS(3685), - [anon_sym_DOT_DOT] = ACTIONS(3697), - [anon_sym_and] = ACTIONS(3689), - [anon_sym_or] = ACTIONS(3689), - [anon_sym_PLUS_EQ] = ACTIONS(3697), - [anon_sym_DASH_EQ] = ACTIONS(3697), - [anon_sym_STAR_EQ] = ACTIONS(3697), - [anon_sym_SLASH_EQ] = ACTIONS(3697), - [anon_sym_PERCENT_EQ] = ACTIONS(3697), - [anon_sym_AMP_EQ] = ACTIONS(3697), - [anon_sym_CARET_EQ] = ACTIONS(3697), - [anon_sym_PIPE_EQ] = ACTIONS(3697), - [anon_sym_LT_LT_EQ] = ACTIONS(3697), - [anon_sym_GT_GT_EQ] = ACTIONS(3697), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3697), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3697), - [anon_sym_AMP_AMP] = ACTIONS(3697), - [anon_sym_PIPE_PIPE] = ACTIONS(3697), - [anon_sym_QMARK_QMARK] = ACTIONS(3689), - [anon_sym_from] = ACTIONS(3694), - [anon_sym_into] = ACTIONS(3694), - [anon_sym_join] = ACTIONS(3694), - [anon_sym_on] = ACTIONS(3685), - [anon_sym_equals] = ACTIONS(3685), - [anon_sym_let] = ACTIONS(3694), - [anon_sym_orderby] = ACTIONS(3694), - [anon_sym_ascending] = ACTIONS(3694), - [anon_sym_descending] = ACTIONS(3694), - [anon_sym_group] = ACTIONS(3694), - [anon_sym_by] = ACTIONS(3685), - [anon_sym_select] = ACTIONS(3694), - [anon_sym_as] = ACTIONS(3689), - [anon_sym_is] = ACTIONS(3689), - [anon_sym_DASH_GT] = ACTIONS(3691), - [anon_sym_with] = ACTIONS(3689), + [sym__identifier_token] = ACTIONS(3603), + [anon_sym_alias] = ACTIONS(3603), + [anon_sym_SEMI] = ACTIONS(3600), + [anon_sym_global] = ACTIONS(3603), + [anon_sym_LBRACK] = ACTIONS(3600), + [anon_sym_COLON] = ACTIONS(3603), + [anon_sym_COMMA] = ACTIONS(3600), + [anon_sym_RBRACK] = ACTIONS(3600), + [anon_sym_LPAREN] = ACTIONS(3600), + [anon_sym_RPAREN] = ACTIONS(3600), + [anon_sym_LBRACE] = ACTIONS(3600), + [anon_sym_RBRACE] = ACTIONS(3600), + [anon_sym_file] = ACTIONS(3603), + [anon_sym_LT] = ACTIONS(3603), + [anon_sym_GT] = ACTIONS(3603), + [anon_sym_in] = ACTIONS(3603), + [anon_sym_where] = ACTIONS(3603), + [anon_sym_QMARK] = ACTIONS(3603), + [anon_sym_notnull] = ACTIONS(3603), + [anon_sym_unmanaged] = ACTIONS(3603), + [anon_sym_BANG] = ACTIONS(3603), + [anon_sym_PLUS_PLUS] = ACTIONS(3600), + [anon_sym_DASH_DASH] = ACTIONS(3600), + [anon_sym_PLUS] = ACTIONS(3603), + [anon_sym_DASH] = ACTIONS(3603), + [anon_sym_STAR] = ACTIONS(3600), + [anon_sym_SLASH] = ACTIONS(3603), + [anon_sym_PERCENT] = ACTIONS(3600), + [anon_sym_CARET] = ACTIONS(3600), + [anon_sym_PIPE] = ACTIONS(3603), + [anon_sym_AMP] = ACTIONS(3603), + [anon_sym_LT_LT] = ACTIONS(3600), + [anon_sym_GT_GT] = ACTIONS(3603), + [anon_sym_GT_GT_GT] = ACTIONS(3600), + [anon_sym_EQ_EQ] = ACTIONS(3600), + [anon_sym_BANG_EQ] = ACTIONS(3600), + [anon_sym_GT_EQ] = ACTIONS(3600), + [anon_sym_LT_EQ] = ACTIONS(3600), + [anon_sym_DOT] = ACTIONS(3603), + [anon_sym_scoped] = ACTIONS(3603), + [anon_sym_EQ_GT] = ACTIONS(3600), + [anon_sym_COLON_COLON] = ACTIONS(3429), + [anon_sym_var] = ACTIONS(3603), + [anon_sym_yield] = ACTIONS(3603), + [anon_sym_switch] = ACTIONS(3603), + [anon_sym_when] = ACTIONS(3603), + [sym_discard] = ACTIONS(3603), + [anon_sym_DOT_DOT] = ACTIONS(3600), + [anon_sym_and] = ACTIONS(3603), + [anon_sym_or] = ACTIONS(3603), + [anon_sym_AMP_AMP] = ACTIONS(3600), + [anon_sym_PIPE_PIPE] = ACTIONS(3600), + [anon_sym_QMARK_QMARK] = ACTIONS(3600), + [anon_sym_from] = ACTIONS(3603), + [anon_sym_into] = ACTIONS(3603), + [anon_sym_join] = ACTIONS(3603), + [anon_sym_on] = ACTIONS(3603), + [anon_sym_equals] = ACTIONS(3603), + [anon_sym_let] = ACTIONS(3603), + [anon_sym_orderby] = ACTIONS(3603), + [anon_sym_ascending] = ACTIONS(3603), + [anon_sym_descending] = ACTIONS(3603), + [anon_sym_group] = ACTIONS(3603), + [anon_sym_by] = ACTIONS(3603), + [anon_sym_select] = ACTIONS(3603), + [anon_sym_as] = ACTIONS(3603), + [anon_sym_is] = ACTIONS(3603), + [anon_sym_DASH_GT] = ACTIONS(3600), + [anon_sym_with] = ACTIONS(3603), + [aux_sym_preproc_if_token3] = ACTIONS(3600), + [aux_sym_preproc_else_token1] = ACTIONS(3600), + [aux_sym_preproc_elif_token1] = ACTIONS(3600), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -415805,78 +415490,77 @@ 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(3650), - [anon_sym_alias] = ACTIONS(3650), - [anon_sym_SEMI] = ACTIONS(3652), - [anon_sym_global] = ACTIONS(3650), - [anon_sym_LBRACK] = ACTIONS(3652), - [anon_sym_COLON] = ACTIONS(3650), - [anon_sym_COMMA] = ACTIONS(3652), - [anon_sym_RBRACK] = ACTIONS(3652), - [anon_sym_LPAREN] = ACTIONS(3652), - [anon_sym_RPAREN] = ACTIONS(3652), - [anon_sym_LBRACE] = ACTIONS(3652), - [anon_sym_RBRACE] = ACTIONS(3652), - [anon_sym_file] = ACTIONS(3650), - [anon_sym_LT] = ACTIONS(3650), - [anon_sym_GT] = ACTIONS(3650), - [anon_sym_in] = ACTIONS(3650), - [anon_sym_where] = ACTIONS(3650), - [anon_sym_QMARK] = ACTIONS(3650), - [anon_sym_notnull] = ACTIONS(3650), - [anon_sym_unmanaged] = ACTIONS(3650), - [anon_sym_BANG] = ACTIONS(3650), - [anon_sym_PLUS_PLUS] = ACTIONS(3652), - [anon_sym_DASH_DASH] = ACTIONS(3652), - [anon_sym_PLUS] = ACTIONS(3650), - [anon_sym_DASH] = ACTIONS(3650), - [anon_sym_STAR] = ACTIONS(3652), - [anon_sym_SLASH] = ACTIONS(3650), - [anon_sym_PERCENT] = ACTIONS(3652), - [anon_sym_CARET] = ACTIONS(3652), - [anon_sym_PIPE] = ACTIONS(3650), - [anon_sym_AMP] = ACTIONS(3650), - [anon_sym_LT_LT] = ACTIONS(3652), - [anon_sym_GT_GT] = ACTIONS(3650), - [anon_sym_GT_GT_GT] = ACTIONS(3652), - [anon_sym_EQ_EQ] = ACTIONS(3652), - [anon_sym_BANG_EQ] = ACTIONS(3652), - [anon_sym_GT_EQ] = ACTIONS(3652), - [anon_sym_LT_EQ] = ACTIONS(3652), - [anon_sym_DOT] = ACTIONS(3650), - [anon_sym_scoped] = ACTIONS(3650), - [anon_sym_EQ_GT] = ACTIONS(3652), - [anon_sym_COLON_COLON] = ACTIONS(3652), - [anon_sym_var] = ACTIONS(3650), - [anon_sym_yield] = ACTIONS(3650), - [anon_sym_switch] = ACTIONS(3650), - [anon_sym_when] = ACTIONS(3650), - [sym_discard] = ACTIONS(3650), - [anon_sym_DOT_DOT] = ACTIONS(3652), - [anon_sym_and] = ACTIONS(3650), - [anon_sym_or] = ACTIONS(3650), - [anon_sym_AMP_AMP] = ACTIONS(3652), - [anon_sym_PIPE_PIPE] = ACTIONS(3652), - [anon_sym_QMARK_QMARK] = ACTIONS(3652), - [anon_sym_from] = ACTIONS(3650), - [anon_sym_into] = ACTIONS(3650), - [anon_sym_join] = ACTIONS(3650), - [anon_sym_on] = ACTIONS(3650), - [anon_sym_equals] = ACTIONS(3650), - [anon_sym_let] = ACTIONS(3650), - [anon_sym_orderby] = ACTIONS(3650), - [anon_sym_ascending] = ACTIONS(3650), - [anon_sym_descending] = ACTIONS(3650), - [anon_sym_group] = ACTIONS(3650), - [anon_sym_by] = ACTIONS(3650), - [anon_sym_select] = ACTIONS(3650), - [anon_sym_as] = ACTIONS(3650), - [anon_sym_is] = ACTIONS(3650), - [anon_sym_DASH_GT] = ACTIONS(3652), - [anon_sym_with] = ACTIONS(3650), - [aux_sym_preproc_if_token3] = ACTIONS(3652), - [aux_sym_preproc_else_token1] = ACTIONS(3652), - [aux_sym_preproc_elif_token1] = ACTIONS(3652), + [sym__identifier_token] = ACTIONS(3691), + [anon_sym_alias] = ACTIONS(3691), + [anon_sym_global] = ACTIONS(3691), + [anon_sym_EQ] = ACTIONS(3696), + [anon_sym_LBRACK] = ACTIONS(3713), + [anon_sym_LPAREN] = ACTIONS(3713), + [anon_sym_file] = ACTIONS(3691), + [anon_sym_LT] = ACTIONS(3696), + [anon_sym_GT] = ACTIONS(3696), + [anon_sym_where] = ACTIONS(3691), + [anon_sym_QMARK] = ACTIONS(3716), + [anon_sym_notnull] = ACTIONS(3691), + [anon_sym_unmanaged] = ACTIONS(3691), + [anon_sym_BANG] = ACTIONS(3696), + [anon_sym_PLUS_PLUS] = ACTIONS(3711), + [anon_sym_DASH_DASH] = ACTIONS(3711), + [anon_sym_PLUS] = ACTIONS(3696), + [anon_sym_DASH] = ACTIONS(3696), + [anon_sym_STAR] = ACTIONS(3716), + [anon_sym_SLASH] = ACTIONS(3696), + [anon_sym_PERCENT] = ACTIONS(3696), + [anon_sym_CARET] = ACTIONS(3696), + [anon_sym_PIPE] = ACTIONS(3696), + [anon_sym_AMP] = ACTIONS(3696), + [anon_sym_LT_LT] = ACTIONS(3696), + [anon_sym_GT_GT] = ACTIONS(3696), + [anon_sym_GT_GT_GT] = ACTIONS(3696), + [anon_sym_EQ_EQ] = ACTIONS(3711), + [anon_sym_BANG_EQ] = ACTIONS(3711), + [anon_sym_GT_EQ] = ACTIONS(3711), + [anon_sym_LT_EQ] = ACTIONS(3711), + [anon_sym_DOT] = ACTIONS(3716), + [anon_sym_scoped] = ACTIONS(3691), + [anon_sym_var] = ACTIONS(3691), + [anon_sym_yield] = ACTIONS(3691), + [anon_sym_switch] = ACTIONS(3696), + [anon_sym_when] = ACTIONS(3691), + [anon_sym_DOT_DOT] = ACTIONS(3711), + [anon_sym_and] = ACTIONS(3696), + [anon_sym_or] = ACTIONS(3696), + [anon_sym_PLUS_EQ] = ACTIONS(3711), + [anon_sym_DASH_EQ] = ACTIONS(3711), + [anon_sym_STAR_EQ] = ACTIONS(3711), + [anon_sym_SLASH_EQ] = ACTIONS(3711), + [anon_sym_PERCENT_EQ] = ACTIONS(3711), + [anon_sym_AMP_EQ] = ACTIONS(3711), + [anon_sym_CARET_EQ] = ACTIONS(3711), + [anon_sym_PIPE_EQ] = ACTIONS(3711), + [anon_sym_LT_LT_EQ] = ACTIONS(3711), + [anon_sym_GT_GT_EQ] = ACTIONS(3711), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3711), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3711), + [anon_sym_AMP_AMP] = ACTIONS(3711), + [anon_sym_PIPE_PIPE] = ACTIONS(3711), + [anon_sym_QMARK_QMARK] = ACTIONS(3696), + [anon_sym_from] = ACTIONS(3691), + [anon_sym_into] = ACTIONS(3691), + [anon_sym_join] = ACTIONS(3691), + [anon_sym_on] = ACTIONS(3691), + [anon_sym_equals] = ACTIONS(3691), + [anon_sym_let] = ACTIONS(3691), + [anon_sym_orderby] = ACTIONS(3691), + [anon_sym_ascending] = ACTIONS(3691), + [anon_sym_descending] = ACTIONS(3691), + [anon_sym_group] = ACTIONS(3691), + [anon_sym_by] = ACTIONS(3716), + [anon_sym_select] = ACTIONS(3691), + [anon_sym_as] = ACTIONS(3696), + [anon_sym_is] = ACTIONS(3696), + [anon_sym_DASH_GT] = ACTIONS(3713), + [anon_sym_with] = ACTIONS(3696), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -415898,78 +415582,77 @@ 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(3699), - [anon_sym_alias] = ACTIONS(3699), - [anon_sym_global] = ACTIONS(3699), - [anon_sym_EQ] = ACTIONS(3704), - [anon_sym_LBRACK] = ACTIONS(3721), - [anon_sym_COMMA] = ACTIONS(3719), - [anon_sym_LPAREN] = ACTIONS(3721), - [anon_sym_file] = ACTIONS(3699), - [anon_sym_LT] = ACTIONS(3704), - [anon_sym_GT] = ACTIONS(3704), - [anon_sym_where] = ACTIONS(3724), - [anon_sym_QMARK] = ACTIONS(3724), - [anon_sym_notnull] = ACTIONS(3699), - [anon_sym_unmanaged] = ACTIONS(3699), - [anon_sym_BANG] = ACTIONS(3704), - [anon_sym_PLUS_PLUS] = ACTIONS(3719), - [anon_sym_DASH_DASH] = ACTIONS(3719), - [anon_sym_PLUS] = ACTIONS(3704), - [anon_sym_DASH] = ACTIONS(3704), - [anon_sym_STAR] = ACTIONS(3724), - [anon_sym_SLASH] = ACTIONS(3704), - [anon_sym_PERCENT] = ACTIONS(3704), - [anon_sym_CARET] = ACTIONS(3704), - [anon_sym_PIPE] = ACTIONS(3704), - [anon_sym_AMP] = ACTIONS(3704), - [anon_sym_LT_LT] = ACTIONS(3704), - [anon_sym_GT_GT] = ACTIONS(3704), - [anon_sym_GT_GT_GT] = ACTIONS(3704), - [anon_sym_EQ_EQ] = ACTIONS(3719), - [anon_sym_BANG_EQ] = ACTIONS(3719), - [anon_sym_GT_EQ] = ACTIONS(3719), - [anon_sym_LT_EQ] = ACTIONS(3719), - [anon_sym_DOT] = ACTIONS(3724), - [anon_sym_scoped] = ACTIONS(3699), - [anon_sym_var] = ACTIONS(3699), - [anon_sym_yield] = ACTIONS(3699), - [anon_sym_switch] = ACTIONS(3704), - [anon_sym_when] = ACTIONS(3699), - [anon_sym_DOT_DOT] = ACTIONS(3719), - [anon_sym_and] = ACTIONS(3704), - [anon_sym_or] = ACTIONS(3704), - [anon_sym_PLUS_EQ] = ACTIONS(3719), - [anon_sym_DASH_EQ] = ACTIONS(3719), - [anon_sym_STAR_EQ] = ACTIONS(3719), - [anon_sym_SLASH_EQ] = ACTIONS(3719), - [anon_sym_PERCENT_EQ] = ACTIONS(3719), - [anon_sym_AMP_EQ] = ACTIONS(3719), - [anon_sym_CARET_EQ] = ACTIONS(3719), - [anon_sym_PIPE_EQ] = ACTIONS(3719), - [anon_sym_LT_LT_EQ] = ACTIONS(3719), - [anon_sym_GT_GT_EQ] = ACTIONS(3719), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3719), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3719), - [anon_sym_AMP_AMP] = ACTIONS(3719), - [anon_sym_PIPE_PIPE] = ACTIONS(3719), - [anon_sym_QMARK_QMARK] = ACTIONS(3704), - [anon_sym_from] = ACTIONS(3724), - [anon_sym_into] = ACTIONS(3699), - [anon_sym_join] = ACTIONS(3724), - [anon_sym_on] = ACTIONS(3699), - [anon_sym_equals] = ACTIONS(3699), - [anon_sym_let] = ACTIONS(3724), - [anon_sym_orderby] = ACTIONS(3724), - [anon_sym_ascending] = ACTIONS(3724), - [anon_sym_descending] = ACTIONS(3724), - [anon_sym_group] = ACTIONS(3724), - [anon_sym_by] = ACTIONS(3699), - [anon_sym_select] = ACTIONS(3724), - [anon_sym_as] = ACTIONS(3704), - [anon_sym_is] = ACTIONS(3704), - [anon_sym_DASH_GT] = ACTIONS(3721), - [anon_sym_with] = ACTIONS(3704), + [sym__identifier_token] = ACTIONS(3691), + [anon_sym_alias] = ACTIONS(3691), + [anon_sym_global] = ACTIONS(3691), + [anon_sym_EQ] = ACTIONS(3696), + [anon_sym_LBRACK] = ACTIONS(3713), + [anon_sym_LPAREN] = ACTIONS(3713), + [anon_sym_file] = ACTIONS(3691), + [anon_sym_LT] = ACTIONS(3696), + [anon_sym_GT] = ACTIONS(3696), + [anon_sym_where] = ACTIONS(3691), + [anon_sym_QMARK] = ACTIONS(3716), + [anon_sym_notnull] = ACTIONS(3691), + [anon_sym_unmanaged] = ACTIONS(3691), + [anon_sym_BANG] = ACTIONS(3696), + [anon_sym_PLUS_PLUS] = ACTIONS(3711), + [anon_sym_DASH_DASH] = ACTIONS(3711), + [anon_sym_PLUS] = ACTIONS(3696), + [anon_sym_DASH] = ACTIONS(3696), + [anon_sym_STAR] = ACTIONS(3716), + [anon_sym_SLASH] = ACTIONS(3696), + [anon_sym_PERCENT] = ACTIONS(3696), + [anon_sym_CARET] = ACTIONS(3696), + [anon_sym_PIPE] = ACTIONS(3696), + [anon_sym_AMP] = ACTIONS(3696), + [anon_sym_LT_LT] = ACTIONS(3696), + [anon_sym_GT_GT] = ACTIONS(3696), + [anon_sym_GT_GT_GT] = ACTIONS(3696), + [anon_sym_EQ_EQ] = ACTIONS(3711), + [anon_sym_BANG_EQ] = ACTIONS(3711), + [anon_sym_GT_EQ] = ACTIONS(3711), + [anon_sym_LT_EQ] = ACTIONS(3711), + [anon_sym_DOT] = ACTIONS(3716), + [anon_sym_scoped] = ACTIONS(3691), + [anon_sym_var] = ACTIONS(3691), + [anon_sym_yield] = ACTIONS(3691), + [anon_sym_switch] = ACTIONS(3696), + [anon_sym_when] = ACTIONS(3691), + [anon_sym_DOT_DOT] = ACTIONS(3711), + [anon_sym_and] = ACTIONS(3696), + [anon_sym_or] = ACTIONS(3696), + [anon_sym_PLUS_EQ] = ACTIONS(3711), + [anon_sym_DASH_EQ] = ACTIONS(3711), + [anon_sym_STAR_EQ] = ACTIONS(3711), + [anon_sym_SLASH_EQ] = ACTIONS(3711), + [anon_sym_PERCENT_EQ] = ACTIONS(3711), + [anon_sym_AMP_EQ] = ACTIONS(3711), + [anon_sym_CARET_EQ] = ACTIONS(3711), + [anon_sym_PIPE_EQ] = ACTIONS(3711), + [anon_sym_LT_LT_EQ] = ACTIONS(3711), + [anon_sym_GT_GT_EQ] = ACTIONS(3711), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3711), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3711), + [anon_sym_AMP_AMP] = ACTIONS(3711), + [anon_sym_PIPE_PIPE] = ACTIONS(3711), + [anon_sym_QMARK_QMARK] = ACTIONS(3696), + [anon_sym_from] = ACTIONS(3691), + [anon_sym_into] = ACTIONS(3691), + [anon_sym_join] = ACTIONS(3691), + [anon_sym_on] = ACTIONS(3716), + [anon_sym_equals] = ACTIONS(3691), + [anon_sym_let] = ACTIONS(3691), + [anon_sym_orderby] = ACTIONS(3691), + [anon_sym_ascending] = ACTIONS(3691), + [anon_sym_descending] = ACTIONS(3691), + [anon_sym_group] = ACTIONS(3691), + [anon_sym_by] = ACTIONS(3691), + [anon_sym_select] = ACTIONS(3691), + [anon_sym_as] = ACTIONS(3696), + [anon_sym_is] = ACTIONS(3696), + [anon_sym_DASH_GT] = ACTIONS(3713), + [anon_sym_with] = ACTIONS(3696), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -415991,78 +415674,77 @@ 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(3685), - [anon_sym_alias] = ACTIONS(3685), - [anon_sym_global] = ACTIONS(3685), - [anon_sym_EQ] = ACTIONS(3689), - [anon_sym_LBRACK] = ACTIONS(3691), - [anon_sym_COMMA] = ACTIONS(3697), - [anon_sym_LPAREN] = ACTIONS(3691), - [anon_sym_file] = ACTIONS(3685), - [anon_sym_LT] = ACTIONS(3689), - [anon_sym_GT] = ACTIONS(3689), - [anon_sym_where] = ACTIONS(3694), - [anon_sym_QMARK] = ACTIONS(3694), - [anon_sym_notnull] = ACTIONS(3685), - [anon_sym_unmanaged] = ACTIONS(3685), - [anon_sym_BANG] = ACTIONS(3689), - [anon_sym_PLUS_PLUS] = ACTIONS(3697), - [anon_sym_DASH_DASH] = ACTIONS(3697), - [anon_sym_PLUS] = ACTIONS(3689), - [anon_sym_DASH] = ACTIONS(3689), - [anon_sym_STAR] = ACTIONS(3694), - [anon_sym_SLASH] = ACTIONS(3689), - [anon_sym_PERCENT] = ACTIONS(3689), - [anon_sym_CARET] = ACTIONS(3689), - [anon_sym_PIPE] = ACTIONS(3689), - [anon_sym_AMP] = ACTIONS(3689), - [anon_sym_LT_LT] = ACTIONS(3689), - [anon_sym_GT_GT] = ACTIONS(3689), - [anon_sym_GT_GT_GT] = ACTIONS(3689), - [anon_sym_EQ_EQ] = ACTIONS(3697), - [anon_sym_BANG_EQ] = ACTIONS(3697), - [anon_sym_GT_EQ] = ACTIONS(3697), - [anon_sym_LT_EQ] = ACTIONS(3697), - [anon_sym_DOT] = ACTIONS(3694), - [anon_sym_scoped] = ACTIONS(3685), - [anon_sym_var] = ACTIONS(3685), - [anon_sym_yield] = ACTIONS(3685), - [anon_sym_switch] = ACTIONS(3689), - [anon_sym_when] = ACTIONS(3685), - [anon_sym_DOT_DOT] = ACTIONS(3697), - [anon_sym_and] = ACTIONS(3689), - [anon_sym_or] = ACTIONS(3689), - [anon_sym_PLUS_EQ] = ACTIONS(3697), - [anon_sym_DASH_EQ] = ACTIONS(3697), - [anon_sym_STAR_EQ] = ACTIONS(3697), - [anon_sym_SLASH_EQ] = ACTIONS(3697), - [anon_sym_PERCENT_EQ] = ACTIONS(3697), - [anon_sym_AMP_EQ] = ACTIONS(3697), - [anon_sym_CARET_EQ] = ACTIONS(3697), - [anon_sym_PIPE_EQ] = ACTIONS(3697), - [anon_sym_LT_LT_EQ] = ACTIONS(3697), - [anon_sym_GT_GT_EQ] = ACTIONS(3697), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3697), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3697), - [anon_sym_AMP_AMP] = ACTIONS(3697), - [anon_sym_PIPE_PIPE] = ACTIONS(3697), - [anon_sym_QMARK_QMARK] = ACTIONS(3689), - [anon_sym_from] = ACTIONS(3694), - [anon_sym_into] = ACTIONS(3685), - [anon_sym_join] = ACTIONS(3694), - [anon_sym_on] = ACTIONS(3685), - [anon_sym_equals] = ACTIONS(3685), - [anon_sym_let] = ACTIONS(3694), - [anon_sym_orderby] = ACTIONS(3694), - [anon_sym_ascending] = ACTIONS(3694), - [anon_sym_descending] = ACTIONS(3694), - [anon_sym_group] = ACTIONS(3694), - [anon_sym_by] = ACTIONS(3685), - [anon_sym_select] = ACTIONS(3694), - [anon_sym_as] = ACTIONS(3689), - [anon_sym_is] = ACTIONS(3689), - [anon_sym_DASH_GT] = ACTIONS(3691), - [anon_sym_with] = ACTIONS(3689), + [sym__identifier_token] = ACTIONS(3669), + [anon_sym_alias] = ACTIONS(3669), + [anon_sym_global] = ACTIONS(3669), + [anon_sym_EQ] = ACTIONS(3673), + [anon_sym_LBRACK] = ACTIONS(3675), + [anon_sym_LPAREN] = ACTIONS(3675), + [anon_sym_file] = ACTIONS(3669), + [anon_sym_LT] = ACTIONS(3673), + [anon_sym_GT] = ACTIONS(3673), + [anon_sym_where] = ACTIONS(3680), + [anon_sym_QMARK] = ACTIONS(3680), + [anon_sym_notnull] = ACTIONS(3669), + [anon_sym_unmanaged] = ACTIONS(3669), + [anon_sym_BANG] = ACTIONS(3673), + [anon_sym_PLUS_PLUS] = ACTIONS(3671), + [anon_sym_DASH_DASH] = ACTIONS(3671), + [anon_sym_PLUS] = ACTIONS(3673), + [anon_sym_DASH] = ACTIONS(3673), + [anon_sym_STAR] = ACTIONS(3680), + [anon_sym_SLASH] = ACTIONS(3673), + [anon_sym_PERCENT] = ACTIONS(3673), + [anon_sym_CARET] = ACTIONS(3673), + [anon_sym_PIPE] = ACTIONS(3673), + [anon_sym_AMP] = ACTIONS(3673), + [anon_sym_LT_LT] = ACTIONS(3673), + [anon_sym_GT_GT] = ACTIONS(3673), + [anon_sym_GT_GT_GT] = ACTIONS(3673), + [anon_sym_EQ_EQ] = ACTIONS(3671), + [anon_sym_BANG_EQ] = ACTIONS(3671), + [anon_sym_GT_EQ] = ACTIONS(3671), + [anon_sym_LT_EQ] = ACTIONS(3671), + [anon_sym_DOT] = ACTIONS(3680), + [anon_sym_scoped] = ACTIONS(3669), + [anon_sym_var] = ACTIONS(3669), + [anon_sym_yield] = ACTIONS(3669), + [anon_sym_switch] = ACTIONS(3673), + [anon_sym_when] = ACTIONS(3669), + [anon_sym_DOT_DOT] = ACTIONS(3671), + [anon_sym_and] = ACTIONS(3673), + [anon_sym_or] = ACTIONS(3673), + [anon_sym_PLUS_EQ] = ACTIONS(3671), + [anon_sym_DASH_EQ] = ACTIONS(3671), + [anon_sym_STAR_EQ] = ACTIONS(3671), + [anon_sym_SLASH_EQ] = ACTIONS(3671), + [anon_sym_PERCENT_EQ] = ACTIONS(3671), + [anon_sym_AMP_EQ] = ACTIONS(3671), + [anon_sym_CARET_EQ] = ACTIONS(3671), + [anon_sym_PIPE_EQ] = ACTIONS(3671), + [anon_sym_LT_LT_EQ] = ACTIONS(3671), + [anon_sym_GT_GT_EQ] = ACTIONS(3671), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3671), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3671), + [anon_sym_AMP_AMP] = ACTIONS(3671), + [anon_sym_PIPE_PIPE] = ACTIONS(3671), + [anon_sym_QMARK_QMARK] = ACTIONS(3673), + [anon_sym_from] = ACTIONS(3680), + [anon_sym_into] = ACTIONS(3680), + [anon_sym_join] = ACTIONS(3680), + [anon_sym_on] = ACTIONS(3669), + [anon_sym_equals] = ACTIONS(3669), + [anon_sym_let] = ACTIONS(3680), + [anon_sym_orderby] = ACTIONS(3680), + [anon_sym_ascending] = ACTIONS(3669), + [anon_sym_descending] = ACTIONS(3669), + [anon_sym_group] = ACTIONS(3680), + [anon_sym_by] = ACTIONS(3669), + [anon_sym_select] = ACTIONS(3680), + [anon_sym_as] = ACTIONS(3673), + [anon_sym_is] = ACTIONS(3673), + [anon_sym_DASH_GT] = ACTIONS(3675), + [anon_sym_with] = ACTIONS(3673), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -416084,78 +415766,77 @@ 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(3447), - [anon_sym_alias] = ACTIONS(3447), - [anon_sym_SEMI] = ACTIONS(3445), - [anon_sym_global] = ACTIONS(3447), - [anon_sym_LBRACK] = ACTIONS(3445), - [anon_sym_COLON] = ACTIONS(3447), - [anon_sym_COMMA] = ACTIONS(3445), - [anon_sym_RBRACK] = ACTIONS(3445), - [anon_sym_LPAREN] = ACTIONS(3445), - [anon_sym_RPAREN] = ACTIONS(3445), - [anon_sym_LBRACE] = ACTIONS(3445), - [anon_sym_RBRACE] = ACTIONS(3445), - [anon_sym_file] = ACTIONS(3447), - [anon_sym_LT] = ACTIONS(3447), - [anon_sym_GT] = ACTIONS(3447), - [anon_sym_in] = ACTIONS(3447), - [anon_sym_where] = ACTIONS(3447), - [anon_sym_QMARK] = ACTIONS(3447), - [anon_sym_notnull] = ACTIONS(3447), - [anon_sym_unmanaged] = ACTIONS(3447), - [anon_sym_BANG] = ACTIONS(3447), - [anon_sym_PLUS_PLUS] = ACTIONS(3445), - [anon_sym_DASH_DASH] = ACTIONS(3445), - [anon_sym_PLUS] = ACTIONS(3447), - [anon_sym_DASH] = ACTIONS(3447), - [anon_sym_STAR] = ACTIONS(3445), - [anon_sym_SLASH] = ACTIONS(3447), - [anon_sym_PERCENT] = ACTIONS(3445), - [anon_sym_CARET] = ACTIONS(3445), - [anon_sym_PIPE] = ACTIONS(3447), - [anon_sym_AMP] = ACTIONS(3447), - [anon_sym_LT_LT] = ACTIONS(3445), - [anon_sym_GT_GT] = ACTIONS(3447), - [anon_sym_GT_GT_GT] = ACTIONS(3445), - [anon_sym_EQ_EQ] = ACTIONS(3445), - [anon_sym_BANG_EQ] = ACTIONS(3445), - [anon_sym_GT_EQ] = ACTIONS(3445), - [anon_sym_LT_EQ] = ACTIONS(3445), - [anon_sym_DOT] = ACTIONS(3447), - [anon_sym_scoped] = ACTIONS(3447), - [anon_sym_EQ_GT] = ACTIONS(3445), - [anon_sym_COLON_COLON] = ACTIONS(3445), - [anon_sym_var] = ACTIONS(3447), - [anon_sym_yield] = ACTIONS(3447), - [anon_sym_switch] = ACTIONS(3447), - [anon_sym_when] = ACTIONS(3447), - [sym_discard] = ACTIONS(3447), - [anon_sym_DOT_DOT] = ACTIONS(3445), - [anon_sym_and] = ACTIONS(3447), - [anon_sym_or] = ACTIONS(3447), - [anon_sym_AMP_AMP] = ACTIONS(3445), - [anon_sym_PIPE_PIPE] = ACTIONS(3445), - [anon_sym_QMARK_QMARK] = ACTIONS(3445), - [anon_sym_from] = ACTIONS(3447), - [anon_sym_into] = ACTIONS(3447), - [anon_sym_join] = ACTIONS(3447), - [anon_sym_on] = ACTIONS(3447), - [anon_sym_equals] = ACTIONS(3447), - [anon_sym_let] = ACTIONS(3447), - [anon_sym_orderby] = ACTIONS(3447), - [anon_sym_ascending] = ACTIONS(3447), - [anon_sym_descending] = ACTIONS(3447), - [anon_sym_group] = ACTIONS(3447), - [anon_sym_by] = ACTIONS(3447), - [anon_sym_select] = ACTIONS(3447), - [anon_sym_as] = ACTIONS(3447), - [anon_sym_is] = ACTIONS(3447), - [anon_sym_DASH_GT] = ACTIONS(3445), - [anon_sym_with] = ACTIONS(3447), - [aux_sym_preproc_if_token3] = ACTIONS(3445), - [aux_sym_preproc_else_token1] = ACTIONS(3445), - [aux_sym_preproc_elif_token1] = ACTIONS(3445), + [sym__identifier_token] = ACTIONS(3669), + [anon_sym_alias] = ACTIONS(3669), + [anon_sym_global] = ACTIONS(3669), + [anon_sym_EQ] = ACTIONS(3673), + [anon_sym_LBRACK] = ACTIONS(3675), + [anon_sym_LPAREN] = ACTIONS(3675), + [anon_sym_file] = ACTIONS(3669), + [anon_sym_LT] = ACTIONS(3673), + [anon_sym_GT] = ACTIONS(3673), + [anon_sym_where] = ACTIONS(3669), + [anon_sym_QMARK] = ACTIONS(3680), + [anon_sym_notnull] = ACTIONS(3669), + [anon_sym_unmanaged] = ACTIONS(3669), + [anon_sym_BANG] = ACTIONS(3673), + [anon_sym_PLUS_PLUS] = ACTIONS(3671), + [anon_sym_DASH_DASH] = ACTIONS(3671), + [anon_sym_PLUS] = ACTIONS(3673), + [anon_sym_DASH] = ACTIONS(3673), + [anon_sym_STAR] = ACTIONS(3680), + [anon_sym_SLASH] = ACTIONS(3673), + [anon_sym_PERCENT] = ACTIONS(3673), + [anon_sym_CARET] = ACTIONS(3673), + [anon_sym_PIPE] = ACTIONS(3673), + [anon_sym_AMP] = ACTIONS(3673), + [anon_sym_LT_LT] = ACTIONS(3673), + [anon_sym_GT_GT] = ACTIONS(3673), + [anon_sym_GT_GT_GT] = ACTIONS(3673), + [anon_sym_EQ_EQ] = ACTIONS(3671), + [anon_sym_BANG_EQ] = ACTIONS(3671), + [anon_sym_GT_EQ] = ACTIONS(3671), + [anon_sym_LT_EQ] = ACTIONS(3671), + [anon_sym_DOT] = ACTIONS(3680), + [anon_sym_scoped] = ACTIONS(3669), + [anon_sym_var] = ACTIONS(3669), + [anon_sym_yield] = ACTIONS(3669), + [anon_sym_switch] = ACTIONS(3673), + [anon_sym_when] = ACTIONS(3669), + [anon_sym_DOT_DOT] = ACTIONS(3671), + [anon_sym_and] = ACTIONS(3673), + [anon_sym_or] = ACTIONS(3673), + [anon_sym_PLUS_EQ] = ACTIONS(3671), + [anon_sym_DASH_EQ] = ACTIONS(3671), + [anon_sym_STAR_EQ] = ACTIONS(3671), + [anon_sym_SLASH_EQ] = ACTIONS(3671), + [anon_sym_PERCENT_EQ] = ACTIONS(3671), + [anon_sym_AMP_EQ] = ACTIONS(3671), + [anon_sym_CARET_EQ] = ACTIONS(3671), + [anon_sym_PIPE_EQ] = ACTIONS(3671), + [anon_sym_LT_LT_EQ] = ACTIONS(3671), + [anon_sym_GT_GT_EQ] = ACTIONS(3671), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3671), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3671), + [anon_sym_AMP_AMP] = ACTIONS(3671), + [anon_sym_PIPE_PIPE] = ACTIONS(3671), + [anon_sym_QMARK_QMARK] = ACTIONS(3673), + [anon_sym_from] = ACTIONS(3669), + [anon_sym_into] = ACTIONS(3680), + [anon_sym_join] = ACTIONS(3669), + [anon_sym_on] = ACTIONS(3669), + [anon_sym_equals] = ACTIONS(3669), + [anon_sym_let] = ACTIONS(3669), + [anon_sym_orderby] = ACTIONS(3669), + [anon_sym_ascending] = ACTIONS(3669), + [anon_sym_descending] = ACTIONS(3669), + [anon_sym_group] = ACTIONS(3669), + [anon_sym_by] = ACTIONS(3680), + [anon_sym_select] = ACTIONS(3669), + [anon_sym_as] = ACTIONS(3673), + [anon_sym_is] = ACTIONS(3673), + [anon_sym_DASH_GT] = ACTIONS(3675), + [anon_sym_with] = ACTIONS(3673), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -416168,25 +415849,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2365] = { - [sym_argument_list] = STATE(2946), - [sym__name] = STATE(3072), - [sym_alias_qualified_name] = STATE(3029), - [sym__simple_name] = STATE(3029), - [sym_qualified_name] = STATE(3029), - [sym_generic_name] = STATE(2985), - [sym_type] = STATE(3383), - [sym_implicit_type] = STATE(3054), - [sym_array_type] = STATE(2956), - [sym__array_base_type] = STATE(7267), - [sym_nullable_type] = STATE(3012), - [sym_pointer_type] = STATE(3012), - [sym__pointer_base_type] = STATE(7693), - [sym_function_pointer_type] = STATE(3012), - [sym_ref_type] = STATE(3054), - [sym_scoped_type] = STATE(3054), - [sym_tuple_type] = STATE(3058), - [sym_identifier] = STATE(2923), - [sym__reserved_identifier] = STATE(2945), [sym_preproc_region] = STATE(2365), [sym_preproc_endregion] = STATE(2365), [sym_preproc_line] = STATE(2365), @@ -416196,59 +415858,77 @@ 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(3887), - [anon_sym_extern] = ACTIONS(3482), - [anon_sym_alias] = ACTIONS(3889), - [anon_sym_global] = ACTIONS(3889), - [anon_sym_unsafe] = ACTIONS(3482), - [anon_sym_static] = ACTIONS(3482), - [anon_sym_LBRACK] = ACTIONS(4036), - [anon_sym_LPAREN] = ACTIONS(4038), - [anon_sym_class] = ACTIONS(3482), - [anon_sym_ref] = ACTIONS(3891), - [anon_sym_struct] = ACTIONS(3482), - [anon_sym_enum] = ACTIONS(3482), - [anon_sym_LBRACE] = ACTIONS(4040), - [anon_sym_interface] = ACTIONS(3482), - [anon_sym_delegate] = ACTIONS(4042), - [anon_sym_record] = ACTIONS(3482), - [anon_sym_abstract] = ACTIONS(3482), - [anon_sym_async] = ACTIONS(3482), - [anon_sym_const] = ACTIONS(3482), - [anon_sym_file] = ACTIONS(3889), - [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(3889), - [anon_sym_notnull] = ACTIONS(3889), - [anon_sym_unmanaged] = ACTIONS(3889), - [anon_sym_scoped] = ACTIONS(4044), - [anon_sym_var] = ACTIONS(4046), - [sym_predefined_type] = ACTIONS(4048), - [anon_sym_yield] = ACTIONS(3889), - [anon_sym_when] = ACTIONS(3889), - [anon_sym_from] = ACTIONS(3889), - [anon_sym_into] = ACTIONS(3889), - [anon_sym_join] = ACTIONS(3889), - [anon_sym_on] = ACTIONS(3889), - [anon_sym_equals] = ACTIONS(3889), - [anon_sym_let] = ACTIONS(3889), - [anon_sym_orderby] = ACTIONS(3889), - [anon_sym_ascending] = ACTIONS(3889), - [anon_sym_descending] = ACTIONS(3889), - [anon_sym_group] = ACTIONS(3889), - [anon_sym_by] = ACTIONS(3889), - [anon_sym_select] = ACTIONS(3889), + [sym__identifier_token] = ACTIONS(3663), + [anon_sym_alias] = ACTIONS(3663), + [anon_sym_SEMI] = ACTIONS(3665), + [anon_sym_global] = ACTIONS(3663), + [anon_sym_LBRACK] = ACTIONS(3665), + [anon_sym_COLON] = ACTIONS(3665), + [anon_sym_COMMA] = ACTIONS(3665), + [anon_sym_RBRACK] = ACTIONS(3665), + [anon_sym_LPAREN] = ACTIONS(3665), + [anon_sym_RPAREN] = ACTIONS(3665), + [anon_sym_LBRACE] = ACTIONS(3665), + [anon_sym_RBRACE] = ACTIONS(3665), + [anon_sym_file] = ACTIONS(3663), + [anon_sym_LT] = ACTIONS(3663), + [anon_sym_GT] = ACTIONS(3663), + [anon_sym_in] = ACTIONS(3663), + [anon_sym_where] = ACTIONS(3663), + [anon_sym_QMARK] = ACTIONS(3663), + [anon_sym_notnull] = ACTIONS(3663), + [anon_sym_unmanaged] = ACTIONS(3663), + [anon_sym_BANG] = ACTIONS(3663), + [anon_sym_PLUS_PLUS] = ACTIONS(3665), + [anon_sym_DASH_DASH] = ACTIONS(3665), + [anon_sym_PLUS] = ACTIONS(3663), + [anon_sym_DASH] = ACTIONS(3663), + [anon_sym_STAR] = ACTIONS(3665), + [anon_sym_SLASH] = ACTIONS(3663), + [anon_sym_PERCENT] = ACTIONS(3665), + [anon_sym_CARET] = ACTIONS(3665), + [anon_sym_PIPE] = ACTIONS(3663), + [anon_sym_AMP] = ACTIONS(3663), + [anon_sym_LT_LT] = ACTIONS(3665), + [anon_sym_GT_GT] = ACTIONS(3663), + [anon_sym_GT_GT_GT] = ACTIONS(3665), + [anon_sym_EQ_EQ] = ACTIONS(3665), + [anon_sym_BANG_EQ] = ACTIONS(3665), + [anon_sym_GT_EQ] = ACTIONS(3665), + [anon_sym_LT_EQ] = ACTIONS(3665), + [anon_sym_DOT] = ACTIONS(3663), + [anon_sym_scoped] = ACTIONS(3663), + [anon_sym_EQ_GT] = ACTIONS(3665), + [anon_sym_var] = ACTIONS(3663), + [anon_sym_yield] = ACTIONS(3663), + [anon_sym_switch] = ACTIONS(3663), + [anon_sym_when] = ACTIONS(3663), + [sym_discard] = ACTIONS(3663), + [anon_sym_DOT_DOT] = ACTIONS(3665), + [anon_sym_and] = ACTIONS(3663), + [anon_sym_or] = ACTIONS(3663), + [anon_sym_AMP_AMP] = ACTIONS(3665), + [anon_sym_PIPE_PIPE] = ACTIONS(3665), + [anon_sym_QMARK_QMARK] = ACTIONS(3665), + [anon_sym_from] = ACTIONS(3663), + [anon_sym_into] = ACTIONS(3663), + [anon_sym_join] = ACTIONS(3663), + [anon_sym_on] = ACTIONS(3663), + [anon_sym_equals] = ACTIONS(3663), + [anon_sym_let] = ACTIONS(3663), + [anon_sym_orderby] = ACTIONS(3663), + [anon_sym_ascending] = ACTIONS(3663), + [anon_sym_descending] = ACTIONS(3663), + [anon_sym_group] = ACTIONS(3663), + [anon_sym_by] = ACTIONS(3663), + [anon_sym_select] = ACTIONS(3663), + [anon_sym_as] = ACTIONS(3663), + [anon_sym_is] = ACTIONS(3663), + [anon_sym_DASH_GT] = ACTIONS(3665), + [anon_sym_with] = ACTIONS(3663), + [aux_sym_preproc_if_token3] = ACTIONS(3665), + [aux_sym_preproc_else_token1] = ACTIONS(3665), + [aux_sym_preproc_elif_token1] = ACTIONS(3665), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -416261,7 +415941,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2366] = { - [sym_type_argument_list] = STATE(2417), + [sym_type_argument_list] = STATE(2432), [sym_preproc_region] = STATE(2366), [sym_preproc_endregion] = STATE(2366), [sym_preproc_line] = STATE(2366), @@ -416271,77 +415951,76 @@ 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(3660), - [anon_sym_alias] = ACTIONS(3660), - [anon_sym_SEMI] = ACTIONS(3662), - [anon_sym_global] = ACTIONS(3660), - [anon_sym_LBRACK] = ACTIONS(3662), - [anon_sym_COLON] = ACTIONS(3662), - [anon_sym_COMMA] = ACTIONS(3662), - [anon_sym_RBRACK] = ACTIONS(3662), - [anon_sym_LPAREN] = ACTIONS(3662), - [anon_sym_RPAREN] = ACTIONS(3662), - [anon_sym_LBRACE] = ACTIONS(3662), - [anon_sym_RBRACE] = ACTIONS(3662), - [anon_sym_file] = ACTIONS(3660), - [anon_sym_LT] = ACTIONS(4033), - [anon_sym_GT] = ACTIONS(3660), - [anon_sym_in] = ACTIONS(3660), - [anon_sym_where] = ACTIONS(3660), - [anon_sym_QMARK] = ACTIONS(3660), - [anon_sym_notnull] = ACTIONS(3660), - [anon_sym_unmanaged] = ACTIONS(3660), - [anon_sym_BANG] = ACTIONS(3660), - [anon_sym_PLUS_PLUS] = ACTIONS(3662), - [anon_sym_DASH_DASH] = ACTIONS(3662), - [anon_sym_PLUS] = ACTIONS(3660), - [anon_sym_DASH] = ACTIONS(3660), - [anon_sym_STAR] = ACTIONS(3662), - [anon_sym_SLASH] = ACTIONS(3660), - [anon_sym_PERCENT] = ACTIONS(3662), - [anon_sym_CARET] = ACTIONS(3662), - [anon_sym_PIPE] = ACTIONS(3660), - [anon_sym_AMP] = ACTIONS(3660), - [anon_sym_LT_LT] = ACTIONS(3662), - [anon_sym_GT_GT] = ACTIONS(3660), - [anon_sym_GT_GT_GT] = ACTIONS(3662), - [anon_sym_EQ_EQ] = ACTIONS(3662), - [anon_sym_BANG_EQ] = ACTIONS(3662), - [anon_sym_GT_EQ] = ACTIONS(3662), - [anon_sym_LT_EQ] = ACTIONS(3662), - [anon_sym_DOT] = ACTIONS(3660), - [anon_sym_scoped] = ACTIONS(3660), - [anon_sym_EQ_GT] = ACTIONS(3662), - [anon_sym_var] = ACTIONS(3660), - [anon_sym_yield] = ACTIONS(3660), - [anon_sym_switch] = ACTIONS(3660), - [anon_sym_when] = ACTIONS(3660), - [sym_discard] = ACTIONS(3660), - [anon_sym_DOT_DOT] = ACTIONS(3662), - [anon_sym_and] = ACTIONS(3660), - [anon_sym_or] = ACTIONS(3660), - [anon_sym_AMP_AMP] = ACTIONS(3662), - [anon_sym_PIPE_PIPE] = ACTIONS(3662), - [anon_sym_QMARK_QMARK] = ACTIONS(3662), - [anon_sym_from] = ACTIONS(3660), - [anon_sym_into] = ACTIONS(3660), - [anon_sym_join] = ACTIONS(3660), - [anon_sym_on] = ACTIONS(3660), - [anon_sym_equals] = ACTIONS(3660), - [anon_sym_let] = ACTIONS(3660), - [anon_sym_orderby] = ACTIONS(3660), - [anon_sym_ascending] = ACTIONS(3660), - [anon_sym_descending] = ACTIONS(3660), - [anon_sym_group] = ACTIONS(3660), - [anon_sym_by] = ACTIONS(3660), - [anon_sym_select] = ACTIONS(3660), - [anon_sym_as] = ACTIONS(3660), - [anon_sym_is] = ACTIONS(3660), - [anon_sym_DASH_GT] = ACTIONS(3662), - [anon_sym_with] = ACTIONS(3660), - [aux_sym_preproc_if_token3] = ACTIONS(3662), - [aux_sym_preproc_else_token1] = ACTIONS(3662), - [aux_sym_preproc_elif_token1] = ACTIONS(3662), + [anon_sym_SEMI] = ACTIONS(3640), + [anon_sym_EQ] = ACTIONS(3638), + [anon_sym_LBRACK] = ACTIONS(3640), + [anon_sym_COLON] = ACTIONS(3640), + [anon_sym_COMMA] = ACTIONS(3640), + [anon_sym_RBRACK] = ACTIONS(3640), + [anon_sym_LPAREN] = ACTIONS(3640), + [anon_sym_RPAREN] = ACTIONS(3640), + [anon_sym_RBRACE] = ACTIONS(3640), + [anon_sym_LT] = ACTIONS(4030), + [anon_sym_GT] = ACTIONS(3638), + [anon_sym_in] = ACTIONS(3638), + [anon_sym_where] = ACTIONS(3640), + [anon_sym_QMARK] = ACTIONS(3638), + [anon_sym_BANG] = ACTIONS(3638), + [anon_sym_PLUS_PLUS] = ACTIONS(3640), + [anon_sym_DASH_DASH] = ACTIONS(3640), + [anon_sym_PLUS] = ACTIONS(3638), + [anon_sym_DASH] = ACTIONS(3638), + [anon_sym_STAR] = ACTIONS(3638), + [anon_sym_SLASH] = ACTIONS(3638), + [anon_sym_PERCENT] = ACTIONS(3638), + [anon_sym_CARET] = ACTIONS(3638), + [anon_sym_PIPE] = ACTIONS(3638), + [anon_sym_AMP] = ACTIONS(3638), + [anon_sym_LT_LT] = ACTIONS(3638), + [anon_sym_GT_GT] = ACTIONS(3638), + [anon_sym_GT_GT_GT] = ACTIONS(3638), + [anon_sym_EQ_EQ] = ACTIONS(3640), + [anon_sym_BANG_EQ] = ACTIONS(3640), + [anon_sym_GT_EQ] = ACTIONS(3640), + [anon_sym_LT_EQ] = ACTIONS(3640), + [anon_sym_DOT] = ACTIONS(3638), + [anon_sym_EQ_GT] = ACTIONS(3640), + [anon_sym_switch] = ACTIONS(3640), + [anon_sym_DOT_DOT] = ACTIONS(3640), + [anon_sym_and] = ACTIONS(3640), + [anon_sym_or] = ACTIONS(3638), + [anon_sym_PLUS_EQ] = ACTIONS(3640), + [anon_sym_DASH_EQ] = ACTIONS(3640), + [anon_sym_STAR_EQ] = ACTIONS(3640), + [anon_sym_SLASH_EQ] = ACTIONS(3640), + [anon_sym_PERCENT_EQ] = ACTIONS(3640), + [anon_sym_AMP_EQ] = ACTIONS(3640), + [anon_sym_CARET_EQ] = ACTIONS(3640), + [anon_sym_PIPE_EQ] = ACTIONS(3640), + [anon_sym_LT_LT_EQ] = ACTIONS(3640), + [anon_sym_GT_GT_EQ] = ACTIONS(3640), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3640), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3640), + [anon_sym_AMP_AMP] = ACTIONS(3640), + [anon_sym_PIPE_PIPE] = ACTIONS(3640), + [anon_sym_QMARK_QMARK] = ACTIONS(3638), + [anon_sym_from] = ACTIONS(3640), + [anon_sym_into] = ACTIONS(3640), + [anon_sym_join] = ACTIONS(3640), + [anon_sym_on] = ACTIONS(3640), + [anon_sym_equals] = ACTIONS(3640), + [anon_sym_let] = ACTIONS(3640), + [anon_sym_orderby] = ACTIONS(3640), + [anon_sym_group] = ACTIONS(3640), + [anon_sym_by] = ACTIONS(3640), + [anon_sym_select] = ACTIONS(3640), + [anon_sym_as] = ACTIONS(3640), + [anon_sym_is] = ACTIONS(3640), + [anon_sym_DASH_GT] = ACTIONS(3640), + [anon_sym_with] = ACTIONS(3640), + [aux_sym_preproc_if_token3] = ACTIONS(3640), + [aux_sym_preproc_else_token1] = ACTIONS(3640), + [aux_sym_preproc_elif_token1] = ACTIONS(3640), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -416363,78 +416042,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2367), [sym_preproc_define] = STATE(2367), [sym_preproc_undef] = STATE(2367), - [sym__identifier_token] = ACTIONS(3619), - [anon_sym_alias] = ACTIONS(3619), - [anon_sym_SEMI] = ACTIONS(3616), - [anon_sym_global] = ACTIONS(3619), - [anon_sym_LBRACK] = ACTIONS(3616), - [anon_sym_COLON] = ACTIONS(3619), - [anon_sym_COMMA] = ACTIONS(3616), - [anon_sym_RBRACK] = ACTIONS(3616), - [anon_sym_LPAREN] = ACTIONS(3616), - [anon_sym_RPAREN] = ACTIONS(3616), - [anon_sym_LBRACE] = ACTIONS(3616), - [anon_sym_RBRACE] = ACTIONS(3616), - [anon_sym_file] = ACTIONS(3619), - [anon_sym_LT] = ACTIONS(3619), - [anon_sym_GT] = ACTIONS(3619), - [anon_sym_in] = ACTIONS(3619), - [anon_sym_where] = ACTIONS(3619), - [anon_sym_QMARK] = ACTIONS(3619), - [anon_sym_notnull] = ACTIONS(3619), - [anon_sym_unmanaged] = ACTIONS(3619), - [anon_sym_BANG] = ACTIONS(3619), - [anon_sym_PLUS_PLUS] = ACTIONS(3616), - [anon_sym_DASH_DASH] = ACTIONS(3616), - [anon_sym_PLUS] = ACTIONS(3619), - [anon_sym_DASH] = ACTIONS(3619), - [anon_sym_STAR] = ACTIONS(3616), - [anon_sym_SLASH] = ACTIONS(3619), - [anon_sym_PERCENT] = ACTIONS(3616), - [anon_sym_CARET] = ACTIONS(3616), - [anon_sym_PIPE] = ACTIONS(3619), - [anon_sym_AMP] = ACTIONS(3619), - [anon_sym_LT_LT] = ACTIONS(3616), - [anon_sym_GT_GT] = ACTIONS(3619), - [anon_sym_GT_GT_GT] = ACTIONS(3616), - [anon_sym_EQ_EQ] = ACTIONS(3616), - [anon_sym_BANG_EQ] = ACTIONS(3616), - [anon_sym_GT_EQ] = ACTIONS(3616), - [anon_sym_LT_EQ] = ACTIONS(3616), - [anon_sym_DOT] = ACTIONS(3619), - [anon_sym_scoped] = ACTIONS(3619), - [anon_sym_EQ_GT] = ACTIONS(3616), - [anon_sym_COLON_COLON] = ACTIONS(3445), - [anon_sym_var] = ACTIONS(3619), - [anon_sym_yield] = ACTIONS(3619), - [anon_sym_switch] = ACTIONS(3619), - [anon_sym_when] = ACTIONS(3619), - [sym_discard] = ACTIONS(3619), - [anon_sym_DOT_DOT] = ACTIONS(3616), - [anon_sym_and] = ACTIONS(3619), - [anon_sym_or] = ACTIONS(3619), - [anon_sym_AMP_AMP] = ACTIONS(3616), - [anon_sym_PIPE_PIPE] = ACTIONS(3616), - [anon_sym_QMARK_QMARK] = ACTIONS(3616), - [anon_sym_from] = ACTIONS(3619), - [anon_sym_into] = ACTIONS(3619), - [anon_sym_join] = ACTIONS(3619), - [anon_sym_on] = ACTIONS(3619), - [anon_sym_equals] = ACTIONS(3619), - [anon_sym_let] = ACTIONS(3619), - [anon_sym_orderby] = ACTIONS(3619), - [anon_sym_ascending] = ACTIONS(3619), - [anon_sym_descending] = ACTIONS(3619), - [anon_sym_group] = ACTIONS(3619), - [anon_sym_by] = ACTIONS(3619), - [anon_sym_select] = ACTIONS(3619), - [anon_sym_as] = ACTIONS(3619), - [anon_sym_is] = ACTIONS(3619), - [anon_sym_DASH_GT] = ACTIONS(3616), - [anon_sym_with] = ACTIONS(3619), - [aux_sym_preproc_if_token3] = ACTIONS(3616), - [aux_sym_preproc_else_token1] = ACTIONS(3616), - [aux_sym_preproc_elif_token1] = ACTIONS(3616), + [sym__identifier_token] = ACTIONS(3691), + [anon_sym_alias] = ACTIONS(3691), + [anon_sym_global] = ACTIONS(3691), + [anon_sym_EQ] = ACTIONS(3696), + [anon_sym_LBRACK] = ACTIONS(3713), + [anon_sym_LPAREN] = ACTIONS(3713), + [anon_sym_file] = ACTIONS(3691), + [anon_sym_LT] = ACTIONS(3696), + [anon_sym_GT] = ACTIONS(3696), + [anon_sym_where] = ACTIONS(3691), + [anon_sym_QMARK] = ACTIONS(3716), + [anon_sym_notnull] = ACTIONS(3691), + [anon_sym_unmanaged] = ACTIONS(3691), + [anon_sym_BANG] = ACTIONS(3696), + [anon_sym_PLUS_PLUS] = ACTIONS(3711), + [anon_sym_DASH_DASH] = ACTIONS(3711), + [anon_sym_PLUS] = ACTIONS(3696), + [anon_sym_DASH] = ACTIONS(3696), + [anon_sym_STAR] = ACTIONS(3716), + [anon_sym_SLASH] = ACTIONS(3696), + [anon_sym_PERCENT] = ACTIONS(3696), + [anon_sym_CARET] = ACTIONS(3696), + [anon_sym_PIPE] = ACTIONS(3696), + [anon_sym_AMP] = ACTIONS(3696), + [anon_sym_LT_LT] = ACTIONS(3696), + [anon_sym_GT_GT] = ACTIONS(3696), + [anon_sym_GT_GT_GT] = ACTIONS(3696), + [anon_sym_EQ_EQ] = ACTIONS(3711), + [anon_sym_BANG_EQ] = ACTIONS(3711), + [anon_sym_GT_EQ] = ACTIONS(3711), + [anon_sym_LT_EQ] = ACTIONS(3711), + [anon_sym_DOT] = ACTIONS(3716), + [anon_sym_scoped] = ACTIONS(3691), + [anon_sym_var] = ACTIONS(3691), + [anon_sym_yield] = ACTIONS(3691), + [anon_sym_switch] = ACTIONS(3696), + [anon_sym_when] = ACTIONS(3691), + [anon_sym_DOT_DOT] = ACTIONS(3711), + [anon_sym_and] = ACTIONS(3696), + [anon_sym_or] = ACTIONS(3696), + [anon_sym_PLUS_EQ] = ACTIONS(3711), + [anon_sym_DASH_EQ] = ACTIONS(3711), + [anon_sym_STAR_EQ] = ACTIONS(3711), + [anon_sym_SLASH_EQ] = ACTIONS(3711), + [anon_sym_PERCENT_EQ] = ACTIONS(3711), + [anon_sym_AMP_EQ] = ACTIONS(3711), + [anon_sym_CARET_EQ] = ACTIONS(3711), + [anon_sym_PIPE_EQ] = ACTIONS(3711), + [anon_sym_LT_LT_EQ] = ACTIONS(3711), + [anon_sym_GT_GT_EQ] = ACTIONS(3711), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3711), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3711), + [anon_sym_AMP_AMP] = ACTIONS(3711), + [anon_sym_PIPE_PIPE] = ACTIONS(3711), + [anon_sym_QMARK_QMARK] = ACTIONS(3696), + [anon_sym_from] = ACTIONS(3691), + [anon_sym_into] = ACTIONS(3716), + [anon_sym_join] = ACTIONS(3691), + [anon_sym_on] = ACTIONS(3691), + [anon_sym_equals] = ACTIONS(3691), + [anon_sym_let] = ACTIONS(3691), + [anon_sym_orderby] = ACTIONS(3691), + [anon_sym_ascending] = ACTIONS(3691), + [anon_sym_descending] = ACTIONS(3691), + [anon_sym_group] = ACTIONS(3691), + [anon_sym_by] = ACTIONS(3716), + [anon_sym_select] = ACTIONS(3691), + [anon_sym_as] = ACTIONS(3696), + [anon_sym_is] = ACTIONS(3696), + [anon_sym_DASH_GT] = ACTIONS(3713), + [anon_sym_with] = ACTIONS(3696), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -416447,14 +416125,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2368] = { - [sym_parameter_list] = STATE(7311), - [sym_positional_pattern_clause] = STATE(2487), - [sym_property_pattern_clause] = STATE(2555), - [sym__variable_designation] = STATE(4779), - [sym_parenthesized_variable_designation] = STATE(4761), - [sym__lambda_parameters] = STATE(7536), - [sym_identifier] = STATE(4381), - [sym__reserved_identifier] = STATE(4323), [sym_preproc_region] = STATE(2368), [sym_preproc_endregion] = STATE(2368), [sym_preproc_line] = STATE(2368), @@ -416464,68 +416134,77 @@ 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(4050), - [anon_sym_alias] = ACTIONS(4052), - [anon_sym_global] = ACTIONS(4052), - [anon_sym_LBRACK] = ACTIONS(3893), - [anon_sym_COLON] = ACTIONS(3893), - [anon_sym_COMMA] = ACTIONS(3893), - [anon_sym_LPAREN] = ACTIONS(3893), - [anon_sym_LBRACE] = ACTIONS(4054), - [anon_sym_file] = ACTIONS(4052), - [anon_sym_LT] = ACTIONS(3895), - [anon_sym_GT] = ACTIONS(3895), - [anon_sym_where] = ACTIONS(4052), - [anon_sym_QMARK] = ACTIONS(3895), - [anon_sym_notnull] = ACTIONS(4052), - [anon_sym_unmanaged] = ACTIONS(4052), - [anon_sym_BANG] = ACTIONS(3895), - [anon_sym_PLUS_PLUS] = ACTIONS(3893), - [anon_sym_DASH_DASH] = ACTIONS(3893), - [anon_sym_PLUS] = ACTIONS(3895), - [anon_sym_DASH] = ACTIONS(3895), - [anon_sym_STAR] = ACTIONS(3893), - [anon_sym_SLASH] = ACTIONS(3895), - [anon_sym_PERCENT] = ACTIONS(3893), - [anon_sym_CARET] = ACTIONS(3893), - [anon_sym_PIPE] = ACTIONS(3895), - [anon_sym_AMP] = ACTIONS(3895), - [anon_sym_LT_LT] = ACTIONS(3893), - [anon_sym_GT_GT] = ACTIONS(3895), - [anon_sym_GT_GT_GT] = ACTIONS(3893), - [anon_sym_EQ_EQ] = ACTIONS(3893), - [anon_sym_BANG_EQ] = ACTIONS(3893), - [anon_sym_GT_EQ] = ACTIONS(3893), - [anon_sym_LT_EQ] = ACTIONS(3893), - [anon_sym_DOT] = ACTIONS(3895), - [anon_sym_scoped] = ACTIONS(4052), - [anon_sym_var] = ACTIONS(4052), - [anon_sym_yield] = ACTIONS(4052), - [anon_sym_switch] = ACTIONS(3895), - [anon_sym_when] = ACTIONS(4052), - [sym_discard] = ACTIONS(4056), - [anon_sym_DOT_DOT] = ACTIONS(3893), - [anon_sym_and] = ACTIONS(3883), - [anon_sym_or] = ACTIONS(3883), - [anon_sym_AMP_AMP] = ACTIONS(3893), - [anon_sym_PIPE_PIPE] = ACTIONS(3893), - [anon_sym_QMARK_QMARK] = ACTIONS(3893), - [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(3895), - [anon_sym_is] = ACTIONS(3895), - [anon_sym_DASH_GT] = ACTIONS(3893), - [anon_sym_with] = ACTIONS(3895), + [sym__identifier_token] = ACTIONS(3669), + [anon_sym_alias] = ACTIONS(3669), + [anon_sym_global] = ACTIONS(3669), + [anon_sym_EQ] = ACTIONS(3673), + [anon_sym_LBRACK] = ACTIONS(3675), + [anon_sym_LPAREN] = ACTIONS(3675), + [anon_sym_file] = ACTIONS(3669), + [anon_sym_LT] = ACTIONS(3673), + [anon_sym_GT] = ACTIONS(3673), + [anon_sym_where] = ACTIONS(3669), + [anon_sym_QMARK] = ACTIONS(3680), + [anon_sym_notnull] = ACTIONS(3669), + [anon_sym_unmanaged] = ACTIONS(3669), + [anon_sym_BANG] = ACTIONS(3673), + [anon_sym_PLUS_PLUS] = ACTIONS(3671), + [anon_sym_DASH_DASH] = ACTIONS(3671), + [anon_sym_PLUS] = ACTIONS(3673), + [anon_sym_DASH] = ACTIONS(3673), + [anon_sym_STAR] = ACTIONS(3680), + [anon_sym_SLASH] = ACTIONS(3673), + [anon_sym_PERCENT] = ACTIONS(3673), + [anon_sym_CARET] = ACTIONS(3673), + [anon_sym_PIPE] = ACTIONS(3673), + [anon_sym_AMP] = ACTIONS(3673), + [anon_sym_LT_LT] = ACTIONS(3673), + [anon_sym_GT_GT] = ACTIONS(3673), + [anon_sym_GT_GT_GT] = ACTIONS(3673), + [anon_sym_EQ_EQ] = ACTIONS(3671), + [anon_sym_BANG_EQ] = ACTIONS(3671), + [anon_sym_GT_EQ] = ACTIONS(3671), + [anon_sym_LT_EQ] = ACTIONS(3671), + [anon_sym_DOT] = ACTIONS(3680), + [anon_sym_scoped] = ACTIONS(3669), + [anon_sym_var] = ACTIONS(3669), + [anon_sym_yield] = ACTIONS(3669), + [anon_sym_switch] = ACTIONS(3673), + [anon_sym_when] = ACTIONS(3669), + [anon_sym_DOT_DOT] = ACTIONS(3671), + [anon_sym_and] = ACTIONS(3673), + [anon_sym_or] = ACTIONS(3673), + [anon_sym_PLUS_EQ] = ACTIONS(3671), + [anon_sym_DASH_EQ] = ACTIONS(3671), + [anon_sym_STAR_EQ] = ACTIONS(3671), + [anon_sym_SLASH_EQ] = ACTIONS(3671), + [anon_sym_PERCENT_EQ] = ACTIONS(3671), + [anon_sym_AMP_EQ] = ACTIONS(3671), + [anon_sym_CARET_EQ] = ACTIONS(3671), + [anon_sym_PIPE_EQ] = ACTIONS(3671), + [anon_sym_LT_LT_EQ] = ACTIONS(3671), + [anon_sym_GT_GT_EQ] = ACTIONS(3671), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3671), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3671), + [anon_sym_AMP_AMP] = ACTIONS(3671), + [anon_sym_PIPE_PIPE] = ACTIONS(3671), + [anon_sym_QMARK_QMARK] = ACTIONS(3673), + [anon_sym_from] = ACTIONS(3669), + [anon_sym_into] = ACTIONS(3680), + [anon_sym_join] = ACTIONS(3669), + [anon_sym_on] = ACTIONS(3680), + [anon_sym_equals] = ACTIONS(3669), + [anon_sym_let] = ACTIONS(3669), + [anon_sym_orderby] = ACTIONS(3669), + [anon_sym_ascending] = ACTIONS(3669), + [anon_sym_descending] = ACTIONS(3669), + [anon_sym_group] = ACTIONS(3669), + [anon_sym_by] = ACTIONS(3669), + [anon_sym_select] = ACTIONS(3669), + [anon_sym_as] = ACTIONS(3673), + [anon_sym_is] = ACTIONS(3673), + [anon_sym_DASH_GT] = ACTIONS(3675), + [anon_sym_with] = ACTIONS(3673), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -416536,7 +416215,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(3893), }, [2369] = { [sym_preproc_region] = STATE(2369), @@ -416548,77 +416226,77 @@ 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(3699), - [anon_sym_alias] = ACTIONS(3699), - [anon_sym_global] = ACTIONS(3699), - [anon_sym_EQ] = ACTIONS(3704), - [anon_sym_LBRACK] = ACTIONS(3721), - [anon_sym_LPAREN] = ACTIONS(3721), - [anon_sym_file] = ACTIONS(3699), - [anon_sym_LT] = ACTIONS(3704), - [anon_sym_GT] = ACTIONS(3704), - [anon_sym_where] = ACTIONS(3724), - [anon_sym_QMARK] = ACTIONS(3724), - [anon_sym_notnull] = ACTIONS(3699), - [anon_sym_unmanaged] = ACTIONS(3699), - [anon_sym_BANG] = ACTIONS(3704), - [anon_sym_PLUS_PLUS] = ACTIONS(3719), - [anon_sym_DASH_DASH] = ACTIONS(3719), - [anon_sym_PLUS] = ACTIONS(3704), - [anon_sym_DASH] = ACTIONS(3704), - [anon_sym_STAR] = ACTIONS(3724), - [anon_sym_SLASH] = ACTIONS(3704), - [anon_sym_PERCENT] = ACTIONS(3704), - [anon_sym_CARET] = ACTIONS(3704), - [anon_sym_PIPE] = ACTIONS(3704), - [anon_sym_AMP] = ACTIONS(3704), - [anon_sym_LT_LT] = ACTIONS(3704), - [anon_sym_GT_GT] = ACTIONS(3704), - [anon_sym_GT_GT_GT] = ACTIONS(3704), - [anon_sym_EQ_EQ] = ACTIONS(3719), - [anon_sym_BANG_EQ] = ACTIONS(3719), - [anon_sym_GT_EQ] = ACTIONS(3719), - [anon_sym_LT_EQ] = ACTIONS(3719), - [anon_sym_DOT] = ACTIONS(3724), - [anon_sym_scoped] = ACTIONS(3699), - [anon_sym_var] = ACTIONS(3699), - [anon_sym_yield] = ACTIONS(3699), - [anon_sym_switch] = ACTIONS(3704), - [anon_sym_when] = ACTIONS(3699), - [anon_sym_DOT_DOT] = ACTIONS(3719), - [anon_sym_and] = ACTIONS(3704), - [anon_sym_or] = ACTIONS(3704), - [anon_sym_PLUS_EQ] = ACTIONS(3719), - [anon_sym_DASH_EQ] = ACTIONS(3719), - [anon_sym_STAR_EQ] = ACTIONS(3719), - [anon_sym_SLASH_EQ] = ACTIONS(3719), - [anon_sym_PERCENT_EQ] = ACTIONS(3719), - [anon_sym_AMP_EQ] = ACTIONS(3719), - [anon_sym_CARET_EQ] = ACTIONS(3719), - [anon_sym_PIPE_EQ] = ACTIONS(3719), - [anon_sym_LT_LT_EQ] = ACTIONS(3719), - [anon_sym_GT_GT_EQ] = ACTIONS(3719), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3719), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3719), - [anon_sym_AMP_AMP] = ACTIONS(3719), - [anon_sym_PIPE_PIPE] = ACTIONS(3719), - [anon_sym_QMARK_QMARK] = ACTIONS(3704), - [anon_sym_from] = ACTIONS(3724), - [anon_sym_into] = ACTIONS(3724), - [anon_sym_join] = ACTIONS(3724), - [anon_sym_on] = ACTIONS(3699), - [anon_sym_equals] = ACTIONS(3699), - [anon_sym_let] = ACTIONS(3724), - [anon_sym_orderby] = ACTIONS(3724), - [anon_sym_ascending] = ACTIONS(3699), - [anon_sym_descending] = ACTIONS(3699), - [anon_sym_group] = ACTIONS(3724), - [anon_sym_by] = ACTIONS(3699), - [anon_sym_select] = ACTIONS(3724), - [anon_sym_as] = ACTIONS(3704), - [anon_sym_is] = ACTIONS(3704), - [anon_sym_DASH_GT] = ACTIONS(3721), - [anon_sym_with] = ACTIONS(3704), + [sym__identifier_token] = ACTIONS(3669), + [anon_sym_alias] = ACTIONS(3669), + [anon_sym_global] = ACTIONS(3669), + [anon_sym_EQ] = ACTIONS(3673), + [anon_sym_LBRACK] = ACTIONS(3675), + [anon_sym_LPAREN] = ACTIONS(3675), + [anon_sym_file] = ACTIONS(3669), + [anon_sym_LT] = ACTIONS(3673), + [anon_sym_GT] = ACTIONS(3673), + [anon_sym_where] = ACTIONS(3669), + [anon_sym_QMARK] = ACTIONS(3680), + [anon_sym_notnull] = ACTIONS(3669), + [anon_sym_unmanaged] = ACTIONS(3669), + [anon_sym_BANG] = ACTIONS(3673), + [anon_sym_PLUS_PLUS] = ACTIONS(3671), + [anon_sym_DASH_DASH] = ACTIONS(3671), + [anon_sym_PLUS] = ACTIONS(3673), + [anon_sym_DASH] = ACTIONS(3673), + [anon_sym_STAR] = ACTIONS(3680), + [anon_sym_SLASH] = ACTIONS(3673), + [anon_sym_PERCENT] = ACTIONS(3673), + [anon_sym_CARET] = ACTIONS(3673), + [anon_sym_PIPE] = ACTIONS(3673), + [anon_sym_AMP] = ACTIONS(3673), + [anon_sym_LT_LT] = ACTIONS(3673), + [anon_sym_GT_GT] = ACTIONS(3673), + [anon_sym_GT_GT_GT] = ACTIONS(3673), + [anon_sym_EQ_EQ] = ACTIONS(3671), + [anon_sym_BANG_EQ] = ACTIONS(3671), + [anon_sym_GT_EQ] = ACTIONS(3671), + [anon_sym_LT_EQ] = ACTIONS(3671), + [anon_sym_DOT] = ACTIONS(3680), + [anon_sym_scoped] = ACTIONS(3669), + [anon_sym_var] = ACTIONS(3669), + [anon_sym_yield] = ACTIONS(3669), + [anon_sym_switch] = ACTIONS(3673), + [anon_sym_when] = ACTIONS(3669), + [anon_sym_DOT_DOT] = ACTIONS(3671), + [anon_sym_and] = ACTIONS(3673), + [anon_sym_or] = ACTIONS(3673), + [anon_sym_PLUS_EQ] = ACTIONS(3671), + [anon_sym_DASH_EQ] = ACTIONS(3671), + [anon_sym_STAR_EQ] = ACTIONS(3671), + [anon_sym_SLASH_EQ] = ACTIONS(3671), + [anon_sym_PERCENT_EQ] = ACTIONS(3671), + [anon_sym_AMP_EQ] = ACTIONS(3671), + [anon_sym_CARET_EQ] = ACTIONS(3671), + [anon_sym_PIPE_EQ] = ACTIONS(3671), + [anon_sym_LT_LT_EQ] = ACTIONS(3671), + [anon_sym_GT_GT_EQ] = ACTIONS(3671), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3671), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3671), + [anon_sym_AMP_AMP] = ACTIONS(3671), + [anon_sym_PIPE_PIPE] = ACTIONS(3671), + [anon_sym_QMARK_QMARK] = ACTIONS(3673), + [anon_sym_from] = ACTIONS(3669), + [anon_sym_into] = ACTIONS(3669), + [anon_sym_join] = ACTIONS(3669), + [anon_sym_on] = ACTIONS(3669), + [anon_sym_equals] = ACTIONS(3680), + [anon_sym_let] = ACTIONS(3669), + [anon_sym_orderby] = ACTIONS(3669), + [anon_sym_ascending] = ACTIONS(3669), + [anon_sym_descending] = ACTIONS(3669), + [anon_sym_group] = ACTIONS(3669), + [anon_sym_by] = ACTIONS(3669), + [anon_sym_select] = ACTIONS(3669), + [anon_sym_as] = ACTIONS(3673), + [anon_sym_is] = ACTIONS(3673), + [anon_sym_DASH_GT] = ACTIONS(3675), + [anon_sym_with] = ACTIONS(3673), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -416631,15 +416309,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2370] = { - [sym__name] = STATE(2446), - [sym_alias_qualified_name] = STATE(2373), - [sym__simple_name] = STATE(2373), - [sym_qualified_name] = STATE(2373), - [sym_generic_name] = STATE(2389), - [sym_ref_type] = STATE(2317), - [sym__scoped_base_type] = STATE(2340), - [sym_identifier] = STATE(2359), - [sym__reserved_identifier] = STATE(2361), [sym_preproc_region] = STATE(2370), [sym_preproc_endregion] = STATE(2370), [sym_preproc_line] = STATE(2370), @@ -416649,68 +416318,77 @@ 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(4058), - [anon_sym_alias] = ACTIONS(4060), - [anon_sym_global] = ACTIONS(4060), - [anon_sym_LBRACK] = ACTIONS(3445), - [anon_sym_COMMA] = ACTIONS(3445), - [anon_sym_LPAREN] = ACTIONS(3445), - [anon_sym_ref] = ACTIONS(4062), - [anon_sym_LBRACE] = ACTIONS(3445), - [anon_sym_file] = ACTIONS(4060), - [anon_sym_LT] = ACTIONS(3447), - [anon_sym_GT] = ACTIONS(3447), - [anon_sym_where] = ACTIONS(3584), - [anon_sym_QMARK] = ACTIONS(3447), - [anon_sym_notnull] = ACTIONS(4060), - [anon_sym_unmanaged] = ACTIONS(4060), - [anon_sym_BANG] = ACTIONS(3447), - [anon_sym_PLUS_PLUS] = ACTIONS(3445), - [anon_sym_DASH_DASH] = ACTIONS(3445), - [anon_sym_PLUS] = ACTIONS(3447), - [anon_sym_DASH] = ACTIONS(3447), - [anon_sym_STAR] = ACTIONS(3445), - [anon_sym_SLASH] = ACTIONS(3447), - [anon_sym_PERCENT] = ACTIONS(3445), - [anon_sym_CARET] = ACTIONS(3445), - [anon_sym_PIPE] = ACTIONS(3447), - [anon_sym_AMP] = ACTIONS(3447), - [anon_sym_LT_LT] = ACTIONS(3445), - [anon_sym_GT_GT] = ACTIONS(3447), - [anon_sym_GT_GT_GT] = ACTIONS(3445), - [anon_sym_EQ_EQ] = ACTIONS(3445), - [anon_sym_BANG_EQ] = ACTIONS(3445), - [anon_sym_GT_EQ] = ACTIONS(3445), - [anon_sym_LT_EQ] = ACTIONS(3445), - [anon_sym_DOT] = ACTIONS(3447), - [anon_sym_scoped] = ACTIONS(4060), - [anon_sym_COLON_COLON] = ACTIONS(3445), - [anon_sym_var] = ACTIONS(4060), - [anon_sym_yield] = ACTIONS(4060), - [anon_sym_switch] = ACTIONS(3447), - [anon_sym_when] = ACTIONS(4060), - [anon_sym_DOT_DOT] = ACTIONS(3445), - [anon_sym_and] = ACTIONS(3447), - [anon_sym_or] = ACTIONS(3447), - [anon_sym_AMP_AMP] = ACTIONS(3445), - [anon_sym_PIPE_PIPE] = ACTIONS(3445), - [anon_sym_QMARK_QMARK] = ACTIONS(3445), - [anon_sym_from] = ACTIONS(3584), - [anon_sym_into] = ACTIONS(4060), - [anon_sym_join] = ACTIONS(3584), - [anon_sym_on] = ACTIONS(4060), - [anon_sym_equals] = ACTIONS(4060), - [anon_sym_let] = ACTIONS(3584), - [anon_sym_orderby] = ACTIONS(3584), - [anon_sym_ascending] = ACTIONS(3584), - [anon_sym_descending] = ACTIONS(3584), - [anon_sym_group] = ACTIONS(3584), - [anon_sym_by] = ACTIONS(4060), - [anon_sym_select] = ACTIONS(3584), - [anon_sym_as] = ACTIONS(3447), - [anon_sym_is] = ACTIONS(3447), - [anon_sym_DASH_GT] = ACTIONS(3445), - [anon_sym_with] = ACTIONS(3447), + [sym__identifier_token] = ACTIONS(3669), + [anon_sym_alias] = ACTIONS(3669), + [anon_sym_global] = ACTIONS(3669), + [anon_sym_EQ] = ACTIONS(3673), + [anon_sym_LBRACK] = ACTIONS(3675), + [anon_sym_LPAREN] = ACTIONS(3675), + [anon_sym_file] = ACTIONS(3669), + [anon_sym_LT] = ACTIONS(3673), + [anon_sym_GT] = ACTIONS(3673), + [anon_sym_where] = ACTIONS(3669), + [anon_sym_QMARK] = ACTIONS(3680), + [anon_sym_notnull] = ACTIONS(3669), + [anon_sym_unmanaged] = ACTIONS(3669), + [anon_sym_BANG] = ACTIONS(3673), + [anon_sym_PLUS_PLUS] = ACTIONS(3671), + [anon_sym_DASH_DASH] = ACTIONS(3671), + [anon_sym_PLUS] = ACTIONS(3673), + [anon_sym_DASH] = ACTIONS(3673), + [anon_sym_STAR] = ACTIONS(3680), + [anon_sym_SLASH] = ACTIONS(3673), + [anon_sym_PERCENT] = ACTIONS(3673), + [anon_sym_CARET] = ACTIONS(3673), + [anon_sym_PIPE] = ACTIONS(3673), + [anon_sym_AMP] = ACTIONS(3673), + [anon_sym_LT_LT] = ACTIONS(3673), + [anon_sym_GT_GT] = ACTIONS(3673), + [anon_sym_GT_GT_GT] = ACTIONS(3673), + [anon_sym_EQ_EQ] = ACTIONS(3671), + [anon_sym_BANG_EQ] = ACTIONS(3671), + [anon_sym_GT_EQ] = ACTIONS(3671), + [anon_sym_LT_EQ] = ACTIONS(3671), + [anon_sym_DOT] = ACTIONS(3680), + [anon_sym_scoped] = ACTIONS(3669), + [anon_sym_var] = ACTIONS(3669), + [anon_sym_yield] = ACTIONS(3669), + [anon_sym_switch] = ACTIONS(3673), + [anon_sym_when] = ACTIONS(3669), + [anon_sym_DOT_DOT] = ACTIONS(3671), + [anon_sym_and] = ACTIONS(3673), + [anon_sym_or] = ACTIONS(3673), + [anon_sym_PLUS_EQ] = ACTIONS(3671), + [anon_sym_DASH_EQ] = ACTIONS(3671), + [anon_sym_STAR_EQ] = ACTIONS(3671), + [anon_sym_SLASH_EQ] = ACTIONS(3671), + [anon_sym_PERCENT_EQ] = ACTIONS(3671), + [anon_sym_AMP_EQ] = ACTIONS(3671), + [anon_sym_CARET_EQ] = ACTIONS(3671), + [anon_sym_PIPE_EQ] = ACTIONS(3671), + [anon_sym_LT_LT_EQ] = ACTIONS(3671), + [anon_sym_GT_GT_EQ] = ACTIONS(3671), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3671), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3671), + [anon_sym_AMP_AMP] = ACTIONS(3671), + [anon_sym_PIPE_PIPE] = ACTIONS(3671), + [anon_sym_QMARK_QMARK] = ACTIONS(3673), + [anon_sym_from] = ACTIONS(3669), + [anon_sym_into] = ACTIONS(3669), + [anon_sym_join] = ACTIONS(3669), + [anon_sym_on] = ACTIONS(3669), + [anon_sym_equals] = ACTIONS(3669), + [anon_sym_let] = ACTIONS(3669), + [anon_sym_orderby] = ACTIONS(3669), + [anon_sym_ascending] = ACTIONS(3669), + [anon_sym_descending] = ACTIONS(3669), + [anon_sym_group] = ACTIONS(3669), + [anon_sym_by] = ACTIONS(3680), + [anon_sym_select] = ACTIONS(3669), + [anon_sym_as] = ACTIONS(3673), + [anon_sym_is] = ACTIONS(3673), + [anon_sym_DASH_GT] = ACTIONS(3675), + [anon_sym_with] = ACTIONS(3673), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -416723,15 +416401,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2371] = { - [sym__name] = STATE(5232), - [sym_alias_qualified_name] = STATE(3251), - [sym__simple_name] = STATE(3251), - [sym_qualified_name] = STATE(3251), - [sym_generic_name] = STATE(3246), - [sym_ref_type] = STATE(3261), - [sym__scoped_base_type] = STATE(3262), - [sym_identifier] = STATE(4654), - [sym__reserved_identifier] = STATE(3225), [sym_preproc_region] = STATE(2371), [sym_preproc_endregion] = STATE(2371), [sym_preproc_line] = STATE(2371), @@ -416741,68 +416410,77 @@ 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), - [sym__identifier_token] = ACTIONS(3788), - [anon_sym_alias] = ACTIONS(3790), - [anon_sym_global] = ACTIONS(3790), - [anon_sym_LBRACK] = ACTIONS(3445), - [anon_sym_LPAREN] = ACTIONS(3445), - [anon_sym_ref] = ACTIONS(4064), - [anon_sym_LBRACE] = ACTIONS(3445), - [anon_sym_file] = ACTIONS(3790), - [anon_sym_LT] = ACTIONS(3447), - [anon_sym_GT] = ACTIONS(3447), - [anon_sym_in] = ACTIONS(3447), - [anon_sym_where] = ACTIONS(3790), - [anon_sym_QMARK] = ACTIONS(3447), - [anon_sym_notnull] = ACTIONS(3790), - [anon_sym_unmanaged] = ACTIONS(3790), - [anon_sym_BANG] = ACTIONS(3447), - [anon_sym_PLUS_PLUS] = ACTIONS(3445), - [anon_sym_DASH_DASH] = ACTIONS(3445), - [anon_sym_PLUS] = ACTIONS(3447), - [anon_sym_DASH] = ACTIONS(3447), - [anon_sym_STAR] = ACTIONS(3445), - [anon_sym_SLASH] = ACTIONS(3447), - [anon_sym_PERCENT] = ACTIONS(3445), - [anon_sym_CARET] = ACTIONS(3445), - [anon_sym_PIPE] = ACTIONS(3447), - [anon_sym_AMP] = ACTIONS(3447), - [anon_sym_LT_LT] = ACTIONS(3445), - [anon_sym_GT_GT] = ACTIONS(3447), - [anon_sym_GT_GT_GT] = ACTIONS(3445), - [anon_sym_EQ_EQ] = ACTIONS(3445), - [anon_sym_BANG_EQ] = ACTIONS(3445), - [anon_sym_GT_EQ] = ACTIONS(3445), - [anon_sym_LT_EQ] = ACTIONS(3445), - [anon_sym_DOT] = ACTIONS(3447), - [anon_sym_scoped] = ACTIONS(3790), - [anon_sym_COLON_COLON] = ACTIONS(3445), - [anon_sym_var] = ACTIONS(3790), - [anon_sym_yield] = ACTIONS(3790), - [anon_sym_switch] = ACTIONS(3447), - [anon_sym_when] = ACTIONS(3790), - [anon_sym_DOT_DOT] = ACTIONS(3445), - [anon_sym_and] = ACTIONS(3447), - [anon_sym_or] = ACTIONS(3447), - [anon_sym_AMP_AMP] = ACTIONS(3445), - [anon_sym_PIPE_PIPE] = ACTIONS(3445), - [anon_sym_QMARK_QMARK] = ACTIONS(3445), - [anon_sym_from] = ACTIONS(3790), - [anon_sym_into] = ACTIONS(3790), - [anon_sym_join] = ACTIONS(3790), - [anon_sym_on] = ACTIONS(3790), - [anon_sym_equals] = ACTIONS(3790), - [anon_sym_let] = ACTIONS(3790), - [anon_sym_orderby] = ACTIONS(3790), - [anon_sym_ascending] = ACTIONS(3790), - [anon_sym_descending] = ACTIONS(3790), - [anon_sym_group] = ACTIONS(3790), - [anon_sym_by] = ACTIONS(3790), - [anon_sym_select] = ACTIONS(3790), - [anon_sym_as] = ACTIONS(3447), - [anon_sym_is] = ACTIONS(3447), - [anon_sym_DASH_GT] = ACTIONS(3445), - [anon_sym_with] = ACTIONS(3447), + [sym__identifier_token] = ACTIONS(3961), + [anon_sym_alias] = ACTIONS(3961), + [anon_sym_SEMI] = ACTIONS(3963), + [anon_sym_global] = ACTIONS(3961), + [anon_sym_LBRACK] = ACTIONS(4033), + [anon_sym_COLON] = ACTIONS(3963), + [anon_sym_COMMA] = ACTIONS(3963), + [anon_sym_RBRACK] = ACTIONS(3963), + [anon_sym_LPAREN] = ACTIONS(3963), + [anon_sym_RPAREN] = ACTIONS(3963), + [anon_sym_LBRACE] = ACTIONS(3963), + [anon_sym_RBRACE] = ACTIONS(3963), + [anon_sym_file] = ACTIONS(3961), + [anon_sym_LT] = ACTIONS(3961), + [anon_sym_GT] = ACTIONS(3961), + [anon_sym_in] = ACTIONS(3961), + [anon_sym_where] = ACTIONS(3961), + [anon_sym_QMARK] = ACTIONS(4036), + [anon_sym_notnull] = ACTIONS(3961), + [anon_sym_unmanaged] = ACTIONS(3961), + [anon_sym_BANG] = ACTIONS(3961), + [anon_sym_PLUS_PLUS] = ACTIONS(3963), + [anon_sym_DASH_DASH] = ACTIONS(3963), + [anon_sym_PLUS] = ACTIONS(3961), + [anon_sym_DASH] = ACTIONS(3961), + [anon_sym_STAR] = ACTIONS(4039), + [anon_sym_SLASH] = ACTIONS(3961), + [anon_sym_PERCENT] = ACTIONS(3963), + [anon_sym_CARET] = ACTIONS(3963), + [anon_sym_PIPE] = ACTIONS(3961), + [anon_sym_AMP] = ACTIONS(3961), + [anon_sym_LT_LT] = ACTIONS(3963), + [anon_sym_GT_GT] = ACTIONS(3961), + [anon_sym_GT_GT_GT] = ACTIONS(3963), + [anon_sym_EQ_EQ] = ACTIONS(3963), + [anon_sym_BANG_EQ] = ACTIONS(3963), + [anon_sym_GT_EQ] = ACTIONS(3963), + [anon_sym_LT_EQ] = ACTIONS(3963), + [anon_sym_DOT] = ACTIONS(4042), + [anon_sym_scoped] = ACTIONS(3961), + [anon_sym_EQ_GT] = ACTIONS(3963), + [anon_sym_var] = ACTIONS(3961), + [anon_sym_yield] = ACTIONS(3961), + [anon_sym_switch] = ACTIONS(3961), + [anon_sym_when] = ACTIONS(3961), + [sym_discard] = ACTIONS(3961), + [anon_sym_DOT_DOT] = ACTIONS(3963), + [anon_sym_and] = ACTIONS(3961), + [anon_sym_or] = ACTIONS(3961), + [anon_sym_AMP_AMP] = ACTIONS(3963), + [anon_sym_PIPE_PIPE] = ACTIONS(3963), + [anon_sym_QMARK_QMARK] = ACTIONS(3963), + [anon_sym_from] = ACTIONS(3961), + [anon_sym_into] = ACTIONS(3961), + [anon_sym_join] = ACTIONS(3961), + [anon_sym_on] = ACTIONS(3961), + [anon_sym_equals] = ACTIONS(3961), + [anon_sym_let] = ACTIONS(3961), + [anon_sym_orderby] = ACTIONS(3961), + [anon_sym_ascending] = ACTIONS(3961), + [anon_sym_descending] = ACTIONS(3961), + [anon_sym_group] = ACTIONS(3961), + [anon_sym_by] = ACTIONS(3961), + [anon_sym_select] = ACTIONS(3961), + [anon_sym_as] = ACTIONS(3961), + [anon_sym_is] = ACTIONS(3961), + [anon_sym_DASH_GT] = ACTIONS(4044), + [anon_sym_with] = ACTIONS(3961), + [aux_sym_preproc_if_token3] = ACTIONS(3963), + [aux_sym_preproc_else_token1] = ACTIONS(3963), + [aux_sym_preproc_elif_token1] = ACTIONS(3963), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -416815,6 +416493,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2372] = { + [sym_parameter_list] = STATE(7531), + [sym_positional_pattern_clause] = STATE(2507), + [sym_property_pattern_clause] = STATE(2555), + [sym__variable_designation] = STATE(4764), + [sym_parenthesized_variable_designation] = STATE(4760), + [sym__lambda_parameters] = STATE(7378), + [sym_identifier] = STATE(4343), + [sym__reserved_identifier] = STATE(4328), [sym_preproc_region] = STATE(2372), [sym_preproc_endregion] = STATE(2372), [sym_preproc_line] = STATE(2372), @@ -416824,87 +416510,79 @@ 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(3699), - [anon_sym_alias] = ACTIONS(3699), - [anon_sym_global] = ACTIONS(3699), - [anon_sym_EQ] = ACTIONS(3704), - [anon_sym_LBRACK] = ACTIONS(3721), - [anon_sym_LPAREN] = ACTIONS(3721), - [anon_sym_file] = ACTIONS(3699), - [anon_sym_LT] = ACTIONS(3704), - [anon_sym_GT] = ACTIONS(3704), - [anon_sym_where] = ACTIONS(3699), - [anon_sym_QMARK] = ACTIONS(3724), - [anon_sym_notnull] = ACTIONS(3699), - [anon_sym_unmanaged] = ACTIONS(3699), - [anon_sym_BANG] = ACTIONS(3704), - [anon_sym_PLUS_PLUS] = ACTIONS(3719), - [anon_sym_DASH_DASH] = ACTIONS(3719), - [anon_sym_PLUS] = ACTIONS(3704), - [anon_sym_DASH] = ACTIONS(3704), - [anon_sym_STAR] = ACTIONS(3724), - [anon_sym_SLASH] = ACTIONS(3704), - [anon_sym_PERCENT] = ACTIONS(3704), - [anon_sym_CARET] = ACTIONS(3704), - [anon_sym_PIPE] = ACTIONS(3704), - [anon_sym_AMP] = ACTIONS(3704), - [anon_sym_LT_LT] = ACTIONS(3704), - [anon_sym_GT_GT] = ACTIONS(3704), - [anon_sym_GT_GT_GT] = ACTIONS(3704), - [anon_sym_EQ_EQ] = ACTIONS(3719), - [anon_sym_BANG_EQ] = ACTIONS(3719), - [anon_sym_GT_EQ] = ACTIONS(3719), - [anon_sym_LT_EQ] = ACTIONS(3719), - [anon_sym_DOT] = ACTIONS(3724), - [anon_sym_scoped] = ACTIONS(3699), - [anon_sym_var] = ACTIONS(3699), - [anon_sym_yield] = ACTIONS(3699), - [anon_sym_switch] = ACTIONS(3704), - [anon_sym_when] = ACTIONS(3699), - [anon_sym_DOT_DOT] = ACTIONS(3719), - [anon_sym_and] = ACTIONS(3704), - [anon_sym_or] = ACTIONS(3704), - [anon_sym_PLUS_EQ] = ACTIONS(3719), - [anon_sym_DASH_EQ] = ACTIONS(3719), - [anon_sym_STAR_EQ] = ACTIONS(3719), - [anon_sym_SLASH_EQ] = ACTIONS(3719), - [anon_sym_PERCENT_EQ] = ACTIONS(3719), - [anon_sym_AMP_EQ] = ACTIONS(3719), - [anon_sym_CARET_EQ] = ACTIONS(3719), - [anon_sym_PIPE_EQ] = ACTIONS(3719), - [anon_sym_LT_LT_EQ] = ACTIONS(3719), - [anon_sym_GT_GT_EQ] = ACTIONS(3719), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3719), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3719), - [anon_sym_AMP_AMP] = ACTIONS(3719), - [anon_sym_PIPE_PIPE] = ACTIONS(3719), - [anon_sym_QMARK_QMARK] = ACTIONS(3704), - [anon_sym_from] = ACTIONS(3699), - [anon_sym_into] = ACTIONS(3699), - [anon_sym_join] = ACTIONS(3699), - [anon_sym_on] = ACTIONS(3699), - [anon_sym_equals] = ACTIONS(3724), - [anon_sym_let] = ACTIONS(3699), - [anon_sym_orderby] = ACTIONS(3699), - [anon_sym_ascending] = ACTIONS(3699), - [anon_sym_descending] = ACTIONS(3699), - [anon_sym_group] = ACTIONS(3699), - [anon_sym_by] = ACTIONS(3699), - [anon_sym_select] = ACTIONS(3699), - [anon_sym_as] = ACTIONS(3704), - [anon_sym_is] = ACTIONS(3704), - [anon_sym_DASH_GT] = ACTIONS(3721), - [anon_sym_with] = ACTIONS(3704), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_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(4046), + [anon_sym_alias] = ACTIONS(4048), + [anon_sym_global] = ACTIONS(4048), + [anon_sym_LBRACK] = ACTIONS(3859), + [anon_sym_COLON] = ACTIONS(3859), + [anon_sym_COMMA] = ACTIONS(3859), + [anon_sym_LPAREN] = ACTIONS(3859), + [anon_sym_LBRACE] = ACTIONS(4050), + [anon_sym_file] = ACTIONS(4048), + [anon_sym_LT] = ACTIONS(3863), + [anon_sym_GT] = ACTIONS(3863), + [anon_sym_where] = ACTIONS(4048), + [anon_sym_QMARK] = ACTIONS(3863), + [anon_sym_notnull] = ACTIONS(4048), + [anon_sym_unmanaged] = ACTIONS(4048), + [anon_sym_BANG] = ACTIONS(3863), + [anon_sym_PLUS_PLUS] = ACTIONS(3859), + [anon_sym_DASH_DASH] = ACTIONS(3859), + [anon_sym_PLUS] = ACTIONS(3863), + [anon_sym_DASH] = ACTIONS(3863), + [anon_sym_STAR] = ACTIONS(3859), + [anon_sym_SLASH] = ACTIONS(3863), + [anon_sym_PERCENT] = ACTIONS(3859), + [anon_sym_CARET] = ACTIONS(3859), + [anon_sym_PIPE] = ACTIONS(3863), + [anon_sym_AMP] = ACTIONS(3863), + [anon_sym_LT_LT] = ACTIONS(3859), + [anon_sym_GT_GT] = ACTIONS(3863), + [anon_sym_GT_GT_GT] = ACTIONS(3859), + [anon_sym_EQ_EQ] = ACTIONS(3859), + [anon_sym_BANG_EQ] = ACTIONS(3859), + [anon_sym_GT_EQ] = ACTIONS(3859), + [anon_sym_LT_EQ] = ACTIONS(3859), + [anon_sym_DOT] = ACTIONS(3863), + [anon_sym_scoped] = ACTIONS(4048), + [anon_sym_var] = ACTIONS(4048), + [anon_sym_yield] = ACTIONS(4048), + [anon_sym_switch] = ACTIONS(3863), + [anon_sym_when] = ACTIONS(4048), + [sym_discard] = ACTIONS(4052), + [anon_sym_DOT_DOT] = ACTIONS(3859), + [anon_sym_and] = ACTIONS(3863), + [anon_sym_or] = ACTIONS(3863), + [anon_sym_AMP_AMP] = ACTIONS(3859), + [anon_sym_PIPE_PIPE] = ACTIONS(3859), + [anon_sym_QMARK_QMARK] = ACTIONS(3859), + [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(3863), + [anon_sym_is] = ACTIONS(3863), + [anon_sym_DASH_GT] = ACTIONS(3859), + [anon_sym_with] = ACTIONS(3863), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_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(3859), }, [2373] = { [sym_preproc_region] = STATE(2373), @@ -416916,77 +416594,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2373), [sym_preproc_define] = STATE(2373), [sym_preproc_undef] = STATE(2373), - [sym__identifier_token] = ACTIONS(3699), - [anon_sym_alias] = ACTIONS(3699), - [anon_sym_SEMI] = ACTIONS(3710), - [anon_sym_global] = ACTIONS(3699), - [anon_sym_LBRACK] = ACTIONS(3710), - [anon_sym_COLON] = ACTIONS(3710), - [anon_sym_COMMA] = ACTIONS(3710), - [anon_sym_RBRACK] = ACTIONS(3710), - [anon_sym_LPAREN] = ACTIONS(3710), - [anon_sym_RPAREN] = ACTIONS(3710), - [anon_sym_LBRACE] = ACTIONS(3710), - [anon_sym_RBRACE] = ACTIONS(3710), - [anon_sym_file] = ACTIONS(3699), - [anon_sym_LT] = ACTIONS(3699), - [anon_sym_GT] = ACTIONS(3699), - [anon_sym_in] = ACTIONS(3699), - [anon_sym_where] = ACTIONS(3699), - [anon_sym_QMARK] = ACTIONS(3699), - [anon_sym_notnull] = ACTIONS(3699), - [anon_sym_unmanaged] = ACTIONS(3699), - [anon_sym_BANG] = ACTIONS(3699), - [anon_sym_PLUS_PLUS] = ACTIONS(3710), - [anon_sym_DASH_DASH] = ACTIONS(3710), - [anon_sym_PLUS] = ACTIONS(3699), - [anon_sym_DASH] = ACTIONS(3699), - [anon_sym_STAR] = ACTIONS(3710), - [anon_sym_SLASH] = ACTIONS(3699), - [anon_sym_PERCENT] = ACTIONS(3710), - [anon_sym_CARET] = ACTIONS(3710), - [anon_sym_PIPE] = ACTIONS(3699), - [anon_sym_AMP] = ACTIONS(3699), - [anon_sym_LT_LT] = ACTIONS(3710), - [anon_sym_GT_GT] = ACTIONS(3699), - [anon_sym_GT_GT_GT] = ACTIONS(3710), - [anon_sym_EQ_EQ] = ACTIONS(3710), - [anon_sym_BANG_EQ] = ACTIONS(3710), - [anon_sym_GT_EQ] = ACTIONS(3710), - [anon_sym_LT_EQ] = ACTIONS(3710), - [anon_sym_DOT] = ACTIONS(3699), - [anon_sym_scoped] = ACTIONS(3699), - [anon_sym_EQ_GT] = ACTIONS(3710), - [anon_sym_var] = ACTIONS(3699), - [anon_sym_yield] = ACTIONS(3699), - [anon_sym_switch] = ACTIONS(3699), - [anon_sym_when] = ACTIONS(3699), - [sym_discard] = ACTIONS(3699), - [anon_sym_DOT_DOT] = ACTIONS(3710), - [anon_sym_and] = ACTIONS(3699), - [anon_sym_or] = ACTIONS(3699), - [anon_sym_AMP_AMP] = ACTIONS(3710), - [anon_sym_PIPE_PIPE] = ACTIONS(3710), - [anon_sym_QMARK_QMARK] = ACTIONS(3710), - [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_ascending] = ACTIONS(3699), - [anon_sym_descending] = 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(3710), - [anon_sym_with] = ACTIONS(3699), - [aux_sym_preproc_if_token3] = ACTIONS(3710), - [aux_sym_preproc_else_token1] = ACTIONS(3710), - [aux_sym_preproc_elif_token1] = ACTIONS(3710), + [sym__identifier_token] = ACTIONS(3961), + [anon_sym_alias] = ACTIONS(3961), + [anon_sym_SEMI] = ACTIONS(3963), + [anon_sym_global] = ACTIONS(3961), + [anon_sym_LBRACK] = ACTIONS(4033), + [anon_sym_COLON] = ACTIONS(3963), + [anon_sym_COMMA] = ACTIONS(3963), + [anon_sym_RBRACK] = ACTIONS(3963), + [anon_sym_LPAREN] = ACTIONS(3963), + [anon_sym_RPAREN] = ACTIONS(3963), + [anon_sym_LBRACE] = ACTIONS(3963), + [anon_sym_RBRACE] = ACTIONS(3963), + [anon_sym_file] = ACTIONS(3961), + [anon_sym_LT] = ACTIONS(3961), + [anon_sym_GT] = ACTIONS(3961), + [anon_sym_in] = ACTIONS(3961), + [anon_sym_where] = ACTIONS(3961), + [anon_sym_QMARK] = ACTIONS(4036), + [anon_sym_notnull] = ACTIONS(3961), + [anon_sym_unmanaged] = ACTIONS(3961), + [anon_sym_BANG] = ACTIONS(3961), + [anon_sym_PLUS_PLUS] = ACTIONS(3963), + [anon_sym_DASH_DASH] = ACTIONS(3963), + [anon_sym_PLUS] = ACTIONS(3961), + [anon_sym_DASH] = ACTIONS(3961), + [anon_sym_STAR] = ACTIONS(3963), + [anon_sym_SLASH] = ACTIONS(3961), + [anon_sym_PERCENT] = ACTIONS(3963), + [anon_sym_CARET] = ACTIONS(3963), + [anon_sym_PIPE] = ACTIONS(3961), + [anon_sym_AMP] = ACTIONS(3961), + [anon_sym_LT_LT] = ACTIONS(3963), + [anon_sym_GT_GT] = ACTIONS(3961), + [anon_sym_GT_GT_GT] = ACTIONS(3963), + [anon_sym_EQ_EQ] = ACTIONS(3963), + [anon_sym_BANG_EQ] = ACTIONS(3963), + [anon_sym_GT_EQ] = ACTIONS(3963), + [anon_sym_LT_EQ] = ACTIONS(3963), + [anon_sym_DOT] = ACTIONS(3961), + [anon_sym_scoped] = ACTIONS(3961), + [anon_sym_EQ_GT] = ACTIONS(3963), + [anon_sym_var] = ACTIONS(3961), + [anon_sym_yield] = ACTIONS(3961), + [anon_sym_switch] = ACTIONS(3961), + [anon_sym_when] = ACTIONS(3961), + [sym_discard] = ACTIONS(3961), + [anon_sym_DOT_DOT] = ACTIONS(3963), + [anon_sym_and] = ACTIONS(3961), + [anon_sym_or] = ACTIONS(3961), + [anon_sym_AMP_AMP] = ACTIONS(3963), + [anon_sym_PIPE_PIPE] = ACTIONS(3963), + [anon_sym_QMARK_QMARK] = ACTIONS(3963), + [anon_sym_from] = ACTIONS(3961), + [anon_sym_into] = ACTIONS(3961), + [anon_sym_join] = ACTIONS(3961), + [anon_sym_on] = ACTIONS(3961), + [anon_sym_equals] = ACTIONS(3961), + [anon_sym_let] = ACTIONS(3961), + [anon_sym_orderby] = ACTIONS(3961), + [anon_sym_ascending] = ACTIONS(3961), + [anon_sym_descending] = ACTIONS(3961), + [anon_sym_group] = ACTIONS(3961), + [anon_sym_by] = ACTIONS(3961), + [anon_sym_select] = ACTIONS(3961), + [anon_sym_as] = ACTIONS(3961), + [anon_sym_is] = ACTIONS(3961), + [anon_sym_DASH_GT] = ACTIONS(3963), + [anon_sym_with] = ACTIONS(3961), + [aux_sym_preproc_if_token3] = ACTIONS(3963), + [aux_sym_preproc_else_token1] = ACTIONS(3963), + [aux_sym_preproc_elif_token1] = ACTIONS(3963), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -417008,77 +416686,77 @@ 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(4016), - [anon_sym_alias] = ACTIONS(4016), - [anon_sym_SEMI] = ACTIONS(4018), - [anon_sym_global] = ACTIONS(4016), - [anon_sym_LBRACK] = ACTIONS(4066), - [anon_sym_COLON] = ACTIONS(4018), - [anon_sym_COMMA] = ACTIONS(4018), - [anon_sym_RBRACK] = ACTIONS(4018), - [anon_sym_LPAREN] = ACTIONS(4018), - [anon_sym_RPAREN] = ACTIONS(4018), - [anon_sym_LBRACE] = ACTIONS(4018), - [anon_sym_RBRACE] = ACTIONS(4018), - [anon_sym_file] = ACTIONS(4016), - [anon_sym_LT] = ACTIONS(4016), - [anon_sym_GT] = ACTIONS(4016), - [anon_sym_in] = ACTIONS(4016), - [anon_sym_where] = ACTIONS(4016), - [anon_sym_QMARK] = ACTIONS(4069), - [anon_sym_notnull] = ACTIONS(4016), - [anon_sym_unmanaged] = ACTIONS(4016), - [anon_sym_BANG] = ACTIONS(4016), - [anon_sym_PLUS_PLUS] = ACTIONS(4018), - [anon_sym_DASH_DASH] = ACTIONS(4018), - [anon_sym_PLUS] = ACTIONS(4016), - [anon_sym_DASH] = ACTIONS(4016), - [anon_sym_STAR] = ACTIONS(4072), - [anon_sym_SLASH] = ACTIONS(4016), - [anon_sym_PERCENT] = ACTIONS(4018), - [anon_sym_CARET] = ACTIONS(4018), - [anon_sym_PIPE] = ACTIONS(4016), - [anon_sym_AMP] = ACTIONS(4016), - [anon_sym_LT_LT] = ACTIONS(4018), - [anon_sym_GT_GT] = ACTIONS(4016), - [anon_sym_GT_GT_GT] = ACTIONS(4018), - [anon_sym_EQ_EQ] = ACTIONS(4018), - [anon_sym_BANG_EQ] = ACTIONS(4018), - [anon_sym_GT_EQ] = ACTIONS(4018), - [anon_sym_LT_EQ] = ACTIONS(4018), - [anon_sym_DOT] = ACTIONS(4075), - [anon_sym_scoped] = ACTIONS(4016), - [anon_sym_EQ_GT] = ACTIONS(4018), - [anon_sym_var] = ACTIONS(4016), - [anon_sym_yield] = ACTIONS(4016), - [anon_sym_switch] = ACTIONS(4016), - [anon_sym_when] = ACTIONS(4016), - [sym_discard] = ACTIONS(4016), - [anon_sym_DOT_DOT] = ACTIONS(4018), - [anon_sym_and] = ACTIONS(4016), - [anon_sym_or] = ACTIONS(4016), - [anon_sym_AMP_AMP] = ACTIONS(4018), - [anon_sym_PIPE_PIPE] = ACTIONS(4018), - [anon_sym_QMARK_QMARK] = ACTIONS(4018), - [anon_sym_from] = ACTIONS(4016), - [anon_sym_into] = ACTIONS(4016), - [anon_sym_join] = ACTIONS(4016), - [anon_sym_on] = ACTIONS(4016), - [anon_sym_equals] = ACTIONS(4016), - [anon_sym_let] = ACTIONS(4016), - [anon_sym_orderby] = ACTIONS(4016), - [anon_sym_ascending] = ACTIONS(4016), - [anon_sym_descending] = ACTIONS(4016), - [anon_sym_group] = ACTIONS(4016), - [anon_sym_by] = ACTIONS(4016), - [anon_sym_select] = ACTIONS(4016), - [anon_sym_as] = ACTIONS(4016), - [anon_sym_is] = ACTIONS(4016), - [anon_sym_DASH_GT] = ACTIONS(4077), - [anon_sym_with] = ACTIONS(4016), - [aux_sym_preproc_if_token3] = ACTIONS(4018), - [aux_sym_preproc_else_token1] = ACTIONS(4018), - [aux_sym_preproc_elif_token1] = ACTIONS(4018), + [sym__identifier_token] = ACTIONS(4054), + [anon_sym_alias] = ACTIONS(4054), + [anon_sym_SEMI] = ACTIONS(4056), + [anon_sym_global] = ACTIONS(4054), + [anon_sym_LBRACK] = ACTIONS(4056), + [anon_sym_COLON] = ACTIONS(4056), + [anon_sym_COMMA] = ACTIONS(4056), + [anon_sym_RBRACK] = ACTIONS(4056), + [anon_sym_LPAREN] = ACTIONS(4056), + [anon_sym_RPAREN] = ACTIONS(4056), + [anon_sym_LBRACE] = ACTIONS(4056), + [anon_sym_RBRACE] = ACTIONS(4056), + [anon_sym_file] = ACTIONS(4054), + [anon_sym_LT] = ACTIONS(4054), + [anon_sym_GT] = ACTIONS(4054), + [anon_sym_in] = ACTIONS(4054), + [anon_sym_where] = ACTIONS(4054), + [anon_sym_QMARK] = ACTIONS(4054), + [anon_sym_notnull] = ACTIONS(4054), + [anon_sym_unmanaged] = ACTIONS(4054), + [anon_sym_BANG] = ACTIONS(4054), + [anon_sym_PLUS_PLUS] = ACTIONS(4056), + [anon_sym_DASH_DASH] = ACTIONS(4056), + [anon_sym_PLUS] = ACTIONS(4054), + [anon_sym_DASH] = ACTIONS(4054), + [anon_sym_STAR] = ACTIONS(4056), + [anon_sym_SLASH] = ACTIONS(4054), + [anon_sym_PERCENT] = ACTIONS(4056), + [anon_sym_CARET] = ACTIONS(4056), + [anon_sym_PIPE] = ACTIONS(4054), + [anon_sym_AMP] = ACTIONS(4054), + [anon_sym_LT_LT] = ACTIONS(4056), + [anon_sym_GT_GT] = ACTIONS(4054), + [anon_sym_GT_GT_GT] = ACTIONS(4056), + [anon_sym_EQ_EQ] = ACTIONS(4056), + [anon_sym_BANG_EQ] = ACTIONS(4056), + [anon_sym_GT_EQ] = ACTIONS(4056), + [anon_sym_LT_EQ] = ACTIONS(4056), + [anon_sym_DOT] = ACTIONS(4054), + [anon_sym_scoped] = ACTIONS(4054), + [anon_sym_EQ_GT] = ACTIONS(4056), + [anon_sym_var] = ACTIONS(4054), + [anon_sym_yield] = ACTIONS(4054), + [anon_sym_switch] = ACTIONS(4054), + [anon_sym_when] = ACTIONS(4054), + [sym_discard] = ACTIONS(4054), + [anon_sym_DOT_DOT] = ACTIONS(4056), + [anon_sym_and] = ACTIONS(4054), + [anon_sym_or] = ACTIONS(4054), + [anon_sym_AMP_AMP] = ACTIONS(4056), + [anon_sym_PIPE_PIPE] = ACTIONS(4056), + [anon_sym_QMARK_QMARK] = ACTIONS(4056), + [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_ascending] = ACTIONS(4054), + [anon_sym_descending] = 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(4056), + [anon_sym_with] = ACTIONS(4054), + [aux_sym_preproc_if_token3] = ACTIONS(4056), + [aux_sym_preproc_else_token1] = ACTIONS(4056), + [aux_sym_preproc_elif_token1] = ACTIONS(4056), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -417100,77 +416778,77 @@ 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), - [sym__identifier_token] = ACTIONS(3699), - [anon_sym_alias] = ACTIONS(3699), - [anon_sym_global] = ACTIONS(3699), - [anon_sym_EQ] = ACTIONS(3704), - [anon_sym_LBRACK] = ACTIONS(3721), - [anon_sym_LPAREN] = ACTIONS(3721), - [anon_sym_file] = ACTIONS(3699), - [anon_sym_LT] = ACTIONS(3704), - [anon_sym_GT] = ACTIONS(3704), - [anon_sym_where] = ACTIONS(3699), - [anon_sym_QMARK] = ACTIONS(3724), - [anon_sym_notnull] = ACTIONS(3699), - [anon_sym_unmanaged] = ACTIONS(3699), - [anon_sym_BANG] = ACTIONS(3704), - [anon_sym_PLUS_PLUS] = ACTIONS(3719), - [anon_sym_DASH_DASH] = ACTIONS(3719), - [anon_sym_PLUS] = ACTIONS(3704), - [anon_sym_DASH] = ACTIONS(3704), - [anon_sym_STAR] = ACTIONS(3724), - [anon_sym_SLASH] = ACTIONS(3704), - [anon_sym_PERCENT] = ACTIONS(3704), - [anon_sym_CARET] = ACTIONS(3704), - [anon_sym_PIPE] = ACTIONS(3704), - [anon_sym_AMP] = ACTIONS(3704), - [anon_sym_LT_LT] = ACTIONS(3704), - [anon_sym_GT_GT] = ACTIONS(3704), - [anon_sym_GT_GT_GT] = ACTIONS(3704), - [anon_sym_EQ_EQ] = ACTIONS(3719), - [anon_sym_BANG_EQ] = ACTIONS(3719), - [anon_sym_GT_EQ] = ACTIONS(3719), - [anon_sym_LT_EQ] = ACTIONS(3719), - [anon_sym_DOT] = ACTIONS(3724), - [anon_sym_scoped] = ACTIONS(3699), - [anon_sym_var] = ACTIONS(3699), - [anon_sym_yield] = ACTIONS(3699), - [anon_sym_switch] = ACTIONS(3704), - [anon_sym_when] = ACTIONS(3699), - [anon_sym_DOT_DOT] = ACTIONS(3719), - [anon_sym_and] = ACTIONS(3704), - [anon_sym_or] = ACTIONS(3704), - [anon_sym_PLUS_EQ] = ACTIONS(3719), - [anon_sym_DASH_EQ] = ACTIONS(3719), - [anon_sym_STAR_EQ] = ACTIONS(3719), - [anon_sym_SLASH_EQ] = ACTIONS(3719), - [anon_sym_PERCENT_EQ] = ACTIONS(3719), - [anon_sym_AMP_EQ] = ACTIONS(3719), - [anon_sym_CARET_EQ] = ACTIONS(3719), - [anon_sym_PIPE_EQ] = ACTIONS(3719), - [anon_sym_LT_LT_EQ] = ACTIONS(3719), - [anon_sym_GT_GT_EQ] = ACTIONS(3719), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3719), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3719), - [anon_sym_AMP_AMP] = ACTIONS(3719), - [anon_sym_PIPE_PIPE] = ACTIONS(3719), - [anon_sym_QMARK_QMARK] = ACTIONS(3704), - [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_ascending] = ACTIONS(3699), - [anon_sym_descending] = ACTIONS(3699), - [anon_sym_group] = ACTIONS(3699), - [anon_sym_by] = ACTIONS(3724), - [anon_sym_select] = ACTIONS(3699), - [anon_sym_as] = ACTIONS(3704), - [anon_sym_is] = ACTIONS(3704), - [anon_sym_DASH_GT] = ACTIONS(3721), - [anon_sym_with] = ACTIONS(3704), + [sym__identifier_token] = ACTIONS(3961), + [anon_sym_alias] = ACTIONS(3961), + [anon_sym_SEMI] = ACTIONS(3963), + [anon_sym_global] = ACTIONS(3961), + [anon_sym_LBRACK] = ACTIONS(4033), + [anon_sym_COLON] = ACTIONS(3963), + [anon_sym_COMMA] = ACTIONS(3963), + [anon_sym_RBRACK] = ACTIONS(3963), + [anon_sym_LPAREN] = ACTIONS(3963), + [anon_sym_RPAREN] = ACTIONS(3963), + [anon_sym_LBRACE] = ACTIONS(3963), + [anon_sym_RBRACE] = ACTIONS(3963), + [anon_sym_file] = ACTIONS(3961), + [anon_sym_LT] = ACTIONS(3961), + [anon_sym_GT] = ACTIONS(3961), + [anon_sym_in] = ACTIONS(3961), + [anon_sym_where] = ACTIONS(3961), + [anon_sym_QMARK] = ACTIONS(3961), + [anon_sym_notnull] = ACTIONS(3961), + [anon_sym_unmanaged] = ACTIONS(3961), + [anon_sym_BANG] = ACTIONS(3961), + [anon_sym_PLUS_PLUS] = ACTIONS(3963), + [anon_sym_DASH_DASH] = ACTIONS(3963), + [anon_sym_PLUS] = ACTIONS(3961), + [anon_sym_DASH] = ACTIONS(3961), + [anon_sym_STAR] = ACTIONS(4039), + [anon_sym_SLASH] = ACTIONS(3961), + [anon_sym_PERCENT] = ACTIONS(3963), + [anon_sym_CARET] = ACTIONS(3963), + [anon_sym_PIPE] = ACTIONS(3961), + [anon_sym_AMP] = ACTIONS(3961), + [anon_sym_LT_LT] = ACTIONS(3963), + [anon_sym_GT_GT] = ACTIONS(3961), + [anon_sym_GT_GT_GT] = ACTIONS(3963), + [anon_sym_EQ_EQ] = ACTIONS(3963), + [anon_sym_BANG_EQ] = ACTIONS(3963), + [anon_sym_GT_EQ] = ACTIONS(3963), + [anon_sym_LT_EQ] = ACTIONS(3963), + [anon_sym_DOT] = ACTIONS(3961), + [anon_sym_scoped] = ACTIONS(3961), + [anon_sym_EQ_GT] = ACTIONS(3963), + [anon_sym_var] = ACTIONS(3961), + [anon_sym_yield] = ACTIONS(3961), + [anon_sym_switch] = ACTIONS(3961), + [anon_sym_when] = ACTIONS(3961), + [sym_discard] = ACTIONS(3961), + [anon_sym_DOT_DOT] = ACTIONS(3963), + [anon_sym_and] = ACTIONS(3961), + [anon_sym_or] = ACTIONS(3961), + [anon_sym_AMP_AMP] = ACTIONS(3963), + [anon_sym_PIPE_PIPE] = ACTIONS(3963), + [anon_sym_QMARK_QMARK] = ACTIONS(3963), + [anon_sym_from] = ACTIONS(3961), + [anon_sym_into] = ACTIONS(3961), + [anon_sym_join] = ACTIONS(3961), + [anon_sym_on] = ACTIONS(3961), + [anon_sym_equals] = ACTIONS(3961), + [anon_sym_let] = ACTIONS(3961), + [anon_sym_orderby] = ACTIONS(3961), + [anon_sym_ascending] = ACTIONS(3961), + [anon_sym_descending] = ACTIONS(3961), + [anon_sym_group] = ACTIONS(3961), + [anon_sym_by] = ACTIONS(3961), + [anon_sym_select] = ACTIONS(3961), + [anon_sym_as] = ACTIONS(3961), + [anon_sym_is] = ACTIONS(3961), + [anon_sym_DASH_GT] = ACTIONS(3963), + [anon_sym_with] = ACTIONS(3961), + [aux_sym_preproc_if_token3] = ACTIONS(3963), + [aux_sym_preproc_else_token1] = ACTIONS(3963), + [aux_sym_preproc_elif_token1] = ACTIONS(3963), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -417192,77 +416870,77 @@ 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(3699), - [anon_sym_alias] = ACTIONS(3699), - [anon_sym_global] = ACTIONS(3699), - [anon_sym_EQ] = ACTIONS(3704), - [anon_sym_LBRACK] = ACTIONS(3721), - [anon_sym_LPAREN] = ACTIONS(3721), - [anon_sym_file] = ACTIONS(3699), - [anon_sym_LT] = ACTIONS(3704), - [anon_sym_GT] = ACTIONS(3704), - [anon_sym_where] = ACTIONS(3699), - [anon_sym_QMARK] = ACTIONS(3724), - [anon_sym_notnull] = ACTIONS(3699), - [anon_sym_unmanaged] = ACTIONS(3699), - [anon_sym_BANG] = ACTIONS(3704), - [anon_sym_PLUS_PLUS] = ACTIONS(3719), - [anon_sym_DASH_DASH] = ACTIONS(3719), - [anon_sym_PLUS] = ACTIONS(3704), - [anon_sym_DASH] = ACTIONS(3704), - [anon_sym_STAR] = ACTIONS(3724), - [anon_sym_SLASH] = ACTIONS(3704), - [anon_sym_PERCENT] = ACTIONS(3704), - [anon_sym_CARET] = ACTIONS(3704), - [anon_sym_PIPE] = ACTIONS(3704), - [anon_sym_AMP] = ACTIONS(3704), - [anon_sym_LT_LT] = ACTIONS(3704), - [anon_sym_GT_GT] = ACTIONS(3704), - [anon_sym_GT_GT_GT] = ACTIONS(3704), - [anon_sym_EQ_EQ] = ACTIONS(3719), - [anon_sym_BANG_EQ] = ACTIONS(3719), - [anon_sym_GT_EQ] = ACTIONS(3719), - [anon_sym_LT_EQ] = ACTIONS(3719), - [anon_sym_DOT] = ACTIONS(3724), - [anon_sym_scoped] = ACTIONS(3699), - [anon_sym_var] = ACTIONS(3699), - [anon_sym_yield] = ACTIONS(3699), - [anon_sym_switch] = ACTIONS(3704), - [anon_sym_when] = ACTIONS(3699), - [anon_sym_DOT_DOT] = ACTIONS(3719), - [anon_sym_and] = ACTIONS(3704), - [anon_sym_or] = ACTIONS(3704), - [anon_sym_PLUS_EQ] = ACTIONS(3719), - [anon_sym_DASH_EQ] = ACTIONS(3719), - [anon_sym_STAR_EQ] = ACTIONS(3719), - [anon_sym_SLASH_EQ] = ACTIONS(3719), - [anon_sym_PERCENT_EQ] = ACTIONS(3719), - [anon_sym_AMP_EQ] = ACTIONS(3719), - [anon_sym_CARET_EQ] = ACTIONS(3719), - [anon_sym_PIPE_EQ] = ACTIONS(3719), - [anon_sym_LT_LT_EQ] = ACTIONS(3719), - [anon_sym_GT_GT_EQ] = ACTIONS(3719), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3719), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3719), - [anon_sym_AMP_AMP] = ACTIONS(3719), - [anon_sym_PIPE_PIPE] = ACTIONS(3719), - [anon_sym_QMARK_QMARK] = ACTIONS(3704), - [anon_sym_from] = ACTIONS(3699), - [anon_sym_into] = ACTIONS(3699), - [anon_sym_join] = ACTIONS(3699), - [anon_sym_on] = ACTIONS(3724), - [anon_sym_equals] = ACTIONS(3699), - [anon_sym_let] = ACTIONS(3699), - [anon_sym_orderby] = ACTIONS(3699), - [anon_sym_ascending] = ACTIONS(3699), - [anon_sym_descending] = ACTIONS(3699), - [anon_sym_group] = ACTIONS(3699), - [anon_sym_by] = ACTIONS(3699), - [anon_sym_select] = ACTIONS(3699), - [anon_sym_as] = ACTIONS(3704), - [anon_sym_is] = ACTIONS(3704), - [anon_sym_DASH_GT] = ACTIONS(3721), - [anon_sym_with] = ACTIONS(3704), + [sym__identifier_token] = ACTIONS(3691), + [anon_sym_alias] = ACTIONS(3691), + [anon_sym_global] = ACTIONS(3691), + [anon_sym_EQ] = ACTIONS(3696), + [anon_sym_LBRACK] = ACTIONS(3713), + [anon_sym_LPAREN] = ACTIONS(3713), + [anon_sym_file] = ACTIONS(3691), + [anon_sym_LT] = ACTIONS(3696), + [anon_sym_GT] = ACTIONS(3696), + [anon_sym_where] = ACTIONS(3691), + [anon_sym_QMARK] = ACTIONS(3716), + [anon_sym_notnull] = ACTIONS(3691), + [anon_sym_unmanaged] = ACTIONS(3691), + [anon_sym_BANG] = ACTIONS(3696), + [anon_sym_PLUS_PLUS] = ACTIONS(3711), + [anon_sym_DASH_DASH] = ACTIONS(3711), + [anon_sym_PLUS] = ACTIONS(3696), + [anon_sym_DASH] = ACTIONS(3696), + [anon_sym_STAR] = ACTIONS(3716), + [anon_sym_SLASH] = ACTIONS(3696), + [anon_sym_PERCENT] = ACTIONS(3696), + [anon_sym_CARET] = ACTIONS(3696), + [anon_sym_PIPE] = ACTIONS(3696), + [anon_sym_AMP] = ACTIONS(3696), + [anon_sym_LT_LT] = ACTIONS(3696), + [anon_sym_GT_GT] = ACTIONS(3696), + [anon_sym_GT_GT_GT] = ACTIONS(3696), + [anon_sym_EQ_EQ] = ACTIONS(3711), + [anon_sym_BANG_EQ] = ACTIONS(3711), + [anon_sym_GT_EQ] = ACTIONS(3711), + [anon_sym_LT_EQ] = ACTIONS(3711), + [anon_sym_DOT] = ACTIONS(3716), + [anon_sym_scoped] = ACTIONS(3691), + [anon_sym_var] = ACTIONS(3691), + [anon_sym_yield] = ACTIONS(3691), + [anon_sym_switch] = ACTIONS(3696), + [anon_sym_when] = ACTIONS(3691), + [anon_sym_DOT_DOT] = ACTIONS(3711), + [anon_sym_and] = ACTIONS(3696), + [anon_sym_or] = ACTIONS(3696), + [anon_sym_PLUS_EQ] = ACTIONS(3711), + [anon_sym_DASH_EQ] = ACTIONS(3711), + [anon_sym_STAR_EQ] = ACTIONS(3711), + [anon_sym_SLASH_EQ] = ACTIONS(3711), + [anon_sym_PERCENT_EQ] = ACTIONS(3711), + [anon_sym_AMP_EQ] = ACTIONS(3711), + [anon_sym_CARET_EQ] = ACTIONS(3711), + [anon_sym_PIPE_EQ] = ACTIONS(3711), + [anon_sym_LT_LT_EQ] = ACTIONS(3711), + [anon_sym_GT_GT_EQ] = ACTIONS(3711), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3711), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3711), + [anon_sym_AMP_AMP] = ACTIONS(3711), + [anon_sym_PIPE_PIPE] = ACTIONS(3711), + [anon_sym_QMARK_QMARK] = ACTIONS(3696), + [anon_sym_from] = ACTIONS(3691), + [anon_sym_into] = ACTIONS(3691), + [anon_sym_join] = ACTIONS(3691), + [anon_sym_on] = ACTIONS(3691), + [anon_sym_equals] = ACTIONS(3716), + [anon_sym_let] = ACTIONS(3691), + [anon_sym_orderby] = ACTIONS(3691), + [anon_sym_ascending] = ACTIONS(3691), + [anon_sym_descending] = ACTIONS(3691), + [anon_sym_group] = ACTIONS(3691), + [anon_sym_by] = ACTIONS(3691), + [anon_sym_select] = ACTIONS(3691), + [anon_sym_as] = ACTIONS(3696), + [anon_sym_is] = ACTIONS(3696), + [anon_sym_DASH_GT] = ACTIONS(3713), + [anon_sym_with] = ACTIONS(3696), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -417275,7 +416953,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2377] = { - [sym_type_argument_list] = STATE(2444), [sym_preproc_region] = STATE(2377), [sym_preproc_endregion] = STATE(2377), [sym_preproc_line] = STATE(2377), @@ -417285,76 +416962,77 @@ 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), - [anon_sym_SEMI] = ACTIONS(3662), - [anon_sym_EQ] = ACTIONS(3660), - [anon_sym_LBRACK] = ACTIONS(3662), - [anon_sym_COLON] = ACTIONS(3662), - [anon_sym_COMMA] = ACTIONS(3662), - [anon_sym_RBRACK] = ACTIONS(3662), - [anon_sym_LPAREN] = ACTIONS(3662), - [anon_sym_RPAREN] = ACTIONS(3662), - [anon_sym_RBRACE] = ACTIONS(3662), - [anon_sym_LT] = ACTIONS(4079), - [anon_sym_GT] = ACTIONS(3660), - [anon_sym_in] = ACTIONS(3660), - [anon_sym_where] = ACTIONS(3662), - [anon_sym_QMARK] = ACTIONS(3660), - [anon_sym_BANG] = ACTIONS(3660), - [anon_sym_PLUS_PLUS] = ACTIONS(3662), - [anon_sym_DASH_DASH] = ACTIONS(3662), - [anon_sym_PLUS] = ACTIONS(3660), - [anon_sym_DASH] = ACTIONS(3660), - [anon_sym_STAR] = ACTIONS(3660), - [anon_sym_SLASH] = ACTIONS(3660), - [anon_sym_PERCENT] = ACTIONS(3660), - [anon_sym_CARET] = ACTIONS(3660), - [anon_sym_PIPE] = ACTIONS(3660), - [anon_sym_AMP] = ACTIONS(3660), - [anon_sym_LT_LT] = ACTIONS(3660), - [anon_sym_GT_GT] = ACTIONS(3660), - [anon_sym_GT_GT_GT] = ACTIONS(3660), - [anon_sym_EQ_EQ] = ACTIONS(3662), - [anon_sym_BANG_EQ] = ACTIONS(3662), - [anon_sym_GT_EQ] = ACTIONS(3662), - [anon_sym_LT_EQ] = ACTIONS(3662), - [anon_sym_DOT] = ACTIONS(3660), - [anon_sym_EQ_GT] = ACTIONS(3662), - [anon_sym_switch] = ACTIONS(3662), - [anon_sym_DOT_DOT] = ACTIONS(3662), - [anon_sym_and] = ACTIONS(3662), - [anon_sym_or] = ACTIONS(3660), - [anon_sym_PLUS_EQ] = ACTIONS(3662), - [anon_sym_DASH_EQ] = ACTIONS(3662), - [anon_sym_STAR_EQ] = ACTIONS(3662), - [anon_sym_SLASH_EQ] = ACTIONS(3662), - [anon_sym_PERCENT_EQ] = ACTIONS(3662), - [anon_sym_AMP_EQ] = ACTIONS(3662), - [anon_sym_CARET_EQ] = ACTIONS(3662), - [anon_sym_PIPE_EQ] = ACTIONS(3662), - [anon_sym_LT_LT_EQ] = ACTIONS(3662), - [anon_sym_GT_GT_EQ] = ACTIONS(3662), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3662), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3662), - [anon_sym_AMP_AMP] = ACTIONS(3662), - [anon_sym_PIPE_PIPE] = ACTIONS(3662), - [anon_sym_QMARK_QMARK] = ACTIONS(3660), - [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_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(3662), - [anon_sym_with] = ACTIONS(3662), - [aux_sym_preproc_if_token3] = ACTIONS(3662), - [aux_sym_preproc_else_token1] = ACTIONS(3662), - [aux_sym_preproc_elif_token1] = ACTIONS(3662), + [sym__identifier_token] = ACTIONS(3961), + [anon_sym_alias] = ACTIONS(3961), + [anon_sym_SEMI] = ACTIONS(3963), + [anon_sym_global] = ACTIONS(3961), + [anon_sym_LBRACK] = ACTIONS(4033), + [anon_sym_COLON] = ACTIONS(3963), + [anon_sym_COMMA] = ACTIONS(3963), + [anon_sym_RBRACK] = ACTIONS(3963), + [anon_sym_LPAREN] = ACTIONS(3963), + [anon_sym_RPAREN] = ACTIONS(3963), + [anon_sym_LBRACE] = ACTIONS(3963), + [anon_sym_RBRACE] = ACTIONS(3963), + [anon_sym_file] = ACTIONS(3961), + [anon_sym_LT] = ACTIONS(3961), + [anon_sym_GT] = ACTIONS(3961), + [anon_sym_in] = ACTIONS(3961), + [anon_sym_where] = ACTIONS(3961), + [anon_sym_QMARK] = ACTIONS(4036), + [anon_sym_notnull] = ACTIONS(3961), + [anon_sym_unmanaged] = ACTIONS(3961), + [anon_sym_BANG] = ACTIONS(3961), + [anon_sym_PLUS_PLUS] = ACTIONS(3963), + [anon_sym_DASH_DASH] = ACTIONS(3963), + [anon_sym_PLUS] = ACTIONS(3961), + [anon_sym_DASH] = ACTIONS(3961), + [anon_sym_STAR] = ACTIONS(4039), + [anon_sym_SLASH] = ACTIONS(3961), + [anon_sym_PERCENT] = ACTIONS(3963), + [anon_sym_CARET] = ACTIONS(3963), + [anon_sym_PIPE] = ACTIONS(3961), + [anon_sym_AMP] = ACTIONS(3961), + [anon_sym_LT_LT] = ACTIONS(3963), + [anon_sym_GT_GT] = ACTIONS(3961), + [anon_sym_GT_GT_GT] = ACTIONS(3963), + [anon_sym_EQ_EQ] = ACTIONS(3963), + [anon_sym_BANG_EQ] = ACTIONS(3963), + [anon_sym_GT_EQ] = ACTIONS(3963), + [anon_sym_LT_EQ] = ACTIONS(3963), + [anon_sym_DOT] = ACTIONS(3961), + [anon_sym_scoped] = ACTIONS(3961), + [anon_sym_EQ_GT] = ACTIONS(3963), + [anon_sym_var] = ACTIONS(3961), + [anon_sym_yield] = ACTIONS(3961), + [anon_sym_switch] = ACTIONS(3961), + [anon_sym_when] = ACTIONS(3961), + [sym_discard] = ACTIONS(3961), + [anon_sym_DOT_DOT] = ACTIONS(3963), + [anon_sym_and] = ACTIONS(3961), + [anon_sym_or] = ACTIONS(3961), + [anon_sym_AMP_AMP] = ACTIONS(3963), + [anon_sym_PIPE_PIPE] = ACTIONS(3963), + [anon_sym_QMARK_QMARK] = ACTIONS(3963), + [anon_sym_from] = ACTIONS(3961), + [anon_sym_into] = ACTIONS(3961), + [anon_sym_join] = ACTIONS(3961), + [anon_sym_on] = ACTIONS(3961), + [anon_sym_equals] = ACTIONS(3961), + [anon_sym_let] = ACTIONS(3961), + [anon_sym_orderby] = ACTIONS(3961), + [anon_sym_ascending] = ACTIONS(3961), + [anon_sym_descending] = ACTIONS(3961), + [anon_sym_group] = ACTIONS(3961), + [anon_sym_by] = ACTIONS(3961), + [anon_sym_select] = ACTIONS(3961), + [anon_sym_as] = ACTIONS(3961), + [anon_sym_is] = ACTIONS(3961), + [anon_sym_DASH_GT] = ACTIONS(3963), + [anon_sym_with] = ACTIONS(3961), + [aux_sym_preproc_if_token3] = ACTIONS(3963), + [aux_sym_preproc_else_token1] = ACTIONS(3963), + [aux_sym_preproc_elif_token1] = ACTIONS(3963), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -417376,77 +417054,77 @@ 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(4016), - [anon_sym_alias] = ACTIONS(4016), - [anon_sym_SEMI] = ACTIONS(4018), - [anon_sym_global] = ACTIONS(4016), - [anon_sym_LBRACK] = ACTIONS(4066), - [anon_sym_COLON] = ACTIONS(4018), - [anon_sym_COMMA] = ACTIONS(4018), - [anon_sym_RBRACK] = ACTIONS(4018), - [anon_sym_LPAREN] = ACTIONS(4018), - [anon_sym_RPAREN] = ACTIONS(4018), - [anon_sym_LBRACE] = ACTIONS(4018), - [anon_sym_RBRACE] = ACTIONS(4018), - [anon_sym_file] = ACTIONS(4016), - [anon_sym_LT] = ACTIONS(4016), - [anon_sym_GT] = ACTIONS(4016), - [anon_sym_in] = ACTIONS(4016), - [anon_sym_where] = ACTIONS(4016), - [anon_sym_QMARK] = ACTIONS(4069), - [anon_sym_notnull] = ACTIONS(4016), - [anon_sym_unmanaged] = ACTIONS(4016), - [anon_sym_BANG] = ACTIONS(4016), - [anon_sym_PLUS_PLUS] = ACTIONS(4018), - [anon_sym_DASH_DASH] = ACTIONS(4018), - [anon_sym_PLUS] = ACTIONS(4016), - [anon_sym_DASH] = ACTIONS(4016), - [anon_sym_STAR] = ACTIONS(4018), - [anon_sym_SLASH] = ACTIONS(4016), - [anon_sym_PERCENT] = ACTIONS(4018), - [anon_sym_CARET] = ACTIONS(4018), - [anon_sym_PIPE] = ACTIONS(4016), - [anon_sym_AMP] = ACTIONS(4016), - [anon_sym_LT_LT] = ACTIONS(4018), - [anon_sym_GT_GT] = ACTIONS(4016), - [anon_sym_GT_GT_GT] = ACTIONS(4018), - [anon_sym_EQ_EQ] = ACTIONS(4018), - [anon_sym_BANG_EQ] = ACTIONS(4018), - [anon_sym_GT_EQ] = ACTIONS(4018), - [anon_sym_LT_EQ] = ACTIONS(4018), - [anon_sym_DOT] = ACTIONS(4016), - [anon_sym_scoped] = ACTIONS(4016), - [anon_sym_EQ_GT] = ACTIONS(4018), - [anon_sym_var] = ACTIONS(4016), - [anon_sym_yield] = ACTIONS(4016), - [anon_sym_switch] = ACTIONS(4016), - [anon_sym_when] = ACTIONS(4016), - [sym_discard] = ACTIONS(4016), - [anon_sym_DOT_DOT] = ACTIONS(4018), - [anon_sym_and] = ACTIONS(4016), - [anon_sym_or] = ACTIONS(4016), - [anon_sym_AMP_AMP] = ACTIONS(4018), - [anon_sym_PIPE_PIPE] = ACTIONS(4018), - [anon_sym_QMARK_QMARK] = ACTIONS(4018), - [anon_sym_from] = ACTIONS(4016), - [anon_sym_into] = ACTIONS(4016), - [anon_sym_join] = ACTIONS(4016), - [anon_sym_on] = ACTIONS(4016), - [anon_sym_equals] = ACTIONS(4016), - [anon_sym_let] = ACTIONS(4016), - [anon_sym_orderby] = ACTIONS(4016), - [anon_sym_ascending] = ACTIONS(4016), - [anon_sym_descending] = ACTIONS(4016), - [anon_sym_group] = ACTIONS(4016), - [anon_sym_by] = ACTIONS(4016), - [anon_sym_select] = ACTIONS(4016), - [anon_sym_as] = ACTIONS(4016), - [anon_sym_is] = ACTIONS(4016), - [anon_sym_DASH_GT] = ACTIONS(4018), - [anon_sym_with] = ACTIONS(4016), - [aux_sym_preproc_if_token3] = ACTIONS(4018), - [aux_sym_preproc_else_token1] = ACTIONS(4018), - [aux_sym_preproc_elif_token1] = ACTIONS(4018), + [sym__identifier_token] = ACTIONS(3669), + [anon_sym_alias] = ACTIONS(3669), + [anon_sym_global] = ACTIONS(3669), + [anon_sym_EQ] = ACTIONS(3673), + [anon_sym_LBRACK] = ACTIONS(3675), + [anon_sym_LPAREN] = ACTIONS(3675), + [anon_sym_file] = ACTIONS(3669), + [anon_sym_LT] = ACTIONS(3673), + [anon_sym_GT] = ACTIONS(3673), + [anon_sym_where] = ACTIONS(3669), + [anon_sym_QMARK] = ACTIONS(3680), + [anon_sym_notnull] = ACTIONS(3669), + [anon_sym_unmanaged] = ACTIONS(3669), + [anon_sym_BANG] = ACTIONS(3673), + [anon_sym_PLUS_PLUS] = ACTIONS(3671), + [anon_sym_DASH_DASH] = ACTIONS(3671), + [anon_sym_PLUS] = ACTIONS(3673), + [anon_sym_DASH] = ACTIONS(3673), + [anon_sym_STAR] = ACTIONS(3680), + [anon_sym_SLASH] = ACTIONS(3673), + [anon_sym_PERCENT] = ACTIONS(3673), + [anon_sym_CARET] = ACTIONS(3673), + [anon_sym_PIPE] = ACTIONS(3673), + [anon_sym_AMP] = ACTIONS(3673), + [anon_sym_LT_LT] = ACTIONS(3673), + [anon_sym_GT_GT] = ACTIONS(3673), + [anon_sym_GT_GT_GT] = ACTIONS(3673), + [anon_sym_EQ_EQ] = ACTIONS(3671), + [anon_sym_BANG_EQ] = ACTIONS(3671), + [anon_sym_GT_EQ] = ACTIONS(3671), + [anon_sym_LT_EQ] = ACTIONS(3671), + [anon_sym_DOT] = ACTIONS(3680), + [anon_sym_scoped] = ACTIONS(3669), + [anon_sym_var] = ACTIONS(3669), + [anon_sym_yield] = ACTIONS(3669), + [anon_sym_switch] = ACTIONS(3673), + [anon_sym_when] = ACTIONS(3669), + [anon_sym_DOT_DOT] = ACTIONS(3671), + [anon_sym_and] = ACTIONS(3673), + [anon_sym_or] = ACTIONS(3673), + [anon_sym_PLUS_EQ] = ACTIONS(3671), + [anon_sym_DASH_EQ] = ACTIONS(3671), + [anon_sym_STAR_EQ] = ACTIONS(3671), + [anon_sym_SLASH_EQ] = ACTIONS(3671), + [anon_sym_PERCENT_EQ] = ACTIONS(3671), + [anon_sym_AMP_EQ] = ACTIONS(3671), + [anon_sym_CARET_EQ] = ACTIONS(3671), + [anon_sym_PIPE_EQ] = ACTIONS(3671), + [anon_sym_LT_LT_EQ] = ACTIONS(3671), + [anon_sym_GT_GT_EQ] = ACTIONS(3671), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3671), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3671), + [anon_sym_AMP_AMP] = ACTIONS(3671), + [anon_sym_PIPE_PIPE] = ACTIONS(3671), + [anon_sym_QMARK_QMARK] = ACTIONS(3673), + [anon_sym_from] = ACTIONS(3669), + [anon_sym_into] = ACTIONS(3669), + [anon_sym_join] = ACTIONS(3669), + [anon_sym_on] = ACTIONS(3680), + [anon_sym_equals] = ACTIONS(3669), + [anon_sym_let] = ACTIONS(3669), + [anon_sym_orderby] = ACTIONS(3669), + [anon_sym_ascending] = ACTIONS(3669), + [anon_sym_descending] = ACTIONS(3669), + [anon_sym_group] = ACTIONS(3669), + [anon_sym_by] = ACTIONS(3669), + [anon_sym_select] = ACTIONS(3669), + [anon_sym_as] = ACTIONS(3673), + [anon_sym_is] = ACTIONS(3673), + [anon_sym_DASH_GT] = ACTIONS(3675), + [anon_sym_with] = ACTIONS(3673), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -417468,77 +417146,77 @@ 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(4016), - [anon_sym_alias] = ACTIONS(4016), - [anon_sym_SEMI] = ACTIONS(4018), - [anon_sym_global] = ACTIONS(4016), - [anon_sym_LBRACK] = ACTIONS(4066), - [anon_sym_COLON] = ACTIONS(4018), - [anon_sym_COMMA] = ACTIONS(4018), - [anon_sym_RBRACK] = ACTIONS(4018), - [anon_sym_LPAREN] = ACTIONS(4018), - [anon_sym_RPAREN] = ACTIONS(4018), - [anon_sym_LBRACE] = ACTIONS(4018), - [anon_sym_RBRACE] = ACTIONS(4018), - [anon_sym_file] = ACTIONS(4016), - [anon_sym_LT] = ACTIONS(4016), - [anon_sym_GT] = ACTIONS(4016), - [anon_sym_in] = ACTIONS(4016), - [anon_sym_where] = ACTIONS(4016), - [anon_sym_QMARK] = ACTIONS(4016), - [anon_sym_notnull] = ACTIONS(4016), - [anon_sym_unmanaged] = ACTIONS(4016), - [anon_sym_BANG] = ACTIONS(4016), - [anon_sym_PLUS_PLUS] = ACTIONS(4018), - [anon_sym_DASH_DASH] = ACTIONS(4018), - [anon_sym_PLUS] = ACTIONS(4016), - [anon_sym_DASH] = ACTIONS(4016), - [anon_sym_STAR] = ACTIONS(4072), - [anon_sym_SLASH] = ACTIONS(4016), - [anon_sym_PERCENT] = ACTIONS(4018), - [anon_sym_CARET] = ACTIONS(4018), - [anon_sym_PIPE] = ACTIONS(4016), - [anon_sym_AMP] = ACTIONS(4016), - [anon_sym_LT_LT] = ACTIONS(4018), - [anon_sym_GT_GT] = ACTIONS(4016), - [anon_sym_GT_GT_GT] = ACTIONS(4018), - [anon_sym_EQ_EQ] = ACTIONS(4018), - [anon_sym_BANG_EQ] = ACTIONS(4018), - [anon_sym_GT_EQ] = ACTIONS(4018), - [anon_sym_LT_EQ] = ACTIONS(4018), - [anon_sym_DOT] = ACTIONS(4016), - [anon_sym_scoped] = ACTIONS(4016), - [anon_sym_EQ_GT] = ACTIONS(4018), - [anon_sym_var] = ACTIONS(4016), - [anon_sym_yield] = ACTIONS(4016), - [anon_sym_switch] = ACTIONS(4016), - [anon_sym_when] = ACTIONS(4016), - [sym_discard] = ACTIONS(4016), - [anon_sym_DOT_DOT] = ACTIONS(4018), - [anon_sym_and] = ACTIONS(4016), - [anon_sym_or] = ACTIONS(4016), - [anon_sym_AMP_AMP] = ACTIONS(4018), - [anon_sym_PIPE_PIPE] = ACTIONS(4018), - [anon_sym_QMARK_QMARK] = ACTIONS(4018), - [anon_sym_from] = ACTIONS(4016), - [anon_sym_into] = ACTIONS(4016), - [anon_sym_join] = ACTIONS(4016), - [anon_sym_on] = ACTIONS(4016), - [anon_sym_equals] = ACTIONS(4016), - [anon_sym_let] = ACTIONS(4016), - [anon_sym_orderby] = ACTIONS(4016), - [anon_sym_ascending] = ACTIONS(4016), - [anon_sym_descending] = ACTIONS(4016), - [anon_sym_group] = ACTIONS(4016), - [anon_sym_by] = ACTIONS(4016), - [anon_sym_select] = ACTIONS(4016), - [anon_sym_as] = ACTIONS(4016), - [anon_sym_is] = ACTIONS(4016), - [anon_sym_DASH_GT] = ACTIONS(4018), - [anon_sym_with] = ACTIONS(4016), - [aux_sym_preproc_if_token3] = ACTIONS(4018), - [aux_sym_preproc_else_token1] = ACTIONS(4018), - [aux_sym_preproc_elif_token1] = ACTIONS(4018), + [sym__identifier_token] = ACTIONS(3691), + [anon_sym_alias] = ACTIONS(3691), + [anon_sym_global] = ACTIONS(3691), + [anon_sym_EQ] = ACTIONS(3696), + [anon_sym_LBRACK] = ACTIONS(3713), + [anon_sym_LPAREN] = ACTIONS(3713), + [anon_sym_file] = ACTIONS(3691), + [anon_sym_LT] = ACTIONS(3696), + [anon_sym_GT] = ACTIONS(3696), + [anon_sym_where] = ACTIONS(3691), + [anon_sym_QMARK] = ACTIONS(3716), + [anon_sym_notnull] = ACTIONS(3691), + [anon_sym_unmanaged] = ACTIONS(3691), + [anon_sym_BANG] = ACTIONS(3696), + [anon_sym_PLUS_PLUS] = ACTIONS(3711), + [anon_sym_DASH_DASH] = ACTIONS(3711), + [anon_sym_PLUS] = ACTIONS(3696), + [anon_sym_DASH] = ACTIONS(3696), + [anon_sym_STAR] = ACTIONS(3716), + [anon_sym_SLASH] = ACTIONS(3696), + [anon_sym_PERCENT] = ACTIONS(3696), + [anon_sym_CARET] = ACTIONS(3696), + [anon_sym_PIPE] = ACTIONS(3696), + [anon_sym_AMP] = ACTIONS(3696), + [anon_sym_LT_LT] = ACTIONS(3696), + [anon_sym_GT_GT] = ACTIONS(3696), + [anon_sym_GT_GT_GT] = ACTIONS(3696), + [anon_sym_EQ_EQ] = ACTIONS(3711), + [anon_sym_BANG_EQ] = ACTIONS(3711), + [anon_sym_GT_EQ] = ACTIONS(3711), + [anon_sym_LT_EQ] = ACTIONS(3711), + [anon_sym_DOT] = ACTIONS(3716), + [anon_sym_scoped] = ACTIONS(3691), + [anon_sym_var] = ACTIONS(3691), + [anon_sym_yield] = ACTIONS(3691), + [anon_sym_switch] = ACTIONS(3696), + [anon_sym_when] = ACTIONS(3691), + [anon_sym_DOT_DOT] = ACTIONS(3711), + [anon_sym_and] = ACTIONS(3696), + [anon_sym_or] = ACTIONS(3696), + [anon_sym_PLUS_EQ] = ACTIONS(3711), + [anon_sym_DASH_EQ] = ACTIONS(3711), + [anon_sym_STAR_EQ] = ACTIONS(3711), + [anon_sym_SLASH_EQ] = ACTIONS(3711), + [anon_sym_PERCENT_EQ] = ACTIONS(3711), + [anon_sym_AMP_EQ] = ACTIONS(3711), + [anon_sym_CARET_EQ] = ACTIONS(3711), + [anon_sym_PIPE_EQ] = ACTIONS(3711), + [anon_sym_LT_LT_EQ] = ACTIONS(3711), + [anon_sym_GT_GT_EQ] = ACTIONS(3711), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3711), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3711), + [anon_sym_AMP_AMP] = ACTIONS(3711), + [anon_sym_PIPE_PIPE] = ACTIONS(3711), + [anon_sym_QMARK_QMARK] = ACTIONS(3696), + [anon_sym_from] = ACTIONS(3691), + [anon_sym_into] = ACTIONS(3716), + [anon_sym_join] = ACTIONS(3691), + [anon_sym_on] = ACTIONS(3691), + [anon_sym_equals] = ACTIONS(3716), + [anon_sym_let] = ACTIONS(3691), + [anon_sym_orderby] = ACTIONS(3691), + [anon_sym_ascending] = ACTIONS(3691), + [anon_sym_descending] = ACTIONS(3691), + [anon_sym_group] = ACTIONS(3691), + [anon_sym_by] = ACTIONS(3691), + [anon_sym_select] = ACTIONS(3691), + [anon_sym_as] = ACTIONS(3696), + [anon_sym_is] = ACTIONS(3696), + [anon_sym_DASH_GT] = ACTIONS(3713), + [anon_sym_with] = ACTIONS(3696), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -417560,77 +417238,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(4016), - [anon_sym_alias] = ACTIONS(4016), - [anon_sym_SEMI] = ACTIONS(4018), - [anon_sym_global] = ACTIONS(4016), - [anon_sym_LBRACK] = ACTIONS(4066), - [anon_sym_COLON] = ACTIONS(4018), - [anon_sym_COMMA] = ACTIONS(4018), - [anon_sym_RBRACK] = ACTIONS(4018), - [anon_sym_LPAREN] = ACTIONS(4018), - [anon_sym_RPAREN] = ACTIONS(4018), - [anon_sym_LBRACE] = ACTIONS(4018), - [anon_sym_RBRACE] = ACTIONS(4018), - [anon_sym_file] = ACTIONS(4016), - [anon_sym_LT] = ACTIONS(4016), - [anon_sym_GT] = ACTIONS(4016), - [anon_sym_in] = ACTIONS(4016), - [anon_sym_where] = ACTIONS(4016), - [anon_sym_QMARK] = ACTIONS(4069), - [anon_sym_notnull] = ACTIONS(4016), - [anon_sym_unmanaged] = ACTIONS(4016), - [anon_sym_BANG] = ACTIONS(4016), - [anon_sym_PLUS_PLUS] = ACTIONS(4018), - [anon_sym_DASH_DASH] = ACTIONS(4018), - [anon_sym_PLUS] = ACTIONS(4016), - [anon_sym_DASH] = ACTIONS(4016), - [anon_sym_STAR] = ACTIONS(4072), - [anon_sym_SLASH] = ACTIONS(4016), - [anon_sym_PERCENT] = ACTIONS(4018), - [anon_sym_CARET] = ACTIONS(4018), - [anon_sym_PIPE] = ACTIONS(4016), - [anon_sym_AMP] = ACTIONS(4016), - [anon_sym_LT_LT] = ACTIONS(4018), - [anon_sym_GT_GT] = ACTIONS(4016), - [anon_sym_GT_GT_GT] = ACTIONS(4018), - [anon_sym_EQ_EQ] = ACTIONS(4018), - [anon_sym_BANG_EQ] = ACTIONS(4018), - [anon_sym_GT_EQ] = ACTIONS(4018), - [anon_sym_LT_EQ] = ACTIONS(4018), - [anon_sym_DOT] = ACTIONS(4016), - [anon_sym_scoped] = ACTIONS(4016), - [anon_sym_EQ_GT] = ACTIONS(4018), - [anon_sym_var] = ACTIONS(4016), - [anon_sym_yield] = ACTIONS(4016), - [anon_sym_switch] = ACTIONS(4016), - [anon_sym_when] = ACTIONS(4016), - [sym_discard] = ACTIONS(4016), - [anon_sym_DOT_DOT] = ACTIONS(4018), - [anon_sym_and] = ACTIONS(4016), - [anon_sym_or] = ACTIONS(4016), - [anon_sym_AMP_AMP] = ACTIONS(4018), - [anon_sym_PIPE_PIPE] = ACTIONS(4018), - [anon_sym_QMARK_QMARK] = ACTIONS(4018), - [anon_sym_from] = ACTIONS(4016), - [anon_sym_into] = ACTIONS(4016), - [anon_sym_join] = ACTIONS(4016), - [anon_sym_on] = ACTIONS(4016), - [anon_sym_equals] = ACTIONS(4016), - [anon_sym_let] = ACTIONS(4016), - [anon_sym_orderby] = ACTIONS(4016), - [anon_sym_ascending] = ACTIONS(4016), - [anon_sym_descending] = ACTIONS(4016), - [anon_sym_group] = ACTIONS(4016), - [anon_sym_by] = ACTIONS(4016), - [anon_sym_select] = ACTIONS(4016), - [anon_sym_as] = ACTIONS(4016), - [anon_sym_is] = ACTIONS(4016), - [anon_sym_DASH_GT] = ACTIONS(4018), - [anon_sym_with] = ACTIONS(4016), - [aux_sym_preproc_if_token3] = ACTIONS(4018), - [aux_sym_preproc_else_token1] = ACTIONS(4018), - [aux_sym_preproc_elif_token1] = ACTIONS(4018), + [sym__identifier_token] = ACTIONS(4058), + [anon_sym_alias] = ACTIONS(4058), + [anon_sym_SEMI] = ACTIONS(4060), + [anon_sym_global] = ACTIONS(4058), + [anon_sym_LBRACK] = ACTIONS(4060), + [anon_sym_COLON] = ACTIONS(4060), + [anon_sym_COMMA] = ACTIONS(4060), + [anon_sym_RBRACK] = ACTIONS(4060), + [anon_sym_LPAREN] = ACTIONS(4060), + [anon_sym_RPAREN] = ACTIONS(4060), + [anon_sym_LBRACE] = ACTIONS(4060), + [anon_sym_RBRACE] = ACTIONS(4060), + [anon_sym_file] = ACTIONS(4058), + [anon_sym_LT] = ACTIONS(4058), + [anon_sym_GT] = ACTIONS(4058), + [anon_sym_in] = ACTIONS(4058), + [anon_sym_where] = ACTIONS(4058), + [anon_sym_QMARK] = ACTIONS(4058), + [anon_sym_notnull] = ACTIONS(4058), + [anon_sym_unmanaged] = ACTIONS(4058), + [anon_sym_BANG] = ACTIONS(4058), + [anon_sym_PLUS_PLUS] = ACTIONS(4060), + [anon_sym_DASH_DASH] = ACTIONS(4060), + [anon_sym_PLUS] = ACTIONS(4058), + [anon_sym_DASH] = ACTIONS(4058), + [anon_sym_STAR] = ACTIONS(4060), + [anon_sym_SLASH] = ACTIONS(4058), + [anon_sym_PERCENT] = ACTIONS(4060), + [anon_sym_CARET] = ACTIONS(4060), + [anon_sym_PIPE] = ACTIONS(4058), + [anon_sym_AMP] = ACTIONS(4058), + [anon_sym_LT_LT] = ACTIONS(4060), + [anon_sym_GT_GT] = ACTIONS(4058), + [anon_sym_GT_GT_GT] = ACTIONS(4060), + [anon_sym_EQ_EQ] = ACTIONS(4060), + [anon_sym_BANG_EQ] = ACTIONS(4060), + [anon_sym_GT_EQ] = ACTIONS(4060), + [anon_sym_LT_EQ] = ACTIONS(4060), + [anon_sym_DOT] = ACTIONS(4058), + [anon_sym_scoped] = ACTIONS(4058), + [anon_sym_EQ_GT] = ACTIONS(4060), + [anon_sym_var] = ACTIONS(4058), + [anon_sym_yield] = ACTIONS(4058), + [anon_sym_switch] = ACTIONS(4058), + [anon_sym_when] = ACTIONS(4058), + [sym_discard] = ACTIONS(4058), + [anon_sym_DOT_DOT] = ACTIONS(4060), + [anon_sym_and] = ACTIONS(4058), + [anon_sym_or] = ACTIONS(4058), + [anon_sym_AMP_AMP] = ACTIONS(4060), + [anon_sym_PIPE_PIPE] = ACTIONS(4060), + [anon_sym_QMARK_QMARK] = ACTIONS(4060), + [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_ascending] = ACTIONS(4058), + [anon_sym_descending] = 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(4060), + [anon_sym_with] = ACTIONS(4058), + [aux_sym_preproc_if_token3] = ACTIONS(4060), + [aux_sym_preproc_else_token1] = ACTIONS(4060), + [aux_sym_preproc_elif_token1] = ACTIONS(4060), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -417652,77 +417330,77 @@ 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(3949), - [anon_sym_alias] = ACTIONS(3949), - [anon_sym_SEMI] = ACTIONS(3951), - [anon_sym_global] = ACTIONS(3949), - [anon_sym_LBRACK] = ACTIONS(3951), - [anon_sym_COLON] = ACTIONS(3951), - [anon_sym_COMMA] = ACTIONS(3951), - [anon_sym_RBRACK] = ACTIONS(3951), - [anon_sym_LPAREN] = ACTIONS(3951), - [anon_sym_RPAREN] = ACTIONS(3951), - [anon_sym_LBRACE] = ACTIONS(3951), - [anon_sym_RBRACE] = ACTIONS(3951), - [anon_sym_file] = ACTIONS(3949), - [anon_sym_LT] = ACTIONS(3949), - [anon_sym_GT] = ACTIONS(3949), - [anon_sym_in] = ACTIONS(3949), - [anon_sym_where] = ACTIONS(3949), - [anon_sym_QMARK] = ACTIONS(3949), - [anon_sym_notnull] = ACTIONS(3949), - [anon_sym_unmanaged] = ACTIONS(3949), - [anon_sym_BANG] = ACTIONS(3949), - [anon_sym_PLUS_PLUS] = ACTIONS(3951), - [anon_sym_DASH_DASH] = ACTIONS(3951), - [anon_sym_PLUS] = ACTIONS(3949), - [anon_sym_DASH] = ACTIONS(3949), - [anon_sym_STAR] = ACTIONS(3951), - [anon_sym_SLASH] = ACTIONS(3949), - [anon_sym_PERCENT] = ACTIONS(3951), - [anon_sym_CARET] = ACTIONS(3951), - [anon_sym_PIPE] = ACTIONS(3949), - [anon_sym_AMP] = ACTIONS(3949), - [anon_sym_LT_LT] = ACTIONS(3951), - [anon_sym_GT_GT] = ACTIONS(3949), - [anon_sym_GT_GT_GT] = ACTIONS(3951), - [anon_sym_EQ_EQ] = ACTIONS(3951), - [anon_sym_BANG_EQ] = ACTIONS(3951), - [anon_sym_GT_EQ] = ACTIONS(3951), - [anon_sym_LT_EQ] = ACTIONS(3951), - [anon_sym_DOT] = ACTIONS(3949), - [anon_sym_scoped] = ACTIONS(3949), - [anon_sym_EQ_GT] = ACTIONS(3951), - [anon_sym_var] = ACTIONS(3949), - [anon_sym_yield] = ACTIONS(3949), - [anon_sym_switch] = ACTIONS(3949), - [anon_sym_when] = ACTIONS(3949), - [sym_discard] = ACTIONS(3949), - [anon_sym_DOT_DOT] = ACTIONS(3951), - [anon_sym_and] = ACTIONS(3949), - [anon_sym_or] = ACTIONS(3949), - [anon_sym_AMP_AMP] = ACTIONS(3951), - [anon_sym_PIPE_PIPE] = ACTIONS(3951), - [anon_sym_QMARK_QMARK] = ACTIONS(3951), - [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_ascending] = ACTIONS(3949), - [anon_sym_descending] = 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(3951), - [anon_sym_with] = ACTIONS(3949), - [aux_sym_preproc_if_token3] = ACTIONS(3951), - [aux_sym_preproc_else_token1] = ACTIONS(3951), - [aux_sym_preproc_elif_token1] = ACTIONS(3951), + [sym__identifier_token] = ACTIONS(4062), + [anon_sym_alias] = ACTIONS(4062), + [anon_sym_SEMI] = ACTIONS(4064), + [anon_sym_global] = ACTIONS(4062), + [anon_sym_LBRACK] = ACTIONS(4064), + [anon_sym_COLON] = ACTIONS(4064), + [anon_sym_COMMA] = ACTIONS(4064), + [anon_sym_RBRACK] = ACTIONS(4064), + [anon_sym_LPAREN] = ACTIONS(4064), + [anon_sym_RPAREN] = ACTIONS(4064), + [anon_sym_LBRACE] = ACTIONS(4064), + [anon_sym_RBRACE] = ACTIONS(4064), + [anon_sym_file] = ACTIONS(4062), + [anon_sym_LT] = ACTIONS(4062), + [anon_sym_GT] = ACTIONS(4062), + [anon_sym_in] = ACTIONS(4062), + [anon_sym_where] = ACTIONS(4062), + [anon_sym_QMARK] = ACTIONS(4062), + [anon_sym_notnull] = ACTIONS(4062), + [anon_sym_unmanaged] = ACTIONS(4062), + [anon_sym_BANG] = ACTIONS(4062), + [anon_sym_PLUS_PLUS] = ACTIONS(4064), + [anon_sym_DASH_DASH] = ACTIONS(4064), + [anon_sym_PLUS] = ACTIONS(4062), + [anon_sym_DASH] = ACTIONS(4062), + [anon_sym_STAR] = ACTIONS(4064), + [anon_sym_SLASH] = ACTIONS(4062), + [anon_sym_PERCENT] = ACTIONS(4064), + [anon_sym_CARET] = ACTIONS(4064), + [anon_sym_PIPE] = ACTIONS(4062), + [anon_sym_AMP] = ACTIONS(4062), + [anon_sym_LT_LT] = ACTIONS(4064), + [anon_sym_GT_GT] = ACTIONS(4062), + [anon_sym_GT_GT_GT] = ACTIONS(4064), + [anon_sym_EQ_EQ] = ACTIONS(4064), + [anon_sym_BANG_EQ] = ACTIONS(4064), + [anon_sym_GT_EQ] = ACTIONS(4064), + [anon_sym_LT_EQ] = ACTIONS(4064), + [anon_sym_DOT] = ACTIONS(4062), + [anon_sym_scoped] = ACTIONS(4062), + [anon_sym_EQ_GT] = ACTIONS(4066), + [anon_sym_var] = ACTIONS(4062), + [anon_sym_yield] = ACTIONS(4062), + [anon_sym_switch] = ACTIONS(4062), + [anon_sym_when] = ACTIONS(4062), + [sym_discard] = ACTIONS(4062), + [anon_sym_DOT_DOT] = ACTIONS(4064), + [anon_sym_and] = ACTIONS(4062), + [anon_sym_or] = ACTIONS(4062), + [anon_sym_AMP_AMP] = ACTIONS(4064), + [anon_sym_PIPE_PIPE] = ACTIONS(4064), + [anon_sym_QMARK_QMARK] = ACTIONS(4064), + [anon_sym_from] = ACTIONS(4062), + [anon_sym_into] = ACTIONS(4062), + [anon_sym_join] = ACTIONS(4062), + [anon_sym_on] = ACTIONS(4062), + [anon_sym_equals] = ACTIONS(4062), + [anon_sym_let] = ACTIONS(4062), + [anon_sym_orderby] = ACTIONS(4062), + [anon_sym_ascending] = ACTIONS(4062), + [anon_sym_descending] = ACTIONS(4062), + [anon_sym_group] = ACTIONS(4062), + [anon_sym_by] = ACTIONS(4062), + [anon_sym_select] = ACTIONS(4062), + [anon_sym_as] = ACTIONS(4062), + [anon_sym_is] = ACTIONS(4062), + [anon_sym_DASH_GT] = ACTIONS(4064), + [anon_sym_with] = ACTIONS(4062), + [aux_sym_preproc_if_token3] = ACTIONS(4064), + [aux_sym_preproc_else_token1] = ACTIONS(4064), + [aux_sym_preproc_elif_token1] = ACTIONS(4064), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -417735,6 +417413,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2382] = { + [sym_parameter_list] = STATE(7531), + [sym_positional_pattern_clause] = STATE(2481), + [sym_property_pattern_clause] = STATE(2552), + [sym__variable_designation] = STATE(4764), + [sym_parenthesized_variable_designation] = STATE(4760), + [sym__lambda_parameters] = STATE(7378), + [sym_identifier] = STATE(4343), + [sym__reserved_identifier] = STATE(4328), [sym_preproc_region] = STATE(2382), [sym_preproc_endregion] = STATE(2382), [sym_preproc_line] = STATE(2382), @@ -417744,77 +417430,68 @@ 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(3685), - [anon_sym_alias] = ACTIONS(3685), - [anon_sym_global] = ACTIONS(3685), - [anon_sym_EQ] = ACTIONS(3689), - [anon_sym_LBRACK] = ACTIONS(3691), - [anon_sym_LPAREN] = ACTIONS(3691), - [anon_sym_file] = ACTIONS(3685), - [anon_sym_LT] = ACTIONS(3689), - [anon_sym_GT] = ACTIONS(3689), - [anon_sym_where] = ACTIONS(3694), - [anon_sym_QMARK] = ACTIONS(3694), - [anon_sym_notnull] = ACTIONS(3685), - [anon_sym_unmanaged] = ACTIONS(3685), - [anon_sym_BANG] = ACTIONS(3689), - [anon_sym_PLUS_PLUS] = ACTIONS(3697), - [anon_sym_DASH_DASH] = ACTIONS(3697), - [anon_sym_PLUS] = ACTIONS(3689), - [anon_sym_DASH] = ACTIONS(3689), - [anon_sym_STAR] = ACTIONS(3694), - [anon_sym_SLASH] = ACTIONS(3689), - [anon_sym_PERCENT] = ACTIONS(3689), - [anon_sym_CARET] = ACTIONS(3689), - [anon_sym_PIPE] = ACTIONS(3689), - [anon_sym_AMP] = ACTIONS(3689), - [anon_sym_LT_LT] = ACTIONS(3689), - [anon_sym_GT_GT] = ACTIONS(3689), - [anon_sym_GT_GT_GT] = ACTIONS(3689), - [anon_sym_EQ_EQ] = ACTIONS(3697), - [anon_sym_BANG_EQ] = ACTIONS(3697), - [anon_sym_GT_EQ] = ACTIONS(3697), - [anon_sym_LT_EQ] = ACTIONS(3697), - [anon_sym_DOT] = ACTIONS(3694), - [anon_sym_scoped] = ACTIONS(3685), - [anon_sym_var] = ACTIONS(3685), - [anon_sym_yield] = ACTIONS(3685), - [anon_sym_switch] = ACTIONS(3689), - [anon_sym_when] = ACTIONS(3685), - [anon_sym_DOT_DOT] = ACTIONS(3697), - [anon_sym_and] = ACTIONS(3689), - [anon_sym_or] = ACTIONS(3689), - [anon_sym_PLUS_EQ] = ACTIONS(3697), - [anon_sym_DASH_EQ] = ACTIONS(3697), - [anon_sym_STAR_EQ] = ACTIONS(3697), - [anon_sym_SLASH_EQ] = ACTIONS(3697), - [anon_sym_PERCENT_EQ] = ACTIONS(3697), - [anon_sym_AMP_EQ] = ACTIONS(3697), - [anon_sym_CARET_EQ] = ACTIONS(3697), - [anon_sym_PIPE_EQ] = ACTIONS(3697), - [anon_sym_LT_LT_EQ] = ACTIONS(3697), - [anon_sym_GT_GT_EQ] = ACTIONS(3697), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3697), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3697), - [anon_sym_AMP_AMP] = ACTIONS(3697), - [anon_sym_PIPE_PIPE] = ACTIONS(3697), - [anon_sym_QMARK_QMARK] = ACTIONS(3689), - [anon_sym_from] = ACTIONS(3694), - [anon_sym_into] = ACTIONS(3694), - [anon_sym_join] = ACTIONS(3694), - [anon_sym_on] = ACTIONS(3685), - [anon_sym_equals] = ACTIONS(3685), - [anon_sym_let] = ACTIONS(3694), - [anon_sym_orderby] = ACTIONS(3694), - [anon_sym_ascending] = ACTIONS(3685), - [anon_sym_descending] = ACTIONS(3685), - [anon_sym_group] = ACTIONS(3694), - [anon_sym_by] = ACTIONS(3685), - [anon_sym_select] = ACTIONS(3694), - [anon_sym_as] = ACTIONS(3689), - [anon_sym_is] = ACTIONS(3689), - [anon_sym_DASH_GT] = ACTIONS(3691), - [anon_sym_with] = ACTIONS(3689), + [sym__identifier_token] = ACTIONS(4046), + [anon_sym_alias] = ACTIONS(4048), + [anon_sym_global] = ACTIONS(4048), + [anon_sym_LBRACK] = ACTIONS(3859), + [anon_sym_COLON] = ACTIONS(3859), + [anon_sym_COMMA] = ACTIONS(3859), + [anon_sym_LPAREN] = ACTIONS(3859), + [anon_sym_LBRACE] = ACTIONS(4050), + [anon_sym_file] = ACTIONS(4048), + [anon_sym_LT] = ACTIONS(3863), + [anon_sym_GT] = ACTIONS(3863), + [anon_sym_where] = ACTIONS(4048), + [anon_sym_QMARK] = ACTIONS(3863), + [anon_sym_notnull] = ACTIONS(4048), + [anon_sym_unmanaged] = ACTIONS(4048), + [anon_sym_BANG] = ACTIONS(3863), + [anon_sym_PLUS_PLUS] = ACTIONS(3859), + [anon_sym_DASH_DASH] = ACTIONS(3859), + [anon_sym_PLUS] = ACTIONS(3863), + [anon_sym_DASH] = ACTIONS(3863), + [anon_sym_STAR] = ACTIONS(3859), + [anon_sym_SLASH] = ACTIONS(3863), + [anon_sym_PERCENT] = ACTIONS(3859), + [anon_sym_CARET] = ACTIONS(3859), + [anon_sym_PIPE] = ACTIONS(3863), + [anon_sym_AMP] = ACTIONS(3863), + [anon_sym_LT_LT] = ACTIONS(3859), + [anon_sym_GT_GT] = ACTIONS(3863), + [anon_sym_GT_GT_GT] = ACTIONS(3859), + [anon_sym_EQ_EQ] = ACTIONS(3859), + [anon_sym_BANG_EQ] = ACTIONS(3859), + [anon_sym_GT_EQ] = ACTIONS(3859), + [anon_sym_LT_EQ] = ACTIONS(3859), + [anon_sym_DOT] = ACTIONS(3863), + [anon_sym_scoped] = ACTIONS(4048), + [anon_sym_var] = ACTIONS(4048), + [anon_sym_yield] = ACTIONS(4048), + [anon_sym_switch] = ACTIONS(3863), + [anon_sym_when] = ACTIONS(4048), + [sym_discard] = ACTIONS(4052), + [anon_sym_DOT_DOT] = ACTIONS(3859), + [anon_sym_and] = ACTIONS(3867), + [anon_sym_or] = ACTIONS(3867), + [anon_sym_AMP_AMP] = ACTIONS(3859), + [anon_sym_PIPE_PIPE] = ACTIONS(3859), + [anon_sym_QMARK_QMARK] = ACTIONS(3859), + [anon_sym_from] = ACTIONS(4048), + [anon_sym_into] = ACTIONS(3863), + [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(3863), + [anon_sym_is] = ACTIONS(3863), + [anon_sym_DASH_GT] = ACTIONS(3859), + [anon_sym_with] = ACTIONS(3863), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -417825,8 +417502,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(3859), }, [2383] = { + [sym_modifier] = STATE(3114), + [sym__name] = STATE(4369), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(4068), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(4073), + [sym_type] = STATE(6101), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_identifier] = STATE(4081), + [sym__reserved_identifier] = STATE(3654), [sym_preproc_region] = STATE(2383), [sym_preproc_endregion] = STATE(2383), [sym_preproc_line] = STATE(2383), @@ -417836,77 +417533,58 @@ 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(3685), - [anon_sym_alias] = ACTIONS(3685), - [anon_sym_global] = ACTIONS(3685), - [anon_sym_EQ] = ACTIONS(3689), - [anon_sym_LBRACK] = ACTIONS(3691), - [anon_sym_LPAREN] = ACTIONS(3691), - [anon_sym_file] = ACTIONS(3685), - [anon_sym_LT] = ACTIONS(3689), - [anon_sym_GT] = ACTIONS(3689), - [anon_sym_where] = ACTIONS(3685), - [anon_sym_QMARK] = ACTIONS(3694), - [anon_sym_notnull] = ACTIONS(3685), - [anon_sym_unmanaged] = ACTIONS(3685), - [anon_sym_BANG] = ACTIONS(3689), - [anon_sym_PLUS_PLUS] = ACTIONS(3697), - [anon_sym_DASH_DASH] = ACTIONS(3697), - [anon_sym_PLUS] = ACTIONS(3689), - [anon_sym_DASH] = ACTIONS(3689), - [anon_sym_STAR] = ACTIONS(3694), - [anon_sym_SLASH] = ACTIONS(3689), - [anon_sym_PERCENT] = ACTIONS(3689), - [anon_sym_CARET] = ACTIONS(3689), - [anon_sym_PIPE] = ACTIONS(3689), - [anon_sym_AMP] = ACTIONS(3689), - [anon_sym_LT_LT] = ACTIONS(3689), - [anon_sym_GT_GT] = ACTIONS(3689), - [anon_sym_GT_GT_GT] = ACTIONS(3689), - [anon_sym_EQ_EQ] = ACTIONS(3697), - [anon_sym_BANG_EQ] = ACTIONS(3697), - [anon_sym_GT_EQ] = ACTIONS(3697), - [anon_sym_LT_EQ] = ACTIONS(3697), - [anon_sym_DOT] = ACTIONS(3694), - [anon_sym_scoped] = ACTIONS(3685), - [anon_sym_var] = ACTIONS(3685), - [anon_sym_yield] = ACTIONS(3685), - [anon_sym_switch] = ACTIONS(3689), - [anon_sym_when] = ACTIONS(3685), - [anon_sym_DOT_DOT] = ACTIONS(3697), - [anon_sym_and] = ACTIONS(3689), - [anon_sym_or] = ACTIONS(3689), - [anon_sym_PLUS_EQ] = ACTIONS(3697), - [anon_sym_DASH_EQ] = ACTIONS(3697), - [anon_sym_STAR_EQ] = ACTIONS(3697), - [anon_sym_SLASH_EQ] = ACTIONS(3697), - [anon_sym_PERCENT_EQ] = ACTIONS(3697), - [anon_sym_AMP_EQ] = ACTIONS(3697), - [anon_sym_CARET_EQ] = ACTIONS(3697), - [anon_sym_PIPE_EQ] = ACTIONS(3697), - [anon_sym_LT_LT_EQ] = ACTIONS(3697), - [anon_sym_GT_GT_EQ] = ACTIONS(3697), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3697), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3697), - [anon_sym_AMP_AMP] = ACTIONS(3697), - [anon_sym_PIPE_PIPE] = ACTIONS(3697), - [anon_sym_QMARK_QMARK] = ACTIONS(3689), - [anon_sym_from] = ACTIONS(3685), - [anon_sym_into] = ACTIONS(3685), - [anon_sym_join] = ACTIONS(3685), - [anon_sym_on] = ACTIONS(3685), - [anon_sym_equals] = ACTIONS(3685), - [anon_sym_let] = ACTIONS(3685), - [anon_sym_orderby] = ACTIONS(3685), - [anon_sym_ascending] = ACTIONS(3685), - [anon_sym_descending] = ACTIONS(3685), - [anon_sym_group] = ACTIONS(3685), - [anon_sym_by] = ACTIONS(3694), - [anon_sym_select] = ACTIONS(3685), - [anon_sym_as] = ACTIONS(3689), - [anon_sym_is] = ACTIONS(3689), - [anon_sym_DASH_GT] = ACTIONS(3691), - [anon_sym_with] = ACTIONS(3689), + [aux_sym__class_declaration_initializer_repeat2] = STATE(3065), + [sym__identifier_token] = ACTIONS(2965), + [anon_sym_extern] = ACTIONS(65), + [anon_sym_alias] = ACTIONS(2969), + [anon_sym_global] = ACTIONS(2969), + [anon_sym_unsafe] = ACTIONS(65), + [anon_sym_static] = ACTIONS(65), + [anon_sym_LPAREN] = ACTIONS(2977), + [anon_sym_class] = ACTIONS(3917), + [anon_sym_ref] = ACTIONS(3919), + [anon_sym_struct] = ACTIONS(3921), + [anon_sym_enum] = ACTIONS(3923), + [anon_sym_interface] = ACTIONS(3925), + [anon_sym_delegate] = ACTIONS(3927), + [anon_sym_record] = ACTIONS(3929), + [anon_sym_abstract] = ACTIONS(65), + [anon_sym_async] = ACTIONS(65), + [anon_sym_const] = ACTIONS(65), + [anon_sym_file] = ACTIONS(4068), + [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(2969), + [anon_sym_notnull] = ACTIONS(2969), + [anon_sym_unmanaged] = ACTIONS(2969), + [anon_sym_scoped] = ACTIONS(2993), + [anon_sym_var] = ACTIONS(2995), + [sym_predefined_type] = ACTIONS(2997), + [anon_sym_yield] = ACTIONS(2969), + [anon_sym_when] = ACTIONS(2969), + [anon_sym_from] = ACTIONS(2969), + [anon_sym_into] = ACTIONS(2969), + [anon_sym_join] = ACTIONS(2969), + [anon_sym_on] = ACTIONS(2969), + [anon_sym_equals] = ACTIONS(2969), + [anon_sym_let] = ACTIONS(2969), + [anon_sym_orderby] = ACTIONS(2969), + [anon_sym_ascending] = ACTIONS(2969), + [anon_sym_descending] = ACTIONS(2969), + [anon_sym_group] = ACTIONS(2969), + [anon_sym_by] = ACTIONS(2969), + [anon_sym_select] = ACTIONS(2969), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -417928,77 +417606,77 @@ 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(3699), - [anon_sym_alias] = ACTIONS(3699), - [anon_sym_global] = ACTIONS(3699), - [anon_sym_EQ] = ACTIONS(3704), - [anon_sym_LBRACK] = ACTIONS(3721), - [anon_sym_LPAREN] = ACTIONS(3721), - [anon_sym_file] = ACTIONS(3699), - [anon_sym_LT] = ACTIONS(3704), - [anon_sym_GT] = ACTIONS(3704), - [anon_sym_where] = ACTIONS(3699), - [anon_sym_QMARK] = ACTIONS(3724), - [anon_sym_notnull] = ACTIONS(3699), - [anon_sym_unmanaged] = ACTIONS(3699), - [anon_sym_BANG] = ACTIONS(3704), - [anon_sym_PLUS_PLUS] = ACTIONS(3719), - [anon_sym_DASH_DASH] = ACTIONS(3719), - [anon_sym_PLUS] = ACTIONS(3704), - [anon_sym_DASH] = ACTIONS(3704), - [anon_sym_STAR] = ACTIONS(3724), - [anon_sym_SLASH] = ACTIONS(3704), - [anon_sym_PERCENT] = ACTIONS(3704), - [anon_sym_CARET] = ACTIONS(3704), - [anon_sym_PIPE] = ACTIONS(3704), - [anon_sym_AMP] = ACTIONS(3704), - [anon_sym_LT_LT] = ACTIONS(3704), - [anon_sym_GT_GT] = ACTIONS(3704), - [anon_sym_GT_GT_GT] = ACTIONS(3704), - [anon_sym_EQ_EQ] = ACTIONS(3719), - [anon_sym_BANG_EQ] = ACTIONS(3719), - [anon_sym_GT_EQ] = ACTIONS(3719), - [anon_sym_LT_EQ] = ACTIONS(3719), - [anon_sym_DOT] = ACTIONS(3724), - [anon_sym_scoped] = ACTIONS(3699), - [anon_sym_var] = ACTIONS(3699), - [anon_sym_yield] = ACTIONS(3699), - [anon_sym_switch] = ACTIONS(3704), - [anon_sym_when] = ACTIONS(3699), - [anon_sym_DOT_DOT] = ACTIONS(3719), - [anon_sym_and] = ACTIONS(3704), - [anon_sym_or] = ACTIONS(3704), - [anon_sym_PLUS_EQ] = ACTIONS(3719), - [anon_sym_DASH_EQ] = ACTIONS(3719), - [anon_sym_STAR_EQ] = ACTIONS(3719), - [anon_sym_SLASH_EQ] = ACTIONS(3719), - [anon_sym_PERCENT_EQ] = ACTIONS(3719), - [anon_sym_AMP_EQ] = ACTIONS(3719), - [anon_sym_CARET_EQ] = ACTIONS(3719), - [anon_sym_PIPE_EQ] = ACTIONS(3719), - [anon_sym_LT_LT_EQ] = ACTIONS(3719), - [anon_sym_GT_GT_EQ] = ACTIONS(3719), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3719), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3719), - [anon_sym_AMP_AMP] = ACTIONS(3719), - [anon_sym_PIPE_PIPE] = ACTIONS(3719), - [anon_sym_QMARK_QMARK] = ACTIONS(3704), - [anon_sym_from] = ACTIONS(3699), - [anon_sym_into] = ACTIONS(3724), - [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_ascending] = ACTIONS(3699), - [anon_sym_descending] = ACTIONS(3699), - [anon_sym_group] = ACTIONS(3699), - [anon_sym_by] = ACTIONS(3724), - [anon_sym_select] = ACTIONS(3699), - [anon_sym_as] = ACTIONS(3704), - [anon_sym_is] = ACTIONS(3704), - [anon_sym_DASH_GT] = ACTIONS(3721), - [anon_sym_with] = ACTIONS(3704), + [sym__identifier_token] = ACTIONS(3638), + [anon_sym_alias] = ACTIONS(3638), + [anon_sym_SEMI] = ACTIONS(3640), + [anon_sym_global] = ACTIONS(3638), + [anon_sym_LBRACK] = ACTIONS(3640), + [anon_sym_COLON] = ACTIONS(3640), + [anon_sym_COMMA] = ACTIONS(3640), + [anon_sym_RBRACK] = ACTIONS(3640), + [anon_sym_LPAREN] = ACTIONS(3640), + [anon_sym_RPAREN] = ACTIONS(3640), + [anon_sym_LBRACE] = ACTIONS(3640), + [anon_sym_RBRACE] = ACTIONS(3640), + [anon_sym_file] = ACTIONS(3638), + [anon_sym_LT] = ACTIONS(3638), + [anon_sym_GT] = ACTIONS(3638), + [anon_sym_in] = ACTIONS(3638), + [anon_sym_where] = ACTIONS(3638), + [anon_sym_QMARK] = ACTIONS(3638), + [anon_sym_notnull] = ACTIONS(3638), + [anon_sym_unmanaged] = ACTIONS(3638), + [anon_sym_BANG] = ACTIONS(3638), + [anon_sym_PLUS_PLUS] = ACTIONS(3640), + [anon_sym_DASH_DASH] = ACTIONS(3640), + [anon_sym_PLUS] = ACTIONS(3638), + [anon_sym_DASH] = ACTIONS(3638), + [anon_sym_STAR] = ACTIONS(3640), + [anon_sym_SLASH] = ACTIONS(3638), + [anon_sym_PERCENT] = ACTIONS(3640), + [anon_sym_CARET] = ACTIONS(3640), + [anon_sym_PIPE] = ACTIONS(3638), + [anon_sym_AMP] = ACTIONS(3638), + [anon_sym_LT_LT] = ACTIONS(3640), + [anon_sym_GT_GT] = ACTIONS(3638), + [anon_sym_GT_GT_GT] = ACTIONS(3640), + [anon_sym_EQ_EQ] = ACTIONS(3640), + [anon_sym_BANG_EQ] = ACTIONS(3640), + [anon_sym_GT_EQ] = ACTIONS(3640), + [anon_sym_LT_EQ] = ACTIONS(3640), + [anon_sym_DOT] = ACTIONS(3638), + [anon_sym_scoped] = ACTIONS(3638), + [anon_sym_EQ_GT] = ACTIONS(3640), + [anon_sym_var] = ACTIONS(3638), + [anon_sym_yield] = ACTIONS(3638), + [anon_sym_switch] = ACTIONS(3638), + [anon_sym_when] = ACTIONS(3638), + [sym_discard] = ACTIONS(3638), + [anon_sym_DOT_DOT] = ACTIONS(3640), + [anon_sym_and] = ACTIONS(3638), + [anon_sym_or] = ACTIONS(3638), + [anon_sym_AMP_AMP] = ACTIONS(3640), + [anon_sym_PIPE_PIPE] = ACTIONS(3640), + [anon_sym_QMARK_QMARK] = ACTIONS(3640), + [anon_sym_from] = ACTIONS(3638), + [anon_sym_into] = ACTIONS(3638), + [anon_sym_join] = ACTIONS(3638), + [anon_sym_on] = ACTIONS(3638), + [anon_sym_equals] = ACTIONS(3638), + [anon_sym_let] = ACTIONS(3638), + [anon_sym_orderby] = ACTIONS(3638), + [anon_sym_ascending] = ACTIONS(3638), + [anon_sym_descending] = ACTIONS(3638), + [anon_sym_group] = ACTIONS(3638), + [anon_sym_by] = ACTIONS(3638), + [anon_sym_select] = ACTIONS(3638), + [anon_sym_as] = ACTIONS(3638), + [anon_sym_is] = ACTIONS(3638), + [anon_sym_DASH_GT] = ACTIONS(3640), + [anon_sym_with] = ACTIONS(3638), + [aux_sym_preproc_if_token3] = ACTIONS(3640), + [aux_sym_preproc_else_token1] = ACTIONS(3640), + [aux_sym_preproc_elif_token1] = ACTIONS(3640), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -418020,77 +417698,77 @@ 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(3685), - [anon_sym_alias] = ACTIONS(3685), - [anon_sym_global] = ACTIONS(3685), - [anon_sym_EQ] = ACTIONS(3689), - [anon_sym_LBRACK] = ACTIONS(3691), - [anon_sym_LPAREN] = ACTIONS(3691), - [anon_sym_file] = ACTIONS(3685), - [anon_sym_LT] = ACTIONS(3689), - [anon_sym_GT] = ACTIONS(3689), - [anon_sym_where] = ACTIONS(3685), - [anon_sym_QMARK] = ACTIONS(3694), - [anon_sym_notnull] = ACTIONS(3685), - [anon_sym_unmanaged] = ACTIONS(3685), - [anon_sym_BANG] = ACTIONS(3689), - [anon_sym_PLUS_PLUS] = ACTIONS(3697), - [anon_sym_DASH_DASH] = ACTIONS(3697), - [anon_sym_PLUS] = ACTIONS(3689), - [anon_sym_DASH] = ACTIONS(3689), - [anon_sym_STAR] = ACTIONS(3694), - [anon_sym_SLASH] = ACTIONS(3689), - [anon_sym_PERCENT] = ACTIONS(3689), - [anon_sym_CARET] = ACTIONS(3689), - [anon_sym_PIPE] = ACTIONS(3689), - [anon_sym_AMP] = ACTIONS(3689), - [anon_sym_LT_LT] = ACTIONS(3689), - [anon_sym_GT_GT] = ACTIONS(3689), - [anon_sym_GT_GT_GT] = ACTIONS(3689), - [anon_sym_EQ_EQ] = ACTIONS(3697), - [anon_sym_BANG_EQ] = ACTIONS(3697), - [anon_sym_GT_EQ] = ACTIONS(3697), - [anon_sym_LT_EQ] = ACTIONS(3697), - [anon_sym_DOT] = ACTIONS(3694), - [anon_sym_scoped] = ACTIONS(3685), - [anon_sym_var] = ACTIONS(3685), - [anon_sym_yield] = ACTIONS(3685), - [anon_sym_switch] = ACTIONS(3689), - [anon_sym_when] = ACTIONS(3685), - [anon_sym_DOT_DOT] = ACTIONS(3697), - [anon_sym_and] = ACTIONS(3689), - [anon_sym_or] = ACTIONS(3689), - [anon_sym_PLUS_EQ] = ACTIONS(3697), - [anon_sym_DASH_EQ] = ACTIONS(3697), - [anon_sym_STAR_EQ] = ACTIONS(3697), - [anon_sym_SLASH_EQ] = ACTIONS(3697), - [anon_sym_PERCENT_EQ] = ACTIONS(3697), - [anon_sym_AMP_EQ] = ACTIONS(3697), - [anon_sym_CARET_EQ] = ACTIONS(3697), - [anon_sym_PIPE_EQ] = ACTIONS(3697), - [anon_sym_LT_LT_EQ] = ACTIONS(3697), - [anon_sym_GT_GT_EQ] = ACTIONS(3697), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3697), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3697), - [anon_sym_AMP_AMP] = ACTIONS(3697), - [anon_sym_PIPE_PIPE] = ACTIONS(3697), - [anon_sym_QMARK_QMARK] = ACTIONS(3689), - [anon_sym_from] = ACTIONS(3685), - [anon_sym_into] = ACTIONS(3685), - [anon_sym_join] = ACTIONS(3685), - [anon_sym_on] = ACTIONS(3685), - [anon_sym_equals] = ACTIONS(3694), - [anon_sym_let] = ACTIONS(3685), - [anon_sym_orderby] = ACTIONS(3685), - [anon_sym_ascending] = ACTIONS(3685), - [anon_sym_descending] = ACTIONS(3685), - [anon_sym_group] = ACTIONS(3685), - [anon_sym_by] = ACTIONS(3685), - [anon_sym_select] = ACTIONS(3685), - [anon_sym_as] = ACTIONS(3689), - [anon_sym_is] = ACTIONS(3689), - [anon_sym_DASH_GT] = ACTIONS(3691), - [anon_sym_with] = ACTIONS(3689), + [sym__identifier_token] = ACTIONS(3655), + [anon_sym_alias] = ACTIONS(3655), + [anon_sym_SEMI] = ACTIONS(3657), + [anon_sym_global] = ACTIONS(3655), + [anon_sym_LBRACK] = ACTIONS(3657), + [anon_sym_COLON] = ACTIONS(3657), + [anon_sym_COMMA] = ACTIONS(3657), + [anon_sym_RBRACK] = ACTIONS(3657), + [anon_sym_LPAREN] = ACTIONS(3657), + [anon_sym_RPAREN] = ACTIONS(3657), + [anon_sym_LBRACE] = ACTIONS(3657), + [anon_sym_RBRACE] = ACTIONS(3657), + [anon_sym_file] = ACTIONS(3655), + [anon_sym_LT] = ACTIONS(3655), + [anon_sym_GT] = ACTIONS(3655), + [anon_sym_in] = ACTIONS(3655), + [anon_sym_where] = ACTIONS(3655), + [anon_sym_QMARK] = ACTIONS(3655), + [anon_sym_notnull] = ACTIONS(3655), + [anon_sym_unmanaged] = ACTIONS(3655), + [anon_sym_BANG] = ACTIONS(3655), + [anon_sym_PLUS_PLUS] = ACTIONS(3657), + [anon_sym_DASH_DASH] = ACTIONS(3657), + [anon_sym_PLUS] = ACTIONS(3655), + [anon_sym_DASH] = ACTIONS(3655), + [anon_sym_STAR] = ACTIONS(3657), + [anon_sym_SLASH] = ACTIONS(3655), + [anon_sym_PERCENT] = ACTIONS(3657), + [anon_sym_CARET] = ACTIONS(3657), + [anon_sym_PIPE] = ACTIONS(3655), + [anon_sym_AMP] = ACTIONS(3655), + [anon_sym_LT_LT] = ACTIONS(3657), + [anon_sym_GT_GT] = ACTIONS(3655), + [anon_sym_GT_GT_GT] = ACTIONS(3657), + [anon_sym_EQ_EQ] = ACTIONS(3657), + [anon_sym_BANG_EQ] = ACTIONS(3657), + [anon_sym_GT_EQ] = ACTIONS(3657), + [anon_sym_LT_EQ] = ACTIONS(3657), + [anon_sym_DOT] = ACTIONS(3655), + [anon_sym_scoped] = ACTIONS(3655), + [anon_sym_EQ_GT] = ACTIONS(3657), + [anon_sym_var] = ACTIONS(3655), + [anon_sym_yield] = ACTIONS(3655), + [anon_sym_switch] = ACTIONS(3655), + [anon_sym_when] = ACTIONS(3655), + [sym_discard] = ACTIONS(3655), + [anon_sym_DOT_DOT] = ACTIONS(3657), + [anon_sym_and] = ACTIONS(3655), + [anon_sym_or] = ACTIONS(3655), + [anon_sym_AMP_AMP] = ACTIONS(3657), + [anon_sym_PIPE_PIPE] = ACTIONS(3657), + [anon_sym_QMARK_QMARK] = ACTIONS(3657), + [anon_sym_from] = ACTIONS(3655), + [anon_sym_into] = ACTIONS(3655), + [anon_sym_join] = ACTIONS(3655), + [anon_sym_on] = ACTIONS(3655), + [anon_sym_equals] = ACTIONS(3655), + [anon_sym_let] = ACTIONS(3655), + [anon_sym_orderby] = ACTIONS(3655), + [anon_sym_ascending] = ACTIONS(3655), + [anon_sym_descending] = ACTIONS(3655), + [anon_sym_group] = ACTIONS(3655), + [anon_sym_by] = ACTIONS(3655), + [anon_sym_select] = ACTIONS(3655), + [anon_sym_as] = ACTIONS(3655), + [anon_sym_is] = ACTIONS(3655), + [anon_sym_DASH_GT] = ACTIONS(3657), + [anon_sym_with] = ACTIONS(3655), + [aux_sym_preproc_if_token3] = ACTIONS(3657), + [aux_sym_preproc_else_token1] = ACTIONS(3657), + [aux_sym_preproc_elif_token1] = ACTIONS(3657), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -418112,77 +417790,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(4082), - [anon_sym_alias] = ACTIONS(4082), - [anon_sym_SEMI] = ACTIONS(4084), - [anon_sym_global] = ACTIONS(4082), - [anon_sym_LBRACK] = ACTIONS(4084), - [anon_sym_COLON] = ACTIONS(4084), - [anon_sym_COMMA] = ACTIONS(4084), - [anon_sym_RBRACK] = ACTIONS(4084), - [anon_sym_LPAREN] = ACTIONS(4084), - [anon_sym_RPAREN] = ACTIONS(4084), - [anon_sym_LBRACE] = ACTIONS(4084), - [anon_sym_RBRACE] = ACTIONS(4084), - [anon_sym_file] = ACTIONS(4082), - [anon_sym_LT] = ACTIONS(4082), - [anon_sym_GT] = ACTIONS(4082), - [anon_sym_in] = ACTIONS(4082), - [anon_sym_where] = ACTIONS(4082), - [anon_sym_QMARK] = ACTIONS(4082), - [anon_sym_notnull] = ACTIONS(4082), - [anon_sym_unmanaged] = ACTIONS(4082), - [anon_sym_BANG] = ACTIONS(4082), - [anon_sym_PLUS_PLUS] = ACTIONS(4084), - [anon_sym_DASH_DASH] = ACTIONS(4084), - [anon_sym_PLUS] = ACTIONS(4082), - [anon_sym_DASH] = ACTIONS(4082), - [anon_sym_STAR] = ACTIONS(4084), - [anon_sym_SLASH] = ACTIONS(4082), - [anon_sym_PERCENT] = ACTIONS(4084), - [anon_sym_CARET] = ACTIONS(4084), - [anon_sym_PIPE] = ACTIONS(4082), - [anon_sym_AMP] = ACTIONS(4082), - [anon_sym_LT_LT] = ACTIONS(4084), - [anon_sym_GT_GT] = ACTIONS(4082), - [anon_sym_GT_GT_GT] = ACTIONS(4084), - [anon_sym_EQ_EQ] = ACTIONS(4084), - [anon_sym_BANG_EQ] = ACTIONS(4084), - [anon_sym_GT_EQ] = ACTIONS(4084), - [anon_sym_LT_EQ] = ACTIONS(4084), - [anon_sym_DOT] = ACTIONS(4082), - [anon_sym_scoped] = ACTIONS(4082), - [anon_sym_EQ_GT] = ACTIONS(4084), - [anon_sym_var] = ACTIONS(4082), - [anon_sym_yield] = ACTIONS(4082), - [anon_sym_switch] = ACTIONS(4082), - [anon_sym_when] = ACTIONS(4082), - [sym_discard] = ACTIONS(4082), - [anon_sym_DOT_DOT] = ACTIONS(4084), - [anon_sym_and] = ACTIONS(4082), - [anon_sym_or] = ACTIONS(4082), - [anon_sym_AMP_AMP] = ACTIONS(4084), - [anon_sym_PIPE_PIPE] = ACTIONS(4084), - [anon_sym_QMARK_QMARK] = ACTIONS(4084), - [anon_sym_from] = ACTIONS(4082), - [anon_sym_into] = ACTIONS(4082), - [anon_sym_join] = ACTIONS(4082), - [anon_sym_on] = ACTIONS(4082), - [anon_sym_equals] = ACTIONS(4082), - [anon_sym_let] = ACTIONS(4082), - [anon_sym_orderby] = ACTIONS(4082), - [anon_sym_ascending] = ACTIONS(4082), - [anon_sym_descending] = ACTIONS(4082), - [anon_sym_group] = ACTIONS(4082), - [anon_sym_by] = ACTIONS(4082), - [anon_sym_select] = ACTIONS(4082), - [anon_sym_as] = ACTIONS(4082), - [anon_sym_is] = ACTIONS(4082), - [anon_sym_DASH_GT] = ACTIONS(4084), - [anon_sym_with] = ACTIONS(4082), - [aux_sym_preproc_if_token3] = ACTIONS(4084), - [aux_sym_preproc_else_token1] = ACTIONS(4084), - [aux_sym_preproc_elif_token1] = ACTIONS(4084), + [sym__identifier_token] = ACTIONS(3691), + [anon_sym_alias] = ACTIONS(3691), + [anon_sym_global] = ACTIONS(3691), + [anon_sym_EQ] = ACTIONS(3696), + [anon_sym_LBRACK] = ACTIONS(3713), + [anon_sym_LPAREN] = ACTIONS(3713), + [anon_sym_file] = ACTIONS(3691), + [anon_sym_LT] = ACTIONS(3696), + [anon_sym_GT] = ACTIONS(3696), + [anon_sym_where] = ACTIONS(3716), + [anon_sym_QMARK] = ACTIONS(3716), + [anon_sym_notnull] = ACTIONS(3691), + [anon_sym_unmanaged] = ACTIONS(3691), + [anon_sym_BANG] = ACTIONS(3696), + [anon_sym_PLUS_PLUS] = ACTIONS(3711), + [anon_sym_DASH_DASH] = ACTIONS(3711), + [anon_sym_PLUS] = ACTIONS(3696), + [anon_sym_DASH] = ACTIONS(3696), + [anon_sym_STAR] = ACTIONS(3716), + [anon_sym_SLASH] = ACTIONS(3696), + [anon_sym_PERCENT] = ACTIONS(3696), + [anon_sym_CARET] = ACTIONS(3696), + [anon_sym_PIPE] = ACTIONS(3696), + [anon_sym_AMP] = ACTIONS(3696), + [anon_sym_LT_LT] = ACTIONS(3696), + [anon_sym_GT_GT] = ACTIONS(3696), + [anon_sym_GT_GT_GT] = ACTIONS(3696), + [anon_sym_EQ_EQ] = ACTIONS(3711), + [anon_sym_BANG_EQ] = ACTIONS(3711), + [anon_sym_GT_EQ] = ACTIONS(3711), + [anon_sym_LT_EQ] = ACTIONS(3711), + [anon_sym_DOT] = ACTIONS(3716), + [anon_sym_scoped] = ACTIONS(3691), + [anon_sym_var] = ACTIONS(3691), + [anon_sym_yield] = ACTIONS(3691), + [anon_sym_switch] = ACTIONS(3696), + [anon_sym_when] = ACTIONS(3691), + [anon_sym_DOT_DOT] = ACTIONS(3711), + [anon_sym_and] = ACTIONS(3696), + [anon_sym_or] = ACTIONS(3696), + [anon_sym_PLUS_EQ] = ACTIONS(3711), + [anon_sym_DASH_EQ] = ACTIONS(3711), + [anon_sym_STAR_EQ] = ACTIONS(3711), + [anon_sym_SLASH_EQ] = ACTIONS(3711), + [anon_sym_PERCENT_EQ] = ACTIONS(3711), + [anon_sym_AMP_EQ] = ACTIONS(3711), + [anon_sym_CARET_EQ] = ACTIONS(3711), + [anon_sym_PIPE_EQ] = ACTIONS(3711), + [anon_sym_LT_LT_EQ] = ACTIONS(3711), + [anon_sym_GT_GT_EQ] = ACTIONS(3711), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3711), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3711), + [anon_sym_AMP_AMP] = ACTIONS(3711), + [anon_sym_PIPE_PIPE] = ACTIONS(3711), + [anon_sym_QMARK_QMARK] = ACTIONS(3696), + [anon_sym_from] = ACTIONS(3716), + [anon_sym_into] = ACTIONS(3691), + [anon_sym_join] = ACTIONS(3716), + [anon_sym_on] = ACTIONS(3691), + [anon_sym_equals] = ACTIONS(3691), + [anon_sym_let] = ACTIONS(3716), + [anon_sym_orderby] = ACTIONS(3716), + [anon_sym_ascending] = ACTIONS(3691), + [anon_sym_descending] = ACTIONS(3691), + [anon_sym_group] = ACTIONS(3716), + [anon_sym_by] = ACTIONS(3691), + [anon_sym_select] = ACTIONS(3716), + [anon_sym_as] = ACTIONS(3696), + [anon_sym_is] = ACTIONS(3696), + [anon_sym_DASH_GT] = ACTIONS(3713), + [anon_sym_with] = ACTIONS(3696), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -418204,77 +417882,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(3685), - [anon_sym_alias] = ACTIONS(3685), - [anon_sym_global] = ACTIONS(3685), - [anon_sym_EQ] = ACTIONS(3689), - [anon_sym_LBRACK] = ACTIONS(3691), - [anon_sym_LPAREN] = ACTIONS(3691), - [anon_sym_file] = ACTIONS(3685), - [anon_sym_LT] = ACTIONS(3689), - [anon_sym_GT] = ACTIONS(3689), - [anon_sym_where] = ACTIONS(3685), - [anon_sym_QMARK] = ACTIONS(3694), - [anon_sym_notnull] = ACTIONS(3685), - [anon_sym_unmanaged] = ACTIONS(3685), - [anon_sym_BANG] = ACTIONS(3689), - [anon_sym_PLUS_PLUS] = ACTIONS(3697), - [anon_sym_DASH_DASH] = ACTIONS(3697), - [anon_sym_PLUS] = ACTIONS(3689), - [anon_sym_DASH] = ACTIONS(3689), - [anon_sym_STAR] = ACTIONS(3694), - [anon_sym_SLASH] = ACTIONS(3689), - [anon_sym_PERCENT] = ACTIONS(3689), - [anon_sym_CARET] = ACTIONS(3689), - [anon_sym_PIPE] = ACTIONS(3689), - [anon_sym_AMP] = ACTIONS(3689), - [anon_sym_LT_LT] = ACTIONS(3689), - [anon_sym_GT_GT] = ACTIONS(3689), - [anon_sym_GT_GT_GT] = ACTIONS(3689), - [anon_sym_EQ_EQ] = ACTIONS(3697), - [anon_sym_BANG_EQ] = ACTIONS(3697), - [anon_sym_GT_EQ] = ACTIONS(3697), - [anon_sym_LT_EQ] = ACTIONS(3697), - [anon_sym_DOT] = ACTIONS(3694), - [anon_sym_scoped] = ACTIONS(3685), - [anon_sym_var] = ACTIONS(3685), - [anon_sym_yield] = ACTIONS(3685), - [anon_sym_switch] = ACTIONS(3689), - [anon_sym_when] = ACTIONS(3685), - [anon_sym_DOT_DOT] = ACTIONS(3697), - [anon_sym_and] = ACTIONS(3689), - [anon_sym_or] = ACTIONS(3689), - [anon_sym_PLUS_EQ] = ACTIONS(3697), - [anon_sym_DASH_EQ] = ACTIONS(3697), - [anon_sym_STAR_EQ] = ACTIONS(3697), - [anon_sym_SLASH_EQ] = ACTIONS(3697), - [anon_sym_PERCENT_EQ] = ACTIONS(3697), - [anon_sym_AMP_EQ] = ACTIONS(3697), - [anon_sym_CARET_EQ] = ACTIONS(3697), - [anon_sym_PIPE_EQ] = ACTIONS(3697), - [anon_sym_LT_LT_EQ] = ACTIONS(3697), - [anon_sym_GT_GT_EQ] = ACTIONS(3697), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3697), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3697), - [anon_sym_AMP_AMP] = ACTIONS(3697), - [anon_sym_PIPE_PIPE] = ACTIONS(3697), - [anon_sym_QMARK_QMARK] = ACTIONS(3689), - [anon_sym_from] = ACTIONS(3685), - [anon_sym_into] = ACTIONS(3685), - [anon_sym_join] = ACTIONS(3685), - [anon_sym_on] = ACTIONS(3694), - [anon_sym_equals] = ACTIONS(3685), - [anon_sym_let] = ACTIONS(3685), - [anon_sym_orderby] = ACTIONS(3685), - [anon_sym_ascending] = ACTIONS(3685), - [anon_sym_descending] = ACTIONS(3685), - [anon_sym_group] = ACTIONS(3685), - [anon_sym_by] = ACTIONS(3685), - [anon_sym_select] = ACTIONS(3685), - [anon_sym_as] = ACTIONS(3689), - [anon_sym_is] = ACTIONS(3689), - [anon_sym_DASH_GT] = ACTIONS(3691), - [anon_sym_with] = ACTIONS(3689), + [sym__identifier_token] = ACTIONS(3691), + [anon_sym_alias] = ACTIONS(3691), + [anon_sym_global] = ACTIONS(3691), + [anon_sym_EQ] = ACTIONS(3696), + [anon_sym_LBRACK] = ACTIONS(3713), + [anon_sym_LPAREN] = ACTIONS(3713), + [anon_sym_file] = ACTIONS(3691), + [anon_sym_LT] = ACTIONS(3696), + [anon_sym_GT] = ACTIONS(3696), + [anon_sym_where] = ACTIONS(3691), + [anon_sym_QMARK] = ACTIONS(3716), + [anon_sym_notnull] = ACTIONS(3691), + [anon_sym_unmanaged] = ACTIONS(3691), + [anon_sym_BANG] = ACTIONS(3696), + [anon_sym_PLUS_PLUS] = ACTIONS(3711), + [anon_sym_DASH_DASH] = ACTIONS(3711), + [anon_sym_PLUS] = ACTIONS(3696), + [anon_sym_DASH] = ACTIONS(3696), + [anon_sym_STAR] = ACTIONS(3716), + [anon_sym_SLASH] = ACTIONS(3696), + [anon_sym_PERCENT] = ACTIONS(3696), + [anon_sym_CARET] = ACTIONS(3696), + [anon_sym_PIPE] = ACTIONS(3696), + [anon_sym_AMP] = ACTIONS(3696), + [anon_sym_LT_LT] = ACTIONS(3696), + [anon_sym_GT_GT] = ACTIONS(3696), + [anon_sym_GT_GT_GT] = ACTIONS(3696), + [anon_sym_EQ_EQ] = ACTIONS(3711), + [anon_sym_BANG_EQ] = ACTIONS(3711), + [anon_sym_GT_EQ] = ACTIONS(3711), + [anon_sym_LT_EQ] = ACTIONS(3711), + [anon_sym_DOT] = ACTIONS(3716), + [anon_sym_scoped] = ACTIONS(3691), + [anon_sym_var] = ACTIONS(3691), + [anon_sym_yield] = ACTIONS(3691), + [anon_sym_switch] = ACTIONS(3696), + [anon_sym_when] = ACTIONS(3691), + [anon_sym_DOT_DOT] = ACTIONS(3711), + [anon_sym_and] = ACTIONS(3696), + [anon_sym_or] = ACTIONS(3696), + [anon_sym_PLUS_EQ] = ACTIONS(3711), + [anon_sym_DASH_EQ] = ACTIONS(3711), + [anon_sym_STAR_EQ] = ACTIONS(3711), + [anon_sym_SLASH_EQ] = ACTIONS(3711), + [anon_sym_PERCENT_EQ] = ACTIONS(3711), + [anon_sym_AMP_EQ] = ACTIONS(3711), + [anon_sym_CARET_EQ] = ACTIONS(3711), + [anon_sym_PIPE_EQ] = ACTIONS(3711), + [anon_sym_LT_LT_EQ] = ACTIONS(3711), + [anon_sym_GT_GT_EQ] = ACTIONS(3711), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3711), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3711), + [anon_sym_AMP_AMP] = ACTIONS(3711), + [anon_sym_PIPE_PIPE] = ACTIONS(3711), + [anon_sym_QMARK_QMARK] = ACTIONS(3696), + [anon_sym_from] = ACTIONS(3691), + [anon_sym_into] = ACTIONS(3716), + [anon_sym_join] = ACTIONS(3691), + [anon_sym_on] = ACTIONS(3716), + [anon_sym_equals] = ACTIONS(3691), + [anon_sym_let] = ACTIONS(3691), + [anon_sym_orderby] = ACTIONS(3691), + [anon_sym_ascending] = ACTIONS(3691), + [anon_sym_descending] = ACTIONS(3691), + [anon_sym_group] = ACTIONS(3691), + [anon_sym_by] = ACTIONS(3691), + [anon_sym_select] = ACTIONS(3691), + [anon_sym_as] = ACTIONS(3696), + [anon_sym_is] = ACTIONS(3696), + [anon_sym_DASH_GT] = ACTIONS(3713), + [anon_sym_with] = ACTIONS(3696), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -418287,14 +417965,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2388] = { - [sym_parameter_list] = STATE(7311), - [sym_positional_pattern_clause] = STATE(2501), - [sym_property_pattern_clause] = STATE(2552), - [sym__variable_designation] = STATE(4779), - [sym_parenthesized_variable_designation] = STATE(4761), - [sym__lambda_parameters] = STATE(7536), - [sym_identifier] = STATE(4381), - [sym__reserved_identifier] = STATE(4323), [sym_preproc_region] = STATE(2388), [sym_preproc_endregion] = STATE(2388), [sym_preproc_line] = STATE(2388), @@ -418304,68 +417974,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2388), [sym_preproc_define] = STATE(2388), [sym_preproc_undef] = STATE(2388), - [sym__identifier_token] = ACTIONS(4050), - [anon_sym_alias] = ACTIONS(4052), - [anon_sym_global] = ACTIONS(4052), - [anon_sym_LBRACK] = ACTIONS(3893), - [anon_sym_COLON] = ACTIONS(3893), - [anon_sym_COMMA] = ACTIONS(3893), - [anon_sym_LPAREN] = ACTIONS(3893), - [anon_sym_LBRACE] = ACTIONS(4054), - [anon_sym_file] = ACTIONS(4052), - [anon_sym_LT] = ACTIONS(3895), - [anon_sym_GT] = ACTIONS(3895), - [anon_sym_where] = ACTIONS(4052), - [anon_sym_QMARK] = ACTIONS(3895), - [anon_sym_notnull] = ACTIONS(4052), - [anon_sym_unmanaged] = ACTIONS(4052), - [anon_sym_BANG] = ACTIONS(3895), - [anon_sym_PLUS_PLUS] = ACTIONS(3893), - [anon_sym_DASH_DASH] = ACTIONS(3893), - [anon_sym_PLUS] = ACTIONS(3895), - [anon_sym_DASH] = ACTIONS(3895), - [anon_sym_STAR] = ACTIONS(3893), - [anon_sym_SLASH] = ACTIONS(3895), - [anon_sym_PERCENT] = ACTIONS(3893), - [anon_sym_CARET] = ACTIONS(3893), - [anon_sym_PIPE] = ACTIONS(3895), - [anon_sym_AMP] = ACTIONS(3895), - [anon_sym_LT_LT] = ACTIONS(3893), - [anon_sym_GT_GT] = ACTIONS(3895), - [anon_sym_GT_GT_GT] = ACTIONS(3893), - [anon_sym_EQ_EQ] = ACTIONS(3893), - [anon_sym_BANG_EQ] = ACTIONS(3893), - [anon_sym_GT_EQ] = ACTIONS(3893), - [anon_sym_LT_EQ] = ACTIONS(3893), - [anon_sym_DOT] = ACTIONS(3895), - [anon_sym_scoped] = ACTIONS(4052), - [anon_sym_var] = ACTIONS(4052), - [anon_sym_yield] = ACTIONS(4052), - [anon_sym_switch] = ACTIONS(3895), - [anon_sym_when] = ACTIONS(4052), - [sym_discard] = ACTIONS(4056), - [anon_sym_DOT_DOT] = ACTIONS(3893), - [anon_sym_and] = ACTIONS(3883), - [anon_sym_or] = ACTIONS(3883), - [anon_sym_AMP_AMP] = ACTIONS(3893), - [anon_sym_PIPE_PIPE] = ACTIONS(3893), - [anon_sym_QMARK_QMARK] = ACTIONS(3893), - [anon_sym_from] = ACTIONS(4052), - [anon_sym_into] = ACTIONS(3895), - [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(3895), - [anon_sym_is] = ACTIONS(3895), - [anon_sym_DASH_GT] = ACTIONS(3893), - [anon_sym_with] = ACTIONS(3895), + [sym__identifier_token] = ACTIONS(4070), + [anon_sym_alias] = ACTIONS(4070), + [anon_sym_SEMI] = ACTIONS(4072), + [anon_sym_global] = ACTIONS(4070), + [anon_sym_LBRACK] = ACTIONS(4072), + [anon_sym_COLON] = ACTIONS(4072), + [anon_sym_COMMA] = ACTIONS(4072), + [anon_sym_RBRACK] = ACTIONS(4072), + [anon_sym_LPAREN] = ACTIONS(4072), + [anon_sym_RPAREN] = ACTIONS(4072), + [anon_sym_LBRACE] = ACTIONS(4072), + [anon_sym_RBRACE] = ACTIONS(4072), + [anon_sym_file] = ACTIONS(4070), + [anon_sym_LT] = ACTIONS(4070), + [anon_sym_GT] = ACTIONS(4070), + [anon_sym_in] = ACTIONS(4070), + [anon_sym_where] = ACTIONS(4070), + [anon_sym_QMARK] = ACTIONS(4070), + [anon_sym_notnull] = ACTIONS(4070), + [anon_sym_unmanaged] = ACTIONS(4070), + [anon_sym_BANG] = ACTIONS(4070), + [anon_sym_PLUS_PLUS] = ACTIONS(4072), + [anon_sym_DASH_DASH] = ACTIONS(4072), + [anon_sym_PLUS] = ACTIONS(4070), + [anon_sym_DASH] = ACTIONS(4070), + [anon_sym_STAR] = ACTIONS(4072), + [anon_sym_SLASH] = ACTIONS(4070), + [anon_sym_PERCENT] = ACTIONS(4072), + [anon_sym_CARET] = ACTIONS(4072), + [anon_sym_PIPE] = ACTIONS(4070), + [anon_sym_AMP] = ACTIONS(4070), + [anon_sym_LT_LT] = ACTIONS(4072), + [anon_sym_GT_GT] = ACTIONS(4070), + [anon_sym_GT_GT_GT] = ACTIONS(4072), + [anon_sym_EQ_EQ] = ACTIONS(4072), + [anon_sym_BANG_EQ] = ACTIONS(4072), + [anon_sym_GT_EQ] = ACTIONS(4072), + [anon_sym_LT_EQ] = ACTIONS(4072), + [anon_sym_DOT] = ACTIONS(4070), + [anon_sym_scoped] = ACTIONS(4070), + [anon_sym_EQ_GT] = ACTIONS(4072), + [anon_sym_var] = ACTIONS(4070), + [anon_sym_yield] = ACTIONS(4070), + [anon_sym_switch] = ACTIONS(4070), + [anon_sym_when] = ACTIONS(4070), + [sym_discard] = ACTIONS(4070), + [anon_sym_DOT_DOT] = ACTIONS(4072), + [anon_sym_and] = ACTIONS(4070), + [anon_sym_or] = ACTIONS(4070), + [anon_sym_AMP_AMP] = ACTIONS(4072), + [anon_sym_PIPE_PIPE] = ACTIONS(4072), + [anon_sym_QMARK_QMARK] = ACTIONS(4072), + [anon_sym_from] = ACTIONS(4070), + [anon_sym_into] = ACTIONS(4070), + [anon_sym_join] = ACTIONS(4070), + [anon_sym_on] = ACTIONS(4070), + [anon_sym_equals] = ACTIONS(4070), + [anon_sym_let] = ACTIONS(4070), + [anon_sym_orderby] = ACTIONS(4070), + [anon_sym_ascending] = ACTIONS(4070), + [anon_sym_descending] = ACTIONS(4070), + [anon_sym_group] = ACTIONS(4070), + [anon_sym_by] = ACTIONS(4070), + [anon_sym_select] = ACTIONS(4070), + [anon_sym_as] = ACTIONS(4070), + [anon_sym_is] = ACTIONS(4070), + [anon_sym_DASH_GT] = ACTIONS(4072), + [anon_sym_with] = ACTIONS(4070), + [aux_sym_preproc_if_token3] = ACTIONS(4072), + [aux_sym_preproc_else_token1] = ACTIONS(4072), + [aux_sym_preproc_elif_token1] = ACTIONS(4072), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -418376,7 +418055,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(3893), }, [2389] = { [sym_preproc_region] = STATE(2389), @@ -418388,77 +418066,77 @@ 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(3660), - [anon_sym_alias] = ACTIONS(3660), - [anon_sym_SEMI] = ACTIONS(3662), - [anon_sym_global] = ACTIONS(3660), - [anon_sym_LBRACK] = ACTIONS(3662), - [anon_sym_COLON] = ACTIONS(3662), - [anon_sym_COMMA] = ACTIONS(3662), - [anon_sym_RBRACK] = ACTIONS(3662), - [anon_sym_LPAREN] = ACTIONS(3662), - [anon_sym_RPAREN] = ACTIONS(3662), - [anon_sym_LBRACE] = ACTIONS(3662), - [anon_sym_RBRACE] = ACTIONS(3662), - [anon_sym_file] = ACTIONS(3660), - [anon_sym_LT] = ACTIONS(3660), - [anon_sym_GT] = ACTIONS(3660), - [anon_sym_in] = ACTIONS(3660), - [anon_sym_where] = ACTIONS(3660), - [anon_sym_QMARK] = ACTIONS(3660), - [anon_sym_notnull] = ACTIONS(3660), - [anon_sym_unmanaged] = ACTIONS(3660), - [anon_sym_BANG] = ACTIONS(3660), - [anon_sym_PLUS_PLUS] = ACTIONS(3662), - [anon_sym_DASH_DASH] = ACTIONS(3662), - [anon_sym_PLUS] = ACTIONS(3660), - [anon_sym_DASH] = ACTIONS(3660), - [anon_sym_STAR] = ACTIONS(3662), - [anon_sym_SLASH] = ACTIONS(3660), - [anon_sym_PERCENT] = ACTIONS(3662), - [anon_sym_CARET] = ACTIONS(3662), - [anon_sym_PIPE] = ACTIONS(3660), - [anon_sym_AMP] = ACTIONS(3660), - [anon_sym_LT_LT] = ACTIONS(3662), - [anon_sym_GT_GT] = ACTIONS(3660), - [anon_sym_GT_GT_GT] = ACTIONS(3662), - [anon_sym_EQ_EQ] = ACTIONS(3662), - [anon_sym_BANG_EQ] = ACTIONS(3662), - [anon_sym_GT_EQ] = ACTIONS(3662), - [anon_sym_LT_EQ] = ACTIONS(3662), - [anon_sym_DOT] = ACTIONS(3660), - [anon_sym_scoped] = ACTIONS(3660), - [anon_sym_EQ_GT] = ACTIONS(3662), - [anon_sym_var] = ACTIONS(3660), - [anon_sym_yield] = ACTIONS(3660), - [anon_sym_switch] = ACTIONS(3660), - [anon_sym_when] = ACTIONS(3660), - [sym_discard] = ACTIONS(3660), - [anon_sym_DOT_DOT] = ACTIONS(3662), - [anon_sym_and] = ACTIONS(3660), - [anon_sym_or] = ACTIONS(3660), - [anon_sym_AMP_AMP] = ACTIONS(3662), - [anon_sym_PIPE_PIPE] = ACTIONS(3662), - [anon_sym_QMARK_QMARK] = ACTIONS(3662), - [anon_sym_from] = ACTIONS(3660), - [anon_sym_into] = ACTIONS(3660), - [anon_sym_join] = ACTIONS(3660), - [anon_sym_on] = ACTIONS(3660), - [anon_sym_equals] = ACTIONS(3660), - [anon_sym_let] = ACTIONS(3660), - [anon_sym_orderby] = ACTIONS(3660), - [anon_sym_ascending] = ACTIONS(3660), - [anon_sym_descending] = ACTIONS(3660), - [anon_sym_group] = ACTIONS(3660), - [anon_sym_by] = ACTIONS(3660), - [anon_sym_select] = ACTIONS(3660), - [anon_sym_as] = ACTIONS(3660), - [anon_sym_is] = ACTIONS(3660), - [anon_sym_DASH_GT] = ACTIONS(3662), - [anon_sym_with] = ACTIONS(3660), - [aux_sym_preproc_if_token3] = ACTIONS(3662), - [aux_sym_preproc_else_token1] = ACTIONS(3662), - [aux_sym_preproc_elif_token1] = ACTIONS(3662), + [sym__identifier_token] = ACTIONS(4062), + [anon_sym_alias] = ACTIONS(4062), + [anon_sym_SEMI] = ACTIONS(4064), + [anon_sym_global] = ACTIONS(4062), + [anon_sym_LBRACK] = ACTIONS(4064), + [anon_sym_COLON] = ACTIONS(4064), + [anon_sym_COMMA] = ACTIONS(4064), + [anon_sym_RBRACK] = ACTIONS(4064), + [anon_sym_LPAREN] = ACTIONS(4064), + [anon_sym_RPAREN] = ACTIONS(4064), + [anon_sym_LBRACE] = ACTIONS(4064), + [anon_sym_RBRACE] = ACTIONS(4064), + [anon_sym_file] = ACTIONS(4062), + [anon_sym_LT] = ACTIONS(4062), + [anon_sym_GT] = ACTIONS(4062), + [anon_sym_in] = ACTIONS(4062), + [anon_sym_where] = ACTIONS(4062), + [anon_sym_QMARK] = ACTIONS(4062), + [anon_sym_notnull] = ACTIONS(4062), + [anon_sym_unmanaged] = ACTIONS(4062), + [anon_sym_BANG] = ACTIONS(4062), + [anon_sym_PLUS_PLUS] = ACTIONS(4064), + [anon_sym_DASH_DASH] = ACTIONS(4064), + [anon_sym_PLUS] = ACTIONS(4062), + [anon_sym_DASH] = ACTIONS(4062), + [anon_sym_STAR] = ACTIONS(4064), + [anon_sym_SLASH] = ACTIONS(4062), + [anon_sym_PERCENT] = ACTIONS(4064), + [anon_sym_CARET] = ACTIONS(4064), + [anon_sym_PIPE] = ACTIONS(4062), + [anon_sym_AMP] = ACTIONS(4062), + [anon_sym_LT_LT] = ACTIONS(4064), + [anon_sym_GT_GT] = ACTIONS(4062), + [anon_sym_GT_GT_GT] = ACTIONS(4064), + [anon_sym_EQ_EQ] = ACTIONS(4064), + [anon_sym_BANG_EQ] = ACTIONS(4064), + [anon_sym_GT_EQ] = ACTIONS(4064), + [anon_sym_LT_EQ] = ACTIONS(4064), + [anon_sym_DOT] = ACTIONS(4062), + [anon_sym_scoped] = ACTIONS(4062), + [anon_sym_EQ_GT] = ACTIONS(4066), + [anon_sym_var] = ACTIONS(4062), + [anon_sym_yield] = ACTIONS(4062), + [anon_sym_switch] = ACTIONS(4062), + [anon_sym_when] = ACTIONS(4062), + [sym_discard] = ACTIONS(4062), + [anon_sym_DOT_DOT] = ACTIONS(4064), + [anon_sym_and] = ACTIONS(4062), + [anon_sym_or] = ACTIONS(4062), + [anon_sym_AMP_AMP] = ACTIONS(4064), + [anon_sym_PIPE_PIPE] = ACTIONS(4064), + [anon_sym_QMARK_QMARK] = ACTIONS(4064), + [anon_sym_from] = ACTIONS(4062), + [anon_sym_into] = ACTIONS(4062), + [anon_sym_join] = ACTIONS(4062), + [anon_sym_on] = ACTIONS(4062), + [anon_sym_equals] = ACTIONS(4062), + [anon_sym_let] = ACTIONS(4062), + [anon_sym_orderby] = ACTIONS(4062), + [anon_sym_ascending] = ACTIONS(4062), + [anon_sym_descending] = ACTIONS(4062), + [anon_sym_group] = ACTIONS(4062), + [anon_sym_by] = ACTIONS(4062), + [anon_sym_select] = ACTIONS(4062), + [anon_sym_as] = ACTIONS(4062), + [anon_sym_is] = ACTIONS(4062), + [anon_sym_DASH_GT] = ACTIONS(4064), + [anon_sym_with] = ACTIONS(4062), + [aux_sym_preproc_if_token3] = ACTIONS(4064), + [aux_sym_preproc_else_token1] = ACTIONS(4064), + [aux_sym_preproc_elif_token1] = ACTIONS(4064), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -418471,25 +418149,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2390] = { - [sym_modifier] = STATE(3130), - [sym__name] = STATE(4390), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(4096), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(4109), - [sym_type] = STATE(6067), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_identifier] = STATE(4087), - [sym__reserved_identifier] = STATE(3691), [sym_preproc_region] = STATE(2390), [sym_preproc_endregion] = STATE(2390), [sym_preproc_line] = STATE(2390), @@ -418499,58 +418158,77 @@ 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), - [aux_sym__class_declaration_initializer_repeat2] = STATE(3100), - [sym__identifier_token] = ACTIONS(2967), - [anon_sym_extern] = ACTIONS(65), - [anon_sym_alias] = ACTIONS(2971), - [anon_sym_global] = ACTIONS(2971), - [anon_sym_unsafe] = ACTIONS(65), - [anon_sym_static] = ACTIONS(65), - [anon_sym_LPAREN] = ACTIONS(2979), - [anon_sym_class] = ACTIONS(3933), - [anon_sym_ref] = ACTIONS(3935), - [anon_sym_struct] = ACTIONS(3937), - [anon_sym_enum] = ACTIONS(4086), - [anon_sym_interface] = ACTIONS(3941), - [anon_sym_delegate] = ACTIONS(3943), - [anon_sym_record] = ACTIONS(3945), - [anon_sym_abstract] = ACTIONS(65), - [anon_sym_async] = ACTIONS(65), - [anon_sym_const] = ACTIONS(65), - [anon_sym_file] = ACTIONS(4088), - [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(2971), - [anon_sym_notnull] = ACTIONS(2971), - [anon_sym_unmanaged] = ACTIONS(2971), - [anon_sym_scoped] = ACTIONS(2997), - [anon_sym_var] = ACTIONS(2999), - [sym_predefined_type] = ACTIONS(3001), - [anon_sym_yield] = ACTIONS(2971), - [anon_sym_when] = ACTIONS(2971), - [anon_sym_from] = ACTIONS(2971), - [anon_sym_into] = ACTIONS(2971), - [anon_sym_join] = ACTIONS(2971), - [anon_sym_on] = ACTIONS(2971), - [anon_sym_equals] = ACTIONS(2971), - [anon_sym_let] = ACTIONS(2971), - [anon_sym_orderby] = ACTIONS(2971), - [anon_sym_ascending] = ACTIONS(2971), - [anon_sym_descending] = ACTIONS(2971), - [anon_sym_group] = ACTIONS(2971), - [anon_sym_by] = ACTIONS(2971), - [anon_sym_select] = ACTIONS(2971), + [sym__identifier_token] = ACTIONS(3669), + [anon_sym_alias] = ACTIONS(3669), + [anon_sym_SEMI] = ACTIONS(3678), + [anon_sym_global] = ACTIONS(3669), + [anon_sym_LBRACK] = ACTIONS(3678), + [anon_sym_COLON] = ACTIONS(3678), + [anon_sym_COMMA] = ACTIONS(3678), + [anon_sym_RBRACK] = ACTIONS(3678), + [anon_sym_LPAREN] = ACTIONS(3678), + [anon_sym_RPAREN] = ACTIONS(3678), + [anon_sym_LBRACE] = ACTIONS(3678), + [anon_sym_RBRACE] = ACTIONS(3678), + [anon_sym_file] = ACTIONS(3669), + [anon_sym_LT] = ACTIONS(3669), + [anon_sym_GT] = ACTIONS(3669), + [anon_sym_in] = ACTIONS(3669), + [anon_sym_where] = ACTIONS(3669), + [anon_sym_QMARK] = ACTIONS(3669), + [anon_sym_notnull] = ACTIONS(3669), + [anon_sym_unmanaged] = ACTIONS(3669), + [anon_sym_BANG] = ACTIONS(3669), + [anon_sym_PLUS_PLUS] = ACTIONS(3678), + [anon_sym_DASH_DASH] = ACTIONS(3678), + [anon_sym_PLUS] = ACTIONS(3669), + [anon_sym_DASH] = ACTIONS(3669), + [anon_sym_STAR] = ACTIONS(3678), + [anon_sym_SLASH] = ACTIONS(3669), + [anon_sym_PERCENT] = ACTIONS(3678), + [anon_sym_CARET] = ACTIONS(3678), + [anon_sym_PIPE] = ACTIONS(3669), + [anon_sym_AMP] = ACTIONS(3669), + [anon_sym_LT_LT] = ACTIONS(3678), + [anon_sym_GT_GT] = ACTIONS(3669), + [anon_sym_GT_GT_GT] = ACTIONS(3678), + [anon_sym_EQ_EQ] = ACTIONS(3678), + [anon_sym_BANG_EQ] = ACTIONS(3678), + [anon_sym_GT_EQ] = ACTIONS(3678), + [anon_sym_LT_EQ] = ACTIONS(3678), + [anon_sym_DOT] = ACTIONS(3669), + [anon_sym_scoped] = ACTIONS(3669), + [anon_sym_EQ_GT] = ACTIONS(3678), + [anon_sym_var] = ACTIONS(3669), + [anon_sym_yield] = ACTIONS(3669), + [anon_sym_switch] = ACTIONS(3669), + [anon_sym_when] = ACTIONS(3669), + [sym_discard] = ACTIONS(3669), + [anon_sym_DOT_DOT] = ACTIONS(3678), + [anon_sym_and] = ACTIONS(3669), + [anon_sym_or] = ACTIONS(3669), + [anon_sym_AMP_AMP] = ACTIONS(3678), + [anon_sym_PIPE_PIPE] = ACTIONS(3678), + [anon_sym_QMARK_QMARK] = ACTIONS(3678), + [anon_sym_from] = ACTIONS(3669), + [anon_sym_into] = ACTIONS(3669), + [anon_sym_join] = ACTIONS(3669), + [anon_sym_on] = ACTIONS(3669), + [anon_sym_equals] = ACTIONS(3669), + [anon_sym_let] = ACTIONS(3669), + [anon_sym_orderby] = ACTIONS(3669), + [anon_sym_ascending] = ACTIONS(3669), + [anon_sym_descending] = ACTIONS(3669), + [anon_sym_group] = ACTIONS(3669), + [anon_sym_by] = ACTIONS(3669), + [anon_sym_select] = ACTIONS(3669), + [anon_sym_as] = ACTIONS(3669), + [anon_sym_is] = ACTIONS(3669), + [anon_sym_DASH_GT] = ACTIONS(3678), + [anon_sym_with] = ACTIONS(3669), + [aux_sym_preproc_if_token3] = ACTIONS(3678), + [aux_sym_preproc_else_token1] = ACTIONS(3678), + [aux_sym_preproc_elif_token1] = ACTIONS(3678), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -418563,14 +418241,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2391] = { - [sym_parameter_list] = STATE(7311), - [sym_positional_pattern_clause] = STATE(2501), - [sym_property_pattern_clause] = STATE(2552), - [sym__variable_designation] = STATE(4779), - [sym_parenthesized_variable_designation] = STATE(4761), - [sym__lambda_parameters] = STATE(7536), - [sym_identifier] = STATE(4381), - [sym__reserved_identifier] = STATE(4323), [sym_preproc_region] = STATE(2391), [sym_preproc_endregion] = STATE(2391), [sym_preproc_line] = STATE(2391), @@ -418580,89 +418250,89 @@ 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(4050), - [anon_sym_alias] = ACTIONS(4052), - [anon_sym_global] = ACTIONS(4052), - [anon_sym_LBRACK] = ACTIONS(3879), - [anon_sym_COLON] = ACTIONS(3879), - [anon_sym_COMMA] = ACTIONS(3879), - [anon_sym_LPAREN] = ACTIONS(3879), - [anon_sym_LBRACE] = ACTIONS(4054), - [anon_sym_file] = ACTIONS(4052), - [anon_sym_LT] = ACTIONS(3883), - [anon_sym_GT] = ACTIONS(3883), - [anon_sym_where] = ACTIONS(4052), - [anon_sym_QMARK] = ACTIONS(3883), - [anon_sym_notnull] = ACTIONS(4052), - [anon_sym_unmanaged] = ACTIONS(4052), - [anon_sym_BANG] = ACTIONS(3883), - [anon_sym_PLUS_PLUS] = ACTIONS(3879), - [anon_sym_DASH_DASH] = ACTIONS(3879), - [anon_sym_PLUS] = ACTIONS(3883), - [anon_sym_DASH] = ACTIONS(3883), - [anon_sym_STAR] = ACTIONS(3879), - [anon_sym_SLASH] = ACTIONS(3883), - [anon_sym_PERCENT] = ACTIONS(3879), - [anon_sym_CARET] = ACTIONS(3879), - [anon_sym_PIPE] = ACTIONS(3883), - [anon_sym_AMP] = ACTIONS(3883), - [anon_sym_LT_LT] = ACTIONS(3879), - [anon_sym_GT_GT] = ACTIONS(3883), - [anon_sym_GT_GT_GT] = ACTIONS(3879), - [anon_sym_EQ_EQ] = ACTIONS(3879), - [anon_sym_BANG_EQ] = ACTIONS(3879), - [anon_sym_GT_EQ] = ACTIONS(3879), - [anon_sym_LT_EQ] = ACTIONS(3879), - [anon_sym_DOT] = ACTIONS(3883), - [anon_sym_scoped] = ACTIONS(4052), - [anon_sym_var] = ACTIONS(4052), - [anon_sym_yield] = ACTIONS(4052), - [anon_sym_switch] = ACTIONS(3883), - [anon_sym_when] = ACTIONS(4052), - [sym_discard] = ACTIONS(4056), - [anon_sym_DOT_DOT] = ACTIONS(3879), - [anon_sym_and] = ACTIONS(3883), - [anon_sym_or] = ACTIONS(3883), - [anon_sym_AMP_AMP] = ACTIONS(3879), - [anon_sym_PIPE_PIPE] = ACTIONS(3879), - [anon_sym_QMARK_QMARK] = ACTIONS(3879), - [anon_sym_from] = ACTIONS(4052), - [anon_sym_into] = ACTIONS(3883), - [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(3883), - [anon_sym_is] = ACTIONS(3883), - [anon_sym_DASH_GT] = ACTIONS(3879), - [anon_sym_with] = ACTIONS(3883), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_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(3879), + [sym__identifier_token] = ACTIONS(3669), + [anon_sym_alias] = ACTIONS(3669), + [anon_sym_global] = ACTIONS(3669), + [anon_sym_EQ] = ACTIONS(3673), + [anon_sym_LBRACK] = ACTIONS(3675), + [anon_sym_LPAREN] = ACTIONS(3675), + [anon_sym_file] = ACTIONS(3669), + [anon_sym_LT] = ACTIONS(3673), + [anon_sym_GT] = ACTIONS(3673), + [anon_sym_where] = ACTIONS(3680), + [anon_sym_QMARK] = ACTIONS(3680), + [anon_sym_notnull] = ACTIONS(3669), + [anon_sym_unmanaged] = ACTIONS(3669), + [anon_sym_BANG] = ACTIONS(3673), + [anon_sym_PLUS_PLUS] = ACTIONS(3671), + [anon_sym_DASH_DASH] = ACTIONS(3671), + [anon_sym_PLUS] = ACTIONS(3673), + [anon_sym_DASH] = ACTIONS(3673), + [anon_sym_STAR] = ACTIONS(3680), + [anon_sym_SLASH] = ACTIONS(3673), + [anon_sym_PERCENT] = ACTIONS(3673), + [anon_sym_CARET] = ACTIONS(3673), + [anon_sym_PIPE] = ACTIONS(3673), + [anon_sym_AMP] = ACTIONS(3673), + [anon_sym_LT_LT] = ACTIONS(3673), + [anon_sym_GT_GT] = ACTIONS(3673), + [anon_sym_GT_GT_GT] = ACTIONS(3673), + [anon_sym_EQ_EQ] = ACTIONS(3671), + [anon_sym_BANG_EQ] = ACTIONS(3671), + [anon_sym_GT_EQ] = ACTIONS(3671), + [anon_sym_LT_EQ] = ACTIONS(3671), + [anon_sym_DOT] = ACTIONS(3680), + [anon_sym_scoped] = ACTIONS(3669), + [anon_sym_var] = ACTIONS(3669), + [anon_sym_yield] = ACTIONS(3669), + [anon_sym_switch] = ACTIONS(3673), + [anon_sym_when] = ACTIONS(3669), + [anon_sym_DOT_DOT] = ACTIONS(3671), + [anon_sym_and] = ACTIONS(3673), + [anon_sym_or] = ACTIONS(3673), + [anon_sym_PLUS_EQ] = ACTIONS(3671), + [anon_sym_DASH_EQ] = ACTIONS(3671), + [anon_sym_STAR_EQ] = ACTIONS(3671), + [anon_sym_SLASH_EQ] = ACTIONS(3671), + [anon_sym_PERCENT_EQ] = ACTIONS(3671), + [anon_sym_AMP_EQ] = ACTIONS(3671), + [anon_sym_CARET_EQ] = ACTIONS(3671), + [anon_sym_PIPE_EQ] = ACTIONS(3671), + [anon_sym_LT_LT_EQ] = ACTIONS(3671), + [anon_sym_GT_GT_EQ] = ACTIONS(3671), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3671), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3671), + [anon_sym_AMP_AMP] = ACTIONS(3671), + [anon_sym_PIPE_PIPE] = ACTIONS(3671), + [anon_sym_QMARK_QMARK] = ACTIONS(3673), + [anon_sym_from] = ACTIONS(3680), + [anon_sym_into] = ACTIONS(3669), + [anon_sym_join] = ACTIONS(3680), + [anon_sym_on] = ACTIONS(3669), + [anon_sym_equals] = ACTIONS(3669), + [anon_sym_let] = ACTIONS(3680), + [anon_sym_orderby] = ACTIONS(3680), + [anon_sym_ascending] = ACTIONS(3669), + [anon_sym_descending] = ACTIONS(3669), + [anon_sym_group] = ACTIONS(3680), + [anon_sym_by] = ACTIONS(3669), + [anon_sym_select] = ACTIONS(3680), + [anon_sym_as] = ACTIONS(3673), + [anon_sym_is] = ACTIONS(3673), + [anon_sym_DASH_GT] = ACTIONS(3675), + [anon_sym_with] = ACTIONS(3673), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), }, [2392] = { - [sym_parameter_list] = STATE(7311), - [sym_positional_pattern_clause] = STATE(2487), - [sym_property_pattern_clause] = STATE(2555), - [sym__variable_designation] = STATE(4779), - [sym_parenthesized_variable_designation] = STATE(4761), - [sym__lambda_parameters] = STATE(7536), - [sym_identifier] = STATE(4381), - [sym__reserved_identifier] = STATE(4323), [sym_preproc_region] = STATE(2392), [sym_preproc_endregion] = STATE(2392), [sym_preproc_line] = STATE(2392), @@ -418672,81 +418342,98 @@ 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(4050), - [anon_sym_alias] = ACTIONS(4052), - [anon_sym_global] = ACTIONS(4052), - [anon_sym_LBRACK] = ACTIONS(3879), - [anon_sym_COLON] = ACTIONS(3879), - [anon_sym_COMMA] = ACTIONS(3879), - [anon_sym_LPAREN] = ACTIONS(3879), - [anon_sym_LBRACE] = ACTIONS(4054), - [anon_sym_file] = ACTIONS(4052), - [anon_sym_LT] = ACTIONS(3883), - [anon_sym_GT] = ACTIONS(3883), - [anon_sym_where] = ACTIONS(4052), - [anon_sym_QMARK] = ACTIONS(3883), - [anon_sym_notnull] = ACTIONS(4052), - [anon_sym_unmanaged] = ACTIONS(4052), - [anon_sym_BANG] = ACTIONS(3883), - [anon_sym_PLUS_PLUS] = ACTIONS(3879), - [anon_sym_DASH_DASH] = ACTIONS(3879), - [anon_sym_PLUS] = ACTIONS(3883), - [anon_sym_DASH] = ACTIONS(3883), - [anon_sym_STAR] = ACTIONS(3879), - [anon_sym_SLASH] = ACTIONS(3883), - [anon_sym_PERCENT] = ACTIONS(3879), - [anon_sym_CARET] = ACTIONS(3879), - [anon_sym_PIPE] = ACTIONS(3883), - [anon_sym_AMP] = ACTIONS(3883), - [anon_sym_LT_LT] = ACTIONS(3879), - [anon_sym_GT_GT] = ACTIONS(3883), - [anon_sym_GT_GT_GT] = ACTIONS(3879), - [anon_sym_EQ_EQ] = ACTIONS(3879), - [anon_sym_BANG_EQ] = ACTIONS(3879), - [anon_sym_GT_EQ] = ACTIONS(3879), - [anon_sym_LT_EQ] = ACTIONS(3879), - [anon_sym_DOT] = ACTIONS(3883), - [anon_sym_scoped] = ACTIONS(4052), - [anon_sym_var] = ACTIONS(4052), - [anon_sym_yield] = ACTIONS(4052), - [anon_sym_switch] = ACTIONS(3883), - [anon_sym_when] = ACTIONS(4052), - [sym_discard] = ACTIONS(4056), - [anon_sym_DOT_DOT] = ACTIONS(3879), - [anon_sym_and] = ACTIONS(3883), - [anon_sym_or] = ACTIONS(3883), - [anon_sym_AMP_AMP] = ACTIONS(3879), - [anon_sym_PIPE_PIPE] = ACTIONS(3879), - [anon_sym_QMARK_QMARK] = ACTIONS(3879), - [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(3883), - [anon_sym_is] = ACTIONS(3883), - [anon_sym_DASH_GT] = ACTIONS(3879), - [anon_sym_with] = ACTIONS(3883), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_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(3879), + [sym__identifier_token] = ACTIONS(4074), + [anon_sym_alias] = ACTIONS(4074), + [anon_sym_SEMI] = ACTIONS(4076), + [anon_sym_global] = ACTIONS(4074), + [anon_sym_LBRACK] = ACTIONS(4076), + [anon_sym_COLON] = ACTIONS(4076), + [anon_sym_COMMA] = ACTIONS(4076), + [anon_sym_RBRACK] = ACTIONS(4076), + [anon_sym_LPAREN] = ACTIONS(4076), + [anon_sym_RPAREN] = ACTIONS(4076), + [anon_sym_LBRACE] = ACTIONS(4076), + [anon_sym_RBRACE] = ACTIONS(4076), + [anon_sym_file] = ACTIONS(4074), + [anon_sym_LT] = ACTIONS(4074), + [anon_sym_GT] = ACTIONS(4074), + [anon_sym_in] = ACTIONS(4074), + [anon_sym_where] = ACTIONS(4074), + [anon_sym_QMARK] = ACTIONS(4074), + [anon_sym_notnull] = ACTIONS(4074), + [anon_sym_unmanaged] = ACTIONS(4074), + [anon_sym_BANG] = ACTIONS(4074), + [anon_sym_PLUS_PLUS] = ACTIONS(4076), + [anon_sym_DASH_DASH] = ACTIONS(4076), + [anon_sym_PLUS] = ACTIONS(4074), + [anon_sym_DASH] = ACTIONS(4074), + [anon_sym_STAR] = ACTIONS(4076), + [anon_sym_SLASH] = ACTIONS(4074), + [anon_sym_PERCENT] = ACTIONS(4076), + [anon_sym_CARET] = ACTIONS(4076), + [anon_sym_PIPE] = ACTIONS(4074), + [anon_sym_AMP] = ACTIONS(4074), + [anon_sym_LT_LT] = ACTIONS(4076), + [anon_sym_GT_GT] = ACTIONS(4074), + [anon_sym_GT_GT_GT] = ACTIONS(4076), + [anon_sym_EQ_EQ] = ACTIONS(4076), + [anon_sym_BANG_EQ] = ACTIONS(4076), + [anon_sym_GT_EQ] = ACTIONS(4076), + [anon_sym_LT_EQ] = ACTIONS(4076), + [anon_sym_DOT] = ACTIONS(4074), + [anon_sym_scoped] = ACTIONS(4074), + [anon_sym_EQ_GT] = ACTIONS(4076), + [anon_sym_var] = ACTIONS(4074), + [anon_sym_yield] = ACTIONS(4074), + [anon_sym_switch] = ACTIONS(4074), + [anon_sym_when] = ACTIONS(4074), + [sym_discard] = ACTIONS(4074), + [anon_sym_DOT_DOT] = ACTIONS(4076), + [anon_sym_and] = ACTIONS(4074), + [anon_sym_or] = ACTIONS(4074), + [anon_sym_AMP_AMP] = ACTIONS(4076), + [anon_sym_PIPE_PIPE] = ACTIONS(4076), + [anon_sym_QMARK_QMARK] = ACTIONS(4076), + [anon_sym_from] = ACTIONS(4074), + [anon_sym_into] = ACTIONS(4074), + [anon_sym_join] = ACTIONS(4074), + [anon_sym_on] = ACTIONS(4074), + [anon_sym_equals] = ACTIONS(4074), + [anon_sym_let] = ACTIONS(4074), + [anon_sym_orderby] = ACTIONS(4074), + [anon_sym_ascending] = ACTIONS(4074), + [anon_sym_descending] = ACTIONS(4074), + [anon_sym_group] = ACTIONS(4074), + [anon_sym_by] = ACTIONS(4074), + [anon_sym_select] = ACTIONS(4074), + [anon_sym_as] = ACTIONS(4074), + [anon_sym_is] = ACTIONS(4074), + [anon_sym_DASH_GT] = ACTIONS(4076), + [anon_sym_with] = ACTIONS(4074), + [aux_sym_preproc_if_token3] = ACTIONS(4076), + [aux_sym_preproc_else_token1] = ACTIONS(4076), + [aux_sym_preproc_elif_token1] = ACTIONS(4076), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), }, [2393] = { + [sym__name] = STATE(5141), + [sym_alias_qualified_name] = STATE(3304), + [sym__simple_name] = STATE(3304), + [sym_qualified_name] = STATE(3304), + [sym_generic_name] = STATE(3241), + [sym_ref_type] = STATE(3327), + [sym__scoped_base_type] = STATE(3340), + [sym_identifier] = STATE(4542), + [sym__reserved_identifier] = STATE(3205), [sym_preproc_region] = STATE(2393), [sym_preproc_endregion] = STATE(2393), [sym_preproc_line] = STATE(2393), @@ -418756,77 +418443,68 @@ 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(4090), - [anon_sym_alias] = ACTIONS(4090), - [anon_sym_SEMI] = ACTIONS(4092), - [anon_sym_global] = ACTIONS(4090), - [anon_sym_LBRACK] = ACTIONS(4092), - [anon_sym_COLON] = ACTIONS(4092), - [anon_sym_COMMA] = ACTIONS(4092), - [anon_sym_RBRACK] = ACTIONS(4092), - [anon_sym_LPAREN] = ACTIONS(4092), - [anon_sym_RPAREN] = ACTIONS(4092), - [anon_sym_LBRACE] = ACTIONS(4092), - [anon_sym_RBRACE] = ACTIONS(4092), - [anon_sym_file] = ACTIONS(4090), - [anon_sym_LT] = ACTIONS(4090), - [anon_sym_GT] = ACTIONS(4090), - [anon_sym_in] = ACTIONS(4090), - [anon_sym_where] = ACTIONS(4090), - [anon_sym_QMARK] = ACTIONS(4090), - [anon_sym_notnull] = ACTIONS(4090), - [anon_sym_unmanaged] = ACTIONS(4090), - [anon_sym_BANG] = ACTIONS(4090), - [anon_sym_PLUS_PLUS] = ACTIONS(4092), - [anon_sym_DASH_DASH] = ACTIONS(4092), - [anon_sym_PLUS] = ACTIONS(4090), - [anon_sym_DASH] = ACTIONS(4090), - [anon_sym_STAR] = ACTIONS(4092), - [anon_sym_SLASH] = ACTIONS(4090), - [anon_sym_PERCENT] = ACTIONS(4092), - [anon_sym_CARET] = ACTIONS(4092), - [anon_sym_PIPE] = ACTIONS(4090), - [anon_sym_AMP] = ACTIONS(4090), - [anon_sym_LT_LT] = ACTIONS(4092), - [anon_sym_GT_GT] = ACTIONS(4090), - [anon_sym_GT_GT_GT] = ACTIONS(4092), - [anon_sym_EQ_EQ] = ACTIONS(4092), - [anon_sym_BANG_EQ] = ACTIONS(4092), - [anon_sym_GT_EQ] = ACTIONS(4092), - [anon_sym_LT_EQ] = ACTIONS(4092), - [anon_sym_DOT] = ACTIONS(4090), - [anon_sym_scoped] = ACTIONS(4090), - [anon_sym_EQ_GT] = ACTIONS(4094), - [anon_sym_var] = ACTIONS(4090), - [anon_sym_yield] = ACTIONS(4090), - [anon_sym_switch] = ACTIONS(4090), - [anon_sym_when] = ACTIONS(4090), - [sym_discard] = ACTIONS(4090), - [anon_sym_DOT_DOT] = ACTIONS(4092), - [anon_sym_and] = ACTIONS(4090), - [anon_sym_or] = ACTIONS(4090), - [anon_sym_AMP_AMP] = ACTIONS(4092), - [anon_sym_PIPE_PIPE] = ACTIONS(4092), - [anon_sym_QMARK_QMARK] = ACTIONS(4092), - [anon_sym_from] = ACTIONS(4090), - [anon_sym_into] = ACTIONS(4090), - [anon_sym_join] = ACTIONS(4090), - [anon_sym_on] = ACTIONS(4090), - [anon_sym_equals] = ACTIONS(4090), - [anon_sym_let] = ACTIONS(4090), - [anon_sym_orderby] = ACTIONS(4090), - [anon_sym_ascending] = ACTIONS(4090), - [anon_sym_descending] = ACTIONS(4090), - [anon_sym_group] = ACTIONS(4090), - [anon_sym_by] = ACTIONS(4090), - [anon_sym_select] = ACTIONS(4090), - [anon_sym_as] = ACTIONS(4090), - [anon_sym_is] = ACTIONS(4090), - [anon_sym_DASH_GT] = ACTIONS(4092), - [anon_sym_with] = ACTIONS(4090), - [aux_sym_preproc_if_token3] = ACTIONS(4092), - [aux_sym_preproc_else_token1] = ACTIONS(4092), - [aux_sym_preproc_elif_token1] = ACTIONS(4092), + [sym__identifier_token] = ACTIONS(3798), + [anon_sym_alias] = ACTIONS(3800), + [anon_sym_global] = ACTIONS(3800), + [anon_sym_LBRACK] = ACTIONS(3429), + [anon_sym_LPAREN] = ACTIONS(3429), + [anon_sym_ref] = ACTIONS(4078), + [anon_sym_LBRACE] = ACTIONS(3429), + [anon_sym_file] = ACTIONS(3800), + [anon_sym_LT] = ACTIONS(3431), + [anon_sym_GT] = ACTIONS(3431), + [anon_sym_in] = ACTIONS(3431), + [anon_sym_where] = ACTIONS(3800), + [anon_sym_QMARK] = ACTIONS(3431), + [anon_sym_notnull] = ACTIONS(3800), + [anon_sym_unmanaged] = ACTIONS(3800), + [anon_sym_BANG] = ACTIONS(3431), + [anon_sym_PLUS_PLUS] = ACTIONS(3429), + [anon_sym_DASH_DASH] = ACTIONS(3429), + [anon_sym_PLUS] = ACTIONS(3431), + [anon_sym_DASH] = ACTIONS(3431), + [anon_sym_STAR] = ACTIONS(3429), + [anon_sym_SLASH] = ACTIONS(3431), + [anon_sym_PERCENT] = ACTIONS(3429), + [anon_sym_CARET] = ACTIONS(3429), + [anon_sym_PIPE] = ACTIONS(3431), + [anon_sym_AMP] = ACTIONS(3431), + [anon_sym_LT_LT] = ACTIONS(3429), + [anon_sym_GT_GT] = ACTIONS(3431), + [anon_sym_GT_GT_GT] = ACTIONS(3429), + [anon_sym_EQ_EQ] = ACTIONS(3429), + [anon_sym_BANG_EQ] = ACTIONS(3429), + [anon_sym_GT_EQ] = ACTIONS(3429), + [anon_sym_LT_EQ] = ACTIONS(3429), + [anon_sym_DOT] = ACTIONS(3431), + [anon_sym_scoped] = ACTIONS(3800), + [anon_sym_COLON_COLON] = ACTIONS(3429), + [anon_sym_var] = ACTIONS(3800), + [anon_sym_yield] = ACTIONS(3800), + [anon_sym_switch] = ACTIONS(3431), + [anon_sym_when] = ACTIONS(3800), + [anon_sym_DOT_DOT] = ACTIONS(3429), + [anon_sym_and] = ACTIONS(3431), + [anon_sym_or] = ACTIONS(3431), + [anon_sym_AMP_AMP] = ACTIONS(3429), + [anon_sym_PIPE_PIPE] = ACTIONS(3429), + [anon_sym_QMARK_QMARK] = ACTIONS(3429), + [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(3431), + [anon_sym_is] = ACTIONS(3431), + [anon_sym_DASH_GT] = ACTIONS(3429), + [anon_sym_with] = ACTIONS(3431), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -418839,6 +418517,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2394] = { + [sym_parameter_list] = STATE(7531), + [sym_positional_pattern_clause] = STATE(2481), + [sym_property_pattern_clause] = STATE(2552), + [sym__variable_designation] = STATE(4764), + [sym_parenthesized_variable_designation] = STATE(4760), + [sym__lambda_parameters] = STATE(7378), + [sym_identifier] = STATE(4343), + [sym__reserved_identifier] = STATE(4328), [sym_preproc_region] = STATE(2394), [sym_preproc_endregion] = STATE(2394), [sym_preproc_line] = STATE(2394), @@ -418848,77 +418534,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(4090), - [anon_sym_alias] = ACTIONS(4090), - [anon_sym_SEMI] = ACTIONS(4092), - [anon_sym_global] = ACTIONS(4090), - [anon_sym_LBRACK] = ACTIONS(4092), - [anon_sym_COLON] = ACTIONS(4092), - [anon_sym_COMMA] = ACTIONS(4092), - [anon_sym_RBRACK] = ACTIONS(4092), - [anon_sym_LPAREN] = ACTIONS(4092), - [anon_sym_RPAREN] = ACTIONS(4092), - [anon_sym_LBRACE] = ACTIONS(4092), - [anon_sym_RBRACE] = ACTIONS(4092), - [anon_sym_file] = ACTIONS(4090), - [anon_sym_LT] = ACTIONS(4090), - [anon_sym_GT] = ACTIONS(4090), - [anon_sym_in] = ACTIONS(4090), - [anon_sym_where] = ACTIONS(4090), - [anon_sym_QMARK] = ACTIONS(4090), - [anon_sym_notnull] = ACTIONS(4090), - [anon_sym_unmanaged] = ACTIONS(4090), - [anon_sym_BANG] = ACTIONS(4090), - [anon_sym_PLUS_PLUS] = ACTIONS(4092), - [anon_sym_DASH_DASH] = ACTIONS(4092), - [anon_sym_PLUS] = ACTIONS(4090), - [anon_sym_DASH] = ACTIONS(4090), - [anon_sym_STAR] = ACTIONS(4092), - [anon_sym_SLASH] = ACTIONS(4090), - [anon_sym_PERCENT] = ACTIONS(4092), - [anon_sym_CARET] = ACTIONS(4092), - [anon_sym_PIPE] = ACTIONS(4090), - [anon_sym_AMP] = ACTIONS(4090), - [anon_sym_LT_LT] = ACTIONS(4092), - [anon_sym_GT_GT] = ACTIONS(4090), - [anon_sym_GT_GT_GT] = ACTIONS(4092), - [anon_sym_EQ_EQ] = ACTIONS(4092), - [anon_sym_BANG_EQ] = ACTIONS(4092), - [anon_sym_GT_EQ] = ACTIONS(4092), - [anon_sym_LT_EQ] = ACTIONS(4092), - [anon_sym_DOT] = ACTIONS(4090), - [anon_sym_scoped] = ACTIONS(4090), - [anon_sym_EQ_GT] = ACTIONS(4094), - [anon_sym_var] = ACTIONS(4090), - [anon_sym_yield] = ACTIONS(4090), - [anon_sym_switch] = ACTIONS(4090), - [anon_sym_when] = ACTIONS(4090), - [sym_discard] = ACTIONS(4090), - [anon_sym_DOT_DOT] = ACTIONS(4092), - [anon_sym_and] = ACTIONS(4090), - [anon_sym_or] = ACTIONS(4090), - [anon_sym_AMP_AMP] = ACTIONS(4092), - [anon_sym_PIPE_PIPE] = ACTIONS(4092), - [anon_sym_QMARK_QMARK] = ACTIONS(4092), - [anon_sym_from] = ACTIONS(4090), - [anon_sym_into] = ACTIONS(4090), - [anon_sym_join] = ACTIONS(4090), - [anon_sym_on] = ACTIONS(4090), - [anon_sym_equals] = ACTIONS(4090), - [anon_sym_let] = ACTIONS(4090), - [anon_sym_orderby] = ACTIONS(4090), - [anon_sym_ascending] = ACTIONS(4090), - [anon_sym_descending] = ACTIONS(4090), - [anon_sym_group] = ACTIONS(4090), - [anon_sym_by] = ACTIONS(4090), - [anon_sym_select] = ACTIONS(4090), - [anon_sym_as] = ACTIONS(4090), - [anon_sym_is] = ACTIONS(4090), - [anon_sym_DASH_GT] = ACTIONS(4092), - [anon_sym_with] = ACTIONS(4090), - [aux_sym_preproc_if_token3] = ACTIONS(4092), - [aux_sym_preproc_else_token1] = ACTIONS(4092), - [aux_sym_preproc_elif_token1] = ACTIONS(4092), + [sym__identifier_token] = ACTIONS(4046), + [anon_sym_alias] = ACTIONS(4048), + [anon_sym_global] = ACTIONS(4048), + [anon_sym_LBRACK] = ACTIONS(3859), + [anon_sym_COLON] = ACTIONS(3859), + [anon_sym_COMMA] = ACTIONS(3859), + [anon_sym_LPAREN] = ACTIONS(3859), + [anon_sym_LBRACE] = ACTIONS(4050), + [anon_sym_file] = ACTIONS(4048), + [anon_sym_LT] = ACTIONS(3863), + [anon_sym_GT] = ACTIONS(3863), + [anon_sym_where] = ACTIONS(4048), + [anon_sym_QMARK] = ACTIONS(3863), + [anon_sym_notnull] = ACTIONS(4048), + [anon_sym_unmanaged] = ACTIONS(4048), + [anon_sym_BANG] = ACTIONS(3863), + [anon_sym_PLUS_PLUS] = ACTIONS(3859), + [anon_sym_DASH_DASH] = ACTIONS(3859), + [anon_sym_PLUS] = ACTIONS(3863), + [anon_sym_DASH] = ACTIONS(3863), + [anon_sym_STAR] = ACTIONS(3859), + [anon_sym_SLASH] = ACTIONS(3863), + [anon_sym_PERCENT] = ACTIONS(3859), + [anon_sym_CARET] = ACTIONS(3859), + [anon_sym_PIPE] = ACTIONS(3863), + [anon_sym_AMP] = ACTIONS(3863), + [anon_sym_LT_LT] = ACTIONS(3859), + [anon_sym_GT_GT] = ACTIONS(3863), + [anon_sym_GT_GT_GT] = ACTIONS(3859), + [anon_sym_EQ_EQ] = ACTIONS(3859), + [anon_sym_BANG_EQ] = ACTIONS(3859), + [anon_sym_GT_EQ] = ACTIONS(3859), + [anon_sym_LT_EQ] = ACTIONS(3859), + [anon_sym_DOT] = ACTIONS(3863), + [anon_sym_scoped] = ACTIONS(4048), + [anon_sym_var] = ACTIONS(4048), + [anon_sym_yield] = ACTIONS(4048), + [anon_sym_switch] = ACTIONS(3863), + [anon_sym_when] = ACTIONS(4048), + [sym_discard] = ACTIONS(4052), + [anon_sym_DOT_DOT] = ACTIONS(3859), + [anon_sym_and] = ACTIONS(3863), + [anon_sym_or] = ACTIONS(3863), + [anon_sym_AMP_AMP] = ACTIONS(3859), + [anon_sym_PIPE_PIPE] = ACTIONS(3859), + [anon_sym_QMARK_QMARK] = ACTIONS(3859), + [anon_sym_from] = ACTIONS(4048), + [anon_sym_into] = ACTIONS(3863), + [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(3863), + [anon_sym_is] = ACTIONS(3863), + [anon_sym_DASH_GT] = ACTIONS(3859), + [anon_sym_with] = ACTIONS(3863), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -418929,6 +418606,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(3859), }, [2395] = { [sym_preproc_region] = STATE(2395), @@ -418940,77 +418618,77 @@ 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(3699), - [anon_sym_alias] = ACTIONS(3699), - [anon_sym_global] = ACTIONS(3699), - [anon_sym_EQ] = ACTIONS(3704), - [anon_sym_LBRACK] = ACTIONS(3721), - [anon_sym_LPAREN] = ACTIONS(3721), - [anon_sym_file] = ACTIONS(3699), - [anon_sym_LT] = ACTIONS(3704), - [anon_sym_GT] = ACTIONS(3704), - [anon_sym_where] = ACTIONS(3699), - [anon_sym_QMARK] = ACTIONS(3724), - [anon_sym_notnull] = ACTIONS(3699), - [anon_sym_unmanaged] = ACTIONS(3699), - [anon_sym_BANG] = ACTIONS(3704), - [anon_sym_PLUS_PLUS] = ACTIONS(3719), - [anon_sym_DASH_DASH] = ACTIONS(3719), - [anon_sym_PLUS] = ACTIONS(3704), - [anon_sym_DASH] = ACTIONS(3704), - [anon_sym_STAR] = ACTIONS(3724), - [anon_sym_SLASH] = ACTIONS(3704), - [anon_sym_PERCENT] = ACTIONS(3704), - [anon_sym_CARET] = ACTIONS(3704), - [anon_sym_PIPE] = ACTIONS(3704), - [anon_sym_AMP] = ACTIONS(3704), - [anon_sym_LT_LT] = ACTIONS(3704), - [anon_sym_GT_GT] = ACTIONS(3704), - [anon_sym_GT_GT_GT] = ACTIONS(3704), - [anon_sym_EQ_EQ] = ACTIONS(3719), - [anon_sym_BANG_EQ] = ACTIONS(3719), - [anon_sym_GT_EQ] = ACTIONS(3719), - [anon_sym_LT_EQ] = ACTIONS(3719), - [anon_sym_DOT] = ACTIONS(3724), - [anon_sym_scoped] = ACTIONS(3699), - [anon_sym_var] = ACTIONS(3699), - [anon_sym_yield] = ACTIONS(3699), - [anon_sym_switch] = ACTIONS(3704), - [anon_sym_when] = ACTIONS(3699), - [anon_sym_DOT_DOT] = ACTIONS(3719), - [anon_sym_and] = ACTIONS(3704), - [anon_sym_or] = ACTIONS(3704), - [anon_sym_PLUS_EQ] = ACTIONS(3719), - [anon_sym_DASH_EQ] = ACTIONS(3719), - [anon_sym_STAR_EQ] = ACTIONS(3719), - [anon_sym_SLASH_EQ] = ACTIONS(3719), - [anon_sym_PERCENT_EQ] = ACTIONS(3719), - [anon_sym_AMP_EQ] = ACTIONS(3719), - [anon_sym_CARET_EQ] = ACTIONS(3719), - [anon_sym_PIPE_EQ] = ACTIONS(3719), - [anon_sym_LT_LT_EQ] = ACTIONS(3719), - [anon_sym_GT_GT_EQ] = ACTIONS(3719), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3719), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3719), - [anon_sym_AMP_AMP] = ACTIONS(3719), - [anon_sym_PIPE_PIPE] = ACTIONS(3719), - [anon_sym_QMARK_QMARK] = ACTIONS(3704), - [anon_sym_from] = ACTIONS(3699), - [anon_sym_into] = ACTIONS(3724), - [anon_sym_join] = ACTIONS(3699), - [anon_sym_on] = ACTIONS(3699), - [anon_sym_equals] = ACTIONS(3724), - [anon_sym_let] = ACTIONS(3699), - [anon_sym_orderby] = ACTIONS(3699), - [anon_sym_ascending] = ACTIONS(3699), - [anon_sym_descending] = ACTIONS(3699), - [anon_sym_group] = ACTIONS(3699), - [anon_sym_by] = ACTIONS(3699), - [anon_sym_select] = ACTIONS(3699), - [anon_sym_as] = ACTIONS(3704), - [anon_sym_is] = ACTIONS(3704), - [anon_sym_DASH_GT] = ACTIONS(3721), - [anon_sym_with] = ACTIONS(3704), + [sym__identifier_token] = ACTIONS(3642), + [anon_sym_alias] = ACTIONS(3642), + [anon_sym_SEMI] = ACTIONS(3644), + [anon_sym_global] = ACTIONS(3642), + [anon_sym_LBRACK] = ACTIONS(3644), + [anon_sym_COLON] = ACTIONS(3644), + [anon_sym_COMMA] = ACTIONS(3644), + [anon_sym_RBRACK] = ACTIONS(3644), + [anon_sym_LPAREN] = ACTIONS(3644), + [anon_sym_RPAREN] = ACTIONS(3644), + [anon_sym_LBRACE] = ACTIONS(3644), + [anon_sym_RBRACE] = ACTIONS(3644), + [anon_sym_file] = ACTIONS(3642), + [anon_sym_LT] = ACTIONS(3642), + [anon_sym_GT] = ACTIONS(3642), + [anon_sym_in] = ACTIONS(3642), + [anon_sym_where] = ACTIONS(3642), + [anon_sym_QMARK] = ACTIONS(3642), + [anon_sym_notnull] = ACTIONS(3642), + [anon_sym_unmanaged] = ACTIONS(3642), + [anon_sym_BANG] = ACTIONS(3642), + [anon_sym_PLUS_PLUS] = ACTIONS(3644), + [anon_sym_DASH_DASH] = ACTIONS(3644), + [anon_sym_PLUS] = ACTIONS(3642), + [anon_sym_DASH] = ACTIONS(3642), + [anon_sym_STAR] = ACTIONS(3644), + [anon_sym_SLASH] = ACTIONS(3642), + [anon_sym_PERCENT] = ACTIONS(3644), + [anon_sym_CARET] = ACTIONS(3644), + [anon_sym_PIPE] = ACTIONS(3642), + [anon_sym_AMP] = ACTIONS(3642), + [anon_sym_LT_LT] = ACTIONS(3644), + [anon_sym_GT_GT] = ACTIONS(3642), + [anon_sym_GT_GT_GT] = ACTIONS(3644), + [anon_sym_EQ_EQ] = ACTIONS(3644), + [anon_sym_BANG_EQ] = ACTIONS(3644), + [anon_sym_GT_EQ] = ACTIONS(3644), + [anon_sym_LT_EQ] = ACTIONS(3644), + [anon_sym_DOT] = ACTIONS(3642), + [anon_sym_scoped] = ACTIONS(3642), + [anon_sym_EQ_GT] = ACTIONS(3644), + [anon_sym_var] = ACTIONS(3642), + [anon_sym_yield] = ACTIONS(3642), + [anon_sym_switch] = ACTIONS(3642), + [anon_sym_when] = ACTIONS(3642), + [sym_discard] = ACTIONS(3642), + [anon_sym_DOT_DOT] = ACTIONS(3644), + [anon_sym_and] = ACTIONS(3642), + [anon_sym_or] = ACTIONS(3642), + [anon_sym_AMP_AMP] = ACTIONS(3644), + [anon_sym_PIPE_PIPE] = ACTIONS(3644), + [anon_sym_QMARK_QMARK] = ACTIONS(3644), + [anon_sym_from] = ACTIONS(3642), + [anon_sym_into] = ACTIONS(3642), + [anon_sym_join] = ACTIONS(3642), + [anon_sym_on] = ACTIONS(3642), + [anon_sym_equals] = ACTIONS(3642), + [anon_sym_let] = ACTIONS(3642), + [anon_sym_orderby] = ACTIONS(3642), + [anon_sym_ascending] = ACTIONS(3642), + [anon_sym_descending] = ACTIONS(3642), + [anon_sym_group] = ACTIONS(3642), + [anon_sym_by] = ACTIONS(3642), + [anon_sym_select] = ACTIONS(3642), + [anon_sym_as] = ACTIONS(3642), + [anon_sym_is] = ACTIONS(3642), + [anon_sym_DASH_GT] = ACTIONS(3644), + [anon_sym_with] = ACTIONS(3642), + [aux_sym_preproc_if_token3] = ACTIONS(3644), + [aux_sym_preproc_else_token1] = ACTIONS(3644), + [aux_sym_preproc_elif_token1] = ACTIONS(3644), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -419023,25 +418701,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2396] = { - [sym_modifier] = STATE(3130), - [sym__name] = STATE(4390), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(4096), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(4109), - [sym_type] = STATE(6067), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_identifier] = STATE(4087), - [sym__reserved_identifier] = STATE(3691), + [sym_parameter_list] = STATE(7531), + [sym_positional_pattern_clause] = STATE(2507), + [sym_property_pattern_clause] = STATE(2555), + [sym__variable_designation] = STATE(4764), + [sym_parenthesized_variable_designation] = STATE(4760), + [sym__lambda_parameters] = STATE(7378), + [sym_identifier] = STATE(4343), + [sym__reserved_identifier] = STATE(4328), [sym_preproc_region] = STATE(2396), [sym_preproc_endregion] = STATE(2396), [sym_preproc_line] = STATE(2396), @@ -419051,68 +418718,79 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2396), [sym_preproc_define] = STATE(2396), [sym_preproc_undef] = STATE(2396), - [aux_sym__class_declaration_initializer_repeat2] = STATE(3100), - [sym__identifier_token] = ACTIONS(2967), - [anon_sym_extern] = ACTIONS(65), - [anon_sym_alias] = ACTIONS(2971), - [anon_sym_global] = ACTIONS(2971), - [anon_sym_unsafe] = ACTIONS(65), - [anon_sym_static] = ACTIONS(65), - [anon_sym_LPAREN] = ACTIONS(2979), - [anon_sym_class] = ACTIONS(3933), - [anon_sym_ref] = ACTIONS(3935), - [anon_sym_struct] = ACTIONS(3937), - [anon_sym_enum] = ACTIONS(4096), - [anon_sym_interface] = ACTIONS(3941), - [anon_sym_delegate] = ACTIONS(3943), - [anon_sym_record] = ACTIONS(3945), - [anon_sym_abstract] = ACTIONS(65), - [anon_sym_async] = ACTIONS(65), - [anon_sym_const] = ACTIONS(65), - [anon_sym_file] = ACTIONS(4088), - [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(2971), - [anon_sym_notnull] = ACTIONS(2971), - [anon_sym_unmanaged] = ACTIONS(2971), - [anon_sym_scoped] = ACTIONS(2997), - [anon_sym_var] = ACTIONS(2999), - [sym_predefined_type] = ACTIONS(3001), - [anon_sym_yield] = ACTIONS(2971), - [anon_sym_when] = ACTIONS(2971), - [anon_sym_from] = ACTIONS(2971), - [anon_sym_into] = ACTIONS(2971), - [anon_sym_join] = ACTIONS(2971), - [anon_sym_on] = ACTIONS(2971), - [anon_sym_equals] = ACTIONS(2971), - [anon_sym_let] = ACTIONS(2971), - [anon_sym_orderby] = ACTIONS(2971), - [anon_sym_ascending] = ACTIONS(2971), - [anon_sym_descending] = ACTIONS(2971), - [anon_sym_group] = ACTIONS(2971), - [anon_sym_by] = ACTIONS(2971), - [anon_sym_select] = ACTIONS(2971), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_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(4046), + [anon_sym_alias] = ACTIONS(4048), + [anon_sym_global] = ACTIONS(4048), + [anon_sym_LBRACK] = ACTIONS(3859), + [anon_sym_COLON] = ACTIONS(3859), + [anon_sym_COMMA] = ACTIONS(3859), + [anon_sym_LPAREN] = ACTIONS(3859), + [anon_sym_LBRACE] = ACTIONS(4050), + [anon_sym_file] = ACTIONS(4048), + [anon_sym_LT] = ACTIONS(3863), + [anon_sym_GT] = ACTIONS(3863), + [anon_sym_where] = ACTIONS(4048), + [anon_sym_QMARK] = ACTIONS(3863), + [anon_sym_notnull] = ACTIONS(4048), + [anon_sym_unmanaged] = ACTIONS(4048), + [anon_sym_BANG] = ACTIONS(3863), + [anon_sym_PLUS_PLUS] = ACTIONS(3859), + [anon_sym_DASH_DASH] = ACTIONS(3859), + [anon_sym_PLUS] = ACTIONS(3863), + [anon_sym_DASH] = ACTIONS(3863), + [anon_sym_STAR] = ACTIONS(3859), + [anon_sym_SLASH] = ACTIONS(3863), + [anon_sym_PERCENT] = ACTIONS(3859), + [anon_sym_CARET] = ACTIONS(3859), + [anon_sym_PIPE] = ACTIONS(3863), + [anon_sym_AMP] = ACTIONS(3863), + [anon_sym_LT_LT] = ACTIONS(3859), + [anon_sym_GT_GT] = ACTIONS(3863), + [anon_sym_GT_GT_GT] = ACTIONS(3859), + [anon_sym_EQ_EQ] = ACTIONS(3859), + [anon_sym_BANG_EQ] = ACTIONS(3859), + [anon_sym_GT_EQ] = ACTIONS(3859), + [anon_sym_LT_EQ] = ACTIONS(3859), + [anon_sym_DOT] = ACTIONS(3863), + [anon_sym_scoped] = ACTIONS(4048), + [anon_sym_var] = ACTIONS(4048), + [anon_sym_yield] = ACTIONS(4048), + [anon_sym_switch] = ACTIONS(3863), + [anon_sym_when] = ACTIONS(4048), + [sym_discard] = ACTIONS(4052), + [anon_sym_DOT_DOT] = ACTIONS(3859), + [anon_sym_and] = ACTIONS(3867), + [anon_sym_or] = ACTIONS(3867), + [anon_sym_AMP_AMP] = ACTIONS(3859), + [anon_sym_PIPE_PIPE] = ACTIONS(3859), + [anon_sym_QMARK_QMARK] = ACTIONS(3859), + [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(3863), + [anon_sym_is] = ACTIONS(3863), + [anon_sym_DASH_GT] = ACTIONS(3859), + [anon_sym_with] = ACTIONS(3863), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_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(3859), }, [2397] = { [sym_preproc_region] = STATE(2397), @@ -419124,77 +418802,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2397), [sym_preproc_define] = STATE(2397), [sym_preproc_undef] = STATE(2397), - [sym__identifier_token] = ACTIONS(3699), - [anon_sym_alias] = ACTIONS(3699), - [anon_sym_global] = ACTIONS(3699), - [anon_sym_EQ] = ACTIONS(3704), - [anon_sym_LBRACK] = ACTIONS(3721), - [anon_sym_LPAREN] = ACTIONS(3721), - [anon_sym_file] = ACTIONS(3699), - [anon_sym_LT] = ACTIONS(3704), - [anon_sym_GT] = ACTIONS(3704), - [anon_sym_where] = ACTIONS(3699), - [anon_sym_QMARK] = ACTIONS(3724), - [anon_sym_notnull] = ACTIONS(3699), - [anon_sym_unmanaged] = ACTIONS(3699), - [anon_sym_BANG] = ACTIONS(3704), - [anon_sym_PLUS_PLUS] = ACTIONS(3719), - [anon_sym_DASH_DASH] = ACTIONS(3719), - [anon_sym_PLUS] = ACTIONS(3704), - [anon_sym_DASH] = ACTIONS(3704), - [anon_sym_STAR] = ACTIONS(3724), - [anon_sym_SLASH] = ACTIONS(3704), - [anon_sym_PERCENT] = ACTIONS(3704), - [anon_sym_CARET] = ACTIONS(3704), - [anon_sym_PIPE] = ACTIONS(3704), - [anon_sym_AMP] = ACTIONS(3704), - [anon_sym_LT_LT] = ACTIONS(3704), - [anon_sym_GT_GT] = ACTIONS(3704), - [anon_sym_GT_GT_GT] = ACTIONS(3704), - [anon_sym_EQ_EQ] = ACTIONS(3719), - [anon_sym_BANG_EQ] = ACTIONS(3719), - [anon_sym_GT_EQ] = ACTIONS(3719), - [anon_sym_LT_EQ] = ACTIONS(3719), - [anon_sym_DOT] = ACTIONS(3724), - [anon_sym_scoped] = ACTIONS(3699), - [anon_sym_var] = ACTIONS(3699), - [anon_sym_yield] = ACTIONS(3699), - [anon_sym_switch] = ACTIONS(3704), - [anon_sym_when] = ACTIONS(3699), - [anon_sym_DOT_DOT] = ACTIONS(3719), - [anon_sym_and] = ACTIONS(3704), - [anon_sym_or] = ACTIONS(3704), - [anon_sym_PLUS_EQ] = ACTIONS(3719), - [anon_sym_DASH_EQ] = ACTIONS(3719), - [anon_sym_STAR_EQ] = ACTIONS(3719), - [anon_sym_SLASH_EQ] = ACTIONS(3719), - [anon_sym_PERCENT_EQ] = ACTIONS(3719), - [anon_sym_AMP_EQ] = ACTIONS(3719), - [anon_sym_CARET_EQ] = ACTIONS(3719), - [anon_sym_PIPE_EQ] = ACTIONS(3719), - [anon_sym_LT_LT_EQ] = ACTIONS(3719), - [anon_sym_GT_GT_EQ] = ACTIONS(3719), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3719), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3719), - [anon_sym_AMP_AMP] = ACTIONS(3719), - [anon_sym_PIPE_PIPE] = ACTIONS(3719), - [anon_sym_QMARK_QMARK] = ACTIONS(3704), - [anon_sym_from] = ACTIONS(3699), - [anon_sym_into] = ACTIONS(3724), - [anon_sym_join] = ACTIONS(3699), - [anon_sym_on] = ACTIONS(3724), - [anon_sym_equals] = ACTIONS(3699), - [anon_sym_let] = ACTIONS(3699), - [anon_sym_orderby] = ACTIONS(3699), - [anon_sym_ascending] = ACTIONS(3699), - [anon_sym_descending] = ACTIONS(3699), - [anon_sym_group] = ACTIONS(3699), - [anon_sym_by] = ACTIONS(3699), - [anon_sym_select] = ACTIONS(3699), - [anon_sym_as] = ACTIONS(3704), - [anon_sym_is] = ACTIONS(3704), - [anon_sym_DASH_GT] = ACTIONS(3721), - [anon_sym_with] = ACTIONS(3704), + [sym__identifier_token] = ACTIONS(3909), + [anon_sym_alias] = ACTIONS(3909), + [anon_sym_SEMI] = ACTIONS(3911), + [anon_sym_global] = ACTIONS(3909), + [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(3911), + [anon_sym_RBRACE] = ACTIONS(3911), + [anon_sym_file] = ACTIONS(3909), + [anon_sym_LT] = ACTIONS(3909), + [anon_sym_GT] = ACTIONS(3909), + [anon_sym_in] = ACTIONS(3909), + [anon_sym_where] = ACTIONS(3909), + [anon_sym_QMARK] = ACTIONS(3909), + [anon_sym_notnull] = ACTIONS(3909), + [anon_sym_unmanaged] = ACTIONS(3909), + [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(3909), + [anon_sym_EQ_GT] = ACTIONS(3911), + [anon_sym_var] = ACTIONS(3909), + [anon_sym_yield] = ACTIONS(3909), + [anon_sym_switch] = ACTIONS(3909), + [anon_sym_when] = ACTIONS(3909), + [sym_discard] = ACTIONS(3909), + [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(3909), + [anon_sym_join] = ACTIONS(3909), + [anon_sym_on] = ACTIONS(3909), + [anon_sym_equals] = ACTIONS(3909), + [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(3909), + [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_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), @@ -419207,6 +418885,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2398] = { + [sym_parameter_list] = STATE(7531), + [sym_positional_pattern_clause] = STATE(2481), + [sym_property_pattern_clause] = STATE(2552), + [sym__variable_designation] = STATE(4764), + [sym_parenthesized_variable_designation] = STATE(4760), + [sym__lambda_parameters] = STATE(7378), + [sym_identifier] = STATE(4343), + [sym__reserved_identifier] = STATE(4328), [sym_preproc_region] = STATE(2398), [sym_preproc_endregion] = STATE(2398), [sym_preproc_line] = STATE(2398), @@ -419216,77 +418902,68 @@ 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(3685), - [anon_sym_alias] = ACTIONS(3685), - [anon_sym_global] = ACTIONS(3685), - [anon_sym_EQ] = ACTIONS(3689), - [anon_sym_LBRACK] = ACTIONS(3691), - [anon_sym_LPAREN] = ACTIONS(3691), - [anon_sym_file] = ACTIONS(3685), - [anon_sym_LT] = ACTIONS(3689), - [anon_sym_GT] = ACTIONS(3689), - [anon_sym_where] = ACTIONS(3685), - [anon_sym_QMARK] = ACTIONS(3694), - [anon_sym_notnull] = ACTIONS(3685), - [anon_sym_unmanaged] = ACTIONS(3685), - [anon_sym_BANG] = ACTIONS(3689), - [anon_sym_PLUS_PLUS] = ACTIONS(3697), - [anon_sym_DASH_DASH] = ACTIONS(3697), - [anon_sym_PLUS] = ACTIONS(3689), - [anon_sym_DASH] = ACTIONS(3689), - [anon_sym_STAR] = ACTIONS(3694), - [anon_sym_SLASH] = ACTIONS(3689), - [anon_sym_PERCENT] = ACTIONS(3689), - [anon_sym_CARET] = ACTIONS(3689), - [anon_sym_PIPE] = ACTIONS(3689), - [anon_sym_AMP] = ACTIONS(3689), - [anon_sym_LT_LT] = ACTIONS(3689), - [anon_sym_GT_GT] = ACTIONS(3689), - [anon_sym_GT_GT_GT] = ACTIONS(3689), - [anon_sym_EQ_EQ] = ACTIONS(3697), - [anon_sym_BANG_EQ] = ACTIONS(3697), - [anon_sym_GT_EQ] = ACTIONS(3697), - [anon_sym_LT_EQ] = ACTIONS(3697), - [anon_sym_DOT] = ACTIONS(3694), - [anon_sym_scoped] = ACTIONS(3685), - [anon_sym_var] = ACTIONS(3685), - [anon_sym_yield] = ACTIONS(3685), - [anon_sym_switch] = ACTIONS(3689), - [anon_sym_when] = ACTIONS(3685), - [anon_sym_DOT_DOT] = ACTIONS(3697), - [anon_sym_and] = ACTIONS(3689), - [anon_sym_or] = ACTIONS(3689), - [anon_sym_PLUS_EQ] = ACTIONS(3697), - [anon_sym_DASH_EQ] = ACTIONS(3697), - [anon_sym_STAR_EQ] = ACTIONS(3697), - [anon_sym_SLASH_EQ] = ACTIONS(3697), - [anon_sym_PERCENT_EQ] = ACTIONS(3697), - [anon_sym_AMP_EQ] = ACTIONS(3697), - [anon_sym_CARET_EQ] = ACTIONS(3697), - [anon_sym_PIPE_EQ] = ACTIONS(3697), - [anon_sym_LT_LT_EQ] = ACTIONS(3697), - [anon_sym_GT_GT_EQ] = ACTIONS(3697), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3697), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3697), - [anon_sym_AMP_AMP] = ACTIONS(3697), - [anon_sym_PIPE_PIPE] = ACTIONS(3697), - [anon_sym_QMARK_QMARK] = ACTIONS(3689), - [anon_sym_from] = ACTIONS(3685), - [anon_sym_into] = ACTIONS(3694), - [anon_sym_join] = ACTIONS(3685), - [anon_sym_on] = ACTIONS(3685), - [anon_sym_equals] = ACTIONS(3685), - [anon_sym_let] = ACTIONS(3685), - [anon_sym_orderby] = ACTIONS(3685), - [anon_sym_ascending] = ACTIONS(3685), - [anon_sym_descending] = ACTIONS(3685), - [anon_sym_group] = ACTIONS(3685), - [anon_sym_by] = ACTIONS(3694), - [anon_sym_select] = ACTIONS(3685), - [anon_sym_as] = ACTIONS(3689), - [anon_sym_is] = ACTIONS(3689), - [anon_sym_DASH_GT] = ACTIONS(3691), - [anon_sym_with] = ACTIONS(3689), + [sym__identifier_token] = ACTIONS(4046), + [anon_sym_alias] = ACTIONS(4048), + [anon_sym_global] = ACTIONS(4048), + [anon_sym_LBRACK] = ACTIONS(3869), + [anon_sym_COLON] = ACTIONS(3869), + [anon_sym_COMMA] = ACTIONS(3869), + [anon_sym_LPAREN] = ACTIONS(3869), + [anon_sym_LBRACE] = ACTIONS(4050), + [anon_sym_file] = ACTIONS(4048), + [anon_sym_LT] = ACTIONS(3867), + [anon_sym_GT] = ACTIONS(3867), + [anon_sym_where] = ACTIONS(4048), + [anon_sym_QMARK] = ACTIONS(3867), + [anon_sym_notnull] = ACTIONS(4048), + [anon_sym_unmanaged] = ACTIONS(4048), + [anon_sym_BANG] = ACTIONS(3867), + [anon_sym_PLUS_PLUS] = ACTIONS(3869), + [anon_sym_DASH_DASH] = ACTIONS(3869), + [anon_sym_PLUS] = ACTIONS(3867), + [anon_sym_DASH] = ACTIONS(3867), + [anon_sym_STAR] = ACTIONS(3869), + [anon_sym_SLASH] = ACTIONS(3867), + [anon_sym_PERCENT] = ACTIONS(3869), + [anon_sym_CARET] = ACTIONS(3869), + [anon_sym_PIPE] = ACTIONS(3867), + [anon_sym_AMP] = ACTIONS(3867), + [anon_sym_LT_LT] = ACTIONS(3869), + [anon_sym_GT_GT] = ACTIONS(3867), + [anon_sym_GT_GT_GT] = ACTIONS(3869), + [anon_sym_EQ_EQ] = ACTIONS(3869), + [anon_sym_BANG_EQ] = ACTIONS(3869), + [anon_sym_GT_EQ] = ACTIONS(3869), + [anon_sym_LT_EQ] = ACTIONS(3869), + [anon_sym_DOT] = ACTIONS(3867), + [anon_sym_scoped] = ACTIONS(4048), + [anon_sym_var] = ACTIONS(4048), + [anon_sym_yield] = ACTIONS(4048), + [anon_sym_switch] = ACTIONS(3867), + [anon_sym_when] = ACTIONS(4048), + [sym_discard] = ACTIONS(4052), + [anon_sym_DOT_DOT] = ACTIONS(3869), + [anon_sym_and] = ACTIONS(3867), + [anon_sym_or] = ACTIONS(3867), + [anon_sym_AMP_AMP] = ACTIONS(3869), + [anon_sym_PIPE_PIPE] = ACTIONS(3869), + [anon_sym_QMARK_QMARK] = ACTIONS(3869), + [anon_sym_from] = ACTIONS(4048), + [anon_sym_into] = ACTIONS(3867), + [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(3867), + [anon_sym_is] = ACTIONS(3867), + [anon_sym_DASH_GT] = ACTIONS(3869), + [anon_sym_with] = ACTIONS(3867), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -419297,6 +418974,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(3869), }, [2399] = { [sym_preproc_region] = STATE(2399), @@ -419308,77 +418986,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(3675), - [anon_sym_alias] = ACTIONS(3675), - [anon_sym_SEMI] = ACTIONS(3677), - [anon_sym_global] = ACTIONS(3675), - [anon_sym_LBRACK] = ACTIONS(3677), - [anon_sym_COLON] = ACTIONS(3677), - [anon_sym_COMMA] = ACTIONS(3677), - [anon_sym_RBRACK] = ACTIONS(3677), - [anon_sym_LPAREN] = ACTIONS(3677), - [anon_sym_RPAREN] = ACTIONS(3677), - [anon_sym_LBRACE] = ACTIONS(3677), - [anon_sym_RBRACE] = ACTIONS(3677), - [anon_sym_file] = ACTIONS(3675), - [anon_sym_LT] = ACTIONS(3675), - [anon_sym_GT] = ACTIONS(3675), - [anon_sym_in] = ACTIONS(3675), - [anon_sym_where] = ACTIONS(3675), - [anon_sym_QMARK] = ACTIONS(3675), - [anon_sym_notnull] = ACTIONS(3675), - [anon_sym_unmanaged] = ACTIONS(3675), - [anon_sym_BANG] = ACTIONS(3675), - [anon_sym_PLUS_PLUS] = ACTIONS(3677), - [anon_sym_DASH_DASH] = ACTIONS(3677), - [anon_sym_PLUS] = ACTIONS(3675), - [anon_sym_DASH] = ACTIONS(3675), - [anon_sym_STAR] = ACTIONS(3677), - [anon_sym_SLASH] = ACTIONS(3675), - [anon_sym_PERCENT] = ACTIONS(3677), - [anon_sym_CARET] = ACTIONS(3677), - [anon_sym_PIPE] = ACTIONS(3675), - [anon_sym_AMP] = ACTIONS(3675), - [anon_sym_LT_LT] = ACTIONS(3677), - [anon_sym_GT_GT] = ACTIONS(3675), - [anon_sym_GT_GT_GT] = ACTIONS(3677), - [anon_sym_EQ_EQ] = ACTIONS(3677), - [anon_sym_BANG_EQ] = ACTIONS(3677), - [anon_sym_GT_EQ] = ACTIONS(3677), - [anon_sym_LT_EQ] = ACTIONS(3677), - [anon_sym_DOT] = ACTIONS(3675), - [anon_sym_scoped] = ACTIONS(3675), - [anon_sym_EQ_GT] = ACTIONS(3677), - [anon_sym_var] = ACTIONS(3675), - [anon_sym_yield] = ACTIONS(3675), - [anon_sym_switch] = ACTIONS(3675), - [anon_sym_when] = ACTIONS(3675), - [sym_discard] = ACTIONS(3675), - [anon_sym_DOT_DOT] = ACTIONS(3677), - [anon_sym_and] = ACTIONS(3675), - [anon_sym_or] = ACTIONS(3675), - [anon_sym_AMP_AMP] = ACTIONS(3677), - [anon_sym_PIPE_PIPE] = ACTIONS(3677), - [anon_sym_QMARK_QMARK] = ACTIONS(3677), - [anon_sym_from] = ACTIONS(3675), - [anon_sym_into] = ACTIONS(3675), - [anon_sym_join] = ACTIONS(3675), - [anon_sym_on] = ACTIONS(3675), - [anon_sym_equals] = ACTIONS(3675), - [anon_sym_let] = ACTIONS(3675), - [anon_sym_orderby] = ACTIONS(3675), - [anon_sym_ascending] = ACTIONS(3675), - [anon_sym_descending] = ACTIONS(3675), - [anon_sym_group] = ACTIONS(3675), - [anon_sym_by] = ACTIONS(3675), - [anon_sym_select] = ACTIONS(3675), - [anon_sym_as] = ACTIONS(3675), - [anon_sym_is] = ACTIONS(3675), - [anon_sym_DASH_GT] = ACTIONS(3677), - [anon_sym_with] = ACTIONS(3675), - [aux_sym_preproc_if_token3] = ACTIONS(3677), - [aux_sym_preproc_else_token1] = ACTIONS(3677), - [aux_sym_preproc_elif_token1] = ACTIONS(3677), + [sym__identifier_token] = ACTIONS(3659), + [anon_sym_alias] = ACTIONS(3659), + [anon_sym_SEMI] = ACTIONS(3661), + [anon_sym_global] = ACTIONS(3659), + [anon_sym_LBRACK] = ACTIONS(3661), + [anon_sym_COLON] = ACTIONS(3661), + [anon_sym_COMMA] = ACTIONS(3661), + [anon_sym_RBRACK] = ACTIONS(3661), + [anon_sym_LPAREN] = ACTIONS(3661), + [anon_sym_RPAREN] = ACTIONS(3661), + [anon_sym_LBRACE] = ACTIONS(3661), + [anon_sym_RBRACE] = ACTIONS(3661), + [anon_sym_file] = ACTIONS(3659), + [anon_sym_LT] = ACTIONS(3659), + [anon_sym_GT] = ACTIONS(3659), + [anon_sym_in] = ACTIONS(3659), + [anon_sym_where] = ACTIONS(3659), + [anon_sym_QMARK] = ACTIONS(3659), + [anon_sym_notnull] = ACTIONS(3659), + [anon_sym_unmanaged] = ACTIONS(3659), + [anon_sym_BANG] = ACTIONS(3659), + [anon_sym_PLUS_PLUS] = ACTIONS(3661), + [anon_sym_DASH_DASH] = ACTIONS(3661), + [anon_sym_PLUS] = ACTIONS(3659), + [anon_sym_DASH] = ACTIONS(3659), + [anon_sym_STAR] = ACTIONS(3661), + [anon_sym_SLASH] = ACTIONS(3659), + [anon_sym_PERCENT] = ACTIONS(3661), + [anon_sym_CARET] = ACTIONS(3661), + [anon_sym_PIPE] = ACTIONS(3659), + [anon_sym_AMP] = ACTIONS(3659), + [anon_sym_LT_LT] = ACTIONS(3661), + [anon_sym_GT_GT] = ACTIONS(3659), + [anon_sym_GT_GT_GT] = ACTIONS(3661), + [anon_sym_EQ_EQ] = ACTIONS(3661), + [anon_sym_BANG_EQ] = ACTIONS(3661), + [anon_sym_GT_EQ] = ACTIONS(3661), + [anon_sym_LT_EQ] = ACTIONS(3661), + [anon_sym_DOT] = ACTIONS(3659), + [anon_sym_scoped] = ACTIONS(3659), + [anon_sym_EQ_GT] = ACTIONS(3661), + [anon_sym_var] = ACTIONS(3659), + [anon_sym_yield] = ACTIONS(3659), + [anon_sym_switch] = ACTIONS(3659), + [anon_sym_when] = ACTIONS(3659), + [sym_discard] = ACTIONS(3659), + [anon_sym_DOT_DOT] = ACTIONS(3661), + [anon_sym_and] = ACTIONS(3659), + [anon_sym_or] = ACTIONS(3659), + [anon_sym_AMP_AMP] = ACTIONS(3661), + [anon_sym_PIPE_PIPE] = ACTIONS(3661), + [anon_sym_QMARK_QMARK] = ACTIONS(3661), + [anon_sym_from] = ACTIONS(3659), + [anon_sym_into] = ACTIONS(3659), + [anon_sym_join] = ACTIONS(3659), + [anon_sym_on] = ACTIONS(3659), + [anon_sym_equals] = ACTIONS(3659), + [anon_sym_let] = ACTIONS(3659), + [anon_sym_orderby] = ACTIONS(3659), + [anon_sym_ascending] = ACTIONS(3659), + [anon_sym_descending] = ACTIONS(3659), + [anon_sym_group] = ACTIONS(3659), + [anon_sym_by] = ACTIONS(3659), + [anon_sym_select] = ACTIONS(3659), + [anon_sym_as] = ACTIONS(3659), + [anon_sym_is] = ACTIONS(3659), + [anon_sym_DASH_GT] = ACTIONS(3661), + [anon_sym_with] = ACTIONS(3659), + [aux_sym_preproc_if_token3] = ACTIONS(3661), + [aux_sym_preproc_else_token1] = ACTIONS(3661), + [aux_sym_preproc_elif_token1] = ACTIONS(3661), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -419391,14 +419069,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2400] = { - [sym_parameter_list] = STATE(7311), - [sym_positional_pattern_clause] = STATE(2487), - [sym_property_pattern_clause] = STATE(2555), - [sym__variable_designation] = STATE(4779), - [sym_parenthesized_variable_designation] = STATE(4761), - [sym__lambda_parameters] = STATE(7536), - [sym_identifier] = STATE(4381), - [sym__reserved_identifier] = STATE(4323), + [sym__name] = STATE(2426), + [sym_alias_qualified_name] = STATE(2402), + [sym__simple_name] = STATE(2402), + [sym_qualified_name] = STATE(2402), + [sym_generic_name] = STATE(2384), + [sym_ref_type] = STATE(2331), + [sym__scoped_base_type] = STATE(2339), + [sym_identifier] = STATE(2351), + [sym__reserved_identifier] = STATE(2354), [sym_preproc_region] = STATE(2400), [sym_preproc_endregion] = STATE(2400), [sym_preproc_line] = STATE(2400), @@ -419408,68 +419087,68 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2400), [sym_preproc_define] = STATE(2400), [sym_preproc_undef] = STATE(2400), - [sym__identifier_token] = ACTIONS(4050), - [anon_sym_alias] = ACTIONS(4052), - [anon_sym_global] = ACTIONS(4052), - [anon_sym_LBRACK] = ACTIONS(3893), - [anon_sym_COLON] = ACTIONS(3893), - [anon_sym_COMMA] = ACTIONS(3893), - [anon_sym_LPAREN] = ACTIONS(3893), - [anon_sym_LBRACE] = ACTIONS(4054), - [anon_sym_file] = ACTIONS(4052), - [anon_sym_LT] = ACTIONS(3895), - [anon_sym_GT] = ACTIONS(3895), - [anon_sym_where] = ACTIONS(4052), - [anon_sym_QMARK] = ACTIONS(3895), - [anon_sym_notnull] = ACTIONS(4052), - [anon_sym_unmanaged] = ACTIONS(4052), - [anon_sym_BANG] = ACTIONS(3895), - [anon_sym_PLUS_PLUS] = ACTIONS(3893), - [anon_sym_DASH_DASH] = ACTIONS(3893), - [anon_sym_PLUS] = ACTIONS(3895), - [anon_sym_DASH] = ACTIONS(3895), - [anon_sym_STAR] = ACTIONS(3893), - [anon_sym_SLASH] = ACTIONS(3895), - [anon_sym_PERCENT] = ACTIONS(3893), - [anon_sym_CARET] = ACTIONS(3893), - [anon_sym_PIPE] = ACTIONS(3895), - [anon_sym_AMP] = ACTIONS(3895), - [anon_sym_LT_LT] = ACTIONS(3893), - [anon_sym_GT_GT] = ACTIONS(3895), - [anon_sym_GT_GT_GT] = ACTIONS(3893), - [anon_sym_EQ_EQ] = ACTIONS(3893), - [anon_sym_BANG_EQ] = ACTIONS(3893), - [anon_sym_GT_EQ] = ACTIONS(3893), - [anon_sym_LT_EQ] = ACTIONS(3893), - [anon_sym_DOT] = ACTIONS(3895), - [anon_sym_scoped] = ACTIONS(4052), - [anon_sym_var] = ACTIONS(4052), - [anon_sym_yield] = ACTIONS(4052), - [anon_sym_switch] = ACTIONS(3895), - [anon_sym_when] = ACTIONS(4052), - [sym_discard] = ACTIONS(4056), - [anon_sym_DOT_DOT] = ACTIONS(3893), - [anon_sym_and] = ACTIONS(3895), - [anon_sym_or] = ACTIONS(3895), - [anon_sym_AMP_AMP] = ACTIONS(3893), - [anon_sym_PIPE_PIPE] = ACTIONS(3893), - [anon_sym_QMARK_QMARK] = ACTIONS(3893), - [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(3895), - [anon_sym_is] = ACTIONS(3895), - [anon_sym_DASH_GT] = ACTIONS(3893), - [anon_sym_with] = ACTIONS(3895), + [sym__identifier_token] = ACTIONS(4080), + [anon_sym_alias] = ACTIONS(4082), + [anon_sym_global] = ACTIONS(4082), + [anon_sym_LBRACK] = ACTIONS(3429), + [anon_sym_COMMA] = ACTIONS(3429), + [anon_sym_LPAREN] = ACTIONS(3429), + [anon_sym_ref] = ACTIONS(4084), + [anon_sym_LBRACE] = ACTIONS(3429), + [anon_sym_file] = ACTIONS(4082), + [anon_sym_LT] = ACTIONS(3431), + [anon_sym_GT] = ACTIONS(3431), + [anon_sym_where] = ACTIONS(3579), + [anon_sym_QMARK] = ACTIONS(3431), + [anon_sym_notnull] = ACTIONS(4082), + [anon_sym_unmanaged] = ACTIONS(4082), + [anon_sym_BANG] = ACTIONS(3431), + [anon_sym_PLUS_PLUS] = ACTIONS(3429), + [anon_sym_DASH_DASH] = ACTIONS(3429), + [anon_sym_PLUS] = ACTIONS(3431), + [anon_sym_DASH] = ACTIONS(3431), + [anon_sym_STAR] = ACTIONS(3429), + [anon_sym_SLASH] = ACTIONS(3431), + [anon_sym_PERCENT] = ACTIONS(3429), + [anon_sym_CARET] = ACTIONS(3429), + [anon_sym_PIPE] = ACTIONS(3431), + [anon_sym_AMP] = ACTIONS(3431), + [anon_sym_LT_LT] = ACTIONS(3429), + [anon_sym_GT_GT] = ACTIONS(3431), + [anon_sym_GT_GT_GT] = ACTIONS(3429), + [anon_sym_EQ_EQ] = ACTIONS(3429), + [anon_sym_BANG_EQ] = ACTIONS(3429), + [anon_sym_GT_EQ] = ACTIONS(3429), + [anon_sym_LT_EQ] = ACTIONS(3429), + [anon_sym_DOT] = ACTIONS(3431), + [anon_sym_scoped] = ACTIONS(4082), + [anon_sym_COLON_COLON] = ACTIONS(3429), + [anon_sym_var] = ACTIONS(4082), + [anon_sym_yield] = ACTIONS(4082), + [anon_sym_switch] = ACTIONS(3431), + [anon_sym_when] = ACTIONS(4082), + [anon_sym_DOT_DOT] = ACTIONS(3429), + [anon_sym_and] = ACTIONS(3431), + [anon_sym_or] = ACTIONS(3431), + [anon_sym_AMP_AMP] = ACTIONS(3429), + [anon_sym_PIPE_PIPE] = ACTIONS(3429), + [anon_sym_QMARK_QMARK] = ACTIONS(3429), + [anon_sym_from] = ACTIONS(3579), + [anon_sym_into] = ACTIONS(4082), + [anon_sym_join] = ACTIONS(3579), + [anon_sym_on] = ACTIONS(4082), + [anon_sym_equals] = ACTIONS(4082), + [anon_sym_let] = ACTIONS(3579), + [anon_sym_orderby] = ACTIONS(3579), + [anon_sym_ascending] = ACTIONS(3579), + [anon_sym_descending] = ACTIONS(3579), + [anon_sym_group] = ACTIONS(3579), + [anon_sym_by] = ACTIONS(4082), + [anon_sym_select] = ACTIONS(3579), + [anon_sym_as] = ACTIONS(3431), + [anon_sym_is] = ACTIONS(3431), + [anon_sym_DASH_GT] = ACTIONS(3429), + [anon_sym_with] = ACTIONS(3431), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -419480,9 +419159,16 @@ static const uint16_t ts_parse_table[LARGE_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(3893), }, [2401] = { + [sym_parameter_list] = STATE(7531), + [sym_positional_pattern_clause] = STATE(2507), + [sym_property_pattern_clause] = STATE(2555), + [sym__variable_designation] = STATE(4764), + [sym_parenthesized_variable_designation] = STATE(4760), + [sym__lambda_parameters] = STATE(7378), + [sym_identifier] = STATE(4343), + [sym__reserved_identifier] = STATE(4328), [sym_preproc_region] = STATE(2401), [sym_preproc_endregion] = STATE(2401), [sym_preproc_line] = STATE(2401), @@ -419492,87 +419178,79 @@ 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(3671), - [anon_sym_alias] = ACTIONS(3671), - [anon_sym_SEMI] = ACTIONS(3673), - [anon_sym_global] = ACTIONS(3671), - [anon_sym_LBRACK] = ACTIONS(3673), - [anon_sym_COLON] = ACTIONS(3673), - [anon_sym_COMMA] = ACTIONS(3673), - [anon_sym_RBRACK] = ACTIONS(3673), - [anon_sym_LPAREN] = ACTIONS(3673), - [anon_sym_RPAREN] = ACTIONS(3673), - [anon_sym_LBRACE] = ACTIONS(3673), - [anon_sym_RBRACE] = ACTIONS(3673), - [anon_sym_file] = ACTIONS(3671), - [anon_sym_LT] = ACTIONS(3671), - [anon_sym_GT] = ACTIONS(3671), - [anon_sym_in] = ACTIONS(3671), - [anon_sym_where] = ACTIONS(3671), - [anon_sym_QMARK] = ACTIONS(3671), - [anon_sym_notnull] = ACTIONS(3671), - [anon_sym_unmanaged] = ACTIONS(3671), - [anon_sym_BANG] = ACTIONS(3671), - [anon_sym_PLUS_PLUS] = ACTIONS(3673), - [anon_sym_DASH_DASH] = ACTIONS(3673), - [anon_sym_PLUS] = ACTIONS(3671), - [anon_sym_DASH] = ACTIONS(3671), - [anon_sym_STAR] = ACTIONS(3673), - [anon_sym_SLASH] = ACTIONS(3671), - [anon_sym_PERCENT] = ACTIONS(3673), - [anon_sym_CARET] = ACTIONS(3673), - [anon_sym_PIPE] = ACTIONS(3671), - [anon_sym_AMP] = ACTIONS(3671), - [anon_sym_LT_LT] = ACTIONS(3673), - [anon_sym_GT_GT] = ACTIONS(3671), - [anon_sym_GT_GT_GT] = ACTIONS(3673), - [anon_sym_EQ_EQ] = ACTIONS(3673), - [anon_sym_BANG_EQ] = ACTIONS(3673), - [anon_sym_GT_EQ] = ACTIONS(3673), - [anon_sym_LT_EQ] = ACTIONS(3673), - [anon_sym_DOT] = ACTIONS(3671), - [anon_sym_scoped] = ACTIONS(3671), - [anon_sym_EQ_GT] = ACTIONS(3673), - [anon_sym_var] = ACTIONS(3671), - [anon_sym_yield] = ACTIONS(3671), - [anon_sym_switch] = ACTIONS(3671), - [anon_sym_when] = ACTIONS(3671), - [sym_discard] = ACTIONS(3671), - [anon_sym_DOT_DOT] = ACTIONS(3673), - [anon_sym_and] = ACTIONS(3671), - [anon_sym_or] = ACTIONS(3671), - [anon_sym_AMP_AMP] = ACTIONS(3673), - [anon_sym_PIPE_PIPE] = ACTIONS(3673), - [anon_sym_QMARK_QMARK] = ACTIONS(3673), - [anon_sym_from] = ACTIONS(3671), - [anon_sym_into] = ACTIONS(3671), - [anon_sym_join] = ACTIONS(3671), - [anon_sym_on] = ACTIONS(3671), - [anon_sym_equals] = ACTIONS(3671), - [anon_sym_let] = ACTIONS(3671), - [anon_sym_orderby] = ACTIONS(3671), - [anon_sym_ascending] = ACTIONS(3671), - [anon_sym_descending] = ACTIONS(3671), - [anon_sym_group] = ACTIONS(3671), - [anon_sym_by] = ACTIONS(3671), - [anon_sym_select] = ACTIONS(3671), - [anon_sym_as] = ACTIONS(3671), - [anon_sym_is] = ACTIONS(3671), - [anon_sym_DASH_GT] = ACTIONS(3673), - [anon_sym_with] = ACTIONS(3671), - [aux_sym_preproc_if_token3] = ACTIONS(3673), - [aux_sym_preproc_else_token1] = ACTIONS(3673), - [aux_sym_preproc_elif_token1] = ACTIONS(3673), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_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(4046), + [anon_sym_alias] = ACTIONS(4048), + [anon_sym_global] = ACTIONS(4048), + [anon_sym_LBRACK] = ACTIONS(3869), + [anon_sym_COLON] = ACTIONS(3869), + [anon_sym_COMMA] = ACTIONS(3869), + [anon_sym_LPAREN] = ACTIONS(3869), + [anon_sym_LBRACE] = ACTIONS(4050), + [anon_sym_file] = ACTIONS(4048), + [anon_sym_LT] = ACTIONS(3867), + [anon_sym_GT] = ACTIONS(3867), + [anon_sym_where] = ACTIONS(4048), + [anon_sym_QMARK] = ACTIONS(3867), + [anon_sym_notnull] = ACTIONS(4048), + [anon_sym_unmanaged] = ACTIONS(4048), + [anon_sym_BANG] = ACTIONS(3867), + [anon_sym_PLUS_PLUS] = ACTIONS(3869), + [anon_sym_DASH_DASH] = ACTIONS(3869), + [anon_sym_PLUS] = ACTIONS(3867), + [anon_sym_DASH] = ACTIONS(3867), + [anon_sym_STAR] = ACTIONS(3869), + [anon_sym_SLASH] = ACTIONS(3867), + [anon_sym_PERCENT] = ACTIONS(3869), + [anon_sym_CARET] = ACTIONS(3869), + [anon_sym_PIPE] = ACTIONS(3867), + [anon_sym_AMP] = ACTIONS(3867), + [anon_sym_LT_LT] = ACTIONS(3869), + [anon_sym_GT_GT] = ACTIONS(3867), + [anon_sym_GT_GT_GT] = ACTIONS(3869), + [anon_sym_EQ_EQ] = ACTIONS(3869), + [anon_sym_BANG_EQ] = ACTIONS(3869), + [anon_sym_GT_EQ] = ACTIONS(3869), + [anon_sym_LT_EQ] = ACTIONS(3869), + [anon_sym_DOT] = ACTIONS(3867), + [anon_sym_scoped] = ACTIONS(4048), + [anon_sym_var] = ACTIONS(4048), + [anon_sym_yield] = ACTIONS(4048), + [anon_sym_switch] = ACTIONS(3867), + [anon_sym_when] = ACTIONS(4048), + [sym_discard] = ACTIONS(4052), + [anon_sym_DOT_DOT] = ACTIONS(3869), + [anon_sym_and] = ACTIONS(3867), + [anon_sym_or] = ACTIONS(3867), + [anon_sym_AMP_AMP] = ACTIONS(3869), + [anon_sym_PIPE_PIPE] = ACTIONS(3869), + [anon_sym_QMARK_QMARK] = ACTIONS(3869), + [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(3867), + [anon_sym_is] = ACTIONS(3867), + [anon_sym_DASH_GT] = ACTIONS(3869), + [anon_sym_with] = ACTIONS(3867), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_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(3869), }, [2402] = { [sym_preproc_region] = STATE(2402), @@ -419584,77 +419262,77 @@ 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(3654), - [anon_sym_alias] = ACTIONS(3654), - [anon_sym_SEMI] = ACTIONS(3656), - [anon_sym_global] = ACTIONS(3654), - [anon_sym_LBRACK] = ACTIONS(3656), - [anon_sym_COLON] = ACTIONS(3656), - [anon_sym_COMMA] = ACTIONS(3656), - [anon_sym_RBRACK] = ACTIONS(3656), - [anon_sym_LPAREN] = ACTIONS(3656), - [anon_sym_RPAREN] = ACTIONS(3656), - [anon_sym_LBRACE] = ACTIONS(3656), - [anon_sym_RBRACE] = ACTIONS(3656), - [anon_sym_file] = ACTIONS(3654), - [anon_sym_LT] = ACTIONS(3654), - [anon_sym_GT] = ACTIONS(3654), - [anon_sym_in] = ACTIONS(3654), - [anon_sym_where] = ACTIONS(3654), - [anon_sym_QMARK] = ACTIONS(3654), - [anon_sym_notnull] = ACTIONS(3654), - [anon_sym_unmanaged] = ACTIONS(3654), - [anon_sym_BANG] = ACTIONS(3654), - [anon_sym_PLUS_PLUS] = ACTIONS(3656), - [anon_sym_DASH_DASH] = ACTIONS(3656), - [anon_sym_PLUS] = ACTIONS(3654), - [anon_sym_DASH] = ACTIONS(3654), - [anon_sym_STAR] = ACTIONS(3656), - [anon_sym_SLASH] = ACTIONS(3654), - [anon_sym_PERCENT] = ACTIONS(3656), - [anon_sym_CARET] = ACTIONS(3656), - [anon_sym_PIPE] = ACTIONS(3654), - [anon_sym_AMP] = ACTIONS(3654), - [anon_sym_LT_LT] = ACTIONS(3656), - [anon_sym_GT_GT] = ACTIONS(3654), - [anon_sym_GT_GT_GT] = ACTIONS(3656), - [anon_sym_EQ_EQ] = ACTIONS(3656), - [anon_sym_BANG_EQ] = ACTIONS(3656), - [anon_sym_GT_EQ] = ACTIONS(3656), - [anon_sym_LT_EQ] = ACTIONS(3656), - [anon_sym_DOT] = ACTIONS(3654), - [anon_sym_scoped] = ACTIONS(3654), - [anon_sym_EQ_GT] = ACTIONS(3656), - [anon_sym_var] = ACTIONS(3654), - [anon_sym_yield] = ACTIONS(3654), - [anon_sym_switch] = ACTIONS(3654), - [anon_sym_when] = ACTIONS(3654), - [sym_discard] = ACTIONS(3654), - [anon_sym_DOT_DOT] = ACTIONS(3656), - [anon_sym_and] = ACTIONS(3654), - [anon_sym_or] = ACTIONS(3654), - [anon_sym_AMP_AMP] = ACTIONS(3656), - [anon_sym_PIPE_PIPE] = ACTIONS(3656), - [anon_sym_QMARK_QMARK] = ACTIONS(3656), - [anon_sym_from] = ACTIONS(3654), - [anon_sym_into] = ACTIONS(3654), - [anon_sym_join] = ACTIONS(3654), - [anon_sym_on] = ACTIONS(3654), - [anon_sym_equals] = ACTIONS(3654), - [anon_sym_let] = ACTIONS(3654), - [anon_sym_orderby] = ACTIONS(3654), - [anon_sym_ascending] = ACTIONS(3654), - [anon_sym_descending] = ACTIONS(3654), - [anon_sym_group] = ACTIONS(3654), - [anon_sym_by] = ACTIONS(3654), - [anon_sym_select] = ACTIONS(3654), - [anon_sym_as] = ACTIONS(3654), - [anon_sym_is] = ACTIONS(3654), - [anon_sym_DASH_GT] = ACTIONS(3656), - [anon_sym_with] = ACTIONS(3654), - [aux_sym_preproc_if_token3] = ACTIONS(3656), - [aux_sym_preproc_else_token1] = ACTIONS(3656), - [aux_sym_preproc_elif_token1] = ACTIONS(3656), + [sym__identifier_token] = ACTIONS(3691), + [anon_sym_alias] = ACTIONS(3691), + [anon_sym_SEMI] = ACTIONS(3702), + [anon_sym_global] = ACTIONS(3691), + [anon_sym_LBRACK] = ACTIONS(3702), + [anon_sym_COLON] = ACTIONS(3702), + [anon_sym_COMMA] = ACTIONS(3702), + [anon_sym_RBRACK] = ACTIONS(3702), + [anon_sym_LPAREN] = ACTIONS(3702), + [anon_sym_RPAREN] = ACTIONS(3702), + [anon_sym_LBRACE] = ACTIONS(3702), + [anon_sym_RBRACE] = ACTIONS(3702), + [anon_sym_file] = ACTIONS(3691), + [anon_sym_LT] = ACTIONS(3691), + [anon_sym_GT] = ACTIONS(3691), + [anon_sym_in] = ACTIONS(3691), + [anon_sym_where] = ACTIONS(3691), + [anon_sym_QMARK] = ACTIONS(3691), + [anon_sym_notnull] = ACTIONS(3691), + [anon_sym_unmanaged] = ACTIONS(3691), + [anon_sym_BANG] = ACTIONS(3691), + [anon_sym_PLUS_PLUS] = ACTIONS(3702), + [anon_sym_DASH_DASH] = ACTIONS(3702), + [anon_sym_PLUS] = ACTIONS(3691), + [anon_sym_DASH] = ACTIONS(3691), + [anon_sym_STAR] = ACTIONS(3702), + [anon_sym_SLASH] = ACTIONS(3691), + [anon_sym_PERCENT] = ACTIONS(3702), + [anon_sym_CARET] = ACTIONS(3702), + [anon_sym_PIPE] = ACTIONS(3691), + [anon_sym_AMP] = ACTIONS(3691), + [anon_sym_LT_LT] = ACTIONS(3702), + [anon_sym_GT_GT] = ACTIONS(3691), + [anon_sym_GT_GT_GT] = ACTIONS(3702), + [anon_sym_EQ_EQ] = ACTIONS(3702), + [anon_sym_BANG_EQ] = ACTIONS(3702), + [anon_sym_GT_EQ] = ACTIONS(3702), + [anon_sym_LT_EQ] = ACTIONS(3702), + [anon_sym_DOT] = ACTIONS(3691), + [anon_sym_scoped] = ACTIONS(3691), + [anon_sym_EQ_GT] = ACTIONS(3702), + [anon_sym_var] = ACTIONS(3691), + [anon_sym_yield] = ACTIONS(3691), + [anon_sym_switch] = ACTIONS(3691), + [anon_sym_when] = ACTIONS(3691), + [sym_discard] = ACTIONS(3691), + [anon_sym_DOT_DOT] = ACTIONS(3702), + [anon_sym_and] = ACTIONS(3691), + [anon_sym_or] = ACTIONS(3691), + [anon_sym_AMP_AMP] = ACTIONS(3702), + [anon_sym_PIPE_PIPE] = ACTIONS(3702), + [anon_sym_QMARK_QMARK] = ACTIONS(3702), + [anon_sym_from] = ACTIONS(3691), + [anon_sym_into] = ACTIONS(3691), + [anon_sym_join] = ACTIONS(3691), + [anon_sym_on] = ACTIONS(3691), + [anon_sym_equals] = ACTIONS(3691), + [anon_sym_let] = ACTIONS(3691), + [anon_sym_orderby] = ACTIONS(3691), + [anon_sym_ascending] = ACTIONS(3691), + [anon_sym_descending] = ACTIONS(3691), + [anon_sym_group] = ACTIONS(3691), + [anon_sym_by] = ACTIONS(3691), + [anon_sym_select] = ACTIONS(3691), + [anon_sym_as] = ACTIONS(3691), + [anon_sym_is] = ACTIONS(3691), + [anon_sym_DASH_GT] = ACTIONS(3702), + [anon_sym_with] = ACTIONS(3691), + [aux_sym_preproc_if_token3] = ACTIONS(3702), + [aux_sym_preproc_else_token1] = ACTIONS(3702), + [aux_sym_preproc_elif_token1] = ACTIONS(3702), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -419667,15 +419345,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2403] = { - [sym__name] = STATE(2446), - [sym_alias_qualified_name] = STATE(2373), - [sym__simple_name] = STATE(2373), - [sym_qualified_name] = STATE(2373), - [sym_generic_name] = STATE(2389), - [sym_ref_type] = STATE(2317), - [sym__scoped_base_type] = STATE(2340), - [sym_identifier] = STATE(2359), - [sym__reserved_identifier] = STATE(2361), [sym_preproc_region] = STATE(2403), [sym_preproc_endregion] = STATE(2403), [sym_preproc_line] = STATE(2403), @@ -419685,68 +419354,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(4058), - [anon_sym_alias] = ACTIONS(4060), - [anon_sym_global] = ACTIONS(4060), - [anon_sym_LBRACK] = ACTIONS(3445), - [anon_sym_COMMA] = ACTIONS(3445), - [anon_sym_LPAREN] = ACTIONS(3445), - [anon_sym_ref] = ACTIONS(4098), - [anon_sym_LBRACE] = ACTIONS(3445), - [anon_sym_file] = ACTIONS(4060), - [anon_sym_LT] = ACTIONS(3447), - [anon_sym_GT] = ACTIONS(3447), - [anon_sym_where] = ACTIONS(3584), - [anon_sym_QMARK] = ACTIONS(3447), - [anon_sym_notnull] = ACTIONS(4060), - [anon_sym_unmanaged] = ACTIONS(4060), - [anon_sym_BANG] = ACTIONS(3447), - [anon_sym_PLUS_PLUS] = ACTIONS(3445), - [anon_sym_DASH_DASH] = ACTIONS(3445), - [anon_sym_PLUS] = ACTIONS(3447), - [anon_sym_DASH] = ACTIONS(3447), - [anon_sym_STAR] = ACTIONS(3445), - [anon_sym_SLASH] = ACTIONS(3447), - [anon_sym_PERCENT] = ACTIONS(3445), - [anon_sym_CARET] = ACTIONS(3445), - [anon_sym_PIPE] = ACTIONS(3447), - [anon_sym_AMP] = ACTIONS(3447), - [anon_sym_LT_LT] = ACTIONS(3445), - [anon_sym_GT_GT] = ACTIONS(3447), - [anon_sym_GT_GT_GT] = ACTIONS(3445), - [anon_sym_EQ_EQ] = ACTIONS(3445), - [anon_sym_BANG_EQ] = ACTIONS(3445), - [anon_sym_GT_EQ] = ACTIONS(3445), - [anon_sym_LT_EQ] = ACTIONS(3445), - [anon_sym_DOT] = ACTIONS(3447), - [anon_sym_scoped] = ACTIONS(4060), - [anon_sym_COLON_COLON] = ACTIONS(3445), - [anon_sym_var] = ACTIONS(4060), - [anon_sym_yield] = ACTIONS(4060), - [anon_sym_switch] = ACTIONS(3447), - [anon_sym_when] = ACTIONS(4060), - [anon_sym_DOT_DOT] = ACTIONS(3445), - [anon_sym_and] = ACTIONS(3447), - [anon_sym_or] = ACTIONS(3447), - [anon_sym_AMP_AMP] = ACTIONS(3445), - [anon_sym_PIPE_PIPE] = ACTIONS(3445), - [anon_sym_QMARK_QMARK] = ACTIONS(3445), - [anon_sym_from] = ACTIONS(3584), - [anon_sym_into] = ACTIONS(3584), - [anon_sym_join] = ACTIONS(3584), - [anon_sym_on] = ACTIONS(4060), - [anon_sym_equals] = ACTIONS(4060), - [anon_sym_let] = ACTIONS(3584), - [anon_sym_orderby] = ACTIONS(3584), - [anon_sym_ascending] = ACTIONS(3584), - [anon_sym_descending] = ACTIONS(3584), - [anon_sym_group] = ACTIONS(3584), - [anon_sym_by] = ACTIONS(4060), - [anon_sym_select] = ACTIONS(3584), - [anon_sym_as] = ACTIONS(3447), - [anon_sym_is] = ACTIONS(3447), - [anon_sym_DASH_GT] = ACTIONS(3445), - [anon_sym_with] = ACTIONS(3447), + [sym__identifier_token] = ACTIONS(3669), + [anon_sym_alias] = ACTIONS(3669), + [anon_sym_global] = ACTIONS(3669), + [anon_sym_EQ] = ACTIONS(3673), + [anon_sym_LBRACK] = ACTIONS(3675), + [anon_sym_LPAREN] = ACTIONS(3675), + [anon_sym_file] = ACTIONS(3669), + [anon_sym_LT] = ACTIONS(3673), + [anon_sym_GT] = ACTIONS(3673), + [anon_sym_where] = ACTIONS(3669), + [anon_sym_QMARK] = ACTIONS(3680), + [anon_sym_notnull] = ACTIONS(3669), + [anon_sym_unmanaged] = ACTIONS(3669), + [anon_sym_BANG] = ACTIONS(3673), + [anon_sym_PLUS_PLUS] = ACTIONS(3671), + [anon_sym_DASH_DASH] = ACTIONS(3671), + [anon_sym_PLUS] = ACTIONS(3673), + [anon_sym_DASH] = ACTIONS(3673), + [anon_sym_STAR] = ACTIONS(3680), + [anon_sym_SLASH] = ACTIONS(3673), + [anon_sym_PERCENT] = ACTIONS(3673), + [anon_sym_CARET] = ACTIONS(3673), + [anon_sym_PIPE] = ACTIONS(3673), + [anon_sym_AMP] = ACTIONS(3673), + [anon_sym_LT_LT] = ACTIONS(3673), + [anon_sym_GT_GT] = ACTIONS(3673), + [anon_sym_GT_GT_GT] = ACTIONS(3673), + [anon_sym_EQ_EQ] = ACTIONS(3671), + [anon_sym_BANG_EQ] = ACTIONS(3671), + [anon_sym_GT_EQ] = ACTIONS(3671), + [anon_sym_LT_EQ] = ACTIONS(3671), + [anon_sym_DOT] = ACTIONS(3680), + [anon_sym_scoped] = ACTIONS(3669), + [anon_sym_var] = ACTIONS(3669), + [anon_sym_yield] = ACTIONS(3669), + [anon_sym_switch] = ACTIONS(3673), + [anon_sym_when] = ACTIONS(3669), + [anon_sym_DOT_DOT] = ACTIONS(3671), + [anon_sym_and] = ACTIONS(3673), + [anon_sym_or] = ACTIONS(3673), + [anon_sym_PLUS_EQ] = ACTIONS(3671), + [anon_sym_DASH_EQ] = ACTIONS(3671), + [anon_sym_STAR_EQ] = ACTIONS(3671), + [anon_sym_SLASH_EQ] = ACTIONS(3671), + [anon_sym_PERCENT_EQ] = ACTIONS(3671), + [anon_sym_AMP_EQ] = ACTIONS(3671), + [anon_sym_CARET_EQ] = ACTIONS(3671), + [anon_sym_PIPE_EQ] = ACTIONS(3671), + [anon_sym_LT_LT_EQ] = ACTIONS(3671), + [anon_sym_GT_GT_EQ] = ACTIONS(3671), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3671), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3671), + [anon_sym_AMP_AMP] = ACTIONS(3671), + [anon_sym_PIPE_PIPE] = ACTIONS(3671), + [anon_sym_QMARK_QMARK] = ACTIONS(3673), + [anon_sym_from] = ACTIONS(3669), + [anon_sym_into] = ACTIONS(3680), + [anon_sym_join] = ACTIONS(3669), + [anon_sym_on] = ACTIONS(3669), + [anon_sym_equals] = ACTIONS(3680), + [anon_sym_let] = ACTIONS(3669), + [anon_sym_orderby] = ACTIONS(3669), + [anon_sym_ascending] = ACTIONS(3669), + [anon_sym_descending] = ACTIONS(3669), + [anon_sym_group] = ACTIONS(3669), + [anon_sym_by] = ACTIONS(3669), + [anon_sym_select] = ACTIONS(3669), + [anon_sym_as] = ACTIONS(3673), + [anon_sym_is] = ACTIONS(3673), + [anon_sym_DASH_GT] = ACTIONS(3675), + [anon_sym_with] = ACTIONS(3673), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -419768,77 +419446,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(3699), - [anon_sym_alias] = ACTIONS(3699), - [anon_sym_global] = ACTIONS(3699), - [anon_sym_EQ] = ACTIONS(3704), - [anon_sym_LBRACK] = ACTIONS(3721), - [anon_sym_LPAREN] = ACTIONS(3721), - [anon_sym_file] = ACTIONS(3699), - [anon_sym_LT] = ACTIONS(3704), - [anon_sym_GT] = ACTIONS(3704), - [anon_sym_where] = ACTIONS(3724), - [anon_sym_QMARK] = ACTIONS(3724), - [anon_sym_notnull] = ACTIONS(3699), - [anon_sym_unmanaged] = ACTIONS(3699), - [anon_sym_BANG] = ACTIONS(3704), - [anon_sym_PLUS_PLUS] = ACTIONS(3719), - [anon_sym_DASH_DASH] = ACTIONS(3719), - [anon_sym_PLUS] = ACTIONS(3704), - [anon_sym_DASH] = ACTIONS(3704), - [anon_sym_STAR] = ACTIONS(3724), - [anon_sym_SLASH] = ACTIONS(3704), - [anon_sym_PERCENT] = ACTIONS(3704), - [anon_sym_CARET] = ACTIONS(3704), - [anon_sym_PIPE] = ACTIONS(3704), - [anon_sym_AMP] = ACTIONS(3704), - [anon_sym_LT_LT] = ACTIONS(3704), - [anon_sym_GT_GT] = ACTIONS(3704), - [anon_sym_GT_GT_GT] = ACTIONS(3704), - [anon_sym_EQ_EQ] = ACTIONS(3719), - [anon_sym_BANG_EQ] = ACTIONS(3719), - [anon_sym_GT_EQ] = ACTIONS(3719), - [anon_sym_LT_EQ] = ACTIONS(3719), - [anon_sym_DOT] = ACTIONS(3724), - [anon_sym_scoped] = ACTIONS(3699), - [anon_sym_var] = ACTIONS(3699), - [anon_sym_yield] = ACTIONS(3699), - [anon_sym_switch] = ACTIONS(3704), - [anon_sym_when] = ACTIONS(3699), - [anon_sym_DOT_DOT] = ACTIONS(3719), - [anon_sym_and] = ACTIONS(3704), - [anon_sym_or] = ACTIONS(3704), - [anon_sym_PLUS_EQ] = ACTIONS(3719), - [anon_sym_DASH_EQ] = ACTIONS(3719), - [anon_sym_STAR_EQ] = ACTIONS(3719), - [anon_sym_SLASH_EQ] = ACTIONS(3719), - [anon_sym_PERCENT_EQ] = ACTIONS(3719), - [anon_sym_AMP_EQ] = ACTIONS(3719), - [anon_sym_CARET_EQ] = ACTIONS(3719), - [anon_sym_PIPE_EQ] = ACTIONS(3719), - [anon_sym_LT_LT_EQ] = ACTIONS(3719), - [anon_sym_GT_GT_EQ] = ACTIONS(3719), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3719), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3719), - [anon_sym_AMP_AMP] = ACTIONS(3719), - [anon_sym_PIPE_PIPE] = ACTIONS(3719), - [anon_sym_QMARK_QMARK] = ACTIONS(3704), - [anon_sym_from] = ACTIONS(3724), - [anon_sym_into] = ACTIONS(3699), - [anon_sym_join] = ACTIONS(3724), - [anon_sym_on] = ACTIONS(3699), - [anon_sym_equals] = ACTIONS(3699), - [anon_sym_let] = ACTIONS(3724), - [anon_sym_orderby] = ACTIONS(3724), - [anon_sym_ascending] = ACTIONS(3699), - [anon_sym_descending] = ACTIONS(3699), - [anon_sym_group] = ACTIONS(3724), - [anon_sym_by] = ACTIONS(3699), - [anon_sym_select] = ACTIONS(3724), - [anon_sym_as] = ACTIONS(3704), - [anon_sym_is] = ACTIONS(3704), - [anon_sym_DASH_GT] = ACTIONS(3721), - [anon_sym_with] = ACTIONS(3704), + [sym__identifier_token] = ACTIONS(3691), + [anon_sym_alias] = ACTIONS(3691), + [anon_sym_global] = ACTIONS(3691), + [anon_sym_EQ] = ACTIONS(3696), + [anon_sym_LBRACK] = ACTIONS(3713), + [anon_sym_LPAREN] = ACTIONS(3713), + [anon_sym_file] = ACTIONS(3691), + [anon_sym_LT] = ACTIONS(3696), + [anon_sym_GT] = ACTIONS(3696), + [anon_sym_where] = ACTIONS(3716), + [anon_sym_QMARK] = ACTIONS(3716), + [anon_sym_notnull] = ACTIONS(3691), + [anon_sym_unmanaged] = ACTIONS(3691), + [anon_sym_BANG] = ACTIONS(3696), + [anon_sym_PLUS_PLUS] = ACTIONS(3711), + [anon_sym_DASH_DASH] = ACTIONS(3711), + [anon_sym_PLUS] = ACTIONS(3696), + [anon_sym_DASH] = ACTIONS(3696), + [anon_sym_STAR] = ACTIONS(3716), + [anon_sym_SLASH] = ACTIONS(3696), + [anon_sym_PERCENT] = ACTIONS(3696), + [anon_sym_CARET] = ACTIONS(3696), + [anon_sym_PIPE] = ACTIONS(3696), + [anon_sym_AMP] = ACTIONS(3696), + [anon_sym_LT_LT] = ACTIONS(3696), + [anon_sym_GT_GT] = ACTIONS(3696), + [anon_sym_GT_GT_GT] = ACTIONS(3696), + [anon_sym_EQ_EQ] = ACTIONS(3711), + [anon_sym_BANG_EQ] = ACTIONS(3711), + [anon_sym_GT_EQ] = ACTIONS(3711), + [anon_sym_LT_EQ] = ACTIONS(3711), + [anon_sym_DOT] = ACTIONS(3716), + [anon_sym_scoped] = ACTIONS(3691), + [anon_sym_var] = ACTIONS(3691), + [anon_sym_yield] = ACTIONS(3691), + [anon_sym_switch] = ACTIONS(3696), + [anon_sym_when] = ACTIONS(3691), + [anon_sym_DOT_DOT] = ACTIONS(3711), + [anon_sym_and] = ACTIONS(3696), + [anon_sym_or] = ACTIONS(3696), + [anon_sym_PLUS_EQ] = ACTIONS(3711), + [anon_sym_DASH_EQ] = ACTIONS(3711), + [anon_sym_STAR_EQ] = ACTIONS(3711), + [anon_sym_SLASH_EQ] = ACTIONS(3711), + [anon_sym_PERCENT_EQ] = ACTIONS(3711), + [anon_sym_AMP_EQ] = ACTIONS(3711), + [anon_sym_CARET_EQ] = ACTIONS(3711), + [anon_sym_PIPE_EQ] = ACTIONS(3711), + [anon_sym_LT_LT_EQ] = ACTIONS(3711), + [anon_sym_GT_GT_EQ] = ACTIONS(3711), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3711), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3711), + [anon_sym_AMP_AMP] = ACTIONS(3711), + [anon_sym_PIPE_PIPE] = ACTIONS(3711), + [anon_sym_QMARK_QMARK] = ACTIONS(3696), + [anon_sym_from] = ACTIONS(3716), + [anon_sym_into] = ACTIONS(3716), + [anon_sym_join] = ACTIONS(3716), + [anon_sym_on] = ACTIONS(3691), + [anon_sym_equals] = ACTIONS(3691), + [anon_sym_let] = ACTIONS(3716), + [anon_sym_orderby] = ACTIONS(3716), + [anon_sym_ascending] = ACTIONS(3691), + [anon_sym_descending] = ACTIONS(3691), + [anon_sym_group] = ACTIONS(3716), + [anon_sym_by] = ACTIONS(3691), + [anon_sym_select] = ACTIONS(3716), + [anon_sym_as] = ACTIONS(3696), + [anon_sym_is] = ACTIONS(3696), + [anon_sym_DASH_GT] = ACTIONS(3713), + [anon_sym_with] = ACTIONS(3696), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -419851,6 +419529,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2405] = { + [sym__name] = STATE(2426), + [sym_alias_qualified_name] = STATE(2402), + [sym__simple_name] = STATE(2402), + [sym_qualified_name] = STATE(2402), + [sym_generic_name] = STATE(2384), + [sym_ref_type] = STATE(2331), + [sym__scoped_base_type] = STATE(2339), + [sym_identifier] = STATE(2351), + [sym__reserved_identifier] = STATE(2354), [sym_preproc_region] = STATE(2405), [sym_preproc_endregion] = STATE(2405), [sym_preproc_line] = STATE(2405), @@ -419860,77 +419547,68 @@ 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(4016), - [anon_sym_alias] = ACTIONS(4016), - [anon_sym_SEMI] = ACTIONS(4018), - [anon_sym_global] = ACTIONS(4016), - [anon_sym_LBRACK] = ACTIONS(4066), - [anon_sym_COLON] = ACTIONS(4018), - [anon_sym_COMMA] = ACTIONS(4018), - [anon_sym_RBRACK] = ACTIONS(4018), - [anon_sym_LPAREN] = ACTIONS(4018), - [anon_sym_RPAREN] = ACTIONS(4018), - [anon_sym_LBRACE] = ACTIONS(4018), - [anon_sym_RBRACE] = ACTIONS(4018), - [anon_sym_file] = ACTIONS(4016), - [anon_sym_LT] = ACTIONS(4016), - [anon_sym_GT] = ACTIONS(4016), - [anon_sym_in] = ACTIONS(4016), - [anon_sym_where] = ACTIONS(4016), - [anon_sym_QMARK] = ACTIONS(4069), - [anon_sym_notnull] = ACTIONS(4016), - [anon_sym_unmanaged] = ACTIONS(4016), - [anon_sym_BANG] = ACTIONS(4016), - [anon_sym_PLUS_PLUS] = ACTIONS(4018), - [anon_sym_DASH_DASH] = ACTIONS(4018), - [anon_sym_PLUS] = ACTIONS(4016), - [anon_sym_DASH] = ACTIONS(4016), - [anon_sym_STAR] = ACTIONS(4072), - [anon_sym_SLASH] = ACTIONS(4016), - [anon_sym_PERCENT] = ACTIONS(4018), - [anon_sym_CARET] = ACTIONS(4018), - [anon_sym_PIPE] = ACTIONS(4016), - [anon_sym_AMP] = ACTIONS(4016), - [anon_sym_LT_LT] = ACTIONS(4018), - [anon_sym_GT_GT] = ACTIONS(4016), - [anon_sym_GT_GT_GT] = ACTIONS(4018), - [anon_sym_EQ_EQ] = ACTIONS(4018), - [anon_sym_BANG_EQ] = ACTIONS(4018), - [anon_sym_GT_EQ] = ACTIONS(4018), - [anon_sym_LT_EQ] = ACTIONS(4018), - [anon_sym_DOT] = ACTIONS(4100), - [anon_sym_scoped] = ACTIONS(4016), - [anon_sym_EQ_GT] = ACTIONS(4018), - [anon_sym_var] = ACTIONS(4016), - [anon_sym_yield] = ACTIONS(4016), - [anon_sym_switch] = ACTIONS(4016), - [anon_sym_when] = ACTIONS(4016), - [sym_discard] = ACTIONS(4016), - [anon_sym_DOT_DOT] = ACTIONS(4018), - [anon_sym_and] = ACTIONS(4016), - [anon_sym_or] = ACTIONS(4016), - [anon_sym_AMP_AMP] = ACTIONS(4018), - [anon_sym_PIPE_PIPE] = ACTIONS(4018), - [anon_sym_QMARK_QMARK] = ACTIONS(4018), - [anon_sym_from] = ACTIONS(4016), - [anon_sym_into] = ACTIONS(4016), - [anon_sym_join] = ACTIONS(4016), - [anon_sym_on] = ACTIONS(4016), - [anon_sym_equals] = ACTIONS(4016), - [anon_sym_let] = ACTIONS(4016), - [anon_sym_orderby] = ACTIONS(4016), - [anon_sym_ascending] = ACTIONS(4016), - [anon_sym_descending] = ACTIONS(4016), - [anon_sym_group] = ACTIONS(4016), - [anon_sym_by] = ACTIONS(4016), - [anon_sym_select] = ACTIONS(4016), - [anon_sym_as] = ACTIONS(4016), - [anon_sym_is] = ACTIONS(4016), - [anon_sym_DASH_GT] = ACTIONS(4102), - [anon_sym_with] = ACTIONS(4016), - [aux_sym_preproc_if_token3] = ACTIONS(4018), - [aux_sym_preproc_else_token1] = ACTIONS(4018), - [aux_sym_preproc_elif_token1] = ACTIONS(4018), + [sym__identifier_token] = ACTIONS(4080), + [anon_sym_alias] = ACTIONS(4082), + [anon_sym_global] = ACTIONS(4082), + [anon_sym_LBRACK] = ACTIONS(3429), + [anon_sym_COMMA] = ACTIONS(3429), + [anon_sym_LPAREN] = ACTIONS(3429), + [anon_sym_ref] = ACTIONS(4086), + [anon_sym_LBRACE] = ACTIONS(3429), + [anon_sym_file] = ACTIONS(4082), + [anon_sym_LT] = ACTIONS(3431), + [anon_sym_GT] = ACTIONS(3431), + [anon_sym_where] = ACTIONS(3579), + [anon_sym_QMARK] = ACTIONS(3431), + [anon_sym_notnull] = ACTIONS(4082), + [anon_sym_unmanaged] = ACTIONS(4082), + [anon_sym_BANG] = ACTIONS(3431), + [anon_sym_PLUS_PLUS] = ACTIONS(3429), + [anon_sym_DASH_DASH] = ACTIONS(3429), + [anon_sym_PLUS] = ACTIONS(3431), + [anon_sym_DASH] = ACTIONS(3431), + [anon_sym_STAR] = ACTIONS(3429), + [anon_sym_SLASH] = ACTIONS(3431), + [anon_sym_PERCENT] = ACTIONS(3429), + [anon_sym_CARET] = ACTIONS(3429), + [anon_sym_PIPE] = ACTIONS(3431), + [anon_sym_AMP] = ACTIONS(3431), + [anon_sym_LT_LT] = ACTIONS(3429), + [anon_sym_GT_GT] = ACTIONS(3431), + [anon_sym_GT_GT_GT] = ACTIONS(3429), + [anon_sym_EQ_EQ] = ACTIONS(3429), + [anon_sym_BANG_EQ] = ACTIONS(3429), + [anon_sym_GT_EQ] = ACTIONS(3429), + [anon_sym_LT_EQ] = ACTIONS(3429), + [anon_sym_DOT] = ACTIONS(3431), + [anon_sym_scoped] = ACTIONS(4082), + [anon_sym_COLON_COLON] = ACTIONS(3429), + [anon_sym_var] = ACTIONS(4082), + [anon_sym_yield] = ACTIONS(4082), + [anon_sym_switch] = ACTIONS(3431), + [anon_sym_when] = ACTIONS(4082), + [anon_sym_DOT_DOT] = ACTIONS(3429), + [anon_sym_and] = ACTIONS(3431), + [anon_sym_or] = ACTIONS(3431), + [anon_sym_AMP_AMP] = ACTIONS(3429), + [anon_sym_PIPE_PIPE] = ACTIONS(3429), + [anon_sym_QMARK_QMARK] = ACTIONS(3429), + [anon_sym_from] = ACTIONS(3579), + [anon_sym_into] = ACTIONS(3579), + [anon_sym_join] = ACTIONS(3579), + [anon_sym_on] = ACTIONS(4082), + [anon_sym_equals] = ACTIONS(4082), + [anon_sym_let] = ACTIONS(3579), + [anon_sym_orderby] = ACTIONS(3579), + [anon_sym_ascending] = ACTIONS(3579), + [anon_sym_descending] = ACTIONS(3579), + [anon_sym_group] = ACTIONS(3579), + [anon_sym_by] = ACTIONS(4082), + [anon_sym_select] = ACTIONS(3579), + [anon_sym_as] = ACTIONS(3431), + [anon_sym_is] = ACTIONS(3431), + [anon_sym_DASH_GT] = ACTIONS(3429), + [anon_sym_with] = ACTIONS(3431), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -419952,77 +419630,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2406), [sym_preproc_define] = STATE(2406), [sym_preproc_undef] = STATE(2406), - [sym__identifier_token] = ACTIONS(3685), - [anon_sym_alias] = ACTIONS(3685), - [anon_sym_global] = ACTIONS(3685), - [anon_sym_EQ] = ACTIONS(3689), - [anon_sym_LBRACK] = ACTIONS(3691), - [anon_sym_LPAREN] = ACTIONS(3691), - [anon_sym_file] = ACTIONS(3685), - [anon_sym_LT] = ACTIONS(3689), - [anon_sym_GT] = ACTIONS(3689), - [anon_sym_where] = ACTIONS(3694), - [anon_sym_QMARK] = ACTIONS(3694), - [anon_sym_notnull] = ACTIONS(3685), - [anon_sym_unmanaged] = ACTIONS(3685), - [anon_sym_BANG] = ACTIONS(3689), - [anon_sym_PLUS_PLUS] = ACTIONS(3697), - [anon_sym_DASH_DASH] = ACTIONS(3697), - [anon_sym_PLUS] = ACTIONS(3689), - [anon_sym_DASH] = ACTIONS(3689), - [anon_sym_STAR] = ACTIONS(3694), - [anon_sym_SLASH] = ACTIONS(3689), - [anon_sym_PERCENT] = ACTIONS(3689), - [anon_sym_CARET] = ACTIONS(3689), - [anon_sym_PIPE] = ACTIONS(3689), - [anon_sym_AMP] = ACTIONS(3689), - [anon_sym_LT_LT] = ACTIONS(3689), - [anon_sym_GT_GT] = ACTIONS(3689), - [anon_sym_GT_GT_GT] = ACTIONS(3689), - [anon_sym_EQ_EQ] = ACTIONS(3697), - [anon_sym_BANG_EQ] = ACTIONS(3697), - [anon_sym_GT_EQ] = ACTIONS(3697), - [anon_sym_LT_EQ] = ACTIONS(3697), - [anon_sym_DOT] = ACTIONS(3694), - [anon_sym_scoped] = ACTIONS(3685), - [anon_sym_var] = ACTIONS(3685), - [anon_sym_yield] = ACTIONS(3685), - [anon_sym_switch] = ACTIONS(3689), - [anon_sym_when] = ACTIONS(3685), - [anon_sym_DOT_DOT] = ACTIONS(3697), - [anon_sym_and] = ACTIONS(3689), - [anon_sym_or] = ACTIONS(3689), - [anon_sym_PLUS_EQ] = ACTIONS(3697), - [anon_sym_DASH_EQ] = ACTIONS(3697), - [anon_sym_STAR_EQ] = ACTIONS(3697), - [anon_sym_SLASH_EQ] = ACTIONS(3697), - [anon_sym_PERCENT_EQ] = ACTIONS(3697), - [anon_sym_AMP_EQ] = ACTIONS(3697), - [anon_sym_CARET_EQ] = ACTIONS(3697), - [anon_sym_PIPE_EQ] = ACTIONS(3697), - [anon_sym_LT_LT_EQ] = ACTIONS(3697), - [anon_sym_GT_GT_EQ] = ACTIONS(3697), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3697), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3697), - [anon_sym_AMP_AMP] = ACTIONS(3697), - [anon_sym_PIPE_PIPE] = ACTIONS(3697), - [anon_sym_QMARK_QMARK] = ACTIONS(3689), - [anon_sym_from] = ACTIONS(3694), - [anon_sym_into] = ACTIONS(3685), - [anon_sym_join] = ACTIONS(3694), - [anon_sym_on] = ACTIONS(3685), - [anon_sym_equals] = ACTIONS(3685), - [anon_sym_let] = ACTIONS(3694), - [anon_sym_orderby] = ACTIONS(3694), - [anon_sym_ascending] = ACTIONS(3685), - [anon_sym_descending] = ACTIONS(3685), - [anon_sym_group] = ACTIONS(3694), - [anon_sym_by] = ACTIONS(3685), - [anon_sym_select] = ACTIONS(3694), - [anon_sym_as] = ACTIONS(3689), - [anon_sym_is] = ACTIONS(3689), - [anon_sym_DASH_GT] = ACTIONS(3691), - [anon_sym_with] = ACTIONS(3689), + [sym__identifier_token] = ACTIONS(4088), + [anon_sym_alias] = ACTIONS(4088), + [anon_sym_SEMI] = ACTIONS(4090), + [anon_sym_global] = ACTIONS(4088), + [anon_sym_LBRACK] = ACTIONS(4090), + [anon_sym_COLON] = ACTIONS(4090), + [anon_sym_COMMA] = ACTIONS(4090), + [anon_sym_RBRACK] = ACTIONS(4090), + [anon_sym_LPAREN] = ACTIONS(4090), + [anon_sym_RPAREN] = ACTIONS(4090), + [anon_sym_LBRACE] = ACTIONS(4090), + [anon_sym_RBRACE] = ACTIONS(4090), + [anon_sym_file] = ACTIONS(4088), + [anon_sym_LT] = ACTIONS(4088), + [anon_sym_GT] = ACTIONS(4088), + [anon_sym_in] = ACTIONS(4088), + [anon_sym_where] = ACTIONS(4088), + [anon_sym_QMARK] = ACTIONS(4088), + [anon_sym_notnull] = ACTIONS(4088), + [anon_sym_unmanaged] = ACTIONS(4088), + [anon_sym_BANG] = ACTIONS(4088), + [anon_sym_PLUS_PLUS] = ACTIONS(4090), + [anon_sym_DASH_DASH] = ACTIONS(4090), + [anon_sym_PLUS] = ACTIONS(4088), + [anon_sym_DASH] = ACTIONS(4088), + [anon_sym_STAR] = ACTIONS(4090), + [anon_sym_SLASH] = ACTIONS(4088), + [anon_sym_PERCENT] = ACTIONS(4090), + [anon_sym_CARET] = ACTIONS(4090), + [anon_sym_PIPE] = ACTIONS(4088), + [anon_sym_AMP] = ACTIONS(4088), + [anon_sym_LT_LT] = ACTIONS(4090), + [anon_sym_GT_GT] = ACTIONS(4088), + [anon_sym_GT_GT_GT] = ACTIONS(4090), + [anon_sym_EQ_EQ] = ACTIONS(4090), + [anon_sym_BANG_EQ] = ACTIONS(4090), + [anon_sym_GT_EQ] = ACTIONS(4090), + [anon_sym_LT_EQ] = ACTIONS(4090), + [anon_sym_DOT] = ACTIONS(4088), + [anon_sym_scoped] = ACTIONS(4088), + [anon_sym_EQ_GT] = ACTIONS(4090), + [anon_sym_var] = ACTIONS(4088), + [anon_sym_yield] = ACTIONS(4088), + [anon_sym_switch] = ACTIONS(4088), + [anon_sym_when] = ACTIONS(4088), + [sym_discard] = ACTIONS(4088), + [anon_sym_DOT_DOT] = ACTIONS(4090), + [anon_sym_and] = ACTIONS(4088), + [anon_sym_or] = ACTIONS(4088), + [anon_sym_AMP_AMP] = ACTIONS(4090), + [anon_sym_PIPE_PIPE] = ACTIONS(4090), + [anon_sym_QMARK_QMARK] = ACTIONS(4090), + [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(4088), + [anon_sym_is] = ACTIONS(4088), + [anon_sym_DASH_GT] = ACTIONS(4090), + [anon_sym_with] = ACTIONS(4088), + [aux_sym_preproc_if_token3] = ACTIONS(4090), + [aux_sym_preproc_else_token1] = ACTIONS(4090), + [aux_sym_preproc_elif_token1] = ACTIONS(4090), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -420044,77 +419722,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), - [sym__identifier_token] = ACTIONS(4104), - [anon_sym_alias] = ACTIONS(4104), - [anon_sym_SEMI] = ACTIONS(4106), - [anon_sym_global] = ACTIONS(4104), - [anon_sym_LBRACK] = ACTIONS(4106), - [anon_sym_COLON] = ACTIONS(4106), - [anon_sym_COMMA] = ACTIONS(4106), - [anon_sym_RBRACK] = ACTIONS(4106), - [anon_sym_LPAREN] = ACTIONS(4106), - [anon_sym_RPAREN] = ACTIONS(4106), - [anon_sym_LBRACE] = ACTIONS(4106), - [anon_sym_RBRACE] = ACTIONS(4106), - [anon_sym_file] = ACTIONS(4104), - [anon_sym_LT] = ACTIONS(4104), - [anon_sym_GT] = ACTIONS(4104), - [anon_sym_in] = ACTIONS(4104), - [anon_sym_where] = ACTIONS(4104), - [anon_sym_QMARK] = ACTIONS(4104), - [anon_sym_notnull] = ACTIONS(4104), - [anon_sym_unmanaged] = ACTIONS(4104), - [anon_sym_BANG] = ACTIONS(4104), - [anon_sym_PLUS_PLUS] = ACTIONS(4106), - [anon_sym_DASH_DASH] = ACTIONS(4106), - [anon_sym_PLUS] = ACTIONS(4104), - [anon_sym_DASH] = ACTIONS(4104), - [anon_sym_STAR] = ACTIONS(4106), - [anon_sym_SLASH] = ACTIONS(4104), - [anon_sym_PERCENT] = ACTIONS(4106), - [anon_sym_CARET] = ACTIONS(4106), - [anon_sym_PIPE] = ACTIONS(4104), - [anon_sym_AMP] = ACTIONS(4104), - [anon_sym_LT_LT] = ACTIONS(4106), - [anon_sym_GT_GT] = ACTIONS(4104), - [anon_sym_GT_GT_GT] = ACTIONS(4106), - [anon_sym_EQ_EQ] = ACTIONS(4106), - [anon_sym_BANG_EQ] = ACTIONS(4106), - [anon_sym_GT_EQ] = ACTIONS(4106), - [anon_sym_LT_EQ] = ACTIONS(4106), - [anon_sym_DOT] = ACTIONS(4104), - [anon_sym_scoped] = ACTIONS(4104), - [anon_sym_EQ_GT] = ACTIONS(4106), - [anon_sym_var] = ACTIONS(4104), - [anon_sym_yield] = ACTIONS(4104), - [anon_sym_switch] = ACTIONS(4104), - [anon_sym_when] = ACTIONS(4104), - [sym_discard] = ACTIONS(4104), - [anon_sym_DOT_DOT] = ACTIONS(4106), - [anon_sym_and] = ACTIONS(4104), - [anon_sym_or] = ACTIONS(4104), - [anon_sym_AMP_AMP] = ACTIONS(4106), - [anon_sym_PIPE_PIPE] = ACTIONS(4106), - [anon_sym_QMARK_QMARK] = ACTIONS(4106), - [anon_sym_from] = ACTIONS(4104), - [anon_sym_into] = ACTIONS(4104), - [anon_sym_join] = ACTIONS(4104), - [anon_sym_on] = ACTIONS(4104), - [anon_sym_equals] = ACTIONS(4104), - [anon_sym_let] = ACTIONS(4104), - [anon_sym_orderby] = ACTIONS(4104), - [anon_sym_ascending] = ACTIONS(4104), - [anon_sym_descending] = ACTIONS(4104), - [anon_sym_group] = ACTIONS(4104), - [anon_sym_by] = ACTIONS(4104), - [anon_sym_select] = ACTIONS(4104), - [anon_sym_as] = ACTIONS(4104), - [anon_sym_is] = ACTIONS(4104), - [anon_sym_DASH_GT] = ACTIONS(4106), - [anon_sym_with] = ACTIONS(4104), - [aux_sym_preproc_if_token3] = ACTIONS(4106), - [aux_sym_preproc_else_token1] = ACTIONS(4106), - [aux_sym_preproc_elif_token1] = ACTIONS(4106), + [sym__identifier_token] = ACTIONS(3961), + [anon_sym_alias] = ACTIONS(3961), + [anon_sym_SEMI] = ACTIONS(3963), + [anon_sym_global] = ACTIONS(3961), + [anon_sym_LBRACK] = ACTIONS(4033), + [anon_sym_COLON] = ACTIONS(3963), + [anon_sym_COMMA] = ACTIONS(3963), + [anon_sym_RBRACK] = ACTIONS(3963), + [anon_sym_LPAREN] = ACTIONS(3963), + [anon_sym_RPAREN] = ACTIONS(3963), + [anon_sym_LBRACE] = ACTIONS(3963), + [anon_sym_RBRACE] = ACTIONS(3963), + [anon_sym_file] = ACTIONS(3961), + [anon_sym_LT] = ACTIONS(3961), + [anon_sym_GT] = ACTIONS(3961), + [anon_sym_in] = ACTIONS(3961), + [anon_sym_where] = ACTIONS(3961), + [anon_sym_QMARK] = ACTIONS(4036), + [anon_sym_notnull] = ACTIONS(3961), + [anon_sym_unmanaged] = ACTIONS(3961), + [anon_sym_BANG] = ACTIONS(3961), + [anon_sym_PLUS_PLUS] = ACTIONS(3963), + [anon_sym_DASH_DASH] = ACTIONS(3963), + [anon_sym_PLUS] = ACTIONS(3961), + [anon_sym_DASH] = ACTIONS(3961), + [anon_sym_STAR] = ACTIONS(4039), + [anon_sym_SLASH] = ACTIONS(3961), + [anon_sym_PERCENT] = ACTIONS(3963), + [anon_sym_CARET] = ACTIONS(3963), + [anon_sym_PIPE] = ACTIONS(3961), + [anon_sym_AMP] = ACTIONS(3961), + [anon_sym_LT_LT] = ACTIONS(3963), + [anon_sym_GT_GT] = ACTIONS(3961), + [anon_sym_GT_GT_GT] = ACTIONS(3963), + [anon_sym_EQ_EQ] = ACTIONS(3963), + [anon_sym_BANG_EQ] = ACTIONS(3963), + [anon_sym_GT_EQ] = ACTIONS(3963), + [anon_sym_LT_EQ] = ACTIONS(3963), + [anon_sym_DOT] = ACTIONS(4092), + [anon_sym_scoped] = ACTIONS(3961), + [anon_sym_EQ_GT] = ACTIONS(3963), + [anon_sym_var] = ACTIONS(3961), + [anon_sym_yield] = ACTIONS(3961), + [anon_sym_switch] = ACTIONS(3961), + [anon_sym_when] = ACTIONS(3961), + [sym_discard] = ACTIONS(3961), + [anon_sym_DOT_DOT] = ACTIONS(3963), + [anon_sym_and] = ACTIONS(3961), + [anon_sym_or] = ACTIONS(3961), + [anon_sym_AMP_AMP] = ACTIONS(3963), + [anon_sym_PIPE_PIPE] = ACTIONS(3963), + [anon_sym_QMARK_QMARK] = ACTIONS(3963), + [anon_sym_from] = ACTIONS(3961), + [anon_sym_into] = ACTIONS(3961), + [anon_sym_join] = ACTIONS(3961), + [anon_sym_on] = ACTIONS(3961), + [anon_sym_equals] = ACTIONS(3961), + [anon_sym_let] = ACTIONS(3961), + [anon_sym_orderby] = ACTIONS(3961), + [anon_sym_ascending] = ACTIONS(3961), + [anon_sym_descending] = ACTIONS(3961), + [anon_sym_group] = ACTIONS(3961), + [anon_sym_by] = ACTIONS(3961), + [anon_sym_select] = ACTIONS(3961), + [anon_sym_as] = ACTIONS(3961), + [anon_sym_is] = ACTIONS(3961), + [anon_sym_DASH_GT] = ACTIONS(4094), + [anon_sym_with] = ACTIONS(3961), + [aux_sym_preproc_if_token3] = ACTIONS(3963), + [aux_sym_preproc_else_token1] = ACTIONS(3963), + [aux_sym_preproc_elif_token1] = ACTIONS(3963), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -420136,77 +419814,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(3685), - [anon_sym_alias] = ACTIONS(3685), - [anon_sym_global] = ACTIONS(3685), - [anon_sym_EQ] = ACTIONS(3689), - [anon_sym_LBRACK] = ACTIONS(3691), - [anon_sym_LPAREN] = ACTIONS(3691), - [anon_sym_file] = ACTIONS(3685), - [anon_sym_LT] = ACTIONS(3689), - [anon_sym_GT] = ACTIONS(3689), - [anon_sym_where] = ACTIONS(3685), - [anon_sym_QMARK] = ACTIONS(3694), - [anon_sym_notnull] = ACTIONS(3685), - [anon_sym_unmanaged] = ACTIONS(3685), - [anon_sym_BANG] = ACTIONS(3689), - [anon_sym_PLUS_PLUS] = ACTIONS(3697), - [anon_sym_DASH_DASH] = ACTIONS(3697), - [anon_sym_PLUS] = ACTIONS(3689), - [anon_sym_DASH] = ACTIONS(3689), - [anon_sym_STAR] = ACTIONS(3694), - [anon_sym_SLASH] = ACTIONS(3689), - [anon_sym_PERCENT] = ACTIONS(3689), - [anon_sym_CARET] = ACTIONS(3689), - [anon_sym_PIPE] = ACTIONS(3689), - [anon_sym_AMP] = ACTIONS(3689), - [anon_sym_LT_LT] = ACTIONS(3689), - [anon_sym_GT_GT] = ACTIONS(3689), - [anon_sym_GT_GT_GT] = ACTIONS(3689), - [anon_sym_EQ_EQ] = ACTIONS(3697), - [anon_sym_BANG_EQ] = ACTIONS(3697), - [anon_sym_GT_EQ] = ACTIONS(3697), - [anon_sym_LT_EQ] = ACTIONS(3697), - [anon_sym_DOT] = ACTIONS(3694), - [anon_sym_scoped] = ACTIONS(3685), - [anon_sym_var] = ACTIONS(3685), - [anon_sym_yield] = ACTIONS(3685), - [anon_sym_switch] = ACTIONS(3689), - [anon_sym_when] = ACTIONS(3685), - [anon_sym_DOT_DOT] = ACTIONS(3697), - [anon_sym_and] = ACTIONS(3689), - [anon_sym_or] = ACTIONS(3689), - [anon_sym_PLUS_EQ] = ACTIONS(3697), - [anon_sym_DASH_EQ] = ACTIONS(3697), - [anon_sym_STAR_EQ] = ACTIONS(3697), - [anon_sym_SLASH_EQ] = ACTIONS(3697), - [anon_sym_PERCENT_EQ] = ACTIONS(3697), - [anon_sym_AMP_EQ] = ACTIONS(3697), - [anon_sym_CARET_EQ] = ACTIONS(3697), - [anon_sym_PIPE_EQ] = ACTIONS(3697), - [anon_sym_LT_LT_EQ] = ACTIONS(3697), - [anon_sym_GT_GT_EQ] = ACTIONS(3697), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3697), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3697), - [anon_sym_AMP_AMP] = ACTIONS(3697), - [anon_sym_PIPE_PIPE] = ACTIONS(3697), - [anon_sym_QMARK_QMARK] = ACTIONS(3689), - [anon_sym_from] = ACTIONS(3685), - [anon_sym_into] = ACTIONS(3694), - [anon_sym_join] = ACTIONS(3685), - [anon_sym_on] = ACTIONS(3685), - [anon_sym_equals] = ACTIONS(3694), - [anon_sym_let] = ACTIONS(3685), - [anon_sym_orderby] = ACTIONS(3685), - [anon_sym_ascending] = ACTIONS(3685), - [anon_sym_descending] = ACTIONS(3685), - [anon_sym_group] = ACTIONS(3685), - [anon_sym_by] = ACTIONS(3685), - [anon_sym_select] = ACTIONS(3685), - [anon_sym_as] = ACTIONS(3689), - [anon_sym_is] = ACTIONS(3689), - [anon_sym_DASH_GT] = ACTIONS(3691), - [anon_sym_with] = ACTIONS(3689), + [sym__identifier_token] = ACTIONS(4096), + [anon_sym_alias] = ACTIONS(4096), + [anon_sym_SEMI] = ACTIONS(4098), + [anon_sym_global] = ACTIONS(4096), + [anon_sym_LBRACK] = ACTIONS(4098), + [anon_sym_COLON] = ACTIONS(4098), + [anon_sym_COMMA] = ACTIONS(4098), + [anon_sym_RBRACK] = ACTIONS(4098), + [anon_sym_LPAREN] = ACTIONS(4098), + [anon_sym_RPAREN] = ACTIONS(4098), + [anon_sym_LBRACE] = ACTIONS(4098), + [anon_sym_RBRACE] = ACTIONS(4098), + [anon_sym_file] = ACTIONS(4096), + [anon_sym_LT] = ACTIONS(4096), + [anon_sym_GT] = ACTIONS(4096), + [anon_sym_in] = ACTIONS(4096), + [anon_sym_where] = ACTIONS(4096), + [anon_sym_QMARK] = ACTIONS(4096), + [anon_sym_notnull] = ACTIONS(4096), + [anon_sym_unmanaged] = ACTIONS(4096), + [anon_sym_BANG] = ACTIONS(4096), + [anon_sym_PLUS_PLUS] = ACTIONS(4098), + [anon_sym_DASH_DASH] = ACTIONS(4098), + [anon_sym_PLUS] = ACTIONS(4096), + [anon_sym_DASH] = ACTIONS(4096), + [anon_sym_STAR] = ACTIONS(4098), + [anon_sym_SLASH] = ACTIONS(4096), + [anon_sym_PERCENT] = ACTIONS(4098), + [anon_sym_CARET] = ACTIONS(4098), + [anon_sym_PIPE] = ACTIONS(4096), + [anon_sym_AMP] = ACTIONS(4096), + [anon_sym_LT_LT] = ACTIONS(4098), + [anon_sym_GT_GT] = ACTIONS(4096), + [anon_sym_GT_GT_GT] = ACTIONS(4098), + [anon_sym_EQ_EQ] = ACTIONS(4098), + [anon_sym_BANG_EQ] = ACTIONS(4098), + [anon_sym_GT_EQ] = ACTIONS(4098), + [anon_sym_LT_EQ] = ACTIONS(4098), + [anon_sym_DOT] = ACTIONS(4096), + [anon_sym_scoped] = ACTIONS(4096), + [anon_sym_EQ_GT] = ACTIONS(4098), + [anon_sym_var] = ACTIONS(4096), + [anon_sym_yield] = ACTIONS(4096), + [anon_sym_switch] = ACTIONS(4096), + [anon_sym_when] = ACTIONS(4096), + [sym_discard] = ACTIONS(4096), + [anon_sym_DOT_DOT] = ACTIONS(4098), + [anon_sym_and] = ACTIONS(4096), + [anon_sym_or] = ACTIONS(4096), + [anon_sym_AMP_AMP] = ACTIONS(4098), + [anon_sym_PIPE_PIPE] = ACTIONS(4098), + [anon_sym_QMARK_QMARK] = ACTIONS(4098), + [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_ascending] = ACTIONS(4096), + [anon_sym_descending] = 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(4098), + [anon_sym_with] = ACTIONS(4096), + [aux_sym_preproc_if_token3] = ACTIONS(4098), + [aux_sym_preproc_else_token1] = ACTIONS(4098), + [aux_sym_preproc_elif_token1] = ACTIONS(4098), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -420219,14 +419897,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2409] = { - [sym_parameter_list] = STATE(7311), - [sym_positional_pattern_clause] = STATE(2501), - [sym_property_pattern_clause] = STATE(2552), - [sym__variable_designation] = STATE(4779), - [sym_parenthesized_variable_designation] = STATE(4761), - [sym__lambda_parameters] = STATE(7536), - [sym_identifier] = STATE(4381), - [sym__reserved_identifier] = STATE(4323), [sym_preproc_region] = STATE(2409), [sym_preproc_endregion] = STATE(2409), [sym_preproc_line] = STATE(2409), @@ -420236,68 +419906,77 @@ 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(4050), - [anon_sym_alias] = ACTIONS(4052), - [anon_sym_global] = ACTIONS(4052), - [anon_sym_LBRACK] = ACTIONS(3893), - [anon_sym_COLON] = ACTIONS(3893), - [anon_sym_COMMA] = ACTIONS(3893), - [anon_sym_LPAREN] = ACTIONS(3893), - [anon_sym_LBRACE] = ACTIONS(4054), - [anon_sym_file] = ACTIONS(4052), - [anon_sym_LT] = ACTIONS(3895), - [anon_sym_GT] = ACTIONS(3895), - [anon_sym_where] = ACTIONS(4052), - [anon_sym_QMARK] = ACTIONS(3895), - [anon_sym_notnull] = ACTIONS(4052), - [anon_sym_unmanaged] = ACTIONS(4052), - [anon_sym_BANG] = ACTIONS(3895), - [anon_sym_PLUS_PLUS] = ACTIONS(3893), - [anon_sym_DASH_DASH] = ACTIONS(3893), - [anon_sym_PLUS] = ACTIONS(3895), - [anon_sym_DASH] = ACTIONS(3895), - [anon_sym_STAR] = ACTIONS(3893), - [anon_sym_SLASH] = ACTIONS(3895), - [anon_sym_PERCENT] = ACTIONS(3893), - [anon_sym_CARET] = ACTIONS(3893), - [anon_sym_PIPE] = ACTIONS(3895), - [anon_sym_AMP] = ACTIONS(3895), - [anon_sym_LT_LT] = ACTIONS(3893), - [anon_sym_GT_GT] = ACTIONS(3895), - [anon_sym_GT_GT_GT] = ACTIONS(3893), - [anon_sym_EQ_EQ] = ACTIONS(3893), - [anon_sym_BANG_EQ] = ACTIONS(3893), - [anon_sym_GT_EQ] = ACTIONS(3893), - [anon_sym_LT_EQ] = ACTIONS(3893), - [anon_sym_DOT] = ACTIONS(3895), - [anon_sym_scoped] = ACTIONS(4052), - [anon_sym_var] = ACTIONS(4052), - [anon_sym_yield] = ACTIONS(4052), - [anon_sym_switch] = ACTIONS(3895), - [anon_sym_when] = ACTIONS(4052), - [sym_discard] = ACTIONS(4056), - [anon_sym_DOT_DOT] = ACTIONS(3893), - [anon_sym_and] = ACTIONS(3895), - [anon_sym_or] = ACTIONS(3895), - [anon_sym_AMP_AMP] = ACTIONS(3893), - [anon_sym_PIPE_PIPE] = ACTIONS(3893), - [anon_sym_QMARK_QMARK] = ACTIONS(3893), - [anon_sym_from] = ACTIONS(4052), - [anon_sym_into] = ACTIONS(3895), - [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(3895), - [anon_sym_is] = ACTIONS(3895), - [anon_sym_DASH_GT] = ACTIONS(3893), - [anon_sym_with] = ACTIONS(3895), + [sym__identifier_token] = ACTIONS(4100), + [anon_sym_alias] = ACTIONS(4100), + [anon_sym_SEMI] = ACTIONS(4102), + [anon_sym_global] = ACTIONS(4100), + [anon_sym_LBRACK] = ACTIONS(4102), + [anon_sym_COLON] = ACTIONS(4102), + [anon_sym_COMMA] = ACTIONS(4102), + [anon_sym_RBRACK] = ACTIONS(4102), + [anon_sym_LPAREN] = ACTIONS(4102), + [anon_sym_RPAREN] = ACTIONS(4102), + [anon_sym_LBRACE] = ACTIONS(4102), + [anon_sym_RBRACE] = ACTIONS(4102), + [anon_sym_file] = ACTIONS(4100), + [anon_sym_LT] = ACTIONS(4100), + [anon_sym_GT] = ACTIONS(4100), + [anon_sym_in] = ACTIONS(4100), + [anon_sym_where] = ACTIONS(4100), + [anon_sym_QMARK] = ACTIONS(4100), + [anon_sym_notnull] = ACTIONS(4100), + [anon_sym_unmanaged] = ACTIONS(4100), + [anon_sym_BANG] = ACTIONS(4100), + [anon_sym_PLUS_PLUS] = ACTIONS(4102), + [anon_sym_DASH_DASH] = ACTIONS(4102), + [anon_sym_PLUS] = ACTIONS(4100), + [anon_sym_DASH] = ACTIONS(4100), + [anon_sym_STAR] = ACTIONS(4102), + [anon_sym_SLASH] = ACTIONS(4100), + [anon_sym_PERCENT] = ACTIONS(4102), + [anon_sym_CARET] = ACTIONS(4102), + [anon_sym_PIPE] = ACTIONS(4100), + [anon_sym_AMP] = ACTIONS(4100), + [anon_sym_LT_LT] = ACTIONS(4102), + [anon_sym_GT_GT] = ACTIONS(4100), + [anon_sym_GT_GT_GT] = ACTIONS(4102), + [anon_sym_EQ_EQ] = ACTIONS(4102), + [anon_sym_BANG_EQ] = ACTIONS(4102), + [anon_sym_GT_EQ] = ACTIONS(4102), + [anon_sym_LT_EQ] = ACTIONS(4102), + [anon_sym_DOT] = ACTIONS(4100), + [anon_sym_scoped] = ACTIONS(4100), + [anon_sym_EQ_GT] = ACTIONS(4102), + [anon_sym_var] = ACTIONS(4100), + [anon_sym_yield] = ACTIONS(4100), + [anon_sym_switch] = ACTIONS(4100), + [anon_sym_when] = ACTIONS(4100), + [sym_discard] = ACTIONS(4100), + [anon_sym_DOT_DOT] = ACTIONS(4102), + [anon_sym_and] = ACTIONS(4100), + [anon_sym_or] = ACTIONS(4100), + [anon_sym_AMP_AMP] = ACTIONS(4102), + [anon_sym_PIPE_PIPE] = ACTIONS(4102), + [anon_sym_QMARK_QMARK] = ACTIONS(4102), + [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_ascending] = ACTIONS(4100), + [anon_sym_descending] = 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(4102), + [anon_sym_with] = ACTIONS(4100), + [aux_sym_preproc_if_token3] = ACTIONS(4102), + [aux_sym_preproc_else_token1] = ACTIONS(4102), + [aux_sym_preproc_elif_token1] = ACTIONS(4102), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -420308,7 +419987,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(3893), }, [2410] = { [sym_preproc_region] = STATE(2410), @@ -420320,77 +419998,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2410), [sym_preproc_define] = STATE(2410), [sym_preproc_undef] = STATE(2410), - [sym__identifier_token] = ACTIONS(3685), - [anon_sym_alias] = ACTIONS(3685), - [anon_sym_global] = ACTIONS(3685), - [anon_sym_EQ] = ACTIONS(3689), - [anon_sym_LBRACK] = ACTIONS(3691), - [anon_sym_LPAREN] = ACTIONS(3691), - [anon_sym_file] = ACTIONS(3685), - [anon_sym_LT] = ACTIONS(3689), - [anon_sym_GT] = ACTIONS(3689), - [anon_sym_where] = ACTIONS(3685), - [anon_sym_QMARK] = ACTIONS(3694), - [anon_sym_notnull] = ACTIONS(3685), - [anon_sym_unmanaged] = ACTIONS(3685), - [anon_sym_BANG] = ACTIONS(3689), - [anon_sym_PLUS_PLUS] = ACTIONS(3697), - [anon_sym_DASH_DASH] = ACTIONS(3697), - [anon_sym_PLUS] = ACTIONS(3689), - [anon_sym_DASH] = ACTIONS(3689), - [anon_sym_STAR] = ACTIONS(3694), - [anon_sym_SLASH] = ACTIONS(3689), - [anon_sym_PERCENT] = ACTIONS(3689), - [anon_sym_CARET] = ACTIONS(3689), - [anon_sym_PIPE] = ACTIONS(3689), - [anon_sym_AMP] = ACTIONS(3689), - [anon_sym_LT_LT] = ACTIONS(3689), - [anon_sym_GT_GT] = ACTIONS(3689), - [anon_sym_GT_GT_GT] = ACTIONS(3689), - [anon_sym_EQ_EQ] = ACTIONS(3697), - [anon_sym_BANG_EQ] = ACTIONS(3697), - [anon_sym_GT_EQ] = ACTIONS(3697), - [anon_sym_LT_EQ] = ACTIONS(3697), - [anon_sym_DOT] = ACTIONS(3694), - [anon_sym_scoped] = ACTIONS(3685), - [anon_sym_var] = ACTIONS(3685), - [anon_sym_yield] = ACTIONS(3685), - [anon_sym_switch] = ACTIONS(3689), - [anon_sym_when] = ACTIONS(3685), - [anon_sym_DOT_DOT] = ACTIONS(3697), - [anon_sym_and] = ACTIONS(3689), - [anon_sym_or] = ACTIONS(3689), - [anon_sym_PLUS_EQ] = ACTIONS(3697), - [anon_sym_DASH_EQ] = ACTIONS(3697), - [anon_sym_STAR_EQ] = ACTIONS(3697), - [anon_sym_SLASH_EQ] = ACTIONS(3697), - [anon_sym_PERCENT_EQ] = ACTIONS(3697), - [anon_sym_AMP_EQ] = ACTIONS(3697), - [anon_sym_CARET_EQ] = ACTIONS(3697), - [anon_sym_PIPE_EQ] = ACTIONS(3697), - [anon_sym_LT_LT_EQ] = ACTIONS(3697), - [anon_sym_GT_GT_EQ] = ACTIONS(3697), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3697), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3697), - [anon_sym_AMP_AMP] = ACTIONS(3697), - [anon_sym_PIPE_PIPE] = ACTIONS(3697), - [anon_sym_QMARK_QMARK] = ACTIONS(3689), - [anon_sym_from] = ACTIONS(3685), - [anon_sym_into] = ACTIONS(3694), - [anon_sym_join] = ACTIONS(3685), - [anon_sym_on] = ACTIONS(3694), - [anon_sym_equals] = ACTIONS(3685), - [anon_sym_let] = ACTIONS(3685), - [anon_sym_orderby] = ACTIONS(3685), - [anon_sym_ascending] = ACTIONS(3685), - [anon_sym_descending] = ACTIONS(3685), - [anon_sym_group] = ACTIONS(3685), - [anon_sym_by] = ACTIONS(3685), - [anon_sym_select] = ACTIONS(3685), - [anon_sym_as] = ACTIONS(3689), - [anon_sym_is] = ACTIONS(3689), - [anon_sym_DASH_GT] = ACTIONS(3691), - [anon_sym_with] = ACTIONS(3689), + [sym__identifier_token] = ACTIONS(3961), + [anon_sym_alias] = ACTIONS(3961), + [anon_sym_SEMI] = ACTIONS(3963), + [anon_sym_global] = ACTIONS(3961), + [anon_sym_LBRACK] = ACTIONS(4033), + [anon_sym_COMMA] = ACTIONS(3963), + [anon_sym_RBRACK] = ACTIONS(3963), + [anon_sym_LPAREN] = ACTIONS(3963), + [anon_sym_RPAREN] = ACTIONS(3963), + [anon_sym_LBRACE] = ACTIONS(3963), + [anon_sym_RBRACE] = ACTIONS(3963), + [anon_sym_file] = ACTIONS(3961), + [anon_sym_LT] = ACTIONS(3961), + [anon_sym_GT] = ACTIONS(3961), + [anon_sym_in] = ACTIONS(3961), + [anon_sym_where] = ACTIONS(3961), + [anon_sym_QMARK] = ACTIONS(4036), + [anon_sym_notnull] = ACTIONS(3961), + [anon_sym_unmanaged] = ACTIONS(3961), + [anon_sym_BANG] = ACTIONS(3961), + [anon_sym_PLUS_PLUS] = ACTIONS(3963), + [anon_sym_DASH_DASH] = ACTIONS(3963), + [anon_sym_PLUS] = ACTIONS(3961), + [anon_sym_DASH] = ACTIONS(3961), + [anon_sym_STAR] = ACTIONS(4039), + [anon_sym_SLASH] = ACTIONS(3961), + [anon_sym_PERCENT] = ACTIONS(3963), + [anon_sym_CARET] = ACTIONS(3963), + [anon_sym_PIPE] = ACTIONS(3961), + [anon_sym_AMP] = ACTIONS(3961), + [anon_sym_LT_LT] = ACTIONS(3963), + [anon_sym_GT_GT] = ACTIONS(3961), + [anon_sym_GT_GT_GT] = ACTIONS(3963), + [anon_sym_EQ_EQ] = ACTIONS(3963), + [anon_sym_BANG_EQ] = ACTIONS(3963), + [anon_sym_GT_EQ] = ACTIONS(3963), + [anon_sym_LT_EQ] = ACTIONS(3963), + [anon_sym_DOT] = ACTIONS(4104), + [anon_sym_scoped] = ACTIONS(3961), + [anon_sym_EQ_GT] = ACTIONS(3963), + [anon_sym_var] = ACTIONS(3961), + [anon_sym_yield] = ACTIONS(3961), + [anon_sym_switch] = ACTIONS(3961), + [anon_sym_when] = ACTIONS(3961), + [sym_discard] = ACTIONS(3961), + [anon_sym_DOT_DOT] = ACTIONS(3963), + [anon_sym_and] = ACTIONS(3961), + [anon_sym_or] = ACTIONS(3961), + [anon_sym_AMP_AMP] = ACTIONS(3963), + [anon_sym_PIPE_PIPE] = ACTIONS(3963), + [anon_sym_QMARK_QMARK] = ACTIONS(3963), + [anon_sym_from] = ACTIONS(3961), + [anon_sym_into] = ACTIONS(3961), + [anon_sym_join] = ACTIONS(3961), + [anon_sym_on] = ACTIONS(3961), + [anon_sym_equals] = ACTIONS(3961), + [anon_sym_let] = ACTIONS(3961), + [anon_sym_orderby] = ACTIONS(3961), + [anon_sym_ascending] = ACTIONS(3961), + [anon_sym_descending] = ACTIONS(3961), + [anon_sym_group] = ACTIONS(3961), + [anon_sym_by] = ACTIONS(3961), + [anon_sym_select] = ACTIONS(3961), + [anon_sym_as] = ACTIONS(3961), + [anon_sym_is] = ACTIONS(3961), + [anon_sym_DASH_GT] = ACTIONS(4094), + [anon_sym_with] = ACTIONS(3961), + [aux_sym_preproc_if_token3] = ACTIONS(3963), + [aux_sym_preproc_else_token1] = ACTIONS(3963), + [aux_sym_preproc_elif_token1] = ACTIONS(3963), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -420412,6 +420089,97 @@ 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(3961), + [anon_sym_alias] = ACTIONS(3961), + [anon_sym_SEMI] = ACTIONS(3963), + [anon_sym_global] = ACTIONS(3961), + [anon_sym_LBRACK] = ACTIONS(4033), + [anon_sym_COMMA] = ACTIONS(3963), + [anon_sym_RBRACK] = ACTIONS(3963), + [anon_sym_LPAREN] = ACTIONS(3963), + [anon_sym_RPAREN] = ACTIONS(3963), + [anon_sym_LBRACE] = ACTIONS(3963), + [anon_sym_RBRACE] = ACTIONS(3963), + [anon_sym_file] = ACTIONS(3961), + [anon_sym_LT] = ACTIONS(3961), + [anon_sym_GT] = ACTIONS(3961), + [anon_sym_in] = ACTIONS(3961), + [anon_sym_where] = ACTIONS(3961), + [anon_sym_QMARK] = ACTIONS(4036), + [anon_sym_notnull] = ACTIONS(3961), + [anon_sym_unmanaged] = ACTIONS(3961), + [anon_sym_BANG] = ACTIONS(3961), + [anon_sym_PLUS_PLUS] = ACTIONS(3963), + [anon_sym_DASH_DASH] = ACTIONS(3963), + [anon_sym_PLUS] = ACTIONS(3961), + [anon_sym_DASH] = ACTIONS(3961), + [anon_sym_STAR] = ACTIONS(4039), + [anon_sym_SLASH] = ACTIONS(3961), + [anon_sym_PERCENT] = ACTIONS(3963), + [anon_sym_CARET] = ACTIONS(3963), + [anon_sym_PIPE] = ACTIONS(3961), + [anon_sym_AMP] = ACTIONS(3961), + [anon_sym_LT_LT] = ACTIONS(3963), + [anon_sym_GT_GT] = ACTIONS(3961), + [anon_sym_GT_GT_GT] = ACTIONS(3963), + [anon_sym_EQ_EQ] = ACTIONS(3963), + [anon_sym_BANG_EQ] = ACTIONS(3963), + [anon_sym_GT_EQ] = ACTIONS(3963), + [anon_sym_LT_EQ] = ACTIONS(3963), + [anon_sym_DOT] = ACTIONS(4106), + [anon_sym_scoped] = ACTIONS(3961), + [anon_sym_EQ_GT] = ACTIONS(3963), + [anon_sym_var] = ACTIONS(3961), + [anon_sym_yield] = ACTIONS(3961), + [anon_sym_switch] = ACTIONS(3961), + [anon_sym_when] = ACTIONS(3961), + [sym_discard] = ACTIONS(3961), + [anon_sym_DOT_DOT] = ACTIONS(3963), + [anon_sym_and] = ACTIONS(3961), + [anon_sym_or] = ACTIONS(3961), + [anon_sym_AMP_AMP] = ACTIONS(3963), + [anon_sym_PIPE_PIPE] = ACTIONS(3963), + [anon_sym_QMARK_QMARK] = ACTIONS(3963), + [anon_sym_from] = ACTIONS(3961), + [anon_sym_into] = ACTIONS(3961), + [anon_sym_join] = ACTIONS(3961), + [anon_sym_on] = ACTIONS(3961), + [anon_sym_equals] = ACTIONS(3961), + [anon_sym_let] = ACTIONS(3961), + [anon_sym_orderby] = ACTIONS(3961), + [anon_sym_ascending] = ACTIONS(3961), + [anon_sym_descending] = ACTIONS(3961), + [anon_sym_group] = ACTIONS(3961), + [anon_sym_by] = ACTIONS(3961), + [anon_sym_select] = ACTIONS(3961), + [anon_sym_as] = ACTIONS(3961), + [anon_sym_is] = ACTIONS(3961), + [anon_sym_DASH_GT] = ACTIONS(3963), + [anon_sym_with] = ACTIONS(3961), + [aux_sym_preproc_if_token3] = ACTIONS(3963), + [aux_sym_preproc_else_token1] = ACTIONS(3963), + [aux_sym_preproc_elif_token1] = ACTIONS(3963), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + }, + [2412] = { + [sym_preproc_region] = STATE(2412), + [sym_preproc_endregion] = STATE(2412), + [sym_preproc_line] = STATE(2412), + [sym_preproc_pragma] = STATE(2412), + [sym_preproc_nullable] = STATE(2412), + [sym_preproc_error] = STATE(2412), + [sym_preproc_warning] = STATE(2412), + [sym_preproc_define] = STATE(2412), + [sym_preproc_undef] = STATE(2412), [sym__identifier_token] = ACTIONS(4108), [anon_sym_alias] = ACTIONS(4108), [anon_sym_SEMI] = ACTIONS(4110), @@ -420422,7 +420190,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_RBRACK] = ACTIONS(4110), [anon_sym_LPAREN] = ACTIONS(4110), [anon_sym_RPAREN] = ACTIONS(4110), - [anon_sym_LBRACE] = ACTIONS(4110), [anon_sym_RBRACE] = ACTIONS(4110), [anon_sym_file] = ACTIONS(4108), [anon_sym_LT] = ACTIONS(4108), @@ -420494,16 +420261,107 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), }, - [2412] = { - [sym_preproc_region] = STATE(2412), - [sym_preproc_endregion] = STATE(2412), - [sym_preproc_line] = STATE(2412), - [sym_preproc_pragma] = STATE(2412), - [sym_preproc_nullable] = STATE(2412), - [sym_preproc_error] = STATE(2412), - [sym_preproc_warning] = STATE(2412), - [sym_preproc_define] = STATE(2412), - [sym_preproc_undef] = STATE(2412), + [2413] = { + [sym_preproc_region] = STATE(2413), + [sym_preproc_endregion] = STATE(2413), + [sym_preproc_line] = STATE(2413), + [sym_preproc_pragma] = STATE(2413), + [sym_preproc_nullable] = STATE(2413), + [sym_preproc_error] = STATE(2413), + [sym_preproc_warning] = STATE(2413), + [sym_preproc_define] = STATE(2413), + [sym_preproc_undef] = STATE(2413), + [sym__identifier_token] = ACTIONS(4108), + [anon_sym_alias] = ACTIONS(4108), + [anon_sym_SEMI] = ACTIONS(4110), + [anon_sym_global] = ACTIONS(4108), + [anon_sym_LBRACK] = ACTIONS(4110), + [anon_sym_COLON] = ACTIONS(4110), + [anon_sym_COMMA] = ACTIONS(4110), + [anon_sym_RBRACK] = ACTIONS(4110), + [anon_sym_LPAREN] = ACTIONS(4110), + [anon_sym_RPAREN] = ACTIONS(4110), + [anon_sym_RBRACE] = ACTIONS(4110), + [anon_sym_file] = ACTIONS(4108), + [anon_sym_LT] = ACTIONS(4108), + [anon_sym_GT] = ACTIONS(4108), + [anon_sym_in] = ACTIONS(4108), + [anon_sym_where] = ACTIONS(4108), + [anon_sym_QMARK] = ACTIONS(4108), + [anon_sym_notnull] = ACTIONS(4108), + [anon_sym_unmanaged] = ACTIONS(4108), + [anon_sym_BANG] = ACTIONS(4108), + [anon_sym_PLUS_PLUS] = ACTIONS(4110), + [anon_sym_DASH_DASH] = ACTIONS(4110), + [anon_sym_PLUS] = ACTIONS(4108), + [anon_sym_DASH] = ACTIONS(4108), + [anon_sym_STAR] = ACTIONS(4110), + [anon_sym_SLASH] = ACTIONS(4108), + [anon_sym_PERCENT] = ACTIONS(4110), + [anon_sym_CARET] = ACTIONS(4110), + [anon_sym_PIPE] = ACTIONS(4108), + [anon_sym_AMP] = ACTIONS(4108), + [anon_sym_LT_LT] = ACTIONS(4110), + [anon_sym_GT_GT] = ACTIONS(4108), + [anon_sym_GT_GT_GT] = ACTIONS(4110), + [anon_sym_EQ_EQ] = ACTIONS(4110), + [anon_sym_BANG_EQ] = ACTIONS(4110), + [anon_sym_GT_EQ] = ACTIONS(4110), + [anon_sym_LT_EQ] = ACTIONS(4110), + [anon_sym_DOT] = ACTIONS(4108), + [anon_sym_scoped] = ACTIONS(4108), + [anon_sym_EQ_GT] = ACTIONS(4110), + [anon_sym_var] = ACTIONS(4108), + [anon_sym_yield] = ACTIONS(4108), + [anon_sym_switch] = ACTIONS(4108), + [anon_sym_when] = ACTIONS(4108), + [sym_discard] = ACTIONS(4108), + [anon_sym_DOT_DOT] = ACTIONS(4110), + [anon_sym_and] = ACTIONS(4108), + [anon_sym_or] = ACTIONS(4108), + [anon_sym_AMP_AMP] = ACTIONS(4110), + [anon_sym_PIPE_PIPE] = ACTIONS(4110), + [anon_sym_QMARK_QMARK] = ACTIONS(4110), + [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(4108), + [anon_sym_is] = ACTIONS(4108), + [anon_sym_DASH_GT] = ACTIONS(4110), + [anon_sym_with] = ACTIONS(4108), + [aux_sym_preproc_if_token3] = ACTIONS(4110), + [aux_sym_preproc_else_token1] = ACTIONS(4110), + [aux_sym_preproc_elif_token1] = ACTIONS(4110), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + }, + [2414] = { + [sym_preproc_region] = STATE(2414), + [sym_preproc_endregion] = STATE(2414), + [sym_preproc_line] = STATE(2414), + [sym_preproc_pragma] = STATE(2414), + [sym_preproc_nullable] = STATE(2414), + [sym_preproc_error] = STATE(2414), + [sym_preproc_warning] = STATE(2414), + [sym_preproc_define] = STATE(2414), + [sym_preproc_undef] = STATE(2414), [sym__identifier_token] = ACTIONS(4112), [anon_sym_alias] = ACTIONS(4112), [anon_sym_SEMI] = ACTIONS(4114), @@ -420514,7 +420372,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_RBRACK] = ACTIONS(4114), [anon_sym_LPAREN] = ACTIONS(4114), [anon_sym_RPAREN] = ACTIONS(4114), - [anon_sym_LBRACE] = ACTIONS(4114), [anon_sym_RBRACE] = ACTIONS(4114), [anon_sym_file] = ACTIONS(4112), [anon_sym_LT] = ACTIONS(4112), @@ -420586,87 +420443,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), }, - [2413] = { - [sym_preproc_region] = STATE(2413), - [sym_preproc_endregion] = STATE(2413), - [sym_preproc_line] = STATE(2413), - [sym_preproc_pragma] = STATE(2413), - [sym_preproc_nullable] = STATE(2413), - [sym_preproc_error] = STATE(2413), - [sym_preproc_warning] = STATE(2413), - [sym_preproc_define] = STATE(2413), - [sym_preproc_undef] = STATE(2413), - [sym__identifier_token] = ACTIONS(3685), - [anon_sym_alias] = ACTIONS(3685), - [anon_sym_SEMI] = ACTIONS(3687), - [anon_sym_global] = ACTIONS(3685), - [anon_sym_LBRACK] = ACTIONS(3687), - [anon_sym_COLON] = ACTIONS(3687), - [anon_sym_COMMA] = ACTIONS(3687), - [anon_sym_RBRACK] = ACTIONS(3687), - [anon_sym_LPAREN] = ACTIONS(3687), - [anon_sym_RPAREN] = ACTIONS(3687), - [anon_sym_LBRACE] = ACTIONS(3687), - [anon_sym_RBRACE] = ACTIONS(3687), - [anon_sym_file] = ACTIONS(3685), - [anon_sym_LT] = ACTIONS(3685), - [anon_sym_GT] = ACTIONS(3685), - [anon_sym_in] = ACTIONS(3685), - [anon_sym_where] = ACTIONS(3685), - [anon_sym_QMARK] = ACTIONS(3685), - [anon_sym_notnull] = ACTIONS(3685), - [anon_sym_unmanaged] = ACTIONS(3685), - [anon_sym_BANG] = ACTIONS(3685), - [anon_sym_PLUS_PLUS] = ACTIONS(3687), - [anon_sym_DASH_DASH] = ACTIONS(3687), - [anon_sym_PLUS] = ACTIONS(3685), - [anon_sym_DASH] = ACTIONS(3685), - [anon_sym_STAR] = ACTIONS(3687), - [anon_sym_SLASH] = ACTIONS(3685), - [anon_sym_PERCENT] = ACTIONS(3687), - [anon_sym_CARET] = ACTIONS(3687), - [anon_sym_PIPE] = ACTIONS(3685), - [anon_sym_AMP] = ACTIONS(3685), - [anon_sym_LT_LT] = ACTIONS(3687), - [anon_sym_GT_GT] = ACTIONS(3685), - [anon_sym_GT_GT_GT] = ACTIONS(3687), - [anon_sym_EQ_EQ] = ACTIONS(3687), - [anon_sym_BANG_EQ] = ACTIONS(3687), - [anon_sym_GT_EQ] = ACTIONS(3687), - [anon_sym_LT_EQ] = ACTIONS(3687), - [anon_sym_DOT] = ACTIONS(3685), - [anon_sym_scoped] = ACTIONS(3685), - [anon_sym_EQ_GT] = ACTIONS(3687), - [anon_sym_var] = ACTIONS(3685), - [anon_sym_yield] = ACTIONS(3685), - [anon_sym_switch] = ACTIONS(3685), - [anon_sym_when] = ACTIONS(3685), - [sym_discard] = ACTIONS(3685), - [anon_sym_DOT_DOT] = ACTIONS(3687), - [anon_sym_and] = ACTIONS(3685), - [anon_sym_or] = ACTIONS(3685), - [anon_sym_AMP_AMP] = ACTIONS(3687), - [anon_sym_PIPE_PIPE] = ACTIONS(3687), - [anon_sym_QMARK_QMARK] = ACTIONS(3687), - [anon_sym_from] = ACTIONS(3685), - [anon_sym_into] = ACTIONS(3685), - [anon_sym_join] = ACTIONS(3685), - [anon_sym_on] = ACTIONS(3685), - [anon_sym_equals] = ACTIONS(3685), - [anon_sym_let] = ACTIONS(3685), - [anon_sym_orderby] = ACTIONS(3685), - [anon_sym_ascending] = ACTIONS(3685), - [anon_sym_descending] = ACTIONS(3685), - [anon_sym_group] = ACTIONS(3685), - [anon_sym_by] = ACTIONS(3685), - [anon_sym_select] = ACTIONS(3685), - [anon_sym_as] = ACTIONS(3685), - [anon_sym_is] = ACTIONS(3685), - [anon_sym_DASH_GT] = ACTIONS(3687), - [anon_sym_with] = ACTIONS(3685), - [aux_sym_preproc_if_token3] = ACTIONS(3687), - [aux_sym_preproc_else_token1] = ACTIONS(3687), - [aux_sym_preproc_elif_token1] = ACTIONS(3687), + [2415] = { + [sym_preproc_region] = STATE(2415), + [sym_preproc_endregion] = STATE(2415), + [sym_preproc_line] = STATE(2415), + [sym_preproc_pragma] = STATE(2415), + [sym_preproc_nullable] = STATE(2415), + [sym_preproc_error] = STATE(2415), + [sym_preproc_warning] = STATE(2415), + [sym_preproc_define] = STATE(2415), + [sym_preproc_undef] = STATE(2415), + [anon_sym_SEMI] = ACTIONS(3711), + [anon_sym_EQ] = ACTIONS(3696), + [anon_sym_LBRACK] = ACTIONS(3711), + [anon_sym_COLON] = ACTIONS(3711), + [anon_sym_COMMA] = ACTIONS(3711), + [anon_sym_RBRACK] = ACTIONS(3711), + [anon_sym_LPAREN] = ACTIONS(3711), + [anon_sym_RPAREN] = ACTIONS(3711), + [anon_sym_RBRACE] = ACTIONS(3711), + [anon_sym_LT] = ACTIONS(3696), + [anon_sym_GT] = ACTIONS(3696), + [anon_sym_in] = ACTIONS(3696), + [anon_sym_where] = ACTIONS(3711), + [anon_sym_QMARK] = ACTIONS(3696), + [anon_sym_BANG] = ACTIONS(3696), + [anon_sym_PLUS_PLUS] = ACTIONS(3711), + [anon_sym_DASH_DASH] = ACTIONS(3711), + [anon_sym_PLUS] = ACTIONS(3696), + [anon_sym_DASH] = ACTIONS(3696), + [anon_sym_STAR] = ACTIONS(3696), + [anon_sym_SLASH] = ACTIONS(3696), + [anon_sym_PERCENT] = ACTIONS(3696), + [anon_sym_CARET] = ACTIONS(3696), + [anon_sym_PIPE] = ACTIONS(3696), + [anon_sym_AMP] = ACTIONS(3696), + [anon_sym_LT_LT] = ACTIONS(3696), + [anon_sym_GT_GT] = ACTIONS(3696), + [anon_sym_GT_GT_GT] = ACTIONS(3696), + [anon_sym_EQ_EQ] = ACTIONS(3711), + [anon_sym_BANG_EQ] = ACTIONS(3711), + [anon_sym_GT_EQ] = ACTIONS(3711), + [anon_sym_LT_EQ] = ACTIONS(3711), + [anon_sym_DOT] = ACTIONS(3696), + [anon_sym_EQ_GT] = ACTIONS(3711), + [anon_sym_switch] = ACTIONS(3711), + [anon_sym_DOT_DOT] = ACTIONS(3711), + [anon_sym_and] = ACTIONS(3711), + [anon_sym_or] = ACTIONS(3696), + [anon_sym_PLUS_EQ] = ACTIONS(3711), + [anon_sym_DASH_EQ] = ACTIONS(3711), + [anon_sym_STAR_EQ] = ACTIONS(3711), + [anon_sym_SLASH_EQ] = ACTIONS(3711), + [anon_sym_PERCENT_EQ] = ACTIONS(3711), + [anon_sym_AMP_EQ] = ACTIONS(3711), + [anon_sym_CARET_EQ] = ACTIONS(3711), + [anon_sym_PIPE_EQ] = ACTIONS(3711), + [anon_sym_LT_LT_EQ] = ACTIONS(3711), + [anon_sym_GT_GT_EQ] = ACTIONS(3711), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3711), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3711), + [anon_sym_AMP_AMP] = ACTIONS(3711), + [anon_sym_PIPE_PIPE] = ACTIONS(3711), + [anon_sym_QMARK_QMARK] = ACTIONS(3696), + [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_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(3711), + [anon_sym_with] = ACTIONS(3711), + [aux_sym_preproc_if_token3] = ACTIONS(3711), + [aux_sym_preproc_else_token1] = ACTIONS(3711), + [aux_sym_preproc_elif_token1] = ACTIONS(3711), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -420678,67 +420534,68 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), }, - [2414] = { - [sym_preproc_region] = STATE(2414), - [sym_preproc_endregion] = STATE(2414), - [sym_preproc_line] = STATE(2414), - [sym_preproc_pragma] = STATE(2414), - [sym_preproc_nullable] = STATE(2414), - [sym_preproc_error] = STATE(2414), - [sym_preproc_warning] = STATE(2414), - [sym_preproc_define] = STATE(2414), - [sym_preproc_undef] = STATE(2414), - [sym__identifier_token] = ACTIONS(4116), - [anon_sym_alias] = ACTIONS(4116), - [anon_sym_SEMI] = ACTIONS(4118), - [anon_sym_global] = ACTIONS(4116), - [anon_sym_LBRACK] = ACTIONS(4118), - [anon_sym_COLON] = ACTIONS(4118), - [anon_sym_COMMA] = ACTIONS(4118), - [anon_sym_RBRACK] = ACTIONS(4118), - [anon_sym_LPAREN] = ACTIONS(4118), - [anon_sym_RPAREN] = ACTIONS(4118), - [anon_sym_LBRACE] = ACTIONS(4118), - [anon_sym_RBRACE] = ACTIONS(4118), - [anon_sym_file] = ACTIONS(4116), - [anon_sym_LT] = ACTIONS(4116), - [anon_sym_GT] = ACTIONS(4116), - [anon_sym_in] = ACTIONS(4116), + [2416] = { + [sym_preproc_region] = STATE(2416), + [sym_preproc_endregion] = STATE(2416), + [sym_preproc_line] = STATE(2416), + [sym_preproc_pragma] = STATE(2416), + [sym_preproc_nullable] = STATE(2416), + [sym_preproc_error] = STATE(2416), + [sym_preproc_warning] = STATE(2416), + [sym_preproc_define] = STATE(2416), + [sym_preproc_undef] = STATE(2416), + [anon_sym_SEMI] = ACTIONS(4116), + [anon_sym_EQ] = ACTIONS(4118), + [anon_sym_LBRACK] = ACTIONS(4116), + [anon_sym_COLON] = ACTIONS(4116), + [anon_sym_COMMA] = ACTIONS(4116), + [anon_sym_RBRACK] = ACTIONS(4116), + [anon_sym_LPAREN] = ACTIONS(4116), + [anon_sym_RPAREN] = ACTIONS(4116), + [anon_sym_RBRACE] = ACTIONS(4116), + [anon_sym_LT] = ACTIONS(4118), + [anon_sym_GT] = ACTIONS(4118), + [anon_sym_in] = ACTIONS(4118), [anon_sym_where] = ACTIONS(4116), - [anon_sym_QMARK] = ACTIONS(4116), - [anon_sym_notnull] = ACTIONS(4116), - [anon_sym_unmanaged] = ACTIONS(4116), - [anon_sym_BANG] = ACTIONS(4116), - [anon_sym_PLUS_PLUS] = ACTIONS(4118), - [anon_sym_DASH_DASH] = ACTIONS(4118), - [anon_sym_PLUS] = ACTIONS(4116), - [anon_sym_DASH] = ACTIONS(4116), + [anon_sym_QMARK] = ACTIONS(4118), + [anon_sym_BANG] = ACTIONS(4118), + [anon_sym_PLUS_PLUS] = ACTIONS(4116), + [anon_sym_DASH_DASH] = ACTIONS(4116), + [anon_sym_PLUS] = ACTIONS(4118), + [anon_sym_DASH] = ACTIONS(4118), [anon_sym_STAR] = ACTIONS(4118), - [anon_sym_SLASH] = ACTIONS(4116), + [anon_sym_SLASH] = ACTIONS(4118), [anon_sym_PERCENT] = ACTIONS(4118), [anon_sym_CARET] = ACTIONS(4118), - [anon_sym_PIPE] = ACTIONS(4116), - [anon_sym_AMP] = ACTIONS(4116), + [anon_sym_PIPE] = ACTIONS(4118), + [anon_sym_AMP] = ACTIONS(4118), [anon_sym_LT_LT] = ACTIONS(4118), - [anon_sym_GT_GT] = ACTIONS(4116), + [anon_sym_GT_GT] = ACTIONS(4118), [anon_sym_GT_GT_GT] = ACTIONS(4118), - [anon_sym_EQ_EQ] = ACTIONS(4118), - [anon_sym_BANG_EQ] = ACTIONS(4118), - [anon_sym_GT_EQ] = ACTIONS(4118), - [anon_sym_LT_EQ] = ACTIONS(4118), - [anon_sym_DOT] = ACTIONS(4116), - [anon_sym_scoped] = ACTIONS(4116), - [anon_sym_EQ_GT] = ACTIONS(4118), - [anon_sym_var] = ACTIONS(4116), - [anon_sym_yield] = ACTIONS(4116), + [anon_sym_EQ_EQ] = ACTIONS(4116), + [anon_sym_BANG_EQ] = ACTIONS(4116), + [anon_sym_GT_EQ] = ACTIONS(4116), + [anon_sym_LT_EQ] = ACTIONS(4116), + [anon_sym_DOT] = ACTIONS(4118), + [anon_sym_EQ_GT] = ACTIONS(4116), [anon_sym_switch] = ACTIONS(4116), - [anon_sym_when] = ACTIONS(4116), - [sym_discard] = ACTIONS(4116), - [anon_sym_DOT_DOT] = ACTIONS(4118), + [anon_sym_DOT_DOT] = ACTIONS(4116), [anon_sym_and] = ACTIONS(4116), - [anon_sym_or] = ACTIONS(4116), - [anon_sym_AMP_AMP] = ACTIONS(4118), - [anon_sym_PIPE_PIPE] = ACTIONS(4118), + [anon_sym_or] = ACTIONS(4118), + [anon_sym_PLUS_EQ] = ACTIONS(4116), + [anon_sym_DASH_EQ] = ACTIONS(4116), + [anon_sym_STAR_EQ] = ACTIONS(4116), + [anon_sym_SLASH_EQ] = ACTIONS(4116), + [anon_sym_PERCENT_EQ] = ACTIONS(4116), + [anon_sym_AMP_EQ] = ACTIONS(4116), + [anon_sym_CARET_EQ] = ACTIONS(4116), + [anon_sym_PIPE_EQ] = ACTIONS(4116), + [anon_sym_LT_LT_EQ] = ACTIONS(4116), + [anon_sym_GT_GT_EQ] = ACTIONS(4116), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(4116), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(4116), + [anon_sym_AMP_AMP] = ACTIONS(4116), + [anon_sym_PIPE_PIPE] = ACTIONS(4116), [anon_sym_QMARK_QMARK] = ACTIONS(4118), [anon_sym_from] = ACTIONS(4116), [anon_sym_into] = ACTIONS(4116), @@ -420747,18 +420604,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_equals] = ACTIONS(4116), [anon_sym_let] = ACTIONS(4116), [anon_sym_orderby] = ACTIONS(4116), - [anon_sym_ascending] = ACTIONS(4116), - [anon_sym_descending] = ACTIONS(4116), [anon_sym_group] = ACTIONS(4116), [anon_sym_by] = ACTIONS(4116), [anon_sym_select] = ACTIONS(4116), [anon_sym_as] = ACTIONS(4116), [anon_sym_is] = ACTIONS(4116), - [anon_sym_DASH_GT] = ACTIONS(4118), + [anon_sym_DASH_GT] = ACTIONS(4116), [anon_sym_with] = ACTIONS(4116), - [aux_sym_preproc_if_token3] = ACTIONS(4118), - [aux_sym_preproc_else_token1] = ACTIONS(4118), - [aux_sym_preproc_elif_token1] = ACTIONS(4118), + [aux_sym_preproc_if_token3] = ACTIONS(4116), + [aux_sym_preproc_else_token1] = ACTIONS(4116), + [aux_sym_preproc_elif_token1] = ACTIONS(4116), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -420770,67 +420625,68 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), }, - [2415] = { - [sym_preproc_region] = STATE(2415), - [sym_preproc_endregion] = STATE(2415), - [sym_preproc_line] = STATE(2415), - [sym_preproc_pragma] = STATE(2415), - [sym_preproc_nullable] = STATE(2415), - [sym_preproc_error] = STATE(2415), - [sym_preproc_warning] = STATE(2415), - [sym_preproc_define] = STATE(2415), - [sym_preproc_undef] = STATE(2415), - [sym__identifier_token] = ACTIONS(4120), - [anon_sym_alias] = ACTIONS(4120), - [anon_sym_SEMI] = ACTIONS(4122), - [anon_sym_global] = ACTIONS(4120), - [anon_sym_LBRACK] = ACTIONS(4122), - [anon_sym_COLON] = ACTIONS(4122), - [anon_sym_COMMA] = ACTIONS(4122), - [anon_sym_RBRACK] = ACTIONS(4122), - [anon_sym_LPAREN] = ACTIONS(4122), - [anon_sym_RPAREN] = ACTIONS(4122), - [anon_sym_LBRACE] = ACTIONS(4122), - [anon_sym_RBRACE] = ACTIONS(4122), - [anon_sym_file] = ACTIONS(4120), - [anon_sym_LT] = ACTIONS(4120), - [anon_sym_GT] = ACTIONS(4120), - [anon_sym_in] = ACTIONS(4120), + [2417] = { + [sym_preproc_region] = STATE(2417), + [sym_preproc_endregion] = STATE(2417), + [sym_preproc_line] = STATE(2417), + [sym_preproc_pragma] = STATE(2417), + [sym_preproc_nullable] = STATE(2417), + [sym_preproc_error] = STATE(2417), + [sym_preproc_warning] = STATE(2417), + [sym_preproc_define] = STATE(2417), + [sym_preproc_undef] = STATE(2417), + [anon_sym_SEMI] = ACTIONS(4120), + [anon_sym_EQ] = ACTIONS(4122), + [anon_sym_LBRACK] = ACTIONS(4120), + [anon_sym_COLON] = ACTIONS(4120), + [anon_sym_COMMA] = ACTIONS(4120), + [anon_sym_RBRACK] = ACTIONS(4120), + [anon_sym_LPAREN] = ACTIONS(4120), + [anon_sym_RPAREN] = ACTIONS(4120), + [anon_sym_RBRACE] = ACTIONS(4120), + [anon_sym_LT] = ACTIONS(4122), + [anon_sym_GT] = ACTIONS(4122), + [anon_sym_in] = ACTIONS(4122), [anon_sym_where] = ACTIONS(4120), - [anon_sym_QMARK] = ACTIONS(4120), - [anon_sym_notnull] = ACTIONS(4120), - [anon_sym_unmanaged] = ACTIONS(4120), - [anon_sym_BANG] = ACTIONS(4120), - [anon_sym_PLUS_PLUS] = ACTIONS(4122), - [anon_sym_DASH_DASH] = ACTIONS(4122), - [anon_sym_PLUS] = ACTIONS(4120), - [anon_sym_DASH] = ACTIONS(4120), + [anon_sym_QMARK] = ACTIONS(4122), + [anon_sym_BANG] = ACTIONS(4122), + [anon_sym_PLUS_PLUS] = ACTIONS(4120), + [anon_sym_DASH_DASH] = ACTIONS(4120), + [anon_sym_PLUS] = ACTIONS(4122), + [anon_sym_DASH] = ACTIONS(4122), [anon_sym_STAR] = ACTIONS(4122), - [anon_sym_SLASH] = ACTIONS(4120), + [anon_sym_SLASH] = ACTIONS(4122), [anon_sym_PERCENT] = ACTIONS(4122), [anon_sym_CARET] = ACTIONS(4122), - [anon_sym_PIPE] = ACTIONS(4120), - [anon_sym_AMP] = ACTIONS(4120), + [anon_sym_PIPE] = ACTIONS(4122), + [anon_sym_AMP] = ACTIONS(4122), [anon_sym_LT_LT] = ACTIONS(4122), - [anon_sym_GT_GT] = ACTIONS(4120), + [anon_sym_GT_GT] = ACTIONS(4122), [anon_sym_GT_GT_GT] = ACTIONS(4122), - [anon_sym_EQ_EQ] = ACTIONS(4122), - [anon_sym_BANG_EQ] = ACTIONS(4122), - [anon_sym_GT_EQ] = ACTIONS(4122), - [anon_sym_LT_EQ] = ACTIONS(4122), - [anon_sym_DOT] = ACTIONS(4120), - [anon_sym_scoped] = ACTIONS(4120), - [anon_sym_EQ_GT] = ACTIONS(4122), - [anon_sym_var] = ACTIONS(4120), - [anon_sym_yield] = ACTIONS(4120), + [anon_sym_EQ_EQ] = ACTIONS(4120), + [anon_sym_BANG_EQ] = ACTIONS(4120), + [anon_sym_GT_EQ] = ACTIONS(4120), + [anon_sym_LT_EQ] = ACTIONS(4120), + [anon_sym_DOT] = ACTIONS(4122), + [anon_sym_EQ_GT] = ACTIONS(4120), [anon_sym_switch] = ACTIONS(4120), - [anon_sym_when] = ACTIONS(4120), - [sym_discard] = ACTIONS(4120), - [anon_sym_DOT_DOT] = ACTIONS(4122), + [anon_sym_DOT_DOT] = ACTIONS(4120), [anon_sym_and] = ACTIONS(4120), - [anon_sym_or] = ACTIONS(4120), - [anon_sym_AMP_AMP] = ACTIONS(4122), - [anon_sym_PIPE_PIPE] = ACTIONS(4122), + [anon_sym_or] = ACTIONS(4122), + [anon_sym_PLUS_EQ] = ACTIONS(4120), + [anon_sym_DASH_EQ] = ACTIONS(4120), + [anon_sym_STAR_EQ] = ACTIONS(4120), + [anon_sym_SLASH_EQ] = ACTIONS(4120), + [anon_sym_PERCENT_EQ] = ACTIONS(4120), + [anon_sym_AMP_EQ] = ACTIONS(4120), + [anon_sym_CARET_EQ] = ACTIONS(4120), + [anon_sym_PIPE_EQ] = ACTIONS(4120), + [anon_sym_LT_LT_EQ] = ACTIONS(4120), + [anon_sym_GT_GT_EQ] = ACTIONS(4120), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(4120), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(4120), + [anon_sym_AMP_AMP] = ACTIONS(4120), + [anon_sym_PIPE_PIPE] = ACTIONS(4120), [anon_sym_QMARK_QMARK] = ACTIONS(4122), [anon_sym_from] = ACTIONS(4120), [anon_sym_into] = ACTIONS(4120), @@ -420839,18 +420695,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_equals] = ACTIONS(4120), [anon_sym_let] = ACTIONS(4120), [anon_sym_orderby] = ACTIONS(4120), - [anon_sym_ascending] = ACTIONS(4120), - [anon_sym_descending] = ACTIONS(4120), [anon_sym_group] = ACTIONS(4120), [anon_sym_by] = ACTIONS(4120), [anon_sym_select] = ACTIONS(4120), [anon_sym_as] = ACTIONS(4120), [anon_sym_is] = ACTIONS(4120), - [anon_sym_DASH_GT] = ACTIONS(4122), + [anon_sym_DASH_GT] = ACTIONS(4120), [anon_sym_with] = ACTIONS(4120), - [aux_sym_preproc_if_token3] = ACTIONS(4122), - [aux_sym_preproc_else_token1] = ACTIONS(4122), - [aux_sym_preproc_elif_token1] = ACTIONS(4122), + [aux_sym_preproc_if_token3] = ACTIONS(4120), + [aux_sym_preproc_else_token1] = ACTIONS(4120), + [aux_sym_preproc_elif_token1] = ACTIONS(4120), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -420862,16 +420716,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), }, - [2416] = { - [sym_preproc_region] = STATE(2416), - [sym_preproc_endregion] = STATE(2416), - [sym_preproc_line] = STATE(2416), - [sym_preproc_pragma] = STATE(2416), - [sym_preproc_nullable] = STATE(2416), - [sym_preproc_error] = STATE(2416), - [sym_preproc_warning] = STATE(2416), - [sym_preproc_define] = STATE(2416), - [sym_preproc_undef] = STATE(2416), + [2418] = { + [sym_preproc_region] = STATE(2418), + [sym_preproc_endregion] = STATE(2418), + [sym_preproc_line] = STATE(2418), + [sym_preproc_pragma] = STATE(2418), + [sym_preproc_nullable] = STATE(2418), + [sym_preproc_error] = STATE(2418), + [sym_preproc_warning] = STATE(2418), + [sym_preproc_define] = STATE(2418), + [sym_preproc_undef] = STATE(2418), [sym__identifier_token] = ACTIONS(4124), [anon_sym_alias] = ACTIONS(4124), [anon_sym_SEMI] = ACTIONS(4126), @@ -420882,7 +420736,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_RBRACK] = ACTIONS(4126), [anon_sym_LPAREN] = ACTIONS(4126), [anon_sym_RPAREN] = ACTIONS(4126), - [anon_sym_LBRACE] = ACTIONS(4126), [anon_sym_RBRACE] = ACTIONS(4126), [anon_sym_file] = ACTIONS(4124), [anon_sym_LT] = ACTIONS(4124), @@ -420954,108 +420807,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), }, - [2417] = { - [sym_preproc_region] = STATE(2417), - [sym_preproc_endregion] = STATE(2417), - [sym_preproc_line] = STATE(2417), - [sym_preproc_pragma] = STATE(2417), - [sym_preproc_nullable] = STATE(2417), - [sym_preproc_error] = STATE(2417), - [sym_preproc_warning] = STATE(2417), - [sym_preproc_define] = STATE(2417), - [sym_preproc_undef] = STATE(2417), - [sym__identifier_token] = ACTIONS(3679), - [anon_sym_alias] = ACTIONS(3679), - [anon_sym_SEMI] = ACTIONS(3681), - [anon_sym_global] = ACTIONS(3679), - [anon_sym_LBRACK] = ACTIONS(3681), - [anon_sym_COLON] = ACTIONS(3681), - [anon_sym_COMMA] = ACTIONS(3681), - [anon_sym_RBRACK] = ACTIONS(3681), - [anon_sym_LPAREN] = ACTIONS(3681), - [anon_sym_RPAREN] = ACTIONS(3681), - [anon_sym_LBRACE] = ACTIONS(3681), - [anon_sym_RBRACE] = ACTIONS(3681), - [anon_sym_file] = ACTIONS(3679), - [anon_sym_LT] = ACTIONS(3679), - [anon_sym_GT] = ACTIONS(3679), - [anon_sym_in] = ACTIONS(3679), - [anon_sym_where] = ACTIONS(3679), - [anon_sym_QMARK] = ACTIONS(3679), - [anon_sym_notnull] = ACTIONS(3679), - [anon_sym_unmanaged] = ACTIONS(3679), - [anon_sym_BANG] = ACTIONS(3679), - [anon_sym_PLUS_PLUS] = ACTIONS(3681), - [anon_sym_DASH_DASH] = ACTIONS(3681), - [anon_sym_PLUS] = ACTIONS(3679), - [anon_sym_DASH] = ACTIONS(3679), - [anon_sym_STAR] = ACTIONS(3681), - [anon_sym_SLASH] = ACTIONS(3679), - [anon_sym_PERCENT] = ACTIONS(3681), - [anon_sym_CARET] = ACTIONS(3681), - [anon_sym_PIPE] = ACTIONS(3679), - [anon_sym_AMP] = ACTIONS(3679), - [anon_sym_LT_LT] = ACTIONS(3681), - [anon_sym_GT_GT] = ACTIONS(3679), - [anon_sym_GT_GT_GT] = ACTIONS(3681), - [anon_sym_EQ_EQ] = ACTIONS(3681), - [anon_sym_BANG_EQ] = ACTIONS(3681), - [anon_sym_GT_EQ] = ACTIONS(3681), - [anon_sym_LT_EQ] = ACTIONS(3681), - [anon_sym_DOT] = ACTIONS(3679), - [anon_sym_scoped] = ACTIONS(3679), - [anon_sym_EQ_GT] = ACTIONS(3681), - [anon_sym_var] = ACTIONS(3679), - [anon_sym_yield] = ACTIONS(3679), - [anon_sym_switch] = ACTIONS(3679), - [anon_sym_when] = ACTIONS(3679), - [sym_discard] = ACTIONS(3679), - [anon_sym_DOT_DOT] = ACTIONS(3681), - [anon_sym_and] = ACTIONS(3679), - [anon_sym_or] = ACTIONS(3679), - [anon_sym_AMP_AMP] = ACTIONS(3681), - [anon_sym_PIPE_PIPE] = ACTIONS(3681), - [anon_sym_QMARK_QMARK] = ACTIONS(3681), - [anon_sym_from] = ACTIONS(3679), - [anon_sym_into] = ACTIONS(3679), - [anon_sym_join] = ACTIONS(3679), - [anon_sym_on] = ACTIONS(3679), - [anon_sym_equals] = ACTIONS(3679), - [anon_sym_let] = ACTIONS(3679), - [anon_sym_orderby] = ACTIONS(3679), - [anon_sym_ascending] = ACTIONS(3679), - [anon_sym_descending] = ACTIONS(3679), - [anon_sym_group] = ACTIONS(3679), - [anon_sym_by] = ACTIONS(3679), - [anon_sym_select] = ACTIONS(3679), - [anon_sym_as] = ACTIONS(3679), - [anon_sym_is] = ACTIONS(3679), - [anon_sym_DASH_GT] = ACTIONS(3681), - [anon_sym_with] = ACTIONS(3679), - [aux_sym_preproc_if_token3] = ACTIONS(3681), - [aux_sym_preproc_else_token1] = ACTIONS(3681), - [aux_sym_preproc_elif_token1] = ACTIONS(3681), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - }, - [2418] = { - [sym_preproc_region] = STATE(2418), - [sym_preproc_endregion] = STATE(2418), - [sym_preproc_line] = STATE(2418), - [sym_preproc_pragma] = STATE(2418), - [sym_preproc_nullable] = STATE(2418), - [sym_preproc_error] = STATE(2418), - [sym_preproc_warning] = STATE(2418), - [sym_preproc_define] = STATE(2418), - [sym_preproc_undef] = STATE(2418), + [2419] = { + [sym_preproc_region] = STATE(2419), + [sym_preproc_endregion] = STATE(2419), + [sym_preproc_line] = STATE(2419), + [sym_preproc_pragma] = STATE(2419), + [sym_preproc_nullable] = STATE(2419), + [sym_preproc_error] = STATE(2419), + [sym_preproc_warning] = STATE(2419), + [sym_preproc_define] = STATE(2419), + [sym_preproc_undef] = STATE(2419), [anon_sym_SEMI] = ACTIONS(4128), [anon_sym_EQ] = ACTIONS(4130), [anon_sym_LBRACK] = ACTIONS(4128), @@ -421137,97 +420898,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), }, - [2419] = { - [sym_preproc_region] = STATE(2419), - [sym_preproc_endregion] = STATE(2419), - [sym_preproc_line] = STATE(2419), - [sym_preproc_pragma] = STATE(2419), - [sym_preproc_nullable] = STATE(2419), - [sym_preproc_error] = STATE(2419), - [sym_preproc_warning] = STATE(2419), - [sym_preproc_define] = STATE(2419), - [sym_preproc_undef] = STATE(2419), - [sym__identifier_token] = ACTIONS(4016), - [anon_sym_alias] = ACTIONS(4016), - [anon_sym_SEMI] = ACTIONS(4018), - [anon_sym_global] = ACTIONS(4016), - [anon_sym_LBRACK] = ACTIONS(4066), - [anon_sym_COMMA] = ACTIONS(4018), - [anon_sym_RBRACK] = ACTIONS(4018), - [anon_sym_LPAREN] = ACTIONS(4018), - [anon_sym_RPAREN] = ACTIONS(4018), - [anon_sym_LBRACE] = ACTIONS(4018), - [anon_sym_RBRACE] = ACTIONS(4018), - [anon_sym_file] = ACTIONS(4016), - [anon_sym_LT] = ACTIONS(4016), - [anon_sym_GT] = ACTIONS(4016), - [anon_sym_in] = ACTIONS(4016), - [anon_sym_where] = ACTIONS(4016), - [anon_sym_QMARK] = ACTIONS(4069), - [anon_sym_notnull] = ACTIONS(4016), - [anon_sym_unmanaged] = ACTIONS(4016), - [anon_sym_BANG] = ACTIONS(4016), - [anon_sym_PLUS_PLUS] = ACTIONS(4018), - [anon_sym_DASH_DASH] = ACTIONS(4018), - [anon_sym_PLUS] = ACTIONS(4016), - [anon_sym_DASH] = ACTIONS(4016), - [anon_sym_STAR] = ACTIONS(4072), - [anon_sym_SLASH] = ACTIONS(4016), - [anon_sym_PERCENT] = ACTIONS(4018), - [anon_sym_CARET] = ACTIONS(4018), - [anon_sym_PIPE] = ACTIONS(4016), - [anon_sym_AMP] = ACTIONS(4016), - [anon_sym_LT_LT] = ACTIONS(4018), - [anon_sym_GT_GT] = ACTIONS(4016), - [anon_sym_GT_GT_GT] = ACTIONS(4018), - [anon_sym_EQ_EQ] = ACTIONS(4018), - [anon_sym_BANG_EQ] = ACTIONS(4018), - [anon_sym_GT_EQ] = ACTIONS(4018), - [anon_sym_LT_EQ] = ACTIONS(4018), - [anon_sym_DOT] = ACTIONS(4132), - [anon_sym_scoped] = ACTIONS(4016), - [anon_sym_EQ_GT] = ACTIONS(4018), - [anon_sym_var] = ACTIONS(4016), - [anon_sym_yield] = ACTIONS(4016), - [anon_sym_switch] = ACTIONS(4016), - [anon_sym_when] = ACTIONS(4016), - [sym_discard] = ACTIONS(4016), - [anon_sym_DOT_DOT] = ACTIONS(4018), - [anon_sym_and] = ACTIONS(4016), - [anon_sym_or] = ACTIONS(4016), - [anon_sym_AMP_AMP] = ACTIONS(4018), - [anon_sym_PIPE_PIPE] = ACTIONS(4018), - [anon_sym_QMARK_QMARK] = ACTIONS(4018), - [anon_sym_from] = ACTIONS(4016), - [anon_sym_into] = ACTIONS(4016), - [anon_sym_join] = ACTIONS(4016), - [anon_sym_on] = ACTIONS(4016), - [anon_sym_equals] = ACTIONS(4016), - [anon_sym_let] = ACTIONS(4016), - [anon_sym_orderby] = ACTIONS(4016), - [anon_sym_ascending] = ACTIONS(4016), - [anon_sym_descending] = ACTIONS(4016), - [anon_sym_group] = ACTIONS(4016), - [anon_sym_by] = ACTIONS(4016), - [anon_sym_select] = ACTIONS(4016), - [anon_sym_as] = ACTIONS(4016), - [anon_sym_is] = ACTIONS(4016), - [anon_sym_DASH_GT] = ACTIONS(4018), - [anon_sym_with] = ACTIONS(4016), - [aux_sym_preproc_if_token3] = ACTIONS(4018), - [aux_sym_preproc_else_token1] = ACTIONS(4018), - [aux_sym_preproc_elif_token1] = 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), - }, [2420] = { [sym_preproc_region] = STATE(2420), [sym_preproc_endregion] = STATE(2420), @@ -421238,76 +420908,76 @@ 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), - [anon_sym_SEMI] = ACTIONS(4134), - [anon_sym_EQ] = ACTIONS(4136), - [anon_sym_LBRACK] = ACTIONS(4134), - [anon_sym_COLON] = ACTIONS(4134), - [anon_sym_COMMA] = ACTIONS(4134), - [anon_sym_RBRACK] = ACTIONS(4134), - [anon_sym_LPAREN] = ACTIONS(4134), - [anon_sym_RPAREN] = ACTIONS(4134), - [anon_sym_RBRACE] = ACTIONS(4134), - [anon_sym_LT] = ACTIONS(4136), - [anon_sym_GT] = ACTIONS(4136), - [anon_sym_in] = ACTIONS(4136), - [anon_sym_where] = ACTIONS(4134), - [anon_sym_QMARK] = ACTIONS(4136), - [anon_sym_BANG] = ACTIONS(4136), - [anon_sym_PLUS_PLUS] = ACTIONS(4134), - [anon_sym_DASH_DASH] = ACTIONS(4134), - [anon_sym_PLUS] = ACTIONS(4136), - [anon_sym_DASH] = ACTIONS(4136), - [anon_sym_STAR] = ACTIONS(4136), - [anon_sym_SLASH] = ACTIONS(4136), - [anon_sym_PERCENT] = ACTIONS(4136), - [anon_sym_CARET] = ACTIONS(4136), - [anon_sym_PIPE] = ACTIONS(4136), - [anon_sym_AMP] = ACTIONS(4136), - [anon_sym_LT_LT] = ACTIONS(4136), - [anon_sym_GT_GT] = ACTIONS(4136), - [anon_sym_GT_GT_GT] = ACTIONS(4136), - [anon_sym_EQ_EQ] = ACTIONS(4134), - [anon_sym_BANG_EQ] = ACTIONS(4134), - [anon_sym_GT_EQ] = ACTIONS(4134), - [anon_sym_LT_EQ] = ACTIONS(4134), - [anon_sym_DOT] = ACTIONS(4136), - [anon_sym_EQ_GT] = ACTIONS(4134), - [anon_sym_switch] = ACTIONS(4134), - [anon_sym_DOT_DOT] = ACTIONS(4134), - [anon_sym_and] = ACTIONS(4134), - [anon_sym_or] = ACTIONS(4136), - [anon_sym_PLUS_EQ] = ACTIONS(4134), - [anon_sym_DASH_EQ] = ACTIONS(4134), - [anon_sym_STAR_EQ] = ACTIONS(4134), - [anon_sym_SLASH_EQ] = ACTIONS(4134), - [anon_sym_PERCENT_EQ] = ACTIONS(4134), - [anon_sym_AMP_EQ] = ACTIONS(4134), - [anon_sym_CARET_EQ] = ACTIONS(4134), - [anon_sym_PIPE_EQ] = ACTIONS(4134), - [anon_sym_LT_LT_EQ] = ACTIONS(4134), - [anon_sym_GT_GT_EQ] = ACTIONS(4134), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(4134), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(4134), - [anon_sym_AMP_AMP] = ACTIONS(4134), - [anon_sym_PIPE_PIPE] = ACTIONS(4134), - [anon_sym_QMARK_QMARK] = ACTIONS(4136), - [anon_sym_from] = ACTIONS(4134), - [anon_sym_into] = ACTIONS(4134), - [anon_sym_join] = ACTIONS(4134), - [anon_sym_on] = ACTIONS(4134), - [anon_sym_equals] = ACTIONS(4134), - [anon_sym_let] = ACTIONS(4134), - [anon_sym_orderby] = ACTIONS(4134), - [anon_sym_group] = ACTIONS(4134), - [anon_sym_by] = ACTIONS(4134), - [anon_sym_select] = ACTIONS(4134), - [anon_sym_as] = ACTIONS(4134), - [anon_sym_is] = ACTIONS(4134), - [anon_sym_DASH_GT] = ACTIONS(4134), - [anon_sym_with] = ACTIONS(4134), - [aux_sym_preproc_if_token3] = ACTIONS(4134), - [aux_sym_preproc_else_token1] = ACTIONS(4134), - [aux_sym_preproc_elif_token1] = ACTIONS(4134), + [anon_sym_SEMI] = ACTIONS(4132), + [anon_sym_EQ] = ACTIONS(4134), + [anon_sym_LBRACK] = ACTIONS(4132), + [anon_sym_COLON] = ACTIONS(4132), + [anon_sym_COMMA] = ACTIONS(4132), + [anon_sym_RBRACK] = ACTIONS(4132), + [anon_sym_LPAREN] = ACTIONS(4132), + [anon_sym_RPAREN] = ACTIONS(4132), + [anon_sym_RBRACE] = ACTIONS(4132), + [anon_sym_LT] = ACTIONS(4134), + [anon_sym_GT] = ACTIONS(4134), + [anon_sym_in] = ACTIONS(4134), + [anon_sym_where] = ACTIONS(4132), + [anon_sym_QMARK] = ACTIONS(4134), + [anon_sym_BANG] = ACTIONS(4134), + [anon_sym_PLUS_PLUS] = ACTIONS(4132), + [anon_sym_DASH_DASH] = ACTIONS(4132), + [anon_sym_PLUS] = ACTIONS(4134), + [anon_sym_DASH] = ACTIONS(4134), + [anon_sym_STAR] = ACTIONS(4134), + [anon_sym_SLASH] = ACTIONS(4134), + [anon_sym_PERCENT] = ACTIONS(4134), + [anon_sym_CARET] = ACTIONS(4134), + [anon_sym_PIPE] = ACTIONS(4134), + [anon_sym_AMP] = ACTIONS(4134), + [anon_sym_LT_LT] = ACTIONS(4134), + [anon_sym_GT_GT] = ACTIONS(4134), + [anon_sym_GT_GT_GT] = ACTIONS(4134), + [anon_sym_EQ_EQ] = ACTIONS(4132), + [anon_sym_BANG_EQ] = ACTIONS(4132), + [anon_sym_GT_EQ] = ACTIONS(4132), + [anon_sym_LT_EQ] = ACTIONS(4132), + [anon_sym_DOT] = ACTIONS(4134), + [anon_sym_EQ_GT] = ACTIONS(4132), + [anon_sym_switch] = ACTIONS(4132), + [anon_sym_DOT_DOT] = ACTIONS(4132), + [anon_sym_and] = ACTIONS(4132), + [anon_sym_or] = ACTIONS(4134), + [anon_sym_PLUS_EQ] = ACTIONS(4132), + [anon_sym_DASH_EQ] = ACTIONS(4132), + [anon_sym_STAR_EQ] = ACTIONS(4132), + [anon_sym_SLASH_EQ] = ACTIONS(4132), + [anon_sym_PERCENT_EQ] = ACTIONS(4132), + [anon_sym_AMP_EQ] = ACTIONS(4132), + [anon_sym_CARET_EQ] = ACTIONS(4132), + [anon_sym_PIPE_EQ] = ACTIONS(4132), + [anon_sym_LT_LT_EQ] = ACTIONS(4132), + [anon_sym_GT_GT_EQ] = ACTIONS(4132), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(4132), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(4132), + [anon_sym_AMP_AMP] = ACTIONS(4132), + [anon_sym_PIPE_PIPE] = ACTIONS(4132), + [anon_sym_QMARK_QMARK] = ACTIONS(4134), + [anon_sym_from] = ACTIONS(4132), + [anon_sym_into] = ACTIONS(4132), + [anon_sym_join] = ACTIONS(4132), + [anon_sym_on] = ACTIONS(4132), + [anon_sym_equals] = ACTIONS(4132), + [anon_sym_let] = ACTIONS(4132), + [anon_sym_orderby] = ACTIONS(4132), + [anon_sym_group] = ACTIONS(4132), + [anon_sym_by] = ACTIONS(4132), + [anon_sym_select] = ACTIONS(4132), + [anon_sym_as] = ACTIONS(4132), + [anon_sym_is] = ACTIONS(4132), + [anon_sym_DASH_GT] = ACTIONS(4132), + [anon_sym_with] = ACTIONS(4132), + [aux_sym_preproc_if_token3] = ACTIONS(4132), + [aux_sym_preproc_else_token1] = ACTIONS(4132), + [aux_sym_preproc_elif_token1] = ACTIONS(4132), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -421329,76 +420999,76 @@ 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(4016), - [anon_sym_alias] = ACTIONS(4016), - [anon_sym_SEMI] = ACTIONS(4018), - [anon_sym_global] = ACTIONS(4016), - [anon_sym_LBRACK] = ACTIONS(4066), - [anon_sym_COMMA] = ACTIONS(4018), - [anon_sym_RBRACK] = ACTIONS(4018), - [anon_sym_LPAREN] = ACTIONS(4018), - [anon_sym_RPAREN] = ACTIONS(4018), - [anon_sym_LBRACE] = ACTIONS(4018), - [anon_sym_RBRACE] = ACTIONS(4018), - [anon_sym_file] = ACTIONS(4016), - [anon_sym_LT] = ACTIONS(4016), - [anon_sym_GT] = ACTIONS(4016), - [anon_sym_in] = ACTIONS(4016), - [anon_sym_where] = ACTIONS(4016), - [anon_sym_QMARK] = ACTIONS(4069), - [anon_sym_notnull] = ACTIONS(4016), - [anon_sym_unmanaged] = ACTIONS(4016), - [anon_sym_BANG] = ACTIONS(4016), - [anon_sym_PLUS_PLUS] = ACTIONS(4018), - [anon_sym_DASH_DASH] = ACTIONS(4018), - [anon_sym_PLUS] = ACTIONS(4016), - [anon_sym_DASH] = ACTIONS(4016), - [anon_sym_STAR] = ACTIONS(4072), - [anon_sym_SLASH] = ACTIONS(4016), - [anon_sym_PERCENT] = ACTIONS(4018), - [anon_sym_CARET] = ACTIONS(4018), - [anon_sym_PIPE] = ACTIONS(4016), - [anon_sym_AMP] = ACTIONS(4016), - [anon_sym_LT_LT] = ACTIONS(4018), - [anon_sym_GT_GT] = ACTIONS(4016), - [anon_sym_GT_GT_GT] = ACTIONS(4018), - [anon_sym_EQ_EQ] = ACTIONS(4018), - [anon_sym_BANG_EQ] = ACTIONS(4018), - [anon_sym_GT_EQ] = ACTIONS(4018), - [anon_sym_LT_EQ] = ACTIONS(4018), + [anon_sym_SEMI] = ACTIONS(4136), + [anon_sym_EQ] = ACTIONS(4138), + [anon_sym_LBRACK] = ACTIONS(4136), + [anon_sym_COLON] = ACTIONS(4136), + [anon_sym_COMMA] = ACTIONS(4136), + [anon_sym_RBRACK] = ACTIONS(4136), + [anon_sym_LPAREN] = ACTIONS(4136), + [anon_sym_RPAREN] = ACTIONS(4136), + [anon_sym_RBRACE] = ACTIONS(4136), + [anon_sym_LT] = ACTIONS(4138), + [anon_sym_GT] = ACTIONS(4138), + [anon_sym_in] = ACTIONS(4138), + [anon_sym_where] = ACTIONS(4136), + [anon_sym_QMARK] = ACTIONS(4138), + [anon_sym_BANG] = ACTIONS(4138), + [anon_sym_PLUS_PLUS] = ACTIONS(4136), + [anon_sym_DASH_DASH] = ACTIONS(4136), + [anon_sym_PLUS] = ACTIONS(4138), + [anon_sym_DASH] = ACTIONS(4138), + [anon_sym_STAR] = ACTIONS(4138), + [anon_sym_SLASH] = ACTIONS(4138), + [anon_sym_PERCENT] = ACTIONS(4138), + [anon_sym_CARET] = ACTIONS(4138), + [anon_sym_PIPE] = ACTIONS(4138), + [anon_sym_AMP] = ACTIONS(4138), + [anon_sym_LT_LT] = ACTIONS(4138), + [anon_sym_GT_GT] = ACTIONS(4138), + [anon_sym_GT_GT_GT] = ACTIONS(4138), + [anon_sym_EQ_EQ] = ACTIONS(4136), + [anon_sym_BANG_EQ] = ACTIONS(4136), + [anon_sym_GT_EQ] = ACTIONS(4136), + [anon_sym_LT_EQ] = ACTIONS(4136), [anon_sym_DOT] = ACTIONS(4138), - [anon_sym_scoped] = ACTIONS(4016), - [anon_sym_EQ_GT] = ACTIONS(4018), - [anon_sym_var] = ACTIONS(4016), - [anon_sym_yield] = ACTIONS(4016), - [anon_sym_switch] = ACTIONS(4016), - [anon_sym_when] = ACTIONS(4016), - [sym_discard] = ACTIONS(4016), - [anon_sym_DOT_DOT] = ACTIONS(4018), - [anon_sym_and] = ACTIONS(4016), - [anon_sym_or] = ACTIONS(4016), - [anon_sym_AMP_AMP] = ACTIONS(4018), - [anon_sym_PIPE_PIPE] = ACTIONS(4018), - [anon_sym_QMARK_QMARK] = ACTIONS(4018), - [anon_sym_from] = ACTIONS(4016), - [anon_sym_into] = ACTIONS(4016), - [anon_sym_join] = ACTIONS(4016), - [anon_sym_on] = ACTIONS(4016), - [anon_sym_equals] = ACTIONS(4016), - [anon_sym_let] = ACTIONS(4016), - [anon_sym_orderby] = ACTIONS(4016), - [anon_sym_ascending] = ACTIONS(4016), - [anon_sym_descending] = ACTIONS(4016), - [anon_sym_group] = ACTIONS(4016), - [anon_sym_by] = ACTIONS(4016), - [anon_sym_select] = ACTIONS(4016), - [anon_sym_as] = ACTIONS(4016), - [anon_sym_is] = ACTIONS(4016), - [anon_sym_DASH_GT] = ACTIONS(4102), - [anon_sym_with] = ACTIONS(4016), - [aux_sym_preproc_if_token3] = ACTIONS(4018), - [aux_sym_preproc_else_token1] = ACTIONS(4018), - [aux_sym_preproc_elif_token1] = ACTIONS(4018), + [anon_sym_EQ_GT] = ACTIONS(4136), + [anon_sym_switch] = ACTIONS(4136), + [anon_sym_DOT_DOT] = ACTIONS(4136), + [anon_sym_and] = ACTIONS(4136), + [anon_sym_or] = ACTIONS(4138), + [anon_sym_PLUS_EQ] = ACTIONS(4136), + [anon_sym_DASH_EQ] = ACTIONS(4136), + [anon_sym_STAR_EQ] = ACTIONS(4136), + [anon_sym_SLASH_EQ] = ACTIONS(4136), + [anon_sym_PERCENT_EQ] = ACTIONS(4136), + [anon_sym_AMP_EQ] = ACTIONS(4136), + [anon_sym_CARET_EQ] = ACTIONS(4136), + [anon_sym_PIPE_EQ] = ACTIONS(4136), + [anon_sym_LT_LT_EQ] = ACTIONS(4136), + [anon_sym_GT_GT_EQ] = ACTIONS(4136), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(4136), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(4136), + [anon_sym_AMP_AMP] = ACTIONS(4136), + [anon_sym_PIPE_PIPE] = ACTIONS(4136), + [anon_sym_QMARK_QMARK] = ACTIONS(4138), + [anon_sym_from] = ACTIONS(4136), + [anon_sym_into] = ACTIONS(4136), + [anon_sym_join] = ACTIONS(4136), + [anon_sym_on] = ACTIONS(4136), + [anon_sym_equals] = ACTIONS(4136), + [anon_sym_let] = ACTIONS(4136), + [anon_sym_orderby] = ACTIONS(4136), + [anon_sym_group] = ACTIONS(4136), + [anon_sym_by] = ACTIONS(4136), + [anon_sym_select] = ACTIONS(4136), + [anon_sym_as] = ACTIONS(4136), + [anon_sym_is] = ACTIONS(4136), + [anon_sym_DASH_GT] = ACTIONS(4136), + [anon_sym_with] = ACTIONS(4136), + [aux_sym_preproc_if_token3] = ACTIONS(4136), + [aux_sym_preproc_else_token1] = ACTIONS(4136), + [aux_sym_preproc_elif_token1] = ACTIONS(4136), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -421420,56 +421090,149 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2422), [sym_preproc_define] = STATE(2422), [sym_preproc_undef] = STATE(2422), - [sym__identifier_token] = ACTIONS(4140), - [anon_sym_alias] = ACTIONS(4140), - [anon_sym_SEMI] = ACTIONS(4142), - [anon_sym_global] = ACTIONS(4140), - [anon_sym_LBRACK] = ACTIONS(4142), - [anon_sym_COLON] = ACTIONS(4142), - [anon_sym_COMMA] = ACTIONS(4142), - [anon_sym_RBRACK] = ACTIONS(4142), - [anon_sym_LPAREN] = ACTIONS(4142), - [anon_sym_RPAREN] = ACTIONS(4142), - [anon_sym_RBRACE] = ACTIONS(4142), - [anon_sym_file] = ACTIONS(4140), - [anon_sym_LT] = ACTIONS(4140), - [anon_sym_GT] = ACTIONS(4140), - [anon_sym_in] = ACTIONS(4140), + [anon_sym_SEMI] = ACTIONS(3671), + [anon_sym_EQ] = ACTIONS(3673), + [anon_sym_LBRACK] = ACTIONS(3671), + [anon_sym_COLON] = ACTIONS(3671), + [anon_sym_COMMA] = ACTIONS(3671), + [anon_sym_RBRACK] = ACTIONS(3671), + [anon_sym_LPAREN] = ACTIONS(3671), + [anon_sym_RPAREN] = ACTIONS(3671), + [anon_sym_RBRACE] = ACTIONS(3671), + [anon_sym_LT] = ACTIONS(3673), + [anon_sym_GT] = ACTIONS(3673), + [anon_sym_in] = ACTIONS(3673), + [anon_sym_where] = ACTIONS(3671), + [anon_sym_QMARK] = ACTIONS(3673), + [anon_sym_BANG] = ACTIONS(3673), + [anon_sym_PLUS_PLUS] = ACTIONS(3671), + [anon_sym_DASH_DASH] = ACTIONS(3671), + [anon_sym_PLUS] = ACTIONS(3673), + [anon_sym_DASH] = ACTIONS(3673), + [anon_sym_STAR] = ACTIONS(3673), + [anon_sym_SLASH] = ACTIONS(3673), + [anon_sym_PERCENT] = ACTIONS(3673), + [anon_sym_CARET] = ACTIONS(3673), + [anon_sym_PIPE] = ACTIONS(3673), + [anon_sym_AMP] = ACTIONS(3673), + [anon_sym_LT_LT] = ACTIONS(3673), + [anon_sym_GT_GT] = ACTIONS(3673), + [anon_sym_GT_GT_GT] = ACTIONS(3673), + [anon_sym_EQ_EQ] = ACTIONS(3671), + [anon_sym_BANG_EQ] = ACTIONS(3671), + [anon_sym_GT_EQ] = ACTIONS(3671), + [anon_sym_LT_EQ] = ACTIONS(3671), + [anon_sym_DOT] = ACTIONS(3673), + [anon_sym_EQ_GT] = ACTIONS(3671), + [anon_sym_switch] = ACTIONS(3671), + [anon_sym_DOT_DOT] = ACTIONS(3671), + [anon_sym_and] = ACTIONS(3671), + [anon_sym_or] = ACTIONS(3673), + [anon_sym_PLUS_EQ] = ACTIONS(3671), + [anon_sym_DASH_EQ] = ACTIONS(3671), + [anon_sym_STAR_EQ] = ACTIONS(3671), + [anon_sym_SLASH_EQ] = ACTIONS(3671), + [anon_sym_PERCENT_EQ] = ACTIONS(3671), + [anon_sym_AMP_EQ] = ACTIONS(3671), + [anon_sym_CARET_EQ] = ACTIONS(3671), + [anon_sym_PIPE_EQ] = ACTIONS(3671), + [anon_sym_LT_LT_EQ] = ACTIONS(3671), + [anon_sym_GT_GT_EQ] = ACTIONS(3671), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3671), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3671), + [anon_sym_AMP_AMP] = ACTIONS(3671), + [anon_sym_PIPE_PIPE] = ACTIONS(3671), + [anon_sym_QMARK_QMARK] = ACTIONS(3673), + [anon_sym_from] = ACTIONS(3671), + [anon_sym_into] = ACTIONS(3671), + [anon_sym_join] = ACTIONS(3671), + [anon_sym_on] = ACTIONS(3671), + [anon_sym_equals] = ACTIONS(3671), + [anon_sym_let] = ACTIONS(3671), + [anon_sym_orderby] = ACTIONS(3671), + [anon_sym_group] = ACTIONS(3671), + [anon_sym_by] = ACTIONS(3671), + [anon_sym_select] = ACTIONS(3671), + [anon_sym_as] = ACTIONS(3671), + [anon_sym_is] = ACTIONS(3671), + [anon_sym_DASH_GT] = ACTIONS(3671), + [anon_sym_with] = ACTIONS(3671), + [aux_sym_preproc_if_token3] = ACTIONS(3671), + [aux_sym_preproc_else_token1] = ACTIONS(3671), + [aux_sym_preproc_elif_token1] = ACTIONS(3671), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_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), + [anon_sym_SEMI] = ACTIONS(4140), + [anon_sym_EQ] = ACTIONS(4142), + [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_RBRACE] = ACTIONS(4140), + [anon_sym_LT] = ACTIONS(4142), + [anon_sym_GT] = ACTIONS(4142), + [anon_sym_in] = ACTIONS(4142), [anon_sym_where] = ACTIONS(4140), - [anon_sym_QMARK] = ACTIONS(4140), - [anon_sym_notnull] = ACTIONS(4140), - [anon_sym_unmanaged] = ACTIONS(4140), - [anon_sym_BANG] = ACTIONS(4140), - [anon_sym_PLUS_PLUS] = ACTIONS(4142), - [anon_sym_DASH_DASH] = ACTIONS(4142), - [anon_sym_PLUS] = ACTIONS(4140), - [anon_sym_DASH] = ACTIONS(4140), + [anon_sym_QMARK] = ACTIONS(4142), + [anon_sym_BANG] = ACTIONS(4142), + [anon_sym_PLUS_PLUS] = ACTIONS(4140), + [anon_sym_DASH_DASH] = ACTIONS(4140), + [anon_sym_PLUS] = ACTIONS(4142), + [anon_sym_DASH] = ACTIONS(4142), [anon_sym_STAR] = ACTIONS(4142), - [anon_sym_SLASH] = ACTIONS(4140), + [anon_sym_SLASH] = ACTIONS(4142), [anon_sym_PERCENT] = ACTIONS(4142), [anon_sym_CARET] = ACTIONS(4142), - [anon_sym_PIPE] = ACTIONS(4140), - [anon_sym_AMP] = ACTIONS(4140), + [anon_sym_PIPE] = ACTIONS(4142), + [anon_sym_AMP] = ACTIONS(4142), [anon_sym_LT_LT] = ACTIONS(4142), - [anon_sym_GT_GT] = ACTIONS(4140), + [anon_sym_GT_GT] = ACTIONS(4142), [anon_sym_GT_GT_GT] = ACTIONS(4142), - [anon_sym_EQ_EQ] = ACTIONS(4142), - [anon_sym_BANG_EQ] = ACTIONS(4142), - [anon_sym_GT_EQ] = ACTIONS(4142), - [anon_sym_LT_EQ] = ACTIONS(4142), - [anon_sym_DOT] = ACTIONS(4140), - [anon_sym_scoped] = ACTIONS(4140), - [anon_sym_EQ_GT] = ACTIONS(4142), - [anon_sym_var] = ACTIONS(4140), - [anon_sym_yield] = 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(4142), + [anon_sym_EQ_GT] = ACTIONS(4140), [anon_sym_switch] = ACTIONS(4140), - [anon_sym_when] = ACTIONS(4140), - [sym_discard] = ACTIONS(4140), - [anon_sym_DOT_DOT] = ACTIONS(4142), + [anon_sym_DOT_DOT] = ACTIONS(4140), [anon_sym_and] = ACTIONS(4140), - [anon_sym_or] = ACTIONS(4140), - [anon_sym_AMP_AMP] = ACTIONS(4142), - [anon_sym_PIPE_PIPE] = ACTIONS(4142), + [anon_sym_or] = ACTIONS(4142), + [anon_sym_PLUS_EQ] = ACTIONS(4140), + [anon_sym_DASH_EQ] = ACTIONS(4140), + [anon_sym_STAR_EQ] = ACTIONS(4140), + [anon_sym_SLASH_EQ] = ACTIONS(4140), + [anon_sym_PERCENT_EQ] = ACTIONS(4140), + [anon_sym_AMP_EQ] = ACTIONS(4140), + [anon_sym_CARET_EQ] = ACTIONS(4140), + [anon_sym_PIPE_EQ] = ACTIONS(4140), + [anon_sym_LT_LT_EQ] = ACTIONS(4140), + [anon_sym_GT_GT_EQ] = ACTIONS(4140), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(4140), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(4140), + [anon_sym_AMP_AMP] = ACTIONS(4140), + [anon_sym_PIPE_PIPE] = ACTIONS(4140), [anon_sym_QMARK_QMARK] = ACTIONS(4142), [anon_sym_from] = ACTIONS(4140), [anon_sym_into] = ACTIONS(4140), @@ -421478,109 +421241,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_equals] = ACTIONS(4140), [anon_sym_let] = ACTIONS(4140), [anon_sym_orderby] = ACTIONS(4140), - [anon_sym_ascending] = ACTIONS(4140), - [anon_sym_descending] = ACTIONS(4140), [anon_sym_group] = ACTIONS(4140), [anon_sym_by] = ACTIONS(4140), [anon_sym_select] = ACTIONS(4140), [anon_sym_as] = ACTIONS(4140), [anon_sym_is] = ACTIONS(4140), - [anon_sym_DASH_GT] = ACTIONS(4142), + [anon_sym_DASH_GT] = ACTIONS(4140), [anon_sym_with] = ACTIONS(4140), - [aux_sym_preproc_if_token3] = ACTIONS(4142), - [aux_sym_preproc_else_token1] = ACTIONS(4142), - [aux_sym_preproc_elif_token1] = ACTIONS(4142), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_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), - [anon_sym_SEMI] = ACTIONS(3719), - [anon_sym_EQ] = ACTIONS(3704), - [anon_sym_LBRACK] = ACTIONS(3719), - [anon_sym_COLON] = ACTIONS(3719), - [anon_sym_COMMA] = ACTIONS(3719), - [anon_sym_RBRACK] = ACTIONS(3719), - [anon_sym_LPAREN] = ACTIONS(3719), - [anon_sym_RPAREN] = ACTIONS(3719), - [anon_sym_RBRACE] = ACTIONS(3719), - [anon_sym_LT] = ACTIONS(3704), - [anon_sym_GT] = ACTIONS(3704), - [anon_sym_in] = ACTIONS(3704), - [anon_sym_where] = ACTIONS(3719), - [anon_sym_QMARK] = ACTIONS(3704), - [anon_sym_BANG] = ACTIONS(3704), - [anon_sym_PLUS_PLUS] = ACTIONS(3719), - [anon_sym_DASH_DASH] = ACTIONS(3719), - [anon_sym_PLUS] = ACTIONS(3704), - [anon_sym_DASH] = ACTIONS(3704), - [anon_sym_STAR] = ACTIONS(3704), - [anon_sym_SLASH] = ACTIONS(3704), - [anon_sym_PERCENT] = ACTIONS(3704), - [anon_sym_CARET] = ACTIONS(3704), - [anon_sym_PIPE] = ACTIONS(3704), - [anon_sym_AMP] = ACTIONS(3704), - [anon_sym_LT_LT] = ACTIONS(3704), - [anon_sym_GT_GT] = ACTIONS(3704), - [anon_sym_GT_GT_GT] = ACTIONS(3704), - [anon_sym_EQ_EQ] = ACTIONS(3719), - [anon_sym_BANG_EQ] = ACTIONS(3719), - [anon_sym_GT_EQ] = ACTIONS(3719), - [anon_sym_LT_EQ] = ACTIONS(3719), - [anon_sym_DOT] = ACTIONS(3704), - [anon_sym_EQ_GT] = ACTIONS(3719), - [anon_sym_switch] = ACTIONS(3719), - [anon_sym_DOT_DOT] = ACTIONS(3719), - [anon_sym_and] = ACTIONS(3719), - [anon_sym_or] = ACTIONS(3704), - [anon_sym_PLUS_EQ] = ACTIONS(3719), - [anon_sym_DASH_EQ] = ACTIONS(3719), - [anon_sym_STAR_EQ] = ACTIONS(3719), - [anon_sym_SLASH_EQ] = ACTIONS(3719), - [anon_sym_PERCENT_EQ] = ACTIONS(3719), - [anon_sym_AMP_EQ] = ACTIONS(3719), - [anon_sym_CARET_EQ] = ACTIONS(3719), - [anon_sym_PIPE_EQ] = ACTIONS(3719), - [anon_sym_LT_LT_EQ] = ACTIONS(3719), - [anon_sym_GT_GT_EQ] = ACTIONS(3719), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3719), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3719), - [anon_sym_AMP_AMP] = ACTIONS(3719), - [anon_sym_PIPE_PIPE] = ACTIONS(3719), - [anon_sym_QMARK_QMARK] = ACTIONS(3704), - [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_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(3719), - [anon_sym_with] = ACTIONS(3719), - [aux_sym_preproc_if_token3] = ACTIONS(3719), - [aux_sym_preproc_else_token1] = ACTIONS(3719), - [aux_sym_preproc_elif_token1] = ACTIONS(3719), + [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), @@ -421694,9 +421364,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_define] = STATE(2425), [sym_preproc_undef] = STATE(2425), [anon_sym_SEMI] = ACTIONS(4148), - [anon_sym_EQ] = ACTIONS(4136), + [anon_sym_EQ] = ACTIONS(4150), [anon_sym_LBRACK] = ACTIONS(4148), - [anon_sym_COLON] = ACTIONS(4134), + [anon_sym_COLON] = ACTIONS(4148), [anon_sym_COMMA] = ACTIONS(4148), [anon_sym_RBRACK] = ACTIONS(4148), [anon_sym_LPAREN] = ACTIONS(4148), @@ -421731,18 +421401,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT_DOT] = ACTIONS(4148), [anon_sym_and] = ACTIONS(4148), [anon_sym_or] = ACTIONS(4150), - [anon_sym_PLUS_EQ] = ACTIONS(4134), - [anon_sym_DASH_EQ] = ACTIONS(4134), - [anon_sym_STAR_EQ] = ACTIONS(4134), - [anon_sym_SLASH_EQ] = ACTIONS(4134), - [anon_sym_PERCENT_EQ] = ACTIONS(4134), - [anon_sym_AMP_EQ] = ACTIONS(4134), - [anon_sym_CARET_EQ] = ACTIONS(4134), - [anon_sym_PIPE_EQ] = ACTIONS(4134), - [anon_sym_LT_LT_EQ] = ACTIONS(4134), - [anon_sym_GT_GT_EQ] = ACTIONS(4134), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(4134), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(4134), + [anon_sym_PLUS_EQ] = ACTIONS(4148), + [anon_sym_DASH_EQ] = ACTIONS(4148), + [anon_sym_STAR_EQ] = ACTIONS(4148), + [anon_sym_SLASH_EQ] = ACTIONS(4148), + [anon_sym_PERCENT_EQ] = ACTIONS(4148), + [anon_sym_AMP_EQ] = ACTIONS(4148), + [anon_sym_CARET_EQ] = ACTIONS(4148), + [anon_sym_PIPE_EQ] = ACTIONS(4148), + [anon_sym_LT_LT_EQ] = ACTIONS(4148), + [anon_sym_GT_GT_EQ] = ACTIONS(4148), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(4148), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(4148), [anon_sym_AMP_AMP] = ACTIONS(4148), [anon_sym_PIPE_PIPE] = ACTIONS(4148), [anon_sym_QMARK_QMARK] = ACTIONS(4150), @@ -421784,76 +421454,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2426), [sym_preproc_define] = STATE(2426), [sym_preproc_undef] = STATE(2426), - [sym__identifier_token] = ACTIONS(4016), - [anon_sym_alias] = ACTIONS(4016), - [anon_sym_SEMI] = ACTIONS(4018), - [anon_sym_global] = ACTIONS(4016), - [anon_sym_LBRACK] = ACTIONS(4066), - [anon_sym_COMMA] = ACTIONS(4018), - [anon_sym_RBRACK] = ACTIONS(4018), - [anon_sym_LPAREN] = ACTIONS(4018), - [anon_sym_RPAREN] = ACTIONS(4018), - [anon_sym_LBRACE] = ACTIONS(4018), - [anon_sym_RBRACE] = ACTIONS(4018), - [anon_sym_file] = ACTIONS(4016), - [anon_sym_LT] = ACTIONS(4016), - [anon_sym_GT] = ACTIONS(4016), - [anon_sym_in] = ACTIONS(4016), - [anon_sym_where] = ACTIONS(4016), - [anon_sym_QMARK] = ACTIONS(4069), - [anon_sym_notnull] = ACTIONS(4016), - [anon_sym_unmanaged] = ACTIONS(4016), - [anon_sym_BANG] = ACTIONS(4016), - [anon_sym_PLUS_PLUS] = ACTIONS(4018), - [anon_sym_DASH_DASH] = ACTIONS(4018), - [anon_sym_PLUS] = ACTIONS(4016), - [anon_sym_DASH] = ACTIONS(4016), - [anon_sym_STAR] = ACTIONS(4072), - [anon_sym_SLASH] = ACTIONS(4016), - [anon_sym_PERCENT] = ACTIONS(4018), - [anon_sym_CARET] = ACTIONS(4018), - [anon_sym_PIPE] = ACTIONS(4016), - [anon_sym_AMP] = ACTIONS(4016), - [anon_sym_LT_LT] = ACTIONS(4018), - [anon_sym_GT_GT] = ACTIONS(4016), - [anon_sym_GT_GT_GT] = ACTIONS(4018), - [anon_sym_EQ_EQ] = ACTIONS(4018), - [anon_sym_BANG_EQ] = ACTIONS(4018), - [anon_sym_GT_EQ] = ACTIONS(4018), - [anon_sym_LT_EQ] = ACTIONS(4018), - [anon_sym_DOT] = ACTIONS(4152), - [anon_sym_scoped] = ACTIONS(4016), - [anon_sym_EQ_GT] = ACTIONS(4018), - [anon_sym_var] = ACTIONS(4016), - [anon_sym_yield] = ACTIONS(4016), - [anon_sym_switch] = ACTIONS(4016), - [anon_sym_when] = ACTIONS(4016), - [sym_discard] = ACTIONS(4016), - [anon_sym_DOT_DOT] = ACTIONS(4018), - [anon_sym_and] = ACTIONS(4016), - [anon_sym_or] = ACTIONS(4016), - [anon_sym_AMP_AMP] = ACTIONS(4018), - [anon_sym_PIPE_PIPE] = ACTIONS(4018), - [anon_sym_QMARK_QMARK] = ACTIONS(4018), - [anon_sym_from] = ACTIONS(4016), - [anon_sym_into] = ACTIONS(4016), - [anon_sym_join] = ACTIONS(4016), - [anon_sym_on] = ACTIONS(4016), - [anon_sym_equals] = ACTIONS(4016), - [anon_sym_let] = ACTIONS(4016), - [anon_sym_orderby] = ACTIONS(4016), - [anon_sym_ascending] = ACTIONS(4016), - [anon_sym_descending] = ACTIONS(4016), - [anon_sym_group] = ACTIONS(4016), - [anon_sym_by] = ACTIONS(4016), - [anon_sym_select] = ACTIONS(4016), - [anon_sym_as] = ACTIONS(4016), - [anon_sym_is] = ACTIONS(4016), - [anon_sym_DASH_GT] = ACTIONS(4077), - [anon_sym_with] = ACTIONS(4016), - [aux_sym_preproc_if_token3] = ACTIONS(4018), - [aux_sym_preproc_else_token1] = ACTIONS(4018), - [aux_sym_preproc_elif_token1] = ACTIONS(4018), + [sym__identifier_token] = ACTIONS(3976), + [anon_sym_alias] = ACTIONS(3976), + [anon_sym_SEMI] = ACTIONS(3978), + [anon_sym_global] = ACTIONS(3976), + [anon_sym_LBRACK] = ACTIONS(3978), + [anon_sym_COMMA] = ACTIONS(3978), + [anon_sym_RBRACK] = ACTIONS(3978), + [anon_sym_LPAREN] = ACTIONS(3978), + [anon_sym_RPAREN] = ACTIONS(3978), + [anon_sym_LBRACE] = ACTIONS(3978), + [anon_sym_RBRACE] = ACTIONS(3978), + [anon_sym_file] = ACTIONS(3976), + [anon_sym_LT] = ACTIONS(3976), + [anon_sym_GT] = ACTIONS(3976), + [anon_sym_in] = ACTIONS(3976), + [anon_sym_where] = ACTIONS(3976), + [anon_sym_QMARK] = ACTIONS(3976), + [anon_sym_notnull] = ACTIONS(3976), + [anon_sym_unmanaged] = ACTIONS(3976), + [anon_sym_BANG] = ACTIONS(3976), + [anon_sym_PLUS_PLUS] = ACTIONS(3978), + [anon_sym_DASH_DASH] = ACTIONS(3978), + [anon_sym_PLUS] = ACTIONS(3976), + [anon_sym_DASH] = ACTIONS(3976), + [anon_sym_STAR] = ACTIONS(3978), + [anon_sym_SLASH] = ACTIONS(3976), + [anon_sym_PERCENT] = ACTIONS(3978), + [anon_sym_CARET] = ACTIONS(3978), + [anon_sym_PIPE] = ACTIONS(3976), + [anon_sym_AMP] = ACTIONS(3976), + [anon_sym_LT_LT] = ACTIONS(3978), + [anon_sym_GT_GT] = ACTIONS(3976), + [anon_sym_GT_GT_GT] = ACTIONS(3978), + [anon_sym_EQ_EQ] = ACTIONS(3978), + [anon_sym_BANG_EQ] = ACTIONS(3978), + [anon_sym_GT_EQ] = ACTIONS(3978), + [anon_sym_LT_EQ] = ACTIONS(3978), + [anon_sym_DOT] = ACTIONS(4106), + [anon_sym_scoped] = ACTIONS(3976), + [anon_sym_EQ_GT] = ACTIONS(3978), + [anon_sym_var] = ACTIONS(3976), + [anon_sym_yield] = ACTIONS(3976), + [anon_sym_switch] = ACTIONS(3976), + [anon_sym_when] = ACTIONS(3976), + [sym_discard] = ACTIONS(3976), + [anon_sym_DOT_DOT] = ACTIONS(3978), + [anon_sym_and] = ACTIONS(3976), + [anon_sym_or] = ACTIONS(3976), + [anon_sym_AMP_AMP] = ACTIONS(3978), + [anon_sym_PIPE_PIPE] = ACTIONS(3978), + [anon_sym_QMARK_QMARK] = ACTIONS(3978), + [anon_sym_from] = ACTIONS(3976), + [anon_sym_into] = ACTIONS(3976), + [anon_sym_join] = ACTIONS(3976), + [anon_sym_on] = ACTIONS(3976), + [anon_sym_equals] = ACTIONS(3976), + [anon_sym_let] = ACTIONS(3976), + [anon_sym_orderby] = ACTIONS(3976), + [anon_sym_ascending] = ACTIONS(3976), + [anon_sym_descending] = ACTIONS(3976), + [anon_sym_group] = ACTIONS(3976), + [anon_sym_by] = ACTIONS(3976), + [anon_sym_select] = ACTIONS(3976), + [anon_sym_as] = ACTIONS(3976), + [anon_sym_is] = ACTIONS(3976), + [anon_sym_DASH_GT] = ACTIONS(3978), + [anon_sym_with] = ACTIONS(3976), + [aux_sym_preproc_if_token3] = ACTIONS(3978), + [aux_sym_preproc_else_token1] = ACTIONS(3978), + [aux_sym_preproc_elif_token1] = ACTIONS(3978), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -421875,76 +421545,76 @@ 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), - [anon_sym_SEMI] = ACTIONS(3677), - [anon_sym_EQ] = ACTIONS(3675), - [anon_sym_LBRACK] = ACTIONS(3677), - [anon_sym_COLON] = ACTIONS(3677), - [anon_sym_COMMA] = ACTIONS(3677), - [anon_sym_RBRACK] = ACTIONS(3677), - [anon_sym_LPAREN] = ACTIONS(3677), - [anon_sym_RPAREN] = ACTIONS(3677), - [anon_sym_RBRACE] = ACTIONS(3677), - [anon_sym_LT] = ACTIONS(3675), - [anon_sym_GT] = ACTIONS(3675), - [anon_sym_in] = ACTIONS(3675), - [anon_sym_where] = ACTIONS(3677), - [anon_sym_QMARK] = ACTIONS(3675), - [anon_sym_BANG] = ACTIONS(3675), - [anon_sym_PLUS_PLUS] = ACTIONS(3677), - [anon_sym_DASH_DASH] = ACTIONS(3677), - [anon_sym_PLUS] = ACTIONS(3675), - [anon_sym_DASH] = ACTIONS(3675), - [anon_sym_STAR] = ACTIONS(3675), - [anon_sym_SLASH] = ACTIONS(3675), - [anon_sym_PERCENT] = ACTIONS(3675), - [anon_sym_CARET] = ACTIONS(3675), - [anon_sym_PIPE] = ACTIONS(3675), - [anon_sym_AMP] = ACTIONS(3675), - [anon_sym_LT_LT] = ACTIONS(3675), - [anon_sym_GT_GT] = ACTIONS(3675), - [anon_sym_GT_GT_GT] = ACTIONS(3675), - [anon_sym_EQ_EQ] = ACTIONS(3677), - [anon_sym_BANG_EQ] = ACTIONS(3677), - [anon_sym_GT_EQ] = ACTIONS(3677), - [anon_sym_LT_EQ] = ACTIONS(3677), - [anon_sym_DOT] = ACTIONS(3675), - [anon_sym_EQ_GT] = ACTIONS(3677), - [anon_sym_switch] = ACTIONS(3677), - [anon_sym_DOT_DOT] = ACTIONS(3677), - [anon_sym_and] = ACTIONS(3677), - [anon_sym_or] = ACTIONS(3675), - [anon_sym_PLUS_EQ] = ACTIONS(3677), - [anon_sym_DASH_EQ] = ACTIONS(3677), - [anon_sym_STAR_EQ] = ACTIONS(3677), - [anon_sym_SLASH_EQ] = ACTIONS(3677), - [anon_sym_PERCENT_EQ] = ACTIONS(3677), - [anon_sym_AMP_EQ] = ACTIONS(3677), - [anon_sym_CARET_EQ] = ACTIONS(3677), - [anon_sym_PIPE_EQ] = ACTIONS(3677), - [anon_sym_LT_LT_EQ] = ACTIONS(3677), - [anon_sym_GT_GT_EQ] = ACTIONS(3677), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3677), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3677), - [anon_sym_AMP_AMP] = ACTIONS(3677), - [anon_sym_PIPE_PIPE] = ACTIONS(3677), - [anon_sym_QMARK_QMARK] = ACTIONS(3675), - [anon_sym_from] = ACTIONS(3677), - [anon_sym_into] = ACTIONS(3677), - [anon_sym_join] = ACTIONS(3677), - [anon_sym_on] = ACTIONS(3677), - [anon_sym_equals] = ACTIONS(3677), - [anon_sym_let] = ACTIONS(3677), - [anon_sym_orderby] = ACTIONS(3677), - [anon_sym_group] = ACTIONS(3677), - [anon_sym_by] = ACTIONS(3677), - [anon_sym_select] = ACTIONS(3677), - [anon_sym_as] = ACTIONS(3677), - [anon_sym_is] = ACTIONS(3677), - [anon_sym_DASH_GT] = ACTIONS(3677), - [anon_sym_with] = ACTIONS(3677), - [aux_sym_preproc_if_token3] = ACTIONS(3677), - [aux_sym_preproc_else_token1] = ACTIONS(3677), - [aux_sym_preproc_elif_token1] = ACTIONS(3677), + [anon_sym_SEMI] = ACTIONS(4152), + [anon_sym_EQ] = ACTIONS(4118), + [anon_sym_LBRACK] = ACTIONS(4152), + [anon_sym_COLON] = ACTIONS(4116), + [anon_sym_COMMA] = ACTIONS(4152), + [anon_sym_RBRACK] = ACTIONS(4152), + [anon_sym_LPAREN] = ACTIONS(4152), + [anon_sym_RPAREN] = ACTIONS(4152), + [anon_sym_RBRACE] = ACTIONS(4152), + [anon_sym_LT] = ACTIONS(4154), + [anon_sym_GT] = ACTIONS(4154), + [anon_sym_in] = ACTIONS(4154), + [anon_sym_where] = ACTIONS(4152), + [anon_sym_QMARK] = ACTIONS(4154), + [anon_sym_BANG] = ACTIONS(4154), + [anon_sym_PLUS_PLUS] = ACTIONS(4152), + [anon_sym_DASH_DASH] = ACTIONS(4152), + [anon_sym_PLUS] = ACTIONS(4154), + [anon_sym_DASH] = ACTIONS(4154), + [anon_sym_STAR] = ACTIONS(4154), + [anon_sym_SLASH] = ACTIONS(4154), + [anon_sym_PERCENT] = ACTIONS(4154), + [anon_sym_CARET] = ACTIONS(4154), + [anon_sym_PIPE] = ACTIONS(4154), + [anon_sym_AMP] = ACTIONS(4154), + [anon_sym_LT_LT] = ACTIONS(4154), + [anon_sym_GT_GT] = ACTIONS(4154), + [anon_sym_GT_GT_GT] = ACTIONS(4154), + [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(4154), + [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(4154), + [anon_sym_PLUS_EQ] = ACTIONS(4116), + [anon_sym_DASH_EQ] = ACTIONS(4116), + [anon_sym_STAR_EQ] = ACTIONS(4116), + [anon_sym_SLASH_EQ] = ACTIONS(4116), + [anon_sym_PERCENT_EQ] = ACTIONS(4116), + [anon_sym_AMP_EQ] = ACTIONS(4116), + [anon_sym_CARET_EQ] = ACTIONS(4116), + [anon_sym_PIPE_EQ] = ACTIONS(4116), + [anon_sym_LT_LT_EQ] = ACTIONS(4116), + [anon_sym_GT_GT_EQ] = ACTIONS(4116), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(4116), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(4116), + [anon_sym_AMP_AMP] = ACTIONS(4152), + [anon_sym_PIPE_PIPE] = ACTIONS(4152), + [anon_sym_QMARK_QMARK] = ACTIONS(4154), + [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), @@ -421966,76 +421636,76 @@ 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(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_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), + [sym__identifier_token] = ACTIONS(3961), + [anon_sym_alias] = ACTIONS(3961), + [anon_sym_SEMI] = ACTIONS(3963), + [anon_sym_global] = ACTIONS(3961), + [anon_sym_LBRACK] = ACTIONS(4033), + [anon_sym_COMMA] = ACTIONS(3963), + [anon_sym_RBRACK] = ACTIONS(3963), + [anon_sym_LPAREN] = ACTIONS(3963), + [anon_sym_RPAREN] = ACTIONS(3963), + [anon_sym_LBRACE] = ACTIONS(3963), + [anon_sym_RBRACE] = ACTIONS(3963), + [anon_sym_file] = ACTIONS(3961), + [anon_sym_LT] = ACTIONS(3961), + [anon_sym_GT] = ACTIONS(3961), + [anon_sym_in] = ACTIONS(3961), + [anon_sym_where] = ACTIONS(3961), + [anon_sym_QMARK] = ACTIONS(4036), + [anon_sym_notnull] = ACTIONS(3961), + [anon_sym_unmanaged] = ACTIONS(3961), + [anon_sym_BANG] = ACTIONS(3961), + [anon_sym_PLUS_PLUS] = ACTIONS(3963), + [anon_sym_DASH_DASH] = ACTIONS(3963), + [anon_sym_PLUS] = ACTIONS(3961), + [anon_sym_DASH] = ACTIONS(3961), + [anon_sym_STAR] = ACTIONS(4039), + [anon_sym_SLASH] = ACTIONS(3961), + [anon_sym_PERCENT] = ACTIONS(3963), + [anon_sym_CARET] = ACTIONS(3963), + [anon_sym_PIPE] = ACTIONS(3961), + [anon_sym_AMP] = ACTIONS(3961), + [anon_sym_LT_LT] = ACTIONS(3963), + [anon_sym_GT_GT] = ACTIONS(3961), + [anon_sym_GT_GT_GT] = ACTIONS(3963), + [anon_sym_EQ_EQ] = ACTIONS(3963), + [anon_sym_BANG_EQ] = ACTIONS(3963), + [anon_sym_GT_EQ] = ACTIONS(3963), + [anon_sym_LT_EQ] = ACTIONS(3963), + [anon_sym_DOT] = ACTIONS(4156), + [anon_sym_scoped] = ACTIONS(3961), + [anon_sym_EQ_GT] = ACTIONS(3963), + [anon_sym_var] = ACTIONS(3961), + [anon_sym_yield] = ACTIONS(3961), + [anon_sym_switch] = ACTIONS(3961), + [anon_sym_when] = ACTIONS(3961), + [sym_discard] = ACTIONS(3961), + [anon_sym_DOT_DOT] = ACTIONS(3963), + [anon_sym_and] = ACTIONS(3961), + [anon_sym_or] = ACTIONS(3961), + [anon_sym_AMP_AMP] = ACTIONS(3963), + [anon_sym_PIPE_PIPE] = ACTIONS(3963), + [anon_sym_QMARK_QMARK] = ACTIONS(3963), + [anon_sym_from] = ACTIONS(3961), + [anon_sym_into] = ACTIONS(3961), + [anon_sym_join] = ACTIONS(3961), + [anon_sym_on] = ACTIONS(3961), + [anon_sym_equals] = ACTIONS(3961), + [anon_sym_let] = ACTIONS(3961), + [anon_sym_orderby] = ACTIONS(3961), + [anon_sym_ascending] = ACTIONS(3961), + [anon_sym_descending] = ACTIONS(3961), + [anon_sym_group] = ACTIONS(3961), + [anon_sym_by] = ACTIONS(3961), + [anon_sym_select] = ACTIONS(3961), + [anon_sym_as] = ACTIONS(3961), + [anon_sym_is] = ACTIONS(3961), + [anon_sym_DASH_GT] = ACTIONS(4044), + [anon_sym_with] = ACTIONS(3961), + [aux_sym_preproc_if_token3] = ACTIONS(3963), + [aux_sym_preproc_else_token1] = ACTIONS(3963), + [aux_sym_preproc_elif_token1] = ACTIONS(3963), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -422057,76 +421727,76 @@ 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), - [anon_sym_SEMI] = ACTIONS(3697), - [anon_sym_EQ] = ACTIONS(3689), - [anon_sym_LBRACK] = ACTIONS(3697), - [anon_sym_COLON] = ACTIONS(3697), - [anon_sym_COMMA] = ACTIONS(3697), - [anon_sym_RBRACK] = ACTIONS(3697), - [anon_sym_LPAREN] = ACTIONS(3697), - [anon_sym_RPAREN] = ACTIONS(3697), - [anon_sym_RBRACE] = ACTIONS(3697), - [anon_sym_LT] = ACTIONS(3689), - [anon_sym_GT] = ACTIONS(3689), - [anon_sym_in] = ACTIONS(3689), - [anon_sym_where] = ACTIONS(3697), - [anon_sym_QMARK] = ACTIONS(3689), - [anon_sym_BANG] = ACTIONS(3689), - [anon_sym_PLUS_PLUS] = ACTIONS(3697), - [anon_sym_DASH_DASH] = ACTIONS(3697), - [anon_sym_PLUS] = ACTIONS(3689), - [anon_sym_DASH] = ACTIONS(3689), - [anon_sym_STAR] = ACTIONS(3689), - [anon_sym_SLASH] = ACTIONS(3689), - [anon_sym_PERCENT] = ACTIONS(3689), - [anon_sym_CARET] = ACTIONS(3689), - [anon_sym_PIPE] = ACTIONS(3689), - [anon_sym_AMP] = ACTIONS(3689), - [anon_sym_LT_LT] = ACTIONS(3689), - [anon_sym_GT_GT] = ACTIONS(3689), - [anon_sym_GT_GT_GT] = ACTIONS(3689), - [anon_sym_EQ_EQ] = ACTIONS(3697), - [anon_sym_BANG_EQ] = ACTIONS(3697), - [anon_sym_GT_EQ] = ACTIONS(3697), - [anon_sym_LT_EQ] = ACTIONS(3697), - [anon_sym_DOT] = ACTIONS(3689), - [anon_sym_EQ_GT] = ACTIONS(3697), - [anon_sym_switch] = ACTIONS(3697), - [anon_sym_DOT_DOT] = ACTIONS(3697), - [anon_sym_and] = ACTIONS(3697), - [anon_sym_or] = ACTIONS(3689), - [anon_sym_PLUS_EQ] = ACTIONS(3697), - [anon_sym_DASH_EQ] = ACTIONS(3697), - [anon_sym_STAR_EQ] = ACTIONS(3697), - [anon_sym_SLASH_EQ] = ACTIONS(3697), - [anon_sym_PERCENT_EQ] = ACTIONS(3697), - [anon_sym_AMP_EQ] = ACTIONS(3697), - [anon_sym_CARET_EQ] = ACTIONS(3697), - [anon_sym_PIPE_EQ] = ACTIONS(3697), - [anon_sym_LT_LT_EQ] = ACTIONS(3697), - [anon_sym_GT_GT_EQ] = ACTIONS(3697), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3697), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3697), - [anon_sym_AMP_AMP] = ACTIONS(3697), - [anon_sym_PIPE_PIPE] = ACTIONS(3697), - [anon_sym_QMARK_QMARK] = ACTIONS(3689), - [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_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(3697), - [anon_sym_with] = ACTIONS(3697), - [aux_sym_preproc_if_token3] = ACTIONS(3697), - [aux_sym_preproc_else_token1] = ACTIONS(3697), - [aux_sym_preproc_elif_token1] = ACTIONS(3697), + [sym__identifier_token] = ACTIONS(3961), + [anon_sym_alias] = ACTIONS(3961), + [anon_sym_SEMI] = ACTIONS(3963), + [anon_sym_global] = ACTIONS(3961), + [anon_sym_LBRACK] = ACTIONS(4033), + [anon_sym_COMMA] = ACTIONS(3963), + [anon_sym_RBRACK] = ACTIONS(3963), + [anon_sym_LPAREN] = ACTIONS(3963), + [anon_sym_RPAREN] = ACTIONS(3963), + [anon_sym_LBRACE] = ACTIONS(3963), + [anon_sym_RBRACE] = ACTIONS(3963), + [anon_sym_file] = ACTIONS(3961), + [anon_sym_LT] = ACTIONS(3961), + [anon_sym_GT] = ACTIONS(3961), + [anon_sym_in] = ACTIONS(3961), + [anon_sym_where] = ACTIONS(3961), + [anon_sym_QMARK] = ACTIONS(4036), + [anon_sym_notnull] = ACTIONS(3961), + [anon_sym_unmanaged] = ACTIONS(3961), + [anon_sym_BANG] = ACTIONS(3961), + [anon_sym_PLUS_PLUS] = ACTIONS(3963), + [anon_sym_DASH_DASH] = ACTIONS(3963), + [anon_sym_PLUS] = ACTIONS(3961), + [anon_sym_DASH] = ACTIONS(3961), + [anon_sym_STAR] = ACTIONS(4039), + [anon_sym_SLASH] = ACTIONS(3961), + [anon_sym_PERCENT] = ACTIONS(3963), + [anon_sym_CARET] = ACTIONS(3963), + [anon_sym_PIPE] = ACTIONS(3961), + [anon_sym_AMP] = ACTIONS(3961), + [anon_sym_LT_LT] = ACTIONS(3963), + [anon_sym_GT_GT] = ACTIONS(3961), + [anon_sym_GT_GT_GT] = ACTIONS(3963), + [anon_sym_EQ_EQ] = ACTIONS(3963), + [anon_sym_BANG_EQ] = ACTIONS(3963), + [anon_sym_GT_EQ] = ACTIONS(3963), + [anon_sym_LT_EQ] = ACTIONS(3963), + [anon_sym_DOT] = ACTIONS(4158), + [anon_sym_scoped] = ACTIONS(3961), + [anon_sym_EQ_GT] = ACTIONS(3963), + [anon_sym_var] = ACTIONS(3961), + [anon_sym_yield] = ACTIONS(3961), + [anon_sym_switch] = ACTIONS(3961), + [anon_sym_when] = ACTIONS(3961), + [sym_discard] = ACTIONS(3961), + [anon_sym_DOT_DOT] = ACTIONS(3963), + [anon_sym_and] = ACTIONS(3961), + [anon_sym_or] = ACTIONS(3961), + [anon_sym_AMP_AMP] = ACTIONS(3963), + [anon_sym_PIPE_PIPE] = ACTIONS(3963), + [anon_sym_QMARK_QMARK] = ACTIONS(3963), + [anon_sym_from] = ACTIONS(3961), + [anon_sym_into] = ACTIONS(3961), + [anon_sym_join] = ACTIONS(3961), + [anon_sym_on] = ACTIONS(3961), + [anon_sym_equals] = ACTIONS(3961), + [anon_sym_let] = ACTIONS(3961), + [anon_sym_orderby] = ACTIONS(3961), + [anon_sym_ascending] = ACTIONS(3961), + [anon_sym_descending] = ACTIONS(3961), + [anon_sym_group] = ACTIONS(3961), + [anon_sym_by] = ACTIONS(3961), + [anon_sym_select] = ACTIONS(3961), + [anon_sym_as] = ACTIONS(3961), + [anon_sym_is] = ACTIONS(3961), + [anon_sym_DASH_GT] = ACTIONS(4044), + [anon_sym_with] = ACTIONS(3961), + [aux_sym_preproc_if_token3] = ACTIONS(3963), + [aux_sym_preproc_else_token1] = ACTIONS(3963), + [aux_sym_preproc_elif_token1] = ACTIONS(3963), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -422139,6 +421809,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2430] = { + [sym__name] = STATE(3107), + [sym_alias_qualified_name] = STATE(2976), + [sym__simple_name] = STATE(2976), + [sym_qualified_name] = STATE(2976), + [sym_generic_name] = STATE(3030), + [sym_ref_type] = STATE(3000), + [sym__scoped_base_type] = STATE(3001), + [sym_identifier] = STATE(2927), + [sym__reserved_identifier] = STATE(2916), [sym_preproc_region] = STATE(2430), [sym_preproc_endregion] = STATE(2430), [sym_preproc_line] = STATE(2430), @@ -422148,76 +421827,67 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2430), [sym_preproc_define] = STATE(2430), [sym_preproc_undef] = STATE(2430), - [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_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), + [sym__identifier_token] = ACTIONS(3871), + [anon_sym_alias] = ACTIONS(3873), + [anon_sym_global] = ACTIONS(3873), + [anon_sym_LBRACK] = ACTIONS(3429), + [anon_sym_LPAREN] = ACTIONS(3429), + [anon_sym_ref] = ACTIONS(4160), + [anon_sym_LBRACE] = ACTIONS(3429), + [anon_sym_file] = ACTIONS(3873), + [anon_sym_LT] = ACTIONS(3431), + [anon_sym_GT] = ACTIONS(3431), + [anon_sym_where] = ACTIONS(4162), + [anon_sym_QMARK] = ACTIONS(3431), + [anon_sym_notnull] = ACTIONS(3873), + [anon_sym_unmanaged] = ACTIONS(3873), + [anon_sym_BANG] = ACTIONS(3431), + [anon_sym_PLUS_PLUS] = ACTIONS(3429), + [anon_sym_DASH_DASH] = ACTIONS(3429), + [anon_sym_PLUS] = ACTIONS(3431), + [anon_sym_DASH] = ACTIONS(3431), + [anon_sym_STAR] = ACTIONS(3429), + [anon_sym_SLASH] = ACTIONS(3431), + [anon_sym_PERCENT] = ACTIONS(3429), + [anon_sym_CARET] = ACTIONS(3429), + [anon_sym_PIPE] = ACTIONS(3431), + [anon_sym_AMP] = ACTIONS(3431), + [anon_sym_LT_LT] = ACTIONS(3429), + [anon_sym_GT_GT] = ACTIONS(3431), + [anon_sym_GT_GT_GT] = ACTIONS(3429), + [anon_sym_EQ_EQ] = ACTIONS(3429), + [anon_sym_BANG_EQ] = ACTIONS(3429), + [anon_sym_GT_EQ] = ACTIONS(3429), + [anon_sym_LT_EQ] = ACTIONS(3429), + [anon_sym_DOT] = ACTIONS(3431), + [anon_sym_scoped] = ACTIONS(3873), + [anon_sym_COLON_COLON] = ACTIONS(3429), + [anon_sym_var] = ACTIONS(3873), + [anon_sym_yield] = ACTIONS(3873), + [anon_sym_switch] = ACTIONS(3431), + [anon_sym_when] = ACTIONS(3873), + [anon_sym_DOT_DOT] = ACTIONS(3429), + [anon_sym_and] = ACTIONS(3431), + [anon_sym_or] = ACTIONS(3431), + [anon_sym_AMP_AMP] = ACTIONS(3429), + [anon_sym_PIPE_PIPE] = ACTIONS(3429), + [anon_sym_QMARK_QMARK] = ACTIONS(3429), + [anon_sym_from] = ACTIONS(4162), + [anon_sym_into] = ACTIONS(3873), + [anon_sym_join] = ACTIONS(4162), + [anon_sym_on] = ACTIONS(3873), + [anon_sym_equals] = ACTIONS(3873), + [anon_sym_let] = ACTIONS(4162), + [anon_sym_orderby] = ACTIONS(4162), + [anon_sym_ascending] = ACTIONS(3873), + [anon_sym_descending] = ACTIONS(3873), + [anon_sym_group] = ACTIONS(4162), + [anon_sym_by] = ACTIONS(3873), + [anon_sym_select] = ACTIONS(4162), + [anon_sym_as] = ACTIONS(3431), + [anon_sym_is] = ACTIONS(3431), + [anon_sym_DASH_GT] = ACTIONS(3429), + [anon_sym_with] = ACTIONS(3431), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -422230,15 +421900,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2431] = { - [sym__name] = STATE(3497), - [sym_alias_qualified_name] = STATE(3251), - [sym__simple_name] = STATE(3251), - [sym_qualified_name] = STATE(3251), - [sym_generic_name] = STATE(3246), - [sym_ref_type] = STATE(3261), - [sym__scoped_base_type] = STATE(3262), - [sym_identifier] = STATE(3167), - [sym__reserved_identifier] = STATE(3225), [sym_preproc_region] = STATE(2431), [sym_preproc_endregion] = STATE(2431), [sym_preproc_line] = STATE(2431), @@ -422248,67 +421909,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2431), [sym_preproc_define] = STATE(2431), [sym_preproc_undef] = STATE(2431), - [sym__identifier_token] = ACTIONS(3788), - [anon_sym_alias] = ACTIONS(3790), - [anon_sym_global] = ACTIONS(3790), - [anon_sym_LBRACK] = ACTIONS(3445), - [anon_sym_LPAREN] = ACTIONS(3445), - [anon_sym_ref] = ACTIONS(4158), - [anon_sym_LBRACE] = ACTIONS(3445), - [anon_sym_file] = ACTIONS(3790), - [anon_sym_LT] = ACTIONS(3447), - [anon_sym_GT] = ACTIONS(3447), - [anon_sym_where] = ACTIONS(3790), - [anon_sym_QMARK] = ACTIONS(3447), - [anon_sym_notnull] = ACTIONS(3790), - [anon_sym_unmanaged] = ACTIONS(3790), - [anon_sym_BANG] = ACTIONS(3447), - [anon_sym_PLUS_PLUS] = ACTIONS(3445), - [anon_sym_DASH_DASH] = ACTIONS(3445), - [anon_sym_PLUS] = ACTIONS(3447), - [anon_sym_DASH] = ACTIONS(3447), - [anon_sym_STAR] = ACTIONS(3445), - [anon_sym_SLASH] = ACTIONS(3447), - [anon_sym_PERCENT] = ACTIONS(3445), - [anon_sym_CARET] = ACTIONS(3445), - [anon_sym_PIPE] = ACTIONS(3447), - [anon_sym_AMP] = ACTIONS(3447), - [anon_sym_LT_LT] = ACTIONS(3445), - [anon_sym_GT_GT] = ACTIONS(3447), - [anon_sym_GT_GT_GT] = ACTIONS(3445), - [anon_sym_EQ_EQ] = ACTIONS(3445), - [anon_sym_BANG_EQ] = ACTIONS(3445), - [anon_sym_GT_EQ] = ACTIONS(3445), - [anon_sym_LT_EQ] = ACTIONS(3445), - [anon_sym_DOT] = ACTIONS(3447), - [anon_sym_scoped] = ACTIONS(3790), - [anon_sym_COLON_COLON] = ACTIONS(3445), - [anon_sym_var] = ACTIONS(3790), - [anon_sym_yield] = ACTIONS(3790), - [anon_sym_switch] = ACTIONS(3447), - [anon_sym_when] = ACTIONS(3790), - [anon_sym_DOT_DOT] = ACTIONS(3445), - [anon_sym_and] = ACTIONS(3447), - [anon_sym_or] = ACTIONS(3447), - [anon_sym_AMP_AMP] = ACTIONS(3445), - [anon_sym_PIPE_PIPE] = ACTIONS(3445), - [anon_sym_QMARK_QMARK] = ACTIONS(3445), - [anon_sym_from] = ACTIONS(3790), - [anon_sym_into] = ACTIONS(3790), - [anon_sym_join] = ACTIONS(3790), - [anon_sym_on] = ACTIONS(3790), - [anon_sym_equals] = ACTIONS(3790), - [anon_sym_let] = ACTIONS(3790), - [anon_sym_orderby] = ACTIONS(3790), - [anon_sym_ascending] = ACTIONS(3790), - [anon_sym_descending] = ACTIONS(3790), - [anon_sym_group] = ACTIONS(3790), - [anon_sym_by] = ACTIONS(4030), - [anon_sym_select] = ACTIONS(3790), - [anon_sym_as] = ACTIONS(3447), - [anon_sym_is] = ACTIONS(3447), - [anon_sym_DASH_GT] = ACTIONS(3445), - [anon_sym_with] = ACTIONS(3447), + [anon_sym_SEMI] = ACTIONS(3640), + [anon_sym_EQ] = ACTIONS(3638), + [anon_sym_LBRACK] = ACTIONS(3640), + [anon_sym_COLON] = ACTIONS(3640), + [anon_sym_COMMA] = ACTIONS(3640), + [anon_sym_RBRACK] = ACTIONS(3640), + [anon_sym_LPAREN] = ACTIONS(3640), + [anon_sym_RPAREN] = ACTIONS(3640), + [anon_sym_RBRACE] = ACTIONS(3640), + [anon_sym_LT] = ACTIONS(3638), + [anon_sym_GT] = ACTIONS(3638), + [anon_sym_in] = ACTIONS(3638), + [anon_sym_where] = ACTIONS(3640), + [anon_sym_QMARK] = ACTIONS(3638), + [anon_sym_BANG] = ACTIONS(3638), + [anon_sym_PLUS_PLUS] = ACTIONS(3640), + [anon_sym_DASH_DASH] = ACTIONS(3640), + [anon_sym_PLUS] = ACTIONS(3638), + [anon_sym_DASH] = ACTIONS(3638), + [anon_sym_STAR] = ACTIONS(3638), + [anon_sym_SLASH] = ACTIONS(3638), + [anon_sym_PERCENT] = ACTIONS(3638), + [anon_sym_CARET] = ACTIONS(3638), + [anon_sym_PIPE] = ACTIONS(3638), + [anon_sym_AMP] = ACTIONS(3638), + [anon_sym_LT_LT] = ACTIONS(3638), + [anon_sym_GT_GT] = ACTIONS(3638), + [anon_sym_GT_GT_GT] = ACTIONS(3638), + [anon_sym_EQ_EQ] = ACTIONS(3640), + [anon_sym_BANG_EQ] = ACTIONS(3640), + [anon_sym_GT_EQ] = ACTIONS(3640), + [anon_sym_LT_EQ] = ACTIONS(3640), + [anon_sym_DOT] = ACTIONS(3638), + [anon_sym_EQ_GT] = ACTIONS(3640), + [anon_sym_switch] = ACTIONS(3640), + [anon_sym_DOT_DOT] = ACTIONS(3640), + [anon_sym_and] = ACTIONS(3640), + [anon_sym_or] = ACTIONS(3638), + [anon_sym_PLUS_EQ] = ACTIONS(3640), + [anon_sym_DASH_EQ] = ACTIONS(3640), + [anon_sym_STAR_EQ] = ACTIONS(3640), + [anon_sym_SLASH_EQ] = ACTIONS(3640), + [anon_sym_PERCENT_EQ] = ACTIONS(3640), + [anon_sym_AMP_EQ] = ACTIONS(3640), + [anon_sym_CARET_EQ] = ACTIONS(3640), + [anon_sym_PIPE_EQ] = ACTIONS(3640), + [anon_sym_LT_LT_EQ] = ACTIONS(3640), + [anon_sym_GT_GT_EQ] = ACTIONS(3640), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3640), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3640), + [anon_sym_AMP_AMP] = ACTIONS(3640), + [anon_sym_PIPE_PIPE] = ACTIONS(3640), + [anon_sym_QMARK_QMARK] = ACTIONS(3638), + [anon_sym_from] = ACTIONS(3640), + [anon_sym_into] = ACTIONS(3640), + [anon_sym_join] = ACTIONS(3640), + [anon_sym_on] = ACTIONS(3640), + [anon_sym_equals] = ACTIONS(3640), + [anon_sym_let] = ACTIONS(3640), + [anon_sym_orderby] = ACTIONS(3640), + [anon_sym_group] = ACTIONS(3640), + [anon_sym_by] = ACTIONS(3640), + [anon_sym_select] = ACTIONS(3640), + [anon_sym_as] = ACTIONS(3640), + [anon_sym_is] = ACTIONS(3640), + [anon_sym_DASH_GT] = ACTIONS(3640), + [anon_sym_with] = ACTIONS(3640), + [aux_sym_preproc_if_token3] = ACTIONS(3640), + [aux_sym_preproc_else_token1] = ACTIONS(3640), + [aux_sym_preproc_elif_token1] = ACTIONS(3640), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -422330,76 +422000,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2432), [sym_preproc_define] = STATE(2432), [sym_preproc_undef] = STATE(2432), - [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_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), + [anon_sym_SEMI] = ACTIONS(3644), + [anon_sym_EQ] = ACTIONS(3642), + [anon_sym_LBRACK] = ACTIONS(3644), + [anon_sym_COLON] = ACTIONS(3644), + [anon_sym_COMMA] = ACTIONS(3644), + [anon_sym_RBRACK] = ACTIONS(3644), + [anon_sym_LPAREN] = ACTIONS(3644), + [anon_sym_RPAREN] = ACTIONS(3644), + [anon_sym_RBRACE] = ACTIONS(3644), + [anon_sym_LT] = ACTIONS(3642), + [anon_sym_GT] = ACTIONS(3642), + [anon_sym_in] = ACTIONS(3642), + [anon_sym_where] = ACTIONS(3644), + [anon_sym_QMARK] = ACTIONS(3642), + [anon_sym_BANG] = ACTIONS(3642), + [anon_sym_PLUS_PLUS] = ACTIONS(3644), + [anon_sym_DASH_DASH] = ACTIONS(3644), + [anon_sym_PLUS] = ACTIONS(3642), + [anon_sym_DASH] = ACTIONS(3642), + [anon_sym_STAR] = ACTIONS(3642), + [anon_sym_SLASH] = ACTIONS(3642), + [anon_sym_PERCENT] = ACTIONS(3642), + [anon_sym_CARET] = ACTIONS(3642), + [anon_sym_PIPE] = ACTIONS(3642), + [anon_sym_AMP] = ACTIONS(3642), + [anon_sym_LT_LT] = ACTIONS(3642), + [anon_sym_GT_GT] = ACTIONS(3642), + [anon_sym_GT_GT_GT] = ACTIONS(3642), + [anon_sym_EQ_EQ] = ACTIONS(3644), + [anon_sym_BANG_EQ] = ACTIONS(3644), + [anon_sym_GT_EQ] = ACTIONS(3644), + [anon_sym_LT_EQ] = ACTIONS(3644), + [anon_sym_DOT] = ACTIONS(3642), + [anon_sym_EQ_GT] = ACTIONS(3644), + [anon_sym_switch] = ACTIONS(3644), + [anon_sym_DOT_DOT] = ACTIONS(3644), + [anon_sym_and] = ACTIONS(3644), + [anon_sym_or] = ACTIONS(3642), + [anon_sym_PLUS_EQ] = ACTIONS(3644), + [anon_sym_DASH_EQ] = ACTIONS(3644), + [anon_sym_STAR_EQ] = ACTIONS(3644), + [anon_sym_SLASH_EQ] = ACTIONS(3644), + [anon_sym_PERCENT_EQ] = ACTIONS(3644), + [anon_sym_AMP_EQ] = ACTIONS(3644), + [anon_sym_CARET_EQ] = ACTIONS(3644), + [anon_sym_PIPE_EQ] = ACTIONS(3644), + [anon_sym_LT_LT_EQ] = ACTIONS(3644), + [anon_sym_GT_GT_EQ] = ACTIONS(3644), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3644), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3644), + [anon_sym_AMP_AMP] = ACTIONS(3644), + [anon_sym_PIPE_PIPE] = ACTIONS(3644), + [anon_sym_QMARK_QMARK] = ACTIONS(3642), + [anon_sym_from] = ACTIONS(3644), + [anon_sym_into] = ACTIONS(3644), + [anon_sym_join] = ACTIONS(3644), + [anon_sym_on] = ACTIONS(3644), + [anon_sym_equals] = ACTIONS(3644), + [anon_sym_let] = ACTIONS(3644), + [anon_sym_orderby] = ACTIONS(3644), + [anon_sym_group] = ACTIONS(3644), + [anon_sym_by] = ACTIONS(3644), + [anon_sym_select] = ACTIONS(3644), + [anon_sym_as] = ACTIONS(3644), + [anon_sym_is] = ACTIONS(3644), + [anon_sym_DASH_GT] = ACTIONS(3644), + [anon_sym_with] = ACTIONS(3644), + [aux_sym_preproc_if_token3] = ACTIONS(3644), + [aux_sym_preproc_else_token1] = ACTIONS(3644), + [aux_sym_preproc_elif_token1] = ACTIONS(3644), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -422421,76 +422091,76 @@ 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), - [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), + [anon_sym_SEMI] = ACTIONS(3657), + [anon_sym_EQ] = ACTIONS(3655), + [anon_sym_LBRACK] = ACTIONS(3657), + [anon_sym_COLON] = ACTIONS(3657), + [anon_sym_COMMA] = ACTIONS(3657), + [anon_sym_RBRACK] = ACTIONS(3657), + [anon_sym_LPAREN] = ACTIONS(3657), + [anon_sym_RPAREN] = ACTIONS(3657), + [anon_sym_RBRACE] = ACTIONS(3657), + [anon_sym_LT] = ACTIONS(3655), + [anon_sym_GT] = ACTIONS(3655), + [anon_sym_in] = ACTIONS(3655), + [anon_sym_where] = ACTIONS(3657), + [anon_sym_QMARK] = ACTIONS(3655), + [anon_sym_BANG] = ACTIONS(3655), + [anon_sym_PLUS_PLUS] = ACTIONS(3657), + [anon_sym_DASH_DASH] = ACTIONS(3657), + [anon_sym_PLUS] = ACTIONS(3655), + [anon_sym_DASH] = ACTIONS(3655), + [anon_sym_STAR] = ACTIONS(3655), + [anon_sym_SLASH] = ACTIONS(3655), + [anon_sym_PERCENT] = ACTIONS(3655), + [anon_sym_CARET] = ACTIONS(3655), + [anon_sym_PIPE] = ACTIONS(3655), + [anon_sym_AMP] = ACTIONS(3655), + [anon_sym_LT_LT] = ACTIONS(3655), + [anon_sym_GT_GT] = ACTIONS(3655), + [anon_sym_GT_GT_GT] = ACTIONS(3655), + [anon_sym_EQ_EQ] = ACTIONS(3657), + [anon_sym_BANG_EQ] = ACTIONS(3657), + [anon_sym_GT_EQ] = ACTIONS(3657), + [anon_sym_LT_EQ] = ACTIONS(3657), + [anon_sym_DOT] = ACTIONS(3655), + [anon_sym_EQ_GT] = ACTIONS(3657), + [anon_sym_switch] = ACTIONS(3657), + [anon_sym_DOT_DOT] = ACTIONS(3657), + [anon_sym_and] = ACTIONS(3657), + [anon_sym_or] = ACTIONS(3655), + [anon_sym_PLUS_EQ] = ACTIONS(3657), + [anon_sym_DASH_EQ] = ACTIONS(3657), + [anon_sym_STAR_EQ] = ACTIONS(3657), + [anon_sym_SLASH_EQ] = ACTIONS(3657), + [anon_sym_PERCENT_EQ] = ACTIONS(3657), + [anon_sym_AMP_EQ] = ACTIONS(3657), + [anon_sym_CARET_EQ] = ACTIONS(3657), + [anon_sym_PIPE_EQ] = ACTIONS(3657), + [anon_sym_LT_LT_EQ] = ACTIONS(3657), + [anon_sym_GT_GT_EQ] = ACTIONS(3657), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3657), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3657), + [anon_sym_AMP_AMP] = ACTIONS(3657), + [anon_sym_PIPE_PIPE] = ACTIONS(3657), + [anon_sym_QMARK_QMARK] = ACTIONS(3655), + [anon_sym_from] = ACTIONS(3657), + [anon_sym_into] = ACTIONS(3657), + [anon_sym_join] = ACTIONS(3657), + [anon_sym_on] = ACTIONS(3657), + [anon_sym_equals] = ACTIONS(3657), + [anon_sym_let] = ACTIONS(3657), + [anon_sym_orderby] = ACTIONS(3657), + [anon_sym_group] = ACTIONS(3657), + [anon_sym_by] = ACTIONS(3657), + [anon_sym_select] = ACTIONS(3657), + [anon_sym_as] = ACTIONS(3657), + [anon_sym_is] = ACTIONS(3657), + [anon_sym_DASH_GT] = ACTIONS(3657), + [anon_sym_with] = ACTIONS(3657), + [aux_sym_preproc_if_token3] = ACTIONS(3657), + [aux_sym_preproc_else_token1] = ACTIONS(3657), + [aux_sym_preproc_elif_token1] = ACTIONS(3657), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -422503,15 +422173,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2434] = { - [sym__name] = STATE(3087), - [sym_alias_qualified_name] = STATE(3029), - [sym__simple_name] = STATE(3029), - [sym_qualified_name] = STATE(3029), - [sym_generic_name] = STATE(2985), - [sym_ref_type] = STATE(3043), - [sym__scoped_base_type] = STATE(2963), - [sym_identifier] = STATE(2923), - [sym__reserved_identifier] = STATE(2945), [sym_preproc_region] = STATE(2434), [sym_preproc_endregion] = STATE(2434), [sym_preproc_line] = STATE(2434), @@ -422521,67 +422182,76 @@ 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(3887), - [anon_sym_alias] = ACTIONS(3889), - [anon_sym_global] = ACTIONS(3889), - [anon_sym_LBRACK] = ACTIONS(3445), - [anon_sym_LPAREN] = ACTIONS(3445), - [anon_sym_ref] = ACTIONS(4168), - [anon_sym_LBRACE] = ACTIONS(3445), - [anon_sym_file] = ACTIONS(3889), - [anon_sym_LT] = ACTIONS(3447), - [anon_sym_GT] = ACTIONS(3447), - [anon_sym_where] = ACTIONS(4170), - [anon_sym_QMARK] = ACTIONS(3447), - [anon_sym_notnull] = ACTIONS(3889), - [anon_sym_unmanaged] = ACTIONS(3889), - [anon_sym_BANG] = ACTIONS(3447), - [anon_sym_PLUS_PLUS] = ACTIONS(3445), - [anon_sym_DASH_DASH] = ACTIONS(3445), - [anon_sym_PLUS] = ACTIONS(3447), - [anon_sym_DASH] = ACTIONS(3447), - [anon_sym_STAR] = ACTIONS(3445), - [anon_sym_SLASH] = ACTIONS(3447), - [anon_sym_PERCENT] = ACTIONS(3445), - [anon_sym_CARET] = ACTIONS(3445), - [anon_sym_PIPE] = ACTIONS(3447), - [anon_sym_AMP] = ACTIONS(3447), - [anon_sym_LT_LT] = ACTIONS(3445), - [anon_sym_GT_GT] = ACTIONS(3447), - [anon_sym_GT_GT_GT] = ACTIONS(3445), - [anon_sym_EQ_EQ] = ACTIONS(3445), - [anon_sym_BANG_EQ] = ACTIONS(3445), - [anon_sym_GT_EQ] = ACTIONS(3445), - [anon_sym_LT_EQ] = ACTIONS(3445), - [anon_sym_DOT] = ACTIONS(3447), - [anon_sym_scoped] = ACTIONS(3889), - [anon_sym_COLON_COLON] = ACTIONS(3445), - [anon_sym_var] = ACTIONS(3889), - [anon_sym_yield] = ACTIONS(3889), - [anon_sym_switch] = ACTIONS(3447), - [anon_sym_when] = ACTIONS(3889), - [anon_sym_DOT_DOT] = ACTIONS(3445), - [anon_sym_and] = ACTIONS(3447), - [anon_sym_or] = ACTIONS(3447), - [anon_sym_AMP_AMP] = ACTIONS(3445), - [anon_sym_PIPE_PIPE] = ACTIONS(3445), - [anon_sym_QMARK_QMARK] = ACTIONS(3445), - [anon_sym_from] = ACTIONS(4170), - [anon_sym_into] = ACTIONS(3889), - [anon_sym_join] = ACTIONS(4170), - [anon_sym_on] = ACTIONS(3889), - [anon_sym_equals] = ACTIONS(3889), - [anon_sym_let] = ACTIONS(4170), - [anon_sym_orderby] = ACTIONS(4170), - [anon_sym_ascending] = ACTIONS(3889), - [anon_sym_descending] = ACTIONS(3889), - [anon_sym_group] = ACTIONS(4170), - [anon_sym_by] = ACTIONS(3889), - [anon_sym_select] = ACTIONS(4170), - [anon_sym_as] = ACTIONS(3447), - [anon_sym_is] = ACTIONS(3447), - [anon_sym_DASH_GT] = ACTIONS(3445), - [anon_sym_with] = ACTIONS(3447), + [anon_sym_SEMI] = ACTIONS(3661), + [anon_sym_EQ] = ACTIONS(3659), + [anon_sym_LBRACK] = ACTIONS(3661), + [anon_sym_COLON] = ACTIONS(3661), + [anon_sym_COMMA] = ACTIONS(3661), + [anon_sym_RBRACK] = ACTIONS(3661), + [anon_sym_LPAREN] = ACTIONS(3661), + [anon_sym_RPAREN] = ACTIONS(3661), + [anon_sym_RBRACE] = ACTIONS(3661), + [anon_sym_LT] = ACTIONS(3659), + [anon_sym_GT] = ACTIONS(3659), + [anon_sym_in] = ACTIONS(3659), + [anon_sym_where] = ACTIONS(3661), + [anon_sym_QMARK] = ACTIONS(3659), + [anon_sym_BANG] = ACTIONS(3659), + [anon_sym_PLUS_PLUS] = ACTIONS(3661), + [anon_sym_DASH_DASH] = ACTIONS(3661), + [anon_sym_PLUS] = ACTIONS(3659), + [anon_sym_DASH] = ACTIONS(3659), + [anon_sym_STAR] = ACTIONS(3659), + [anon_sym_SLASH] = ACTIONS(3659), + [anon_sym_PERCENT] = ACTIONS(3659), + [anon_sym_CARET] = ACTIONS(3659), + [anon_sym_PIPE] = ACTIONS(3659), + [anon_sym_AMP] = ACTIONS(3659), + [anon_sym_LT_LT] = ACTIONS(3659), + [anon_sym_GT_GT] = ACTIONS(3659), + [anon_sym_GT_GT_GT] = ACTIONS(3659), + [anon_sym_EQ_EQ] = ACTIONS(3661), + [anon_sym_BANG_EQ] = ACTIONS(3661), + [anon_sym_GT_EQ] = ACTIONS(3661), + [anon_sym_LT_EQ] = ACTIONS(3661), + [anon_sym_DOT] = ACTIONS(3659), + [anon_sym_EQ_GT] = ACTIONS(3661), + [anon_sym_switch] = ACTIONS(3661), + [anon_sym_DOT_DOT] = ACTIONS(3661), + [anon_sym_and] = ACTIONS(3661), + [anon_sym_or] = ACTIONS(3659), + [anon_sym_PLUS_EQ] = ACTIONS(3661), + [anon_sym_DASH_EQ] = ACTIONS(3661), + [anon_sym_STAR_EQ] = ACTIONS(3661), + [anon_sym_SLASH_EQ] = ACTIONS(3661), + [anon_sym_PERCENT_EQ] = ACTIONS(3661), + [anon_sym_AMP_EQ] = ACTIONS(3661), + [anon_sym_CARET_EQ] = ACTIONS(3661), + [anon_sym_PIPE_EQ] = ACTIONS(3661), + [anon_sym_LT_LT_EQ] = ACTIONS(3661), + [anon_sym_GT_GT_EQ] = ACTIONS(3661), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3661), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3661), + [anon_sym_AMP_AMP] = ACTIONS(3661), + [anon_sym_PIPE_PIPE] = ACTIONS(3661), + [anon_sym_QMARK_QMARK] = ACTIONS(3659), + [anon_sym_from] = ACTIONS(3661), + [anon_sym_into] = ACTIONS(3661), + [anon_sym_join] = ACTIONS(3661), + [anon_sym_on] = ACTIONS(3661), + [anon_sym_equals] = ACTIONS(3661), + [anon_sym_let] = ACTIONS(3661), + [anon_sym_orderby] = ACTIONS(3661), + [anon_sym_group] = ACTIONS(3661), + [anon_sym_by] = ACTIONS(3661), + [anon_sym_select] = ACTIONS(3661), + [anon_sym_as] = ACTIONS(3661), + [anon_sym_is] = ACTIONS(3661), + [anon_sym_DASH_GT] = ACTIONS(3661), + [anon_sym_with] = ACTIONS(3661), + [aux_sym_preproc_if_token3] = ACTIONS(3661), + [aux_sym_preproc_else_token1] = ACTIONS(3661), + [aux_sym_preproc_elif_token1] = ACTIONS(3661), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -422603,76 +422273,76 @@ 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), - [anon_sym_SEMI] = ACTIONS(3656), - [anon_sym_EQ] = ACTIONS(3654), - [anon_sym_LBRACK] = ACTIONS(3656), - [anon_sym_COLON] = ACTIONS(3656), - [anon_sym_COMMA] = ACTIONS(3656), - [anon_sym_RBRACK] = ACTIONS(3656), - [anon_sym_LPAREN] = ACTIONS(3656), - [anon_sym_RPAREN] = ACTIONS(3656), - [anon_sym_RBRACE] = ACTIONS(3656), - [anon_sym_LT] = ACTIONS(3654), - [anon_sym_GT] = ACTIONS(3654), - [anon_sym_in] = ACTIONS(3654), - [anon_sym_where] = ACTIONS(3656), - [anon_sym_QMARK] = ACTIONS(3654), - [anon_sym_BANG] = ACTIONS(3654), - [anon_sym_PLUS_PLUS] = ACTIONS(3656), - [anon_sym_DASH_DASH] = ACTIONS(3656), - [anon_sym_PLUS] = ACTIONS(3654), - [anon_sym_DASH] = ACTIONS(3654), - [anon_sym_STAR] = ACTIONS(3654), - [anon_sym_SLASH] = ACTIONS(3654), - [anon_sym_PERCENT] = ACTIONS(3654), - [anon_sym_CARET] = ACTIONS(3654), - [anon_sym_PIPE] = ACTIONS(3654), - [anon_sym_AMP] = ACTIONS(3654), - [anon_sym_LT_LT] = ACTIONS(3654), - [anon_sym_GT_GT] = ACTIONS(3654), - [anon_sym_GT_GT_GT] = ACTIONS(3654), - [anon_sym_EQ_EQ] = ACTIONS(3656), - [anon_sym_BANG_EQ] = ACTIONS(3656), - [anon_sym_GT_EQ] = ACTIONS(3656), - [anon_sym_LT_EQ] = ACTIONS(3656), - [anon_sym_DOT] = ACTIONS(3654), - [anon_sym_EQ_GT] = ACTIONS(3656), - [anon_sym_switch] = ACTIONS(3656), - [anon_sym_DOT_DOT] = ACTIONS(3656), - [anon_sym_and] = ACTIONS(3656), - [anon_sym_or] = ACTIONS(3654), - [anon_sym_PLUS_EQ] = ACTIONS(3656), - [anon_sym_DASH_EQ] = ACTIONS(3656), - [anon_sym_STAR_EQ] = ACTIONS(3656), - [anon_sym_SLASH_EQ] = ACTIONS(3656), - [anon_sym_PERCENT_EQ] = ACTIONS(3656), - [anon_sym_AMP_EQ] = ACTIONS(3656), - [anon_sym_CARET_EQ] = ACTIONS(3656), - [anon_sym_PIPE_EQ] = ACTIONS(3656), - [anon_sym_LT_LT_EQ] = ACTIONS(3656), - [anon_sym_GT_GT_EQ] = ACTIONS(3656), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3656), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3656), - [anon_sym_AMP_AMP] = ACTIONS(3656), - [anon_sym_PIPE_PIPE] = ACTIONS(3656), - [anon_sym_QMARK_QMARK] = ACTIONS(3654), - [anon_sym_from] = ACTIONS(3656), - [anon_sym_into] = ACTIONS(3656), - [anon_sym_join] = ACTIONS(3656), - [anon_sym_on] = ACTIONS(3656), - [anon_sym_equals] = ACTIONS(3656), - [anon_sym_let] = ACTIONS(3656), - [anon_sym_orderby] = ACTIONS(3656), - [anon_sym_group] = ACTIONS(3656), - [anon_sym_by] = ACTIONS(3656), - [anon_sym_select] = ACTIONS(3656), - [anon_sym_as] = ACTIONS(3656), - [anon_sym_is] = ACTIONS(3656), - [anon_sym_DASH_GT] = ACTIONS(3656), - [anon_sym_with] = ACTIONS(3656), - [aux_sym_preproc_if_token3] = ACTIONS(3656), - [aux_sym_preproc_else_token1] = ACTIONS(3656), - [aux_sym_preproc_elif_token1] = ACTIONS(3656), + [anon_sym_SEMI] = ACTIONS(3665), + [anon_sym_EQ] = ACTIONS(3663), + [anon_sym_LBRACK] = ACTIONS(3665), + [anon_sym_COLON] = ACTIONS(3665), + [anon_sym_COMMA] = ACTIONS(3665), + [anon_sym_RBRACK] = ACTIONS(3665), + [anon_sym_LPAREN] = ACTIONS(3665), + [anon_sym_RPAREN] = ACTIONS(3665), + [anon_sym_RBRACE] = ACTIONS(3665), + [anon_sym_LT] = ACTIONS(3663), + [anon_sym_GT] = ACTIONS(3663), + [anon_sym_in] = ACTIONS(3663), + [anon_sym_where] = ACTIONS(3665), + [anon_sym_QMARK] = ACTIONS(3663), + [anon_sym_BANG] = ACTIONS(3663), + [anon_sym_PLUS_PLUS] = ACTIONS(3665), + [anon_sym_DASH_DASH] = ACTIONS(3665), + [anon_sym_PLUS] = ACTIONS(3663), + [anon_sym_DASH] = ACTIONS(3663), + [anon_sym_STAR] = ACTIONS(3663), + [anon_sym_SLASH] = ACTIONS(3663), + [anon_sym_PERCENT] = ACTIONS(3663), + [anon_sym_CARET] = ACTIONS(3663), + [anon_sym_PIPE] = ACTIONS(3663), + [anon_sym_AMP] = ACTIONS(3663), + [anon_sym_LT_LT] = ACTIONS(3663), + [anon_sym_GT_GT] = ACTIONS(3663), + [anon_sym_GT_GT_GT] = ACTIONS(3663), + [anon_sym_EQ_EQ] = ACTIONS(3665), + [anon_sym_BANG_EQ] = ACTIONS(3665), + [anon_sym_GT_EQ] = ACTIONS(3665), + [anon_sym_LT_EQ] = ACTIONS(3665), + [anon_sym_DOT] = ACTIONS(3663), + [anon_sym_EQ_GT] = ACTIONS(3665), + [anon_sym_switch] = ACTIONS(3665), + [anon_sym_DOT_DOT] = ACTIONS(3665), + [anon_sym_and] = ACTIONS(3665), + [anon_sym_or] = ACTIONS(3663), + [anon_sym_PLUS_EQ] = ACTIONS(3665), + [anon_sym_DASH_EQ] = ACTIONS(3665), + [anon_sym_STAR_EQ] = ACTIONS(3665), + [anon_sym_SLASH_EQ] = ACTIONS(3665), + [anon_sym_PERCENT_EQ] = ACTIONS(3665), + [anon_sym_AMP_EQ] = ACTIONS(3665), + [anon_sym_CARET_EQ] = ACTIONS(3665), + [anon_sym_PIPE_EQ] = ACTIONS(3665), + [anon_sym_LT_LT_EQ] = ACTIONS(3665), + [anon_sym_GT_GT_EQ] = ACTIONS(3665), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3665), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3665), + [anon_sym_AMP_AMP] = ACTIONS(3665), + [anon_sym_PIPE_PIPE] = ACTIONS(3665), + [anon_sym_QMARK_QMARK] = ACTIONS(3663), + [anon_sym_from] = ACTIONS(3665), + [anon_sym_into] = ACTIONS(3665), + [anon_sym_join] = ACTIONS(3665), + [anon_sym_on] = ACTIONS(3665), + [anon_sym_equals] = ACTIONS(3665), + [anon_sym_let] = ACTIONS(3665), + [anon_sym_orderby] = ACTIONS(3665), + [anon_sym_group] = ACTIONS(3665), + [anon_sym_by] = ACTIONS(3665), + [anon_sym_select] = ACTIONS(3665), + [anon_sym_as] = ACTIONS(3665), + [anon_sym_is] = ACTIONS(3665), + [anon_sym_DASH_GT] = ACTIONS(3665), + [anon_sym_with] = ACTIONS(3665), + [aux_sym_preproc_if_token3] = ACTIONS(3665), + [aux_sym_preproc_else_token1] = ACTIONS(3665), + [aux_sym_preproc_elif_token1] = ACTIONS(3665), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -422685,15 +422355,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2436] = { - [sym__name] = STATE(3497), - [sym_alias_qualified_name] = STATE(3251), - [sym__simple_name] = STATE(3251), - [sym_qualified_name] = STATE(3251), - [sym_generic_name] = STATE(3246), - [sym_ref_type] = STATE(3261), - [sym__scoped_base_type] = STATE(3262), - [sym_identifier] = STATE(3167), - [sym__reserved_identifier] = STATE(3225), [sym_preproc_region] = STATE(2436), [sym_preproc_endregion] = STATE(2436), [sym_preproc_line] = STATE(2436), @@ -422703,67 +422364,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), - [sym__identifier_token] = ACTIONS(3788), - [anon_sym_alias] = ACTIONS(3790), - [anon_sym_global] = ACTIONS(3790), - [anon_sym_LBRACK] = ACTIONS(3445), - [anon_sym_LPAREN] = ACTIONS(3445), - [anon_sym_ref] = ACTIONS(4173), - [anon_sym_LBRACE] = ACTIONS(3445), - [anon_sym_file] = ACTIONS(3790), - [anon_sym_LT] = ACTIONS(3447), - [anon_sym_GT] = ACTIONS(3447), - [anon_sym_where] = ACTIONS(3790), - [anon_sym_QMARK] = ACTIONS(3447), - [anon_sym_notnull] = ACTIONS(3790), - [anon_sym_unmanaged] = ACTIONS(3790), - [anon_sym_BANG] = ACTIONS(3447), - [anon_sym_PLUS_PLUS] = ACTIONS(3445), - [anon_sym_DASH_DASH] = ACTIONS(3445), - [anon_sym_PLUS] = ACTIONS(3447), - [anon_sym_DASH] = ACTIONS(3447), - [anon_sym_STAR] = ACTIONS(3445), - [anon_sym_SLASH] = ACTIONS(3447), - [anon_sym_PERCENT] = ACTIONS(3445), - [anon_sym_CARET] = ACTIONS(3445), - [anon_sym_PIPE] = ACTIONS(3447), - [anon_sym_AMP] = ACTIONS(3447), - [anon_sym_LT_LT] = ACTIONS(3445), - [anon_sym_GT_GT] = ACTIONS(3447), - [anon_sym_GT_GT_GT] = ACTIONS(3445), - [anon_sym_EQ_EQ] = ACTIONS(3445), - [anon_sym_BANG_EQ] = ACTIONS(3445), - [anon_sym_GT_EQ] = ACTIONS(3445), - [anon_sym_LT_EQ] = ACTIONS(3445), - [anon_sym_DOT] = ACTIONS(3447), - [anon_sym_scoped] = ACTIONS(3790), - [anon_sym_COLON_COLON] = ACTIONS(3445), - [anon_sym_var] = ACTIONS(3790), - [anon_sym_yield] = ACTIONS(3790), - [anon_sym_switch] = ACTIONS(3447), - [anon_sym_when] = ACTIONS(3790), - [anon_sym_DOT_DOT] = ACTIONS(3445), - [anon_sym_and] = ACTIONS(3447), - [anon_sym_or] = ACTIONS(3447), - [anon_sym_AMP_AMP] = ACTIONS(3445), - [anon_sym_PIPE_PIPE] = ACTIONS(3445), - [anon_sym_QMARK_QMARK] = ACTIONS(3445), - [anon_sym_from] = ACTIONS(3790), - [anon_sym_into] = ACTIONS(3790), - [anon_sym_join] = ACTIONS(3790), - [anon_sym_on] = ACTIONS(3790), - [anon_sym_equals] = ACTIONS(4030), - [anon_sym_let] = ACTIONS(3790), - [anon_sym_orderby] = ACTIONS(3790), - [anon_sym_ascending] = ACTIONS(3790), - [anon_sym_descending] = ACTIONS(3790), - [anon_sym_group] = ACTIONS(3790), - [anon_sym_by] = ACTIONS(3790), - [anon_sym_select] = ACTIONS(3790), - [anon_sym_as] = ACTIONS(3447), - [anon_sym_is] = ACTIONS(3447), - [anon_sym_DASH_GT] = ACTIONS(3445), - [anon_sym_with] = ACTIONS(3447), + [sym__identifier_token] = ACTIONS(4112), + [anon_sym_alias] = ACTIONS(4112), + [anon_sym_SEMI] = ACTIONS(4114), + [anon_sym_global] = ACTIONS(4112), + [anon_sym_LBRACK] = ACTIONS(4114), + [anon_sym_COLON] = ACTIONS(4114), + [anon_sym_COMMA] = ACTIONS(4114), + [anon_sym_RBRACK] = ACTIONS(4114), + [anon_sym_LPAREN] = ACTIONS(4114), + [anon_sym_RPAREN] = ACTIONS(4114), + [anon_sym_RBRACE] = ACTIONS(4114), + [anon_sym_file] = ACTIONS(4112), + [anon_sym_LT] = ACTIONS(4112), + [anon_sym_GT] = ACTIONS(4112), + [anon_sym_in] = ACTIONS(4112), + [anon_sym_where] = ACTIONS(4112), + [anon_sym_QMARK] = ACTIONS(4112), + [anon_sym_notnull] = ACTIONS(4112), + [anon_sym_unmanaged] = ACTIONS(4112), + [anon_sym_BANG] = ACTIONS(4112), + [anon_sym_PLUS_PLUS] = ACTIONS(4114), + [anon_sym_DASH_DASH] = ACTIONS(4114), + [anon_sym_PLUS] = ACTIONS(4112), + [anon_sym_DASH] = ACTIONS(4112), + [anon_sym_STAR] = ACTIONS(4114), + [anon_sym_SLASH] = ACTIONS(4112), + [anon_sym_PERCENT] = ACTIONS(4114), + [anon_sym_CARET] = ACTIONS(4114), + [anon_sym_PIPE] = ACTIONS(4112), + [anon_sym_AMP] = ACTIONS(4112), + [anon_sym_LT_LT] = ACTIONS(4114), + [anon_sym_GT_GT] = ACTIONS(4112), + [anon_sym_GT_GT_GT] = ACTIONS(4114), + [anon_sym_EQ_EQ] = ACTIONS(4114), + [anon_sym_BANG_EQ] = ACTIONS(4114), + [anon_sym_GT_EQ] = ACTIONS(4114), + [anon_sym_LT_EQ] = ACTIONS(4114), + [anon_sym_DOT] = ACTIONS(4112), + [anon_sym_scoped] = ACTIONS(4112), + [anon_sym_EQ_GT] = ACTIONS(4114), + [anon_sym_var] = ACTIONS(4112), + [anon_sym_yield] = ACTIONS(4112), + [anon_sym_switch] = ACTIONS(4112), + [anon_sym_when] = ACTIONS(4112), + [sym_discard] = ACTIONS(4112), + [anon_sym_DOT_DOT] = ACTIONS(4114), + [anon_sym_and] = ACTIONS(4112), + [anon_sym_or] = ACTIONS(4112), + [anon_sym_AMP_AMP] = ACTIONS(4114), + [anon_sym_PIPE_PIPE] = ACTIONS(4114), + [anon_sym_QMARK_QMARK] = ACTIONS(4114), + [anon_sym_from] = ACTIONS(4112), + [anon_sym_into] = ACTIONS(4112), + [anon_sym_join] = ACTIONS(4112), + [anon_sym_on] = ACTIONS(4112), + [anon_sym_equals] = ACTIONS(4112), + [anon_sym_let] = ACTIONS(4112), + [anon_sym_orderby] = ACTIONS(4112), + [anon_sym_ascending] = ACTIONS(4112), + [anon_sym_descending] = ACTIONS(4112), + [anon_sym_group] = ACTIONS(4112), + [anon_sym_by] = ACTIONS(4112), + [anon_sym_select] = ACTIONS(4112), + [anon_sym_as] = ACTIONS(4112), + [anon_sym_is] = ACTIONS(4112), + [anon_sym_DASH_GT] = ACTIONS(4114), + [anon_sym_with] = ACTIONS(4112), + [aux_sym_preproc_if_token3] = ACTIONS(4114), + [aux_sym_preproc_else_token1] = ACTIONS(4114), + [aux_sym_preproc_elif_token1] = ACTIONS(4114), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -422785,76 +422455,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(3662), - [anon_sym_EQ] = ACTIONS(3660), - [anon_sym_LBRACK] = ACTIONS(3662), - [anon_sym_COLON] = ACTIONS(3662), - [anon_sym_COMMA] = ACTIONS(3662), - [anon_sym_RBRACK] = ACTIONS(3662), - [anon_sym_LPAREN] = ACTIONS(3662), - [anon_sym_RPAREN] = ACTIONS(3662), - [anon_sym_RBRACE] = ACTIONS(3662), - [anon_sym_LT] = ACTIONS(3660), - [anon_sym_GT] = ACTIONS(3660), - [anon_sym_in] = ACTIONS(3660), - [anon_sym_where] = ACTIONS(3662), - [anon_sym_QMARK] = ACTIONS(3660), - [anon_sym_BANG] = ACTIONS(3660), - [anon_sym_PLUS_PLUS] = ACTIONS(3662), - [anon_sym_DASH_DASH] = ACTIONS(3662), - [anon_sym_PLUS] = ACTIONS(3660), - [anon_sym_DASH] = ACTIONS(3660), - [anon_sym_STAR] = ACTIONS(3660), - [anon_sym_SLASH] = ACTIONS(3660), - [anon_sym_PERCENT] = ACTIONS(3660), - [anon_sym_CARET] = ACTIONS(3660), - [anon_sym_PIPE] = ACTIONS(3660), - [anon_sym_AMP] = ACTIONS(3660), - [anon_sym_LT_LT] = ACTIONS(3660), - [anon_sym_GT_GT] = ACTIONS(3660), - [anon_sym_GT_GT_GT] = ACTIONS(3660), - [anon_sym_EQ_EQ] = ACTIONS(3662), - [anon_sym_BANG_EQ] = ACTIONS(3662), - [anon_sym_GT_EQ] = ACTIONS(3662), - [anon_sym_LT_EQ] = ACTIONS(3662), - [anon_sym_DOT] = ACTIONS(3660), - [anon_sym_EQ_GT] = ACTIONS(3662), - [anon_sym_switch] = ACTIONS(3662), - [anon_sym_DOT_DOT] = ACTIONS(3662), - [anon_sym_and] = ACTIONS(3662), - [anon_sym_or] = ACTIONS(3660), - [anon_sym_PLUS_EQ] = ACTIONS(3662), - [anon_sym_DASH_EQ] = ACTIONS(3662), - [anon_sym_STAR_EQ] = ACTIONS(3662), - [anon_sym_SLASH_EQ] = ACTIONS(3662), - [anon_sym_PERCENT_EQ] = ACTIONS(3662), - [anon_sym_AMP_EQ] = ACTIONS(3662), - [anon_sym_CARET_EQ] = ACTIONS(3662), - [anon_sym_PIPE_EQ] = ACTIONS(3662), - [anon_sym_LT_LT_EQ] = ACTIONS(3662), - [anon_sym_GT_GT_EQ] = ACTIONS(3662), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3662), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3662), - [anon_sym_AMP_AMP] = ACTIONS(3662), - [anon_sym_PIPE_PIPE] = ACTIONS(3662), - [anon_sym_QMARK_QMARK] = ACTIONS(3660), - [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_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(3662), - [anon_sym_with] = ACTIONS(3662), - [aux_sym_preproc_if_token3] = ACTIONS(3662), - [aux_sym_preproc_else_token1] = ACTIONS(3662), - [aux_sym_preproc_elif_token1] = ACTIONS(3662), + [anon_sym_SEMI] = ACTIONS(3429), + [anon_sym_EQ] = ACTIONS(3431), + [anon_sym_LBRACK] = ACTIONS(3429), + [anon_sym_COLON] = ACTIONS(3429), + [anon_sym_COMMA] = ACTIONS(3429), + [anon_sym_RBRACK] = ACTIONS(3429), + [anon_sym_LPAREN] = ACTIONS(3429), + [anon_sym_RPAREN] = ACTIONS(3429), + [anon_sym_RBRACE] = ACTIONS(3429), + [anon_sym_LT] = ACTIONS(3431), + [anon_sym_GT] = ACTIONS(3431), + [anon_sym_in] = ACTIONS(3431), + [anon_sym_where] = ACTIONS(3429), + [anon_sym_QMARK] = ACTIONS(3431), + [anon_sym_BANG] = ACTIONS(3431), + [anon_sym_PLUS_PLUS] = ACTIONS(3429), + [anon_sym_DASH_DASH] = ACTIONS(3429), + [anon_sym_PLUS] = ACTIONS(3431), + [anon_sym_DASH] = ACTIONS(3431), + [anon_sym_STAR] = ACTIONS(3431), + [anon_sym_SLASH] = ACTIONS(3431), + [anon_sym_PERCENT] = ACTIONS(3431), + [anon_sym_CARET] = ACTIONS(3431), + [anon_sym_PIPE] = ACTIONS(3431), + [anon_sym_AMP] = ACTIONS(3431), + [anon_sym_LT_LT] = ACTIONS(3431), + [anon_sym_GT_GT] = ACTIONS(3431), + [anon_sym_GT_GT_GT] = ACTIONS(3431), + [anon_sym_EQ_EQ] = ACTIONS(3429), + [anon_sym_BANG_EQ] = ACTIONS(3429), + [anon_sym_GT_EQ] = ACTIONS(3429), + [anon_sym_LT_EQ] = ACTIONS(3429), + [anon_sym_DOT] = ACTIONS(3431), + [anon_sym_EQ_GT] = ACTIONS(3429), + [anon_sym_switch] = ACTIONS(3429), + [anon_sym_DOT_DOT] = ACTIONS(3429), + [anon_sym_and] = ACTIONS(3429), + [anon_sym_or] = ACTIONS(3431), + [anon_sym_PLUS_EQ] = ACTIONS(3429), + [anon_sym_DASH_EQ] = ACTIONS(3429), + [anon_sym_STAR_EQ] = ACTIONS(3429), + [anon_sym_SLASH_EQ] = ACTIONS(3429), + [anon_sym_PERCENT_EQ] = ACTIONS(3429), + [anon_sym_AMP_EQ] = ACTIONS(3429), + [anon_sym_CARET_EQ] = ACTIONS(3429), + [anon_sym_PIPE_EQ] = ACTIONS(3429), + [anon_sym_LT_LT_EQ] = ACTIONS(3429), + [anon_sym_GT_GT_EQ] = ACTIONS(3429), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3429), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3429), + [anon_sym_AMP_AMP] = ACTIONS(3429), + [anon_sym_PIPE_PIPE] = ACTIONS(3429), + [anon_sym_QMARK_QMARK] = ACTIONS(3431), + [anon_sym_from] = ACTIONS(3429), + [anon_sym_into] = ACTIONS(3429), + [anon_sym_join] = ACTIONS(3429), + [anon_sym_on] = ACTIONS(3429), + [anon_sym_equals] = ACTIONS(3429), + [anon_sym_let] = ACTIONS(3429), + [anon_sym_orderby] = ACTIONS(3429), + [anon_sym_group] = ACTIONS(3429), + [anon_sym_by] = ACTIONS(3429), + [anon_sym_select] = ACTIONS(3429), + [anon_sym_as] = ACTIONS(3429), + [anon_sym_is] = ACTIONS(3429), + [anon_sym_DASH_GT] = ACTIONS(3429), + [anon_sym_with] = 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), @@ -422867,15 +422537,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2438] = { - [sym__name] = STATE(3497), - [sym_alias_qualified_name] = STATE(3251), - [sym__simple_name] = STATE(3251), - [sym_qualified_name] = STATE(3251), - [sym_generic_name] = STATE(3246), - [sym_ref_type] = STATE(3261), - [sym__scoped_base_type] = STATE(3262), - [sym_identifier] = STATE(3167), - [sym__reserved_identifier] = STATE(3225), + [sym__name] = STATE(4077), + [sym_alias_qualified_name] = STATE(2907), + [sym__simple_name] = STATE(2907), + [sym_qualified_name] = STATE(2907), + [sym_generic_name] = STATE(2950), + [sym_ref_type] = STATE(2923), + [sym__scoped_base_type] = STATE(2940), + [sym_identifier] = STATE(3741), + [sym__reserved_identifier] = STATE(2900), [sym_preproc_region] = STATE(2438), [sym_preproc_endregion] = STATE(2438), [sym_preproc_line] = STATE(2438), @@ -422885,69 +422555,69 @@ 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(3788), - [anon_sym_alias] = ACTIONS(3790), - [anon_sym_global] = ACTIONS(3790), - [anon_sym_LBRACK] = ACTIONS(3445), - [anon_sym_LPAREN] = ACTIONS(3445), - [anon_sym_ref] = ACTIONS(4175), - [anon_sym_LBRACE] = ACTIONS(3445), - [anon_sym_file] = ACTIONS(3790), - [anon_sym_LT] = ACTIONS(3447), - [anon_sym_GT] = ACTIONS(3447), - [anon_sym_where] = ACTIONS(3790), - [anon_sym_QMARK] = ACTIONS(3447), - [anon_sym_notnull] = ACTIONS(3790), - [anon_sym_unmanaged] = ACTIONS(3790), - [anon_sym_BANG] = ACTIONS(3447), - [anon_sym_PLUS_PLUS] = ACTIONS(3445), - [anon_sym_DASH_DASH] = ACTIONS(3445), - [anon_sym_PLUS] = ACTIONS(3447), - [anon_sym_DASH] = ACTIONS(3447), - [anon_sym_STAR] = ACTIONS(3445), - [anon_sym_SLASH] = ACTIONS(3447), - [anon_sym_PERCENT] = ACTIONS(3445), - [anon_sym_CARET] = ACTIONS(3445), - [anon_sym_PIPE] = ACTIONS(3447), - [anon_sym_AMP] = ACTIONS(3447), - [anon_sym_LT_LT] = ACTIONS(3445), - [anon_sym_GT_GT] = ACTIONS(3447), - [anon_sym_GT_GT_GT] = ACTIONS(3445), - [anon_sym_EQ_EQ] = ACTIONS(3445), - [anon_sym_BANG_EQ] = ACTIONS(3445), - [anon_sym_GT_EQ] = ACTIONS(3445), - [anon_sym_LT_EQ] = ACTIONS(3445), - [anon_sym_DOT] = ACTIONS(3447), - [anon_sym_scoped] = ACTIONS(3790), - [anon_sym_COLON_COLON] = ACTIONS(3445), - [anon_sym_var] = ACTIONS(3790), - [anon_sym_yield] = ACTIONS(3790), - [anon_sym_switch] = ACTIONS(3447), - [anon_sym_when] = ACTIONS(3790), - [anon_sym_DOT_DOT] = ACTIONS(3445), - [anon_sym_and] = ACTIONS(3447), - [anon_sym_or] = ACTIONS(3447), - [anon_sym_AMP_AMP] = ACTIONS(3445), - [anon_sym_PIPE_PIPE] = ACTIONS(3445), - [anon_sym_QMARK_QMARK] = ACTIONS(3445), - [anon_sym_from] = ACTIONS(3790), - [anon_sym_into] = ACTIONS(3790), - [anon_sym_join] = ACTIONS(3790), - [anon_sym_on] = ACTIONS(4030), - [anon_sym_equals] = ACTIONS(3790), - [anon_sym_let] = ACTIONS(3790), - [anon_sym_orderby] = ACTIONS(3790), - [anon_sym_ascending] = ACTIONS(3790), - [anon_sym_descending] = ACTIONS(3790), - [anon_sym_group] = ACTIONS(3790), - [anon_sym_by] = ACTIONS(3790), - [anon_sym_select] = ACTIONS(3790), - [anon_sym_as] = ACTIONS(3447), - [anon_sym_is] = ACTIONS(3447), - [anon_sym_DASH_GT] = ACTIONS(3445), - [anon_sym_with] = ACTIONS(3447), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [sym__identifier_token] = ACTIONS(3814), + [anon_sym_alias] = ACTIONS(3816), + [anon_sym_global] = ACTIONS(3816), + [anon_sym_LBRACK] = ACTIONS(3429), + [anon_sym_LPAREN] = ACTIONS(3429), + [anon_sym_ref] = ACTIONS(4165), + [anon_sym_LBRACE] = ACTIONS(3429), + [anon_sym_file] = ACTIONS(3816), + [anon_sym_LT] = ACTIONS(3431), + [anon_sym_GT] = ACTIONS(3431), + [anon_sym_where] = ACTIONS(3820), + [anon_sym_QMARK] = ACTIONS(3431), + [anon_sym_notnull] = ACTIONS(3816), + [anon_sym_unmanaged] = ACTIONS(3816), + [anon_sym_BANG] = ACTIONS(3431), + [anon_sym_PLUS_PLUS] = ACTIONS(3429), + [anon_sym_DASH_DASH] = ACTIONS(3429), + [anon_sym_PLUS] = ACTIONS(3431), + [anon_sym_DASH] = ACTIONS(3431), + [anon_sym_STAR] = ACTIONS(3429), + [anon_sym_SLASH] = ACTIONS(3431), + [anon_sym_PERCENT] = ACTIONS(3429), + [anon_sym_CARET] = ACTIONS(3429), + [anon_sym_PIPE] = ACTIONS(3431), + [anon_sym_AMP] = ACTIONS(3431), + [anon_sym_LT_LT] = ACTIONS(3429), + [anon_sym_GT_GT] = ACTIONS(3431), + [anon_sym_GT_GT_GT] = ACTIONS(3429), + [anon_sym_EQ_EQ] = ACTIONS(3429), + [anon_sym_BANG_EQ] = ACTIONS(3429), + [anon_sym_GT_EQ] = ACTIONS(3429), + [anon_sym_LT_EQ] = ACTIONS(3429), + [anon_sym_DOT] = ACTIONS(3431), + [anon_sym_scoped] = ACTIONS(3816), + [anon_sym_COLON_COLON] = ACTIONS(3429), + [anon_sym_var] = ACTIONS(3816), + [anon_sym_yield] = ACTIONS(3816), + [anon_sym_switch] = ACTIONS(3431), + [anon_sym_when] = ACTIONS(3816), + [anon_sym_DOT_DOT] = ACTIONS(3429), + [anon_sym_and] = ACTIONS(3431), + [anon_sym_or] = ACTIONS(3431), + [anon_sym_AMP_AMP] = ACTIONS(3429), + [anon_sym_PIPE_PIPE] = ACTIONS(3429), + [anon_sym_QMARK_QMARK] = ACTIONS(3429), + [anon_sym_from] = ACTIONS(3820), + [anon_sym_into] = ACTIONS(3820), + [anon_sym_join] = ACTIONS(3820), + [anon_sym_on] = ACTIONS(3816), + [anon_sym_equals] = ACTIONS(3816), + [anon_sym_let] = ACTIONS(3820), + [anon_sym_orderby] = ACTIONS(3820), + [anon_sym_ascending] = ACTIONS(3816), + [anon_sym_descending] = ACTIONS(3816), + [anon_sym_group] = ACTIONS(3820), + [anon_sym_by] = ACTIONS(3816), + [anon_sym_select] = ACTIONS(3820), + [anon_sym_as] = ACTIONS(3431), + [anon_sym_is] = ACTIONS(3431), + [anon_sym_DASH_GT] = ACTIONS(3429), + [anon_sym_with] = ACTIONS(3431), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), [aux_sym_preproc_pragma_token1] = ACTIONS(9), [aux_sym_preproc_nullable_token1] = ACTIONS(11), @@ -422958,15 +422628,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2439] = { - [sym__name] = STATE(3191), - [sym_alias_qualified_name] = STATE(3200), - [sym__simple_name] = STATE(3200), - [sym_qualified_name] = STATE(3200), - [sym_generic_name] = STATE(3156), - [sym_ref_type] = STATE(3178), - [sym__scoped_base_type] = STATE(3202), - [sym_identifier] = STATE(3129), - [sym__reserved_identifier] = STATE(3149), [sym_preproc_region] = STATE(2439), [sym_preproc_endregion] = STATE(2439), [sym_preproc_line] = STATE(2439), @@ -422976,67 +422637,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), - [sym__identifier_token] = ACTIONS(3773), - [anon_sym_alias] = ACTIONS(3775), - [anon_sym_global] = ACTIONS(3775), - [anon_sym_LBRACK] = ACTIONS(3445), - [anon_sym_LPAREN] = ACTIONS(3445), - [anon_sym_ref] = ACTIONS(4177), - [anon_sym_LBRACE] = ACTIONS(3445), - [anon_sym_file] = ACTIONS(3775), - [anon_sym_LT] = ACTIONS(3447), - [anon_sym_GT] = ACTIONS(3447), - [anon_sym_where] = ACTIONS(3775), - [anon_sym_QMARK] = ACTIONS(3447), - [anon_sym_notnull] = ACTIONS(3775), - [anon_sym_unmanaged] = ACTIONS(3775), - [anon_sym_BANG] = ACTIONS(3447), - [anon_sym_PLUS_PLUS] = ACTIONS(3445), - [anon_sym_DASH_DASH] = ACTIONS(3445), - [anon_sym_PLUS] = ACTIONS(3447), - [anon_sym_DASH] = ACTIONS(3447), - [anon_sym_STAR] = ACTIONS(3445), - [anon_sym_SLASH] = ACTIONS(3447), - [anon_sym_PERCENT] = ACTIONS(3445), - [anon_sym_CARET] = ACTIONS(3445), - [anon_sym_PIPE] = ACTIONS(3447), - [anon_sym_AMP] = ACTIONS(3447), - [anon_sym_LT_LT] = ACTIONS(3445), - [anon_sym_GT_GT] = ACTIONS(3447), - [anon_sym_GT_GT_GT] = ACTIONS(3445), - [anon_sym_EQ_EQ] = ACTIONS(3445), - [anon_sym_BANG_EQ] = ACTIONS(3445), - [anon_sym_GT_EQ] = ACTIONS(3445), - [anon_sym_LT_EQ] = ACTIONS(3445), - [anon_sym_DOT] = ACTIONS(3447), - [anon_sym_scoped] = ACTIONS(3775), - [anon_sym_COLON_COLON] = ACTIONS(3445), - [anon_sym_var] = ACTIONS(3775), - [anon_sym_yield] = ACTIONS(3775), - [anon_sym_switch] = ACTIONS(3447), - [anon_sym_when] = ACTIONS(3775), - [anon_sym_DOT_DOT] = ACTIONS(3445), - [anon_sym_and] = ACTIONS(3447), - [anon_sym_or] = ACTIONS(3447), - [anon_sym_AMP_AMP] = ACTIONS(3445), - [anon_sym_PIPE_PIPE] = ACTIONS(3445), - [anon_sym_QMARK_QMARK] = ACTIONS(3445), - [anon_sym_from] = ACTIONS(3775), - [anon_sym_into] = ACTIONS(3779), - [anon_sym_join] = ACTIONS(3775), - [anon_sym_on] = ACTIONS(3775), - [anon_sym_equals] = ACTIONS(3775), - [anon_sym_let] = ACTIONS(3775), - [anon_sym_orderby] = ACTIONS(3775), - [anon_sym_ascending] = ACTIONS(3775), - [anon_sym_descending] = ACTIONS(3775), - [anon_sym_group] = ACTIONS(3775), - [anon_sym_by] = ACTIONS(3779), - [anon_sym_select] = ACTIONS(3775), - [anon_sym_as] = ACTIONS(3447), - [anon_sym_is] = ACTIONS(3447), - [anon_sym_DASH_GT] = ACTIONS(3445), - [anon_sym_with] = ACTIONS(3447), + [anon_sym_SEMI] = ACTIONS(3636), + [anon_sym_EQ] = ACTIONS(3634), + [anon_sym_LBRACK] = ACTIONS(3636), + [anon_sym_COLON] = ACTIONS(3636), + [anon_sym_COMMA] = ACTIONS(3636), + [anon_sym_RBRACK] = ACTIONS(3636), + [anon_sym_LPAREN] = ACTIONS(3636), + [anon_sym_RPAREN] = ACTIONS(3636), + [anon_sym_RBRACE] = ACTIONS(3636), + [anon_sym_LT] = ACTIONS(3634), + [anon_sym_GT] = ACTIONS(3634), + [anon_sym_in] = ACTIONS(3634), + [anon_sym_where] = ACTIONS(3636), + [anon_sym_QMARK] = ACTIONS(3634), + [anon_sym_BANG] = ACTIONS(3634), + [anon_sym_PLUS_PLUS] = ACTIONS(3636), + [anon_sym_DASH_DASH] = ACTIONS(3636), + [anon_sym_PLUS] = ACTIONS(3634), + [anon_sym_DASH] = ACTIONS(3634), + [anon_sym_STAR] = ACTIONS(3634), + [anon_sym_SLASH] = ACTIONS(3634), + [anon_sym_PERCENT] = ACTIONS(3634), + [anon_sym_CARET] = ACTIONS(3634), + [anon_sym_PIPE] = ACTIONS(3634), + [anon_sym_AMP] = ACTIONS(3634), + [anon_sym_LT_LT] = ACTIONS(3634), + [anon_sym_GT_GT] = ACTIONS(3634), + [anon_sym_GT_GT_GT] = ACTIONS(3634), + [anon_sym_EQ_EQ] = ACTIONS(3636), + [anon_sym_BANG_EQ] = ACTIONS(3636), + [anon_sym_GT_EQ] = ACTIONS(3636), + [anon_sym_LT_EQ] = ACTIONS(3636), + [anon_sym_DOT] = ACTIONS(3634), + [anon_sym_EQ_GT] = ACTIONS(3636), + [anon_sym_switch] = ACTIONS(3636), + [anon_sym_DOT_DOT] = ACTIONS(3636), + [anon_sym_and] = ACTIONS(3636), + [anon_sym_or] = ACTIONS(3634), + [anon_sym_PLUS_EQ] = ACTIONS(3636), + [anon_sym_DASH_EQ] = ACTIONS(3636), + [anon_sym_STAR_EQ] = ACTIONS(3636), + [anon_sym_SLASH_EQ] = ACTIONS(3636), + [anon_sym_PERCENT_EQ] = ACTIONS(3636), + [anon_sym_AMP_EQ] = ACTIONS(3636), + [anon_sym_CARET_EQ] = ACTIONS(3636), + [anon_sym_PIPE_EQ] = ACTIONS(3636), + [anon_sym_LT_LT_EQ] = ACTIONS(3636), + [anon_sym_GT_GT_EQ] = ACTIONS(3636), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3636), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3636), + [anon_sym_AMP_AMP] = ACTIONS(3636), + [anon_sym_PIPE_PIPE] = ACTIONS(3636), + [anon_sym_QMARK_QMARK] = ACTIONS(3634), + [anon_sym_from] = ACTIONS(3636), + [anon_sym_into] = ACTIONS(3636), + [anon_sym_join] = ACTIONS(3636), + [anon_sym_on] = ACTIONS(3636), + [anon_sym_equals] = ACTIONS(3636), + [anon_sym_let] = ACTIONS(3636), + [anon_sym_orderby] = ACTIONS(3636), + [anon_sym_group] = ACTIONS(3636), + [anon_sym_by] = ACTIONS(3636), + [anon_sym_select] = ACTIONS(3636), + [anon_sym_as] = ACTIONS(3636), + [anon_sym_is] = ACTIONS(3636), + [anon_sym_DASH_GT] = ACTIONS(3636), + [anon_sym_with] = ACTIONS(3636), + [aux_sym_preproc_if_token3] = ACTIONS(3636), + [aux_sym_preproc_else_token1] = ACTIONS(3636), + [aux_sym_preproc_elif_token1] = ACTIONS(3636), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -423049,6 +422719,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2440] = { + [sym__name] = STATE(3489), + [sym_alias_qualified_name] = STATE(3304), + [sym__simple_name] = STATE(3304), + [sym_qualified_name] = STATE(3304), + [sym_generic_name] = STATE(3241), + [sym_ref_type] = STATE(3327), + [sym__scoped_base_type] = STATE(3340), + [sym_identifier] = STATE(3177), + [sym__reserved_identifier] = STATE(3205), [sym_preproc_region] = STATE(2440), [sym_preproc_endregion] = STATE(2440), [sym_preproc_line] = STATE(2440), @@ -423058,76 +422737,67 @@ 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(4179), - [anon_sym_EQ] = ACTIONS(4181), - [anon_sym_LBRACK] = ACTIONS(4179), - [anon_sym_COLON] = ACTIONS(4179), - [anon_sym_COMMA] = ACTIONS(4179), - [anon_sym_RBRACK] = ACTIONS(4179), - [anon_sym_LPAREN] = ACTIONS(4179), - [anon_sym_RPAREN] = ACTIONS(4179), - [anon_sym_RBRACE] = ACTIONS(4179), - [anon_sym_LT] = ACTIONS(4181), - [anon_sym_GT] = ACTIONS(4181), - [anon_sym_in] = ACTIONS(4181), - [anon_sym_where] = ACTIONS(4179), - [anon_sym_QMARK] = ACTIONS(4181), - [anon_sym_BANG] = ACTIONS(4181), - [anon_sym_PLUS_PLUS] = ACTIONS(4179), - [anon_sym_DASH_DASH] = ACTIONS(4179), - [anon_sym_PLUS] = ACTIONS(4181), - [anon_sym_DASH] = ACTIONS(4181), - [anon_sym_STAR] = ACTIONS(4181), - [anon_sym_SLASH] = ACTIONS(4181), - [anon_sym_PERCENT] = ACTIONS(4181), - [anon_sym_CARET] = ACTIONS(4181), - [anon_sym_PIPE] = ACTIONS(4181), - [anon_sym_AMP] = ACTIONS(4181), - [anon_sym_LT_LT] = ACTIONS(4181), - [anon_sym_GT_GT] = ACTIONS(4181), - [anon_sym_GT_GT_GT] = ACTIONS(4181), - [anon_sym_EQ_EQ] = ACTIONS(4179), - [anon_sym_BANG_EQ] = ACTIONS(4179), - [anon_sym_GT_EQ] = ACTIONS(4179), - [anon_sym_LT_EQ] = ACTIONS(4179), - [anon_sym_DOT] = ACTIONS(4181), - [anon_sym_EQ_GT] = ACTIONS(4179), - [anon_sym_switch] = ACTIONS(4179), - [anon_sym_DOT_DOT] = ACTIONS(4179), - [anon_sym_and] = ACTIONS(4179), - [anon_sym_or] = ACTIONS(4181), - [anon_sym_PLUS_EQ] = ACTIONS(4179), - [anon_sym_DASH_EQ] = ACTIONS(4179), - [anon_sym_STAR_EQ] = ACTIONS(4179), - [anon_sym_SLASH_EQ] = ACTIONS(4179), - [anon_sym_PERCENT_EQ] = ACTIONS(4179), - [anon_sym_AMP_EQ] = ACTIONS(4179), - [anon_sym_CARET_EQ] = ACTIONS(4179), - [anon_sym_PIPE_EQ] = ACTIONS(4179), - [anon_sym_LT_LT_EQ] = ACTIONS(4179), - [anon_sym_GT_GT_EQ] = ACTIONS(4179), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(4179), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(4179), - [anon_sym_AMP_AMP] = ACTIONS(4179), - [anon_sym_PIPE_PIPE] = ACTIONS(4179), - [anon_sym_QMARK_QMARK] = ACTIONS(4181), - [anon_sym_from] = ACTIONS(4179), - [anon_sym_into] = ACTIONS(4179), - [anon_sym_join] = ACTIONS(4179), - [anon_sym_on] = ACTIONS(4179), - [anon_sym_equals] = ACTIONS(4179), - [anon_sym_let] = ACTIONS(4179), - [anon_sym_orderby] = ACTIONS(4179), - [anon_sym_group] = ACTIONS(4179), - [anon_sym_by] = ACTIONS(4179), - [anon_sym_select] = ACTIONS(4179), - [anon_sym_as] = ACTIONS(4179), - [anon_sym_is] = ACTIONS(4179), - [anon_sym_DASH_GT] = ACTIONS(4179), - [anon_sym_with] = ACTIONS(4179), - [aux_sym_preproc_if_token3] = ACTIONS(4179), - [aux_sym_preproc_else_token1] = ACTIONS(4179), - [aux_sym_preproc_elif_token1] = ACTIONS(4179), + [sym__identifier_token] = ACTIONS(3798), + [anon_sym_alias] = ACTIONS(3800), + [anon_sym_global] = ACTIONS(3800), + [anon_sym_LBRACK] = ACTIONS(3429), + [anon_sym_LPAREN] = ACTIONS(3429), + [anon_sym_ref] = ACTIONS(4167), + [anon_sym_LBRACE] = ACTIONS(3429), + [anon_sym_file] = ACTIONS(3800), + [anon_sym_LT] = ACTIONS(3431), + [anon_sym_GT] = ACTIONS(3431), + [anon_sym_where] = ACTIONS(3800), + [anon_sym_QMARK] = ACTIONS(3431), + [anon_sym_notnull] = ACTIONS(3800), + [anon_sym_unmanaged] = ACTIONS(3800), + [anon_sym_BANG] = ACTIONS(3431), + [anon_sym_PLUS_PLUS] = ACTIONS(3429), + [anon_sym_DASH_DASH] = ACTIONS(3429), + [anon_sym_PLUS] = ACTIONS(3431), + [anon_sym_DASH] = ACTIONS(3431), + [anon_sym_STAR] = ACTIONS(3429), + [anon_sym_SLASH] = ACTIONS(3431), + [anon_sym_PERCENT] = ACTIONS(3429), + [anon_sym_CARET] = ACTIONS(3429), + [anon_sym_PIPE] = ACTIONS(3431), + [anon_sym_AMP] = ACTIONS(3431), + [anon_sym_LT_LT] = ACTIONS(3429), + [anon_sym_GT_GT] = ACTIONS(3431), + [anon_sym_GT_GT_GT] = ACTIONS(3429), + [anon_sym_EQ_EQ] = ACTIONS(3429), + [anon_sym_BANG_EQ] = ACTIONS(3429), + [anon_sym_GT_EQ] = ACTIONS(3429), + [anon_sym_LT_EQ] = ACTIONS(3429), + [anon_sym_DOT] = ACTIONS(3431), + [anon_sym_scoped] = ACTIONS(3800), + [anon_sym_COLON_COLON] = ACTIONS(3429), + [anon_sym_var] = ACTIONS(3800), + [anon_sym_yield] = ACTIONS(3800), + [anon_sym_switch] = ACTIONS(3431), + [anon_sym_when] = ACTIONS(3800), + [anon_sym_DOT_DOT] = ACTIONS(3429), + [anon_sym_and] = ACTIONS(3431), + [anon_sym_or] = ACTIONS(3431), + [anon_sym_AMP_AMP] = ACTIONS(3429), + [anon_sym_PIPE_PIPE] = ACTIONS(3429), + [anon_sym_QMARK_QMARK] = ACTIONS(3429), + [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(4027), + [anon_sym_select] = ACTIONS(3800), + [anon_sym_as] = ACTIONS(3431), + [anon_sym_is] = ACTIONS(3431), + [anon_sym_DASH_GT] = ACTIONS(3429), + [anon_sym_with] = ACTIONS(3431), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -423140,15 +422810,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2441] = { - [sym__name] = STATE(3191), - [sym_alias_qualified_name] = STATE(3200), - [sym__simple_name] = STATE(3200), - [sym_qualified_name] = STATE(3200), - [sym_generic_name] = STATE(3156), - [sym_ref_type] = STATE(3178), - [sym__scoped_base_type] = STATE(3202), - [sym_identifier] = STATE(3129), - [sym__reserved_identifier] = STATE(3149), + [sym__name] = STATE(3489), + [sym_alias_qualified_name] = STATE(3304), + [sym__simple_name] = STATE(3304), + [sym_qualified_name] = STATE(3304), + [sym_generic_name] = STATE(3241), + [sym_ref_type] = STATE(3327), + [sym__scoped_base_type] = STATE(3340), + [sym_identifier] = STATE(3177), + [sym__reserved_identifier] = STATE(3205), [sym_preproc_region] = STATE(2441), [sym_preproc_endregion] = STATE(2441), [sym_preproc_line] = STATE(2441), @@ -423158,67 +422828,67 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2441), [sym_preproc_define] = STATE(2441), [sym_preproc_undef] = STATE(2441), - [sym__identifier_token] = ACTIONS(3773), - [anon_sym_alias] = ACTIONS(3775), - [anon_sym_global] = ACTIONS(3775), - [anon_sym_LBRACK] = ACTIONS(3445), - [anon_sym_LPAREN] = ACTIONS(3445), - [anon_sym_ref] = ACTIONS(4183), - [anon_sym_LBRACE] = ACTIONS(3445), - [anon_sym_file] = ACTIONS(3775), - [anon_sym_LT] = ACTIONS(3447), - [anon_sym_GT] = ACTIONS(3447), - [anon_sym_where] = ACTIONS(3775), - [anon_sym_QMARK] = ACTIONS(3447), - [anon_sym_notnull] = ACTIONS(3775), - [anon_sym_unmanaged] = ACTIONS(3775), - [anon_sym_BANG] = ACTIONS(3447), - [anon_sym_PLUS_PLUS] = ACTIONS(3445), - [anon_sym_DASH_DASH] = ACTIONS(3445), - [anon_sym_PLUS] = ACTIONS(3447), - [anon_sym_DASH] = ACTIONS(3447), - [anon_sym_STAR] = ACTIONS(3445), - [anon_sym_SLASH] = ACTIONS(3447), - [anon_sym_PERCENT] = ACTIONS(3445), - [anon_sym_CARET] = ACTIONS(3445), - [anon_sym_PIPE] = ACTIONS(3447), - [anon_sym_AMP] = ACTIONS(3447), - [anon_sym_LT_LT] = ACTIONS(3445), - [anon_sym_GT_GT] = ACTIONS(3447), - [anon_sym_GT_GT_GT] = ACTIONS(3445), - [anon_sym_EQ_EQ] = ACTIONS(3445), - [anon_sym_BANG_EQ] = ACTIONS(3445), - [anon_sym_GT_EQ] = ACTIONS(3445), - [anon_sym_LT_EQ] = ACTIONS(3445), - [anon_sym_DOT] = ACTIONS(3447), - [anon_sym_scoped] = ACTIONS(3775), - [anon_sym_COLON_COLON] = ACTIONS(3445), - [anon_sym_var] = ACTIONS(3775), - [anon_sym_yield] = ACTIONS(3775), - [anon_sym_switch] = ACTIONS(3447), - [anon_sym_when] = ACTIONS(3775), - [anon_sym_DOT_DOT] = ACTIONS(3445), - [anon_sym_and] = ACTIONS(3447), - [anon_sym_or] = ACTIONS(3447), - [anon_sym_AMP_AMP] = ACTIONS(3445), - [anon_sym_PIPE_PIPE] = ACTIONS(3445), - [anon_sym_QMARK_QMARK] = ACTIONS(3445), - [anon_sym_from] = ACTIONS(3775), - [anon_sym_into] = ACTIONS(3779), - [anon_sym_join] = ACTIONS(3775), - [anon_sym_on] = ACTIONS(3775), - [anon_sym_equals] = ACTIONS(3779), - [anon_sym_let] = ACTIONS(3775), - [anon_sym_orderby] = ACTIONS(3775), - [anon_sym_ascending] = ACTIONS(3775), - [anon_sym_descending] = ACTIONS(3775), - [anon_sym_group] = ACTIONS(3775), - [anon_sym_by] = ACTIONS(3775), - [anon_sym_select] = ACTIONS(3775), - [anon_sym_as] = ACTIONS(3447), - [anon_sym_is] = ACTIONS(3447), - [anon_sym_DASH_GT] = ACTIONS(3445), - [anon_sym_with] = ACTIONS(3447), + [sym__identifier_token] = ACTIONS(3798), + [anon_sym_alias] = ACTIONS(3800), + [anon_sym_global] = ACTIONS(3800), + [anon_sym_LBRACK] = ACTIONS(3429), + [anon_sym_LPAREN] = ACTIONS(3429), + [anon_sym_ref] = ACTIONS(4169), + [anon_sym_LBRACE] = ACTIONS(3429), + [anon_sym_file] = ACTIONS(3800), + [anon_sym_LT] = ACTIONS(3431), + [anon_sym_GT] = ACTIONS(3431), + [anon_sym_where] = ACTIONS(3800), + [anon_sym_QMARK] = ACTIONS(3431), + [anon_sym_notnull] = ACTIONS(3800), + [anon_sym_unmanaged] = ACTIONS(3800), + [anon_sym_BANG] = ACTIONS(3431), + [anon_sym_PLUS_PLUS] = ACTIONS(3429), + [anon_sym_DASH_DASH] = ACTIONS(3429), + [anon_sym_PLUS] = ACTIONS(3431), + [anon_sym_DASH] = ACTIONS(3431), + [anon_sym_STAR] = ACTIONS(3429), + [anon_sym_SLASH] = ACTIONS(3431), + [anon_sym_PERCENT] = ACTIONS(3429), + [anon_sym_CARET] = ACTIONS(3429), + [anon_sym_PIPE] = ACTIONS(3431), + [anon_sym_AMP] = ACTIONS(3431), + [anon_sym_LT_LT] = ACTIONS(3429), + [anon_sym_GT_GT] = ACTIONS(3431), + [anon_sym_GT_GT_GT] = ACTIONS(3429), + [anon_sym_EQ_EQ] = ACTIONS(3429), + [anon_sym_BANG_EQ] = ACTIONS(3429), + [anon_sym_GT_EQ] = ACTIONS(3429), + [anon_sym_LT_EQ] = ACTIONS(3429), + [anon_sym_DOT] = ACTIONS(3431), + [anon_sym_scoped] = ACTIONS(3800), + [anon_sym_COLON_COLON] = ACTIONS(3429), + [anon_sym_var] = ACTIONS(3800), + [anon_sym_yield] = ACTIONS(3800), + [anon_sym_switch] = ACTIONS(3431), + [anon_sym_when] = ACTIONS(3800), + [anon_sym_DOT_DOT] = ACTIONS(3429), + [anon_sym_and] = ACTIONS(3431), + [anon_sym_or] = ACTIONS(3431), + [anon_sym_AMP_AMP] = ACTIONS(3429), + [anon_sym_PIPE_PIPE] = ACTIONS(3429), + [anon_sym_QMARK_QMARK] = ACTIONS(3429), + [anon_sym_from] = ACTIONS(3800), + [anon_sym_into] = ACTIONS(3800), + [anon_sym_join] = ACTIONS(3800), + [anon_sym_on] = ACTIONS(3800), + [anon_sym_equals] = ACTIONS(4027), + [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(3431), + [anon_sym_is] = ACTIONS(3431), + [anon_sym_DASH_GT] = ACTIONS(3429), + [anon_sym_with] = ACTIONS(3431), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -423231,6 +422901,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2442] = { + [sym__name] = STATE(3489), + [sym_alias_qualified_name] = STATE(3304), + [sym__simple_name] = STATE(3304), + [sym_qualified_name] = STATE(3304), + [sym_generic_name] = STATE(3241), + [sym_ref_type] = STATE(3327), + [sym__scoped_base_type] = STATE(3340), + [sym_identifier] = STATE(3177), + [sym__reserved_identifier] = STATE(3205), [sym_preproc_region] = STATE(2442), [sym_preproc_endregion] = STATE(2442), [sym_preproc_line] = STATE(2442), @@ -423240,76 +422919,67 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2442), [sym_preproc_define] = STATE(2442), [sym_preproc_undef] = STATE(2442), - [sym__identifier_token] = ACTIONS(4140), - [anon_sym_alias] = ACTIONS(4140), - [anon_sym_SEMI] = ACTIONS(4142), - [anon_sym_global] = ACTIONS(4140), - [anon_sym_LBRACK] = ACTIONS(4142), - [anon_sym_COLON] = ACTIONS(4142), - [anon_sym_COMMA] = ACTIONS(4142), - [anon_sym_RBRACK] = ACTIONS(4142), - [anon_sym_LPAREN] = ACTIONS(4142), - [anon_sym_RPAREN] = ACTIONS(4142), - [anon_sym_RBRACE] = ACTIONS(4142), - [anon_sym_file] = ACTIONS(4140), - [anon_sym_LT] = ACTIONS(4140), - [anon_sym_GT] = ACTIONS(4140), - [anon_sym_in] = ACTIONS(4140), - [anon_sym_where] = ACTIONS(4140), - [anon_sym_QMARK] = ACTIONS(4140), - [anon_sym_notnull] = ACTIONS(4140), - [anon_sym_unmanaged] = ACTIONS(4140), - [anon_sym_BANG] = ACTIONS(4140), - [anon_sym_PLUS_PLUS] = ACTIONS(4142), - [anon_sym_DASH_DASH] = ACTIONS(4142), - [anon_sym_PLUS] = ACTIONS(4140), - [anon_sym_DASH] = ACTIONS(4140), - [anon_sym_STAR] = ACTIONS(4142), - [anon_sym_SLASH] = ACTIONS(4140), - [anon_sym_PERCENT] = ACTIONS(4142), - [anon_sym_CARET] = ACTIONS(4142), - [anon_sym_PIPE] = ACTIONS(4140), - [anon_sym_AMP] = ACTIONS(4140), - [anon_sym_LT_LT] = ACTIONS(4142), - [anon_sym_GT_GT] = ACTIONS(4140), - [anon_sym_GT_GT_GT] = ACTIONS(4142), - [anon_sym_EQ_EQ] = ACTIONS(4142), - [anon_sym_BANG_EQ] = ACTIONS(4142), - [anon_sym_GT_EQ] = ACTIONS(4142), - [anon_sym_LT_EQ] = ACTIONS(4142), - [anon_sym_DOT] = ACTIONS(4140), - [anon_sym_scoped] = ACTIONS(4140), - [anon_sym_EQ_GT] = ACTIONS(4142), - [anon_sym_var] = ACTIONS(4140), - [anon_sym_yield] = ACTIONS(4140), - [anon_sym_switch] = ACTIONS(4140), - [anon_sym_when] = ACTIONS(4140), - [sym_discard] = ACTIONS(4140), - [anon_sym_DOT_DOT] = ACTIONS(4142), - [anon_sym_and] = ACTIONS(4140), - [anon_sym_or] = ACTIONS(4140), - [anon_sym_AMP_AMP] = ACTIONS(4142), - [anon_sym_PIPE_PIPE] = ACTIONS(4142), - [anon_sym_QMARK_QMARK] = ACTIONS(4142), - [anon_sym_from] = ACTIONS(4140), - [anon_sym_into] = ACTIONS(4140), - [anon_sym_join] = ACTIONS(4140), - [anon_sym_on] = ACTIONS(4140), - [anon_sym_equals] = ACTIONS(4140), - [anon_sym_let] = ACTIONS(4140), - [anon_sym_orderby] = ACTIONS(4140), - [anon_sym_ascending] = ACTIONS(4140), - [anon_sym_descending] = ACTIONS(4140), - [anon_sym_group] = ACTIONS(4140), - [anon_sym_by] = ACTIONS(4140), - [anon_sym_select] = ACTIONS(4140), - [anon_sym_as] = ACTIONS(4140), - [anon_sym_is] = ACTIONS(4140), - [anon_sym_DASH_GT] = ACTIONS(4142), - [anon_sym_with] = ACTIONS(4140), - [aux_sym_preproc_if_token3] = ACTIONS(4142), - [aux_sym_preproc_else_token1] = ACTIONS(4142), - [aux_sym_preproc_elif_token1] = ACTIONS(4142), + [sym__identifier_token] = ACTIONS(3798), + [anon_sym_alias] = ACTIONS(3800), + [anon_sym_global] = ACTIONS(3800), + [anon_sym_LBRACK] = ACTIONS(3429), + [anon_sym_LPAREN] = ACTIONS(3429), + [anon_sym_ref] = ACTIONS(4171), + [anon_sym_LBRACE] = ACTIONS(3429), + [anon_sym_file] = ACTIONS(3800), + [anon_sym_LT] = ACTIONS(3431), + [anon_sym_GT] = ACTIONS(3431), + [anon_sym_where] = ACTIONS(3800), + [anon_sym_QMARK] = ACTIONS(3431), + [anon_sym_notnull] = ACTIONS(3800), + [anon_sym_unmanaged] = ACTIONS(3800), + [anon_sym_BANG] = ACTIONS(3431), + [anon_sym_PLUS_PLUS] = ACTIONS(3429), + [anon_sym_DASH_DASH] = ACTIONS(3429), + [anon_sym_PLUS] = ACTIONS(3431), + [anon_sym_DASH] = ACTIONS(3431), + [anon_sym_STAR] = ACTIONS(3429), + [anon_sym_SLASH] = ACTIONS(3431), + [anon_sym_PERCENT] = ACTIONS(3429), + [anon_sym_CARET] = ACTIONS(3429), + [anon_sym_PIPE] = ACTIONS(3431), + [anon_sym_AMP] = ACTIONS(3431), + [anon_sym_LT_LT] = ACTIONS(3429), + [anon_sym_GT_GT] = ACTIONS(3431), + [anon_sym_GT_GT_GT] = ACTIONS(3429), + [anon_sym_EQ_EQ] = ACTIONS(3429), + [anon_sym_BANG_EQ] = ACTIONS(3429), + [anon_sym_GT_EQ] = ACTIONS(3429), + [anon_sym_LT_EQ] = ACTIONS(3429), + [anon_sym_DOT] = ACTIONS(3431), + [anon_sym_scoped] = ACTIONS(3800), + [anon_sym_COLON_COLON] = ACTIONS(3429), + [anon_sym_var] = ACTIONS(3800), + [anon_sym_yield] = ACTIONS(3800), + [anon_sym_switch] = ACTIONS(3431), + [anon_sym_when] = ACTIONS(3800), + [anon_sym_DOT_DOT] = ACTIONS(3429), + [anon_sym_and] = ACTIONS(3431), + [anon_sym_or] = ACTIONS(3431), + [anon_sym_AMP_AMP] = ACTIONS(3429), + [anon_sym_PIPE_PIPE] = ACTIONS(3429), + [anon_sym_QMARK_QMARK] = ACTIONS(3429), + [anon_sym_from] = ACTIONS(3800), + [anon_sym_into] = ACTIONS(3800), + [anon_sym_join] = ACTIONS(3800), + [anon_sym_on] = ACTIONS(4027), + [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(3431), + [anon_sym_is] = ACTIONS(3431), + [anon_sym_DASH_GT] = ACTIONS(3429), + [anon_sym_with] = ACTIONS(3431), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -423322,15 +422992,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2443] = { - [sym__name] = STATE(3191), - [sym_alias_qualified_name] = STATE(3200), - [sym__simple_name] = STATE(3200), - [sym_qualified_name] = STATE(3200), - [sym_generic_name] = STATE(3156), - [sym_ref_type] = STATE(3178), - [sym__scoped_base_type] = STATE(3202), - [sym_identifier] = STATE(3129), - [sym__reserved_identifier] = STATE(3149), + [sym__name] = STATE(3152), + [sym_alias_qualified_name] = STATE(3143), + [sym__simple_name] = STATE(3143), + [sym_qualified_name] = STATE(3143), + [sym_generic_name] = STATE(3184), + [sym_ref_type] = STATE(3153), + [sym__scoped_base_type] = STATE(3154), + [sym_identifier] = STATE(3119), + [sym__reserved_identifier] = STATE(3120), [sym_preproc_region] = STATE(2443), [sym_preproc_endregion] = STATE(2443), [sym_preproc_line] = STATE(2443), @@ -423340,67 +423010,67 @@ 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(3773), - [anon_sym_alias] = ACTIONS(3775), - [anon_sym_global] = ACTIONS(3775), - [anon_sym_LBRACK] = ACTIONS(3445), - [anon_sym_LPAREN] = ACTIONS(3445), - [anon_sym_ref] = ACTIONS(4185), - [anon_sym_LBRACE] = ACTIONS(3445), - [anon_sym_file] = ACTIONS(3775), - [anon_sym_LT] = ACTIONS(3447), - [anon_sym_GT] = ACTIONS(3447), - [anon_sym_where] = ACTIONS(3775), - [anon_sym_QMARK] = ACTIONS(3447), - [anon_sym_notnull] = ACTIONS(3775), - [anon_sym_unmanaged] = ACTIONS(3775), - [anon_sym_BANG] = ACTIONS(3447), - [anon_sym_PLUS_PLUS] = ACTIONS(3445), - [anon_sym_DASH_DASH] = ACTIONS(3445), - [anon_sym_PLUS] = ACTIONS(3447), - [anon_sym_DASH] = ACTIONS(3447), - [anon_sym_STAR] = ACTIONS(3445), - [anon_sym_SLASH] = ACTIONS(3447), - [anon_sym_PERCENT] = ACTIONS(3445), - [anon_sym_CARET] = ACTIONS(3445), - [anon_sym_PIPE] = ACTIONS(3447), - [anon_sym_AMP] = ACTIONS(3447), - [anon_sym_LT_LT] = ACTIONS(3445), - [anon_sym_GT_GT] = ACTIONS(3447), - [anon_sym_GT_GT_GT] = ACTIONS(3445), - [anon_sym_EQ_EQ] = ACTIONS(3445), - [anon_sym_BANG_EQ] = ACTIONS(3445), - [anon_sym_GT_EQ] = ACTIONS(3445), - [anon_sym_LT_EQ] = ACTIONS(3445), - [anon_sym_DOT] = ACTIONS(3447), - [anon_sym_scoped] = ACTIONS(3775), - [anon_sym_COLON_COLON] = ACTIONS(3445), - [anon_sym_var] = ACTIONS(3775), - [anon_sym_yield] = ACTIONS(3775), - [anon_sym_switch] = ACTIONS(3447), - [anon_sym_when] = ACTIONS(3775), - [anon_sym_DOT_DOT] = ACTIONS(3445), - [anon_sym_and] = ACTIONS(3447), - [anon_sym_or] = ACTIONS(3447), - [anon_sym_AMP_AMP] = ACTIONS(3445), - [anon_sym_PIPE_PIPE] = ACTIONS(3445), - [anon_sym_QMARK_QMARK] = ACTIONS(3445), - [anon_sym_from] = ACTIONS(3775), - [anon_sym_into] = ACTIONS(3779), - [anon_sym_join] = ACTIONS(3775), - [anon_sym_on] = ACTIONS(3779), - [anon_sym_equals] = ACTIONS(3775), - [anon_sym_let] = ACTIONS(3775), - [anon_sym_orderby] = ACTIONS(3775), - [anon_sym_ascending] = ACTIONS(3775), - [anon_sym_descending] = ACTIONS(3775), - [anon_sym_group] = ACTIONS(3775), - [anon_sym_by] = ACTIONS(3775), - [anon_sym_select] = ACTIONS(3775), - [anon_sym_as] = ACTIONS(3447), - [anon_sym_is] = ACTIONS(3447), - [anon_sym_DASH_GT] = ACTIONS(3445), - [anon_sym_with] = ACTIONS(3447), + [sym__identifier_token] = ACTIONS(3761), + [anon_sym_alias] = ACTIONS(3763), + [anon_sym_global] = ACTIONS(3763), + [anon_sym_LBRACK] = ACTIONS(3429), + [anon_sym_LPAREN] = ACTIONS(3429), + [anon_sym_ref] = ACTIONS(4173), + [anon_sym_LBRACE] = ACTIONS(3429), + [anon_sym_file] = ACTIONS(3763), + [anon_sym_LT] = ACTIONS(3431), + [anon_sym_GT] = ACTIONS(3431), + [anon_sym_where] = ACTIONS(3763), + [anon_sym_QMARK] = ACTIONS(3431), + [anon_sym_notnull] = ACTIONS(3763), + [anon_sym_unmanaged] = ACTIONS(3763), + [anon_sym_BANG] = ACTIONS(3431), + [anon_sym_PLUS_PLUS] = ACTIONS(3429), + [anon_sym_DASH_DASH] = ACTIONS(3429), + [anon_sym_PLUS] = ACTIONS(3431), + [anon_sym_DASH] = ACTIONS(3431), + [anon_sym_STAR] = ACTIONS(3429), + [anon_sym_SLASH] = ACTIONS(3431), + [anon_sym_PERCENT] = ACTIONS(3429), + [anon_sym_CARET] = ACTIONS(3429), + [anon_sym_PIPE] = ACTIONS(3431), + [anon_sym_AMP] = ACTIONS(3431), + [anon_sym_LT_LT] = ACTIONS(3429), + [anon_sym_GT_GT] = ACTIONS(3431), + [anon_sym_GT_GT_GT] = ACTIONS(3429), + [anon_sym_EQ_EQ] = ACTIONS(3429), + [anon_sym_BANG_EQ] = ACTIONS(3429), + [anon_sym_GT_EQ] = ACTIONS(3429), + [anon_sym_LT_EQ] = ACTIONS(3429), + [anon_sym_DOT] = ACTIONS(3431), + [anon_sym_scoped] = ACTIONS(3763), + [anon_sym_COLON_COLON] = ACTIONS(3429), + [anon_sym_var] = ACTIONS(3763), + [anon_sym_yield] = ACTIONS(3763), + [anon_sym_switch] = ACTIONS(3431), + [anon_sym_when] = ACTIONS(3763), + [anon_sym_DOT_DOT] = ACTIONS(3429), + [anon_sym_and] = ACTIONS(3431), + [anon_sym_or] = ACTIONS(3431), + [anon_sym_AMP_AMP] = ACTIONS(3429), + [anon_sym_PIPE_PIPE] = ACTIONS(3429), + [anon_sym_QMARK_QMARK] = ACTIONS(3429), + [anon_sym_from] = ACTIONS(3763), + [anon_sym_into] = ACTIONS(3767), + [anon_sym_join] = ACTIONS(3763), + [anon_sym_on] = ACTIONS(3763), + [anon_sym_equals] = ACTIONS(3763), + [anon_sym_let] = ACTIONS(3763), + [anon_sym_orderby] = ACTIONS(3763), + [anon_sym_ascending] = ACTIONS(3763), + [anon_sym_descending] = ACTIONS(3763), + [anon_sym_group] = ACTIONS(3763), + [anon_sym_by] = ACTIONS(3767), + [anon_sym_select] = ACTIONS(3763), + [anon_sym_as] = ACTIONS(3431), + [anon_sym_is] = ACTIONS(3431), + [anon_sym_DASH_GT] = ACTIONS(3429), + [anon_sym_with] = ACTIONS(3431), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -423413,6 +423083,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2444] = { + [sym__name] = STATE(3152), + [sym_alias_qualified_name] = STATE(3143), + [sym__simple_name] = STATE(3143), + [sym_qualified_name] = STATE(3143), + [sym_generic_name] = STATE(3184), + [sym_ref_type] = STATE(3153), + [sym__scoped_base_type] = STATE(3154), + [sym_identifier] = STATE(3119), + [sym__reserved_identifier] = STATE(3120), [sym_preproc_region] = STATE(2444), [sym_preproc_endregion] = STATE(2444), [sym_preproc_line] = STATE(2444), @@ -423422,76 +423101,67 @@ 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), - [anon_sym_SEMI] = ACTIONS(3681), - [anon_sym_EQ] = ACTIONS(3679), - [anon_sym_LBRACK] = ACTIONS(3681), - [anon_sym_COLON] = ACTIONS(3681), - [anon_sym_COMMA] = ACTIONS(3681), - [anon_sym_RBRACK] = ACTIONS(3681), - [anon_sym_LPAREN] = ACTIONS(3681), - [anon_sym_RPAREN] = ACTIONS(3681), - [anon_sym_RBRACE] = ACTIONS(3681), - [anon_sym_LT] = ACTIONS(3679), - [anon_sym_GT] = ACTIONS(3679), - [anon_sym_in] = ACTIONS(3679), - [anon_sym_where] = ACTIONS(3681), - [anon_sym_QMARK] = ACTIONS(3679), - [anon_sym_BANG] = ACTIONS(3679), - [anon_sym_PLUS_PLUS] = ACTIONS(3681), - [anon_sym_DASH_DASH] = ACTIONS(3681), - [anon_sym_PLUS] = ACTIONS(3679), - [anon_sym_DASH] = ACTIONS(3679), - [anon_sym_STAR] = ACTIONS(3679), - [anon_sym_SLASH] = ACTIONS(3679), - [anon_sym_PERCENT] = ACTIONS(3679), - [anon_sym_CARET] = ACTIONS(3679), - [anon_sym_PIPE] = ACTIONS(3679), - [anon_sym_AMP] = ACTIONS(3679), - [anon_sym_LT_LT] = ACTIONS(3679), - [anon_sym_GT_GT] = ACTIONS(3679), - [anon_sym_GT_GT_GT] = ACTIONS(3679), - [anon_sym_EQ_EQ] = ACTIONS(3681), - [anon_sym_BANG_EQ] = ACTIONS(3681), - [anon_sym_GT_EQ] = ACTIONS(3681), - [anon_sym_LT_EQ] = ACTIONS(3681), - [anon_sym_DOT] = ACTIONS(3679), - [anon_sym_EQ_GT] = ACTIONS(3681), - [anon_sym_switch] = ACTIONS(3681), - [anon_sym_DOT_DOT] = ACTIONS(3681), - [anon_sym_and] = ACTIONS(3681), - [anon_sym_or] = ACTIONS(3679), - [anon_sym_PLUS_EQ] = ACTIONS(3681), - [anon_sym_DASH_EQ] = ACTIONS(3681), - [anon_sym_STAR_EQ] = ACTIONS(3681), - [anon_sym_SLASH_EQ] = ACTIONS(3681), - [anon_sym_PERCENT_EQ] = ACTIONS(3681), - [anon_sym_AMP_EQ] = ACTIONS(3681), - [anon_sym_CARET_EQ] = ACTIONS(3681), - [anon_sym_PIPE_EQ] = ACTIONS(3681), - [anon_sym_LT_LT_EQ] = ACTIONS(3681), - [anon_sym_GT_GT_EQ] = ACTIONS(3681), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3681), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3681), - [anon_sym_AMP_AMP] = ACTIONS(3681), - [anon_sym_PIPE_PIPE] = ACTIONS(3681), - [anon_sym_QMARK_QMARK] = ACTIONS(3679), - [anon_sym_from] = ACTIONS(3681), - [anon_sym_into] = ACTIONS(3681), - [anon_sym_join] = ACTIONS(3681), - [anon_sym_on] = ACTIONS(3681), - [anon_sym_equals] = ACTIONS(3681), - [anon_sym_let] = ACTIONS(3681), - [anon_sym_orderby] = ACTIONS(3681), - [anon_sym_group] = ACTIONS(3681), - [anon_sym_by] = ACTIONS(3681), - [anon_sym_select] = ACTIONS(3681), - [anon_sym_as] = ACTIONS(3681), - [anon_sym_is] = ACTIONS(3681), - [anon_sym_DASH_GT] = ACTIONS(3681), - [anon_sym_with] = ACTIONS(3681), - [aux_sym_preproc_if_token3] = ACTIONS(3681), - [aux_sym_preproc_else_token1] = ACTIONS(3681), - [aux_sym_preproc_elif_token1] = ACTIONS(3681), + [sym__identifier_token] = ACTIONS(3761), + [anon_sym_alias] = ACTIONS(3763), + [anon_sym_global] = ACTIONS(3763), + [anon_sym_LBRACK] = ACTIONS(3429), + [anon_sym_LPAREN] = ACTIONS(3429), + [anon_sym_ref] = ACTIONS(4175), + [anon_sym_LBRACE] = ACTIONS(3429), + [anon_sym_file] = ACTIONS(3763), + [anon_sym_LT] = ACTIONS(3431), + [anon_sym_GT] = ACTIONS(3431), + [anon_sym_where] = ACTIONS(3763), + [anon_sym_QMARK] = ACTIONS(3431), + [anon_sym_notnull] = ACTIONS(3763), + [anon_sym_unmanaged] = ACTIONS(3763), + [anon_sym_BANG] = ACTIONS(3431), + [anon_sym_PLUS_PLUS] = ACTIONS(3429), + [anon_sym_DASH_DASH] = ACTIONS(3429), + [anon_sym_PLUS] = ACTIONS(3431), + [anon_sym_DASH] = ACTIONS(3431), + [anon_sym_STAR] = ACTIONS(3429), + [anon_sym_SLASH] = ACTIONS(3431), + [anon_sym_PERCENT] = ACTIONS(3429), + [anon_sym_CARET] = ACTIONS(3429), + [anon_sym_PIPE] = ACTIONS(3431), + [anon_sym_AMP] = ACTIONS(3431), + [anon_sym_LT_LT] = ACTIONS(3429), + [anon_sym_GT_GT] = ACTIONS(3431), + [anon_sym_GT_GT_GT] = ACTIONS(3429), + [anon_sym_EQ_EQ] = ACTIONS(3429), + [anon_sym_BANG_EQ] = ACTIONS(3429), + [anon_sym_GT_EQ] = ACTIONS(3429), + [anon_sym_LT_EQ] = ACTIONS(3429), + [anon_sym_DOT] = ACTIONS(3431), + [anon_sym_scoped] = ACTIONS(3763), + [anon_sym_COLON_COLON] = ACTIONS(3429), + [anon_sym_var] = ACTIONS(3763), + [anon_sym_yield] = ACTIONS(3763), + [anon_sym_switch] = ACTIONS(3431), + [anon_sym_when] = ACTIONS(3763), + [anon_sym_DOT_DOT] = ACTIONS(3429), + [anon_sym_and] = ACTIONS(3431), + [anon_sym_or] = ACTIONS(3431), + [anon_sym_AMP_AMP] = ACTIONS(3429), + [anon_sym_PIPE_PIPE] = ACTIONS(3429), + [anon_sym_QMARK_QMARK] = ACTIONS(3429), + [anon_sym_from] = ACTIONS(3763), + [anon_sym_into] = ACTIONS(3767), + [anon_sym_join] = ACTIONS(3763), + [anon_sym_on] = ACTIONS(3763), + [anon_sym_equals] = ACTIONS(3767), + [anon_sym_let] = ACTIONS(3763), + [anon_sym_orderby] = ACTIONS(3763), + [anon_sym_ascending] = ACTIONS(3763), + [anon_sym_descending] = ACTIONS(3763), + [anon_sym_group] = ACTIONS(3763), + [anon_sym_by] = ACTIONS(3763), + [anon_sym_select] = ACTIONS(3763), + [anon_sym_as] = ACTIONS(3431), + [anon_sym_is] = ACTIONS(3431), + [anon_sym_DASH_GT] = ACTIONS(3429), + [anon_sym_with] = ACTIONS(3431), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -423504,6 +423174,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2445] = { + [sym__name] = STATE(3152), + [sym_alias_qualified_name] = STATE(3143), + [sym__simple_name] = STATE(3143), + [sym_qualified_name] = STATE(3143), + [sym_generic_name] = STATE(3184), + [sym_ref_type] = STATE(3153), + [sym__scoped_base_type] = STATE(3154), + [sym_identifier] = STATE(3119), + [sym__reserved_identifier] = STATE(3120), [sym_preproc_region] = STATE(2445), [sym_preproc_endregion] = STATE(2445), [sym_preproc_line] = STATE(2445), @@ -423513,76 +423192,67 @@ 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), - [anon_sym_SEMI] = ACTIONS(4187), - [anon_sym_EQ] = ACTIONS(4189), - [anon_sym_LBRACK] = ACTIONS(4187), - [anon_sym_COLON] = ACTIONS(4187), - [anon_sym_COMMA] = ACTIONS(4187), - [anon_sym_RBRACK] = ACTIONS(4187), - [anon_sym_LPAREN] = ACTIONS(4187), - [anon_sym_RPAREN] = ACTIONS(4187), - [anon_sym_RBRACE] = ACTIONS(4187), - [anon_sym_LT] = ACTIONS(4189), - [anon_sym_GT] = ACTIONS(4189), - [anon_sym_in] = ACTIONS(4189), - [anon_sym_where] = ACTIONS(4187), - [anon_sym_QMARK] = ACTIONS(4189), - [anon_sym_BANG] = ACTIONS(4189), - [anon_sym_PLUS_PLUS] = ACTIONS(4187), - [anon_sym_DASH_DASH] = ACTIONS(4187), - [anon_sym_PLUS] = ACTIONS(4189), - [anon_sym_DASH] = ACTIONS(4189), - [anon_sym_STAR] = ACTIONS(4189), - [anon_sym_SLASH] = ACTIONS(4189), - [anon_sym_PERCENT] = ACTIONS(4189), - [anon_sym_CARET] = ACTIONS(4189), - [anon_sym_PIPE] = ACTIONS(4189), - [anon_sym_AMP] = ACTIONS(4189), - [anon_sym_LT_LT] = ACTIONS(4189), - [anon_sym_GT_GT] = ACTIONS(4189), - [anon_sym_GT_GT_GT] = ACTIONS(4189), - [anon_sym_EQ_EQ] = ACTIONS(4187), - [anon_sym_BANG_EQ] = ACTIONS(4187), - [anon_sym_GT_EQ] = ACTIONS(4187), - [anon_sym_LT_EQ] = ACTIONS(4187), - [anon_sym_DOT] = ACTIONS(4189), - [anon_sym_EQ_GT] = ACTIONS(4187), - [anon_sym_switch] = ACTIONS(4187), - [anon_sym_DOT_DOT] = ACTIONS(4187), - [anon_sym_and] = ACTIONS(4187), - [anon_sym_or] = ACTIONS(4189), - [anon_sym_PLUS_EQ] = ACTIONS(4187), - [anon_sym_DASH_EQ] = ACTIONS(4187), - [anon_sym_STAR_EQ] = ACTIONS(4187), - [anon_sym_SLASH_EQ] = ACTIONS(4187), - [anon_sym_PERCENT_EQ] = ACTIONS(4187), - [anon_sym_AMP_EQ] = ACTIONS(4187), - [anon_sym_CARET_EQ] = ACTIONS(4187), - [anon_sym_PIPE_EQ] = ACTIONS(4187), - [anon_sym_LT_LT_EQ] = ACTIONS(4187), - [anon_sym_GT_GT_EQ] = ACTIONS(4187), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(4187), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(4187), - [anon_sym_AMP_AMP] = ACTIONS(4187), - [anon_sym_PIPE_PIPE] = ACTIONS(4187), - [anon_sym_QMARK_QMARK] = ACTIONS(4189), - [anon_sym_from] = ACTIONS(4187), - [anon_sym_into] = ACTIONS(4187), - [anon_sym_join] = ACTIONS(4187), - [anon_sym_on] = ACTIONS(4187), - [anon_sym_equals] = ACTIONS(4187), - [anon_sym_let] = ACTIONS(4187), - [anon_sym_orderby] = ACTIONS(4187), - [anon_sym_group] = ACTIONS(4187), - [anon_sym_by] = ACTIONS(4187), - [anon_sym_select] = ACTIONS(4187), - [anon_sym_as] = ACTIONS(4187), - [anon_sym_is] = ACTIONS(4187), - [anon_sym_DASH_GT] = ACTIONS(4187), - [anon_sym_with] = ACTIONS(4187), - [aux_sym_preproc_if_token3] = ACTIONS(4187), - [aux_sym_preproc_else_token1] = ACTIONS(4187), - [aux_sym_preproc_elif_token1] = ACTIONS(4187), + [sym__identifier_token] = ACTIONS(3761), + [anon_sym_alias] = ACTIONS(3763), + [anon_sym_global] = ACTIONS(3763), + [anon_sym_LBRACK] = ACTIONS(3429), + [anon_sym_LPAREN] = ACTIONS(3429), + [anon_sym_ref] = ACTIONS(4177), + [anon_sym_LBRACE] = ACTIONS(3429), + [anon_sym_file] = ACTIONS(3763), + [anon_sym_LT] = ACTIONS(3431), + [anon_sym_GT] = ACTIONS(3431), + [anon_sym_where] = ACTIONS(3763), + [anon_sym_QMARK] = ACTIONS(3431), + [anon_sym_notnull] = ACTIONS(3763), + [anon_sym_unmanaged] = ACTIONS(3763), + [anon_sym_BANG] = ACTIONS(3431), + [anon_sym_PLUS_PLUS] = ACTIONS(3429), + [anon_sym_DASH_DASH] = ACTIONS(3429), + [anon_sym_PLUS] = ACTIONS(3431), + [anon_sym_DASH] = ACTIONS(3431), + [anon_sym_STAR] = ACTIONS(3429), + [anon_sym_SLASH] = ACTIONS(3431), + [anon_sym_PERCENT] = ACTIONS(3429), + [anon_sym_CARET] = ACTIONS(3429), + [anon_sym_PIPE] = ACTIONS(3431), + [anon_sym_AMP] = ACTIONS(3431), + [anon_sym_LT_LT] = ACTIONS(3429), + [anon_sym_GT_GT] = ACTIONS(3431), + [anon_sym_GT_GT_GT] = ACTIONS(3429), + [anon_sym_EQ_EQ] = ACTIONS(3429), + [anon_sym_BANG_EQ] = ACTIONS(3429), + [anon_sym_GT_EQ] = ACTIONS(3429), + [anon_sym_LT_EQ] = ACTIONS(3429), + [anon_sym_DOT] = ACTIONS(3431), + [anon_sym_scoped] = ACTIONS(3763), + [anon_sym_COLON_COLON] = ACTIONS(3429), + [anon_sym_var] = ACTIONS(3763), + [anon_sym_yield] = ACTIONS(3763), + [anon_sym_switch] = ACTIONS(3431), + [anon_sym_when] = ACTIONS(3763), + [anon_sym_DOT_DOT] = ACTIONS(3429), + [anon_sym_and] = ACTIONS(3431), + [anon_sym_or] = ACTIONS(3431), + [anon_sym_AMP_AMP] = ACTIONS(3429), + [anon_sym_PIPE_PIPE] = ACTIONS(3429), + [anon_sym_QMARK_QMARK] = ACTIONS(3429), + [anon_sym_from] = ACTIONS(3763), + [anon_sym_into] = ACTIONS(3767), + [anon_sym_join] = ACTIONS(3763), + [anon_sym_on] = ACTIONS(3767), + [anon_sym_equals] = ACTIONS(3763), + [anon_sym_let] = ACTIONS(3763), + [anon_sym_orderby] = ACTIONS(3763), + [anon_sym_ascending] = ACTIONS(3763), + [anon_sym_descending] = ACTIONS(3763), + [anon_sym_group] = ACTIONS(3763), + [anon_sym_by] = ACTIONS(3763), + [anon_sym_select] = ACTIONS(3763), + [anon_sym_as] = ACTIONS(3431), + [anon_sym_is] = ACTIONS(3431), + [anon_sym_DASH_GT] = ACTIONS(3429), + [anon_sym_with] = ACTIONS(3431), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -423604,76 +423274,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(3975), - [anon_sym_alias] = ACTIONS(3975), - [anon_sym_SEMI] = ACTIONS(3977), - [anon_sym_global] = ACTIONS(3975), - [anon_sym_LBRACK] = ACTIONS(3977), - [anon_sym_COMMA] = ACTIONS(3977), - [anon_sym_RBRACK] = ACTIONS(3977), - [anon_sym_LPAREN] = ACTIONS(3977), - [anon_sym_RPAREN] = ACTIONS(3977), - [anon_sym_LBRACE] = ACTIONS(3977), - [anon_sym_RBRACE] = ACTIONS(3977), - [anon_sym_file] = ACTIONS(3975), - [anon_sym_LT] = ACTIONS(3975), - [anon_sym_GT] = ACTIONS(3975), - [anon_sym_in] = ACTIONS(3975), - [anon_sym_where] = ACTIONS(3975), - [anon_sym_QMARK] = ACTIONS(3975), - [anon_sym_notnull] = ACTIONS(3975), - [anon_sym_unmanaged] = ACTIONS(3975), - [anon_sym_BANG] = ACTIONS(3975), - [anon_sym_PLUS_PLUS] = ACTIONS(3977), - [anon_sym_DASH_DASH] = ACTIONS(3977), - [anon_sym_PLUS] = ACTIONS(3975), - [anon_sym_DASH] = ACTIONS(3975), - [anon_sym_STAR] = ACTIONS(3977), - [anon_sym_SLASH] = ACTIONS(3975), - [anon_sym_PERCENT] = ACTIONS(3977), - [anon_sym_CARET] = ACTIONS(3977), - [anon_sym_PIPE] = ACTIONS(3975), - [anon_sym_AMP] = ACTIONS(3975), - [anon_sym_LT_LT] = ACTIONS(3977), - [anon_sym_GT_GT] = ACTIONS(3975), - [anon_sym_GT_GT_GT] = ACTIONS(3977), - [anon_sym_EQ_EQ] = ACTIONS(3977), - [anon_sym_BANG_EQ] = ACTIONS(3977), - [anon_sym_GT_EQ] = ACTIONS(3977), - [anon_sym_LT_EQ] = ACTIONS(3977), - [anon_sym_DOT] = ACTIONS(4132), - [anon_sym_scoped] = ACTIONS(3975), - [anon_sym_EQ_GT] = ACTIONS(3977), - [anon_sym_var] = ACTIONS(3975), - [anon_sym_yield] = ACTIONS(3975), - [anon_sym_switch] = ACTIONS(3975), - [anon_sym_when] = ACTIONS(3975), - [sym_discard] = ACTIONS(3975), - [anon_sym_DOT_DOT] = ACTIONS(3977), - [anon_sym_and] = ACTIONS(3975), - [anon_sym_or] = ACTIONS(3975), - [anon_sym_AMP_AMP] = ACTIONS(3977), - [anon_sym_PIPE_PIPE] = ACTIONS(3977), - [anon_sym_QMARK_QMARK] = ACTIONS(3977), - [anon_sym_from] = ACTIONS(3975), - [anon_sym_into] = ACTIONS(3975), - [anon_sym_join] = ACTIONS(3975), - [anon_sym_on] = ACTIONS(3975), - [anon_sym_equals] = ACTIONS(3975), - [anon_sym_let] = ACTIONS(3975), - [anon_sym_orderby] = ACTIONS(3975), - [anon_sym_ascending] = ACTIONS(3975), - [anon_sym_descending] = ACTIONS(3975), - [anon_sym_group] = ACTIONS(3975), - [anon_sym_by] = ACTIONS(3975), - [anon_sym_select] = ACTIONS(3975), - [anon_sym_as] = ACTIONS(3975), - [anon_sym_is] = ACTIONS(3975), - [anon_sym_DASH_GT] = ACTIONS(3977), - [anon_sym_with] = ACTIONS(3975), - [aux_sym_preproc_if_token3] = ACTIONS(3977), - [aux_sym_preproc_else_token1] = ACTIONS(3977), - [aux_sym_preproc_elif_token1] = ACTIONS(3977), + [sym__identifier_token] = ACTIONS(4179), + [anon_sym_alias] = ACTIONS(4179), + [anon_sym_SEMI] = ACTIONS(4181), + [anon_sym_global] = ACTIONS(4179), + [anon_sym_LBRACK] = ACTIONS(4181), + [anon_sym_COLON] = ACTIONS(4181), + [anon_sym_COMMA] = ACTIONS(4181), + [anon_sym_RBRACK] = ACTIONS(4181), + [anon_sym_LPAREN] = ACTIONS(4181), + [anon_sym_RPAREN] = ACTIONS(4181), + [anon_sym_RBRACE] = ACTIONS(4181), + [anon_sym_file] = ACTIONS(4179), + [anon_sym_LT] = ACTIONS(4179), + [anon_sym_GT] = ACTIONS(4179), + [anon_sym_in] = ACTIONS(4179), + [anon_sym_where] = ACTIONS(4179), + [anon_sym_QMARK] = ACTIONS(4179), + [anon_sym_notnull] = ACTIONS(4179), + [anon_sym_unmanaged] = ACTIONS(4179), + [anon_sym_BANG] = ACTIONS(4179), + [anon_sym_PLUS_PLUS] = ACTIONS(4181), + [anon_sym_DASH_DASH] = ACTIONS(4181), + [anon_sym_PLUS] = ACTIONS(4179), + [anon_sym_DASH] = ACTIONS(4179), + [anon_sym_STAR] = ACTIONS(4181), + [anon_sym_SLASH] = ACTIONS(4179), + [anon_sym_PERCENT] = ACTIONS(4181), + [anon_sym_CARET] = ACTIONS(4181), + [anon_sym_PIPE] = ACTIONS(4179), + [anon_sym_AMP] = ACTIONS(4179), + [anon_sym_LT_LT] = ACTIONS(4181), + [anon_sym_GT_GT] = ACTIONS(4179), + [anon_sym_GT_GT_GT] = ACTIONS(4181), + [anon_sym_EQ_EQ] = ACTIONS(4181), + [anon_sym_BANG_EQ] = ACTIONS(4181), + [anon_sym_GT_EQ] = ACTIONS(4181), + [anon_sym_LT_EQ] = ACTIONS(4181), + [anon_sym_DOT] = ACTIONS(4179), + [anon_sym_scoped] = ACTIONS(4179), + [anon_sym_EQ_GT] = ACTIONS(4181), + [anon_sym_var] = ACTIONS(4179), + [anon_sym_yield] = ACTIONS(4179), + [anon_sym_switch] = ACTIONS(4179), + [anon_sym_when] = ACTIONS(4179), + [sym_discard] = ACTIONS(4179), + [anon_sym_DOT_DOT] = ACTIONS(4181), + [anon_sym_and] = ACTIONS(4179), + [anon_sym_or] = ACTIONS(4179), + [anon_sym_AMP_AMP] = ACTIONS(4181), + [anon_sym_PIPE_PIPE] = ACTIONS(4181), + [anon_sym_QMARK_QMARK] = ACTIONS(4181), + [anon_sym_from] = ACTIONS(4179), + [anon_sym_into] = ACTIONS(4179), + [anon_sym_join] = ACTIONS(4179), + [anon_sym_on] = ACTIONS(4179), + [anon_sym_equals] = ACTIONS(4179), + [anon_sym_let] = ACTIONS(4179), + [anon_sym_orderby] = ACTIONS(4179), + [anon_sym_ascending] = ACTIONS(4179), + [anon_sym_descending] = ACTIONS(4179), + [anon_sym_group] = ACTIONS(4179), + [anon_sym_by] = ACTIONS(4179), + [anon_sym_select] = ACTIONS(4179), + [anon_sym_as] = ACTIONS(4179), + [anon_sym_is] = ACTIONS(4179), + [anon_sym_DASH_GT] = ACTIONS(4181), + [anon_sym_with] = ACTIONS(4179), + [aux_sym_preproc_if_token3] = ACTIONS(4181), + [aux_sym_preproc_else_token1] = ACTIONS(4181), + [aux_sym_preproc_elif_token1] = ACTIONS(4181), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -423686,6 +423356,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2447] = { + [sym_parameter_list] = STATE(7531), + [sym_positional_pattern_clause] = STATE(2556), + [sym_property_pattern_clause] = STATE(2644), + [sym__variable_designation] = STATE(3422), + [sym_parenthesized_variable_designation] = STATE(3352), + [sym__lambda_parameters] = STATE(7378), + [sym_identifier] = STATE(3430), + [sym__reserved_identifier] = STATE(3205), [sym_preproc_region] = STATE(2447), [sym_preproc_endregion] = STATE(2447), [sym_preproc_line] = STATE(2447), @@ -423695,76 +423373,67 @@ 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(4191), - [anon_sym_EQ] = ACTIONS(4193), - [anon_sym_LBRACK] = ACTIONS(4191), - [anon_sym_COLON] = ACTIONS(4191), - [anon_sym_COMMA] = ACTIONS(4191), - [anon_sym_RBRACK] = ACTIONS(4191), - [anon_sym_LPAREN] = ACTIONS(4191), - [anon_sym_RPAREN] = ACTIONS(4191), - [anon_sym_RBRACE] = ACTIONS(4191), - [anon_sym_LT] = ACTIONS(4193), - [anon_sym_GT] = ACTIONS(4193), - [anon_sym_in] = ACTIONS(4193), - [anon_sym_where] = ACTIONS(4191), - [anon_sym_QMARK] = ACTIONS(4193), - [anon_sym_BANG] = ACTIONS(4193), - [anon_sym_PLUS_PLUS] = ACTIONS(4191), - [anon_sym_DASH_DASH] = ACTIONS(4191), - [anon_sym_PLUS] = ACTIONS(4193), - [anon_sym_DASH] = ACTIONS(4193), - [anon_sym_STAR] = ACTIONS(4193), - [anon_sym_SLASH] = ACTIONS(4193), - [anon_sym_PERCENT] = ACTIONS(4193), - [anon_sym_CARET] = ACTIONS(4193), - [anon_sym_PIPE] = ACTIONS(4193), - [anon_sym_AMP] = ACTIONS(4193), - [anon_sym_LT_LT] = ACTIONS(4193), - [anon_sym_GT_GT] = ACTIONS(4193), - [anon_sym_GT_GT_GT] = ACTIONS(4193), - [anon_sym_EQ_EQ] = ACTIONS(4191), - [anon_sym_BANG_EQ] = ACTIONS(4191), - [anon_sym_GT_EQ] = ACTIONS(4191), - [anon_sym_LT_EQ] = ACTIONS(4191), - [anon_sym_DOT] = ACTIONS(4193), - [anon_sym_EQ_GT] = ACTIONS(4191), - [anon_sym_switch] = ACTIONS(4191), - [anon_sym_DOT_DOT] = ACTIONS(4191), - [anon_sym_and] = ACTIONS(4191), - [anon_sym_or] = ACTIONS(4193), - [anon_sym_PLUS_EQ] = ACTIONS(4191), - [anon_sym_DASH_EQ] = ACTIONS(4191), - [anon_sym_STAR_EQ] = ACTIONS(4191), - [anon_sym_SLASH_EQ] = ACTIONS(4191), - [anon_sym_PERCENT_EQ] = ACTIONS(4191), - [anon_sym_AMP_EQ] = ACTIONS(4191), - [anon_sym_CARET_EQ] = ACTIONS(4191), - [anon_sym_PIPE_EQ] = ACTIONS(4191), - [anon_sym_LT_LT_EQ] = ACTIONS(4191), - [anon_sym_GT_GT_EQ] = ACTIONS(4191), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(4191), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(4191), - [anon_sym_AMP_AMP] = ACTIONS(4191), - [anon_sym_PIPE_PIPE] = ACTIONS(4191), - [anon_sym_QMARK_QMARK] = ACTIONS(4193), - [anon_sym_from] = ACTIONS(4191), - [anon_sym_into] = ACTIONS(4191), - [anon_sym_join] = ACTIONS(4191), - [anon_sym_on] = ACTIONS(4191), - [anon_sym_equals] = ACTIONS(4191), - [anon_sym_let] = ACTIONS(4191), - [anon_sym_orderby] = ACTIONS(4191), - [anon_sym_group] = ACTIONS(4191), - [anon_sym_by] = ACTIONS(4191), - [anon_sym_select] = ACTIONS(4191), - [anon_sym_as] = ACTIONS(4191), - [anon_sym_is] = ACTIONS(4191), - [anon_sym_DASH_GT] = ACTIONS(4191), - [anon_sym_with] = ACTIONS(4191), - [aux_sym_preproc_if_token3] = ACTIONS(4191), - [aux_sym_preproc_else_token1] = ACTIONS(4191), - [aux_sym_preproc_elif_token1] = ACTIONS(4191), + [sym__identifier_token] = ACTIONS(3798), + [anon_sym_alias] = ACTIONS(3800), + [anon_sym_global] = ACTIONS(3800), + [anon_sym_LBRACK] = ACTIONS(3859), + [anon_sym_LPAREN] = ACTIONS(3859), + [anon_sym_LBRACE] = ACTIONS(3861), + [anon_sym_file] = ACTIONS(3800), + [anon_sym_LT] = ACTIONS(3863), + [anon_sym_GT] = ACTIONS(3863), + [anon_sym_in] = ACTIONS(3863), + [anon_sym_where] = ACTIONS(3800), + [anon_sym_QMARK] = ACTIONS(3863), + [anon_sym_notnull] = ACTIONS(3800), + [anon_sym_unmanaged] = ACTIONS(3800), + [anon_sym_BANG] = ACTIONS(3863), + [anon_sym_PLUS_PLUS] = ACTIONS(3859), + [anon_sym_DASH_DASH] = ACTIONS(3859), + [anon_sym_PLUS] = ACTIONS(3863), + [anon_sym_DASH] = ACTIONS(3863), + [anon_sym_STAR] = ACTIONS(3859), + [anon_sym_SLASH] = ACTIONS(3863), + [anon_sym_PERCENT] = ACTIONS(3859), + [anon_sym_CARET] = ACTIONS(3859), + [anon_sym_PIPE] = ACTIONS(3863), + [anon_sym_AMP] = ACTIONS(3863), + [anon_sym_LT_LT] = ACTIONS(3859), + [anon_sym_GT_GT] = ACTIONS(3863), + [anon_sym_GT_GT_GT] = ACTIONS(3859), + [anon_sym_EQ_EQ] = ACTIONS(3859), + [anon_sym_BANG_EQ] = ACTIONS(3859), + [anon_sym_GT_EQ] = ACTIONS(3859), + [anon_sym_LT_EQ] = ACTIONS(3859), + [anon_sym_DOT] = ACTIONS(3863), + [anon_sym_scoped] = ACTIONS(3800), + [anon_sym_var] = ACTIONS(3800), + [anon_sym_yield] = ACTIONS(3800), + [anon_sym_switch] = ACTIONS(3863), + [anon_sym_when] = ACTIONS(3800), + [sym_discard] = ACTIONS(3877), + [anon_sym_DOT_DOT] = ACTIONS(3859), + [anon_sym_and] = ACTIONS(3863), + [anon_sym_or] = ACTIONS(3863), + [anon_sym_AMP_AMP] = ACTIONS(3859), + [anon_sym_PIPE_PIPE] = ACTIONS(3859), + [anon_sym_QMARK_QMARK] = ACTIONS(3859), + [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(3863), + [anon_sym_is] = ACTIONS(3863), + [anon_sym_DASH_GT] = ACTIONS(3859), + [anon_sym_with] = ACTIONS(3863), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -423777,6 +423446,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2448] = { + [sym_parameter_list] = STATE(7531), + [sym_positional_pattern_clause] = STATE(2529), + [sym_property_pattern_clause] = STATE(2560), + [sym__variable_designation] = STATE(3422), + [sym_parenthesized_variable_designation] = STATE(3352), + [sym__lambda_parameters] = STATE(7378), + [sym_identifier] = STATE(3430), + [sym__reserved_identifier] = STATE(3199), [sym_preproc_region] = STATE(2448), [sym_preproc_endregion] = STATE(2448), [sym_preproc_line] = STATE(2448), @@ -423786,76 +423463,67 @@ 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), - [sym__identifier_token] = ACTIONS(4195), - [anon_sym_alias] = ACTIONS(4195), - [anon_sym_SEMI] = ACTIONS(4197), - [anon_sym_global] = ACTIONS(4195), - [anon_sym_LBRACK] = ACTIONS(4197), - [anon_sym_COLON] = ACTIONS(4197), - [anon_sym_COMMA] = ACTIONS(4197), - [anon_sym_RBRACK] = ACTIONS(4197), - [anon_sym_LPAREN] = ACTIONS(4197), - [anon_sym_RPAREN] = ACTIONS(4197), - [anon_sym_RBRACE] = ACTIONS(4197), - [anon_sym_file] = ACTIONS(4195), - [anon_sym_LT] = ACTIONS(4195), - [anon_sym_GT] = ACTIONS(4195), - [anon_sym_in] = ACTIONS(4195), - [anon_sym_where] = ACTIONS(4195), - [anon_sym_QMARK] = ACTIONS(4195), - [anon_sym_notnull] = ACTIONS(4195), - [anon_sym_unmanaged] = ACTIONS(4195), - [anon_sym_BANG] = ACTIONS(4195), - [anon_sym_PLUS_PLUS] = ACTIONS(4197), - [anon_sym_DASH_DASH] = ACTIONS(4197), - [anon_sym_PLUS] = ACTIONS(4195), - [anon_sym_DASH] = ACTIONS(4195), - [anon_sym_STAR] = ACTIONS(4197), - [anon_sym_SLASH] = ACTIONS(4195), - [anon_sym_PERCENT] = ACTIONS(4197), - [anon_sym_CARET] = ACTIONS(4197), - [anon_sym_PIPE] = ACTIONS(4195), - [anon_sym_AMP] = ACTIONS(4195), - [anon_sym_LT_LT] = ACTIONS(4197), - [anon_sym_GT_GT] = ACTIONS(4195), - [anon_sym_GT_GT_GT] = ACTIONS(4197), - [anon_sym_EQ_EQ] = ACTIONS(4197), - [anon_sym_BANG_EQ] = ACTIONS(4197), - [anon_sym_GT_EQ] = ACTIONS(4197), - [anon_sym_LT_EQ] = ACTIONS(4197), - [anon_sym_DOT] = ACTIONS(4195), - [anon_sym_scoped] = ACTIONS(4195), - [anon_sym_EQ_GT] = ACTIONS(4197), - [anon_sym_var] = ACTIONS(4195), - [anon_sym_yield] = ACTIONS(4195), - [anon_sym_switch] = ACTIONS(4195), - [anon_sym_when] = ACTIONS(4195), - [sym_discard] = ACTIONS(4195), - [anon_sym_DOT_DOT] = ACTIONS(4197), - [anon_sym_and] = ACTIONS(4195), - [anon_sym_or] = ACTIONS(4195), - [anon_sym_AMP_AMP] = ACTIONS(4197), - [anon_sym_PIPE_PIPE] = ACTIONS(4197), - [anon_sym_QMARK_QMARK] = ACTIONS(4197), - [anon_sym_from] = ACTIONS(4195), - [anon_sym_into] = ACTIONS(4195), - [anon_sym_join] = ACTIONS(4195), - [anon_sym_on] = ACTIONS(4195), - [anon_sym_equals] = ACTIONS(4195), - [anon_sym_let] = ACTIONS(4195), - [anon_sym_orderby] = ACTIONS(4195), - [anon_sym_ascending] = ACTIONS(4195), - [anon_sym_descending] = ACTIONS(4195), - [anon_sym_group] = ACTIONS(4195), - [anon_sym_by] = ACTIONS(4195), - [anon_sym_select] = ACTIONS(4195), - [anon_sym_as] = ACTIONS(4195), - [anon_sym_is] = ACTIONS(4195), - [anon_sym_DASH_GT] = ACTIONS(4197), - [anon_sym_with] = ACTIONS(4195), - [aux_sym_preproc_if_token3] = ACTIONS(4197), - [aux_sym_preproc_else_token1] = ACTIONS(4197), - [aux_sym_preproc_elif_token1] = ACTIONS(4197), + [sym__identifier_token] = ACTIONS(3855), + [anon_sym_alias] = ACTIONS(3857), + [anon_sym_global] = ACTIONS(3857), + [anon_sym_LBRACK] = ACTIONS(3869), + [anon_sym_COLON] = ACTIONS(3869), + [anon_sym_LPAREN] = ACTIONS(3869), + [anon_sym_LBRACE] = ACTIONS(3861), + [anon_sym_file] = ACTIONS(3857), + [anon_sym_LT] = ACTIONS(3867), + [anon_sym_GT] = ACTIONS(3867), + [anon_sym_where] = ACTIONS(3857), + [anon_sym_QMARK] = ACTIONS(3867), + [anon_sym_notnull] = ACTIONS(3857), + [anon_sym_unmanaged] = ACTIONS(3857), + [anon_sym_BANG] = ACTIONS(3867), + [anon_sym_PLUS_PLUS] = ACTIONS(3869), + [anon_sym_DASH_DASH] = ACTIONS(3869), + [anon_sym_PLUS] = ACTIONS(3867), + [anon_sym_DASH] = ACTIONS(3867), + [anon_sym_STAR] = ACTIONS(3869), + [anon_sym_SLASH] = ACTIONS(3867), + [anon_sym_PERCENT] = ACTIONS(3869), + [anon_sym_CARET] = ACTIONS(3869), + [anon_sym_PIPE] = ACTIONS(3867), + [anon_sym_AMP] = ACTIONS(3867), + [anon_sym_LT_LT] = ACTIONS(3869), + [anon_sym_GT_GT] = ACTIONS(3867), + [anon_sym_GT_GT_GT] = ACTIONS(3869), + [anon_sym_EQ_EQ] = ACTIONS(3869), + [anon_sym_BANG_EQ] = ACTIONS(3869), + [anon_sym_GT_EQ] = ACTIONS(3869), + [anon_sym_LT_EQ] = ACTIONS(3869), + [anon_sym_DOT] = ACTIONS(3867), + [anon_sym_scoped] = ACTIONS(3857), + [anon_sym_var] = ACTIONS(3857), + [anon_sym_yield] = ACTIONS(3857), + [anon_sym_switch] = ACTIONS(3867), + [anon_sym_when] = ACTIONS(3867), + [sym_discard] = ACTIONS(3877), + [anon_sym_DOT_DOT] = ACTIONS(3869), + [anon_sym_and] = ACTIONS(3867), + [anon_sym_or] = ACTIONS(3867), + [anon_sym_AMP_AMP] = ACTIONS(3869), + [anon_sym_PIPE_PIPE] = ACTIONS(3869), + [anon_sym_QMARK_QMARK] = ACTIONS(3869), + [anon_sym_from] = ACTIONS(3857), + [anon_sym_into] = ACTIONS(3857), + [anon_sym_join] = ACTIONS(3857), + [anon_sym_on] = ACTIONS(3857), + [anon_sym_equals] = ACTIONS(3857), + [anon_sym_let] = ACTIONS(3857), + [anon_sym_orderby] = ACTIONS(3857), + [anon_sym_ascending] = ACTIONS(3857), + [anon_sym_descending] = ACTIONS(3857), + [anon_sym_group] = ACTIONS(3857), + [anon_sym_by] = ACTIONS(3857), + [anon_sym_select] = ACTIONS(3857), + [anon_sym_as] = ACTIONS(3867), + [anon_sym_is] = ACTIONS(3867), + [anon_sym_DASH_GT] = ACTIONS(3869), + [anon_sym_with] = ACTIONS(3867), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -423868,6 +423536,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2449] = { + [sym_parameter_list] = STATE(7531), + [sym_positional_pattern_clause] = STATE(2249), + [sym_property_pattern_clause] = STATE(2304), + [sym__variable_designation] = STATE(3347), + [sym_parenthesized_variable_designation] = STATE(3344), + [sym__lambda_parameters] = STATE(7378), + [sym_identifier] = STATE(4862), + [sym__reserved_identifier] = STATE(3199), [sym_preproc_region] = STATE(2449), [sym_preproc_endregion] = STATE(2449), [sym_preproc_line] = STATE(2449), @@ -423877,76 +423553,67 @@ 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(3445), - [anon_sym_EQ] = ACTIONS(3447), - [anon_sym_LBRACK] = ACTIONS(3445), - [anon_sym_COLON] = ACTIONS(3445), - [anon_sym_COMMA] = ACTIONS(3445), - [anon_sym_RBRACK] = ACTIONS(3445), - [anon_sym_LPAREN] = ACTIONS(3445), - [anon_sym_RPAREN] = ACTIONS(3445), - [anon_sym_RBRACE] = ACTIONS(3445), - [anon_sym_LT] = ACTIONS(3447), - [anon_sym_GT] = ACTIONS(3447), - [anon_sym_in] = ACTIONS(3447), - [anon_sym_where] = ACTIONS(3445), - [anon_sym_QMARK] = ACTIONS(3447), - [anon_sym_BANG] = ACTIONS(3447), - [anon_sym_PLUS_PLUS] = ACTIONS(3445), - [anon_sym_DASH_DASH] = ACTIONS(3445), - [anon_sym_PLUS] = ACTIONS(3447), - [anon_sym_DASH] = ACTIONS(3447), - [anon_sym_STAR] = ACTIONS(3447), - [anon_sym_SLASH] = ACTIONS(3447), - [anon_sym_PERCENT] = ACTIONS(3447), - [anon_sym_CARET] = ACTIONS(3447), - [anon_sym_PIPE] = ACTIONS(3447), - [anon_sym_AMP] = ACTIONS(3447), - [anon_sym_LT_LT] = ACTIONS(3447), - [anon_sym_GT_GT] = ACTIONS(3447), - [anon_sym_GT_GT_GT] = ACTIONS(3447), - [anon_sym_EQ_EQ] = ACTIONS(3445), - [anon_sym_BANG_EQ] = ACTIONS(3445), - [anon_sym_GT_EQ] = ACTIONS(3445), - [anon_sym_LT_EQ] = ACTIONS(3445), - [anon_sym_DOT] = ACTIONS(3447), - [anon_sym_EQ_GT] = ACTIONS(3445), - [anon_sym_switch] = ACTIONS(3445), - [anon_sym_DOT_DOT] = ACTIONS(3445), - [anon_sym_and] = ACTIONS(3445), - [anon_sym_or] = ACTIONS(3447), - [anon_sym_PLUS_EQ] = ACTIONS(3445), - [anon_sym_DASH_EQ] = ACTIONS(3445), - [anon_sym_STAR_EQ] = ACTIONS(3445), - [anon_sym_SLASH_EQ] = ACTIONS(3445), - [anon_sym_PERCENT_EQ] = ACTIONS(3445), - [anon_sym_AMP_EQ] = ACTIONS(3445), - [anon_sym_CARET_EQ] = ACTIONS(3445), - [anon_sym_PIPE_EQ] = ACTIONS(3445), - [anon_sym_LT_LT_EQ] = ACTIONS(3445), - [anon_sym_GT_GT_EQ] = ACTIONS(3445), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3445), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3445), - [anon_sym_AMP_AMP] = ACTIONS(3445), - [anon_sym_PIPE_PIPE] = ACTIONS(3445), - [anon_sym_QMARK_QMARK] = ACTIONS(3447), - [anon_sym_from] = ACTIONS(3445), - [anon_sym_into] = ACTIONS(3445), - [anon_sym_join] = ACTIONS(3445), - [anon_sym_on] = ACTIONS(3445), - [anon_sym_equals] = ACTIONS(3445), - [anon_sym_let] = ACTIONS(3445), - [anon_sym_orderby] = ACTIONS(3445), - [anon_sym_group] = ACTIONS(3445), - [anon_sym_by] = ACTIONS(3445), - [anon_sym_select] = ACTIONS(3445), - [anon_sym_as] = ACTIONS(3445), - [anon_sym_is] = ACTIONS(3445), - [anon_sym_DASH_GT] = ACTIONS(3445), - [anon_sym_with] = ACTIONS(3445), - [aux_sym_preproc_if_token3] = ACTIONS(3445), - [aux_sym_preproc_else_token1] = ACTIONS(3445), - [aux_sym_preproc_elif_token1] = ACTIONS(3445), + [sym__identifier_token] = ACTIONS(3855), + [anon_sym_alias] = ACTIONS(3857), + [anon_sym_global] = ACTIONS(3857), + [anon_sym_LBRACK] = ACTIONS(3859), + [anon_sym_LPAREN] = ACTIONS(3859), + [anon_sym_LBRACE] = ACTIONS(3861), + [anon_sym_file] = ACTIONS(3857), + [anon_sym_LT] = ACTIONS(3863), + [anon_sym_GT] = ACTIONS(3863), + [anon_sym_where] = ACTIONS(3857), + [anon_sym_QMARK] = ACTIONS(3863), + [anon_sym_notnull] = ACTIONS(3857), + [anon_sym_unmanaged] = ACTIONS(3857), + [anon_sym_BANG] = ACTIONS(3863), + [anon_sym_PLUS_PLUS] = ACTIONS(3859), + [anon_sym_DASH_DASH] = ACTIONS(3859), + [anon_sym_PLUS] = ACTIONS(3863), + [anon_sym_DASH] = ACTIONS(3863), + [anon_sym_STAR] = ACTIONS(3859), + [anon_sym_SLASH] = ACTIONS(3863), + [anon_sym_PERCENT] = ACTIONS(3859), + [anon_sym_CARET] = ACTIONS(3859), + [anon_sym_PIPE] = ACTIONS(3863), + [anon_sym_AMP] = ACTIONS(3863), + [anon_sym_LT_LT] = ACTIONS(3859), + [anon_sym_GT_GT] = ACTIONS(3863), + [anon_sym_GT_GT_GT] = ACTIONS(3859), + [anon_sym_EQ_EQ] = ACTIONS(3859), + [anon_sym_BANG_EQ] = ACTIONS(3859), + [anon_sym_GT_EQ] = ACTIONS(3859), + [anon_sym_LT_EQ] = ACTIONS(3859), + [anon_sym_DOT] = ACTIONS(3863), + [anon_sym_scoped] = ACTIONS(3857), + [anon_sym_EQ_GT] = ACTIONS(3859), + [anon_sym_var] = ACTIONS(3857), + [anon_sym_yield] = ACTIONS(3857), + [anon_sym_switch] = ACTIONS(3863), + [anon_sym_when] = ACTIONS(3857), + [sym_discard] = ACTIONS(3865), + [anon_sym_DOT_DOT] = ACTIONS(3859), + [anon_sym_and] = ACTIONS(3863), + [anon_sym_or] = ACTIONS(3863), + [anon_sym_AMP_AMP] = ACTIONS(3859), + [anon_sym_PIPE_PIPE] = ACTIONS(3859), + [anon_sym_QMARK_QMARK] = ACTIONS(3859), + [anon_sym_from] = ACTIONS(3857), + [anon_sym_into] = ACTIONS(3863), + [anon_sym_join] = ACTIONS(3857), + [anon_sym_on] = ACTIONS(3857), + [anon_sym_equals] = ACTIONS(3857), + [anon_sym_let] = ACTIONS(3857), + [anon_sym_orderby] = ACTIONS(3857), + [anon_sym_ascending] = ACTIONS(3857), + [anon_sym_descending] = ACTIONS(3857), + [anon_sym_group] = ACTIONS(3857), + [anon_sym_by] = ACTIONS(3857), + [anon_sym_select] = ACTIONS(3857), + [anon_sym_as] = ACTIONS(3863), + [anon_sym_is] = ACTIONS(3863), + [anon_sym_DASH_GT] = ACTIONS(3859), + [anon_sym_with] = ACTIONS(3863), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -423959,6 +423626,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2450] = { + [sym_parameter_list] = STATE(7531), + [sym_positional_pattern_clause] = STATE(2527), + [sym_property_pattern_clause] = STATE(2574), + [sym__variable_designation] = STATE(3347), + [sym_parenthesized_variable_designation] = STATE(3344), + [sym__lambda_parameters] = STATE(7378), + [sym_identifier] = STATE(3309), + [sym__reserved_identifier] = STATE(3199), [sym_preproc_region] = STATE(2450), [sym_preproc_endregion] = STATE(2450), [sym_preproc_line] = STATE(2450), @@ -423968,76 +423643,67 @@ 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(4199), - [anon_sym_EQ] = ACTIONS(4201), - [anon_sym_LBRACK] = ACTIONS(4199), - [anon_sym_COLON] = ACTIONS(4199), - [anon_sym_COMMA] = ACTIONS(4199), - [anon_sym_RBRACK] = ACTIONS(4199), - [anon_sym_LPAREN] = ACTIONS(4199), - [anon_sym_RPAREN] = ACTIONS(4199), - [anon_sym_RBRACE] = ACTIONS(4199), - [anon_sym_LT] = ACTIONS(4201), - [anon_sym_GT] = ACTIONS(4201), - [anon_sym_in] = ACTIONS(4201), - [anon_sym_where] = ACTIONS(4199), - [anon_sym_QMARK] = ACTIONS(4201), - [anon_sym_BANG] = ACTIONS(4201), - [anon_sym_PLUS_PLUS] = ACTIONS(4199), - [anon_sym_DASH_DASH] = ACTIONS(4199), - [anon_sym_PLUS] = ACTIONS(4201), - [anon_sym_DASH] = ACTIONS(4201), - [anon_sym_STAR] = ACTIONS(4201), - [anon_sym_SLASH] = ACTIONS(4201), - [anon_sym_PERCENT] = ACTIONS(4201), - [anon_sym_CARET] = ACTIONS(4201), - [anon_sym_PIPE] = ACTIONS(4201), - [anon_sym_AMP] = ACTIONS(4201), - [anon_sym_LT_LT] = ACTIONS(4201), - [anon_sym_GT_GT] = ACTIONS(4201), - [anon_sym_GT_GT_GT] = ACTIONS(4201), - [anon_sym_EQ_EQ] = ACTIONS(4199), - [anon_sym_BANG_EQ] = ACTIONS(4199), - [anon_sym_GT_EQ] = ACTIONS(4199), - [anon_sym_LT_EQ] = ACTIONS(4199), - [anon_sym_DOT] = ACTIONS(4201), - [anon_sym_EQ_GT] = ACTIONS(4199), - [anon_sym_switch] = ACTIONS(4199), - [anon_sym_DOT_DOT] = ACTIONS(4199), - [anon_sym_and] = ACTIONS(4199), - [anon_sym_or] = ACTIONS(4201), - [anon_sym_PLUS_EQ] = ACTIONS(4199), - [anon_sym_DASH_EQ] = ACTIONS(4199), - [anon_sym_STAR_EQ] = ACTIONS(4199), - [anon_sym_SLASH_EQ] = ACTIONS(4199), - [anon_sym_PERCENT_EQ] = ACTIONS(4199), - [anon_sym_AMP_EQ] = ACTIONS(4199), - [anon_sym_CARET_EQ] = ACTIONS(4199), - [anon_sym_PIPE_EQ] = ACTIONS(4199), - [anon_sym_LT_LT_EQ] = ACTIONS(4199), - [anon_sym_GT_GT_EQ] = ACTIONS(4199), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(4199), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(4199), - [anon_sym_AMP_AMP] = ACTIONS(4199), - [anon_sym_PIPE_PIPE] = ACTIONS(4199), - [anon_sym_QMARK_QMARK] = ACTIONS(4201), - [anon_sym_from] = ACTIONS(4199), - [anon_sym_into] = ACTIONS(4199), - [anon_sym_join] = ACTIONS(4199), - [anon_sym_on] = ACTIONS(4199), - [anon_sym_equals] = ACTIONS(4199), - [anon_sym_let] = ACTIONS(4199), - [anon_sym_orderby] = ACTIONS(4199), - [anon_sym_group] = ACTIONS(4199), - [anon_sym_by] = ACTIONS(4199), - [anon_sym_select] = ACTIONS(4199), - [anon_sym_as] = ACTIONS(4199), - [anon_sym_is] = ACTIONS(4199), - [anon_sym_DASH_GT] = ACTIONS(4199), - [anon_sym_with] = ACTIONS(4199), - [aux_sym_preproc_if_token3] = ACTIONS(4199), - [aux_sym_preproc_else_token1] = ACTIONS(4199), - [aux_sym_preproc_elif_token1] = ACTIONS(4199), + [sym__identifier_token] = ACTIONS(3855), + [anon_sym_alias] = ACTIONS(3857), + [anon_sym_global] = ACTIONS(3857), + [anon_sym_LBRACK] = ACTIONS(3869), + [anon_sym_COLON] = ACTIONS(3869), + [anon_sym_LPAREN] = ACTIONS(3869), + [anon_sym_LBRACE] = ACTIONS(3861), + [anon_sym_file] = ACTIONS(3857), + [anon_sym_LT] = ACTIONS(3867), + [anon_sym_GT] = ACTIONS(3867), + [anon_sym_where] = ACTIONS(3857), + [anon_sym_QMARK] = ACTIONS(3867), + [anon_sym_notnull] = ACTIONS(3857), + [anon_sym_unmanaged] = ACTIONS(3857), + [anon_sym_BANG] = ACTIONS(3867), + [anon_sym_PLUS_PLUS] = ACTIONS(3869), + [anon_sym_DASH_DASH] = ACTIONS(3869), + [anon_sym_PLUS] = ACTIONS(3867), + [anon_sym_DASH] = ACTIONS(3867), + [anon_sym_STAR] = ACTIONS(3869), + [anon_sym_SLASH] = ACTIONS(3867), + [anon_sym_PERCENT] = ACTIONS(3869), + [anon_sym_CARET] = ACTIONS(3869), + [anon_sym_PIPE] = ACTIONS(3867), + [anon_sym_AMP] = ACTIONS(3867), + [anon_sym_LT_LT] = ACTIONS(3869), + [anon_sym_GT_GT] = ACTIONS(3867), + [anon_sym_GT_GT_GT] = ACTIONS(3869), + [anon_sym_EQ_EQ] = ACTIONS(3869), + [anon_sym_BANG_EQ] = ACTIONS(3869), + [anon_sym_GT_EQ] = ACTIONS(3869), + [anon_sym_LT_EQ] = ACTIONS(3869), + [anon_sym_DOT] = ACTIONS(3867), + [anon_sym_scoped] = ACTIONS(3857), + [anon_sym_var] = ACTIONS(3857), + [anon_sym_yield] = ACTIONS(3857), + [anon_sym_switch] = ACTIONS(3867), + [anon_sym_when] = ACTIONS(3867), + [sym_discard] = ACTIONS(3865), + [anon_sym_DOT_DOT] = ACTIONS(3869), + [anon_sym_and] = ACTIONS(3867), + [anon_sym_or] = ACTIONS(3867), + [anon_sym_AMP_AMP] = ACTIONS(3869), + [anon_sym_PIPE_PIPE] = ACTIONS(3869), + [anon_sym_QMARK_QMARK] = ACTIONS(3869), + [anon_sym_from] = ACTIONS(3857), + [anon_sym_into] = ACTIONS(3867), + [anon_sym_join] = ACTIONS(3857), + [anon_sym_on] = ACTIONS(3857), + [anon_sym_equals] = ACTIONS(3857), + [anon_sym_let] = ACTIONS(3857), + [anon_sym_orderby] = ACTIONS(3857), + [anon_sym_ascending] = ACTIONS(3857), + [anon_sym_descending] = ACTIONS(3857), + [anon_sym_group] = ACTIONS(3857), + [anon_sym_by] = ACTIONS(3857), + [anon_sym_select] = ACTIONS(3857), + [anon_sym_as] = ACTIONS(3867), + [anon_sym_is] = ACTIONS(3867), + [anon_sym_DASH_GT] = ACTIONS(3869), + [anon_sym_with] = ACTIONS(3867), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -424050,15 +423716,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2451] = { - [sym__name] = STATE(4110), - [sym_alias_qualified_name] = STATE(2921), - [sym__simple_name] = STATE(2921), - [sym_qualified_name] = STATE(2921), - [sym_generic_name] = STATE(2929), - [sym_ref_type] = STATE(2922), - [sym__scoped_base_type] = STATE(2924), - [sym_identifier] = STATE(3844), - [sym__reserved_identifier] = STATE(2904), + [sym_parameter_list] = STATE(7531), + [sym_positional_pattern_clause] = STATE(2527), + [sym_property_pattern_clause] = STATE(2574), + [sym__variable_designation] = STATE(3347), + [sym_parenthesized_variable_designation] = STATE(3344), + [sym__lambda_parameters] = STATE(7378), + [sym_identifier] = STATE(3309), + [sym__reserved_identifier] = STATE(3199), [sym_preproc_region] = STATE(2451), [sym_preproc_endregion] = STATE(2451), [sym_preproc_line] = STATE(2451), @@ -424068,67 +423733,67 @@ 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(3861), - [anon_sym_alias] = ACTIONS(3863), - [anon_sym_global] = ACTIONS(3863), - [anon_sym_LBRACK] = ACTIONS(3445), - [anon_sym_LPAREN] = ACTIONS(3445), - [anon_sym_ref] = ACTIONS(4203), - [anon_sym_LBRACE] = ACTIONS(3445), - [anon_sym_file] = ACTIONS(3863), - [anon_sym_LT] = ACTIONS(3447), - [anon_sym_GT] = ACTIONS(3447), - [anon_sym_where] = ACTIONS(3867), - [anon_sym_QMARK] = ACTIONS(3447), - [anon_sym_notnull] = ACTIONS(3863), - [anon_sym_unmanaged] = ACTIONS(3863), - [anon_sym_BANG] = ACTIONS(3447), - [anon_sym_PLUS_PLUS] = ACTIONS(3445), - [anon_sym_DASH_DASH] = ACTIONS(3445), - [anon_sym_PLUS] = ACTIONS(3447), - [anon_sym_DASH] = ACTIONS(3447), - [anon_sym_STAR] = ACTIONS(3445), - [anon_sym_SLASH] = ACTIONS(3447), - [anon_sym_PERCENT] = ACTIONS(3445), - [anon_sym_CARET] = ACTIONS(3445), - [anon_sym_PIPE] = ACTIONS(3447), - [anon_sym_AMP] = ACTIONS(3447), - [anon_sym_LT_LT] = ACTIONS(3445), - [anon_sym_GT_GT] = ACTIONS(3447), - [anon_sym_GT_GT_GT] = ACTIONS(3445), - [anon_sym_EQ_EQ] = ACTIONS(3445), - [anon_sym_BANG_EQ] = ACTIONS(3445), - [anon_sym_GT_EQ] = ACTIONS(3445), - [anon_sym_LT_EQ] = ACTIONS(3445), - [anon_sym_DOT] = ACTIONS(3447), - [anon_sym_scoped] = ACTIONS(3863), - [anon_sym_COLON_COLON] = ACTIONS(3445), - [anon_sym_var] = ACTIONS(3863), - [anon_sym_yield] = ACTIONS(3863), - [anon_sym_switch] = ACTIONS(3447), + [sym__identifier_token] = ACTIONS(3855), + [anon_sym_alias] = ACTIONS(3857), + [anon_sym_global] = ACTIONS(3857), + [anon_sym_LBRACK] = ACTIONS(3859), + [anon_sym_COLON] = ACTIONS(3859), + [anon_sym_LPAREN] = ACTIONS(3859), + [anon_sym_LBRACE] = ACTIONS(3861), + [anon_sym_file] = ACTIONS(3857), + [anon_sym_LT] = ACTIONS(3863), + [anon_sym_GT] = ACTIONS(3863), + [anon_sym_where] = ACTIONS(3857), + [anon_sym_QMARK] = ACTIONS(3863), + [anon_sym_notnull] = ACTIONS(3857), + [anon_sym_unmanaged] = ACTIONS(3857), + [anon_sym_BANG] = ACTIONS(3863), + [anon_sym_PLUS_PLUS] = ACTIONS(3859), + [anon_sym_DASH_DASH] = ACTIONS(3859), + [anon_sym_PLUS] = ACTIONS(3863), + [anon_sym_DASH] = ACTIONS(3863), + [anon_sym_STAR] = ACTIONS(3859), + [anon_sym_SLASH] = ACTIONS(3863), + [anon_sym_PERCENT] = ACTIONS(3859), + [anon_sym_CARET] = ACTIONS(3859), + [anon_sym_PIPE] = ACTIONS(3863), + [anon_sym_AMP] = ACTIONS(3863), + [anon_sym_LT_LT] = ACTIONS(3859), + [anon_sym_GT_GT] = ACTIONS(3863), + [anon_sym_GT_GT_GT] = ACTIONS(3859), + [anon_sym_EQ_EQ] = ACTIONS(3859), + [anon_sym_BANG_EQ] = ACTIONS(3859), + [anon_sym_GT_EQ] = ACTIONS(3859), + [anon_sym_LT_EQ] = ACTIONS(3859), + [anon_sym_DOT] = ACTIONS(3863), + [anon_sym_scoped] = ACTIONS(3857), + [anon_sym_var] = ACTIONS(3857), + [anon_sym_yield] = ACTIONS(3857), + [anon_sym_switch] = ACTIONS(3863), [anon_sym_when] = ACTIONS(3863), - [anon_sym_DOT_DOT] = ACTIONS(3445), - [anon_sym_and] = ACTIONS(3447), - [anon_sym_or] = ACTIONS(3447), - [anon_sym_AMP_AMP] = ACTIONS(3445), - [anon_sym_PIPE_PIPE] = ACTIONS(3445), - [anon_sym_QMARK_QMARK] = ACTIONS(3445), - [anon_sym_from] = ACTIONS(3867), - [anon_sym_into] = ACTIONS(3867), - [anon_sym_join] = ACTIONS(3867), - [anon_sym_on] = ACTIONS(3863), - [anon_sym_equals] = ACTIONS(3863), - [anon_sym_let] = ACTIONS(3867), - [anon_sym_orderby] = ACTIONS(3867), - [anon_sym_ascending] = ACTIONS(3863), - [anon_sym_descending] = ACTIONS(3863), - [anon_sym_group] = ACTIONS(3867), - [anon_sym_by] = ACTIONS(3863), - [anon_sym_select] = ACTIONS(3867), - [anon_sym_as] = ACTIONS(3447), - [anon_sym_is] = ACTIONS(3447), - [anon_sym_DASH_GT] = ACTIONS(3445), - [anon_sym_with] = ACTIONS(3447), + [sym_discard] = ACTIONS(3865), + [anon_sym_DOT_DOT] = ACTIONS(3859), + [anon_sym_and] = ACTIONS(3863), + [anon_sym_or] = ACTIONS(3863), + [anon_sym_AMP_AMP] = ACTIONS(3859), + [anon_sym_PIPE_PIPE] = ACTIONS(3859), + [anon_sym_QMARK_QMARK] = ACTIONS(3859), + [anon_sym_from] = ACTIONS(3857), + [anon_sym_into] = ACTIONS(3863), + [anon_sym_join] = ACTIONS(3857), + [anon_sym_on] = ACTIONS(3857), + [anon_sym_equals] = ACTIONS(3857), + [anon_sym_let] = ACTIONS(3857), + [anon_sym_orderby] = ACTIONS(3857), + [anon_sym_ascending] = ACTIONS(3857), + [anon_sym_descending] = ACTIONS(3857), + [anon_sym_group] = ACTIONS(3857), + [anon_sym_by] = ACTIONS(3857), + [anon_sym_select] = ACTIONS(3857), + [anon_sym_as] = ACTIONS(3863), + [anon_sym_is] = ACTIONS(3863), + [anon_sym_DASH_GT] = ACTIONS(3859), + [anon_sym_with] = ACTIONS(3863), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -424141,6 +423806,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2452] = { + [sym_parameter_list] = STATE(7531), + [sym_positional_pattern_clause] = STATE(2546), + [sym_property_pattern_clause] = STATE(2599), + [sym__variable_designation] = STATE(3693), + [sym_parenthesized_variable_designation] = STATE(3688), + [sym__lambda_parameters] = STATE(7378), + [sym_identifier] = STATE(3657), + [sym__reserved_identifier] = STATE(2354), [sym_preproc_region] = STATE(2452), [sym_preproc_endregion] = STATE(2452), [sym_preproc_line] = STATE(2452), @@ -424150,76 +423823,67 @@ 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), - [sym__identifier_token] = ACTIONS(4016), - [anon_sym_alias] = ACTIONS(4016), - [anon_sym_SEMI] = ACTIONS(4018), - [anon_sym_global] = ACTIONS(4016), - [anon_sym_LBRACK] = ACTIONS(4066), - [anon_sym_COMMA] = ACTIONS(4018), - [anon_sym_RBRACK] = ACTIONS(4018), - [anon_sym_LPAREN] = ACTIONS(4018), - [anon_sym_RPAREN] = ACTIONS(4018), - [anon_sym_LBRACE] = ACTIONS(4018), - [anon_sym_RBRACE] = ACTIONS(4018), - [anon_sym_file] = ACTIONS(4016), - [anon_sym_LT] = ACTIONS(4016), - [anon_sym_GT] = ACTIONS(4016), - [anon_sym_in] = ACTIONS(4016), - [anon_sym_where] = ACTIONS(4016), - [anon_sym_QMARK] = ACTIONS(4069), - [anon_sym_notnull] = ACTIONS(4016), - [anon_sym_unmanaged] = ACTIONS(4016), - [anon_sym_BANG] = ACTIONS(4016), - [anon_sym_PLUS_PLUS] = ACTIONS(4018), - [anon_sym_DASH_DASH] = ACTIONS(4018), - [anon_sym_PLUS] = ACTIONS(4016), - [anon_sym_DASH] = ACTIONS(4016), - [anon_sym_STAR] = ACTIONS(4072), - [anon_sym_SLASH] = ACTIONS(4016), - [anon_sym_PERCENT] = ACTIONS(4018), - [anon_sym_CARET] = ACTIONS(4018), - [anon_sym_PIPE] = ACTIONS(4016), - [anon_sym_AMP] = ACTIONS(4016), - [anon_sym_LT_LT] = ACTIONS(4018), - [anon_sym_GT_GT] = ACTIONS(4016), - [anon_sym_GT_GT_GT] = ACTIONS(4018), - [anon_sym_EQ_EQ] = ACTIONS(4018), - [anon_sym_BANG_EQ] = ACTIONS(4018), - [anon_sym_GT_EQ] = ACTIONS(4018), - [anon_sym_LT_EQ] = ACTIONS(4018), - [anon_sym_DOT] = ACTIONS(4205), - [anon_sym_scoped] = ACTIONS(4016), - [anon_sym_EQ_GT] = ACTIONS(4018), - [anon_sym_var] = ACTIONS(4016), - [anon_sym_yield] = ACTIONS(4016), - [anon_sym_switch] = ACTIONS(4016), - [anon_sym_when] = ACTIONS(4016), - [sym_discard] = ACTIONS(4016), - [anon_sym_DOT_DOT] = ACTIONS(4018), - [anon_sym_and] = ACTIONS(4016), - [anon_sym_or] = ACTIONS(4016), - [anon_sym_AMP_AMP] = ACTIONS(4018), - [anon_sym_PIPE_PIPE] = ACTIONS(4018), - [anon_sym_QMARK_QMARK] = ACTIONS(4018), - [anon_sym_from] = ACTIONS(4016), - [anon_sym_into] = ACTIONS(4016), - [anon_sym_join] = ACTIONS(4016), - [anon_sym_on] = ACTIONS(4016), - [anon_sym_equals] = ACTIONS(4016), - [anon_sym_let] = ACTIONS(4016), - [anon_sym_orderby] = ACTIONS(4016), - [anon_sym_ascending] = ACTIONS(4016), - [anon_sym_descending] = ACTIONS(4016), - [anon_sym_group] = ACTIONS(4016), - [anon_sym_by] = ACTIONS(4016), - [anon_sym_select] = ACTIONS(4016), - [anon_sym_as] = ACTIONS(4016), - [anon_sym_is] = ACTIONS(4016), - [anon_sym_DASH_GT] = ACTIONS(4102), - [anon_sym_with] = ACTIONS(4016), - [aux_sym_preproc_if_token3] = ACTIONS(4018), - [aux_sym_preproc_else_token1] = ACTIONS(4018), - [aux_sym_preproc_elif_token1] = ACTIONS(4018), + [sym__identifier_token] = ACTIONS(4080), + [anon_sym_alias] = ACTIONS(4082), + [anon_sym_global] = ACTIONS(4082), + [anon_sym_LBRACK] = ACTIONS(3869), + [anon_sym_COMMA] = ACTIONS(3869), + [anon_sym_LPAREN] = ACTIONS(3869), + [anon_sym_LBRACE] = ACTIONS(3861), + [anon_sym_file] = ACTIONS(4082), + [anon_sym_LT] = ACTIONS(3867), + [anon_sym_GT] = ACTIONS(3867), + [anon_sym_where] = ACTIONS(3867), + [anon_sym_QMARK] = ACTIONS(3867), + [anon_sym_notnull] = ACTIONS(4082), + [anon_sym_unmanaged] = ACTIONS(4082), + [anon_sym_BANG] = ACTIONS(3867), + [anon_sym_PLUS_PLUS] = ACTIONS(3869), + [anon_sym_DASH_DASH] = ACTIONS(3869), + [anon_sym_PLUS] = ACTIONS(3867), + [anon_sym_DASH] = ACTIONS(3867), + [anon_sym_STAR] = ACTIONS(3869), + [anon_sym_SLASH] = ACTIONS(3867), + [anon_sym_PERCENT] = ACTIONS(3869), + [anon_sym_CARET] = ACTIONS(3869), + [anon_sym_PIPE] = ACTIONS(3867), + [anon_sym_AMP] = ACTIONS(3867), + [anon_sym_LT_LT] = ACTIONS(3869), + [anon_sym_GT_GT] = ACTIONS(3867), + [anon_sym_GT_GT_GT] = ACTIONS(3869), + [anon_sym_EQ_EQ] = ACTIONS(3869), + [anon_sym_BANG_EQ] = ACTIONS(3869), + [anon_sym_GT_EQ] = ACTIONS(3869), + [anon_sym_LT_EQ] = ACTIONS(3869), + [anon_sym_DOT] = ACTIONS(3867), + [anon_sym_scoped] = ACTIONS(4082), + [anon_sym_var] = ACTIONS(4082), + [anon_sym_yield] = ACTIONS(4082), + [anon_sym_switch] = ACTIONS(3867), + [anon_sym_when] = ACTIONS(4082), + [sym_discard] = ACTIONS(4183), + [anon_sym_DOT_DOT] = ACTIONS(3869), + [anon_sym_and] = ACTIONS(3867), + [anon_sym_or] = ACTIONS(3867), + [anon_sym_AMP_AMP] = ACTIONS(3869), + [anon_sym_PIPE_PIPE] = ACTIONS(3869), + [anon_sym_QMARK_QMARK] = ACTIONS(3869), + [anon_sym_from] = ACTIONS(3867), + [anon_sym_into] = ACTIONS(4082), + [anon_sym_join] = ACTIONS(3867), + [anon_sym_on] = ACTIONS(4082), + [anon_sym_equals] = ACTIONS(4082), + [anon_sym_let] = ACTIONS(3867), + [anon_sym_orderby] = ACTIONS(3867), + [anon_sym_ascending] = ACTIONS(3867), + [anon_sym_descending] = ACTIONS(3867), + [anon_sym_group] = ACTIONS(3867), + [anon_sym_by] = ACTIONS(4082), + [anon_sym_select] = ACTIONS(3867), + [anon_sym_as] = ACTIONS(3867), + [anon_sym_is] = ACTIONS(3867), + [anon_sym_DASH_GT] = ACTIONS(3869), + [anon_sym_with] = ACTIONS(3867), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -424241,76 +423905,75 @@ 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), - [anon_sym_SEMI] = ACTIONS(3652), - [anon_sym_EQ] = ACTIONS(3650), - [anon_sym_LBRACK] = ACTIONS(3652), - [anon_sym_COLON] = ACTIONS(3652), - [anon_sym_COMMA] = ACTIONS(3652), - [anon_sym_RBRACK] = ACTIONS(3652), - [anon_sym_LPAREN] = ACTIONS(3652), - [anon_sym_RPAREN] = ACTIONS(3652), - [anon_sym_RBRACE] = ACTIONS(3652), - [anon_sym_LT] = ACTIONS(3650), - [anon_sym_GT] = ACTIONS(3650), - [anon_sym_in] = ACTIONS(3650), - [anon_sym_where] = ACTIONS(3652), - [anon_sym_QMARK] = ACTIONS(3650), - [anon_sym_BANG] = ACTIONS(3650), - [anon_sym_PLUS_PLUS] = ACTIONS(3652), - [anon_sym_DASH_DASH] = ACTIONS(3652), - [anon_sym_PLUS] = ACTIONS(3650), - [anon_sym_DASH] = ACTIONS(3650), - [anon_sym_STAR] = ACTIONS(3650), - [anon_sym_SLASH] = ACTIONS(3650), - [anon_sym_PERCENT] = ACTIONS(3650), - [anon_sym_CARET] = ACTIONS(3650), - [anon_sym_PIPE] = ACTIONS(3650), - [anon_sym_AMP] = ACTIONS(3650), - [anon_sym_LT_LT] = ACTIONS(3650), - [anon_sym_GT_GT] = ACTIONS(3650), - [anon_sym_GT_GT_GT] = ACTIONS(3650), - [anon_sym_EQ_EQ] = ACTIONS(3652), - [anon_sym_BANG_EQ] = ACTIONS(3652), - [anon_sym_GT_EQ] = ACTIONS(3652), - [anon_sym_LT_EQ] = ACTIONS(3652), - [anon_sym_DOT] = ACTIONS(3650), - [anon_sym_EQ_GT] = ACTIONS(3652), - [anon_sym_switch] = ACTIONS(3652), - [anon_sym_DOT_DOT] = ACTIONS(3652), - [anon_sym_and] = ACTIONS(3652), - [anon_sym_or] = ACTIONS(3650), - [anon_sym_PLUS_EQ] = ACTIONS(3652), - [anon_sym_DASH_EQ] = ACTIONS(3652), - [anon_sym_STAR_EQ] = ACTIONS(3652), - [anon_sym_SLASH_EQ] = ACTIONS(3652), - [anon_sym_PERCENT_EQ] = ACTIONS(3652), - [anon_sym_AMP_EQ] = ACTIONS(3652), - [anon_sym_CARET_EQ] = ACTIONS(3652), - [anon_sym_PIPE_EQ] = ACTIONS(3652), - [anon_sym_LT_LT_EQ] = ACTIONS(3652), - [anon_sym_GT_GT_EQ] = ACTIONS(3652), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3652), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3652), - [anon_sym_AMP_AMP] = ACTIONS(3652), - [anon_sym_PIPE_PIPE] = ACTIONS(3652), - [anon_sym_QMARK_QMARK] = ACTIONS(3650), - [anon_sym_from] = ACTIONS(3652), - [anon_sym_into] = ACTIONS(3652), - [anon_sym_join] = ACTIONS(3652), - [anon_sym_on] = ACTIONS(3652), - [anon_sym_equals] = ACTIONS(3652), - [anon_sym_let] = ACTIONS(3652), - [anon_sym_orderby] = ACTIONS(3652), - [anon_sym_group] = ACTIONS(3652), - [anon_sym_by] = ACTIONS(3652), - [anon_sym_select] = ACTIONS(3652), - [anon_sym_as] = ACTIONS(3652), - [anon_sym_is] = ACTIONS(3652), - [anon_sym_DASH_GT] = ACTIONS(3652), - [anon_sym_with] = ACTIONS(3652), - [aux_sym_preproc_if_token3] = ACTIONS(3652), - [aux_sym_preproc_else_token1] = ACTIONS(3652), - [aux_sym_preproc_elif_token1] = ACTIONS(3652), + [anon_sym_SEMI] = ACTIONS(4132), + [anon_sym_EQ] = ACTIONS(4134), + [anon_sym_LBRACK] = ACTIONS(4132), + [anon_sym_COLON] = ACTIONS(4132), + [anon_sym_COMMA] = ACTIONS(4132), + [anon_sym_RBRACK] = ACTIONS(4132), + [anon_sym_LPAREN] = ACTIONS(4132), + [anon_sym_RPAREN] = ACTIONS(4132), + [anon_sym_RBRACE] = ACTIONS(4132), + [anon_sym_LT] = ACTIONS(4134), + [anon_sym_GT] = ACTIONS(4134), + [anon_sym_in] = ACTIONS(4132), + [anon_sym_where] = ACTIONS(4132), + [anon_sym_QMARK] = ACTIONS(4134), + [anon_sym_BANG] = ACTIONS(4134), + [anon_sym_PLUS_PLUS] = ACTIONS(4132), + [anon_sym_DASH_DASH] = ACTIONS(4132), + [anon_sym_PLUS] = ACTIONS(4134), + [anon_sym_DASH] = ACTIONS(4134), + [anon_sym_STAR] = ACTIONS(4134), + [anon_sym_SLASH] = ACTIONS(4134), + [anon_sym_PERCENT] = ACTIONS(4134), + [anon_sym_CARET] = ACTIONS(4134), + [anon_sym_PIPE] = ACTIONS(4134), + [anon_sym_AMP] = ACTIONS(4134), + [anon_sym_LT_LT] = ACTIONS(4134), + [anon_sym_GT_GT] = ACTIONS(4134), + [anon_sym_GT_GT_GT] = ACTIONS(4134), + [anon_sym_EQ_EQ] = ACTIONS(4132), + [anon_sym_BANG_EQ] = ACTIONS(4132), + [anon_sym_GT_EQ] = ACTIONS(4132), + [anon_sym_LT_EQ] = ACTIONS(4132), + [anon_sym_DOT] = ACTIONS(4134), + [anon_sym_EQ_GT] = ACTIONS(4132), + [anon_sym_switch] = ACTIONS(4132), + [anon_sym_DOT_DOT] = ACTIONS(4132), + [anon_sym_and] = ACTIONS(4132), + [anon_sym_or] = ACTIONS(4134), + [anon_sym_PLUS_EQ] = ACTIONS(4132), + [anon_sym_DASH_EQ] = ACTIONS(4132), + [anon_sym_STAR_EQ] = ACTIONS(4132), + [anon_sym_SLASH_EQ] = ACTIONS(4132), + [anon_sym_PERCENT_EQ] = ACTIONS(4132), + [anon_sym_AMP_EQ] = ACTIONS(4132), + [anon_sym_CARET_EQ] = ACTIONS(4132), + [anon_sym_PIPE_EQ] = ACTIONS(4132), + [anon_sym_LT_LT_EQ] = ACTIONS(4132), + [anon_sym_GT_GT_EQ] = ACTIONS(4132), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(4132), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(4132), + [anon_sym_AMP_AMP] = ACTIONS(4132), + [anon_sym_PIPE_PIPE] = ACTIONS(4132), + [anon_sym_QMARK_QMARK] = ACTIONS(4134), + [anon_sym_from] = ACTIONS(4132), + [anon_sym_join] = ACTIONS(4132), + [anon_sym_on] = ACTIONS(4132), + [anon_sym_equals] = ACTIONS(4132), + [anon_sym_let] = ACTIONS(4132), + [anon_sym_orderby] = ACTIONS(4132), + [anon_sym_group] = ACTIONS(4132), + [anon_sym_by] = ACTIONS(4132), + [anon_sym_select] = ACTIONS(4132), + [anon_sym_as] = ACTIONS(4132), + [anon_sym_is] = ACTIONS(4132), + [anon_sym_DASH_GT] = ACTIONS(4132), + [anon_sym_with] = ACTIONS(4132), + [aux_sym_preproc_if_token3] = ACTIONS(4132), + [aux_sym_preproc_else_token1] = ACTIONS(4132), + [aux_sym_preproc_elif_token1] = ACTIONS(4132), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -424332,76 +423995,75 @@ 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), - [anon_sym_SEMI] = ACTIONS(3673), - [anon_sym_EQ] = ACTIONS(3671), - [anon_sym_LBRACK] = ACTIONS(3673), - [anon_sym_COLON] = ACTIONS(3673), - [anon_sym_COMMA] = ACTIONS(3673), - [anon_sym_RBRACK] = ACTIONS(3673), - [anon_sym_LPAREN] = ACTIONS(3673), - [anon_sym_RPAREN] = ACTIONS(3673), - [anon_sym_RBRACE] = ACTIONS(3673), - [anon_sym_LT] = ACTIONS(3671), - [anon_sym_GT] = ACTIONS(3671), - [anon_sym_in] = ACTIONS(3671), - [anon_sym_where] = ACTIONS(3673), - [anon_sym_QMARK] = ACTIONS(3671), - [anon_sym_BANG] = ACTIONS(3671), - [anon_sym_PLUS_PLUS] = ACTIONS(3673), - [anon_sym_DASH_DASH] = ACTIONS(3673), - [anon_sym_PLUS] = ACTIONS(3671), - [anon_sym_DASH] = ACTIONS(3671), - [anon_sym_STAR] = ACTIONS(3671), - [anon_sym_SLASH] = ACTIONS(3671), - [anon_sym_PERCENT] = ACTIONS(3671), - [anon_sym_CARET] = ACTIONS(3671), - [anon_sym_PIPE] = ACTIONS(3671), - [anon_sym_AMP] = ACTIONS(3671), - [anon_sym_LT_LT] = ACTIONS(3671), - [anon_sym_GT_GT] = ACTIONS(3671), - [anon_sym_GT_GT_GT] = ACTIONS(3671), - [anon_sym_EQ_EQ] = ACTIONS(3673), - [anon_sym_BANG_EQ] = ACTIONS(3673), - [anon_sym_GT_EQ] = ACTIONS(3673), - [anon_sym_LT_EQ] = ACTIONS(3673), - [anon_sym_DOT] = ACTIONS(3671), - [anon_sym_EQ_GT] = ACTIONS(3673), - [anon_sym_switch] = ACTIONS(3673), - [anon_sym_DOT_DOT] = ACTIONS(3673), - [anon_sym_and] = ACTIONS(3673), - [anon_sym_or] = ACTIONS(3671), - [anon_sym_PLUS_EQ] = ACTIONS(3673), - [anon_sym_DASH_EQ] = ACTIONS(3673), - [anon_sym_STAR_EQ] = ACTIONS(3673), - [anon_sym_SLASH_EQ] = ACTIONS(3673), - [anon_sym_PERCENT_EQ] = ACTIONS(3673), - [anon_sym_AMP_EQ] = ACTIONS(3673), - [anon_sym_CARET_EQ] = ACTIONS(3673), - [anon_sym_PIPE_EQ] = ACTIONS(3673), - [anon_sym_LT_LT_EQ] = ACTIONS(3673), - [anon_sym_GT_GT_EQ] = ACTIONS(3673), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3673), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3673), - [anon_sym_AMP_AMP] = ACTIONS(3673), - [anon_sym_PIPE_PIPE] = ACTIONS(3673), - [anon_sym_QMARK_QMARK] = ACTIONS(3671), - [anon_sym_from] = ACTIONS(3673), - [anon_sym_into] = ACTIONS(3673), - [anon_sym_join] = ACTIONS(3673), - [anon_sym_on] = ACTIONS(3673), - [anon_sym_equals] = ACTIONS(3673), - [anon_sym_let] = ACTIONS(3673), - [anon_sym_orderby] = ACTIONS(3673), - [anon_sym_group] = ACTIONS(3673), - [anon_sym_by] = ACTIONS(3673), - [anon_sym_select] = ACTIONS(3673), - [anon_sym_as] = ACTIONS(3673), - [anon_sym_is] = ACTIONS(3673), - [anon_sym_DASH_GT] = ACTIONS(3673), - [anon_sym_with] = ACTIONS(3673), - [aux_sym_preproc_if_token3] = ACTIONS(3673), - [aux_sym_preproc_else_token1] = ACTIONS(3673), - [aux_sym_preproc_elif_token1] = ACTIONS(3673), + [anon_sym_SEMI] = ACTIONS(4152), + [anon_sym_EQ] = ACTIONS(4118), + [anon_sym_LBRACK] = ACTIONS(4152), + [anon_sym_COLON] = ACTIONS(4116), + [anon_sym_COMMA] = ACTIONS(4152), + [anon_sym_RBRACK] = ACTIONS(4152), + [anon_sym_LPAREN] = ACTIONS(4152), + [anon_sym_RPAREN] = ACTIONS(4152), + [anon_sym_RBRACE] = ACTIONS(4152), + [anon_sym_LT] = ACTIONS(4154), + [anon_sym_GT] = ACTIONS(4154), + [anon_sym_in] = ACTIONS(4152), + [anon_sym_where] = ACTIONS(4152), + [anon_sym_QMARK] = ACTIONS(4154), + [anon_sym_BANG] = ACTIONS(4154), + [anon_sym_PLUS_PLUS] = ACTIONS(4152), + [anon_sym_DASH_DASH] = ACTIONS(4152), + [anon_sym_PLUS] = ACTIONS(4154), + [anon_sym_DASH] = ACTIONS(4154), + [anon_sym_STAR] = ACTIONS(4154), + [anon_sym_SLASH] = ACTIONS(4154), + [anon_sym_PERCENT] = ACTIONS(4154), + [anon_sym_CARET] = ACTIONS(4154), + [anon_sym_PIPE] = ACTIONS(4154), + [anon_sym_AMP] = ACTIONS(4154), + [anon_sym_LT_LT] = ACTIONS(4154), + [anon_sym_GT_GT] = ACTIONS(4154), + [anon_sym_GT_GT_GT] = ACTIONS(4154), + [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(4154), + [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(4154), + [anon_sym_PLUS_EQ] = ACTIONS(4116), + [anon_sym_DASH_EQ] = ACTIONS(4116), + [anon_sym_STAR_EQ] = ACTIONS(4116), + [anon_sym_SLASH_EQ] = ACTIONS(4116), + [anon_sym_PERCENT_EQ] = ACTIONS(4116), + [anon_sym_AMP_EQ] = ACTIONS(4116), + [anon_sym_CARET_EQ] = ACTIONS(4116), + [anon_sym_PIPE_EQ] = ACTIONS(4116), + [anon_sym_LT_LT_EQ] = ACTIONS(4116), + [anon_sym_GT_GT_EQ] = ACTIONS(4116), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(4116), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(4116), + [anon_sym_AMP_AMP] = ACTIONS(4152), + [anon_sym_PIPE_PIPE] = ACTIONS(4152), + [anon_sym_QMARK_QMARK] = ACTIONS(4154), + [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), @@ -424414,6 +424076,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2455] = { + [sym_parameter_list] = STATE(7531), + [sym_positional_pattern_clause] = STATE(2529), + [sym_property_pattern_clause] = STATE(2560), + [sym__variable_designation] = STATE(3422), + [sym_parenthesized_variable_designation] = STATE(3352), + [sym__lambda_parameters] = STATE(7378), + [sym_identifier] = STATE(4862), + [sym__reserved_identifier] = STATE(3199), [sym_preproc_region] = STATE(2455), [sym_preproc_endregion] = STATE(2455), [sym_preproc_line] = STATE(2455), @@ -424423,75 +424093,67 @@ 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(4187), - [anon_sym_EQ] = ACTIONS(4189), - [anon_sym_LBRACK] = ACTIONS(4187), - [anon_sym_COLON] = ACTIONS(4187), - [anon_sym_COMMA] = ACTIONS(4187), - [anon_sym_RBRACK] = ACTIONS(4187), - [anon_sym_LPAREN] = ACTIONS(4187), - [anon_sym_RPAREN] = ACTIONS(4187), - [anon_sym_RBRACE] = ACTIONS(4187), - [anon_sym_LT] = ACTIONS(4189), - [anon_sym_GT] = ACTIONS(4189), - [anon_sym_in] = ACTIONS(4187), - [anon_sym_where] = ACTIONS(4187), - [anon_sym_QMARK] = ACTIONS(4189), - [anon_sym_BANG] = ACTIONS(4189), - [anon_sym_PLUS_PLUS] = ACTIONS(4187), - [anon_sym_DASH_DASH] = ACTIONS(4187), - [anon_sym_PLUS] = ACTIONS(4189), - [anon_sym_DASH] = ACTIONS(4189), - [anon_sym_STAR] = ACTIONS(4189), - [anon_sym_SLASH] = ACTIONS(4189), - [anon_sym_PERCENT] = ACTIONS(4189), - [anon_sym_CARET] = ACTIONS(4189), - [anon_sym_PIPE] = ACTIONS(4189), - [anon_sym_AMP] = ACTIONS(4189), - [anon_sym_LT_LT] = ACTIONS(4189), - [anon_sym_GT_GT] = ACTIONS(4189), - [anon_sym_GT_GT_GT] = ACTIONS(4189), - [anon_sym_EQ_EQ] = ACTIONS(4187), - [anon_sym_BANG_EQ] = ACTIONS(4187), - [anon_sym_GT_EQ] = ACTIONS(4187), - [anon_sym_LT_EQ] = ACTIONS(4187), - [anon_sym_DOT] = ACTIONS(4189), - [anon_sym_EQ_GT] = ACTIONS(4187), - [anon_sym_switch] = ACTIONS(4187), - [anon_sym_DOT_DOT] = ACTIONS(4187), - [anon_sym_and] = ACTIONS(4187), - [anon_sym_or] = ACTIONS(4189), - [anon_sym_PLUS_EQ] = ACTIONS(4187), - [anon_sym_DASH_EQ] = ACTIONS(4187), - [anon_sym_STAR_EQ] = ACTIONS(4187), - [anon_sym_SLASH_EQ] = ACTIONS(4187), - [anon_sym_PERCENT_EQ] = ACTIONS(4187), - [anon_sym_AMP_EQ] = ACTIONS(4187), - [anon_sym_CARET_EQ] = ACTIONS(4187), - [anon_sym_PIPE_EQ] = ACTIONS(4187), - [anon_sym_LT_LT_EQ] = ACTIONS(4187), - [anon_sym_GT_GT_EQ] = ACTIONS(4187), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(4187), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(4187), - [anon_sym_AMP_AMP] = ACTIONS(4187), - [anon_sym_PIPE_PIPE] = ACTIONS(4187), - [anon_sym_QMARK_QMARK] = ACTIONS(4189), - [anon_sym_from] = ACTIONS(4187), - [anon_sym_join] = ACTIONS(4187), - [anon_sym_on] = ACTIONS(4187), - [anon_sym_equals] = ACTIONS(4187), - [anon_sym_let] = ACTIONS(4187), - [anon_sym_orderby] = ACTIONS(4187), - [anon_sym_group] = ACTIONS(4187), - [anon_sym_by] = ACTIONS(4187), - [anon_sym_select] = ACTIONS(4187), - [anon_sym_as] = ACTIONS(4187), - [anon_sym_is] = ACTIONS(4187), - [anon_sym_DASH_GT] = ACTIONS(4187), - [anon_sym_with] = ACTIONS(4187), - [aux_sym_preproc_if_token3] = ACTIONS(4187), - [aux_sym_preproc_else_token1] = ACTIONS(4187), - [aux_sym_preproc_elif_token1] = ACTIONS(4187), + [sym__identifier_token] = ACTIONS(3855), + [anon_sym_alias] = ACTIONS(3857), + [anon_sym_global] = ACTIONS(3857), + [anon_sym_LBRACK] = ACTIONS(3859), + [anon_sym_LPAREN] = ACTIONS(3859), + [anon_sym_LBRACE] = ACTIONS(3861), + [anon_sym_file] = ACTIONS(3857), + [anon_sym_LT] = ACTIONS(3863), + [anon_sym_GT] = ACTIONS(3863), + [anon_sym_where] = ACTIONS(3857), + [anon_sym_QMARK] = ACTIONS(3863), + [anon_sym_notnull] = ACTIONS(3857), + [anon_sym_unmanaged] = ACTIONS(3857), + [anon_sym_BANG] = ACTIONS(3863), + [anon_sym_PLUS_PLUS] = ACTIONS(3859), + [anon_sym_DASH_DASH] = ACTIONS(3859), + [anon_sym_PLUS] = ACTIONS(3863), + [anon_sym_DASH] = ACTIONS(3863), + [anon_sym_STAR] = ACTIONS(3859), + [anon_sym_SLASH] = ACTIONS(3863), + [anon_sym_PERCENT] = ACTIONS(3859), + [anon_sym_CARET] = ACTIONS(3859), + [anon_sym_PIPE] = ACTIONS(3863), + [anon_sym_AMP] = ACTIONS(3863), + [anon_sym_LT_LT] = ACTIONS(3859), + [anon_sym_GT_GT] = ACTIONS(3863), + [anon_sym_GT_GT_GT] = ACTIONS(3859), + [anon_sym_EQ_EQ] = ACTIONS(3859), + [anon_sym_BANG_EQ] = ACTIONS(3859), + [anon_sym_GT_EQ] = ACTIONS(3859), + [anon_sym_LT_EQ] = ACTIONS(3859), + [anon_sym_DOT] = ACTIONS(3863), + [anon_sym_scoped] = ACTIONS(3857), + [anon_sym_EQ_GT] = ACTIONS(3859), + [anon_sym_var] = ACTIONS(3857), + [anon_sym_yield] = ACTIONS(3857), + [anon_sym_switch] = ACTIONS(3863), + [anon_sym_when] = ACTIONS(3863), + [sym_discard] = ACTIONS(3877), + [anon_sym_DOT_DOT] = ACTIONS(3859), + [anon_sym_and] = ACTIONS(3863), + [anon_sym_or] = ACTIONS(3863), + [anon_sym_AMP_AMP] = ACTIONS(3859), + [anon_sym_PIPE_PIPE] = ACTIONS(3859), + [anon_sym_QMARK_QMARK] = ACTIONS(3859), + [anon_sym_from] = ACTIONS(3857), + [anon_sym_into] = ACTIONS(3857), + [anon_sym_join] = ACTIONS(3857), + [anon_sym_on] = ACTIONS(3857), + [anon_sym_equals] = ACTIONS(3857), + [anon_sym_let] = ACTIONS(3857), + [anon_sym_orderby] = ACTIONS(3857), + [anon_sym_ascending] = ACTIONS(3857), + [anon_sym_descending] = ACTIONS(3857), + [anon_sym_group] = ACTIONS(3857), + [anon_sym_by] = ACTIONS(3857), + [anon_sym_select] = ACTIONS(3857), + [anon_sym_as] = ACTIONS(3863), + [anon_sym_is] = ACTIONS(3863), + [anon_sym_DASH_GT] = ACTIONS(3859), + [anon_sym_with] = ACTIONS(3863), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -424504,14 +424166,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2456] = { - [sym_parameter_list] = STATE(7311), - [sym_positional_pattern_clause] = STATE(2566), - [sym_property_pattern_clause] = STATE(2651), - [sym__variable_designation] = STATE(3492), - [sym_parenthesized_variable_designation] = STATE(3463), - [sym__lambda_parameters] = STATE(7536), - [sym_identifier] = STATE(3493), - [sym__reserved_identifier] = STATE(3225), + [sym_parameter_list] = STATE(7531), + [sym_positional_pattern_clause] = STATE(2249), + [sym_property_pattern_clause] = STATE(2304), + [sym__variable_designation] = STATE(3347), + [sym_parenthesized_variable_designation] = STATE(3344), + [sym__lambda_parameters] = STATE(7378), + [sym_identifier] = STATE(4862), + [sym__reserved_identifier] = STATE(3199), [sym_preproc_region] = STATE(2456), [sym_preproc_endregion] = STATE(2456), [sym_preproc_line] = STATE(2456), @@ -424521,67 +424183,67 @@ 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(3788), - [anon_sym_alias] = ACTIONS(3790), - [anon_sym_global] = ACTIONS(3790), - [anon_sym_LBRACK] = ACTIONS(3893), - [anon_sym_LPAREN] = ACTIONS(3893), - [anon_sym_LBRACE] = ACTIONS(3881), - [anon_sym_file] = ACTIONS(3790), - [anon_sym_LT] = ACTIONS(3895), - [anon_sym_GT] = ACTIONS(3895), - [anon_sym_in] = ACTIONS(3895), - [anon_sym_where] = ACTIONS(3790), - [anon_sym_QMARK] = ACTIONS(3895), - [anon_sym_notnull] = ACTIONS(3790), - [anon_sym_unmanaged] = ACTIONS(3790), - [anon_sym_BANG] = ACTIONS(3895), - [anon_sym_PLUS_PLUS] = ACTIONS(3893), - [anon_sym_DASH_DASH] = ACTIONS(3893), - [anon_sym_PLUS] = ACTIONS(3895), - [anon_sym_DASH] = ACTIONS(3895), - [anon_sym_STAR] = ACTIONS(3893), - [anon_sym_SLASH] = ACTIONS(3895), - [anon_sym_PERCENT] = ACTIONS(3893), - [anon_sym_CARET] = ACTIONS(3893), - [anon_sym_PIPE] = ACTIONS(3895), - [anon_sym_AMP] = ACTIONS(3895), - [anon_sym_LT_LT] = ACTIONS(3893), - [anon_sym_GT_GT] = ACTIONS(3895), - [anon_sym_GT_GT_GT] = ACTIONS(3893), - [anon_sym_EQ_EQ] = ACTIONS(3893), - [anon_sym_BANG_EQ] = ACTIONS(3893), - [anon_sym_GT_EQ] = ACTIONS(3893), - [anon_sym_LT_EQ] = ACTIONS(3893), - [anon_sym_DOT] = ACTIONS(3895), - [anon_sym_scoped] = ACTIONS(3790), - [anon_sym_var] = ACTIONS(3790), - [anon_sym_yield] = ACTIONS(3790), - [anon_sym_switch] = ACTIONS(3895), - [anon_sym_when] = ACTIONS(3790), - [sym_discard] = ACTIONS(3897), - [anon_sym_DOT_DOT] = ACTIONS(3893), - [anon_sym_and] = ACTIONS(3883), - [anon_sym_or] = ACTIONS(3883), - [anon_sym_AMP_AMP] = ACTIONS(3893), - [anon_sym_PIPE_PIPE] = ACTIONS(3893), - [anon_sym_QMARK_QMARK] = ACTIONS(3893), - [anon_sym_from] = ACTIONS(3790), - [anon_sym_into] = ACTIONS(3790), - [anon_sym_join] = ACTIONS(3790), - [anon_sym_on] = ACTIONS(3790), - [anon_sym_equals] = ACTIONS(3790), - [anon_sym_let] = ACTIONS(3790), - [anon_sym_orderby] = ACTIONS(3790), - [anon_sym_ascending] = ACTIONS(3790), - [anon_sym_descending] = ACTIONS(3790), - [anon_sym_group] = ACTIONS(3790), - [anon_sym_by] = ACTIONS(3790), - [anon_sym_select] = ACTIONS(3790), - [anon_sym_as] = ACTIONS(3895), - [anon_sym_is] = ACTIONS(3895), - [anon_sym_DASH_GT] = ACTIONS(3893), - [anon_sym_with] = ACTIONS(3895), + [sym__identifier_token] = ACTIONS(3855), + [anon_sym_alias] = ACTIONS(3857), + [anon_sym_global] = ACTIONS(3857), + [anon_sym_LBRACK] = ACTIONS(3859), + [anon_sym_LPAREN] = ACTIONS(3859), + [anon_sym_LBRACE] = ACTIONS(3861), + [anon_sym_file] = ACTIONS(3857), + [anon_sym_LT] = ACTIONS(3863), + [anon_sym_GT] = ACTIONS(3863), + [anon_sym_where] = ACTIONS(3857), + [anon_sym_QMARK] = ACTIONS(3863), + [anon_sym_notnull] = ACTIONS(3857), + [anon_sym_unmanaged] = ACTIONS(3857), + [anon_sym_BANG] = ACTIONS(3863), + [anon_sym_PLUS_PLUS] = ACTIONS(3859), + [anon_sym_DASH_DASH] = ACTIONS(3859), + [anon_sym_PLUS] = ACTIONS(3863), + [anon_sym_DASH] = ACTIONS(3863), + [anon_sym_STAR] = ACTIONS(3859), + [anon_sym_SLASH] = ACTIONS(3863), + [anon_sym_PERCENT] = ACTIONS(3859), + [anon_sym_CARET] = ACTIONS(3859), + [anon_sym_PIPE] = ACTIONS(3863), + [anon_sym_AMP] = ACTIONS(3863), + [anon_sym_LT_LT] = ACTIONS(3859), + [anon_sym_GT_GT] = ACTIONS(3863), + [anon_sym_GT_GT_GT] = ACTIONS(3859), + [anon_sym_EQ_EQ] = ACTIONS(3859), + [anon_sym_BANG_EQ] = ACTIONS(3859), + [anon_sym_GT_EQ] = ACTIONS(3859), + [anon_sym_LT_EQ] = ACTIONS(3859), + [anon_sym_DOT] = ACTIONS(3863), + [anon_sym_scoped] = ACTIONS(3857), + [anon_sym_EQ_GT] = ACTIONS(3859), + [anon_sym_var] = ACTIONS(3857), + [anon_sym_yield] = ACTIONS(3857), + [anon_sym_switch] = ACTIONS(3863), + [anon_sym_when] = ACTIONS(3857), + [sym_discard] = ACTIONS(3865), + [anon_sym_DOT_DOT] = ACTIONS(3859), + [anon_sym_and] = ACTIONS(3867), + [anon_sym_or] = ACTIONS(3867), + [anon_sym_AMP_AMP] = ACTIONS(3859), + [anon_sym_PIPE_PIPE] = ACTIONS(3859), + [anon_sym_QMARK_QMARK] = ACTIONS(3859), + [anon_sym_from] = ACTIONS(3857), + [anon_sym_into] = ACTIONS(3863), + [anon_sym_join] = ACTIONS(3857), + [anon_sym_on] = ACTIONS(3857), + [anon_sym_equals] = ACTIONS(3857), + [anon_sym_let] = ACTIONS(3857), + [anon_sym_orderby] = ACTIONS(3857), + [anon_sym_ascending] = ACTIONS(3857), + [anon_sym_descending] = ACTIONS(3857), + [anon_sym_group] = ACTIONS(3857), + [anon_sym_by] = ACTIONS(3857), + [anon_sym_select] = ACTIONS(3857), + [anon_sym_as] = ACTIONS(3863), + [anon_sym_is] = ACTIONS(3863), + [anon_sym_DASH_GT] = ACTIONS(3859), + [anon_sym_with] = ACTIONS(3863), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -424594,6 +424256,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2457] = { + [sym_parameter_list] = STATE(7531), + [sym_positional_pattern_clause] = STATE(2529), + [sym_property_pattern_clause] = STATE(2560), + [sym__variable_designation] = STATE(3422), + [sym_parenthesized_variable_designation] = STATE(3352), + [sym__lambda_parameters] = STATE(7378), + [sym_identifier] = STATE(4862), + [sym__reserved_identifier] = STATE(3199), [sym_preproc_region] = STATE(2457), [sym_preproc_endregion] = STATE(2457), [sym_preproc_line] = STATE(2457), @@ -424603,75 +424273,67 @@ 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(4134), - [anon_sym_EQ] = ACTIONS(4136), - [anon_sym_LBRACK] = ACTIONS(4134), - [anon_sym_COLON] = ACTIONS(4134), - [anon_sym_COMMA] = ACTIONS(4134), - [anon_sym_RBRACK] = ACTIONS(4134), - [anon_sym_LPAREN] = ACTIONS(4134), - [anon_sym_RPAREN] = ACTIONS(4134), - [anon_sym_RBRACE] = ACTIONS(4134), - [anon_sym_LT] = ACTIONS(4136), - [anon_sym_GT] = ACTIONS(4136), - [anon_sym_in] = ACTIONS(4134), - [anon_sym_where] = ACTIONS(4134), - [anon_sym_QMARK] = ACTIONS(4136), - [anon_sym_BANG] = ACTIONS(4136), - [anon_sym_PLUS_PLUS] = ACTIONS(4134), - [anon_sym_DASH_DASH] = ACTIONS(4134), - [anon_sym_PLUS] = ACTIONS(4136), - [anon_sym_DASH] = ACTIONS(4136), - [anon_sym_STAR] = ACTIONS(4136), - [anon_sym_SLASH] = ACTIONS(4136), - [anon_sym_PERCENT] = ACTIONS(4136), - [anon_sym_CARET] = ACTIONS(4136), - [anon_sym_PIPE] = ACTIONS(4136), - [anon_sym_AMP] = ACTIONS(4136), - [anon_sym_LT_LT] = ACTIONS(4136), - [anon_sym_GT_GT] = ACTIONS(4136), - [anon_sym_GT_GT_GT] = ACTIONS(4136), - [anon_sym_EQ_EQ] = ACTIONS(4134), - [anon_sym_BANG_EQ] = ACTIONS(4134), - [anon_sym_GT_EQ] = ACTIONS(4134), - [anon_sym_LT_EQ] = ACTIONS(4134), - [anon_sym_DOT] = ACTIONS(4136), - [anon_sym_EQ_GT] = ACTIONS(4134), - [anon_sym_switch] = ACTIONS(4134), - [anon_sym_DOT_DOT] = ACTIONS(4134), - [anon_sym_and] = ACTIONS(4134), - [anon_sym_or] = ACTIONS(4136), - [anon_sym_PLUS_EQ] = ACTIONS(4134), - [anon_sym_DASH_EQ] = ACTIONS(4134), - [anon_sym_STAR_EQ] = ACTIONS(4134), - [anon_sym_SLASH_EQ] = ACTIONS(4134), - [anon_sym_PERCENT_EQ] = ACTIONS(4134), - [anon_sym_AMP_EQ] = ACTIONS(4134), - [anon_sym_CARET_EQ] = ACTIONS(4134), - [anon_sym_PIPE_EQ] = ACTIONS(4134), - [anon_sym_LT_LT_EQ] = ACTIONS(4134), - [anon_sym_GT_GT_EQ] = ACTIONS(4134), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(4134), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(4134), - [anon_sym_AMP_AMP] = ACTIONS(4134), - [anon_sym_PIPE_PIPE] = ACTIONS(4134), - [anon_sym_QMARK_QMARK] = ACTIONS(4136), - [anon_sym_from] = ACTIONS(4134), - [anon_sym_join] = ACTIONS(4134), - [anon_sym_on] = ACTIONS(4134), - [anon_sym_equals] = ACTIONS(4134), - [anon_sym_let] = ACTIONS(4134), - [anon_sym_orderby] = ACTIONS(4134), - [anon_sym_group] = ACTIONS(4134), - [anon_sym_by] = ACTIONS(4134), - [anon_sym_select] = ACTIONS(4134), - [anon_sym_as] = ACTIONS(4134), - [anon_sym_is] = ACTIONS(4134), - [anon_sym_DASH_GT] = ACTIONS(4134), - [anon_sym_with] = ACTIONS(4134), - [aux_sym_preproc_if_token3] = ACTIONS(4134), - [aux_sym_preproc_else_token1] = ACTIONS(4134), - [aux_sym_preproc_elif_token1] = ACTIONS(4134), + [sym__identifier_token] = ACTIONS(3855), + [anon_sym_alias] = ACTIONS(3857), + [anon_sym_global] = ACTIONS(3857), + [anon_sym_LBRACK] = ACTIONS(3869), + [anon_sym_LPAREN] = ACTIONS(3869), + [anon_sym_LBRACE] = ACTIONS(3861), + [anon_sym_file] = ACTIONS(3857), + [anon_sym_LT] = ACTIONS(3867), + [anon_sym_GT] = ACTIONS(3867), + [anon_sym_where] = ACTIONS(3857), + [anon_sym_QMARK] = ACTIONS(3867), + [anon_sym_notnull] = ACTIONS(3857), + [anon_sym_unmanaged] = ACTIONS(3857), + [anon_sym_BANG] = ACTIONS(3867), + [anon_sym_PLUS_PLUS] = ACTIONS(3869), + [anon_sym_DASH_DASH] = ACTIONS(3869), + [anon_sym_PLUS] = ACTIONS(3867), + [anon_sym_DASH] = ACTIONS(3867), + [anon_sym_STAR] = ACTIONS(3869), + [anon_sym_SLASH] = ACTIONS(3867), + [anon_sym_PERCENT] = ACTIONS(3869), + [anon_sym_CARET] = ACTIONS(3869), + [anon_sym_PIPE] = ACTIONS(3867), + [anon_sym_AMP] = ACTIONS(3867), + [anon_sym_LT_LT] = ACTIONS(3869), + [anon_sym_GT_GT] = ACTIONS(3867), + [anon_sym_GT_GT_GT] = ACTIONS(3869), + [anon_sym_EQ_EQ] = ACTIONS(3869), + [anon_sym_BANG_EQ] = ACTIONS(3869), + [anon_sym_GT_EQ] = ACTIONS(3869), + [anon_sym_LT_EQ] = ACTIONS(3869), + [anon_sym_DOT] = ACTIONS(3867), + [anon_sym_scoped] = ACTIONS(3857), + [anon_sym_EQ_GT] = ACTIONS(3869), + [anon_sym_var] = ACTIONS(3857), + [anon_sym_yield] = ACTIONS(3857), + [anon_sym_switch] = ACTIONS(3867), + [anon_sym_when] = ACTIONS(3867), + [sym_discard] = ACTIONS(3877), + [anon_sym_DOT_DOT] = ACTIONS(3869), + [anon_sym_and] = ACTIONS(3867), + [anon_sym_or] = ACTIONS(3867), + [anon_sym_AMP_AMP] = ACTIONS(3869), + [anon_sym_PIPE_PIPE] = ACTIONS(3869), + [anon_sym_QMARK_QMARK] = ACTIONS(3869), + [anon_sym_from] = ACTIONS(3857), + [anon_sym_into] = ACTIONS(3857), + [anon_sym_join] = ACTIONS(3857), + [anon_sym_on] = ACTIONS(3857), + [anon_sym_equals] = ACTIONS(3857), + [anon_sym_let] = ACTIONS(3857), + [anon_sym_orderby] = ACTIONS(3857), + [anon_sym_ascending] = ACTIONS(3857), + [anon_sym_descending] = ACTIONS(3857), + [anon_sym_group] = ACTIONS(3857), + [anon_sym_by] = ACTIONS(3857), + [anon_sym_select] = ACTIONS(3857), + [anon_sym_as] = ACTIONS(3867), + [anon_sym_is] = ACTIONS(3867), + [anon_sym_DASH_GT] = ACTIONS(3869), + [anon_sym_with] = ACTIONS(3867), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -424684,14 +424346,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2458] = { - [sym_parameter_list] = STATE(7311), - [sym_positional_pattern_clause] = STATE(2528), - [sym_property_pattern_clause] = STATE(2598), - [sym__variable_designation] = STATE(3346), - [sym_parenthesized_variable_designation] = STATE(3340), - [sym__lambda_parameters] = STATE(7536), - [sym_identifier] = STATE(5052), - [sym__reserved_identifier] = STATE(3177), [sym_preproc_region] = STATE(2458), [sym_preproc_endregion] = STATE(2458), [sym_preproc_line] = STATE(2458), @@ -424701,67 +424355,75 @@ 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), - [sym__identifier_token] = ACTIONS(3875), - [anon_sym_alias] = ACTIONS(3877), - [anon_sym_global] = ACTIONS(3877), - [anon_sym_LBRACK] = ACTIONS(3893), - [anon_sym_LPAREN] = ACTIONS(3893), - [anon_sym_LBRACE] = ACTIONS(3881), - [anon_sym_file] = ACTIONS(3877), - [anon_sym_LT] = ACTIONS(3895), - [anon_sym_GT] = ACTIONS(3895), - [anon_sym_where] = ACTIONS(3877), - [anon_sym_QMARK] = ACTIONS(3895), - [anon_sym_notnull] = ACTIONS(3877), - [anon_sym_unmanaged] = ACTIONS(3877), - [anon_sym_BANG] = ACTIONS(3895), - [anon_sym_PLUS_PLUS] = ACTIONS(3893), - [anon_sym_DASH_DASH] = ACTIONS(3893), - [anon_sym_PLUS] = ACTIONS(3895), - [anon_sym_DASH] = ACTIONS(3895), - [anon_sym_STAR] = ACTIONS(3893), - [anon_sym_SLASH] = ACTIONS(3895), - [anon_sym_PERCENT] = ACTIONS(3893), - [anon_sym_CARET] = ACTIONS(3893), - [anon_sym_PIPE] = ACTIONS(3895), - [anon_sym_AMP] = ACTIONS(3895), - [anon_sym_LT_LT] = ACTIONS(3893), - [anon_sym_GT_GT] = ACTIONS(3895), - [anon_sym_GT_GT_GT] = ACTIONS(3893), - [anon_sym_EQ_EQ] = ACTIONS(3893), - [anon_sym_BANG_EQ] = ACTIONS(3893), - [anon_sym_GT_EQ] = ACTIONS(3893), - [anon_sym_LT_EQ] = ACTIONS(3893), - [anon_sym_DOT] = ACTIONS(3895), - [anon_sym_scoped] = ACTIONS(3877), - [anon_sym_EQ_GT] = ACTIONS(3893), - [anon_sym_var] = ACTIONS(3877), - [anon_sym_yield] = ACTIONS(3877), - [anon_sym_switch] = ACTIONS(3895), - [anon_sym_when] = ACTIONS(3895), - [sym_discard] = ACTIONS(3885), - [anon_sym_DOT_DOT] = ACTIONS(3893), - [anon_sym_and] = ACTIONS(3895), - [anon_sym_or] = ACTIONS(3895), - [anon_sym_AMP_AMP] = ACTIONS(3893), - [anon_sym_PIPE_PIPE] = ACTIONS(3893), - [anon_sym_QMARK_QMARK] = ACTIONS(3893), - [anon_sym_from] = ACTIONS(3877), - [anon_sym_into] = ACTIONS(3895), - [anon_sym_join] = ACTIONS(3877), - [anon_sym_on] = ACTIONS(3877), - [anon_sym_equals] = ACTIONS(3877), - [anon_sym_let] = ACTIONS(3877), - [anon_sym_orderby] = ACTIONS(3877), - [anon_sym_ascending] = ACTIONS(3877), - [anon_sym_descending] = ACTIONS(3877), - [anon_sym_group] = ACTIONS(3877), - [anon_sym_by] = ACTIONS(3877), - [anon_sym_select] = ACTIONS(3877), - [anon_sym_as] = ACTIONS(3895), - [anon_sym_is] = ACTIONS(3895), - [anon_sym_DASH_GT] = ACTIONS(3893), - [anon_sym_with] = ACTIONS(3895), + [anon_sym_SEMI] = ACTIONS(4136), + [anon_sym_EQ] = ACTIONS(4138), + [anon_sym_LBRACK] = ACTIONS(4136), + [anon_sym_COLON] = ACTIONS(4136), + [anon_sym_COMMA] = ACTIONS(4136), + [anon_sym_RBRACK] = ACTIONS(4136), + [anon_sym_LPAREN] = ACTIONS(4136), + [anon_sym_RPAREN] = ACTIONS(4136), + [anon_sym_RBRACE] = ACTIONS(4136), + [anon_sym_LT] = ACTIONS(4138), + [anon_sym_GT] = ACTIONS(4138), + [anon_sym_in] = ACTIONS(4136), + [anon_sym_where] = ACTIONS(4136), + [anon_sym_QMARK] = ACTIONS(4138), + [anon_sym_BANG] = ACTIONS(4138), + [anon_sym_PLUS_PLUS] = ACTIONS(4136), + [anon_sym_DASH_DASH] = ACTIONS(4136), + [anon_sym_PLUS] = ACTIONS(4138), + [anon_sym_DASH] = ACTIONS(4138), + [anon_sym_STAR] = ACTIONS(4138), + [anon_sym_SLASH] = ACTIONS(4138), + [anon_sym_PERCENT] = ACTIONS(4138), + [anon_sym_CARET] = ACTIONS(4138), + [anon_sym_PIPE] = ACTIONS(4138), + [anon_sym_AMP] = ACTIONS(4138), + [anon_sym_LT_LT] = ACTIONS(4138), + [anon_sym_GT_GT] = ACTIONS(4138), + [anon_sym_GT_GT_GT] = ACTIONS(4138), + [anon_sym_EQ_EQ] = ACTIONS(4136), + [anon_sym_BANG_EQ] = ACTIONS(4136), + [anon_sym_GT_EQ] = ACTIONS(4136), + [anon_sym_LT_EQ] = ACTIONS(4136), + [anon_sym_DOT] = ACTIONS(4138), + [anon_sym_EQ_GT] = ACTIONS(4136), + [anon_sym_switch] = ACTIONS(4136), + [anon_sym_DOT_DOT] = ACTIONS(4136), + [anon_sym_and] = ACTIONS(4136), + [anon_sym_or] = ACTIONS(4138), + [anon_sym_PLUS_EQ] = ACTIONS(4136), + [anon_sym_DASH_EQ] = ACTIONS(4136), + [anon_sym_STAR_EQ] = ACTIONS(4136), + [anon_sym_SLASH_EQ] = ACTIONS(4136), + [anon_sym_PERCENT_EQ] = ACTIONS(4136), + [anon_sym_AMP_EQ] = ACTIONS(4136), + [anon_sym_CARET_EQ] = ACTIONS(4136), + [anon_sym_PIPE_EQ] = ACTIONS(4136), + [anon_sym_LT_LT_EQ] = ACTIONS(4136), + [anon_sym_GT_GT_EQ] = ACTIONS(4136), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(4136), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(4136), + [anon_sym_AMP_AMP] = ACTIONS(4136), + [anon_sym_PIPE_PIPE] = ACTIONS(4136), + [anon_sym_QMARK_QMARK] = ACTIONS(4138), + [anon_sym_from] = ACTIONS(4136), + [anon_sym_join] = ACTIONS(4136), + [anon_sym_on] = ACTIONS(4136), + [anon_sym_equals] = ACTIONS(4136), + [anon_sym_let] = ACTIONS(4136), + [anon_sym_orderby] = ACTIONS(4136), + [anon_sym_group] = ACTIONS(4136), + [anon_sym_by] = ACTIONS(4136), + [anon_sym_select] = ACTIONS(4136), + [anon_sym_as] = ACTIONS(4136), + [anon_sym_is] = ACTIONS(4136), + [anon_sym_DASH_GT] = ACTIONS(4136), + [anon_sym_with] = ACTIONS(4136), + [aux_sym_preproc_if_token3] = ACTIONS(4136), + [aux_sym_preproc_else_token1] = ACTIONS(4136), + [aux_sym_preproc_elif_token1] = ACTIONS(4136), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -424774,14 +424436,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2459] = { - [sym_parameter_list] = STATE(7311), - [sym_positional_pattern_clause] = STATE(2543), - [sym_property_pattern_clause] = STATE(2595), - [sym__variable_designation] = STATE(3492), - [sym_parenthesized_variable_designation] = STATE(3463), - [sym__lambda_parameters] = STATE(7536), - [sym_identifier] = STATE(3493), - [sym__reserved_identifier] = STATE(3177), [sym_preproc_region] = STATE(2459), [sym_preproc_endregion] = STATE(2459), [sym_preproc_line] = STATE(2459), @@ -424791,67 +424445,75 @@ 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), - [sym__identifier_token] = ACTIONS(3875), - [anon_sym_alias] = ACTIONS(3877), - [anon_sym_global] = ACTIONS(3877), - [anon_sym_LBRACK] = ACTIONS(3879), - [anon_sym_COLON] = ACTIONS(3879), - [anon_sym_LPAREN] = ACTIONS(3879), - [anon_sym_LBRACE] = ACTIONS(3881), - [anon_sym_file] = ACTIONS(3877), - [anon_sym_LT] = ACTIONS(3883), - [anon_sym_GT] = ACTIONS(3883), - [anon_sym_where] = ACTIONS(3877), - [anon_sym_QMARK] = ACTIONS(3883), - [anon_sym_notnull] = ACTIONS(3877), - [anon_sym_unmanaged] = ACTIONS(3877), - [anon_sym_BANG] = ACTIONS(3883), - [anon_sym_PLUS_PLUS] = ACTIONS(3879), - [anon_sym_DASH_DASH] = ACTIONS(3879), - [anon_sym_PLUS] = ACTIONS(3883), - [anon_sym_DASH] = ACTIONS(3883), - [anon_sym_STAR] = ACTIONS(3879), - [anon_sym_SLASH] = ACTIONS(3883), - [anon_sym_PERCENT] = ACTIONS(3879), - [anon_sym_CARET] = ACTIONS(3879), - [anon_sym_PIPE] = ACTIONS(3883), - [anon_sym_AMP] = ACTIONS(3883), - [anon_sym_LT_LT] = ACTIONS(3879), - [anon_sym_GT_GT] = ACTIONS(3883), - [anon_sym_GT_GT_GT] = ACTIONS(3879), - [anon_sym_EQ_EQ] = ACTIONS(3879), - [anon_sym_BANG_EQ] = ACTIONS(3879), - [anon_sym_GT_EQ] = ACTIONS(3879), - [anon_sym_LT_EQ] = ACTIONS(3879), - [anon_sym_DOT] = ACTIONS(3883), - [anon_sym_scoped] = ACTIONS(3877), - [anon_sym_var] = ACTIONS(3877), - [anon_sym_yield] = ACTIONS(3877), - [anon_sym_switch] = ACTIONS(3883), - [anon_sym_when] = ACTIONS(3883), - [sym_discard] = ACTIONS(3897), - [anon_sym_DOT_DOT] = ACTIONS(3879), - [anon_sym_and] = ACTIONS(3883), - [anon_sym_or] = ACTIONS(3883), - [anon_sym_AMP_AMP] = ACTIONS(3879), - [anon_sym_PIPE_PIPE] = ACTIONS(3879), - [anon_sym_QMARK_QMARK] = ACTIONS(3879), - [anon_sym_from] = ACTIONS(3877), - [anon_sym_into] = ACTIONS(3877), - [anon_sym_join] = ACTIONS(3877), - [anon_sym_on] = ACTIONS(3877), - [anon_sym_equals] = ACTIONS(3877), - [anon_sym_let] = ACTIONS(3877), - [anon_sym_orderby] = ACTIONS(3877), - [anon_sym_ascending] = ACTIONS(3877), - [anon_sym_descending] = ACTIONS(3877), - [anon_sym_group] = ACTIONS(3877), - [anon_sym_by] = ACTIONS(3877), - [anon_sym_select] = ACTIONS(3877), - [anon_sym_as] = ACTIONS(3883), - [anon_sym_is] = ACTIONS(3883), - [anon_sym_DASH_GT] = ACTIONS(3879), - [anon_sym_with] = ACTIONS(3883), + [anon_sym_SEMI] = ACTIONS(4116), + [anon_sym_EQ] = ACTIONS(4118), + [anon_sym_LBRACK] = ACTIONS(4116), + [anon_sym_COLON] = ACTIONS(4116), + [anon_sym_COMMA] = ACTIONS(4116), + [anon_sym_RBRACK] = ACTIONS(4116), + [anon_sym_LPAREN] = ACTIONS(4116), + [anon_sym_RPAREN] = ACTIONS(4116), + [anon_sym_RBRACE] = ACTIONS(4116), + [anon_sym_LT] = ACTIONS(4118), + [anon_sym_GT] = ACTIONS(4118), + [anon_sym_in] = ACTIONS(4116), + [anon_sym_where] = ACTIONS(4116), + [anon_sym_QMARK] = ACTIONS(4118), + [anon_sym_BANG] = ACTIONS(4118), + [anon_sym_PLUS_PLUS] = ACTIONS(4116), + [anon_sym_DASH_DASH] = ACTIONS(4116), + [anon_sym_PLUS] = ACTIONS(4118), + [anon_sym_DASH] = ACTIONS(4118), + [anon_sym_STAR] = ACTIONS(4118), + [anon_sym_SLASH] = ACTIONS(4118), + [anon_sym_PERCENT] = ACTIONS(4118), + [anon_sym_CARET] = ACTIONS(4118), + [anon_sym_PIPE] = ACTIONS(4118), + [anon_sym_AMP] = ACTIONS(4118), + [anon_sym_LT_LT] = ACTIONS(4118), + [anon_sym_GT_GT] = ACTIONS(4118), + [anon_sym_GT_GT_GT] = ACTIONS(4118), + [anon_sym_EQ_EQ] = ACTIONS(4116), + [anon_sym_BANG_EQ] = ACTIONS(4116), + [anon_sym_GT_EQ] = ACTIONS(4116), + [anon_sym_LT_EQ] = ACTIONS(4116), + [anon_sym_DOT] = ACTIONS(4118), + [anon_sym_EQ_GT] = ACTIONS(4116), + [anon_sym_switch] = ACTIONS(4116), + [anon_sym_DOT_DOT] = ACTIONS(4116), + [anon_sym_and] = ACTIONS(4116), + [anon_sym_or] = ACTIONS(4118), + [anon_sym_PLUS_EQ] = ACTIONS(4116), + [anon_sym_DASH_EQ] = ACTIONS(4116), + [anon_sym_STAR_EQ] = ACTIONS(4116), + [anon_sym_SLASH_EQ] = ACTIONS(4116), + [anon_sym_PERCENT_EQ] = ACTIONS(4116), + [anon_sym_AMP_EQ] = ACTIONS(4116), + [anon_sym_CARET_EQ] = ACTIONS(4116), + [anon_sym_PIPE_EQ] = ACTIONS(4116), + [anon_sym_LT_LT_EQ] = ACTIONS(4116), + [anon_sym_GT_GT_EQ] = ACTIONS(4116), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(4116), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(4116), + [anon_sym_AMP_AMP] = ACTIONS(4116), + [anon_sym_PIPE_PIPE] = ACTIONS(4116), + [anon_sym_QMARK_QMARK] = ACTIONS(4118), + [anon_sym_from] = ACTIONS(4116), + [anon_sym_join] = ACTIONS(4116), + [anon_sym_on] = ACTIONS(4116), + [anon_sym_equals] = ACTIONS(4116), + [anon_sym_let] = ACTIONS(4116), + [anon_sym_orderby] = ACTIONS(4116), + [anon_sym_group] = ACTIONS(4116), + [anon_sym_by] = ACTIONS(4116), + [anon_sym_select] = ACTIONS(4116), + [anon_sym_as] = ACTIONS(4116), + [anon_sym_is] = ACTIONS(4116), + [anon_sym_DASH_GT] = ACTIONS(4116), + [anon_sym_with] = ACTIONS(4116), + [aux_sym_preproc_if_token3] = ACTIONS(4116), + [aux_sym_preproc_else_token1] = ACTIONS(4116), + [aux_sym_preproc_elif_token1] = ACTIONS(4116), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -424864,6 +424526,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2460] = { + [sym_parameter_list] = STATE(7531), + [sym_positional_pattern_clause] = STATE(2548), + [sym_property_pattern_clause] = STATE(2624), + [sym__variable_designation] = STATE(3693), + [sym_parenthesized_variable_designation] = STATE(3688), + [sym__lambda_parameters] = STATE(7378), + [sym_identifier] = STATE(3657), + [sym__reserved_identifier] = STATE(2354), [sym_preproc_region] = STATE(2460), [sym_preproc_endregion] = STATE(2460), [sym_preproc_line] = STATE(2460), @@ -424873,75 +424543,67 @@ 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(4179), - [anon_sym_EQ] = ACTIONS(4181), - [anon_sym_LBRACK] = ACTIONS(4179), - [anon_sym_COLON] = ACTIONS(4179), - [anon_sym_COMMA] = ACTIONS(4179), - [anon_sym_RBRACK] = ACTIONS(4179), - [anon_sym_LPAREN] = ACTIONS(4179), - [anon_sym_RPAREN] = ACTIONS(4179), - [anon_sym_RBRACE] = ACTIONS(4179), - [anon_sym_LT] = ACTIONS(4181), - [anon_sym_GT] = ACTIONS(4181), - [anon_sym_in] = ACTIONS(4179), - [anon_sym_where] = ACTIONS(4179), - [anon_sym_QMARK] = ACTIONS(4181), - [anon_sym_BANG] = ACTIONS(4181), - [anon_sym_PLUS_PLUS] = ACTIONS(4179), - [anon_sym_DASH_DASH] = ACTIONS(4179), - [anon_sym_PLUS] = ACTIONS(4181), - [anon_sym_DASH] = ACTIONS(4181), - [anon_sym_STAR] = ACTIONS(4181), - [anon_sym_SLASH] = ACTIONS(4181), - [anon_sym_PERCENT] = ACTIONS(4181), - [anon_sym_CARET] = ACTIONS(4181), - [anon_sym_PIPE] = ACTIONS(4181), - [anon_sym_AMP] = ACTIONS(4181), - [anon_sym_LT_LT] = ACTIONS(4181), - [anon_sym_GT_GT] = ACTIONS(4181), - [anon_sym_GT_GT_GT] = ACTIONS(4181), - [anon_sym_EQ_EQ] = ACTIONS(4179), - [anon_sym_BANG_EQ] = ACTIONS(4179), - [anon_sym_GT_EQ] = ACTIONS(4179), - [anon_sym_LT_EQ] = ACTIONS(4179), - [anon_sym_DOT] = ACTIONS(4181), - [anon_sym_EQ_GT] = ACTIONS(4179), - [anon_sym_switch] = ACTIONS(4179), - [anon_sym_DOT_DOT] = ACTIONS(4179), - [anon_sym_and] = ACTIONS(4179), - [anon_sym_or] = ACTIONS(4181), - [anon_sym_PLUS_EQ] = ACTIONS(4179), - [anon_sym_DASH_EQ] = ACTIONS(4179), - [anon_sym_STAR_EQ] = ACTIONS(4179), - [anon_sym_SLASH_EQ] = ACTIONS(4179), - [anon_sym_PERCENT_EQ] = ACTIONS(4179), - [anon_sym_AMP_EQ] = ACTIONS(4179), - [anon_sym_CARET_EQ] = ACTIONS(4179), - [anon_sym_PIPE_EQ] = ACTIONS(4179), - [anon_sym_LT_LT_EQ] = ACTIONS(4179), - [anon_sym_GT_GT_EQ] = ACTIONS(4179), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(4179), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(4179), - [anon_sym_AMP_AMP] = ACTIONS(4179), - [anon_sym_PIPE_PIPE] = ACTIONS(4179), - [anon_sym_QMARK_QMARK] = ACTIONS(4181), - [anon_sym_from] = ACTIONS(4179), - [anon_sym_join] = ACTIONS(4179), - [anon_sym_on] = ACTIONS(4179), - [anon_sym_equals] = ACTIONS(4179), - [anon_sym_let] = ACTIONS(4179), - [anon_sym_orderby] = ACTIONS(4179), - [anon_sym_group] = ACTIONS(4179), - [anon_sym_by] = ACTIONS(4179), - [anon_sym_select] = ACTIONS(4179), - [anon_sym_as] = ACTIONS(4179), - [anon_sym_is] = ACTIONS(4179), - [anon_sym_DASH_GT] = ACTIONS(4179), - [anon_sym_with] = ACTIONS(4179), - [aux_sym_preproc_if_token3] = ACTIONS(4179), - [aux_sym_preproc_else_token1] = ACTIONS(4179), - [aux_sym_preproc_elif_token1] = ACTIONS(4179), + [sym__identifier_token] = ACTIONS(4080), + [anon_sym_alias] = ACTIONS(4082), + [anon_sym_global] = ACTIONS(4082), + [anon_sym_LBRACK] = ACTIONS(3859), + [anon_sym_COMMA] = ACTIONS(3859), + [anon_sym_LPAREN] = ACTIONS(3859), + [anon_sym_LBRACE] = ACTIONS(3861), + [anon_sym_file] = ACTIONS(4082), + [anon_sym_LT] = ACTIONS(3863), + [anon_sym_GT] = ACTIONS(3863), + [anon_sym_where] = ACTIONS(3863), + [anon_sym_QMARK] = ACTIONS(3863), + [anon_sym_notnull] = ACTIONS(4082), + [anon_sym_unmanaged] = ACTIONS(4082), + [anon_sym_BANG] = ACTIONS(3863), + [anon_sym_PLUS_PLUS] = ACTIONS(3859), + [anon_sym_DASH_DASH] = ACTIONS(3859), + [anon_sym_PLUS] = ACTIONS(3863), + [anon_sym_DASH] = ACTIONS(3863), + [anon_sym_STAR] = ACTIONS(3859), + [anon_sym_SLASH] = ACTIONS(3863), + [anon_sym_PERCENT] = ACTIONS(3859), + [anon_sym_CARET] = ACTIONS(3859), + [anon_sym_PIPE] = ACTIONS(3863), + [anon_sym_AMP] = ACTIONS(3863), + [anon_sym_LT_LT] = ACTIONS(3859), + [anon_sym_GT_GT] = ACTIONS(3863), + [anon_sym_GT_GT_GT] = ACTIONS(3859), + [anon_sym_EQ_EQ] = ACTIONS(3859), + [anon_sym_BANG_EQ] = ACTIONS(3859), + [anon_sym_GT_EQ] = ACTIONS(3859), + [anon_sym_LT_EQ] = ACTIONS(3859), + [anon_sym_DOT] = ACTIONS(3863), + [anon_sym_scoped] = ACTIONS(4082), + [anon_sym_var] = ACTIONS(4082), + [anon_sym_yield] = ACTIONS(4082), + [anon_sym_switch] = ACTIONS(3863), + [anon_sym_when] = ACTIONS(4082), + [sym_discard] = ACTIONS(4183), + [anon_sym_DOT_DOT] = ACTIONS(3859), + [anon_sym_and] = ACTIONS(3867), + [anon_sym_or] = ACTIONS(3867), + [anon_sym_AMP_AMP] = ACTIONS(3859), + [anon_sym_PIPE_PIPE] = ACTIONS(3859), + [anon_sym_QMARK_QMARK] = ACTIONS(3859), + [anon_sym_from] = ACTIONS(3863), + [anon_sym_into] = ACTIONS(3863), + [anon_sym_join] = ACTIONS(3863), + [anon_sym_on] = ACTIONS(4082), + [anon_sym_equals] = ACTIONS(4082), + [anon_sym_let] = ACTIONS(3863), + [anon_sym_orderby] = ACTIONS(3863), + [anon_sym_ascending] = ACTIONS(3863), + [anon_sym_descending] = ACTIONS(3863), + [anon_sym_group] = ACTIONS(3863), + [anon_sym_by] = ACTIONS(4082), + [anon_sym_select] = ACTIONS(3863), + [anon_sym_as] = ACTIONS(3863), + [anon_sym_is] = ACTIONS(3863), + [anon_sym_DASH_GT] = ACTIONS(3859), + [anon_sym_with] = ACTIONS(3863), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -424954,14 +424616,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2461] = { - [sym_parameter_list] = STATE(7311), - [sym_positional_pattern_clause] = STATE(2285), - [sym_property_pattern_clause] = STATE(2342), - [sym__variable_designation] = STATE(3492), - [sym_parenthesized_variable_designation] = STATE(3463), - [sym__lambda_parameters] = STATE(7536), - [sym_identifier] = STATE(5052), - [sym__reserved_identifier] = STATE(3177), + [sym_parameter_list] = STATE(7531), + [sym_positional_pattern_clause] = STATE(2280), + [sym_property_pattern_clause] = STATE(2326), + [sym__variable_designation] = STATE(3422), + [sym_parenthesized_variable_designation] = STATE(3352), + [sym__lambda_parameters] = STATE(7378), + [sym_identifier] = STATE(4862), + [sym__reserved_identifier] = STATE(3199), [sym_preproc_region] = STATE(2461), [sym_preproc_endregion] = STATE(2461), [sym_preproc_line] = STATE(2461), @@ -424971,67 +424633,67 @@ 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(3875), - [anon_sym_alias] = ACTIONS(3877), - [anon_sym_global] = ACTIONS(3877), - [anon_sym_LBRACK] = ACTIONS(3893), - [anon_sym_LPAREN] = ACTIONS(3893), - [anon_sym_LBRACE] = ACTIONS(3881), - [anon_sym_file] = ACTIONS(3877), - [anon_sym_LT] = ACTIONS(3895), - [anon_sym_GT] = ACTIONS(3895), - [anon_sym_where] = ACTIONS(3877), - [anon_sym_QMARK] = ACTIONS(3895), - [anon_sym_notnull] = ACTIONS(3877), - [anon_sym_unmanaged] = ACTIONS(3877), - [anon_sym_BANG] = ACTIONS(3895), - [anon_sym_PLUS_PLUS] = ACTIONS(3893), - [anon_sym_DASH_DASH] = ACTIONS(3893), - [anon_sym_PLUS] = ACTIONS(3895), - [anon_sym_DASH] = ACTIONS(3895), - [anon_sym_STAR] = ACTIONS(3893), - [anon_sym_SLASH] = ACTIONS(3895), - [anon_sym_PERCENT] = ACTIONS(3893), - [anon_sym_CARET] = ACTIONS(3893), - [anon_sym_PIPE] = ACTIONS(3895), - [anon_sym_AMP] = ACTIONS(3895), - [anon_sym_LT_LT] = ACTIONS(3893), - [anon_sym_GT_GT] = ACTIONS(3895), - [anon_sym_GT_GT_GT] = ACTIONS(3893), - [anon_sym_EQ_EQ] = ACTIONS(3893), - [anon_sym_BANG_EQ] = ACTIONS(3893), - [anon_sym_GT_EQ] = ACTIONS(3893), - [anon_sym_LT_EQ] = ACTIONS(3893), - [anon_sym_DOT] = ACTIONS(3895), - [anon_sym_scoped] = ACTIONS(3877), - [anon_sym_EQ_GT] = ACTIONS(3893), - [anon_sym_var] = ACTIONS(3877), - [anon_sym_yield] = ACTIONS(3877), - [anon_sym_switch] = ACTIONS(3895), - [anon_sym_when] = ACTIONS(3877), - [sym_discard] = ACTIONS(3897), - [anon_sym_DOT_DOT] = ACTIONS(3893), - [anon_sym_and] = ACTIONS(3895), - [anon_sym_or] = ACTIONS(3895), - [anon_sym_AMP_AMP] = ACTIONS(3893), - [anon_sym_PIPE_PIPE] = ACTIONS(3893), - [anon_sym_QMARK_QMARK] = ACTIONS(3893), - [anon_sym_from] = ACTIONS(3877), - [anon_sym_into] = ACTIONS(3877), - [anon_sym_join] = ACTIONS(3877), - [anon_sym_on] = ACTIONS(3877), - [anon_sym_equals] = ACTIONS(3877), - [anon_sym_let] = ACTIONS(3877), - [anon_sym_orderby] = ACTIONS(3877), - [anon_sym_ascending] = ACTIONS(3877), - [anon_sym_descending] = ACTIONS(3877), - [anon_sym_group] = ACTIONS(3877), - [anon_sym_by] = ACTIONS(3877), - [anon_sym_select] = ACTIONS(3877), - [anon_sym_as] = ACTIONS(3895), - [anon_sym_is] = ACTIONS(3895), - [anon_sym_DASH_GT] = ACTIONS(3893), - [anon_sym_with] = ACTIONS(3895), + [sym__identifier_token] = ACTIONS(3855), + [anon_sym_alias] = ACTIONS(3857), + [anon_sym_global] = ACTIONS(3857), + [anon_sym_LBRACK] = ACTIONS(3859), + [anon_sym_LPAREN] = ACTIONS(3859), + [anon_sym_LBRACE] = ACTIONS(3861), + [anon_sym_file] = ACTIONS(3857), + [anon_sym_LT] = ACTIONS(3863), + [anon_sym_GT] = ACTIONS(3863), + [anon_sym_where] = ACTIONS(3857), + [anon_sym_QMARK] = ACTIONS(3863), + [anon_sym_notnull] = ACTIONS(3857), + [anon_sym_unmanaged] = ACTIONS(3857), + [anon_sym_BANG] = ACTIONS(3863), + [anon_sym_PLUS_PLUS] = ACTIONS(3859), + [anon_sym_DASH_DASH] = ACTIONS(3859), + [anon_sym_PLUS] = ACTIONS(3863), + [anon_sym_DASH] = ACTIONS(3863), + [anon_sym_STAR] = ACTIONS(3859), + [anon_sym_SLASH] = ACTIONS(3863), + [anon_sym_PERCENT] = ACTIONS(3859), + [anon_sym_CARET] = ACTIONS(3859), + [anon_sym_PIPE] = ACTIONS(3863), + [anon_sym_AMP] = ACTIONS(3863), + [anon_sym_LT_LT] = ACTIONS(3859), + [anon_sym_GT_GT] = ACTIONS(3863), + [anon_sym_GT_GT_GT] = ACTIONS(3859), + [anon_sym_EQ_EQ] = ACTIONS(3859), + [anon_sym_BANG_EQ] = ACTIONS(3859), + [anon_sym_GT_EQ] = ACTIONS(3859), + [anon_sym_LT_EQ] = ACTIONS(3859), + [anon_sym_DOT] = ACTIONS(3863), + [anon_sym_scoped] = ACTIONS(3857), + [anon_sym_EQ_GT] = ACTIONS(3859), + [anon_sym_var] = ACTIONS(3857), + [anon_sym_yield] = ACTIONS(3857), + [anon_sym_switch] = ACTIONS(3863), + [anon_sym_when] = ACTIONS(3857), + [sym_discard] = ACTIONS(3877), + [anon_sym_DOT_DOT] = ACTIONS(3859), + [anon_sym_and] = ACTIONS(3867), + [anon_sym_or] = ACTIONS(3867), + [anon_sym_AMP_AMP] = ACTIONS(3859), + [anon_sym_PIPE_PIPE] = ACTIONS(3859), + [anon_sym_QMARK_QMARK] = ACTIONS(3859), + [anon_sym_from] = ACTIONS(3857), + [anon_sym_into] = ACTIONS(3857), + [anon_sym_join] = ACTIONS(3857), + [anon_sym_on] = ACTIONS(3857), + [anon_sym_equals] = ACTIONS(3857), + [anon_sym_let] = ACTIONS(3857), + [anon_sym_orderby] = ACTIONS(3857), + [anon_sym_ascending] = ACTIONS(3857), + [anon_sym_descending] = ACTIONS(3857), + [anon_sym_group] = ACTIONS(3857), + [anon_sym_by] = ACTIONS(3857), + [anon_sym_select] = ACTIONS(3857), + [anon_sym_as] = ACTIONS(3863), + [anon_sym_is] = ACTIONS(3863), + [anon_sym_DASH_GT] = ACTIONS(3859), + [anon_sym_with] = ACTIONS(3863), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -425044,14 +424706,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2462] = { - [sym_parameter_list] = STATE(7311), - [sym_positional_pattern_clause] = STATE(2285), - [sym_property_pattern_clause] = STATE(2342), - [sym__variable_designation] = STATE(3492), - [sym_parenthesized_variable_designation] = STATE(3463), - [sym__lambda_parameters] = STATE(7536), - [sym_identifier] = STATE(5052), - [sym__reserved_identifier] = STATE(3177), + [sym_parameter_list] = STATE(7531), + [sym_positional_pattern_clause] = STATE(2546), + [sym_property_pattern_clause] = STATE(2599), + [sym__variable_designation] = STATE(3693), + [sym_parenthesized_variable_designation] = STATE(3688), + [sym__lambda_parameters] = STATE(7378), + [sym_identifier] = STATE(3657), + [sym__reserved_identifier] = STATE(2354), [sym_preproc_region] = STATE(2462), [sym_preproc_endregion] = STATE(2462), [sym_preproc_line] = STATE(2462), @@ -425061,67 +424723,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(3875), - [anon_sym_alias] = ACTIONS(3877), - [anon_sym_global] = ACTIONS(3877), - [anon_sym_LBRACK] = ACTIONS(3879), - [anon_sym_LPAREN] = ACTIONS(3879), - [anon_sym_LBRACE] = ACTIONS(3881), - [anon_sym_file] = ACTIONS(3877), - [anon_sym_LT] = ACTIONS(3883), - [anon_sym_GT] = ACTIONS(3883), - [anon_sym_where] = ACTIONS(3877), - [anon_sym_QMARK] = ACTIONS(3883), - [anon_sym_notnull] = ACTIONS(3877), - [anon_sym_unmanaged] = ACTIONS(3877), - [anon_sym_BANG] = ACTIONS(3883), - [anon_sym_PLUS_PLUS] = ACTIONS(3879), - [anon_sym_DASH_DASH] = ACTIONS(3879), - [anon_sym_PLUS] = ACTIONS(3883), - [anon_sym_DASH] = ACTIONS(3883), - [anon_sym_STAR] = ACTIONS(3879), - [anon_sym_SLASH] = ACTIONS(3883), - [anon_sym_PERCENT] = ACTIONS(3879), - [anon_sym_CARET] = ACTIONS(3879), - [anon_sym_PIPE] = ACTIONS(3883), - [anon_sym_AMP] = ACTIONS(3883), - [anon_sym_LT_LT] = ACTIONS(3879), - [anon_sym_GT_GT] = ACTIONS(3883), - [anon_sym_GT_GT_GT] = ACTIONS(3879), - [anon_sym_EQ_EQ] = ACTIONS(3879), - [anon_sym_BANG_EQ] = ACTIONS(3879), - [anon_sym_GT_EQ] = ACTIONS(3879), - [anon_sym_LT_EQ] = ACTIONS(3879), - [anon_sym_DOT] = ACTIONS(3883), - [anon_sym_scoped] = ACTIONS(3877), - [anon_sym_EQ_GT] = ACTIONS(3879), - [anon_sym_var] = ACTIONS(3877), - [anon_sym_yield] = ACTIONS(3877), - [anon_sym_switch] = ACTIONS(3883), - [anon_sym_when] = ACTIONS(3877), - [sym_discard] = ACTIONS(3897), - [anon_sym_DOT_DOT] = ACTIONS(3879), - [anon_sym_and] = ACTIONS(3883), - [anon_sym_or] = ACTIONS(3883), - [anon_sym_AMP_AMP] = ACTIONS(3879), - [anon_sym_PIPE_PIPE] = ACTIONS(3879), - [anon_sym_QMARK_QMARK] = ACTIONS(3879), - [anon_sym_from] = ACTIONS(3877), - [anon_sym_into] = ACTIONS(3877), - [anon_sym_join] = ACTIONS(3877), - [anon_sym_on] = ACTIONS(3877), - [anon_sym_equals] = ACTIONS(3877), - [anon_sym_let] = ACTIONS(3877), - [anon_sym_orderby] = ACTIONS(3877), - [anon_sym_ascending] = ACTIONS(3877), - [anon_sym_descending] = ACTIONS(3877), - [anon_sym_group] = ACTIONS(3877), - [anon_sym_by] = ACTIONS(3877), - [anon_sym_select] = ACTIONS(3877), - [anon_sym_as] = ACTIONS(3883), - [anon_sym_is] = ACTIONS(3883), - [anon_sym_DASH_GT] = ACTIONS(3879), - [anon_sym_with] = ACTIONS(3883), + [sym__identifier_token] = ACTIONS(4080), + [anon_sym_alias] = ACTIONS(4082), + [anon_sym_global] = ACTIONS(4082), + [anon_sym_LBRACK] = ACTIONS(3859), + [anon_sym_COMMA] = ACTIONS(3859), + [anon_sym_LPAREN] = ACTIONS(3859), + [anon_sym_LBRACE] = ACTIONS(3861), + [anon_sym_file] = ACTIONS(4082), + [anon_sym_LT] = ACTIONS(3863), + [anon_sym_GT] = ACTIONS(3863), + [anon_sym_where] = ACTIONS(3863), + [anon_sym_QMARK] = ACTIONS(3863), + [anon_sym_notnull] = ACTIONS(4082), + [anon_sym_unmanaged] = ACTIONS(4082), + [anon_sym_BANG] = ACTIONS(3863), + [anon_sym_PLUS_PLUS] = ACTIONS(3859), + [anon_sym_DASH_DASH] = ACTIONS(3859), + [anon_sym_PLUS] = ACTIONS(3863), + [anon_sym_DASH] = ACTIONS(3863), + [anon_sym_STAR] = ACTIONS(3859), + [anon_sym_SLASH] = ACTIONS(3863), + [anon_sym_PERCENT] = ACTIONS(3859), + [anon_sym_CARET] = ACTIONS(3859), + [anon_sym_PIPE] = ACTIONS(3863), + [anon_sym_AMP] = ACTIONS(3863), + [anon_sym_LT_LT] = ACTIONS(3859), + [anon_sym_GT_GT] = ACTIONS(3863), + [anon_sym_GT_GT_GT] = ACTIONS(3859), + [anon_sym_EQ_EQ] = ACTIONS(3859), + [anon_sym_BANG_EQ] = ACTIONS(3859), + [anon_sym_GT_EQ] = ACTIONS(3859), + [anon_sym_LT_EQ] = ACTIONS(3859), + [anon_sym_DOT] = ACTIONS(3863), + [anon_sym_scoped] = ACTIONS(4082), + [anon_sym_var] = ACTIONS(4082), + [anon_sym_yield] = ACTIONS(4082), + [anon_sym_switch] = ACTIONS(3863), + [anon_sym_when] = ACTIONS(4082), + [sym_discard] = ACTIONS(4183), + [anon_sym_DOT_DOT] = ACTIONS(3859), + [anon_sym_and] = ACTIONS(3867), + [anon_sym_or] = ACTIONS(3867), + [anon_sym_AMP_AMP] = ACTIONS(3859), + [anon_sym_PIPE_PIPE] = ACTIONS(3859), + [anon_sym_QMARK_QMARK] = ACTIONS(3859), + [anon_sym_from] = ACTIONS(3863), + [anon_sym_into] = ACTIONS(4082), + [anon_sym_join] = ACTIONS(3863), + [anon_sym_on] = ACTIONS(4082), + [anon_sym_equals] = ACTIONS(4082), + [anon_sym_let] = ACTIONS(3863), + [anon_sym_orderby] = ACTIONS(3863), + [anon_sym_ascending] = ACTIONS(3863), + [anon_sym_descending] = ACTIONS(3863), + [anon_sym_group] = ACTIONS(3863), + [anon_sym_by] = ACTIONS(4082), + [anon_sym_select] = ACTIONS(3863), + [anon_sym_as] = ACTIONS(3863), + [anon_sym_is] = ACTIONS(3863), + [anon_sym_DASH_GT] = ACTIONS(3859), + [anon_sym_with] = ACTIONS(3863), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -425134,14 +424796,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2463] = { - [sym_parameter_list] = STATE(7311), - [sym_positional_pattern_clause] = STATE(2566), - [sym_property_pattern_clause] = STATE(2651), - [sym__variable_designation] = STATE(3492), - [sym_parenthesized_variable_designation] = STATE(3463), - [sym__lambda_parameters] = STATE(7536), - [sym_identifier] = STATE(3493), - [sym__reserved_identifier] = STATE(3225), + [sym_parameter_list] = STATE(7531), + [sym_positional_pattern_clause] = STATE(2548), + [sym_property_pattern_clause] = STATE(2624), + [sym__variable_designation] = STATE(3693), + [sym_parenthesized_variable_designation] = STATE(3688), + [sym__lambda_parameters] = STATE(7378), + [sym_identifier] = STATE(3657), + [sym__reserved_identifier] = STATE(2354), [sym_preproc_region] = STATE(2463), [sym_preproc_endregion] = STATE(2463), [sym_preproc_line] = STATE(2463), @@ -425151,67 +424813,67 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2463), [sym_preproc_define] = STATE(2463), [sym_preproc_undef] = STATE(2463), - [sym__identifier_token] = ACTIONS(3788), - [anon_sym_alias] = ACTIONS(3790), - [anon_sym_global] = ACTIONS(3790), - [anon_sym_LBRACK] = ACTIONS(3879), - [anon_sym_LPAREN] = ACTIONS(3879), - [anon_sym_LBRACE] = ACTIONS(3881), - [anon_sym_file] = ACTIONS(3790), - [anon_sym_LT] = ACTIONS(3883), - [anon_sym_GT] = ACTIONS(3883), - [anon_sym_in] = ACTIONS(3883), - [anon_sym_where] = ACTIONS(3790), - [anon_sym_QMARK] = ACTIONS(3883), - [anon_sym_notnull] = ACTIONS(3790), - [anon_sym_unmanaged] = ACTIONS(3790), - [anon_sym_BANG] = ACTIONS(3883), - [anon_sym_PLUS_PLUS] = ACTIONS(3879), - [anon_sym_DASH_DASH] = ACTIONS(3879), - [anon_sym_PLUS] = ACTIONS(3883), - [anon_sym_DASH] = ACTIONS(3883), - [anon_sym_STAR] = ACTIONS(3879), - [anon_sym_SLASH] = ACTIONS(3883), - [anon_sym_PERCENT] = ACTIONS(3879), - [anon_sym_CARET] = ACTIONS(3879), - [anon_sym_PIPE] = ACTIONS(3883), - [anon_sym_AMP] = ACTIONS(3883), - [anon_sym_LT_LT] = ACTIONS(3879), - [anon_sym_GT_GT] = ACTIONS(3883), - [anon_sym_GT_GT_GT] = ACTIONS(3879), - [anon_sym_EQ_EQ] = ACTIONS(3879), - [anon_sym_BANG_EQ] = ACTIONS(3879), - [anon_sym_GT_EQ] = ACTIONS(3879), - [anon_sym_LT_EQ] = ACTIONS(3879), - [anon_sym_DOT] = ACTIONS(3883), - [anon_sym_scoped] = ACTIONS(3790), - [anon_sym_var] = ACTIONS(3790), - [anon_sym_yield] = ACTIONS(3790), - [anon_sym_switch] = ACTIONS(3883), - [anon_sym_when] = ACTIONS(3790), - [sym_discard] = ACTIONS(3897), - [anon_sym_DOT_DOT] = ACTIONS(3879), - [anon_sym_and] = ACTIONS(3883), - [anon_sym_or] = ACTIONS(3883), - [anon_sym_AMP_AMP] = ACTIONS(3879), - [anon_sym_PIPE_PIPE] = ACTIONS(3879), - [anon_sym_QMARK_QMARK] = ACTIONS(3879), - [anon_sym_from] = ACTIONS(3790), - [anon_sym_into] = ACTIONS(3790), - [anon_sym_join] = ACTIONS(3790), - [anon_sym_on] = ACTIONS(3790), - [anon_sym_equals] = ACTIONS(3790), - [anon_sym_let] = ACTIONS(3790), - [anon_sym_orderby] = ACTIONS(3790), - [anon_sym_ascending] = ACTIONS(3790), - [anon_sym_descending] = ACTIONS(3790), - [anon_sym_group] = ACTIONS(3790), - [anon_sym_by] = ACTIONS(3790), - [anon_sym_select] = ACTIONS(3790), - [anon_sym_as] = ACTIONS(3883), - [anon_sym_is] = ACTIONS(3883), - [anon_sym_DASH_GT] = ACTIONS(3879), - [anon_sym_with] = ACTIONS(3883), + [sym__identifier_token] = ACTIONS(4080), + [anon_sym_alias] = ACTIONS(4082), + [anon_sym_global] = ACTIONS(4082), + [anon_sym_LBRACK] = ACTIONS(3869), + [anon_sym_COMMA] = ACTIONS(3869), + [anon_sym_LPAREN] = ACTIONS(3869), + [anon_sym_LBRACE] = ACTIONS(3861), + [anon_sym_file] = ACTIONS(4082), + [anon_sym_LT] = ACTIONS(3867), + [anon_sym_GT] = ACTIONS(3867), + [anon_sym_where] = ACTIONS(3867), + [anon_sym_QMARK] = ACTIONS(3867), + [anon_sym_notnull] = ACTIONS(4082), + [anon_sym_unmanaged] = ACTIONS(4082), + [anon_sym_BANG] = ACTIONS(3867), + [anon_sym_PLUS_PLUS] = ACTIONS(3869), + [anon_sym_DASH_DASH] = ACTIONS(3869), + [anon_sym_PLUS] = ACTIONS(3867), + [anon_sym_DASH] = ACTIONS(3867), + [anon_sym_STAR] = ACTIONS(3869), + [anon_sym_SLASH] = ACTIONS(3867), + [anon_sym_PERCENT] = ACTIONS(3869), + [anon_sym_CARET] = ACTIONS(3869), + [anon_sym_PIPE] = ACTIONS(3867), + [anon_sym_AMP] = ACTIONS(3867), + [anon_sym_LT_LT] = ACTIONS(3869), + [anon_sym_GT_GT] = ACTIONS(3867), + [anon_sym_GT_GT_GT] = ACTIONS(3869), + [anon_sym_EQ_EQ] = ACTIONS(3869), + [anon_sym_BANG_EQ] = ACTIONS(3869), + [anon_sym_GT_EQ] = ACTIONS(3869), + [anon_sym_LT_EQ] = ACTIONS(3869), + [anon_sym_DOT] = ACTIONS(3867), + [anon_sym_scoped] = ACTIONS(4082), + [anon_sym_var] = ACTIONS(4082), + [anon_sym_yield] = ACTIONS(4082), + [anon_sym_switch] = ACTIONS(3867), + [anon_sym_when] = ACTIONS(4082), + [sym_discard] = ACTIONS(4183), + [anon_sym_DOT_DOT] = ACTIONS(3869), + [anon_sym_and] = ACTIONS(3867), + [anon_sym_or] = ACTIONS(3867), + [anon_sym_AMP_AMP] = ACTIONS(3869), + [anon_sym_PIPE_PIPE] = ACTIONS(3869), + [anon_sym_QMARK_QMARK] = ACTIONS(3869), + [anon_sym_from] = ACTIONS(3867), + [anon_sym_into] = ACTIONS(3867), + [anon_sym_join] = ACTIONS(3867), + [anon_sym_on] = ACTIONS(4082), + [anon_sym_equals] = ACTIONS(4082), + [anon_sym_let] = ACTIONS(3867), + [anon_sym_orderby] = ACTIONS(3867), + [anon_sym_ascending] = ACTIONS(3867), + [anon_sym_descending] = ACTIONS(3867), + [anon_sym_group] = ACTIONS(3867), + [anon_sym_by] = ACTIONS(4082), + [anon_sym_select] = ACTIONS(3867), + [anon_sym_as] = ACTIONS(3867), + [anon_sym_is] = ACTIONS(3867), + [anon_sym_DASH_GT] = ACTIONS(3869), + [anon_sym_with] = ACTIONS(3867), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -425224,14 +424886,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2464] = { - [sym_parameter_list] = STATE(7311), - [sym_positional_pattern_clause] = STATE(2285), - [sym_property_pattern_clause] = STATE(2342), - [sym__variable_designation] = STATE(3492), - [sym_parenthesized_variable_designation] = STATE(3463), - [sym__lambda_parameters] = STATE(7536), - [sym_identifier] = STATE(5052), - [sym__reserved_identifier] = STATE(3177), + [sym_parameter_list] = STATE(7531), + [sym_positional_pattern_clause] = STATE(2280), + [sym_property_pattern_clause] = STATE(2326), + [sym__variable_designation] = STATE(3422), + [sym_parenthesized_variable_designation] = STATE(3352), + [sym__lambda_parameters] = STATE(7378), + [sym_identifier] = STATE(4862), + [sym__reserved_identifier] = STATE(3199), [sym_preproc_region] = STATE(2464), [sym_preproc_endregion] = STATE(2464), [sym_preproc_line] = STATE(2464), @@ -425241,67 +424903,67 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2464), [sym_preproc_define] = STATE(2464), [sym_preproc_undef] = STATE(2464), - [sym__identifier_token] = ACTIONS(3875), - [anon_sym_alias] = ACTIONS(3877), - [anon_sym_global] = ACTIONS(3877), - [anon_sym_LBRACK] = ACTIONS(3893), - [anon_sym_LPAREN] = ACTIONS(3893), - [anon_sym_LBRACE] = ACTIONS(3881), - [anon_sym_file] = ACTIONS(3877), - [anon_sym_LT] = ACTIONS(3895), - [anon_sym_GT] = ACTIONS(3895), - [anon_sym_where] = ACTIONS(3877), - [anon_sym_QMARK] = ACTIONS(3895), - [anon_sym_notnull] = ACTIONS(3877), - [anon_sym_unmanaged] = ACTIONS(3877), - [anon_sym_BANG] = ACTIONS(3895), - [anon_sym_PLUS_PLUS] = ACTIONS(3893), - [anon_sym_DASH_DASH] = ACTIONS(3893), - [anon_sym_PLUS] = ACTIONS(3895), - [anon_sym_DASH] = ACTIONS(3895), - [anon_sym_STAR] = ACTIONS(3893), - [anon_sym_SLASH] = ACTIONS(3895), - [anon_sym_PERCENT] = ACTIONS(3893), - [anon_sym_CARET] = ACTIONS(3893), - [anon_sym_PIPE] = ACTIONS(3895), - [anon_sym_AMP] = ACTIONS(3895), - [anon_sym_LT_LT] = ACTIONS(3893), - [anon_sym_GT_GT] = ACTIONS(3895), - [anon_sym_GT_GT_GT] = ACTIONS(3893), - [anon_sym_EQ_EQ] = ACTIONS(3893), - [anon_sym_BANG_EQ] = ACTIONS(3893), - [anon_sym_GT_EQ] = ACTIONS(3893), - [anon_sym_LT_EQ] = ACTIONS(3893), - [anon_sym_DOT] = ACTIONS(3895), - [anon_sym_scoped] = ACTIONS(3877), - [anon_sym_EQ_GT] = ACTIONS(3893), - [anon_sym_var] = ACTIONS(3877), - [anon_sym_yield] = ACTIONS(3877), - [anon_sym_switch] = ACTIONS(3895), - [anon_sym_when] = ACTIONS(3877), - [sym_discard] = ACTIONS(3897), - [anon_sym_DOT_DOT] = ACTIONS(3893), - [anon_sym_and] = ACTIONS(3883), - [anon_sym_or] = ACTIONS(3883), - [anon_sym_AMP_AMP] = ACTIONS(3893), - [anon_sym_PIPE_PIPE] = ACTIONS(3893), - [anon_sym_QMARK_QMARK] = ACTIONS(3893), - [anon_sym_from] = ACTIONS(3877), - [anon_sym_into] = ACTIONS(3877), - [anon_sym_join] = ACTIONS(3877), - [anon_sym_on] = ACTIONS(3877), - [anon_sym_equals] = ACTIONS(3877), - [anon_sym_let] = ACTIONS(3877), - [anon_sym_orderby] = ACTIONS(3877), - [anon_sym_ascending] = ACTIONS(3877), - [anon_sym_descending] = ACTIONS(3877), - [anon_sym_group] = ACTIONS(3877), - [anon_sym_by] = ACTIONS(3877), - [anon_sym_select] = ACTIONS(3877), - [anon_sym_as] = ACTIONS(3895), - [anon_sym_is] = ACTIONS(3895), - [anon_sym_DASH_GT] = ACTIONS(3893), - [anon_sym_with] = ACTIONS(3895), + [sym__identifier_token] = ACTIONS(3855), + [anon_sym_alias] = ACTIONS(3857), + [anon_sym_global] = ACTIONS(3857), + [anon_sym_LBRACK] = ACTIONS(3869), + [anon_sym_LPAREN] = ACTIONS(3869), + [anon_sym_LBRACE] = ACTIONS(3861), + [anon_sym_file] = ACTIONS(3857), + [anon_sym_LT] = ACTIONS(3867), + [anon_sym_GT] = ACTIONS(3867), + [anon_sym_where] = ACTIONS(3857), + [anon_sym_QMARK] = ACTIONS(3867), + [anon_sym_notnull] = ACTIONS(3857), + [anon_sym_unmanaged] = ACTIONS(3857), + [anon_sym_BANG] = ACTIONS(3867), + [anon_sym_PLUS_PLUS] = ACTIONS(3869), + [anon_sym_DASH_DASH] = ACTIONS(3869), + [anon_sym_PLUS] = ACTIONS(3867), + [anon_sym_DASH] = ACTIONS(3867), + [anon_sym_STAR] = ACTIONS(3869), + [anon_sym_SLASH] = ACTIONS(3867), + [anon_sym_PERCENT] = ACTIONS(3869), + [anon_sym_CARET] = ACTIONS(3869), + [anon_sym_PIPE] = ACTIONS(3867), + [anon_sym_AMP] = ACTIONS(3867), + [anon_sym_LT_LT] = ACTIONS(3869), + [anon_sym_GT_GT] = ACTIONS(3867), + [anon_sym_GT_GT_GT] = ACTIONS(3869), + [anon_sym_EQ_EQ] = ACTIONS(3869), + [anon_sym_BANG_EQ] = ACTIONS(3869), + [anon_sym_GT_EQ] = ACTIONS(3869), + [anon_sym_LT_EQ] = ACTIONS(3869), + [anon_sym_DOT] = ACTIONS(3867), + [anon_sym_scoped] = ACTIONS(3857), + [anon_sym_EQ_GT] = ACTIONS(3869), + [anon_sym_var] = ACTIONS(3857), + [anon_sym_yield] = ACTIONS(3857), + [anon_sym_switch] = ACTIONS(3867), + [anon_sym_when] = ACTIONS(3857), + [sym_discard] = ACTIONS(3877), + [anon_sym_DOT_DOT] = ACTIONS(3869), + [anon_sym_and] = ACTIONS(3867), + [anon_sym_or] = ACTIONS(3867), + [anon_sym_AMP_AMP] = ACTIONS(3869), + [anon_sym_PIPE_PIPE] = ACTIONS(3869), + [anon_sym_QMARK_QMARK] = ACTIONS(3869), + [anon_sym_from] = ACTIONS(3857), + [anon_sym_into] = ACTIONS(3857), + [anon_sym_join] = ACTIONS(3857), + [anon_sym_on] = ACTIONS(3857), + [anon_sym_equals] = ACTIONS(3857), + [anon_sym_let] = ACTIONS(3857), + [anon_sym_orderby] = ACTIONS(3857), + [anon_sym_ascending] = ACTIONS(3857), + [anon_sym_descending] = ACTIONS(3857), + [anon_sym_group] = ACTIONS(3857), + [anon_sym_by] = ACTIONS(3857), + [anon_sym_select] = ACTIONS(3857), + [anon_sym_as] = ACTIONS(3867), + [anon_sym_is] = ACTIONS(3867), + [anon_sym_DASH_GT] = ACTIONS(3869), + [anon_sym_with] = ACTIONS(3867), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -425314,6 +424976,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2465] = { + [sym_parameter_list] = STATE(7531), + [sym_positional_pattern_clause] = STATE(2529), + [sym_property_pattern_clause] = STATE(2560), + [sym__variable_designation] = STATE(3422), + [sym_parenthesized_variable_designation] = STATE(3352), + [sym__lambda_parameters] = STATE(7378), + [sym_identifier] = STATE(3430), + [sym__reserved_identifier] = STATE(3199), [sym_preproc_region] = STATE(2465), [sym_preproc_endregion] = STATE(2465), [sym_preproc_line] = STATE(2465), @@ -425323,75 +424993,67 @@ 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), - [anon_sym_SEMI] = ACTIONS(4191), - [anon_sym_EQ] = ACTIONS(4193), - [anon_sym_LBRACK] = ACTIONS(4191), - [anon_sym_COLON] = ACTIONS(4191), - [anon_sym_COMMA] = ACTIONS(4191), - [anon_sym_RBRACK] = ACTIONS(4191), - [anon_sym_LPAREN] = ACTIONS(4191), - [anon_sym_RPAREN] = ACTIONS(4191), - [anon_sym_RBRACE] = ACTIONS(4191), - [anon_sym_LT] = ACTIONS(4193), - [anon_sym_GT] = ACTIONS(4193), - [anon_sym_in] = ACTIONS(4191), - [anon_sym_where] = ACTIONS(4191), - [anon_sym_QMARK] = ACTIONS(4193), - [anon_sym_BANG] = ACTIONS(4193), - [anon_sym_PLUS_PLUS] = ACTIONS(4191), - [anon_sym_DASH_DASH] = ACTIONS(4191), - [anon_sym_PLUS] = ACTIONS(4193), - [anon_sym_DASH] = ACTIONS(4193), - [anon_sym_STAR] = ACTIONS(4193), - [anon_sym_SLASH] = ACTIONS(4193), - [anon_sym_PERCENT] = ACTIONS(4193), - [anon_sym_CARET] = ACTIONS(4193), - [anon_sym_PIPE] = ACTIONS(4193), - [anon_sym_AMP] = ACTIONS(4193), - [anon_sym_LT_LT] = ACTIONS(4193), - [anon_sym_GT_GT] = ACTIONS(4193), - [anon_sym_GT_GT_GT] = ACTIONS(4193), - [anon_sym_EQ_EQ] = ACTIONS(4191), - [anon_sym_BANG_EQ] = ACTIONS(4191), - [anon_sym_GT_EQ] = ACTIONS(4191), - [anon_sym_LT_EQ] = ACTIONS(4191), - [anon_sym_DOT] = ACTIONS(4193), - [anon_sym_EQ_GT] = ACTIONS(4191), - [anon_sym_switch] = ACTIONS(4191), - [anon_sym_DOT_DOT] = ACTIONS(4191), - [anon_sym_and] = ACTIONS(4191), - [anon_sym_or] = ACTIONS(4193), - [anon_sym_PLUS_EQ] = ACTIONS(4191), - [anon_sym_DASH_EQ] = ACTIONS(4191), - [anon_sym_STAR_EQ] = ACTIONS(4191), - [anon_sym_SLASH_EQ] = ACTIONS(4191), - [anon_sym_PERCENT_EQ] = ACTIONS(4191), - [anon_sym_AMP_EQ] = ACTIONS(4191), - [anon_sym_CARET_EQ] = ACTIONS(4191), - [anon_sym_PIPE_EQ] = ACTIONS(4191), - [anon_sym_LT_LT_EQ] = ACTIONS(4191), - [anon_sym_GT_GT_EQ] = ACTIONS(4191), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(4191), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(4191), - [anon_sym_AMP_AMP] = ACTIONS(4191), - [anon_sym_PIPE_PIPE] = ACTIONS(4191), - [anon_sym_QMARK_QMARK] = ACTIONS(4193), - [anon_sym_from] = ACTIONS(4191), - [anon_sym_join] = ACTIONS(4191), - [anon_sym_on] = ACTIONS(4191), - [anon_sym_equals] = ACTIONS(4191), - [anon_sym_let] = ACTIONS(4191), - [anon_sym_orderby] = ACTIONS(4191), - [anon_sym_group] = ACTIONS(4191), - [anon_sym_by] = ACTIONS(4191), - [anon_sym_select] = ACTIONS(4191), - [anon_sym_as] = ACTIONS(4191), - [anon_sym_is] = ACTIONS(4191), - [anon_sym_DASH_GT] = ACTIONS(4191), - [anon_sym_with] = ACTIONS(4191), - [aux_sym_preproc_if_token3] = ACTIONS(4191), - [aux_sym_preproc_else_token1] = ACTIONS(4191), - [aux_sym_preproc_elif_token1] = ACTIONS(4191), + [sym__identifier_token] = ACTIONS(3855), + [anon_sym_alias] = ACTIONS(3857), + [anon_sym_global] = ACTIONS(3857), + [anon_sym_LBRACK] = ACTIONS(3859), + [anon_sym_COLON] = ACTIONS(3859), + [anon_sym_LPAREN] = ACTIONS(3859), + [anon_sym_LBRACE] = ACTIONS(3861), + [anon_sym_file] = ACTIONS(3857), + [anon_sym_LT] = ACTIONS(3863), + [anon_sym_GT] = ACTIONS(3863), + [anon_sym_where] = ACTIONS(3857), + [anon_sym_QMARK] = ACTIONS(3863), + [anon_sym_notnull] = ACTIONS(3857), + [anon_sym_unmanaged] = ACTIONS(3857), + [anon_sym_BANG] = ACTIONS(3863), + [anon_sym_PLUS_PLUS] = ACTIONS(3859), + [anon_sym_DASH_DASH] = ACTIONS(3859), + [anon_sym_PLUS] = ACTIONS(3863), + [anon_sym_DASH] = ACTIONS(3863), + [anon_sym_STAR] = ACTIONS(3859), + [anon_sym_SLASH] = ACTIONS(3863), + [anon_sym_PERCENT] = ACTIONS(3859), + [anon_sym_CARET] = ACTIONS(3859), + [anon_sym_PIPE] = ACTIONS(3863), + [anon_sym_AMP] = ACTIONS(3863), + [anon_sym_LT_LT] = ACTIONS(3859), + [anon_sym_GT_GT] = ACTIONS(3863), + [anon_sym_GT_GT_GT] = ACTIONS(3859), + [anon_sym_EQ_EQ] = ACTIONS(3859), + [anon_sym_BANG_EQ] = ACTIONS(3859), + [anon_sym_GT_EQ] = ACTIONS(3859), + [anon_sym_LT_EQ] = ACTIONS(3859), + [anon_sym_DOT] = ACTIONS(3863), + [anon_sym_scoped] = ACTIONS(3857), + [anon_sym_var] = ACTIONS(3857), + [anon_sym_yield] = ACTIONS(3857), + [anon_sym_switch] = ACTIONS(3863), + [anon_sym_when] = ACTIONS(3863), + [sym_discard] = ACTIONS(3877), + [anon_sym_DOT_DOT] = ACTIONS(3859), + [anon_sym_and] = ACTIONS(3863), + [anon_sym_or] = ACTIONS(3863), + [anon_sym_AMP_AMP] = ACTIONS(3859), + [anon_sym_PIPE_PIPE] = ACTIONS(3859), + [anon_sym_QMARK_QMARK] = ACTIONS(3859), + [anon_sym_from] = ACTIONS(3857), + [anon_sym_into] = ACTIONS(3857), + [anon_sym_join] = ACTIONS(3857), + [anon_sym_on] = ACTIONS(3857), + [anon_sym_equals] = ACTIONS(3857), + [anon_sym_let] = ACTIONS(3857), + [anon_sym_orderby] = ACTIONS(3857), + [anon_sym_ascending] = ACTIONS(3857), + [anon_sym_descending] = ACTIONS(3857), + [anon_sym_group] = ACTIONS(3857), + [anon_sym_by] = ACTIONS(3857), + [anon_sym_select] = ACTIONS(3857), + [anon_sym_as] = ACTIONS(3863), + [anon_sym_is] = ACTIONS(3863), + [anon_sym_DASH_GT] = ACTIONS(3859), + [anon_sym_with] = ACTIONS(3863), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -425404,14 +425066,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2466] = { - [sym_parameter_list] = STATE(7311), - [sym_positional_pattern_clause] = STATE(2528), - [sym_property_pattern_clause] = STATE(2598), - [sym__variable_designation] = STATE(3346), - [sym_parenthesized_variable_designation] = STATE(3340), - [sym__lambda_parameters] = STATE(7536), - [sym_identifier] = STATE(3342), - [sym__reserved_identifier] = STATE(3177), + [sym_parameter_list] = STATE(7531), + [sym_positional_pattern_clause] = STATE(2546), + [sym_property_pattern_clause] = STATE(2599), + [sym__variable_designation] = STATE(3693), + [sym_parenthesized_variable_designation] = STATE(3688), + [sym__lambda_parameters] = STATE(7378), + [sym_identifier] = STATE(3657), + [sym__reserved_identifier] = STATE(2354), [sym_preproc_region] = STATE(2466), [sym_preproc_endregion] = STATE(2466), [sym_preproc_line] = STATE(2466), @@ -425421,67 +425083,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), - [sym__identifier_token] = ACTIONS(3875), - [anon_sym_alias] = ACTIONS(3877), - [anon_sym_global] = ACTIONS(3877), - [anon_sym_LBRACK] = ACTIONS(3893), - [anon_sym_COLON] = ACTIONS(3893), - [anon_sym_LPAREN] = ACTIONS(3893), - [anon_sym_LBRACE] = ACTIONS(3881), - [anon_sym_file] = ACTIONS(3877), - [anon_sym_LT] = ACTIONS(3895), - [anon_sym_GT] = ACTIONS(3895), - [anon_sym_where] = ACTIONS(3877), - [anon_sym_QMARK] = ACTIONS(3895), - [anon_sym_notnull] = ACTIONS(3877), - [anon_sym_unmanaged] = ACTIONS(3877), - [anon_sym_BANG] = ACTIONS(3895), - [anon_sym_PLUS_PLUS] = ACTIONS(3893), - [anon_sym_DASH_DASH] = ACTIONS(3893), - [anon_sym_PLUS] = ACTIONS(3895), - [anon_sym_DASH] = ACTIONS(3895), - [anon_sym_STAR] = ACTIONS(3893), - [anon_sym_SLASH] = ACTIONS(3895), - [anon_sym_PERCENT] = ACTIONS(3893), - [anon_sym_CARET] = ACTIONS(3893), - [anon_sym_PIPE] = ACTIONS(3895), - [anon_sym_AMP] = ACTIONS(3895), - [anon_sym_LT_LT] = ACTIONS(3893), - [anon_sym_GT_GT] = ACTIONS(3895), - [anon_sym_GT_GT_GT] = ACTIONS(3893), - [anon_sym_EQ_EQ] = ACTIONS(3893), - [anon_sym_BANG_EQ] = ACTIONS(3893), - [anon_sym_GT_EQ] = ACTIONS(3893), - [anon_sym_LT_EQ] = ACTIONS(3893), - [anon_sym_DOT] = ACTIONS(3895), - [anon_sym_scoped] = ACTIONS(3877), - [anon_sym_var] = ACTIONS(3877), - [anon_sym_yield] = ACTIONS(3877), - [anon_sym_switch] = ACTIONS(3895), - [anon_sym_when] = ACTIONS(3895), - [sym_discard] = ACTIONS(3885), - [anon_sym_DOT_DOT] = ACTIONS(3893), - [anon_sym_and] = ACTIONS(3895), - [anon_sym_or] = ACTIONS(3895), - [anon_sym_AMP_AMP] = ACTIONS(3893), - [anon_sym_PIPE_PIPE] = ACTIONS(3893), - [anon_sym_QMARK_QMARK] = ACTIONS(3893), - [anon_sym_from] = ACTIONS(3877), - [anon_sym_into] = ACTIONS(3895), - [anon_sym_join] = ACTIONS(3877), - [anon_sym_on] = ACTIONS(3877), - [anon_sym_equals] = ACTIONS(3877), - [anon_sym_let] = ACTIONS(3877), - [anon_sym_orderby] = ACTIONS(3877), - [anon_sym_ascending] = ACTIONS(3877), - [anon_sym_descending] = ACTIONS(3877), - [anon_sym_group] = ACTIONS(3877), - [anon_sym_by] = ACTIONS(3877), - [anon_sym_select] = ACTIONS(3877), - [anon_sym_as] = ACTIONS(3895), - [anon_sym_is] = ACTIONS(3895), - [anon_sym_DASH_GT] = ACTIONS(3893), - [anon_sym_with] = ACTIONS(3895), + [sym__identifier_token] = ACTIONS(4080), + [anon_sym_alias] = ACTIONS(4082), + [anon_sym_global] = ACTIONS(4082), + [anon_sym_LBRACK] = ACTIONS(3859), + [anon_sym_COMMA] = ACTIONS(3859), + [anon_sym_LPAREN] = ACTIONS(3859), + [anon_sym_LBRACE] = ACTIONS(3861), + [anon_sym_file] = ACTIONS(4082), + [anon_sym_LT] = ACTIONS(3863), + [anon_sym_GT] = ACTIONS(3863), + [anon_sym_where] = ACTIONS(3863), + [anon_sym_QMARK] = ACTIONS(3863), + [anon_sym_notnull] = ACTIONS(4082), + [anon_sym_unmanaged] = ACTIONS(4082), + [anon_sym_BANG] = ACTIONS(3863), + [anon_sym_PLUS_PLUS] = ACTIONS(3859), + [anon_sym_DASH_DASH] = ACTIONS(3859), + [anon_sym_PLUS] = ACTIONS(3863), + [anon_sym_DASH] = ACTIONS(3863), + [anon_sym_STAR] = ACTIONS(3859), + [anon_sym_SLASH] = ACTIONS(3863), + [anon_sym_PERCENT] = ACTIONS(3859), + [anon_sym_CARET] = ACTIONS(3859), + [anon_sym_PIPE] = ACTIONS(3863), + [anon_sym_AMP] = ACTIONS(3863), + [anon_sym_LT_LT] = ACTIONS(3859), + [anon_sym_GT_GT] = ACTIONS(3863), + [anon_sym_GT_GT_GT] = ACTIONS(3859), + [anon_sym_EQ_EQ] = ACTIONS(3859), + [anon_sym_BANG_EQ] = ACTIONS(3859), + [anon_sym_GT_EQ] = ACTIONS(3859), + [anon_sym_LT_EQ] = ACTIONS(3859), + [anon_sym_DOT] = ACTIONS(3863), + [anon_sym_scoped] = ACTIONS(4082), + [anon_sym_var] = ACTIONS(4082), + [anon_sym_yield] = ACTIONS(4082), + [anon_sym_switch] = ACTIONS(3863), + [anon_sym_when] = ACTIONS(4082), + [sym_discard] = ACTIONS(4183), + [anon_sym_DOT_DOT] = ACTIONS(3859), + [anon_sym_and] = ACTIONS(3863), + [anon_sym_or] = ACTIONS(3863), + [anon_sym_AMP_AMP] = ACTIONS(3859), + [anon_sym_PIPE_PIPE] = ACTIONS(3859), + [anon_sym_QMARK_QMARK] = ACTIONS(3859), + [anon_sym_from] = ACTIONS(3863), + [anon_sym_into] = ACTIONS(4082), + [anon_sym_join] = ACTIONS(3863), + [anon_sym_on] = ACTIONS(4082), + [anon_sym_equals] = ACTIONS(4082), + [anon_sym_let] = ACTIONS(3863), + [anon_sym_orderby] = ACTIONS(3863), + [anon_sym_ascending] = ACTIONS(3863), + [anon_sym_descending] = ACTIONS(3863), + [anon_sym_group] = ACTIONS(3863), + [anon_sym_by] = ACTIONS(4082), + [anon_sym_select] = ACTIONS(3863), + [anon_sym_as] = ACTIONS(3863), + [anon_sym_is] = ACTIONS(3863), + [anon_sym_DASH_GT] = ACTIONS(3859), + [anon_sym_with] = ACTIONS(3863), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -425494,14 +425156,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2467] = { - [sym_parameter_list] = STATE(7311), - [sym_positional_pattern_clause] = STATE(2559), - [sym_property_pattern_clause] = STATE(2632), - [sym__variable_designation] = STATE(3782), - [sym_parenthesized_variable_designation] = STATE(3779), - [sym__lambda_parameters] = STATE(7536), - [sym_identifier] = STATE(3689), - [sym__reserved_identifier] = STATE(2361), [sym_preproc_region] = STATE(2467), [sym_preproc_endregion] = STATE(2467), [sym_preproc_line] = STATE(2467), @@ -425511,67 +425165,75 @@ 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), - [sym__identifier_token] = ACTIONS(4058), - [anon_sym_alias] = ACTIONS(4060), - [anon_sym_global] = ACTIONS(4060), - [anon_sym_LBRACK] = ACTIONS(3893), - [anon_sym_COMMA] = ACTIONS(3893), - [anon_sym_LPAREN] = ACTIONS(3893), - [anon_sym_LBRACE] = ACTIONS(3881), - [anon_sym_file] = ACTIONS(4060), - [anon_sym_LT] = ACTIONS(3895), - [anon_sym_GT] = ACTIONS(3895), - [anon_sym_where] = ACTIONS(3895), - [anon_sym_QMARK] = ACTIONS(3895), - [anon_sym_notnull] = ACTIONS(4060), - [anon_sym_unmanaged] = ACTIONS(4060), - [anon_sym_BANG] = ACTIONS(3895), - [anon_sym_PLUS_PLUS] = ACTIONS(3893), - [anon_sym_DASH_DASH] = ACTIONS(3893), - [anon_sym_PLUS] = ACTIONS(3895), - [anon_sym_DASH] = ACTIONS(3895), - [anon_sym_STAR] = ACTIONS(3893), - [anon_sym_SLASH] = ACTIONS(3895), - [anon_sym_PERCENT] = ACTIONS(3893), - [anon_sym_CARET] = ACTIONS(3893), - [anon_sym_PIPE] = ACTIONS(3895), - [anon_sym_AMP] = ACTIONS(3895), - [anon_sym_LT_LT] = ACTIONS(3893), - [anon_sym_GT_GT] = ACTIONS(3895), - [anon_sym_GT_GT_GT] = ACTIONS(3893), - [anon_sym_EQ_EQ] = ACTIONS(3893), - [anon_sym_BANG_EQ] = ACTIONS(3893), - [anon_sym_GT_EQ] = ACTIONS(3893), - [anon_sym_LT_EQ] = ACTIONS(3893), - [anon_sym_DOT] = ACTIONS(3895), - [anon_sym_scoped] = ACTIONS(4060), - [anon_sym_var] = ACTIONS(4060), - [anon_sym_yield] = ACTIONS(4060), - [anon_sym_switch] = ACTIONS(3895), - [anon_sym_when] = ACTIONS(4060), - [sym_discard] = ACTIONS(4207), - [anon_sym_DOT_DOT] = ACTIONS(3893), - [anon_sym_and] = ACTIONS(3895), - [anon_sym_or] = ACTIONS(3895), - [anon_sym_AMP_AMP] = ACTIONS(3893), - [anon_sym_PIPE_PIPE] = ACTIONS(3893), - [anon_sym_QMARK_QMARK] = ACTIONS(3893), - [anon_sym_from] = ACTIONS(3895), - [anon_sym_into] = ACTIONS(3895), - [anon_sym_join] = ACTIONS(3895), - [anon_sym_on] = ACTIONS(4060), - [anon_sym_equals] = ACTIONS(4060), - [anon_sym_let] = ACTIONS(3895), - [anon_sym_orderby] = ACTIONS(3895), - [anon_sym_ascending] = ACTIONS(3895), - [anon_sym_descending] = ACTIONS(3895), - [anon_sym_group] = ACTIONS(3895), - [anon_sym_by] = ACTIONS(4060), - [anon_sym_select] = ACTIONS(3895), - [anon_sym_as] = ACTIONS(3895), - [anon_sym_is] = ACTIONS(3895), - [anon_sym_DASH_GT] = ACTIONS(3893), - [anon_sym_with] = ACTIONS(3895), + [anon_sym_SEMI] = ACTIONS(4128), + [anon_sym_EQ] = ACTIONS(4130), + [anon_sym_LBRACK] = ACTIONS(4128), + [anon_sym_COLON] = ACTIONS(4128), + [anon_sym_COMMA] = ACTIONS(4128), + [anon_sym_RBRACK] = ACTIONS(4128), + [anon_sym_LPAREN] = ACTIONS(4128), + [anon_sym_RPAREN] = ACTIONS(4128), + [anon_sym_RBRACE] = ACTIONS(4128), + [anon_sym_LT] = ACTIONS(4130), + [anon_sym_GT] = ACTIONS(4130), + [anon_sym_in] = ACTIONS(4128), + [anon_sym_where] = ACTIONS(4128), + [anon_sym_QMARK] = ACTIONS(4130), + [anon_sym_BANG] = ACTIONS(4130), + [anon_sym_PLUS_PLUS] = ACTIONS(4128), + [anon_sym_DASH_DASH] = ACTIONS(4128), + [anon_sym_PLUS] = ACTIONS(4130), + [anon_sym_DASH] = ACTIONS(4130), + [anon_sym_STAR] = ACTIONS(4130), + [anon_sym_SLASH] = ACTIONS(4130), + [anon_sym_PERCENT] = ACTIONS(4130), + [anon_sym_CARET] = ACTIONS(4130), + [anon_sym_PIPE] = ACTIONS(4130), + [anon_sym_AMP] = ACTIONS(4130), + [anon_sym_LT_LT] = ACTIONS(4130), + [anon_sym_GT_GT] = ACTIONS(4130), + [anon_sym_GT_GT_GT] = ACTIONS(4130), + [anon_sym_EQ_EQ] = ACTIONS(4128), + [anon_sym_BANG_EQ] = ACTIONS(4128), + [anon_sym_GT_EQ] = ACTIONS(4128), + [anon_sym_LT_EQ] = ACTIONS(4128), + [anon_sym_DOT] = ACTIONS(4130), + [anon_sym_EQ_GT] = ACTIONS(4128), + [anon_sym_switch] = ACTIONS(4128), + [anon_sym_DOT_DOT] = ACTIONS(4128), + [anon_sym_and] = ACTIONS(4128), + [anon_sym_or] = ACTIONS(4130), + [anon_sym_PLUS_EQ] = ACTIONS(4128), + [anon_sym_DASH_EQ] = ACTIONS(4128), + [anon_sym_STAR_EQ] = ACTIONS(4128), + [anon_sym_SLASH_EQ] = ACTIONS(4128), + [anon_sym_PERCENT_EQ] = ACTIONS(4128), + [anon_sym_AMP_EQ] = ACTIONS(4128), + [anon_sym_CARET_EQ] = ACTIONS(4128), + [anon_sym_PIPE_EQ] = ACTIONS(4128), + [anon_sym_LT_LT_EQ] = ACTIONS(4128), + [anon_sym_GT_GT_EQ] = ACTIONS(4128), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(4128), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(4128), + [anon_sym_AMP_AMP] = ACTIONS(4128), + [anon_sym_PIPE_PIPE] = ACTIONS(4128), + [anon_sym_QMARK_QMARK] = ACTIONS(4130), + [anon_sym_from] = ACTIONS(4128), + [anon_sym_join] = ACTIONS(4128), + [anon_sym_on] = ACTIONS(4128), + [anon_sym_equals] = ACTIONS(4128), + [anon_sym_let] = ACTIONS(4128), + [anon_sym_orderby] = ACTIONS(4128), + [anon_sym_group] = ACTIONS(4128), + [anon_sym_by] = ACTIONS(4128), + [anon_sym_select] = ACTIONS(4128), + [anon_sym_as] = ACTIONS(4128), + [anon_sym_is] = ACTIONS(4128), + [anon_sym_DASH_GT] = ACTIONS(4128), + [anon_sym_with] = ACTIONS(4128), + [aux_sym_preproc_if_token3] = ACTIONS(4128), + [aux_sym_preproc_else_token1] = ACTIONS(4128), + [aux_sym_preproc_elif_token1] = ACTIONS(4128), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -425584,14 +425246,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2468] = { - [sym_parameter_list] = STATE(7311), - [sym_positional_pattern_clause] = STATE(2528), - [sym_property_pattern_clause] = STATE(2598), - [sym__variable_designation] = STATE(3346), - [sym_parenthesized_variable_designation] = STATE(3340), - [sym__lambda_parameters] = STATE(7536), - [sym_identifier] = STATE(5052), - [sym__reserved_identifier] = STATE(3177), + [sym_parameter_list] = STATE(7531), + [sym_positional_pattern_clause] = STATE(2280), + [sym_property_pattern_clause] = STATE(2326), + [sym__variable_designation] = STATE(3422), + [sym_parenthesized_variable_designation] = STATE(3352), + [sym__lambda_parameters] = STATE(7378), + [sym_identifier] = STATE(4862), + [sym__reserved_identifier] = STATE(3199), [sym_preproc_region] = STATE(2468), [sym_preproc_endregion] = STATE(2468), [sym_preproc_line] = STATE(2468), @@ -425601,67 +425263,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(3875), - [anon_sym_alias] = ACTIONS(3877), - [anon_sym_global] = ACTIONS(3877), - [anon_sym_LBRACK] = ACTIONS(3879), - [anon_sym_LPAREN] = ACTIONS(3879), - [anon_sym_LBRACE] = ACTIONS(3881), - [anon_sym_file] = ACTIONS(3877), - [anon_sym_LT] = ACTIONS(3883), - [anon_sym_GT] = ACTIONS(3883), - [anon_sym_where] = ACTIONS(3877), - [anon_sym_QMARK] = ACTIONS(3883), - [anon_sym_notnull] = ACTIONS(3877), - [anon_sym_unmanaged] = ACTIONS(3877), - [anon_sym_BANG] = ACTIONS(3883), - [anon_sym_PLUS_PLUS] = ACTIONS(3879), - [anon_sym_DASH_DASH] = ACTIONS(3879), - [anon_sym_PLUS] = ACTIONS(3883), - [anon_sym_DASH] = ACTIONS(3883), - [anon_sym_STAR] = ACTIONS(3879), - [anon_sym_SLASH] = ACTIONS(3883), - [anon_sym_PERCENT] = ACTIONS(3879), - [anon_sym_CARET] = ACTIONS(3879), - [anon_sym_PIPE] = ACTIONS(3883), - [anon_sym_AMP] = ACTIONS(3883), - [anon_sym_LT_LT] = ACTIONS(3879), - [anon_sym_GT_GT] = ACTIONS(3883), - [anon_sym_GT_GT_GT] = ACTIONS(3879), - [anon_sym_EQ_EQ] = ACTIONS(3879), - [anon_sym_BANG_EQ] = ACTIONS(3879), - [anon_sym_GT_EQ] = ACTIONS(3879), - [anon_sym_LT_EQ] = ACTIONS(3879), - [anon_sym_DOT] = ACTIONS(3883), - [anon_sym_scoped] = ACTIONS(3877), - [anon_sym_EQ_GT] = ACTIONS(3879), - [anon_sym_var] = ACTIONS(3877), - [anon_sym_yield] = ACTIONS(3877), - [anon_sym_switch] = ACTIONS(3883), - [anon_sym_when] = ACTIONS(3883), - [sym_discard] = ACTIONS(3885), - [anon_sym_DOT_DOT] = ACTIONS(3879), - [anon_sym_and] = ACTIONS(3883), - [anon_sym_or] = ACTIONS(3883), - [anon_sym_AMP_AMP] = ACTIONS(3879), - [anon_sym_PIPE_PIPE] = ACTIONS(3879), - [anon_sym_QMARK_QMARK] = ACTIONS(3879), - [anon_sym_from] = ACTIONS(3877), - [anon_sym_into] = ACTIONS(3883), - [anon_sym_join] = ACTIONS(3877), - [anon_sym_on] = ACTIONS(3877), - [anon_sym_equals] = ACTIONS(3877), - [anon_sym_let] = ACTIONS(3877), - [anon_sym_orderby] = ACTIONS(3877), - [anon_sym_ascending] = ACTIONS(3877), - [anon_sym_descending] = ACTIONS(3877), - [anon_sym_group] = ACTIONS(3877), - [anon_sym_by] = ACTIONS(3877), - [anon_sym_select] = ACTIONS(3877), - [anon_sym_as] = ACTIONS(3883), - [anon_sym_is] = ACTIONS(3883), - [anon_sym_DASH_GT] = ACTIONS(3879), - [anon_sym_with] = ACTIONS(3883), + [sym__identifier_token] = ACTIONS(3855), + [anon_sym_alias] = ACTIONS(3857), + [anon_sym_global] = ACTIONS(3857), + [anon_sym_LBRACK] = ACTIONS(3859), + [anon_sym_LPAREN] = ACTIONS(3859), + [anon_sym_LBRACE] = ACTIONS(3861), + [anon_sym_file] = ACTIONS(3857), + [anon_sym_LT] = ACTIONS(3863), + [anon_sym_GT] = ACTIONS(3863), + [anon_sym_where] = ACTIONS(3857), + [anon_sym_QMARK] = ACTIONS(3863), + [anon_sym_notnull] = ACTIONS(3857), + [anon_sym_unmanaged] = ACTIONS(3857), + [anon_sym_BANG] = ACTIONS(3863), + [anon_sym_PLUS_PLUS] = ACTIONS(3859), + [anon_sym_DASH_DASH] = ACTIONS(3859), + [anon_sym_PLUS] = ACTIONS(3863), + [anon_sym_DASH] = ACTIONS(3863), + [anon_sym_STAR] = ACTIONS(3859), + [anon_sym_SLASH] = ACTIONS(3863), + [anon_sym_PERCENT] = ACTIONS(3859), + [anon_sym_CARET] = ACTIONS(3859), + [anon_sym_PIPE] = ACTIONS(3863), + [anon_sym_AMP] = ACTIONS(3863), + [anon_sym_LT_LT] = ACTIONS(3859), + [anon_sym_GT_GT] = ACTIONS(3863), + [anon_sym_GT_GT_GT] = ACTIONS(3859), + [anon_sym_EQ_EQ] = ACTIONS(3859), + [anon_sym_BANG_EQ] = ACTIONS(3859), + [anon_sym_GT_EQ] = ACTIONS(3859), + [anon_sym_LT_EQ] = ACTIONS(3859), + [anon_sym_DOT] = ACTIONS(3863), + [anon_sym_scoped] = ACTIONS(3857), + [anon_sym_EQ_GT] = ACTIONS(3859), + [anon_sym_var] = ACTIONS(3857), + [anon_sym_yield] = ACTIONS(3857), + [anon_sym_switch] = ACTIONS(3863), + [anon_sym_when] = ACTIONS(3857), + [sym_discard] = ACTIONS(3877), + [anon_sym_DOT_DOT] = ACTIONS(3859), + [anon_sym_and] = ACTIONS(3863), + [anon_sym_or] = ACTIONS(3863), + [anon_sym_AMP_AMP] = ACTIONS(3859), + [anon_sym_PIPE_PIPE] = ACTIONS(3859), + [anon_sym_QMARK_QMARK] = ACTIONS(3859), + [anon_sym_from] = ACTIONS(3857), + [anon_sym_into] = ACTIONS(3857), + [anon_sym_join] = ACTIONS(3857), + [anon_sym_on] = ACTIONS(3857), + [anon_sym_equals] = ACTIONS(3857), + [anon_sym_let] = ACTIONS(3857), + [anon_sym_orderby] = ACTIONS(3857), + [anon_sym_ascending] = ACTIONS(3857), + [anon_sym_descending] = ACTIONS(3857), + [anon_sym_group] = ACTIONS(3857), + [anon_sym_by] = ACTIONS(3857), + [anon_sym_select] = ACTIONS(3857), + [anon_sym_as] = ACTIONS(3863), + [anon_sym_is] = ACTIONS(3863), + [anon_sym_DASH_GT] = ACTIONS(3859), + [anon_sym_with] = ACTIONS(3863), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -425674,14 +425336,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2469] = { - [sym_parameter_list] = STATE(7311), - [sym_positional_pattern_clause] = STATE(2559), - [sym_property_pattern_clause] = STATE(2632), - [sym__variable_designation] = STATE(3782), - [sym_parenthesized_variable_designation] = STATE(3779), - [sym__lambda_parameters] = STATE(7536), - [sym_identifier] = STATE(3689), - [sym__reserved_identifier] = STATE(2361), + [sym_parameter_list] = STATE(7531), + [sym_positional_pattern_clause] = STATE(2527), + [sym_property_pattern_clause] = STATE(2574), + [sym__variable_designation] = STATE(3347), + [sym_parenthesized_variable_designation] = STATE(3344), + [sym__lambda_parameters] = STATE(7378), + [sym_identifier] = STATE(4862), + [sym__reserved_identifier] = STATE(3199), [sym_preproc_region] = STATE(2469), [sym_preproc_endregion] = STATE(2469), [sym_preproc_line] = STATE(2469), @@ -425691,67 +425353,67 @@ 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(4058), - [anon_sym_alias] = ACTIONS(4060), - [anon_sym_global] = ACTIONS(4060), - [anon_sym_LBRACK] = ACTIONS(3879), - [anon_sym_COMMA] = ACTIONS(3879), - [anon_sym_LPAREN] = ACTIONS(3879), - [anon_sym_LBRACE] = ACTIONS(3881), - [anon_sym_file] = ACTIONS(4060), - [anon_sym_LT] = ACTIONS(3883), - [anon_sym_GT] = ACTIONS(3883), - [anon_sym_where] = ACTIONS(3883), - [anon_sym_QMARK] = ACTIONS(3883), - [anon_sym_notnull] = ACTIONS(4060), - [anon_sym_unmanaged] = ACTIONS(4060), - [anon_sym_BANG] = ACTIONS(3883), - [anon_sym_PLUS_PLUS] = ACTIONS(3879), - [anon_sym_DASH_DASH] = ACTIONS(3879), - [anon_sym_PLUS] = ACTIONS(3883), - [anon_sym_DASH] = ACTIONS(3883), - [anon_sym_STAR] = ACTIONS(3879), - [anon_sym_SLASH] = ACTIONS(3883), - [anon_sym_PERCENT] = ACTIONS(3879), - [anon_sym_CARET] = ACTIONS(3879), - [anon_sym_PIPE] = ACTIONS(3883), - [anon_sym_AMP] = ACTIONS(3883), - [anon_sym_LT_LT] = ACTIONS(3879), - [anon_sym_GT_GT] = ACTIONS(3883), - [anon_sym_GT_GT_GT] = ACTIONS(3879), - [anon_sym_EQ_EQ] = ACTIONS(3879), - [anon_sym_BANG_EQ] = ACTIONS(3879), - [anon_sym_GT_EQ] = ACTIONS(3879), - [anon_sym_LT_EQ] = ACTIONS(3879), - [anon_sym_DOT] = ACTIONS(3883), - [anon_sym_scoped] = ACTIONS(4060), - [anon_sym_var] = ACTIONS(4060), - [anon_sym_yield] = ACTIONS(4060), - [anon_sym_switch] = ACTIONS(3883), - [anon_sym_when] = ACTIONS(4060), - [sym_discard] = ACTIONS(4207), - [anon_sym_DOT_DOT] = ACTIONS(3879), - [anon_sym_and] = ACTIONS(3883), - [anon_sym_or] = ACTIONS(3883), - [anon_sym_AMP_AMP] = ACTIONS(3879), - [anon_sym_PIPE_PIPE] = ACTIONS(3879), - [anon_sym_QMARK_QMARK] = ACTIONS(3879), - [anon_sym_from] = ACTIONS(3883), - [anon_sym_into] = ACTIONS(3883), - [anon_sym_join] = ACTIONS(3883), - [anon_sym_on] = ACTIONS(4060), - [anon_sym_equals] = ACTIONS(4060), - [anon_sym_let] = ACTIONS(3883), - [anon_sym_orderby] = ACTIONS(3883), - [anon_sym_ascending] = ACTIONS(3883), - [anon_sym_descending] = ACTIONS(3883), - [anon_sym_group] = ACTIONS(3883), - [anon_sym_by] = ACTIONS(4060), - [anon_sym_select] = ACTIONS(3883), - [anon_sym_as] = ACTIONS(3883), - [anon_sym_is] = ACTIONS(3883), - [anon_sym_DASH_GT] = ACTIONS(3879), - [anon_sym_with] = ACTIONS(3883), + [sym__identifier_token] = ACTIONS(3855), + [anon_sym_alias] = ACTIONS(3857), + [anon_sym_global] = ACTIONS(3857), + [anon_sym_LBRACK] = ACTIONS(3859), + [anon_sym_LPAREN] = ACTIONS(3859), + [anon_sym_LBRACE] = ACTIONS(3861), + [anon_sym_file] = ACTIONS(3857), + [anon_sym_LT] = ACTIONS(3863), + [anon_sym_GT] = ACTIONS(3863), + [anon_sym_where] = ACTIONS(3857), + [anon_sym_QMARK] = ACTIONS(3863), + [anon_sym_notnull] = ACTIONS(3857), + [anon_sym_unmanaged] = ACTIONS(3857), + [anon_sym_BANG] = ACTIONS(3863), + [anon_sym_PLUS_PLUS] = ACTIONS(3859), + [anon_sym_DASH_DASH] = ACTIONS(3859), + [anon_sym_PLUS] = ACTIONS(3863), + [anon_sym_DASH] = ACTIONS(3863), + [anon_sym_STAR] = ACTIONS(3859), + [anon_sym_SLASH] = ACTIONS(3863), + [anon_sym_PERCENT] = ACTIONS(3859), + [anon_sym_CARET] = ACTIONS(3859), + [anon_sym_PIPE] = ACTIONS(3863), + [anon_sym_AMP] = ACTIONS(3863), + [anon_sym_LT_LT] = ACTIONS(3859), + [anon_sym_GT_GT] = ACTIONS(3863), + [anon_sym_GT_GT_GT] = ACTIONS(3859), + [anon_sym_EQ_EQ] = ACTIONS(3859), + [anon_sym_BANG_EQ] = ACTIONS(3859), + [anon_sym_GT_EQ] = ACTIONS(3859), + [anon_sym_LT_EQ] = ACTIONS(3859), + [anon_sym_DOT] = ACTIONS(3863), + [anon_sym_scoped] = ACTIONS(3857), + [anon_sym_EQ_GT] = ACTIONS(3859), + [anon_sym_var] = ACTIONS(3857), + [anon_sym_yield] = ACTIONS(3857), + [anon_sym_switch] = ACTIONS(3863), + [anon_sym_when] = ACTIONS(3863), + [sym_discard] = ACTIONS(3865), + [anon_sym_DOT_DOT] = ACTIONS(3859), + [anon_sym_and] = ACTIONS(3863), + [anon_sym_or] = ACTIONS(3863), + [anon_sym_AMP_AMP] = ACTIONS(3859), + [anon_sym_PIPE_PIPE] = ACTIONS(3859), + [anon_sym_QMARK_QMARK] = ACTIONS(3859), + [anon_sym_from] = ACTIONS(3857), + [anon_sym_into] = ACTIONS(3863), + [anon_sym_join] = ACTIONS(3857), + [anon_sym_on] = ACTIONS(3857), + [anon_sym_equals] = ACTIONS(3857), + [anon_sym_let] = ACTIONS(3857), + [anon_sym_orderby] = ACTIONS(3857), + [anon_sym_ascending] = ACTIONS(3857), + [anon_sym_descending] = ACTIONS(3857), + [anon_sym_group] = ACTIONS(3857), + [anon_sym_by] = ACTIONS(3857), + [anon_sym_select] = ACTIONS(3857), + [anon_sym_as] = ACTIONS(3863), + [anon_sym_is] = ACTIONS(3863), + [anon_sym_DASH_GT] = ACTIONS(3859), + [anon_sym_with] = ACTIONS(3863), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -425764,14 +425426,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2470] = { - [sym_parameter_list] = STATE(7311), - [sym_positional_pattern_clause] = STATE(2562), - [sym_property_pattern_clause] = STATE(2606), - [sym__variable_designation] = STATE(3782), - [sym_parenthesized_variable_designation] = STATE(3779), - [sym__lambda_parameters] = STATE(7536), - [sym_identifier] = STATE(3689), - [sym__reserved_identifier] = STATE(2361), + [sym_parameter_list] = STATE(7531), + [sym_positional_pattern_clause] = STATE(2548), + [sym_property_pattern_clause] = STATE(2624), + [sym__variable_designation] = STATE(3693), + [sym_parenthesized_variable_designation] = STATE(3688), + [sym__lambda_parameters] = STATE(7378), + [sym_identifier] = STATE(3657), + [sym__reserved_identifier] = STATE(2354), [sym_preproc_region] = STATE(2470), [sym_preproc_endregion] = STATE(2470), [sym_preproc_line] = STATE(2470), @@ -425781,67 +425443,67 @@ 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(4058), - [anon_sym_alias] = ACTIONS(4060), - [anon_sym_global] = ACTIONS(4060), - [anon_sym_LBRACK] = ACTIONS(3879), - [anon_sym_COMMA] = ACTIONS(3879), - [anon_sym_LPAREN] = ACTIONS(3879), - [anon_sym_LBRACE] = ACTIONS(3881), - [anon_sym_file] = ACTIONS(4060), - [anon_sym_LT] = ACTIONS(3883), - [anon_sym_GT] = ACTIONS(3883), - [anon_sym_where] = ACTIONS(3883), - [anon_sym_QMARK] = ACTIONS(3883), - [anon_sym_notnull] = ACTIONS(4060), - [anon_sym_unmanaged] = ACTIONS(4060), - [anon_sym_BANG] = ACTIONS(3883), - [anon_sym_PLUS_PLUS] = ACTIONS(3879), - [anon_sym_DASH_DASH] = ACTIONS(3879), - [anon_sym_PLUS] = ACTIONS(3883), - [anon_sym_DASH] = ACTIONS(3883), - [anon_sym_STAR] = ACTIONS(3879), - [anon_sym_SLASH] = ACTIONS(3883), - [anon_sym_PERCENT] = ACTIONS(3879), - [anon_sym_CARET] = ACTIONS(3879), - [anon_sym_PIPE] = ACTIONS(3883), - [anon_sym_AMP] = ACTIONS(3883), - [anon_sym_LT_LT] = ACTIONS(3879), - [anon_sym_GT_GT] = ACTIONS(3883), - [anon_sym_GT_GT_GT] = ACTIONS(3879), - [anon_sym_EQ_EQ] = ACTIONS(3879), - [anon_sym_BANG_EQ] = ACTIONS(3879), - [anon_sym_GT_EQ] = ACTIONS(3879), - [anon_sym_LT_EQ] = ACTIONS(3879), - [anon_sym_DOT] = ACTIONS(3883), - [anon_sym_scoped] = ACTIONS(4060), - [anon_sym_var] = ACTIONS(4060), - [anon_sym_yield] = ACTIONS(4060), - [anon_sym_switch] = ACTIONS(3883), - [anon_sym_when] = ACTIONS(4060), - [sym_discard] = ACTIONS(4207), - [anon_sym_DOT_DOT] = ACTIONS(3879), - [anon_sym_and] = ACTIONS(3883), - [anon_sym_or] = ACTIONS(3883), - [anon_sym_AMP_AMP] = ACTIONS(3879), - [anon_sym_PIPE_PIPE] = ACTIONS(3879), - [anon_sym_QMARK_QMARK] = ACTIONS(3879), - [anon_sym_from] = ACTIONS(3883), - [anon_sym_into] = ACTIONS(4060), - [anon_sym_join] = ACTIONS(3883), - [anon_sym_on] = ACTIONS(4060), - [anon_sym_equals] = ACTIONS(4060), - [anon_sym_let] = ACTIONS(3883), - [anon_sym_orderby] = ACTIONS(3883), - [anon_sym_ascending] = ACTIONS(3883), - [anon_sym_descending] = ACTIONS(3883), - [anon_sym_group] = ACTIONS(3883), - [anon_sym_by] = ACTIONS(4060), - [anon_sym_select] = ACTIONS(3883), - [anon_sym_as] = ACTIONS(3883), - [anon_sym_is] = ACTIONS(3883), - [anon_sym_DASH_GT] = ACTIONS(3879), - [anon_sym_with] = ACTIONS(3883), + [sym__identifier_token] = ACTIONS(4080), + [anon_sym_alias] = ACTIONS(4082), + [anon_sym_global] = ACTIONS(4082), + [anon_sym_LBRACK] = ACTIONS(3859), + [anon_sym_COMMA] = ACTIONS(3859), + [anon_sym_LPAREN] = ACTIONS(3859), + [anon_sym_LBRACE] = ACTIONS(3861), + [anon_sym_file] = ACTIONS(4082), + [anon_sym_LT] = ACTIONS(3863), + [anon_sym_GT] = ACTIONS(3863), + [anon_sym_where] = ACTIONS(3863), + [anon_sym_QMARK] = ACTIONS(3863), + [anon_sym_notnull] = ACTIONS(4082), + [anon_sym_unmanaged] = ACTIONS(4082), + [anon_sym_BANG] = ACTIONS(3863), + [anon_sym_PLUS_PLUS] = ACTIONS(3859), + [anon_sym_DASH_DASH] = ACTIONS(3859), + [anon_sym_PLUS] = ACTIONS(3863), + [anon_sym_DASH] = ACTIONS(3863), + [anon_sym_STAR] = ACTIONS(3859), + [anon_sym_SLASH] = ACTIONS(3863), + [anon_sym_PERCENT] = ACTIONS(3859), + [anon_sym_CARET] = ACTIONS(3859), + [anon_sym_PIPE] = ACTIONS(3863), + [anon_sym_AMP] = ACTIONS(3863), + [anon_sym_LT_LT] = ACTIONS(3859), + [anon_sym_GT_GT] = ACTIONS(3863), + [anon_sym_GT_GT_GT] = ACTIONS(3859), + [anon_sym_EQ_EQ] = ACTIONS(3859), + [anon_sym_BANG_EQ] = ACTIONS(3859), + [anon_sym_GT_EQ] = ACTIONS(3859), + [anon_sym_LT_EQ] = ACTIONS(3859), + [anon_sym_DOT] = ACTIONS(3863), + [anon_sym_scoped] = ACTIONS(4082), + [anon_sym_var] = ACTIONS(4082), + [anon_sym_yield] = ACTIONS(4082), + [anon_sym_switch] = ACTIONS(3863), + [anon_sym_when] = ACTIONS(4082), + [sym_discard] = ACTIONS(4183), + [anon_sym_DOT_DOT] = ACTIONS(3859), + [anon_sym_and] = ACTIONS(3863), + [anon_sym_or] = ACTIONS(3863), + [anon_sym_AMP_AMP] = ACTIONS(3859), + [anon_sym_PIPE_PIPE] = ACTIONS(3859), + [anon_sym_QMARK_QMARK] = ACTIONS(3859), + [anon_sym_from] = ACTIONS(3863), + [anon_sym_into] = ACTIONS(3863), + [anon_sym_join] = ACTIONS(3863), + [anon_sym_on] = ACTIONS(4082), + [anon_sym_equals] = ACTIONS(4082), + [anon_sym_let] = ACTIONS(3863), + [anon_sym_orderby] = ACTIONS(3863), + [anon_sym_ascending] = ACTIONS(3863), + [anon_sym_descending] = ACTIONS(3863), + [anon_sym_group] = ACTIONS(3863), + [anon_sym_by] = ACTIONS(4082), + [anon_sym_select] = ACTIONS(3863), + [anon_sym_as] = ACTIONS(3863), + [anon_sym_is] = ACTIONS(3863), + [anon_sym_DASH_GT] = ACTIONS(3859), + [anon_sym_with] = ACTIONS(3863), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -425854,14 +425516,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2471] = { - [sym_parameter_list] = STATE(7311), - [sym_positional_pattern_clause] = STATE(2562), - [sym_property_pattern_clause] = STATE(2606), - [sym__variable_designation] = STATE(3782), - [sym_parenthesized_variable_designation] = STATE(3779), - [sym__lambda_parameters] = STATE(7536), - [sym_identifier] = STATE(3689), - [sym__reserved_identifier] = STATE(2361), [sym_preproc_region] = STATE(2471), [sym_preproc_endregion] = STATE(2471), [sym_preproc_line] = STATE(2471), @@ -425871,87 +425525,87 @@ 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), - [sym__identifier_token] = ACTIONS(4058), - [anon_sym_alias] = ACTIONS(4060), - [anon_sym_global] = ACTIONS(4060), - [anon_sym_LBRACK] = ACTIONS(3893), - [anon_sym_COMMA] = ACTIONS(3893), - [anon_sym_LPAREN] = ACTIONS(3893), - [anon_sym_LBRACE] = ACTIONS(3881), - [anon_sym_file] = ACTIONS(4060), - [anon_sym_LT] = ACTIONS(3895), - [anon_sym_GT] = ACTIONS(3895), - [anon_sym_where] = ACTIONS(3895), - [anon_sym_QMARK] = ACTIONS(3895), - [anon_sym_notnull] = ACTIONS(4060), - [anon_sym_unmanaged] = ACTIONS(4060), - [anon_sym_BANG] = ACTIONS(3895), - [anon_sym_PLUS_PLUS] = ACTIONS(3893), - [anon_sym_DASH_DASH] = ACTIONS(3893), - [anon_sym_PLUS] = ACTIONS(3895), - [anon_sym_DASH] = ACTIONS(3895), - [anon_sym_STAR] = ACTIONS(3893), - [anon_sym_SLASH] = ACTIONS(3895), - [anon_sym_PERCENT] = ACTIONS(3893), - [anon_sym_CARET] = ACTIONS(3893), - [anon_sym_PIPE] = ACTIONS(3895), - [anon_sym_AMP] = ACTIONS(3895), - [anon_sym_LT_LT] = ACTIONS(3893), - [anon_sym_GT_GT] = ACTIONS(3895), - [anon_sym_GT_GT_GT] = ACTIONS(3893), - [anon_sym_EQ_EQ] = ACTIONS(3893), - [anon_sym_BANG_EQ] = ACTIONS(3893), - [anon_sym_GT_EQ] = ACTIONS(3893), - [anon_sym_LT_EQ] = ACTIONS(3893), - [anon_sym_DOT] = ACTIONS(3895), - [anon_sym_scoped] = ACTIONS(4060), - [anon_sym_var] = ACTIONS(4060), - [anon_sym_yield] = ACTIONS(4060), - [anon_sym_switch] = ACTIONS(3895), - [anon_sym_when] = ACTIONS(4060), - [sym_discard] = ACTIONS(4207), - [anon_sym_DOT_DOT] = ACTIONS(3893), - [anon_sym_and] = ACTIONS(3895), - [anon_sym_or] = ACTIONS(3895), - [anon_sym_AMP_AMP] = ACTIONS(3893), - [anon_sym_PIPE_PIPE] = ACTIONS(3893), - [anon_sym_QMARK_QMARK] = ACTIONS(3893), - [anon_sym_from] = ACTIONS(3895), - [anon_sym_into] = ACTIONS(4060), - [anon_sym_join] = ACTIONS(3895), - [anon_sym_on] = ACTIONS(4060), - [anon_sym_equals] = ACTIONS(4060), - [anon_sym_let] = ACTIONS(3895), - [anon_sym_orderby] = ACTIONS(3895), - [anon_sym_ascending] = ACTIONS(3895), - [anon_sym_descending] = ACTIONS(3895), - [anon_sym_group] = ACTIONS(3895), - [anon_sym_by] = ACTIONS(4060), - [anon_sym_select] = ACTIONS(3895), - [anon_sym_as] = ACTIONS(3895), - [anon_sym_is] = ACTIONS(3895), - [anon_sym_DASH_GT] = ACTIONS(3893), - [anon_sym_with] = ACTIONS(3895), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_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_SEMI] = ACTIONS(4120), + [anon_sym_EQ] = ACTIONS(4122), + [anon_sym_LBRACK] = ACTIONS(4120), + [anon_sym_COLON] = ACTIONS(4120), + [anon_sym_COMMA] = ACTIONS(4120), + [anon_sym_RBRACK] = ACTIONS(4120), + [anon_sym_LPAREN] = ACTIONS(4120), + [anon_sym_RPAREN] = ACTIONS(4120), + [anon_sym_RBRACE] = ACTIONS(4120), + [anon_sym_LT] = ACTIONS(4122), + [anon_sym_GT] = ACTIONS(4122), + [anon_sym_in] = ACTIONS(4120), + [anon_sym_where] = ACTIONS(4120), + [anon_sym_QMARK] = ACTIONS(4122), + [anon_sym_BANG] = ACTIONS(4122), + [anon_sym_PLUS_PLUS] = ACTIONS(4120), + [anon_sym_DASH_DASH] = ACTIONS(4120), + [anon_sym_PLUS] = ACTIONS(4122), + [anon_sym_DASH] = ACTIONS(4122), + [anon_sym_STAR] = ACTIONS(4122), + [anon_sym_SLASH] = ACTIONS(4122), + [anon_sym_PERCENT] = ACTIONS(4122), + [anon_sym_CARET] = ACTIONS(4122), + [anon_sym_PIPE] = ACTIONS(4122), + [anon_sym_AMP] = ACTIONS(4122), + [anon_sym_LT_LT] = ACTIONS(4122), + [anon_sym_GT_GT] = ACTIONS(4122), + [anon_sym_GT_GT_GT] = ACTIONS(4122), + [anon_sym_EQ_EQ] = ACTIONS(4120), + [anon_sym_BANG_EQ] = ACTIONS(4120), + [anon_sym_GT_EQ] = ACTIONS(4120), + [anon_sym_LT_EQ] = ACTIONS(4120), + [anon_sym_DOT] = ACTIONS(4122), + [anon_sym_EQ_GT] = ACTIONS(4120), + [anon_sym_switch] = ACTIONS(4120), + [anon_sym_DOT_DOT] = ACTIONS(4120), + [anon_sym_and] = ACTIONS(4120), + [anon_sym_or] = ACTIONS(4122), + [anon_sym_PLUS_EQ] = ACTIONS(4120), + [anon_sym_DASH_EQ] = ACTIONS(4120), + [anon_sym_STAR_EQ] = ACTIONS(4120), + [anon_sym_SLASH_EQ] = ACTIONS(4120), + [anon_sym_PERCENT_EQ] = ACTIONS(4120), + [anon_sym_AMP_EQ] = ACTIONS(4120), + [anon_sym_CARET_EQ] = ACTIONS(4120), + [anon_sym_PIPE_EQ] = ACTIONS(4120), + [anon_sym_LT_LT_EQ] = ACTIONS(4120), + [anon_sym_GT_GT_EQ] = ACTIONS(4120), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(4120), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(4120), + [anon_sym_AMP_AMP] = ACTIONS(4120), + [anon_sym_PIPE_PIPE] = ACTIONS(4120), + [anon_sym_QMARK_QMARK] = ACTIONS(4122), + [anon_sym_from] = ACTIONS(4120), + [anon_sym_join] = ACTIONS(4120), + [anon_sym_on] = ACTIONS(4120), + [anon_sym_equals] = ACTIONS(4120), + [anon_sym_let] = ACTIONS(4120), + [anon_sym_orderby] = ACTIONS(4120), + [anon_sym_group] = ACTIONS(4120), + [anon_sym_by] = ACTIONS(4120), + [anon_sym_select] = ACTIONS(4120), + [anon_sym_as] = ACTIONS(4120), + [anon_sym_is] = ACTIONS(4120), + [anon_sym_DASH_GT] = ACTIONS(4120), + [anon_sym_with] = ACTIONS(4120), + [aux_sym_preproc_if_token3] = ACTIONS(4120), + [aux_sym_preproc_else_token1] = ACTIONS(4120), + [aux_sym_preproc_elif_token1] = ACTIONS(4120), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), }, [2472] = { - [sym_parameter_list] = STATE(7311), - [sym_positional_pattern_clause] = STATE(2543), - [sym_property_pattern_clause] = STATE(2595), - [sym__variable_designation] = STATE(3492), - [sym_parenthesized_variable_designation] = STATE(3463), - [sym__lambda_parameters] = STATE(7536), - [sym_identifier] = STATE(3493), - [sym__reserved_identifier] = STATE(3177), [sym_preproc_region] = STATE(2472), [sym_preproc_endregion] = STATE(2472), [sym_preproc_line] = STATE(2472), @@ -425961,67 +425615,75 @@ 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(3875), - [anon_sym_alias] = ACTIONS(3877), - [anon_sym_global] = ACTIONS(3877), - [anon_sym_LBRACK] = ACTIONS(3893), - [anon_sym_COLON] = ACTIONS(3893), - [anon_sym_LPAREN] = ACTIONS(3893), - [anon_sym_LBRACE] = ACTIONS(3881), - [anon_sym_file] = ACTIONS(3877), - [anon_sym_LT] = ACTIONS(3895), - [anon_sym_GT] = ACTIONS(3895), - [anon_sym_where] = ACTIONS(3877), - [anon_sym_QMARK] = ACTIONS(3895), - [anon_sym_notnull] = ACTIONS(3877), - [anon_sym_unmanaged] = ACTIONS(3877), - [anon_sym_BANG] = ACTIONS(3895), - [anon_sym_PLUS_PLUS] = ACTIONS(3893), - [anon_sym_DASH_DASH] = ACTIONS(3893), - [anon_sym_PLUS] = ACTIONS(3895), - [anon_sym_DASH] = ACTIONS(3895), - [anon_sym_STAR] = ACTIONS(3893), - [anon_sym_SLASH] = ACTIONS(3895), - [anon_sym_PERCENT] = ACTIONS(3893), - [anon_sym_CARET] = ACTIONS(3893), - [anon_sym_PIPE] = ACTIONS(3895), - [anon_sym_AMP] = ACTIONS(3895), - [anon_sym_LT_LT] = ACTIONS(3893), - [anon_sym_GT_GT] = ACTIONS(3895), - [anon_sym_GT_GT_GT] = ACTIONS(3893), - [anon_sym_EQ_EQ] = ACTIONS(3893), - [anon_sym_BANG_EQ] = ACTIONS(3893), - [anon_sym_GT_EQ] = ACTIONS(3893), - [anon_sym_LT_EQ] = ACTIONS(3893), - [anon_sym_DOT] = ACTIONS(3895), - [anon_sym_scoped] = ACTIONS(3877), - [anon_sym_var] = ACTIONS(3877), - [anon_sym_yield] = ACTIONS(3877), - [anon_sym_switch] = ACTIONS(3895), - [anon_sym_when] = ACTIONS(3895), - [sym_discard] = ACTIONS(3897), - [anon_sym_DOT_DOT] = ACTIONS(3893), - [anon_sym_and] = ACTIONS(3895), - [anon_sym_or] = ACTIONS(3895), - [anon_sym_AMP_AMP] = ACTIONS(3893), - [anon_sym_PIPE_PIPE] = ACTIONS(3893), - [anon_sym_QMARK_QMARK] = ACTIONS(3893), - [anon_sym_from] = ACTIONS(3877), - [anon_sym_into] = ACTIONS(3877), - [anon_sym_join] = ACTIONS(3877), - [anon_sym_on] = ACTIONS(3877), - [anon_sym_equals] = ACTIONS(3877), - [anon_sym_let] = ACTIONS(3877), - [anon_sym_orderby] = ACTIONS(3877), - [anon_sym_ascending] = ACTIONS(3877), - [anon_sym_descending] = ACTIONS(3877), - [anon_sym_group] = ACTIONS(3877), - [anon_sym_by] = ACTIONS(3877), - [anon_sym_select] = ACTIONS(3877), - [anon_sym_as] = ACTIONS(3895), - [anon_sym_is] = ACTIONS(3895), - [anon_sym_DASH_GT] = ACTIONS(3893), - [anon_sym_with] = ACTIONS(3895), + [anon_sym_SEMI] = ACTIONS(3711), + [anon_sym_EQ] = ACTIONS(3696), + [anon_sym_LBRACK] = ACTIONS(3711), + [anon_sym_COLON] = ACTIONS(3711), + [anon_sym_COMMA] = ACTIONS(3711), + [anon_sym_RBRACK] = ACTIONS(3711), + [anon_sym_LPAREN] = ACTIONS(3711), + [anon_sym_RPAREN] = ACTIONS(3711), + [anon_sym_RBRACE] = ACTIONS(3711), + [anon_sym_LT] = ACTIONS(3696), + [anon_sym_GT] = ACTIONS(3696), + [anon_sym_in] = ACTIONS(3711), + [anon_sym_where] = ACTIONS(3711), + [anon_sym_QMARK] = ACTIONS(3696), + [anon_sym_BANG] = ACTIONS(3696), + [anon_sym_PLUS_PLUS] = ACTIONS(3711), + [anon_sym_DASH_DASH] = ACTIONS(3711), + [anon_sym_PLUS] = ACTIONS(3696), + [anon_sym_DASH] = ACTIONS(3696), + [anon_sym_STAR] = ACTIONS(3696), + [anon_sym_SLASH] = ACTIONS(3696), + [anon_sym_PERCENT] = ACTIONS(3696), + [anon_sym_CARET] = ACTIONS(3696), + [anon_sym_PIPE] = ACTIONS(3696), + [anon_sym_AMP] = ACTIONS(3696), + [anon_sym_LT_LT] = ACTIONS(3696), + [anon_sym_GT_GT] = ACTIONS(3696), + [anon_sym_GT_GT_GT] = ACTIONS(3696), + [anon_sym_EQ_EQ] = ACTIONS(3711), + [anon_sym_BANG_EQ] = ACTIONS(3711), + [anon_sym_GT_EQ] = ACTIONS(3711), + [anon_sym_LT_EQ] = ACTIONS(3711), + [anon_sym_DOT] = ACTIONS(3696), + [anon_sym_EQ_GT] = ACTIONS(3711), + [anon_sym_switch] = ACTIONS(3711), + [anon_sym_DOT_DOT] = ACTIONS(3711), + [anon_sym_and] = ACTIONS(3711), + [anon_sym_or] = ACTIONS(3696), + [anon_sym_PLUS_EQ] = ACTIONS(3711), + [anon_sym_DASH_EQ] = ACTIONS(3711), + [anon_sym_STAR_EQ] = ACTIONS(3711), + [anon_sym_SLASH_EQ] = ACTIONS(3711), + [anon_sym_PERCENT_EQ] = ACTIONS(3711), + [anon_sym_AMP_EQ] = ACTIONS(3711), + [anon_sym_CARET_EQ] = ACTIONS(3711), + [anon_sym_PIPE_EQ] = ACTIONS(3711), + [anon_sym_LT_LT_EQ] = ACTIONS(3711), + [anon_sym_GT_GT_EQ] = ACTIONS(3711), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3711), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3711), + [anon_sym_AMP_AMP] = ACTIONS(3711), + [anon_sym_PIPE_PIPE] = ACTIONS(3711), + [anon_sym_QMARK_QMARK] = ACTIONS(3696), + [anon_sym_from] = 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_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(3711), + [anon_sym_with] = ACTIONS(3711), + [aux_sym_preproc_if_token3] = ACTIONS(3711), + [aux_sym_preproc_else_token1] = ACTIONS(3711), + [aux_sym_preproc_elif_token1] = ACTIONS(3711), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -426034,14 +425696,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2473] = { - [sym_parameter_list] = STATE(7311), - [sym_positional_pattern_clause] = STATE(2562), - [sym_property_pattern_clause] = STATE(2606), - [sym__variable_designation] = STATE(3782), - [sym_parenthesized_variable_designation] = STATE(3779), - [sym__lambda_parameters] = STATE(7536), - [sym_identifier] = STATE(3689), - [sym__reserved_identifier] = STATE(2361), + [sym_parameter_list] = STATE(7531), + [sym_positional_pattern_clause] = STATE(2249), + [sym_property_pattern_clause] = STATE(2304), + [sym__variable_designation] = STATE(3347), + [sym_parenthesized_variable_designation] = STATE(3344), + [sym__lambda_parameters] = STATE(7378), + [sym_identifier] = STATE(4862), + [sym__reserved_identifier] = STATE(3199), [sym_preproc_region] = STATE(2473), [sym_preproc_endregion] = STATE(2473), [sym_preproc_line] = STATE(2473), @@ -426051,67 +425713,67 @@ 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(4058), - [anon_sym_alias] = ACTIONS(4060), - [anon_sym_global] = ACTIONS(4060), - [anon_sym_LBRACK] = ACTIONS(3893), - [anon_sym_COMMA] = ACTIONS(3893), - [anon_sym_LPAREN] = ACTIONS(3893), - [anon_sym_LBRACE] = ACTIONS(3881), - [anon_sym_file] = ACTIONS(4060), - [anon_sym_LT] = ACTIONS(3895), - [anon_sym_GT] = ACTIONS(3895), - [anon_sym_where] = ACTIONS(3895), - [anon_sym_QMARK] = ACTIONS(3895), - [anon_sym_notnull] = ACTIONS(4060), - [anon_sym_unmanaged] = ACTIONS(4060), - [anon_sym_BANG] = ACTIONS(3895), - [anon_sym_PLUS_PLUS] = ACTIONS(3893), - [anon_sym_DASH_DASH] = ACTIONS(3893), - [anon_sym_PLUS] = ACTIONS(3895), - [anon_sym_DASH] = ACTIONS(3895), - [anon_sym_STAR] = ACTIONS(3893), - [anon_sym_SLASH] = ACTIONS(3895), - [anon_sym_PERCENT] = ACTIONS(3893), - [anon_sym_CARET] = ACTIONS(3893), - [anon_sym_PIPE] = ACTIONS(3895), - [anon_sym_AMP] = ACTIONS(3895), - [anon_sym_LT_LT] = ACTIONS(3893), - [anon_sym_GT_GT] = ACTIONS(3895), - [anon_sym_GT_GT_GT] = ACTIONS(3893), - [anon_sym_EQ_EQ] = ACTIONS(3893), - [anon_sym_BANG_EQ] = ACTIONS(3893), - [anon_sym_GT_EQ] = ACTIONS(3893), - [anon_sym_LT_EQ] = ACTIONS(3893), - [anon_sym_DOT] = ACTIONS(3895), - [anon_sym_scoped] = ACTIONS(4060), - [anon_sym_var] = ACTIONS(4060), - [anon_sym_yield] = ACTIONS(4060), - [anon_sym_switch] = ACTIONS(3895), - [anon_sym_when] = ACTIONS(4060), - [sym_discard] = ACTIONS(4207), - [anon_sym_DOT_DOT] = ACTIONS(3893), - [anon_sym_and] = ACTIONS(3883), - [anon_sym_or] = ACTIONS(3883), - [anon_sym_AMP_AMP] = ACTIONS(3893), - [anon_sym_PIPE_PIPE] = ACTIONS(3893), - [anon_sym_QMARK_QMARK] = ACTIONS(3893), - [anon_sym_from] = ACTIONS(3895), - [anon_sym_into] = ACTIONS(4060), - [anon_sym_join] = ACTIONS(3895), - [anon_sym_on] = ACTIONS(4060), - [anon_sym_equals] = ACTIONS(4060), - [anon_sym_let] = ACTIONS(3895), - [anon_sym_orderby] = ACTIONS(3895), - [anon_sym_ascending] = ACTIONS(3895), - [anon_sym_descending] = ACTIONS(3895), - [anon_sym_group] = ACTIONS(3895), - [anon_sym_by] = ACTIONS(4060), - [anon_sym_select] = ACTIONS(3895), - [anon_sym_as] = ACTIONS(3895), - [anon_sym_is] = ACTIONS(3895), - [anon_sym_DASH_GT] = ACTIONS(3893), - [anon_sym_with] = ACTIONS(3895), + [sym__identifier_token] = ACTIONS(3855), + [anon_sym_alias] = ACTIONS(3857), + [anon_sym_global] = ACTIONS(3857), + [anon_sym_LBRACK] = ACTIONS(3869), + [anon_sym_LPAREN] = ACTIONS(3869), + [anon_sym_LBRACE] = ACTIONS(3861), + [anon_sym_file] = ACTIONS(3857), + [anon_sym_LT] = ACTIONS(3867), + [anon_sym_GT] = ACTIONS(3867), + [anon_sym_where] = ACTIONS(3857), + [anon_sym_QMARK] = ACTIONS(3867), + [anon_sym_notnull] = ACTIONS(3857), + [anon_sym_unmanaged] = ACTIONS(3857), + [anon_sym_BANG] = ACTIONS(3867), + [anon_sym_PLUS_PLUS] = ACTIONS(3869), + [anon_sym_DASH_DASH] = ACTIONS(3869), + [anon_sym_PLUS] = ACTIONS(3867), + [anon_sym_DASH] = ACTIONS(3867), + [anon_sym_STAR] = ACTIONS(3869), + [anon_sym_SLASH] = ACTIONS(3867), + [anon_sym_PERCENT] = ACTIONS(3869), + [anon_sym_CARET] = ACTIONS(3869), + [anon_sym_PIPE] = ACTIONS(3867), + [anon_sym_AMP] = ACTIONS(3867), + [anon_sym_LT_LT] = ACTIONS(3869), + [anon_sym_GT_GT] = ACTIONS(3867), + [anon_sym_GT_GT_GT] = ACTIONS(3869), + [anon_sym_EQ_EQ] = ACTIONS(3869), + [anon_sym_BANG_EQ] = ACTIONS(3869), + [anon_sym_GT_EQ] = ACTIONS(3869), + [anon_sym_LT_EQ] = ACTIONS(3869), + [anon_sym_DOT] = ACTIONS(3867), + [anon_sym_scoped] = ACTIONS(3857), + [anon_sym_EQ_GT] = ACTIONS(3869), + [anon_sym_var] = ACTIONS(3857), + [anon_sym_yield] = ACTIONS(3857), + [anon_sym_switch] = ACTIONS(3867), + [anon_sym_when] = ACTIONS(3857), + [sym_discard] = ACTIONS(3865), + [anon_sym_DOT_DOT] = ACTIONS(3869), + [anon_sym_and] = ACTIONS(3867), + [anon_sym_or] = ACTIONS(3867), + [anon_sym_AMP_AMP] = ACTIONS(3869), + [anon_sym_PIPE_PIPE] = ACTIONS(3869), + [anon_sym_QMARK_QMARK] = ACTIONS(3869), + [anon_sym_from] = ACTIONS(3857), + [anon_sym_into] = ACTIONS(3867), + [anon_sym_join] = ACTIONS(3857), + [anon_sym_on] = ACTIONS(3857), + [anon_sym_equals] = ACTIONS(3857), + [anon_sym_let] = ACTIONS(3857), + [anon_sym_orderby] = ACTIONS(3857), + [anon_sym_ascending] = ACTIONS(3857), + [anon_sym_descending] = ACTIONS(3857), + [anon_sym_group] = ACTIONS(3857), + [anon_sym_by] = ACTIONS(3857), + [anon_sym_select] = ACTIONS(3857), + [anon_sym_as] = ACTIONS(3867), + [anon_sym_is] = ACTIONS(3867), + [anon_sym_DASH_GT] = ACTIONS(3869), + [anon_sym_with] = ACTIONS(3867), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -426124,6 +425786,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2474] = { + [sym_parameter_list] = STATE(7531), + [sym_positional_pattern_clause] = STATE(2556), + [sym_property_pattern_clause] = STATE(2644), + [sym__variable_designation] = STATE(3422), + [sym_parenthesized_variable_designation] = STATE(3352), + [sym__lambda_parameters] = STATE(7378), + [sym_identifier] = STATE(3430), + [sym__reserved_identifier] = STATE(3205), [sym_preproc_region] = STATE(2474), [sym_preproc_endregion] = STATE(2474), [sym_preproc_line] = STATE(2474), @@ -426133,75 +425803,67 @@ 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), - [anon_sym_SEMI] = ACTIONS(4148), - [anon_sym_EQ] = ACTIONS(4136), - [anon_sym_LBRACK] = ACTIONS(4148), - [anon_sym_COLON] = ACTIONS(4134), - [anon_sym_COMMA] = ACTIONS(4148), - [anon_sym_RBRACK] = ACTIONS(4148), - [anon_sym_LPAREN] = ACTIONS(4148), - [anon_sym_RPAREN] = ACTIONS(4148), - [anon_sym_RBRACE] = ACTIONS(4148), - [anon_sym_LT] = ACTIONS(4150), - [anon_sym_GT] = ACTIONS(4150), - [anon_sym_in] = ACTIONS(4148), - [anon_sym_where] = ACTIONS(4148), - [anon_sym_QMARK] = ACTIONS(4150), - [anon_sym_BANG] = ACTIONS(4150), - [anon_sym_PLUS_PLUS] = ACTIONS(4148), - [anon_sym_DASH_DASH] = ACTIONS(4148), - [anon_sym_PLUS] = ACTIONS(4150), - [anon_sym_DASH] = ACTIONS(4150), - [anon_sym_STAR] = ACTIONS(4150), - [anon_sym_SLASH] = ACTIONS(4150), - [anon_sym_PERCENT] = ACTIONS(4150), - [anon_sym_CARET] = ACTIONS(4150), - [anon_sym_PIPE] = ACTIONS(4150), - [anon_sym_AMP] = ACTIONS(4150), - [anon_sym_LT_LT] = ACTIONS(4150), - [anon_sym_GT_GT] = ACTIONS(4150), - [anon_sym_GT_GT_GT] = ACTIONS(4150), - [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(4150), - [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(4150), - [anon_sym_PLUS_EQ] = ACTIONS(4134), - [anon_sym_DASH_EQ] = ACTIONS(4134), - [anon_sym_STAR_EQ] = ACTIONS(4134), - [anon_sym_SLASH_EQ] = ACTIONS(4134), - [anon_sym_PERCENT_EQ] = ACTIONS(4134), - [anon_sym_AMP_EQ] = ACTIONS(4134), - [anon_sym_CARET_EQ] = ACTIONS(4134), - [anon_sym_PIPE_EQ] = ACTIONS(4134), - [anon_sym_LT_LT_EQ] = ACTIONS(4134), - [anon_sym_GT_GT_EQ] = ACTIONS(4134), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(4134), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(4134), - [anon_sym_AMP_AMP] = ACTIONS(4148), - [anon_sym_PIPE_PIPE] = ACTIONS(4148), - [anon_sym_QMARK_QMARK] = ACTIONS(4150), - [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), + [sym__identifier_token] = ACTIONS(3798), + [anon_sym_alias] = ACTIONS(3800), + [anon_sym_global] = ACTIONS(3800), + [anon_sym_LBRACK] = ACTIONS(3869), + [anon_sym_LPAREN] = ACTIONS(3869), + [anon_sym_LBRACE] = ACTIONS(3861), + [anon_sym_file] = ACTIONS(3800), + [anon_sym_LT] = ACTIONS(3867), + [anon_sym_GT] = ACTIONS(3867), + [anon_sym_in] = ACTIONS(3867), + [anon_sym_where] = ACTIONS(3800), + [anon_sym_QMARK] = ACTIONS(3867), + [anon_sym_notnull] = ACTIONS(3800), + [anon_sym_unmanaged] = ACTIONS(3800), + [anon_sym_BANG] = ACTIONS(3867), + [anon_sym_PLUS_PLUS] = ACTIONS(3869), + [anon_sym_DASH_DASH] = ACTIONS(3869), + [anon_sym_PLUS] = ACTIONS(3867), + [anon_sym_DASH] = ACTIONS(3867), + [anon_sym_STAR] = ACTIONS(3869), + [anon_sym_SLASH] = ACTIONS(3867), + [anon_sym_PERCENT] = ACTIONS(3869), + [anon_sym_CARET] = ACTIONS(3869), + [anon_sym_PIPE] = ACTIONS(3867), + [anon_sym_AMP] = ACTIONS(3867), + [anon_sym_LT_LT] = ACTIONS(3869), + [anon_sym_GT_GT] = ACTIONS(3867), + [anon_sym_GT_GT_GT] = ACTIONS(3869), + [anon_sym_EQ_EQ] = ACTIONS(3869), + [anon_sym_BANG_EQ] = ACTIONS(3869), + [anon_sym_GT_EQ] = ACTIONS(3869), + [anon_sym_LT_EQ] = ACTIONS(3869), + [anon_sym_DOT] = ACTIONS(3867), + [anon_sym_scoped] = ACTIONS(3800), + [anon_sym_var] = ACTIONS(3800), + [anon_sym_yield] = ACTIONS(3800), + [anon_sym_switch] = ACTIONS(3867), + [anon_sym_when] = ACTIONS(3800), + [sym_discard] = ACTIONS(3877), + [anon_sym_DOT_DOT] = ACTIONS(3869), + [anon_sym_and] = ACTIONS(3867), + [anon_sym_or] = ACTIONS(3867), + [anon_sym_AMP_AMP] = ACTIONS(3869), + [anon_sym_PIPE_PIPE] = ACTIONS(3869), + [anon_sym_QMARK_QMARK] = ACTIONS(3869), + [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(3867), + [anon_sym_is] = ACTIONS(3867), + [anon_sym_DASH_GT] = ACTIONS(3869), + [anon_sym_with] = ACTIONS(3867), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -426214,14 +425876,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2475] = { - [sym_parameter_list] = STATE(7311), - [sym_positional_pattern_clause] = STATE(2559), - [sym_property_pattern_clause] = STATE(2632), - [sym__variable_designation] = STATE(3782), - [sym_parenthesized_variable_designation] = STATE(3779), - [sym__lambda_parameters] = STATE(7536), - [sym_identifier] = STATE(3689), - [sym__reserved_identifier] = STATE(2361), [sym_preproc_region] = STATE(2475), [sym_preproc_endregion] = STATE(2475), [sym_preproc_line] = STATE(2475), @@ -426231,67 +425885,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2475), [sym_preproc_define] = STATE(2475), [sym_preproc_undef] = STATE(2475), - [sym__identifier_token] = ACTIONS(4058), - [anon_sym_alias] = ACTIONS(4060), - [anon_sym_global] = ACTIONS(4060), - [anon_sym_LBRACK] = ACTIONS(3893), - [anon_sym_COMMA] = ACTIONS(3893), - [anon_sym_LPAREN] = ACTIONS(3893), - [anon_sym_LBRACE] = ACTIONS(3881), - [anon_sym_file] = ACTIONS(4060), - [anon_sym_LT] = ACTIONS(3895), - [anon_sym_GT] = ACTIONS(3895), - [anon_sym_where] = ACTIONS(3895), - [anon_sym_QMARK] = ACTIONS(3895), - [anon_sym_notnull] = ACTIONS(4060), - [anon_sym_unmanaged] = ACTIONS(4060), - [anon_sym_BANG] = ACTIONS(3895), - [anon_sym_PLUS_PLUS] = ACTIONS(3893), - [anon_sym_DASH_DASH] = ACTIONS(3893), - [anon_sym_PLUS] = ACTIONS(3895), - [anon_sym_DASH] = ACTIONS(3895), - [anon_sym_STAR] = ACTIONS(3893), - [anon_sym_SLASH] = ACTIONS(3895), - [anon_sym_PERCENT] = ACTIONS(3893), - [anon_sym_CARET] = ACTIONS(3893), - [anon_sym_PIPE] = ACTIONS(3895), - [anon_sym_AMP] = ACTIONS(3895), - [anon_sym_LT_LT] = ACTIONS(3893), - [anon_sym_GT_GT] = ACTIONS(3895), - [anon_sym_GT_GT_GT] = ACTIONS(3893), - [anon_sym_EQ_EQ] = ACTIONS(3893), - [anon_sym_BANG_EQ] = ACTIONS(3893), - [anon_sym_GT_EQ] = ACTIONS(3893), - [anon_sym_LT_EQ] = ACTIONS(3893), - [anon_sym_DOT] = ACTIONS(3895), - [anon_sym_scoped] = ACTIONS(4060), - [anon_sym_var] = ACTIONS(4060), - [anon_sym_yield] = ACTIONS(4060), - [anon_sym_switch] = ACTIONS(3895), - [anon_sym_when] = ACTIONS(4060), - [sym_discard] = ACTIONS(4207), - [anon_sym_DOT_DOT] = ACTIONS(3893), - [anon_sym_and] = ACTIONS(3883), - [anon_sym_or] = ACTIONS(3883), - [anon_sym_AMP_AMP] = ACTIONS(3893), - [anon_sym_PIPE_PIPE] = ACTIONS(3893), - [anon_sym_QMARK_QMARK] = ACTIONS(3893), - [anon_sym_from] = ACTIONS(3895), - [anon_sym_into] = ACTIONS(3895), - [anon_sym_join] = ACTIONS(3895), - [anon_sym_on] = ACTIONS(4060), - [anon_sym_equals] = ACTIONS(4060), - [anon_sym_let] = ACTIONS(3895), - [anon_sym_orderby] = ACTIONS(3895), - [anon_sym_ascending] = ACTIONS(3895), - [anon_sym_descending] = ACTIONS(3895), - [anon_sym_group] = ACTIONS(3895), - [anon_sym_by] = ACTIONS(4060), - [anon_sym_select] = ACTIONS(3895), - [anon_sym_as] = ACTIONS(3895), - [anon_sym_is] = ACTIONS(3895), - [anon_sym_DASH_GT] = ACTIONS(3893), - [anon_sym_with] = ACTIONS(3895), + [anon_sym_SEMI] = ACTIONS(4140), + [anon_sym_EQ] = ACTIONS(4142), + [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_RBRACE] = ACTIONS(4140), + [anon_sym_LT] = ACTIONS(4142), + [anon_sym_GT] = ACTIONS(4142), + [anon_sym_in] = ACTIONS(4140), + [anon_sym_where] = ACTIONS(4140), + [anon_sym_QMARK] = ACTIONS(4142), + [anon_sym_BANG] = ACTIONS(4142), + [anon_sym_PLUS_PLUS] = ACTIONS(4140), + [anon_sym_DASH_DASH] = ACTIONS(4140), + [anon_sym_PLUS] = ACTIONS(4142), + [anon_sym_DASH] = ACTIONS(4142), + [anon_sym_STAR] = ACTIONS(4142), + [anon_sym_SLASH] = ACTIONS(4142), + [anon_sym_PERCENT] = ACTIONS(4142), + [anon_sym_CARET] = ACTIONS(4142), + [anon_sym_PIPE] = ACTIONS(4142), + [anon_sym_AMP] = ACTIONS(4142), + [anon_sym_LT_LT] = ACTIONS(4142), + [anon_sym_GT_GT] = ACTIONS(4142), + [anon_sym_GT_GT_GT] = ACTIONS(4142), + [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(4142), + [anon_sym_EQ_GT] = ACTIONS(4140), + [anon_sym_switch] = ACTIONS(4140), + [anon_sym_DOT_DOT] = ACTIONS(4140), + [anon_sym_and] = ACTIONS(4140), + [anon_sym_or] = ACTIONS(4142), + [anon_sym_PLUS_EQ] = ACTIONS(4140), + [anon_sym_DASH_EQ] = ACTIONS(4140), + [anon_sym_STAR_EQ] = ACTIONS(4140), + [anon_sym_SLASH_EQ] = ACTIONS(4140), + [anon_sym_PERCENT_EQ] = ACTIONS(4140), + [anon_sym_AMP_EQ] = ACTIONS(4140), + [anon_sym_CARET_EQ] = ACTIONS(4140), + [anon_sym_PIPE_EQ] = ACTIONS(4140), + [anon_sym_LT_LT_EQ] = ACTIONS(4140), + [anon_sym_GT_GT_EQ] = ACTIONS(4140), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(4140), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(4140), + [anon_sym_AMP_AMP] = ACTIONS(4140), + [anon_sym_PIPE_PIPE] = ACTIONS(4140), + [anon_sym_QMARK_QMARK] = ACTIONS(4142), + [anon_sym_from] = ACTIONS(4140), + [anon_sym_join] = ACTIONS(4140), + [anon_sym_on] = ACTIONS(4140), + [anon_sym_equals] = ACTIONS(4140), + [anon_sym_let] = ACTIONS(4140), + [anon_sym_orderby] = ACTIONS(4140), + [anon_sym_group] = ACTIONS(4140), + [anon_sym_by] = ACTIONS(4140), + [anon_sym_select] = ACTIONS(4140), + [anon_sym_as] = ACTIONS(4140), + [anon_sym_is] = ACTIONS(4140), + [anon_sym_DASH_GT] = ACTIONS(4140), + [anon_sym_with] = ACTIONS(4140), + [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), @@ -426304,6 +425966,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2476] = { + [sym_parameter_list] = STATE(7531), + [sym_positional_pattern_clause] = STATE(2556), + [sym_property_pattern_clause] = STATE(2644), + [sym__variable_designation] = STATE(3422), + [sym_parenthesized_variable_designation] = STATE(3352), + [sym__lambda_parameters] = STATE(7378), + [sym_identifier] = STATE(3430), + [sym__reserved_identifier] = STATE(3205), [sym_preproc_region] = STATE(2476), [sym_preproc_endregion] = STATE(2476), [sym_preproc_line] = STATE(2476), @@ -426313,75 +425983,67 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2476), [sym_preproc_define] = STATE(2476), [sym_preproc_undef] = STATE(2476), - [anon_sym_SEMI] = ACTIONS(4144), - [anon_sym_EQ] = ACTIONS(4146), - [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_RBRACE] = ACTIONS(4144), - [anon_sym_LT] = ACTIONS(4146), - [anon_sym_GT] = ACTIONS(4146), - [anon_sym_in] = ACTIONS(4144), - [anon_sym_where] = ACTIONS(4144), - [anon_sym_QMARK] = ACTIONS(4146), - [anon_sym_BANG] = ACTIONS(4146), - [anon_sym_PLUS_PLUS] = ACTIONS(4144), - [anon_sym_DASH_DASH] = ACTIONS(4144), - [anon_sym_PLUS] = ACTIONS(4146), - [anon_sym_DASH] = ACTIONS(4146), - [anon_sym_STAR] = ACTIONS(4146), - [anon_sym_SLASH] = ACTIONS(4146), - [anon_sym_PERCENT] = ACTIONS(4146), - [anon_sym_CARET] = ACTIONS(4146), - [anon_sym_PIPE] = ACTIONS(4146), - [anon_sym_AMP] = ACTIONS(4146), - [anon_sym_LT_LT] = ACTIONS(4146), - [anon_sym_GT_GT] = ACTIONS(4146), - [anon_sym_GT_GT_GT] = ACTIONS(4146), - [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(4146), - [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(4146), - [anon_sym_PLUS_EQ] = ACTIONS(4144), - [anon_sym_DASH_EQ] = ACTIONS(4144), - [anon_sym_STAR_EQ] = ACTIONS(4144), - [anon_sym_SLASH_EQ] = ACTIONS(4144), - [anon_sym_PERCENT_EQ] = ACTIONS(4144), - [anon_sym_AMP_EQ] = ACTIONS(4144), - [anon_sym_CARET_EQ] = ACTIONS(4144), - [anon_sym_PIPE_EQ] = ACTIONS(4144), - [anon_sym_LT_LT_EQ] = ACTIONS(4144), - [anon_sym_GT_GT_EQ] = ACTIONS(4144), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(4144), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(4144), - [anon_sym_AMP_AMP] = ACTIONS(4144), - [anon_sym_PIPE_PIPE] = ACTIONS(4144), - [anon_sym_QMARK_QMARK] = ACTIONS(4146), - [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(3798), + [anon_sym_alias] = ACTIONS(3800), + [anon_sym_global] = ACTIONS(3800), + [anon_sym_LBRACK] = ACTIONS(3859), + [anon_sym_LPAREN] = ACTIONS(3859), + [anon_sym_LBRACE] = ACTIONS(3861), + [anon_sym_file] = ACTIONS(3800), + [anon_sym_LT] = ACTIONS(3863), + [anon_sym_GT] = ACTIONS(3863), + [anon_sym_in] = ACTIONS(3863), + [anon_sym_where] = ACTIONS(3800), + [anon_sym_QMARK] = ACTIONS(3863), + [anon_sym_notnull] = ACTIONS(3800), + [anon_sym_unmanaged] = ACTIONS(3800), + [anon_sym_BANG] = ACTIONS(3863), + [anon_sym_PLUS_PLUS] = ACTIONS(3859), + [anon_sym_DASH_DASH] = ACTIONS(3859), + [anon_sym_PLUS] = ACTIONS(3863), + [anon_sym_DASH] = ACTIONS(3863), + [anon_sym_STAR] = ACTIONS(3859), + [anon_sym_SLASH] = ACTIONS(3863), + [anon_sym_PERCENT] = ACTIONS(3859), + [anon_sym_CARET] = ACTIONS(3859), + [anon_sym_PIPE] = ACTIONS(3863), + [anon_sym_AMP] = ACTIONS(3863), + [anon_sym_LT_LT] = ACTIONS(3859), + [anon_sym_GT_GT] = ACTIONS(3863), + [anon_sym_GT_GT_GT] = ACTIONS(3859), + [anon_sym_EQ_EQ] = ACTIONS(3859), + [anon_sym_BANG_EQ] = ACTIONS(3859), + [anon_sym_GT_EQ] = ACTIONS(3859), + [anon_sym_LT_EQ] = ACTIONS(3859), + [anon_sym_DOT] = ACTIONS(3863), + [anon_sym_scoped] = ACTIONS(3800), + [anon_sym_var] = ACTIONS(3800), + [anon_sym_yield] = ACTIONS(3800), + [anon_sym_switch] = ACTIONS(3863), + [anon_sym_when] = ACTIONS(3800), + [sym_discard] = ACTIONS(3877), + [anon_sym_DOT_DOT] = ACTIONS(3859), + [anon_sym_and] = ACTIONS(3867), + [anon_sym_or] = ACTIONS(3867), + [anon_sym_AMP_AMP] = ACTIONS(3859), + [anon_sym_PIPE_PIPE] = ACTIONS(3859), + [anon_sym_QMARK_QMARK] = ACTIONS(3859), + [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(3863), + [anon_sym_is] = ACTIONS(3863), + [anon_sym_DASH_GT] = ACTIONS(3859), + [anon_sym_with] = ACTIONS(3863), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -426394,14 +426056,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2477] = { - [sym_parameter_list] = STATE(7311), - [sym_positional_pattern_clause] = STATE(2271), - [sym_property_pattern_clause] = STATE(2294), - [sym__variable_designation] = STATE(3346), - [sym_parenthesized_variable_designation] = STATE(3340), - [sym__lambda_parameters] = STATE(7536), - [sym_identifier] = STATE(5052), - [sym__reserved_identifier] = STATE(3177), [sym_preproc_region] = STATE(2477), [sym_preproc_endregion] = STATE(2477), [sym_preproc_line] = STATE(2477), @@ -426411,67 +426065,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(3875), - [anon_sym_alias] = ACTIONS(3877), - [anon_sym_global] = ACTIONS(3877), - [anon_sym_LBRACK] = ACTIONS(3893), - [anon_sym_LPAREN] = ACTIONS(3893), - [anon_sym_LBRACE] = ACTIONS(3881), - [anon_sym_file] = ACTIONS(3877), - [anon_sym_LT] = ACTIONS(3895), - [anon_sym_GT] = ACTIONS(3895), - [anon_sym_where] = ACTIONS(3877), - [anon_sym_QMARK] = ACTIONS(3895), - [anon_sym_notnull] = ACTIONS(3877), - [anon_sym_unmanaged] = ACTIONS(3877), - [anon_sym_BANG] = ACTIONS(3895), - [anon_sym_PLUS_PLUS] = ACTIONS(3893), - [anon_sym_DASH_DASH] = ACTIONS(3893), - [anon_sym_PLUS] = ACTIONS(3895), - [anon_sym_DASH] = ACTIONS(3895), - [anon_sym_STAR] = ACTIONS(3893), - [anon_sym_SLASH] = ACTIONS(3895), - [anon_sym_PERCENT] = ACTIONS(3893), - [anon_sym_CARET] = ACTIONS(3893), - [anon_sym_PIPE] = ACTIONS(3895), - [anon_sym_AMP] = ACTIONS(3895), - [anon_sym_LT_LT] = ACTIONS(3893), - [anon_sym_GT_GT] = ACTIONS(3895), - [anon_sym_GT_GT_GT] = ACTIONS(3893), - [anon_sym_EQ_EQ] = ACTIONS(3893), - [anon_sym_BANG_EQ] = ACTIONS(3893), - [anon_sym_GT_EQ] = ACTIONS(3893), - [anon_sym_LT_EQ] = ACTIONS(3893), - [anon_sym_DOT] = ACTIONS(3895), - [anon_sym_scoped] = ACTIONS(3877), - [anon_sym_EQ_GT] = ACTIONS(3893), - [anon_sym_var] = ACTIONS(3877), - [anon_sym_yield] = ACTIONS(3877), - [anon_sym_switch] = ACTIONS(3895), - [anon_sym_when] = ACTIONS(3877), - [sym_discard] = ACTIONS(3885), - [anon_sym_DOT_DOT] = ACTIONS(3893), - [anon_sym_and] = ACTIONS(3895), - [anon_sym_or] = ACTIONS(3895), - [anon_sym_AMP_AMP] = ACTIONS(3893), - [anon_sym_PIPE_PIPE] = ACTIONS(3893), - [anon_sym_QMARK_QMARK] = ACTIONS(3893), - [anon_sym_from] = ACTIONS(3877), - [anon_sym_into] = ACTIONS(3895), - [anon_sym_join] = ACTIONS(3877), - [anon_sym_on] = ACTIONS(3877), - [anon_sym_equals] = ACTIONS(3877), - [anon_sym_let] = ACTIONS(3877), - [anon_sym_orderby] = ACTIONS(3877), - [anon_sym_ascending] = ACTIONS(3877), - [anon_sym_descending] = ACTIONS(3877), - [anon_sym_group] = ACTIONS(3877), - [anon_sym_by] = ACTIONS(3877), - [anon_sym_select] = ACTIONS(3877), - [anon_sym_as] = ACTIONS(3895), - [anon_sym_is] = ACTIONS(3895), - [anon_sym_DASH_GT] = ACTIONS(3893), - [anon_sym_with] = ACTIONS(3895), + [anon_sym_SEMI] = ACTIONS(4148), + [anon_sym_EQ] = ACTIONS(4150), + [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_RBRACE] = ACTIONS(4148), + [anon_sym_LT] = ACTIONS(4150), + [anon_sym_GT] = ACTIONS(4150), + [anon_sym_in] = ACTIONS(4148), + [anon_sym_where] = ACTIONS(4148), + [anon_sym_QMARK] = ACTIONS(4150), + [anon_sym_BANG] = ACTIONS(4150), + [anon_sym_PLUS_PLUS] = ACTIONS(4148), + [anon_sym_DASH_DASH] = ACTIONS(4148), + [anon_sym_PLUS] = ACTIONS(4150), + [anon_sym_DASH] = ACTIONS(4150), + [anon_sym_STAR] = ACTIONS(4150), + [anon_sym_SLASH] = ACTIONS(4150), + [anon_sym_PERCENT] = ACTIONS(4150), + [anon_sym_CARET] = ACTIONS(4150), + [anon_sym_PIPE] = ACTIONS(4150), + [anon_sym_AMP] = ACTIONS(4150), + [anon_sym_LT_LT] = ACTIONS(4150), + [anon_sym_GT_GT] = ACTIONS(4150), + [anon_sym_GT_GT_GT] = ACTIONS(4150), + [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(4150), + [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(4150), + [anon_sym_PLUS_EQ] = ACTIONS(4148), + [anon_sym_DASH_EQ] = ACTIONS(4148), + [anon_sym_STAR_EQ] = ACTIONS(4148), + [anon_sym_SLASH_EQ] = ACTIONS(4148), + [anon_sym_PERCENT_EQ] = ACTIONS(4148), + [anon_sym_AMP_EQ] = ACTIONS(4148), + [anon_sym_CARET_EQ] = ACTIONS(4148), + [anon_sym_PIPE_EQ] = ACTIONS(4148), + [anon_sym_LT_LT_EQ] = ACTIONS(4148), + [anon_sym_GT_GT_EQ] = ACTIONS(4148), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(4148), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(4148), + [anon_sym_AMP_AMP] = ACTIONS(4148), + [anon_sym_PIPE_PIPE] = ACTIONS(4148), + [anon_sym_QMARK_QMARK] = ACTIONS(4150), + [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), @@ -426484,6 +426146,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2478] = { + [sym_parameter_list] = STATE(7531), + [sym_positional_pattern_clause] = STATE(2527), + [sym_property_pattern_clause] = STATE(2574), + [sym__variable_designation] = STATE(3347), + [sym_parenthesized_variable_designation] = STATE(3344), + [sym__lambda_parameters] = STATE(7378), + [sym_identifier] = STATE(4862), + [sym__reserved_identifier] = STATE(3199), [sym_preproc_region] = STATE(2478), [sym_preproc_endregion] = STATE(2478), [sym_preproc_line] = STATE(2478), @@ -426493,75 +426163,67 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2478), [sym_preproc_define] = STATE(2478), [sym_preproc_undef] = STATE(2478), - [anon_sym_SEMI] = ACTIONS(4199), - [anon_sym_EQ] = ACTIONS(4201), - [anon_sym_LBRACK] = ACTIONS(4199), - [anon_sym_COLON] = ACTIONS(4199), - [anon_sym_COMMA] = ACTIONS(4199), - [anon_sym_RBRACK] = ACTIONS(4199), - [anon_sym_LPAREN] = ACTIONS(4199), - [anon_sym_RPAREN] = ACTIONS(4199), - [anon_sym_RBRACE] = ACTIONS(4199), - [anon_sym_LT] = ACTIONS(4201), - [anon_sym_GT] = ACTIONS(4201), - [anon_sym_in] = ACTIONS(4199), - [anon_sym_where] = ACTIONS(4199), - [anon_sym_QMARK] = ACTIONS(4201), - [anon_sym_BANG] = ACTIONS(4201), - [anon_sym_PLUS_PLUS] = ACTIONS(4199), - [anon_sym_DASH_DASH] = ACTIONS(4199), - [anon_sym_PLUS] = ACTIONS(4201), - [anon_sym_DASH] = ACTIONS(4201), - [anon_sym_STAR] = ACTIONS(4201), - [anon_sym_SLASH] = ACTIONS(4201), - [anon_sym_PERCENT] = ACTIONS(4201), - [anon_sym_CARET] = ACTIONS(4201), - [anon_sym_PIPE] = ACTIONS(4201), - [anon_sym_AMP] = ACTIONS(4201), - [anon_sym_LT_LT] = ACTIONS(4201), - [anon_sym_GT_GT] = ACTIONS(4201), - [anon_sym_GT_GT_GT] = ACTIONS(4201), - [anon_sym_EQ_EQ] = ACTIONS(4199), - [anon_sym_BANG_EQ] = ACTIONS(4199), - [anon_sym_GT_EQ] = ACTIONS(4199), - [anon_sym_LT_EQ] = ACTIONS(4199), - [anon_sym_DOT] = ACTIONS(4201), - [anon_sym_EQ_GT] = ACTIONS(4199), - [anon_sym_switch] = ACTIONS(4199), - [anon_sym_DOT_DOT] = ACTIONS(4199), - [anon_sym_and] = ACTIONS(4199), - [anon_sym_or] = ACTIONS(4201), - [anon_sym_PLUS_EQ] = ACTIONS(4199), - [anon_sym_DASH_EQ] = ACTIONS(4199), - [anon_sym_STAR_EQ] = ACTIONS(4199), - [anon_sym_SLASH_EQ] = ACTIONS(4199), - [anon_sym_PERCENT_EQ] = ACTIONS(4199), - [anon_sym_AMP_EQ] = ACTIONS(4199), - [anon_sym_CARET_EQ] = ACTIONS(4199), - [anon_sym_PIPE_EQ] = ACTIONS(4199), - [anon_sym_LT_LT_EQ] = ACTIONS(4199), - [anon_sym_GT_GT_EQ] = ACTIONS(4199), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(4199), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(4199), - [anon_sym_AMP_AMP] = ACTIONS(4199), - [anon_sym_PIPE_PIPE] = ACTIONS(4199), - [anon_sym_QMARK_QMARK] = ACTIONS(4201), - [anon_sym_from] = ACTIONS(4199), - [anon_sym_join] = ACTIONS(4199), - [anon_sym_on] = ACTIONS(4199), - [anon_sym_equals] = ACTIONS(4199), - [anon_sym_let] = ACTIONS(4199), - [anon_sym_orderby] = ACTIONS(4199), - [anon_sym_group] = ACTIONS(4199), - [anon_sym_by] = ACTIONS(4199), - [anon_sym_select] = ACTIONS(4199), - [anon_sym_as] = ACTIONS(4199), - [anon_sym_is] = ACTIONS(4199), - [anon_sym_DASH_GT] = ACTIONS(4199), - [anon_sym_with] = ACTIONS(4199), - [aux_sym_preproc_if_token3] = ACTIONS(4199), - [aux_sym_preproc_else_token1] = ACTIONS(4199), - [aux_sym_preproc_elif_token1] = ACTIONS(4199), + [sym__identifier_token] = ACTIONS(3855), + [anon_sym_alias] = ACTIONS(3857), + [anon_sym_global] = ACTIONS(3857), + [anon_sym_LBRACK] = ACTIONS(3869), + [anon_sym_LPAREN] = ACTIONS(3869), + [anon_sym_LBRACE] = ACTIONS(3861), + [anon_sym_file] = ACTIONS(3857), + [anon_sym_LT] = ACTIONS(3867), + [anon_sym_GT] = ACTIONS(3867), + [anon_sym_where] = ACTIONS(3857), + [anon_sym_QMARK] = ACTIONS(3867), + [anon_sym_notnull] = ACTIONS(3857), + [anon_sym_unmanaged] = ACTIONS(3857), + [anon_sym_BANG] = ACTIONS(3867), + [anon_sym_PLUS_PLUS] = ACTIONS(3869), + [anon_sym_DASH_DASH] = ACTIONS(3869), + [anon_sym_PLUS] = ACTIONS(3867), + [anon_sym_DASH] = ACTIONS(3867), + [anon_sym_STAR] = ACTIONS(3869), + [anon_sym_SLASH] = ACTIONS(3867), + [anon_sym_PERCENT] = ACTIONS(3869), + [anon_sym_CARET] = ACTIONS(3869), + [anon_sym_PIPE] = ACTIONS(3867), + [anon_sym_AMP] = ACTIONS(3867), + [anon_sym_LT_LT] = ACTIONS(3869), + [anon_sym_GT_GT] = ACTIONS(3867), + [anon_sym_GT_GT_GT] = ACTIONS(3869), + [anon_sym_EQ_EQ] = ACTIONS(3869), + [anon_sym_BANG_EQ] = ACTIONS(3869), + [anon_sym_GT_EQ] = ACTIONS(3869), + [anon_sym_LT_EQ] = ACTIONS(3869), + [anon_sym_DOT] = ACTIONS(3867), + [anon_sym_scoped] = ACTIONS(3857), + [anon_sym_EQ_GT] = ACTIONS(3869), + [anon_sym_var] = ACTIONS(3857), + [anon_sym_yield] = ACTIONS(3857), + [anon_sym_switch] = ACTIONS(3867), + [anon_sym_when] = ACTIONS(3867), + [sym_discard] = ACTIONS(3865), + [anon_sym_DOT_DOT] = ACTIONS(3869), + [anon_sym_and] = ACTIONS(3867), + [anon_sym_or] = ACTIONS(3867), + [anon_sym_AMP_AMP] = ACTIONS(3869), + [anon_sym_PIPE_PIPE] = ACTIONS(3869), + [anon_sym_QMARK_QMARK] = ACTIONS(3869), + [anon_sym_from] = ACTIONS(3857), + [anon_sym_into] = ACTIONS(3867), + [anon_sym_join] = ACTIONS(3857), + [anon_sym_on] = ACTIONS(3857), + [anon_sym_equals] = ACTIONS(3857), + [anon_sym_let] = ACTIONS(3857), + [anon_sym_orderby] = ACTIONS(3857), + [anon_sym_ascending] = ACTIONS(3857), + [anon_sym_descending] = ACTIONS(3857), + [anon_sym_group] = ACTIONS(3857), + [anon_sym_by] = ACTIONS(3857), + [anon_sym_select] = ACTIONS(3857), + [anon_sym_as] = ACTIONS(3867), + [anon_sym_is] = ACTIONS(3867), + [anon_sym_DASH_GT] = ACTIONS(3869), + [anon_sym_with] = ACTIONS(3867), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -426574,14 +426236,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2479] = { - [sym_parameter_list] = STATE(7311), - [sym_positional_pattern_clause] = STATE(2543), - [sym_property_pattern_clause] = STATE(2595), - [sym__variable_designation] = STATE(3492), - [sym_parenthesized_variable_designation] = STATE(3463), - [sym__lambda_parameters] = STATE(7536), - [sym_identifier] = STATE(5052), - [sym__reserved_identifier] = STATE(3177), + [sym__name] = STATE(3517), + [sym_alias_qualified_name] = STATE(2907), + [sym__simple_name] = STATE(2907), + [sym_qualified_name] = STATE(2907), + [sym_generic_name] = STATE(2950), + [sym_ref_type] = STATE(2923), + [sym__scoped_base_type] = STATE(2940), + [sym_identifier] = STATE(3317), + [sym__reserved_identifier] = STATE(2900), [sym_preproc_region] = STATE(2479), [sym_preproc_endregion] = STATE(2479), [sym_preproc_line] = STATE(2479), @@ -426591,67 +426254,65 @@ 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(3875), - [anon_sym_alias] = ACTIONS(3877), - [anon_sym_global] = ACTIONS(3877), - [anon_sym_LBRACK] = ACTIONS(3879), - [anon_sym_LPAREN] = ACTIONS(3879), - [anon_sym_LBRACE] = ACTIONS(3881), - [anon_sym_file] = ACTIONS(3877), - [anon_sym_LT] = ACTIONS(3883), - [anon_sym_GT] = ACTIONS(3883), - [anon_sym_where] = ACTIONS(3877), - [anon_sym_QMARK] = ACTIONS(3883), - [anon_sym_notnull] = ACTIONS(3877), - [anon_sym_unmanaged] = ACTIONS(3877), - [anon_sym_BANG] = ACTIONS(3883), - [anon_sym_PLUS_PLUS] = ACTIONS(3879), - [anon_sym_DASH_DASH] = ACTIONS(3879), - [anon_sym_PLUS] = ACTIONS(3883), - [anon_sym_DASH] = ACTIONS(3883), - [anon_sym_STAR] = ACTIONS(3879), - [anon_sym_SLASH] = ACTIONS(3883), - [anon_sym_PERCENT] = ACTIONS(3879), - [anon_sym_CARET] = ACTIONS(3879), - [anon_sym_PIPE] = ACTIONS(3883), - [anon_sym_AMP] = ACTIONS(3883), - [anon_sym_LT_LT] = ACTIONS(3879), - [anon_sym_GT_GT] = ACTIONS(3883), - [anon_sym_GT_GT_GT] = ACTIONS(3879), - [anon_sym_EQ_EQ] = ACTIONS(3879), - [anon_sym_BANG_EQ] = ACTIONS(3879), - [anon_sym_GT_EQ] = ACTIONS(3879), - [anon_sym_LT_EQ] = ACTIONS(3879), - [anon_sym_DOT] = ACTIONS(3883), - [anon_sym_scoped] = ACTIONS(3877), - [anon_sym_EQ_GT] = ACTIONS(3879), - [anon_sym_var] = ACTIONS(3877), - [anon_sym_yield] = ACTIONS(3877), - [anon_sym_switch] = ACTIONS(3883), - [anon_sym_when] = ACTIONS(3883), - [sym_discard] = ACTIONS(3897), - [anon_sym_DOT_DOT] = ACTIONS(3879), - [anon_sym_and] = ACTIONS(3883), - [anon_sym_or] = ACTIONS(3883), - [anon_sym_AMP_AMP] = ACTIONS(3879), - [anon_sym_PIPE_PIPE] = ACTIONS(3879), - [anon_sym_QMARK_QMARK] = ACTIONS(3879), - [anon_sym_from] = ACTIONS(3877), - [anon_sym_into] = ACTIONS(3877), - [anon_sym_join] = ACTIONS(3877), - [anon_sym_on] = ACTIONS(3877), - [anon_sym_equals] = ACTIONS(3877), - [anon_sym_let] = ACTIONS(3877), - [anon_sym_orderby] = ACTIONS(3877), - [anon_sym_ascending] = ACTIONS(3877), - [anon_sym_descending] = ACTIONS(3877), - [anon_sym_group] = ACTIONS(3877), - [anon_sym_by] = ACTIONS(3877), - [anon_sym_select] = ACTIONS(3877), - [anon_sym_as] = ACTIONS(3883), - [anon_sym_is] = ACTIONS(3883), - [anon_sym_DASH_GT] = ACTIONS(3879), - [anon_sym_with] = ACTIONS(3883), + [sym__identifier_token] = ACTIONS(3814), + [anon_sym_alias] = ACTIONS(3816), + [anon_sym_global] = ACTIONS(3816), + [anon_sym_LBRACK] = ACTIONS(3429), + [anon_sym_LPAREN] = ACTIONS(3429), + [anon_sym_ref] = ACTIONS(4185), + [anon_sym_LBRACE] = ACTIONS(3429), + [anon_sym_file] = ACTIONS(3816), + [anon_sym_LT] = ACTIONS(3431), + [anon_sym_GT] = ACTIONS(3431), + [anon_sym_where] = ACTIONS(3816), + [anon_sym_QMARK] = ACTIONS(3431), + [anon_sym_notnull] = ACTIONS(3816), + [anon_sym_unmanaged] = ACTIONS(3816), + [anon_sym_BANG] = ACTIONS(3431), + [anon_sym_PLUS_PLUS] = ACTIONS(3429), + [anon_sym_DASH_DASH] = ACTIONS(3429), + [anon_sym_PLUS] = ACTIONS(3431), + [anon_sym_DASH] = ACTIONS(3431), + [anon_sym_STAR] = ACTIONS(3429), + [anon_sym_SLASH] = ACTIONS(3431), + [anon_sym_PERCENT] = ACTIONS(3429), + [anon_sym_CARET] = ACTIONS(3429), + [anon_sym_PIPE] = ACTIONS(3431), + [anon_sym_AMP] = ACTIONS(3431), + [anon_sym_LT_LT] = ACTIONS(3429), + [anon_sym_GT_GT] = ACTIONS(3431), + [anon_sym_GT_GT_GT] = ACTIONS(3429), + [anon_sym_EQ_EQ] = ACTIONS(3429), + [anon_sym_BANG_EQ] = ACTIONS(3429), + [anon_sym_GT_EQ] = ACTIONS(3429), + [anon_sym_LT_EQ] = ACTIONS(3429), + [anon_sym_DOT] = ACTIONS(3431), + [anon_sym_scoped] = ACTIONS(3816), + [anon_sym_COLON_COLON] = ACTIONS(3429), + [anon_sym_var] = ACTIONS(3816), + [anon_sym_yield] = ACTIONS(3816), + [anon_sym_switch] = ACTIONS(3431), + [anon_sym_when] = ACTIONS(3816), + [anon_sym_DOT_DOT] = ACTIONS(3429), + [anon_sym_AMP_AMP] = ACTIONS(3429), + [anon_sym_PIPE_PIPE] = ACTIONS(3429), + [anon_sym_QMARK_QMARK] = ACTIONS(3429), + [anon_sym_from] = ACTIONS(3816), + [anon_sym_into] = ACTIONS(3820), + [anon_sym_join] = ACTIONS(3816), + [anon_sym_on] = ACTIONS(3816), + [anon_sym_equals] = ACTIONS(3816), + [anon_sym_let] = ACTIONS(3816), + [anon_sym_orderby] = ACTIONS(3816), + [anon_sym_ascending] = ACTIONS(3816), + [anon_sym_descending] = ACTIONS(3816), + [anon_sym_group] = ACTIONS(3816), + [anon_sym_by] = ACTIONS(3820), + [anon_sym_select] = ACTIONS(3816), + [anon_sym_as] = ACTIONS(3431), + [anon_sym_is] = ACTIONS(3431), + [anon_sym_DASH_GT] = ACTIONS(3429), + [anon_sym_with] = ACTIONS(3431), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -426664,14 +426325,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2480] = { - [sym_parameter_list] = STATE(7311), - [sym_positional_pattern_clause] = STATE(2566), - [sym_property_pattern_clause] = STATE(2651), - [sym__variable_designation] = STATE(3492), - [sym_parenthesized_variable_designation] = STATE(3463), - [sym__lambda_parameters] = STATE(7536), - [sym_identifier] = STATE(3493), - [sym__reserved_identifier] = STATE(3225), + [sym_property_pattern_clause] = STATE(2553), + [sym__variable_designation] = STATE(4765), + [sym_parenthesized_variable_designation] = STATE(4760), + [sym_identifier] = STATE(4763), + [sym__reserved_identifier] = STATE(4328), [sym_preproc_region] = STATE(2480), [sym_preproc_endregion] = STATE(2480), [sym_preproc_line] = STATE(2480), @@ -426681,20 +426339,21 @@ 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), - [sym__identifier_token] = ACTIONS(3788), - [anon_sym_alias] = ACTIONS(3790), - [anon_sym_global] = ACTIONS(3790), + [sym__identifier_token] = ACTIONS(4046), + [anon_sym_alias] = ACTIONS(4048), + [anon_sym_global] = ACTIONS(4048), [anon_sym_LBRACK] = ACTIONS(3893), + [anon_sym_COLON] = ACTIONS(3893), + [anon_sym_COMMA] = ACTIONS(3893), [anon_sym_LPAREN] = ACTIONS(3893), - [anon_sym_LBRACE] = ACTIONS(3881), - [anon_sym_file] = ACTIONS(3790), + [anon_sym_LBRACE] = ACTIONS(4050), + [anon_sym_file] = ACTIONS(4048), [anon_sym_LT] = ACTIONS(3895), [anon_sym_GT] = ACTIONS(3895), - [anon_sym_in] = ACTIONS(3895), - [anon_sym_where] = ACTIONS(3790), + [anon_sym_where] = ACTIONS(4048), [anon_sym_QMARK] = ACTIONS(3895), - [anon_sym_notnull] = ACTIONS(3790), - [anon_sym_unmanaged] = ACTIONS(3790), + [anon_sym_notnull] = ACTIONS(4048), + [anon_sym_unmanaged] = ACTIONS(4048), [anon_sym_BANG] = ACTIONS(3895), [anon_sym_PLUS_PLUS] = ACTIONS(3893), [anon_sym_DASH_DASH] = ACTIONS(3893), @@ -426714,30 +426373,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_EQ] = ACTIONS(3893), [anon_sym_LT_EQ] = ACTIONS(3893), [anon_sym_DOT] = ACTIONS(3895), - [anon_sym_scoped] = ACTIONS(3790), - [anon_sym_var] = ACTIONS(3790), - [anon_sym_yield] = ACTIONS(3790), + [anon_sym_scoped] = ACTIONS(4048), + [anon_sym_var] = ACTIONS(4048), + [anon_sym_yield] = ACTIONS(4048), [anon_sym_switch] = ACTIONS(3895), - [anon_sym_when] = ACTIONS(3790), - [sym_discard] = ACTIONS(3897), + [anon_sym_when] = ACTIONS(4048), + [sym_discard] = ACTIONS(4052), [anon_sym_DOT_DOT] = ACTIONS(3893), [anon_sym_and] = ACTIONS(3895), [anon_sym_or] = ACTIONS(3895), [anon_sym_AMP_AMP] = ACTIONS(3893), [anon_sym_PIPE_PIPE] = ACTIONS(3893), [anon_sym_QMARK_QMARK] = ACTIONS(3893), - [anon_sym_from] = ACTIONS(3790), - [anon_sym_into] = ACTIONS(3790), - [anon_sym_join] = ACTIONS(3790), - [anon_sym_on] = ACTIONS(3790), - [anon_sym_equals] = ACTIONS(3790), - [anon_sym_let] = ACTIONS(3790), - [anon_sym_orderby] = ACTIONS(3790), - [anon_sym_ascending] = ACTIONS(3790), - [anon_sym_descending] = ACTIONS(3790), - [anon_sym_group] = ACTIONS(3790), - [anon_sym_by] = ACTIONS(3790), - [anon_sym_select] = ACTIONS(3790), + [anon_sym_from] = ACTIONS(4048), + [anon_sym_into] = ACTIONS(3895), + [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(3895), [anon_sym_is] = ACTIONS(3895), [anon_sym_DASH_GT] = ACTIONS(3893), @@ -426752,16 +426411,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(3893), }, [2481] = { - [sym_parameter_list] = STATE(7311), - [sym_positional_pattern_clause] = STATE(2271), - [sym_property_pattern_clause] = STATE(2294), - [sym__variable_designation] = STATE(3346), - [sym_parenthesized_variable_designation] = STATE(3340), - [sym__lambda_parameters] = STATE(7536), - [sym_identifier] = STATE(5052), - [sym__reserved_identifier] = STATE(3177), + [sym_property_pattern_clause] = STATE(2554), + [sym__variable_designation] = STATE(4811), + [sym_parenthesized_variable_designation] = STATE(4760), + [sym_identifier] = STATE(4763), + [sym__reserved_identifier] = STATE(4328), [sym_preproc_region] = STATE(2481), [sym_preproc_endregion] = STATE(2481), [sym_preproc_line] = STATE(2481), @@ -426771,87 +426428,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2481), [sym_preproc_define] = STATE(2481), [sym_preproc_undef] = STATE(2481), - [sym__identifier_token] = ACTIONS(3875), - [anon_sym_alias] = ACTIONS(3877), - [anon_sym_global] = ACTIONS(3877), - [anon_sym_LBRACK] = ACTIONS(3893), - [anon_sym_LPAREN] = ACTIONS(3893), - [anon_sym_LBRACE] = ACTIONS(3881), - [anon_sym_file] = ACTIONS(3877), - [anon_sym_LT] = ACTIONS(3895), - [anon_sym_GT] = ACTIONS(3895), - [anon_sym_where] = ACTIONS(3877), - [anon_sym_QMARK] = ACTIONS(3895), - [anon_sym_notnull] = ACTIONS(3877), - [anon_sym_unmanaged] = ACTIONS(3877), - [anon_sym_BANG] = ACTIONS(3895), - [anon_sym_PLUS_PLUS] = ACTIONS(3893), - [anon_sym_DASH_DASH] = ACTIONS(3893), - [anon_sym_PLUS] = ACTIONS(3895), - [anon_sym_DASH] = ACTIONS(3895), - [anon_sym_STAR] = ACTIONS(3893), - [anon_sym_SLASH] = ACTIONS(3895), - [anon_sym_PERCENT] = ACTIONS(3893), - [anon_sym_CARET] = ACTIONS(3893), - [anon_sym_PIPE] = ACTIONS(3895), - [anon_sym_AMP] = ACTIONS(3895), - [anon_sym_LT_LT] = ACTIONS(3893), - [anon_sym_GT_GT] = ACTIONS(3895), - [anon_sym_GT_GT_GT] = ACTIONS(3893), - [anon_sym_EQ_EQ] = ACTIONS(3893), - [anon_sym_BANG_EQ] = ACTIONS(3893), - [anon_sym_GT_EQ] = ACTIONS(3893), - [anon_sym_LT_EQ] = ACTIONS(3893), - [anon_sym_DOT] = ACTIONS(3895), - [anon_sym_scoped] = ACTIONS(3877), - [anon_sym_EQ_GT] = ACTIONS(3893), - [anon_sym_var] = ACTIONS(3877), - [anon_sym_yield] = ACTIONS(3877), - [anon_sym_switch] = ACTIONS(3895), - [anon_sym_when] = ACTIONS(3877), - [sym_discard] = ACTIONS(3885), - [anon_sym_DOT_DOT] = ACTIONS(3893), - [anon_sym_and] = ACTIONS(3883), - [anon_sym_or] = ACTIONS(3883), - [anon_sym_AMP_AMP] = ACTIONS(3893), - [anon_sym_PIPE_PIPE] = ACTIONS(3893), - [anon_sym_QMARK_QMARK] = ACTIONS(3893), - [anon_sym_from] = ACTIONS(3877), - [anon_sym_into] = ACTIONS(3895), - [anon_sym_join] = ACTIONS(3877), - [anon_sym_on] = ACTIONS(3877), - [anon_sym_equals] = ACTIONS(3877), - [anon_sym_let] = ACTIONS(3877), - [anon_sym_orderby] = ACTIONS(3877), - [anon_sym_ascending] = ACTIONS(3877), - [anon_sym_descending] = ACTIONS(3877), - [anon_sym_group] = ACTIONS(3877), - [anon_sym_by] = ACTIONS(3877), - [anon_sym_select] = ACTIONS(3877), - [anon_sym_as] = ACTIONS(3895), - [anon_sym_is] = ACTIONS(3895), - [anon_sym_DASH_GT] = ACTIONS(3893), - [anon_sym_with] = ACTIONS(3895), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_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(4046), + [anon_sym_alias] = ACTIONS(4048), + [anon_sym_global] = ACTIONS(4048), + [anon_sym_LBRACK] = ACTIONS(3885), + [anon_sym_COLON] = ACTIONS(3885), + [anon_sym_COMMA] = ACTIONS(3885), + [anon_sym_LPAREN] = ACTIONS(3885), + [anon_sym_LBRACE] = ACTIONS(4050), + [anon_sym_file] = ACTIONS(4048), + [anon_sym_LT] = ACTIONS(3887), + [anon_sym_GT] = ACTIONS(3887), + [anon_sym_where] = ACTIONS(4048), + [anon_sym_QMARK] = ACTIONS(3887), + [anon_sym_notnull] = ACTIONS(4048), + [anon_sym_unmanaged] = ACTIONS(4048), + [anon_sym_BANG] = ACTIONS(3887), + [anon_sym_PLUS_PLUS] = ACTIONS(3885), + [anon_sym_DASH_DASH] = ACTIONS(3885), + [anon_sym_PLUS] = ACTIONS(3887), + [anon_sym_DASH] = ACTIONS(3887), + [anon_sym_STAR] = ACTIONS(3885), + [anon_sym_SLASH] = ACTIONS(3887), + [anon_sym_PERCENT] = ACTIONS(3885), + [anon_sym_CARET] = ACTIONS(3885), + [anon_sym_PIPE] = ACTIONS(3887), + [anon_sym_AMP] = ACTIONS(3887), + [anon_sym_LT_LT] = ACTIONS(3885), + [anon_sym_GT_GT] = ACTIONS(3887), + [anon_sym_GT_GT_GT] = ACTIONS(3885), + [anon_sym_EQ_EQ] = ACTIONS(3885), + [anon_sym_BANG_EQ] = ACTIONS(3885), + [anon_sym_GT_EQ] = ACTIONS(3885), + [anon_sym_LT_EQ] = ACTIONS(3885), + [anon_sym_DOT] = ACTIONS(3887), + [anon_sym_scoped] = ACTIONS(4048), + [anon_sym_var] = ACTIONS(4048), + [anon_sym_yield] = ACTIONS(4048), + [anon_sym_switch] = ACTIONS(3887), + [anon_sym_when] = ACTIONS(4048), + [sym_discard] = ACTIONS(4052), + [anon_sym_DOT_DOT] = ACTIONS(3885), + [anon_sym_and] = ACTIONS(3887), + [anon_sym_or] = ACTIONS(3887), + [anon_sym_AMP_AMP] = ACTIONS(3885), + [anon_sym_PIPE_PIPE] = ACTIONS(3885), + [anon_sym_QMARK_QMARK] = ACTIONS(3885), + [anon_sym_from] = ACTIONS(4048), + [anon_sym_into] = ACTIONS(3887), + [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(3887), + [anon_sym_is] = ACTIONS(3887), + [anon_sym_DASH_GT] = ACTIONS(3885), + [anon_sym_with] = ACTIONS(3887), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_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(3885), }, [2482] = { - [sym_parameter_list] = STATE(7311), - [sym_positional_pattern_clause] = STATE(2271), - [sym_property_pattern_clause] = STATE(2294), - [sym__variable_designation] = STATE(3346), - [sym_parenthesized_variable_designation] = STATE(3340), - [sym__lambda_parameters] = STATE(7536), - [sym_identifier] = STATE(5052), - [sym__reserved_identifier] = STATE(3177), + [sym_parameter_list] = STATE(7531), + [sym_positional_pattern_clause] = STATE(2567), + [sym_property_pattern_clause] = STATE(2790), + [sym__variable_designation] = STATE(4139), + [sym_parenthesized_variable_designation] = STATE(4116), + [sym__lambda_parameters] = STATE(7378), + [sym_identifier] = STATE(4083), + [sym__reserved_identifier] = STATE(2916), [sym_preproc_region] = STATE(2482), [sym_preproc_endregion] = STATE(2482), [sym_preproc_line] = STATE(2482), @@ -426861,67 +426520,66 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2482), [sym_preproc_define] = STATE(2482), [sym_preproc_undef] = STATE(2482), - [sym__identifier_token] = ACTIONS(3875), - [anon_sym_alias] = ACTIONS(3877), - [anon_sym_global] = ACTIONS(3877), - [anon_sym_LBRACK] = ACTIONS(3879), - [anon_sym_LPAREN] = ACTIONS(3879), - [anon_sym_LBRACE] = ACTIONS(3881), - [anon_sym_file] = ACTIONS(3877), - [anon_sym_LT] = ACTIONS(3883), - [anon_sym_GT] = ACTIONS(3883), - [anon_sym_where] = ACTIONS(3877), - [anon_sym_QMARK] = ACTIONS(3883), - [anon_sym_notnull] = ACTIONS(3877), - [anon_sym_unmanaged] = ACTIONS(3877), - [anon_sym_BANG] = ACTIONS(3883), - [anon_sym_PLUS_PLUS] = ACTIONS(3879), - [anon_sym_DASH_DASH] = ACTIONS(3879), - [anon_sym_PLUS] = ACTIONS(3883), - [anon_sym_DASH] = ACTIONS(3883), - [anon_sym_STAR] = ACTIONS(3879), - [anon_sym_SLASH] = ACTIONS(3883), - [anon_sym_PERCENT] = ACTIONS(3879), - [anon_sym_CARET] = ACTIONS(3879), - [anon_sym_PIPE] = ACTIONS(3883), - [anon_sym_AMP] = ACTIONS(3883), - [anon_sym_LT_LT] = ACTIONS(3879), - [anon_sym_GT_GT] = ACTIONS(3883), - [anon_sym_GT_GT_GT] = ACTIONS(3879), - [anon_sym_EQ_EQ] = ACTIONS(3879), - [anon_sym_BANG_EQ] = ACTIONS(3879), - [anon_sym_GT_EQ] = ACTIONS(3879), - [anon_sym_LT_EQ] = ACTIONS(3879), - [anon_sym_DOT] = ACTIONS(3883), - [anon_sym_scoped] = ACTIONS(3877), - [anon_sym_EQ_GT] = ACTIONS(3879), - [anon_sym_var] = ACTIONS(3877), - [anon_sym_yield] = ACTIONS(3877), - [anon_sym_switch] = ACTIONS(3883), - [anon_sym_when] = ACTIONS(3877), - [sym_discard] = ACTIONS(3885), - [anon_sym_DOT_DOT] = ACTIONS(3879), - [anon_sym_and] = ACTIONS(3883), - [anon_sym_or] = ACTIONS(3883), - [anon_sym_AMP_AMP] = ACTIONS(3879), - [anon_sym_PIPE_PIPE] = ACTIONS(3879), - [anon_sym_QMARK_QMARK] = ACTIONS(3879), - [anon_sym_from] = ACTIONS(3877), - [anon_sym_into] = ACTIONS(3883), - [anon_sym_join] = ACTIONS(3877), - [anon_sym_on] = ACTIONS(3877), - [anon_sym_equals] = ACTIONS(3877), - [anon_sym_let] = ACTIONS(3877), - [anon_sym_orderby] = ACTIONS(3877), - [anon_sym_ascending] = ACTIONS(3877), - [anon_sym_descending] = ACTIONS(3877), - [anon_sym_group] = ACTIONS(3877), - [anon_sym_by] = ACTIONS(3877), - [anon_sym_select] = ACTIONS(3877), - [anon_sym_as] = ACTIONS(3883), - [anon_sym_is] = ACTIONS(3883), - [anon_sym_DASH_GT] = ACTIONS(3879), - [anon_sym_with] = ACTIONS(3883), + [sym__identifier_token] = ACTIONS(3871), + [anon_sym_alias] = ACTIONS(3873), + [anon_sym_global] = ACTIONS(3873), + [anon_sym_LBRACK] = ACTIONS(3859), + [anon_sym_LPAREN] = ACTIONS(3859), + [anon_sym_LBRACE] = ACTIONS(3861), + [anon_sym_file] = ACTIONS(3873), + [anon_sym_LT] = ACTIONS(3863), + [anon_sym_GT] = ACTIONS(3863), + [anon_sym_where] = ACTIONS(3863), + [anon_sym_QMARK] = ACTIONS(3863), + [anon_sym_notnull] = ACTIONS(3873), + [anon_sym_unmanaged] = ACTIONS(3873), + [anon_sym_BANG] = ACTIONS(3863), + [anon_sym_PLUS_PLUS] = ACTIONS(3859), + [anon_sym_DASH_DASH] = ACTIONS(3859), + [anon_sym_PLUS] = ACTIONS(3863), + [anon_sym_DASH] = ACTIONS(3863), + [anon_sym_STAR] = ACTIONS(3859), + [anon_sym_SLASH] = ACTIONS(3863), + [anon_sym_PERCENT] = ACTIONS(3859), + [anon_sym_CARET] = ACTIONS(3859), + [anon_sym_PIPE] = ACTIONS(3863), + [anon_sym_AMP] = ACTIONS(3863), + [anon_sym_LT_LT] = ACTIONS(3859), + [anon_sym_GT_GT] = ACTIONS(3863), + [anon_sym_GT_GT_GT] = ACTIONS(3859), + [anon_sym_EQ_EQ] = ACTIONS(3859), + [anon_sym_BANG_EQ] = ACTIONS(3859), + [anon_sym_GT_EQ] = ACTIONS(3859), + [anon_sym_LT_EQ] = ACTIONS(3859), + [anon_sym_DOT] = ACTIONS(3863), + [anon_sym_scoped] = ACTIONS(3873), + [anon_sym_var] = ACTIONS(3873), + [anon_sym_yield] = ACTIONS(3873), + [anon_sym_switch] = ACTIONS(3863), + [anon_sym_when] = ACTIONS(3873), + [sym_discard] = ACTIONS(4187), + [anon_sym_DOT_DOT] = ACTIONS(3859), + [anon_sym_and] = ACTIONS(3863), + [anon_sym_or] = ACTIONS(3863), + [anon_sym_AMP_AMP] = ACTIONS(3859), + [anon_sym_PIPE_PIPE] = ACTIONS(3859), + [anon_sym_QMARK_QMARK] = ACTIONS(3859), + [anon_sym_from] = ACTIONS(3863), + [anon_sym_into] = ACTIONS(3873), + [anon_sym_join] = ACTIONS(3863), + [anon_sym_on] = ACTIONS(3873), + [anon_sym_equals] = ACTIONS(3873), + [anon_sym_let] = ACTIONS(3863), + [anon_sym_orderby] = ACTIONS(3863), + [anon_sym_ascending] = ACTIONS(3873), + [anon_sym_descending] = ACTIONS(3873), + [anon_sym_group] = ACTIONS(3863), + [anon_sym_by] = ACTIONS(3873), + [anon_sym_select] = ACTIONS(3863), + [anon_sym_as] = ACTIONS(3863), + [anon_sym_is] = ACTIONS(3863), + [anon_sym_DASH_GT] = ACTIONS(3859), + [anon_sym_with] = ACTIONS(3863), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -426934,14 +426592,26 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2483] = { - [sym_parameter_list] = STATE(7311), - [sym_positional_pattern_clause] = STATE(2528), - [sym_property_pattern_clause] = STATE(2598), - [sym__variable_designation] = STATE(3346), - [sym_parenthesized_variable_designation] = STATE(3340), - [sym__lambda_parameters] = STATE(7536), - [sym_identifier] = STATE(3342), - [sym__reserved_identifier] = STATE(3177), + [sym_modifier] = STATE(3845), + [sym_variable_declaration] = STATE(7308), + [sym__name] = STATE(5864), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(4068), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(4073), + [sym_type] = STATE(5903), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_identifier] = STATE(5740), + [sym__reserved_identifier] = STATE(3654), [sym_preproc_region] = STATE(2483), [sym_preproc_endregion] = STATE(2483), [sym_preproc_line] = STATE(2483), @@ -426951,67 +426621,54 @@ 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), - [sym__identifier_token] = ACTIONS(3875), - [anon_sym_alias] = ACTIONS(3877), - [anon_sym_global] = ACTIONS(3877), - [anon_sym_LBRACK] = ACTIONS(3879), - [anon_sym_COLON] = ACTIONS(3879), - [anon_sym_LPAREN] = ACTIONS(3879), - [anon_sym_LBRACE] = ACTIONS(3881), - [anon_sym_file] = ACTIONS(3877), - [anon_sym_LT] = ACTIONS(3883), - [anon_sym_GT] = ACTIONS(3883), - [anon_sym_where] = ACTIONS(3877), - [anon_sym_QMARK] = ACTIONS(3883), - [anon_sym_notnull] = ACTIONS(3877), - [anon_sym_unmanaged] = ACTIONS(3877), - [anon_sym_BANG] = ACTIONS(3883), - [anon_sym_PLUS_PLUS] = ACTIONS(3879), - [anon_sym_DASH_DASH] = ACTIONS(3879), - [anon_sym_PLUS] = ACTIONS(3883), - [anon_sym_DASH] = ACTIONS(3883), - [anon_sym_STAR] = ACTIONS(3879), - [anon_sym_SLASH] = ACTIONS(3883), - [anon_sym_PERCENT] = ACTIONS(3879), - [anon_sym_CARET] = ACTIONS(3879), - [anon_sym_PIPE] = ACTIONS(3883), - [anon_sym_AMP] = ACTIONS(3883), - [anon_sym_LT_LT] = ACTIONS(3879), - [anon_sym_GT_GT] = ACTIONS(3883), - [anon_sym_GT_GT_GT] = ACTIONS(3879), - [anon_sym_EQ_EQ] = ACTIONS(3879), - [anon_sym_BANG_EQ] = ACTIONS(3879), - [anon_sym_GT_EQ] = ACTIONS(3879), - [anon_sym_LT_EQ] = ACTIONS(3879), - [anon_sym_DOT] = ACTIONS(3883), - [anon_sym_scoped] = ACTIONS(3877), - [anon_sym_var] = ACTIONS(3877), - [anon_sym_yield] = ACTIONS(3877), - [anon_sym_switch] = ACTIONS(3883), - [anon_sym_when] = ACTIONS(3883), - [sym_discard] = ACTIONS(3885), - [anon_sym_DOT_DOT] = ACTIONS(3879), - [anon_sym_and] = ACTIONS(3883), - [anon_sym_or] = ACTIONS(3883), - [anon_sym_AMP_AMP] = ACTIONS(3879), - [anon_sym_PIPE_PIPE] = ACTIONS(3879), - [anon_sym_QMARK_QMARK] = ACTIONS(3879), - [anon_sym_from] = ACTIONS(3877), - [anon_sym_into] = ACTIONS(3883), - [anon_sym_join] = ACTIONS(3877), - [anon_sym_on] = ACTIONS(3877), - [anon_sym_equals] = ACTIONS(3877), - [anon_sym_let] = ACTIONS(3877), - [anon_sym_orderby] = ACTIONS(3877), - [anon_sym_ascending] = ACTIONS(3877), - [anon_sym_descending] = ACTIONS(3877), - [anon_sym_group] = ACTIONS(3877), - [anon_sym_by] = ACTIONS(3877), - [anon_sym_select] = ACTIONS(3877), - [anon_sym_as] = ACTIONS(3883), - [anon_sym_is] = ACTIONS(3883), - [anon_sym_DASH_GT] = ACTIONS(3879), - [anon_sym_with] = ACTIONS(3883), + [aux_sym_using_directive_repeat1] = STATE(5728), + [aux_sym__class_declaration_initializer_repeat2] = STATE(2523), + [sym__identifier_token] = ACTIONS(2965), + [anon_sym_extern] = ACTIONS(645), + [anon_sym_alias] = ACTIONS(2969), + [anon_sym_global] = ACTIONS(2969), + [anon_sym_unsafe] = ACTIONS(4189), + [anon_sym_static] = ACTIONS(4191), + [anon_sym_LPAREN] = ACTIONS(4193), + [anon_sym_ref] = ACTIONS(3436), + [anon_sym_delegate] = ACTIONS(3438), + [anon_sym_abstract] = ACTIONS(645), + [anon_sym_async] = ACTIONS(645), + [anon_sym_const] = ACTIONS(645), + [anon_sym_file] = ACTIONS(3905), + [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(2969), + [anon_sym_notnull] = ACTIONS(2969), + [anon_sym_unmanaged] = ACTIONS(2969), + [anon_sym_scoped] = ACTIONS(2993), + [anon_sym_var] = ACTIONS(2995), + [sym_predefined_type] = ACTIONS(2997), + [anon_sym_yield] = ACTIONS(2969), + [anon_sym_when] = ACTIONS(2969), + [anon_sym_from] = ACTIONS(2969), + [anon_sym_into] = ACTIONS(2969), + [anon_sym_join] = ACTIONS(2969), + [anon_sym_on] = ACTIONS(2969), + [anon_sym_equals] = ACTIONS(2969), + [anon_sym_let] = ACTIONS(2969), + [anon_sym_orderby] = ACTIONS(2969), + [anon_sym_ascending] = ACTIONS(2969), + [anon_sym_descending] = ACTIONS(2969), + [anon_sym_group] = ACTIONS(2969), + [anon_sym_by] = ACTIONS(2969), + [anon_sym_select] = ACTIONS(2969), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -427024,6 +426681,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2484] = { + [sym_parameter_list] = STATE(7531), + [sym_positional_pattern_clause] = STATE(2573), + [sym_property_pattern_clause] = STATE(2731), + [sym__variable_designation] = STATE(3422), + [sym_parenthesized_variable_designation] = STATE(3352), + [sym__lambda_parameters] = STATE(7378), + [sym_identifier] = STATE(3430), + [sym__reserved_identifier] = STATE(3199), [sym_preproc_region] = STATE(2484), [sym_preproc_endregion] = STATE(2484), [sym_preproc_line] = STATE(2484), @@ -427033,75 +426698,66 @@ 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(3719), - [anon_sym_EQ] = ACTIONS(3704), - [anon_sym_LBRACK] = ACTIONS(3719), - [anon_sym_COLON] = ACTIONS(3719), - [anon_sym_COMMA] = ACTIONS(3719), - [anon_sym_RBRACK] = ACTIONS(3719), - [anon_sym_LPAREN] = ACTIONS(3719), - [anon_sym_RPAREN] = ACTIONS(3719), - [anon_sym_RBRACE] = ACTIONS(3719), - [anon_sym_LT] = ACTIONS(3704), - [anon_sym_GT] = ACTIONS(3704), - [anon_sym_in] = ACTIONS(3719), - [anon_sym_where] = ACTIONS(3719), - [anon_sym_QMARK] = ACTIONS(3704), - [anon_sym_BANG] = ACTIONS(3704), - [anon_sym_PLUS_PLUS] = ACTIONS(3719), - [anon_sym_DASH_DASH] = ACTIONS(3719), - [anon_sym_PLUS] = ACTIONS(3704), - [anon_sym_DASH] = ACTIONS(3704), - [anon_sym_STAR] = ACTIONS(3704), - [anon_sym_SLASH] = ACTIONS(3704), - [anon_sym_PERCENT] = ACTIONS(3704), - [anon_sym_CARET] = ACTIONS(3704), - [anon_sym_PIPE] = ACTIONS(3704), - [anon_sym_AMP] = ACTIONS(3704), - [anon_sym_LT_LT] = ACTIONS(3704), - [anon_sym_GT_GT] = ACTIONS(3704), - [anon_sym_GT_GT_GT] = ACTIONS(3704), - [anon_sym_EQ_EQ] = ACTIONS(3719), - [anon_sym_BANG_EQ] = ACTIONS(3719), - [anon_sym_GT_EQ] = ACTIONS(3719), - [anon_sym_LT_EQ] = ACTIONS(3719), - [anon_sym_DOT] = ACTIONS(3704), - [anon_sym_EQ_GT] = ACTIONS(3719), - [anon_sym_switch] = ACTIONS(3719), - [anon_sym_DOT_DOT] = ACTIONS(3719), - [anon_sym_and] = ACTIONS(3719), - [anon_sym_or] = ACTIONS(3704), - [anon_sym_PLUS_EQ] = ACTIONS(3719), - [anon_sym_DASH_EQ] = ACTIONS(3719), - [anon_sym_STAR_EQ] = ACTIONS(3719), - [anon_sym_SLASH_EQ] = ACTIONS(3719), - [anon_sym_PERCENT_EQ] = ACTIONS(3719), - [anon_sym_AMP_EQ] = ACTIONS(3719), - [anon_sym_CARET_EQ] = ACTIONS(3719), - [anon_sym_PIPE_EQ] = ACTIONS(3719), - [anon_sym_LT_LT_EQ] = ACTIONS(3719), - [anon_sym_GT_GT_EQ] = ACTIONS(3719), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3719), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3719), - [anon_sym_AMP_AMP] = ACTIONS(3719), - [anon_sym_PIPE_PIPE] = ACTIONS(3719), - [anon_sym_QMARK_QMARK] = ACTIONS(3704), - [anon_sym_from] = 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_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(3719), - [anon_sym_with] = ACTIONS(3719), - [aux_sym_preproc_if_token3] = ACTIONS(3719), - [aux_sym_preproc_else_token1] = ACTIONS(3719), - [aux_sym_preproc_elif_token1] = ACTIONS(3719), + [sym__identifier_token] = ACTIONS(3855), + [anon_sym_alias] = ACTIONS(3857), + [anon_sym_global] = ACTIONS(3857), + [anon_sym_LBRACK] = ACTIONS(3859), + [anon_sym_LPAREN] = ACTIONS(3859), + [anon_sym_LBRACE] = ACTIONS(3861), + [anon_sym_file] = ACTIONS(3857), + [anon_sym_LT] = ACTIONS(3863), + [anon_sym_GT] = ACTIONS(3863), + [anon_sym_where] = ACTIONS(3857), + [anon_sym_QMARK] = ACTIONS(3863), + [anon_sym_notnull] = ACTIONS(3857), + [anon_sym_unmanaged] = ACTIONS(3857), + [anon_sym_BANG] = ACTIONS(3863), + [anon_sym_PLUS_PLUS] = ACTIONS(3859), + [anon_sym_DASH_DASH] = ACTIONS(3859), + [anon_sym_PLUS] = ACTIONS(3863), + [anon_sym_DASH] = ACTIONS(3863), + [anon_sym_STAR] = ACTIONS(3859), + [anon_sym_SLASH] = ACTIONS(3863), + [anon_sym_PERCENT] = ACTIONS(3859), + [anon_sym_CARET] = ACTIONS(3859), + [anon_sym_PIPE] = ACTIONS(3863), + [anon_sym_AMP] = ACTIONS(3863), + [anon_sym_LT_LT] = ACTIONS(3859), + [anon_sym_GT_GT] = ACTIONS(3863), + [anon_sym_GT_GT_GT] = ACTIONS(3859), + [anon_sym_EQ_EQ] = ACTIONS(3859), + [anon_sym_BANG_EQ] = ACTIONS(3859), + [anon_sym_GT_EQ] = ACTIONS(3859), + [anon_sym_LT_EQ] = ACTIONS(3859), + [anon_sym_DOT] = ACTIONS(3863), + [anon_sym_scoped] = ACTIONS(3857), + [anon_sym_var] = ACTIONS(3857), + [anon_sym_yield] = ACTIONS(3857), + [anon_sym_switch] = ACTIONS(3863), + [anon_sym_when] = ACTIONS(3857), + [sym_discard] = ACTIONS(3877), + [anon_sym_DOT_DOT] = ACTIONS(3859), + [anon_sym_and] = ACTIONS(3867), + [anon_sym_or] = ACTIONS(3867), + [anon_sym_AMP_AMP] = ACTIONS(3859), + [anon_sym_PIPE_PIPE] = ACTIONS(3859), + [anon_sym_QMARK_QMARK] = ACTIONS(3859), + [anon_sym_from] = ACTIONS(3857), + [anon_sym_into] = ACTIONS(3857), + [anon_sym_join] = ACTIONS(3857), + [anon_sym_on] = ACTIONS(3857), + [anon_sym_equals] = ACTIONS(3863), + [anon_sym_let] = ACTIONS(3857), + [anon_sym_orderby] = ACTIONS(3857), + [anon_sym_ascending] = ACTIONS(3857), + [anon_sym_descending] = ACTIONS(3857), + [anon_sym_group] = ACTIONS(3857), + [anon_sym_by] = ACTIONS(3857), + [anon_sym_select] = ACTIONS(3857), + [anon_sym_as] = ACTIONS(3863), + [anon_sym_is] = ACTIONS(3863), + [anon_sym_DASH_GT] = ACTIONS(3859), + [anon_sym_with] = ACTIONS(3863), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -427114,6 +426770,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2485] = { + [sym_parameter_list] = STATE(7531), + [sym_positional_pattern_clause] = STATE(2577), + [sym_property_pattern_clause] = STATE(2785), + [sym__variable_designation] = STATE(3347), + [sym_parenthesized_variable_designation] = STATE(3344), + [sym__lambda_parameters] = STATE(7378), + [sym_identifier] = STATE(3309), + [sym__reserved_identifier] = STATE(3199), [sym_preproc_region] = STATE(2485), [sym_preproc_endregion] = STATE(2485), [sym_preproc_line] = STATE(2485), @@ -427123,75 +426787,66 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2485), [sym_preproc_define] = STATE(2485), [sym_preproc_undef] = STATE(2485), - [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), + [sym__identifier_token] = ACTIONS(3855), + [anon_sym_alias] = ACTIONS(3857), + [anon_sym_global] = ACTIONS(3857), + [anon_sym_LBRACK] = ACTIONS(3869), + [anon_sym_LPAREN] = ACTIONS(3869), + [anon_sym_LBRACE] = ACTIONS(3861), + [anon_sym_file] = ACTIONS(3857), + [anon_sym_LT] = ACTIONS(3867), + [anon_sym_GT] = ACTIONS(3867), + [anon_sym_where] = ACTIONS(3857), + [anon_sym_QMARK] = ACTIONS(3867), + [anon_sym_notnull] = ACTIONS(3857), + [anon_sym_unmanaged] = ACTIONS(3857), + [anon_sym_BANG] = ACTIONS(3867), + [anon_sym_PLUS_PLUS] = ACTIONS(3869), + [anon_sym_DASH_DASH] = ACTIONS(3869), + [anon_sym_PLUS] = ACTIONS(3867), + [anon_sym_DASH] = ACTIONS(3867), + [anon_sym_STAR] = ACTIONS(3869), + [anon_sym_SLASH] = ACTIONS(3867), + [anon_sym_PERCENT] = ACTIONS(3869), + [anon_sym_CARET] = ACTIONS(3869), + [anon_sym_PIPE] = ACTIONS(3867), + [anon_sym_AMP] = ACTIONS(3867), + [anon_sym_LT_LT] = ACTIONS(3869), + [anon_sym_GT_GT] = ACTIONS(3867), + [anon_sym_GT_GT_GT] = ACTIONS(3869), + [anon_sym_EQ_EQ] = ACTIONS(3869), + [anon_sym_BANG_EQ] = ACTIONS(3869), + [anon_sym_GT_EQ] = ACTIONS(3869), + [anon_sym_LT_EQ] = ACTIONS(3869), + [anon_sym_DOT] = ACTIONS(3867), + [anon_sym_scoped] = ACTIONS(3857), + [anon_sym_var] = ACTIONS(3857), + [anon_sym_yield] = ACTIONS(3857), + [anon_sym_switch] = ACTIONS(3867), + [anon_sym_when] = ACTIONS(3857), + [sym_discard] = ACTIONS(3865), + [anon_sym_DOT_DOT] = ACTIONS(3869), + [anon_sym_and] = ACTIONS(3867), + [anon_sym_or] = ACTIONS(3867), + [anon_sym_AMP_AMP] = ACTIONS(3869), + [anon_sym_PIPE_PIPE] = ACTIONS(3869), + [anon_sym_QMARK_QMARK] = ACTIONS(3869), + [anon_sym_from] = ACTIONS(3857), + [anon_sym_into] = ACTIONS(3867), + [anon_sym_join] = ACTIONS(3857), + [anon_sym_on] = ACTIONS(3857), + [anon_sym_equals] = ACTIONS(3867), + [anon_sym_let] = ACTIONS(3857), + [anon_sym_orderby] = ACTIONS(3857), + [anon_sym_ascending] = ACTIONS(3857), + [anon_sym_descending] = ACTIONS(3857), + [anon_sym_group] = ACTIONS(3857), + [anon_sym_by] = ACTIONS(3857), + [anon_sym_select] = ACTIONS(3857), + [anon_sym_as] = ACTIONS(3867), + [anon_sym_is] = ACTIONS(3867), + [anon_sym_DASH_GT] = ACTIONS(3869), + [anon_sym_with] = ACTIONS(3867), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -427204,14 +426859,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2486] = { - [sym_parameter_list] = STATE(7311), - [sym_positional_pattern_clause] = STATE(2543), - [sym_property_pattern_clause] = STATE(2595), - [sym__variable_designation] = STATE(3492), - [sym_parenthesized_variable_designation] = STATE(3463), - [sym__lambda_parameters] = STATE(7536), - [sym_identifier] = STATE(5052), - [sym__reserved_identifier] = STATE(3177), + [sym_parameter_list] = STATE(7531), + [sym_positional_pattern_clause] = STATE(2568), + [sym_property_pattern_clause] = STATE(2717), + [sym__variable_designation] = STATE(4139), + [sym_parenthesized_variable_designation] = STATE(4116), + [sym__lambda_parameters] = STATE(7378), + [sym_identifier] = STATE(4083), + [sym__reserved_identifier] = STATE(2900), [sym_preproc_region] = STATE(2486), [sym_preproc_endregion] = STATE(2486), [sym_preproc_line] = STATE(2486), @@ -427221,67 +426876,66 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2486), [sym_preproc_define] = STATE(2486), [sym_preproc_undef] = STATE(2486), - [sym__identifier_token] = ACTIONS(3875), - [anon_sym_alias] = ACTIONS(3877), - [anon_sym_global] = ACTIONS(3877), - [anon_sym_LBRACK] = ACTIONS(3893), - [anon_sym_LPAREN] = ACTIONS(3893), - [anon_sym_LBRACE] = ACTIONS(3881), - [anon_sym_file] = ACTIONS(3877), - [anon_sym_LT] = ACTIONS(3895), - [anon_sym_GT] = ACTIONS(3895), - [anon_sym_where] = ACTIONS(3877), - [anon_sym_QMARK] = ACTIONS(3895), - [anon_sym_notnull] = ACTIONS(3877), - [anon_sym_unmanaged] = ACTIONS(3877), - [anon_sym_BANG] = ACTIONS(3895), - [anon_sym_PLUS_PLUS] = ACTIONS(3893), - [anon_sym_DASH_DASH] = ACTIONS(3893), - [anon_sym_PLUS] = ACTIONS(3895), - [anon_sym_DASH] = ACTIONS(3895), - [anon_sym_STAR] = ACTIONS(3893), - [anon_sym_SLASH] = ACTIONS(3895), - [anon_sym_PERCENT] = ACTIONS(3893), - [anon_sym_CARET] = ACTIONS(3893), - [anon_sym_PIPE] = ACTIONS(3895), - [anon_sym_AMP] = ACTIONS(3895), - [anon_sym_LT_LT] = ACTIONS(3893), - [anon_sym_GT_GT] = ACTIONS(3895), - [anon_sym_GT_GT_GT] = ACTIONS(3893), - [anon_sym_EQ_EQ] = ACTIONS(3893), - [anon_sym_BANG_EQ] = ACTIONS(3893), - [anon_sym_GT_EQ] = ACTIONS(3893), - [anon_sym_LT_EQ] = ACTIONS(3893), - [anon_sym_DOT] = ACTIONS(3895), - [anon_sym_scoped] = ACTIONS(3877), - [anon_sym_EQ_GT] = ACTIONS(3893), - [anon_sym_var] = ACTIONS(3877), - [anon_sym_yield] = ACTIONS(3877), - [anon_sym_switch] = ACTIONS(3895), - [anon_sym_when] = ACTIONS(3895), - [sym_discard] = ACTIONS(3897), - [anon_sym_DOT_DOT] = ACTIONS(3893), - [anon_sym_and] = ACTIONS(3895), - [anon_sym_or] = ACTIONS(3895), - [anon_sym_AMP_AMP] = ACTIONS(3893), - [anon_sym_PIPE_PIPE] = ACTIONS(3893), - [anon_sym_QMARK_QMARK] = ACTIONS(3893), - [anon_sym_from] = ACTIONS(3877), - [anon_sym_into] = ACTIONS(3877), - [anon_sym_join] = ACTIONS(3877), - [anon_sym_on] = ACTIONS(3877), - [anon_sym_equals] = ACTIONS(3877), - [anon_sym_let] = ACTIONS(3877), - [anon_sym_orderby] = ACTIONS(3877), - [anon_sym_ascending] = ACTIONS(3877), - [anon_sym_descending] = ACTIONS(3877), - [anon_sym_group] = ACTIONS(3877), - [anon_sym_by] = ACTIONS(3877), - [anon_sym_select] = ACTIONS(3877), - [anon_sym_as] = ACTIONS(3895), - [anon_sym_is] = ACTIONS(3895), - [anon_sym_DASH_GT] = ACTIONS(3893), - [anon_sym_with] = ACTIONS(3895), + [sym__identifier_token] = ACTIONS(3814), + [anon_sym_alias] = ACTIONS(3816), + [anon_sym_global] = ACTIONS(3816), + [anon_sym_LBRACK] = ACTIONS(3869), + [anon_sym_LPAREN] = ACTIONS(3869), + [anon_sym_LBRACE] = ACTIONS(3861), + [anon_sym_file] = ACTIONS(3816), + [anon_sym_LT] = ACTIONS(3867), + [anon_sym_GT] = ACTIONS(3867), + [anon_sym_where] = ACTIONS(3867), + [anon_sym_QMARK] = ACTIONS(3867), + [anon_sym_notnull] = ACTIONS(3816), + [anon_sym_unmanaged] = ACTIONS(3816), + [anon_sym_BANG] = ACTIONS(3867), + [anon_sym_PLUS_PLUS] = ACTIONS(3869), + [anon_sym_DASH_DASH] = ACTIONS(3869), + [anon_sym_PLUS] = ACTIONS(3867), + [anon_sym_DASH] = ACTIONS(3867), + [anon_sym_STAR] = ACTIONS(3869), + [anon_sym_SLASH] = ACTIONS(3867), + [anon_sym_PERCENT] = ACTIONS(3869), + [anon_sym_CARET] = ACTIONS(3869), + [anon_sym_PIPE] = ACTIONS(3867), + [anon_sym_AMP] = ACTIONS(3867), + [anon_sym_LT_LT] = ACTIONS(3869), + [anon_sym_GT_GT] = ACTIONS(3867), + [anon_sym_GT_GT_GT] = ACTIONS(3869), + [anon_sym_EQ_EQ] = ACTIONS(3869), + [anon_sym_BANG_EQ] = ACTIONS(3869), + [anon_sym_GT_EQ] = ACTIONS(3869), + [anon_sym_LT_EQ] = ACTIONS(3869), + [anon_sym_DOT] = ACTIONS(3867), + [anon_sym_scoped] = ACTIONS(3816), + [anon_sym_var] = ACTIONS(3816), + [anon_sym_yield] = ACTIONS(3816), + [anon_sym_switch] = ACTIONS(3867), + [anon_sym_when] = ACTIONS(3816), + [sym_discard] = ACTIONS(4187), + [anon_sym_DOT_DOT] = ACTIONS(3869), + [anon_sym_and] = ACTIONS(3867), + [anon_sym_or] = ACTIONS(3867), + [anon_sym_AMP_AMP] = ACTIONS(3869), + [anon_sym_PIPE_PIPE] = ACTIONS(3869), + [anon_sym_QMARK_QMARK] = ACTIONS(3869), + [anon_sym_from] = ACTIONS(3867), + [anon_sym_into] = ACTIONS(3867), + [anon_sym_join] = ACTIONS(3867), + [anon_sym_on] = ACTIONS(3816), + [anon_sym_equals] = ACTIONS(3816), + [anon_sym_let] = ACTIONS(3867), + [anon_sym_orderby] = ACTIONS(3867), + [anon_sym_ascending] = ACTIONS(3816), + [anon_sym_descending] = ACTIONS(3816), + [anon_sym_group] = ACTIONS(3867), + [anon_sym_by] = ACTIONS(3816), + [anon_sym_select] = ACTIONS(3867), + [anon_sym_as] = ACTIONS(3867), + [anon_sym_is] = ACTIONS(3867), + [anon_sym_DASH_GT] = ACTIONS(3869), + [anon_sym_with] = ACTIONS(3867), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -427294,11 +426948,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2487] = { - [sym_property_pattern_clause] = STATE(2558), - [sym__variable_designation] = STATE(4510), - [sym_parenthesized_variable_designation] = STATE(4761), - [sym_identifier] = STATE(4764), - [sym__reserved_identifier] = STATE(4323), + [sym__name] = STATE(3107), + [sym_alias_qualified_name] = STATE(2976), + [sym__simple_name] = STATE(2976), + [sym_qualified_name] = STATE(2976), + [sym_generic_name] = STATE(3030), + [sym_ref_type] = STATE(3000), + [sym__scoped_base_type] = STATE(3001), + [sym_identifier] = STATE(2927), + [sym__reserved_identifier] = STATE(2916), [sym_preproc_region] = STATE(2487), [sym_preproc_endregion] = STATE(2487), [sym_preproc_line] = STATE(2487), @@ -427308,86 +426966,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2487), [sym_preproc_define] = STATE(2487), [sym_preproc_undef] = STATE(2487), - [sym__identifier_token] = ACTIONS(4050), - [anon_sym_alias] = ACTIONS(4052), - [anon_sym_global] = ACTIONS(4052), - [anon_sym_LBRACK] = ACTIONS(3913), - [anon_sym_COLON] = ACTIONS(3913), - [anon_sym_COMMA] = ACTIONS(3913), - [anon_sym_LPAREN] = ACTIONS(3913), - [anon_sym_LBRACE] = ACTIONS(4054), - [anon_sym_file] = ACTIONS(4052), - [anon_sym_LT] = ACTIONS(3915), - [anon_sym_GT] = ACTIONS(3915), - [anon_sym_where] = ACTIONS(4052), - [anon_sym_QMARK] = ACTIONS(3915), - [anon_sym_notnull] = ACTIONS(4052), - [anon_sym_unmanaged] = ACTIONS(4052), - [anon_sym_BANG] = ACTIONS(3915), - [anon_sym_PLUS_PLUS] = ACTIONS(3913), - [anon_sym_DASH_DASH] = ACTIONS(3913), - [anon_sym_PLUS] = ACTIONS(3915), - [anon_sym_DASH] = ACTIONS(3915), - [anon_sym_STAR] = ACTIONS(3913), - [anon_sym_SLASH] = ACTIONS(3915), - [anon_sym_PERCENT] = ACTIONS(3913), - [anon_sym_CARET] = ACTIONS(3913), - [anon_sym_PIPE] = ACTIONS(3915), - [anon_sym_AMP] = ACTIONS(3915), - [anon_sym_LT_LT] = ACTIONS(3913), - [anon_sym_GT_GT] = ACTIONS(3915), - [anon_sym_GT_GT_GT] = ACTIONS(3913), - [anon_sym_EQ_EQ] = ACTIONS(3913), - [anon_sym_BANG_EQ] = ACTIONS(3913), - [anon_sym_GT_EQ] = ACTIONS(3913), - [anon_sym_LT_EQ] = ACTIONS(3913), - [anon_sym_DOT] = ACTIONS(3915), - [anon_sym_scoped] = ACTIONS(4052), - [anon_sym_var] = ACTIONS(4052), - [anon_sym_yield] = ACTIONS(4052), - [anon_sym_switch] = ACTIONS(3915), - [anon_sym_when] = ACTIONS(4052), - [sym_discard] = ACTIONS(4056), - [anon_sym_DOT_DOT] = ACTIONS(3913), - [anon_sym_and] = ACTIONS(3915), - [anon_sym_or] = ACTIONS(3915), - [anon_sym_AMP_AMP] = ACTIONS(3913), - [anon_sym_PIPE_PIPE] = ACTIONS(3913), - [anon_sym_QMARK_QMARK] = ACTIONS(3913), - [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(3915), - [anon_sym_is] = ACTIONS(3915), - [anon_sym_DASH_GT] = ACTIONS(3913), - [anon_sym_with] = ACTIONS(3915), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_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(3913), + [sym__identifier_token] = ACTIONS(3871), + [anon_sym_alias] = ACTIONS(3873), + [anon_sym_global] = ACTIONS(3873), + [anon_sym_LBRACK] = ACTIONS(3429), + [anon_sym_LPAREN] = ACTIONS(3429), + [anon_sym_ref] = ACTIONS(4195), + [anon_sym_LBRACE] = ACTIONS(3429), + [anon_sym_file] = ACTIONS(3873), + [anon_sym_LT] = ACTIONS(3431), + [anon_sym_GT] = ACTIONS(3431), + [anon_sym_where] = ACTIONS(3873), + [anon_sym_QMARK] = ACTIONS(3431), + [anon_sym_notnull] = ACTIONS(3873), + [anon_sym_unmanaged] = ACTIONS(3873), + [anon_sym_BANG] = ACTIONS(3431), + [anon_sym_PLUS_PLUS] = ACTIONS(3429), + [anon_sym_DASH_DASH] = ACTIONS(3429), + [anon_sym_PLUS] = ACTIONS(3431), + [anon_sym_DASH] = ACTIONS(3431), + [anon_sym_STAR] = ACTIONS(3429), + [anon_sym_SLASH] = ACTIONS(3431), + [anon_sym_PERCENT] = ACTIONS(3429), + [anon_sym_CARET] = ACTIONS(3429), + [anon_sym_PIPE] = ACTIONS(3431), + [anon_sym_AMP] = ACTIONS(3431), + [anon_sym_LT_LT] = ACTIONS(3429), + [anon_sym_GT_GT] = ACTIONS(3431), + [anon_sym_GT_GT_GT] = ACTIONS(3429), + [anon_sym_EQ_EQ] = ACTIONS(3429), + [anon_sym_BANG_EQ] = ACTIONS(3429), + [anon_sym_GT_EQ] = ACTIONS(3429), + [anon_sym_LT_EQ] = ACTIONS(3429), + [anon_sym_DOT] = ACTIONS(3431), + [anon_sym_scoped] = ACTIONS(3873), + [anon_sym_COLON_COLON] = ACTIONS(3429), + [anon_sym_var] = ACTIONS(3873), + [anon_sym_yield] = ACTIONS(3873), + [anon_sym_switch] = ACTIONS(3431), + [anon_sym_when] = ACTIONS(3873), + [anon_sym_DOT_DOT] = ACTIONS(3429), + [anon_sym_AMP_AMP] = ACTIONS(3429), + [anon_sym_PIPE_PIPE] = ACTIONS(3429), + [anon_sym_QMARK_QMARK] = ACTIONS(3429), + [anon_sym_from] = ACTIONS(3873), + [anon_sym_into] = ACTIONS(3873), + [anon_sym_join] = ACTIONS(3873), + [anon_sym_on] = ACTIONS(3873), + [anon_sym_equals] = ACTIONS(3873), + [anon_sym_let] = ACTIONS(3873), + [anon_sym_orderby] = ACTIONS(3873), + [anon_sym_ascending] = ACTIONS(3873), + [anon_sym_descending] = ACTIONS(3873), + [anon_sym_group] = ACTIONS(3873), + [anon_sym_by] = ACTIONS(4162), + [anon_sym_select] = ACTIONS(3873), + [anon_sym_as] = ACTIONS(3431), + [anon_sym_is] = ACTIONS(3431), + [anon_sym_DASH_GT] = ACTIONS(3429), + [anon_sym_with] = ACTIONS(3431), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_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_property_pattern_clause] = STATE(2551), - [sym__variable_designation] = STATE(4780), - [sym_parenthesized_variable_designation] = STATE(4761), - [sym_identifier] = STATE(4764), - [sym__reserved_identifier] = STATE(4323), + [sym_parameter_list] = STATE(7531), + [sym_positional_pattern_clause] = STATE(2564), + [sym_property_pattern_clause] = STATE(2680), + [sym__variable_designation] = STATE(3422), + [sym_parenthesized_variable_designation] = STATE(3352), + [sym__lambda_parameters] = STATE(7378), + [sym_identifier] = STATE(3430), + [sym__reserved_identifier] = STATE(3199), [sym_preproc_region] = STATE(2488), [sym_preproc_endregion] = STATE(2488), [sym_preproc_line] = STATE(2488), @@ -427397,89 +427054,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2488), [sym_preproc_define] = STATE(2488), [sym_preproc_undef] = STATE(2488), - [sym__identifier_token] = ACTIONS(4050), - [anon_sym_alias] = ACTIONS(4052), - [anon_sym_global] = ACTIONS(4052), - [anon_sym_LBRACK] = ACTIONS(3905), - [anon_sym_COLON] = ACTIONS(3905), - [anon_sym_COMMA] = ACTIONS(3905), - [anon_sym_LPAREN] = ACTIONS(3905), - [anon_sym_LBRACE] = ACTIONS(4054), - [anon_sym_file] = ACTIONS(4052), - [anon_sym_LT] = ACTIONS(3907), - [anon_sym_GT] = ACTIONS(3907), - [anon_sym_where] = ACTIONS(4052), - [anon_sym_QMARK] = ACTIONS(3907), - [anon_sym_notnull] = ACTIONS(4052), - [anon_sym_unmanaged] = ACTIONS(4052), - [anon_sym_BANG] = ACTIONS(3907), - [anon_sym_PLUS_PLUS] = ACTIONS(3905), - [anon_sym_DASH_DASH] = ACTIONS(3905), - [anon_sym_PLUS] = ACTIONS(3907), - [anon_sym_DASH] = ACTIONS(3907), - [anon_sym_STAR] = ACTIONS(3905), - [anon_sym_SLASH] = ACTIONS(3907), - [anon_sym_PERCENT] = ACTIONS(3905), - [anon_sym_CARET] = ACTIONS(3905), - [anon_sym_PIPE] = ACTIONS(3907), - [anon_sym_AMP] = ACTIONS(3907), - [anon_sym_LT_LT] = ACTIONS(3905), - [anon_sym_GT_GT] = ACTIONS(3907), - [anon_sym_GT_GT_GT] = ACTIONS(3905), - [anon_sym_EQ_EQ] = ACTIONS(3905), - [anon_sym_BANG_EQ] = ACTIONS(3905), - [anon_sym_GT_EQ] = ACTIONS(3905), - [anon_sym_LT_EQ] = ACTIONS(3905), - [anon_sym_DOT] = ACTIONS(3907), - [anon_sym_scoped] = ACTIONS(4052), - [anon_sym_var] = ACTIONS(4052), - [anon_sym_yield] = ACTIONS(4052), - [anon_sym_switch] = ACTIONS(3907), - [anon_sym_when] = ACTIONS(4052), - [sym_discard] = ACTIONS(4056), - [anon_sym_DOT_DOT] = ACTIONS(3905), - [anon_sym_and] = ACTIONS(3907), - [anon_sym_or] = ACTIONS(3907), - [anon_sym_AMP_AMP] = ACTIONS(3905), - [anon_sym_PIPE_PIPE] = ACTIONS(3905), - [anon_sym_QMARK_QMARK] = ACTIONS(3905), - [anon_sym_from] = ACTIONS(4052), - [anon_sym_into] = ACTIONS(3907), - [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(3907), - [anon_sym_is] = ACTIONS(3907), - [anon_sym_DASH_GT] = ACTIONS(3905), - [anon_sym_with] = ACTIONS(3907), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_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(3905), + [sym__identifier_token] = ACTIONS(3855), + [anon_sym_alias] = ACTIONS(3857), + [anon_sym_global] = ACTIONS(3857), + [anon_sym_LBRACK] = ACTIONS(3859), + [anon_sym_LPAREN] = ACTIONS(3859), + [anon_sym_LBRACE] = ACTIONS(3861), + [anon_sym_file] = ACTIONS(3857), + [anon_sym_LT] = ACTIONS(3863), + [anon_sym_GT] = ACTIONS(3863), + [anon_sym_where] = ACTIONS(3857), + [anon_sym_QMARK] = ACTIONS(3863), + [anon_sym_notnull] = ACTIONS(3857), + [anon_sym_unmanaged] = ACTIONS(3857), + [anon_sym_BANG] = ACTIONS(3863), + [anon_sym_PLUS_PLUS] = ACTIONS(3859), + [anon_sym_DASH_DASH] = ACTIONS(3859), + [anon_sym_PLUS] = ACTIONS(3863), + [anon_sym_DASH] = ACTIONS(3863), + [anon_sym_STAR] = ACTIONS(3859), + [anon_sym_SLASH] = ACTIONS(3863), + [anon_sym_PERCENT] = ACTIONS(3859), + [anon_sym_CARET] = ACTIONS(3859), + [anon_sym_PIPE] = ACTIONS(3863), + [anon_sym_AMP] = ACTIONS(3863), + [anon_sym_LT_LT] = ACTIONS(3859), + [anon_sym_GT_GT] = ACTIONS(3863), + [anon_sym_GT_GT_GT] = ACTIONS(3859), + [anon_sym_EQ_EQ] = ACTIONS(3859), + [anon_sym_BANG_EQ] = ACTIONS(3859), + [anon_sym_GT_EQ] = ACTIONS(3859), + [anon_sym_LT_EQ] = ACTIONS(3859), + [anon_sym_DOT] = ACTIONS(3863), + [anon_sym_scoped] = ACTIONS(3857), + [anon_sym_var] = ACTIONS(3857), + [anon_sym_yield] = ACTIONS(3857), + [anon_sym_switch] = ACTIONS(3863), + [anon_sym_when] = ACTIONS(3857), + [sym_discard] = ACTIONS(3877), + [anon_sym_DOT_DOT] = ACTIONS(3859), + [anon_sym_and] = ACTIONS(3863), + [anon_sym_or] = ACTIONS(3863), + [anon_sym_AMP_AMP] = ACTIONS(3859), + [anon_sym_PIPE_PIPE] = ACTIONS(3859), + [anon_sym_QMARK_QMARK] = ACTIONS(3859), + [anon_sym_from] = ACTIONS(3857), + [anon_sym_into] = ACTIONS(3857), + [anon_sym_join] = ACTIONS(3857), + [anon_sym_on] = ACTIONS(3857), + [anon_sym_equals] = ACTIONS(3857), + [anon_sym_let] = ACTIONS(3857), + [anon_sym_orderby] = ACTIONS(3857), + [anon_sym_ascending] = ACTIONS(3857), + [anon_sym_descending] = ACTIONS(3857), + [anon_sym_group] = ACTIONS(3857), + [anon_sym_by] = ACTIONS(3863), + [anon_sym_select] = ACTIONS(3857), + [anon_sym_as] = ACTIONS(3863), + [anon_sym_is] = ACTIONS(3863), + [anon_sym_DASH_GT] = ACTIONS(3859), + [anon_sym_with] = ACTIONS(3863), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), }, [2489] = { - [sym_parameter_list] = STATE(7311), - [sym_positional_pattern_clause] = STATE(2567), - [sym_property_pattern_clause] = STATE(2787), - [sym__variable_designation] = STATE(3346), - [sym_parenthesized_variable_designation] = STATE(3340), - [sym__lambda_parameters] = STATE(7536), - [sym_identifier] = STATE(3342), - [sym__reserved_identifier] = STATE(3177), + [sym_parameter_list] = STATE(7531), + [sym_positional_pattern_clause] = STATE(2590), + [sym_property_pattern_clause] = STATE(2795), + [sym__variable_designation] = STATE(3347), + [sym_parenthesized_variable_designation] = STATE(3344), + [sym__lambda_parameters] = STATE(7378), + [sym_identifier] = STATE(3309), + [sym__reserved_identifier] = STATE(3199), [sym_preproc_region] = STATE(2489), [sym_preproc_endregion] = STATE(2489), [sym_preproc_line] = STATE(2489), @@ -427489,66 +427143,66 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2489), [sym_preproc_define] = STATE(2489), [sym_preproc_undef] = STATE(2489), - [sym__identifier_token] = ACTIONS(3875), - [anon_sym_alias] = ACTIONS(3877), - [anon_sym_global] = ACTIONS(3877), - [anon_sym_LBRACK] = ACTIONS(3893), - [anon_sym_LPAREN] = ACTIONS(3893), - [anon_sym_LBRACE] = ACTIONS(3881), - [anon_sym_file] = ACTIONS(3877), - [anon_sym_LT] = ACTIONS(3895), - [anon_sym_GT] = ACTIONS(3895), - [anon_sym_where] = ACTIONS(3877), - [anon_sym_QMARK] = ACTIONS(3895), - [anon_sym_notnull] = ACTIONS(3877), - [anon_sym_unmanaged] = ACTIONS(3877), - [anon_sym_BANG] = ACTIONS(3895), - [anon_sym_PLUS_PLUS] = ACTIONS(3893), - [anon_sym_DASH_DASH] = ACTIONS(3893), - [anon_sym_PLUS] = ACTIONS(3895), - [anon_sym_DASH] = ACTIONS(3895), - [anon_sym_STAR] = ACTIONS(3893), - [anon_sym_SLASH] = ACTIONS(3895), - [anon_sym_PERCENT] = ACTIONS(3893), - [anon_sym_CARET] = ACTIONS(3893), - [anon_sym_PIPE] = ACTIONS(3895), - [anon_sym_AMP] = ACTIONS(3895), - [anon_sym_LT_LT] = ACTIONS(3893), - [anon_sym_GT_GT] = ACTIONS(3895), - [anon_sym_GT_GT_GT] = ACTIONS(3893), - [anon_sym_EQ_EQ] = ACTIONS(3893), - [anon_sym_BANG_EQ] = ACTIONS(3893), - [anon_sym_GT_EQ] = ACTIONS(3893), - [anon_sym_LT_EQ] = ACTIONS(3893), - [anon_sym_DOT] = ACTIONS(3895), - [anon_sym_scoped] = ACTIONS(3877), - [anon_sym_var] = ACTIONS(3877), - [anon_sym_yield] = ACTIONS(3877), - [anon_sym_switch] = ACTIONS(3895), - [anon_sym_when] = ACTIONS(3877), - [sym_discard] = ACTIONS(3885), - [anon_sym_DOT_DOT] = ACTIONS(3893), - [anon_sym_and] = ACTIONS(3895), - [anon_sym_or] = ACTIONS(3895), - [anon_sym_AMP_AMP] = ACTIONS(3893), - [anon_sym_PIPE_PIPE] = ACTIONS(3893), - [anon_sym_QMARK_QMARK] = ACTIONS(3893), - [anon_sym_from] = ACTIONS(3877), - [anon_sym_into] = ACTIONS(3895), - [anon_sym_join] = ACTIONS(3877), - [anon_sym_on] = ACTIONS(3877), - [anon_sym_equals] = ACTIONS(3895), - [anon_sym_let] = ACTIONS(3877), - [anon_sym_orderby] = ACTIONS(3877), - [anon_sym_ascending] = ACTIONS(3877), - [anon_sym_descending] = ACTIONS(3877), - [anon_sym_group] = ACTIONS(3877), - [anon_sym_by] = ACTIONS(3877), - [anon_sym_select] = ACTIONS(3877), - [anon_sym_as] = ACTIONS(3895), - [anon_sym_is] = ACTIONS(3895), - [anon_sym_DASH_GT] = ACTIONS(3893), - [anon_sym_with] = ACTIONS(3895), + [sym__identifier_token] = ACTIONS(3855), + [anon_sym_alias] = ACTIONS(3857), + [anon_sym_global] = ACTIONS(3857), + [anon_sym_LBRACK] = ACTIONS(3869), + [anon_sym_LPAREN] = ACTIONS(3869), + [anon_sym_LBRACE] = ACTIONS(3861), + [anon_sym_file] = ACTIONS(3857), + [anon_sym_LT] = ACTIONS(3867), + [anon_sym_GT] = ACTIONS(3867), + [anon_sym_where] = ACTIONS(3857), + [anon_sym_QMARK] = ACTIONS(3867), + [anon_sym_notnull] = ACTIONS(3857), + [anon_sym_unmanaged] = ACTIONS(3857), + [anon_sym_BANG] = ACTIONS(3867), + [anon_sym_PLUS_PLUS] = ACTIONS(3869), + [anon_sym_DASH_DASH] = ACTIONS(3869), + [anon_sym_PLUS] = ACTIONS(3867), + [anon_sym_DASH] = ACTIONS(3867), + [anon_sym_STAR] = ACTIONS(3869), + [anon_sym_SLASH] = ACTIONS(3867), + [anon_sym_PERCENT] = ACTIONS(3869), + [anon_sym_CARET] = ACTIONS(3869), + [anon_sym_PIPE] = ACTIONS(3867), + [anon_sym_AMP] = ACTIONS(3867), + [anon_sym_LT_LT] = ACTIONS(3869), + [anon_sym_GT_GT] = ACTIONS(3867), + [anon_sym_GT_GT_GT] = ACTIONS(3869), + [anon_sym_EQ_EQ] = ACTIONS(3869), + [anon_sym_BANG_EQ] = ACTIONS(3869), + [anon_sym_GT_EQ] = ACTIONS(3869), + [anon_sym_LT_EQ] = ACTIONS(3869), + [anon_sym_DOT] = ACTIONS(3867), + [anon_sym_scoped] = ACTIONS(3857), + [anon_sym_var] = ACTIONS(3857), + [anon_sym_yield] = ACTIONS(3857), + [anon_sym_switch] = ACTIONS(3867), + [anon_sym_when] = ACTIONS(3857), + [sym_discard] = ACTIONS(3865), + [anon_sym_DOT_DOT] = ACTIONS(3869), + [anon_sym_and] = ACTIONS(3867), + [anon_sym_or] = ACTIONS(3867), + [anon_sym_AMP_AMP] = ACTIONS(3869), + [anon_sym_PIPE_PIPE] = ACTIONS(3869), + [anon_sym_QMARK_QMARK] = ACTIONS(3869), + [anon_sym_from] = ACTIONS(3857), + [anon_sym_into] = ACTIONS(3867), + [anon_sym_join] = ACTIONS(3857), + [anon_sym_on] = ACTIONS(3867), + [anon_sym_equals] = ACTIONS(3857), + [anon_sym_let] = ACTIONS(3857), + [anon_sym_orderby] = ACTIONS(3857), + [anon_sym_ascending] = ACTIONS(3857), + [anon_sym_descending] = ACTIONS(3857), + [anon_sym_group] = ACTIONS(3857), + [anon_sym_by] = ACTIONS(3857), + [anon_sym_select] = ACTIONS(3857), + [anon_sym_as] = ACTIONS(3867), + [anon_sym_is] = ACTIONS(3867), + [anon_sym_DASH_GT] = ACTIONS(3869), + [anon_sym_with] = ACTIONS(3867), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -427561,14 +427215,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2490] = { - [sym_parameter_list] = STATE(7311), - [sym_positional_pattern_clause] = STATE(2585), - [sym_property_pattern_clause] = STATE(2732), - [sym__variable_designation] = STATE(4139), - [sym_parenthesized_variable_designation] = STATE(4173), - [sym__lambda_parameters] = STATE(7536), - [sym_identifier] = STATE(4106), - [sym__reserved_identifier] = STATE(2904), + [sym__name] = STATE(3107), + [sym_alias_qualified_name] = STATE(2976), + [sym__simple_name] = STATE(2976), + [sym_qualified_name] = STATE(2976), + [sym_generic_name] = STATE(3030), + [sym_ref_type] = STATE(3000), + [sym__scoped_base_type] = STATE(3001), + [sym_identifier] = STATE(2927), + [sym__reserved_identifier] = STATE(2916), [sym_preproc_region] = STATE(2490), [sym_preproc_endregion] = STATE(2490), [sym_preproc_line] = STATE(2490), @@ -427578,66 +427233,65 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2490), [sym_preproc_define] = STATE(2490), [sym_preproc_undef] = STATE(2490), - [sym__identifier_token] = ACTIONS(3861), - [anon_sym_alias] = ACTIONS(3863), - [anon_sym_global] = ACTIONS(3863), - [anon_sym_LBRACK] = ACTIONS(3879), - [anon_sym_LPAREN] = ACTIONS(3879), - [anon_sym_LBRACE] = ACTIONS(3881), - [anon_sym_file] = ACTIONS(3863), - [anon_sym_LT] = ACTIONS(3883), - [anon_sym_GT] = ACTIONS(3883), - [anon_sym_where] = ACTIONS(3883), - [anon_sym_QMARK] = ACTIONS(3883), - [anon_sym_notnull] = ACTIONS(3863), - [anon_sym_unmanaged] = ACTIONS(3863), - [anon_sym_BANG] = ACTIONS(3883), - [anon_sym_PLUS_PLUS] = ACTIONS(3879), - [anon_sym_DASH_DASH] = ACTIONS(3879), - [anon_sym_PLUS] = ACTIONS(3883), - [anon_sym_DASH] = ACTIONS(3883), - [anon_sym_STAR] = ACTIONS(3879), - [anon_sym_SLASH] = ACTIONS(3883), - [anon_sym_PERCENT] = ACTIONS(3879), - [anon_sym_CARET] = ACTIONS(3879), - [anon_sym_PIPE] = ACTIONS(3883), - [anon_sym_AMP] = ACTIONS(3883), - [anon_sym_LT_LT] = ACTIONS(3879), - [anon_sym_GT_GT] = ACTIONS(3883), - [anon_sym_GT_GT_GT] = ACTIONS(3879), - [anon_sym_EQ_EQ] = ACTIONS(3879), - [anon_sym_BANG_EQ] = ACTIONS(3879), - [anon_sym_GT_EQ] = ACTIONS(3879), - [anon_sym_LT_EQ] = ACTIONS(3879), - [anon_sym_DOT] = ACTIONS(3883), - [anon_sym_scoped] = ACTIONS(3863), - [anon_sym_var] = ACTIONS(3863), - [anon_sym_yield] = ACTIONS(3863), - [anon_sym_switch] = ACTIONS(3883), - [anon_sym_when] = ACTIONS(3863), - [sym_discard] = ACTIONS(4209), - [anon_sym_DOT_DOT] = ACTIONS(3879), - [anon_sym_and] = ACTIONS(3883), - [anon_sym_or] = ACTIONS(3883), - [anon_sym_AMP_AMP] = ACTIONS(3879), - [anon_sym_PIPE_PIPE] = ACTIONS(3879), - [anon_sym_QMARK_QMARK] = ACTIONS(3879), - [anon_sym_from] = ACTIONS(3883), - [anon_sym_into] = ACTIONS(3883), - [anon_sym_join] = ACTIONS(3883), - [anon_sym_on] = ACTIONS(3863), - [anon_sym_equals] = ACTIONS(3863), - [anon_sym_let] = ACTIONS(3883), - [anon_sym_orderby] = ACTIONS(3883), - [anon_sym_ascending] = ACTIONS(3863), - [anon_sym_descending] = ACTIONS(3863), - [anon_sym_group] = ACTIONS(3883), - [anon_sym_by] = ACTIONS(3863), - [anon_sym_select] = ACTIONS(3883), - [anon_sym_as] = ACTIONS(3883), - [anon_sym_is] = ACTIONS(3883), - [anon_sym_DASH_GT] = ACTIONS(3879), - [anon_sym_with] = ACTIONS(3883), + [sym__identifier_token] = ACTIONS(3871), + [anon_sym_alias] = ACTIONS(3873), + [anon_sym_global] = ACTIONS(3873), + [anon_sym_LBRACK] = ACTIONS(3429), + [anon_sym_LPAREN] = ACTIONS(3429), + [anon_sym_ref] = ACTIONS(4197), + [anon_sym_LBRACE] = ACTIONS(3429), + [anon_sym_file] = ACTIONS(3873), + [anon_sym_LT] = ACTIONS(3431), + [anon_sym_GT] = ACTIONS(3431), + [anon_sym_where] = ACTIONS(3873), + [anon_sym_QMARK] = ACTIONS(3431), + [anon_sym_notnull] = ACTIONS(3873), + [anon_sym_unmanaged] = ACTIONS(3873), + [anon_sym_BANG] = ACTIONS(3431), + [anon_sym_PLUS_PLUS] = ACTIONS(3429), + [anon_sym_DASH_DASH] = ACTIONS(3429), + [anon_sym_PLUS] = ACTIONS(3431), + [anon_sym_DASH] = ACTIONS(3431), + [anon_sym_STAR] = ACTIONS(3429), + [anon_sym_SLASH] = ACTIONS(3431), + [anon_sym_PERCENT] = ACTIONS(3429), + [anon_sym_CARET] = ACTIONS(3429), + [anon_sym_PIPE] = ACTIONS(3431), + [anon_sym_AMP] = ACTIONS(3431), + [anon_sym_LT_LT] = ACTIONS(3429), + [anon_sym_GT_GT] = ACTIONS(3431), + [anon_sym_GT_GT_GT] = ACTIONS(3429), + [anon_sym_EQ_EQ] = ACTIONS(3429), + [anon_sym_BANG_EQ] = ACTIONS(3429), + [anon_sym_GT_EQ] = ACTIONS(3429), + [anon_sym_LT_EQ] = ACTIONS(3429), + [anon_sym_DOT] = ACTIONS(3431), + [anon_sym_scoped] = ACTIONS(3873), + [anon_sym_COLON_COLON] = ACTIONS(3429), + [anon_sym_var] = ACTIONS(3873), + [anon_sym_yield] = ACTIONS(3873), + [anon_sym_switch] = ACTIONS(3431), + [anon_sym_when] = ACTIONS(3873), + [anon_sym_DOT_DOT] = ACTIONS(3429), + [anon_sym_AMP_AMP] = ACTIONS(3429), + [anon_sym_PIPE_PIPE] = ACTIONS(3429), + [anon_sym_QMARK_QMARK] = ACTIONS(3429), + [anon_sym_from] = ACTIONS(3873), + [anon_sym_into] = ACTIONS(3873), + [anon_sym_join] = ACTIONS(3873), + [anon_sym_on] = ACTIONS(3873), + [anon_sym_equals] = ACTIONS(4162), + [anon_sym_let] = ACTIONS(3873), + [anon_sym_orderby] = ACTIONS(3873), + [anon_sym_ascending] = ACTIONS(3873), + [anon_sym_descending] = ACTIONS(3873), + [anon_sym_group] = ACTIONS(3873), + [anon_sym_by] = ACTIONS(3873), + [anon_sym_select] = ACTIONS(3873), + [anon_sym_as] = ACTIONS(3431), + [anon_sym_is] = ACTIONS(3431), + [anon_sym_DASH_GT] = ACTIONS(3429), + [anon_sym_with] = ACTIONS(3431), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -427650,26 +427304,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2491] = { - [sym_modifier] = STATE(3878), - [sym_variable_declaration] = STATE(7339), - [sym__name] = STATE(5909), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(4096), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(4109), - [sym_type] = STATE(5921), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_identifier] = STATE(5739), - [sym__reserved_identifier] = STATE(3691), + [sym__name] = STATE(3107), + [sym_alias_qualified_name] = STATE(2976), + [sym__simple_name] = STATE(2976), + [sym_qualified_name] = STATE(2976), + [sym_generic_name] = STATE(3030), + [sym_ref_type] = STATE(3000), + [sym__scoped_base_type] = STATE(3001), + [sym_identifier] = STATE(2927), + [sym__reserved_identifier] = STATE(2916), [sym_preproc_region] = STATE(2491), [sym_preproc_endregion] = STATE(2491), [sym_preproc_line] = STATE(2491), @@ -427679,54 +427322,65 @@ 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), - [aux_sym_using_directive_repeat1] = STATE(5737), - [aux_sym__class_declaration_initializer_repeat2] = STATE(2530), - [sym__identifier_token] = ACTIONS(2967), - [anon_sym_extern] = ACTIONS(647), - [anon_sym_alias] = ACTIONS(2971), - [anon_sym_global] = ACTIONS(2971), - [anon_sym_unsafe] = ACTIONS(4211), - [anon_sym_static] = ACTIONS(4213), - [anon_sym_LPAREN] = ACTIONS(4215), - [anon_sym_ref] = ACTIONS(3452), - [anon_sym_delegate] = ACTIONS(3454), - [anon_sym_abstract] = ACTIONS(647), - [anon_sym_async] = ACTIONS(647), - [anon_sym_const] = ACTIONS(647), - [anon_sym_file] = ACTIONS(3925), - [anon_sym_fixed] = ACTIONS(647), - [anon_sym_internal] = ACTIONS(647), - [anon_sym_new] = ACTIONS(647), - [anon_sym_override] = ACTIONS(647), - [anon_sym_partial] = ACTIONS(647), - [anon_sym_private] = ACTIONS(647), - [anon_sym_protected] = ACTIONS(647), - [anon_sym_public] = ACTIONS(647), - [anon_sym_readonly] = ACTIONS(647), - [anon_sym_required] = ACTIONS(647), - [anon_sym_sealed] = ACTIONS(647), - [anon_sym_virtual] = ACTIONS(647), - [anon_sym_volatile] = ACTIONS(647), - [anon_sym_where] = ACTIONS(2971), - [anon_sym_notnull] = ACTIONS(2971), - [anon_sym_unmanaged] = ACTIONS(2971), - [anon_sym_scoped] = ACTIONS(2997), - [anon_sym_var] = ACTIONS(2999), - [sym_predefined_type] = ACTIONS(3001), - [anon_sym_yield] = ACTIONS(2971), - [anon_sym_when] = ACTIONS(2971), - [anon_sym_from] = ACTIONS(2971), - [anon_sym_into] = ACTIONS(2971), - [anon_sym_join] = ACTIONS(2971), - [anon_sym_on] = ACTIONS(2971), - [anon_sym_equals] = ACTIONS(2971), - [anon_sym_let] = ACTIONS(2971), - [anon_sym_orderby] = ACTIONS(2971), - [anon_sym_ascending] = ACTIONS(2971), - [anon_sym_descending] = ACTIONS(2971), - [anon_sym_group] = ACTIONS(2971), - [anon_sym_by] = ACTIONS(2971), - [anon_sym_select] = ACTIONS(2971), + [sym__identifier_token] = ACTIONS(3871), + [anon_sym_alias] = ACTIONS(3873), + [anon_sym_global] = ACTIONS(3873), + [anon_sym_LBRACK] = ACTIONS(3429), + [anon_sym_LPAREN] = ACTIONS(3429), + [anon_sym_ref] = ACTIONS(4199), + [anon_sym_LBRACE] = ACTIONS(3429), + [anon_sym_file] = ACTIONS(3873), + [anon_sym_LT] = ACTIONS(3431), + [anon_sym_GT] = ACTIONS(3431), + [anon_sym_where] = ACTIONS(3873), + [anon_sym_QMARK] = ACTIONS(3431), + [anon_sym_notnull] = ACTIONS(3873), + [anon_sym_unmanaged] = ACTIONS(3873), + [anon_sym_BANG] = ACTIONS(3431), + [anon_sym_PLUS_PLUS] = ACTIONS(3429), + [anon_sym_DASH_DASH] = ACTIONS(3429), + [anon_sym_PLUS] = ACTIONS(3431), + [anon_sym_DASH] = ACTIONS(3431), + [anon_sym_STAR] = ACTIONS(3429), + [anon_sym_SLASH] = ACTIONS(3431), + [anon_sym_PERCENT] = ACTIONS(3429), + [anon_sym_CARET] = ACTIONS(3429), + [anon_sym_PIPE] = ACTIONS(3431), + [anon_sym_AMP] = ACTIONS(3431), + [anon_sym_LT_LT] = ACTIONS(3429), + [anon_sym_GT_GT] = ACTIONS(3431), + [anon_sym_GT_GT_GT] = ACTIONS(3429), + [anon_sym_EQ_EQ] = ACTIONS(3429), + [anon_sym_BANG_EQ] = ACTIONS(3429), + [anon_sym_GT_EQ] = ACTIONS(3429), + [anon_sym_LT_EQ] = ACTIONS(3429), + [anon_sym_DOT] = ACTIONS(3431), + [anon_sym_scoped] = ACTIONS(3873), + [anon_sym_COLON_COLON] = ACTIONS(3429), + [anon_sym_var] = ACTIONS(3873), + [anon_sym_yield] = ACTIONS(3873), + [anon_sym_switch] = ACTIONS(3431), + [anon_sym_when] = ACTIONS(3873), + [anon_sym_DOT_DOT] = ACTIONS(3429), + [anon_sym_AMP_AMP] = ACTIONS(3429), + [anon_sym_PIPE_PIPE] = ACTIONS(3429), + [anon_sym_QMARK_QMARK] = ACTIONS(3429), + [anon_sym_from] = ACTIONS(3873), + [anon_sym_into] = ACTIONS(3873), + [anon_sym_join] = ACTIONS(3873), + [anon_sym_on] = ACTIONS(4162), + [anon_sym_equals] = ACTIONS(3873), + [anon_sym_let] = ACTIONS(3873), + [anon_sym_orderby] = ACTIONS(3873), + [anon_sym_ascending] = ACTIONS(3873), + [anon_sym_descending] = ACTIONS(3873), + [anon_sym_group] = ACTIONS(3873), + [anon_sym_by] = ACTIONS(3873), + [anon_sym_select] = ACTIONS(3873), + [anon_sym_as] = ACTIONS(3431), + [anon_sym_is] = ACTIONS(3431), + [anon_sym_DASH_GT] = ACTIONS(3429), + [anon_sym_with] = ACTIONS(3431), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -427739,14 +427393,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2492] = { - [sym_parameter_list] = STATE(7311), - [sym_positional_pattern_clause] = STATE(2568), - [sym_property_pattern_clause] = STATE(2793), - [sym__variable_designation] = STATE(3346), - [sym_parenthesized_variable_designation] = STATE(3340), - [sym__lambda_parameters] = STATE(7536), - [sym_identifier] = STATE(3342), - [sym__reserved_identifier] = STATE(3177), + [sym_parameter_list] = STATE(7531), + [sym_positional_pattern_clause] = STATE(2584), + [sym_property_pattern_clause] = STATE(2740), + [sym__variable_designation] = STATE(3422), + [sym_parenthesized_variable_designation] = STATE(3352), + [sym__lambda_parameters] = STATE(7378), + [sym_identifier] = STATE(3430), + [sym__reserved_identifier] = STATE(3199), [sym_preproc_region] = STATE(2492), [sym_preproc_endregion] = STATE(2492), [sym_preproc_line] = STATE(2492), @@ -427756,66 +427410,66 @@ 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(3875), - [anon_sym_alias] = ACTIONS(3877), - [anon_sym_global] = ACTIONS(3877), - [anon_sym_LBRACK] = ACTIONS(3893), - [anon_sym_LPAREN] = ACTIONS(3893), - [anon_sym_LBRACE] = ACTIONS(3881), - [anon_sym_file] = ACTIONS(3877), - [anon_sym_LT] = ACTIONS(3895), - [anon_sym_GT] = ACTIONS(3895), - [anon_sym_where] = ACTIONS(3877), - [anon_sym_QMARK] = ACTIONS(3895), - [anon_sym_notnull] = ACTIONS(3877), - [anon_sym_unmanaged] = ACTIONS(3877), - [anon_sym_BANG] = ACTIONS(3895), - [anon_sym_PLUS_PLUS] = ACTIONS(3893), - [anon_sym_DASH_DASH] = ACTIONS(3893), - [anon_sym_PLUS] = ACTIONS(3895), - [anon_sym_DASH] = ACTIONS(3895), - [anon_sym_STAR] = ACTIONS(3893), - [anon_sym_SLASH] = ACTIONS(3895), - [anon_sym_PERCENT] = ACTIONS(3893), - [anon_sym_CARET] = ACTIONS(3893), - [anon_sym_PIPE] = ACTIONS(3895), - [anon_sym_AMP] = ACTIONS(3895), - [anon_sym_LT_LT] = ACTIONS(3893), - [anon_sym_GT_GT] = ACTIONS(3895), - [anon_sym_GT_GT_GT] = ACTIONS(3893), - [anon_sym_EQ_EQ] = ACTIONS(3893), - [anon_sym_BANG_EQ] = ACTIONS(3893), - [anon_sym_GT_EQ] = ACTIONS(3893), - [anon_sym_LT_EQ] = ACTIONS(3893), - [anon_sym_DOT] = ACTIONS(3895), - [anon_sym_scoped] = ACTIONS(3877), - [anon_sym_var] = ACTIONS(3877), - [anon_sym_yield] = ACTIONS(3877), - [anon_sym_switch] = ACTIONS(3895), - [anon_sym_when] = ACTIONS(3877), - [sym_discard] = ACTIONS(3885), - [anon_sym_DOT_DOT] = ACTIONS(3893), - [anon_sym_and] = ACTIONS(3895), - [anon_sym_or] = ACTIONS(3895), - [anon_sym_AMP_AMP] = ACTIONS(3893), - [anon_sym_PIPE_PIPE] = ACTIONS(3893), - [anon_sym_QMARK_QMARK] = ACTIONS(3893), - [anon_sym_from] = ACTIONS(3877), - [anon_sym_into] = ACTIONS(3895), - [anon_sym_join] = ACTIONS(3877), - [anon_sym_on] = ACTIONS(3895), - [anon_sym_equals] = ACTIONS(3877), - [anon_sym_let] = ACTIONS(3877), - [anon_sym_orderby] = ACTIONS(3877), - [anon_sym_ascending] = ACTIONS(3877), - [anon_sym_descending] = ACTIONS(3877), - [anon_sym_group] = ACTIONS(3877), - [anon_sym_by] = ACTIONS(3877), - [anon_sym_select] = ACTIONS(3877), - [anon_sym_as] = ACTIONS(3895), - [anon_sym_is] = ACTIONS(3895), - [anon_sym_DASH_GT] = ACTIONS(3893), - [anon_sym_with] = ACTIONS(3895), + [sym__identifier_token] = ACTIONS(3855), + [anon_sym_alias] = ACTIONS(3857), + [anon_sym_global] = ACTIONS(3857), + [anon_sym_LBRACK] = ACTIONS(3859), + [anon_sym_LPAREN] = ACTIONS(3859), + [anon_sym_LBRACE] = ACTIONS(3861), + [anon_sym_file] = ACTIONS(3857), + [anon_sym_LT] = ACTIONS(3863), + [anon_sym_GT] = ACTIONS(3863), + [anon_sym_where] = ACTIONS(3857), + [anon_sym_QMARK] = ACTIONS(3863), + [anon_sym_notnull] = ACTIONS(3857), + [anon_sym_unmanaged] = ACTIONS(3857), + [anon_sym_BANG] = ACTIONS(3863), + [anon_sym_PLUS_PLUS] = ACTIONS(3859), + [anon_sym_DASH_DASH] = ACTIONS(3859), + [anon_sym_PLUS] = ACTIONS(3863), + [anon_sym_DASH] = ACTIONS(3863), + [anon_sym_STAR] = ACTIONS(3859), + [anon_sym_SLASH] = ACTIONS(3863), + [anon_sym_PERCENT] = ACTIONS(3859), + [anon_sym_CARET] = ACTIONS(3859), + [anon_sym_PIPE] = ACTIONS(3863), + [anon_sym_AMP] = ACTIONS(3863), + [anon_sym_LT_LT] = ACTIONS(3859), + [anon_sym_GT_GT] = ACTIONS(3863), + [anon_sym_GT_GT_GT] = ACTIONS(3859), + [anon_sym_EQ_EQ] = ACTIONS(3859), + [anon_sym_BANG_EQ] = ACTIONS(3859), + [anon_sym_GT_EQ] = ACTIONS(3859), + [anon_sym_LT_EQ] = ACTIONS(3859), + [anon_sym_DOT] = ACTIONS(3863), + [anon_sym_scoped] = ACTIONS(3857), + [anon_sym_var] = ACTIONS(3857), + [anon_sym_yield] = ACTIONS(3857), + [anon_sym_switch] = ACTIONS(3863), + [anon_sym_when] = ACTIONS(3857), + [sym_discard] = ACTIONS(3877), + [anon_sym_DOT_DOT] = ACTIONS(3859), + [anon_sym_and] = ACTIONS(3867), + [anon_sym_or] = ACTIONS(3867), + [anon_sym_AMP_AMP] = ACTIONS(3859), + [anon_sym_PIPE_PIPE] = ACTIONS(3859), + [anon_sym_QMARK_QMARK] = ACTIONS(3859), + [anon_sym_from] = ACTIONS(3857), + [anon_sym_into] = ACTIONS(3857), + [anon_sym_join] = ACTIONS(3857), + [anon_sym_on] = ACTIONS(3863), + [anon_sym_equals] = ACTIONS(3857), + [anon_sym_let] = ACTIONS(3857), + [anon_sym_orderby] = ACTIONS(3857), + [anon_sym_ascending] = ACTIONS(3857), + [anon_sym_descending] = ACTIONS(3857), + [anon_sym_group] = ACTIONS(3857), + [anon_sym_by] = ACTIONS(3857), + [anon_sym_select] = ACTIONS(3857), + [anon_sym_as] = ACTIONS(3863), + [anon_sym_is] = ACTIONS(3863), + [anon_sym_DASH_GT] = ACTIONS(3859), + [anon_sym_with] = ACTIONS(3863), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -427828,15 +427482,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2493] = { - [sym__name] = STATE(3087), - [sym_alias_qualified_name] = STATE(3029), - [sym__simple_name] = STATE(3029), - [sym_qualified_name] = STATE(3029), - [sym_generic_name] = STATE(2985), - [sym_ref_type] = STATE(3043), - [sym__scoped_base_type] = STATE(2963), - [sym_identifier] = STATE(2923), - [sym__reserved_identifier] = STATE(2945), + [sym_parameter_list] = STATE(7531), + [sym_positional_pattern_clause] = STATE(2577), + [sym_property_pattern_clause] = STATE(2785), + [sym__variable_designation] = STATE(3347), + [sym_parenthesized_variable_designation] = STATE(3344), + [sym__lambda_parameters] = STATE(7378), + [sym_identifier] = STATE(3309), + [sym__reserved_identifier] = STATE(3199), [sym_preproc_region] = STATE(2493), [sym_preproc_endregion] = STATE(2493), [sym_preproc_line] = STATE(2493), @@ -427846,65 +427499,66 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2493), [sym_preproc_define] = STATE(2493), [sym_preproc_undef] = STATE(2493), - [sym__identifier_token] = ACTIONS(3887), - [anon_sym_alias] = ACTIONS(3889), - [anon_sym_global] = ACTIONS(3889), - [anon_sym_LBRACK] = ACTIONS(3445), - [anon_sym_LPAREN] = ACTIONS(3445), - [anon_sym_ref] = ACTIONS(4217), - [anon_sym_LBRACE] = ACTIONS(3445), - [anon_sym_file] = ACTIONS(3889), - [anon_sym_LT] = ACTIONS(3447), - [anon_sym_GT] = ACTIONS(3447), - [anon_sym_where] = ACTIONS(3889), - [anon_sym_QMARK] = ACTIONS(3447), - [anon_sym_notnull] = ACTIONS(3889), - [anon_sym_unmanaged] = ACTIONS(3889), - [anon_sym_BANG] = ACTIONS(3447), - [anon_sym_PLUS_PLUS] = ACTIONS(3445), - [anon_sym_DASH_DASH] = ACTIONS(3445), - [anon_sym_PLUS] = ACTIONS(3447), - [anon_sym_DASH] = ACTIONS(3447), - [anon_sym_STAR] = ACTIONS(3445), - [anon_sym_SLASH] = ACTIONS(3447), - [anon_sym_PERCENT] = ACTIONS(3445), - [anon_sym_CARET] = ACTIONS(3445), - [anon_sym_PIPE] = ACTIONS(3447), - [anon_sym_AMP] = ACTIONS(3447), - [anon_sym_LT_LT] = ACTIONS(3445), - [anon_sym_GT_GT] = ACTIONS(3447), - [anon_sym_GT_GT_GT] = ACTIONS(3445), - [anon_sym_EQ_EQ] = ACTIONS(3445), - [anon_sym_BANG_EQ] = ACTIONS(3445), - [anon_sym_GT_EQ] = ACTIONS(3445), - [anon_sym_LT_EQ] = ACTIONS(3445), - [anon_sym_DOT] = ACTIONS(3447), - [anon_sym_scoped] = ACTIONS(3889), - [anon_sym_COLON_COLON] = ACTIONS(3445), - [anon_sym_var] = ACTIONS(3889), - [anon_sym_yield] = ACTIONS(3889), - [anon_sym_switch] = ACTIONS(3447), - [anon_sym_when] = ACTIONS(3889), - [anon_sym_DOT_DOT] = ACTIONS(3445), - [anon_sym_AMP_AMP] = ACTIONS(3445), - [anon_sym_PIPE_PIPE] = ACTIONS(3445), - [anon_sym_QMARK_QMARK] = ACTIONS(3445), - [anon_sym_from] = ACTIONS(3889), - [anon_sym_into] = ACTIONS(3889), - [anon_sym_join] = ACTIONS(3889), - [anon_sym_on] = ACTIONS(3889), - [anon_sym_equals] = ACTIONS(3889), - [anon_sym_let] = ACTIONS(3889), - [anon_sym_orderby] = ACTIONS(3889), - [anon_sym_ascending] = ACTIONS(3889), - [anon_sym_descending] = ACTIONS(3889), - [anon_sym_group] = ACTIONS(3889), - [anon_sym_by] = ACTIONS(4170), - [anon_sym_select] = ACTIONS(3889), - [anon_sym_as] = ACTIONS(3447), - [anon_sym_is] = ACTIONS(3447), - [anon_sym_DASH_GT] = ACTIONS(3445), - [anon_sym_with] = ACTIONS(3447), + [sym__identifier_token] = ACTIONS(3855), + [anon_sym_alias] = ACTIONS(3857), + [anon_sym_global] = ACTIONS(3857), + [anon_sym_LBRACK] = ACTIONS(3859), + [anon_sym_LPAREN] = ACTIONS(3859), + [anon_sym_LBRACE] = ACTIONS(3861), + [anon_sym_file] = ACTIONS(3857), + [anon_sym_LT] = ACTIONS(3863), + [anon_sym_GT] = ACTIONS(3863), + [anon_sym_where] = ACTIONS(3857), + [anon_sym_QMARK] = ACTIONS(3863), + [anon_sym_notnull] = ACTIONS(3857), + [anon_sym_unmanaged] = ACTIONS(3857), + [anon_sym_BANG] = ACTIONS(3863), + [anon_sym_PLUS_PLUS] = ACTIONS(3859), + [anon_sym_DASH_DASH] = ACTIONS(3859), + [anon_sym_PLUS] = ACTIONS(3863), + [anon_sym_DASH] = ACTIONS(3863), + [anon_sym_STAR] = ACTIONS(3859), + [anon_sym_SLASH] = ACTIONS(3863), + [anon_sym_PERCENT] = ACTIONS(3859), + [anon_sym_CARET] = ACTIONS(3859), + [anon_sym_PIPE] = ACTIONS(3863), + [anon_sym_AMP] = ACTIONS(3863), + [anon_sym_LT_LT] = ACTIONS(3859), + [anon_sym_GT_GT] = ACTIONS(3863), + [anon_sym_GT_GT_GT] = ACTIONS(3859), + [anon_sym_EQ_EQ] = ACTIONS(3859), + [anon_sym_BANG_EQ] = ACTIONS(3859), + [anon_sym_GT_EQ] = ACTIONS(3859), + [anon_sym_LT_EQ] = ACTIONS(3859), + [anon_sym_DOT] = ACTIONS(3863), + [anon_sym_scoped] = ACTIONS(3857), + [anon_sym_var] = ACTIONS(3857), + [anon_sym_yield] = ACTIONS(3857), + [anon_sym_switch] = ACTIONS(3863), + [anon_sym_when] = ACTIONS(3857), + [sym_discard] = ACTIONS(3865), + [anon_sym_DOT_DOT] = ACTIONS(3859), + [anon_sym_and] = ACTIONS(3867), + [anon_sym_or] = ACTIONS(3867), + [anon_sym_AMP_AMP] = ACTIONS(3859), + [anon_sym_PIPE_PIPE] = ACTIONS(3859), + [anon_sym_QMARK_QMARK] = ACTIONS(3859), + [anon_sym_from] = ACTIONS(3857), + [anon_sym_into] = ACTIONS(3863), + [anon_sym_join] = ACTIONS(3857), + [anon_sym_on] = ACTIONS(3857), + [anon_sym_equals] = ACTIONS(3863), + [anon_sym_let] = ACTIONS(3857), + [anon_sym_orderby] = ACTIONS(3857), + [anon_sym_ascending] = ACTIONS(3857), + [anon_sym_descending] = ACTIONS(3857), + [anon_sym_group] = ACTIONS(3857), + [anon_sym_by] = ACTIONS(3857), + [anon_sym_select] = ACTIONS(3857), + [anon_sym_as] = ACTIONS(3863), + [anon_sym_is] = ACTIONS(3863), + [anon_sym_DASH_GT] = ACTIONS(3859), + [anon_sym_with] = ACTIONS(3863), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -427917,14 +427571,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2494] = { - [sym_parameter_list] = STATE(7311), - [sym_positional_pattern_clause] = STATE(2580), - [sym_property_pattern_clause] = STATE(2740), - [sym__variable_designation] = STATE(3492), - [sym_parenthesized_variable_designation] = STATE(3463), - [sym__lambda_parameters] = STATE(7536), - [sym_identifier] = STATE(3493), - [sym__reserved_identifier] = STATE(3177), + [sym_parameter_list] = STATE(7531), + [sym_positional_pattern_clause] = STATE(2564), + [sym_property_pattern_clause] = STATE(2680), + [sym__variable_designation] = STATE(3422), + [sym_parenthesized_variable_designation] = STATE(3352), + [sym__lambda_parameters] = STATE(7378), + [sym_identifier] = STATE(3430), + [sym__reserved_identifier] = STATE(3199), [sym_preproc_region] = STATE(2494), [sym_preproc_endregion] = STATE(2494), [sym_preproc_line] = STATE(2494), @@ -427934,66 +427588,66 @@ 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(3875), - [anon_sym_alias] = ACTIONS(3877), - [anon_sym_global] = ACTIONS(3877), - [anon_sym_LBRACK] = ACTIONS(3879), - [anon_sym_LPAREN] = ACTIONS(3879), - [anon_sym_LBRACE] = ACTIONS(3881), - [anon_sym_file] = ACTIONS(3877), - [anon_sym_LT] = ACTIONS(3883), - [anon_sym_GT] = ACTIONS(3883), - [anon_sym_where] = ACTIONS(3877), - [anon_sym_QMARK] = ACTIONS(3883), - [anon_sym_notnull] = ACTIONS(3877), - [anon_sym_unmanaged] = ACTIONS(3877), - [anon_sym_BANG] = ACTIONS(3883), - [anon_sym_PLUS_PLUS] = ACTIONS(3879), - [anon_sym_DASH_DASH] = ACTIONS(3879), - [anon_sym_PLUS] = ACTIONS(3883), - [anon_sym_DASH] = ACTIONS(3883), - [anon_sym_STAR] = ACTIONS(3879), - [anon_sym_SLASH] = ACTIONS(3883), - [anon_sym_PERCENT] = ACTIONS(3879), - [anon_sym_CARET] = ACTIONS(3879), - [anon_sym_PIPE] = ACTIONS(3883), - [anon_sym_AMP] = ACTIONS(3883), - [anon_sym_LT_LT] = ACTIONS(3879), - [anon_sym_GT_GT] = ACTIONS(3883), - [anon_sym_GT_GT_GT] = ACTIONS(3879), - [anon_sym_EQ_EQ] = ACTIONS(3879), - [anon_sym_BANG_EQ] = ACTIONS(3879), - [anon_sym_GT_EQ] = ACTIONS(3879), - [anon_sym_LT_EQ] = ACTIONS(3879), - [anon_sym_DOT] = ACTIONS(3883), - [anon_sym_scoped] = ACTIONS(3877), - [anon_sym_var] = ACTIONS(3877), - [anon_sym_yield] = ACTIONS(3877), - [anon_sym_switch] = ACTIONS(3883), - [anon_sym_when] = ACTIONS(3877), - [sym_discard] = ACTIONS(3897), - [anon_sym_DOT_DOT] = ACTIONS(3879), - [anon_sym_and] = ACTIONS(3883), - [anon_sym_or] = ACTIONS(3883), - [anon_sym_AMP_AMP] = ACTIONS(3879), - [anon_sym_PIPE_PIPE] = ACTIONS(3879), - [anon_sym_QMARK_QMARK] = ACTIONS(3879), - [anon_sym_from] = ACTIONS(3877), - [anon_sym_into] = ACTIONS(3877), - [anon_sym_join] = ACTIONS(3877), - [anon_sym_on] = ACTIONS(3877), - [anon_sym_equals] = ACTIONS(3883), - [anon_sym_let] = ACTIONS(3877), - [anon_sym_orderby] = ACTIONS(3877), - [anon_sym_ascending] = ACTIONS(3877), - [anon_sym_descending] = ACTIONS(3877), - [anon_sym_group] = ACTIONS(3877), - [anon_sym_by] = ACTIONS(3877), - [anon_sym_select] = ACTIONS(3877), - [anon_sym_as] = ACTIONS(3883), - [anon_sym_is] = ACTIONS(3883), - [anon_sym_DASH_GT] = ACTIONS(3879), - [anon_sym_with] = ACTIONS(3883), + [sym__identifier_token] = ACTIONS(3855), + [anon_sym_alias] = ACTIONS(3857), + [anon_sym_global] = ACTIONS(3857), + [anon_sym_LBRACK] = ACTIONS(3859), + [anon_sym_LPAREN] = ACTIONS(3859), + [anon_sym_LBRACE] = ACTIONS(3861), + [anon_sym_file] = ACTIONS(3857), + [anon_sym_LT] = ACTIONS(3863), + [anon_sym_GT] = ACTIONS(3863), + [anon_sym_where] = ACTIONS(3857), + [anon_sym_QMARK] = ACTIONS(3863), + [anon_sym_notnull] = ACTIONS(3857), + [anon_sym_unmanaged] = ACTIONS(3857), + [anon_sym_BANG] = ACTIONS(3863), + [anon_sym_PLUS_PLUS] = ACTIONS(3859), + [anon_sym_DASH_DASH] = ACTIONS(3859), + [anon_sym_PLUS] = ACTIONS(3863), + [anon_sym_DASH] = ACTIONS(3863), + [anon_sym_STAR] = ACTIONS(3859), + [anon_sym_SLASH] = ACTIONS(3863), + [anon_sym_PERCENT] = ACTIONS(3859), + [anon_sym_CARET] = ACTIONS(3859), + [anon_sym_PIPE] = ACTIONS(3863), + [anon_sym_AMP] = ACTIONS(3863), + [anon_sym_LT_LT] = ACTIONS(3859), + [anon_sym_GT_GT] = ACTIONS(3863), + [anon_sym_GT_GT_GT] = ACTIONS(3859), + [anon_sym_EQ_EQ] = ACTIONS(3859), + [anon_sym_BANG_EQ] = ACTIONS(3859), + [anon_sym_GT_EQ] = ACTIONS(3859), + [anon_sym_LT_EQ] = ACTIONS(3859), + [anon_sym_DOT] = ACTIONS(3863), + [anon_sym_scoped] = ACTIONS(3857), + [anon_sym_var] = ACTIONS(3857), + [anon_sym_yield] = ACTIONS(3857), + [anon_sym_switch] = ACTIONS(3863), + [anon_sym_when] = ACTIONS(3857), + [sym_discard] = ACTIONS(3877), + [anon_sym_DOT_DOT] = ACTIONS(3859), + [anon_sym_and] = ACTIONS(3867), + [anon_sym_or] = ACTIONS(3867), + [anon_sym_AMP_AMP] = ACTIONS(3859), + [anon_sym_PIPE_PIPE] = ACTIONS(3859), + [anon_sym_QMARK_QMARK] = ACTIONS(3859), + [anon_sym_from] = ACTIONS(3857), + [anon_sym_into] = ACTIONS(3857), + [anon_sym_join] = ACTIONS(3857), + [anon_sym_on] = ACTIONS(3857), + [anon_sym_equals] = ACTIONS(3857), + [anon_sym_let] = ACTIONS(3857), + [anon_sym_orderby] = ACTIONS(3857), + [anon_sym_ascending] = ACTIONS(3857), + [anon_sym_descending] = ACTIONS(3857), + [anon_sym_group] = ACTIONS(3857), + [anon_sym_by] = ACTIONS(3863), + [anon_sym_select] = ACTIONS(3857), + [anon_sym_as] = ACTIONS(3863), + [anon_sym_is] = ACTIONS(3863), + [anon_sym_DASH_GT] = ACTIONS(3859), + [anon_sym_with] = ACTIONS(3863), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -428006,14 +427660,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2495] = { - [sym_parameter_list] = STATE(7311), - [sym_positional_pattern_clause] = STATE(2575), - [sym_property_pattern_clause] = STATE(2686), - [sym__variable_designation] = STATE(4139), - [sym_parenthesized_variable_designation] = STATE(4173), - [sym__lambda_parameters] = STATE(7536), - [sym_identifier] = STATE(4106), - [sym__reserved_identifier] = STATE(2945), + [sym_parameter_list] = STATE(7531), + [sym_positional_pattern_clause] = STATE(2583), + [sym_property_pattern_clause] = STATE(2760), + [sym__variable_designation] = STATE(3347), + [sym_parenthesized_variable_designation] = STATE(3344), + [sym__lambda_parameters] = STATE(7378), + [sym_identifier] = STATE(3309), + [sym__reserved_identifier] = STATE(3199), [sym_preproc_region] = STATE(2495), [sym_preproc_endregion] = STATE(2495), [sym_preproc_line] = STATE(2495), @@ -428023,66 +427677,66 @@ 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), - [sym__identifier_token] = ACTIONS(3887), - [anon_sym_alias] = ACTIONS(3889), - [anon_sym_global] = ACTIONS(3889), - [anon_sym_LBRACK] = ACTIONS(3893), - [anon_sym_LPAREN] = ACTIONS(3893), - [anon_sym_LBRACE] = ACTIONS(3881), - [anon_sym_file] = ACTIONS(3889), - [anon_sym_LT] = ACTIONS(3895), - [anon_sym_GT] = ACTIONS(3895), - [anon_sym_where] = ACTIONS(3895), - [anon_sym_QMARK] = ACTIONS(3895), - [anon_sym_notnull] = ACTIONS(3889), - [anon_sym_unmanaged] = ACTIONS(3889), - [anon_sym_BANG] = ACTIONS(3895), - [anon_sym_PLUS_PLUS] = ACTIONS(3893), - [anon_sym_DASH_DASH] = ACTIONS(3893), - [anon_sym_PLUS] = ACTIONS(3895), - [anon_sym_DASH] = ACTIONS(3895), - [anon_sym_STAR] = ACTIONS(3893), - [anon_sym_SLASH] = ACTIONS(3895), - [anon_sym_PERCENT] = ACTIONS(3893), - [anon_sym_CARET] = ACTIONS(3893), - [anon_sym_PIPE] = ACTIONS(3895), - [anon_sym_AMP] = ACTIONS(3895), - [anon_sym_LT_LT] = ACTIONS(3893), - [anon_sym_GT_GT] = ACTIONS(3895), - [anon_sym_GT_GT_GT] = ACTIONS(3893), - [anon_sym_EQ_EQ] = ACTIONS(3893), - [anon_sym_BANG_EQ] = ACTIONS(3893), - [anon_sym_GT_EQ] = ACTIONS(3893), - [anon_sym_LT_EQ] = ACTIONS(3893), - [anon_sym_DOT] = ACTIONS(3895), - [anon_sym_scoped] = ACTIONS(3889), - [anon_sym_var] = ACTIONS(3889), - [anon_sym_yield] = ACTIONS(3889), - [anon_sym_switch] = ACTIONS(3895), - [anon_sym_when] = ACTIONS(3889), - [sym_discard] = ACTIONS(4209), - [anon_sym_DOT_DOT] = ACTIONS(3893), - [anon_sym_and] = ACTIONS(3883), - [anon_sym_or] = ACTIONS(3883), - [anon_sym_AMP_AMP] = ACTIONS(3893), - [anon_sym_PIPE_PIPE] = ACTIONS(3893), - [anon_sym_QMARK_QMARK] = ACTIONS(3893), - [anon_sym_from] = ACTIONS(3895), - [anon_sym_into] = ACTIONS(3889), - [anon_sym_join] = ACTIONS(3895), - [anon_sym_on] = ACTIONS(3889), - [anon_sym_equals] = ACTIONS(3889), - [anon_sym_let] = ACTIONS(3895), - [anon_sym_orderby] = ACTIONS(3895), - [anon_sym_ascending] = ACTIONS(3889), - [anon_sym_descending] = ACTIONS(3889), - [anon_sym_group] = ACTIONS(3895), - [anon_sym_by] = ACTIONS(3889), - [anon_sym_select] = ACTIONS(3895), - [anon_sym_as] = ACTIONS(3895), - [anon_sym_is] = ACTIONS(3895), - [anon_sym_DASH_GT] = ACTIONS(3893), - [anon_sym_with] = ACTIONS(3895), + [sym__identifier_token] = ACTIONS(3855), + [anon_sym_alias] = ACTIONS(3857), + [anon_sym_global] = ACTIONS(3857), + [anon_sym_LBRACK] = ACTIONS(3869), + [anon_sym_LPAREN] = ACTIONS(3869), + [anon_sym_LBRACE] = ACTIONS(3861), + [anon_sym_file] = ACTIONS(3857), + [anon_sym_LT] = ACTIONS(3867), + [anon_sym_GT] = ACTIONS(3867), + [anon_sym_where] = ACTIONS(3857), + [anon_sym_QMARK] = ACTIONS(3867), + [anon_sym_notnull] = ACTIONS(3857), + [anon_sym_unmanaged] = ACTIONS(3857), + [anon_sym_BANG] = ACTIONS(3867), + [anon_sym_PLUS_PLUS] = ACTIONS(3869), + [anon_sym_DASH_DASH] = ACTIONS(3869), + [anon_sym_PLUS] = ACTIONS(3867), + [anon_sym_DASH] = ACTIONS(3867), + [anon_sym_STAR] = ACTIONS(3869), + [anon_sym_SLASH] = ACTIONS(3867), + [anon_sym_PERCENT] = ACTIONS(3869), + [anon_sym_CARET] = ACTIONS(3869), + [anon_sym_PIPE] = ACTIONS(3867), + [anon_sym_AMP] = ACTIONS(3867), + [anon_sym_LT_LT] = ACTIONS(3869), + [anon_sym_GT_GT] = ACTIONS(3867), + [anon_sym_GT_GT_GT] = ACTIONS(3869), + [anon_sym_EQ_EQ] = ACTIONS(3869), + [anon_sym_BANG_EQ] = ACTIONS(3869), + [anon_sym_GT_EQ] = ACTIONS(3869), + [anon_sym_LT_EQ] = ACTIONS(3869), + [anon_sym_DOT] = ACTIONS(3867), + [anon_sym_scoped] = ACTIONS(3857), + [anon_sym_var] = ACTIONS(3857), + [anon_sym_yield] = ACTIONS(3857), + [anon_sym_switch] = ACTIONS(3867), + [anon_sym_when] = ACTIONS(3857), + [sym_discard] = ACTIONS(3865), + [anon_sym_DOT_DOT] = ACTIONS(3869), + [anon_sym_and] = ACTIONS(3867), + [anon_sym_or] = ACTIONS(3867), + [anon_sym_AMP_AMP] = ACTIONS(3869), + [anon_sym_PIPE_PIPE] = ACTIONS(3869), + [anon_sym_QMARK_QMARK] = ACTIONS(3869), + [anon_sym_from] = ACTIONS(3857), + [anon_sym_into] = ACTIONS(3867), + [anon_sym_join] = ACTIONS(3857), + [anon_sym_on] = ACTIONS(3857), + [anon_sym_equals] = ACTIONS(3857), + [anon_sym_let] = ACTIONS(3857), + [anon_sym_orderby] = ACTIONS(3857), + [anon_sym_ascending] = ACTIONS(3857), + [anon_sym_descending] = ACTIONS(3857), + [anon_sym_group] = ACTIONS(3857), + [anon_sym_by] = ACTIONS(3867), + [anon_sym_select] = ACTIONS(3857), + [anon_sym_as] = ACTIONS(3867), + [anon_sym_is] = ACTIONS(3867), + [anon_sym_DASH_GT] = ACTIONS(3869), + [anon_sym_with] = ACTIONS(3867), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -428095,14 +427749,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2496] = { - [sym_parameter_list] = STATE(7311), - [sym_positional_pattern_clause] = STATE(2567), - [sym_property_pattern_clause] = STATE(2787), - [sym__variable_designation] = STATE(3346), - [sym_parenthesized_variable_designation] = STATE(3340), - [sym__lambda_parameters] = STATE(7536), - [sym_identifier] = STATE(3342), - [sym__reserved_identifier] = STATE(3177), + [sym_parameter_list] = STATE(7531), + [sym_positional_pattern_clause] = STATE(2568), + [sym_property_pattern_clause] = STATE(2717), + [sym__variable_designation] = STATE(4139), + [sym_parenthesized_variable_designation] = STATE(4116), + [sym__lambda_parameters] = STATE(7378), + [sym_identifier] = STATE(4083), + [sym__reserved_identifier] = STATE(2900), [sym_preproc_region] = STATE(2496), [sym_preproc_endregion] = STATE(2496), [sym_preproc_line] = STATE(2496), @@ -428112,66 +427766,66 @@ 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(3875), - [anon_sym_alias] = ACTIONS(3877), - [anon_sym_global] = ACTIONS(3877), - [anon_sym_LBRACK] = ACTIONS(3879), - [anon_sym_LPAREN] = ACTIONS(3879), - [anon_sym_LBRACE] = ACTIONS(3881), - [anon_sym_file] = ACTIONS(3877), - [anon_sym_LT] = ACTIONS(3883), - [anon_sym_GT] = ACTIONS(3883), - [anon_sym_where] = ACTIONS(3877), - [anon_sym_QMARK] = ACTIONS(3883), - [anon_sym_notnull] = ACTIONS(3877), - [anon_sym_unmanaged] = ACTIONS(3877), - [anon_sym_BANG] = ACTIONS(3883), - [anon_sym_PLUS_PLUS] = ACTIONS(3879), - [anon_sym_DASH_DASH] = ACTIONS(3879), - [anon_sym_PLUS] = ACTIONS(3883), - [anon_sym_DASH] = ACTIONS(3883), - [anon_sym_STAR] = ACTIONS(3879), - [anon_sym_SLASH] = ACTIONS(3883), - [anon_sym_PERCENT] = ACTIONS(3879), - [anon_sym_CARET] = ACTIONS(3879), - [anon_sym_PIPE] = ACTIONS(3883), - [anon_sym_AMP] = ACTIONS(3883), - [anon_sym_LT_LT] = ACTIONS(3879), - [anon_sym_GT_GT] = ACTIONS(3883), - [anon_sym_GT_GT_GT] = ACTIONS(3879), - [anon_sym_EQ_EQ] = ACTIONS(3879), - [anon_sym_BANG_EQ] = ACTIONS(3879), - [anon_sym_GT_EQ] = ACTIONS(3879), - [anon_sym_LT_EQ] = ACTIONS(3879), - [anon_sym_DOT] = ACTIONS(3883), - [anon_sym_scoped] = ACTIONS(3877), - [anon_sym_var] = ACTIONS(3877), - [anon_sym_yield] = ACTIONS(3877), - [anon_sym_switch] = ACTIONS(3883), - [anon_sym_when] = ACTIONS(3877), - [sym_discard] = ACTIONS(3885), - [anon_sym_DOT_DOT] = ACTIONS(3879), - [anon_sym_and] = ACTIONS(3883), - [anon_sym_or] = ACTIONS(3883), - [anon_sym_AMP_AMP] = ACTIONS(3879), - [anon_sym_PIPE_PIPE] = ACTIONS(3879), - [anon_sym_QMARK_QMARK] = ACTIONS(3879), - [anon_sym_from] = ACTIONS(3877), - [anon_sym_into] = ACTIONS(3883), - [anon_sym_join] = ACTIONS(3877), - [anon_sym_on] = ACTIONS(3877), - [anon_sym_equals] = ACTIONS(3883), - [anon_sym_let] = ACTIONS(3877), - [anon_sym_orderby] = ACTIONS(3877), - [anon_sym_ascending] = ACTIONS(3877), - [anon_sym_descending] = ACTIONS(3877), - [anon_sym_group] = ACTIONS(3877), - [anon_sym_by] = ACTIONS(3877), - [anon_sym_select] = ACTIONS(3877), - [anon_sym_as] = ACTIONS(3883), - [anon_sym_is] = ACTIONS(3883), - [anon_sym_DASH_GT] = ACTIONS(3879), - [anon_sym_with] = ACTIONS(3883), + [sym__identifier_token] = ACTIONS(3814), + [anon_sym_alias] = ACTIONS(3816), + [anon_sym_global] = ACTIONS(3816), + [anon_sym_LBRACK] = ACTIONS(3859), + [anon_sym_LPAREN] = ACTIONS(3859), + [anon_sym_LBRACE] = ACTIONS(3861), + [anon_sym_file] = ACTIONS(3816), + [anon_sym_LT] = ACTIONS(3863), + [anon_sym_GT] = ACTIONS(3863), + [anon_sym_where] = ACTIONS(3863), + [anon_sym_QMARK] = ACTIONS(3863), + [anon_sym_notnull] = ACTIONS(3816), + [anon_sym_unmanaged] = ACTIONS(3816), + [anon_sym_BANG] = ACTIONS(3863), + [anon_sym_PLUS_PLUS] = ACTIONS(3859), + [anon_sym_DASH_DASH] = ACTIONS(3859), + [anon_sym_PLUS] = ACTIONS(3863), + [anon_sym_DASH] = ACTIONS(3863), + [anon_sym_STAR] = ACTIONS(3859), + [anon_sym_SLASH] = ACTIONS(3863), + [anon_sym_PERCENT] = ACTIONS(3859), + [anon_sym_CARET] = ACTIONS(3859), + [anon_sym_PIPE] = ACTIONS(3863), + [anon_sym_AMP] = ACTIONS(3863), + [anon_sym_LT_LT] = ACTIONS(3859), + [anon_sym_GT_GT] = ACTIONS(3863), + [anon_sym_GT_GT_GT] = ACTIONS(3859), + [anon_sym_EQ_EQ] = ACTIONS(3859), + [anon_sym_BANG_EQ] = ACTIONS(3859), + [anon_sym_GT_EQ] = ACTIONS(3859), + [anon_sym_LT_EQ] = ACTIONS(3859), + [anon_sym_DOT] = ACTIONS(3863), + [anon_sym_scoped] = ACTIONS(3816), + [anon_sym_var] = ACTIONS(3816), + [anon_sym_yield] = ACTIONS(3816), + [anon_sym_switch] = ACTIONS(3863), + [anon_sym_when] = ACTIONS(3816), + [sym_discard] = ACTIONS(4187), + [anon_sym_DOT_DOT] = ACTIONS(3859), + [anon_sym_and] = ACTIONS(3863), + [anon_sym_or] = ACTIONS(3863), + [anon_sym_AMP_AMP] = ACTIONS(3859), + [anon_sym_PIPE_PIPE] = ACTIONS(3859), + [anon_sym_QMARK_QMARK] = ACTIONS(3859), + [anon_sym_from] = ACTIONS(3863), + [anon_sym_into] = ACTIONS(3863), + [anon_sym_join] = ACTIONS(3863), + [anon_sym_on] = ACTIONS(3816), + [anon_sym_equals] = ACTIONS(3816), + [anon_sym_let] = ACTIONS(3863), + [anon_sym_orderby] = ACTIONS(3863), + [anon_sym_ascending] = ACTIONS(3816), + [anon_sym_descending] = ACTIONS(3816), + [anon_sym_group] = ACTIONS(3863), + [anon_sym_by] = ACTIONS(3816), + [anon_sym_select] = ACTIONS(3863), + [anon_sym_as] = ACTIONS(3863), + [anon_sym_is] = ACTIONS(3863), + [anon_sym_DASH_GT] = ACTIONS(3859), + [anon_sym_with] = ACTIONS(3863), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -428184,14 +427838,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2497] = { - [sym_parameter_list] = STATE(7311), - [sym_positional_pattern_clause] = STATE(2585), - [sym_property_pattern_clause] = STATE(2732), - [sym__variable_designation] = STATE(4139), - [sym_parenthesized_variable_designation] = STATE(4173), - [sym__lambda_parameters] = STATE(7536), - [sym_identifier] = STATE(4106), - [sym__reserved_identifier] = STATE(2904), + [sym_parameter_list] = STATE(7531), + [sym_positional_pattern_clause] = STATE(2573), + [sym_property_pattern_clause] = STATE(2731), + [sym__variable_designation] = STATE(3422), + [sym_parenthesized_variable_designation] = STATE(3352), + [sym__lambda_parameters] = STATE(7378), + [sym_identifier] = STATE(3430), + [sym__reserved_identifier] = STATE(3199), [sym_preproc_region] = STATE(2497), [sym_preproc_endregion] = STATE(2497), [sym_preproc_line] = STATE(2497), @@ -428201,66 +427855,66 @@ 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(3861), - [anon_sym_alias] = ACTIONS(3863), - [anon_sym_global] = ACTIONS(3863), - [anon_sym_LBRACK] = ACTIONS(3893), - [anon_sym_LPAREN] = ACTIONS(3893), - [anon_sym_LBRACE] = ACTIONS(3881), - [anon_sym_file] = ACTIONS(3863), - [anon_sym_LT] = ACTIONS(3895), - [anon_sym_GT] = ACTIONS(3895), - [anon_sym_where] = ACTIONS(3895), - [anon_sym_QMARK] = ACTIONS(3895), - [anon_sym_notnull] = ACTIONS(3863), - [anon_sym_unmanaged] = ACTIONS(3863), - [anon_sym_BANG] = ACTIONS(3895), - [anon_sym_PLUS_PLUS] = ACTIONS(3893), - [anon_sym_DASH_DASH] = ACTIONS(3893), - [anon_sym_PLUS] = ACTIONS(3895), - [anon_sym_DASH] = ACTIONS(3895), - [anon_sym_STAR] = ACTIONS(3893), - [anon_sym_SLASH] = ACTIONS(3895), - [anon_sym_PERCENT] = ACTIONS(3893), - [anon_sym_CARET] = ACTIONS(3893), - [anon_sym_PIPE] = ACTIONS(3895), - [anon_sym_AMP] = ACTIONS(3895), - [anon_sym_LT_LT] = ACTIONS(3893), - [anon_sym_GT_GT] = ACTIONS(3895), - [anon_sym_GT_GT_GT] = ACTIONS(3893), - [anon_sym_EQ_EQ] = ACTIONS(3893), - [anon_sym_BANG_EQ] = ACTIONS(3893), - [anon_sym_GT_EQ] = ACTIONS(3893), - [anon_sym_LT_EQ] = ACTIONS(3893), - [anon_sym_DOT] = ACTIONS(3895), - [anon_sym_scoped] = ACTIONS(3863), - [anon_sym_var] = ACTIONS(3863), - [anon_sym_yield] = ACTIONS(3863), - [anon_sym_switch] = ACTIONS(3895), - [anon_sym_when] = ACTIONS(3863), - [sym_discard] = ACTIONS(4209), - [anon_sym_DOT_DOT] = ACTIONS(3893), - [anon_sym_and] = ACTIONS(3895), - [anon_sym_or] = ACTIONS(3895), - [anon_sym_AMP_AMP] = ACTIONS(3893), - [anon_sym_PIPE_PIPE] = ACTIONS(3893), - [anon_sym_QMARK_QMARK] = ACTIONS(3893), - [anon_sym_from] = ACTIONS(3895), - [anon_sym_into] = ACTIONS(3895), - [anon_sym_join] = ACTIONS(3895), - [anon_sym_on] = ACTIONS(3863), - [anon_sym_equals] = ACTIONS(3863), - [anon_sym_let] = ACTIONS(3895), - [anon_sym_orderby] = ACTIONS(3895), - [anon_sym_ascending] = ACTIONS(3863), - [anon_sym_descending] = ACTIONS(3863), - [anon_sym_group] = ACTIONS(3895), - [anon_sym_by] = ACTIONS(3863), - [anon_sym_select] = ACTIONS(3895), - [anon_sym_as] = ACTIONS(3895), - [anon_sym_is] = ACTIONS(3895), - [anon_sym_DASH_GT] = ACTIONS(3893), - [anon_sym_with] = ACTIONS(3895), + [sym__identifier_token] = ACTIONS(3855), + [anon_sym_alias] = ACTIONS(3857), + [anon_sym_global] = ACTIONS(3857), + [anon_sym_LBRACK] = ACTIONS(3859), + [anon_sym_LPAREN] = ACTIONS(3859), + [anon_sym_LBRACE] = ACTIONS(3861), + [anon_sym_file] = ACTIONS(3857), + [anon_sym_LT] = ACTIONS(3863), + [anon_sym_GT] = ACTIONS(3863), + [anon_sym_where] = ACTIONS(3857), + [anon_sym_QMARK] = ACTIONS(3863), + [anon_sym_notnull] = ACTIONS(3857), + [anon_sym_unmanaged] = ACTIONS(3857), + [anon_sym_BANG] = ACTIONS(3863), + [anon_sym_PLUS_PLUS] = ACTIONS(3859), + [anon_sym_DASH_DASH] = ACTIONS(3859), + [anon_sym_PLUS] = ACTIONS(3863), + [anon_sym_DASH] = ACTIONS(3863), + [anon_sym_STAR] = ACTIONS(3859), + [anon_sym_SLASH] = ACTIONS(3863), + [anon_sym_PERCENT] = ACTIONS(3859), + [anon_sym_CARET] = ACTIONS(3859), + [anon_sym_PIPE] = ACTIONS(3863), + [anon_sym_AMP] = ACTIONS(3863), + [anon_sym_LT_LT] = ACTIONS(3859), + [anon_sym_GT_GT] = ACTIONS(3863), + [anon_sym_GT_GT_GT] = ACTIONS(3859), + [anon_sym_EQ_EQ] = ACTIONS(3859), + [anon_sym_BANG_EQ] = ACTIONS(3859), + [anon_sym_GT_EQ] = ACTIONS(3859), + [anon_sym_LT_EQ] = ACTIONS(3859), + [anon_sym_DOT] = ACTIONS(3863), + [anon_sym_scoped] = ACTIONS(3857), + [anon_sym_var] = ACTIONS(3857), + [anon_sym_yield] = ACTIONS(3857), + [anon_sym_switch] = ACTIONS(3863), + [anon_sym_when] = ACTIONS(3857), + [sym_discard] = ACTIONS(3877), + [anon_sym_DOT_DOT] = ACTIONS(3859), + [anon_sym_and] = ACTIONS(3863), + [anon_sym_or] = ACTIONS(3863), + [anon_sym_AMP_AMP] = ACTIONS(3859), + [anon_sym_PIPE_PIPE] = ACTIONS(3859), + [anon_sym_QMARK_QMARK] = ACTIONS(3859), + [anon_sym_from] = ACTIONS(3857), + [anon_sym_into] = ACTIONS(3857), + [anon_sym_join] = ACTIONS(3857), + [anon_sym_on] = ACTIONS(3857), + [anon_sym_equals] = ACTIONS(3863), + [anon_sym_let] = ACTIONS(3857), + [anon_sym_orderby] = ACTIONS(3857), + [anon_sym_ascending] = ACTIONS(3857), + [anon_sym_descending] = ACTIONS(3857), + [anon_sym_group] = ACTIONS(3857), + [anon_sym_by] = ACTIONS(3857), + [anon_sym_select] = ACTIONS(3857), + [anon_sym_as] = ACTIONS(3863), + [anon_sym_is] = ACTIONS(3863), + [anon_sym_DASH_GT] = ACTIONS(3859), + [anon_sym_with] = ACTIONS(3863), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -428273,26 +427927,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2498] = { - [sym_modifier] = STATE(3878), - [sym_variable_declaration] = STATE(7708), - [sym__name] = STATE(5877), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(4096), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(4109), - [sym_type] = STATE(5921), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_identifier] = STATE(5759), - [sym__reserved_identifier] = STATE(3691), + [sym_parameter_list] = STATE(7531), + [sym_positional_pattern_clause] = STATE(2584), + [sym_property_pattern_clause] = STATE(2740), + [sym__variable_designation] = STATE(3422), + [sym_parenthesized_variable_designation] = STATE(3352), + [sym__lambda_parameters] = STATE(7378), + [sym_identifier] = STATE(3430), + [sym__reserved_identifier] = STATE(3199), [sym_preproc_region] = STATE(2498), [sym_preproc_endregion] = STATE(2498), [sym_preproc_line] = STATE(2498), @@ -428302,54 +427944,66 @@ 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), - [aux_sym_using_directive_repeat1] = STATE(5750), - [aux_sym__class_declaration_initializer_repeat2] = STATE(2537), - [sym__identifier_token] = ACTIONS(2967), - [anon_sym_extern] = ACTIONS(647), - [anon_sym_alias] = ACTIONS(2971), - [anon_sym_global] = ACTIONS(2971), - [anon_sym_unsafe] = ACTIONS(4219), - [anon_sym_static] = ACTIONS(4213), - [anon_sym_LPAREN] = ACTIONS(4221), - [anon_sym_ref] = ACTIONS(3452), - [anon_sym_delegate] = ACTIONS(3454), - [anon_sym_abstract] = ACTIONS(647), - [anon_sym_async] = ACTIONS(647), - [anon_sym_const] = ACTIONS(647), - [anon_sym_file] = ACTIONS(3925), - [anon_sym_fixed] = ACTIONS(647), - [anon_sym_internal] = ACTIONS(647), - [anon_sym_new] = ACTIONS(647), - [anon_sym_override] = ACTIONS(647), - [anon_sym_partial] = ACTIONS(647), - [anon_sym_private] = ACTIONS(647), - [anon_sym_protected] = ACTIONS(647), - [anon_sym_public] = ACTIONS(647), - [anon_sym_readonly] = ACTIONS(647), - [anon_sym_required] = ACTIONS(647), - [anon_sym_sealed] = ACTIONS(647), - [anon_sym_virtual] = ACTIONS(647), - [anon_sym_volatile] = ACTIONS(647), - [anon_sym_where] = ACTIONS(2971), - [anon_sym_notnull] = ACTIONS(2971), - [anon_sym_unmanaged] = ACTIONS(2971), - [anon_sym_scoped] = ACTIONS(2997), - [anon_sym_var] = ACTIONS(2999), - [sym_predefined_type] = ACTIONS(3001), - [anon_sym_yield] = ACTIONS(2971), - [anon_sym_when] = ACTIONS(2971), - [anon_sym_from] = ACTIONS(2971), - [anon_sym_into] = ACTIONS(2971), - [anon_sym_join] = ACTIONS(2971), - [anon_sym_on] = ACTIONS(2971), - [anon_sym_equals] = ACTIONS(2971), - [anon_sym_let] = ACTIONS(2971), - [anon_sym_orderby] = ACTIONS(2971), - [anon_sym_ascending] = ACTIONS(2971), - [anon_sym_descending] = ACTIONS(2971), - [anon_sym_group] = ACTIONS(2971), - [anon_sym_by] = ACTIONS(2971), - [anon_sym_select] = ACTIONS(2971), + [sym__identifier_token] = ACTIONS(3855), + [anon_sym_alias] = ACTIONS(3857), + [anon_sym_global] = ACTIONS(3857), + [anon_sym_LBRACK] = ACTIONS(3859), + [anon_sym_LPAREN] = ACTIONS(3859), + [anon_sym_LBRACE] = ACTIONS(3861), + [anon_sym_file] = ACTIONS(3857), + [anon_sym_LT] = ACTIONS(3863), + [anon_sym_GT] = ACTIONS(3863), + [anon_sym_where] = ACTIONS(3857), + [anon_sym_QMARK] = ACTIONS(3863), + [anon_sym_notnull] = ACTIONS(3857), + [anon_sym_unmanaged] = ACTIONS(3857), + [anon_sym_BANG] = ACTIONS(3863), + [anon_sym_PLUS_PLUS] = ACTIONS(3859), + [anon_sym_DASH_DASH] = ACTIONS(3859), + [anon_sym_PLUS] = ACTIONS(3863), + [anon_sym_DASH] = ACTIONS(3863), + [anon_sym_STAR] = ACTIONS(3859), + [anon_sym_SLASH] = ACTIONS(3863), + [anon_sym_PERCENT] = ACTIONS(3859), + [anon_sym_CARET] = ACTIONS(3859), + [anon_sym_PIPE] = ACTIONS(3863), + [anon_sym_AMP] = ACTIONS(3863), + [anon_sym_LT_LT] = ACTIONS(3859), + [anon_sym_GT_GT] = ACTIONS(3863), + [anon_sym_GT_GT_GT] = ACTIONS(3859), + [anon_sym_EQ_EQ] = ACTIONS(3859), + [anon_sym_BANG_EQ] = ACTIONS(3859), + [anon_sym_GT_EQ] = ACTIONS(3859), + [anon_sym_LT_EQ] = ACTIONS(3859), + [anon_sym_DOT] = ACTIONS(3863), + [anon_sym_scoped] = ACTIONS(3857), + [anon_sym_var] = ACTIONS(3857), + [anon_sym_yield] = ACTIONS(3857), + [anon_sym_switch] = ACTIONS(3863), + [anon_sym_when] = ACTIONS(3857), + [sym_discard] = ACTIONS(3877), + [anon_sym_DOT_DOT] = ACTIONS(3859), + [anon_sym_and] = ACTIONS(3863), + [anon_sym_or] = ACTIONS(3863), + [anon_sym_AMP_AMP] = ACTIONS(3859), + [anon_sym_PIPE_PIPE] = ACTIONS(3859), + [anon_sym_QMARK_QMARK] = ACTIONS(3859), + [anon_sym_from] = ACTIONS(3857), + [anon_sym_into] = ACTIONS(3857), + [anon_sym_join] = ACTIONS(3857), + [anon_sym_on] = ACTIONS(3863), + [anon_sym_equals] = ACTIONS(3857), + [anon_sym_let] = ACTIONS(3857), + [anon_sym_orderby] = ACTIONS(3857), + [anon_sym_ascending] = ACTIONS(3857), + [anon_sym_descending] = ACTIONS(3857), + [anon_sym_group] = ACTIONS(3857), + [anon_sym_by] = ACTIONS(3857), + [anon_sym_select] = ACTIONS(3857), + [anon_sym_as] = ACTIONS(3863), + [anon_sym_is] = ACTIONS(3863), + [anon_sym_DASH_GT] = ACTIONS(3859), + [anon_sym_with] = ACTIONS(3863), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -428362,14 +428016,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2499] = { - [sym_parameter_list] = STATE(7311), - [sym_positional_pattern_clause] = STATE(2580), - [sym_property_pattern_clause] = STATE(2740), - [sym__variable_designation] = STATE(3492), - [sym_parenthesized_variable_designation] = STATE(3463), - [sym__lambda_parameters] = STATE(7536), - [sym_identifier] = STATE(3493), - [sym__reserved_identifier] = STATE(3177), + [sym_parameter_list] = STATE(7531), + [sym_positional_pattern_clause] = STATE(2573), + [sym_property_pattern_clause] = STATE(2731), + [sym__variable_designation] = STATE(3422), + [sym_parenthesized_variable_designation] = STATE(3352), + [sym__lambda_parameters] = STATE(7378), + [sym_identifier] = STATE(3430), + [sym__reserved_identifier] = STATE(3199), [sym_preproc_region] = STATE(2499), [sym_preproc_endregion] = STATE(2499), [sym_preproc_line] = STATE(2499), @@ -428379,66 +428033,66 @@ 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(3875), - [anon_sym_alias] = ACTIONS(3877), - [anon_sym_global] = ACTIONS(3877), - [anon_sym_LBRACK] = ACTIONS(3893), - [anon_sym_LPAREN] = ACTIONS(3893), - [anon_sym_LBRACE] = ACTIONS(3881), - [anon_sym_file] = ACTIONS(3877), - [anon_sym_LT] = ACTIONS(3895), - [anon_sym_GT] = ACTIONS(3895), - [anon_sym_where] = ACTIONS(3877), - [anon_sym_QMARK] = ACTIONS(3895), - [anon_sym_notnull] = ACTIONS(3877), - [anon_sym_unmanaged] = ACTIONS(3877), - [anon_sym_BANG] = ACTIONS(3895), - [anon_sym_PLUS_PLUS] = ACTIONS(3893), - [anon_sym_DASH_DASH] = ACTIONS(3893), - [anon_sym_PLUS] = ACTIONS(3895), - [anon_sym_DASH] = ACTIONS(3895), - [anon_sym_STAR] = ACTIONS(3893), - [anon_sym_SLASH] = ACTIONS(3895), - [anon_sym_PERCENT] = ACTIONS(3893), - [anon_sym_CARET] = ACTIONS(3893), - [anon_sym_PIPE] = ACTIONS(3895), - [anon_sym_AMP] = ACTIONS(3895), - [anon_sym_LT_LT] = ACTIONS(3893), - [anon_sym_GT_GT] = ACTIONS(3895), - [anon_sym_GT_GT_GT] = ACTIONS(3893), - [anon_sym_EQ_EQ] = ACTIONS(3893), - [anon_sym_BANG_EQ] = ACTIONS(3893), - [anon_sym_GT_EQ] = ACTIONS(3893), - [anon_sym_LT_EQ] = ACTIONS(3893), - [anon_sym_DOT] = ACTIONS(3895), - [anon_sym_scoped] = ACTIONS(3877), - [anon_sym_var] = ACTIONS(3877), - [anon_sym_yield] = ACTIONS(3877), - [anon_sym_switch] = ACTIONS(3895), - [anon_sym_when] = ACTIONS(3877), - [sym_discard] = ACTIONS(3897), - [anon_sym_DOT_DOT] = ACTIONS(3893), - [anon_sym_and] = ACTIONS(3883), - [anon_sym_or] = ACTIONS(3883), - [anon_sym_AMP_AMP] = ACTIONS(3893), - [anon_sym_PIPE_PIPE] = ACTIONS(3893), - [anon_sym_QMARK_QMARK] = ACTIONS(3893), - [anon_sym_from] = ACTIONS(3877), - [anon_sym_into] = ACTIONS(3877), - [anon_sym_join] = ACTIONS(3877), - [anon_sym_on] = ACTIONS(3877), - [anon_sym_equals] = ACTIONS(3895), - [anon_sym_let] = ACTIONS(3877), - [anon_sym_orderby] = ACTIONS(3877), - [anon_sym_ascending] = ACTIONS(3877), - [anon_sym_descending] = ACTIONS(3877), - [anon_sym_group] = ACTIONS(3877), - [anon_sym_by] = ACTIONS(3877), - [anon_sym_select] = ACTIONS(3877), - [anon_sym_as] = ACTIONS(3895), - [anon_sym_is] = ACTIONS(3895), - [anon_sym_DASH_GT] = ACTIONS(3893), - [anon_sym_with] = ACTIONS(3895), + [sym__identifier_token] = ACTIONS(3855), + [anon_sym_alias] = ACTIONS(3857), + [anon_sym_global] = ACTIONS(3857), + [anon_sym_LBRACK] = ACTIONS(3869), + [anon_sym_LPAREN] = ACTIONS(3869), + [anon_sym_LBRACE] = ACTIONS(3861), + [anon_sym_file] = ACTIONS(3857), + [anon_sym_LT] = ACTIONS(3867), + [anon_sym_GT] = ACTIONS(3867), + [anon_sym_where] = ACTIONS(3857), + [anon_sym_QMARK] = ACTIONS(3867), + [anon_sym_notnull] = ACTIONS(3857), + [anon_sym_unmanaged] = ACTIONS(3857), + [anon_sym_BANG] = ACTIONS(3867), + [anon_sym_PLUS_PLUS] = ACTIONS(3869), + [anon_sym_DASH_DASH] = ACTIONS(3869), + [anon_sym_PLUS] = ACTIONS(3867), + [anon_sym_DASH] = ACTIONS(3867), + [anon_sym_STAR] = ACTIONS(3869), + [anon_sym_SLASH] = ACTIONS(3867), + [anon_sym_PERCENT] = ACTIONS(3869), + [anon_sym_CARET] = ACTIONS(3869), + [anon_sym_PIPE] = ACTIONS(3867), + [anon_sym_AMP] = ACTIONS(3867), + [anon_sym_LT_LT] = ACTIONS(3869), + [anon_sym_GT_GT] = ACTIONS(3867), + [anon_sym_GT_GT_GT] = ACTIONS(3869), + [anon_sym_EQ_EQ] = ACTIONS(3869), + [anon_sym_BANG_EQ] = ACTIONS(3869), + [anon_sym_GT_EQ] = ACTIONS(3869), + [anon_sym_LT_EQ] = ACTIONS(3869), + [anon_sym_DOT] = ACTIONS(3867), + [anon_sym_scoped] = ACTIONS(3857), + [anon_sym_var] = ACTIONS(3857), + [anon_sym_yield] = ACTIONS(3857), + [anon_sym_switch] = ACTIONS(3867), + [anon_sym_when] = ACTIONS(3857), + [sym_discard] = ACTIONS(3877), + [anon_sym_DOT_DOT] = ACTIONS(3869), + [anon_sym_and] = ACTIONS(3867), + [anon_sym_or] = ACTIONS(3867), + [anon_sym_AMP_AMP] = ACTIONS(3869), + [anon_sym_PIPE_PIPE] = ACTIONS(3869), + [anon_sym_QMARK_QMARK] = ACTIONS(3869), + [anon_sym_from] = ACTIONS(3857), + [anon_sym_into] = ACTIONS(3857), + [anon_sym_join] = ACTIONS(3857), + [anon_sym_on] = ACTIONS(3857), + [anon_sym_equals] = ACTIONS(3867), + [anon_sym_let] = ACTIONS(3857), + [anon_sym_orderby] = ACTIONS(3857), + [anon_sym_ascending] = ACTIONS(3857), + [anon_sym_descending] = ACTIONS(3857), + [anon_sym_group] = ACTIONS(3857), + [anon_sym_by] = ACTIONS(3857), + [anon_sym_select] = ACTIONS(3857), + [anon_sym_as] = ACTIONS(3867), + [anon_sym_is] = ACTIONS(3867), + [anon_sym_DASH_GT] = ACTIONS(3869), + [anon_sym_with] = ACTIONS(3867), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -428451,14 +428105,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2500] = { - [sym_parameter_list] = STATE(7311), - [sym_positional_pattern_clause] = STATE(2585), - [sym_property_pattern_clause] = STATE(2732), - [sym__variable_designation] = STATE(4139), - [sym_parenthesized_variable_designation] = STATE(4173), - [sym__lambda_parameters] = STATE(7536), - [sym_identifier] = STATE(4106), - [sym__reserved_identifier] = STATE(2904), + [sym__name] = STATE(3517), + [sym_alias_qualified_name] = STATE(2907), + [sym__simple_name] = STATE(2907), + [sym_qualified_name] = STATE(2907), + [sym_generic_name] = STATE(2950), + [sym_ref_type] = STATE(2923), + [sym__scoped_base_type] = STATE(2940), + [sym_identifier] = STATE(3317), + [sym__reserved_identifier] = STATE(2900), [sym_preproc_region] = STATE(2500), [sym_preproc_endregion] = STATE(2500), [sym_preproc_line] = STATE(2500), @@ -428468,66 +428123,65 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2500), [sym_preproc_define] = STATE(2500), [sym_preproc_undef] = STATE(2500), - [sym__identifier_token] = ACTIONS(3861), - [anon_sym_alias] = ACTIONS(3863), - [anon_sym_global] = ACTIONS(3863), - [anon_sym_LBRACK] = ACTIONS(3893), - [anon_sym_LPAREN] = ACTIONS(3893), - [anon_sym_LBRACE] = ACTIONS(3881), - [anon_sym_file] = ACTIONS(3863), - [anon_sym_LT] = ACTIONS(3895), - [anon_sym_GT] = ACTIONS(3895), - [anon_sym_where] = ACTIONS(3895), - [anon_sym_QMARK] = ACTIONS(3895), - [anon_sym_notnull] = ACTIONS(3863), - [anon_sym_unmanaged] = ACTIONS(3863), - [anon_sym_BANG] = ACTIONS(3895), - [anon_sym_PLUS_PLUS] = ACTIONS(3893), - [anon_sym_DASH_DASH] = ACTIONS(3893), - [anon_sym_PLUS] = ACTIONS(3895), - [anon_sym_DASH] = ACTIONS(3895), - [anon_sym_STAR] = ACTIONS(3893), - [anon_sym_SLASH] = ACTIONS(3895), - [anon_sym_PERCENT] = ACTIONS(3893), - [anon_sym_CARET] = ACTIONS(3893), - [anon_sym_PIPE] = ACTIONS(3895), - [anon_sym_AMP] = ACTIONS(3895), - [anon_sym_LT_LT] = ACTIONS(3893), - [anon_sym_GT_GT] = ACTIONS(3895), - [anon_sym_GT_GT_GT] = ACTIONS(3893), - [anon_sym_EQ_EQ] = ACTIONS(3893), - [anon_sym_BANG_EQ] = ACTIONS(3893), - [anon_sym_GT_EQ] = ACTIONS(3893), - [anon_sym_LT_EQ] = ACTIONS(3893), - [anon_sym_DOT] = ACTIONS(3895), - [anon_sym_scoped] = ACTIONS(3863), - [anon_sym_var] = ACTIONS(3863), - [anon_sym_yield] = ACTIONS(3863), - [anon_sym_switch] = ACTIONS(3895), - [anon_sym_when] = ACTIONS(3863), - [sym_discard] = ACTIONS(4209), - [anon_sym_DOT_DOT] = ACTIONS(3893), - [anon_sym_and] = ACTIONS(3883), - [anon_sym_or] = ACTIONS(3883), - [anon_sym_AMP_AMP] = ACTIONS(3893), - [anon_sym_PIPE_PIPE] = ACTIONS(3893), - [anon_sym_QMARK_QMARK] = ACTIONS(3893), - [anon_sym_from] = ACTIONS(3895), - [anon_sym_into] = ACTIONS(3895), - [anon_sym_join] = ACTIONS(3895), - [anon_sym_on] = ACTIONS(3863), - [anon_sym_equals] = ACTIONS(3863), - [anon_sym_let] = ACTIONS(3895), - [anon_sym_orderby] = ACTIONS(3895), - [anon_sym_ascending] = ACTIONS(3863), - [anon_sym_descending] = ACTIONS(3863), - [anon_sym_group] = ACTIONS(3895), - [anon_sym_by] = ACTIONS(3863), - [anon_sym_select] = ACTIONS(3895), - [anon_sym_as] = ACTIONS(3895), - [anon_sym_is] = ACTIONS(3895), - [anon_sym_DASH_GT] = ACTIONS(3893), - [anon_sym_with] = ACTIONS(3895), + [sym__identifier_token] = ACTIONS(3814), + [anon_sym_alias] = ACTIONS(3816), + [anon_sym_global] = ACTIONS(3816), + [anon_sym_LBRACK] = ACTIONS(3429), + [anon_sym_LPAREN] = ACTIONS(3429), + [anon_sym_ref] = ACTIONS(4201), + [anon_sym_LBRACE] = ACTIONS(3429), + [anon_sym_file] = ACTIONS(3816), + [anon_sym_LT] = ACTIONS(3431), + [anon_sym_GT] = ACTIONS(3431), + [anon_sym_where] = ACTIONS(3816), + [anon_sym_QMARK] = ACTIONS(3431), + [anon_sym_notnull] = ACTIONS(3816), + [anon_sym_unmanaged] = ACTIONS(3816), + [anon_sym_BANG] = ACTIONS(3431), + [anon_sym_PLUS_PLUS] = ACTIONS(3429), + [anon_sym_DASH_DASH] = ACTIONS(3429), + [anon_sym_PLUS] = ACTIONS(3431), + [anon_sym_DASH] = ACTIONS(3431), + [anon_sym_STAR] = ACTIONS(3429), + [anon_sym_SLASH] = ACTIONS(3431), + [anon_sym_PERCENT] = ACTIONS(3429), + [anon_sym_CARET] = ACTIONS(3429), + [anon_sym_PIPE] = ACTIONS(3431), + [anon_sym_AMP] = ACTIONS(3431), + [anon_sym_LT_LT] = ACTIONS(3429), + [anon_sym_GT_GT] = ACTIONS(3431), + [anon_sym_GT_GT_GT] = ACTIONS(3429), + [anon_sym_EQ_EQ] = ACTIONS(3429), + [anon_sym_BANG_EQ] = ACTIONS(3429), + [anon_sym_GT_EQ] = ACTIONS(3429), + [anon_sym_LT_EQ] = ACTIONS(3429), + [anon_sym_DOT] = ACTIONS(3431), + [anon_sym_scoped] = ACTIONS(3816), + [anon_sym_COLON_COLON] = ACTIONS(3429), + [anon_sym_var] = ACTIONS(3816), + [anon_sym_yield] = ACTIONS(3816), + [anon_sym_switch] = ACTIONS(3431), + [anon_sym_when] = ACTIONS(3816), + [anon_sym_DOT_DOT] = ACTIONS(3429), + [anon_sym_AMP_AMP] = ACTIONS(3429), + [anon_sym_PIPE_PIPE] = ACTIONS(3429), + [anon_sym_QMARK_QMARK] = ACTIONS(3429), + [anon_sym_from] = ACTIONS(3816), + [anon_sym_into] = ACTIONS(3820), + [anon_sym_join] = ACTIONS(3816), + [anon_sym_on] = ACTIONS(3816), + [anon_sym_equals] = ACTIONS(3820), + [anon_sym_let] = ACTIONS(3816), + [anon_sym_orderby] = ACTIONS(3816), + [anon_sym_ascending] = ACTIONS(3816), + [anon_sym_descending] = ACTIONS(3816), + [anon_sym_group] = ACTIONS(3816), + [anon_sym_by] = ACTIONS(3816), + [anon_sym_select] = ACTIONS(3816), + [anon_sym_as] = ACTIONS(3431), + [anon_sym_is] = ACTIONS(3431), + [anon_sym_DASH_GT] = ACTIONS(3429), + [anon_sym_with] = ACTIONS(3431), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -428540,11 +428194,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2501] = { - [sym_property_pattern_clause] = STATE(2554), - [sym__variable_designation] = STATE(4510), - [sym_parenthesized_variable_designation] = STATE(4761), - [sym_identifier] = STATE(4764), - [sym__reserved_identifier] = STATE(4323), + [sym_parameter_list] = STATE(7531), + [sym_positional_pattern_clause] = STATE(2583), + [sym_property_pattern_clause] = STATE(2760), + [sym__variable_designation] = STATE(3347), + [sym_parenthesized_variable_designation] = STATE(3344), + [sym__lambda_parameters] = STATE(7378), + [sym_identifier] = STATE(3309), + [sym__reserved_identifier] = STATE(3199), [sym_preproc_region] = STATE(2501), [sym_preproc_endregion] = STATE(2501), [sym_preproc_line] = STATE(2501), @@ -428554,89 +428211,87 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2501), [sym_preproc_define] = STATE(2501), [sym_preproc_undef] = STATE(2501), - [sym__identifier_token] = ACTIONS(4050), - [anon_sym_alias] = ACTIONS(4052), - [anon_sym_global] = ACTIONS(4052), - [anon_sym_LBRACK] = ACTIONS(3913), - [anon_sym_COLON] = ACTIONS(3913), - [anon_sym_COMMA] = ACTIONS(3913), - [anon_sym_LPAREN] = ACTIONS(3913), - [anon_sym_LBRACE] = ACTIONS(4054), - [anon_sym_file] = ACTIONS(4052), - [anon_sym_LT] = ACTIONS(3915), - [anon_sym_GT] = ACTIONS(3915), - [anon_sym_where] = ACTIONS(4052), - [anon_sym_QMARK] = ACTIONS(3915), - [anon_sym_notnull] = ACTIONS(4052), - [anon_sym_unmanaged] = ACTIONS(4052), - [anon_sym_BANG] = ACTIONS(3915), - [anon_sym_PLUS_PLUS] = ACTIONS(3913), - [anon_sym_DASH_DASH] = ACTIONS(3913), - [anon_sym_PLUS] = ACTIONS(3915), - [anon_sym_DASH] = ACTIONS(3915), - [anon_sym_STAR] = ACTIONS(3913), - [anon_sym_SLASH] = ACTIONS(3915), - [anon_sym_PERCENT] = ACTIONS(3913), - [anon_sym_CARET] = ACTIONS(3913), - [anon_sym_PIPE] = ACTIONS(3915), - [anon_sym_AMP] = ACTIONS(3915), - [anon_sym_LT_LT] = ACTIONS(3913), - [anon_sym_GT_GT] = ACTIONS(3915), - [anon_sym_GT_GT_GT] = ACTIONS(3913), - [anon_sym_EQ_EQ] = ACTIONS(3913), - [anon_sym_BANG_EQ] = ACTIONS(3913), - [anon_sym_GT_EQ] = ACTIONS(3913), - [anon_sym_LT_EQ] = ACTIONS(3913), - [anon_sym_DOT] = ACTIONS(3915), - [anon_sym_scoped] = ACTIONS(4052), - [anon_sym_var] = ACTIONS(4052), - [anon_sym_yield] = ACTIONS(4052), - [anon_sym_switch] = ACTIONS(3915), - [anon_sym_when] = ACTIONS(4052), - [sym_discard] = ACTIONS(4056), - [anon_sym_DOT_DOT] = ACTIONS(3913), - [anon_sym_and] = ACTIONS(3915), - [anon_sym_or] = ACTIONS(3915), - [anon_sym_AMP_AMP] = ACTIONS(3913), - [anon_sym_PIPE_PIPE] = ACTIONS(3913), - [anon_sym_QMARK_QMARK] = ACTIONS(3913), - [anon_sym_from] = ACTIONS(4052), - [anon_sym_into] = ACTIONS(3915), - [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(3915), - [anon_sym_is] = ACTIONS(3915), - [anon_sym_DASH_GT] = ACTIONS(3913), - [anon_sym_with] = ACTIONS(3915), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_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(3913), + [sym__identifier_token] = ACTIONS(3855), + [anon_sym_alias] = ACTIONS(3857), + [anon_sym_global] = ACTIONS(3857), + [anon_sym_LBRACK] = ACTIONS(3859), + [anon_sym_LPAREN] = ACTIONS(3859), + [anon_sym_LBRACE] = ACTIONS(3861), + [anon_sym_file] = ACTIONS(3857), + [anon_sym_LT] = ACTIONS(3863), + [anon_sym_GT] = ACTIONS(3863), + [anon_sym_where] = ACTIONS(3857), + [anon_sym_QMARK] = ACTIONS(3863), + [anon_sym_notnull] = ACTIONS(3857), + [anon_sym_unmanaged] = ACTIONS(3857), + [anon_sym_BANG] = ACTIONS(3863), + [anon_sym_PLUS_PLUS] = ACTIONS(3859), + [anon_sym_DASH_DASH] = ACTIONS(3859), + [anon_sym_PLUS] = ACTIONS(3863), + [anon_sym_DASH] = ACTIONS(3863), + [anon_sym_STAR] = ACTIONS(3859), + [anon_sym_SLASH] = ACTIONS(3863), + [anon_sym_PERCENT] = ACTIONS(3859), + [anon_sym_CARET] = ACTIONS(3859), + [anon_sym_PIPE] = ACTIONS(3863), + [anon_sym_AMP] = ACTIONS(3863), + [anon_sym_LT_LT] = ACTIONS(3859), + [anon_sym_GT_GT] = ACTIONS(3863), + [anon_sym_GT_GT_GT] = ACTIONS(3859), + [anon_sym_EQ_EQ] = ACTIONS(3859), + [anon_sym_BANG_EQ] = ACTIONS(3859), + [anon_sym_GT_EQ] = ACTIONS(3859), + [anon_sym_LT_EQ] = ACTIONS(3859), + [anon_sym_DOT] = ACTIONS(3863), + [anon_sym_scoped] = ACTIONS(3857), + [anon_sym_var] = ACTIONS(3857), + [anon_sym_yield] = ACTIONS(3857), + [anon_sym_switch] = ACTIONS(3863), + [anon_sym_when] = ACTIONS(3857), + [sym_discard] = ACTIONS(3865), + [anon_sym_DOT_DOT] = ACTIONS(3859), + [anon_sym_and] = ACTIONS(3863), + [anon_sym_or] = ACTIONS(3863), + [anon_sym_AMP_AMP] = ACTIONS(3859), + [anon_sym_PIPE_PIPE] = ACTIONS(3859), + [anon_sym_QMARK_QMARK] = ACTIONS(3859), + [anon_sym_from] = ACTIONS(3857), + [anon_sym_into] = ACTIONS(3863), + [anon_sym_join] = ACTIONS(3857), + [anon_sym_on] = ACTIONS(3857), + [anon_sym_equals] = ACTIONS(3857), + [anon_sym_let] = ACTIONS(3857), + [anon_sym_orderby] = ACTIONS(3857), + [anon_sym_ascending] = ACTIONS(3857), + [anon_sym_descending] = ACTIONS(3857), + [anon_sym_group] = ACTIONS(3857), + [anon_sym_by] = ACTIONS(3863), + [anon_sym_select] = ACTIONS(3857), + [anon_sym_as] = ACTIONS(3863), + [anon_sym_is] = ACTIONS(3863), + [anon_sym_DASH_GT] = ACTIONS(3859), + [anon_sym_with] = ACTIONS(3863), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), }, [2502] = { - [sym_parameter_list] = STATE(7311), - [sym_positional_pattern_clause] = STATE(2567), - [sym_property_pattern_clause] = STATE(2787), - [sym__variable_designation] = STATE(3346), - [sym_parenthesized_variable_designation] = STATE(3340), - [sym__lambda_parameters] = STATE(7536), - [sym_identifier] = STATE(3342), - [sym__reserved_identifier] = STATE(3177), + [sym__name] = STATE(3517), + [sym_alias_qualified_name] = STATE(2907), + [sym__simple_name] = STATE(2907), + [sym_qualified_name] = STATE(2907), + [sym_generic_name] = STATE(2950), + [sym_ref_type] = STATE(2923), + [sym__scoped_base_type] = STATE(2940), + [sym_identifier] = STATE(3317), + [sym__reserved_identifier] = STATE(2900), [sym_preproc_region] = STATE(2502), [sym_preproc_endregion] = STATE(2502), [sym_preproc_line] = STATE(2502), @@ -428646,66 +428301,65 @@ 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), - [sym__identifier_token] = ACTIONS(3875), - [anon_sym_alias] = ACTIONS(3877), - [anon_sym_global] = ACTIONS(3877), - [anon_sym_LBRACK] = ACTIONS(3893), - [anon_sym_LPAREN] = ACTIONS(3893), - [anon_sym_LBRACE] = ACTIONS(3881), - [anon_sym_file] = ACTIONS(3877), - [anon_sym_LT] = ACTIONS(3895), - [anon_sym_GT] = ACTIONS(3895), - [anon_sym_where] = ACTIONS(3877), - [anon_sym_QMARK] = ACTIONS(3895), - [anon_sym_notnull] = ACTIONS(3877), - [anon_sym_unmanaged] = ACTIONS(3877), - [anon_sym_BANG] = ACTIONS(3895), - [anon_sym_PLUS_PLUS] = ACTIONS(3893), - [anon_sym_DASH_DASH] = ACTIONS(3893), - [anon_sym_PLUS] = ACTIONS(3895), - [anon_sym_DASH] = ACTIONS(3895), - [anon_sym_STAR] = ACTIONS(3893), - [anon_sym_SLASH] = ACTIONS(3895), - [anon_sym_PERCENT] = ACTIONS(3893), - [anon_sym_CARET] = ACTIONS(3893), - [anon_sym_PIPE] = ACTIONS(3895), - [anon_sym_AMP] = ACTIONS(3895), - [anon_sym_LT_LT] = ACTIONS(3893), - [anon_sym_GT_GT] = ACTIONS(3895), - [anon_sym_GT_GT_GT] = ACTIONS(3893), - [anon_sym_EQ_EQ] = ACTIONS(3893), - [anon_sym_BANG_EQ] = ACTIONS(3893), - [anon_sym_GT_EQ] = ACTIONS(3893), - [anon_sym_LT_EQ] = ACTIONS(3893), - [anon_sym_DOT] = ACTIONS(3895), - [anon_sym_scoped] = ACTIONS(3877), - [anon_sym_var] = ACTIONS(3877), - [anon_sym_yield] = ACTIONS(3877), - [anon_sym_switch] = ACTIONS(3895), - [anon_sym_when] = ACTIONS(3877), - [sym_discard] = ACTIONS(3885), - [anon_sym_DOT_DOT] = ACTIONS(3893), - [anon_sym_and] = ACTIONS(3883), - [anon_sym_or] = ACTIONS(3883), - [anon_sym_AMP_AMP] = ACTIONS(3893), - [anon_sym_PIPE_PIPE] = ACTIONS(3893), - [anon_sym_QMARK_QMARK] = ACTIONS(3893), - [anon_sym_from] = ACTIONS(3877), - [anon_sym_into] = ACTIONS(3895), - [anon_sym_join] = ACTIONS(3877), - [anon_sym_on] = ACTIONS(3877), - [anon_sym_equals] = ACTIONS(3895), - [anon_sym_let] = ACTIONS(3877), - [anon_sym_orderby] = ACTIONS(3877), - [anon_sym_ascending] = ACTIONS(3877), - [anon_sym_descending] = ACTIONS(3877), - [anon_sym_group] = ACTIONS(3877), - [anon_sym_by] = ACTIONS(3877), - [anon_sym_select] = ACTIONS(3877), - [anon_sym_as] = ACTIONS(3895), - [anon_sym_is] = ACTIONS(3895), - [anon_sym_DASH_GT] = ACTIONS(3893), - [anon_sym_with] = ACTIONS(3895), + [sym__identifier_token] = ACTIONS(3814), + [anon_sym_alias] = ACTIONS(3816), + [anon_sym_global] = ACTIONS(3816), + [anon_sym_LBRACK] = ACTIONS(3429), + [anon_sym_LPAREN] = ACTIONS(3429), + [anon_sym_ref] = ACTIONS(4203), + [anon_sym_LBRACE] = ACTIONS(3429), + [anon_sym_file] = ACTIONS(3816), + [anon_sym_LT] = ACTIONS(3431), + [anon_sym_GT] = ACTIONS(3431), + [anon_sym_where] = ACTIONS(3816), + [anon_sym_QMARK] = ACTIONS(3431), + [anon_sym_notnull] = ACTIONS(3816), + [anon_sym_unmanaged] = ACTIONS(3816), + [anon_sym_BANG] = ACTIONS(3431), + [anon_sym_PLUS_PLUS] = ACTIONS(3429), + [anon_sym_DASH_DASH] = ACTIONS(3429), + [anon_sym_PLUS] = ACTIONS(3431), + [anon_sym_DASH] = ACTIONS(3431), + [anon_sym_STAR] = ACTIONS(3429), + [anon_sym_SLASH] = ACTIONS(3431), + [anon_sym_PERCENT] = ACTIONS(3429), + [anon_sym_CARET] = ACTIONS(3429), + [anon_sym_PIPE] = ACTIONS(3431), + [anon_sym_AMP] = ACTIONS(3431), + [anon_sym_LT_LT] = ACTIONS(3429), + [anon_sym_GT_GT] = ACTIONS(3431), + [anon_sym_GT_GT_GT] = ACTIONS(3429), + [anon_sym_EQ_EQ] = ACTIONS(3429), + [anon_sym_BANG_EQ] = ACTIONS(3429), + [anon_sym_GT_EQ] = ACTIONS(3429), + [anon_sym_LT_EQ] = ACTIONS(3429), + [anon_sym_DOT] = ACTIONS(3431), + [anon_sym_scoped] = ACTIONS(3816), + [anon_sym_COLON_COLON] = ACTIONS(3429), + [anon_sym_var] = ACTIONS(3816), + [anon_sym_yield] = ACTIONS(3816), + [anon_sym_switch] = ACTIONS(3431), + [anon_sym_when] = ACTIONS(3816), + [anon_sym_DOT_DOT] = ACTIONS(3429), + [anon_sym_AMP_AMP] = ACTIONS(3429), + [anon_sym_PIPE_PIPE] = ACTIONS(3429), + [anon_sym_QMARK_QMARK] = ACTIONS(3429), + [anon_sym_from] = ACTIONS(3816), + [anon_sym_into] = ACTIONS(3820), + [anon_sym_join] = ACTIONS(3816), + [anon_sym_on] = ACTIONS(3820), + [anon_sym_equals] = ACTIONS(3816), + [anon_sym_let] = ACTIONS(3816), + [anon_sym_orderby] = ACTIONS(3816), + [anon_sym_ascending] = ACTIONS(3816), + [anon_sym_descending] = ACTIONS(3816), + [anon_sym_group] = ACTIONS(3816), + [anon_sym_by] = ACTIONS(3816), + [anon_sym_select] = ACTIONS(3816), + [anon_sym_as] = ACTIONS(3431), + [anon_sym_is] = ACTIONS(3431), + [anon_sym_DASH_GT] = ACTIONS(3429), + [anon_sym_with] = ACTIONS(3431), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -428718,15 +428372,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2503] = { - [sym__name] = STATE(3087), - [sym_alias_qualified_name] = STATE(3029), - [sym__simple_name] = STATE(3029), - [sym_qualified_name] = STATE(3029), - [sym_generic_name] = STATE(2985), - [sym_ref_type] = STATE(3043), - [sym__scoped_base_type] = STATE(2963), - [sym_identifier] = STATE(2923), - [sym__reserved_identifier] = STATE(2945), + [sym_parameter_list] = STATE(7531), + [sym_positional_pattern_clause] = STATE(2564), + [sym_property_pattern_clause] = STATE(2680), + [sym__variable_designation] = STATE(3422), + [sym_parenthesized_variable_designation] = STATE(3352), + [sym__lambda_parameters] = STATE(7378), + [sym_identifier] = STATE(3430), + [sym__reserved_identifier] = STATE(3199), [sym_preproc_region] = STATE(2503), [sym_preproc_endregion] = STATE(2503), [sym_preproc_line] = STATE(2503), @@ -428736,65 +428389,66 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2503), [sym_preproc_define] = STATE(2503), [sym_preproc_undef] = STATE(2503), - [sym__identifier_token] = ACTIONS(3887), - [anon_sym_alias] = ACTIONS(3889), - [anon_sym_global] = ACTIONS(3889), - [anon_sym_LBRACK] = ACTIONS(3445), - [anon_sym_LPAREN] = ACTIONS(3445), - [anon_sym_ref] = ACTIONS(4223), - [anon_sym_LBRACE] = ACTIONS(3445), - [anon_sym_file] = ACTIONS(3889), - [anon_sym_LT] = ACTIONS(3447), - [anon_sym_GT] = ACTIONS(3447), - [anon_sym_where] = ACTIONS(3889), - [anon_sym_QMARK] = ACTIONS(3447), - [anon_sym_notnull] = ACTIONS(3889), - [anon_sym_unmanaged] = ACTIONS(3889), - [anon_sym_BANG] = ACTIONS(3447), - [anon_sym_PLUS_PLUS] = ACTIONS(3445), - [anon_sym_DASH_DASH] = ACTIONS(3445), - [anon_sym_PLUS] = ACTIONS(3447), - [anon_sym_DASH] = ACTIONS(3447), - [anon_sym_STAR] = ACTIONS(3445), - [anon_sym_SLASH] = ACTIONS(3447), - [anon_sym_PERCENT] = ACTIONS(3445), - [anon_sym_CARET] = ACTIONS(3445), - [anon_sym_PIPE] = ACTIONS(3447), - [anon_sym_AMP] = ACTIONS(3447), - [anon_sym_LT_LT] = ACTIONS(3445), - [anon_sym_GT_GT] = ACTIONS(3447), - [anon_sym_GT_GT_GT] = ACTIONS(3445), - [anon_sym_EQ_EQ] = ACTIONS(3445), - [anon_sym_BANG_EQ] = ACTIONS(3445), - [anon_sym_GT_EQ] = ACTIONS(3445), - [anon_sym_LT_EQ] = ACTIONS(3445), - [anon_sym_DOT] = ACTIONS(3447), - [anon_sym_scoped] = ACTIONS(3889), - [anon_sym_COLON_COLON] = ACTIONS(3445), - [anon_sym_var] = ACTIONS(3889), - [anon_sym_yield] = ACTIONS(3889), - [anon_sym_switch] = ACTIONS(3447), - [anon_sym_when] = ACTIONS(3889), - [anon_sym_DOT_DOT] = ACTIONS(3445), - [anon_sym_AMP_AMP] = ACTIONS(3445), - [anon_sym_PIPE_PIPE] = ACTIONS(3445), - [anon_sym_QMARK_QMARK] = ACTIONS(3445), - [anon_sym_from] = ACTIONS(3889), - [anon_sym_into] = ACTIONS(3889), - [anon_sym_join] = ACTIONS(3889), - [anon_sym_on] = ACTIONS(4170), - [anon_sym_equals] = ACTIONS(3889), - [anon_sym_let] = ACTIONS(3889), - [anon_sym_orderby] = ACTIONS(3889), - [anon_sym_ascending] = ACTIONS(3889), - [anon_sym_descending] = ACTIONS(3889), - [anon_sym_group] = ACTIONS(3889), - [anon_sym_by] = ACTIONS(3889), - [anon_sym_select] = ACTIONS(3889), - [anon_sym_as] = ACTIONS(3447), - [anon_sym_is] = ACTIONS(3447), - [anon_sym_DASH_GT] = ACTIONS(3445), - [anon_sym_with] = ACTIONS(3447), + [sym__identifier_token] = ACTIONS(3855), + [anon_sym_alias] = ACTIONS(3857), + [anon_sym_global] = ACTIONS(3857), + [anon_sym_LBRACK] = ACTIONS(3869), + [anon_sym_LPAREN] = ACTIONS(3869), + [anon_sym_LBRACE] = ACTIONS(3861), + [anon_sym_file] = ACTIONS(3857), + [anon_sym_LT] = ACTIONS(3867), + [anon_sym_GT] = ACTIONS(3867), + [anon_sym_where] = ACTIONS(3857), + [anon_sym_QMARK] = ACTIONS(3867), + [anon_sym_notnull] = ACTIONS(3857), + [anon_sym_unmanaged] = ACTIONS(3857), + [anon_sym_BANG] = ACTIONS(3867), + [anon_sym_PLUS_PLUS] = ACTIONS(3869), + [anon_sym_DASH_DASH] = ACTIONS(3869), + [anon_sym_PLUS] = ACTIONS(3867), + [anon_sym_DASH] = ACTIONS(3867), + [anon_sym_STAR] = ACTIONS(3869), + [anon_sym_SLASH] = ACTIONS(3867), + [anon_sym_PERCENT] = ACTIONS(3869), + [anon_sym_CARET] = ACTIONS(3869), + [anon_sym_PIPE] = ACTIONS(3867), + [anon_sym_AMP] = ACTIONS(3867), + [anon_sym_LT_LT] = ACTIONS(3869), + [anon_sym_GT_GT] = ACTIONS(3867), + [anon_sym_GT_GT_GT] = ACTIONS(3869), + [anon_sym_EQ_EQ] = ACTIONS(3869), + [anon_sym_BANG_EQ] = ACTIONS(3869), + [anon_sym_GT_EQ] = ACTIONS(3869), + [anon_sym_LT_EQ] = ACTIONS(3869), + [anon_sym_DOT] = ACTIONS(3867), + [anon_sym_scoped] = ACTIONS(3857), + [anon_sym_var] = ACTIONS(3857), + [anon_sym_yield] = ACTIONS(3857), + [anon_sym_switch] = ACTIONS(3867), + [anon_sym_when] = ACTIONS(3857), + [sym_discard] = ACTIONS(3877), + [anon_sym_DOT_DOT] = ACTIONS(3869), + [anon_sym_and] = ACTIONS(3867), + [anon_sym_or] = ACTIONS(3867), + [anon_sym_AMP_AMP] = ACTIONS(3869), + [anon_sym_PIPE_PIPE] = ACTIONS(3869), + [anon_sym_QMARK_QMARK] = ACTIONS(3869), + [anon_sym_from] = ACTIONS(3857), + [anon_sym_into] = ACTIONS(3857), + [anon_sym_join] = ACTIONS(3857), + [anon_sym_on] = ACTIONS(3857), + [anon_sym_equals] = ACTIONS(3857), + [anon_sym_let] = ACTIONS(3857), + [anon_sym_orderby] = ACTIONS(3857), + [anon_sym_ascending] = ACTIONS(3857), + [anon_sym_descending] = ACTIONS(3857), + [anon_sym_group] = ACTIONS(3857), + [anon_sym_by] = ACTIONS(3867), + [anon_sym_select] = ACTIONS(3857), + [anon_sym_as] = ACTIONS(3867), + [anon_sym_is] = ACTIONS(3867), + [anon_sym_DASH_GT] = ACTIONS(3869), + [anon_sym_with] = ACTIONS(3867), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -428807,15 +428461,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2504] = { - [sym__name] = STATE(3522), - [sym_alias_qualified_name] = STATE(2921), - [sym__simple_name] = STATE(2921), - [sym_qualified_name] = STATE(2921), - [sym_generic_name] = STATE(2929), - [sym_ref_type] = STATE(2922), - [sym__scoped_base_type] = STATE(2924), - [sym_identifier] = STATE(3260), - [sym__reserved_identifier] = STATE(2904), + [sym_parameter_list] = STATE(7531), + [sym_positional_pattern_clause] = STATE(2577), + [sym_property_pattern_clause] = STATE(2785), + [sym__variable_designation] = STATE(3347), + [sym_parenthesized_variable_designation] = STATE(3344), + [sym__lambda_parameters] = STATE(7378), + [sym_identifier] = STATE(3309), + [sym__reserved_identifier] = STATE(3199), [sym_preproc_region] = STATE(2504), [sym_preproc_endregion] = STATE(2504), [sym_preproc_line] = STATE(2504), @@ -428825,65 +428478,66 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2504), [sym_preproc_define] = STATE(2504), [sym_preproc_undef] = STATE(2504), - [sym__identifier_token] = ACTIONS(3861), - [anon_sym_alias] = ACTIONS(3863), - [anon_sym_global] = ACTIONS(3863), - [anon_sym_LBRACK] = ACTIONS(3445), - [anon_sym_LPAREN] = ACTIONS(3445), - [anon_sym_ref] = ACTIONS(4225), - [anon_sym_LBRACE] = ACTIONS(3445), - [anon_sym_file] = ACTIONS(3863), - [anon_sym_LT] = ACTIONS(3447), - [anon_sym_GT] = ACTIONS(3447), - [anon_sym_where] = ACTIONS(3863), - [anon_sym_QMARK] = ACTIONS(3447), - [anon_sym_notnull] = ACTIONS(3863), - [anon_sym_unmanaged] = ACTIONS(3863), - [anon_sym_BANG] = ACTIONS(3447), - [anon_sym_PLUS_PLUS] = ACTIONS(3445), - [anon_sym_DASH_DASH] = ACTIONS(3445), - [anon_sym_PLUS] = ACTIONS(3447), - [anon_sym_DASH] = ACTIONS(3447), - [anon_sym_STAR] = ACTIONS(3445), - [anon_sym_SLASH] = ACTIONS(3447), - [anon_sym_PERCENT] = ACTIONS(3445), - [anon_sym_CARET] = ACTIONS(3445), - [anon_sym_PIPE] = ACTIONS(3447), - [anon_sym_AMP] = ACTIONS(3447), - [anon_sym_LT_LT] = ACTIONS(3445), - [anon_sym_GT_GT] = ACTIONS(3447), - [anon_sym_GT_GT_GT] = ACTIONS(3445), - [anon_sym_EQ_EQ] = ACTIONS(3445), - [anon_sym_BANG_EQ] = ACTIONS(3445), - [anon_sym_GT_EQ] = ACTIONS(3445), - [anon_sym_LT_EQ] = ACTIONS(3445), - [anon_sym_DOT] = ACTIONS(3447), - [anon_sym_scoped] = ACTIONS(3863), - [anon_sym_COLON_COLON] = ACTIONS(3445), - [anon_sym_var] = ACTIONS(3863), - [anon_sym_yield] = ACTIONS(3863), - [anon_sym_switch] = ACTIONS(3447), - [anon_sym_when] = ACTIONS(3863), - [anon_sym_DOT_DOT] = ACTIONS(3445), - [anon_sym_AMP_AMP] = ACTIONS(3445), - [anon_sym_PIPE_PIPE] = ACTIONS(3445), - [anon_sym_QMARK_QMARK] = ACTIONS(3445), - [anon_sym_from] = ACTIONS(3863), - [anon_sym_into] = ACTIONS(3867), - [anon_sym_join] = ACTIONS(3863), - [anon_sym_on] = ACTIONS(3863), + [sym__identifier_token] = ACTIONS(3855), + [anon_sym_alias] = ACTIONS(3857), + [anon_sym_global] = ACTIONS(3857), + [anon_sym_LBRACK] = ACTIONS(3859), + [anon_sym_LPAREN] = ACTIONS(3859), + [anon_sym_LBRACE] = ACTIONS(3861), + [anon_sym_file] = ACTIONS(3857), + [anon_sym_LT] = ACTIONS(3863), + [anon_sym_GT] = ACTIONS(3863), + [anon_sym_where] = ACTIONS(3857), + [anon_sym_QMARK] = ACTIONS(3863), + [anon_sym_notnull] = ACTIONS(3857), + [anon_sym_unmanaged] = ACTIONS(3857), + [anon_sym_BANG] = ACTIONS(3863), + [anon_sym_PLUS_PLUS] = ACTIONS(3859), + [anon_sym_DASH_DASH] = ACTIONS(3859), + [anon_sym_PLUS] = ACTIONS(3863), + [anon_sym_DASH] = ACTIONS(3863), + [anon_sym_STAR] = ACTIONS(3859), + [anon_sym_SLASH] = ACTIONS(3863), + [anon_sym_PERCENT] = ACTIONS(3859), + [anon_sym_CARET] = ACTIONS(3859), + [anon_sym_PIPE] = ACTIONS(3863), + [anon_sym_AMP] = ACTIONS(3863), + [anon_sym_LT_LT] = ACTIONS(3859), + [anon_sym_GT_GT] = ACTIONS(3863), + [anon_sym_GT_GT_GT] = ACTIONS(3859), + [anon_sym_EQ_EQ] = ACTIONS(3859), + [anon_sym_BANG_EQ] = ACTIONS(3859), + [anon_sym_GT_EQ] = ACTIONS(3859), + [anon_sym_LT_EQ] = ACTIONS(3859), + [anon_sym_DOT] = ACTIONS(3863), + [anon_sym_scoped] = ACTIONS(3857), + [anon_sym_var] = ACTIONS(3857), + [anon_sym_yield] = ACTIONS(3857), + [anon_sym_switch] = ACTIONS(3863), + [anon_sym_when] = ACTIONS(3857), + [sym_discard] = ACTIONS(3865), + [anon_sym_DOT_DOT] = ACTIONS(3859), + [anon_sym_and] = ACTIONS(3863), + [anon_sym_or] = ACTIONS(3863), + [anon_sym_AMP_AMP] = ACTIONS(3859), + [anon_sym_PIPE_PIPE] = ACTIONS(3859), + [anon_sym_QMARK_QMARK] = ACTIONS(3859), + [anon_sym_from] = ACTIONS(3857), + [anon_sym_into] = ACTIONS(3863), + [anon_sym_join] = ACTIONS(3857), + [anon_sym_on] = ACTIONS(3857), [anon_sym_equals] = ACTIONS(3863), - [anon_sym_let] = ACTIONS(3863), - [anon_sym_orderby] = ACTIONS(3863), - [anon_sym_ascending] = ACTIONS(3863), - [anon_sym_descending] = ACTIONS(3863), - [anon_sym_group] = ACTIONS(3863), - [anon_sym_by] = ACTIONS(3867), - [anon_sym_select] = ACTIONS(3863), - [anon_sym_as] = ACTIONS(3447), - [anon_sym_is] = ACTIONS(3447), - [anon_sym_DASH_GT] = ACTIONS(3445), - [anon_sym_with] = ACTIONS(3447), + [anon_sym_let] = ACTIONS(3857), + [anon_sym_orderby] = ACTIONS(3857), + [anon_sym_ascending] = ACTIONS(3857), + [anon_sym_descending] = ACTIONS(3857), + [anon_sym_group] = ACTIONS(3857), + [anon_sym_by] = ACTIONS(3857), + [anon_sym_select] = ACTIONS(3857), + [anon_sym_as] = ACTIONS(3863), + [anon_sym_is] = ACTIONS(3863), + [anon_sym_DASH_GT] = ACTIONS(3859), + [anon_sym_with] = ACTIONS(3863), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -428896,14 +428550,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2505] = { - [sym_parameter_list] = STATE(7311), - [sym_positional_pattern_clause] = STATE(2572), - [sym_property_pattern_clause] = STATE(2695), - [sym__variable_designation] = STATE(3492), - [sym_parenthesized_variable_designation] = STATE(3463), - [sym__lambda_parameters] = STATE(7536), - [sym_identifier] = STATE(3493), - [sym__reserved_identifier] = STATE(3177), + [sym_parameter_list] = STATE(7531), + [sym_positional_pattern_clause] = STATE(2590), + [sym_property_pattern_clause] = STATE(2795), + [sym__variable_designation] = STATE(3347), + [sym_parenthesized_variable_designation] = STATE(3344), + [sym__lambda_parameters] = STATE(7378), + [sym_identifier] = STATE(3309), + [sym__reserved_identifier] = STATE(3199), [sym_preproc_region] = STATE(2505), [sym_preproc_endregion] = STATE(2505), [sym_preproc_line] = STATE(2505), @@ -428913,66 +428567,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(3875), - [anon_sym_alias] = ACTIONS(3877), - [anon_sym_global] = ACTIONS(3877), - [anon_sym_LBRACK] = ACTIONS(3893), - [anon_sym_LPAREN] = ACTIONS(3893), - [anon_sym_LBRACE] = ACTIONS(3881), - [anon_sym_file] = ACTIONS(3877), - [anon_sym_LT] = ACTIONS(3895), - [anon_sym_GT] = ACTIONS(3895), - [anon_sym_where] = ACTIONS(3877), - [anon_sym_QMARK] = ACTIONS(3895), - [anon_sym_notnull] = ACTIONS(3877), - [anon_sym_unmanaged] = ACTIONS(3877), - [anon_sym_BANG] = ACTIONS(3895), - [anon_sym_PLUS_PLUS] = ACTIONS(3893), - [anon_sym_DASH_DASH] = ACTIONS(3893), - [anon_sym_PLUS] = ACTIONS(3895), - [anon_sym_DASH] = ACTIONS(3895), - [anon_sym_STAR] = ACTIONS(3893), - [anon_sym_SLASH] = ACTIONS(3895), - [anon_sym_PERCENT] = ACTIONS(3893), - [anon_sym_CARET] = ACTIONS(3893), - [anon_sym_PIPE] = ACTIONS(3895), - [anon_sym_AMP] = ACTIONS(3895), - [anon_sym_LT_LT] = ACTIONS(3893), - [anon_sym_GT_GT] = ACTIONS(3895), - [anon_sym_GT_GT_GT] = ACTIONS(3893), - [anon_sym_EQ_EQ] = ACTIONS(3893), - [anon_sym_BANG_EQ] = ACTIONS(3893), - [anon_sym_GT_EQ] = ACTIONS(3893), - [anon_sym_LT_EQ] = ACTIONS(3893), - [anon_sym_DOT] = ACTIONS(3895), - [anon_sym_scoped] = ACTIONS(3877), - [anon_sym_var] = ACTIONS(3877), - [anon_sym_yield] = ACTIONS(3877), - [anon_sym_switch] = ACTIONS(3895), - [anon_sym_when] = ACTIONS(3877), - [sym_discard] = ACTIONS(3897), - [anon_sym_DOT_DOT] = ACTIONS(3893), - [anon_sym_and] = ACTIONS(3883), - [anon_sym_or] = ACTIONS(3883), - [anon_sym_AMP_AMP] = ACTIONS(3893), - [anon_sym_PIPE_PIPE] = ACTIONS(3893), - [anon_sym_QMARK_QMARK] = ACTIONS(3893), - [anon_sym_from] = ACTIONS(3877), - [anon_sym_into] = ACTIONS(3877), - [anon_sym_join] = ACTIONS(3877), - [anon_sym_on] = ACTIONS(3877), - [anon_sym_equals] = ACTIONS(3877), - [anon_sym_let] = ACTIONS(3877), - [anon_sym_orderby] = ACTIONS(3877), - [anon_sym_ascending] = ACTIONS(3877), - [anon_sym_descending] = ACTIONS(3877), - [anon_sym_group] = ACTIONS(3877), - [anon_sym_by] = ACTIONS(3895), - [anon_sym_select] = ACTIONS(3877), - [anon_sym_as] = ACTIONS(3895), - [anon_sym_is] = ACTIONS(3895), - [anon_sym_DASH_GT] = ACTIONS(3893), - [anon_sym_with] = ACTIONS(3895), + [sym__identifier_token] = ACTIONS(3855), + [anon_sym_alias] = ACTIONS(3857), + [anon_sym_global] = ACTIONS(3857), + [anon_sym_LBRACK] = ACTIONS(3859), + [anon_sym_LPAREN] = ACTIONS(3859), + [anon_sym_LBRACE] = ACTIONS(3861), + [anon_sym_file] = ACTIONS(3857), + [anon_sym_LT] = ACTIONS(3863), + [anon_sym_GT] = ACTIONS(3863), + [anon_sym_where] = ACTIONS(3857), + [anon_sym_QMARK] = ACTIONS(3863), + [anon_sym_notnull] = ACTIONS(3857), + [anon_sym_unmanaged] = ACTIONS(3857), + [anon_sym_BANG] = ACTIONS(3863), + [anon_sym_PLUS_PLUS] = ACTIONS(3859), + [anon_sym_DASH_DASH] = ACTIONS(3859), + [anon_sym_PLUS] = ACTIONS(3863), + [anon_sym_DASH] = ACTIONS(3863), + [anon_sym_STAR] = ACTIONS(3859), + [anon_sym_SLASH] = ACTIONS(3863), + [anon_sym_PERCENT] = ACTIONS(3859), + [anon_sym_CARET] = ACTIONS(3859), + [anon_sym_PIPE] = ACTIONS(3863), + [anon_sym_AMP] = ACTIONS(3863), + [anon_sym_LT_LT] = ACTIONS(3859), + [anon_sym_GT_GT] = ACTIONS(3863), + [anon_sym_GT_GT_GT] = ACTIONS(3859), + [anon_sym_EQ_EQ] = ACTIONS(3859), + [anon_sym_BANG_EQ] = ACTIONS(3859), + [anon_sym_GT_EQ] = ACTIONS(3859), + [anon_sym_LT_EQ] = ACTIONS(3859), + [anon_sym_DOT] = ACTIONS(3863), + [anon_sym_scoped] = ACTIONS(3857), + [anon_sym_var] = ACTIONS(3857), + [anon_sym_yield] = ACTIONS(3857), + [anon_sym_switch] = ACTIONS(3863), + [anon_sym_when] = ACTIONS(3857), + [sym_discard] = ACTIONS(3865), + [anon_sym_DOT_DOT] = ACTIONS(3859), + [anon_sym_and] = ACTIONS(3863), + [anon_sym_or] = ACTIONS(3863), + [anon_sym_AMP_AMP] = ACTIONS(3859), + [anon_sym_PIPE_PIPE] = ACTIONS(3859), + [anon_sym_QMARK_QMARK] = ACTIONS(3859), + [anon_sym_from] = ACTIONS(3857), + [anon_sym_into] = ACTIONS(3863), + [anon_sym_join] = ACTIONS(3857), + [anon_sym_on] = ACTIONS(3863), + [anon_sym_equals] = ACTIONS(3857), + [anon_sym_let] = ACTIONS(3857), + [anon_sym_orderby] = ACTIONS(3857), + [anon_sym_ascending] = ACTIONS(3857), + [anon_sym_descending] = ACTIONS(3857), + [anon_sym_group] = ACTIONS(3857), + [anon_sym_by] = ACTIONS(3857), + [anon_sym_select] = ACTIONS(3857), + [anon_sym_as] = ACTIONS(3863), + [anon_sym_is] = ACTIONS(3863), + [anon_sym_DASH_GT] = ACTIONS(3859), + [anon_sym_with] = ACTIONS(3863), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -428985,14 +428639,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2506] = { - [sym_parameter_list] = STATE(7311), - [sym_positional_pattern_clause] = STATE(2591), - [sym_property_pattern_clause] = STATE(2753), - [sym__variable_designation] = STATE(3492), - [sym_parenthesized_variable_designation] = STATE(3463), - [sym__lambda_parameters] = STATE(7536), - [sym_identifier] = STATE(3493), - [sym__reserved_identifier] = STATE(3177), + [sym_property_pattern_clause] = STATE(2557), + [sym__variable_designation] = STATE(4765), + [sym_parenthesized_variable_designation] = STATE(4760), + [sym_identifier] = STATE(4763), + [sym__reserved_identifier] = STATE(4328), [sym_preproc_region] = STATE(2506), [sym_preproc_endregion] = STATE(2506), [sym_preproc_line] = STATE(2506), @@ -429002,19 +428653,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2506), [sym_preproc_define] = STATE(2506), [sym_preproc_undef] = STATE(2506), - [sym__identifier_token] = ACTIONS(3875), - [anon_sym_alias] = ACTIONS(3877), - [anon_sym_global] = ACTIONS(3877), + [sym__identifier_token] = ACTIONS(4046), + [anon_sym_alias] = ACTIONS(4048), + [anon_sym_global] = ACTIONS(4048), [anon_sym_LBRACK] = ACTIONS(3893), + [anon_sym_COLON] = ACTIONS(3893), + [anon_sym_COMMA] = ACTIONS(3893), [anon_sym_LPAREN] = ACTIONS(3893), - [anon_sym_LBRACE] = ACTIONS(3881), - [anon_sym_file] = ACTIONS(3877), + [anon_sym_LBRACE] = ACTIONS(4050), + [anon_sym_file] = ACTIONS(4048), [anon_sym_LT] = ACTIONS(3895), [anon_sym_GT] = ACTIONS(3895), - [anon_sym_where] = ACTIONS(3877), + [anon_sym_where] = ACTIONS(4048), [anon_sym_QMARK] = ACTIONS(3895), - [anon_sym_notnull] = ACTIONS(3877), - [anon_sym_unmanaged] = ACTIONS(3877), + [anon_sym_notnull] = ACTIONS(4048), + [anon_sym_unmanaged] = ACTIONS(4048), [anon_sym_BANG] = ACTIONS(3895), [anon_sym_PLUS_PLUS] = ACTIONS(3893), [anon_sym_DASH_DASH] = ACTIONS(3893), @@ -429034,30 +428687,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_EQ] = ACTIONS(3893), [anon_sym_LT_EQ] = ACTIONS(3893), [anon_sym_DOT] = ACTIONS(3895), - [anon_sym_scoped] = ACTIONS(3877), - [anon_sym_var] = ACTIONS(3877), - [anon_sym_yield] = ACTIONS(3877), + [anon_sym_scoped] = ACTIONS(4048), + [anon_sym_var] = ACTIONS(4048), + [anon_sym_yield] = ACTIONS(4048), [anon_sym_switch] = ACTIONS(3895), - [anon_sym_when] = ACTIONS(3877), - [sym_discard] = ACTIONS(3897), + [anon_sym_when] = ACTIONS(4048), + [sym_discard] = ACTIONS(4052), [anon_sym_DOT_DOT] = ACTIONS(3893), [anon_sym_and] = ACTIONS(3895), [anon_sym_or] = ACTIONS(3895), [anon_sym_AMP_AMP] = ACTIONS(3893), [anon_sym_PIPE_PIPE] = ACTIONS(3893), [anon_sym_QMARK_QMARK] = ACTIONS(3893), - [anon_sym_from] = ACTIONS(3877), - [anon_sym_into] = ACTIONS(3877), - [anon_sym_join] = ACTIONS(3877), - [anon_sym_on] = ACTIONS(3895), - [anon_sym_equals] = ACTIONS(3877), - [anon_sym_let] = ACTIONS(3877), - [anon_sym_orderby] = ACTIONS(3877), - [anon_sym_ascending] = ACTIONS(3877), - [anon_sym_descending] = ACTIONS(3877), - [anon_sym_group] = ACTIONS(3877), - [anon_sym_by] = ACTIONS(3877), - [anon_sym_select] = ACTIONS(3877), + [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(3895), [anon_sym_is] = ACTIONS(3895), [anon_sym_DASH_GT] = ACTIONS(3893), @@ -429072,16 +428725,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(3893), }, [2507] = { - [sym_parameter_list] = STATE(7311), - [sym_positional_pattern_clause] = STATE(2579), - [sym_property_pattern_clause] = STATE(2775), - [sym__variable_designation] = STATE(3346), - [sym_parenthesized_variable_designation] = STATE(3340), - [sym__lambda_parameters] = STATE(7536), - [sym_identifier] = STATE(3342), - [sym__reserved_identifier] = STATE(3177), + [sym_property_pattern_clause] = STATE(2545), + [sym__variable_designation] = STATE(4811), + [sym_parenthesized_variable_designation] = STATE(4760), + [sym_identifier] = STATE(4763), + [sym__reserved_identifier] = STATE(4328), [sym_preproc_region] = STATE(2507), [sym_preproc_endregion] = STATE(2507), [sym_preproc_line] = STATE(2507), @@ -429091,86 +428742,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2507), [sym_preproc_define] = STATE(2507), [sym_preproc_undef] = STATE(2507), - [sym__identifier_token] = ACTIONS(3875), - [anon_sym_alias] = ACTIONS(3877), - [anon_sym_global] = ACTIONS(3877), - [anon_sym_LBRACK] = ACTIONS(3879), - [anon_sym_LPAREN] = ACTIONS(3879), - [anon_sym_LBRACE] = ACTIONS(3881), - [anon_sym_file] = ACTIONS(3877), - [anon_sym_LT] = ACTIONS(3883), - [anon_sym_GT] = ACTIONS(3883), - [anon_sym_where] = ACTIONS(3877), - [anon_sym_QMARK] = ACTIONS(3883), - [anon_sym_notnull] = ACTIONS(3877), - [anon_sym_unmanaged] = ACTIONS(3877), - [anon_sym_BANG] = ACTIONS(3883), - [anon_sym_PLUS_PLUS] = ACTIONS(3879), - [anon_sym_DASH_DASH] = ACTIONS(3879), - [anon_sym_PLUS] = ACTIONS(3883), - [anon_sym_DASH] = ACTIONS(3883), - [anon_sym_STAR] = ACTIONS(3879), - [anon_sym_SLASH] = ACTIONS(3883), - [anon_sym_PERCENT] = ACTIONS(3879), - [anon_sym_CARET] = ACTIONS(3879), - [anon_sym_PIPE] = ACTIONS(3883), - [anon_sym_AMP] = ACTIONS(3883), - [anon_sym_LT_LT] = ACTIONS(3879), - [anon_sym_GT_GT] = ACTIONS(3883), - [anon_sym_GT_GT_GT] = ACTIONS(3879), - [anon_sym_EQ_EQ] = ACTIONS(3879), - [anon_sym_BANG_EQ] = ACTIONS(3879), - [anon_sym_GT_EQ] = ACTIONS(3879), - [anon_sym_LT_EQ] = ACTIONS(3879), - [anon_sym_DOT] = ACTIONS(3883), - [anon_sym_scoped] = ACTIONS(3877), - [anon_sym_var] = ACTIONS(3877), - [anon_sym_yield] = ACTIONS(3877), - [anon_sym_switch] = ACTIONS(3883), - [anon_sym_when] = ACTIONS(3877), - [sym_discard] = ACTIONS(3885), - [anon_sym_DOT_DOT] = ACTIONS(3879), - [anon_sym_and] = ACTIONS(3883), - [anon_sym_or] = ACTIONS(3883), - [anon_sym_AMP_AMP] = ACTIONS(3879), - [anon_sym_PIPE_PIPE] = ACTIONS(3879), - [anon_sym_QMARK_QMARK] = ACTIONS(3879), - [anon_sym_from] = ACTIONS(3877), - [anon_sym_into] = ACTIONS(3883), - [anon_sym_join] = ACTIONS(3877), - [anon_sym_on] = ACTIONS(3877), - [anon_sym_equals] = ACTIONS(3877), - [anon_sym_let] = ACTIONS(3877), - [anon_sym_orderby] = ACTIONS(3877), - [anon_sym_ascending] = ACTIONS(3877), - [anon_sym_descending] = ACTIONS(3877), - [anon_sym_group] = ACTIONS(3877), - [anon_sym_by] = ACTIONS(3883), - [anon_sym_select] = ACTIONS(3877), - [anon_sym_as] = ACTIONS(3883), - [anon_sym_is] = ACTIONS(3883), - [anon_sym_DASH_GT] = ACTIONS(3879), - [anon_sym_with] = ACTIONS(3883), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_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(4046), + [anon_sym_alias] = ACTIONS(4048), + [anon_sym_global] = ACTIONS(4048), + [anon_sym_LBRACK] = ACTIONS(3885), + [anon_sym_COLON] = ACTIONS(3885), + [anon_sym_COMMA] = ACTIONS(3885), + [anon_sym_LPAREN] = ACTIONS(3885), + [anon_sym_LBRACE] = ACTIONS(4050), + [anon_sym_file] = ACTIONS(4048), + [anon_sym_LT] = ACTIONS(3887), + [anon_sym_GT] = ACTIONS(3887), + [anon_sym_where] = ACTIONS(4048), + [anon_sym_QMARK] = ACTIONS(3887), + [anon_sym_notnull] = ACTIONS(4048), + [anon_sym_unmanaged] = ACTIONS(4048), + [anon_sym_BANG] = ACTIONS(3887), + [anon_sym_PLUS_PLUS] = ACTIONS(3885), + [anon_sym_DASH_DASH] = ACTIONS(3885), + [anon_sym_PLUS] = ACTIONS(3887), + [anon_sym_DASH] = ACTIONS(3887), + [anon_sym_STAR] = ACTIONS(3885), + [anon_sym_SLASH] = ACTIONS(3887), + [anon_sym_PERCENT] = ACTIONS(3885), + [anon_sym_CARET] = ACTIONS(3885), + [anon_sym_PIPE] = ACTIONS(3887), + [anon_sym_AMP] = ACTIONS(3887), + [anon_sym_LT_LT] = ACTIONS(3885), + [anon_sym_GT_GT] = ACTIONS(3887), + [anon_sym_GT_GT_GT] = ACTIONS(3885), + [anon_sym_EQ_EQ] = ACTIONS(3885), + [anon_sym_BANG_EQ] = ACTIONS(3885), + [anon_sym_GT_EQ] = ACTIONS(3885), + [anon_sym_LT_EQ] = ACTIONS(3885), + [anon_sym_DOT] = ACTIONS(3887), + [anon_sym_scoped] = ACTIONS(4048), + [anon_sym_var] = ACTIONS(4048), + [anon_sym_yield] = ACTIONS(4048), + [anon_sym_switch] = ACTIONS(3887), + [anon_sym_when] = ACTIONS(4048), + [sym_discard] = ACTIONS(4052), + [anon_sym_DOT_DOT] = ACTIONS(3885), + [anon_sym_and] = ACTIONS(3887), + [anon_sym_or] = ACTIONS(3887), + [anon_sym_AMP_AMP] = ACTIONS(3885), + [anon_sym_PIPE_PIPE] = ACTIONS(3885), + [anon_sym_QMARK_QMARK] = ACTIONS(3885), + [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(3887), + [anon_sym_is] = ACTIONS(3887), + [anon_sym_DASH_GT] = ACTIONS(3885), + [anon_sym_with] = ACTIONS(3887), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_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(3885), }, [2508] = { - [sym_parameter_list] = STATE(7311), - [sym_positional_pattern_clause] = STATE(2575), - [sym_property_pattern_clause] = STATE(2686), - [sym__variable_designation] = STATE(4139), - [sym_parenthesized_variable_designation] = STATE(4173), - [sym__lambda_parameters] = STATE(7536), - [sym_identifier] = STATE(4106), - [sym__reserved_identifier] = STATE(2945), + [sym_parameter_list] = STATE(7531), + [sym_positional_pattern_clause] = STATE(2584), + [sym_property_pattern_clause] = STATE(2740), + [sym__variable_designation] = STATE(3422), + [sym_parenthesized_variable_designation] = STATE(3352), + [sym__lambda_parameters] = STATE(7378), + [sym_identifier] = STATE(3430), + [sym__reserved_identifier] = STATE(3199), [sym_preproc_region] = STATE(2508), [sym_preproc_endregion] = STATE(2508), [sym_preproc_line] = STATE(2508), @@ -429180,66 +428834,66 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2508), [sym_preproc_define] = STATE(2508), [sym_preproc_undef] = STATE(2508), - [sym__identifier_token] = ACTIONS(3887), - [anon_sym_alias] = ACTIONS(3889), - [anon_sym_global] = ACTIONS(3889), - [anon_sym_LBRACK] = ACTIONS(3879), - [anon_sym_LPAREN] = ACTIONS(3879), - [anon_sym_LBRACE] = ACTIONS(3881), - [anon_sym_file] = ACTIONS(3889), - [anon_sym_LT] = ACTIONS(3883), - [anon_sym_GT] = ACTIONS(3883), - [anon_sym_where] = ACTIONS(3883), - [anon_sym_QMARK] = ACTIONS(3883), - [anon_sym_notnull] = ACTIONS(3889), - [anon_sym_unmanaged] = ACTIONS(3889), - [anon_sym_BANG] = ACTIONS(3883), - [anon_sym_PLUS_PLUS] = ACTIONS(3879), - [anon_sym_DASH_DASH] = ACTIONS(3879), - [anon_sym_PLUS] = ACTIONS(3883), - [anon_sym_DASH] = ACTIONS(3883), - [anon_sym_STAR] = ACTIONS(3879), - [anon_sym_SLASH] = ACTIONS(3883), - [anon_sym_PERCENT] = ACTIONS(3879), - [anon_sym_CARET] = ACTIONS(3879), - [anon_sym_PIPE] = ACTIONS(3883), - [anon_sym_AMP] = ACTIONS(3883), - [anon_sym_LT_LT] = ACTIONS(3879), - [anon_sym_GT_GT] = ACTIONS(3883), - [anon_sym_GT_GT_GT] = ACTIONS(3879), - [anon_sym_EQ_EQ] = ACTIONS(3879), - [anon_sym_BANG_EQ] = ACTIONS(3879), - [anon_sym_GT_EQ] = ACTIONS(3879), - [anon_sym_LT_EQ] = ACTIONS(3879), - [anon_sym_DOT] = ACTIONS(3883), - [anon_sym_scoped] = ACTIONS(3889), - [anon_sym_var] = ACTIONS(3889), - [anon_sym_yield] = ACTIONS(3889), - [anon_sym_switch] = ACTIONS(3883), - [anon_sym_when] = ACTIONS(3889), - [sym_discard] = ACTIONS(4209), - [anon_sym_DOT_DOT] = ACTIONS(3879), - [anon_sym_and] = ACTIONS(3883), - [anon_sym_or] = ACTIONS(3883), - [anon_sym_AMP_AMP] = ACTIONS(3879), - [anon_sym_PIPE_PIPE] = ACTIONS(3879), - [anon_sym_QMARK_QMARK] = ACTIONS(3879), - [anon_sym_from] = ACTIONS(3883), - [anon_sym_into] = ACTIONS(3889), - [anon_sym_join] = ACTIONS(3883), - [anon_sym_on] = ACTIONS(3889), - [anon_sym_equals] = ACTIONS(3889), - [anon_sym_let] = ACTIONS(3883), - [anon_sym_orderby] = ACTIONS(3883), - [anon_sym_ascending] = ACTIONS(3889), - [anon_sym_descending] = ACTIONS(3889), - [anon_sym_group] = ACTIONS(3883), - [anon_sym_by] = ACTIONS(3889), - [anon_sym_select] = ACTIONS(3883), - [anon_sym_as] = ACTIONS(3883), - [anon_sym_is] = ACTIONS(3883), - [anon_sym_DASH_GT] = ACTIONS(3879), - [anon_sym_with] = ACTIONS(3883), + [sym__identifier_token] = ACTIONS(3855), + [anon_sym_alias] = ACTIONS(3857), + [anon_sym_global] = ACTIONS(3857), + [anon_sym_LBRACK] = ACTIONS(3869), + [anon_sym_LPAREN] = ACTIONS(3869), + [anon_sym_LBRACE] = ACTIONS(3861), + [anon_sym_file] = ACTIONS(3857), + [anon_sym_LT] = ACTIONS(3867), + [anon_sym_GT] = ACTIONS(3867), + [anon_sym_where] = ACTIONS(3857), + [anon_sym_QMARK] = ACTIONS(3867), + [anon_sym_notnull] = ACTIONS(3857), + [anon_sym_unmanaged] = ACTIONS(3857), + [anon_sym_BANG] = ACTIONS(3867), + [anon_sym_PLUS_PLUS] = ACTIONS(3869), + [anon_sym_DASH_DASH] = ACTIONS(3869), + [anon_sym_PLUS] = ACTIONS(3867), + [anon_sym_DASH] = ACTIONS(3867), + [anon_sym_STAR] = ACTIONS(3869), + [anon_sym_SLASH] = ACTIONS(3867), + [anon_sym_PERCENT] = ACTIONS(3869), + [anon_sym_CARET] = ACTIONS(3869), + [anon_sym_PIPE] = ACTIONS(3867), + [anon_sym_AMP] = ACTIONS(3867), + [anon_sym_LT_LT] = ACTIONS(3869), + [anon_sym_GT_GT] = ACTIONS(3867), + [anon_sym_GT_GT_GT] = ACTIONS(3869), + [anon_sym_EQ_EQ] = ACTIONS(3869), + [anon_sym_BANG_EQ] = ACTIONS(3869), + [anon_sym_GT_EQ] = ACTIONS(3869), + [anon_sym_LT_EQ] = ACTIONS(3869), + [anon_sym_DOT] = ACTIONS(3867), + [anon_sym_scoped] = ACTIONS(3857), + [anon_sym_var] = ACTIONS(3857), + [anon_sym_yield] = ACTIONS(3857), + [anon_sym_switch] = ACTIONS(3867), + [anon_sym_when] = ACTIONS(3857), + [sym_discard] = ACTIONS(3877), + [anon_sym_DOT_DOT] = ACTIONS(3869), + [anon_sym_and] = ACTIONS(3867), + [anon_sym_or] = ACTIONS(3867), + [anon_sym_AMP_AMP] = ACTIONS(3869), + [anon_sym_PIPE_PIPE] = ACTIONS(3869), + [anon_sym_QMARK_QMARK] = ACTIONS(3869), + [anon_sym_from] = ACTIONS(3857), + [anon_sym_into] = ACTIONS(3857), + [anon_sym_join] = ACTIONS(3857), + [anon_sym_on] = ACTIONS(3867), + [anon_sym_equals] = ACTIONS(3857), + [anon_sym_let] = ACTIONS(3857), + [anon_sym_orderby] = ACTIONS(3857), + [anon_sym_ascending] = ACTIONS(3857), + [anon_sym_descending] = ACTIONS(3857), + [anon_sym_group] = ACTIONS(3857), + [anon_sym_by] = ACTIONS(3857), + [anon_sym_select] = ACTIONS(3857), + [anon_sym_as] = ACTIONS(3867), + [anon_sym_is] = ACTIONS(3867), + [anon_sym_DASH_GT] = ACTIONS(3869), + [anon_sym_with] = ACTIONS(3867), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -429252,14 +428906,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2509] = { - [sym_parameter_list] = STATE(7311), - [sym_positional_pattern_clause] = STATE(2572), - [sym_property_pattern_clause] = STATE(2695), - [sym__variable_designation] = STATE(3492), - [sym_parenthesized_variable_designation] = STATE(3463), - [sym__lambda_parameters] = STATE(7536), - [sym_identifier] = STATE(3493), - [sym__reserved_identifier] = STATE(3177), + [sym_parameter_list] = STATE(7531), + [sym_positional_pattern_clause] = STATE(2567), + [sym_property_pattern_clause] = STATE(2790), + [sym__variable_designation] = STATE(4139), + [sym_parenthesized_variable_designation] = STATE(4116), + [sym__lambda_parameters] = STATE(7378), + [sym_identifier] = STATE(4083), + [sym__reserved_identifier] = STATE(2916), [sym_preproc_region] = STATE(2509), [sym_preproc_endregion] = STATE(2509), [sym_preproc_line] = STATE(2509), @@ -429269,66 +428923,66 @@ 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), - [sym__identifier_token] = ACTIONS(3875), - [anon_sym_alias] = ACTIONS(3877), - [anon_sym_global] = ACTIONS(3877), - [anon_sym_LBRACK] = ACTIONS(3893), - [anon_sym_LPAREN] = ACTIONS(3893), - [anon_sym_LBRACE] = ACTIONS(3881), - [anon_sym_file] = ACTIONS(3877), - [anon_sym_LT] = ACTIONS(3895), - [anon_sym_GT] = ACTIONS(3895), - [anon_sym_where] = ACTIONS(3877), - [anon_sym_QMARK] = ACTIONS(3895), - [anon_sym_notnull] = ACTIONS(3877), - [anon_sym_unmanaged] = ACTIONS(3877), - [anon_sym_BANG] = ACTIONS(3895), - [anon_sym_PLUS_PLUS] = ACTIONS(3893), - [anon_sym_DASH_DASH] = ACTIONS(3893), - [anon_sym_PLUS] = ACTIONS(3895), - [anon_sym_DASH] = ACTIONS(3895), - [anon_sym_STAR] = ACTIONS(3893), - [anon_sym_SLASH] = ACTIONS(3895), - [anon_sym_PERCENT] = ACTIONS(3893), - [anon_sym_CARET] = ACTIONS(3893), - [anon_sym_PIPE] = ACTIONS(3895), - [anon_sym_AMP] = ACTIONS(3895), - [anon_sym_LT_LT] = ACTIONS(3893), - [anon_sym_GT_GT] = ACTIONS(3895), - [anon_sym_GT_GT_GT] = ACTIONS(3893), - [anon_sym_EQ_EQ] = ACTIONS(3893), - [anon_sym_BANG_EQ] = ACTIONS(3893), - [anon_sym_GT_EQ] = ACTIONS(3893), - [anon_sym_LT_EQ] = ACTIONS(3893), - [anon_sym_DOT] = ACTIONS(3895), - [anon_sym_scoped] = ACTIONS(3877), - [anon_sym_var] = ACTIONS(3877), - [anon_sym_yield] = ACTIONS(3877), - [anon_sym_switch] = ACTIONS(3895), - [anon_sym_when] = ACTIONS(3877), - [sym_discard] = ACTIONS(3897), - [anon_sym_DOT_DOT] = ACTIONS(3893), - [anon_sym_and] = ACTIONS(3895), - [anon_sym_or] = ACTIONS(3895), - [anon_sym_AMP_AMP] = ACTIONS(3893), - [anon_sym_PIPE_PIPE] = ACTIONS(3893), - [anon_sym_QMARK_QMARK] = ACTIONS(3893), - [anon_sym_from] = ACTIONS(3877), - [anon_sym_into] = ACTIONS(3877), - [anon_sym_join] = ACTIONS(3877), - [anon_sym_on] = ACTIONS(3877), - [anon_sym_equals] = ACTIONS(3877), - [anon_sym_let] = ACTIONS(3877), - [anon_sym_orderby] = ACTIONS(3877), - [anon_sym_ascending] = ACTIONS(3877), - [anon_sym_descending] = ACTIONS(3877), - [anon_sym_group] = ACTIONS(3877), - [anon_sym_by] = ACTIONS(3895), - [anon_sym_select] = ACTIONS(3877), - [anon_sym_as] = ACTIONS(3895), - [anon_sym_is] = ACTIONS(3895), - [anon_sym_DASH_GT] = ACTIONS(3893), - [anon_sym_with] = ACTIONS(3895), + [sym__identifier_token] = ACTIONS(3871), + [anon_sym_alias] = ACTIONS(3873), + [anon_sym_global] = ACTIONS(3873), + [anon_sym_LBRACK] = ACTIONS(3869), + [anon_sym_LPAREN] = ACTIONS(3869), + [anon_sym_LBRACE] = ACTIONS(3861), + [anon_sym_file] = ACTIONS(3873), + [anon_sym_LT] = ACTIONS(3867), + [anon_sym_GT] = ACTIONS(3867), + [anon_sym_where] = ACTIONS(3867), + [anon_sym_QMARK] = ACTIONS(3867), + [anon_sym_notnull] = ACTIONS(3873), + [anon_sym_unmanaged] = ACTIONS(3873), + [anon_sym_BANG] = ACTIONS(3867), + [anon_sym_PLUS_PLUS] = ACTIONS(3869), + [anon_sym_DASH_DASH] = ACTIONS(3869), + [anon_sym_PLUS] = ACTIONS(3867), + [anon_sym_DASH] = ACTIONS(3867), + [anon_sym_STAR] = ACTIONS(3869), + [anon_sym_SLASH] = ACTIONS(3867), + [anon_sym_PERCENT] = ACTIONS(3869), + [anon_sym_CARET] = ACTIONS(3869), + [anon_sym_PIPE] = ACTIONS(3867), + [anon_sym_AMP] = ACTIONS(3867), + [anon_sym_LT_LT] = ACTIONS(3869), + [anon_sym_GT_GT] = ACTIONS(3867), + [anon_sym_GT_GT_GT] = ACTIONS(3869), + [anon_sym_EQ_EQ] = ACTIONS(3869), + [anon_sym_BANG_EQ] = ACTIONS(3869), + [anon_sym_GT_EQ] = ACTIONS(3869), + [anon_sym_LT_EQ] = ACTIONS(3869), + [anon_sym_DOT] = ACTIONS(3867), + [anon_sym_scoped] = ACTIONS(3873), + [anon_sym_var] = ACTIONS(3873), + [anon_sym_yield] = ACTIONS(3873), + [anon_sym_switch] = ACTIONS(3867), + [anon_sym_when] = ACTIONS(3873), + [sym_discard] = ACTIONS(4187), + [anon_sym_DOT_DOT] = ACTIONS(3869), + [anon_sym_and] = ACTIONS(3867), + [anon_sym_or] = ACTIONS(3867), + [anon_sym_AMP_AMP] = ACTIONS(3869), + [anon_sym_PIPE_PIPE] = ACTIONS(3869), + [anon_sym_QMARK_QMARK] = ACTIONS(3869), + [anon_sym_from] = ACTIONS(3867), + [anon_sym_into] = ACTIONS(3873), + [anon_sym_join] = ACTIONS(3867), + [anon_sym_on] = ACTIONS(3873), + [anon_sym_equals] = ACTIONS(3873), + [anon_sym_let] = ACTIONS(3867), + [anon_sym_orderby] = ACTIONS(3867), + [anon_sym_ascending] = ACTIONS(3873), + [anon_sym_descending] = ACTIONS(3873), + [anon_sym_group] = ACTIONS(3867), + [anon_sym_by] = ACTIONS(3873), + [anon_sym_select] = ACTIONS(3867), + [anon_sym_as] = ACTIONS(3867), + [anon_sym_is] = ACTIONS(3867), + [anon_sym_DASH_GT] = ACTIONS(3869), + [anon_sym_with] = ACTIONS(3867), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -429341,14 +428995,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2510] = { - [sym_parameter_list] = STATE(7311), - [sym_positional_pattern_clause] = STATE(2591), - [sym_property_pattern_clause] = STATE(2753), - [sym__variable_designation] = STATE(3492), - [sym_parenthesized_variable_designation] = STATE(3463), - [sym__lambda_parameters] = STATE(7536), - [sym_identifier] = STATE(3493), - [sym__reserved_identifier] = STATE(3177), + [sym_parameter_list] = STATE(7531), + [sym_positional_pattern_clause] = STATE(2567), + [sym_property_pattern_clause] = STATE(2790), + [sym__variable_designation] = STATE(4139), + [sym_parenthesized_variable_designation] = STATE(4116), + [sym__lambda_parameters] = STATE(7378), + [sym_identifier] = STATE(4083), + [sym__reserved_identifier] = STATE(2916), [sym_preproc_region] = STATE(2510), [sym_preproc_endregion] = STATE(2510), [sym_preproc_line] = STATE(2510), @@ -429358,66 +429012,66 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2510), [sym_preproc_define] = STATE(2510), [sym_preproc_undef] = STATE(2510), - [sym__identifier_token] = ACTIONS(3875), - [anon_sym_alias] = ACTIONS(3877), - [anon_sym_global] = ACTIONS(3877), - [anon_sym_LBRACK] = ACTIONS(3893), - [anon_sym_LPAREN] = ACTIONS(3893), - [anon_sym_LBRACE] = ACTIONS(3881), - [anon_sym_file] = ACTIONS(3877), - [anon_sym_LT] = ACTIONS(3895), - [anon_sym_GT] = ACTIONS(3895), - [anon_sym_where] = ACTIONS(3877), - [anon_sym_QMARK] = ACTIONS(3895), - [anon_sym_notnull] = ACTIONS(3877), - [anon_sym_unmanaged] = ACTIONS(3877), - [anon_sym_BANG] = ACTIONS(3895), - [anon_sym_PLUS_PLUS] = ACTIONS(3893), - [anon_sym_DASH_DASH] = ACTIONS(3893), - [anon_sym_PLUS] = ACTIONS(3895), - [anon_sym_DASH] = ACTIONS(3895), - [anon_sym_STAR] = ACTIONS(3893), - [anon_sym_SLASH] = ACTIONS(3895), - [anon_sym_PERCENT] = ACTIONS(3893), - [anon_sym_CARET] = ACTIONS(3893), - [anon_sym_PIPE] = ACTIONS(3895), - [anon_sym_AMP] = ACTIONS(3895), - [anon_sym_LT_LT] = ACTIONS(3893), - [anon_sym_GT_GT] = ACTIONS(3895), - [anon_sym_GT_GT_GT] = ACTIONS(3893), - [anon_sym_EQ_EQ] = ACTIONS(3893), - [anon_sym_BANG_EQ] = ACTIONS(3893), - [anon_sym_GT_EQ] = ACTIONS(3893), - [anon_sym_LT_EQ] = ACTIONS(3893), - [anon_sym_DOT] = ACTIONS(3895), - [anon_sym_scoped] = ACTIONS(3877), - [anon_sym_var] = ACTIONS(3877), - [anon_sym_yield] = ACTIONS(3877), - [anon_sym_switch] = ACTIONS(3895), - [anon_sym_when] = ACTIONS(3877), - [sym_discard] = ACTIONS(3897), - [anon_sym_DOT_DOT] = ACTIONS(3893), - [anon_sym_and] = ACTIONS(3883), - [anon_sym_or] = ACTIONS(3883), - [anon_sym_AMP_AMP] = ACTIONS(3893), - [anon_sym_PIPE_PIPE] = ACTIONS(3893), - [anon_sym_QMARK_QMARK] = ACTIONS(3893), - [anon_sym_from] = ACTIONS(3877), - [anon_sym_into] = ACTIONS(3877), - [anon_sym_join] = ACTIONS(3877), - [anon_sym_on] = ACTIONS(3895), - [anon_sym_equals] = ACTIONS(3877), - [anon_sym_let] = ACTIONS(3877), - [anon_sym_orderby] = ACTIONS(3877), - [anon_sym_ascending] = ACTIONS(3877), - [anon_sym_descending] = ACTIONS(3877), - [anon_sym_group] = ACTIONS(3877), - [anon_sym_by] = ACTIONS(3877), - [anon_sym_select] = ACTIONS(3877), - [anon_sym_as] = ACTIONS(3895), - [anon_sym_is] = ACTIONS(3895), - [anon_sym_DASH_GT] = ACTIONS(3893), - [anon_sym_with] = ACTIONS(3895), + [sym__identifier_token] = ACTIONS(3871), + [anon_sym_alias] = ACTIONS(3873), + [anon_sym_global] = ACTIONS(3873), + [anon_sym_LBRACK] = ACTIONS(3859), + [anon_sym_LPAREN] = ACTIONS(3859), + [anon_sym_LBRACE] = ACTIONS(3861), + [anon_sym_file] = ACTIONS(3873), + [anon_sym_LT] = ACTIONS(3863), + [anon_sym_GT] = ACTIONS(3863), + [anon_sym_where] = ACTIONS(3863), + [anon_sym_QMARK] = ACTIONS(3863), + [anon_sym_notnull] = ACTIONS(3873), + [anon_sym_unmanaged] = ACTIONS(3873), + [anon_sym_BANG] = ACTIONS(3863), + [anon_sym_PLUS_PLUS] = ACTIONS(3859), + [anon_sym_DASH_DASH] = ACTIONS(3859), + [anon_sym_PLUS] = ACTIONS(3863), + [anon_sym_DASH] = ACTIONS(3863), + [anon_sym_STAR] = ACTIONS(3859), + [anon_sym_SLASH] = ACTIONS(3863), + [anon_sym_PERCENT] = ACTIONS(3859), + [anon_sym_CARET] = ACTIONS(3859), + [anon_sym_PIPE] = ACTIONS(3863), + [anon_sym_AMP] = ACTIONS(3863), + [anon_sym_LT_LT] = ACTIONS(3859), + [anon_sym_GT_GT] = ACTIONS(3863), + [anon_sym_GT_GT_GT] = ACTIONS(3859), + [anon_sym_EQ_EQ] = ACTIONS(3859), + [anon_sym_BANG_EQ] = ACTIONS(3859), + [anon_sym_GT_EQ] = ACTIONS(3859), + [anon_sym_LT_EQ] = ACTIONS(3859), + [anon_sym_DOT] = ACTIONS(3863), + [anon_sym_scoped] = ACTIONS(3873), + [anon_sym_var] = ACTIONS(3873), + [anon_sym_yield] = ACTIONS(3873), + [anon_sym_switch] = ACTIONS(3863), + [anon_sym_when] = ACTIONS(3873), + [sym_discard] = ACTIONS(4187), + [anon_sym_DOT_DOT] = ACTIONS(3859), + [anon_sym_and] = ACTIONS(3867), + [anon_sym_or] = ACTIONS(3867), + [anon_sym_AMP_AMP] = ACTIONS(3859), + [anon_sym_PIPE_PIPE] = ACTIONS(3859), + [anon_sym_QMARK_QMARK] = ACTIONS(3859), + [anon_sym_from] = ACTIONS(3863), + [anon_sym_into] = ACTIONS(3873), + [anon_sym_join] = ACTIONS(3863), + [anon_sym_on] = ACTIONS(3873), + [anon_sym_equals] = ACTIONS(3873), + [anon_sym_let] = ACTIONS(3863), + [anon_sym_orderby] = ACTIONS(3863), + [anon_sym_ascending] = ACTIONS(3873), + [anon_sym_descending] = ACTIONS(3873), + [anon_sym_group] = ACTIONS(3863), + [anon_sym_by] = ACTIONS(3873), + [anon_sym_select] = ACTIONS(3863), + [anon_sym_as] = ACTIONS(3863), + [anon_sym_is] = ACTIONS(3863), + [anon_sym_DASH_GT] = ACTIONS(3859), + [anon_sym_with] = ACTIONS(3863), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -429430,14 +429084,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2511] = { - [sym_parameter_list] = STATE(7311), - [sym_positional_pattern_clause] = STATE(2568), - [sym_property_pattern_clause] = STATE(2793), - [sym__variable_designation] = STATE(3346), - [sym_parenthesized_variable_designation] = STATE(3340), - [sym__lambda_parameters] = STATE(7536), - [sym_identifier] = STATE(3342), - [sym__reserved_identifier] = STATE(3177), + [sym_parameter_list] = STATE(7531), + [sym_positional_pattern_clause] = STATE(2583), + [sym_property_pattern_clause] = STATE(2760), + [sym__variable_designation] = STATE(3347), + [sym_parenthesized_variable_designation] = STATE(3344), + [sym__lambda_parameters] = STATE(7378), + [sym_identifier] = STATE(3309), + [sym__reserved_identifier] = STATE(3199), [sym_preproc_region] = STATE(2511), [sym_preproc_endregion] = STATE(2511), [sym_preproc_line] = STATE(2511), @@ -429447,66 +429101,66 @@ 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(3875), - [anon_sym_alias] = ACTIONS(3877), - [anon_sym_global] = ACTIONS(3877), - [anon_sym_LBRACK] = ACTIONS(3879), - [anon_sym_LPAREN] = ACTIONS(3879), - [anon_sym_LBRACE] = ACTIONS(3881), - [anon_sym_file] = ACTIONS(3877), - [anon_sym_LT] = ACTIONS(3883), - [anon_sym_GT] = ACTIONS(3883), - [anon_sym_where] = ACTIONS(3877), - [anon_sym_QMARK] = ACTIONS(3883), - [anon_sym_notnull] = ACTIONS(3877), - [anon_sym_unmanaged] = ACTIONS(3877), - [anon_sym_BANG] = ACTIONS(3883), - [anon_sym_PLUS_PLUS] = ACTIONS(3879), - [anon_sym_DASH_DASH] = ACTIONS(3879), - [anon_sym_PLUS] = ACTIONS(3883), - [anon_sym_DASH] = ACTIONS(3883), - [anon_sym_STAR] = ACTIONS(3879), - [anon_sym_SLASH] = ACTIONS(3883), - [anon_sym_PERCENT] = ACTIONS(3879), - [anon_sym_CARET] = ACTIONS(3879), - [anon_sym_PIPE] = ACTIONS(3883), - [anon_sym_AMP] = ACTIONS(3883), - [anon_sym_LT_LT] = ACTIONS(3879), - [anon_sym_GT_GT] = ACTIONS(3883), - [anon_sym_GT_GT_GT] = ACTIONS(3879), - [anon_sym_EQ_EQ] = ACTIONS(3879), - [anon_sym_BANG_EQ] = ACTIONS(3879), - [anon_sym_GT_EQ] = ACTIONS(3879), - [anon_sym_LT_EQ] = ACTIONS(3879), - [anon_sym_DOT] = ACTIONS(3883), - [anon_sym_scoped] = ACTIONS(3877), - [anon_sym_var] = ACTIONS(3877), - [anon_sym_yield] = ACTIONS(3877), - [anon_sym_switch] = ACTIONS(3883), - [anon_sym_when] = ACTIONS(3877), - [sym_discard] = ACTIONS(3885), - [anon_sym_DOT_DOT] = ACTIONS(3879), - [anon_sym_and] = ACTIONS(3883), - [anon_sym_or] = ACTIONS(3883), - [anon_sym_AMP_AMP] = ACTIONS(3879), - [anon_sym_PIPE_PIPE] = ACTIONS(3879), - [anon_sym_QMARK_QMARK] = ACTIONS(3879), - [anon_sym_from] = ACTIONS(3877), - [anon_sym_into] = ACTIONS(3883), - [anon_sym_join] = ACTIONS(3877), - [anon_sym_on] = ACTIONS(3883), - [anon_sym_equals] = ACTIONS(3877), - [anon_sym_let] = ACTIONS(3877), - [anon_sym_orderby] = ACTIONS(3877), - [anon_sym_ascending] = ACTIONS(3877), - [anon_sym_descending] = ACTIONS(3877), - [anon_sym_group] = ACTIONS(3877), - [anon_sym_by] = ACTIONS(3877), - [anon_sym_select] = ACTIONS(3877), - [anon_sym_as] = ACTIONS(3883), - [anon_sym_is] = ACTIONS(3883), - [anon_sym_DASH_GT] = ACTIONS(3879), - [anon_sym_with] = ACTIONS(3883), + [sym__identifier_token] = ACTIONS(3855), + [anon_sym_alias] = ACTIONS(3857), + [anon_sym_global] = ACTIONS(3857), + [anon_sym_LBRACK] = ACTIONS(3859), + [anon_sym_LPAREN] = ACTIONS(3859), + [anon_sym_LBRACE] = ACTIONS(3861), + [anon_sym_file] = ACTIONS(3857), + [anon_sym_LT] = ACTIONS(3863), + [anon_sym_GT] = ACTIONS(3863), + [anon_sym_where] = ACTIONS(3857), + [anon_sym_QMARK] = ACTIONS(3863), + [anon_sym_notnull] = ACTIONS(3857), + [anon_sym_unmanaged] = ACTIONS(3857), + [anon_sym_BANG] = ACTIONS(3863), + [anon_sym_PLUS_PLUS] = ACTIONS(3859), + [anon_sym_DASH_DASH] = ACTIONS(3859), + [anon_sym_PLUS] = ACTIONS(3863), + [anon_sym_DASH] = ACTIONS(3863), + [anon_sym_STAR] = ACTIONS(3859), + [anon_sym_SLASH] = ACTIONS(3863), + [anon_sym_PERCENT] = ACTIONS(3859), + [anon_sym_CARET] = ACTIONS(3859), + [anon_sym_PIPE] = ACTIONS(3863), + [anon_sym_AMP] = ACTIONS(3863), + [anon_sym_LT_LT] = ACTIONS(3859), + [anon_sym_GT_GT] = ACTIONS(3863), + [anon_sym_GT_GT_GT] = ACTIONS(3859), + [anon_sym_EQ_EQ] = ACTIONS(3859), + [anon_sym_BANG_EQ] = ACTIONS(3859), + [anon_sym_GT_EQ] = ACTIONS(3859), + [anon_sym_LT_EQ] = ACTIONS(3859), + [anon_sym_DOT] = ACTIONS(3863), + [anon_sym_scoped] = ACTIONS(3857), + [anon_sym_var] = ACTIONS(3857), + [anon_sym_yield] = ACTIONS(3857), + [anon_sym_switch] = ACTIONS(3863), + [anon_sym_when] = ACTIONS(3857), + [sym_discard] = ACTIONS(3865), + [anon_sym_DOT_DOT] = ACTIONS(3859), + [anon_sym_and] = ACTIONS(3867), + [anon_sym_or] = ACTIONS(3867), + [anon_sym_AMP_AMP] = ACTIONS(3859), + [anon_sym_PIPE_PIPE] = ACTIONS(3859), + [anon_sym_QMARK_QMARK] = ACTIONS(3859), + [anon_sym_from] = ACTIONS(3857), + [anon_sym_into] = ACTIONS(3863), + [anon_sym_join] = ACTIONS(3857), + [anon_sym_on] = ACTIONS(3857), + [anon_sym_equals] = ACTIONS(3857), + [anon_sym_let] = ACTIONS(3857), + [anon_sym_orderby] = ACTIONS(3857), + [anon_sym_ascending] = ACTIONS(3857), + [anon_sym_descending] = ACTIONS(3857), + [anon_sym_group] = ACTIONS(3857), + [anon_sym_by] = ACTIONS(3863), + [anon_sym_select] = ACTIONS(3857), + [anon_sym_as] = ACTIONS(3863), + [anon_sym_is] = ACTIONS(3863), + [anon_sym_DASH_GT] = ACTIONS(3859), + [anon_sym_with] = ACTIONS(3863), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -429519,15 +429173,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2512] = { - [sym__name] = STATE(3087), - [sym_alias_qualified_name] = STATE(3029), - [sym__simple_name] = STATE(3029), - [sym_qualified_name] = STATE(3029), - [sym_generic_name] = STATE(2985), - [sym_ref_type] = STATE(3043), - [sym__scoped_base_type] = STATE(2963), - [sym_identifier] = STATE(2923), - [sym__reserved_identifier] = STATE(2945), + [sym_parameter_list] = STATE(7531), + [sym_positional_pattern_clause] = STATE(2568), + [sym_property_pattern_clause] = STATE(2717), + [sym__variable_designation] = STATE(4139), + [sym_parenthesized_variable_designation] = STATE(4116), + [sym__lambda_parameters] = STATE(7378), + [sym_identifier] = STATE(4083), + [sym__reserved_identifier] = STATE(2900), [sym_preproc_region] = STATE(2512), [sym_preproc_endregion] = STATE(2512), [sym_preproc_line] = STATE(2512), @@ -429537,65 +429190,66 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2512), [sym_preproc_define] = STATE(2512), [sym_preproc_undef] = STATE(2512), - [sym__identifier_token] = ACTIONS(3887), - [anon_sym_alias] = ACTIONS(3889), - [anon_sym_global] = ACTIONS(3889), - [anon_sym_LBRACK] = ACTIONS(3445), - [anon_sym_LPAREN] = ACTIONS(3445), - [anon_sym_ref] = ACTIONS(4227), - [anon_sym_LBRACE] = ACTIONS(3445), - [anon_sym_file] = ACTIONS(3889), - [anon_sym_LT] = ACTIONS(3447), - [anon_sym_GT] = ACTIONS(3447), - [anon_sym_where] = ACTIONS(3889), - [anon_sym_QMARK] = ACTIONS(3447), - [anon_sym_notnull] = ACTIONS(3889), - [anon_sym_unmanaged] = ACTIONS(3889), - [anon_sym_BANG] = ACTIONS(3447), - [anon_sym_PLUS_PLUS] = ACTIONS(3445), - [anon_sym_DASH_DASH] = ACTIONS(3445), - [anon_sym_PLUS] = ACTIONS(3447), - [anon_sym_DASH] = ACTIONS(3447), - [anon_sym_STAR] = ACTIONS(3445), - [anon_sym_SLASH] = ACTIONS(3447), - [anon_sym_PERCENT] = ACTIONS(3445), - [anon_sym_CARET] = ACTIONS(3445), - [anon_sym_PIPE] = ACTIONS(3447), - [anon_sym_AMP] = ACTIONS(3447), - [anon_sym_LT_LT] = ACTIONS(3445), - [anon_sym_GT_GT] = ACTIONS(3447), - [anon_sym_GT_GT_GT] = ACTIONS(3445), - [anon_sym_EQ_EQ] = ACTIONS(3445), - [anon_sym_BANG_EQ] = ACTIONS(3445), - [anon_sym_GT_EQ] = ACTIONS(3445), - [anon_sym_LT_EQ] = ACTIONS(3445), - [anon_sym_DOT] = ACTIONS(3447), - [anon_sym_scoped] = ACTIONS(3889), - [anon_sym_COLON_COLON] = ACTIONS(3445), - [anon_sym_var] = ACTIONS(3889), - [anon_sym_yield] = ACTIONS(3889), - [anon_sym_switch] = ACTIONS(3447), - [anon_sym_when] = ACTIONS(3889), - [anon_sym_DOT_DOT] = ACTIONS(3445), - [anon_sym_AMP_AMP] = ACTIONS(3445), - [anon_sym_PIPE_PIPE] = ACTIONS(3445), - [anon_sym_QMARK_QMARK] = ACTIONS(3445), - [anon_sym_from] = ACTIONS(3889), - [anon_sym_into] = ACTIONS(3889), - [anon_sym_join] = ACTIONS(3889), - [anon_sym_on] = ACTIONS(3889), - [anon_sym_equals] = ACTIONS(4170), - [anon_sym_let] = ACTIONS(3889), - [anon_sym_orderby] = ACTIONS(3889), - [anon_sym_ascending] = ACTIONS(3889), - [anon_sym_descending] = ACTIONS(3889), - [anon_sym_group] = ACTIONS(3889), - [anon_sym_by] = ACTIONS(3889), - [anon_sym_select] = ACTIONS(3889), - [anon_sym_as] = ACTIONS(3447), - [anon_sym_is] = ACTIONS(3447), - [anon_sym_DASH_GT] = ACTIONS(3445), - [anon_sym_with] = ACTIONS(3447), + [sym__identifier_token] = ACTIONS(3814), + [anon_sym_alias] = ACTIONS(3816), + [anon_sym_global] = ACTIONS(3816), + [anon_sym_LBRACK] = ACTIONS(3859), + [anon_sym_LPAREN] = ACTIONS(3859), + [anon_sym_LBRACE] = ACTIONS(3861), + [anon_sym_file] = ACTIONS(3816), + [anon_sym_LT] = ACTIONS(3863), + [anon_sym_GT] = ACTIONS(3863), + [anon_sym_where] = ACTIONS(3863), + [anon_sym_QMARK] = ACTIONS(3863), + [anon_sym_notnull] = ACTIONS(3816), + [anon_sym_unmanaged] = ACTIONS(3816), + [anon_sym_BANG] = ACTIONS(3863), + [anon_sym_PLUS_PLUS] = ACTIONS(3859), + [anon_sym_DASH_DASH] = ACTIONS(3859), + [anon_sym_PLUS] = ACTIONS(3863), + [anon_sym_DASH] = ACTIONS(3863), + [anon_sym_STAR] = ACTIONS(3859), + [anon_sym_SLASH] = ACTIONS(3863), + [anon_sym_PERCENT] = ACTIONS(3859), + [anon_sym_CARET] = ACTIONS(3859), + [anon_sym_PIPE] = ACTIONS(3863), + [anon_sym_AMP] = ACTIONS(3863), + [anon_sym_LT_LT] = ACTIONS(3859), + [anon_sym_GT_GT] = ACTIONS(3863), + [anon_sym_GT_GT_GT] = ACTIONS(3859), + [anon_sym_EQ_EQ] = ACTIONS(3859), + [anon_sym_BANG_EQ] = ACTIONS(3859), + [anon_sym_GT_EQ] = ACTIONS(3859), + [anon_sym_LT_EQ] = ACTIONS(3859), + [anon_sym_DOT] = ACTIONS(3863), + [anon_sym_scoped] = ACTIONS(3816), + [anon_sym_var] = ACTIONS(3816), + [anon_sym_yield] = ACTIONS(3816), + [anon_sym_switch] = ACTIONS(3863), + [anon_sym_when] = ACTIONS(3816), + [sym_discard] = ACTIONS(4187), + [anon_sym_DOT_DOT] = ACTIONS(3859), + [anon_sym_and] = ACTIONS(3867), + [anon_sym_or] = ACTIONS(3867), + [anon_sym_AMP_AMP] = ACTIONS(3859), + [anon_sym_PIPE_PIPE] = ACTIONS(3859), + [anon_sym_QMARK_QMARK] = ACTIONS(3859), + [anon_sym_from] = ACTIONS(3863), + [anon_sym_into] = ACTIONS(3863), + [anon_sym_join] = ACTIONS(3863), + [anon_sym_on] = ACTIONS(3816), + [anon_sym_equals] = ACTIONS(3816), + [anon_sym_let] = ACTIONS(3863), + [anon_sym_orderby] = ACTIONS(3863), + [anon_sym_ascending] = ACTIONS(3816), + [anon_sym_descending] = ACTIONS(3816), + [anon_sym_group] = ACTIONS(3863), + [anon_sym_by] = ACTIONS(3816), + [anon_sym_select] = ACTIONS(3863), + [anon_sym_as] = ACTIONS(3863), + [anon_sym_is] = ACTIONS(3863), + [anon_sym_DASH_GT] = ACTIONS(3859), + [anon_sym_with] = ACTIONS(3863), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -429608,14 +429262,26 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2513] = { - [sym_parameter_list] = STATE(7311), - [sym_positional_pattern_clause] = STATE(2591), - [sym_property_pattern_clause] = STATE(2753), - [sym__variable_designation] = STATE(3492), - [sym_parenthesized_variable_designation] = STATE(3463), - [sym__lambda_parameters] = STATE(7536), - [sym_identifier] = STATE(3493), - [sym__reserved_identifier] = STATE(3177), + [sym_modifier] = STATE(3845), + [sym_variable_declaration] = STATE(7398), + [sym__name] = STATE(5887), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(4068), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(4073), + [sym_type] = STATE(5903), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_identifier] = STATE(5732), + [sym__reserved_identifier] = STATE(3654), [sym_preproc_region] = STATE(2513), [sym_preproc_endregion] = STATE(2513), [sym_preproc_line] = STATE(2513), @@ -429625,66 +429291,54 @@ 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(3875), - [anon_sym_alias] = ACTIONS(3877), - [anon_sym_global] = ACTIONS(3877), - [anon_sym_LBRACK] = ACTIONS(3879), - [anon_sym_LPAREN] = ACTIONS(3879), - [anon_sym_LBRACE] = ACTIONS(3881), - [anon_sym_file] = ACTIONS(3877), - [anon_sym_LT] = ACTIONS(3883), - [anon_sym_GT] = ACTIONS(3883), - [anon_sym_where] = ACTIONS(3877), - [anon_sym_QMARK] = ACTIONS(3883), - [anon_sym_notnull] = ACTIONS(3877), - [anon_sym_unmanaged] = ACTIONS(3877), - [anon_sym_BANG] = ACTIONS(3883), - [anon_sym_PLUS_PLUS] = ACTIONS(3879), - [anon_sym_DASH_DASH] = ACTIONS(3879), - [anon_sym_PLUS] = ACTIONS(3883), - [anon_sym_DASH] = ACTIONS(3883), - [anon_sym_STAR] = ACTIONS(3879), - [anon_sym_SLASH] = ACTIONS(3883), - [anon_sym_PERCENT] = ACTIONS(3879), - [anon_sym_CARET] = ACTIONS(3879), - [anon_sym_PIPE] = ACTIONS(3883), - [anon_sym_AMP] = ACTIONS(3883), - [anon_sym_LT_LT] = ACTIONS(3879), - [anon_sym_GT_GT] = ACTIONS(3883), - [anon_sym_GT_GT_GT] = ACTIONS(3879), - [anon_sym_EQ_EQ] = ACTIONS(3879), - [anon_sym_BANG_EQ] = ACTIONS(3879), - [anon_sym_GT_EQ] = ACTIONS(3879), - [anon_sym_LT_EQ] = ACTIONS(3879), - [anon_sym_DOT] = ACTIONS(3883), - [anon_sym_scoped] = ACTIONS(3877), - [anon_sym_var] = ACTIONS(3877), - [anon_sym_yield] = ACTIONS(3877), - [anon_sym_switch] = ACTIONS(3883), - [anon_sym_when] = ACTIONS(3877), - [sym_discard] = ACTIONS(3897), - [anon_sym_DOT_DOT] = ACTIONS(3879), - [anon_sym_and] = ACTIONS(3883), - [anon_sym_or] = ACTIONS(3883), - [anon_sym_AMP_AMP] = ACTIONS(3879), - [anon_sym_PIPE_PIPE] = ACTIONS(3879), - [anon_sym_QMARK_QMARK] = ACTIONS(3879), - [anon_sym_from] = ACTIONS(3877), - [anon_sym_into] = ACTIONS(3877), - [anon_sym_join] = ACTIONS(3877), - [anon_sym_on] = ACTIONS(3883), - [anon_sym_equals] = ACTIONS(3877), - [anon_sym_let] = ACTIONS(3877), - [anon_sym_orderby] = ACTIONS(3877), - [anon_sym_ascending] = ACTIONS(3877), - [anon_sym_descending] = ACTIONS(3877), - [anon_sym_group] = ACTIONS(3877), - [anon_sym_by] = ACTIONS(3877), - [anon_sym_select] = ACTIONS(3877), - [anon_sym_as] = ACTIONS(3883), - [anon_sym_is] = ACTIONS(3883), - [anon_sym_DASH_GT] = ACTIONS(3879), - [anon_sym_with] = ACTIONS(3883), + [aux_sym_using_directive_repeat1] = STATE(5731), + [aux_sym__class_declaration_initializer_repeat2] = STATE(2522), + [sym__identifier_token] = ACTIONS(2965), + [anon_sym_extern] = ACTIONS(645), + [anon_sym_alias] = ACTIONS(2969), + [anon_sym_global] = ACTIONS(2969), + [anon_sym_unsafe] = ACTIONS(4205), + [anon_sym_static] = ACTIONS(4191), + [anon_sym_LPAREN] = ACTIONS(4207), + [anon_sym_ref] = ACTIONS(3436), + [anon_sym_delegate] = ACTIONS(3438), + [anon_sym_abstract] = ACTIONS(645), + [anon_sym_async] = ACTIONS(645), + [anon_sym_const] = ACTIONS(645), + [anon_sym_file] = ACTIONS(3905), + [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(2969), + [anon_sym_notnull] = ACTIONS(2969), + [anon_sym_unmanaged] = ACTIONS(2969), + [anon_sym_scoped] = ACTIONS(2993), + [anon_sym_var] = ACTIONS(2995), + [sym_predefined_type] = ACTIONS(2997), + [anon_sym_yield] = ACTIONS(2969), + [anon_sym_when] = ACTIONS(2969), + [anon_sym_from] = ACTIONS(2969), + [anon_sym_into] = ACTIONS(2969), + [anon_sym_join] = ACTIONS(2969), + [anon_sym_on] = ACTIONS(2969), + [anon_sym_equals] = ACTIONS(2969), + [anon_sym_let] = ACTIONS(2969), + [anon_sym_orderby] = ACTIONS(2969), + [anon_sym_ascending] = ACTIONS(2969), + [anon_sym_descending] = ACTIONS(2969), + [anon_sym_group] = ACTIONS(2969), + [anon_sym_by] = ACTIONS(2969), + [anon_sym_select] = ACTIONS(2969), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -429697,15 +429351,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2514] = { - [sym__name] = STATE(3522), - [sym_alias_qualified_name] = STATE(2921), - [sym__simple_name] = STATE(2921), - [sym_qualified_name] = STATE(2921), - [sym_generic_name] = STATE(2929), - [sym_ref_type] = STATE(2922), - [sym__scoped_base_type] = STATE(2924), - [sym_identifier] = STATE(3260), - [sym__reserved_identifier] = STATE(2904), + [sym_parameter_list] = STATE(7531), + [sym_positional_pattern_clause] = STATE(2590), + [sym_property_pattern_clause] = STATE(2795), + [sym__variable_designation] = STATE(3347), + [sym_parenthesized_variable_designation] = STATE(3344), + [sym__lambda_parameters] = STATE(7378), + [sym_identifier] = STATE(3309), + [sym__reserved_identifier] = STATE(3199), [sym_preproc_region] = STATE(2514), [sym_preproc_endregion] = STATE(2514), [sym_preproc_line] = STATE(2514), @@ -429715,65 +429368,66 @@ 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(3861), - [anon_sym_alias] = ACTIONS(3863), - [anon_sym_global] = ACTIONS(3863), - [anon_sym_LBRACK] = ACTIONS(3445), - [anon_sym_LPAREN] = ACTIONS(3445), - [anon_sym_ref] = ACTIONS(4229), - [anon_sym_LBRACE] = ACTIONS(3445), - [anon_sym_file] = ACTIONS(3863), - [anon_sym_LT] = ACTIONS(3447), - [anon_sym_GT] = ACTIONS(3447), - [anon_sym_where] = ACTIONS(3863), - [anon_sym_QMARK] = ACTIONS(3447), - [anon_sym_notnull] = ACTIONS(3863), - [anon_sym_unmanaged] = ACTIONS(3863), - [anon_sym_BANG] = ACTIONS(3447), - [anon_sym_PLUS_PLUS] = ACTIONS(3445), - [anon_sym_DASH_DASH] = ACTIONS(3445), - [anon_sym_PLUS] = ACTIONS(3447), - [anon_sym_DASH] = ACTIONS(3447), - [anon_sym_STAR] = ACTIONS(3445), - [anon_sym_SLASH] = ACTIONS(3447), - [anon_sym_PERCENT] = ACTIONS(3445), - [anon_sym_CARET] = ACTIONS(3445), - [anon_sym_PIPE] = ACTIONS(3447), - [anon_sym_AMP] = ACTIONS(3447), - [anon_sym_LT_LT] = ACTIONS(3445), - [anon_sym_GT_GT] = ACTIONS(3447), - [anon_sym_GT_GT_GT] = ACTIONS(3445), - [anon_sym_EQ_EQ] = ACTIONS(3445), - [anon_sym_BANG_EQ] = ACTIONS(3445), - [anon_sym_GT_EQ] = ACTIONS(3445), - [anon_sym_LT_EQ] = ACTIONS(3445), - [anon_sym_DOT] = ACTIONS(3447), - [anon_sym_scoped] = ACTIONS(3863), - [anon_sym_COLON_COLON] = ACTIONS(3445), - [anon_sym_var] = ACTIONS(3863), - [anon_sym_yield] = ACTIONS(3863), - [anon_sym_switch] = ACTIONS(3447), - [anon_sym_when] = ACTIONS(3863), - [anon_sym_DOT_DOT] = ACTIONS(3445), - [anon_sym_AMP_AMP] = ACTIONS(3445), - [anon_sym_PIPE_PIPE] = ACTIONS(3445), - [anon_sym_QMARK_QMARK] = ACTIONS(3445), - [anon_sym_from] = ACTIONS(3863), - [anon_sym_into] = ACTIONS(3867), - [anon_sym_join] = ACTIONS(3863), + [sym__identifier_token] = ACTIONS(3855), + [anon_sym_alias] = ACTIONS(3857), + [anon_sym_global] = ACTIONS(3857), + [anon_sym_LBRACK] = ACTIONS(3859), + [anon_sym_LPAREN] = ACTIONS(3859), + [anon_sym_LBRACE] = ACTIONS(3861), + [anon_sym_file] = ACTIONS(3857), + [anon_sym_LT] = ACTIONS(3863), + [anon_sym_GT] = ACTIONS(3863), + [anon_sym_where] = ACTIONS(3857), + [anon_sym_QMARK] = ACTIONS(3863), + [anon_sym_notnull] = ACTIONS(3857), + [anon_sym_unmanaged] = ACTIONS(3857), + [anon_sym_BANG] = ACTIONS(3863), + [anon_sym_PLUS_PLUS] = ACTIONS(3859), + [anon_sym_DASH_DASH] = ACTIONS(3859), + [anon_sym_PLUS] = ACTIONS(3863), + [anon_sym_DASH] = ACTIONS(3863), + [anon_sym_STAR] = ACTIONS(3859), + [anon_sym_SLASH] = ACTIONS(3863), + [anon_sym_PERCENT] = ACTIONS(3859), + [anon_sym_CARET] = ACTIONS(3859), + [anon_sym_PIPE] = ACTIONS(3863), + [anon_sym_AMP] = ACTIONS(3863), + [anon_sym_LT_LT] = ACTIONS(3859), + [anon_sym_GT_GT] = ACTIONS(3863), + [anon_sym_GT_GT_GT] = ACTIONS(3859), + [anon_sym_EQ_EQ] = ACTIONS(3859), + [anon_sym_BANG_EQ] = ACTIONS(3859), + [anon_sym_GT_EQ] = ACTIONS(3859), + [anon_sym_LT_EQ] = ACTIONS(3859), + [anon_sym_DOT] = ACTIONS(3863), + [anon_sym_scoped] = ACTIONS(3857), + [anon_sym_var] = ACTIONS(3857), + [anon_sym_yield] = ACTIONS(3857), + [anon_sym_switch] = ACTIONS(3863), + [anon_sym_when] = ACTIONS(3857), + [sym_discard] = ACTIONS(3865), + [anon_sym_DOT_DOT] = ACTIONS(3859), + [anon_sym_and] = ACTIONS(3867), + [anon_sym_or] = ACTIONS(3867), + [anon_sym_AMP_AMP] = ACTIONS(3859), + [anon_sym_PIPE_PIPE] = ACTIONS(3859), + [anon_sym_QMARK_QMARK] = ACTIONS(3859), + [anon_sym_from] = ACTIONS(3857), + [anon_sym_into] = ACTIONS(3863), + [anon_sym_join] = ACTIONS(3857), [anon_sym_on] = ACTIONS(3863), - [anon_sym_equals] = ACTIONS(3867), - [anon_sym_let] = ACTIONS(3863), - [anon_sym_orderby] = ACTIONS(3863), - [anon_sym_ascending] = ACTIONS(3863), - [anon_sym_descending] = ACTIONS(3863), - [anon_sym_group] = ACTIONS(3863), - [anon_sym_by] = ACTIONS(3863), - [anon_sym_select] = ACTIONS(3863), - [anon_sym_as] = ACTIONS(3447), - [anon_sym_is] = ACTIONS(3447), - [anon_sym_DASH_GT] = ACTIONS(3445), - [anon_sym_with] = ACTIONS(3447), + [anon_sym_equals] = ACTIONS(3857), + [anon_sym_let] = ACTIONS(3857), + [anon_sym_orderby] = ACTIONS(3857), + [anon_sym_ascending] = ACTIONS(3857), + [anon_sym_descending] = ACTIONS(3857), + [anon_sym_group] = ACTIONS(3857), + [anon_sym_by] = ACTIONS(3857), + [anon_sym_select] = ACTIONS(3857), + [anon_sym_as] = ACTIONS(3863), + [anon_sym_is] = ACTIONS(3863), + [anon_sym_DASH_GT] = ACTIONS(3859), + [anon_sym_with] = ACTIONS(3863), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -429786,14 +429440,26 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2515] = { - [sym_parameter_list] = STATE(7311), - [sym_positional_pattern_clause] = STATE(2579), - [sym_property_pattern_clause] = STATE(2775), - [sym__variable_designation] = STATE(3346), - [sym_parenthesized_variable_designation] = STATE(3340), - [sym__lambda_parameters] = STATE(7536), - [sym_identifier] = STATE(3342), - [sym__reserved_identifier] = STATE(3177), + [sym_modifier] = STATE(3845), + [sym_variable_declaration] = STATE(7308), + [sym__name] = STATE(4369), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(4068), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(4073), + [sym_type] = STATE(5911), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_identifier] = STATE(4081), + [sym__reserved_identifier] = STATE(3654), [sym_preproc_region] = STATE(2515), [sym_preproc_endregion] = STATE(2515), [sym_preproc_line] = STATE(2515), @@ -429803,66 +429469,53 @@ 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(3875), - [anon_sym_alias] = ACTIONS(3877), - [anon_sym_global] = ACTIONS(3877), - [anon_sym_LBRACK] = ACTIONS(3893), - [anon_sym_LPAREN] = ACTIONS(3893), - [anon_sym_LBRACE] = ACTIONS(3881), - [anon_sym_file] = ACTIONS(3877), - [anon_sym_LT] = ACTIONS(3895), - [anon_sym_GT] = ACTIONS(3895), - [anon_sym_where] = ACTIONS(3877), - [anon_sym_QMARK] = ACTIONS(3895), - [anon_sym_notnull] = ACTIONS(3877), - [anon_sym_unmanaged] = ACTIONS(3877), - [anon_sym_BANG] = ACTIONS(3895), - [anon_sym_PLUS_PLUS] = ACTIONS(3893), - [anon_sym_DASH_DASH] = ACTIONS(3893), - [anon_sym_PLUS] = ACTIONS(3895), - [anon_sym_DASH] = ACTIONS(3895), - [anon_sym_STAR] = ACTIONS(3893), - [anon_sym_SLASH] = ACTIONS(3895), - [anon_sym_PERCENT] = ACTIONS(3893), - [anon_sym_CARET] = ACTIONS(3893), - [anon_sym_PIPE] = ACTIONS(3895), - [anon_sym_AMP] = ACTIONS(3895), - [anon_sym_LT_LT] = ACTIONS(3893), - [anon_sym_GT_GT] = ACTIONS(3895), - [anon_sym_GT_GT_GT] = ACTIONS(3893), - [anon_sym_EQ_EQ] = ACTIONS(3893), - [anon_sym_BANG_EQ] = ACTIONS(3893), - [anon_sym_GT_EQ] = ACTIONS(3893), - [anon_sym_LT_EQ] = ACTIONS(3893), - [anon_sym_DOT] = ACTIONS(3895), - [anon_sym_scoped] = ACTIONS(3877), - [anon_sym_var] = ACTIONS(3877), - [anon_sym_yield] = ACTIONS(3877), - [anon_sym_switch] = ACTIONS(3895), - [anon_sym_when] = ACTIONS(3877), - [sym_discard] = ACTIONS(3885), - [anon_sym_DOT_DOT] = ACTIONS(3893), - [anon_sym_and] = ACTIONS(3883), - [anon_sym_or] = ACTIONS(3883), - [anon_sym_AMP_AMP] = ACTIONS(3893), - [anon_sym_PIPE_PIPE] = ACTIONS(3893), - [anon_sym_QMARK_QMARK] = ACTIONS(3893), - [anon_sym_from] = ACTIONS(3877), - [anon_sym_into] = ACTIONS(3895), - [anon_sym_join] = ACTIONS(3877), - [anon_sym_on] = ACTIONS(3877), - [anon_sym_equals] = ACTIONS(3877), - [anon_sym_let] = ACTIONS(3877), - [anon_sym_orderby] = ACTIONS(3877), - [anon_sym_ascending] = ACTIONS(3877), - [anon_sym_descending] = ACTIONS(3877), - [anon_sym_group] = ACTIONS(3877), - [anon_sym_by] = ACTIONS(3895), - [anon_sym_select] = ACTIONS(3877), - [anon_sym_as] = ACTIONS(3895), - [anon_sym_is] = ACTIONS(3895), - [anon_sym_DASH_GT] = ACTIONS(3893), - [anon_sym_with] = ACTIONS(3895), + [aux_sym__class_declaration_initializer_repeat2] = STATE(3585), + [sym__identifier_token] = ACTIONS(2965), + [anon_sym_extern] = ACTIONS(645), + [anon_sym_alias] = ACTIONS(2969), + [anon_sym_global] = ACTIONS(2969), + [anon_sym_unsafe] = ACTIONS(645), + [anon_sym_static] = ACTIONS(645), + [anon_sym_LPAREN] = ACTIONS(2977), + [anon_sym_ref] = ACTIONS(3436), + [anon_sym_delegate] = ACTIONS(3438), + [anon_sym_abstract] = ACTIONS(645), + [anon_sym_async] = ACTIONS(645), + [anon_sym_const] = ACTIONS(645), + [anon_sym_file] = ACTIONS(3905), + [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(2969), + [anon_sym_notnull] = ACTIONS(2969), + [anon_sym_unmanaged] = ACTIONS(2969), + [anon_sym_scoped] = ACTIONS(2993), + [anon_sym_var] = ACTIONS(2995), + [sym_predefined_type] = ACTIONS(2997), + [anon_sym_yield] = ACTIONS(2969), + [anon_sym_when] = ACTIONS(2969), + [anon_sym_from] = ACTIONS(2969), + [anon_sym_into] = ACTIONS(2969), + [anon_sym_join] = ACTIONS(2969), + [anon_sym_on] = ACTIONS(2969), + [anon_sym_equals] = ACTIONS(2969), + [anon_sym_let] = ACTIONS(2969), + [anon_sym_orderby] = ACTIONS(2969), + [anon_sym_ascending] = ACTIONS(2969), + [anon_sym_descending] = ACTIONS(2969), + [anon_sym_group] = ACTIONS(2969), + [anon_sym_by] = ACTIONS(2969), + [anon_sym_select] = ACTIONS(2969), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -429875,14 +429528,25 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2516] = { - [sym_parameter_list] = STATE(7311), - [sym_positional_pattern_clause] = STATE(2579), - [sym_property_pattern_clause] = STATE(2775), - [sym__variable_designation] = STATE(3346), - [sym_parenthesized_variable_designation] = STATE(3340), - [sym__lambda_parameters] = STATE(7536), - [sym_identifier] = STATE(3342), - [sym__reserved_identifier] = STATE(3177), + [sym_argument_list] = STATE(2922), + [sym__name] = STATE(3086), + [sym_alias_qualified_name] = STATE(2976), + [sym__simple_name] = STATE(2976), + [sym_qualified_name] = STATE(2976), + [sym_generic_name] = STATE(3030), + [sym_type] = STATE(3472), + [sym_implicit_type] = STATE(2977), + [sym_array_type] = STATE(4278), + [sym__array_base_type] = STATE(7236), + [sym_nullable_type] = STATE(2979), + [sym_pointer_type] = STATE(2979), + [sym__pointer_base_type] = STATE(7622), + [sym_function_pointer_type] = STATE(2979), + [sym_ref_type] = STATE(2977), + [sym_scoped_type] = STATE(2977), + [sym_tuple_type] = STATE(2980), + [sym_identifier] = STATE(2927), + [sym__reserved_identifier] = STATE(2916), [sym_preproc_region] = STATE(2516), [sym_preproc_endregion] = STATE(2516), [sym_preproc_line] = STATE(2516), @@ -429892,66 +429556,54 @@ 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(3875), - [anon_sym_alias] = ACTIONS(3877), - [anon_sym_global] = ACTIONS(3877), - [anon_sym_LBRACK] = ACTIONS(3893), - [anon_sym_LPAREN] = ACTIONS(3893), - [anon_sym_LBRACE] = ACTIONS(3881), - [anon_sym_file] = ACTIONS(3877), - [anon_sym_LT] = ACTIONS(3895), - [anon_sym_GT] = ACTIONS(3895), - [anon_sym_where] = ACTIONS(3877), - [anon_sym_QMARK] = ACTIONS(3895), - [anon_sym_notnull] = ACTIONS(3877), - [anon_sym_unmanaged] = ACTIONS(3877), - [anon_sym_BANG] = ACTIONS(3895), - [anon_sym_PLUS_PLUS] = ACTIONS(3893), - [anon_sym_DASH_DASH] = ACTIONS(3893), - [anon_sym_PLUS] = ACTIONS(3895), - [anon_sym_DASH] = ACTIONS(3895), - [anon_sym_STAR] = ACTIONS(3893), - [anon_sym_SLASH] = ACTIONS(3895), - [anon_sym_PERCENT] = ACTIONS(3893), - [anon_sym_CARET] = ACTIONS(3893), - [anon_sym_PIPE] = ACTIONS(3895), - [anon_sym_AMP] = ACTIONS(3895), - [anon_sym_LT_LT] = ACTIONS(3893), - [anon_sym_GT_GT] = ACTIONS(3895), - [anon_sym_GT_GT_GT] = ACTIONS(3893), - [anon_sym_EQ_EQ] = ACTIONS(3893), - [anon_sym_BANG_EQ] = ACTIONS(3893), - [anon_sym_GT_EQ] = ACTIONS(3893), - [anon_sym_LT_EQ] = ACTIONS(3893), - [anon_sym_DOT] = ACTIONS(3895), - [anon_sym_scoped] = ACTIONS(3877), - [anon_sym_var] = ACTIONS(3877), - [anon_sym_yield] = ACTIONS(3877), - [anon_sym_switch] = ACTIONS(3895), - [anon_sym_when] = ACTIONS(3877), - [sym_discard] = ACTIONS(3885), - [anon_sym_DOT_DOT] = ACTIONS(3893), - [anon_sym_and] = ACTIONS(3895), - [anon_sym_or] = ACTIONS(3895), - [anon_sym_AMP_AMP] = ACTIONS(3893), - [anon_sym_PIPE_PIPE] = ACTIONS(3893), - [anon_sym_QMARK_QMARK] = ACTIONS(3893), - [anon_sym_from] = ACTIONS(3877), - [anon_sym_into] = ACTIONS(3895), - [anon_sym_join] = ACTIONS(3877), - [anon_sym_on] = ACTIONS(3877), - [anon_sym_equals] = ACTIONS(3877), - [anon_sym_let] = ACTIONS(3877), - [anon_sym_orderby] = ACTIONS(3877), - [anon_sym_ascending] = ACTIONS(3877), - [anon_sym_descending] = ACTIONS(3877), - [anon_sym_group] = ACTIONS(3877), - [anon_sym_by] = ACTIONS(3895), - [anon_sym_select] = ACTIONS(3877), - [anon_sym_as] = ACTIONS(3895), - [anon_sym_is] = ACTIONS(3895), - [anon_sym_DASH_GT] = ACTIONS(3893), - [anon_sym_with] = ACTIONS(3895), + [sym__identifier_token] = ACTIONS(3871), + [anon_sym_extern] = ACTIONS(3466), + [anon_sym_alias] = ACTIONS(3873), + [anon_sym_global] = ACTIONS(3873), + [anon_sym_unsafe] = ACTIONS(3466), + [anon_sym_static] = ACTIONS(3466), + [anon_sym_LBRACK] = ACTIONS(4009), + [anon_sym_LPAREN] = ACTIONS(4011), + [anon_sym_ref] = ACTIONS(3875), + [anon_sym_LBRACE] = ACTIONS(4013), + [anon_sym_delegate] = ACTIONS(4015), + [anon_sym_abstract] = ACTIONS(3466), + [anon_sym_async] = ACTIONS(3466), + [anon_sym_const] = ACTIONS(3466), + [anon_sym_file] = ACTIONS(3873), + [anon_sym_fixed] = ACTIONS(3466), + [anon_sym_internal] = ACTIONS(3466), + [anon_sym_new] = ACTIONS(3466), + [anon_sym_override] = ACTIONS(3466), + [anon_sym_partial] = ACTIONS(3466), + [anon_sym_private] = ACTIONS(3466), + [anon_sym_protected] = ACTIONS(3466), + [anon_sym_public] = ACTIONS(3466), + [anon_sym_readonly] = ACTIONS(3466), + [anon_sym_required] = ACTIONS(3466), + [anon_sym_sealed] = ACTIONS(3466), + [anon_sym_virtual] = ACTIONS(3466), + [anon_sym_volatile] = ACTIONS(3466), + [anon_sym_where] = ACTIONS(3873), + [anon_sym_notnull] = ACTIONS(3873), + [anon_sym_unmanaged] = ACTIONS(3873), + [anon_sym_scoped] = ACTIONS(4017), + [anon_sym_var] = ACTIONS(4019), + [sym_predefined_type] = ACTIONS(4021), + [anon_sym_yield] = ACTIONS(3873), + [anon_sym_when] = ACTIONS(3873), + [anon_sym_from] = ACTIONS(3873), + [anon_sym_into] = ACTIONS(3873), + [anon_sym_join] = ACTIONS(3873), + [anon_sym_on] = ACTIONS(3873), + [anon_sym_equals] = ACTIONS(3873), + [anon_sym_let] = ACTIONS(3873), + [anon_sym_orderby] = ACTIONS(3873), + [anon_sym_ascending] = ACTIONS(3873), + [anon_sym_descending] = ACTIONS(3873), + [anon_sym_group] = ACTIONS(3873), + [anon_sym_by] = ACTIONS(3873), + [anon_sym_select] = ACTIONS(3873), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -429964,15 +429616,26 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2517] = { - [sym__name] = STATE(3522), - [sym_alias_qualified_name] = STATE(2921), - [sym__simple_name] = STATE(2921), - [sym_qualified_name] = STATE(2921), - [sym_generic_name] = STATE(2929), - [sym_ref_type] = STATE(2922), - [sym__scoped_base_type] = STATE(2924), - [sym_identifier] = STATE(3260), - [sym__reserved_identifier] = STATE(2904), + [sym_modifier] = STATE(3845), + [sym_variable_declaration] = STATE(7334), + [sym__name] = STATE(4369), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(4068), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(4073), + [sym_type] = STATE(5903), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_identifier] = STATE(4081), + [sym__reserved_identifier] = STATE(3654), [sym_preproc_region] = STATE(2517), [sym_preproc_endregion] = STATE(2517), [sym_preproc_line] = STATE(2517), @@ -429982,65 +429645,53 @@ 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(3861), - [anon_sym_alias] = ACTIONS(3863), - [anon_sym_global] = ACTIONS(3863), - [anon_sym_LBRACK] = ACTIONS(3445), - [anon_sym_LPAREN] = ACTIONS(3445), - [anon_sym_ref] = ACTIONS(4231), - [anon_sym_LBRACE] = ACTIONS(3445), - [anon_sym_file] = ACTIONS(3863), - [anon_sym_LT] = ACTIONS(3447), - [anon_sym_GT] = ACTIONS(3447), - [anon_sym_where] = ACTIONS(3863), - [anon_sym_QMARK] = ACTIONS(3447), - [anon_sym_notnull] = ACTIONS(3863), - [anon_sym_unmanaged] = ACTIONS(3863), - [anon_sym_BANG] = ACTIONS(3447), - [anon_sym_PLUS_PLUS] = ACTIONS(3445), - [anon_sym_DASH_DASH] = ACTIONS(3445), - [anon_sym_PLUS] = ACTIONS(3447), - [anon_sym_DASH] = ACTIONS(3447), - [anon_sym_STAR] = ACTIONS(3445), - [anon_sym_SLASH] = ACTIONS(3447), - [anon_sym_PERCENT] = ACTIONS(3445), - [anon_sym_CARET] = ACTIONS(3445), - [anon_sym_PIPE] = ACTIONS(3447), - [anon_sym_AMP] = ACTIONS(3447), - [anon_sym_LT_LT] = ACTIONS(3445), - [anon_sym_GT_GT] = ACTIONS(3447), - [anon_sym_GT_GT_GT] = ACTIONS(3445), - [anon_sym_EQ_EQ] = ACTIONS(3445), - [anon_sym_BANG_EQ] = ACTIONS(3445), - [anon_sym_GT_EQ] = ACTIONS(3445), - [anon_sym_LT_EQ] = ACTIONS(3445), - [anon_sym_DOT] = ACTIONS(3447), - [anon_sym_scoped] = ACTIONS(3863), - [anon_sym_COLON_COLON] = ACTIONS(3445), - [anon_sym_var] = ACTIONS(3863), - [anon_sym_yield] = ACTIONS(3863), - [anon_sym_switch] = ACTIONS(3447), - [anon_sym_when] = ACTIONS(3863), - [anon_sym_DOT_DOT] = ACTIONS(3445), - [anon_sym_AMP_AMP] = ACTIONS(3445), - [anon_sym_PIPE_PIPE] = ACTIONS(3445), - [anon_sym_QMARK_QMARK] = ACTIONS(3445), - [anon_sym_from] = ACTIONS(3863), - [anon_sym_into] = ACTIONS(3867), - [anon_sym_join] = ACTIONS(3863), - [anon_sym_on] = ACTIONS(3867), - [anon_sym_equals] = ACTIONS(3863), - [anon_sym_let] = ACTIONS(3863), - [anon_sym_orderby] = ACTIONS(3863), - [anon_sym_ascending] = ACTIONS(3863), - [anon_sym_descending] = ACTIONS(3863), - [anon_sym_group] = ACTIONS(3863), - [anon_sym_by] = ACTIONS(3863), - [anon_sym_select] = ACTIONS(3863), - [anon_sym_as] = ACTIONS(3447), - [anon_sym_is] = ACTIONS(3447), - [anon_sym_DASH_GT] = ACTIONS(3445), - [anon_sym_with] = ACTIONS(3447), + [aux_sym__class_declaration_initializer_repeat2] = STATE(3585), + [sym__identifier_token] = ACTIONS(2965), + [anon_sym_extern] = ACTIONS(645), + [anon_sym_alias] = ACTIONS(2969), + [anon_sym_global] = ACTIONS(2969), + [anon_sym_unsafe] = ACTIONS(645), + [anon_sym_static] = ACTIONS(645), + [anon_sym_LPAREN] = ACTIONS(2977), + [anon_sym_ref] = ACTIONS(3436), + [anon_sym_delegate] = ACTIONS(3438), + [anon_sym_abstract] = ACTIONS(645), + [anon_sym_async] = ACTIONS(645), + [anon_sym_const] = ACTIONS(645), + [anon_sym_file] = ACTIONS(3905), + [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(2969), + [anon_sym_notnull] = ACTIONS(2969), + [anon_sym_unmanaged] = ACTIONS(2969), + [anon_sym_scoped] = ACTIONS(2993), + [anon_sym_var] = ACTIONS(2995), + [sym_predefined_type] = ACTIONS(2997), + [anon_sym_yield] = ACTIONS(2969), + [anon_sym_when] = ACTIONS(2969), + [anon_sym_from] = ACTIONS(2969), + [anon_sym_into] = ACTIONS(2969), + [anon_sym_join] = ACTIONS(2969), + [anon_sym_on] = ACTIONS(2969), + [anon_sym_equals] = ACTIONS(2969), + [anon_sym_let] = ACTIONS(2969), + [anon_sym_orderby] = ACTIONS(2969), + [anon_sym_ascending] = ACTIONS(2969), + [anon_sym_descending] = ACTIONS(2969), + [anon_sym_group] = ACTIONS(2969), + [anon_sym_by] = ACTIONS(2969), + [anon_sym_select] = ACTIONS(2969), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -430053,14 +429704,26 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2518] = { - [sym_parameter_list] = STATE(7311), - [sym_positional_pattern_clause] = STATE(2575), - [sym_property_pattern_clause] = STATE(2686), - [sym__variable_designation] = STATE(4139), - [sym_parenthesized_variable_designation] = STATE(4173), - [sym__lambda_parameters] = STATE(7536), - [sym_identifier] = STATE(4106), - [sym__reserved_identifier] = STATE(2945), + [sym_modifier] = STATE(3845), + [sym_variable_declaration] = STATE(7308), + [sym__name] = STATE(4369), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(4068), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(4073), + [sym_type] = STATE(5903), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_identifier] = STATE(4081), + [sym__reserved_identifier] = STATE(3654), [sym_preproc_region] = STATE(2518), [sym_preproc_endregion] = STATE(2518), [sym_preproc_line] = STATE(2518), @@ -430070,66 +429733,53 @@ 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(3887), - [anon_sym_alias] = ACTIONS(3889), - [anon_sym_global] = ACTIONS(3889), - [anon_sym_LBRACK] = ACTIONS(3893), - [anon_sym_LPAREN] = ACTIONS(3893), - [anon_sym_LBRACE] = ACTIONS(3881), - [anon_sym_file] = ACTIONS(3889), - [anon_sym_LT] = ACTIONS(3895), - [anon_sym_GT] = ACTIONS(3895), - [anon_sym_where] = ACTIONS(3895), - [anon_sym_QMARK] = ACTIONS(3895), - [anon_sym_notnull] = ACTIONS(3889), - [anon_sym_unmanaged] = ACTIONS(3889), - [anon_sym_BANG] = ACTIONS(3895), - [anon_sym_PLUS_PLUS] = ACTIONS(3893), - [anon_sym_DASH_DASH] = ACTIONS(3893), - [anon_sym_PLUS] = ACTIONS(3895), - [anon_sym_DASH] = ACTIONS(3895), - [anon_sym_STAR] = ACTIONS(3893), - [anon_sym_SLASH] = ACTIONS(3895), - [anon_sym_PERCENT] = ACTIONS(3893), - [anon_sym_CARET] = ACTIONS(3893), - [anon_sym_PIPE] = ACTIONS(3895), - [anon_sym_AMP] = ACTIONS(3895), - [anon_sym_LT_LT] = ACTIONS(3893), - [anon_sym_GT_GT] = ACTIONS(3895), - [anon_sym_GT_GT_GT] = ACTIONS(3893), - [anon_sym_EQ_EQ] = ACTIONS(3893), - [anon_sym_BANG_EQ] = ACTIONS(3893), - [anon_sym_GT_EQ] = ACTIONS(3893), - [anon_sym_LT_EQ] = ACTIONS(3893), - [anon_sym_DOT] = ACTIONS(3895), - [anon_sym_scoped] = ACTIONS(3889), - [anon_sym_var] = ACTIONS(3889), - [anon_sym_yield] = ACTIONS(3889), - [anon_sym_switch] = ACTIONS(3895), - [anon_sym_when] = ACTIONS(3889), - [sym_discard] = ACTIONS(4209), - [anon_sym_DOT_DOT] = ACTIONS(3893), - [anon_sym_and] = ACTIONS(3895), - [anon_sym_or] = ACTIONS(3895), - [anon_sym_AMP_AMP] = ACTIONS(3893), - [anon_sym_PIPE_PIPE] = ACTIONS(3893), - [anon_sym_QMARK_QMARK] = ACTIONS(3893), - [anon_sym_from] = ACTIONS(3895), - [anon_sym_into] = ACTIONS(3889), - [anon_sym_join] = ACTIONS(3895), - [anon_sym_on] = ACTIONS(3889), - [anon_sym_equals] = ACTIONS(3889), - [anon_sym_let] = ACTIONS(3895), - [anon_sym_orderby] = ACTIONS(3895), - [anon_sym_ascending] = ACTIONS(3889), - [anon_sym_descending] = ACTIONS(3889), - [anon_sym_group] = ACTIONS(3895), - [anon_sym_by] = ACTIONS(3889), - [anon_sym_select] = ACTIONS(3895), - [anon_sym_as] = ACTIONS(3895), - [anon_sym_is] = ACTIONS(3895), - [anon_sym_DASH_GT] = ACTIONS(3893), - [anon_sym_with] = ACTIONS(3895), + [aux_sym__class_declaration_initializer_repeat2] = STATE(2523), + [sym__identifier_token] = ACTIONS(2965), + [anon_sym_extern] = ACTIONS(645), + [anon_sym_alias] = ACTIONS(2969), + [anon_sym_global] = ACTIONS(2969), + [anon_sym_unsafe] = ACTIONS(645), + [anon_sym_static] = ACTIONS(645), + [anon_sym_LPAREN] = ACTIONS(4193), + [anon_sym_ref] = ACTIONS(3436), + [anon_sym_delegate] = ACTIONS(3438), + [anon_sym_abstract] = ACTIONS(645), + [anon_sym_async] = ACTIONS(645), + [anon_sym_const] = ACTIONS(645), + [anon_sym_file] = ACTIONS(3905), + [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(2969), + [anon_sym_notnull] = ACTIONS(2969), + [anon_sym_unmanaged] = ACTIONS(2969), + [anon_sym_scoped] = ACTIONS(2993), + [anon_sym_var] = ACTIONS(2995), + [sym_predefined_type] = ACTIONS(2997), + [anon_sym_yield] = ACTIONS(2969), + [anon_sym_when] = ACTIONS(2969), + [anon_sym_from] = ACTIONS(2969), + [anon_sym_into] = ACTIONS(2969), + [anon_sym_join] = ACTIONS(2969), + [anon_sym_on] = ACTIONS(2969), + [anon_sym_equals] = ACTIONS(2969), + [anon_sym_let] = ACTIONS(2969), + [anon_sym_orderby] = ACTIONS(2969), + [anon_sym_ascending] = ACTIONS(2969), + [anon_sym_descending] = ACTIONS(2969), + [anon_sym_group] = ACTIONS(2969), + [anon_sym_by] = ACTIONS(2969), + [anon_sym_select] = ACTIONS(2969), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -430142,11 +429792,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2519] = { - [sym_property_pattern_clause] = STATE(2557), - [sym__variable_designation] = STATE(4780), - [sym_parenthesized_variable_designation] = STATE(4761), - [sym_identifier] = STATE(4764), - [sym__reserved_identifier] = STATE(4323), [sym_preproc_region] = STATE(2519), [sym_preproc_endregion] = STATE(2519), [sym_preproc_line] = STATE(2519), @@ -430156,89 +429801,105 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2519), [sym_preproc_define] = STATE(2519), [sym_preproc_undef] = STATE(2519), - [sym__identifier_token] = ACTIONS(4050), - [anon_sym_alias] = ACTIONS(4052), - [anon_sym_global] = ACTIONS(4052), - [anon_sym_LBRACK] = ACTIONS(3905), - [anon_sym_COLON] = ACTIONS(3905), - [anon_sym_COMMA] = ACTIONS(3905), - [anon_sym_LPAREN] = ACTIONS(3905), - [anon_sym_LBRACE] = ACTIONS(4054), - [anon_sym_file] = ACTIONS(4052), - [anon_sym_LT] = ACTIONS(3907), - [anon_sym_GT] = ACTIONS(3907), - [anon_sym_where] = ACTIONS(4052), - [anon_sym_QMARK] = ACTIONS(3907), - [anon_sym_notnull] = ACTIONS(4052), - [anon_sym_unmanaged] = ACTIONS(4052), - [anon_sym_BANG] = ACTIONS(3907), - [anon_sym_PLUS_PLUS] = ACTIONS(3905), - [anon_sym_DASH_DASH] = ACTIONS(3905), - [anon_sym_PLUS] = ACTIONS(3907), - [anon_sym_DASH] = ACTIONS(3907), - [anon_sym_STAR] = ACTIONS(3905), - [anon_sym_SLASH] = ACTIONS(3907), - [anon_sym_PERCENT] = ACTIONS(3905), - [anon_sym_CARET] = ACTIONS(3905), - [anon_sym_PIPE] = ACTIONS(3907), - [anon_sym_AMP] = ACTIONS(3907), - [anon_sym_LT_LT] = ACTIONS(3905), - [anon_sym_GT_GT] = ACTIONS(3907), - [anon_sym_GT_GT_GT] = ACTIONS(3905), - [anon_sym_EQ_EQ] = ACTIONS(3905), - [anon_sym_BANG_EQ] = ACTIONS(3905), - [anon_sym_GT_EQ] = ACTIONS(3905), - [anon_sym_LT_EQ] = ACTIONS(3905), - [anon_sym_DOT] = ACTIONS(3907), - [anon_sym_scoped] = ACTIONS(4052), - [anon_sym_var] = ACTIONS(4052), - [anon_sym_yield] = ACTIONS(4052), - [anon_sym_switch] = ACTIONS(3907), - [anon_sym_when] = ACTIONS(4052), - [sym_discard] = ACTIONS(4056), - [anon_sym_DOT_DOT] = ACTIONS(3905), - [anon_sym_and] = ACTIONS(3907), - [anon_sym_or] = ACTIONS(3907), - [anon_sym_AMP_AMP] = ACTIONS(3905), - [anon_sym_PIPE_PIPE] = ACTIONS(3905), - [anon_sym_QMARK_QMARK] = ACTIONS(3905), - [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(3907), - [anon_sym_is] = ACTIONS(3907), - [anon_sym_DASH_GT] = ACTIONS(3905), - [anon_sym_with] = ACTIONS(3907), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_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(3905), + [sym__identifier_token] = ACTIONS(3757), + [anon_sym_alias] = ACTIONS(3757), + [anon_sym_global] = ACTIONS(3757), + [anon_sym_static] = ACTIONS(3757), + [anon_sym_LBRACK] = ACTIONS(3759), + [anon_sym_COLON] = ACTIONS(2963), + [anon_sym_COMMA] = ACTIONS(2963), + [anon_sym_LPAREN] = ACTIONS(3759), + [anon_sym_ref] = ACTIONS(3757), + [anon_sym_delegate] = ACTIONS(3757), + [anon_sym_async] = ACTIONS(3757), + [anon_sym_file] = ACTIONS(3757), + [anon_sym_LT] = ACTIONS(2961), + [anon_sym_GT] = ACTIONS(2961), + [anon_sym_where] = ACTIONS(3757), + [anon_sym_QMARK] = ACTIONS(2961), + [anon_sym_notnull] = ACTIONS(3757), + [anon_sym_unmanaged] = ACTIONS(3757), + [anon_sym_BANG] = ACTIONS(2961), + [anon_sym_PLUS_PLUS] = ACTIONS(2963), + [anon_sym_DASH_DASH] = ACTIONS(2963), + [anon_sym_PLUS] = ACTIONS(2961), + [anon_sym_DASH] = ACTIONS(2961), + [anon_sym_STAR] = ACTIONS(2963), + [anon_sym_SLASH] = ACTIONS(2961), + [anon_sym_PERCENT] = ACTIONS(2963), + [anon_sym_CARET] = ACTIONS(2963), + [anon_sym_PIPE] = ACTIONS(2961), + [anon_sym_AMP] = ACTIONS(2961), + [anon_sym_LT_LT] = ACTIONS(2963), + [anon_sym_GT_GT] = ACTIONS(2961), + [anon_sym_GT_GT_GT] = ACTIONS(2963), + [anon_sym_EQ_EQ] = ACTIONS(2963), + [anon_sym_BANG_EQ] = ACTIONS(2963), + [anon_sym_GT_EQ] = ACTIONS(2963), + [anon_sym_LT_EQ] = ACTIONS(2963), + [anon_sym_DOT] = ACTIONS(2961), + [anon_sym_scoped] = ACTIONS(3757), + [anon_sym_var] = ACTIONS(3757), + [sym_predefined_type] = ACTIONS(3757), + [anon_sym_yield] = ACTIONS(3757), + [anon_sym_switch] = ACTIONS(2961), + [anon_sym_when] = ACTIONS(3757), + [anon_sym_DOT_DOT] = ACTIONS(2963), + [anon_sym_and] = ACTIONS(2961), + [anon_sym_or] = ACTIONS(2961), + [anon_sym_AMP_AMP] = ACTIONS(2963), + [anon_sym_PIPE_PIPE] = ACTIONS(2963), + [anon_sym_QMARK_QMARK] = ACTIONS(2963), + [anon_sym_from] = ACTIONS(3757), + [anon_sym_into] = ACTIONS(3757), + [anon_sym_join] = ACTIONS(3757), + [anon_sym_on] = ACTIONS(3757), + [anon_sym_equals] = ACTIONS(3757), + [anon_sym_let] = ACTIONS(3757), + [anon_sym_orderby] = ACTIONS(3757), + [anon_sym_ascending] = ACTIONS(3757), + [anon_sym_descending] = ACTIONS(3757), + [anon_sym_group] = ACTIONS(3757), + [anon_sym_by] = ACTIONS(3757), + [anon_sym_select] = ACTIONS(3757), + [anon_sym_as] = ACTIONS(2961), + [anon_sym_is] = ACTIONS(2961), + [anon_sym_DASH_GT] = ACTIONS(2963), + [anon_sym_with] = ACTIONS(2961), + [aux_sym_preproc_if_token1] = ACTIONS(3759), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_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(2963), }, [2520] = { - [sym_parameter_list] = STATE(7311), - [sym_positional_pattern_clause] = STATE(2572), - [sym_property_pattern_clause] = STATE(2695), - [sym__variable_designation] = STATE(3492), - [sym_parenthesized_variable_designation] = STATE(3463), - [sym__lambda_parameters] = STATE(7536), - [sym_identifier] = STATE(3493), - [sym__reserved_identifier] = STATE(3177), + [sym_modifier] = STATE(3845), + [sym_variable_declaration] = STATE(7334), + [sym__name] = STATE(4369), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(4068), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(4073), + [sym_type] = STATE(5903), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_identifier] = STATE(4081), + [sym__reserved_identifier] = STATE(3654), [sym_preproc_region] = STATE(2520), [sym_preproc_endregion] = STATE(2520), [sym_preproc_line] = STATE(2520), @@ -430248,66 +429909,53 @@ 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(3875), - [anon_sym_alias] = ACTIONS(3877), - [anon_sym_global] = ACTIONS(3877), - [anon_sym_LBRACK] = ACTIONS(3879), - [anon_sym_LPAREN] = ACTIONS(3879), - [anon_sym_LBRACE] = ACTIONS(3881), - [anon_sym_file] = ACTIONS(3877), - [anon_sym_LT] = ACTIONS(3883), - [anon_sym_GT] = ACTIONS(3883), - [anon_sym_where] = ACTIONS(3877), - [anon_sym_QMARK] = ACTIONS(3883), - [anon_sym_notnull] = ACTIONS(3877), - [anon_sym_unmanaged] = ACTIONS(3877), - [anon_sym_BANG] = ACTIONS(3883), - [anon_sym_PLUS_PLUS] = ACTIONS(3879), - [anon_sym_DASH_DASH] = ACTIONS(3879), - [anon_sym_PLUS] = ACTIONS(3883), - [anon_sym_DASH] = ACTIONS(3883), - [anon_sym_STAR] = ACTIONS(3879), - [anon_sym_SLASH] = ACTIONS(3883), - [anon_sym_PERCENT] = ACTIONS(3879), - [anon_sym_CARET] = ACTIONS(3879), - [anon_sym_PIPE] = ACTIONS(3883), - [anon_sym_AMP] = ACTIONS(3883), - [anon_sym_LT_LT] = ACTIONS(3879), - [anon_sym_GT_GT] = ACTIONS(3883), - [anon_sym_GT_GT_GT] = ACTIONS(3879), - [anon_sym_EQ_EQ] = ACTIONS(3879), - [anon_sym_BANG_EQ] = ACTIONS(3879), - [anon_sym_GT_EQ] = ACTIONS(3879), - [anon_sym_LT_EQ] = ACTIONS(3879), - [anon_sym_DOT] = ACTIONS(3883), - [anon_sym_scoped] = ACTIONS(3877), - [anon_sym_var] = ACTIONS(3877), - [anon_sym_yield] = ACTIONS(3877), - [anon_sym_switch] = ACTIONS(3883), - [anon_sym_when] = ACTIONS(3877), - [sym_discard] = ACTIONS(3897), - [anon_sym_DOT_DOT] = ACTIONS(3879), - [anon_sym_and] = ACTIONS(3883), - [anon_sym_or] = ACTIONS(3883), - [anon_sym_AMP_AMP] = ACTIONS(3879), - [anon_sym_PIPE_PIPE] = ACTIONS(3879), - [anon_sym_QMARK_QMARK] = ACTIONS(3879), - [anon_sym_from] = ACTIONS(3877), - [anon_sym_into] = ACTIONS(3877), - [anon_sym_join] = ACTIONS(3877), - [anon_sym_on] = ACTIONS(3877), - [anon_sym_equals] = ACTIONS(3877), - [anon_sym_let] = ACTIONS(3877), - [anon_sym_orderby] = ACTIONS(3877), - [anon_sym_ascending] = ACTIONS(3877), - [anon_sym_descending] = ACTIONS(3877), - [anon_sym_group] = ACTIONS(3877), - [anon_sym_by] = ACTIONS(3883), - [anon_sym_select] = ACTIONS(3877), - [anon_sym_as] = ACTIONS(3883), - [anon_sym_is] = ACTIONS(3883), - [anon_sym_DASH_GT] = ACTIONS(3879), - [anon_sym_with] = ACTIONS(3883), + [aux_sym__class_declaration_initializer_repeat2] = STATE(2521), + [sym__identifier_token] = ACTIONS(2965), + [anon_sym_extern] = ACTIONS(645), + [anon_sym_alias] = ACTIONS(2969), + [anon_sym_global] = ACTIONS(2969), + [anon_sym_unsafe] = ACTIONS(645), + [anon_sym_static] = ACTIONS(645), + [anon_sym_LPAREN] = ACTIONS(4209), + [anon_sym_ref] = ACTIONS(3436), + [anon_sym_delegate] = ACTIONS(3438), + [anon_sym_abstract] = ACTIONS(645), + [anon_sym_async] = ACTIONS(645), + [anon_sym_const] = ACTIONS(645), + [anon_sym_file] = ACTIONS(3905), + [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(2969), + [anon_sym_notnull] = ACTIONS(2969), + [anon_sym_unmanaged] = ACTIONS(2969), + [anon_sym_scoped] = ACTIONS(2993), + [anon_sym_var] = ACTIONS(2995), + [sym_predefined_type] = ACTIONS(2997), + [anon_sym_yield] = ACTIONS(2969), + [anon_sym_when] = ACTIONS(2969), + [anon_sym_from] = ACTIONS(2969), + [anon_sym_into] = ACTIONS(2969), + [anon_sym_join] = ACTIONS(2969), + [anon_sym_on] = ACTIONS(2969), + [anon_sym_equals] = ACTIONS(2969), + [anon_sym_let] = ACTIONS(2969), + [anon_sym_orderby] = ACTIONS(2969), + [anon_sym_ascending] = ACTIONS(2969), + [anon_sym_descending] = ACTIONS(2969), + [anon_sym_group] = ACTIONS(2969), + [anon_sym_by] = ACTIONS(2969), + [anon_sym_select] = ACTIONS(2969), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -430320,14 +429968,26 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2521] = { - [sym_parameter_list] = STATE(7311), - [sym_positional_pattern_clause] = STATE(2568), - [sym_property_pattern_clause] = STATE(2793), - [sym__variable_designation] = STATE(3346), - [sym_parenthesized_variable_designation] = STATE(3340), - [sym__lambda_parameters] = STATE(7536), - [sym_identifier] = STATE(3342), - [sym__reserved_identifier] = STATE(3177), + [sym_modifier] = STATE(3845), + [sym_variable_declaration] = STATE(7467), + [sym__name] = STATE(4369), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(4068), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(4073), + [sym_type] = STATE(5903), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_identifier] = STATE(4081), + [sym__reserved_identifier] = STATE(3654), [sym_preproc_region] = STATE(2521), [sym_preproc_endregion] = STATE(2521), [sym_preproc_line] = STATE(2521), @@ -430337,66 +429997,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2521), [sym_preproc_define] = STATE(2521), [sym_preproc_undef] = STATE(2521), - [sym__identifier_token] = ACTIONS(3875), - [anon_sym_alias] = ACTIONS(3877), - [anon_sym_global] = ACTIONS(3877), - [anon_sym_LBRACK] = ACTIONS(3893), - [anon_sym_LPAREN] = ACTIONS(3893), - [anon_sym_LBRACE] = ACTIONS(3881), - [anon_sym_file] = ACTIONS(3877), - [anon_sym_LT] = ACTIONS(3895), - [anon_sym_GT] = ACTIONS(3895), - [anon_sym_where] = ACTIONS(3877), - [anon_sym_QMARK] = ACTIONS(3895), - [anon_sym_notnull] = ACTIONS(3877), - [anon_sym_unmanaged] = ACTIONS(3877), - [anon_sym_BANG] = ACTIONS(3895), - [anon_sym_PLUS_PLUS] = ACTIONS(3893), - [anon_sym_DASH_DASH] = ACTIONS(3893), - [anon_sym_PLUS] = ACTIONS(3895), - [anon_sym_DASH] = ACTIONS(3895), - [anon_sym_STAR] = ACTIONS(3893), - [anon_sym_SLASH] = ACTIONS(3895), - [anon_sym_PERCENT] = ACTIONS(3893), - [anon_sym_CARET] = ACTIONS(3893), - [anon_sym_PIPE] = ACTIONS(3895), - [anon_sym_AMP] = ACTIONS(3895), - [anon_sym_LT_LT] = ACTIONS(3893), - [anon_sym_GT_GT] = ACTIONS(3895), - [anon_sym_GT_GT_GT] = ACTIONS(3893), - [anon_sym_EQ_EQ] = ACTIONS(3893), - [anon_sym_BANG_EQ] = ACTIONS(3893), - [anon_sym_GT_EQ] = ACTIONS(3893), - [anon_sym_LT_EQ] = ACTIONS(3893), - [anon_sym_DOT] = ACTIONS(3895), - [anon_sym_scoped] = ACTIONS(3877), - [anon_sym_var] = ACTIONS(3877), - [anon_sym_yield] = ACTIONS(3877), - [anon_sym_switch] = ACTIONS(3895), - [anon_sym_when] = ACTIONS(3877), - [sym_discard] = ACTIONS(3885), - [anon_sym_DOT_DOT] = ACTIONS(3893), - [anon_sym_and] = ACTIONS(3883), - [anon_sym_or] = ACTIONS(3883), - [anon_sym_AMP_AMP] = ACTIONS(3893), - [anon_sym_PIPE_PIPE] = ACTIONS(3893), - [anon_sym_QMARK_QMARK] = ACTIONS(3893), - [anon_sym_from] = ACTIONS(3877), - [anon_sym_into] = ACTIONS(3895), - [anon_sym_join] = ACTIONS(3877), - [anon_sym_on] = ACTIONS(3895), - [anon_sym_equals] = ACTIONS(3877), - [anon_sym_let] = ACTIONS(3877), - [anon_sym_orderby] = ACTIONS(3877), - [anon_sym_ascending] = ACTIONS(3877), - [anon_sym_descending] = ACTIONS(3877), - [anon_sym_group] = ACTIONS(3877), - [anon_sym_by] = ACTIONS(3877), - [anon_sym_select] = ACTIONS(3877), - [anon_sym_as] = ACTIONS(3895), - [anon_sym_is] = ACTIONS(3895), - [anon_sym_DASH_GT] = ACTIONS(3893), - [anon_sym_with] = ACTIONS(3895), + [aux_sym__class_declaration_initializer_repeat2] = STATE(3585), + [sym__identifier_token] = ACTIONS(2965), + [anon_sym_extern] = ACTIONS(645), + [anon_sym_alias] = ACTIONS(2969), + [anon_sym_global] = ACTIONS(2969), + [anon_sym_unsafe] = ACTIONS(645), + [anon_sym_static] = ACTIONS(645), + [anon_sym_LPAREN] = ACTIONS(2977), + [anon_sym_ref] = ACTIONS(3436), + [anon_sym_delegate] = ACTIONS(3438), + [anon_sym_abstract] = ACTIONS(645), + [anon_sym_async] = ACTIONS(645), + [anon_sym_const] = ACTIONS(645), + [anon_sym_file] = ACTIONS(3905), + [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(2969), + [anon_sym_notnull] = ACTIONS(2969), + [anon_sym_unmanaged] = ACTIONS(2969), + [anon_sym_scoped] = ACTIONS(2993), + [anon_sym_var] = ACTIONS(2995), + [sym_predefined_type] = ACTIONS(2997), + [anon_sym_yield] = ACTIONS(2969), + [anon_sym_when] = ACTIONS(2969), + [anon_sym_from] = ACTIONS(2969), + [anon_sym_into] = ACTIONS(2969), + [anon_sym_join] = ACTIONS(2969), + [anon_sym_on] = ACTIONS(2969), + [anon_sym_equals] = ACTIONS(2969), + [anon_sym_let] = ACTIONS(2969), + [anon_sym_orderby] = ACTIONS(2969), + [anon_sym_ascending] = ACTIONS(2969), + [anon_sym_descending] = ACTIONS(2969), + [anon_sym_group] = ACTIONS(2969), + [anon_sym_by] = ACTIONS(2969), + [anon_sym_select] = ACTIONS(2969), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -430409,14 +430056,26 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2522] = { - [sym_parameter_list] = STATE(7311), - [sym_positional_pattern_clause] = STATE(2580), - [sym_property_pattern_clause] = STATE(2740), - [sym__variable_designation] = STATE(3492), - [sym_parenthesized_variable_designation] = STATE(3463), - [sym__lambda_parameters] = STATE(7536), - [sym_identifier] = STATE(3493), - [sym__reserved_identifier] = STATE(3177), + [sym_modifier] = STATE(3845), + [sym_variable_declaration] = STATE(7667), + [sym__name] = STATE(4369), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(4068), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(4073), + [sym_type] = STATE(5903), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_identifier] = STATE(4081), + [sym__reserved_identifier] = STATE(3654), [sym_preproc_region] = STATE(2522), [sym_preproc_endregion] = STATE(2522), [sym_preproc_line] = STATE(2522), @@ -430426,66 +430085,53 @@ 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(3875), - [anon_sym_alias] = ACTIONS(3877), - [anon_sym_global] = ACTIONS(3877), - [anon_sym_LBRACK] = ACTIONS(3893), - [anon_sym_LPAREN] = ACTIONS(3893), - [anon_sym_LBRACE] = ACTIONS(3881), - [anon_sym_file] = ACTIONS(3877), - [anon_sym_LT] = ACTIONS(3895), - [anon_sym_GT] = ACTIONS(3895), - [anon_sym_where] = ACTIONS(3877), - [anon_sym_QMARK] = ACTIONS(3895), - [anon_sym_notnull] = ACTIONS(3877), - [anon_sym_unmanaged] = ACTIONS(3877), - [anon_sym_BANG] = ACTIONS(3895), - [anon_sym_PLUS_PLUS] = ACTIONS(3893), - [anon_sym_DASH_DASH] = ACTIONS(3893), - [anon_sym_PLUS] = ACTIONS(3895), - [anon_sym_DASH] = ACTIONS(3895), - [anon_sym_STAR] = ACTIONS(3893), - [anon_sym_SLASH] = ACTIONS(3895), - [anon_sym_PERCENT] = ACTIONS(3893), - [anon_sym_CARET] = ACTIONS(3893), - [anon_sym_PIPE] = ACTIONS(3895), - [anon_sym_AMP] = ACTIONS(3895), - [anon_sym_LT_LT] = ACTIONS(3893), - [anon_sym_GT_GT] = ACTIONS(3895), - [anon_sym_GT_GT_GT] = ACTIONS(3893), - [anon_sym_EQ_EQ] = ACTIONS(3893), - [anon_sym_BANG_EQ] = ACTIONS(3893), - [anon_sym_GT_EQ] = ACTIONS(3893), - [anon_sym_LT_EQ] = ACTIONS(3893), - [anon_sym_DOT] = ACTIONS(3895), - [anon_sym_scoped] = ACTIONS(3877), - [anon_sym_var] = ACTIONS(3877), - [anon_sym_yield] = ACTIONS(3877), - [anon_sym_switch] = ACTIONS(3895), - [anon_sym_when] = ACTIONS(3877), - [sym_discard] = ACTIONS(3897), - [anon_sym_DOT_DOT] = ACTIONS(3893), - [anon_sym_and] = ACTIONS(3895), - [anon_sym_or] = ACTIONS(3895), - [anon_sym_AMP_AMP] = ACTIONS(3893), - [anon_sym_PIPE_PIPE] = ACTIONS(3893), - [anon_sym_QMARK_QMARK] = ACTIONS(3893), - [anon_sym_from] = ACTIONS(3877), - [anon_sym_into] = ACTIONS(3877), - [anon_sym_join] = ACTIONS(3877), - [anon_sym_on] = ACTIONS(3877), - [anon_sym_equals] = ACTIONS(3895), - [anon_sym_let] = ACTIONS(3877), - [anon_sym_orderby] = ACTIONS(3877), - [anon_sym_ascending] = ACTIONS(3877), - [anon_sym_descending] = ACTIONS(3877), - [anon_sym_group] = ACTIONS(3877), - [anon_sym_by] = ACTIONS(3877), - [anon_sym_select] = ACTIONS(3877), - [anon_sym_as] = ACTIONS(3895), - [anon_sym_is] = ACTIONS(3895), - [anon_sym_DASH_GT] = ACTIONS(3893), - [anon_sym_with] = ACTIONS(3895), + [aux_sym__class_declaration_initializer_repeat2] = STATE(3585), + [sym__identifier_token] = ACTIONS(2965), + [anon_sym_extern] = ACTIONS(645), + [anon_sym_alias] = ACTIONS(2969), + [anon_sym_global] = ACTIONS(2969), + [anon_sym_unsafe] = ACTIONS(645), + [anon_sym_static] = ACTIONS(645), + [anon_sym_LPAREN] = ACTIONS(2977), + [anon_sym_ref] = ACTIONS(3436), + [anon_sym_delegate] = ACTIONS(3438), + [anon_sym_abstract] = ACTIONS(645), + [anon_sym_async] = ACTIONS(645), + [anon_sym_const] = ACTIONS(645), + [anon_sym_file] = ACTIONS(3905), + [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(2969), + [anon_sym_notnull] = ACTIONS(2969), + [anon_sym_unmanaged] = ACTIONS(2969), + [anon_sym_scoped] = ACTIONS(2993), + [anon_sym_var] = ACTIONS(2995), + [sym_predefined_type] = ACTIONS(2997), + [anon_sym_yield] = ACTIONS(2969), + [anon_sym_when] = ACTIONS(2969), + [anon_sym_from] = ACTIONS(2969), + [anon_sym_into] = ACTIONS(2969), + [anon_sym_join] = ACTIONS(2969), + [anon_sym_on] = ACTIONS(2969), + [anon_sym_equals] = ACTIONS(2969), + [anon_sym_let] = ACTIONS(2969), + [anon_sym_orderby] = ACTIONS(2969), + [anon_sym_ascending] = ACTIONS(2969), + [anon_sym_descending] = ACTIONS(2969), + [anon_sym_group] = ACTIONS(2969), + [anon_sym_by] = ACTIONS(2969), + [anon_sym_select] = ACTIONS(2969), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -430498,11 +430144,26 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2523] = { - [sym_property_pattern_clause] = STATE(2597), - [sym__variable_designation] = STATE(3495), - [sym_parenthesized_variable_designation] = STATE(3463), - [sym_identifier] = STATE(3479), - [sym__reserved_identifier] = STATE(3177), + [sym_modifier] = STATE(3845), + [sym_variable_declaration] = STATE(7601), + [sym__name] = STATE(4369), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(4068), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(4073), + [sym_type] = STATE(5903), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_identifier] = STATE(4081), + [sym__reserved_identifier] = STATE(3654), [sym_preproc_region] = STATE(2523), [sym_preproc_endregion] = STATE(2523), [sym_preproc_line] = STATE(2523), @@ -430512,68 +430173,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2523), [sym_preproc_define] = STATE(2523), [sym_preproc_undef] = STATE(2523), - [sym__identifier_token] = ACTIONS(3875), - [anon_sym_alias] = ACTIONS(3877), - [anon_sym_global] = ACTIONS(3877), - [anon_sym_LBRACK] = ACTIONS(3905), - [anon_sym_COLON] = ACTIONS(3905), - [anon_sym_LPAREN] = ACTIONS(3905), - [anon_sym_LBRACE] = ACTIONS(3881), - [anon_sym_file] = ACTIONS(3877), - [anon_sym_LT] = ACTIONS(3907), - [anon_sym_GT] = ACTIONS(3907), - [anon_sym_where] = ACTIONS(3877), - [anon_sym_QMARK] = ACTIONS(3907), - [anon_sym_notnull] = ACTIONS(3877), - [anon_sym_unmanaged] = ACTIONS(3877), - [anon_sym_BANG] = ACTIONS(3907), - [anon_sym_PLUS_PLUS] = ACTIONS(3905), - [anon_sym_DASH_DASH] = ACTIONS(3905), - [anon_sym_PLUS] = ACTIONS(3907), - [anon_sym_DASH] = ACTIONS(3907), - [anon_sym_STAR] = ACTIONS(3905), - [anon_sym_SLASH] = ACTIONS(3907), - [anon_sym_PERCENT] = ACTIONS(3905), - [anon_sym_CARET] = ACTIONS(3905), - [anon_sym_PIPE] = ACTIONS(3907), - [anon_sym_AMP] = ACTIONS(3907), - [anon_sym_LT_LT] = ACTIONS(3905), - [anon_sym_GT_GT] = ACTIONS(3907), - [anon_sym_GT_GT_GT] = ACTIONS(3905), - [anon_sym_EQ_EQ] = ACTIONS(3905), - [anon_sym_BANG_EQ] = ACTIONS(3905), - [anon_sym_GT_EQ] = ACTIONS(3905), - [anon_sym_LT_EQ] = ACTIONS(3905), - [anon_sym_DOT] = ACTIONS(3907), - [anon_sym_scoped] = ACTIONS(3877), - [anon_sym_EQ_GT] = ACTIONS(3905), - [anon_sym_var] = ACTIONS(3877), - [anon_sym_yield] = ACTIONS(3877), - [anon_sym_switch] = ACTIONS(3907), - [anon_sym_when] = ACTIONS(3907), - [sym_discard] = ACTIONS(3897), - [anon_sym_DOT_DOT] = ACTIONS(3905), - [anon_sym_and] = ACTIONS(3907), - [anon_sym_or] = ACTIONS(3907), - [anon_sym_AMP_AMP] = ACTIONS(3905), - [anon_sym_PIPE_PIPE] = ACTIONS(3905), - [anon_sym_QMARK_QMARK] = ACTIONS(3905), - [anon_sym_from] = ACTIONS(3877), - [anon_sym_into] = ACTIONS(3877), - [anon_sym_join] = ACTIONS(3877), - [anon_sym_on] = ACTIONS(3877), - [anon_sym_equals] = ACTIONS(3877), - [anon_sym_let] = ACTIONS(3877), - [anon_sym_orderby] = ACTIONS(3877), - [anon_sym_ascending] = ACTIONS(3877), - [anon_sym_descending] = ACTIONS(3877), - [anon_sym_group] = ACTIONS(3877), - [anon_sym_by] = ACTIONS(3877), - [anon_sym_select] = ACTIONS(3877), - [anon_sym_as] = ACTIONS(3907), - [anon_sym_is] = ACTIONS(3907), - [anon_sym_DASH_GT] = ACTIONS(3905), - [anon_sym_with] = ACTIONS(3907), + [aux_sym__class_declaration_initializer_repeat2] = STATE(3585), + [sym__identifier_token] = ACTIONS(2965), + [anon_sym_extern] = ACTIONS(645), + [anon_sym_alias] = ACTIONS(2969), + [anon_sym_global] = ACTIONS(2969), + [anon_sym_unsafe] = ACTIONS(645), + [anon_sym_static] = ACTIONS(645), + [anon_sym_LPAREN] = ACTIONS(2977), + [anon_sym_ref] = ACTIONS(3436), + [anon_sym_delegate] = ACTIONS(3438), + [anon_sym_abstract] = ACTIONS(645), + [anon_sym_async] = ACTIONS(645), + [anon_sym_const] = ACTIONS(645), + [anon_sym_file] = ACTIONS(3905), + [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(2969), + [anon_sym_notnull] = ACTIONS(2969), + [anon_sym_unmanaged] = ACTIONS(2969), + [anon_sym_scoped] = ACTIONS(2993), + [anon_sym_var] = ACTIONS(2995), + [sym_predefined_type] = ACTIONS(2997), + [anon_sym_yield] = ACTIONS(2969), + [anon_sym_when] = ACTIONS(2969), + [anon_sym_from] = ACTIONS(2969), + [anon_sym_into] = ACTIONS(2969), + [anon_sym_join] = ACTIONS(2969), + [anon_sym_on] = ACTIONS(2969), + [anon_sym_equals] = ACTIONS(2969), + [anon_sym_let] = ACTIONS(2969), + [anon_sym_orderby] = ACTIONS(2969), + [anon_sym_ascending] = ACTIONS(2969), + [anon_sym_descending] = ACTIONS(2969), + [anon_sym_group] = ACTIONS(2969), + [anon_sym_by] = ACTIONS(2969), + [anon_sym_select] = ACTIONS(2969), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -430586,26 +430232,26 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2524] = { - [sym_modifier] = STATE(3878), - [sym_variable_declaration] = STATE(7709), - [sym__name] = STATE(4390), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(4096), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(4109), - [sym_type] = STATE(5921), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_identifier] = STATE(4087), - [sym__reserved_identifier] = STATE(3691), + [sym_modifier] = STATE(3845), + [sym_variable_declaration] = STATE(7601), + [sym__name] = STATE(4369), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(4068), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(4073), + [sym_type] = STATE(5903), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_identifier] = STATE(4081), + [sym__reserved_identifier] = STATE(3654), [sym_preproc_region] = STATE(2524), [sym_preproc_endregion] = STATE(2524), [sym_preproc_line] = STATE(2524), @@ -430615,53 +430261,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2524), [sym_preproc_define] = STATE(2524), [sym_preproc_undef] = STATE(2524), - [aux_sym__class_declaration_initializer_repeat2] = STATE(2526), - [sym__identifier_token] = ACTIONS(2967), - [anon_sym_extern] = ACTIONS(647), - [anon_sym_alias] = ACTIONS(2971), - [anon_sym_global] = ACTIONS(2971), - [anon_sym_unsafe] = ACTIONS(647), - [anon_sym_static] = ACTIONS(647), - [anon_sym_LPAREN] = ACTIONS(4233), - [anon_sym_ref] = ACTIONS(3452), - [anon_sym_delegate] = ACTIONS(3454), - [anon_sym_abstract] = ACTIONS(647), - [anon_sym_async] = ACTIONS(647), - [anon_sym_const] = ACTIONS(647), - [anon_sym_file] = ACTIONS(3925), - [anon_sym_fixed] = ACTIONS(647), - [anon_sym_internal] = ACTIONS(647), - [anon_sym_new] = ACTIONS(647), - [anon_sym_override] = ACTIONS(647), - [anon_sym_partial] = ACTIONS(647), - [anon_sym_private] = ACTIONS(647), - [anon_sym_protected] = ACTIONS(647), - [anon_sym_public] = ACTIONS(647), - [anon_sym_readonly] = ACTIONS(647), - [anon_sym_required] = ACTIONS(647), - [anon_sym_sealed] = ACTIONS(647), - [anon_sym_virtual] = ACTIONS(647), - [anon_sym_volatile] = ACTIONS(647), - [anon_sym_where] = ACTIONS(2971), - [anon_sym_notnull] = ACTIONS(2971), - [anon_sym_unmanaged] = ACTIONS(2971), - [anon_sym_scoped] = ACTIONS(2997), - [anon_sym_var] = ACTIONS(2999), - [sym_predefined_type] = ACTIONS(3001), - [anon_sym_yield] = ACTIONS(2971), - [anon_sym_when] = ACTIONS(2971), - [anon_sym_from] = ACTIONS(2971), - [anon_sym_into] = ACTIONS(2971), - [anon_sym_join] = ACTIONS(2971), - [anon_sym_on] = ACTIONS(2971), - [anon_sym_equals] = ACTIONS(2971), - [anon_sym_let] = ACTIONS(2971), - [anon_sym_orderby] = ACTIONS(2971), - [anon_sym_ascending] = ACTIONS(2971), - [anon_sym_descending] = ACTIONS(2971), - [anon_sym_group] = ACTIONS(2971), - [anon_sym_by] = ACTIONS(2971), - [anon_sym_select] = ACTIONS(2971), + [aux_sym__class_declaration_initializer_repeat2] = STATE(2525), + [sym__identifier_token] = ACTIONS(2965), + [anon_sym_extern] = ACTIONS(645), + [anon_sym_alias] = ACTIONS(2969), + [anon_sym_global] = ACTIONS(2969), + [anon_sym_unsafe] = ACTIONS(645), + [anon_sym_static] = ACTIONS(645), + [anon_sym_LPAREN] = ACTIONS(4211), + [anon_sym_ref] = ACTIONS(3436), + [anon_sym_delegate] = ACTIONS(3438), + [anon_sym_abstract] = ACTIONS(645), + [anon_sym_async] = ACTIONS(645), + [anon_sym_const] = ACTIONS(645), + [anon_sym_file] = ACTIONS(3905), + [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(2969), + [anon_sym_notnull] = ACTIONS(2969), + [anon_sym_unmanaged] = ACTIONS(2969), + [anon_sym_scoped] = ACTIONS(2993), + [anon_sym_var] = ACTIONS(2995), + [sym_predefined_type] = ACTIONS(2997), + [anon_sym_yield] = ACTIONS(2969), + [anon_sym_when] = ACTIONS(2969), + [anon_sym_from] = ACTIONS(2969), + [anon_sym_into] = ACTIONS(2969), + [anon_sym_join] = ACTIONS(2969), + [anon_sym_on] = ACTIONS(2969), + [anon_sym_equals] = ACTIONS(2969), + [anon_sym_let] = ACTIONS(2969), + [anon_sym_orderby] = ACTIONS(2969), + [anon_sym_ascending] = ACTIONS(2969), + [anon_sym_descending] = ACTIONS(2969), + [anon_sym_group] = ACTIONS(2969), + [anon_sym_by] = ACTIONS(2969), + [anon_sym_select] = ACTIONS(2969), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -430674,6 +430320,26 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2525] = { + [sym_modifier] = STATE(3845), + [sym_variable_declaration] = STATE(7383), + [sym__name] = STATE(4369), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(4068), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(4073), + [sym_type] = STATE(5903), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_identifier] = STATE(4081), + [sym__reserved_identifier] = STATE(3654), [sym_preproc_region] = STATE(2525), [sym_preproc_endregion] = STATE(2525), [sym_preproc_line] = STATE(2525), @@ -430683,105 +430349,70 @@ 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(3782), - [anon_sym_alias] = ACTIONS(3782), - [anon_sym_global] = ACTIONS(3782), - [anon_sym_static] = ACTIONS(3782), - [anon_sym_LBRACK] = ACTIONS(3784), - [anon_sym_COLON] = ACTIONS(2965), - [anon_sym_COMMA] = ACTIONS(2965), - [anon_sym_LPAREN] = ACTIONS(3784), - [anon_sym_ref] = ACTIONS(3782), - [anon_sym_delegate] = ACTIONS(3782), - [anon_sym_async] = ACTIONS(3782), - [anon_sym_file] = ACTIONS(3782), - [anon_sym_LT] = ACTIONS(2963), - [anon_sym_GT] = ACTIONS(2963), - [anon_sym_where] = ACTIONS(3782), - [anon_sym_QMARK] = ACTIONS(2963), - [anon_sym_notnull] = ACTIONS(3782), - [anon_sym_unmanaged] = ACTIONS(3782), - [anon_sym_BANG] = ACTIONS(2963), - [anon_sym_PLUS_PLUS] = ACTIONS(2965), - [anon_sym_DASH_DASH] = ACTIONS(2965), - [anon_sym_PLUS] = ACTIONS(2963), - [anon_sym_DASH] = ACTIONS(2963), - [anon_sym_STAR] = ACTIONS(2965), - [anon_sym_SLASH] = ACTIONS(2963), - [anon_sym_PERCENT] = ACTIONS(2965), - [anon_sym_CARET] = ACTIONS(2965), - [anon_sym_PIPE] = ACTIONS(2963), - [anon_sym_AMP] = ACTIONS(2963), - [anon_sym_LT_LT] = ACTIONS(2965), - [anon_sym_GT_GT] = ACTIONS(2963), - [anon_sym_GT_GT_GT] = ACTIONS(2965), - [anon_sym_EQ_EQ] = ACTIONS(2965), - [anon_sym_BANG_EQ] = ACTIONS(2965), - [anon_sym_GT_EQ] = ACTIONS(2965), - [anon_sym_LT_EQ] = ACTIONS(2965), - [anon_sym_DOT] = ACTIONS(2963), - [anon_sym_scoped] = ACTIONS(3782), - [anon_sym_var] = ACTIONS(3782), - [sym_predefined_type] = ACTIONS(3782), - [anon_sym_yield] = ACTIONS(3782), - [anon_sym_switch] = ACTIONS(2963), - [anon_sym_when] = ACTIONS(3782), - [anon_sym_DOT_DOT] = ACTIONS(2965), - [anon_sym_and] = ACTIONS(2963), - [anon_sym_or] = ACTIONS(2963), - [anon_sym_AMP_AMP] = ACTIONS(2965), - [anon_sym_PIPE_PIPE] = ACTIONS(2965), - [anon_sym_QMARK_QMARK] = ACTIONS(2965), - [anon_sym_from] = ACTIONS(3782), - [anon_sym_into] = ACTIONS(3782), - [anon_sym_join] = ACTIONS(3782), - [anon_sym_on] = ACTIONS(3782), - [anon_sym_equals] = ACTIONS(3782), - [anon_sym_let] = ACTIONS(3782), - [anon_sym_orderby] = ACTIONS(3782), - [anon_sym_ascending] = ACTIONS(3782), - [anon_sym_descending] = ACTIONS(3782), - [anon_sym_group] = ACTIONS(3782), - [anon_sym_by] = ACTIONS(3782), - [anon_sym_select] = ACTIONS(3782), - [anon_sym_as] = ACTIONS(2963), - [anon_sym_is] = ACTIONS(2963), - [anon_sym_DASH_GT] = ACTIONS(2965), - [anon_sym_with] = ACTIONS(2963), - [aux_sym_preproc_if_token1] = ACTIONS(3784), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_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(2965), + [aux_sym__class_declaration_initializer_repeat2] = STATE(3585), + [sym__identifier_token] = ACTIONS(2965), + [anon_sym_extern] = ACTIONS(645), + [anon_sym_alias] = ACTIONS(2969), + [anon_sym_global] = ACTIONS(2969), + [anon_sym_unsafe] = ACTIONS(645), + [anon_sym_static] = ACTIONS(645), + [anon_sym_LPAREN] = ACTIONS(2977), + [anon_sym_ref] = ACTIONS(3436), + [anon_sym_delegate] = ACTIONS(3438), + [anon_sym_abstract] = ACTIONS(645), + [anon_sym_async] = ACTIONS(645), + [anon_sym_const] = ACTIONS(645), + [anon_sym_file] = ACTIONS(3905), + [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(2969), + [anon_sym_notnull] = ACTIONS(2969), + [anon_sym_unmanaged] = ACTIONS(2969), + [anon_sym_scoped] = ACTIONS(2993), + [anon_sym_var] = ACTIONS(2995), + [sym_predefined_type] = ACTIONS(2997), + [anon_sym_yield] = ACTIONS(2969), + [anon_sym_when] = ACTIONS(2969), + [anon_sym_from] = ACTIONS(2969), + [anon_sym_into] = ACTIONS(2969), + [anon_sym_join] = ACTIONS(2969), + [anon_sym_on] = ACTIONS(2969), + [anon_sym_equals] = ACTIONS(2969), + [anon_sym_let] = ACTIONS(2969), + [anon_sym_orderby] = ACTIONS(2969), + [anon_sym_ascending] = ACTIONS(2969), + [anon_sym_descending] = ACTIONS(2969), + [anon_sym_group] = ACTIONS(2969), + [anon_sym_by] = ACTIONS(2969), + [anon_sym_select] = ACTIONS(2969), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), }, [2526] = { - [sym_modifier] = STATE(3878), - [sym_variable_declaration] = STATE(7427), - [sym__name] = STATE(4390), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(4096), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(4109), - [sym_type] = STATE(5921), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_identifier] = STATE(4087), - [sym__reserved_identifier] = STATE(3691), + [sym_property_pattern_clause] = STATE(2579), + [sym__variable_designation] = STATE(3224), + [sym_parenthesized_variable_designation] = STATE(3344), + [sym_identifier] = STATE(3346), + [sym__reserved_identifier] = STATE(3199), [sym_preproc_region] = STATE(2526), [sym_preproc_endregion] = STATE(2526), [sym_preproc_line] = STATE(2526), @@ -430791,53 +430422,68 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2526), [sym_preproc_define] = STATE(2526), [sym_preproc_undef] = STATE(2526), - [aux_sym__class_declaration_initializer_repeat2] = STATE(3643), - [sym__identifier_token] = ACTIONS(2967), - [anon_sym_extern] = ACTIONS(647), - [anon_sym_alias] = ACTIONS(2971), - [anon_sym_global] = ACTIONS(2971), - [anon_sym_unsafe] = ACTIONS(647), - [anon_sym_static] = ACTIONS(647), - [anon_sym_LPAREN] = ACTIONS(2979), - [anon_sym_ref] = ACTIONS(3452), - [anon_sym_delegate] = ACTIONS(3454), - [anon_sym_abstract] = ACTIONS(647), - [anon_sym_async] = ACTIONS(647), - [anon_sym_const] = ACTIONS(647), - [anon_sym_file] = ACTIONS(3925), - [anon_sym_fixed] = ACTIONS(647), - [anon_sym_internal] = ACTIONS(647), - [anon_sym_new] = ACTIONS(647), - [anon_sym_override] = ACTIONS(647), - [anon_sym_partial] = ACTIONS(647), - [anon_sym_private] = ACTIONS(647), - [anon_sym_protected] = ACTIONS(647), - [anon_sym_public] = ACTIONS(647), - [anon_sym_readonly] = ACTIONS(647), - [anon_sym_required] = ACTIONS(647), - [anon_sym_sealed] = ACTIONS(647), - [anon_sym_virtual] = ACTIONS(647), - [anon_sym_volatile] = ACTIONS(647), - [anon_sym_where] = ACTIONS(2971), - [anon_sym_notnull] = ACTIONS(2971), - [anon_sym_unmanaged] = ACTIONS(2971), - [anon_sym_scoped] = ACTIONS(2997), - [anon_sym_var] = ACTIONS(2999), - [sym_predefined_type] = ACTIONS(3001), - [anon_sym_yield] = ACTIONS(2971), - [anon_sym_when] = ACTIONS(2971), - [anon_sym_from] = ACTIONS(2971), - [anon_sym_into] = ACTIONS(2971), - [anon_sym_join] = ACTIONS(2971), - [anon_sym_on] = ACTIONS(2971), - [anon_sym_equals] = ACTIONS(2971), - [anon_sym_let] = ACTIONS(2971), - [anon_sym_orderby] = ACTIONS(2971), - [anon_sym_ascending] = ACTIONS(2971), - [anon_sym_descending] = ACTIONS(2971), - [anon_sym_group] = ACTIONS(2971), - [anon_sym_by] = ACTIONS(2971), - [anon_sym_select] = ACTIONS(2971), + [sym__identifier_token] = ACTIONS(3855), + [anon_sym_alias] = ACTIONS(3857), + [anon_sym_global] = ACTIONS(3857), + [anon_sym_LBRACK] = ACTIONS(3893), + [anon_sym_COLON] = ACTIONS(3893), + [anon_sym_LPAREN] = ACTIONS(3893), + [anon_sym_LBRACE] = ACTIONS(3861), + [anon_sym_file] = ACTIONS(3857), + [anon_sym_LT] = ACTIONS(3895), + [anon_sym_GT] = ACTIONS(3895), + [anon_sym_where] = ACTIONS(3857), + [anon_sym_QMARK] = ACTIONS(3895), + [anon_sym_notnull] = ACTIONS(3857), + [anon_sym_unmanaged] = ACTIONS(3857), + [anon_sym_BANG] = ACTIONS(3895), + [anon_sym_PLUS_PLUS] = ACTIONS(3893), + [anon_sym_DASH_DASH] = ACTIONS(3893), + [anon_sym_PLUS] = ACTIONS(3895), + [anon_sym_DASH] = ACTIONS(3895), + [anon_sym_STAR] = ACTIONS(3893), + [anon_sym_SLASH] = ACTIONS(3895), + [anon_sym_PERCENT] = ACTIONS(3893), + [anon_sym_CARET] = ACTIONS(3893), + [anon_sym_PIPE] = ACTIONS(3895), + [anon_sym_AMP] = ACTIONS(3895), + [anon_sym_LT_LT] = ACTIONS(3893), + [anon_sym_GT_GT] = ACTIONS(3895), + [anon_sym_GT_GT_GT] = ACTIONS(3893), + [anon_sym_EQ_EQ] = ACTIONS(3893), + [anon_sym_BANG_EQ] = ACTIONS(3893), + [anon_sym_GT_EQ] = ACTIONS(3893), + [anon_sym_LT_EQ] = ACTIONS(3893), + [anon_sym_DOT] = ACTIONS(3895), + [anon_sym_scoped] = ACTIONS(3857), + [anon_sym_EQ_GT] = ACTIONS(3893), + [anon_sym_var] = ACTIONS(3857), + [anon_sym_yield] = ACTIONS(3857), + [anon_sym_switch] = ACTIONS(3895), + [anon_sym_when] = ACTIONS(3895), + [sym_discard] = ACTIONS(3865), + [anon_sym_DOT_DOT] = ACTIONS(3893), + [anon_sym_and] = ACTIONS(3895), + [anon_sym_or] = ACTIONS(3895), + [anon_sym_AMP_AMP] = ACTIONS(3893), + [anon_sym_PIPE_PIPE] = ACTIONS(3893), + [anon_sym_QMARK_QMARK] = ACTIONS(3893), + [anon_sym_from] = ACTIONS(3857), + [anon_sym_into] = ACTIONS(3895), + [anon_sym_join] = ACTIONS(3857), + [anon_sym_on] = ACTIONS(3857), + [anon_sym_equals] = ACTIONS(3857), + [anon_sym_let] = ACTIONS(3857), + [anon_sym_orderby] = ACTIONS(3857), + [anon_sym_ascending] = ACTIONS(3857), + [anon_sym_descending] = ACTIONS(3857), + [anon_sym_group] = ACTIONS(3857), + [anon_sym_by] = ACTIONS(3857), + [anon_sym_select] = ACTIONS(3857), + [anon_sym_as] = ACTIONS(3895), + [anon_sym_is] = ACTIONS(3895), + [anon_sym_DASH_GT] = ACTIONS(3893), + [anon_sym_with] = ACTIONS(3895), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -430850,11 +430496,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2527] = { - [sym_property_pattern_clause] = STATE(2599), - [sym__variable_designation] = STATE(3349), - [sym_parenthesized_variable_designation] = STATE(3340), - [sym_identifier] = STATE(3345), - [sym__reserved_identifier] = STATE(3177), + [sym_property_pattern_clause] = STATE(2576), + [sym__variable_designation] = STATE(3249), + [sym_parenthesized_variable_designation] = STATE(3344), + [sym_identifier] = STATE(3346), + [sym__reserved_identifier] = STATE(3199), [sym_preproc_region] = STATE(2527), [sym_preproc_endregion] = STATE(2527), [sym_preproc_line] = STATE(2527), @@ -430864,68 +430510,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(3875), - [anon_sym_alias] = ACTIONS(3877), - [anon_sym_global] = ACTIONS(3877), - [anon_sym_LBRACK] = ACTIONS(3905), - [anon_sym_COLON] = ACTIONS(3905), - [anon_sym_LPAREN] = ACTIONS(3905), - [anon_sym_LBRACE] = ACTIONS(3881), - [anon_sym_file] = ACTIONS(3877), - [anon_sym_LT] = ACTIONS(3907), - [anon_sym_GT] = ACTIONS(3907), - [anon_sym_where] = ACTIONS(3877), - [anon_sym_QMARK] = ACTIONS(3907), - [anon_sym_notnull] = ACTIONS(3877), - [anon_sym_unmanaged] = ACTIONS(3877), - [anon_sym_BANG] = ACTIONS(3907), - [anon_sym_PLUS_PLUS] = ACTIONS(3905), - [anon_sym_DASH_DASH] = ACTIONS(3905), - [anon_sym_PLUS] = ACTIONS(3907), - [anon_sym_DASH] = ACTIONS(3907), - [anon_sym_STAR] = ACTIONS(3905), - [anon_sym_SLASH] = ACTIONS(3907), - [anon_sym_PERCENT] = ACTIONS(3905), - [anon_sym_CARET] = ACTIONS(3905), - [anon_sym_PIPE] = ACTIONS(3907), - [anon_sym_AMP] = ACTIONS(3907), - [anon_sym_LT_LT] = ACTIONS(3905), - [anon_sym_GT_GT] = ACTIONS(3907), - [anon_sym_GT_GT_GT] = ACTIONS(3905), - [anon_sym_EQ_EQ] = ACTIONS(3905), - [anon_sym_BANG_EQ] = ACTIONS(3905), - [anon_sym_GT_EQ] = ACTIONS(3905), - [anon_sym_LT_EQ] = ACTIONS(3905), - [anon_sym_DOT] = ACTIONS(3907), - [anon_sym_scoped] = ACTIONS(3877), - [anon_sym_EQ_GT] = ACTIONS(3905), - [anon_sym_var] = ACTIONS(3877), - [anon_sym_yield] = ACTIONS(3877), - [anon_sym_switch] = ACTIONS(3907), - [anon_sym_when] = ACTIONS(3907), - [sym_discard] = ACTIONS(3885), - [anon_sym_DOT_DOT] = ACTIONS(3905), - [anon_sym_and] = ACTIONS(3907), - [anon_sym_or] = ACTIONS(3907), - [anon_sym_AMP_AMP] = ACTIONS(3905), - [anon_sym_PIPE_PIPE] = ACTIONS(3905), - [anon_sym_QMARK_QMARK] = ACTIONS(3905), - [anon_sym_from] = ACTIONS(3877), - [anon_sym_into] = ACTIONS(3907), - [anon_sym_join] = ACTIONS(3877), - [anon_sym_on] = ACTIONS(3877), - [anon_sym_equals] = ACTIONS(3877), - [anon_sym_let] = ACTIONS(3877), - [anon_sym_orderby] = ACTIONS(3877), - [anon_sym_ascending] = ACTIONS(3877), - [anon_sym_descending] = ACTIONS(3877), - [anon_sym_group] = ACTIONS(3877), - [anon_sym_by] = ACTIONS(3877), - [anon_sym_select] = ACTIONS(3877), - [anon_sym_as] = ACTIONS(3907), - [anon_sym_is] = ACTIONS(3907), - [anon_sym_DASH_GT] = ACTIONS(3905), - [anon_sym_with] = ACTIONS(3907), + [sym__identifier_token] = ACTIONS(3855), + [anon_sym_alias] = ACTIONS(3857), + [anon_sym_global] = ACTIONS(3857), + [anon_sym_LBRACK] = ACTIONS(3885), + [anon_sym_COLON] = ACTIONS(3885), + [anon_sym_LPAREN] = ACTIONS(3885), + [anon_sym_LBRACE] = ACTIONS(3861), + [anon_sym_file] = ACTIONS(3857), + [anon_sym_LT] = ACTIONS(3887), + [anon_sym_GT] = ACTIONS(3887), + [anon_sym_where] = ACTIONS(3857), + [anon_sym_QMARK] = ACTIONS(3887), + [anon_sym_notnull] = ACTIONS(3857), + [anon_sym_unmanaged] = ACTIONS(3857), + [anon_sym_BANG] = ACTIONS(3887), + [anon_sym_PLUS_PLUS] = ACTIONS(3885), + [anon_sym_DASH_DASH] = ACTIONS(3885), + [anon_sym_PLUS] = ACTIONS(3887), + [anon_sym_DASH] = ACTIONS(3887), + [anon_sym_STAR] = ACTIONS(3885), + [anon_sym_SLASH] = ACTIONS(3887), + [anon_sym_PERCENT] = ACTIONS(3885), + [anon_sym_CARET] = ACTIONS(3885), + [anon_sym_PIPE] = ACTIONS(3887), + [anon_sym_AMP] = ACTIONS(3887), + [anon_sym_LT_LT] = ACTIONS(3885), + [anon_sym_GT_GT] = ACTIONS(3887), + [anon_sym_GT_GT_GT] = ACTIONS(3885), + [anon_sym_EQ_EQ] = ACTIONS(3885), + [anon_sym_BANG_EQ] = ACTIONS(3885), + [anon_sym_GT_EQ] = ACTIONS(3885), + [anon_sym_LT_EQ] = ACTIONS(3885), + [anon_sym_DOT] = ACTIONS(3887), + [anon_sym_scoped] = ACTIONS(3857), + [anon_sym_EQ_GT] = ACTIONS(3885), + [anon_sym_var] = ACTIONS(3857), + [anon_sym_yield] = ACTIONS(3857), + [anon_sym_switch] = ACTIONS(3887), + [anon_sym_when] = ACTIONS(3887), + [sym_discard] = ACTIONS(3865), + [anon_sym_DOT_DOT] = ACTIONS(3885), + [anon_sym_and] = ACTIONS(3887), + [anon_sym_or] = ACTIONS(3887), + [anon_sym_AMP_AMP] = ACTIONS(3885), + [anon_sym_PIPE_PIPE] = ACTIONS(3885), + [anon_sym_QMARK_QMARK] = ACTIONS(3885), + [anon_sym_from] = ACTIONS(3857), + [anon_sym_into] = ACTIONS(3887), + [anon_sym_join] = ACTIONS(3857), + [anon_sym_on] = ACTIONS(3857), + [anon_sym_equals] = ACTIONS(3857), + [anon_sym_let] = ACTIONS(3857), + [anon_sym_orderby] = ACTIONS(3857), + [anon_sym_ascending] = ACTIONS(3857), + [anon_sym_descending] = ACTIONS(3857), + [anon_sym_group] = ACTIONS(3857), + [anon_sym_by] = ACTIONS(3857), + [anon_sym_select] = ACTIONS(3857), + [anon_sym_as] = ACTIONS(3887), + [anon_sym_is] = ACTIONS(3887), + [anon_sym_DASH_GT] = ACTIONS(3885), + [anon_sym_with] = ACTIONS(3887), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -430938,11 +430584,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2528] = { - [sym_property_pattern_clause] = STATE(2573), - [sym__variable_designation] = STATE(3341), - [sym_parenthesized_variable_designation] = STATE(3340), - [sym_identifier] = STATE(3345), - [sym__reserved_identifier] = STATE(3177), + [sym_property_pattern_clause] = STATE(2561), + [sym__variable_designation] = STATE(3447), + [sym_parenthesized_variable_designation] = STATE(3352), + [sym_identifier] = STATE(3355), + [sym__reserved_identifier] = STATE(3199), [sym_preproc_region] = STATE(2528), [sym_preproc_endregion] = STATE(2528), [sym_preproc_line] = STATE(2528), @@ -430952,68 +430598,68 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2528), [sym_preproc_define] = STATE(2528), [sym_preproc_undef] = STATE(2528), - [sym__identifier_token] = ACTIONS(3875), - [anon_sym_alias] = ACTIONS(3877), - [anon_sym_global] = ACTIONS(3877), - [anon_sym_LBRACK] = ACTIONS(3913), - [anon_sym_COLON] = ACTIONS(3913), - [anon_sym_LPAREN] = ACTIONS(3913), - [anon_sym_LBRACE] = ACTIONS(3881), - [anon_sym_file] = ACTIONS(3877), - [anon_sym_LT] = ACTIONS(3915), - [anon_sym_GT] = ACTIONS(3915), - [anon_sym_where] = ACTIONS(3877), - [anon_sym_QMARK] = ACTIONS(3915), - [anon_sym_notnull] = ACTIONS(3877), - [anon_sym_unmanaged] = ACTIONS(3877), - [anon_sym_BANG] = ACTIONS(3915), - [anon_sym_PLUS_PLUS] = ACTIONS(3913), - [anon_sym_DASH_DASH] = ACTIONS(3913), - [anon_sym_PLUS] = ACTIONS(3915), - [anon_sym_DASH] = ACTIONS(3915), - [anon_sym_STAR] = ACTIONS(3913), - [anon_sym_SLASH] = ACTIONS(3915), - [anon_sym_PERCENT] = ACTIONS(3913), - [anon_sym_CARET] = ACTIONS(3913), - [anon_sym_PIPE] = ACTIONS(3915), - [anon_sym_AMP] = ACTIONS(3915), - [anon_sym_LT_LT] = ACTIONS(3913), - [anon_sym_GT_GT] = ACTIONS(3915), - [anon_sym_GT_GT_GT] = ACTIONS(3913), - [anon_sym_EQ_EQ] = ACTIONS(3913), - [anon_sym_BANG_EQ] = ACTIONS(3913), - [anon_sym_GT_EQ] = ACTIONS(3913), - [anon_sym_LT_EQ] = ACTIONS(3913), - [anon_sym_DOT] = ACTIONS(3915), - [anon_sym_scoped] = ACTIONS(3877), - [anon_sym_EQ_GT] = ACTIONS(3913), - [anon_sym_var] = ACTIONS(3877), - [anon_sym_yield] = ACTIONS(3877), - [anon_sym_switch] = ACTIONS(3915), - [anon_sym_when] = ACTIONS(3915), - [sym_discard] = ACTIONS(3885), - [anon_sym_DOT_DOT] = ACTIONS(3913), - [anon_sym_and] = ACTIONS(3915), - [anon_sym_or] = ACTIONS(3915), - [anon_sym_AMP_AMP] = ACTIONS(3913), - [anon_sym_PIPE_PIPE] = ACTIONS(3913), - [anon_sym_QMARK_QMARK] = ACTIONS(3913), - [anon_sym_from] = ACTIONS(3877), - [anon_sym_into] = ACTIONS(3915), - [anon_sym_join] = ACTIONS(3877), - [anon_sym_on] = ACTIONS(3877), - [anon_sym_equals] = ACTIONS(3877), - [anon_sym_let] = ACTIONS(3877), - [anon_sym_orderby] = ACTIONS(3877), - [anon_sym_ascending] = ACTIONS(3877), - [anon_sym_descending] = ACTIONS(3877), - [anon_sym_group] = ACTIONS(3877), - [anon_sym_by] = ACTIONS(3877), - [anon_sym_select] = ACTIONS(3877), - [anon_sym_as] = ACTIONS(3915), - [anon_sym_is] = ACTIONS(3915), - [anon_sym_DASH_GT] = ACTIONS(3913), - [anon_sym_with] = ACTIONS(3915), + [sym__identifier_token] = ACTIONS(3855), + [anon_sym_alias] = ACTIONS(3857), + [anon_sym_global] = ACTIONS(3857), + [anon_sym_LBRACK] = ACTIONS(3893), + [anon_sym_COLON] = ACTIONS(3893), + [anon_sym_LPAREN] = ACTIONS(3893), + [anon_sym_LBRACE] = ACTIONS(3861), + [anon_sym_file] = ACTIONS(3857), + [anon_sym_LT] = ACTIONS(3895), + [anon_sym_GT] = ACTIONS(3895), + [anon_sym_where] = ACTIONS(3857), + [anon_sym_QMARK] = ACTIONS(3895), + [anon_sym_notnull] = ACTIONS(3857), + [anon_sym_unmanaged] = ACTIONS(3857), + [anon_sym_BANG] = ACTIONS(3895), + [anon_sym_PLUS_PLUS] = ACTIONS(3893), + [anon_sym_DASH_DASH] = ACTIONS(3893), + [anon_sym_PLUS] = ACTIONS(3895), + [anon_sym_DASH] = ACTIONS(3895), + [anon_sym_STAR] = ACTIONS(3893), + [anon_sym_SLASH] = ACTIONS(3895), + [anon_sym_PERCENT] = ACTIONS(3893), + [anon_sym_CARET] = ACTIONS(3893), + [anon_sym_PIPE] = ACTIONS(3895), + [anon_sym_AMP] = ACTIONS(3895), + [anon_sym_LT_LT] = ACTIONS(3893), + [anon_sym_GT_GT] = ACTIONS(3895), + [anon_sym_GT_GT_GT] = ACTIONS(3893), + [anon_sym_EQ_EQ] = ACTIONS(3893), + [anon_sym_BANG_EQ] = ACTIONS(3893), + [anon_sym_GT_EQ] = ACTIONS(3893), + [anon_sym_LT_EQ] = ACTIONS(3893), + [anon_sym_DOT] = ACTIONS(3895), + [anon_sym_scoped] = ACTIONS(3857), + [anon_sym_EQ_GT] = ACTIONS(3893), + [anon_sym_var] = ACTIONS(3857), + [anon_sym_yield] = ACTIONS(3857), + [anon_sym_switch] = ACTIONS(3895), + [anon_sym_when] = ACTIONS(3895), + [sym_discard] = ACTIONS(3877), + [anon_sym_DOT_DOT] = ACTIONS(3893), + [anon_sym_and] = ACTIONS(3895), + [anon_sym_or] = ACTIONS(3895), + [anon_sym_AMP_AMP] = ACTIONS(3893), + [anon_sym_PIPE_PIPE] = ACTIONS(3893), + [anon_sym_QMARK_QMARK] = ACTIONS(3893), + [anon_sym_from] = ACTIONS(3857), + [anon_sym_into] = ACTIONS(3857), + [anon_sym_join] = ACTIONS(3857), + [anon_sym_on] = ACTIONS(3857), + [anon_sym_equals] = ACTIONS(3857), + [anon_sym_let] = ACTIONS(3857), + [anon_sym_orderby] = ACTIONS(3857), + [anon_sym_ascending] = ACTIONS(3857), + [anon_sym_descending] = ACTIONS(3857), + [anon_sym_group] = ACTIONS(3857), + [anon_sym_by] = ACTIONS(3857), + [anon_sym_select] = ACTIONS(3857), + [anon_sym_as] = ACTIONS(3895), + [anon_sym_is] = ACTIONS(3895), + [anon_sym_DASH_GT] = ACTIONS(3893), + [anon_sym_with] = ACTIONS(3895), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -431026,26 +430672,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2529] = { - [sym_modifier] = STATE(3878), - [sym_variable_declaration] = STATE(7742), - [sym__name] = STATE(4390), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(4096), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(4109), - [sym_type] = STATE(5919), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_identifier] = STATE(4087), - [sym__reserved_identifier] = STATE(3691), + [sym_property_pattern_clause] = STATE(2562), + [sym__variable_designation] = STATE(3471), + [sym_parenthesized_variable_designation] = STATE(3352), + [sym_identifier] = STATE(3355), + [sym__reserved_identifier] = STATE(3199), [sym_preproc_region] = STATE(2529), [sym_preproc_endregion] = STATE(2529), [sym_preproc_line] = STATE(2529), @@ -431055,53 +430686,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), - [aux_sym__class_declaration_initializer_repeat2] = STATE(3643), - [sym__identifier_token] = ACTIONS(2967), - [anon_sym_extern] = ACTIONS(647), - [anon_sym_alias] = ACTIONS(2971), - [anon_sym_global] = ACTIONS(2971), - [anon_sym_unsafe] = ACTIONS(647), - [anon_sym_static] = ACTIONS(647), - [anon_sym_LPAREN] = ACTIONS(2979), - [anon_sym_ref] = ACTIONS(3452), - [anon_sym_delegate] = ACTIONS(3454), - [anon_sym_abstract] = ACTIONS(647), - [anon_sym_async] = ACTIONS(647), - [anon_sym_const] = ACTIONS(647), - [anon_sym_file] = ACTIONS(3925), - [anon_sym_fixed] = ACTIONS(647), - [anon_sym_internal] = ACTIONS(647), - [anon_sym_new] = ACTIONS(647), - [anon_sym_override] = ACTIONS(647), - [anon_sym_partial] = ACTIONS(647), - [anon_sym_private] = ACTIONS(647), - [anon_sym_protected] = ACTIONS(647), - [anon_sym_public] = ACTIONS(647), - [anon_sym_readonly] = ACTIONS(647), - [anon_sym_required] = ACTIONS(647), - [anon_sym_sealed] = ACTIONS(647), - [anon_sym_virtual] = ACTIONS(647), - [anon_sym_volatile] = ACTIONS(647), - [anon_sym_where] = ACTIONS(2971), - [anon_sym_notnull] = ACTIONS(2971), - [anon_sym_unmanaged] = ACTIONS(2971), - [anon_sym_scoped] = ACTIONS(2997), - [anon_sym_var] = ACTIONS(2999), - [sym_predefined_type] = ACTIONS(3001), - [anon_sym_yield] = ACTIONS(2971), - [anon_sym_when] = ACTIONS(2971), - [anon_sym_from] = ACTIONS(2971), - [anon_sym_into] = ACTIONS(2971), - [anon_sym_join] = ACTIONS(2971), - [anon_sym_on] = ACTIONS(2971), - [anon_sym_equals] = ACTIONS(2971), - [anon_sym_let] = ACTIONS(2971), - [anon_sym_orderby] = ACTIONS(2971), - [anon_sym_ascending] = ACTIONS(2971), - [anon_sym_descending] = ACTIONS(2971), - [anon_sym_group] = ACTIONS(2971), - [anon_sym_by] = ACTIONS(2971), - [anon_sym_select] = ACTIONS(2971), + [sym__identifier_token] = ACTIONS(3855), + [anon_sym_alias] = ACTIONS(3857), + [anon_sym_global] = ACTIONS(3857), + [anon_sym_LBRACK] = ACTIONS(3885), + [anon_sym_COLON] = ACTIONS(3885), + [anon_sym_LPAREN] = ACTIONS(3885), + [anon_sym_LBRACE] = ACTIONS(3861), + [anon_sym_file] = ACTIONS(3857), + [anon_sym_LT] = ACTIONS(3887), + [anon_sym_GT] = ACTIONS(3887), + [anon_sym_where] = ACTIONS(3857), + [anon_sym_QMARK] = ACTIONS(3887), + [anon_sym_notnull] = ACTIONS(3857), + [anon_sym_unmanaged] = ACTIONS(3857), + [anon_sym_BANG] = ACTIONS(3887), + [anon_sym_PLUS_PLUS] = ACTIONS(3885), + [anon_sym_DASH_DASH] = ACTIONS(3885), + [anon_sym_PLUS] = ACTIONS(3887), + [anon_sym_DASH] = ACTIONS(3887), + [anon_sym_STAR] = ACTIONS(3885), + [anon_sym_SLASH] = ACTIONS(3887), + [anon_sym_PERCENT] = ACTIONS(3885), + [anon_sym_CARET] = ACTIONS(3885), + [anon_sym_PIPE] = ACTIONS(3887), + [anon_sym_AMP] = ACTIONS(3887), + [anon_sym_LT_LT] = ACTIONS(3885), + [anon_sym_GT_GT] = ACTIONS(3887), + [anon_sym_GT_GT_GT] = ACTIONS(3885), + [anon_sym_EQ_EQ] = ACTIONS(3885), + [anon_sym_BANG_EQ] = ACTIONS(3885), + [anon_sym_GT_EQ] = ACTIONS(3885), + [anon_sym_LT_EQ] = ACTIONS(3885), + [anon_sym_DOT] = ACTIONS(3887), + [anon_sym_scoped] = ACTIONS(3857), + [anon_sym_EQ_GT] = ACTIONS(3885), + [anon_sym_var] = ACTIONS(3857), + [anon_sym_yield] = ACTIONS(3857), + [anon_sym_switch] = ACTIONS(3887), + [anon_sym_when] = ACTIONS(3887), + [sym_discard] = ACTIONS(3877), + [anon_sym_DOT_DOT] = ACTIONS(3885), + [anon_sym_and] = ACTIONS(3887), + [anon_sym_or] = ACTIONS(3887), + [anon_sym_AMP_AMP] = ACTIONS(3885), + [anon_sym_PIPE_PIPE] = ACTIONS(3885), + [anon_sym_QMARK_QMARK] = ACTIONS(3885), + [anon_sym_from] = ACTIONS(3857), + [anon_sym_into] = ACTIONS(3857), + [anon_sym_join] = ACTIONS(3857), + [anon_sym_on] = ACTIONS(3857), + [anon_sym_equals] = ACTIONS(3857), + [anon_sym_let] = ACTIONS(3857), + [anon_sym_orderby] = ACTIONS(3857), + [anon_sym_ascending] = ACTIONS(3857), + [anon_sym_descending] = ACTIONS(3857), + [anon_sym_group] = ACTIONS(3857), + [anon_sym_by] = ACTIONS(3857), + [anon_sym_select] = ACTIONS(3857), + [anon_sym_as] = ACTIONS(3887), + [anon_sym_is] = ACTIONS(3887), + [anon_sym_DASH_GT] = ACTIONS(3885), + [anon_sym_with] = ACTIONS(3887), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -431114,26 +430760,26 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2530] = { - [sym_modifier] = STATE(3878), - [sym_variable_declaration] = STATE(7657), - [sym__name] = STATE(4390), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(4096), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(4109), - [sym_type] = STATE(5921), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_identifier] = STATE(4087), - [sym__reserved_identifier] = STATE(3691), + [sym_modifier] = STATE(3845), + [sym_variable_declaration] = STATE(7667), + [sym__name] = STATE(4369), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(4068), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(4073), + [sym_type] = STATE(5903), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_identifier] = STATE(4081), + [sym__reserved_identifier] = STATE(3654), [sym_preproc_region] = STATE(2530), [sym_preproc_endregion] = STATE(2530), [sym_preproc_line] = STATE(2530), @@ -431143,53 +430789,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2530), [sym_preproc_define] = STATE(2530), [sym_preproc_undef] = STATE(2530), - [aux_sym__class_declaration_initializer_repeat2] = STATE(3643), - [sym__identifier_token] = ACTIONS(2967), - [anon_sym_extern] = ACTIONS(647), - [anon_sym_alias] = ACTIONS(2971), - [anon_sym_global] = ACTIONS(2971), - [anon_sym_unsafe] = ACTIONS(647), - [anon_sym_static] = ACTIONS(647), - [anon_sym_LPAREN] = ACTIONS(2979), - [anon_sym_ref] = ACTIONS(3452), - [anon_sym_delegate] = ACTIONS(3454), - [anon_sym_abstract] = ACTIONS(647), - [anon_sym_async] = ACTIONS(647), - [anon_sym_const] = ACTIONS(647), - [anon_sym_file] = ACTIONS(3925), - [anon_sym_fixed] = ACTIONS(647), - [anon_sym_internal] = ACTIONS(647), - [anon_sym_new] = ACTIONS(647), - [anon_sym_override] = ACTIONS(647), - [anon_sym_partial] = ACTIONS(647), - [anon_sym_private] = ACTIONS(647), - [anon_sym_protected] = ACTIONS(647), - [anon_sym_public] = ACTIONS(647), - [anon_sym_readonly] = ACTIONS(647), - [anon_sym_required] = ACTIONS(647), - [anon_sym_sealed] = ACTIONS(647), - [anon_sym_virtual] = ACTIONS(647), - [anon_sym_volatile] = ACTIONS(647), - [anon_sym_where] = ACTIONS(2971), - [anon_sym_notnull] = ACTIONS(2971), - [anon_sym_unmanaged] = ACTIONS(2971), - [anon_sym_scoped] = ACTIONS(2997), - [anon_sym_var] = ACTIONS(2999), - [sym_predefined_type] = ACTIONS(3001), - [anon_sym_yield] = ACTIONS(2971), - [anon_sym_when] = ACTIONS(2971), - [anon_sym_from] = ACTIONS(2971), - [anon_sym_into] = ACTIONS(2971), - [anon_sym_join] = ACTIONS(2971), - [anon_sym_on] = ACTIONS(2971), - [anon_sym_equals] = ACTIONS(2971), - [anon_sym_let] = ACTIONS(2971), - [anon_sym_orderby] = ACTIONS(2971), - [anon_sym_ascending] = ACTIONS(2971), - [anon_sym_descending] = ACTIONS(2971), - [anon_sym_group] = ACTIONS(2971), - [anon_sym_by] = ACTIONS(2971), - [anon_sym_select] = ACTIONS(2971), + [aux_sym__class_declaration_initializer_repeat2] = STATE(2542), + [sym__identifier_token] = ACTIONS(2965), + [anon_sym_extern] = ACTIONS(645), + [anon_sym_alias] = ACTIONS(2969), + [anon_sym_global] = ACTIONS(2969), + [anon_sym_unsafe] = ACTIONS(645), + [anon_sym_static] = ACTIONS(645), + [anon_sym_LPAREN] = ACTIONS(4213), + [anon_sym_ref] = ACTIONS(3436), + [anon_sym_delegate] = ACTIONS(3438), + [anon_sym_abstract] = ACTIONS(645), + [anon_sym_async] = ACTIONS(645), + [anon_sym_const] = ACTIONS(645), + [anon_sym_file] = ACTIONS(3905), + [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(2969), + [anon_sym_notnull] = ACTIONS(2969), + [anon_sym_unmanaged] = ACTIONS(2969), + [anon_sym_scoped] = ACTIONS(2993), + [anon_sym_var] = ACTIONS(2995), + [sym_predefined_type] = ACTIONS(2997), + [anon_sym_yield] = ACTIONS(2969), + [anon_sym_when] = ACTIONS(2969), + [anon_sym_from] = ACTIONS(2969), + [anon_sym_into] = ACTIONS(2969), + [anon_sym_join] = ACTIONS(2969), + [anon_sym_on] = ACTIONS(2969), + [anon_sym_equals] = ACTIONS(2969), + [anon_sym_let] = ACTIONS(2969), + [anon_sym_orderby] = ACTIONS(2969), + [anon_sym_ascending] = ACTIONS(2969), + [anon_sym_descending] = ACTIONS(2969), + [anon_sym_group] = ACTIONS(2969), + [anon_sym_by] = ACTIONS(2969), + [anon_sym_select] = ACTIONS(2969), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -431202,26 +430848,25 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2531] = { - [sym_modifier] = STATE(3878), - [sym_variable_declaration] = STATE(7657), - [sym__name] = STATE(4390), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(4096), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(4109), - [sym_type] = STATE(5921), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_identifier] = STATE(4087), - [sym__reserved_identifier] = STATE(3691), + [sym_argument_list] = STATE(2922), + [sym__name] = STATE(3086), + [sym_alias_qualified_name] = STATE(2976), + [sym__simple_name] = STATE(2976), + [sym_qualified_name] = STATE(2976), + [sym_generic_name] = STATE(3030), + [sym_type] = STATE(3472), + [sym_implicit_type] = STATE(2977), + [sym_array_type] = STATE(2908), + [sym__array_base_type] = STATE(7236), + [sym_nullable_type] = STATE(2979), + [sym_pointer_type] = STATE(2979), + [sym__pointer_base_type] = STATE(7622), + [sym_function_pointer_type] = STATE(2979), + [sym_ref_type] = STATE(2977), + [sym_scoped_type] = STATE(2977), + [sym_tuple_type] = STATE(2980), + [sym_identifier] = STATE(2927), + [sym__reserved_identifier] = STATE(2916), [sym_preproc_region] = STATE(2531), [sym_preproc_endregion] = STATE(2531), [sym_preproc_line] = STATE(2531), @@ -431231,53 +430876,54 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2531), [sym_preproc_define] = STATE(2531), [sym_preproc_undef] = STATE(2531), - [aux_sym__class_declaration_initializer_repeat2] = STATE(2535), - [sym__identifier_token] = ACTIONS(2967), - [anon_sym_extern] = ACTIONS(647), - [anon_sym_alias] = ACTIONS(2971), - [anon_sym_global] = ACTIONS(2971), - [anon_sym_unsafe] = ACTIONS(647), - [anon_sym_static] = ACTIONS(647), - [anon_sym_LPAREN] = ACTIONS(4235), - [anon_sym_ref] = ACTIONS(3452), - [anon_sym_delegate] = ACTIONS(3454), - [anon_sym_abstract] = ACTIONS(647), - [anon_sym_async] = ACTIONS(647), - [anon_sym_const] = ACTIONS(647), - [anon_sym_file] = ACTIONS(3925), - [anon_sym_fixed] = ACTIONS(647), - [anon_sym_internal] = ACTIONS(647), - [anon_sym_new] = ACTIONS(647), - [anon_sym_override] = ACTIONS(647), - [anon_sym_partial] = ACTIONS(647), - [anon_sym_private] = ACTIONS(647), - [anon_sym_protected] = ACTIONS(647), - [anon_sym_public] = ACTIONS(647), - [anon_sym_readonly] = ACTIONS(647), - [anon_sym_required] = ACTIONS(647), - [anon_sym_sealed] = ACTIONS(647), - [anon_sym_virtual] = ACTIONS(647), - [anon_sym_volatile] = ACTIONS(647), - [anon_sym_where] = ACTIONS(2971), - [anon_sym_notnull] = ACTIONS(2971), - [anon_sym_unmanaged] = ACTIONS(2971), - [anon_sym_scoped] = ACTIONS(2997), - [anon_sym_var] = ACTIONS(2999), - [sym_predefined_type] = ACTIONS(3001), - [anon_sym_yield] = ACTIONS(2971), - [anon_sym_when] = ACTIONS(2971), - [anon_sym_from] = ACTIONS(2971), - [anon_sym_into] = ACTIONS(2971), - [anon_sym_join] = ACTIONS(2971), - [anon_sym_on] = ACTIONS(2971), - [anon_sym_equals] = ACTIONS(2971), - [anon_sym_let] = ACTIONS(2971), - [anon_sym_orderby] = ACTIONS(2971), - [anon_sym_ascending] = ACTIONS(2971), - [anon_sym_descending] = ACTIONS(2971), - [anon_sym_group] = ACTIONS(2971), - [anon_sym_by] = ACTIONS(2971), - [anon_sym_select] = ACTIONS(2971), + [sym__identifier_token] = ACTIONS(3871), + [anon_sym_extern] = ACTIONS(3466), + [anon_sym_alias] = ACTIONS(3873), + [anon_sym_global] = ACTIONS(3873), + [anon_sym_unsafe] = ACTIONS(3466), + [anon_sym_static] = ACTIONS(3466), + [anon_sym_LBRACK] = ACTIONS(4009), + [anon_sym_LPAREN] = ACTIONS(4011), + [anon_sym_ref] = ACTIONS(3875), + [anon_sym_LBRACE] = ACTIONS(4013), + [anon_sym_delegate] = ACTIONS(4015), + [anon_sym_abstract] = ACTIONS(3466), + [anon_sym_async] = ACTIONS(3466), + [anon_sym_const] = ACTIONS(3466), + [anon_sym_file] = ACTIONS(3873), + [anon_sym_fixed] = ACTIONS(3466), + [anon_sym_internal] = ACTIONS(3466), + [anon_sym_new] = ACTIONS(3466), + [anon_sym_override] = ACTIONS(3466), + [anon_sym_partial] = ACTIONS(3466), + [anon_sym_private] = ACTIONS(3466), + [anon_sym_protected] = ACTIONS(3466), + [anon_sym_public] = ACTIONS(3466), + [anon_sym_readonly] = ACTIONS(3466), + [anon_sym_required] = ACTIONS(3466), + [anon_sym_sealed] = ACTIONS(3466), + [anon_sym_virtual] = ACTIONS(3466), + [anon_sym_volatile] = ACTIONS(3466), + [anon_sym_where] = ACTIONS(3873), + [anon_sym_notnull] = ACTIONS(3873), + [anon_sym_unmanaged] = ACTIONS(3873), + [anon_sym_scoped] = ACTIONS(4017), + [anon_sym_var] = ACTIONS(4019), + [sym_predefined_type] = ACTIONS(4021), + [anon_sym_yield] = ACTIONS(3873), + [anon_sym_when] = ACTIONS(3873), + [anon_sym_from] = ACTIONS(3873), + [anon_sym_into] = ACTIONS(3873), + [anon_sym_join] = ACTIONS(3873), + [anon_sym_on] = ACTIONS(3873), + [anon_sym_equals] = ACTIONS(3873), + [anon_sym_let] = ACTIONS(3873), + [anon_sym_orderby] = ACTIONS(3873), + [anon_sym_ascending] = ACTIONS(3873), + [anon_sym_descending] = ACTIONS(3873), + [anon_sym_group] = ACTIONS(3873), + [anon_sym_by] = ACTIONS(3873), + [anon_sym_select] = ACTIONS(3873), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -431290,26 +430936,26 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2532] = { - [sym_modifier] = STATE(3878), - [sym_variable_declaration] = STATE(7435), - [sym__name] = STATE(4390), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(4096), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(4109), - [sym_type] = STATE(5921), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_identifier] = STATE(4087), - [sym__reserved_identifier] = STATE(3691), + [sym_modifier] = STATE(3845), + [sym_variable_declaration] = STATE(7326), + [sym__name] = STATE(4369), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(4068), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(4073), + [sym_type] = STATE(5903), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_identifier] = STATE(4081), + [sym__reserved_identifier] = STATE(3654), [sym_preproc_region] = STATE(2532), [sym_preproc_endregion] = STATE(2532), [sym_preproc_line] = STATE(2532), @@ -431319,53 +430965,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2532), [sym_preproc_define] = STATE(2532), [sym_preproc_undef] = STATE(2532), - [aux_sym__class_declaration_initializer_repeat2] = STATE(3643), - [sym__identifier_token] = ACTIONS(2967), - [anon_sym_extern] = ACTIONS(647), - [anon_sym_alias] = ACTIONS(2971), - [anon_sym_global] = ACTIONS(2971), - [anon_sym_unsafe] = ACTIONS(647), - [anon_sym_static] = ACTIONS(647), - [anon_sym_LPAREN] = ACTIONS(2979), - [anon_sym_ref] = ACTIONS(3452), - [anon_sym_delegate] = ACTIONS(3454), - [anon_sym_abstract] = ACTIONS(647), - [anon_sym_async] = ACTIONS(647), - [anon_sym_const] = ACTIONS(647), - [anon_sym_file] = ACTIONS(3925), - [anon_sym_fixed] = ACTIONS(647), - [anon_sym_internal] = ACTIONS(647), - [anon_sym_new] = ACTIONS(647), - [anon_sym_override] = ACTIONS(647), - [anon_sym_partial] = ACTIONS(647), - [anon_sym_private] = ACTIONS(647), - [anon_sym_protected] = ACTIONS(647), - [anon_sym_public] = ACTIONS(647), - [anon_sym_readonly] = ACTIONS(647), - [anon_sym_required] = ACTIONS(647), - [anon_sym_sealed] = ACTIONS(647), - [anon_sym_virtual] = ACTIONS(647), - [anon_sym_volatile] = ACTIONS(647), - [anon_sym_where] = ACTIONS(2971), - [anon_sym_notnull] = ACTIONS(2971), - [anon_sym_unmanaged] = ACTIONS(2971), - [anon_sym_scoped] = ACTIONS(2997), - [anon_sym_var] = ACTIONS(2999), - [sym_predefined_type] = ACTIONS(3001), - [anon_sym_yield] = ACTIONS(2971), - [anon_sym_when] = ACTIONS(2971), - [anon_sym_from] = ACTIONS(2971), - [anon_sym_into] = ACTIONS(2971), - [anon_sym_join] = ACTIONS(2971), - [anon_sym_on] = ACTIONS(2971), - [anon_sym_equals] = ACTIONS(2971), - [anon_sym_let] = ACTIONS(2971), - [anon_sym_orderby] = ACTIONS(2971), - [anon_sym_ascending] = ACTIONS(2971), - [anon_sym_descending] = ACTIONS(2971), - [anon_sym_group] = ACTIONS(2971), - [anon_sym_by] = ACTIONS(2971), - [anon_sym_select] = ACTIONS(2971), + [aux_sym__class_declaration_initializer_repeat2] = STATE(3585), + [sym__identifier_token] = ACTIONS(2965), + [anon_sym_extern] = ACTIONS(645), + [anon_sym_alias] = ACTIONS(2969), + [anon_sym_global] = ACTIONS(2969), + [anon_sym_unsafe] = ACTIONS(645), + [anon_sym_static] = ACTIONS(645), + [anon_sym_LPAREN] = ACTIONS(2977), + [anon_sym_ref] = ACTIONS(3436), + [anon_sym_delegate] = ACTIONS(3438), + [anon_sym_abstract] = ACTIONS(645), + [anon_sym_async] = ACTIONS(645), + [anon_sym_const] = ACTIONS(645), + [anon_sym_file] = ACTIONS(3905), + [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(2969), + [anon_sym_notnull] = ACTIONS(2969), + [anon_sym_unmanaged] = ACTIONS(2969), + [anon_sym_scoped] = ACTIONS(2993), + [anon_sym_var] = ACTIONS(2995), + [sym_predefined_type] = ACTIONS(2997), + [anon_sym_yield] = ACTIONS(2969), + [anon_sym_when] = ACTIONS(2969), + [anon_sym_from] = ACTIONS(2969), + [anon_sym_into] = ACTIONS(2969), + [anon_sym_join] = ACTIONS(2969), + [anon_sym_on] = ACTIONS(2969), + [anon_sym_equals] = ACTIONS(2969), + [anon_sym_let] = ACTIONS(2969), + [anon_sym_orderby] = ACTIONS(2969), + [anon_sym_ascending] = ACTIONS(2969), + [anon_sym_descending] = ACTIONS(2969), + [anon_sym_group] = ACTIONS(2969), + [anon_sym_by] = ACTIONS(2969), + [anon_sym_select] = ACTIONS(2969), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -431378,25 +431024,26 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2533] = { - [sym_argument_list] = STATE(2946), - [sym__name] = STATE(3072), - [sym_alias_qualified_name] = STATE(3029), - [sym__simple_name] = STATE(3029), - [sym_qualified_name] = STATE(3029), - [sym_generic_name] = STATE(2985), - [sym_type] = STATE(3383), - [sym_implicit_type] = STATE(3054), - [sym_array_type] = STATE(4339), - [sym__array_base_type] = STATE(7267), - [sym_nullable_type] = STATE(3012), - [sym_pointer_type] = STATE(3012), - [sym__pointer_base_type] = STATE(7693), - [sym_function_pointer_type] = STATE(3012), - [sym_ref_type] = STATE(3054), - [sym_scoped_type] = STATE(3054), - [sym_tuple_type] = STATE(3058), - [sym_identifier] = STATE(2923), - [sym__reserved_identifier] = STATE(2945), + [sym_modifier] = STATE(3845), + [sym_variable_declaration] = STATE(7573), + [sym__name] = STATE(4369), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(4068), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(4073), + [sym_type] = STATE(5903), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_identifier] = STATE(4081), + [sym__reserved_identifier] = STATE(3654), [sym_preproc_region] = STATE(2533), [sym_preproc_endregion] = STATE(2533), [sym_preproc_line] = STATE(2533), @@ -431406,54 +431053,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2533), [sym_preproc_define] = STATE(2533), [sym_preproc_undef] = STATE(2533), - [sym__identifier_token] = ACTIONS(3887), - [anon_sym_extern] = ACTIONS(3482), - [anon_sym_alias] = ACTIONS(3889), - [anon_sym_global] = ACTIONS(3889), - [anon_sym_unsafe] = ACTIONS(3482), - [anon_sym_static] = ACTIONS(3482), - [anon_sym_LBRACK] = ACTIONS(4036), - [anon_sym_LPAREN] = ACTIONS(4038), - [anon_sym_ref] = ACTIONS(3891), - [anon_sym_LBRACE] = ACTIONS(4040), - [anon_sym_delegate] = ACTIONS(4042), - [anon_sym_abstract] = ACTIONS(3482), - [anon_sym_async] = ACTIONS(3482), - [anon_sym_const] = ACTIONS(3482), - [anon_sym_file] = ACTIONS(3889), - [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(3889), - [anon_sym_notnull] = ACTIONS(3889), - [anon_sym_unmanaged] = ACTIONS(3889), - [anon_sym_scoped] = ACTIONS(4044), - [anon_sym_var] = ACTIONS(4046), - [sym_predefined_type] = ACTIONS(4048), - [anon_sym_yield] = ACTIONS(3889), - [anon_sym_when] = ACTIONS(3889), - [anon_sym_from] = ACTIONS(3889), - [anon_sym_into] = ACTIONS(3889), - [anon_sym_join] = ACTIONS(3889), - [anon_sym_on] = ACTIONS(3889), - [anon_sym_equals] = ACTIONS(3889), - [anon_sym_let] = ACTIONS(3889), - [anon_sym_orderby] = ACTIONS(3889), - [anon_sym_ascending] = ACTIONS(3889), - [anon_sym_descending] = ACTIONS(3889), - [anon_sym_group] = ACTIONS(3889), - [anon_sym_by] = ACTIONS(3889), - [anon_sym_select] = ACTIONS(3889), + [aux_sym__class_declaration_initializer_repeat2] = STATE(2517), + [sym__identifier_token] = ACTIONS(2965), + [anon_sym_extern] = ACTIONS(645), + [anon_sym_alias] = ACTIONS(2969), + [anon_sym_global] = ACTIONS(2969), + [anon_sym_unsafe] = ACTIONS(645), + [anon_sym_static] = ACTIONS(645), + [anon_sym_LPAREN] = ACTIONS(4215), + [anon_sym_ref] = ACTIONS(3436), + [anon_sym_delegate] = ACTIONS(3438), + [anon_sym_abstract] = ACTIONS(645), + [anon_sym_async] = ACTIONS(645), + [anon_sym_const] = ACTIONS(645), + [anon_sym_file] = ACTIONS(3905), + [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(2969), + [anon_sym_notnull] = ACTIONS(2969), + [anon_sym_unmanaged] = ACTIONS(2969), + [anon_sym_scoped] = ACTIONS(2993), + [anon_sym_var] = ACTIONS(2995), + [sym_predefined_type] = ACTIONS(2997), + [anon_sym_yield] = ACTIONS(2969), + [anon_sym_when] = ACTIONS(2969), + [anon_sym_from] = ACTIONS(2969), + [anon_sym_into] = ACTIONS(2969), + [anon_sym_join] = ACTIONS(2969), + [anon_sym_on] = ACTIONS(2969), + [anon_sym_equals] = ACTIONS(2969), + [anon_sym_let] = ACTIONS(2969), + [anon_sym_orderby] = ACTIONS(2969), + [anon_sym_ascending] = ACTIONS(2969), + [anon_sym_descending] = ACTIONS(2969), + [anon_sym_group] = ACTIONS(2969), + [anon_sym_by] = ACTIONS(2969), + [anon_sym_select] = ACTIONS(2969), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -431466,26 +431112,26 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2534] = { - [sym_modifier] = STATE(3878), - [sym_variable_declaration] = STATE(7475), - [sym__name] = STATE(4390), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(4096), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(4109), - [sym_type] = STATE(5921), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_identifier] = STATE(4087), - [sym__reserved_identifier] = STATE(3691), + [sym_modifier] = STATE(3845), + [sym_variable_declaration] = STATE(7398), + [sym__name] = STATE(4369), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(4068), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(4073), + [sym_type] = STATE(5903), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_identifier] = STATE(4081), + [sym__reserved_identifier] = STATE(3654), [sym_preproc_region] = STATE(2534), [sym_preproc_endregion] = STATE(2534), [sym_preproc_line] = STATE(2534), @@ -431495,53 +431141,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2534), [sym_preproc_define] = STATE(2534), [sym_preproc_undef] = STATE(2534), - [aux_sym__class_declaration_initializer_repeat2] = STATE(3643), - [sym__identifier_token] = ACTIONS(2967), - [anon_sym_extern] = ACTIONS(647), - [anon_sym_alias] = ACTIONS(2971), - [anon_sym_global] = ACTIONS(2971), - [anon_sym_unsafe] = ACTIONS(647), - [anon_sym_static] = ACTIONS(647), - [anon_sym_LPAREN] = ACTIONS(2979), - [anon_sym_ref] = ACTIONS(3452), - [anon_sym_delegate] = ACTIONS(3454), - [anon_sym_abstract] = ACTIONS(647), - [anon_sym_async] = ACTIONS(647), - [anon_sym_const] = ACTIONS(647), - [anon_sym_file] = ACTIONS(3925), - [anon_sym_fixed] = ACTIONS(647), - [anon_sym_internal] = ACTIONS(647), - [anon_sym_new] = ACTIONS(647), - [anon_sym_override] = ACTIONS(647), - [anon_sym_partial] = ACTIONS(647), - [anon_sym_private] = ACTIONS(647), - [anon_sym_protected] = ACTIONS(647), - [anon_sym_public] = ACTIONS(647), - [anon_sym_readonly] = ACTIONS(647), - [anon_sym_required] = ACTIONS(647), - [anon_sym_sealed] = ACTIONS(647), - [anon_sym_virtual] = ACTIONS(647), - [anon_sym_volatile] = ACTIONS(647), - [anon_sym_where] = ACTIONS(2971), - [anon_sym_notnull] = ACTIONS(2971), - [anon_sym_unmanaged] = ACTIONS(2971), - [anon_sym_scoped] = ACTIONS(2997), - [anon_sym_var] = ACTIONS(2999), - [sym_predefined_type] = ACTIONS(3001), - [anon_sym_yield] = ACTIONS(2971), - [anon_sym_when] = ACTIONS(2971), - [anon_sym_from] = ACTIONS(2971), - [anon_sym_into] = ACTIONS(2971), - [anon_sym_join] = ACTIONS(2971), - [anon_sym_on] = ACTIONS(2971), - [anon_sym_equals] = ACTIONS(2971), - [anon_sym_let] = ACTIONS(2971), - [anon_sym_orderby] = ACTIONS(2971), - [anon_sym_ascending] = ACTIONS(2971), - [anon_sym_descending] = ACTIONS(2971), - [anon_sym_group] = ACTIONS(2971), - [anon_sym_by] = ACTIONS(2971), - [anon_sym_select] = ACTIONS(2971), + [aux_sym__class_declaration_initializer_repeat2] = STATE(2522), + [sym__identifier_token] = ACTIONS(2965), + [anon_sym_extern] = ACTIONS(645), + [anon_sym_alias] = ACTIONS(2969), + [anon_sym_global] = ACTIONS(2969), + [anon_sym_unsafe] = ACTIONS(645), + [anon_sym_static] = ACTIONS(645), + [anon_sym_LPAREN] = ACTIONS(4207), + [anon_sym_ref] = ACTIONS(3436), + [anon_sym_delegate] = ACTIONS(3438), + [anon_sym_abstract] = ACTIONS(645), + [anon_sym_async] = ACTIONS(645), + [anon_sym_const] = ACTIONS(645), + [anon_sym_file] = ACTIONS(3905), + [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(2969), + [anon_sym_notnull] = ACTIONS(2969), + [anon_sym_unmanaged] = ACTIONS(2969), + [anon_sym_scoped] = ACTIONS(2993), + [anon_sym_var] = ACTIONS(2995), + [sym_predefined_type] = ACTIONS(2997), + [anon_sym_yield] = ACTIONS(2969), + [anon_sym_when] = ACTIONS(2969), + [anon_sym_from] = ACTIONS(2969), + [anon_sym_into] = ACTIONS(2969), + [anon_sym_join] = ACTIONS(2969), + [anon_sym_on] = ACTIONS(2969), + [anon_sym_equals] = ACTIONS(2969), + [anon_sym_let] = ACTIONS(2969), + [anon_sym_orderby] = ACTIONS(2969), + [anon_sym_ascending] = ACTIONS(2969), + [anon_sym_descending] = ACTIONS(2969), + [anon_sym_group] = ACTIONS(2969), + [anon_sym_by] = ACTIONS(2969), + [anon_sym_select] = ACTIONS(2969), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -431554,26 +431200,26 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2535] = { - [sym_modifier] = STATE(3878), - [sym_variable_declaration] = STATE(7679), - [sym__name] = STATE(4390), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(4096), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(4109), - [sym_type] = STATE(5921), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_identifier] = STATE(4087), - [sym__reserved_identifier] = STATE(3691), + [sym_modifier] = STATE(3845), + [sym_variable_declaration] = STATE(7398), + [sym__name] = STATE(4369), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(4068), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(4073), + [sym_type] = STATE(5911), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_identifier] = STATE(4081), + [sym__reserved_identifier] = STATE(3654), [sym_preproc_region] = STATE(2535), [sym_preproc_endregion] = STATE(2535), [sym_preproc_line] = STATE(2535), @@ -431583,53 +431229,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2535), [sym_preproc_define] = STATE(2535), [sym_preproc_undef] = STATE(2535), - [aux_sym__class_declaration_initializer_repeat2] = STATE(3643), - [sym__identifier_token] = ACTIONS(2967), - [anon_sym_extern] = ACTIONS(647), - [anon_sym_alias] = ACTIONS(2971), - [anon_sym_global] = ACTIONS(2971), - [anon_sym_unsafe] = ACTIONS(647), - [anon_sym_static] = ACTIONS(647), - [anon_sym_LPAREN] = ACTIONS(2979), - [anon_sym_ref] = ACTIONS(3452), - [anon_sym_delegate] = ACTIONS(3454), - [anon_sym_abstract] = ACTIONS(647), - [anon_sym_async] = ACTIONS(647), - [anon_sym_const] = ACTIONS(647), - [anon_sym_file] = ACTIONS(3925), - [anon_sym_fixed] = ACTIONS(647), - [anon_sym_internal] = ACTIONS(647), - [anon_sym_new] = ACTIONS(647), - [anon_sym_override] = ACTIONS(647), - [anon_sym_partial] = ACTIONS(647), - [anon_sym_private] = ACTIONS(647), - [anon_sym_protected] = ACTIONS(647), - [anon_sym_public] = ACTIONS(647), - [anon_sym_readonly] = ACTIONS(647), - [anon_sym_required] = ACTIONS(647), - [anon_sym_sealed] = ACTIONS(647), - [anon_sym_virtual] = ACTIONS(647), - [anon_sym_volatile] = ACTIONS(647), - [anon_sym_where] = ACTIONS(2971), - [anon_sym_notnull] = ACTIONS(2971), - [anon_sym_unmanaged] = ACTIONS(2971), - [anon_sym_scoped] = ACTIONS(2997), - [anon_sym_var] = ACTIONS(2999), - [sym_predefined_type] = ACTIONS(3001), - [anon_sym_yield] = ACTIONS(2971), - [anon_sym_when] = ACTIONS(2971), - [anon_sym_from] = ACTIONS(2971), - [anon_sym_into] = ACTIONS(2971), - [anon_sym_join] = ACTIONS(2971), - [anon_sym_on] = ACTIONS(2971), - [anon_sym_equals] = ACTIONS(2971), - [anon_sym_let] = ACTIONS(2971), - [anon_sym_orderby] = ACTIONS(2971), - [anon_sym_ascending] = ACTIONS(2971), - [anon_sym_descending] = ACTIONS(2971), - [anon_sym_group] = ACTIONS(2971), - [anon_sym_by] = ACTIONS(2971), - [anon_sym_select] = ACTIONS(2971), + [aux_sym__class_declaration_initializer_repeat2] = STATE(3585), + [sym__identifier_token] = ACTIONS(2965), + [anon_sym_extern] = ACTIONS(645), + [anon_sym_alias] = ACTIONS(2969), + [anon_sym_global] = ACTIONS(2969), + [anon_sym_unsafe] = ACTIONS(645), + [anon_sym_static] = ACTIONS(645), + [anon_sym_LPAREN] = ACTIONS(2977), + [anon_sym_ref] = ACTIONS(3436), + [anon_sym_delegate] = ACTIONS(3438), + [anon_sym_abstract] = ACTIONS(645), + [anon_sym_async] = ACTIONS(645), + [anon_sym_const] = ACTIONS(645), + [anon_sym_file] = ACTIONS(3905), + [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(2969), + [anon_sym_notnull] = ACTIONS(2969), + [anon_sym_unmanaged] = ACTIONS(2969), + [anon_sym_scoped] = ACTIONS(2993), + [anon_sym_var] = ACTIONS(2995), + [sym_predefined_type] = ACTIONS(2997), + [anon_sym_yield] = ACTIONS(2969), + [anon_sym_when] = ACTIONS(2969), + [anon_sym_from] = ACTIONS(2969), + [anon_sym_into] = ACTIONS(2969), + [anon_sym_join] = ACTIONS(2969), + [anon_sym_on] = ACTIONS(2969), + [anon_sym_equals] = ACTIONS(2969), + [anon_sym_let] = ACTIONS(2969), + [anon_sym_orderby] = ACTIONS(2969), + [anon_sym_ascending] = ACTIONS(2969), + [anon_sym_descending] = ACTIONS(2969), + [anon_sym_group] = ACTIONS(2969), + [anon_sym_by] = ACTIONS(2969), + [anon_sym_select] = ACTIONS(2969), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -431642,26 +431288,26 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2536] = { - [sym_modifier] = STATE(3878), - [sym_variable_declaration] = STATE(7375), - [sym__name] = STATE(4390), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(4096), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(4109), - [sym_type] = STATE(5919), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_identifier] = STATE(4087), - [sym__reserved_identifier] = STATE(3691), + [sym_modifier] = STATE(3845), + [sym_variable_declaration] = STATE(7573), + [sym__name] = STATE(4369), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(4068), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(4073), + [sym_type] = STATE(5911), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_identifier] = STATE(4081), + [sym__reserved_identifier] = STATE(3654), [sym_preproc_region] = STATE(2536), [sym_preproc_endregion] = STATE(2536), [sym_preproc_line] = STATE(2536), @@ -431671,53 +431317,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2536), [sym_preproc_define] = STATE(2536), [sym_preproc_undef] = STATE(2536), - [aux_sym__class_declaration_initializer_repeat2] = STATE(3643), - [sym__identifier_token] = ACTIONS(2967), - [anon_sym_extern] = ACTIONS(647), - [anon_sym_alias] = ACTIONS(2971), - [anon_sym_global] = ACTIONS(2971), - [anon_sym_unsafe] = ACTIONS(647), - [anon_sym_static] = ACTIONS(647), - [anon_sym_LPAREN] = ACTIONS(2979), - [anon_sym_ref] = ACTIONS(3452), - [anon_sym_delegate] = ACTIONS(3454), - [anon_sym_abstract] = ACTIONS(647), - [anon_sym_async] = ACTIONS(647), - [anon_sym_const] = ACTIONS(647), - [anon_sym_file] = ACTIONS(3925), - [anon_sym_fixed] = ACTIONS(647), - [anon_sym_internal] = ACTIONS(647), - [anon_sym_new] = ACTIONS(647), - [anon_sym_override] = ACTIONS(647), - [anon_sym_partial] = ACTIONS(647), - [anon_sym_private] = ACTIONS(647), - [anon_sym_protected] = ACTIONS(647), - [anon_sym_public] = ACTIONS(647), - [anon_sym_readonly] = ACTIONS(647), - [anon_sym_required] = ACTIONS(647), - [anon_sym_sealed] = ACTIONS(647), - [anon_sym_virtual] = ACTIONS(647), - [anon_sym_volatile] = ACTIONS(647), - [anon_sym_where] = ACTIONS(2971), - [anon_sym_notnull] = ACTIONS(2971), - [anon_sym_unmanaged] = ACTIONS(2971), - [anon_sym_scoped] = ACTIONS(2997), - [anon_sym_var] = ACTIONS(2999), - [sym_predefined_type] = ACTIONS(3001), - [anon_sym_yield] = ACTIONS(2971), - [anon_sym_when] = ACTIONS(2971), - [anon_sym_from] = ACTIONS(2971), - [anon_sym_into] = ACTIONS(2971), - [anon_sym_join] = ACTIONS(2971), - [anon_sym_on] = ACTIONS(2971), - [anon_sym_equals] = ACTIONS(2971), - [anon_sym_let] = ACTIONS(2971), - [anon_sym_orderby] = ACTIONS(2971), - [anon_sym_ascending] = ACTIONS(2971), - [anon_sym_descending] = ACTIONS(2971), - [anon_sym_group] = ACTIONS(2971), - [anon_sym_by] = ACTIONS(2971), - [anon_sym_select] = ACTIONS(2971), + [aux_sym__class_declaration_initializer_repeat2] = STATE(3585), + [sym__identifier_token] = ACTIONS(2965), + [anon_sym_extern] = ACTIONS(645), + [anon_sym_alias] = ACTIONS(2969), + [anon_sym_global] = ACTIONS(2969), + [anon_sym_unsafe] = ACTIONS(645), + [anon_sym_static] = ACTIONS(645), + [anon_sym_LPAREN] = ACTIONS(2977), + [anon_sym_ref] = ACTIONS(3436), + [anon_sym_delegate] = ACTIONS(3438), + [anon_sym_abstract] = ACTIONS(645), + [anon_sym_async] = ACTIONS(645), + [anon_sym_const] = ACTIONS(645), + [anon_sym_file] = ACTIONS(3905), + [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(2969), + [anon_sym_notnull] = ACTIONS(2969), + [anon_sym_unmanaged] = ACTIONS(2969), + [anon_sym_scoped] = ACTIONS(2993), + [anon_sym_var] = ACTIONS(2995), + [sym_predefined_type] = ACTIONS(2997), + [anon_sym_yield] = ACTIONS(2969), + [anon_sym_when] = ACTIONS(2969), + [anon_sym_from] = ACTIONS(2969), + [anon_sym_into] = ACTIONS(2969), + [anon_sym_join] = ACTIONS(2969), + [anon_sym_on] = ACTIONS(2969), + [anon_sym_equals] = ACTIONS(2969), + [anon_sym_let] = ACTIONS(2969), + [anon_sym_orderby] = ACTIONS(2969), + [anon_sym_ascending] = ACTIONS(2969), + [anon_sym_descending] = ACTIONS(2969), + [anon_sym_group] = ACTIONS(2969), + [anon_sym_by] = ACTIONS(2969), + [anon_sym_select] = ACTIONS(2969), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -431730,26 +431376,26 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2537] = { - [sym_modifier] = STATE(3878), - [sym_variable_declaration] = STATE(7570), - [sym__name] = STATE(4390), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(4096), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(4109), - [sym_type] = STATE(5921), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_identifier] = STATE(4087), - [sym__reserved_identifier] = STATE(3691), + [sym_modifier] = STATE(3845), + [sym_variable_declaration] = STATE(7326), + [sym__name] = STATE(4369), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(4068), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(4073), + [sym_type] = STATE(5903), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_identifier] = STATE(4081), + [sym__reserved_identifier] = STATE(3654), [sym_preproc_region] = STATE(2537), [sym_preproc_endregion] = STATE(2537), [sym_preproc_line] = STATE(2537), @@ -431759,53 +431405,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2537), [sym_preproc_define] = STATE(2537), [sym_preproc_undef] = STATE(2537), - [aux_sym__class_declaration_initializer_repeat2] = STATE(3643), - [sym__identifier_token] = ACTIONS(2967), - [anon_sym_extern] = ACTIONS(647), - [anon_sym_alias] = ACTIONS(2971), - [anon_sym_global] = ACTIONS(2971), - [anon_sym_unsafe] = ACTIONS(647), - [anon_sym_static] = ACTIONS(647), - [anon_sym_LPAREN] = ACTIONS(2979), - [anon_sym_ref] = ACTIONS(3452), - [anon_sym_delegate] = ACTIONS(3454), - [anon_sym_abstract] = ACTIONS(647), - [anon_sym_async] = ACTIONS(647), - [anon_sym_const] = ACTIONS(647), - [anon_sym_file] = ACTIONS(3925), - [anon_sym_fixed] = ACTIONS(647), - [anon_sym_internal] = ACTIONS(647), - [anon_sym_new] = ACTIONS(647), - [anon_sym_override] = ACTIONS(647), - [anon_sym_partial] = ACTIONS(647), - [anon_sym_private] = ACTIONS(647), - [anon_sym_protected] = ACTIONS(647), - [anon_sym_public] = ACTIONS(647), - [anon_sym_readonly] = ACTIONS(647), - [anon_sym_required] = ACTIONS(647), - [anon_sym_sealed] = ACTIONS(647), - [anon_sym_virtual] = ACTIONS(647), - [anon_sym_volatile] = ACTIONS(647), - [anon_sym_where] = ACTIONS(2971), - [anon_sym_notnull] = ACTIONS(2971), - [anon_sym_unmanaged] = ACTIONS(2971), - [anon_sym_scoped] = ACTIONS(2997), - [anon_sym_var] = ACTIONS(2999), - [sym_predefined_type] = ACTIONS(3001), - [anon_sym_yield] = ACTIONS(2971), - [anon_sym_when] = ACTIONS(2971), - [anon_sym_from] = ACTIONS(2971), - [anon_sym_into] = ACTIONS(2971), - [anon_sym_join] = ACTIONS(2971), - [anon_sym_on] = ACTIONS(2971), - [anon_sym_equals] = ACTIONS(2971), - [anon_sym_let] = ACTIONS(2971), - [anon_sym_orderby] = ACTIONS(2971), - [anon_sym_ascending] = ACTIONS(2971), - [anon_sym_descending] = ACTIONS(2971), - [anon_sym_group] = ACTIONS(2971), - [anon_sym_by] = ACTIONS(2971), - [anon_sym_select] = ACTIONS(2971), + [aux_sym__class_declaration_initializer_repeat2] = STATE(2541), + [sym__identifier_token] = ACTIONS(2965), + [anon_sym_extern] = ACTIONS(645), + [anon_sym_alias] = ACTIONS(2969), + [anon_sym_global] = ACTIONS(2969), + [anon_sym_unsafe] = ACTIONS(645), + [anon_sym_static] = ACTIONS(645), + [anon_sym_LPAREN] = ACTIONS(4217), + [anon_sym_ref] = ACTIONS(3436), + [anon_sym_delegate] = ACTIONS(3438), + [anon_sym_abstract] = ACTIONS(645), + [anon_sym_async] = ACTIONS(645), + [anon_sym_const] = ACTIONS(645), + [anon_sym_file] = ACTIONS(3905), + [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(2969), + [anon_sym_notnull] = ACTIONS(2969), + [anon_sym_unmanaged] = ACTIONS(2969), + [anon_sym_scoped] = ACTIONS(2993), + [anon_sym_var] = ACTIONS(2995), + [sym_predefined_type] = ACTIONS(2997), + [anon_sym_yield] = ACTIONS(2969), + [anon_sym_when] = ACTIONS(2969), + [anon_sym_from] = ACTIONS(2969), + [anon_sym_into] = ACTIONS(2969), + [anon_sym_join] = ACTIONS(2969), + [anon_sym_on] = ACTIONS(2969), + [anon_sym_equals] = ACTIONS(2969), + [anon_sym_let] = ACTIONS(2969), + [anon_sym_orderby] = ACTIONS(2969), + [anon_sym_ascending] = ACTIONS(2969), + [anon_sym_descending] = ACTIONS(2969), + [anon_sym_group] = ACTIONS(2969), + [anon_sym_by] = ACTIONS(2969), + [anon_sym_select] = ACTIONS(2969), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -431818,26 +431464,26 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2538] = { - [sym_modifier] = STATE(3878), - [sym_variable_declaration] = STATE(7708), - [sym__name] = STATE(4390), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(4096), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(4109), - [sym_type] = STATE(5921), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_identifier] = STATE(4087), - [sym__reserved_identifier] = STATE(3691), + [sym_modifier] = STATE(3845), + [sym_variable_declaration] = STATE(7664), + [sym__name] = STATE(4369), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(4068), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(4073), + [sym_type] = STATE(5903), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_identifier] = STATE(4081), + [sym__reserved_identifier] = STATE(3654), [sym_preproc_region] = STATE(2538), [sym_preproc_endregion] = STATE(2538), [sym_preproc_line] = STATE(2538), @@ -431847,53 +431493,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2538), [sym_preproc_define] = STATE(2538), [sym_preproc_undef] = STATE(2538), - [aux_sym__class_declaration_initializer_repeat2] = STATE(2537), - [sym__identifier_token] = ACTIONS(2967), - [anon_sym_extern] = ACTIONS(647), - [anon_sym_alias] = ACTIONS(2971), - [anon_sym_global] = ACTIONS(2971), - [anon_sym_unsafe] = ACTIONS(647), - [anon_sym_static] = ACTIONS(647), - [anon_sym_LPAREN] = ACTIONS(4221), - [anon_sym_ref] = ACTIONS(3452), - [anon_sym_delegate] = ACTIONS(3454), - [anon_sym_abstract] = ACTIONS(647), - [anon_sym_async] = ACTIONS(647), - [anon_sym_const] = ACTIONS(647), - [anon_sym_file] = ACTIONS(3925), - [anon_sym_fixed] = ACTIONS(647), - [anon_sym_internal] = ACTIONS(647), - [anon_sym_new] = ACTIONS(647), - [anon_sym_override] = ACTIONS(647), - [anon_sym_partial] = ACTIONS(647), - [anon_sym_private] = ACTIONS(647), - [anon_sym_protected] = ACTIONS(647), - [anon_sym_public] = ACTIONS(647), - [anon_sym_readonly] = ACTIONS(647), - [anon_sym_required] = ACTIONS(647), - [anon_sym_sealed] = ACTIONS(647), - [anon_sym_virtual] = ACTIONS(647), - [anon_sym_volatile] = ACTIONS(647), - [anon_sym_where] = ACTIONS(2971), - [anon_sym_notnull] = ACTIONS(2971), - [anon_sym_unmanaged] = ACTIONS(2971), - [anon_sym_scoped] = ACTIONS(2997), - [anon_sym_var] = ACTIONS(2999), - [sym_predefined_type] = ACTIONS(3001), - [anon_sym_yield] = ACTIONS(2971), - [anon_sym_when] = ACTIONS(2971), - [anon_sym_from] = ACTIONS(2971), - [anon_sym_into] = ACTIONS(2971), - [anon_sym_join] = ACTIONS(2971), - [anon_sym_on] = ACTIONS(2971), - [anon_sym_equals] = ACTIONS(2971), - [anon_sym_let] = ACTIONS(2971), - [anon_sym_orderby] = ACTIONS(2971), - [anon_sym_ascending] = ACTIONS(2971), - [anon_sym_descending] = ACTIONS(2971), - [anon_sym_group] = ACTIONS(2971), - [anon_sym_by] = ACTIONS(2971), - [anon_sym_select] = ACTIONS(2971), + [aux_sym__class_declaration_initializer_repeat2] = STATE(2532), + [sym__identifier_token] = ACTIONS(2965), + [anon_sym_extern] = ACTIONS(645), + [anon_sym_alias] = ACTIONS(2969), + [anon_sym_global] = ACTIONS(2969), + [anon_sym_unsafe] = ACTIONS(645), + [anon_sym_static] = ACTIONS(645), + [anon_sym_LPAREN] = ACTIONS(4219), + [anon_sym_ref] = ACTIONS(3436), + [anon_sym_delegate] = ACTIONS(3438), + [anon_sym_abstract] = ACTIONS(645), + [anon_sym_async] = ACTIONS(645), + [anon_sym_const] = ACTIONS(645), + [anon_sym_file] = ACTIONS(3905), + [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(2969), + [anon_sym_notnull] = ACTIONS(2969), + [anon_sym_unmanaged] = ACTIONS(2969), + [anon_sym_scoped] = ACTIONS(2993), + [anon_sym_var] = ACTIONS(2995), + [sym_predefined_type] = ACTIONS(2997), + [anon_sym_yield] = ACTIONS(2969), + [anon_sym_when] = ACTIONS(2969), + [anon_sym_from] = ACTIONS(2969), + [anon_sym_into] = ACTIONS(2969), + [anon_sym_join] = ACTIONS(2969), + [anon_sym_on] = ACTIONS(2969), + [anon_sym_equals] = ACTIONS(2969), + [anon_sym_let] = ACTIONS(2969), + [anon_sym_orderby] = ACTIONS(2969), + [anon_sym_ascending] = ACTIONS(2969), + [anon_sym_descending] = ACTIONS(2969), + [anon_sym_group] = ACTIONS(2969), + [anon_sym_by] = ACTIONS(2969), + [anon_sym_select] = ACTIONS(2969), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -431906,26 +431552,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2539] = { - [sym_modifier] = STATE(3878), - [sym_variable_declaration] = STATE(7708), - [sym__name] = STATE(4390), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(4096), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(4109), - [sym_type] = STATE(5919), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_identifier] = STATE(4087), - [sym__reserved_identifier] = STATE(3691), + [sym_parameter_list] = STATE(7531), + [sym__lambda_parameters] = STATE(7378), + [sym_identifier] = STATE(7285), + [sym__reserved_identifier] = STATE(2168), [sym_preproc_region] = STATE(2539), [sym_preproc_endregion] = STATE(2539), [sym_preproc_line] = STATE(2539), @@ -431935,85 +431565,101 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2539), [sym_preproc_define] = STATE(2539), [sym_preproc_undef] = STATE(2539), - [aux_sym__class_declaration_initializer_repeat2] = STATE(3643), - [sym__identifier_token] = ACTIONS(2967), - [anon_sym_extern] = ACTIONS(647), - [anon_sym_alias] = ACTIONS(2971), - [anon_sym_global] = ACTIONS(2971), - [anon_sym_unsafe] = ACTIONS(647), - [anon_sym_static] = ACTIONS(647), - [anon_sym_LPAREN] = ACTIONS(2979), - [anon_sym_ref] = ACTIONS(3452), - [anon_sym_delegate] = ACTIONS(3454), - [anon_sym_abstract] = ACTIONS(647), - [anon_sym_async] = ACTIONS(647), - [anon_sym_const] = ACTIONS(647), - [anon_sym_file] = ACTIONS(3925), - [anon_sym_fixed] = ACTIONS(647), - [anon_sym_internal] = ACTIONS(647), - [anon_sym_new] = ACTIONS(647), - [anon_sym_override] = ACTIONS(647), - [anon_sym_partial] = ACTIONS(647), - [anon_sym_private] = ACTIONS(647), - [anon_sym_protected] = ACTIONS(647), - [anon_sym_public] = ACTIONS(647), - [anon_sym_readonly] = ACTIONS(647), - [anon_sym_required] = ACTIONS(647), - [anon_sym_sealed] = ACTIONS(647), - [anon_sym_virtual] = ACTIONS(647), - [anon_sym_volatile] = ACTIONS(647), - [anon_sym_where] = ACTIONS(2971), - [anon_sym_notnull] = ACTIONS(2971), - [anon_sym_unmanaged] = ACTIONS(2971), - [anon_sym_scoped] = ACTIONS(2997), - [anon_sym_var] = ACTIONS(2999), - [sym_predefined_type] = ACTIONS(3001), - [anon_sym_yield] = ACTIONS(2971), - [anon_sym_when] = ACTIONS(2971), - [anon_sym_from] = ACTIONS(2971), - [anon_sym_into] = ACTIONS(2971), - [anon_sym_join] = ACTIONS(2971), - [anon_sym_on] = ACTIONS(2971), - [anon_sym_equals] = ACTIONS(2971), - [anon_sym_let] = ACTIONS(2971), - [anon_sym_orderby] = ACTIONS(2971), - [anon_sym_ascending] = ACTIONS(2971), - [anon_sym_descending] = ACTIONS(2971), - [anon_sym_group] = ACTIONS(2971), - [anon_sym_by] = ACTIONS(2971), - [anon_sym_select] = ACTIONS(2971), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_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(3909), + [anon_sym_alias] = ACTIONS(3909), + [anon_sym_global] = ACTIONS(3909), + [anon_sym_LBRACK] = ACTIONS(3911), + [anon_sym_COLON] = ACTIONS(3911), + [anon_sym_COMMA] = ACTIONS(3911), + [anon_sym_LPAREN] = ACTIONS(3911), + [anon_sym_LBRACE] = ACTIONS(3911), + [anon_sym_file] = ACTIONS(3909), + [anon_sym_LT] = ACTIONS(3909), + [anon_sym_GT] = ACTIONS(3909), + [anon_sym_where] = ACTIONS(3909), + [anon_sym_QMARK] = ACTIONS(3909), + [anon_sym_notnull] = ACTIONS(3909), + [anon_sym_unmanaged] = ACTIONS(3909), + [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(3909), + [anon_sym_var] = ACTIONS(3909), + [anon_sym_yield] = ACTIONS(3909), + [anon_sym_switch] = ACTIONS(3909), + [anon_sym_when] = ACTIONS(3909), + [sym_discard] = ACTIONS(3909), + [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(3909), + [anon_sym_join] = ACTIONS(3909), + [anon_sym_on] = ACTIONS(3909), + [anon_sym_equals] = ACTIONS(3909), + [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(3909), + [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), + [sym_interpolation_close_brace] = ACTIONS(3911), }, [2540] = { - [sym_modifier] = STATE(3878), - [sym_variable_declaration] = STATE(7475), - [sym__name] = STATE(4390), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(4096), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(4109), - [sym_type] = STATE(5921), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_identifier] = STATE(4087), - [sym__reserved_identifier] = STATE(3691), + [sym_modifier] = STATE(3845), + [sym_variable_declaration] = STATE(7664), + [sym__name] = STATE(4369), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(4068), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(4073), + [sym_type] = STATE(5911), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_identifier] = STATE(4081), + [sym__reserved_identifier] = STATE(3654), [sym_preproc_region] = STATE(2540), [sym_preproc_endregion] = STATE(2540), [sym_preproc_line] = STATE(2540), @@ -432023,53 +431669,53 @@ 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), - [aux_sym__class_declaration_initializer_repeat2] = STATE(2541), - [sym__identifier_token] = ACTIONS(2967), - [anon_sym_extern] = ACTIONS(647), - [anon_sym_alias] = ACTIONS(2971), - [anon_sym_global] = ACTIONS(2971), - [anon_sym_unsafe] = ACTIONS(647), - [anon_sym_static] = ACTIONS(647), - [anon_sym_LPAREN] = ACTIONS(4237), - [anon_sym_ref] = ACTIONS(3452), - [anon_sym_delegate] = ACTIONS(3454), - [anon_sym_abstract] = ACTIONS(647), - [anon_sym_async] = ACTIONS(647), - [anon_sym_const] = ACTIONS(647), - [anon_sym_file] = ACTIONS(3925), - [anon_sym_fixed] = ACTIONS(647), - [anon_sym_internal] = ACTIONS(647), - [anon_sym_new] = ACTIONS(647), - [anon_sym_override] = ACTIONS(647), - [anon_sym_partial] = ACTIONS(647), - [anon_sym_private] = ACTIONS(647), - [anon_sym_protected] = ACTIONS(647), - [anon_sym_public] = ACTIONS(647), - [anon_sym_readonly] = ACTIONS(647), - [anon_sym_required] = ACTIONS(647), - [anon_sym_sealed] = ACTIONS(647), - [anon_sym_virtual] = ACTIONS(647), - [anon_sym_volatile] = ACTIONS(647), - [anon_sym_where] = ACTIONS(2971), - [anon_sym_notnull] = ACTIONS(2971), - [anon_sym_unmanaged] = ACTIONS(2971), - [anon_sym_scoped] = ACTIONS(2997), - [anon_sym_var] = ACTIONS(2999), - [sym_predefined_type] = ACTIONS(3001), - [anon_sym_yield] = ACTIONS(2971), - [anon_sym_when] = ACTIONS(2971), - [anon_sym_from] = ACTIONS(2971), - [anon_sym_into] = ACTIONS(2971), - [anon_sym_join] = ACTIONS(2971), - [anon_sym_on] = ACTIONS(2971), - [anon_sym_equals] = ACTIONS(2971), - [anon_sym_let] = ACTIONS(2971), - [anon_sym_orderby] = ACTIONS(2971), - [anon_sym_ascending] = ACTIONS(2971), - [anon_sym_descending] = ACTIONS(2971), - [anon_sym_group] = ACTIONS(2971), - [anon_sym_by] = ACTIONS(2971), - [anon_sym_select] = ACTIONS(2971), + [aux_sym__class_declaration_initializer_repeat2] = STATE(3585), + [sym__identifier_token] = ACTIONS(2965), + [anon_sym_extern] = ACTIONS(645), + [anon_sym_alias] = ACTIONS(2969), + [anon_sym_global] = ACTIONS(2969), + [anon_sym_unsafe] = ACTIONS(645), + [anon_sym_static] = ACTIONS(645), + [anon_sym_LPAREN] = ACTIONS(2977), + [anon_sym_ref] = ACTIONS(3436), + [anon_sym_delegate] = ACTIONS(3438), + [anon_sym_abstract] = ACTIONS(645), + [anon_sym_async] = ACTIONS(645), + [anon_sym_const] = ACTIONS(645), + [anon_sym_file] = ACTIONS(3905), + [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(2969), + [anon_sym_notnull] = ACTIONS(2969), + [anon_sym_unmanaged] = ACTIONS(2969), + [anon_sym_scoped] = ACTIONS(2993), + [anon_sym_var] = ACTIONS(2995), + [sym_predefined_type] = ACTIONS(2997), + [anon_sym_yield] = ACTIONS(2969), + [anon_sym_when] = ACTIONS(2969), + [anon_sym_from] = ACTIONS(2969), + [anon_sym_into] = ACTIONS(2969), + [anon_sym_join] = ACTIONS(2969), + [anon_sym_on] = ACTIONS(2969), + [anon_sym_equals] = ACTIONS(2969), + [anon_sym_let] = ACTIONS(2969), + [anon_sym_orderby] = ACTIONS(2969), + [anon_sym_ascending] = ACTIONS(2969), + [anon_sym_descending] = ACTIONS(2969), + [anon_sym_group] = ACTIONS(2969), + [anon_sym_by] = ACTIONS(2969), + [anon_sym_select] = ACTIONS(2969), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -432082,26 +431728,26 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2541] = { - [sym_modifier] = STATE(3878), - [sym_variable_declaration] = STATE(7759), - [sym__name] = STATE(4390), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(4096), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(4109), - [sym_type] = STATE(5921), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_identifier] = STATE(4087), - [sym__reserved_identifier] = STATE(3691), + [sym_modifier] = STATE(3845), + [sym_variable_declaration] = STATE(7337), + [sym__name] = STATE(4369), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(4068), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(4073), + [sym_type] = STATE(5903), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_identifier] = STATE(4081), + [sym__reserved_identifier] = STATE(3654), [sym_preproc_region] = STATE(2541), [sym_preproc_endregion] = STATE(2541), [sym_preproc_line] = STATE(2541), @@ -432111,53 +431757,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), - [aux_sym__class_declaration_initializer_repeat2] = STATE(3643), - [sym__identifier_token] = ACTIONS(2967), - [anon_sym_extern] = ACTIONS(647), - [anon_sym_alias] = ACTIONS(2971), - [anon_sym_global] = ACTIONS(2971), - [anon_sym_unsafe] = ACTIONS(647), - [anon_sym_static] = ACTIONS(647), - [anon_sym_LPAREN] = ACTIONS(2979), - [anon_sym_ref] = ACTIONS(3452), - [anon_sym_delegate] = ACTIONS(3454), - [anon_sym_abstract] = ACTIONS(647), - [anon_sym_async] = ACTIONS(647), - [anon_sym_const] = ACTIONS(647), - [anon_sym_file] = ACTIONS(3925), - [anon_sym_fixed] = ACTIONS(647), - [anon_sym_internal] = ACTIONS(647), - [anon_sym_new] = ACTIONS(647), - [anon_sym_override] = ACTIONS(647), - [anon_sym_partial] = ACTIONS(647), - [anon_sym_private] = ACTIONS(647), - [anon_sym_protected] = ACTIONS(647), - [anon_sym_public] = ACTIONS(647), - [anon_sym_readonly] = ACTIONS(647), - [anon_sym_required] = ACTIONS(647), - [anon_sym_sealed] = ACTIONS(647), - [anon_sym_virtual] = ACTIONS(647), - [anon_sym_volatile] = ACTIONS(647), - [anon_sym_where] = ACTIONS(2971), - [anon_sym_notnull] = ACTIONS(2971), - [anon_sym_unmanaged] = ACTIONS(2971), - [anon_sym_scoped] = ACTIONS(2997), - [anon_sym_var] = ACTIONS(2999), - [sym_predefined_type] = ACTIONS(3001), - [anon_sym_yield] = ACTIONS(2971), - [anon_sym_when] = ACTIONS(2971), - [anon_sym_from] = ACTIONS(2971), - [anon_sym_into] = ACTIONS(2971), - [anon_sym_join] = ACTIONS(2971), - [anon_sym_on] = ACTIONS(2971), - [anon_sym_equals] = ACTIONS(2971), - [anon_sym_let] = ACTIONS(2971), - [anon_sym_orderby] = ACTIONS(2971), - [anon_sym_ascending] = ACTIONS(2971), - [anon_sym_descending] = ACTIONS(2971), - [anon_sym_group] = ACTIONS(2971), - [anon_sym_by] = ACTIONS(2971), - [anon_sym_select] = ACTIONS(2971), + [aux_sym__class_declaration_initializer_repeat2] = STATE(3585), + [sym__identifier_token] = ACTIONS(2965), + [anon_sym_extern] = ACTIONS(645), + [anon_sym_alias] = ACTIONS(2969), + [anon_sym_global] = ACTIONS(2969), + [anon_sym_unsafe] = ACTIONS(645), + [anon_sym_static] = ACTIONS(645), + [anon_sym_LPAREN] = ACTIONS(2977), + [anon_sym_ref] = ACTIONS(3436), + [anon_sym_delegate] = ACTIONS(3438), + [anon_sym_abstract] = ACTIONS(645), + [anon_sym_async] = ACTIONS(645), + [anon_sym_const] = ACTIONS(645), + [anon_sym_file] = ACTIONS(3905), + [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(2969), + [anon_sym_notnull] = ACTIONS(2969), + [anon_sym_unmanaged] = ACTIONS(2969), + [anon_sym_scoped] = ACTIONS(2993), + [anon_sym_var] = ACTIONS(2995), + [sym_predefined_type] = ACTIONS(2997), + [anon_sym_yield] = ACTIONS(2969), + [anon_sym_when] = ACTIONS(2969), + [anon_sym_from] = ACTIONS(2969), + [anon_sym_into] = ACTIONS(2969), + [anon_sym_join] = ACTIONS(2969), + [anon_sym_on] = ACTIONS(2969), + [anon_sym_equals] = ACTIONS(2969), + [anon_sym_let] = ACTIONS(2969), + [anon_sym_orderby] = ACTIONS(2969), + [anon_sym_ascending] = ACTIONS(2969), + [anon_sym_descending] = ACTIONS(2969), + [anon_sym_group] = ACTIONS(2969), + [anon_sym_by] = ACTIONS(2969), + [anon_sym_select] = ACTIONS(2969), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -432170,26 +431816,26 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2542] = { - [sym_modifier] = STATE(3878), - [sym_variable_declaration] = STATE(7709), - [sym__name] = STATE(4390), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(4096), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(4109), - [sym_type] = STATE(5921), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_identifier] = STATE(4087), - [sym__reserved_identifier] = STATE(3691), + [sym_modifier] = STATE(3845), + [sym_variable_declaration] = STATE(7715), + [sym__name] = STATE(4369), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(4068), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(4073), + [sym_type] = STATE(5903), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_identifier] = STATE(4081), + [sym__reserved_identifier] = STATE(3654), [sym_preproc_region] = STATE(2542), [sym_preproc_endregion] = STATE(2542), [sym_preproc_line] = STATE(2542), @@ -432199,53 +431845,53 @@ 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(3643), - [sym__identifier_token] = ACTIONS(2967), - [anon_sym_extern] = ACTIONS(647), - [anon_sym_alias] = ACTIONS(2971), - [anon_sym_global] = ACTIONS(2971), - [anon_sym_unsafe] = ACTIONS(647), - [anon_sym_static] = ACTIONS(647), - [anon_sym_LPAREN] = ACTIONS(2979), - [anon_sym_ref] = ACTIONS(3452), - [anon_sym_delegate] = ACTIONS(3454), - [anon_sym_abstract] = ACTIONS(647), - [anon_sym_async] = ACTIONS(647), - [anon_sym_const] = ACTIONS(647), - [anon_sym_file] = ACTIONS(3925), - [anon_sym_fixed] = ACTIONS(647), - [anon_sym_internal] = ACTIONS(647), - [anon_sym_new] = ACTIONS(647), - [anon_sym_override] = ACTIONS(647), - [anon_sym_partial] = ACTIONS(647), - [anon_sym_private] = ACTIONS(647), - [anon_sym_protected] = ACTIONS(647), - [anon_sym_public] = ACTIONS(647), - [anon_sym_readonly] = ACTIONS(647), - [anon_sym_required] = ACTIONS(647), - [anon_sym_sealed] = ACTIONS(647), - [anon_sym_virtual] = ACTIONS(647), - [anon_sym_volatile] = ACTIONS(647), - [anon_sym_where] = ACTIONS(2971), - [anon_sym_notnull] = ACTIONS(2971), - [anon_sym_unmanaged] = ACTIONS(2971), - [anon_sym_scoped] = ACTIONS(2997), - [anon_sym_var] = ACTIONS(2999), - [sym_predefined_type] = ACTIONS(3001), - [anon_sym_yield] = ACTIONS(2971), - [anon_sym_when] = ACTIONS(2971), - [anon_sym_from] = ACTIONS(2971), - [anon_sym_into] = ACTIONS(2971), - [anon_sym_join] = ACTIONS(2971), - [anon_sym_on] = ACTIONS(2971), - [anon_sym_equals] = ACTIONS(2971), - [anon_sym_let] = ACTIONS(2971), - [anon_sym_orderby] = ACTIONS(2971), - [anon_sym_ascending] = ACTIONS(2971), - [anon_sym_descending] = ACTIONS(2971), - [anon_sym_group] = ACTIONS(2971), - [anon_sym_by] = ACTIONS(2971), - [anon_sym_select] = ACTIONS(2971), + [aux_sym__class_declaration_initializer_repeat2] = STATE(3585), + [sym__identifier_token] = ACTIONS(2965), + [anon_sym_extern] = ACTIONS(645), + [anon_sym_alias] = ACTIONS(2969), + [anon_sym_global] = ACTIONS(2969), + [anon_sym_unsafe] = ACTIONS(645), + [anon_sym_static] = ACTIONS(645), + [anon_sym_LPAREN] = ACTIONS(2977), + [anon_sym_ref] = ACTIONS(3436), + [anon_sym_delegate] = ACTIONS(3438), + [anon_sym_abstract] = ACTIONS(645), + [anon_sym_async] = ACTIONS(645), + [anon_sym_const] = ACTIONS(645), + [anon_sym_file] = ACTIONS(3905), + [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(2969), + [anon_sym_notnull] = ACTIONS(2969), + [anon_sym_unmanaged] = ACTIONS(2969), + [anon_sym_scoped] = ACTIONS(2993), + [anon_sym_var] = ACTIONS(2995), + [sym_predefined_type] = ACTIONS(2997), + [anon_sym_yield] = ACTIONS(2969), + [anon_sym_when] = ACTIONS(2969), + [anon_sym_from] = ACTIONS(2969), + [anon_sym_into] = ACTIONS(2969), + [anon_sym_join] = ACTIONS(2969), + [anon_sym_on] = ACTIONS(2969), + [anon_sym_equals] = ACTIONS(2969), + [anon_sym_let] = ACTIONS(2969), + [anon_sym_orderby] = ACTIONS(2969), + [anon_sym_ascending] = ACTIONS(2969), + [anon_sym_descending] = ACTIONS(2969), + [anon_sym_group] = ACTIONS(2969), + [anon_sym_by] = ACTIONS(2969), + [anon_sym_select] = ACTIONS(2969), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -432258,11 +431904,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2543] = { - [sym_property_pattern_clause] = STATE(2590), - [sym__variable_designation] = STATE(3496), - [sym_parenthesized_variable_designation] = STATE(3463), - [sym_identifier] = STATE(3479), - [sym__reserved_identifier] = STATE(3177), + [sym_property_pattern_clause] = STATE(2645), + [sym__variable_designation] = STATE(3447), + [sym_parenthesized_variable_designation] = STATE(3352), + [sym_identifier] = STATE(3355), + [sym__reserved_identifier] = STATE(3205), [sym_preproc_region] = STATE(2543), [sym_preproc_endregion] = STATE(2543), [sym_preproc_line] = STATE(2543), @@ -432272,68 +431918,67 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2543), [sym_preproc_define] = STATE(2543), [sym_preproc_undef] = STATE(2543), - [sym__identifier_token] = ACTIONS(3875), - [anon_sym_alias] = ACTIONS(3877), - [anon_sym_global] = ACTIONS(3877), - [anon_sym_LBRACK] = ACTIONS(3913), - [anon_sym_COLON] = ACTIONS(3913), - [anon_sym_LPAREN] = ACTIONS(3913), - [anon_sym_LBRACE] = ACTIONS(3881), - [anon_sym_file] = ACTIONS(3877), - [anon_sym_LT] = ACTIONS(3915), - [anon_sym_GT] = ACTIONS(3915), - [anon_sym_where] = ACTIONS(3877), - [anon_sym_QMARK] = ACTIONS(3915), - [anon_sym_notnull] = ACTIONS(3877), - [anon_sym_unmanaged] = ACTIONS(3877), - [anon_sym_BANG] = ACTIONS(3915), - [anon_sym_PLUS_PLUS] = ACTIONS(3913), - [anon_sym_DASH_DASH] = ACTIONS(3913), - [anon_sym_PLUS] = ACTIONS(3915), - [anon_sym_DASH] = ACTIONS(3915), - [anon_sym_STAR] = ACTIONS(3913), - [anon_sym_SLASH] = ACTIONS(3915), - [anon_sym_PERCENT] = ACTIONS(3913), - [anon_sym_CARET] = ACTIONS(3913), - [anon_sym_PIPE] = ACTIONS(3915), - [anon_sym_AMP] = ACTIONS(3915), - [anon_sym_LT_LT] = ACTIONS(3913), - [anon_sym_GT_GT] = ACTIONS(3915), - [anon_sym_GT_GT_GT] = ACTIONS(3913), - [anon_sym_EQ_EQ] = ACTIONS(3913), - [anon_sym_BANG_EQ] = ACTIONS(3913), - [anon_sym_GT_EQ] = ACTIONS(3913), - [anon_sym_LT_EQ] = ACTIONS(3913), - [anon_sym_DOT] = ACTIONS(3915), - [anon_sym_scoped] = ACTIONS(3877), - [anon_sym_EQ_GT] = ACTIONS(3913), - [anon_sym_var] = ACTIONS(3877), - [anon_sym_yield] = ACTIONS(3877), - [anon_sym_switch] = ACTIONS(3915), - [anon_sym_when] = ACTIONS(3915), - [sym_discard] = ACTIONS(3897), - [anon_sym_DOT_DOT] = ACTIONS(3913), - [anon_sym_and] = ACTIONS(3915), - [anon_sym_or] = ACTIONS(3915), - [anon_sym_AMP_AMP] = ACTIONS(3913), - [anon_sym_PIPE_PIPE] = ACTIONS(3913), - [anon_sym_QMARK_QMARK] = ACTIONS(3913), - [anon_sym_from] = ACTIONS(3877), - [anon_sym_into] = ACTIONS(3877), - [anon_sym_join] = ACTIONS(3877), - [anon_sym_on] = ACTIONS(3877), - [anon_sym_equals] = ACTIONS(3877), - [anon_sym_let] = ACTIONS(3877), - [anon_sym_orderby] = ACTIONS(3877), - [anon_sym_ascending] = ACTIONS(3877), - [anon_sym_descending] = ACTIONS(3877), - [anon_sym_group] = ACTIONS(3877), - [anon_sym_by] = ACTIONS(3877), - [anon_sym_select] = ACTIONS(3877), - [anon_sym_as] = ACTIONS(3915), - [anon_sym_is] = ACTIONS(3915), - [anon_sym_DASH_GT] = ACTIONS(3913), - [anon_sym_with] = ACTIONS(3915), + [sym__identifier_token] = ACTIONS(3798), + [anon_sym_alias] = ACTIONS(3800), + [anon_sym_global] = ACTIONS(3800), + [anon_sym_LBRACK] = ACTIONS(3893), + [anon_sym_LPAREN] = ACTIONS(3893), + [anon_sym_LBRACE] = ACTIONS(3861), + [anon_sym_file] = ACTIONS(3800), + [anon_sym_LT] = ACTIONS(3895), + [anon_sym_GT] = ACTIONS(3895), + [anon_sym_in] = ACTIONS(3895), + [anon_sym_where] = ACTIONS(3800), + [anon_sym_QMARK] = ACTIONS(3895), + [anon_sym_notnull] = ACTIONS(3800), + [anon_sym_unmanaged] = ACTIONS(3800), + [anon_sym_BANG] = ACTIONS(3895), + [anon_sym_PLUS_PLUS] = ACTIONS(3893), + [anon_sym_DASH_DASH] = ACTIONS(3893), + [anon_sym_PLUS] = ACTIONS(3895), + [anon_sym_DASH] = ACTIONS(3895), + [anon_sym_STAR] = ACTIONS(3893), + [anon_sym_SLASH] = ACTIONS(3895), + [anon_sym_PERCENT] = ACTIONS(3893), + [anon_sym_CARET] = ACTIONS(3893), + [anon_sym_PIPE] = ACTIONS(3895), + [anon_sym_AMP] = ACTIONS(3895), + [anon_sym_LT_LT] = ACTIONS(3893), + [anon_sym_GT_GT] = ACTIONS(3895), + [anon_sym_GT_GT_GT] = ACTIONS(3893), + [anon_sym_EQ_EQ] = ACTIONS(3893), + [anon_sym_BANG_EQ] = ACTIONS(3893), + [anon_sym_GT_EQ] = ACTIONS(3893), + [anon_sym_LT_EQ] = ACTIONS(3893), + [anon_sym_DOT] = ACTIONS(3895), + [anon_sym_scoped] = ACTIONS(3800), + [anon_sym_var] = ACTIONS(3800), + [anon_sym_yield] = ACTIONS(3800), + [anon_sym_switch] = ACTIONS(3895), + [anon_sym_when] = ACTIONS(3800), + [sym_discard] = ACTIONS(3877), + [anon_sym_DOT_DOT] = ACTIONS(3893), + [anon_sym_and] = ACTIONS(3895), + [anon_sym_or] = ACTIONS(3895), + [anon_sym_AMP_AMP] = ACTIONS(3893), + [anon_sym_PIPE_PIPE] = ACTIONS(3893), + [anon_sym_QMARK_QMARK] = ACTIONS(3893), + [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(3895), + [anon_sym_is] = ACTIONS(3895), + [anon_sym_DASH_GT] = ACTIONS(3893), + [anon_sym_with] = ACTIONS(3895), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -432346,26 +431991,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2544] = { - [sym_modifier] = STATE(3878), - [sym_variable_declaration] = STATE(7570), - [sym__name] = STATE(4390), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(4096), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(4109), - [sym_type] = STATE(5921), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_identifier] = STATE(4087), - [sym__reserved_identifier] = STATE(3691), + [sym_property_pattern_clause] = STATE(2600), + [sym__variable_designation] = STATE(3696), + [sym_parenthesized_variable_designation] = STATE(3688), + [sym_identifier] = STATE(3692), + [sym__reserved_identifier] = STATE(2354), [sym_preproc_region] = STATE(2544), [sym_preproc_endregion] = STATE(2544), [sym_preproc_line] = STATE(2544), @@ -432375,53 +432005,67 @@ 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), - [aux_sym__class_declaration_initializer_repeat2] = STATE(2532), - [sym__identifier_token] = ACTIONS(2967), - [anon_sym_extern] = ACTIONS(647), - [anon_sym_alias] = ACTIONS(2971), - [anon_sym_global] = ACTIONS(2971), - [anon_sym_unsafe] = ACTIONS(647), - [anon_sym_static] = ACTIONS(647), - [anon_sym_LPAREN] = ACTIONS(4239), - [anon_sym_ref] = ACTIONS(3452), - [anon_sym_delegate] = ACTIONS(3454), - [anon_sym_abstract] = ACTIONS(647), - [anon_sym_async] = ACTIONS(647), - [anon_sym_const] = ACTIONS(647), - [anon_sym_file] = ACTIONS(3925), - [anon_sym_fixed] = ACTIONS(647), - [anon_sym_internal] = ACTIONS(647), - [anon_sym_new] = ACTIONS(647), - [anon_sym_override] = ACTIONS(647), - [anon_sym_partial] = ACTIONS(647), - [anon_sym_private] = ACTIONS(647), - [anon_sym_protected] = ACTIONS(647), - [anon_sym_public] = ACTIONS(647), - [anon_sym_readonly] = ACTIONS(647), - [anon_sym_required] = ACTIONS(647), - [anon_sym_sealed] = ACTIONS(647), - [anon_sym_virtual] = ACTIONS(647), - [anon_sym_volatile] = ACTIONS(647), - [anon_sym_where] = ACTIONS(2971), - [anon_sym_notnull] = ACTIONS(2971), - [anon_sym_unmanaged] = ACTIONS(2971), - [anon_sym_scoped] = ACTIONS(2997), - [anon_sym_var] = ACTIONS(2999), - [sym_predefined_type] = ACTIONS(3001), - [anon_sym_yield] = ACTIONS(2971), - [anon_sym_when] = ACTIONS(2971), - [anon_sym_from] = ACTIONS(2971), - [anon_sym_into] = ACTIONS(2971), - [anon_sym_join] = ACTIONS(2971), - [anon_sym_on] = ACTIONS(2971), - [anon_sym_equals] = ACTIONS(2971), - [anon_sym_let] = ACTIONS(2971), - [anon_sym_orderby] = ACTIONS(2971), - [anon_sym_ascending] = ACTIONS(2971), - [anon_sym_descending] = ACTIONS(2971), - [anon_sym_group] = ACTIONS(2971), - [anon_sym_by] = ACTIONS(2971), - [anon_sym_select] = ACTIONS(2971), + [sym__identifier_token] = ACTIONS(4080), + [anon_sym_alias] = ACTIONS(4082), + [anon_sym_global] = ACTIONS(4082), + [anon_sym_LBRACK] = ACTIONS(3893), + [anon_sym_COMMA] = ACTIONS(3893), + [anon_sym_LPAREN] = ACTIONS(3893), + [anon_sym_LBRACE] = ACTIONS(3861), + [anon_sym_file] = ACTIONS(4082), + [anon_sym_LT] = ACTIONS(3895), + [anon_sym_GT] = ACTIONS(3895), + [anon_sym_where] = ACTIONS(3895), + [anon_sym_QMARK] = ACTIONS(3895), + [anon_sym_notnull] = ACTIONS(4082), + [anon_sym_unmanaged] = ACTIONS(4082), + [anon_sym_BANG] = ACTIONS(3895), + [anon_sym_PLUS_PLUS] = ACTIONS(3893), + [anon_sym_DASH_DASH] = ACTIONS(3893), + [anon_sym_PLUS] = ACTIONS(3895), + [anon_sym_DASH] = ACTIONS(3895), + [anon_sym_STAR] = ACTIONS(3893), + [anon_sym_SLASH] = ACTIONS(3895), + [anon_sym_PERCENT] = ACTIONS(3893), + [anon_sym_CARET] = ACTIONS(3893), + [anon_sym_PIPE] = ACTIONS(3895), + [anon_sym_AMP] = ACTIONS(3895), + [anon_sym_LT_LT] = ACTIONS(3893), + [anon_sym_GT_GT] = ACTIONS(3895), + [anon_sym_GT_GT_GT] = ACTIONS(3893), + [anon_sym_EQ_EQ] = ACTIONS(3893), + [anon_sym_BANG_EQ] = ACTIONS(3893), + [anon_sym_GT_EQ] = ACTIONS(3893), + [anon_sym_LT_EQ] = ACTIONS(3893), + [anon_sym_DOT] = ACTIONS(3895), + [anon_sym_scoped] = ACTIONS(4082), + [anon_sym_var] = ACTIONS(4082), + [anon_sym_yield] = ACTIONS(4082), + [anon_sym_switch] = ACTIONS(3895), + [anon_sym_when] = ACTIONS(4082), + [sym_discard] = ACTIONS(4183), + [anon_sym_DOT_DOT] = ACTIONS(3893), + [anon_sym_and] = ACTIONS(3895), + [anon_sym_or] = ACTIONS(3895), + [anon_sym_AMP_AMP] = ACTIONS(3893), + [anon_sym_PIPE_PIPE] = ACTIONS(3893), + [anon_sym_QMARK_QMARK] = ACTIONS(3893), + [anon_sym_from] = ACTIONS(3895), + [anon_sym_into] = ACTIONS(4082), + [anon_sym_join] = ACTIONS(3895), + [anon_sym_on] = ACTIONS(4082), + [anon_sym_equals] = ACTIONS(4082), + [anon_sym_let] = ACTIONS(3895), + [anon_sym_orderby] = ACTIONS(3895), + [anon_sym_ascending] = ACTIONS(3895), + [anon_sym_descending] = ACTIONS(3895), + [anon_sym_group] = ACTIONS(3895), + [anon_sym_by] = ACTIONS(4082), + [anon_sym_select] = ACTIONS(3895), + [anon_sym_as] = ACTIONS(3895), + [anon_sym_is] = ACTIONS(3895), + [anon_sym_DASH_GT] = ACTIONS(3893), + [anon_sym_with] = ACTIONS(3895), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -432434,26 +432078,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2545] = { - [sym_modifier] = STATE(3878), - [sym_variable_declaration] = STATE(7339), - [sym__name] = STATE(4390), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(4096), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(4109), - [sym_type] = STATE(5921), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_identifier] = STATE(4087), - [sym__reserved_identifier] = STATE(3691), + [sym__variable_designation] = STATE(4831), + [sym_parenthesized_variable_designation] = STATE(4760), + [sym_identifier] = STATE(4763), + [sym__reserved_identifier] = STATE(4328), [sym_preproc_region] = STATE(2545), [sym_preproc_endregion] = STATE(2545), [sym_preproc_line] = STATE(2545), @@ -432463,53 +432091,67 @@ 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), - [aux_sym__class_declaration_initializer_repeat2] = STATE(2530), - [sym__identifier_token] = ACTIONS(2967), - [anon_sym_extern] = ACTIONS(647), - [anon_sym_alias] = ACTIONS(2971), - [anon_sym_global] = ACTIONS(2971), - [anon_sym_unsafe] = ACTIONS(647), - [anon_sym_static] = ACTIONS(647), - [anon_sym_LPAREN] = ACTIONS(4215), - [anon_sym_ref] = ACTIONS(3452), - [anon_sym_delegate] = ACTIONS(3454), - [anon_sym_abstract] = ACTIONS(647), - [anon_sym_async] = ACTIONS(647), - [anon_sym_const] = ACTIONS(647), - [anon_sym_file] = ACTIONS(3925), - [anon_sym_fixed] = ACTIONS(647), - [anon_sym_internal] = ACTIONS(647), - [anon_sym_new] = ACTIONS(647), - [anon_sym_override] = ACTIONS(647), - [anon_sym_partial] = ACTIONS(647), - [anon_sym_private] = ACTIONS(647), - [anon_sym_protected] = ACTIONS(647), - [anon_sym_public] = ACTIONS(647), - [anon_sym_readonly] = ACTIONS(647), - [anon_sym_required] = ACTIONS(647), - [anon_sym_sealed] = ACTIONS(647), - [anon_sym_virtual] = ACTIONS(647), - [anon_sym_volatile] = ACTIONS(647), - [anon_sym_where] = ACTIONS(2971), - [anon_sym_notnull] = ACTIONS(2971), - [anon_sym_unmanaged] = ACTIONS(2971), - [anon_sym_scoped] = ACTIONS(2997), - [anon_sym_var] = ACTIONS(2999), - [sym_predefined_type] = ACTIONS(3001), - [anon_sym_yield] = ACTIONS(2971), - [anon_sym_when] = ACTIONS(2971), - [anon_sym_from] = ACTIONS(2971), - [anon_sym_into] = ACTIONS(2971), - [anon_sym_join] = ACTIONS(2971), - [anon_sym_on] = ACTIONS(2971), - [anon_sym_equals] = ACTIONS(2971), - [anon_sym_let] = ACTIONS(2971), - [anon_sym_orderby] = ACTIONS(2971), - [anon_sym_ascending] = ACTIONS(2971), - [anon_sym_descending] = ACTIONS(2971), - [anon_sym_group] = ACTIONS(2971), - [anon_sym_by] = ACTIONS(2971), - [anon_sym_select] = ACTIONS(2971), + [sym__identifier_token] = ACTIONS(4046), + [anon_sym_alias] = ACTIONS(4048), + [anon_sym_global] = ACTIONS(4048), + [anon_sym_LBRACK] = ACTIONS(3947), + [anon_sym_COLON] = ACTIONS(3947), + [anon_sym_COMMA] = ACTIONS(3947), + [anon_sym_LPAREN] = ACTIONS(3947), + [anon_sym_file] = ACTIONS(4048), + [anon_sym_LT] = ACTIONS(3949), + [anon_sym_GT] = ACTIONS(3949), + [anon_sym_where] = ACTIONS(4048), + [anon_sym_QMARK] = ACTIONS(3949), + [anon_sym_notnull] = ACTIONS(4048), + [anon_sym_unmanaged] = ACTIONS(4048), + [anon_sym_BANG] = ACTIONS(3949), + [anon_sym_PLUS_PLUS] = ACTIONS(3947), + [anon_sym_DASH_DASH] = ACTIONS(3947), + [anon_sym_PLUS] = ACTIONS(3949), + [anon_sym_DASH] = ACTIONS(3949), + [anon_sym_STAR] = ACTIONS(3947), + [anon_sym_SLASH] = ACTIONS(3949), + [anon_sym_PERCENT] = ACTIONS(3947), + [anon_sym_CARET] = ACTIONS(3947), + [anon_sym_PIPE] = ACTIONS(3949), + [anon_sym_AMP] = ACTIONS(3949), + [anon_sym_LT_LT] = ACTIONS(3947), + [anon_sym_GT_GT] = ACTIONS(3949), + [anon_sym_GT_GT_GT] = ACTIONS(3947), + [anon_sym_EQ_EQ] = ACTIONS(3947), + [anon_sym_BANG_EQ] = ACTIONS(3947), + [anon_sym_GT_EQ] = ACTIONS(3947), + [anon_sym_LT_EQ] = ACTIONS(3947), + [anon_sym_DOT] = ACTIONS(3949), + [anon_sym_scoped] = ACTIONS(4048), + [anon_sym_var] = ACTIONS(4048), + [anon_sym_yield] = ACTIONS(4048), + [anon_sym_switch] = ACTIONS(3949), + [anon_sym_when] = ACTIONS(4048), + [sym_discard] = ACTIONS(4052), + [anon_sym_DOT_DOT] = ACTIONS(3947), + [anon_sym_and] = ACTIONS(3949), + [anon_sym_or] = ACTIONS(3949), + [anon_sym_AMP_AMP] = ACTIONS(3947), + [anon_sym_PIPE_PIPE] = ACTIONS(3947), + [anon_sym_QMARK_QMARK] = ACTIONS(3947), + [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(3949), + [anon_sym_is] = ACTIONS(3949), + [anon_sym_DASH_GT] = ACTIONS(3947), + [anon_sym_with] = ACTIONS(3949), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -432520,27 +432162,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(3947), }, [2546] = { - [sym_argument_list] = STATE(2946), - [sym__name] = STATE(3072), - [sym_alias_qualified_name] = STATE(3029), - [sym__simple_name] = STATE(3029), - [sym_qualified_name] = STATE(3029), - [sym_generic_name] = STATE(2985), - [sym_type] = STATE(3383), - [sym_implicit_type] = STATE(3054), - [sym_array_type] = STATE(2956), - [sym__array_base_type] = STATE(7267), - [sym_nullable_type] = STATE(3012), - [sym_pointer_type] = STATE(3012), - [sym__pointer_base_type] = STATE(7693), - [sym_function_pointer_type] = STATE(3012), - [sym_ref_type] = STATE(3054), - [sym_scoped_type] = STATE(3054), - [sym_tuple_type] = STATE(3058), - [sym_identifier] = STATE(2923), - [sym__reserved_identifier] = STATE(2945), + [sym_property_pattern_clause] = STATE(2601), + [sym__variable_designation] = STATE(3715), + [sym_parenthesized_variable_designation] = STATE(3688), + [sym_identifier] = STATE(3692), + [sym__reserved_identifier] = STATE(2354), [sym_preproc_region] = STATE(2546), [sym_preproc_endregion] = STATE(2546), [sym_preproc_line] = STATE(2546), @@ -432550,54 +432179,67 @@ 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), - [sym__identifier_token] = ACTIONS(3887), - [anon_sym_extern] = ACTIONS(3482), - [anon_sym_alias] = ACTIONS(3889), - [anon_sym_global] = ACTIONS(3889), - [anon_sym_unsafe] = ACTIONS(3482), - [anon_sym_static] = ACTIONS(3482), - [anon_sym_LBRACK] = ACTIONS(4036), - [anon_sym_LPAREN] = ACTIONS(4038), - [anon_sym_ref] = ACTIONS(3891), - [anon_sym_LBRACE] = ACTIONS(4040), - [anon_sym_delegate] = ACTIONS(4042), - [anon_sym_abstract] = ACTIONS(3482), - [anon_sym_async] = ACTIONS(3482), - [anon_sym_const] = ACTIONS(3482), - [anon_sym_file] = ACTIONS(3889), - [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(3889), - [anon_sym_notnull] = ACTIONS(3889), - [anon_sym_unmanaged] = ACTIONS(3889), - [anon_sym_scoped] = ACTIONS(4044), - [anon_sym_var] = ACTIONS(4046), - [sym_predefined_type] = ACTIONS(4048), - [anon_sym_yield] = ACTIONS(3889), - [anon_sym_when] = ACTIONS(3889), - [anon_sym_from] = ACTIONS(3889), - [anon_sym_into] = ACTIONS(3889), - [anon_sym_join] = ACTIONS(3889), - [anon_sym_on] = ACTIONS(3889), - [anon_sym_equals] = ACTIONS(3889), - [anon_sym_let] = ACTIONS(3889), - [anon_sym_orderby] = ACTIONS(3889), - [anon_sym_ascending] = ACTIONS(3889), - [anon_sym_descending] = ACTIONS(3889), - [anon_sym_group] = ACTIONS(3889), - [anon_sym_by] = ACTIONS(3889), - [anon_sym_select] = ACTIONS(3889), + [sym__identifier_token] = ACTIONS(4080), + [anon_sym_alias] = ACTIONS(4082), + [anon_sym_global] = ACTIONS(4082), + [anon_sym_LBRACK] = ACTIONS(3885), + [anon_sym_COMMA] = ACTIONS(3885), + [anon_sym_LPAREN] = ACTIONS(3885), + [anon_sym_LBRACE] = ACTIONS(3861), + [anon_sym_file] = ACTIONS(4082), + [anon_sym_LT] = ACTIONS(3887), + [anon_sym_GT] = ACTIONS(3887), + [anon_sym_where] = ACTIONS(3887), + [anon_sym_QMARK] = ACTIONS(3887), + [anon_sym_notnull] = ACTIONS(4082), + [anon_sym_unmanaged] = ACTIONS(4082), + [anon_sym_BANG] = ACTIONS(3887), + [anon_sym_PLUS_PLUS] = ACTIONS(3885), + [anon_sym_DASH_DASH] = ACTIONS(3885), + [anon_sym_PLUS] = ACTIONS(3887), + [anon_sym_DASH] = ACTIONS(3887), + [anon_sym_STAR] = ACTIONS(3885), + [anon_sym_SLASH] = ACTIONS(3887), + [anon_sym_PERCENT] = ACTIONS(3885), + [anon_sym_CARET] = ACTIONS(3885), + [anon_sym_PIPE] = ACTIONS(3887), + [anon_sym_AMP] = ACTIONS(3887), + [anon_sym_LT_LT] = ACTIONS(3885), + [anon_sym_GT_GT] = ACTIONS(3887), + [anon_sym_GT_GT_GT] = ACTIONS(3885), + [anon_sym_EQ_EQ] = ACTIONS(3885), + [anon_sym_BANG_EQ] = ACTIONS(3885), + [anon_sym_GT_EQ] = ACTIONS(3885), + [anon_sym_LT_EQ] = ACTIONS(3885), + [anon_sym_DOT] = ACTIONS(3887), + [anon_sym_scoped] = ACTIONS(4082), + [anon_sym_var] = ACTIONS(4082), + [anon_sym_yield] = ACTIONS(4082), + [anon_sym_switch] = ACTIONS(3887), + [anon_sym_when] = ACTIONS(4082), + [sym_discard] = ACTIONS(4183), + [anon_sym_DOT_DOT] = ACTIONS(3885), + [anon_sym_and] = ACTIONS(3887), + [anon_sym_or] = ACTIONS(3887), + [anon_sym_AMP_AMP] = ACTIONS(3885), + [anon_sym_PIPE_PIPE] = ACTIONS(3885), + [anon_sym_QMARK_QMARK] = ACTIONS(3885), + [anon_sym_from] = ACTIONS(3887), + [anon_sym_into] = ACTIONS(4082), + [anon_sym_join] = ACTIONS(3887), + [anon_sym_on] = ACTIONS(4082), + [anon_sym_equals] = ACTIONS(4082), + [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(4082), + [anon_sym_select] = ACTIONS(3887), + [anon_sym_as] = ACTIONS(3887), + [anon_sym_is] = ACTIONS(3887), + [anon_sym_DASH_GT] = ACTIONS(3885), + [anon_sym_with] = ACTIONS(3887), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -432610,26 +432252,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2547] = { - [sym_modifier] = STATE(3878), - [sym_variable_declaration] = STATE(7339), - [sym__name] = STATE(4390), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(4096), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(4109), - [sym_type] = STATE(5919), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_identifier] = STATE(4087), - [sym__reserved_identifier] = STATE(3691), + [sym_type_argument_list] = STATE(2395), [sym_preproc_region] = STATE(2547), [sym_preproc_endregion] = STATE(2547), [sym_preproc_line] = STATE(2547), @@ -432639,53 +432262,71 @@ 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(3643), - [sym__identifier_token] = ACTIONS(2967), - [anon_sym_extern] = ACTIONS(647), - [anon_sym_alias] = ACTIONS(2971), - [anon_sym_global] = ACTIONS(2971), - [anon_sym_unsafe] = ACTIONS(647), - [anon_sym_static] = ACTIONS(647), - [anon_sym_LPAREN] = ACTIONS(2979), - [anon_sym_ref] = ACTIONS(3452), - [anon_sym_delegate] = ACTIONS(3454), - [anon_sym_abstract] = ACTIONS(647), - [anon_sym_async] = ACTIONS(647), - [anon_sym_const] = ACTIONS(647), - [anon_sym_file] = ACTIONS(3925), - [anon_sym_fixed] = ACTIONS(647), - [anon_sym_internal] = ACTIONS(647), - [anon_sym_new] = ACTIONS(647), - [anon_sym_override] = ACTIONS(647), - [anon_sym_partial] = ACTIONS(647), - [anon_sym_private] = ACTIONS(647), - [anon_sym_protected] = ACTIONS(647), - [anon_sym_public] = ACTIONS(647), - [anon_sym_readonly] = ACTIONS(647), - [anon_sym_required] = ACTIONS(647), - [anon_sym_sealed] = ACTIONS(647), - [anon_sym_virtual] = ACTIONS(647), - [anon_sym_volatile] = ACTIONS(647), - [anon_sym_where] = ACTIONS(2971), - [anon_sym_notnull] = ACTIONS(2971), - [anon_sym_unmanaged] = ACTIONS(2971), - [anon_sym_scoped] = ACTIONS(2997), - [anon_sym_var] = ACTIONS(2999), - [sym_predefined_type] = ACTIONS(3001), - [anon_sym_yield] = ACTIONS(2971), - [anon_sym_when] = ACTIONS(2971), - [anon_sym_from] = ACTIONS(2971), - [anon_sym_into] = ACTIONS(2971), - [anon_sym_join] = ACTIONS(2971), - [anon_sym_on] = ACTIONS(2971), - [anon_sym_equals] = ACTIONS(2971), - [anon_sym_let] = ACTIONS(2971), - [anon_sym_orderby] = ACTIONS(2971), - [anon_sym_ascending] = ACTIONS(2971), - [anon_sym_descending] = ACTIONS(2971), - [anon_sym_group] = ACTIONS(2971), - [anon_sym_by] = ACTIONS(2971), - [anon_sym_select] = ACTIONS(2971), + [sym__identifier_token] = ACTIONS(3638), + [anon_sym_alias] = ACTIONS(3638), + [anon_sym_global] = ACTIONS(3638), + [anon_sym_LBRACK] = ACTIONS(3640), + [anon_sym_COLON] = ACTIONS(3638), + [anon_sym_COMMA] = ACTIONS(3640), + [anon_sym_LPAREN] = ACTIONS(3640), + [anon_sym_RPAREN] = ACTIONS(3640), + [anon_sym_LBRACE] = ACTIONS(3640), + [anon_sym_RBRACE] = ACTIONS(3640), + [anon_sym_file] = ACTIONS(3638), + [anon_sym_LT] = ACTIONS(4004), + [anon_sym_GT] = ACTIONS(3638), + [anon_sym_where] = ACTIONS(3638), + [anon_sym_QMARK] = ACTIONS(3638), + [anon_sym_notnull] = ACTIONS(3638), + [anon_sym_unmanaged] = ACTIONS(3638), + [anon_sym_BANG] = ACTIONS(3638), + [anon_sym_PLUS_PLUS] = ACTIONS(3640), + [anon_sym_DASH_DASH] = ACTIONS(3640), + [anon_sym_PLUS] = ACTIONS(3638), + [anon_sym_DASH] = ACTIONS(3638), + [anon_sym_STAR] = ACTIONS(3640), + [anon_sym_SLASH] = ACTIONS(3638), + [anon_sym_PERCENT] = ACTIONS(3640), + [anon_sym_CARET] = ACTIONS(3640), + [anon_sym_PIPE] = ACTIONS(3638), + [anon_sym_AMP] = ACTIONS(3638), + [anon_sym_LT_LT] = ACTIONS(3640), + [anon_sym_GT_GT] = ACTIONS(3638), + [anon_sym_GT_GT_GT] = ACTIONS(3640), + [anon_sym_EQ_EQ] = ACTIONS(3640), + [anon_sym_BANG_EQ] = ACTIONS(3640), + [anon_sym_GT_EQ] = ACTIONS(3640), + [anon_sym_LT_EQ] = ACTIONS(3640), + [anon_sym_DOT] = ACTIONS(3638), + [anon_sym_scoped] = ACTIONS(3638), + [anon_sym_COLON_COLON] = ACTIONS(3788), + [anon_sym_var] = ACTIONS(3638), + [anon_sym_yield] = ACTIONS(3638), + [anon_sym_switch] = ACTIONS(3638), + [anon_sym_when] = ACTIONS(3638), + [sym_discard] = ACTIONS(3638), + [anon_sym_DOT_DOT] = ACTIONS(3640), + [anon_sym_and] = ACTIONS(3638), + [anon_sym_or] = ACTIONS(3638), + [anon_sym_AMP_AMP] = ACTIONS(3640), + [anon_sym_PIPE_PIPE] = ACTIONS(3640), + [anon_sym_QMARK_QMARK] = ACTIONS(3640), + [anon_sym_from] = ACTIONS(3638), + [anon_sym_into] = ACTIONS(3638), + [anon_sym_join] = ACTIONS(3638), + [anon_sym_on] = ACTIONS(3638), + [anon_sym_equals] = ACTIONS(3638), + [anon_sym_let] = ACTIONS(3638), + [anon_sym_orderby] = ACTIONS(3638), + [anon_sym_ascending] = ACTIONS(3638), + [anon_sym_descending] = ACTIONS(3638), + [anon_sym_group] = ACTIONS(3638), + [anon_sym_by] = ACTIONS(3638), + [anon_sym_select] = ACTIONS(3638), + [anon_sym_as] = ACTIONS(3638), + [anon_sym_is] = ACTIONS(3638), + [anon_sym_DASH_GT] = ACTIONS(3640), + [anon_sym_with] = ACTIONS(3638), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -432698,10 +432339,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2548] = { - [sym_parameter_list] = STATE(7311), - [sym__lambda_parameters] = STATE(7536), - [sym_identifier] = STATE(7626), - [sym__reserved_identifier] = STATE(2175), + [sym_property_pattern_clause] = STATE(2626), + [sym__variable_designation] = STATE(3715), + [sym_parenthesized_variable_designation] = STATE(3688), + [sym_identifier] = STATE(3692), + [sym__reserved_identifier] = STATE(2354), [sym_preproc_region] = STATE(2548), [sym_preproc_endregion] = STATE(2548), [sym_preproc_line] = STATE(2548), @@ -432711,68 +432353,67 @@ 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), - [sym__identifier_token] = ACTIONS(3949), - [anon_sym_alias] = ACTIONS(3949), - [anon_sym_global] = ACTIONS(3949), - [anon_sym_LBRACK] = ACTIONS(3951), - [anon_sym_COLON] = ACTIONS(3951), - [anon_sym_COMMA] = ACTIONS(3951), - [anon_sym_LPAREN] = ACTIONS(3951), - [anon_sym_LBRACE] = ACTIONS(3951), - [anon_sym_file] = ACTIONS(3949), - [anon_sym_LT] = ACTIONS(3949), - [anon_sym_GT] = ACTIONS(3949), - [anon_sym_where] = ACTIONS(3949), - [anon_sym_QMARK] = ACTIONS(3949), - [anon_sym_notnull] = ACTIONS(3949), - [anon_sym_unmanaged] = ACTIONS(3949), - [anon_sym_BANG] = ACTIONS(3949), - [anon_sym_PLUS_PLUS] = ACTIONS(3951), - [anon_sym_DASH_DASH] = ACTIONS(3951), - [anon_sym_PLUS] = ACTIONS(3949), - [anon_sym_DASH] = ACTIONS(3949), - [anon_sym_STAR] = ACTIONS(3951), - [anon_sym_SLASH] = ACTIONS(3949), - [anon_sym_PERCENT] = ACTIONS(3951), - [anon_sym_CARET] = ACTIONS(3951), - [anon_sym_PIPE] = ACTIONS(3949), - [anon_sym_AMP] = ACTIONS(3949), - [anon_sym_LT_LT] = ACTIONS(3951), - [anon_sym_GT_GT] = ACTIONS(3949), - [anon_sym_GT_GT_GT] = ACTIONS(3951), - [anon_sym_EQ_EQ] = ACTIONS(3951), - [anon_sym_BANG_EQ] = ACTIONS(3951), - [anon_sym_GT_EQ] = ACTIONS(3951), - [anon_sym_LT_EQ] = ACTIONS(3951), - [anon_sym_DOT] = ACTIONS(3949), - [anon_sym_scoped] = ACTIONS(3949), - [anon_sym_var] = ACTIONS(3949), - [anon_sym_yield] = ACTIONS(3949), - [anon_sym_switch] = ACTIONS(3949), - [anon_sym_when] = ACTIONS(3949), - [sym_discard] = ACTIONS(3949), - [anon_sym_DOT_DOT] = ACTIONS(3951), - [anon_sym_and] = ACTIONS(3949), - [anon_sym_or] = ACTIONS(3949), - [anon_sym_AMP_AMP] = ACTIONS(3951), - [anon_sym_PIPE_PIPE] = ACTIONS(3951), - [anon_sym_QMARK_QMARK] = ACTIONS(3951), - [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_ascending] = ACTIONS(3949), - [anon_sym_descending] = 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(3951), - [anon_sym_with] = ACTIONS(3949), + [sym__identifier_token] = ACTIONS(4080), + [anon_sym_alias] = ACTIONS(4082), + [anon_sym_global] = ACTIONS(4082), + [anon_sym_LBRACK] = ACTIONS(3885), + [anon_sym_COMMA] = ACTIONS(3885), + [anon_sym_LPAREN] = ACTIONS(3885), + [anon_sym_LBRACE] = ACTIONS(3861), + [anon_sym_file] = ACTIONS(4082), + [anon_sym_LT] = ACTIONS(3887), + [anon_sym_GT] = ACTIONS(3887), + [anon_sym_where] = ACTIONS(3887), + [anon_sym_QMARK] = ACTIONS(3887), + [anon_sym_notnull] = ACTIONS(4082), + [anon_sym_unmanaged] = ACTIONS(4082), + [anon_sym_BANG] = ACTIONS(3887), + [anon_sym_PLUS_PLUS] = ACTIONS(3885), + [anon_sym_DASH_DASH] = ACTIONS(3885), + [anon_sym_PLUS] = ACTIONS(3887), + [anon_sym_DASH] = ACTIONS(3887), + [anon_sym_STAR] = ACTIONS(3885), + [anon_sym_SLASH] = ACTIONS(3887), + [anon_sym_PERCENT] = ACTIONS(3885), + [anon_sym_CARET] = ACTIONS(3885), + [anon_sym_PIPE] = ACTIONS(3887), + [anon_sym_AMP] = ACTIONS(3887), + [anon_sym_LT_LT] = ACTIONS(3885), + [anon_sym_GT_GT] = ACTIONS(3887), + [anon_sym_GT_GT_GT] = ACTIONS(3885), + [anon_sym_EQ_EQ] = ACTIONS(3885), + [anon_sym_BANG_EQ] = ACTIONS(3885), + [anon_sym_GT_EQ] = ACTIONS(3885), + [anon_sym_LT_EQ] = ACTIONS(3885), + [anon_sym_DOT] = ACTIONS(3887), + [anon_sym_scoped] = ACTIONS(4082), + [anon_sym_var] = ACTIONS(4082), + [anon_sym_yield] = ACTIONS(4082), + [anon_sym_switch] = ACTIONS(3887), + [anon_sym_when] = ACTIONS(4082), + [sym_discard] = ACTIONS(4183), + [anon_sym_DOT_DOT] = ACTIONS(3885), + [anon_sym_and] = ACTIONS(3887), + [anon_sym_or] = ACTIONS(3887), + [anon_sym_AMP_AMP] = ACTIONS(3885), + [anon_sym_PIPE_PIPE] = ACTIONS(3885), + [anon_sym_QMARK_QMARK] = ACTIONS(3885), + [anon_sym_from] = ACTIONS(3887), + [anon_sym_into] = ACTIONS(3887), + [anon_sym_join] = ACTIONS(3887), + [anon_sym_on] = ACTIONS(4082), + [anon_sym_equals] = ACTIONS(4082), + [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(4082), + [anon_sym_select] = ACTIONS(3887), + [anon_sym_as] = ACTIONS(3887), + [anon_sym_is] = ACTIONS(3887), + [anon_sym_DASH_GT] = ACTIONS(3885), + [anon_sym_with] = ACTIONS(3887), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -432783,29 +432424,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(3951), }, [2549] = { - [sym_modifier] = STATE(3878), - [sym_variable_declaration] = STATE(7742), - [sym__name] = STATE(4390), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(4096), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(4109), - [sym_type] = STATE(5921), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_identifier] = STATE(4087), - [sym__reserved_identifier] = STATE(3691), + [sym__variable_designation] = STATE(4766), + [sym_parenthesized_variable_designation] = STATE(4760), + [sym_identifier] = STATE(4763), + [sym__reserved_identifier] = STATE(4328), [sym_preproc_region] = STATE(2549), [sym_preproc_endregion] = STATE(2549), [sym_preproc_line] = STATE(2549), @@ -432815,53 +432439,67 @@ 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(2534), - [sym__identifier_token] = ACTIONS(2967), - [anon_sym_extern] = ACTIONS(647), - [anon_sym_alias] = ACTIONS(2971), - [anon_sym_global] = ACTIONS(2971), - [anon_sym_unsafe] = ACTIONS(647), - [anon_sym_static] = ACTIONS(647), - [anon_sym_LPAREN] = ACTIONS(4241), - [anon_sym_ref] = ACTIONS(3452), - [anon_sym_delegate] = ACTIONS(3454), - [anon_sym_abstract] = ACTIONS(647), - [anon_sym_async] = ACTIONS(647), - [anon_sym_const] = ACTIONS(647), - [anon_sym_file] = ACTIONS(3925), - [anon_sym_fixed] = ACTIONS(647), - [anon_sym_internal] = ACTIONS(647), - [anon_sym_new] = ACTIONS(647), - [anon_sym_override] = ACTIONS(647), - [anon_sym_partial] = ACTIONS(647), - [anon_sym_private] = ACTIONS(647), - [anon_sym_protected] = ACTIONS(647), - [anon_sym_public] = ACTIONS(647), - [anon_sym_readonly] = ACTIONS(647), - [anon_sym_required] = ACTIONS(647), - [anon_sym_sealed] = ACTIONS(647), - [anon_sym_virtual] = ACTIONS(647), - [anon_sym_volatile] = ACTIONS(647), - [anon_sym_where] = ACTIONS(2971), - [anon_sym_notnull] = ACTIONS(2971), - [anon_sym_unmanaged] = ACTIONS(2971), - [anon_sym_scoped] = ACTIONS(2997), - [anon_sym_var] = ACTIONS(2999), - [sym_predefined_type] = ACTIONS(3001), - [anon_sym_yield] = ACTIONS(2971), - [anon_sym_when] = ACTIONS(2971), - [anon_sym_from] = ACTIONS(2971), - [anon_sym_into] = ACTIONS(2971), - [anon_sym_join] = ACTIONS(2971), - [anon_sym_on] = ACTIONS(2971), - [anon_sym_equals] = ACTIONS(2971), - [anon_sym_let] = ACTIONS(2971), - [anon_sym_orderby] = ACTIONS(2971), - [anon_sym_ascending] = ACTIONS(2971), - [anon_sym_descending] = ACTIONS(2971), - [anon_sym_group] = ACTIONS(2971), - [anon_sym_by] = ACTIONS(2971), - [anon_sym_select] = ACTIONS(2971), + [sym__identifier_token] = ACTIONS(4046), + [anon_sym_alias] = ACTIONS(4048), + [anon_sym_global] = ACTIONS(4048), + [anon_sym_LBRACK] = ACTIONS(3893), + [anon_sym_COLON] = ACTIONS(3893), + [anon_sym_COMMA] = ACTIONS(3893), + [anon_sym_LPAREN] = ACTIONS(3893), + [anon_sym_file] = ACTIONS(4048), + [anon_sym_LT] = ACTIONS(3895), + [anon_sym_GT] = ACTIONS(3895), + [anon_sym_where] = ACTIONS(4048), + [anon_sym_QMARK] = ACTIONS(3895), + [anon_sym_notnull] = ACTIONS(4048), + [anon_sym_unmanaged] = ACTIONS(4048), + [anon_sym_BANG] = ACTIONS(3895), + [anon_sym_PLUS_PLUS] = ACTIONS(3893), + [anon_sym_DASH_DASH] = ACTIONS(3893), + [anon_sym_PLUS] = ACTIONS(3895), + [anon_sym_DASH] = ACTIONS(3895), + [anon_sym_STAR] = ACTIONS(3893), + [anon_sym_SLASH] = ACTIONS(3895), + [anon_sym_PERCENT] = ACTIONS(3893), + [anon_sym_CARET] = ACTIONS(3893), + [anon_sym_PIPE] = ACTIONS(3895), + [anon_sym_AMP] = ACTIONS(3895), + [anon_sym_LT_LT] = ACTIONS(3893), + [anon_sym_GT_GT] = ACTIONS(3895), + [anon_sym_GT_GT_GT] = ACTIONS(3893), + [anon_sym_EQ_EQ] = ACTIONS(3893), + [anon_sym_BANG_EQ] = ACTIONS(3893), + [anon_sym_GT_EQ] = ACTIONS(3893), + [anon_sym_LT_EQ] = ACTIONS(3893), + [anon_sym_DOT] = ACTIONS(3895), + [anon_sym_scoped] = ACTIONS(4048), + [anon_sym_var] = ACTIONS(4048), + [anon_sym_yield] = ACTIONS(4048), + [anon_sym_switch] = ACTIONS(3895), + [anon_sym_when] = ACTIONS(4048), + [sym_discard] = ACTIONS(4052), + [anon_sym_DOT_DOT] = ACTIONS(3893), + [anon_sym_and] = ACTIONS(3895), + [anon_sym_or] = ACTIONS(3895), + [anon_sym_AMP_AMP] = ACTIONS(3893), + [anon_sym_PIPE_PIPE] = ACTIONS(3893), + [anon_sym_QMARK_QMARK] = ACTIONS(3893), + [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(3895), + [anon_sym_is] = ACTIONS(3895), + [anon_sym_DASH_GT] = ACTIONS(3893), + [anon_sym_with] = ACTIONS(3895), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -432872,28 +432510,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(3893), }, [2550] = { - [sym_modifier] = STATE(3878), - [sym_variable_declaration] = STATE(7375), - [sym__name] = STATE(4390), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(4096), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(4109), - [sym_type] = STATE(5921), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_identifier] = STATE(4087), - [sym__reserved_identifier] = STATE(3691), + [sym__variable_designation] = STATE(4766), + [sym_parenthesized_variable_designation] = STATE(4760), + [sym_identifier] = STATE(4763), + [sym__reserved_identifier] = STATE(4328), [sym_preproc_region] = STATE(2550), [sym_preproc_endregion] = STATE(2550), [sym_preproc_line] = STATE(2550), @@ -432903,53 +432526,67 @@ 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(2542), - [sym__identifier_token] = ACTIONS(2967), - [anon_sym_extern] = ACTIONS(647), - [anon_sym_alias] = ACTIONS(2971), - [anon_sym_global] = ACTIONS(2971), - [anon_sym_unsafe] = ACTIONS(647), - [anon_sym_static] = ACTIONS(647), - [anon_sym_LPAREN] = ACTIONS(4243), - [anon_sym_ref] = ACTIONS(3452), - [anon_sym_delegate] = ACTIONS(3454), - [anon_sym_abstract] = ACTIONS(647), - [anon_sym_async] = ACTIONS(647), - [anon_sym_const] = ACTIONS(647), - [anon_sym_file] = ACTIONS(3925), - [anon_sym_fixed] = ACTIONS(647), - [anon_sym_internal] = ACTIONS(647), - [anon_sym_new] = ACTIONS(647), - [anon_sym_override] = ACTIONS(647), - [anon_sym_partial] = ACTIONS(647), - [anon_sym_private] = ACTIONS(647), - [anon_sym_protected] = ACTIONS(647), - [anon_sym_public] = ACTIONS(647), - [anon_sym_readonly] = ACTIONS(647), - [anon_sym_required] = ACTIONS(647), - [anon_sym_sealed] = ACTIONS(647), - [anon_sym_virtual] = ACTIONS(647), - [anon_sym_volatile] = ACTIONS(647), - [anon_sym_where] = ACTIONS(2971), - [anon_sym_notnull] = ACTIONS(2971), - [anon_sym_unmanaged] = ACTIONS(2971), - [anon_sym_scoped] = ACTIONS(2997), - [anon_sym_var] = ACTIONS(2999), - [sym_predefined_type] = ACTIONS(3001), - [anon_sym_yield] = ACTIONS(2971), - [anon_sym_when] = ACTIONS(2971), - [anon_sym_from] = ACTIONS(2971), - [anon_sym_into] = ACTIONS(2971), - [anon_sym_join] = ACTIONS(2971), - [anon_sym_on] = ACTIONS(2971), - [anon_sym_equals] = ACTIONS(2971), - [anon_sym_let] = ACTIONS(2971), - [anon_sym_orderby] = ACTIONS(2971), - [anon_sym_ascending] = ACTIONS(2971), - [anon_sym_descending] = ACTIONS(2971), - [anon_sym_group] = ACTIONS(2971), - [anon_sym_by] = ACTIONS(2971), - [anon_sym_select] = ACTIONS(2971), + [sym__identifier_token] = ACTIONS(4046), + [anon_sym_alias] = ACTIONS(4048), + [anon_sym_global] = ACTIONS(4048), + [anon_sym_LBRACK] = ACTIONS(3893), + [anon_sym_COLON] = ACTIONS(3893), + [anon_sym_COMMA] = ACTIONS(3893), + [anon_sym_LPAREN] = ACTIONS(3893), + [anon_sym_file] = ACTIONS(4048), + [anon_sym_LT] = ACTIONS(3895), + [anon_sym_GT] = ACTIONS(3895), + [anon_sym_where] = ACTIONS(4048), + [anon_sym_QMARK] = ACTIONS(3895), + [anon_sym_notnull] = ACTIONS(4048), + [anon_sym_unmanaged] = ACTIONS(4048), + [anon_sym_BANG] = ACTIONS(3895), + [anon_sym_PLUS_PLUS] = ACTIONS(3893), + [anon_sym_DASH_DASH] = ACTIONS(3893), + [anon_sym_PLUS] = ACTIONS(3895), + [anon_sym_DASH] = ACTIONS(3895), + [anon_sym_STAR] = ACTIONS(3893), + [anon_sym_SLASH] = ACTIONS(3895), + [anon_sym_PERCENT] = ACTIONS(3893), + [anon_sym_CARET] = ACTIONS(3893), + [anon_sym_PIPE] = ACTIONS(3895), + [anon_sym_AMP] = ACTIONS(3895), + [anon_sym_LT_LT] = ACTIONS(3893), + [anon_sym_GT_GT] = ACTIONS(3895), + [anon_sym_GT_GT_GT] = ACTIONS(3893), + [anon_sym_EQ_EQ] = ACTIONS(3893), + [anon_sym_BANG_EQ] = ACTIONS(3893), + [anon_sym_GT_EQ] = ACTIONS(3893), + [anon_sym_LT_EQ] = ACTIONS(3893), + [anon_sym_DOT] = ACTIONS(3895), + [anon_sym_scoped] = ACTIONS(4048), + [anon_sym_var] = ACTIONS(4048), + [anon_sym_yield] = ACTIONS(4048), + [anon_sym_switch] = ACTIONS(3895), + [anon_sym_when] = ACTIONS(4048), + [sym_discard] = ACTIONS(4052), + [anon_sym_DOT_DOT] = ACTIONS(3893), + [anon_sym_and] = ACTIONS(3895), + [anon_sym_or] = ACTIONS(3895), + [anon_sym_AMP_AMP] = ACTIONS(3893), + [anon_sym_PIPE_PIPE] = ACTIONS(3893), + [anon_sym_QMARK_QMARK] = ACTIONS(3893), + [anon_sym_from] = ACTIONS(4048), + [anon_sym_into] = ACTIONS(3895), + [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(3895), + [anon_sym_is] = ACTIONS(3895), + [anon_sym_DASH_GT] = ACTIONS(3893), + [anon_sym_with] = ACTIONS(3895), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -432960,12 +432597,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(3893), }, [2551] = { - [sym__variable_designation] = STATE(4513), - [sym_parenthesized_variable_designation] = STATE(4761), - [sym_identifier] = STATE(4764), - [sym__reserved_identifier] = STATE(4323), + [sym_modifier] = STATE(3845), + [sym__name] = STATE(4369), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(4068), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(4073), + [sym_type] = STATE(6101), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_identifier] = STATE(4081), + [sym__reserved_identifier] = STATE(3654), [sym_preproc_region] = STATE(2551), [sym_preproc_endregion] = STATE(2551), [sym_preproc_line] = STATE(2551), @@ -432975,67 +432628,53 @@ 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), - [sym__identifier_token] = ACTIONS(4050), - [anon_sym_alias] = ACTIONS(4052), - [anon_sym_global] = ACTIONS(4052), - [anon_sym_LBRACK] = ACTIONS(3957), - [anon_sym_COLON] = ACTIONS(3957), - [anon_sym_COMMA] = ACTIONS(3957), - [anon_sym_LPAREN] = ACTIONS(3957), - [anon_sym_file] = ACTIONS(4052), - [anon_sym_LT] = ACTIONS(3959), - [anon_sym_GT] = ACTIONS(3959), - [anon_sym_where] = ACTIONS(4052), - [anon_sym_QMARK] = ACTIONS(3959), - [anon_sym_notnull] = ACTIONS(4052), - [anon_sym_unmanaged] = ACTIONS(4052), - [anon_sym_BANG] = ACTIONS(3959), - [anon_sym_PLUS_PLUS] = ACTIONS(3957), - [anon_sym_DASH_DASH] = ACTIONS(3957), - [anon_sym_PLUS] = ACTIONS(3959), - [anon_sym_DASH] = ACTIONS(3959), - [anon_sym_STAR] = ACTIONS(3957), - [anon_sym_SLASH] = ACTIONS(3959), - [anon_sym_PERCENT] = ACTIONS(3957), - [anon_sym_CARET] = ACTIONS(3957), - [anon_sym_PIPE] = ACTIONS(3959), - [anon_sym_AMP] = ACTIONS(3959), - [anon_sym_LT_LT] = ACTIONS(3957), - [anon_sym_GT_GT] = ACTIONS(3959), - [anon_sym_GT_GT_GT] = ACTIONS(3957), - [anon_sym_EQ_EQ] = ACTIONS(3957), - [anon_sym_BANG_EQ] = ACTIONS(3957), - [anon_sym_GT_EQ] = ACTIONS(3957), - [anon_sym_LT_EQ] = ACTIONS(3957), - [anon_sym_DOT] = ACTIONS(3959), - [anon_sym_scoped] = ACTIONS(4052), - [anon_sym_var] = ACTIONS(4052), - [anon_sym_yield] = ACTIONS(4052), - [anon_sym_switch] = ACTIONS(3959), - [anon_sym_when] = ACTIONS(4052), - [sym_discard] = ACTIONS(4056), - [anon_sym_DOT_DOT] = ACTIONS(3957), - [anon_sym_and] = ACTIONS(3959), - [anon_sym_or] = ACTIONS(3959), - [anon_sym_AMP_AMP] = ACTIONS(3957), - [anon_sym_PIPE_PIPE] = ACTIONS(3957), - [anon_sym_QMARK_QMARK] = ACTIONS(3957), - [anon_sym_from] = ACTIONS(4052), - [anon_sym_into] = ACTIONS(3959), - [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(3959), - [anon_sym_is] = ACTIONS(3959), - [anon_sym_DASH_GT] = ACTIONS(3957), - [anon_sym_with] = ACTIONS(3959), + [aux_sym__class_declaration_initializer_repeat2] = STATE(3585), + [sym__identifier_token] = ACTIONS(2965), + [anon_sym_extern] = ACTIONS(645), + [anon_sym_alias] = ACTIONS(2969), + [anon_sym_global] = ACTIONS(2969), + [anon_sym_unsafe] = ACTIONS(645), + [anon_sym_static] = ACTIONS(645), + [anon_sym_LPAREN] = ACTIONS(2977), + [anon_sym_ref] = ACTIONS(3436), + [anon_sym_delegate] = ACTIONS(3438), + [anon_sym_abstract] = ACTIONS(645), + [anon_sym_async] = ACTIONS(645), + [anon_sym_const] = ACTIONS(645), + [anon_sym_file] = ACTIONS(4221), + [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(2969), + [anon_sym_notnull] = ACTIONS(2969), + [anon_sym_unmanaged] = ACTIONS(2969), + [anon_sym_scoped] = ACTIONS(2993), + [anon_sym_var] = ACTIONS(2995), + [sym_predefined_type] = ACTIONS(2997), + [anon_sym_yield] = ACTIONS(2969), + [anon_sym_when] = ACTIONS(2969), + [anon_sym_from] = ACTIONS(2969), + [anon_sym_into] = ACTIONS(2969), + [anon_sym_join] = ACTIONS(2969), + [anon_sym_on] = ACTIONS(2969), + [anon_sym_equals] = ACTIONS(2969), + [anon_sym_let] = ACTIONS(2969), + [anon_sym_orderby] = ACTIONS(2969), + [anon_sym_ascending] = ACTIONS(2969), + [anon_sym_descending] = ACTIONS(2969), + [anon_sym_group] = ACTIONS(2969), + [anon_sym_by] = ACTIONS(2969), + [anon_sym_select] = ACTIONS(2969), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -433046,13 +432685,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(3957), }, [2552] = { - [sym__variable_designation] = STATE(4511), - [sym_parenthesized_variable_designation] = STATE(4761), - [sym_identifier] = STATE(4764), - [sym__reserved_identifier] = STATE(4323), + [sym__variable_designation] = STATE(4812), + [sym_parenthesized_variable_designation] = STATE(4760), + [sym_identifier] = STATE(4763), + [sym__reserved_identifier] = STATE(4328), [sym_preproc_region] = STATE(2552), [sym_preproc_endregion] = STATE(2552), [sym_preproc_line] = STATE(2552), @@ -433062,85 +432700,84 @@ 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), - [sym__identifier_token] = ACTIONS(4050), - [anon_sym_alias] = ACTIONS(4052), - [anon_sym_global] = ACTIONS(4052), - [anon_sym_LBRACK] = ACTIONS(3913), - [anon_sym_COLON] = ACTIONS(3913), - [anon_sym_COMMA] = ACTIONS(3913), - [anon_sym_LPAREN] = ACTIONS(3913), - [anon_sym_file] = ACTIONS(4052), - [anon_sym_LT] = ACTIONS(3915), - [anon_sym_GT] = ACTIONS(3915), - [anon_sym_where] = ACTIONS(4052), - [anon_sym_QMARK] = ACTIONS(3915), - [anon_sym_notnull] = ACTIONS(4052), - [anon_sym_unmanaged] = ACTIONS(4052), - [anon_sym_BANG] = ACTIONS(3915), - [anon_sym_PLUS_PLUS] = ACTIONS(3913), - [anon_sym_DASH_DASH] = ACTIONS(3913), - [anon_sym_PLUS] = ACTIONS(3915), - [anon_sym_DASH] = ACTIONS(3915), - [anon_sym_STAR] = ACTIONS(3913), - [anon_sym_SLASH] = ACTIONS(3915), - [anon_sym_PERCENT] = ACTIONS(3913), - [anon_sym_CARET] = ACTIONS(3913), - [anon_sym_PIPE] = ACTIONS(3915), - [anon_sym_AMP] = ACTIONS(3915), - [anon_sym_LT_LT] = ACTIONS(3913), - [anon_sym_GT_GT] = ACTIONS(3915), - [anon_sym_GT_GT_GT] = ACTIONS(3913), - [anon_sym_EQ_EQ] = ACTIONS(3913), - [anon_sym_BANG_EQ] = ACTIONS(3913), - [anon_sym_GT_EQ] = ACTIONS(3913), - [anon_sym_LT_EQ] = ACTIONS(3913), - [anon_sym_DOT] = ACTIONS(3915), - [anon_sym_scoped] = ACTIONS(4052), - [anon_sym_var] = ACTIONS(4052), - [anon_sym_yield] = ACTIONS(4052), - [anon_sym_switch] = ACTIONS(3915), - [anon_sym_when] = ACTIONS(4052), - [sym_discard] = ACTIONS(4056), - [anon_sym_DOT_DOT] = ACTIONS(3913), - [anon_sym_and] = ACTIONS(3915), - [anon_sym_or] = ACTIONS(3915), - [anon_sym_AMP_AMP] = ACTIONS(3913), - [anon_sym_PIPE_PIPE] = ACTIONS(3913), - [anon_sym_QMARK_QMARK] = ACTIONS(3913), - [anon_sym_from] = ACTIONS(4052), - [anon_sym_into] = ACTIONS(3915), - [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(3915), - [anon_sym_is] = ACTIONS(3915), - [anon_sym_DASH_GT] = ACTIONS(3913), - [anon_sym_with] = ACTIONS(3915), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_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(3913), + [sym__identifier_token] = ACTIONS(4046), + [anon_sym_alias] = ACTIONS(4048), + [anon_sym_global] = ACTIONS(4048), + [anon_sym_LBRACK] = ACTIONS(3885), + [anon_sym_COLON] = ACTIONS(3885), + [anon_sym_COMMA] = ACTIONS(3885), + [anon_sym_LPAREN] = ACTIONS(3885), + [anon_sym_file] = ACTIONS(4048), + [anon_sym_LT] = ACTIONS(3887), + [anon_sym_GT] = ACTIONS(3887), + [anon_sym_where] = ACTIONS(4048), + [anon_sym_QMARK] = ACTIONS(3887), + [anon_sym_notnull] = ACTIONS(4048), + [anon_sym_unmanaged] = ACTIONS(4048), + [anon_sym_BANG] = ACTIONS(3887), + [anon_sym_PLUS_PLUS] = ACTIONS(3885), + [anon_sym_DASH_DASH] = ACTIONS(3885), + [anon_sym_PLUS] = ACTIONS(3887), + [anon_sym_DASH] = ACTIONS(3887), + [anon_sym_STAR] = ACTIONS(3885), + [anon_sym_SLASH] = ACTIONS(3887), + [anon_sym_PERCENT] = ACTIONS(3885), + [anon_sym_CARET] = ACTIONS(3885), + [anon_sym_PIPE] = ACTIONS(3887), + [anon_sym_AMP] = ACTIONS(3887), + [anon_sym_LT_LT] = ACTIONS(3885), + [anon_sym_GT_GT] = ACTIONS(3887), + [anon_sym_GT_GT_GT] = ACTIONS(3885), + [anon_sym_EQ_EQ] = ACTIONS(3885), + [anon_sym_BANG_EQ] = ACTIONS(3885), + [anon_sym_GT_EQ] = ACTIONS(3885), + [anon_sym_LT_EQ] = ACTIONS(3885), + [anon_sym_DOT] = ACTIONS(3887), + [anon_sym_scoped] = ACTIONS(4048), + [anon_sym_var] = ACTIONS(4048), + [anon_sym_yield] = ACTIONS(4048), + [anon_sym_switch] = ACTIONS(3887), + [anon_sym_when] = ACTIONS(4048), + [sym_discard] = ACTIONS(4052), + [anon_sym_DOT_DOT] = ACTIONS(3885), + [anon_sym_and] = ACTIONS(3887), + [anon_sym_or] = ACTIONS(3887), + [anon_sym_AMP_AMP] = ACTIONS(3885), + [anon_sym_PIPE_PIPE] = ACTIONS(3885), + [anon_sym_QMARK_QMARK] = ACTIONS(3885), + [anon_sym_from] = ACTIONS(4048), + [anon_sym_into] = ACTIONS(3887), + [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(3887), + [anon_sym_is] = ACTIONS(3887), + [anon_sym_DASH_GT] = ACTIONS(3885), + [anon_sym_with] = ACTIONS(3887), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_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(3885), }, [2553] = { - [sym_property_pattern_clause] = STATE(2607), - [sym__variable_designation] = STATE(3784), - [sym_parenthesized_variable_designation] = STATE(3779), - [sym_identifier] = STATE(3781), - [sym__reserved_identifier] = STATE(2361), + [sym__variable_designation] = STATE(4814), + [sym_parenthesized_variable_designation] = STATE(4760), + [sym_identifier] = STATE(4763), + [sym__reserved_identifier] = STATE(4328), [sym_preproc_region] = STATE(2553), [sym_preproc_endregion] = STATE(2553), [sym_preproc_line] = STATE(2553), @@ -433150,83 +432787,84 @@ 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), - [sym__identifier_token] = ACTIONS(4058), - [anon_sym_alias] = ACTIONS(4060), - [anon_sym_global] = ACTIONS(4060), - [anon_sym_LBRACK] = ACTIONS(3905), - [anon_sym_COMMA] = ACTIONS(3905), - [anon_sym_LPAREN] = ACTIONS(3905), - [anon_sym_LBRACE] = ACTIONS(3881), - [anon_sym_file] = ACTIONS(4060), - [anon_sym_LT] = ACTIONS(3907), - [anon_sym_GT] = ACTIONS(3907), - [anon_sym_where] = ACTIONS(3907), - [anon_sym_QMARK] = ACTIONS(3907), - [anon_sym_notnull] = ACTIONS(4060), - [anon_sym_unmanaged] = ACTIONS(4060), - [anon_sym_BANG] = ACTIONS(3907), - [anon_sym_PLUS_PLUS] = ACTIONS(3905), - [anon_sym_DASH_DASH] = ACTIONS(3905), - [anon_sym_PLUS] = ACTIONS(3907), - [anon_sym_DASH] = ACTIONS(3907), - [anon_sym_STAR] = ACTIONS(3905), - [anon_sym_SLASH] = ACTIONS(3907), - [anon_sym_PERCENT] = ACTIONS(3905), - [anon_sym_CARET] = ACTIONS(3905), - [anon_sym_PIPE] = ACTIONS(3907), - [anon_sym_AMP] = ACTIONS(3907), - [anon_sym_LT_LT] = ACTIONS(3905), - [anon_sym_GT_GT] = ACTIONS(3907), - [anon_sym_GT_GT_GT] = ACTIONS(3905), - [anon_sym_EQ_EQ] = ACTIONS(3905), - [anon_sym_BANG_EQ] = ACTIONS(3905), - [anon_sym_GT_EQ] = ACTIONS(3905), - [anon_sym_LT_EQ] = ACTIONS(3905), - [anon_sym_DOT] = ACTIONS(3907), - [anon_sym_scoped] = ACTIONS(4060), - [anon_sym_var] = ACTIONS(4060), - [anon_sym_yield] = ACTIONS(4060), - [anon_sym_switch] = ACTIONS(3907), - [anon_sym_when] = ACTIONS(4060), - [sym_discard] = ACTIONS(4207), - [anon_sym_DOT_DOT] = ACTIONS(3905), - [anon_sym_and] = ACTIONS(3907), - [anon_sym_or] = ACTIONS(3907), - [anon_sym_AMP_AMP] = ACTIONS(3905), - [anon_sym_PIPE_PIPE] = ACTIONS(3905), - [anon_sym_QMARK_QMARK] = ACTIONS(3905), - [anon_sym_from] = ACTIONS(3907), - [anon_sym_into] = ACTIONS(4060), - [anon_sym_join] = ACTIONS(3907), - [anon_sym_on] = ACTIONS(4060), - [anon_sym_equals] = ACTIONS(4060), - [anon_sym_let] = ACTIONS(3907), - [anon_sym_orderby] = ACTIONS(3907), - [anon_sym_ascending] = ACTIONS(3907), - [anon_sym_descending] = ACTIONS(3907), - [anon_sym_group] = ACTIONS(3907), - [anon_sym_by] = ACTIONS(4060), - [anon_sym_select] = ACTIONS(3907), - [anon_sym_as] = ACTIONS(3907), - [anon_sym_is] = ACTIONS(3907), - [anon_sym_DASH_GT] = ACTIONS(3905), - [anon_sym_with] = ACTIONS(3907), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_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(4046), + [anon_sym_alias] = ACTIONS(4048), + [anon_sym_global] = ACTIONS(4048), + [anon_sym_LBRACK] = ACTIONS(3939), + [anon_sym_COLON] = ACTIONS(3939), + [anon_sym_COMMA] = ACTIONS(3939), + [anon_sym_LPAREN] = ACTIONS(3939), + [anon_sym_file] = ACTIONS(4048), + [anon_sym_LT] = ACTIONS(3941), + [anon_sym_GT] = ACTIONS(3941), + [anon_sym_where] = ACTIONS(4048), + [anon_sym_QMARK] = ACTIONS(3941), + [anon_sym_notnull] = ACTIONS(4048), + [anon_sym_unmanaged] = ACTIONS(4048), + [anon_sym_BANG] = ACTIONS(3941), + [anon_sym_PLUS_PLUS] = ACTIONS(3939), + [anon_sym_DASH_DASH] = ACTIONS(3939), + [anon_sym_PLUS] = ACTIONS(3941), + [anon_sym_DASH] = ACTIONS(3941), + [anon_sym_STAR] = ACTIONS(3939), + [anon_sym_SLASH] = ACTIONS(3941), + [anon_sym_PERCENT] = ACTIONS(3939), + [anon_sym_CARET] = ACTIONS(3939), + [anon_sym_PIPE] = ACTIONS(3941), + [anon_sym_AMP] = ACTIONS(3941), + [anon_sym_LT_LT] = ACTIONS(3939), + [anon_sym_GT_GT] = ACTIONS(3941), + [anon_sym_GT_GT_GT] = ACTIONS(3939), + [anon_sym_EQ_EQ] = ACTIONS(3939), + [anon_sym_BANG_EQ] = ACTIONS(3939), + [anon_sym_GT_EQ] = ACTIONS(3939), + [anon_sym_LT_EQ] = ACTIONS(3939), + [anon_sym_DOT] = ACTIONS(3941), + [anon_sym_scoped] = ACTIONS(4048), + [anon_sym_var] = ACTIONS(4048), + [anon_sym_yield] = ACTIONS(4048), + [anon_sym_switch] = ACTIONS(3941), + [anon_sym_when] = ACTIONS(4048), + [sym_discard] = ACTIONS(4052), + [anon_sym_DOT_DOT] = ACTIONS(3939), + [anon_sym_and] = ACTIONS(3941), + [anon_sym_or] = ACTIONS(3941), + [anon_sym_AMP_AMP] = ACTIONS(3939), + [anon_sym_PIPE_PIPE] = ACTIONS(3939), + [anon_sym_QMARK_QMARK] = ACTIONS(3939), + [anon_sym_from] = ACTIONS(4048), + [anon_sym_into] = ACTIONS(3941), + [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(3941), + [anon_sym_is] = ACTIONS(3941), + [anon_sym_DASH_GT] = ACTIONS(3939), + [anon_sym_with] = ACTIONS(3941), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_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(3939), }, [2554] = { - [sym__variable_designation] = STATE(4517), - [sym_parenthesized_variable_designation] = STATE(4761), - [sym_identifier] = STATE(4764), - [sym__reserved_identifier] = STATE(4323), + [sym__variable_designation] = STATE(4831), + [sym_parenthesized_variable_designation] = STATE(4760), + [sym_identifier] = STATE(4763), + [sym__reserved_identifier] = STATE(4328), [sym_preproc_region] = STATE(2554), [sym_preproc_endregion] = STATE(2554), [sym_preproc_line] = STATE(2554), @@ -433236,67 +432874,67 @@ 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), - [sym__identifier_token] = ACTIONS(4050), - [anon_sym_alias] = ACTIONS(4052), - [anon_sym_global] = ACTIONS(4052), - [anon_sym_LBRACK] = ACTIONS(3961), - [anon_sym_COLON] = ACTIONS(3961), - [anon_sym_COMMA] = ACTIONS(3961), - [anon_sym_LPAREN] = ACTIONS(3961), - [anon_sym_file] = ACTIONS(4052), - [anon_sym_LT] = ACTIONS(3963), - [anon_sym_GT] = ACTIONS(3963), - [anon_sym_where] = ACTIONS(4052), - [anon_sym_QMARK] = ACTIONS(3963), - [anon_sym_notnull] = ACTIONS(4052), - [anon_sym_unmanaged] = ACTIONS(4052), - [anon_sym_BANG] = ACTIONS(3963), - [anon_sym_PLUS_PLUS] = ACTIONS(3961), - [anon_sym_DASH_DASH] = ACTIONS(3961), - [anon_sym_PLUS] = ACTIONS(3963), - [anon_sym_DASH] = ACTIONS(3963), - [anon_sym_STAR] = ACTIONS(3961), - [anon_sym_SLASH] = ACTIONS(3963), - [anon_sym_PERCENT] = ACTIONS(3961), - [anon_sym_CARET] = ACTIONS(3961), - [anon_sym_PIPE] = ACTIONS(3963), - [anon_sym_AMP] = ACTIONS(3963), - [anon_sym_LT_LT] = ACTIONS(3961), - [anon_sym_GT_GT] = ACTIONS(3963), - [anon_sym_GT_GT_GT] = ACTIONS(3961), - [anon_sym_EQ_EQ] = ACTIONS(3961), - [anon_sym_BANG_EQ] = ACTIONS(3961), - [anon_sym_GT_EQ] = ACTIONS(3961), - [anon_sym_LT_EQ] = ACTIONS(3961), - [anon_sym_DOT] = ACTIONS(3963), - [anon_sym_scoped] = ACTIONS(4052), - [anon_sym_var] = ACTIONS(4052), - [anon_sym_yield] = ACTIONS(4052), - [anon_sym_switch] = ACTIONS(3963), - [anon_sym_when] = ACTIONS(4052), - [sym_discard] = ACTIONS(4056), - [anon_sym_DOT_DOT] = ACTIONS(3961), - [anon_sym_and] = ACTIONS(3963), - [anon_sym_or] = ACTIONS(3963), - [anon_sym_AMP_AMP] = ACTIONS(3961), - [anon_sym_PIPE_PIPE] = ACTIONS(3961), - [anon_sym_QMARK_QMARK] = ACTIONS(3961), - [anon_sym_from] = ACTIONS(4052), - [anon_sym_into] = ACTIONS(3963), - [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(3963), - [anon_sym_is] = ACTIONS(3963), - [anon_sym_DASH_GT] = ACTIONS(3961), - [anon_sym_with] = ACTIONS(3963), + [sym__identifier_token] = ACTIONS(4046), + [anon_sym_alias] = ACTIONS(4048), + [anon_sym_global] = ACTIONS(4048), + [anon_sym_LBRACK] = ACTIONS(3947), + [anon_sym_COLON] = ACTIONS(3947), + [anon_sym_COMMA] = ACTIONS(3947), + [anon_sym_LPAREN] = ACTIONS(3947), + [anon_sym_file] = ACTIONS(4048), + [anon_sym_LT] = ACTIONS(3949), + [anon_sym_GT] = ACTIONS(3949), + [anon_sym_where] = ACTIONS(4048), + [anon_sym_QMARK] = ACTIONS(3949), + [anon_sym_notnull] = ACTIONS(4048), + [anon_sym_unmanaged] = ACTIONS(4048), + [anon_sym_BANG] = ACTIONS(3949), + [anon_sym_PLUS_PLUS] = ACTIONS(3947), + [anon_sym_DASH_DASH] = ACTIONS(3947), + [anon_sym_PLUS] = ACTIONS(3949), + [anon_sym_DASH] = ACTIONS(3949), + [anon_sym_STAR] = ACTIONS(3947), + [anon_sym_SLASH] = ACTIONS(3949), + [anon_sym_PERCENT] = ACTIONS(3947), + [anon_sym_CARET] = ACTIONS(3947), + [anon_sym_PIPE] = ACTIONS(3949), + [anon_sym_AMP] = ACTIONS(3949), + [anon_sym_LT_LT] = ACTIONS(3947), + [anon_sym_GT_GT] = ACTIONS(3949), + [anon_sym_GT_GT_GT] = ACTIONS(3947), + [anon_sym_EQ_EQ] = ACTIONS(3947), + [anon_sym_BANG_EQ] = ACTIONS(3947), + [anon_sym_GT_EQ] = ACTIONS(3947), + [anon_sym_LT_EQ] = ACTIONS(3947), + [anon_sym_DOT] = ACTIONS(3949), + [anon_sym_scoped] = ACTIONS(4048), + [anon_sym_var] = ACTIONS(4048), + [anon_sym_yield] = ACTIONS(4048), + [anon_sym_switch] = ACTIONS(3949), + [anon_sym_when] = ACTIONS(4048), + [sym_discard] = ACTIONS(4052), + [anon_sym_DOT_DOT] = ACTIONS(3947), + [anon_sym_and] = ACTIONS(3949), + [anon_sym_or] = ACTIONS(3949), + [anon_sym_AMP_AMP] = ACTIONS(3947), + [anon_sym_PIPE_PIPE] = ACTIONS(3947), + [anon_sym_QMARK_QMARK] = ACTIONS(3947), + [anon_sym_from] = ACTIONS(4048), + [anon_sym_into] = ACTIONS(3949), + [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(3949), + [anon_sym_is] = ACTIONS(3949), + [anon_sym_DASH_GT] = ACTIONS(3947), + [anon_sym_with] = ACTIONS(3949), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -433307,13 +432945,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(3961), + [sym_interpolation_close_brace] = ACTIONS(3947), }, [2555] = { - [sym__variable_designation] = STATE(4511), - [sym_parenthesized_variable_designation] = STATE(4761), - [sym_identifier] = STATE(4764), - [sym__reserved_identifier] = STATE(4323), + [sym__variable_designation] = STATE(4812), + [sym_parenthesized_variable_designation] = STATE(4760), + [sym_identifier] = STATE(4763), + [sym__reserved_identifier] = STATE(4328), [sym_preproc_region] = STATE(2555), [sym_preproc_endregion] = STATE(2555), [sym_preproc_line] = STATE(2555), @@ -433323,85 +432961,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2555), [sym_preproc_define] = STATE(2555), [sym_preproc_undef] = STATE(2555), - [sym__identifier_token] = ACTIONS(4050), - [anon_sym_alias] = ACTIONS(4052), - [anon_sym_global] = ACTIONS(4052), - [anon_sym_LBRACK] = ACTIONS(3913), - [anon_sym_COLON] = ACTIONS(3913), - [anon_sym_COMMA] = ACTIONS(3913), - [anon_sym_LPAREN] = ACTIONS(3913), - [anon_sym_file] = ACTIONS(4052), - [anon_sym_LT] = ACTIONS(3915), - [anon_sym_GT] = ACTIONS(3915), - [anon_sym_where] = ACTIONS(4052), - [anon_sym_QMARK] = ACTIONS(3915), - [anon_sym_notnull] = ACTIONS(4052), - [anon_sym_unmanaged] = ACTIONS(4052), - [anon_sym_BANG] = ACTIONS(3915), - [anon_sym_PLUS_PLUS] = ACTIONS(3913), - [anon_sym_DASH_DASH] = ACTIONS(3913), - [anon_sym_PLUS] = ACTIONS(3915), - [anon_sym_DASH] = ACTIONS(3915), - [anon_sym_STAR] = ACTIONS(3913), - [anon_sym_SLASH] = ACTIONS(3915), - [anon_sym_PERCENT] = ACTIONS(3913), - [anon_sym_CARET] = ACTIONS(3913), - [anon_sym_PIPE] = ACTIONS(3915), - [anon_sym_AMP] = ACTIONS(3915), - [anon_sym_LT_LT] = ACTIONS(3913), - [anon_sym_GT_GT] = ACTIONS(3915), - [anon_sym_GT_GT_GT] = ACTIONS(3913), - [anon_sym_EQ_EQ] = ACTIONS(3913), - [anon_sym_BANG_EQ] = ACTIONS(3913), - [anon_sym_GT_EQ] = ACTIONS(3913), - [anon_sym_LT_EQ] = ACTIONS(3913), - [anon_sym_DOT] = ACTIONS(3915), - [anon_sym_scoped] = ACTIONS(4052), - [anon_sym_var] = ACTIONS(4052), - [anon_sym_yield] = ACTIONS(4052), - [anon_sym_switch] = ACTIONS(3915), - [anon_sym_when] = ACTIONS(4052), - [sym_discard] = ACTIONS(4056), - [anon_sym_DOT_DOT] = ACTIONS(3913), - [anon_sym_and] = ACTIONS(3915), - [anon_sym_or] = ACTIONS(3915), - [anon_sym_AMP_AMP] = ACTIONS(3913), - [anon_sym_PIPE_PIPE] = ACTIONS(3913), - [anon_sym_QMARK_QMARK] = ACTIONS(3913), - [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(3915), - [anon_sym_is] = ACTIONS(3915), - [anon_sym_DASH_GT] = ACTIONS(3913), - [anon_sym_with] = ACTIONS(3915), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_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(3913), + [sym__identifier_token] = ACTIONS(4046), + [anon_sym_alias] = ACTIONS(4048), + [anon_sym_global] = ACTIONS(4048), + [anon_sym_LBRACK] = ACTIONS(3885), + [anon_sym_COLON] = ACTIONS(3885), + [anon_sym_COMMA] = ACTIONS(3885), + [anon_sym_LPAREN] = ACTIONS(3885), + [anon_sym_file] = ACTIONS(4048), + [anon_sym_LT] = ACTIONS(3887), + [anon_sym_GT] = ACTIONS(3887), + [anon_sym_where] = ACTIONS(4048), + [anon_sym_QMARK] = ACTIONS(3887), + [anon_sym_notnull] = ACTIONS(4048), + [anon_sym_unmanaged] = ACTIONS(4048), + [anon_sym_BANG] = ACTIONS(3887), + [anon_sym_PLUS_PLUS] = ACTIONS(3885), + [anon_sym_DASH_DASH] = ACTIONS(3885), + [anon_sym_PLUS] = ACTIONS(3887), + [anon_sym_DASH] = ACTIONS(3887), + [anon_sym_STAR] = ACTIONS(3885), + [anon_sym_SLASH] = ACTIONS(3887), + [anon_sym_PERCENT] = ACTIONS(3885), + [anon_sym_CARET] = ACTIONS(3885), + [anon_sym_PIPE] = ACTIONS(3887), + [anon_sym_AMP] = ACTIONS(3887), + [anon_sym_LT_LT] = ACTIONS(3885), + [anon_sym_GT_GT] = ACTIONS(3887), + [anon_sym_GT_GT_GT] = ACTIONS(3885), + [anon_sym_EQ_EQ] = ACTIONS(3885), + [anon_sym_BANG_EQ] = ACTIONS(3885), + [anon_sym_GT_EQ] = ACTIONS(3885), + [anon_sym_LT_EQ] = ACTIONS(3885), + [anon_sym_DOT] = ACTIONS(3887), + [anon_sym_scoped] = ACTIONS(4048), + [anon_sym_var] = ACTIONS(4048), + [anon_sym_yield] = ACTIONS(4048), + [anon_sym_switch] = ACTIONS(3887), + [anon_sym_when] = ACTIONS(4048), + [sym_discard] = ACTIONS(4052), + [anon_sym_DOT_DOT] = ACTIONS(3885), + [anon_sym_and] = ACTIONS(3887), + [anon_sym_or] = ACTIONS(3887), + [anon_sym_AMP_AMP] = ACTIONS(3885), + [anon_sym_PIPE_PIPE] = ACTIONS(3885), + [anon_sym_QMARK_QMARK] = ACTIONS(3885), + [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(3887), + [anon_sym_is] = ACTIONS(3887), + [anon_sym_DASH_GT] = ACTIONS(3885), + [anon_sym_with] = ACTIONS(3887), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_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(3885), }, [2556] = { - [sym_property_pattern_clause] = STATE(2633), - [sym__variable_designation] = STATE(3784), - [sym_parenthesized_variable_designation] = STATE(3779), - [sym_identifier] = STATE(3781), - [sym__reserved_identifier] = STATE(2361), + [sym_property_pattern_clause] = STATE(2617), + [sym__variable_designation] = STATE(3471), + [sym_parenthesized_variable_designation] = STATE(3352), + [sym_identifier] = STATE(3355), + [sym__reserved_identifier] = STATE(3205), [sym_preproc_region] = STATE(2556), [sym_preproc_endregion] = STATE(2556), [sym_preproc_line] = STATE(2556), @@ -433411,67 +433049,67 @@ 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), - [sym__identifier_token] = ACTIONS(4058), - [anon_sym_alias] = ACTIONS(4060), - [anon_sym_global] = ACTIONS(4060), - [anon_sym_LBRACK] = ACTIONS(3905), - [anon_sym_COMMA] = ACTIONS(3905), - [anon_sym_LPAREN] = ACTIONS(3905), - [anon_sym_LBRACE] = ACTIONS(3881), - [anon_sym_file] = ACTIONS(4060), - [anon_sym_LT] = ACTIONS(3907), - [anon_sym_GT] = ACTIONS(3907), - [anon_sym_where] = ACTIONS(3907), - [anon_sym_QMARK] = ACTIONS(3907), - [anon_sym_notnull] = ACTIONS(4060), - [anon_sym_unmanaged] = ACTIONS(4060), - [anon_sym_BANG] = ACTIONS(3907), - [anon_sym_PLUS_PLUS] = ACTIONS(3905), - [anon_sym_DASH_DASH] = ACTIONS(3905), - [anon_sym_PLUS] = ACTIONS(3907), - [anon_sym_DASH] = ACTIONS(3907), - [anon_sym_STAR] = ACTIONS(3905), - [anon_sym_SLASH] = ACTIONS(3907), - [anon_sym_PERCENT] = ACTIONS(3905), - [anon_sym_CARET] = ACTIONS(3905), - [anon_sym_PIPE] = ACTIONS(3907), - [anon_sym_AMP] = ACTIONS(3907), - [anon_sym_LT_LT] = ACTIONS(3905), - [anon_sym_GT_GT] = ACTIONS(3907), - [anon_sym_GT_GT_GT] = ACTIONS(3905), - [anon_sym_EQ_EQ] = ACTIONS(3905), - [anon_sym_BANG_EQ] = ACTIONS(3905), - [anon_sym_GT_EQ] = ACTIONS(3905), - [anon_sym_LT_EQ] = ACTIONS(3905), - [anon_sym_DOT] = ACTIONS(3907), - [anon_sym_scoped] = ACTIONS(4060), - [anon_sym_var] = ACTIONS(4060), - [anon_sym_yield] = ACTIONS(4060), - [anon_sym_switch] = ACTIONS(3907), - [anon_sym_when] = ACTIONS(4060), - [sym_discard] = ACTIONS(4207), - [anon_sym_DOT_DOT] = ACTIONS(3905), - [anon_sym_and] = ACTIONS(3907), - [anon_sym_or] = ACTIONS(3907), - [anon_sym_AMP_AMP] = ACTIONS(3905), - [anon_sym_PIPE_PIPE] = ACTIONS(3905), - [anon_sym_QMARK_QMARK] = ACTIONS(3905), - [anon_sym_from] = ACTIONS(3907), - [anon_sym_into] = ACTIONS(3907), - [anon_sym_join] = ACTIONS(3907), - [anon_sym_on] = ACTIONS(4060), - [anon_sym_equals] = ACTIONS(4060), - [anon_sym_let] = ACTIONS(3907), - [anon_sym_orderby] = ACTIONS(3907), - [anon_sym_ascending] = ACTIONS(3907), - [anon_sym_descending] = ACTIONS(3907), - [anon_sym_group] = ACTIONS(3907), - [anon_sym_by] = ACTIONS(4060), - [anon_sym_select] = ACTIONS(3907), - [anon_sym_as] = ACTIONS(3907), - [anon_sym_is] = ACTIONS(3907), - [anon_sym_DASH_GT] = ACTIONS(3905), - [anon_sym_with] = ACTIONS(3907), + [sym__identifier_token] = ACTIONS(3798), + [anon_sym_alias] = ACTIONS(3800), + [anon_sym_global] = ACTIONS(3800), + [anon_sym_LBRACK] = ACTIONS(3885), + [anon_sym_LPAREN] = ACTIONS(3885), + [anon_sym_LBRACE] = ACTIONS(3861), + [anon_sym_file] = ACTIONS(3800), + [anon_sym_LT] = ACTIONS(3887), + [anon_sym_GT] = ACTIONS(3887), + [anon_sym_in] = ACTIONS(3887), + [anon_sym_where] = ACTIONS(3800), + [anon_sym_QMARK] = ACTIONS(3887), + [anon_sym_notnull] = ACTIONS(3800), + [anon_sym_unmanaged] = ACTIONS(3800), + [anon_sym_BANG] = ACTIONS(3887), + [anon_sym_PLUS_PLUS] = ACTIONS(3885), + [anon_sym_DASH_DASH] = ACTIONS(3885), + [anon_sym_PLUS] = ACTIONS(3887), + [anon_sym_DASH] = ACTIONS(3887), + [anon_sym_STAR] = ACTIONS(3885), + [anon_sym_SLASH] = ACTIONS(3887), + [anon_sym_PERCENT] = ACTIONS(3885), + [anon_sym_CARET] = ACTIONS(3885), + [anon_sym_PIPE] = ACTIONS(3887), + [anon_sym_AMP] = ACTIONS(3887), + [anon_sym_LT_LT] = ACTIONS(3885), + [anon_sym_GT_GT] = ACTIONS(3887), + [anon_sym_GT_GT_GT] = ACTIONS(3885), + [anon_sym_EQ_EQ] = ACTIONS(3885), + [anon_sym_BANG_EQ] = ACTIONS(3885), + [anon_sym_GT_EQ] = ACTIONS(3885), + [anon_sym_LT_EQ] = ACTIONS(3885), + [anon_sym_DOT] = ACTIONS(3887), + [anon_sym_scoped] = ACTIONS(3800), + [anon_sym_var] = ACTIONS(3800), + [anon_sym_yield] = ACTIONS(3800), + [anon_sym_switch] = ACTIONS(3887), + [anon_sym_when] = ACTIONS(3800), + [sym_discard] = ACTIONS(3877), + [anon_sym_DOT_DOT] = ACTIONS(3885), + [anon_sym_and] = ACTIONS(3887), + [anon_sym_or] = ACTIONS(3887), + [anon_sym_AMP_AMP] = ACTIONS(3885), + [anon_sym_PIPE_PIPE] = ACTIONS(3885), + [anon_sym_QMARK_QMARK] = ACTIONS(3885), + [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(3887), + [anon_sym_is] = ACTIONS(3887), + [anon_sym_DASH_GT] = ACTIONS(3885), + [anon_sym_with] = ACTIONS(3887), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -433484,10 +433122,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2557] = { - [sym__variable_designation] = STATE(4513), - [sym_parenthesized_variable_designation] = STATE(4761), - [sym_identifier] = STATE(4764), - [sym__reserved_identifier] = STATE(4323), + [sym__variable_designation] = STATE(4814), + [sym_parenthesized_variable_designation] = STATE(4760), + [sym_identifier] = STATE(4763), + [sym__reserved_identifier] = STATE(4328), [sym_preproc_region] = STATE(2557), [sym_preproc_endregion] = STATE(2557), [sym_preproc_line] = STATE(2557), @@ -433497,84 +433135,85 @@ 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), - [sym__identifier_token] = ACTIONS(4050), - [anon_sym_alias] = ACTIONS(4052), - [anon_sym_global] = ACTIONS(4052), - [anon_sym_LBRACK] = ACTIONS(3957), - [anon_sym_COLON] = ACTIONS(3957), - [anon_sym_COMMA] = ACTIONS(3957), - [anon_sym_LPAREN] = ACTIONS(3957), - [anon_sym_file] = ACTIONS(4052), - [anon_sym_LT] = ACTIONS(3959), - [anon_sym_GT] = ACTIONS(3959), - [anon_sym_where] = ACTIONS(4052), - [anon_sym_QMARK] = ACTIONS(3959), - [anon_sym_notnull] = ACTIONS(4052), - [anon_sym_unmanaged] = ACTIONS(4052), - [anon_sym_BANG] = ACTIONS(3959), - [anon_sym_PLUS_PLUS] = ACTIONS(3957), - [anon_sym_DASH_DASH] = ACTIONS(3957), - [anon_sym_PLUS] = ACTIONS(3959), - [anon_sym_DASH] = ACTIONS(3959), - [anon_sym_STAR] = ACTIONS(3957), - [anon_sym_SLASH] = ACTIONS(3959), - [anon_sym_PERCENT] = ACTIONS(3957), - [anon_sym_CARET] = ACTIONS(3957), - [anon_sym_PIPE] = ACTIONS(3959), - [anon_sym_AMP] = ACTIONS(3959), - [anon_sym_LT_LT] = ACTIONS(3957), - [anon_sym_GT_GT] = ACTIONS(3959), - [anon_sym_GT_GT_GT] = ACTIONS(3957), - [anon_sym_EQ_EQ] = ACTIONS(3957), - [anon_sym_BANG_EQ] = ACTIONS(3957), - [anon_sym_GT_EQ] = ACTIONS(3957), - [anon_sym_LT_EQ] = ACTIONS(3957), - [anon_sym_DOT] = ACTIONS(3959), - [anon_sym_scoped] = ACTIONS(4052), - [anon_sym_var] = ACTIONS(4052), - [anon_sym_yield] = ACTIONS(4052), - [anon_sym_switch] = ACTIONS(3959), - [anon_sym_when] = ACTIONS(4052), - [sym_discard] = ACTIONS(4056), - [anon_sym_DOT_DOT] = ACTIONS(3957), - [anon_sym_and] = ACTIONS(3959), - [anon_sym_or] = ACTIONS(3959), - [anon_sym_AMP_AMP] = ACTIONS(3957), - [anon_sym_PIPE_PIPE] = ACTIONS(3957), - [anon_sym_QMARK_QMARK] = ACTIONS(3957), - [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(3959), - [anon_sym_is] = ACTIONS(3959), - [anon_sym_DASH_GT] = ACTIONS(3957), - [anon_sym_with] = ACTIONS(3959), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_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(3957), + [sym__identifier_token] = ACTIONS(4046), + [anon_sym_alias] = ACTIONS(4048), + [anon_sym_global] = ACTIONS(4048), + [anon_sym_LBRACK] = ACTIONS(3939), + [anon_sym_COLON] = ACTIONS(3939), + [anon_sym_COMMA] = ACTIONS(3939), + [anon_sym_LPAREN] = ACTIONS(3939), + [anon_sym_file] = ACTIONS(4048), + [anon_sym_LT] = ACTIONS(3941), + [anon_sym_GT] = ACTIONS(3941), + [anon_sym_where] = ACTIONS(4048), + [anon_sym_QMARK] = ACTIONS(3941), + [anon_sym_notnull] = ACTIONS(4048), + [anon_sym_unmanaged] = ACTIONS(4048), + [anon_sym_BANG] = ACTIONS(3941), + [anon_sym_PLUS_PLUS] = ACTIONS(3939), + [anon_sym_DASH_DASH] = ACTIONS(3939), + [anon_sym_PLUS] = ACTIONS(3941), + [anon_sym_DASH] = ACTIONS(3941), + [anon_sym_STAR] = ACTIONS(3939), + [anon_sym_SLASH] = ACTIONS(3941), + [anon_sym_PERCENT] = ACTIONS(3939), + [anon_sym_CARET] = ACTIONS(3939), + [anon_sym_PIPE] = ACTIONS(3941), + [anon_sym_AMP] = ACTIONS(3941), + [anon_sym_LT_LT] = ACTIONS(3939), + [anon_sym_GT_GT] = ACTIONS(3941), + [anon_sym_GT_GT_GT] = ACTIONS(3939), + [anon_sym_EQ_EQ] = ACTIONS(3939), + [anon_sym_BANG_EQ] = ACTIONS(3939), + [anon_sym_GT_EQ] = ACTIONS(3939), + [anon_sym_LT_EQ] = ACTIONS(3939), + [anon_sym_DOT] = ACTIONS(3941), + [anon_sym_scoped] = ACTIONS(4048), + [anon_sym_var] = ACTIONS(4048), + [anon_sym_yield] = ACTIONS(4048), + [anon_sym_switch] = ACTIONS(3941), + [anon_sym_when] = ACTIONS(4048), + [sym_discard] = ACTIONS(4052), + [anon_sym_DOT_DOT] = ACTIONS(3939), + [anon_sym_and] = ACTIONS(3941), + [anon_sym_or] = ACTIONS(3941), + [anon_sym_AMP_AMP] = ACTIONS(3939), + [anon_sym_PIPE_PIPE] = ACTIONS(3939), + [anon_sym_QMARK_QMARK] = ACTIONS(3939), + [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(3941), + [anon_sym_is] = ACTIONS(3941), + [anon_sym_DASH_GT] = ACTIONS(3939), + [anon_sym_with] = ACTIONS(3941), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_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(3939), }, [2558] = { - [sym__variable_designation] = STATE(4517), - [sym_parenthesized_variable_designation] = STATE(4761), - [sym_identifier] = STATE(4764), - [sym__reserved_identifier] = STATE(4323), + [sym_property_pattern_clause] = STATE(2625), + [sym__variable_designation] = STATE(3696), + [sym_parenthesized_variable_designation] = STATE(3688), + [sym_identifier] = STATE(3692), + [sym__reserved_identifier] = STATE(2354), [sym_preproc_region] = STATE(2558), [sym_preproc_endregion] = STATE(2558), [sym_preproc_line] = STATE(2558), @@ -433584,67 +433223,67 @@ 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(4050), - [anon_sym_alias] = ACTIONS(4052), - [anon_sym_global] = ACTIONS(4052), - [anon_sym_LBRACK] = ACTIONS(3961), - [anon_sym_COLON] = ACTIONS(3961), - [anon_sym_COMMA] = ACTIONS(3961), - [anon_sym_LPAREN] = ACTIONS(3961), - [anon_sym_file] = ACTIONS(4052), - [anon_sym_LT] = ACTIONS(3963), - [anon_sym_GT] = ACTIONS(3963), - [anon_sym_where] = ACTIONS(4052), - [anon_sym_QMARK] = ACTIONS(3963), - [anon_sym_notnull] = ACTIONS(4052), - [anon_sym_unmanaged] = ACTIONS(4052), - [anon_sym_BANG] = ACTIONS(3963), - [anon_sym_PLUS_PLUS] = ACTIONS(3961), - [anon_sym_DASH_DASH] = ACTIONS(3961), - [anon_sym_PLUS] = ACTIONS(3963), - [anon_sym_DASH] = ACTIONS(3963), - [anon_sym_STAR] = ACTIONS(3961), - [anon_sym_SLASH] = ACTIONS(3963), - [anon_sym_PERCENT] = ACTIONS(3961), - [anon_sym_CARET] = ACTIONS(3961), - [anon_sym_PIPE] = ACTIONS(3963), - [anon_sym_AMP] = ACTIONS(3963), - [anon_sym_LT_LT] = ACTIONS(3961), - [anon_sym_GT_GT] = ACTIONS(3963), - [anon_sym_GT_GT_GT] = ACTIONS(3961), - [anon_sym_EQ_EQ] = ACTIONS(3961), - [anon_sym_BANG_EQ] = ACTIONS(3961), - [anon_sym_GT_EQ] = ACTIONS(3961), - [anon_sym_LT_EQ] = ACTIONS(3961), - [anon_sym_DOT] = ACTIONS(3963), - [anon_sym_scoped] = ACTIONS(4052), - [anon_sym_var] = ACTIONS(4052), - [anon_sym_yield] = ACTIONS(4052), - [anon_sym_switch] = ACTIONS(3963), - [anon_sym_when] = ACTIONS(4052), - [sym_discard] = ACTIONS(4056), - [anon_sym_DOT_DOT] = ACTIONS(3961), - [anon_sym_and] = ACTIONS(3963), - [anon_sym_or] = ACTIONS(3963), - [anon_sym_AMP_AMP] = ACTIONS(3961), - [anon_sym_PIPE_PIPE] = ACTIONS(3961), - [anon_sym_QMARK_QMARK] = ACTIONS(3961), - [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(3963), - [anon_sym_is] = ACTIONS(3963), - [anon_sym_DASH_GT] = ACTIONS(3961), - [anon_sym_with] = ACTIONS(3963), + [sym__identifier_token] = ACTIONS(4080), + [anon_sym_alias] = ACTIONS(4082), + [anon_sym_global] = ACTIONS(4082), + [anon_sym_LBRACK] = ACTIONS(3893), + [anon_sym_COMMA] = ACTIONS(3893), + [anon_sym_LPAREN] = ACTIONS(3893), + [anon_sym_LBRACE] = ACTIONS(3861), + [anon_sym_file] = ACTIONS(4082), + [anon_sym_LT] = ACTIONS(3895), + [anon_sym_GT] = ACTIONS(3895), + [anon_sym_where] = ACTIONS(3895), + [anon_sym_QMARK] = ACTIONS(3895), + [anon_sym_notnull] = ACTIONS(4082), + [anon_sym_unmanaged] = ACTIONS(4082), + [anon_sym_BANG] = ACTIONS(3895), + [anon_sym_PLUS_PLUS] = ACTIONS(3893), + [anon_sym_DASH_DASH] = ACTIONS(3893), + [anon_sym_PLUS] = ACTIONS(3895), + [anon_sym_DASH] = ACTIONS(3895), + [anon_sym_STAR] = ACTIONS(3893), + [anon_sym_SLASH] = ACTIONS(3895), + [anon_sym_PERCENT] = ACTIONS(3893), + [anon_sym_CARET] = ACTIONS(3893), + [anon_sym_PIPE] = ACTIONS(3895), + [anon_sym_AMP] = ACTIONS(3895), + [anon_sym_LT_LT] = ACTIONS(3893), + [anon_sym_GT_GT] = ACTIONS(3895), + [anon_sym_GT_GT_GT] = ACTIONS(3893), + [anon_sym_EQ_EQ] = ACTIONS(3893), + [anon_sym_BANG_EQ] = ACTIONS(3893), + [anon_sym_GT_EQ] = ACTIONS(3893), + [anon_sym_LT_EQ] = ACTIONS(3893), + [anon_sym_DOT] = ACTIONS(3895), + [anon_sym_scoped] = ACTIONS(4082), + [anon_sym_var] = ACTIONS(4082), + [anon_sym_yield] = ACTIONS(4082), + [anon_sym_switch] = ACTIONS(3895), + [anon_sym_when] = ACTIONS(4082), + [sym_discard] = ACTIONS(4183), + [anon_sym_DOT_DOT] = ACTIONS(3893), + [anon_sym_and] = ACTIONS(3895), + [anon_sym_or] = ACTIONS(3895), + [anon_sym_AMP_AMP] = ACTIONS(3893), + [anon_sym_PIPE_PIPE] = ACTIONS(3893), + [anon_sym_QMARK_QMARK] = ACTIONS(3893), + [anon_sym_from] = ACTIONS(3895), + [anon_sym_into] = ACTIONS(3895), + [anon_sym_join] = ACTIONS(3895), + [anon_sym_on] = ACTIONS(4082), + [anon_sym_equals] = ACTIONS(4082), + [anon_sym_let] = ACTIONS(3895), + [anon_sym_orderby] = ACTIONS(3895), + [anon_sym_ascending] = ACTIONS(3895), + [anon_sym_descending] = ACTIONS(3895), + [anon_sym_group] = ACTIONS(3895), + [anon_sym_by] = ACTIONS(4082), + [anon_sym_select] = ACTIONS(3895), + [anon_sym_as] = ACTIONS(3895), + [anon_sym_is] = ACTIONS(3895), + [anon_sym_DASH_GT] = ACTIONS(3893), + [anon_sym_with] = ACTIONS(3895), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -433655,14 +433294,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(3961), }, [2559] = { - [sym_property_pattern_clause] = STATE(2634), - [sym__variable_designation] = STATE(3789), - [sym_parenthesized_variable_designation] = STATE(3779), - [sym_identifier] = STATE(3781), - [sym__reserved_identifier] = STATE(2361), [sym_preproc_region] = STATE(2559), [sym_preproc_endregion] = STATE(2559), [sym_preproc_line] = STATE(2559), @@ -433672,67 +433305,71 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2559), [sym_preproc_define] = STATE(2559), [sym_preproc_undef] = STATE(2559), - [sym__identifier_token] = ACTIONS(4058), - [anon_sym_alias] = ACTIONS(4060), - [anon_sym_global] = ACTIONS(4060), - [anon_sym_LBRACK] = ACTIONS(3913), - [anon_sym_COMMA] = ACTIONS(3913), - [anon_sym_LPAREN] = ACTIONS(3913), - [anon_sym_LBRACE] = ACTIONS(3881), - [anon_sym_file] = ACTIONS(4060), - [anon_sym_LT] = ACTIONS(3915), - [anon_sym_GT] = ACTIONS(3915), - [anon_sym_where] = ACTIONS(3915), - [anon_sym_QMARK] = ACTIONS(3915), - [anon_sym_notnull] = ACTIONS(4060), - [anon_sym_unmanaged] = ACTIONS(4060), - [anon_sym_BANG] = ACTIONS(3915), - [anon_sym_PLUS_PLUS] = ACTIONS(3913), - [anon_sym_DASH_DASH] = ACTIONS(3913), - [anon_sym_PLUS] = ACTIONS(3915), - [anon_sym_DASH] = ACTIONS(3915), - [anon_sym_STAR] = ACTIONS(3913), - [anon_sym_SLASH] = ACTIONS(3915), - [anon_sym_PERCENT] = ACTIONS(3913), - [anon_sym_CARET] = ACTIONS(3913), - [anon_sym_PIPE] = ACTIONS(3915), - [anon_sym_AMP] = ACTIONS(3915), - [anon_sym_LT_LT] = ACTIONS(3913), - [anon_sym_GT_GT] = ACTIONS(3915), - [anon_sym_GT_GT_GT] = ACTIONS(3913), - [anon_sym_EQ_EQ] = ACTIONS(3913), - [anon_sym_BANG_EQ] = ACTIONS(3913), - [anon_sym_GT_EQ] = ACTIONS(3913), - [anon_sym_LT_EQ] = ACTIONS(3913), - [anon_sym_DOT] = ACTIONS(3915), - [anon_sym_scoped] = ACTIONS(4060), - [anon_sym_var] = ACTIONS(4060), - [anon_sym_yield] = ACTIONS(4060), - [anon_sym_switch] = ACTIONS(3915), - [anon_sym_when] = ACTIONS(4060), - [sym_discard] = ACTIONS(4207), - [anon_sym_DOT_DOT] = ACTIONS(3913), - [anon_sym_and] = ACTIONS(3915), - [anon_sym_or] = ACTIONS(3915), - [anon_sym_AMP_AMP] = ACTIONS(3913), - [anon_sym_PIPE_PIPE] = ACTIONS(3913), - [anon_sym_QMARK_QMARK] = ACTIONS(3913), - [anon_sym_from] = ACTIONS(3915), - [anon_sym_into] = ACTIONS(3915), - [anon_sym_join] = ACTIONS(3915), - [anon_sym_on] = ACTIONS(4060), - [anon_sym_equals] = ACTIONS(4060), - [anon_sym_let] = ACTIONS(3915), - [anon_sym_orderby] = ACTIONS(3915), - [anon_sym_ascending] = ACTIONS(3915), - [anon_sym_descending] = ACTIONS(3915), - [anon_sym_group] = ACTIONS(3915), - [anon_sym_by] = ACTIONS(4060), - [anon_sym_select] = ACTIONS(3915), - [anon_sym_as] = ACTIONS(3915), - [anon_sym_is] = ACTIONS(3915), - [anon_sym_DASH_GT] = ACTIONS(3913), - [anon_sym_with] = ACTIONS(3915), + [sym__identifier_token] = ACTIONS(4112), + [anon_sym_alias] = ACTIONS(4112), + [anon_sym_global] = ACTIONS(4112), + [anon_sym_LBRACK] = ACTIONS(2955), + [anon_sym_COLON] = ACTIONS(2955), + [anon_sym_COMMA] = ACTIONS(4114), + [anon_sym_RBRACK] = ACTIONS(4114), + [anon_sym_LPAREN] = ACTIONS(4114), + [anon_sym_RPAREN] = ACTIONS(4114), + [anon_sym_RBRACE] = ACTIONS(4114), + [anon_sym_file] = ACTIONS(4112), + [anon_sym_LT] = ACTIONS(2953), + [anon_sym_GT] = ACTIONS(2953), + [anon_sym_where] = ACTIONS(4112), + [anon_sym_QMARK] = ACTIONS(2953), + [anon_sym_notnull] = ACTIONS(4112), + [anon_sym_unmanaged] = ACTIONS(4112), + [anon_sym_BANG] = ACTIONS(2953), + [anon_sym_PLUS_PLUS] = ACTIONS(2955), + [anon_sym_DASH_DASH] = ACTIONS(2955), + [anon_sym_PLUS] = ACTIONS(2953), + [anon_sym_DASH] = ACTIONS(2953), + [anon_sym_STAR] = ACTIONS(2955), + [anon_sym_SLASH] = ACTIONS(2953), + [anon_sym_PERCENT] = ACTIONS(2955), + [anon_sym_CARET] = ACTIONS(2955), + [anon_sym_PIPE] = ACTIONS(2953), + [anon_sym_AMP] = ACTIONS(2953), + [anon_sym_LT_LT] = ACTIONS(2955), + [anon_sym_GT_GT] = ACTIONS(2953), + [anon_sym_GT_GT_GT] = ACTIONS(2955), + [anon_sym_EQ_EQ] = ACTIONS(2955), + [anon_sym_BANG_EQ] = ACTIONS(2955), + [anon_sym_GT_EQ] = ACTIONS(2955), + [anon_sym_LT_EQ] = ACTIONS(2955), + [anon_sym_DOT] = ACTIONS(2953), + [anon_sym_scoped] = ACTIONS(4112), + [anon_sym_EQ_GT] = ACTIONS(4114), + [anon_sym_var] = ACTIONS(4112), + [anon_sym_yield] = ACTIONS(4112), + [anon_sym_switch] = ACTIONS(2953), + [anon_sym_when] = ACTIONS(4112), + [sym_discard] = ACTIONS(4112), + [anon_sym_DOT_DOT] = ACTIONS(2955), + [anon_sym_and] = ACTIONS(4112), + [anon_sym_or] = ACTIONS(4112), + [anon_sym_AMP_AMP] = ACTIONS(2955), + [anon_sym_PIPE_PIPE] = ACTIONS(2955), + [anon_sym_QMARK_QMARK] = ACTIONS(2955), + [anon_sym_from] = ACTIONS(4112), + [anon_sym_into] = ACTIONS(4112), + [anon_sym_join] = ACTIONS(4112), + [anon_sym_on] = ACTIONS(4112), + [anon_sym_equals] = ACTIONS(4112), + [anon_sym_let] = ACTIONS(4112), + [anon_sym_orderby] = ACTIONS(4112), + [anon_sym_ascending] = ACTIONS(4112), + [anon_sym_descending] = ACTIONS(4112), + [anon_sym_group] = ACTIONS(4112), + [anon_sym_by] = ACTIONS(4112), + [anon_sym_select] = ACTIONS(4112), + [anon_sym_as] = ACTIONS(2953), + [anon_sym_is] = ACTIONS(2953), + [anon_sym_DASH_GT] = ACTIONS(2955), + [anon_sym_with] = ACTIONS(2953), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -433745,25 +433382,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2560] = { - [sym_modifier] = STATE(3878), - [sym__name] = STATE(4390), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(4096), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(4109), - [sym_type] = STATE(6067), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_identifier] = STATE(4087), - [sym__reserved_identifier] = STATE(3691), + [sym__variable_designation] = STATE(3413), + [sym_parenthesized_variable_designation] = STATE(3352), + [sym_identifier] = STATE(3355), + [sym__reserved_identifier] = STATE(3199), [sym_preproc_region] = STATE(2560), [sym_preproc_endregion] = STATE(2560), [sym_preproc_line] = STATE(2560), @@ -433773,53 +433395,67 @@ 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(3643), - [sym__identifier_token] = ACTIONS(2967), - [anon_sym_extern] = ACTIONS(647), - [anon_sym_alias] = ACTIONS(2971), - [anon_sym_global] = ACTIONS(2971), - [anon_sym_unsafe] = ACTIONS(647), - [anon_sym_static] = ACTIONS(647), - [anon_sym_LPAREN] = ACTIONS(2979), - [anon_sym_ref] = ACTIONS(3452), - [anon_sym_delegate] = ACTIONS(3454), - [anon_sym_abstract] = ACTIONS(647), - [anon_sym_async] = ACTIONS(647), - [anon_sym_const] = ACTIONS(647), - [anon_sym_file] = ACTIONS(4245), - [anon_sym_fixed] = ACTIONS(647), - [anon_sym_internal] = ACTIONS(647), - [anon_sym_new] = ACTIONS(647), - [anon_sym_override] = ACTIONS(647), - [anon_sym_partial] = ACTIONS(647), - [anon_sym_private] = ACTIONS(647), - [anon_sym_protected] = ACTIONS(647), - [anon_sym_public] = ACTIONS(647), - [anon_sym_readonly] = ACTIONS(647), - [anon_sym_required] = ACTIONS(647), - [anon_sym_sealed] = ACTIONS(647), - [anon_sym_virtual] = ACTIONS(647), - [anon_sym_volatile] = ACTIONS(647), - [anon_sym_where] = ACTIONS(2971), - [anon_sym_notnull] = ACTIONS(2971), - [anon_sym_unmanaged] = ACTIONS(2971), - [anon_sym_scoped] = ACTIONS(2997), - [anon_sym_var] = ACTIONS(2999), - [sym_predefined_type] = ACTIONS(3001), - [anon_sym_yield] = ACTIONS(2971), - [anon_sym_when] = ACTIONS(2971), - [anon_sym_from] = ACTIONS(2971), - [anon_sym_into] = ACTIONS(2971), - [anon_sym_join] = ACTIONS(2971), - [anon_sym_on] = ACTIONS(2971), - [anon_sym_equals] = ACTIONS(2971), - [anon_sym_let] = ACTIONS(2971), - [anon_sym_orderby] = ACTIONS(2971), - [anon_sym_ascending] = ACTIONS(2971), - [anon_sym_descending] = ACTIONS(2971), - [anon_sym_group] = ACTIONS(2971), - [anon_sym_by] = ACTIONS(2971), - [anon_sym_select] = ACTIONS(2971), + [sym__identifier_token] = ACTIONS(3855), + [anon_sym_alias] = ACTIONS(3857), + [anon_sym_global] = ACTIONS(3857), + [anon_sym_LBRACK] = ACTIONS(3885), + [anon_sym_COLON] = ACTIONS(3885), + [anon_sym_LPAREN] = ACTIONS(3885), + [anon_sym_file] = ACTIONS(3857), + [anon_sym_LT] = ACTIONS(3887), + [anon_sym_GT] = ACTIONS(3887), + [anon_sym_where] = ACTIONS(3857), + [anon_sym_QMARK] = ACTIONS(3887), + [anon_sym_notnull] = ACTIONS(3857), + [anon_sym_unmanaged] = ACTIONS(3857), + [anon_sym_BANG] = ACTIONS(3887), + [anon_sym_PLUS_PLUS] = ACTIONS(3885), + [anon_sym_DASH_DASH] = ACTIONS(3885), + [anon_sym_PLUS] = ACTIONS(3887), + [anon_sym_DASH] = ACTIONS(3887), + [anon_sym_STAR] = ACTIONS(3885), + [anon_sym_SLASH] = ACTIONS(3887), + [anon_sym_PERCENT] = ACTIONS(3885), + [anon_sym_CARET] = ACTIONS(3885), + [anon_sym_PIPE] = ACTIONS(3887), + [anon_sym_AMP] = ACTIONS(3887), + [anon_sym_LT_LT] = ACTIONS(3885), + [anon_sym_GT_GT] = ACTIONS(3887), + [anon_sym_GT_GT_GT] = ACTIONS(3885), + [anon_sym_EQ_EQ] = ACTIONS(3885), + [anon_sym_BANG_EQ] = ACTIONS(3885), + [anon_sym_GT_EQ] = ACTIONS(3885), + [anon_sym_LT_EQ] = ACTIONS(3885), + [anon_sym_DOT] = ACTIONS(3887), + [anon_sym_scoped] = ACTIONS(3857), + [anon_sym_EQ_GT] = ACTIONS(3885), + [anon_sym_var] = ACTIONS(3857), + [anon_sym_yield] = ACTIONS(3857), + [anon_sym_switch] = ACTIONS(3887), + [anon_sym_when] = ACTIONS(3887), + [sym_discard] = ACTIONS(3877), + [anon_sym_DOT_DOT] = ACTIONS(3885), + [anon_sym_and] = ACTIONS(3887), + [anon_sym_or] = ACTIONS(3887), + [anon_sym_AMP_AMP] = ACTIONS(3885), + [anon_sym_PIPE_PIPE] = ACTIONS(3885), + [anon_sym_QMARK_QMARK] = ACTIONS(3885), + [anon_sym_from] = ACTIONS(3857), + [anon_sym_into] = ACTIONS(3857), + [anon_sym_join] = ACTIONS(3857), + [anon_sym_on] = ACTIONS(3857), + [anon_sym_equals] = ACTIONS(3857), + [anon_sym_let] = ACTIONS(3857), + [anon_sym_orderby] = ACTIONS(3857), + [anon_sym_ascending] = ACTIONS(3857), + [anon_sym_descending] = ACTIONS(3857), + [anon_sym_group] = ACTIONS(3857), + [anon_sym_by] = ACTIONS(3857), + [anon_sym_select] = ACTIONS(3857), + [anon_sym_as] = ACTIONS(3887), + [anon_sym_is] = ACTIONS(3887), + [anon_sym_DASH_GT] = ACTIONS(3885), + [anon_sym_with] = ACTIONS(3887), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -433832,10 +433468,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2561] = { - [sym__variable_designation] = STATE(4786), - [sym_parenthesized_variable_designation] = STATE(4761), - [sym_identifier] = STATE(4764), - [sym__reserved_identifier] = STATE(4323), + [sym__variable_designation] = STATE(3411), + [sym_parenthesized_variable_designation] = STATE(3352), + [sym_identifier] = STATE(3355), + [sym__reserved_identifier] = STATE(3199), [sym_preproc_region] = STATE(2561), [sym_preproc_endregion] = STATE(2561), [sym_preproc_line] = STATE(2561), @@ -433845,85 +433481,83 @@ 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), - [sym__identifier_token] = ACTIONS(4050), - [anon_sym_alias] = ACTIONS(4052), - [anon_sym_global] = ACTIONS(4052), - [anon_sym_LBRACK] = ACTIONS(3905), - [anon_sym_COLON] = ACTIONS(3905), - [anon_sym_COMMA] = ACTIONS(3905), - [anon_sym_LPAREN] = ACTIONS(3905), - [anon_sym_file] = ACTIONS(4052), - [anon_sym_LT] = ACTIONS(3907), - [anon_sym_GT] = ACTIONS(3907), - [anon_sym_where] = ACTIONS(4052), - [anon_sym_QMARK] = ACTIONS(3907), - [anon_sym_notnull] = ACTIONS(4052), - [anon_sym_unmanaged] = ACTIONS(4052), - [anon_sym_BANG] = ACTIONS(3907), - [anon_sym_PLUS_PLUS] = ACTIONS(3905), - [anon_sym_DASH_DASH] = ACTIONS(3905), - [anon_sym_PLUS] = ACTIONS(3907), - [anon_sym_DASH] = ACTIONS(3907), - [anon_sym_STAR] = ACTIONS(3905), - [anon_sym_SLASH] = ACTIONS(3907), - [anon_sym_PERCENT] = ACTIONS(3905), - [anon_sym_CARET] = ACTIONS(3905), - [anon_sym_PIPE] = ACTIONS(3907), - [anon_sym_AMP] = ACTIONS(3907), - [anon_sym_LT_LT] = ACTIONS(3905), - [anon_sym_GT_GT] = ACTIONS(3907), - [anon_sym_GT_GT_GT] = ACTIONS(3905), - [anon_sym_EQ_EQ] = ACTIONS(3905), - [anon_sym_BANG_EQ] = ACTIONS(3905), - [anon_sym_GT_EQ] = ACTIONS(3905), - [anon_sym_LT_EQ] = ACTIONS(3905), - [anon_sym_DOT] = ACTIONS(3907), - [anon_sym_scoped] = ACTIONS(4052), - [anon_sym_var] = ACTIONS(4052), - [anon_sym_yield] = ACTIONS(4052), - [anon_sym_switch] = ACTIONS(3907), - [anon_sym_when] = ACTIONS(4052), - [sym_discard] = ACTIONS(4056), - [anon_sym_DOT_DOT] = ACTIONS(3905), - [anon_sym_and] = ACTIONS(3907), - [anon_sym_or] = ACTIONS(3907), - [anon_sym_AMP_AMP] = ACTIONS(3905), - [anon_sym_PIPE_PIPE] = ACTIONS(3905), - [anon_sym_QMARK_QMARK] = ACTIONS(3905), - [anon_sym_from] = ACTIONS(4052), - [anon_sym_into] = ACTIONS(3907), - [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(3907), - [anon_sym_is] = ACTIONS(3907), - [anon_sym_DASH_GT] = ACTIONS(3905), - [anon_sym_with] = ACTIONS(3907), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_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(3905), + [sym__identifier_token] = ACTIONS(3855), + [anon_sym_alias] = ACTIONS(3857), + [anon_sym_global] = ACTIONS(3857), + [anon_sym_LBRACK] = ACTIONS(3939), + [anon_sym_COLON] = ACTIONS(3939), + [anon_sym_LPAREN] = ACTIONS(3939), + [anon_sym_file] = ACTIONS(3857), + [anon_sym_LT] = ACTIONS(3941), + [anon_sym_GT] = ACTIONS(3941), + [anon_sym_where] = ACTIONS(3857), + [anon_sym_QMARK] = ACTIONS(3941), + [anon_sym_notnull] = ACTIONS(3857), + [anon_sym_unmanaged] = ACTIONS(3857), + [anon_sym_BANG] = ACTIONS(3941), + [anon_sym_PLUS_PLUS] = ACTIONS(3939), + [anon_sym_DASH_DASH] = ACTIONS(3939), + [anon_sym_PLUS] = ACTIONS(3941), + [anon_sym_DASH] = ACTIONS(3941), + [anon_sym_STAR] = ACTIONS(3939), + [anon_sym_SLASH] = ACTIONS(3941), + [anon_sym_PERCENT] = ACTIONS(3939), + [anon_sym_CARET] = ACTIONS(3939), + [anon_sym_PIPE] = ACTIONS(3941), + [anon_sym_AMP] = ACTIONS(3941), + [anon_sym_LT_LT] = ACTIONS(3939), + [anon_sym_GT_GT] = ACTIONS(3941), + [anon_sym_GT_GT_GT] = ACTIONS(3939), + [anon_sym_EQ_EQ] = ACTIONS(3939), + [anon_sym_BANG_EQ] = ACTIONS(3939), + [anon_sym_GT_EQ] = ACTIONS(3939), + [anon_sym_LT_EQ] = ACTIONS(3939), + [anon_sym_DOT] = ACTIONS(3941), + [anon_sym_scoped] = ACTIONS(3857), + [anon_sym_EQ_GT] = ACTIONS(3939), + [anon_sym_var] = ACTIONS(3857), + [anon_sym_yield] = ACTIONS(3857), + [anon_sym_switch] = ACTIONS(3941), + [anon_sym_when] = ACTIONS(3941), + [sym_discard] = ACTIONS(3877), + [anon_sym_DOT_DOT] = ACTIONS(3939), + [anon_sym_and] = ACTIONS(3941), + [anon_sym_or] = ACTIONS(3941), + [anon_sym_AMP_AMP] = ACTIONS(3939), + [anon_sym_PIPE_PIPE] = ACTIONS(3939), + [anon_sym_QMARK_QMARK] = ACTIONS(3939), + [anon_sym_from] = ACTIONS(3857), + [anon_sym_into] = ACTIONS(3857), + [anon_sym_join] = ACTIONS(3857), + [anon_sym_on] = ACTIONS(3857), + [anon_sym_equals] = ACTIONS(3857), + [anon_sym_let] = ACTIONS(3857), + [anon_sym_orderby] = ACTIONS(3857), + [anon_sym_ascending] = ACTIONS(3857), + [anon_sym_descending] = ACTIONS(3857), + [anon_sym_group] = ACTIONS(3857), + [anon_sym_by] = ACTIONS(3857), + [anon_sym_select] = ACTIONS(3857), + [anon_sym_as] = ACTIONS(3941), + [anon_sym_is] = ACTIONS(3941), + [anon_sym_DASH_GT] = ACTIONS(3939), + [anon_sym_with] = ACTIONS(3941), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), }, [2562] = { - [sym_property_pattern_clause] = STATE(2608), - [sym__variable_designation] = STATE(3789), - [sym_parenthesized_variable_designation] = STATE(3779), - [sym_identifier] = STATE(3781), - [sym__reserved_identifier] = STATE(2361), + [sym__variable_designation] = STATE(3461), + [sym_parenthesized_variable_designation] = STATE(3352), + [sym_identifier] = STATE(3355), + [sym__reserved_identifier] = STATE(3199), [sym_preproc_region] = STATE(2562), [sym_preproc_endregion] = STATE(2562), [sym_preproc_line] = STATE(2562), @@ -433933,67 +433567,67 @@ 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(4058), - [anon_sym_alias] = ACTIONS(4060), - [anon_sym_global] = ACTIONS(4060), - [anon_sym_LBRACK] = ACTIONS(3913), - [anon_sym_COMMA] = ACTIONS(3913), - [anon_sym_LPAREN] = ACTIONS(3913), - [anon_sym_LBRACE] = ACTIONS(3881), - [anon_sym_file] = ACTIONS(4060), - [anon_sym_LT] = ACTIONS(3915), - [anon_sym_GT] = ACTIONS(3915), - [anon_sym_where] = ACTIONS(3915), - [anon_sym_QMARK] = ACTIONS(3915), - [anon_sym_notnull] = ACTIONS(4060), - [anon_sym_unmanaged] = ACTIONS(4060), - [anon_sym_BANG] = ACTIONS(3915), - [anon_sym_PLUS_PLUS] = ACTIONS(3913), - [anon_sym_DASH_DASH] = ACTIONS(3913), - [anon_sym_PLUS] = ACTIONS(3915), - [anon_sym_DASH] = ACTIONS(3915), - [anon_sym_STAR] = ACTIONS(3913), - [anon_sym_SLASH] = ACTIONS(3915), - [anon_sym_PERCENT] = ACTIONS(3913), - [anon_sym_CARET] = ACTIONS(3913), - [anon_sym_PIPE] = ACTIONS(3915), - [anon_sym_AMP] = ACTIONS(3915), - [anon_sym_LT_LT] = ACTIONS(3913), - [anon_sym_GT_GT] = ACTIONS(3915), - [anon_sym_GT_GT_GT] = ACTIONS(3913), - [anon_sym_EQ_EQ] = ACTIONS(3913), - [anon_sym_BANG_EQ] = ACTIONS(3913), - [anon_sym_GT_EQ] = ACTIONS(3913), - [anon_sym_LT_EQ] = ACTIONS(3913), - [anon_sym_DOT] = ACTIONS(3915), - [anon_sym_scoped] = ACTIONS(4060), - [anon_sym_var] = ACTIONS(4060), - [anon_sym_yield] = ACTIONS(4060), - [anon_sym_switch] = ACTIONS(3915), - [anon_sym_when] = ACTIONS(4060), - [sym_discard] = ACTIONS(4207), - [anon_sym_DOT_DOT] = ACTIONS(3913), - [anon_sym_and] = ACTIONS(3915), - [anon_sym_or] = ACTIONS(3915), - [anon_sym_AMP_AMP] = ACTIONS(3913), - [anon_sym_PIPE_PIPE] = ACTIONS(3913), - [anon_sym_QMARK_QMARK] = ACTIONS(3913), - [anon_sym_from] = ACTIONS(3915), - [anon_sym_into] = ACTIONS(4060), - [anon_sym_join] = ACTIONS(3915), - [anon_sym_on] = ACTIONS(4060), - [anon_sym_equals] = ACTIONS(4060), - [anon_sym_let] = ACTIONS(3915), - [anon_sym_orderby] = ACTIONS(3915), - [anon_sym_ascending] = ACTIONS(3915), - [anon_sym_descending] = ACTIONS(3915), - [anon_sym_group] = ACTIONS(3915), - [anon_sym_by] = ACTIONS(4060), - [anon_sym_select] = ACTIONS(3915), - [anon_sym_as] = ACTIONS(3915), - [anon_sym_is] = ACTIONS(3915), - [anon_sym_DASH_GT] = ACTIONS(3913), - [anon_sym_with] = ACTIONS(3915), + [sym__identifier_token] = ACTIONS(3855), + [anon_sym_alias] = ACTIONS(3857), + [anon_sym_global] = ACTIONS(3857), + [anon_sym_LBRACK] = ACTIONS(3947), + [anon_sym_COLON] = ACTIONS(3947), + [anon_sym_LPAREN] = ACTIONS(3947), + [anon_sym_file] = ACTIONS(3857), + [anon_sym_LT] = ACTIONS(3949), + [anon_sym_GT] = ACTIONS(3949), + [anon_sym_where] = ACTIONS(3857), + [anon_sym_QMARK] = ACTIONS(3949), + [anon_sym_notnull] = ACTIONS(3857), + [anon_sym_unmanaged] = ACTIONS(3857), + [anon_sym_BANG] = ACTIONS(3949), + [anon_sym_PLUS_PLUS] = ACTIONS(3947), + [anon_sym_DASH_DASH] = ACTIONS(3947), + [anon_sym_PLUS] = ACTIONS(3949), + [anon_sym_DASH] = ACTIONS(3949), + [anon_sym_STAR] = ACTIONS(3947), + [anon_sym_SLASH] = ACTIONS(3949), + [anon_sym_PERCENT] = ACTIONS(3947), + [anon_sym_CARET] = ACTIONS(3947), + [anon_sym_PIPE] = ACTIONS(3949), + [anon_sym_AMP] = ACTIONS(3949), + [anon_sym_LT_LT] = ACTIONS(3947), + [anon_sym_GT_GT] = ACTIONS(3949), + [anon_sym_GT_GT_GT] = ACTIONS(3947), + [anon_sym_EQ_EQ] = ACTIONS(3947), + [anon_sym_BANG_EQ] = ACTIONS(3947), + [anon_sym_GT_EQ] = ACTIONS(3947), + [anon_sym_LT_EQ] = ACTIONS(3947), + [anon_sym_DOT] = ACTIONS(3949), + [anon_sym_scoped] = ACTIONS(3857), + [anon_sym_EQ_GT] = ACTIONS(3947), + [anon_sym_var] = ACTIONS(3857), + [anon_sym_yield] = ACTIONS(3857), + [anon_sym_switch] = ACTIONS(3949), + [anon_sym_when] = ACTIONS(3949), + [sym_discard] = ACTIONS(3877), + [anon_sym_DOT_DOT] = ACTIONS(3947), + [anon_sym_and] = ACTIONS(3949), + [anon_sym_or] = ACTIONS(3949), + [anon_sym_AMP_AMP] = ACTIONS(3947), + [anon_sym_PIPE_PIPE] = ACTIONS(3947), + [anon_sym_QMARK_QMARK] = ACTIONS(3947), + [anon_sym_from] = ACTIONS(3857), + [anon_sym_into] = ACTIONS(3857), + [anon_sym_join] = ACTIONS(3857), + [anon_sym_on] = ACTIONS(3857), + [anon_sym_equals] = ACTIONS(3857), + [anon_sym_let] = ACTIONS(3857), + [anon_sym_orderby] = ACTIONS(3857), + [anon_sym_ascending] = ACTIONS(3857), + [anon_sym_descending] = ACTIONS(3857), + [anon_sym_group] = ACTIONS(3857), + [anon_sym_by] = ACTIONS(3857), + [anon_sym_select] = ACTIONS(3857), + [anon_sym_as] = ACTIONS(3949), + [anon_sym_is] = ACTIONS(3949), + [anon_sym_DASH_GT] = ACTIONS(3947), + [anon_sym_with] = ACTIONS(3949), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -434006,10 +433640,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2563] = { - [sym__variable_designation] = STATE(4786), - [sym_parenthesized_variable_designation] = STATE(4761), - [sym_identifier] = STATE(4764), - [sym__reserved_identifier] = STATE(4323), + [sym_type_argument_list] = STATE(2628), [sym_preproc_region] = STATE(2563), [sym_preproc_endregion] = STATE(2563), [sym_preproc_line] = STATE(2563), @@ -434019,81 +433650,87 @@ 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), - [sym__identifier_token] = ACTIONS(4050), - [anon_sym_alias] = ACTIONS(4052), - [anon_sym_global] = ACTIONS(4052), - [anon_sym_LBRACK] = ACTIONS(3905), - [anon_sym_COLON] = ACTIONS(3905), - [anon_sym_COMMA] = ACTIONS(3905), - [anon_sym_LPAREN] = ACTIONS(3905), - [anon_sym_file] = ACTIONS(4052), - [anon_sym_LT] = ACTIONS(3907), - [anon_sym_GT] = ACTIONS(3907), - [anon_sym_where] = ACTIONS(4052), - [anon_sym_QMARK] = ACTIONS(3907), - [anon_sym_notnull] = ACTIONS(4052), - [anon_sym_unmanaged] = ACTIONS(4052), - [anon_sym_BANG] = ACTIONS(3907), - [anon_sym_PLUS_PLUS] = ACTIONS(3905), - [anon_sym_DASH_DASH] = ACTIONS(3905), - [anon_sym_PLUS] = ACTIONS(3907), - [anon_sym_DASH] = ACTIONS(3907), - [anon_sym_STAR] = ACTIONS(3905), - [anon_sym_SLASH] = ACTIONS(3907), - [anon_sym_PERCENT] = ACTIONS(3905), - [anon_sym_CARET] = ACTIONS(3905), - [anon_sym_PIPE] = ACTIONS(3907), - [anon_sym_AMP] = ACTIONS(3907), - [anon_sym_LT_LT] = ACTIONS(3905), - [anon_sym_GT_GT] = ACTIONS(3907), - [anon_sym_GT_GT_GT] = ACTIONS(3905), - [anon_sym_EQ_EQ] = ACTIONS(3905), - [anon_sym_BANG_EQ] = ACTIONS(3905), - [anon_sym_GT_EQ] = ACTIONS(3905), - [anon_sym_LT_EQ] = ACTIONS(3905), - [anon_sym_DOT] = ACTIONS(3907), - [anon_sym_scoped] = ACTIONS(4052), - [anon_sym_var] = ACTIONS(4052), - [anon_sym_yield] = ACTIONS(4052), - [anon_sym_switch] = ACTIONS(3907), - [anon_sym_when] = ACTIONS(4052), - [sym_discard] = ACTIONS(4056), - [anon_sym_DOT_DOT] = ACTIONS(3905), - [anon_sym_and] = ACTIONS(3907), - [anon_sym_or] = ACTIONS(3907), - [anon_sym_AMP_AMP] = ACTIONS(3905), - [anon_sym_PIPE_PIPE] = ACTIONS(3905), - [anon_sym_QMARK_QMARK] = ACTIONS(3905), - [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(3907), - [anon_sym_is] = ACTIONS(3907), - [anon_sym_DASH_GT] = ACTIONS(3905), - [anon_sym_with] = ACTIONS(3907), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_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(3905), + [anon_sym_SEMI] = ACTIONS(3640), + [anon_sym_EQ] = ACTIONS(3638), + [anon_sym_LBRACK] = ACTIONS(3640), + [anon_sym_COLON] = ACTIONS(3640), + [anon_sym_COMMA] = ACTIONS(3640), + [anon_sym_RBRACK] = ACTIONS(3640), + [anon_sym_LPAREN] = ACTIONS(3640), + [anon_sym_RPAREN] = ACTIONS(3640), + [anon_sym_RBRACE] = ACTIONS(3640), + [anon_sym_LT] = ACTIONS(4223), + [anon_sym_GT] = ACTIONS(3638), + [anon_sym_in] = ACTIONS(3638), + [anon_sym_QMARK] = ACTIONS(3638), + [anon_sym_BANG] = ACTIONS(3638), + [anon_sym_PLUS_PLUS] = ACTIONS(3640), + [anon_sym_DASH_DASH] = ACTIONS(3640), + [anon_sym_PLUS] = ACTIONS(3638), + [anon_sym_DASH] = ACTIONS(3638), + [anon_sym_STAR] = ACTIONS(3638), + [anon_sym_SLASH] = ACTIONS(3638), + [anon_sym_PERCENT] = ACTIONS(3638), + [anon_sym_CARET] = ACTIONS(3638), + [anon_sym_PIPE] = ACTIONS(3638), + [anon_sym_AMP] = ACTIONS(3638), + [anon_sym_LT_LT] = ACTIONS(3638), + [anon_sym_GT_GT] = ACTIONS(3638), + [anon_sym_GT_GT_GT] = ACTIONS(3638), + [anon_sym_EQ_EQ] = ACTIONS(3640), + [anon_sym_BANG_EQ] = ACTIONS(3640), + [anon_sym_GT_EQ] = ACTIONS(3640), + [anon_sym_LT_EQ] = ACTIONS(3640), + [anon_sym_DOT] = ACTIONS(3638), + [anon_sym_EQ_GT] = ACTIONS(3640), + [anon_sym_switch] = ACTIONS(3640), + [anon_sym_when] = ACTIONS(3640), + [anon_sym_DOT_DOT] = ACTIONS(3640), + [anon_sym_and] = ACTIONS(3640), + [anon_sym_or] = ACTIONS(3640), + [anon_sym_PLUS_EQ] = ACTIONS(3640), + [anon_sym_DASH_EQ] = ACTIONS(3640), + [anon_sym_STAR_EQ] = ACTIONS(3640), + [anon_sym_SLASH_EQ] = ACTIONS(3640), + [anon_sym_PERCENT_EQ] = ACTIONS(3640), + [anon_sym_AMP_EQ] = ACTIONS(3640), + [anon_sym_CARET_EQ] = ACTIONS(3640), + [anon_sym_PIPE_EQ] = ACTIONS(3640), + [anon_sym_LT_LT_EQ] = ACTIONS(3640), + [anon_sym_GT_GT_EQ] = ACTIONS(3640), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3640), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3640), + [anon_sym_AMP_AMP] = ACTIONS(3640), + [anon_sym_PIPE_PIPE] = ACTIONS(3640), + [anon_sym_QMARK_QMARK] = ACTIONS(3638), + [anon_sym_into] = ACTIONS(3640), + [anon_sym_on] = ACTIONS(3640), + [anon_sym_equals] = ACTIONS(3640), + [anon_sym_by] = ACTIONS(3640), + [anon_sym_as] = ACTIONS(3640), + [anon_sym_is] = ACTIONS(3640), + [anon_sym_DASH_GT] = ACTIONS(3640), + [anon_sym_with] = ACTIONS(3640), + [aux_sym_preproc_if_token3] = ACTIONS(3640), + [aux_sym_preproc_else_token1] = ACTIONS(3640), + [aux_sym_preproc_elif_token1] = ACTIONS(3640), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), }, [2564] = { - [sym_type_argument_list] = STATE(2417), + [sym_property_pattern_clause] = STATE(2684), + [sym__variable_designation] = STATE(3471), + [sym_parenthesized_variable_designation] = STATE(3352), + [sym_identifier] = STATE(3355), + [sym__reserved_identifier] = STATE(3199), [sym_preproc_region] = STATE(2564), [sym_preproc_endregion] = STATE(2564), [sym_preproc_line] = STATE(2564), @@ -434103,71 +433740,66 @@ 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(3660), - [anon_sym_alias] = ACTIONS(3660), - [anon_sym_global] = ACTIONS(3660), - [anon_sym_LBRACK] = ACTIONS(3662), - [anon_sym_COLON] = ACTIONS(3660), - [anon_sym_COMMA] = ACTIONS(3662), - [anon_sym_LPAREN] = ACTIONS(3662), - [anon_sym_RPAREN] = ACTIONS(3662), - [anon_sym_LBRACE] = ACTIONS(3662), - [anon_sym_RBRACE] = ACTIONS(3662), - [anon_sym_file] = ACTIONS(3660), - [anon_sym_LT] = ACTIONS(4033), - [anon_sym_GT] = ACTIONS(3660), - [anon_sym_where] = ACTIONS(3660), - [anon_sym_QMARK] = ACTIONS(3660), - [anon_sym_notnull] = ACTIONS(3660), - [anon_sym_unmanaged] = ACTIONS(3660), - [anon_sym_BANG] = ACTIONS(3660), - [anon_sym_PLUS_PLUS] = ACTIONS(3662), - [anon_sym_DASH_DASH] = ACTIONS(3662), - [anon_sym_PLUS] = ACTIONS(3660), - [anon_sym_DASH] = ACTIONS(3660), - [anon_sym_STAR] = ACTIONS(3662), - [anon_sym_SLASH] = ACTIONS(3660), - [anon_sym_PERCENT] = ACTIONS(3662), - [anon_sym_CARET] = ACTIONS(3662), - [anon_sym_PIPE] = ACTIONS(3660), - [anon_sym_AMP] = ACTIONS(3660), - [anon_sym_LT_LT] = ACTIONS(3662), - [anon_sym_GT_GT] = ACTIONS(3660), - [anon_sym_GT_GT_GT] = ACTIONS(3662), - [anon_sym_EQ_EQ] = ACTIONS(3662), - [anon_sym_BANG_EQ] = ACTIONS(3662), - [anon_sym_GT_EQ] = ACTIONS(3662), - [anon_sym_LT_EQ] = ACTIONS(3662), - [anon_sym_DOT] = ACTIONS(3660), - [anon_sym_scoped] = ACTIONS(3660), - [anon_sym_COLON_COLON] = ACTIONS(3824), - [anon_sym_var] = ACTIONS(3660), - [anon_sym_yield] = ACTIONS(3660), - [anon_sym_switch] = ACTIONS(3660), - [anon_sym_when] = ACTIONS(3660), - [sym_discard] = ACTIONS(3660), - [anon_sym_DOT_DOT] = ACTIONS(3662), - [anon_sym_and] = ACTIONS(3660), - [anon_sym_or] = ACTIONS(3660), - [anon_sym_AMP_AMP] = ACTIONS(3662), - [anon_sym_PIPE_PIPE] = ACTIONS(3662), - [anon_sym_QMARK_QMARK] = ACTIONS(3662), - [anon_sym_from] = ACTIONS(3660), - [anon_sym_into] = ACTIONS(3660), - [anon_sym_join] = ACTIONS(3660), - [anon_sym_on] = ACTIONS(3660), - [anon_sym_equals] = ACTIONS(3660), - [anon_sym_let] = ACTIONS(3660), - [anon_sym_orderby] = ACTIONS(3660), - [anon_sym_ascending] = ACTIONS(3660), - [anon_sym_descending] = ACTIONS(3660), - [anon_sym_group] = ACTIONS(3660), - [anon_sym_by] = ACTIONS(3660), - [anon_sym_select] = ACTIONS(3660), - [anon_sym_as] = ACTIONS(3660), - [anon_sym_is] = ACTIONS(3660), - [anon_sym_DASH_GT] = ACTIONS(3662), - [anon_sym_with] = ACTIONS(3660), + [sym__identifier_token] = ACTIONS(3855), + [anon_sym_alias] = ACTIONS(3857), + [anon_sym_global] = ACTIONS(3857), + [anon_sym_LBRACK] = ACTIONS(3885), + [anon_sym_LPAREN] = ACTIONS(3885), + [anon_sym_LBRACE] = ACTIONS(3861), + [anon_sym_file] = ACTIONS(3857), + [anon_sym_LT] = ACTIONS(3887), + [anon_sym_GT] = ACTIONS(3887), + [anon_sym_where] = ACTIONS(3857), + [anon_sym_QMARK] = ACTIONS(3887), + [anon_sym_notnull] = ACTIONS(3857), + [anon_sym_unmanaged] = ACTIONS(3857), + [anon_sym_BANG] = ACTIONS(3887), + [anon_sym_PLUS_PLUS] = ACTIONS(3885), + [anon_sym_DASH_DASH] = ACTIONS(3885), + [anon_sym_PLUS] = ACTIONS(3887), + [anon_sym_DASH] = ACTIONS(3887), + [anon_sym_STAR] = ACTIONS(3885), + [anon_sym_SLASH] = ACTIONS(3887), + [anon_sym_PERCENT] = ACTIONS(3885), + [anon_sym_CARET] = ACTIONS(3885), + [anon_sym_PIPE] = ACTIONS(3887), + [anon_sym_AMP] = ACTIONS(3887), + [anon_sym_LT_LT] = ACTIONS(3885), + [anon_sym_GT_GT] = ACTIONS(3887), + [anon_sym_GT_GT_GT] = ACTIONS(3885), + [anon_sym_EQ_EQ] = ACTIONS(3885), + [anon_sym_BANG_EQ] = ACTIONS(3885), + [anon_sym_GT_EQ] = ACTIONS(3885), + [anon_sym_LT_EQ] = ACTIONS(3885), + [anon_sym_DOT] = ACTIONS(3887), + [anon_sym_scoped] = ACTIONS(3857), + [anon_sym_var] = ACTIONS(3857), + [anon_sym_yield] = ACTIONS(3857), + [anon_sym_switch] = ACTIONS(3887), + [anon_sym_when] = ACTIONS(3857), + [sym_discard] = ACTIONS(3877), + [anon_sym_DOT_DOT] = ACTIONS(3885), + [anon_sym_and] = ACTIONS(3887), + [anon_sym_or] = ACTIONS(3887), + [anon_sym_AMP_AMP] = ACTIONS(3885), + [anon_sym_PIPE_PIPE] = ACTIONS(3885), + [anon_sym_QMARK_QMARK] = ACTIONS(3885), + [anon_sym_from] = ACTIONS(3857), + [anon_sym_into] = ACTIONS(3857), + [anon_sym_join] = ACTIONS(3857), + [anon_sym_on] = ACTIONS(3857), + [anon_sym_equals] = ACTIONS(3857), + [anon_sym_let] = ACTIONS(3857), + [anon_sym_orderby] = ACTIONS(3857), + [anon_sym_ascending] = ACTIONS(3857), + [anon_sym_descending] = ACTIONS(3857), + [anon_sym_group] = ACTIONS(3857), + [anon_sym_by] = ACTIONS(3887), + [anon_sym_select] = ACTIONS(3857), + [anon_sym_as] = ACTIONS(3887), + [anon_sym_is] = ACTIONS(3887), + [anon_sym_DASH_GT] = ACTIONS(3885), + [anon_sym_with] = ACTIONS(3887), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -434180,11 +433812,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2565] = { - [sym_property_pattern_clause] = STATE(2652), - [sym__variable_designation] = STATE(3495), - [sym_parenthesized_variable_designation] = STATE(3463), - [sym_identifier] = STATE(3479), - [sym__reserved_identifier] = STATE(3225), [sym_preproc_region] = STATE(2565), [sym_preproc_endregion] = STATE(2565), [sym_preproc_line] = STATE(2565), @@ -434194,67 +433821,71 @@ 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), - [sym__identifier_token] = ACTIONS(3788), - [anon_sym_alias] = ACTIONS(3790), - [anon_sym_global] = ACTIONS(3790), - [anon_sym_LBRACK] = ACTIONS(3905), - [anon_sym_LPAREN] = ACTIONS(3905), - [anon_sym_LBRACE] = ACTIONS(3881), - [anon_sym_file] = ACTIONS(3790), - [anon_sym_LT] = ACTIONS(3907), - [anon_sym_GT] = ACTIONS(3907), - [anon_sym_in] = ACTIONS(3907), - [anon_sym_where] = ACTIONS(3790), - [anon_sym_QMARK] = ACTIONS(3907), - [anon_sym_notnull] = ACTIONS(3790), - [anon_sym_unmanaged] = ACTIONS(3790), - [anon_sym_BANG] = ACTIONS(3907), - [anon_sym_PLUS_PLUS] = ACTIONS(3905), - [anon_sym_DASH_DASH] = ACTIONS(3905), - [anon_sym_PLUS] = ACTIONS(3907), - [anon_sym_DASH] = ACTIONS(3907), - [anon_sym_STAR] = ACTIONS(3905), - [anon_sym_SLASH] = ACTIONS(3907), - [anon_sym_PERCENT] = ACTIONS(3905), - [anon_sym_CARET] = ACTIONS(3905), - [anon_sym_PIPE] = ACTIONS(3907), - [anon_sym_AMP] = ACTIONS(3907), - [anon_sym_LT_LT] = ACTIONS(3905), - [anon_sym_GT_GT] = ACTIONS(3907), - [anon_sym_GT_GT_GT] = ACTIONS(3905), - [anon_sym_EQ_EQ] = ACTIONS(3905), - [anon_sym_BANG_EQ] = ACTIONS(3905), - [anon_sym_GT_EQ] = ACTIONS(3905), - [anon_sym_LT_EQ] = ACTIONS(3905), - [anon_sym_DOT] = ACTIONS(3907), - [anon_sym_scoped] = ACTIONS(3790), - [anon_sym_var] = ACTIONS(3790), - [anon_sym_yield] = ACTIONS(3790), - [anon_sym_switch] = ACTIONS(3907), - [anon_sym_when] = ACTIONS(3790), - [sym_discard] = ACTIONS(3897), - [anon_sym_DOT_DOT] = ACTIONS(3905), - [anon_sym_and] = ACTIONS(3907), - [anon_sym_or] = ACTIONS(3907), - [anon_sym_AMP_AMP] = ACTIONS(3905), - [anon_sym_PIPE_PIPE] = ACTIONS(3905), - [anon_sym_QMARK_QMARK] = ACTIONS(3905), - [anon_sym_from] = ACTIONS(3790), - [anon_sym_into] = ACTIONS(3790), - [anon_sym_join] = ACTIONS(3790), - [anon_sym_on] = ACTIONS(3790), - [anon_sym_equals] = ACTIONS(3790), - [anon_sym_let] = ACTIONS(3790), - [anon_sym_orderby] = ACTIONS(3790), - [anon_sym_ascending] = ACTIONS(3790), - [anon_sym_descending] = ACTIONS(3790), - [anon_sym_group] = ACTIONS(3790), - [anon_sym_by] = ACTIONS(3790), - [anon_sym_select] = ACTIONS(3790), - [anon_sym_as] = ACTIONS(3907), - [anon_sym_is] = ACTIONS(3907), - [anon_sym_DASH_GT] = ACTIONS(3905), - [anon_sym_with] = ACTIONS(3907), + [anon_sym_SEMI] = ACTIONS(3636), + [anon_sym_EQ] = ACTIONS(3634), + [anon_sym_LBRACK] = ACTIONS(3636), + [anon_sym_COLON] = ACTIONS(3636), + [anon_sym_COMMA] = ACTIONS(3636), + [anon_sym_RBRACK] = ACTIONS(3636), + [anon_sym_LPAREN] = ACTIONS(3636), + [anon_sym_RPAREN] = ACTIONS(3636), + [anon_sym_LBRACE] = ACTIONS(3636), + [anon_sym_RBRACE] = ACTIONS(3636), + [anon_sym_LT] = ACTIONS(3634), + [anon_sym_GT] = ACTIONS(3634), + [anon_sym_in] = ACTIONS(3636), + [anon_sym_where] = ACTIONS(3636), + [anon_sym_QMARK] = ACTIONS(3634), + [anon_sym_BANG] = ACTIONS(3634), + [anon_sym_PLUS_PLUS] = ACTIONS(3636), + [anon_sym_DASH_DASH] = ACTIONS(3636), + [anon_sym_PLUS] = ACTIONS(3634), + [anon_sym_DASH] = ACTIONS(3634), + [anon_sym_STAR] = ACTIONS(3634), + [anon_sym_SLASH] = ACTIONS(3634), + [anon_sym_PERCENT] = ACTIONS(3634), + [anon_sym_CARET] = ACTIONS(3634), + [anon_sym_PIPE] = ACTIONS(3634), + [anon_sym_AMP] = ACTIONS(3634), + [anon_sym_LT_LT] = ACTIONS(3634), + [anon_sym_GT_GT] = ACTIONS(3634), + [anon_sym_GT_GT_GT] = ACTIONS(3634), + [anon_sym_EQ_EQ] = ACTIONS(3636), + [anon_sym_BANG_EQ] = ACTIONS(3636), + [anon_sym_GT_EQ] = ACTIONS(3636), + [anon_sym_LT_EQ] = ACTIONS(3636), + [anon_sym_DOT] = ACTIONS(3634), + [anon_sym_EQ_GT] = ACTIONS(3636), + [anon_sym_switch] = ACTIONS(3636), + [anon_sym_when] = ACTIONS(3636), + [anon_sym_DOT_DOT] = ACTIONS(3636), + [anon_sym_and] = ACTIONS(3636), + [anon_sym_or] = ACTIONS(3636), + [anon_sym_PLUS_EQ] = ACTIONS(3636), + [anon_sym_DASH_EQ] = ACTIONS(3636), + [anon_sym_STAR_EQ] = ACTIONS(3636), + [anon_sym_SLASH_EQ] = ACTIONS(3636), + [anon_sym_PERCENT_EQ] = ACTIONS(3636), + [anon_sym_AMP_EQ] = ACTIONS(3636), + [anon_sym_CARET_EQ] = ACTIONS(3636), + [anon_sym_PIPE_EQ] = ACTIONS(3636), + [anon_sym_LT_LT_EQ] = ACTIONS(3636), + [anon_sym_GT_GT_EQ] = ACTIONS(3636), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3636), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3636), + [anon_sym_AMP_AMP] = ACTIONS(3636), + [anon_sym_PIPE_PIPE] = ACTIONS(3636), + [anon_sym_QMARK_QMARK] = ACTIONS(3634), + [anon_sym_on] = ACTIONS(3636), + [anon_sym_equals] = ACTIONS(3636), + [anon_sym_by] = ACTIONS(3636), + [anon_sym_as] = ACTIONS(3636), + [anon_sym_is] = ACTIONS(3636), + [anon_sym_DASH_GT] = ACTIONS(3636), + [anon_sym_with] = ACTIONS(3636), + [aux_sym_preproc_if_token3] = ACTIONS(3636), + [aux_sym_preproc_else_token1] = ACTIONS(3636), + [aux_sym_preproc_elif_token1] = ACTIONS(3636), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -434267,11 +433898,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2566] = { - [sym_property_pattern_clause] = STATE(2625), - [sym__variable_designation] = STATE(3496), - [sym_parenthesized_variable_designation] = STATE(3463), - [sym_identifier] = STATE(3479), - [sym__reserved_identifier] = STATE(3225), + [sym_property_pattern_clause] = STATE(2719), + [sym__variable_designation] = STATE(4153), + [sym_parenthesized_variable_designation] = STATE(4116), + [sym_identifier] = STATE(4152), + [sym__reserved_identifier] = STATE(2900), [sym_preproc_region] = STATE(2566), [sym_preproc_endregion] = STATE(2566), [sym_preproc_line] = STATE(2566), @@ -434281,67 +433912,66 @@ 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), - [sym__identifier_token] = ACTIONS(3788), - [anon_sym_alias] = ACTIONS(3790), - [anon_sym_global] = ACTIONS(3790), - [anon_sym_LBRACK] = ACTIONS(3913), - [anon_sym_LPAREN] = ACTIONS(3913), - [anon_sym_LBRACE] = ACTIONS(3881), - [anon_sym_file] = ACTIONS(3790), - [anon_sym_LT] = ACTIONS(3915), - [anon_sym_GT] = ACTIONS(3915), - [anon_sym_in] = ACTIONS(3915), - [anon_sym_where] = ACTIONS(3790), - [anon_sym_QMARK] = ACTIONS(3915), - [anon_sym_notnull] = ACTIONS(3790), - [anon_sym_unmanaged] = ACTIONS(3790), - [anon_sym_BANG] = ACTIONS(3915), - [anon_sym_PLUS_PLUS] = ACTIONS(3913), - [anon_sym_DASH_DASH] = ACTIONS(3913), - [anon_sym_PLUS] = ACTIONS(3915), - [anon_sym_DASH] = ACTIONS(3915), - [anon_sym_STAR] = ACTIONS(3913), - [anon_sym_SLASH] = ACTIONS(3915), - [anon_sym_PERCENT] = ACTIONS(3913), - [anon_sym_CARET] = ACTIONS(3913), - [anon_sym_PIPE] = ACTIONS(3915), - [anon_sym_AMP] = ACTIONS(3915), - [anon_sym_LT_LT] = ACTIONS(3913), - [anon_sym_GT_GT] = ACTIONS(3915), - [anon_sym_GT_GT_GT] = ACTIONS(3913), - [anon_sym_EQ_EQ] = ACTIONS(3913), - [anon_sym_BANG_EQ] = ACTIONS(3913), - [anon_sym_GT_EQ] = ACTIONS(3913), - [anon_sym_LT_EQ] = ACTIONS(3913), - [anon_sym_DOT] = ACTIONS(3915), - [anon_sym_scoped] = ACTIONS(3790), - [anon_sym_var] = ACTIONS(3790), - [anon_sym_yield] = ACTIONS(3790), - [anon_sym_switch] = ACTIONS(3915), - [anon_sym_when] = ACTIONS(3790), - [sym_discard] = ACTIONS(3897), - [anon_sym_DOT_DOT] = ACTIONS(3913), - [anon_sym_and] = ACTIONS(3915), - [anon_sym_or] = ACTIONS(3915), - [anon_sym_AMP_AMP] = ACTIONS(3913), - [anon_sym_PIPE_PIPE] = ACTIONS(3913), - [anon_sym_QMARK_QMARK] = ACTIONS(3913), - [anon_sym_from] = ACTIONS(3790), - [anon_sym_into] = ACTIONS(3790), - [anon_sym_join] = ACTIONS(3790), - [anon_sym_on] = ACTIONS(3790), - [anon_sym_equals] = ACTIONS(3790), - [anon_sym_let] = ACTIONS(3790), - [anon_sym_orderby] = ACTIONS(3790), - [anon_sym_ascending] = ACTIONS(3790), - [anon_sym_descending] = ACTIONS(3790), - [anon_sym_group] = ACTIONS(3790), - [anon_sym_by] = ACTIONS(3790), - [anon_sym_select] = ACTIONS(3790), - [anon_sym_as] = ACTIONS(3915), - [anon_sym_is] = ACTIONS(3915), - [anon_sym_DASH_GT] = ACTIONS(3913), - [anon_sym_with] = ACTIONS(3915), + [sym__identifier_token] = ACTIONS(3814), + [anon_sym_alias] = ACTIONS(3816), + [anon_sym_global] = ACTIONS(3816), + [anon_sym_LBRACK] = ACTIONS(3893), + [anon_sym_LPAREN] = ACTIONS(3893), + [anon_sym_LBRACE] = ACTIONS(3861), + [anon_sym_file] = ACTIONS(3816), + [anon_sym_LT] = ACTIONS(3895), + [anon_sym_GT] = ACTIONS(3895), + [anon_sym_where] = ACTIONS(3895), + [anon_sym_QMARK] = ACTIONS(3895), + [anon_sym_notnull] = ACTIONS(3816), + [anon_sym_unmanaged] = ACTIONS(3816), + [anon_sym_BANG] = ACTIONS(3895), + [anon_sym_PLUS_PLUS] = ACTIONS(3893), + [anon_sym_DASH_DASH] = ACTIONS(3893), + [anon_sym_PLUS] = ACTIONS(3895), + [anon_sym_DASH] = ACTIONS(3895), + [anon_sym_STAR] = ACTIONS(3893), + [anon_sym_SLASH] = ACTIONS(3895), + [anon_sym_PERCENT] = ACTIONS(3893), + [anon_sym_CARET] = ACTIONS(3893), + [anon_sym_PIPE] = ACTIONS(3895), + [anon_sym_AMP] = ACTIONS(3895), + [anon_sym_LT_LT] = ACTIONS(3893), + [anon_sym_GT_GT] = ACTIONS(3895), + [anon_sym_GT_GT_GT] = ACTIONS(3893), + [anon_sym_EQ_EQ] = ACTIONS(3893), + [anon_sym_BANG_EQ] = ACTIONS(3893), + [anon_sym_GT_EQ] = ACTIONS(3893), + [anon_sym_LT_EQ] = ACTIONS(3893), + [anon_sym_DOT] = ACTIONS(3895), + [anon_sym_scoped] = ACTIONS(3816), + [anon_sym_var] = ACTIONS(3816), + [anon_sym_yield] = ACTIONS(3816), + [anon_sym_switch] = ACTIONS(3895), + [anon_sym_when] = ACTIONS(3816), + [sym_discard] = ACTIONS(4187), + [anon_sym_DOT_DOT] = ACTIONS(3893), + [anon_sym_and] = ACTIONS(3895), + [anon_sym_or] = ACTIONS(3895), + [anon_sym_AMP_AMP] = ACTIONS(3893), + [anon_sym_PIPE_PIPE] = ACTIONS(3893), + [anon_sym_QMARK_QMARK] = ACTIONS(3893), + [anon_sym_from] = ACTIONS(3895), + [anon_sym_into] = ACTIONS(3895), + [anon_sym_join] = ACTIONS(3895), + [anon_sym_on] = ACTIONS(3816), + [anon_sym_equals] = ACTIONS(3816), + [anon_sym_let] = ACTIONS(3895), + [anon_sym_orderby] = ACTIONS(3895), + [anon_sym_ascending] = ACTIONS(3816), + [anon_sym_descending] = ACTIONS(3816), + [anon_sym_group] = ACTIONS(3895), + [anon_sym_by] = ACTIONS(3816), + [anon_sym_select] = ACTIONS(3895), + [anon_sym_as] = ACTIONS(3895), + [anon_sym_is] = ACTIONS(3895), + [anon_sym_DASH_GT] = ACTIONS(3893), + [anon_sym_with] = ACTIONS(3895), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -434354,11 +433984,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2567] = { - [sym_property_pattern_clause] = STATE(2789), - [sym__variable_designation] = STATE(3341), - [sym_parenthesized_variable_designation] = STATE(3340), - [sym_identifier] = STATE(3345), - [sym__reserved_identifier] = STATE(3177), + [sym_property_pattern_clause] = STATE(2810), + [sym__variable_designation] = STATE(4158), + [sym_parenthesized_variable_designation] = STATE(4116), + [sym_identifier] = STATE(4152), + [sym__reserved_identifier] = STATE(2916), [sym_preproc_region] = STATE(2567), [sym_preproc_endregion] = STATE(2567), [sym_preproc_line] = STATE(2567), @@ -434368,66 +433998,66 @@ 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(3875), - [anon_sym_alias] = ACTIONS(3877), - [anon_sym_global] = ACTIONS(3877), - [anon_sym_LBRACK] = ACTIONS(3913), - [anon_sym_LPAREN] = ACTIONS(3913), - [anon_sym_LBRACE] = ACTIONS(3881), - [anon_sym_file] = ACTIONS(3877), - [anon_sym_LT] = ACTIONS(3915), - [anon_sym_GT] = ACTIONS(3915), - [anon_sym_where] = ACTIONS(3877), - [anon_sym_QMARK] = ACTIONS(3915), - [anon_sym_notnull] = ACTIONS(3877), - [anon_sym_unmanaged] = ACTIONS(3877), - [anon_sym_BANG] = ACTIONS(3915), - [anon_sym_PLUS_PLUS] = ACTIONS(3913), - [anon_sym_DASH_DASH] = ACTIONS(3913), - [anon_sym_PLUS] = ACTIONS(3915), - [anon_sym_DASH] = ACTIONS(3915), - [anon_sym_STAR] = ACTIONS(3913), - [anon_sym_SLASH] = ACTIONS(3915), - [anon_sym_PERCENT] = ACTIONS(3913), - [anon_sym_CARET] = ACTIONS(3913), - [anon_sym_PIPE] = ACTIONS(3915), - [anon_sym_AMP] = ACTIONS(3915), - [anon_sym_LT_LT] = ACTIONS(3913), - [anon_sym_GT_GT] = ACTIONS(3915), - [anon_sym_GT_GT_GT] = ACTIONS(3913), - [anon_sym_EQ_EQ] = ACTIONS(3913), - [anon_sym_BANG_EQ] = ACTIONS(3913), - [anon_sym_GT_EQ] = ACTIONS(3913), - [anon_sym_LT_EQ] = ACTIONS(3913), - [anon_sym_DOT] = ACTIONS(3915), - [anon_sym_scoped] = ACTIONS(3877), - [anon_sym_var] = ACTIONS(3877), - [anon_sym_yield] = ACTIONS(3877), - [anon_sym_switch] = ACTIONS(3915), - [anon_sym_when] = ACTIONS(3877), - [sym_discard] = ACTIONS(3885), - [anon_sym_DOT_DOT] = ACTIONS(3913), - [anon_sym_and] = ACTIONS(3915), - [anon_sym_or] = ACTIONS(3915), - [anon_sym_AMP_AMP] = ACTIONS(3913), - [anon_sym_PIPE_PIPE] = ACTIONS(3913), - [anon_sym_QMARK_QMARK] = ACTIONS(3913), - [anon_sym_from] = ACTIONS(3877), - [anon_sym_into] = ACTIONS(3915), - [anon_sym_join] = ACTIONS(3877), - [anon_sym_on] = ACTIONS(3877), - [anon_sym_equals] = ACTIONS(3915), - [anon_sym_let] = ACTIONS(3877), - [anon_sym_orderby] = ACTIONS(3877), - [anon_sym_ascending] = ACTIONS(3877), - [anon_sym_descending] = ACTIONS(3877), - [anon_sym_group] = ACTIONS(3877), - [anon_sym_by] = ACTIONS(3877), - [anon_sym_select] = ACTIONS(3877), - [anon_sym_as] = ACTIONS(3915), - [anon_sym_is] = ACTIONS(3915), - [anon_sym_DASH_GT] = ACTIONS(3913), - [anon_sym_with] = ACTIONS(3915), + [sym__identifier_token] = ACTIONS(3871), + [anon_sym_alias] = ACTIONS(3873), + [anon_sym_global] = ACTIONS(3873), + [anon_sym_LBRACK] = ACTIONS(3885), + [anon_sym_LPAREN] = ACTIONS(3885), + [anon_sym_LBRACE] = ACTIONS(3861), + [anon_sym_file] = ACTIONS(3873), + [anon_sym_LT] = ACTIONS(3887), + [anon_sym_GT] = ACTIONS(3887), + [anon_sym_where] = ACTIONS(3887), + [anon_sym_QMARK] = ACTIONS(3887), + [anon_sym_notnull] = ACTIONS(3873), + [anon_sym_unmanaged] = ACTIONS(3873), + [anon_sym_BANG] = ACTIONS(3887), + [anon_sym_PLUS_PLUS] = ACTIONS(3885), + [anon_sym_DASH_DASH] = ACTIONS(3885), + [anon_sym_PLUS] = ACTIONS(3887), + [anon_sym_DASH] = ACTIONS(3887), + [anon_sym_STAR] = ACTIONS(3885), + [anon_sym_SLASH] = ACTIONS(3887), + [anon_sym_PERCENT] = ACTIONS(3885), + [anon_sym_CARET] = ACTIONS(3885), + [anon_sym_PIPE] = ACTIONS(3887), + [anon_sym_AMP] = ACTIONS(3887), + [anon_sym_LT_LT] = ACTIONS(3885), + [anon_sym_GT_GT] = ACTIONS(3887), + [anon_sym_GT_GT_GT] = ACTIONS(3885), + [anon_sym_EQ_EQ] = ACTIONS(3885), + [anon_sym_BANG_EQ] = ACTIONS(3885), + [anon_sym_GT_EQ] = ACTIONS(3885), + [anon_sym_LT_EQ] = ACTIONS(3885), + [anon_sym_DOT] = ACTIONS(3887), + [anon_sym_scoped] = ACTIONS(3873), + [anon_sym_var] = ACTIONS(3873), + [anon_sym_yield] = ACTIONS(3873), + [anon_sym_switch] = ACTIONS(3887), + [anon_sym_when] = ACTIONS(3873), + [sym_discard] = ACTIONS(4187), + [anon_sym_DOT_DOT] = ACTIONS(3885), + [anon_sym_and] = ACTIONS(3887), + [anon_sym_or] = ACTIONS(3887), + [anon_sym_AMP_AMP] = ACTIONS(3885), + [anon_sym_PIPE_PIPE] = ACTIONS(3885), + [anon_sym_QMARK_QMARK] = ACTIONS(3885), + [anon_sym_from] = ACTIONS(3887), + [anon_sym_into] = ACTIONS(3873), + [anon_sym_join] = ACTIONS(3887), + [anon_sym_on] = ACTIONS(3873), + [anon_sym_equals] = ACTIONS(3873), + [anon_sym_let] = ACTIONS(3887), + [anon_sym_orderby] = ACTIONS(3887), + [anon_sym_ascending] = ACTIONS(3873), + [anon_sym_descending] = ACTIONS(3873), + [anon_sym_group] = ACTIONS(3887), + [anon_sym_by] = ACTIONS(3873), + [anon_sym_select] = ACTIONS(3887), + [anon_sym_as] = ACTIONS(3887), + [anon_sym_is] = ACTIONS(3887), + [anon_sym_DASH_GT] = ACTIONS(3885), + [anon_sym_with] = ACTIONS(3887), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -434440,11 +434070,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2568] = { - [sym_property_pattern_clause] = STATE(2795), - [sym__variable_designation] = STATE(3341), - [sym_parenthesized_variable_designation] = STATE(3340), - [sym_identifier] = STATE(3345), - [sym__reserved_identifier] = STATE(3177), + [sym_property_pattern_clause] = STATE(2720), + [sym__variable_designation] = STATE(4158), + [sym_parenthesized_variable_designation] = STATE(4116), + [sym_identifier] = STATE(4152), + [sym__reserved_identifier] = STATE(2900), [sym_preproc_region] = STATE(2568), [sym_preproc_endregion] = STATE(2568), [sym_preproc_line] = STATE(2568), @@ -434454,66 +434084,66 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2568), [sym_preproc_define] = STATE(2568), [sym_preproc_undef] = STATE(2568), - [sym__identifier_token] = ACTIONS(3875), - [anon_sym_alias] = ACTIONS(3877), - [anon_sym_global] = ACTIONS(3877), - [anon_sym_LBRACK] = ACTIONS(3913), - [anon_sym_LPAREN] = ACTIONS(3913), - [anon_sym_LBRACE] = ACTIONS(3881), - [anon_sym_file] = ACTIONS(3877), - [anon_sym_LT] = ACTIONS(3915), - [anon_sym_GT] = ACTIONS(3915), - [anon_sym_where] = ACTIONS(3877), - [anon_sym_QMARK] = ACTIONS(3915), - [anon_sym_notnull] = ACTIONS(3877), - [anon_sym_unmanaged] = ACTIONS(3877), - [anon_sym_BANG] = ACTIONS(3915), - [anon_sym_PLUS_PLUS] = ACTIONS(3913), - [anon_sym_DASH_DASH] = ACTIONS(3913), - [anon_sym_PLUS] = ACTIONS(3915), - [anon_sym_DASH] = ACTIONS(3915), - [anon_sym_STAR] = ACTIONS(3913), - [anon_sym_SLASH] = ACTIONS(3915), - [anon_sym_PERCENT] = ACTIONS(3913), - [anon_sym_CARET] = ACTIONS(3913), - [anon_sym_PIPE] = ACTIONS(3915), - [anon_sym_AMP] = ACTIONS(3915), - [anon_sym_LT_LT] = ACTIONS(3913), - [anon_sym_GT_GT] = ACTIONS(3915), - [anon_sym_GT_GT_GT] = ACTIONS(3913), - [anon_sym_EQ_EQ] = ACTIONS(3913), - [anon_sym_BANG_EQ] = ACTIONS(3913), - [anon_sym_GT_EQ] = ACTIONS(3913), - [anon_sym_LT_EQ] = ACTIONS(3913), - [anon_sym_DOT] = ACTIONS(3915), - [anon_sym_scoped] = ACTIONS(3877), - [anon_sym_var] = ACTIONS(3877), - [anon_sym_yield] = ACTIONS(3877), - [anon_sym_switch] = ACTIONS(3915), - [anon_sym_when] = ACTIONS(3877), - [sym_discard] = ACTIONS(3885), - [anon_sym_DOT_DOT] = ACTIONS(3913), - [anon_sym_and] = ACTIONS(3915), - [anon_sym_or] = ACTIONS(3915), - [anon_sym_AMP_AMP] = ACTIONS(3913), - [anon_sym_PIPE_PIPE] = ACTIONS(3913), - [anon_sym_QMARK_QMARK] = ACTIONS(3913), - [anon_sym_from] = ACTIONS(3877), - [anon_sym_into] = ACTIONS(3915), - [anon_sym_join] = ACTIONS(3877), - [anon_sym_on] = ACTIONS(3915), - [anon_sym_equals] = ACTIONS(3877), - [anon_sym_let] = ACTIONS(3877), - [anon_sym_orderby] = ACTIONS(3877), - [anon_sym_ascending] = ACTIONS(3877), - [anon_sym_descending] = ACTIONS(3877), - [anon_sym_group] = ACTIONS(3877), - [anon_sym_by] = ACTIONS(3877), - [anon_sym_select] = ACTIONS(3877), - [anon_sym_as] = ACTIONS(3915), - [anon_sym_is] = ACTIONS(3915), - [anon_sym_DASH_GT] = ACTIONS(3913), - [anon_sym_with] = ACTIONS(3915), + [sym__identifier_token] = ACTIONS(3814), + [anon_sym_alias] = ACTIONS(3816), + [anon_sym_global] = ACTIONS(3816), + [anon_sym_LBRACK] = ACTIONS(3885), + [anon_sym_LPAREN] = ACTIONS(3885), + [anon_sym_LBRACE] = ACTIONS(3861), + [anon_sym_file] = ACTIONS(3816), + [anon_sym_LT] = ACTIONS(3887), + [anon_sym_GT] = ACTIONS(3887), + [anon_sym_where] = ACTIONS(3887), + [anon_sym_QMARK] = ACTIONS(3887), + [anon_sym_notnull] = ACTIONS(3816), + [anon_sym_unmanaged] = ACTIONS(3816), + [anon_sym_BANG] = ACTIONS(3887), + [anon_sym_PLUS_PLUS] = ACTIONS(3885), + [anon_sym_DASH_DASH] = ACTIONS(3885), + [anon_sym_PLUS] = ACTIONS(3887), + [anon_sym_DASH] = ACTIONS(3887), + [anon_sym_STAR] = ACTIONS(3885), + [anon_sym_SLASH] = ACTIONS(3887), + [anon_sym_PERCENT] = ACTIONS(3885), + [anon_sym_CARET] = ACTIONS(3885), + [anon_sym_PIPE] = ACTIONS(3887), + [anon_sym_AMP] = ACTIONS(3887), + [anon_sym_LT_LT] = ACTIONS(3885), + [anon_sym_GT_GT] = ACTIONS(3887), + [anon_sym_GT_GT_GT] = ACTIONS(3885), + [anon_sym_EQ_EQ] = ACTIONS(3885), + [anon_sym_BANG_EQ] = ACTIONS(3885), + [anon_sym_GT_EQ] = ACTIONS(3885), + [anon_sym_LT_EQ] = ACTIONS(3885), + [anon_sym_DOT] = ACTIONS(3887), + [anon_sym_scoped] = ACTIONS(3816), + [anon_sym_var] = ACTIONS(3816), + [anon_sym_yield] = ACTIONS(3816), + [anon_sym_switch] = ACTIONS(3887), + [anon_sym_when] = ACTIONS(3816), + [sym_discard] = ACTIONS(4187), + [anon_sym_DOT_DOT] = ACTIONS(3885), + [anon_sym_and] = ACTIONS(3887), + [anon_sym_or] = ACTIONS(3887), + [anon_sym_AMP_AMP] = ACTIONS(3885), + [anon_sym_PIPE_PIPE] = ACTIONS(3885), + [anon_sym_QMARK_QMARK] = ACTIONS(3885), + [anon_sym_from] = ACTIONS(3887), + [anon_sym_into] = ACTIONS(3887), + [anon_sym_join] = ACTIONS(3887), + [anon_sym_on] = ACTIONS(3816), + [anon_sym_equals] = ACTIONS(3816), + [anon_sym_let] = ACTIONS(3887), + [anon_sym_orderby] = ACTIONS(3887), + [anon_sym_ascending] = ACTIONS(3816), + [anon_sym_descending] = ACTIONS(3816), + [anon_sym_group] = ACTIONS(3887), + [anon_sym_by] = ACTIONS(3816), + [anon_sym_select] = ACTIONS(3887), + [anon_sym_as] = ACTIONS(3887), + [anon_sym_is] = ACTIONS(3887), + [anon_sym_DASH_GT] = ACTIONS(3885), + [anon_sym_with] = ACTIONS(3887), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -434526,7 +434156,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2569] = { - [sym_type_argument_list] = STATE(2636), [sym_preproc_region] = STATE(2569), [sym_preproc_endregion] = STATE(2569), [sym_preproc_line] = STATE(2569), @@ -434536,70 +434165,71 @@ 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), - [anon_sym_SEMI] = ACTIONS(3662), - [anon_sym_EQ] = ACTIONS(3660), - [anon_sym_LBRACK] = ACTIONS(3662), - [anon_sym_COLON] = ACTIONS(3662), - [anon_sym_COMMA] = ACTIONS(3662), - [anon_sym_RBRACK] = ACTIONS(3662), - [anon_sym_LPAREN] = ACTIONS(3662), - [anon_sym_RPAREN] = ACTIONS(3662), - [anon_sym_RBRACE] = ACTIONS(3662), - [anon_sym_LT] = ACTIONS(4247), - [anon_sym_GT] = ACTIONS(3660), - [anon_sym_in] = ACTIONS(3660), - [anon_sym_QMARK] = ACTIONS(3660), - [anon_sym_BANG] = ACTIONS(3660), - [anon_sym_PLUS_PLUS] = ACTIONS(3662), - [anon_sym_DASH_DASH] = ACTIONS(3662), - [anon_sym_PLUS] = ACTIONS(3660), - [anon_sym_DASH] = ACTIONS(3660), - [anon_sym_STAR] = ACTIONS(3660), - [anon_sym_SLASH] = ACTIONS(3660), - [anon_sym_PERCENT] = ACTIONS(3660), - [anon_sym_CARET] = ACTIONS(3660), - [anon_sym_PIPE] = ACTIONS(3660), - [anon_sym_AMP] = ACTIONS(3660), - [anon_sym_LT_LT] = ACTIONS(3660), - [anon_sym_GT_GT] = ACTIONS(3660), - [anon_sym_GT_GT_GT] = ACTIONS(3660), - [anon_sym_EQ_EQ] = ACTIONS(3662), - [anon_sym_BANG_EQ] = ACTIONS(3662), - [anon_sym_GT_EQ] = ACTIONS(3662), - [anon_sym_LT_EQ] = ACTIONS(3662), - [anon_sym_DOT] = ACTIONS(3660), - [anon_sym_EQ_GT] = ACTIONS(3662), - [anon_sym_switch] = ACTIONS(3662), - [anon_sym_when] = ACTIONS(3662), - [anon_sym_DOT_DOT] = ACTIONS(3662), - [anon_sym_and] = ACTIONS(3662), - [anon_sym_or] = ACTIONS(3662), - [anon_sym_PLUS_EQ] = ACTIONS(3662), - [anon_sym_DASH_EQ] = ACTIONS(3662), - [anon_sym_STAR_EQ] = ACTIONS(3662), - [anon_sym_SLASH_EQ] = ACTIONS(3662), - [anon_sym_PERCENT_EQ] = ACTIONS(3662), - [anon_sym_AMP_EQ] = ACTIONS(3662), - [anon_sym_CARET_EQ] = ACTIONS(3662), - [anon_sym_PIPE_EQ] = ACTIONS(3662), - [anon_sym_LT_LT_EQ] = ACTIONS(3662), - [anon_sym_GT_GT_EQ] = ACTIONS(3662), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3662), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3662), - [anon_sym_AMP_AMP] = ACTIONS(3662), - [anon_sym_PIPE_PIPE] = ACTIONS(3662), - [anon_sym_QMARK_QMARK] = ACTIONS(3660), - [anon_sym_into] = ACTIONS(3662), - [anon_sym_on] = ACTIONS(3662), - [anon_sym_equals] = ACTIONS(3662), - [anon_sym_by] = ACTIONS(3662), - [anon_sym_as] = ACTIONS(3662), - [anon_sym_is] = ACTIONS(3662), - [anon_sym_DASH_GT] = ACTIONS(3662), - [anon_sym_with] = ACTIONS(3662), - [aux_sym_preproc_if_token3] = ACTIONS(3662), - [aux_sym_preproc_else_token1] = ACTIONS(3662), - [aux_sym_preproc_elif_token1] = ACTIONS(3662), + [sym__identifier_token] = ACTIONS(4108), + [anon_sym_alias] = ACTIONS(4108), + [anon_sym_global] = ACTIONS(4108), + [anon_sym_LBRACK] = ACTIONS(4226), + [anon_sym_COLON] = ACTIONS(4226), + [anon_sym_COMMA] = ACTIONS(4110), + [anon_sym_RBRACK] = ACTIONS(4110), + [anon_sym_LPAREN] = ACTIONS(4110), + [anon_sym_RPAREN] = ACTIONS(4110), + [anon_sym_RBRACE] = ACTIONS(4110), + [anon_sym_file] = ACTIONS(4108), + [anon_sym_LT] = ACTIONS(4228), + [anon_sym_GT] = ACTIONS(4228), + [anon_sym_where] = ACTIONS(4108), + [anon_sym_QMARK] = ACTIONS(4228), + [anon_sym_notnull] = ACTIONS(4108), + [anon_sym_unmanaged] = ACTIONS(4108), + [anon_sym_BANG] = ACTIONS(4228), + [anon_sym_PLUS_PLUS] = ACTIONS(4226), + [anon_sym_DASH_DASH] = ACTIONS(4226), + [anon_sym_PLUS] = ACTIONS(4228), + [anon_sym_DASH] = ACTIONS(4228), + [anon_sym_STAR] = ACTIONS(4226), + [anon_sym_SLASH] = ACTIONS(4228), + [anon_sym_PERCENT] = ACTIONS(4226), + [anon_sym_CARET] = ACTIONS(4226), + [anon_sym_PIPE] = ACTIONS(4228), + [anon_sym_AMP] = ACTIONS(4228), + [anon_sym_LT_LT] = ACTIONS(4226), + [anon_sym_GT_GT] = ACTIONS(4228), + [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(4228), + [anon_sym_scoped] = ACTIONS(4108), + [anon_sym_EQ_GT] = ACTIONS(4110), + [anon_sym_var] = ACTIONS(4108), + [anon_sym_yield] = ACTIONS(4108), + [anon_sym_switch] = ACTIONS(4228), + [anon_sym_when] = ACTIONS(4108), + [sym_discard] = ACTIONS(4108), + [anon_sym_DOT_DOT] = ACTIONS(4226), + [anon_sym_and] = ACTIONS(4108), + [anon_sym_or] = ACTIONS(4108), + [anon_sym_AMP_AMP] = ACTIONS(4226), + [anon_sym_PIPE_PIPE] = ACTIONS(4226), + [anon_sym_QMARK_QMARK] = ACTIONS(4226), + [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(4228), + [anon_sym_is] = ACTIONS(4228), + [anon_sym_DASH_GT] = ACTIONS(4226), + [anon_sym_with] = ACTIONS(4228), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -434612,10 +434242,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2570] = { - [sym__variable_designation] = STATE(3507), - [sym_parenthesized_variable_designation] = STATE(3463), - [sym_identifier] = STATE(3479), - [sym__reserved_identifier] = STATE(3177), [sym_preproc_region] = STATE(2570), [sym_preproc_endregion] = STATE(2570), [sym_preproc_line] = STATE(2570), @@ -434625,67 +434251,71 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2570), [sym_preproc_define] = STATE(2570), [sym_preproc_undef] = STATE(2570), - [sym__identifier_token] = ACTIONS(3875), - [anon_sym_alias] = ACTIONS(3877), - [anon_sym_global] = ACTIONS(3877), - [anon_sym_LBRACK] = ACTIONS(3905), - [anon_sym_COLON] = ACTIONS(3905), - [anon_sym_LPAREN] = ACTIONS(3905), - [anon_sym_file] = ACTIONS(3877), - [anon_sym_LT] = ACTIONS(3907), - [anon_sym_GT] = ACTIONS(3907), - [anon_sym_where] = ACTIONS(3877), - [anon_sym_QMARK] = ACTIONS(3907), - [anon_sym_notnull] = ACTIONS(3877), - [anon_sym_unmanaged] = ACTIONS(3877), - [anon_sym_BANG] = ACTIONS(3907), - [anon_sym_PLUS_PLUS] = ACTIONS(3905), - [anon_sym_DASH_DASH] = ACTIONS(3905), - [anon_sym_PLUS] = ACTIONS(3907), - [anon_sym_DASH] = ACTIONS(3907), - [anon_sym_STAR] = ACTIONS(3905), - [anon_sym_SLASH] = ACTIONS(3907), - [anon_sym_PERCENT] = ACTIONS(3905), - [anon_sym_CARET] = ACTIONS(3905), - [anon_sym_PIPE] = ACTIONS(3907), - [anon_sym_AMP] = ACTIONS(3907), - [anon_sym_LT_LT] = ACTIONS(3905), - [anon_sym_GT_GT] = ACTIONS(3907), - [anon_sym_GT_GT_GT] = ACTIONS(3905), - [anon_sym_EQ_EQ] = ACTIONS(3905), - [anon_sym_BANG_EQ] = ACTIONS(3905), - [anon_sym_GT_EQ] = ACTIONS(3905), - [anon_sym_LT_EQ] = ACTIONS(3905), - [anon_sym_DOT] = ACTIONS(3907), - [anon_sym_scoped] = ACTIONS(3877), - [anon_sym_EQ_GT] = ACTIONS(3905), - [anon_sym_var] = ACTIONS(3877), - [anon_sym_yield] = ACTIONS(3877), - [anon_sym_switch] = ACTIONS(3907), - [anon_sym_when] = ACTIONS(3907), - [sym_discard] = ACTIONS(3897), - [anon_sym_DOT_DOT] = ACTIONS(3905), - [anon_sym_and] = ACTIONS(3907), - [anon_sym_or] = ACTIONS(3907), - [anon_sym_AMP_AMP] = ACTIONS(3905), - [anon_sym_PIPE_PIPE] = ACTIONS(3905), - [anon_sym_QMARK_QMARK] = ACTIONS(3905), - [anon_sym_from] = ACTIONS(3877), - [anon_sym_into] = ACTIONS(3877), - [anon_sym_join] = ACTIONS(3877), - [anon_sym_on] = ACTIONS(3877), - [anon_sym_equals] = ACTIONS(3877), - [anon_sym_let] = ACTIONS(3877), - [anon_sym_orderby] = ACTIONS(3877), - [anon_sym_ascending] = ACTIONS(3877), - [anon_sym_descending] = ACTIONS(3877), - [anon_sym_group] = ACTIONS(3877), - [anon_sym_by] = ACTIONS(3877), - [anon_sym_select] = ACTIONS(3877), - [anon_sym_as] = ACTIONS(3907), - [anon_sym_is] = ACTIONS(3907), - [anon_sym_DASH_GT] = ACTIONS(3905), - [anon_sym_with] = ACTIONS(3907), + [sym__identifier_token] = ACTIONS(3149), + [anon_sym_extern] = ACTIONS(3149), + [anon_sym_alias] = ACTIONS(3149), + [anon_sym_global] = ACTIONS(3149), + [anon_sym_using] = ACTIONS(3149), + [anon_sym_unsafe] = ACTIONS(3149), + [anon_sym_static] = ACTIONS(3149), + [anon_sym_LBRACK] = ACTIONS(3151), + [anon_sym_LPAREN] = ACTIONS(3151), + [anon_sym_event] = ACTIONS(3149), + [anon_sym_namespace] = ACTIONS(3149), + [anon_sym_class] = ACTIONS(3149), + [anon_sym_ref] = ACTIONS(3149), + [anon_sym_struct] = ACTIONS(3149), + [anon_sym_enum] = ACTIONS(3149), + [anon_sym_RBRACE] = ACTIONS(3151), + [anon_sym_interface] = ACTIONS(3149), + [anon_sym_delegate] = ACTIONS(3149), + [anon_sym_record] = ACTIONS(3149), + [anon_sym_abstract] = ACTIONS(3149), + [anon_sym_async] = ACTIONS(3149), + [anon_sym_const] = ACTIONS(3149), + [anon_sym_file] = ACTIONS(3149), + [anon_sym_fixed] = ACTIONS(3149), + [anon_sym_internal] = ACTIONS(3149), + [anon_sym_new] = ACTIONS(3149), + [anon_sym_override] = ACTIONS(3149), + [anon_sym_partial] = ACTIONS(3149), + [anon_sym_private] = ACTIONS(3149), + [anon_sym_protected] = ACTIONS(3149), + [anon_sym_public] = ACTIONS(3149), + [anon_sym_readonly] = ACTIONS(3149), + [anon_sym_required] = ACTIONS(3149), + [anon_sym_sealed] = ACTIONS(3149), + [anon_sym_virtual] = ACTIONS(3149), + [anon_sym_volatile] = ACTIONS(3149), + [anon_sym_where] = ACTIONS(3149), + [anon_sym_notnull] = ACTIONS(3149), + [anon_sym_unmanaged] = ACTIONS(3149), + [anon_sym_TILDE] = ACTIONS(3151), + [anon_sym_implicit] = ACTIONS(3149), + [anon_sym_explicit] = ACTIONS(3149), + [anon_sym_scoped] = ACTIONS(3149), + [anon_sym_var] = ACTIONS(3149), + [sym_predefined_type] = ACTIONS(3149), + [anon_sym_while] = ACTIONS(3149), + [anon_sym_yield] = ACTIONS(3149), + [anon_sym_when] = ACTIONS(3149), + [anon_sym_else] = ACTIONS(3149), + [anon_sym_from] = ACTIONS(3149), + [anon_sym_into] = ACTIONS(3149), + [anon_sym_join] = ACTIONS(3149), + [anon_sym_on] = ACTIONS(3149), + [anon_sym_equals] = ACTIONS(3149), + [anon_sym_let] = ACTIONS(3149), + [anon_sym_orderby] = ACTIONS(3149), + [anon_sym_ascending] = ACTIONS(3149), + [anon_sym_descending] = ACTIONS(3149), + [anon_sym_group] = ACTIONS(3149), + [anon_sym_by] = ACTIONS(3149), + [anon_sym_select] = ACTIONS(3149), + [aux_sym_preproc_if_token1] = ACTIONS(3151), + [aux_sym_preproc_if_token3] = ACTIONS(3151), + [aux_sym_preproc_else_token1] = ACTIONS(3151), + [aux_sym_preproc_elif_token1] = ACTIONS(3151), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -434698,6 +434328,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2571] = { + [sym_property_pattern_clause] = STATE(2732), + [sym__variable_designation] = STATE(3447), + [sym_parenthesized_variable_designation] = STATE(3352), + [sym_identifier] = STATE(3355), + [sym__reserved_identifier] = STATE(3199), [sym_preproc_region] = STATE(2571), [sym_preproc_endregion] = STATE(2571), [sym_preproc_line] = STATE(2571), @@ -434707,71 +434342,66 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2571), [sym_preproc_define] = STATE(2571), [sym_preproc_undef] = STATE(2571), - [anon_sym_SEMI] = ACTIONS(3652), - [anon_sym_EQ] = ACTIONS(3650), - [anon_sym_LBRACK] = ACTIONS(3652), - [anon_sym_COLON] = ACTIONS(3652), - [anon_sym_COMMA] = ACTIONS(3652), - [anon_sym_RBRACK] = ACTIONS(3652), - [anon_sym_LPAREN] = ACTIONS(3652), - [anon_sym_RPAREN] = ACTIONS(3652), - [anon_sym_LBRACE] = ACTIONS(3652), - [anon_sym_RBRACE] = ACTIONS(3652), - [anon_sym_LT] = ACTIONS(3650), - [anon_sym_GT] = ACTIONS(3650), - [anon_sym_in] = ACTIONS(3652), - [anon_sym_where] = ACTIONS(3652), - [anon_sym_QMARK] = ACTIONS(3650), - [anon_sym_BANG] = ACTIONS(3650), - [anon_sym_PLUS_PLUS] = ACTIONS(3652), - [anon_sym_DASH_DASH] = ACTIONS(3652), - [anon_sym_PLUS] = ACTIONS(3650), - [anon_sym_DASH] = ACTIONS(3650), - [anon_sym_STAR] = ACTIONS(3650), - [anon_sym_SLASH] = ACTIONS(3650), - [anon_sym_PERCENT] = ACTIONS(3650), - [anon_sym_CARET] = ACTIONS(3650), - [anon_sym_PIPE] = ACTIONS(3650), - [anon_sym_AMP] = ACTIONS(3650), - [anon_sym_LT_LT] = ACTIONS(3650), - [anon_sym_GT_GT] = ACTIONS(3650), - [anon_sym_GT_GT_GT] = ACTIONS(3650), - [anon_sym_EQ_EQ] = ACTIONS(3652), - [anon_sym_BANG_EQ] = ACTIONS(3652), - [anon_sym_GT_EQ] = ACTIONS(3652), - [anon_sym_LT_EQ] = ACTIONS(3652), - [anon_sym_DOT] = ACTIONS(3650), - [anon_sym_EQ_GT] = ACTIONS(3652), - [anon_sym_switch] = ACTIONS(3652), - [anon_sym_when] = ACTIONS(3652), - [anon_sym_DOT_DOT] = ACTIONS(3652), - [anon_sym_and] = ACTIONS(3652), - [anon_sym_or] = ACTIONS(3652), - [anon_sym_PLUS_EQ] = ACTIONS(3652), - [anon_sym_DASH_EQ] = ACTIONS(3652), - [anon_sym_STAR_EQ] = ACTIONS(3652), - [anon_sym_SLASH_EQ] = ACTIONS(3652), - [anon_sym_PERCENT_EQ] = ACTIONS(3652), - [anon_sym_AMP_EQ] = ACTIONS(3652), - [anon_sym_CARET_EQ] = ACTIONS(3652), - [anon_sym_PIPE_EQ] = ACTIONS(3652), - [anon_sym_LT_LT_EQ] = ACTIONS(3652), - [anon_sym_GT_GT_EQ] = ACTIONS(3652), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3652), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3652), - [anon_sym_AMP_AMP] = ACTIONS(3652), - [anon_sym_PIPE_PIPE] = ACTIONS(3652), - [anon_sym_QMARK_QMARK] = ACTIONS(3650), - [anon_sym_on] = ACTIONS(3652), - [anon_sym_equals] = ACTIONS(3652), - [anon_sym_by] = ACTIONS(3652), - [anon_sym_as] = ACTIONS(3652), - [anon_sym_is] = ACTIONS(3652), - [anon_sym_DASH_GT] = ACTIONS(3652), - [anon_sym_with] = ACTIONS(3652), - [aux_sym_preproc_if_token3] = ACTIONS(3652), - [aux_sym_preproc_else_token1] = ACTIONS(3652), - [aux_sym_preproc_elif_token1] = ACTIONS(3652), + [sym__identifier_token] = ACTIONS(3855), + [anon_sym_alias] = ACTIONS(3857), + [anon_sym_global] = ACTIONS(3857), + [anon_sym_LBRACK] = ACTIONS(3893), + [anon_sym_LPAREN] = ACTIONS(3893), + [anon_sym_LBRACE] = ACTIONS(3861), + [anon_sym_file] = ACTIONS(3857), + [anon_sym_LT] = ACTIONS(3895), + [anon_sym_GT] = ACTIONS(3895), + [anon_sym_where] = ACTIONS(3857), + [anon_sym_QMARK] = ACTIONS(3895), + [anon_sym_notnull] = ACTIONS(3857), + [anon_sym_unmanaged] = ACTIONS(3857), + [anon_sym_BANG] = ACTIONS(3895), + [anon_sym_PLUS_PLUS] = ACTIONS(3893), + [anon_sym_DASH_DASH] = ACTIONS(3893), + [anon_sym_PLUS] = ACTIONS(3895), + [anon_sym_DASH] = ACTIONS(3895), + [anon_sym_STAR] = ACTIONS(3893), + [anon_sym_SLASH] = ACTIONS(3895), + [anon_sym_PERCENT] = ACTIONS(3893), + [anon_sym_CARET] = ACTIONS(3893), + [anon_sym_PIPE] = ACTIONS(3895), + [anon_sym_AMP] = ACTIONS(3895), + [anon_sym_LT_LT] = ACTIONS(3893), + [anon_sym_GT_GT] = ACTIONS(3895), + [anon_sym_GT_GT_GT] = ACTIONS(3893), + [anon_sym_EQ_EQ] = ACTIONS(3893), + [anon_sym_BANG_EQ] = ACTIONS(3893), + [anon_sym_GT_EQ] = ACTIONS(3893), + [anon_sym_LT_EQ] = ACTIONS(3893), + [anon_sym_DOT] = ACTIONS(3895), + [anon_sym_scoped] = ACTIONS(3857), + [anon_sym_var] = ACTIONS(3857), + [anon_sym_yield] = ACTIONS(3857), + [anon_sym_switch] = ACTIONS(3895), + [anon_sym_when] = ACTIONS(3857), + [sym_discard] = ACTIONS(3877), + [anon_sym_DOT_DOT] = ACTIONS(3893), + [anon_sym_and] = ACTIONS(3895), + [anon_sym_or] = ACTIONS(3895), + [anon_sym_AMP_AMP] = ACTIONS(3893), + [anon_sym_PIPE_PIPE] = ACTIONS(3893), + [anon_sym_QMARK_QMARK] = ACTIONS(3893), + [anon_sym_from] = ACTIONS(3857), + [anon_sym_into] = ACTIONS(3857), + [anon_sym_join] = ACTIONS(3857), + [anon_sym_on] = ACTIONS(3857), + [anon_sym_equals] = ACTIONS(3895), + [anon_sym_let] = ACTIONS(3857), + [anon_sym_orderby] = ACTIONS(3857), + [anon_sym_ascending] = ACTIONS(3857), + [anon_sym_descending] = ACTIONS(3857), + [anon_sym_group] = ACTIONS(3857), + [anon_sym_by] = ACTIONS(3857), + [anon_sym_select] = ACTIONS(3857), + [anon_sym_as] = ACTIONS(3895), + [anon_sym_is] = ACTIONS(3895), + [anon_sym_DASH_GT] = ACTIONS(3893), + [anon_sym_with] = ACTIONS(3895), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -434784,11 +434414,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2572] = { - [sym_property_pattern_clause] = STATE(2698), - [sym__variable_designation] = STATE(3496), - [sym_parenthesized_variable_designation] = STATE(3463), - [sym_identifier] = STATE(3479), - [sym__reserved_identifier] = STATE(3177), [sym_preproc_region] = STATE(2572), [sym_preproc_endregion] = STATE(2572), [sym_preproc_line] = STATE(2572), @@ -434798,66 +434423,71 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2572), [sym_preproc_define] = STATE(2572), [sym_preproc_undef] = STATE(2572), - [sym__identifier_token] = ACTIONS(3875), - [anon_sym_alias] = ACTIONS(3877), - [anon_sym_global] = ACTIONS(3877), - [anon_sym_LBRACK] = ACTIONS(3913), - [anon_sym_LPAREN] = ACTIONS(3913), - [anon_sym_LBRACE] = ACTIONS(3881), - [anon_sym_file] = ACTIONS(3877), - [anon_sym_LT] = ACTIONS(3915), - [anon_sym_GT] = ACTIONS(3915), - [anon_sym_where] = ACTIONS(3877), - [anon_sym_QMARK] = ACTIONS(3915), - [anon_sym_notnull] = ACTIONS(3877), - [anon_sym_unmanaged] = ACTIONS(3877), - [anon_sym_BANG] = ACTIONS(3915), - [anon_sym_PLUS_PLUS] = ACTIONS(3913), - [anon_sym_DASH_DASH] = ACTIONS(3913), - [anon_sym_PLUS] = ACTIONS(3915), - [anon_sym_DASH] = ACTIONS(3915), - [anon_sym_STAR] = ACTIONS(3913), - [anon_sym_SLASH] = ACTIONS(3915), - [anon_sym_PERCENT] = ACTIONS(3913), - [anon_sym_CARET] = ACTIONS(3913), - [anon_sym_PIPE] = ACTIONS(3915), - [anon_sym_AMP] = ACTIONS(3915), - [anon_sym_LT_LT] = ACTIONS(3913), - [anon_sym_GT_GT] = ACTIONS(3915), - [anon_sym_GT_GT_GT] = ACTIONS(3913), - [anon_sym_EQ_EQ] = ACTIONS(3913), - [anon_sym_BANG_EQ] = ACTIONS(3913), - [anon_sym_GT_EQ] = ACTIONS(3913), - [anon_sym_LT_EQ] = ACTIONS(3913), - [anon_sym_DOT] = ACTIONS(3915), - [anon_sym_scoped] = ACTIONS(3877), - [anon_sym_var] = ACTIONS(3877), - [anon_sym_yield] = ACTIONS(3877), - [anon_sym_switch] = ACTIONS(3915), - [anon_sym_when] = ACTIONS(3877), - [sym_discard] = ACTIONS(3897), - [anon_sym_DOT_DOT] = ACTIONS(3913), - [anon_sym_and] = ACTIONS(3915), - [anon_sym_or] = ACTIONS(3915), - [anon_sym_AMP_AMP] = ACTIONS(3913), - [anon_sym_PIPE_PIPE] = ACTIONS(3913), - [anon_sym_QMARK_QMARK] = ACTIONS(3913), - [anon_sym_from] = ACTIONS(3877), - [anon_sym_into] = ACTIONS(3877), - [anon_sym_join] = ACTIONS(3877), - [anon_sym_on] = ACTIONS(3877), - [anon_sym_equals] = ACTIONS(3877), - [anon_sym_let] = ACTIONS(3877), - [anon_sym_orderby] = ACTIONS(3877), - [anon_sym_ascending] = ACTIONS(3877), - [anon_sym_descending] = ACTIONS(3877), - [anon_sym_group] = ACTIONS(3877), - [anon_sym_by] = ACTIONS(3915), - [anon_sym_select] = ACTIONS(3877), - [anon_sym_as] = ACTIONS(3915), - [anon_sym_is] = ACTIONS(3915), - [anon_sym_DASH_GT] = ACTIONS(3913), - [anon_sym_with] = ACTIONS(3915), + [sym__identifier_token] = ACTIONS(3153), + [anon_sym_extern] = ACTIONS(3153), + [anon_sym_alias] = ACTIONS(3153), + [anon_sym_global] = ACTIONS(3153), + [anon_sym_using] = ACTIONS(3153), + [anon_sym_unsafe] = ACTIONS(3153), + [anon_sym_static] = ACTIONS(3153), + [anon_sym_LBRACK] = ACTIONS(3155), + [anon_sym_LPAREN] = ACTIONS(3155), + [anon_sym_event] = ACTIONS(3153), + [anon_sym_namespace] = ACTIONS(3153), + [anon_sym_class] = ACTIONS(3153), + [anon_sym_ref] = ACTIONS(3153), + [anon_sym_struct] = ACTIONS(3153), + [anon_sym_enum] = ACTIONS(3153), + [anon_sym_RBRACE] = ACTIONS(3155), + [anon_sym_interface] = ACTIONS(3153), + [anon_sym_delegate] = ACTIONS(3153), + [anon_sym_record] = ACTIONS(3153), + [anon_sym_abstract] = ACTIONS(3153), + [anon_sym_async] = ACTIONS(3153), + [anon_sym_const] = ACTIONS(3153), + [anon_sym_file] = ACTIONS(3153), + [anon_sym_fixed] = ACTIONS(3153), + [anon_sym_internal] = ACTIONS(3153), + [anon_sym_new] = ACTIONS(3153), + [anon_sym_override] = ACTIONS(3153), + [anon_sym_partial] = ACTIONS(3153), + [anon_sym_private] = ACTIONS(3153), + [anon_sym_protected] = ACTIONS(3153), + [anon_sym_public] = ACTIONS(3153), + [anon_sym_readonly] = ACTIONS(3153), + [anon_sym_required] = ACTIONS(3153), + [anon_sym_sealed] = ACTIONS(3153), + [anon_sym_virtual] = ACTIONS(3153), + [anon_sym_volatile] = ACTIONS(3153), + [anon_sym_where] = ACTIONS(3153), + [anon_sym_notnull] = ACTIONS(3153), + [anon_sym_unmanaged] = ACTIONS(3153), + [anon_sym_TILDE] = ACTIONS(3155), + [anon_sym_implicit] = ACTIONS(3153), + [anon_sym_explicit] = ACTIONS(3153), + [anon_sym_scoped] = ACTIONS(3153), + [anon_sym_var] = ACTIONS(3153), + [sym_predefined_type] = ACTIONS(3153), + [anon_sym_while] = ACTIONS(3153), + [anon_sym_yield] = ACTIONS(3153), + [anon_sym_when] = ACTIONS(3153), + [anon_sym_else] = ACTIONS(3153), + [anon_sym_from] = ACTIONS(3153), + [anon_sym_into] = ACTIONS(3153), + [anon_sym_join] = ACTIONS(3153), + [anon_sym_on] = ACTIONS(3153), + [anon_sym_equals] = ACTIONS(3153), + [anon_sym_let] = ACTIONS(3153), + [anon_sym_orderby] = ACTIONS(3153), + [anon_sym_ascending] = ACTIONS(3153), + [anon_sym_descending] = ACTIONS(3153), + [anon_sym_group] = ACTIONS(3153), + [anon_sym_by] = ACTIONS(3153), + [anon_sym_select] = ACTIONS(3153), + [aux_sym_preproc_if_token1] = ACTIONS(3155), + [aux_sym_preproc_if_token3] = ACTIONS(3155), + [aux_sym_preproc_else_token1] = ACTIONS(3155), + [aux_sym_preproc_elif_token1] = ACTIONS(3155), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -434870,10 +434500,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2573] = { - [sym__variable_designation] = STATE(3318), - [sym_parenthesized_variable_designation] = STATE(3340), - [sym_identifier] = STATE(3345), - [sym__reserved_identifier] = STATE(3177), + [sym_property_pattern_clause] = STATE(2733), + [sym__variable_designation] = STATE(3471), + [sym_parenthesized_variable_designation] = STATE(3352), + [sym_identifier] = STATE(3355), + [sym__reserved_identifier] = STATE(3199), [sym_preproc_region] = STATE(2573), [sym_preproc_endregion] = STATE(2573), [sym_preproc_line] = STATE(2573), @@ -434883,67 +434514,66 @@ 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(3875), - [anon_sym_alias] = ACTIONS(3877), - [anon_sym_global] = ACTIONS(3877), - [anon_sym_LBRACK] = ACTIONS(3961), - [anon_sym_COLON] = ACTIONS(3961), - [anon_sym_LPAREN] = ACTIONS(3961), - [anon_sym_file] = ACTIONS(3877), - [anon_sym_LT] = ACTIONS(3963), - [anon_sym_GT] = ACTIONS(3963), - [anon_sym_where] = ACTIONS(3877), - [anon_sym_QMARK] = ACTIONS(3963), - [anon_sym_notnull] = ACTIONS(3877), - [anon_sym_unmanaged] = ACTIONS(3877), - [anon_sym_BANG] = ACTIONS(3963), - [anon_sym_PLUS_PLUS] = ACTIONS(3961), - [anon_sym_DASH_DASH] = ACTIONS(3961), - [anon_sym_PLUS] = ACTIONS(3963), - [anon_sym_DASH] = ACTIONS(3963), - [anon_sym_STAR] = ACTIONS(3961), - [anon_sym_SLASH] = ACTIONS(3963), - [anon_sym_PERCENT] = ACTIONS(3961), - [anon_sym_CARET] = ACTIONS(3961), - [anon_sym_PIPE] = ACTIONS(3963), - [anon_sym_AMP] = ACTIONS(3963), - [anon_sym_LT_LT] = ACTIONS(3961), - [anon_sym_GT_GT] = ACTIONS(3963), - [anon_sym_GT_GT_GT] = ACTIONS(3961), - [anon_sym_EQ_EQ] = ACTIONS(3961), - [anon_sym_BANG_EQ] = ACTIONS(3961), - [anon_sym_GT_EQ] = ACTIONS(3961), - [anon_sym_LT_EQ] = ACTIONS(3961), - [anon_sym_DOT] = ACTIONS(3963), - [anon_sym_scoped] = ACTIONS(3877), - [anon_sym_EQ_GT] = ACTIONS(3961), - [anon_sym_var] = ACTIONS(3877), - [anon_sym_yield] = ACTIONS(3877), - [anon_sym_switch] = ACTIONS(3963), - [anon_sym_when] = ACTIONS(3963), - [sym_discard] = ACTIONS(3885), - [anon_sym_DOT_DOT] = ACTIONS(3961), - [anon_sym_and] = ACTIONS(3963), - [anon_sym_or] = ACTIONS(3963), - [anon_sym_AMP_AMP] = ACTIONS(3961), - [anon_sym_PIPE_PIPE] = ACTIONS(3961), - [anon_sym_QMARK_QMARK] = ACTIONS(3961), - [anon_sym_from] = ACTIONS(3877), - [anon_sym_into] = ACTIONS(3963), - [anon_sym_join] = ACTIONS(3877), - [anon_sym_on] = ACTIONS(3877), - [anon_sym_equals] = ACTIONS(3877), - [anon_sym_let] = ACTIONS(3877), - [anon_sym_orderby] = ACTIONS(3877), - [anon_sym_ascending] = ACTIONS(3877), - [anon_sym_descending] = ACTIONS(3877), - [anon_sym_group] = ACTIONS(3877), - [anon_sym_by] = ACTIONS(3877), - [anon_sym_select] = ACTIONS(3877), - [anon_sym_as] = ACTIONS(3963), - [anon_sym_is] = ACTIONS(3963), - [anon_sym_DASH_GT] = ACTIONS(3961), - [anon_sym_with] = ACTIONS(3963), + [sym__identifier_token] = ACTIONS(3855), + [anon_sym_alias] = ACTIONS(3857), + [anon_sym_global] = ACTIONS(3857), + [anon_sym_LBRACK] = ACTIONS(3885), + [anon_sym_LPAREN] = ACTIONS(3885), + [anon_sym_LBRACE] = ACTIONS(3861), + [anon_sym_file] = ACTIONS(3857), + [anon_sym_LT] = ACTIONS(3887), + [anon_sym_GT] = ACTIONS(3887), + [anon_sym_where] = ACTIONS(3857), + [anon_sym_QMARK] = ACTIONS(3887), + [anon_sym_notnull] = ACTIONS(3857), + [anon_sym_unmanaged] = ACTIONS(3857), + [anon_sym_BANG] = ACTIONS(3887), + [anon_sym_PLUS_PLUS] = ACTIONS(3885), + [anon_sym_DASH_DASH] = ACTIONS(3885), + [anon_sym_PLUS] = ACTIONS(3887), + [anon_sym_DASH] = ACTIONS(3887), + [anon_sym_STAR] = ACTIONS(3885), + [anon_sym_SLASH] = ACTIONS(3887), + [anon_sym_PERCENT] = ACTIONS(3885), + [anon_sym_CARET] = ACTIONS(3885), + [anon_sym_PIPE] = ACTIONS(3887), + [anon_sym_AMP] = ACTIONS(3887), + [anon_sym_LT_LT] = ACTIONS(3885), + [anon_sym_GT_GT] = ACTIONS(3887), + [anon_sym_GT_GT_GT] = ACTIONS(3885), + [anon_sym_EQ_EQ] = ACTIONS(3885), + [anon_sym_BANG_EQ] = ACTIONS(3885), + [anon_sym_GT_EQ] = ACTIONS(3885), + [anon_sym_LT_EQ] = ACTIONS(3885), + [anon_sym_DOT] = ACTIONS(3887), + [anon_sym_scoped] = ACTIONS(3857), + [anon_sym_var] = ACTIONS(3857), + [anon_sym_yield] = ACTIONS(3857), + [anon_sym_switch] = ACTIONS(3887), + [anon_sym_when] = ACTIONS(3857), + [sym_discard] = ACTIONS(3877), + [anon_sym_DOT_DOT] = ACTIONS(3885), + [anon_sym_and] = ACTIONS(3887), + [anon_sym_or] = ACTIONS(3887), + [anon_sym_AMP_AMP] = ACTIONS(3885), + [anon_sym_PIPE_PIPE] = ACTIONS(3885), + [anon_sym_QMARK_QMARK] = ACTIONS(3885), + [anon_sym_from] = ACTIONS(3857), + [anon_sym_into] = ACTIONS(3857), + [anon_sym_join] = ACTIONS(3857), + [anon_sym_on] = ACTIONS(3857), + [anon_sym_equals] = ACTIONS(3887), + [anon_sym_let] = ACTIONS(3857), + [anon_sym_orderby] = ACTIONS(3857), + [anon_sym_ascending] = ACTIONS(3857), + [anon_sym_descending] = ACTIONS(3857), + [anon_sym_group] = ACTIONS(3857), + [anon_sym_by] = ACTIONS(3857), + [anon_sym_select] = ACTIONS(3857), + [anon_sym_as] = ACTIONS(3887), + [anon_sym_is] = ACTIONS(3887), + [anon_sym_DASH_GT] = ACTIONS(3885), + [anon_sym_with] = ACTIONS(3887), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -434956,11 +434586,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2574] = { - [sym_property_pattern_clause] = STATE(2754), - [sym__variable_designation] = STATE(3495), - [sym_parenthesized_variable_designation] = STATE(3463), - [sym_identifier] = STATE(3479), - [sym__reserved_identifier] = STATE(3177), + [sym__variable_designation] = STATE(3256), + [sym_parenthesized_variable_designation] = STATE(3344), + [sym_identifier] = STATE(3346), + [sym__reserved_identifier] = STATE(3199), [sym_preproc_region] = STATE(2574), [sym_preproc_endregion] = STATE(2574), [sym_preproc_line] = STATE(2574), @@ -434970,66 +434599,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(3875), - [anon_sym_alias] = ACTIONS(3877), - [anon_sym_global] = ACTIONS(3877), - [anon_sym_LBRACK] = ACTIONS(3905), - [anon_sym_LPAREN] = ACTIONS(3905), - [anon_sym_LBRACE] = ACTIONS(3881), - [anon_sym_file] = ACTIONS(3877), - [anon_sym_LT] = ACTIONS(3907), - [anon_sym_GT] = ACTIONS(3907), - [anon_sym_where] = ACTIONS(3877), - [anon_sym_QMARK] = ACTIONS(3907), - [anon_sym_notnull] = ACTIONS(3877), - [anon_sym_unmanaged] = ACTIONS(3877), - [anon_sym_BANG] = ACTIONS(3907), - [anon_sym_PLUS_PLUS] = ACTIONS(3905), - [anon_sym_DASH_DASH] = ACTIONS(3905), - [anon_sym_PLUS] = ACTIONS(3907), - [anon_sym_DASH] = ACTIONS(3907), - [anon_sym_STAR] = ACTIONS(3905), - [anon_sym_SLASH] = ACTIONS(3907), - [anon_sym_PERCENT] = ACTIONS(3905), - [anon_sym_CARET] = ACTIONS(3905), - [anon_sym_PIPE] = ACTIONS(3907), - [anon_sym_AMP] = ACTIONS(3907), - [anon_sym_LT_LT] = ACTIONS(3905), - [anon_sym_GT_GT] = ACTIONS(3907), - [anon_sym_GT_GT_GT] = ACTIONS(3905), - [anon_sym_EQ_EQ] = ACTIONS(3905), - [anon_sym_BANG_EQ] = ACTIONS(3905), - [anon_sym_GT_EQ] = ACTIONS(3905), - [anon_sym_LT_EQ] = ACTIONS(3905), - [anon_sym_DOT] = ACTIONS(3907), - [anon_sym_scoped] = ACTIONS(3877), - [anon_sym_var] = ACTIONS(3877), - [anon_sym_yield] = ACTIONS(3877), - [anon_sym_switch] = ACTIONS(3907), - [anon_sym_when] = ACTIONS(3877), - [sym_discard] = ACTIONS(3897), - [anon_sym_DOT_DOT] = ACTIONS(3905), - [anon_sym_and] = ACTIONS(3907), - [anon_sym_or] = ACTIONS(3907), - [anon_sym_AMP_AMP] = ACTIONS(3905), - [anon_sym_PIPE_PIPE] = ACTIONS(3905), - [anon_sym_QMARK_QMARK] = ACTIONS(3905), - [anon_sym_from] = ACTIONS(3877), - [anon_sym_into] = ACTIONS(3877), - [anon_sym_join] = ACTIONS(3877), - [anon_sym_on] = ACTIONS(3907), - [anon_sym_equals] = ACTIONS(3877), - [anon_sym_let] = ACTIONS(3877), - [anon_sym_orderby] = ACTIONS(3877), - [anon_sym_ascending] = ACTIONS(3877), - [anon_sym_descending] = ACTIONS(3877), - [anon_sym_group] = ACTIONS(3877), - [anon_sym_by] = ACTIONS(3877), - [anon_sym_select] = ACTIONS(3877), - [anon_sym_as] = ACTIONS(3907), - [anon_sym_is] = ACTIONS(3907), - [anon_sym_DASH_GT] = ACTIONS(3905), - [anon_sym_with] = ACTIONS(3907), + [sym__identifier_token] = ACTIONS(3855), + [anon_sym_alias] = ACTIONS(3857), + [anon_sym_global] = ACTIONS(3857), + [anon_sym_LBRACK] = ACTIONS(3885), + [anon_sym_COLON] = ACTIONS(3885), + [anon_sym_LPAREN] = ACTIONS(3885), + [anon_sym_file] = ACTIONS(3857), + [anon_sym_LT] = ACTIONS(3887), + [anon_sym_GT] = ACTIONS(3887), + [anon_sym_where] = ACTIONS(3857), + [anon_sym_QMARK] = ACTIONS(3887), + [anon_sym_notnull] = ACTIONS(3857), + [anon_sym_unmanaged] = ACTIONS(3857), + [anon_sym_BANG] = ACTIONS(3887), + [anon_sym_PLUS_PLUS] = ACTIONS(3885), + [anon_sym_DASH_DASH] = ACTIONS(3885), + [anon_sym_PLUS] = ACTIONS(3887), + [anon_sym_DASH] = ACTIONS(3887), + [anon_sym_STAR] = ACTIONS(3885), + [anon_sym_SLASH] = ACTIONS(3887), + [anon_sym_PERCENT] = ACTIONS(3885), + [anon_sym_CARET] = ACTIONS(3885), + [anon_sym_PIPE] = ACTIONS(3887), + [anon_sym_AMP] = ACTIONS(3887), + [anon_sym_LT_LT] = ACTIONS(3885), + [anon_sym_GT_GT] = ACTIONS(3887), + [anon_sym_GT_GT_GT] = ACTIONS(3885), + [anon_sym_EQ_EQ] = ACTIONS(3885), + [anon_sym_BANG_EQ] = ACTIONS(3885), + [anon_sym_GT_EQ] = ACTIONS(3885), + [anon_sym_LT_EQ] = ACTIONS(3885), + [anon_sym_DOT] = ACTIONS(3887), + [anon_sym_scoped] = ACTIONS(3857), + [anon_sym_EQ_GT] = ACTIONS(3885), + [anon_sym_var] = ACTIONS(3857), + [anon_sym_yield] = ACTIONS(3857), + [anon_sym_switch] = ACTIONS(3887), + [anon_sym_when] = ACTIONS(3887), + [sym_discard] = ACTIONS(3865), + [anon_sym_DOT_DOT] = ACTIONS(3885), + [anon_sym_and] = ACTIONS(3887), + [anon_sym_or] = ACTIONS(3887), + [anon_sym_AMP_AMP] = ACTIONS(3885), + [anon_sym_PIPE_PIPE] = ACTIONS(3885), + [anon_sym_QMARK_QMARK] = ACTIONS(3885), + [anon_sym_from] = ACTIONS(3857), + [anon_sym_into] = ACTIONS(3887), + [anon_sym_join] = ACTIONS(3857), + [anon_sym_on] = ACTIONS(3857), + [anon_sym_equals] = ACTIONS(3857), + [anon_sym_let] = ACTIONS(3857), + [anon_sym_orderby] = ACTIONS(3857), + [anon_sym_ascending] = ACTIONS(3857), + [anon_sym_descending] = ACTIONS(3857), + [anon_sym_group] = ACTIONS(3857), + [anon_sym_by] = ACTIONS(3857), + [anon_sym_select] = ACTIONS(3857), + [anon_sym_as] = ACTIONS(3887), + [anon_sym_is] = ACTIONS(3887), + [anon_sym_DASH_GT] = ACTIONS(3885), + [anon_sym_with] = ACTIONS(3887), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -435042,11 +434672,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2575] = { - [sym_property_pattern_clause] = STATE(2716), - [sym__variable_designation] = STATE(4141), - [sym_parenthesized_variable_designation] = STATE(4173), - [sym_identifier] = STATE(4177), - [sym__reserved_identifier] = STATE(2945), + [sym_property_pattern_clause] = STATE(2786), + [sym__variable_designation] = STATE(3224), + [sym_parenthesized_variable_designation] = STATE(3344), + [sym_identifier] = STATE(3346), + [sym__reserved_identifier] = STATE(3199), [sym_preproc_region] = STATE(2575), [sym_preproc_endregion] = STATE(2575), [sym_preproc_line] = STATE(2575), @@ -435056,66 +434686,66 @@ 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(3887), - [anon_sym_alias] = ACTIONS(3889), - [anon_sym_global] = ACTIONS(3889), - [anon_sym_LBRACK] = ACTIONS(3913), - [anon_sym_LPAREN] = ACTIONS(3913), - [anon_sym_LBRACE] = ACTIONS(3881), - [anon_sym_file] = ACTIONS(3889), - [anon_sym_LT] = ACTIONS(3915), - [anon_sym_GT] = ACTIONS(3915), - [anon_sym_where] = ACTIONS(3915), - [anon_sym_QMARK] = ACTIONS(3915), - [anon_sym_notnull] = ACTIONS(3889), - [anon_sym_unmanaged] = ACTIONS(3889), - [anon_sym_BANG] = ACTIONS(3915), - [anon_sym_PLUS_PLUS] = ACTIONS(3913), - [anon_sym_DASH_DASH] = ACTIONS(3913), - [anon_sym_PLUS] = ACTIONS(3915), - [anon_sym_DASH] = ACTIONS(3915), - [anon_sym_STAR] = ACTIONS(3913), - [anon_sym_SLASH] = ACTIONS(3915), - [anon_sym_PERCENT] = ACTIONS(3913), - [anon_sym_CARET] = ACTIONS(3913), - [anon_sym_PIPE] = ACTIONS(3915), - [anon_sym_AMP] = ACTIONS(3915), - [anon_sym_LT_LT] = ACTIONS(3913), - [anon_sym_GT_GT] = ACTIONS(3915), - [anon_sym_GT_GT_GT] = ACTIONS(3913), - [anon_sym_EQ_EQ] = ACTIONS(3913), - [anon_sym_BANG_EQ] = ACTIONS(3913), - [anon_sym_GT_EQ] = ACTIONS(3913), - [anon_sym_LT_EQ] = ACTIONS(3913), - [anon_sym_DOT] = ACTIONS(3915), - [anon_sym_scoped] = ACTIONS(3889), - [anon_sym_var] = ACTIONS(3889), - [anon_sym_yield] = ACTIONS(3889), - [anon_sym_switch] = ACTIONS(3915), - [anon_sym_when] = ACTIONS(3889), - [sym_discard] = ACTIONS(4209), - [anon_sym_DOT_DOT] = ACTIONS(3913), - [anon_sym_and] = ACTIONS(3915), - [anon_sym_or] = ACTIONS(3915), - [anon_sym_AMP_AMP] = ACTIONS(3913), - [anon_sym_PIPE_PIPE] = ACTIONS(3913), - [anon_sym_QMARK_QMARK] = ACTIONS(3913), - [anon_sym_from] = ACTIONS(3915), - [anon_sym_into] = ACTIONS(3889), - [anon_sym_join] = ACTIONS(3915), - [anon_sym_on] = ACTIONS(3889), - [anon_sym_equals] = ACTIONS(3889), - [anon_sym_let] = ACTIONS(3915), - [anon_sym_orderby] = ACTIONS(3915), - [anon_sym_ascending] = ACTIONS(3889), - [anon_sym_descending] = ACTIONS(3889), - [anon_sym_group] = ACTIONS(3915), - [anon_sym_by] = ACTIONS(3889), - [anon_sym_select] = ACTIONS(3915), - [anon_sym_as] = ACTIONS(3915), - [anon_sym_is] = ACTIONS(3915), - [anon_sym_DASH_GT] = ACTIONS(3913), - [anon_sym_with] = ACTIONS(3915), + [sym__identifier_token] = ACTIONS(3855), + [anon_sym_alias] = ACTIONS(3857), + [anon_sym_global] = ACTIONS(3857), + [anon_sym_LBRACK] = ACTIONS(3893), + [anon_sym_LPAREN] = ACTIONS(3893), + [anon_sym_LBRACE] = ACTIONS(3861), + [anon_sym_file] = ACTIONS(3857), + [anon_sym_LT] = ACTIONS(3895), + [anon_sym_GT] = ACTIONS(3895), + [anon_sym_where] = ACTIONS(3857), + [anon_sym_QMARK] = ACTIONS(3895), + [anon_sym_notnull] = ACTIONS(3857), + [anon_sym_unmanaged] = ACTIONS(3857), + [anon_sym_BANG] = ACTIONS(3895), + [anon_sym_PLUS_PLUS] = ACTIONS(3893), + [anon_sym_DASH_DASH] = ACTIONS(3893), + [anon_sym_PLUS] = ACTIONS(3895), + [anon_sym_DASH] = ACTIONS(3895), + [anon_sym_STAR] = ACTIONS(3893), + [anon_sym_SLASH] = ACTIONS(3895), + [anon_sym_PERCENT] = ACTIONS(3893), + [anon_sym_CARET] = ACTIONS(3893), + [anon_sym_PIPE] = ACTIONS(3895), + [anon_sym_AMP] = ACTIONS(3895), + [anon_sym_LT_LT] = ACTIONS(3893), + [anon_sym_GT_GT] = ACTIONS(3895), + [anon_sym_GT_GT_GT] = ACTIONS(3893), + [anon_sym_EQ_EQ] = ACTIONS(3893), + [anon_sym_BANG_EQ] = ACTIONS(3893), + [anon_sym_GT_EQ] = ACTIONS(3893), + [anon_sym_LT_EQ] = ACTIONS(3893), + [anon_sym_DOT] = ACTIONS(3895), + [anon_sym_scoped] = ACTIONS(3857), + [anon_sym_var] = ACTIONS(3857), + [anon_sym_yield] = ACTIONS(3857), + [anon_sym_switch] = ACTIONS(3895), + [anon_sym_when] = ACTIONS(3857), + [sym_discard] = ACTIONS(3865), + [anon_sym_DOT_DOT] = ACTIONS(3893), + [anon_sym_and] = ACTIONS(3895), + [anon_sym_or] = ACTIONS(3895), + [anon_sym_AMP_AMP] = ACTIONS(3893), + [anon_sym_PIPE_PIPE] = ACTIONS(3893), + [anon_sym_QMARK_QMARK] = ACTIONS(3893), + [anon_sym_from] = ACTIONS(3857), + [anon_sym_into] = ACTIONS(3895), + [anon_sym_join] = ACTIONS(3857), + [anon_sym_on] = ACTIONS(3857), + [anon_sym_equals] = ACTIONS(3895), + [anon_sym_let] = ACTIONS(3857), + [anon_sym_orderby] = ACTIONS(3857), + [anon_sym_ascending] = ACTIONS(3857), + [anon_sym_descending] = ACTIONS(3857), + [anon_sym_group] = ACTIONS(3857), + [anon_sym_by] = ACTIONS(3857), + [anon_sym_select] = ACTIONS(3857), + [anon_sym_as] = ACTIONS(3895), + [anon_sym_is] = ACTIONS(3895), + [anon_sym_DASH_GT] = ACTIONS(3893), + [anon_sym_with] = ACTIONS(3895), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -435128,11 +434758,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2576] = { - [sym_property_pattern_clause] = STATE(2776), - [sym__variable_designation] = STATE(3349), - [sym_parenthesized_variable_designation] = STATE(3340), - [sym_identifier] = STATE(3345), - [sym__reserved_identifier] = STATE(3177), + [sym__variable_designation] = STATE(3314), + [sym_parenthesized_variable_designation] = STATE(3344), + [sym_identifier] = STATE(3346), + [sym__reserved_identifier] = STATE(3199), [sym_preproc_region] = STATE(2576), [sym_preproc_endregion] = STATE(2576), [sym_preproc_line] = STATE(2576), @@ -435142,238 +434771,239 @@ 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), - [sym__identifier_token] = ACTIONS(3875), - [anon_sym_alias] = ACTIONS(3877), - [anon_sym_global] = ACTIONS(3877), - [anon_sym_LBRACK] = ACTIONS(3905), - [anon_sym_LPAREN] = ACTIONS(3905), - [anon_sym_LBRACE] = ACTIONS(3881), - [anon_sym_file] = ACTIONS(3877), - [anon_sym_LT] = ACTIONS(3907), - [anon_sym_GT] = ACTIONS(3907), - [anon_sym_where] = ACTIONS(3877), - [anon_sym_QMARK] = ACTIONS(3907), - [anon_sym_notnull] = ACTIONS(3877), - [anon_sym_unmanaged] = ACTIONS(3877), - [anon_sym_BANG] = ACTIONS(3907), - [anon_sym_PLUS_PLUS] = ACTIONS(3905), - [anon_sym_DASH_DASH] = ACTIONS(3905), - [anon_sym_PLUS] = ACTIONS(3907), - [anon_sym_DASH] = ACTIONS(3907), - [anon_sym_STAR] = ACTIONS(3905), - [anon_sym_SLASH] = ACTIONS(3907), - [anon_sym_PERCENT] = ACTIONS(3905), - [anon_sym_CARET] = ACTIONS(3905), - [anon_sym_PIPE] = ACTIONS(3907), - [anon_sym_AMP] = ACTIONS(3907), - [anon_sym_LT_LT] = ACTIONS(3905), - [anon_sym_GT_GT] = ACTIONS(3907), - [anon_sym_GT_GT_GT] = ACTIONS(3905), - [anon_sym_EQ_EQ] = ACTIONS(3905), - [anon_sym_BANG_EQ] = ACTIONS(3905), - [anon_sym_GT_EQ] = ACTIONS(3905), - [anon_sym_LT_EQ] = ACTIONS(3905), - [anon_sym_DOT] = ACTIONS(3907), - [anon_sym_scoped] = ACTIONS(3877), - [anon_sym_var] = ACTIONS(3877), - [anon_sym_yield] = ACTIONS(3877), - [anon_sym_switch] = ACTIONS(3907), - [anon_sym_when] = ACTIONS(3877), - [sym_discard] = ACTIONS(3885), - [anon_sym_DOT_DOT] = ACTIONS(3905), - [anon_sym_and] = ACTIONS(3907), - [anon_sym_or] = ACTIONS(3907), - [anon_sym_AMP_AMP] = ACTIONS(3905), - [anon_sym_PIPE_PIPE] = ACTIONS(3905), - [anon_sym_QMARK_QMARK] = ACTIONS(3905), - [anon_sym_from] = ACTIONS(3877), - [anon_sym_into] = ACTIONS(3907), - [anon_sym_join] = ACTIONS(3877), - [anon_sym_on] = ACTIONS(3877), - [anon_sym_equals] = ACTIONS(3877), - [anon_sym_let] = ACTIONS(3877), - [anon_sym_orderby] = ACTIONS(3877), - [anon_sym_ascending] = ACTIONS(3877), - [anon_sym_descending] = ACTIONS(3877), - [anon_sym_group] = ACTIONS(3877), - [anon_sym_by] = ACTIONS(3907), - [anon_sym_select] = ACTIONS(3877), - [anon_sym_as] = ACTIONS(3907), - [anon_sym_is] = ACTIONS(3907), - [anon_sym_DASH_GT] = ACTIONS(3905), - [anon_sym_with] = ACTIONS(3907), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - }, - [2577] = { - [sym_preproc_region] = STATE(2577), - [sym_preproc_endregion] = STATE(2577), - [sym_preproc_line] = STATE(2577), - [sym_preproc_pragma] = STATE(2577), - [sym_preproc_nullable] = STATE(2577), - [sym_preproc_error] = STATE(2577), - [sym_preproc_warning] = STATE(2577), - [sym_preproc_define] = STATE(2577), - [sym_preproc_undef] = STATE(2577), - [sym__identifier_token] = ACTIONS(3311), - [anon_sym_extern] = ACTIONS(3311), - [anon_sym_alias] = ACTIONS(3311), - [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_event] = 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_RBRACE] = 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_TILDE] = ACTIONS(3313), - [anon_sym_implicit] = ACTIONS(3311), - [anon_sym_explicit] = ACTIONS(3311), - [anon_sym_scoped] = ACTIONS(3311), - [anon_sym_var] = ACTIONS(3311), - [sym_predefined_type] = ACTIONS(3311), - [anon_sym_while] = ACTIONS(3311), - [anon_sym_yield] = ACTIONS(3311), - [anon_sym_when] = ACTIONS(3311), - [anon_sym_else] = ACTIONS(3311), - [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), - [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), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - }, - [2578] = { - [sym_preproc_region] = STATE(2578), - [sym_preproc_endregion] = STATE(2578), - [sym_preproc_line] = STATE(2578), - [sym_preproc_pragma] = STATE(2578), + [sym__identifier_token] = ACTIONS(3855), + [anon_sym_alias] = ACTIONS(3857), + [anon_sym_global] = ACTIONS(3857), + [anon_sym_LBRACK] = ACTIONS(3947), + [anon_sym_COLON] = ACTIONS(3947), + [anon_sym_LPAREN] = ACTIONS(3947), + [anon_sym_file] = ACTIONS(3857), + [anon_sym_LT] = ACTIONS(3949), + [anon_sym_GT] = ACTIONS(3949), + [anon_sym_where] = ACTIONS(3857), + [anon_sym_QMARK] = ACTIONS(3949), + [anon_sym_notnull] = ACTIONS(3857), + [anon_sym_unmanaged] = ACTIONS(3857), + [anon_sym_BANG] = ACTIONS(3949), + [anon_sym_PLUS_PLUS] = ACTIONS(3947), + [anon_sym_DASH_DASH] = ACTIONS(3947), + [anon_sym_PLUS] = ACTIONS(3949), + [anon_sym_DASH] = ACTIONS(3949), + [anon_sym_STAR] = ACTIONS(3947), + [anon_sym_SLASH] = ACTIONS(3949), + [anon_sym_PERCENT] = ACTIONS(3947), + [anon_sym_CARET] = ACTIONS(3947), + [anon_sym_PIPE] = ACTIONS(3949), + [anon_sym_AMP] = ACTIONS(3949), + [anon_sym_LT_LT] = ACTIONS(3947), + [anon_sym_GT_GT] = ACTIONS(3949), + [anon_sym_GT_GT_GT] = ACTIONS(3947), + [anon_sym_EQ_EQ] = ACTIONS(3947), + [anon_sym_BANG_EQ] = ACTIONS(3947), + [anon_sym_GT_EQ] = ACTIONS(3947), + [anon_sym_LT_EQ] = ACTIONS(3947), + [anon_sym_DOT] = ACTIONS(3949), + [anon_sym_scoped] = ACTIONS(3857), + [anon_sym_EQ_GT] = ACTIONS(3947), + [anon_sym_var] = ACTIONS(3857), + [anon_sym_yield] = ACTIONS(3857), + [anon_sym_switch] = ACTIONS(3949), + [anon_sym_when] = ACTIONS(3949), + [sym_discard] = ACTIONS(3865), + [anon_sym_DOT_DOT] = ACTIONS(3947), + [anon_sym_and] = ACTIONS(3949), + [anon_sym_or] = ACTIONS(3949), + [anon_sym_AMP_AMP] = ACTIONS(3947), + [anon_sym_PIPE_PIPE] = ACTIONS(3947), + [anon_sym_QMARK_QMARK] = ACTIONS(3947), + [anon_sym_from] = ACTIONS(3857), + [anon_sym_into] = ACTIONS(3949), + [anon_sym_join] = ACTIONS(3857), + [anon_sym_on] = ACTIONS(3857), + [anon_sym_equals] = ACTIONS(3857), + [anon_sym_let] = ACTIONS(3857), + [anon_sym_orderby] = ACTIONS(3857), + [anon_sym_ascending] = ACTIONS(3857), + [anon_sym_descending] = ACTIONS(3857), + [anon_sym_group] = ACTIONS(3857), + [anon_sym_by] = ACTIONS(3857), + [anon_sym_select] = ACTIONS(3857), + [anon_sym_as] = ACTIONS(3949), + [anon_sym_is] = ACTIONS(3949), + [anon_sym_DASH_GT] = ACTIONS(3947), + [anon_sym_with] = ACTIONS(3949), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + }, + [2577] = { + [sym_property_pattern_clause] = STATE(2787), + [sym__variable_designation] = STATE(3249), + [sym_parenthesized_variable_designation] = STATE(3344), + [sym_identifier] = STATE(3346), + [sym__reserved_identifier] = STATE(3199), + [sym_preproc_region] = STATE(2577), + [sym_preproc_endregion] = STATE(2577), + [sym_preproc_line] = STATE(2577), + [sym_preproc_pragma] = STATE(2577), + [sym_preproc_nullable] = STATE(2577), + [sym_preproc_error] = STATE(2577), + [sym_preproc_warning] = STATE(2577), + [sym_preproc_define] = STATE(2577), + [sym_preproc_undef] = STATE(2577), + [sym__identifier_token] = ACTIONS(3855), + [anon_sym_alias] = ACTIONS(3857), + [anon_sym_global] = ACTIONS(3857), + [anon_sym_LBRACK] = ACTIONS(3885), + [anon_sym_LPAREN] = ACTIONS(3885), + [anon_sym_LBRACE] = ACTIONS(3861), + [anon_sym_file] = ACTIONS(3857), + [anon_sym_LT] = ACTIONS(3887), + [anon_sym_GT] = ACTIONS(3887), + [anon_sym_where] = ACTIONS(3857), + [anon_sym_QMARK] = ACTIONS(3887), + [anon_sym_notnull] = ACTIONS(3857), + [anon_sym_unmanaged] = ACTIONS(3857), + [anon_sym_BANG] = ACTIONS(3887), + [anon_sym_PLUS_PLUS] = ACTIONS(3885), + [anon_sym_DASH_DASH] = ACTIONS(3885), + [anon_sym_PLUS] = ACTIONS(3887), + [anon_sym_DASH] = ACTIONS(3887), + [anon_sym_STAR] = ACTIONS(3885), + [anon_sym_SLASH] = ACTIONS(3887), + [anon_sym_PERCENT] = ACTIONS(3885), + [anon_sym_CARET] = ACTIONS(3885), + [anon_sym_PIPE] = ACTIONS(3887), + [anon_sym_AMP] = ACTIONS(3887), + [anon_sym_LT_LT] = ACTIONS(3885), + [anon_sym_GT_GT] = ACTIONS(3887), + [anon_sym_GT_GT_GT] = ACTIONS(3885), + [anon_sym_EQ_EQ] = ACTIONS(3885), + [anon_sym_BANG_EQ] = ACTIONS(3885), + [anon_sym_GT_EQ] = ACTIONS(3885), + [anon_sym_LT_EQ] = ACTIONS(3885), + [anon_sym_DOT] = ACTIONS(3887), + [anon_sym_scoped] = ACTIONS(3857), + [anon_sym_var] = ACTIONS(3857), + [anon_sym_yield] = ACTIONS(3857), + [anon_sym_switch] = ACTIONS(3887), + [anon_sym_when] = ACTIONS(3857), + [sym_discard] = ACTIONS(3865), + [anon_sym_DOT_DOT] = ACTIONS(3885), + [anon_sym_and] = ACTIONS(3887), + [anon_sym_or] = ACTIONS(3887), + [anon_sym_AMP_AMP] = ACTIONS(3885), + [anon_sym_PIPE_PIPE] = ACTIONS(3885), + [anon_sym_QMARK_QMARK] = ACTIONS(3885), + [anon_sym_from] = ACTIONS(3857), + [anon_sym_into] = ACTIONS(3887), + [anon_sym_join] = ACTIONS(3857), + [anon_sym_on] = ACTIONS(3857), + [anon_sym_equals] = ACTIONS(3887), + [anon_sym_let] = ACTIONS(3857), + [anon_sym_orderby] = ACTIONS(3857), + [anon_sym_ascending] = ACTIONS(3857), + [anon_sym_descending] = ACTIONS(3857), + [anon_sym_group] = ACTIONS(3857), + [anon_sym_by] = ACTIONS(3857), + [anon_sym_select] = ACTIONS(3857), + [anon_sym_as] = ACTIONS(3887), + [anon_sym_is] = ACTIONS(3887), + [anon_sym_DASH_GT] = ACTIONS(3885), + [anon_sym_with] = ACTIONS(3887), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + }, + [2578] = { + [sym_property_pattern_clause] = STATE(2741), + [sym__variable_designation] = STATE(3447), + [sym_parenthesized_variable_designation] = STATE(3352), + [sym_identifier] = STATE(3355), + [sym__reserved_identifier] = STATE(3199), + [sym_preproc_region] = STATE(2578), + [sym_preproc_endregion] = STATE(2578), + [sym_preproc_line] = STATE(2578), + [sym_preproc_pragma] = STATE(2578), [sym_preproc_nullable] = STATE(2578), [sym_preproc_error] = STATE(2578), [sym_preproc_warning] = STATE(2578), [sym_preproc_define] = STATE(2578), [sym_preproc_undef] = STATE(2578), - [anon_sym_SEMI] = ACTIONS(3445), - [anon_sym_EQ] = ACTIONS(3447), - [anon_sym_LBRACK] = ACTIONS(3445), - [anon_sym_COLON] = ACTIONS(3445), - [anon_sym_COMMA] = ACTIONS(3445), - [anon_sym_RBRACK] = ACTIONS(3445), - [anon_sym_LPAREN] = ACTIONS(3445), - [anon_sym_RPAREN] = ACTIONS(3445), - [anon_sym_LBRACE] = ACTIONS(3445), - [anon_sym_RBRACE] = ACTIONS(3445), - [anon_sym_LT] = ACTIONS(3447), - [anon_sym_GT] = ACTIONS(3447), - [anon_sym_in] = ACTIONS(3445), - [anon_sym_where] = ACTIONS(3445), - [anon_sym_QMARK] = ACTIONS(3447), - [anon_sym_BANG] = ACTIONS(3447), - [anon_sym_PLUS_PLUS] = ACTIONS(3445), - [anon_sym_DASH_DASH] = ACTIONS(3445), - [anon_sym_PLUS] = ACTIONS(3447), - [anon_sym_DASH] = ACTIONS(3447), - [anon_sym_STAR] = ACTIONS(3447), - [anon_sym_SLASH] = ACTIONS(3447), - [anon_sym_PERCENT] = ACTIONS(3447), - [anon_sym_CARET] = ACTIONS(3447), - [anon_sym_PIPE] = ACTIONS(3447), - [anon_sym_AMP] = ACTIONS(3447), - [anon_sym_LT_LT] = ACTIONS(3447), - [anon_sym_GT_GT] = ACTIONS(3447), - [anon_sym_GT_GT_GT] = ACTIONS(3447), - [anon_sym_EQ_EQ] = ACTIONS(3445), - [anon_sym_BANG_EQ] = ACTIONS(3445), - [anon_sym_GT_EQ] = ACTIONS(3445), - [anon_sym_LT_EQ] = ACTIONS(3445), - [anon_sym_DOT] = ACTIONS(3447), - [anon_sym_EQ_GT] = ACTIONS(3445), - [anon_sym_switch] = ACTIONS(3445), - [anon_sym_when] = ACTIONS(3445), - [anon_sym_DOT_DOT] = ACTIONS(3445), - [anon_sym_and] = ACTIONS(3445), - [anon_sym_or] = ACTIONS(3445), - [anon_sym_PLUS_EQ] = ACTIONS(3445), - [anon_sym_DASH_EQ] = ACTIONS(3445), - [anon_sym_STAR_EQ] = ACTIONS(3445), - [anon_sym_SLASH_EQ] = ACTIONS(3445), - [anon_sym_PERCENT_EQ] = ACTIONS(3445), - [anon_sym_AMP_EQ] = ACTIONS(3445), - [anon_sym_CARET_EQ] = ACTIONS(3445), - [anon_sym_PIPE_EQ] = ACTIONS(3445), - [anon_sym_LT_LT_EQ] = ACTIONS(3445), - [anon_sym_GT_GT_EQ] = ACTIONS(3445), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3445), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3445), - [anon_sym_AMP_AMP] = ACTIONS(3445), - [anon_sym_PIPE_PIPE] = ACTIONS(3445), - [anon_sym_QMARK_QMARK] = ACTIONS(3447), - [anon_sym_on] = ACTIONS(3445), - [anon_sym_equals] = ACTIONS(3445), - [anon_sym_by] = ACTIONS(3445), - [anon_sym_as] = ACTIONS(3445), - [anon_sym_is] = ACTIONS(3445), - [anon_sym_DASH_GT] = ACTIONS(3445), - [anon_sym_with] = ACTIONS(3445), - [aux_sym_preproc_if_token3] = ACTIONS(3445), - [aux_sym_preproc_else_token1] = ACTIONS(3445), - [aux_sym_preproc_elif_token1] = ACTIONS(3445), + [sym__identifier_token] = ACTIONS(3855), + [anon_sym_alias] = ACTIONS(3857), + [anon_sym_global] = ACTIONS(3857), + [anon_sym_LBRACK] = ACTIONS(3893), + [anon_sym_LPAREN] = ACTIONS(3893), + [anon_sym_LBRACE] = ACTIONS(3861), + [anon_sym_file] = ACTIONS(3857), + [anon_sym_LT] = ACTIONS(3895), + [anon_sym_GT] = ACTIONS(3895), + [anon_sym_where] = ACTIONS(3857), + [anon_sym_QMARK] = ACTIONS(3895), + [anon_sym_notnull] = ACTIONS(3857), + [anon_sym_unmanaged] = ACTIONS(3857), + [anon_sym_BANG] = ACTIONS(3895), + [anon_sym_PLUS_PLUS] = ACTIONS(3893), + [anon_sym_DASH_DASH] = ACTIONS(3893), + [anon_sym_PLUS] = ACTIONS(3895), + [anon_sym_DASH] = ACTIONS(3895), + [anon_sym_STAR] = ACTIONS(3893), + [anon_sym_SLASH] = ACTIONS(3895), + [anon_sym_PERCENT] = ACTIONS(3893), + [anon_sym_CARET] = ACTIONS(3893), + [anon_sym_PIPE] = ACTIONS(3895), + [anon_sym_AMP] = ACTIONS(3895), + [anon_sym_LT_LT] = ACTIONS(3893), + [anon_sym_GT_GT] = ACTIONS(3895), + [anon_sym_GT_GT_GT] = ACTIONS(3893), + [anon_sym_EQ_EQ] = ACTIONS(3893), + [anon_sym_BANG_EQ] = ACTIONS(3893), + [anon_sym_GT_EQ] = ACTIONS(3893), + [anon_sym_LT_EQ] = ACTIONS(3893), + [anon_sym_DOT] = ACTIONS(3895), + [anon_sym_scoped] = ACTIONS(3857), + [anon_sym_var] = ACTIONS(3857), + [anon_sym_yield] = ACTIONS(3857), + [anon_sym_switch] = ACTIONS(3895), + [anon_sym_when] = ACTIONS(3857), + [sym_discard] = ACTIONS(3877), + [anon_sym_DOT_DOT] = ACTIONS(3893), + [anon_sym_and] = ACTIONS(3895), + [anon_sym_or] = ACTIONS(3895), + [anon_sym_AMP_AMP] = ACTIONS(3893), + [anon_sym_PIPE_PIPE] = ACTIONS(3893), + [anon_sym_QMARK_QMARK] = ACTIONS(3893), + [anon_sym_from] = ACTIONS(3857), + [anon_sym_into] = ACTIONS(3857), + [anon_sym_join] = ACTIONS(3857), + [anon_sym_on] = ACTIONS(3895), + [anon_sym_equals] = ACTIONS(3857), + [anon_sym_let] = ACTIONS(3857), + [anon_sym_orderby] = ACTIONS(3857), + [anon_sym_ascending] = ACTIONS(3857), + [anon_sym_descending] = ACTIONS(3857), + [anon_sym_group] = ACTIONS(3857), + [anon_sym_by] = ACTIONS(3857), + [anon_sym_select] = ACTIONS(3857), + [anon_sym_as] = ACTIONS(3895), + [anon_sym_is] = ACTIONS(3895), + [anon_sym_DASH_GT] = ACTIONS(3893), + [anon_sym_with] = ACTIONS(3895), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -435386,11 +435016,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2579] = { - [sym_property_pattern_clause] = STATE(2778), - [sym__variable_designation] = STATE(3341), - [sym_parenthesized_variable_designation] = STATE(3340), - [sym_identifier] = STATE(3345), - [sym__reserved_identifier] = STATE(3177), + [sym__variable_designation] = STATE(3265), + [sym_parenthesized_variable_designation] = STATE(3344), + [sym_identifier] = STATE(3346), + [sym__reserved_identifier] = STATE(3199), [sym_preproc_region] = STATE(2579), [sym_preproc_endregion] = STATE(2579), [sym_preproc_line] = STATE(2579), @@ -435400,66 +435029,67 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2579), [sym_preproc_define] = STATE(2579), [sym_preproc_undef] = STATE(2579), - [sym__identifier_token] = ACTIONS(3875), - [anon_sym_alias] = ACTIONS(3877), - [anon_sym_global] = ACTIONS(3877), - [anon_sym_LBRACK] = ACTIONS(3913), - [anon_sym_LPAREN] = ACTIONS(3913), - [anon_sym_LBRACE] = ACTIONS(3881), - [anon_sym_file] = ACTIONS(3877), - [anon_sym_LT] = ACTIONS(3915), - [anon_sym_GT] = ACTIONS(3915), - [anon_sym_where] = ACTIONS(3877), - [anon_sym_QMARK] = ACTIONS(3915), - [anon_sym_notnull] = ACTIONS(3877), - [anon_sym_unmanaged] = ACTIONS(3877), - [anon_sym_BANG] = ACTIONS(3915), - [anon_sym_PLUS_PLUS] = ACTIONS(3913), - [anon_sym_DASH_DASH] = ACTIONS(3913), - [anon_sym_PLUS] = ACTIONS(3915), - [anon_sym_DASH] = ACTIONS(3915), - [anon_sym_STAR] = ACTIONS(3913), - [anon_sym_SLASH] = ACTIONS(3915), - [anon_sym_PERCENT] = ACTIONS(3913), - [anon_sym_CARET] = ACTIONS(3913), - [anon_sym_PIPE] = ACTIONS(3915), - [anon_sym_AMP] = ACTIONS(3915), - [anon_sym_LT_LT] = ACTIONS(3913), - [anon_sym_GT_GT] = ACTIONS(3915), - [anon_sym_GT_GT_GT] = ACTIONS(3913), - [anon_sym_EQ_EQ] = ACTIONS(3913), - [anon_sym_BANG_EQ] = ACTIONS(3913), - [anon_sym_GT_EQ] = ACTIONS(3913), - [anon_sym_LT_EQ] = ACTIONS(3913), - [anon_sym_DOT] = ACTIONS(3915), - [anon_sym_scoped] = ACTIONS(3877), - [anon_sym_var] = ACTIONS(3877), - [anon_sym_yield] = ACTIONS(3877), - [anon_sym_switch] = ACTIONS(3915), - [anon_sym_when] = ACTIONS(3877), - [sym_discard] = ACTIONS(3885), - [anon_sym_DOT_DOT] = ACTIONS(3913), - [anon_sym_and] = ACTIONS(3915), - [anon_sym_or] = ACTIONS(3915), - [anon_sym_AMP_AMP] = ACTIONS(3913), - [anon_sym_PIPE_PIPE] = ACTIONS(3913), - [anon_sym_QMARK_QMARK] = ACTIONS(3913), - [anon_sym_from] = ACTIONS(3877), - [anon_sym_into] = ACTIONS(3915), - [anon_sym_join] = ACTIONS(3877), - [anon_sym_on] = ACTIONS(3877), - [anon_sym_equals] = ACTIONS(3877), - [anon_sym_let] = ACTIONS(3877), - [anon_sym_orderby] = ACTIONS(3877), - [anon_sym_ascending] = ACTIONS(3877), - [anon_sym_descending] = ACTIONS(3877), - [anon_sym_group] = ACTIONS(3877), - [anon_sym_by] = ACTIONS(3915), - [anon_sym_select] = ACTIONS(3877), - [anon_sym_as] = ACTIONS(3915), - [anon_sym_is] = ACTIONS(3915), - [anon_sym_DASH_GT] = ACTIONS(3913), - [anon_sym_with] = ACTIONS(3915), + [sym__identifier_token] = ACTIONS(3855), + [anon_sym_alias] = ACTIONS(3857), + [anon_sym_global] = ACTIONS(3857), + [anon_sym_LBRACK] = ACTIONS(3939), + [anon_sym_COLON] = ACTIONS(3939), + [anon_sym_LPAREN] = ACTIONS(3939), + [anon_sym_file] = ACTIONS(3857), + [anon_sym_LT] = ACTIONS(3941), + [anon_sym_GT] = ACTIONS(3941), + [anon_sym_where] = ACTIONS(3857), + [anon_sym_QMARK] = ACTIONS(3941), + [anon_sym_notnull] = ACTIONS(3857), + [anon_sym_unmanaged] = ACTIONS(3857), + [anon_sym_BANG] = ACTIONS(3941), + [anon_sym_PLUS_PLUS] = ACTIONS(3939), + [anon_sym_DASH_DASH] = ACTIONS(3939), + [anon_sym_PLUS] = ACTIONS(3941), + [anon_sym_DASH] = ACTIONS(3941), + [anon_sym_STAR] = ACTIONS(3939), + [anon_sym_SLASH] = ACTIONS(3941), + [anon_sym_PERCENT] = ACTIONS(3939), + [anon_sym_CARET] = ACTIONS(3939), + [anon_sym_PIPE] = ACTIONS(3941), + [anon_sym_AMP] = ACTIONS(3941), + [anon_sym_LT_LT] = ACTIONS(3939), + [anon_sym_GT_GT] = ACTIONS(3941), + [anon_sym_GT_GT_GT] = ACTIONS(3939), + [anon_sym_EQ_EQ] = ACTIONS(3939), + [anon_sym_BANG_EQ] = ACTIONS(3939), + [anon_sym_GT_EQ] = ACTIONS(3939), + [anon_sym_LT_EQ] = ACTIONS(3939), + [anon_sym_DOT] = ACTIONS(3941), + [anon_sym_scoped] = ACTIONS(3857), + [anon_sym_EQ_GT] = ACTIONS(3939), + [anon_sym_var] = ACTIONS(3857), + [anon_sym_yield] = ACTIONS(3857), + [anon_sym_switch] = ACTIONS(3941), + [anon_sym_when] = ACTIONS(3941), + [sym_discard] = ACTIONS(3865), + [anon_sym_DOT_DOT] = ACTIONS(3939), + [anon_sym_and] = ACTIONS(3941), + [anon_sym_or] = ACTIONS(3941), + [anon_sym_AMP_AMP] = ACTIONS(3939), + [anon_sym_PIPE_PIPE] = ACTIONS(3939), + [anon_sym_QMARK_QMARK] = ACTIONS(3939), + [anon_sym_from] = ACTIONS(3857), + [anon_sym_into] = ACTIONS(3941), + [anon_sym_join] = ACTIONS(3857), + [anon_sym_on] = ACTIONS(3857), + [anon_sym_equals] = ACTIONS(3857), + [anon_sym_let] = ACTIONS(3857), + [anon_sym_orderby] = ACTIONS(3857), + [anon_sym_ascending] = ACTIONS(3857), + [anon_sym_descending] = ACTIONS(3857), + [anon_sym_group] = ACTIONS(3857), + [anon_sym_by] = ACTIONS(3857), + [anon_sym_select] = ACTIONS(3857), + [anon_sym_as] = ACTIONS(3941), + [anon_sym_is] = ACTIONS(3941), + [anon_sym_DASH_GT] = ACTIONS(3939), + [anon_sym_with] = ACTIONS(3941), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -435472,11 +435102,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2580] = { - [sym_property_pattern_clause] = STATE(2743), - [sym__variable_designation] = STATE(3496), - [sym_parenthesized_variable_designation] = STATE(3463), - [sym_identifier] = STATE(3479), - [sym__reserved_identifier] = STATE(3177), + [sym_property_pattern_clause] = STATE(2794), + [sym__variable_designation] = STATE(4153), + [sym_parenthesized_variable_designation] = STATE(4116), + [sym_identifier] = STATE(4152), + [sym__reserved_identifier] = STATE(2916), [sym_preproc_region] = STATE(2580), [sym_preproc_endregion] = STATE(2580), [sym_preproc_line] = STATE(2580), @@ -435486,66 +435116,66 @@ 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(3875), - [anon_sym_alias] = ACTIONS(3877), - [anon_sym_global] = ACTIONS(3877), - [anon_sym_LBRACK] = ACTIONS(3913), - [anon_sym_LPAREN] = ACTIONS(3913), - [anon_sym_LBRACE] = ACTIONS(3881), - [anon_sym_file] = ACTIONS(3877), - [anon_sym_LT] = ACTIONS(3915), - [anon_sym_GT] = ACTIONS(3915), - [anon_sym_where] = ACTIONS(3877), - [anon_sym_QMARK] = ACTIONS(3915), - [anon_sym_notnull] = ACTIONS(3877), - [anon_sym_unmanaged] = ACTIONS(3877), - [anon_sym_BANG] = ACTIONS(3915), - [anon_sym_PLUS_PLUS] = ACTIONS(3913), - [anon_sym_DASH_DASH] = ACTIONS(3913), - [anon_sym_PLUS] = ACTIONS(3915), - [anon_sym_DASH] = ACTIONS(3915), - [anon_sym_STAR] = ACTIONS(3913), - [anon_sym_SLASH] = ACTIONS(3915), - [anon_sym_PERCENT] = ACTIONS(3913), - [anon_sym_CARET] = ACTIONS(3913), - [anon_sym_PIPE] = ACTIONS(3915), - [anon_sym_AMP] = ACTIONS(3915), - [anon_sym_LT_LT] = ACTIONS(3913), - [anon_sym_GT_GT] = ACTIONS(3915), - [anon_sym_GT_GT_GT] = ACTIONS(3913), - [anon_sym_EQ_EQ] = ACTIONS(3913), - [anon_sym_BANG_EQ] = ACTIONS(3913), - [anon_sym_GT_EQ] = ACTIONS(3913), - [anon_sym_LT_EQ] = ACTIONS(3913), - [anon_sym_DOT] = ACTIONS(3915), - [anon_sym_scoped] = ACTIONS(3877), - [anon_sym_var] = ACTIONS(3877), - [anon_sym_yield] = ACTIONS(3877), - [anon_sym_switch] = ACTIONS(3915), - [anon_sym_when] = ACTIONS(3877), - [sym_discard] = ACTIONS(3897), - [anon_sym_DOT_DOT] = ACTIONS(3913), - [anon_sym_and] = ACTIONS(3915), - [anon_sym_or] = ACTIONS(3915), - [anon_sym_AMP_AMP] = ACTIONS(3913), - [anon_sym_PIPE_PIPE] = ACTIONS(3913), - [anon_sym_QMARK_QMARK] = ACTIONS(3913), - [anon_sym_from] = ACTIONS(3877), - [anon_sym_into] = ACTIONS(3877), - [anon_sym_join] = ACTIONS(3877), - [anon_sym_on] = ACTIONS(3877), - [anon_sym_equals] = ACTIONS(3915), - [anon_sym_let] = ACTIONS(3877), - [anon_sym_orderby] = ACTIONS(3877), - [anon_sym_ascending] = ACTIONS(3877), - [anon_sym_descending] = ACTIONS(3877), - [anon_sym_group] = ACTIONS(3877), - [anon_sym_by] = ACTIONS(3877), - [anon_sym_select] = ACTIONS(3877), - [anon_sym_as] = ACTIONS(3915), - [anon_sym_is] = ACTIONS(3915), - [anon_sym_DASH_GT] = ACTIONS(3913), - [anon_sym_with] = ACTIONS(3915), + [sym__identifier_token] = ACTIONS(3871), + [anon_sym_alias] = ACTIONS(3873), + [anon_sym_global] = ACTIONS(3873), + [anon_sym_LBRACK] = ACTIONS(3893), + [anon_sym_LPAREN] = ACTIONS(3893), + [anon_sym_LBRACE] = ACTIONS(3861), + [anon_sym_file] = ACTIONS(3873), + [anon_sym_LT] = ACTIONS(3895), + [anon_sym_GT] = ACTIONS(3895), + [anon_sym_where] = ACTIONS(3895), + [anon_sym_QMARK] = ACTIONS(3895), + [anon_sym_notnull] = ACTIONS(3873), + [anon_sym_unmanaged] = ACTIONS(3873), + [anon_sym_BANG] = ACTIONS(3895), + [anon_sym_PLUS_PLUS] = ACTIONS(3893), + [anon_sym_DASH_DASH] = ACTIONS(3893), + [anon_sym_PLUS] = ACTIONS(3895), + [anon_sym_DASH] = ACTIONS(3895), + [anon_sym_STAR] = ACTIONS(3893), + [anon_sym_SLASH] = ACTIONS(3895), + [anon_sym_PERCENT] = ACTIONS(3893), + [anon_sym_CARET] = ACTIONS(3893), + [anon_sym_PIPE] = ACTIONS(3895), + [anon_sym_AMP] = ACTIONS(3895), + [anon_sym_LT_LT] = ACTIONS(3893), + [anon_sym_GT_GT] = ACTIONS(3895), + [anon_sym_GT_GT_GT] = ACTIONS(3893), + [anon_sym_EQ_EQ] = ACTIONS(3893), + [anon_sym_BANG_EQ] = ACTIONS(3893), + [anon_sym_GT_EQ] = ACTIONS(3893), + [anon_sym_LT_EQ] = ACTIONS(3893), + [anon_sym_DOT] = ACTIONS(3895), + [anon_sym_scoped] = ACTIONS(3873), + [anon_sym_var] = ACTIONS(3873), + [anon_sym_yield] = ACTIONS(3873), + [anon_sym_switch] = ACTIONS(3895), + [anon_sym_when] = ACTIONS(3873), + [sym_discard] = ACTIONS(4187), + [anon_sym_DOT_DOT] = ACTIONS(3893), + [anon_sym_and] = ACTIONS(3895), + [anon_sym_or] = ACTIONS(3895), + [anon_sym_AMP_AMP] = ACTIONS(3893), + [anon_sym_PIPE_PIPE] = ACTIONS(3893), + [anon_sym_QMARK_QMARK] = ACTIONS(3893), + [anon_sym_from] = ACTIONS(3895), + [anon_sym_into] = ACTIONS(3873), + [anon_sym_join] = ACTIONS(3895), + [anon_sym_on] = ACTIONS(3873), + [anon_sym_equals] = ACTIONS(3873), + [anon_sym_let] = ACTIONS(3895), + [anon_sym_orderby] = ACTIONS(3895), + [anon_sym_ascending] = ACTIONS(3873), + [anon_sym_descending] = ACTIONS(3873), + [anon_sym_group] = ACTIONS(3895), + [anon_sym_by] = ACTIONS(3873), + [anon_sym_select] = ACTIONS(3895), + [anon_sym_as] = ACTIONS(3895), + [anon_sym_is] = ACTIONS(3895), + [anon_sym_DASH_GT] = ACTIONS(3893), + [anon_sym_with] = ACTIONS(3895), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -435558,7 +435188,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2581] = { - [sym_type_argument_list] = STATE(2723), [sym_preproc_region] = STATE(2581), [sym_preproc_endregion] = STATE(2581), [sym_preproc_line] = STATE(2581), @@ -435568,87 +435197,84 @@ 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(3660), - [anon_sym_alias] = ACTIONS(3660), - [anon_sym_global] = ACTIONS(3660), - [anon_sym_LBRACK] = ACTIONS(3662), - [anon_sym_COLON] = ACTIONS(3660), - [anon_sym_COMMA] = ACTIONS(3662), - [anon_sym_LPAREN] = ACTIONS(3662), - [anon_sym_LBRACE] = ACTIONS(3662), - [anon_sym_file] = ACTIONS(3660), - [anon_sym_LT] = ACTIONS(4250), - [anon_sym_GT] = ACTIONS(3660), - [anon_sym_where] = ACTIONS(3660), - [anon_sym_QMARK] = ACTIONS(3660), - [anon_sym_notnull] = ACTIONS(3660), - [anon_sym_unmanaged] = ACTIONS(3660), - [anon_sym_BANG] = ACTIONS(3660), - [anon_sym_PLUS_PLUS] = ACTIONS(3662), - [anon_sym_DASH_DASH] = ACTIONS(3662), - [anon_sym_PLUS] = ACTIONS(3660), - [anon_sym_DASH] = ACTIONS(3660), - [anon_sym_STAR] = ACTIONS(3662), - [anon_sym_SLASH] = ACTIONS(3660), - [anon_sym_PERCENT] = ACTIONS(3662), - [anon_sym_CARET] = ACTIONS(3662), - [anon_sym_PIPE] = ACTIONS(3660), - [anon_sym_AMP] = ACTIONS(3660), - [anon_sym_LT_LT] = ACTIONS(3662), - [anon_sym_GT_GT] = ACTIONS(3660), - [anon_sym_GT_GT_GT] = ACTIONS(3662), - [anon_sym_EQ_EQ] = ACTIONS(3662), - [anon_sym_BANG_EQ] = ACTIONS(3662), - [anon_sym_GT_EQ] = ACTIONS(3662), - [anon_sym_LT_EQ] = ACTIONS(3662), - [anon_sym_DOT] = ACTIONS(3660), - [anon_sym_scoped] = ACTIONS(3660), - [anon_sym_COLON_COLON] = ACTIONS(3873), - [anon_sym_var] = ACTIONS(3660), - [anon_sym_yield] = ACTIONS(3660), - [anon_sym_switch] = ACTIONS(3660), - [anon_sym_when] = ACTIONS(3660), - [sym_discard] = ACTIONS(3660), - [anon_sym_DOT_DOT] = ACTIONS(3662), - [anon_sym_and] = ACTIONS(3660), - [anon_sym_or] = ACTIONS(3660), - [anon_sym_AMP_AMP] = ACTIONS(3662), - [anon_sym_PIPE_PIPE] = ACTIONS(3662), - [anon_sym_QMARK_QMARK] = ACTIONS(3662), - [anon_sym_from] = ACTIONS(3660), - [anon_sym_into] = ACTIONS(3660), - [anon_sym_join] = ACTIONS(3660), - [anon_sym_on] = ACTIONS(3660), - [anon_sym_equals] = ACTIONS(3660), - [anon_sym_let] = ACTIONS(3660), - [anon_sym_orderby] = ACTIONS(3660), - [anon_sym_ascending] = ACTIONS(3660), - [anon_sym_descending] = ACTIONS(3660), - [anon_sym_group] = ACTIONS(3660), - [anon_sym_by] = ACTIONS(3660), - [anon_sym_select] = ACTIONS(3660), - [anon_sym_as] = ACTIONS(3660), - [anon_sym_is] = ACTIONS(3660), - [anon_sym_DASH_GT] = ACTIONS(3662), - [anon_sym_with] = ACTIONS(3660), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_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(3662), + [sym__identifier_token] = ACTIONS(3757), + [anon_sym_alias] = ACTIONS(3757), + [anon_sym_global] = ACTIONS(3757), + [anon_sym_static] = ACTIONS(3757), + [anon_sym_LBRACK] = ACTIONS(3759), + [anon_sym_LPAREN] = ACTIONS(3759), + [anon_sym_ref] = ACTIONS(3757), + [anon_sym_delegate] = ACTIONS(3757), + [anon_sym_async] = ACTIONS(3757), + [anon_sym_file] = ACTIONS(3757), + [anon_sym_LT] = ACTIONS(2961), + [anon_sym_GT] = ACTIONS(2961), + [anon_sym_in] = ACTIONS(2961), + [anon_sym_where] = ACTIONS(3757), + [anon_sym_QMARK] = ACTIONS(2961), + [anon_sym_notnull] = ACTIONS(3757), + [anon_sym_unmanaged] = ACTIONS(3757), + [anon_sym_BANG] = ACTIONS(2961), + [anon_sym_PLUS_PLUS] = ACTIONS(2963), + [anon_sym_DASH_DASH] = ACTIONS(2963), + [anon_sym_PLUS] = ACTIONS(2961), + [anon_sym_DASH] = ACTIONS(2961), + [anon_sym_STAR] = ACTIONS(2963), + [anon_sym_SLASH] = ACTIONS(2961), + [anon_sym_PERCENT] = ACTIONS(2963), + [anon_sym_CARET] = ACTIONS(2963), + [anon_sym_PIPE] = ACTIONS(2961), + [anon_sym_AMP] = ACTIONS(2961), + [anon_sym_LT_LT] = ACTIONS(2963), + [anon_sym_GT_GT] = ACTIONS(2961), + [anon_sym_GT_GT_GT] = ACTIONS(2963), + [anon_sym_EQ_EQ] = ACTIONS(2963), + [anon_sym_BANG_EQ] = ACTIONS(2963), + [anon_sym_GT_EQ] = ACTIONS(2963), + [anon_sym_LT_EQ] = ACTIONS(2963), + [anon_sym_DOT] = ACTIONS(2961), + [anon_sym_scoped] = ACTIONS(3757), + [anon_sym_var] = ACTIONS(3757), + [sym_predefined_type] = ACTIONS(3757), + [anon_sym_yield] = ACTIONS(3757), + [anon_sym_switch] = ACTIONS(2961), + [anon_sym_when] = ACTIONS(3757), + [anon_sym_DOT_DOT] = ACTIONS(2963), + [anon_sym_and] = ACTIONS(2961), + [anon_sym_or] = ACTIONS(2961), + [anon_sym_AMP_AMP] = ACTIONS(2963), + [anon_sym_PIPE_PIPE] = ACTIONS(2963), + [anon_sym_QMARK_QMARK] = ACTIONS(2963), + [anon_sym_from] = ACTIONS(3757), + [anon_sym_into] = ACTIONS(3757), + [anon_sym_join] = ACTIONS(3757), + [anon_sym_on] = ACTIONS(3757), + [anon_sym_equals] = ACTIONS(3757), + [anon_sym_let] = ACTIONS(3757), + [anon_sym_orderby] = ACTIONS(3757), + [anon_sym_ascending] = ACTIONS(3757), + [anon_sym_descending] = ACTIONS(3757), + [anon_sym_group] = ACTIONS(3757), + [anon_sym_by] = ACTIONS(3757), + [anon_sym_select] = ACTIONS(3757), + [anon_sym_as] = ACTIONS(2961), + [anon_sym_is] = ACTIONS(2961), + [anon_sym_DASH_GT] = ACTIONS(2963), + [anon_sym_with] = ACTIONS(2961), + [aux_sym_preproc_if_token1] = ACTIONS(3759), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), }, [2582] = { - [sym_property_pattern_clause] = STATE(2735), - [sym__variable_designation] = STATE(4161), - [sym_parenthesized_variable_designation] = STATE(4173), - [sym_identifier] = STATE(4177), - [sym__reserved_identifier] = STATE(2904), + [sym_type_argument_list] = STATE(2699), [sym_preproc_region] = STATE(2582), [sym_preproc_endregion] = STATE(2582), [sym_preproc_line] = STATE(2582), @@ -435658,83 +435284,87 @@ 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(3861), - [anon_sym_alias] = ACTIONS(3863), - [anon_sym_global] = ACTIONS(3863), - [anon_sym_LBRACK] = ACTIONS(3905), - [anon_sym_LPAREN] = ACTIONS(3905), - [anon_sym_LBRACE] = ACTIONS(3881), - [anon_sym_file] = ACTIONS(3863), - [anon_sym_LT] = ACTIONS(3907), - [anon_sym_GT] = ACTIONS(3907), - [anon_sym_where] = ACTIONS(3907), - [anon_sym_QMARK] = ACTIONS(3907), - [anon_sym_notnull] = ACTIONS(3863), - [anon_sym_unmanaged] = ACTIONS(3863), - [anon_sym_BANG] = ACTIONS(3907), - [anon_sym_PLUS_PLUS] = ACTIONS(3905), - [anon_sym_DASH_DASH] = ACTIONS(3905), - [anon_sym_PLUS] = ACTIONS(3907), - [anon_sym_DASH] = ACTIONS(3907), - [anon_sym_STAR] = ACTIONS(3905), - [anon_sym_SLASH] = ACTIONS(3907), - [anon_sym_PERCENT] = ACTIONS(3905), - [anon_sym_CARET] = ACTIONS(3905), - [anon_sym_PIPE] = ACTIONS(3907), - [anon_sym_AMP] = ACTIONS(3907), - [anon_sym_LT_LT] = ACTIONS(3905), - [anon_sym_GT_GT] = ACTIONS(3907), - [anon_sym_GT_GT_GT] = ACTIONS(3905), - [anon_sym_EQ_EQ] = ACTIONS(3905), - [anon_sym_BANG_EQ] = ACTIONS(3905), - [anon_sym_GT_EQ] = ACTIONS(3905), - [anon_sym_LT_EQ] = ACTIONS(3905), - [anon_sym_DOT] = ACTIONS(3907), - [anon_sym_scoped] = ACTIONS(3863), - [anon_sym_var] = ACTIONS(3863), - [anon_sym_yield] = ACTIONS(3863), - [anon_sym_switch] = ACTIONS(3907), - [anon_sym_when] = ACTIONS(3863), - [sym_discard] = ACTIONS(4209), - [anon_sym_DOT_DOT] = ACTIONS(3905), - [anon_sym_and] = ACTIONS(3907), - [anon_sym_or] = ACTIONS(3907), - [anon_sym_AMP_AMP] = ACTIONS(3905), - [anon_sym_PIPE_PIPE] = ACTIONS(3905), - [anon_sym_QMARK_QMARK] = ACTIONS(3905), - [anon_sym_from] = ACTIONS(3907), - [anon_sym_into] = ACTIONS(3907), - [anon_sym_join] = ACTIONS(3907), - [anon_sym_on] = ACTIONS(3863), - [anon_sym_equals] = ACTIONS(3863), - [anon_sym_let] = ACTIONS(3907), - [anon_sym_orderby] = ACTIONS(3907), - [anon_sym_ascending] = ACTIONS(3863), - [anon_sym_descending] = ACTIONS(3863), - [anon_sym_group] = ACTIONS(3907), - [anon_sym_by] = ACTIONS(3863), - [anon_sym_select] = ACTIONS(3907), - [anon_sym_as] = ACTIONS(3907), - [anon_sym_is] = ACTIONS(3907), - [anon_sym_DASH_GT] = ACTIONS(3905), - [anon_sym_with] = ACTIONS(3907), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_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(3638), + [anon_sym_alias] = ACTIONS(3638), + [anon_sym_global] = ACTIONS(3638), + [anon_sym_LBRACK] = ACTIONS(3640), + [anon_sym_COLON] = ACTIONS(3638), + [anon_sym_COMMA] = ACTIONS(3640), + [anon_sym_LPAREN] = ACTIONS(3640), + [anon_sym_LBRACE] = ACTIONS(3640), + [anon_sym_file] = ACTIONS(3638), + [anon_sym_LT] = ACTIONS(4230), + [anon_sym_GT] = ACTIONS(3638), + [anon_sym_where] = ACTIONS(3638), + [anon_sym_QMARK] = ACTIONS(3638), + [anon_sym_notnull] = ACTIONS(3638), + [anon_sym_unmanaged] = ACTIONS(3638), + [anon_sym_BANG] = ACTIONS(3638), + [anon_sym_PLUS_PLUS] = ACTIONS(3640), + [anon_sym_DASH_DASH] = ACTIONS(3640), + [anon_sym_PLUS] = ACTIONS(3638), + [anon_sym_DASH] = ACTIONS(3638), + [anon_sym_STAR] = ACTIONS(3640), + [anon_sym_SLASH] = ACTIONS(3638), + [anon_sym_PERCENT] = ACTIONS(3640), + [anon_sym_CARET] = ACTIONS(3640), + [anon_sym_PIPE] = ACTIONS(3638), + [anon_sym_AMP] = ACTIONS(3638), + [anon_sym_LT_LT] = ACTIONS(3640), + [anon_sym_GT_GT] = ACTIONS(3638), + [anon_sym_GT_GT_GT] = ACTIONS(3640), + [anon_sym_EQ_EQ] = ACTIONS(3640), + [anon_sym_BANG_EQ] = ACTIONS(3640), + [anon_sym_GT_EQ] = ACTIONS(3640), + [anon_sym_LT_EQ] = ACTIONS(3640), + [anon_sym_DOT] = ACTIONS(3638), + [anon_sym_scoped] = ACTIONS(3638), + [anon_sym_COLON_COLON] = ACTIONS(3842), + [anon_sym_var] = ACTIONS(3638), + [anon_sym_yield] = ACTIONS(3638), + [anon_sym_switch] = ACTIONS(3638), + [anon_sym_when] = ACTIONS(3638), + [sym_discard] = ACTIONS(3638), + [anon_sym_DOT_DOT] = ACTIONS(3640), + [anon_sym_and] = ACTIONS(3638), + [anon_sym_or] = ACTIONS(3638), + [anon_sym_AMP_AMP] = ACTIONS(3640), + [anon_sym_PIPE_PIPE] = ACTIONS(3640), + [anon_sym_QMARK_QMARK] = ACTIONS(3640), + [anon_sym_from] = ACTIONS(3638), + [anon_sym_into] = ACTIONS(3638), + [anon_sym_join] = ACTIONS(3638), + [anon_sym_on] = ACTIONS(3638), + [anon_sym_equals] = ACTIONS(3638), + [anon_sym_let] = ACTIONS(3638), + [anon_sym_orderby] = ACTIONS(3638), + [anon_sym_ascending] = ACTIONS(3638), + [anon_sym_descending] = ACTIONS(3638), + [anon_sym_group] = ACTIONS(3638), + [anon_sym_by] = ACTIONS(3638), + [anon_sym_select] = ACTIONS(3638), + [anon_sym_as] = ACTIONS(3638), + [anon_sym_is] = ACTIONS(3638), + [anon_sym_DASH_GT] = ACTIONS(3640), + [anon_sym_with] = ACTIONS(3638), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_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(3640), }, [2583] = { - [sym_property_pattern_clause] = STATE(2696), - [sym__variable_designation] = STATE(3495), - [sym_parenthesized_variable_designation] = STATE(3463), - [sym_identifier] = STATE(3479), - [sym__reserved_identifier] = STATE(3177), + [sym_property_pattern_clause] = STATE(2763), + [sym__variable_designation] = STATE(3249), + [sym_parenthesized_variable_designation] = STATE(3344), + [sym_identifier] = STATE(3346), + [sym__reserved_identifier] = STATE(3199), [sym_preproc_region] = STATE(2583), [sym_preproc_endregion] = STATE(2583), [sym_preproc_line] = STATE(2583), @@ -435744,66 +435374,66 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2583), [sym_preproc_define] = STATE(2583), [sym_preproc_undef] = STATE(2583), - [sym__identifier_token] = ACTIONS(3875), - [anon_sym_alias] = ACTIONS(3877), - [anon_sym_global] = ACTIONS(3877), - [anon_sym_LBRACK] = ACTIONS(3905), - [anon_sym_LPAREN] = ACTIONS(3905), - [anon_sym_LBRACE] = ACTIONS(3881), - [anon_sym_file] = ACTIONS(3877), - [anon_sym_LT] = ACTIONS(3907), - [anon_sym_GT] = ACTIONS(3907), - [anon_sym_where] = ACTIONS(3877), - [anon_sym_QMARK] = ACTIONS(3907), - [anon_sym_notnull] = ACTIONS(3877), - [anon_sym_unmanaged] = ACTIONS(3877), - [anon_sym_BANG] = ACTIONS(3907), - [anon_sym_PLUS_PLUS] = ACTIONS(3905), - [anon_sym_DASH_DASH] = ACTIONS(3905), - [anon_sym_PLUS] = ACTIONS(3907), - [anon_sym_DASH] = ACTIONS(3907), - [anon_sym_STAR] = ACTIONS(3905), - [anon_sym_SLASH] = ACTIONS(3907), - [anon_sym_PERCENT] = ACTIONS(3905), - [anon_sym_CARET] = ACTIONS(3905), - [anon_sym_PIPE] = ACTIONS(3907), - [anon_sym_AMP] = ACTIONS(3907), - [anon_sym_LT_LT] = ACTIONS(3905), - [anon_sym_GT_GT] = ACTIONS(3907), - [anon_sym_GT_GT_GT] = ACTIONS(3905), - [anon_sym_EQ_EQ] = ACTIONS(3905), - [anon_sym_BANG_EQ] = ACTIONS(3905), - [anon_sym_GT_EQ] = ACTIONS(3905), - [anon_sym_LT_EQ] = ACTIONS(3905), - [anon_sym_DOT] = ACTIONS(3907), - [anon_sym_scoped] = ACTIONS(3877), - [anon_sym_var] = ACTIONS(3877), - [anon_sym_yield] = ACTIONS(3877), - [anon_sym_switch] = ACTIONS(3907), - [anon_sym_when] = ACTIONS(3877), - [sym_discard] = ACTIONS(3897), - [anon_sym_DOT_DOT] = ACTIONS(3905), - [anon_sym_and] = ACTIONS(3907), - [anon_sym_or] = ACTIONS(3907), - [anon_sym_AMP_AMP] = ACTIONS(3905), - [anon_sym_PIPE_PIPE] = ACTIONS(3905), - [anon_sym_QMARK_QMARK] = ACTIONS(3905), - [anon_sym_from] = ACTIONS(3877), - [anon_sym_into] = ACTIONS(3877), - [anon_sym_join] = ACTIONS(3877), - [anon_sym_on] = ACTIONS(3877), - [anon_sym_equals] = ACTIONS(3877), - [anon_sym_let] = ACTIONS(3877), - [anon_sym_orderby] = ACTIONS(3877), - [anon_sym_ascending] = ACTIONS(3877), - [anon_sym_descending] = ACTIONS(3877), - [anon_sym_group] = ACTIONS(3877), - [anon_sym_by] = ACTIONS(3907), - [anon_sym_select] = ACTIONS(3877), - [anon_sym_as] = ACTIONS(3907), - [anon_sym_is] = ACTIONS(3907), - [anon_sym_DASH_GT] = ACTIONS(3905), - [anon_sym_with] = ACTIONS(3907), + [sym__identifier_token] = ACTIONS(3855), + [anon_sym_alias] = ACTIONS(3857), + [anon_sym_global] = ACTIONS(3857), + [anon_sym_LBRACK] = ACTIONS(3885), + [anon_sym_LPAREN] = ACTIONS(3885), + [anon_sym_LBRACE] = ACTIONS(3861), + [anon_sym_file] = ACTIONS(3857), + [anon_sym_LT] = ACTIONS(3887), + [anon_sym_GT] = ACTIONS(3887), + [anon_sym_where] = ACTIONS(3857), + [anon_sym_QMARK] = ACTIONS(3887), + [anon_sym_notnull] = ACTIONS(3857), + [anon_sym_unmanaged] = ACTIONS(3857), + [anon_sym_BANG] = ACTIONS(3887), + [anon_sym_PLUS_PLUS] = ACTIONS(3885), + [anon_sym_DASH_DASH] = ACTIONS(3885), + [anon_sym_PLUS] = ACTIONS(3887), + [anon_sym_DASH] = ACTIONS(3887), + [anon_sym_STAR] = ACTIONS(3885), + [anon_sym_SLASH] = ACTIONS(3887), + [anon_sym_PERCENT] = ACTIONS(3885), + [anon_sym_CARET] = ACTIONS(3885), + [anon_sym_PIPE] = ACTIONS(3887), + [anon_sym_AMP] = ACTIONS(3887), + [anon_sym_LT_LT] = ACTIONS(3885), + [anon_sym_GT_GT] = ACTIONS(3887), + [anon_sym_GT_GT_GT] = ACTIONS(3885), + [anon_sym_EQ_EQ] = ACTIONS(3885), + [anon_sym_BANG_EQ] = ACTIONS(3885), + [anon_sym_GT_EQ] = ACTIONS(3885), + [anon_sym_LT_EQ] = ACTIONS(3885), + [anon_sym_DOT] = ACTIONS(3887), + [anon_sym_scoped] = ACTIONS(3857), + [anon_sym_var] = ACTIONS(3857), + [anon_sym_yield] = ACTIONS(3857), + [anon_sym_switch] = ACTIONS(3887), + [anon_sym_when] = ACTIONS(3857), + [sym_discard] = ACTIONS(3865), + [anon_sym_DOT_DOT] = ACTIONS(3885), + [anon_sym_and] = ACTIONS(3887), + [anon_sym_or] = ACTIONS(3887), + [anon_sym_AMP_AMP] = ACTIONS(3885), + [anon_sym_PIPE_PIPE] = ACTIONS(3885), + [anon_sym_QMARK_QMARK] = ACTIONS(3885), + [anon_sym_from] = ACTIONS(3857), + [anon_sym_into] = ACTIONS(3887), + [anon_sym_join] = ACTIONS(3857), + [anon_sym_on] = ACTIONS(3857), + [anon_sym_equals] = ACTIONS(3857), + [anon_sym_let] = ACTIONS(3857), + [anon_sym_orderby] = ACTIONS(3857), + [anon_sym_ascending] = ACTIONS(3857), + [anon_sym_descending] = ACTIONS(3857), + [anon_sym_group] = ACTIONS(3857), + [anon_sym_by] = ACTIONS(3887), + [anon_sym_select] = ACTIONS(3857), + [anon_sym_as] = ACTIONS(3887), + [anon_sym_is] = ACTIONS(3887), + [anon_sym_DASH_GT] = ACTIONS(3885), + [anon_sym_with] = ACTIONS(3887), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -435817,10 +435447,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { }, [2584] = { [sym_property_pattern_clause] = STATE(2742), - [sym__variable_designation] = STATE(3495), - [sym_parenthesized_variable_designation] = STATE(3463), - [sym_identifier] = STATE(3479), - [sym__reserved_identifier] = STATE(3177), + [sym__variable_designation] = STATE(3471), + [sym_parenthesized_variable_designation] = STATE(3352), + [sym_identifier] = STATE(3355), + [sym__reserved_identifier] = STATE(3199), [sym_preproc_region] = STATE(2584), [sym_preproc_endregion] = STATE(2584), [sym_preproc_line] = STATE(2584), @@ -435830,66 +435460,66 @@ 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(3875), - [anon_sym_alias] = ACTIONS(3877), - [anon_sym_global] = ACTIONS(3877), - [anon_sym_LBRACK] = ACTIONS(3905), - [anon_sym_LPAREN] = ACTIONS(3905), - [anon_sym_LBRACE] = ACTIONS(3881), - [anon_sym_file] = ACTIONS(3877), - [anon_sym_LT] = ACTIONS(3907), - [anon_sym_GT] = ACTIONS(3907), - [anon_sym_where] = ACTIONS(3877), - [anon_sym_QMARK] = ACTIONS(3907), - [anon_sym_notnull] = ACTIONS(3877), - [anon_sym_unmanaged] = ACTIONS(3877), - [anon_sym_BANG] = ACTIONS(3907), - [anon_sym_PLUS_PLUS] = ACTIONS(3905), - [anon_sym_DASH_DASH] = ACTIONS(3905), - [anon_sym_PLUS] = ACTIONS(3907), - [anon_sym_DASH] = ACTIONS(3907), - [anon_sym_STAR] = ACTIONS(3905), - [anon_sym_SLASH] = ACTIONS(3907), - [anon_sym_PERCENT] = ACTIONS(3905), - [anon_sym_CARET] = ACTIONS(3905), - [anon_sym_PIPE] = ACTIONS(3907), - [anon_sym_AMP] = ACTIONS(3907), - [anon_sym_LT_LT] = ACTIONS(3905), - [anon_sym_GT_GT] = ACTIONS(3907), - [anon_sym_GT_GT_GT] = ACTIONS(3905), - [anon_sym_EQ_EQ] = ACTIONS(3905), - [anon_sym_BANG_EQ] = ACTIONS(3905), - [anon_sym_GT_EQ] = ACTIONS(3905), - [anon_sym_LT_EQ] = ACTIONS(3905), - [anon_sym_DOT] = ACTIONS(3907), - [anon_sym_scoped] = ACTIONS(3877), - [anon_sym_var] = ACTIONS(3877), - [anon_sym_yield] = ACTIONS(3877), - [anon_sym_switch] = ACTIONS(3907), - [anon_sym_when] = ACTIONS(3877), - [sym_discard] = ACTIONS(3897), - [anon_sym_DOT_DOT] = ACTIONS(3905), - [anon_sym_and] = ACTIONS(3907), - [anon_sym_or] = ACTIONS(3907), - [anon_sym_AMP_AMP] = ACTIONS(3905), - [anon_sym_PIPE_PIPE] = ACTIONS(3905), - [anon_sym_QMARK_QMARK] = ACTIONS(3905), - [anon_sym_from] = ACTIONS(3877), - [anon_sym_into] = ACTIONS(3877), - [anon_sym_join] = ACTIONS(3877), - [anon_sym_on] = ACTIONS(3877), - [anon_sym_equals] = ACTIONS(3907), - [anon_sym_let] = ACTIONS(3877), - [anon_sym_orderby] = ACTIONS(3877), - [anon_sym_ascending] = ACTIONS(3877), - [anon_sym_descending] = ACTIONS(3877), - [anon_sym_group] = ACTIONS(3877), - [anon_sym_by] = ACTIONS(3877), - [anon_sym_select] = ACTIONS(3877), - [anon_sym_as] = ACTIONS(3907), - [anon_sym_is] = ACTIONS(3907), - [anon_sym_DASH_GT] = ACTIONS(3905), - [anon_sym_with] = ACTIONS(3907), + [sym__identifier_token] = ACTIONS(3855), + [anon_sym_alias] = ACTIONS(3857), + [anon_sym_global] = ACTIONS(3857), + [anon_sym_LBRACK] = ACTIONS(3885), + [anon_sym_LPAREN] = ACTIONS(3885), + [anon_sym_LBRACE] = ACTIONS(3861), + [anon_sym_file] = ACTIONS(3857), + [anon_sym_LT] = ACTIONS(3887), + [anon_sym_GT] = ACTIONS(3887), + [anon_sym_where] = ACTIONS(3857), + [anon_sym_QMARK] = ACTIONS(3887), + [anon_sym_notnull] = ACTIONS(3857), + [anon_sym_unmanaged] = ACTIONS(3857), + [anon_sym_BANG] = ACTIONS(3887), + [anon_sym_PLUS_PLUS] = ACTIONS(3885), + [anon_sym_DASH_DASH] = ACTIONS(3885), + [anon_sym_PLUS] = ACTIONS(3887), + [anon_sym_DASH] = ACTIONS(3887), + [anon_sym_STAR] = ACTIONS(3885), + [anon_sym_SLASH] = ACTIONS(3887), + [anon_sym_PERCENT] = ACTIONS(3885), + [anon_sym_CARET] = ACTIONS(3885), + [anon_sym_PIPE] = ACTIONS(3887), + [anon_sym_AMP] = ACTIONS(3887), + [anon_sym_LT_LT] = ACTIONS(3885), + [anon_sym_GT_GT] = ACTIONS(3887), + [anon_sym_GT_GT_GT] = ACTIONS(3885), + [anon_sym_EQ_EQ] = ACTIONS(3885), + [anon_sym_BANG_EQ] = ACTIONS(3885), + [anon_sym_GT_EQ] = ACTIONS(3885), + [anon_sym_LT_EQ] = ACTIONS(3885), + [anon_sym_DOT] = ACTIONS(3887), + [anon_sym_scoped] = ACTIONS(3857), + [anon_sym_var] = ACTIONS(3857), + [anon_sym_yield] = ACTIONS(3857), + [anon_sym_switch] = ACTIONS(3887), + [anon_sym_when] = ACTIONS(3857), + [sym_discard] = ACTIONS(3877), + [anon_sym_DOT_DOT] = ACTIONS(3885), + [anon_sym_and] = ACTIONS(3887), + [anon_sym_or] = ACTIONS(3887), + [anon_sym_AMP_AMP] = ACTIONS(3885), + [anon_sym_PIPE_PIPE] = ACTIONS(3885), + [anon_sym_QMARK_QMARK] = ACTIONS(3885), + [anon_sym_from] = ACTIONS(3857), + [anon_sym_into] = ACTIONS(3857), + [anon_sym_join] = ACTIONS(3857), + [anon_sym_on] = ACTIONS(3887), + [anon_sym_equals] = ACTIONS(3857), + [anon_sym_let] = ACTIONS(3857), + [anon_sym_orderby] = ACTIONS(3857), + [anon_sym_ascending] = ACTIONS(3857), + [anon_sym_descending] = ACTIONS(3857), + [anon_sym_group] = ACTIONS(3857), + [anon_sym_by] = ACTIONS(3857), + [anon_sym_select] = ACTIONS(3857), + [anon_sym_as] = ACTIONS(3887), + [anon_sym_is] = ACTIONS(3887), + [anon_sym_DASH_GT] = ACTIONS(3885), + [anon_sym_with] = ACTIONS(3887), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -435902,11 +435532,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2585] = { - [sym_property_pattern_clause] = STATE(2736), - [sym__variable_designation] = STATE(4141), - [sym_parenthesized_variable_designation] = STATE(4173), - [sym_identifier] = STATE(4177), - [sym__reserved_identifier] = STATE(2904), + [sym_property_pattern_clause] = STATE(2796), + [sym__variable_designation] = STATE(3224), + [sym_parenthesized_variable_designation] = STATE(3344), + [sym_identifier] = STATE(3346), + [sym__reserved_identifier] = STATE(3199), [sym_preproc_region] = STATE(2585), [sym_preproc_endregion] = STATE(2585), [sym_preproc_line] = STATE(2585), @@ -435916,66 +435546,66 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2585), [sym_preproc_define] = STATE(2585), [sym_preproc_undef] = STATE(2585), - [sym__identifier_token] = ACTIONS(3861), - [anon_sym_alias] = ACTIONS(3863), - [anon_sym_global] = ACTIONS(3863), - [anon_sym_LBRACK] = ACTIONS(3913), - [anon_sym_LPAREN] = ACTIONS(3913), - [anon_sym_LBRACE] = ACTIONS(3881), - [anon_sym_file] = ACTIONS(3863), - [anon_sym_LT] = ACTIONS(3915), - [anon_sym_GT] = ACTIONS(3915), - [anon_sym_where] = ACTIONS(3915), - [anon_sym_QMARK] = ACTIONS(3915), - [anon_sym_notnull] = ACTIONS(3863), - [anon_sym_unmanaged] = ACTIONS(3863), - [anon_sym_BANG] = ACTIONS(3915), - [anon_sym_PLUS_PLUS] = ACTIONS(3913), - [anon_sym_DASH_DASH] = ACTIONS(3913), - [anon_sym_PLUS] = ACTIONS(3915), - [anon_sym_DASH] = ACTIONS(3915), - [anon_sym_STAR] = ACTIONS(3913), - [anon_sym_SLASH] = ACTIONS(3915), - [anon_sym_PERCENT] = ACTIONS(3913), - [anon_sym_CARET] = ACTIONS(3913), - [anon_sym_PIPE] = ACTIONS(3915), - [anon_sym_AMP] = ACTIONS(3915), - [anon_sym_LT_LT] = ACTIONS(3913), - [anon_sym_GT_GT] = ACTIONS(3915), - [anon_sym_GT_GT_GT] = ACTIONS(3913), - [anon_sym_EQ_EQ] = ACTIONS(3913), - [anon_sym_BANG_EQ] = ACTIONS(3913), - [anon_sym_GT_EQ] = ACTIONS(3913), - [anon_sym_LT_EQ] = ACTIONS(3913), - [anon_sym_DOT] = ACTIONS(3915), - [anon_sym_scoped] = ACTIONS(3863), - [anon_sym_var] = ACTIONS(3863), - [anon_sym_yield] = ACTIONS(3863), - [anon_sym_switch] = ACTIONS(3915), - [anon_sym_when] = ACTIONS(3863), - [sym_discard] = ACTIONS(4209), - [anon_sym_DOT_DOT] = ACTIONS(3913), - [anon_sym_and] = ACTIONS(3915), - [anon_sym_or] = ACTIONS(3915), - [anon_sym_AMP_AMP] = ACTIONS(3913), - [anon_sym_PIPE_PIPE] = ACTIONS(3913), - [anon_sym_QMARK_QMARK] = ACTIONS(3913), - [anon_sym_from] = ACTIONS(3915), - [anon_sym_into] = ACTIONS(3915), - [anon_sym_join] = ACTIONS(3915), - [anon_sym_on] = ACTIONS(3863), - [anon_sym_equals] = ACTIONS(3863), - [anon_sym_let] = ACTIONS(3915), - [anon_sym_orderby] = ACTIONS(3915), - [anon_sym_ascending] = ACTIONS(3863), - [anon_sym_descending] = ACTIONS(3863), - [anon_sym_group] = ACTIONS(3915), - [anon_sym_by] = ACTIONS(3863), - [anon_sym_select] = ACTIONS(3915), - [anon_sym_as] = ACTIONS(3915), - [anon_sym_is] = ACTIONS(3915), - [anon_sym_DASH_GT] = ACTIONS(3913), - [anon_sym_with] = ACTIONS(3915), + [sym__identifier_token] = ACTIONS(3855), + [anon_sym_alias] = ACTIONS(3857), + [anon_sym_global] = ACTIONS(3857), + [anon_sym_LBRACK] = ACTIONS(3893), + [anon_sym_LPAREN] = ACTIONS(3893), + [anon_sym_LBRACE] = ACTIONS(3861), + [anon_sym_file] = ACTIONS(3857), + [anon_sym_LT] = ACTIONS(3895), + [anon_sym_GT] = ACTIONS(3895), + [anon_sym_where] = ACTIONS(3857), + [anon_sym_QMARK] = ACTIONS(3895), + [anon_sym_notnull] = ACTIONS(3857), + [anon_sym_unmanaged] = ACTIONS(3857), + [anon_sym_BANG] = ACTIONS(3895), + [anon_sym_PLUS_PLUS] = ACTIONS(3893), + [anon_sym_DASH_DASH] = ACTIONS(3893), + [anon_sym_PLUS] = ACTIONS(3895), + [anon_sym_DASH] = ACTIONS(3895), + [anon_sym_STAR] = ACTIONS(3893), + [anon_sym_SLASH] = ACTIONS(3895), + [anon_sym_PERCENT] = ACTIONS(3893), + [anon_sym_CARET] = ACTIONS(3893), + [anon_sym_PIPE] = ACTIONS(3895), + [anon_sym_AMP] = ACTIONS(3895), + [anon_sym_LT_LT] = ACTIONS(3893), + [anon_sym_GT_GT] = ACTIONS(3895), + [anon_sym_GT_GT_GT] = ACTIONS(3893), + [anon_sym_EQ_EQ] = ACTIONS(3893), + [anon_sym_BANG_EQ] = ACTIONS(3893), + [anon_sym_GT_EQ] = ACTIONS(3893), + [anon_sym_LT_EQ] = ACTIONS(3893), + [anon_sym_DOT] = ACTIONS(3895), + [anon_sym_scoped] = ACTIONS(3857), + [anon_sym_var] = ACTIONS(3857), + [anon_sym_yield] = ACTIONS(3857), + [anon_sym_switch] = ACTIONS(3895), + [anon_sym_when] = ACTIONS(3857), + [sym_discard] = ACTIONS(3865), + [anon_sym_DOT_DOT] = ACTIONS(3893), + [anon_sym_and] = ACTIONS(3895), + [anon_sym_or] = ACTIONS(3895), + [anon_sym_AMP_AMP] = ACTIONS(3893), + [anon_sym_PIPE_PIPE] = ACTIONS(3893), + [anon_sym_QMARK_QMARK] = ACTIONS(3893), + [anon_sym_from] = ACTIONS(3857), + [anon_sym_into] = ACTIONS(3895), + [anon_sym_join] = ACTIONS(3857), + [anon_sym_on] = ACTIONS(3895), + [anon_sym_equals] = ACTIONS(3857), + [anon_sym_let] = ACTIONS(3857), + [anon_sym_orderby] = ACTIONS(3857), + [anon_sym_ascending] = ACTIONS(3857), + [anon_sym_descending] = ACTIONS(3857), + [anon_sym_group] = ACTIONS(3857), + [anon_sym_by] = ACTIONS(3857), + [anon_sym_select] = ACTIONS(3857), + [anon_sym_as] = ACTIONS(3895), + [anon_sym_is] = ACTIONS(3895), + [anon_sym_DASH_GT] = ACTIONS(3893), + [anon_sym_with] = ACTIONS(3895), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -435997,71 +435627,71 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2586), [sym_preproc_define] = STATE(2586), [sym_preproc_undef] = STATE(2586), - [sym__identifier_token] = ACTIONS(3782), - [anon_sym_alias] = ACTIONS(3782), - [anon_sym_global] = ACTIONS(3782), - [anon_sym_static] = ACTIONS(3782), - [anon_sym_LBRACK] = ACTIONS(3784), - [anon_sym_LPAREN] = ACTIONS(3784), - [anon_sym_ref] = ACTIONS(3782), - [anon_sym_delegate] = ACTIONS(3782), - [anon_sym_async] = ACTIONS(3782), - [anon_sym_file] = ACTIONS(3782), - [anon_sym_LT] = ACTIONS(2963), - [anon_sym_GT] = ACTIONS(2963), - [anon_sym_in] = ACTIONS(2963), - [anon_sym_where] = ACTIONS(3782), - [anon_sym_QMARK] = ACTIONS(2963), - [anon_sym_notnull] = ACTIONS(3782), - [anon_sym_unmanaged] = ACTIONS(3782), - [anon_sym_BANG] = ACTIONS(2963), - [anon_sym_PLUS_PLUS] = ACTIONS(2965), - [anon_sym_DASH_DASH] = ACTIONS(2965), - [anon_sym_PLUS] = ACTIONS(2963), - [anon_sym_DASH] = ACTIONS(2963), - [anon_sym_STAR] = ACTIONS(2965), - [anon_sym_SLASH] = ACTIONS(2963), - [anon_sym_PERCENT] = ACTIONS(2965), - [anon_sym_CARET] = ACTIONS(2965), - [anon_sym_PIPE] = ACTIONS(2963), - [anon_sym_AMP] = ACTIONS(2963), - [anon_sym_LT_LT] = ACTIONS(2965), - [anon_sym_GT_GT] = ACTIONS(2963), - [anon_sym_GT_GT_GT] = ACTIONS(2965), - [anon_sym_EQ_EQ] = ACTIONS(2965), - [anon_sym_BANG_EQ] = ACTIONS(2965), - [anon_sym_GT_EQ] = ACTIONS(2965), - [anon_sym_LT_EQ] = ACTIONS(2965), - [anon_sym_DOT] = ACTIONS(2963), - [anon_sym_scoped] = ACTIONS(3782), - [anon_sym_var] = ACTIONS(3782), - [sym_predefined_type] = ACTIONS(3782), - [anon_sym_yield] = ACTIONS(3782), - [anon_sym_switch] = ACTIONS(2963), - [anon_sym_when] = ACTIONS(3782), - [anon_sym_DOT_DOT] = ACTIONS(2965), - [anon_sym_and] = ACTIONS(2963), - [anon_sym_or] = ACTIONS(2963), - [anon_sym_AMP_AMP] = ACTIONS(2965), - [anon_sym_PIPE_PIPE] = ACTIONS(2965), - [anon_sym_QMARK_QMARK] = ACTIONS(2965), - [anon_sym_from] = ACTIONS(3782), - [anon_sym_into] = ACTIONS(3782), - [anon_sym_join] = ACTIONS(3782), - [anon_sym_on] = ACTIONS(3782), - [anon_sym_equals] = ACTIONS(3782), - [anon_sym_let] = ACTIONS(3782), - [anon_sym_orderby] = ACTIONS(3782), - [anon_sym_ascending] = ACTIONS(3782), - [anon_sym_descending] = ACTIONS(3782), - [anon_sym_group] = ACTIONS(3782), - [anon_sym_by] = ACTIONS(3782), - [anon_sym_select] = ACTIONS(3782), - [anon_sym_as] = ACTIONS(2963), - [anon_sym_is] = ACTIONS(2963), - [anon_sym_DASH_GT] = ACTIONS(2965), - [anon_sym_with] = ACTIONS(2963), - [aux_sym_preproc_if_token1] = ACTIONS(3784), + [sym__identifier_token] = ACTIONS(3309), + [anon_sym_extern] = ACTIONS(3309), + [anon_sym_alias] = ACTIONS(3309), + [anon_sym_global] = ACTIONS(3309), + [anon_sym_using] = ACTIONS(3309), + [anon_sym_unsafe] = ACTIONS(3309), + [anon_sym_static] = ACTIONS(3309), + [anon_sym_LBRACK] = ACTIONS(3311), + [anon_sym_LPAREN] = ACTIONS(3311), + [anon_sym_event] = ACTIONS(3309), + [anon_sym_namespace] = ACTIONS(3309), + [anon_sym_class] = ACTIONS(3309), + [anon_sym_ref] = ACTIONS(3309), + [anon_sym_struct] = ACTIONS(3309), + [anon_sym_enum] = ACTIONS(3309), + [anon_sym_RBRACE] = ACTIONS(3311), + [anon_sym_interface] = ACTIONS(3309), + [anon_sym_delegate] = ACTIONS(3309), + [anon_sym_record] = ACTIONS(3309), + [anon_sym_abstract] = ACTIONS(3309), + [anon_sym_async] = ACTIONS(3309), + [anon_sym_const] = ACTIONS(3309), + [anon_sym_file] = ACTIONS(3309), + [anon_sym_fixed] = ACTIONS(3309), + [anon_sym_internal] = ACTIONS(3309), + [anon_sym_new] = ACTIONS(3309), + [anon_sym_override] = ACTIONS(3309), + [anon_sym_partial] = ACTIONS(3309), + [anon_sym_private] = ACTIONS(3309), + [anon_sym_protected] = ACTIONS(3309), + [anon_sym_public] = ACTIONS(3309), + [anon_sym_readonly] = ACTIONS(3309), + [anon_sym_required] = ACTIONS(3309), + [anon_sym_sealed] = ACTIONS(3309), + [anon_sym_virtual] = ACTIONS(3309), + [anon_sym_volatile] = ACTIONS(3309), + [anon_sym_where] = ACTIONS(3309), + [anon_sym_notnull] = ACTIONS(3309), + [anon_sym_unmanaged] = ACTIONS(3309), + [anon_sym_TILDE] = ACTIONS(3311), + [anon_sym_implicit] = ACTIONS(3309), + [anon_sym_explicit] = ACTIONS(3309), + [anon_sym_scoped] = ACTIONS(3309), + [anon_sym_var] = ACTIONS(3309), + [sym_predefined_type] = ACTIONS(3309), + [anon_sym_while] = ACTIONS(3309), + [anon_sym_yield] = ACTIONS(3309), + [anon_sym_when] = ACTIONS(3309), + [anon_sym_else] = ACTIONS(3309), + [anon_sym_from] = ACTIONS(3309), + [anon_sym_into] = ACTIONS(3309), + [anon_sym_join] = ACTIONS(3309), + [anon_sym_on] = ACTIONS(3309), + [anon_sym_equals] = ACTIONS(3309), + [anon_sym_let] = ACTIONS(3309), + [anon_sym_orderby] = ACTIONS(3309), + [anon_sym_ascending] = ACTIONS(3309), + [anon_sym_descending] = ACTIONS(3309), + [anon_sym_group] = ACTIONS(3309), + [anon_sym_by] = ACTIONS(3309), + [anon_sym_select] = ACTIONS(3309), + [aux_sym_preproc_if_token1] = ACTIONS(3311), + [aux_sym_preproc_if_token3] = ACTIONS(3311), + [aux_sym_preproc_else_token1] = ACTIONS(3311), + [aux_sym_preproc_elif_token1] = ACTIONS(3311), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -436074,11 +435704,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2587] = { - [sym_property_pattern_clause] = STATE(2693), - [sym__variable_designation] = STATE(4161), - [sym_parenthesized_variable_designation] = STATE(4173), - [sym_identifier] = STATE(4177), - [sym__reserved_identifier] = STATE(2945), + [sym_property_pattern_clause] = STATE(2761), + [sym__variable_designation] = STATE(3224), + [sym_parenthesized_variable_designation] = STATE(3344), + [sym_identifier] = STATE(3346), + [sym__reserved_identifier] = STATE(3199), [sym_preproc_region] = STATE(2587), [sym_preproc_endregion] = STATE(2587), [sym_preproc_line] = STATE(2587), @@ -436088,66 +435718,66 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2587), [sym_preproc_define] = STATE(2587), [sym_preproc_undef] = STATE(2587), - [sym__identifier_token] = ACTIONS(3887), - [anon_sym_alias] = ACTIONS(3889), - [anon_sym_global] = ACTIONS(3889), - [anon_sym_LBRACK] = ACTIONS(3905), - [anon_sym_LPAREN] = ACTIONS(3905), - [anon_sym_LBRACE] = ACTIONS(3881), - [anon_sym_file] = ACTIONS(3889), - [anon_sym_LT] = ACTIONS(3907), - [anon_sym_GT] = ACTIONS(3907), - [anon_sym_where] = ACTIONS(3907), - [anon_sym_QMARK] = ACTIONS(3907), - [anon_sym_notnull] = ACTIONS(3889), - [anon_sym_unmanaged] = ACTIONS(3889), - [anon_sym_BANG] = ACTIONS(3907), - [anon_sym_PLUS_PLUS] = ACTIONS(3905), - [anon_sym_DASH_DASH] = ACTIONS(3905), - [anon_sym_PLUS] = ACTIONS(3907), - [anon_sym_DASH] = ACTIONS(3907), - [anon_sym_STAR] = ACTIONS(3905), - [anon_sym_SLASH] = ACTIONS(3907), - [anon_sym_PERCENT] = ACTIONS(3905), - [anon_sym_CARET] = ACTIONS(3905), - [anon_sym_PIPE] = ACTIONS(3907), - [anon_sym_AMP] = ACTIONS(3907), - [anon_sym_LT_LT] = ACTIONS(3905), - [anon_sym_GT_GT] = ACTIONS(3907), - [anon_sym_GT_GT_GT] = ACTIONS(3905), - [anon_sym_EQ_EQ] = ACTIONS(3905), - [anon_sym_BANG_EQ] = ACTIONS(3905), - [anon_sym_GT_EQ] = ACTIONS(3905), - [anon_sym_LT_EQ] = ACTIONS(3905), - [anon_sym_DOT] = ACTIONS(3907), - [anon_sym_scoped] = ACTIONS(3889), - [anon_sym_var] = ACTIONS(3889), - [anon_sym_yield] = ACTIONS(3889), - [anon_sym_switch] = ACTIONS(3907), - [anon_sym_when] = ACTIONS(3889), - [sym_discard] = ACTIONS(4209), - [anon_sym_DOT_DOT] = ACTIONS(3905), - [anon_sym_and] = ACTIONS(3907), - [anon_sym_or] = ACTIONS(3907), - [anon_sym_AMP_AMP] = ACTIONS(3905), - [anon_sym_PIPE_PIPE] = ACTIONS(3905), - [anon_sym_QMARK_QMARK] = ACTIONS(3905), - [anon_sym_from] = ACTIONS(3907), - [anon_sym_into] = ACTIONS(3889), - [anon_sym_join] = ACTIONS(3907), - [anon_sym_on] = ACTIONS(3889), - [anon_sym_equals] = ACTIONS(3889), - [anon_sym_let] = ACTIONS(3907), - [anon_sym_orderby] = ACTIONS(3907), - [anon_sym_ascending] = ACTIONS(3889), - [anon_sym_descending] = ACTIONS(3889), - [anon_sym_group] = ACTIONS(3907), - [anon_sym_by] = ACTIONS(3889), - [anon_sym_select] = ACTIONS(3907), - [anon_sym_as] = ACTIONS(3907), - [anon_sym_is] = ACTIONS(3907), - [anon_sym_DASH_GT] = ACTIONS(3905), - [anon_sym_with] = ACTIONS(3907), + [sym__identifier_token] = ACTIONS(3855), + [anon_sym_alias] = ACTIONS(3857), + [anon_sym_global] = ACTIONS(3857), + [anon_sym_LBRACK] = ACTIONS(3893), + [anon_sym_LPAREN] = ACTIONS(3893), + [anon_sym_LBRACE] = ACTIONS(3861), + [anon_sym_file] = ACTIONS(3857), + [anon_sym_LT] = ACTIONS(3895), + [anon_sym_GT] = ACTIONS(3895), + [anon_sym_where] = ACTIONS(3857), + [anon_sym_QMARK] = ACTIONS(3895), + [anon_sym_notnull] = ACTIONS(3857), + [anon_sym_unmanaged] = ACTIONS(3857), + [anon_sym_BANG] = ACTIONS(3895), + [anon_sym_PLUS_PLUS] = ACTIONS(3893), + [anon_sym_DASH_DASH] = ACTIONS(3893), + [anon_sym_PLUS] = ACTIONS(3895), + [anon_sym_DASH] = ACTIONS(3895), + [anon_sym_STAR] = ACTIONS(3893), + [anon_sym_SLASH] = ACTIONS(3895), + [anon_sym_PERCENT] = ACTIONS(3893), + [anon_sym_CARET] = ACTIONS(3893), + [anon_sym_PIPE] = ACTIONS(3895), + [anon_sym_AMP] = ACTIONS(3895), + [anon_sym_LT_LT] = ACTIONS(3893), + [anon_sym_GT_GT] = ACTIONS(3895), + [anon_sym_GT_GT_GT] = ACTIONS(3893), + [anon_sym_EQ_EQ] = ACTIONS(3893), + [anon_sym_BANG_EQ] = ACTIONS(3893), + [anon_sym_GT_EQ] = ACTIONS(3893), + [anon_sym_LT_EQ] = ACTIONS(3893), + [anon_sym_DOT] = ACTIONS(3895), + [anon_sym_scoped] = ACTIONS(3857), + [anon_sym_var] = ACTIONS(3857), + [anon_sym_yield] = ACTIONS(3857), + [anon_sym_switch] = ACTIONS(3895), + [anon_sym_when] = ACTIONS(3857), + [sym_discard] = ACTIONS(3865), + [anon_sym_DOT_DOT] = ACTIONS(3893), + [anon_sym_and] = ACTIONS(3895), + [anon_sym_or] = ACTIONS(3895), + [anon_sym_AMP_AMP] = ACTIONS(3893), + [anon_sym_PIPE_PIPE] = ACTIONS(3893), + [anon_sym_QMARK_QMARK] = ACTIONS(3893), + [anon_sym_from] = ACTIONS(3857), + [anon_sym_into] = ACTIONS(3895), + [anon_sym_join] = ACTIONS(3857), + [anon_sym_on] = ACTIONS(3857), + [anon_sym_equals] = ACTIONS(3857), + [anon_sym_let] = ACTIONS(3857), + [anon_sym_orderby] = ACTIONS(3857), + [anon_sym_ascending] = ACTIONS(3857), + [anon_sym_descending] = ACTIONS(3857), + [anon_sym_group] = ACTIONS(3857), + [anon_sym_by] = ACTIONS(3895), + [anon_sym_select] = ACTIONS(3857), + [anon_sym_as] = ACTIONS(3895), + [anon_sym_is] = ACTIONS(3895), + [anon_sym_DASH_GT] = ACTIONS(3893), + [anon_sym_with] = ACTIONS(3895), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -436160,11 +435790,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2588] = { - [sym_property_pattern_clause] = STATE(2788), - [sym__variable_designation] = STATE(3349), - [sym_parenthesized_variable_designation] = STATE(3340), - [sym_identifier] = STATE(3345), - [sym__reserved_identifier] = STATE(3177), + [sym__variable_designation] = STATE(3227), + [sym_parenthesized_variable_designation] = STATE(3344), + [sym_identifier] = STATE(3346), + [sym__reserved_identifier] = STATE(3199), [sym_preproc_region] = STATE(2588), [sym_preproc_endregion] = STATE(2588), [sym_preproc_line] = STATE(2588), @@ -436174,66 +435803,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(3875), - [anon_sym_alias] = ACTIONS(3877), - [anon_sym_global] = ACTIONS(3877), - [anon_sym_LBRACK] = ACTIONS(3905), - [anon_sym_LPAREN] = ACTIONS(3905), - [anon_sym_LBRACE] = ACTIONS(3881), - [anon_sym_file] = ACTIONS(3877), - [anon_sym_LT] = ACTIONS(3907), - [anon_sym_GT] = ACTIONS(3907), - [anon_sym_where] = ACTIONS(3877), - [anon_sym_QMARK] = ACTIONS(3907), - [anon_sym_notnull] = ACTIONS(3877), - [anon_sym_unmanaged] = ACTIONS(3877), - [anon_sym_BANG] = ACTIONS(3907), - [anon_sym_PLUS_PLUS] = ACTIONS(3905), - [anon_sym_DASH_DASH] = ACTIONS(3905), - [anon_sym_PLUS] = ACTIONS(3907), - [anon_sym_DASH] = ACTIONS(3907), - [anon_sym_STAR] = ACTIONS(3905), - [anon_sym_SLASH] = ACTIONS(3907), - [anon_sym_PERCENT] = ACTIONS(3905), - [anon_sym_CARET] = ACTIONS(3905), - [anon_sym_PIPE] = ACTIONS(3907), - [anon_sym_AMP] = ACTIONS(3907), - [anon_sym_LT_LT] = ACTIONS(3905), - [anon_sym_GT_GT] = ACTIONS(3907), - [anon_sym_GT_GT_GT] = ACTIONS(3905), - [anon_sym_EQ_EQ] = ACTIONS(3905), - [anon_sym_BANG_EQ] = ACTIONS(3905), - [anon_sym_GT_EQ] = ACTIONS(3905), - [anon_sym_LT_EQ] = ACTIONS(3905), - [anon_sym_DOT] = ACTIONS(3907), - [anon_sym_scoped] = ACTIONS(3877), - [anon_sym_var] = ACTIONS(3877), - [anon_sym_yield] = ACTIONS(3877), - [anon_sym_switch] = ACTIONS(3907), - [anon_sym_when] = ACTIONS(3877), - [sym_discard] = ACTIONS(3885), - [anon_sym_DOT_DOT] = ACTIONS(3905), - [anon_sym_and] = ACTIONS(3907), - [anon_sym_or] = ACTIONS(3907), - [anon_sym_AMP_AMP] = ACTIONS(3905), - [anon_sym_PIPE_PIPE] = ACTIONS(3905), - [anon_sym_QMARK_QMARK] = ACTIONS(3905), - [anon_sym_from] = ACTIONS(3877), - [anon_sym_into] = ACTIONS(3907), - [anon_sym_join] = ACTIONS(3877), - [anon_sym_on] = ACTIONS(3877), - [anon_sym_equals] = ACTIONS(3907), - [anon_sym_let] = ACTIONS(3877), - [anon_sym_orderby] = ACTIONS(3877), - [anon_sym_ascending] = ACTIONS(3877), - [anon_sym_descending] = ACTIONS(3877), - [anon_sym_group] = ACTIONS(3877), - [anon_sym_by] = ACTIONS(3877), - [anon_sym_select] = ACTIONS(3877), - [anon_sym_as] = ACTIONS(3907), - [anon_sym_is] = ACTIONS(3907), - [anon_sym_DASH_GT] = ACTIONS(3905), - [anon_sym_with] = ACTIONS(3907), + [sym__identifier_token] = ACTIONS(3855), + [anon_sym_alias] = ACTIONS(3857), + [anon_sym_global] = ACTIONS(3857), + [anon_sym_LBRACK] = ACTIONS(3893), + [anon_sym_COLON] = ACTIONS(3893), + [anon_sym_LPAREN] = ACTIONS(3893), + [anon_sym_file] = ACTIONS(3857), + [anon_sym_LT] = ACTIONS(3895), + [anon_sym_GT] = ACTIONS(3895), + [anon_sym_where] = ACTIONS(3857), + [anon_sym_QMARK] = ACTIONS(3895), + [anon_sym_notnull] = ACTIONS(3857), + [anon_sym_unmanaged] = ACTIONS(3857), + [anon_sym_BANG] = ACTIONS(3895), + [anon_sym_PLUS_PLUS] = ACTIONS(3893), + [anon_sym_DASH_DASH] = ACTIONS(3893), + [anon_sym_PLUS] = ACTIONS(3895), + [anon_sym_DASH] = ACTIONS(3895), + [anon_sym_STAR] = ACTIONS(3893), + [anon_sym_SLASH] = ACTIONS(3895), + [anon_sym_PERCENT] = ACTIONS(3893), + [anon_sym_CARET] = ACTIONS(3893), + [anon_sym_PIPE] = ACTIONS(3895), + [anon_sym_AMP] = ACTIONS(3895), + [anon_sym_LT_LT] = ACTIONS(3893), + [anon_sym_GT_GT] = ACTIONS(3895), + [anon_sym_GT_GT_GT] = ACTIONS(3893), + [anon_sym_EQ_EQ] = ACTIONS(3893), + [anon_sym_BANG_EQ] = ACTIONS(3893), + [anon_sym_GT_EQ] = ACTIONS(3893), + [anon_sym_LT_EQ] = ACTIONS(3893), + [anon_sym_DOT] = ACTIONS(3895), + [anon_sym_scoped] = ACTIONS(3857), + [anon_sym_EQ_GT] = ACTIONS(3893), + [anon_sym_var] = ACTIONS(3857), + [anon_sym_yield] = ACTIONS(3857), + [anon_sym_switch] = ACTIONS(3895), + [anon_sym_when] = ACTIONS(3895), + [sym_discard] = ACTIONS(3865), + [anon_sym_DOT_DOT] = ACTIONS(3893), + [anon_sym_and] = ACTIONS(3895), + [anon_sym_or] = ACTIONS(3895), + [anon_sym_AMP_AMP] = ACTIONS(3893), + [anon_sym_PIPE_PIPE] = ACTIONS(3893), + [anon_sym_QMARK_QMARK] = ACTIONS(3893), + [anon_sym_from] = ACTIONS(3857), + [anon_sym_into] = ACTIONS(3895), + [anon_sym_join] = ACTIONS(3857), + [anon_sym_on] = ACTIONS(3857), + [anon_sym_equals] = ACTIONS(3857), + [anon_sym_let] = ACTIONS(3857), + [anon_sym_orderby] = ACTIONS(3857), + [anon_sym_ascending] = ACTIONS(3857), + [anon_sym_descending] = ACTIONS(3857), + [anon_sym_group] = ACTIONS(3857), + [anon_sym_by] = ACTIONS(3857), + [anon_sym_select] = ACTIONS(3857), + [anon_sym_as] = ACTIONS(3895), + [anon_sym_is] = ACTIONS(3895), + [anon_sym_DASH_GT] = ACTIONS(3893), + [anon_sym_with] = ACTIONS(3895), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -436246,10 +435876,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2589] = { - [sym__variable_designation] = STATE(3350), - [sym_parenthesized_variable_designation] = STATE(3340), - [sym_identifier] = STATE(3345), - [sym__reserved_identifier] = STATE(3177), + [sym__variable_designation] = STATE(3449), + [sym_parenthesized_variable_designation] = STATE(3352), + [sym_identifier] = STATE(3355), + [sym__reserved_identifier] = STATE(3199), [sym_preproc_region] = STATE(2589), [sym_preproc_endregion] = STATE(2589), [sym_preproc_line] = STATE(2589), @@ -436259,67 +435889,67 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2589), [sym_preproc_define] = STATE(2589), [sym_preproc_undef] = STATE(2589), - [sym__identifier_token] = ACTIONS(3875), - [anon_sym_alias] = ACTIONS(3877), - [anon_sym_global] = ACTIONS(3877), - [anon_sym_LBRACK] = ACTIONS(3905), - [anon_sym_COLON] = ACTIONS(3905), - [anon_sym_LPAREN] = ACTIONS(3905), - [anon_sym_file] = ACTIONS(3877), - [anon_sym_LT] = ACTIONS(3907), - [anon_sym_GT] = ACTIONS(3907), - [anon_sym_where] = ACTIONS(3877), - [anon_sym_QMARK] = ACTIONS(3907), - [anon_sym_notnull] = ACTIONS(3877), - [anon_sym_unmanaged] = ACTIONS(3877), - [anon_sym_BANG] = ACTIONS(3907), - [anon_sym_PLUS_PLUS] = ACTIONS(3905), - [anon_sym_DASH_DASH] = ACTIONS(3905), - [anon_sym_PLUS] = ACTIONS(3907), - [anon_sym_DASH] = ACTIONS(3907), - [anon_sym_STAR] = ACTIONS(3905), - [anon_sym_SLASH] = ACTIONS(3907), - [anon_sym_PERCENT] = ACTIONS(3905), - [anon_sym_CARET] = ACTIONS(3905), - [anon_sym_PIPE] = ACTIONS(3907), - [anon_sym_AMP] = ACTIONS(3907), - [anon_sym_LT_LT] = ACTIONS(3905), - [anon_sym_GT_GT] = ACTIONS(3907), - [anon_sym_GT_GT_GT] = ACTIONS(3905), - [anon_sym_EQ_EQ] = ACTIONS(3905), - [anon_sym_BANG_EQ] = ACTIONS(3905), - [anon_sym_GT_EQ] = ACTIONS(3905), - [anon_sym_LT_EQ] = ACTIONS(3905), - [anon_sym_DOT] = ACTIONS(3907), - [anon_sym_scoped] = ACTIONS(3877), - [anon_sym_EQ_GT] = ACTIONS(3905), - [anon_sym_var] = ACTIONS(3877), - [anon_sym_yield] = ACTIONS(3877), - [anon_sym_switch] = ACTIONS(3907), - [anon_sym_when] = ACTIONS(3907), - [sym_discard] = ACTIONS(3885), - [anon_sym_DOT_DOT] = ACTIONS(3905), - [anon_sym_and] = ACTIONS(3907), - [anon_sym_or] = ACTIONS(3907), - [anon_sym_AMP_AMP] = ACTIONS(3905), - [anon_sym_PIPE_PIPE] = ACTIONS(3905), - [anon_sym_QMARK_QMARK] = ACTIONS(3905), - [anon_sym_from] = ACTIONS(3877), - [anon_sym_into] = ACTIONS(3907), - [anon_sym_join] = ACTIONS(3877), - [anon_sym_on] = ACTIONS(3877), - [anon_sym_equals] = ACTIONS(3877), - [anon_sym_let] = ACTIONS(3877), - [anon_sym_orderby] = ACTIONS(3877), - [anon_sym_ascending] = ACTIONS(3877), - [anon_sym_descending] = ACTIONS(3877), - [anon_sym_group] = ACTIONS(3877), - [anon_sym_by] = ACTIONS(3877), - [anon_sym_select] = ACTIONS(3877), - [anon_sym_as] = ACTIONS(3907), - [anon_sym_is] = ACTIONS(3907), - [anon_sym_DASH_GT] = ACTIONS(3905), - [anon_sym_with] = ACTIONS(3907), + [sym__identifier_token] = ACTIONS(3855), + [anon_sym_alias] = ACTIONS(3857), + [anon_sym_global] = ACTIONS(3857), + [anon_sym_LBRACK] = ACTIONS(3893), + [anon_sym_COLON] = ACTIONS(3893), + [anon_sym_LPAREN] = ACTIONS(3893), + [anon_sym_file] = ACTIONS(3857), + [anon_sym_LT] = ACTIONS(3895), + [anon_sym_GT] = ACTIONS(3895), + [anon_sym_where] = ACTIONS(3857), + [anon_sym_QMARK] = ACTIONS(3895), + [anon_sym_notnull] = ACTIONS(3857), + [anon_sym_unmanaged] = ACTIONS(3857), + [anon_sym_BANG] = ACTIONS(3895), + [anon_sym_PLUS_PLUS] = ACTIONS(3893), + [anon_sym_DASH_DASH] = ACTIONS(3893), + [anon_sym_PLUS] = ACTIONS(3895), + [anon_sym_DASH] = ACTIONS(3895), + [anon_sym_STAR] = ACTIONS(3893), + [anon_sym_SLASH] = ACTIONS(3895), + [anon_sym_PERCENT] = ACTIONS(3893), + [anon_sym_CARET] = ACTIONS(3893), + [anon_sym_PIPE] = ACTIONS(3895), + [anon_sym_AMP] = ACTIONS(3895), + [anon_sym_LT_LT] = ACTIONS(3893), + [anon_sym_GT_GT] = ACTIONS(3895), + [anon_sym_GT_GT_GT] = ACTIONS(3893), + [anon_sym_EQ_EQ] = ACTIONS(3893), + [anon_sym_BANG_EQ] = ACTIONS(3893), + [anon_sym_GT_EQ] = ACTIONS(3893), + [anon_sym_LT_EQ] = ACTIONS(3893), + [anon_sym_DOT] = ACTIONS(3895), + [anon_sym_scoped] = ACTIONS(3857), + [anon_sym_EQ_GT] = ACTIONS(3893), + [anon_sym_var] = ACTIONS(3857), + [anon_sym_yield] = ACTIONS(3857), + [anon_sym_switch] = ACTIONS(3895), + [anon_sym_when] = ACTIONS(3895), + [sym_discard] = ACTIONS(3877), + [anon_sym_DOT_DOT] = ACTIONS(3893), + [anon_sym_and] = ACTIONS(3895), + [anon_sym_or] = ACTIONS(3895), + [anon_sym_AMP_AMP] = ACTIONS(3893), + [anon_sym_PIPE_PIPE] = ACTIONS(3893), + [anon_sym_QMARK_QMARK] = ACTIONS(3893), + [anon_sym_from] = ACTIONS(3857), + [anon_sym_into] = ACTIONS(3857), + [anon_sym_join] = ACTIONS(3857), + [anon_sym_on] = ACTIONS(3857), + [anon_sym_equals] = ACTIONS(3857), + [anon_sym_let] = ACTIONS(3857), + [anon_sym_orderby] = ACTIONS(3857), + [anon_sym_ascending] = ACTIONS(3857), + [anon_sym_descending] = ACTIONS(3857), + [anon_sym_group] = ACTIONS(3857), + [anon_sym_by] = ACTIONS(3857), + [anon_sym_select] = ACTIONS(3857), + [anon_sym_as] = ACTIONS(3895), + [anon_sym_is] = ACTIONS(3895), + [anon_sym_DASH_GT] = ACTIONS(3893), + [anon_sym_with] = ACTIONS(3895), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -436332,10 +435962,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2590] = { - [sym__variable_designation] = STATE(3481), - [sym_parenthesized_variable_designation] = STATE(3463), - [sym_identifier] = STATE(3479), - [sym__reserved_identifier] = STATE(3177), + [sym_property_pattern_clause] = STATE(2797), + [sym__variable_designation] = STATE(3249), + [sym_parenthesized_variable_designation] = STATE(3344), + [sym_identifier] = STATE(3346), + [sym__reserved_identifier] = STATE(3199), [sym_preproc_region] = STATE(2590), [sym_preproc_endregion] = STATE(2590), [sym_preproc_line] = STATE(2590), @@ -436345,67 +435976,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(3875), - [anon_sym_alias] = ACTIONS(3877), - [anon_sym_global] = ACTIONS(3877), - [anon_sym_LBRACK] = ACTIONS(3961), - [anon_sym_COLON] = ACTIONS(3961), - [anon_sym_LPAREN] = ACTIONS(3961), - [anon_sym_file] = ACTIONS(3877), - [anon_sym_LT] = ACTIONS(3963), - [anon_sym_GT] = ACTIONS(3963), - [anon_sym_where] = ACTIONS(3877), - [anon_sym_QMARK] = ACTIONS(3963), - [anon_sym_notnull] = ACTIONS(3877), - [anon_sym_unmanaged] = ACTIONS(3877), - [anon_sym_BANG] = ACTIONS(3963), - [anon_sym_PLUS_PLUS] = ACTIONS(3961), - [anon_sym_DASH_DASH] = ACTIONS(3961), - [anon_sym_PLUS] = ACTIONS(3963), - [anon_sym_DASH] = ACTIONS(3963), - [anon_sym_STAR] = ACTIONS(3961), - [anon_sym_SLASH] = ACTIONS(3963), - [anon_sym_PERCENT] = ACTIONS(3961), - [anon_sym_CARET] = ACTIONS(3961), - [anon_sym_PIPE] = ACTIONS(3963), - [anon_sym_AMP] = ACTIONS(3963), - [anon_sym_LT_LT] = ACTIONS(3961), - [anon_sym_GT_GT] = ACTIONS(3963), - [anon_sym_GT_GT_GT] = ACTIONS(3961), - [anon_sym_EQ_EQ] = ACTIONS(3961), - [anon_sym_BANG_EQ] = ACTIONS(3961), - [anon_sym_GT_EQ] = ACTIONS(3961), - [anon_sym_LT_EQ] = ACTIONS(3961), - [anon_sym_DOT] = ACTIONS(3963), - [anon_sym_scoped] = ACTIONS(3877), - [anon_sym_EQ_GT] = ACTIONS(3961), - [anon_sym_var] = ACTIONS(3877), - [anon_sym_yield] = ACTIONS(3877), - [anon_sym_switch] = ACTIONS(3963), - [anon_sym_when] = ACTIONS(3963), - [sym_discard] = ACTIONS(3897), - [anon_sym_DOT_DOT] = ACTIONS(3961), - [anon_sym_and] = ACTIONS(3963), - [anon_sym_or] = ACTIONS(3963), - [anon_sym_AMP_AMP] = ACTIONS(3961), - [anon_sym_PIPE_PIPE] = ACTIONS(3961), - [anon_sym_QMARK_QMARK] = ACTIONS(3961), - [anon_sym_from] = ACTIONS(3877), - [anon_sym_into] = ACTIONS(3877), - [anon_sym_join] = ACTIONS(3877), - [anon_sym_on] = ACTIONS(3877), - [anon_sym_equals] = ACTIONS(3877), - [anon_sym_let] = ACTIONS(3877), - [anon_sym_orderby] = ACTIONS(3877), - [anon_sym_ascending] = ACTIONS(3877), - [anon_sym_descending] = ACTIONS(3877), - [anon_sym_group] = ACTIONS(3877), - [anon_sym_by] = ACTIONS(3877), - [anon_sym_select] = ACTIONS(3877), - [anon_sym_as] = ACTIONS(3963), - [anon_sym_is] = ACTIONS(3963), - [anon_sym_DASH_GT] = ACTIONS(3961), - [anon_sym_with] = ACTIONS(3963), + [sym__identifier_token] = ACTIONS(3855), + [anon_sym_alias] = ACTIONS(3857), + [anon_sym_global] = ACTIONS(3857), + [anon_sym_LBRACK] = ACTIONS(3885), + [anon_sym_LPAREN] = ACTIONS(3885), + [anon_sym_LBRACE] = ACTIONS(3861), + [anon_sym_file] = ACTIONS(3857), + [anon_sym_LT] = ACTIONS(3887), + [anon_sym_GT] = ACTIONS(3887), + [anon_sym_where] = ACTIONS(3857), + [anon_sym_QMARK] = ACTIONS(3887), + [anon_sym_notnull] = ACTIONS(3857), + [anon_sym_unmanaged] = ACTIONS(3857), + [anon_sym_BANG] = ACTIONS(3887), + [anon_sym_PLUS_PLUS] = ACTIONS(3885), + [anon_sym_DASH_DASH] = ACTIONS(3885), + [anon_sym_PLUS] = ACTIONS(3887), + [anon_sym_DASH] = ACTIONS(3887), + [anon_sym_STAR] = ACTIONS(3885), + [anon_sym_SLASH] = ACTIONS(3887), + [anon_sym_PERCENT] = ACTIONS(3885), + [anon_sym_CARET] = ACTIONS(3885), + [anon_sym_PIPE] = ACTIONS(3887), + [anon_sym_AMP] = ACTIONS(3887), + [anon_sym_LT_LT] = ACTIONS(3885), + [anon_sym_GT_GT] = ACTIONS(3887), + [anon_sym_GT_GT_GT] = ACTIONS(3885), + [anon_sym_EQ_EQ] = ACTIONS(3885), + [anon_sym_BANG_EQ] = ACTIONS(3885), + [anon_sym_GT_EQ] = ACTIONS(3885), + [anon_sym_LT_EQ] = ACTIONS(3885), + [anon_sym_DOT] = ACTIONS(3887), + [anon_sym_scoped] = ACTIONS(3857), + [anon_sym_var] = ACTIONS(3857), + [anon_sym_yield] = ACTIONS(3857), + [anon_sym_switch] = ACTIONS(3887), + [anon_sym_when] = ACTIONS(3857), + [sym_discard] = ACTIONS(3865), + [anon_sym_DOT_DOT] = ACTIONS(3885), + [anon_sym_and] = ACTIONS(3887), + [anon_sym_or] = ACTIONS(3887), + [anon_sym_AMP_AMP] = ACTIONS(3885), + [anon_sym_PIPE_PIPE] = ACTIONS(3885), + [anon_sym_QMARK_QMARK] = ACTIONS(3885), + [anon_sym_from] = ACTIONS(3857), + [anon_sym_into] = ACTIONS(3887), + [anon_sym_join] = ACTIONS(3857), + [anon_sym_on] = ACTIONS(3887), + [anon_sym_equals] = ACTIONS(3857), + [anon_sym_let] = ACTIONS(3857), + [anon_sym_orderby] = ACTIONS(3857), + [anon_sym_ascending] = ACTIONS(3857), + [anon_sym_descending] = ACTIONS(3857), + [anon_sym_group] = ACTIONS(3857), + [anon_sym_by] = ACTIONS(3857), + [anon_sym_select] = ACTIONS(3857), + [anon_sym_as] = ACTIONS(3887), + [anon_sym_is] = ACTIONS(3887), + [anon_sym_DASH_GT] = ACTIONS(3885), + [anon_sym_with] = ACTIONS(3887), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -436418,11 +436048,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2591] = { - [sym_property_pattern_clause] = STATE(2755), - [sym__variable_designation] = STATE(3496), - [sym_parenthesized_variable_designation] = STATE(3463), - [sym_identifier] = STATE(3479), - [sym__reserved_identifier] = STATE(3177), + [sym_property_pattern_clause] = STATE(2683), + [sym__variable_designation] = STATE(3447), + [sym_parenthesized_variable_designation] = STATE(3352), + [sym_identifier] = STATE(3355), + [sym__reserved_identifier] = STATE(3199), [sym_preproc_region] = STATE(2591), [sym_preproc_endregion] = STATE(2591), [sym_preproc_line] = STATE(2591), @@ -436432,66 +436062,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(3875), - [anon_sym_alias] = ACTIONS(3877), - [anon_sym_global] = ACTIONS(3877), - [anon_sym_LBRACK] = ACTIONS(3913), - [anon_sym_LPAREN] = ACTIONS(3913), - [anon_sym_LBRACE] = ACTIONS(3881), - [anon_sym_file] = ACTIONS(3877), - [anon_sym_LT] = ACTIONS(3915), - [anon_sym_GT] = ACTIONS(3915), - [anon_sym_where] = ACTIONS(3877), - [anon_sym_QMARK] = ACTIONS(3915), - [anon_sym_notnull] = ACTIONS(3877), - [anon_sym_unmanaged] = ACTIONS(3877), - [anon_sym_BANG] = ACTIONS(3915), - [anon_sym_PLUS_PLUS] = ACTIONS(3913), - [anon_sym_DASH_DASH] = ACTIONS(3913), - [anon_sym_PLUS] = ACTIONS(3915), - [anon_sym_DASH] = ACTIONS(3915), - [anon_sym_STAR] = ACTIONS(3913), - [anon_sym_SLASH] = ACTIONS(3915), - [anon_sym_PERCENT] = ACTIONS(3913), - [anon_sym_CARET] = ACTIONS(3913), - [anon_sym_PIPE] = ACTIONS(3915), - [anon_sym_AMP] = ACTIONS(3915), - [anon_sym_LT_LT] = ACTIONS(3913), - [anon_sym_GT_GT] = ACTIONS(3915), - [anon_sym_GT_GT_GT] = ACTIONS(3913), - [anon_sym_EQ_EQ] = ACTIONS(3913), - [anon_sym_BANG_EQ] = ACTIONS(3913), - [anon_sym_GT_EQ] = ACTIONS(3913), - [anon_sym_LT_EQ] = ACTIONS(3913), - [anon_sym_DOT] = ACTIONS(3915), - [anon_sym_scoped] = ACTIONS(3877), - [anon_sym_var] = ACTIONS(3877), - [anon_sym_yield] = ACTIONS(3877), - [anon_sym_switch] = ACTIONS(3915), - [anon_sym_when] = ACTIONS(3877), - [sym_discard] = ACTIONS(3897), - [anon_sym_DOT_DOT] = ACTIONS(3913), - [anon_sym_and] = ACTIONS(3915), - [anon_sym_or] = ACTIONS(3915), - [anon_sym_AMP_AMP] = ACTIONS(3913), - [anon_sym_PIPE_PIPE] = ACTIONS(3913), - [anon_sym_QMARK_QMARK] = ACTIONS(3913), - [anon_sym_from] = ACTIONS(3877), - [anon_sym_into] = ACTIONS(3877), - [anon_sym_join] = ACTIONS(3877), - [anon_sym_on] = ACTIONS(3915), - [anon_sym_equals] = ACTIONS(3877), - [anon_sym_let] = ACTIONS(3877), - [anon_sym_orderby] = ACTIONS(3877), - [anon_sym_ascending] = ACTIONS(3877), - [anon_sym_descending] = ACTIONS(3877), - [anon_sym_group] = ACTIONS(3877), - [anon_sym_by] = ACTIONS(3877), - [anon_sym_select] = ACTIONS(3877), - [anon_sym_as] = ACTIONS(3915), - [anon_sym_is] = ACTIONS(3915), - [anon_sym_DASH_GT] = ACTIONS(3913), - [anon_sym_with] = ACTIONS(3915), + [sym__identifier_token] = ACTIONS(3855), + [anon_sym_alias] = ACTIONS(3857), + [anon_sym_global] = ACTIONS(3857), + [anon_sym_LBRACK] = ACTIONS(3893), + [anon_sym_LPAREN] = ACTIONS(3893), + [anon_sym_LBRACE] = ACTIONS(3861), + [anon_sym_file] = ACTIONS(3857), + [anon_sym_LT] = ACTIONS(3895), + [anon_sym_GT] = ACTIONS(3895), + [anon_sym_where] = ACTIONS(3857), + [anon_sym_QMARK] = ACTIONS(3895), + [anon_sym_notnull] = ACTIONS(3857), + [anon_sym_unmanaged] = ACTIONS(3857), + [anon_sym_BANG] = ACTIONS(3895), + [anon_sym_PLUS_PLUS] = ACTIONS(3893), + [anon_sym_DASH_DASH] = ACTIONS(3893), + [anon_sym_PLUS] = ACTIONS(3895), + [anon_sym_DASH] = ACTIONS(3895), + [anon_sym_STAR] = ACTIONS(3893), + [anon_sym_SLASH] = ACTIONS(3895), + [anon_sym_PERCENT] = ACTIONS(3893), + [anon_sym_CARET] = ACTIONS(3893), + [anon_sym_PIPE] = ACTIONS(3895), + [anon_sym_AMP] = ACTIONS(3895), + [anon_sym_LT_LT] = ACTIONS(3893), + [anon_sym_GT_GT] = ACTIONS(3895), + [anon_sym_GT_GT_GT] = ACTIONS(3893), + [anon_sym_EQ_EQ] = ACTIONS(3893), + [anon_sym_BANG_EQ] = ACTIONS(3893), + [anon_sym_GT_EQ] = ACTIONS(3893), + [anon_sym_LT_EQ] = ACTIONS(3893), + [anon_sym_DOT] = ACTIONS(3895), + [anon_sym_scoped] = ACTIONS(3857), + [anon_sym_var] = ACTIONS(3857), + [anon_sym_yield] = ACTIONS(3857), + [anon_sym_switch] = ACTIONS(3895), + [anon_sym_when] = ACTIONS(3857), + [sym_discard] = ACTIONS(3877), + [anon_sym_DOT_DOT] = ACTIONS(3893), + [anon_sym_and] = ACTIONS(3895), + [anon_sym_or] = ACTIONS(3895), + [anon_sym_AMP_AMP] = ACTIONS(3893), + [anon_sym_PIPE_PIPE] = ACTIONS(3893), + [anon_sym_QMARK_QMARK] = ACTIONS(3893), + [anon_sym_from] = ACTIONS(3857), + [anon_sym_into] = ACTIONS(3857), + [anon_sym_join] = ACTIONS(3857), + [anon_sym_on] = ACTIONS(3857), + [anon_sym_equals] = ACTIONS(3857), + [anon_sym_let] = ACTIONS(3857), + [anon_sym_orderby] = ACTIONS(3857), + [anon_sym_ascending] = ACTIONS(3857), + [anon_sym_descending] = ACTIONS(3857), + [anon_sym_group] = ACTIONS(3857), + [anon_sym_by] = ACTIONS(3895), + [anon_sym_select] = ACTIONS(3857), + [anon_sym_as] = ACTIONS(3895), + [anon_sym_is] = ACTIONS(3895), + [anon_sym_DASH_GT] = ACTIONS(3893), + [anon_sym_with] = ACTIONS(3895), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -436504,11 +436134,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2592] = { - [sym_property_pattern_clause] = STATE(2794), - [sym__variable_designation] = STATE(3349), - [sym_parenthesized_variable_designation] = STATE(3340), - [sym_identifier] = STATE(3345), - [sym__reserved_identifier] = STATE(3177), [sym_preproc_region] = STATE(2592), [sym_preproc_endregion] = STATE(2592), [sym_preproc_line] = STATE(2592), @@ -436518,66 +436143,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(3875), - [anon_sym_alias] = ACTIONS(3877), - [anon_sym_global] = ACTIONS(3877), - [anon_sym_LBRACK] = ACTIONS(3905), - [anon_sym_LPAREN] = ACTIONS(3905), - [anon_sym_LBRACE] = ACTIONS(3881), - [anon_sym_file] = ACTIONS(3877), - [anon_sym_LT] = ACTIONS(3907), - [anon_sym_GT] = ACTIONS(3907), - [anon_sym_where] = ACTIONS(3877), - [anon_sym_QMARK] = ACTIONS(3907), - [anon_sym_notnull] = ACTIONS(3877), - [anon_sym_unmanaged] = ACTIONS(3877), - [anon_sym_BANG] = ACTIONS(3907), - [anon_sym_PLUS_PLUS] = ACTIONS(3905), - [anon_sym_DASH_DASH] = ACTIONS(3905), - [anon_sym_PLUS] = ACTIONS(3907), - [anon_sym_DASH] = ACTIONS(3907), - [anon_sym_STAR] = ACTIONS(3905), - [anon_sym_SLASH] = ACTIONS(3907), - [anon_sym_PERCENT] = ACTIONS(3905), - [anon_sym_CARET] = ACTIONS(3905), - [anon_sym_PIPE] = ACTIONS(3907), - [anon_sym_AMP] = ACTIONS(3907), - [anon_sym_LT_LT] = ACTIONS(3905), - [anon_sym_GT_GT] = ACTIONS(3907), - [anon_sym_GT_GT_GT] = ACTIONS(3905), - [anon_sym_EQ_EQ] = ACTIONS(3905), - [anon_sym_BANG_EQ] = ACTIONS(3905), - [anon_sym_GT_EQ] = ACTIONS(3905), - [anon_sym_LT_EQ] = ACTIONS(3905), - [anon_sym_DOT] = ACTIONS(3907), - [anon_sym_scoped] = ACTIONS(3877), - [anon_sym_var] = ACTIONS(3877), - [anon_sym_yield] = ACTIONS(3877), - [anon_sym_switch] = ACTIONS(3907), - [anon_sym_when] = ACTIONS(3877), - [sym_discard] = ACTIONS(3885), - [anon_sym_DOT_DOT] = ACTIONS(3905), - [anon_sym_and] = ACTIONS(3907), - [anon_sym_or] = ACTIONS(3907), - [anon_sym_AMP_AMP] = ACTIONS(3905), - [anon_sym_PIPE_PIPE] = ACTIONS(3905), - [anon_sym_QMARK_QMARK] = ACTIONS(3905), - [anon_sym_from] = ACTIONS(3877), - [anon_sym_into] = ACTIONS(3907), - [anon_sym_join] = ACTIONS(3877), - [anon_sym_on] = ACTIONS(3907), - [anon_sym_equals] = ACTIONS(3877), - [anon_sym_let] = ACTIONS(3877), - [anon_sym_orderby] = ACTIONS(3877), - [anon_sym_ascending] = ACTIONS(3877), - [anon_sym_descending] = ACTIONS(3877), - [anon_sym_group] = ACTIONS(3877), - [anon_sym_by] = ACTIONS(3877), - [anon_sym_select] = ACTIONS(3877), - [anon_sym_as] = ACTIONS(3907), - [anon_sym_is] = ACTIONS(3907), - [anon_sym_DASH_GT] = ACTIONS(3905), - [anon_sym_with] = ACTIONS(3907), + [anon_sym_SEMI] = ACTIONS(3429), + [anon_sym_EQ] = ACTIONS(3431), + [anon_sym_LBRACK] = ACTIONS(3429), + [anon_sym_COLON] = ACTIONS(3429), + [anon_sym_COMMA] = ACTIONS(3429), + [anon_sym_RBRACK] = ACTIONS(3429), + [anon_sym_LPAREN] = ACTIONS(3429), + [anon_sym_RPAREN] = ACTIONS(3429), + [anon_sym_LBRACE] = ACTIONS(3429), + [anon_sym_RBRACE] = ACTIONS(3429), + [anon_sym_LT] = ACTIONS(3431), + [anon_sym_GT] = ACTIONS(3431), + [anon_sym_in] = ACTIONS(3429), + [anon_sym_where] = ACTIONS(3429), + [anon_sym_QMARK] = ACTIONS(3431), + [anon_sym_BANG] = ACTIONS(3431), + [anon_sym_PLUS_PLUS] = ACTIONS(3429), + [anon_sym_DASH_DASH] = ACTIONS(3429), + [anon_sym_PLUS] = ACTIONS(3431), + [anon_sym_DASH] = ACTIONS(3431), + [anon_sym_STAR] = ACTIONS(3431), + [anon_sym_SLASH] = ACTIONS(3431), + [anon_sym_PERCENT] = ACTIONS(3431), + [anon_sym_CARET] = ACTIONS(3431), + [anon_sym_PIPE] = ACTIONS(3431), + [anon_sym_AMP] = ACTIONS(3431), + [anon_sym_LT_LT] = ACTIONS(3431), + [anon_sym_GT_GT] = ACTIONS(3431), + [anon_sym_GT_GT_GT] = ACTIONS(3431), + [anon_sym_EQ_EQ] = ACTIONS(3429), + [anon_sym_BANG_EQ] = ACTIONS(3429), + [anon_sym_GT_EQ] = ACTIONS(3429), + [anon_sym_LT_EQ] = ACTIONS(3429), + [anon_sym_DOT] = ACTIONS(3431), + [anon_sym_EQ_GT] = ACTIONS(3429), + [anon_sym_switch] = ACTIONS(3429), + [anon_sym_when] = ACTIONS(3429), + [anon_sym_DOT_DOT] = ACTIONS(3429), + [anon_sym_and] = ACTIONS(3429), + [anon_sym_or] = ACTIONS(3429), + [anon_sym_PLUS_EQ] = ACTIONS(3429), + [anon_sym_DASH_EQ] = ACTIONS(3429), + [anon_sym_STAR_EQ] = ACTIONS(3429), + [anon_sym_SLASH_EQ] = ACTIONS(3429), + [anon_sym_PERCENT_EQ] = ACTIONS(3429), + [anon_sym_AMP_EQ] = ACTIONS(3429), + [anon_sym_CARET_EQ] = ACTIONS(3429), + [anon_sym_PIPE_EQ] = ACTIONS(3429), + [anon_sym_LT_LT_EQ] = ACTIONS(3429), + [anon_sym_GT_GT_EQ] = ACTIONS(3429), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3429), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3429), + [anon_sym_AMP_AMP] = ACTIONS(3429), + [anon_sym_PIPE_PIPE] = ACTIONS(3429), + [anon_sym_QMARK_QMARK] = ACTIONS(3431), + [anon_sym_on] = ACTIONS(3429), + [anon_sym_equals] = ACTIONS(3429), + [anon_sym_by] = ACTIONS(3429), + [anon_sym_as] = ACTIONS(3429), + [anon_sym_is] = ACTIONS(3429), + [anon_sym_DASH_GT] = ACTIONS(3429), + [anon_sym_with] = 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), @@ -436599,71 +436229,70 @@ 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(4140), - [anon_sym_alias] = ACTIONS(4140), - [anon_sym_global] = ACTIONS(4140), - [anon_sym_LBRACK] = ACTIONS(2957), - [anon_sym_COLON] = ACTIONS(2957), - [anon_sym_COMMA] = ACTIONS(4142), - [anon_sym_RBRACK] = ACTIONS(4142), - [anon_sym_LPAREN] = ACTIONS(4142), - [anon_sym_RPAREN] = ACTIONS(4142), - [anon_sym_RBRACE] = ACTIONS(4142), - [anon_sym_file] = ACTIONS(4140), - [anon_sym_LT] = ACTIONS(2955), - [anon_sym_GT] = ACTIONS(2955), - [anon_sym_where] = ACTIONS(4140), - [anon_sym_QMARK] = ACTIONS(2955), - [anon_sym_notnull] = ACTIONS(4140), - [anon_sym_unmanaged] = ACTIONS(4140), - [anon_sym_BANG] = ACTIONS(2955), - [anon_sym_PLUS_PLUS] = ACTIONS(2957), - [anon_sym_DASH_DASH] = ACTIONS(2957), - [anon_sym_PLUS] = ACTIONS(2955), - [anon_sym_DASH] = ACTIONS(2955), - [anon_sym_STAR] = ACTIONS(2957), - [anon_sym_SLASH] = ACTIONS(2955), - [anon_sym_PERCENT] = ACTIONS(2957), - [anon_sym_CARET] = ACTIONS(2957), - [anon_sym_PIPE] = ACTIONS(2955), - [anon_sym_AMP] = ACTIONS(2955), - [anon_sym_LT_LT] = ACTIONS(2957), - [anon_sym_GT_GT] = ACTIONS(2955), - [anon_sym_GT_GT_GT] = ACTIONS(2957), - [anon_sym_EQ_EQ] = ACTIONS(2957), - [anon_sym_BANG_EQ] = ACTIONS(2957), - [anon_sym_GT_EQ] = ACTIONS(2957), - [anon_sym_LT_EQ] = ACTIONS(2957), - [anon_sym_DOT] = ACTIONS(2955), - [anon_sym_scoped] = ACTIONS(4140), - [anon_sym_EQ_GT] = ACTIONS(4142), - [anon_sym_var] = ACTIONS(4140), - [anon_sym_yield] = ACTIONS(4140), - [anon_sym_switch] = ACTIONS(2955), - [anon_sym_when] = ACTIONS(4140), - [sym_discard] = ACTIONS(4140), - [anon_sym_DOT_DOT] = ACTIONS(2957), - [anon_sym_and] = ACTIONS(4140), - [anon_sym_or] = ACTIONS(4140), - [anon_sym_AMP_AMP] = ACTIONS(2957), - [anon_sym_PIPE_PIPE] = ACTIONS(2957), - [anon_sym_QMARK_QMARK] = ACTIONS(2957), - [anon_sym_from] = ACTIONS(4140), - [anon_sym_into] = ACTIONS(4140), - [anon_sym_join] = ACTIONS(4140), - [anon_sym_on] = ACTIONS(4140), - [anon_sym_equals] = ACTIONS(4140), - [anon_sym_let] = ACTIONS(4140), - [anon_sym_orderby] = ACTIONS(4140), - [anon_sym_ascending] = ACTIONS(4140), - [anon_sym_descending] = ACTIONS(4140), - [anon_sym_group] = ACTIONS(4140), - [anon_sym_by] = ACTIONS(4140), - [anon_sym_select] = ACTIONS(4140), - [anon_sym_as] = ACTIONS(2955), - [anon_sym_is] = ACTIONS(2955), - [anon_sym_DASH_GT] = ACTIONS(2957), - [anon_sym_with] = ACTIONS(2955), + [anon_sym_SEMI] = ACTIONS(4152), + [anon_sym_EQ] = ACTIONS(4118), + [anon_sym_LBRACK] = ACTIONS(4152), + [anon_sym_COLON] = ACTIONS(4116), + [anon_sym_COMMA] = ACTIONS(4152), + [anon_sym_RBRACK] = ACTIONS(4152), + [anon_sym_LPAREN] = ACTIONS(4152), + [anon_sym_RPAREN] = ACTIONS(4152), + [anon_sym_RBRACE] = ACTIONS(4152), + [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(4152), + [anon_sym_DASH_DASH] = ACTIONS(4152), + [anon_sym_PLUS] = ACTIONS(4154), + [anon_sym_DASH] = ACTIONS(4154), + [anon_sym_STAR] = ACTIONS(4154), + [anon_sym_SLASH] = ACTIONS(4154), + [anon_sym_PERCENT] = ACTIONS(4154), + [anon_sym_CARET] = ACTIONS(4154), + [anon_sym_PIPE] = ACTIONS(4154), + [anon_sym_AMP] = ACTIONS(4154), + [anon_sym_LT_LT] = ACTIONS(4154), + [anon_sym_GT_GT] = ACTIONS(4154), + [anon_sym_GT_GT_GT] = ACTIONS(4154), + [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(4154), + [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_PLUS_EQ] = ACTIONS(4116), + [anon_sym_DASH_EQ] = ACTIONS(4116), + [anon_sym_STAR_EQ] = ACTIONS(4116), + [anon_sym_SLASH_EQ] = ACTIONS(4116), + [anon_sym_PERCENT_EQ] = ACTIONS(4116), + [anon_sym_AMP_EQ] = ACTIONS(4116), + [anon_sym_CARET_EQ] = ACTIONS(4116), + [anon_sym_PIPE_EQ] = ACTIONS(4116), + [anon_sym_LT_LT_EQ] = ACTIONS(4116), + [anon_sym_GT_GT_EQ] = ACTIONS(4116), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(4116), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(4116), + [anon_sym_AMP_AMP] = ACTIONS(4152), + [anon_sym_PIPE_PIPE] = ACTIONS(4152), + [anon_sym_QMARK_QMARK] = ACTIONS(4154), + [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), @@ -436685,71 +436314,70 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2594), [sym_preproc_define] = STATE(2594), [sym_preproc_undef] = STATE(2594), - [sym__identifier_token] = ACTIONS(4154), - [anon_sym_alias] = ACTIONS(4154), - [anon_sym_global] = ACTIONS(4154), - [anon_sym_LBRACK] = ACTIONS(4253), - [anon_sym_COLON] = ACTIONS(4253), - [anon_sym_COMMA] = ACTIONS(4156), - [anon_sym_RBRACK] = ACTIONS(4156), - [anon_sym_LPAREN] = ACTIONS(4156), - [anon_sym_RPAREN] = ACTIONS(4156), - [anon_sym_RBRACE] = ACTIONS(4156), - [anon_sym_file] = ACTIONS(4154), - [anon_sym_LT] = ACTIONS(4255), - [anon_sym_GT] = ACTIONS(4255), - [anon_sym_where] = ACTIONS(4154), - [anon_sym_QMARK] = ACTIONS(4255), - [anon_sym_notnull] = ACTIONS(4154), - [anon_sym_unmanaged] = ACTIONS(4154), - [anon_sym_BANG] = ACTIONS(4255), - [anon_sym_PLUS_PLUS] = ACTIONS(4253), - [anon_sym_DASH_DASH] = ACTIONS(4253), - [anon_sym_PLUS] = ACTIONS(4255), - [anon_sym_DASH] = ACTIONS(4255), - [anon_sym_STAR] = ACTIONS(4253), - [anon_sym_SLASH] = ACTIONS(4255), - [anon_sym_PERCENT] = ACTIONS(4253), - [anon_sym_CARET] = ACTIONS(4253), - [anon_sym_PIPE] = ACTIONS(4255), - [anon_sym_AMP] = ACTIONS(4255), - [anon_sym_LT_LT] = ACTIONS(4253), - [anon_sym_GT_GT] = ACTIONS(4255), - [anon_sym_GT_GT_GT] = ACTIONS(4253), - [anon_sym_EQ_EQ] = ACTIONS(4253), - [anon_sym_BANG_EQ] = ACTIONS(4253), - [anon_sym_GT_EQ] = ACTIONS(4253), - [anon_sym_LT_EQ] = ACTIONS(4253), - [anon_sym_DOT] = ACTIONS(4255), - [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(4255), - [anon_sym_when] = ACTIONS(4154), - [sym_discard] = ACTIONS(4154), - [anon_sym_DOT_DOT] = ACTIONS(4253), - [anon_sym_and] = ACTIONS(4154), - [anon_sym_or] = ACTIONS(4154), - [anon_sym_AMP_AMP] = ACTIONS(4253), - [anon_sym_PIPE_PIPE] = ACTIONS(4253), - [anon_sym_QMARK_QMARK] = ACTIONS(4253), - [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(4255), - [anon_sym_is] = ACTIONS(4255), - [anon_sym_DASH_GT] = ACTIONS(4253), - [anon_sym_with] = ACTIONS(4255), + [anon_sym_SEMI] = ACTIONS(3671), + [anon_sym_EQ] = ACTIONS(3673), + [anon_sym_LBRACK] = ACTIONS(3671), + [anon_sym_COLON] = ACTIONS(3671), + [anon_sym_COMMA] = ACTIONS(3671), + [anon_sym_RBRACK] = ACTIONS(3671), + [anon_sym_LPAREN] = ACTIONS(3671), + [anon_sym_RPAREN] = ACTIONS(3671), + [anon_sym_RBRACE] = ACTIONS(3671), + [anon_sym_LT] = ACTIONS(3673), + [anon_sym_GT] = ACTIONS(3673), + [anon_sym_in] = ACTIONS(3673), + [anon_sym_QMARK] = ACTIONS(3673), + [anon_sym_BANG] = ACTIONS(3673), + [anon_sym_PLUS_PLUS] = ACTIONS(3671), + [anon_sym_DASH_DASH] = ACTIONS(3671), + [anon_sym_PLUS] = ACTIONS(3673), + [anon_sym_DASH] = ACTIONS(3673), + [anon_sym_STAR] = ACTIONS(3673), + [anon_sym_SLASH] = ACTIONS(3673), + [anon_sym_PERCENT] = ACTIONS(3673), + [anon_sym_CARET] = ACTIONS(3673), + [anon_sym_PIPE] = ACTIONS(3673), + [anon_sym_AMP] = ACTIONS(3673), + [anon_sym_LT_LT] = ACTIONS(3673), + [anon_sym_GT_GT] = ACTIONS(3673), + [anon_sym_GT_GT_GT] = ACTIONS(3673), + [anon_sym_EQ_EQ] = ACTIONS(3671), + [anon_sym_BANG_EQ] = ACTIONS(3671), + [anon_sym_GT_EQ] = ACTIONS(3671), + [anon_sym_LT_EQ] = ACTIONS(3671), + [anon_sym_DOT] = ACTIONS(3673), + [anon_sym_EQ_GT] = ACTIONS(3671), + [anon_sym_switch] = ACTIONS(3671), + [anon_sym_when] = ACTIONS(3671), + [anon_sym_DOT_DOT] = ACTIONS(3671), + [anon_sym_and] = ACTIONS(3671), + [anon_sym_or] = ACTIONS(3671), + [anon_sym_PLUS_EQ] = ACTIONS(3671), + [anon_sym_DASH_EQ] = ACTIONS(3671), + [anon_sym_STAR_EQ] = ACTIONS(3671), + [anon_sym_SLASH_EQ] = ACTIONS(3671), + [anon_sym_PERCENT_EQ] = ACTIONS(3671), + [anon_sym_AMP_EQ] = ACTIONS(3671), + [anon_sym_CARET_EQ] = ACTIONS(3671), + [anon_sym_PIPE_EQ] = ACTIONS(3671), + [anon_sym_LT_LT_EQ] = ACTIONS(3671), + [anon_sym_GT_GT_EQ] = ACTIONS(3671), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3671), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3671), + [anon_sym_AMP_AMP] = ACTIONS(3671), + [anon_sym_PIPE_PIPE] = ACTIONS(3671), + [anon_sym_QMARK_QMARK] = ACTIONS(3673), + [anon_sym_into] = ACTIONS(3671), + [anon_sym_on] = ACTIONS(3671), + [anon_sym_equals] = ACTIONS(3671), + [anon_sym_by] = ACTIONS(3671), + [anon_sym_as] = ACTIONS(3671), + [anon_sym_is] = ACTIONS(3671), + [anon_sym_DASH_GT] = ACTIONS(3671), + [anon_sym_with] = ACTIONS(3671), + [aux_sym_preproc_if_token3] = ACTIONS(3671), + [aux_sym_preproc_else_token1] = ACTIONS(3671), + [aux_sym_preproc_elif_token1] = ACTIONS(3671), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -436762,10 +436390,6 @@ 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(3463), - [sym_identifier] = STATE(3479), - [sym__reserved_identifier] = STATE(3177), [sym_preproc_region] = STATE(2595), [sym_preproc_endregion] = STATE(2595), [sym_preproc_line] = STATE(2595), @@ -436775,67 +436399,70 @@ 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(3875), - [anon_sym_alias] = ACTIONS(3877), - [anon_sym_global] = ACTIONS(3877), - [anon_sym_LBRACK] = ACTIONS(3913), - [anon_sym_COLON] = ACTIONS(3913), - [anon_sym_LPAREN] = ACTIONS(3913), - [anon_sym_file] = ACTIONS(3877), - [anon_sym_LT] = ACTIONS(3915), - [anon_sym_GT] = ACTIONS(3915), - [anon_sym_where] = ACTIONS(3877), - [anon_sym_QMARK] = ACTIONS(3915), - [anon_sym_notnull] = ACTIONS(3877), - [anon_sym_unmanaged] = ACTIONS(3877), - [anon_sym_BANG] = ACTIONS(3915), - [anon_sym_PLUS_PLUS] = ACTIONS(3913), - [anon_sym_DASH_DASH] = ACTIONS(3913), - [anon_sym_PLUS] = ACTIONS(3915), - [anon_sym_DASH] = ACTIONS(3915), - [anon_sym_STAR] = ACTIONS(3913), - [anon_sym_SLASH] = ACTIONS(3915), - [anon_sym_PERCENT] = ACTIONS(3913), - [anon_sym_CARET] = ACTIONS(3913), - [anon_sym_PIPE] = ACTIONS(3915), - [anon_sym_AMP] = ACTIONS(3915), - [anon_sym_LT_LT] = ACTIONS(3913), - [anon_sym_GT_GT] = ACTIONS(3915), - [anon_sym_GT_GT_GT] = ACTIONS(3913), - [anon_sym_EQ_EQ] = ACTIONS(3913), - [anon_sym_BANG_EQ] = ACTIONS(3913), - [anon_sym_GT_EQ] = ACTIONS(3913), - [anon_sym_LT_EQ] = ACTIONS(3913), - [anon_sym_DOT] = ACTIONS(3915), - [anon_sym_scoped] = ACTIONS(3877), - [anon_sym_EQ_GT] = ACTIONS(3913), - [anon_sym_var] = ACTIONS(3877), - [anon_sym_yield] = ACTIONS(3877), - [anon_sym_switch] = ACTIONS(3915), - [anon_sym_when] = ACTIONS(3915), - [sym_discard] = ACTIONS(3897), - [anon_sym_DOT_DOT] = ACTIONS(3913), - [anon_sym_and] = ACTIONS(3915), - [anon_sym_or] = ACTIONS(3915), - [anon_sym_AMP_AMP] = ACTIONS(3913), - [anon_sym_PIPE_PIPE] = ACTIONS(3913), - [anon_sym_QMARK_QMARK] = ACTIONS(3913), - [anon_sym_from] = ACTIONS(3877), - [anon_sym_into] = ACTIONS(3877), - [anon_sym_join] = ACTIONS(3877), - [anon_sym_on] = ACTIONS(3877), - [anon_sym_equals] = ACTIONS(3877), - [anon_sym_let] = ACTIONS(3877), - [anon_sym_orderby] = ACTIONS(3877), - [anon_sym_ascending] = ACTIONS(3877), - [anon_sym_descending] = ACTIONS(3877), - [anon_sym_group] = ACTIONS(3877), - [anon_sym_by] = ACTIONS(3877), - [anon_sym_select] = ACTIONS(3877), - [anon_sym_as] = ACTIONS(3915), - [anon_sym_is] = ACTIONS(3915), - [anon_sym_DASH_GT] = ACTIONS(3913), - [anon_sym_with] = ACTIONS(3915), + [sym__identifier_token] = ACTIONS(4233), + [anon_sym_extern] = ACTIONS(4233), + [anon_sym_alias] = ACTIONS(4233), + [anon_sym_global] = ACTIONS(4233), + [anon_sym_using] = ACTIONS(4233), + [anon_sym_unsafe] = ACTIONS(4233), + [anon_sym_EQ] = ACTIONS(4235), + [anon_sym_static] = ACTIONS(4233), + [anon_sym_LBRACK] = ACTIONS(4237), + [anon_sym_LPAREN] = ACTIONS(4237), + [anon_sym_event] = ACTIONS(4233), + [anon_sym_namespace] = ACTIONS(4233), + [anon_sym_class] = ACTIONS(4233), + [anon_sym_ref] = ACTIONS(4233), + [anon_sym_struct] = ACTIONS(4233), + [anon_sym_enum] = ACTIONS(4233), + [anon_sym_RBRACE] = ACTIONS(4237), + [anon_sym_interface] = ACTIONS(4233), + [anon_sym_delegate] = ACTIONS(4233), + [anon_sym_record] = ACTIONS(4233), + [anon_sym_abstract] = ACTIONS(4233), + [anon_sym_async] = ACTIONS(4233), + [anon_sym_const] = ACTIONS(4233), + [anon_sym_file] = ACTIONS(4233), + [anon_sym_fixed] = ACTIONS(4233), + [anon_sym_internal] = ACTIONS(4233), + [anon_sym_new] = ACTIONS(4233), + [anon_sym_override] = ACTIONS(4233), + [anon_sym_partial] = ACTIONS(4233), + [anon_sym_private] = ACTIONS(4233), + [anon_sym_protected] = ACTIONS(4233), + [anon_sym_public] = ACTIONS(4233), + [anon_sym_readonly] = ACTIONS(4233), + [anon_sym_required] = ACTIONS(4233), + [anon_sym_sealed] = ACTIONS(4233), + [anon_sym_virtual] = ACTIONS(4233), + [anon_sym_volatile] = ACTIONS(4233), + [anon_sym_where] = ACTIONS(4233), + [anon_sym_notnull] = ACTIONS(4233), + [anon_sym_unmanaged] = ACTIONS(4233), + [anon_sym_TILDE] = ACTIONS(4237), + [anon_sym_implicit] = ACTIONS(4233), + [anon_sym_explicit] = ACTIONS(4233), + [anon_sym_scoped] = ACTIONS(4233), + [anon_sym_var] = ACTIONS(4233), + [sym_predefined_type] = ACTIONS(4233), + [anon_sym_yield] = ACTIONS(4233), + [anon_sym_when] = ACTIONS(4233), + [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_ascending] = ACTIONS(4233), + [anon_sym_descending] = ACTIONS(4233), + [anon_sym_group] = ACTIONS(4233), + [anon_sym_by] = ACTIONS(4233), + [anon_sym_select] = ACTIONS(4233), + [aux_sym_preproc_if_token1] = 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), @@ -436848,6 +436475,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2596] = { + [sym__variable_designation] = STATE(3697), + [sym_parenthesized_variable_designation] = STATE(3688), + [sym_identifier] = STATE(3692), + [sym__reserved_identifier] = STATE(2354), [sym_preproc_region] = STATE(2596), [sym_preproc_endregion] = STATE(2596), [sym_preproc_line] = STATE(2596), @@ -436857,71 +436488,66 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2596), [sym_preproc_define] = STATE(2596), [sym_preproc_undef] = STATE(2596), - [sym__identifier_token] = ACTIONS(3193), - [anon_sym_extern] = ACTIONS(3193), - [anon_sym_alias] = ACTIONS(3193), - [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_event] = 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_RBRACE] = 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_TILDE] = ACTIONS(3195), - [anon_sym_implicit] = ACTIONS(3193), - [anon_sym_explicit] = ACTIONS(3193), - [anon_sym_scoped] = ACTIONS(3193), - [anon_sym_var] = ACTIONS(3193), - [sym_predefined_type] = ACTIONS(3193), - [anon_sym_while] = ACTIONS(3193), - [anon_sym_yield] = ACTIONS(3193), - [anon_sym_when] = ACTIONS(3193), - [anon_sym_else] = ACTIONS(3193), - [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), - [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), + [sym__identifier_token] = ACTIONS(4080), + [anon_sym_alias] = ACTIONS(4082), + [anon_sym_global] = ACTIONS(4082), + [anon_sym_LBRACK] = ACTIONS(3893), + [anon_sym_COMMA] = ACTIONS(3893), + [anon_sym_LPAREN] = ACTIONS(3893), + [anon_sym_file] = ACTIONS(4082), + [anon_sym_LT] = ACTIONS(3895), + [anon_sym_GT] = ACTIONS(3895), + [anon_sym_where] = ACTIONS(3895), + [anon_sym_QMARK] = ACTIONS(3895), + [anon_sym_notnull] = ACTIONS(4082), + [anon_sym_unmanaged] = ACTIONS(4082), + [anon_sym_BANG] = ACTIONS(3895), + [anon_sym_PLUS_PLUS] = ACTIONS(3893), + [anon_sym_DASH_DASH] = ACTIONS(3893), + [anon_sym_PLUS] = ACTIONS(3895), + [anon_sym_DASH] = ACTIONS(3895), + [anon_sym_STAR] = ACTIONS(3893), + [anon_sym_SLASH] = ACTIONS(3895), + [anon_sym_PERCENT] = ACTIONS(3893), + [anon_sym_CARET] = ACTIONS(3893), + [anon_sym_PIPE] = ACTIONS(3895), + [anon_sym_AMP] = ACTIONS(3895), + [anon_sym_LT_LT] = ACTIONS(3893), + [anon_sym_GT_GT] = ACTIONS(3895), + [anon_sym_GT_GT_GT] = ACTIONS(3893), + [anon_sym_EQ_EQ] = ACTIONS(3893), + [anon_sym_BANG_EQ] = ACTIONS(3893), + [anon_sym_GT_EQ] = ACTIONS(3893), + [anon_sym_LT_EQ] = ACTIONS(3893), + [anon_sym_DOT] = ACTIONS(3895), + [anon_sym_scoped] = ACTIONS(4082), + [anon_sym_var] = ACTIONS(4082), + [anon_sym_yield] = ACTIONS(4082), + [anon_sym_switch] = ACTIONS(3895), + [anon_sym_when] = ACTIONS(4082), + [sym_discard] = ACTIONS(4183), + [anon_sym_DOT_DOT] = ACTIONS(3893), + [anon_sym_and] = ACTIONS(3895), + [anon_sym_or] = ACTIONS(3895), + [anon_sym_AMP_AMP] = ACTIONS(3893), + [anon_sym_PIPE_PIPE] = ACTIONS(3893), + [anon_sym_QMARK_QMARK] = ACTIONS(3893), + [anon_sym_from] = ACTIONS(3895), + [anon_sym_into] = ACTIONS(4082), + [anon_sym_join] = ACTIONS(3895), + [anon_sym_on] = ACTIONS(4082), + [anon_sym_equals] = ACTIONS(4082), + [anon_sym_let] = ACTIONS(3895), + [anon_sym_orderby] = ACTIONS(3895), + [anon_sym_ascending] = ACTIONS(3895), + [anon_sym_descending] = ACTIONS(3895), + [anon_sym_group] = ACTIONS(3895), + [anon_sym_by] = ACTIONS(4082), + [anon_sym_select] = ACTIONS(3895), + [anon_sym_as] = ACTIONS(3895), + [anon_sym_is] = ACTIONS(3895), + [anon_sym_DASH_GT] = ACTIONS(3893), + [anon_sym_with] = ACTIONS(3895), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -436934,10 +436560,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2597] = { - [sym__variable_designation] = STATE(3434), - [sym_parenthesized_variable_designation] = STATE(3463), - [sym_identifier] = STATE(3479), - [sym__reserved_identifier] = STATE(3177), [sym_preproc_region] = STATE(2597), [sym_preproc_endregion] = STATE(2597), [sym_preproc_line] = STATE(2597), @@ -436947,67 +436569,70 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2597), [sym_preproc_define] = STATE(2597), [sym_preproc_undef] = STATE(2597), - [sym__identifier_token] = ACTIONS(3875), - [anon_sym_alias] = ACTIONS(3877), - [anon_sym_global] = ACTIONS(3877), - [anon_sym_LBRACK] = ACTIONS(3957), - [anon_sym_COLON] = ACTIONS(3957), - [anon_sym_LPAREN] = ACTIONS(3957), - [anon_sym_file] = ACTIONS(3877), - [anon_sym_LT] = ACTIONS(3959), - [anon_sym_GT] = ACTIONS(3959), - [anon_sym_where] = ACTIONS(3877), - [anon_sym_QMARK] = ACTIONS(3959), - [anon_sym_notnull] = ACTIONS(3877), - [anon_sym_unmanaged] = ACTIONS(3877), - [anon_sym_BANG] = ACTIONS(3959), - [anon_sym_PLUS_PLUS] = ACTIONS(3957), - [anon_sym_DASH_DASH] = ACTIONS(3957), - [anon_sym_PLUS] = ACTIONS(3959), - [anon_sym_DASH] = ACTIONS(3959), - [anon_sym_STAR] = ACTIONS(3957), - [anon_sym_SLASH] = ACTIONS(3959), - [anon_sym_PERCENT] = ACTIONS(3957), - [anon_sym_CARET] = ACTIONS(3957), - [anon_sym_PIPE] = ACTIONS(3959), - [anon_sym_AMP] = ACTIONS(3959), - [anon_sym_LT_LT] = ACTIONS(3957), - [anon_sym_GT_GT] = ACTIONS(3959), - [anon_sym_GT_GT_GT] = ACTIONS(3957), - [anon_sym_EQ_EQ] = ACTIONS(3957), - [anon_sym_BANG_EQ] = ACTIONS(3957), - [anon_sym_GT_EQ] = ACTIONS(3957), - [anon_sym_LT_EQ] = ACTIONS(3957), - [anon_sym_DOT] = ACTIONS(3959), - [anon_sym_scoped] = ACTIONS(3877), - [anon_sym_EQ_GT] = ACTIONS(3957), - [anon_sym_var] = ACTIONS(3877), - [anon_sym_yield] = ACTIONS(3877), - [anon_sym_switch] = ACTIONS(3959), - [anon_sym_when] = ACTIONS(3959), - [sym_discard] = ACTIONS(3897), - [anon_sym_DOT_DOT] = ACTIONS(3957), - [anon_sym_and] = ACTIONS(3959), - [anon_sym_or] = ACTIONS(3959), - [anon_sym_AMP_AMP] = ACTIONS(3957), - [anon_sym_PIPE_PIPE] = ACTIONS(3957), - [anon_sym_QMARK_QMARK] = ACTIONS(3957), - [anon_sym_from] = ACTIONS(3877), - [anon_sym_into] = ACTIONS(3877), - [anon_sym_join] = ACTIONS(3877), - [anon_sym_on] = ACTIONS(3877), - [anon_sym_equals] = ACTIONS(3877), - [anon_sym_let] = ACTIONS(3877), - [anon_sym_orderby] = ACTIONS(3877), - [anon_sym_ascending] = ACTIONS(3877), - [anon_sym_descending] = ACTIONS(3877), - [anon_sym_group] = ACTIONS(3877), - [anon_sym_by] = ACTIONS(3877), - [anon_sym_select] = ACTIONS(3877), - [anon_sym_as] = ACTIONS(3959), - [anon_sym_is] = ACTIONS(3959), - [anon_sym_DASH_GT] = ACTIONS(3957), - [anon_sym_with] = ACTIONS(3959), + [anon_sym_SEMI] = ACTIONS(4144), + [anon_sym_EQ] = ACTIONS(4146), + [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_RBRACE] = ACTIONS(4144), + [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(4144), + [anon_sym_DASH_DASH] = ACTIONS(4144), + [anon_sym_PLUS] = ACTIONS(4146), + [anon_sym_DASH] = ACTIONS(4146), + [anon_sym_STAR] = ACTIONS(4146), + [anon_sym_SLASH] = ACTIONS(4146), + [anon_sym_PERCENT] = ACTIONS(4146), + [anon_sym_CARET] = ACTIONS(4146), + [anon_sym_PIPE] = ACTIONS(4146), + [anon_sym_AMP] = ACTIONS(4146), + [anon_sym_LT_LT] = ACTIONS(4146), + [anon_sym_GT_GT] = ACTIONS(4146), + [anon_sym_GT_GT_GT] = ACTIONS(4146), + [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(4146), + [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_PLUS_EQ] = ACTIONS(4144), + [anon_sym_DASH_EQ] = ACTIONS(4144), + [anon_sym_STAR_EQ] = ACTIONS(4144), + [anon_sym_SLASH_EQ] = ACTIONS(4144), + [anon_sym_PERCENT_EQ] = ACTIONS(4144), + [anon_sym_AMP_EQ] = ACTIONS(4144), + [anon_sym_CARET_EQ] = ACTIONS(4144), + [anon_sym_PIPE_EQ] = ACTIONS(4144), + [anon_sym_LT_LT_EQ] = ACTIONS(4144), + [anon_sym_GT_GT_EQ] = ACTIONS(4144), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(4144), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(4144), + [anon_sym_AMP_AMP] = ACTIONS(4144), + [anon_sym_PIPE_PIPE] = ACTIONS(4144), + [anon_sym_QMARK_QMARK] = ACTIONS(4146), + [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), @@ -437020,10 +436645,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2598] = { - [sym__variable_designation] = STATE(3234), - [sym_parenthesized_variable_designation] = STATE(3340), - [sym_identifier] = STATE(3345), - [sym__reserved_identifier] = STATE(3177), [sym_preproc_region] = STATE(2598), [sym_preproc_endregion] = STATE(2598), [sym_preproc_line] = STATE(2598), @@ -437033,67 +436654,70 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2598), [sym_preproc_define] = STATE(2598), [sym_preproc_undef] = STATE(2598), - [sym__identifier_token] = ACTIONS(3875), - [anon_sym_alias] = ACTIONS(3877), - [anon_sym_global] = ACTIONS(3877), - [anon_sym_LBRACK] = ACTIONS(3913), - [anon_sym_COLON] = ACTIONS(3913), - [anon_sym_LPAREN] = ACTIONS(3913), - [anon_sym_file] = ACTIONS(3877), - [anon_sym_LT] = ACTIONS(3915), - [anon_sym_GT] = ACTIONS(3915), - [anon_sym_where] = ACTIONS(3877), - [anon_sym_QMARK] = ACTIONS(3915), - [anon_sym_notnull] = ACTIONS(3877), - [anon_sym_unmanaged] = ACTIONS(3877), - [anon_sym_BANG] = ACTIONS(3915), - [anon_sym_PLUS_PLUS] = ACTIONS(3913), - [anon_sym_DASH_DASH] = ACTIONS(3913), - [anon_sym_PLUS] = ACTIONS(3915), - [anon_sym_DASH] = ACTIONS(3915), - [anon_sym_STAR] = ACTIONS(3913), - [anon_sym_SLASH] = ACTIONS(3915), - [anon_sym_PERCENT] = ACTIONS(3913), - [anon_sym_CARET] = ACTIONS(3913), - [anon_sym_PIPE] = ACTIONS(3915), - [anon_sym_AMP] = ACTIONS(3915), - [anon_sym_LT_LT] = ACTIONS(3913), - [anon_sym_GT_GT] = ACTIONS(3915), - [anon_sym_GT_GT_GT] = ACTIONS(3913), - [anon_sym_EQ_EQ] = ACTIONS(3913), - [anon_sym_BANG_EQ] = ACTIONS(3913), - [anon_sym_GT_EQ] = ACTIONS(3913), - [anon_sym_LT_EQ] = ACTIONS(3913), - [anon_sym_DOT] = ACTIONS(3915), - [anon_sym_scoped] = ACTIONS(3877), - [anon_sym_EQ_GT] = ACTIONS(3913), - [anon_sym_var] = ACTIONS(3877), - [anon_sym_yield] = ACTIONS(3877), - [anon_sym_switch] = ACTIONS(3915), - [anon_sym_when] = ACTIONS(3915), - [sym_discard] = ACTIONS(3885), - [anon_sym_DOT_DOT] = ACTIONS(3913), - [anon_sym_and] = ACTIONS(3915), - [anon_sym_or] = ACTIONS(3915), - [anon_sym_AMP_AMP] = ACTIONS(3913), - [anon_sym_PIPE_PIPE] = ACTIONS(3913), - [anon_sym_QMARK_QMARK] = ACTIONS(3913), - [anon_sym_from] = ACTIONS(3877), - [anon_sym_into] = ACTIONS(3915), - [anon_sym_join] = ACTIONS(3877), - [anon_sym_on] = ACTIONS(3877), - [anon_sym_equals] = ACTIONS(3877), - [anon_sym_let] = ACTIONS(3877), - [anon_sym_orderby] = ACTIONS(3877), - [anon_sym_ascending] = ACTIONS(3877), - [anon_sym_descending] = ACTIONS(3877), - [anon_sym_group] = ACTIONS(3877), - [anon_sym_by] = ACTIONS(3877), - [anon_sym_select] = ACTIONS(3877), - [anon_sym_as] = ACTIONS(3915), - [anon_sym_is] = ACTIONS(3915), - [anon_sym_DASH_GT] = ACTIONS(3913), - [anon_sym_with] = ACTIONS(3915), + [sym__identifier_token] = ACTIONS(3961), + [anon_sym_alias] = ACTIONS(3961), + [anon_sym_global] = ACTIONS(3961), + [anon_sym_LBRACK] = ACTIONS(4033), + [anon_sym_COLON] = ACTIONS(3963), + [anon_sym_COMMA] = ACTIONS(3963), + [anon_sym_LPAREN] = ACTIONS(3963), + [anon_sym_RPAREN] = ACTIONS(3963), + [anon_sym_LBRACE] = ACTIONS(3963), + [anon_sym_RBRACE] = ACTIONS(3963), + [anon_sym_file] = ACTIONS(3961), + [anon_sym_LT] = ACTIONS(3961), + [anon_sym_GT] = ACTIONS(3961), + [anon_sym_where] = ACTIONS(3961), + [anon_sym_QMARK] = ACTIONS(4036), + [anon_sym_notnull] = ACTIONS(3961), + [anon_sym_unmanaged] = ACTIONS(3961), + [anon_sym_BANG] = ACTIONS(3961), + [anon_sym_PLUS_PLUS] = ACTIONS(3963), + [anon_sym_DASH_DASH] = ACTIONS(3963), + [anon_sym_PLUS] = ACTIONS(3961), + [anon_sym_DASH] = ACTIONS(3961), + [anon_sym_STAR] = ACTIONS(4039), + [anon_sym_SLASH] = ACTIONS(3961), + [anon_sym_PERCENT] = ACTIONS(3963), + [anon_sym_CARET] = ACTIONS(3963), + [anon_sym_PIPE] = ACTIONS(3961), + [anon_sym_AMP] = ACTIONS(3961), + [anon_sym_LT_LT] = ACTIONS(3963), + [anon_sym_GT_GT] = ACTIONS(3961), + [anon_sym_GT_GT_GT] = ACTIONS(3963), + [anon_sym_EQ_EQ] = ACTIONS(3963), + [anon_sym_BANG_EQ] = ACTIONS(3963), + [anon_sym_GT_EQ] = ACTIONS(3963), + [anon_sym_LT_EQ] = ACTIONS(3963), + [anon_sym_DOT] = ACTIONS(4239), + [anon_sym_scoped] = ACTIONS(3961), + [anon_sym_var] = ACTIONS(3961), + [anon_sym_yield] = ACTIONS(3961), + [anon_sym_switch] = ACTIONS(3961), + [anon_sym_when] = ACTIONS(3961), + [sym_discard] = ACTIONS(3961), + [anon_sym_DOT_DOT] = ACTIONS(3963), + [anon_sym_and] = ACTIONS(3961), + [anon_sym_or] = ACTIONS(3961), + [anon_sym_AMP_AMP] = ACTIONS(3963), + [anon_sym_PIPE_PIPE] = ACTIONS(3963), + [anon_sym_QMARK_QMARK] = ACTIONS(3963), + [anon_sym_from] = ACTIONS(3961), + [anon_sym_into] = ACTIONS(3961), + [anon_sym_join] = ACTIONS(3961), + [anon_sym_on] = ACTIONS(3961), + [anon_sym_equals] = ACTIONS(3961), + [anon_sym_let] = ACTIONS(3961), + [anon_sym_orderby] = ACTIONS(3961), + [anon_sym_ascending] = ACTIONS(3961), + [anon_sym_descending] = ACTIONS(3961), + [anon_sym_group] = ACTIONS(3961), + [anon_sym_by] = ACTIONS(3961), + [anon_sym_select] = ACTIONS(3961), + [anon_sym_as] = ACTIONS(3961), + [anon_sym_is] = ACTIONS(3961), + [anon_sym_DASH_GT] = ACTIONS(4094), + [anon_sym_with] = ACTIONS(3961), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -437106,10 +436730,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2599] = { - [sym__variable_designation] = STATE(3245), - [sym_parenthesized_variable_designation] = STATE(3340), - [sym_identifier] = STATE(3345), - [sym__reserved_identifier] = STATE(3177), + [sym__variable_designation] = STATE(3716), + [sym_parenthesized_variable_designation] = STATE(3688), + [sym_identifier] = STATE(3692), + [sym__reserved_identifier] = STATE(2354), [sym_preproc_region] = STATE(2599), [sym_preproc_endregion] = STATE(2599), [sym_preproc_line] = STATE(2599), @@ -437119,67 +436743,66 @@ 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), - [sym__identifier_token] = ACTIONS(3875), - [anon_sym_alias] = ACTIONS(3877), - [anon_sym_global] = ACTIONS(3877), - [anon_sym_LBRACK] = ACTIONS(3957), - [anon_sym_COLON] = ACTIONS(3957), - [anon_sym_LPAREN] = ACTIONS(3957), - [anon_sym_file] = ACTIONS(3877), - [anon_sym_LT] = ACTIONS(3959), - [anon_sym_GT] = ACTIONS(3959), - [anon_sym_where] = ACTIONS(3877), - [anon_sym_QMARK] = ACTIONS(3959), - [anon_sym_notnull] = ACTIONS(3877), - [anon_sym_unmanaged] = ACTIONS(3877), - [anon_sym_BANG] = ACTIONS(3959), - [anon_sym_PLUS_PLUS] = ACTIONS(3957), - [anon_sym_DASH_DASH] = ACTIONS(3957), - [anon_sym_PLUS] = ACTIONS(3959), - [anon_sym_DASH] = ACTIONS(3959), - [anon_sym_STAR] = ACTIONS(3957), - [anon_sym_SLASH] = ACTIONS(3959), - [anon_sym_PERCENT] = ACTIONS(3957), - [anon_sym_CARET] = ACTIONS(3957), - [anon_sym_PIPE] = ACTIONS(3959), - [anon_sym_AMP] = ACTIONS(3959), - [anon_sym_LT_LT] = ACTIONS(3957), - [anon_sym_GT_GT] = ACTIONS(3959), - [anon_sym_GT_GT_GT] = ACTIONS(3957), - [anon_sym_EQ_EQ] = ACTIONS(3957), - [anon_sym_BANG_EQ] = ACTIONS(3957), - [anon_sym_GT_EQ] = ACTIONS(3957), - [anon_sym_LT_EQ] = ACTIONS(3957), - [anon_sym_DOT] = ACTIONS(3959), - [anon_sym_scoped] = ACTIONS(3877), - [anon_sym_EQ_GT] = ACTIONS(3957), - [anon_sym_var] = ACTIONS(3877), - [anon_sym_yield] = ACTIONS(3877), - [anon_sym_switch] = ACTIONS(3959), - [anon_sym_when] = ACTIONS(3959), - [sym_discard] = ACTIONS(3885), - [anon_sym_DOT_DOT] = ACTIONS(3957), - [anon_sym_and] = ACTIONS(3959), - [anon_sym_or] = ACTIONS(3959), - [anon_sym_AMP_AMP] = ACTIONS(3957), - [anon_sym_PIPE_PIPE] = ACTIONS(3957), - [anon_sym_QMARK_QMARK] = ACTIONS(3957), - [anon_sym_from] = ACTIONS(3877), - [anon_sym_into] = ACTIONS(3959), - [anon_sym_join] = ACTIONS(3877), - [anon_sym_on] = ACTIONS(3877), - [anon_sym_equals] = ACTIONS(3877), - [anon_sym_let] = ACTIONS(3877), - [anon_sym_orderby] = ACTIONS(3877), - [anon_sym_ascending] = ACTIONS(3877), - [anon_sym_descending] = ACTIONS(3877), - [anon_sym_group] = ACTIONS(3877), - [anon_sym_by] = ACTIONS(3877), - [anon_sym_select] = ACTIONS(3877), - [anon_sym_as] = ACTIONS(3959), - [anon_sym_is] = ACTIONS(3959), - [anon_sym_DASH_GT] = ACTIONS(3957), - [anon_sym_with] = ACTIONS(3959), + [sym__identifier_token] = ACTIONS(4080), + [anon_sym_alias] = ACTIONS(4082), + [anon_sym_global] = ACTIONS(4082), + [anon_sym_LBRACK] = ACTIONS(3885), + [anon_sym_COMMA] = ACTIONS(3885), + [anon_sym_LPAREN] = ACTIONS(3885), + [anon_sym_file] = ACTIONS(4082), + [anon_sym_LT] = ACTIONS(3887), + [anon_sym_GT] = ACTIONS(3887), + [anon_sym_where] = ACTIONS(3887), + [anon_sym_QMARK] = ACTIONS(3887), + [anon_sym_notnull] = ACTIONS(4082), + [anon_sym_unmanaged] = ACTIONS(4082), + [anon_sym_BANG] = ACTIONS(3887), + [anon_sym_PLUS_PLUS] = ACTIONS(3885), + [anon_sym_DASH_DASH] = ACTIONS(3885), + [anon_sym_PLUS] = ACTIONS(3887), + [anon_sym_DASH] = ACTIONS(3887), + [anon_sym_STAR] = ACTIONS(3885), + [anon_sym_SLASH] = ACTIONS(3887), + [anon_sym_PERCENT] = ACTIONS(3885), + [anon_sym_CARET] = ACTIONS(3885), + [anon_sym_PIPE] = ACTIONS(3887), + [anon_sym_AMP] = ACTIONS(3887), + [anon_sym_LT_LT] = ACTIONS(3885), + [anon_sym_GT_GT] = ACTIONS(3887), + [anon_sym_GT_GT_GT] = ACTIONS(3885), + [anon_sym_EQ_EQ] = ACTIONS(3885), + [anon_sym_BANG_EQ] = ACTIONS(3885), + [anon_sym_GT_EQ] = ACTIONS(3885), + [anon_sym_LT_EQ] = ACTIONS(3885), + [anon_sym_DOT] = ACTIONS(3887), + [anon_sym_scoped] = ACTIONS(4082), + [anon_sym_var] = ACTIONS(4082), + [anon_sym_yield] = ACTIONS(4082), + [anon_sym_switch] = ACTIONS(3887), + [anon_sym_when] = ACTIONS(4082), + [sym_discard] = ACTIONS(4183), + [anon_sym_DOT_DOT] = ACTIONS(3885), + [anon_sym_and] = ACTIONS(3887), + [anon_sym_or] = ACTIONS(3887), + [anon_sym_AMP_AMP] = ACTIONS(3885), + [anon_sym_PIPE_PIPE] = ACTIONS(3885), + [anon_sym_QMARK_QMARK] = ACTIONS(3885), + [anon_sym_from] = ACTIONS(3887), + [anon_sym_into] = ACTIONS(4082), + [anon_sym_join] = ACTIONS(3887), + [anon_sym_on] = ACTIONS(4082), + [anon_sym_equals] = ACTIONS(4082), + [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(4082), + [anon_sym_select] = ACTIONS(3887), + [anon_sym_as] = ACTIONS(3887), + [anon_sym_is] = ACTIONS(3887), + [anon_sym_DASH_GT] = ACTIONS(3885), + [anon_sym_with] = ACTIONS(3887), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -437192,6 +436815,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2600] = { + [sym__variable_designation] = STATE(3718), + [sym_parenthesized_variable_designation] = STATE(3688), + [sym_identifier] = STATE(3692), + [sym__reserved_identifier] = STATE(2354), [sym_preproc_region] = STATE(2600), [sym_preproc_endregion] = STATE(2600), [sym_preproc_line] = STATE(2600), @@ -437201,71 +436828,66 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2600), [sym_preproc_define] = STATE(2600), [sym_preproc_undef] = STATE(2600), - [sym__identifier_token] = ACTIONS(3315), - [anon_sym_extern] = ACTIONS(3315), - [anon_sym_alias] = ACTIONS(3315), - [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_event] = 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_RBRACE] = 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_TILDE] = ACTIONS(3317), - [anon_sym_implicit] = ACTIONS(3315), - [anon_sym_explicit] = ACTIONS(3315), - [anon_sym_scoped] = ACTIONS(3315), - [anon_sym_var] = ACTIONS(3315), - [sym_predefined_type] = ACTIONS(3315), - [anon_sym_while] = ACTIONS(3315), - [anon_sym_yield] = ACTIONS(3315), - [anon_sym_when] = ACTIONS(3315), - [anon_sym_else] = ACTIONS(3315), - [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), - [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), + [sym__identifier_token] = ACTIONS(4080), + [anon_sym_alias] = ACTIONS(4082), + [anon_sym_global] = ACTIONS(4082), + [anon_sym_LBRACK] = ACTIONS(3939), + [anon_sym_COMMA] = ACTIONS(3939), + [anon_sym_LPAREN] = ACTIONS(3939), + [anon_sym_file] = ACTIONS(4082), + [anon_sym_LT] = ACTIONS(3941), + [anon_sym_GT] = ACTIONS(3941), + [anon_sym_where] = ACTIONS(3941), + [anon_sym_QMARK] = ACTIONS(3941), + [anon_sym_notnull] = ACTIONS(4082), + [anon_sym_unmanaged] = ACTIONS(4082), + [anon_sym_BANG] = ACTIONS(3941), + [anon_sym_PLUS_PLUS] = ACTIONS(3939), + [anon_sym_DASH_DASH] = ACTIONS(3939), + [anon_sym_PLUS] = ACTIONS(3941), + [anon_sym_DASH] = ACTIONS(3941), + [anon_sym_STAR] = ACTIONS(3939), + [anon_sym_SLASH] = ACTIONS(3941), + [anon_sym_PERCENT] = ACTIONS(3939), + [anon_sym_CARET] = ACTIONS(3939), + [anon_sym_PIPE] = ACTIONS(3941), + [anon_sym_AMP] = ACTIONS(3941), + [anon_sym_LT_LT] = ACTIONS(3939), + [anon_sym_GT_GT] = ACTIONS(3941), + [anon_sym_GT_GT_GT] = ACTIONS(3939), + [anon_sym_EQ_EQ] = ACTIONS(3939), + [anon_sym_BANG_EQ] = ACTIONS(3939), + [anon_sym_GT_EQ] = ACTIONS(3939), + [anon_sym_LT_EQ] = ACTIONS(3939), + [anon_sym_DOT] = ACTIONS(3941), + [anon_sym_scoped] = ACTIONS(4082), + [anon_sym_var] = ACTIONS(4082), + [anon_sym_yield] = ACTIONS(4082), + [anon_sym_switch] = ACTIONS(3941), + [anon_sym_when] = ACTIONS(4082), + [sym_discard] = ACTIONS(4183), + [anon_sym_DOT_DOT] = ACTIONS(3939), + [anon_sym_and] = ACTIONS(3941), + [anon_sym_or] = ACTIONS(3941), + [anon_sym_AMP_AMP] = ACTIONS(3939), + [anon_sym_PIPE_PIPE] = ACTIONS(3939), + [anon_sym_QMARK_QMARK] = ACTIONS(3939), + [anon_sym_from] = ACTIONS(3941), + [anon_sym_into] = ACTIONS(4082), + [anon_sym_join] = ACTIONS(3941), + [anon_sym_on] = ACTIONS(4082), + [anon_sym_equals] = ACTIONS(4082), + [anon_sym_let] = ACTIONS(3941), + [anon_sym_orderby] = ACTIONS(3941), + [anon_sym_ascending] = ACTIONS(3941), + [anon_sym_descending] = ACTIONS(3941), + [anon_sym_group] = ACTIONS(3941), + [anon_sym_by] = ACTIONS(4082), + [anon_sym_select] = ACTIONS(3941), + [anon_sym_as] = ACTIONS(3941), + [anon_sym_is] = ACTIONS(3941), + [anon_sym_DASH_GT] = ACTIONS(3939), + [anon_sym_with] = ACTIONS(3941), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -437278,6 +436900,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2601] = { + [sym__variable_designation] = STATE(3725), + [sym_parenthesized_variable_designation] = STATE(3688), + [sym_identifier] = STATE(3692), + [sym__reserved_identifier] = STATE(2354), [sym_preproc_region] = STATE(2601), [sym_preproc_endregion] = STATE(2601), [sym_preproc_line] = STATE(2601), @@ -437287,70 +436913,66 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2601), [sym_preproc_define] = STATE(2601), [sym_preproc_undef] = STATE(2601), - [sym__identifier_token] = ACTIONS(3447), - [anon_sym_alias] = ACTIONS(3447), - [anon_sym_global] = ACTIONS(3447), - [anon_sym_LBRACK] = ACTIONS(3445), - [anon_sym_COLON] = ACTIONS(3445), - [anon_sym_COMMA] = ACTIONS(3445), - [anon_sym_LPAREN] = ACTIONS(3445), - [anon_sym_RPAREN] = ACTIONS(3445), - [anon_sym_LBRACE] = ACTIONS(3445), - [anon_sym_RBRACE] = ACTIONS(3445), - [anon_sym_file] = ACTIONS(3447), - [anon_sym_LT] = ACTIONS(3447), - [anon_sym_GT] = ACTIONS(3447), - [anon_sym_where] = ACTIONS(3447), - [anon_sym_QMARK] = ACTIONS(3447), - [anon_sym_notnull] = ACTIONS(3447), - [anon_sym_unmanaged] = ACTIONS(3447), - [anon_sym_BANG] = ACTIONS(3447), - [anon_sym_PLUS_PLUS] = ACTIONS(3445), - [anon_sym_DASH_DASH] = ACTIONS(3445), - [anon_sym_PLUS] = ACTIONS(3447), - [anon_sym_DASH] = ACTIONS(3447), - [anon_sym_STAR] = ACTIONS(3445), - [anon_sym_SLASH] = ACTIONS(3447), - [anon_sym_PERCENT] = ACTIONS(3445), - [anon_sym_CARET] = ACTIONS(3445), - [anon_sym_PIPE] = ACTIONS(3447), - [anon_sym_AMP] = ACTIONS(3447), - [anon_sym_LT_LT] = ACTIONS(3445), - [anon_sym_GT_GT] = ACTIONS(3447), - [anon_sym_GT_GT_GT] = ACTIONS(3445), - [anon_sym_EQ_EQ] = ACTIONS(3445), - [anon_sym_BANG_EQ] = ACTIONS(3445), - [anon_sym_GT_EQ] = ACTIONS(3445), - [anon_sym_LT_EQ] = ACTIONS(3445), - [anon_sym_DOT] = ACTIONS(3447), - [anon_sym_scoped] = ACTIONS(3447), - [anon_sym_var] = ACTIONS(3447), - [anon_sym_yield] = ACTIONS(3447), - [anon_sym_switch] = ACTIONS(3447), - [anon_sym_when] = ACTIONS(3447), - [sym_discard] = ACTIONS(3447), - [anon_sym_DOT_DOT] = ACTIONS(3445), - [anon_sym_and] = ACTIONS(3447), - [anon_sym_or] = ACTIONS(3447), - [anon_sym_AMP_AMP] = ACTIONS(3445), - [anon_sym_PIPE_PIPE] = ACTIONS(3445), - [anon_sym_QMARK_QMARK] = ACTIONS(3445), - [anon_sym_from] = ACTIONS(3447), - [anon_sym_into] = ACTIONS(3447), - [anon_sym_join] = ACTIONS(3447), - [anon_sym_on] = ACTIONS(3447), - [anon_sym_equals] = ACTIONS(3447), - [anon_sym_let] = ACTIONS(3447), - [anon_sym_orderby] = ACTIONS(3447), - [anon_sym_ascending] = ACTIONS(3447), - [anon_sym_descending] = ACTIONS(3447), - [anon_sym_group] = ACTIONS(3447), - [anon_sym_by] = ACTIONS(3447), - [anon_sym_select] = ACTIONS(3447), - [anon_sym_as] = ACTIONS(3447), - [anon_sym_is] = ACTIONS(3447), - [anon_sym_DASH_GT] = ACTIONS(3445), - [anon_sym_with] = ACTIONS(3447), + [sym__identifier_token] = ACTIONS(4080), + [anon_sym_alias] = ACTIONS(4082), + [anon_sym_global] = ACTIONS(4082), + [anon_sym_LBRACK] = ACTIONS(3947), + [anon_sym_COMMA] = ACTIONS(3947), + [anon_sym_LPAREN] = ACTIONS(3947), + [anon_sym_file] = ACTIONS(4082), + [anon_sym_LT] = ACTIONS(3949), + [anon_sym_GT] = ACTIONS(3949), + [anon_sym_where] = ACTIONS(3949), + [anon_sym_QMARK] = ACTIONS(3949), + [anon_sym_notnull] = ACTIONS(4082), + [anon_sym_unmanaged] = ACTIONS(4082), + [anon_sym_BANG] = ACTIONS(3949), + [anon_sym_PLUS_PLUS] = ACTIONS(3947), + [anon_sym_DASH_DASH] = ACTIONS(3947), + [anon_sym_PLUS] = ACTIONS(3949), + [anon_sym_DASH] = ACTIONS(3949), + [anon_sym_STAR] = ACTIONS(3947), + [anon_sym_SLASH] = ACTIONS(3949), + [anon_sym_PERCENT] = ACTIONS(3947), + [anon_sym_CARET] = ACTIONS(3947), + [anon_sym_PIPE] = ACTIONS(3949), + [anon_sym_AMP] = ACTIONS(3949), + [anon_sym_LT_LT] = ACTIONS(3947), + [anon_sym_GT_GT] = ACTIONS(3949), + [anon_sym_GT_GT_GT] = ACTIONS(3947), + [anon_sym_EQ_EQ] = ACTIONS(3947), + [anon_sym_BANG_EQ] = ACTIONS(3947), + [anon_sym_GT_EQ] = ACTIONS(3947), + [anon_sym_LT_EQ] = ACTIONS(3947), + [anon_sym_DOT] = ACTIONS(3949), + [anon_sym_scoped] = ACTIONS(4082), + [anon_sym_var] = ACTIONS(4082), + [anon_sym_yield] = ACTIONS(4082), + [anon_sym_switch] = ACTIONS(3949), + [anon_sym_when] = ACTIONS(4082), + [sym_discard] = ACTIONS(4183), + [anon_sym_DOT_DOT] = ACTIONS(3947), + [anon_sym_and] = ACTIONS(3949), + [anon_sym_or] = ACTIONS(3949), + [anon_sym_AMP_AMP] = ACTIONS(3947), + [anon_sym_PIPE_PIPE] = ACTIONS(3947), + [anon_sym_QMARK_QMARK] = ACTIONS(3947), + [anon_sym_from] = ACTIONS(3949), + [anon_sym_into] = ACTIONS(4082), + [anon_sym_join] = ACTIONS(3949), + [anon_sym_on] = ACTIONS(4082), + [anon_sym_equals] = ACTIONS(4082), + [anon_sym_let] = ACTIONS(3949), + [anon_sym_orderby] = ACTIONS(3949), + [anon_sym_ascending] = ACTIONS(3949), + [anon_sym_descending] = ACTIONS(3949), + [anon_sym_group] = ACTIONS(3949), + [anon_sym_by] = ACTIONS(4082), + [anon_sym_select] = ACTIONS(3949), + [anon_sym_as] = ACTIONS(3949), + [anon_sym_is] = ACTIONS(3949), + [anon_sym_DASH_GT] = ACTIONS(3947), + [anon_sym_with] = ACTIONS(3949), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -437372,70 +436994,70 @@ 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(4257), - [anon_sym_extern] = ACTIONS(4257), - [anon_sym_alias] = ACTIONS(4257), - [anon_sym_global] = ACTIONS(4257), - [anon_sym_using] = ACTIONS(4257), - [anon_sym_unsafe] = ACTIONS(4257), - [anon_sym_EQ] = ACTIONS(4259), - [anon_sym_static] = ACTIONS(4257), - [anon_sym_LBRACK] = ACTIONS(4261), - [anon_sym_LPAREN] = ACTIONS(4261), - [anon_sym_event] = ACTIONS(4257), - [anon_sym_namespace] = ACTIONS(4257), - [anon_sym_class] = ACTIONS(4257), - [anon_sym_ref] = ACTIONS(4257), - [anon_sym_struct] = ACTIONS(4257), - [anon_sym_enum] = ACTIONS(4257), - [anon_sym_RBRACE] = ACTIONS(4261), - [anon_sym_interface] = ACTIONS(4257), - [anon_sym_delegate] = ACTIONS(4257), - [anon_sym_record] = ACTIONS(4257), - [anon_sym_abstract] = ACTIONS(4257), - [anon_sym_async] = ACTIONS(4257), - [anon_sym_const] = ACTIONS(4257), - [anon_sym_file] = ACTIONS(4257), - [anon_sym_fixed] = ACTIONS(4257), - [anon_sym_internal] = ACTIONS(4257), - [anon_sym_new] = ACTIONS(4257), - [anon_sym_override] = ACTIONS(4257), - [anon_sym_partial] = ACTIONS(4257), - [anon_sym_private] = ACTIONS(4257), - [anon_sym_protected] = ACTIONS(4257), - [anon_sym_public] = ACTIONS(4257), - [anon_sym_readonly] = ACTIONS(4257), - [anon_sym_required] = ACTIONS(4257), - [anon_sym_sealed] = ACTIONS(4257), - [anon_sym_virtual] = ACTIONS(4257), - [anon_sym_volatile] = ACTIONS(4257), - [anon_sym_where] = ACTIONS(4257), - [anon_sym_notnull] = ACTIONS(4257), - [anon_sym_unmanaged] = ACTIONS(4257), - [anon_sym_TILDE] = ACTIONS(4261), - [anon_sym_implicit] = ACTIONS(4257), - [anon_sym_explicit] = ACTIONS(4257), - [anon_sym_scoped] = ACTIONS(4257), - [anon_sym_var] = ACTIONS(4257), - [sym_predefined_type] = ACTIONS(4257), - [anon_sym_yield] = ACTIONS(4257), - [anon_sym_when] = ACTIONS(4257), - [anon_sym_from] = ACTIONS(4257), - [anon_sym_into] = ACTIONS(4257), - [anon_sym_join] = ACTIONS(4257), - [anon_sym_on] = ACTIONS(4257), - [anon_sym_equals] = ACTIONS(4257), - [anon_sym_let] = ACTIONS(4257), - [anon_sym_orderby] = ACTIONS(4257), - [anon_sym_ascending] = ACTIONS(4257), - [anon_sym_descending] = ACTIONS(4257), - [anon_sym_group] = ACTIONS(4257), - [anon_sym_by] = ACTIONS(4257), - [anon_sym_select] = ACTIONS(4257), - [aux_sym_preproc_if_token1] = ACTIONS(4261), - [aux_sym_preproc_if_token3] = ACTIONS(4261), - [aux_sym_preproc_else_token1] = ACTIONS(4261), - [aux_sym_preproc_elif_token1] = ACTIONS(4261), + [anon_sym_SEMI] = ACTIONS(3711), + [anon_sym_EQ] = ACTIONS(3696), + [anon_sym_LBRACK] = ACTIONS(3711), + [anon_sym_COLON] = ACTIONS(3711), + [anon_sym_COMMA] = ACTIONS(3711), + [anon_sym_RBRACK] = ACTIONS(3711), + [anon_sym_LPAREN] = ACTIONS(3711), + [anon_sym_RPAREN] = ACTIONS(3711), + [anon_sym_RBRACE] = ACTIONS(3711), + [anon_sym_LT] = ACTIONS(3696), + [anon_sym_GT] = ACTIONS(3696), + [anon_sym_in] = ACTIONS(3696), + [anon_sym_QMARK] = ACTIONS(3696), + [anon_sym_BANG] = ACTIONS(3696), + [anon_sym_PLUS_PLUS] = ACTIONS(3711), + [anon_sym_DASH_DASH] = ACTIONS(3711), + [anon_sym_PLUS] = ACTIONS(3696), + [anon_sym_DASH] = ACTIONS(3696), + [anon_sym_STAR] = ACTIONS(3696), + [anon_sym_SLASH] = ACTIONS(3696), + [anon_sym_PERCENT] = ACTIONS(3696), + [anon_sym_CARET] = ACTIONS(3696), + [anon_sym_PIPE] = ACTIONS(3696), + [anon_sym_AMP] = ACTIONS(3696), + [anon_sym_LT_LT] = ACTIONS(3696), + [anon_sym_GT_GT] = ACTIONS(3696), + [anon_sym_GT_GT_GT] = ACTIONS(3696), + [anon_sym_EQ_EQ] = ACTIONS(3711), + [anon_sym_BANG_EQ] = ACTIONS(3711), + [anon_sym_GT_EQ] = ACTIONS(3711), + [anon_sym_LT_EQ] = ACTIONS(3711), + [anon_sym_DOT] = ACTIONS(3696), + [anon_sym_EQ_GT] = ACTIONS(3711), + [anon_sym_switch] = ACTIONS(3711), + [anon_sym_when] = ACTIONS(3711), + [anon_sym_DOT_DOT] = ACTIONS(3711), + [anon_sym_and] = ACTIONS(3711), + [anon_sym_or] = ACTIONS(3711), + [anon_sym_PLUS_EQ] = ACTIONS(3711), + [anon_sym_DASH_EQ] = ACTIONS(3711), + [anon_sym_STAR_EQ] = ACTIONS(3711), + [anon_sym_SLASH_EQ] = ACTIONS(3711), + [anon_sym_PERCENT_EQ] = ACTIONS(3711), + [anon_sym_AMP_EQ] = ACTIONS(3711), + [anon_sym_CARET_EQ] = ACTIONS(3711), + [anon_sym_PIPE_EQ] = ACTIONS(3711), + [anon_sym_LT_LT_EQ] = ACTIONS(3711), + [anon_sym_GT_GT_EQ] = ACTIONS(3711), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3711), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3711), + [anon_sym_AMP_AMP] = ACTIONS(3711), + [anon_sym_PIPE_PIPE] = ACTIONS(3711), + [anon_sym_QMARK_QMARK] = ACTIONS(3696), + [anon_sym_into] = ACTIONS(3711), + [anon_sym_on] = ACTIONS(3711), + [anon_sym_equals] = ACTIONS(3711), + [anon_sym_by] = ACTIONS(3711), + [anon_sym_as] = ACTIONS(3711), + [anon_sym_is] = ACTIONS(3711), + [anon_sym_DASH_GT] = ACTIONS(3711), + [anon_sym_with] = ACTIONS(3711), + [aux_sym_preproc_if_token3] = ACTIONS(3711), + [aux_sym_preproc_else_token1] = ACTIONS(3711), + [aux_sym_preproc_elif_token1] = ACTIONS(3711), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -437457,70 +437079,70 @@ 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), - [anon_sym_SEMI] = ACTIONS(3697), - [anon_sym_EQ] = ACTIONS(3689), - [anon_sym_LBRACK] = ACTIONS(3697), - [anon_sym_COLON] = ACTIONS(3697), - [anon_sym_COMMA] = ACTIONS(3697), - [anon_sym_RBRACK] = ACTIONS(3697), - [anon_sym_LPAREN] = ACTIONS(3697), - [anon_sym_RPAREN] = ACTIONS(3697), - [anon_sym_RBRACE] = ACTIONS(3697), - [anon_sym_LT] = ACTIONS(3689), - [anon_sym_GT] = ACTIONS(3689), - [anon_sym_in] = ACTIONS(3689), - [anon_sym_QMARK] = ACTIONS(3689), - [anon_sym_BANG] = ACTIONS(3689), - [anon_sym_PLUS_PLUS] = ACTIONS(3697), - [anon_sym_DASH_DASH] = ACTIONS(3697), - [anon_sym_PLUS] = ACTIONS(3689), - [anon_sym_DASH] = ACTIONS(3689), - [anon_sym_STAR] = ACTIONS(3689), - [anon_sym_SLASH] = ACTIONS(3689), - [anon_sym_PERCENT] = ACTIONS(3689), - [anon_sym_CARET] = ACTIONS(3689), - [anon_sym_PIPE] = ACTIONS(3689), - [anon_sym_AMP] = ACTIONS(3689), - [anon_sym_LT_LT] = ACTIONS(3689), - [anon_sym_GT_GT] = ACTIONS(3689), - [anon_sym_GT_GT_GT] = ACTIONS(3689), - [anon_sym_EQ_EQ] = ACTIONS(3697), - [anon_sym_BANG_EQ] = ACTIONS(3697), - [anon_sym_GT_EQ] = ACTIONS(3697), - [anon_sym_LT_EQ] = ACTIONS(3697), - [anon_sym_DOT] = ACTIONS(3689), - [anon_sym_EQ_GT] = ACTIONS(3697), - [anon_sym_switch] = ACTIONS(3697), - [anon_sym_when] = ACTIONS(3697), - [anon_sym_DOT_DOT] = ACTIONS(3697), - [anon_sym_and] = ACTIONS(3697), - [anon_sym_or] = ACTIONS(3697), - [anon_sym_PLUS_EQ] = ACTIONS(3697), - [anon_sym_DASH_EQ] = ACTIONS(3697), - [anon_sym_STAR_EQ] = ACTIONS(3697), - [anon_sym_SLASH_EQ] = ACTIONS(3697), - [anon_sym_PERCENT_EQ] = ACTIONS(3697), - [anon_sym_AMP_EQ] = ACTIONS(3697), - [anon_sym_CARET_EQ] = ACTIONS(3697), - [anon_sym_PIPE_EQ] = ACTIONS(3697), - [anon_sym_LT_LT_EQ] = ACTIONS(3697), - [anon_sym_GT_GT_EQ] = ACTIONS(3697), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3697), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3697), - [anon_sym_AMP_AMP] = ACTIONS(3697), - [anon_sym_PIPE_PIPE] = ACTIONS(3697), - [anon_sym_QMARK_QMARK] = ACTIONS(3689), - [anon_sym_into] = ACTIONS(3697), - [anon_sym_on] = ACTIONS(3697), - [anon_sym_equals] = ACTIONS(3697), - [anon_sym_by] = ACTIONS(3697), - [anon_sym_as] = ACTIONS(3697), - [anon_sym_is] = ACTIONS(3697), - [anon_sym_DASH_GT] = ACTIONS(3697), - [anon_sym_with] = ACTIONS(3697), - [aux_sym_preproc_if_token3] = ACTIONS(3697), - [aux_sym_preproc_else_token1] = ACTIONS(3697), - [aux_sym_preproc_elif_token1] = ACTIONS(3697), + [anon_sym_SEMI] = ACTIONS(4116), + [anon_sym_EQ] = ACTIONS(4118), + [anon_sym_LBRACK] = ACTIONS(4116), + [anon_sym_COLON] = ACTIONS(4116), + [anon_sym_COMMA] = ACTIONS(4116), + [anon_sym_RBRACK] = ACTIONS(4116), + [anon_sym_LPAREN] = ACTIONS(4116), + [anon_sym_RPAREN] = ACTIONS(4116), + [anon_sym_RBRACE] = ACTIONS(4116), + [anon_sym_LT] = ACTIONS(4118), + [anon_sym_GT] = ACTIONS(4118), + [anon_sym_in] = ACTIONS(4118), + [anon_sym_QMARK] = ACTIONS(4118), + [anon_sym_BANG] = ACTIONS(4118), + [anon_sym_PLUS_PLUS] = ACTIONS(4116), + [anon_sym_DASH_DASH] = ACTIONS(4116), + [anon_sym_PLUS] = ACTIONS(4118), + [anon_sym_DASH] = ACTIONS(4118), + [anon_sym_STAR] = ACTIONS(4118), + [anon_sym_SLASH] = ACTIONS(4118), + [anon_sym_PERCENT] = ACTIONS(4118), + [anon_sym_CARET] = ACTIONS(4118), + [anon_sym_PIPE] = ACTIONS(4118), + [anon_sym_AMP] = ACTIONS(4118), + [anon_sym_LT_LT] = ACTIONS(4118), + [anon_sym_GT_GT] = ACTIONS(4118), + [anon_sym_GT_GT_GT] = ACTIONS(4118), + [anon_sym_EQ_EQ] = ACTIONS(4116), + [anon_sym_BANG_EQ] = ACTIONS(4116), + [anon_sym_GT_EQ] = ACTIONS(4116), + [anon_sym_LT_EQ] = ACTIONS(4116), + [anon_sym_DOT] = ACTIONS(4118), + [anon_sym_EQ_GT] = ACTIONS(4116), + [anon_sym_switch] = ACTIONS(4116), + [anon_sym_when] = ACTIONS(4116), + [anon_sym_DOT_DOT] = ACTIONS(4116), + [anon_sym_and] = ACTIONS(4116), + [anon_sym_or] = ACTIONS(4116), + [anon_sym_PLUS_EQ] = ACTIONS(4116), + [anon_sym_DASH_EQ] = ACTIONS(4116), + [anon_sym_STAR_EQ] = ACTIONS(4116), + [anon_sym_SLASH_EQ] = ACTIONS(4116), + [anon_sym_PERCENT_EQ] = ACTIONS(4116), + [anon_sym_AMP_EQ] = ACTIONS(4116), + [anon_sym_CARET_EQ] = ACTIONS(4116), + [anon_sym_PIPE_EQ] = ACTIONS(4116), + [anon_sym_LT_LT_EQ] = ACTIONS(4116), + [anon_sym_GT_GT_EQ] = ACTIONS(4116), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(4116), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(4116), + [anon_sym_AMP_AMP] = ACTIONS(4116), + [anon_sym_PIPE_PIPE] = ACTIONS(4116), + [anon_sym_QMARK_QMARK] = ACTIONS(4118), + [anon_sym_into] = ACTIONS(4116), + [anon_sym_on] = ACTIONS(4116), + [anon_sym_equals] = ACTIONS(4116), + [anon_sym_by] = ACTIONS(4116), + [anon_sym_as] = ACTIONS(4116), + [anon_sym_is] = ACTIONS(4116), + [anon_sym_DASH_GT] = ACTIONS(4116), + [anon_sym_with] = ACTIONS(4116), + [aux_sym_preproc_if_token3] = ACTIONS(4116), + [aux_sym_preproc_else_token1] = ACTIONS(4116), + [aux_sym_preproc_elif_token1] = ACTIONS(4116), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -437533,10 +437155,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2604] = { - [sym__variable_designation] = STATE(3785), - [sym_parenthesized_variable_designation] = STATE(3779), - [sym_identifier] = STATE(3781), - [sym__reserved_identifier] = STATE(2361), [sym_preproc_region] = STATE(2604), [sym_preproc_endregion] = STATE(2604), [sym_preproc_line] = STATE(2604), @@ -437546,66 +437164,70 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2604), [sym_preproc_define] = STATE(2604), [sym_preproc_undef] = STATE(2604), - [sym__identifier_token] = ACTIONS(4058), - [anon_sym_alias] = ACTIONS(4060), - [anon_sym_global] = ACTIONS(4060), - [anon_sym_LBRACK] = ACTIONS(3905), - [anon_sym_COMMA] = ACTIONS(3905), - [anon_sym_LPAREN] = ACTIONS(3905), - [anon_sym_file] = ACTIONS(4060), - [anon_sym_LT] = ACTIONS(3907), - [anon_sym_GT] = ACTIONS(3907), - [anon_sym_where] = ACTIONS(3907), - [anon_sym_QMARK] = ACTIONS(3907), - [anon_sym_notnull] = ACTIONS(4060), - [anon_sym_unmanaged] = ACTIONS(4060), - [anon_sym_BANG] = ACTIONS(3907), - [anon_sym_PLUS_PLUS] = ACTIONS(3905), - [anon_sym_DASH_DASH] = ACTIONS(3905), - [anon_sym_PLUS] = ACTIONS(3907), - [anon_sym_DASH] = ACTIONS(3907), - [anon_sym_STAR] = ACTIONS(3905), - [anon_sym_SLASH] = ACTIONS(3907), - [anon_sym_PERCENT] = ACTIONS(3905), - [anon_sym_CARET] = ACTIONS(3905), - [anon_sym_PIPE] = ACTIONS(3907), - [anon_sym_AMP] = ACTIONS(3907), - [anon_sym_LT_LT] = ACTIONS(3905), - [anon_sym_GT_GT] = ACTIONS(3907), - [anon_sym_GT_GT_GT] = ACTIONS(3905), - [anon_sym_EQ_EQ] = ACTIONS(3905), - [anon_sym_BANG_EQ] = ACTIONS(3905), - [anon_sym_GT_EQ] = ACTIONS(3905), - [anon_sym_LT_EQ] = ACTIONS(3905), - [anon_sym_DOT] = ACTIONS(3907), - [anon_sym_scoped] = ACTIONS(4060), - [anon_sym_var] = ACTIONS(4060), - [anon_sym_yield] = ACTIONS(4060), - [anon_sym_switch] = ACTIONS(3907), - [anon_sym_when] = ACTIONS(4060), - [sym_discard] = ACTIONS(4207), - [anon_sym_DOT_DOT] = ACTIONS(3905), - [anon_sym_and] = ACTIONS(3907), - [anon_sym_or] = ACTIONS(3907), - [anon_sym_AMP_AMP] = ACTIONS(3905), - [anon_sym_PIPE_PIPE] = ACTIONS(3905), - [anon_sym_QMARK_QMARK] = ACTIONS(3905), - [anon_sym_from] = ACTIONS(3907), - [anon_sym_into] = ACTIONS(4060), - [anon_sym_join] = ACTIONS(3907), - [anon_sym_on] = ACTIONS(4060), - [anon_sym_equals] = ACTIONS(4060), - [anon_sym_let] = ACTIONS(3907), - [anon_sym_orderby] = ACTIONS(3907), - [anon_sym_ascending] = ACTIONS(3907), - [anon_sym_descending] = ACTIONS(3907), - [anon_sym_group] = ACTIONS(3907), - [anon_sym_by] = ACTIONS(4060), - [anon_sym_select] = ACTIONS(3907), - [anon_sym_as] = ACTIONS(3907), - [anon_sym_is] = ACTIONS(3907), - [anon_sym_DASH_GT] = ACTIONS(3905), - [anon_sym_with] = ACTIONS(3907), + [anon_sym_SEMI] = ACTIONS(4120), + [anon_sym_EQ] = ACTIONS(4122), + [anon_sym_LBRACK] = ACTIONS(4120), + [anon_sym_COLON] = ACTIONS(4120), + [anon_sym_COMMA] = ACTIONS(4120), + [anon_sym_RBRACK] = ACTIONS(4120), + [anon_sym_LPAREN] = ACTIONS(4120), + [anon_sym_RPAREN] = ACTIONS(4120), + [anon_sym_RBRACE] = ACTIONS(4120), + [anon_sym_LT] = ACTIONS(4122), + [anon_sym_GT] = ACTIONS(4122), + [anon_sym_in] = ACTIONS(4122), + [anon_sym_QMARK] = ACTIONS(4122), + [anon_sym_BANG] = ACTIONS(4122), + [anon_sym_PLUS_PLUS] = ACTIONS(4120), + [anon_sym_DASH_DASH] = ACTIONS(4120), + [anon_sym_PLUS] = ACTIONS(4122), + [anon_sym_DASH] = ACTIONS(4122), + [anon_sym_STAR] = ACTIONS(4122), + [anon_sym_SLASH] = ACTIONS(4122), + [anon_sym_PERCENT] = ACTIONS(4122), + [anon_sym_CARET] = ACTIONS(4122), + [anon_sym_PIPE] = ACTIONS(4122), + [anon_sym_AMP] = ACTIONS(4122), + [anon_sym_LT_LT] = ACTIONS(4122), + [anon_sym_GT_GT] = ACTIONS(4122), + [anon_sym_GT_GT_GT] = ACTIONS(4122), + [anon_sym_EQ_EQ] = ACTIONS(4120), + [anon_sym_BANG_EQ] = ACTIONS(4120), + [anon_sym_GT_EQ] = ACTIONS(4120), + [anon_sym_LT_EQ] = ACTIONS(4120), + [anon_sym_DOT] = ACTIONS(4122), + [anon_sym_EQ_GT] = ACTIONS(4120), + [anon_sym_switch] = ACTIONS(4120), + [anon_sym_when] = ACTIONS(4120), + [anon_sym_DOT_DOT] = ACTIONS(4120), + [anon_sym_and] = ACTIONS(4120), + [anon_sym_or] = ACTIONS(4120), + [anon_sym_PLUS_EQ] = ACTIONS(4120), + [anon_sym_DASH_EQ] = ACTIONS(4120), + [anon_sym_STAR_EQ] = ACTIONS(4120), + [anon_sym_SLASH_EQ] = ACTIONS(4120), + [anon_sym_PERCENT_EQ] = ACTIONS(4120), + [anon_sym_AMP_EQ] = ACTIONS(4120), + [anon_sym_CARET_EQ] = ACTIONS(4120), + [anon_sym_PIPE_EQ] = ACTIONS(4120), + [anon_sym_LT_LT_EQ] = ACTIONS(4120), + [anon_sym_GT_GT_EQ] = ACTIONS(4120), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(4120), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(4120), + [anon_sym_AMP_AMP] = ACTIONS(4120), + [anon_sym_PIPE_PIPE] = ACTIONS(4120), + [anon_sym_QMARK_QMARK] = ACTIONS(4122), + [anon_sym_into] = ACTIONS(4120), + [anon_sym_on] = ACTIONS(4120), + [anon_sym_equals] = ACTIONS(4120), + [anon_sym_by] = ACTIONS(4120), + [anon_sym_as] = ACTIONS(4120), + [anon_sym_is] = ACTIONS(4120), + [anon_sym_DASH_GT] = ACTIONS(4120), + [anon_sym_with] = ACTIONS(4120), + [aux_sym_preproc_if_token3] = ACTIONS(4120), + [aux_sym_preproc_else_token1] = ACTIONS(4120), + [aux_sym_preproc_elif_token1] = ACTIONS(4120), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -437703,10 +437325,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2606] = { - [sym__variable_designation] = STATE(3790), - [sym_parenthesized_variable_designation] = STATE(3779), - [sym_identifier] = STATE(3781), - [sym__reserved_identifier] = STATE(2361), [sym_preproc_region] = STATE(2606), [sym_preproc_endregion] = STATE(2606), [sym_preproc_line] = STATE(2606), @@ -437716,66 +437334,70 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2606), [sym_preproc_define] = STATE(2606), [sym_preproc_undef] = STATE(2606), - [sym__identifier_token] = ACTIONS(4058), - [anon_sym_alias] = ACTIONS(4060), - [anon_sym_global] = ACTIONS(4060), - [anon_sym_LBRACK] = ACTIONS(3913), - [anon_sym_COMMA] = ACTIONS(3913), - [anon_sym_LPAREN] = ACTIONS(3913), - [anon_sym_file] = ACTIONS(4060), - [anon_sym_LT] = ACTIONS(3915), - [anon_sym_GT] = ACTIONS(3915), - [anon_sym_where] = ACTIONS(3915), - [anon_sym_QMARK] = ACTIONS(3915), - [anon_sym_notnull] = ACTIONS(4060), - [anon_sym_unmanaged] = ACTIONS(4060), - [anon_sym_BANG] = ACTIONS(3915), - [anon_sym_PLUS_PLUS] = ACTIONS(3913), - [anon_sym_DASH_DASH] = ACTIONS(3913), - [anon_sym_PLUS] = ACTIONS(3915), - [anon_sym_DASH] = ACTIONS(3915), - [anon_sym_STAR] = ACTIONS(3913), - [anon_sym_SLASH] = ACTIONS(3915), - [anon_sym_PERCENT] = ACTIONS(3913), - [anon_sym_CARET] = ACTIONS(3913), - [anon_sym_PIPE] = ACTIONS(3915), - [anon_sym_AMP] = ACTIONS(3915), - [anon_sym_LT_LT] = ACTIONS(3913), - [anon_sym_GT_GT] = ACTIONS(3915), - [anon_sym_GT_GT_GT] = ACTIONS(3913), - [anon_sym_EQ_EQ] = ACTIONS(3913), - [anon_sym_BANG_EQ] = ACTIONS(3913), - [anon_sym_GT_EQ] = ACTIONS(3913), - [anon_sym_LT_EQ] = ACTIONS(3913), - [anon_sym_DOT] = ACTIONS(3915), - [anon_sym_scoped] = ACTIONS(4060), - [anon_sym_var] = ACTIONS(4060), - [anon_sym_yield] = ACTIONS(4060), - [anon_sym_switch] = ACTIONS(3915), - [anon_sym_when] = ACTIONS(4060), - [sym_discard] = ACTIONS(4207), - [anon_sym_DOT_DOT] = ACTIONS(3913), - [anon_sym_and] = ACTIONS(3915), - [anon_sym_or] = ACTIONS(3915), - [anon_sym_AMP_AMP] = ACTIONS(3913), - [anon_sym_PIPE_PIPE] = ACTIONS(3913), - [anon_sym_QMARK_QMARK] = ACTIONS(3913), - [anon_sym_from] = ACTIONS(3915), - [anon_sym_into] = ACTIONS(4060), - [anon_sym_join] = ACTIONS(3915), - [anon_sym_on] = ACTIONS(4060), - [anon_sym_equals] = ACTIONS(4060), - [anon_sym_let] = ACTIONS(3915), - [anon_sym_orderby] = ACTIONS(3915), - [anon_sym_ascending] = ACTIONS(3915), - [anon_sym_descending] = ACTIONS(3915), - [anon_sym_group] = ACTIONS(3915), - [anon_sym_by] = ACTIONS(4060), - [anon_sym_select] = ACTIONS(3915), - [anon_sym_as] = ACTIONS(3915), - [anon_sym_is] = ACTIONS(3915), - [anon_sym_DASH_GT] = ACTIONS(3913), - [anon_sym_with] = ACTIONS(3915), + [anon_sym_SEMI] = ACTIONS(4132), + [anon_sym_EQ] = ACTIONS(4134), + [anon_sym_LBRACK] = ACTIONS(4132), + [anon_sym_COLON] = ACTIONS(4132), + [anon_sym_COMMA] = ACTIONS(4132), + [anon_sym_RBRACK] = ACTIONS(4132), + [anon_sym_LPAREN] = ACTIONS(4132), + [anon_sym_RPAREN] = ACTIONS(4132), + [anon_sym_RBRACE] = ACTIONS(4132), + [anon_sym_LT] = ACTIONS(4134), + [anon_sym_GT] = ACTIONS(4134), + [anon_sym_in] = ACTIONS(4134), + [anon_sym_QMARK] = ACTIONS(4134), + [anon_sym_BANG] = ACTIONS(4134), + [anon_sym_PLUS_PLUS] = ACTIONS(4132), + [anon_sym_DASH_DASH] = ACTIONS(4132), + [anon_sym_PLUS] = ACTIONS(4134), + [anon_sym_DASH] = ACTIONS(4134), + [anon_sym_STAR] = ACTIONS(4134), + [anon_sym_SLASH] = ACTIONS(4134), + [anon_sym_PERCENT] = ACTIONS(4134), + [anon_sym_CARET] = ACTIONS(4134), + [anon_sym_PIPE] = ACTIONS(4134), + [anon_sym_AMP] = ACTIONS(4134), + [anon_sym_LT_LT] = ACTIONS(4134), + [anon_sym_GT_GT] = ACTIONS(4134), + [anon_sym_GT_GT_GT] = ACTIONS(4134), + [anon_sym_EQ_EQ] = ACTIONS(4132), + [anon_sym_BANG_EQ] = ACTIONS(4132), + [anon_sym_GT_EQ] = ACTIONS(4132), + [anon_sym_LT_EQ] = ACTIONS(4132), + [anon_sym_DOT] = ACTIONS(4134), + [anon_sym_EQ_GT] = ACTIONS(4132), + [anon_sym_switch] = ACTIONS(4132), + [anon_sym_when] = ACTIONS(4132), + [anon_sym_DOT_DOT] = ACTIONS(4132), + [anon_sym_and] = ACTIONS(4132), + [anon_sym_or] = ACTIONS(4132), + [anon_sym_PLUS_EQ] = ACTIONS(4132), + [anon_sym_DASH_EQ] = ACTIONS(4132), + [anon_sym_STAR_EQ] = ACTIONS(4132), + [anon_sym_SLASH_EQ] = ACTIONS(4132), + [anon_sym_PERCENT_EQ] = ACTIONS(4132), + [anon_sym_AMP_EQ] = ACTIONS(4132), + [anon_sym_CARET_EQ] = ACTIONS(4132), + [anon_sym_PIPE_EQ] = ACTIONS(4132), + [anon_sym_LT_LT_EQ] = ACTIONS(4132), + [anon_sym_GT_GT_EQ] = ACTIONS(4132), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(4132), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(4132), + [anon_sym_AMP_AMP] = ACTIONS(4132), + [anon_sym_PIPE_PIPE] = ACTIONS(4132), + [anon_sym_QMARK_QMARK] = ACTIONS(4134), + [anon_sym_into] = ACTIONS(4132), + [anon_sym_on] = ACTIONS(4132), + [anon_sym_equals] = ACTIONS(4132), + [anon_sym_by] = ACTIONS(4132), + [anon_sym_as] = ACTIONS(4132), + [anon_sym_is] = ACTIONS(4132), + [anon_sym_DASH_GT] = ACTIONS(4132), + [anon_sym_with] = ACTIONS(4132), + [aux_sym_preproc_if_token3] = ACTIONS(4132), + [aux_sym_preproc_else_token1] = ACTIONS(4132), + [aux_sym_preproc_elif_token1] = ACTIONS(4132), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -437788,10 +437410,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2607] = { - [sym__variable_designation] = STATE(3792), - [sym_parenthesized_variable_designation] = STATE(3779), - [sym_identifier] = STATE(3781), - [sym__reserved_identifier] = STATE(2361), [sym_preproc_region] = STATE(2607), [sym_preproc_endregion] = STATE(2607), [sym_preproc_line] = STATE(2607), @@ -437801,66 +437419,70 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2607), [sym_preproc_define] = STATE(2607), [sym_preproc_undef] = STATE(2607), - [sym__identifier_token] = ACTIONS(4058), - [anon_sym_alias] = ACTIONS(4060), - [anon_sym_global] = ACTIONS(4060), - [anon_sym_LBRACK] = ACTIONS(3957), - [anon_sym_COMMA] = ACTIONS(3957), - [anon_sym_LPAREN] = ACTIONS(3957), - [anon_sym_file] = ACTIONS(4060), - [anon_sym_LT] = ACTIONS(3959), - [anon_sym_GT] = ACTIONS(3959), - [anon_sym_where] = ACTIONS(3959), - [anon_sym_QMARK] = ACTIONS(3959), - [anon_sym_notnull] = ACTIONS(4060), - [anon_sym_unmanaged] = ACTIONS(4060), - [anon_sym_BANG] = ACTIONS(3959), - [anon_sym_PLUS_PLUS] = ACTIONS(3957), - [anon_sym_DASH_DASH] = ACTIONS(3957), - [anon_sym_PLUS] = ACTIONS(3959), - [anon_sym_DASH] = ACTIONS(3959), - [anon_sym_STAR] = ACTIONS(3957), - [anon_sym_SLASH] = ACTIONS(3959), - [anon_sym_PERCENT] = ACTIONS(3957), - [anon_sym_CARET] = ACTIONS(3957), - [anon_sym_PIPE] = ACTIONS(3959), - [anon_sym_AMP] = ACTIONS(3959), - [anon_sym_LT_LT] = ACTIONS(3957), - [anon_sym_GT_GT] = ACTIONS(3959), - [anon_sym_GT_GT_GT] = ACTIONS(3957), - [anon_sym_EQ_EQ] = ACTIONS(3957), - [anon_sym_BANG_EQ] = ACTIONS(3957), - [anon_sym_GT_EQ] = ACTIONS(3957), - [anon_sym_LT_EQ] = ACTIONS(3957), - [anon_sym_DOT] = ACTIONS(3959), - [anon_sym_scoped] = ACTIONS(4060), - [anon_sym_var] = ACTIONS(4060), - [anon_sym_yield] = ACTIONS(4060), - [anon_sym_switch] = ACTIONS(3959), - [anon_sym_when] = ACTIONS(4060), - [sym_discard] = ACTIONS(4207), - [anon_sym_DOT_DOT] = ACTIONS(3957), - [anon_sym_and] = ACTIONS(3959), - [anon_sym_or] = ACTIONS(3959), - [anon_sym_AMP_AMP] = ACTIONS(3957), - [anon_sym_PIPE_PIPE] = ACTIONS(3957), - [anon_sym_QMARK_QMARK] = ACTIONS(3957), - [anon_sym_from] = ACTIONS(3959), - [anon_sym_into] = ACTIONS(4060), - [anon_sym_join] = ACTIONS(3959), - [anon_sym_on] = ACTIONS(4060), - [anon_sym_equals] = ACTIONS(4060), - [anon_sym_let] = ACTIONS(3959), - [anon_sym_orderby] = ACTIONS(3959), - [anon_sym_ascending] = ACTIONS(3959), - [anon_sym_descending] = ACTIONS(3959), - [anon_sym_group] = ACTIONS(3959), - [anon_sym_by] = ACTIONS(4060), - [anon_sym_select] = ACTIONS(3959), - [anon_sym_as] = ACTIONS(3959), - [anon_sym_is] = ACTIONS(3959), - [anon_sym_DASH_GT] = ACTIONS(3957), - [anon_sym_with] = ACTIONS(3959), + [anon_sym_SEMI] = ACTIONS(4136), + [anon_sym_EQ] = ACTIONS(4138), + [anon_sym_LBRACK] = ACTIONS(4136), + [anon_sym_COLON] = ACTIONS(4136), + [anon_sym_COMMA] = ACTIONS(4136), + [anon_sym_RBRACK] = ACTIONS(4136), + [anon_sym_LPAREN] = ACTIONS(4136), + [anon_sym_RPAREN] = ACTIONS(4136), + [anon_sym_RBRACE] = ACTIONS(4136), + [anon_sym_LT] = ACTIONS(4138), + [anon_sym_GT] = ACTIONS(4138), + [anon_sym_in] = ACTIONS(4138), + [anon_sym_QMARK] = ACTIONS(4138), + [anon_sym_BANG] = ACTIONS(4138), + [anon_sym_PLUS_PLUS] = ACTIONS(4136), + [anon_sym_DASH_DASH] = ACTIONS(4136), + [anon_sym_PLUS] = ACTIONS(4138), + [anon_sym_DASH] = ACTIONS(4138), + [anon_sym_STAR] = ACTIONS(4138), + [anon_sym_SLASH] = ACTIONS(4138), + [anon_sym_PERCENT] = ACTIONS(4138), + [anon_sym_CARET] = ACTIONS(4138), + [anon_sym_PIPE] = ACTIONS(4138), + [anon_sym_AMP] = ACTIONS(4138), + [anon_sym_LT_LT] = ACTIONS(4138), + [anon_sym_GT_GT] = ACTIONS(4138), + [anon_sym_GT_GT_GT] = ACTIONS(4138), + [anon_sym_EQ_EQ] = ACTIONS(4136), + [anon_sym_BANG_EQ] = ACTIONS(4136), + [anon_sym_GT_EQ] = ACTIONS(4136), + [anon_sym_LT_EQ] = ACTIONS(4136), + [anon_sym_DOT] = ACTIONS(4138), + [anon_sym_EQ_GT] = ACTIONS(4136), + [anon_sym_switch] = ACTIONS(4136), + [anon_sym_when] = ACTIONS(4136), + [anon_sym_DOT_DOT] = ACTIONS(4136), + [anon_sym_and] = ACTIONS(4136), + [anon_sym_or] = ACTIONS(4136), + [anon_sym_PLUS_EQ] = ACTIONS(4136), + [anon_sym_DASH_EQ] = ACTIONS(4136), + [anon_sym_STAR_EQ] = ACTIONS(4136), + [anon_sym_SLASH_EQ] = ACTIONS(4136), + [anon_sym_PERCENT_EQ] = ACTIONS(4136), + [anon_sym_AMP_EQ] = ACTIONS(4136), + [anon_sym_CARET_EQ] = ACTIONS(4136), + [anon_sym_PIPE_EQ] = ACTIONS(4136), + [anon_sym_LT_LT_EQ] = ACTIONS(4136), + [anon_sym_GT_GT_EQ] = ACTIONS(4136), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(4136), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(4136), + [anon_sym_AMP_AMP] = ACTIONS(4136), + [anon_sym_PIPE_PIPE] = ACTIONS(4136), + [anon_sym_QMARK_QMARK] = ACTIONS(4138), + [anon_sym_into] = ACTIONS(4136), + [anon_sym_on] = ACTIONS(4136), + [anon_sym_equals] = ACTIONS(4136), + [anon_sym_by] = ACTIONS(4136), + [anon_sym_as] = ACTIONS(4136), + [anon_sym_is] = ACTIONS(4136), + [anon_sym_DASH_GT] = ACTIONS(4136), + [anon_sym_with] = ACTIONS(4136), + [aux_sym_preproc_if_token3] = ACTIONS(4136), + [aux_sym_preproc_else_token1] = ACTIONS(4136), + [aux_sym_preproc_elif_token1] = ACTIONS(4136), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -437873,10 +437495,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2608] = { - [sym__variable_designation] = STATE(3796), - [sym_parenthesized_variable_designation] = STATE(3779), - [sym_identifier] = STATE(3781), - [sym__reserved_identifier] = STATE(2361), [sym_preproc_region] = STATE(2608), [sym_preproc_endregion] = STATE(2608), [sym_preproc_line] = STATE(2608), @@ -437886,66 +437504,70 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2608), [sym_preproc_define] = STATE(2608), [sym_preproc_undef] = STATE(2608), - [sym__identifier_token] = ACTIONS(4058), - [anon_sym_alias] = ACTIONS(4060), - [anon_sym_global] = ACTIONS(4060), - [anon_sym_LBRACK] = ACTIONS(3961), - [anon_sym_COMMA] = ACTIONS(3961), - [anon_sym_LPAREN] = ACTIONS(3961), - [anon_sym_file] = ACTIONS(4060), - [anon_sym_LT] = ACTIONS(3963), - [anon_sym_GT] = ACTIONS(3963), - [anon_sym_where] = ACTIONS(3963), - [anon_sym_QMARK] = ACTIONS(3963), - [anon_sym_notnull] = ACTIONS(4060), - [anon_sym_unmanaged] = ACTIONS(4060), - [anon_sym_BANG] = ACTIONS(3963), - [anon_sym_PLUS_PLUS] = ACTIONS(3961), - [anon_sym_DASH_DASH] = ACTIONS(3961), - [anon_sym_PLUS] = ACTIONS(3963), - [anon_sym_DASH] = ACTIONS(3963), - [anon_sym_STAR] = ACTIONS(3961), - [anon_sym_SLASH] = ACTIONS(3963), - [anon_sym_PERCENT] = ACTIONS(3961), - [anon_sym_CARET] = ACTIONS(3961), - [anon_sym_PIPE] = ACTIONS(3963), - [anon_sym_AMP] = ACTIONS(3963), - [anon_sym_LT_LT] = ACTIONS(3961), - [anon_sym_GT_GT] = ACTIONS(3963), - [anon_sym_GT_GT_GT] = ACTIONS(3961), - [anon_sym_EQ_EQ] = ACTIONS(3961), - [anon_sym_BANG_EQ] = ACTIONS(3961), - [anon_sym_GT_EQ] = ACTIONS(3961), - [anon_sym_LT_EQ] = ACTIONS(3961), - [anon_sym_DOT] = ACTIONS(3963), - [anon_sym_scoped] = ACTIONS(4060), - [anon_sym_var] = ACTIONS(4060), - [anon_sym_yield] = ACTIONS(4060), - [anon_sym_switch] = ACTIONS(3963), - [anon_sym_when] = ACTIONS(4060), - [sym_discard] = ACTIONS(4207), - [anon_sym_DOT_DOT] = ACTIONS(3961), - [anon_sym_and] = ACTIONS(3963), - [anon_sym_or] = ACTIONS(3963), - [anon_sym_AMP_AMP] = ACTIONS(3961), - [anon_sym_PIPE_PIPE] = ACTIONS(3961), - [anon_sym_QMARK_QMARK] = ACTIONS(3961), - [anon_sym_from] = ACTIONS(3963), - [anon_sym_into] = ACTIONS(4060), - [anon_sym_join] = ACTIONS(3963), - [anon_sym_on] = ACTIONS(4060), - [anon_sym_equals] = ACTIONS(4060), - [anon_sym_let] = ACTIONS(3963), - [anon_sym_orderby] = ACTIONS(3963), - [anon_sym_ascending] = ACTIONS(3963), - [anon_sym_descending] = ACTIONS(3963), - [anon_sym_group] = ACTIONS(3963), - [anon_sym_by] = ACTIONS(4060), - [anon_sym_select] = ACTIONS(3963), - [anon_sym_as] = ACTIONS(3963), - [anon_sym_is] = ACTIONS(3963), - [anon_sym_DASH_GT] = ACTIONS(3961), - [anon_sym_with] = ACTIONS(3963), + [anon_sym_SEMI] = ACTIONS(4241), + [anon_sym_EQ] = ACTIONS(3696), + [anon_sym_LBRACK] = ACTIONS(4243), + [anon_sym_COLON] = ACTIONS(4241), + [anon_sym_COMMA] = ACTIONS(4241), + [anon_sym_RBRACK] = ACTIONS(4241), + [anon_sym_LPAREN] = ACTIONS(4243), + [anon_sym_RPAREN] = ACTIONS(4241), + [anon_sym_RBRACE] = ACTIONS(4241), + [anon_sym_LT] = ACTIONS(4246), + [anon_sym_GT] = ACTIONS(4246), + [anon_sym_in] = ACTIONS(4249), + [anon_sym_QMARK] = ACTIONS(4246), + [anon_sym_BANG] = ACTIONS(4246), + [anon_sym_PLUS_PLUS] = ACTIONS(4243), + [anon_sym_DASH_DASH] = ACTIONS(4243), + [anon_sym_PLUS] = ACTIONS(4246), + [anon_sym_DASH] = ACTIONS(4246), + [anon_sym_STAR] = ACTIONS(4246), + [anon_sym_SLASH] = ACTIONS(4246), + [anon_sym_PERCENT] = ACTIONS(4246), + [anon_sym_CARET] = ACTIONS(4246), + [anon_sym_PIPE] = ACTIONS(4246), + [anon_sym_AMP] = ACTIONS(4246), + [anon_sym_LT_LT] = ACTIONS(4246), + [anon_sym_GT_GT] = ACTIONS(4246), + [anon_sym_GT_GT_GT] = ACTIONS(4246), + [anon_sym_EQ_EQ] = ACTIONS(4243), + [anon_sym_BANG_EQ] = ACTIONS(4243), + [anon_sym_GT_EQ] = ACTIONS(4243), + [anon_sym_LT_EQ] = ACTIONS(4243), + [anon_sym_DOT] = ACTIONS(4246), + [anon_sym_EQ_GT] = ACTIONS(4241), + [anon_sym_switch] = ACTIONS(4243), + [anon_sym_when] = ACTIONS(4241), + [anon_sym_DOT_DOT] = ACTIONS(4243), + [anon_sym_and] = ACTIONS(4241), + [anon_sym_or] = ACTIONS(4241), + [anon_sym_PLUS_EQ] = ACTIONS(3711), + [anon_sym_DASH_EQ] = ACTIONS(3711), + [anon_sym_STAR_EQ] = ACTIONS(3711), + [anon_sym_SLASH_EQ] = ACTIONS(3711), + [anon_sym_PERCENT_EQ] = ACTIONS(3711), + [anon_sym_AMP_EQ] = ACTIONS(3711), + [anon_sym_CARET_EQ] = ACTIONS(3711), + [anon_sym_PIPE_EQ] = ACTIONS(3711), + [anon_sym_LT_LT_EQ] = ACTIONS(3711), + [anon_sym_GT_GT_EQ] = ACTIONS(3711), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3711), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3711), + [anon_sym_AMP_AMP] = ACTIONS(4243), + [anon_sym_PIPE_PIPE] = ACTIONS(4243), + [anon_sym_QMARK_QMARK] = ACTIONS(4246), + [anon_sym_into] = ACTIONS(4241), + [anon_sym_on] = ACTIONS(4241), + [anon_sym_equals] = ACTIONS(4241), + [anon_sym_by] = ACTIONS(4241), + [anon_sym_as] = ACTIONS(4243), + [anon_sym_is] = ACTIONS(4243), + [anon_sym_DASH_GT] = ACTIONS(4243), + [anon_sym_with] = ACTIONS(4243), + [aux_sym_preproc_if_token3] = ACTIONS(4241), + [aux_sym_preproc_else_token1] = ACTIONS(4241), + [aux_sym_preproc_elif_token1] = ACTIONS(4241), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -437967,70 +437589,70 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2609), [sym_preproc_define] = STATE(2609), [sym_preproc_undef] = STATE(2609), - [anon_sym_SEMI] = ACTIONS(3719), - [anon_sym_EQ] = ACTIONS(3704), - [anon_sym_LBRACK] = ACTIONS(3719), - [anon_sym_COLON] = ACTIONS(3719), - [anon_sym_COMMA] = ACTIONS(3719), - [anon_sym_RBRACK] = ACTIONS(3719), - [anon_sym_LPAREN] = ACTIONS(3719), - [anon_sym_RPAREN] = ACTIONS(3719), - [anon_sym_RBRACE] = ACTIONS(3719), - [anon_sym_LT] = ACTIONS(3704), - [anon_sym_GT] = ACTIONS(3704), - [anon_sym_in] = ACTIONS(3704), - [anon_sym_QMARK] = ACTIONS(3704), - [anon_sym_BANG] = ACTIONS(3704), - [anon_sym_PLUS_PLUS] = ACTIONS(3719), - [anon_sym_DASH_DASH] = ACTIONS(3719), - [anon_sym_PLUS] = ACTIONS(3704), - [anon_sym_DASH] = ACTIONS(3704), - [anon_sym_STAR] = ACTIONS(3704), - [anon_sym_SLASH] = ACTIONS(3704), - [anon_sym_PERCENT] = ACTIONS(3704), - [anon_sym_CARET] = ACTIONS(3704), - [anon_sym_PIPE] = ACTIONS(3704), - [anon_sym_AMP] = ACTIONS(3704), - [anon_sym_LT_LT] = ACTIONS(3704), - [anon_sym_GT_GT] = ACTIONS(3704), - [anon_sym_GT_GT_GT] = ACTIONS(3704), - [anon_sym_EQ_EQ] = ACTIONS(3719), - [anon_sym_BANG_EQ] = ACTIONS(3719), - [anon_sym_GT_EQ] = ACTIONS(3719), - [anon_sym_LT_EQ] = ACTIONS(3719), - [anon_sym_DOT] = ACTIONS(3704), - [anon_sym_EQ_GT] = ACTIONS(3719), - [anon_sym_switch] = ACTIONS(3719), - [anon_sym_when] = ACTIONS(3719), - [anon_sym_DOT_DOT] = ACTIONS(3719), - [anon_sym_and] = ACTIONS(3719), - [anon_sym_or] = ACTIONS(3719), - [anon_sym_PLUS_EQ] = ACTIONS(3719), - [anon_sym_DASH_EQ] = ACTIONS(3719), - [anon_sym_STAR_EQ] = ACTIONS(3719), - [anon_sym_SLASH_EQ] = ACTIONS(3719), - [anon_sym_PERCENT_EQ] = ACTIONS(3719), - [anon_sym_AMP_EQ] = ACTIONS(3719), - [anon_sym_CARET_EQ] = ACTIONS(3719), - [anon_sym_PIPE_EQ] = ACTIONS(3719), - [anon_sym_LT_LT_EQ] = ACTIONS(3719), - [anon_sym_GT_GT_EQ] = ACTIONS(3719), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3719), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3719), - [anon_sym_AMP_AMP] = ACTIONS(3719), - [anon_sym_PIPE_PIPE] = ACTIONS(3719), - [anon_sym_QMARK_QMARK] = ACTIONS(3704), - [anon_sym_into] = ACTIONS(3719), - [anon_sym_on] = ACTIONS(3719), - [anon_sym_equals] = ACTIONS(3719), - [anon_sym_by] = ACTIONS(3719), - [anon_sym_as] = ACTIONS(3719), - [anon_sym_is] = ACTIONS(3719), - [anon_sym_DASH_GT] = ACTIONS(3719), - [anon_sym_with] = ACTIONS(3719), - [aux_sym_preproc_if_token3] = ACTIONS(3719), - [aux_sym_preproc_else_token1] = ACTIONS(3719), - [aux_sym_preproc_elif_token1] = ACTIONS(3719), + [anon_sym_SEMI] = ACTIONS(4140), + [anon_sym_EQ] = ACTIONS(4142), + [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_RBRACE] = ACTIONS(4140), + [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(4140), + [anon_sym_DASH_DASH] = ACTIONS(4140), + [anon_sym_PLUS] = ACTIONS(4142), + [anon_sym_DASH] = ACTIONS(4142), + [anon_sym_STAR] = ACTIONS(4142), + [anon_sym_SLASH] = ACTIONS(4142), + [anon_sym_PERCENT] = ACTIONS(4142), + [anon_sym_CARET] = ACTIONS(4142), + [anon_sym_PIPE] = ACTIONS(4142), + [anon_sym_AMP] = ACTIONS(4142), + [anon_sym_LT_LT] = ACTIONS(4142), + [anon_sym_GT_GT] = ACTIONS(4142), + [anon_sym_GT_GT_GT] = ACTIONS(4142), + [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(4142), + [anon_sym_EQ_GT] = ACTIONS(4140), + [anon_sym_switch] = ACTIONS(4140), + [anon_sym_when] = ACTIONS(4140), + [anon_sym_DOT_DOT] = ACTIONS(4140), + [anon_sym_and] = ACTIONS(4140), + [anon_sym_or] = ACTIONS(4140), + [anon_sym_PLUS_EQ] = ACTIONS(4140), + [anon_sym_DASH_EQ] = ACTIONS(4140), + [anon_sym_STAR_EQ] = ACTIONS(4140), + [anon_sym_SLASH_EQ] = ACTIONS(4140), + [anon_sym_PERCENT_EQ] = ACTIONS(4140), + [anon_sym_AMP_EQ] = ACTIONS(4140), + [anon_sym_CARET_EQ] = ACTIONS(4140), + [anon_sym_PIPE_EQ] = ACTIONS(4140), + [anon_sym_LT_LT_EQ] = ACTIONS(4140), + [anon_sym_GT_GT_EQ] = ACTIONS(4140), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(4140), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(4140), + [anon_sym_AMP_AMP] = ACTIONS(4140), + [anon_sym_PIPE_PIPE] = ACTIONS(4140), + [anon_sym_QMARK_QMARK] = ACTIONS(4142), + [anon_sym_into] = ACTIONS(4140), + [anon_sym_on] = ACTIONS(4140), + [anon_sym_equals] = ACTIONS(4140), + [anon_sym_by] = ACTIONS(4140), + [anon_sym_as] = ACTIONS(4140), + [anon_sym_is] = ACTIONS(4140), + [anon_sym_DASH_GT] = ACTIONS(4140), + [anon_sym_with] = ACTIONS(4140), + [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), @@ -438052,70 +437674,70 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2610), [sym_preproc_define] = STATE(2610), [sym_preproc_undef] = STATE(2610), - [anon_sym_SEMI] = ACTIONS(4134), - [anon_sym_EQ] = ACTIONS(4136), - [anon_sym_LBRACK] = ACTIONS(4134), - [anon_sym_COLON] = ACTIONS(4134), - [anon_sym_COMMA] = ACTIONS(4134), - [anon_sym_RBRACK] = ACTIONS(4134), - [anon_sym_LPAREN] = ACTIONS(4134), - [anon_sym_RPAREN] = ACTIONS(4134), - [anon_sym_RBRACE] = ACTIONS(4134), - [anon_sym_LT] = ACTIONS(4136), - [anon_sym_GT] = ACTIONS(4136), - [anon_sym_in] = ACTIONS(4136), - [anon_sym_QMARK] = ACTIONS(4136), - [anon_sym_BANG] = ACTIONS(4136), - [anon_sym_PLUS_PLUS] = ACTIONS(4134), - [anon_sym_DASH_DASH] = ACTIONS(4134), - [anon_sym_PLUS] = ACTIONS(4136), - [anon_sym_DASH] = ACTIONS(4136), - [anon_sym_STAR] = ACTIONS(4136), - [anon_sym_SLASH] = ACTIONS(4136), - [anon_sym_PERCENT] = ACTIONS(4136), - [anon_sym_CARET] = ACTIONS(4136), - [anon_sym_PIPE] = ACTIONS(4136), - [anon_sym_AMP] = ACTIONS(4136), - [anon_sym_LT_LT] = ACTIONS(4136), - [anon_sym_GT_GT] = ACTIONS(4136), - [anon_sym_GT_GT_GT] = ACTIONS(4136), - [anon_sym_EQ_EQ] = ACTIONS(4134), - [anon_sym_BANG_EQ] = ACTIONS(4134), - [anon_sym_GT_EQ] = ACTIONS(4134), - [anon_sym_LT_EQ] = ACTIONS(4134), - [anon_sym_DOT] = ACTIONS(4136), - [anon_sym_EQ_GT] = ACTIONS(4134), - [anon_sym_switch] = ACTIONS(4134), - [anon_sym_when] = ACTIONS(4134), - [anon_sym_DOT_DOT] = ACTIONS(4134), - [anon_sym_and] = ACTIONS(4134), - [anon_sym_or] = ACTIONS(4134), - [anon_sym_PLUS_EQ] = ACTIONS(4134), - [anon_sym_DASH_EQ] = ACTIONS(4134), - [anon_sym_STAR_EQ] = ACTIONS(4134), - [anon_sym_SLASH_EQ] = ACTIONS(4134), - [anon_sym_PERCENT_EQ] = ACTIONS(4134), - [anon_sym_AMP_EQ] = ACTIONS(4134), - [anon_sym_CARET_EQ] = ACTIONS(4134), - [anon_sym_PIPE_EQ] = ACTIONS(4134), - [anon_sym_LT_LT_EQ] = ACTIONS(4134), - [anon_sym_GT_GT_EQ] = ACTIONS(4134), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(4134), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(4134), - [anon_sym_AMP_AMP] = ACTIONS(4134), - [anon_sym_PIPE_PIPE] = ACTIONS(4134), - [anon_sym_QMARK_QMARK] = ACTIONS(4136), - [anon_sym_into] = ACTIONS(4134), - [anon_sym_on] = ACTIONS(4134), - [anon_sym_equals] = ACTIONS(4134), - [anon_sym_by] = ACTIONS(4134), - [anon_sym_as] = ACTIONS(4134), - [anon_sym_is] = ACTIONS(4134), - [anon_sym_DASH_GT] = ACTIONS(4134), - [anon_sym_with] = ACTIONS(4134), - [aux_sym_preproc_if_token3] = ACTIONS(4134), - [aux_sym_preproc_else_token1] = ACTIONS(4134), - [aux_sym_preproc_elif_token1] = ACTIONS(4134), + [anon_sym_SEMI] = ACTIONS(4148), + [anon_sym_EQ] = ACTIONS(4150), + [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_RBRACE] = ACTIONS(4148), + [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(4148), + [anon_sym_DASH_DASH] = ACTIONS(4148), + [anon_sym_PLUS] = ACTIONS(4150), + [anon_sym_DASH] = ACTIONS(4150), + [anon_sym_STAR] = ACTIONS(4150), + [anon_sym_SLASH] = ACTIONS(4150), + [anon_sym_PERCENT] = ACTIONS(4150), + [anon_sym_CARET] = ACTIONS(4150), + [anon_sym_PIPE] = ACTIONS(4150), + [anon_sym_AMP] = ACTIONS(4150), + [anon_sym_LT_LT] = ACTIONS(4150), + [anon_sym_GT_GT] = ACTIONS(4150), + [anon_sym_GT_GT_GT] = ACTIONS(4150), + [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(4150), + [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_PLUS_EQ] = ACTIONS(4148), + [anon_sym_DASH_EQ] = ACTIONS(4148), + [anon_sym_STAR_EQ] = ACTIONS(4148), + [anon_sym_SLASH_EQ] = ACTIONS(4148), + [anon_sym_PERCENT_EQ] = ACTIONS(4148), + [anon_sym_AMP_EQ] = ACTIONS(4148), + [anon_sym_CARET_EQ] = ACTIONS(4148), + [anon_sym_PIPE_EQ] = ACTIONS(4148), + [anon_sym_LT_LT_EQ] = ACTIONS(4148), + [anon_sym_GT_GT_EQ] = ACTIONS(4148), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(4148), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(4148), + [anon_sym_AMP_AMP] = ACTIONS(4148), + [anon_sym_PIPE_PIPE] = ACTIONS(4148), + [anon_sym_QMARK_QMARK] = ACTIONS(4150), + [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), @@ -438137,70 +437759,70 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2611), [sym_preproc_define] = STATE(2611), [sym_preproc_undef] = STATE(2611), - [sym__identifier_token] = ACTIONS(4263), - [anon_sym_extern] = ACTIONS(4263), - [anon_sym_alias] = ACTIONS(4263), - [anon_sym_global] = ACTIONS(4263), - [anon_sym_using] = ACTIONS(4263), - [anon_sym_unsafe] = ACTIONS(4263), - [anon_sym_EQ] = ACTIONS(4265), - [anon_sym_static] = ACTIONS(4263), - [anon_sym_LBRACK] = ACTIONS(4267), - [anon_sym_LPAREN] = ACTIONS(4267), - [anon_sym_event] = ACTIONS(4263), - [anon_sym_namespace] = ACTIONS(4263), - [anon_sym_class] = ACTIONS(4263), - [anon_sym_ref] = ACTIONS(4263), - [anon_sym_struct] = ACTIONS(4263), - [anon_sym_enum] = ACTIONS(4263), - [anon_sym_RBRACE] = ACTIONS(4267), - [anon_sym_interface] = ACTIONS(4263), - [anon_sym_delegate] = ACTIONS(4263), - [anon_sym_record] = ACTIONS(4263), - [anon_sym_abstract] = ACTIONS(4263), - [anon_sym_async] = ACTIONS(4263), - [anon_sym_const] = ACTIONS(4263), - [anon_sym_file] = ACTIONS(4263), - [anon_sym_fixed] = ACTIONS(4263), - [anon_sym_internal] = ACTIONS(4263), - [anon_sym_new] = ACTIONS(4263), - [anon_sym_override] = ACTIONS(4263), - [anon_sym_partial] = ACTIONS(4263), - [anon_sym_private] = ACTIONS(4263), - [anon_sym_protected] = ACTIONS(4263), - [anon_sym_public] = ACTIONS(4263), - [anon_sym_readonly] = ACTIONS(4263), - [anon_sym_required] = ACTIONS(4263), - [anon_sym_sealed] = ACTIONS(4263), - [anon_sym_virtual] = ACTIONS(4263), - [anon_sym_volatile] = ACTIONS(4263), - [anon_sym_where] = ACTIONS(4263), - [anon_sym_notnull] = ACTIONS(4263), - [anon_sym_unmanaged] = ACTIONS(4263), - [anon_sym_TILDE] = ACTIONS(4267), - [anon_sym_implicit] = ACTIONS(4263), - [anon_sym_explicit] = ACTIONS(4263), - [anon_sym_scoped] = ACTIONS(4263), - [anon_sym_var] = ACTIONS(4263), - [sym_predefined_type] = ACTIONS(4263), - [anon_sym_yield] = ACTIONS(4263), - [anon_sym_when] = ACTIONS(4263), - [anon_sym_from] = ACTIONS(4263), - [anon_sym_into] = ACTIONS(4263), - [anon_sym_join] = ACTIONS(4263), - [anon_sym_on] = ACTIONS(4263), - [anon_sym_equals] = ACTIONS(4263), - [anon_sym_let] = ACTIONS(4263), - [anon_sym_orderby] = ACTIONS(4263), - [anon_sym_ascending] = ACTIONS(4263), - [anon_sym_descending] = ACTIONS(4263), - [anon_sym_group] = ACTIONS(4263), - [anon_sym_by] = ACTIONS(4263), - [anon_sym_select] = ACTIONS(4263), - [aux_sym_preproc_if_token1] = ACTIONS(4267), - [aux_sym_preproc_if_token3] = ACTIONS(4267), - [aux_sym_preproc_else_token1] = ACTIONS(4267), - [aux_sym_preproc_elif_token1] = ACTIONS(4267), + [sym__identifier_token] = ACTIONS(3961), + [anon_sym_alias] = ACTIONS(3961), + [anon_sym_global] = ACTIONS(3961), + [anon_sym_LBRACK] = ACTIONS(4033), + [anon_sym_COLON] = ACTIONS(3963), + [anon_sym_COMMA] = ACTIONS(3963), + [anon_sym_LPAREN] = ACTIONS(3963), + [anon_sym_RPAREN] = ACTIONS(3963), + [anon_sym_LBRACE] = ACTIONS(3963), + [anon_sym_RBRACE] = ACTIONS(3963), + [anon_sym_file] = ACTIONS(3961), + [anon_sym_LT] = ACTIONS(3961), + [anon_sym_GT] = ACTIONS(3961), + [anon_sym_where] = ACTIONS(3961), + [anon_sym_QMARK] = ACTIONS(4036), + [anon_sym_notnull] = ACTIONS(3961), + [anon_sym_unmanaged] = ACTIONS(3961), + [anon_sym_BANG] = ACTIONS(3961), + [anon_sym_PLUS_PLUS] = ACTIONS(3963), + [anon_sym_DASH_DASH] = ACTIONS(3963), + [anon_sym_PLUS] = ACTIONS(3961), + [anon_sym_DASH] = ACTIONS(3961), + [anon_sym_STAR] = ACTIONS(4039), + [anon_sym_SLASH] = ACTIONS(3961), + [anon_sym_PERCENT] = ACTIONS(3963), + [anon_sym_CARET] = ACTIONS(3963), + [anon_sym_PIPE] = ACTIONS(3961), + [anon_sym_AMP] = ACTIONS(3961), + [anon_sym_LT_LT] = ACTIONS(3963), + [anon_sym_GT_GT] = ACTIONS(3961), + [anon_sym_GT_GT_GT] = ACTIONS(3963), + [anon_sym_EQ_EQ] = ACTIONS(3963), + [anon_sym_BANG_EQ] = ACTIONS(3963), + [anon_sym_GT_EQ] = ACTIONS(3963), + [anon_sym_LT_EQ] = ACTIONS(3963), + [anon_sym_DOT] = ACTIONS(4251), + [anon_sym_scoped] = ACTIONS(3961), + [anon_sym_var] = ACTIONS(3961), + [anon_sym_yield] = ACTIONS(3961), + [anon_sym_switch] = ACTIONS(3961), + [anon_sym_when] = ACTIONS(3961), + [sym_discard] = ACTIONS(3961), + [anon_sym_DOT_DOT] = ACTIONS(3963), + [anon_sym_and] = ACTIONS(3961), + [anon_sym_or] = ACTIONS(3961), + [anon_sym_AMP_AMP] = ACTIONS(3963), + [anon_sym_PIPE_PIPE] = ACTIONS(3963), + [anon_sym_QMARK_QMARK] = ACTIONS(3963), + [anon_sym_from] = ACTIONS(3961), + [anon_sym_into] = ACTIONS(3961), + [anon_sym_join] = ACTIONS(3961), + [anon_sym_on] = ACTIONS(3961), + [anon_sym_equals] = ACTIONS(3961), + [anon_sym_let] = ACTIONS(3961), + [anon_sym_orderby] = ACTIONS(3961), + [anon_sym_ascending] = ACTIONS(3961), + [anon_sym_descending] = ACTIONS(3961), + [anon_sym_group] = ACTIONS(3961), + [anon_sym_by] = ACTIONS(3961), + [anon_sym_select] = ACTIONS(3961), + [anon_sym_as] = ACTIONS(3961), + [anon_sym_is] = ACTIONS(3961), + [anon_sym_DASH_GT] = ACTIONS(4044), + [anon_sym_with] = ACTIONS(3961), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -438222,80 +437844,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2612), [sym_preproc_define] = STATE(2612), [sym_preproc_undef] = STATE(2612), - [anon_sym_SEMI] = ACTIONS(4191), - [anon_sym_EQ] = ACTIONS(4193), - [anon_sym_LBRACK] = ACTIONS(4191), - [anon_sym_COLON] = ACTIONS(4191), - [anon_sym_COMMA] = ACTIONS(4191), - [anon_sym_RBRACK] = ACTIONS(4191), - [anon_sym_LPAREN] = ACTIONS(4191), - [anon_sym_RPAREN] = ACTIONS(4191), - [anon_sym_RBRACE] = ACTIONS(4191), - [anon_sym_LT] = ACTIONS(4193), - [anon_sym_GT] = ACTIONS(4193), - [anon_sym_in] = ACTIONS(4193), - [anon_sym_QMARK] = ACTIONS(4193), - [anon_sym_BANG] = ACTIONS(4193), - [anon_sym_PLUS_PLUS] = ACTIONS(4191), - [anon_sym_DASH_DASH] = ACTIONS(4191), - [anon_sym_PLUS] = ACTIONS(4193), - [anon_sym_DASH] = ACTIONS(4193), - [anon_sym_STAR] = ACTIONS(4193), - [anon_sym_SLASH] = ACTIONS(4193), - [anon_sym_PERCENT] = ACTIONS(4193), - [anon_sym_CARET] = ACTIONS(4193), - [anon_sym_PIPE] = ACTIONS(4193), - [anon_sym_AMP] = ACTIONS(4193), - [anon_sym_LT_LT] = ACTIONS(4193), - [anon_sym_GT_GT] = ACTIONS(4193), - [anon_sym_GT_GT_GT] = ACTIONS(4193), - [anon_sym_EQ_EQ] = ACTIONS(4191), - [anon_sym_BANG_EQ] = ACTIONS(4191), - [anon_sym_GT_EQ] = ACTIONS(4191), - [anon_sym_LT_EQ] = ACTIONS(4191), - [anon_sym_DOT] = ACTIONS(4193), - [anon_sym_EQ_GT] = ACTIONS(4191), - [anon_sym_switch] = ACTIONS(4191), - [anon_sym_when] = ACTIONS(4191), - [anon_sym_DOT_DOT] = ACTIONS(4191), - [anon_sym_and] = ACTIONS(4191), - [anon_sym_or] = ACTIONS(4191), - [anon_sym_PLUS_EQ] = ACTIONS(4191), - [anon_sym_DASH_EQ] = ACTIONS(4191), - [anon_sym_STAR_EQ] = ACTIONS(4191), - [anon_sym_SLASH_EQ] = ACTIONS(4191), - [anon_sym_PERCENT_EQ] = ACTIONS(4191), - [anon_sym_AMP_EQ] = ACTIONS(4191), - [anon_sym_CARET_EQ] = ACTIONS(4191), - [anon_sym_PIPE_EQ] = ACTIONS(4191), - [anon_sym_LT_LT_EQ] = ACTIONS(4191), - [anon_sym_GT_GT_EQ] = ACTIONS(4191), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(4191), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(4191), - [anon_sym_AMP_AMP] = ACTIONS(4191), - [anon_sym_PIPE_PIPE] = ACTIONS(4191), - [anon_sym_QMARK_QMARK] = ACTIONS(4193), - [anon_sym_into] = ACTIONS(4191), - [anon_sym_on] = ACTIONS(4191), - [anon_sym_equals] = ACTIONS(4191), - [anon_sym_by] = ACTIONS(4191), - [anon_sym_as] = ACTIONS(4191), - [anon_sym_is] = ACTIONS(4191), - [anon_sym_DASH_GT] = ACTIONS(4191), - [anon_sym_with] = ACTIONS(4191), - [aux_sym_preproc_if_token3] = ACTIONS(4191), - [aux_sym_preproc_else_token1] = ACTIONS(4191), - [aux_sym_preproc_elif_token1] = ACTIONS(4191), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_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(4062), + [anon_sym_alias] = ACTIONS(4062), + [anon_sym_global] = ACTIONS(4062), + [anon_sym_LBRACK] = ACTIONS(4064), + [anon_sym_COLON] = ACTIONS(4064), + [anon_sym_COMMA] = ACTIONS(4064), + [anon_sym_LPAREN] = ACTIONS(4064), + [anon_sym_LBRACE] = ACTIONS(4064), + [anon_sym_file] = ACTIONS(4062), + [anon_sym_LT] = ACTIONS(4062), + [anon_sym_GT] = ACTIONS(4062), + [anon_sym_where] = ACTIONS(4062), + [anon_sym_QMARK] = ACTIONS(4062), + [anon_sym_notnull] = ACTIONS(4062), + [anon_sym_unmanaged] = ACTIONS(4062), + [anon_sym_BANG] = ACTIONS(4062), + [anon_sym_PLUS_PLUS] = ACTIONS(4064), + [anon_sym_DASH_DASH] = ACTIONS(4064), + [anon_sym_PLUS] = ACTIONS(4062), + [anon_sym_DASH] = ACTIONS(4062), + [anon_sym_STAR] = ACTIONS(4064), + [anon_sym_SLASH] = ACTIONS(4062), + [anon_sym_PERCENT] = ACTIONS(4064), + [anon_sym_CARET] = ACTIONS(4064), + [anon_sym_PIPE] = ACTIONS(4062), + [anon_sym_AMP] = ACTIONS(4062), + [anon_sym_LT_LT] = ACTIONS(4064), + [anon_sym_GT_GT] = ACTIONS(4062), + [anon_sym_GT_GT_GT] = ACTIONS(4064), + [anon_sym_EQ_EQ] = ACTIONS(4064), + [anon_sym_BANG_EQ] = ACTIONS(4064), + [anon_sym_GT_EQ] = ACTIONS(4064), + [anon_sym_LT_EQ] = ACTIONS(4064), + [anon_sym_DOT] = ACTIONS(4062), + [anon_sym_scoped] = ACTIONS(4062), + [anon_sym_EQ_GT] = ACTIONS(4066), + [anon_sym_var] = ACTIONS(4062), + [anon_sym_yield] = ACTIONS(4062), + [anon_sym_switch] = ACTIONS(4062), + [anon_sym_when] = ACTIONS(4062), + [sym_discard] = ACTIONS(4062), + [anon_sym_DOT_DOT] = ACTIONS(4064), + [anon_sym_and] = ACTIONS(4062), + [anon_sym_or] = ACTIONS(4062), + [anon_sym_AMP_AMP] = ACTIONS(4064), + [anon_sym_PIPE_PIPE] = ACTIONS(4064), + [anon_sym_QMARK_QMARK] = ACTIONS(4064), + [anon_sym_from] = ACTIONS(4062), + [anon_sym_into] = ACTIONS(4062), + [anon_sym_join] = ACTIONS(4062), + [anon_sym_on] = ACTIONS(4062), + [anon_sym_equals] = ACTIONS(4062), + [anon_sym_let] = ACTIONS(4062), + [anon_sym_orderby] = ACTIONS(4062), + [anon_sym_ascending] = ACTIONS(4062), + [anon_sym_descending] = ACTIONS(4062), + [anon_sym_group] = ACTIONS(4062), + [anon_sym_by] = ACTIONS(4062), + [anon_sym_select] = ACTIONS(4062), + [anon_sym_as] = ACTIONS(4062), + [anon_sym_is] = ACTIONS(4062), + [anon_sym_DASH_GT] = ACTIONS(4064), + [anon_sym_with] = ACTIONS(4062), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_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(4064), }, [2613] = { [sym_preproc_region] = STATE(2613), @@ -438307,80 +437929,80 @@ 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), - [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), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_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(4062), + [anon_sym_alias] = ACTIONS(4062), + [anon_sym_global] = ACTIONS(4062), + [anon_sym_LBRACK] = ACTIONS(4064), + [anon_sym_COLON] = ACTIONS(4064), + [anon_sym_COMMA] = ACTIONS(4064), + [anon_sym_LPAREN] = ACTIONS(4064), + [anon_sym_LBRACE] = ACTIONS(4064), + [anon_sym_file] = ACTIONS(4062), + [anon_sym_LT] = ACTIONS(4062), + [anon_sym_GT] = ACTIONS(4062), + [anon_sym_where] = ACTIONS(4062), + [anon_sym_QMARK] = ACTIONS(4062), + [anon_sym_notnull] = ACTIONS(4062), + [anon_sym_unmanaged] = ACTIONS(4062), + [anon_sym_BANG] = ACTIONS(4062), + [anon_sym_PLUS_PLUS] = ACTIONS(4064), + [anon_sym_DASH_DASH] = ACTIONS(4064), + [anon_sym_PLUS] = ACTIONS(4062), + [anon_sym_DASH] = ACTIONS(4062), + [anon_sym_STAR] = ACTIONS(4064), + [anon_sym_SLASH] = ACTIONS(4062), + [anon_sym_PERCENT] = ACTIONS(4064), + [anon_sym_CARET] = ACTIONS(4064), + [anon_sym_PIPE] = ACTIONS(4062), + [anon_sym_AMP] = ACTIONS(4062), + [anon_sym_LT_LT] = ACTIONS(4064), + [anon_sym_GT_GT] = ACTIONS(4062), + [anon_sym_GT_GT_GT] = ACTIONS(4064), + [anon_sym_EQ_EQ] = ACTIONS(4064), + [anon_sym_BANG_EQ] = ACTIONS(4064), + [anon_sym_GT_EQ] = ACTIONS(4064), + [anon_sym_LT_EQ] = ACTIONS(4064), + [anon_sym_DOT] = ACTIONS(4062), + [anon_sym_scoped] = ACTIONS(4062), + [anon_sym_EQ_GT] = ACTIONS(4066), + [anon_sym_var] = ACTIONS(4062), + [anon_sym_yield] = ACTIONS(4062), + [anon_sym_switch] = ACTIONS(4062), + [anon_sym_when] = ACTIONS(4062), + [sym_discard] = ACTIONS(4062), + [anon_sym_DOT_DOT] = ACTIONS(4064), + [anon_sym_and] = ACTIONS(4062), + [anon_sym_or] = ACTIONS(4062), + [anon_sym_AMP_AMP] = ACTIONS(4064), + [anon_sym_PIPE_PIPE] = ACTIONS(4064), + [anon_sym_QMARK_QMARK] = ACTIONS(4064), + [anon_sym_from] = ACTIONS(4062), + [anon_sym_into] = ACTIONS(4062), + [anon_sym_join] = ACTIONS(4062), + [anon_sym_on] = ACTIONS(4062), + [anon_sym_equals] = ACTIONS(4062), + [anon_sym_let] = ACTIONS(4062), + [anon_sym_orderby] = ACTIONS(4062), + [anon_sym_ascending] = ACTIONS(4062), + [anon_sym_descending] = ACTIONS(4062), + [anon_sym_group] = ACTIONS(4062), + [anon_sym_by] = ACTIONS(4062), + [anon_sym_select] = ACTIONS(4062), + [anon_sym_as] = ACTIONS(4062), + [anon_sym_is] = ACTIONS(4062), + [anon_sym_DASH_GT] = ACTIONS(4064), + [anon_sym_with] = ACTIONS(4062), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_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(4064), }, [2614] = { [sym_preproc_region] = STATE(2614), @@ -438392,70 +438014,70 @@ 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), - [anon_sym_SEMI] = ACTIONS(4187), - [anon_sym_EQ] = ACTIONS(4189), - [anon_sym_LBRACK] = ACTIONS(4187), - [anon_sym_COLON] = ACTIONS(4187), - [anon_sym_COMMA] = ACTIONS(4187), - [anon_sym_RBRACK] = ACTIONS(4187), - [anon_sym_LPAREN] = ACTIONS(4187), - [anon_sym_RPAREN] = ACTIONS(4187), - [anon_sym_RBRACE] = ACTIONS(4187), - [anon_sym_LT] = ACTIONS(4189), - [anon_sym_GT] = ACTIONS(4189), - [anon_sym_in] = ACTIONS(4189), - [anon_sym_QMARK] = ACTIONS(4189), - [anon_sym_BANG] = ACTIONS(4189), - [anon_sym_PLUS_PLUS] = ACTIONS(4187), - [anon_sym_DASH_DASH] = ACTIONS(4187), - [anon_sym_PLUS] = ACTIONS(4189), - [anon_sym_DASH] = ACTIONS(4189), - [anon_sym_STAR] = ACTIONS(4189), - [anon_sym_SLASH] = ACTIONS(4189), - [anon_sym_PERCENT] = ACTIONS(4189), - [anon_sym_CARET] = ACTIONS(4189), - [anon_sym_PIPE] = ACTIONS(4189), - [anon_sym_AMP] = ACTIONS(4189), - [anon_sym_LT_LT] = ACTIONS(4189), - [anon_sym_GT_GT] = ACTIONS(4189), - [anon_sym_GT_GT_GT] = ACTIONS(4189), - [anon_sym_EQ_EQ] = ACTIONS(4187), - [anon_sym_BANG_EQ] = ACTIONS(4187), - [anon_sym_GT_EQ] = ACTIONS(4187), - [anon_sym_LT_EQ] = ACTIONS(4187), - [anon_sym_DOT] = ACTIONS(4189), - [anon_sym_EQ_GT] = ACTIONS(4187), - [anon_sym_switch] = ACTIONS(4187), - [anon_sym_when] = ACTIONS(4187), - [anon_sym_DOT_DOT] = ACTIONS(4187), - [anon_sym_and] = ACTIONS(4187), - [anon_sym_or] = ACTIONS(4187), - [anon_sym_PLUS_EQ] = ACTIONS(4187), - [anon_sym_DASH_EQ] = ACTIONS(4187), - [anon_sym_STAR_EQ] = ACTIONS(4187), - [anon_sym_SLASH_EQ] = ACTIONS(4187), - [anon_sym_PERCENT_EQ] = ACTIONS(4187), - [anon_sym_AMP_EQ] = ACTIONS(4187), - [anon_sym_CARET_EQ] = ACTIONS(4187), - [anon_sym_PIPE_EQ] = ACTIONS(4187), - [anon_sym_LT_LT_EQ] = ACTIONS(4187), - [anon_sym_GT_GT_EQ] = ACTIONS(4187), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(4187), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(4187), - [anon_sym_AMP_AMP] = ACTIONS(4187), - [anon_sym_PIPE_PIPE] = ACTIONS(4187), - [anon_sym_QMARK_QMARK] = ACTIONS(4189), - [anon_sym_into] = ACTIONS(4187), - [anon_sym_on] = ACTIONS(4187), - [anon_sym_equals] = ACTIONS(4187), - [anon_sym_by] = ACTIONS(4187), - [anon_sym_as] = ACTIONS(4187), - [anon_sym_is] = ACTIONS(4187), - [anon_sym_DASH_GT] = ACTIONS(4187), - [anon_sym_with] = ACTIONS(4187), - [aux_sym_preproc_if_token3] = ACTIONS(4187), - [aux_sym_preproc_else_token1] = ACTIONS(4187), - [aux_sym_preproc_elif_token1] = ACTIONS(4187), + [sym__identifier_token] = ACTIONS(3961), + [anon_sym_alias] = ACTIONS(3961), + [anon_sym_global] = ACTIONS(3961), + [anon_sym_LBRACK] = ACTIONS(4033), + [anon_sym_COLON] = ACTIONS(3963), + [anon_sym_COMMA] = ACTIONS(3963), + [anon_sym_LPAREN] = ACTIONS(3963), + [anon_sym_RPAREN] = ACTIONS(3963), + [anon_sym_LBRACE] = ACTIONS(3963), + [anon_sym_RBRACE] = ACTIONS(3963), + [anon_sym_file] = ACTIONS(3961), + [anon_sym_LT] = ACTIONS(3961), + [anon_sym_GT] = ACTIONS(3961), + [anon_sym_where] = ACTIONS(3961), + [anon_sym_QMARK] = ACTIONS(4036), + [anon_sym_notnull] = ACTIONS(3961), + [anon_sym_unmanaged] = ACTIONS(3961), + [anon_sym_BANG] = ACTIONS(3961), + [anon_sym_PLUS_PLUS] = ACTIONS(3963), + [anon_sym_DASH_DASH] = ACTIONS(3963), + [anon_sym_PLUS] = ACTIONS(3961), + [anon_sym_DASH] = ACTIONS(3961), + [anon_sym_STAR] = ACTIONS(4039), + [anon_sym_SLASH] = ACTIONS(3961), + [anon_sym_PERCENT] = ACTIONS(3963), + [anon_sym_CARET] = ACTIONS(3963), + [anon_sym_PIPE] = ACTIONS(3961), + [anon_sym_AMP] = ACTIONS(3961), + [anon_sym_LT_LT] = ACTIONS(3963), + [anon_sym_GT_GT] = ACTIONS(3961), + [anon_sym_GT_GT_GT] = ACTIONS(3963), + [anon_sym_EQ_EQ] = ACTIONS(3963), + [anon_sym_BANG_EQ] = ACTIONS(3963), + [anon_sym_GT_EQ] = ACTIONS(3963), + [anon_sym_LT_EQ] = ACTIONS(3963), + [anon_sym_DOT] = ACTIONS(4253), + [anon_sym_scoped] = ACTIONS(3961), + [anon_sym_var] = ACTIONS(3961), + [anon_sym_yield] = ACTIONS(3961), + [anon_sym_switch] = ACTIONS(3961), + [anon_sym_when] = ACTIONS(3961), + [sym_discard] = ACTIONS(3961), + [anon_sym_DOT_DOT] = ACTIONS(3963), + [anon_sym_and] = ACTIONS(3961), + [anon_sym_or] = ACTIONS(3961), + [anon_sym_AMP_AMP] = ACTIONS(3963), + [anon_sym_PIPE_PIPE] = ACTIONS(3963), + [anon_sym_QMARK_QMARK] = ACTIONS(3963), + [anon_sym_from] = ACTIONS(3961), + [anon_sym_into] = ACTIONS(3961), + [anon_sym_join] = ACTIONS(3961), + [anon_sym_on] = ACTIONS(3961), + [anon_sym_equals] = ACTIONS(3961), + [anon_sym_let] = ACTIONS(3961), + [anon_sym_orderby] = ACTIONS(3961), + [anon_sym_ascending] = ACTIONS(3961), + [anon_sym_descending] = ACTIONS(3961), + [anon_sym_group] = ACTIONS(3961), + [anon_sym_by] = ACTIONS(3961), + [anon_sym_select] = ACTIONS(3961), + [anon_sym_as] = ACTIONS(3961), + [anon_sym_is] = ACTIONS(3961), + [anon_sym_DASH_GT] = ACTIONS(4044), + [anon_sym_with] = ACTIONS(3961), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -438477,70 +438099,70 @@ 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), - [anon_sym_SEMI] = ACTIONS(4144), - [anon_sym_EQ] = ACTIONS(4146), - [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_RBRACE] = ACTIONS(4144), - [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(4144), - [anon_sym_DASH_DASH] = ACTIONS(4144), - [anon_sym_PLUS] = ACTIONS(4146), - [anon_sym_DASH] = ACTIONS(4146), - [anon_sym_STAR] = ACTIONS(4146), - [anon_sym_SLASH] = ACTIONS(4146), - [anon_sym_PERCENT] = ACTIONS(4146), - [anon_sym_CARET] = ACTIONS(4146), - [anon_sym_PIPE] = ACTIONS(4146), - [anon_sym_AMP] = ACTIONS(4146), - [anon_sym_LT_LT] = ACTIONS(4146), - [anon_sym_GT_GT] = ACTIONS(4146), - [anon_sym_GT_GT_GT] = ACTIONS(4146), - [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(4146), - [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_PLUS_EQ] = ACTIONS(4144), - [anon_sym_DASH_EQ] = ACTIONS(4144), - [anon_sym_STAR_EQ] = ACTIONS(4144), - [anon_sym_SLASH_EQ] = ACTIONS(4144), - [anon_sym_PERCENT_EQ] = ACTIONS(4144), - [anon_sym_AMP_EQ] = ACTIONS(4144), - [anon_sym_CARET_EQ] = ACTIONS(4144), - [anon_sym_PIPE_EQ] = ACTIONS(4144), - [anon_sym_LT_LT_EQ] = ACTIONS(4144), - [anon_sym_GT_GT_EQ] = ACTIONS(4144), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(4144), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(4144), - [anon_sym_AMP_AMP] = ACTIONS(4144), - [anon_sym_PIPE_PIPE] = ACTIONS(4144), - [anon_sym_QMARK_QMARK] = ACTIONS(4146), - [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), + [sym__identifier_token] = ACTIONS(3961), + [anon_sym_alias] = ACTIONS(3961), + [anon_sym_global] = ACTIONS(3961), + [anon_sym_LBRACK] = ACTIONS(4033), + [anon_sym_COLON] = ACTIONS(3963), + [anon_sym_COMMA] = ACTIONS(3963), + [anon_sym_LPAREN] = ACTIONS(3963), + [anon_sym_RPAREN] = ACTIONS(3963), + [anon_sym_LBRACE] = ACTIONS(3963), + [anon_sym_RBRACE] = ACTIONS(3963), + [anon_sym_file] = ACTIONS(3961), + [anon_sym_LT] = ACTIONS(3961), + [anon_sym_GT] = ACTIONS(3961), + [anon_sym_where] = ACTIONS(3961), + [anon_sym_QMARK] = ACTIONS(4036), + [anon_sym_notnull] = ACTIONS(3961), + [anon_sym_unmanaged] = ACTIONS(3961), + [anon_sym_BANG] = ACTIONS(3961), + [anon_sym_PLUS_PLUS] = ACTIONS(3963), + [anon_sym_DASH_DASH] = ACTIONS(3963), + [anon_sym_PLUS] = ACTIONS(3961), + [anon_sym_DASH] = ACTIONS(3961), + [anon_sym_STAR] = ACTIONS(4039), + [anon_sym_SLASH] = ACTIONS(3961), + [anon_sym_PERCENT] = ACTIONS(3963), + [anon_sym_CARET] = ACTIONS(3963), + [anon_sym_PIPE] = ACTIONS(3961), + [anon_sym_AMP] = ACTIONS(3961), + [anon_sym_LT_LT] = ACTIONS(3963), + [anon_sym_GT_GT] = ACTIONS(3961), + [anon_sym_GT_GT_GT] = ACTIONS(3963), + [anon_sym_EQ_EQ] = ACTIONS(3963), + [anon_sym_BANG_EQ] = ACTIONS(3963), + [anon_sym_GT_EQ] = ACTIONS(3963), + [anon_sym_LT_EQ] = ACTIONS(3963), + [anon_sym_DOT] = ACTIONS(4255), + [anon_sym_scoped] = ACTIONS(3961), + [anon_sym_var] = ACTIONS(3961), + [anon_sym_yield] = ACTIONS(3961), + [anon_sym_switch] = ACTIONS(3961), + [anon_sym_when] = ACTIONS(3961), + [sym_discard] = ACTIONS(3961), + [anon_sym_DOT_DOT] = ACTIONS(3963), + [anon_sym_and] = ACTIONS(3961), + [anon_sym_or] = ACTIONS(3961), + [anon_sym_AMP_AMP] = ACTIONS(3963), + [anon_sym_PIPE_PIPE] = ACTIONS(3963), + [anon_sym_QMARK_QMARK] = ACTIONS(3963), + [anon_sym_from] = ACTIONS(3961), + [anon_sym_into] = ACTIONS(3961), + [anon_sym_join] = ACTIONS(3961), + [anon_sym_on] = ACTIONS(3961), + [anon_sym_equals] = ACTIONS(3961), + [anon_sym_let] = ACTIONS(3961), + [anon_sym_orderby] = ACTIONS(3961), + [anon_sym_ascending] = ACTIONS(3961), + [anon_sym_descending] = ACTIONS(3961), + [anon_sym_group] = ACTIONS(3961), + [anon_sym_by] = ACTIONS(3961), + [anon_sym_select] = ACTIONS(3961), + [anon_sym_as] = ACTIONS(3961), + [anon_sym_is] = ACTIONS(3961), + [anon_sym_DASH_GT] = ACTIONS(3963), + [anon_sym_with] = ACTIONS(3961), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -438562,70 +438184,70 @@ 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(4016), - [anon_sym_alias] = ACTIONS(4016), - [anon_sym_global] = ACTIONS(4016), - [anon_sym_LBRACK] = ACTIONS(4066), - [anon_sym_COLON] = ACTIONS(4018), - [anon_sym_COMMA] = ACTIONS(4018), - [anon_sym_LPAREN] = ACTIONS(4018), - [anon_sym_RPAREN] = ACTIONS(4018), - [anon_sym_LBRACE] = ACTIONS(4018), - [anon_sym_RBRACE] = ACTIONS(4018), - [anon_sym_file] = ACTIONS(4016), - [anon_sym_LT] = ACTIONS(4016), - [anon_sym_GT] = ACTIONS(4016), - [anon_sym_where] = ACTIONS(4016), - [anon_sym_QMARK] = ACTIONS(4069), - [anon_sym_notnull] = ACTIONS(4016), - [anon_sym_unmanaged] = ACTIONS(4016), - [anon_sym_BANG] = ACTIONS(4016), - [anon_sym_PLUS_PLUS] = ACTIONS(4018), - [anon_sym_DASH_DASH] = ACTIONS(4018), - [anon_sym_PLUS] = ACTIONS(4016), - [anon_sym_DASH] = ACTIONS(4016), - [anon_sym_STAR] = ACTIONS(4072), - [anon_sym_SLASH] = ACTIONS(4016), - [anon_sym_PERCENT] = ACTIONS(4018), - [anon_sym_CARET] = ACTIONS(4018), - [anon_sym_PIPE] = ACTIONS(4016), - [anon_sym_AMP] = ACTIONS(4016), - [anon_sym_LT_LT] = ACTIONS(4018), - [anon_sym_GT_GT] = ACTIONS(4016), - [anon_sym_GT_GT_GT] = ACTIONS(4018), - [anon_sym_EQ_EQ] = ACTIONS(4018), - [anon_sym_BANG_EQ] = ACTIONS(4018), - [anon_sym_GT_EQ] = ACTIONS(4018), - [anon_sym_LT_EQ] = ACTIONS(4018), - [anon_sym_DOT] = ACTIONS(4269), - [anon_sym_scoped] = ACTIONS(4016), - [anon_sym_var] = ACTIONS(4016), - [anon_sym_yield] = ACTIONS(4016), - [anon_sym_switch] = ACTIONS(4016), - [anon_sym_when] = ACTIONS(4016), - [sym_discard] = ACTIONS(4016), - [anon_sym_DOT_DOT] = ACTIONS(4018), - [anon_sym_and] = ACTIONS(4016), - [anon_sym_or] = ACTIONS(4016), - [anon_sym_AMP_AMP] = ACTIONS(4018), - [anon_sym_PIPE_PIPE] = ACTIONS(4018), - [anon_sym_QMARK_QMARK] = ACTIONS(4018), - [anon_sym_from] = ACTIONS(4016), - [anon_sym_into] = ACTIONS(4016), - [anon_sym_join] = ACTIONS(4016), - [anon_sym_on] = ACTIONS(4016), - [anon_sym_equals] = ACTIONS(4016), - [anon_sym_let] = ACTIONS(4016), - [anon_sym_orderby] = ACTIONS(4016), - [anon_sym_ascending] = ACTIONS(4016), - [anon_sym_descending] = ACTIONS(4016), - [anon_sym_group] = ACTIONS(4016), - [anon_sym_by] = ACTIONS(4016), - [anon_sym_select] = ACTIONS(4016), - [anon_sym_as] = ACTIONS(4016), - [anon_sym_is] = ACTIONS(4016), - [anon_sym_DASH_GT] = ACTIONS(4077), - [anon_sym_with] = ACTIONS(4016), + [sym__identifier_token] = ACTIONS(4257), + [anon_sym_extern] = ACTIONS(4257), + [anon_sym_alias] = ACTIONS(4257), + [anon_sym_global] = ACTIONS(4257), + [anon_sym_using] = ACTIONS(4257), + [anon_sym_unsafe] = ACTIONS(4257), + [anon_sym_EQ] = ACTIONS(4259), + [anon_sym_static] = ACTIONS(4257), + [anon_sym_LBRACK] = ACTIONS(4261), + [anon_sym_LPAREN] = ACTIONS(4261), + [anon_sym_event] = ACTIONS(4257), + [anon_sym_namespace] = ACTIONS(4257), + [anon_sym_class] = ACTIONS(4257), + [anon_sym_ref] = ACTIONS(4257), + [anon_sym_struct] = ACTIONS(4257), + [anon_sym_enum] = ACTIONS(4257), + [anon_sym_RBRACE] = ACTIONS(4261), + [anon_sym_interface] = ACTIONS(4257), + [anon_sym_delegate] = ACTIONS(4257), + [anon_sym_record] = ACTIONS(4257), + [anon_sym_abstract] = ACTIONS(4257), + [anon_sym_async] = ACTIONS(4257), + [anon_sym_const] = ACTIONS(4257), + [anon_sym_file] = ACTIONS(4257), + [anon_sym_fixed] = ACTIONS(4257), + [anon_sym_internal] = ACTIONS(4257), + [anon_sym_new] = ACTIONS(4257), + [anon_sym_override] = ACTIONS(4257), + [anon_sym_partial] = ACTIONS(4257), + [anon_sym_private] = ACTIONS(4257), + [anon_sym_protected] = ACTIONS(4257), + [anon_sym_public] = ACTIONS(4257), + [anon_sym_readonly] = ACTIONS(4257), + [anon_sym_required] = ACTIONS(4257), + [anon_sym_sealed] = ACTIONS(4257), + [anon_sym_virtual] = ACTIONS(4257), + [anon_sym_volatile] = ACTIONS(4257), + [anon_sym_where] = ACTIONS(4257), + [anon_sym_notnull] = ACTIONS(4257), + [anon_sym_unmanaged] = ACTIONS(4257), + [anon_sym_TILDE] = ACTIONS(4261), + [anon_sym_implicit] = ACTIONS(4257), + [anon_sym_explicit] = ACTIONS(4257), + [anon_sym_scoped] = ACTIONS(4257), + [anon_sym_var] = ACTIONS(4257), + [sym_predefined_type] = ACTIONS(4257), + [anon_sym_yield] = ACTIONS(4257), + [anon_sym_when] = ACTIONS(4257), + [anon_sym_from] = ACTIONS(4257), + [anon_sym_into] = ACTIONS(4257), + [anon_sym_join] = ACTIONS(4257), + [anon_sym_on] = ACTIONS(4257), + [anon_sym_equals] = ACTIONS(4257), + [anon_sym_let] = ACTIONS(4257), + [anon_sym_orderby] = ACTIONS(4257), + [anon_sym_ascending] = ACTIONS(4257), + [anon_sym_descending] = ACTIONS(4257), + [anon_sym_group] = ACTIONS(4257), + [anon_sym_by] = ACTIONS(4257), + [anon_sym_select] = ACTIONS(4257), + [aux_sym_preproc_if_token1] = ACTIONS(4261), + [aux_sym_preproc_if_token3] = ACTIONS(4261), + [aux_sym_preproc_else_token1] = ACTIONS(4261), + [aux_sym_preproc_elif_token1] = ACTIONS(4261), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -438638,6 +438260,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2617] = { + [sym__variable_designation] = STATE(3461), + [sym_parenthesized_variable_designation] = STATE(3352), + [sym_identifier] = STATE(3355), + [sym__reserved_identifier] = STATE(3205), [sym_preproc_region] = STATE(2617), [sym_preproc_endregion] = STATE(2617), [sym_preproc_line] = STATE(2617), @@ -438647,70 +438273,66 @@ 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), - [anon_sym_SEMI] = ACTIONS(4271), - [anon_sym_EQ] = ACTIONS(3704), - [anon_sym_LBRACK] = ACTIONS(4273), - [anon_sym_COLON] = ACTIONS(4271), - [anon_sym_COMMA] = ACTIONS(4271), - [anon_sym_RBRACK] = ACTIONS(4271), - [anon_sym_LPAREN] = ACTIONS(4273), - [anon_sym_RPAREN] = ACTIONS(4271), - [anon_sym_RBRACE] = ACTIONS(4271), - [anon_sym_LT] = ACTIONS(4276), - [anon_sym_GT] = ACTIONS(4276), - [anon_sym_in] = ACTIONS(4279), - [anon_sym_QMARK] = ACTIONS(4276), - [anon_sym_BANG] = ACTIONS(4276), - [anon_sym_PLUS_PLUS] = ACTIONS(4273), - [anon_sym_DASH_DASH] = ACTIONS(4273), - [anon_sym_PLUS] = ACTIONS(4276), - [anon_sym_DASH] = ACTIONS(4276), - [anon_sym_STAR] = ACTIONS(4276), - [anon_sym_SLASH] = ACTIONS(4276), - [anon_sym_PERCENT] = ACTIONS(4276), - [anon_sym_CARET] = ACTIONS(4276), - [anon_sym_PIPE] = ACTIONS(4276), - [anon_sym_AMP] = ACTIONS(4276), - [anon_sym_LT_LT] = ACTIONS(4276), - [anon_sym_GT_GT] = ACTIONS(4276), - [anon_sym_GT_GT_GT] = ACTIONS(4276), - [anon_sym_EQ_EQ] = ACTIONS(4273), - [anon_sym_BANG_EQ] = ACTIONS(4273), - [anon_sym_GT_EQ] = ACTIONS(4273), - [anon_sym_LT_EQ] = ACTIONS(4273), - [anon_sym_DOT] = ACTIONS(4276), - [anon_sym_EQ_GT] = ACTIONS(4271), - [anon_sym_switch] = ACTIONS(4273), - [anon_sym_when] = ACTIONS(4271), - [anon_sym_DOT_DOT] = ACTIONS(4273), - [anon_sym_and] = ACTIONS(4271), - [anon_sym_or] = ACTIONS(4271), - [anon_sym_PLUS_EQ] = ACTIONS(3719), - [anon_sym_DASH_EQ] = ACTIONS(3719), - [anon_sym_STAR_EQ] = ACTIONS(3719), - [anon_sym_SLASH_EQ] = ACTIONS(3719), - [anon_sym_PERCENT_EQ] = ACTIONS(3719), - [anon_sym_AMP_EQ] = ACTIONS(3719), - [anon_sym_CARET_EQ] = ACTIONS(3719), - [anon_sym_PIPE_EQ] = ACTIONS(3719), - [anon_sym_LT_LT_EQ] = ACTIONS(3719), - [anon_sym_GT_GT_EQ] = ACTIONS(3719), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3719), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3719), - [anon_sym_AMP_AMP] = ACTIONS(4273), - [anon_sym_PIPE_PIPE] = ACTIONS(4273), - [anon_sym_QMARK_QMARK] = ACTIONS(4276), - [anon_sym_into] = ACTIONS(4271), - [anon_sym_on] = ACTIONS(4271), - [anon_sym_equals] = ACTIONS(4271), - [anon_sym_by] = ACTIONS(4271), - [anon_sym_as] = ACTIONS(4273), - [anon_sym_is] = ACTIONS(4273), - [anon_sym_DASH_GT] = ACTIONS(4273), - [anon_sym_with] = ACTIONS(4273), - [aux_sym_preproc_if_token3] = ACTIONS(4271), - [aux_sym_preproc_else_token1] = ACTIONS(4271), - [aux_sym_preproc_elif_token1] = ACTIONS(4271), + [sym__identifier_token] = ACTIONS(3798), + [anon_sym_alias] = ACTIONS(3800), + [anon_sym_global] = ACTIONS(3800), + [anon_sym_LBRACK] = ACTIONS(3947), + [anon_sym_LPAREN] = ACTIONS(3947), + [anon_sym_file] = ACTIONS(3800), + [anon_sym_LT] = ACTIONS(3949), + [anon_sym_GT] = ACTIONS(3949), + [anon_sym_in] = ACTIONS(3949), + [anon_sym_where] = ACTIONS(3800), + [anon_sym_QMARK] = ACTIONS(3949), + [anon_sym_notnull] = ACTIONS(3800), + [anon_sym_unmanaged] = ACTIONS(3800), + [anon_sym_BANG] = ACTIONS(3949), + [anon_sym_PLUS_PLUS] = ACTIONS(3947), + [anon_sym_DASH_DASH] = ACTIONS(3947), + [anon_sym_PLUS] = ACTIONS(3949), + [anon_sym_DASH] = ACTIONS(3949), + [anon_sym_STAR] = ACTIONS(3947), + [anon_sym_SLASH] = ACTIONS(3949), + [anon_sym_PERCENT] = ACTIONS(3947), + [anon_sym_CARET] = ACTIONS(3947), + [anon_sym_PIPE] = ACTIONS(3949), + [anon_sym_AMP] = ACTIONS(3949), + [anon_sym_LT_LT] = ACTIONS(3947), + [anon_sym_GT_GT] = ACTIONS(3949), + [anon_sym_GT_GT_GT] = ACTIONS(3947), + [anon_sym_EQ_EQ] = ACTIONS(3947), + [anon_sym_BANG_EQ] = ACTIONS(3947), + [anon_sym_GT_EQ] = ACTIONS(3947), + [anon_sym_LT_EQ] = ACTIONS(3947), + [anon_sym_DOT] = ACTIONS(3949), + [anon_sym_scoped] = ACTIONS(3800), + [anon_sym_var] = ACTIONS(3800), + [anon_sym_yield] = ACTIONS(3800), + [anon_sym_switch] = ACTIONS(3949), + [anon_sym_when] = ACTIONS(3800), + [sym_discard] = ACTIONS(3877), + [anon_sym_DOT_DOT] = ACTIONS(3947), + [anon_sym_and] = ACTIONS(3949), + [anon_sym_or] = ACTIONS(3949), + [anon_sym_AMP_AMP] = ACTIONS(3947), + [anon_sym_PIPE_PIPE] = ACTIONS(3947), + [anon_sym_QMARK_QMARK] = ACTIONS(3947), + [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(3949), + [anon_sym_is] = ACTIONS(3949), + [anon_sym_DASH_GT] = ACTIONS(3947), + [anon_sym_with] = ACTIONS(3949), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -438723,6 +438345,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2618] = { + [sym_type_argument_list] = STATE(2699), [sym_preproc_region] = STATE(2618), [sym_preproc_endregion] = STATE(2618), [sym_preproc_line] = STATE(2618), @@ -438732,80 +438355,79 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2618), [sym_preproc_define] = STATE(2618), [sym_preproc_undef] = STATE(2618), - [anon_sym_SEMI] = ACTIONS(4179), - [anon_sym_EQ] = ACTIONS(4181), - [anon_sym_LBRACK] = ACTIONS(4179), - [anon_sym_COLON] = ACTIONS(4179), - [anon_sym_COMMA] = ACTIONS(4179), - [anon_sym_RBRACK] = ACTIONS(4179), - [anon_sym_LPAREN] = ACTIONS(4179), - [anon_sym_RPAREN] = ACTIONS(4179), - [anon_sym_RBRACE] = ACTIONS(4179), - [anon_sym_LT] = ACTIONS(4181), - [anon_sym_GT] = ACTIONS(4181), - [anon_sym_in] = ACTIONS(4181), - [anon_sym_QMARK] = ACTIONS(4181), - [anon_sym_BANG] = ACTIONS(4181), - [anon_sym_PLUS_PLUS] = ACTIONS(4179), - [anon_sym_DASH_DASH] = ACTIONS(4179), - [anon_sym_PLUS] = ACTIONS(4181), - [anon_sym_DASH] = ACTIONS(4181), - [anon_sym_STAR] = ACTIONS(4181), - [anon_sym_SLASH] = ACTIONS(4181), - [anon_sym_PERCENT] = ACTIONS(4181), - [anon_sym_CARET] = ACTIONS(4181), - [anon_sym_PIPE] = ACTIONS(4181), - [anon_sym_AMP] = ACTIONS(4181), - [anon_sym_LT_LT] = ACTIONS(4181), - [anon_sym_GT_GT] = ACTIONS(4181), - [anon_sym_GT_GT_GT] = ACTIONS(4181), - [anon_sym_EQ_EQ] = ACTIONS(4179), - [anon_sym_BANG_EQ] = ACTIONS(4179), - [anon_sym_GT_EQ] = ACTIONS(4179), - [anon_sym_LT_EQ] = ACTIONS(4179), - [anon_sym_DOT] = ACTIONS(4181), - [anon_sym_EQ_GT] = ACTIONS(4179), - [anon_sym_switch] = ACTIONS(4179), - [anon_sym_when] = ACTIONS(4179), - [anon_sym_DOT_DOT] = ACTIONS(4179), - [anon_sym_and] = ACTIONS(4179), - [anon_sym_or] = ACTIONS(4179), - [anon_sym_PLUS_EQ] = ACTIONS(4179), - [anon_sym_DASH_EQ] = ACTIONS(4179), - [anon_sym_STAR_EQ] = ACTIONS(4179), - [anon_sym_SLASH_EQ] = ACTIONS(4179), - [anon_sym_PERCENT_EQ] = ACTIONS(4179), - [anon_sym_AMP_EQ] = ACTIONS(4179), - [anon_sym_CARET_EQ] = ACTIONS(4179), - [anon_sym_PIPE_EQ] = ACTIONS(4179), - [anon_sym_LT_LT_EQ] = ACTIONS(4179), - [anon_sym_GT_GT_EQ] = ACTIONS(4179), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(4179), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(4179), - [anon_sym_AMP_AMP] = ACTIONS(4179), - [anon_sym_PIPE_PIPE] = ACTIONS(4179), - [anon_sym_QMARK_QMARK] = ACTIONS(4181), - [anon_sym_into] = ACTIONS(4179), - [anon_sym_on] = ACTIONS(4179), - [anon_sym_equals] = ACTIONS(4179), - [anon_sym_by] = ACTIONS(4179), - [anon_sym_as] = ACTIONS(4179), - [anon_sym_is] = ACTIONS(4179), - [anon_sym_DASH_GT] = ACTIONS(4179), - [anon_sym_with] = ACTIONS(4179), - [aux_sym_preproc_if_token3] = ACTIONS(4179), - [aux_sym_preproc_else_token1] = ACTIONS(4179), - [aux_sym_preproc_elif_token1] = ACTIONS(4179), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_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(3638), + [anon_sym_alias] = ACTIONS(3638), + [anon_sym_global] = ACTIONS(3638), + [anon_sym_LBRACK] = ACTIONS(3640), + [anon_sym_COLON] = ACTIONS(3640), + [anon_sym_COMMA] = ACTIONS(3640), + [anon_sym_LPAREN] = ACTIONS(3640), + [anon_sym_LBRACE] = ACTIONS(3640), + [anon_sym_file] = ACTIONS(3638), + [anon_sym_LT] = ACTIONS(4230), + [anon_sym_GT] = ACTIONS(3638), + [anon_sym_where] = ACTIONS(3638), + [anon_sym_QMARK] = ACTIONS(3638), + [anon_sym_notnull] = ACTIONS(3638), + [anon_sym_unmanaged] = ACTIONS(3638), + [anon_sym_BANG] = ACTIONS(3638), + [anon_sym_PLUS_PLUS] = ACTIONS(3640), + [anon_sym_DASH_DASH] = ACTIONS(3640), + [anon_sym_PLUS] = ACTIONS(3638), + [anon_sym_DASH] = ACTIONS(3638), + [anon_sym_STAR] = ACTIONS(3640), + [anon_sym_SLASH] = ACTIONS(3638), + [anon_sym_PERCENT] = ACTIONS(3640), + [anon_sym_CARET] = ACTIONS(3640), + [anon_sym_PIPE] = ACTIONS(3638), + [anon_sym_AMP] = ACTIONS(3638), + [anon_sym_LT_LT] = ACTIONS(3640), + [anon_sym_GT_GT] = ACTIONS(3638), + [anon_sym_GT_GT_GT] = ACTIONS(3640), + [anon_sym_EQ_EQ] = ACTIONS(3640), + [anon_sym_BANG_EQ] = ACTIONS(3640), + [anon_sym_GT_EQ] = ACTIONS(3640), + [anon_sym_LT_EQ] = ACTIONS(3640), + [anon_sym_DOT] = ACTIONS(3638), + [anon_sym_scoped] = ACTIONS(3638), + [anon_sym_var] = ACTIONS(3638), + [anon_sym_yield] = ACTIONS(3638), + [anon_sym_switch] = ACTIONS(3638), + [anon_sym_when] = ACTIONS(3638), + [sym_discard] = ACTIONS(3638), + [anon_sym_DOT_DOT] = ACTIONS(3640), + [anon_sym_and] = ACTIONS(3638), + [anon_sym_or] = ACTIONS(3638), + [anon_sym_AMP_AMP] = ACTIONS(3640), + [anon_sym_PIPE_PIPE] = ACTIONS(3640), + [anon_sym_QMARK_QMARK] = ACTIONS(3640), + [anon_sym_from] = ACTIONS(3638), + [anon_sym_into] = ACTIONS(3638), + [anon_sym_join] = ACTIONS(3638), + [anon_sym_on] = ACTIONS(3638), + [anon_sym_equals] = ACTIONS(3638), + [anon_sym_let] = ACTIONS(3638), + [anon_sym_orderby] = ACTIONS(3638), + [anon_sym_ascending] = ACTIONS(3638), + [anon_sym_descending] = ACTIONS(3638), + [anon_sym_group] = ACTIONS(3638), + [anon_sym_by] = ACTIONS(3638), + [anon_sym_select] = ACTIONS(3638), + [anon_sym_as] = ACTIONS(3638), + [anon_sym_is] = ACTIONS(3638), + [anon_sym_DASH_GT] = ACTIONS(3640), + [anon_sym_with] = ACTIONS(3638), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_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(3640), }, [2619] = { [sym_preproc_region] = STATE(2619), @@ -438817,70 +438439,69 @@ 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), - [anon_sym_SEMI] = ACTIONS(4199), - [anon_sym_EQ] = ACTIONS(4201), - [anon_sym_LBRACK] = ACTIONS(4199), - [anon_sym_COLON] = ACTIONS(4199), - [anon_sym_COMMA] = ACTIONS(4199), - [anon_sym_RBRACK] = ACTIONS(4199), - [anon_sym_LPAREN] = ACTIONS(4199), - [anon_sym_RPAREN] = ACTIONS(4199), - [anon_sym_RBRACE] = ACTIONS(4199), - [anon_sym_LT] = ACTIONS(4201), - [anon_sym_GT] = ACTIONS(4201), - [anon_sym_in] = ACTIONS(4201), - [anon_sym_QMARK] = ACTIONS(4201), - [anon_sym_BANG] = ACTIONS(4201), - [anon_sym_PLUS_PLUS] = ACTIONS(4199), - [anon_sym_DASH_DASH] = ACTIONS(4199), - [anon_sym_PLUS] = ACTIONS(4201), - [anon_sym_DASH] = ACTIONS(4201), - [anon_sym_STAR] = ACTIONS(4201), - [anon_sym_SLASH] = ACTIONS(4201), - [anon_sym_PERCENT] = ACTIONS(4201), - [anon_sym_CARET] = ACTIONS(4201), - [anon_sym_PIPE] = ACTIONS(4201), - [anon_sym_AMP] = ACTIONS(4201), - [anon_sym_LT_LT] = ACTIONS(4201), - [anon_sym_GT_GT] = ACTIONS(4201), - [anon_sym_GT_GT_GT] = ACTIONS(4201), - [anon_sym_EQ_EQ] = ACTIONS(4199), - [anon_sym_BANG_EQ] = ACTIONS(4199), - [anon_sym_GT_EQ] = ACTIONS(4199), - [anon_sym_LT_EQ] = ACTIONS(4199), - [anon_sym_DOT] = ACTIONS(4201), - [anon_sym_EQ_GT] = ACTIONS(4199), - [anon_sym_switch] = ACTIONS(4199), - [anon_sym_when] = ACTIONS(4199), - [anon_sym_DOT_DOT] = ACTIONS(4199), - [anon_sym_and] = ACTIONS(4199), - [anon_sym_or] = ACTIONS(4199), - [anon_sym_PLUS_EQ] = ACTIONS(4199), - [anon_sym_DASH_EQ] = ACTIONS(4199), - [anon_sym_STAR_EQ] = ACTIONS(4199), - [anon_sym_SLASH_EQ] = ACTIONS(4199), - [anon_sym_PERCENT_EQ] = ACTIONS(4199), - [anon_sym_AMP_EQ] = ACTIONS(4199), - [anon_sym_CARET_EQ] = ACTIONS(4199), - [anon_sym_PIPE_EQ] = ACTIONS(4199), - [anon_sym_LT_LT_EQ] = ACTIONS(4199), - [anon_sym_GT_GT_EQ] = ACTIONS(4199), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(4199), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(4199), - [anon_sym_AMP_AMP] = ACTIONS(4199), - [anon_sym_PIPE_PIPE] = ACTIONS(4199), - [anon_sym_QMARK_QMARK] = ACTIONS(4201), - [anon_sym_into] = ACTIONS(4199), - [anon_sym_on] = ACTIONS(4199), - [anon_sym_equals] = ACTIONS(4199), - [anon_sym_by] = ACTIONS(4199), - [anon_sym_as] = ACTIONS(4199), - [anon_sym_is] = ACTIONS(4199), - [anon_sym_DASH_GT] = ACTIONS(4199), - [anon_sym_with] = ACTIONS(4199), - [aux_sym_preproc_if_token3] = ACTIONS(4199), - [aux_sym_preproc_else_token1] = ACTIONS(4199), - [aux_sym_preproc_elif_token1] = ACTIONS(4199), + [sym__identifier_token] = ACTIONS(3431), + [anon_sym_alias] = ACTIONS(3431), + [anon_sym_global] = ACTIONS(3431), + [anon_sym_LBRACK] = ACTIONS(3429), + [anon_sym_COLON] = ACTIONS(3431), + [anon_sym_COMMA] = ACTIONS(3429), + [anon_sym_LPAREN] = ACTIONS(3429), + [anon_sym_LBRACE] = ACTIONS(3429), + [anon_sym_file] = ACTIONS(3431), + [anon_sym_LT] = ACTIONS(3431), + [anon_sym_GT] = ACTIONS(3431), + [anon_sym_where] = ACTIONS(3431), + [anon_sym_QMARK] = ACTIONS(3431), + [anon_sym_notnull] = ACTIONS(3431), + [anon_sym_unmanaged] = ACTIONS(3431), + [anon_sym_BANG] = ACTIONS(3431), + [anon_sym_PLUS_PLUS] = ACTIONS(3429), + [anon_sym_DASH_DASH] = ACTIONS(3429), + [anon_sym_PLUS] = ACTIONS(3431), + [anon_sym_DASH] = ACTIONS(3431), + [anon_sym_STAR] = ACTIONS(3429), + [anon_sym_SLASH] = ACTIONS(3431), + [anon_sym_PERCENT] = ACTIONS(3429), + [anon_sym_CARET] = ACTIONS(3429), + [anon_sym_PIPE] = ACTIONS(3431), + [anon_sym_AMP] = ACTIONS(3431), + [anon_sym_LT_LT] = ACTIONS(3429), + [anon_sym_GT_GT] = ACTIONS(3431), + [anon_sym_GT_GT_GT] = ACTIONS(3429), + [anon_sym_EQ_EQ] = ACTIONS(3429), + [anon_sym_BANG_EQ] = ACTIONS(3429), + [anon_sym_GT_EQ] = ACTIONS(3429), + [anon_sym_LT_EQ] = ACTIONS(3429), + [anon_sym_DOT] = ACTIONS(3431), + [anon_sym_scoped] = ACTIONS(3431), + [anon_sym_COLON_COLON] = ACTIONS(3429), + [anon_sym_var] = ACTIONS(3431), + [anon_sym_yield] = ACTIONS(3431), + [anon_sym_switch] = ACTIONS(3431), + [anon_sym_when] = ACTIONS(3431), + [sym_discard] = ACTIONS(3431), + [anon_sym_DOT_DOT] = ACTIONS(3429), + [anon_sym_and] = ACTIONS(3431), + [anon_sym_or] = ACTIONS(3431), + [anon_sym_AMP_AMP] = ACTIONS(3429), + [anon_sym_PIPE_PIPE] = ACTIONS(3429), + [anon_sym_QMARK_QMARK] = ACTIONS(3429), + [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_as] = ACTIONS(3431), + [anon_sym_is] = ACTIONS(3431), + [anon_sym_DASH_GT] = ACTIONS(3429), + [anon_sym_with] = ACTIONS(3431), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -438891,6 +438512,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(3429), }, [2620] = { [sym_preproc_region] = STATE(2620), @@ -438902,80 +438524,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2620), [sym_preproc_define] = STATE(2620), [sym_preproc_undef] = STATE(2620), - [anon_sym_SEMI] = ACTIONS(4148), - [anon_sym_EQ] = ACTIONS(4136), - [anon_sym_LBRACK] = ACTIONS(4148), - [anon_sym_COLON] = ACTIONS(4134), - [anon_sym_COMMA] = ACTIONS(4148), - [anon_sym_RBRACK] = ACTIONS(4148), - [anon_sym_LPAREN] = ACTIONS(4148), - [anon_sym_RPAREN] = ACTIONS(4148), - [anon_sym_RBRACE] = ACTIONS(4148), - [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(4148), - [anon_sym_DASH_DASH] = ACTIONS(4148), - [anon_sym_PLUS] = ACTIONS(4150), - [anon_sym_DASH] = ACTIONS(4150), - [anon_sym_STAR] = ACTIONS(4150), - [anon_sym_SLASH] = ACTIONS(4150), - [anon_sym_PERCENT] = ACTIONS(4150), - [anon_sym_CARET] = ACTIONS(4150), - [anon_sym_PIPE] = ACTIONS(4150), - [anon_sym_AMP] = ACTIONS(4150), - [anon_sym_LT_LT] = ACTIONS(4150), - [anon_sym_GT_GT] = ACTIONS(4150), - [anon_sym_GT_GT_GT] = ACTIONS(4150), - [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(4150), - [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_PLUS_EQ] = ACTIONS(4134), - [anon_sym_DASH_EQ] = ACTIONS(4134), - [anon_sym_STAR_EQ] = ACTIONS(4134), - [anon_sym_SLASH_EQ] = ACTIONS(4134), - [anon_sym_PERCENT_EQ] = ACTIONS(4134), - [anon_sym_AMP_EQ] = ACTIONS(4134), - [anon_sym_CARET_EQ] = ACTIONS(4134), - [anon_sym_PIPE_EQ] = ACTIONS(4134), - [anon_sym_LT_LT_EQ] = ACTIONS(4134), - [anon_sym_GT_GT_EQ] = ACTIONS(4134), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(4134), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(4134), - [anon_sym_AMP_AMP] = ACTIONS(4148), - [anon_sym_PIPE_PIPE] = ACTIONS(4148), - [anon_sym_QMARK_QMARK] = ACTIONS(4150), - [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), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_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(3634), + [anon_sym_alias] = ACTIONS(3634), + [anon_sym_global] = ACTIONS(3634), + [anon_sym_LBRACK] = ACTIONS(3636), + [anon_sym_COLON] = ACTIONS(3634), + [anon_sym_COMMA] = ACTIONS(3636), + [anon_sym_LPAREN] = ACTIONS(3636), + [anon_sym_LBRACE] = ACTIONS(3636), + [anon_sym_file] = ACTIONS(3634), + [anon_sym_LT] = ACTIONS(3634), + [anon_sym_GT] = ACTIONS(3634), + [anon_sym_where] = ACTIONS(3634), + [anon_sym_QMARK] = ACTIONS(3634), + [anon_sym_notnull] = ACTIONS(3634), + [anon_sym_unmanaged] = ACTIONS(3634), + [anon_sym_BANG] = ACTIONS(3634), + [anon_sym_PLUS_PLUS] = ACTIONS(3636), + [anon_sym_DASH_DASH] = ACTIONS(3636), + [anon_sym_PLUS] = ACTIONS(3634), + [anon_sym_DASH] = ACTIONS(3634), + [anon_sym_STAR] = ACTIONS(3636), + [anon_sym_SLASH] = ACTIONS(3634), + [anon_sym_PERCENT] = ACTIONS(3636), + [anon_sym_CARET] = ACTIONS(3636), + [anon_sym_PIPE] = ACTIONS(3634), + [anon_sym_AMP] = ACTIONS(3634), + [anon_sym_LT_LT] = ACTIONS(3636), + [anon_sym_GT_GT] = ACTIONS(3634), + [anon_sym_GT_GT_GT] = ACTIONS(3636), + [anon_sym_EQ_EQ] = ACTIONS(3636), + [anon_sym_BANG_EQ] = ACTIONS(3636), + [anon_sym_GT_EQ] = ACTIONS(3636), + [anon_sym_LT_EQ] = ACTIONS(3636), + [anon_sym_DOT] = ACTIONS(3634), + [anon_sym_scoped] = ACTIONS(3634), + [anon_sym_COLON_COLON] = ACTIONS(3636), + [anon_sym_var] = ACTIONS(3634), + [anon_sym_yield] = ACTIONS(3634), + [anon_sym_switch] = ACTIONS(3634), + [anon_sym_when] = ACTIONS(3634), + [sym_discard] = ACTIONS(3634), + [anon_sym_DOT_DOT] = ACTIONS(3636), + [anon_sym_and] = ACTIONS(3634), + [anon_sym_or] = ACTIONS(3634), + [anon_sym_AMP_AMP] = ACTIONS(3636), + [anon_sym_PIPE_PIPE] = ACTIONS(3636), + [anon_sym_QMARK_QMARK] = ACTIONS(3636), + [anon_sym_from] = ACTIONS(3634), + [anon_sym_into] = ACTIONS(3634), + [anon_sym_join] = ACTIONS(3634), + [anon_sym_on] = ACTIONS(3634), + [anon_sym_equals] = ACTIONS(3634), + [anon_sym_let] = ACTIONS(3634), + [anon_sym_orderby] = ACTIONS(3634), + [anon_sym_ascending] = ACTIONS(3634), + [anon_sym_descending] = ACTIONS(3634), + [anon_sym_group] = ACTIONS(3634), + [anon_sym_by] = ACTIONS(3634), + [anon_sym_select] = ACTIONS(3634), + [anon_sym_as] = ACTIONS(3634), + [anon_sym_is] = ACTIONS(3634), + [anon_sym_DASH_GT] = ACTIONS(3636), + [anon_sym_with] = ACTIONS(3634), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_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(3636), }, [2621] = { [sym_preproc_region] = STATE(2621), @@ -438987,70 +438609,70 @@ 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(4016), - [anon_sym_alias] = ACTIONS(4016), - [anon_sym_global] = ACTIONS(4016), - [anon_sym_LBRACK] = ACTIONS(4066), - [anon_sym_COLON] = ACTIONS(4018), - [anon_sym_COMMA] = ACTIONS(4018), - [anon_sym_LPAREN] = ACTIONS(4018), - [anon_sym_RPAREN] = ACTIONS(4018), - [anon_sym_LBRACE] = ACTIONS(4018), - [anon_sym_RBRACE] = ACTIONS(4018), - [anon_sym_file] = ACTIONS(4016), - [anon_sym_LT] = ACTIONS(4016), - [anon_sym_GT] = ACTIONS(4016), - [anon_sym_where] = ACTIONS(4016), - [anon_sym_QMARK] = ACTIONS(4069), - [anon_sym_notnull] = ACTIONS(4016), - [anon_sym_unmanaged] = ACTIONS(4016), - [anon_sym_BANG] = ACTIONS(4016), - [anon_sym_PLUS_PLUS] = ACTIONS(4018), - [anon_sym_DASH_DASH] = ACTIONS(4018), - [anon_sym_PLUS] = ACTIONS(4016), - [anon_sym_DASH] = ACTIONS(4016), - [anon_sym_STAR] = ACTIONS(4072), - [anon_sym_SLASH] = ACTIONS(4016), - [anon_sym_PERCENT] = ACTIONS(4018), - [anon_sym_CARET] = ACTIONS(4018), - [anon_sym_PIPE] = ACTIONS(4016), - [anon_sym_AMP] = ACTIONS(4016), - [anon_sym_LT_LT] = ACTIONS(4018), - [anon_sym_GT_GT] = ACTIONS(4016), - [anon_sym_GT_GT_GT] = ACTIONS(4018), - [anon_sym_EQ_EQ] = ACTIONS(4018), - [anon_sym_BANG_EQ] = ACTIONS(4018), - [anon_sym_GT_EQ] = ACTIONS(4018), - [anon_sym_LT_EQ] = ACTIONS(4018), - [anon_sym_DOT] = ACTIONS(4281), - [anon_sym_scoped] = ACTIONS(4016), - [anon_sym_var] = ACTIONS(4016), - [anon_sym_yield] = ACTIONS(4016), - [anon_sym_switch] = ACTIONS(4016), - [anon_sym_when] = ACTIONS(4016), - [sym_discard] = ACTIONS(4016), - [anon_sym_DOT_DOT] = ACTIONS(4018), - [anon_sym_and] = ACTIONS(4016), - [anon_sym_or] = ACTIONS(4016), - [anon_sym_AMP_AMP] = ACTIONS(4018), - [anon_sym_PIPE_PIPE] = ACTIONS(4018), - [anon_sym_QMARK_QMARK] = ACTIONS(4018), - [anon_sym_from] = ACTIONS(4016), - [anon_sym_into] = ACTIONS(4016), - [anon_sym_join] = ACTIONS(4016), - [anon_sym_on] = ACTIONS(4016), - [anon_sym_equals] = ACTIONS(4016), - [anon_sym_let] = ACTIONS(4016), - [anon_sym_orderby] = ACTIONS(4016), - [anon_sym_ascending] = ACTIONS(4016), - [anon_sym_descending] = ACTIONS(4016), - [anon_sym_group] = ACTIONS(4016), - [anon_sym_by] = ACTIONS(4016), - [anon_sym_select] = ACTIONS(4016), - [anon_sym_as] = ACTIONS(4016), - [anon_sym_is] = ACTIONS(4016), - [anon_sym_DASH_GT] = ACTIONS(4102), - [anon_sym_with] = ACTIONS(4016), + [sym__identifier_token] = ACTIONS(4263), + [anon_sym_extern] = ACTIONS(4263), + [anon_sym_alias] = ACTIONS(4263), + [anon_sym_global] = ACTIONS(4263), + [anon_sym_using] = ACTIONS(4263), + [anon_sym_unsafe] = ACTIONS(4263), + [anon_sym_EQ] = ACTIONS(4265), + [anon_sym_static] = ACTIONS(4263), + [anon_sym_LBRACK] = ACTIONS(4267), + [anon_sym_LPAREN] = ACTIONS(4267), + [anon_sym_event] = ACTIONS(4263), + [anon_sym_namespace] = ACTIONS(4263), + [anon_sym_class] = ACTIONS(4263), + [anon_sym_ref] = ACTIONS(4263), + [anon_sym_struct] = ACTIONS(4263), + [anon_sym_enum] = ACTIONS(4263), + [anon_sym_RBRACE] = ACTIONS(4267), + [anon_sym_interface] = ACTIONS(4263), + [anon_sym_delegate] = ACTIONS(4263), + [anon_sym_record] = ACTIONS(4263), + [anon_sym_abstract] = ACTIONS(4263), + [anon_sym_async] = ACTIONS(4263), + [anon_sym_const] = ACTIONS(4263), + [anon_sym_file] = ACTIONS(4263), + [anon_sym_fixed] = ACTIONS(4263), + [anon_sym_internal] = ACTIONS(4263), + [anon_sym_new] = ACTIONS(4263), + [anon_sym_override] = ACTIONS(4263), + [anon_sym_partial] = ACTIONS(4263), + [anon_sym_private] = ACTIONS(4263), + [anon_sym_protected] = ACTIONS(4263), + [anon_sym_public] = ACTIONS(4263), + [anon_sym_readonly] = ACTIONS(4263), + [anon_sym_required] = ACTIONS(4263), + [anon_sym_sealed] = ACTIONS(4263), + [anon_sym_virtual] = ACTIONS(4263), + [anon_sym_volatile] = ACTIONS(4263), + [anon_sym_where] = ACTIONS(4263), + [anon_sym_notnull] = ACTIONS(4263), + [anon_sym_unmanaged] = ACTIONS(4263), + [anon_sym_TILDE] = ACTIONS(4267), + [anon_sym_implicit] = ACTIONS(4263), + [anon_sym_explicit] = ACTIONS(4263), + [anon_sym_scoped] = ACTIONS(4263), + [anon_sym_var] = ACTIONS(4263), + [sym_predefined_type] = ACTIONS(4263), + [anon_sym_yield] = ACTIONS(4263), + [anon_sym_when] = ACTIONS(4263), + [anon_sym_from] = ACTIONS(4263), + [anon_sym_into] = ACTIONS(4263), + [anon_sym_join] = ACTIONS(4263), + [anon_sym_on] = ACTIONS(4263), + [anon_sym_equals] = ACTIONS(4263), + [anon_sym_let] = ACTIONS(4263), + [anon_sym_orderby] = ACTIONS(4263), + [anon_sym_ascending] = ACTIONS(4263), + [anon_sym_descending] = ACTIONS(4263), + [anon_sym_group] = ACTIONS(4263), + [anon_sym_by] = ACTIONS(4263), + [anon_sym_select] = ACTIONS(4263), + [aux_sym_preproc_if_token1] = ACTIONS(4267), + [aux_sym_preproc_if_token3] = ACTIONS(4267), + [aux_sym_preproc_else_token1] = ACTIONS(4267), + [aux_sym_preproc_elif_token1] = ACTIONS(4267), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -439072,70 +438694,69 @@ 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), - [sym__identifier_token] = ACTIONS(4016), - [anon_sym_alias] = ACTIONS(4016), - [anon_sym_global] = ACTIONS(4016), - [anon_sym_LBRACK] = ACTIONS(4066), - [anon_sym_COLON] = ACTIONS(4018), - [anon_sym_COMMA] = ACTIONS(4018), - [anon_sym_LPAREN] = ACTIONS(4018), - [anon_sym_RPAREN] = ACTIONS(4018), - [anon_sym_LBRACE] = ACTIONS(4018), - [anon_sym_RBRACE] = ACTIONS(4018), - [anon_sym_file] = ACTIONS(4016), - [anon_sym_LT] = ACTIONS(4016), - [anon_sym_GT] = ACTIONS(4016), - [anon_sym_where] = ACTIONS(4016), - [anon_sym_QMARK] = ACTIONS(4069), - [anon_sym_notnull] = ACTIONS(4016), - [anon_sym_unmanaged] = ACTIONS(4016), - [anon_sym_BANG] = ACTIONS(4016), - [anon_sym_PLUS_PLUS] = ACTIONS(4018), - [anon_sym_DASH_DASH] = ACTIONS(4018), - [anon_sym_PLUS] = ACTIONS(4016), - [anon_sym_DASH] = ACTIONS(4016), - [anon_sym_STAR] = ACTIONS(4072), - [anon_sym_SLASH] = ACTIONS(4016), - [anon_sym_PERCENT] = ACTIONS(4018), - [anon_sym_CARET] = ACTIONS(4018), - [anon_sym_PIPE] = ACTIONS(4016), - [anon_sym_AMP] = ACTIONS(4016), - [anon_sym_LT_LT] = ACTIONS(4018), - [anon_sym_GT_GT] = ACTIONS(4016), - [anon_sym_GT_GT_GT] = ACTIONS(4018), - [anon_sym_EQ_EQ] = ACTIONS(4018), - [anon_sym_BANG_EQ] = ACTIONS(4018), - [anon_sym_GT_EQ] = ACTIONS(4018), - [anon_sym_LT_EQ] = ACTIONS(4018), - [anon_sym_DOT] = ACTIONS(4283), - [anon_sym_scoped] = ACTIONS(4016), - [anon_sym_var] = ACTIONS(4016), - [anon_sym_yield] = ACTIONS(4016), - [anon_sym_switch] = ACTIONS(4016), - [anon_sym_when] = ACTIONS(4016), - [sym_discard] = ACTIONS(4016), - [anon_sym_DOT_DOT] = ACTIONS(4018), - [anon_sym_and] = ACTIONS(4016), - [anon_sym_or] = ACTIONS(4016), - [anon_sym_AMP_AMP] = ACTIONS(4018), - [anon_sym_PIPE_PIPE] = ACTIONS(4018), - [anon_sym_QMARK_QMARK] = ACTIONS(4018), - [anon_sym_from] = ACTIONS(4016), - [anon_sym_into] = ACTIONS(4016), - [anon_sym_join] = ACTIONS(4016), - [anon_sym_on] = ACTIONS(4016), - [anon_sym_equals] = ACTIONS(4016), - [anon_sym_let] = ACTIONS(4016), - [anon_sym_orderby] = ACTIONS(4016), - [anon_sym_ascending] = ACTIONS(4016), - [anon_sym_descending] = ACTIONS(4016), - [anon_sym_group] = ACTIONS(4016), - [anon_sym_by] = ACTIONS(4016), - [anon_sym_select] = ACTIONS(4016), - [anon_sym_as] = ACTIONS(4016), - [anon_sym_is] = ACTIONS(4016), - [anon_sym_DASH_GT] = ACTIONS(4102), - [anon_sym_with] = ACTIONS(4016), + [sym__identifier_token] = ACTIONS(3603), + [anon_sym_alias] = ACTIONS(3603), + [anon_sym_global] = ACTIONS(3603), + [anon_sym_LBRACK] = ACTIONS(3600), + [anon_sym_COLON] = ACTIONS(3603), + [anon_sym_COMMA] = ACTIONS(3600), + [anon_sym_LPAREN] = ACTIONS(3600), + [anon_sym_LBRACE] = ACTIONS(3600), + [anon_sym_file] = ACTIONS(3603), + [anon_sym_LT] = ACTIONS(3603), + [anon_sym_GT] = ACTIONS(3603), + [anon_sym_where] = ACTIONS(3603), + [anon_sym_QMARK] = ACTIONS(3603), + [anon_sym_notnull] = ACTIONS(3603), + [anon_sym_unmanaged] = ACTIONS(3603), + [anon_sym_BANG] = ACTIONS(3603), + [anon_sym_PLUS_PLUS] = ACTIONS(3600), + [anon_sym_DASH_DASH] = ACTIONS(3600), + [anon_sym_PLUS] = ACTIONS(3603), + [anon_sym_DASH] = ACTIONS(3603), + [anon_sym_STAR] = ACTIONS(3600), + [anon_sym_SLASH] = ACTIONS(3603), + [anon_sym_PERCENT] = ACTIONS(3600), + [anon_sym_CARET] = ACTIONS(3600), + [anon_sym_PIPE] = ACTIONS(3603), + [anon_sym_AMP] = ACTIONS(3603), + [anon_sym_LT_LT] = ACTIONS(3600), + [anon_sym_GT_GT] = ACTIONS(3603), + [anon_sym_GT_GT_GT] = ACTIONS(3600), + [anon_sym_EQ_EQ] = ACTIONS(3600), + [anon_sym_BANG_EQ] = ACTIONS(3600), + [anon_sym_GT_EQ] = ACTIONS(3600), + [anon_sym_LT_EQ] = ACTIONS(3600), + [anon_sym_DOT] = ACTIONS(3603), + [anon_sym_scoped] = ACTIONS(3603), + [anon_sym_COLON_COLON] = ACTIONS(3429), + [anon_sym_var] = ACTIONS(3603), + [anon_sym_yield] = ACTIONS(3603), + [anon_sym_switch] = ACTIONS(3603), + [anon_sym_when] = ACTIONS(3603), + [sym_discard] = ACTIONS(3603), + [anon_sym_DOT_DOT] = ACTIONS(3600), + [anon_sym_and] = ACTIONS(3603), + [anon_sym_or] = ACTIONS(3603), + [anon_sym_AMP_AMP] = ACTIONS(3600), + [anon_sym_PIPE_PIPE] = ACTIONS(3600), + [anon_sym_QMARK_QMARK] = ACTIONS(3600), + [anon_sym_from] = ACTIONS(3603), + [anon_sym_into] = ACTIONS(3603), + [anon_sym_join] = ACTIONS(3603), + [anon_sym_on] = ACTIONS(3603), + [anon_sym_equals] = ACTIONS(3603), + [anon_sym_let] = ACTIONS(3603), + [anon_sym_orderby] = ACTIONS(3603), + [anon_sym_ascending] = ACTIONS(3603), + [anon_sym_descending] = ACTIONS(3603), + [anon_sym_group] = ACTIONS(3603), + [anon_sym_by] = ACTIONS(3603), + [anon_sym_select] = ACTIONS(3603), + [anon_sym_as] = ACTIONS(3603), + [anon_sym_is] = ACTIONS(3603), + [anon_sym_DASH_GT] = ACTIONS(3600), + [anon_sym_with] = ACTIONS(3603), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -439146,8 +438767,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(3600), }, [2623] = { + [sym__variable_designation] = STATE(3697), + [sym_parenthesized_variable_designation] = STATE(3688), + [sym_identifier] = STATE(3692), + [sym__reserved_identifier] = STATE(2354), [sym_preproc_region] = STATE(2623), [sym_preproc_endregion] = STATE(2623), [sym_preproc_line] = STATE(2623), @@ -439157,70 +438783,66 @@ 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(4016), - [anon_sym_alias] = ACTIONS(4016), - [anon_sym_global] = ACTIONS(4016), - [anon_sym_LBRACK] = ACTIONS(4066), - [anon_sym_COLON] = ACTIONS(4018), - [anon_sym_COMMA] = ACTIONS(4018), - [anon_sym_LPAREN] = ACTIONS(4018), - [anon_sym_RPAREN] = ACTIONS(4018), - [anon_sym_LBRACE] = ACTIONS(4018), - [anon_sym_RBRACE] = ACTIONS(4018), - [anon_sym_file] = ACTIONS(4016), - [anon_sym_LT] = ACTIONS(4016), - [anon_sym_GT] = ACTIONS(4016), - [anon_sym_where] = ACTIONS(4016), - [anon_sym_QMARK] = ACTIONS(4069), - [anon_sym_notnull] = ACTIONS(4016), - [anon_sym_unmanaged] = ACTIONS(4016), - [anon_sym_BANG] = ACTIONS(4016), - [anon_sym_PLUS_PLUS] = ACTIONS(4018), - [anon_sym_DASH_DASH] = ACTIONS(4018), - [anon_sym_PLUS] = ACTIONS(4016), - [anon_sym_DASH] = ACTIONS(4016), - [anon_sym_STAR] = ACTIONS(4072), - [anon_sym_SLASH] = ACTIONS(4016), - [anon_sym_PERCENT] = ACTIONS(4018), - [anon_sym_CARET] = ACTIONS(4018), - [anon_sym_PIPE] = ACTIONS(4016), - [anon_sym_AMP] = ACTIONS(4016), - [anon_sym_LT_LT] = ACTIONS(4018), - [anon_sym_GT_GT] = ACTIONS(4016), - [anon_sym_GT_GT_GT] = ACTIONS(4018), - [anon_sym_EQ_EQ] = ACTIONS(4018), - [anon_sym_BANG_EQ] = ACTIONS(4018), - [anon_sym_GT_EQ] = ACTIONS(4018), - [anon_sym_LT_EQ] = ACTIONS(4018), - [anon_sym_DOT] = ACTIONS(4285), - [anon_sym_scoped] = ACTIONS(4016), - [anon_sym_var] = ACTIONS(4016), - [anon_sym_yield] = ACTIONS(4016), - [anon_sym_switch] = ACTIONS(4016), - [anon_sym_when] = ACTIONS(4016), - [sym_discard] = ACTIONS(4016), - [anon_sym_DOT_DOT] = ACTIONS(4018), - [anon_sym_and] = ACTIONS(4016), - [anon_sym_or] = ACTIONS(4016), - [anon_sym_AMP_AMP] = ACTIONS(4018), - [anon_sym_PIPE_PIPE] = ACTIONS(4018), - [anon_sym_QMARK_QMARK] = ACTIONS(4018), - [anon_sym_from] = ACTIONS(4016), - [anon_sym_into] = ACTIONS(4016), - [anon_sym_join] = ACTIONS(4016), - [anon_sym_on] = ACTIONS(4016), - [anon_sym_equals] = ACTIONS(4016), - [anon_sym_let] = ACTIONS(4016), - [anon_sym_orderby] = ACTIONS(4016), - [anon_sym_ascending] = ACTIONS(4016), - [anon_sym_descending] = ACTIONS(4016), - [anon_sym_group] = ACTIONS(4016), - [anon_sym_by] = ACTIONS(4016), - [anon_sym_select] = ACTIONS(4016), - [anon_sym_as] = ACTIONS(4016), - [anon_sym_is] = ACTIONS(4016), - [anon_sym_DASH_GT] = ACTIONS(4018), - [anon_sym_with] = ACTIONS(4016), + [sym__identifier_token] = ACTIONS(4080), + [anon_sym_alias] = ACTIONS(4082), + [anon_sym_global] = ACTIONS(4082), + [anon_sym_LBRACK] = ACTIONS(3893), + [anon_sym_COMMA] = ACTIONS(3893), + [anon_sym_LPAREN] = ACTIONS(3893), + [anon_sym_file] = ACTIONS(4082), + [anon_sym_LT] = ACTIONS(3895), + [anon_sym_GT] = ACTIONS(3895), + [anon_sym_where] = ACTIONS(3895), + [anon_sym_QMARK] = ACTIONS(3895), + [anon_sym_notnull] = ACTIONS(4082), + [anon_sym_unmanaged] = ACTIONS(4082), + [anon_sym_BANG] = ACTIONS(3895), + [anon_sym_PLUS_PLUS] = ACTIONS(3893), + [anon_sym_DASH_DASH] = ACTIONS(3893), + [anon_sym_PLUS] = ACTIONS(3895), + [anon_sym_DASH] = ACTIONS(3895), + [anon_sym_STAR] = ACTIONS(3893), + [anon_sym_SLASH] = ACTIONS(3895), + [anon_sym_PERCENT] = ACTIONS(3893), + [anon_sym_CARET] = ACTIONS(3893), + [anon_sym_PIPE] = ACTIONS(3895), + [anon_sym_AMP] = ACTIONS(3895), + [anon_sym_LT_LT] = ACTIONS(3893), + [anon_sym_GT_GT] = ACTIONS(3895), + [anon_sym_GT_GT_GT] = ACTIONS(3893), + [anon_sym_EQ_EQ] = ACTIONS(3893), + [anon_sym_BANG_EQ] = ACTIONS(3893), + [anon_sym_GT_EQ] = ACTIONS(3893), + [anon_sym_LT_EQ] = ACTIONS(3893), + [anon_sym_DOT] = ACTIONS(3895), + [anon_sym_scoped] = ACTIONS(4082), + [anon_sym_var] = ACTIONS(4082), + [anon_sym_yield] = ACTIONS(4082), + [anon_sym_switch] = ACTIONS(3895), + [anon_sym_when] = ACTIONS(4082), + [sym_discard] = ACTIONS(4183), + [anon_sym_DOT_DOT] = ACTIONS(3893), + [anon_sym_and] = ACTIONS(3895), + [anon_sym_or] = ACTIONS(3895), + [anon_sym_AMP_AMP] = ACTIONS(3893), + [anon_sym_PIPE_PIPE] = ACTIONS(3893), + [anon_sym_QMARK_QMARK] = ACTIONS(3893), + [anon_sym_from] = ACTIONS(3895), + [anon_sym_into] = ACTIONS(3895), + [anon_sym_join] = ACTIONS(3895), + [anon_sym_on] = ACTIONS(4082), + [anon_sym_equals] = ACTIONS(4082), + [anon_sym_let] = ACTIONS(3895), + [anon_sym_orderby] = ACTIONS(3895), + [anon_sym_ascending] = ACTIONS(3895), + [anon_sym_descending] = ACTIONS(3895), + [anon_sym_group] = ACTIONS(3895), + [anon_sym_by] = ACTIONS(4082), + [anon_sym_select] = ACTIONS(3895), + [anon_sym_as] = ACTIONS(3895), + [anon_sym_is] = ACTIONS(3895), + [anon_sym_DASH_GT] = ACTIONS(3893), + [anon_sym_with] = ACTIONS(3895), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -439233,7 +438855,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2624] = { - [sym_type_argument_list] = STATE(2723), + [sym__variable_designation] = STATE(3716), + [sym_parenthesized_variable_designation] = STATE(3688), + [sym_identifier] = STATE(3692), + [sym__reserved_identifier] = STATE(2354), [sym_preproc_region] = STATE(2624), [sym_preproc_endregion] = STATE(2624), [sym_preproc_line] = STATE(2624), @@ -439243,85 +438868,82 @@ 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(3660), - [anon_sym_alias] = ACTIONS(3660), - [anon_sym_global] = ACTIONS(3660), - [anon_sym_LBRACK] = ACTIONS(3662), - [anon_sym_COLON] = ACTIONS(3662), - [anon_sym_COMMA] = ACTIONS(3662), - [anon_sym_LPAREN] = ACTIONS(3662), - [anon_sym_LBRACE] = ACTIONS(3662), - [anon_sym_file] = ACTIONS(3660), - [anon_sym_LT] = ACTIONS(4250), - [anon_sym_GT] = ACTIONS(3660), - [anon_sym_where] = ACTIONS(3660), - [anon_sym_QMARK] = ACTIONS(3660), - [anon_sym_notnull] = ACTIONS(3660), - [anon_sym_unmanaged] = ACTIONS(3660), - [anon_sym_BANG] = ACTIONS(3660), - [anon_sym_PLUS_PLUS] = ACTIONS(3662), - [anon_sym_DASH_DASH] = ACTIONS(3662), - [anon_sym_PLUS] = ACTIONS(3660), - [anon_sym_DASH] = ACTIONS(3660), - [anon_sym_STAR] = ACTIONS(3662), - [anon_sym_SLASH] = ACTIONS(3660), - [anon_sym_PERCENT] = ACTIONS(3662), - [anon_sym_CARET] = ACTIONS(3662), - [anon_sym_PIPE] = ACTIONS(3660), - [anon_sym_AMP] = ACTIONS(3660), - [anon_sym_LT_LT] = ACTIONS(3662), - [anon_sym_GT_GT] = ACTIONS(3660), - [anon_sym_GT_GT_GT] = ACTIONS(3662), - [anon_sym_EQ_EQ] = ACTIONS(3662), - [anon_sym_BANG_EQ] = ACTIONS(3662), - [anon_sym_GT_EQ] = ACTIONS(3662), - [anon_sym_LT_EQ] = ACTIONS(3662), - [anon_sym_DOT] = ACTIONS(3660), - [anon_sym_scoped] = ACTIONS(3660), - [anon_sym_var] = ACTIONS(3660), - [anon_sym_yield] = ACTIONS(3660), - [anon_sym_switch] = ACTIONS(3660), - [anon_sym_when] = ACTIONS(3660), - [sym_discard] = ACTIONS(3660), - [anon_sym_DOT_DOT] = ACTIONS(3662), - [anon_sym_and] = ACTIONS(3660), - [anon_sym_or] = ACTIONS(3660), - [anon_sym_AMP_AMP] = ACTIONS(3662), - [anon_sym_PIPE_PIPE] = ACTIONS(3662), - [anon_sym_QMARK_QMARK] = ACTIONS(3662), - [anon_sym_from] = ACTIONS(3660), - [anon_sym_into] = ACTIONS(3660), - [anon_sym_join] = ACTIONS(3660), - [anon_sym_on] = ACTIONS(3660), - [anon_sym_equals] = ACTIONS(3660), - [anon_sym_let] = ACTIONS(3660), - [anon_sym_orderby] = ACTIONS(3660), - [anon_sym_ascending] = ACTIONS(3660), - [anon_sym_descending] = ACTIONS(3660), - [anon_sym_group] = ACTIONS(3660), - [anon_sym_by] = ACTIONS(3660), - [anon_sym_select] = ACTIONS(3660), - [anon_sym_as] = ACTIONS(3660), - [anon_sym_is] = ACTIONS(3660), - [anon_sym_DASH_GT] = ACTIONS(3662), - [anon_sym_with] = ACTIONS(3660), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_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(3662), + [sym__identifier_token] = ACTIONS(4080), + [anon_sym_alias] = ACTIONS(4082), + [anon_sym_global] = ACTIONS(4082), + [anon_sym_LBRACK] = ACTIONS(3885), + [anon_sym_COMMA] = ACTIONS(3885), + [anon_sym_LPAREN] = ACTIONS(3885), + [anon_sym_file] = ACTIONS(4082), + [anon_sym_LT] = ACTIONS(3887), + [anon_sym_GT] = ACTIONS(3887), + [anon_sym_where] = ACTIONS(3887), + [anon_sym_QMARK] = ACTIONS(3887), + [anon_sym_notnull] = ACTIONS(4082), + [anon_sym_unmanaged] = ACTIONS(4082), + [anon_sym_BANG] = ACTIONS(3887), + [anon_sym_PLUS_PLUS] = ACTIONS(3885), + [anon_sym_DASH_DASH] = ACTIONS(3885), + [anon_sym_PLUS] = ACTIONS(3887), + [anon_sym_DASH] = ACTIONS(3887), + [anon_sym_STAR] = ACTIONS(3885), + [anon_sym_SLASH] = ACTIONS(3887), + [anon_sym_PERCENT] = ACTIONS(3885), + [anon_sym_CARET] = ACTIONS(3885), + [anon_sym_PIPE] = ACTIONS(3887), + [anon_sym_AMP] = ACTIONS(3887), + [anon_sym_LT_LT] = ACTIONS(3885), + [anon_sym_GT_GT] = ACTIONS(3887), + [anon_sym_GT_GT_GT] = ACTIONS(3885), + [anon_sym_EQ_EQ] = ACTIONS(3885), + [anon_sym_BANG_EQ] = ACTIONS(3885), + [anon_sym_GT_EQ] = ACTIONS(3885), + [anon_sym_LT_EQ] = ACTIONS(3885), + [anon_sym_DOT] = ACTIONS(3887), + [anon_sym_scoped] = ACTIONS(4082), + [anon_sym_var] = ACTIONS(4082), + [anon_sym_yield] = ACTIONS(4082), + [anon_sym_switch] = ACTIONS(3887), + [anon_sym_when] = ACTIONS(4082), + [sym_discard] = ACTIONS(4183), + [anon_sym_DOT_DOT] = ACTIONS(3885), + [anon_sym_and] = ACTIONS(3887), + [anon_sym_or] = ACTIONS(3887), + [anon_sym_AMP_AMP] = ACTIONS(3885), + [anon_sym_PIPE_PIPE] = ACTIONS(3885), + [anon_sym_QMARK_QMARK] = ACTIONS(3885), + [anon_sym_from] = ACTIONS(3887), + [anon_sym_into] = ACTIONS(3887), + [anon_sym_join] = ACTIONS(3887), + [anon_sym_on] = ACTIONS(4082), + [anon_sym_equals] = ACTIONS(4082), + [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(4082), + [anon_sym_select] = ACTIONS(3887), + [anon_sym_as] = ACTIONS(3887), + [anon_sym_is] = ACTIONS(3887), + [anon_sym_DASH_GT] = ACTIONS(3885), + [anon_sym_with] = ACTIONS(3887), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), }, [2625] = { - [sym__variable_designation] = STATE(3481), - [sym_parenthesized_variable_designation] = STATE(3463), - [sym_identifier] = STATE(3479), - [sym__reserved_identifier] = STATE(3225), + [sym__variable_designation] = STATE(3718), + [sym_parenthesized_variable_designation] = STATE(3688), + [sym_identifier] = STATE(3692), + [sym__reserved_identifier] = STATE(2354), [sym_preproc_region] = STATE(2625), [sym_preproc_endregion] = STATE(2625), [sym_preproc_line] = STATE(2625), @@ -439331,66 +438953,66 @@ 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(3788), - [anon_sym_alias] = ACTIONS(3790), - [anon_sym_global] = ACTIONS(3790), - [anon_sym_LBRACK] = ACTIONS(3961), - [anon_sym_LPAREN] = ACTIONS(3961), - [anon_sym_file] = ACTIONS(3790), - [anon_sym_LT] = ACTIONS(3963), - [anon_sym_GT] = ACTIONS(3963), - [anon_sym_in] = ACTIONS(3963), - [anon_sym_where] = ACTIONS(3790), - [anon_sym_QMARK] = ACTIONS(3963), - [anon_sym_notnull] = ACTIONS(3790), - [anon_sym_unmanaged] = ACTIONS(3790), - [anon_sym_BANG] = ACTIONS(3963), - [anon_sym_PLUS_PLUS] = ACTIONS(3961), - [anon_sym_DASH_DASH] = ACTIONS(3961), - [anon_sym_PLUS] = ACTIONS(3963), - [anon_sym_DASH] = ACTIONS(3963), - [anon_sym_STAR] = ACTIONS(3961), - [anon_sym_SLASH] = ACTIONS(3963), - [anon_sym_PERCENT] = ACTIONS(3961), - [anon_sym_CARET] = ACTIONS(3961), - [anon_sym_PIPE] = ACTIONS(3963), - [anon_sym_AMP] = ACTIONS(3963), - [anon_sym_LT_LT] = ACTIONS(3961), - [anon_sym_GT_GT] = ACTIONS(3963), - [anon_sym_GT_GT_GT] = ACTIONS(3961), - [anon_sym_EQ_EQ] = ACTIONS(3961), - [anon_sym_BANG_EQ] = ACTIONS(3961), - [anon_sym_GT_EQ] = ACTIONS(3961), - [anon_sym_LT_EQ] = ACTIONS(3961), - [anon_sym_DOT] = ACTIONS(3963), - [anon_sym_scoped] = ACTIONS(3790), - [anon_sym_var] = ACTIONS(3790), - [anon_sym_yield] = ACTIONS(3790), - [anon_sym_switch] = ACTIONS(3963), - [anon_sym_when] = ACTIONS(3790), - [sym_discard] = ACTIONS(3897), - [anon_sym_DOT_DOT] = ACTIONS(3961), - [anon_sym_and] = ACTIONS(3963), - [anon_sym_or] = ACTIONS(3963), - [anon_sym_AMP_AMP] = ACTIONS(3961), - [anon_sym_PIPE_PIPE] = ACTIONS(3961), - [anon_sym_QMARK_QMARK] = ACTIONS(3961), - [anon_sym_from] = ACTIONS(3790), - [anon_sym_into] = ACTIONS(3790), - [anon_sym_join] = ACTIONS(3790), - [anon_sym_on] = ACTIONS(3790), - [anon_sym_equals] = ACTIONS(3790), - [anon_sym_let] = ACTIONS(3790), - [anon_sym_orderby] = ACTIONS(3790), - [anon_sym_ascending] = ACTIONS(3790), - [anon_sym_descending] = ACTIONS(3790), - [anon_sym_group] = ACTIONS(3790), - [anon_sym_by] = ACTIONS(3790), - [anon_sym_select] = ACTIONS(3790), - [anon_sym_as] = ACTIONS(3963), - [anon_sym_is] = ACTIONS(3963), - [anon_sym_DASH_GT] = ACTIONS(3961), - [anon_sym_with] = ACTIONS(3963), + [sym__identifier_token] = ACTIONS(4080), + [anon_sym_alias] = ACTIONS(4082), + [anon_sym_global] = ACTIONS(4082), + [anon_sym_LBRACK] = ACTIONS(3939), + [anon_sym_COMMA] = ACTIONS(3939), + [anon_sym_LPAREN] = ACTIONS(3939), + [anon_sym_file] = ACTIONS(4082), + [anon_sym_LT] = ACTIONS(3941), + [anon_sym_GT] = ACTIONS(3941), + [anon_sym_where] = ACTIONS(3941), + [anon_sym_QMARK] = ACTIONS(3941), + [anon_sym_notnull] = ACTIONS(4082), + [anon_sym_unmanaged] = ACTIONS(4082), + [anon_sym_BANG] = ACTIONS(3941), + [anon_sym_PLUS_PLUS] = ACTIONS(3939), + [anon_sym_DASH_DASH] = ACTIONS(3939), + [anon_sym_PLUS] = ACTIONS(3941), + [anon_sym_DASH] = ACTIONS(3941), + [anon_sym_STAR] = ACTIONS(3939), + [anon_sym_SLASH] = ACTIONS(3941), + [anon_sym_PERCENT] = ACTIONS(3939), + [anon_sym_CARET] = ACTIONS(3939), + [anon_sym_PIPE] = ACTIONS(3941), + [anon_sym_AMP] = ACTIONS(3941), + [anon_sym_LT_LT] = ACTIONS(3939), + [anon_sym_GT_GT] = ACTIONS(3941), + [anon_sym_GT_GT_GT] = ACTIONS(3939), + [anon_sym_EQ_EQ] = ACTIONS(3939), + [anon_sym_BANG_EQ] = ACTIONS(3939), + [anon_sym_GT_EQ] = ACTIONS(3939), + [anon_sym_LT_EQ] = ACTIONS(3939), + [anon_sym_DOT] = ACTIONS(3941), + [anon_sym_scoped] = ACTIONS(4082), + [anon_sym_var] = ACTIONS(4082), + [anon_sym_yield] = ACTIONS(4082), + [anon_sym_switch] = ACTIONS(3941), + [anon_sym_when] = ACTIONS(4082), + [sym_discard] = ACTIONS(4183), + [anon_sym_DOT_DOT] = ACTIONS(3939), + [anon_sym_and] = ACTIONS(3941), + [anon_sym_or] = ACTIONS(3941), + [anon_sym_AMP_AMP] = ACTIONS(3939), + [anon_sym_PIPE_PIPE] = ACTIONS(3939), + [anon_sym_QMARK_QMARK] = ACTIONS(3939), + [anon_sym_from] = ACTIONS(3941), + [anon_sym_into] = ACTIONS(3941), + [anon_sym_join] = ACTIONS(3941), + [anon_sym_on] = ACTIONS(4082), + [anon_sym_equals] = ACTIONS(4082), + [anon_sym_let] = ACTIONS(3941), + [anon_sym_orderby] = ACTIONS(3941), + [anon_sym_ascending] = ACTIONS(3941), + [anon_sym_descending] = ACTIONS(3941), + [anon_sym_group] = ACTIONS(3941), + [anon_sym_by] = ACTIONS(4082), + [anon_sym_select] = ACTIONS(3941), + [anon_sym_as] = ACTIONS(3941), + [anon_sym_is] = ACTIONS(3941), + [anon_sym_DASH_GT] = ACTIONS(3939), + [anon_sym_with] = ACTIONS(3941), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -439403,6 +439025,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2626] = { + [sym__variable_designation] = STATE(3725), + [sym_parenthesized_variable_designation] = STATE(3688), + [sym_identifier] = STATE(3692), + [sym__reserved_identifier] = STATE(2354), [sym_preproc_region] = STATE(2626), [sym_preproc_endregion] = STATE(2626), [sym_preproc_line] = STATE(2626), @@ -439412,80 +439038,76 @@ 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), - [sym__identifier_token] = ACTIONS(3447), - [anon_sym_alias] = ACTIONS(3447), - [anon_sym_global] = ACTIONS(3447), - [anon_sym_LBRACK] = ACTIONS(3445), - [anon_sym_COLON] = ACTIONS(3447), - [anon_sym_COMMA] = ACTIONS(3445), - [anon_sym_LPAREN] = ACTIONS(3445), - [anon_sym_LBRACE] = ACTIONS(3445), - [anon_sym_file] = ACTIONS(3447), - [anon_sym_LT] = ACTIONS(3447), - [anon_sym_GT] = ACTIONS(3447), - [anon_sym_where] = ACTIONS(3447), - [anon_sym_QMARK] = ACTIONS(3447), - [anon_sym_notnull] = ACTIONS(3447), - [anon_sym_unmanaged] = ACTIONS(3447), - [anon_sym_BANG] = ACTIONS(3447), - [anon_sym_PLUS_PLUS] = ACTIONS(3445), - [anon_sym_DASH_DASH] = ACTIONS(3445), - [anon_sym_PLUS] = ACTIONS(3447), - [anon_sym_DASH] = ACTIONS(3447), - [anon_sym_STAR] = ACTIONS(3445), - [anon_sym_SLASH] = ACTIONS(3447), - [anon_sym_PERCENT] = ACTIONS(3445), - [anon_sym_CARET] = ACTIONS(3445), - [anon_sym_PIPE] = ACTIONS(3447), - [anon_sym_AMP] = ACTIONS(3447), - [anon_sym_LT_LT] = ACTIONS(3445), - [anon_sym_GT_GT] = ACTIONS(3447), - [anon_sym_GT_GT_GT] = ACTIONS(3445), - [anon_sym_EQ_EQ] = ACTIONS(3445), - [anon_sym_BANG_EQ] = ACTIONS(3445), - [anon_sym_GT_EQ] = ACTIONS(3445), - [anon_sym_LT_EQ] = ACTIONS(3445), - [anon_sym_DOT] = ACTIONS(3447), - [anon_sym_scoped] = ACTIONS(3447), - [anon_sym_COLON_COLON] = ACTIONS(3445), - [anon_sym_var] = ACTIONS(3447), - [anon_sym_yield] = ACTIONS(3447), - [anon_sym_switch] = ACTIONS(3447), - [anon_sym_when] = ACTIONS(3447), - [sym_discard] = ACTIONS(3447), - [anon_sym_DOT_DOT] = ACTIONS(3445), - [anon_sym_and] = ACTIONS(3447), - [anon_sym_or] = ACTIONS(3447), - [anon_sym_AMP_AMP] = ACTIONS(3445), - [anon_sym_PIPE_PIPE] = ACTIONS(3445), - [anon_sym_QMARK_QMARK] = ACTIONS(3445), - [anon_sym_from] = ACTIONS(3447), - [anon_sym_into] = ACTIONS(3447), - [anon_sym_join] = ACTIONS(3447), - [anon_sym_on] = ACTIONS(3447), - [anon_sym_equals] = ACTIONS(3447), - [anon_sym_let] = ACTIONS(3447), - [anon_sym_orderby] = ACTIONS(3447), - [anon_sym_ascending] = ACTIONS(3447), - [anon_sym_descending] = ACTIONS(3447), - [anon_sym_group] = ACTIONS(3447), - [anon_sym_by] = ACTIONS(3447), - [anon_sym_select] = ACTIONS(3447), - [anon_sym_as] = ACTIONS(3447), - [anon_sym_is] = ACTIONS(3447), - [anon_sym_DASH_GT] = ACTIONS(3445), - [anon_sym_with] = ACTIONS(3447), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_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(3445), + [sym__identifier_token] = ACTIONS(4080), + [anon_sym_alias] = ACTIONS(4082), + [anon_sym_global] = ACTIONS(4082), + [anon_sym_LBRACK] = ACTIONS(3947), + [anon_sym_COMMA] = ACTIONS(3947), + [anon_sym_LPAREN] = ACTIONS(3947), + [anon_sym_file] = ACTIONS(4082), + [anon_sym_LT] = ACTIONS(3949), + [anon_sym_GT] = ACTIONS(3949), + [anon_sym_where] = ACTIONS(3949), + [anon_sym_QMARK] = ACTIONS(3949), + [anon_sym_notnull] = ACTIONS(4082), + [anon_sym_unmanaged] = ACTIONS(4082), + [anon_sym_BANG] = ACTIONS(3949), + [anon_sym_PLUS_PLUS] = ACTIONS(3947), + [anon_sym_DASH_DASH] = ACTIONS(3947), + [anon_sym_PLUS] = ACTIONS(3949), + [anon_sym_DASH] = ACTIONS(3949), + [anon_sym_STAR] = ACTIONS(3947), + [anon_sym_SLASH] = ACTIONS(3949), + [anon_sym_PERCENT] = ACTIONS(3947), + [anon_sym_CARET] = ACTIONS(3947), + [anon_sym_PIPE] = ACTIONS(3949), + [anon_sym_AMP] = ACTIONS(3949), + [anon_sym_LT_LT] = ACTIONS(3947), + [anon_sym_GT_GT] = ACTIONS(3949), + [anon_sym_GT_GT_GT] = ACTIONS(3947), + [anon_sym_EQ_EQ] = ACTIONS(3947), + [anon_sym_BANG_EQ] = ACTIONS(3947), + [anon_sym_GT_EQ] = ACTIONS(3947), + [anon_sym_LT_EQ] = ACTIONS(3947), + [anon_sym_DOT] = ACTIONS(3949), + [anon_sym_scoped] = ACTIONS(4082), + [anon_sym_var] = ACTIONS(4082), + [anon_sym_yield] = ACTIONS(4082), + [anon_sym_switch] = ACTIONS(3949), + [anon_sym_when] = ACTIONS(4082), + [sym_discard] = ACTIONS(4183), + [anon_sym_DOT_DOT] = ACTIONS(3947), + [anon_sym_and] = ACTIONS(3949), + [anon_sym_or] = ACTIONS(3949), + [anon_sym_AMP_AMP] = ACTIONS(3947), + [anon_sym_PIPE_PIPE] = ACTIONS(3947), + [anon_sym_QMARK_QMARK] = ACTIONS(3947), + [anon_sym_from] = ACTIONS(3949), + [anon_sym_into] = ACTIONS(3949), + [anon_sym_join] = ACTIONS(3949), + [anon_sym_on] = ACTIONS(4082), + [anon_sym_equals] = ACTIONS(4082), + [anon_sym_let] = ACTIONS(3949), + [anon_sym_orderby] = ACTIONS(3949), + [anon_sym_ascending] = ACTIONS(3949), + [anon_sym_descending] = ACTIONS(3949), + [anon_sym_group] = ACTIONS(3949), + [anon_sym_by] = ACTIONS(4082), + [anon_sym_select] = ACTIONS(3949), + [anon_sym_as] = ACTIONS(3949), + [anon_sym_is] = ACTIONS(3949), + [anon_sym_DASH_GT] = ACTIONS(3947), + [anon_sym_with] = ACTIONS(3949), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), }, [2627] = { [sym_preproc_region] = STATE(2627), @@ -439497,80 +439119,80 @@ 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(3650), - [anon_sym_alias] = ACTIONS(3650), - [anon_sym_global] = ACTIONS(3650), - [anon_sym_LBRACK] = ACTIONS(3652), - [anon_sym_COLON] = ACTIONS(3650), - [anon_sym_COMMA] = ACTIONS(3652), - [anon_sym_LPAREN] = ACTIONS(3652), - [anon_sym_LBRACE] = ACTIONS(3652), - [anon_sym_file] = ACTIONS(3650), - [anon_sym_LT] = ACTIONS(3650), - [anon_sym_GT] = ACTIONS(3650), - [anon_sym_where] = ACTIONS(3650), - [anon_sym_QMARK] = ACTIONS(3650), - [anon_sym_notnull] = ACTIONS(3650), - [anon_sym_unmanaged] = ACTIONS(3650), - [anon_sym_BANG] = ACTIONS(3650), - [anon_sym_PLUS_PLUS] = ACTIONS(3652), - [anon_sym_DASH_DASH] = ACTIONS(3652), - [anon_sym_PLUS] = ACTIONS(3650), - [anon_sym_DASH] = ACTIONS(3650), - [anon_sym_STAR] = ACTIONS(3652), - [anon_sym_SLASH] = ACTIONS(3650), - [anon_sym_PERCENT] = ACTIONS(3652), - [anon_sym_CARET] = ACTIONS(3652), - [anon_sym_PIPE] = ACTIONS(3650), - [anon_sym_AMP] = ACTIONS(3650), - [anon_sym_LT_LT] = ACTIONS(3652), - [anon_sym_GT_GT] = ACTIONS(3650), - [anon_sym_GT_GT_GT] = ACTIONS(3652), - [anon_sym_EQ_EQ] = ACTIONS(3652), - [anon_sym_BANG_EQ] = ACTIONS(3652), - [anon_sym_GT_EQ] = ACTIONS(3652), - [anon_sym_LT_EQ] = ACTIONS(3652), - [anon_sym_DOT] = ACTIONS(3650), - [anon_sym_scoped] = ACTIONS(3650), - [anon_sym_COLON_COLON] = ACTIONS(3652), - [anon_sym_var] = ACTIONS(3650), - [anon_sym_yield] = ACTIONS(3650), - [anon_sym_switch] = ACTIONS(3650), - [anon_sym_when] = ACTIONS(3650), - [sym_discard] = ACTIONS(3650), - [anon_sym_DOT_DOT] = ACTIONS(3652), - [anon_sym_and] = ACTIONS(3650), - [anon_sym_or] = ACTIONS(3650), - [anon_sym_AMP_AMP] = ACTIONS(3652), - [anon_sym_PIPE_PIPE] = ACTIONS(3652), - [anon_sym_QMARK_QMARK] = ACTIONS(3652), - [anon_sym_from] = ACTIONS(3650), - [anon_sym_into] = ACTIONS(3650), - [anon_sym_join] = ACTIONS(3650), - [anon_sym_on] = ACTIONS(3650), - [anon_sym_equals] = ACTIONS(3650), - [anon_sym_let] = ACTIONS(3650), - [anon_sym_orderby] = ACTIONS(3650), - [anon_sym_ascending] = ACTIONS(3650), - [anon_sym_descending] = ACTIONS(3650), - [anon_sym_group] = ACTIONS(3650), - [anon_sym_by] = ACTIONS(3650), - [anon_sym_select] = ACTIONS(3650), - [anon_sym_as] = ACTIONS(3650), - [anon_sym_is] = ACTIONS(3650), - [anon_sym_DASH_GT] = ACTIONS(3652), - [anon_sym_with] = ACTIONS(3650), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_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(3652), + [anon_sym_SEMI] = ACTIONS(3640), + [anon_sym_EQ] = ACTIONS(3638), + [anon_sym_LBRACK] = ACTIONS(3640), + [anon_sym_COLON] = ACTIONS(3640), + [anon_sym_COMMA] = ACTIONS(3640), + [anon_sym_RBRACK] = ACTIONS(3640), + [anon_sym_LPAREN] = ACTIONS(3640), + [anon_sym_RPAREN] = ACTIONS(3640), + [anon_sym_RBRACE] = ACTIONS(3640), + [anon_sym_LT] = ACTIONS(3638), + [anon_sym_GT] = ACTIONS(3638), + [anon_sym_in] = ACTIONS(3638), + [anon_sym_QMARK] = ACTIONS(3638), + [anon_sym_BANG] = ACTIONS(3638), + [anon_sym_PLUS_PLUS] = ACTIONS(3640), + [anon_sym_DASH_DASH] = ACTIONS(3640), + [anon_sym_PLUS] = ACTIONS(3638), + [anon_sym_DASH] = ACTIONS(3638), + [anon_sym_STAR] = ACTIONS(3638), + [anon_sym_SLASH] = ACTIONS(3638), + [anon_sym_PERCENT] = ACTIONS(3638), + [anon_sym_CARET] = ACTIONS(3638), + [anon_sym_PIPE] = ACTIONS(3638), + [anon_sym_AMP] = ACTIONS(3638), + [anon_sym_LT_LT] = ACTIONS(3638), + [anon_sym_GT_GT] = ACTIONS(3638), + [anon_sym_GT_GT_GT] = ACTIONS(3638), + [anon_sym_EQ_EQ] = ACTIONS(3640), + [anon_sym_BANG_EQ] = ACTIONS(3640), + [anon_sym_GT_EQ] = ACTIONS(3640), + [anon_sym_LT_EQ] = ACTIONS(3640), + [anon_sym_DOT] = ACTIONS(3638), + [anon_sym_EQ_GT] = ACTIONS(3640), + [anon_sym_switch] = ACTIONS(3640), + [anon_sym_when] = ACTIONS(3640), + [anon_sym_DOT_DOT] = ACTIONS(3640), + [anon_sym_and] = ACTIONS(3640), + [anon_sym_or] = ACTIONS(3640), + [anon_sym_PLUS_EQ] = ACTIONS(3640), + [anon_sym_DASH_EQ] = ACTIONS(3640), + [anon_sym_STAR_EQ] = ACTIONS(3640), + [anon_sym_SLASH_EQ] = ACTIONS(3640), + [anon_sym_PERCENT_EQ] = ACTIONS(3640), + [anon_sym_AMP_EQ] = ACTIONS(3640), + [anon_sym_CARET_EQ] = ACTIONS(3640), + [anon_sym_PIPE_EQ] = ACTIONS(3640), + [anon_sym_LT_LT_EQ] = ACTIONS(3640), + [anon_sym_GT_GT_EQ] = ACTIONS(3640), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3640), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3640), + [anon_sym_AMP_AMP] = ACTIONS(3640), + [anon_sym_PIPE_PIPE] = ACTIONS(3640), + [anon_sym_QMARK_QMARK] = ACTIONS(3638), + [anon_sym_into] = ACTIONS(3640), + [anon_sym_on] = ACTIONS(3640), + [anon_sym_equals] = ACTIONS(3640), + [anon_sym_by] = ACTIONS(3640), + [anon_sym_as] = ACTIONS(3640), + [anon_sym_is] = ACTIONS(3640), + [anon_sym_DASH_GT] = ACTIONS(3640), + [anon_sym_with] = ACTIONS(3640), + [aux_sym_preproc_if_token3] = ACTIONS(3640), + [aux_sym_preproc_else_token1] = ACTIONS(3640), + [aux_sym_preproc_elif_token1] = ACTIONS(3640), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), }, [2628] = { [sym_preproc_region] = STATE(2628), @@ -439582,70 +439204,70 @@ 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), - [anon_sym_SEMI] = ACTIONS(4128), - [anon_sym_EQ] = ACTIONS(4130), - [anon_sym_LBRACK] = ACTIONS(4128), - [anon_sym_COLON] = ACTIONS(4128), - [anon_sym_COMMA] = ACTIONS(4128), - [anon_sym_RBRACK] = ACTIONS(4128), - [anon_sym_LPAREN] = ACTIONS(4128), - [anon_sym_RPAREN] = ACTIONS(4128), - [anon_sym_LBRACE] = ACTIONS(4128), - [anon_sym_RBRACE] = ACTIONS(4128), - [anon_sym_LT] = ACTIONS(4130), - [anon_sym_GT] = ACTIONS(4130), - [anon_sym_in] = ACTIONS(4128), - [anon_sym_QMARK] = ACTIONS(4130), - [anon_sym_BANG] = ACTIONS(4130), - [anon_sym_PLUS_PLUS] = ACTIONS(4128), - [anon_sym_DASH_DASH] = ACTIONS(4128), - [anon_sym_PLUS] = ACTIONS(4130), - [anon_sym_DASH] = ACTIONS(4130), - [anon_sym_STAR] = ACTIONS(4130), - [anon_sym_SLASH] = ACTIONS(4130), - [anon_sym_PERCENT] = ACTIONS(4130), - [anon_sym_CARET] = ACTIONS(4130), - [anon_sym_PIPE] = ACTIONS(4130), - [anon_sym_AMP] = ACTIONS(4130), - [anon_sym_LT_LT] = ACTIONS(4130), - [anon_sym_GT_GT] = ACTIONS(4130), - [anon_sym_GT_GT_GT] = ACTIONS(4130), - [anon_sym_EQ_EQ] = ACTIONS(4128), - [anon_sym_BANG_EQ] = ACTIONS(4128), - [anon_sym_GT_EQ] = ACTIONS(4128), - [anon_sym_LT_EQ] = ACTIONS(4128), - [anon_sym_DOT] = ACTIONS(4130), - [anon_sym_EQ_GT] = ACTIONS(4128), - [anon_sym_switch] = ACTIONS(4128), - [anon_sym_when] = ACTIONS(4128), - [anon_sym_DOT_DOT] = ACTIONS(4128), - [anon_sym_and] = ACTIONS(4128), - [anon_sym_or] = ACTIONS(4128), - [anon_sym_PLUS_EQ] = ACTIONS(4128), - [anon_sym_DASH_EQ] = ACTIONS(4128), - [anon_sym_STAR_EQ] = ACTIONS(4128), - [anon_sym_SLASH_EQ] = ACTIONS(4128), - [anon_sym_PERCENT_EQ] = ACTIONS(4128), - [anon_sym_AMP_EQ] = ACTIONS(4128), - [anon_sym_CARET_EQ] = ACTIONS(4128), - [anon_sym_PIPE_EQ] = ACTIONS(4128), - [anon_sym_LT_LT_EQ] = ACTIONS(4128), - [anon_sym_GT_GT_EQ] = ACTIONS(4128), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(4128), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(4128), - [anon_sym_AMP_AMP] = ACTIONS(4128), - [anon_sym_PIPE_PIPE] = ACTIONS(4128), - [anon_sym_QMARK_QMARK] = ACTIONS(4130), - [anon_sym_on] = ACTIONS(4128), - [anon_sym_equals] = ACTIONS(4128), - [anon_sym_by] = ACTIONS(4128), - [anon_sym_as] = ACTIONS(4128), - [anon_sym_is] = ACTIONS(4128), - [anon_sym_DASH_GT] = ACTIONS(4128), - [anon_sym_with] = ACTIONS(4128), - [aux_sym_preproc_if_token3] = ACTIONS(4128), - [aux_sym_preproc_else_token1] = ACTIONS(4128), - [aux_sym_preproc_elif_token1] = ACTIONS(4128), + [anon_sym_SEMI] = ACTIONS(3644), + [anon_sym_EQ] = ACTIONS(3642), + [anon_sym_LBRACK] = ACTIONS(3644), + [anon_sym_COLON] = ACTIONS(3644), + [anon_sym_COMMA] = ACTIONS(3644), + [anon_sym_RBRACK] = ACTIONS(3644), + [anon_sym_LPAREN] = ACTIONS(3644), + [anon_sym_RPAREN] = ACTIONS(3644), + [anon_sym_RBRACE] = ACTIONS(3644), + [anon_sym_LT] = ACTIONS(3642), + [anon_sym_GT] = ACTIONS(3642), + [anon_sym_in] = ACTIONS(3642), + [anon_sym_QMARK] = ACTIONS(3642), + [anon_sym_BANG] = ACTIONS(3642), + [anon_sym_PLUS_PLUS] = ACTIONS(3644), + [anon_sym_DASH_DASH] = ACTIONS(3644), + [anon_sym_PLUS] = ACTIONS(3642), + [anon_sym_DASH] = ACTIONS(3642), + [anon_sym_STAR] = ACTIONS(3642), + [anon_sym_SLASH] = ACTIONS(3642), + [anon_sym_PERCENT] = ACTIONS(3642), + [anon_sym_CARET] = ACTIONS(3642), + [anon_sym_PIPE] = ACTIONS(3642), + [anon_sym_AMP] = ACTIONS(3642), + [anon_sym_LT_LT] = ACTIONS(3642), + [anon_sym_GT_GT] = ACTIONS(3642), + [anon_sym_GT_GT_GT] = ACTIONS(3642), + [anon_sym_EQ_EQ] = ACTIONS(3644), + [anon_sym_BANG_EQ] = ACTIONS(3644), + [anon_sym_GT_EQ] = ACTIONS(3644), + [anon_sym_LT_EQ] = ACTIONS(3644), + [anon_sym_DOT] = ACTIONS(3642), + [anon_sym_EQ_GT] = ACTIONS(3644), + [anon_sym_switch] = ACTIONS(3644), + [anon_sym_when] = ACTIONS(3644), + [anon_sym_DOT_DOT] = ACTIONS(3644), + [anon_sym_and] = ACTIONS(3644), + [anon_sym_or] = ACTIONS(3644), + [anon_sym_PLUS_EQ] = ACTIONS(3644), + [anon_sym_DASH_EQ] = ACTIONS(3644), + [anon_sym_STAR_EQ] = ACTIONS(3644), + [anon_sym_SLASH_EQ] = ACTIONS(3644), + [anon_sym_PERCENT_EQ] = ACTIONS(3644), + [anon_sym_AMP_EQ] = ACTIONS(3644), + [anon_sym_CARET_EQ] = ACTIONS(3644), + [anon_sym_PIPE_EQ] = ACTIONS(3644), + [anon_sym_LT_LT_EQ] = ACTIONS(3644), + [anon_sym_GT_GT_EQ] = ACTIONS(3644), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3644), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3644), + [anon_sym_AMP_AMP] = ACTIONS(3644), + [anon_sym_PIPE_PIPE] = ACTIONS(3644), + [anon_sym_QMARK_QMARK] = ACTIONS(3642), + [anon_sym_into] = ACTIONS(3644), + [anon_sym_on] = ACTIONS(3644), + [anon_sym_equals] = ACTIONS(3644), + [anon_sym_by] = ACTIONS(3644), + [anon_sym_as] = ACTIONS(3644), + [anon_sym_is] = ACTIONS(3644), + [anon_sym_DASH_GT] = ACTIONS(3644), + [anon_sym_with] = ACTIONS(3644), + [aux_sym_preproc_if_token3] = ACTIONS(3644), + [aux_sym_preproc_else_token1] = ACTIONS(3644), + [aux_sym_preproc_elif_token1] = ACTIONS(3644), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -439667,80 +439289,80 @@ 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(3619), - [anon_sym_alias] = ACTIONS(3619), - [anon_sym_global] = ACTIONS(3619), - [anon_sym_LBRACK] = ACTIONS(3616), - [anon_sym_COLON] = ACTIONS(3619), - [anon_sym_COMMA] = ACTIONS(3616), - [anon_sym_LPAREN] = ACTIONS(3616), - [anon_sym_LBRACE] = ACTIONS(3616), - [anon_sym_file] = ACTIONS(3619), - [anon_sym_LT] = ACTIONS(3619), - [anon_sym_GT] = ACTIONS(3619), - [anon_sym_where] = ACTIONS(3619), - [anon_sym_QMARK] = ACTIONS(3619), - [anon_sym_notnull] = ACTIONS(3619), - [anon_sym_unmanaged] = ACTIONS(3619), - [anon_sym_BANG] = ACTIONS(3619), - [anon_sym_PLUS_PLUS] = ACTIONS(3616), - [anon_sym_DASH_DASH] = ACTIONS(3616), - [anon_sym_PLUS] = ACTIONS(3619), - [anon_sym_DASH] = ACTIONS(3619), - [anon_sym_STAR] = ACTIONS(3616), - [anon_sym_SLASH] = ACTIONS(3619), - [anon_sym_PERCENT] = ACTIONS(3616), - [anon_sym_CARET] = ACTIONS(3616), - [anon_sym_PIPE] = ACTIONS(3619), - [anon_sym_AMP] = ACTIONS(3619), - [anon_sym_LT_LT] = ACTIONS(3616), - [anon_sym_GT_GT] = ACTIONS(3619), - [anon_sym_GT_GT_GT] = ACTIONS(3616), - [anon_sym_EQ_EQ] = ACTIONS(3616), - [anon_sym_BANG_EQ] = ACTIONS(3616), - [anon_sym_GT_EQ] = ACTIONS(3616), - [anon_sym_LT_EQ] = ACTIONS(3616), - [anon_sym_DOT] = ACTIONS(3619), - [anon_sym_scoped] = ACTIONS(3619), - [anon_sym_COLON_COLON] = ACTIONS(3445), - [anon_sym_var] = ACTIONS(3619), - [anon_sym_yield] = ACTIONS(3619), - [anon_sym_switch] = ACTIONS(3619), - [anon_sym_when] = ACTIONS(3619), - [sym_discard] = ACTIONS(3619), - [anon_sym_DOT_DOT] = ACTIONS(3616), - [anon_sym_and] = ACTIONS(3619), - [anon_sym_or] = ACTIONS(3619), - [anon_sym_AMP_AMP] = ACTIONS(3616), - [anon_sym_PIPE_PIPE] = ACTIONS(3616), - [anon_sym_QMARK_QMARK] = ACTIONS(3616), - [anon_sym_from] = ACTIONS(3619), - [anon_sym_into] = ACTIONS(3619), - [anon_sym_join] = ACTIONS(3619), - [anon_sym_on] = ACTIONS(3619), - [anon_sym_equals] = ACTIONS(3619), - [anon_sym_let] = ACTIONS(3619), - [anon_sym_orderby] = ACTIONS(3619), - [anon_sym_ascending] = ACTIONS(3619), - [anon_sym_descending] = ACTIONS(3619), - [anon_sym_group] = ACTIONS(3619), - [anon_sym_by] = ACTIONS(3619), - [anon_sym_select] = ACTIONS(3619), - [anon_sym_as] = ACTIONS(3619), - [anon_sym_is] = ACTIONS(3619), - [anon_sym_DASH_GT] = ACTIONS(3616), - [anon_sym_with] = ACTIONS(3619), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_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(3616), + [anon_sym_SEMI] = ACTIONS(3657), + [anon_sym_EQ] = ACTIONS(3655), + [anon_sym_LBRACK] = ACTIONS(3657), + [anon_sym_COLON] = ACTIONS(3657), + [anon_sym_COMMA] = ACTIONS(3657), + [anon_sym_RBRACK] = ACTIONS(3657), + [anon_sym_LPAREN] = ACTIONS(3657), + [anon_sym_RPAREN] = ACTIONS(3657), + [anon_sym_RBRACE] = ACTIONS(3657), + [anon_sym_LT] = ACTIONS(3655), + [anon_sym_GT] = ACTIONS(3655), + [anon_sym_in] = ACTIONS(3655), + [anon_sym_QMARK] = ACTIONS(3655), + [anon_sym_BANG] = ACTIONS(3655), + [anon_sym_PLUS_PLUS] = ACTIONS(3657), + [anon_sym_DASH_DASH] = ACTIONS(3657), + [anon_sym_PLUS] = ACTIONS(3655), + [anon_sym_DASH] = ACTIONS(3655), + [anon_sym_STAR] = ACTIONS(3655), + [anon_sym_SLASH] = ACTIONS(3655), + [anon_sym_PERCENT] = ACTIONS(3655), + [anon_sym_CARET] = ACTIONS(3655), + [anon_sym_PIPE] = ACTIONS(3655), + [anon_sym_AMP] = ACTIONS(3655), + [anon_sym_LT_LT] = ACTIONS(3655), + [anon_sym_GT_GT] = ACTIONS(3655), + [anon_sym_GT_GT_GT] = ACTIONS(3655), + [anon_sym_EQ_EQ] = ACTIONS(3657), + [anon_sym_BANG_EQ] = ACTIONS(3657), + [anon_sym_GT_EQ] = ACTIONS(3657), + [anon_sym_LT_EQ] = ACTIONS(3657), + [anon_sym_DOT] = ACTIONS(3655), + [anon_sym_EQ_GT] = ACTIONS(3657), + [anon_sym_switch] = ACTIONS(3657), + [anon_sym_when] = ACTIONS(3657), + [anon_sym_DOT_DOT] = ACTIONS(3657), + [anon_sym_and] = ACTIONS(3657), + [anon_sym_or] = ACTIONS(3657), + [anon_sym_PLUS_EQ] = ACTIONS(3657), + [anon_sym_DASH_EQ] = ACTIONS(3657), + [anon_sym_STAR_EQ] = ACTIONS(3657), + [anon_sym_SLASH_EQ] = ACTIONS(3657), + [anon_sym_PERCENT_EQ] = ACTIONS(3657), + [anon_sym_AMP_EQ] = ACTIONS(3657), + [anon_sym_CARET_EQ] = ACTIONS(3657), + [anon_sym_PIPE_EQ] = ACTIONS(3657), + [anon_sym_LT_LT_EQ] = ACTIONS(3657), + [anon_sym_GT_GT_EQ] = ACTIONS(3657), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3657), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3657), + [anon_sym_AMP_AMP] = ACTIONS(3657), + [anon_sym_PIPE_PIPE] = ACTIONS(3657), + [anon_sym_QMARK_QMARK] = ACTIONS(3655), + [anon_sym_into] = ACTIONS(3657), + [anon_sym_on] = ACTIONS(3657), + [anon_sym_equals] = ACTIONS(3657), + [anon_sym_by] = ACTIONS(3657), + [anon_sym_as] = ACTIONS(3657), + [anon_sym_is] = ACTIONS(3657), + [anon_sym_DASH_GT] = ACTIONS(3657), + [anon_sym_with] = ACTIONS(3657), + [aux_sym_preproc_if_token3] = ACTIONS(3657), + [aux_sym_preproc_else_token1] = ACTIONS(3657), + [aux_sym_preproc_elif_token1] = ACTIONS(3657), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), }, [2630] = { [sym_preproc_region] = STATE(2630), @@ -439752,70 +439374,70 @@ 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(4287), - [anon_sym_extern] = ACTIONS(4287), - [anon_sym_alias] = ACTIONS(4287), - [anon_sym_global] = ACTIONS(4287), - [anon_sym_using] = ACTIONS(4287), - [anon_sym_unsafe] = ACTIONS(4287), - [anon_sym_EQ] = ACTIONS(4289), - [anon_sym_static] = ACTIONS(4287), - [anon_sym_LBRACK] = ACTIONS(4291), - [anon_sym_LPAREN] = ACTIONS(4291), - [anon_sym_event] = ACTIONS(4287), - [anon_sym_namespace] = ACTIONS(4287), - [anon_sym_class] = ACTIONS(4287), - [anon_sym_ref] = ACTIONS(4287), - [anon_sym_struct] = ACTIONS(4287), - [anon_sym_enum] = ACTIONS(4287), - [anon_sym_RBRACE] = ACTIONS(4291), - [anon_sym_interface] = ACTIONS(4287), - [anon_sym_delegate] = ACTIONS(4287), - [anon_sym_record] = ACTIONS(4287), - [anon_sym_abstract] = ACTIONS(4287), - [anon_sym_async] = ACTIONS(4287), - [anon_sym_const] = ACTIONS(4287), - [anon_sym_file] = ACTIONS(4287), - [anon_sym_fixed] = ACTIONS(4287), - [anon_sym_internal] = ACTIONS(4287), - [anon_sym_new] = ACTIONS(4287), - [anon_sym_override] = ACTIONS(4287), - [anon_sym_partial] = ACTIONS(4287), - [anon_sym_private] = ACTIONS(4287), - [anon_sym_protected] = ACTIONS(4287), - [anon_sym_public] = ACTIONS(4287), - [anon_sym_readonly] = ACTIONS(4287), - [anon_sym_required] = ACTIONS(4287), - [anon_sym_sealed] = ACTIONS(4287), - [anon_sym_virtual] = ACTIONS(4287), - [anon_sym_volatile] = ACTIONS(4287), - [anon_sym_where] = ACTIONS(4287), - [anon_sym_notnull] = ACTIONS(4287), - [anon_sym_unmanaged] = ACTIONS(4287), - [anon_sym_TILDE] = ACTIONS(4291), - [anon_sym_implicit] = ACTIONS(4287), - [anon_sym_explicit] = ACTIONS(4287), - [anon_sym_scoped] = ACTIONS(4287), - [anon_sym_var] = ACTIONS(4287), - [sym_predefined_type] = ACTIONS(4287), - [anon_sym_yield] = ACTIONS(4287), - [anon_sym_when] = ACTIONS(4287), - [anon_sym_from] = ACTIONS(4287), - [anon_sym_into] = ACTIONS(4287), - [anon_sym_join] = ACTIONS(4287), - [anon_sym_on] = ACTIONS(4287), - [anon_sym_equals] = ACTIONS(4287), - [anon_sym_let] = ACTIONS(4287), - [anon_sym_orderby] = ACTIONS(4287), - [anon_sym_ascending] = ACTIONS(4287), - [anon_sym_descending] = ACTIONS(4287), - [anon_sym_group] = ACTIONS(4287), - [anon_sym_by] = ACTIONS(4287), - [anon_sym_select] = ACTIONS(4287), - [aux_sym_preproc_if_token1] = 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(4144), + [anon_sym_EQ] = ACTIONS(4146), + [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(4146), + [anon_sym_GT] = ACTIONS(4146), + [anon_sym_in] = ACTIONS(4144), + [anon_sym_QMARK] = ACTIONS(4146), + [anon_sym_BANG] = ACTIONS(4146), + [anon_sym_PLUS_PLUS] = ACTIONS(4144), + [anon_sym_DASH_DASH] = ACTIONS(4144), + [anon_sym_PLUS] = ACTIONS(4146), + [anon_sym_DASH] = ACTIONS(4146), + [anon_sym_STAR] = ACTIONS(4146), + [anon_sym_SLASH] = ACTIONS(4146), + [anon_sym_PERCENT] = ACTIONS(4146), + [anon_sym_CARET] = ACTIONS(4146), + [anon_sym_PIPE] = ACTIONS(4146), + [anon_sym_AMP] = ACTIONS(4146), + [anon_sym_LT_LT] = ACTIONS(4146), + [anon_sym_GT_GT] = ACTIONS(4146), + [anon_sym_GT_GT_GT] = ACTIONS(4146), + [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(4146), + [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_PLUS_EQ] = ACTIONS(4144), + [anon_sym_DASH_EQ] = ACTIONS(4144), + [anon_sym_STAR_EQ] = ACTIONS(4144), + [anon_sym_SLASH_EQ] = ACTIONS(4144), + [anon_sym_PERCENT_EQ] = ACTIONS(4144), + [anon_sym_AMP_EQ] = ACTIONS(4144), + [anon_sym_CARET_EQ] = ACTIONS(4144), + [anon_sym_PIPE_EQ] = ACTIONS(4144), + [anon_sym_LT_LT_EQ] = ACTIONS(4144), + [anon_sym_GT_GT_EQ] = ACTIONS(4144), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(4144), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(4144), + [anon_sym_AMP_AMP] = ACTIONS(4144), + [anon_sym_PIPE_PIPE] = ACTIONS(4144), + [anon_sym_QMARK_QMARK] = ACTIONS(4146), + [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), @@ -439828,10 +439450,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2631] = { - [sym__variable_designation] = STATE(3785), - [sym_parenthesized_variable_designation] = STATE(3779), - [sym_identifier] = STATE(3781), - [sym__reserved_identifier] = STATE(2361), [sym_preproc_region] = STATE(2631), [sym_preproc_endregion] = STATE(2631), [sym_preproc_line] = STATE(2631), @@ -439841,66 +439459,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(4058), - [anon_sym_alias] = ACTIONS(4060), - [anon_sym_global] = ACTIONS(4060), - [anon_sym_LBRACK] = ACTIONS(3905), - [anon_sym_COMMA] = ACTIONS(3905), - [anon_sym_LPAREN] = ACTIONS(3905), - [anon_sym_file] = ACTIONS(4060), - [anon_sym_LT] = ACTIONS(3907), - [anon_sym_GT] = ACTIONS(3907), - [anon_sym_where] = ACTIONS(3907), - [anon_sym_QMARK] = ACTIONS(3907), - [anon_sym_notnull] = ACTIONS(4060), - [anon_sym_unmanaged] = ACTIONS(4060), - [anon_sym_BANG] = ACTIONS(3907), - [anon_sym_PLUS_PLUS] = ACTIONS(3905), - [anon_sym_DASH_DASH] = ACTIONS(3905), - [anon_sym_PLUS] = ACTIONS(3907), - [anon_sym_DASH] = ACTIONS(3907), - [anon_sym_STAR] = ACTIONS(3905), - [anon_sym_SLASH] = ACTIONS(3907), - [anon_sym_PERCENT] = ACTIONS(3905), - [anon_sym_CARET] = ACTIONS(3905), - [anon_sym_PIPE] = ACTIONS(3907), - [anon_sym_AMP] = ACTIONS(3907), - [anon_sym_LT_LT] = ACTIONS(3905), - [anon_sym_GT_GT] = ACTIONS(3907), - [anon_sym_GT_GT_GT] = ACTIONS(3905), - [anon_sym_EQ_EQ] = ACTIONS(3905), - [anon_sym_BANG_EQ] = ACTIONS(3905), - [anon_sym_GT_EQ] = ACTIONS(3905), - [anon_sym_LT_EQ] = ACTIONS(3905), - [anon_sym_DOT] = ACTIONS(3907), - [anon_sym_scoped] = ACTIONS(4060), - [anon_sym_var] = ACTIONS(4060), - [anon_sym_yield] = ACTIONS(4060), - [anon_sym_switch] = ACTIONS(3907), - [anon_sym_when] = ACTIONS(4060), - [sym_discard] = ACTIONS(4207), - [anon_sym_DOT_DOT] = ACTIONS(3905), - [anon_sym_and] = ACTIONS(3907), - [anon_sym_or] = ACTIONS(3907), - [anon_sym_AMP_AMP] = ACTIONS(3905), - [anon_sym_PIPE_PIPE] = ACTIONS(3905), - [anon_sym_QMARK_QMARK] = ACTIONS(3905), - [anon_sym_from] = ACTIONS(3907), - [anon_sym_into] = ACTIONS(3907), - [anon_sym_join] = ACTIONS(3907), - [anon_sym_on] = ACTIONS(4060), - [anon_sym_equals] = ACTIONS(4060), - [anon_sym_let] = ACTIONS(3907), - [anon_sym_orderby] = ACTIONS(3907), - [anon_sym_ascending] = ACTIONS(3907), - [anon_sym_descending] = ACTIONS(3907), - [anon_sym_group] = ACTIONS(3907), - [anon_sym_by] = ACTIONS(4060), - [anon_sym_select] = ACTIONS(3907), - [anon_sym_as] = ACTIONS(3907), - [anon_sym_is] = ACTIONS(3907), - [anon_sym_DASH_GT] = ACTIONS(3905), - [anon_sym_with] = ACTIONS(3907), + [anon_sym_SEMI] = ACTIONS(3661), + [anon_sym_EQ] = ACTIONS(3659), + [anon_sym_LBRACK] = ACTIONS(3661), + [anon_sym_COLON] = ACTIONS(3661), + [anon_sym_COMMA] = ACTIONS(3661), + [anon_sym_RBRACK] = ACTIONS(3661), + [anon_sym_LPAREN] = ACTIONS(3661), + [anon_sym_RPAREN] = ACTIONS(3661), + [anon_sym_RBRACE] = ACTIONS(3661), + [anon_sym_LT] = ACTIONS(3659), + [anon_sym_GT] = ACTIONS(3659), + [anon_sym_in] = ACTIONS(3659), + [anon_sym_QMARK] = ACTIONS(3659), + [anon_sym_BANG] = ACTIONS(3659), + [anon_sym_PLUS_PLUS] = ACTIONS(3661), + [anon_sym_DASH_DASH] = ACTIONS(3661), + [anon_sym_PLUS] = ACTIONS(3659), + [anon_sym_DASH] = ACTIONS(3659), + [anon_sym_STAR] = ACTIONS(3659), + [anon_sym_SLASH] = ACTIONS(3659), + [anon_sym_PERCENT] = ACTIONS(3659), + [anon_sym_CARET] = ACTIONS(3659), + [anon_sym_PIPE] = ACTIONS(3659), + [anon_sym_AMP] = ACTIONS(3659), + [anon_sym_LT_LT] = ACTIONS(3659), + [anon_sym_GT_GT] = ACTIONS(3659), + [anon_sym_GT_GT_GT] = ACTIONS(3659), + [anon_sym_EQ_EQ] = ACTIONS(3661), + [anon_sym_BANG_EQ] = ACTIONS(3661), + [anon_sym_GT_EQ] = ACTIONS(3661), + [anon_sym_LT_EQ] = ACTIONS(3661), + [anon_sym_DOT] = ACTIONS(3659), + [anon_sym_EQ_GT] = ACTIONS(3661), + [anon_sym_switch] = ACTIONS(3661), + [anon_sym_when] = ACTIONS(3661), + [anon_sym_DOT_DOT] = ACTIONS(3661), + [anon_sym_and] = ACTIONS(3661), + [anon_sym_or] = ACTIONS(3661), + [anon_sym_PLUS_EQ] = ACTIONS(3661), + [anon_sym_DASH_EQ] = ACTIONS(3661), + [anon_sym_STAR_EQ] = ACTIONS(3661), + [anon_sym_SLASH_EQ] = ACTIONS(3661), + [anon_sym_PERCENT_EQ] = ACTIONS(3661), + [anon_sym_AMP_EQ] = ACTIONS(3661), + [anon_sym_CARET_EQ] = ACTIONS(3661), + [anon_sym_PIPE_EQ] = ACTIONS(3661), + [anon_sym_LT_LT_EQ] = ACTIONS(3661), + [anon_sym_GT_GT_EQ] = ACTIONS(3661), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3661), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3661), + [anon_sym_AMP_AMP] = ACTIONS(3661), + [anon_sym_PIPE_PIPE] = ACTIONS(3661), + [anon_sym_QMARK_QMARK] = ACTIONS(3659), + [anon_sym_into] = ACTIONS(3661), + [anon_sym_on] = ACTIONS(3661), + [anon_sym_equals] = ACTIONS(3661), + [anon_sym_by] = ACTIONS(3661), + [anon_sym_as] = ACTIONS(3661), + [anon_sym_is] = ACTIONS(3661), + [anon_sym_DASH_GT] = ACTIONS(3661), + [anon_sym_with] = ACTIONS(3661), + [aux_sym_preproc_if_token3] = ACTIONS(3661), + [aux_sym_preproc_else_token1] = ACTIONS(3661), + [aux_sym_preproc_elif_token1] = ACTIONS(3661), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -439913,10 +439535,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2632] = { - [sym__variable_designation] = STATE(3790), - [sym_parenthesized_variable_designation] = STATE(3779), - [sym_identifier] = STATE(3781), - [sym__reserved_identifier] = STATE(2361), [sym_preproc_region] = STATE(2632), [sym_preproc_endregion] = STATE(2632), [sym_preproc_line] = STATE(2632), @@ -439926,66 +439544,70 @@ 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(4058), - [anon_sym_alias] = ACTIONS(4060), - [anon_sym_global] = ACTIONS(4060), - [anon_sym_LBRACK] = ACTIONS(3913), - [anon_sym_COMMA] = ACTIONS(3913), - [anon_sym_LPAREN] = ACTIONS(3913), - [anon_sym_file] = ACTIONS(4060), - [anon_sym_LT] = ACTIONS(3915), - [anon_sym_GT] = ACTIONS(3915), - [anon_sym_where] = ACTIONS(3915), - [anon_sym_QMARK] = ACTIONS(3915), - [anon_sym_notnull] = ACTIONS(4060), - [anon_sym_unmanaged] = ACTIONS(4060), - [anon_sym_BANG] = ACTIONS(3915), - [anon_sym_PLUS_PLUS] = ACTIONS(3913), - [anon_sym_DASH_DASH] = ACTIONS(3913), - [anon_sym_PLUS] = ACTIONS(3915), - [anon_sym_DASH] = ACTIONS(3915), - [anon_sym_STAR] = ACTIONS(3913), - [anon_sym_SLASH] = ACTIONS(3915), - [anon_sym_PERCENT] = ACTIONS(3913), - [anon_sym_CARET] = ACTIONS(3913), - [anon_sym_PIPE] = ACTIONS(3915), - [anon_sym_AMP] = ACTIONS(3915), - [anon_sym_LT_LT] = ACTIONS(3913), - [anon_sym_GT_GT] = ACTIONS(3915), - [anon_sym_GT_GT_GT] = ACTIONS(3913), - [anon_sym_EQ_EQ] = ACTIONS(3913), - [anon_sym_BANG_EQ] = ACTIONS(3913), - [anon_sym_GT_EQ] = ACTIONS(3913), - [anon_sym_LT_EQ] = ACTIONS(3913), - [anon_sym_DOT] = ACTIONS(3915), - [anon_sym_scoped] = ACTIONS(4060), - [anon_sym_var] = ACTIONS(4060), - [anon_sym_yield] = ACTIONS(4060), - [anon_sym_switch] = ACTIONS(3915), - [anon_sym_when] = ACTIONS(4060), - [sym_discard] = ACTIONS(4207), - [anon_sym_DOT_DOT] = ACTIONS(3913), - [anon_sym_and] = ACTIONS(3915), - [anon_sym_or] = ACTIONS(3915), - [anon_sym_AMP_AMP] = ACTIONS(3913), - [anon_sym_PIPE_PIPE] = ACTIONS(3913), - [anon_sym_QMARK_QMARK] = ACTIONS(3913), - [anon_sym_from] = ACTIONS(3915), - [anon_sym_into] = ACTIONS(3915), - [anon_sym_join] = ACTIONS(3915), - [anon_sym_on] = ACTIONS(4060), - [anon_sym_equals] = ACTIONS(4060), - [anon_sym_let] = ACTIONS(3915), - [anon_sym_orderby] = ACTIONS(3915), - [anon_sym_ascending] = ACTIONS(3915), - [anon_sym_descending] = ACTIONS(3915), - [anon_sym_group] = ACTIONS(3915), - [anon_sym_by] = ACTIONS(4060), - [anon_sym_select] = ACTIONS(3915), - [anon_sym_as] = ACTIONS(3915), - [anon_sym_is] = ACTIONS(3915), - [anon_sym_DASH_GT] = ACTIONS(3913), - [anon_sym_with] = ACTIONS(3915), + [anon_sym_SEMI] = ACTIONS(3665), + [anon_sym_EQ] = ACTIONS(3663), + [anon_sym_LBRACK] = ACTIONS(3665), + [anon_sym_COLON] = ACTIONS(3665), + [anon_sym_COMMA] = ACTIONS(3665), + [anon_sym_RBRACK] = ACTIONS(3665), + [anon_sym_LPAREN] = ACTIONS(3665), + [anon_sym_RPAREN] = ACTIONS(3665), + [anon_sym_RBRACE] = ACTIONS(3665), + [anon_sym_LT] = ACTIONS(3663), + [anon_sym_GT] = ACTIONS(3663), + [anon_sym_in] = ACTIONS(3663), + [anon_sym_QMARK] = ACTIONS(3663), + [anon_sym_BANG] = ACTIONS(3663), + [anon_sym_PLUS_PLUS] = ACTIONS(3665), + [anon_sym_DASH_DASH] = ACTIONS(3665), + [anon_sym_PLUS] = ACTIONS(3663), + [anon_sym_DASH] = ACTIONS(3663), + [anon_sym_STAR] = ACTIONS(3663), + [anon_sym_SLASH] = ACTIONS(3663), + [anon_sym_PERCENT] = ACTIONS(3663), + [anon_sym_CARET] = ACTIONS(3663), + [anon_sym_PIPE] = ACTIONS(3663), + [anon_sym_AMP] = ACTIONS(3663), + [anon_sym_LT_LT] = ACTIONS(3663), + [anon_sym_GT_GT] = ACTIONS(3663), + [anon_sym_GT_GT_GT] = ACTIONS(3663), + [anon_sym_EQ_EQ] = ACTIONS(3665), + [anon_sym_BANG_EQ] = ACTIONS(3665), + [anon_sym_GT_EQ] = ACTIONS(3665), + [anon_sym_LT_EQ] = ACTIONS(3665), + [anon_sym_DOT] = ACTIONS(3663), + [anon_sym_EQ_GT] = ACTIONS(3665), + [anon_sym_switch] = ACTIONS(3665), + [anon_sym_when] = ACTIONS(3665), + [anon_sym_DOT_DOT] = ACTIONS(3665), + [anon_sym_and] = ACTIONS(3665), + [anon_sym_or] = ACTIONS(3665), + [anon_sym_PLUS_EQ] = ACTIONS(3665), + [anon_sym_DASH_EQ] = ACTIONS(3665), + [anon_sym_STAR_EQ] = ACTIONS(3665), + [anon_sym_SLASH_EQ] = ACTIONS(3665), + [anon_sym_PERCENT_EQ] = ACTIONS(3665), + [anon_sym_AMP_EQ] = ACTIONS(3665), + [anon_sym_CARET_EQ] = ACTIONS(3665), + [anon_sym_PIPE_EQ] = ACTIONS(3665), + [anon_sym_LT_LT_EQ] = ACTIONS(3665), + [anon_sym_GT_GT_EQ] = ACTIONS(3665), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3665), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3665), + [anon_sym_AMP_AMP] = ACTIONS(3665), + [anon_sym_PIPE_PIPE] = ACTIONS(3665), + [anon_sym_QMARK_QMARK] = ACTIONS(3663), + [anon_sym_into] = ACTIONS(3665), + [anon_sym_on] = ACTIONS(3665), + [anon_sym_equals] = ACTIONS(3665), + [anon_sym_by] = ACTIONS(3665), + [anon_sym_as] = ACTIONS(3665), + [anon_sym_is] = ACTIONS(3665), + [anon_sym_DASH_GT] = ACTIONS(3665), + [anon_sym_with] = ACTIONS(3665), + [aux_sym_preproc_if_token3] = ACTIONS(3665), + [aux_sym_preproc_else_token1] = ACTIONS(3665), + [aux_sym_preproc_elif_token1] = ACTIONS(3665), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -439998,10 +439620,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2633] = { - [sym__variable_designation] = STATE(3792), - [sym_parenthesized_variable_designation] = STATE(3779), - [sym_identifier] = STATE(3781), - [sym__reserved_identifier] = STATE(2361), [sym_preproc_region] = STATE(2633), [sym_preproc_endregion] = STATE(2633), [sym_preproc_line] = STATE(2633), @@ -440011,66 +439629,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(4058), - [anon_sym_alias] = ACTIONS(4060), - [anon_sym_global] = ACTIONS(4060), - [anon_sym_LBRACK] = ACTIONS(3957), - [anon_sym_COMMA] = ACTIONS(3957), - [anon_sym_LPAREN] = ACTIONS(3957), - [anon_sym_file] = ACTIONS(4060), - [anon_sym_LT] = ACTIONS(3959), - [anon_sym_GT] = ACTIONS(3959), - [anon_sym_where] = ACTIONS(3959), - [anon_sym_QMARK] = ACTIONS(3959), - [anon_sym_notnull] = ACTIONS(4060), - [anon_sym_unmanaged] = ACTIONS(4060), - [anon_sym_BANG] = ACTIONS(3959), - [anon_sym_PLUS_PLUS] = ACTIONS(3957), - [anon_sym_DASH_DASH] = ACTIONS(3957), - [anon_sym_PLUS] = ACTIONS(3959), - [anon_sym_DASH] = ACTIONS(3959), - [anon_sym_STAR] = ACTIONS(3957), - [anon_sym_SLASH] = ACTIONS(3959), - [anon_sym_PERCENT] = ACTIONS(3957), - [anon_sym_CARET] = ACTIONS(3957), - [anon_sym_PIPE] = ACTIONS(3959), - [anon_sym_AMP] = ACTIONS(3959), - [anon_sym_LT_LT] = ACTIONS(3957), - [anon_sym_GT_GT] = ACTIONS(3959), - [anon_sym_GT_GT_GT] = ACTIONS(3957), - [anon_sym_EQ_EQ] = ACTIONS(3957), - [anon_sym_BANG_EQ] = ACTIONS(3957), - [anon_sym_GT_EQ] = ACTIONS(3957), - [anon_sym_LT_EQ] = ACTIONS(3957), - [anon_sym_DOT] = ACTIONS(3959), - [anon_sym_scoped] = ACTIONS(4060), - [anon_sym_var] = ACTIONS(4060), - [anon_sym_yield] = ACTIONS(4060), - [anon_sym_switch] = ACTIONS(3959), - [anon_sym_when] = ACTIONS(4060), - [sym_discard] = ACTIONS(4207), - [anon_sym_DOT_DOT] = ACTIONS(3957), - [anon_sym_and] = ACTIONS(3959), - [anon_sym_or] = ACTIONS(3959), - [anon_sym_AMP_AMP] = ACTIONS(3957), - [anon_sym_PIPE_PIPE] = ACTIONS(3957), - [anon_sym_QMARK_QMARK] = ACTIONS(3957), - [anon_sym_from] = ACTIONS(3959), - [anon_sym_into] = ACTIONS(3959), - [anon_sym_join] = ACTIONS(3959), - [anon_sym_on] = ACTIONS(4060), - [anon_sym_equals] = ACTIONS(4060), - [anon_sym_let] = ACTIONS(3959), - [anon_sym_orderby] = ACTIONS(3959), - [anon_sym_ascending] = ACTIONS(3959), - [anon_sym_descending] = ACTIONS(3959), - [anon_sym_group] = ACTIONS(3959), - [anon_sym_by] = ACTIONS(4060), - [anon_sym_select] = ACTIONS(3959), - [anon_sym_as] = ACTIONS(3959), - [anon_sym_is] = ACTIONS(3959), - [anon_sym_DASH_GT] = ACTIONS(3957), - [anon_sym_with] = ACTIONS(3959), + [sym__identifier_token] = ACTIONS(4269), + [anon_sym_extern] = ACTIONS(4269), + [anon_sym_alias] = ACTIONS(4269), + [anon_sym_global] = ACTIONS(4269), + [anon_sym_using] = ACTIONS(4269), + [anon_sym_unsafe] = ACTIONS(4269), + [anon_sym_EQ] = ACTIONS(4271), + [anon_sym_static] = ACTIONS(4269), + [anon_sym_LBRACK] = ACTIONS(4273), + [anon_sym_LPAREN] = ACTIONS(4273), + [anon_sym_event] = ACTIONS(4269), + [anon_sym_namespace] = ACTIONS(4269), + [anon_sym_class] = ACTIONS(4269), + [anon_sym_ref] = ACTIONS(4269), + [anon_sym_struct] = ACTIONS(4269), + [anon_sym_enum] = ACTIONS(4269), + [anon_sym_RBRACE] = ACTIONS(4273), + [anon_sym_interface] = ACTIONS(4269), + [anon_sym_delegate] = ACTIONS(4269), + [anon_sym_record] = ACTIONS(4269), + [anon_sym_abstract] = ACTIONS(4269), + [anon_sym_async] = ACTIONS(4269), + [anon_sym_const] = ACTIONS(4269), + [anon_sym_file] = ACTIONS(4269), + [anon_sym_fixed] = ACTIONS(4269), + [anon_sym_internal] = ACTIONS(4269), + [anon_sym_new] = ACTIONS(4269), + [anon_sym_override] = ACTIONS(4269), + [anon_sym_partial] = ACTIONS(4269), + [anon_sym_private] = ACTIONS(4269), + [anon_sym_protected] = ACTIONS(4269), + [anon_sym_public] = ACTIONS(4269), + [anon_sym_readonly] = ACTIONS(4269), + [anon_sym_required] = ACTIONS(4269), + [anon_sym_sealed] = ACTIONS(4269), + [anon_sym_virtual] = ACTIONS(4269), + [anon_sym_volatile] = ACTIONS(4269), + [anon_sym_where] = ACTIONS(4269), + [anon_sym_notnull] = ACTIONS(4269), + [anon_sym_unmanaged] = ACTIONS(4269), + [anon_sym_TILDE] = ACTIONS(4273), + [anon_sym_implicit] = ACTIONS(4269), + [anon_sym_explicit] = ACTIONS(4269), + [anon_sym_scoped] = ACTIONS(4269), + [anon_sym_var] = ACTIONS(4269), + [sym_predefined_type] = ACTIONS(4269), + [anon_sym_yield] = ACTIONS(4269), + [anon_sym_when] = ACTIONS(4269), + [anon_sym_from] = ACTIONS(4269), + [anon_sym_into] = ACTIONS(4269), + [anon_sym_join] = ACTIONS(4269), + [anon_sym_on] = ACTIONS(4269), + [anon_sym_equals] = ACTIONS(4269), + [anon_sym_let] = ACTIONS(4269), + [anon_sym_orderby] = ACTIONS(4269), + [anon_sym_ascending] = ACTIONS(4269), + [anon_sym_descending] = ACTIONS(4269), + [anon_sym_group] = ACTIONS(4269), + [anon_sym_by] = ACTIONS(4269), + [anon_sym_select] = ACTIONS(4269), + [aux_sym_preproc_if_token1] = ACTIONS(4273), + [aux_sym_preproc_if_token3] = ACTIONS(4273), + [aux_sym_preproc_else_token1] = ACTIONS(4273), + [aux_sym_preproc_elif_token1] = ACTIONS(4273), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -440083,10 +439705,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2634] = { - [sym__variable_designation] = STATE(3796), - [sym_parenthesized_variable_designation] = STATE(3779), - [sym_identifier] = STATE(3781), - [sym__reserved_identifier] = STATE(2361), [sym_preproc_region] = STATE(2634), [sym_preproc_endregion] = STATE(2634), [sym_preproc_line] = STATE(2634), @@ -440096,66 +439714,70 @@ 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(4058), - [anon_sym_alias] = ACTIONS(4060), - [anon_sym_global] = ACTIONS(4060), - [anon_sym_LBRACK] = ACTIONS(3961), - [anon_sym_COMMA] = ACTIONS(3961), - [anon_sym_LPAREN] = ACTIONS(3961), - [anon_sym_file] = ACTIONS(4060), - [anon_sym_LT] = ACTIONS(3963), - [anon_sym_GT] = ACTIONS(3963), - [anon_sym_where] = ACTIONS(3963), - [anon_sym_QMARK] = ACTIONS(3963), - [anon_sym_notnull] = ACTIONS(4060), - [anon_sym_unmanaged] = ACTIONS(4060), - [anon_sym_BANG] = ACTIONS(3963), - [anon_sym_PLUS_PLUS] = ACTIONS(3961), - [anon_sym_DASH_DASH] = ACTIONS(3961), - [anon_sym_PLUS] = ACTIONS(3963), - [anon_sym_DASH] = ACTIONS(3963), - [anon_sym_STAR] = ACTIONS(3961), - [anon_sym_SLASH] = ACTIONS(3963), - [anon_sym_PERCENT] = ACTIONS(3961), - [anon_sym_CARET] = ACTIONS(3961), - [anon_sym_PIPE] = ACTIONS(3963), - [anon_sym_AMP] = ACTIONS(3963), - [anon_sym_LT_LT] = ACTIONS(3961), - [anon_sym_GT_GT] = ACTIONS(3963), - [anon_sym_GT_GT_GT] = ACTIONS(3961), - [anon_sym_EQ_EQ] = ACTIONS(3961), - [anon_sym_BANG_EQ] = ACTIONS(3961), - [anon_sym_GT_EQ] = ACTIONS(3961), - [anon_sym_LT_EQ] = ACTIONS(3961), - [anon_sym_DOT] = ACTIONS(3963), - [anon_sym_scoped] = ACTIONS(4060), - [anon_sym_var] = ACTIONS(4060), - [anon_sym_yield] = ACTIONS(4060), - [anon_sym_switch] = ACTIONS(3963), - [anon_sym_when] = ACTIONS(4060), - [sym_discard] = ACTIONS(4207), - [anon_sym_DOT_DOT] = ACTIONS(3961), - [anon_sym_and] = ACTIONS(3963), - [anon_sym_or] = ACTIONS(3963), - [anon_sym_AMP_AMP] = ACTIONS(3961), - [anon_sym_PIPE_PIPE] = ACTIONS(3961), - [anon_sym_QMARK_QMARK] = ACTIONS(3961), - [anon_sym_from] = ACTIONS(3963), - [anon_sym_into] = ACTIONS(3963), - [anon_sym_join] = ACTIONS(3963), - [anon_sym_on] = ACTIONS(4060), - [anon_sym_equals] = ACTIONS(4060), - [anon_sym_let] = ACTIONS(3963), - [anon_sym_orderby] = ACTIONS(3963), - [anon_sym_ascending] = ACTIONS(3963), - [anon_sym_descending] = ACTIONS(3963), - [anon_sym_group] = ACTIONS(3963), - [anon_sym_by] = ACTIONS(4060), - [anon_sym_select] = ACTIONS(3963), - [anon_sym_as] = ACTIONS(3963), - [anon_sym_is] = ACTIONS(3963), - [anon_sym_DASH_GT] = ACTIONS(3961), - [anon_sym_with] = ACTIONS(3963), + [sym__identifier_token] = ACTIONS(3976), + [anon_sym_alias] = ACTIONS(3976), + [anon_sym_global] = ACTIONS(3976), + [anon_sym_LBRACK] = ACTIONS(3978), + [anon_sym_COLON] = ACTIONS(3978), + [anon_sym_COMMA] = ACTIONS(3978), + [anon_sym_LPAREN] = ACTIONS(3978), + [anon_sym_RPAREN] = ACTIONS(3978), + [anon_sym_LBRACE] = ACTIONS(3978), + [anon_sym_RBRACE] = ACTIONS(3978), + [anon_sym_file] = ACTIONS(3976), + [anon_sym_LT] = ACTIONS(3976), + [anon_sym_GT] = ACTIONS(3976), + [anon_sym_where] = ACTIONS(3976), + [anon_sym_QMARK] = ACTIONS(3976), + [anon_sym_notnull] = ACTIONS(3976), + [anon_sym_unmanaged] = ACTIONS(3976), + [anon_sym_BANG] = ACTIONS(3976), + [anon_sym_PLUS_PLUS] = ACTIONS(3978), + [anon_sym_DASH_DASH] = ACTIONS(3978), + [anon_sym_PLUS] = ACTIONS(3976), + [anon_sym_DASH] = ACTIONS(3976), + [anon_sym_STAR] = ACTIONS(3978), + [anon_sym_SLASH] = ACTIONS(3976), + [anon_sym_PERCENT] = ACTIONS(3978), + [anon_sym_CARET] = ACTIONS(3978), + [anon_sym_PIPE] = ACTIONS(3976), + [anon_sym_AMP] = ACTIONS(3976), + [anon_sym_LT_LT] = ACTIONS(3978), + [anon_sym_GT_GT] = ACTIONS(3976), + [anon_sym_GT_GT_GT] = ACTIONS(3978), + [anon_sym_EQ_EQ] = ACTIONS(3978), + [anon_sym_BANG_EQ] = ACTIONS(3978), + [anon_sym_GT_EQ] = ACTIONS(3978), + [anon_sym_LT_EQ] = ACTIONS(3978), + [anon_sym_DOT] = ACTIONS(4255), + [anon_sym_scoped] = ACTIONS(3976), + [anon_sym_var] = ACTIONS(3976), + [anon_sym_yield] = ACTIONS(3976), + [anon_sym_switch] = ACTIONS(3976), + [anon_sym_when] = ACTIONS(3976), + [sym_discard] = ACTIONS(3976), + [anon_sym_DOT_DOT] = ACTIONS(3978), + [anon_sym_and] = ACTIONS(3976), + [anon_sym_or] = ACTIONS(3976), + [anon_sym_AMP_AMP] = ACTIONS(3978), + [anon_sym_PIPE_PIPE] = ACTIONS(3978), + [anon_sym_QMARK_QMARK] = ACTIONS(3978), + [anon_sym_from] = ACTIONS(3976), + [anon_sym_into] = ACTIONS(3976), + [anon_sym_join] = ACTIONS(3976), + [anon_sym_on] = ACTIONS(3976), + [anon_sym_equals] = ACTIONS(3976), + [anon_sym_let] = ACTIONS(3976), + [anon_sym_orderby] = ACTIONS(3976), + [anon_sym_ascending] = ACTIONS(3976), + [anon_sym_descending] = ACTIONS(3976), + [anon_sym_group] = ACTIONS(3976), + [anon_sym_by] = ACTIONS(3976), + [anon_sym_select] = ACTIONS(3976), + [anon_sym_as] = ACTIONS(3976), + [anon_sym_is] = ACTIONS(3976), + [anon_sym_DASH_GT] = ACTIONS(3978), + [anon_sym_with] = ACTIONS(3976), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -440177,70 +439799,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), - [anon_sym_SEMI] = ACTIONS(3662), - [anon_sym_EQ] = ACTIONS(3660), - [anon_sym_LBRACK] = ACTIONS(3662), - [anon_sym_COLON] = ACTIONS(3662), - [anon_sym_COMMA] = ACTIONS(3662), - [anon_sym_RBRACK] = ACTIONS(3662), - [anon_sym_LPAREN] = ACTIONS(3662), - [anon_sym_RPAREN] = ACTIONS(3662), - [anon_sym_RBRACE] = ACTIONS(3662), - [anon_sym_LT] = ACTIONS(3660), - [anon_sym_GT] = ACTIONS(3660), - [anon_sym_in] = ACTIONS(3660), - [anon_sym_QMARK] = ACTIONS(3660), - [anon_sym_BANG] = ACTIONS(3660), - [anon_sym_PLUS_PLUS] = ACTIONS(3662), - [anon_sym_DASH_DASH] = ACTIONS(3662), - [anon_sym_PLUS] = ACTIONS(3660), - [anon_sym_DASH] = ACTIONS(3660), - [anon_sym_STAR] = ACTIONS(3660), - [anon_sym_SLASH] = ACTIONS(3660), - [anon_sym_PERCENT] = ACTIONS(3660), - [anon_sym_CARET] = ACTIONS(3660), - [anon_sym_PIPE] = ACTIONS(3660), - [anon_sym_AMP] = ACTIONS(3660), - [anon_sym_LT_LT] = ACTIONS(3660), - [anon_sym_GT_GT] = ACTIONS(3660), - [anon_sym_GT_GT_GT] = ACTIONS(3660), - [anon_sym_EQ_EQ] = ACTIONS(3662), - [anon_sym_BANG_EQ] = ACTIONS(3662), - [anon_sym_GT_EQ] = ACTIONS(3662), - [anon_sym_LT_EQ] = ACTIONS(3662), - [anon_sym_DOT] = ACTIONS(3660), - [anon_sym_EQ_GT] = ACTIONS(3662), - [anon_sym_switch] = ACTIONS(3662), - [anon_sym_when] = ACTIONS(3662), - [anon_sym_DOT_DOT] = ACTIONS(3662), - [anon_sym_and] = ACTIONS(3662), - [anon_sym_or] = ACTIONS(3662), - [anon_sym_PLUS_EQ] = ACTIONS(3662), - [anon_sym_DASH_EQ] = ACTIONS(3662), - [anon_sym_STAR_EQ] = ACTIONS(3662), - [anon_sym_SLASH_EQ] = ACTIONS(3662), - [anon_sym_PERCENT_EQ] = ACTIONS(3662), - [anon_sym_AMP_EQ] = ACTIONS(3662), - [anon_sym_CARET_EQ] = ACTIONS(3662), - [anon_sym_PIPE_EQ] = ACTIONS(3662), - [anon_sym_LT_LT_EQ] = ACTIONS(3662), - [anon_sym_GT_GT_EQ] = ACTIONS(3662), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3662), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3662), - [anon_sym_AMP_AMP] = ACTIONS(3662), - [anon_sym_PIPE_PIPE] = ACTIONS(3662), - [anon_sym_QMARK_QMARK] = ACTIONS(3660), - [anon_sym_into] = ACTIONS(3662), - [anon_sym_on] = ACTIONS(3662), - [anon_sym_equals] = ACTIONS(3662), - [anon_sym_by] = ACTIONS(3662), - [anon_sym_as] = ACTIONS(3662), - [anon_sym_is] = ACTIONS(3662), - [anon_sym_DASH_GT] = ACTIONS(3662), - [anon_sym_with] = ACTIONS(3662), - [aux_sym_preproc_if_token3] = ACTIONS(3662), - [aux_sym_preproc_else_token1] = ACTIONS(3662), - [aux_sym_preproc_elif_token1] = ACTIONS(3662), + [sym__identifier_token] = ACTIONS(3431), + [anon_sym_alias] = ACTIONS(3431), + [anon_sym_global] = ACTIONS(3431), + [anon_sym_LBRACK] = ACTIONS(3429), + [anon_sym_COLON] = ACTIONS(3429), + [anon_sym_COMMA] = ACTIONS(3429), + [anon_sym_LPAREN] = ACTIONS(3429), + [anon_sym_RPAREN] = ACTIONS(3429), + [anon_sym_LBRACE] = ACTIONS(3429), + [anon_sym_RBRACE] = ACTIONS(3429), + [anon_sym_file] = ACTIONS(3431), + [anon_sym_LT] = ACTIONS(3431), + [anon_sym_GT] = ACTIONS(3431), + [anon_sym_where] = ACTIONS(3431), + [anon_sym_QMARK] = ACTIONS(3431), + [anon_sym_notnull] = ACTIONS(3431), + [anon_sym_unmanaged] = ACTIONS(3431), + [anon_sym_BANG] = ACTIONS(3431), + [anon_sym_PLUS_PLUS] = ACTIONS(3429), + [anon_sym_DASH_DASH] = ACTIONS(3429), + [anon_sym_PLUS] = ACTIONS(3431), + [anon_sym_DASH] = ACTIONS(3431), + [anon_sym_STAR] = ACTIONS(3429), + [anon_sym_SLASH] = ACTIONS(3431), + [anon_sym_PERCENT] = ACTIONS(3429), + [anon_sym_CARET] = ACTIONS(3429), + [anon_sym_PIPE] = ACTIONS(3431), + [anon_sym_AMP] = ACTIONS(3431), + [anon_sym_LT_LT] = ACTIONS(3429), + [anon_sym_GT_GT] = ACTIONS(3431), + [anon_sym_GT_GT_GT] = ACTIONS(3429), + [anon_sym_EQ_EQ] = ACTIONS(3429), + [anon_sym_BANG_EQ] = ACTIONS(3429), + [anon_sym_GT_EQ] = ACTIONS(3429), + [anon_sym_LT_EQ] = ACTIONS(3429), + [anon_sym_DOT] = ACTIONS(3431), + [anon_sym_scoped] = ACTIONS(3431), + [anon_sym_var] = ACTIONS(3431), + [anon_sym_yield] = ACTIONS(3431), + [anon_sym_switch] = ACTIONS(3431), + [anon_sym_when] = ACTIONS(3431), + [sym_discard] = ACTIONS(3431), + [anon_sym_DOT_DOT] = ACTIONS(3429), + [anon_sym_and] = ACTIONS(3431), + [anon_sym_or] = ACTIONS(3431), + [anon_sym_AMP_AMP] = ACTIONS(3429), + [anon_sym_PIPE_PIPE] = ACTIONS(3429), + [anon_sym_QMARK_QMARK] = ACTIONS(3429), + [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_as] = ACTIONS(3431), + [anon_sym_is] = ACTIONS(3431), + [anon_sym_DASH_GT] = ACTIONS(3429), + [anon_sym_with] = ACTIONS(3431), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -440262,70 +439884,70 @@ 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(3681), - [anon_sym_EQ] = ACTIONS(3679), - [anon_sym_LBRACK] = ACTIONS(3681), - [anon_sym_COLON] = ACTIONS(3681), - [anon_sym_COMMA] = ACTIONS(3681), - [anon_sym_RBRACK] = ACTIONS(3681), - [anon_sym_LPAREN] = ACTIONS(3681), - [anon_sym_RPAREN] = ACTIONS(3681), - [anon_sym_RBRACE] = ACTIONS(3681), - [anon_sym_LT] = ACTIONS(3679), - [anon_sym_GT] = ACTIONS(3679), - [anon_sym_in] = ACTIONS(3679), - [anon_sym_QMARK] = ACTIONS(3679), - [anon_sym_BANG] = ACTIONS(3679), - [anon_sym_PLUS_PLUS] = ACTIONS(3681), - [anon_sym_DASH_DASH] = ACTIONS(3681), - [anon_sym_PLUS] = ACTIONS(3679), - [anon_sym_DASH] = ACTIONS(3679), - [anon_sym_STAR] = ACTIONS(3679), - [anon_sym_SLASH] = ACTIONS(3679), - [anon_sym_PERCENT] = ACTIONS(3679), - [anon_sym_CARET] = ACTIONS(3679), - [anon_sym_PIPE] = ACTIONS(3679), - [anon_sym_AMP] = ACTIONS(3679), - [anon_sym_LT_LT] = ACTIONS(3679), - [anon_sym_GT_GT] = ACTIONS(3679), - [anon_sym_GT_GT_GT] = ACTIONS(3679), - [anon_sym_EQ_EQ] = ACTIONS(3681), - [anon_sym_BANG_EQ] = ACTIONS(3681), - [anon_sym_GT_EQ] = ACTIONS(3681), - [anon_sym_LT_EQ] = ACTIONS(3681), - [anon_sym_DOT] = ACTIONS(3679), - [anon_sym_EQ_GT] = ACTIONS(3681), - [anon_sym_switch] = ACTIONS(3681), - [anon_sym_when] = ACTIONS(3681), - [anon_sym_DOT_DOT] = ACTIONS(3681), - [anon_sym_and] = ACTIONS(3681), - [anon_sym_or] = ACTIONS(3681), - [anon_sym_PLUS_EQ] = ACTIONS(3681), - [anon_sym_DASH_EQ] = ACTIONS(3681), - [anon_sym_STAR_EQ] = ACTIONS(3681), - [anon_sym_SLASH_EQ] = ACTIONS(3681), - [anon_sym_PERCENT_EQ] = ACTIONS(3681), - [anon_sym_AMP_EQ] = ACTIONS(3681), - [anon_sym_CARET_EQ] = ACTIONS(3681), - [anon_sym_PIPE_EQ] = ACTIONS(3681), - [anon_sym_LT_LT_EQ] = ACTIONS(3681), - [anon_sym_GT_GT_EQ] = ACTIONS(3681), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3681), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3681), - [anon_sym_AMP_AMP] = ACTIONS(3681), - [anon_sym_PIPE_PIPE] = ACTIONS(3681), - [anon_sym_QMARK_QMARK] = ACTIONS(3679), - [anon_sym_into] = ACTIONS(3681), - [anon_sym_on] = ACTIONS(3681), - [anon_sym_equals] = ACTIONS(3681), - [anon_sym_by] = ACTIONS(3681), - [anon_sym_as] = ACTIONS(3681), - [anon_sym_is] = ACTIONS(3681), - [anon_sym_DASH_GT] = ACTIONS(3681), - [anon_sym_with] = ACTIONS(3681), - [aux_sym_preproc_if_token3] = ACTIONS(3681), - [aux_sym_preproc_else_token1] = ACTIONS(3681), - [aux_sym_preproc_elif_token1] = ACTIONS(3681), + [sym__identifier_token] = ACTIONS(3634), + [anon_sym_alias] = ACTIONS(3634), + [anon_sym_global] = ACTIONS(3634), + [anon_sym_LBRACK] = ACTIONS(3636), + [anon_sym_COLON] = ACTIONS(3636), + [anon_sym_COMMA] = ACTIONS(3636), + [anon_sym_LPAREN] = ACTIONS(3636), + [anon_sym_RPAREN] = ACTIONS(3636), + [anon_sym_LBRACE] = ACTIONS(3636), + [anon_sym_RBRACE] = ACTIONS(3636), + [anon_sym_file] = ACTIONS(3634), + [anon_sym_LT] = ACTIONS(3634), + [anon_sym_GT] = ACTIONS(3634), + [anon_sym_where] = ACTIONS(3634), + [anon_sym_QMARK] = ACTIONS(3634), + [anon_sym_notnull] = ACTIONS(3634), + [anon_sym_unmanaged] = ACTIONS(3634), + [anon_sym_BANG] = ACTIONS(3634), + [anon_sym_PLUS_PLUS] = ACTIONS(3636), + [anon_sym_DASH_DASH] = ACTIONS(3636), + [anon_sym_PLUS] = ACTIONS(3634), + [anon_sym_DASH] = ACTIONS(3634), + [anon_sym_STAR] = ACTIONS(3636), + [anon_sym_SLASH] = ACTIONS(3634), + [anon_sym_PERCENT] = ACTIONS(3636), + [anon_sym_CARET] = ACTIONS(3636), + [anon_sym_PIPE] = ACTIONS(3634), + [anon_sym_AMP] = ACTIONS(3634), + [anon_sym_LT_LT] = ACTIONS(3636), + [anon_sym_GT_GT] = ACTIONS(3634), + [anon_sym_GT_GT_GT] = ACTIONS(3636), + [anon_sym_EQ_EQ] = ACTIONS(3636), + [anon_sym_BANG_EQ] = ACTIONS(3636), + [anon_sym_GT_EQ] = ACTIONS(3636), + [anon_sym_LT_EQ] = ACTIONS(3636), + [anon_sym_DOT] = ACTIONS(3634), + [anon_sym_scoped] = ACTIONS(3634), + [anon_sym_var] = ACTIONS(3634), + [anon_sym_yield] = ACTIONS(3634), + [anon_sym_switch] = ACTIONS(3634), + [anon_sym_when] = ACTIONS(3634), + [sym_discard] = ACTIONS(3634), + [anon_sym_DOT_DOT] = ACTIONS(3636), + [anon_sym_and] = ACTIONS(3634), + [anon_sym_or] = ACTIONS(3634), + [anon_sym_AMP_AMP] = ACTIONS(3636), + [anon_sym_PIPE_PIPE] = ACTIONS(3636), + [anon_sym_QMARK_QMARK] = ACTIONS(3636), + [anon_sym_from] = ACTIONS(3634), + [anon_sym_into] = ACTIONS(3634), + [anon_sym_join] = ACTIONS(3634), + [anon_sym_on] = ACTIONS(3634), + [anon_sym_equals] = ACTIONS(3634), + [anon_sym_let] = ACTIONS(3634), + [anon_sym_orderby] = ACTIONS(3634), + [anon_sym_ascending] = ACTIONS(3634), + [anon_sym_descending] = ACTIONS(3634), + [anon_sym_group] = ACTIONS(3634), + [anon_sym_by] = ACTIONS(3634), + [anon_sym_select] = ACTIONS(3634), + [anon_sym_as] = ACTIONS(3634), + [anon_sym_is] = ACTIONS(3634), + [anon_sym_DASH_GT] = ACTIONS(3636), + [anon_sym_with] = ACTIONS(3634), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -440347,70 +439969,70 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2637), [sym_preproc_define] = STATE(2637), [sym_preproc_undef] = STATE(2637), - [sym__identifier_token] = ACTIONS(3975), - [anon_sym_alias] = ACTIONS(3975), - [anon_sym_global] = ACTIONS(3975), - [anon_sym_LBRACK] = ACTIONS(3977), - [anon_sym_COLON] = ACTIONS(3977), - [anon_sym_COMMA] = ACTIONS(3977), - [anon_sym_LPAREN] = ACTIONS(3977), - [anon_sym_RPAREN] = ACTIONS(3977), - [anon_sym_LBRACE] = ACTIONS(3977), - [anon_sym_RBRACE] = ACTIONS(3977), - [anon_sym_file] = ACTIONS(3975), - [anon_sym_LT] = ACTIONS(3975), - [anon_sym_GT] = ACTIONS(3975), - [anon_sym_where] = ACTIONS(3975), - [anon_sym_QMARK] = ACTIONS(3975), - [anon_sym_notnull] = ACTIONS(3975), - [anon_sym_unmanaged] = ACTIONS(3975), - [anon_sym_BANG] = ACTIONS(3975), - [anon_sym_PLUS_PLUS] = ACTIONS(3977), - [anon_sym_DASH_DASH] = ACTIONS(3977), - [anon_sym_PLUS] = ACTIONS(3975), - [anon_sym_DASH] = ACTIONS(3975), - [anon_sym_STAR] = ACTIONS(3977), - [anon_sym_SLASH] = ACTIONS(3975), - [anon_sym_PERCENT] = ACTIONS(3977), - [anon_sym_CARET] = ACTIONS(3977), - [anon_sym_PIPE] = ACTIONS(3975), - [anon_sym_AMP] = ACTIONS(3975), - [anon_sym_LT_LT] = ACTIONS(3977), - [anon_sym_GT_GT] = ACTIONS(3975), - [anon_sym_GT_GT_GT] = ACTIONS(3977), - [anon_sym_EQ_EQ] = ACTIONS(3977), - [anon_sym_BANG_EQ] = ACTIONS(3977), - [anon_sym_GT_EQ] = ACTIONS(3977), - [anon_sym_LT_EQ] = ACTIONS(3977), - [anon_sym_DOT] = ACTIONS(4285), - [anon_sym_scoped] = ACTIONS(3975), - [anon_sym_var] = ACTIONS(3975), - [anon_sym_yield] = ACTIONS(3975), - [anon_sym_switch] = ACTIONS(3975), - [anon_sym_when] = ACTIONS(3975), - [sym_discard] = ACTIONS(3975), - [anon_sym_DOT_DOT] = ACTIONS(3977), - [anon_sym_and] = ACTIONS(3975), - [anon_sym_or] = ACTIONS(3975), - [anon_sym_AMP_AMP] = ACTIONS(3977), - [anon_sym_PIPE_PIPE] = ACTIONS(3977), - [anon_sym_QMARK_QMARK] = ACTIONS(3977), - [anon_sym_from] = ACTIONS(3975), - [anon_sym_into] = ACTIONS(3975), - [anon_sym_join] = ACTIONS(3975), - [anon_sym_on] = ACTIONS(3975), - [anon_sym_equals] = ACTIONS(3975), - [anon_sym_let] = ACTIONS(3975), - [anon_sym_orderby] = ACTIONS(3975), - [anon_sym_ascending] = ACTIONS(3975), - [anon_sym_descending] = ACTIONS(3975), - [anon_sym_group] = ACTIONS(3975), - [anon_sym_by] = ACTIONS(3975), - [anon_sym_select] = ACTIONS(3975), - [anon_sym_as] = ACTIONS(3975), - [anon_sym_is] = ACTIONS(3975), - [anon_sym_DASH_GT] = ACTIONS(3977), - [anon_sym_with] = ACTIONS(3975), + [sym__identifier_token] = ACTIONS(4275), + [anon_sym_extern] = ACTIONS(4275), + [anon_sym_alias] = ACTIONS(4275), + [anon_sym_global] = ACTIONS(4275), + [anon_sym_using] = ACTIONS(4275), + [anon_sym_unsafe] = ACTIONS(4275), + [anon_sym_EQ] = ACTIONS(4277), + [anon_sym_static] = ACTIONS(4275), + [anon_sym_LBRACK] = ACTIONS(4277), + [anon_sym_LPAREN] = ACTIONS(4277), + [anon_sym_event] = ACTIONS(4275), + [anon_sym_namespace] = ACTIONS(4275), + [anon_sym_class] = ACTIONS(4275), + [anon_sym_ref] = ACTIONS(4275), + [anon_sym_struct] = ACTIONS(4275), + [anon_sym_enum] = ACTIONS(4275), + [anon_sym_RBRACE] = ACTIONS(4277), + [anon_sym_interface] = ACTIONS(4275), + [anon_sym_delegate] = ACTIONS(4275), + [anon_sym_record] = ACTIONS(4275), + [anon_sym_abstract] = ACTIONS(4275), + [anon_sym_async] = ACTIONS(4275), + [anon_sym_const] = ACTIONS(4275), + [anon_sym_file] = ACTIONS(4275), + [anon_sym_fixed] = ACTIONS(4275), + [anon_sym_internal] = ACTIONS(4275), + [anon_sym_new] = ACTIONS(4275), + [anon_sym_override] = ACTIONS(4275), + [anon_sym_partial] = ACTIONS(4275), + [anon_sym_private] = ACTIONS(4275), + [anon_sym_protected] = ACTIONS(4275), + [anon_sym_public] = ACTIONS(4275), + [anon_sym_readonly] = ACTIONS(4275), + [anon_sym_required] = ACTIONS(4275), + [anon_sym_sealed] = ACTIONS(4275), + [anon_sym_virtual] = ACTIONS(4275), + [anon_sym_volatile] = ACTIONS(4275), + [anon_sym_where] = ACTIONS(4275), + [anon_sym_notnull] = ACTIONS(4275), + [anon_sym_unmanaged] = ACTIONS(4275), + [anon_sym_TILDE] = ACTIONS(4277), + [anon_sym_implicit] = ACTIONS(4275), + [anon_sym_explicit] = ACTIONS(4275), + [anon_sym_scoped] = ACTIONS(4275), + [anon_sym_var] = ACTIONS(4275), + [sym_predefined_type] = ACTIONS(4275), + [anon_sym_yield] = ACTIONS(4275), + [anon_sym_when] = ACTIONS(4275), + [anon_sym_from] = ACTIONS(4275), + [anon_sym_into] = ACTIONS(4275), + [anon_sym_join] = ACTIONS(4275), + [anon_sym_on] = ACTIONS(4275), + [anon_sym_equals] = ACTIONS(4275), + [anon_sym_let] = ACTIONS(4275), + [anon_sym_orderby] = ACTIONS(4275), + [anon_sym_ascending] = ACTIONS(4275), + [anon_sym_descending] = ACTIONS(4275), + [anon_sym_group] = ACTIONS(4275), + [anon_sym_by] = ACTIONS(4275), + [anon_sym_select] = ACTIONS(4275), + [aux_sym_preproc_if_token1] = ACTIONS(4277), + [aux_sym_preproc_if_token3] = ACTIONS(4277), + [aux_sym_preproc_else_token1] = ACTIONS(4277), + [aux_sym_preproc_elif_token1] = ACTIONS(4277), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -440432,69 +440054,70 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2638), [sym_preproc_define] = STATE(2638), [sym_preproc_undef] = STATE(2638), - [sym__identifier_token] = ACTIONS(4090), - [anon_sym_alias] = ACTIONS(4090), - [anon_sym_global] = ACTIONS(4090), - [anon_sym_LBRACK] = ACTIONS(4092), - [anon_sym_COLON] = ACTIONS(4092), - [anon_sym_COMMA] = ACTIONS(4092), - [anon_sym_LPAREN] = ACTIONS(4092), - [anon_sym_LBRACE] = ACTIONS(4092), - [anon_sym_file] = ACTIONS(4090), - [anon_sym_LT] = ACTIONS(4090), - [anon_sym_GT] = ACTIONS(4090), - [anon_sym_where] = ACTIONS(4090), - [anon_sym_QMARK] = ACTIONS(4090), - [anon_sym_notnull] = ACTIONS(4090), - [anon_sym_unmanaged] = ACTIONS(4090), - [anon_sym_BANG] = ACTIONS(4090), - [anon_sym_PLUS_PLUS] = ACTIONS(4092), - [anon_sym_DASH_DASH] = ACTIONS(4092), - [anon_sym_PLUS] = ACTIONS(4090), - [anon_sym_DASH] = ACTIONS(4090), - [anon_sym_STAR] = ACTIONS(4092), - [anon_sym_SLASH] = ACTIONS(4090), - [anon_sym_PERCENT] = ACTIONS(4092), - [anon_sym_CARET] = ACTIONS(4092), - [anon_sym_PIPE] = ACTIONS(4090), - [anon_sym_AMP] = ACTIONS(4090), - [anon_sym_LT_LT] = ACTIONS(4092), - [anon_sym_GT_GT] = ACTIONS(4090), - [anon_sym_GT_GT_GT] = ACTIONS(4092), - [anon_sym_EQ_EQ] = ACTIONS(4092), - [anon_sym_BANG_EQ] = ACTIONS(4092), - [anon_sym_GT_EQ] = ACTIONS(4092), - [anon_sym_LT_EQ] = ACTIONS(4092), - [anon_sym_DOT] = ACTIONS(4090), - [anon_sym_scoped] = ACTIONS(4090), - [anon_sym_EQ_GT] = ACTIONS(4094), - [anon_sym_var] = ACTIONS(4090), - [anon_sym_yield] = ACTIONS(4090), - [anon_sym_switch] = ACTIONS(4090), - [anon_sym_when] = ACTIONS(4090), - [sym_discard] = ACTIONS(4090), - [anon_sym_DOT_DOT] = ACTIONS(4092), - [anon_sym_and] = ACTIONS(4090), - [anon_sym_or] = ACTIONS(4090), - [anon_sym_AMP_AMP] = ACTIONS(4092), - [anon_sym_PIPE_PIPE] = ACTIONS(4092), - [anon_sym_QMARK_QMARK] = ACTIONS(4092), - [anon_sym_from] = ACTIONS(4090), - [anon_sym_into] = ACTIONS(4090), - [anon_sym_join] = ACTIONS(4090), - [anon_sym_on] = ACTIONS(4090), - [anon_sym_equals] = ACTIONS(4090), - [anon_sym_let] = ACTIONS(4090), - [anon_sym_orderby] = ACTIONS(4090), - [anon_sym_ascending] = ACTIONS(4090), - [anon_sym_descending] = ACTIONS(4090), - [anon_sym_group] = ACTIONS(4090), - [anon_sym_by] = ACTIONS(4090), - [anon_sym_select] = ACTIONS(4090), - [anon_sym_as] = ACTIONS(4090), - [anon_sym_is] = ACTIONS(4090), - [anon_sym_DASH_GT] = ACTIONS(4092), - [anon_sym_with] = ACTIONS(4090), + [anon_sym_SEMI] = ACTIONS(3429), + [anon_sym_EQ] = ACTIONS(3431), + [anon_sym_LBRACK] = ACTIONS(3429), + [anon_sym_COLON] = ACTIONS(3429), + [anon_sym_COMMA] = ACTIONS(3429), + [anon_sym_RBRACK] = ACTIONS(3429), + [anon_sym_LPAREN] = ACTIONS(3429), + [anon_sym_RPAREN] = ACTIONS(3429), + [anon_sym_RBRACE] = ACTIONS(3429), + [anon_sym_LT] = ACTIONS(3431), + [anon_sym_GT] = ACTIONS(3431), + [anon_sym_in] = ACTIONS(3431), + [anon_sym_QMARK] = ACTIONS(3431), + [anon_sym_BANG] = ACTIONS(3431), + [anon_sym_PLUS_PLUS] = ACTIONS(3429), + [anon_sym_DASH_DASH] = ACTIONS(3429), + [anon_sym_PLUS] = ACTIONS(3431), + [anon_sym_DASH] = ACTIONS(3431), + [anon_sym_STAR] = ACTIONS(3431), + [anon_sym_SLASH] = ACTIONS(3431), + [anon_sym_PERCENT] = ACTIONS(3431), + [anon_sym_CARET] = ACTIONS(3431), + [anon_sym_PIPE] = ACTIONS(3431), + [anon_sym_AMP] = ACTIONS(3431), + [anon_sym_LT_LT] = ACTIONS(3431), + [anon_sym_GT_GT] = ACTIONS(3431), + [anon_sym_GT_GT_GT] = ACTIONS(3431), + [anon_sym_EQ_EQ] = ACTIONS(3429), + [anon_sym_BANG_EQ] = ACTIONS(3429), + [anon_sym_GT_EQ] = ACTIONS(3429), + [anon_sym_LT_EQ] = ACTIONS(3429), + [anon_sym_DOT] = ACTIONS(3431), + [anon_sym_EQ_GT] = ACTIONS(3429), + [anon_sym_switch] = ACTIONS(3429), + [anon_sym_when] = ACTIONS(3429), + [anon_sym_DOT_DOT] = ACTIONS(3429), + [anon_sym_and] = ACTIONS(3429), + [anon_sym_or] = ACTIONS(3429), + [anon_sym_PLUS_EQ] = ACTIONS(3429), + [anon_sym_DASH_EQ] = ACTIONS(3429), + [anon_sym_STAR_EQ] = ACTIONS(3429), + [anon_sym_SLASH_EQ] = ACTIONS(3429), + [anon_sym_PERCENT_EQ] = ACTIONS(3429), + [anon_sym_AMP_EQ] = ACTIONS(3429), + [anon_sym_CARET_EQ] = ACTIONS(3429), + [anon_sym_PIPE_EQ] = ACTIONS(3429), + [anon_sym_LT_LT_EQ] = ACTIONS(3429), + [anon_sym_GT_GT_EQ] = ACTIONS(3429), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3429), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3429), + [anon_sym_AMP_AMP] = ACTIONS(3429), + [anon_sym_PIPE_PIPE] = ACTIONS(3429), + [anon_sym_QMARK_QMARK] = ACTIONS(3431), + [anon_sym_into] = ACTIONS(3429), + [anon_sym_on] = ACTIONS(3429), + [anon_sym_equals] = ACTIONS(3429), + [anon_sym_by] = ACTIONS(3429), + [anon_sym_as] = ACTIONS(3429), + [anon_sym_is] = ACTIONS(3429), + [anon_sym_DASH_GT] = ACTIONS(3429), + [anon_sym_with] = 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), @@ -440505,7 +440128,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(4092), }, [2639] = { [sym_preproc_region] = STATE(2639), @@ -440517,70 +440139,70 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2639), [sym_preproc_define] = STATE(2639), [sym_preproc_undef] = STATE(2639), - [anon_sym_SEMI] = ACTIONS(3677), - [anon_sym_EQ] = ACTIONS(3675), - [anon_sym_LBRACK] = ACTIONS(3677), - [anon_sym_COLON] = ACTIONS(3677), - [anon_sym_COMMA] = ACTIONS(3677), - [anon_sym_RBRACK] = ACTIONS(3677), - [anon_sym_LPAREN] = ACTIONS(3677), - [anon_sym_RPAREN] = ACTIONS(3677), - [anon_sym_RBRACE] = ACTIONS(3677), - [anon_sym_LT] = ACTIONS(3675), - [anon_sym_GT] = ACTIONS(3675), - [anon_sym_in] = ACTIONS(3675), - [anon_sym_QMARK] = ACTIONS(3675), - [anon_sym_BANG] = ACTIONS(3675), - [anon_sym_PLUS_PLUS] = ACTIONS(3677), - [anon_sym_DASH_DASH] = ACTIONS(3677), - [anon_sym_PLUS] = ACTIONS(3675), - [anon_sym_DASH] = ACTIONS(3675), - [anon_sym_STAR] = ACTIONS(3675), - [anon_sym_SLASH] = ACTIONS(3675), - [anon_sym_PERCENT] = ACTIONS(3675), - [anon_sym_CARET] = ACTIONS(3675), - [anon_sym_PIPE] = ACTIONS(3675), - [anon_sym_AMP] = ACTIONS(3675), - [anon_sym_LT_LT] = ACTIONS(3675), - [anon_sym_GT_GT] = ACTIONS(3675), - [anon_sym_GT_GT_GT] = ACTIONS(3675), - [anon_sym_EQ_EQ] = ACTIONS(3677), - [anon_sym_BANG_EQ] = ACTIONS(3677), - [anon_sym_GT_EQ] = ACTIONS(3677), - [anon_sym_LT_EQ] = ACTIONS(3677), - [anon_sym_DOT] = ACTIONS(3675), - [anon_sym_EQ_GT] = ACTIONS(3677), - [anon_sym_switch] = ACTIONS(3677), - [anon_sym_when] = ACTIONS(3677), - [anon_sym_DOT_DOT] = ACTIONS(3677), - [anon_sym_and] = ACTIONS(3677), - [anon_sym_or] = ACTIONS(3677), - [anon_sym_PLUS_EQ] = ACTIONS(3677), - [anon_sym_DASH_EQ] = ACTIONS(3677), - [anon_sym_STAR_EQ] = ACTIONS(3677), - [anon_sym_SLASH_EQ] = ACTIONS(3677), - [anon_sym_PERCENT_EQ] = ACTIONS(3677), - [anon_sym_AMP_EQ] = ACTIONS(3677), - [anon_sym_CARET_EQ] = ACTIONS(3677), - [anon_sym_PIPE_EQ] = ACTIONS(3677), - [anon_sym_LT_LT_EQ] = ACTIONS(3677), - [anon_sym_GT_GT_EQ] = ACTIONS(3677), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3677), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3677), - [anon_sym_AMP_AMP] = ACTIONS(3677), - [anon_sym_PIPE_PIPE] = ACTIONS(3677), - [anon_sym_QMARK_QMARK] = ACTIONS(3675), - [anon_sym_into] = ACTIONS(3677), - [anon_sym_on] = ACTIONS(3677), - [anon_sym_equals] = ACTIONS(3677), - [anon_sym_by] = ACTIONS(3677), - [anon_sym_as] = ACTIONS(3677), - [anon_sym_is] = ACTIONS(3677), - [anon_sym_DASH_GT] = ACTIONS(3677), - [anon_sym_with] = ACTIONS(3677), - [aux_sym_preproc_if_token3] = ACTIONS(3677), - [aux_sym_preproc_else_token1] = ACTIONS(3677), - [aux_sym_preproc_elif_token1] = ACTIONS(3677), + [anon_sym_SEMI] = ACTIONS(3636), + [anon_sym_EQ] = ACTIONS(3634), + [anon_sym_LBRACK] = ACTIONS(3636), + [anon_sym_COLON] = ACTIONS(3636), + [anon_sym_COMMA] = ACTIONS(3636), + [anon_sym_RBRACK] = ACTIONS(3636), + [anon_sym_LPAREN] = ACTIONS(3636), + [anon_sym_RPAREN] = ACTIONS(3636), + [anon_sym_RBRACE] = ACTIONS(3636), + [anon_sym_LT] = ACTIONS(3634), + [anon_sym_GT] = ACTIONS(3634), + [anon_sym_in] = ACTIONS(3634), + [anon_sym_QMARK] = ACTIONS(3634), + [anon_sym_BANG] = ACTIONS(3634), + [anon_sym_PLUS_PLUS] = ACTIONS(3636), + [anon_sym_DASH_DASH] = ACTIONS(3636), + [anon_sym_PLUS] = ACTIONS(3634), + [anon_sym_DASH] = ACTIONS(3634), + [anon_sym_STAR] = ACTIONS(3634), + [anon_sym_SLASH] = ACTIONS(3634), + [anon_sym_PERCENT] = ACTIONS(3634), + [anon_sym_CARET] = ACTIONS(3634), + [anon_sym_PIPE] = ACTIONS(3634), + [anon_sym_AMP] = ACTIONS(3634), + [anon_sym_LT_LT] = ACTIONS(3634), + [anon_sym_GT_GT] = ACTIONS(3634), + [anon_sym_GT_GT_GT] = ACTIONS(3634), + [anon_sym_EQ_EQ] = ACTIONS(3636), + [anon_sym_BANG_EQ] = ACTIONS(3636), + [anon_sym_GT_EQ] = ACTIONS(3636), + [anon_sym_LT_EQ] = ACTIONS(3636), + [anon_sym_DOT] = ACTIONS(3634), + [anon_sym_EQ_GT] = ACTIONS(3636), + [anon_sym_switch] = ACTIONS(3636), + [anon_sym_when] = ACTIONS(3636), + [anon_sym_DOT_DOT] = ACTIONS(3636), + [anon_sym_and] = ACTIONS(3636), + [anon_sym_or] = ACTIONS(3636), + [anon_sym_PLUS_EQ] = ACTIONS(3636), + [anon_sym_DASH_EQ] = ACTIONS(3636), + [anon_sym_STAR_EQ] = ACTIONS(3636), + [anon_sym_SLASH_EQ] = ACTIONS(3636), + [anon_sym_PERCENT_EQ] = ACTIONS(3636), + [anon_sym_AMP_EQ] = ACTIONS(3636), + [anon_sym_CARET_EQ] = ACTIONS(3636), + [anon_sym_PIPE_EQ] = ACTIONS(3636), + [anon_sym_LT_LT_EQ] = ACTIONS(3636), + [anon_sym_GT_GT_EQ] = ACTIONS(3636), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3636), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3636), + [anon_sym_AMP_AMP] = ACTIONS(3636), + [anon_sym_PIPE_PIPE] = ACTIONS(3636), + [anon_sym_QMARK_QMARK] = ACTIONS(3634), + [anon_sym_into] = ACTIONS(3636), + [anon_sym_on] = ACTIONS(3636), + [anon_sym_equals] = ACTIONS(3636), + [anon_sym_by] = ACTIONS(3636), + [anon_sym_as] = ACTIONS(3636), + [anon_sym_is] = ACTIONS(3636), + [anon_sym_DASH_GT] = ACTIONS(3636), + [anon_sym_with] = ACTIONS(3636), + [aux_sym_preproc_if_token3] = ACTIONS(3636), + [aux_sym_preproc_else_token1] = ACTIONS(3636), + [aux_sym_preproc_elif_token1] = ACTIONS(3636), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -440602,70 +440224,70 @@ 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), - [anon_sym_SEMI] = ACTIONS(3673), - [anon_sym_EQ] = ACTIONS(3671), - [anon_sym_LBRACK] = ACTIONS(3673), - [anon_sym_COLON] = ACTIONS(3673), - [anon_sym_COMMA] = ACTIONS(3673), - [anon_sym_RBRACK] = ACTIONS(3673), - [anon_sym_LPAREN] = ACTIONS(3673), - [anon_sym_RPAREN] = ACTIONS(3673), - [anon_sym_RBRACE] = ACTIONS(3673), - [anon_sym_LT] = ACTIONS(3671), - [anon_sym_GT] = ACTIONS(3671), - [anon_sym_in] = ACTIONS(3671), - [anon_sym_QMARK] = ACTIONS(3671), - [anon_sym_BANG] = ACTIONS(3671), - [anon_sym_PLUS_PLUS] = ACTIONS(3673), - [anon_sym_DASH_DASH] = ACTIONS(3673), - [anon_sym_PLUS] = ACTIONS(3671), - [anon_sym_DASH] = ACTIONS(3671), - [anon_sym_STAR] = ACTIONS(3671), - [anon_sym_SLASH] = ACTIONS(3671), - [anon_sym_PERCENT] = ACTIONS(3671), - [anon_sym_CARET] = ACTIONS(3671), - [anon_sym_PIPE] = ACTIONS(3671), - [anon_sym_AMP] = ACTIONS(3671), - [anon_sym_LT_LT] = ACTIONS(3671), - [anon_sym_GT_GT] = ACTIONS(3671), - [anon_sym_GT_GT_GT] = ACTIONS(3671), - [anon_sym_EQ_EQ] = ACTIONS(3673), - [anon_sym_BANG_EQ] = ACTIONS(3673), - [anon_sym_GT_EQ] = ACTIONS(3673), - [anon_sym_LT_EQ] = ACTIONS(3673), - [anon_sym_DOT] = ACTIONS(3671), - [anon_sym_EQ_GT] = ACTIONS(3673), - [anon_sym_switch] = ACTIONS(3673), - [anon_sym_when] = ACTIONS(3673), - [anon_sym_DOT_DOT] = ACTIONS(3673), - [anon_sym_and] = ACTIONS(3673), - [anon_sym_or] = ACTIONS(3673), - [anon_sym_PLUS_EQ] = ACTIONS(3673), - [anon_sym_DASH_EQ] = ACTIONS(3673), - [anon_sym_STAR_EQ] = ACTIONS(3673), - [anon_sym_SLASH_EQ] = ACTIONS(3673), - [anon_sym_PERCENT_EQ] = ACTIONS(3673), - [anon_sym_AMP_EQ] = ACTIONS(3673), - [anon_sym_CARET_EQ] = ACTIONS(3673), - [anon_sym_PIPE_EQ] = ACTIONS(3673), - [anon_sym_LT_LT_EQ] = ACTIONS(3673), - [anon_sym_GT_GT_EQ] = ACTIONS(3673), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3673), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3673), - [anon_sym_AMP_AMP] = ACTIONS(3673), - [anon_sym_PIPE_PIPE] = ACTIONS(3673), - [anon_sym_QMARK_QMARK] = ACTIONS(3671), - [anon_sym_into] = ACTIONS(3673), - [anon_sym_on] = ACTIONS(3673), - [anon_sym_equals] = ACTIONS(3673), - [anon_sym_by] = ACTIONS(3673), - [anon_sym_as] = ACTIONS(3673), - [anon_sym_is] = ACTIONS(3673), - [anon_sym_DASH_GT] = ACTIONS(3673), - [anon_sym_with] = ACTIONS(3673), - [aux_sym_preproc_if_token3] = ACTIONS(3673), - [aux_sym_preproc_else_token1] = ACTIONS(3673), - [aux_sym_preproc_elif_token1] = ACTIONS(3673), + [sym__identifier_token] = ACTIONS(4279), + [anon_sym_extern] = ACTIONS(4279), + [anon_sym_alias] = ACTIONS(4279), + [anon_sym_global] = ACTIONS(4279), + [anon_sym_using] = ACTIONS(4279), + [anon_sym_unsafe] = ACTIONS(4279), + [anon_sym_EQ] = ACTIONS(4281), + [anon_sym_static] = ACTIONS(4279), + [anon_sym_LBRACK] = ACTIONS(4283), + [anon_sym_LPAREN] = ACTIONS(4283), + [anon_sym_event] = ACTIONS(4279), + [anon_sym_namespace] = ACTIONS(4279), + [anon_sym_class] = ACTIONS(4279), + [anon_sym_ref] = ACTIONS(4279), + [anon_sym_struct] = ACTIONS(4279), + [anon_sym_enum] = ACTIONS(4279), + [anon_sym_RBRACE] = ACTIONS(4283), + [anon_sym_interface] = ACTIONS(4279), + [anon_sym_delegate] = ACTIONS(4279), + [anon_sym_record] = ACTIONS(4279), + [anon_sym_abstract] = ACTIONS(4279), + [anon_sym_async] = ACTIONS(4279), + [anon_sym_const] = ACTIONS(4279), + [anon_sym_file] = ACTIONS(4279), + [anon_sym_fixed] = ACTIONS(4279), + [anon_sym_internal] = ACTIONS(4279), + [anon_sym_new] = ACTIONS(4279), + [anon_sym_override] = ACTIONS(4279), + [anon_sym_partial] = ACTIONS(4279), + [anon_sym_private] = ACTIONS(4279), + [anon_sym_protected] = ACTIONS(4279), + [anon_sym_public] = ACTIONS(4279), + [anon_sym_readonly] = ACTIONS(4279), + [anon_sym_required] = ACTIONS(4279), + [anon_sym_sealed] = ACTIONS(4279), + [anon_sym_virtual] = ACTIONS(4279), + [anon_sym_volatile] = ACTIONS(4279), + [anon_sym_where] = ACTIONS(4279), + [anon_sym_notnull] = ACTIONS(4279), + [anon_sym_unmanaged] = ACTIONS(4279), + [anon_sym_TILDE] = ACTIONS(4283), + [anon_sym_implicit] = ACTIONS(4279), + [anon_sym_explicit] = ACTIONS(4279), + [anon_sym_scoped] = ACTIONS(4279), + [anon_sym_var] = ACTIONS(4279), + [sym_predefined_type] = ACTIONS(4279), + [anon_sym_yield] = ACTIONS(4279), + [anon_sym_when] = ACTIONS(4279), + [anon_sym_from] = ACTIONS(4279), + [anon_sym_into] = ACTIONS(4279), + [anon_sym_join] = ACTIONS(4279), + [anon_sym_on] = ACTIONS(4279), + [anon_sym_equals] = ACTIONS(4279), + [anon_sym_let] = ACTIONS(4279), + [anon_sym_orderby] = ACTIONS(4279), + [anon_sym_ascending] = ACTIONS(4279), + [anon_sym_descending] = ACTIONS(4279), + [anon_sym_group] = ACTIONS(4279), + [anon_sym_by] = ACTIONS(4279), + [anon_sym_select] = ACTIONS(4279), + [aux_sym_preproc_if_token1] = ACTIONS(4283), + [aux_sym_preproc_if_token3] = ACTIONS(4283), + [aux_sym_preproc_else_token1] = ACTIONS(4283), + [aux_sym_preproc_elif_token1] = ACTIONS(4283), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -440687,70 +440309,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), - [anon_sym_SEMI] = ACTIONS(3656), - [anon_sym_EQ] = ACTIONS(3654), - [anon_sym_LBRACK] = ACTIONS(3656), - [anon_sym_COLON] = ACTIONS(3656), - [anon_sym_COMMA] = ACTIONS(3656), - [anon_sym_RBRACK] = ACTIONS(3656), - [anon_sym_LPAREN] = ACTIONS(3656), - [anon_sym_RPAREN] = ACTIONS(3656), - [anon_sym_RBRACE] = ACTIONS(3656), - [anon_sym_LT] = ACTIONS(3654), - [anon_sym_GT] = ACTIONS(3654), - [anon_sym_in] = ACTIONS(3654), - [anon_sym_QMARK] = ACTIONS(3654), - [anon_sym_BANG] = ACTIONS(3654), - [anon_sym_PLUS_PLUS] = ACTIONS(3656), - [anon_sym_DASH_DASH] = ACTIONS(3656), - [anon_sym_PLUS] = ACTIONS(3654), - [anon_sym_DASH] = ACTIONS(3654), - [anon_sym_STAR] = ACTIONS(3654), - [anon_sym_SLASH] = ACTIONS(3654), - [anon_sym_PERCENT] = ACTIONS(3654), - [anon_sym_CARET] = ACTIONS(3654), - [anon_sym_PIPE] = ACTIONS(3654), - [anon_sym_AMP] = ACTIONS(3654), - [anon_sym_LT_LT] = ACTIONS(3654), - [anon_sym_GT_GT] = ACTIONS(3654), - [anon_sym_GT_GT_GT] = ACTIONS(3654), - [anon_sym_EQ_EQ] = ACTIONS(3656), - [anon_sym_BANG_EQ] = ACTIONS(3656), - [anon_sym_GT_EQ] = ACTIONS(3656), - [anon_sym_LT_EQ] = ACTIONS(3656), - [anon_sym_DOT] = ACTIONS(3654), - [anon_sym_EQ_GT] = ACTIONS(3656), - [anon_sym_switch] = ACTIONS(3656), - [anon_sym_when] = ACTIONS(3656), - [anon_sym_DOT_DOT] = ACTIONS(3656), - [anon_sym_and] = ACTIONS(3656), - [anon_sym_or] = ACTIONS(3656), - [anon_sym_PLUS_EQ] = ACTIONS(3656), - [anon_sym_DASH_EQ] = ACTIONS(3656), - [anon_sym_STAR_EQ] = ACTIONS(3656), - [anon_sym_SLASH_EQ] = ACTIONS(3656), - [anon_sym_PERCENT_EQ] = ACTIONS(3656), - [anon_sym_AMP_EQ] = ACTIONS(3656), - [anon_sym_CARET_EQ] = ACTIONS(3656), - [anon_sym_PIPE_EQ] = ACTIONS(3656), - [anon_sym_LT_LT_EQ] = ACTIONS(3656), - [anon_sym_GT_GT_EQ] = ACTIONS(3656), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3656), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3656), - [anon_sym_AMP_AMP] = ACTIONS(3656), - [anon_sym_PIPE_PIPE] = ACTIONS(3656), - [anon_sym_QMARK_QMARK] = ACTIONS(3654), - [anon_sym_into] = ACTIONS(3656), - [anon_sym_on] = ACTIONS(3656), - [anon_sym_equals] = ACTIONS(3656), - [anon_sym_by] = ACTIONS(3656), - [anon_sym_as] = ACTIONS(3656), - [anon_sym_is] = ACTIONS(3656), - [anon_sym_DASH_GT] = ACTIONS(3656), - [anon_sym_with] = ACTIONS(3656), - [aux_sym_preproc_if_token3] = ACTIONS(3656), - [aux_sym_preproc_else_token1] = ACTIONS(3656), - [aux_sym_preproc_elif_token1] = ACTIONS(3656), + [sym__identifier_token] = ACTIONS(4285), + [anon_sym_extern] = ACTIONS(4285), + [anon_sym_alias] = ACTIONS(4285), + [anon_sym_global] = ACTIONS(4285), + [anon_sym_using] = ACTIONS(4285), + [anon_sym_unsafe] = ACTIONS(4285), + [anon_sym_EQ] = ACTIONS(4287), + [anon_sym_static] = ACTIONS(4285), + [anon_sym_LBRACK] = ACTIONS(4289), + [anon_sym_LPAREN] = ACTIONS(4289), + [anon_sym_event] = ACTIONS(4285), + [anon_sym_namespace] = ACTIONS(4285), + [anon_sym_class] = ACTIONS(4285), + [anon_sym_ref] = ACTIONS(4285), + [anon_sym_struct] = ACTIONS(4285), + [anon_sym_enum] = ACTIONS(4285), + [anon_sym_RBRACE] = ACTIONS(4289), + [anon_sym_interface] = ACTIONS(4285), + [anon_sym_delegate] = ACTIONS(4285), + [anon_sym_record] = ACTIONS(4285), + [anon_sym_abstract] = ACTIONS(4285), + [anon_sym_async] = ACTIONS(4285), + [anon_sym_const] = ACTIONS(4285), + [anon_sym_file] = ACTIONS(4285), + [anon_sym_fixed] = ACTIONS(4285), + [anon_sym_internal] = ACTIONS(4285), + [anon_sym_new] = ACTIONS(4285), + [anon_sym_override] = ACTIONS(4285), + [anon_sym_partial] = ACTIONS(4285), + [anon_sym_private] = ACTIONS(4285), + [anon_sym_protected] = ACTIONS(4285), + [anon_sym_public] = ACTIONS(4285), + [anon_sym_readonly] = ACTIONS(4285), + [anon_sym_required] = ACTIONS(4285), + [anon_sym_sealed] = ACTIONS(4285), + [anon_sym_virtual] = ACTIONS(4285), + [anon_sym_volatile] = ACTIONS(4285), + [anon_sym_where] = ACTIONS(4285), + [anon_sym_notnull] = ACTIONS(4285), + [anon_sym_unmanaged] = ACTIONS(4285), + [anon_sym_TILDE] = ACTIONS(4289), + [anon_sym_implicit] = ACTIONS(4285), + [anon_sym_explicit] = ACTIONS(4285), + [anon_sym_scoped] = ACTIONS(4285), + [anon_sym_var] = ACTIONS(4285), + [sym_predefined_type] = ACTIONS(4285), + [anon_sym_yield] = ACTIONS(4285), + [anon_sym_when] = ACTIONS(4285), + [anon_sym_from] = ACTIONS(4285), + [anon_sym_into] = ACTIONS(4285), + [anon_sym_join] = ACTIONS(4285), + [anon_sym_on] = ACTIONS(4285), + [anon_sym_equals] = ACTIONS(4285), + [anon_sym_let] = ACTIONS(4285), + [anon_sym_orderby] = ACTIONS(4285), + [anon_sym_ascending] = ACTIONS(4285), + [anon_sym_descending] = ACTIONS(4285), + [anon_sym_group] = ACTIONS(4285), + [anon_sym_by] = ACTIONS(4285), + [anon_sym_select] = ACTIONS(4285), + [aux_sym_preproc_if_token1] = ACTIONS(4289), + [aux_sym_preproc_if_token3] = ACTIONS(4289), + [aux_sym_preproc_else_token1] = ACTIONS(4289), + [aux_sym_preproc_elif_token1] = ACTIONS(4289), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -440763,6 +440385,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2642] = { + [sym_type_argument_list] = STATE(2746), [sym_preproc_region] = STATE(2642), [sym_preproc_endregion] = STATE(2642), [sym_preproc_line] = STATE(2642), @@ -440772,69 +440395,69 @@ 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(4090), - [anon_sym_alias] = ACTIONS(4090), - [anon_sym_global] = ACTIONS(4090), - [anon_sym_LBRACK] = ACTIONS(4092), - [anon_sym_COLON] = ACTIONS(4092), - [anon_sym_COMMA] = ACTIONS(4092), - [anon_sym_LPAREN] = ACTIONS(4092), - [anon_sym_LBRACE] = ACTIONS(4092), - [anon_sym_file] = ACTIONS(4090), - [anon_sym_LT] = ACTIONS(4090), - [anon_sym_GT] = ACTIONS(4090), - [anon_sym_where] = ACTIONS(4090), - [anon_sym_QMARK] = ACTIONS(4090), - [anon_sym_notnull] = ACTIONS(4090), - [anon_sym_unmanaged] = ACTIONS(4090), - [anon_sym_BANG] = ACTIONS(4090), - [anon_sym_PLUS_PLUS] = ACTIONS(4092), - [anon_sym_DASH_DASH] = ACTIONS(4092), - [anon_sym_PLUS] = ACTIONS(4090), - [anon_sym_DASH] = ACTIONS(4090), - [anon_sym_STAR] = ACTIONS(4092), - [anon_sym_SLASH] = ACTIONS(4090), - [anon_sym_PERCENT] = ACTIONS(4092), - [anon_sym_CARET] = ACTIONS(4092), - [anon_sym_PIPE] = ACTIONS(4090), - [anon_sym_AMP] = ACTIONS(4090), - [anon_sym_LT_LT] = ACTIONS(4092), - [anon_sym_GT_GT] = ACTIONS(4090), - [anon_sym_GT_GT_GT] = ACTIONS(4092), - [anon_sym_EQ_EQ] = ACTIONS(4092), - [anon_sym_BANG_EQ] = ACTIONS(4092), - [anon_sym_GT_EQ] = ACTIONS(4092), - [anon_sym_LT_EQ] = ACTIONS(4092), - [anon_sym_DOT] = ACTIONS(4090), - [anon_sym_scoped] = ACTIONS(4090), - [anon_sym_EQ_GT] = ACTIONS(4094), - [anon_sym_var] = ACTIONS(4090), - [anon_sym_yield] = ACTIONS(4090), - [anon_sym_switch] = ACTIONS(4090), - [anon_sym_when] = ACTIONS(4090), - [sym_discard] = ACTIONS(4090), - [anon_sym_DOT_DOT] = ACTIONS(4092), - [anon_sym_and] = ACTIONS(4090), - [anon_sym_or] = ACTIONS(4090), - [anon_sym_AMP_AMP] = ACTIONS(4092), - [anon_sym_PIPE_PIPE] = ACTIONS(4092), - [anon_sym_QMARK_QMARK] = ACTIONS(4092), - [anon_sym_from] = ACTIONS(4090), - [anon_sym_into] = ACTIONS(4090), - [anon_sym_join] = ACTIONS(4090), - [anon_sym_on] = ACTIONS(4090), - [anon_sym_equals] = ACTIONS(4090), - [anon_sym_let] = ACTIONS(4090), - [anon_sym_orderby] = ACTIONS(4090), - [anon_sym_ascending] = ACTIONS(4090), - [anon_sym_descending] = ACTIONS(4090), - [anon_sym_group] = ACTIONS(4090), - [anon_sym_by] = ACTIONS(4090), - [anon_sym_select] = ACTIONS(4090), - [anon_sym_as] = ACTIONS(4090), - [anon_sym_is] = ACTIONS(4090), - [anon_sym_DASH_GT] = ACTIONS(4092), - [anon_sym_with] = ACTIONS(4090), + [anon_sym_SEMI] = ACTIONS(3640), + [anon_sym_EQ] = ACTIONS(3638), + [anon_sym_LBRACK] = ACTIONS(3640), + [anon_sym_COLON] = ACTIONS(3640), + [anon_sym_COMMA] = ACTIONS(3640), + [anon_sym_RBRACK] = ACTIONS(3640), + [anon_sym_LPAREN] = ACTIONS(3640), + [anon_sym_RPAREN] = ACTIONS(3640), + [anon_sym_RBRACE] = ACTIONS(3640), + [anon_sym_LT] = ACTIONS(4291), + [anon_sym_GT] = ACTIONS(3638), + [anon_sym_in] = ACTIONS(3640), + [anon_sym_QMARK] = ACTIONS(3638), + [anon_sym_BANG] = ACTIONS(3638), + [anon_sym_PLUS_PLUS] = ACTIONS(3640), + [anon_sym_DASH_DASH] = ACTIONS(3640), + [anon_sym_PLUS] = ACTIONS(3638), + [anon_sym_DASH] = ACTIONS(3638), + [anon_sym_STAR] = ACTIONS(3638), + [anon_sym_SLASH] = ACTIONS(3638), + [anon_sym_PERCENT] = ACTIONS(3638), + [anon_sym_CARET] = ACTIONS(3638), + [anon_sym_PIPE] = ACTIONS(3638), + [anon_sym_AMP] = ACTIONS(3638), + [anon_sym_LT_LT] = ACTIONS(3638), + [anon_sym_GT_GT] = ACTIONS(3638), + [anon_sym_GT_GT_GT] = ACTIONS(3638), + [anon_sym_EQ_EQ] = ACTIONS(3640), + [anon_sym_BANG_EQ] = ACTIONS(3640), + [anon_sym_GT_EQ] = ACTIONS(3640), + [anon_sym_LT_EQ] = ACTIONS(3640), + [anon_sym_DOT] = ACTIONS(3638), + [anon_sym_EQ_GT] = ACTIONS(3640), + [anon_sym_switch] = ACTIONS(3640), + [anon_sym_when] = ACTIONS(3640), + [anon_sym_DOT_DOT] = ACTIONS(3640), + [anon_sym_and] = ACTIONS(3640), + [anon_sym_or] = ACTIONS(3640), + [anon_sym_PLUS_EQ] = ACTIONS(3640), + [anon_sym_DASH_EQ] = ACTIONS(3640), + [anon_sym_STAR_EQ] = ACTIONS(3640), + [anon_sym_SLASH_EQ] = ACTIONS(3640), + [anon_sym_PERCENT_EQ] = ACTIONS(3640), + [anon_sym_AMP_EQ] = ACTIONS(3640), + [anon_sym_CARET_EQ] = ACTIONS(3640), + [anon_sym_PIPE_EQ] = ACTIONS(3640), + [anon_sym_LT_LT_EQ] = ACTIONS(3640), + [anon_sym_GT_GT_EQ] = ACTIONS(3640), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3640), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3640), + [anon_sym_AMP_AMP] = ACTIONS(3640), + [anon_sym_PIPE_PIPE] = ACTIONS(3640), + [anon_sym_QMARK_QMARK] = ACTIONS(3638), + [anon_sym_on] = ACTIONS(3640), + [anon_sym_equals] = ACTIONS(3640), + [anon_sym_by] = ACTIONS(3640), + [anon_sym_as] = ACTIONS(3640), + [anon_sym_is] = ACTIONS(3640), + [anon_sym_DASH_GT] = ACTIONS(3640), + [anon_sym_with] = ACTIONS(3640), + [aux_sym_preproc_if_token3] = ACTIONS(3640), + [aux_sym_preproc_else_token1] = ACTIONS(3640), + [aux_sym_preproc_elif_token1] = ACTIONS(3640), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -440845,9 +440468,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(4092), }, [2643] = { + [sym__variable_designation] = STATE(3449), + [sym_parenthesized_variable_designation] = STATE(3352), + [sym_identifier] = STATE(3355), + [sym__reserved_identifier] = STATE(3205), [sym_preproc_region] = STATE(2643), [sym_preproc_endregion] = STATE(2643), [sym_preproc_line] = STATE(2643), @@ -440857,70 +440483,66 @@ 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(3650), - [anon_sym_alias] = ACTIONS(3650), - [anon_sym_global] = ACTIONS(3650), - [anon_sym_LBRACK] = ACTIONS(3652), - [anon_sym_COLON] = ACTIONS(3652), - [anon_sym_COMMA] = ACTIONS(3652), - [anon_sym_LPAREN] = ACTIONS(3652), - [anon_sym_RPAREN] = ACTIONS(3652), - [anon_sym_LBRACE] = ACTIONS(3652), - [anon_sym_RBRACE] = ACTIONS(3652), - [anon_sym_file] = ACTIONS(3650), - [anon_sym_LT] = ACTIONS(3650), - [anon_sym_GT] = ACTIONS(3650), - [anon_sym_where] = ACTIONS(3650), - [anon_sym_QMARK] = ACTIONS(3650), - [anon_sym_notnull] = ACTIONS(3650), - [anon_sym_unmanaged] = ACTIONS(3650), - [anon_sym_BANG] = ACTIONS(3650), - [anon_sym_PLUS_PLUS] = ACTIONS(3652), - [anon_sym_DASH_DASH] = ACTIONS(3652), - [anon_sym_PLUS] = ACTIONS(3650), - [anon_sym_DASH] = ACTIONS(3650), - [anon_sym_STAR] = ACTIONS(3652), - [anon_sym_SLASH] = ACTIONS(3650), - [anon_sym_PERCENT] = ACTIONS(3652), - [anon_sym_CARET] = ACTIONS(3652), - [anon_sym_PIPE] = ACTIONS(3650), - [anon_sym_AMP] = ACTIONS(3650), - [anon_sym_LT_LT] = ACTIONS(3652), - [anon_sym_GT_GT] = ACTIONS(3650), - [anon_sym_GT_GT_GT] = ACTIONS(3652), - [anon_sym_EQ_EQ] = ACTIONS(3652), - [anon_sym_BANG_EQ] = ACTIONS(3652), - [anon_sym_GT_EQ] = ACTIONS(3652), - [anon_sym_LT_EQ] = ACTIONS(3652), - [anon_sym_DOT] = ACTIONS(3650), - [anon_sym_scoped] = ACTIONS(3650), - [anon_sym_var] = ACTIONS(3650), - [anon_sym_yield] = ACTIONS(3650), - [anon_sym_switch] = ACTIONS(3650), - [anon_sym_when] = ACTIONS(3650), - [sym_discard] = ACTIONS(3650), - [anon_sym_DOT_DOT] = ACTIONS(3652), - [anon_sym_and] = ACTIONS(3650), - [anon_sym_or] = ACTIONS(3650), - [anon_sym_AMP_AMP] = ACTIONS(3652), - [anon_sym_PIPE_PIPE] = ACTIONS(3652), - [anon_sym_QMARK_QMARK] = ACTIONS(3652), - [anon_sym_from] = ACTIONS(3650), - [anon_sym_into] = ACTIONS(3650), - [anon_sym_join] = ACTIONS(3650), - [anon_sym_on] = ACTIONS(3650), - [anon_sym_equals] = ACTIONS(3650), - [anon_sym_let] = ACTIONS(3650), - [anon_sym_orderby] = ACTIONS(3650), - [anon_sym_ascending] = ACTIONS(3650), - [anon_sym_descending] = ACTIONS(3650), - [anon_sym_group] = ACTIONS(3650), - [anon_sym_by] = ACTIONS(3650), - [anon_sym_select] = ACTIONS(3650), - [anon_sym_as] = ACTIONS(3650), - [anon_sym_is] = ACTIONS(3650), - [anon_sym_DASH_GT] = ACTIONS(3652), - [anon_sym_with] = ACTIONS(3650), + [sym__identifier_token] = ACTIONS(3798), + [anon_sym_alias] = ACTIONS(3800), + [anon_sym_global] = ACTIONS(3800), + [anon_sym_LBRACK] = ACTIONS(3893), + [anon_sym_LPAREN] = ACTIONS(3893), + [anon_sym_file] = ACTIONS(3800), + [anon_sym_LT] = ACTIONS(3895), + [anon_sym_GT] = ACTIONS(3895), + [anon_sym_in] = ACTIONS(3895), + [anon_sym_where] = ACTIONS(3800), + [anon_sym_QMARK] = ACTIONS(3895), + [anon_sym_notnull] = ACTIONS(3800), + [anon_sym_unmanaged] = ACTIONS(3800), + [anon_sym_BANG] = ACTIONS(3895), + [anon_sym_PLUS_PLUS] = ACTIONS(3893), + [anon_sym_DASH_DASH] = ACTIONS(3893), + [anon_sym_PLUS] = ACTIONS(3895), + [anon_sym_DASH] = ACTIONS(3895), + [anon_sym_STAR] = ACTIONS(3893), + [anon_sym_SLASH] = ACTIONS(3895), + [anon_sym_PERCENT] = ACTIONS(3893), + [anon_sym_CARET] = ACTIONS(3893), + [anon_sym_PIPE] = ACTIONS(3895), + [anon_sym_AMP] = ACTIONS(3895), + [anon_sym_LT_LT] = ACTIONS(3893), + [anon_sym_GT_GT] = ACTIONS(3895), + [anon_sym_GT_GT_GT] = ACTIONS(3893), + [anon_sym_EQ_EQ] = ACTIONS(3893), + [anon_sym_BANG_EQ] = ACTIONS(3893), + [anon_sym_GT_EQ] = ACTIONS(3893), + [anon_sym_LT_EQ] = ACTIONS(3893), + [anon_sym_DOT] = ACTIONS(3895), + [anon_sym_scoped] = ACTIONS(3800), + [anon_sym_var] = ACTIONS(3800), + [anon_sym_yield] = ACTIONS(3800), + [anon_sym_switch] = ACTIONS(3895), + [anon_sym_when] = ACTIONS(3800), + [sym_discard] = ACTIONS(3877), + [anon_sym_DOT_DOT] = ACTIONS(3893), + [anon_sym_and] = ACTIONS(3895), + [anon_sym_or] = ACTIONS(3895), + [anon_sym_AMP_AMP] = ACTIONS(3893), + [anon_sym_PIPE_PIPE] = ACTIONS(3893), + [anon_sym_QMARK_QMARK] = ACTIONS(3893), + [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(3895), + [anon_sym_is] = ACTIONS(3895), + [anon_sym_DASH_GT] = ACTIONS(3893), + [anon_sym_with] = ACTIONS(3895), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -440933,6 +440555,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2644] = { + [sym__variable_designation] = STATE(3413), + [sym_parenthesized_variable_designation] = STATE(3352), + [sym_identifier] = STATE(3355), + [sym__reserved_identifier] = STATE(3205), [sym_preproc_region] = STATE(2644), [sym_preproc_endregion] = STATE(2644), [sym_preproc_line] = STATE(2644), @@ -440942,70 +440568,66 @@ 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), - [anon_sym_SEMI] = ACTIONS(3445), - [anon_sym_EQ] = ACTIONS(3447), - [anon_sym_LBRACK] = ACTIONS(3445), - [anon_sym_COLON] = ACTIONS(3445), - [anon_sym_COMMA] = ACTIONS(3445), - [anon_sym_RBRACK] = ACTIONS(3445), - [anon_sym_LPAREN] = ACTIONS(3445), - [anon_sym_RPAREN] = ACTIONS(3445), - [anon_sym_RBRACE] = ACTIONS(3445), - [anon_sym_LT] = ACTIONS(3447), - [anon_sym_GT] = ACTIONS(3447), - [anon_sym_in] = ACTIONS(3447), - [anon_sym_QMARK] = ACTIONS(3447), - [anon_sym_BANG] = ACTIONS(3447), - [anon_sym_PLUS_PLUS] = ACTIONS(3445), - [anon_sym_DASH_DASH] = ACTIONS(3445), - [anon_sym_PLUS] = ACTIONS(3447), - [anon_sym_DASH] = ACTIONS(3447), - [anon_sym_STAR] = ACTIONS(3447), - [anon_sym_SLASH] = ACTIONS(3447), - [anon_sym_PERCENT] = ACTIONS(3447), - [anon_sym_CARET] = ACTIONS(3447), - [anon_sym_PIPE] = ACTIONS(3447), - [anon_sym_AMP] = ACTIONS(3447), - [anon_sym_LT_LT] = ACTIONS(3447), - [anon_sym_GT_GT] = ACTIONS(3447), - [anon_sym_GT_GT_GT] = ACTIONS(3447), - [anon_sym_EQ_EQ] = ACTIONS(3445), - [anon_sym_BANG_EQ] = ACTIONS(3445), - [anon_sym_GT_EQ] = ACTIONS(3445), - [anon_sym_LT_EQ] = ACTIONS(3445), - [anon_sym_DOT] = ACTIONS(3447), - [anon_sym_EQ_GT] = ACTIONS(3445), - [anon_sym_switch] = ACTIONS(3445), - [anon_sym_when] = ACTIONS(3445), - [anon_sym_DOT_DOT] = ACTIONS(3445), - [anon_sym_and] = ACTIONS(3445), - [anon_sym_or] = ACTIONS(3445), - [anon_sym_PLUS_EQ] = ACTIONS(3445), - [anon_sym_DASH_EQ] = ACTIONS(3445), - [anon_sym_STAR_EQ] = ACTIONS(3445), - [anon_sym_SLASH_EQ] = ACTIONS(3445), - [anon_sym_PERCENT_EQ] = ACTIONS(3445), - [anon_sym_AMP_EQ] = ACTIONS(3445), - [anon_sym_CARET_EQ] = ACTIONS(3445), - [anon_sym_PIPE_EQ] = ACTIONS(3445), - [anon_sym_LT_LT_EQ] = ACTIONS(3445), - [anon_sym_GT_GT_EQ] = ACTIONS(3445), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3445), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3445), - [anon_sym_AMP_AMP] = ACTIONS(3445), - [anon_sym_PIPE_PIPE] = ACTIONS(3445), - [anon_sym_QMARK_QMARK] = ACTIONS(3447), - [anon_sym_into] = ACTIONS(3445), - [anon_sym_on] = ACTIONS(3445), - [anon_sym_equals] = ACTIONS(3445), - [anon_sym_by] = ACTIONS(3445), - [anon_sym_as] = ACTIONS(3445), - [anon_sym_is] = ACTIONS(3445), - [anon_sym_DASH_GT] = ACTIONS(3445), - [anon_sym_with] = ACTIONS(3445), - [aux_sym_preproc_if_token3] = ACTIONS(3445), - [aux_sym_preproc_else_token1] = ACTIONS(3445), - [aux_sym_preproc_elif_token1] = ACTIONS(3445), + [sym__identifier_token] = ACTIONS(3798), + [anon_sym_alias] = ACTIONS(3800), + [anon_sym_global] = ACTIONS(3800), + [anon_sym_LBRACK] = ACTIONS(3885), + [anon_sym_LPAREN] = ACTIONS(3885), + [anon_sym_file] = ACTIONS(3800), + [anon_sym_LT] = ACTIONS(3887), + [anon_sym_GT] = ACTIONS(3887), + [anon_sym_in] = ACTIONS(3887), + [anon_sym_where] = ACTIONS(3800), + [anon_sym_QMARK] = ACTIONS(3887), + [anon_sym_notnull] = ACTIONS(3800), + [anon_sym_unmanaged] = ACTIONS(3800), + [anon_sym_BANG] = ACTIONS(3887), + [anon_sym_PLUS_PLUS] = ACTIONS(3885), + [anon_sym_DASH_DASH] = ACTIONS(3885), + [anon_sym_PLUS] = ACTIONS(3887), + [anon_sym_DASH] = ACTIONS(3887), + [anon_sym_STAR] = ACTIONS(3885), + [anon_sym_SLASH] = ACTIONS(3887), + [anon_sym_PERCENT] = ACTIONS(3885), + [anon_sym_CARET] = ACTIONS(3885), + [anon_sym_PIPE] = ACTIONS(3887), + [anon_sym_AMP] = ACTIONS(3887), + [anon_sym_LT_LT] = ACTIONS(3885), + [anon_sym_GT_GT] = ACTIONS(3887), + [anon_sym_GT_GT_GT] = ACTIONS(3885), + [anon_sym_EQ_EQ] = ACTIONS(3885), + [anon_sym_BANG_EQ] = ACTIONS(3885), + [anon_sym_GT_EQ] = ACTIONS(3885), + [anon_sym_LT_EQ] = ACTIONS(3885), + [anon_sym_DOT] = ACTIONS(3887), + [anon_sym_scoped] = ACTIONS(3800), + [anon_sym_var] = ACTIONS(3800), + [anon_sym_yield] = ACTIONS(3800), + [anon_sym_switch] = ACTIONS(3887), + [anon_sym_when] = ACTIONS(3800), + [sym_discard] = ACTIONS(3877), + [anon_sym_DOT_DOT] = ACTIONS(3885), + [anon_sym_and] = ACTIONS(3887), + [anon_sym_or] = ACTIONS(3887), + [anon_sym_AMP_AMP] = ACTIONS(3885), + [anon_sym_PIPE_PIPE] = ACTIONS(3885), + [anon_sym_QMARK_QMARK] = ACTIONS(3885), + [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(3887), + [anon_sym_is] = ACTIONS(3887), + [anon_sym_DASH_GT] = ACTIONS(3885), + [anon_sym_with] = ACTIONS(3887), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -441018,6 +440640,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2645] = { + [sym__variable_designation] = STATE(3411), + [sym_parenthesized_variable_designation] = STATE(3352), + [sym_identifier] = STATE(3355), + [sym__reserved_identifier] = STATE(3205), [sym_preproc_region] = STATE(2645), [sym_preproc_endregion] = STATE(2645), [sym_preproc_line] = STATE(2645), @@ -441027,70 +440653,66 @@ 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(3652), - [anon_sym_EQ] = ACTIONS(3650), - [anon_sym_LBRACK] = ACTIONS(3652), - [anon_sym_COLON] = ACTIONS(3652), - [anon_sym_COMMA] = ACTIONS(3652), - [anon_sym_RBRACK] = ACTIONS(3652), - [anon_sym_LPAREN] = ACTIONS(3652), - [anon_sym_RPAREN] = ACTIONS(3652), - [anon_sym_RBRACE] = ACTIONS(3652), - [anon_sym_LT] = ACTIONS(3650), - [anon_sym_GT] = ACTIONS(3650), - [anon_sym_in] = ACTIONS(3650), - [anon_sym_QMARK] = ACTIONS(3650), - [anon_sym_BANG] = ACTIONS(3650), - [anon_sym_PLUS_PLUS] = ACTIONS(3652), - [anon_sym_DASH_DASH] = ACTIONS(3652), - [anon_sym_PLUS] = ACTIONS(3650), - [anon_sym_DASH] = ACTIONS(3650), - [anon_sym_STAR] = ACTIONS(3650), - [anon_sym_SLASH] = ACTIONS(3650), - [anon_sym_PERCENT] = ACTIONS(3650), - [anon_sym_CARET] = ACTIONS(3650), - [anon_sym_PIPE] = ACTIONS(3650), - [anon_sym_AMP] = ACTIONS(3650), - [anon_sym_LT_LT] = ACTIONS(3650), - [anon_sym_GT_GT] = ACTIONS(3650), - [anon_sym_GT_GT_GT] = ACTIONS(3650), - [anon_sym_EQ_EQ] = ACTIONS(3652), - [anon_sym_BANG_EQ] = ACTIONS(3652), - [anon_sym_GT_EQ] = ACTIONS(3652), - [anon_sym_LT_EQ] = ACTIONS(3652), - [anon_sym_DOT] = ACTIONS(3650), - [anon_sym_EQ_GT] = ACTIONS(3652), - [anon_sym_switch] = ACTIONS(3652), - [anon_sym_when] = ACTIONS(3652), - [anon_sym_DOT_DOT] = ACTIONS(3652), - [anon_sym_and] = ACTIONS(3652), - [anon_sym_or] = ACTIONS(3652), - [anon_sym_PLUS_EQ] = ACTIONS(3652), - [anon_sym_DASH_EQ] = ACTIONS(3652), - [anon_sym_STAR_EQ] = ACTIONS(3652), - [anon_sym_SLASH_EQ] = ACTIONS(3652), - [anon_sym_PERCENT_EQ] = ACTIONS(3652), - [anon_sym_AMP_EQ] = ACTIONS(3652), - [anon_sym_CARET_EQ] = ACTIONS(3652), - [anon_sym_PIPE_EQ] = ACTIONS(3652), - [anon_sym_LT_LT_EQ] = ACTIONS(3652), - [anon_sym_GT_GT_EQ] = ACTIONS(3652), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3652), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3652), - [anon_sym_AMP_AMP] = ACTIONS(3652), - [anon_sym_PIPE_PIPE] = ACTIONS(3652), - [anon_sym_QMARK_QMARK] = ACTIONS(3650), - [anon_sym_into] = ACTIONS(3652), - [anon_sym_on] = ACTIONS(3652), - [anon_sym_equals] = ACTIONS(3652), - [anon_sym_by] = ACTIONS(3652), - [anon_sym_as] = ACTIONS(3652), - [anon_sym_is] = ACTIONS(3652), - [anon_sym_DASH_GT] = ACTIONS(3652), - [anon_sym_with] = ACTIONS(3652), - [aux_sym_preproc_if_token3] = ACTIONS(3652), - [aux_sym_preproc_else_token1] = ACTIONS(3652), - [aux_sym_preproc_elif_token1] = ACTIONS(3652), + [sym__identifier_token] = ACTIONS(3798), + [anon_sym_alias] = ACTIONS(3800), + [anon_sym_global] = ACTIONS(3800), + [anon_sym_LBRACK] = ACTIONS(3939), + [anon_sym_LPAREN] = ACTIONS(3939), + [anon_sym_file] = ACTIONS(3800), + [anon_sym_LT] = ACTIONS(3941), + [anon_sym_GT] = ACTIONS(3941), + [anon_sym_in] = ACTIONS(3941), + [anon_sym_where] = ACTIONS(3800), + [anon_sym_QMARK] = ACTIONS(3941), + [anon_sym_notnull] = ACTIONS(3800), + [anon_sym_unmanaged] = ACTIONS(3800), + [anon_sym_BANG] = ACTIONS(3941), + [anon_sym_PLUS_PLUS] = ACTIONS(3939), + [anon_sym_DASH_DASH] = ACTIONS(3939), + [anon_sym_PLUS] = ACTIONS(3941), + [anon_sym_DASH] = ACTIONS(3941), + [anon_sym_STAR] = ACTIONS(3939), + [anon_sym_SLASH] = ACTIONS(3941), + [anon_sym_PERCENT] = ACTIONS(3939), + [anon_sym_CARET] = ACTIONS(3939), + [anon_sym_PIPE] = ACTIONS(3941), + [anon_sym_AMP] = ACTIONS(3941), + [anon_sym_LT_LT] = ACTIONS(3939), + [anon_sym_GT_GT] = ACTIONS(3941), + [anon_sym_GT_GT_GT] = ACTIONS(3939), + [anon_sym_EQ_EQ] = ACTIONS(3939), + [anon_sym_BANG_EQ] = ACTIONS(3939), + [anon_sym_GT_EQ] = ACTIONS(3939), + [anon_sym_LT_EQ] = ACTIONS(3939), + [anon_sym_DOT] = ACTIONS(3941), + [anon_sym_scoped] = ACTIONS(3800), + [anon_sym_var] = ACTIONS(3800), + [anon_sym_yield] = ACTIONS(3800), + [anon_sym_switch] = ACTIONS(3941), + [anon_sym_when] = ACTIONS(3800), + [sym_discard] = ACTIONS(3877), + [anon_sym_DOT_DOT] = ACTIONS(3939), + [anon_sym_and] = ACTIONS(3941), + [anon_sym_or] = ACTIONS(3941), + [anon_sym_AMP_AMP] = ACTIONS(3939), + [anon_sym_PIPE_PIPE] = ACTIONS(3939), + [anon_sym_QMARK_QMARK] = ACTIONS(3939), + [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(3941), + [anon_sym_is] = ACTIONS(3941), + [anon_sym_DASH_GT] = ACTIONS(3939), + [anon_sym_with] = ACTIONS(3941), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -441103,7 +440725,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2646] = { - [sym_type_argument_list] = STATE(2810), [sym_preproc_region] = STATE(2646), [sym_preproc_endregion] = STATE(2646), [sym_preproc_line] = STATE(2646), @@ -441113,69 +440734,70 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2646), [sym_preproc_define] = STATE(2646), [sym_preproc_undef] = STATE(2646), - [anon_sym_SEMI] = ACTIONS(3662), - [anon_sym_EQ] = ACTIONS(3660), - [anon_sym_LBRACK] = ACTIONS(3662), - [anon_sym_COLON] = ACTIONS(3662), - [anon_sym_COMMA] = ACTIONS(3662), - [anon_sym_RBRACK] = ACTIONS(3662), - [anon_sym_LPAREN] = ACTIONS(3662), - [anon_sym_RPAREN] = ACTIONS(3662), - [anon_sym_RBRACE] = ACTIONS(3662), - [anon_sym_LT] = ACTIONS(4293), - [anon_sym_GT] = ACTIONS(3660), - [anon_sym_in] = ACTIONS(3662), - [anon_sym_QMARK] = ACTIONS(3660), - [anon_sym_BANG] = ACTIONS(3660), - [anon_sym_PLUS_PLUS] = ACTIONS(3662), - [anon_sym_DASH_DASH] = ACTIONS(3662), - [anon_sym_PLUS] = ACTIONS(3660), - [anon_sym_DASH] = ACTIONS(3660), - [anon_sym_STAR] = ACTIONS(3660), - [anon_sym_SLASH] = ACTIONS(3660), - [anon_sym_PERCENT] = ACTIONS(3660), - [anon_sym_CARET] = ACTIONS(3660), - [anon_sym_PIPE] = ACTIONS(3660), - [anon_sym_AMP] = ACTIONS(3660), - [anon_sym_LT_LT] = ACTIONS(3660), - [anon_sym_GT_GT] = ACTIONS(3660), - [anon_sym_GT_GT_GT] = ACTIONS(3660), - [anon_sym_EQ_EQ] = ACTIONS(3662), - [anon_sym_BANG_EQ] = ACTIONS(3662), - [anon_sym_GT_EQ] = ACTIONS(3662), - [anon_sym_LT_EQ] = ACTIONS(3662), - [anon_sym_DOT] = ACTIONS(3660), - [anon_sym_EQ_GT] = ACTIONS(3662), - [anon_sym_switch] = ACTIONS(3662), - [anon_sym_when] = ACTIONS(3662), - [anon_sym_DOT_DOT] = ACTIONS(3662), - [anon_sym_and] = ACTIONS(3662), - [anon_sym_or] = ACTIONS(3662), - [anon_sym_PLUS_EQ] = ACTIONS(3662), - [anon_sym_DASH_EQ] = ACTIONS(3662), - [anon_sym_STAR_EQ] = ACTIONS(3662), - [anon_sym_SLASH_EQ] = ACTIONS(3662), - [anon_sym_PERCENT_EQ] = ACTIONS(3662), - [anon_sym_AMP_EQ] = ACTIONS(3662), - [anon_sym_CARET_EQ] = ACTIONS(3662), - [anon_sym_PIPE_EQ] = ACTIONS(3662), - [anon_sym_LT_LT_EQ] = ACTIONS(3662), - [anon_sym_GT_GT_EQ] = ACTIONS(3662), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3662), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3662), - [anon_sym_AMP_AMP] = ACTIONS(3662), - [anon_sym_PIPE_PIPE] = ACTIONS(3662), - [anon_sym_QMARK_QMARK] = ACTIONS(3660), - [anon_sym_on] = ACTIONS(3662), - [anon_sym_equals] = ACTIONS(3662), - [anon_sym_by] = ACTIONS(3662), - [anon_sym_as] = ACTIONS(3662), - [anon_sym_is] = ACTIONS(3662), - [anon_sym_DASH_GT] = ACTIONS(3662), - [anon_sym_with] = ACTIONS(3662), - [aux_sym_preproc_if_token3] = ACTIONS(3662), - [aux_sym_preproc_else_token1] = ACTIONS(3662), - [aux_sym_preproc_elif_token1] = ACTIONS(3662), + [sym__identifier_token] = ACTIONS(4294), + [anon_sym_extern] = ACTIONS(4294), + [anon_sym_alias] = ACTIONS(4294), + [anon_sym_global] = ACTIONS(4294), + [anon_sym_using] = ACTIONS(4294), + [anon_sym_unsafe] = ACTIONS(4294), + [anon_sym_EQ] = ACTIONS(4296), + [anon_sym_static] = ACTIONS(4294), + [anon_sym_LBRACK] = ACTIONS(4296), + [anon_sym_LPAREN] = ACTIONS(4296), + [anon_sym_event] = ACTIONS(4294), + [anon_sym_namespace] = ACTIONS(4294), + [anon_sym_class] = ACTIONS(4294), + [anon_sym_ref] = ACTIONS(4294), + [anon_sym_struct] = ACTIONS(4294), + [anon_sym_enum] = ACTIONS(4294), + [anon_sym_RBRACE] = ACTIONS(4296), + [anon_sym_interface] = ACTIONS(4294), + [anon_sym_delegate] = ACTIONS(4294), + [anon_sym_record] = ACTIONS(4294), + [anon_sym_abstract] = ACTIONS(4294), + [anon_sym_async] = ACTIONS(4294), + [anon_sym_const] = ACTIONS(4294), + [anon_sym_file] = ACTIONS(4294), + [anon_sym_fixed] = ACTIONS(4294), + [anon_sym_internal] = ACTIONS(4294), + [anon_sym_new] = ACTIONS(4294), + [anon_sym_override] = ACTIONS(4294), + [anon_sym_partial] = ACTIONS(4294), + [anon_sym_private] = ACTIONS(4294), + [anon_sym_protected] = ACTIONS(4294), + [anon_sym_public] = ACTIONS(4294), + [anon_sym_readonly] = ACTIONS(4294), + [anon_sym_required] = ACTIONS(4294), + [anon_sym_sealed] = ACTIONS(4294), + [anon_sym_virtual] = ACTIONS(4294), + [anon_sym_volatile] = ACTIONS(4294), + [anon_sym_where] = ACTIONS(4294), + [anon_sym_notnull] = ACTIONS(4294), + [anon_sym_unmanaged] = ACTIONS(4294), + [anon_sym_TILDE] = ACTIONS(4296), + [anon_sym_implicit] = ACTIONS(4294), + [anon_sym_explicit] = ACTIONS(4294), + [anon_sym_scoped] = ACTIONS(4294), + [anon_sym_var] = ACTIONS(4294), + [sym_predefined_type] = ACTIONS(4294), + [anon_sym_yield] = ACTIONS(4294), + [anon_sym_when] = ACTIONS(4294), + [anon_sym_from] = ACTIONS(4294), + [anon_sym_into] = ACTIONS(4294), + [anon_sym_join] = ACTIONS(4294), + [anon_sym_on] = ACTIONS(4294), + [anon_sym_equals] = ACTIONS(4294), + [anon_sym_let] = ACTIONS(4294), + [anon_sym_orderby] = ACTIONS(4294), + [anon_sym_ascending] = ACTIONS(4294), + [anon_sym_descending] = ACTIONS(4294), + [anon_sym_group] = ACTIONS(4294), + [anon_sym_by] = ACTIONS(4294), + [anon_sym_select] = ACTIONS(4294), + [aux_sym_preproc_if_token1] = ACTIONS(4296), + [aux_sym_preproc_if_token3] = ACTIONS(4296), + [aux_sym_preproc_else_token1] = ACTIONS(4296), + [aux_sym_preproc_elif_token1] = ACTIONS(4296), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -441197,80 +440819,79 @@ 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), - [sym__identifier_token] = ACTIONS(4296), - [anon_sym_extern] = ACTIONS(4296), - [anon_sym_alias] = ACTIONS(4296), - [anon_sym_global] = ACTIONS(4296), - [anon_sym_using] = ACTIONS(4296), - [anon_sym_unsafe] = ACTIONS(4296), - [anon_sym_EQ] = ACTIONS(4298), - [anon_sym_static] = ACTIONS(4296), - [anon_sym_LBRACK] = ACTIONS(4300), - [anon_sym_LPAREN] = ACTIONS(4300), - [anon_sym_event] = ACTIONS(4296), - [anon_sym_namespace] = ACTIONS(4296), - [anon_sym_class] = ACTIONS(4296), - [anon_sym_ref] = ACTIONS(4296), - [anon_sym_struct] = ACTIONS(4296), - [anon_sym_enum] = ACTIONS(4296), - [anon_sym_RBRACE] = ACTIONS(4300), - [anon_sym_interface] = ACTIONS(4296), - [anon_sym_delegate] = ACTIONS(4296), - [anon_sym_record] = ACTIONS(4296), - [anon_sym_abstract] = ACTIONS(4296), - [anon_sym_async] = ACTIONS(4296), - [anon_sym_const] = ACTIONS(4296), - [anon_sym_file] = ACTIONS(4296), - [anon_sym_fixed] = ACTIONS(4296), - [anon_sym_internal] = ACTIONS(4296), - [anon_sym_new] = ACTIONS(4296), - [anon_sym_override] = ACTIONS(4296), - [anon_sym_partial] = ACTIONS(4296), - [anon_sym_private] = ACTIONS(4296), - [anon_sym_protected] = ACTIONS(4296), - [anon_sym_public] = ACTIONS(4296), - [anon_sym_readonly] = ACTIONS(4296), - [anon_sym_required] = ACTIONS(4296), - [anon_sym_sealed] = ACTIONS(4296), - [anon_sym_virtual] = ACTIONS(4296), - [anon_sym_volatile] = ACTIONS(4296), - [anon_sym_where] = ACTIONS(4296), - [anon_sym_notnull] = ACTIONS(4296), - [anon_sym_unmanaged] = ACTIONS(4296), - [anon_sym_TILDE] = ACTIONS(4300), - [anon_sym_implicit] = ACTIONS(4296), - [anon_sym_explicit] = ACTIONS(4296), - [anon_sym_scoped] = ACTIONS(4296), - [anon_sym_var] = ACTIONS(4296), - [sym_predefined_type] = ACTIONS(4296), - [anon_sym_yield] = ACTIONS(4296), - [anon_sym_when] = ACTIONS(4296), - [anon_sym_from] = ACTIONS(4296), - [anon_sym_into] = ACTIONS(4296), - [anon_sym_join] = ACTIONS(4296), - [anon_sym_on] = ACTIONS(4296), - [anon_sym_equals] = ACTIONS(4296), - [anon_sym_let] = ACTIONS(4296), - [anon_sym_orderby] = ACTIONS(4296), - [anon_sym_ascending] = ACTIONS(4296), - [anon_sym_descending] = ACTIONS(4296), - [anon_sym_group] = ACTIONS(4296), - [anon_sym_by] = ACTIONS(4296), - [anon_sym_select] = ACTIONS(4296), - [aux_sym_preproc_if_token1] = ACTIONS(4300), - [aux_sym_preproc_if_token3] = ACTIONS(4300), - [aux_sym_preproc_else_token1] = ACTIONS(4300), - [aux_sym_preproc_elif_token1] = ACTIONS(4300), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_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(3961), + [anon_sym_alias] = ACTIONS(3961), + [anon_sym_global] = ACTIONS(3961), + [anon_sym_LBRACK] = ACTIONS(4033), + [anon_sym_COLON] = ACTIONS(3963), + [anon_sym_COMMA] = ACTIONS(3963), + [anon_sym_LPAREN] = ACTIONS(3963), + [anon_sym_LBRACE] = ACTIONS(3963), + [anon_sym_file] = ACTIONS(3961), + [anon_sym_LT] = ACTIONS(3961), + [anon_sym_GT] = ACTIONS(3961), + [anon_sym_where] = ACTIONS(3961), + [anon_sym_QMARK] = ACTIONS(4298), + [anon_sym_notnull] = ACTIONS(3961), + [anon_sym_unmanaged] = ACTIONS(3961), + [anon_sym_BANG] = ACTIONS(3961), + [anon_sym_PLUS_PLUS] = ACTIONS(3963), + [anon_sym_DASH_DASH] = ACTIONS(3963), + [anon_sym_PLUS] = ACTIONS(3961), + [anon_sym_DASH] = ACTIONS(3961), + [anon_sym_STAR] = ACTIONS(4039), + [anon_sym_SLASH] = ACTIONS(3961), + [anon_sym_PERCENT] = ACTIONS(3963), + [anon_sym_CARET] = ACTIONS(3963), + [anon_sym_PIPE] = ACTIONS(3961), + [anon_sym_AMP] = ACTIONS(3961), + [anon_sym_LT_LT] = ACTIONS(3963), + [anon_sym_GT_GT] = ACTIONS(3961), + [anon_sym_GT_GT_GT] = ACTIONS(3963), + [anon_sym_EQ_EQ] = ACTIONS(3963), + [anon_sym_BANG_EQ] = ACTIONS(3963), + [anon_sym_GT_EQ] = ACTIONS(3963), + [anon_sym_LT_EQ] = ACTIONS(3963), + [anon_sym_DOT] = ACTIONS(4301), + [anon_sym_scoped] = ACTIONS(3961), + [anon_sym_var] = ACTIONS(3961), + [anon_sym_yield] = ACTIONS(3961), + [anon_sym_switch] = ACTIONS(3961), + [anon_sym_when] = ACTIONS(3961), + [sym_discard] = ACTIONS(3961), + [anon_sym_DOT_DOT] = ACTIONS(3963), + [anon_sym_and] = ACTIONS(3961), + [anon_sym_or] = ACTIONS(3961), + [anon_sym_AMP_AMP] = ACTIONS(3963), + [anon_sym_PIPE_PIPE] = ACTIONS(3963), + [anon_sym_QMARK_QMARK] = ACTIONS(3963), + [anon_sym_from] = ACTIONS(3961), + [anon_sym_into] = ACTIONS(3961), + [anon_sym_join] = ACTIONS(3961), + [anon_sym_on] = ACTIONS(3961), + [anon_sym_equals] = ACTIONS(3961), + [anon_sym_let] = ACTIONS(3961), + [anon_sym_orderby] = ACTIONS(3961), + [anon_sym_ascending] = ACTIONS(3961), + [anon_sym_descending] = ACTIONS(3961), + [anon_sym_group] = ACTIONS(3961), + [anon_sym_by] = ACTIONS(3961), + [anon_sym_select] = ACTIONS(3961), + [anon_sym_as] = ACTIONS(3961), + [anon_sym_is] = ACTIONS(3961), + [anon_sym_DASH_GT] = ACTIONS(4044), + [anon_sym_with] = ACTIONS(3961), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_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(3963), }, [2648] = { [sym_preproc_region] = STATE(2648), @@ -441282,70 +440903,69 @@ 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), - [sym__identifier_token] = ACTIONS(4302), - [anon_sym_extern] = ACTIONS(4302), - [anon_sym_alias] = ACTIONS(4302), - [anon_sym_global] = ACTIONS(4302), - [anon_sym_using] = ACTIONS(4302), - [anon_sym_unsafe] = ACTIONS(4302), - [anon_sym_EQ] = ACTIONS(4304), - [anon_sym_static] = ACTIONS(4302), - [anon_sym_LBRACK] = ACTIONS(4304), - [anon_sym_LPAREN] = ACTIONS(4304), - [anon_sym_event] = ACTIONS(4302), - [anon_sym_namespace] = ACTIONS(4302), - [anon_sym_class] = ACTIONS(4302), - [anon_sym_ref] = ACTIONS(4302), - [anon_sym_struct] = ACTIONS(4302), - [anon_sym_enum] = ACTIONS(4302), - [anon_sym_RBRACE] = ACTIONS(4304), - [anon_sym_interface] = ACTIONS(4302), - [anon_sym_delegate] = ACTIONS(4302), - [anon_sym_record] = ACTIONS(4302), - [anon_sym_abstract] = ACTIONS(4302), - [anon_sym_async] = ACTIONS(4302), - [anon_sym_const] = ACTIONS(4302), - [anon_sym_file] = ACTIONS(4302), - [anon_sym_fixed] = ACTIONS(4302), - [anon_sym_internal] = ACTIONS(4302), - [anon_sym_new] = ACTIONS(4302), - [anon_sym_override] = ACTIONS(4302), - [anon_sym_partial] = ACTIONS(4302), - [anon_sym_private] = ACTIONS(4302), - [anon_sym_protected] = ACTIONS(4302), - [anon_sym_public] = ACTIONS(4302), - [anon_sym_readonly] = ACTIONS(4302), - [anon_sym_required] = ACTIONS(4302), - [anon_sym_sealed] = ACTIONS(4302), - [anon_sym_virtual] = ACTIONS(4302), - [anon_sym_volatile] = ACTIONS(4302), - [anon_sym_where] = ACTIONS(4302), - [anon_sym_notnull] = ACTIONS(4302), - [anon_sym_unmanaged] = ACTIONS(4302), - [anon_sym_TILDE] = ACTIONS(4304), - [anon_sym_implicit] = ACTIONS(4302), - [anon_sym_explicit] = ACTIONS(4302), - [anon_sym_scoped] = ACTIONS(4302), - [anon_sym_var] = ACTIONS(4302), - [sym_predefined_type] = ACTIONS(4302), - [anon_sym_yield] = ACTIONS(4302), - [anon_sym_when] = ACTIONS(4302), - [anon_sym_from] = ACTIONS(4302), - [anon_sym_into] = ACTIONS(4302), - [anon_sym_join] = ACTIONS(4302), - [anon_sym_on] = ACTIONS(4302), - [anon_sym_equals] = ACTIONS(4302), - [anon_sym_let] = ACTIONS(4302), - [anon_sym_orderby] = ACTIONS(4302), - [anon_sym_ascending] = ACTIONS(4302), - [anon_sym_descending] = ACTIONS(4302), - [anon_sym_group] = ACTIONS(4302), - [anon_sym_by] = ACTIONS(4302), - [anon_sym_select] = ACTIONS(4302), - [aux_sym_preproc_if_token1] = ACTIONS(4304), - [aux_sym_preproc_if_token3] = ACTIONS(4304), - [aux_sym_preproc_else_token1] = ACTIONS(4304), - [aux_sym_preproc_elif_token1] = ACTIONS(4304), + [sym__identifier_token] = ACTIONS(4303), + [anon_sym_extern] = ACTIONS(4303), + [anon_sym_alias] = ACTIONS(4303), + [anon_sym_global] = ACTIONS(4303), + [anon_sym_using] = ACTIONS(4303), + [anon_sym_unsafe] = ACTIONS(4303), + [anon_sym_static] = ACTIONS(4303), + [anon_sym_LBRACK] = ACTIONS(4305), + [anon_sym_LPAREN] = ACTIONS(4305), + [anon_sym_event] = ACTIONS(4303), + [anon_sym_namespace] = ACTIONS(4303), + [anon_sym_class] = ACTIONS(4303), + [anon_sym_ref] = ACTIONS(4303), + [anon_sym_struct] = ACTIONS(4303), + [anon_sym_enum] = ACTIONS(4303), + [anon_sym_RBRACE] = ACTIONS(4305), + [anon_sym_interface] = ACTIONS(4303), + [anon_sym_delegate] = ACTIONS(4303), + [anon_sym_record] = ACTIONS(4303), + [anon_sym_abstract] = ACTIONS(4303), + [anon_sym_async] = ACTIONS(4303), + [anon_sym_const] = ACTIONS(4303), + [anon_sym_file] = ACTIONS(4303), + [anon_sym_fixed] = ACTIONS(4303), + [anon_sym_internal] = ACTIONS(4303), + [anon_sym_new] = ACTIONS(4303), + [anon_sym_override] = ACTIONS(4303), + [anon_sym_partial] = ACTIONS(4303), + [anon_sym_private] = ACTIONS(4303), + [anon_sym_protected] = ACTIONS(4303), + [anon_sym_public] = ACTIONS(4303), + [anon_sym_readonly] = ACTIONS(4303), + [anon_sym_required] = ACTIONS(4303), + [anon_sym_sealed] = ACTIONS(4303), + [anon_sym_virtual] = ACTIONS(4303), + [anon_sym_volatile] = ACTIONS(4303), + [anon_sym_where] = ACTIONS(4303), + [anon_sym_notnull] = ACTIONS(4303), + [anon_sym_unmanaged] = ACTIONS(4303), + [anon_sym_TILDE] = ACTIONS(4305), + [anon_sym_implicit] = ACTIONS(4303), + [anon_sym_explicit] = ACTIONS(4303), + [anon_sym_scoped] = ACTIONS(4303), + [anon_sym_var] = ACTIONS(4303), + [sym_predefined_type] = ACTIONS(4303), + [anon_sym_yield] = ACTIONS(4303), + [anon_sym_when] = ACTIONS(4303), + [anon_sym_from] = ACTIONS(4303), + [anon_sym_into] = ACTIONS(4303), + [anon_sym_join] = ACTIONS(4303), + [anon_sym_on] = ACTIONS(4303), + [anon_sym_equals] = ACTIONS(4303), + [anon_sym_let] = ACTIONS(4303), + [anon_sym_orderby] = ACTIONS(4303), + [anon_sym_ascending] = ACTIONS(4303), + [anon_sym_descending] = ACTIONS(4303), + [anon_sym_group] = ACTIONS(4303), + [anon_sym_by] = ACTIONS(4303), + [anon_sym_select] = ACTIONS(4303), + [aux_sym_preproc_if_token1] = ACTIONS(4305), + [aux_sym_preproc_if_token3] = ACTIONS(4305), + [aux_sym_preproc_else_token1] = ACTIONS(4305), + [aux_sym_preproc_elif_token1] = ACTIONS(4305), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -441367,70 +440987,69 @@ 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(4306), - [anon_sym_extern] = ACTIONS(4306), - [anon_sym_alias] = ACTIONS(4306), - [anon_sym_global] = ACTIONS(4306), - [anon_sym_using] = ACTIONS(4306), - [anon_sym_unsafe] = ACTIONS(4306), - [anon_sym_EQ] = ACTIONS(4308), - [anon_sym_static] = ACTIONS(4306), - [anon_sym_LBRACK] = ACTIONS(4310), - [anon_sym_LPAREN] = ACTIONS(4310), - [anon_sym_event] = ACTIONS(4306), - [anon_sym_namespace] = ACTIONS(4306), - [anon_sym_class] = ACTIONS(4306), - [anon_sym_ref] = ACTIONS(4306), - [anon_sym_struct] = ACTIONS(4306), - [anon_sym_enum] = ACTIONS(4306), - [anon_sym_RBRACE] = ACTIONS(4310), - [anon_sym_interface] = ACTIONS(4306), - [anon_sym_delegate] = ACTIONS(4306), - [anon_sym_record] = ACTIONS(4306), - [anon_sym_abstract] = ACTIONS(4306), - [anon_sym_async] = ACTIONS(4306), - [anon_sym_const] = ACTIONS(4306), - [anon_sym_file] = ACTIONS(4306), - [anon_sym_fixed] = ACTIONS(4306), - [anon_sym_internal] = ACTIONS(4306), - [anon_sym_new] = ACTIONS(4306), - [anon_sym_override] = ACTIONS(4306), - [anon_sym_partial] = ACTIONS(4306), - [anon_sym_private] = ACTIONS(4306), - [anon_sym_protected] = ACTIONS(4306), - [anon_sym_public] = ACTIONS(4306), - [anon_sym_readonly] = ACTIONS(4306), - [anon_sym_required] = ACTIONS(4306), - [anon_sym_sealed] = ACTIONS(4306), - [anon_sym_virtual] = ACTIONS(4306), - [anon_sym_volatile] = ACTIONS(4306), - [anon_sym_where] = ACTIONS(4306), - [anon_sym_notnull] = ACTIONS(4306), - [anon_sym_unmanaged] = ACTIONS(4306), - [anon_sym_TILDE] = ACTIONS(4310), - [anon_sym_implicit] = ACTIONS(4306), - [anon_sym_explicit] = ACTIONS(4306), - [anon_sym_scoped] = ACTIONS(4306), - [anon_sym_var] = ACTIONS(4306), - [sym_predefined_type] = ACTIONS(4306), - [anon_sym_yield] = ACTIONS(4306), - [anon_sym_when] = ACTIONS(4306), - [anon_sym_from] = ACTIONS(4306), - [anon_sym_into] = ACTIONS(4306), - [anon_sym_join] = ACTIONS(4306), - [anon_sym_on] = ACTIONS(4306), - [anon_sym_equals] = ACTIONS(4306), - [anon_sym_let] = ACTIONS(4306), - [anon_sym_orderby] = ACTIONS(4306), - [anon_sym_ascending] = ACTIONS(4306), - [anon_sym_descending] = ACTIONS(4306), - [anon_sym_group] = ACTIONS(4306), - [anon_sym_by] = ACTIONS(4306), - [anon_sym_select] = ACTIONS(4306), - [aux_sym_preproc_if_token1] = ACTIONS(4310), - [aux_sym_preproc_if_token3] = ACTIONS(4310), - [aux_sym_preproc_else_token1] = ACTIONS(4310), - [aux_sym_preproc_elif_token1] = ACTIONS(4310), + [sym__identifier_token] = ACTIONS(4307), + [anon_sym_extern] = ACTIONS(4307), + [anon_sym_alias] = ACTIONS(4307), + [anon_sym_global] = ACTIONS(4307), + [anon_sym_using] = ACTIONS(4307), + [anon_sym_unsafe] = ACTIONS(4307), + [anon_sym_static] = ACTIONS(4307), + [anon_sym_LBRACK] = ACTIONS(4309), + [anon_sym_LPAREN] = ACTIONS(4309), + [anon_sym_event] = ACTIONS(4307), + [anon_sym_namespace] = ACTIONS(4307), + [anon_sym_class] = ACTIONS(4307), + [anon_sym_ref] = ACTIONS(4307), + [anon_sym_struct] = ACTIONS(4307), + [anon_sym_enum] = ACTIONS(4307), + [anon_sym_RBRACE] = ACTIONS(4309), + [anon_sym_interface] = ACTIONS(4307), + [anon_sym_delegate] = ACTIONS(4307), + [anon_sym_record] = ACTIONS(4307), + [anon_sym_abstract] = ACTIONS(4307), + [anon_sym_async] = ACTIONS(4307), + [anon_sym_const] = ACTIONS(4307), + [anon_sym_file] = ACTIONS(4307), + [anon_sym_fixed] = ACTIONS(4307), + [anon_sym_internal] = ACTIONS(4307), + [anon_sym_new] = ACTIONS(4307), + [anon_sym_override] = ACTIONS(4307), + [anon_sym_partial] = ACTIONS(4307), + [anon_sym_private] = ACTIONS(4307), + [anon_sym_protected] = ACTIONS(4307), + [anon_sym_public] = ACTIONS(4307), + [anon_sym_readonly] = ACTIONS(4307), + [anon_sym_required] = ACTIONS(4307), + [anon_sym_sealed] = ACTIONS(4307), + [anon_sym_virtual] = ACTIONS(4307), + [anon_sym_volatile] = ACTIONS(4307), + [anon_sym_where] = ACTIONS(4307), + [anon_sym_notnull] = ACTIONS(4307), + [anon_sym_unmanaged] = ACTIONS(4307), + [anon_sym_TILDE] = ACTIONS(4309), + [anon_sym_implicit] = ACTIONS(4307), + [anon_sym_explicit] = ACTIONS(4307), + [anon_sym_scoped] = ACTIONS(4307), + [anon_sym_var] = ACTIONS(4307), + [sym_predefined_type] = ACTIONS(4307), + [anon_sym_yield] = ACTIONS(4307), + [anon_sym_when] = ACTIONS(4307), + [anon_sym_from] = ACTIONS(4307), + [anon_sym_into] = ACTIONS(4307), + [anon_sym_join] = ACTIONS(4307), + [anon_sym_on] = ACTIONS(4307), + [anon_sym_equals] = ACTIONS(4307), + [anon_sym_let] = ACTIONS(4307), + [anon_sym_orderby] = ACTIONS(4307), + [anon_sym_ascending] = ACTIONS(4307), + [anon_sym_descending] = ACTIONS(4307), + [anon_sym_group] = ACTIONS(4307), + [anon_sym_by] = ACTIONS(4307), + [anon_sym_select] = ACTIONS(4307), + [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), @@ -441443,10 +441062,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2650] = { - [sym__variable_designation] = STATE(3507), - [sym_parenthesized_variable_designation] = STATE(3463), - [sym_identifier] = STATE(3479), - [sym__reserved_identifier] = STATE(3225), [sym_preproc_region] = STATE(2650), [sym_preproc_endregion] = STATE(2650), [sym_preproc_line] = STATE(2650), @@ -441456,66 +441071,69 @@ 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(3788), - [anon_sym_alias] = ACTIONS(3790), - [anon_sym_global] = ACTIONS(3790), - [anon_sym_LBRACK] = ACTIONS(3905), - [anon_sym_LPAREN] = ACTIONS(3905), - [anon_sym_file] = ACTIONS(3790), - [anon_sym_LT] = ACTIONS(3907), - [anon_sym_GT] = ACTIONS(3907), - [anon_sym_in] = ACTIONS(3907), - [anon_sym_where] = ACTIONS(3790), - [anon_sym_QMARK] = ACTIONS(3907), - [anon_sym_notnull] = ACTIONS(3790), - [anon_sym_unmanaged] = ACTIONS(3790), - [anon_sym_BANG] = ACTIONS(3907), - [anon_sym_PLUS_PLUS] = ACTIONS(3905), - [anon_sym_DASH_DASH] = ACTIONS(3905), - [anon_sym_PLUS] = ACTIONS(3907), - [anon_sym_DASH] = ACTIONS(3907), - [anon_sym_STAR] = ACTIONS(3905), - [anon_sym_SLASH] = ACTIONS(3907), - [anon_sym_PERCENT] = ACTIONS(3905), - [anon_sym_CARET] = ACTIONS(3905), - [anon_sym_PIPE] = ACTIONS(3907), - [anon_sym_AMP] = ACTIONS(3907), - [anon_sym_LT_LT] = ACTIONS(3905), - [anon_sym_GT_GT] = ACTIONS(3907), - [anon_sym_GT_GT_GT] = ACTIONS(3905), - [anon_sym_EQ_EQ] = ACTIONS(3905), - [anon_sym_BANG_EQ] = ACTIONS(3905), - [anon_sym_GT_EQ] = ACTIONS(3905), - [anon_sym_LT_EQ] = ACTIONS(3905), - [anon_sym_DOT] = ACTIONS(3907), - [anon_sym_scoped] = ACTIONS(3790), - [anon_sym_var] = ACTIONS(3790), - [anon_sym_yield] = ACTIONS(3790), - [anon_sym_switch] = ACTIONS(3907), - [anon_sym_when] = ACTIONS(3790), - [sym_discard] = ACTIONS(3897), - [anon_sym_DOT_DOT] = ACTIONS(3905), - [anon_sym_and] = ACTIONS(3907), - [anon_sym_or] = ACTIONS(3907), - [anon_sym_AMP_AMP] = ACTIONS(3905), - [anon_sym_PIPE_PIPE] = ACTIONS(3905), - [anon_sym_QMARK_QMARK] = ACTIONS(3905), - [anon_sym_from] = ACTIONS(3790), - [anon_sym_into] = ACTIONS(3790), - [anon_sym_join] = ACTIONS(3790), - [anon_sym_on] = ACTIONS(3790), - [anon_sym_equals] = ACTIONS(3790), - [anon_sym_let] = ACTIONS(3790), - [anon_sym_orderby] = ACTIONS(3790), - [anon_sym_ascending] = ACTIONS(3790), - [anon_sym_descending] = ACTIONS(3790), - [anon_sym_group] = ACTIONS(3790), - [anon_sym_by] = ACTIONS(3790), - [anon_sym_select] = ACTIONS(3790), - [anon_sym_as] = ACTIONS(3907), - [anon_sym_is] = ACTIONS(3907), - [anon_sym_DASH_GT] = ACTIONS(3905), - [anon_sym_with] = ACTIONS(3907), + [anon_sym_SEMI] = ACTIONS(4132), + [anon_sym_EQ] = ACTIONS(4134), + [anon_sym_LBRACK] = ACTIONS(4132), + [anon_sym_COLON] = ACTIONS(4132), + [anon_sym_COMMA] = ACTIONS(4132), + [anon_sym_RBRACK] = ACTIONS(4132), + [anon_sym_LPAREN] = ACTIONS(4132), + [anon_sym_RPAREN] = ACTIONS(4132), + [anon_sym_RBRACE] = ACTIONS(4132), + [anon_sym_LT] = ACTIONS(4134), + [anon_sym_GT] = ACTIONS(4134), + [anon_sym_in] = ACTIONS(4132), + [anon_sym_QMARK] = ACTIONS(4134), + [anon_sym_BANG] = ACTIONS(4134), + [anon_sym_PLUS_PLUS] = ACTIONS(4132), + [anon_sym_DASH_DASH] = ACTIONS(4132), + [anon_sym_PLUS] = ACTIONS(4134), + [anon_sym_DASH] = ACTIONS(4134), + [anon_sym_STAR] = ACTIONS(4134), + [anon_sym_SLASH] = ACTIONS(4134), + [anon_sym_PERCENT] = ACTIONS(4134), + [anon_sym_CARET] = ACTIONS(4134), + [anon_sym_PIPE] = ACTIONS(4134), + [anon_sym_AMP] = ACTIONS(4134), + [anon_sym_LT_LT] = ACTIONS(4134), + [anon_sym_GT_GT] = ACTIONS(4134), + [anon_sym_GT_GT_GT] = ACTIONS(4134), + [anon_sym_EQ_EQ] = ACTIONS(4132), + [anon_sym_BANG_EQ] = ACTIONS(4132), + [anon_sym_GT_EQ] = ACTIONS(4132), + [anon_sym_LT_EQ] = ACTIONS(4132), + [anon_sym_DOT] = ACTIONS(4134), + [anon_sym_EQ_GT] = ACTIONS(4132), + [anon_sym_switch] = ACTIONS(4132), + [anon_sym_when] = ACTIONS(4132), + [anon_sym_DOT_DOT] = ACTIONS(4132), + [anon_sym_and] = ACTIONS(4132), + [anon_sym_or] = ACTIONS(4132), + [anon_sym_PLUS_EQ] = ACTIONS(4132), + [anon_sym_DASH_EQ] = ACTIONS(4132), + [anon_sym_STAR_EQ] = ACTIONS(4132), + [anon_sym_SLASH_EQ] = ACTIONS(4132), + [anon_sym_PERCENT_EQ] = ACTIONS(4132), + [anon_sym_AMP_EQ] = ACTIONS(4132), + [anon_sym_CARET_EQ] = ACTIONS(4132), + [anon_sym_PIPE_EQ] = ACTIONS(4132), + [anon_sym_LT_LT_EQ] = ACTIONS(4132), + [anon_sym_GT_GT_EQ] = ACTIONS(4132), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(4132), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(4132), + [anon_sym_AMP_AMP] = ACTIONS(4132), + [anon_sym_PIPE_PIPE] = ACTIONS(4132), + [anon_sym_QMARK_QMARK] = ACTIONS(4134), + [anon_sym_on] = ACTIONS(4132), + [anon_sym_equals] = ACTIONS(4132), + [anon_sym_by] = ACTIONS(4132), + [anon_sym_as] = ACTIONS(4132), + [anon_sym_is] = ACTIONS(4132), + [anon_sym_DASH_GT] = ACTIONS(4132), + [anon_sym_with] = ACTIONS(4132), + [aux_sym_preproc_if_token3] = ACTIONS(4132), + [aux_sym_preproc_else_token1] = ACTIONS(4132), + [aux_sym_preproc_elif_token1] = ACTIONS(4132), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -441528,10 +441146,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2651] = { - [sym__variable_designation] = STATE(3365), - [sym_parenthesized_variable_designation] = STATE(3463), - [sym_identifier] = STATE(3479), - [sym__reserved_identifier] = STATE(3225), [sym_preproc_region] = STATE(2651), [sym_preproc_endregion] = STATE(2651), [sym_preproc_line] = STATE(2651), @@ -441541,66 +441155,69 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2651), [sym_preproc_define] = STATE(2651), [sym_preproc_undef] = STATE(2651), - [sym__identifier_token] = ACTIONS(3788), - [anon_sym_alias] = ACTIONS(3790), - [anon_sym_global] = ACTIONS(3790), - [anon_sym_LBRACK] = ACTIONS(3913), - [anon_sym_LPAREN] = ACTIONS(3913), - [anon_sym_file] = ACTIONS(3790), - [anon_sym_LT] = ACTIONS(3915), - [anon_sym_GT] = ACTIONS(3915), - [anon_sym_in] = ACTIONS(3915), - [anon_sym_where] = ACTIONS(3790), - [anon_sym_QMARK] = ACTIONS(3915), - [anon_sym_notnull] = ACTIONS(3790), - [anon_sym_unmanaged] = ACTIONS(3790), - [anon_sym_BANG] = ACTIONS(3915), - [anon_sym_PLUS_PLUS] = ACTIONS(3913), - [anon_sym_DASH_DASH] = ACTIONS(3913), - [anon_sym_PLUS] = ACTIONS(3915), - [anon_sym_DASH] = ACTIONS(3915), - [anon_sym_STAR] = ACTIONS(3913), - [anon_sym_SLASH] = ACTIONS(3915), - [anon_sym_PERCENT] = ACTIONS(3913), - [anon_sym_CARET] = ACTIONS(3913), - [anon_sym_PIPE] = ACTIONS(3915), - [anon_sym_AMP] = ACTIONS(3915), - [anon_sym_LT_LT] = ACTIONS(3913), - [anon_sym_GT_GT] = ACTIONS(3915), - [anon_sym_GT_GT_GT] = ACTIONS(3913), - [anon_sym_EQ_EQ] = ACTIONS(3913), - [anon_sym_BANG_EQ] = ACTIONS(3913), - [anon_sym_GT_EQ] = ACTIONS(3913), - [anon_sym_LT_EQ] = ACTIONS(3913), - [anon_sym_DOT] = ACTIONS(3915), - [anon_sym_scoped] = ACTIONS(3790), - [anon_sym_var] = ACTIONS(3790), - [anon_sym_yield] = ACTIONS(3790), - [anon_sym_switch] = ACTIONS(3915), - [anon_sym_when] = ACTIONS(3790), - [sym_discard] = ACTIONS(3897), - [anon_sym_DOT_DOT] = ACTIONS(3913), - [anon_sym_and] = ACTIONS(3915), - [anon_sym_or] = ACTIONS(3915), - [anon_sym_AMP_AMP] = ACTIONS(3913), - [anon_sym_PIPE_PIPE] = ACTIONS(3913), - [anon_sym_QMARK_QMARK] = ACTIONS(3913), - [anon_sym_from] = ACTIONS(3790), - [anon_sym_into] = ACTIONS(3790), - [anon_sym_join] = ACTIONS(3790), - [anon_sym_on] = ACTIONS(3790), - [anon_sym_equals] = ACTIONS(3790), - [anon_sym_let] = ACTIONS(3790), - [anon_sym_orderby] = ACTIONS(3790), - [anon_sym_ascending] = ACTIONS(3790), - [anon_sym_descending] = ACTIONS(3790), - [anon_sym_group] = ACTIONS(3790), - [anon_sym_by] = ACTIONS(3790), - [anon_sym_select] = ACTIONS(3790), - [anon_sym_as] = ACTIONS(3915), - [anon_sym_is] = ACTIONS(3915), - [anon_sym_DASH_GT] = ACTIONS(3913), - [anon_sym_with] = ACTIONS(3915), + [sym__identifier_token] = ACTIONS(4311), + [anon_sym_extern] = ACTIONS(4311), + [anon_sym_alias] = ACTIONS(4311), + [anon_sym_global] = ACTIONS(4311), + [anon_sym_using] = ACTIONS(4311), + [anon_sym_unsafe] = ACTIONS(4311), + [anon_sym_static] = ACTIONS(4311), + [anon_sym_LBRACK] = ACTIONS(4313), + [anon_sym_LPAREN] = ACTIONS(4313), + [anon_sym_event] = ACTIONS(4311), + [anon_sym_namespace] = ACTIONS(4311), + [anon_sym_class] = ACTIONS(4311), + [anon_sym_ref] = ACTIONS(4311), + [anon_sym_struct] = ACTIONS(4311), + [anon_sym_enum] = ACTIONS(4311), + [anon_sym_RBRACE] = ACTIONS(4313), + [anon_sym_interface] = ACTIONS(4311), + [anon_sym_delegate] = ACTIONS(4311), + [anon_sym_record] = ACTIONS(4311), + [anon_sym_abstract] = ACTIONS(4311), + [anon_sym_async] = ACTIONS(4311), + [anon_sym_const] = ACTIONS(4311), + [anon_sym_file] = ACTIONS(4311), + [anon_sym_fixed] = ACTIONS(4311), + [anon_sym_internal] = ACTIONS(4311), + [anon_sym_new] = ACTIONS(4311), + [anon_sym_override] = ACTIONS(4311), + [anon_sym_partial] = ACTIONS(4311), + [anon_sym_private] = ACTIONS(4311), + [anon_sym_protected] = ACTIONS(4311), + [anon_sym_public] = ACTIONS(4311), + [anon_sym_readonly] = ACTIONS(4311), + [anon_sym_required] = ACTIONS(4311), + [anon_sym_sealed] = ACTIONS(4311), + [anon_sym_virtual] = ACTIONS(4311), + [anon_sym_volatile] = ACTIONS(4311), + [anon_sym_where] = ACTIONS(4311), + [anon_sym_notnull] = ACTIONS(4311), + [anon_sym_unmanaged] = ACTIONS(4311), + [anon_sym_TILDE] = ACTIONS(4313), + [anon_sym_implicit] = ACTIONS(4311), + [anon_sym_explicit] = ACTIONS(4311), + [anon_sym_scoped] = ACTIONS(4311), + [anon_sym_var] = ACTIONS(4311), + [sym_predefined_type] = ACTIONS(4311), + [anon_sym_yield] = ACTIONS(4311), + [anon_sym_when] = ACTIONS(4311), + [anon_sym_from] = ACTIONS(4311), + [anon_sym_into] = ACTIONS(4311), + [anon_sym_join] = ACTIONS(4311), + [anon_sym_on] = ACTIONS(4311), + [anon_sym_equals] = ACTIONS(4311), + [anon_sym_let] = ACTIONS(4311), + [anon_sym_orderby] = ACTIONS(4311), + [anon_sym_ascending] = ACTIONS(4311), + [anon_sym_descending] = ACTIONS(4311), + [anon_sym_group] = ACTIONS(4311), + [anon_sym_by] = ACTIONS(4311), + [anon_sym_select] = ACTIONS(4311), + [aux_sym_preproc_if_token1] = ACTIONS(4313), + [aux_sym_preproc_if_token3] = ACTIONS(4313), + [aux_sym_preproc_else_token1] = ACTIONS(4313), + [aux_sym_preproc_elif_token1] = ACTIONS(4313), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -441613,10 +441230,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2652] = { - [sym__variable_designation] = STATE(3434), - [sym_parenthesized_variable_designation] = STATE(3463), - [sym_identifier] = STATE(3479), - [sym__reserved_identifier] = STATE(3225), [sym_preproc_region] = STATE(2652), [sym_preproc_endregion] = STATE(2652), [sym_preproc_line] = STATE(2652), @@ -441626,66 +441239,69 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2652), [sym_preproc_define] = STATE(2652), [sym_preproc_undef] = STATE(2652), - [sym__identifier_token] = ACTIONS(3788), - [anon_sym_alias] = ACTIONS(3790), - [anon_sym_global] = ACTIONS(3790), - [anon_sym_LBRACK] = ACTIONS(3957), - [anon_sym_LPAREN] = ACTIONS(3957), - [anon_sym_file] = ACTIONS(3790), - [anon_sym_LT] = ACTIONS(3959), - [anon_sym_GT] = ACTIONS(3959), - [anon_sym_in] = ACTIONS(3959), - [anon_sym_where] = ACTIONS(3790), - [anon_sym_QMARK] = ACTIONS(3959), - [anon_sym_notnull] = ACTIONS(3790), - [anon_sym_unmanaged] = ACTIONS(3790), - [anon_sym_BANG] = ACTIONS(3959), - [anon_sym_PLUS_PLUS] = ACTIONS(3957), - [anon_sym_DASH_DASH] = ACTIONS(3957), - [anon_sym_PLUS] = ACTIONS(3959), - [anon_sym_DASH] = ACTIONS(3959), - [anon_sym_STAR] = ACTIONS(3957), - [anon_sym_SLASH] = ACTIONS(3959), - [anon_sym_PERCENT] = ACTIONS(3957), - [anon_sym_CARET] = ACTIONS(3957), - [anon_sym_PIPE] = ACTIONS(3959), - [anon_sym_AMP] = ACTIONS(3959), - [anon_sym_LT_LT] = ACTIONS(3957), - [anon_sym_GT_GT] = ACTIONS(3959), - [anon_sym_GT_GT_GT] = ACTIONS(3957), - [anon_sym_EQ_EQ] = ACTIONS(3957), - [anon_sym_BANG_EQ] = ACTIONS(3957), - [anon_sym_GT_EQ] = ACTIONS(3957), - [anon_sym_LT_EQ] = ACTIONS(3957), - [anon_sym_DOT] = ACTIONS(3959), - [anon_sym_scoped] = ACTIONS(3790), - [anon_sym_var] = ACTIONS(3790), - [anon_sym_yield] = ACTIONS(3790), - [anon_sym_switch] = ACTIONS(3959), - [anon_sym_when] = ACTIONS(3790), - [sym_discard] = ACTIONS(3897), - [anon_sym_DOT_DOT] = ACTIONS(3957), - [anon_sym_and] = ACTIONS(3959), - [anon_sym_or] = ACTIONS(3959), - [anon_sym_AMP_AMP] = ACTIONS(3957), - [anon_sym_PIPE_PIPE] = ACTIONS(3957), - [anon_sym_QMARK_QMARK] = ACTIONS(3957), - [anon_sym_from] = ACTIONS(3790), - [anon_sym_into] = ACTIONS(3790), - [anon_sym_join] = ACTIONS(3790), - [anon_sym_on] = ACTIONS(3790), - [anon_sym_equals] = ACTIONS(3790), - [anon_sym_let] = ACTIONS(3790), - [anon_sym_orderby] = ACTIONS(3790), - [anon_sym_ascending] = ACTIONS(3790), - [anon_sym_descending] = ACTIONS(3790), - [anon_sym_group] = ACTIONS(3790), - [anon_sym_by] = ACTIONS(3790), - [anon_sym_select] = ACTIONS(3790), - [anon_sym_as] = ACTIONS(3959), - [anon_sym_is] = ACTIONS(3959), - [anon_sym_DASH_GT] = ACTIONS(3957), - [anon_sym_with] = ACTIONS(3959), + [sym__identifier_token] = ACTIONS(4315), + [anon_sym_extern] = ACTIONS(4315), + [anon_sym_alias] = ACTIONS(4315), + [anon_sym_global] = ACTIONS(4315), + [anon_sym_using] = ACTIONS(4315), + [anon_sym_unsafe] = ACTIONS(4315), + [anon_sym_static] = ACTIONS(4315), + [anon_sym_LBRACK] = ACTIONS(4317), + [anon_sym_LPAREN] = ACTIONS(4317), + [anon_sym_event] = ACTIONS(4315), + [anon_sym_namespace] = ACTIONS(4315), + [anon_sym_class] = ACTIONS(4315), + [anon_sym_ref] = ACTIONS(4315), + [anon_sym_struct] = ACTIONS(4315), + [anon_sym_enum] = ACTIONS(4315), + [anon_sym_RBRACE] = ACTIONS(4317), + [anon_sym_interface] = ACTIONS(4315), + [anon_sym_delegate] = ACTIONS(4315), + [anon_sym_record] = ACTIONS(4315), + [anon_sym_abstract] = ACTIONS(4315), + [anon_sym_async] = ACTIONS(4315), + [anon_sym_const] = ACTIONS(4315), + [anon_sym_file] = ACTIONS(4315), + [anon_sym_fixed] = ACTIONS(4315), + [anon_sym_internal] = ACTIONS(4315), + [anon_sym_new] = ACTIONS(4315), + [anon_sym_override] = ACTIONS(4315), + [anon_sym_partial] = ACTIONS(4315), + [anon_sym_private] = ACTIONS(4315), + [anon_sym_protected] = ACTIONS(4315), + [anon_sym_public] = ACTIONS(4315), + [anon_sym_readonly] = ACTIONS(4315), + [anon_sym_required] = ACTIONS(4315), + [anon_sym_sealed] = ACTIONS(4315), + [anon_sym_virtual] = ACTIONS(4315), + [anon_sym_volatile] = ACTIONS(4315), + [anon_sym_where] = ACTIONS(4315), + [anon_sym_notnull] = ACTIONS(4315), + [anon_sym_unmanaged] = ACTIONS(4315), + [anon_sym_TILDE] = ACTIONS(4317), + [anon_sym_implicit] = ACTIONS(4315), + [anon_sym_explicit] = ACTIONS(4315), + [anon_sym_scoped] = ACTIONS(4315), + [anon_sym_var] = ACTIONS(4315), + [sym_predefined_type] = ACTIONS(4315), + [anon_sym_yield] = ACTIONS(4315), + [anon_sym_when] = ACTIONS(4315), + [anon_sym_from] = ACTIONS(4315), + [anon_sym_into] = ACTIONS(4315), + [anon_sym_join] = ACTIONS(4315), + [anon_sym_on] = ACTIONS(4315), + [anon_sym_equals] = ACTIONS(4315), + [anon_sym_let] = ACTIONS(4315), + [anon_sym_orderby] = ACTIONS(4315), + [anon_sym_ascending] = ACTIONS(4315), + [anon_sym_descending] = ACTIONS(4315), + [anon_sym_group] = ACTIONS(4315), + [anon_sym_by] = ACTIONS(4315), + [anon_sym_select] = ACTIONS(4315), + [aux_sym_preproc_if_token1] = ACTIONS(4317), + [aux_sym_preproc_if_token3] = ACTIONS(4317), + [aux_sym_preproc_else_token1] = ACTIONS(4317), + [aux_sym_preproc_elif_token1] = ACTIONS(4317), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -441707,70 +441323,69 @@ 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), - [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), + [sym__identifier_token] = ACTIONS(4319), + [anon_sym_extern] = ACTIONS(4319), + [anon_sym_alias] = ACTIONS(4319), + [anon_sym_global] = ACTIONS(4319), + [anon_sym_using] = ACTIONS(4319), + [anon_sym_unsafe] = ACTIONS(4319), + [anon_sym_static] = ACTIONS(4319), + [anon_sym_LBRACK] = ACTIONS(4321), + [anon_sym_LPAREN] = ACTIONS(4321), + [anon_sym_event] = ACTIONS(4319), + [anon_sym_namespace] = ACTIONS(4319), + [anon_sym_class] = ACTIONS(4319), + [anon_sym_ref] = ACTIONS(4319), + [anon_sym_struct] = ACTIONS(4319), + [anon_sym_enum] = ACTIONS(4319), + [anon_sym_RBRACE] = ACTIONS(4321), + [anon_sym_interface] = ACTIONS(4319), + [anon_sym_delegate] = ACTIONS(4319), + [anon_sym_record] = ACTIONS(4319), + [anon_sym_abstract] = ACTIONS(4319), + [anon_sym_async] = ACTIONS(4319), + [anon_sym_const] = ACTIONS(4319), + [anon_sym_file] = ACTIONS(4319), + [anon_sym_fixed] = ACTIONS(4319), + [anon_sym_internal] = ACTIONS(4319), + [anon_sym_new] = ACTIONS(4319), + [anon_sym_override] = ACTIONS(4319), + [anon_sym_partial] = ACTIONS(4319), + [anon_sym_private] = ACTIONS(4319), + [anon_sym_protected] = ACTIONS(4319), + [anon_sym_public] = ACTIONS(4319), + [anon_sym_readonly] = ACTIONS(4319), + [anon_sym_required] = ACTIONS(4319), + [anon_sym_sealed] = ACTIONS(4319), + [anon_sym_virtual] = ACTIONS(4319), + [anon_sym_volatile] = ACTIONS(4319), + [anon_sym_where] = ACTIONS(4319), + [anon_sym_notnull] = ACTIONS(4319), + [anon_sym_unmanaged] = ACTIONS(4319), + [anon_sym_TILDE] = ACTIONS(4321), + [anon_sym_implicit] = ACTIONS(4319), + [anon_sym_explicit] = ACTIONS(4319), + [anon_sym_scoped] = ACTIONS(4319), + [anon_sym_var] = ACTIONS(4319), + [sym_predefined_type] = ACTIONS(4319), + [anon_sym_yield] = ACTIONS(4319), + [anon_sym_when] = ACTIONS(4319), + [anon_sym_from] = ACTIONS(4319), + [anon_sym_into] = ACTIONS(4319), + [anon_sym_join] = ACTIONS(4319), + [anon_sym_on] = ACTIONS(4319), + [anon_sym_equals] = ACTIONS(4319), + [anon_sym_let] = ACTIONS(4319), + [anon_sym_orderby] = ACTIONS(4319), + [anon_sym_ascending] = ACTIONS(4319), + [anon_sym_descending] = ACTIONS(4319), + [anon_sym_group] = ACTIONS(4319), + [anon_sym_by] = ACTIONS(4319), + [anon_sym_select] = ACTIONS(4319), + [aux_sym_preproc_if_token1] = ACTIONS(4321), + [aux_sym_preproc_if_token3] = ACTIONS(4321), + [aux_sym_preproc_else_token1] = ACTIONS(4321), + [aux_sym_preproc_elif_token1] = ACTIONS(4321), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -441792,70 +441407,69 @@ 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(4316), - [anon_sym_extern] = ACTIONS(4316), - [anon_sym_alias] = ACTIONS(4316), - [anon_sym_global] = ACTIONS(4316), - [anon_sym_using] = ACTIONS(4316), - [anon_sym_unsafe] = ACTIONS(4316), - [anon_sym_EQ] = ACTIONS(4318), - [anon_sym_static] = ACTIONS(4316), - [anon_sym_LBRACK] = ACTIONS(4320), - [anon_sym_LPAREN] = ACTIONS(4320), - [anon_sym_event] = ACTIONS(4316), - [anon_sym_namespace] = ACTIONS(4316), - [anon_sym_class] = ACTIONS(4316), - [anon_sym_ref] = ACTIONS(4316), - [anon_sym_struct] = ACTIONS(4316), - [anon_sym_enum] = ACTIONS(4316), - [anon_sym_RBRACE] = ACTIONS(4320), - [anon_sym_interface] = ACTIONS(4316), - [anon_sym_delegate] = ACTIONS(4316), - [anon_sym_record] = ACTIONS(4316), - [anon_sym_abstract] = ACTIONS(4316), - [anon_sym_async] = ACTIONS(4316), - [anon_sym_const] = ACTIONS(4316), - [anon_sym_file] = ACTIONS(4316), - [anon_sym_fixed] = ACTIONS(4316), - [anon_sym_internal] = ACTIONS(4316), - [anon_sym_new] = ACTIONS(4316), - [anon_sym_override] = ACTIONS(4316), - [anon_sym_partial] = ACTIONS(4316), - [anon_sym_private] = ACTIONS(4316), - [anon_sym_protected] = ACTIONS(4316), - [anon_sym_public] = ACTIONS(4316), - [anon_sym_readonly] = ACTIONS(4316), - [anon_sym_required] = ACTIONS(4316), - [anon_sym_sealed] = ACTIONS(4316), - [anon_sym_virtual] = ACTIONS(4316), - [anon_sym_volatile] = ACTIONS(4316), - [anon_sym_where] = ACTIONS(4316), - [anon_sym_notnull] = ACTIONS(4316), - [anon_sym_unmanaged] = ACTIONS(4316), - [anon_sym_TILDE] = ACTIONS(4320), - [anon_sym_implicit] = ACTIONS(4316), - [anon_sym_explicit] = ACTIONS(4316), - [anon_sym_scoped] = ACTIONS(4316), - [anon_sym_var] = ACTIONS(4316), - [sym_predefined_type] = ACTIONS(4316), - [anon_sym_yield] = ACTIONS(4316), - [anon_sym_when] = ACTIONS(4316), - [anon_sym_from] = ACTIONS(4316), - [anon_sym_into] = ACTIONS(4316), - [anon_sym_join] = ACTIONS(4316), - [anon_sym_on] = ACTIONS(4316), - [anon_sym_equals] = ACTIONS(4316), - [anon_sym_let] = ACTIONS(4316), - [anon_sym_orderby] = ACTIONS(4316), - [anon_sym_ascending] = ACTIONS(4316), - [anon_sym_descending] = ACTIONS(4316), - [anon_sym_group] = ACTIONS(4316), - [anon_sym_by] = ACTIONS(4316), - [anon_sym_select] = ACTIONS(4316), - [aux_sym_preproc_if_token1] = ACTIONS(4320), - [aux_sym_preproc_if_token3] = ACTIONS(4320), - [aux_sym_preproc_else_token1] = ACTIONS(4320), - [aux_sym_preproc_elif_token1] = ACTIONS(4320), + [sym__identifier_token] = ACTIONS(4323), + [anon_sym_extern] = ACTIONS(4323), + [anon_sym_alias] = ACTIONS(4323), + [anon_sym_global] = ACTIONS(4323), + [anon_sym_using] = ACTIONS(4323), + [anon_sym_unsafe] = ACTIONS(4323), + [anon_sym_static] = ACTIONS(4323), + [anon_sym_LBRACK] = ACTIONS(4325), + [anon_sym_LPAREN] = ACTIONS(4325), + [anon_sym_event] = ACTIONS(4323), + [anon_sym_namespace] = ACTIONS(4323), + [anon_sym_class] = ACTIONS(4323), + [anon_sym_ref] = ACTIONS(4323), + [anon_sym_struct] = ACTIONS(4323), + [anon_sym_enum] = ACTIONS(4323), + [anon_sym_RBRACE] = ACTIONS(4325), + [anon_sym_interface] = ACTIONS(4323), + [anon_sym_delegate] = ACTIONS(4323), + [anon_sym_record] = ACTIONS(4323), + [anon_sym_abstract] = ACTIONS(4323), + [anon_sym_async] = ACTIONS(4323), + [anon_sym_const] = ACTIONS(4323), + [anon_sym_file] = ACTIONS(4323), + [anon_sym_fixed] = ACTIONS(4323), + [anon_sym_internal] = ACTIONS(4323), + [anon_sym_new] = ACTIONS(4323), + [anon_sym_override] = ACTIONS(4323), + [anon_sym_partial] = ACTIONS(4323), + [anon_sym_private] = ACTIONS(4323), + [anon_sym_protected] = ACTIONS(4323), + [anon_sym_public] = ACTIONS(4323), + [anon_sym_readonly] = ACTIONS(4323), + [anon_sym_required] = ACTIONS(4323), + [anon_sym_sealed] = ACTIONS(4323), + [anon_sym_virtual] = ACTIONS(4323), + [anon_sym_volatile] = ACTIONS(4323), + [anon_sym_where] = ACTIONS(4323), + [anon_sym_notnull] = ACTIONS(4323), + [anon_sym_unmanaged] = ACTIONS(4323), + [anon_sym_TILDE] = ACTIONS(4325), + [anon_sym_implicit] = ACTIONS(4323), + [anon_sym_explicit] = ACTIONS(4323), + [anon_sym_scoped] = ACTIONS(4323), + [anon_sym_var] = ACTIONS(4323), + [sym_predefined_type] = ACTIONS(4323), + [anon_sym_yield] = ACTIONS(4323), + [anon_sym_when] = ACTIONS(4323), + [anon_sym_from] = ACTIONS(4323), + [anon_sym_into] = ACTIONS(4323), + [anon_sym_join] = ACTIONS(4323), + [anon_sym_on] = ACTIONS(4323), + [anon_sym_equals] = ACTIONS(4323), + [anon_sym_let] = ACTIONS(4323), + [anon_sym_orderby] = ACTIONS(4323), + [anon_sym_ascending] = ACTIONS(4323), + [anon_sym_descending] = ACTIONS(4323), + [anon_sym_group] = ACTIONS(4323), + [anon_sym_by] = ACTIONS(4323), + [anon_sym_select] = ACTIONS(4323), + [aux_sym_preproc_if_token1] = ACTIONS(4325), + [aux_sym_preproc_if_token3] = ACTIONS(4325), + [aux_sym_preproc_else_token1] = ACTIONS(4325), + [aux_sym_preproc_elif_token1] = ACTIONS(4325), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -441877,69 +441491,69 @@ 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), - [sym__identifier_token] = ACTIONS(4322), - [anon_sym_extern] = ACTIONS(4322), - [anon_sym_alias] = ACTIONS(4322), - [anon_sym_global] = ACTIONS(4322), - [anon_sym_using] = ACTIONS(4322), - [anon_sym_unsafe] = ACTIONS(4322), - [anon_sym_static] = ACTIONS(4322), - [anon_sym_LBRACK] = ACTIONS(4324), - [anon_sym_LPAREN] = ACTIONS(4324), - [anon_sym_event] = ACTIONS(4322), - [anon_sym_namespace] = ACTIONS(4322), - [anon_sym_class] = ACTIONS(4322), - [anon_sym_ref] = ACTIONS(4322), - [anon_sym_struct] = ACTIONS(4322), - [anon_sym_enum] = ACTIONS(4322), - [anon_sym_RBRACE] = ACTIONS(4324), - [anon_sym_interface] = ACTIONS(4322), - [anon_sym_delegate] = ACTIONS(4322), - [anon_sym_record] = ACTIONS(4322), - [anon_sym_abstract] = ACTIONS(4322), - [anon_sym_async] = ACTIONS(4322), - [anon_sym_const] = ACTIONS(4322), - [anon_sym_file] = ACTIONS(4322), - [anon_sym_fixed] = ACTIONS(4322), - [anon_sym_internal] = ACTIONS(4322), - [anon_sym_new] = ACTIONS(4322), - [anon_sym_override] = ACTIONS(4322), - [anon_sym_partial] = ACTIONS(4322), - [anon_sym_private] = ACTIONS(4322), - [anon_sym_protected] = ACTIONS(4322), - [anon_sym_public] = ACTIONS(4322), - [anon_sym_readonly] = ACTIONS(4322), - [anon_sym_required] = ACTIONS(4322), - [anon_sym_sealed] = ACTIONS(4322), - [anon_sym_virtual] = ACTIONS(4322), - [anon_sym_volatile] = ACTIONS(4322), - [anon_sym_where] = ACTIONS(4322), - [anon_sym_notnull] = ACTIONS(4322), - [anon_sym_unmanaged] = ACTIONS(4322), - [anon_sym_TILDE] = ACTIONS(4324), - [anon_sym_implicit] = ACTIONS(4322), - [anon_sym_explicit] = ACTIONS(4322), - [anon_sym_scoped] = ACTIONS(4322), - [anon_sym_var] = ACTIONS(4322), - [sym_predefined_type] = ACTIONS(4322), - [anon_sym_yield] = ACTIONS(4322), - [anon_sym_when] = ACTIONS(4322), - [anon_sym_from] = ACTIONS(4322), - [anon_sym_into] = ACTIONS(4322), - [anon_sym_join] = ACTIONS(4322), - [anon_sym_on] = ACTIONS(4322), - [anon_sym_equals] = ACTIONS(4322), - [anon_sym_let] = ACTIONS(4322), - [anon_sym_orderby] = ACTIONS(4322), - [anon_sym_ascending] = ACTIONS(4322), - [anon_sym_descending] = ACTIONS(4322), - [anon_sym_group] = ACTIONS(4322), - [anon_sym_by] = ACTIONS(4322), - [anon_sym_select] = ACTIONS(4322), - [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(4327), + [anon_sym_extern] = ACTIONS(4327), + [anon_sym_alias] = ACTIONS(4327), + [anon_sym_global] = ACTIONS(4327), + [anon_sym_using] = ACTIONS(4327), + [anon_sym_unsafe] = ACTIONS(4327), + [anon_sym_static] = ACTIONS(4327), + [anon_sym_LBRACK] = ACTIONS(4329), + [anon_sym_LPAREN] = ACTIONS(4329), + [anon_sym_event] = ACTIONS(4327), + [anon_sym_namespace] = ACTIONS(4327), + [anon_sym_class] = ACTIONS(4327), + [anon_sym_ref] = ACTIONS(4327), + [anon_sym_struct] = ACTIONS(4327), + [anon_sym_enum] = ACTIONS(4327), + [anon_sym_RBRACE] = ACTIONS(4329), + [anon_sym_interface] = ACTIONS(4327), + [anon_sym_delegate] = ACTIONS(4327), + [anon_sym_record] = ACTIONS(4327), + [anon_sym_abstract] = ACTIONS(4327), + [anon_sym_async] = ACTIONS(4327), + [anon_sym_const] = ACTIONS(4327), + [anon_sym_file] = ACTIONS(4327), + [anon_sym_fixed] = ACTIONS(4327), + [anon_sym_internal] = ACTIONS(4327), + [anon_sym_new] = ACTIONS(4327), + [anon_sym_override] = ACTIONS(4327), + [anon_sym_partial] = ACTIONS(4327), + [anon_sym_private] = ACTIONS(4327), + [anon_sym_protected] = ACTIONS(4327), + [anon_sym_public] = ACTIONS(4327), + [anon_sym_readonly] = ACTIONS(4327), + [anon_sym_required] = ACTIONS(4327), + [anon_sym_sealed] = ACTIONS(4327), + [anon_sym_virtual] = ACTIONS(4327), + [anon_sym_volatile] = ACTIONS(4327), + [anon_sym_where] = ACTIONS(4327), + [anon_sym_notnull] = ACTIONS(4327), + [anon_sym_unmanaged] = ACTIONS(4327), + [anon_sym_TILDE] = ACTIONS(4329), + [anon_sym_implicit] = ACTIONS(4327), + [anon_sym_explicit] = ACTIONS(4327), + [anon_sym_scoped] = ACTIONS(4327), + [anon_sym_var] = ACTIONS(4327), + [sym_predefined_type] = ACTIONS(4327), + [anon_sym_yield] = ACTIONS(4327), + [anon_sym_when] = ACTIONS(4327), + [anon_sym_from] = ACTIONS(4327), + [anon_sym_into] = ACTIONS(4327), + [anon_sym_join] = ACTIONS(4327), + [anon_sym_on] = ACTIONS(4327), + [anon_sym_equals] = ACTIONS(4327), + [anon_sym_let] = ACTIONS(4327), + [anon_sym_orderby] = ACTIONS(4327), + [anon_sym_ascending] = ACTIONS(4327), + [anon_sym_descending] = ACTIONS(4327), + [anon_sym_group] = ACTIONS(4327), + [anon_sym_by] = ACTIONS(4327), + [anon_sym_select] = ACTIONS(4327), + [aux_sym_preproc_if_token1] = ACTIONS(4329), + [aux_sym_preproc_if_token3] = ACTIONS(4329), + [aux_sym_preproc_else_token1] = ACTIONS(4329), + [aux_sym_preproc_elif_token1] = ACTIONS(4329), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -441961,69 +441575,69 @@ 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), - [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_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), + [sym__identifier_token] = ACTIONS(4331), + [anon_sym_extern] = ACTIONS(4331), + [anon_sym_alias] = ACTIONS(4331), + [anon_sym_global] = ACTIONS(4331), + [anon_sym_using] = ACTIONS(4331), + [anon_sym_unsafe] = ACTIONS(4331), + [anon_sym_static] = ACTIONS(4331), + [anon_sym_LBRACK] = ACTIONS(4333), + [anon_sym_LPAREN] = ACTIONS(4333), + [anon_sym_event] = ACTIONS(4331), + [anon_sym_namespace] = ACTIONS(4331), + [anon_sym_class] = ACTIONS(4331), + [anon_sym_ref] = ACTIONS(4331), + [anon_sym_struct] = ACTIONS(4331), + [anon_sym_enum] = ACTIONS(4331), + [anon_sym_RBRACE] = ACTIONS(4333), + [anon_sym_interface] = ACTIONS(4331), + [anon_sym_delegate] = ACTIONS(4331), + [anon_sym_record] = ACTIONS(4331), + [anon_sym_abstract] = ACTIONS(4331), + [anon_sym_async] = ACTIONS(4331), + [anon_sym_const] = ACTIONS(4331), + [anon_sym_file] = ACTIONS(4331), + [anon_sym_fixed] = ACTIONS(4331), + [anon_sym_internal] = ACTIONS(4331), + [anon_sym_new] = ACTIONS(4331), + [anon_sym_override] = ACTIONS(4331), + [anon_sym_partial] = ACTIONS(4331), + [anon_sym_private] = ACTIONS(4331), + [anon_sym_protected] = ACTIONS(4331), + [anon_sym_public] = ACTIONS(4331), + [anon_sym_readonly] = ACTIONS(4331), + [anon_sym_required] = ACTIONS(4331), + [anon_sym_sealed] = ACTIONS(4331), + [anon_sym_virtual] = ACTIONS(4331), + [anon_sym_volatile] = ACTIONS(4331), + [anon_sym_where] = ACTIONS(4331), + [anon_sym_notnull] = ACTIONS(4331), + [anon_sym_unmanaged] = ACTIONS(4331), + [anon_sym_TILDE] = ACTIONS(4333), + [anon_sym_implicit] = ACTIONS(4331), + [anon_sym_explicit] = ACTIONS(4331), + [anon_sym_scoped] = ACTIONS(4331), + [anon_sym_var] = ACTIONS(4331), + [sym_predefined_type] = ACTIONS(4331), + [anon_sym_yield] = ACTIONS(4331), + [anon_sym_when] = ACTIONS(4331), + [anon_sym_from] = ACTIONS(4331), + [anon_sym_into] = ACTIONS(4331), + [anon_sym_join] = ACTIONS(4331), + [anon_sym_on] = ACTIONS(4331), + [anon_sym_equals] = ACTIONS(4331), + [anon_sym_let] = ACTIONS(4331), + [anon_sym_orderby] = ACTIONS(4331), + [anon_sym_ascending] = ACTIONS(4331), + [anon_sym_descending] = ACTIONS(4331), + [anon_sym_group] = ACTIONS(4331), + [anon_sym_by] = ACTIONS(4331), + [anon_sym_select] = ACTIONS(4331), + [aux_sym_preproc_if_token1] = ACTIONS(4333), + [aux_sym_preproc_if_token3] = ACTIONS(4333), + [aux_sym_preproc_else_token1] = ACTIONS(4333), + [aux_sym_preproc_elif_token1] = ACTIONS(4333), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -442045,69 +441659,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(4330), - [anon_sym_extern] = ACTIONS(4330), - [anon_sym_alias] = ACTIONS(4330), - [anon_sym_global] = ACTIONS(4330), - [anon_sym_using] = ACTIONS(4330), - [anon_sym_unsafe] = ACTIONS(4330), - [anon_sym_static] = ACTIONS(4330), - [anon_sym_LBRACK] = ACTIONS(4332), - [anon_sym_LPAREN] = ACTIONS(4332), - [anon_sym_event] = ACTIONS(4330), - [anon_sym_namespace] = ACTIONS(4330), - [anon_sym_class] = ACTIONS(4330), - [anon_sym_ref] = ACTIONS(4330), - [anon_sym_struct] = ACTIONS(4330), - [anon_sym_enum] = ACTIONS(4330), - [anon_sym_RBRACE] = ACTIONS(4332), - [anon_sym_interface] = ACTIONS(4330), - [anon_sym_delegate] = ACTIONS(4330), - [anon_sym_record] = ACTIONS(4330), - [anon_sym_abstract] = ACTIONS(4330), - [anon_sym_async] = ACTIONS(4330), - [anon_sym_const] = ACTIONS(4330), - [anon_sym_file] = ACTIONS(4330), - [anon_sym_fixed] = ACTIONS(4330), - [anon_sym_internal] = ACTIONS(4330), - [anon_sym_new] = ACTIONS(4330), - [anon_sym_override] = ACTIONS(4330), - [anon_sym_partial] = ACTIONS(4330), - [anon_sym_private] = ACTIONS(4330), - [anon_sym_protected] = ACTIONS(4330), - [anon_sym_public] = ACTIONS(4330), - [anon_sym_readonly] = ACTIONS(4330), - [anon_sym_required] = ACTIONS(4330), - [anon_sym_sealed] = ACTIONS(4330), - [anon_sym_virtual] = ACTIONS(4330), - [anon_sym_volatile] = ACTIONS(4330), - [anon_sym_where] = ACTIONS(4330), - [anon_sym_notnull] = ACTIONS(4330), - [anon_sym_unmanaged] = ACTIONS(4330), - [anon_sym_TILDE] = ACTIONS(4332), - [anon_sym_implicit] = ACTIONS(4330), - [anon_sym_explicit] = ACTIONS(4330), - [anon_sym_scoped] = ACTIONS(4330), - [anon_sym_var] = ACTIONS(4330), - [sym_predefined_type] = ACTIONS(4330), - [anon_sym_yield] = ACTIONS(4330), - [anon_sym_when] = ACTIONS(4330), - [anon_sym_from] = ACTIONS(4330), - [anon_sym_into] = ACTIONS(4330), - [anon_sym_join] = ACTIONS(4330), - [anon_sym_on] = ACTIONS(4330), - [anon_sym_equals] = ACTIONS(4330), - [anon_sym_let] = ACTIONS(4330), - [anon_sym_orderby] = ACTIONS(4330), - [anon_sym_ascending] = ACTIONS(4330), - [anon_sym_descending] = ACTIONS(4330), - [anon_sym_group] = ACTIONS(4330), - [anon_sym_by] = ACTIONS(4330), - [anon_sym_select] = ACTIONS(4330), - [aux_sym_preproc_if_token1] = ACTIONS(4332), - [aux_sym_preproc_if_token3] = ACTIONS(4332), - [aux_sym_preproc_else_token1] = ACTIONS(4332), - [aux_sym_preproc_elif_token1] = ACTIONS(4332), + [sym__identifier_token] = ACTIONS(4335), + [anon_sym_extern] = ACTIONS(4335), + [anon_sym_alias] = ACTIONS(4335), + [anon_sym_global] = ACTIONS(4335), + [anon_sym_using] = ACTIONS(4335), + [anon_sym_unsafe] = ACTIONS(4335), + [anon_sym_static] = ACTIONS(4335), + [anon_sym_LBRACK] = ACTIONS(4337), + [anon_sym_LPAREN] = ACTIONS(4337), + [anon_sym_event] = ACTIONS(4335), + [anon_sym_namespace] = ACTIONS(4335), + [anon_sym_class] = ACTIONS(4335), + [anon_sym_ref] = ACTIONS(4335), + [anon_sym_struct] = ACTIONS(4335), + [anon_sym_enum] = ACTIONS(4335), + [anon_sym_RBRACE] = ACTIONS(4337), + [anon_sym_interface] = ACTIONS(4335), + [anon_sym_delegate] = ACTIONS(4335), + [anon_sym_record] = ACTIONS(4335), + [anon_sym_abstract] = ACTIONS(4335), + [anon_sym_async] = ACTIONS(4335), + [anon_sym_const] = ACTIONS(4335), + [anon_sym_file] = ACTIONS(4335), + [anon_sym_fixed] = ACTIONS(4335), + [anon_sym_internal] = ACTIONS(4335), + [anon_sym_new] = ACTIONS(4335), + [anon_sym_override] = ACTIONS(4335), + [anon_sym_partial] = ACTIONS(4335), + [anon_sym_private] = ACTIONS(4335), + [anon_sym_protected] = ACTIONS(4335), + [anon_sym_public] = ACTIONS(4335), + [anon_sym_readonly] = ACTIONS(4335), + [anon_sym_required] = ACTIONS(4335), + [anon_sym_sealed] = ACTIONS(4335), + [anon_sym_virtual] = ACTIONS(4335), + [anon_sym_volatile] = ACTIONS(4335), + [anon_sym_where] = ACTIONS(4335), + [anon_sym_notnull] = ACTIONS(4335), + [anon_sym_unmanaged] = ACTIONS(4335), + [anon_sym_TILDE] = ACTIONS(4337), + [anon_sym_implicit] = ACTIONS(4335), + [anon_sym_explicit] = ACTIONS(4335), + [anon_sym_scoped] = ACTIONS(4335), + [anon_sym_var] = ACTIONS(4335), + [sym_predefined_type] = ACTIONS(4335), + [anon_sym_yield] = ACTIONS(4335), + [anon_sym_when] = ACTIONS(4335), + [anon_sym_from] = ACTIONS(4335), + [anon_sym_into] = ACTIONS(4335), + [anon_sym_join] = ACTIONS(4335), + [anon_sym_on] = ACTIONS(4335), + [anon_sym_equals] = ACTIONS(4335), + [anon_sym_let] = ACTIONS(4335), + [anon_sym_orderby] = ACTIONS(4335), + [anon_sym_ascending] = ACTIONS(4335), + [anon_sym_descending] = ACTIONS(4335), + [anon_sym_group] = ACTIONS(4335), + [anon_sym_by] = ACTIONS(4335), + [anon_sym_select] = ACTIONS(4335), + [aux_sym_preproc_if_token1] = ACTIONS(4337), + [aux_sym_preproc_if_token3] = ACTIONS(4337), + [aux_sym_preproc_else_token1] = ACTIONS(4337), + [aux_sym_preproc_elif_token1] = ACTIONS(4337), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -442129,68 +441743,69 @@ 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), - [sym__identifier_token] = ACTIONS(4104), - [anon_sym_alias] = ACTIONS(4104), - [anon_sym_global] = ACTIONS(4104), - [anon_sym_LBRACK] = ACTIONS(4106), - [anon_sym_COLON] = ACTIONS(4106), - [anon_sym_COMMA] = ACTIONS(4106), - [anon_sym_LPAREN] = ACTIONS(4106), - [anon_sym_LBRACE] = ACTIONS(4106), - [anon_sym_file] = ACTIONS(4104), - [anon_sym_LT] = ACTIONS(4104), - [anon_sym_GT] = ACTIONS(4104), - [anon_sym_where] = ACTIONS(4104), - [anon_sym_QMARK] = ACTIONS(4104), - [anon_sym_notnull] = ACTIONS(4104), - [anon_sym_unmanaged] = ACTIONS(4104), - [anon_sym_BANG] = ACTIONS(4104), - [anon_sym_PLUS_PLUS] = ACTIONS(4106), - [anon_sym_DASH_DASH] = ACTIONS(4106), - [anon_sym_PLUS] = ACTIONS(4104), - [anon_sym_DASH] = ACTIONS(4104), - [anon_sym_STAR] = ACTIONS(4106), - [anon_sym_SLASH] = ACTIONS(4104), - [anon_sym_PERCENT] = ACTIONS(4106), - [anon_sym_CARET] = ACTIONS(4106), - [anon_sym_PIPE] = ACTIONS(4104), - [anon_sym_AMP] = ACTIONS(4104), - [anon_sym_LT_LT] = ACTIONS(4106), - [anon_sym_GT_GT] = ACTIONS(4104), - [anon_sym_GT_GT_GT] = ACTIONS(4106), - [anon_sym_EQ_EQ] = ACTIONS(4106), - [anon_sym_BANG_EQ] = ACTIONS(4106), - [anon_sym_GT_EQ] = ACTIONS(4106), - [anon_sym_LT_EQ] = ACTIONS(4106), - [anon_sym_DOT] = ACTIONS(4104), - [anon_sym_scoped] = ACTIONS(4104), - [anon_sym_var] = ACTIONS(4104), - [anon_sym_yield] = ACTIONS(4104), - [anon_sym_switch] = ACTIONS(4104), - [anon_sym_when] = ACTIONS(4104), - [sym_discard] = ACTIONS(4104), - [anon_sym_DOT_DOT] = ACTIONS(4106), - [anon_sym_and] = ACTIONS(4104), - [anon_sym_or] = ACTIONS(4104), - [anon_sym_AMP_AMP] = ACTIONS(4106), - [anon_sym_PIPE_PIPE] = ACTIONS(4106), - [anon_sym_QMARK_QMARK] = ACTIONS(4106), - [anon_sym_from] = ACTIONS(4104), - [anon_sym_into] = ACTIONS(4104), - [anon_sym_join] = ACTIONS(4104), - [anon_sym_on] = ACTIONS(4104), - [anon_sym_equals] = ACTIONS(4104), - [anon_sym_let] = ACTIONS(4104), - [anon_sym_orderby] = ACTIONS(4104), - [anon_sym_ascending] = ACTIONS(4104), - [anon_sym_descending] = ACTIONS(4104), - [anon_sym_group] = ACTIONS(4104), - [anon_sym_by] = ACTIONS(4104), - [anon_sym_select] = ACTIONS(4104), - [anon_sym_as] = ACTIONS(4104), - [anon_sym_is] = ACTIONS(4104), - [anon_sym_DASH_GT] = ACTIONS(4106), - [anon_sym_with] = ACTIONS(4104), + [sym__identifier_token] = ACTIONS(4339), + [anon_sym_extern] = ACTIONS(4339), + [anon_sym_alias] = ACTIONS(4339), + [anon_sym_global] = ACTIONS(4339), + [anon_sym_using] = ACTIONS(4339), + [anon_sym_unsafe] = ACTIONS(4339), + [anon_sym_static] = ACTIONS(4339), + [anon_sym_LBRACK] = ACTIONS(4341), + [anon_sym_LPAREN] = ACTIONS(4341), + [anon_sym_event] = ACTIONS(4339), + [anon_sym_namespace] = ACTIONS(4339), + [anon_sym_class] = ACTIONS(4339), + [anon_sym_ref] = ACTIONS(4339), + [anon_sym_struct] = ACTIONS(4339), + [anon_sym_enum] = ACTIONS(4339), + [anon_sym_RBRACE] = ACTIONS(4341), + [anon_sym_interface] = ACTIONS(4339), + [anon_sym_delegate] = ACTIONS(4339), + [anon_sym_record] = ACTIONS(4339), + [anon_sym_abstract] = ACTIONS(4339), + [anon_sym_async] = ACTIONS(4339), + [anon_sym_const] = ACTIONS(4339), + [anon_sym_file] = ACTIONS(4339), + [anon_sym_fixed] = ACTIONS(4339), + [anon_sym_internal] = ACTIONS(4339), + [anon_sym_new] = ACTIONS(4339), + [anon_sym_override] = ACTIONS(4339), + [anon_sym_partial] = ACTIONS(4339), + [anon_sym_private] = ACTIONS(4339), + [anon_sym_protected] = ACTIONS(4339), + [anon_sym_public] = ACTIONS(4339), + [anon_sym_readonly] = ACTIONS(4339), + [anon_sym_required] = ACTIONS(4339), + [anon_sym_sealed] = ACTIONS(4339), + [anon_sym_virtual] = ACTIONS(4339), + [anon_sym_volatile] = ACTIONS(4339), + [anon_sym_where] = ACTIONS(4339), + [anon_sym_notnull] = ACTIONS(4339), + [anon_sym_unmanaged] = ACTIONS(4339), + [anon_sym_TILDE] = ACTIONS(4341), + [anon_sym_implicit] = ACTIONS(4339), + [anon_sym_explicit] = ACTIONS(4339), + [anon_sym_scoped] = ACTIONS(4339), + [anon_sym_var] = ACTIONS(4339), + [sym_predefined_type] = ACTIONS(4339), + [anon_sym_yield] = ACTIONS(4339), + [anon_sym_when] = ACTIONS(4339), + [anon_sym_from] = ACTIONS(4339), + [anon_sym_into] = ACTIONS(4339), + [anon_sym_join] = ACTIONS(4339), + [anon_sym_on] = ACTIONS(4339), + [anon_sym_equals] = ACTIONS(4339), + [anon_sym_let] = ACTIONS(4339), + [anon_sym_orderby] = ACTIONS(4339), + [anon_sym_ascending] = ACTIONS(4339), + [anon_sym_descending] = ACTIONS(4339), + [anon_sym_group] = ACTIONS(4339), + [anon_sym_by] = ACTIONS(4339), + [anon_sym_select] = ACTIONS(4339), + [aux_sym_preproc_if_token1] = ACTIONS(4341), + [aux_sym_preproc_if_token3] = ACTIONS(4341), + [aux_sym_preproc_else_token1] = ACTIONS(4341), + [aux_sym_preproc_elif_token1] = ACTIONS(4341), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -442201,7 +441816,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(4106), }, [2659] = { [sym_preproc_region] = STATE(2659), @@ -442213,69 +441827,69 @@ 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(4334), - [anon_sym_extern] = ACTIONS(4334), - [anon_sym_alias] = ACTIONS(4334), - [anon_sym_global] = ACTIONS(4334), - [anon_sym_using] = ACTIONS(4334), - [anon_sym_unsafe] = ACTIONS(4334), - [anon_sym_static] = ACTIONS(4334), - [anon_sym_LBRACK] = ACTIONS(4336), - [anon_sym_LPAREN] = ACTIONS(4336), - [anon_sym_event] = ACTIONS(4334), - [anon_sym_namespace] = ACTIONS(4334), - [anon_sym_class] = ACTIONS(4334), - [anon_sym_ref] = ACTIONS(4334), - [anon_sym_struct] = ACTIONS(4334), - [anon_sym_enum] = ACTIONS(4334), - [anon_sym_RBRACE] = ACTIONS(4336), - [anon_sym_interface] = ACTIONS(4334), - [anon_sym_delegate] = ACTIONS(4334), - [anon_sym_record] = ACTIONS(4334), - [anon_sym_abstract] = ACTIONS(4334), - [anon_sym_async] = ACTIONS(4334), - [anon_sym_const] = ACTIONS(4334), - [anon_sym_file] = ACTIONS(4334), - [anon_sym_fixed] = ACTIONS(4334), - [anon_sym_internal] = ACTIONS(4334), - [anon_sym_new] = ACTIONS(4334), - [anon_sym_override] = ACTIONS(4334), - [anon_sym_partial] = ACTIONS(4334), - [anon_sym_private] = ACTIONS(4334), - [anon_sym_protected] = ACTIONS(4334), - [anon_sym_public] = ACTIONS(4334), - [anon_sym_readonly] = ACTIONS(4334), - [anon_sym_required] = ACTIONS(4334), - [anon_sym_sealed] = ACTIONS(4334), - [anon_sym_virtual] = ACTIONS(4334), - [anon_sym_volatile] = ACTIONS(4334), - [anon_sym_where] = ACTIONS(4334), - [anon_sym_notnull] = ACTIONS(4334), - [anon_sym_unmanaged] = ACTIONS(4334), - [anon_sym_TILDE] = ACTIONS(4336), - [anon_sym_implicit] = ACTIONS(4334), - [anon_sym_explicit] = ACTIONS(4334), - [anon_sym_scoped] = ACTIONS(4334), - [anon_sym_var] = ACTIONS(4334), - [sym_predefined_type] = ACTIONS(4334), - [anon_sym_yield] = ACTIONS(4334), - [anon_sym_when] = ACTIONS(4334), - [anon_sym_from] = ACTIONS(4334), - [anon_sym_into] = ACTIONS(4334), - [anon_sym_join] = ACTIONS(4334), - [anon_sym_on] = ACTIONS(4334), - [anon_sym_equals] = ACTIONS(4334), - [anon_sym_let] = ACTIONS(4334), - [anon_sym_orderby] = ACTIONS(4334), - [anon_sym_ascending] = ACTIONS(4334), - [anon_sym_descending] = ACTIONS(4334), - [anon_sym_group] = ACTIONS(4334), - [anon_sym_by] = ACTIONS(4334), - [anon_sym_select] = ACTIONS(4334), - [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), + [sym__identifier_token] = ACTIONS(4343), + [anon_sym_extern] = ACTIONS(4343), + [anon_sym_alias] = ACTIONS(4343), + [anon_sym_global] = ACTIONS(4343), + [anon_sym_using] = ACTIONS(4343), + [anon_sym_unsafe] = ACTIONS(4343), + [anon_sym_static] = ACTIONS(4343), + [anon_sym_LBRACK] = ACTIONS(4345), + [anon_sym_LPAREN] = ACTIONS(4345), + [anon_sym_event] = ACTIONS(4343), + [anon_sym_namespace] = ACTIONS(4343), + [anon_sym_class] = ACTIONS(4343), + [anon_sym_ref] = ACTIONS(4343), + [anon_sym_struct] = ACTIONS(4343), + [anon_sym_enum] = ACTIONS(4343), + [anon_sym_RBRACE] = ACTIONS(4345), + [anon_sym_interface] = ACTIONS(4343), + [anon_sym_delegate] = ACTIONS(4343), + [anon_sym_record] = ACTIONS(4343), + [anon_sym_abstract] = ACTIONS(4343), + [anon_sym_async] = ACTIONS(4343), + [anon_sym_const] = ACTIONS(4343), + [anon_sym_file] = ACTIONS(4343), + [anon_sym_fixed] = ACTIONS(4343), + [anon_sym_internal] = ACTIONS(4343), + [anon_sym_new] = ACTIONS(4343), + [anon_sym_override] = ACTIONS(4343), + [anon_sym_partial] = ACTIONS(4343), + [anon_sym_private] = ACTIONS(4343), + [anon_sym_protected] = ACTIONS(4343), + [anon_sym_public] = ACTIONS(4343), + [anon_sym_readonly] = ACTIONS(4343), + [anon_sym_required] = ACTIONS(4343), + [anon_sym_sealed] = ACTIONS(4343), + [anon_sym_virtual] = ACTIONS(4343), + [anon_sym_volatile] = ACTIONS(4343), + [anon_sym_where] = ACTIONS(4343), + [anon_sym_notnull] = ACTIONS(4343), + [anon_sym_unmanaged] = ACTIONS(4343), + [anon_sym_TILDE] = ACTIONS(4345), + [anon_sym_implicit] = ACTIONS(4343), + [anon_sym_explicit] = ACTIONS(4343), + [anon_sym_scoped] = ACTIONS(4343), + [anon_sym_var] = ACTIONS(4343), + [sym_predefined_type] = ACTIONS(4343), + [anon_sym_yield] = ACTIONS(4343), + [anon_sym_when] = ACTIONS(4343), + [anon_sym_from] = ACTIONS(4343), + [anon_sym_into] = ACTIONS(4343), + [anon_sym_join] = ACTIONS(4343), + [anon_sym_on] = ACTIONS(4343), + [anon_sym_equals] = ACTIONS(4343), + [anon_sym_let] = ACTIONS(4343), + [anon_sym_orderby] = ACTIONS(4343), + [anon_sym_ascending] = ACTIONS(4343), + [anon_sym_descending] = ACTIONS(4343), + [anon_sym_group] = ACTIONS(4343), + [anon_sym_by] = ACTIONS(4343), + [anon_sym_select] = ACTIONS(4343), + [aux_sym_preproc_if_token1] = ACTIONS(4345), + [aux_sym_preproc_if_token3] = ACTIONS(4345), + [aux_sym_preproc_else_token1] = ACTIONS(4345), + [aux_sym_preproc_elif_token1] = ACTIONS(4345), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -442297,69 +441911,69 @@ 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(4338), - [anon_sym_extern] = ACTIONS(4338), - [anon_sym_alias] = ACTIONS(4338), - [anon_sym_global] = ACTIONS(4338), - [anon_sym_using] = ACTIONS(4338), - [anon_sym_unsafe] = ACTIONS(4338), - [anon_sym_static] = ACTIONS(4338), - [anon_sym_LBRACK] = ACTIONS(4340), - [anon_sym_LPAREN] = ACTIONS(4340), - [anon_sym_event] = ACTIONS(4338), - [anon_sym_namespace] = ACTIONS(4338), - [anon_sym_class] = ACTIONS(4338), - [anon_sym_ref] = ACTIONS(4338), - [anon_sym_struct] = ACTIONS(4338), - [anon_sym_enum] = ACTIONS(4338), - [anon_sym_RBRACE] = ACTIONS(4340), - [anon_sym_interface] = ACTIONS(4338), - [anon_sym_delegate] = ACTIONS(4338), - [anon_sym_record] = ACTIONS(4338), - [anon_sym_abstract] = ACTIONS(4338), - [anon_sym_async] = ACTIONS(4338), - [anon_sym_const] = ACTIONS(4338), - [anon_sym_file] = ACTIONS(4338), - [anon_sym_fixed] = ACTIONS(4338), - [anon_sym_internal] = ACTIONS(4338), - [anon_sym_new] = ACTIONS(4338), - [anon_sym_override] = ACTIONS(4338), - [anon_sym_partial] = ACTIONS(4338), - [anon_sym_private] = ACTIONS(4338), - [anon_sym_protected] = ACTIONS(4338), - [anon_sym_public] = ACTIONS(4338), - [anon_sym_readonly] = ACTIONS(4338), - [anon_sym_required] = ACTIONS(4338), - [anon_sym_sealed] = ACTIONS(4338), - [anon_sym_virtual] = ACTIONS(4338), - [anon_sym_volatile] = ACTIONS(4338), - [anon_sym_where] = ACTIONS(4338), - [anon_sym_notnull] = ACTIONS(4338), - [anon_sym_unmanaged] = ACTIONS(4338), - [anon_sym_TILDE] = ACTIONS(4340), - [anon_sym_implicit] = ACTIONS(4338), - [anon_sym_explicit] = ACTIONS(4338), - [anon_sym_scoped] = ACTIONS(4338), - [anon_sym_var] = ACTIONS(4338), - [sym_predefined_type] = ACTIONS(4338), - [anon_sym_yield] = ACTIONS(4338), - [anon_sym_when] = ACTIONS(4338), - [anon_sym_from] = ACTIONS(4338), - [anon_sym_into] = ACTIONS(4338), - [anon_sym_join] = ACTIONS(4338), - [anon_sym_on] = ACTIONS(4338), - [anon_sym_equals] = ACTIONS(4338), - [anon_sym_let] = ACTIONS(4338), - [anon_sym_orderby] = ACTIONS(4338), - [anon_sym_ascending] = ACTIONS(4338), - [anon_sym_descending] = ACTIONS(4338), - [anon_sym_group] = ACTIONS(4338), - [anon_sym_by] = ACTIONS(4338), - [anon_sym_select] = ACTIONS(4338), - [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), + [sym__identifier_token] = ACTIONS(4347), + [anon_sym_extern] = ACTIONS(4347), + [anon_sym_alias] = ACTIONS(4347), + [anon_sym_global] = ACTIONS(4347), + [anon_sym_using] = ACTIONS(4347), + [anon_sym_unsafe] = ACTIONS(4347), + [anon_sym_static] = ACTIONS(4347), + [anon_sym_LBRACK] = ACTIONS(4349), + [anon_sym_LPAREN] = ACTIONS(4349), + [anon_sym_event] = ACTIONS(4347), + [anon_sym_namespace] = ACTIONS(4347), + [anon_sym_class] = ACTIONS(4347), + [anon_sym_ref] = ACTIONS(4347), + [anon_sym_struct] = ACTIONS(4347), + [anon_sym_enum] = ACTIONS(4347), + [anon_sym_RBRACE] = ACTIONS(4349), + [anon_sym_interface] = ACTIONS(4347), + [anon_sym_delegate] = ACTIONS(4347), + [anon_sym_record] = ACTIONS(4347), + [anon_sym_abstract] = ACTIONS(4347), + [anon_sym_async] = ACTIONS(4347), + [anon_sym_const] = ACTIONS(4347), + [anon_sym_file] = ACTIONS(4347), + [anon_sym_fixed] = ACTIONS(4347), + [anon_sym_internal] = ACTIONS(4347), + [anon_sym_new] = ACTIONS(4347), + [anon_sym_override] = ACTIONS(4347), + [anon_sym_partial] = ACTIONS(4347), + [anon_sym_private] = ACTIONS(4347), + [anon_sym_protected] = ACTIONS(4347), + [anon_sym_public] = ACTIONS(4347), + [anon_sym_readonly] = ACTIONS(4347), + [anon_sym_required] = ACTIONS(4347), + [anon_sym_sealed] = ACTIONS(4347), + [anon_sym_virtual] = ACTIONS(4347), + [anon_sym_volatile] = ACTIONS(4347), + [anon_sym_where] = ACTIONS(4347), + [anon_sym_notnull] = ACTIONS(4347), + [anon_sym_unmanaged] = ACTIONS(4347), + [anon_sym_TILDE] = ACTIONS(4349), + [anon_sym_implicit] = ACTIONS(4347), + [anon_sym_explicit] = ACTIONS(4347), + [anon_sym_scoped] = ACTIONS(4347), + [anon_sym_var] = ACTIONS(4347), + [sym_predefined_type] = ACTIONS(4347), + [anon_sym_yield] = ACTIONS(4347), + [anon_sym_when] = ACTIONS(4347), + [anon_sym_from] = ACTIONS(4347), + [anon_sym_into] = ACTIONS(4347), + [anon_sym_join] = ACTIONS(4347), + [anon_sym_on] = ACTIONS(4347), + [anon_sym_equals] = ACTIONS(4347), + [anon_sym_let] = ACTIONS(4347), + [anon_sym_orderby] = ACTIONS(4347), + [anon_sym_ascending] = ACTIONS(4347), + [anon_sym_descending] = ACTIONS(4347), + [anon_sym_group] = ACTIONS(4347), + [anon_sym_by] = ACTIONS(4347), + [anon_sym_select] = ACTIONS(4347), + [aux_sym_preproc_if_token1] = ACTIONS(4349), + [aux_sym_preproc_if_token3] = ACTIONS(4349), + [aux_sym_preproc_else_token1] = ACTIONS(4349), + [aux_sym_preproc_elif_token1] = ACTIONS(4349), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -442381,69 +441995,69 @@ 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(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_static] = ACTIONS(4342), - [anon_sym_LBRACK] = ACTIONS(4344), - [anon_sym_LPAREN] = ACTIONS(4344), - [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(4344), - [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(4344), - [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(4344), - [aux_sym_preproc_if_token3] = ACTIONS(4344), - [aux_sym_preproc_else_token1] = ACTIONS(4344), - [aux_sym_preproc_elif_token1] = ACTIONS(4344), + [sym__identifier_token] = ACTIONS(4351), + [anon_sym_extern] = ACTIONS(4351), + [anon_sym_alias] = ACTIONS(4351), + [anon_sym_global] = ACTIONS(4351), + [anon_sym_using] = ACTIONS(4351), + [anon_sym_unsafe] = ACTIONS(4351), + [anon_sym_static] = ACTIONS(4351), + [anon_sym_LBRACK] = ACTIONS(4353), + [anon_sym_LPAREN] = ACTIONS(4353), + [anon_sym_event] = ACTIONS(4351), + [anon_sym_namespace] = ACTIONS(4351), + [anon_sym_class] = ACTIONS(4351), + [anon_sym_ref] = ACTIONS(4351), + [anon_sym_struct] = ACTIONS(4351), + [anon_sym_enum] = ACTIONS(4351), + [anon_sym_RBRACE] = ACTIONS(4353), + [anon_sym_interface] = ACTIONS(4351), + [anon_sym_delegate] = ACTIONS(4351), + [anon_sym_record] = ACTIONS(4351), + [anon_sym_abstract] = ACTIONS(4351), + [anon_sym_async] = ACTIONS(4351), + [anon_sym_const] = ACTIONS(4351), + [anon_sym_file] = ACTIONS(4351), + [anon_sym_fixed] = ACTIONS(4351), + [anon_sym_internal] = ACTIONS(4351), + [anon_sym_new] = ACTIONS(4351), + [anon_sym_override] = ACTIONS(4351), + [anon_sym_partial] = ACTIONS(4351), + [anon_sym_private] = ACTIONS(4351), + [anon_sym_protected] = ACTIONS(4351), + [anon_sym_public] = ACTIONS(4351), + [anon_sym_readonly] = ACTIONS(4351), + [anon_sym_required] = ACTIONS(4351), + [anon_sym_sealed] = ACTIONS(4351), + [anon_sym_virtual] = ACTIONS(4351), + [anon_sym_volatile] = ACTIONS(4351), + [anon_sym_where] = ACTIONS(4351), + [anon_sym_notnull] = ACTIONS(4351), + [anon_sym_unmanaged] = ACTIONS(4351), + [anon_sym_TILDE] = ACTIONS(4353), + [anon_sym_implicit] = ACTIONS(4351), + [anon_sym_explicit] = ACTIONS(4351), + [anon_sym_scoped] = ACTIONS(4351), + [anon_sym_var] = ACTIONS(4351), + [sym_predefined_type] = ACTIONS(4351), + [anon_sym_yield] = ACTIONS(4351), + [anon_sym_when] = ACTIONS(4351), + [anon_sym_from] = ACTIONS(4351), + [anon_sym_into] = ACTIONS(4351), + [anon_sym_join] = ACTIONS(4351), + [anon_sym_on] = ACTIONS(4351), + [anon_sym_equals] = ACTIONS(4351), + [anon_sym_let] = ACTIONS(4351), + [anon_sym_orderby] = ACTIONS(4351), + [anon_sym_ascending] = ACTIONS(4351), + [anon_sym_descending] = ACTIONS(4351), + [anon_sym_group] = ACTIONS(4351), + [anon_sym_by] = ACTIONS(4351), + [anon_sym_select] = ACTIONS(4351), + [aux_sym_preproc_if_token1] = ACTIONS(4353), + [aux_sym_preproc_if_token3] = ACTIONS(4353), + [aux_sym_preproc_else_token1] = ACTIONS(4353), + [aux_sym_preproc_elif_token1] = ACTIONS(4353), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -442456,10 +442070,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2662] = { - [sym__variable_designation] = STATE(4130), - [sym_parenthesized_variable_designation] = STATE(4173), - [sym_identifier] = STATE(4177), - [sym__reserved_identifier] = STATE(2945), [sym_preproc_region] = STATE(2662), [sym_preproc_endregion] = STATE(2662), [sym_preproc_line] = STATE(2662), @@ -442469,65 +442079,69 @@ 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), - [sym__identifier_token] = ACTIONS(3887), - [anon_sym_alias] = ACTIONS(3889), - [anon_sym_global] = ACTIONS(3889), - [anon_sym_LBRACK] = ACTIONS(3905), - [anon_sym_LPAREN] = ACTIONS(3905), - [anon_sym_file] = ACTIONS(3889), - [anon_sym_LT] = ACTIONS(3907), - [anon_sym_GT] = ACTIONS(3907), - [anon_sym_where] = ACTIONS(3907), - [anon_sym_QMARK] = ACTIONS(3907), - [anon_sym_notnull] = ACTIONS(3889), - [anon_sym_unmanaged] = ACTIONS(3889), - [anon_sym_BANG] = ACTIONS(3907), - [anon_sym_PLUS_PLUS] = ACTIONS(3905), - [anon_sym_DASH_DASH] = ACTIONS(3905), - [anon_sym_PLUS] = ACTIONS(3907), - [anon_sym_DASH] = ACTIONS(3907), - [anon_sym_STAR] = ACTIONS(3905), - [anon_sym_SLASH] = ACTIONS(3907), - [anon_sym_PERCENT] = ACTIONS(3905), - [anon_sym_CARET] = ACTIONS(3905), - [anon_sym_PIPE] = ACTIONS(3907), - [anon_sym_AMP] = ACTIONS(3907), - [anon_sym_LT_LT] = ACTIONS(3905), - [anon_sym_GT_GT] = ACTIONS(3907), - [anon_sym_GT_GT_GT] = ACTIONS(3905), - [anon_sym_EQ_EQ] = ACTIONS(3905), - [anon_sym_BANG_EQ] = ACTIONS(3905), - [anon_sym_GT_EQ] = ACTIONS(3905), - [anon_sym_LT_EQ] = ACTIONS(3905), - [anon_sym_DOT] = ACTIONS(3907), - [anon_sym_scoped] = ACTIONS(3889), - [anon_sym_var] = ACTIONS(3889), - [anon_sym_yield] = ACTIONS(3889), - [anon_sym_switch] = ACTIONS(3907), - [anon_sym_when] = ACTIONS(3889), - [sym_discard] = ACTIONS(4209), - [anon_sym_DOT_DOT] = ACTIONS(3905), - [anon_sym_and] = ACTIONS(3907), - [anon_sym_or] = ACTIONS(3907), - [anon_sym_AMP_AMP] = ACTIONS(3905), - [anon_sym_PIPE_PIPE] = ACTIONS(3905), - [anon_sym_QMARK_QMARK] = ACTIONS(3905), - [anon_sym_from] = ACTIONS(3907), - [anon_sym_into] = ACTIONS(3889), - [anon_sym_join] = ACTIONS(3907), - [anon_sym_on] = ACTIONS(3889), - [anon_sym_equals] = ACTIONS(3889), - [anon_sym_let] = ACTIONS(3907), - [anon_sym_orderby] = ACTIONS(3907), - [anon_sym_ascending] = ACTIONS(3889), - [anon_sym_descending] = ACTIONS(3889), - [anon_sym_group] = ACTIONS(3907), - [anon_sym_by] = ACTIONS(3889), - [anon_sym_select] = ACTIONS(3907), - [anon_sym_as] = ACTIONS(3907), - [anon_sym_is] = ACTIONS(3907), - [anon_sym_DASH_GT] = ACTIONS(3905), - [anon_sym_with] = ACTIONS(3907), + [sym__identifier_token] = ACTIONS(4355), + [anon_sym_extern] = ACTIONS(4355), + [anon_sym_alias] = ACTIONS(4355), + [anon_sym_global] = ACTIONS(4355), + [anon_sym_using] = ACTIONS(4355), + [anon_sym_unsafe] = ACTIONS(4355), + [anon_sym_static] = ACTIONS(4355), + [anon_sym_LBRACK] = ACTIONS(4357), + [anon_sym_LPAREN] = ACTIONS(4357), + [anon_sym_event] = ACTIONS(4355), + [anon_sym_namespace] = ACTIONS(4355), + [anon_sym_class] = ACTIONS(4355), + [anon_sym_ref] = ACTIONS(4355), + [anon_sym_struct] = ACTIONS(4355), + [anon_sym_enum] = ACTIONS(4355), + [anon_sym_RBRACE] = ACTIONS(4357), + [anon_sym_interface] = ACTIONS(4355), + [anon_sym_delegate] = ACTIONS(4355), + [anon_sym_record] = ACTIONS(4355), + [anon_sym_abstract] = ACTIONS(4355), + [anon_sym_async] = ACTIONS(4355), + [anon_sym_const] = ACTIONS(4355), + [anon_sym_file] = ACTIONS(4355), + [anon_sym_fixed] = ACTIONS(4355), + [anon_sym_internal] = ACTIONS(4355), + [anon_sym_new] = ACTIONS(4355), + [anon_sym_override] = ACTIONS(4355), + [anon_sym_partial] = ACTIONS(4355), + [anon_sym_private] = ACTIONS(4355), + [anon_sym_protected] = ACTIONS(4355), + [anon_sym_public] = ACTIONS(4355), + [anon_sym_readonly] = ACTIONS(4355), + [anon_sym_required] = ACTIONS(4355), + [anon_sym_sealed] = ACTIONS(4355), + [anon_sym_virtual] = ACTIONS(4355), + [anon_sym_volatile] = ACTIONS(4355), + [anon_sym_where] = ACTIONS(4355), + [anon_sym_notnull] = ACTIONS(4355), + [anon_sym_unmanaged] = ACTIONS(4355), + [anon_sym_TILDE] = ACTIONS(4357), + [anon_sym_implicit] = ACTIONS(4355), + [anon_sym_explicit] = ACTIONS(4355), + [anon_sym_scoped] = ACTIONS(4355), + [anon_sym_var] = ACTIONS(4355), + [sym_predefined_type] = ACTIONS(4355), + [anon_sym_yield] = ACTIONS(4355), + [anon_sym_when] = ACTIONS(4355), + [anon_sym_from] = ACTIONS(4355), + [anon_sym_into] = ACTIONS(4355), + [anon_sym_join] = ACTIONS(4355), + [anon_sym_on] = ACTIONS(4355), + [anon_sym_equals] = ACTIONS(4355), + [anon_sym_let] = ACTIONS(4355), + [anon_sym_orderby] = ACTIONS(4355), + [anon_sym_ascending] = ACTIONS(4355), + [anon_sym_descending] = ACTIONS(4355), + [anon_sym_group] = ACTIONS(4355), + [anon_sym_by] = ACTIONS(4355), + [anon_sym_select] = ACTIONS(4355), + [aux_sym_preproc_if_token1] = ACTIONS(4357), + [aux_sym_preproc_if_token3] = ACTIONS(4357), + [aux_sym_preproc_else_token1] = ACTIONS(4357), + [aux_sym_preproc_elif_token1] = ACTIONS(4357), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -442549,68 +442163,69 @@ 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(4112), - [anon_sym_alias] = ACTIONS(4112), - [anon_sym_global] = ACTIONS(4112), - [anon_sym_LBRACK] = ACTIONS(4114), - [anon_sym_COLON] = ACTIONS(4114), - [anon_sym_COMMA] = ACTIONS(4114), - [anon_sym_LPAREN] = ACTIONS(4114), - [anon_sym_LBRACE] = ACTIONS(4114), - [anon_sym_file] = ACTIONS(4112), - [anon_sym_LT] = ACTIONS(4112), - [anon_sym_GT] = ACTIONS(4112), - [anon_sym_where] = ACTIONS(4112), - [anon_sym_QMARK] = ACTIONS(4112), - [anon_sym_notnull] = ACTIONS(4112), - [anon_sym_unmanaged] = ACTIONS(4112), - [anon_sym_BANG] = ACTIONS(4112), - [anon_sym_PLUS_PLUS] = ACTIONS(4114), - [anon_sym_DASH_DASH] = ACTIONS(4114), - [anon_sym_PLUS] = ACTIONS(4112), - [anon_sym_DASH] = ACTIONS(4112), - [anon_sym_STAR] = ACTIONS(4114), - [anon_sym_SLASH] = ACTIONS(4112), - [anon_sym_PERCENT] = ACTIONS(4114), - [anon_sym_CARET] = ACTIONS(4114), - [anon_sym_PIPE] = ACTIONS(4112), - [anon_sym_AMP] = ACTIONS(4112), - [anon_sym_LT_LT] = ACTIONS(4114), - [anon_sym_GT_GT] = ACTIONS(4112), - [anon_sym_GT_GT_GT] = ACTIONS(4114), - [anon_sym_EQ_EQ] = ACTIONS(4114), - [anon_sym_BANG_EQ] = ACTIONS(4114), - [anon_sym_GT_EQ] = ACTIONS(4114), - [anon_sym_LT_EQ] = ACTIONS(4114), - [anon_sym_DOT] = ACTIONS(4112), - [anon_sym_scoped] = ACTIONS(4112), - [anon_sym_var] = ACTIONS(4112), - [anon_sym_yield] = ACTIONS(4112), - [anon_sym_switch] = ACTIONS(4112), - [anon_sym_when] = ACTIONS(4112), - [sym_discard] = ACTIONS(4112), - [anon_sym_DOT_DOT] = ACTIONS(4114), - [anon_sym_and] = ACTIONS(4112), - [anon_sym_or] = ACTIONS(4112), - [anon_sym_AMP_AMP] = ACTIONS(4114), - [anon_sym_PIPE_PIPE] = ACTIONS(4114), - [anon_sym_QMARK_QMARK] = ACTIONS(4114), - [anon_sym_from] = ACTIONS(4112), - [anon_sym_into] = ACTIONS(4112), - [anon_sym_join] = ACTIONS(4112), - [anon_sym_on] = ACTIONS(4112), - [anon_sym_equals] = ACTIONS(4112), - [anon_sym_let] = ACTIONS(4112), - [anon_sym_orderby] = ACTIONS(4112), - [anon_sym_ascending] = ACTIONS(4112), - [anon_sym_descending] = ACTIONS(4112), - [anon_sym_group] = ACTIONS(4112), - [anon_sym_by] = ACTIONS(4112), - [anon_sym_select] = ACTIONS(4112), - [anon_sym_as] = ACTIONS(4112), - [anon_sym_is] = ACTIONS(4112), - [anon_sym_DASH_GT] = ACTIONS(4114), - [anon_sym_with] = ACTIONS(4112), + [sym__identifier_token] = ACTIONS(4359), + [anon_sym_extern] = ACTIONS(4359), + [anon_sym_alias] = ACTIONS(4359), + [anon_sym_global] = ACTIONS(4359), + [anon_sym_using] = ACTIONS(4359), + [anon_sym_unsafe] = ACTIONS(4359), + [anon_sym_static] = ACTIONS(4359), + [anon_sym_LBRACK] = ACTIONS(4361), + [anon_sym_LPAREN] = ACTIONS(4361), + [anon_sym_event] = ACTIONS(4359), + [anon_sym_namespace] = ACTIONS(4359), + [anon_sym_class] = ACTIONS(4359), + [anon_sym_ref] = ACTIONS(4359), + [anon_sym_struct] = ACTIONS(4359), + [anon_sym_enum] = ACTIONS(4359), + [anon_sym_RBRACE] = ACTIONS(4361), + [anon_sym_interface] = ACTIONS(4359), + [anon_sym_delegate] = ACTIONS(4359), + [anon_sym_record] = ACTIONS(4359), + [anon_sym_abstract] = ACTIONS(4359), + [anon_sym_async] = ACTIONS(4359), + [anon_sym_const] = ACTIONS(4359), + [anon_sym_file] = ACTIONS(4359), + [anon_sym_fixed] = ACTIONS(4359), + [anon_sym_internal] = ACTIONS(4359), + [anon_sym_new] = ACTIONS(4359), + [anon_sym_override] = ACTIONS(4359), + [anon_sym_partial] = ACTIONS(4359), + [anon_sym_private] = ACTIONS(4359), + [anon_sym_protected] = ACTIONS(4359), + [anon_sym_public] = ACTIONS(4359), + [anon_sym_readonly] = ACTIONS(4359), + [anon_sym_required] = ACTIONS(4359), + [anon_sym_sealed] = ACTIONS(4359), + [anon_sym_virtual] = ACTIONS(4359), + [anon_sym_volatile] = ACTIONS(4359), + [anon_sym_where] = ACTIONS(4359), + [anon_sym_notnull] = ACTIONS(4359), + [anon_sym_unmanaged] = ACTIONS(4359), + [anon_sym_TILDE] = ACTIONS(4361), + [anon_sym_implicit] = ACTIONS(4359), + [anon_sym_explicit] = ACTIONS(4359), + [anon_sym_scoped] = ACTIONS(4359), + [anon_sym_var] = ACTIONS(4359), + [sym_predefined_type] = ACTIONS(4359), + [anon_sym_yield] = ACTIONS(4359), + [anon_sym_when] = ACTIONS(4359), + [anon_sym_from] = ACTIONS(4359), + [anon_sym_into] = ACTIONS(4359), + [anon_sym_join] = ACTIONS(4359), + [anon_sym_on] = ACTIONS(4359), + [anon_sym_equals] = ACTIONS(4359), + [anon_sym_let] = ACTIONS(4359), + [anon_sym_orderby] = ACTIONS(4359), + [anon_sym_ascending] = ACTIONS(4359), + [anon_sym_descending] = ACTIONS(4359), + [anon_sym_group] = ACTIONS(4359), + [anon_sym_by] = ACTIONS(4359), + [anon_sym_select] = ACTIONS(4359), + [aux_sym_preproc_if_token1] = ACTIONS(4361), + [aux_sym_preproc_if_token3] = ACTIONS(4361), + [aux_sym_preproc_else_token1] = ACTIONS(4361), + [aux_sym_preproc_elif_token1] = ACTIONS(4361), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -442621,7 +442236,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(4114), }, [2664] = { [sym_preproc_region] = STATE(2664), @@ -442633,79 +442247,79 @@ 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(3685), - [anon_sym_alias] = ACTIONS(3685), - [anon_sym_global] = ACTIONS(3685), - [anon_sym_LBRACK] = ACTIONS(3687), - [anon_sym_COLON] = ACTIONS(3687), - [anon_sym_COMMA] = ACTIONS(3687), - [anon_sym_LPAREN] = ACTIONS(3687), - [anon_sym_LBRACE] = ACTIONS(3687), - [anon_sym_file] = ACTIONS(3685), - [anon_sym_LT] = ACTIONS(3685), - [anon_sym_GT] = ACTIONS(3685), - [anon_sym_where] = ACTIONS(3685), - [anon_sym_QMARK] = ACTIONS(3685), - [anon_sym_notnull] = ACTIONS(3685), - [anon_sym_unmanaged] = ACTIONS(3685), - [anon_sym_BANG] = ACTIONS(3685), - [anon_sym_PLUS_PLUS] = ACTIONS(3687), - [anon_sym_DASH_DASH] = ACTIONS(3687), - [anon_sym_PLUS] = ACTIONS(3685), - [anon_sym_DASH] = ACTIONS(3685), - [anon_sym_STAR] = ACTIONS(3687), - [anon_sym_SLASH] = ACTIONS(3685), - [anon_sym_PERCENT] = ACTIONS(3687), - [anon_sym_CARET] = ACTIONS(3687), - [anon_sym_PIPE] = ACTIONS(3685), - [anon_sym_AMP] = ACTIONS(3685), - [anon_sym_LT_LT] = ACTIONS(3687), - [anon_sym_GT_GT] = ACTIONS(3685), - [anon_sym_GT_GT_GT] = ACTIONS(3687), - [anon_sym_EQ_EQ] = ACTIONS(3687), - [anon_sym_BANG_EQ] = ACTIONS(3687), - [anon_sym_GT_EQ] = ACTIONS(3687), - [anon_sym_LT_EQ] = ACTIONS(3687), - [anon_sym_DOT] = ACTIONS(3685), - [anon_sym_scoped] = ACTIONS(3685), - [anon_sym_var] = ACTIONS(3685), - [anon_sym_yield] = ACTIONS(3685), - [anon_sym_switch] = ACTIONS(3685), - [anon_sym_when] = ACTIONS(3685), - [sym_discard] = ACTIONS(3685), - [anon_sym_DOT_DOT] = ACTIONS(3687), - [anon_sym_and] = ACTIONS(3685), - [anon_sym_or] = ACTIONS(3685), - [anon_sym_AMP_AMP] = ACTIONS(3687), - [anon_sym_PIPE_PIPE] = ACTIONS(3687), - [anon_sym_QMARK_QMARK] = ACTIONS(3687), - [anon_sym_from] = ACTIONS(3685), - [anon_sym_into] = ACTIONS(3685), - [anon_sym_join] = ACTIONS(3685), - [anon_sym_on] = ACTIONS(3685), - [anon_sym_equals] = ACTIONS(3685), - [anon_sym_let] = ACTIONS(3685), - [anon_sym_orderby] = ACTIONS(3685), - [anon_sym_ascending] = ACTIONS(3685), - [anon_sym_descending] = ACTIONS(3685), - [anon_sym_group] = ACTIONS(3685), - [anon_sym_by] = ACTIONS(3685), - [anon_sym_select] = ACTIONS(3685), - [anon_sym_as] = ACTIONS(3685), - [anon_sym_is] = ACTIONS(3685), - [anon_sym_DASH_GT] = ACTIONS(3687), - [anon_sym_with] = ACTIONS(3685), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_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(3687), + [sym__identifier_token] = ACTIONS(4363), + [anon_sym_extern] = ACTIONS(4363), + [anon_sym_alias] = ACTIONS(4363), + [anon_sym_global] = ACTIONS(4363), + [anon_sym_using] = ACTIONS(4363), + [anon_sym_unsafe] = ACTIONS(4363), + [anon_sym_static] = ACTIONS(4363), + [anon_sym_LBRACK] = ACTIONS(4365), + [anon_sym_LPAREN] = ACTIONS(4365), + [anon_sym_event] = ACTIONS(4363), + [anon_sym_namespace] = ACTIONS(4363), + [anon_sym_class] = ACTIONS(4363), + [anon_sym_ref] = ACTIONS(4363), + [anon_sym_struct] = ACTIONS(4363), + [anon_sym_enum] = ACTIONS(4363), + [anon_sym_RBRACE] = ACTIONS(4365), + [anon_sym_interface] = ACTIONS(4363), + [anon_sym_delegate] = ACTIONS(4363), + [anon_sym_record] = ACTIONS(4363), + [anon_sym_abstract] = ACTIONS(4363), + [anon_sym_async] = ACTIONS(4363), + [anon_sym_const] = ACTIONS(4363), + [anon_sym_file] = ACTIONS(4363), + [anon_sym_fixed] = ACTIONS(4363), + [anon_sym_internal] = ACTIONS(4363), + [anon_sym_new] = ACTIONS(4363), + [anon_sym_override] = ACTIONS(4363), + [anon_sym_partial] = ACTIONS(4363), + [anon_sym_private] = ACTIONS(4363), + [anon_sym_protected] = ACTIONS(4363), + [anon_sym_public] = ACTIONS(4363), + [anon_sym_readonly] = ACTIONS(4363), + [anon_sym_required] = ACTIONS(4363), + [anon_sym_sealed] = ACTIONS(4363), + [anon_sym_virtual] = ACTIONS(4363), + [anon_sym_volatile] = ACTIONS(4363), + [anon_sym_where] = ACTIONS(4363), + [anon_sym_notnull] = ACTIONS(4363), + [anon_sym_unmanaged] = ACTIONS(4363), + [anon_sym_TILDE] = ACTIONS(4365), + [anon_sym_implicit] = ACTIONS(4363), + [anon_sym_explicit] = ACTIONS(4363), + [anon_sym_scoped] = ACTIONS(4363), + [anon_sym_var] = ACTIONS(4363), + [sym_predefined_type] = ACTIONS(4363), + [anon_sym_yield] = ACTIONS(4363), + [anon_sym_when] = ACTIONS(4363), + [anon_sym_from] = ACTIONS(4363), + [anon_sym_into] = ACTIONS(4363), + [anon_sym_join] = ACTIONS(4363), + [anon_sym_on] = ACTIONS(4363), + [anon_sym_equals] = ACTIONS(4363), + [anon_sym_let] = ACTIONS(4363), + [anon_sym_orderby] = ACTIONS(4363), + [anon_sym_ascending] = ACTIONS(4363), + [anon_sym_descending] = ACTIONS(4363), + [anon_sym_group] = ACTIONS(4363), + [anon_sym_by] = ACTIONS(4363), + [anon_sym_select] = ACTIONS(4363), + [aux_sym_preproc_if_token1] = ACTIONS(4365), + [aux_sym_preproc_if_token3] = ACTIONS(4365), + [aux_sym_preproc_else_token1] = ACTIONS(4365), + [aux_sym_preproc_elif_token1] = ACTIONS(4365), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), }, [2665] = { [sym_preproc_region] = STATE(2665), @@ -442717,69 +442331,69 @@ 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), - [anon_sym_SEMI] = ACTIONS(4179), - [anon_sym_EQ] = ACTIONS(4181), - [anon_sym_LBRACK] = ACTIONS(4179), - [anon_sym_COLON] = ACTIONS(4179), - [anon_sym_COMMA] = ACTIONS(4179), - [anon_sym_RBRACK] = ACTIONS(4179), - [anon_sym_LPAREN] = ACTIONS(4179), - [anon_sym_RPAREN] = ACTIONS(4179), - [anon_sym_RBRACE] = ACTIONS(4179), - [anon_sym_LT] = ACTIONS(4181), - [anon_sym_GT] = ACTIONS(4181), - [anon_sym_in] = ACTIONS(4179), - [anon_sym_QMARK] = ACTIONS(4181), - [anon_sym_BANG] = ACTIONS(4181), - [anon_sym_PLUS_PLUS] = ACTIONS(4179), - [anon_sym_DASH_DASH] = ACTIONS(4179), - [anon_sym_PLUS] = ACTIONS(4181), - [anon_sym_DASH] = ACTIONS(4181), - [anon_sym_STAR] = ACTIONS(4181), - [anon_sym_SLASH] = ACTIONS(4181), - [anon_sym_PERCENT] = ACTIONS(4181), - [anon_sym_CARET] = ACTIONS(4181), - [anon_sym_PIPE] = ACTIONS(4181), - [anon_sym_AMP] = ACTIONS(4181), - [anon_sym_LT_LT] = ACTIONS(4181), - [anon_sym_GT_GT] = ACTIONS(4181), - [anon_sym_GT_GT_GT] = ACTIONS(4181), - [anon_sym_EQ_EQ] = ACTIONS(4179), - [anon_sym_BANG_EQ] = ACTIONS(4179), - [anon_sym_GT_EQ] = ACTIONS(4179), - [anon_sym_LT_EQ] = ACTIONS(4179), - [anon_sym_DOT] = ACTIONS(4181), - [anon_sym_EQ_GT] = ACTIONS(4179), - [anon_sym_switch] = ACTIONS(4179), - [anon_sym_when] = ACTIONS(4179), - [anon_sym_DOT_DOT] = ACTIONS(4179), - [anon_sym_and] = ACTIONS(4179), - [anon_sym_or] = ACTIONS(4179), - [anon_sym_PLUS_EQ] = ACTIONS(4179), - [anon_sym_DASH_EQ] = ACTIONS(4179), - [anon_sym_STAR_EQ] = ACTIONS(4179), - [anon_sym_SLASH_EQ] = ACTIONS(4179), - [anon_sym_PERCENT_EQ] = ACTIONS(4179), - [anon_sym_AMP_EQ] = ACTIONS(4179), - [anon_sym_CARET_EQ] = ACTIONS(4179), - [anon_sym_PIPE_EQ] = ACTIONS(4179), - [anon_sym_LT_LT_EQ] = ACTIONS(4179), - [anon_sym_GT_GT_EQ] = ACTIONS(4179), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(4179), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(4179), - [anon_sym_AMP_AMP] = ACTIONS(4179), - [anon_sym_PIPE_PIPE] = ACTIONS(4179), - [anon_sym_QMARK_QMARK] = ACTIONS(4181), - [anon_sym_on] = ACTIONS(4179), - [anon_sym_equals] = ACTIONS(4179), - [anon_sym_by] = ACTIONS(4179), - [anon_sym_as] = ACTIONS(4179), - [anon_sym_is] = ACTIONS(4179), - [anon_sym_DASH_GT] = ACTIONS(4179), - [anon_sym_with] = ACTIONS(4179), - [aux_sym_preproc_if_token3] = ACTIONS(4179), - [aux_sym_preproc_else_token1] = ACTIONS(4179), - [aux_sym_preproc_elif_token1] = ACTIONS(4179), + [anon_sym_SEMI] = ACTIONS(4136), + [anon_sym_EQ] = ACTIONS(4138), + [anon_sym_LBRACK] = ACTIONS(4136), + [anon_sym_COLON] = ACTIONS(4136), + [anon_sym_COMMA] = ACTIONS(4136), + [anon_sym_RBRACK] = ACTIONS(4136), + [anon_sym_LPAREN] = ACTIONS(4136), + [anon_sym_RPAREN] = ACTIONS(4136), + [anon_sym_RBRACE] = ACTIONS(4136), + [anon_sym_LT] = ACTIONS(4138), + [anon_sym_GT] = ACTIONS(4138), + [anon_sym_in] = ACTIONS(4136), + [anon_sym_QMARK] = ACTIONS(4138), + [anon_sym_BANG] = ACTIONS(4138), + [anon_sym_PLUS_PLUS] = ACTIONS(4136), + [anon_sym_DASH_DASH] = ACTIONS(4136), + [anon_sym_PLUS] = ACTIONS(4138), + [anon_sym_DASH] = ACTIONS(4138), + [anon_sym_STAR] = ACTIONS(4138), + [anon_sym_SLASH] = ACTIONS(4138), + [anon_sym_PERCENT] = ACTIONS(4138), + [anon_sym_CARET] = ACTIONS(4138), + [anon_sym_PIPE] = ACTIONS(4138), + [anon_sym_AMP] = ACTIONS(4138), + [anon_sym_LT_LT] = ACTIONS(4138), + [anon_sym_GT_GT] = ACTIONS(4138), + [anon_sym_GT_GT_GT] = ACTIONS(4138), + [anon_sym_EQ_EQ] = ACTIONS(4136), + [anon_sym_BANG_EQ] = ACTIONS(4136), + [anon_sym_GT_EQ] = ACTIONS(4136), + [anon_sym_LT_EQ] = ACTIONS(4136), + [anon_sym_DOT] = ACTIONS(4138), + [anon_sym_EQ_GT] = ACTIONS(4136), + [anon_sym_switch] = ACTIONS(4136), + [anon_sym_when] = ACTIONS(4136), + [anon_sym_DOT_DOT] = ACTIONS(4136), + [anon_sym_and] = ACTIONS(4136), + [anon_sym_or] = ACTIONS(4136), + [anon_sym_PLUS_EQ] = ACTIONS(4136), + [anon_sym_DASH_EQ] = ACTIONS(4136), + [anon_sym_STAR_EQ] = ACTIONS(4136), + [anon_sym_SLASH_EQ] = ACTIONS(4136), + [anon_sym_PERCENT_EQ] = ACTIONS(4136), + [anon_sym_AMP_EQ] = ACTIONS(4136), + [anon_sym_CARET_EQ] = ACTIONS(4136), + [anon_sym_PIPE_EQ] = ACTIONS(4136), + [anon_sym_LT_LT_EQ] = ACTIONS(4136), + [anon_sym_GT_GT_EQ] = ACTIONS(4136), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(4136), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(4136), + [anon_sym_AMP_AMP] = ACTIONS(4136), + [anon_sym_PIPE_PIPE] = ACTIONS(4136), + [anon_sym_QMARK_QMARK] = ACTIONS(4138), + [anon_sym_on] = ACTIONS(4136), + [anon_sym_equals] = ACTIONS(4136), + [anon_sym_by] = ACTIONS(4136), + [anon_sym_as] = ACTIONS(4136), + [anon_sym_is] = ACTIONS(4136), + [anon_sym_DASH_GT] = ACTIONS(4136), + [anon_sym_with] = ACTIONS(4136), + [aux_sym_preproc_if_token3] = ACTIONS(4136), + [aux_sym_preproc_else_token1] = ACTIONS(4136), + [aux_sym_preproc_elif_token1] = ACTIONS(4136), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -442801,69 +442415,69 @@ 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(4346), - [anon_sym_extern] = ACTIONS(4346), - [anon_sym_alias] = ACTIONS(4346), - [anon_sym_global] = ACTIONS(4346), - [anon_sym_using] = ACTIONS(4346), - [anon_sym_unsafe] = ACTIONS(4346), - [anon_sym_static] = ACTIONS(4346), - [anon_sym_LBRACK] = ACTIONS(4348), - [anon_sym_LPAREN] = ACTIONS(4348), - [anon_sym_event] = ACTIONS(4346), - [anon_sym_namespace] = ACTIONS(4346), - [anon_sym_class] = ACTIONS(4346), - [anon_sym_ref] = ACTIONS(4346), - [anon_sym_struct] = ACTIONS(4346), - [anon_sym_enum] = ACTIONS(4346), - [anon_sym_RBRACE] = ACTIONS(4348), - [anon_sym_interface] = ACTIONS(4346), - [anon_sym_delegate] = ACTIONS(4346), - [anon_sym_record] = ACTIONS(4346), - [anon_sym_abstract] = ACTIONS(4346), - [anon_sym_async] = ACTIONS(4346), - [anon_sym_const] = ACTIONS(4346), - [anon_sym_file] = ACTIONS(4346), - [anon_sym_fixed] = ACTIONS(4346), - [anon_sym_internal] = ACTIONS(4346), - [anon_sym_new] = ACTIONS(4346), - [anon_sym_override] = ACTIONS(4346), - [anon_sym_partial] = ACTIONS(4346), - [anon_sym_private] = ACTIONS(4346), - [anon_sym_protected] = ACTIONS(4346), - [anon_sym_public] = ACTIONS(4346), - [anon_sym_readonly] = ACTIONS(4346), - [anon_sym_required] = ACTIONS(4346), - [anon_sym_sealed] = ACTIONS(4346), - [anon_sym_virtual] = ACTIONS(4346), - [anon_sym_volatile] = ACTIONS(4346), - [anon_sym_where] = ACTIONS(4346), - [anon_sym_notnull] = ACTIONS(4346), - [anon_sym_unmanaged] = ACTIONS(4346), - [anon_sym_TILDE] = ACTIONS(4348), - [anon_sym_implicit] = ACTIONS(4346), - [anon_sym_explicit] = ACTIONS(4346), - [anon_sym_scoped] = ACTIONS(4346), - [anon_sym_var] = ACTIONS(4346), - [sym_predefined_type] = ACTIONS(4346), - [anon_sym_yield] = ACTIONS(4346), - [anon_sym_when] = ACTIONS(4346), - [anon_sym_from] = ACTIONS(4346), - [anon_sym_into] = ACTIONS(4346), - [anon_sym_join] = ACTIONS(4346), - [anon_sym_on] = ACTIONS(4346), - [anon_sym_equals] = 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_by] = ACTIONS(4346), - [anon_sym_select] = ACTIONS(4346), - [aux_sym_preproc_if_token1] = ACTIONS(4348), - [aux_sym_preproc_if_token3] = ACTIONS(4348), - [aux_sym_preproc_else_token1] = ACTIONS(4348), - [aux_sym_preproc_elif_token1] = ACTIONS(4348), + [sym__identifier_token] = ACTIONS(4367), + [anon_sym_extern] = ACTIONS(4367), + [anon_sym_alias] = ACTIONS(4367), + [anon_sym_global] = ACTIONS(4367), + [anon_sym_using] = ACTIONS(4367), + [anon_sym_unsafe] = ACTIONS(4367), + [anon_sym_static] = ACTIONS(4367), + [anon_sym_LBRACK] = ACTIONS(4369), + [anon_sym_LPAREN] = ACTIONS(4369), + [anon_sym_event] = ACTIONS(4367), + [anon_sym_namespace] = ACTIONS(4367), + [anon_sym_class] = ACTIONS(4367), + [anon_sym_ref] = ACTIONS(4367), + [anon_sym_struct] = ACTIONS(4367), + [anon_sym_enum] = ACTIONS(4367), + [anon_sym_RBRACE] = ACTIONS(4369), + [anon_sym_interface] = ACTIONS(4367), + [anon_sym_delegate] = ACTIONS(4367), + [anon_sym_record] = ACTIONS(4367), + [anon_sym_abstract] = ACTIONS(4367), + [anon_sym_async] = ACTIONS(4367), + [anon_sym_const] = ACTIONS(4367), + [anon_sym_file] = ACTIONS(4367), + [anon_sym_fixed] = ACTIONS(4367), + [anon_sym_internal] = ACTIONS(4367), + [anon_sym_new] = ACTIONS(4367), + [anon_sym_override] = ACTIONS(4367), + [anon_sym_partial] = ACTIONS(4367), + [anon_sym_private] = ACTIONS(4367), + [anon_sym_protected] = ACTIONS(4367), + [anon_sym_public] = ACTIONS(4367), + [anon_sym_readonly] = ACTIONS(4367), + [anon_sym_required] = ACTIONS(4367), + [anon_sym_sealed] = ACTIONS(4367), + [anon_sym_virtual] = ACTIONS(4367), + [anon_sym_volatile] = ACTIONS(4367), + [anon_sym_where] = ACTIONS(4367), + [anon_sym_notnull] = ACTIONS(4367), + [anon_sym_unmanaged] = ACTIONS(4367), + [anon_sym_TILDE] = ACTIONS(4369), + [anon_sym_implicit] = ACTIONS(4367), + [anon_sym_explicit] = ACTIONS(4367), + [anon_sym_scoped] = ACTIONS(4367), + [anon_sym_var] = ACTIONS(4367), + [sym_predefined_type] = ACTIONS(4367), + [anon_sym_yield] = ACTIONS(4367), + [anon_sym_when] = ACTIONS(4367), + [anon_sym_from] = ACTIONS(4367), + [anon_sym_into] = ACTIONS(4367), + [anon_sym_join] = ACTIONS(4367), + [anon_sym_on] = ACTIONS(4367), + [anon_sym_equals] = ACTIONS(4367), + [anon_sym_let] = ACTIONS(4367), + [anon_sym_orderby] = ACTIONS(4367), + [anon_sym_ascending] = ACTIONS(4367), + [anon_sym_descending] = ACTIONS(4367), + [anon_sym_group] = ACTIONS(4367), + [anon_sym_by] = ACTIONS(4367), + [anon_sym_select] = ACTIONS(4367), + [aux_sym_preproc_if_token1] = ACTIONS(4369), + [aux_sym_preproc_if_token3] = ACTIONS(4369), + [aux_sym_preproc_else_token1] = ACTIONS(4369), + [aux_sym_preproc_elif_token1] = ACTIONS(4369), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -442885,68 +442499,69 @@ 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(4120), - [anon_sym_alias] = ACTIONS(4120), - [anon_sym_global] = ACTIONS(4120), - [anon_sym_LBRACK] = ACTIONS(4122), - [anon_sym_COLON] = ACTIONS(4122), - [anon_sym_COMMA] = ACTIONS(4122), - [anon_sym_LPAREN] = ACTIONS(4122), - [anon_sym_LBRACE] = ACTIONS(4122), - [anon_sym_file] = ACTIONS(4120), - [anon_sym_LT] = ACTIONS(4120), - [anon_sym_GT] = ACTIONS(4120), - [anon_sym_where] = ACTIONS(4120), - [anon_sym_QMARK] = ACTIONS(4120), - [anon_sym_notnull] = ACTIONS(4120), - [anon_sym_unmanaged] = ACTIONS(4120), - [anon_sym_BANG] = ACTIONS(4120), - [anon_sym_PLUS_PLUS] = ACTIONS(4122), - [anon_sym_DASH_DASH] = ACTIONS(4122), - [anon_sym_PLUS] = ACTIONS(4120), - [anon_sym_DASH] = ACTIONS(4120), - [anon_sym_STAR] = ACTIONS(4122), - [anon_sym_SLASH] = ACTIONS(4120), - [anon_sym_PERCENT] = ACTIONS(4122), - [anon_sym_CARET] = ACTIONS(4122), - [anon_sym_PIPE] = ACTIONS(4120), - [anon_sym_AMP] = ACTIONS(4120), - [anon_sym_LT_LT] = ACTIONS(4122), - [anon_sym_GT_GT] = ACTIONS(4120), - [anon_sym_GT_GT_GT] = ACTIONS(4122), - [anon_sym_EQ_EQ] = ACTIONS(4122), - [anon_sym_BANG_EQ] = ACTIONS(4122), - [anon_sym_GT_EQ] = ACTIONS(4122), - [anon_sym_LT_EQ] = ACTIONS(4122), - [anon_sym_DOT] = ACTIONS(4120), - [anon_sym_scoped] = ACTIONS(4120), - [anon_sym_var] = ACTIONS(4120), - [anon_sym_yield] = ACTIONS(4120), - [anon_sym_switch] = ACTIONS(4120), - [anon_sym_when] = ACTIONS(4120), - [sym_discard] = ACTIONS(4120), - [anon_sym_DOT_DOT] = ACTIONS(4122), - [anon_sym_and] = ACTIONS(4120), - [anon_sym_or] = ACTIONS(4120), - [anon_sym_AMP_AMP] = ACTIONS(4122), - [anon_sym_PIPE_PIPE] = ACTIONS(4122), - [anon_sym_QMARK_QMARK] = ACTIONS(4122), - [anon_sym_from] = ACTIONS(4120), - [anon_sym_into] = ACTIONS(4120), - [anon_sym_join] = ACTIONS(4120), - [anon_sym_on] = ACTIONS(4120), - [anon_sym_equals] = ACTIONS(4120), - [anon_sym_let] = ACTIONS(4120), - [anon_sym_orderby] = ACTIONS(4120), - [anon_sym_ascending] = ACTIONS(4120), - [anon_sym_descending] = ACTIONS(4120), - [anon_sym_group] = ACTIONS(4120), - [anon_sym_by] = ACTIONS(4120), - [anon_sym_select] = ACTIONS(4120), - [anon_sym_as] = ACTIONS(4120), - [anon_sym_is] = ACTIONS(4120), - [anon_sym_DASH_GT] = ACTIONS(4122), - [anon_sym_with] = ACTIONS(4120), + [sym__identifier_token] = ACTIONS(3137), + [anon_sym_extern] = ACTIONS(3137), + [anon_sym_alias] = ACTIONS(3137), + [anon_sym_global] = ACTIONS(3137), + [anon_sym_using] = ACTIONS(3137), + [anon_sym_unsafe] = ACTIONS(3137), + [anon_sym_static] = ACTIONS(3137), + [anon_sym_LBRACK] = ACTIONS(3139), + [anon_sym_LPAREN] = ACTIONS(3139), + [anon_sym_event] = ACTIONS(3137), + [anon_sym_namespace] = ACTIONS(3137), + [anon_sym_class] = ACTIONS(3137), + [anon_sym_ref] = ACTIONS(3137), + [anon_sym_struct] = ACTIONS(3137), + [anon_sym_enum] = ACTIONS(3137), + [anon_sym_RBRACE] = ACTIONS(3139), + [anon_sym_interface] = ACTIONS(3137), + [anon_sym_delegate] = ACTIONS(3137), + [anon_sym_record] = ACTIONS(3137), + [anon_sym_abstract] = ACTIONS(3137), + [anon_sym_async] = ACTIONS(3137), + [anon_sym_const] = ACTIONS(3137), + [anon_sym_file] = ACTIONS(3137), + [anon_sym_fixed] = ACTIONS(3137), + [anon_sym_internal] = ACTIONS(3137), + [anon_sym_new] = ACTIONS(3137), + [anon_sym_override] = ACTIONS(3137), + [anon_sym_partial] = ACTIONS(3137), + [anon_sym_private] = ACTIONS(3137), + [anon_sym_protected] = ACTIONS(3137), + [anon_sym_public] = ACTIONS(3137), + [anon_sym_readonly] = ACTIONS(3137), + [anon_sym_required] = ACTIONS(3137), + [anon_sym_sealed] = ACTIONS(3137), + [anon_sym_virtual] = ACTIONS(3137), + [anon_sym_volatile] = ACTIONS(3137), + [anon_sym_where] = ACTIONS(3137), + [anon_sym_notnull] = ACTIONS(3137), + [anon_sym_unmanaged] = ACTIONS(3137), + [anon_sym_TILDE] = ACTIONS(3139), + [anon_sym_implicit] = ACTIONS(3137), + [anon_sym_explicit] = ACTIONS(3137), + [anon_sym_scoped] = ACTIONS(3137), + [anon_sym_var] = ACTIONS(3137), + [sym_predefined_type] = ACTIONS(3137), + [anon_sym_yield] = ACTIONS(3137), + [anon_sym_when] = ACTIONS(3137), + [anon_sym_from] = ACTIONS(3137), + [anon_sym_into] = ACTIONS(3137), + [anon_sym_join] = ACTIONS(3137), + [anon_sym_on] = ACTIONS(3137), + [anon_sym_equals] = ACTIONS(3137), + [anon_sym_let] = ACTIONS(3137), + [anon_sym_orderby] = ACTIONS(3137), + [anon_sym_ascending] = ACTIONS(3137), + [anon_sym_descending] = ACTIONS(3137), + [anon_sym_group] = ACTIONS(3137), + [anon_sym_by] = ACTIONS(3137), + [anon_sym_select] = ACTIONS(3137), + [aux_sym_preproc_if_token1] = ACTIONS(3139), + [aux_sym_preproc_if_token3] = ACTIONS(3139), + [aux_sym_preproc_else_token1] = ACTIONS(3139), + [aux_sym_preproc_elif_token1] = ACTIONS(3139), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -442957,7 +442572,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(4122), }, [2668] = { [sym_preproc_region] = STATE(2668), @@ -442969,68 +442583,69 @@ 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(4124), - [anon_sym_alias] = ACTIONS(4124), - [anon_sym_global] = ACTIONS(4124), - [anon_sym_LBRACK] = ACTIONS(4126), - [anon_sym_COLON] = ACTIONS(4126), - [anon_sym_COMMA] = ACTIONS(4126), - [anon_sym_LPAREN] = ACTIONS(4126), - [anon_sym_LBRACE] = ACTIONS(4126), - [anon_sym_file] = ACTIONS(4124), - [anon_sym_LT] = ACTIONS(4124), - [anon_sym_GT] = ACTIONS(4124), - [anon_sym_where] = ACTIONS(4124), - [anon_sym_QMARK] = ACTIONS(4124), - [anon_sym_notnull] = ACTIONS(4124), - [anon_sym_unmanaged] = ACTIONS(4124), - [anon_sym_BANG] = ACTIONS(4124), - [anon_sym_PLUS_PLUS] = ACTIONS(4126), - [anon_sym_DASH_DASH] = ACTIONS(4126), - [anon_sym_PLUS] = ACTIONS(4124), - [anon_sym_DASH] = ACTIONS(4124), - [anon_sym_STAR] = ACTIONS(4126), - [anon_sym_SLASH] = ACTIONS(4124), - [anon_sym_PERCENT] = ACTIONS(4126), - [anon_sym_CARET] = ACTIONS(4126), - [anon_sym_PIPE] = ACTIONS(4124), - [anon_sym_AMP] = ACTIONS(4124), - [anon_sym_LT_LT] = ACTIONS(4126), - [anon_sym_GT_GT] = ACTIONS(4124), - [anon_sym_GT_GT_GT] = ACTIONS(4126), - [anon_sym_EQ_EQ] = ACTIONS(4126), - [anon_sym_BANG_EQ] = ACTIONS(4126), - [anon_sym_GT_EQ] = ACTIONS(4126), - [anon_sym_LT_EQ] = ACTIONS(4126), - [anon_sym_DOT] = ACTIONS(4124), - [anon_sym_scoped] = ACTIONS(4124), - [anon_sym_var] = ACTIONS(4124), - [anon_sym_yield] = ACTIONS(4124), - [anon_sym_switch] = ACTIONS(4124), - [anon_sym_when] = ACTIONS(4124), - [sym_discard] = ACTIONS(4124), - [anon_sym_DOT_DOT] = ACTIONS(4126), - [anon_sym_and] = ACTIONS(4124), - [anon_sym_or] = ACTIONS(4124), - [anon_sym_AMP_AMP] = ACTIONS(4126), - [anon_sym_PIPE_PIPE] = ACTIONS(4126), - [anon_sym_QMARK_QMARK] = ACTIONS(4126), - [anon_sym_from] = ACTIONS(4124), - [anon_sym_into] = ACTIONS(4124), - [anon_sym_join] = ACTIONS(4124), - [anon_sym_on] = ACTIONS(4124), - [anon_sym_equals] = ACTIONS(4124), - [anon_sym_let] = ACTIONS(4124), - [anon_sym_orderby] = ACTIONS(4124), - [anon_sym_ascending] = ACTIONS(4124), - [anon_sym_descending] = ACTIONS(4124), - [anon_sym_group] = ACTIONS(4124), - [anon_sym_by] = ACTIONS(4124), - [anon_sym_select] = ACTIONS(4124), - [anon_sym_as] = ACTIONS(4124), - [anon_sym_is] = ACTIONS(4124), - [anon_sym_DASH_GT] = ACTIONS(4126), - [anon_sym_with] = ACTIONS(4124), + [sym__identifier_token] = ACTIONS(4371), + [anon_sym_extern] = ACTIONS(4371), + [anon_sym_alias] = ACTIONS(4371), + [anon_sym_global] = ACTIONS(4371), + [anon_sym_using] = ACTIONS(4371), + [anon_sym_unsafe] = ACTIONS(4371), + [anon_sym_static] = ACTIONS(4371), + [anon_sym_LBRACK] = ACTIONS(4373), + [anon_sym_LPAREN] = ACTIONS(4373), + [anon_sym_event] = ACTIONS(4371), + [anon_sym_namespace] = ACTIONS(4371), + [anon_sym_class] = ACTIONS(4371), + [anon_sym_ref] = ACTIONS(4371), + [anon_sym_struct] = ACTIONS(4371), + [anon_sym_enum] = ACTIONS(4371), + [anon_sym_RBRACE] = ACTIONS(4373), + [anon_sym_interface] = ACTIONS(4371), + [anon_sym_delegate] = ACTIONS(4371), + [anon_sym_record] = ACTIONS(4371), + [anon_sym_abstract] = ACTIONS(4371), + [anon_sym_async] = ACTIONS(4371), + [anon_sym_const] = ACTIONS(4371), + [anon_sym_file] = ACTIONS(4371), + [anon_sym_fixed] = ACTIONS(4371), + [anon_sym_internal] = ACTIONS(4371), + [anon_sym_new] = ACTIONS(4371), + [anon_sym_override] = ACTIONS(4371), + [anon_sym_partial] = ACTIONS(4371), + [anon_sym_private] = ACTIONS(4371), + [anon_sym_protected] = ACTIONS(4371), + [anon_sym_public] = ACTIONS(4371), + [anon_sym_readonly] = ACTIONS(4371), + [anon_sym_required] = ACTIONS(4371), + [anon_sym_sealed] = ACTIONS(4371), + [anon_sym_virtual] = ACTIONS(4371), + [anon_sym_volatile] = ACTIONS(4371), + [anon_sym_where] = ACTIONS(4371), + [anon_sym_notnull] = ACTIONS(4371), + [anon_sym_unmanaged] = ACTIONS(4371), + [anon_sym_TILDE] = ACTIONS(4373), + [anon_sym_implicit] = ACTIONS(4371), + [anon_sym_explicit] = ACTIONS(4371), + [anon_sym_scoped] = ACTIONS(4371), + [anon_sym_var] = ACTIONS(4371), + [sym_predefined_type] = ACTIONS(4371), + [anon_sym_yield] = ACTIONS(4371), + [anon_sym_when] = ACTIONS(4371), + [anon_sym_from] = ACTIONS(4371), + [anon_sym_into] = ACTIONS(4371), + [anon_sym_join] = ACTIONS(4371), + [anon_sym_on] = ACTIONS(4371), + [anon_sym_equals] = ACTIONS(4371), + [anon_sym_let] = ACTIONS(4371), + [anon_sym_orderby] = ACTIONS(4371), + [anon_sym_ascending] = ACTIONS(4371), + [anon_sym_descending] = ACTIONS(4371), + [anon_sym_group] = ACTIONS(4371), + [anon_sym_by] = ACTIONS(4371), + [anon_sym_select] = ACTIONS(4371), + [aux_sym_preproc_if_token1] = ACTIONS(4373), + [aux_sym_preproc_if_token3] = ACTIONS(4373), + [aux_sym_preproc_else_token1] = ACTIONS(4373), + [aux_sym_preproc_elif_token1] = ACTIONS(4373), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -443041,7 +442656,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(4126), }, [2669] = { [sym_preproc_region] = STATE(2669), @@ -443053,69 +442667,69 @@ 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), - [sym__identifier_token] = ACTIONS(4350), - [anon_sym_extern] = ACTIONS(4350), - [anon_sym_alias] = ACTIONS(4350), - [anon_sym_global] = ACTIONS(4350), - [anon_sym_using] = ACTIONS(4350), - [anon_sym_unsafe] = ACTIONS(4350), - [anon_sym_static] = ACTIONS(4350), - [anon_sym_LBRACK] = ACTIONS(4352), - [anon_sym_LPAREN] = ACTIONS(4352), - [anon_sym_event] = ACTIONS(4350), - [anon_sym_namespace] = ACTIONS(4350), - [anon_sym_class] = ACTIONS(4350), - [anon_sym_ref] = ACTIONS(4350), - [anon_sym_struct] = ACTIONS(4350), - [anon_sym_enum] = ACTIONS(4350), - [anon_sym_RBRACE] = ACTIONS(4352), - [anon_sym_interface] = ACTIONS(4350), - [anon_sym_delegate] = ACTIONS(4350), - [anon_sym_record] = ACTIONS(4350), - [anon_sym_abstract] = ACTIONS(4350), - [anon_sym_async] = ACTIONS(4350), - [anon_sym_const] = ACTIONS(4350), - [anon_sym_file] = ACTIONS(4350), - [anon_sym_fixed] = ACTIONS(4350), - [anon_sym_internal] = ACTIONS(4350), - [anon_sym_new] = ACTIONS(4350), - [anon_sym_override] = ACTIONS(4350), - [anon_sym_partial] = ACTIONS(4350), - [anon_sym_private] = ACTIONS(4350), - [anon_sym_protected] = ACTIONS(4350), - [anon_sym_public] = ACTIONS(4350), - [anon_sym_readonly] = ACTIONS(4350), - [anon_sym_required] = ACTIONS(4350), - [anon_sym_sealed] = ACTIONS(4350), - [anon_sym_virtual] = ACTIONS(4350), - [anon_sym_volatile] = ACTIONS(4350), - [anon_sym_where] = ACTIONS(4350), - [anon_sym_notnull] = ACTIONS(4350), - [anon_sym_unmanaged] = ACTIONS(4350), - [anon_sym_TILDE] = ACTIONS(4352), - [anon_sym_implicit] = ACTIONS(4350), - [anon_sym_explicit] = ACTIONS(4350), - [anon_sym_scoped] = ACTIONS(4350), - [anon_sym_var] = ACTIONS(4350), - [sym_predefined_type] = ACTIONS(4350), - [anon_sym_yield] = ACTIONS(4350), - [anon_sym_when] = ACTIONS(4350), - [anon_sym_from] = ACTIONS(4350), - [anon_sym_into] = ACTIONS(4350), - [anon_sym_join] = ACTIONS(4350), - [anon_sym_on] = ACTIONS(4350), - [anon_sym_equals] = ACTIONS(4350), - [anon_sym_let] = ACTIONS(4350), - [anon_sym_orderby] = ACTIONS(4350), - [anon_sym_ascending] = ACTIONS(4350), - [anon_sym_descending] = ACTIONS(4350), - [anon_sym_group] = ACTIONS(4350), - [anon_sym_by] = ACTIONS(4350), - [anon_sym_select] = ACTIONS(4350), - [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), + [anon_sym_SEMI] = ACTIONS(4152), + [anon_sym_EQ] = ACTIONS(4118), + [anon_sym_LBRACK] = ACTIONS(4152), + [anon_sym_COLON] = ACTIONS(4116), + [anon_sym_COMMA] = ACTIONS(4152), + [anon_sym_RBRACK] = ACTIONS(4152), + [anon_sym_LPAREN] = ACTIONS(4152), + [anon_sym_RPAREN] = ACTIONS(4152), + [anon_sym_RBRACE] = ACTIONS(4152), + [anon_sym_LT] = ACTIONS(4154), + [anon_sym_GT] = ACTIONS(4154), + [anon_sym_in] = ACTIONS(4152), + [anon_sym_QMARK] = ACTIONS(4154), + [anon_sym_BANG] = ACTIONS(4154), + [anon_sym_PLUS_PLUS] = ACTIONS(4152), + [anon_sym_DASH_DASH] = ACTIONS(4152), + [anon_sym_PLUS] = ACTIONS(4154), + [anon_sym_DASH] = ACTIONS(4154), + [anon_sym_STAR] = ACTIONS(4154), + [anon_sym_SLASH] = ACTIONS(4154), + [anon_sym_PERCENT] = ACTIONS(4154), + [anon_sym_CARET] = ACTIONS(4154), + [anon_sym_PIPE] = ACTIONS(4154), + [anon_sym_AMP] = ACTIONS(4154), + [anon_sym_LT_LT] = ACTIONS(4154), + [anon_sym_GT_GT] = ACTIONS(4154), + [anon_sym_GT_GT_GT] = ACTIONS(4154), + [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(4154), + [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_PLUS_EQ] = ACTIONS(4116), + [anon_sym_DASH_EQ] = ACTIONS(4116), + [anon_sym_STAR_EQ] = ACTIONS(4116), + [anon_sym_SLASH_EQ] = ACTIONS(4116), + [anon_sym_PERCENT_EQ] = ACTIONS(4116), + [anon_sym_AMP_EQ] = ACTIONS(4116), + [anon_sym_CARET_EQ] = ACTIONS(4116), + [anon_sym_PIPE_EQ] = ACTIONS(4116), + [anon_sym_LT_LT_EQ] = ACTIONS(4116), + [anon_sym_GT_GT_EQ] = ACTIONS(4116), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(4116), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(4116), + [anon_sym_AMP_AMP] = ACTIONS(4152), + [anon_sym_PIPE_PIPE] = ACTIONS(4152), + [anon_sym_QMARK_QMARK] = ACTIONS(4154), + [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), @@ -443137,69 +442751,69 @@ 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), - [anon_sym_SEMI] = ACTIONS(3677), - [anon_sym_EQ] = ACTIONS(3675), - [anon_sym_LBRACK] = ACTIONS(3677), - [anon_sym_COLON] = ACTIONS(3677), - [anon_sym_COMMA] = ACTIONS(3677), - [anon_sym_RBRACK] = ACTIONS(3677), - [anon_sym_LPAREN] = ACTIONS(3677), - [anon_sym_RPAREN] = ACTIONS(3677), - [anon_sym_RBRACE] = ACTIONS(3677), - [anon_sym_LT] = ACTIONS(3675), - [anon_sym_GT] = ACTIONS(3675), - [anon_sym_in] = ACTIONS(3677), - [anon_sym_QMARK] = ACTIONS(3675), - [anon_sym_BANG] = ACTIONS(3675), - [anon_sym_PLUS_PLUS] = ACTIONS(3677), - [anon_sym_DASH_DASH] = ACTIONS(3677), - [anon_sym_PLUS] = ACTIONS(3675), - [anon_sym_DASH] = ACTIONS(3675), - [anon_sym_STAR] = ACTIONS(3675), - [anon_sym_SLASH] = ACTIONS(3675), - [anon_sym_PERCENT] = ACTIONS(3675), - [anon_sym_CARET] = ACTIONS(3675), - [anon_sym_PIPE] = ACTIONS(3675), - [anon_sym_AMP] = ACTIONS(3675), - [anon_sym_LT_LT] = ACTIONS(3675), - [anon_sym_GT_GT] = ACTIONS(3675), - [anon_sym_GT_GT_GT] = ACTIONS(3675), - [anon_sym_EQ_EQ] = ACTIONS(3677), - [anon_sym_BANG_EQ] = ACTIONS(3677), - [anon_sym_GT_EQ] = ACTIONS(3677), - [anon_sym_LT_EQ] = ACTIONS(3677), - [anon_sym_DOT] = ACTIONS(3675), - [anon_sym_EQ_GT] = ACTIONS(3677), - [anon_sym_switch] = ACTIONS(3677), - [anon_sym_when] = ACTIONS(3677), - [anon_sym_DOT_DOT] = ACTIONS(3677), - [anon_sym_and] = ACTIONS(3677), - [anon_sym_or] = ACTIONS(3677), - [anon_sym_PLUS_EQ] = ACTIONS(3677), - [anon_sym_DASH_EQ] = ACTIONS(3677), - [anon_sym_STAR_EQ] = ACTIONS(3677), - [anon_sym_SLASH_EQ] = ACTIONS(3677), - [anon_sym_PERCENT_EQ] = ACTIONS(3677), - [anon_sym_AMP_EQ] = ACTIONS(3677), - [anon_sym_CARET_EQ] = ACTIONS(3677), - [anon_sym_PIPE_EQ] = ACTIONS(3677), - [anon_sym_LT_LT_EQ] = ACTIONS(3677), - [anon_sym_GT_GT_EQ] = ACTIONS(3677), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3677), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3677), - [anon_sym_AMP_AMP] = ACTIONS(3677), - [anon_sym_PIPE_PIPE] = ACTIONS(3677), - [anon_sym_QMARK_QMARK] = ACTIONS(3675), - [anon_sym_on] = ACTIONS(3677), - [anon_sym_equals] = ACTIONS(3677), - [anon_sym_by] = ACTIONS(3677), - [anon_sym_as] = ACTIONS(3677), - [anon_sym_is] = ACTIONS(3677), - [anon_sym_DASH_GT] = ACTIONS(3677), - [anon_sym_with] = ACTIONS(3677), - [aux_sym_preproc_if_token3] = ACTIONS(3677), - [aux_sym_preproc_else_token1] = ACTIONS(3677), - [aux_sym_preproc_elif_token1] = ACTIONS(3677), + [sym__identifier_token] = ACTIONS(4375), + [anon_sym_extern] = ACTIONS(4375), + [anon_sym_alias] = ACTIONS(4375), + [anon_sym_global] = ACTIONS(4375), + [anon_sym_using] = ACTIONS(4375), + [anon_sym_unsafe] = ACTIONS(4375), + [anon_sym_static] = ACTIONS(4375), + [anon_sym_LBRACK] = ACTIONS(4377), + [anon_sym_LPAREN] = ACTIONS(4377), + [anon_sym_event] = ACTIONS(4375), + [anon_sym_namespace] = ACTIONS(4375), + [anon_sym_class] = ACTIONS(4375), + [anon_sym_ref] = ACTIONS(4375), + [anon_sym_struct] = ACTIONS(4375), + [anon_sym_enum] = ACTIONS(4375), + [anon_sym_RBRACE] = ACTIONS(4377), + [anon_sym_interface] = ACTIONS(4375), + [anon_sym_delegate] = ACTIONS(4375), + [anon_sym_record] = ACTIONS(4375), + [anon_sym_abstract] = ACTIONS(4375), + [anon_sym_async] = ACTIONS(4375), + [anon_sym_const] = ACTIONS(4375), + [anon_sym_file] = ACTIONS(4375), + [anon_sym_fixed] = ACTIONS(4375), + [anon_sym_internal] = ACTIONS(4375), + [anon_sym_new] = ACTIONS(4375), + [anon_sym_override] = ACTIONS(4375), + [anon_sym_partial] = ACTIONS(4375), + [anon_sym_private] = ACTIONS(4375), + [anon_sym_protected] = ACTIONS(4375), + [anon_sym_public] = ACTIONS(4375), + [anon_sym_readonly] = ACTIONS(4375), + [anon_sym_required] = ACTIONS(4375), + [anon_sym_sealed] = ACTIONS(4375), + [anon_sym_virtual] = ACTIONS(4375), + [anon_sym_volatile] = ACTIONS(4375), + [anon_sym_where] = ACTIONS(4375), + [anon_sym_notnull] = ACTIONS(4375), + [anon_sym_unmanaged] = ACTIONS(4375), + [anon_sym_TILDE] = ACTIONS(4377), + [anon_sym_implicit] = ACTIONS(4375), + [anon_sym_explicit] = ACTIONS(4375), + [anon_sym_scoped] = ACTIONS(4375), + [anon_sym_var] = ACTIONS(4375), + [sym_predefined_type] = ACTIONS(4375), + [anon_sym_yield] = ACTIONS(4375), + [anon_sym_when] = ACTIONS(4375), + [anon_sym_from] = ACTIONS(4375), + [anon_sym_into] = ACTIONS(4375), + [anon_sym_join] = ACTIONS(4375), + [anon_sym_on] = ACTIONS(4375), + [anon_sym_equals] = ACTIONS(4375), + [anon_sym_let] = ACTIONS(4375), + [anon_sym_orderby] = ACTIONS(4375), + [anon_sym_ascending] = ACTIONS(4375), + [anon_sym_descending] = ACTIONS(4375), + [anon_sym_group] = ACTIONS(4375), + [anon_sym_by] = ACTIONS(4375), + [anon_sym_select] = ACTIONS(4375), + [aux_sym_preproc_if_token1] = ACTIONS(4377), + [aux_sym_preproc_if_token3] = ACTIONS(4377), + [aux_sym_preproc_else_token1] = ACTIONS(4377), + [aux_sym_preproc_elif_token1] = ACTIONS(4377), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -443221,69 +442835,69 @@ 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), - [sym__identifier_token] = ACTIONS(4354), - [anon_sym_extern] = ACTIONS(4354), - [anon_sym_alias] = ACTIONS(4354), - [anon_sym_global] = ACTIONS(4354), - [anon_sym_using] = ACTIONS(4354), - [anon_sym_unsafe] = ACTIONS(4354), - [anon_sym_static] = ACTIONS(4354), - [anon_sym_LBRACK] = ACTIONS(4356), - [anon_sym_LPAREN] = ACTIONS(4356), - [anon_sym_event] = ACTIONS(4354), - [anon_sym_namespace] = ACTIONS(4354), - [anon_sym_class] = ACTIONS(4354), - [anon_sym_ref] = ACTIONS(4354), - [anon_sym_struct] = ACTIONS(4354), - [anon_sym_enum] = ACTIONS(4354), - [anon_sym_RBRACE] = ACTIONS(4356), - [anon_sym_interface] = ACTIONS(4354), - [anon_sym_delegate] = ACTIONS(4354), - [anon_sym_record] = ACTIONS(4354), - [anon_sym_abstract] = ACTIONS(4354), - [anon_sym_async] = ACTIONS(4354), - [anon_sym_const] = ACTIONS(4354), - [anon_sym_file] = ACTIONS(4354), - [anon_sym_fixed] = ACTIONS(4354), - [anon_sym_internal] = ACTIONS(4354), - [anon_sym_new] = ACTIONS(4354), - [anon_sym_override] = ACTIONS(4354), - [anon_sym_partial] = ACTIONS(4354), - [anon_sym_private] = ACTIONS(4354), - [anon_sym_protected] = ACTIONS(4354), - [anon_sym_public] = ACTIONS(4354), - [anon_sym_readonly] = ACTIONS(4354), - [anon_sym_required] = ACTIONS(4354), - [anon_sym_sealed] = ACTIONS(4354), - [anon_sym_virtual] = ACTIONS(4354), - [anon_sym_volatile] = ACTIONS(4354), - [anon_sym_where] = ACTIONS(4354), - [anon_sym_notnull] = ACTIONS(4354), - [anon_sym_unmanaged] = ACTIONS(4354), - [anon_sym_TILDE] = ACTIONS(4356), - [anon_sym_implicit] = ACTIONS(4354), - [anon_sym_explicit] = ACTIONS(4354), - [anon_sym_scoped] = ACTIONS(4354), - [anon_sym_var] = ACTIONS(4354), - [sym_predefined_type] = ACTIONS(4354), - [anon_sym_yield] = ACTIONS(4354), - [anon_sym_when] = ACTIONS(4354), - [anon_sym_from] = ACTIONS(4354), - [anon_sym_into] = ACTIONS(4354), - [anon_sym_join] = ACTIONS(4354), - [anon_sym_on] = ACTIONS(4354), - [anon_sym_equals] = ACTIONS(4354), - [anon_sym_let] = ACTIONS(4354), - [anon_sym_orderby] = ACTIONS(4354), - [anon_sym_ascending] = ACTIONS(4354), - [anon_sym_descending] = ACTIONS(4354), - [anon_sym_group] = ACTIONS(4354), - [anon_sym_by] = ACTIONS(4354), - [anon_sym_select] = ACTIONS(4354), - [aux_sym_preproc_if_token1] = ACTIONS(4356), - [aux_sym_preproc_if_token3] = ACTIONS(4356), - [aux_sym_preproc_else_token1] = ACTIONS(4356), - [aux_sym_preproc_elif_token1] = ACTIONS(4356), + [sym__identifier_token] = ACTIONS(4379), + [anon_sym_extern] = ACTIONS(4379), + [anon_sym_alias] = ACTIONS(4379), + [anon_sym_global] = ACTIONS(4379), + [anon_sym_using] = ACTIONS(4379), + [anon_sym_unsafe] = ACTIONS(4379), + [anon_sym_static] = ACTIONS(4379), + [anon_sym_LBRACK] = ACTIONS(4381), + [anon_sym_LPAREN] = ACTIONS(4381), + [anon_sym_event] = ACTIONS(4379), + [anon_sym_namespace] = ACTIONS(4379), + [anon_sym_class] = ACTIONS(4379), + [anon_sym_ref] = ACTIONS(4379), + [anon_sym_struct] = ACTIONS(4379), + [anon_sym_enum] = ACTIONS(4379), + [anon_sym_RBRACE] = ACTIONS(4381), + [anon_sym_interface] = ACTIONS(4379), + [anon_sym_delegate] = ACTIONS(4379), + [anon_sym_record] = ACTIONS(4379), + [anon_sym_abstract] = ACTIONS(4379), + [anon_sym_async] = ACTIONS(4379), + [anon_sym_const] = ACTIONS(4379), + [anon_sym_file] = ACTIONS(4379), + [anon_sym_fixed] = ACTIONS(4379), + [anon_sym_internal] = ACTIONS(4379), + [anon_sym_new] = ACTIONS(4379), + [anon_sym_override] = ACTIONS(4379), + [anon_sym_partial] = ACTIONS(4379), + [anon_sym_private] = ACTIONS(4379), + [anon_sym_protected] = ACTIONS(4379), + [anon_sym_public] = ACTIONS(4379), + [anon_sym_readonly] = ACTIONS(4379), + [anon_sym_required] = ACTIONS(4379), + [anon_sym_sealed] = ACTIONS(4379), + [anon_sym_virtual] = ACTIONS(4379), + [anon_sym_volatile] = ACTIONS(4379), + [anon_sym_where] = ACTIONS(4379), + [anon_sym_notnull] = ACTIONS(4379), + [anon_sym_unmanaged] = ACTIONS(4379), + [anon_sym_TILDE] = ACTIONS(4381), + [anon_sym_implicit] = ACTIONS(4379), + [anon_sym_explicit] = ACTIONS(4379), + [anon_sym_scoped] = ACTIONS(4379), + [anon_sym_var] = ACTIONS(4379), + [sym_predefined_type] = ACTIONS(4379), + [anon_sym_yield] = ACTIONS(4379), + [anon_sym_when] = ACTIONS(4379), + [anon_sym_from] = ACTIONS(4379), + [anon_sym_into] = ACTIONS(4379), + [anon_sym_join] = ACTIONS(4379), + [anon_sym_on] = ACTIONS(4379), + [anon_sym_equals] = ACTIONS(4379), + [anon_sym_let] = ACTIONS(4379), + [anon_sym_orderby] = ACTIONS(4379), + [anon_sym_ascending] = ACTIONS(4379), + [anon_sym_descending] = ACTIONS(4379), + [anon_sym_group] = ACTIONS(4379), + [anon_sym_by] = ACTIONS(4379), + [anon_sym_select] = ACTIONS(4379), + [aux_sym_preproc_if_token1] = ACTIONS(4381), + [aux_sym_preproc_if_token3] = ACTIONS(4381), + [aux_sym_preproc_else_token1] = ACTIONS(4381), + [aux_sym_preproc_elif_token1] = ACTIONS(4381), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -443305,69 +442919,69 @@ 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), - [anon_sym_SEMI] = ACTIONS(4199), - [anon_sym_EQ] = ACTIONS(4201), - [anon_sym_LBRACK] = ACTIONS(4199), - [anon_sym_COLON] = ACTIONS(4199), - [anon_sym_COMMA] = ACTIONS(4199), - [anon_sym_RBRACK] = ACTIONS(4199), - [anon_sym_LPAREN] = ACTIONS(4199), - [anon_sym_RPAREN] = ACTIONS(4199), - [anon_sym_RBRACE] = ACTIONS(4199), - [anon_sym_LT] = ACTIONS(4201), - [anon_sym_GT] = ACTIONS(4201), - [anon_sym_in] = ACTIONS(4199), - [anon_sym_QMARK] = ACTIONS(4201), - [anon_sym_BANG] = ACTIONS(4201), - [anon_sym_PLUS_PLUS] = ACTIONS(4199), - [anon_sym_DASH_DASH] = ACTIONS(4199), - [anon_sym_PLUS] = ACTIONS(4201), - [anon_sym_DASH] = ACTIONS(4201), - [anon_sym_STAR] = ACTIONS(4201), - [anon_sym_SLASH] = ACTIONS(4201), - [anon_sym_PERCENT] = ACTIONS(4201), - [anon_sym_CARET] = ACTIONS(4201), - [anon_sym_PIPE] = ACTIONS(4201), - [anon_sym_AMP] = ACTIONS(4201), - [anon_sym_LT_LT] = ACTIONS(4201), - [anon_sym_GT_GT] = ACTIONS(4201), - [anon_sym_GT_GT_GT] = ACTIONS(4201), - [anon_sym_EQ_EQ] = ACTIONS(4199), - [anon_sym_BANG_EQ] = ACTIONS(4199), - [anon_sym_GT_EQ] = ACTIONS(4199), - [anon_sym_LT_EQ] = ACTIONS(4199), - [anon_sym_DOT] = ACTIONS(4201), - [anon_sym_EQ_GT] = ACTIONS(4199), - [anon_sym_switch] = ACTIONS(4199), - [anon_sym_when] = ACTIONS(4199), - [anon_sym_DOT_DOT] = ACTIONS(4199), - [anon_sym_and] = ACTIONS(4199), - [anon_sym_or] = ACTIONS(4199), - [anon_sym_PLUS_EQ] = ACTIONS(4199), - [anon_sym_DASH_EQ] = ACTIONS(4199), - [anon_sym_STAR_EQ] = ACTIONS(4199), - [anon_sym_SLASH_EQ] = ACTIONS(4199), - [anon_sym_PERCENT_EQ] = ACTIONS(4199), - [anon_sym_AMP_EQ] = ACTIONS(4199), - [anon_sym_CARET_EQ] = ACTIONS(4199), - [anon_sym_PIPE_EQ] = ACTIONS(4199), - [anon_sym_LT_LT_EQ] = ACTIONS(4199), - [anon_sym_GT_GT_EQ] = ACTIONS(4199), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(4199), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(4199), - [anon_sym_AMP_AMP] = ACTIONS(4199), - [anon_sym_PIPE_PIPE] = ACTIONS(4199), - [anon_sym_QMARK_QMARK] = ACTIONS(4201), - [anon_sym_on] = ACTIONS(4199), - [anon_sym_equals] = ACTIONS(4199), - [anon_sym_by] = ACTIONS(4199), - [anon_sym_as] = ACTIONS(4199), - [anon_sym_is] = ACTIONS(4199), - [anon_sym_DASH_GT] = ACTIONS(4199), - [anon_sym_with] = ACTIONS(4199), - [aux_sym_preproc_if_token3] = ACTIONS(4199), - [aux_sym_preproc_else_token1] = ACTIONS(4199), - [aux_sym_preproc_elif_token1] = ACTIONS(4199), + [sym__identifier_token] = ACTIONS(4383), + [anon_sym_extern] = ACTIONS(4383), + [anon_sym_alias] = ACTIONS(4383), + [anon_sym_global] = ACTIONS(4383), + [anon_sym_using] = ACTIONS(4383), + [anon_sym_unsafe] = ACTIONS(4383), + [anon_sym_static] = ACTIONS(4383), + [anon_sym_LBRACK] = ACTIONS(4385), + [anon_sym_LPAREN] = ACTIONS(4385), + [anon_sym_event] = ACTIONS(4383), + [anon_sym_namespace] = ACTIONS(4383), + [anon_sym_class] = ACTIONS(4383), + [anon_sym_ref] = ACTIONS(4383), + [anon_sym_struct] = ACTIONS(4383), + [anon_sym_enum] = ACTIONS(4383), + [anon_sym_RBRACE] = ACTIONS(4385), + [anon_sym_interface] = ACTIONS(4383), + [anon_sym_delegate] = ACTIONS(4383), + [anon_sym_record] = ACTIONS(4383), + [anon_sym_abstract] = ACTIONS(4383), + [anon_sym_async] = ACTIONS(4383), + [anon_sym_const] = ACTIONS(4383), + [anon_sym_file] = ACTIONS(4383), + [anon_sym_fixed] = ACTIONS(4383), + [anon_sym_internal] = ACTIONS(4383), + [anon_sym_new] = ACTIONS(4383), + [anon_sym_override] = ACTIONS(4383), + [anon_sym_partial] = ACTIONS(4383), + [anon_sym_private] = ACTIONS(4383), + [anon_sym_protected] = ACTIONS(4383), + [anon_sym_public] = ACTIONS(4383), + [anon_sym_readonly] = ACTIONS(4383), + [anon_sym_required] = ACTIONS(4383), + [anon_sym_sealed] = ACTIONS(4383), + [anon_sym_virtual] = ACTIONS(4383), + [anon_sym_volatile] = ACTIONS(4383), + [anon_sym_where] = ACTIONS(4383), + [anon_sym_notnull] = ACTIONS(4383), + [anon_sym_unmanaged] = ACTIONS(4383), + [anon_sym_TILDE] = ACTIONS(4385), + [anon_sym_implicit] = ACTIONS(4383), + [anon_sym_explicit] = ACTIONS(4383), + [anon_sym_scoped] = ACTIONS(4383), + [anon_sym_var] = ACTIONS(4383), + [sym_predefined_type] = ACTIONS(4383), + [anon_sym_yield] = ACTIONS(4383), + [anon_sym_when] = ACTIONS(4383), + [anon_sym_from] = ACTIONS(4383), + [anon_sym_into] = ACTIONS(4383), + [anon_sym_join] = ACTIONS(4383), + [anon_sym_on] = ACTIONS(4383), + [anon_sym_equals] = ACTIONS(4383), + [anon_sym_let] = ACTIONS(4383), + [anon_sym_orderby] = ACTIONS(4383), + [anon_sym_ascending] = ACTIONS(4383), + [anon_sym_descending] = ACTIONS(4383), + [anon_sym_group] = ACTIONS(4383), + [anon_sym_by] = ACTIONS(4383), + [anon_sym_select] = ACTIONS(4383), + [aux_sym_preproc_if_token1] = ACTIONS(4385), + [aux_sym_preproc_if_token3] = ACTIONS(4385), + [aux_sym_preproc_else_token1] = ACTIONS(4385), + [aux_sym_preproc_elif_token1] = ACTIONS(4385), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -443389,68 +443003,69 @@ 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(4108), - [anon_sym_alias] = ACTIONS(4108), - [anon_sym_global] = ACTIONS(4108), - [anon_sym_LBRACK] = ACTIONS(4110), - [anon_sym_COLON] = ACTIONS(4110), - [anon_sym_COMMA] = ACTIONS(4110), - [anon_sym_LPAREN] = ACTIONS(4110), - [anon_sym_LBRACE] = ACTIONS(4110), - [anon_sym_file] = ACTIONS(4108), - [anon_sym_LT] = ACTIONS(4108), - [anon_sym_GT] = ACTIONS(4108), - [anon_sym_where] = ACTIONS(4108), - [anon_sym_QMARK] = ACTIONS(4108), - [anon_sym_notnull] = ACTIONS(4108), - [anon_sym_unmanaged] = ACTIONS(4108), - [anon_sym_BANG] = ACTIONS(4108), - [anon_sym_PLUS_PLUS] = ACTIONS(4110), - [anon_sym_DASH_DASH] = ACTIONS(4110), - [anon_sym_PLUS] = ACTIONS(4108), - [anon_sym_DASH] = ACTIONS(4108), - [anon_sym_STAR] = ACTIONS(4110), - [anon_sym_SLASH] = ACTIONS(4108), - [anon_sym_PERCENT] = ACTIONS(4110), - [anon_sym_CARET] = ACTIONS(4110), - [anon_sym_PIPE] = ACTIONS(4108), - [anon_sym_AMP] = ACTIONS(4108), - [anon_sym_LT_LT] = ACTIONS(4110), - [anon_sym_GT_GT] = ACTIONS(4108), - [anon_sym_GT_GT_GT] = ACTIONS(4110), - [anon_sym_EQ_EQ] = ACTIONS(4110), - [anon_sym_BANG_EQ] = ACTIONS(4110), - [anon_sym_GT_EQ] = ACTIONS(4110), - [anon_sym_LT_EQ] = ACTIONS(4110), - [anon_sym_DOT] = ACTIONS(4108), - [anon_sym_scoped] = ACTIONS(4108), - [anon_sym_var] = ACTIONS(4108), - [anon_sym_yield] = ACTIONS(4108), - [anon_sym_switch] = ACTIONS(4108), - [anon_sym_when] = ACTIONS(4108), - [sym_discard] = ACTIONS(4108), - [anon_sym_DOT_DOT] = ACTIONS(4110), - [anon_sym_and] = ACTIONS(4108), - [anon_sym_or] = ACTIONS(4108), - [anon_sym_AMP_AMP] = ACTIONS(4110), - [anon_sym_PIPE_PIPE] = ACTIONS(4110), - [anon_sym_QMARK_QMARK] = ACTIONS(4110), - [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(4108), - [anon_sym_is] = ACTIONS(4108), - [anon_sym_DASH_GT] = ACTIONS(4110), - [anon_sym_with] = ACTIONS(4108), + [sym__identifier_token] = ACTIONS(4387), + [anon_sym_extern] = ACTIONS(4387), + [anon_sym_alias] = ACTIONS(4387), + [anon_sym_global] = ACTIONS(4387), + [anon_sym_using] = ACTIONS(4387), + [anon_sym_unsafe] = ACTIONS(4387), + [anon_sym_static] = ACTIONS(4387), + [anon_sym_LBRACK] = ACTIONS(4389), + [anon_sym_LPAREN] = ACTIONS(4389), + [anon_sym_event] = ACTIONS(4387), + [anon_sym_namespace] = ACTIONS(4387), + [anon_sym_class] = ACTIONS(4387), + [anon_sym_ref] = ACTIONS(4387), + [anon_sym_struct] = ACTIONS(4387), + [anon_sym_enum] = ACTIONS(4387), + [anon_sym_RBRACE] = ACTIONS(4389), + [anon_sym_interface] = ACTIONS(4387), + [anon_sym_delegate] = ACTIONS(4387), + [anon_sym_record] = ACTIONS(4387), + [anon_sym_abstract] = ACTIONS(4387), + [anon_sym_async] = ACTIONS(4387), + [anon_sym_const] = ACTIONS(4387), + [anon_sym_file] = ACTIONS(4387), + [anon_sym_fixed] = ACTIONS(4387), + [anon_sym_internal] = ACTIONS(4387), + [anon_sym_new] = ACTIONS(4387), + [anon_sym_override] = ACTIONS(4387), + [anon_sym_partial] = ACTIONS(4387), + [anon_sym_private] = ACTIONS(4387), + [anon_sym_protected] = ACTIONS(4387), + [anon_sym_public] = ACTIONS(4387), + [anon_sym_readonly] = ACTIONS(4387), + [anon_sym_required] = ACTIONS(4387), + [anon_sym_sealed] = ACTIONS(4387), + [anon_sym_virtual] = ACTIONS(4387), + [anon_sym_volatile] = ACTIONS(4387), + [anon_sym_where] = ACTIONS(4387), + [anon_sym_notnull] = ACTIONS(4387), + [anon_sym_unmanaged] = ACTIONS(4387), + [anon_sym_TILDE] = ACTIONS(4389), + [anon_sym_implicit] = ACTIONS(4387), + [anon_sym_explicit] = ACTIONS(4387), + [anon_sym_scoped] = ACTIONS(4387), + [anon_sym_var] = ACTIONS(4387), + [sym_predefined_type] = ACTIONS(4387), + [anon_sym_yield] = ACTIONS(4387), + [anon_sym_when] = ACTIONS(4387), + [anon_sym_from] = ACTIONS(4387), + [anon_sym_into] = ACTIONS(4387), + [anon_sym_join] = ACTIONS(4387), + [anon_sym_on] = ACTIONS(4387), + [anon_sym_equals] = ACTIONS(4387), + [anon_sym_let] = ACTIONS(4387), + [anon_sym_orderby] = ACTIONS(4387), + [anon_sym_ascending] = ACTIONS(4387), + [anon_sym_descending] = ACTIONS(4387), + [anon_sym_group] = ACTIONS(4387), + [anon_sym_by] = ACTIONS(4387), + [anon_sym_select] = ACTIONS(4387), + [aux_sym_preproc_if_token1] = ACTIONS(4389), + [aux_sym_preproc_if_token3] = ACTIONS(4389), + [aux_sym_preproc_else_token1] = ACTIONS(4389), + [aux_sym_preproc_elif_token1] = ACTIONS(4389), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -443461,7 +443076,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(4110), }, [2674] = { [sym_preproc_region] = STATE(2674), @@ -443473,69 +443087,69 @@ 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), - [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), + [sym__identifier_token] = ACTIONS(4391), + [anon_sym_extern] = ACTIONS(4391), + [anon_sym_alias] = ACTIONS(4391), + [anon_sym_global] = ACTIONS(4391), + [anon_sym_using] = ACTIONS(4391), + [anon_sym_unsafe] = ACTIONS(4391), + [anon_sym_static] = ACTIONS(4391), + [anon_sym_LBRACK] = ACTIONS(4393), + [anon_sym_LPAREN] = ACTIONS(4393), + [anon_sym_event] = ACTIONS(4391), + [anon_sym_namespace] = ACTIONS(4391), + [anon_sym_class] = ACTIONS(4391), + [anon_sym_ref] = ACTIONS(4391), + [anon_sym_struct] = ACTIONS(4391), + [anon_sym_enum] = ACTIONS(4391), + [anon_sym_RBRACE] = ACTIONS(4393), + [anon_sym_interface] = ACTIONS(4391), + [anon_sym_delegate] = ACTIONS(4391), + [anon_sym_record] = ACTIONS(4391), + [anon_sym_abstract] = ACTIONS(4391), + [anon_sym_async] = ACTIONS(4391), + [anon_sym_const] = ACTIONS(4391), + [anon_sym_file] = ACTIONS(4391), + [anon_sym_fixed] = ACTIONS(4391), + [anon_sym_internal] = ACTIONS(4391), + [anon_sym_new] = ACTIONS(4391), + [anon_sym_override] = ACTIONS(4391), + [anon_sym_partial] = ACTIONS(4391), + [anon_sym_private] = ACTIONS(4391), + [anon_sym_protected] = ACTIONS(4391), + [anon_sym_public] = ACTIONS(4391), + [anon_sym_readonly] = ACTIONS(4391), + [anon_sym_required] = ACTIONS(4391), + [anon_sym_sealed] = ACTIONS(4391), + [anon_sym_virtual] = ACTIONS(4391), + [anon_sym_volatile] = ACTIONS(4391), + [anon_sym_where] = ACTIONS(4391), + [anon_sym_notnull] = ACTIONS(4391), + [anon_sym_unmanaged] = ACTIONS(4391), + [anon_sym_TILDE] = ACTIONS(4393), + [anon_sym_implicit] = ACTIONS(4391), + [anon_sym_explicit] = ACTIONS(4391), + [anon_sym_scoped] = ACTIONS(4391), + [anon_sym_var] = ACTIONS(4391), + [sym_predefined_type] = ACTIONS(4391), + [anon_sym_yield] = ACTIONS(4391), + [anon_sym_when] = ACTIONS(4391), + [anon_sym_from] = ACTIONS(4391), + [anon_sym_into] = ACTIONS(4391), + [anon_sym_join] = ACTIONS(4391), + [anon_sym_on] = ACTIONS(4391), + [anon_sym_equals] = ACTIONS(4391), + [anon_sym_let] = ACTIONS(4391), + [anon_sym_orderby] = ACTIONS(4391), + [anon_sym_ascending] = ACTIONS(4391), + [anon_sym_descending] = ACTIONS(4391), + [anon_sym_group] = ACTIONS(4391), + [anon_sym_by] = ACTIONS(4391), + [anon_sym_select] = ACTIONS(4391), + [aux_sym_preproc_if_token1] = ACTIONS(4393), + [aux_sym_preproc_if_token3] = ACTIONS(4393), + [aux_sym_preproc_else_token1] = ACTIONS(4393), + [aux_sym_preproc_elif_token1] = ACTIONS(4393), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -443548,6 +443162,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2675] = { + [sym__variable_designation] = STATE(3449), + [sym_parenthesized_variable_designation] = STATE(3352), + [sym_identifier] = STATE(3355), + [sym__reserved_identifier] = STATE(3199), [sym_preproc_region] = STATE(2675), [sym_preproc_endregion] = STATE(2675), [sym_preproc_line] = STATE(2675), @@ -443557,69 +443175,65 @@ 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(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), + [sym__identifier_token] = ACTIONS(3855), + [anon_sym_alias] = ACTIONS(3857), + [anon_sym_global] = ACTIONS(3857), + [anon_sym_LBRACK] = ACTIONS(3893), + [anon_sym_LPAREN] = ACTIONS(3893), + [anon_sym_file] = ACTIONS(3857), + [anon_sym_LT] = ACTIONS(3895), + [anon_sym_GT] = ACTIONS(3895), + [anon_sym_where] = ACTIONS(3857), + [anon_sym_QMARK] = ACTIONS(3895), + [anon_sym_notnull] = ACTIONS(3857), + [anon_sym_unmanaged] = ACTIONS(3857), + [anon_sym_BANG] = ACTIONS(3895), + [anon_sym_PLUS_PLUS] = ACTIONS(3893), + [anon_sym_DASH_DASH] = ACTIONS(3893), + [anon_sym_PLUS] = ACTIONS(3895), + [anon_sym_DASH] = ACTIONS(3895), + [anon_sym_STAR] = ACTIONS(3893), + [anon_sym_SLASH] = ACTIONS(3895), + [anon_sym_PERCENT] = ACTIONS(3893), + [anon_sym_CARET] = ACTIONS(3893), + [anon_sym_PIPE] = ACTIONS(3895), + [anon_sym_AMP] = ACTIONS(3895), + [anon_sym_LT_LT] = ACTIONS(3893), + [anon_sym_GT_GT] = ACTIONS(3895), + [anon_sym_GT_GT_GT] = ACTIONS(3893), + [anon_sym_EQ_EQ] = ACTIONS(3893), + [anon_sym_BANG_EQ] = ACTIONS(3893), + [anon_sym_GT_EQ] = ACTIONS(3893), + [anon_sym_LT_EQ] = ACTIONS(3893), + [anon_sym_DOT] = ACTIONS(3895), + [anon_sym_scoped] = ACTIONS(3857), + [anon_sym_var] = ACTIONS(3857), + [anon_sym_yield] = ACTIONS(3857), + [anon_sym_switch] = ACTIONS(3895), + [anon_sym_when] = ACTIONS(3857), + [sym_discard] = ACTIONS(3877), + [anon_sym_DOT_DOT] = ACTIONS(3893), + [anon_sym_and] = ACTIONS(3895), + [anon_sym_or] = ACTIONS(3895), + [anon_sym_AMP_AMP] = ACTIONS(3893), + [anon_sym_PIPE_PIPE] = ACTIONS(3893), + [anon_sym_QMARK_QMARK] = ACTIONS(3893), + [anon_sym_from] = ACTIONS(3857), + [anon_sym_into] = ACTIONS(3857), + [anon_sym_join] = ACTIONS(3857), + [anon_sym_on] = ACTIONS(3857), + [anon_sym_equals] = ACTIONS(3857), + [anon_sym_let] = ACTIONS(3857), + [anon_sym_orderby] = ACTIONS(3857), + [anon_sym_ascending] = ACTIONS(3857), + [anon_sym_descending] = ACTIONS(3857), + [anon_sym_group] = ACTIONS(3857), + [anon_sym_by] = ACTIONS(3895), + [anon_sym_select] = ACTIONS(3857), + [anon_sym_as] = ACTIONS(3895), + [anon_sym_is] = ACTIONS(3895), + [anon_sym_DASH_GT] = ACTIONS(3893), + [anon_sym_with] = ACTIONS(3895), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -443641,69 +443255,69 @@ 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(3347), - [anon_sym_extern] = ACTIONS(3347), - [anon_sym_alias] = ACTIONS(3347), - [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_event] = 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_RBRACE] = 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_TILDE] = ACTIONS(3349), - [anon_sym_implicit] = ACTIONS(3347), - [anon_sym_explicit] = ACTIONS(3347), - [anon_sym_scoped] = ACTIONS(3347), - [anon_sym_var] = ACTIONS(3347), - [sym_predefined_type] = ACTIONS(3347), - [anon_sym_yield] = ACTIONS(3347), - [anon_sym_when] = ACTIONS(3347), - [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), - [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), + [sym__identifier_token] = ACTIONS(4395), + [anon_sym_extern] = ACTIONS(4395), + [anon_sym_alias] = ACTIONS(4395), + [anon_sym_global] = ACTIONS(4395), + [anon_sym_using] = ACTIONS(4395), + [anon_sym_unsafe] = ACTIONS(4395), + [anon_sym_static] = ACTIONS(4395), + [anon_sym_LBRACK] = ACTIONS(4397), + [anon_sym_LPAREN] = ACTIONS(4397), + [anon_sym_event] = ACTIONS(4395), + [anon_sym_namespace] = ACTIONS(4395), + [anon_sym_class] = ACTIONS(4395), + [anon_sym_ref] = ACTIONS(4395), + [anon_sym_struct] = ACTIONS(4395), + [anon_sym_enum] = ACTIONS(4395), + [anon_sym_RBRACE] = ACTIONS(4397), + [anon_sym_interface] = ACTIONS(4395), + [anon_sym_delegate] = ACTIONS(4395), + [anon_sym_record] = ACTIONS(4395), + [anon_sym_abstract] = ACTIONS(4395), + [anon_sym_async] = ACTIONS(4395), + [anon_sym_const] = ACTIONS(4395), + [anon_sym_file] = ACTIONS(4395), + [anon_sym_fixed] = ACTIONS(4395), + [anon_sym_internal] = ACTIONS(4395), + [anon_sym_new] = ACTIONS(4395), + [anon_sym_override] = ACTIONS(4395), + [anon_sym_partial] = ACTIONS(4395), + [anon_sym_private] = ACTIONS(4395), + [anon_sym_protected] = ACTIONS(4395), + [anon_sym_public] = ACTIONS(4395), + [anon_sym_readonly] = ACTIONS(4395), + [anon_sym_required] = ACTIONS(4395), + [anon_sym_sealed] = ACTIONS(4395), + [anon_sym_virtual] = ACTIONS(4395), + [anon_sym_volatile] = ACTIONS(4395), + [anon_sym_where] = ACTIONS(4395), + [anon_sym_notnull] = ACTIONS(4395), + [anon_sym_unmanaged] = ACTIONS(4395), + [anon_sym_TILDE] = ACTIONS(4397), + [anon_sym_implicit] = ACTIONS(4395), + [anon_sym_explicit] = ACTIONS(4395), + [anon_sym_scoped] = ACTIONS(4395), + [anon_sym_var] = ACTIONS(4395), + [sym_predefined_type] = ACTIONS(4395), + [anon_sym_yield] = ACTIONS(4395), + [anon_sym_when] = ACTIONS(4395), + [anon_sym_from] = ACTIONS(4395), + [anon_sym_into] = ACTIONS(4395), + [anon_sym_join] = ACTIONS(4395), + [anon_sym_on] = ACTIONS(4395), + [anon_sym_equals] = ACTIONS(4395), + [anon_sym_let] = ACTIONS(4395), + [anon_sym_orderby] = ACTIONS(4395), + [anon_sym_ascending] = ACTIONS(4395), + [anon_sym_descending] = ACTIONS(4395), + [anon_sym_group] = ACTIONS(4395), + [anon_sym_by] = ACTIONS(4395), + [anon_sym_select] = ACTIONS(4395), + [aux_sym_preproc_if_token1] = ACTIONS(4397), + [aux_sym_preproc_if_token3] = ACTIONS(4397), + [aux_sym_preproc_else_token1] = ACTIONS(4397), + [aux_sym_preproc_elif_token1] = ACTIONS(4397), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -443725,69 +443339,69 @@ 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(3331), - [anon_sym_extern] = ACTIONS(3331), - [anon_sym_alias] = ACTIONS(3331), - [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_event] = 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_RBRACE] = 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_TILDE] = ACTIONS(3333), - [anon_sym_implicit] = ACTIONS(3331), - [anon_sym_explicit] = ACTIONS(3331), - [anon_sym_scoped] = ACTIONS(3331), - [anon_sym_var] = ACTIONS(3331), - [sym_predefined_type] = ACTIONS(3331), - [anon_sym_yield] = ACTIONS(3331), - [anon_sym_when] = ACTIONS(3331), - [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), - [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), + [sym__identifier_token] = ACTIONS(4399), + [anon_sym_extern] = ACTIONS(4399), + [anon_sym_alias] = ACTIONS(4399), + [anon_sym_global] = ACTIONS(4399), + [anon_sym_using] = ACTIONS(4399), + [anon_sym_unsafe] = ACTIONS(4399), + [anon_sym_static] = ACTIONS(4399), + [anon_sym_LBRACK] = ACTIONS(4401), + [anon_sym_LPAREN] = ACTIONS(4401), + [anon_sym_event] = ACTIONS(4399), + [anon_sym_namespace] = ACTIONS(4399), + [anon_sym_class] = ACTIONS(4399), + [anon_sym_ref] = ACTIONS(4399), + [anon_sym_struct] = ACTIONS(4399), + [anon_sym_enum] = ACTIONS(4399), + [anon_sym_RBRACE] = ACTIONS(4401), + [anon_sym_interface] = ACTIONS(4399), + [anon_sym_delegate] = ACTIONS(4399), + [anon_sym_record] = ACTIONS(4399), + [anon_sym_abstract] = ACTIONS(4399), + [anon_sym_async] = ACTIONS(4399), + [anon_sym_const] = ACTIONS(4399), + [anon_sym_file] = ACTIONS(4399), + [anon_sym_fixed] = ACTIONS(4399), + [anon_sym_internal] = ACTIONS(4399), + [anon_sym_new] = ACTIONS(4399), + [anon_sym_override] = ACTIONS(4399), + [anon_sym_partial] = ACTIONS(4399), + [anon_sym_private] = ACTIONS(4399), + [anon_sym_protected] = ACTIONS(4399), + [anon_sym_public] = ACTIONS(4399), + [anon_sym_readonly] = ACTIONS(4399), + [anon_sym_required] = ACTIONS(4399), + [anon_sym_sealed] = ACTIONS(4399), + [anon_sym_virtual] = ACTIONS(4399), + [anon_sym_volatile] = ACTIONS(4399), + [anon_sym_where] = ACTIONS(4399), + [anon_sym_notnull] = ACTIONS(4399), + [anon_sym_unmanaged] = ACTIONS(4399), + [anon_sym_TILDE] = ACTIONS(4401), + [anon_sym_implicit] = ACTIONS(4399), + [anon_sym_explicit] = ACTIONS(4399), + [anon_sym_scoped] = ACTIONS(4399), + [anon_sym_var] = ACTIONS(4399), + [sym_predefined_type] = ACTIONS(4399), + [anon_sym_yield] = ACTIONS(4399), + [anon_sym_when] = ACTIONS(4399), + [anon_sym_from] = ACTIONS(4399), + [anon_sym_into] = ACTIONS(4399), + [anon_sym_join] = ACTIONS(4399), + [anon_sym_on] = ACTIONS(4399), + [anon_sym_equals] = ACTIONS(4399), + [anon_sym_let] = ACTIONS(4399), + [anon_sym_orderby] = ACTIONS(4399), + [anon_sym_ascending] = ACTIONS(4399), + [anon_sym_descending] = ACTIONS(4399), + [anon_sym_group] = ACTIONS(4399), + [anon_sym_by] = ACTIONS(4399), + [anon_sym_select] = ACTIONS(4399), + [aux_sym_preproc_if_token1] = ACTIONS(4401), + [aux_sym_preproc_if_token3] = ACTIONS(4401), + [aux_sym_preproc_else_token1] = ACTIONS(4401), + [aux_sym_preproc_elif_token1] = ACTIONS(4401), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -443809,69 +443423,69 @@ 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(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), + [sym__identifier_token] = ACTIONS(4403), + [anon_sym_extern] = ACTIONS(4403), + [anon_sym_alias] = ACTIONS(4403), + [anon_sym_global] = ACTIONS(4403), + [anon_sym_using] = ACTIONS(4403), + [anon_sym_unsafe] = ACTIONS(4403), + [anon_sym_static] = ACTIONS(4403), + [anon_sym_LBRACK] = ACTIONS(4405), + [anon_sym_LPAREN] = ACTIONS(4405), + [anon_sym_event] = ACTIONS(4403), + [anon_sym_namespace] = ACTIONS(4403), + [anon_sym_class] = ACTIONS(4403), + [anon_sym_ref] = ACTIONS(4403), + [anon_sym_struct] = ACTIONS(4403), + [anon_sym_enum] = ACTIONS(4403), + [anon_sym_RBRACE] = ACTIONS(4405), + [anon_sym_interface] = ACTIONS(4403), + [anon_sym_delegate] = ACTIONS(4403), + [anon_sym_record] = ACTIONS(4403), + [anon_sym_abstract] = ACTIONS(4403), + [anon_sym_async] = ACTIONS(4403), + [anon_sym_const] = ACTIONS(4403), + [anon_sym_file] = ACTIONS(4403), + [anon_sym_fixed] = ACTIONS(4403), + [anon_sym_internal] = ACTIONS(4403), + [anon_sym_new] = ACTIONS(4403), + [anon_sym_override] = ACTIONS(4403), + [anon_sym_partial] = ACTIONS(4403), + [anon_sym_private] = ACTIONS(4403), + [anon_sym_protected] = ACTIONS(4403), + [anon_sym_public] = ACTIONS(4403), + [anon_sym_readonly] = ACTIONS(4403), + [anon_sym_required] = ACTIONS(4403), + [anon_sym_sealed] = ACTIONS(4403), + [anon_sym_virtual] = ACTIONS(4403), + [anon_sym_volatile] = ACTIONS(4403), + [anon_sym_where] = ACTIONS(4403), + [anon_sym_notnull] = ACTIONS(4403), + [anon_sym_unmanaged] = ACTIONS(4403), + [anon_sym_TILDE] = ACTIONS(4405), + [anon_sym_implicit] = ACTIONS(4403), + [anon_sym_explicit] = ACTIONS(4403), + [anon_sym_scoped] = ACTIONS(4403), + [anon_sym_var] = ACTIONS(4403), + [sym_predefined_type] = ACTIONS(4403), + [anon_sym_yield] = ACTIONS(4403), + [anon_sym_when] = ACTIONS(4403), + [anon_sym_from] = ACTIONS(4403), + [anon_sym_into] = ACTIONS(4403), + [anon_sym_join] = ACTIONS(4403), + [anon_sym_on] = ACTIONS(4403), + [anon_sym_equals] = ACTIONS(4403), + [anon_sym_let] = ACTIONS(4403), + [anon_sym_orderby] = ACTIONS(4403), + [anon_sym_ascending] = ACTIONS(4403), + [anon_sym_descending] = ACTIONS(4403), + [anon_sym_group] = ACTIONS(4403), + [anon_sym_by] = ACTIONS(4403), + [anon_sym_select] = ACTIONS(4403), + [aux_sym_preproc_if_token1] = ACTIONS(4405), + [aux_sym_preproc_if_token3] = ACTIONS(4405), + [aux_sym_preproc_else_token1] = ACTIONS(4405), + [aux_sym_preproc_elif_token1] = ACTIONS(4405), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -443893,69 +443507,69 @@ 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), - [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(4407), + [anon_sym_extern] = ACTIONS(4407), + [anon_sym_alias] = ACTIONS(4407), + [anon_sym_global] = ACTIONS(4407), + [anon_sym_using] = ACTIONS(4407), + [anon_sym_unsafe] = ACTIONS(4407), + [anon_sym_static] = ACTIONS(4407), + [anon_sym_LBRACK] = ACTIONS(4409), + [anon_sym_LPAREN] = ACTIONS(4409), + [anon_sym_event] = ACTIONS(4407), + [anon_sym_namespace] = ACTIONS(4407), + [anon_sym_class] = ACTIONS(4407), + [anon_sym_ref] = ACTIONS(4407), + [anon_sym_struct] = ACTIONS(4407), + [anon_sym_enum] = ACTIONS(4407), + [anon_sym_RBRACE] = ACTIONS(4409), + [anon_sym_interface] = ACTIONS(4407), + [anon_sym_delegate] = ACTIONS(4407), + [anon_sym_record] = ACTIONS(4407), + [anon_sym_abstract] = ACTIONS(4407), + [anon_sym_async] = ACTIONS(4407), + [anon_sym_const] = ACTIONS(4407), + [anon_sym_file] = ACTIONS(4407), + [anon_sym_fixed] = ACTIONS(4407), + [anon_sym_internal] = ACTIONS(4407), + [anon_sym_new] = ACTIONS(4407), + [anon_sym_override] = ACTIONS(4407), + [anon_sym_partial] = ACTIONS(4407), + [anon_sym_private] = ACTIONS(4407), + [anon_sym_protected] = ACTIONS(4407), + [anon_sym_public] = ACTIONS(4407), + [anon_sym_readonly] = ACTIONS(4407), + [anon_sym_required] = ACTIONS(4407), + [anon_sym_sealed] = ACTIONS(4407), + [anon_sym_virtual] = ACTIONS(4407), + [anon_sym_volatile] = ACTIONS(4407), + [anon_sym_where] = ACTIONS(4407), + [anon_sym_notnull] = ACTIONS(4407), + [anon_sym_unmanaged] = ACTIONS(4407), + [anon_sym_TILDE] = ACTIONS(4409), + [anon_sym_implicit] = ACTIONS(4407), + [anon_sym_explicit] = ACTIONS(4407), + [anon_sym_scoped] = ACTIONS(4407), + [anon_sym_var] = ACTIONS(4407), + [sym_predefined_type] = ACTIONS(4407), + [anon_sym_yield] = ACTIONS(4407), + [anon_sym_when] = ACTIONS(4407), + [anon_sym_from] = ACTIONS(4407), + [anon_sym_into] = ACTIONS(4407), + [anon_sym_join] = ACTIONS(4407), + [anon_sym_on] = ACTIONS(4407), + [anon_sym_equals] = ACTIONS(4407), + [anon_sym_let] = ACTIONS(4407), + [anon_sym_orderby] = ACTIONS(4407), + [anon_sym_ascending] = ACTIONS(4407), + [anon_sym_descending] = ACTIONS(4407), + [anon_sym_group] = ACTIONS(4407), + [anon_sym_by] = ACTIONS(4407), + [anon_sym_select] = ACTIONS(4407), + [aux_sym_preproc_if_token1] = ACTIONS(4409), + [aux_sym_preproc_if_token3] = ACTIONS(4409), + [aux_sym_preproc_else_token1] = ACTIONS(4409), + [aux_sym_preproc_elif_token1] = ACTIONS(4409), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -443968,6 +443582,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2680] = { + [sym__variable_designation] = STATE(3413), + [sym_parenthesized_variable_designation] = STATE(3352), + [sym_identifier] = STATE(3355), + [sym__reserved_identifier] = STATE(3199), [sym_preproc_region] = STATE(2680), [sym_preproc_endregion] = STATE(2680), [sym_preproc_line] = STATE(2680), @@ -443977,69 +443595,65 @@ 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), - [sym__identifier_token] = ACTIONS(4358), - [anon_sym_extern] = ACTIONS(4358), - [anon_sym_alias] = ACTIONS(4358), - [anon_sym_global] = ACTIONS(4358), - [anon_sym_using] = ACTIONS(4358), - [anon_sym_unsafe] = ACTIONS(4358), - [anon_sym_static] = ACTIONS(4358), - [anon_sym_LBRACK] = ACTIONS(4360), - [anon_sym_LPAREN] = ACTIONS(4360), - [anon_sym_event] = ACTIONS(4358), - [anon_sym_namespace] = ACTIONS(4358), - [anon_sym_class] = ACTIONS(4358), - [anon_sym_ref] = ACTIONS(4358), - [anon_sym_struct] = ACTIONS(4358), - [anon_sym_enum] = ACTIONS(4358), - [anon_sym_RBRACE] = ACTIONS(4360), - [anon_sym_interface] = ACTIONS(4358), - [anon_sym_delegate] = ACTIONS(4358), - [anon_sym_record] = ACTIONS(4358), - [anon_sym_abstract] = ACTIONS(4358), - [anon_sym_async] = ACTIONS(4358), - [anon_sym_const] = ACTIONS(4358), - [anon_sym_file] = ACTIONS(4358), - [anon_sym_fixed] = ACTIONS(4358), - [anon_sym_internal] = ACTIONS(4358), - [anon_sym_new] = ACTIONS(4358), - [anon_sym_override] = ACTIONS(4358), - [anon_sym_partial] = ACTIONS(4358), - [anon_sym_private] = ACTIONS(4358), - [anon_sym_protected] = ACTIONS(4358), - [anon_sym_public] = ACTIONS(4358), - [anon_sym_readonly] = ACTIONS(4358), - [anon_sym_required] = ACTIONS(4358), - [anon_sym_sealed] = ACTIONS(4358), - [anon_sym_virtual] = ACTIONS(4358), - [anon_sym_volatile] = ACTIONS(4358), - [anon_sym_where] = ACTIONS(4358), - [anon_sym_notnull] = ACTIONS(4358), - [anon_sym_unmanaged] = ACTIONS(4358), - [anon_sym_TILDE] = ACTIONS(4360), - [anon_sym_implicit] = ACTIONS(4358), - [anon_sym_explicit] = ACTIONS(4358), - [anon_sym_scoped] = ACTIONS(4358), - [anon_sym_var] = ACTIONS(4358), - [sym_predefined_type] = ACTIONS(4358), - [anon_sym_yield] = ACTIONS(4358), - [anon_sym_when] = ACTIONS(4358), - [anon_sym_from] = ACTIONS(4358), - [anon_sym_into] = ACTIONS(4358), - [anon_sym_join] = ACTIONS(4358), - [anon_sym_on] = ACTIONS(4358), - [anon_sym_equals] = ACTIONS(4358), - [anon_sym_let] = ACTIONS(4358), - [anon_sym_orderby] = ACTIONS(4358), - [anon_sym_ascending] = ACTIONS(4358), - [anon_sym_descending] = ACTIONS(4358), - [anon_sym_group] = ACTIONS(4358), - [anon_sym_by] = ACTIONS(4358), - [anon_sym_select] = ACTIONS(4358), - [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), + [sym__identifier_token] = ACTIONS(3855), + [anon_sym_alias] = ACTIONS(3857), + [anon_sym_global] = ACTIONS(3857), + [anon_sym_LBRACK] = ACTIONS(3885), + [anon_sym_LPAREN] = ACTIONS(3885), + [anon_sym_file] = ACTIONS(3857), + [anon_sym_LT] = ACTIONS(3887), + [anon_sym_GT] = ACTIONS(3887), + [anon_sym_where] = ACTIONS(3857), + [anon_sym_QMARK] = ACTIONS(3887), + [anon_sym_notnull] = ACTIONS(3857), + [anon_sym_unmanaged] = ACTIONS(3857), + [anon_sym_BANG] = ACTIONS(3887), + [anon_sym_PLUS_PLUS] = ACTIONS(3885), + [anon_sym_DASH_DASH] = ACTIONS(3885), + [anon_sym_PLUS] = ACTIONS(3887), + [anon_sym_DASH] = ACTIONS(3887), + [anon_sym_STAR] = ACTIONS(3885), + [anon_sym_SLASH] = ACTIONS(3887), + [anon_sym_PERCENT] = ACTIONS(3885), + [anon_sym_CARET] = ACTIONS(3885), + [anon_sym_PIPE] = ACTIONS(3887), + [anon_sym_AMP] = ACTIONS(3887), + [anon_sym_LT_LT] = ACTIONS(3885), + [anon_sym_GT_GT] = ACTIONS(3887), + [anon_sym_GT_GT_GT] = ACTIONS(3885), + [anon_sym_EQ_EQ] = ACTIONS(3885), + [anon_sym_BANG_EQ] = ACTIONS(3885), + [anon_sym_GT_EQ] = ACTIONS(3885), + [anon_sym_LT_EQ] = ACTIONS(3885), + [anon_sym_DOT] = ACTIONS(3887), + [anon_sym_scoped] = ACTIONS(3857), + [anon_sym_var] = ACTIONS(3857), + [anon_sym_yield] = ACTIONS(3857), + [anon_sym_switch] = ACTIONS(3887), + [anon_sym_when] = ACTIONS(3857), + [sym_discard] = ACTIONS(3877), + [anon_sym_DOT_DOT] = ACTIONS(3885), + [anon_sym_and] = ACTIONS(3887), + [anon_sym_or] = ACTIONS(3887), + [anon_sym_AMP_AMP] = ACTIONS(3885), + [anon_sym_PIPE_PIPE] = ACTIONS(3885), + [anon_sym_QMARK_QMARK] = ACTIONS(3885), + [anon_sym_from] = ACTIONS(3857), + [anon_sym_into] = ACTIONS(3857), + [anon_sym_join] = ACTIONS(3857), + [anon_sym_on] = ACTIONS(3857), + [anon_sym_equals] = ACTIONS(3857), + [anon_sym_let] = ACTIONS(3857), + [anon_sym_orderby] = ACTIONS(3857), + [anon_sym_ascending] = ACTIONS(3857), + [anon_sym_descending] = ACTIONS(3857), + [anon_sym_group] = ACTIONS(3857), + [anon_sym_by] = ACTIONS(3887), + [anon_sym_select] = ACTIONS(3857), + [anon_sym_as] = ACTIONS(3887), + [anon_sym_is] = ACTIONS(3887), + [anon_sym_DASH_GT] = ACTIONS(3885), + [anon_sym_with] = ACTIONS(3887), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -444061,69 +443675,69 @@ 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), - [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), + [sym__identifier_token] = ACTIONS(4411), + [anon_sym_extern] = ACTIONS(4411), + [anon_sym_alias] = ACTIONS(4411), + [anon_sym_global] = ACTIONS(4411), + [anon_sym_using] = ACTIONS(4411), + [anon_sym_unsafe] = ACTIONS(4411), + [anon_sym_static] = ACTIONS(4411), + [anon_sym_LBRACK] = ACTIONS(4413), + [anon_sym_LPAREN] = ACTIONS(4413), + [anon_sym_event] = ACTIONS(4411), + [anon_sym_namespace] = ACTIONS(4411), + [anon_sym_class] = ACTIONS(4411), + [anon_sym_ref] = ACTIONS(4411), + [anon_sym_struct] = ACTIONS(4411), + [anon_sym_enum] = ACTIONS(4411), + [anon_sym_RBRACE] = ACTIONS(4413), + [anon_sym_interface] = ACTIONS(4411), + [anon_sym_delegate] = ACTIONS(4411), + [anon_sym_record] = ACTIONS(4411), + [anon_sym_abstract] = ACTIONS(4411), + [anon_sym_async] = ACTIONS(4411), + [anon_sym_const] = ACTIONS(4411), + [anon_sym_file] = ACTIONS(4411), + [anon_sym_fixed] = ACTIONS(4411), + [anon_sym_internal] = ACTIONS(4411), + [anon_sym_new] = ACTIONS(4411), + [anon_sym_override] = ACTIONS(4411), + [anon_sym_partial] = ACTIONS(4411), + [anon_sym_private] = ACTIONS(4411), + [anon_sym_protected] = ACTIONS(4411), + [anon_sym_public] = ACTIONS(4411), + [anon_sym_readonly] = ACTIONS(4411), + [anon_sym_required] = ACTIONS(4411), + [anon_sym_sealed] = ACTIONS(4411), + [anon_sym_virtual] = ACTIONS(4411), + [anon_sym_volatile] = ACTIONS(4411), + [anon_sym_where] = ACTIONS(4411), + [anon_sym_notnull] = ACTIONS(4411), + [anon_sym_unmanaged] = ACTIONS(4411), + [anon_sym_TILDE] = ACTIONS(4413), + [anon_sym_implicit] = ACTIONS(4411), + [anon_sym_explicit] = ACTIONS(4411), + [anon_sym_scoped] = ACTIONS(4411), + [anon_sym_var] = ACTIONS(4411), + [sym_predefined_type] = ACTIONS(4411), + [anon_sym_yield] = ACTIONS(4411), + [anon_sym_when] = ACTIONS(4411), + [anon_sym_from] = ACTIONS(4411), + [anon_sym_into] = ACTIONS(4411), + [anon_sym_join] = ACTIONS(4411), + [anon_sym_on] = ACTIONS(4411), + [anon_sym_equals] = ACTIONS(4411), + [anon_sym_let] = ACTIONS(4411), + [anon_sym_orderby] = ACTIONS(4411), + [anon_sym_ascending] = ACTIONS(4411), + [anon_sym_descending] = ACTIONS(4411), + [anon_sym_group] = ACTIONS(4411), + [anon_sym_by] = ACTIONS(4411), + [anon_sym_select] = ACTIONS(4411), + [aux_sym_preproc_if_token1] = ACTIONS(4413), + [aux_sym_preproc_if_token3] = ACTIONS(4413), + [aux_sym_preproc_else_token1] = ACTIONS(4413), + [aux_sym_preproc_elif_token1] = ACTIONS(4413), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -444145,69 +443759,69 @@ 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(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_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), - [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(4415), + [anon_sym_extern] = ACTIONS(4415), + [anon_sym_alias] = ACTIONS(4415), + [anon_sym_global] = ACTIONS(4415), + [anon_sym_using] = ACTIONS(4415), + [anon_sym_unsafe] = ACTIONS(4415), + [anon_sym_static] = ACTIONS(4415), + [anon_sym_LBRACK] = ACTIONS(4417), + [anon_sym_LPAREN] = ACTIONS(4417), + [anon_sym_event] = ACTIONS(4415), + [anon_sym_namespace] = ACTIONS(4415), + [anon_sym_class] = ACTIONS(4415), + [anon_sym_ref] = ACTIONS(4415), + [anon_sym_struct] = ACTIONS(4415), + [anon_sym_enum] = ACTIONS(4415), + [anon_sym_RBRACE] = ACTIONS(4417), + [anon_sym_interface] = ACTIONS(4415), + [anon_sym_delegate] = ACTIONS(4415), + [anon_sym_record] = ACTIONS(4415), + [anon_sym_abstract] = ACTIONS(4415), + [anon_sym_async] = ACTIONS(4415), + [anon_sym_const] = ACTIONS(4415), + [anon_sym_file] = ACTIONS(4415), + [anon_sym_fixed] = ACTIONS(4415), + [anon_sym_internal] = ACTIONS(4415), + [anon_sym_new] = ACTIONS(4415), + [anon_sym_override] = ACTIONS(4415), + [anon_sym_partial] = ACTIONS(4415), + [anon_sym_private] = ACTIONS(4415), + [anon_sym_protected] = ACTIONS(4415), + [anon_sym_public] = ACTIONS(4415), + [anon_sym_readonly] = ACTIONS(4415), + [anon_sym_required] = ACTIONS(4415), + [anon_sym_sealed] = ACTIONS(4415), + [anon_sym_virtual] = ACTIONS(4415), + [anon_sym_volatile] = ACTIONS(4415), + [anon_sym_where] = ACTIONS(4415), + [anon_sym_notnull] = ACTIONS(4415), + [anon_sym_unmanaged] = ACTIONS(4415), + [anon_sym_TILDE] = ACTIONS(4417), + [anon_sym_implicit] = ACTIONS(4415), + [anon_sym_explicit] = ACTIONS(4415), + [anon_sym_scoped] = ACTIONS(4415), + [anon_sym_var] = ACTIONS(4415), + [sym_predefined_type] = ACTIONS(4415), + [anon_sym_yield] = ACTIONS(4415), + [anon_sym_when] = ACTIONS(4415), + [anon_sym_from] = ACTIONS(4415), + [anon_sym_into] = ACTIONS(4415), + [anon_sym_join] = ACTIONS(4415), + [anon_sym_on] = ACTIONS(4415), + [anon_sym_equals] = ACTIONS(4415), + [anon_sym_let] = ACTIONS(4415), + [anon_sym_orderby] = ACTIONS(4415), + [anon_sym_ascending] = ACTIONS(4415), + [anon_sym_descending] = ACTIONS(4415), + [anon_sym_group] = ACTIONS(4415), + [anon_sym_by] = ACTIONS(4415), + [anon_sym_select] = ACTIONS(4415), + [aux_sym_preproc_if_token1] = ACTIONS(4417), + [aux_sym_preproc_if_token3] = ACTIONS(4417), + [aux_sym_preproc_else_token1] = ACTIONS(4417), + [aux_sym_preproc_elif_token1] = ACTIONS(4417), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -444220,6 +443834,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2683] = { + [sym__variable_designation] = STATE(3411), + [sym_parenthesized_variable_designation] = STATE(3352), + [sym_identifier] = STATE(3355), + [sym__reserved_identifier] = STATE(3199), [sym_preproc_region] = STATE(2683), [sym_preproc_endregion] = STATE(2683), [sym_preproc_line] = STATE(2683), @@ -444229,69 +443847,65 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2683), [sym_preproc_define] = STATE(2683), [sym_preproc_undef] = STATE(2683), - [sym__identifier_token] = ACTIONS(4362), - [anon_sym_extern] = ACTIONS(4362), - [anon_sym_alias] = ACTIONS(4362), - [anon_sym_global] = ACTIONS(4362), - [anon_sym_using] = ACTIONS(4362), - [anon_sym_unsafe] = ACTIONS(4362), - [anon_sym_static] = ACTIONS(4362), - [anon_sym_LBRACK] = ACTIONS(4364), - [anon_sym_LPAREN] = ACTIONS(4364), - [anon_sym_event] = ACTIONS(4362), - [anon_sym_namespace] = ACTIONS(4362), - [anon_sym_class] = ACTIONS(4362), - [anon_sym_ref] = ACTIONS(4362), - [anon_sym_struct] = ACTIONS(4362), - [anon_sym_enum] = ACTIONS(4362), - [anon_sym_RBRACE] = ACTIONS(4364), - [anon_sym_interface] = ACTIONS(4362), - [anon_sym_delegate] = ACTIONS(4362), - [anon_sym_record] = ACTIONS(4362), - [anon_sym_abstract] = ACTIONS(4362), - [anon_sym_async] = ACTIONS(4362), - [anon_sym_const] = ACTIONS(4362), - [anon_sym_file] = ACTIONS(4362), - [anon_sym_fixed] = ACTIONS(4362), - [anon_sym_internal] = ACTIONS(4362), - [anon_sym_new] = ACTIONS(4362), - [anon_sym_override] = ACTIONS(4362), - [anon_sym_partial] = ACTIONS(4362), - [anon_sym_private] = ACTIONS(4362), - [anon_sym_protected] = ACTIONS(4362), - [anon_sym_public] = ACTIONS(4362), - [anon_sym_readonly] = ACTIONS(4362), - [anon_sym_required] = ACTIONS(4362), - [anon_sym_sealed] = ACTIONS(4362), - [anon_sym_virtual] = ACTIONS(4362), - [anon_sym_volatile] = ACTIONS(4362), - [anon_sym_where] = ACTIONS(4362), - [anon_sym_notnull] = ACTIONS(4362), - [anon_sym_unmanaged] = ACTIONS(4362), - [anon_sym_TILDE] = ACTIONS(4364), - [anon_sym_implicit] = ACTIONS(4362), - [anon_sym_explicit] = ACTIONS(4362), - [anon_sym_scoped] = ACTIONS(4362), - [anon_sym_var] = ACTIONS(4362), - [sym_predefined_type] = ACTIONS(4362), - [anon_sym_yield] = ACTIONS(4362), - [anon_sym_when] = ACTIONS(4362), - [anon_sym_from] = ACTIONS(4362), - [anon_sym_into] = ACTIONS(4362), - [anon_sym_join] = ACTIONS(4362), - [anon_sym_on] = ACTIONS(4362), - [anon_sym_equals] = ACTIONS(4362), - [anon_sym_let] = ACTIONS(4362), - [anon_sym_orderby] = ACTIONS(4362), - [anon_sym_ascending] = ACTIONS(4362), - [anon_sym_descending] = ACTIONS(4362), - [anon_sym_group] = ACTIONS(4362), - [anon_sym_by] = ACTIONS(4362), - [anon_sym_select] = ACTIONS(4362), - [aux_sym_preproc_if_token1] = ACTIONS(4364), - [aux_sym_preproc_if_token3] = ACTIONS(4364), - [aux_sym_preproc_else_token1] = ACTIONS(4364), - [aux_sym_preproc_elif_token1] = ACTIONS(4364), + [sym__identifier_token] = ACTIONS(3855), + [anon_sym_alias] = ACTIONS(3857), + [anon_sym_global] = ACTIONS(3857), + [anon_sym_LBRACK] = ACTIONS(3939), + [anon_sym_LPAREN] = ACTIONS(3939), + [anon_sym_file] = ACTIONS(3857), + [anon_sym_LT] = ACTIONS(3941), + [anon_sym_GT] = ACTIONS(3941), + [anon_sym_where] = ACTIONS(3857), + [anon_sym_QMARK] = ACTIONS(3941), + [anon_sym_notnull] = ACTIONS(3857), + [anon_sym_unmanaged] = ACTIONS(3857), + [anon_sym_BANG] = ACTIONS(3941), + [anon_sym_PLUS_PLUS] = ACTIONS(3939), + [anon_sym_DASH_DASH] = ACTIONS(3939), + [anon_sym_PLUS] = ACTIONS(3941), + [anon_sym_DASH] = ACTIONS(3941), + [anon_sym_STAR] = ACTIONS(3939), + [anon_sym_SLASH] = ACTIONS(3941), + [anon_sym_PERCENT] = ACTIONS(3939), + [anon_sym_CARET] = ACTIONS(3939), + [anon_sym_PIPE] = ACTIONS(3941), + [anon_sym_AMP] = ACTIONS(3941), + [anon_sym_LT_LT] = ACTIONS(3939), + [anon_sym_GT_GT] = ACTIONS(3941), + [anon_sym_GT_GT_GT] = ACTIONS(3939), + [anon_sym_EQ_EQ] = ACTIONS(3939), + [anon_sym_BANG_EQ] = ACTIONS(3939), + [anon_sym_GT_EQ] = ACTIONS(3939), + [anon_sym_LT_EQ] = ACTIONS(3939), + [anon_sym_DOT] = ACTIONS(3941), + [anon_sym_scoped] = ACTIONS(3857), + [anon_sym_var] = ACTIONS(3857), + [anon_sym_yield] = ACTIONS(3857), + [anon_sym_switch] = ACTIONS(3941), + [anon_sym_when] = ACTIONS(3857), + [sym_discard] = ACTIONS(3877), + [anon_sym_DOT_DOT] = ACTIONS(3939), + [anon_sym_and] = ACTIONS(3941), + [anon_sym_or] = ACTIONS(3941), + [anon_sym_AMP_AMP] = ACTIONS(3939), + [anon_sym_PIPE_PIPE] = ACTIONS(3939), + [anon_sym_QMARK_QMARK] = ACTIONS(3939), + [anon_sym_from] = ACTIONS(3857), + [anon_sym_into] = ACTIONS(3857), + [anon_sym_join] = ACTIONS(3857), + [anon_sym_on] = ACTIONS(3857), + [anon_sym_equals] = ACTIONS(3857), + [anon_sym_let] = ACTIONS(3857), + [anon_sym_orderby] = ACTIONS(3857), + [anon_sym_ascending] = ACTIONS(3857), + [anon_sym_descending] = ACTIONS(3857), + [anon_sym_group] = ACTIONS(3857), + [anon_sym_by] = ACTIONS(3941), + [anon_sym_select] = ACTIONS(3857), + [anon_sym_as] = ACTIONS(3941), + [anon_sym_is] = ACTIONS(3941), + [anon_sym_DASH_GT] = ACTIONS(3939), + [anon_sym_with] = ACTIONS(3941), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -444304,6 +443918,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2684] = { + [sym__variable_designation] = STATE(3461), + [sym_parenthesized_variable_designation] = STATE(3352), + [sym_identifier] = STATE(3355), + [sym__reserved_identifier] = STATE(3199), [sym_preproc_region] = STATE(2684), [sym_preproc_endregion] = STATE(2684), [sym_preproc_line] = STATE(2684), @@ -444313,69 +443931,65 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2684), [sym_preproc_define] = STATE(2684), [sym_preproc_undef] = STATE(2684), - [sym__identifier_token] = ACTIONS(4366), - [anon_sym_extern] = ACTIONS(4366), - [anon_sym_alias] = ACTIONS(4366), - [anon_sym_global] = ACTIONS(4366), - [anon_sym_using] = ACTIONS(4366), - [anon_sym_unsafe] = ACTIONS(4366), - [anon_sym_static] = ACTIONS(4366), - [anon_sym_LBRACK] = ACTIONS(4368), - [anon_sym_LPAREN] = ACTIONS(4368), - [anon_sym_event] = ACTIONS(4366), - [anon_sym_namespace] = ACTIONS(4366), - [anon_sym_class] = ACTIONS(4366), - [anon_sym_ref] = ACTIONS(4366), - [anon_sym_struct] = ACTIONS(4366), - [anon_sym_enum] = ACTIONS(4366), - [anon_sym_RBRACE] = ACTIONS(4368), - [anon_sym_interface] = ACTIONS(4366), - [anon_sym_delegate] = ACTIONS(4366), - [anon_sym_record] = ACTIONS(4366), - [anon_sym_abstract] = ACTIONS(4366), - [anon_sym_async] = ACTIONS(4366), - [anon_sym_const] = ACTIONS(4366), - [anon_sym_file] = ACTIONS(4366), - [anon_sym_fixed] = ACTIONS(4366), - [anon_sym_internal] = ACTIONS(4366), - [anon_sym_new] = ACTIONS(4366), - [anon_sym_override] = ACTIONS(4366), - [anon_sym_partial] = ACTIONS(4366), - [anon_sym_private] = ACTIONS(4366), - [anon_sym_protected] = ACTIONS(4366), - [anon_sym_public] = ACTIONS(4366), - [anon_sym_readonly] = ACTIONS(4366), - [anon_sym_required] = ACTIONS(4366), - [anon_sym_sealed] = ACTIONS(4366), - [anon_sym_virtual] = ACTIONS(4366), - [anon_sym_volatile] = ACTIONS(4366), - [anon_sym_where] = ACTIONS(4366), - [anon_sym_notnull] = ACTIONS(4366), - [anon_sym_unmanaged] = ACTIONS(4366), - [anon_sym_TILDE] = ACTIONS(4368), - [anon_sym_implicit] = ACTIONS(4366), - [anon_sym_explicit] = ACTIONS(4366), - [anon_sym_scoped] = ACTIONS(4366), - [anon_sym_var] = ACTIONS(4366), - [sym_predefined_type] = ACTIONS(4366), - [anon_sym_yield] = ACTIONS(4366), - [anon_sym_when] = ACTIONS(4366), - [anon_sym_from] = ACTIONS(4366), - [anon_sym_into] = ACTIONS(4366), - [anon_sym_join] = ACTIONS(4366), - [anon_sym_on] = ACTIONS(4366), - [anon_sym_equals] = ACTIONS(4366), - [anon_sym_let] = ACTIONS(4366), - [anon_sym_orderby] = ACTIONS(4366), - [anon_sym_ascending] = ACTIONS(4366), - [anon_sym_descending] = ACTIONS(4366), - [anon_sym_group] = ACTIONS(4366), - [anon_sym_by] = ACTIONS(4366), - [anon_sym_select] = ACTIONS(4366), - [aux_sym_preproc_if_token1] = ACTIONS(4368), - [aux_sym_preproc_if_token3] = ACTIONS(4368), - [aux_sym_preproc_else_token1] = ACTIONS(4368), - [aux_sym_preproc_elif_token1] = ACTIONS(4368), + [sym__identifier_token] = ACTIONS(3855), + [anon_sym_alias] = ACTIONS(3857), + [anon_sym_global] = ACTIONS(3857), + [anon_sym_LBRACK] = ACTIONS(3947), + [anon_sym_LPAREN] = ACTIONS(3947), + [anon_sym_file] = ACTIONS(3857), + [anon_sym_LT] = ACTIONS(3949), + [anon_sym_GT] = ACTIONS(3949), + [anon_sym_where] = ACTIONS(3857), + [anon_sym_QMARK] = ACTIONS(3949), + [anon_sym_notnull] = ACTIONS(3857), + [anon_sym_unmanaged] = ACTIONS(3857), + [anon_sym_BANG] = ACTIONS(3949), + [anon_sym_PLUS_PLUS] = ACTIONS(3947), + [anon_sym_DASH_DASH] = ACTIONS(3947), + [anon_sym_PLUS] = ACTIONS(3949), + [anon_sym_DASH] = ACTIONS(3949), + [anon_sym_STAR] = ACTIONS(3947), + [anon_sym_SLASH] = ACTIONS(3949), + [anon_sym_PERCENT] = ACTIONS(3947), + [anon_sym_CARET] = ACTIONS(3947), + [anon_sym_PIPE] = ACTIONS(3949), + [anon_sym_AMP] = ACTIONS(3949), + [anon_sym_LT_LT] = ACTIONS(3947), + [anon_sym_GT_GT] = ACTIONS(3949), + [anon_sym_GT_GT_GT] = ACTIONS(3947), + [anon_sym_EQ_EQ] = ACTIONS(3947), + [anon_sym_BANG_EQ] = ACTIONS(3947), + [anon_sym_GT_EQ] = ACTIONS(3947), + [anon_sym_LT_EQ] = ACTIONS(3947), + [anon_sym_DOT] = ACTIONS(3949), + [anon_sym_scoped] = ACTIONS(3857), + [anon_sym_var] = ACTIONS(3857), + [anon_sym_yield] = ACTIONS(3857), + [anon_sym_switch] = ACTIONS(3949), + [anon_sym_when] = ACTIONS(3857), + [sym_discard] = ACTIONS(3877), + [anon_sym_DOT_DOT] = ACTIONS(3947), + [anon_sym_and] = ACTIONS(3949), + [anon_sym_or] = ACTIONS(3949), + [anon_sym_AMP_AMP] = ACTIONS(3947), + [anon_sym_PIPE_PIPE] = ACTIONS(3947), + [anon_sym_QMARK_QMARK] = ACTIONS(3947), + [anon_sym_from] = ACTIONS(3857), + [anon_sym_into] = ACTIONS(3857), + [anon_sym_join] = ACTIONS(3857), + [anon_sym_on] = ACTIONS(3857), + [anon_sym_equals] = ACTIONS(3857), + [anon_sym_let] = ACTIONS(3857), + [anon_sym_orderby] = ACTIONS(3857), + [anon_sym_ascending] = ACTIONS(3857), + [anon_sym_descending] = ACTIONS(3857), + [anon_sym_group] = ACTIONS(3857), + [anon_sym_by] = ACTIONS(3949), + [anon_sym_select] = ACTIONS(3857), + [anon_sym_as] = ACTIONS(3949), + [anon_sym_is] = ACTIONS(3949), + [anon_sym_DASH_GT] = ACTIONS(3947), + [anon_sym_with] = ACTIONS(3949), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -444397,69 +444011,69 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2685), [sym_preproc_define] = STATE(2685), [sym_preproc_undef] = STATE(2685), - [sym__identifier_token] = ACTIONS(4370), - [anon_sym_extern] = ACTIONS(4370), - [anon_sym_alias] = ACTIONS(4370), - [anon_sym_global] = ACTIONS(4370), - [anon_sym_using] = ACTIONS(4370), - [anon_sym_unsafe] = ACTIONS(4370), - [anon_sym_static] = ACTIONS(4370), - [anon_sym_LBRACK] = ACTIONS(4372), - [anon_sym_LPAREN] = ACTIONS(4372), - [anon_sym_event] = ACTIONS(4370), - [anon_sym_namespace] = ACTIONS(4370), - [anon_sym_class] = ACTIONS(4370), - [anon_sym_ref] = ACTIONS(4370), - [anon_sym_struct] = ACTIONS(4370), - [anon_sym_enum] = ACTIONS(4370), - [anon_sym_RBRACE] = ACTIONS(4372), - [anon_sym_interface] = ACTIONS(4370), - [anon_sym_delegate] = ACTIONS(4370), - [anon_sym_record] = ACTIONS(4370), - [anon_sym_abstract] = ACTIONS(4370), - [anon_sym_async] = ACTIONS(4370), - [anon_sym_const] = ACTIONS(4370), - [anon_sym_file] = ACTIONS(4370), - [anon_sym_fixed] = ACTIONS(4370), - [anon_sym_internal] = ACTIONS(4370), - [anon_sym_new] = ACTIONS(4370), - [anon_sym_override] = ACTIONS(4370), - [anon_sym_partial] = ACTIONS(4370), - [anon_sym_private] = ACTIONS(4370), - [anon_sym_protected] = ACTIONS(4370), - [anon_sym_public] = ACTIONS(4370), - [anon_sym_readonly] = ACTIONS(4370), - [anon_sym_required] = ACTIONS(4370), - [anon_sym_sealed] = ACTIONS(4370), - [anon_sym_virtual] = ACTIONS(4370), - [anon_sym_volatile] = ACTIONS(4370), - [anon_sym_where] = ACTIONS(4370), - [anon_sym_notnull] = ACTIONS(4370), - [anon_sym_unmanaged] = ACTIONS(4370), - [anon_sym_TILDE] = ACTIONS(4372), - [anon_sym_implicit] = ACTIONS(4370), - [anon_sym_explicit] = ACTIONS(4370), - [anon_sym_scoped] = ACTIONS(4370), - [anon_sym_var] = ACTIONS(4370), - [sym_predefined_type] = ACTIONS(4370), - [anon_sym_yield] = ACTIONS(4370), - [anon_sym_when] = ACTIONS(4370), - [anon_sym_from] = ACTIONS(4370), - [anon_sym_into] = ACTIONS(4370), - [anon_sym_join] = ACTIONS(4370), - [anon_sym_on] = ACTIONS(4370), - [anon_sym_equals] = ACTIONS(4370), - [anon_sym_let] = ACTIONS(4370), - [anon_sym_orderby] = ACTIONS(4370), - [anon_sym_ascending] = ACTIONS(4370), - [anon_sym_descending] = ACTIONS(4370), - [anon_sym_group] = ACTIONS(4370), - [anon_sym_by] = ACTIONS(4370), - [anon_sym_select] = ACTIONS(4370), - [aux_sym_preproc_if_token1] = ACTIONS(4372), - [aux_sym_preproc_if_token3] = ACTIONS(4372), - [aux_sym_preproc_else_token1] = ACTIONS(4372), - [aux_sym_preproc_elif_token1] = ACTIONS(4372), + [sym__identifier_token] = ACTIONS(4419), + [anon_sym_extern] = ACTIONS(4419), + [anon_sym_alias] = ACTIONS(4419), + [anon_sym_global] = ACTIONS(4419), + [anon_sym_using] = ACTIONS(4419), + [anon_sym_unsafe] = ACTIONS(4419), + [anon_sym_static] = ACTIONS(4419), + [anon_sym_LBRACK] = ACTIONS(4421), + [anon_sym_LPAREN] = ACTIONS(4421), + [anon_sym_event] = ACTIONS(4419), + [anon_sym_namespace] = ACTIONS(4419), + [anon_sym_class] = ACTIONS(4419), + [anon_sym_ref] = ACTIONS(4419), + [anon_sym_struct] = ACTIONS(4419), + [anon_sym_enum] = ACTIONS(4419), + [anon_sym_RBRACE] = ACTIONS(4421), + [anon_sym_interface] = ACTIONS(4419), + [anon_sym_delegate] = ACTIONS(4419), + [anon_sym_record] = ACTIONS(4419), + [anon_sym_abstract] = ACTIONS(4419), + [anon_sym_async] = ACTIONS(4419), + [anon_sym_const] = ACTIONS(4419), + [anon_sym_file] = ACTIONS(4419), + [anon_sym_fixed] = ACTIONS(4419), + [anon_sym_internal] = ACTIONS(4419), + [anon_sym_new] = ACTIONS(4419), + [anon_sym_override] = ACTIONS(4419), + [anon_sym_partial] = ACTIONS(4419), + [anon_sym_private] = ACTIONS(4419), + [anon_sym_protected] = ACTIONS(4419), + [anon_sym_public] = ACTIONS(4419), + [anon_sym_readonly] = ACTIONS(4419), + [anon_sym_required] = ACTIONS(4419), + [anon_sym_sealed] = ACTIONS(4419), + [anon_sym_virtual] = ACTIONS(4419), + [anon_sym_volatile] = ACTIONS(4419), + [anon_sym_where] = ACTIONS(4419), + [anon_sym_notnull] = ACTIONS(4419), + [anon_sym_unmanaged] = ACTIONS(4419), + [anon_sym_TILDE] = ACTIONS(4421), + [anon_sym_implicit] = ACTIONS(4419), + [anon_sym_explicit] = ACTIONS(4419), + [anon_sym_scoped] = ACTIONS(4419), + [anon_sym_var] = ACTIONS(4419), + [sym_predefined_type] = ACTIONS(4419), + [anon_sym_yield] = ACTIONS(4419), + [anon_sym_when] = ACTIONS(4419), + [anon_sym_from] = ACTIONS(4419), + [anon_sym_into] = ACTIONS(4419), + [anon_sym_join] = ACTIONS(4419), + [anon_sym_on] = ACTIONS(4419), + [anon_sym_equals] = ACTIONS(4419), + [anon_sym_let] = ACTIONS(4419), + [anon_sym_orderby] = ACTIONS(4419), + [anon_sym_ascending] = ACTIONS(4419), + [anon_sym_descending] = ACTIONS(4419), + [anon_sym_group] = ACTIONS(4419), + [anon_sym_by] = ACTIONS(4419), + [anon_sym_select] = ACTIONS(4419), + [aux_sym_preproc_if_token1] = ACTIONS(4421), + [aux_sym_preproc_if_token3] = ACTIONS(4421), + [aux_sym_preproc_else_token1] = ACTIONS(4421), + [aux_sym_preproc_elif_token1] = ACTIONS(4421), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -444472,10 +444086,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2686] = { - [sym__variable_designation] = STATE(4143), - [sym_parenthesized_variable_designation] = STATE(4173), - [sym_identifier] = STATE(4177), - [sym__reserved_identifier] = STATE(2945), [sym_preproc_region] = STATE(2686), [sym_preproc_endregion] = STATE(2686), [sym_preproc_line] = STATE(2686), @@ -444485,65 +444095,69 @@ 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(3887), - [anon_sym_alias] = ACTIONS(3889), - [anon_sym_global] = ACTIONS(3889), - [anon_sym_LBRACK] = ACTIONS(3913), - [anon_sym_LPAREN] = ACTIONS(3913), - [anon_sym_file] = ACTIONS(3889), - [anon_sym_LT] = ACTIONS(3915), - [anon_sym_GT] = ACTIONS(3915), - [anon_sym_where] = ACTIONS(3915), - [anon_sym_QMARK] = ACTIONS(3915), - [anon_sym_notnull] = ACTIONS(3889), - [anon_sym_unmanaged] = ACTIONS(3889), - [anon_sym_BANG] = ACTIONS(3915), - [anon_sym_PLUS_PLUS] = ACTIONS(3913), - [anon_sym_DASH_DASH] = ACTIONS(3913), - [anon_sym_PLUS] = ACTIONS(3915), - [anon_sym_DASH] = ACTIONS(3915), - [anon_sym_STAR] = ACTIONS(3913), - [anon_sym_SLASH] = ACTIONS(3915), - [anon_sym_PERCENT] = ACTIONS(3913), - [anon_sym_CARET] = ACTIONS(3913), - [anon_sym_PIPE] = ACTIONS(3915), - [anon_sym_AMP] = ACTIONS(3915), - [anon_sym_LT_LT] = ACTIONS(3913), - [anon_sym_GT_GT] = ACTIONS(3915), - [anon_sym_GT_GT_GT] = ACTIONS(3913), - [anon_sym_EQ_EQ] = ACTIONS(3913), - [anon_sym_BANG_EQ] = ACTIONS(3913), - [anon_sym_GT_EQ] = ACTIONS(3913), - [anon_sym_LT_EQ] = ACTIONS(3913), - [anon_sym_DOT] = ACTIONS(3915), - [anon_sym_scoped] = ACTIONS(3889), - [anon_sym_var] = ACTIONS(3889), - [anon_sym_yield] = ACTIONS(3889), - [anon_sym_switch] = ACTIONS(3915), - [anon_sym_when] = ACTIONS(3889), - [sym_discard] = ACTIONS(4209), - [anon_sym_DOT_DOT] = ACTIONS(3913), - [anon_sym_and] = ACTIONS(3915), - [anon_sym_or] = ACTIONS(3915), - [anon_sym_AMP_AMP] = ACTIONS(3913), - [anon_sym_PIPE_PIPE] = ACTIONS(3913), - [anon_sym_QMARK_QMARK] = ACTIONS(3913), - [anon_sym_from] = ACTIONS(3915), - [anon_sym_into] = ACTIONS(3889), - [anon_sym_join] = ACTIONS(3915), - [anon_sym_on] = ACTIONS(3889), - [anon_sym_equals] = ACTIONS(3889), - [anon_sym_let] = ACTIONS(3915), - [anon_sym_orderby] = ACTIONS(3915), - [anon_sym_ascending] = ACTIONS(3889), - [anon_sym_descending] = ACTIONS(3889), - [anon_sym_group] = ACTIONS(3915), - [anon_sym_by] = ACTIONS(3889), - [anon_sym_select] = ACTIONS(3915), - [anon_sym_as] = ACTIONS(3915), - [anon_sym_is] = ACTIONS(3915), - [anon_sym_DASH_GT] = ACTIONS(3913), - [anon_sym_with] = ACTIONS(3915), + [anon_sym_SEMI] = ACTIONS(4241), + [anon_sym_EQ] = ACTIONS(3696), + [anon_sym_LBRACK] = ACTIONS(4243), + [anon_sym_COLON] = ACTIONS(4241), + [anon_sym_COMMA] = ACTIONS(4241), + [anon_sym_RBRACK] = ACTIONS(4241), + [anon_sym_LPAREN] = ACTIONS(4243), + [anon_sym_RPAREN] = ACTIONS(4241), + [anon_sym_RBRACE] = ACTIONS(4241), + [anon_sym_LT] = ACTIONS(4246), + [anon_sym_GT] = ACTIONS(4246), + [anon_sym_in] = ACTIONS(4241), + [anon_sym_QMARK] = ACTIONS(4246), + [anon_sym_BANG] = ACTIONS(4246), + [anon_sym_PLUS_PLUS] = ACTIONS(4243), + [anon_sym_DASH_DASH] = ACTIONS(4243), + [anon_sym_PLUS] = ACTIONS(4246), + [anon_sym_DASH] = ACTIONS(4246), + [anon_sym_STAR] = ACTIONS(4246), + [anon_sym_SLASH] = ACTIONS(4246), + [anon_sym_PERCENT] = ACTIONS(4246), + [anon_sym_CARET] = ACTIONS(4246), + [anon_sym_PIPE] = ACTIONS(4246), + [anon_sym_AMP] = ACTIONS(4246), + [anon_sym_LT_LT] = ACTIONS(4246), + [anon_sym_GT_GT] = ACTIONS(4246), + [anon_sym_GT_GT_GT] = ACTIONS(4246), + [anon_sym_EQ_EQ] = ACTIONS(4243), + [anon_sym_BANG_EQ] = ACTIONS(4243), + [anon_sym_GT_EQ] = ACTIONS(4243), + [anon_sym_LT_EQ] = ACTIONS(4243), + [anon_sym_DOT] = ACTIONS(4246), + [anon_sym_EQ_GT] = ACTIONS(4241), + [anon_sym_switch] = ACTIONS(4243), + [anon_sym_when] = ACTIONS(4241), + [anon_sym_DOT_DOT] = ACTIONS(4243), + [anon_sym_and] = ACTIONS(4241), + [anon_sym_or] = ACTIONS(4241), + [anon_sym_PLUS_EQ] = ACTIONS(3711), + [anon_sym_DASH_EQ] = ACTIONS(3711), + [anon_sym_STAR_EQ] = ACTIONS(3711), + [anon_sym_SLASH_EQ] = ACTIONS(3711), + [anon_sym_PERCENT_EQ] = ACTIONS(3711), + [anon_sym_AMP_EQ] = ACTIONS(3711), + [anon_sym_CARET_EQ] = ACTIONS(3711), + [anon_sym_PIPE_EQ] = ACTIONS(3711), + [anon_sym_LT_LT_EQ] = ACTIONS(3711), + [anon_sym_GT_GT_EQ] = ACTIONS(3711), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3711), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3711), + [anon_sym_AMP_AMP] = ACTIONS(4243), + [anon_sym_PIPE_PIPE] = ACTIONS(4243), + [anon_sym_QMARK_QMARK] = ACTIONS(4246), + [anon_sym_on] = ACTIONS(4241), + [anon_sym_equals] = ACTIONS(4241), + [anon_sym_by] = ACTIONS(4241), + [anon_sym_as] = ACTIONS(4243), + [anon_sym_is] = ACTIONS(4243), + [anon_sym_DASH_GT] = ACTIONS(4243), + [anon_sym_with] = ACTIONS(4243), + [aux_sym_preproc_if_token3] = ACTIONS(4241), + [aux_sym_preproc_else_token1] = ACTIONS(4241), + [aux_sym_preproc_elif_token1] = ACTIONS(4241), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -444565,79 +444179,79 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2687), [sym_preproc_define] = STATE(2687), [sym_preproc_undef] = STATE(2687), - [anon_sym_SEMI] = ACTIONS(4148), - [anon_sym_EQ] = ACTIONS(4136), - [anon_sym_LBRACK] = ACTIONS(4148), - [anon_sym_COLON] = ACTIONS(4134), - [anon_sym_COMMA] = ACTIONS(4148), - [anon_sym_RBRACK] = ACTIONS(4148), - [anon_sym_LPAREN] = ACTIONS(4148), - [anon_sym_RPAREN] = ACTIONS(4148), - [anon_sym_RBRACE] = ACTIONS(4148), - [anon_sym_LT] = ACTIONS(4150), - [anon_sym_GT] = ACTIONS(4150), - [anon_sym_in] = ACTIONS(4148), - [anon_sym_QMARK] = ACTIONS(4150), - [anon_sym_BANG] = ACTIONS(4150), - [anon_sym_PLUS_PLUS] = ACTIONS(4148), - [anon_sym_DASH_DASH] = ACTIONS(4148), - [anon_sym_PLUS] = ACTIONS(4150), - [anon_sym_DASH] = ACTIONS(4150), - [anon_sym_STAR] = ACTIONS(4150), - [anon_sym_SLASH] = ACTIONS(4150), - [anon_sym_PERCENT] = ACTIONS(4150), - [anon_sym_CARET] = ACTIONS(4150), - [anon_sym_PIPE] = ACTIONS(4150), - [anon_sym_AMP] = ACTIONS(4150), - [anon_sym_LT_LT] = ACTIONS(4150), - [anon_sym_GT_GT] = ACTIONS(4150), - [anon_sym_GT_GT_GT] = ACTIONS(4150), - [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(4150), - [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_PLUS_EQ] = ACTIONS(4134), - [anon_sym_DASH_EQ] = ACTIONS(4134), - [anon_sym_STAR_EQ] = ACTIONS(4134), - [anon_sym_SLASH_EQ] = ACTIONS(4134), - [anon_sym_PERCENT_EQ] = ACTIONS(4134), - [anon_sym_AMP_EQ] = ACTIONS(4134), - [anon_sym_CARET_EQ] = ACTIONS(4134), - [anon_sym_PIPE_EQ] = ACTIONS(4134), - [anon_sym_LT_LT_EQ] = ACTIONS(4134), - [anon_sym_GT_GT_EQ] = ACTIONS(4134), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(4134), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(4134), - [anon_sym_AMP_AMP] = ACTIONS(4148), - [anon_sym_PIPE_PIPE] = ACTIONS(4148), - [anon_sym_QMARK_QMARK] = ACTIONS(4150), - [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), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_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(4074), + [anon_sym_alias] = ACTIONS(4074), + [anon_sym_global] = ACTIONS(4074), + [anon_sym_LBRACK] = ACTIONS(4076), + [anon_sym_COLON] = ACTIONS(4076), + [anon_sym_COMMA] = ACTIONS(4076), + [anon_sym_LPAREN] = ACTIONS(4076), + [anon_sym_LBRACE] = ACTIONS(4076), + [anon_sym_file] = ACTIONS(4074), + [anon_sym_LT] = ACTIONS(4074), + [anon_sym_GT] = ACTIONS(4074), + [anon_sym_where] = ACTIONS(4074), + [anon_sym_QMARK] = ACTIONS(4074), + [anon_sym_notnull] = ACTIONS(4074), + [anon_sym_unmanaged] = ACTIONS(4074), + [anon_sym_BANG] = ACTIONS(4074), + [anon_sym_PLUS_PLUS] = ACTIONS(4076), + [anon_sym_DASH_DASH] = ACTIONS(4076), + [anon_sym_PLUS] = ACTIONS(4074), + [anon_sym_DASH] = ACTIONS(4074), + [anon_sym_STAR] = ACTIONS(4076), + [anon_sym_SLASH] = ACTIONS(4074), + [anon_sym_PERCENT] = ACTIONS(4076), + [anon_sym_CARET] = ACTIONS(4076), + [anon_sym_PIPE] = ACTIONS(4074), + [anon_sym_AMP] = ACTIONS(4074), + [anon_sym_LT_LT] = ACTIONS(4076), + [anon_sym_GT_GT] = ACTIONS(4074), + [anon_sym_GT_GT_GT] = ACTIONS(4076), + [anon_sym_EQ_EQ] = ACTIONS(4076), + [anon_sym_BANG_EQ] = ACTIONS(4076), + [anon_sym_GT_EQ] = ACTIONS(4076), + [anon_sym_LT_EQ] = ACTIONS(4076), + [anon_sym_DOT] = ACTIONS(4074), + [anon_sym_scoped] = ACTIONS(4074), + [anon_sym_var] = ACTIONS(4074), + [anon_sym_yield] = ACTIONS(4074), + [anon_sym_switch] = ACTIONS(4074), + [anon_sym_when] = ACTIONS(4074), + [sym_discard] = ACTIONS(4074), + [anon_sym_DOT_DOT] = ACTIONS(4076), + [anon_sym_and] = ACTIONS(4074), + [anon_sym_or] = ACTIONS(4074), + [anon_sym_AMP_AMP] = ACTIONS(4076), + [anon_sym_PIPE_PIPE] = ACTIONS(4076), + [anon_sym_QMARK_QMARK] = ACTIONS(4076), + [anon_sym_from] = ACTIONS(4074), + [anon_sym_into] = ACTIONS(4074), + [anon_sym_join] = ACTIONS(4074), + [anon_sym_on] = ACTIONS(4074), + [anon_sym_equals] = ACTIONS(4074), + [anon_sym_let] = ACTIONS(4074), + [anon_sym_orderby] = ACTIONS(4074), + [anon_sym_ascending] = ACTIONS(4074), + [anon_sym_descending] = ACTIONS(4074), + [anon_sym_group] = ACTIONS(4074), + [anon_sym_by] = ACTIONS(4074), + [anon_sym_select] = ACTIONS(4074), + [anon_sym_as] = ACTIONS(4074), + [anon_sym_is] = ACTIONS(4074), + [anon_sym_DASH_GT] = ACTIONS(4076), + [anon_sym_with] = ACTIONS(4074), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_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(4076), }, [2688] = { [sym_preproc_region] = STATE(2688), @@ -444649,69 +444263,69 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), - [anon_sym_global] = ACTIONS(4374), - [anon_sym_using] = ACTIONS(4374), - [anon_sym_unsafe] = ACTIONS(4374), - [anon_sym_static] = ACTIONS(4374), - [anon_sym_LBRACK] = ACTIONS(4376), - [anon_sym_LPAREN] = ACTIONS(4376), - [anon_sym_event] = ACTIONS(4374), - [anon_sym_namespace] = ACTIONS(4374), - [anon_sym_class] = ACTIONS(4374), - [anon_sym_ref] = ACTIONS(4374), - [anon_sym_struct] = ACTIONS(4374), - [anon_sym_enum] = ACTIONS(4374), - [anon_sym_RBRACE] = ACTIONS(4376), - [anon_sym_interface] = ACTIONS(4374), - [anon_sym_delegate] = ACTIONS(4374), - [anon_sym_record] = ACTIONS(4374), - [anon_sym_abstract] = ACTIONS(4374), - [anon_sym_async] = ACTIONS(4374), - [anon_sym_const] = ACTIONS(4374), - [anon_sym_file] = ACTIONS(4374), - [anon_sym_fixed] = ACTIONS(4374), - [anon_sym_internal] = ACTIONS(4374), - [anon_sym_new] = ACTIONS(4374), - [anon_sym_override] = ACTIONS(4374), - [anon_sym_partial] = ACTIONS(4374), - [anon_sym_private] = ACTIONS(4374), - [anon_sym_protected] = ACTIONS(4374), - [anon_sym_public] = ACTIONS(4374), - [anon_sym_readonly] = ACTIONS(4374), - [anon_sym_required] = ACTIONS(4374), - [anon_sym_sealed] = ACTIONS(4374), - [anon_sym_virtual] = ACTIONS(4374), - [anon_sym_volatile] = ACTIONS(4374), - [anon_sym_where] = ACTIONS(4374), - [anon_sym_notnull] = ACTIONS(4374), - [anon_sym_unmanaged] = ACTIONS(4374), - [anon_sym_TILDE] = ACTIONS(4376), - [anon_sym_implicit] = ACTIONS(4374), - [anon_sym_explicit] = ACTIONS(4374), - [anon_sym_scoped] = ACTIONS(4374), - [anon_sym_var] = ACTIONS(4374), - [sym_predefined_type] = ACTIONS(4374), - [anon_sym_yield] = ACTIONS(4374), - [anon_sym_when] = ACTIONS(4374), - [anon_sym_from] = ACTIONS(4374), - [anon_sym_into] = ACTIONS(4374), - [anon_sym_join] = ACTIONS(4374), - [anon_sym_on] = ACTIONS(4374), - [anon_sym_equals] = ACTIONS(4374), - [anon_sym_let] = ACTIONS(4374), - [anon_sym_orderby] = ACTIONS(4374), - [anon_sym_ascending] = ACTIONS(4374), - [anon_sym_descending] = ACTIONS(4374), - [anon_sym_group] = ACTIONS(4374), - [anon_sym_by] = ACTIONS(4374), - [anon_sym_select] = ACTIONS(4374), - [aux_sym_preproc_if_token1] = ACTIONS(4376), - [aux_sym_preproc_if_token3] = ACTIONS(4376), - [aux_sym_preproc_else_token1] = ACTIONS(4376), - [aux_sym_preproc_elif_token1] = ACTIONS(4376), + [sym__identifier_token] = ACTIONS(4423), + [anon_sym_extern] = ACTIONS(4423), + [anon_sym_alias] = ACTIONS(4423), + [anon_sym_global] = ACTIONS(4423), + [anon_sym_using] = ACTIONS(4423), + [anon_sym_unsafe] = ACTIONS(4423), + [anon_sym_static] = ACTIONS(4423), + [anon_sym_LBRACK] = ACTIONS(4425), + [anon_sym_LPAREN] = ACTIONS(4425), + [anon_sym_event] = ACTIONS(4423), + [anon_sym_namespace] = ACTIONS(4423), + [anon_sym_class] = ACTIONS(4423), + [anon_sym_ref] = ACTIONS(4423), + [anon_sym_struct] = ACTIONS(4423), + [anon_sym_enum] = ACTIONS(4423), + [anon_sym_RBRACE] = ACTIONS(4425), + [anon_sym_interface] = ACTIONS(4423), + [anon_sym_delegate] = ACTIONS(4423), + [anon_sym_record] = ACTIONS(4423), + [anon_sym_abstract] = ACTIONS(4423), + [anon_sym_async] = ACTIONS(4423), + [anon_sym_const] = ACTIONS(4423), + [anon_sym_file] = ACTIONS(4423), + [anon_sym_fixed] = ACTIONS(4423), + [anon_sym_internal] = ACTIONS(4423), + [anon_sym_new] = ACTIONS(4423), + [anon_sym_override] = ACTIONS(4423), + [anon_sym_partial] = ACTIONS(4423), + [anon_sym_private] = ACTIONS(4423), + [anon_sym_protected] = ACTIONS(4423), + [anon_sym_public] = ACTIONS(4423), + [anon_sym_readonly] = ACTIONS(4423), + [anon_sym_required] = ACTIONS(4423), + [anon_sym_sealed] = ACTIONS(4423), + [anon_sym_virtual] = ACTIONS(4423), + [anon_sym_volatile] = ACTIONS(4423), + [anon_sym_where] = ACTIONS(4423), + [anon_sym_notnull] = ACTIONS(4423), + [anon_sym_unmanaged] = ACTIONS(4423), + [anon_sym_TILDE] = ACTIONS(4425), + [anon_sym_implicit] = ACTIONS(4423), + [anon_sym_explicit] = ACTIONS(4423), + [anon_sym_scoped] = ACTIONS(4423), + [anon_sym_var] = ACTIONS(4423), + [sym_predefined_type] = ACTIONS(4423), + [anon_sym_yield] = ACTIONS(4423), + [anon_sym_when] = ACTIONS(4423), + [anon_sym_from] = ACTIONS(4423), + [anon_sym_into] = ACTIONS(4423), + [anon_sym_join] = ACTIONS(4423), + [anon_sym_on] = ACTIONS(4423), + [anon_sym_equals] = ACTIONS(4423), + [anon_sym_let] = ACTIONS(4423), + [anon_sym_orderby] = ACTIONS(4423), + [anon_sym_ascending] = ACTIONS(4423), + [anon_sym_descending] = ACTIONS(4423), + [anon_sym_group] = ACTIONS(4423), + [anon_sym_by] = ACTIONS(4423), + [anon_sym_select] = ACTIONS(4423), + [aux_sym_preproc_if_token1] = ACTIONS(4425), + [aux_sym_preproc_if_token3] = ACTIONS(4425), + [aux_sym_preproc_else_token1] = ACTIONS(4425), + [aux_sym_preproc_elif_token1] = ACTIONS(4425), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -444733,69 +444347,69 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), - [anon_sym_global] = ACTIONS(4378), - [anon_sym_using] = ACTIONS(4378), - [anon_sym_unsafe] = ACTIONS(4378), - [anon_sym_static] = ACTIONS(4378), - [anon_sym_LBRACK] = ACTIONS(4380), - [anon_sym_LPAREN] = ACTIONS(4380), - [anon_sym_event] = ACTIONS(4378), - [anon_sym_namespace] = ACTIONS(4378), - [anon_sym_class] = ACTIONS(4378), - [anon_sym_ref] = ACTIONS(4378), - [anon_sym_struct] = ACTIONS(4378), - [anon_sym_enum] = ACTIONS(4378), - [anon_sym_RBRACE] = ACTIONS(4380), - [anon_sym_interface] = ACTIONS(4378), - [anon_sym_delegate] = ACTIONS(4378), - [anon_sym_record] = ACTIONS(4378), - [anon_sym_abstract] = ACTIONS(4378), - [anon_sym_async] = ACTIONS(4378), - [anon_sym_const] = ACTIONS(4378), - [anon_sym_file] = ACTIONS(4378), - [anon_sym_fixed] = ACTIONS(4378), - [anon_sym_internal] = ACTIONS(4378), - [anon_sym_new] = ACTIONS(4378), - [anon_sym_override] = ACTIONS(4378), - [anon_sym_partial] = ACTIONS(4378), - [anon_sym_private] = ACTIONS(4378), - [anon_sym_protected] = ACTIONS(4378), - [anon_sym_public] = ACTIONS(4378), - [anon_sym_readonly] = ACTIONS(4378), - [anon_sym_required] = ACTIONS(4378), - [anon_sym_sealed] = ACTIONS(4378), - [anon_sym_virtual] = ACTIONS(4378), - [anon_sym_volatile] = ACTIONS(4378), - [anon_sym_where] = ACTIONS(4378), - [anon_sym_notnull] = ACTIONS(4378), - [anon_sym_unmanaged] = ACTIONS(4378), - [anon_sym_TILDE] = ACTIONS(4380), - [anon_sym_implicit] = ACTIONS(4378), - [anon_sym_explicit] = ACTIONS(4378), - [anon_sym_scoped] = ACTIONS(4378), - [anon_sym_var] = ACTIONS(4378), - [sym_predefined_type] = ACTIONS(4378), - [anon_sym_yield] = ACTIONS(4378), - [anon_sym_when] = ACTIONS(4378), - [anon_sym_from] = ACTIONS(4378), - [anon_sym_into] = ACTIONS(4378), - [anon_sym_join] = ACTIONS(4378), - [anon_sym_on] = ACTIONS(4378), - [anon_sym_equals] = ACTIONS(4378), - [anon_sym_let] = ACTIONS(4378), - [anon_sym_orderby] = ACTIONS(4378), - [anon_sym_ascending] = ACTIONS(4378), - [anon_sym_descending] = ACTIONS(4378), - [anon_sym_group] = ACTIONS(4378), - [anon_sym_by] = ACTIONS(4378), - [anon_sym_select] = ACTIONS(4378), - [aux_sym_preproc_if_token1] = ACTIONS(4380), - [aux_sym_preproc_if_token3] = ACTIONS(4380), - [aux_sym_preproc_else_token1] = ACTIONS(4380), - [aux_sym_preproc_elif_token1] = ACTIONS(4380), + [sym__identifier_token] = ACTIONS(3463), + [anon_sym_extern] = ACTIONS(3466), + [anon_sym_alias] = ACTIONS(3463), + [anon_sym_global] = ACTIONS(3463), + [anon_sym_unsafe] = ACTIONS(3466), + [anon_sym_static] = ACTIONS(3466), + [anon_sym_LBRACK] = ACTIONS(3429), + [anon_sym_LPAREN] = ACTIONS(3468), + [anon_sym_event] = ACTIONS(3466), + [anon_sym_class] = ACTIONS(3466), + [anon_sym_ref] = ACTIONS(3466), + [anon_sym_struct] = ACTIONS(3466), + [anon_sym_enum] = ACTIONS(3466), + [anon_sym_interface] = ACTIONS(3466), + [anon_sym_delegate] = ACTIONS(3466), + [anon_sym_record] = ACTIONS(3466), + [anon_sym_abstract] = ACTIONS(3466), + [anon_sym_async] = ACTIONS(3466), + [anon_sym_const] = ACTIONS(3466), + [anon_sym_file] = ACTIONS(3463), + [anon_sym_fixed] = ACTIONS(3466), + [anon_sym_internal] = ACTIONS(3466), + [anon_sym_new] = ACTIONS(3466), + [anon_sym_override] = ACTIONS(3466), + [anon_sym_partial] = ACTIONS(3466), + [anon_sym_private] = ACTIONS(3466), + [anon_sym_protected] = ACTIONS(3466), + [anon_sym_public] = ACTIONS(3466), + [anon_sym_readonly] = ACTIONS(3466), + [anon_sym_required] = ACTIONS(3466), + [anon_sym_sealed] = ACTIONS(3466), + [anon_sym_virtual] = ACTIONS(3466), + [anon_sym_volatile] = ACTIONS(3466), + [anon_sym_LT] = ACTIONS(3429), + [anon_sym_where] = ACTIONS(3463), + [anon_sym_QMARK] = ACTIONS(3429), + [anon_sym_notnull] = ACTIONS(3463), + [anon_sym_unmanaged] = ACTIONS(3463), + [anon_sym_operator] = ACTIONS(3431), + [anon_sym_STAR] = ACTIONS(3429), + [anon_sym_implicit] = ACTIONS(3466), + [anon_sym_explicit] = ACTIONS(3466), + [anon_sym_this] = ACTIONS(3431), + [anon_sym_DOT] = ACTIONS(3429), + [anon_sym_scoped] = ACTIONS(3463), + [anon_sym_EQ_GT] = ACTIONS(3429), + [anon_sym_COLON_COLON] = ACTIONS(3429), + [anon_sym_var] = ACTIONS(3463), + [sym_predefined_type] = ACTIONS(3466), + [anon_sym_yield] = ACTIONS(3463), + [anon_sym_when] = ACTIONS(3463), + [anon_sym_from] = ACTIONS(3463), + [anon_sym_into] = ACTIONS(3463), + [anon_sym_join] = ACTIONS(3463), + [anon_sym_on] = ACTIONS(3463), + [anon_sym_equals] = ACTIONS(3463), + [anon_sym_let] = ACTIONS(3463), + [anon_sym_orderby] = ACTIONS(3463), + [anon_sym_ascending] = ACTIONS(3463), + [anon_sym_descending] = ACTIONS(3463), + [anon_sym_group] = ACTIONS(3463), + [anon_sym_by] = ACTIONS(3463), + [anon_sym_select] = ACTIONS(3463), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -444817,69 +444431,69 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2690), [sym_preproc_define] = STATE(2690), [sym_preproc_undef] = STATE(2690), - [sym__identifier_token] = ACTIONS(4382), - [anon_sym_extern] = ACTIONS(4382), - [anon_sym_alias] = ACTIONS(4382), - [anon_sym_global] = ACTIONS(4382), - [anon_sym_using] = ACTIONS(4382), - [anon_sym_unsafe] = ACTIONS(4382), - [anon_sym_static] = ACTIONS(4382), - [anon_sym_LBRACK] = ACTIONS(4384), - [anon_sym_LPAREN] = ACTIONS(4384), - [anon_sym_event] = ACTIONS(4382), - [anon_sym_namespace] = ACTIONS(4382), - [anon_sym_class] = ACTIONS(4382), - [anon_sym_ref] = ACTIONS(4382), - [anon_sym_struct] = ACTIONS(4382), - [anon_sym_enum] = ACTIONS(4382), - [anon_sym_RBRACE] = ACTIONS(4384), - [anon_sym_interface] = ACTIONS(4382), - [anon_sym_delegate] = ACTIONS(4382), - [anon_sym_record] = ACTIONS(4382), - [anon_sym_abstract] = ACTIONS(4382), - [anon_sym_async] = ACTIONS(4382), - [anon_sym_const] = ACTIONS(4382), - [anon_sym_file] = ACTIONS(4382), - [anon_sym_fixed] = ACTIONS(4382), - [anon_sym_internal] = ACTIONS(4382), - [anon_sym_new] = ACTIONS(4382), - [anon_sym_override] = ACTIONS(4382), - [anon_sym_partial] = ACTIONS(4382), - [anon_sym_private] = ACTIONS(4382), - [anon_sym_protected] = ACTIONS(4382), - [anon_sym_public] = ACTIONS(4382), - [anon_sym_readonly] = ACTIONS(4382), - [anon_sym_required] = ACTIONS(4382), - [anon_sym_sealed] = ACTIONS(4382), - [anon_sym_virtual] = ACTIONS(4382), - [anon_sym_volatile] = ACTIONS(4382), - [anon_sym_where] = ACTIONS(4382), - [anon_sym_notnull] = ACTIONS(4382), - [anon_sym_unmanaged] = ACTIONS(4382), - [anon_sym_TILDE] = ACTIONS(4384), - [anon_sym_implicit] = ACTIONS(4382), - [anon_sym_explicit] = ACTIONS(4382), - [anon_sym_scoped] = ACTIONS(4382), - [anon_sym_var] = ACTIONS(4382), - [sym_predefined_type] = ACTIONS(4382), - [anon_sym_yield] = ACTIONS(4382), - [anon_sym_when] = ACTIONS(4382), - [anon_sym_from] = ACTIONS(4382), - [anon_sym_into] = ACTIONS(4382), - [anon_sym_join] = ACTIONS(4382), - [anon_sym_on] = ACTIONS(4382), - [anon_sym_equals] = ACTIONS(4382), - [anon_sym_let] = ACTIONS(4382), - [anon_sym_orderby] = ACTIONS(4382), - [anon_sym_ascending] = ACTIONS(4382), - [anon_sym_descending] = ACTIONS(4382), - [anon_sym_group] = ACTIONS(4382), - [anon_sym_by] = ACTIONS(4382), - [anon_sym_select] = ACTIONS(4382), - [aux_sym_preproc_if_token1] = ACTIONS(4384), - [aux_sym_preproc_if_token3] = ACTIONS(4384), - [aux_sym_preproc_else_token1] = ACTIONS(4384), - [aux_sym_preproc_elif_token1] = ACTIONS(4384), + [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_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), + [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), @@ -444892,10 +444506,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2691] = { - [sym__variable_designation] = STATE(3507), - [sym_parenthesized_variable_designation] = STATE(3463), - [sym_identifier] = STATE(3479), - [sym__reserved_identifier] = STATE(3177), [sym_preproc_region] = STATE(2691), [sym_preproc_endregion] = STATE(2691), [sym_preproc_line] = STATE(2691), @@ -444905,75 +444515,79 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2691), [sym_preproc_define] = STATE(2691), [sym_preproc_undef] = STATE(2691), - [sym__identifier_token] = ACTIONS(3875), - [anon_sym_alias] = ACTIONS(3877), - [anon_sym_global] = ACTIONS(3877), - [anon_sym_LBRACK] = ACTIONS(3905), - [anon_sym_LPAREN] = ACTIONS(3905), - [anon_sym_file] = ACTIONS(3877), - [anon_sym_LT] = ACTIONS(3907), - [anon_sym_GT] = ACTIONS(3907), - [anon_sym_where] = ACTIONS(3877), - [anon_sym_QMARK] = ACTIONS(3907), - [anon_sym_notnull] = ACTIONS(3877), - [anon_sym_unmanaged] = ACTIONS(3877), - [anon_sym_BANG] = ACTIONS(3907), - [anon_sym_PLUS_PLUS] = ACTIONS(3905), - [anon_sym_DASH_DASH] = ACTIONS(3905), - [anon_sym_PLUS] = ACTIONS(3907), - [anon_sym_DASH] = ACTIONS(3907), - [anon_sym_STAR] = ACTIONS(3905), - [anon_sym_SLASH] = ACTIONS(3907), - [anon_sym_PERCENT] = ACTIONS(3905), - [anon_sym_CARET] = ACTIONS(3905), - [anon_sym_PIPE] = ACTIONS(3907), - [anon_sym_AMP] = ACTIONS(3907), - [anon_sym_LT_LT] = ACTIONS(3905), - [anon_sym_GT_GT] = ACTIONS(3907), - [anon_sym_GT_GT_GT] = ACTIONS(3905), - [anon_sym_EQ_EQ] = ACTIONS(3905), - [anon_sym_BANG_EQ] = ACTIONS(3905), - [anon_sym_GT_EQ] = ACTIONS(3905), - [anon_sym_LT_EQ] = ACTIONS(3905), - [anon_sym_DOT] = ACTIONS(3907), - [anon_sym_scoped] = ACTIONS(3877), - [anon_sym_var] = ACTIONS(3877), - [anon_sym_yield] = ACTIONS(3877), - [anon_sym_switch] = ACTIONS(3907), - [anon_sym_when] = ACTIONS(3877), - [sym_discard] = ACTIONS(3897), - [anon_sym_DOT_DOT] = ACTIONS(3905), - [anon_sym_and] = ACTIONS(3907), - [anon_sym_or] = ACTIONS(3907), - [anon_sym_AMP_AMP] = ACTIONS(3905), - [anon_sym_PIPE_PIPE] = ACTIONS(3905), - [anon_sym_QMARK_QMARK] = ACTIONS(3905), - [anon_sym_from] = ACTIONS(3877), - [anon_sym_into] = ACTIONS(3877), - [anon_sym_join] = ACTIONS(3877), - [anon_sym_on] = ACTIONS(3877), - [anon_sym_equals] = ACTIONS(3877), - [anon_sym_let] = ACTIONS(3877), - [anon_sym_orderby] = ACTIONS(3877), - [anon_sym_ascending] = ACTIONS(3877), - [anon_sym_descending] = ACTIONS(3877), - [anon_sym_group] = ACTIONS(3877), - [anon_sym_by] = ACTIONS(3907), - [anon_sym_select] = ACTIONS(3877), - [anon_sym_as] = ACTIONS(3907), - [anon_sym_is] = ACTIONS(3907), - [anon_sym_DASH_GT] = ACTIONS(3905), - [anon_sym_with] = ACTIONS(3907), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_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(3961), + [anon_sym_alias] = ACTIONS(3961), + [anon_sym_global] = ACTIONS(3961), + [anon_sym_LBRACK] = ACTIONS(4033), + [anon_sym_COLON] = ACTIONS(3963), + [anon_sym_COMMA] = ACTIONS(3963), + [anon_sym_LPAREN] = ACTIONS(3963), + [anon_sym_LBRACE] = ACTIONS(3963), + [anon_sym_file] = ACTIONS(3961), + [anon_sym_LT] = ACTIONS(3961), + [anon_sym_GT] = ACTIONS(3961), + [anon_sym_where] = ACTIONS(3961), + [anon_sym_QMARK] = ACTIONS(4298), + [anon_sym_notnull] = ACTIONS(3961), + [anon_sym_unmanaged] = ACTIONS(3961), + [anon_sym_BANG] = ACTIONS(3961), + [anon_sym_PLUS_PLUS] = ACTIONS(3963), + [anon_sym_DASH_DASH] = ACTIONS(3963), + [anon_sym_PLUS] = ACTIONS(3961), + [anon_sym_DASH] = ACTIONS(3961), + [anon_sym_STAR] = ACTIONS(4039), + [anon_sym_SLASH] = ACTIONS(3961), + [anon_sym_PERCENT] = ACTIONS(3963), + [anon_sym_CARET] = ACTIONS(3963), + [anon_sym_PIPE] = ACTIONS(3961), + [anon_sym_AMP] = ACTIONS(3961), + [anon_sym_LT_LT] = ACTIONS(3963), + [anon_sym_GT_GT] = ACTIONS(3961), + [anon_sym_GT_GT_GT] = ACTIONS(3963), + [anon_sym_EQ_EQ] = ACTIONS(3963), + [anon_sym_BANG_EQ] = ACTIONS(3963), + [anon_sym_GT_EQ] = ACTIONS(3963), + [anon_sym_LT_EQ] = ACTIONS(3963), + [anon_sym_DOT] = ACTIONS(4427), + [anon_sym_scoped] = ACTIONS(3961), + [anon_sym_var] = ACTIONS(3961), + [anon_sym_yield] = ACTIONS(3961), + [anon_sym_switch] = ACTIONS(3961), + [anon_sym_when] = ACTIONS(3961), + [sym_discard] = ACTIONS(3961), + [anon_sym_DOT_DOT] = ACTIONS(3963), + [anon_sym_and] = ACTIONS(3961), + [anon_sym_or] = ACTIONS(3961), + [anon_sym_AMP_AMP] = ACTIONS(3963), + [anon_sym_PIPE_PIPE] = ACTIONS(3963), + [anon_sym_QMARK_QMARK] = ACTIONS(3963), + [anon_sym_from] = ACTIONS(3961), + [anon_sym_into] = ACTIONS(3961), + [anon_sym_join] = ACTIONS(3961), + [anon_sym_on] = ACTIONS(3961), + [anon_sym_equals] = ACTIONS(3961), + [anon_sym_let] = ACTIONS(3961), + [anon_sym_orderby] = ACTIONS(3961), + [anon_sym_ascending] = ACTIONS(3961), + [anon_sym_descending] = ACTIONS(3961), + [anon_sym_group] = ACTIONS(3961), + [anon_sym_by] = ACTIONS(3961), + [anon_sym_select] = ACTIONS(3961), + [anon_sym_as] = ACTIONS(3961), + [anon_sym_is] = ACTIONS(3961), + [anon_sym_DASH_GT] = ACTIONS(4429), + [anon_sym_with] = ACTIONS(3961), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_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(3963), }, [2692] = { [sym_preproc_region] = STATE(2692), @@ -444985,69 +444599,69 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2692), [sym_preproc_define] = STATE(2692), [sym_preproc_undef] = STATE(2692), - [sym__identifier_token] = ACTIONS(4386), - [anon_sym_extern] = ACTIONS(4386), - [anon_sym_alias] = ACTIONS(4386), - [anon_sym_global] = ACTIONS(4386), - [anon_sym_using] = ACTIONS(4386), - [anon_sym_unsafe] = ACTIONS(4386), - [anon_sym_static] = ACTIONS(4386), - [anon_sym_LBRACK] = ACTIONS(4388), - [anon_sym_LPAREN] = ACTIONS(4388), - [anon_sym_event] = ACTIONS(4386), - [anon_sym_namespace] = ACTIONS(4386), - [anon_sym_class] = ACTIONS(4386), - [anon_sym_ref] = ACTIONS(4386), - [anon_sym_struct] = ACTIONS(4386), - [anon_sym_enum] = ACTIONS(4386), - [anon_sym_RBRACE] = ACTIONS(4388), - [anon_sym_interface] = ACTIONS(4386), - [anon_sym_delegate] = ACTIONS(4386), - [anon_sym_record] = ACTIONS(4386), - [anon_sym_abstract] = ACTIONS(4386), - [anon_sym_async] = ACTIONS(4386), - [anon_sym_const] = ACTIONS(4386), - [anon_sym_file] = ACTIONS(4386), - [anon_sym_fixed] = ACTIONS(4386), - [anon_sym_internal] = ACTIONS(4386), - [anon_sym_new] = ACTIONS(4386), - [anon_sym_override] = ACTIONS(4386), - [anon_sym_partial] = ACTIONS(4386), - [anon_sym_private] = ACTIONS(4386), - [anon_sym_protected] = ACTIONS(4386), - [anon_sym_public] = ACTIONS(4386), - [anon_sym_readonly] = ACTIONS(4386), - [anon_sym_required] = ACTIONS(4386), - [anon_sym_sealed] = ACTIONS(4386), - [anon_sym_virtual] = ACTIONS(4386), - [anon_sym_volatile] = ACTIONS(4386), - [anon_sym_where] = ACTIONS(4386), - [anon_sym_notnull] = ACTIONS(4386), - [anon_sym_unmanaged] = ACTIONS(4386), - [anon_sym_TILDE] = ACTIONS(4388), - [anon_sym_implicit] = ACTIONS(4386), - [anon_sym_explicit] = ACTIONS(4386), - [anon_sym_scoped] = ACTIONS(4386), - [anon_sym_var] = ACTIONS(4386), - [sym_predefined_type] = ACTIONS(4386), - [anon_sym_yield] = ACTIONS(4386), - [anon_sym_when] = ACTIONS(4386), - [anon_sym_from] = ACTIONS(4386), - [anon_sym_into] = ACTIONS(4386), - [anon_sym_join] = ACTIONS(4386), - [anon_sym_on] = ACTIONS(4386), - [anon_sym_equals] = ACTIONS(4386), - [anon_sym_let] = ACTIONS(4386), - [anon_sym_orderby] = ACTIONS(4386), - [anon_sym_ascending] = ACTIONS(4386), - [anon_sym_descending] = ACTIONS(4386), - [anon_sym_group] = ACTIONS(4386), - [anon_sym_by] = ACTIONS(4386), - [anon_sym_select] = ACTIONS(4386), - [aux_sym_preproc_if_token1] = ACTIONS(4388), - [aux_sym_preproc_if_token3] = ACTIONS(4388), - [aux_sym_preproc_else_token1] = ACTIONS(4388), - [aux_sym_preproc_elif_token1] = ACTIONS(4388), + [sym__identifier_token] = ACTIONS(4431), + [anon_sym_extern] = ACTIONS(4431), + [anon_sym_alias] = ACTIONS(4431), + [anon_sym_global] = ACTIONS(4431), + [anon_sym_using] = ACTIONS(4431), + [anon_sym_unsafe] = ACTIONS(4431), + [anon_sym_static] = ACTIONS(4431), + [anon_sym_LBRACK] = ACTIONS(4433), + [anon_sym_LPAREN] = ACTIONS(4433), + [anon_sym_event] = ACTIONS(4431), + [anon_sym_namespace] = ACTIONS(4431), + [anon_sym_class] = ACTIONS(4431), + [anon_sym_ref] = ACTIONS(4431), + [anon_sym_struct] = ACTIONS(4431), + [anon_sym_enum] = ACTIONS(4431), + [anon_sym_RBRACE] = ACTIONS(4433), + [anon_sym_interface] = ACTIONS(4431), + [anon_sym_delegate] = ACTIONS(4431), + [anon_sym_record] = ACTIONS(4431), + [anon_sym_abstract] = ACTIONS(4431), + [anon_sym_async] = ACTIONS(4431), + [anon_sym_const] = ACTIONS(4431), + [anon_sym_file] = ACTIONS(4431), + [anon_sym_fixed] = ACTIONS(4431), + [anon_sym_internal] = ACTIONS(4431), + [anon_sym_new] = ACTIONS(4431), + [anon_sym_override] = ACTIONS(4431), + [anon_sym_partial] = ACTIONS(4431), + [anon_sym_private] = ACTIONS(4431), + [anon_sym_protected] = ACTIONS(4431), + [anon_sym_public] = ACTIONS(4431), + [anon_sym_readonly] = ACTIONS(4431), + [anon_sym_required] = ACTIONS(4431), + [anon_sym_sealed] = ACTIONS(4431), + [anon_sym_virtual] = ACTIONS(4431), + [anon_sym_volatile] = ACTIONS(4431), + [anon_sym_where] = ACTIONS(4431), + [anon_sym_notnull] = ACTIONS(4431), + [anon_sym_unmanaged] = ACTIONS(4431), + [anon_sym_TILDE] = ACTIONS(4433), + [anon_sym_implicit] = ACTIONS(4431), + [anon_sym_explicit] = ACTIONS(4431), + [anon_sym_scoped] = ACTIONS(4431), + [anon_sym_var] = ACTIONS(4431), + [sym_predefined_type] = ACTIONS(4431), + [anon_sym_yield] = ACTIONS(4431), + [anon_sym_when] = ACTIONS(4431), + [anon_sym_from] = ACTIONS(4431), + [anon_sym_into] = ACTIONS(4431), + [anon_sym_join] = ACTIONS(4431), + [anon_sym_on] = ACTIONS(4431), + [anon_sym_equals] = ACTIONS(4431), + [anon_sym_let] = ACTIONS(4431), + [anon_sym_orderby] = ACTIONS(4431), + [anon_sym_ascending] = ACTIONS(4431), + [anon_sym_descending] = ACTIONS(4431), + [anon_sym_group] = ACTIONS(4431), + [anon_sym_by] = ACTIONS(4431), + [anon_sym_select] = ACTIONS(4431), + [aux_sym_preproc_if_token1] = ACTIONS(4433), + [aux_sym_preproc_if_token3] = ACTIONS(4433), + [aux_sym_preproc_else_token1] = ACTIONS(4433), + [aux_sym_preproc_elif_token1] = ACTIONS(4433), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -445060,10 +444674,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2693] = { - [sym__variable_designation] = STATE(4152), - [sym_parenthesized_variable_designation] = STATE(4173), - [sym_identifier] = STATE(4177), - [sym__reserved_identifier] = STATE(2945), [sym_preproc_region] = STATE(2693), [sym_preproc_endregion] = STATE(2693), [sym_preproc_line] = STATE(2693), @@ -445073,65 +444683,69 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2693), [sym_preproc_define] = STATE(2693), [sym_preproc_undef] = STATE(2693), - [sym__identifier_token] = ACTIONS(3887), - [anon_sym_alias] = ACTIONS(3889), - [anon_sym_global] = ACTIONS(3889), - [anon_sym_LBRACK] = ACTIONS(3957), - [anon_sym_LPAREN] = ACTIONS(3957), - [anon_sym_file] = ACTIONS(3889), - [anon_sym_LT] = ACTIONS(3959), - [anon_sym_GT] = ACTIONS(3959), - [anon_sym_where] = ACTIONS(3959), - [anon_sym_QMARK] = ACTIONS(3959), - [anon_sym_notnull] = ACTIONS(3889), - [anon_sym_unmanaged] = ACTIONS(3889), - [anon_sym_BANG] = ACTIONS(3959), - [anon_sym_PLUS_PLUS] = ACTIONS(3957), - [anon_sym_DASH_DASH] = ACTIONS(3957), - [anon_sym_PLUS] = ACTIONS(3959), - [anon_sym_DASH] = ACTIONS(3959), - [anon_sym_STAR] = ACTIONS(3957), - [anon_sym_SLASH] = ACTIONS(3959), - [anon_sym_PERCENT] = ACTIONS(3957), - [anon_sym_CARET] = ACTIONS(3957), - [anon_sym_PIPE] = ACTIONS(3959), - [anon_sym_AMP] = ACTIONS(3959), - [anon_sym_LT_LT] = ACTIONS(3957), - [anon_sym_GT_GT] = ACTIONS(3959), - [anon_sym_GT_GT_GT] = ACTIONS(3957), - [anon_sym_EQ_EQ] = ACTIONS(3957), - [anon_sym_BANG_EQ] = ACTIONS(3957), - [anon_sym_GT_EQ] = ACTIONS(3957), - [anon_sym_LT_EQ] = ACTIONS(3957), - [anon_sym_DOT] = ACTIONS(3959), - [anon_sym_scoped] = ACTIONS(3889), - [anon_sym_var] = ACTIONS(3889), - [anon_sym_yield] = ACTIONS(3889), - [anon_sym_switch] = ACTIONS(3959), - [anon_sym_when] = ACTIONS(3889), - [sym_discard] = ACTIONS(4209), - [anon_sym_DOT_DOT] = ACTIONS(3957), - [anon_sym_and] = ACTIONS(3959), - [anon_sym_or] = ACTIONS(3959), - [anon_sym_AMP_AMP] = ACTIONS(3957), - [anon_sym_PIPE_PIPE] = ACTIONS(3957), - [anon_sym_QMARK_QMARK] = ACTIONS(3957), - [anon_sym_from] = ACTIONS(3959), - [anon_sym_into] = ACTIONS(3889), - [anon_sym_join] = ACTIONS(3959), - [anon_sym_on] = ACTIONS(3889), - [anon_sym_equals] = ACTIONS(3889), - [anon_sym_let] = ACTIONS(3959), - [anon_sym_orderby] = ACTIONS(3959), - [anon_sym_ascending] = ACTIONS(3889), - [anon_sym_descending] = ACTIONS(3889), - [anon_sym_group] = ACTIONS(3959), - [anon_sym_by] = ACTIONS(3889), - [anon_sym_select] = ACTIONS(3959), - [anon_sym_as] = ACTIONS(3959), - [anon_sym_is] = ACTIONS(3959), - [anon_sym_DASH_GT] = ACTIONS(3957), - [anon_sym_with] = ACTIONS(3959), + [sym__identifier_token] = ACTIONS(4435), + [anon_sym_extern] = ACTIONS(4435), + [anon_sym_alias] = ACTIONS(4435), + [anon_sym_global] = ACTIONS(4435), + [anon_sym_using] = ACTIONS(4435), + [anon_sym_unsafe] = ACTIONS(4435), + [anon_sym_static] = ACTIONS(4435), + [anon_sym_LBRACK] = ACTIONS(4437), + [anon_sym_LPAREN] = ACTIONS(4437), + [anon_sym_event] = ACTIONS(4435), + [anon_sym_namespace] = ACTIONS(4435), + [anon_sym_class] = ACTIONS(4435), + [anon_sym_ref] = ACTIONS(4435), + [anon_sym_struct] = ACTIONS(4435), + [anon_sym_enum] = ACTIONS(4435), + [anon_sym_RBRACE] = ACTIONS(4437), + [anon_sym_interface] = ACTIONS(4435), + [anon_sym_delegate] = ACTIONS(4435), + [anon_sym_record] = ACTIONS(4435), + [anon_sym_abstract] = ACTIONS(4435), + [anon_sym_async] = ACTIONS(4435), + [anon_sym_const] = ACTIONS(4435), + [anon_sym_file] = ACTIONS(4435), + [anon_sym_fixed] = ACTIONS(4435), + [anon_sym_internal] = ACTIONS(4435), + [anon_sym_new] = ACTIONS(4435), + [anon_sym_override] = ACTIONS(4435), + [anon_sym_partial] = ACTIONS(4435), + [anon_sym_private] = ACTIONS(4435), + [anon_sym_protected] = ACTIONS(4435), + [anon_sym_public] = ACTIONS(4435), + [anon_sym_readonly] = ACTIONS(4435), + [anon_sym_required] = ACTIONS(4435), + [anon_sym_sealed] = ACTIONS(4435), + [anon_sym_virtual] = ACTIONS(4435), + [anon_sym_volatile] = ACTIONS(4435), + [anon_sym_where] = ACTIONS(4435), + [anon_sym_notnull] = ACTIONS(4435), + [anon_sym_unmanaged] = ACTIONS(4435), + [anon_sym_TILDE] = ACTIONS(4437), + [anon_sym_implicit] = ACTIONS(4435), + [anon_sym_explicit] = ACTIONS(4435), + [anon_sym_scoped] = ACTIONS(4435), + [anon_sym_var] = ACTIONS(4435), + [sym_predefined_type] = ACTIONS(4435), + [anon_sym_yield] = ACTIONS(4435), + [anon_sym_when] = ACTIONS(4435), + [anon_sym_from] = ACTIONS(4435), + [anon_sym_into] = ACTIONS(4435), + [anon_sym_join] = ACTIONS(4435), + [anon_sym_on] = ACTIONS(4435), + [anon_sym_equals] = ACTIONS(4435), + [anon_sym_let] = ACTIONS(4435), + [anon_sym_orderby] = ACTIONS(4435), + [anon_sym_ascending] = ACTIONS(4435), + [anon_sym_descending] = ACTIONS(4435), + [anon_sym_group] = ACTIONS(4435), + [anon_sym_by] = ACTIONS(4435), + [anon_sym_select] = ACTIONS(4435), + [aux_sym_preproc_if_token1] = ACTIONS(4437), + [aux_sym_preproc_if_token3] = ACTIONS(4437), + [aux_sym_preproc_else_token1] = ACTIONS(4437), + [aux_sym_preproc_elif_token1] = ACTIONS(4437), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -445153,69 +444767,69 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2694), [sym_preproc_define] = STATE(2694), [sym_preproc_undef] = STATE(2694), - [sym__identifier_token] = ACTIONS(4390), - [anon_sym_extern] = ACTIONS(4390), - [anon_sym_alias] = ACTIONS(4390), - [anon_sym_global] = ACTIONS(4390), - [anon_sym_using] = ACTIONS(4390), - [anon_sym_unsafe] = ACTIONS(4390), - [anon_sym_static] = ACTIONS(4390), - [anon_sym_LBRACK] = ACTIONS(4392), - [anon_sym_LPAREN] = ACTIONS(4392), - [anon_sym_event] = ACTIONS(4390), - [anon_sym_namespace] = ACTIONS(4390), - [anon_sym_class] = ACTIONS(4390), - [anon_sym_ref] = ACTIONS(4390), - [anon_sym_struct] = ACTIONS(4390), - [anon_sym_enum] = ACTIONS(4390), - [anon_sym_RBRACE] = ACTIONS(4392), - [anon_sym_interface] = ACTIONS(4390), - [anon_sym_delegate] = ACTIONS(4390), - [anon_sym_record] = ACTIONS(4390), - [anon_sym_abstract] = ACTIONS(4390), - [anon_sym_async] = ACTIONS(4390), - [anon_sym_const] = ACTIONS(4390), - [anon_sym_file] = ACTIONS(4390), - [anon_sym_fixed] = ACTIONS(4390), - [anon_sym_internal] = ACTIONS(4390), - [anon_sym_new] = ACTIONS(4390), - [anon_sym_override] = ACTIONS(4390), - [anon_sym_partial] = ACTIONS(4390), - [anon_sym_private] = ACTIONS(4390), - [anon_sym_protected] = ACTIONS(4390), - [anon_sym_public] = ACTIONS(4390), - [anon_sym_readonly] = ACTIONS(4390), - [anon_sym_required] = ACTIONS(4390), - [anon_sym_sealed] = ACTIONS(4390), - [anon_sym_virtual] = ACTIONS(4390), - [anon_sym_volatile] = ACTIONS(4390), - [anon_sym_where] = ACTIONS(4390), - [anon_sym_notnull] = ACTIONS(4390), - [anon_sym_unmanaged] = ACTIONS(4390), - [anon_sym_TILDE] = ACTIONS(4392), - [anon_sym_implicit] = ACTIONS(4390), - [anon_sym_explicit] = ACTIONS(4390), - [anon_sym_scoped] = ACTIONS(4390), - [anon_sym_var] = ACTIONS(4390), - [sym_predefined_type] = ACTIONS(4390), - [anon_sym_yield] = ACTIONS(4390), - [anon_sym_when] = ACTIONS(4390), - [anon_sym_from] = ACTIONS(4390), - [anon_sym_into] = ACTIONS(4390), - [anon_sym_join] = ACTIONS(4390), - [anon_sym_on] = ACTIONS(4390), - [anon_sym_equals] = ACTIONS(4390), - [anon_sym_let] = ACTIONS(4390), - [anon_sym_orderby] = ACTIONS(4390), - [anon_sym_ascending] = ACTIONS(4390), - [anon_sym_descending] = ACTIONS(4390), - [anon_sym_group] = ACTIONS(4390), - [anon_sym_by] = ACTIONS(4390), - [anon_sym_select] = ACTIONS(4390), - [aux_sym_preproc_if_token1] = ACTIONS(4392), - [aux_sym_preproc_if_token3] = ACTIONS(4392), - [aux_sym_preproc_else_token1] = ACTIONS(4392), - [aux_sym_preproc_elif_token1] = ACTIONS(4392), + [sym__identifier_token] = ACTIONS(4439), + [anon_sym_extern] = ACTIONS(4439), + [anon_sym_alias] = ACTIONS(4439), + [anon_sym_global] = ACTIONS(4439), + [anon_sym_using] = ACTIONS(4439), + [anon_sym_unsafe] = ACTIONS(4439), + [anon_sym_static] = ACTIONS(4439), + [anon_sym_LBRACK] = ACTIONS(4441), + [anon_sym_LPAREN] = ACTIONS(4441), + [anon_sym_event] = ACTIONS(4439), + [anon_sym_namespace] = ACTIONS(4439), + [anon_sym_class] = ACTIONS(4439), + [anon_sym_ref] = ACTIONS(4439), + [anon_sym_struct] = ACTIONS(4439), + [anon_sym_enum] = ACTIONS(4439), + [anon_sym_RBRACE] = ACTIONS(4441), + [anon_sym_interface] = ACTIONS(4439), + [anon_sym_delegate] = ACTIONS(4439), + [anon_sym_record] = ACTIONS(4439), + [anon_sym_abstract] = ACTIONS(4439), + [anon_sym_async] = ACTIONS(4439), + [anon_sym_const] = ACTIONS(4439), + [anon_sym_file] = ACTIONS(4439), + [anon_sym_fixed] = ACTIONS(4439), + [anon_sym_internal] = ACTIONS(4439), + [anon_sym_new] = ACTIONS(4439), + [anon_sym_override] = ACTIONS(4439), + [anon_sym_partial] = ACTIONS(4439), + [anon_sym_private] = ACTIONS(4439), + [anon_sym_protected] = ACTIONS(4439), + [anon_sym_public] = ACTIONS(4439), + [anon_sym_readonly] = ACTIONS(4439), + [anon_sym_required] = ACTIONS(4439), + [anon_sym_sealed] = ACTIONS(4439), + [anon_sym_virtual] = ACTIONS(4439), + [anon_sym_volatile] = ACTIONS(4439), + [anon_sym_where] = ACTIONS(4439), + [anon_sym_notnull] = ACTIONS(4439), + [anon_sym_unmanaged] = ACTIONS(4439), + [anon_sym_TILDE] = ACTIONS(4441), + [anon_sym_implicit] = ACTIONS(4439), + [anon_sym_explicit] = ACTIONS(4439), + [anon_sym_scoped] = ACTIONS(4439), + [anon_sym_var] = ACTIONS(4439), + [sym_predefined_type] = ACTIONS(4439), + [anon_sym_yield] = ACTIONS(4439), + [anon_sym_when] = ACTIONS(4439), + [anon_sym_from] = ACTIONS(4439), + [anon_sym_into] = ACTIONS(4439), + [anon_sym_join] = ACTIONS(4439), + [anon_sym_on] = ACTIONS(4439), + [anon_sym_equals] = ACTIONS(4439), + [anon_sym_let] = ACTIONS(4439), + [anon_sym_orderby] = ACTIONS(4439), + [anon_sym_ascending] = ACTIONS(4439), + [anon_sym_descending] = ACTIONS(4439), + [anon_sym_group] = ACTIONS(4439), + [anon_sym_by] = ACTIONS(4439), + [anon_sym_select] = ACTIONS(4439), + [aux_sym_preproc_if_token1] = ACTIONS(4441), + [aux_sym_preproc_if_token3] = ACTIONS(4441), + [aux_sym_preproc_else_token1] = ACTIONS(4441), + [aux_sym_preproc_elif_token1] = ACTIONS(4441), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -445228,10 +444842,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2695] = { - [sym__variable_designation] = STATE(3365), - [sym_parenthesized_variable_designation] = STATE(3463), - [sym_identifier] = STATE(3479), - [sym__reserved_identifier] = STATE(3177), [sym_preproc_region] = STATE(2695), [sym_preproc_endregion] = STATE(2695), [sym_preproc_line] = STATE(2695), @@ -445241,65 +444851,69 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2695), [sym_preproc_define] = STATE(2695), [sym_preproc_undef] = STATE(2695), - [sym__identifier_token] = ACTIONS(3875), - [anon_sym_alias] = ACTIONS(3877), - [anon_sym_global] = ACTIONS(3877), - [anon_sym_LBRACK] = ACTIONS(3913), - [anon_sym_LPAREN] = ACTIONS(3913), - [anon_sym_file] = ACTIONS(3877), - [anon_sym_LT] = ACTIONS(3915), - [anon_sym_GT] = ACTIONS(3915), - [anon_sym_where] = ACTIONS(3877), - [anon_sym_QMARK] = ACTIONS(3915), - [anon_sym_notnull] = ACTIONS(3877), - [anon_sym_unmanaged] = ACTIONS(3877), - [anon_sym_BANG] = ACTIONS(3915), - [anon_sym_PLUS_PLUS] = ACTIONS(3913), - [anon_sym_DASH_DASH] = ACTIONS(3913), - [anon_sym_PLUS] = ACTIONS(3915), - [anon_sym_DASH] = ACTIONS(3915), - [anon_sym_STAR] = ACTIONS(3913), - [anon_sym_SLASH] = ACTIONS(3915), - [anon_sym_PERCENT] = ACTIONS(3913), - [anon_sym_CARET] = ACTIONS(3913), - [anon_sym_PIPE] = ACTIONS(3915), - [anon_sym_AMP] = ACTIONS(3915), - [anon_sym_LT_LT] = ACTIONS(3913), - [anon_sym_GT_GT] = ACTIONS(3915), - [anon_sym_GT_GT_GT] = ACTIONS(3913), - [anon_sym_EQ_EQ] = ACTIONS(3913), - [anon_sym_BANG_EQ] = ACTIONS(3913), - [anon_sym_GT_EQ] = ACTIONS(3913), - [anon_sym_LT_EQ] = ACTIONS(3913), - [anon_sym_DOT] = ACTIONS(3915), - [anon_sym_scoped] = ACTIONS(3877), - [anon_sym_var] = ACTIONS(3877), - [anon_sym_yield] = ACTIONS(3877), - [anon_sym_switch] = ACTIONS(3915), - [anon_sym_when] = ACTIONS(3877), - [sym_discard] = ACTIONS(3897), - [anon_sym_DOT_DOT] = ACTIONS(3913), - [anon_sym_and] = ACTIONS(3915), - [anon_sym_or] = ACTIONS(3915), - [anon_sym_AMP_AMP] = ACTIONS(3913), - [anon_sym_PIPE_PIPE] = ACTIONS(3913), - [anon_sym_QMARK_QMARK] = ACTIONS(3913), - [anon_sym_from] = ACTIONS(3877), - [anon_sym_into] = ACTIONS(3877), - [anon_sym_join] = ACTIONS(3877), - [anon_sym_on] = ACTIONS(3877), - [anon_sym_equals] = ACTIONS(3877), - [anon_sym_let] = ACTIONS(3877), - [anon_sym_orderby] = ACTIONS(3877), - [anon_sym_ascending] = ACTIONS(3877), - [anon_sym_descending] = ACTIONS(3877), - [anon_sym_group] = ACTIONS(3877), - [anon_sym_by] = ACTIONS(3915), - [anon_sym_select] = ACTIONS(3877), - [anon_sym_as] = ACTIONS(3915), - [anon_sym_is] = ACTIONS(3915), - [anon_sym_DASH_GT] = ACTIONS(3913), - [anon_sym_with] = ACTIONS(3915), + [sym__identifier_token] = ACTIONS(4443), + [anon_sym_extern] = ACTIONS(4443), + [anon_sym_alias] = ACTIONS(4443), + [anon_sym_global] = ACTIONS(4443), + [anon_sym_using] = ACTIONS(4443), + [anon_sym_unsafe] = ACTIONS(4443), + [anon_sym_static] = ACTIONS(4443), + [anon_sym_LBRACK] = ACTIONS(4445), + [anon_sym_LPAREN] = ACTIONS(4445), + [anon_sym_event] = ACTIONS(4443), + [anon_sym_namespace] = ACTIONS(4443), + [anon_sym_class] = ACTIONS(4443), + [anon_sym_ref] = ACTIONS(4443), + [anon_sym_struct] = ACTIONS(4443), + [anon_sym_enum] = ACTIONS(4443), + [anon_sym_RBRACE] = ACTIONS(4445), + [anon_sym_interface] = ACTIONS(4443), + [anon_sym_delegate] = ACTIONS(4443), + [anon_sym_record] = ACTIONS(4443), + [anon_sym_abstract] = ACTIONS(4443), + [anon_sym_async] = ACTIONS(4443), + [anon_sym_const] = ACTIONS(4443), + [anon_sym_file] = ACTIONS(4443), + [anon_sym_fixed] = ACTIONS(4443), + [anon_sym_internal] = ACTIONS(4443), + [anon_sym_new] = ACTIONS(4443), + [anon_sym_override] = ACTIONS(4443), + [anon_sym_partial] = ACTIONS(4443), + [anon_sym_private] = ACTIONS(4443), + [anon_sym_protected] = ACTIONS(4443), + [anon_sym_public] = ACTIONS(4443), + [anon_sym_readonly] = ACTIONS(4443), + [anon_sym_required] = ACTIONS(4443), + [anon_sym_sealed] = ACTIONS(4443), + [anon_sym_virtual] = ACTIONS(4443), + [anon_sym_volatile] = ACTIONS(4443), + [anon_sym_where] = ACTIONS(4443), + [anon_sym_notnull] = ACTIONS(4443), + [anon_sym_unmanaged] = ACTIONS(4443), + [anon_sym_TILDE] = ACTIONS(4445), + [anon_sym_implicit] = ACTIONS(4443), + [anon_sym_explicit] = ACTIONS(4443), + [anon_sym_scoped] = ACTIONS(4443), + [anon_sym_var] = ACTIONS(4443), + [sym_predefined_type] = ACTIONS(4443), + [anon_sym_yield] = ACTIONS(4443), + [anon_sym_when] = ACTIONS(4443), + [anon_sym_from] = ACTIONS(4443), + [anon_sym_into] = ACTIONS(4443), + [anon_sym_join] = ACTIONS(4443), + [anon_sym_on] = ACTIONS(4443), + [anon_sym_equals] = ACTIONS(4443), + [anon_sym_let] = ACTIONS(4443), + [anon_sym_orderby] = ACTIONS(4443), + [anon_sym_ascending] = ACTIONS(4443), + [anon_sym_descending] = ACTIONS(4443), + [anon_sym_group] = ACTIONS(4443), + [anon_sym_by] = ACTIONS(4443), + [anon_sym_select] = ACTIONS(4443), + [aux_sym_preproc_if_token1] = ACTIONS(4445), + [aux_sym_preproc_if_token3] = ACTIONS(4445), + [aux_sym_preproc_else_token1] = ACTIONS(4445), + [aux_sym_preproc_elif_token1] = ACTIONS(4445), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -445312,10 +444926,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2696] = { - [sym__variable_designation] = STATE(3434), - [sym_parenthesized_variable_designation] = STATE(3463), - [sym_identifier] = STATE(3479), - [sym__reserved_identifier] = STATE(3177), [sym_preproc_region] = STATE(2696), [sym_preproc_endregion] = STATE(2696), [sym_preproc_line] = STATE(2696), @@ -445325,75 +444935,79 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2696), [sym_preproc_define] = STATE(2696), [sym_preproc_undef] = STATE(2696), - [sym__identifier_token] = ACTIONS(3875), - [anon_sym_alias] = ACTIONS(3877), - [anon_sym_global] = ACTIONS(3877), - [anon_sym_LBRACK] = ACTIONS(3957), - [anon_sym_LPAREN] = ACTIONS(3957), - [anon_sym_file] = ACTIONS(3877), - [anon_sym_LT] = ACTIONS(3959), - [anon_sym_GT] = ACTIONS(3959), - [anon_sym_where] = ACTIONS(3877), - [anon_sym_QMARK] = ACTIONS(3959), - [anon_sym_notnull] = ACTIONS(3877), - [anon_sym_unmanaged] = ACTIONS(3877), - [anon_sym_BANG] = ACTIONS(3959), - [anon_sym_PLUS_PLUS] = ACTIONS(3957), - [anon_sym_DASH_DASH] = ACTIONS(3957), - [anon_sym_PLUS] = ACTIONS(3959), - [anon_sym_DASH] = ACTIONS(3959), - [anon_sym_STAR] = ACTIONS(3957), - [anon_sym_SLASH] = ACTIONS(3959), - [anon_sym_PERCENT] = ACTIONS(3957), - [anon_sym_CARET] = ACTIONS(3957), - [anon_sym_PIPE] = ACTIONS(3959), - [anon_sym_AMP] = ACTIONS(3959), - [anon_sym_LT_LT] = ACTIONS(3957), - [anon_sym_GT_GT] = ACTIONS(3959), - [anon_sym_GT_GT_GT] = ACTIONS(3957), - [anon_sym_EQ_EQ] = ACTIONS(3957), - [anon_sym_BANG_EQ] = ACTIONS(3957), - [anon_sym_GT_EQ] = ACTIONS(3957), - [anon_sym_LT_EQ] = ACTIONS(3957), - [anon_sym_DOT] = ACTIONS(3959), - [anon_sym_scoped] = ACTIONS(3877), - [anon_sym_var] = ACTIONS(3877), - [anon_sym_yield] = ACTIONS(3877), - [anon_sym_switch] = ACTIONS(3959), - [anon_sym_when] = ACTIONS(3877), - [sym_discard] = ACTIONS(3897), - [anon_sym_DOT_DOT] = ACTIONS(3957), - [anon_sym_and] = ACTIONS(3959), - [anon_sym_or] = ACTIONS(3959), - [anon_sym_AMP_AMP] = ACTIONS(3957), - [anon_sym_PIPE_PIPE] = ACTIONS(3957), - [anon_sym_QMARK_QMARK] = ACTIONS(3957), - [anon_sym_from] = ACTIONS(3877), - [anon_sym_into] = ACTIONS(3877), - [anon_sym_join] = ACTIONS(3877), - [anon_sym_on] = ACTIONS(3877), - [anon_sym_equals] = ACTIONS(3877), - [anon_sym_let] = ACTIONS(3877), - [anon_sym_orderby] = ACTIONS(3877), - [anon_sym_ascending] = ACTIONS(3877), - [anon_sym_descending] = ACTIONS(3877), - [anon_sym_group] = ACTIONS(3877), - [anon_sym_by] = ACTIONS(3959), - [anon_sym_select] = ACTIONS(3877), - [anon_sym_as] = ACTIONS(3959), - [anon_sym_is] = ACTIONS(3959), - [anon_sym_DASH_GT] = ACTIONS(3957), - [anon_sym_with] = ACTIONS(3959), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_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(3961), + [anon_sym_alias] = ACTIONS(3961), + [anon_sym_global] = ACTIONS(3961), + [anon_sym_LBRACK] = ACTIONS(4033), + [anon_sym_COLON] = ACTIONS(3963), + [anon_sym_COMMA] = ACTIONS(3963), + [anon_sym_LPAREN] = ACTIONS(3963), + [anon_sym_LBRACE] = ACTIONS(3963), + [anon_sym_file] = ACTIONS(3961), + [anon_sym_LT] = ACTIONS(3961), + [anon_sym_GT] = ACTIONS(3961), + [anon_sym_where] = ACTIONS(3961), + [anon_sym_QMARK] = ACTIONS(4298), + [anon_sym_notnull] = ACTIONS(3961), + [anon_sym_unmanaged] = ACTIONS(3961), + [anon_sym_BANG] = ACTIONS(3961), + [anon_sym_PLUS_PLUS] = ACTIONS(3963), + [anon_sym_DASH_DASH] = ACTIONS(3963), + [anon_sym_PLUS] = ACTIONS(3961), + [anon_sym_DASH] = ACTIONS(3961), + [anon_sym_STAR] = ACTIONS(4039), + [anon_sym_SLASH] = ACTIONS(3961), + [anon_sym_PERCENT] = ACTIONS(3963), + [anon_sym_CARET] = ACTIONS(3963), + [anon_sym_PIPE] = ACTIONS(3961), + [anon_sym_AMP] = ACTIONS(3961), + [anon_sym_LT_LT] = ACTIONS(3963), + [anon_sym_GT_GT] = ACTIONS(3961), + [anon_sym_GT_GT_GT] = ACTIONS(3963), + [anon_sym_EQ_EQ] = ACTIONS(3963), + [anon_sym_BANG_EQ] = ACTIONS(3963), + [anon_sym_GT_EQ] = ACTIONS(3963), + [anon_sym_LT_EQ] = ACTIONS(3963), + [anon_sym_DOT] = ACTIONS(4042), + [anon_sym_scoped] = ACTIONS(3961), + [anon_sym_var] = ACTIONS(3961), + [anon_sym_yield] = ACTIONS(3961), + [anon_sym_switch] = ACTIONS(3961), + [anon_sym_when] = ACTIONS(3961), + [sym_discard] = ACTIONS(3961), + [anon_sym_DOT_DOT] = ACTIONS(3963), + [anon_sym_and] = ACTIONS(3961), + [anon_sym_or] = ACTIONS(3961), + [anon_sym_AMP_AMP] = ACTIONS(3963), + [anon_sym_PIPE_PIPE] = ACTIONS(3963), + [anon_sym_QMARK_QMARK] = ACTIONS(3963), + [anon_sym_from] = ACTIONS(3961), + [anon_sym_into] = ACTIONS(3961), + [anon_sym_join] = ACTIONS(3961), + [anon_sym_on] = ACTIONS(3961), + [anon_sym_equals] = ACTIONS(3961), + [anon_sym_let] = ACTIONS(3961), + [anon_sym_orderby] = ACTIONS(3961), + [anon_sym_ascending] = ACTIONS(3961), + [anon_sym_descending] = ACTIONS(3961), + [anon_sym_group] = ACTIONS(3961), + [anon_sym_by] = ACTIONS(3961), + [anon_sym_select] = ACTIONS(3961), + [anon_sym_as] = ACTIONS(3961), + [anon_sym_is] = ACTIONS(3961), + [anon_sym_DASH_GT] = ACTIONS(4044), + [anon_sym_with] = ACTIONS(3961), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_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(3963), }, [2697] = { [sym_preproc_region] = STATE(2697), @@ -445405,69 +445019,69 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2697), [sym_preproc_define] = STATE(2697), [sym_preproc_undef] = STATE(2697), - [anon_sym_SEMI] = ACTIONS(3673), - [anon_sym_EQ] = ACTIONS(3671), - [anon_sym_LBRACK] = ACTIONS(3673), - [anon_sym_COLON] = ACTIONS(3673), - [anon_sym_COMMA] = ACTIONS(3673), - [anon_sym_RBRACK] = ACTIONS(3673), - [anon_sym_LPAREN] = ACTIONS(3673), - [anon_sym_RPAREN] = ACTIONS(3673), - [anon_sym_RBRACE] = ACTIONS(3673), - [anon_sym_LT] = ACTIONS(3671), - [anon_sym_GT] = ACTIONS(3671), - [anon_sym_in] = ACTIONS(3673), - [anon_sym_QMARK] = ACTIONS(3671), - [anon_sym_BANG] = ACTIONS(3671), - [anon_sym_PLUS_PLUS] = ACTIONS(3673), - [anon_sym_DASH_DASH] = ACTIONS(3673), - [anon_sym_PLUS] = ACTIONS(3671), - [anon_sym_DASH] = ACTIONS(3671), - [anon_sym_STAR] = ACTIONS(3671), - [anon_sym_SLASH] = ACTIONS(3671), - [anon_sym_PERCENT] = ACTIONS(3671), - [anon_sym_CARET] = ACTIONS(3671), - [anon_sym_PIPE] = ACTIONS(3671), - [anon_sym_AMP] = ACTIONS(3671), - [anon_sym_LT_LT] = ACTIONS(3671), - [anon_sym_GT_GT] = ACTIONS(3671), - [anon_sym_GT_GT_GT] = ACTIONS(3671), - [anon_sym_EQ_EQ] = ACTIONS(3673), - [anon_sym_BANG_EQ] = ACTIONS(3673), - [anon_sym_GT_EQ] = ACTIONS(3673), - [anon_sym_LT_EQ] = ACTIONS(3673), - [anon_sym_DOT] = ACTIONS(3671), - [anon_sym_EQ_GT] = ACTIONS(3673), - [anon_sym_switch] = ACTIONS(3673), - [anon_sym_when] = ACTIONS(3673), - [anon_sym_DOT_DOT] = ACTIONS(3673), - [anon_sym_and] = ACTIONS(3673), - [anon_sym_or] = ACTIONS(3673), - [anon_sym_PLUS_EQ] = ACTIONS(3673), - [anon_sym_DASH_EQ] = ACTIONS(3673), - [anon_sym_STAR_EQ] = ACTIONS(3673), - [anon_sym_SLASH_EQ] = ACTIONS(3673), - [anon_sym_PERCENT_EQ] = ACTIONS(3673), - [anon_sym_AMP_EQ] = ACTIONS(3673), - [anon_sym_CARET_EQ] = ACTIONS(3673), - [anon_sym_PIPE_EQ] = ACTIONS(3673), - [anon_sym_LT_LT_EQ] = ACTIONS(3673), - [anon_sym_GT_GT_EQ] = ACTIONS(3673), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3673), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3673), - [anon_sym_AMP_AMP] = ACTIONS(3673), - [anon_sym_PIPE_PIPE] = ACTIONS(3673), - [anon_sym_QMARK_QMARK] = ACTIONS(3671), - [anon_sym_on] = ACTIONS(3673), - [anon_sym_equals] = ACTIONS(3673), - [anon_sym_by] = ACTIONS(3673), - [anon_sym_as] = ACTIONS(3673), - [anon_sym_is] = ACTIONS(3673), - [anon_sym_DASH_GT] = ACTIONS(3673), - [anon_sym_with] = ACTIONS(3673), - [aux_sym_preproc_if_token3] = ACTIONS(3673), - [aux_sym_preproc_else_token1] = ACTIONS(3673), - [aux_sym_preproc_elif_token1] = ACTIONS(3673), + [sym__identifier_token] = ACTIONS(4447), + [anon_sym_extern] = ACTIONS(4447), + [anon_sym_alias] = ACTIONS(4447), + [anon_sym_global] = ACTIONS(4447), + [anon_sym_using] = ACTIONS(4447), + [anon_sym_unsafe] = ACTIONS(4447), + [anon_sym_static] = ACTIONS(4447), + [anon_sym_LBRACK] = ACTIONS(4449), + [anon_sym_LPAREN] = ACTIONS(4449), + [anon_sym_event] = ACTIONS(4447), + [anon_sym_namespace] = ACTIONS(4447), + [anon_sym_class] = ACTIONS(4447), + [anon_sym_ref] = ACTIONS(4447), + [anon_sym_struct] = ACTIONS(4447), + [anon_sym_enum] = ACTIONS(4447), + [anon_sym_RBRACE] = ACTIONS(4449), + [anon_sym_interface] = ACTIONS(4447), + [anon_sym_delegate] = ACTIONS(4447), + [anon_sym_record] = ACTIONS(4447), + [anon_sym_abstract] = ACTIONS(4447), + [anon_sym_async] = ACTIONS(4447), + [anon_sym_const] = ACTIONS(4447), + [anon_sym_file] = ACTIONS(4447), + [anon_sym_fixed] = ACTIONS(4447), + [anon_sym_internal] = ACTIONS(4447), + [anon_sym_new] = ACTIONS(4447), + [anon_sym_override] = ACTIONS(4447), + [anon_sym_partial] = ACTIONS(4447), + [anon_sym_private] = ACTIONS(4447), + [anon_sym_protected] = ACTIONS(4447), + [anon_sym_public] = ACTIONS(4447), + [anon_sym_readonly] = ACTIONS(4447), + [anon_sym_required] = ACTIONS(4447), + [anon_sym_sealed] = ACTIONS(4447), + [anon_sym_virtual] = ACTIONS(4447), + [anon_sym_volatile] = ACTIONS(4447), + [anon_sym_where] = ACTIONS(4447), + [anon_sym_notnull] = ACTIONS(4447), + [anon_sym_unmanaged] = ACTIONS(4447), + [anon_sym_TILDE] = ACTIONS(4449), + [anon_sym_implicit] = ACTIONS(4447), + [anon_sym_explicit] = ACTIONS(4447), + [anon_sym_scoped] = ACTIONS(4447), + [anon_sym_var] = ACTIONS(4447), + [sym_predefined_type] = ACTIONS(4447), + [anon_sym_yield] = ACTIONS(4447), + [anon_sym_when] = ACTIONS(4447), + [anon_sym_from] = ACTIONS(4447), + [anon_sym_into] = ACTIONS(4447), + [anon_sym_join] = ACTIONS(4447), + [anon_sym_on] = ACTIONS(4447), + [anon_sym_equals] = ACTIONS(4447), + [anon_sym_let] = ACTIONS(4447), + [anon_sym_orderby] = ACTIONS(4447), + [anon_sym_ascending] = ACTIONS(4447), + [anon_sym_descending] = ACTIONS(4447), + [anon_sym_group] = ACTIONS(4447), + [anon_sym_by] = ACTIONS(4447), + [anon_sym_select] = ACTIONS(4447), + [aux_sym_preproc_if_token1] = ACTIONS(4449), + [aux_sym_preproc_if_token3] = ACTIONS(4449), + [aux_sym_preproc_else_token1] = ACTIONS(4449), + [aux_sym_preproc_elif_token1] = ACTIONS(4449), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -445480,10 +445094,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2698] = { - [sym__variable_designation] = STATE(3481), - [sym_parenthesized_variable_designation] = STATE(3463), - [sym_identifier] = STATE(3479), - [sym__reserved_identifier] = STATE(3177), [sym_preproc_region] = STATE(2698), [sym_preproc_endregion] = STATE(2698), [sym_preproc_line] = STATE(2698), @@ -445493,75 +445103,79 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2698), [sym_preproc_define] = STATE(2698), [sym_preproc_undef] = STATE(2698), - [sym__identifier_token] = ACTIONS(3875), - [anon_sym_alias] = ACTIONS(3877), - [anon_sym_global] = ACTIONS(3877), - [anon_sym_LBRACK] = ACTIONS(3961), - [anon_sym_LPAREN] = ACTIONS(3961), - [anon_sym_file] = ACTIONS(3877), - [anon_sym_LT] = ACTIONS(3963), - [anon_sym_GT] = ACTIONS(3963), - [anon_sym_where] = ACTIONS(3877), - [anon_sym_QMARK] = ACTIONS(3963), - [anon_sym_notnull] = ACTIONS(3877), - [anon_sym_unmanaged] = ACTIONS(3877), - [anon_sym_BANG] = ACTIONS(3963), - [anon_sym_PLUS_PLUS] = ACTIONS(3961), - [anon_sym_DASH_DASH] = ACTIONS(3961), - [anon_sym_PLUS] = ACTIONS(3963), - [anon_sym_DASH] = ACTIONS(3963), - [anon_sym_STAR] = ACTIONS(3961), - [anon_sym_SLASH] = ACTIONS(3963), - [anon_sym_PERCENT] = ACTIONS(3961), - [anon_sym_CARET] = ACTIONS(3961), - [anon_sym_PIPE] = ACTIONS(3963), - [anon_sym_AMP] = ACTIONS(3963), - [anon_sym_LT_LT] = ACTIONS(3961), - [anon_sym_GT_GT] = ACTIONS(3963), - [anon_sym_GT_GT_GT] = ACTIONS(3961), - [anon_sym_EQ_EQ] = ACTIONS(3961), - [anon_sym_BANG_EQ] = ACTIONS(3961), - [anon_sym_GT_EQ] = ACTIONS(3961), - [anon_sym_LT_EQ] = ACTIONS(3961), - [anon_sym_DOT] = ACTIONS(3963), - [anon_sym_scoped] = ACTIONS(3877), - [anon_sym_var] = ACTIONS(3877), - [anon_sym_yield] = ACTIONS(3877), - [anon_sym_switch] = ACTIONS(3963), - [anon_sym_when] = ACTIONS(3877), - [sym_discard] = ACTIONS(3897), - [anon_sym_DOT_DOT] = ACTIONS(3961), - [anon_sym_and] = ACTIONS(3963), - [anon_sym_or] = ACTIONS(3963), - [anon_sym_AMP_AMP] = ACTIONS(3961), - [anon_sym_PIPE_PIPE] = ACTIONS(3961), - [anon_sym_QMARK_QMARK] = ACTIONS(3961), - [anon_sym_from] = ACTIONS(3877), - [anon_sym_into] = ACTIONS(3877), - [anon_sym_join] = ACTIONS(3877), - [anon_sym_on] = ACTIONS(3877), - [anon_sym_equals] = ACTIONS(3877), - [anon_sym_let] = ACTIONS(3877), - [anon_sym_orderby] = ACTIONS(3877), - [anon_sym_ascending] = ACTIONS(3877), - [anon_sym_descending] = ACTIONS(3877), - [anon_sym_group] = ACTIONS(3877), - [anon_sym_by] = ACTIONS(3963), - [anon_sym_select] = ACTIONS(3877), - [anon_sym_as] = ACTIONS(3963), - [anon_sym_is] = ACTIONS(3963), - [anon_sym_DASH_GT] = ACTIONS(3961), - [anon_sym_with] = ACTIONS(3963), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_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(3638), + [anon_sym_alias] = ACTIONS(3638), + [anon_sym_global] = ACTIONS(3638), + [anon_sym_LBRACK] = ACTIONS(3640), + [anon_sym_COLON] = ACTIONS(3640), + [anon_sym_COMMA] = ACTIONS(3640), + [anon_sym_LPAREN] = ACTIONS(3640), + [anon_sym_LBRACE] = ACTIONS(3640), + [anon_sym_file] = ACTIONS(3638), + [anon_sym_LT] = ACTIONS(3638), + [anon_sym_GT] = ACTIONS(3638), + [anon_sym_where] = ACTIONS(3638), + [anon_sym_QMARK] = ACTIONS(3638), + [anon_sym_notnull] = ACTIONS(3638), + [anon_sym_unmanaged] = ACTIONS(3638), + [anon_sym_BANG] = ACTIONS(3638), + [anon_sym_PLUS_PLUS] = ACTIONS(3640), + [anon_sym_DASH_DASH] = ACTIONS(3640), + [anon_sym_PLUS] = ACTIONS(3638), + [anon_sym_DASH] = ACTIONS(3638), + [anon_sym_STAR] = ACTIONS(3640), + [anon_sym_SLASH] = ACTIONS(3638), + [anon_sym_PERCENT] = ACTIONS(3640), + [anon_sym_CARET] = ACTIONS(3640), + [anon_sym_PIPE] = ACTIONS(3638), + [anon_sym_AMP] = ACTIONS(3638), + [anon_sym_LT_LT] = ACTIONS(3640), + [anon_sym_GT_GT] = ACTIONS(3638), + [anon_sym_GT_GT_GT] = ACTIONS(3640), + [anon_sym_EQ_EQ] = ACTIONS(3640), + [anon_sym_BANG_EQ] = ACTIONS(3640), + [anon_sym_GT_EQ] = ACTIONS(3640), + [anon_sym_LT_EQ] = ACTIONS(3640), + [anon_sym_DOT] = ACTIONS(3638), + [anon_sym_scoped] = ACTIONS(3638), + [anon_sym_var] = ACTIONS(3638), + [anon_sym_yield] = ACTIONS(3638), + [anon_sym_switch] = ACTIONS(3638), + [anon_sym_when] = ACTIONS(3638), + [sym_discard] = ACTIONS(3638), + [anon_sym_DOT_DOT] = ACTIONS(3640), + [anon_sym_and] = ACTIONS(3638), + [anon_sym_or] = ACTIONS(3638), + [anon_sym_AMP_AMP] = ACTIONS(3640), + [anon_sym_PIPE_PIPE] = ACTIONS(3640), + [anon_sym_QMARK_QMARK] = ACTIONS(3640), + [anon_sym_from] = ACTIONS(3638), + [anon_sym_into] = ACTIONS(3638), + [anon_sym_join] = ACTIONS(3638), + [anon_sym_on] = ACTIONS(3638), + [anon_sym_equals] = ACTIONS(3638), + [anon_sym_let] = ACTIONS(3638), + [anon_sym_orderby] = ACTIONS(3638), + [anon_sym_ascending] = ACTIONS(3638), + [anon_sym_descending] = ACTIONS(3638), + [anon_sym_group] = ACTIONS(3638), + [anon_sym_by] = ACTIONS(3638), + [anon_sym_select] = ACTIONS(3638), + [anon_sym_as] = ACTIONS(3638), + [anon_sym_is] = ACTIONS(3638), + [anon_sym_DASH_GT] = ACTIONS(3640), + [anon_sym_with] = ACTIONS(3638), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_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(3640), }, [2699] = { [sym_preproc_region] = STATE(2699), @@ -445573,79 +445187,79 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2699), [sym_preproc_define] = STATE(2699), [sym_preproc_undef] = STATE(2699), - [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), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_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(3642), + [anon_sym_alias] = ACTIONS(3642), + [anon_sym_global] = ACTIONS(3642), + [anon_sym_LBRACK] = ACTIONS(3644), + [anon_sym_COLON] = ACTIONS(3644), + [anon_sym_COMMA] = ACTIONS(3644), + [anon_sym_LPAREN] = ACTIONS(3644), + [anon_sym_LBRACE] = ACTIONS(3644), + [anon_sym_file] = ACTIONS(3642), + [anon_sym_LT] = ACTIONS(3642), + [anon_sym_GT] = ACTIONS(3642), + [anon_sym_where] = ACTIONS(3642), + [anon_sym_QMARK] = ACTIONS(3642), + [anon_sym_notnull] = ACTIONS(3642), + [anon_sym_unmanaged] = ACTIONS(3642), + [anon_sym_BANG] = ACTIONS(3642), + [anon_sym_PLUS_PLUS] = ACTIONS(3644), + [anon_sym_DASH_DASH] = ACTIONS(3644), + [anon_sym_PLUS] = ACTIONS(3642), + [anon_sym_DASH] = ACTIONS(3642), + [anon_sym_STAR] = ACTIONS(3644), + [anon_sym_SLASH] = ACTIONS(3642), + [anon_sym_PERCENT] = ACTIONS(3644), + [anon_sym_CARET] = ACTIONS(3644), + [anon_sym_PIPE] = ACTIONS(3642), + [anon_sym_AMP] = ACTIONS(3642), + [anon_sym_LT_LT] = ACTIONS(3644), + [anon_sym_GT_GT] = ACTIONS(3642), + [anon_sym_GT_GT_GT] = ACTIONS(3644), + [anon_sym_EQ_EQ] = ACTIONS(3644), + [anon_sym_BANG_EQ] = ACTIONS(3644), + [anon_sym_GT_EQ] = ACTIONS(3644), + [anon_sym_LT_EQ] = ACTIONS(3644), + [anon_sym_DOT] = ACTIONS(3642), + [anon_sym_scoped] = ACTIONS(3642), + [anon_sym_var] = ACTIONS(3642), + [anon_sym_yield] = ACTIONS(3642), + [anon_sym_switch] = ACTIONS(3642), + [anon_sym_when] = ACTIONS(3642), + [sym_discard] = ACTIONS(3642), + [anon_sym_DOT_DOT] = ACTIONS(3644), + [anon_sym_and] = ACTIONS(3642), + [anon_sym_or] = ACTIONS(3642), + [anon_sym_AMP_AMP] = ACTIONS(3644), + [anon_sym_PIPE_PIPE] = ACTIONS(3644), + [anon_sym_QMARK_QMARK] = ACTIONS(3644), + [anon_sym_from] = ACTIONS(3642), + [anon_sym_into] = ACTIONS(3642), + [anon_sym_join] = ACTIONS(3642), + [anon_sym_on] = ACTIONS(3642), + [anon_sym_equals] = ACTIONS(3642), + [anon_sym_let] = ACTIONS(3642), + [anon_sym_orderby] = ACTIONS(3642), + [anon_sym_ascending] = ACTIONS(3642), + [anon_sym_descending] = ACTIONS(3642), + [anon_sym_group] = ACTIONS(3642), + [anon_sym_by] = ACTIONS(3642), + [anon_sym_select] = ACTIONS(3642), + [anon_sym_as] = ACTIONS(3642), + [anon_sym_is] = ACTIONS(3642), + [anon_sym_DASH_GT] = ACTIONS(3644), + [anon_sym_with] = ACTIONS(3642), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_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(3644), }, [2700] = { [sym_preproc_region] = STATE(2700), @@ -445657,69 +445271,69 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2700), [sym_preproc_define] = STATE(2700), [sym_preproc_undef] = STATE(2700), - [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), + [anon_sym_SEMI] = ACTIONS(3640), + [anon_sym_EQ] = ACTIONS(3638), + [anon_sym_LBRACK] = ACTIONS(3640), + [anon_sym_COLON] = ACTIONS(3640), + [anon_sym_COMMA] = ACTIONS(3640), + [anon_sym_RBRACK] = ACTIONS(3640), + [anon_sym_LPAREN] = ACTIONS(3640), + [anon_sym_RPAREN] = ACTIONS(3640), + [anon_sym_RBRACE] = ACTIONS(3640), + [anon_sym_LT] = ACTIONS(3638), + [anon_sym_GT] = ACTIONS(3638), + [anon_sym_in] = ACTIONS(3640), + [anon_sym_QMARK] = ACTIONS(3638), + [anon_sym_BANG] = ACTIONS(3638), + [anon_sym_PLUS_PLUS] = ACTIONS(3640), + [anon_sym_DASH_DASH] = ACTIONS(3640), + [anon_sym_PLUS] = ACTIONS(3638), + [anon_sym_DASH] = ACTIONS(3638), + [anon_sym_STAR] = ACTIONS(3638), + [anon_sym_SLASH] = ACTIONS(3638), + [anon_sym_PERCENT] = ACTIONS(3638), + [anon_sym_CARET] = ACTIONS(3638), + [anon_sym_PIPE] = ACTIONS(3638), + [anon_sym_AMP] = ACTIONS(3638), + [anon_sym_LT_LT] = ACTIONS(3638), + [anon_sym_GT_GT] = ACTIONS(3638), + [anon_sym_GT_GT_GT] = ACTIONS(3638), + [anon_sym_EQ_EQ] = ACTIONS(3640), + [anon_sym_BANG_EQ] = ACTIONS(3640), + [anon_sym_GT_EQ] = ACTIONS(3640), + [anon_sym_LT_EQ] = ACTIONS(3640), + [anon_sym_DOT] = ACTIONS(3638), + [anon_sym_EQ_GT] = ACTIONS(3640), + [anon_sym_switch] = ACTIONS(3640), + [anon_sym_when] = ACTIONS(3640), + [anon_sym_DOT_DOT] = ACTIONS(3640), + [anon_sym_and] = ACTIONS(3640), + [anon_sym_or] = ACTIONS(3640), + [anon_sym_PLUS_EQ] = ACTIONS(3640), + [anon_sym_DASH_EQ] = ACTIONS(3640), + [anon_sym_STAR_EQ] = ACTIONS(3640), + [anon_sym_SLASH_EQ] = ACTIONS(3640), + [anon_sym_PERCENT_EQ] = ACTIONS(3640), + [anon_sym_AMP_EQ] = ACTIONS(3640), + [anon_sym_CARET_EQ] = ACTIONS(3640), + [anon_sym_PIPE_EQ] = ACTIONS(3640), + [anon_sym_LT_LT_EQ] = ACTIONS(3640), + [anon_sym_GT_GT_EQ] = ACTIONS(3640), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3640), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3640), + [anon_sym_AMP_AMP] = ACTIONS(3640), + [anon_sym_PIPE_PIPE] = ACTIONS(3640), + [anon_sym_QMARK_QMARK] = ACTIONS(3638), + [anon_sym_on] = ACTIONS(3640), + [anon_sym_equals] = ACTIONS(3640), + [anon_sym_by] = ACTIONS(3640), + [anon_sym_as] = ACTIONS(3640), + [anon_sym_is] = ACTIONS(3640), + [anon_sym_DASH_GT] = ACTIONS(3640), + [anon_sym_with] = ACTIONS(3640), + [aux_sym_preproc_if_token3] = ACTIONS(3640), + [aux_sym_preproc_else_token1] = ACTIONS(3640), + [aux_sym_preproc_elif_token1] = ACTIONS(3640), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -445741,79 +445355,79 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2701), [sym_preproc_define] = STATE(2701), [sym_preproc_undef] = STATE(2701), - [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), + [sym__identifier_token] = ACTIONS(3961), + [anon_sym_alias] = ACTIONS(3961), + [anon_sym_global] = ACTIONS(3961), + [anon_sym_LBRACK] = ACTIONS(3963), + [anon_sym_COLON] = ACTIONS(3963), + [anon_sym_COMMA] = ACTIONS(3963), + [anon_sym_LPAREN] = ACTIONS(3963), + [anon_sym_LBRACE] = ACTIONS(3963), + [anon_sym_file] = ACTIONS(3961), + [anon_sym_LT] = ACTIONS(3961), + [anon_sym_GT] = ACTIONS(3961), + [anon_sym_where] = ACTIONS(3961), + [anon_sym_QMARK] = ACTIONS(3961), + [anon_sym_notnull] = ACTIONS(3961), + [anon_sym_unmanaged] = ACTIONS(3961), + [anon_sym_BANG] = ACTIONS(3961), + [anon_sym_PLUS_PLUS] = ACTIONS(3963), + [anon_sym_DASH_DASH] = ACTIONS(3963), + [anon_sym_PLUS] = ACTIONS(3961), + [anon_sym_DASH] = ACTIONS(3961), + [anon_sym_STAR] = ACTIONS(3963), + [anon_sym_SLASH] = ACTIONS(3961), + [anon_sym_PERCENT] = ACTIONS(3963), + [anon_sym_CARET] = ACTIONS(3963), + [anon_sym_PIPE] = ACTIONS(3961), + [anon_sym_AMP] = ACTIONS(3961), + [anon_sym_LT_LT] = ACTIONS(3963), + [anon_sym_GT_GT] = ACTIONS(3961), + [anon_sym_GT_GT_GT] = ACTIONS(3963), + [anon_sym_EQ_EQ] = ACTIONS(3963), + [anon_sym_BANG_EQ] = ACTIONS(3963), + [anon_sym_GT_EQ] = ACTIONS(3963), + [anon_sym_LT_EQ] = ACTIONS(3963), + [anon_sym_DOT] = ACTIONS(3961), + [anon_sym_scoped] = ACTIONS(3961), + [anon_sym_var] = ACTIONS(3961), + [anon_sym_yield] = ACTIONS(3961), + [anon_sym_switch] = ACTIONS(3961), + [anon_sym_when] = ACTIONS(3961), + [sym_discard] = ACTIONS(3961), + [anon_sym_DOT_DOT] = ACTIONS(3963), + [anon_sym_and] = ACTIONS(3961), + [anon_sym_or] = ACTIONS(3961), + [anon_sym_AMP_AMP] = ACTIONS(3963), + [anon_sym_PIPE_PIPE] = ACTIONS(3963), + [anon_sym_QMARK_QMARK] = ACTIONS(3963), + [anon_sym_from] = ACTIONS(3961), + [anon_sym_into] = ACTIONS(3961), + [anon_sym_join] = ACTIONS(3961), + [anon_sym_on] = ACTIONS(3961), + [anon_sym_equals] = ACTIONS(3961), + [anon_sym_let] = ACTIONS(3961), + [anon_sym_orderby] = ACTIONS(3961), + [anon_sym_ascending] = ACTIONS(3961), + [anon_sym_descending] = ACTIONS(3961), + [anon_sym_group] = ACTIONS(3961), + [anon_sym_by] = ACTIONS(3961), + [anon_sym_select] = ACTIONS(3961), + [anon_sym_as] = ACTIONS(3961), + [anon_sym_is] = ACTIONS(3961), + [anon_sym_DASH_GT] = ACTIONS(3963), + [anon_sym_with] = ACTIONS(3961), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_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(3963), }, [2702] = { [sym_preproc_region] = STATE(2702), @@ -445825,68 +445439,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(4116), - [anon_sym_alias] = ACTIONS(4116), - [anon_sym_global] = ACTIONS(4116), - [anon_sym_LBRACK] = ACTIONS(4118), - [anon_sym_COLON] = ACTIONS(4118), - [anon_sym_COMMA] = ACTIONS(4118), - [anon_sym_LPAREN] = ACTIONS(4118), - [anon_sym_LBRACE] = ACTIONS(4118), - [anon_sym_file] = ACTIONS(4116), - [anon_sym_LT] = ACTIONS(4116), - [anon_sym_GT] = ACTIONS(4116), - [anon_sym_where] = ACTIONS(4116), - [anon_sym_QMARK] = ACTIONS(4116), - [anon_sym_notnull] = ACTIONS(4116), - [anon_sym_unmanaged] = ACTIONS(4116), - [anon_sym_BANG] = ACTIONS(4116), - [anon_sym_PLUS_PLUS] = ACTIONS(4118), - [anon_sym_DASH_DASH] = ACTIONS(4118), - [anon_sym_PLUS] = ACTIONS(4116), - [anon_sym_DASH] = ACTIONS(4116), - [anon_sym_STAR] = ACTIONS(4118), - [anon_sym_SLASH] = ACTIONS(4116), - [anon_sym_PERCENT] = ACTIONS(4118), - [anon_sym_CARET] = ACTIONS(4118), - [anon_sym_PIPE] = ACTIONS(4116), - [anon_sym_AMP] = ACTIONS(4116), - [anon_sym_LT_LT] = ACTIONS(4118), - [anon_sym_GT_GT] = ACTIONS(4116), - [anon_sym_GT_GT_GT] = ACTIONS(4118), - [anon_sym_EQ_EQ] = ACTIONS(4118), - [anon_sym_BANG_EQ] = ACTIONS(4118), - [anon_sym_GT_EQ] = ACTIONS(4118), - [anon_sym_LT_EQ] = ACTIONS(4118), - [anon_sym_DOT] = ACTIONS(4116), - [anon_sym_scoped] = ACTIONS(4116), - [anon_sym_var] = ACTIONS(4116), - [anon_sym_yield] = ACTIONS(4116), - [anon_sym_switch] = ACTIONS(4116), - [anon_sym_when] = ACTIONS(4116), - [sym_discard] = ACTIONS(4116), - [anon_sym_DOT_DOT] = ACTIONS(4118), - [anon_sym_and] = ACTIONS(4116), - [anon_sym_or] = ACTIONS(4116), - [anon_sym_AMP_AMP] = ACTIONS(4118), - [anon_sym_PIPE_PIPE] = ACTIONS(4118), - [anon_sym_QMARK_QMARK] = ACTIONS(4118), - [anon_sym_from] = ACTIONS(4116), - [anon_sym_into] = ACTIONS(4116), - [anon_sym_join] = ACTIONS(4116), - [anon_sym_on] = ACTIONS(4116), - [anon_sym_equals] = ACTIONS(4116), - [anon_sym_let] = ACTIONS(4116), - [anon_sym_orderby] = ACTIONS(4116), - [anon_sym_ascending] = ACTIONS(4116), - [anon_sym_descending] = ACTIONS(4116), - [anon_sym_group] = ACTIONS(4116), - [anon_sym_by] = ACTIONS(4116), - [anon_sym_select] = ACTIONS(4116), - [anon_sym_as] = ACTIONS(4116), - [anon_sym_is] = ACTIONS(4116), - [anon_sym_DASH_GT] = ACTIONS(4118), - [anon_sym_with] = ACTIONS(4116), + [sym__identifier_token] = ACTIONS(4451), + [anon_sym_extern] = ACTIONS(4451), + [anon_sym_alias] = ACTIONS(4451), + [anon_sym_global] = ACTIONS(4451), + [anon_sym_using] = ACTIONS(4451), + [anon_sym_unsafe] = ACTIONS(4451), + [anon_sym_static] = ACTIONS(4451), + [anon_sym_LBRACK] = ACTIONS(4453), + [anon_sym_LPAREN] = ACTIONS(4453), + [anon_sym_event] = ACTIONS(4451), + [anon_sym_namespace] = ACTIONS(4451), + [anon_sym_class] = ACTIONS(4451), + [anon_sym_ref] = ACTIONS(4451), + [anon_sym_struct] = ACTIONS(4451), + [anon_sym_enum] = ACTIONS(4451), + [anon_sym_RBRACE] = ACTIONS(4453), + [anon_sym_interface] = ACTIONS(4451), + [anon_sym_delegate] = ACTIONS(4451), + [anon_sym_record] = ACTIONS(4451), + [anon_sym_abstract] = ACTIONS(4451), + [anon_sym_async] = ACTIONS(4451), + [anon_sym_const] = ACTIONS(4451), + [anon_sym_file] = ACTIONS(4451), + [anon_sym_fixed] = ACTIONS(4451), + [anon_sym_internal] = ACTIONS(4451), + [anon_sym_new] = ACTIONS(4451), + [anon_sym_override] = ACTIONS(4451), + [anon_sym_partial] = ACTIONS(4451), + [anon_sym_private] = ACTIONS(4451), + [anon_sym_protected] = ACTIONS(4451), + [anon_sym_public] = ACTIONS(4451), + [anon_sym_readonly] = ACTIONS(4451), + [anon_sym_required] = ACTIONS(4451), + [anon_sym_sealed] = ACTIONS(4451), + [anon_sym_virtual] = ACTIONS(4451), + [anon_sym_volatile] = ACTIONS(4451), + [anon_sym_where] = ACTIONS(4451), + [anon_sym_notnull] = ACTIONS(4451), + [anon_sym_unmanaged] = ACTIONS(4451), + [anon_sym_TILDE] = ACTIONS(4453), + [anon_sym_implicit] = ACTIONS(4451), + [anon_sym_explicit] = ACTIONS(4451), + [anon_sym_scoped] = ACTIONS(4451), + [anon_sym_var] = ACTIONS(4451), + [sym_predefined_type] = ACTIONS(4451), + [anon_sym_yield] = ACTIONS(4451), + [anon_sym_when] = ACTIONS(4451), + [anon_sym_from] = ACTIONS(4451), + [anon_sym_into] = ACTIONS(4451), + [anon_sym_join] = ACTIONS(4451), + [anon_sym_on] = ACTIONS(4451), + [anon_sym_equals] = ACTIONS(4451), + [anon_sym_let] = ACTIONS(4451), + [anon_sym_orderby] = ACTIONS(4451), + [anon_sym_ascending] = ACTIONS(4451), + [anon_sym_descending] = ACTIONS(4451), + [anon_sym_group] = ACTIONS(4451), + [anon_sym_by] = ACTIONS(4451), + [anon_sym_select] = ACTIONS(4451), + [aux_sym_preproc_if_token1] = ACTIONS(4453), + [aux_sym_preproc_if_token3] = ACTIONS(4453), + [aux_sym_preproc_else_token1] = ACTIONS(4453), + [aux_sym_preproc_elif_token1] = ACTIONS(4453), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -445897,7 +445512,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(4118), }, [2703] = { [sym_preproc_region] = STATE(2703), @@ -445909,69 +445523,69 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2703), [sym_preproc_define] = STATE(2703), [sym_preproc_undef] = STATE(2703), - [sym__identifier_token] = ACTIONS(3327), - [anon_sym_extern] = ACTIONS(3327), - [anon_sym_alias] = ACTIONS(3327), - [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_event] = 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_RBRACE] = 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_TILDE] = ACTIONS(3329), - [anon_sym_implicit] = ACTIONS(3327), - [anon_sym_explicit] = ACTIONS(3327), - [anon_sym_scoped] = ACTIONS(3327), - [anon_sym_var] = ACTIONS(3327), - [sym_predefined_type] = ACTIONS(3327), - [anon_sym_yield] = ACTIONS(3327), - [anon_sym_when] = ACTIONS(3327), - [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), - [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), + [sym__identifier_token] = ACTIONS(4455), + [anon_sym_extern] = ACTIONS(4455), + [anon_sym_alias] = ACTIONS(4455), + [anon_sym_global] = ACTIONS(4455), + [anon_sym_using] = ACTIONS(4455), + [anon_sym_unsafe] = ACTIONS(4455), + [anon_sym_static] = ACTIONS(4455), + [anon_sym_LBRACK] = ACTIONS(4457), + [anon_sym_LPAREN] = ACTIONS(4457), + [anon_sym_event] = ACTIONS(4455), + [anon_sym_namespace] = ACTIONS(4455), + [anon_sym_class] = ACTIONS(4455), + [anon_sym_ref] = ACTIONS(4455), + [anon_sym_struct] = ACTIONS(4455), + [anon_sym_enum] = ACTIONS(4455), + [anon_sym_RBRACE] = ACTIONS(4457), + [anon_sym_interface] = ACTIONS(4455), + [anon_sym_delegate] = ACTIONS(4455), + [anon_sym_record] = ACTIONS(4455), + [anon_sym_abstract] = ACTIONS(4455), + [anon_sym_async] = ACTIONS(4455), + [anon_sym_const] = ACTIONS(4455), + [anon_sym_file] = ACTIONS(4455), + [anon_sym_fixed] = ACTIONS(4455), + [anon_sym_internal] = ACTIONS(4455), + [anon_sym_new] = ACTIONS(4455), + [anon_sym_override] = ACTIONS(4455), + [anon_sym_partial] = ACTIONS(4455), + [anon_sym_private] = ACTIONS(4455), + [anon_sym_protected] = ACTIONS(4455), + [anon_sym_public] = ACTIONS(4455), + [anon_sym_readonly] = ACTIONS(4455), + [anon_sym_required] = ACTIONS(4455), + [anon_sym_sealed] = ACTIONS(4455), + [anon_sym_virtual] = ACTIONS(4455), + [anon_sym_volatile] = ACTIONS(4455), + [anon_sym_where] = ACTIONS(4455), + [anon_sym_notnull] = ACTIONS(4455), + [anon_sym_unmanaged] = ACTIONS(4455), + [anon_sym_TILDE] = ACTIONS(4457), + [anon_sym_implicit] = ACTIONS(4455), + [anon_sym_explicit] = ACTIONS(4455), + [anon_sym_scoped] = ACTIONS(4455), + [anon_sym_var] = ACTIONS(4455), + [sym_predefined_type] = ACTIONS(4455), + [anon_sym_yield] = ACTIONS(4455), + [anon_sym_when] = ACTIONS(4455), + [anon_sym_from] = ACTIONS(4455), + [anon_sym_into] = ACTIONS(4455), + [anon_sym_join] = ACTIONS(4455), + [anon_sym_on] = ACTIONS(4455), + [anon_sym_equals] = ACTIONS(4455), + [anon_sym_let] = ACTIONS(4455), + [anon_sym_orderby] = ACTIONS(4455), + [anon_sym_ascending] = ACTIONS(4455), + [anon_sym_descending] = ACTIONS(4455), + [anon_sym_group] = ACTIONS(4455), + [anon_sym_by] = ACTIONS(4455), + [anon_sym_select] = ACTIONS(4455), + [aux_sym_preproc_if_token1] = ACTIONS(4457), + [aux_sym_preproc_if_token3] = ACTIONS(4457), + [aux_sym_preproc_else_token1] = ACTIONS(4457), + [aux_sym_preproc_elif_token1] = ACTIONS(4457), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -445993,79 +445607,79 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2704), [sym_preproc_define] = STATE(2704), [sym_preproc_undef] = STATE(2704), - [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), + [sym__identifier_token] = ACTIONS(3655), + [anon_sym_alias] = ACTIONS(3655), + [anon_sym_global] = ACTIONS(3655), + [anon_sym_LBRACK] = ACTIONS(3657), + [anon_sym_COLON] = ACTIONS(3657), + [anon_sym_COMMA] = ACTIONS(3657), + [anon_sym_LPAREN] = ACTIONS(3657), + [anon_sym_LBRACE] = ACTIONS(3657), + [anon_sym_file] = ACTIONS(3655), + [anon_sym_LT] = ACTIONS(3655), + [anon_sym_GT] = ACTIONS(3655), + [anon_sym_where] = ACTIONS(3655), + [anon_sym_QMARK] = ACTIONS(3655), + [anon_sym_notnull] = ACTIONS(3655), + [anon_sym_unmanaged] = ACTIONS(3655), + [anon_sym_BANG] = ACTIONS(3655), + [anon_sym_PLUS_PLUS] = ACTIONS(3657), + [anon_sym_DASH_DASH] = ACTIONS(3657), + [anon_sym_PLUS] = ACTIONS(3655), + [anon_sym_DASH] = ACTIONS(3655), + [anon_sym_STAR] = ACTIONS(3657), + [anon_sym_SLASH] = ACTIONS(3655), + [anon_sym_PERCENT] = ACTIONS(3657), + [anon_sym_CARET] = ACTIONS(3657), + [anon_sym_PIPE] = ACTIONS(3655), + [anon_sym_AMP] = ACTIONS(3655), + [anon_sym_LT_LT] = ACTIONS(3657), + [anon_sym_GT_GT] = ACTIONS(3655), + [anon_sym_GT_GT_GT] = ACTIONS(3657), + [anon_sym_EQ_EQ] = ACTIONS(3657), + [anon_sym_BANG_EQ] = ACTIONS(3657), + [anon_sym_GT_EQ] = ACTIONS(3657), + [anon_sym_LT_EQ] = ACTIONS(3657), + [anon_sym_DOT] = ACTIONS(3655), + [anon_sym_scoped] = ACTIONS(3655), + [anon_sym_var] = ACTIONS(3655), + [anon_sym_yield] = ACTIONS(3655), + [anon_sym_switch] = ACTIONS(3655), + [anon_sym_when] = ACTIONS(3655), + [sym_discard] = ACTIONS(3655), + [anon_sym_DOT_DOT] = ACTIONS(3657), + [anon_sym_and] = ACTIONS(3655), + [anon_sym_or] = ACTIONS(3655), + [anon_sym_AMP_AMP] = ACTIONS(3657), + [anon_sym_PIPE_PIPE] = ACTIONS(3657), + [anon_sym_QMARK_QMARK] = ACTIONS(3657), + [anon_sym_from] = ACTIONS(3655), + [anon_sym_into] = ACTIONS(3655), + [anon_sym_join] = ACTIONS(3655), + [anon_sym_on] = ACTIONS(3655), + [anon_sym_equals] = ACTIONS(3655), + [anon_sym_let] = ACTIONS(3655), + [anon_sym_orderby] = ACTIONS(3655), + [anon_sym_ascending] = ACTIONS(3655), + [anon_sym_descending] = ACTIONS(3655), + [anon_sym_group] = ACTIONS(3655), + [anon_sym_by] = ACTIONS(3655), + [anon_sym_select] = ACTIONS(3655), + [anon_sym_as] = ACTIONS(3655), + [anon_sym_is] = ACTIONS(3655), + [anon_sym_DASH_GT] = ACTIONS(3657), + [anon_sym_with] = ACTIONS(3655), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_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(3657), }, [2705] = { [sym_preproc_region] = STATE(2705), @@ -446077,69 +445691,69 @@ 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(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), + [sym__identifier_token] = ACTIONS(4459), + [anon_sym_extern] = ACTIONS(4459), + [anon_sym_alias] = ACTIONS(4459), + [anon_sym_global] = ACTIONS(4459), + [anon_sym_using] = ACTIONS(4459), + [anon_sym_unsafe] = ACTIONS(4459), + [anon_sym_static] = ACTIONS(4459), + [anon_sym_LBRACK] = ACTIONS(4461), + [anon_sym_LPAREN] = ACTIONS(4461), + [anon_sym_event] = ACTIONS(4459), + [anon_sym_namespace] = ACTIONS(4459), + [anon_sym_class] = ACTIONS(4459), + [anon_sym_ref] = ACTIONS(4459), + [anon_sym_struct] = ACTIONS(4459), + [anon_sym_enum] = ACTIONS(4459), + [anon_sym_RBRACE] = ACTIONS(4461), + [anon_sym_interface] = ACTIONS(4459), + [anon_sym_delegate] = ACTIONS(4459), + [anon_sym_record] = ACTIONS(4459), + [anon_sym_abstract] = ACTIONS(4459), + [anon_sym_async] = ACTIONS(4459), + [anon_sym_const] = ACTIONS(4459), + [anon_sym_file] = ACTIONS(4459), + [anon_sym_fixed] = ACTIONS(4459), + [anon_sym_internal] = ACTIONS(4459), + [anon_sym_new] = ACTIONS(4459), + [anon_sym_override] = ACTIONS(4459), + [anon_sym_partial] = ACTIONS(4459), + [anon_sym_private] = ACTIONS(4459), + [anon_sym_protected] = ACTIONS(4459), + [anon_sym_public] = ACTIONS(4459), + [anon_sym_readonly] = ACTIONS(4459), + [anon_sym_required] = ACTIONS(4459), + [anon_sym_sealed] = ACTIONS(4459), + [anon_sym_virtual] = ACTIONS(4459), + [anon_sym_volatile] = ACTIONS(4459), + [anon_sym_where] = ACTIONS(4459), + [anon_sym_notnull] = ACTIONS(4459), + [anon_sym_unmanaged] = ACTIONS(4459), + [anon_sym_TILDE] = ACTIONS(4461), + [anon_sym_implicit] = ACTIONS(4459), + [anon_sym_explicit] = ACTIONS(4459), + [anon_sym_scoped] = ACTIONS(4459), + [anon_sym_var] = ACTIONS(4459), + [sym_predefined_type] = ACTIONS(4459), + [anon_sym_yield] = ACTIONS(4459), + [anon_sym_when] = ACTIONS(4459), + [anon_sym_from] = ACTIONS(4459), + [anon_sym_into] = ACTIONS(4459), + [anon_sym_join] = ACTIONS(4459), + [anon_sym_on] = ACTIONS(4459), + [anon_sym_equals] = ACTIONS(4459), + [anon_sym_let] = ACTIONS(4459), + [anon_sym_orderby] = ACTIONS(4459), + [anon_sym_ascending] = ACTIONS(4459), + [anon_sym_descending] = ACTIONS(4459), + [anon_sym_group] = ACTIONS(4459), + [anon_sym_by] = ACTIONS(4459), + [anon_sym_select] = ACTIONS(4459), + [aux_sym_preproc_if_token1] = ACTIONS(4461), + [aux_sym_preproc_if_token3] = ACTIONS(4461), + [aux_sym_preproc_else_token1] = ACTIONS(4461), + [aux_sym_preproc_elif_token1] = ACTIONS(4461), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -446161,79 +445775,79 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2706), [sym_preproc_define] = STATE(2706), [sym_preproc_undef] = STATE(2706), - [sym__identifier_token] = ACTIONS(3994), - [anon_sym_alias] = ACTIONS(3994), - [anon_sym_global] = ACTIONS(3994), - [anon_sym_LBRACK] = ACTIONS(3996), - [anon_sym_COLON] = ACTIONS(3996), - [anon_sym_COMMA] = ACTIONS(3996), - [anon_sym_LPAREN] = ACTIONS(3996), - [anon_sym_LBRACE] = ACTIONS(3996), - [anon_sym_file] = ACTIONS(3994), - [anon_sym_LT] = ACTIONS(3994), - [anon_sym_GT] = ACTIONS(3994), - [anon_sym_where] = ACTIONS(3994), - [anon_sym_QMARK] = ACTIONS(3994), - [anon_sym_notnull] = ACTIONS(3994), - [anon_sym_unmanaged] = ACTIONS(3994), - [anon_sym_BANG] = ACTIONS(3994), - [anon_sym_PLUS_PLUS] = ACTIONS(3996), - [anon_sym_DASH_DASH] = ACTIONS(3996), - [anon_sym_PLUS] = ACTIONS(3994), - [anon_sym_DASH] = ACTIONS(3994), - [anon_sym_STAR] = ACTIONS(3996), - [anon_sym_SLASH] = ACTIONS(3994), - [anon_sym_PERCENT] = ACTIONS(3996), - [anon_sym_CARET] = ACTIONS(3996), - [anon_sym_PIPE] = ACTIONS(3994), - [anon_sym_AMP] = ACTIONS(3994), - [anon_sym_LT_LT] = ACTIONS(3996), - [anon_sym_GT_GT] = ACTIONS(3994), - [anon_sym_GT_GT_GT] = ACTIONS(3996), - [anon_sym_EQ_EQ] = ACTIONS(3996), - [anon_sym_BANG_EQ] = ACTIONS(3996), - [anon_sym_GT_EQ] = ACTIONS(3996), - [anon_sym_LT_EQ] = ACTIONS(3996), - [anon_sym_DOT] = ACTIONS(3994), - [anon_sym_scoped] = ACTIONS(3994), - [anon_sym_var] = ACTIONS(3994), - [anon_sym_yield] = ACTIONS(3994), - [anon_sym_switch] = ACTIONS(3994), - [anon_sym_when] = ACTIONS(3994), - [sym_discard] = ACTIONS(3994), - [anon_sym_DOT_DOT] = ACTIONS(3996), - [anon_sym_and] = ACTIONS(3994), - [anon_sym_or] = ACTIONS(3994), - [anon_sym_AMP_AMP] = ACTIONS(3996), - [anon_sym_PIPE_PIPE] = ACTIONS(3996), - [anon_sym_QMARK_QMARK] = ACTIONS(3996), - [anon_sym_from] = ACTIONS(3994), - [anon_sym_into] = ACTIONS(3994), - [anon_sym_join] = ACTIONS(3994), - [anon_sym_on] = ACTIONS(3994), - [anon_sym_equals] = ACTIONS(3994), - [anon_sym_let] = ACTIONS(3994), - [anon_sym_orderby] = ACTIONS(3994), - [anon_sym_ascending] = ACTIONS(3994), - [anon_sym_descending] = ACTIONS(3994), - [anon_sym_group] = ACTIONS(3994), - [anon_sym_by] = ACTIONS(3994), - [anon_sym_select] = ACTIONS(3994), - [anon_sym_as] = ACTIONS(3994), - [anon_sym_is] = ACTIONS(3994), - [anon_sym_DASH_GT] = ACTIONS(3996), - [anon_sym_with] = ACTIONS(3994), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_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(3996), + [sym__identifier_token] = ACTIONS(3961), + [anon_sym_alias] = ACTIONS(3961), + [anon_sym_global] = ACTIONS(3961), + [anon_sym_LBRACK] = ACTIONS(4033), + [anon_sym_COLON] = ACTIONS(3963), + [anon_sym_COMMA] = ACTIONS(3963), + [anon_sym_LPAREN] = ACTIONS(3963), + [anon_sym_LBRACE] = ACTIONS(3963), + [anon_sym_file] = ACTIONS(3961), + [anon_sym_LT] = ACTIONS(3961), + [anon_sym_GT] = ACTIONS(3961), + [anon_sym_where] = ACTIONS(3961), + [anon_sym_QMARK] = ACTIONS(4298), + [anon_sym_notnull] = ACTIONS(3961), + [anon_sym_unmanaged] = ACTIONS(3961), + [anon_sym_BANG] = ACTIONS(3961), + [anon_sym_PLUS_PLUS] = ACTIONS(3963), + [anon_sym_DASH_DASH] = ACTIONS(3963), + [anon_sym_PLUS] = ACTIONS(3961), + [anon_sym_DASH] = ACTIONS(3961), + [anon_sym_STAR] = ACTIONS(4039), + [anon_sym_SLASH] = ACTIONS(3961), + [anon_sym_PERCENT] = ACTIONS(3963), + [anon_sym_CARET] = ACTIONS(3963), + [anon_sym_PIPE] = ACTIONS(3961), + [anon_sym_AMP] = ACTIONS(3961), + [anon_sym_LT_LT] = ACTIONS(3963), + [anon_sym_GT_GT] = ACTIONS(3961), + [anon_sym_GT_GT_GT] = ACTIONS(3963), + [anon_sym_EQ_EQ] = ACTIONS(3963), + [anon_sym_BANG_EQ] = ACTIONS(3963), + [anon_sym_GT_EQ] = ACTIONS(3963), + [anon_sym_LT_EQ] = ACTIONS(3963), + [anon_sym_DOT] = ACTIONS(4463), + [anon_sym_scoped] = ACTIONS(3961), + [anon_sym_var] = ACTIONS(3961), + [anon_sym_yield] = ACTIONS(3961), + [anon_sym_switch] = ACTIONS(3961), + [anon_sym_when] = ACTIONS(3961), + [sym_discard] = ACTIONS(3961), + [anon_sym_DOT_DOT] = ACTIONS(3963), + [anon_sym_and] = ACTIONS(3961), + [anon_sym_or] = ACTIONS(3961), + [anon_sym_AMP_AMP] = ACTIONS(3963), + [anon_sym_PIPE_PIPE] = ACTIONS(3963), + [anon_sym_QMARK_QMARK] = ACTIONS(3963), + [anon_sym_from] = ACTIONS(3961), + [anon_sym_into] = ACTIONS(3961), + [anon_sym_join] = ACTIONS(3961), + [anon_sym_on] = ACTIONS(3961), + [anon_sym_equals] = ACTIONS(3961), + [anon_sym_let] = ACTIONS(3961), + [anon_sym_orderby] = ACTIONS(3961), + [anon_sym_ascending] = ACTIONS(3961), + [anon_sym_descending] = ACTIONS(3961), + [anon_sym_group] = ACTIONS(3961), + [anon_sym_by] = ACTIONS(3961), + [anon_sym_select] = ACTIONS(3961), + [anon_sym_as] = ACTIONS(3961), + [anon_sym_is] = ACTIONS(3961), + [anon_sym_DASH_GT] = ACTIONS(4429), + [anon_sym_with] = ACTIONS(3961), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_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(3963), }, [2707] = { [sym_preproc_region] = STATE(2707), @@ -446245,69 +445859,69 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2707), [sym_preproc_define] = STATE(2707), [sym_preproc_undef] = STATE(2707), - [sym__identifier_token] = ACTIONS(4398), - [anon_sym_extern] = ACTIONS(4398), - [anon_sym_alias] = ACTIONS(4398), - [anon_sym_global] = ACTIONS(4398), - [anon_sym_using] = ACTIONS(4398), - [anon_sym_unsafe] = ACTIONS(4398), - [anon_sym_static] = ACTIONS(4398), - [anon_sym_LBRACK] = ACTIONS(4400), - [anon_sym_LPAREN] = ACTIONS(4400), - [anon_sym_event] = ACTIONS(4398), - [anon_sym_namespace] = ACTIONS(4398), - [anon_sym_class] = ACTIONS(4398), - [anon_sym_ref] = ACTIONS(4398), - [anon_sym_struct] = ACTIONS(4398), - [anon_sym_enum] = ACTIONS(4398), - [anon_sym_RBRACE] = ACTIONS(4400), - [anon_sym_interface] = ACTIONS(4398), - [anon_sym_delegate] = ACTIONS(4398), - [anon_sym_record] = ACTIONS(4398), - [anon_sym_abstract] = ACTIONS(4398), - [anon_sym_async] = ACTIONS(4398), - [anon_sym_const] = ACTIONS(4398), - [anon_sym_file] = ACTIONS(4398), - [anon_sym_fixed] = ACTIONS(4398), - [anon_sym_internal] = ACTIONS(4398), - [anon_sym_new] = ACTIONS(4398), - [anon_sym_override] = ACTIONS(4398), - [anon_sym_partial] = ACTIONS(4398), - [anon_sym_private] = ACTIONS(4398), - [anon_sym_protected] = ACTIONS(4398), - [anon_sym_public] = ACTIONS(4398), - [anon_sym_readonly] = ACTIONS(4398), - [anon_sym_required] = ACTIONS(4398), - [anon_sym_sealed] = ACTIONS(4398), - [anon_sym_virtual] = ACTIONS(4398), - [anon_sym_volatile] = ACTIONS(4398), - [anon_sym_where] = ACTIONS(4398), - [anon_sym_notnull] = ACTIONS(4398), - [anon_sym_unmanaged] = ACTIONS(4398), - [anon_sym_TILDE] = ACTIONS(4400), - [anon_sym_implicit] = ACTIONS(4398), - [anon_sym_explicit] = ACTIONS(4398), - [anon_sym_scoped] = ACTIONS(4398), - [anon_sym_var] = ACTIONS(4398), - [sym_predefined_type] = ACTIONS(4398), - [anon_sym_yield] = ACTIONS(4398), - [anon_sym_when] = ACTIONS(4398), - [anon_sym_from] = ACTIONS(4398), - [anon_sym_into] = ACTIONS(4398), - [anon_sym_join] = ACTIONS(4398), - [anon_sym_on] = ACTIONS(4398), - [anon_sym_equals] = ACTIONS(4398), - [anon_sym_let] = ACTIONS(4398), - [anon_sym_orderby] = ACTIONS(4398), - [anon_sym_ascending] = ACTIONS(4398), - [anon_sym_descending] = ACTIONS(4398), - [anon_sym_group] = ACTIONS(4398), - [anon_sym_by] = ACTIONS(4398), - [anon_sym_select] = ACTIONS(4398), - [aux_sym_preproc_if_token1] = ACTIONS(4400), - [aux_sym_preproc_if_token3] = ACTIONS(4400), - [aux_sym_preproc_else_token1] = ACTIONS(4400), - [aux_sym_preproc_elif_token1] = ACTIONS(4400), + [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), @@ -446329,79 +445943,79 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2708), [sym_preproc_define] = STATE(2708), [sym_preproc_undef] = STATE(2708), - [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), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_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(3659), + [anon_sym_alias] = ACTIONS(3659), + [anon_sym_global] = ACTIONS(3659), + [anon_sym_LBRACK] = ACTIONS(3661), + [anon_sym_COLON] = ACTIONS(3661), + [anon_sym_COMMA] = ACTIONS(3661), + [anon_sym_LPAREN] = ACTIONS(3661), + [anon_sym_LBRACE] = ACTIONS(3661), + [anon_sym_file] = ACTIONS(3659), + [anon_sym_LT] = ACTIONS(3659), + [anon_sym_GT] = ACTIONS(3659), + [anon_sym_where] = ACTIONS(3659), + [anon_sym_QMARK] = ACTIONS(3659), + [anon_sym_notnull] = ACTIONS(3659), + [anon_sym_unmanaged] = ACTIONS(3659), + [anon_sym_BANG] = ACTIONS(3659), + [anon_sym_PLUS_PLUS] = ACTIONS(3661), + [anon_sym_DASH_DASH] = ACTIONS(3661), + [anon_sym_PLUS] = ACTIONS(3659), + [anon_sym_DASH] = ACTIONS(3659), + [anon_sym_STAR] = ACTIONS(3661), + [anon_sym_SLASH] = ACTIONS(3659), + [anon_sym_PERCENT] = ACTIONS(3661), + [anon_sym_CARET] = ACTIONS(3661), + [anon_sym_PIPE] = ACTIONS(3659), + [anon_sym_AMP] = ACTIONS(3659), + [anon_sym_LT_LT] = ACTIONS(3661), + [anon_sym_GT_GT] = ACTIONS(3659), + [anon_sym_GT_GT_GT] = ACTIONS(3661), + [anon_sym_EQ_EQ] = ACTIONS(3661), + [anon_sym_BANG_EQ] = ACTIONS(3661), + [anon_sym_GT_EQ] = ACTIONS(3661), + [anon_sym_LT_EQ] = ACTIONS(3661), + [anon_sym_DOT] = ACTIONS(3659), + [anon_sym_scoped] = ACTIONS(3659), + [anon_sym_var] = ACTIONS(3659), + [anon_sym_yield] = ACTIONS(3659), + [anon_sym_switch] = ACTIONS(3659), + [anon_sym_when] = ACTIONS(3659), + [sym_discard] = ACTIONS(3659), + [anon_sym_DOT_DOT] = ACTIONS(3661), + [anon_sym_and] = ACTIONS(3659), + [anon_sym_or] = ACTIONS(3659), + [anon_sym_AMP_AMP] = ACTIONS(3661), + [anon_sym_PIPE_PIPE] = ACTIONS(3661), + [anon_sym_QMARK_QMARK] = ACTIONS(3661), + [anon_sym_from] = ACTIONS(3659), + [anon_sym_into] = ACTIONS(3659), + [anon_sym_join] = ACTIONS(3659), + [anon_sym_on] = ACTIONS(3659), + [anon_sym_equals] = ACTIONS(3659), + [anon_sym_let] = ACTIONS(3659), + [anon_sym_orderby] = ACTIONS(3659), + [anon_sym_ascending] = ACTIONS(3659), + [anon_sym_descending] = ACTIONS(3659), + [anon_sym_group] = ACTIONS(3659), + [anon_sym_by] = ACTIONS(3659), + [anon_sym_select] = ACTIONS(3659), + [anon_sym_as] = ACTIONS(3659), + [anon_sym_is] = ACTIONS(3659), + [anon_sym_DASH_GT] = ACTIONS(3661), + [anon_sym_with] = ACTIONS(3659), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_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(3661), }, [2709] = { [sym_preproc_region] = STATE(2709), @@ -446413,79 +446027,79 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2709), [sym_preproc_define] = STATE(2709), [sym_preproc_undef] = STATE(2709), - [sym__identifier_token] = ACTIONS(4402), - [anon_sym_extern] = ACTIONS(4402), - [anon_sym_alias] = ACTIONS(4402), - [anon_sym_global] = ACTIONS(4402), - [anon_sym_using] = ACTIONS(4402), - [anon_sym_unsafe] = ACTIONS(4402), - [anon_sym_static] = ACTIONS(4402), - [anon_sym_LBRACK] = ACTIONS(4404), - [anon_sym_LPAREN] = ACTIONS(4404), - [anon_sym_event] = ACTIONS(4402), - [anon_sym_namespace] = ACTIONS(4402), - [anon_sym_class] = ACTIONS(4402), - [anon_sym_ref] = ACTIONS(4402), - [anon_sym_struct] = ACTIONS(4402), - [anon_sym_enum] = ACTIONS(4402), - [anon_sym_RBRACE] = ACTIONS(4404), - [anon_sym_interface] = ACTIONS(4402), - [anon_sym_delegate] = ACTIONS(4402), - [anon_sym_record] = ACTIONS(4402), - [anon_sym_abstract] = ACTIONS(4402), - [anon_sym_async] = ACTIONS(4402), - [anon_sym_const] = ACTIONS(4402), - [anon_sym_file] = ACTIONS(4402), - [anon_sym_fixed] = ACTIONS(4402), - [anon_sym_internal] = ACTIONS(4402), - [anon_sym_new] = ACTIONS(4402), - [anon_sym_override] = ACTIONS(4402), - [anon_sym_partial] = ACTIONS(4402), - [anon_sym_private] = ACTIONS(4402), - [anon_sym_protected] = ACTIONS(4402), - [anon_sym_public] = ACTIONS(4402), - [anon_sym_readonly] = ACTIONS(4402), - [anon_sym_required] = ACTIONS(4402), - [anon_sym_sealed] = ACTIONS(4402), - [anon_sym_virtual] = ACTIONS(4402), - [anon_sym_volatile] = ACTIONS(4402), - [anon_sym_where] = ACTIONS(4402), - [anon_sym_notnull] = ACTIONS(4402), - [anon_sym_unmanaged] = ACTIONS(4402), - [anon_sym_TILDE] = ACTIONS(4404), - [anon_sym_implicit] = ACTIONS(4402), - [anon_sym_explicit] = ACTIONS(4402), - [anon_sym_scoped] = ACTIONS(4402), - [anon_sym_var] = ACTIONS(4402), - [sym_predefined_type] = ACTIONS(4402), - [anon_sym_yield] = ACTIONS(4402), - [anon_sym_when] = ACTIONS(4402), - [anon_sym_from] = ACTIONS(4402), - [anon_sym_into] = ACTIONS(4402), - [anon_sym_join] = ACTIONS(4402), - [anon_sym_on] = ACTIONS(4402), - [anon_sym_equals] = ACTIONS(4402), - [anon_sym_let] = ACTIONS(4402), - [anon_sym_orderby] = ACTIONS(4402), - [anon_sym_ascending] = ACTIONS(4402), - [anon_sym_descending] = ACTIONS(4402), - [anon_sym_group] = ACTIONS(4402), - [anon_sym_by] = ACTIONS(4402), - [anon_sym_select] = ACTIONS(4402), - [aux_sym_preproc_if_token1] = ACTIONS(4404), - [aux_sym_preproc_if_token3] = ACTIONS(4404), - [aux_sym_preproc_else_token1] = ACTIONS(4404), - [aux_sym_preproc_elif_token1] = ACTIONS(4404), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_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(3663), + [anon_sym_alias] = ACTIONS(3663), + [anon_sym_global] = ACTIONS(3663), + [anon_sym_LBRACK] = ACTIONS(3665), + [anon_sym_COLON] = ACTIONS(3665), + [anon_sym_COMMA] = ACTIONS(3665), + [anon_sym_LPAREN] = ACTIONS(3665), + [anon_sym_LBRACE] = ACTIONS(3665), + [anon_sym_file] = ACTIONS(3663), + [anon_sym_LT] = ACTIONS(3663), + [anon_sym_GT] = ACTIONS(3663), + [anon_sym_where] = ACTIONS(3663), + [anon_sym_QMARK] = ACTIONS(3663), + [anon_sym_notnull] = ACTIONS(3663), + [anon_sym_unmanaged] = ACTIONS(3663), + [anon_sym_BANG] = ACTIONS(3663), + [anon_sym_PLUS_PLUS] = ACTIONS(3665), + [anon_sym_DASH_DASH] = ACTIONS(3665), + [anon_sym_PLUS] = ACTIONS(3663), + [anon_sym_DASH] = ACTIONS(3663), + [anon_sym_STAR] = ACTIONS(3665), + [anon_sym_SLASH] = ACTIONS(3663), + [anon_sym_PERCENT] = ACTIONS(3665), + [anon_sym_CARET] = ACTIONS(3665), + [anon_sym_PIPE] = ACTIONS(3663), + [anon_sym_AMP] = ACTIONS(3663), + [anon_sym_LT_LT] = ACTIONS(3665), + [anon_sym_GT_GT] = ACTIONS(3663), + [anon_sym_GT_GT_GT] = ACTIONS(3665), + [anon_sym_EQ_EQ] = ACTIONS(3665), + [anon_sym_BANG_EQ] = ACTIONS(3665), + [anon_sym_GT_EQ] = ACTIONS(3665), + [anon_sym_LT_EQ] = ACTIONS(3665), + [anon_sym_DOT] = ACTIONS(3663), + [anon_sym_scoped] = ACTIONS(3663), + [anon_sym_var] = ACTIONS(3663), + [anon_sym_yield] = ACTIONS(3663), + [anon_sym_switch] = ACTIONS(3663), + [anon_sym_when] = ACTIONS(3663), + [sym_discard] = ACTIONS(3663), + [anon_sym_DOT_DOT] = ACTIONS(3665), + [anon_sym_and] = ACTIONS(3663), + [anon_sym_or] = ACTIONS(3663), + [anon_sym_AMP_AMP] = ACTIONS(3665), + [anon_sym_PIPE_PIPE] = ACTIONS(3665), + [anon_sym_QMARK_QMARK] = ACTIONS(3665), + [anon_sym_from] = ACTIONS(3663), + [anon_sym_into] = ACTIONS(3663), + [anon_sym_join] = ACTIONS(3663), + [anon_sym_on] = ACTIONS(3663), + [anon_sym_equals] = ACTIONS(3663), + [anon_sym_let] = ACTIONS(3663), + [anon_sym_orderby] = ACTIONS(3663), + [anon_sym_ascending] = ACTIONS(3663), + [anon_sym_descending] = ACTIONS(3663), + [anon_sym_group] = ACTIONS(3663), + [anon_sym_by] = ACTIONS(3663), + [anon_sym_select] = ACTIONS(3663), + [anon_sym_as] = ACTIONS(3663), + [anon_sym_is] = ACTIONS(3663), + [anon_sym_DASH_GT] = ACTIONS(3665), + [anon_sym_with] = ACTIONS(3663), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_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(3665), }, [2710] = { [sym_preproc_region] = STATE(2710), @@ -446497,69 +446111,69 @@ 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(4406), - [anon_sym_extern] = ACTIONS(4406), - [anon_sym_alias] = ACTIONS(4406), - [anon_sym_global] = ACTIONS(4406), - [anon_sym_using] = ACTIONS(4406), - [anon_sym_unsafe] = ACTIONS(4406), - [anon_sym_static] = ACTIONS(4406), - [anon_sym_LBRACK] = ACTIONS(4408), - [anon_sym_LPAREN] = ACTIONS(4408), - [anon_sym_event] = ACTIONS(4406), - [anon_sym_namespace] = ACTIONS(4406), - [anon_sym_class] = ACTIONS(4406), - [anon_sym_ref] = ACTIONS(4406), - [anon_sym_struct] = ACTIONS(4406), - [anon_sym_enum] = ACTIONS(4406), - [anon_sym_RBRACE] = ACTIONS(4408), - [anon_sym_interface] = ACTIONS(4406), - [anon_sym_delegate] = ACTIONS(4406), - [anon_sym_record] = ACTIONS(4406), - [anon_sym_abstract] = ACTIONS(4406), - [anon_sym_async] = ACTIONS(4406), - [anon_sym_const] = ACTIONS(4406), - [anon_sym_file] = ACTIONS(4406), - [anon_sym_fixed] = ACTIONS(4406), - [anon_sym_internal] = ACTIONS(4406), - [anon_sym_new] = ACTIONS(4406), - [anon_sym_override] = ACTIONS(4406), - [anon_sym_partial] = ACTIONS(4406), - [anon_sym_private] = ACTIONS(4406), - [anon_sym_protected] = ACTIONS(4406), - [anon_sym_public] = ACTIONS(4406), - [anon_sym_readonly] = ACTIONS(4406), - [anon_sym_required] = ACTIONS(4406), - [anon_sym_sealed] = ACTIONS(4406), - [anon_sym_virtual] = ACTIONS(4406), - [anon_sym_volatile] = ACTIONS(4406), - [anon_sym_where] = ACTIONS(4406), - [anon_sym_notnull] = ACTIONS(4406), - [anon_sym_unmanaged] = ACTIONS(4406), - [anon_sym_TILDE] = ACTIONS(4408), - [anon_sym_implicit] = ACTIONS(4406), - [anon_sym_explicit] = ACTIONS(4406), - [anon_sym_scoped] = ACTIONS(4406), - [anon_sym_var] = ACTIONS(4406), - [sym_predefined_type] = ACTIONS(4406), - [anon_sym_yield] = ACTIONS(4406), - [anon_sym_when] = ACTIONS(4406), - [anon_sym_from] = ACTIONS(4406), - [anon_sym_into] = ACTIONS(4406), - [anon_sym_join] = ACTIONS(4406), - [anon_sym_on] = ACTIONS(4406), - [anon_sym_equals] = ACTIONS(4406), - [anon_sym_let] = ACTIONS(4406), - [anon_sym_orderby] = ACTIONS(4406), - [anon_sym_ascending] = ACTIONS(4406), - [anon_sym_descending] = ACTIONS(4406), - [anon_sym_group] = ACTIONS(4406), - [anon_sym_by] = ACTIONS(4406), - [anon_sym_select] = ACTIONS(4406), - [aux_sym_preproc_if_token1] = ACTIONS(4408), - [aux_sym_preproc_if_token3] = ACTIONS(4408), - [aux_sym_preproc_else_token1] = ACTIONS(4408), - [aux_sym_preproc_elif_token1] = ACTIONS(4408), + [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), @@ -446581,69 +446195,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(4410), - [anon_sym_extern] = ACTIONS(4410), - [anon_sym_alias] = ACTIONS(4410), - [anon_sym_global] = ACTIONS(4410), - [anon_sym_using] = ACTIONS(4410), - [anon_sym_unsafe] = ACTIONS(4410), - [anon_sym_static] = ACTIONS(4410), - [anon_sym_LBRACK] = ACTIONS(4412), - [anon_sym_LPAREN] = ACTIONS(4412), - [anon_sym_event] = ACTIONS(4410), - [anon_sym_namespace] = ACTIONS(4410), - [anon_sym_class] = ACTIONS(4410), - [anon_sym_ref] = ACTIONS(4410), - [anon_sym_struct] = ACTIONS(4410), - [anon_sym_enum] = ACTIONS(4410), - [anon_sym_RBRACE] = ACTIONS(4412), - [anon_sym_interface] = ACTIONS(4410), - [anon_sym_delegate] = ACTIONS(4410), - [anon_sym_record] = ACTIONS(4410), - [anon_sym_abstract] = ACTIONS(4410), - [anon_sym_async] = ACTIONS(4410), - [anon_sym_const] = ACTIONS(4410), - [anon_sym_file] = ACTIONS(4410), - [anon_sym_fixed] = ACTIONS(4410), - [anon_sym_internal] = ACTIONS(4410), - [anon_sym_new] = ACTIONS(4410), - [anon_sym_override] = ACTIONS(4410), - [anon_sym_partial] = ACTIONS(4410), - [anon_sym_private] = ACTIONS(4410), - [anon_sym_protected] = ACTIONS(4410), - [anon_sym_public] = ACTIONS(4410), - [anon_sym_readonly] = ACTIONS(4410), - [anon_sym_required] = ACTIONS(4410), - [anon_sym_sealed] = ACTIONS(4410), - [anon_sym_virtual] = ACTIONS(4410), - [anon_sym_volatile] = ACTIONS(4410), - [anon_sym_where] = ACTIONS(4410), - [anon_sym_notnull] = ACTIONS(4410), - [anon_sym_unmanaged] = ACTIONS(4410), - [anon_sym_TILDE] = ACTIONS(4412), - [anon_sym_implicit] = ACTIONS(4410), - [anon_sym_explicit] = ACTIONS(4410), - [anon_sym_scoped] = ACTIONS(4410), - [anon_sym_var] = ACTIONS(4410), - [sym_predefined_type] = ACTIONS(4410), - [anon_sym_yield] = ACTIONS(4410), - [anon_sym_when] = ACTIONS(4410), - [anon_sym_from] = ACTIONS(4410), - [anon_sym_into] = ACTIONS(4410), - [anon_sym_join] = ACTIONS(4410), - [anon_sym_on] = ACTIONS(4410), - [anon_sym_equals] = ACTIONS(4410), - [anon_sym_let] = ACTIONS(4410), - [anon_sym_orderby] = ACTIONS(4410), - [anon_sym_ascending] = ACTIONS(4410), - [anon_sym_descending] = ACTIONS(4410), - [anon_sym_group] = ACTIONS(4410), - [anon_sym_by] = ACTIONS(4410), - [anon_sym_select] = ACTIONS(4410), - [aux_sym_preproc_if_token1] = ACTIONS(4412), - [aux_sym_preproc_if_token3] = ACTIONS(4412), - [aux_sym_preproc_else_token1] = ACTIONS(4412), - [aux_sym_preproc_elif_token1] = ACTIONS(4412), + [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), @@ -446665,79 +446279,79 @@ 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(4016), - [anon_sym_alias] = ACTIONS(4016), - [anon_sym_global] = ACTIONS(4016), - [anon_sym_LBRACK] = ACTIONS(4066), - [anon_sym_COLON] = ACTIONS(4018), - [anon_sym_COMMA] = ACTIONS(4018), - [anon_sym_LPAREN] = ACTIONS(4018), - [anon_sym_LBRACE] = ACTIONS(4018), - [anon_sym_file] = ACTIONS(4016), - [anon_sym_LT] = ACTIONS(4016), - [anon_sym_GT] = ACTIONS(4016), - [anon_sym_where] = ACTIONS(4016), - [anon_sym_QMARK] = ACTIONS(4414), - [anon_sym_notnull] = ACTIONS(4016), - [anon_sym_unmanaged] = ACTIONS(4016), - [anon_sym_BANG] = ACTIONS(4016), - [anon_sym_PLUS_PLUS] = ACTIONS(4018), - [anon_sym_DASH_DASH] = ACTIONS(4018), - [anon_sym_PLUS] = ACTIONS(4016), - [anon_sym_DASH] = ACTIONS(4016), - [anon_sym_STAR] = ACTIONS(4072), - [anon_sym_SLASH] = ACTIONS(4016), - [anon_sym_PERCENT] = ACTIONS(4018), - [anon_sym_CARET] = ACTIONS(4018), - [anon_sym_PIPE] = ACTIONS(4016), - [anon_sym_AMP] = ACTIONS(4016), - [anon_sym_LT_LT] = ACTIONS(4018), - [anon_sym_GT_GT] = ACTIONS(4016), - [anon_sym_GT_GT_GT] = ACTIONS(4018), - [anon_sym_EQ_EQ] = ACTIONS(4018), - [anon_sym_BANG_EQ] = ACTIONS(4018), - [anon_sym_GT_EQ] = ACTIONS(4018), - [anon_sym_LT_EQ] = ACTIONS(4018), - [anon_sym_DOT] = ACTIONS(4100), - [anon_sym_scoped] = ACTIONS(4016), - [anon_sym_var] = ACTIONS(4016), - [anon_sym_yield] = ACTIONS(4016), - [anon_sym_switch] = ACTIONS(4016), - [anon_sym_when] = ACTIONS(4016), - [sym_discard] = ACTIONS(4016), - [anon_sym_DOT_DOT] = ACTIONS(4018), - [anon_sym_and] = ACTIONS(4016), - [anon_sym_or] = ACTIONS(4016), - [anon_sym_AMP_AMP] = ACTIONS(4018), - [anon_sym_PIPE_PIPE] = ACTIONS(4018), - [anon_sym_QMARK_QMARK] = ACTIONS(4018), - [anon_sym_from] = ACTIONS(4016), - [anon_sym_into] = ACTIONS(4016), - [anon_sym_join] = ACTIONS(4016), - [anon_sym_on] = ACTIONS(4016), - [anon_sym_equals] = ACTIONS(4016), - [anon_sym_let] = ACTIONS(4016), - [anon_sym_orderby] = ACTIONS(4016), - [anon_sym_ascending] = ACTIONS(4016), - [anon_sym_descending] = ACTIONS(4016), - [anon_sym_group] = ACTIONS(4016), - [anon_sym_by] = ACTIONS(4016), - [anon_sym_select] = ACTIONS(4016), - [anon_sym_as] = ACTIONS(4016), - [anon_sym_is] = ACTIONS(4016), - [anon_sym_DASH_GT] = ACTIONS(4102), - [anon_sym_with] = ACTIONS(4016), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_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(4018), + [sym__identifier_token] = ACTIONS(3976), + [anon_sym_alias] = ACTIONS(3976), + [anon_sym_global] = ACTIONS(3976), + [anon_sym_LBRACK] = ACTIONS(3978), + [anon_sym_COLON] = ACTIONS(3978), + [anon_sym_COMMA] = ACTIONS(3978), + [anon_sym_LPAREN] = ACTIONS(3978), + [anon_sym_LBRACE] = ACTIONS(3978), + [anon_sym_file] = ACTIONS(3976), + [anon_sym_LT] = ACTIONS(3976), + [anon_sym_GT] = ACTIONS(3976), + [anon_sym_where] = ACTIONS(3976), + [anon_sym_QMARK] = ACTIONS(3976), + [anon_sym_notnull] = ACTIONS(3976), + [anon_sym_unmanaged] = ACTIONS(3976), + [anon_sym_BANG] = ACTIONS(3976), + [anon_sym_PLUS_PLUS] = ACTIONS(3978), + [anon_sym_DASH_DASH] = ACTIONS(3978), + [anon_sym_PLUS] = ACTIONS(3976), + [anon_sym_DASH] = ACTIONS(3976), + [anon_sym_STAR] = ACTIONS(3978), + [anon_sym_SLASH] = ACTIONS(3976), + [anon_sym_PERCENT] = ACTIONS(3978), + [anon_sym_CARET] = ACTIONS(3978), + [anon_sym_PIPE] = ACTIONS(3976), + [anon_sym_AMP] = ACTIONS(3976), + [anon_sym_LT_LT] = ACTIONS(3978), + [anon_sym_GT_GT] = ACTIONS(3976), + [anon_sym_GT_GT_GT] = ACTIONS(3978), + [anon_sym_EQ_EQ] = ACTIONS(3978), + [anon_sym_BANG_EQ] = ACTIONS(3978), + [anon_sym_GT_EQ] = ACTIONS(3978), + [anon_sym_LT_EQ] = ACTIONS(3978), + [anon_sym_DOT] = ACTIONS(4477), + [anon_sym_scoped] = ACTIONS(3976), + [anon_sym_var] = ACTIONS(3976), + [anon_sym_yield] = ACTIONS(3976), + [anon_sym_switch] = ACTIONS(3976), + [anon_sym_when] = ACTIONS(3976), + [sym_discard] = ACTIONS(3976), + [anon_sym_DOT_DOT] = ACTIONS(3978), + [anon_sym_and] = ACTIONS(3976), + [anon_sym_or] = ACTIONS(3976), + [anon_sym_AMP_AMP] = ACTIONS(3978), + [anon_sym_PIPE_PIPE] = ACTIONS(3978), + [anon_sym_QMARK_QMARK] = ACTIONS(3978), + [anon_sym_from] = ACTIONS(3976), + [anon_sym_into] = ACTIONS(3976), + [anon_sym_join] = ACTIONS(3976), + [anon_sym_on] = ACTIONS(3976), + [anon_sym_equals] = ACTIONS(3976), + [anon_sym_let] = ACTIONS(3976), + [anon_sym_orderby] = ACTIONS(3976), + [anon_sym_ascending] = ACTIONS(3976), + [anon_sym_descending] = ACTIONS(3976), + [anon_sym_group] = ACTIONS(3976), + [anon_sym_by] = ACTIONS(3976), + [anon_sym_select] = ACTIONS(3976), + [anon_sym_as] = ACTIONS(3976), + [anon_sym_is] = ACTIONS(3976), + [anon_sym_DASH_GT] = ACTIONS(3978), + [anon_sym_with] = ACTIONS(3976), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_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(3978), }, [2713] = { [sym_preproc_region] = STATE(2713), @@ -446749,81 +446363,85 @@ 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(4417), - [anon_sym_extern] = ACTIONS(4417), - [anon_sym_alias] = ACTIONS(4417), - [anon_sym_global] = ACTIONS(4417), - [anon_sym_using] = ACTIONS(4417), - [anon_sym_unsafe] = ACTIONS(4417), - [anon_sym_static] = ACTIONS(4417), - [anon_sym_LBRACK] = ACTIONS(4419), - [anon_sym_LPAREN] = ACTIONS(4419), - [anon_sym_event] = ACTIONS(4417), - [anon_sym_namespace] = ACTIONS(4417), - [anon_sym_class] = ACTIONS(4417), - [anon_sym_ref] = ACTIONS(4417), - [anon_sym_struct] = ACTIONS(4417), - [anon_sym_enum] = ACTIONS(4417), - [anon_sym_RBRACE] = ACTIONS(4419), - [anon_sym_interface] = ACTIONS(4417), - [anon_sym_delegate] = ACTIONS(4417), - [anon_sym_record] = ACTIONS(4417), - [anon_sym_abstract] = ACTIONS(4417), - [anon_sym_async] = ACTIONS(4417), - [anon_sym_const] = ACTIONS(4417), - [anon_sym_file] = ACTIONS(4417), - [anon_sym_fixed] = ACTIONS(4417), - [anon_sym_internal] = ACTIONS(4417), - [anon_sym_new] = ACTIONS(4417), - [anon_sym_override] = ACTIONS(4417), - [anon_sym_partial] = ACTIONS(4417), - [anon_sym_private] = ACTIONS(4417), - [anon_sym_protected] = ACTIONS(4417), - [anon_sym_public] = ACTIONS(4417), - [anon_sym_readonly] = ACTIONS(4417), - [anon_sym_required] = ACTIONS(4417), - [anon_sym_sealed] = ACTIONS(4417), - [anon_sym_virtual] = ACTIONS(4417), - [anon_sym_volatile] = ACTIONS(4417), - [anon_sym_where] = ACTIONS(4417), - [anon_sym_notnull] = ACTIONS(4417), - [anon_sym_unmanaged] = ACTIONS(4417), - [anon_sym_TILDE] = ACTIONS(4419), - [anon_sym_implicit] = ACTIONS(4417), - [anon_sym_explicit] = ACTIONS(4417), - [anon_sym_scoped] = ACTIONS(4417), - [anon_sym_var] = ACTIONS(4417), - [sym_predefined_type] = ACTIONS(4417), - [anon_sym_yield] = ACTIONS(4417), - [anon_sym_when] = ACTIONS(4417), - [anon_sym_from] = ACTIONS(4417), - [anon_sym_into] = ACTIONS(4417), - [anon_sym_join] = ACTIONS(4417), - [anon_sym_on] = ACTIONS(4417), - [anon_sym_equals] = ACTIONS(4417), - [anon_sym_let] = ACTIONS(4417), - [anon_sym_orderby] = ACTIONS(4417), - [anon_sym_ascending] = ACTIONS(4417), - [anon_sym_descending] = ACTIONS(4417), - [anon_sym_group] = ACTIONS(4417), - [anon_sym_by] = ACTIONS(4417), - [anon_sym_select] = ACTIONS(4417), - [aux_sym_preproc_if_token1] = ACTIONS(4419), - [aux_sym_preproc_if_token3] = ACTIONS(4419), - [aux_sym_preproc_else_token1] = ACTIONS(4419), - [aux_sym_preproc_elif_token1] = ACTIONS(4419), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_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(3976), + [anon_sym_alias] = ACTIONS(3976), + [anon_sym_global] = ACTIONS(3976), + [anon_sym_LBRACK] = ACTIONS(3978), + [anon_sym_COLON] = ACTIONS(3978), + [anon_sym_COMMA] = ACTIONS(3978), + [anon_sym_LPAREN] = ACTIONS(3978), + [anon_sym_LBRACE] = ACTIONS(3978), + [anon_sym_file] = ACTIONS(3976), + [anon_sym_LT] = ACTIONS(3976), + [anon_sym_GT] = ACTIONS(3976), + [anon_sym_where] = ACTIONS(3976), + [anon_sym_QMARK] = ACTIONS(3976), + [anon_sym_notnull] = ACTIONS(3976), + [anon_sym_unmanaged] = ACTIONS(3976), + [anon_sym_BANG] = ACTIONS(3976), + [anon_sym_PLUS_PLUS] = ACTIONS(3978), + [anon_sym_DASH_DASH] = ACTIONS(3978), + [anon_sym_PLUS] = ACTIONS(3976), + [anon_sym_DASH] = ACTIONS(3976), + [anon_sym_STAR] = ACTIONS(3978), + [anon_sym_SLASH] = ACTIONS(3976), + [anon_sym_PERCENT] = ACTIONS(3978), + [anon_sym_CARET] = ACTIONS(3978), + [anon_sym_PIPE] = ACTIONS(3976), + [anon_sym_AMP] = ACTIONS(3976), + [anon_sym_LT_LT] = ACTIONS(3978), + [anon_sym_GT_GT] = ACTIONS(3976), + [anon_sym_GT_GT_GT] = ACTIONS(3978), + [anon_sym_EQ_EQ] = ACTIONS(3978), + [anon_sym_BANG_EQ] = ACTIONS(3978), + [anon_sym_GT_EQ] = ACTIONS(3978), + [anon_sym_LT_EQ] = ACTIONS(3978), + [anon_sym_DOT] = ACTIONS(3976), + [anon_sym_scoped] = ACTIONS(3976), + [anon_sym_var] = ACTIONS(3976), + [anon_sym_yield] = ACTIONS(3976), + [anon_sym_switch] = ACTIONS(3976), + [anon_sym_when] = ACTIONS(3976), + [sym_discard] = ACTIONS(3976), + [anon_sym_DOT_DOT] = ACTIONS(3978), + [anon_sym_and] = ACTIONS(3976), + [anon_sym_or] = ACTIONS(3976), + [anon_sym_AMP_AMP] = ACTIONS(3978), + [anon_sym_PIPE_PIPE] = ACTIONS(3978), + [anon_sym_QMARK_QMARK] = ACTIONS(3978), + [anon_sym_from] = ACTIONS(3976), + [anon_sym_into] = ACTIONS(3976), + [anon_sym_join] = ACTIONS(3976), + [anon_sym_on] = ACTIONS(3976), + [anon_sym_equals] = ACTIONS(3976), + [anon_sym_let] = ACTIONS(3976), + [anon_sym_orderby] = ACTIONS(3976), + [anon_sym_ascending] = ACTIONS(3976), + [anon_sym_descending] = ACTIONS(3976), + [anon_sym_group] = ACTIONS(3976), + [anon_sym_by] = ACTIONS(3976), + [anon_sym_select] = ACTIONS(3976), + [anon_sym_as] = ACTIONS(3976), + [anon_sym_is] = ACTIONS(3976), + [anon_sym_DASH_GT] = ACTIONS(3978), + [anon_sym_with] = ACTIONS(3976), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_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(3978), }, [2714] = { + [sym__variable_designation] = STATE(4154), + [sym_parenthesized_variable_designation] = STATE(4116), + [sym_identifier] = STATE(4152), + [sym__reserved_identifier] = STATE(2900), [sym_preproc_region] = STATE(2714), [sym_preproc_endregion] = STATE(2714), [sym_preproc_line] = STATE(2714), @@ -446833,69 +446451,65 @@ 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(4421), - [anon_sym_extern] = ACTIONS(4421), - [anon_sym_alias] = ACTIONS(4421), - [anon_sym_global] = ACTIONS(4421), - [anon_sym_using] = ACTIONS(4421), - [anon_sym_unsafe] = ACTIONS(4421), - [anon_sym_static] = ACTIONS(4421), - [anon_sym_LBRACK] = ACTIONS(4423), - [anon_sym_LPAREN] = ACTIONS(4423), - [anon_sym_event] = ACTIONS(4421), - [anon_sym_namespace] = ACTIONS(4421), - [anon_sym_class] = ACTIONS(4421), - [anon_sym_ref] = ACTIONS(4421), - [anon_sym_struct] = ACTIONS(4421), - [anon_sym_enum] = ACTIONS(4421), - [anon_sym_RBRACE] = ACTIONS(4423), - [anon_sym_interface] = ACTIONS(4421), - [anon_sym_delegate] = ACTIONS(4421), - [anon_sym_record] = ACTIONS(4421), - [anon_sym_abstract] = ACTIONS(4421), - [anon_sym_async] = ACTIONS(4421), - [anon_sym_const] = ACTIONS(4421), - [anon_sym_file] = ACTIONS(4421), - [anon_sym_fixed] = ACTIONS(4421), - [anon_sym_internal] = ACTIONS(4421), - [anon_sym_new] = ACTIONS(4421), - [anon_sym_override] = ACTIONS(4421), - [anon_sym_partial] = ACTIONS(4421), - [anon_sym_private] = ACTIONS(4421), - [anon_sym_protected] = ACTIONS(4421), - [anon_sym_public] = ACTIONS(4421), - [anon_sym_readonly] = ACTIONS(4421), - [anon_sym_required] = ACTIONS(4421), - [anon_sym_sealed] = ACTIONS(4421), - [anon_sym_virtual] = ACTIONS(4421), - [anon_sym_volatile] = ACTIONS(4421), - [anon_sym_where] = ACTIONS(4421), - [anon_sym_notnull] = ACTIONS(4421), - [anon_sym_unmanaged] = ACTIONS(4421), - [anon_sym_TILDE] = ACTIONS(4423), - [anon_sym_implicit] = ACTIONS(4421), - [anon_sym_explicit] = ACTIONS(4421), - [anon_sym_scoped] = ACTIONS(4421), - [anon_sym_var] = ACTIONS(4421), - [sym_predefined_type] = ACTIONS(4421), - [anon_sym_yield] = ACTIONS(4421), - [anon_sym_when] = ACTIONS(4421), - [anon_sym_from] = ACTIONS(4421), - [anon_sym_into] = ACTIONS(4421), - [anon_sym_join] = ACTIONS(4421), - [anon_sym_on] = ACTIONS(4421), - [anon_sym_equals] = ACTIONS(4421), - [anon_sym_let] = ACTIONS(4421), - [anon_sym_orderby] = ACTIONS(4421), - [anon_sym_ascending] = ACTIONS(4421), - [anon_sym_descending] = ACTIONS(4421), - [anon_sym_group] = ACTIONS(4421), - [anon_sym_by] = ACTIONS(4421), - [anon_sym_select] = ACTIONS(4421), - [aux_sym_preproc_if_token1] = ACTIONS(4423), - [aux_sym_preproc_if_token3] = ACTIONS(4423), - [aux_sym_preproc_else_token1] = ACTIONS(4423), - [aux_sym_preproc_elif_token1] = ACTIONS(4423), + [sym__identifier_token] = ACTIONS(3814), + [anon_sym_alias] = ACTIONS(3816), + [anon_sym_global] = ACTIONS(3816), + [anon_sym_LBRACK] = ACTIONS(3893), + [anon_sym_LPAREN] = ACTIONS(3893), + [anon_sym_file] = ACTIONS(3816), + [anon_sym_LT] = ACTIONS(3895), + [anon_sym_GT] = ACTIONS(3895), + [anon_sym_where] = ACTIONS(3895), + [anon_sym_QMARK] = ACTIONS(3895), + [anon_sym_notnull] = ACTIONS(3816), + [anon_sym_unmanaged] = ACTIONS(3816), + [anon_sym_BANG] = ACTIONS(3895), + [anon_sym_PLUS_PLUS] = ACTIONS(3893), + [anon_sym_DASH_DASH] = ACTIONS(3893), + [anon_sym_PLUS] = ACTIONS(3895), + [anon_sym_DASH] = ACTIONS(3895), + [anon_sym_STAR] = ACTIONS(3893), + [anon_sym_SLASH] = ACTIONS(3895), + [anon_sym_PERCENT] = ACTIONS(3893), + [anon_sym_CARET] = ACTIONS(3893), + [anon_sym_PIPE] = ACTIONS(3895), + [anon_sym_AMP] = ACTIONS(3895), + [anon_sym_LT_LT] = ACTIONS(3893), + [anon_sym_GT_GT] = ACTIONS(3895), + [anon_sym_GT_GT_GT] = ACTIONS(3893), + [anon_sym_EQ_EQ] = ACTIONS(3893), + [anon_sym_BANG_EQ] = ACTIONS(3893), + [anon_sym_GT_EQ] = ACTIONS(3893), + [anon_sym_LT_EQ] = ACTIONS(3893), + [anon_sym_DOT] = ACTIONS(3895), + [anon_sym_scoped] = ACTIONS(3816), + [anon_sym_var] = ACTIONS(3816), + [anon_sym_yield] = ACTIONS(3816), + [anon_sym_switch] = ACTIONS(3895), + [anon_sym_when] = ACTIONS(3816), + [sym_discard] = ACTIONS(4187), + [anon_sym_DOT_DOT] = ACTIONS(3893), + [anon_sym_and] = ACTIONS(3895), + [anon_sym_or] = ACTIONS(3895), + [anon_sym_AMP_AMP] = ACTIONS(3893), + [anon_sym_PIPE_PIPE] = ACTIONS(3893), + [anon_sym_QMARK_QMARK] = ACTIONS(3893), + [anon_sym_from] = ACTIONS(3895), + [anon_sym_into] = ACTIONS(3895), + [anon_sym_join] = ACTIONS(3895), + [anon_sym_on] = ACTIONS(3816), + [anon_sym_equals] = ACTIONS(3816), + [anon_sym_let] = ACTIONS(3895), + [anon_sym_orderby] = ACTIONS(3895), + [anon_sym_ascending] = ACTIONS(3816), + [anon_sym_descending] = ACTIONS(3816), + [anon_sym_group] = ACTIONS(3895), + [anon_sym_by] = ACTIONS(3816), + [anon_sym_select] = ACTIONS(3895), + [anon_sym_as] = ACTIONS(3895), + [anon_sym_is] = ACTIONS(3895), + [anon_sym_DASH_GT] = ACTIONS(3893), + [anon_sym_with] = ACTIONS(3895), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -446917,85 +446531,81 @@ 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(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), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_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(3992), + [anon_sym_alias] = ACTIONS(3992), + [anon_sym_global] = ACTIONS(3992), + [anon_sym_LBRACK] = ACTIONS(3994), + [anon_sym_COLON] = ACTIONS(3994), + [anon_sym_COMMA] = ACTIONS(3994), + [anon_sym_LPAREN] = ACTIONS(3994), + [anon_sym_LBRACE] = ACTIONS(3994), + [anon_sym_file] = ACTIONS(3992), + [anon_sym_LT] = ACTIONS(3992), + [anon_sym_GT] = ACTIONS(3992), + [anon_sym_where] = ACTIONS(3992), + [anon_sym_QMARK] = ACTIONS(3992), + [anon_sym_notnull] = ACTIONS(3992), + [anon_sym_unmanaged] = ACTIONS(3992), + [anon_sym_BANG] = ACTIONS(3992), + [anon_sym_PLUS_PLUS] = ACTIONS(3994), + [anon_sym_DASH_DASH] = ACTIONS(3994), + [anon_sym_PLUS] = ACTIONS(3992), + [anon_sym_DASH] = ACTIONS(3992), + [anon_sym_STAR] = ACTIONS(3994), + [anon_sym_SLASH] = ACTIONS(3992), + [anon_sym_PERCENT] = ACTIONS(3994), + [anon_sym_CARET] = ACTIONS(3994), + [anon_sym_PIPE] = ACTIONS(3992), + [anon_sym_AMP] = ACTIONS(3992), + [anon_sym_LT_LT] = ACTIONS(3994), + [anon_sym_GT_GT] = ACTIONS(3992), + [anon_sym_GT_GT_GT] = ACTIONS(3994), + [anon_sym_EQ_EQ] = ACTIONS(3994), + [anon_sym_BANG_EQ] = ACTIONS(3994), + [anon_sym_GT_EQ] = ACTIONS(3994), + [anon_sym_LT_EQ] = ACTIONS(3994), + [anon_sym_DOT] = ACTIONS(3992), + [anon_sym_scoped] = ACTIONS(3992), + [anon_sym_var] = ACTIONS(3992), + [anon_sym_yield] = ACTIONS(3992), + [anon_sym_switch] = ACTIONS(3992), + [anon_sym_when] = ACTIONS(3992), + [sym_discard] = ACTIONS(3992), + [anon_sym_DOT_DOT] = ACTIONS(3994), + [anon_sym_and] = ACTIONS(3992), + [anon_sym_or] = ACTIONS(3992), + [anon_sym_AMP_AMP] = ACTIONS(3994), + [anon_sym_PIPE_PIPE] = ACTIONS(3994), + [anon_sym_QMARK_QMARK] = ACTIONS(3994), + [anon_sym_from] = ACTIONS(3992), + [anon_sym_into] = ACTIONS(3992), + [anon_sym_join] = ACTIONS(3992), + [anon_sym_on] = ACTIONS(3992), + [anon_sym_equals] = ACTIONS(3992), + [anon_sym_let] = ACTIONS(3992), + [anon_sym_orderby] = ACTIONS(3992), + [anon_sym_ascending] = ACTIONS(3992), + [anon_sym_descending] = ACTIONS(3992), + [anon_sym_group] = ACTIONS(3992), + [anon_sym_by] = ACTIONS(3992), + [anon_sym_select] = ACTIONS(3992), + [anon_sym_as] = ACTIONS(3992), + [anon_sym_is] = ACTIONS(3992), + [anon_sym_DASH_GT] = ACTIONS(3994), + [anon_sym_with] = ACTIONS(3992), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_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(3994), }, [2716] = { - [sym__variable_designation] = STATE(4126), - [sym_parenthesized_variable_designation] = STATE(4173), - [sym_identifier] = STATE(4177), - [sym__reserved_identifier] = STATE(2945), [sym_preproc_region] = STATE(2716), [sym_preproc_endregion] = STATE(2716), [sym_preproc_line] = STATE(2716), @@ -447005,65 +446615,68 @@ 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(3887), - [anon_sym_alias] = ACTIONS(3889), - [anon_sym_global] = ACTIONS(3889), - [anon_sym_LBRACK] = ACTIONS(3961), - [anon_sym_LPAREN] = ACTIONS(3961), - [anon_sym_file] = ACTIONS(3889), - [anon_sym_LT] = ACTIONS(3963), - [anon_sym_GT] = ACTIONS(3963), - [anon_sym_where] = ACTIONS(3963), - [anon_sym_QMARK] = ACTIONS(3963), - [anon_sym_notnull] = ACTIONS(3889), - [anon_sym_unmanaged] = ACTIONS(3889), - [anon_sym_BANG] = ACTIONS(3963), - [anon_sym_PLUS_PLUS] = ACTIONS(3961), - [anon_sym_DASH_DASH] = ACTIONS(3961), - [anon_sym_PLUS] = ACTIONS(3963), - [anon_sym_DASH] = ACTIONS(3963), - [anon_sym_STAR] = ACTIONS(3961), - [anon_sym_SLASH] = ACTIONS(3963), - [anon_sym_PERCENT] = ACTIONS(3961), - [anon_sym_CARET] = ACTIONS(3961), - [anon_sym_PIPE] = ACTIONS(3963), - [anon_sym_AMP] = ACTIONS(3963), - [anon_sym_LT_LT] = ACTIONS(3961), - [anon_sym_GT_GT] = ACTIONS(3963), - [anon_sym_GT_GT_GT] = ACTIONS(3961), - [anon_sym_EQ_EQ] = ACTIONS(3961), - [anon_sym_BANG_EQ] = ACTIONS(3961), - [anon_sym_GT_EQ] = ACTIONS(3961), - [anon_sym_LT_EQ] = ACTIONS(3961), - [anon_sym_DOT] = ACTIONS(3963), - [anon_sym_scoped] = ACTIONS(3889), - [anon_sym_var] = ACTIONS(3889), - [anon_sym_yield] = ACTIONS(3889), - [anon_sym_switch] = ACTIONS(3963), - [anon_sym_when] = ACTIONS(3889), - [sym_discard] = ACTIONS(4209), - [anon_sym_DOT_DOT] = ACTIONS(3961), - [anon_sym_and] = ACTIONS(3963), - [anon_sym_or] = ACTIONS(3963), - [anon_sym_AMP_AMP] = ACTIONS(3961), - [anon_sym_PIPE_PIPE] = ACTIONS(3961), - [anon_sym_QMARK_QMARK] = ACTIONS(3961), - [anon_sym_from] = ACTIONS(3963), - [anon_sym_into] = ACTIONS(3889), - [anon_sym_join] = ACTIONS(3963), - [anon_sym_on] = ACTIONS(3889), - [anon_sym_equals] = ACTIONS(3889), - [anon_sym_let] = ACTIONS(3963), - [anon_sym_orderby] = ACTIONS(3963), - [anon_sym_ascending] = ACTIONS(3889), - [anon_sym_descending] = ACTIONS(3889), - [anon_sym_group] = ACTIONS(3963), - [anon_sym_by] = ACTIONS(3889), - [anon_sym_select] = ACTIONS(3963), - [anon_sym_as] = ACTIONS(3963), - [anon_sym_is] = ACTIONS(3963), - [anon_sym_DASH_GT] = ACTIONS(3961), - [anon_sym_with] = ACTIONS(3963), + [sym__identifier_token] = ACTIONS(3951), + [anon_sym_alias] = ACTIONS(3951), + [anon_sym_global] = ACTIONS(3951), + [anon_sym_LBRACK] = ACTIONS(3953), + [anon_sym_COLON] = ACTIONS(3953), + [anon_sym_COMMA] = ACTIONS(3953), + [anon_sym_LPAREN] = ACTIONS(3953), + [anon_sym_LBRACE] = ACTIONS(3953), + [anon_sym_file] = ACTIONS(3951), + [anon_sym_LT] = ACTIONS(3951), + [anon_sym_GT] = ACTIONS(3951), + [anon_sym_where] = ACTIONS(3951), + [anon_sym_QMARK] = ACTIONS(3951), + [anon_sym_notnull] = ACTIONS(3951), + [anon_sym_unmanaged] = ACTIONS(3951), + [anon_sym_BANG] = ACTIONS(3951), + [anon_sym_PLUS_PLUS] = ACTIONS(3953), + [anon_sym_DASH_DASH] = ACTIONS(3953), + [anon_sym_PLUS] = ACTIONS(3951), + [anon_sym_DASH] = ACTIONS(3951), + [anon_sym_STAR] = ACTIONS(3953), + [anon_sym_SLASH] = ACTIONS(3951), + [anon_sym_PERCENT] = ACTIONS(3953), + [anon_sym_CARET] = ACTIONS(3953), + [anon_sym_PIPE] = ACTIONS(3951), + [anon_sym_AMP] = ACTIONS(3951), + [anon_sym_LT_LT] = ACTIONS(3953), + [anon_sym_GT_GT] = ACTIONS(3951), + [anon_sym_GT_GT_GT] = ACTIONS(3953), + [anon_sym_EQ_EQ] = ACTIONS(3953), + [anon_sym_BANG_EQ] = ACTIONS(3953), + [anon_sym_GT_EQ] = ACTIONS(3953), + [anon_sym_LT_EQ] = ACTIONS(3953), + [anon_sym_DOT] = ACTIONS(3951), + [anon_sym_scoped] = ACTIONS(3951), + [anon_sym_var] = ACTIONS(3951), + [anon_sym_yield] = ACTIONS(3951), + [anon_sym_switch] = ACTIONS(3951), + [anon_sym_when] = ACTIONS(3951), + [sym_discard] = ACTIONS(3951), + [anon_sym_DOT_DOT] = ACTIONS(3953), + [anon_sym_and] = ACTIONS(3951), + [anon_sym_or] = ACTIONS(3951), + [anon_sym_AMP_AMP] = ACTIONS(3953), + [anon_sym_PIPE_PIPE] = ACTIONS(3953), + [anon_sym_QMARK_QMARK] = ACTIONS(3953), + [anon_sym_from] = ACTIONS(3951), + [anon_sym_into] = ACTIONS(3951), + [anon_sym_join] = ACTIONS(3951), + [anon_sym_on] = ACTIONS(3951), + [anon_sym_equals] = ACTIONS(3951), + [anon_sym_let] = ACTIONS(3951), + [anon_sym_orderby] = ACTIONS(3951), + [anon_sym_ascending] = ACTIONS(3951), + [anon_sym_descending] = ACTIONS(3951), + [anon_sym_group] = ACTIONS(3951), + [anon_sym_by] = ACTIONS(3951), + [anon_sym_select] = ACTIONS(3951), + [anon_sym_as] = ACTIONS(3951), + [anon_sym_is] = ACTIONS(3951), + [anon_sym_DASH_GT] = ACTIONS(3953), + [anon_sym_with] = ACTIONS(3951), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -447074,8 +446687,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(3953), }, [2717] = { + [sym__variable_designation] = STATE(4159), + [sym_parenthesized_variable_designation] = STATE(4116), + [sym_identifier] = STATE(4152), + [sym__reserved_identifier] = STATE(2900), [sym_preproc_region] = STATE(2717), [sym_preproc_endregion] = STATE(2717), [sym_preproc_line] = STATE(2717), @@ -447085,69 +446703,65 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2717), [sym_preproc_define] = STATE(2717), [sym_preproc_undef] = STATE(2717), - [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), + [sym__identifier_token] = ACTIONS(3814), + [anon_sym_alias] = ACTIONS(3816), + [anon_sym_global] = ACTIONS(3816), + [anon_sym_LBRACK] = ACTIONS(3885), + [anon_sym_LPAREN] = ACTIONS(3885), + [anon_sym_file] = ACTIONS(3816), + [anon_sym_LT] = ACTIONS(3887), + [anon_sym_GT] = ACTIONS(3887), + [anon_sym_where] = ACTIONS(3887), + [anon_sym_QMARK] = ACTIONS(3887), + [anon_sym_notnull] = ACTIONS(3816), + [anon_sym_unmanaged] = ACTIONS(3816), + [anon_sym_BANG] = ACTIONS(3887), + [anon_sym_PLUS_PLUS] = ACTIONS(3885), + [anon_sym_DASH_DASH] = ACTIONS(3885), + [anon_sym_PLUS] = ACTIONS(3887), + [anon_sym_DASH] = ACTIONS(3887), + [anon_sym_STAR] = ACTIONS(3885), + [anon_sym_SLASH] = ACTIONS(3887), + [anon_sym_PERCENT] = ACTIONS(3885), + [anon_sym_CARET] = ACTIONS(3885), + [anon_sym_PIPE] = ACTIONS(3887), + [anon_sym_AMP] = ACTIONS(3887), + [anon_sym_LT_LT] = ACTIONS(3885), + [anon_sym_GT_GT] = ACTIONS(3887), + [anon_sym_GT_GT_GT] = ACTIONS(3885), + [anon_sym_EQ_EQ] = ACTIONS(3885), + [anon_sym_BANG_EQ] = ACTIONS(3885), + [anon_sym_GT_EQ] = ACTIONS(3885), + [anon_sym_LT_EQ] = ACTIONS(3885), + [anon_sym_DOT] = ACTIONS(3887), + [anon_sym_scoped] = ACTIONS(3816), + [anon_sym_var] = ACTIONS(3816), + [anon_sym_yield] = ACTIONS(3816), + [anon_sym_switch] = ACTIONS(3887), + [anon_sym_when] = ACTIONS(3816), + [sym_discard] = ACTIONS(4187), + [anon_sym_DOT_DOT] = ACTIONS(3885), + [anon_sym_and] = ACTIONS(3887), + [anon_sym_or] = ACTIONS(3887), + [anon_sym_AMP_AMP] = ACTIONS(3885), + [anon_sym_PIPE_PIPE] = ACTIONS(3885), + [anon_sym_QMARK_QMARK] = ACTIONS(3885), + [anon_sym_from] = ACTIONS(3887), + [anon_sym_into] = ACTIONS(3887), + [anon_sym_join] = ACTIONS(3887), + [anon_sym_on] = ACTIONS(3816), + [anon_sym_equals] = ACTIONS(3816), + [anon_sym_let] = ACTIONS(3887), + [anon_sym_orderby] = ACTIONS(3887), + [anon_sym_ascending] = ACTIONS(3816), + [anon_sym_descending] = ACTIONS(3816), + [anon_sym_group] = ACTIONS(3887), + [anon_sym_by] = ACTIONS(3816), + [anon_sym_select] = ACTIONS(3887), + [anon_sym_as] = ACTIONS(3887), + [anon_sym_is] = ACTIONS(3887), + [anon_sym_DASH_GT] = ACTIONS(3885), + [anon_sym_with] = ACTIONS(3887), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -447169,69 +446783,69 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2718), [sym_preproc_define] = STATE(2718), [sym_preproc_undef] = STATE(2718), - [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), + [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), @@ -447244,6 +446858,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2719] = { + [sym__variable_designation] = STATE(4162), + [sym_parenthesized_variable_designation] = STATE(4116), + [sym_identifier] = STATE(4152), + [sym__reserved_identifier] = STATE(2900), [sym_preproc_region] = STATE(2719), [sym_preproc_endregion] = STATE(2719), [sym_preproc_line] = STATE(2719), @@ -447253,69 +446871,65 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2719), [sym_preproc_define] = STATE(2719), [sym_preproc_undef] = STATE(2719), - [anon_sym_SEMI] = ACTIONS(4271), - [anon_sym_EQ] = ACTIONS(3704), - [anon_sym_LBRACK] = ACTIONS(4273), - [anon_sym_COLON] = ACTIONS(4271), - [anon_sym_COMMA] = ACTIONS(4271), - [anon_sym_RBRACK] = ACTIONS(4271), - [anon_sym_LPAREN] = ACTIONS(4273), - [anon_sym_RPAREN] = ACTIONS(4271), - [anon_sym_RBRACE] = ACTIONS(4271), - [anon_sym_LT] = ACTIONS(4276), - [anon_sym_GT] = ACTIONS(4276), - [anon_sym_in] = ACTIONS(4271), - [anon_sym_QMARK] = ACTIONS(4276), - [anon_sym_BANG] = ACTIONS(4276), - [anon_sym_PLUS_PLUS] = ACTIONS(4273), - [anon_sym_DASH_DASH] = ACTIONS(4273), - [anon_sym_PLUS] = ACTIONS(4276), - [anon_sym_DASH] = ACTIONS(4276), - [anon_sym_STAR] = ACTIONS(4276), - [anon_sym_SLASH] = ACTIONS(4276), - [anon_sym_PERCENT] = ACTIONS(4276), - [anon_sym_CARET] = ACTIONS(4276), - [anon_sym_PIPE] = ACTIONS(4276), - [anon_sym_AMP] = ACTIONS(4276), - [anon_sym_LT_LT] = ACTIONS(4276), - [anon_sym_GT_GT] = ACTIONS(4276), - [anon_sym_GT_GT_GT] = ACTIONS(4276), - [anon_sym_EQ_EQ] = ACTIONS(4273), - [anon_sym_BANG_EQ] = ACTIONS(4273), - [anon_sym_GT_EQ] = ACTIONS(4273), - [anon_sym_LT_EQ] = ACTIONS(4273), - [anon_sym_DOT] = ACTIONS(4276), - [anon_sym_EQ_GT] = ACTIONS(4271), - [anon_sym_switch] = ACTIONS(4273), - [anon_sym_when] = ACTIONS(4271), - [anon_sym_DOT_DOT] = ACTIONS(4273), - [anon_sym_and] = ACTIONS(4271), - [anon_sym_or] = ACTIONS(4271), - [anon_sym_PLUS_EQ] = ACTIONS(3719), - [anon_sym_DASH_EQ] = ACTIONS(3719), - [anon_sym_STAR_EQ] = ACTIONS(3719), - [anon_sym_SLASH_EQ] = ACTIONS(3719), - [anon_sym_PERCENT_EQ] = ACTIONS(3719), - [anon_sym_AMP_EQ] = ACTIONS(3719), - [anon_sym_CARET_EQ] = ACTIONS(3719), - [anon_sym_PIPE_EQ] = ACTIONS(3719), - [anon_sym_LT_LT_EQ] = ACTIONS(3719), - [anon_sym_GT_GT_EQ] = ACTIONS(3719), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3719), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3719), - [anon_sym_AMP_AMP] = ACTIONS(4273), - [anon_sym_PIPE_PIPE] = ACTIONS(4273), - [anon_sym_QMARK_QMARK] = ACTIONS(4276), - [anon_sym_on] = ACTIONS(4271), - [anon_sym_equals] = ACTIONS(4271), - [anon_sym_by] = ACTIONS(4271), - [anon_sym_as] = ACTIONS(4273), - [anon_sym_is] = ACTIONS(4273), - [anon_sym_DASH_GT] = ACTIONS(4273), - [anon_sym_with] = ACTIONS(4273), - [aux_sym_preproc_if_token3] = ACTIONS(4271), - [aux_sym_preproc_else_token1] = ACTIONS(4271), - [aux_sym_preproc_elif_token1] = ACTIONS(4271), + [sym__identifier_token] = ACTIONS(3814), + [anon_sym_alias] = ACTIONS(3816), + [anon_sym_global] = ACTIONS(3816), + [anon_sym_LBRACK] = ACTIONS(3939), + [anon_sym_LPAREN] = ACTIONS(3939), + [anon_sym_file] = ACTIONS(3816), + [anon_sym_LT] = ACTIONS(3941), + [anon_sym_GT] = ACTIONS(3941), + [anon_sym_where] = ACTIONS(3941), + [anon_sym_QMARK] = ACTIONS(3941), + [anon_sym_notnull] = ACTIONS(3816), + [anon_sym_unmanaged] = ACTIONS(3816), + [anon_sym_BANG] = ACTIONS(3941), + [anon_sym_PLUS_PLUS] = ACTIONS(3939), + [anon_sym_DASH_DASH] = ACTIONS(3939), + [anon_sym_PLUS] = ACTIONS(3941), + [anon_sym_DASH] = ACTIONS(3941), + [anon_sym_STAR] = ACTIONS(3939), + [anon_sym_SLASH] = ACTIONS(3941), + [anon_sym_PERCENT] = ACTIONS(3939), + [anon_sym_CARET] = ACTIONS(3939), + [anon_sym_PIPE] = ACTIONS(3941), + [anon_sym_AMP] = ACTIONS(3941), + [anon_sym_LT_LT] = ACTIONS(3939), + [anon_sym_GT_GT] = ACTIONS(3941), + [anon_sym_GT_GT_GT] = ACTIONS(3939), + [anon_sym_EQ_EQ] = ACTIONS(3939), + [anon_sym_BANG_EQ] = ACTIONS(3939), + [anon_sym_GT_EQ] = ACTIONS(3939), + [anon_sym_LT_EQ] = ACTIONS(3939), + [anon_sym_DOT] = ACTIONS(3941), + [anon_sym_scoped] = ACTIONS(3816), + [anon_sym_var] = ACTIONS(3816), + [anon_sym_yield] = ACTIONS(3816), + [anon_sym_switch] = ACTIONS(3941), + [anon_sym_when] = ACTIONS(3816), + [sym_discard] = ACTIONS(4187), + [anon_sym_DOT_DOT] = ACTIONS(3939), + [anon_sym_and] = ACTIONS(3941), + [anon_sym_or] = ACTIONS(3941), + [anon_sym_AMP_AMP] = ACTIONS(3939), + [anon_sym_PIPE_PIPE] = ACTIONS(3939), + [anon_sym_QMARK_QMARK] = ACTIONS(3939), + [anon_sym_from] = ACTIONS(3941), + [anon_sym_into] = ACTIONS(3941), + [anon_sym_join] = ACTIONS(3941), + [anon_sym_on] = ACTIONS(3816), + [anon_sym_equals] = ACTIONS(3816), + [anon_sym_let] = ACTIONS(3941), + [anon_sym_orderby] = ACTIONS(3941), + [anon_sym_ascending] = ACTIONS(3816), + [anon_sym_descending] = ACTIONS(3816), + [anon_sym_group] = ACTIONS(3941), + [anon_sym_by] = ACTIONS(3816), + [anon_sym_select] = ACTIONS(3941), + [anon_sym_as] = ACTIONS(3941), + [anon_sym_is] = ACTIONS(3941), + [anon_sym_DASH_GT] = ACTIONS(3939), + [anon_sym_with] = ACTIONS(3941), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -447328,6 +446942,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2720] = { + [sym__variable_designation] = STATE(4131), + [sym_parenthesized_variable_designation] = STATE(4116), + [sym_identifier] = STATE(4152), + [sym__reserved_identifier] = STATE(2900), [sym_preproc_region] = STATE(2720), [sym_preproc_endregion] = STATE(2720), [sym_preproc_line] = STATE(2720), @@ -447337,69 +446955,65 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2720), [sym_preproc_define] = STATE(2720), [sym_preproc_undef] = STATE(2720), - [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), + [sym__identifier_token] = ACTIONS(3814), + [anon_sym_alias] = ACTIONS(3816), + [anon_sym_global] = ACTIONS(3816), + [anon_sym_LBRACK] = ACTIONS(3947), + [anon_sym_LPAREN] = ACTIONS(3947), + [anon_sym_file] = ACTIONS(3816), + [anon_sym_LT] = ACTIONS(3949), + [anon_sym_GT] = ACTIONS(3949), + [anon_sym_where] = ACTIONS(3949), + [anon_sym_QMARK] = ACTIONS(3949), + [anon_sym_notnull] = ACTIONS(3816), + [anon_sym_unmanaged] = ACTIONS(3816), + [anon_sym_BANG] = ACTIONS(3949), + [anon_sym_PLUS_PLUS] = ACTIONS(3947), + [anon_sym_DASH_DASH] = ACTIONS(3947), + [anon_sym_PLUS] = ACTIONS(3949), + [anon_sym_DASH] = ACTIONS(3949), + [anon_sym_STAR] = ACTIONS(3947), + [anon_sym_SLASH] = ACTIONS(3949), + [anon_sym_PERCENT] = ACTIONS(3947), + [anon_sym_CARET] = ACTIONS(3947), + [anon_sym_PIPE] = ACTIONS(3949), + [anon_sym_AMP] = ACTIONS(3949), + [anon_sym_LT_LT] = ACTIONS(3947), + [anon_sym_GT_GT] = ACTIONS(3949), + [anon_sym_GT_GT_GT] = ACTIONS(3947), + [anon_sym_EQ_EQ] = ACTIONS(3947), + [anon_sym_BANG_EQ] = ACTIONS(3947), + [anon_sym_GT_EQ] = ACTIONS(3947), + [anon_sym_LT_EQ] = ACTIONS(3947), + [anon_sym_DOT] = ACTIONS(3949), + [anon_sym_scoped] = ACTIONS(3816), + [anon_sym_var] = ACTIONS(3816), + [anon_sym_yield] = ACTIONS(3816), + [anon_sym_switch] = ACTIONS(3949), + [anon_sym_when] = ACTIONS(3816), + [sym_discard] = ACTIONS(4187), + [anon_sym_DOT_DOT] = ACTIONS(3947), + [anon_sym_and] = ACTIONS(3949), + [anon_sym_or] = ACTIONS(3949), + [anon_sym_AMP_AMP] = ACTIONS(3947), + [anon_sym_PIPE_PIPE] = ACTIONS(3947), + [anon_sym_QMARK_QMARK] = ACTIONS(3947), + [anon_sym_from] = ACTIONS(3949), + [anon_sym_into] = ACTIONS(3949), + [anon_sym_join] = ACTIONS(3949), + [anon_sym_on] = ACTIONS(3816), + [anon_sym_equals] = ACTIONS(3816), + [anon_sym_let] = ACTIONS(3949), + [anon_sym_orderby] = ACTIONS(3949), + [anon_sym_ascending] = ACTIONS(3816), + [anon_sym_descending] = ACTIONS(3816), + [anon_sym_group] = ACTIONS(3949), + [anon_sym_by] = ACTIONS(3816), + [anon_sym_select] = ACTIONS(3949), + [anon_sym_as] = ACTIONS(3949), + [anon_sym_is] = ACTIONS(3949), + [anon_sym_DASH_GT] = ACTIONS(3947), + [anon_sym_with] = ACTIONS(3949), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -447421,79 +447035,79 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2721), [sym_preproc_define] = STATE(2721), [sym_preproc_undef] = STATE(2721), - [sym__identifier_token] = ACTIONS(4016), - [anon_sym_alias] = ACTIONS(4016), - [anon_sym_global] = ACTIONS(4016), - [anon_sym_LBRACK] = ACTIONS(4066), - [anon_sym_COLON] = ACTIONS(4018), - [anon_sym_COMMA] = ACTIONS(4018), - [anon_sym_LPAREN] = ACTIONS(4018), - [anon_sym_LBRACE] = ACTIONS(4018), - [anon_sym_file] = ACTIONS(4016), - [anon_sym_LT] = ACTIONS(4016), - [anon_sym_GT] = ACTIONS(4016), - [anon_sym_where] = ACTIONS(4016), - [anon_sym_QMARK] = ACTIONS(4414), - [anon_sym_notnull] = ACTIONS(4016), - [anon_sym_unmanaged] = ACTIONS(4016), - [anon_sym_BANG] = ACTIONS(4016), - [anon_sym_PLUS_PLUS] = ACTIONS(4018), - [anon_sym_DASH_DASH] = ACTIONS(4018), - [anon_sym_PLUS] = ACTIONS(4016), - [anon_sym_DASH] = ACTIONS(4016), - [anon_sym_STAR] = ACTIONS(4072), - [anon_sym_SLASH] = ACTIONS(4016), - [anon_sym_PERCENT] = ACTIONS(4018), - [anon_sym_CARET] = ACTIONS(4018), - [anon_sym_PIPE] = ACTIONS(4016), - [anon_sym_AMP] = ACTIONS(4016), - [anon_sym_LT_LT] = ACTIONS(4018), - [anon_sym_GT_GT] = ACTIONS(4016), - [anon_sym_GT_GT_GT] = ACTIONS(4018), - [anon_sym_EQ_EQ] = ACTIONS(4018), - [anon_sym_BANG_EQ] = ACTIONS(4018), - [anon_sym_GT_EQ] = ACTIONS(4018), - [anon_sym_LT_EQ] = ACTIONS(4018), - [anon_sym_DOT] = ACTIONS(4441), - [anon_sym_scoped] = ACTIONS(4016), - [anon_sym_var] = ACTIONS(4016), - [anon_sym_yield] = ACTIONS(4016), - [anon_sym_switch] = ACTIONS(4016), - [anon_sym_when] = ACTIONS(4016), - [sym_discard] = ACTIONS(4016), - [anon_sym_DOT_DOT] = ACTIONS(4018), - [anon_sym_and] = ACTIONS(4016), - [anon_sym_or] = ACTIONS(4016), - [anon_sym_AMP_AMP] = ACTIONS(4018), - [anon_sym_PIPE_PIPE] = ACTIONS(4018), - [anon_sym_QMARK_QMARK] = ACTIONS(4018), - [anon_sym_from] = ACTIONS(4016), - [anon_sym_into] = ACTIONS(4016), - [anon_sym_join] = ACTIONS(4016), - [anon_sym_on] = ACTIONS(4016), - [anon_sym_equals] = ACTIONS(4016), - [anon_sym_let] = ACTIONS(4016), - [anon_sym_orderby] = ACTIONS(4016), - [anon_sym_ascending] = ACTIONS(4016), - [anon_sym_descending] = ACTIONS(4016), - [anon_sym_group] = ACTIONS(4016), - [anon_sym_by] = ACTIONS(4016), - [anon_sym_select] = ACTIONS(4016), - [anon_sym_as] = ACTIONS(4016), - [anon_sym_is] = ACTIONS(4016), - [anon_sym_DASH_GT] = ACTIONS(4443), - [anon_sym_with] = ACTIONS(4016), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_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(4018), + [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), }, [2722] = { [sym_preproc_region] = STATE(2722), @@ -447505,79 +447119,79 @@ 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(3660), - [anon_sym_alias] = ACTIONS(3660), - [anon_sym_global] = ACTIONS(3660), - [anon_sym_LBRACK] = ACTIONS(3662), - [anon_sym_COLON] = ACTIONS(3662), - [anon_sym_COMMA] = ACTIONS(3662), - [anon_sym_LPAREN] = ACTIONS(3662), - [anon_sym_LBRACE] = ACTIONS(3662), - [anon_sym_file] = ACTIONS(3660), - [anon_sym_LT] = ACTIONS(3660), - [anon_sym_GT] = ACTIONS(3660), - [anon_sym_where] = ACTIONS(3660), - [anon_sym_QMARK] = ACTIONS(3660), - [anon_sym_notnull] = ACTIONS(3660), - [anon_sym_unmanaged] = ACTIONS(3660), - [anon_sym_BANG] = ACTIONS(3660), - [anon_sym_PLUS_PLUS] = ACTIONS(3662), - [anon_sym_DASH_DASH] = ACTIONS(3662), - [anon_sym_PLUS] = ACTIONS(3660), - [anon_sym_DASH] = ACTIONS(3660), - [anon_sym_STAR] = ACTIONS(3662), - [anon_sym_SLASH] = ACTIONS(3660), - [anon_sym_PERCENT] = ACTIONS(3662), - [anon_sym_CARET] = ACTIONS(3662), - [anon_sym_PIPE] = ACTIONS(3660), - [anon_sym_AMP] = ACTIONS(3660), - [anon_sym_LT_LT] = ACTIONS(3662), - [anon_sym_GT_GT] = ACTIONS(3660), - [anon_sym_GT_GT_GT] = ACTIONS(3662), - [anon_sym_EQ_EQ] = ACTIONS(3662), - [anon_sym_BANG_EQ] = ACTIONS(3662), - [anon_sym_GT_EQ] = ACTIONS(3662), - [anon_sym_LT_EQ] = ACTIONS(3662), - [anon_sym_DOT] = ACTIONS(3660), - [anon_sym_scoped] = ACTIONS(3660), - [anon_sym_var] = ACTIONS(3660), - [anon_sym_yield] = ACTIONS(3660), - [anon_sym_switch] = ACTIONS(3660), - [anon_sym_when] = ACTIONS(3660), - [sym_discard] = ACTIONS(3660), - [anon_sym_DOT_DOT] = ACTIONS(3662), - [anon_sym_and] = ACTIONS(3660), - [anon_sym_or] = ACTIONS(3660), - [anon_sym_AMP_AMP] = ACTIONS(3662), - [anon_sym_PIPE_PIPE] = ACTIONS(3662), - [anon_sym_QMARK_QMARK] = ACTIONS(3662), - [anon_sym_from] = ACTIONS(3660), - [anon_sym_into] = ACTIONS(3660), - [anon_sym_join] = ACTIONS(3660), - [anon_sym_on] = ACTIONS(3660), - [anon_sym_equals] = ACTIONS(3660), - [anon_sym_let] = ACTIONS(3660), - [anon_sym_orderby] = ACTIONS(3660), - [anon_sym_ascending] = ACTIONS(3660), - [anon_sym_descending] = ACTIONS(3660), - [anon_sym_group] = ACTIONS(3660), - [anon_sym_by] = ACTIONS(3660), - [anon_sym_select] = ACTIONS(3660), - [anon_sym_as] = ACTIONS(3660), - [anon_sym_is] = ACTIONS(3660), - [anon_sym_DASH_GT] = ACTIONS(3662), - [anon_sym_with] = ACTIONS(3660), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_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(3662), + [sym__identifier_token] = ACTIONS(3323), + [anon_sym_extern] = ACTIONS(3323), + [anon_sym_alias] = ACTIONS(3323), + [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_event] = 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_RBRACE] = 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_TILDE] = ACTIONS(3325), + [anon_sym_implicit] = ACTIONS(3323), + [anon_sym_explicit] = ACTIONS(3323), + [anon_sym_scoped] = ACTIONS(3323), + [anon_sym_var] = ACTIONS(3323), + [sym_predefined_type] = ACTIONS(3323), + [anon_sym_yield] = ACTIONS(3323), + [anon_sym_when] = ACTIONS(3323), + [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), + [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), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), }, [2723] = { [sym_preproc_region] = STATE(2723), @@ -447589,79 +447203,79 @@ 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(3679), - [anon_sym_alias] = ACTIONS(3679), - [anon_sym_global] = ACTIONS(3679), - [anon_sym_LBRACK] = ACTIONS(3681), - [anon_sym_COLON] = ACTIONS(3681), - [anon_sym_COMMA] = ACTIONS(3681), - [anon_sym_LPAREN] = ACTIONS(3681), - [anon_sym_LBRACE] = ACTIONS(3681), - [anon_sym_file] = ACTIONS(3679), - [anon_sym_LT] = ACTIONS(3679), - [anon_sym_GT] = ACTIONS(3679), - [anon_sym_where] = ACTIONS(3679), - [anon_sym_QMARK] = ACTIONS(3679), - [anon_sym_notnull] = ACTIONS(3679), - [anon_sym_unmanaged] = ACTIONS(3679), - [anon_sym_BANG] = ACTIONS(3679), - [anon_sym_PLUS_PLUS] = ACTIONS(3681), - [anon_sym_DASH_DASH] = ACTIONS(3681), - [anon_sym_PLUS] = ACTIONS(3679), - [anon_sym_DASH] = ACTIONS(3679), - [anon_sym_STAR] = ACTIONS(3681), - [anon_sym_SLASH] = ACTIONS(3679), - [anon_sym_PERCENT] = ACTIONS(3681), - [anon_sym_CARET] = ACTIONS(3681), - [anon_sym_PIPE] = ACTIONS(3679), - [anon_sym_AMP] = ACTIONS(3679), - [anon_sym_LT_LT] = ACTIONS(3681), - [anon_sym_GT_GT] = ACTIONS(3679), - [anon_sym_GT_GT_GT] = ACTIONS(3681), - [anon_sym_EQ_EQ] = ACTIONS(3681), - [anon_sym_BANG_EQ] = ACTIONS(3681), - [anon_sym_GT_EQ] = ACTIONS(3681), - [anon_sym_LT_EQ] = ACTIONS(3681), - [anon_sym_DOT] = ACTIONS(3679), - [anon_sym_scoped] = ACTIONS(3679), - [anon_sym_var] = ACTIONS(3679), - [anon_sym_yield] = ACTIONS(3679), - [anon_sym_switch] = ACTIONS(3679), - [anon_sym_when] = ACTIONS(3679), - [sym_discard] = ACTIONS(3679), - [anon_sym_DOT_DOT] = ACTIONS(3681), - [anon_sym_and] = ACTIONS(3679), - [anon_sym_or] = ACTIONS(3679), - [anon_sym_AMP_AMP] = ACTIONS(3681), - [anon_sym_PIPE_PIPE] = ACTIONS(3681), - [anon_sym_QMARK_QMARK] = ACTIONS(3681), - [anon_sym_from] = ACTIONS(3679), - [anon_sym_into] = ACTIONS(3679), - [anon_sym_join] = ACTIONS(3679), - [anon_sym_on] = ACTIONS(3679), - [anon_sym_equals] = ACTIONS(3679), - [anon_sym_let] = ACTIONS(3679), - [anon_sym_orderby] = ACTIONS(3679), - [anon_sym_ascending] = ACTIONS(3679), - [anon_sym_descending] = ACTIONS(3679), - [anon_sym_group] = ACTIONS(3679), - [anon_sym_by] = ACTIONS(3679), - [anon_sym_select] = ACTIONS(3679), - [anon_sym_as] = ACTIONS(3679), - [anon_sym_is] = ACTIONS(3679), - [anon_sym_DASH_GT] = ACTIONS(3681), - [anon_sym_with] = ACTIONS(3679), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_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(3681), + [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), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), }, [2724] = { [sym_preproc_region] = STATE(2724), @@ -447673,79 +447287,79 @@ 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(3675), - [anon_sym_alias] = ACTIONS(3675), - [anon_sym_global] = ACTIONS(3675), - [anon_sym_LBRACK] = ACTIONS(3677), - [anon_sym_COLON] = ACTIONS(3677), - [anon_sym_COMMA] = ACTIONS(3677), - [anon_sym_LPAREN] = ACTIONS(3677), - [anon_sym_LBRACE] = ACTIONS(3677), - [anon_sym_file] = ACTIONS(3675), - [anon_sym_LT] = ACTIONS(3675), - [anon_sym_GT] = ACTIONS(3675), - [anon_sym_where] = ACTIONS(3675), - [anon_sym_QMARK] = ACTIONS(3675), - [anon_sym_notnull] = ACTIONS(3675), - [anon_sym_unmanaged] = ACTIONS(3675), - [anon_sym_BANG] = ACTIONS(3675), - [anon_sym_PLUS_PLUS] = ACTIONS(3677), - [anon_sym_DASH_DASH] = ACTIONS(3677), - [anon_sym_PLUS] = ACTIONS(3675), - [anon_sym_DASH] = ACTIONS(3675), - [anon_sym_STAR] = ACTIONS(3677), - [anon_sym_SLASH] = ACTIONS(3675), - [anon_sym_PERCENT] = ACTIONS(3677), - [anon_sym_CARET] = ACTIONS(3677), - [anon_sym_PIPE] = ACTIONS(3675), - [anon_sym_AMP] = ACTIONS(3675), - [anon_sym_LT_LT] = ACTIONS(3677), - [anon_sym_GT_GT] = ACTIONS(3675), - [anon_sym_GT_GT_GT] = ACTIONS(3677), - [anon_sym_EQ_EQ] = ACTIONS(3677), - [anon_sym_BANG_EQ] = ACTIONS(3677), - [anon_sym_GT_EQ] = ACTIONS(3677), - [anon_sym_LT_EQ] = ACTIONS(3677), - [anon_sym_DOT] = ACTIONS(3675), - [anon_sym_scoped] = ACTIONS(3675), - [anon_sym_var] = ACTIONS(3675), - [anon_sym_yield] = ACTIONS(3675), - [anon_sym_switch] = ACTIONS(3675), - [anon_sym_when] = ACTIONS(3675), - [sym_discard] = ACTIONS(3675), - [anon_sym_DOT_DOT] = ACTIONS(3677), - [anon_sym_and] = ACTIONS(3675), - [anon_sym_or] = ACTIONS(3675), - [anon_sym_AMP_AMP] = ACTIONS(3677), - [anon_sym_PIPE_PIPE] = ACTIONS(3677), - [anon_sym_QMARK_QMARK] = ACTIONS(3677), - [anon_sym_from] = ACTIONS(3675), - [anon_sym_into] = ACTIONS(3675), - [anon_sym_join] = ACTIONS(3675), - [anon_sym_on] = ACTIONS(3675), - [anon_sym_equals] = ACTIONS(3675), - [anon_sym_let] = ACTIONS(3675), - [anon_sym_orderby] = ACTIONS(3675), - [anon_sym_ascending] = ACTIONS(3675), - [anon_sym_descending] = ACTIONS(3675), - [anon_sym_group] = ACTIONS(3675), - [anon_sym_by] = ACTIONS(3675), - [anon_sym_select] = ACTIONS(3675), - [anon_sym_as] = ACTIONS(3675), - [anon_sym_is] = ACTIONS(3675), - [anon_sym_DASH_GT] = ACTIONS(3677), - [anon_sym_with] = ACTIONS(3675), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_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(3677), + [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), }, [2725] = { [sym_preproc_region] = STATE(2725), @@ -447757,68 +447371,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(3671), - [anon_sym_alias] = ACTIONS(3671), - [anon_sym_global] = ACTIONS(3671), - [anon_sym_LBRACK] = ACTIONS(3673), - [anon_sym_COLON] = ACTIONS(3673), - [anon_sym_COMMA] = ACTIONS(3673), - [anon_sym_LPAREN] = ACTIONS(3673), - [anon_sym_LBRACE] = ACTIONS(3673), - [anon_sym_file] = ACTIONS(3671), - [anon_sym_LT] = ACTIONS(3671), - [anon_sym_GT] = ACTIONS(3671), - [anon_sym_where] = ACTIONS(3671), - [anon_sym_QMARK] = ACTIONS(3671), - [anon_sym_notnull] = ACTIONS(3671), - [anon_sym_unmanaged] = ACTIONS(3671), - [anon_sym_BANG] = ACTIONS(3671), - [anon_sym_PLUS_PLUS] = ACTIONS(3673), - [anon_sym_DASH_DASH] = ACTIONS(3673), - [anon_sym_PLUS] = ACTIONS(3671), - [anon_sym_DASH] = ACTIONS(3671), - [anon_sym_STAR] = ACTIONS(3673), - [anon_sym_SLASH] = ACTIONS(3671), - [anon_sym_PERCENT] = ACTIONS(3673), - [anon_sym_CARET] = ACTIONS(3673), - [anon_sym_PIPE] = ACTIONS(3671), - [anon_sym_AMP] = ACTIONS(3671), - [anon_sym_LT_LT] = ACTIONS(3673), - [anon_sym_GT_GT] = ACTIONS(3671), - [anon_sym_GT_GT_GT] = ACTIONS(3673), - [anon_sym_EQ_EQ] = ACTIONS(3673), - [anon_sym_BANG_EQ] = ACTIONS(3673), - [anon_sym_GT_EQ] = ACTIONS(3673), - [anon_sym_LT_EQ] = ACTIONS(3673), - [anon_sym_DOT] = ACTIONS(3671), - [anon_sym_scoped] = ACTIONS(3671), - [anon_sym_var] = ACTIONS(3671), - [anon_sym_yield] = ACTIONS(3671), - [anon_sym_switch] = ACTIONS(3671), - [anon_sym_when] = ACTIONS(3671), - [sym_discard] = ACTIONS(3671), - [anon_sym_DOT_DOT] = ACTIONS(3673), - [anon_sym_and] = ACTIONS(3671), - [anon_sym_or] = ACTIONS(3671), - [anon_sym_AMP_AMP] = ACTIONS(3673), - [anon_sym_PIPE_PIPE] = ACTIONS(3673), - [anon_sym_QMARK_QMARK] = ACTIONS(3673), - [anon_sym_from] = ACTIONS(3671), - [anon_sym_into] = ACTIONS(3671), - [anon_sym_join] = ACTIONS(3671), - [anon_sym_on] = ACTIONS(3671), - [anon_sym_equals] = ACTIONS(3671), - [anon_sym_let] = ACTIONS(3671), - [anon_sym_orderby] = ACTIONS(3671), - [anon_sym_ascending] = ACTIONS(3671), - [anon_sym_descending] = ACTIONS(3671), - [anon_sym_group] = ACTIONS(3671), - [anon_sym_by] = ACTIONS(3671), - [anon_sym_select] = ACTIONS(3671), - [anon_sym_as] = ACTIONS(3671), - [anon_sym_is] = ACTIONS(3671), - [anon_sym_DASH_GT] = ACTIONS(3673), - [anon_sym_with] = ACTIONS(3671), + [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), @@ -447829,7 +447444,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(3673), }, [2726] = { [sym_preproc_region] = STATE(2726), @@ -447841,327 +447455,327 @@ 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(3654), - [anon_sym_alias] = ACTIONS(3654), - [anon_sym_global] = ACTIONS(3654), - [anon_sym_LBRACK] = ACTIONS(3656), - [anon_sym_COLON] = ACTIONS(3656), - [anon_sym_COMMA] = ACTIONS(3656), - [anon_sym_LPAREN] = ACTIONS(3656), - [anon_sym_LBRACE] = ACTIONS(3656), - [anon_sym_file] = ACTIONS(3654), - [anon_sym_LT] = ACTIONS(3654), - [anon_sym_GT] = ACTIONS(3654), - [anon_sym_where] = ACTIONS(3654), - [anon_sym_QMARK] = ACTIONS(3654), - [anon_sym_notnull] = ACTIONS(3654), - [anon_sym_unmanaged] = ACTIONS(3654), - [anon_sym_BANG] = ACTIONS(3654), - [anon_sym_PLUS_PLUS] = ACTIONS(3656), - [anon_sym_DASH_DASH] = ACTIONS(3656), - [anon_sym_PLUS] = ACTIONS(3654), - [anon_sym_DASH] = ACTIONS(3654), - [anon_sym_STAR] = ACTIONS(3656), - [anon_sym_SLASH] = ACTIONS(3654), - [anon_sym_PERCENT] = ACTIONS(3656), - [anon_sym_CARET] = ACTIONS(3656), - [anon_sym_PIPE] = ACTIONS(3654), - [anon_sym_AMP] = ACTIONS(3654), - [anon_sym_LT_LT] = ACTIONS(3656), - [anon_sym_GT_GT] = ACTIONS(3654), - [anon_sym_GT_GT_GT] = ACTIONS(3656), - [anon_sym_EQ_EQ] = ACTIONS(3656), - [anon_sym_BANG_EQ] = ACTIONS(3656), - [anon_sym_GT_EQ] = ACTIONS(3656), - [anon_sym_LT_EQ] = ACTIONS(3656), - [anon_sym_DOT] = ACTIONS(3654), - [anon_sym_scoped] = ACTIONS(3654), - [anon_sym_var] = ACTIONS(3654), - [anon_sym_yield] = ACTIONS(3654), - [anon_sym_switch] = ACTIONS(3654), - [anon_sym_when] = ACTIONS(3654), - [sym_discard] = ACTIONS(3654), - [anon_sym_DOT_DOT] = ACTIONS(3656), - [anon_sym_and] = ACTIONS(3654), - [anon_sym_or] = ACTIONS(3654), - [anon_sym_AMP_AMP] = ACTIONS(3656), - [anon_sym_PIPE_PIPE] = ACTIONS(3656), - [anon_sym_QMARK_QMARK] = ACTIONS(3656), - [anon_sym_from] = ACTIONS(3654), - [anon_sym_into] = ACTIONS(3654), - [anon_sym_join] = ACTIONS(3654), - [anon_sym_on] = ACTIONS(3654), - [anon_sym_equals] = ACTIONS(3654), - [anon_sym_let] = ACTIONS(3654), - [anon_sym_orderby] = ACTIONS(3654), - [anon_sym_ascending] = ACTIONS(3654), - [anon_sym_descending] = ACTIONS(3654), - [anon_sym_group] = ACTIONS(3654), - [anon_sym_by] = ACTIONS(3654), - [anon_sym_select] = ACTIONS(3654), - [anon_sym_as] = ACTIONS(3654), - [anon_sym_is] = ACTIONS(3654), - [anon_sym_DASH_GT] = ACTIONS(3656), - [anon_sym_with] = ACTIONS(3654), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_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(3656), - }, - [2727] = { - [sym_preproc_region] = STATE(2727), - [sym_preproc_endregion] = STATE(2727), - [sym_preproc_line] = STATE(2727), - [sym_preproc_pragma] = STATE(2727), - [sym_preproc_nullable] = STATE(2727), - [sym_preproc_error] = STATE(2727), - [sym_preproc_warning] = STATE(2727), - [sym_preproc_define] = STATE(2727), - [sym_preproc_undef] = STATE(2727), - [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), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_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), - [sym_preproc_endregion] = STATE(2728), - [sym_preproc_line] = STATE(2728), - [sym_preproc_pragma] = STATE(2728), - [sym_preproc_nullable] = STATE(2728), - [sym_preproc_error] = STATE(2728), - [sym_preproc_warning] = STATE(2728), - [sym_preproc_define] = STATE(2728), - [sym_preproc_undef] = STATE(2728), - [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), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - }, - [2729] = { - [sym_preproc_region] = STATE(2729), - [sym_preproc_endregion] = STATE(2729), - [sym_preproc_line] = STATE(2729), - [sym_preproc_pragma] = STATE(2729), - [sym_preproc_nullable] = STATE(2729), - [sym_preproc_error] = STATE(2729), - [sym_preproc_warning] = STATE(2729), - [sym_preproc_define] = STATE(2729), - [sym_preproc_undef] = STATE(2729), - [anon_sym_SEMI] = ACTIONS(3656), - [anon_sym_EQ] = ACTIONS(3654), - [anon_sym_LBRACK] = ACTIONS(3656), - [anon_sym_COLON] = ACTIONS(3656), - [anon_sym_COMMA] = ACTIONS(3656), - [anon_sym_RBRACK] = ACTIONS(3656), - [anon_sym_LPAREN] = ACTIONS(3656), - [anon_sym_RPAREN] = ACTIONS(3656), - [anon_sym_RBRACE] = ACTIONS(3656), - [anon_sym_LT] = ACTIONS(3654), - [anon_sym_GT] = ACTIONS(3654), - [anon_sym_in] = ACTIONS(3656), - [anon_sym_QMARK] = ACTIONS(3654), - [anon_sym_BANG] = ACTIONS(3654), - [anon_sym_PLUS_PLUS] = ACTIONS(3656), - [anon_sym_DASH_DASH] = ACTIONS(3656), - [anon_sym_PLUS] = ACTIONS(3654), - [anon_sym_DASH] = ACTIONS(3654), - [anon_sym_STAR] = ACTIONS(3654), - [anon_sym_SLASH] = ACTIONS(3654), - [anon_sym_PERCENT] = ACTIONS(3654), - [anon_sym_CARET] = ACTIONS(3654), - [anon_sym_PIPE] = ACTIONS(3654), - [anon_sym_AMP] = ACTIONS(3654), - [anon_sym_LT_LT] = ACTIONS(3654), - [anon_sym_GT_GT] = ACTIONS(3654), - [anon_sym_GT_GT_GT] = ACTIONS(3654), - [anon_sym_EQ_EQ] = ACTIONS(3656), - [anon_sym_BANG_EQ] = ACTIONS(3656), - [anon_sym_GT_EQ] = ACTIONS(3656), - [anon_sym_LT_EQ] = ACTIONS(3656), - [anon_sym_DOT] = ACTIONS(3654), - [anon_sym_EQ_GT] = ACTIONS(3656), - [anon_sym_switch] = ACTIONS(3656), - [anon_sym_when] = ACTIONS(3656), - [anon_sym_DOT_DOT] = ACTIONS(3656), - [anon_sym_and] = ACTIONS(3656), - [anon_sym_or] = ACTIONS(3656), - [anon_sym_PLUS_EQ] = ACTIONS(3656), - [anon_sym_DASH_EQ] = ACTIONS(3656), - [anon_sym_STAR_EQ] = ACTIONS(3656), - [anon_sym_SLASH_EQ] = ACTIONS(3656), - [anon_sym_PERCENT_EQ] = ACTIONS(3656), - [anon_sym_AMP_EQ] = ACTIONS(3656), - [anon_sym_CARET_EQ] = ACTIONS(3656), - [anon_sym_PIPE_EQ] = ACTIONS(3656), - [anon_sym_LT_LT_EQ] = ACTIONS(3656), - [anon_sym_GT_GT_EQ] = ACTIONS(3656), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3656), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3656), - [anon_sym_AMP_AMP] = ACTIONS(3656), - [anon_sym_PIPE_PIPE] = ACTIONS(3656), - [anon_sym_QMARK_QMARK] = ACTIONS(3654), - [anon_sym_on] = ACTIONS(3656), - [anon_sym_equals] = ACTIONS(3656), - [anon_sym_by] = ACTIONS(3656), - [anon_sym_as] = ACTIONS(3656), - [anon_sym_is] = ACTIONS(3656), - [anon_sym_DASH_GT] = ACTIONS(3656), - [anon_sym_with] = ACTIONS(3656), - [aux_sym_preproc_if_token3] = ACTIONS(3656), - [aux_sym_preproc_else_token1] = ACTIONS(3656), - [aux_sym_preproc_elif_token1] = ACTIONS(3656), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), + [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), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_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), + [sym_preproc_endregion] = STATE(2727), + [sym_preproc_line] = STATE(2727), + [sym_preproc_pragma] = STATE(2727), + [sym_preproc_nullable] = STATE(2727), + [sym_preproc_error] = STATE(2727), + [sym_preproc_warning] = STATE(2727), + [sym_preproc_define] = STATE(2727), + [sym_preproc_undef] = STATE(2727), + [sym__identifier_token] = ACTIONS(4479), + [anon_sym_extern] = ACTIONS(4479), + [anon_sym_alias] = ACTIONS(4479), + [anon_sym_global] = ACTIONS(4479), + [anon_sym_using] = ACTIONS(4479), + [anon_sym_unsafe] = ACTIONS(4479), + [anon_sym_static] = ACTIONS(4479), + [anon_sym_LBRACK] = ACTIONS(4481), + [anon_sym_LPAREN] = ACTIONS(4481), + [anon_sym_event] = ACTIONS(4479), + [anon_sym_namespace] = ACTIONS(4479), + [anon_sym_class] = ACTIONS(4479), + [anon_sym_ref] = ACTIONS(4479), + [anon_sym_struct] = ACTIONS(4479), + [anon_sym_enum] = ACTIONS(4479), + [anon_sym_RBRACE] = ACTIONS(4481), + [anon_sym_interface] = ACTIONS(4479), + [anon_sym_delegate] = ACTIONS(4479), + [anon_sym_record] = ACTIONS(4479), + [anon_sym_abstract] = ACTIONS(4479), + [anon_sym_async] = ACTIONS(4479), + [anon_sym_const] = ACTIONS(4479), + [anon_sym_file] = ACTIONS(4479), + [anon_sym_fixed] = ACTIONS(4479), + [anon_sym_internal] = ACTIONS(4479), + [anon_sym_new] = ACTIONS(4479), + [anon_sym_override] = ACTIONS(4479), + [anon_sym_partial] = ACTIONS(4479), + [anon_sym_private] = ACTIONS(4479), + [anon_sym_protected] = ACTIONS(4479), + [anon_sym_public] = ACTIONS(4479), + [anon_sym_readonly] = ACTIONS(4479), + [anon_sym_required] = ACTIONS(4479), + [anon_sym_sealed] = ACTIONS(4479), + [anon_sym_virtual] = ACTIONS(4479), + [anon_sym_volatile] = ACTIONS(4479), + [anon_sym_where] = ACTIONS(4479), + [anon_sym_notnull] = ACTIONS(4479), + [anon_sym_unmanaged] = ACTIONS(4479), + [anon_sym_TILDE] = ACTIONS(4481), + [anon_sym_implicit] = ACTIONS(4479), + [anon_sym_explicit] = ACTIONS(4479), + [anon_sym_scoped] = ACTIONS(4479), + [anon_sym_var] = ACTIONS(4479), + [sym_predefined_type] = ACTIONS(4479), + [anon_sym_yield] = ACTIONS(4479), + [anon_sym_when] = ACTIONS(4479), + [anon_sym_from] = ACTIONS(4479), + [anon_sym_into] = ACTIONS(4479), + [anon_sym_join] = ACTIONS(4479), + [anon_sym_on] = ACTIONS(4479), + [anon_sym_equals] = ACTIONS(4479), + [anon_sym_let] = ACTIONS(4479), + [anon_sym_orderby] = ACTIONS(4479), + [anon_sym_ascending] = ACTIONS(4479), + [anon_sym_descending] = ACTIONS(4479), + [anon_sym_group] = ACTIONS(4479), + [anon_sym_by] = ACTIONS(4479), + [anon_sym_select] = ACTIONS(4479), + [aux_sym_preproc_if_token1] = ACTIONS(4481), + [aux_sym_preproc_if_token3] = ACTIONS(4481), + [aux_sym_preproc_else_token1] = ACTIONS(4481), + [aux_sym_preproc_elif_token1] = ACTIONS(4481), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_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), + [sym_preproc_endregion] = STATE(2728), + [sym_preproc_line] = STATE(2728), + [sym_preproc_pragma] = STATE(2728), + [sym_preproc_nullable] = STATE(2728), + [sym_preproc_error] = STATE(2728), + [sym_preproc_warning] = STATE(2728), + [sym_preproc_define] = STATE(2728), + [sym_preproc_undef] = STATE(2728), + [sym__identifier_token] = ACTIONS(4483), + [anon_sym_extern] = ACTIONS(4483), + [anon_sym_alias] = ACTIONS(4483), + [anon_sym_global] = ACTIONS(4483), + [anon_sym_using] = ACTIONS(4483), + [anon_sym_unsafe] = ACTIONS(4483), + [anon_sym_static] = ACTIONS(4483), + [anon_sym_LBRACK] = ACTIONS(4485), + [anon_sym_LPAREN] = ACTIONS(4485), + [anon_sym_event] = ACTIONS(4483), + [anon_sym_namespace] = ACTIONS(4483), + [anon_sym_class] = ACTIONS(4483), + [anon_sym_ref] = ACTIONS(4483), + [anon_sym_struct] = ACTIONS(4483), + [anon_sym_enum] = ACTIONS(4483), + [anon_sym_RBRACE] = ACTIONS(4485), + [anon_sym_interface] = ACTIONS(4483), + [anon_sym_delegate] = ACTIONS(4483), + [anon_sym_record] = ACTIONS(4483), + [anon_sym_abstract] = ACTIONS(4483), + [anon_sym_async] = ACTIONS(4483), + [anon_sym_const] = ACTIONS(4483), + [anon_sym_file] = ACTIONS(4483), + [anon_sym_fixed] = ACTIONS(4483), + [anon_sym_internal] = ACTIONS(4483), + [anon_sym_new] = ACTIONS(4483), + [anon_sym_override] = ACTIONS(4483), + [anon_sym_partial] = ACTIONS(4483), + [anon_sym_private] = ACTIONS(4483), + [anon_sym_protected] = ACTIONS(4483), + [anon_sym_public] = ACTIONS(4483), + [anon_sym_readonly] = ACTIONS(4483), + [anon_sym_required] = ACTIONS(4483), + [anon_sym_sealed] = ACTIONS(4483), + [anon_sym_virtual] = ACTIONS(4483), + [anon_sym_volatile] = ACTIONS(4483), + [anon_sym_where] = ACTIONS(4483), + [anon_sym_notnull] = ACTIONS(4483), + [anon_sym_unmanaged] = ACTIONS(4483), + [anon_sym_TILDE] = ACTIONS(4485), + [anon_sym_implicit] = ACTIONS(4483), + [anon_sym_explicit] = ACTIONS(4483), + [anon_sym_scoped] = ACTIONS(4483), + [anon_sym_var] = ACTIONS(4483), + [sym_predefined_type] = ACTIONS(4483), + [anon_sym_yield] = ACTIONS(4483), + [anon_sym_when] = ACTIONS(4483), + [anon_sym_from] = ACTIONS(4483), + [anon_sym_into] = ACTIONS(4483), + [anon_sym_join] = ACTIONS(4483), + [anon_sym_on] = ACTIONS(4483), + [anon_sym_equals] = ACTIONS(4483), + [anon_sym_let] = ACTIONS(4483), + [anon_sym_orderby] = ACTIONS(4483), + [anon_sym_ascending] = ACTIONS(4483), + [anon_sym_descending] = ACTIONS(4483), + [anon_sym_group] = ACTIONS(4483), + [anon_sym_by] = ACTIONS(4483), + [anon_sym_select] = ACTIONS(4483), + [aux_sym_preproc_if_token1] = ACTIONS(4485), + [aux_sym_preproc_if_token3] = ACTIONS(4485), + [aux_sym_preproc_else_token1] = ACTIONS(4485), + [aux_sym_preproc_elif_token1] = ACTIONS(4485), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + }, + [2729] = { + [sym__variable_designation] = STATE(3449), + [sym_parenthesized_variable_designation] = STATE(3352), + [sym_identifier] = STATE(3355), + [sym__reserved_identifier] = STATE(3199), + [sym_preproc_region] = STATE(2729), + [sym_preproc_endregion] = STATE(2729), + [sym_preproc_line] = STATE(2729), + [sym_preproc_pragma] = STATE(2729), + [sym_preproc_nullable] = STATE(2729), + [sym_preproc_error] = STATE(2729), + [sym_preproc_warning] = STATE(2729), + [sym_preproc_define] = STATE(2729), + [sym_preproc_undef] = STATE(2729), + [sym__identifier_token] = ACTIONS(3855), + [anon_sym_alias] = ACTIONS(3857), + [anon_sym_global] = ACTIONS(3857), + [anon_sym_LBRACK] = ACTIONS(3893), + [anon_sym_LPAREN] = ACTIONS(3893), + [anon_sym_file] = ACTIONS(3857), + [anon_sym_LT] = ACTIONS(3895), + [anon_sym_GT] = ACTIONS(3895), + [anon_sym_where] = ACTIONS(3857), + [anon_sym_QMARK] = ACTIONS(3895), + [anon_sym_notnull] = ACTIONS(3857), + [anon_sym_unmanaged] = ACTIONS(3857), + [anon_sym_BANG] = ACTIONS(3895), + [anon_sym_PLUS_PLUS] = ACTIONS(3893), + [anon_sym_DASH_DASH] = ACTIONS(3893), + [anon_sym_PLUS] = ACTIONS(3895), + [anon_sym_DASH] = ACTIONS(3895), + [anon_sym_STAR] = ACTIONS(3893), + [anon_sym_SLASH] = ACTIONS(3895), + [anon_sym_PERCENT] = ACTIONS(3893), + [anon_sym_CARET] = ACTIONS(3893), + [anon_sym_PIPE] = ACTIONS(3895), + [anon_sym_AMP] = ACTIONS(3895), + [anon_sym_LT_LT] = ACTIONS(3893), + [anon_sym_GT_GT] = ACTIONS(3895), + [anon_sym_GT_GT_GT] = ACTIONS(3893), + [anon_sym_EQ_EQ] = ACTIONS(3893), + [anon_sym_BANG_EQ] = ACTIONS(3893), + [anon_sym_GT_EQ] = ACTIONS(3893), + [anon_sym_LT_EQ] = ACTIONS(3893), + [anon_sym_DOT] = ACTIONS(3895), + [anon_sym_scoped] = ACTIONS(3857), + [anon_sym_var] = ACTIONS(3857), + [anon_sym_yield] = ACTIONS(3857), + [anon_sym_switch] = ACTIONS(3895), + [anon_sym_when] = ACTIONS(3857), + [sym_discard] = ACTIONS(3877), + [anon_sym_DOT_DOT] = ACTIONS(3893), + [anon_sym_and] = ACTIONS(3895), + [anon_sym_or] = ACTIONS(3895), + [anon_sym_AMP_AMP] = ACTIONS(3893), + [anon_sym_PIPE_PIPE] = ACTIONS(3893), + [anon_sym_QMARK_QMARK] = ACTIONS(3893), + [anon_sym_from] = ACTIONS(3857), + [anon_sym_into] = ACTIONS(3857), + [anon_sym_join] = ACTIONS(3857), + [anon_sym_on] = ACTIONS(3857), + [anon_sym_equals] = ACTIONS(3895), + [anon_sym_let] = ACTIONS(3857), + [anon_sym_orderby] = ACTIONS(3857), + [anon_sym_ascending] = ACTIONS(3857), + [anon_sym_descending] = ACTIONS(3857), + [anon_sym_group] = ACTIONS(3857), + [anon_sym_by] = ACTIONS(3857), + [anon_sym_select] = ACTIONS(3857), + [anon_sym_as] = ACTIONS(3895), + [anon_sym_is] = ACTIONS(3895), + [anon_sym_DASH_GT] = ACTIONS(3893), + [anon_sym_with] = ACTIONS(3895), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), [aux_sym_preproc_warning_token1] = ACTIONS(15), [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), @@ -448177,69 +447791,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(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), + [sym__identifier_token] = ACTIONS(4487), + [anon_sym_extern] = ACTIONS(4487), + [anon_sym_alias] = ACTIONS(4487), + [anon_sym_global] = ACTIONS(4487), + [anon_sym_using] = ACTIONS(4487), + [anon_sym_unsafe] = ACTIONS(4487), + [anon_sym_static] = ACTIONS(4487), + [anon_sym_LBRACK] = ACTIONS(4489), + [anon_sym_LPAREN] = ACTIONS(4489), + [anon_sym_event] = ACTIONS(4487), + [anon_sym_namespace] = ACTIONS(4487), + [anon_sym_class] = ACTIONS(4487), + [anon_sym_ref] = ACTIONS(4487), + [anon_sym_struct] = ACTIONS(4487), + [anon_sym_enum] = ACTIONS(4487), + [anon_sym_RBRACE] = ACTIONS(4489), + [anon_sym_interface] = ACTIONS(4487), + [anon_sym_delegate] = ACTIONS(4487), + [anon_sym_record] = ACTIONS(4487), + [anon_sym_abstract] = ACTIONS(4487), + [anon_sym_async] = ACTIONS(4487), + [anon_sym_const] = ACTIONS(4487), + [anon_sym_file] = ACTIONS(4487), + [anon_sym_fixed] = ACTIONS(4487), + [anon_sym_internal] = ACTIONS(4487), + [anon_sym_new] = ACTIONS(4487), + [anon_sym_override] = ACTIONS(4487), + [anon_sym_partial] = ACTIONS(4487), + [anon_sym_private] = ACTIONS(4487), + [anon_sym_protected] = ACTIONS(4487), + [anon_sym_public] = ACTIONS(4487), + [anon_sym_readonly] = ACTIONS(4487), + [anon_sym_required] = ACTIONS(4487), + [anon_sym_sealed] = ACTIONS(4487), + [anon_sym_virtual] = ACTIONS(4487), + [anon_sym_volatile] = ACTIONS(4487), + [anon_sym_where] = ACTIONS(4487), + [anon_sym_notnull] = ACTIONS(4487), + [anon_sym_unmanaged] = ACTIONS(4487), + [anon_sym_TILDE] = ACTIONS(4489), + [anon_sym_implicit] = ACTIONS(4487), + [anon_sym_explicit] = ACTIONS(4487), + [anon_sym_scoped] = ACTIONS(4487), + [anon_sym_var] = ACTIONS(4487), + [sym_predefined_type] = ACTIONS(4487), + [anon_sym_yield] = ACTIONS(4487), + [anon_sym_when] = ACTIONS(4487), + [anon_sym_from] = ACTIONS(4487), + [anon_sym_into] = ACTIONS(4487), + [anon_sym_join] = ACTIONS(4487), + [anon_sym_on] = ACTIONS(4487), + [anon_sym_equals] = ACTIONS(4487), + [anon_sym_let] = ACTIONS(4487), + [anon_sym_orderby] = ACTIONS(4487), + [anon_sym_ascending] = ACTIONS(4487), + [anon_sym_descending] = ACTIONS(4487), + [anon_sym_group] = ACTIONS(4487), + [anon_sym_by] = ACTIONS(4487), + [anon_sym_select] = ACTIONS(4487), + [aux_sym_preproc_if_token1] = ACTIONS(4489), + [aux_sym_preproc_if_token3] = ACTIONS(4489), + [aux_sym_preproc_else_token1] = ACTIONS(4489), + [aux_sym_preproc_elif_token1] = ACTIONS(4489), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -448252,10 +447866,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2731] = { - [sym__variable_designation] = STATE(4130), - [sym_parenthesized_variable_designation] = STATE(4173), - [sym_identifier] = STATE(4177), - [sym__reserved_identifier] = STATE(2904), + [sym__variable_designation] = STATE(3413), + [sym_parenthesized_variable_designation] = STATE(3352), + [sym_identifier] = STATE(3355), + [sym__reserved_identifier] = STATE(3199), [sym_preproc_region] = STATE(2731), [sym_preproc_endregion] = STATE(2731), [sym_preproc_line] = STATE(2731), @@ -448265,65 +447879,65 @@ 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(3861), - [anon_sym_alias] = ACTIONS(3863), - [anon_sym_global] = ACTIONS(3863), - [anon_sym_LBRACK] = ACTIONS(3905), - [anon_sym_LPAREN] = ACTIONS(3905), - [anon_sym_file] = ACTIONS(3863), - [anon_sym_LT] = ACTIONS(3907), - [anon_sym_GT] = ACTIONS(3907), - [anon_sym_where] = ACTIONS(3907), - [anon_sym_QMARK] = ACTIONS(3907), - [anon_sym_notnull] = ACTIONS(3863), - [anon_sym_unmanaged] = ACTIONS(3863), - [anon_sym_BANG] = ACTIONS(3907), - [anon_sym_PLUS_PLUS] = ACTIONS(3905), - [anon_sym_DASH_DASH] = ACTIONS(3905), - [anon_sym_PLUS] = ACTIONS(3907), - [anon_sym_DASH] = ACTIONS(3907), - [anon_sym_STAR] = ACTIONS(3905), - [anon_sym_SLASH] = ACTIONS(3907), - [anon_sym_PERCENT] = ACTIONS(3905), - [anon_sym_CARET] = ACTIONS(3905), - [anon_sym_PIPE] = ACTIONS(3907), - [anon_sym_AMP] = ACTIONS(3907), - [anon_sym_LT_LT] = ACTIONS(3905), - [anon_sym_GT_GT] = ACTIONS(3907), - [anon_sym_GT_GT_GT] = ACTIONS(3905), - [anon_sym_EQ_EQ] = ACTIONS(3905), - [anon_sym_BANG_EQ] = ACTIONS(3905), - [anon_sym_GT_EQ] = ACTIONS(3905), - [anon_sym_LT_EQ] = ACTIONS(3905), - [anon_sym_DOT] = ACTIONS(3907), - [anon_sym_scoped] = ACTIONS(3863), - [anon_sym_var] = ACTIONS(3863), - [anon_sym_yield] = ACTIONS(3863), - [anon_sym_switch] = ACTIONS(3907), - [anon_sym_when] = ACTIONS(3863), - [sym_discard] = ACTIONS(4209), - [anon_sym_DOT_DOT] = ACTIONS(3905), - [anon_sym_and] = ACTIONS(3907), - [anon_sym_or] = ACTIONS(3907), - [anon_sym_AMP_AMP] = ACTIONS(3905), - [anon_sym_PIPE_PIPE] = ACTIONS(3905), - [anon_sym_QMARK_QMARK] = ACTIONS(3905), - [anon_sym_from] = ACTIONS(3907), - [anon_sym_into] = ACTIONS(3907), - [anon_sym_join] = ACTIONS(3907), - [anon_sym_on] = ACTIONS(3863), - [anon_sym_equals] = ACTIONS(3863), - [anon_sym_let] = ACTIONS(3907), - [anon_sym_orderby] = ACTIONS(3907), - [anon_sym_ascending] = ACTIONS(3863), - [anon_sym_descending] = ACTIONS(3863), - [anon_sym_group] = ACTIONS(3907), - [anon_sym_by] = ACTIONS(3863), - [anon_sym_select] = ACTIONS(3907), - [anon_sym_as] = ACTIONS(3907), - [anon_sym_is] = ACTIONS(3907), - [anon_sym_DASH_GT] = ACTIONS(3905), - [anon_sym_with] = ACTIONS(3907), + [sym__identifier_token] = ACTIONS(3855), + [anon_sym_alias] = ACTIONS(3857), + [anon_sym_global] = ACTIONS(3857), + [anon_sym_LBRACK] = ACTIONS(3885), + [anon_sym_LPAREN] = ACTIONS(3885), + [anon_sym_file] = ACTIONS(3857), + [anon_sym_LT] = ACTIONS(3887), + [anon_sym_GT] = ACTIONS(3887), + [anon_sym_where] = ACTIONS(3857), + [anon_sym_QMARK] = ACTIONS(3887), + [anon_sym_notnull] = ACTIONS(3857), + [anon_sym_unmanaged] = ACTIONS(3857), + [anon_sym_BANG] = ACTIONS(3887), + [anon_sym_PLUS_PLUS] = ACTIONS(3885), + [anon_sym_DASH_DASH] = ACTIONS(3885), + [anon_sym_PLUS] = ACTIONS(3887), + [anon_sym_DASH] = ACTIONS(3887), + [anon_sym_STAR] = ACTIONS(3885), + [anon_sym_SLASH] = ACTIONS(3887), + [anon_sym_PERCENT] = ACTIONS(3885), + [anon_sym_CARET] = ACTIONS(3885), + [anon_sym_PIPE] = ACTIONS(3887), + [anon_sym_AMP] = ACTIONS(3887), + [anon_sym_LT_LT] = ACTIONS(3885), + [anon_sym_GT_GT] = ACTIONS(3887), + [anon_sym_GT_GT_GT] = ACTIONS(3885), + [anon_sym_EQ_EQ] = ACTIONS(3885), + [anon_sym_BANG_EQ] = ACTIONS(3885), + [anon_sym_GT_EQ] = ACTIONS(3885), + [anon_sym_LT_EQ] = ACTIONS(3885), + [anon_sym_DOT] = ACTIONS(3887), + [anon_sym_scoped] = ACTIONS(3857), + [anon_sym_var] = ACTIONS(3857), + [anon_sym_yield] = ACTIONS(3857), + [anon_sym_switch] = ACTIONS(3887), + [anon_sym_when] = ACTIONS(3857), + [sym_discard] = ACTIONS(3877), + [anon_sym_DOT_DOT] = ACTIONS(3885), + [anon_sym_and] = ACTIONS(3887), + [anon_sym_or] = ACTIONS(3887), + [anon_sym_AMP_AMP] = ACTIONS(3885), + [anon_sym_PIPE_PIPE] = ACTIONS(3885), + [anon_sym_QMARK_QMARK] = ACTIONS(3885), + [anon_sym_from] = ACTIONS(3857), + [anon_sym_into] = ACTIONS(3857), + [anon_sym_join] = ACTIONS(3857), + [anon_sym_on] = ACTIONS(3857), + [anon_sym_equals] = ACTIONS(3887), + [anon_sym_let] = ACTIONS(3857), + [anon_sym_orderby] = ACTIONS(3857), + [anon_sym_ascending] = ACTIONS(3857), + [anon_sym_descending] = ACTIONS(3857), + [anon_sym_group] = ACTIONS(3857), + [anon_sym_by] = ACTIONS(3857), + [anon_sym_select] = ACTIONS(3857), + [anon_sym_as] = ACTIONS(3887), + [anon_sym_is] = ACTIONS(3887), + [anon_sym_DASH_GT] = ACTIONS(3885), + [anon_sym_with] = ACTIONS(3887), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -448336,10 +447950,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2732] = { - [sym__variable_designation] = STATE(4143), - [sym_parenthesized_variable_designation] = STATE(4173), - [sym_identifier] = STATE(4177), - [sym__reserved_identifier] = STATE(2904), + [sym__variable_designation] = STATE(3411), + [sym_parenthesized_variable_designation] = STATE(3352), + [sym_identifier] = STATE(3355), + [sym__reserved_identifier] = STATE(3199), [sym_preproc_region] = STATE(2732), [sym_preproc_endregion] = STATE(2732), [sym_preproc_line] = STATE(2732), @@ -448349,65 +447963,65 @@ 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(3861), - [anon_sym_alias] = ACTIONS(3863), - [anon_sym_global] = ACTIONS(3863), - [anon_sym_LBRACK] = ACTIONS(3913), - [anon_sym_LPAREN] = ACTIONS(3913), - [anon_sym_file] = ACTIONS(3863), - [anon_sym_LT] = ACTIONS(3915), - [anon_sym_GT] = ACTIONS(3915), - [anon_sym_where] = ACTIONS(3915), - [anon_sym_QMARK] = ACTIONS(3915), - [anon_sym_notnull] = ACTIONS(3863), - [anon_sym_unmanaged] = ACTIONS(3863), - [anon_sym_BANG] = ACTIONS(3915), - [anon_sym_PLUS_PLUS] = ACTIONS(3913), - [anon_sym_DASH_DASH] = ACTIONS(3913), - [anon_sym_PLUS] = ACTIONS(3915), - [anon_sym_DASH] = ACTIONS(3915), - [anon_sym_STAR] = ACTIONS(3913), - [anon_sym_SLASH] = ACTIONS(3915), - [anon_sym_PERCENT] = ACTIONS(3913), - [anon_sym_CARET] = ACTIONS(3913), - [anon_sym_PIPE] = ACTIONS(3915), - [anon_sym_AMP] = ACTIONS(3915), - [anon_sym_LT_LT] = ACTIONS(3913), - [anon_sym_GT_GT] = ACTIONS(3915), - [anon_sym_GT_GT_GT] = ACTIONS(3913), - [anon_sym_EQ_EQ] = ACTIONS(3913), - [anon_sym_BANG_EQ] = ACTIONS(3913), - [anon_sym_GT_EQ] = ACTIONS(3913), - [anon_sym_LT_EQ] = ACTIONS(3913), - [anon_sym_DOT] = ACTIONS(3915), - [anon_sym_scoped] = ACTIONS(3863), - [anon_sym_var] = ACTIONS(3863), - [anon_sym_yield] = ACTIONS(3863), - [anon_sym_switch] = ACTIONS(3915), - [anon_sym_when] = ACTIONS(3863), - [sym_discard] = ACTIONS(4209), - [anon_sym_DOT_DOT] = ACTIONS(3913), - [anon_sym_and] = ACTIONS(3915), - [anon_sym_or] = ACTIONS(3915), - [anon_sym_AMP_AMP] = ACTIONS(3913), - [anon_sym_PIPE_PIPE] = ACTIONS(3913), - [anon_sym_QMARK_QMARK] = ACTIONS(3913), - [anon_sym_from] = ACTIONS(3915), - [anon_sym_into] = ACTIONS(3915), - [anon_sym_join] = ACTIONS(3915), - [anon_sym_on] = ACTIONS(3863), - [anon_sym_equals] = ACTIONS(3863), - [anon_sym_let] = ACTIONS(3915), - [anon_sym_orderby] = ACTIONS(3915), - [anon_sym_ascending] = ACTIONS(3863), - [anon_sym_descending] = ACTIONS(3863), - [anon_sym_group] = ACTIONS(3915), - [anon_sym_by] = ACTIONS(3863), - [anon_sym_select] = ACTIONS(3915), - [anon_sym_as] = ACTIONS(3915), - [anon_sym_is] = ACTIONS(3915), - [anon_sym_DASH_GT] = ACTIONS(3913), - [anon_sym_with] = ACTIONS(3915), + [sym__identifier_token] = ACTIONS(3855), + [anon_sym_alias] = ACTIONS(3857), + [anon_sym_global] = ACTIONS(3857), + [anon_sym_LBRACK] = ACTIONS(3939), + [anon_sym_LPAREN] = ACTIONS(3939), + [anon_sym_file] = ACTIONS(3857), + [anon_sym_LT] = ACTIONS(3941), + [anon_sym_GT] = ACTIONS(3941), + [anon_sym_where] = ACTIONS(3857), + [anon_sym_QMARK] = ACTIONS(3941), + [anon_sym_notnull] = ACTIONS(3857), + [anon_sym_unmanaged] = ACTIONS(3857), + [anon_sym_BANG] = ACTIONS(3941), + [anon_sym_PLUS_PLUS] = ACTIONS(3939), + [anon_sym_DASH_DASH] = ACTIONS(3939), + [anon_sym_PLUS] = ACTIONS(3941), + [anon_sym_DASH] = ACTIONS(3941), + [anon_sym_STAR] = ACTIONS(3939), + [anon_sym_SLASH] = ACTIONS(3941), + [anon_sym_PERCENT] = ACTIONS(3939), + [anon_sym_CARET] = ACTIONS(3939), + [anon_sym_PIPE] = ACTIONS(3941), + [anon_sym_AMP] = ACTIONS(3941), + [anon_sym_LT_LT] = ACTIONS(3939), + [anon_sym_GT_GT] = ACTIONS(3941), + [anon_sym_GT_GT_GT] = ACTIONS(3939), + [anon_sym_EQ_EQ] = ACTIONS(3939), + [anon_sym_BANG_EQ] = ACTIONS(3939), + [anon_sym_GT_EQ] = ACTIONS(3939), + [anon_sym_LT_EQ] = ACTIONS(3939), + [anon_sym_DOT] = ACTIONS(3941), + [anon_sym_scoped] = ACTIONS(3857), + [anon_sym_var] = ACTIONS(3857), + [anon_sym_yield] = ACTIONS(3857), + [anon_sym_switch] = ACTIONS(3941), + [anon_sym_when] = ACTIONS(3857), + [sym_discard] = ACTIONS(3877), + [anon_sym_DOT_DOT] = ACTIONS(3939), + [anon_sym_and] = ACTIONS(3941), + [anon_sym_or] = ACTIONS(3941), + [anon_sym_AMP_AMP] = ACTIONS(3939), + [anon_sym_PIPE_PIPE] = ACTIONS(3939), + [anon_sym_QMARK_QMARK] = ACTIONS(3939), + [anon_sym_from] = ACTIONS(3857), + [anon_sym_into] = ACTIONS(3857), + [anon_sym_join] = ACTIONS(3857), + [anon_sym_on] = ACTIONS(3857), + [anon_sym_equals] = ACTIONS(3941), + [anon_sym_let] = ACTIONS(3857), + [anon_sym_orderby] = ACTIONS(3857), + [anon_sym_ascending] = ACTIONS(3857), + [anon_sym_descending] = ACTIONS(3857), + [anon_sym_group] = ACTIONS(3857), + [anon_sym_by] = ACTIONS(3857), + [anon_sym_select] = ACTIONS(3857), + [anon_sym_as] = ACTIONS(3941), + [anon_sym_is] = ACTIONS(3941), + [anon_sym_DASH_GT] = ACTIONS(3939), + [anon_sym_with] = ACTIONS(3941), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -448420,6 +448034,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2733] = { + [sym__variable_designation] = STATE(3461), + [sym_parenthesized_variable_designation] = STATE(3352), + [sym_identifier] = STATE(3355), + [sym__reserved_identifier] = STATE(3199), [sym_preproc_region] = STATE(2733), [sym_preproc_endregion] = STATE(2733), [sym_preproc_line] = STATE(2733), @@ -448429,69 +448047,65 @@ 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(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), + [sym__identifier_token] = ACTIONS(3855), + [anon_sym_alias] = ACTIONS(3857), + [anon_sym_global] = ACTIONS(3857), + [anon_sym_LBRACK] = ACTIONS(3947), + [anon_sym_LPAREN] = ACTIONS(3947), + [anon_sym_file] = ACTIONS(3857), + [anon_sym_LT] = ACTIONS(3949), + [anon_sym_GT] = ACTIONS(3949), + [anon_sym_where] = ACTIONS(3857), + [anon_sym_QMARK] = ACTIONS(3949), + [anon_sym_notnull] = ACTIONS(3857), + [anon_sym_unmanaged] = ACTIONS(3857), + [anon_sym_BANG] = ACTIONS(3949), + [anon_sym_PLUS_PLUS] = ACTIONS(3947), + [anon_sym_DASH_DASH] = ACTIONS(3947), + [anon_sym_PLUS] = ACTIONS(3949), + [anon_sym_DASH] = ACTIONS(3949), + [anon_sym_STAR] = ACTIONS(3947), + [anon_sym_SLASH] = ACTIONS(3949), + [anon_sym_PERCENT] = ACTIONS(3947), + [anon_sym_CARET] = ACTIONS(3947), + [anon_sym_PIPE] = ACTIONS(3949), + [anon_sym_AMP] = ACTIONS(3949), + [anon_sym_LT_LT] = ACTIONS(3947), + [anon_sym_GT_GT] = ACTIONS(3949), + [anon_sym_GT_GT_GT] = ACTIONS(3947), + [anon_sym_EQ_EQ] = ACTIONS(3947), + [anon_sym_BANG_EQ] = ACTIONS(3947), + [anon_sym_GT_EQ] = ACTIONS(3947), + [anon_sym_LT_EQ] = ACTIONS(3947), + [anon_sym_DOT] = ACTIONS(3949), + [anon_sym_scoped] = ACTIONS(3857), + [anon_sym_var] = ACTIONS(3857), + [anon_sym_yield] = ACTIONS(3857), + [anon_sym_switch] = ACTIONS(3949), + [anon_sym_when] = ACTIONS(3857), + [sym_discard] = ACTIONS(3877), + [anon_sym_DOT_DOT] = ACTIONS(3947), + [anon_sym_and] = ACTIONS(3949), + [anon_sym_or] = ACTIONS(3949), + [anon_sym_AMP_AMP] = ACTIONS(3947), + [anon_sym_PIPE_PIPE] = ACTIONS(3947), + [anon_sym_QMARK_QMARK] = ACTIONS(3947), + [anon_sym_from] = ACTIONS(3857), + [anon_sym_into] = ACTIONS(3857), + [anon_sym_join] = ACTIONS(3857), + [anon_sym_on] = ACTIONS(3857), + [anon_sym_equals] = ACTIONS(3949), + [anon_sym_let] = ACTIONS(3857), + [anon_sym_orderby] = ACTIONS(3857), + [anon_sym_ascending] = ACTIONS(3857), + [anon_sym_descending] = ACTIONS(3857), + [anon_sym_group] = ACTIONS(3857), + [anon_sym_by] = ACTIONS(3857), + [anon_sym_select] = ACTIONS(3857), + [anon_sym_as] = ACTIONS(3949), + [anon_sym_is] = ACTIONS(3949), + [anon_sym_DASH_GT] = ACTIONS(3947), + [anon_sym_with] = ACTIONS(3949), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -448513,69 +448127,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(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), + [sym__identifier_token] = ACTIONS(4491), + [anon_sym_extern] = ACTIONS(4491), + [anon_sym_alias] = ACTIONS(4491), + [anon_sym_global] = ACTIONS(4491), + [anon_sym_using] = ACTIONS(4491), + [anon_sym_unsafe] = ACTIONS(4491), + [anon_sym_static] = ACTIONS(4491), + [anon_sym_LBRACK] = ACTIONS(4493), + [anon_sym_LPAREN] = ACTIONS(4493), + [anon_sym_event] = ACTIONS(4491), + [anon_sym_namespace] = ACTIONS(4491), + [anon_sym_class] = ACTIONS(4491), + [anon_sym_ref] = ACTIONS(4491), + [anon_sym_struct] = ACTIONS(4491), + [anon_sym_enum] = ACTIONS(4491), + [anon_sym_RBRACE] = ACTIONS(4493), + [anon_sym_interface] = ACTIONS(4491), + [anon_sym_delegate] = ACTIONS(4491), + [anon_sym_record] = ACTIONS(4491), + [anon_sym_abstract] = ACTIONS(4491), + [anon_sym_async] = ACTIONS(4491), + [anon_sym_const] = ACTIONS(4491), + [anon_sym_file] = ACTIONS(4491), + [anon_sym_fixed] = ACTIONS(4491), + [anon_sym_internal] = ACTIONS(4491), + [anon_sym_new] = ACTIONS(4491), + [anon_sym_override] = ACTIONS(4491), + [anon_sym_partial] = ACTIONS(4491), + [anon_sym_private] = ACTIONS(4491), + [anon_sym_protected] = ACTIONS(4491), + [anon_sym_public] = ACTIONS(4491), + [anon_sym_readonly] = ACTIONS(4491), + [anon_sym_required] = ACTIONS(4491), + [anon_sym_sealed] = ACTIONS(4491), + [anon_sym_virtual] = ACTIONS(4491), + [anon_sym_volatile] = ACTIONS(4491), + [anon_sym_where] = ACTIONS(4491), + [anon_sym_notnull] = ACTIONS(4491), + [anon_sym_unmanaged] = ACTIONS(4491), + [anon_sym_TILDE] = ACTIONS(4493), + [anon_sym_implicit] = ACTIONS(4491), + [anon_sym_explicit] = ACTIONS(4491), + [anon_sym_scoped] = ACTIONS(4491), + [anon_sym_var] = ACTIONS(4491), + [sym_predefined_type] = ACTIONS(4491), + [anon_sym_yield] = ACTIONS(4491), + [anon_sym_when] = ACTIONS(4491), + [anon_sym_from] = ACTIONS(4491), + [anon_sym_into] = ACTIONS(4491), + [anon_sym_join] = ACTIONS(4491), + [anon_sym_on] = ACTIONS(4491), + [anon_sym_equals] = ACTIONS(4491), + [anon_sym_let] = ACTIONS(4491), + [anon_sym_orderby] = ACTIONS(4491), + [anon_sym_ascending] = ACTIONS(4491), + [anon_sym_descending] = ACTIONS(4491), + [anon_sym_group] = ACTIONS(4491), + [anon_sym_by] = ACTIONS(4491), + [anon_sym_select] = ACTIONS(4491), + [aux_sym_preproc_if_token1] = ACTIONS(4493), + [aux_sym_preproc_if_token3] = ACTIONS(4493), + [aux_sym_preproc_else_token1] = ACTIONS(4493), + [aux_sym_preproc_elif_token1] = ACTIONS(4493), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -448588,10 +448202,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2735] = { - [sym__variable_designation] = STATE(4152), - [sym_parenthesized_variable_designation] = STATE(4173), - [sym_identifier] = STATE(4177), - [sym__reserved_identifier] = STATE(2904), [sym_preproc_region] = STATE(2735), [sym_preproc_endregion] = STATE(2735), [sym_preproc_line] = STATE(2735), @@ -448601,65 +448211,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(3861), - [anon_sym_alias] = ACTIONS(3863), - [anon_sym_global] = ACTIONS(3863), - [anon_sym_LBRACK] = ACTIONS(3957), - [anon_sym_LPAREN] = ACTIONS(3957), - [anon_sym_file] = ACTIONS(3863), - [anon_sym_LT] = ACTIONS(3959), - [anon_sym_GT] = ACTIONS(3959), - [anon_sym_where] = ACTIONS(3959), - [anon_sym_QMARK] = ACTIONS(3959), - [anon_sym_notnull] = ACTIONS(3863), - [anon_sym_unmanaged] = ACTIONS(3863), - [anon_sym_BANG] = ACTIONS(3959), - [anon_sym_PLUS_PLUS] = ACTIONS(3957), - [anon_sym_DASH_DASH] = ACTIONS(3957), - [anon_sym_PLUS] = ACTIONS(3959), - [anon_sym_DASH] = ACTIONS(3959), - [anon_sym_STAR] = ACTIONS(3957), - [anon_sym_SLASH] = ACTIONS(3959), - [anon_sym_PERCENT] = ACTIONS(3957), - [anon_sym_CARET] = ACTIONS(3957), - [anon_sym_PIPE] = ACTIONS(3959), - [anon_sym_AMP] = ACTIONS(3959), - [anon_sym_LT_LT] = ACTIONS(3957), - [anon_sym_GT_GT] = ACTIONS(3959), - [anon_sym_GT_GT_GT] = ACTIONS(3957), - [anon_sym_EQ_EQ] = ACTIONS(3957), - [anon_sym_BANG_EQ] = ACTIONS(3957), - [anon_sym_GT_EQ] = ACTIONS(3957), - [anon_sym_LT_EQ] = ACTIONS(3957), - [anon_sym_DOT] = ACTIONS(3959), - [anon_sym_scoped] = ACTIONS(3863), - [anon_sym_var] = ACTIONS(3863), - [anon_sym_yield] = ACTIONS(3863), - [anon_sym_switch] = ACTIONS(3959), - [anon_sym_when] = ACTIONS(3863), - [sym_discard] = ACTIONS(4209), - [anon_sym_DOT_DOT] = ACTIONS(3957), - [anon_sym_and] = ACTIONS(3959), - [anon_sym_or] = ACTIONS(3959), - [anon_sym_AMP_AMP] = ACTIONS(3957), - [anon_sym_PIPE_PIPE] = ACTIONS(3957), - [anon_sym_QMARK_QMARK] = ACTIONS(3957), - [anon_sym_from] = ACTIONS(3959), - [anon_sym_into] = ACTIONS(3959), - [anon_sym_join] = ACTIONS(3959), - [anon_sym_on] = ACTIONS(3863), - [anon_sym_equals] = ACTIONS(3863), - [anon_sym_let] = ACTIONS(3959), - [anon_sym_orderby] = ACTIONS(3959), - [anon_sym_ascending] = ACTIONS(3863), - [anon_sym_descending] = ACTIONS(3863), - [anon_sym_group] = ACTIONS(3959), - [anon_sym_by] = ACTIONS(3863), - [anon_sym_select] = ACTIONS(3959), - [anon_sym_as] = ACTIONS(3959), - [anon_sym_is] = ACTIONS(3959), - [anon_sym_DASH_GT] = ACTIONS(3957), - [anon_sym_with] = ACTIONS(3959), + [sym__identifier_token] = ACTIONS(4495), + [anon_sym_extern] = ACTIONS(4495), + [anon_sym_alias] = ACTIONS(4495), + [anon_sym_global] = ACTIONS(4495), + [anon_sym_using] = ACTIONS(4495), + [anon_sym_unsafe] = ACTIONS(4495), + [anon_sym_static] = ACTIONS(4495), + [anon_sym_LBRACK] = ACTIONS(4497), + [anon_sym_LPAREN] = ACTIONS(4497), + [anon_sym_event] = ACTIONS(4495), + [anon_sym_namespace] = ACTIONS(4495), + [anon_sym_class] = ACTIONS(4495), + [anon_sym_ref] = ACTIONS(4495), + [anon_sym_struct] = ACTIONS(4495), + [anon_sym_enum] = ACTIONS(4495), + [anon_sym_RBRACE] = ACTIONS(4497), + [anon_sym_interface] = ACTIONS(4495), + [anon_sym_delegate] = ACTIONS(4495), + [anon_sym_record] = ACTIONS(4495), + [anon_sym_abstract] = ACTIONS(4495), + [anon_sym_async] = ACTIONS(4495), + [anon_sym_const] = ACTIONS(4495), + [anon_sym_file] = ACTIONS(4495), + [anon_sym_fixed] = ACTIONS(4495), + [anon_sym_internal] = ACTIONS(4495), + [anon_sym_new] = ACTIONS(4495), + [anon_sym_override] = ACTIONS(4495), + [anon_sym_partial] = ACTIONS(4495), + [anon_sym_private] = ACTIONS(4495), + [anon_sym_protected] = ACTIONS(4495), + [anon_sym_public] = ACTIONS(4495), + [anon_sym_readonly] = ACTIONS(4495), + [anon_sym_required] = ACTIONS(4495), + [anon_sym_sealed] = ACTIONS(4495), + [anon_sym_virtual] = ACTIONS(4495), + [anon_sym_volatile] = ACTIONS(4495), + [anon_sym_where] = ACTIONS(4495), + [anon_sym_notnull] = ACTIONS(4495), + [anon_sym_unmanaged] = ACTIONS(4495), + [anon_sym_TILDE] = ACTIONS(4497), + [anon_sym_implicit] = ACTIONS(4495), + [anon_sym_explicit] = ACTIONS(4495), + [anon_sym_scoped] = ACTIONS(4495), + [anon_sym_var] = ACTIONS(4495), + [sym_predefined_type] = ACTIONS(4495), + [anon_sym_yield] = ACTIONS(4495), + [anon_sym_when] = ACTIONS(4495), + [anon_sym_from] = ACTIONS(4495), + [anon_sym_into] = ACTIONS(4495), + [anon_sym_join] = ACTIONS(4495), + [anon_sym_on] = ACTIONS(4495), + [anon_sym_equals] = ACTIONS(4495), + [anon_sym_let] = ACTIONS(4495), + [anon_sym_orderby] = ACTIONS(4495), + [anon_sym_ascending] = ACTIONS(4495), + [anon_sym_descending] = ACTIONS(4495), + [anon_sym_group] = ACTIONS(4495), + [anon_sym_by] = ACTIONS(4495), + [anon_sym_select] = ACTIONS(4495), + [aux_sym_preproc_if_token1] = ACTIONS(4497), + [aux_sym_preproc_if_token3] = ACTIONS(4497), + [aux_sym_preproc_else_token1] = ACTIONS(4497), + [aux_sym_preproc_elif_token1] = ACTIONS(4497), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -448672,10 +448286,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2736] = { - [sym__variable_designation] = STATE(4126), - [sym_parenthesized_variable_designation] = STATE(4173), - [sym_identifier] = STATE(4177), - [sym__reserved_identifier] = STATE(2904), [sym_preproc_region] = STATE(2736), [sym_preproc_endregion] = STATE(2736), [sym_preproc_line] = STATE(2736), @@ -448685,75 +448295,79 @@ 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(3861), - [anon_sym_alias] = ACTIONS(3863), - [anon_sym_global] = ACTIONS(3863), - [anon_sym_LBRACK] = ACTIONS(3961), - [anon_sym_LPAREN] = ACTIONS(3961), - [anon_sym_file] = ACTIONS(3863), - [anon_sym_LT] = ACTIONS(3963), - [anon_sym_GT] = ACTIONS(3963), - [anon_sym_where] = ACTIONS(3963), - [anon_sym_QMARK] = ACTIONS(3963), - [anon_sym_notnull] = ACTIONS(3863), - [anon_sym_unmanaged] = ACTIONS(3863), - [anon_sym_BANG] = ACTIONS(3963), - [anon_sym_PLUS_PLUS] = ACTIONS(3961), - [anon_sym_DASH_DASH] = ACTIONS(3961), - [anon_sym_PLUS] = ACTIONS(3963), - [anon_sym_DASH] = ACTIONS(3963), - [anon_sym_STAR] = ACTIONS(3961), - [anon_sym_SLASH] = ACTIONS(3963), - [anon_sym_PERCENT] = ACTIONS(3961), - [anon_sym_CARET] = ACTIONS(3961), - [anon_sym_PIPE] = ACTIONS(3963), - [anon_sym_AMP] = ACTIONS(3963), - [anon_sym_LT_LT] = ACTIONS(3961), - [anon_sym_GT_GT] = ACTIONS(3963), - [anon_sym_GT_GT_GT] = ACTIONS(3961), - [anon_sym_EQ_EQ] = ACTIONS(3961), - [anon_sym_BANG_EQ] = ACTIONS(3961), - [anon_sym_GT_EQ] = ACTIONS(3961), - [anon_sym_LT_EQ] = ACTIONS(3961), - [anon_sym_DOT] = ACTIONS(3963), - [anon_sym_scoped] = ACTIONS(3863), - [anon_sym_var] = ACTIONS(3863), - [anon_sym_yield] = ACTIONS(3863), - [anon_sym_switch] = ACTIONS(3963), - [anon_sym_when] = ACTIONS(3863), - [sym_discard] = ACTIONS(4209), - [anon_sym_DOT_DOT] = ACTIONS(3961), - [anon_sym_and] = ACTIONS(3963), - [anon_sym_or] = ACTIONS(3963), - [anon_sym_AMP_AMP] = ACTIONS(3961), - [anon_sym_PIPE_PIPE] = ACTIONS(3961), - [anon_sym_QMARK_QMARK] = ACTIONS(3961), - [anon_sym_from] = ACTIONS(3963), - [anon_sym_into] = ACTIONS(3963), - [anon_sym_join] = ACTIONS(3963), - [anon_sym_on] = ACTIONS(3863), - [anon_sym_equals] = ACTIONS(3863), - [anon_sym_let] = ACTIONS(3963), - [anon_sym_orderby] = ACTIONS(3963), - [anon_sym_ascending] = ACTIONS(3863), - [anon_sym_descending] = ACTIONS(3863), - [anon_sym_group] = ACTIONS(3963), - [anon_sym_by] = ACTIONS(3863), - [anon_sym_select] = ACTIONS(3963), - [anon_sym_as] = ACTIONS(3963), - [anon_sym_is] = ACTIONS(3963), - [anon_sym_DASH_GT] = ACTIONS(3961), - [anon_sym_with] = ACTIONS(3963), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_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(4058), + [anon_sym_alias] = ACTIONS(4058), + [anon_sym_global] = ACTIONS(4058), + [anon_sym_LBRACK] = ACTIONS(4060), + [anon_sym_COLON] = ACTIONS(4060), + [anon_sym_COMMA] = ACTIONS(4060), + [anon_sym_LPAREN] = ACTIONS(4060), + [anon_sym_LBRACE] = ACTIONS(4060), + [anon_sym_file] = ACTIONS(4058), + [anon_sym_LT] = ACTIONS(4058), + [anon_sym_GT] = ACTIONS(4058), + [anon_sym_where] = ACTIONS(4058), + [anon_sym_QMARK] = ACTIONS(4058), + [anon_sym_notnull] = ACTIONS(4058), + [anon_sym_unmanaged] = ACTIONS(4058), + [anon_sym_BANG] = ACTIONS(4058), + [anon_sym_PLUS_PLUS] = ACTIONS(4060), + [anon_sym_DASH_DASH] = ACTIONS(4060), + [anon_sym_PLUS] = ACTIONS(4058), + [anon_sym_DASH] = ACTIONS(4058), + [anon_sym_STAR] = ACTIONS(4060), + [anon_sym_SLASH] = ACTIONS(4058), + [anon_sym_PERCENT] = ACTIONS(4060), + [anon_sym_CARET] = ACTIONS(4060), + [anon_sym_PIPE] = ACTIONS(4058), + [anon_sym_AMP] = ACTIONS(4058), + [anon_sym_LT_LT] = ACTIONS(4060), + [anon_sym_GT_GT] = ACTIONS(4058), + [anon_sym_GT_GT_GT] = ACTIONS(4060), + [anon_sym_EQ_EQ] = ACTIONS(4060), + [anon_sym_BANG_EQ] = ACTIONS(4060), + [anon_sym_GT_EQ] = ACTIONS(4060), + [anon_sym_LT_EQ] = ACTIONS(4060), + [anon_sym_DOT] = ACTIONS(4058), + [anon_sym_scoped] = ACTIONS(4058), + [anon_sym_var] = ACTIONS(4058), + [anon_sym_yield] = ACTIONS(4058), + [anon_sym_switch] = ACTIONS(4058), + [anon_sym_when] = ACTIONS(4058), + [sym_discard] = ACTIONS(4058), + [anon_sym_DOT_DOT] = ACTIONS(4060), + [anon_sym_and] = ACTIONS(4058), + [anon_sym_or] = ACTIONS(4058), + [anon_sym_AMP_AMP] = ACTIONS(4060), + [anon_sym_PIPE_PIPE] = ACTIONS(4060), + [anon_sym_QMARK_QMARK] = ACTIONS(4060), + [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_ascending] = ACTIONS(4058), + [anon_sym_descending] = 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(4060), + [anon_sym_with] = 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), + [sym_interpolation_close_brace] = ACTIONS(4060), }, [2737] = { [sym_preproc_region] = STATE(2737), @@ -448765,79 +448379,79 @@ 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(3979), - [anon_sym_alias] = ACTIONS(3979), - [anon_sym_global] = ACTIONS(3979), - [anon_sym_LBRACK] = ACTIONS(3981), - [anon_sym_COLON] = ACTIONS(3981), - [anon_sym_COMMA] = ACTIONS(3981), - [anon_sym_LPAREN] = ACTIONS(3981), - [anon_sym_LBRACE] = ACTIONS(3981), - [anon_sym_file] = ACTIONS(3979), - [anon_sym_LT] = ACTIONS(3979), - [anon_sym_GT] = ACTIONS(3979), - [anon_sym_where] = ACTIONS(3979), - [anon_sym_QMARK] = ACTIONS(3979), - [anon_sym_notnull] = ACTIONS(3979), - [anon_sym_unmanaged] = ACTIONS(3979), - [anon_sym_BANG] = ACTIONS(3979), - [anon_sym_PLUS_PLUS] = ACTIONS(3981), - [anon_sym_DASH_DASH] = ACTIONS(3981), - [anon_sym_PLUS] = ACTIONS(3979), - [anon_sym_DASH] = ACTIONS(3979), - [anon_sym_STAR] = ACTIONS(3981), - [anon_sym_SLASH] = ACTIONS(3979), - [anon_sym_PERCENT] = ACTIONS(3981), - [anon_sym_CARET] = ACTIONS(3981), - [anon_sym_PIPE] = ACTIONS(3979), - [anon_sym_AMP] = ACTIONS(3979), - [anon_sym_LT_LT] = ACTIONS(3981), - [anon_sym_GT_GT] = ACTIONS(3979), - [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(3979), - [anon_sym_scoped] = ACTIONS(3979), - [anon_sym_var] = ACTIONS(3979), - [anon_sym_yield] = ACTIONS(3979), - [anon_sym_switch] = ACTIONS(3979), - [anon_sym_when] = ACTIONS(3979), - [sym_discard] = ACTIONS(3979), - [anon_sym_DOT_DOT] = ACTIONS(3981), - [anon_sym_and] = ACTIONS(3979), - [anon_sym_or] = ACTIONS(3979), - [anon_sym_AMP_AMP] = ACTIONS(3981), - [anon_sym_PIPE_PIPE] = ACTIONS(3981), - [anon_sym_QMARK_QMARK] = ACTIONS(3981), - [anon_sym_from] = ACTIONS(3979), - [anon_sym_into] = ACTIONS(3979), - [anon_sym_join] = ACTIONS(3979), - [anon_sym_on] = ACTIONS(3979), - [anon_sym_equals] = ACTIONS(3979), - [anon_sym_let] = ACTIONS(3979), - [anon_sym_orderby] = ACTIONS(3979), - [anon_sym_ascending] = ACTIONS(3979), - [anon_sym_descending] = ACTIONS(3979), - [anon_sym_group] = ACTIONS(3979), - [anon_sym_by] = ACTIONS(3979), - [anon_sym_select] = ACTIONS(3979), - [anon_sym_as] = ACTIONS(3979), - [anon_sym_is] = ACTIONS(3979), - [anon_sym_DASH_GT] = ACTIONS(3981), - [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), - [sym_interpolation_close_brace] = ACTIONS(3981), + [sym__identifier_token] = ACTIONS(3955), + [anon_sym_alias] = ACTIONS(3955), + [anon_sym_global] = ACTIONS(3955), + [anon_sym_LBRACK] = ACTIONS(3957), + [anon_sym_COLON] = ACTIONS(3957), + [anon_sym_COMMA] = ACTIONS(3957), + [anon_sym_LPAREN] = ACTIONS(3957), + [anon_sym_LBRACE] = ACTIONS(3957), + [anon_sym_file] = ACTIONS(3955), + [anon_sym_LT] = ACTIONS(3955), + [anon_sym_GT] = ACTIONS(3955), + [anon_sym_where] = ACTIONS(3955), + [anon_sym_QMARK] = ACTIONS(3955), + [anon_sym_notnull] = ACTIONS(3955), + [anon_sym_unmanaged] = ACTIONS(3955), + [anon_sym_BANG] = ACTIONS(3955), + [anon_sym_PLUS_PLUS] = ACTIONS(3957), + [anon_sym_DASH_DASH] = ACTIONS(3957), + [anon_sym_PLUS] = ACTIONS(3955), + [anon_sym_DASH] = ACTIONS(3955), + [anon_sym_STAR] = ACTIONS(3957), + [anon_sym_SLASH] = ACTIONS(3955), + [anon_sym_PERCENT] = ACTIONS(3957), + [anon_sym_CARET] = ACTIONS(3957), + [anon_sym_PIPE] = ACTIONS(3955), + [anon_sym_AMP] = ACTIONS(3955), + [anon_sym_LT_LT] = ACTIONS(3957), + [anon_sym_GT_GT] = ACTIONS(3955), + [anon_sym_GT_GT_GT] = ACTIONS(3957), + [anon_sym_EQ_EQ] = ACTIONS(3957), + [anon_sym_BANG_EQ] = ACTIONS(3957), + [anon_sym_GT_EQ] = ACTIONS(3957), + [anon_sym_LT_EQ] = ACTIONS(3957), + [anon_sym_DOT] = ACTIONS(3955), + [anon_sym_scoped] = ACTIONS(3955), + [anon_sym_var] = ACTIONS(3955), + [anon_sym_yield] = ACTIONS(3955), + [anon_sym_switch] = ACTIONS(3955), + [anon_sym_when] = ACTIONS(3955), + [sym_discard] = ACTIONS(3955), + [anon_sym_DOT_DOT] = ACTIONS(3957), + [anon_sym_and] = ACTIONS(3955), + [anon_sym_or] = ACTIONS(3955), + [anon_sym_AMP_AMP] = ACTIONS(3957), + [anon_sym_PIPE_PIPE] = ACTIONS(3957), + [anon_sym_QMARK_QMARK] = ACTIONS(3957), + [anon_sym_from] = ACTIONS(3955), + [anon_sym_into] = ACTIONS(3955), + [anon_sym_join] = ACTIONS(3955), + [anon_sym_on] = ACTIONS(3955), + [anon_sym_equals] = ACTIONS(3955), + [anon_sym_let] = ACTIONS(3955), + [anon_sym_orderby] = ACTIONS(3955), + [anon_sym_ascending] = ACTIONS(3955), + [anon_sym_descending] = ACTIONS(3955), + [anon_sym_group] = ACTIONS(3955), + [anon_sym_by] = ACTIONS(3955), + [anon_sym_select] = ACTIONS(3955), + [anon_sym_as] = ACTIONS(3955), + [anon_sym_is] = ACTIONS(3955), + [anon_sym_DASH_GT] = ACTIONS(3957), + [anon_sym_with] = ACTIONS(3955), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_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(3957), }, [2738] = { [sym_preproc_region] = STATE(2738), @@ -448849,69 +448463,69 @@ 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(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), + [sym__identifier_token] = ACTIONS(4499), + [anon_sym_extern] = ACTIONS(4499), + [anon_sym_alias] = ACTIONS(4499), + [anon_sym_global] = ACTIONS(4499), + [anon_sym_using] = ACTIONS(4499), + [anon_sym_unsafe] = ACTIONS(4499), + [anon_sym_static] = ACTIONS(4499), + [anon_sym_LBRACK] = ACTIONS(4501), + [anon_sym_LPAREN] = ACTIONS(4501), + [anon_sym_event] = ACTIONS(4499), + [anon_sym_namespace] = ACTIONS(4499), + [anon_sym_class] = ACTIONS(4499), + [anon_sym_ref] = ACTIONS(4499), + [anon_sym_struct] = ACTIONS(4499), + [anon_sym_enum] = ACTIONS(4499), + [anon_sym_RBRACE] = ACTIONS(4501), + [anon_sym_interface] = ACTIONS(4499), + [anon_sym_delegate] = ACTIONS(4499), + [anon_sym_record] = ACTIONS(4499), + [anon_sym_abstract] = ACTIONS(4499), + [anon_sym_async] = ACTIONS(4499), + [anon_sym_const] = ACTIONS(4499), + [anon_sym_file] = ACTIONS(4499), + [anon_sym_fixed] = ACTIONS(4499), + [anon_sym_internal] = ACTIONS(4499), + [anon_sym_new] = ACTIONS(4499), + [anon_sym_override] = ACTIONS(4499), + [anon_sym_partial] = ACTIONS(4499), + [anon_sym_private] = ACTIONS(4499), + [anon_sym_protected] = ACTIONS(4499), + [anon_sym_public] = ACTIONS(4499), + [anon_sym_readonly] = ACTIONS(4499), + [anon_sym_required] = ACTIONS(4499), + [anon_sym_sealed] = ACTIONS(4499), + [anon_sym_virtual] = ACTIONS(4499), + [anon_sym_volatile] = ACTIONS(4499), + [anon_sym_where] = ACTIONS(4499), + [anon_sym_notnull] = ACTIONS(4499), + [anon_sym_unmanaged] = ACTIONS(4499), + [anon_sym_TILDE] = ACTIONS(4501), + [anon_sym_implicit] = ACTIONS(4499), + [anon_sym_explicit] = ACTIONS(4499), + [anon_sym_scoped] = ACTIONS(4499), + [anon_sym_var] = ACTIONS(4499), + [sym_predefined_type] = ACTIONS(4499), + [anon_sym_yield] = ACTIONS(4499), + [anon_sym_when] = ACTIONS(4499), + [anon_sym_from] = ACTIONS(4499), + [anon_sym_into] = ACTIONS(4499), + [anon_sym_join] = ACTIONS(4499), + [anon_sym_on] = ACTIONS(4499), + [anon_sym_equals] = ACTIONS(4499), + [anon_sym_let] = ACTIONS(4499), + [anon_sym_orderby] = ACTIONS(4499), + [anon_sym_ascending] = ACTIONS(4499), + [anon_sym_descending] = ACTIONS(4499), + [anon_sym_group] = ACTIONS(4499), + [anon_sym_by] = ACTIONS(4499), + [anon_sym_select] = ACTIONS(4499), + [aux_sym_preproc_if_token1] = ACTIONS(4501), + [aux_sym_preproc_if_token3] = ACTIONS(4501), + [aux_sym_preproc_else_token1] = ACTIONS(4501), + [aux_sym_preproc_elif_token1] = ACTIONS(4501), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -448924,10 +448538,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2739] = { - [sym__variable_designation] = STATE(3507), - [sym_parenthesized_variable_designation] = STATE(3463), - [sym_identifier] = STATE(3479), - [sym__reserved_identifier] = STATE(3177), + [sym__variable_designation] = STATE(3449), + [sym_parenthesized_variable_designation] = STATE(3352), + [sym_identifier] = STATE(3355), + [sym__reserved_identifier] = STATE(3199), [sym_preproc_region] = STATE(2739), [sym_preproc_endregion] = STATE(2739), [sym_preproc_line] = STATE(2739), @@ -448937,65 +448551,65 @@ 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(3875), - [anon_sym_alias] = ACTIONS(3877), - [anon_sym_global] = ACTIONS(3877), - [anon_sym_LBRACK] = ACTIONS(3905), - [anon_sym_LPAREN] = ACTIONS(3905), - [anon_sym_file] = ACTIONS(3877), - [anon_sym_LT] = ACTIONS(3907), - [anon_sym_GT] = ACTIONS(3907), - [anon_sym_where] = ACTIONS(3877), - [anon_sym_QMARK] = ACTIONS(3907), - [anon_sym_notnull] = ACTIONS(3877), - [anon_sym_unmanaged] = ACTIONS(3877), - [anon_sym_BANG] = ACTIONS(3907), - [anon_sym_PLUS_PLUS] = ACTIONS(3905), - [anon_sym_DASH_DASH] = ACTIONS(3905), - [anon_sym_PLUS] = ACTIONS(3907), - [anon_sym_DASH] = ACTIONS(3907), - [anon_sym_STAR] = ACTIONS(3905), - [anon_sym_SLASH] = ACTIONS(3907), - [anon_sym_PERCENT] = ACTIONS(3905), - [anon_sym_CARET] = ACTIONS(3905), - [anon_sym_PIPE] = ACTIONS(3907), - [anon_sym_AMP] = ACTIONS(3907), - [anon_sym_LT_LT] = ACTIONS(3905), - [anon_sym_GT_GT] = ACTIONS(3907), - [anon_sym_GT_GT_GT] = ACTIONS(3905), - [anon_sym_EQ_EQ] = ACTIONS(3905), - [anon_sym_BANG_EQ] = ACTIONS(3905), - [anon_sym_GT_EQ] = ACTIONS(3905), - [anon_sym_LT_EQ] = ACTIONS(3905), - [anon_sym_DOT] = ACTIONS(3907), - [anon_sym_scoped] = ACTIONS(3877), - [anon_sym_var] = ACTIONS(3877), - [anon_sym_yield] = ACTIONS(3877), - [anon_sym_switch] = ACTIONS(3907), - [anon_sym_when] = ACTIONS(3877), - [sym_discard] = ACTIONS(3897), - [anon_sym_DOT_DOT] = ACTIONS(3905), - [anon_sym_and] = ACTIONS(3907), - [anon_sym_or] = ACTIONS(3907), - [anon_sym_AMP_AMP] = ACTIONS(3905), - [anon_sym_PIPE_PIPE] = ACTIONS(3905), - [anon_sym_QMARK_QMARK] = ACTIONS(3905), - [anon_sym_from] = ACTIONS(3877), - [anon_sym_into] = ACTIONS(3877), - [anon_sym_join] = ACTIONS(3877), - [anon_sym_on] = ACTIONS(3877), - [anon_sym_equals] = ACTIONS(3907), - [anon_sym_let] = ACTIONS(3877), - [anon_sym_orderby] = ACTIONS(3877), - [anon_sym_ascending] = ACTIONS(3877), - [anon_sym_descending] = ACTIONS(3877), - [anon_sym_group] = ACTIONS(3877), - [anon_sym_by] = ACTIONS(3877), - [anon_sym_select] = ACTIONS(3877), - [anon_sym_as] = ACTIONS(3907), - [anon_sym_is] = ACTIONS(3907), - [anon_sym_DASH_GT] = ACTIONS(3905), - [anon_sym_with] = ACTIONS(3907), + [sym__identifier_token] = ACTIONS(3855), + [anon_sym_alias] = ACTIONS(3857), + [anon_sym_global] = ACTIONS(3857), + [anon_sym_LBRACK] = ACTIONS(3893), + [anon_sym_LPAREN] = ACTIONS(3893), + [anon_sym_file] = ACTIONS(3857), + [anon_sym_LT] = ACTIONS(3895), + [anon_sym_GT] = ACTIONS(3895), + [anon_sym_where] = ACTIONS(3857), + [anon_sym_QMARK] = ACTIONS(3895), + [anon_sym_notnull] = ACTIONS(3857), + [anon_sym_unmanaged] = ACTIONS(3857), + [anon_sym_BANG] = ACTIONS(3895), + [anon_sym_PLUS_PLUS] = ACTIONS(3893), + [anon_sym_DASH_DASH] = ACTIONS(3893), + [anon_sym_PLUS] = ACTIONS(3895), + [anon_sym_DASH] = ACTIONS(3895), + [anon_sym_STAR] = ACTIONS(3893), + [anon_sym_SLASH] = ACTIONS(3895), + [anon_sym_PERCENT] = ACTIONS(3893), + [anon_sym_CARET] = ACTIONS(3893), + [anon_sym_PIPE] = ACTIONS(3895), + [anon_sym_AMP] = ACTIONS(3895), + [anon_sym_LT_LT] = ACTIONS(3893), + [anon_sym_GT_GT] = ACTIONS(3895), + [anon_sym_GT_GT_GT] = ACTIONS(3893), + [anon_sym_EQ_EQ] = ACTIONS(3893), + [anon_sym_BANG_EQ] = ACTIONS(3893), + [anon_sym_GT_EQ] = ACTIONS(3893), + [anon_sym_LT_EQ] = ACTIONS(3893), + [anon_sym_DOT] = ACTIONS(3895), + [anon_sym_scoped] = ACTIONS(3857), + [anon_sym_var] = ACTIONS(3857), + [anon_sym_yield] = ACTIONS(3857), + [anon_sym_switch] = ACTIONS(3895), + [anon_sym_when] = ACTIONS(3857), + [sym_discard] = ACTIONS(3877), + [anon_sym_DOT_DOT] = ACTIONS(3893), + [anon_sym_and] = ACTIONS(3895), + [anon_sym_or] = ACTIONS(3895), + [anon_sym_AMP_AMP] = ACTIONS(3893), + [anon_sym_PIPE_PIPE] = ACTIONS(3893), + [anon_sym_QMARK_QMARK] = ACTIONS(3893), + [anon_sym_from] = ACTIONS(3857), + [anon_sym_into] = ACTIONS(3857), + [anon_sym_join] = ACTIONS(3857), + [anon_sym_on] = ACTIONS(3895), + [anon_sym_equals] = ACTIONS(3857), + [anon_sym_let] = ACTIONS(3857), + [anon_sym_orderby] = ACTIONS(3857), + [anon_sym_ascending] = ACTIONS(3857), + [anon_sym_descending] = ACTIONS(3857), + [anon_sym_group] = ACTIONS(3857), + [anon_sym_by] = ACTIONS(3857), + [anon_sym_select] = ACTIONS(3857), + [anon_sym_as] = ACTIONS(3895), + [anon_sym_is] = ACTIONS(3895), + [anon_sym_DASH_GT] = ACTIONS(3893), + [anon_sym_with] = ACTIONS(3895), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -449008,10 +448622,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2740] = { - [sym__variable_designation] = STATE(3365), - [sym_parenthesized_variable_designation] = STATE(3463), - [sym_identifier] = STATE(3479), - [sym__reserved_identifier] = STATE(3177), + [sym__variable_designation] = STATE(3413), + [sym_parenthesized_variable_designation] = STATE(3352), + [sym_identifier] = STATE(3355), + [sym__reserved_identifier] = STATE(3199), [sym_preproc_region] = STATE(2740), [sym_preproc_endregion] = STATE(2740), [sym_preproc_line] = STATE(2740), @@ -449021,65 +448635,65 @@ 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(3875), - [anon_sym_alias] = ACTIONS(3877), - [anon_sym_global] = ACTIONS(3877), - [anon_sym_LBRACK] = ACTIONS(3913), - [anon_sym_LPAREN] = ACTIONS(3913), - [anon_sym_file] = ACTIONS(3877), - [anon_sym_LT] = ACTIONS(3915), - [anon_sym_GT] = ACTIONS(3915), - [anon_sym_where] = ACTIONS(3877), - [anon_sym_QMARK] = ACTIONS(3915), - [anon_sym_notnull] = ACTIONS(3877), - [anon_sym_unmanaged] = ACTIONS(3877), - [anon_sym_BANG] = ACTIONS(3915), - [anon_sym_PLUS_PLUS] = ACTIONS(3913), - [anon_sym_DASH_DASH] = ACTIONS(3913), - [anon_sym_PLUS] = ACTIONS(3915), - [anon_sym_DASH] = ACTIONS(3915), - [anon_sym_STAR] = ACTIONS(3913), - [anon_sym_SLASH] = ACTIONS(3915), - [anon_sym_PERCENT] = ACTIONS(3913), - [anon_sym_CARET] = ACTIONS(3913), - [anon_sym_PIPE] = ACTIONS(3915), - [anon_sym_AMP] = ACTIONS(3915), - [anon_sym_LT_LT] = ACTIONS(3913), - [anon_sym_GT_GT] = ACTIONS(3915), - [anon_sym_GT_GT_GT] = ACTIONS(3913), - [anon_sym_EQ_EQ] = ACTIONS(3913), - [anon_sym_BANG_EQ] = ACTIONS(3913), - [anon_sym_GT_EQ] = ACTIONS(3913), - [anon_sym_LT_EQ] = ACTIONS(3913), - [anon_sym_DOT] = ACTIONS(3915), - [anon_sym_scoped] = ACTIONS(3877), - [anon_sym_var] = ACTIONS(3877), - [anon_sym_yield] = ACTIONS(3877), - [anon_sym_switch] = ACTIONS(3915), - [anon_sym_when] = ACTIONS(3877), - [sym_discard] = ACTIONS(3897), - [anon_sym_DOT_DOT] = ACTIONS(3913), - [anon_sym_and] = ACTIONS(3915), - [anon_sym_or] = ACTIONS(3915), - [anon_sym_AMP_AMP] = ACTIONS(3913), - [anon_sym_PIPE_PIPE] = ACTIONS(3913), - [anon_sym_QMARK_QMARK] = ACTIONS(3913), - [anon_sym_from] = ACTIONS(3877), - [anon_sym_into] = ACTIONS(3877), - [anon_sym_join] = ACTIONS(3877), - [anon_sym_on] = ACTIONS(3877), - [anon_sym_equals] = ACTIONS(3915), - [anon_sym_let] = ACTIONS(3877), - [anon_sym_orderby] = ACTIONS(3877), - [anon_sym_ascending] = ACTIONS(3877), - [anon_sym_descending] = ACTIONS(3877), - [anon_sym_group] = ACTIONS(3877), - [anon_sym_by] = ACTIONS(3877), - [anon_sym_select] = ACTIONS(3877), - [anon_sym_as] = ACTIONS(3915), - [anon_sym_is] = ACTIONS(3915), - [anon_sym_DASH_GT] = ACTIONS(3913), - [anon_sym_with] = ACTIONS(3915), + [sym__identifier_token] = ACTIONS(3855), + [anon_sym_alias] = ACTIONS(3857), + [anon_sym_global] = ACTIONS(3857), + [anon_sym_LBRACK] = ACTIONS(3885), + [anon_sym_LPAREN] = ACTIONS(3885), + [anon_sym_file] = ACTIONS(3857), + [anon_sym_LT] = ACTIONS(3887), + [anon_sym_GT] = ACTIONS(3887), + [anon_sym_where] = ACTIONS(3857), + [anon_sym_QMARK] = ACTIONS(3887), + [anon_sym_notnull] = ACTIONS(3857), + [anon_sym_unmanaged] = ACTIONS(3857), + [anon_sym_BANG] = ACTIONS(3887), + [anon_sym_PLUS_PLUS] = ACTIONS(3885), + [anon_sym_DASH_DASH] = ACTIONS(3885), + [anon_sym_PLUS] = ACTIONS(3887), + [anon_sym_DASH] = ACTIONS(3887), + [anon_sym_STAR] = ACTIONS(3885), + [anon_sym_SLASH] = ACTIONS(3887), + [anon_sym_PERCENT] = ACTIONS(3885), + [anon_sym_CARET] = ACTIONS(3885), + [anon_sym_PIPE] = ACTIONS(3887), + [anon_sym_AMP] = ACTIONS(3887), + [anon_sym_LT_LT] = ACTIONS(3885), + [anon_sym_GT_GT] = ACTIONS(3887), + [anon_sym_GT_GT_GT] = ACTIONS(3885), + [anon_sym_EQ_EQ] = ACTIONS(3885), + [anon_sym_BANG_EQ] = ACTIONS(3885), + [anon_sym_GT_EQ] = ACTIONS(3885), + [anon_sym_LT_EQ] = ACTIONS(3885), + [anon_sym_DOT] = ACTIONS(3887), + [anon_sym_scoped] = ACTIONS(3857), + [anon_sym_var] = ACTIONS(3857), + [anon_sym_yield] = ACTIONS(3857), + [anon_sym_switch] = ACTIONS(3887), + [anon_sym_when] = ACTIONS(3857), + [sym_discard] = ACTIONS(3877), + [anon_sym_DOT_DOT] = ACTIONS(3885), + [anon_sym_and] = ACTIONS(3887), + [anon_sym_or] = ACTIONS(3887), + [anon_sym_AMP_AMP] = ACTIONS(3885), + [anon_sym_PIPE_PIPE] = ACTIONS(3885), + [anon_sym_QMARK_QMARK] = ACTIONS(3885), + [anon_sym_from] = ACTIONS(3857), + [anon_sym_into] = ACTIONS(3857), + [anon_sym_join] = ACTIONS(3857), + [anon_sym_on] = ACTIONS(3887), + [anon_sym_equals] = ACTIONS(3857), + [anon_sym_let] = ACTIONS(3857), + [anon_sym_orderby] = ACTIONS(3857), + [anon_sym_ascending] = ACTIONS(3857), + [anon_sym_descending] = ACTIONS(3857), + [anon_sym_group] = ACTIONS(3857), + [anon_sym_by] = ACTIONS(3857), + [anon_sym_select] = ACTIONS(3857), + [anon_sym_as] = ACTIONS(3887), + [anon_sym_is] = ACTIONS(3887), + [anon_sym_DASH_GT] = ACTIONS(3885), + [anon_sym_with] = ACTIONS(3887), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -449092,6 +448706,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2741] = { + [sym__variable_designation] = STATE(3411), + [sym_parenthesized_variable_designation] = STATE(3352), + [sym_identifier] = STATE(3355), + [sym__reserved_identifier] = STATE(3199), [sym_preproc_region] = STATE(2741), [sym_preproc_endregion] = STATE(2741), [sym_preproc_line] = STATE(2741), @@ -449101,69 +448719,65 @@ 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(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), + [sym__identifier_token] = ACTIONS(3855), + [anon_sym_alias] = ACTIONS(3857), + [anon_sym_global] = ACTIONS(3857), + [anon_sym_LBRACK] = ACTIONS(3939), + [anon_sym_LPAREN] = ACTIONS(3939), + [anon_sym_file] = ACTIONS(3857), + [anon_sym_LT] = ACTIONS(3941), + [anon_sym_GT] = ACTIONS(3941), + [anon_sym_where] = ACTIONS(3857), + [anon_sym_QMARK] = ACTIONS(3941), + [anon_sym_notnull] = ACTIONS(3857), + [anon_sym_unmanaged] = ACTIONS(3857), + [anon_sym_BANG] = ACTIONS(3941), + [anon_sym_PLUS_PLUS] = ACTIONS(3939), + [anon_sym_DASH_DASH] = ACTIONS(3939), + [anon_sym_PLUS] = ACTIONS(3941), + [anon_sym_DASH] = ACTIONS(3941), + [anon_sym_STAR] = ACTIONS(3939), + [anon_sym_SLASH] = ACTIONS(3941), + [anon_sym_PERCENT] = ACTIONS(3939), + [anon_sym_CARET] = ACTIONS(3939), + [anon_sym_PIPE] = ACTIONS(3941), + [anon_sym_AMP] = ACTIONS(3941), + [anon_sym_LT_LT] = ACTIONS(3939), + [anon_sym_GT_GT] = ACTIONS(3941), + [anon_sym_GT_GT_GT] = ACTIONS(3939), + [anon_sym_EQ_EQ] = ACTIONS(3939), + [anon_sym_BANG_EQ] = ACTIONS(3939), + [anon_sym_GT_EQ] = ACTIONS(3939), + [anon_sym_LT_EQ] = ACTIONS(3939), + [anon_sym_DOT] = ACTIONS(3941), + [anon_sym_scoped] = ACTIONS(3857), + [anon_sym_var] = ACTIONS(3857), + [anon_sym_yield] = ACTIONS(3857), + [anon_sym_switch] = ACTIONS(3941), + [anon_sym_when] = ACTIONS(3857), + [sym_discard] = ACTIONS(3877), + [anon_sym_DOT_DOT] = ACTIONS(3939), + [anon_sym_and] = ACTIONS(3941), + [anon_sym_or] = ACTIONS(3941), + [anon_sym_AMP_AMP] = ACTIONS(3939), + [anon_sym_PIPE_PIPE] = ACTIONS(3939), + [anon_sym_QMARK_QMARK] = ACTIONS(3939), + [anon_sym_from] = ACTIONS(3857), + [anon_sym_into] = ACTIONS(3857), + [anon_sym_join] = ACTIONS(3857), + [anon_sym_on] = ACTIONS(3941), + [anon_sym_equals] = ACTIONS(3857), + [anon_sym_let] = ACTIONS(3857), + [anon_sym_orderby] = ACTIONS(3857), + [anon_sym_ascending] = ACTIONS(3857), + [anon_sym_descending] = ACTIONS(3857), + [anon_sym_group] = ACTIONS(3857), + [anon_sym_by] = ACTIONS(3857), + [anon_sym_select] = ACTIONS(3857), + [anon_sym_as] = ACTIONS(3941), + [anon_sym_is] = ACTIONS(3941), + [anon_sym_DASH_GT] = ACTIONS(3939), + [anon_sym_with] = ACTIONS(3941), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -449176,10 +448790,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2742] = { - [sym__variable_designation] = STATE(3434), - [sym_parenthesized_variable_designation] = STATE(3463), - [sym_identifier] = STATE(3479), - [sym__reserved_identifier] = STATE(3177), + [sym__variable_designation] = STATE(3461), + [sym_parenthesized_variable_designation] = STATE(3352), + [sym_identifier] = STATE(3355), + [sym__reserved_identifier] = STATE(3199), [sym_preproc_region] = STATE(2742), [sym_preproc_endregion] = STATE(2742), [sym_preproc_line] = STATE(2742), @@ -449189,65 +448803,65 @@ 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(3875), - [anon_sym_alias] = ACTIONS(3877), - [anon_sym_global] = ACTIONS(3877), - [anon_sym_LBRACK] = ACTIONS(3957), - [anon_sym_LPAREN] = ACTIONS(3957), - [anon_sym_file] = ACTIONS(3877), - [anon_sym_LT] = ACTIONS(3959), - [anon_sym_GT] = ACTIONS(3959), - [anon_sym_where] = ACTIONS(3877), - [anon_sym_QMARK] = ACTIONS(3959), - [anon_sym_notnull] = ACTIONS(3877), - [anon_sym_unmanaged] = ACTIONS(3877), - [anon_sym_BANG] = ACTIONS(3959), - [anon_sym_PLUS_PLUS] = ACTIONS(3957), - [anon_sym_DASH_DASH] = ACTIONS(3957), - [anon_sym_PLUS] = ACTIONS(3959), - [anon_sym_DASH] = ACTIONS(3959), - [anon_sym_STAR] = ACTIONS(3957), - [anon_sym_SLASH] = ACTIONS(3959), - [anon_sym_PERCENT] = ACTIONS(3957), - [anon_sym_CARET] = ACTIONS(3957), - [anon_sym_PIPE] = ACTIONS(3959), - [anon_sym_AMP] = ACTIONS(3959), - [anon_sym_LT_LT] = ACTIONS(3957), - [anon_sym_GT_GT] = ACTIONS(3959), - [anon_sym_GT_GT_GT] = ACTIONS(3957), - [anon_sym_EQ_EQ] = ACTIONS(3957), - [anon_sym_BANG_EQ] = ACTIONS(3957), - [anon_sym_GT_EQ] = ACTIONS(3957), - [anon_sym_LT_EQ] = ACTIONS(3957), - [anon_sym_DOT] = ACTIONS(3959), - [anon_sym_scoped] = ACTIONS(3877), - [anon_sym_var] = ACTIONS(3877), - [anon_sym_yield] = ACTIONS(3877), - [anon_sym_switch] = ACTIONS(3959), - [anon_sym_when] = ACTIONS(3877), - [sym_discard] = ACTIONS(3897), - [anon_sym_DOT_DOT] = ACTIONS(3957), - [anon_sym_and] = ACTIONS(3959), - [anon_sym_or] = ACTIONS(3959), - [anon_sym_AMP_AMP] = ACTIONS(3957), - [anon_sym_PIPE_PIPE] = ACTIONS(3957), - [anon_sym_QMARK_QMARK] = ACTIONS(3957), - [anon_sym_from] = ACTIONS(3877), - [anon_sym_into] = ACTIONS(3877), - [anon_sym_join] = ACTIONS(3877), - [anon_sym_on] = ACTIONS(3877), - [anon_sym_equals] = ACTIONS(3959), - [anon_sym_let] = ACTIONS(3877), - [anon_sym_orderby] = ACTIONS(3877), - [anon_sym_ascending] = ACTIONS(3877), - [anon_sym_descending] = ACTIONS(3877), - [anon_sym_group] = ACTIONS(3877), - [anon_sym_by] = ACTIONS(3877), - [anon_sym_select] = ACTIONS(3877), - [anon_sym_as] = ACTIONS(3959), - [anon_sym_is] = ACTIONS(3959), - [anon_sym_DASH_GT] = ACTIONS(3957), - [anon_sym_with] = ACTIONS(3959), + [sym__identifier_token] = ACTIONS(3855), + [anon_sym_alias] = ACTIONS(3857), + [anon_sym_global] = ACTIONS(3857), + [anon_sym_LBRACK] = ACTIONS(3947), + [anon_sym_LPAREN] = ACTIONS(3947), + [anon_sym_file] = ACTIONS(3857), + [anon_sym_LT] = ACTIONS(3949), + [anon_sym_GT] = ACTIONS(3949), + [anon_sym_where] = ACTIONS(3857), + [anon_sym_QMARK] = ACTIONS(3949), + [anon_sym_notnull] = ACTIONS(3857), + [anon_sym_unmanaged] = ACTIONS(3857), + [anon_sym_BANG] = ACTIONS(3949), + [anon_sym_PLUS_PLUS] = ACTIONS(3947), + [anon_sym_DASH_DASH] = ACTIONS(3947), + [anon_sym_PLUS] = ACTIONS(3949), + [anon_sym_DASH] = ACTIONS(3949), + [anon_sym_STAR] = ACTIONS(3947), + [anon_sym_SLASH] = ACTIONS(3949), + [anon_sym_PERCENT] = ACTIONS(3947), + [anon_sym_CARET] = ACTIONS(3947), + [anon_sym_PIPE] = ACTIONS(3949), + [anon_sym_AMP] = ACTIONS(3949), + [anon_sym_LT_LT] = ACTIONS(3947), + [anon_sym_GT_GT] = ACTIONS(3949), + [anon_sym_GT_GT_GT] = ACTIONS(3947), + [anon_sym_EQ_EQ] = ACTIONS(3947), + [anon_sym_BANG_EQ] = ACTIONS(3947), + [anon_sym_GT_EQ] = ACTIONS(3947), + [anon_sym_LT_EQ] = ACTIONS(3947), + [anon_sym_DOT] = ACTIONS(3949), + [anon_sym_scoped] = ACTIONS(3857), + [anon_sym_var] = ACTIONS(3857), + [anon_sym_yield] = ACTIONS(3857), + [anon_sym_switch] = ACTIONS(3949), + [anon_sym_when] = ACTIONS(3857), + [sym_discard] = ACTIONS(3877), + [anon_sym_DOT_DOT] = ACTIONS(3947), + [anon_sym_and] = ACTIONS(3949), + [anon_sym_or] = ACTIONS(3949), + [anon_sym_AMP_AMP] = ACTIONS(3947), + [anon_sym_PIPE_PIPE] = ACTIONS(3947), + [anon_sym_QMARK_QMARK] = ACTIONS(3947), + [anon_sym_from] = ACTIONS(3857), + [anon_sym_into] = ACTIONS(3857), + [anon_sym_join] = ACTIONS(3857), + [anon_sym_on] = ACTIONS(3949), + [anon_sym_equals] = ACTIONS(3857), + [anon_sym_let] = ACTIONS(3857), + [anon_sym_orderby] = ACTIONS(3857), + [anon_sym_ascending] = ACTIONS(3857), + [anon_sym_descending] = ACTIONS(3857), + [anon_sym_group] = ACTIONS(3857), + [anon_sym_by] = ACTIONS(3857), + [anon_sym_select] = ACTIONS(3857), + [anon_sym_as] = ACTIONS(3949), + [anon_sym_is] = ACTIONS(3949), + [anon_sym_DASH_GT] = ACTIONS(3947), + [anon_sym_with] = ACTIONS(3949), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -449260,10 +448874,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2743] = { - [sym__variable_designation] = STATE(3481), - [sym_parenthesized_variable_designation] = STATE(3463), - [sym_identifier] = STATE(3479), - [sym__reserved_identifier] = STATE(3177), [sym_preproc_region] = STATE(2743), [sym_preproc_endregion] = STATE(2743), [sym_preproc_line] = STATE(2743), @@ -449273,65 +448883,68 @@ 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(3875), - [anon_sym_alias] = ACTIONS(3877), - [anon_sym_global] = ACTIONS(3877), - [anon_sym_LBRACK] = ACTIONS(3961), - [anon_sym_LPAREN] = ACTIONS(3961), - [anon_sym_file] = ACTIONS(3877), - [anon_sym_LT] = ACTIONS(3963), - [anon_sym_GT] = ACTIONS(3963), - [anon_sym_where] = ACTIONS(3877), - [anon_sym_QMARK] = ACTIONS(3963), - [anon_sym_notnull] = ACTIONS(3877), - [anon_sym_unmanaged] = ACTIONS(3877), - [anon_sym_BANG] = ACTIONS(3963), - [anon_sym_PLUS_PLUS] = ACTIONS(3961), - [anon_sym_DASH_DASH] = ACTIONS(3961), - [anon_sym_PLUS] = ACTIONS(3963), - [anon_sym_DASH] = ACTIONS(3963), - [anon_sym_STAR] = ACTIONS(3961), - [anon_sym_SLASH] = ACTIONS(3963), - [anon_sym_PERCENT] = ACTIONS(3961), - [anon_sym_CARET] = ACTIONS(3961), - [anon_sym_PIPE] = ACTIONS(3963), - [anon_sym_AMP] = ACTIONS(3963), - [anon_sym_LT_LT] = ACTIONS(3961), - [anon_sym_GT_GT] = ACTIONS(3963), - [anon_sym_GT_GT_GT] = ACTIONS(3961), - [anon_sym_EQ_EQ] = ACTIONS(3961), - [anon_sym_BANG_EQ] = ACTIONS(3961), - [anon_sym_GT_EQ] = ACTIONS(3961), - [anon_sym_LT_EQ] = ACTIONS(3961), - [anon_sym_DOT] = ACTIONS(3963), - [anon_sym_scoped] = ACTIONS(3877), - [anon_sym_var] = ACTIONS(3877), - [anon_sym_yield] = ACTIONS(3877), - [anon_sym_switch] = ACTIONS(3963), - [anon_sym_when] = ACTIONS(3877), - [sym_discard] = ACTIONS(3897), - [anon_sym_DOT_DOT] = ACTIONS(3961), - [anon_sym_and] = ACTIONS(3963), - [anon_sym_or] = ACTIONS(3963), - [anon_sym_AMP_AMP] = ACTIONS(3961), - [anon_sym_PIPE_PIPE] = ACTIONS(3961), - [anon_sym_QMARK_QMARK] = ACTIONS(3961), - [anon_sym_from] = ACTIONS(3877), - [anon_sym_into] = ACTIONS(3877), - [anon_sym_join] = ACTIONS(3877), - [anon_sym_on] = ACTIONS(3877), - [anon_sym_equals] = ACTIONS(3963), - [anon_sym_let] = ACTIONS(3877), - [anon_sym_orderby] = ACTIONS(3877), - [anon_sym_ascending] = ACTIONS(3877), - [anon_sym_descending] = ACTIONS(3877), - [anon_sym_group] = ACTIONS(3877), - [anon_sym_by] = ACTIONS(3877), - [anon_sym_select] = ACTIONS(3877), - [anon_sym_as] = ACTIONS(3963), - [anon_sym_is] = ACTIONS(3963), - [anon_sym_DASH_GT] = ACTIONS(3961), - [anon_sym_with] = ACTIONS(3963), + [sym__identifier_token] = ACTIONS(3431), + [anon_sym_alias] = ACTIONS(3431), + [anon_sym_global] = ACTIONS(3431), + [anon_sym_LBRACK] = ACTIONS(3429), + [anon_sym_COLON] = ACTIONS(3429), + [anon_sym_COMMA] = ACTIONS(3429), + [anon_sym_LPAREN] = ACTIONS(3429), + [anon_sym_LBRACE] = ACTIONS(3429), + [anon_sym_file] = ACTIONS(3431), + [anon_sym_LT] = ACTIONS(3431), + [anon_sym_GT] = ACTIONS(3431), + [anon_sym_where] = ACTIONS(3431), + [anon_sym_QMARK] = ACTIONS(3431), + [anon_sym_notnull] = ACTIONS(3431), + [anon_sym_unmanaged] = ACTIONS(3431), + [anon_sym_BANG] = ACTIONS(3431), + [anon_sym_PLUS_PLUS] = ACTIONS(3429), + [anon_sym_DASH_DASH] = ACTIONS(3429), + [anon_sym_PLUS] = ACTIONS(3431), + [anon_sym_DASH] = ACTIONS(3431), + [anon_sym_STAR] = ACTIONS(3429), + [anon_sym_SLASH] = ACTIONS(3431), + [anon_sym_PERCENT] = ACTIONS(3429), + [anon_sym_CARET] = ACTIONS(3429), + [anon_sym_PIPE] = ACTIONS(3431), + [anon_sym_AMP] = ACTIONS(3431), + [anon_sym_LT_LT] = ACTIONS(3429), + [anon_sym_GT_GT] = ACTIONS(3431), + [anon_sym_GT_GT_GT] = ACTIONS(3429), + [anon_sym_EQ_EQ] = ACTIONS(3429), + [anon_sym_BANG_EQ] = ACTIONS(3429), + [anon_sym_GT_EQ] = ACTIONS(3429), + [anon_sym_LT_EQ] = ACTIONS(3429), + [anon_sym_DOT] = ACTIONS(3431), + [anon_sym_scoped] = ACTIONS(3431), + [anon_sym_var] = ACTIONS(3431), + [anon_sym_yield] = ACTIONS(3431), + [anon_sym_switch] = ACTIONS(3431), + [anon_sym_when] = ACTIONS(3431), + [sym_discard] = ACTIONS(3431), + [anon_sym_DOT_DOT] = ACTIONS(3429), + [anon_sym_and] = ACTIONS(3431), + [anon_sym_or] = ACTIONS(3431), + [anon_sym_AMP_AMP] = ACTIONS(3429), + [anon_sym_PIPE_PIPE] = ACTIONS(3429), + [anon_sym_QMARK_QMARK] = ACTIONS(3429), + [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_as] = ACTIONS(3431), + [anon_sym_is] = ACTIONS(3431), + [anon_sym_DASH_GT] = ACTIONS(3429), + [anon_sym_with] = ACTIONS(3431), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -449342,6 +448955,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(3429), }, [2744] = { [sym_preproc_region] = STATE(2744), @@ -449353,79 +448967,79 @@ 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(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), + [sym__identifier_token] = ACTIONS(3669), + [anon_sym_alias] = ACTIONS(3669), + [anon_sym_global] = ACTIONS(3669), + [anon_sym_LBRACK] = ACTIONS(3678), + [anon_sym_COLON] = ACTIONS(3678), + [anon_sym_COMMA] = ACTIONS(3678), + [anon_sym_LPAREN] = ACTIONS(3678), + [anon_sym_LBRACE] = ACTIONS(3678), + [anon_sym_file] = ACTIONS(3669), + [anon_sym_LT] = ACTIONS(3669), + [anon_sym_GT] = ACTIONS(3669), + [anon_sym_where] = ACTIONS(3669), + [anon_sym_QMARK] = ACTIONS(3669), + [anon_sym_notnull] = ACTIONS(3669), + [anon_sym_unmanaged] = ACTIONS(3669), + [anon_sym_BANG] = ACTIONS(3669), + [anon_sym_PLUS_PLUS] = ACTIONS(3678), + [anon_sym_DASH_DASH] = ACTIONS(3678), + [anon_sym_PLUS] = ACTIONS(3669), + [anon_sym_DASH] = ACTIONS(3669), + [anon_sym_STAR] = ACTIONS(3678), + [anon_sym_SLASH] = ACTIONS(3669), + [anon_sym_PERCENT] = ACTIONS(3678), + [anon_sym_CARET] = ACTIONS(3678), + [anon_sym_PIPE] = ACTIONS(3669), + [anon_sym_AMP] = ACTIONS(3669), + [anon_sym_LT_LT] = ACTIONS(3678), + [anon_sym_GT_GT] = ACTIONS(3669), + [anon_sym_GT_GT_GT] = ACTIONS(3678), + [anon_sym_EQ_EQ] = ACTIONS(3678), + [anon_sym_BANG_EQ] = ACTIONS(3678), + [anon_sym_GT_EQ] = ACTIONS(3678), + [anon_sym_LT_EQ] = ACTIONS(3678), + [anon_sym_DOT] = ACTIONS(3669), + [anon_sym_scoped] = ACTIONS(3669), + [anon_sym_var] = ACTIONS(3669), + [anon_sym_yield] = ACTIONS(3669), + [anon_sym_switch] = ACTIONS(3669), + [anon_sym_when] = ACTIONS(3669), + [sym_discard] = ACTIONS(3669), + [anon_sym_DOT_DOT] = ACTIONS(3678), + [anon_sym_and] = ACTIONS(3669), + [anon_sym_or] = ACTIONS(3669), + [anon_sym_AMP_AMP] = ACTIONS(3678), + [anon_sym_PIPE_PIPE] = ACTIONS(3678), + [anon_sym_QMARK_QMARK] = ACTIONS(3678), + [anon_sym_from] = ACTIONS(3669), + [anon_sym_into] = ACTIONS(3669), + [anon_sym_join] = ACTIONS(3669), + [anon_sym_on] = ACTIONS(3669), + [anon_sym_equals] = ACTIONS(3669), + [anon_sym_let] = ACTIONS(3669), + [anon_sym_orderby] = ACTIONS(3669), + [anon_sym_ascending] = ACTIONS(3669), + [anon_sym_descending] = ACTIONS(3669), + [anon_sym_group] = ACTIONS(3669), + [anon_sym_by] = ACTIONS(3669), + [anon_sym_select] = ACTIONS(3669), + [anon_sym_as] = ACTIONS(3669), + [anon_sym_is] = ACTIONS(3669), + [anon_sym_DASH_GT] = ACTIONS(3678), + [anon_sym_with] = ACTIONS(3669), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_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(3678), }, [2745] = { [sym_preproc_region] = STATE(2745), @@ -449437,79 +449051,79 @@ 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(4012), - [anon_sym_alias] = ACTIONS(4012), - [anon_sym_global] = ACTIONS(4012), - [anon_sym_LBRACK] = ACTIONS(4014), - [anon_sym_COLON] = ACTIONS(4014), - [anon_sym_COMMA] = ACTIONS(4014), - [anon_sym_LPAREN] = ACTIONS(4014), - [anon_sym_LBRACE] = ACTIONS(4014), - [anon_sym_file] = ACTIONS(4012), - [anon_sym_LT] = ACTIONS(4012), - [anon_sym_GT] = ACTIONS(4012), - [anon_sym_where] = ACTIONS(4012), - [anon_sym_QMARK] = ACTIONS(4012), - [anon_sym_notnull] = ACTIONS(4012), - [anon_sym_unmanaged] = ACTIONS(4012), - [anon_sym_BANG] = ACTIONS(4012), - [anon_sym_PLUS_PLUS] = ACTIONS(4014), - [anon_sym_DASH_DASH] = ACTIONS(4014), - [anon_sym_PLUS] = ACTIONS(4012), - [anon_sym_DASH] = ACTIONS(4012), - [anon_sym_STAR] = ACTIONS(4014), - [anon_sym_SLASH] = ACTIONS(4012), - [anon_sym_PERCENT] = ACTIONS(4014), - [anon_sym_CARET] = ACTIONS(4014), - [anon_sym_PIPE] = ACTIONS(4012), - [anon_sym_AMP] = ACTIONS(4012), - [anon_sym_LT_LT] = ACTIONS(4014), - [anon_sym_GT_GT] = ACTIONS(4012), - [anon_sym_GT_GT_GT] = ACTIONS(4014), - [anon_sym_EQ_EQ] = ACTIONS(4014), - [anon_sym_BANG_EQ] = ACTIONS(4014), - [anon_sym_GT_EQ] = ACTIONS(4014), - [anon_sym_LT_EQ] = ACTIONS(4014), - [anon_sym_DOT] = ACTIONS(4012), - [anon_sym_scoped] = ACTIONS(4012), - [anon_sym_var] = ACTIONS(4012), - [anon_sym_yield] = ACTIONS(4012), - [anon_sym_switch] = ACTIONS(4012), - [anon_sym_when] = ACTIONS(4012), - [sym_discard] = ACTIONS(4012), - [anon_sym_DOT_DOT] = ACTIONS(4014), - [anon_sym_and] = ACTIONS(4012), - [anon_sym_or] = ACTIONS(4012), - [anon_sym_AMP_AMP] = ACTIONS(4014), - [anon_sym_PIPE_PIPE] = ACTIONS(4014), - [anon_sym_QMARK_QMARK] = ACTIONS(4014), - [anon_sym_from] = ACTIONS(4012), - [anon_sym_into] = ACTIONS(4012), - [anon_sym_join] = ACTIONS(4012), - [anon_sym_on] = ACTIONS(4012), - [anon_sym_equals] = ACTIONS(4012), - [anon_sym_let] = ACTIONS(4012), - [anon_sym_orderby] = ACTIONS(4012), - [anon_sym_ascending] = ACTIONS(4012), - [anon_sym_descending] = ACTIONS(4012), - [anon_sym_group] = ACTIONS(4012), - [anon_sym_by] = ACTIONS(4012), - [anon_sym_select] = ACTIONS(4012), - [anon_sym_as] = ACTIONS(4012), - [anon_sym_is] = ACTIONS(4012), - [anon_sym_DASH_GT] = ACTIONS(4014), - [anon_sym_with] = ACTIONS(4012), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_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(4014), + [sym__identifier_token] = ACTIONS(3634), + [anon_sym_alias] = ACTIONS(3634), + [anon_sym_global] = ACTIONS(3634), + [anon_sym_LBRACK] = ACTIONS(3636), + [anon_sym_COLON] = ACTIONS(3636), + [anon_sym_COMMA] = ACTIONS(3636), + [anon_sym_LPAREN] = ACTIONS(3636), + [anon_sym_LBRACE] = ACTIONS(3636), + [anon_sym_file] = ACTIONS(3634), + [anon_sym_LT] = ACTIONS(3634), + [anon_sym_GT] = ACTIONS(3634), + [anon_sym_where] = ACTIONS(3634), + [anon_sym_QMARK] = ACTIONS(3634), + [anon_sym_notnull] = ACTIONS(3634), + [anon_sym_unmanaged] = ACTIONS(3634), + [anon_sym_BANG] = ACTIONS(3634), + [anon_sym_PLUS_PLUS] = ACTIONS(3636), + [anon_sym_DASH_DASH] = ACTIONS(3636), + [anon_sym_PLUS] = ACTIONS(3634), + [anon_sym_DASH] = ACTIONS(3634), + [anon_sym_STAR] = ACTIONS(3636), + [anon_sym_SLASH] = ACTIONS(3634), + [anon_sym_PERCENT] = ACTIONS(3636), + [anon_sym_CARET] = ACTIONS(3636), + [anon_sym_PIPE] = ACTIONS(3634), + [anon_sym_AMP] = ACTIONS(3634), + [anon_sym_LT_LT] = ACTIONS(3636), + [anon_sym_GT_GT] = ACTIONS(3634), + [anon_sym_GT_GT_GT] = ACTIONS(3636), + [anon_sym_EQ_EQ] = ACTIONS(3636), + [anon_sym_BANG_EQ] = ACTIONS(3636), + [anon_sym_GT_EQ] = ACTIONS(3636), + [anon_sym_LT_EQ] = ACTIONS(3636), + [anon_sym_DOT] = ACTIONS(3634), + [anon_sym_scoped] = ACTIONS(3634), + [anon_sym_var] = ACTIONS(3634), + [anon_sym_yield] = ACTIONS(3634), + [anon_sym_switch] = ACTIONS(3634), + [anon_sym_when] = ACTIONS(3634), + [sym_discard] = ACTIONS(3634), + [anon_sym_DOT_DOT] = ACTIONS(3636), + [anon_sym_and] = ACTIONS(3634), + [anon_sym_or] = ACTIONS(3634), + [anon_sym_AMP_AMP] = ACTIONS(3636), + [anon_sym_PIPE_PIPE] = ACTIONS(3636), + [anon_sym_QMARK_QMARK] = ACTIONS(3636), + [anon_sym_from] = ACTIONS(3634), + [anon_sym_into] = ACTIONS(3634), + [anon_sym_join] = ACTIONS(3634), + [anon_sym_on] = ACTIONS(3634), + [anon_sym_equals] = ACTIONS(3634), + [anon_sym_let] = ACTIONS(3634), + [anon_sym_orderby] = ACTIONS(3634), + [anon_sym_ascending] = ACTIONS(3634), + [anon_sym_descending] = ACTIONS(3634), + [anon_sym_group] = ACTIONS(3634), + [anon_sym_by] = ACTIONS(3634), + [anon_sym_select] = ACTIONS(3634), + [anon_sym_as] = ACTIONS(3634), + [anon_sym_is] = ACTIONS(3634), + [anon_sym_DASH_GT] = ACTIONS(3636), + [anon_sym_with] = ACTIONS(3634), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_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(3636), }, [2746] = { [sym_preproc_region] = STATE(2746), @@ -449521,69 +449135,69 @@ 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(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), + [anon_sym_SEMI] = ACTIONS(3644), + [anon_sym_EQ] = ACTIONS(3642), + [anon_sym_LBRACK] = ACTIONS(3644), + [anon_sym_COLON] = ACTIONS(3644), + [anon_sym_COMMA] = ACTIONS(3644), + [anon_sym_RBRACK] = ACTIONS(3644), + [anon_sym_LPAREN] = ACTIONS(3644), + [anon_sym_RPAREN] = ACTIONS(3644), + [anon_sym_RBRACE] = ACTIONS(3644), + [anon_sym_LT] = ACTIONS(3642), + [anon_sym_GT] = ACTIONS(3642), + [anon_sym_in] = ACTIONS(3644), + [anon_sym_QMARK] = ACTIONS(3642), + [anon_sym_BANG] = ACTIONS(3642), + [anon_sym_PLUS_PLUS] = ACTIONS(3644), + [anon_sym_DASH_DASH] = ACTIONS(3644), + [anon_sym_PLUS] = ACTIONS(3642), + [anon_sym_DASH] = ACTIONS(3642), + [anon_sym_STAR] = ACTIONS(3642), + [anon_sym_SLASH] = ACTIONS(3642), + [anon_sym_PERCENT] = ACTIONS(3642), + [anon_sym_CARET] = ACTIONS(3642), + [anon_sym_PIPE] = ACTIONS(3642), + [anon_sym_AMP] = ACTIONS(3642), + [anon_sym_LT_LT] = ACTIONS(3642), + [anon_sym_GT_GT] = ACTIONS(3642), + [anon_sym_GT_GT_GT] = ACTIONS(3642), + [anon_sym_EQ_EQ] = ACTIONS(3644), + [anon_sym_BANG_EQ] = ACTIONS(3644), + [anon_sym_GT_EQ] = ACTIONS(3644), + [anon_sym_LT_EQ] = ACTIONS(3644), + [anon_sym_DOT] = ACTIONS(3642), + [anon_sym_EQ_GT] = ACTIONS(3644), + [anon_sym_switch] = ACTIONS(3644), + [anon_sym_when] = ACTIONS(3644), + [anon_sym_DOT_DOT] = ACTIONS(3644), + [anon_sym_and] = ACTIONS(3644), + [anon_sym_or] = ACTIONS(3644), + [anon_sym_PLUS_EQ] = ACTIONS(3644), + [anon_sym_DASH_EQ] = ACTIONS(3644), + [anon_sym_STAR_EQ] = ACTIONS(3644), + [anon_sym_SLASH_EQ] = ACTIONS(3644), + [anon_sym_PERCENT_EQ] = ACTIONS(3644), + [anon_sym_AMP_EQ] = ACTIONS(3644), + [anon_sym_CARET_EQ] = ACTIONS(3644), + [anon_sym_PIPE_EQ] = ACTIONS(3644), + [anon_sym_LT_LT_EQ] = ACTIONS(3644), + [anon_sym_GT_GT_EQ] = ACTIONS(3644), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3644), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3644), + [anon_sym_AMP_AMP] = ACTIONS(3644), + [anon_sym_PIPE_PIPE] = ACTIONS(3644), + [anon_sym_QMARK_QMARK] = ACTIONS(3642), + [anon_sym_on] = ACTIONS(3644), + [anon_sym_equals] = ACTIONS(3644), + [anon_sym_by] = ACTIONS(3644), + [anon_sym_as] = ACTIONS(3644), + [anon_sym_is] = ACTIONS(3644), + [anon_sym_DASH_GT] = ACTIONS(3644), + [anon_sym_with] = ACTIONS(3644), + [aux_sym_preproc_if_token3] = ACTIONS(3644), + [aux_sym_preproc_else_token1] = ACTIONS(3644), + [aux_sym_preproc_elif_token1] = ACTIONS(3644), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -449605,85 +449219,81 @@ 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), - [anon_sym_SEMI] = ACTIONS(3719), - [anon_sym_EQ] = ACTIONS(3704), - [anon_sym_LBRACK] = ACTIONS(3719), - [anon_sym_COLON] = ACTIONS(3719), - [anon_sym_COMMA] = ACTIONS(3719), - [anon_sym_RBRACK] = ACTIONS(3719), - [anon_sym_LPAREN] = ACTIONS(3719), - [anon_sym_RPAREN] = ACTIONS(3719), - [anon_sym_RBRACE] = ACTIONS(3719), - [anon_sym_LT] = ACTIONS(3704), - [anon_sym_GT] = ACTIONS(3704), - [anon_sym_in] = ACTIONS(3719), - [anon_sym_QMARK] = ACTIONS(3704), - [anon_sym_BANG] = ACTIONS(3704), - [anon_sym_PLUS_PLUS] = ACTIONS(3719), - [anon_sym_DASH_DASH] = ACTIONS(3719), - [anon_sym_PLUS] = ACTIONS(3704), - [anon_sym_DASH] = ACTIONS(3704), - [anon_sym_STAR] = ACTIONS(3704), - [anon_sym_SLASH] = ACTIONS(3704), - [anon_sym_PERCENT] = ACTIONS(3704), - [anon_sym_CARET] = ACTIONS(3704), - [anon_sym_PIPE] = ACTIONS(3704), - [anon_sym_AMP] = ACTIONS(3704), - [anon_sym_LT_LT] = ACTIONS(3704), - [anon_sym_GT_GT] = ACTIONS(3704), - [anon_sym_GT_GT_GT] = ACTIONS(3704), - [anon_sym_EQ_EQ] = ACTIONS(3719), - [anon_sym_BANG_EQ] = ACTIONS(3719), - [anon_sym_GT_EQ] = ACTIONS(3719), - [anon_sym_LT_EQ] = ACTIONS(3719), - [anon_sym_DOT] = ACTIONS(3704), - [anon_sym_EQ_GT] = ACTIONS(3719), - [anon_sym_switch] = ACTIONS(3719), - [anon_sym_when] = ACTIONS(3719), - [anon_sym_DOT_DOT] = ACTIONS(3719), - [anon_sym_and] = ACTIONS(3719), - [anon_sym_or] = ACTIONS(3719), - [anon_sym_PLUS_EQ] = ACTIONS(3719), - [anon_sym_DASH_EQ] = ACTIONS(3719), - [anon_sym_STAR_EQ] = ACTIONS(3719), - [anon_sym_SLASH_EQ] = ACTIONS(3719), - [anon_sym_PERCENT_EQ] = ACTIONS(3719), - [anon_sym_AMP_EQ] = ACTIONS(3719), - [anon_sym_CARET_EQ] = ACTIONS(3719), - [anon_sym_PIPE_EQ] = ACTIONS(3719), - [anon_sym_LT_LT_EQ] = ACTIONS(3719), - [anon_sym_GT_GT_EQ] = ACTIONS(3719), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3719), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3719), - [anon_sym_AMP_AMP] = ACTIONS(3719), - [anon_sym_PIPE_PIPE] = ACTIONS(3719), - [anon_sym_QMARK_QMARK] = ACTIONS(3704), - [anon_sym_on] = ACTIONS(3719), - [anon_sym_equals] = ACTIONS(3719), - [anon_sym_by] = ACTIONS(3719), - [anon_sym_as] = ACTIONS(3719), - [anon_sym_is] = ACTIONS(3719), - [anon_sym_DASH_GT] = ACTIONS(3719), - [anon_sym_with] = ACTIONS(3719), - [aux_sym_preproc_if_token3] = ACTIONS(3719), - [aux_sym_preproc_else_token1] = ACTIONS(3719), - [aux_sym_preproc_elif_token1] = 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__identifier_token] = ACTIONS(3909), + [anon_sym_alias] = ACTIONS(3909), + [anon_sym_global] = ACTIONS(3909), + [anon_sym_LBRACK] = ACTIONS(3911), + [anon_sym_COLON] = ACTIONS(3911), + [anon_sym_COMMA] = ACTIONS(3911), + [anon_sym_LPAREN] = ACTIONS(3911), + [anon_sym_LBRACE] = ACTIONS(3911), + [anon_sym_file] = ACTIONS(3909), + [anon_sym_LT] = ACTIONS(3909), + [anon_sym_GT] = ACTIONS(3909), + [anon_sym_where] = ACTIONS(3909), + [anon_sym_QMARK] = ACTIONS(3909), + [anon_sym_notnull] = ACTIONS(3909), + [anon_sym_unmanaged] = ACTIONS(3909), + [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(3909), + [anon_sym_var] = ACTIONS(3909), + [anon_sym_yield] = ACTIONS(3909), + [anon_sym_switch] = ACTIONS(3909), + [anon_sym_when] = ACTIONS(3909), + [sym_discard] = ACTIONS(3909), + [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(3909), + [anon_sym_join] = ACTIONS(3909), + [anon_sym_on] = ACTIONS(3909), + [anon_sym_equals] = ACTIONS(3909), + [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(3909), + [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), + [sym_interpolation_close_brace] = ACTIONS(3911), }, [2748] = { - [sym__variable_designation] = STATE(3507), - [sym_parenthesized_variable_designation] = STATE(3463), - [sym_identifier] = STATE(3479), - [sym__reserved_identifier] = STATE(3177), [sym_preproc_region] = STATE(2748), [sym_preproc_endregion] = STATE(2748), [sym_preproc_line] = STATE(2748), @@ -449693,65 +449303,69 @@ 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(3875), - [anon_sym_alias] = ACTIONS(3877), - [anon_sym_global] = ACTIONS(3877), - [anon_sym_LBRACK] = ACTIONS(3905), - [anon_sym_LPAREN] = ACTIONS(3905), - [anon_sym_file] = ACTIONS(3877), - [anon_sym_LT] = ACTIONS(3907), - [anon_sym_GT] = ACTIONS(3907), - [anon_sym_where] = ACTIONS(3877), - [anon_sym_QMARK] = ACTIONS(3907), - [anon_sym_notnull] = ACTIONS(3877), - [anon_sym_unmanaged] = ACTIONS(3877), - [anon_sym_BANG] = ACTIONS(3907), - [anon_sym_PLUS_PLUS] = ACTIONS(3905), - [anon_sym_DASH_DASH] = ACTIONS(3905), - [anon_sym_PLUS] = ACTIONS(3907), - [anon_sym_DASH] = ACTIONS(3907), - [anon_sym_STAR] = ACTIONS(3905), - [anon_sym_SLASH] = ACTIONS(3907), - [anon_sym_PERCENT] = ACTIONS(3905), - [anon_sym_CARET] = ACTIONS(3905), - [anon_sym_PIPE] = ACTIONS(3907), - [anon_sym_AMP] = ACTIONS(3907), - [anon_sym_LT_LT] = ACTIONS(3905), - [anon_sym_GT_GT] = ACTIONS(3907), - [anon_sym_GT_GT_GT] = ACTIONS(3905), - [anon_sym_EQ_EQ] = ACTIONS(3905), - [anon_sym_BANG_EQ] = ACTIONS(3905), - [anon_sym_GT_EQ] = ACTIONS(3905), - [anon_sym_LT_EQ] = ACTIONS(3905), - [anon_sym_DOT] = ACTIONS(3907), - [anon_sym_scoped] = ACTIONS(3877), - [anon_sym_var] = ACTIONS(3877), - [anon_sym_yield] = ACTIONS(3877), - [anon_sym_switch] = ACTIONS(3907), - [anon_sym_when] = ACTIONS(3877), - [sym_discard] = ACTIONS(3897), - [anon_sym_DOT_DOT] = ACTIONS(3905), - [anon_sym_and] = ACTIONS(3907), - [anon_sym_or] = ACTIONS(3907), - [anon_sym_AMP_AMP] = ACTIONS(3905), - [anon_sym_PIPE_PIPE] = ACTIONS(3905), - [anon_sym_QMARK_QMARK] = ACTIONS(3905), - [anon_sym_from] = ACTIONS(3877), - [anon_sym_into] = ACTIONS(3877), - [anon_sym_join] = ACTIONS(3877), - [anon_sym_on] = ACTIONS(3907), - [anon_sym_equals] = ACTIONS(3877), - [anon_sym_let] = ACTIONS(3877), - [anon_sym_orderby] = ACTIONS(3877), - [anon_sym_ascending] = ACTIONS(3877), - [anon_sym_descending] = ACTIONS(3877), - [anon_sym_group] = ACTIONS(3877), - [anon_sym_by] = ACTIONS(3877), - [anon_sym_select] = ACTIONS(3877), - [anon_sym_as] = ACTIONS(3907), - [anon_sym_is] = ACTIONS(3907), - [anon_sym_DASH_GT] = ACTIONS(3905), - [anon_sym_with] = ACTIONS(3907), + [anon_sym_SEMI] = ACTIONS(4140), + [anon_sym_EQ] = ACTIONS(4142), + [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_RBRACE] = ACTIONS(4140), + [anon_sym_LT] = ACTIONS(4142), + [anon_sym_GT] = ACTIONS(4142), + [anon_sym_in] = ACTIONS(4140), + [anon_sym_QMARK] = ACTIONS(4142), + [anon_sym_BANG] = ACTIONS(4142), + [anon_sym_PLUS_PLUS] = ACTIONS(4140), + [anon_sym_DASH_DASH] = ACTIONS(4140), + [anon_sym_PLUS] = ACTIONS(4142), + [anon_sym_DASH] = ACTIONS(4142), + [anon_sym_STAR] = ACTIONS(4142), + [anon_sym_SLASH] = ACTIONS(4142), + [anon_sym_PERCENT] = ACTIONS(4142), + [anon_sym_CARET] = ACTIONS(4142), + [anon_sym_PIPE] = ACTIONS(4142), + [anon_sym_AMP] = ACTIONS(4142), + [anon_sym_LT_LT] = ACTIONS(4142), + [anon_sym_GT_GT] = ACTIONS(4142), + [anon_sym_GT_GT_GT] = ACTIONS(4142), + [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(4142), + [anon_sym_EQ_GT] = ACTIONS(4140), + [anon_sym_switch] = ACTIONS(4140), + [anon_sym_when] = ACTIONS(4140), + [anon_sym_DOT_DOT] = ACTIONS(4140), + [anon_sym_and] = ACTIONS(4140), + [anon_sym_or] = ACTIONS(4140), + [anon_sym_PLUS_EQ] = ACTIONS(4140), + [anon_sym_DASH_EQ] = ACTIONS(4140), + [anon_sym_STAR_EQ] = ACTIONS(4140), + [anon_sym_SLASH_EQ] = ACTIONS(4140), + [anon_sym_PERCENT_EQ] = ACTIONS(4140), + [anon_sym_AMP_EQ] = ACTIONS(4140), + [anon_sym_CARET_EQ] = ACTIONS(4140), + [anon_sym_PIPE_EQ] = ACTIONS(4140), + [anon_sym_LT_LT_EQ] = ACTIONS(4140), + [anon_sym_GT_GT_EQ] = ACTIONS(4140), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(4140), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(4140), + [anon_sym_AMP_AMP] = ACTIONS(4140), + [anon_sym_PIPE_PIPE] = ACTIONS(4140), + [anon_sym_QMARK_QMARK] = ACTIONS(4142), + [anon_sym_on] = ACTIONS(4140), + [anon_sym_equals] = ACTIONS(4140), + [anon_sym_by] = ACTIONS(4140), + [anon_sym_as] = ACTIONS(4140), + [anon_sym_is] = ACTIONS(4140), + [anon_sym_DASH_GT] = ACTIONS(4140), + [anon_sym_with] = ACTIONS(4140), + [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), @@ -449773,69 +449387,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(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), + [sym__identifier_token] = ACTIONS(2949), + [anon_sym_extern] = ACTIONS(2949), + [anon_sym_alias] = ACTIONS(2949), + [anon_sym_global] = ACTIONS(2949), + [anon_sym_using] = ACTIONS(2949), + [anon_sym_unsafe] = ACTIONS(2949), + [anon_sym_static] = ACTIONS(2949), + [anon_sym_LBRACK] = ACTIONS(2951), + [anon_sym_LPAREN] = ACTIONS(2951), + [anon_sym_event] = ACTIONS(2949), + [anon_sym_namespace] = ACTIONS(2949), + [anon_sym_class] = ACTIONS(2949), + [anon_sym_ref] = ACTIONS(2949), + [anon_sym_struct] = ACTIONS(2949), + [anon_sym_enum] = ACTIONS(2949), + [anon_sym_RBRACE] = ACTIONS(2951), + [anon_sym_interface] = ACTIONS(2949), + [anon_sym_delegate] = ACTIONS(2949), + [anon_sym_record] = ACTIONS(2949), + [anon_sym_abstract] = ACTIONS(2949), + [anon_sym_async] = ACTIONS(2949), + [anon_sym_const] = ACTIONS(2949), + [anon_sym_file] = ACTIONS(2949), + [anon_sym_fixed] = ACTIONS(2949), + [anon_sym_internal] = ACTIONS(2949), + [anon_sym_new] = ACTIONS(2949), + [anon_sym_override] = ACTIONS(2949), + [anon_sym_partial] = ACTIONS(2949), + [anon_sym_private] = ACTIONS(2949), + [anon_sym_protected] = ACTIONS(2949), + [anon_sym_public] = ACTIONS(2949), + [anon_sym_readonly] = ACTIONS(2949), + [anon_sym_required] = ACTIONS(2949), + [anon_sym_sealed] = ACTIONS(2949), + [anon_sym_virtual] = ACTIONS(2949), + [anon_sym_volatile] = ACTIONS(2949), + [anon_sym_where] = ACTIONS(2949), + [anon_sym_notnull] = ACTIONS(2949), + [anon_sym_unmanaged] = ACTIONS(2949), + [anon_sym_TILDE] = ACTIONS(2951), + [anon_sym_implicit] = ACTIONS(2949), + [anon_sym_explicit] = ACTIONS(2949), + [anon_sym_scoped] = ACTIONS(2949), + [anon_sym_var] = ACTIONS(2949), + [sym_predefined_type] = ACTIONS(2949), + [anon_sym_yield] = ACTIONS(2949), + [anon_sym_when] = ACTIONS(2949), + [anon_sym_from] = ACTIONS(2949), + [anon_sym_into] = ACTIONS(2949), + [anon_sym_join] = ACTIONS(2949), + [anon_sym_on] = ACTIONS(2949), + [anon_sym_equals] = ACTIONS(2949), + [anon_sym_let] = ACTIONS(2949), + [anon_sym_orderby] = ACTIONS(2949), + [anon_sym_ascending] = ACTIONS(2949), + [anon_sym_descending] = ACTIONS(2949), + [anon_sym_group] = ACTIONS(2949), + [anon_sym_by] = ACTIONS(2949), + [anon_sym_select] = ACTIONS(2949), + [aux_sym_preproc_if_token1] = ACTIONS(2951), + [aux_sym_preproc_if_token3] = ACTIONS(2951), + [aux_sym_preproc_else_token1] = ACTIONS(2951), + [aux_sym_preproc_elif_token1] = ACTIONS(2951), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -449857,69 +449471,69 @@ 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(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), + [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), @@ -449941,69 +449555,69 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2751), [sym_preproc_define] = STATE(2751), [sym_preproc_undef] = STATE(2751), - [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), + [sym__identifier_token] = ACTIONS(4503), + [anon_sym_extern] = ACTIONS(4503), + [anon_sym_alias] = ACTIONS(4503), + [anon_sym_global] = ACTIONS(4503), + [anon_sym_using] = ACTIONS(4503), + [anon_sym_unsafe] = ACTIONS(4503), + [anon_sym_static] = ACTIONS(4503), + [anon_sym_LBRACK] = ACTIONS(4505), + [anon_sym_LPAREN] = ACTIONS(4505), + [anon_sym_event] = ACTIONS(4503), + [anon_sym_namespace] = ACTIONS(4503), + [anon_sym_class] = ACTIONS(4503), + [anon_sym_ref] = ACTIONS(4503), + [anon_sym_struct] = ACTIONS(4503), + [anon_sym_enum] = ACTIONS(4503), + [anon_sym_RBRACE] = ACTIONS(4505), + [anon_sym_interface] = ACTIONS(4503), + [anon_sym_delegate] = ACTIONS(4503), + [anon_sym_record] = ACTIONS(4503), + [anon_sym_abstract] = ACTIONS(4503), + [anon_sym_async] = ACTIONS(4503), + [anon_sym_const] = ACTIONS(4503), + [anon_sym_file] = ACTIONS(4503), + [anon_sym_fixed] = ACTIONS(4503), + [anon_sym_internal] = ACTIONS(4503), + [anon_sym_new] = ACTIONS(4503), + [anon_sym_override] = ACTIONS(4503), + [anon_sym_partial] = ACTIONS(4503), + [anon_sym_private] = ACTIONS(4503), + [anon_sym_protected] = ACTIONS(4503), + [anon_sym_public] = ACTIONS(4503), + [anon_sym_readonly] = ACTIONS(4503), + [anon_sym_required] = ACTIONS(4503), + [anon_sym_sealed] = ACTIONS(4503), + [anon_sym_virtual] = ACTIONS(4503), + [anon_sym_volatile] = ACTIONS(4503), + [anon_sym_where] = ACTIONS(4503), + [anon_sym_notnull] = ACTIONS(4503), + [anon_sym_unmanaged] = ACTIONS(4503), + [anon_sym_TILDE] = ACTIONS(4505), + [anon_sym_implicit] = ACTIONS(4503), + [anon_sym_explicit] = ACTIONS(4503), + [anon_sym_scoped] = ACTIONS(4503), + [anon_sym_var] = ACTIONS(4503), + [sym_predefined_type] = ACTIONS(4503), + [anon_sym_yield] = ACTIONS(4503), + [anon_sym_when] = ACTIONS(4503), + [anon_sym_from] = ACTIONS(4503), + [anon_sym_into] = ACTIONS(4503), + [anon_sym_join] = ACTIONS(4503), + [anon_sym_on] = ACTIONS(4503), + [anon_sym_equals] = ACTIONS(4503), + [anon_sym_let] = ACTIONS(4503), + [anon_sym_orderby] = ACTIONS(4503), + [anon_sym_ascending] = ACTIONS(4503), + [anon_sym_descending] = ACTIONS(4503), + [anon_sym_group] = ACTIONS(4503), + [anon_sym_by] = ACTIONS(4503), + [anon_sym_select] = ACTIONS(4503), + [aux_sym_preproc_if_token1] = ACTIONS(4505), + [aux_sym_preproc_if_token3] = ACTIONS(4505), + [aux_sym_preproc_else_token1] = ACTIONS(4505), + [aux_sym_preproc_elif_token1] = ACTIONS(4505), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -450025,85 +449639,81 @@ 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(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), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_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(4096), + [anon_sym_alias] = ACTIONS(4096), + [anon_sym_global] = ACTIONS(4096), + [anon_sym_LBRACK] = ACTIONS(4098), + [anon_sym_COLON] = ACTIONS(4098), + [anon_sym_COMMA] = ACTIONS(4098), + [anon_sym_LPAREN] = ACTIONS(4098), + [anon_sym_LBRACE] = ACTIONS(4098), + [anon_sym_file] = ACTIONS(4096), + [anon_sym_LT] = ACTIONS(4096), + [anon_sym_GT] = ACTIONS(4096), + [anon_sym_where] = ACTIONS(4096), + [anon_sym_QMARK] = ACTIONS(4096), + [anon_sym_notnull] = ACTIONS(4096), + [anon_sym_unmanaged] = ACTIONS(4096), + [anon_sym_BANG] = ACTIONS(4096), + [anon_sym_PLUS_PLUS] = ACTIONS(4098), + [anon_sym_DASH_DASH] = ACTIONS(4098), + [anon_sym_PLUS] = ACTIONS(4096), + [anon_sym_DASH] = ACTIONS(4096), + [anon_sym_STAR] = ACTIONS(4098), + [anon_sym_SLASH] = ACTIONS(4096), + [anon_sym_PERCENT] = ACTIONS(4098), + [anon_sym_CARET] = ACTIONS(4098), + [anon_sym_PIPE] = ACTIONS(4096), + [anon_sym_AMP] = ACTIONS(4096), + [anon_sym_LT_LT] = ACTIONS(4098), + [anon_sym_GT_GT] = ACTIONS(4096), + [anon_sym_GT_GT_GT] = ACTIONS(4098), + [anon_sym_EQ_EQ] = ACTIONS(4098), + [anon_sym_BANG_EQ] = ACTIONS(4098), + [anon_sym_GT_EQ] = ACTIONS(4098), + [anon_sym_LT_EQ] = ACTIONS(4098), + [anon_sym_DOT] = ACTIONS(4096), + [anon_sym_scoped] = ACTIONS(4096), + [anon_sym_var] = ACTIONS(4096), + [anon_sym_yield] = ACTIONS(4096), + [anon_sym_switch] = ACTIONS(4096), + [anon_sym_when] = ACTIONS(4096), + [sym_discard] = ACTIONS(4096), + [anon_sym_DOT_DOT] = ACTIONS(4098), + [anon_sym_and] = ACTIONS(4096), + [anon_sym_or] = ACTIONS(4096), + [anon_sym_AMP_AMP] = ACTIONS(4098), + [anon_sym_PIPE_PIPE] = ACTIONS(4098), + [anon_sym_QMARK_QMARK] = ACTIONS(4098), + [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_ascending] = ACTIONS(4096), + [anon_sym_descending] = 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(4098), + [anon_sym_with] = 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), + [sym_interpolation_close_brace] = ACTIONS(4098), }, [2753] = { - [sym__variable_designation] = STATE(3365), - [sym_parenthesized_variable_designation] = STATE(3463), - [sym_identifier] = STATE(3479), - [sym__reserved_identifier] = STATE(3177), [sym_preproc_region] = STATE(2753), [sym_preproc_endregion] = STATE(2753), [sym_preproc_line] = STATE(2753), @@ -450113,65 +449723,68 @@ 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(3875), - [anon_sym_alias] = ACTIONS(3877), - [anon_sym_global] = ACTIONS(3877), - [anon_sym_LBRACK] = ACTIONS(3913), - [anon_sym_LPAREN] = ACTIONS(3913), - [anon_sym_file] = ACTIONS(3877), - [anon_sym_LT] = ACTIONS(3915), - [anon_sym_GT] = ACTIONS(3915), - [anon_sym_where] = ACTIONS(3877), - [anon_sym_QMARK] = ACTIONS(3915), - [anon_sym_notnull] = ACTIONS(3877), - [anon_sym_unmanaged] = ACTIONS(3877), - [anon_sym_BANG] = ACTIONS(3915), - [anon_sym_PLUS_PLUS] = ACTIONS(3913), - [anon_sym_DASH_DASH] = ACTIONS(3913), - [anon_sym_PLUS] = ACTIONS(3915), - [anon_sym_DASH] = ACTIONS(3915), - [anon_sym_STAR] = ACTIONS(3913), - [anon_sym_SLASH] = ACTIONS(3915), - [anon_sym_PERCENT] = ACTIONS(3913), - [anon_sym_CARET] = ACTIONS(3913), - [anon_sym_PIPE] = ACTIONS(3915), - [anon_sym_AMP] = ACTIONS(3915), - [anon_sym_LT_LT] = ACTIONS(3913), - [anon_sym_GT_GT] = ACTIONS(3915), - [anon_sym_GT_GT_GT] = ACTIONS(3913), - [anon_sym_EQ_EQ] = ACTIONS(3913), - [anon_sym_BANG_EQ] = ACTIONS(3913), - [anon_sym_GT_EQ] = ACTIONS(3913), - [anon_sym_LT_EQ] = ACTIONS(3913), - [anon_sym_DOT] = ACTIONS(3915), - [anon_sym_scoped] = ACTIONS(3877), - [anon_sym_var] = ACTIONS(3877), - [anon_sym_yield] = ACTIONS(3877), - [anon_sym_switch] = ACTIONS(3915), - [anon_sym_when] = ACTIONS(3877), - [sym_discard] = ACTIONS(3897), - [anon_sym_DOT_DOT] = ACTIONS(3913), - [anon_sym_and] = ACTIONS(3915), - [anon_sym_or] = ACTIONS(3915), - [anon_sym_AMP_AMP] = ACTIONS(3913), - [anon_sym_PIPE_PIPE] = ACTIONS(3913), - [anon_sym_QMARK_QMARK] = ACTIONS(3913), - [anon_sym_from] = ACTIONS(3877), - [anon_sym_into] = ACTIONS(3877), - [anon_sym_join] = ACTIONS(3877), - [anon_sym_on] = ACTIONS(3915), - [anon_sym_equals] = ACTIONS(3877), - [anon_sym_let] = ACTIONS(3877), - [anon_sym_orderby] = ACTIONS(3877), - [anon_sym_ascending] = ACTIONS(3877), - [anon_sym_descending] = ACTIONS(3877), - [anon_sym_group] = ACTIONS(3877), - [anon_sym_by] = ACTIONS(3877), - [anon_sym_select] = ACTIONS(3877), - [anon_sym_as] = ACTIONS(3915), - [anon_sym_is] = ACTIONS(3915), - [anon_sym_DASH_GT] = ACTIONS(3913), - [anon_sym_with] = ACTIONS(3915), + [sym__identifier_token] = ACTIONS(4000), + [anon_sym_alias] = ACTIONS(4000), + [anon_sym_global] = ACTIONS(4000), + [anon_sym_LBRACK] = ACTIONS(4002), + [anon_sym_COLON] = ACTIONS(4002), + [anon_sym_COMMA] = ACTIONS(4002), + [anon_sym_LPAREN] = ACTIONS(4002), + [anon_sym_LBRACE] = ACTIONS(4002), + [anon_sym_file] = ACTIONS(4000), + [anon_sym_LT] = ACTIONS(4000), + [anon_sym_GT] = ACTIONS(4000), + [anon_sym_where] = ACTIONS(4000), + [anon_sym_QMARK] = ACTIONS(4000), + [anon_sym_notnull] = ACTIONS(4000), + [anon_sym_unmanaged] = ACTIONS(4000), + [anon_sym_BANG] = ACTIONS(4000), + [anon_sym_PLUS_PLUS] = ACTIONS(4002), + [anon_sym_DASH_DASH] = ACTIONS(4002), + [anon_sym_PLUS] = ACTIONS(4000), + [anon_sym_DASH] = ACTIONS(4000), + [anon_sym_STAR] = ACTIONS(4002), + [anon_sym_SLASH] = ACTIONS(4000), + [anon_sym_PERCENT] = ACTIONS(4002), + [anon_sym_CARET] = ACTIONS(4002), + [anon_sym_PIPE] = ACTIONS(4000), + [anon_sym_AMP] = ACTIONS(4000), + [anon_sym_LT_LT] = ACTIONS(4002), + [anon_sym_GT_GT] = ACTIONS(4000), + [anon_sym_GT_GT_GT] = ACTIONS(4002), + [anon_sym_EQ_EQ] = ACTIONS(4002), + [anon_sym_BANG_EQ] = ACTIONS(4002), + [anon_sym_GT_EQ] = ACTIONS(4002), + [anon_sym_LT_EQ] = ACTIONS(4002), + [anon_sym_DOT] = ACTIONS(4000), + [anon_sym_scoped] = ACTIONS(4000), + [anon_sym_var] = ACTIONS(4000), + [anon_sym_yield] = ACTIONS(4000), + [anon_sym_switch] = ACTIONS(4000), + [anon_sym_when] = ACTIONS(4000), + [sym_discard] = ACTIONS(4000), + [anon_sym_DOT_DOT] = ACTIONS(4002), + [anon_sym_and] = ACTIONS(4000), + [anon_sym_or] = ACTIONS(4000), + [anon_sym_AMP_AMP] = ACTIONS(4002), + [anon_sym_PIPE_PIPE] = ACTIONS(4002), + [anon_sym_QMARK_QMARK] = ACTIONS(4002), + [anon_sym_from] = ACTIONS(4000), + [anon_sym_into] = ACTIONS(4000), + [anon_sym_join] = ACTIONS(4000), + [anon_sym_on] = ACTIONS(4000), + [anon_sym_equals] = ACTIONS(4000), + [anon_sym_let] = ACTIONS(4000), + [anon_sym_orderby] = ACTIONS(4000), + [anon_sym_ascending] = ACTIONS(4000), + [anon_sym_descending] = ACTIONS(4000), + [anon_sym_group] = ACTIONS(4000), + [anon_sym_by] = ACTIONS(4000), + [anon_sym_select] = ACTIONS(4000), + [anon_sym_as] = ACTIONS(4000), + [anon_sym_is] = ACTIONS(4000), + [anon_sym_DASH_GT] = ACTIONS(4002), + [anon_sym_with] = ACTIONS(4000), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -450182,12 +449795,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(4002), }, [2754] = { - [sym__variable_designation] = STATE(3434), - [sym_parenthesized_variable_designation] = STATE(3463), - [sym_identifier] = STATE(3479), - [sym__reserved_identifier] = STATE(3177), [sym_preproc_region] = STATE(2754), [sym_preproc_endregion] = STATE(2754), [sym_preproc_line] = STATE(2754), @@ -450197,81 +449807,81 @@ 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(3875), - [anon_sym_alias] = ACTIONS(3877), - [anon_sym_global] = ACTIONS(3877), - [anon_sym_LBRACK] = ACTIONS(3957), - [anon_sym_LPAREN] = ACTIONS(3957), - [anon_sym_file] = ACTIONS(3877), - [anon_sym_LT] = ACTIONS(3959), - [anon_sym_GT] = ACTIONS(3959), - [anon_sym_where] = ACTIONS(3877), - [anon_sym_QMARK] = ACTIONS(3959), - [anon_sym_notnull] = ACTIONS(3877), - [anon_sym_unmanaged] = ACTIONS(3877), - [anon_sym_BANG] = ACTIONS(3959), - [anon_sym_PLUS_PLUS] = ACTIONS(3957), - [anon_sym_DASH_DASH] = ACTIONS(3957), - [anon_sym_PLUS] = ACTIONS(3959), - [anon_sym_DASH] = ACTIONS(3959), - [anon_sym_STAR] = ACTIONS(3957), - [anon_sym_SLASH] = ACTIONS(3959), - [anon_sym_PERCENT] = ACTIONS(3957), - [anon_sym_CARET] = ACTIONS(3957), - [anon_sym_PIPE] = ACTIONS(3959), - [anon_sym_AMP] = ACTIONS(3959), - [anon_sym_LT_LT] = ACTIONS(3957), - [anon_sym_GT_GT] = ACTIONS(3959), - [anon_sym_GT_GT_GT] = ACTIONS(3957), - [anon_sym_EQ_EQ] = ACTIONS(3957), - [anon_sym_BANG_EQ] = ACTIONS(3957), - [anon_sym_GT_EQ] = ACTIONS(3957), - [anon_sym_LT_EQ] = ACTIONS(3957), - [anon_sym_DOT] = ACTIONS(3959), - [anon_sym_scoped] = ACTIONS(3877), - [anon_sym_var] = ACTIONS(3877), - [anon_sym_yield] = ACTIONS(3877), - [anon_sym_switch] = ACTIONS(3959), - [anon_sym_when] = ACTIONS(3877), - [sym_discard] = ACTIONS(3897), - [anon_sym_DOT_DOT] = ACTIONS(3957), - [anon_sym_and] = ACTIONS(3959), - [anon_sym_or] = ACTIONS(3959), - [anon_sym_AMP_AMP] = ACTIONS(3957), - [anon_sym_PIPE_PIPE] = ACTIONS(3957), - [anon_sym_QMARK_QMARK] = ACTIONS(3957), - [anon_sym_from] = ACTIONS(3877), - [anon_sym_into] = ACTIONS(3877), - [anon_sym_join] = ACTIONS(3877), - [anon_sym_on] = ACTIONS(3959), - [anon_sym_equals] = ACTIONS(3877), - [anon_sym_let] = ACTIONS(3877), - [anon_sym_orderby] = ACTIONS(3877), - [anon_sym_ascending] = ACTIONS(3877), - [anon_sym_descending] = ACTIONS(3877), - [anon_sym_group] = ACTIONS(3877), - [anon_sym_by] = ACTIONS(3877), - [anon_sym_select] = ACTIONS(3877), - [anon_sym_as] = ACTIONS(3959), - [anon_sym_is] = ACTIONS(3959), - [anon_sym_DASH_GT] = ACTIONS(3957), - [anon_sym_with] = ACTIONS(3959), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_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(4070), + [anon_sym_alias] = ACTIONS(4070), + [anon_sym_global] = ACTIONS(4070), + [anon_sym_LBRACK] = ACTIONS(4072), + [anon_sym_COLON] = ACTIONS(4072), + [anon_sym_COMMA] = ACTIONS(4072), + [anon_sym_LPAREN] = ACTIONS(4072), + [anon_sym_LBRACE] = ACTIONS(4072), + [anon_sym_file] = ACTIONS(4070), + [anon_sym_LT] = ACTIONS(4070), + [anon_sym_GT] = ACTIONS(4070), + [anon_sym_where] = ACTIONS(4070), + [anon_sym_QMARK] = ACTIONS(4070), + [anon_sym_notnull] = ACTIONS(4070), + [anon_sym_unmanaged] = ACTIONS(4070), + [anon_sym_BANG] = ACTIONS(4070), + [anon_sym_PLUS_PLUS] = ACTIONS(4072), + [anon_sym_DASH_DASH] = ACTIONS(4072), + [anon_sym_PLUS] = ACTIONS(4070), + [anon_sym_DASH] = ACTIONS(4070), + [anon_sym_STAR] = ACTIONS(4072), + [anon_sym_SLASH] = ACTIONS(4070), + [anon_sym_PERCENT] = ACTIONS(4072), + [anon_sym_CARET] = ACTIONS(4072), + [anon_sym_PIPE] = ACTIONS(4070), + [anon_sym_AMP] = ACTIONS(4070), + [anon_sym_LT_LT] = ACTIONS(4072), + [anon_sym_GT_GT] = ACTIONS(4070), + [anon_sym_GT_GT_GT] = ACTIONS(4072), + [anon_sym_EQ_EQ] = ACTIONS(4072), + [anon_sym_BANG_EQ] = ACTIONS(4072), + [anon_sym_GT_EQ] = ACTIONS(4072), + [anon_sym_LT_EQ] = ACTIONS(4072), + [anon_sym_DOT] = ACTIONS(4070), + [anon_sym_scoped] = ACTIONS(4070), + [anon_sym_var] = ACTIONS(4070), + [anon_sym_yield] = ACTIONS(4070), + [anon_sym_switch] = ACTIONS(4070), + [anon_sym_when] = ACTIONS(4070), + [sym_discard] = ACTIONS(4070), + [anon_sym_DOT_DOT] = ACTIONS(4072), + [anon_sym_and] = ACTIONS(4070), + [anon_sym_or] = ACTIONS(4070), + [anon_sym_AMP_AMP] = ACTIONS(4072), + [anon_sym_PIPE_PIPE] = ACTIONS(4072), + [anon_sym_QMARK_QMARK] = ACTIONS(4072), + [anon_sym_from] = ACTIONS(4070), + [anon_sym_into] = ACTIONS(4070), + [anon_sym_join] = ACTIONS(4070), + [anon_sym_on] = ACTIONS(4070), + [anon_sym_equals] = ACTIONS(4070), + [anon_sym_let] = ACTIONS(4070), + [anon_sym_orderby] = ACTIONS(4070), + [anon_sym_ascending] = ACTIONS(4070), + [anon_sym_descending] = ACTIONS(4070), + [anon_sym_group] = ACTIONS(4070), + [anon_sym_by] = ACTIONS(4070), + [anon_sym_select] = ACTIONS(4070), + [anon_sym_as] = ACTIONS(4070), + [anon_sym_is] = ACTIONS(4070), + [anon_sym_DASH_GT] = ACTIONS(4072), + [anon_sym_with] = ACTIONS(4070), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_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(4072), }, [2755] = { - [sym__variable_designation] = STATE(3481), - [sym_parenthesized_variable_designation] = STATE(3463), - [sym_identifier] = STATE(3479), - [sym__reserved_identifier] = STATE(3177), [sym_preproc_region] = STATE(2755), [sym_preproc_endregion] = STATE(2755), [sym_preproc_line] = STATE(2755), @@ -450281,149 +449891,153 @@ 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(3875), - [anon_sym_alias] = ACTIONS(3877), - [anon_sym_global] = ACTIONS(3877), - [anon_sym_LBRACK] = ACTIONS(3961), - [anon_sym_LPAREN] = ACTIONS(3961), - [anon_sym_file] = ACTIONS(3877), - [anon_sym_LT] = ACTIONS(3963), - [anon_sym_GT] = ACTIONS(3963), - [anon_sym_where] = ACTIONS(3877), - [anon_sym_QMARK] = ACTIONS(3963), - [anon_sym_notnull] = ACTIONS(3877), - [anon_sym_unmanaged] = ACTIONS(3877), - [anon_sym_BANG] = ACTIONS(3963), - [anon_sym_PLUS_PLUS] = ACTIONS(3961), - [anon_sym_DASH_DASH] = ACTIONS(3961), - [anon_sym_PLUS] = ACTIONS(3963), - [anon_sym_DASH] = ACTIONS(3963), - [anon_sym_STAR] = ACTIONS(3961), - [anon_sym_SLASH] = ACTIONS(3963), - [anon_sym_PERCENT] = ACTIONS(3961), - [anon_sym_CARET] = ACTIONS(3961), - [anon_sym_PIPE] = ACTIONS(3963), - [anon_sym_AMP] = ACTIONS(3963), - [anon_sym_LT_LT] = ACTIONS(3961), - [anon_sym_GT_GT] = ACTIONS(3963), - [anon_sym_GT_GT_GT] = ACTIONS(3961), - [anon_sym_EQ_EQ] = ACTIONS(3961), - [anon_sym_BANG_EQ] = ACTIONS(3961), - [anon_sym_GT_EQ] = ACTIONS(3961), - [anon_sym_LT_EQ] = ACTIONS(3961), - [anon_sym_DOT] = ACTIONS(3963), - [anon_sym_scoped] = ACTIONS(3877), - [anon_sym_var] = ACTIONS(3877), - [anon_sym_yield] = ACTIONS(3877), - [anon_sym_switch] = ACTIONS(3963), - [anon_sym_when] = ACTIONS(3877), - [sym_discard] = ACTIONS(3897), - [anon_sym_DOT_DOT] = ACTIONS(3961), - [anon_sym_and] = ACTIONS(3963), - [anon_sym_or] = ACTIONS(3963), - [anon_sym_AMP_AMP] = ACTIONS(3961), - [anon_sym_PIPE_PIPE] = ACTIONS(3961), - [anon_sym_QMARK_QMARK] = ACTIONS(3961), - [anon_sym_from] = ACTIONS(3877), - [anon_sym_into] = ACTIONS(3877), - [anon_sym_join] = ACTIONS(3877), - [anon_sym_on] = ACTIONS(3963), - [anon_sym_equals] = ACTIONS(3877), - [anon_sym_let] = ACTIONS(3877), - [anon_sym_orderby] = ACTIONS(3877), - [anon_sym_ascending] = ACTIONS(3877), - [anon_sym_descending] = ACTIONS(3877), - [anon_sym_group] = ACTIONS(3877), - [anon_sym_by] = ACTIONS(3877), - [anon_sym_select] = ACTIONS(3877), - [anon_sym_as] = ACTIONS(3963), - [anon_sym_is] = ACTIONS(3963), - [anon_sym_DASH_GT] = ACTIONS(3961), - [anon_sym_with] = ACTIONS(3963), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - }, - [2756] = { - [sym_preproc_region] = STATE(2756), - [sym_preproc_endregion] = STATE(2756), - [sym_preproc_line] = STATE(2756), - [sym_preproc_pragma] = STATE(2756), - [sym_preproc_nullable] = STATE(2756), - [sym_preproc_error] = STATE(2756), - [sym_preproc_warning] = STATE(2756), - [sym_preproc_define] = STATE(2756), - [sym_preproc_undef] = STATE(2756), - [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), + [sym__identifier_token] = ACTIONS(4507), + [anon_sym_extern] = ACTIONS(4507), + [anon_sym_alias] = ACTIONS(4507), + [anon_sym_global] = ACTIONS(4507), + [anon_sym_using] = ACTIONS(4507), + [anon_sym_unsafe] = ACTIONS(4507), + [anon_sym_static] = ACTIONS(4507), + [anon_sym_LBRACK] = ACTIONS(4509), + [anon_sym_LPAREN] = ACTIONS(4509), + [anon_sym_event] = ACTIONS(4507), + [anon_sym_namespace] = ACTIONS(4507), + [anon_sym_class] = ACTIONS(4507), + [anon_sym_ref] = ACTIONS(4507), + [anon_sym_struct] = ACTIONS(4507), + [anon_sym_enum] = ACTIONS(4507), + [anon_sym_RBRACE] = ACTIONS(4509), + [anon_sym_interface] = ACTIONS(4507), + [anon_sym_delegate] = ACTIONS(4507), + [anon_sym_record] = ACTIONS(4507), + [anon_sym_abstract] = ACTIONS(4507), + [anon_sym_async] = ACTIONS(4507), + [anon_sym_const] = ACTIONS(4507), + [anon_sym_file] = ACTIONS(4507), + [anon_sym_fixed] = ACTIONS(4507), + [anon_sym_internal] = ACTIONS(4507), + [anon_sym_new] = ACTIONS(4507), + [anon_sym_override] = ACTIONS(4507), + [anon_sym_partial] = ACTIONS(4507), + [anon_sym_private] = ACTIONS(4507), + [anon_sym_protected] = ACTIONS(4507), + [anon_sym_public] = ACTIONS(4507), + [anon_sym_readonly] = ACTIONS(4507), + [anon_sym_required] = ACTIONS(4507), + [anon_sym_sealed] = ACTIONS(4507), + [anon_sym_virtual] = ACTIONS(4507), + [anon_sym_volatile] = ACTIONS(4507), + [anon_sym_where] = ACTIONS(4507), + [anon_sym_notnull] = ACTIONS(4507), + [anon_sym_unmanaged] = ACTIONS(4507), + [anon_sym_TILDE] = ACTIONS(4509), + [anon_sym_implicit] = ACTIONS(4507), + [anon_sym_explicit] = ACTIONS(4507), + [anon_sym_scoped] = ACTIONS(4507), + [anon_sym_var] = ACTIONS(4507), + [sym_predefined_type] = ACTIONS(4507), + [anon_sym_yield] = ACTIONS(4507), + [anon_sym_when] = ACTIONS(4507), + [anon_sym_from] = ACTIONS(4507), + [anon_sym_into] = ACTIONS(4507), + [anon_sym_join] = ACTIONS(4507), + [anon_sym_on] = ACTIONS(4507), + [anon_sym_equals] = ACTIONS(4507), + [anon_sym_let] = ACTIONS(4507), + [anon_sym_orderby] = ACTIONS(4507), + [anon_sym_ascending] = ACTIONS(4507), + [anon_sym_descending] = ACTIONS(4507), + [anon_sym_group] = ACTIONS(4507), + [anon_sym_by] = ACTIONS(4507), + [anon_sym_select] = ACTIONS(4507), + [aux_sym_preproc_if_token1] = ACTIONS(4509), + [aux_sym_preproc_if_token3] = ACTIONS(4509), + [aux_sym_preproc_else_token1] = ACTIONS(4509), + [aux_sym_preproc_elif_token1] = ACTIONS(4509), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + }, + [2756] = { + [sym_preproc_region] = STATE(2756), + [sym_preproc_endregion] = STATE(2756), + [sym_preproc_line] = STATE(2756), + [sym_preproc_pragma] = STATE(2756), + [sym_preproc_nullable] = STATE(2756), + [sym_preproc_error] = STATE(2756), + [sym_preproc_warning] = STATE(2756), + [sym_preproc_define] = STATE(2756), + [sym_preproc_undef] = STATE(2756), + [sym__identifier_token] = ACTIONS(4511), + [anon_sym_extern] = ACTIONS(4511), + [anon_sym_alias] = ACTIONS(4511), + [anon_sym_global] = ACTIONS(4511), + [anon_sym_using] = ACTIONS(4511), + [anon_sym_unsafe] = ACTIONS(4511), + [anon_sym_static] = ACTIONS(4511), + [anon_sym_LBRACK] = ACTIONS(4513), + [anon_sym_LPAREN] = ACTIONS(4513), + [anon_sym_event] = ACTIONS(4511), + [anon_sym_namespace] = ACTIONS(4511), + [anon_sym_class] = ACTIONS(4511), + [anon_sym_ref] = ACTIONS(4511), + [anon_sym_struct] = ACTIONS(4511), + [anon_sym_enum] = ACTIONS(4511), + [anon_sym_RBRACE] = ACTIONS(4513), + [anon_sym_interface] = ACTIONS(4511), + [anon_sym_delegate] = ACTIONS(4511), + [anon_sym_record] = ACTIONS(4511), + [anon_sym_abstract] = ACTIONS(4511), + [anon_sym_async] = ACTIONS(4511), + [anon_sym_const] = ACTIONS(4511), + [anon_sym_file] = ACTIONS(4511), + [anon_sym_fixed] = ACTIONS(4511), + [anon_sym_internal] = ACTIONS(4511), + [anon_sym_new] = ACTIONS(4511), + [anon_sym_override] = ACTIONS(4511), + [anon_sym_partial] = ACTIONS(4511), + [anon_sym_private] = ACTIONS(4511), + [anon_sym_protected] = ACTIONS(4511), + [anon_sym_public] = ACTIONS(4511), + [anon_sym_readonly] = ACTIONS(4511), + [anon_sym_required] = ACTIONS(4511), + [anon_sym_sealed] = ACTIONS(4511), + [anon_sym_virtual] = ACTIONS(4511), + [anon_sym_volatile] = ACTIONS(4511), + [anon_sym_where] = ACTIONS(4511), + [anon_sym_notnull] = ACTIONS(4511), + [anon_sym_unmanaged] = ACTIONS(4511), + [anon_sym_TILDE] = ACTIONS(4513), + [anon_sym_implicit] = ACTIONS(4511), + [anon_sym_explicit] = ACTIONS(4511), + [anon_sym_scoped] = ACTIONS(4511), + [anon_sym_var] = ACTIONS(4511), + [sym_predefined_type] = ACTIONS(4511), + [anon_sym_yield] = ACTIONS(4511), + [anon_sym_when] = ACTIONS(4511), + [anon_sym_from] = ACTIONS(4511), + [anon_sym_into] = ACTIONS(4511), + [anon_sym_join] = ACTIONS(4511), + [anon_sym_on] = ACTIONS(4511), + [anon_sym_equals] = ACTIONS(4511), + [anon_sym_let] = ACTIONS(4511), + [anon_sym_orderby] = ACTIONS(4511), + [anon_sym_ascending] = ACTIONS(4511), + [anon_sym_descending] = ACTIONS(4511), + [anon_sym_group] = ACTIONS(4511), + [anon_sym_by] = ACTIONS(4511), + [anon_sym_select] = ACTIONS(4511), + [aux_sym_preproc_if_token1] = ACTIONS(4513), + [aux_sym_preproc_if_token3] = ACTIONS(4513), + [aux_sym_preproc_else_token1] = ACTIONS(4513), + [aux_sym_preproc_elif_token1] = ACTIONS(4513), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -450436,6 +450050,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2757] = { + [sym__variable_designation] = STATE(3227), + [sym_parenthesized_variable_designation] = STATE(3344), + [sym_identifier] = STATE(3346), + [sym__reserved_identifier] = STATE(3199), [sym_preproc_region] = STATE(2757), [sym_preproc_endregion] = STATE(2757), [sym_preproc_line] = STATE(2757), @@ -450445,79 +450063,75 @@ 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(3447), - [anon_sym_alias] = ACTIONS(3447), - [anon_sym_global] = ACTIONS(3447), - [anon_sym_LBRACK] = ACTIONS(3445), - [anon_sym_COLON] = ACTIONS(3445), - [anon_sym_COMMA] = ACTIONS(3445), - [anon_sym_LPAREN] = ACTIONS(3445), - [anon_sym_LBRACE] = ACTIONS(3445), - [anon_sym_file] = ACTIONS(3447), - [anon_sym_LT] = ACTIONS(3447), - [anon_sym_GT] = ACTIONS(3447), - [anon_sym_where] = ACTIONS(3447), - [anon_sym_QMARK] = ACTIONS(3447), - [anon_sym_notnull] = ACTIONS(3447), - [anon_sym_unmanaged] = ACTIONS(3447), - [anon_sym_BANG] = ACTIONS(3447), - [anon_sym_PLUS_PLUS] = ACTIONS(3445), - [anon_sym_DASH_DASH] = ACTIONS(3445), - [anon_sym_PLUS] = ACTIONS(3447), - [anon_sym_DASH] = ACTIONS(3447), - [anon_sym_STAR] = ACTIONS(3445), - [anon_sym_SLASH] = ACTIONS(3447), - [anon_sym_PERCENT] = ACTIONS(3445), - [anon_sym_CARET] = ACTIONS(3445), - [anon_sym_PIPE] = ACTIONS(3447), - [anon_sym_AMP] = ACTIONS(3447), - [anon_sym_LT_LT] = ACTIONS(3445), - [anon_sym_GT_GT] = ACTIONS(3447), - [anon_sym_GT_GT_GT] = ACTIONS(3445), - [anon_sym_EQ_EQ] = ACTIONS(3445), - [anon_sym_BANG_EQ] = ACTIONS(3445), - [anon_sym_GT_EQ] = ACTIONS(3445), - [anon_sym_LT_EQ] = ACTIONS(3445), - [anon_sym_DOT] = ACTIONS(3447), - [anon_sym_scoped] = ACTIONS(3447), - [anon_sym_var] = ACTIONS(3447), - [anon_sym_yield] = ACTIONS(3447), - [anon_sym_switch] = ACTIONS(3447), - [anon_sym_when] = ACTIONS(3447), - [sym_discard] = ACTIONS(3447), - [anon_sym_DOT_DOT] = ACTIONS(3445), - [anon_sym_and] = ACTIONS(3447), - [anon_sym_or] = ACTIONS(3447), - [anon_sym_AMP_AMP] = ACTIONS(3445), - [anon_sym_PIPE_PIPE] = ACTIONS(3445), - [anon_sym_QMARK_QMARK] = ACTIONS(3445), - [anon_sym_from] = ACTIONS(3447), - [anon_sym_into] = ACTIONS(3447), - [anon_sym_join] = ACTIONS(3447), - [anon_sym_on] = ACTIONS(3447), - [anon_sym_equals] = ACTIONS(3447), - [anon_sym_let] = ACTIONS(3447), - [anon_sym_orderby] = ACTIONS(3447), - [anon_sym_ascending] = ACTIONS(3447), - [anon_sym_descending] = ACTIONS(3447), - [anon_sym_group] = ACTIONS(3447), - [anon_sym_by] = ACTIONS(3447), - [anon_sym_select] = ACTIONS(3447), - [anon_sym_as] = ACTIONS(3447), - [anon_sym_is] = ACTIONS(3447), - [anon_sym_DASH_GT] = ACTIONS(3445), - [anon_sym_with] = ACTIONS(3447), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_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(3445), + [sym__identifier_token] = ACTIONS(3855), + [anon_sym_alias] = ACTIONS(3857), + [anon_sym_global] = ACTIONS(3857), + [anon_sym_LBRACK] = ACTIONS(3893), + [anon_sym_LPAREN] = ACTIONS(3893), + [anon_sym_file] = ACTIONS(3857), + [anon_sym_LT] = ACTIONS(3895), + [anon_sym_GT] = ACTIONS(3895), + [anon_sym_where] = ACTIONS(3857), + [anon_sym_QMARK] = ACTIONS(3895), + [anon_sym_notnull] = ACTIONS(3857), + [anon_sym_unmanaged] = ACTIONS(3857), + [anon_sym_BANG] = ACTIONS(3895), + [anon_sym_PLUS_PLUS] = ACTIONS(3893), + [anon_sym_DASH_DASH] = ACTIONS(3893), + [anon_sym_PLUS] = ACTIONS(3895), + [anon_sym_DASH] = ACTIONS(3895), + [anon_sym_STAR] = ACTIONS(3893), + [anon_sym_SLASH] = ACTIONS(3895), + [anon_sym_PERCENT] = ACTIONS(3893), + [anon_sym_CARET] = ACTIONS(3893), + [anon_sym_PIPE] = ACTIONS(3895), + [anon_sym_AMP] = ACTIONS(3895), + [anon_sym_LT_LT] = ACTIONS(3893), + [anon_sym_GT_GT] = ACTIONS(3895), + [anon_sym_GT_GT_GT] = ACTIONS(3893), + [anon_sym_EQ_EQ] = ACTIONS(3893), + [anon_sym_BANG_EQ] = ACTIONS(3893), + [anon_sym_GT_EQ] = ACTIONS(3893), + [anon_sym_LT_EQ] = ACTIONS(3893), + [anon_sym_DOT] = ACTIONS(3895), + [anon_sym_scoped] = ACTIONS(3857), + [anon_sym_var] = ACTIONS(3857), + [anon_sym_yield] = ACTIONS(3857), + [anon_sym_switch] = ACTIONS(3895), + [anon_sym_when] = ACTIONS(3857), + [sym_discard] = ACTIONS(3865), + [anon_sym_DOT_DOT] = ACTIONS(3893), + [anon_sym_and] = ACTIONS(3895), + [anon_sym_or] = ACTIONS(3895), + [anon_sym_AMP_AMP] = ACTIONS(3893), + [anon_sym_PIPE_PIPE] = ACTIONS(3893), + [anon_sym_QMARK_QMARK] = ACTIONS(3893), + [anon_sym_from] = ACTIONS(3857), + [anon_sym_into] = ACTIONS(3895), + [anon_sym_join] = ACTIONS(3857), + [anon_sym_on] = ACTIONS(3857), + [anon_sym_equals] = ACTIONS(3857), + [anon_sym_let] = ACTIONS(3857), + [anon_sym_orderby] = ACTIONS(3857), + [anon_sym_ascending] = ACTIONS(3857), + [anon_sym_descending] = ACTIONS(3857), + [anon_sym_group] = ACTIONS(3857), + [anon_sym_by] = ACTIONS(3895), + [anon_sym_select] = ACTIONS(3857), + [anon_sym_as] = ACTIONS(3895), + [anon_sym_is] = ACTIONS(3895), + [anon_sym_DASH_GT] = ACTIONS(3893), + [anon_sym_with] = ACTIONS(3895), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), }, [2758] = { [sym_preproc_region] = STATE(2758), @@ -450529,69 +450143,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(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), + [sym__identifier_token] = ACTIONS(4515), + [anon_sym_extern] = ACTIONS(4515), + [anon_sym_alias] = ACTIONS(4515), + [anon_sym_global] = ACTIONS(4515), + [anon_sym_using] = ACTIONS(4515), + [anon_sym_unsafe] = ACTIONS(4515), + [anon_sym_static] = ACTIONS(4515), + [anon_sym_LBRACK] = ACTIONS(4517), + [anon_sym_LPAREN] = ACTIONS(4517), + [anon_sym_event] = ACTIONS(4515), + [anon_sym_namespace] = ACTIONS(4515), + [anon_sym_class] = ACTIONS(4515), + [anon_sym_ref] = ACTIONS(4515), + [anon_sym_struct] = ACTIONS(4515), + [anon_sym_enum] = ACTIONS(4515), + [anon_sym_RBRACE] = ACTIONS(4517), + [anon_sym_interface] = ACTIONS(4515), + [anon_sym_delegate] = ACTIONS(4515), + [anon_sym_record] = ACTIONS(4515), + [anon_sym_abstract] = ACTIONS(4515), + [anon_sym_async] = ACTIONS(4515), + [anon_sym_const] = ACTIONS(4515), + [anon_sym_file] = ACTIONS(4515), + [anon_sym_fixed] = ACTIONS(4515), + [anon_sym_internal] = ACTIONS(4515), + [anon_sym_new] = ACTIONS(4515), + [anon_sym_override] = ACTIONS(4515), + [anon_sym_partial] = ACTIONS(4515), + [anon_sym_private] = ACTIONS(4515), + [anon_sym_protected] = ACTIONS(4515), + [anon_sym_public] = ACTIONS(4515), + [anon_sym_readonly] = ACTIONS(4515), + [anon_sym_required] = ACTIONS(4515), + [anon_sym_sealed] = ACTIONS(4515), + [anon_sym_virtual] = ACTIONS(4515), + [anon_sym_volatile] = ACTIONS(4515), + [anon_sym_where] = ACTIONS(4515), + [anon_sym_notnull] = ACTIONS(4515), + [anon_sym_unmanaged] = ACTIONS(4515), + [anon_sym_TILDE] = ACTIONS(4517), + [anon_sym_implicit] = ACTIONS(4515), + [anon_sym_explicit] = ACTIONS(4515), + [anon_sym_scoped] = ACTIONS(4515), + [anon_sym_var] = ACTIONS(4515), + [sym_predefined_type] = ACTIONS(4515), + [anon_sym_yield] = ACTIONS(4515), + [anon_sym_when] = ACTIONS(4515), + [anon_sym_from] = ACTIONS(4515), + [anon_sym_into] = ACTIONS(4515), + [anon_sym_join] = ACTIONS(4515), + [anon_sym_on] = ACTIONS(4515), + [anon_sym_equals] = ACTIONS(4515), + [anon_sym_let] = ACTIONS(4515), + [anon_sym_orderby] = ACTIONS(4515), + [anon_sym_ascending] = ACTIONS(4515), + [anon_sym_descending] = ACTIONS(4515), + [anon_sym_group] = ACTIONS(4515), + [anon_sym_by] = ACTIONS(4515), + [anon_sym_select] = ACTIONS(4515), + [aux_sym_preproc_if_token1] = ACTIONS(4517), + [aux_sym_preproc_if_token3] = ACTIONS(4517), + [aux_sym_preproc_else_token1] = ACTIONS(4517), + [aux_sym_preproc_elif_token1] = ACTIONS(4517), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -450613,69 +450227,69 @@ 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(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), + [anon_sym_SEMI] = ACTIONS(4128), + [anon_sym_EQ] = ACTIONS(4130), + [anon_sym_LBRACK] = ACTIONS(4128), + [anon_sym_COLON] = ACTIONS(4128), + [anon_sym_COMMA] = ACTIONS(4128), + [anon_sym_RBRACK] = ACTIONS(4128), + [anon_sym_LPAREN] = ACTIONS(4128), + [anon_sym_RPAREN] = ACTIONS(4128), + [anon_sym_RBRACE] = ACTIONS(4128), + [anon_sym_LT] = ACTIONS(4130), + [anon_sym_GT] = ACTIONS(4130), + [anon_sym_in] = ACTIONS(4128), + [anon_sym_QMARK] = ACTIONS(4130), + [anon_sym_BANG] = ACTIONS(4130), + [anon_sym_PLUS_PLUS] = ACTIONS(4128), + [anon_sym_DASH_DASH] = ACTIONS(4128), + [anon_sym_PLUS] = ACTIONS(4130), + [anon_sym_DASH] = ACTIONS(4130), + [anon_sym_STAR] = ACTIONS(4130), + [anon_sym_SLASH] = ACTIONS(4130), + [anon_sym_PERCENT] = ACTIONS(4130), + [anon_sym_CARET] = ACTIONS(4130), + [anon_sym_PIPE] = ACTIONS(4130), + [anon_sym_AMP] = ACTIONS(4130), + [anon_sym_LT_LT] = ACTIONS(4130), + [anon_sym_GT_GT] = ACTIONS(4130), + [anon_sym_GT_GT_GT] = ACTIONS(4130), + [anon_sym_EQ_EQ] = ACTIONS(4128), + [anon_sym_BANG_EQ] = ACTIONS(4128), + [anon_sym_GT_EQ] = ACTIONS(4128), + [anon_sym_LT_EQ] = ACTIONS(4128), + [anon_sym_DOT] = ACTIONS(4130), + [anon_sym_EQ_GT] = ACTIONS(4128), + [anon_sym_switch] = ACTIONS(4128), + [anon_sym_when] = ACTIONS(4128), + [anon_sym_DOT_DOT] = ACTIONS(4128), + [anon_sym_and] = ACTIONS(4128), + [anon_sym_or] = ACTIONS(4128), + [anon_sym_PLUS_EQ] = ACTIONS(4128), + [anon_sym_DASH_EQ] = ACTIONS(4128), + [anon_sym_STAR_EQ] = ACTIONS(4128), + [anon_sym_SLASH_EQ] = ACTIONS(4128), + [anon_sym_PERCENT_EQ] = ACTIONS(4128), + [anon_sym_AMP_EQ] = ACTIONS(4128), + [anon_sym_CARET_EQ] = ACTIONS(4128), + [anon_sym_PIPE_EQ] = ACTIONS(4128), + [anon_sym_LT_LT_EQ] = ACTIONS(4128), + [anon_sym_GT_GT_EQ] = ACTIONS(4128), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(4128), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(4128), + [anon_sym_AMP_AMP] = ACTIONS(4128), + [anon_sym_PIPE_PIPE] = ACTIONS(4128), + [anon_sym_QMARK_QMARK] = ACTIONS(4130), + [anon_sym_on] = ACTIONS(4128), + [anon_sym_equals] = ACTIONS(4128), + [anon_sym_by] = ACTIONS(4128), + [anon_sym_as] = ACTIONS(4128), + [anon_sym_is] = ACTIONS(4128), + [anon_sym_DASH_GT] = ACTIONS(4128), + [anon_sym_with] = ACTIONS(4128), + [aux_sym_preproc_if_token3] = ACTIONS(4128), + [aux_sym_preproc_else_token1] = ACTIONS(4128), + [aux_sym_preproc_elif_token1] = ACTIONS(4128), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -450688,6 +450302,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2760] = { + [sym__variable_designation] = STATE(3256), + [sym_parenthesized_variable_designation] = STATE(3344), + [sym_identifier] = STATE(3346), + [sym__reserved_identifier] = STATE(3199), [sym_preproc_region] = STATE(2760), [sym_preproc_endregion] = STATE(2760), [sym_preproc_line] = STATE(2760), @@ -450697,69 +450315,65 @@ 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(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), + [sym__identifier_token] = ACTIONS(3855), + [anon_sym_alias] = ACTIONS(3857), + [anon_sym_global] = ACTIONS(3857), + [anon_sym_LBRACK] = ACTIONS(3885), + [anon_sym_LPAREN] = ACTIONS(3885), + [anon_sym_file] = ACTIONS(3857), + [anon_sym_LT] = ACTIONS(3887), + [anon_sym_GT] = ACTIONS(3887), + [anon_sym_where] = ACTIONS(3857), + [anon_sym_QMARK] = ACTIONS(3887), + [anon_sym_notnull] = ACTIONS(3857), + [anon_sym_unmanaged] = ACTIONS(3857), + [anon_sym_BANG] = ACTIONS(3887), + [anon_sym_PLUS_PLUS] = ACTIONS(3885), + [anon_sym_DASH_DASH] = ACTIONS(3885), + [anon_sym_PLUS] = ACTIONS(3887), + [anon_sym_DASH] = ACTIONS(3887), + [anon_sym_STAR] = ACTIONS(3885), + [anon_sym_SLASH] = ACTIONS(3887), + [anon_sym_PERCENT] = ACTIONS(3885), + [anon_sym_CARET] = ACTIONS(3885), + [anon_sym_PIPE] = ACTIONS(3887), + [anon_sym_AMP] = ACTIONS(3887), + [anon_sym_LT_LT] = ACTIONS(3885), + [anon_sym_GT_GT] = ACTIONS(3887), + [anon_sym_GT_GT_GT] = ACTIONS(3885), + [anon_sym_EQ_EQ] = ACTIONS(3885), + [anon_sym_BANG_EQ] = ACTIONS(3885), + [anon_sym_GT_EQ] = ACTIONS(3885), + [anon_sym_LT_EQ] = ACTIONS(3885), + [anon_sym_DOT] = ACTIONS(3887), + [anon_sym_scoped] = ACTIONS(3857), + [anon_sym_var] = ACTIONS(3857), + [anon_sym_yield] = ACTIONS(3857), + [anon_sym_switch] = ACTIONS(3887), + [anon_sym_when] = ACTIONS(3857), + [sym_discard] = ACTIONS(3865), + [anon_sym_DOT_DOT] = ACTIONS(3885), + [anon_sym_and] = ACTIONS(3887), + [anon_sym_or] = ACTIONS(3887), + [anon_sym_AMP_AMP] = ACTIONS(3885), + [anon_sym_PIPE_PIPE] = ACTIONS(3885), + [anon_sym_QMARK_QMARK] = ACTIONS(3885), + [anon_sym_from] = ACTIONS(3857), + [anon_sym_into] = ACTIONS(3887), + [anon_sym_join] = ACTIONS(3857), + [anon_sym_on] = ACTIONS(3857), + [anon_sym_equals] = ACTIONS(3857), + [anon_sym_let] = ACTIONS(3857), + [anon_sym_orderby] = ACTIONS(3857), + [anon_sym_ascending] = ACTIONS(3857), + [anon_sym_descending] = ACTIONS(3857), + [anon_sym_group] = ACTIONS(3857), + [anon_sym_by] = ACTIONS(3887), + [anon_sym_select] = ACTIONS(3857), + [anon_sym_as] = ACTIONS(3887), + [anon_sym_is] = ACTIONS(3887), + [anon_sym_DASH_GT] = ACTIONS(3885), + [anon_sym_with] = ACTIONS(3887), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -450772,6 +450386,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2761] = { + [sym__variable_designation] = STATE(3265), + [sym_parenthesized_variable_designation] = STATE(3344), + [sym_identifier] = STATE(3346), + [sym__reserved_identifier] = STATE(3199), [sym_preproc_region] = STATE(2761), [sym_preproc_endregion] = STATE(2761), [sym_preproc_line] = STATE(2761), @@ -450781,69 +450399,65 @@ 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(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), + [sym__identifier_token] = ACTIONS(3855), + [anon_sym_alias] = ACTIONS(3857), + [anon_sym_global] = ACTIONS(3857), + [anon_sym_LBRACK] = ACTIONS(3939), + [anon_sym_LPAREN] = ACTIONS(3939), + [anon_sym_file] = ACTIONS(3857), + [anon_sym_LT] = ACTIONS(3941), + [anon_sym_GT] = ACTIONS(3941), + [anon_sym_where] = ACTIONS(3857), + [anon_sym_QMARK] = ACTIONS(3941), + [anon_sym_notnull] = ACTIONS(3857), + [anon_sym_unmanaged] = ACTIONS(3857), + [anon_sym_BANG] = ACTIONS(3941), + [anon_sym_PLUS_PLUS] = ACTIONS(3939), + [anon_sym_DASH_DASH] = ACTIONS(3939), + [anon_sym_PLUS] = ACTIONS(3941), + [anon_sym_DASH] = ACTIONS(3941), + [anon_sym_STAR] = ACTIONS(3939), + [anon_sym_SLASH] = ACTIONS(3941), + [anon_sym_PERCENT] = ACTIONS(3939), + [anon_sym_CARET] = ACTIONS(3939), + [anon_sym_PIPE] = ACTIONS(3941), + [anon_sym_AMP] = ACTIONS(3941), + [anon_sym_LT_LT] = ACTIONS(3939), + [anon_sym_GT_GT] = ACTIONS(3941), + [anon_sym_GT_GT_GT] = ACTIONS(3939), + [anon_sym_EQ_EQ] = ACTIONS(3939), + [anon_sym_BANG_EQ] = ACTIONS(3939), + [anon_sym_GT_EQ] = ACTIONS(3939), + [anon_sym_LT_EQ] = ACTIONS(3939), + [anon_sym_DOT] = ACTIONS(3941), + [anon_sym_scoped] = ACTIONS(3857), + [anon_sym_var] = ACTIONS(3857), + [anon_sym_yield] = ACTIONS(3857), + [anon_sym_switch] = ACTIONS(3941), + [anon_sym_when] = ACTIONS(3857), + [sym_discard] = ACTIONS(3865), + [anon_sym_DOT_DOT] = ACTIONS(3939), + [anon_sym_and] = ACTIONS(3941), + [anon_sym_or] = ACTIONS(3941), + [anon_sym_AMP_AMP] = ACTIONS(3939), + [anon_sym_PIPE_PIPE] = ACTIONS(3939), + [anon_sym_QMARK_QMARK] = ACTIONS(3939), + [anon_sym_from] = ACTIONS(3857), + [anon_sym_into] = ACTIONS(3941), + [anon_sym_join] = ACTIONS(3857), + [anon_sym_on] = ACTIONS(3857), + [anon_sym_equals] = ACTIONS(3857), + [anon_sym_let] = ACTIONS(3857), + [anon_sym_orderby] = ACTIONS(3857), + [anon_sym_ascending] = ACTIONS(3857), + [anon_sym_descending] = ACTIONS(3857), + [anon_sym_group] = ACTIONS(3857), + [anon_sym_by] = ACTIONS(3941), + [anon_sym_select] = ACTIONS(3857), + [anon_sym_as] = ACTIONS(3941), + [anon_sym_is] = ACTIONS(3941), + [anon_sym_DASH_GT] = ACTIONS(3939), + [anon_sym_with] = ACTIONS(3941), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -450865,69 +450479,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(4134), - [anon_sym_EQ] = ACTIONS(4136), - [anon_sym_LBRACK] = ACTIONS(4134), - [anon_sym_COLON] = ACTIONS(4134), - [anon_sym_COMMA] = ACTIONS(4134), - [anon_sym_RBRACK] = ACTIONS(4134), - [anon_sym_LPAREN] = ACTIONS(4134), - [anon_sym_RPAREN] = ACTIONS(4134), - [anon_sym_RBRACE] = ACTIONS(4134), - [anon_sym_LT] = ACTIONS(4136), - [anon_sym_GT] = ACTIONS(4136), - [anon_sym_in] = ACTIONS(4134), - [anon_sym_QMARK] = ACTIONS(4136), - [anon_sym_BANG] = ACTIONS(4136), - [anon_sym_PLUS_PLUS] = ACTIONS(4134), - [anon_sym_DASH_DASH] = ACTIONS(4134), - [anon_sym_PLUS] = ACTIONS(4136), - [anon_sym_DASH] = ACTIONS(4136), - [anon_sym_STAR] = ACTIONS(4136), - [anon_sym_SLASH] = ACTIONS(4136), - [anon_sym_PERCENT] = ACTIONS(4136), - [anon_sym_CARET] = ACTIONS(4136), - [anon_sym_PIPE] = ACTIONS(4136), - [anon_sym_AMP] = ACTIONS(4136), - [anon_sym_LT_LT] = ACTIONS(4136), - [anon_sym_GT_GT] = ACTIONS(4136), - [anon_sym_GT_GT_GT] = ACTIONS(4136), - [anon_sym_EQ_EQ] = ACTIONS(4134), - [anon_sym_BANG_EQ] = ACTIONS(4134), - [anon_sym_GT_EQ] = ACTIONS(4134), - [anon_sym_LT_EQ] = ACTIONS(4134), - [anon_sym_DOT] = ACTIONS(4136), - [anon_sym_EQ_GT] = ACTIONS(4134), - [anon_sym_switch] = ACTIONS(4134), - [anon_sym_when] = ACTIONS(4134), - [anon_sym_DOT_DOT] = ACTIONS(4134), - [anon_sym_and] = ACTIONS(4134), - [anon_sym_or] = ACTIONS(4134), - [anon_sym_PLUS_EQ] = ACTIONS(4134), - [anon_sym_DASH_EQ] = ACTIONS(4134), - [anon_sym_STAR_EQ] = ACTIONS(4134), - [anon_sym_SLASH_EQ] = ACTIONS(4134), - [anon_sym_PERCENT_EQ] = ACTIONS(4134), - [anon_sym_AMP_EQ] = ACTIONS(4134), - [anon_sym_CARET_EQ] = ACTIONS(4134), - [anon_sym_PIPE_EQ] = ACTIONS(4134), - [anon_sym_LT_LT_EQ] = ACTIONS(4134), - [anon_sym_GT_GT_EQ] = ACTIONS(4134), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(4134), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(4134), - [anon_sym_AMP_AMP] = ACTIONS(4134), - [anon_sym_PIPE_PIPE] = ACTIONS(4134), - [anon_sym_QMARK_QMARK] = ACTIONS(4136), - [anon_sym_on] = ACTIONS(4134), - [anon_sym_equals] = ACTIONS(4134), - [anon_sym_by] = ACTIONS(4134), - [anon_sym_as] = ACTIONS(4134), - [anon_sym_is] = ACTIONS(4134), - [anon_sym_DASH_GT] = ACTIONS(4134), - [anon_sym_with] = ACTIONS(4134), - [aux_sym_preproc_if_token3] = ACTIONS(4134), - [aux_sym_preproc_else_token1] = ACTIONS(4134), - [aux_sym_preproc_elif_token1] = ACTIONS(4134), + [anon_sym_SEMI] = ACTIONS(4148), + [anon_sym_EQ] = ACTIONS(4150), + [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_RBRACE] = ACTIONS(4148), + [anon_sym_LT] = ACTIONS(4150), + [anon_sym_GT] = ACTIONS(4150), + [anon_sym_in] = ACTIONS(4148), + [anon_sym_QMARK] = ACTIONS(4150), + [anon_sym_BANG] = ACTIONS(4150), + [anon_sym_PLUS_PLUS] = ACTIONS(4148), + [anon_sym_DASH_DASH] = ACTIONS(4148), + [anon_sym_PLUS] = ACTIONS(4150), + [anon_sym_DASH] = ACTIONS(4150), + [anon_sym_STAR] = ACTIONS(4150), + [anon_sym_SLASH] = ACTIONS(4150), + [anon_sym_PERCENT] = ACTIONS(4150), + [anon_sym_CARET] = ACTIONS(4150), + [anon_sym_PIPE] = ACTIONS(4150), + [anon_sym_AMP] = ACTIONS(4150), + [anon_sym_LT_LT] = ACTIONS(4150), + [anon_sym_GT_GT] = ACTIONS(4150), + [anon_sym_GT_GT_GT] = ACTIONS(4150), + [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(4150), + [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_PLUS_EQ] = ACTIONS(4148), + [anon_sym_DASH_EQ] = ACTIONS(4148), + [anon_sym_STAR_EQ] = ACTIONS(4148), + [anon_sym_SLASH_EQ] = ACTIONS(4148), + [anon_sym_PERCENT_EQ] = ACTIONS(4148), + [anon_sym_AMP_EQ] = ACTIONS(4148), + [anon_sym_CARET_EQ] = ACTIONS(4148), + [anon_sym_PIPE_EQ] = ACTIONS(4148), + [anon_sym_LT_LT_EQ] = ACTIONS(4148), + [anon_sym_GT_GT_EQ] = ACTIONS(4148), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(4148), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(4148), + [anon_sym_AMP_AMP] = ACTIONS(4148), + [anon_sym_PIPE_PIPE] = ACTIONS(4148), + [anon_sym_QMARK_QMARK] = ACTIONS(4150), + [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), @@ -450940,6 +450554,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2763] = { + [sym__variable_designation] = STATE(3314), + [sym_parenthesized_variable_designation] = STATE(3344), + [sym_identifier] = STATE(3346), + [sym__reserved_identifier] = STATE(3199), [sym_preproc_region] = STATE(2763), [sym_preproc_endregion] = STATE(2763), [sym_preproc_line] = STATE(2763), @@ -450949,79 +450567,75 @@ 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(4016), - [anon_sym_alias] = ACTIONS(4016), - [anon_sym_global] = ACTIONS(4016), - [anon_sym_LBRACK] = ACTIONS(4066), - [anon_sym_COLON] = ACTIONS(4018), - [anon_sym_COMMA] = ACTIONS(4018), - [anon_sym_LPAREN] = ACTIONS(4018), - [anon_sym_LBRACE] = ACTIONS(4018), - [anon_sym_file] = ACTIONS(4016), - [anon_sym_LT] = ACTIONS(4016), - [anon_sym_GT] = ACTIONS(4016), - [anon_sym_where] = ACTIONS(4016), - [anon_sym_QMARK] = ACTIONS(4414), - [anon_sym_notnull] = ACTIONS(4016), - [anon_sym_unmanaged] = ACTIONS(4016), - [anon_sym_BANG] = ACTIONS(4016), - [anon_sym_PLUS_PLUS] = ACTIONS(4018), - [anon_sym_DASH_DASH] = ACTIONS(4018), - [anon_sym_PLUS] = ACTIONS(4016), - [anon_sym_DASH] = ACTIONS(4016), - [anon_sym_STAR] = ACTIONS(4072), - [anon_sym_SLASH] = ACTIONS(4016), - [anon_sym_PERCENT] = ACTIONS(4018), - [anon_sym_CARET] = ACTIONS(4018), - [anon_sym_PIPE] = ACTIONS(4016), - [anon_sym_AMP] = ACTIONS(4016), - [anon_sym_LT_LT] = ACTIONS(4018), - [anon_sym_GT_GT] = ACTIONS(4016), - [anon_sym_GT_GT_GT] = ACTIONS(4018), - [anon_sym_EQ_EQ] = ACTIONS(4018), - [anon_sym_BANG_EQ] = ACTIONS(4018), - [anon_sym_GT_EQ] = ACTIONS(4018), - [anon_sym_LT_EQ] = ACTIONS(4018), - [anon_sym_DOT] = ACTIONS(4505), - [anon_sym_scoped] = ACTIONS(4016), - [anon_sym_var] = ACTIONS(4016), - [anon_sym_yield] = ACTIONS(4016), - [anon_sym_switch] = ACTIONS(4016), - [anon_sym_when] = ACTIONS(4016), - [sym_discard] = ACTIONS(4016), - [anon_sym_DOT_DOT] = ACTIONS(4018), - [anon_sym_and] = ACTIONS(4016), - [anon_sym_or] = ACTIONS(4016), - [anon_sym_AMP_AMP] = ACTIONS(4018), - [anon_sym_PIPE_PIPE] = ACTIONS(4018), - [anon_sym_QMARK_QMARK] = ACTIONS(4018), - [anon_sym_from] = ACTIONS(4016), - [anon_sym_into] = ACTIONS(4016), - [anon_sym_join] = ACTIONS(4016), - [anon_sym_on] = ACTIONS(4016), - [anon_sym_equals] = ACTIONS(4016), - [anon_sym_let] = ACTIONS(4016), - [anon_sym_orderby] = ACTIONS(4016), - [anon_sym_ascending] = ACTIONS(4016), - [anon_sym_descending] = ACTIONS(4016), - [anon_sym_group] = ACTIONS(4016), - [anon_sym_by] = ACTIONS(4016), - [anon_sym_select] = ACTIONS(4016), - [anon_sym_as] = ACTIONS(4016), - [anon_sym_is] = ACTIONS(4016), - [anon_sym_DASH_GT] = ACTIONS(4443), - [anon_sym_with] = ACTIONS(4016), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_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(4018), + [sym__identifier_token] = ACTIONS(3855), + [anon_sym_alias] = ACTIONS(3857), + [anon_sym_global] = ACTIONS(3857), + [anon_sym_LBRACK] = ACTIONS(3947), + [anon_sym_LPAREN] = ACTIONS(3947), + [anon_sym_file] = ACTIONS(3857), + [anon_sym_LT] = ACTIONS(3949), + [anon_sym_GT] = ACTIONS(3949), + [anon_sym_where] = ACTIONS(3857), + [anon_sym_QMARK] = ACTIONS(3949), + [anon_sym_notnull] = ACTIONS(3857), + [anon_sym_unmanaged] = ACTIONS(3857), + [anon_sym_BANG] = ACTIONS(3949), + [anon_sym_PLUS_PLUS] = ACTIONS(3947), + [anon_sym_DASH_DASH] = ACTIONS(3947), + [anon_sym_PLUS] = ACTIONS(3949), + [anon_sym_DASH] = ACTIONS(3949), + [anon_sym_STAR] = ACTIONS(3947), + [anon_sym_SLASH] = ACTIONS(3949), + [anon_sym_PERCENT] = ACTIONS(3947), + [anon_sym_CARET] = ACTIONS(3947), + [anon_sym_PIPE] = ACTIONS(3949), + [anon_sym_AMP] = ACTIONS(3949), + [anon_sym_LT_LT] = ACTIONS(3947), + [anon_sym_GT_GT] = ACTIONS(3949), + [anon_sym_GT_GT_GT] = ACTIONS(3947), + [anon_sym_EQ_EQ] = ACTIONS(3947), + [anon_sym_BANG_EQ] = ACTIONS(3947), + [anon_sym_GT_EQ] = ACTIONS(3947), + [anon_sym_LT_EQ] = ACTIONS(3947), + [anon_sym_DOT] = ACTIONS(3949), + [anon_sym_scoped] = ACTIONS(3857), + [anon_sym_var] = ACTIONS(3857), + [anon_sym_yield] = ACTIONS(3857), + [anon_sym_switch] = ACTIONS(3949), + [anon_sym_when] = ACTIONS(3857), + [sym_discard] = ACTIONS(3865), + [anon_sym_DOT_DOT] = ACTIONS(3947), + [anon_sym_and] = ACTIONS(3949), + [anon_sym_or] = ACTIONS(3949), + [anon_sym_AMP_AMP] = ACTIONS(3947), + [anon_sym_PIPE_PIPE] = ACTIONS(3947), + [anon_sym_QMARK_QMARK] = ACTIONS(3947), + [anon_sym_from] = ACTIONS(3857), + [anon_sym_into] = ACTIONS(3949), + [anon_sym_join] = ACTIONS(3857), + [anon_sym_on] = ACTIONS(3857), + [anon_sym_equals] = ACTIONS(3857), + [anon_sym_let] = ACTIONS(3857), + [anon_sym_orderby] = ACTIONS(3857), + [anon_sym_ascending] = ACTIONS(3857), + [anon_sym_descending] = ACTIONS(3857), + [anon_sym_group] = ACTIONS(3857), + [anon_sym_by] = ACTIONS(3949), + [anon_sym_select] = ACTIONS(3857), + [anon_sym_as] = ACTIONS(3949), + [anon_sym_is] = ACTIONS(3949), + [anon_sym_DASH_GT] = ACTIONS(3947), + [anon_sym_with] = ACTIONS(3949), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), }, [2764] = { [sym_preproc_region] = STATE(2764), @@ -451033,79 +450647,79 @@ 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(3699), - [anon_sym_alias] = ACTIONS(3699), - [anon_sym_global] = ACTIONS(3699), - [anon_sym_LBRACK] = ACTIONS(3710), - [anon_sym_COLON] = ACTIONS(3710), - [anon_sym_COMMA] = ACTIONS(3710), - [anon_sym_LPAREN] = ACTIONS(3710), - [anon_sym_LBRACE] = ACTIONS(3710), - [anon_sym_file] = ACTIONS(3699), - [anon_sym_LT] = ACTIONS(3699), - [anon_sym_GT] = ACTIONS(3699), - [anon_sym_where] = ACTIONS(3699), - [anon_sym_QMARK] = ACTIONS(3699), - [anon_sym_notnull] = ACTIONS(3699), - [anon_sym_unmanaged] = ACTIONS(3699), - [anon_sym_BANG] = ACTIONS(3699), - [anon_sym_PLUS_PLUS] = ACTIONS(3710), - [anon_sym_DASH_DASH] = ACTIONS(3710), - [anon_sym_PLUS] = ACTIONS(3699), - [anon_sym_DASH] = ACTIONS(3699), - [anon_sym_STAR] = ACTIONS(3710), - [anon_sym_SLASH] = ACTIONS(3699), - [anon_sym_PERCENT] = ACTIONS(3710), - [anon_sym_CARET] = ACTIONS(3710), - [anon_sym_PIPE] = ACTIONS(3699), - [anon_sym_AMP] = ACTIONS(3699), - [anon_sym_LT_LT] = ACTIONS(3710), - [anon_sym_GT_GT] = ACTIONS(3699), - [anon_sym_GT_GT_GT] = ACTIONS(3710), - [anon_sym_EQ_EQ] = ACTIONS(3710), - [anon_sym_BANG_EQ] = ACTIONS(3710), - [anon_sym_GT_EQ] = ACTIONS(3710), - [anon_sym_LT_EQ] = ACTIONS(3710), - [anon_sym_DOT] = ACTIONS(3699), - [anon_sym_scoped] = ACTIONS(3699), - [anon_sym_var] = ACTIONS(3699), - [anon_sym_yield] = ACTIONS(3699), - [anon_sym_switch] = ACTIONS(3699), - [anon_sym_when] = ACTIONS(3699), - [sym_discard] = ACTIONS(3699), - [anon_sym_DOT_DOT] = ACTIONS(3710), - [anon_sym_and] = ACTIONS(3699), - [anon_sym_or] = ACTIONS(3699), - [anon_sym_AMP_AMP] = ACTIONS(3710), - [anon_sym_PIPE_PIPE] = ACTIONS(3710), - [anon_sym_QMARK_QMARK] = ACTIONS(3710), - [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_ascending] = ACTIONS(3699), - [anon_sym_descending] = 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(3710), - [anon_sym_with] = ACTIONS(3699), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_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(3710), + [sym__identifier_token] = ACTIONS(4100), + [anon_sym_alias] = ACTIONS(4100), + [anon_sym_global] = ACTIONS(4100), + [anon_sym_LBRACK] = ACTIONS(4102), + [anon_sym_COLON] = ACTIONS(4102), + [anon_sym_COMMA] = ACTIONS(4102), + [anon_sym_LPAREN] = ACTIONS(4102), + [anon_sym_LBRACE] = ACTIONS(4102), + [anon_sym_file] = ACTIONS(4100), + [anon_sym_LT] = ACTIONS(4100), + [anon_sym_GT] = ACTIONS(4100), + [anon_sym_where] = ACTIONS(4100), + [anon_sym_QMARK] = ACTIONS(4100), + [anon_sym_notnull] = ACTIONS(4100), + [anon_sym_unmanaged] = ACTIONS(4100), + [anon_sym_BANG] = ACTIONS(4100), + [anon_sym_PLUS_PLUS] = ACTIONS(4102), + [anon_sym_DASH_DASH] = ACTIONS(4102), + [anon_sym_PLUS] = ACTIONS(4100), + [anon_sym_DASH] = ACTIONS(4100), + [anon_sym_STAR] = ACTIONS(4102), + [anon_sym_SLASH] = ACTIONS(4100), + [anon_sym_PERCENT] = ACTIONS(4102), + [anon_sym_CARET] = ACTIONS(4102), + [anon_sym_PIPE] = ACTIONS(4100), + [anon_sym_AMP] = ACTIONS(4100), + [anon_sym_LT_LT] = ACTIONS(4102), + [anon_sym_GT_GT] = ACTIONS(4100), + [anon_sym_GT_GT_GT] = ACTIONS(4102), + [anon_sym_EQ_EQ] = ACTIONS(4102), + [anon_sym_BANG_EQ] = ACTIONS(4102), + [anon_sym_GT_EQ] = ACTIONS(4102), + [anon_sym_LT_EQ] = ACTIONS(4102), + [anon_sym_DOT] = ACTIONS(4100), + [anon_sym_scoped] = ACTIONS(4100), + [anon_sym_var] = ACTIONS(4100), + [anon_sym_yield] = ACTIONS(4100), + [anon_sym_switch] = ACTIONS(4100), + [anon_sym_when] = ACTIONS(4100), + [sym_discard] = ACTIONS(4100), + [anon_sym_DOT_DOT] = ACTIONS(4102), + [anon_sym_and] = ACTIONS(4100), + [anon_sym_or] = ACTIONS(4100), + [anon_sym_AMP_AMP] = ACTIONS(4102), + [anon_sym_PIPE_PIPE] = ACTIONS(4102), + [anon_sym_QMARK_QMARK] = ACTIONS(4102), + [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_ascending] = ACTIONS(4100), + [anon_sym_descending] = 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(4102), + [anon_sym_with] = ACTIONS(4100), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_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(4102), }, [2765] = { [sym_preproc_region] = STATE(2765), @@ -451117,69 +450731,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(4507), - [anon_sym_extern] = ACTIONS(4507), - [anon_sym_alias] = ACTIONS(4507), - [anon_sym_global] = ACTIONS(4507), - [anon_sym_using] = ACTIONS(4507), - [anon_sym_unsafe] = ACTIONS(4507), - [anon_sym_static] = ACTIONS(4507), - [anon_sym_LBRACK] = ACTIONS(4509), - [anon_sym_LPAREN] = ACTIONS(4509), - [anon_sym_event] = ACTIONS(4507), - [anon_sym_namespace] = ACTIONS(4507), - [anon_sym_class] = ACTIONS(4507), - [anon_sym_ref] = ACTIONS(4507), - [anon_sym_struct] = ACTIONS(4507), - [anon_sym_enum] = ACTIONS(4507), - [anon_sym_RBRACE] = ACTIONS(4509), - [anon_sym_interface] = ACTIONS(4507), - [anon_sym_delegate] = ACTIONS(4507), - [anon_sym_record] = ACTIONS(4507), - [anon_sym_abstract] = ACTIONS(4507), - [anon_sym_async] = ACTIONS(4507), - [anon_sym_const] = ACTIONS(4507), - [anon_sym_file] = ACTIONS(4507), - [anon_sym_fixed] = ACTIONS(4507), - [anon_sym_internal] = ACTIONS(4507), - [anon_sym_new] = ACTIONS(4507), - [anon_sym_override] = ACTIONS(4507), - [anon_sym_partial] = ACTIONS(4507), - [anon_sym_private] = ACTIONS(4507), - [anon_sym_protected] = ACTIONS(4507), - [anon_sym_public] = ACTIONS(4507), - [anon_sym_readonly] = ACTIONS(4507), - [anon_sym_required] = ACTIONS(4507), - [anon_sym_sealed] = ACTIONS(4507), - [anon_sym_virtual] = ACTIONS(4507), - [anon_sym_volatile] = ACTIONS(4507), - [anon_sym_where] = ACTIONS(4507), - [anon_sym_notnull] = ACTIONS(4507), - [anon_sym_unmanaged] = ACTIONS(4507), - [anon_sym_TILDE] = ACTIONS(4509), - [anon_sym_implicit] = ACTIONS(4507), - [anon_sym_explicit] = ACTIONS(4507), - [anon_sym_scoped] = ACTIONS(4507), - [anon_sym_var] = ACTIONS(4507), - [sym_predefined_type] = ACTIONS(4507), - [anon_sym_yield] = ACTIONS(4507), - [anon_sym_when] = ACTIONS(4507), - [anon_sym_from] = ACTIONS(4507), - [anon_sym_into] = ACTIONS(4507), - [anon_sym_join] = ACTIONS(4507), - [anon_sym_on] = ACTIONS(4507), - [anon_sym_equals] = ACTIONS(4507), - [anon_sym_let] = ACTIONS(4507), - [anon_sym_orderby] = ACTIONS(4507), - [anon_sym_ascending] = ACTIONS(4507), - [anon_sym_descending] = ACTIONS(4507), - [anon_sym_group] = ACTIONS(4507), - [anon_sym_by] = ACTIONS(4507), - [anon_sym_select] = ACTIONS(4507), - [aux_sym_preproc_if_token1] = ACTIONS(4509), - [aux_sym_preproc_if_token3] = ACTIONS(4509), - [aux_sym_preproc_else_token1] = ACTIONS(4509), - [aux_sym_preproc_elif_token1] = ACTIONS(4509), + [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), @@ -451201,69 +450815,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), - [anon_sym_SEMI] = ACTIONS(3697), - [anon_sym_EQ] = ACTIONS(3689), - [anon_sym_LBRACK] = ACTIONS(3697), - [anon_sym_COLON] = ACTIONS(3697), - [anon_sym_COMMA] = ACTIONS(3697), - [anon_sym_RBRACK] = ACTIONS(3697), - [anon_sym_LPAREN] = ACTIONS(3697), - [anon_sym_RPAREN] = ACTIONS(3697), - [anon_sym_RBRACE] = ACTIONS(3697), - [anon_sym_LT] = ACTIONS(3689), - [anon_sym_GT] = ACTIONS(3689), - [anon_sym_in] = ACTIONS(3697), - [anon_sym_QMARK] = ACTIONS(3689), - [anon_sym_BANG] = ACTIONS(3689), - [anon_sym_PLUS_PLUS] = ACTIONS(3697), - [anon_sym_DASH_DASH] = ACTIONS(3697), - [anon_sym_PLUS] = ACTIONS(3689), - [anon_sym_DASH] = ACTIONS(3689), - [anon_sym_STAR] = ACTIONS(3689), - [anon_sym_SLASH] = ACTIONS(3689), - [anon_sym_PERCENT] = ACTIONS(3689), - [anon_sym_CARET] = ACTIONS(3689), - [anon_sym_PIPE] = ACTIONS(3689), - [anon_sym_AMP] = ACTIONS(3689), - [anon_sym_LT_LT] = ACTIONS(3689), - [anon_sym_GT_GT] = ACTIONS(3689), - [anon_sym_GT_GT_GT] = ACTIONS(3689), - [anon_sym_EQ_EQ] = ACTIONS(3697), - [anon_sym_BANG_EQ] = ACTIONS(3697), - [anon_sym_GT_EQ] = ACTIONS(3697), - [anon_sym_LT_EQ] = ACTIONS(3697), - [anon_sym_DOT] = ACTIONS(3689), - [anon_sym_EQ_GT] = ACTIONS(3697), - [anon_sym_switch] = ACTIONS(3697), - [anon_sym_when] = ACTIONS(3697), - [anon_sym_DOT_DOT] = ACTIONS(3697), - [anon_sym_and] = ACTIONS(3697), - [anon_sym_or] = ACTIONS(3697), - [anon_sym_PLUS_EQ] = ACTIONS(3697), - [anon_sym_DASH_EQ] = ACTIONS(3697), - [anon_sym_STAR_EQ] = ACTIONS(3697), - [anon_sym_SLASH_EQ] = ACTIONS(3697), - [anon_sym_PERCENT_EQ] = ACTIONS(3697), - [anon_sym_AMP_EQ] = ACTIONS(3697), - [anon_sym_CARET_EQ] = ACTIONS(3697), - [anon_sym_PIPE_EQ] = ACTIONS(3697), - [anon_sym_LT_LT_EQ] = ACTIONS(3697), - [anon_sym_GT_GT_EQ] = ACTIONS(3697), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3697), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3697), - [anon_sym_AMP_AMP] = ACTIONS(3697), - [anon_sym_PIPE_PIPE] = ACTIONS(3697), - [anon_sym_QMARK_QMARK] = ACTIONS(3689), - [anon_sym_on] = ACTIONS(3697), - [anon_sym_equals] = ACTIONS(3697), - [anon_sym_by] = ACTIONS(3697), - [anon_sym_as] = ACTIONS(3697), - [anon_sym_is] = ACTIONS(3697), - [anon_sym_DASH_GT] = ACTIONS(3697), - [anon_sym_with] = ACTIONS(3697), - [aux_sym_preproc_if_token3] = ACTIONS(3697), - [aux_sym_preproc_else_token1] = ACTIONS(3697), - [aux_sym_preproc_elif_token1] = ACTIONS(3697), + [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), @@ -451285,79 +450899,79 @@ 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(4016), - [anon_sym_alias] = ACTIONS(4016), - [anon_sym_global] = ACTIONS(4016), - [anon_sym_LBRACK] = ACTIONS(4066), - [anon_sym_COLON] = ACTIONS(4018), - [anon_sym_COMMA] = ACTIONS(4018), - [anon_sym_LPAREN] = ACTIONS(4018), - [anon_sym_LBRACE] = ACTIONS(4018), - [anon_sym_file] = ACTIONS(4016), - [anon_sym_LT] = ACTIONS(4016), - [anon_sym_GT] = ACTIONS(4016), - [anon_sym_where] = ACTIONS(4016), - [anon_sym_QMARK] = ACTIONS(4414), - [anon_sym_notnull] = ACTIONS(4016), - [anon_sym_unmanaged] = ACTIONS(4016), - [anon_sym_BANG] = ACTIONS(4016), - [anon_sym_PLUS_PLUS] = ACTIONS(4018), - [anon_sym_DASH_DASH] = ACTIONS(4018), - [anon_sym_PLUS] = ACTIONS(4016), - [anon_sym_DASH] = ACTIONS(4016), - [anon_sym_STAR] = ACTIONS(4018), - [anon_sym_SLASH] = ACTIONS(4016), - [anon_sym_PERCENT] = ACTIONS(4018), - [anon_sym_CARET] = ACTIONS(4018), - [anon_sym_PIPE] = ACTIONS(4016), - [anon_sym_AMP] = ACTIONS(4016), - [anon_sym_LT_LT] = ACTIONS(4018), - [anon_sym_GT_GT] = ACTIONS(4016), - [anon_sym_GT_GT_GT] = ACTIONS(4018), - [anon_sym_EQ_EQ] = ACTIONS(4018), - [anon_sym_BANG_EQ] = ACTIONS(4018), - [anon_sym_GT_EQ] = ACTIONS(4018), - [anon_sym_LT_EQ] = ACTIONS(4018), - [anon_sym_DOT] = ACTIONS(4016), - [anon_sym_scoped] = ACTIONS(4016), - [anon_sym_var] = ACTIONS(4016), - [anon_sym_yield] = ACTIONS(4016), - [anon_sym_switch] = ACTIONS(4016), - [anon_sym_when] = ACTIONS(4016), - [sym_discard] = ACTIONS(4016), - [anon_sym_DOT_DOT] = ACTIONS(4018), - [anon_sym_and] = ACTIONS(4016), - [anon_sym_or] = ACTIONS(4016), - [anon_sym_AMP_AMP] = ACTIONS(4018), - [anon_sym_PIPE_PIPE] = ACTIONS(4018), - [anon_sym_QMARK_QMARK] = ACTIONS(4018), - [anon_sym_from] = ACTIONS(4016), - [anon_sym_into] = ACTIONS(4016), - [anon_sym_join] = ACTIONS(4016), - [anon_sym_on] = ACTIONS(4016), - [anon_sym_equals] = ACTIONS(4016), - [anon_sym_let] = ACTIONS(4016), - [anon_sym_orderby] = ACTIONS(4016), - [anon_sym_ascending] = ACTIONS(4016), - [anon_sym_descending] = ACTIONS(4016), - [anon_sym_group] = ACTIONS(4016), - [anon_sym_by] = ACTIONS(4016), - [anon_sym_select] = ACTIONS(4016), - [anon_sym_as] = ACTIONS(4016), - [anon_sym_is] = ACTIONS(4016), - [anon_sym_DASH_GT] = ACTIONS(4018), - [anon_sym_with] = ACTIONS(4016), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_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(4018), + [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), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), }, [2768] = { [sym_preproc_region] = STATE(2768), @@ -451369,81 +450983,85 @@ 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(4016), - [anon_sym_alias] = ACTIONS(4016), - [anon_sym_global] = ACTIONS(4016), - [anon_sym_LBRACK] = ACTIONS(4066), - [anon_sym_COLON] = ACTIONS(4018), - [anon_sym_COMMA] = ACTIONS(4018), - [anon_sym_LPAREN] = ACTIONS(4018), - [anon_sym_LBRACE] = ACTIONS(4018), - [anon_sym_file] = ACTIONS(4016), - [anon_sym_LT] = ACTIONS(4016), - [anon_sym_GT] = ACTIONS(4016), - [anon_sym_where] = ACTIONS(4016), - [anon_sym_QMARK] = ACTIONS(4016), - [anon_sym_notnull] = ACTIONS(4016), - [anon_sym_unmanaged] = ACTIONS(4016), - [anon_sym_BANG] = ACTIONS(4016), - [anon_sym_PLUS_PLUS] = ACTIONS(4018), - [anon_sym_DASH_DASH] = ACTIONS(4018), - [anon_sym_PLUS] = ACTIONS(4016), - [anon_sym_DASH] = ACTIONS(4016), - [anon_sym_STAR] = ACTIONS(4072), - [anon_sym_SLASH] = ACTIONS(4016), - [anon_sym_PERCENT] = ACTIONS(4018), - [anon_sym_CARET] = ACTIONS(4018), - [anon_sym_PIPE] = ACTIONS(4016), - [anon_sym_AMP] = ACTIONS(4016), - [anon_sym_LT_LT] = ACTIONS(4018), - [anon_sym_GT_GT] = ACTIONS(4016), - [anon_sym_GT_GT_GT] = ACTIONS(4018), - [anon_sym_EQ_EQ] = ACTIONS(4018), - [anon_sym_BANG_EQ] = ACTIONS(4018), - [anon_sym_GT_EQ] = ACTIONS(4018), - [anon_sym_LT_EQ] = ACTIONS(4018), - [anon_sym_DOT] = ACTIONS(4016), - [anon_sym_scoped] = ACTIONS(4016), - [anon_sym_var] = ACTIONS(4016), - [anon_sym_yield] = ACTIONS(4016), - [anon_sym_switch] = ACTIONS(4016), - [anon_sym_when] = ACTIONS(4016), - [sym_discard] = ACTIONS(4016), - [anon_sym_DOT_DOT] = ACTIONS(4018), - [anon_sym_and] = ACTIONS(4016), - [anon_sym_or] = ACTIONS(4016), - [anon_sym_AMP_AMP] = ACTIONS(4018), - [anon_sym_PIPE_PIPE] = ACTIONS(4018), - [anon_sym_QMARK_QMARK] = ACTIONS(4018), - [anon_sym_from] = ACTIONS(4016), - [anon_sym_into] = ACTIONS(4016), - [anon_sym_join] = ACTIONS(4016), - [anon_sym_on] = ACTIONS(4016), - [anon_sym_equals] = ACTIONS(4016), - [anon_sym_let] = ACTIONS(4016), - [anon_sym_orderby] = ACTIONS(4016), - [anon_sym_ascending] = ACTIONS(4016), - [anon_sym_descending] = ACTIONS(4016), - [anon_sym_group] = ACTIONS(4016), - [anon_sym_by] = ACTIONS(4016), - [anon_sym_select] = ACTIONS(4016), - [anon_sym_as] = ACTIONS(4016), - [anon_sym_is] = ACTIONS(4016), - [anon_sym_DASH_GT] = ACTIONS(4018), - [anon_sym_with] = ACTIONS(4016), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_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(4018), + [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), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), }, [2769] = { + [sym__variable_designation] = STATE(4154), + [sym_parenthesized_variable_designation] = STATE(4116), + [sym_identifier] = STATE(4152), + [sym__reserved_identifier] = STATE(2916), [sym_preproc_region] = STATE(2769), [sym_preproc_endregion] = STATE(2769), [sym_preproc_line] = STATE(2769), @@ -451453,79 +451071,75 @@ 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(4016), - [anon_sym_alias] = ACTIONS(4016), - [anon_sym_global] = ACTIONS(4016), - [anon_sym_LBRACK] = ACTIONS(4066), - [anon_sym_COLON] = ACTIONS(4018), - [anon_sym_COMMA] = ACTIONS(4018), - [anon_sym_LPAREN] = ACTIONS(4018), - [anon_sym_LBRACE] = ACTIONS(4018), - [anon_sym_file] = ACTIONS(4016), - [anon_sym_LT] = ACTIONS(4016), - [anon_sym_GT] = ACTIONS(4016), - [anon_sym_where] = ACTIONS(4016), - [anon_sym_QMARK] = ACTIONS(4414), - [anon_sym_notnull] = ACTIONS(4016), - [anon_sym_unmanaged] = ACTIONS(4016), - [anon_sym_BANG] = ACTIONS(4016), - [anon_sym_PLUS_PLUS] = ACTIONS(4018), - [anon_sym_DASH_DASH] = ACTIONS(4018), - [anon_sym_PLUS] = ACTIONS(4016), - [anon_sym_DASH] = ACTIONS(4016), - [anon_sym_STAR] = ACTIONS(4072), - [anon_sym_SLASH] = ACTIONS(4016), - [anon_sym_PERCENT] = ACTIONS(4018), - [anon_sym_CARET] = ACTIONS(4018), - [anon_sym_PIPE] = ACTIONS(4016), - [anon_sym_AMP] = ACTIONS(4016), - [anon_sym_LT_LT] = ACTIONS(4018), - [anon_sym_GT_GT] = ACTIONS(4016), - [anon_sym_GT_GT_GT] = ACTIONS(4018), - [anon_sym_EQ_EQ] = ACTIONS(4018), - [anon_sym_BANG_EQ] = ACTIONS(4018), - [anon_sym_GT_EQ] = ACTIONS(4018), - [anon_sym_LT_EQ] = ACTIONS(4018), - [anon_sym_DOT] = ACTIONS(4016), - [anon_sym_scoped] = ACTIONS(4016), - [anon_sym_var] = ACTIONS(4016), - [anon_sym_yield] = ACTIONS(4016), - [anon_sym_switch] = ACTIONS(4016), - [anon_sym_when] = ACTIONS(4016), - [sym_discard] = ACTIONS(4016), - [anon_sym_DOT_DOT] = ACTIONS(4018), - [anon_sym_and] = ACTIONS(4016), - [anon_sym_or] = ACTIONS(4016), - [anon_sym_AMP_AMP] = ACTIONS(4018), - [anon_sym_PIPE_PIPE] = ACTIONS(4018), - [anon_sym_QMARK_QMARK] = ACTIONS(4018), - [anon_sym_from] = ACTIONS(4016), - [anon_sym_into] = ACTIONS(4016), - [anon_sym_join] = ACTIONS(4016), - [anon_sym_on] = ACTIONS(4016), - [anon_sym_equals] = ACTIONS(4016), - [anon_sym_let] = ACTIONS(4016), - [anon_sym_orderby] = ACTIONS(4016), - [anon_sym_ascending] = ACTIONS(4016), - [anon_sym_descending] = ACTIONS(4016), - [anon_sym_group] = ACTIONS(4016), - [anon_sym_by] = ACTIONS(4016), - [anon_sym_select] = ACTIONS(4016), - [anon_sym_as] = ACTIONS(4016), - [anon_sym_is] = ACTIONS(4016), - [anon_sym_DASH_GT] = ACTIONS(4018), - [anon_sym_with] = ACTIONS(4016), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_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(4018), + [sym__identifier_token] = ACTIONS(3871), + [anon_sym_alias] = ACTIONS(3873), + [anon_sym_global] = ACTIONS(3873), + [anon_sym_LBRACK] = ACTIONS(3893), + [anon_sym_LPAREN] = ACTIONS(3893), + [anon_sym_file] = ACTIONS(3873), + [anon_sym_LT] = ACTIONS(3895), + [anon_sym_GT] = ACTIONS(3895), + [anon_sym_where] = ACTIONS(3895), + [anon_sym_QMARK] = ACTIONS(3895), + [anon_sym_notnull] = ACTIONS(3873), + [anon_sym_unmanaged] = ACTIONS(3873), + [anon_sym_BANG] = ACTIONS(3895), + [anon_sym_PLUS_PLUS] = ACTIONS(3893), + [anon_sym_DASH_DASH] = ACTIONS(3893), + [anon_sym_PLUS] = ACTIONS(3895), + [anon_sym_DASH] = ACTIONS(3895), + [anon_sym_STAR] = ACTIONS(3893), + [anon_sym_SLASH] = ACTIONS(3895), + [anon_sym_PERCENT] = ACTIONS(3893), + [anon_sym_CARET] = ACTIONS(3893), + [anon_sym_PIPE] = ACTIONS(3895), + [anon_sym_AMP] = ACTIONS(3895), + [anon_sym_LT_LT] = ACTIONS(3893), + [anon_sym_GT_GT] = ACTIONS(3895), + [anon_sym_GT_GT_GT] = ACTIONS(3893), + [anon_sym_EQ_EQ] = ACTIONS(3893), + [anon_sym_BANG_EQ] = ACTIONS(3893), + [anon_sym_GT_EQ] = ACTIONS(3893), + [anon_sym_LT_EQ] = ACTIONS(3893), + [anon_sym_DOT] = ACTIONS(3895), + [anon_sym_scoped] = ACTIONS(3873), + [anon_sym_var] = ACTIONS(3873), + [anon_sym_yield] = ACTIONS(3873), + [anon_sym_switch] = ACTIONS(3895), + [anon_sym_when] = ACTIONS(3873), + [sym_discard] = ACTIONS(4187), + [anon_sym_DOT_DOT] = ACTIONS(3893), + [anon_sym_and] = ACTIONS(3895), + [anon_sym_or] = ACTIONS(3895), + [anon_sym_AMP_AMP] = ACTIONS(3893), + [anon_sym_PIPE_PIPE] = ACTIONS(3893), + [anon_sym_QMARK_QMARK] = ACTIONS(3893), + [anon_sym_from] = ACTIONS(3895), + [anon_sym_into] = ACTIONS(3873), + [anon_sym_join] = ACTIONS(3895), + [anon_sym_on] = ACTIONS(3873), + [anon_sym_equals] = ACTIONS(3873), + [anon_sym_let] = ACTIONS(3895), + [anon_sym_orderby] = ACTIONS(3895), + [anon_sym_ascending] = ACTIONS(3873), + [anon_sym_descending] = ACTIONS(3873), + [anon_sym_group] = ACTIONS(3895), + [anon_sym_by] = ACTIONS(3873), + [anon_sym_select] = ACTIONS(3895), + [anon_sym_as] = ACTIONS(3895), + [anon_sym_is] = ACTIONS(3895), + [anon_sym_DASH_GT] = ACTIONS(3893), + [anon_sym_with] = ACTIONS(3895), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), }, [2770] = { [sym_preproc_region] = STATE(2770), @@ -451537,69 +451151,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(4511), - [anon_sym_extern] = ACTIONS(4511), - [anon_sym_alias] = ACTIONS(4511), - [anon_sym_global] = ACTIONS(4511), - [anon_sym_using] = ACTIONS(4511), - [anon_sym_unsafe] = ACTIONS(4511), - [anon_sym_static] = ACTIONS(4511), - [anon_sym_LBRACK] = ACTIONS(4513), - [anon_sym_LPAREN] = ACTIONS(4513), - [anon_sym_event] = ACTIONS(4511), - [anon_sym_namespace] = ACTIONS(4511), - [anon_sym_class] = ACTIONS(4511), - [anon_sym_ref] = ACTIONS(4511), - [anon_sym_struct] = ACTIONS(4511), - [anon_sym_enum] = ACTIONS(4511), - [anon_sym_RBRACE] = ACTIONS(4513), - [anon_sym_interface] = ACTIONS(4511), - [anon_sym_delegate] = ACTIONS(4511), - [anon_sym_record] = ACTIONS(4511), - [anon_sym_abstract] = ACTIONS(4511), - [anon_sym_async] = ACTIONS(4511), - [anon_sym_const] = ACTIONS(4511), - [anon_sym_file] = ACTIONS(4511), - [anon_sym_fixed] = ACTIONS(4511), - [anon_sym_internal] = ACTIONS(4511), - [anon_sym_new] = ACTIONS(4511), - [anon_sym_override] = ACTIONS(4511), - [anon_sym_partial] = ACTIONS(4511), - [anon_sym_private] = ACTIONS(4511), - [anon_sym_protected] = ACTIONS(4511), - [anon_sym_public] = ACTIONS(4511), - [anon_sym_readonly] = ACTIONS(4511), - [anon_sym_required] = ACTIONS(4511), - [anon_sym_sealed] = ACTIONS(4511), - [anon_sym_virtual] = ACTIONS(4511), - [anon_sym_volatile] = ACTIONS(4511), - [anon_sym_where] = ACTIONS(4511), - [anon_sym_notnull] = ACTIONS(4511), - [anon_sym_unmanaged] = ACTIONS(4511), - [anon_sym_TILDE] = ACTIONS(4513), - [anon_sym_implicit] = ACTIONS(4511), - [anon_sym_explicit] = ACTIONS(4511), - [anon_sym_scoped] = ACTIONS(4511), - [anon_sym_var] = ACTIONS(4511), - [sym_predefined_type] = ACTIONS(4511), - [anon_sym_yield] = ACTIONS(4511), - [anon_sym_when] = ACTIONS(4511), - [anon_sym_from] = ACTIONS(4511), - [anon_sym_into] = ACTIONS(4511), - [anon_sym_join] = ACTIONS(4511), - [anon_sym_on] = ACTIONS(4511), - [anon_sym_equals] = ACTIONS(4511), - [anon_sym_let] = ACTIONS(4511), - [anon_sym_orderby] = ACTIONS(4511), - [anon_sym_ascending] = ACTIONS(4511), - [anon_sym_descending] = ACTIONS(4511), - [anon_sym_group] = ACTIONS(4511), - [anon_sym_by] = ACTIONS(4511), - [anon_sym_select] = ACTIONS(4511), - [aux_sym_preproc_if_token1] = ACTIONS(4513), - [aux_sym_preproc_if_token3] = ACTIONS(4513), - [aux_sym_preproc_else_token1] = ACTIONS(4513), - [aux_sym_preproc_elif_token1] = ACTIONS(4513), + [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), @@ -451621,79 +451235,79 @@ 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(4016), - [anon_sym_alias] = ACTIONS(4016), - [anon_sym_global] = ACTIONS(4016), - [anon_sym_LBRACK] = ACTIONS(4066), - [anon_sym_COLON] = ACTIONS(4018), - [anon_sym_COMMA] = ACTIONS(4018), - [anon_sym_LPAREN] = ACTIONS(4018), - [anon_sym_LBRACE] = ACTIONS(4018), - [anon_sym_file] = ACTIONS(4016), - [anon_sym_LT] = ACTIONS(4016), - [anon_sym_GT] = ACTIONS(4016), - [anon_sym_where] = ACTIONS(4016), - [anon_sym_QMARK] = ACTIONS(4414), - [anon_sym_notnull] = ACTIONS(4016), - [anon_sym_unmanaged] = ACTIONS(4016), - [anon_sym_BANG] = ACTIONS(4016), - [anon_sym_PLUS_PLUS] = ACTIONS(4018), - [anon_sym_DASH_DASH] = ACTIONS(4018), - [anon_sym_PLUS] = ACTIONS(4016), - [anon_sym_DASH] = ACTIONS(4016), - [anon_sym_STAR] = ACTIONS(4072), - [anon_sym_SLASH] = ACTIONS(4016), - [anon_sym_PERCENT] = ACTIONS(4018), - [anon_sym_CARET] = ACTIONS(4018), - [anon_sym_PIPE] = ACTIONS(4016), - [anon_sym_AMP] = ACTIONS(4016), - [anon_sym_LT_LT] = ACTIONS(4018), - [anon_sym_GT_GT] = ACTIONS(4016), - [anon_sym_GT_GT_GT] = ACTIONS(4018), - [anon_sym_EQ_EQ] = ACTIONS(4018), - [anon_sym_BANG_EQ] = ACTIONS(4018), - [anon_sym_GT_EQ] = ACTIONS(4018), - [anon_sym_LT_EQ] = ACTIONS(4018), - [anon_sym_DOT] = ACTIONS(4515), - [anon_sym_scoped] = ACTIONS(4016), - [anon_sym_var] = ACTIONS(4016), - [anon_sym_yield] = ACTIONS(4016), - [anon_sym_switch] = ACTIONS(4016), - [anon_sym_when] = ACTIONS(4016), - [sym_discard] = ACTIONS(4016), - [anon_sym_DOT_DOT] = ACTIONS(4018), - [anon_sym_and] = ACTIONS(4016), - [anon_sym_or] = ACTIONS(4016), - [anon_sym_AMP_AMP] = ACTIONS(4018), - [anon_sym_PIPE_PIPE] = ACTIONS(4018), - [anon_sym_QMARK_QMARK] = ACTIONS(4018), - [anon_sym_from] = ACTIONS(4016), - [anon_sym_into] = ACTIONS(4016), - [anon_sym_join] = ACTIONS(4016), - [anon_sym_on] = ACTIONS(4016), - [anon_sym_equals] = ACTIONS(4016), - [anon_sym_let] = ACTIONS(4016), - [anon_sym_orderby] = ACTIONS(4016), - [anon_sym_ascending] = ACTIONS(4016), - [anon_sym_descending] = ACTIONS(4016), - [anon_sym_group] = ACTIONS(4016), - [anon_sym_by] = ACTIONS(4016), - [anon_sym_select] = ACTIONS(4016), - [anon_sym_as] = ACTIONS(4016), - [anon_sym_is] = ACTIONS(4016), - [anon_sym_DASH_GT] = ACTIONS(4018), - [anon_sym_with] = ACTIONS(4016), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_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(4018), + [anon_sym_SEMI] = ACTIONS(3657), + [anon_sym_EQ] = ACTIONS(3655), + [anon_sym_LBRACK] = ACTIONS(3657), + [anon_sym_COLON] = ACTIONS(3657), + [anon_sym_COMMA] = ACTIONS(3657), + [anon_sym_RBRACK] = ACTIONS(3657), + [anon_sym_LPAREN] = ACTIONS(3657), + [anon_sym_RPAREN] = ACTIONS(3657), + [anon_sym_RBRACE] = ACTIONS(3657), + [anon_sym_LT] = ACTIONS(3655), + [anon_sym_GT] = ACTIONS(3655), + [anon_sym_in] = ACTIONS(3657), + [anon_sym_QMARK] = ACTIONS(3655), + [anon_sym_BANG] = ACTIONS(3655), + [anon_sym_PLUS_PLUS] = ACTIONS(3657), + [anon_sym_DASH_DASH] = ACTIONS(3657), + [anon_sym_PLUS] = ACTIONS(3655), + [anon_sym_DASH] = ACTIONS(3655), + [anon_sym_STAR] = ACTIONS(3655), + [anon_sym_SLASH] = ACTIONS(3655), + [anon_sym_PERCENT] = ACTIONS(3655), + [anon_sym_CARET] = ACTIONS(3655), + [anon_sym_PIPE] = ACTIONS(3655), + [anon_sym_AMP] = ACTIONS(3655), + [anon_sym_LT_LT] = ACTIONS(3655), + [anon_sym_GT_GT] = ACTIONS(3655), + [anon_sym_GT_GT_GT] = ACTIONS(3655), + [anon_sym_EQ_EQ] = ACTIONS(3657), + [anon_sym_BANG_EQ] = ACTIONS(3657), + [anon_sym_GT_EQ] = ACTIONS(3657), + [anon_sym_LT_EQ] = ACTIONS(3657), + [anon_sym_DOT] = ACTIONS(3655), + [anon_sym_EQ_GT] = ACTIONS(3657), + [anon_sym_switch] = ACTIONS(3657), + [anon_sym_when] = ACTIONS(3657), + [anon_sym_DOT_DOT] = ACTIONS(3657), + [anon_sym_and] = ACTIONS(3657), + [anon_sym_or] = ACTIONS(3657), + [anon_sym_PLUS_EQ] = ACTIONS(3657), + [anon_sym_DASH_EQ] = ACTIONS(3657), + [anon_sym_STAR_EQ] = ACTIONS(3657), + [anon_sym_SLASH_EQ] = ACTIONS(3657), + [anon_sym_PERCENT_EQ] = ACTIONS(3657), + [anon_sym_AMP_EQ] = ACTIONS(3657), + [anon_sym_CARET_EQ] = ACTIONS(3657), + [anon_sym_PIPE_EQ] = ACTIONS(3657), + [anon_sym_LT_LT_EQ] = ACTIONS(3657), + [anon_sym_GT_GT_EQ] = ACTIONS(3657), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3657), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3657), + [anon_sym_AMP_AMP] = ACTIONS(3657), + [anon_sym_PIPE_PIPE] = ACTIONS(3657), + [anon_sym_QMARK_QMARK] = ACTIONS(3655), + [anon_sym_on] = ACTIONS(3657), + [anon_sym_equals] = ACTIONS(3657), + [anon_sym_by] = ACTIONS(3657), + [anon_sym_as] = ACTIONS(3657), + [anon_sym_is] = ACTIONS(3657), + [anon_sym_DASH_GT] = ACTIONS(3657), + [anon_sym_with] = ACTIONS(3657), + [aux_sym_preproc_if_token3] = ACTIONS(3657), + [aux_sym_preproc_else_token1] = ACTIONS(3657), + [aux_sym_preproc_elif_token1] = ACTIONS(3657), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), }, [2772] = { [sym_preproc_region] = STATE(2772), @@ -451705,69 +451319,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), - [sym__identifier_token] = ACTIONS(4517), - [anon_sym_extern] = ACTIONS(4517), - [anon_sym_alias] = ACTIONS(4517), - [anon_sym_global] = ACTIONS(4517), - [anon_sym_using] = ACTIONS(4517), - [anon_sym_unsafe] = ACTIONS(4517), - [anon_sym_static] = ACTIONS(4517), - [anon_sym_LBRACK] = ACTIONS(4519), - [anon_sym_LPAREN] = ACTIONS(4519), - [anon_sym_event] = ACTIONS(4517), - [anon_sym_namespace] = ACTIONS(4517), - [anon_sym_class] = ACTIONS(4517), - [anon_sym_ref] = ACTIONS(4517), - [anon_sym_struct] = ACTIONS(4517), - [anon_sym_enum] = ACTIONS(4517), - [anon_sym_RBRACE] = ACTIONS(4519), - [anon_sym_interface] = ACTIONS(4517), - [anon_sym_delegate] = ACTIONS(4517), - [anon_sym_record] = ACTIONS(4517), - [anon_sym_abstract] = ACTIONS(4517), - [anon_sym_async] = ACTIONS(4517), - [anon_sym_const] = ACTIONS(4517), - [anon_sym_file] = ACTIONS(4517), - [anon_sym_fixed] = ACTIONS(4517), - [anon_sym_internal] = ACTIONS(4517), - [anon_sym_new] = ACTIONS(4517), - [anon_sym_override] = ACTIONS(4517), - [anon_sym_partial] = ACTIONS(4517), - [anon_sym_private] = ACTIONS(4517), - [anon_sym_protected] = ACTIONS(4517), - [anon_sym_public] = ACTIONS(4517), - [anon_sym_readonly] = ACTIONS(4517), - [anon_sym_required] = ACTIONS(4517), - [anon_sym_sealed] = ACTIONS(4517), - [anon_sym_virtual] = ACTIONS(4517), - [anon_sym_volatile] = ACTIONS(4517), - [anon_sym_where] = ACTIONS(4517), - [anon_sym_notnull] = ACTIONS(4517), - [anon_sym_unmanaged] = ACTIONS(4517), - [anon_sym_TILDE] = ACTIONS(4519), - [anon_sym_implicit] = ACTIONS(4517), - [anon_sym_explicit] = ACTIONS(4517), - [anon_sym_scoped] = ACTIONS(4517), - [anon_sym_var] = ACTIONS(4517), - [sym_predefined_type] = ACTIONS(4517), - [anon_sym_yield] = ACTIONS(4517), - [anon_sym_when] = ACTIONS(4517), - [anon_sym_from] = ACTIONS(4517), - [anon_sym_into] = ACTIONS(4517), - [anon_sym_join] = ACTIONS(4517), - [anon_sym_on] = ACTIONS(4517), - [anon_sym_equals] = ACTIONS(4517), - [anon_sym_let] = ACTIONS(4517), - [anon_sym_orderby] = ACTIONS(4517), - [anon_sym_ascending] = ACTIONS(4517), - [anon_sym_descending] = ACTIONS(4517), - [anon_sym_group] = ACTIONS(4517), - [anon_sym_by] = ACTIONS(4517), - [anon_sym_select] = ACTIONS(4517), - [aux_sym_preproc_if_token1] = ACTIONS(4519), - [aux_sym_preproc_if_token3] = ACTIONS(4519), - [aux_sym_preproc_else_token1] = ACTIONS(4519), - [aux_sym_preproc_elif_token1] = ACTIONS(4519), + [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), @@ -451780,10 +451394,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2773] = { - [sym__variable_designation] = STATE(3350), - [sym_parenthesized_variable_designation] = STATE(3340), - [sym_identifier] = STATE(3345), - [sym__reserved_identifier] = STATE(3177), [sym_preproc_region] = STATE(2773), [sym_preproc_endregion] = STATE(2773), [sym_preproc_line] = STATE(2773), @@ -451793,65 +451403,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(3875), - [anon_sym_alias] = ACTIONS(3877), - [anon_sym_global] = ACTIONS(3877), - [anon_sym_LBRACK] = ACTIONS(3905), - [anon_sym_LPAREN] = ACTIONS(3905), - [anon_sym_file] = ACTIONS(3877), - [anon_sym_LT] = ACTIONS(3907), - [anon_sym_GT] = ACTIONS(3907), - [anon_sym_where] = ACTIONS(3877), - [anon_sym_QMARK] = ACTIONS(3907), - [anon_sym_notnull] = ACTIONS(3877), - [anon_sym_unmanaged] = ACTIONS(3877), - [anon_sym_BANG] = ACTIONS(3907), - [anon_sym_PLUS_PLUS] = ACTIONS(3905), - [anon_sym_DASH_DASH] = ACTIONS(3905), - [anon_sym_PLUS] = ACTIONS(3907), - [anon_sym_DASH] = ACTIONS(3907), - [anon_sym_STAR] = ACTIONS(3905), - [anon_sym_SLASH] = ACTIONS(3907), - [anon_sym_PERCENT] = ACTIONS(3905), - [anon_sym_CARET] = ACTIONS(3905), - [anon_sym_PIPE] = ACTIONS(3907), - [anon_sym_AMP] = ACTIONS(3907), - [anon_sym_LT_LT] = ACTIONS(3905), - [anon_sym_GT_GT] = ACTIONS(3907), - [anon_sym_GT_GT_GT] = ACTIONS(3905), - [anon_sym_EQ_EQ] = ACTIONS(3905), - [anon_sym_BANG_EQ] = ACTIONS(3905), - [anon_sym_GT_EQ] = ACTIONS(3905), - [anon_sym_LT_EQ] = ACTIONS(3905), - [anon_sym_DOT] = ACTIONS(3907), - [anon_sym_scoped] = ACTIONS(3877), - [anon_sym_var] = ACTIONS(3877), - [anon_sym_yield] = ACTIONS(3877), - [anon_sym_switch] = ACTIONS(3907), - [anon_sym_when] = ACTIONS(3877), - [sym_discard] = ACTIONS(3885), - [anon_sym_DOT_DOT] = ACTIONS(3905), - [anon_sym_and] = ACTIONS(3907), - [anon_sym_or] = ACTIONS(3907), - [anon_sym_AMP_AMP] = ACTIONS(3905), - [anon_sym_PIPE_PIPE] = ACTIONS(3905), - [anon_sym_QMARK_QMARK] = ACTIONS(3905), - [anon_sym_from] = ACTIONS(3877), - [anon_sym_into] = ACTIONS(3907), - [anon_sym_join] = ACTIONS(3877), - [anon_sym_on] = ACTIONS(3877), - [anon_sym_equals] = ACTIONS(3877), - [anon_sym_let] = ACTIONS(3877), - [anon_sym_orderby] = ACTIONS(3877), - [anon_sym_ascending] = ACTIONS(3877), - [anon_sym_descending] = ACTIONS(3877), - [anon_sym_group] = ACTIONS(3877), - [anon_sym_by] = ACTIONS(3907), - [anon_sym_select] = ACTIONS(3877), - [anon_sym_as] = ACTIONS(3907), - [anon_sym_is] = ACTIONS(3907), - [anon_sym_DASH_GT] = ACTIONS(3905), - [anon_sym_with] = ACTIONS(3907), + [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), @@ -451873,169 +451487,165 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2774), [sym_preproc_define] = STATE(2774), [sym_preproc_undef] = STATE(2774), - [anon_sym_SEMI] = ACTIONS(4191), - [anon_sym_EQ] = ACTIONS(4193), - [anon_sym_LBRACK] = ACTIONS(4191), - [anon_sym_COLON] = ACTIONS(4191), - [anon_sym_COMMA] = ACTIONS(4191), - [anon_sym_RBRACK] = ACTIONS(4191), - [anon_sym_LPAREN] = ACTIONS(4191), - [anon_sym_RPAREN] = ACTIONS(4191), - [anon_sym_RBRACE] = ACTIONS(4191), - [anon_sym_LT] = ACTIONS(4193), - [anon_sym_GT] = ACTIONS(4193), - [anon_sym_in] = ACTIONS(4191), - [anon_sym_QMARK] = ACTIONS(4193), - [anon_sym_BANG] = ACTIONS(4193), - [anon_sym_PLUS_PLUS] = ACTIONS(4191), - [anon_sym_DASH_DASH] = ACTIONS(4191), - [anon_sym_PLUS] = ACTIONS(4193), - [anon_sym_DASH] = ACTIONS(4193), - [anon_sym_STAR] = ACTIONS(4193), - [anon_sym_SLASH] = ACTIONS(4193), - [anon_sym_PERCENT] = ACTIONS(4193), - [anon_sym_CARET] = ACTIONS(4193), - [anon_sym_PIPE] = ACTIONS(4193), - [anon_sym_AMP] = ACTIONS(4193), - [anon_sym_LT_LT] = ACTIONS(4193), - [anon_sym_GT_GT] = ACTIONS(4193), - [anon_sym_GT_GT_GT] = ACTIONS(4193), - [anon_sym_EQ_EQ] = ACTIONS(4191), - [anon_sym_BANG_EQ] = ACTIONS(4191), - [anon_sym_GT_EQ] = ACTIONS(4191), - [anon_sym_LT_EQ] = ACTIONS(4191), - [anon_sym_DOT] = ACTIONS(4193), - [anon_sym_EQ_GT] = ACTIONS(4191), - [anon_sym_switch] = ACTIONS(4191), - [anon_sym_when] = ACTIONS(4191), - [anon_sym_DOT_DOT] = ACTIONS(4191), - [anon_sym_and] = ACTIONS(4191), - [anon_sym_or] = ACTIONS(4191), - [anon_sym_PLUS_EQ] = ACTIONS(4191), - [anon_sym_DASH_EQ] = ACTIONS(4191), - [anon_sym_STAR_EQ] = ACTIONS(4191), - [anon_sym_SLASH_EQ] = ACTIONS(4191), - [anon_sym_PERCENT_EQ] = ACTIONS(4191), - [anon_sym_AMP_EQ] = ACTIONS(4191), - [anon_sym_CARET_EQ] = ACTIONS(4191), - [anon_sym_PIPE_EQ] = ACTIONS(4191), - [anon_sym_LT_LT_EQ] = ACTIONS(4191), - [anon_sym_GT_GT_EQ] = ACTIONS(4191), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(4191), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(4191), - [anon_sym_AMP_AMP] = ACTIONS(4191), - [anon_sym_PIPE_PIPE] = ACTIONS(4191), - [anon_sym_QMARK_QMARK] = ACTIONS(4193), - [anon_sym_on] = ACTIONS(4191), - [anon_sym_equals] = ACTIONS(4191), - [anon_sym_by] = ACTIONS(4191), - [anon_sym_as] = ACTIONS(4191), - [anon_sym_is] = ACTIONS(4191), - [anon_sym_DASH_GT] = ACTIONS(4191), - [anon_sym_with] = ACTIONS(4191), - [aux_sym_preproc_if_token3] = ACTIONS(4191), - [aux_sym_preproc_else_token1] = ACTIONS(4191), - [aux_sym_preproc_elif_token1] = ACTIONS(4191), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - }, - [2775] = { - [sym__variable_designation] = STATE(3234), - [sym_parenthesized_variable_designation] = STATE(3340), - [sym_identifier] = STATE(3345), - [sym__reserved_identifier] = STATE(3177), - [sym_preproc_region] = STATE(2775), - [sym_preproc_endregion] = STATE(2775), - [sym_preproc_line] = STATE(2775), - [sym_preproc_pragma] = STATE(2775), - [sym_preproc_nullable] = STATE(2775), - [sym_preproc_error] = STATE(2775), - [sym_preproc_warning] = STATE(2775), - [sym_preproc_define] = STATE(2775), - [sym_preproc_undef] = STATE(2775), - [sym__identifier_token] = ACTIONS(3875), - [anon_sym_alias] = ACTIONS(3877), - [anon_sym_global] = ACTIONS(3877), - [anon_sym_LBRACK] = ACTIONS(3913), - [anon_sym_LPAREN] = ACTIONS(3913), - [anon_sym_file] = ACTIONS(3877), - [anon_sym_LT] = ACTIONS(3915), - [anon_sym_GT] = ACTIONS(3915), - [anon_sym_where] = ACTIONS(3877), - [anon_sym_QMARK] = ACTIONS(3915), - [anon_sym_notnull] = ACTIONS(3877), - [anon_sym_unmanaged] = ACTIONS(3877), - [anon_sym_BANG] = ACTIONS(3915), - [anon_sym_PLUS_PLUS] = ACTIONS(3913), - [anon_sym_DASH_DASH] = ACTIONS(3913), - [anon_sym_PLUS] = ACTIONS(3915), - [anon_sym_DASH] = ACTIONS(3915), - [anon_sym_STAR] = ACTIONS(3913), - [anon_sym_SLASH] = ACTIONS(3915), - [anon_sym_PERCENT] = ACTIONS(3913), - [anon_sym_CARET] = ACTIONS(3913), - [anon_sym_PIPE] = ACTIONS(3915), - [anon_sym_AMP] = ACTIONS(3915), - [anon_sym_LT_LT] = ACTIONS(3913), - [anon_sym_GT_GT] = ACTIONS(3915), - [anon_sym_GT_GT_GT] = ACTIONS(3913), - [anon_sym_EQ_EQ] = ACTIONS(3913), - [anon_sym_BANG_EQ] = ACTIONS(3913), - [anon_sym_GT_EQ] = ACTIONS(3913), - [anon_sym_LT_EQ] = ACTIONS(3913), - [anon_sym_DOT] = ACTIONS(3915), - [anon_sym_scoped] = ACTIONS(3877), - [anon_sym_var] = ACTIONS(3877), - [anon_sym_yield] = ACTIONS(3877), - [anon_sym_switch] = ACTIONS(3915), - [anon_sym_when] = ACTIONS(3877), - [sym_discard] = ACTIONS(3885), - [anon_sym_DOT_DOT] = ACTIONS(3913), - [anon_sym_and] = ACTIONS(3915), - [anon_sym_or] = ACTIONS(3915), - [anon_sym_AMP_AMP] = ACTIONS(3913), - [anon_sym_PIPE_PIPE] = ACTIONS(3913), - [anon_sym_QMARK_QMARK] = ACTIONS(3913), - [anon_sym_from] = ACTIONS(3877), - [anon_sym_into] = ACTIONS(3915), - [anon_sym_join] = ACTIONS(3877), - [anon_sym_on] = ACTIONS(3877), - [anon_sym_equals] = ACTIONS(3877), - [anon_sym_let] = ACTIONS(3877), - [anon_sym_orderby] = ACTIONS(3877), - [anon_sym_ascending] = ACTIONS(3877), - [anon_sym_descending] = ACTIONS(3877), - [anon_sym_group] = ACTIONS(3877), - [anon_sym_by] = ACTIONS(3915), - [anon_sym_select] = ACTIONS(3877), - [anon_sym_as] = ACTIONS(3915), - [anon_sym_is] = ACTIONS(3915), - [anon_sym_DASH_GT] = ACTIONS(3913), - [anon_sym_with] = ACTIONS(3915), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - }, - [2776] = { - [sym__variable_designation] = STATE(3245), - [sym_parenthesized_variable_designation] = STATE(3340), - [sym_identifier] = STATE(3345), - [sym__reserved_identifier] = STATE(3177), + [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), + }, + [2775] = { + [sym_preproc_region] = STATE(2775), + [sym_preproc_endregion] = STATE(2775), + [sym_preproc_line] = STATE(2775), + [sym_preproc_pragma] = STATE(2775), + [sym_preproc_nullable] = STATE(2775), + [sym_preproc_error] = STATE(2775), + [sym_preproc_warning] = STATE(2775), + [sym_preproc_define] = STATE(2775), + [sym_preproc_undef] = STATE(2775), + [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), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + }, + [2776] = { [sym_preproc_region] = STATE(2776), [sym_preproc_endregion] = STATE(2776), [sym_preproc_line] = STATE(2776), @@ -452045,65 +451655,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(3875), - [anon_sym_alias] = ACTIONS(3877), - [anon_sym_global] = ACTIONS(3877), - [anon_sym_LBRACK] = ACTIONS(3957), - [anon_sym_LPAREN] = ACTIONS(3957), - [anon_sym_file] = ACTIONS(3877), - [anon_sym_LT] = ACTIONS(3959), - [anon_sym_GT] = ACTIONS(3959), - [anon_sym_where] = ACTIONS(3877), - [anon_sym_QMARK] = ACTIONS(3959), - [anon_sym_notnull] = ACTIONS(3877), - [anon_sym_unmanaged] = ACTIONS(3877), - [anon_sym_BANG] = ACTIONS(3959), - [anon_sym_PLUS_PLUS] = ACTIONS(3957), - [anon_sym_DASH_DASH] = ACTIONS(3957), - [anon_sym_PLUS] = ACTIONS(3959), - [anon_sym_DASH] = ACTIONS(3959), - [anon_sym_STAR] = ACTIONS(3957), - [anon_sym_SLASH] = ACTIONS(3959), - [anon_sym_PERCENT] = ACTIONS(3957), - [anon_sym_CARET] = ACTIONS(3957), - [anon_sym_PIPE] = ACTIONS(3959), - [anon_sym_AMP] = ACTIONS(3959), - [anon_sym_LT_LT] = ACTIONS(3957), - [anon_sym_GT_GT] = ACTIONS(3959), - [anon_sym_GT_GT_GT] = ACTIONS(3957), - [anon_sym_EQ_EQ] = ACTIONS(3957), - [anon_sym_BANG_EQ] = ACTIONS(3957), - [anon_sym_GT_EQ] = ACTIONS(3957), - [anon_sym_LT_EQ] = ACTIONS(3957), - [anon_sym_DOT] = ACTIONS(3959), - [anon_sym_scoped] = ACTIONS(3877), - [anon_sym_var] = ACTIONS(3877), - [anon_sym_yield] = ACTIONS(3877), - [anon_sym_switch] = ACTIONS(3959), - [anon_sym_when] = ACTIONS(3877), - [sym_discard] = ACTIONS(3885), - [anon_sym_DOT_DOT] = ACTIONS(3957), - [anon_sym_and] = ACTIONS(3959), - [anon_sym_or] = ACTIONS(3959), - [anon_sym_AMP_AMP] = ACTIONS(3957), - [anon_sym_PIPE_PIPE] = ACTIONS(3957), - [anon_sym_QMARK_QMARK] = ACTIONS(3957), - [anon_sym_from] = ACTIONS(3877), - [anon_sym_into] = ACTIONS(3959), - [anon_sym_join] = ACTIONS(3877), - [anon_sym_on] = ACTIONS(3877), - [anon_sym_equals] = ACTIONS(3877), - [anon_sym_let] = ACTIONS(3877), - [anon_sym_orderby] = ACTIONS(3877), - [anon_sym_ascending] = ACTIONS(3877), - [anon_sym_descending] = ACTIONS(3877), - [anon_sym_group] = ACTIONS(3877), - [anon_sym_by] = ACTIONS(3959), - [anon_sym_select] = ACTIONS(3877), - [anon_sym_as] = ACTIONS(3959), - [anon_sym_is] = ACTIONS(3959), - [anon_sym_DASH_GT] = ACTIONS(3957), - [anon_sym_with] = ACTIONS(3959), + [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), @@ -452125,68 +451739,69 @@ 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(4082), - [anon_sym_alias] = ACTIONS(4082), - [anon_sym_global] = ACTIONS(4082), - [anon_sym_LBRACK] = ACTIONS(4084), - [anon_sym_COLON] = ACTIONS(4084), - [anon_sym_COMMA] = ACTIONS(4084), - [anon_sym_LPAREN] = ACTIONS(4084), - [anon_sym_LBRACE] = ACTIONS(4084), - [anon_sym_file] = ACTIONS(4082), - [anon_sym_LT] = ACTIONS(4082), - [anon_sym_GT] = ACTIONS(4082), - [anon_sym_where] = ACTIONS(4082), - [anon_sym_QMARK] = ACTIONS(4082), - [anon_sym_notnull] = ACTIONS(4082), - [anon_sym_unmanaged] = ACTIONS(4082), - [anon_sym_BANG] = ACTIONS(4082), - [anon_sym_PLUS_PLUS] = ACTIONS(4084), - [anon_sym_DASH_DASH] = ACTIONS(4084), - [anon_sym_PLUS] = ACTIONS(4082), - [anon_sym_DASH] = ACTIONS(4082), - [anon_sym_STAR] = ACTIONS(4084), - [anon_sym_SLASH] = ACTIONS(4082), - [anon_sym_PERCENT] = ACTIONS(4084), - [anon_sym_CARET] = ACTIONS(4084), - [anon_sym_PIPE] = ACTIONS(4082), - [anon_sym_AMP] = ACTIONS(4082), - [anon_sym_LT_LT] = ACTIONS(4084), - [anon_sym_GT_GT] = ACTIONS(4082), - [anon_sym_GT_GT_GT] = ACTIONS(4084), - [anon_sym_EQ_EQ] = ACTIONS(4084), - [anon_sym_BANG_EQ] = ACTIONS(4084), - [anon_sym_GT_EQ] = ACTIONS(4084), - [anon_sym_LT_EQ] = ACTIONS(4084), - [anon_sym_DOT] = ACTIONS(4082), - [anon_sym_scoped] = ACTIONS(4082), - [anon_sym_var] = ACTIONS(4082), - [anon_sym_yield] = ACTIONS(4082), - [anon_sym_switch] = ACTIONS(4082), - [anon_sym_when] = ACTIONS(4082), - [sym_discard] = ACTIONS(4082), - [anon_sym_DOT_DOT] = ACTIONS(4084), - [anon_sym_and] = ACTIONS(4082), - [anon_sym_or] = ACTIONS(4082), - [anon_sym_AMP_AMP] = ACTIONS(4084), - [anon_sym_PIPE_PIPE] = ACTIONS(4084), - [anon_sym_QMARK_QMARK] = ACTIONS(4084), - [anon_sym_from] = ACTIONS(4082), - [anon_sym_into] = ACTIONS(4082), - [anon_sym_join] = ACTIONS(4082), - [anon_sym_on] = ACTIONS(4082), - [anon_sym_equals] = ACTIONS(4082), - [anon_sym_let] = ACTIONS(4082), - [anon_sym_orderby] = ACTIONS(4082), - [anon_sym_ascending] = ACTIONS(4082), - [anon_sym_descending] = ACTIONS(4082), - [anon_sym_group] = ACTIONS(4082), - [anon_sym_by] = ACTIONS(4082), - [anon_sym_select] = ACTIONS(4082), - [anon_sym_as] = ACTIONS(4082), - [anon_sym_is] = ACTIONS(4082), - [anon_sym_DASH_GT] = ACTIONS(4084), - [anon_sym_with] = ACTIONS(4082), + [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), @@ -452197,13 +451812,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(4084), }, [2778] = { - [sym__variable_designation] = STATE(3318), - [sym_parenthesized_variable_designation] = STATE(3340), - [sym_identifier] = STATE(3345), - [sym__reserved_identifier] = STATE(3177), [sym_preproc_region] = STATE(2778), [sym_preproc_endregion] = STATE(2778), [sym_preproc_line] = STATE(2778), @@ -452213,65 +451823,69 @@ 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(3875), - [anon_sym_alias] = ACTIONS(3877), - [anon_sym_global] = ACTIONS(3877), - [anon_sym_LBRACK] = ACTIONS(3961), - [anon_sym_LPAREN] = ACTIONS(3961), - [anon_sym_file] = ACTIONS(3877), - [anon_sym_LT] = ACTIONS(3963), - [anon_sym_GT] = ACTIONS(3963), - [anon_sym_where] = ACTIONS(3877), - [anon_sym_QMARK] = ACTIONS(3963), - [anon_sym_notnull] = ACTIONS(3877), - [anon_sym_unmanaged] = ACTIONS(3877), - [anon_sym_BANG] = ACTIONS(3963), - [anon_sym_PLUS_PLUS] = ACTIONS(3961), - [anon_sym_DASH_DASH] = ACTIONS(3961), - [anon_sym_PLUS] = ACTIONS(3963), - [anon_sym_DASH] = ACTIONS(3963), - [anon_sym_STAR] = ACTIONS(3961), - [anon_sym_SLASH] = ACTIONS(3963), - [anon_sym_PERCENT] = ACTIONS(3961), - [anon_sym_CARET] = ACTIONS(3961), - [anon_sym_PIPE] = ACTIONS(3963), - [anon_sym_AMP] = ACTIONS(3963), - [anon_sym_LT_LT] = ACTIONS(3961), - [anon_sym_GT_GT] = ACTIONS(3963), - [anon_sym_GT_GT_GT] = ACTIONS(3961), - [anon_sym_EQ_EQ] = ACTIONS(3961), - [anon_sym_BANG_EQ] = ACTIONS(3961), - [anon_sym_GT_EQ] = ACTIONS(3961), - [anon_sym_LT_EQ] = ACTIONS(3961), - [anon_sym_DOT] = ACTIONS(3963), - [anon_sym_scoped] = ACTIONS(3877), - [anon_sym_var] = ACTIONS(3877), - [anon_sym_yield] = ACTIONS(3877), - [anon_sym_switch] = ACTIONS(3963), - [anon_sym_when] = ACTIONS(3877), - [sym_discard] = ACTIONS(3885), - [anon_sym_DOT_DOT] = ACTIONS(3961), - [anon_sym_and] = ACTIONS(3963), - [anon_sym_or] = ACTIONS(3963), - [anon_sym_AMP_AMP] = ACTIONS(3961), - [anon_sym_PIPE_PIPE] = ACTIONS(3961), - [anon_sym_QMARK_QMARK] = ACTIONS(3961), - [anon_sym_from] = ACTIONS(3877), - [anon_sym_into] = ACTIONS(3963), - [anon_sym_join] = ACTIONS(3877), - [anon_sym_on] = ACTIONS(3877), - [anon_sym_equals] = ACTIONS(3877), - [anon_sym_let] = ACTIONS(3877), - [anon_sym_orderby] = ACTIONS(3877), - [anon_sym_ascending] = ACTIONS(3877), - [anon_sym_descending] = ACTIONS(3877), - [anon_sym_group] = ACTIONS(3877), - [anon_sym_by] = ACTIONS(3963), - [anon_sym_select] = ACTIONS(3877), - [anon_sym_as] = ACTIONS(3963), - [anon_sym_is] = ACTIONS(3963), - [anon_sym_DASH_GT] = ACTIONS(3961), - [anon_sym_with] = ACTIONS(3963), + [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), @@ -452293,69 +451907,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(3363), - [anon_sym_extern] = ACTIONS(3363), - [anon_sym_alias] = ACTIONS(3363), - [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_event] = 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_RBRACE] = 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_TILDE] = ACTIONS(3365), - [anon_sym_implicit] = ACTIONS(3363), - [anon_sym_explicit] = ACTIONS(3363), - [anon_sym_scoped] = ACTIONS(3363), - [anon_sym_var] = ACTIONS(3363), - [sym_predefined_type] = ACTIONS(3363), - [anon_sym_yield] = ACTIONS(3363), - [anon_sym_when] = ACTIONS(3363), - [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), - [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), + [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), @@ -452377,69 +451991,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(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), + [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), @@ -452461,69 +452075,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(4521), - [anon_sym_extern] = ACTIONS(4521), - [anon_sym_alias] = ACTIONS(4521), - [anon_sym_global] = ACTIONS(4521), - [anon_sym_using] = ACTIONS(4521), - [anon_sym_unsafe] = ACTIONS(4521), - [anon_sym_static] = ACTIONS(4521), - [anon_sym_LBRACK] = ACTIONS(4523), - [anon_sym_LPAREN] = ACTIONS(4523), - [anon_sym_event] = ACTIONS(4521), - [anon_sym_namespace] = ACTIONS(4521), - [anon_sym_class] = ACTIONS(4521), - [anon_sym_ref] = ACTIONS(4521), - [anon_sym_struct] = ACTIONS(4521), - [anon_sym_enum] = ACTIONS(4521), - [anon_sym_RBRACE] = ACTIONS(4523), - [anon_sym_interface] = ACTIONS(4521), - [anon_sym_delegate] = ACTIONS(4521), - [anon_sym_record] = ACTIONS(4521), - [anon_sym_abstract] = ACTIONS(4521), - [anon_sym_async] = ACTIONS(4521), - [anon_sym_const] = ACTIONS(4521), - [anon_sym_file] = ACTIONS(4521), - [anon_sym_fixed] = ACTIONS(4521), - [anon_sym_internal] = ACTIONS(4521), - [anon_sym_new] = ACTIONS(4521), - [anon_sym_override] = ACTIONS(4521), - [anon_sym_partial] = ACTIONS(4521), - [anon_sym_private] = ACTIONS(4521), - [anon_sym_protected] = ACTIONS(4521), - [anon_sym_public] = ACTIONS(4521), - [anon_sym_readonly] = ACTIONS(4521), - [anon_sym_required] = ACTIONS(4521), - [anon_sym_sealed] = ACTIONS(4521), - [anon_sym_virtual] = ACTIONS(4521), - [anon_sym_volatile] = ACTIONS(4521), - [anon_sym_where] = ACTIONS(4521), - [anon_sym_notnull] = ACTIONS(4521), - [anon_sym_unmanaged] = ACTIONS(4521), - [anon_sym_TILDE] = ACTIONS(4523), - [anon_sym_implicit] = ACTIONS(4521), - [anon_sym_explicit] = ACTIONS(4521), - [anon_sym_scoped] = ACTIONS(4521), - [anon_sym_var] = ACTIONS(4521), - [sym_predefined_type] = ACTIONS(4521), - [anon_sym_yield] = ACTIONS(4521), - [anon_sym_when] = ACTIONS(4521), - [anon_sym_from] = ACTIONS(4521), - [anon_sym_into] = ACTIONS(4521), - [anon_sym_join] = ACTIONS(4521), - [anon_sym_on] = ACTIONS(4521), - [anon_sym_equals] = ACTIONS(4521), - [anon_sym_let] = ACTIONS(4521), - [anon_sym_orderby] = ACTIONS(4521), - [anon_sym_ascending] = ACTIONS(4521), - [anon_sym_descending] = ACTIONS(4521), - [anon_sym_group] = ACTIONS(4521), - [anon_sym_by] = ACTIONS(4521), - [anon_sym_select] = ACTIONS(4521), - [aux_sym_preproc_if_token1] = ACTIONS(4523), - [aux_sym_preproc_if_token3] = ACTIONS(4523), - [aux_sym_preproc_else_token1] = ACTIONS(4523), - [aux_sym_preproc_elif_token1] = ACTIONS(4523), + [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), @@ -452545,69 +452159,69 @@ 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(3479), - [anon_sym_extern] = ACTIONS(3482), - [anon_sym_alias] = ACTIONS(3479), - [anon_sym_global] = ACTIONS(3479), - [anon_sym_unsafe] = ACTIONS(3482), - [anon_sym_static] = ACTIONS(3482), - [anon_sym_LBRACK] = ACTIONS(3445), - [anon_sym_LPAREN] = ACTIONS(3484), - [anon_sym_event] = ACTIONS(3482), - [anon_sym_class] = ACTIONS(3482), - [anon_sym_ref] = ACTIONS(3482), - [anon_sym_struct] = ACTIONS(3482), - [anon_sym_enum] = ACTIONS(3482), - [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(3479), - [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_LT] = ACTIONS(3445), - [anon_sym_where] = ACTIONS(3479), - [anon_sym_QMARK] = ACTIONS(3445), - [anon_sym_notnull] = ACTIONS(3479), - [anon_sym_unmanaged] = ACTIONS(3479), - [anon_sym_operator] = ACTIONS(3447), - [anon_sym_STAR] = ACTIONS(3445), - [anon_sym_implicit] = ACTIONS(3482), - [anon_sym_explicit] = ACTIONS(3482), - [anon_sym_this] = ACTIONS(3447), - [anon_sym_DOT] = ACTIONS(3445), - [anon_sym_scoped] = ACTIONS(3479), - [anon_sym_EQ_GT] = ACTIONS(3445), - [anon_sym_COLON_COLON] = ACTIONS(3445), - [anon_sym_var] = ACTIONS(3479), - [sym_predefined_type] = ACTIONS(3482), - [anon_sym_yield] = ACTIONS(3479), - [anon_sym_when] = ACTIONS(3479), - [anon_sym_from] = ACTIONS(3479), - [anon_sym_into] = ACTIONS(3479), - [anon_sym_join] = ACTIONS(3479), - [anon_sym_on] = ACTIONS(3479), - [anon_sym_equals] = ACTIONS(3479), - [anon_sym_let] = ACTIONS(3479), - [anon_sym_orderby] = ACTIONS(3479), - [anon_sym_ascending] = ACTIONS(3479), - [anon_sym_descending] = ACTIONS(3479), - [anon_sym_group] = ACTIONS(3479), - [anon_sym_by] = ACTIONS(3479), - [anon_sym_select] = ACTIONS(3479), + [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), @@ -452620,6 +452234,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2783] = { + [sym__variable_designation] = STATE(3227), + [sym_parenthesized_variable_designation] = STATE(3344), + [sym_identifier] = STATE(3346), + [sym__reserved_identifier] = STATE(3199), [sym_preproc_region] = STATE(2783), [sym_preproc_endregion] = STATE(2783), [sym_preproc_line] = STATE(2783), @@ -452629,69 +452247,65 @@ 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(4525), - [anon_sym_extern] = ACTIONS(4525), - [anon_sym_alias] = ACTIONS(4525), - [anon_sym_global] = ACTIONS(4525), - [anon_sym_using] = ACTIONS(4525), - [anon_sym_unsafe] = ACTIONS(4525), - [anon_sym_static] = ACTIONS(4525), - [anon_sym_LBRACK] = ACTIONS(4527), - [anon_sym_LPAREN] = ACTIONS(4527), - [anon_sym_event] = ACTIONS(4525), - [anon_sym_namespace] = ACTIONS(4525), - [anon_sym_class] = ACTIONS(4525), - [anon_sym_ref] = ACTIONS(4525), - [anon_sym_struct] = ACTIONS(4525), - [anon_sym_enum] = ACTIONS(4525), - [anon_sym_RBRACE] = ACTIONS(4527), - [anon_sym_interface] = ACTIONS(4525), - [anon_sym_delegate] = ACTIONS(4525), - [anon_sym_record] = ACTIONS(4525), - [anon_sym_abstract] = ACTIONS(4525), - [anon_sym_async] = ACTIONS(4525), - [anon_sym_const] = ACTIONS(4525), - [anon_sym_file] = ACTIONS(4525), - [anon_sym_fixed] = ACTIONS(4525), - [anon_sym_internal] = ACTIONS(4525), - [anon_sym_new] = ACTIONS(4525), - [anon_sym_override] = ACTIONS(4525), - [anon_sym_partial] = ACTIONS(4525), - [anon_sym_private] = ACTIONS(4525), - [anon_sym_protected] = ACTIONS(4525), - [anon_sym_public] = ACTIONS(4525), - [anon_sym_readonly] = ACTIONS(4525), - [anon_sym_required] = ACTIONS(4525), - [anon_sym_sealed] = ACTIONS(4525), - [anon_sym_virtual] = ACTIONS(4525), - [anon_sym_volatile] = ACTIONS(4525), - [anon_sym_where] = ACTIONS(4525), - [anon_sym_notnull] = ACTIONS(4525), - [anon_sym_unmanaged] = ACTIONS(4525), - [anon_sym_TILDE] = ACTIONS(4527), - [anon_sym_implicit] = ACTIONS(4525), - [anon_sym_explicit] = ACTIONS(4525), - [anon_sym_scoped] = ACTIONS(4525), - [anon_sym_var] = ACTIONS(4525), - [sym_predefined_type] = ACTIONS(4525), - [anon_sym_yield] = ACTIONS(4525), - [anon_sym_when] = ACTIONS(4525), - [anon_sym_from] = ACTIONS(4525), - [anon_sym_into] = ACTIONS(4525), - [anon_sym_join] = ACTIONS(4525), - [anon_sym_on] = ACTIONS(4525), - [anon_sym_equals] = ACTIONS(4525), - [anon_sym_let] = ACTIONS(4525), - [anon_sym_orderby] = ACTIONS(4525), - [anon_sym_ascending] = ACTIONS(4525), - [anon_sym_descending] = ACTIONS(4525), - [anon_sym_group] = ACTIONS(4525), - [anon_sym_by] = ACTIONS(4525), - [anon_sym_select] = ACTIONS(4525), - [aux_sym_preproc_if_token1] = ACTIONS(4527), - [aux_sym_preproc_if_token3] = ACTIONS(4527), - [aux_sym_preproc_else_token1] = ACTIONS(4527), - [aux_sym_preproc_elif_token1] = ACTIONS(4527), + [sym__identifier_token] = ACTIONS(3855), + [anon_sym_alias] = ACTIONS(3857), + [anon_sym_global] = ACTIONS(3857), + [anon_sym_LBRACK] = ACTIONS(3893), + [anon_sym_LPAREN] = ACTIONS(3893), + [anon_sym_file] = ACTIONS(3857), + [anon_sym_LT] = ACTIONS(3895), + [anon_sym_GT] = ACTIONS(3895), + [anon_sym_where] = ACTIONS(3857), + [anon_sym_QMARK] = ACTIONS(3895), + [anon_sym_notnull] = ACTIONS(3857), + [anon_sym_unmanaged] = ACTIONS(3857), + [anon_sym_BANG] = ACTIONS(3895), + [anon_sym_PLUS_PLUS] = ACTIONS(3893), + [anon_sym_DASH_DASH] = ACTIONS(3893), + [anon_sym_PLUS] = ACTIONS(3895), + [anon_sym_DASH] = ACTIONS(3895), + [anon_sym_STAR] = ACTIONS(3893), + [anon_sym_SLASH] = ACTIONS(3895), + [anon_sym_PERCENT] = ACTIONS(3893), + [anon_sym_CARET] = ACTIONS(3893), + [anon_sym_PIPE] = ACTIONS(3895), + [anon_sym_AMP] = ACTIONS(3895), + [anon_sym_LT_LT] = ACTIONS(3893), + [anon_sym_GT_GT] = ACTIONS(3895), + [anon_sym_GT_GT_GT] = ACTIONS(3893), + [anon_sym_EQ_EQ] = ACTIONS(3893), + [anon_sym_BANG_EQ] = ACTIONS(3893), + [anon_sym_GT_EQ] = ACTIONS(3893), + [anon_sym_LT_EQ] = ACTIONS(3893), + [anon_sym_DOT] = ACTIONS(3895), + [anon_sym_scoped] = ACTIONS(3857), + [anon_sym_var] = ACTIONS(3857), + [anon_sym_yield] = ACTIONS(3857), + [anon_sym_switch] = ACTIONS(3895), + [anon_sym_when] = ACTIONS(3857), + [sym_discard] = ACTIONS(3865), + [anon_sym_DOT_DOT] = ACTIONS(3893), + [anon_sym_and] = ACTIONS(3895), + [anon_sym_or] = ACTIONS(3895), + [anon_sym_AMP_AMP] = ACTIONS(3893), + [anon_sym_PIPE_PIPE] = ACTIONS(3893), + [anon_sym_QMARK_QMARK] = ACTIONS(3893), + [anon_sym_from] = ACTIONS(3857), + [anon_sym_into] = ACTIONS(3895), + [anon_sym_join] = ACTIONS(3857), + [anon_sym_on] = ACTIONS(3857), + [anon_sym_equals] = ACTIONS(3895), + [anon_sym_let] = ACTIONS(3857), + [anon_sym_orderby] = ACTIONS(3857), + [anon_sym_ascending] = ACTIONS(3857), + [anon_sym_descending] = ACTIONS(3857), + [anon_sym_group] = ACTIONS(3857), + [anon_sym_by] = ACTIONS(3857), + [anon_sym_select] = ACTIONS(3857), + [anon_sym_as] = ACTIONS(3895), + [anon_sym_is] = ACTIONS(3895), + [anon_sym_DASH_GT] = ACTIONS(3893), + [anon_sym_with] = ACTIONS(3895), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -452713,69 +452327,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(4529), - [anon_sym_extern] = ACTIONS(4529), - [anon_sym_alias] = ACTIONS(4529), - [anon_sym_global] = ACTIONS(4529), - [anon_sym_using] = ACTIONS(4529), - [anon_sym_unsafe] = ACTIONS(4529), - [anon_sym_static] = ACTIONS(4529), - [anon_sym_LBRACK] = ACTIONS(4531), - [anon_sym_LPAREN] = ACTIONS(4531), - [anon_sym_event] = ACTIONS(4529), - [anon_sym_namespace] = ACTIONS(4529), - [anon_sym_class] = ACTIONS(4529), - [anon_sym_ref] = ACTIONS(4529), - [anon_sym_struct] = ACTIONS(4529), - [anon_sym_enum] = ACTIONS(4529), - [anon_sym_RBRACE] = ACTIONS(4531), - [anon_sym_interface] = ACTIONS(4529), - [anon_sym_delegate] = ACTIONS(4529), - [anon_sym_record] = ACTIONS(4529), - [anon_sym_abstract] = ACTIONS(4529), - [anon_sym_async] = ACTIONS(4529), - [anon_sym_const] = ACTIONS(4529), - [anon_sym_file] = ACTIONS(4529), - [anon_sym_fixed] = ACTIONS(4529), - [anon_sym_internal] = ACTIONS(4529), - [anon_sym_new] = ACTIONS(4529), - [anon_sym_override] = ACTIONS(4529), - [anon_sym_partial] = ACTIONS(4529), - [anon_sym_private] = ACTIONS(4529), - [anon_sym_protected] = ACTIONS(4529), - [anon_sym_public] = ACTIONS(4529), - [anon_sym_readonly] = ACTIONS(4529), - [anon_sym_required] = ACTIONS(4529), - [anon_sym_sealed] = ACTIONS(4529), - [anon_sym_virtual] = ACTIONS(4529), - [anon_sym_volatile] = ACTIONS(4529), - [anon_sym_where] = ACTIONS(4529), - [anon_sym_notnull] = ACTIONS(4529), - [anon_sym_unmanaged] = ACTIONS(4529), - [anon_sym_TILDE] = ACTIONS(4531), - [anon_sym_implicit] = ACTIONS(4529), - [anon_sym_explicit] = ACTIONS(4529), - [anon_sym_scoped] = ACTIONS(4529), - [anon_sym_var] = ACTIONS(4529), - [sym_predefined_type] = ACTIONS(4529), - [anon_sym_yield] = ACTIONS(4529), - [anon_sym_when] = ACTIONS(4529), - [anon_sym_from] = ACTIONS(4529), - [anon_sym_into] = ACTIONS(4529), - [anon_sym_join] = ACTIONS(4529), - [anon_sym_on] = ACTIONS(4529), - [anon_sym_equals] = ACTIONS(4529), - [anon_sym_let] = ACTIONS(4529), - [anon_sym_orderby] = ACTIONS(4529), - [anon_sym_ascending] = ACTIONS(4529), - [anon_sym_descending] = ACTIONS(4529), - [anon_sym_group] = ACTIONS(4529), - [anon_sym_by] = ACTIONS(4529), - [anon_sym_select] = ACTIONS(4529), - [aux_sym_preproc_if_token1] = ACTIONS(4531), - [aux_sym_preproc_if_token3] = ACTIONS(4531), - [aux_sym_preproc_else_token1] = ACTIONS(4531), - [aux_sym_preproc_elif_token1] = ACTIONS(4531), + [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), @@ -452788,6 +452402,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2785] = { + [sym__variable_designation] = STATE(3256), + [sym_parenthesized_variable_designation] = STATE(3344), + [sym_identifier] = STATE(3346), + [sym__reserved_identifier] = STATE(3199), [sym_preproc_region] = STATE(2785), [sym_preproc_endregion] = STATE(2785), [sym_preproc_line] = STATE(2785), @@ -452797,85 +452415,81 @@ 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(4016), - [anon_sym_alias] = ACTIONS(4016), - [anon_sym_global] = ACTIONS(4016), - [anon_sym_LBRACK] = ACTIONS(4066), - [anon_sym_COLON] = ACTIONS(4018), - [anon_sym_COMMA] = ACTIONS(4018), - [anon_sym_LPAREN] = ACTIONS(4018), - [anon_sym_LBRACE] = ACTIONS(4018), - [anon_sym_file] = ACTIONS(4016), - [anon_sym_LT] = ACTIONS(4016), - [anon_sym_GT] = ACTIONS(4016), - [anon_sym_where] = ACTIONS(4016), - [anon_sym_QMARK] = ACTIONS(4414), - [anon_sym_notnull] = ACTIONS(4016), - [anon_sym_unmanaged] = ACTIONS(4016), - [anon_sym_BANG] = ACTIONS(4016), - [anon_sym_PLUS_PLUS] = ACTIONS(4018), - [anon_sym_DASH_DASH] = ACTIONS(4018), - [anon_sym_PLUS] = ACTIONS(4016), - [anon_sym_DASH] = ACTIONS(4016), - [anon_sym_STAR] = ACTIONS(4072), - [anon_sym_SLASH] = ACTIONS(4016), - [anon_sym_PERCENT] = ACTIONS(4018), - [anon_sym_CARET] = ACTIONS(4018), - [anon_sym_PIPE] = ACTIONS(4016), - [anon_sym_AMP] = ACTIONS(4016), - [anon_sym_LT_LT] = ACTIONS(4018), - [anon_sym_GT_GT] = ACTIONS(4016), - [anon_sym_GT_GT_GT] = ACTIONS(4018), - [anon_sym_EQ_EQ] = ACTIONS(4018), - [anon_sym_BANG_EQ] = ACTIONS(4018), - [anon_sym_GT_EQ] = ACTIONS(4018), - [anon_sym_LT_EQ] = ACTIONS(4018), - [anon_sym_DOT] = ACTIONS(4533), - [anon_sym_scoped] = ACTIONS(4016), - [anon_sym_var] = ACTIONS(4016), - [anon_sym_yield] = ACTIONS(4016), - [anon_sym_switch] = ACTIONS(4016), - [anon_sym_when] = ACTIONS(4016), - [sym_discard] = ACTIONS(4016), - [anon_sym_DOT_DOT] = ACTIONS(4018), - [anon_sym_and] = ACTIONS(4016), - [anon_sym_or] = ACTIONS(4016), - [anon_sym_AMP_AMP] = ACTIONS(4018), - [anon_sym_PIPE_PIPE] = ACTIONS(4018), - [anon_sym_QMARK_QMARK] = ACTIONS(4018), - [anon_sym_from] = ACTIONS(4016), - [anon_sym_into] = ACTIONS(4016), - [anon_sym_join] = ACTIONS(4016), - [anon_sym_on] = ACTIONS(4016), - [anon_sym_equals] = ACTIONS(4016), - [anon_sym_let] = ACTIONS(4016), - [anon_sym_orderby] = ACTIONS(4016), - [anon_sym_ascending] = ACTIONS(4016), - [anon_sym_descending] = ACTIONS(4016), - [anon_sym_group] = ACTIONS(4016), - [anon_sym_by] = ACTIONS(4016), - [anon_sym_select] = ACTIONS(4016), - [anon_sym_as] = ACTIONS(4016), - [anon_sym_is] = ACTIONS(4016), - [anon_sym_DASH_GT] = ACTIONS(4443), - [anon_sym_with] = ACTIONS(4016), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_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(4018), + [sym__identifier_token] = ACTIONS(3855), + [anon_sym_alias] = ACTIONS(3857), + [anon_sym_global] = ACTIONS(3857), + [anon_sym_LBRACK] = ACTIONS(3885), + [anon_sym_LPAREN] = ACTIONS(3885), + [anon_sym_file] = ACTIONS(3857), + [anon_sym_LT] = ACTIONS(3887), + [anon_sym_GT] = ACTIONS(3887), + [anon_sym_where] = ACTIONS(3857), + [anon_sym_QMARK] = ACTIONS(3887), + [anon_sym_notnull] = ACTIONS(3857), + [anon_sym_unmanaged] = ACTIONS(3857), + [anon_sym_BANG] = ACTIONS(3887), + [anon_sym_PLUS_PLUS] = ACTIONS(3885), + [anon_sym_DASH_DASH] = ACTIONS(3885), + [anon_sym_PLUS] = ACTIONS(3887), + [anon_sym_DASH] = ACTIONS(3887), + [anon_sym_STAR] = ACTIONS(3885), + [anon_sym_SLASH] = ACTIONS(3887), + [anon_sym_PERCENT] = ACTIONS(3885), + [anon_sym_CARET] = ACTIONS(3885), + [anon_sym_PIPE] = ACTIONS(3887), + [anon_sym_AMP] = ACTIONS(3887), + [anon_sym_LT_LT] = ACTIONS(3885), + [anon_sym_GT_GT] = ACTIONS(3887), + [anon_sym_GT_GT_GT] = ACTIONS(3885), + [anon_sym_EQ_EQ] = ACTIONS(3885), + [anon_sym_BANG_EQ] = ACTIONS(3885), + [anon_sym_GT_EQ] = ACTIONS(3885), + [anon_sym_LT_EQ] = ACTIONS(3885), + [anon_sym_DOT] = ACTIONS(3887), + [anon_sym_scoped] = ACTIONS(3857), + [anon_sym_var] = ACTIONS(3857), + [anon_sym_yield] = ACTIONS(3857), + [anon_sym_switch] = ACTIONS(3887), + [anon_sym_when] = ACTIONS(3857), + [sym_discard] = ACTIONS(3865), + [anon_sym_DOT_DOT] = ACTIONS(3885), + [anon_sym_and] = ACTIONS(3887), + [anon_sym_or] = ACTIONS(3887), + [anon_sym_AMP_AMP] = ACTIONS(3885), + [anon_sym_PIPE_PIPE] = ACTIONS(3885), + [anon_sym_QMARK_QMARK] = ACTIONS(3885), + [anon_sym_from] = ACTIONS(3857), + [anon_sym_into] = ACTIONS(3887), + [anon_sym_join] = ACTIONS(3857), + [anon_sym_on] = ACTIONS(3857), + [anon_sym_equals] = ACTIONS(3887), + [anon_sym_let] = ACTIONS(3857), + [anon_sym_orderby] = ACTIONS(3857), + [anon_sym_ascending] = ACTIONS(3857), + [anon_sym_descending] = ACTIONS(3857), + [anon_sym_group] = ACTIONS(3857), + [anon_sym_by] = ACTIONS(3857), + [anon_sym_select] = ACTIONS(3857), + [anon_sym_as] = ACTIONS(3887), + [anon_sym_is] = ACTIONS(3887), + [anon_sym_DASH_GT] = ACTIONS(3885), + [anon_sym_with] = ACTIONS(3887), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_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__variable_designation] = STATE(3350), - [sym_parenthesized_variable_designation] = STATE(3340), - [sym_identifier] = STATE(3345), - [sym__reserved_identifier] = STATE(3177), + [sym__variable_designation] = STATE(3265), + [sym_parenthesized_variable_designation] = STATE(3344), + [sym_identifier] = STATE(3346), + [sym__reserved_identifier] = STATE(3199), [sym_preproc_region] = STATE(2786), [sym_preproc_endregion] = STATE(2786), [sym_preproc_line] = STATE(2786), @@ -452885,65 +452499,65 @@ 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(3875), - [anon_sym_alias] = ACTIONS(3877), - [anon_sym_global] = ACTIONS(3877), - [anon_sym_LBRACK] = ACTIONS(3905), - [anon_sym_LPAREN] = ACTIONS(3905), - [anon_sym_file] = ACTIONS(3877), - [anon_sym_LT] = ACTIONS(3907), - [anon_sym_GT] = ACTIONS(3907), - [anon_sym_where] = ACTIONS(3877), - [anon_sym_QMARK] = ACTIONS(3907), - [anon_sym_notnull] = ACTIONS(3877), - [anon_sym_unmanaged] = ACTIONS(3877), - [anon_sym_BANG] = ACTIONS(3907), - [anon_sym_PLUS_PLUS] = ACTIONS(3905), - [anon_sym_DASH_DASH] = ACTIONS(3905), - [anon_sym_PLUS] = ACTIONS(3907), - [anon_sym_DASH] = ACTIONS(3907), - [anon_sym_STAR] = ACTIONS(3905), - [anon_sym_SLASH] = ACTIONS(3907), - [anon_sym_PERCENT] = ACTIONS(3905), - [anon_sym_CARET] = ACTIONS(3905), - [anon_sym_PIPE] = ACTIONS(3907), - [anon_sym_AMP] = ACTIONS(3907), - [anon_sym_LT_LT] = ACTIONS(3905), - [anon_sym_GT_GT] = ACTIONS(3907), - [anon_sym_GT_GT_GT] = ACTIONS(3905), - [anon_sym_EQ_EQ] = ACTIONS(3905), - [anon_sym_BANG_EQ] = ACTIONS(3905), - [anon_sym_GT_EQ] = ACTIONS(3905), - [anon_sym_LT_EQ] = ACTIONS(3905), - [anon_sym_DOT] = ACTIONS(3907), - [anon_sym_scoped] = ACTIONS(3877), - [anon_sym_var] = ACTIONS(3877), - [anon_sym_yield] = ACTIONS(3877), - [anon_sym_switch] = ACTIONS(3907), - [anon_sym_when] = ACTIONS(3877), - [sym_discard] = ACTIONS(3885), - [anon_sym_DOT_DOT] = ACTIONS(3905), - [anon_sym_and] = ACTIONS(3907), - [anon_sym_or] = ACTIONS(3907), - [anon_sym_AMP_AMP] = ACTIONS(3905), - [anon_sym_PIPE_PIPE] = ACTIONS(3905), - [anon_sym_QMARK_QMARK] = ACTIONS(3905), - [anon_sym_from] = ACTIONS(3877), - [anon_sym_into] = ACTIONS(3907), - [anon_sym_join] = ACTIONS(3877), - [anon_sym_on] = ACTIONS(3877), - [anon_sym_equals] = ACTIONS(3907), - [anon_sym_let] = ACTIONS(3877), - [anon_sym_orderby] = ACTIONS(3877), - [anon_sym_ascending] = ACTIONS(3877), - [anon_sym_descending] = ACTIONS(3877), - [anon_sym_group] = ACTIONS(3877), - [anon_sym_by] = ACTIONS(3877), - [anon_sym_select] = ACTIONS(3877), - [anon_sym_as] = ACTIONS(3907), - [anon_sym_is] = ACTIONS(3907), - [anon_sym_DASH_GT] = ACTIONS(3905), - [anon_sym_with] = ACTIONS(3907), + [sym__identifier_token] = ACTIONS(3855), + [anon_sym_alias] = ACTIONS(3857), + [anon_sym_global] = ACTIONS(3857), + [anon_sym_LBRACK] = ACTIONS(3939), + [anon_sym_LPAREN] = ACTIONS(3939), + [anon_sym_file] = ACTIONS(3857), + [anon_sym_LT] = ACTIONS(3941), + [anon_sym_GT] = ACTIONS(3941), + [anon_sym_where] = ACTIONS(3857), + [anon_sym_QMARK] = ACTIONS(3941), + [anon_sym_notnull] = ACTIONS(3857), + [anon_sym_unmanaged] = ACTIONS(3857), + [anon_sym_BANG] = ACTIONS(3941), + [anon_sym_PLUS_PLUS] = ACTIONS(3939), + [anon_sym_DASH_DASH] = ACTIONS(3939), + [anon_sym_PLUS] = ACTIONS(3941), + [anon_sym_DASH] = ACTIONS(3941), + [anon_sym_STAR] = ACTIONS(3939), + [anon_sym_SLASH] = ACTIONS(3941), + [anon_sym_PERCENT] = ACTIONS(3939), + [anon_sym_CARET] = ACTIONS(3939), + [anon_sym_PIPE] = ACTIONS(3941), + [anon_sym_AMP] = ACTIONS(3941), + [anon_sym_LT_LT] = ACTIONS(3939), + [anon_sym_GT_GT] = ACTIONS(3941), + [anon_sym_GT_GT_GT] = ACTIONS(3939), + [anon_sym_EQ_EQ] = ACTIONS(3939), + [anon_sym_BANG_EQ] = ACTIONS(3939), + [anon_sym_GT_EQ] = ACTIONS(3939), + [anon_sym_LT_EQ] = ACTIONS(3939), + [anon_sym_DOT] = ACTIONS(3941), + [anon_sym_scoped] = ACTIONS(3857), + [anon_sym_var] = ACTIONS(3857), + [anon_sym_yield] = ACTIONS(3857), + [anon_sym_switch] = ACTIONS(3941), + [anon_sym_when] = ACTIONS(3857), + [sym_discard] = ACTIONS(3865), + [anon_sym_DOT_DOT] = ACTIONS(3939), + [anon_sym_and] = ACTIONS(3941), + [anon_sym_or] = ACTIONS(3941), + [anon_sym_AMP_AMP] = ACTIONS(3939), + [anon_sym_PIPE_PIPE] = ACTIONS(3939), + [anon_sym_QMARK_QMARK] = ACTIONS(3939), + [anon_sym_from] = ACTIONS(3857), + [anon_sym_into] = ACTIONS(3941), + [anon_sym_join] = ACTIONS(3857), + [anon_sym_on] = ACTIONS(3857), + [anon_sym_equals] = ACTIONS(3941), + [anon_sym_let] = ACTIONS(3857), + [anon_sym_orderby] = ACTIONS(3857), + [anon_sym_ascending] = ACTIONS(3857), + [anon_sym_descending] = ACTIONS(3857), + [anon_sym_group] = ACTIONS(3857), + [anon_sym_by] = ACTIONS(3857), + [anon_sym_select] = ACTIONS(3857), + [anon_sym_as] = ACTIONS(3941), + [anon_sym_is] = ACTIONS(3941), + [anon_sym_DASH_GT] = ACTIONS(3939), + [anon_sym_with] = ACTIONS(3941), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -452956,10 +452570,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2787] = { - [sym__variable_designation] = STATE(3234), - [sym_parenthesized_variable_designation] = STATE(3340), - [sym_identifier] = STATE(3345), - [sym__reserved_identifier] = STATE(3177), + [sym__variable_designation] = STATE(3314), + [sym_parenthesized_variable_designation] = STATE(3344), + [sym_identifier] = STATE(3346), + [sym__reserved_identifier] = STATE(3199), [sym_preproc_region] = STATE(2787), [sym_preproc_endregion] = STATE(2787), [sym_preproc_line] = STATE(2787), @@ -452969,65 +452583,65 @@ 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), - [sym__identifier_token] = ACTIONS(3875), - [anon_sym_alias] = ACTIONS(3877), - [anon_sym_global] = ACTIONS(3877), - [anon_sym_LBRACK] = ACTIONS(3913), - [anon_sym_LPAREN] = ACTIONS(3913), - [anon_sym_file] = ACTIONS(3877), - [anon_sym_LT] = ACTIONS(3915), - [anon_sym_GT] = ACTIONS(3915), - [anon_sym_where] = ACTIONS(3877), - [anon_sym_QMARK] = ACTIONS(3915), - [anon_sym_notnull] = ACTIONS(3877), - [anon_sym_unmanaged] = ACTIONS(3877), - [anon_sym_BANG] = ACTIONS(3915), - [anon_sym_PLUS_PLUS] = ACTIONS(3913), - [anon_sym_DASH_DASH] = ACTIONS(3913), - [anon_sym_PLUS] = ACTIONS(3915), - [anon_sym_DASH] = ACTIONS(3915), - [anon_sym_STAR] = ACTIONS(3913), - [anon_sym_SLASH] = ACTIONS(3915), - [anon_sym_PERCENT] = ACTIONS(3913), - [anon_sym_CARET] = ACTIONS(3913), - [anon_sym_PIPE] = ACTIONS(3915), - [anon_sym_AMP] = ACTIONS(3915), - [anon_sym_LT_LT] = ACTIONS(3913), - [anon_sym_GT_GT] = ACTIONS(3915), - [anon_sym_GT_GT_GT] = ACTIONS(3913), - [anon_sym_EQ_EQ] = ACTIONS(3913), - [anon_sym_BANG_EQ] = ACTIONS(3913), - [anon_sym_GT_EQ] = ACTIONS(3913), - [anon_sym_LT_EQ] = ACTIONS(3913), - [anon_sym_DOT] = ACTIONS(3915), - [anon_sym_scoped] = ACTIONS(3877), - [anon_sym_var] = ACTIONS(3877), - [anon_sym_yield] = ACTIONS(3877), - [anon_sym_switch] = ACTIONS(3915), - [anon_sym_when] = ACTIONS(3877), - [sym_discard] = ACTIONS(3885), - [anon_sym_DOT_DOT] = ACTIONS(3913), - [anon_sym_and] = ACTIONS(3915), - [anon_sym_or] = ACTIONS(3915), - [anon_sym_AMP_AMP] = ACTIONS(3913), - [anon_sym_PIPE_PIPE] = ACTIONS(3913), - [anon_sym_QMARK_QMARK] = ACTIONS(3913), - [anon_sym_from] = ACTIONS(3877), - [anon_sym_into] = ACTIONS(3915), - [anon_sym_join] = ACTIONS(3877), - [anon_sym_on] = ACTIONS(3877), - [anon_sym_equals] = ACTIONS(3915), - [anon_sym_let] = ACTIONS(3877), - [anon_sym_orderby] = ACTIONS(3877), - [anon_sym_ascending] = ACTIONS(3877), - [anon_sym_descending] = ACTIONS(3877), - [anon_sym_group] = ACTIONS(3877), - [anon_sym_by] = ACTIONS(3877), - [anon_sym_select] = ACTIONS(3877), - [anon_sym_as] = ACTIONS(3915), - [anon_sym_is] = ACTIONS(3915), - [anon_sym_DASH_GT] = ACTIONS(3913), - [anon_sym_with] = ACTIONS(3915), + [sym__identifier_token] = ACTIONS(3855), + [anon_sym_alias] = ACTIONS(3857), + [anon_sym_global] = ACTIONS(3857), + [anon_sym_LBRACK] = ACTIONS(3947), + [anon_sym_LPAREN] = ACTIONS(3947), + [anon_sym_file] = ACTIONS(3857), + [anon_sym_LT] = ACTIONS(3949), + [anon_sym_GT] = ACTIONS(3949), + [anon_sym_where] = ACTIONS(3857), + [anon_sym_QMARK] = ACTIONS(3949), + [anon_sym_notnull] = ACTIONS(3857), + [anon_sym_unmanaged] = ACTIONS(3857), + [anon_sym_BANG] = ACTIONS(3949), + [anon_sym_PLUS_PLUS] = ACTIONS(3947), + [anon_sym_DASH_DASH] = ACTIONS(3947), + [anon_sym_PLUS] = ACTIONS(3949), + [anon_sym_DASH] = ACTIONS(3949), + [anon_sym_STAR] = ACTIONS(3947), + [anon_sym_SLASH] = ACTIONS(3949), + [anon_sym_PERCENT] = ACTIONS(3947), + [anon_sym_CARET] = ACTIONS(3947), + [anon_sym_PIPE] = ACTIONS(3949), + [anon_sym_AMP] = ACTIONS(3949), + [anon_sym_LT_LT] = ACTIONS(3947), + [anon_sym_GT_GT] = ACTIONS(3949), + [anon_sym_GT_GT_GT] = ACTIONS(3947), + [anon_sym_EQ_EQ] = ACTIONS(3947), + [anon_sym_BANG_EQ] = ACTIONS(3947), + [anon_sym_GT_EQ] = ACTIONS(3947), + [anon_sym_LT_EQ] = ACTIONS(3947), + [anon_sym_DOT] = ACTIONS(3949), + [anon_sym_scoped] = ACTIONS(3857), + [anon_sym_var] = ACTIONS(3857), + [anon_sym_yield] = ACTIONS(3857), + [anon_sym_switch] = ACTIONS(3949), + [anon_sym_when] = ACTIONS(3857), + [sym_discard] = ACTIONS(3865), + [anon_sym_DOT_DOT] = ACTIONS(3947), + [anon_sym_and] = ACTIONS(3949), + [anon_sym_or] = ACTIONS(3949), + [anon_sym_AMP_AMP] = ACTIONS(3947), + [anon_sym_PIPE_PIPE] = ACTIONS(3947), + [anon_sym_QMARK_QMARK] = ACTIONS(3947), + [anon_sym_from] = ACTIONS(3857), + [anon_sym_into] = ACTIONS(3949), + [anon_sym_join] = ACTIONS(3857), + [anon_sym_on] = ACTIONS(3857), + [anon_sym_equals] = ACTIONS(3949), + [anon_sym_let] = ACTIONS(3857), + [anon_sym_orderby] = ACTIONS(3857), + [anon_sym_ascending] = ACTIONS(3857), + [anon_sym_descending] = ACTIONS(3857), + [anon_sym_group] = ACTIONS(3857), + [anon_sym_by] = ACTIONS(3857), + [anon_sym_select] = ACTIONS(3857), + [anon_sym_as] = ACTIONS(3949), + [anon_sym_is] = ACTIONS(3949), + [anon_sym_DASH_GT] = ACTIONS(3947), + [anon_sym_with] = ACTIONS(3949), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -453040,10 +452654,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2788] = { - [sym__variable_designation] = STATE(3245), - [sym_parenthesized_variable_designation] = STATE(3340), - [sym_identifier] = STATE(3345), - [sym__reserved_identifier] = STATE(3177), [sym_preproc_region] = STATE(2788), [sym_preproc_endregion] = STATE(2788), [sym_preproc_line] = STATE(2788), @@ -453053,65 +452663,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(3875), - [anon_sym_alias] = ACTIONS(3877), - [anon_sym_global] = ACTIONS(3877), - [anon_sym_LBRACK] = ACTIONS(3957), - [anon_sym_LPAREN] = ACTIONS(3957), - [anon_sym_file] = ACTIONS(3877), - [anon_sym_LT] = ACTIONS(3959), - [anon_sym_GT] = ACTIONS(3959), - [anon_sym_where] = ACTIONS(3877), - [anon_sym_QMARK] = ACTIONS(3959), - [anon_sym_notnull] = ACTIONS(3877), - [anon_sym_unmanaged] = ACTIONS(3877), - [anon_sym_BANG] = ACTIONS(3959), - [anon_sym_PLUS_PLUS] = ACTIONS(3957), - [anon_sym_DASH_DASH] = ACTIONS(3957), - [anon_sym_PLUS] = ACTIONS(3959), - [anon_sym_DASH] = ACTIONS(3959), - [anon_sym_STAR] = ACTIONS(3957), - [anon_sym_SLASH] = ACTIONS(3959), - [anon_sym_PERCENT] = ACTIONS(3957), - [anon_sym_CARET] = ACTIONS(3957), - [anon_sym_PIPE] = ACTIONS(3959), - [anon_sym_AMP] = ACTIONS(3959), - [anon_sym_LT_LT] = ACTIONS(3957), - [anon_sym_GT_GT] = ACTIONS(3959), - [anon_sym_GT_GT_GT] = ACTIONS(3957), - [anon_sym_EQ_EQ] = ACTIONS(3957), - [anon_sym_BANG_EQ] = ACTIONS(3957), - [anon_sym_GT_EQ] = ACTIONS(3957), - [anon_sym_LT_EQ] = ACTIONS(3957), - [anon_sym_DOT] = ACTIONS(3959), - [anon_sym_scoped] = ACTIONS(3877), - [anon_sym_var] = ACTIONS(3877), - [anon_sym_yield] = ACTIONS(3877), - [anon_sym_switch] = ACTIONS(3959), - [anon_sym_when] = ACTIONS(3877), - [sym_discard] = ACTIONS(3885), - [anon_sym_DOT_DOT] = ACTIONS(3957), - [anon_sym_and] = ACTIONS(3959), - [anon_sym_or] = ACTIONS(3959), - [anon_sym_AMP_AMP] = ACTIONS(3957), - [anon_sym_PIPE_PIPE] = ACTIONS(3957), - [anon_sym_QMARK_QMARK] = ACTIONS(3957), - [anon_sym_from] = ACTIONS(3877), - [anon_sym_into] = ACTIONS(3959), - [anon_sym_join] = ACTIONS(3877), - [anon_sym_on] = ACTIONS(3877), - [anon_sym_equals] = ACTIONS(3959), - [anon_sym_let] = ACTIONS(3877), - [anon_sym_orderby] = ACTIONS(3877), - [anon_sym_ascending] = ACTIONS(3877), - [anon_sym_descending] = ACTIONS(3877), - [anon_sym_group] = ACTIONS(3877), - [anon_sym_by] = ACTIONS(3877), - [anon_sym_select] = ACTIONS(3877), - [anon_sym_as] = ACTIONS(3959), - [anon_sym_is] = ACTIONS(3959), - [anon_sym_DASH_GT] = ACTIONS(3957), - [anon_sym_with] = ACTIONS(3959), + [sym__identifier_token] = ACTIONS(3363), + [anon_sym_extern] = ACTIONS(3363), + [anon_sym_alias] = ACTIONS(3363), + [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_event] = 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_RBRACE] = 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_TILDE] = ACTIONS(3365), + [anon_sym_implicit] = ACTIONS(3363), + [anon_sym_explicit] = ACTIONS(3363), + [anon_sym_scoped] = ACTIONS(3363), + [anon_sym_var] = ACTIONS(3363), + [sym_predefined_type] = ACTIONS(3363), + [anon_sym_yield] = ACTIONS(3363), + [anon_sym_when] = ACTIONS(3363), + [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), + [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), @@ -453124,10 +452738,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2789] = { - [sym__variable_designation] = STATE(3318), - [sym_parenthesized_variable_designation] = STATE(3340), - [sym_identifier] = STATE(3345), - [sym__reserved_identifier] = STATE(3177), [sym_preproc_region] = STATE(2789), [sym_preproc_endregion] = STATE(2789), [sym_preproc_line] = STATE(2789), @@ -453137,77 +452747,85 @@ 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(3875), - [anon_sym_alias] = ACTIONS(3877), - [anon_sym_global] = ACTIONS(3877), - [anon_sym_LBRACK] = ACTIONS(3961), - [anon_sym_LPAREN] = ACTIONS(3961), - [anon_sym_file] = ACTIONS(3877), - [anon_sym_LT] = ACTIONS(3963), - [anon_sym_GT] = ACTIONS(3963), - [anon_sym_where] = ACTIONS(3877), - [anon_sym_QMARK] = ACTIONS(3963), - [anon_sym_notnull] = ACTIONS(3877), - [anon_sym_unmanaged] = ACTIONS(3877), - [anon_sym_BANG] = ACTIONS(3963), - [anon_sym_PLUS_PLUS] = ACTIONS(3961), - [anon_sym_DASH_DASH] = ACTIONS(3961), - [anon_sym_PLUS] = ACTIONS(3963), - [anon_sym_DASH] = ACTIONS(3963), - [anon_sym_STAR] = ACTIONS(3961), - [anon_sym_SLASH] = ACTIONS(3963), - [anon_sym_PERCENT] = ACTIONS(3961), - [anon_sym_CARET] = ACTIONS(3961), - [anon_sym_PIPE] = ACTIONS(3963), - [anon_sym_AMP] = ACTIONS(3963), - [anon_sym_LT_LT] = ACTIONS(3961), - [anon_sym_GT_GT] = ACTIONS(3963), - [anon_sym_GT_GT_GT] = ACTIONS(3961), - [anon_sym_EQ_EQ] = ACTIONS(3961), - [anon_sym_BANG_EQ] = ACTIONS(3961), - [anon_sym_GT_EQ] = ACTIONS(3961), - [anon_sym_LT_EQ] = ACTIONS(3961), - [anon_sym_DOT] = ACTIONS(3963), - [anon_sym_scoped] = ACTIONS(3877), - [anon_sym_var] = ACTIONS(3877), - [anon_sym_yield] = ACTIONS(3877), - [anon_sym_switch] = ACTIONS(3963), - [anon_sym_when] = ACTIONS(3877), - [sym_discard] = ACTIONS(3885), - [anon_sym_DOT_DOT] = ACTIONS(3961), - [anon_sym_and] = ACTIONS(3963), - [anon_sym_or] = ACTIONS(3963), - [anon_sym_AMP_AMP] = ACTIONS(3961), - [anon_sym_PIPE_PIPE] = ACTIONS(3961), - [anon_sym_QMARK_QMARK] = ACTIONS(3961), - [anon_sym_from] = ACTIONS(3877), - [anon_sym_into] = ACTIONS(3963), - [anon_sym_join] = ACTIONS(3877), - [anon_sym_on] = ACTIONS(3877), - [anon_sym_equals] = ACTIONS(3963), - [anon_sym_let] = ACTIONS(3877), - [anon_sym_orderby] = ACTIONS(3877), - [anon_sym_ascending] = ACTIONS(3877), - [anon_sym_descending] = ACTIONS(3877), - [anon_sym_group] = ACTIONS(3877), - [anon_sym_by] = ACTIONS(3877), - [anon_sym_select] = ACTIONS(3877), - [anon_sym_as] = ACTIONS(3963), - [anon_sym_is] = ACTIONS(3963), - [anon_sym_DASH_GT] = ACTIONS(3961), - [anon_sym_with] = ACTIONS(3963), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_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(4054), + [anon_sym_alias] = ACTIONS(4054), + [anon_sym_global] = ACTIONS(4054), + [anon_sym_LBRACK] = ACTIONS(4056), + [anon_sym_COLON] = ACTIONS(4056), + [anon_sym_COMMA] = ACTIONS(4056), + [anon_sym_LPAREN] = ACTIONS(4056), + [anon_sym_LBRACE] = ACTIONS(4056), + [anon_sym_file] = ACTIONS(4054), + [anon_sym_LT] = ACTIONS(4054), + [anon_sym_GT] = ACTIONS(4054), + [anon_sym_where] = ACTIONS(4054), + [anon_sym_QMARK] = ACTIONS(4054), + [anon_sym_notnull] = ACTIONS(4054), + [anon_sym_unmanaged] = ACTIONS(4054), + [anon_sym_BANG] = ACTIONS(4054), + [anon_sym_PLUS_PLUS] = ACTIONS(4056), + [anon_sym_DASH_DASH] = ACTIONS(4056), + [anon_sym_PLUS] = ACTIONS(4054), + [anon_sym_DASH] = ACTIONS(4054), + [anon_sym_STAR] = ACTIONS(4056), + [anon_sym_SLASH] = ACTIONS(4054), + [anon_sym_PERCENT] = ACTIONS(4056), + [anon_sym_CARET] = ACTIONS(4056), + [anon_sym_PIPE] = ACTIONS(4054), + [anon_sym_AMP] = ACTIONS(4054), + [anon_sym_LT_LT] = ACTIONS(4056), + [anon_sym_GT_GT] = ACTIONS(4054), + [anon_sym_GT_GT_GT] = ACTIONS(4056), + [anon_sym_EQ_EQ] = ACTIONS(4056), + [anon_sym_BANG_EQ] = ACTIONS(4056), + [anon_sym_GT_EQ] = ACTIONS(4056), + [anon_sym_LT_EQ] = ACTIONS(4056), + [anon_sym_DOT] = ACTIONS(4054), + [anon_sym_scoped] = ACTIONS(4054), + [anon_sym_var] = ACTIONS(4054), + [anon_sym_yield] = ACTIONS(4054), + [anon_sym_switch] = ACTIONS(4054), + [anon_sym_when] = ACTIONS(4054), + [sym_discard] = ACTIONS(4054), + [anon_sym_DOT_DOT] = ACTIONS(4056), + [anon_sym_and] = ACTIONS(4054), + [anon_sym_or] = ACTIONS(4054), + [anon_sym_AMP_AMP] = ACTIONS(4056), + [anon_sym_PIPE_PIPE] = ACTIONS(4056), + [anon_sym_QMARK_QMARK] = ACTIONS(4056), + [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_ascending] = ACTIONS(4054), + [anon_sym_descending] = 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(4056), + [anon_sym_with] = 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), + [sym_interpolation_close_brace] = ACTIONS(4056), }, [2790] = { + [sym__variable_designation] = STATE(4159), + [sym_parenthesized_variable_designation] = STATE(4116), + [sym_identifier] = STATE(4152), + [sym__reserved_identifier] = STATE(2916), [sym_preproc_region] = STATE(2790), [sym_preproc_endregion] = STATE(2790), [sym_preproc_line] = STATE(2790), @@ -453217,69 +452835,65 @@ 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), - [anon_sym_SEMI] = ACTIONS(3662), - [anon_sym_EQ] = ACTIONS(3660), - [anon_sym_LBRACK] = ACTIONS(3662), - [anon_sym_COLON] = ACTIONS(3662), - [anon_sym_COMMA] = ACTIONS(3662), - [anon_sym_RBRACK] = ACTIONS(3662), - [anon_sym_LPAREN] = ACTIONS(3662), - [anon_sym_RPAREN] = ACTIONS(3662), - [anon_sym_RBRACE] = ACTIONS(3662), - [anon_sym_LT] = ACTIONS(3660), - [anon_sym_GT] = ACTIONS(3660), - [anon_sym_in] = ACTIONS(3662), - [anon_sym_QMARK] = ACTIONS(3660), - [anon_sym_BANG] = ACTIONS(3660), - [anon_sym_PLUS_PLUS] = ACTIONS(3662), - [anon_sym_DASH_DASH] = ACTIONS(3662), - [anon_sym_PLUS] = ACTIONS(3660), - [anon_sym_DASH] = ACTIONS(3660), - [anon_sym_STAR] = ACTIONS(3660), - [anon_sym_SLASH] = ACTIONS(3660), - [anon_sym_PERCENT] = ACTIONS(3660), - [anon_sym_CARET] = ACTIONS(3660), - [anon_sym_PIPE] = ACTIONS(3660), - [anon_sym_AMP] = ACTIONS(3660), - [anon_sym_LT_LT] = ACTIONS(3660), - [anon_sym_GT_GT] = ACTIONS(3660), - [anon_sym_GT_GT_GT] = ACTIONS(3660), - [anon_sym_EQ_EQ] = ACTIONS(3662), - [anon_sym_BANG_EQ] = ACTIONS(3662), - [anon_sym_GT_EQ] = ACTIONS(3662), - [anon_sym_LT_EQ] = ACTIONS(3662), - [anon_sym_DOT] = ACTIONS(3660), - [anon_sym_EQ_GT] = ACTIONS(3662), - [anon_sym_switch] = ACTIONS(3662), - [anon_sym_when] = ACTIONS(3662), - [anon_sym_DOT_DOT] = ACTIONS(3662), - [anon_sym_and] = ACTIONS(3662), - [anon_sym_or] = ACTIONS(3662), - [anon_sym_PLUS_EQ] = ACTIONS(3662), - [anon_sym_DASH_EQ] = ACTIONS(3662), - [anon_sym_STAR_EQ] = ACTIONS(3662), - [anon_sym_SLASH_EQ] = ACTIONS(3662), - [anon_sym_PERCENT_EQ] = ACTIONS(3662), - [anon_sym_AMP_EQ] = ACTIONS(3662), - [anon_sym_CARET_EQ] = ACTIONS(3662), - [anon_sym_PIPE_EQ] = ACTIONS(3662), - [anon_sym_LT_LT_EQ] = ACTIONS(3662), - [anon_sym_GT_GT_EQ] = ACTIONS(3662), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3662), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3662), - [anon_sym_AMP_AMP] = ACTIONS(3662), - [anon_sym_PIPE_PIPE] = ACTIONS(3662), - [anon_sym_QMARK_QMARK] = ACTIONS(3660), - [anon_sym_on] = ACTIONS(3662), - [anon_sym_equals] = ACTIONS(3662), - [anon_sym_by] = ACTIONS(3662), - [anon_sym_as] = ACTIONS(3662), - [anon_sym_is] = ACTIONS(3662), - [anon_sym_DASH_GT] = ACTIONS(3662), - [anon_sym_with] = ACTIONS(3662), - [aux_sym_preproc_if_token3] = ACTIONS(3662), - [aux_sym_preproc_else_token1] = ACTIONS(3662), - [aux_sym_preproc_elif_token1] = ACTIONS(3662), + [sym__identifier_token] = ACTIONS(3871), + [anon_sym_alias] = ACTIONS(3873), + [anon_sym_global] = ACTIONS(3873), + [anon_sym_LBRACK] = ACTIONS(3885), + [anon_sym_LPAREN] = ACTIONS(3885), + [anon_sym_file] = ACTIONS(3873), + [anon_sym_LT] = ACTIONS(3887), + [anon_sym_GT] = ACTIONS(3887), + [anon_sym_where] = ACTIONS(3887), + [anon_sym_QMARK] = ACTIONS(3887), + [anon_sym_notnull] = ACTIONS(3873), + [anon_sym_unmanaged] = ACTIONS(3873), + [anon_sym_BANG] = ACTIONS(3887), + [anon_sym_PLUS_PLUS] = ACTIONS(3885), + [anon_sym_DASH_DASH] = ACTIONS(3885), + [anon_sym_PLUS] = ACTIONS(3887), + [anon_sym_DASH] = ACTIONS(3887), + [anon_sym_STAR] = ACTIONS(3885), + [anon_sym_SLASH] = ACTIONS(3887), + [anon_sym_PERCENT] = ACTIONS(3885), + [anon_sym_CARET] = ACTIONS(3885), + [anon_sym_PIPE] = ACTIONS(3887), + [anon_sym_AMP] = ACTIONS(3887), + [anon_sym_LT_LT] = ACTIONS(3885), + [anon_sym_GT_GT] = ACTIONS(3887), + [anon_sym_GT_GT_GT] = ACTIONS(3885), + [anon_sym_EQ_EQ] = ACTIONS(3885), + [anon_sym_BANG_EQ] = ACTIONS(3885), + [anon_sym_GT_EQ] = ACTIONS(3885), + [anon_sym_LT_EQ] = ACTIONS(3885), + [anon_sym_DOT] = ACTIONS(3887), + [anon_sym_scoped] = ACTIONS(3873), + [anon_sym_var] = ACTIONS(3873), + [anon_sym_yield] = ACTIONS(3873), + [anon_sym_switch] = ACTIONS(3887), + [anon_sym_when] = ACTIONS(3873), + [sym_discard] = ACTIONS(4187), + [anon_sym_DOT_DOT] = ACTIONS(3885), + [anon_sym_and] = ACTIONS(3887), + [anon_sym_or] = ACTIONS(3887), + [anon_sym_AMP_AMP] = ACTIONS(3885), + [anon_sym_PIPE_PIPE] = ACTIONS(3885), + [anon_sym_QMARK_QMARK] = ACTIONS(3885), + [anon_sym_from] = ACTIONS(3887), + [anon_sym_into] = ACTIONS(3873), + [anon_sym_join] = ACTIONS(3887), + [anon_sym_on] = ACTIONS(3873), + [anon_sym_equals] = ACTIONS(3873), + [anon_sym_let] = ACTIONS(3887), + [anon_sym_orderby] = ACTIONS(3887), + [anon_sym_ascending] = ACTIONS(3873), + [anon_sym_descending] = ACTIONS(3873), + [anon_sym_group] = ACTIONS(3887), + [anon_sym_by] = ACTIONS(3873), + [anon_sym_select] = ACTIONS(3887), + [anon_sym_as] = ACTIONS(3887), + [anon_sym_is] = ACTIONS(3887), + [anon_sym_DASH_GT] = ACTIONS(3885), + [anon_sym_with] = ACTIONS(3887), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -453301,85 +452915,85 @@ 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(4016), - [anon_sym_alias] = ACTIONS(4016), - [anon_sym_global] = ACTIONS(4016), - [anon_sym_LBRACK] = ACTIONS(4018), - [anon_sym_COLON] = ACTIONS(4018), - [anon_sym_COMMA] = ACTIONS(4018), - [anon_sym_LPAREN] = ACTIONS(4018), - [anon_sym_LBRACE] = ACTIONS(4018), - [anon_sym_file] = ACTIONS(4016), - [anon_sym_LT] = ACTIONS(4016), - [anon_sym_GT] = ACTIONS(4016), - [anon_sym_where] = ACTIONS(4016), - [anon_sym_QMARK] = ACTIONS(4016), - [anon_sym_notnull] = ACTIONS(4016), - [anon_sym_unmanaged] = ACTIONS(4016), - [anon_sym_BANG] = ACTIONS(4016), - [anon_sym_PLUS_PLUS] = ACTIONS(4018), - [anon_sym_DASH_DASH] = ACTIONS(4018), - [anon_sym_PLUS] = ACTIONS(4016), - [anon_sym_DASH] = ACTIONS(4016), - [anon_sym_STAR] = ACTIONS(4018), - [anon_sym_SLASH] = ACTIONS(4016), - [anon_sym_PERCENT] = ACTIONS(4018), - [anon_sym_CARET] = ACTIONS(4018), - [anon_sym_PIPE] = ACTIONS(4016), - [anon_sym_AMP] = ACTIONS(4016), - [anon_sym_LT_LT] = ACTIONS(4018), - [anon_sym_GT_GT] = ACTIONS(4016), - [anon_sym_GT_GT_GT] = ACTIONS(4018), - [anon_sym_EQ_EQ] = ACTIONS(4018), - [anon_sym_BANG_EQ] = ACTIONS(4018), - [anon_sym_GT_EQ] = ACTIONS(4018), - [anon_sym_LT_EQ] = ACTIONS(4018), - [anon_sym_DOT] = ACTIONS(4016), - [anon_sym_scoped] = ACTIONS(4016), - [anon_sym_var] = ACTIONS(4016), - [anon_sym_yield] = ACTIONS(4016), - [anon_sym_switch] = ACTIONS(4016), - [anon_sym_when] = ACTIONS(4016), - [sym_discard] = ACTIONS(4016), - [anon_sym_DOT_DOT] = ACTIONS(4018), - [anon_sym_and] = ACTIONS(4016), - [anon_sym_or] = ACTIONS(4016), - [anon_sym_AMP_AMP] = ACTIONS(4018), - [anon_sym_PIPE_PIPE] = ACTIONS(4018), - [anon_sym_QMARK_QMARK] = ACTIONS(4018), - [anon_sym_from] = ACTIONS(4016), - [anon_sym_into] = ACTIONS(4016), - [anon_sym_join] = ACTIONS(4016), - [anon_sym_on] = ACTIONS(4016), - [anon_sym_equals] = ACTIONS(4016), - [anon_sym_let] = ACTIONS(4016), - [anon_sym_orderby] = ACTIONS(4016), - [anon_sym_ascending] = ACTIONS(4016), - [anon_sym_descending] = ACTIONS(4016), - [anon_sym_group] = ACTIONS(4016), - [anon_sym_by] = ACTIONS(4016), - [anon_sym_select] = ACTIONS(4016), - [anon_sym_as] = ACTIONS(4016), - [anon_sym_is] = ACTIONS(4016), - [anon_sym_DASH_GT] = ACTIONS(4018), - [anon_sym_with] = ACTIONS(4016), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_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(4018), + [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), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), }, [2792] = { - [sym__variable_designation] = STATE(3350), - [sym_parenthesized_variable_designation] = STATE(3340), - [sym_identifier] = STATE(3345), - [sym__reserved_identifier] = STATE(3177), + [sym__variable_designation] = STATE(3227), + [sym_parenthesized_variable_designation] = STATE(3344), + [sym_identifier] = STATE(3346), + [sym__reserved_identifier] = STATE(3199), [sym_preproc_region] = STATE(2792), [sym_preproc_endregion] = STATE(2792), [sym_preproc_line] = STATE(2792), @@ -453389,65 +453003,65 @@ 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(3875), - [anon_sym_alias] = ACTIONS(3877), - [anon_sym_global] = ACTIONS(3877), - [anon_sym_LBRACK] = ACTIONS(3905), - [anon_sym_LPAREN] = ACTIONS(3905), - [anon_sym_file] = ACTIONS(3877), - [anon_sym_LT] = ACTIONS(3907), - [anon_sym_GT] = ACTIONS(3907), - [anon_sym_where] = ACTIONS(3877), - [anon_sym_QMARK] = ACTIONS(3907), - [anon_sym_notnull] = ACTIONS(3877), - [anon_sym_unmanaged] = ACTIONS(3877), - [anon_sym_BANG] = ACTIONS(3907), - [anon_sym_PLUS_PLUS] = ACTIONS(3905), - [anon_sym_DASH_DASH] = ACTIONS(3905), - [anon_sym_PLUS] = ACTIONS(3907), - [anon_sym_DASH] = ACTIONS(3907), - [anon_sym_STAR] = ACTIONS(3905), - [anon_sym_SLASH] = ACTIONS(3907), - [anon_sym_PERCENT] = ACTIONS(3905), - [anon_sym_CARET] = ACTIONS(3905), - [anon_sym_PIPE] = ACTIONS(3907), - [anon_sym_AMP] = ACTIONS(3907), - [anon_sym_LT_LT] = ACTIONS(3905), - [anon_sym_GT_GT] = ACTIONS(3907), - [anon_sym_GT_GT_GT] = ACTIONS(3905), - [anon_sym_EQ_EQ] = ACTIONS(3905), - [anon_sym_BANG_EQ] = ACTIONS(3905), - [anon_sym_GT_EQ] = ACTIONS(3905), - [anon_sym_LT_EQ] = ACTIONS(3905), - [anon_sym_DOT] = ACTIONS(3907), - [anon_sym_scoped] = ACTIONS(3877), - [anon_sym_var] = ACTIONS(3877), - [anon_sym_yield] = ACTIONS(3877), - [anon_sym_switch] = ACTIONS(3907), - [anon_sym_when] = ACTIONS(3877), - [sym_discard] = ACTIONS(3885), - [anon_sym_DOT_DOT] = ACTIONS(3905), - [anon_sym_and] = ACTIONS(3907), - [anon_sym_or] = ACTIONS(3907), - [anon_sym_AMP_AMP] = ACTIONS(3905), - [anon_sym_PIPE_PIPE] = ACTIONS(3905), - [anon_sym_QMARK_QMARK] = ACTIONS(3905), - [anon_sym_from] = ACTIONS(3877), - [anon_sym_into] = ACTIONS(3907), - [anon_sym_join] = ACTIONS(3877), - [anon_sym_on] = ACTIONS(3907), - [anon_sym_equals] = ACTIONS(3877), - [anon_sym_let] = ACTIONS(3877), - [anon_sym_orderby] = ACTIONS(3877), - [anon_sym_ascending] = ACTIONS(3877), - [anon_sym_descending] = ACTIONS(3877), - [anon_sym_group] = ACTIONS(3877), - [anon_sym_by] = ACTIONS(3877), - [anon_sym_select] = ACTIONS(3877), - [anon_sym_as] = ACTIONS(3907), - [anon_sym_is] = ACTIONS(3907), - [anon_sym_DASH_GT] = ACTIONS(3905), - [anon_sym_with] = ACTIONS(3907), + [sym__identifier_token] = ACTIONS(3855), + [anon_sym_alias] = ACTIONS(3857), + [anon_sym_global] = ACTIONS(3857), + [anon_sym_LBRACK] = ACTIONS(3893), + [anon_sym_LPAREN] = ACTIONS(3893), + [anon_sym_file] = ACTIONS(3857), + [anon_sym_LT] = ACTIONS(3895), + [anon_sym_GT] = ACTIONS(3895), + [anon_sym_where] = ACTIONS(3857), + [anon_sym_QMARK] = ACTIONS(3895), + [anon_sym_notnull] = ACTIONS(3857), + [anon_sym_unmanaged] = ACTIONS(3857), + [anon_sym_BANG] = ACTIONS(3895), + [anon_sym_PLUS_PLUS] = ACTIONS(3893), + [anon_sym_DASH_DASH] = ACTIONS(3893), + [anon_sym_PLUS] = ACTIONS(3895), + [anon_sym_DASH] = ACTIONS(3895), + [anon_sym_STAR] = ACTIONS(3893), + [anon_sym_SLASH] = ACTIONS(3895), + [anon_sym_PERCENT] = ACTIONS(3893), + [anon_sym_CARET] = ACTIONS(3893), + [anon_sym_PIPE] = ACTIONS(3895), + [anon_sym_AMP] = ACTIONS(3895), + [anon_sym_LT_LT] = ACTIONS(3893), + [anon_sym_GT_GT] = ACTIONS(3895), + [anon_sym_GT_GT_GT] = ACTIONS(3893), + [anon_sym_EQ_EQ] = ACTIONS(3893), + [anon_sym_BANG_EQ] = ACTIONS(3893), + [anon_sym_GT_EQ] = ACTIONS(3893), + [anon_sym_LT_EQ] = ACTIONS(3893), + [anon_sym_DOT] = ACTIONS(3895), + [anon_sym_scoped] = ACTIONS(3857), + [anon_sym_var] = ACTIONS(3857), + [anon_sym_yield] = ACTIONS(3857), + [anon_sym_switch] = ACTIONS(3895), + [anon_sym_when] = ACTIONS(3857), + [sym_discard] = ACTIONS(3865), + [anon_sym_DOT_DOT] = ACTIONS(3893), + [anon_sym_and] = ACTIONS(3895), + [anon_sym_or] = ACTIONS(3895), + [anon_sym_AMP_AMP] = ACTIONS(3893), + [anon_sym_PIPE_PIPE] = ACTIONS(3893), + [anon_sym_QMARK_QMARK] = ACTIONS(3893), + [anon_sym_from] = ACTIONS(3857), + [anon_sym_into] = ACTIONS(3895), + [anon_sym_join] = ACTIONS(3857), + [anon_sym_on] = ACTIONS(3895), + [anon_sym_equals] = ACTIONS(3857), + [anon_sym_let] = ACTIONS(3857), + [anon_sym_orderby] = ACTIONS(3857), + [anon_sym_ascending] = ACTIONS(3857), + [anon_sym_descending] = ACTIONS(3857), + [anon_sym_group] = ACTIONS(3857), + [anon_sym_by] = ACTIONS(3857), + [anon_sym_select] = ACTIONS(3857), + [anon_sym_as] = ACTIONS(3895), + [anon_sym_is] = ACTIONS(3895), + [anon_sym_DASH_GT] = ACTIONS(3893), + [anon_sym_with] = ACTIONS(3895), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -453460,10 +453074,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2793] = { - [sym__variable_designation] = STATE(3234), - [sym_parenthesized_variable_designation] = STATE(3340), - [sym_identifier] = STATE(3345), - [sym__reserved_identifier] = STATE(3177), [sym_preproc_region] = STATE(2793), [sym_preproc_endregion] = STATE(2793), [sym_preproc_line] = STATE(2793), @@ -453473,65 +453083,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(3875), - [anon_sym_alias] = ACTIONS(3877), - [anon_sym_global] = ACTIONS(3877), - [anon_sym_LBRACK] = ACTIONS(3913), - [anon_sym_LPAREN] = ACTIONS(3913), - [anon_sym_file] = ACTIONS(3877), - [anon_sym_LT] = ACTIONS(3915), - [anon_sym_GT] = ACTIONS(3915), - [anon_sym_where] = ACTIONS(3877), - [anon_sym_QMARK] = ACTIONS(3915), - [anon_sym_notnull] = ACTIONS(3877), - [anon_sym_unmanaged] = ACTIONS(3877), - [anon_sym_BANG] = ACTIONS(3915), - [anon_sym_PLUS_PLUS] = ACTIONS(3913), - [anon_sym_DASH_DASH] = ACTIONS(3913), - [anon_sym_PLUS] = ACTIONS(3915), - [anon_sym_DASH] = ACTIONS(3915), - [anon_sym_STAR] = ACTIONS(3913), - [anon_sym_SLASH] = ACTIONS(3915), - [anon_sym_PERCENT] = ACTIONS(3913), - [anon_sym_CARET] = ACTIONS(3913), - [anon_sym_PIPE] = ACTIONS(3915), - [anon_sym_AMP] = ACTIONS(3915), - [anon_sym_LT_LT] = ACTIONS(3913), - [anon_sym_GT_GT] = ACTIONS(3915), - [anon_sym_GT_GT_GT] = ACTIONS(3913), - [anon_sym_EQ_EQ] = ACTIONS(3913), - [anon_sym_BANG_EQ] = ACTIONS(3913), - [anon_sym_GT_EQ] = ACTIONS(3913), - [anon_sym_LT_EQ] = ACTIONS(3913), - [anon_sym_DOT] = ACTIONS(3915), - [anon_sym_scoped] = ACTIONS(3877), - [anon_sym_var] = ACTIONS(3877), - [anon_sym_yield] = ACTIONS(3877), - [anon_sym_switch] = ACTIONS(3915), - [anon_sym_when] = ACTIONS(3877), - [sym_discard] = ACTIONS(3885), - [anon_sym_DOT_DOT] = ACTIONS(3913), - [anon_sym_and] = ACTIONS(3915), - [anon_sym_or] = ACTIONS(3915), - [anon_sym_AMP_AMP] = ACTIONS(3913), - [anon_sym_PIPE_PIPE] = ACTIONS(3913), - [anon_sym_QMARK_QMARK] = ACTIONS(3913), - [anon_sym_from] = ACTIONS(3877), - [anon_sym_into] = ACTIONS(3915), - [anon_sym_join] = ACTIONS(3877), - [anon_sym_on] = ACTIONS(3915), - [anon_sym_equals] = ACTIONS(3877), - [anon_sym_let] = ACTIONS(3877), - [anon_sym_orderby] = ACTIONS(3877), - [anon_sym_ascending] = ACTIONS(3877), - [anon_sym_descending] = ACTIONS(3877), - [anon_sym_group] = ACTIONS(3877), - [anon_sym_by] = ACTIONS(3877), - [anon_sym_select] = ACTIONS(3877), - [anon_sym_as] = ACTIONS(3915), - [anon_sym_is] = ACTIONS(3915), - [anon_sym_DASH_GT] = ACTIONS(3913), - [anon_sym_with] = ACTIONS(3915), + [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), @@ -453544,10 +453158,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2794] = { - [sym__variable_designation] = STATE(3245), - [sym_parenthesized_variable_designation] = STATE(3340), - [sym_identifier] = STATE(3345), - [sym__reserved_identifier] = STATE(3177), + [sym__variable_designation] = STATE(4162), + [sym_parenthesized_variable_designation] = STATE(4116), + [sym_identifier] = STATE(4152), + [sym__reserved_identifier] = STATE(2916), [sym_preproc_region] = STATE(2794), [sym_preproc_endregion] = STATE(2794), [sym_preproc_line] = STATE(2794), @@ -453557,65 +453171,65 @@ 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(3875), - [anon_sym_alias] = ACTIONS(3877), - [anon_sym_global] = ACTIONS(3877), - [anon_sym_LBRACK] = ACTIONS(3957), - [anon_sym_LPAREN] = ACTIONS(3957), - [anon_sym_file] = ACTIONS(3877), - [anon_sym_LT] = ACTIONS(3959), - [anon_sym_GT] = ACTIONS(3959), - [anon_sym_where] = ACTIONS(3877), - [anon_sym_QMARK] = ACTIONS(3959), - [anon_sym_notnull] = ACTIONS(3877), - [anon_sym_unmanaged] = ACTIONS(3877), - [anon_sym_BANG] = ACTIONS(3959), - [anon_sym_PLUS_PLUS] = ACTIONS(3957), - [anon_sym_DASH_DASH] = ACTIONS(3957), - [anon_sym_PLUS] = ACTIONS(3959), - [anon_sym_DASH] = ACTIONS(3959), - [anon_sym_STAR] = ACTIONS(3957), - [anon_sym_SLASH] = ACTIONS(3959), - [anon_sym_PERCENT] = ACTIONS(3957), - [anon_sym_CARET] = ACTIONS(3957), - [anon_sym_PIPE] = ACTIONS(3959), - [anon_sym_AMP] = ACTIONS(3959), - [anon_sym_LT_LT] = ACTIONS(3957), - [anon_sym_GT_GT] = ACTIONS(3959), - [anon_sym_GT_GT_GT] = ACTIONS(3957), - [anon_sym_EQ_EQ] = ACTIONS(3957), - [anon_sym_BANG_EQ] = ACTIONS(3957), - [anon_sym_GT_EQ] = ACTIONS(3957), - [anon_sym_LT_EQ] = ACTIONS(3957), - [anon_sym_DOT] = ACTIONS(3959), - [anon_sym_scoped] = ACTIONS(3877), - [anon_sym_var] = ACTIONS(3877), - [anon_sym_yield] = ACTIONS(3877), - [anon_sym_switch] = ACTIONS(3959), - [anon_sym_when] = ACTIONS(3877), - [sym_discard] = ACTIONS(3885), - [anon_sym_DOT_DOT] = ACTIONS(3957), - [anon_sym_and] = ACTIONS(3959), - [anon_sym_or] = ACTIONS(3959), - [anon_sym_AMP_AMP] = ACTIONS(3957), - [anon_sym_PIPE_PIPE] = ACTIONS(3957), - [anon_sym_QMARK_QMARK] = ACTIONS(3957), - [anon_sym_from] = ACTIONS(3877), - [anon_sym_into] = ACTIONS(3959), - [anon_sym_join] = ACTIONS(3877), - [anon_sym_on] = ACTIONS(3959), - [anon_sym_equals] = ACTIONS(3877), - [anon_sym_let] = ACTIONS(3877), - [anon_sym_orderby] = ACTIONS(3877), - [anon_sym_ascending] = ACTIONS(3877), - [anon_sym_descending] = ACTIONS(3877), - [anon_sym_group] = ACTIONS(3877), - [anon_sym_by] = ACTIONS(3877), - [anon_sym_select] = ACTIONS(3877), - [anon_sym_as] = ACTIONS(3959), - [anon_sym_is] = ACTIONS(3959), - [anon_sym_DASH_GT] = ACTIONS(3957), - [anon_sym_with] = ACTIONS(3959), + [sym__identifier_token] = ACTIONS(3871), + [anon_sym_alias] = ACTIONS(3873), + [anon_sym_global] = ACTIONS(3873), + [anon_sym_LBRACK] = ACTIONS(3939), + [anon_sym_LPAREN] = ACTIONS(3939), + [anon_sym_file] = ACTIONS(3873), + [anon_sym_LT] = ACTIONS(3941), + [anon_sym_GT] = ACTIONS(3941), + [anon_sym_where] = ACTIONS(3941), + [anon_sym_QMARK] = ACTIONS(3941), + [anon_sym_notnull] = ACTIONS(3873), + [anon_sym_unmanaged] = ACTIONS(3873), + [anon_sym_BANG] = ACTIONS(3941), + [anon_sym_PLUS_PLUS] = ACTIONS(3939), + [anon_sym_DASH_DASH] = ACTIONS(3939), + [anon_sym_PLUS] = ACTIONS(3941), + [anon_sym_DASH] = ACTIONS(3941), + [anon_sym_STAR] = ACTIONS(3939), + [anon_sym_SLASH] = ACTIONS(3941), + [anon_sym_PERCENT] = ACTIONS(3939), + [anon_sym_CARET] = ACTIONS(3939), + [anon_sym_PIPE] = ACTIONS(3941), + [anon_sym_AMP] = ACTIONS(3941), + [anon_sym_LT_LT] = ACTIONS(3939), + [anon_sym_GT_GT] = ACTIONS(3941), + [anon_sym_GT_GT_GT] = ACTIONS(3939), + [anon_sym_EQ_EQ] = ACTIONS(3939), + [anon_sym_BANG_EQ] = ACTIONS(3939), + [anon_sym_GT_EQ] = ACTIONS(3939), + [anon_sym_LT_EQ] = ACTIONS(3939), + [anon_sym_DOT] = ACTIONS(3941), + [anon_sym_scoped] = ACTIONS(3873), + [anon_sym_var] = ACTIONS(3873), + [anon_sym_yield] = ACTIONS(3873), + [anon_sym_switch] = ACTIONS(3941), + [anon_sym_when] = ACTIONS(3873), + [sym_discard] = ACTIONS(4187), + [anon_sym_DOT_DOT] = ACTIONS(3939), + [anon_sym_and] = ACTIONS(3941), + [anon_sym_or] = ACTIONS(3941), + [anon_sym_AMP_AMP] = ACTIONS(3939), + [anon_sym_PIPE_PIPE] = ACTIONS(3939), + [anon_sym_QMARK_QMARK] = ACTIONS(3939), + [anon_sym_from] = ACTIONS(3941), + [anon_sym_into] = ACTIONS(3873), + [anon_sym_join] = ACTIONS(3941), + [anon_sym_on] = ACTIONS(3873), + [anon_sym_equals] = ACTIONS(3873), + [anon_sym_let] = ACTIONS(3941), + [anon_sym_orderby] = ACTIONS(3941), + [anon_sym_ascending] = ACTIONS(3873), + [anon_sym_descending] = ACTIONS(3873), + [anon_sym_group] = ACTIONS(3941), + [anon_sym_by] = ACTIONS(3873), + [anon_sym_select] = ACTIONS(3941), + [anon_sym_as] = ACTIONS(3941), + [anon_sym_is] = ACTIONS(3941), + [anon_sym_DASH_GT] = ACTIONS(3939), + [anon_sym_with] = ACTIONS(3941), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -453628,10 +453242,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2795] = { - [sym__variable_designation] = STATE(3318), - [sym_parenthesized_variable_designation] = STATE(3340), - [sym_identifier] = STATE(3345), - [sym__reserved_identifier] = STATE(3177), + [sym__variable_designation] = STATE(3256), + [sym_parenthesized_variable_designation] = STATE(3344), + [sym_identifier] = STATE(3346), + [sym__reserved_identifier] = STATE(3199), [sym_preproc_region] = STATE(2795), [sym_preproc_endregion] = STATE(2795), [sym_preproc_line] = STATE(2795), @@ -453641,65 +453255,65 @@ 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(3875), - [anon_sym_alias] = ACTIONS(3877), - [anon_sym_global] = ACTIONS(3877), - [anon_sym_LBRACK] = ACTIONS(3961), - [anon_sym_LPAREN] = ACTIONS(3961), - [anon_sym_file] = ACTIONS(3877), - [anon_sym_LT] = ACTIONS(3963), - [anon_sym_GT] = ACTIONS(3963), - [anon_sym_where] = ACTIONS(3877), - [anon_sym_QMARK] = ACTIONS(3963), - [anon_sym_notnull] = ACTIONS(3877), - [anon_sym_unmanaged] = ACTIONS(3877), - [anon_sym_BANG] = ACTIONS(3963), - [anon_sym_PLUS_PLUS] = ACTIONS(3961), - [anon_sym_DASH_DASH] = ACTIONS(3961), - [anon_sym_PLUS] = ACTIONS(3963), - [anon_sym_DASH] = ACTIONS(3963), - [anon_sym_STAR] = ACTIONS(3961), - [anon_sym_SLASH] = ACTIONS(3963), - [anon_sym_PERCENT] = ACTIONS(3961), - [anon_sym_CARET] = ACTIONS(3961), - [anon_sym_PIPE] = ACTIONS(3963), - [anon_sym_AMP] = ACTIONS(3963), - [anon_sym_LT_LT] = ACTIONS(3961), - [anon_sym_GT_GT] = ACTIONS(3963), - [anon_sym_GT_GT_GT] = ACTIONS(3961), - [anon_sym_EQ_EQ] = ACTIONS(3961), - [anon_sym_BANG_EQ] = ACTIONS(3961), - [anon_sym_GT_EQ] = ACTIONS(3961), - [anon_sym_LT_EQ] = ACTIONS(3961), - [anon_sym_DOT] = ACTIONS(3963), - [anon_sym_scoped] = ACTIONS(3877), - [anon_sym_var] = ACTIONS(3877), - [anon_sym_yield] = ACTIONS(3877), - [anon_sym_switch] = ACTIONS(3963), - [anon_sym_when] = ACTIONS(3877), - [sym_discard] = ACTIONS(3885), - [anon_sym_DOT_DOT] = ACTIONS(3961), - [anon_sym_and] = ACTIONS(3963), - [anon_sym_or] = ACTIONS(3963), - [anon_sym_AMP_AMP] = ACTIONS(3961), - [anon_sym_PIPE_PIPE] = ACTIONS(3961), - [anon_sym_QMARK_QMARK] = ACTIONS(3961), - [anon_sym_from] = ACTIONS(3877), - [anon_sym_into] = ACTIONS(3963), - [anon_sym_join] = ACTIONS(3877), - [anon_sym_on] = ACTIONS(3963), - [anon_sym_equals] = ACTIONS(3877), - [anon_sym_let] = ACTIONS(3877), - [anon_sym_orderby] = ACTIONS(3877), - [anon_sym_ascending] = ACTIONS(3877), - [anon_sym_descending] = ACTIONS(3877), - [anon_sym_group] = ACTIONS(3877), - [anon_sym_by] = ACTIONS(3877), - [anon_sym_select] = ACTIONS(3877), - [anon_sym_as] = ACTIONS(3963), - [anon_sym_is] = ACTIONS(3963), - [anon_sym_DASH_GT] = ACTIONS(3961), - [anon_sym_with] = ACTIONS(3963), + [sym__identifier_token] = ACTIONS(3855), + [anon_sym_alias] = ACTIONS(3857), + [anon_sym_global] = ACTIONS(3857), + [anon_sym_LBRACK] = ACTIONS(3885), + [anon_sym_LPAREN] = ACTIONS(3885), + [anon_sym_file] = ACTIONS(3857), + [anon_sym_LT] = ACTIONS(3887), + [anon_sym_GT] = ACTIONS(3887), + [anon_sym_where] = ACTIONS(3857), + [anon_sym_QMARK] = ACTIONS(3887), + [anon_sym_notnull] = ACTIONS(3857), + [anon_sym_unmanaged] = ACTIONS(3857), + [anon_sym_BANG] = ACTIONS(3887), + [anon_sym_PLUS_PLUS] = ACTIONS(3885), + [anon_sym_DASH_DASH] = ACTIONS(3885), + [anon_sym_PLUS] = ACTIONS(3887), + [anon_sym_DASH] = ACTIONS(3887), + [anon_sym_STAR] = ACTIONS(3885), + [anon_sym_SLASH] = ACTIONS(3887), + [anon_sym_PERCENT] = ACTIONS(3885), + [anon_sym_CARET] = ACTIONS(3885), + [anon_sym_PIPE] = ACTIONS(3887), + [anon_sym_AMP] = ACTIONS(3887), + [anon_sym_LT_LT] = ACTIONS(3885), + [anon_sym_GT_GT] = ACTIONS(3887), + [anon_sym_GT_GT_GT] = ACTIONS(3885), + [anon_sym_EQ_EQ] = ACTIONS(3885), + [anon_sym_BANG_EQ] = ACTIONS(3885), + [anon_sym_GT_EQ] = ACTIONS(3885), + [anon_sym_LT_EQ] = ACTIONS(3885), + [anon_sym_DOT] = ACTIONS(3887), + [anon_sym_scoped] = ACTIONS(3857), + [anon_sym_var] = ACTIONS(3857), + [anon_sym_yield] = ACTIONS(3857), + [anon_sym_switch] = ACTIONS(3887), + [anon_sym_when] = ACTIONS(3857), + [sym_discard] = ACTIONS(3865), + [anon_sym_DOT_DOT] = ACTIONS(3885), + [anon_sym_and] = ACTIONS(3887), + [anon_sym_or] = ACTIONS(3887), + [anon_sym_AMP_AMP] = ACTIONS(3885), + [anon_sym_PIPE_PIPE] = ACTIONS(3885), + [anon_sym_QMARK_QMARK] = ACTIONS(3885), + [anon_sym_from] = ACTIONS(3857), + [anon_sym_into] = ACTIONS(3887), + [anon_sym_join] = ACTIONS(3857), + [anon_sym_on] = ACTIONS(3887), + [anon_sym_equals] = ACTIONS(3857), + [anon_sym_let] = ACTIONS(3857), + [anon_sym_orderby] = ACTIONS(3857), + [anon_sym_ascending] = ACTIONS(3857), + [anon_sym_descending] = ACTIONS(3857), + [anon_sym_group] = ACTIONS(3857), + [anon_sym_by] = ACTIONS(3857), + [anon_sym_select] = ACTIONS(3857), + [anon_sym_as] = ACTIONS(3887), + [anon_sym_is] = ACTIONS(3887), + [anon_sym_DASH_GT] = ACTIONS(3885), + [anon_sym_with] = ACTIONS(3887), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -453712,6 +453326,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2796] = { + [sym__variable_designation] = STATE(3265), + [sym_parenthesized_variable_designation] = STATE(3344), + [sym_identifier] = STATE(3346), + [sym__reserved_identifier] = STATE(3199), [sym_preproc_region] = STATE(2796), [sym_preproc_endregion] = STATE(2796), [sym_preproc_line] = STATE(2796), @@ -453721,69 +453339,65 @@ 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(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(3855), + [anon_sym_alias] = ACTIONS(3857), + [anon_sym_global] = ACTIONS(3857), + [anon_sym_LBRACK] = ACTIONS(3939), + [anon_sym_LPAREN] = ACTIONS(3939), + [anon_sym_file] = ACTIONS(3857), + [anon_sym_LT] = ACTIONS(3941), + [anon_sym_GT] = ACTIONS(3941), + [anon_sym_where] = ACTIONS(3857), + [anon_sym_QMARK] = ACTIONS(3941), + [anon_sym_notnull] = ACTIONS(3857), + [anon_sym_unmanaged] = ACTIONS(3857), + [anon_sym_BANG] = ACTIONS(3941), + [anon_sym_PLUS_PLUS] = ACTIONS(3939), + [anon_sym_DASH_DASH] = ACTIONS(3939), + [anon_sym_PLUS] = ACTIONS(3941), + [anon_sym_DASH] = ACTIONS(3941), + [anon_sym_STAR] = ACTIONS(3939), + [anon_sym_SLASH] = ACTIONS(3941), + [anon_sym_PERCENT] = ACTIONS(3939), + [anon_sym_CARET] = ACTIONS(3939), + [anon_sym_PIPE] = ACTIONS(3941), + [anon_sym_AMP] = ACTIONS(3941), + [anon_sym_LT_LT] = ACTIONS(3939), + [anon_sym_GT_GT] = ACTIONS(3941), + [anon_sym_GT_GT_GT] = ACTIONS(3939), + [anon_sym_EQ_EQ] = ACTIONS(3939), + [anon_sym_BANG_EQ] = ACTIONS(3939), + [anon_sym_GT_EQ] = ACTIONS(3939), + [anon_sym_LT_EQ] = ACTIONS(3939), + [anon_sym_DOT] = ACTIONS(3941), + [anon_sym_scoped] = ACTIONS(3857), + [anon_sym_var] = ACTIONS(3857), + [anon_sym_yield] = ACTIONS(3857), + [anon_sym_switch] = ACTIONS(3941), + [anon_sym_when] = ACTIONS(3857), + [sym_discard] = ACTIONS(3865), + [anon_sym_DOT_DOT] = ACTIONS(3939), + [anon_sym_and] = ACTIONS(3941), + [anon_sym_or] = ACTIONS(3941), + [anon_sym_AMP_AMP] = ACTIONS(3939), + [anon_sym_PIPE_PIPE] = ACTIONS(3939), + [anon_sym_QMARK_QMARK] = ACTIONS(3939), + [anon_sym_from] = ACTIONS(3857), + [anon_sym_into] = ACTIONS(3941), + [anon_sym_join] = ACTIONS(3857), + [anon_sym_on] = ACTIONS(3941), + [anon_sym_equals] = ACTIONS(3857), + [anon_sym_let] = ACTIONS(3857), + [anon_sym_orderby] = ACTIONS(3857), + [anon_sym_ascending] = ACTIONS(3857), + [anon_sym_descending] = ACTIONS(3857), + [anon_sym_group] = ACTIONS(3857), + [anon_sym_by] = ACTIONS(3857), + [anon_sym_select] = ACTIONS(3857), + [anon_sym_as] = ACTIONS(3941), + [anon_sym_is] = ACTIONS(3941), + [anon_sym_DASH_GT] = ACTIONS(3939), + [anon_sym_with] = ACTIONS(3941), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -453796,6 +453410,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2797] = { + [sym__variable_designation] = STATE(3314), + [sym_parenthesized_variable_designation] = STATE(3344), + [sym_identifier] = STATE(3346), + [sym__reserved_identifier] = STATE(3199), [sym_preproc_region] = STATE(2797), [sym_preproc_endregion] = STATE(2797), [sym_preproc_line] = STATE(2797), @@ -453805,69 +453423,65 @@ 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(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(3855), + [anon_sym_alias] = ACTIONS(3857), + [anon_sym_global] = ACTIONS(3857), + [anon_sym_LBRACK] = ACTIONS(3947), + [anon_sym_LPAREN] = ACTIONS(3947), + [anon_sym_file] = ACTIONS(3857), + [anon_sym_LT] = ACTIONS(3949), + [anon_sym_GT] = ACTIONS(3949), + [anon_sym_where] = ACTIONS(3857), + [anon_sym_QMARK] = ACTIONS(3949), + [anon_sym_notnull] = ACTIONS(3857), + [anon_sym_unmanaged] = ACTIONS(3857), + [anon_sym_BANG] = ACTIONS(3949), + [anon_sym_PLUS_PLUS] = ACTIONS(3947), + [anon_sym_DASH_DASH] = ACTIONS(3947), + [anon_sym_PLUS] = ACTIONS(3949), + [anon_sym_DASH] = ACTIONS(3949), + [anon_sym_STAR] = ACTIONS(3947), + [anon_sym_SLASH] = ACTIONS(3949), + [anon_sym_PERCENT] = ACTIONS(3947), + [anon_sym_CARET] = ACTIONS(3947), + [anon_sym_PIPE] = ACTIONS(3949), + [anon_sym_AMP] = ACTIONS(3949), + [anon_sym_LT_LT] = ACTIONS(3947), + [anon_sym_GT_GT] = ACTIONS(3949), + [anon_sym_GT_GT_GT] = ACTIONS(3947), + [anon_sym_EQ_EQ] = ACTIONS(3947), + [anon_sym_BANG_EQ] = ACTIONS(3947), + [anon_sym_GT_EQ] = ACTIONS(3947), + [anon_sym_LT_EQ] = ACTIONS(3947), + [anon_sym_DOT] = ACTIONS(3949), + [anon_sym_scoped] = ACTIONS(3857), + [anon_sym_var] = ACTIONS(3857), + [anon_sym_yield] = ACTIONS(3857), + [anon_sym_switch] = ACTIONS(3949), + [anon_sym_when] = ACTIONS(3857), + [sym_discard] = ACTIONS(3865), + [anon_sym_DOT_DOT] = ACTIONS(3947), + [anon_sym_and] = ACTIONS(3949), + [anon_sym_or] = ACTIONS(3949), + [anon_sym_AMP_AMP] = ACTIONS(3947), + [anon_sym_PIPE_PIPE] = ACTIONS(3947), + [anon_sym_QMARK_QMARK] = ACTIONS(3947), + [anon_sym_from] = ACTIONS(3857), + [anon_sym_into] = ACTIONS(3949), + [anon_sym_join] = ACTIONS(3857), + [anon_sym_on] = ACTIONS(3949), + [anon_sym_equals] = ACTIONS(3857), + [anon_sym_let] = ACTIONS(3857), + [anon_sym_orderby] = ACTIONS(3857), + [anon_sym_ascending] = ACTIONS(3857), + [anon_sym_descending] = ACTIONS(3857), + [anon_sym_group] = ACTIONS(3857), + [anon_sym_by] = ACTIONS(3857), + [anon_sym_select] = ACTIONS(3857), + [anon_sym_as] = ACTIONS(3949), + [anon_sym_is] = ACTIONS(3949), + [anon_sym_DASH_GT] = ACTIONS(3947), + [anon_sym_with] = ACTIONS(3949), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -453889,69 +453503,69 @@ 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(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), + [anon_sym_SEMI] = ACTIONS(3661), + [anon_sym_EQ] = ACTIONS(3659), + [anon_sym_LBRACK] = ACTIONS(3661), + [anon_sym_COLON] = ACTIONS(3661), + [anon_sym_COMMA] = ACTIONS(3661), + [anon_sym_RBRACK] = ACTIONS(3661), + [anon_sym_LPAREN] = ACTIONS(3661), + [anon_sym_RPAREN] = ACTIONS(3661), + [anon_sym_RBRACE] = ACTIONS(3661), + [anon_sym_LT] = ACTIONS(3659), + [anon_sym_GT] = ACTIONS(3659), + [anon_sym_in] = ACTIONS(3661), + [anon_sym_QMARK] = ACTIONS(3659), + [anon_sym_BANG] = ACTIONS(3659), + [anon_sym_PLUS_PLUS] = ACTIONS(3661), + [anon_sym_DASH_DASH] = ACTIONS(3661), + [anon_sym_PLUS] = ACTIONS(3659), + [anon_sym_DASH] = ACTIONS(3659), + [anon_sym_STAR] = ACTIONS(3659), + [anon_sym_SLASH] = ACTIONS(3659), + [anon_sym_PERCENT] = ACTIONS(3659), + [anon_sym_CARET] = ACTIONS(3659), + [anon_sym_PIPE] = ACTIONS(3659), + [anon_sym_AMP] = ACTIONS(3659), + [anon_sym_LT_LT] = ACTIONS(3659), + [anon_sym_GT_GT] = ACTIONS(3659), + [anon_sym_GT_GT_GT] = ACTIONS(3659), + [anon_sym_EQ_EQ] = ACTIONS(3661), + [anon_sym_BANG_EQ] = ACTIONS(3661), + [anon_sym_GT_EQ] = ACTIONS(3661), + [anon_sym_LT_EQ] = ACTIONS(3661), + [anon_sym_DOT] = ACTIONS(3659), + [anon_sym_EQ_GT] = ACTIONS(3661), + [anon_sym_switch] = ACTIONS(3661), + [anon_sym_when] = ACTIONS(3661), + [anon_sym_DOT_DOT] = ACTIONS(3661), + [anon_sym_and] = ACTIONS(3661), + [anon_sym_or] = ACTIONS(3661), + [anon_sym_PLUS_EQ] = ACTIONS(3661), + [anon_sym_DASH_EQ] = ACTIONS(3661), + [anon_sym_STAR_EQ] = ACTIONS(3661), + [anon_sym_SLASH_EQ] = ACTIONS(3661), + [anon_sym_PERCENT_EQ] = ACTIONS(3661), + [anon_sym_AMP_EQ] = ACTIONS(3661), + [anon_sym_CARET_EQ] = ACTIONS(3661), + [anon_sym_PIPE_EQ] = ACTIONS(3661), + [anon_sym_LT_LT_EQ] = ACTIONS(3661), + [anon_sym_GT_GT_EQ] = ACTIONS(3661), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3661), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3661), + [anon_sym_AMP_AMP] = ACTIONS(3661), + [anon_sym_PIPE_PIPE] = ACTIONS(3661), + [anon_sym_QMARK_QMARK] = ACTIONS(3659), + [anon_sym_on] = ACTIONS(3661), + [anon_sym_equals] = ACTIONS(3661), + [anon_sym_by] = ACTIONS(3661), + [anon_sym_as] = ACTIONS(3661), + [anon_sym_is] = ACTIONS(3661), + [anon_sym_DASH_GT] = ACTIONS(3661), + [anon_sym_with] = ACTIONS(3661), + [aux_sym_preproc_if_token3] = ACTIONS(3661), + [aux_sym_preproc_else_token1] = ACTIONS(3661), + [aux_sym_preproc_elif_token1] = ACTIONS(3661), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -453973,79 +453587,79 @@ 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(3975), - [anon_sym_alias] = ACTIONS(3975), - [anon_sym_global] = ACTIONS(3975), - [anon_sym_LBRACK] = ACTIONS(3977), - [anon_sym_COLON] = ACTIONS(3977), - [anon_sym_COMMA] = ACTIONS(3977), - [anon_sym_LPAREN] = ACTIONS(3977), - [anon_sym_LBRACE] = ACTIONS(3977), - [anon_sym_file] = ACTIONS(3975), - [anon_sym_LT] = ACTIONS(3975), - [anon_sym_GT] = ACTIONS(3975), - [anon_sym_where] = ACTIONS(3975), - [anon_sym_QMARK] = ACTIONS(3975), - [anon_sym_notnull] = ACTIONS(3975), - [anon_sym_unmanaged] = ACTIONS(3975), - [anon_sym_BANG] = ACTIONS(3975), - [anon_sym_PLUS_PLUS] = ACTIONS(3977), - [anon_sym_DASH_DASH] = ACTIONS(3977), - [anon_sym_PLUS] = ACTIONS(3975), - [anon_sym_DASH] = ACTIONS(3975), - [anon_sym_STAR] = ACTIONS(3977), - [anon_sym_SLASH] = ACTIONS(3975), - [anon_sym_PERCENT] = ACTIONS(3977), - [anon_sym_CARET] = ACTIONS(3977), - [anon_sym_PIPE] = ACTIONS(3975), - [anon_sym_AMP] = ACTIONS(3975), - [anon_sym_LT_LT] = ACTIONS(3977), - [anon_sym_GT_GT] = ACTIONS(3975), - [anon_sym_GT_GT_GT] = ACTIONS(3977), - [anon_sym_EQ_EQ] = ACTIONS(3977), - [anon_sym_BANG_EQ] = ACTIONS(3977), - [anon_sym_GT_EQ] = ACTIONS(3977), - [anon_sym_LT_EQ] = ACTIONS(3977), - [anon_sym_DOT] = ACTIONS(4515), - [anon_sym_scoped] = ACTIONS(3975), - [anon_sym_var] = ACTIONS(3975), - [anon_sym_yield] = ACTIONS(3975), - [anon_sym_switch] = ACTIONS(3975), - [anon_sym_when] = ACTIONS(3975), - [sym_discard] = ACTIONS(3975), - [anon_sym_DOT_DOT] = ACTIONS(3977), - [anon_sym_and] = ACTIONS(3975), - [anon_sym_or] = ACTIONS(3975), - [anon_sym_AMP_AMP] = ACTIONS(3977), - [anon_sym_PIPE_PIPE] = ACTIONS(3977), - [anon_sym_QMARK_QMARK] = ACTIONS(3977), - [anon_sym_from] = ACTIONS(3975), - [anon_sym_into] = ACTIONS(3975), - [anon_sym_join] = ACTIONS(3975), - [anon_sym_on] = ACTIONS(3975), - [anon_sym_equals] = ACTIONS(3975), - [anon_sym_let] = ACTIONS(3975), - [anon_sym_orderby] = ACTIONS(3975), - [anon_sym_ascending] = ACTIONS(3975), - [anon_sym_descending] = ACTIONS(3975), - [anon_sym_group] = ACTIONS(3975), - [anon_sym_by] = ACTIONS(3975), - [anon_sym_select] = ACTIONS(3975), - [anon_sym_as] = ACTIONS(3975), - [anon_sym_is] = ACTIONS(3975), - [anon_sym_DASH_GT] = ACTIONS(3977), - [anon_sym_with] = ACTIONS(3975), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_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(3977), + [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), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), }, [2800] = { [sym_preproc_region] = STATE(2800), @@ -454057,79 +453671,79 @@ 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), - [sym__identifier_token] = ACTIONS(3975), - [anon_sym_alias] = ACTIONS(3975), - [anon_sym_global] = ACTIONS(3975), - [anon_sym_LBRACK] = ACTIONS(3977), - [anon_sym_COLON] = ACTIONS(3977), - [anon_sym_COMMA] = ACTIONS(3977), - [anon_sym_LPAREN] = ACTIONS(3977), - [anon_sym_LBRACE] = ACTIONS(3977), - [anon_sym_file] = ACTIONS(3975), - [anon_sym_LT] = ACTIONS(3975), - [anon_sym_GT] = ACTIONS(3975), - [anon_sym_where] = ACTIONS(3975), - [anon_sym_QMARK] = ACTIONS(3975), - [anon_sym_notnull] = ACTIONS(3975), - [anon_sym_unmanaged] = ACTIONS(3975), - [anon_sym_BANG] = ACTIONS(3975), - [anon_sym_PLUS_PLUS] = ACTIONS(3977), - [anon_sym_DASH_DASH] = ACTIONS(3977), - [anon_sym_PLUS] = ACTIONS(3975), - [anon_sym_DASH] = ACTIONS(3975), - [anon_sym_STAR] = ACTIONS(3977), - [anon_sym_SLASH] = ACTIONS(3975), - [anon_sym_PERCENT] = ACTIONS(3977), - [anon_sym_CARET] = ACTIONS(3977), - [anon_sym_PIPE] = ACTIONS(3975), - [anon_sym_AMP] = ACTIONS(3975), - [anon_sym_LT_LT] = ACTIONS(3977), - [anon_sym_GT_GT] = ACTIONS(3975), - [anon_sym_GT_GT_GT] = ACTIONS(3977), - [anon_sym_EQ_EQ] = ACTIONS(3977), - [anon_sym_BANG_EQ] = ACTIONS(3977), - [anon_sym_GT_EQ] = ACTIONS(3977), - [anon_sym_LT_EQ] = ACTIONS(3977), - [anon_sym_DOT] = ACTIONS(3975), - [anon_sym_scoped] = ACTIONS(3975), - [anon_sym_var] = ACTIONS(3975), - [anon_sym_yield] = ACTIONS(3975), - [anon_sym_switch] = ACTIONS(3975), - [anon_sym_when] = ACTIONS(3975), - [sym_discard] = ACTIONS(3975), - [anon_sym_DOT_DOT] = ACTIONS(3977), - [anon_sym_and] = ACTIONS(3975), - [anon_sym_or] = ACTIONS(3975), - [anon_sym_AMP_AMP] = ACTIONS(3977), - [anon_sym_PIPE_PIPE] = ACTIONS(3977), - [anon_sym_QMARK_QMARK] = ACTIONS(3977), - [anon_sym_from] = ACTIONS(3975), - [anon_sym_into] = ACTIONS(3975), - [anon_sym_join] = ACTIONS(3975), - [anon_sym_on] = ACTIONS(3975), - [anon_sym_equals] = ACTIONS(3975), - [anon_sym_let] = ACTIONS(3975), - [anon_sym_orderby] = ACTIONS(3975), - [anon_sym_ascending] = ACTIONS(3975), - [anon_sym_descending] = ACTIONS(3975), - [anon_sym_group] = ACTIONS(3975), - [anon_sym_by] = ACTIONS(3975), - [anon_sym_select] = ACTIONS(3975), - [anon_sym_as] = ACTIONS(3975), - [anon_sym_is] = ACTIONS(3975), - [anon_sym_DASH_GT] = ACTIONS(3977), - [anon_sym_with] = ACTIONS(3975), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_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(3977), + [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), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), }, [2801] = { [sym_preproc_region] = STATE(2801), @@ -454141,68 +453755,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(4000), - [anon_sym_alias] = ACTIONS(4000), - [anon_sym_global] = ACTIONS(4000), - [anon_sym_LBRACK] = ACTIONS(4002), - [anon_sym_COLON] = ACTIONS(4002), - [anon_sym_COMMA] = ACTIONS(4002), - [anon_sym_LPAREN] = ACTIONS(4002), - [anon_sym_LBRACE] = ACTIONS(4002), - [anon_sym_file] = ACTIONS(4000), - [anon_sym_LT] = ACTIONS(4000), - [anon_sym_GT] = ACTIONS(4000), - [anon_sym_where] = ACTIONS(4000), - [anon_sym_QMARK] = ACTIONS(4000), - [anon_sym_notnull] = ACTIONS(4000), - [anon_sym_unmanaged] = ACTIONS(4000), - [anon_sym_BANG] = ACTIONS(4000), - [anon_sym_PLUS_PLUS] = ACTIONS(4002), - [anon_sym_DASH_DASH] = ACTIONS(4002), - [anon_sym_PLUS] = ACTIONS(4000), - [anon_sym_DASH] = ACTIONS(4000), - [anon_sym_STAR] = ACTIONS(4002), - [anon_sym_SLASH] = ACTIONS(4000), - [anon_sym_PERCENT] = ACTIONS(4002), - [anon_sym_CARET] = ACTIONS(4002), - [anon_sym_PIPE] = ACTIONS(4000), - [anon_sym_AMP] = ACTIONS(4000), - [anon_sym_LT_LT] = ACTIONS(4002), - [anon_sym_GT_GT] = ACTIONS(4000), - [anon_sym_GT_GT_GT] = ACTIONS(4002), - [anon_sym_EQ_EQ] = ACTIONS(4002), - [anon_sym_BANG_EQ] = ACTIONS(4002), - [anon_sym_GT_EQ] = ACTIONS(4002), - [anon_sym_LT_EQ] = ACTIONS(4002), - [anon_sym_DOT] = ACTIONS(4000), - [anon_sym_scoped] = ACTIONS(4000), - [anon_sym_var] = ACTIONS(4000), - [anon_sym_yield] = ACTIONS(4000), - [anon_sym_switch] = ACTIONS(4000), - [anon_sym_when] = ACTIONS(4000), - [sym_discard] = ACTIONS(4000), - [anon_sym_DOT_DOT] = ACTIONS(4002), - [anon_sym_and] = ACTIONS(4000), - [anon_sym_or] = ACTIONS(4000), - [anon_sym_AMP_AMP] = ACTIONS(4002), - [anon_sym_PIPE_PIPE] = ACTIONS(4002), - [anon_sym_QMARK_QMARK] = ACTIONS(4002), - [anon_sym_from] = ACTIONS(4000), - [anon_sym_into] = ACTIONS(4000), - [anon_sym_join] = ACTIONS(4000), - [anon_sym_on] = ACTIONS(4000), - [anon_sym_equals] = ACTIONS(4000), - [anon_sym_let] = ACTIONS(4000), - [anon_sym_orderby] = ACTIONS(4000), - [anon_sym_ascending] = ACTIONS(4000), - [anon_sym_descending] = ACTIONS(4000), - [anon_sym_group] = ACTIONS(4000), - [anon_sym_by] = ACTIONS(4000), - [anon_sym_select] = ACTIONS(4000), - [anon_sym_as] = ACTIONS(4000), - [anon_sym_is] = ACTIONS(4000), - [anon_sym_DASH_GT] = ACTIONS(4002), - [anon_sym_with] = ACTIONS(4000), + [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), @@ -454213,7 +453828,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(4002), }, [2802] = { [sym_preproc_region] = STATE(2802), @@ -454225,79 +453839,79 @@ 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(4004), - [anon_sym_alias] = ACTIONS(4004), - [anon_sym_global] = ACTIONS(4004), - [anon_sym_LBRACK] = ACTIONS(4006), - [anon_sym_COLON] = ACTIONS(4006), - [anon_sym_COMMA] = ACTIONS(4006), - [anon_sym_LPAREN] = ACTIONS(4006), - [anon_sym_LBRACE] = ACTIONS(4006), - [anon_sym_file] = ACTIONS(4004), - [anon_sym_LT] = ACTIONS(4004), - [anon_sym_GT] = ACTIONS(4004), - [anon_sym_where] = ACTIONS(4004), - [anon_sym_QMARK] = ACTIONS(4004), - [anon_sym_notnull] = ACTIONS(4004), - [anon_sym_unmanaged] = ACTIONS(4004), - [anon_sym_BANG] = ACTIONS(4004), - [anon_sym_PLUS_PLUS] = ACTIONS(4006), - [anon_sym_DASH_DASH] = ACTIONS(4006), - [anon_sym_PLUS] = ACTIONS(4004), - [anon_sym_DASH] = ACTIONS(4004), - [anon_sym_STAR] = ACTIONS(4006), - [anon_sym_SLASH] = ACTIONS(4004), - [anon_sym_PERCENT] = ACTIONS(4006), - [anon_sym_CARET] = ACTIONS(4006), - [anon_sym_PIPE] = ACTIONS(4004), - [anon_sym_AMP] = ACTIONS(4004), - [anon_sym_LT_LT] = ACTIONS(4006), - [anon_sym_GT_GT] = ACTIONS(4004), - [anon_sym_GT_GT_GT] = ACTIONS(4006), - [anon_sym_EQ_EQ] = ACTIONS(4006), - [anon_sym_BANG_EQ] = ACTIONS(4006), - [anon_sym_GT_EQ] = ACTIONS(4006), - [anon_sym_LT_EQ] = ACTIONS(4006), - [anon_sym_DOT] = ACTIONS(4004), - [anon_sym_scoped] = ACTIONS(4004), - [anon_sym_var] = ACTIONS(4004), - [anon_sym_yield] = ACTIONS(4004), - [anon_sym_switch] = ACTIONS(4004), - [anon_sym_when] = ACTIONS(4004), - [sym_discard] = ACTIONS(4004), - [anon_sym_DOT_DOT] = ACTIONS(4006), - [anon_sym_and] = ACTIONS(4004), - [anon_sym_or] = ACTIONS(4004), - [anon_sym_AMP_AMP] = ACTIONS(4006), - [anon_sym_PIPE_PIPE] = ACTIONS(4006), - [anon_sym_QMARK_QMARK] = ACTIONS(4006), - [anon_sym_from] = ACTIONS(4004), - [anon_sym_into] = ACTIONS(4004), - [anon_sym_join] = ACTIONS(4004), - [anon_sym_on] = ACTIONS(4004), - [anon_sym_equals] = ACTIONS(4004), - [anon_sym_let] = ACTIONS(4004), - [anon_sym_orderby] = ACTIONS(4004), - [anon_sym_ascending] = ACTIONS(4004), - [anon_sym_descending] = ACTIONS(4004), - [anon_sym_group] = ACTIONS(4004), - [anon_sym_by] = ACTIONS(4004), - [anon_sym_select] = ACTIONS(4004), - [anon_sym_as] = ACTIONS(4004), - [anon_sym_is] = ACTIONS(4004), - [anon_sym_DASH_GT] = ACTIONS(4006), - [anon_sym_with] = ACTIONS(4004), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_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(4006), + [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), }, [2803] = { [sym_preproc_region] = STATE(2803), @@ -454309,69 +453923,68 @@ 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(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), + [sym__identifier_token] = ACTIONS(3996), + [anon_sym_alias] = ACTIONS(3996), + [anon_sym_global] = ACTIONS(3996), + [anon_sym_LBRACK] = ACTIONS(3998), + [anon_sym_COLON] = ACTIONS(3998), + [anon_sym_COMMA] = ACTIONS(3998), + [anon_sym_LPAREN] = ACTIONS(3998), + [anon_sym_LBRACE] = ACTIONS(3998), + [anon_sym_file] = ACTIONS(3996), + [anon_sym_LT] = ACTIONS(3996), + [anon_sym_GT] = ACTIONS(3996), + [anon_sym_where] = ACTIONS(3996), + [anon_sym_QMARK] = ACTIONS(3996), + [anon_sym_notnull] = ACTIONS(3996), + [anon_sym_unmanaged] = ACTIONS(3996), + [anon_sym_BANG] = ACTIONS(3996), + [anon_sym_PLUS_PLUS] = ACTIONS(3998), + [anon_sym_DASH_DASH] = ACTIONS(3998), + [anon_sym_PLUS] = ACTIONS(3996), + [anon_sym_DASH] = ACTIONS(3996), + [anon_sym_STAR] = ACTIONS(3998), + [anon_sym_SLASH] = ACTIONS(3996), + [anon_sym_PERCENT] = ACTIONS(3998), + [anon_sym_CARET] = ACTIONS(3998), + [anon_sym_PIPE] = ACTIONS(3996), + [anon_sym_AMP] = ACTIONS(3996), + [anon_sym_LT_LT] = ACTIONS(3998), + [anon_sym_GT_GT] = ACTIONS(3996), + [anon_sym_GT_GT_GT] = ACTIONS(3998), + [anon_sym_EQ_EQ] = ACTIONS(3998), + [anon_sym_BANG_EQ] = ACTIONS(3998), + [anon_sym_GT_EQ] = ACTIONS(3998), + [anon_sym_LT_EQ] = ACTIONS(3998), + [anon_sym_DOT] = ACTIONS(3996), + [anon_sym_scoped] = ACTIONS(3996), + [anon_sym_var] = ACTIONS(3996), + [anon_sym_yield] = ACTIONS(3996), + [anon_sym_switch] = ACTIONS(3996), + [anon_sym_when] = ACTIONS(3996), + [sym_discard] = ACTIONS(3996), + [anon_sym_DOT_DOT] = ACTIONS(3998), + [anon_sym_and] = ACTIONS(3996), + [anon_sym_or] = ACTIONS(3996), + [anon_sym_AMP_AMP] = ACTIONS(3998), + [anon_sym_PIPE_PIPE] = ACTIONS(3998), + [anon_sym_QMARK_QMARK] = ACTIONS(3998), + [anon_sym_from] = ACTIONS(3996), + [anon_sym_into] = ACTIONS(3996), + [anon_sym_join] = ACTIONS(3996), + [anon_sym_on] = ACTIONS(3996), + [anon_sym_equals] = ACTIONS(3996), + [anon_sym_let] = ACTIONS(3996), + [anon_sym_orderby] = ACTIONS(3996), + [anon_sym_ascending] = ACTIONS(3996), + [anon_sym_descending] = ACTIONS(3996), + [anon_sym_group] = ACTIONS(3996), + [anon_sym_by] = ACTIONS(3996), + [anon_sym_select] = ACTIONS(3996), + [anon_sym_as] = ACTIONS(3996), + [anon_sym_is] = ACTIONS(3996), + [anon_sym_DASH_GT] = ACTIONS(3998), + [anon_sym_with] = ACTIONS(3996), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -454382,6 +453995,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(3998), }, [2804] = { [sym_preproc_region] = STATE(2804), @@ -454393,68 +454007,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(3971), - [anon_sym_alias] = ACTIONS(3971), - [anon_sym_global] = ACTIONS(3971), - [anon_sym_LBRACK] = ACTIONS(3973), - [anon_sym_COLON] = ACTIONS(3973), - [anon_sym_COMMA] = ACTIONS(3973), - [anon_sym_LPAREN] = ACTIONS(3973), - [anon_sym_LBRACE] = ACTIONS(3973), - [anon_sym_file] = ACTIONS(3971), - [anon_sym_LT] = ACTIONS(3971), - [anon_sym_GT] = ACTIONS(3971), - [anon_sym_where] = ACTIONS(3971), - [anon_sym_QMARK] = ACTIONS(3971), - [anon_sym_notnull] = ACTIONS(3971), - [anon_sym_unmanaged] = ACTIONS(3971), - [anon_sym_BANG] = ACTIONS(3971), - [anon_sym_PLUS_PLUS] = ACTIONS(3973), - [anon_sym_DASH_DASH] = ACTIONS(3973), - [anon_sym_PLUS] = ACTIONS(3971), - [anon_sym_DASH] = ACTIONS(3971), - [anon_sym_STAR] = ACTIONS(3973), - [anon_sym_SLASH] = ACTIONS(3971), - [anon_sym_PERCENT] = ACTIONS(3973), - [anon_sym_CARET] = ACTIONS(3973), - [anon_sym_PIPE] = ACTIONS(3971), - [anon_sym_AMP] = ACTIONS(3971), - [anon_sym_LT_LT] = ACTIONS(3973), - [anon_sym_GT_GT] = ACTIONS(3971), - [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(3971), - [anon_sym_scoped] = ACTIONS(3971), - [anon_sym_var] = ACTIONS(3971), - [anon_sym_yield] = ACTIONS(3971), - [anon_sym_switch] = ACTIONS(3971), - [anon_sym_when] = ACTIONS(3971), - [sym_discard] = ACTIONS(3971), - [anon_sym_DOT_DOT] = ACTIONS(3973), - [anon_sym_and] = ACTIONS(3971), - [anon_sym_or] = ACTIONS(3971), - [anon_sym_AMP_AMP] = ACTIONS(3973), - [anon_sym_PIPE_PIPE] = ACTIONS(3973), - [anon_sym_QMARK_QMARK] = ACTIONS(3973), - [anon_sym_from] = ACTIONS(3971), - [anon_sym_into] = ACTIONS(3971), - [anon_sym_join] = ACTIONS(3971), - [anon_sym_on] = ACTIONS(3971), - [anon_sym_equals] = ACTIONS(3971), - [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(3971), - [anon_sym_select] = ACTIONS(3971), - [anon_sym_as] = ACTIONS(3971), - [anon_sym_is] = ACTIONS(3971), - [anon_sym_DASH_GT] = ACTIONS(3973), - [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), @@ -454465,7 +454080,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(3973), }, [2805] = { [sym_preproc_region] = STATE(2805), @@ -454477,69 +454091,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(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), + [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), @@ -454561,69 +454175,69 @@ 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(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(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), @@ -454645,68 +454259,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(4016), - [anon_sym_alias] = ACTIONS(4016), - [anon_sym_global] = ACTIONS(4016), - [anon_sym_LBRACK] = ACTIONS(4066), - [anon_sym_COLON] = ACTIONS(4018), - [anon_sym_COMMA] = ACTIONS(4018), - [anon_sym_LPAREN] = ACTIONS(4018), - [anon_sym_LBRACE] = ACTIONS(4018), - [anon_sym_file] = ACTIONS(4016), - [anon_sym_LT] = ACTIONS(4016), - [anon_sym_GT] = ACTIONS(4016), - [anon_sym_where] = ACTIONS(4016), - [anon_sym_QMARK] = ACTIONS(4414), - [anon_sym_notnull] = ACTIONS(4016), - [anon_sym_unmanaged] = ACTIONS(4016), - [anon_sym_BANG] = ACTIONS(4016), - [anon_sym_PLUS_PLUS] = ACTIONS(4018), - [anon_sym_DASH_DASH] = ACTIONS(4018), - [anon_sym_PLUS] = ACTIONS(4016), - [anon_sym_DASH] = ACTIONS(4016), - [anon_sym_STAR] = ACTIONS(4072), - [anon_sym_SLASH] = ACTIONS(4016), - [anon_sym_PERCENT] = ACTIONS(4018), - [anon_sym_CARET] = ACTIONS(4018), - [anon_sym_PIPE] = ACTIONS(4016), - [anon_sym_AMP] = ACTIONS(4016), - [anon_sym_LT_LT] = ACTIONS(4018), - [anon_sym_GT_GT] = ACTIONS(4016), - [anon_sym_GT_GT_GT] = ACTIONS(4018), - [anon_sym_EQ_EQ] = ACTIONS(4018), - [anon_sym_BANG_EQ] = ACTIONS(4018), - [anon_sym_GT_EQ] = ACTIONS(4018), - [anon_sym_LT_EQ] = ACTIONS(4018), - [anon_sym_DOT] = ACTIONS(4555), - [anon_sym_scoped] = ACTIONS(4016), - [anon_sym_var] = ACTIONS(4016), - [anon_sym_yield] = ACTIONS(4016), - [anon_sym_switch] = ACTIONS(4016), - [anon_sym_when] = ACTIONS(4016), - [sym_discard] = ACTIONS(4016), - [anon_sym_DOT_DOT] = ACTIONS(4018), - [anon_sym_and] = ACTIONS(4016), - [anon_sym_or] = ACTIONS(4016), - [anon_sym_AMP_AMP] = ACTIONS(4018), - [anon_sym_PIPE_PIPE] = ACTIONS(4018), - [anon_sym_QMARK_QMARK] = ACTIONS(4018), - [anon_sym_from] = ACTIONS(4016), - [anon_sym_into] = ACTIONS(4016), - [anon_sym_join] = ACTIONS(4016), - [anon_sym_on] = ACTIONS(4016), - [anon_sym_equals] = ACTIONS(4016), - [anon_sym_let] = ACTIONS(4016), - [anon_sym_orderby] = ACTIONS(4016), - [anon_sym_ascending] = ACTIONS(4016), - [anon_sym_descending] = ACTIONS(4016), - [anon_sym_group] = ACTIONS(4016), - [anon_sym_by] = ACTIONS(4016), - [anon_sym_select] = ACTIONS(4016), - [anon_sym_as] = ACTIONS(4016), - [anon_sym_is] = ACTIONS(4016), - [anon_sym_DASH_GT] = ACTIONS(4102), - [anon_sym_with] = ACTIONS(4016), + [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), @@ -454717,7 +454332,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(4018), }, [2808] = { [sym_preproc_region] = STATE(2808), @@ -454729,69 +454343,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), - [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), + [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), @@ -454813,69 +454427,69 @@ 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(4557), - [anon_sym_extern] = ACTIONS(4557), - [anon_sym_alias] = ACTIONS(4557), - [anon_sym_global] = ACTIONS(4557), - [anon_sym_using] = ACTIONS(4557), - [anon_sym_unsafe] = ACTIONS(4557), - [anon_sym_static] = ACTIONS(4557), - [anon_sym_LBRACK] = ACTIONS(4559), - [anon_sym_LPAREN] = ACTIONS(4559), - [anon_sym_event] = ACTIONS(4557), - [anon_sym_namespace] = ACTIONS(4557), - [anon_sym_class] = ACTIONS(4557), - [anon_sym_ref] = ACTIONS(4557), - [anon_sym_struct] = ACTIONS(4557), - [anon_sym_enum] = ACTIONS(4557), - [anon_sym_RBRACE] = ACTIONS(4559), - [anon_sym_interface] = ACTIONS(4557), - [anon_sym_delegate] = ACTIONS(4557), - [anon_sym_record] = ACTIONS(4557), - [anon_sym_abstract] = ACTIONS(4557), - [anon_sym_async] = ACTIONS(4557), - [anon_sym_const] = ACTIONS(4557), - [anon_sym_file] = ACTIONS(4557), - [anon_sym_fixed] = ACTIONS(4557), - [anon_sym_internal] = ACTIONS(4557), - [anon_sym_new] = ACTIONS(4557), - [anon_sym_override] = ACTIONS(4557), - [anon_sym_partial] = ACTIONS(4557), - [anon_sym_private] = ACTIONS(4557), - [anon_sym_protected] = ACTIONS(4557), - [anon_sym_public] = ACTIONS(4557), - [anon_sym_readonly] = ACTIONS(4557), - [anon_sym_required] = ACTIONS(4557), - [anon_sym_sealed] = ACTIONS(4557), - [anon_sym_virtual] = ACTIONS(4557), - [anon_sym_volatile] = ACTIONS(4557), - [anon_sym_where] = ACTIONS(4557), - [anon_sym_notnull] = ACTIONS(4557), - [anon_sym_unmanaged] = ACTIONS(4557), - [anon_sym_TILDE] = ACTIONS(4559), - [anon_sym_implicit] = ACTIONS(4557), - [anon_sym_explicit] = ACTIONS(4557), - [anon_sym_scoped] = ACTIONS(4557), - [anon_sym_var] = ACTIONS(4557), - [sym_predefined_type] = ACTIONS(4557), - [anon_sym_yield] = ACTIONS(4557), - [anon_sym_when] = ACTIONS(4557), - [anon_sym_from] = ACTIONS(4557), - [anon_sym_into] = ACTIONS(4557), - [anon_sym_join] = ACTIONS(4557), - [anon_sym_on] = ACTIONS(4557), - [anon_sym_equals] = ACTIONS(4557), - [anon_sym_let] = ACTIONS(4557), - [anon_sym_orderby] = ACTIONS(4557), - [anon_sym_ascending] = ACTIONS(4557), - [anon_sym_descending] = ACTIONS(4557), - [anon_sym_group] = ACTIONS(4557), - [anon_sym_by] = ACTIONS(4557), - [anon_sym_select] = ACTIONS(4557), - [aux_sym_preproc_if_token1] = ACTIONS(4559), - [aux_sym_preproc_if_token3] = ACTIONS(4559), - [aux_sym_preproc_else_token1] = ACTIONS(4559), - [aux_sym_preproc_elif_token1] = ACTIONS(4559), + [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), @@ -454888,6 +454502,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2810] = { + [sym__variable_designation] = STATE(4131), + [sym_parenthesized_variable_designation] = STATE(4116), + [sym_identifier] = STATE(4152), + [sym__reserved_identifier] = STATE(2916), [sym_preproc_region] = STATE(2810), [sym_preproc_endregion] = STATE(2810), [sym_preproc_line] = STATE(2810), @@ -454897,69 +454515,65 @@ 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), - [anon_sym_SEMI] = ACTIONS(3681), - [anon_sym_EQ] = ACTIONS(3679), - [anon_sym_LBRACK] = ACTIONS(3681), - [anon_sym_COLON] = ACTIONS(3681), - [anon_sym_COMMA] = ACTIONS(3681), - [anon_sym_RBRACK] = ACTIONS(3681), - [anon_sym_LPAREN] = ACTIONS(3681), - [anon_sym_RPAREN] = ACTIONS(3681), - [anon_sym_RBRACE] = ACTIONS(3681), - [anon_sym_LT] = ACTIONS(3679), - [anon_sym_GT] = ACTIONS(3679), - [anon_sym_in] = ACTIONS(3681), - [anon_sym_QMARK] = ACTIONS(3679), - [anon_sym_BANG] = ACTIONS(3679), - [anon_sym_PLUS_PLUS] = ACTIONS(3681), - [anon_sym_DASH_DASH] = ACTIONS(3681), - [anon_sym_PLUS] = ACTIONS(3679), - [anon_sym_DASH] = ACTIONS(3679), - [anon_sym_STAR] = ACTIONS(3679), - [anon_sym_SLASH] = ACTIONS(3679), - [anon_sym_PERCENT] = ACTIONS(3679), - [anon_sym_CARET] = ACTIONS(3679), - [anon_sym_PIPE] = ACTIONS(3679), - [anon_sym_AMP] = ACTIONS(3679), - [anon_sym_LT_LT] = ACTIONS(3679), - [anon_sym_GT_GT] = ACTIONS(3679), - [anon_sym_GT_GT_GT] = ACTIONS(3679), - [anon_sym_EQ_EQ] = ACTIONS(3681), - [anon_sym_BANG_EQ] = ACTIONS(3681), - [anon_sym_GT_EQ] = ACTIONS(3681), - [anon_sym_LT_EQ] = ACTIONS(3681), - [anon_sym_DOT] = ACTIONS(3679), - [anon_sym_EQ_GT] = ACTIONS(3681), - [anon_sym_switch] = ACTIONS(3681), - [anon_sym_when] = ACTIONS(3681), - [anon_sym_DOT_DOT] = ACTIONS(3681), - [anon_sym_and] = ACTIONS(3681), - [anon_sym_or] = ACTIONS(3681), - [anon_sym_PLUS_EQ] = ACTIONS(3681), - [anon_sym_DASH_EQ] = ACTIONS(3681), - [anon_sym_STAR_EQ] = ACTIONS(3681), - [anon_sym_SLASH_EQ] = ACTIONS(3681), - [anon_sym_PERCENT_EQ] = ACTIONS(3681), - [anon_sym_AMP_EQ] = ACTIONS(3681), - [anon_sym_CARET_EQ] = ACTIONS(3681), - [anon_sym_PIPE_EQ] = ACTIONS(3681), - [anon_sym_LT_LT_EQ] = ACTIONS(3681), - [anon_sym_GT_GT_EQ] = ACTIONS(3681), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3681), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3681), - [anon_sym_AMP_AMP] = ACTIONS(3681), - [anon_sym_PIPE_PIPE] = ACTIONS(3681), - [anon_sym_QMARK_QMARK] = ACTIONS(3679), - [anon_sym_on] = ACTIONS(3681), - [anon_sym_equals] = ACTIONS(3681), - [anon_sym_by] = ACTIONS(3681), - [anon_sym_as] = ACTIONS(3681), - [anon_sym_is] = ACTIONS(3681), - [anon_sym_DASH_GT] = ACTIONS(3681), - [anon_sym_with] = ACTIONS(3681), - [aux_sym_preproc_if_token3] = ACTIONS(3681), - [aux_sym_preproc_else_token1] = ACTIONS(3681), - [aux_sym_preproc_elif_token1] = ACTIONS(3681), + [sym__identifier_token] = ACTIONS(3871), + [anon_sym_alias] = ACTIONS(3873), + [anon_sym_global] = ACTIONS(3873), + [anon_sym_LBRACK] = ACTIONS(3947), + [anon_sym_LPAREN] = ACTIONS(3947), + [anon_sym_file] = ACTIONS(3873), + [anon_sym_LT] = ACTIONS(3949), + [anon_sym_GT] = ACTIONS(3949), + [anon_sym_where] = ACTIONS(3949), + [anon_sym_QMARK] = ACTIONS(3949), + [anon_sym_notnull] = ACTIONS(3873), + [anon_sym_unmanaged] = ACTIONS(3873), + [anon_sym_BANG] = ACTIONS(3949), + [anon_sym_PLUS_PLUS] = ACTIONS(3947), + [anon_sym_DASH_DASH] = ACTIONS(3947), + [anon_sym_PLUS] = ACTIONS(3949), + [anon_sym_DASH] = ACTIONS(3949), + [anon_sym_STAR] = ACTIONS(3947), + [anon_sym_SLASH] = ACTIONS(3949), + [anon_sym_PERCENT] = ACTIONS(3947), + [anon_sym_CARET] = ACTIONS(3947), + [anon_sym_PIPE] = ACTIONS(3949), + [anon_sym_AMP] = ACTIONS(3949), + [anon_sym_LT_LT] = ACTIONS(3947), + [anon_sym_GT_GT] = ACTIONS(3949), + [anon_sym_GT_GT_GT] = ACTIONS(3947), + [anon_sym_EQ_EQ] = ACTIONS(3947), + [anon_sym_BANG_EQ] = ACTIONS(3947), + [anon_sym_GT_EQ] = ACTIONS(3947), + [anon_sym_LT_EQ] = ACTIONS(3947), + [anon_sym_DOT] = ACTIONS(3949), + [anon_sym_scoped] = ACTIONS(3873), + [anon_sym_var] = ACTIONS(3873), + [anon_sym_yield] = ACTIONS(3873), + [anon_sym_switch] = ACTIONS(3949), + [anon_sym_when] = ACTIONS(3873), + [sym_discard] = ACTIONS(4187), + [anon_sym_DOT_DOT] = ACTIONS(3947), + [anon_sym_and] = ACTIONS(3949), + [anon_sym_or] = ACTIONS(3949), + [anon_sym_AMP_AMP] = ACTIONS(3947), + [anon_sym_PIPE_PIPE] = ACTIONS(3947), + [anon_sym_QMARK_QMARK] = ACTIONS(3947), + [anon_sym_from] = ACTIONS(3949), + [anon_sym_into] = ACTIONS(3873), + [anon_sym_join] = ACTIONS(3949), + [anon_sym_on] = ACTIONS(3873), + [anon_sym_equals] = ACTIONS(3873), + [anon_sym_let] = ACTIONS(3949), + [anon_sym_orderby] = ACTIONS(3949), + [anon_sym_ascending] = ACTIONS(3873), + [anon_sym_descending] = ACTIONS(3873), + [anon_sym_group] = ACTIONS(3949), + [anon_sym_by] = ACTIONS(3873), + [anon_sym_select] = ACTIONS(3949), + [anon_sym_as] = ACTIONS(3949), + [anon_sym_is] = ACTIONS(3949), + [anon_sym_DASH_GT] = ACTIONS(3947), + [anon_sym_with] = ACTIONS(3949), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -454981,69 +454595,69 @@ 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), - [sym__identifier_token] = ACTIONS(4561), - [anon_sym_extern] = ACTIONS(4561), - [anon_sym_alias] = ACTIONS(4561), - [anon_sym_global] = ACTIONS(4561), - [anon_sym_using] = ACTIONS(4561), - [anon_sym_unsafe] = ACTIONS(4561), - [anon_sym_static] = ACTIONS(4561), - [anon_sym_LBRACK] = ACTIONS(4563), - [anon_sym_LPAREN] = ACTIONS(4563), - [anon_sym_event] = ACTIONS(4561), - [anon_sym_namespace] = ACTIONS(4561), - [anon_sym_class] = ACTIONS(4561), - [anon_sym_ref] = ACTIONS(4561), - [anon_sym_struct] = ACTIONS(4561), - [anon_sym_enum] = ACTIONS(4561), - [anon_sym_RBRACE] = ACTIONS(4563), - [anon_sym_interface] = ACTIONS(4561), - [anon_sym_delegate] = ACTIONS(4561), - [anon_sym_record] = ACTIONS(4561), - [anon_sym_abstract] = ACTIONS(4561), - [anon_sym_async] = ACTIONS(4561), - [anon_sym_const] = ACTIONS(4561), - [anon_sym_file] = ACTIONS(4561), - [anon_sym_fixed] = ACTIONS(4561), - [anon_sym_internal] = ACTIONS(4561), - [anon_sym_new] = ACTIONS(4561), - [anon_sym_override] = ACTIONS(4561), - [anon_sym_partial] = ACTIONS(4561), - [anon_sym_private] = ACTIONS(4561), - [anon_sym_protected] = ACTIONS(4561), - [anon_sym_public] = ACTIONS(4561), - [anon_sym_readonly] = ACTIONS(4561), - [anon_sym_required] = ACTIONS(4561), - [anon_sym_sealed] = ACTIONS(4561), - [anon_sym_virtual] = ACTIONS(4561), - [anon_sym_volatile] = ACTIONS(4561), - [anon_sym_where] = ACTIONS(4561), - [anon_sym_notnull] = ACTIONS(4561), - [anon_sym_unmanaged] = ACTIONS(4561), - [anon_sym_TILDE] = ACTIONS(4563), - [anon_sym_implicit] = ACTIONS(4561), - [anon_sym_explicit] = ACTIONS(4561), - [anon_sym_scoped] = ACTIONS(4561), - [anon_sym_var] = ACTIONS(4561), - [sym_predefined_type] = ACTIONS(4561), - [anon_sym_yield] = ACTIONS(4561), - [anon_sym_when] = ACTIONS(4561), - [anon_sym_from] = ACTIONS(4561), - [anon_sym_into] = ACTIONS(4561), - [anon_sym_join] = ACTIONS(4561), - [anon_sym_on] = ACTIONS(4561), - [anon_sym_equals] = ACTIONS(4561), - [anon_sym_let] = ACTIONS(4561), - [anon_sym_orderby] = ACTIONS(4561), - [anon_sym_ascending] = ACTIONS(4561), - [anon_sym_descending] = ACTIONS(4561), - [anon_sym_group] = ACTIONS(4561), - [anon_sym_by] = ACTIONS(4561), - [anon_sym_select] = ACTIONS(4561), - [aux_sym_preproc_if_token1] = ACTIONS(4563), - [aux_sym_preproc_if_token3] = ACTIONS(4563), - [aux_sym_preproc_else_token1] = ACTIONS(4563), - [aux_sym_preproc_elif_token1] = ACTIONS(4563), + [anon_sym_SEMI] = ACTIONS(3665), + [anon_sym_EQ] = ACTIONS(3663), + [anon_sym_LBRACK] = ACTIONS(3665), + [anon_sym_COLON] = ACTIONS(3665), + [anon_sym_COMMA] = ACTIONS(3665), + [anon_sym_RBRACK] = ACTIONS(3665), + [anon_sym_LPAREN] = ACTIONS(3665), + [anon_sym_RPAREN] = ACTIONS(3665), + [anon_sym_RBRACE] = ACTIONS(3665), + [anon_sym_LT] = ACTIONS(3663), + [anon_sym_GT] = ACTIONS(3663), + [anon_sym_in] = ACTIONS(3665), + [anon_sym_QMARK] = ACTIONS(3663), + [anon_sym_BANG] = ACTIONS(3663), + [anon_sym_PLUS_PLUS] = ACTIONS(3665), + [anon_sym_DASH_DASH] = ACTIONS(3665), + [anon_sym_PLUS] = ACTIONS(3663), + [anon_sym_DASH] = ACTIONS(3663), + [anon_sym_STAR] = ACTIONS(3663), + [anon_sym_SLASH] = ACTIONS(3663), + [anon_sym_PERCENT] = ACTIONS(3663), + [anon_sym_CARET] = ACTIONS(3663), + [anon_sym_PIPE] = ACTIONS(3663), + [anon_sym_AMP] = ACTIONS(3663), + [anon_sym_LT_LT] = ACTIONS(3663), + [anon_sym_GT_GT] = ACTIONS(3663), + [anon_sym_GT_GT_GT] = ACTIONS(3663), + [anon_sym_EQ_EQ] = ACTIONS(3665), + [anon_sym_BANG_EQ] = ACTIONS(3665), + [anon_sym_GT_EQ] = ACTIONS(3665), + [anon_sym_LT_EQ] = ACTIONS(3665), + [anon_sym_DOT] = ACTIONS(3663), + [anon_sym_EQ_GT] = ACTIONS(3665), + [anon_sym_switch] = ACTIONS(3665), + [anon_sym_when] = ACTIONS(3665), + [anon_sym_DOT_DOT] = ACTIONS(3665), + [anon_sym_and] = ACTIONS(3665), + [anon_sym_or] = ACTIONS(3665), + [anon_sym_PLUS_EQ] = ACTIONS(3665), + [anon_sym_DASH_EQ] = ACTIONS(3665), + [anon_sym_STAR_EQ] = ACTIONS(3665), + [anon_sym_SLASH_EQ] = ACTIONS(3665), + [anon_sym_PERCENT_EQ] = ACTIONS(3665), + [anon_sym_AMP_EQ] = ACTIONS(3665), + [anon_sym_CARET_EQ] = ACTIONS(3665), + [anon_sym_PIPE_EQ] = ACTIONS(3665), + [anon_sym_LT_LT_EQ] = ACTIONS(3665), + [anon_sym_GT_GT_EQ] = ACTIONS(3665), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3665), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3665), + [anon_sym_AMP_AMP] = ACTIONS(3665), + [anon_sym_PIPE_PIPE] = ACTIONS(3665), + [anon_sym_QMARK_QMARK] = ACTIONS(3663), + [anon_sym_on] = ACTIONS(3665), + [anon_sym_equals] = ACTIONS(3665), + [anon_sym_by] = ACTIONS(3665), + [anon_sym_as] = ACTIONS(3665), + [anon_sym_is] = ACTIONS(3665), + [anon_sym_DASH_GT] = ACTIONS(3665), + [anon_sym_with] = ACTIONS(3665), + [aux_sym_preproc_if_token3] = ACTIONS(3665), + [aux_sym_preproc_else_token1] = ACTIONS(3665), + [aux_sym_preproc_elif_token1] = ACTIONS(3665), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -455065,79 +454679,79 @@ 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(4565), - [anon_sym_extern] = ACTIONS(4565), - [anon_sym_alias] = ACTIONS(4565), - [anon_sym_global] = ACTIONS(4565), - [anon_sym_using] = ACTIONS(4565), - [anon_sym_unsafe] = ACTIONS(4565), - [anon_sym_static] = ACTIONS(4565), - [anon_sym_LBRACK] = ACTIONS(4567), - [anon_sym_LPAREN] = ACTIONS(4567), - [anon_sym_event] = ACTIONS(4565), - [anon_sym_namespace] = ACTIONS(4565), - [anon_sym_class] = ACTIONS(4565), - [anon_sym_ref] = ACTIONS(4565), - [anon_sym_struct] = ACTIONS(4565), - [anon_sym_enum] = ACTIONS(4565), - [anon_sym_RBRACE] = ACTIONS(4567), - [anon_sym_interface] = ACTIONS(4565), - [anon_sym_delegate] = ACTIONS(4565), - [anon_sym_record] = ACTIONS(4565), - [anon_sym_abstract] = ACTIONS(4565), - [anon_sym_async] = ACTIONS(4565), - [anon_sym_const] = ACTIONS(4565), - [anon_sym_file] = ACTIONS(4565), - [anon_sym_fixed] = ACTIONS(4565), - [anon_sym_internal] = ACTIONS(4565), - [anon_sym_new] = ACTIONS(4565), - [anon_sym_override] = ACTIONS(4565), - [anon_sym_partial] = ACTIONS(4565), - [anon_sym_private] = ACTIONS(4565), - [anon_sym_protected] = ACTIONS(4565), - [anon_sym_public] = ACTIONS(4565), - [anon_sym_readonly] = ACTIONS(4565), - [anon_sym_required] = ACTIONS(4565), - [anon_sym_sealed] = ACTIONS(4565), - [anon_sym_virtual] = ACTIONS(4565), - [anon_sym_volatile] = ACTIONS(4565), - [anon_sym_where] = ACTIONS(4565), - [anon_sym_notnull] = ACTIONS(4565), - [anon_sym_unmanaged] = ACTIONS(4565), - [anon_sym_TILDE] = ACTIONS(4567), - [anon_sym_implicit] = ACTIONS(4565), - [anon_sym_explicit] = ACTIONS(4565), - [anon_sym_scoped] = ACTIONS(4565), - [anon_sym_var] = ACTIONS(4565), - [sym_predefined_type] = ACTIONS(4565), - [anon_sym_yield] = ACTIONS(4565), - [anon_sym_when] = ACTIONS(4565), - [anon_sym_from] = ACTIONS(4565), - [anon_sym_into] = ACTIONS(4565), - [anon_sym_join] = ACTIONS(4565), - [anon_sym_on] = ACTIONS(4565), - [anon_sym_equals] = ACTIONS(4565), - [anon_sym_let] = ACTIONS(4565), - [anon_sym_orderby] = ACTIONS(4565), - [anon_sym_ascending] = ACTIONS(4565), - [anon_sym_descending] = ACTIONS(4565), - [anon_sym_group] = ACTIONS(4565), - [anon_sym_by] = ACTIONS(4565), - [anon_sym_select] = ACTIONS(4565), - [aux_sym_preproc_if_token1] = ACTIONS(4567), - [aux_sym_preproc_if_token3] = ACTIONS(4567), - [aux_sym_preproc_else_token1] = ACTIONS(4567), - [aux_sym_preproc_elif_token1] = ACTIONS(4567), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_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(3988), + [anon_sym_alias] = ACTIONS(3988), + [anon_sym_global] = ACTIONS(3988), + [anon_sym_LBRACK] = ACTIONS(3990), + [anon_sym_COLON] = ACTIONS(3990), + [anon_sym_COMMA] = ACTIONS(3990), + [anon_sym_LPAREN] = ACTIONS(3990), + [anon_sym_LBRACE] = ACTIONS(3990), + [anon_sym_file] = ACTIONS(3988), + [anon_sym_LT] = ACTIONS(3988), + [anon_sym_GT] = ACTIONS(3988), + [anon_sym_where] = ACTIONS(3988), + [anon_sym_QMARK] = ACTIONS(3988), + [anon_sym_notnull] = ACTIONS(3988), + [anon_sym_unmanaged] = ACTIONS(3988), + [anon_sym_BANG] = ACTIONS(3988), + [anon_sym_PLUS_PLUS] = ACTIONS(3990), + [anon_sym_DASH_DASH] = ACTIONS(3990), + [anon_sym_PLUS] = ACTIONS(3988), + [anon_sym_DASH] = ACTIONS(3988), + [anon_sym_STAR] = ACTIONS(3990), + [anon_sym_SLASH] = ACTIONS(3988), + [anon_sym_PERCENT] = ACTIONS(3990), + [anon_sym_CARET] = ACTIONS(3990), + [anon_sym_PIPE] = ACTIONS(3988), + [anon_sym_AMP] = ACTIONS(3988), + [anon_sym_LT_LT] = ACTIONS(3990), + [anon_sym_GT_GT] = ACTIONS(3988), + [anon_sym_GT_GT_GT] = ACTIONS(3990), + [anon_sym_EQ_EQ] = ACTIONS(3990), + [anon_sym_BANG_EQ] = ACTIONS(3990), + [anon_sym_GT_EQ] = ACTIONS(3990), + [anon_sym_LT_EQ] = ACTIONS(3990), + [anon_sym_DOT] = ACTIONS(3988), + [anon_sym_scoped] = ACTIONS(3988), + [anon_sym_var] = ACTIONS(3988), + [anon_sym_yield] = ACTIONS(3988), + [anon_sym_switch] = ACTIONS(3988), + [anon_sym_when] = ACTIONS(3988), + [sym_discard] = ACTIONS(3988), + [anon_sym_DOT_DOT] = ACTIONS(3990), + [anon_sym_and] = ACTIONS(3988), + [anon_sym_or] = ACTIONS(3988), + [anon_sym_AMP_AMP] = ACTIONS(3990), + [anon_sym_PIPE_PIPE] = ACTIONS(3990), + [anon_sym_QMARK_QMARK] = ACTIONS(3990), + [anon_sym_from] = ACTIONS(3988), + [anon_sym_into] = ACTIONS(3988), + [anon_sym_join] = ACTIONS(3988), + [anon_sym_on] = ACTIONS(3988), + [anon_sym_equals] = ACTIONS(3988), + [anon_sym_let] = ACTIONS(3988), + [anon_sym_orderby] = ACTIONS(3988), + [anon_sym_ascending] = ACTIONS(3988), + [anon_sym_descending] = ACTIONS(3988), + [anon_sym_group] = ACTIONS(3988), + [anon_sym_by] = ACTIONS(3988), + [anon_sym_select] = ACTIONS(3988), + [anon_sym_as] = ACTIONS(3988), + [anon_sym_is] = ACTIONS(3988), + [anon_sym_DASH_GT] = ACTIONS(3990), + [anon_sym_with] = ACTIONS(3988), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_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(3990), }, [2813] = { [sym_preproc_region] = STATE(2813), @@ -455149,69 +454763,69 @@ 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), - [sym__identifier_token] = ACTIONS(4569), - [anon_sym_extern] = ACTIONS(4569), - [anon_sym_alias] = ACTIONS(4569), - [anon_sym_global] = ACTIONS(4569), - [anon_sym_using] = ACTIONS(4569), - [anon_sym_unsafe] = ACTIONS(4569), - [anon_sym_static] = ACTIONS(4569), - [anon_sym_LBRACK] = ACTIONS(4571), - [anon_sym_LPAREN] = ACTIONS(4571), - [anon_sym_event] = ACTIONS(4569), - [anon_sym_namespace] = ACTIONS(4569), - [anon_sym_class] = ACTIONS(4569), - [anon_sym_ref] = ACTIONS(4569), - [anon_sym_struct] = ACTIONS(4569), - [anon_sym_enum] = ACTIONS(4569), - [anon_sym_RBRACE] = ACTIONS(4571), - [anon_sym_interface] = ACTIONS(4569), - [anon_sym_delegate] = ACTIONS(4569), - [anon_sym_record] = ACTIONS(4569), - [anon_sym_abstract] = ACTIONS(4569), - [anon_sym_async] = ACTIONS(4569), - [anon_sym_const] = ACTIONS(4569), - [anon_sym_file] = ACTIONS(4569), - [anon_sym_fixed] = ACTIONS(4569), - [anon_sym_internal] = ACTIONS(4569), - [anon_sym_new] = ACTIONS(4569), - [anon_sym_override] = ACTIONS(4569), - [anon_sym_partial] = ACTIONS(4569), - [anon_sym_private] = ACTIONS(4569), - [anon_sym_protected] = ACTIONS(4569), - [anon_sym_public] = ACTIONS(4569), - [anon_sym_readonly] = ACTIONS(4569), - [anon_sym_required] = ACTIONS(4569), - [anon_sym_sealed] = ACTIONS(4569), - [anon_sym_virtual] = ACTIONS(4569), - [anon_sym_volatile] = ACTIONS(4569), - [anon_sym_where] = ACTIONS(4569), - [anon_sym_notnull] = ACTIONS(4569), - [anon_sym_unmanaged] = ACTIONS(4569), - [anon_sym_TILDE] = ACTIONS(4571), - [anon_sym_implicit] = ACTIONS(4569), - [anon_sym_explicit] = ACTIONS(4569), - [anon_sym_scoped] = ACTIONS(4569), - [anon_sym_var] = ACTIONS(4569), - [sym_predefined_type] = ACTIONS(4569), - [anon_sym_yield] = ACTIONS(4569), - [anon_sym_when] = ACTIONS(4569), - [anon_sym_from] = ACTIONS(4569), - [anon_sym_into] = ACTIONS(4569), - [anon_sym_join] = ACTIONS(4569), - [anon_sym_on] = ACTIONS(4569), - [anon_sym_equals] = ACTIONS(4569), - [anon_sym_let] = ACTIONS(4569), - [anon_sym_orderby] = ACTIONS(4569), - [anon_sym_ascending] = ACTIONS(4569), - [anon_sym_descending] = ACTIONS(4569), - [anon_sym_group] = ACTIONS(4569), - [anon_sym_by] = ACTIONS(4569), - [anon_sym_select] = ACTIONS(4569), - [aux_sym_preproc_if_token1] = ACTIONS(4571), - [aux_sym_preproc_if_token3] = ACTIONS(4571), - [aux_sym_preproc_else_token1] = ACTIONS(4571), - [aux_sym_preproc_elif_token1] = ACTIONS(4571), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -455233,79 +454847,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(4573), - [anon_sym_extern] = ACTIONS(4573), - [anon_sym_alias] = ACTIONS(4573), - [anon_sym_global] = ACTIONS(4573), - [anon_sym_using] = ACTIONS(4573), - [anon_sym_unsafe] = ACTIONS(4573), - [anon_sym_static] = ACTIONS(4573), - [anon_sym_LBRACK] = ACTIONS(4575), - [anon_sym_LPAREN] = ACTIONS(4575), - [anon_sym_event] = ACTIONS(4573), - [anon_sym_namespace] = ACTIONS(4573), - [anon_sym_class] = ACTIONS(4573), - [anon_sym_ref] = ACTIONS(4573), - [anon_sym_struct] = ACTIONS(4573), - [anon_sym_enum] = ACTIONS(4573), - [anon_sym_RBRACE] = ACTIONS(4575), - [anon_sym_interface] = ACTIONS(4573), - [anon_sym_delegate] = ACTIONS(4573), - [anon_sym_record] = ACTIONS(4573), - [anon_sym_abstract] = ACTIONS(4573), - [anon_sym_async] = ACTIONS(4573), - [anon_sym_const] = ACTIONS(4573), - [anon_sym_file] = ACTIONS(4573), - [anon_sym_fixed] = ACTIONS(4573), - [anon_sym_internal] = ACTIONS(4573), - [anon_sym_new] = ACTIONS(4573), - [anon_sym_override] = ACTIONS(4573), - [anon_sym_partial] = ACTIONS(4573), - [anon_sym_private] = ACTIONS(4573), - [anon_sym_protected] = ACTIONS(4573), - [anon_sym_public] = ACTIONS(4573), - [anon_sym_readonly] = ACTIONS(4573), - [anon_sym_required] = ACTIONS(4573), - [anon_sym_sealed] = ACTIONS(4573), - [anon_sym_virtual] = ACTIONS(4573), - [anon_sym_volatile] = ACTIONS(4573), - [anon_sym_where] = ACTIONS(4573), - [anon_sym_notnull] = ACTIONS(4573), - [anon_sym_unmanaged] = ACTIONS(4573), - [anon_sym_TILDE] = ACTIONS(4575), - [anon_sym_implicit] = ACTIONS(4573), - [anon_sym_explicit] = ACTIONS(4573), - [anon_sym_scoped] = ACTIONS(4573), - [anon_sym_var] = ACTIONS(4573), - [sym_predefined_type] = ACTIONS(4573), - [anon_sym_yield] = ACTIONS(4573), - [anon_sym_when] = ACTIONS(4573), - [anon_sym_from] = ACTIONS(4573), - [anon_sym_into] = ACTIONS(4573), - [anon_sym_join] = ACTIONS(4573), - [anon_sym_on] = ACTIONS(4573), - [anon_sym_equals] = ACTIONS(4573), - [anon_sym_let] = ACTIONS(4573), - [anon_sym_orderby] = ACTIONS(4573), - [anon_sym_ascending] = ACTIONS(4573), - [anon_sym_descending] = ACTIONS(4573), - [anon_sym_group] = ACTIONS(4573), - [anon_sym_by] = ACTIONS(4573), - [anon_sym_select] = ACTIONS(4573), - [aux_sym_preproc_if_token1] = ACTIONS(4575), - [aux_sym_preproc_if_token3] = ACTIONS(4575), - [aux_sym_preproc_else_token1] = ACTIONS(4575), - [aux_sym_preproc_elif_token1] = ACTIONS(4575), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_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(3984), + [anon_sym_alias] = ACTIONS(3984), + [anon_sym_global] = ACTIONS(3984), + [anon_sym_LBRACK] = ACTIONS(3986), + [anon_sym_COLON] = ACTIONS(3986), + [anon_sym_COMMA] = ACTIONS(3986), + [anon_sym_LPAREN] = ACTIONS(3986), + [anon_sym_LBRACE] = ACTIONS(3986), + [anon_sym_file] = ACTIONS(3984), + [anon_sym_LT] = ACTIONS(3984), + [anon_sym_GT] = ACTIONS(3984), + [anon_sym_where] = ACTIONS(3984), + [anon_sym_QMARK] = ACTIONS(3984), + [anon_sym_notnull] = ACTIONS(3984), + [anon_sym_unmanaged] = ACTIONS(3984), + [anon_sym_BANG] = ACTIONS(3984), + [anon_sym_PLUS_PLUS] = ACTIONS(3986), + [anon_sym_DASH_DASH] = ACTIONS(3986), + [anon_sym_PLUS] = ACTIONS(3984), + [anon_sym_DASH] = ACTIONS(3984), + [anon_sym_STAR] = ACTIONS(3986), + [anon_sym_SLASH] = ACTIONS(3984), + [anon_sym_PERCENT] = ACTIONS(3986), + [anon_sym_CARET] = ACTIONS(3986), + [anon_sym_PIPE] = ACTIONS(3984), + [anon_sym_AMP] = ACTIONS(3984), + [anon_sym_LT_LT] = ACTIONS(3986), + [anon_sym_GT_GT] = ACTIONS(3984), + [anon_sym_GT_GT_GT] = ACTIONS(3986), + [anon_sym_EQ_EQ] = ACTIONS(3986), + [anon_sym_BANG_EQ] = ACTIONS(3986), + [anon_sym_GT_EQ] = ACTIONS(3986), + [anon_sym_LT_EQ] = ACTIONS(3986), + [anon_sym_DOT] = ACTIONS(3984), + [anon_sym_scoped] = ACTIONS(3984), + [anon_sym_var] = ACTIONS(3984), + [anon_sym_yield] = ACTIONS(3984), + [anon_sym_switch] = ACTIONS(3984), + [anon_sym_when] = ACTIONS(3984), + [sym_discard] = ACTIONS(3984), + [anon_sym_DOT_DOT] = ACTIONS(3986), + [anon_sym_and] = ACTIONS(3984), + [anon_sym_or] = ACTIONS(3984), + [anon_sym_AMP_AMP] = ACTIONS(3986), + [anon_sym_PIPE_PIPE] = ACTIONS(3986), + [anon_sym_QMARK_QMARK] = ACTIONS(3986), + [anon_sym_from] = ACTIONS(3984), + [anon_sym_into] = ACTIONS(3984), + [anon_sym_join] = ACTIONS(3984), + [anon_sym_on] = ACTIONS(3984), + [anon_sym_equals] = ACTIONS(3984), + [anon_sym_let] = ACTIONS(3984), + [anon_sym_orderby] = ACTIONS(3984), + [anon_sym_ascending] = ACTIONS(3984), + [anon_sym_descending] = ACTIONS(3984), + [anon_sym_group] = ACTIONS(3984), + [anon_sym_by] = ACTIONS(3984), + [anon_sym_select] = ACTIONS(3984), + [anon_sym_as] = ACTIONS(3984), + [anon_sym_is] = ACTIONS(3984), + [anon_sym_DASH_GT] = ACTIONS(3986), + [anon_sym_with] = ACTIONS(3984), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_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(3986), }, [2815] = { [sym_preproc_region] = STATE(2815), @@ -455317,69 +454931,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(4577), - [anon_sym_extern] = ACTIONS(4577), - [anon_sym_alias] = ACTIONS(4577), - [anon_sym_global] = ACTIONS(4577), - [anon_sym_using] = ACTIONS(4577), - [anon_sym_unsafe] = ACTIONS(4577), - [anon_sym_static] = ACTIONS(4577), - [anon_sym_LBRACK] = ACTIONS(4579), - [anon_sym_LPAREN] = ACTIONS(4579), - [anon_sym_event] = ACTIONS(4577), - [anon_sym_namespace] = ACTIONS(4577), - [anon_sym_class] = ACTIONS(4577), - [anon_sym_ref] = ACTIONS(4577), - [anon_sym_struct] = ACTIONS(4577), - [anon_sym_enum] = ACTIONS(4577), - [anon_sym_RBRACE] = ACTIONS(4579), - [anon_sym_interface] = ACTIONS(4577), - [anon_sym_delegate] = ACTIONS(4577), - [anon_sym_record] = ACTIONS(4577), - [anon_sym_abstract] = ACTIONS(4577), - [anon_sym_async] = ACTIONS(4577), - [anon_sym_const] = ACTIONS(4577), - [anon_sym_file] = ACTIONS(4577), - [anon_sym_fixed] = ACTIONS(4577), - [anon_sym_internal] = ACTIONS(4577), - [anon_sym_new] = ACTIONS(4577), - [anon_sym_override] = ACTIONS(4577), - [anon_sym_partial] = ACTIONS(4577), - [anon_sym_private] = ACTIONS(4577), - [anon_sym_protected] = ACTIONS(4577), - [anon_sym_public] = ACTIONS(4577), - [anon_sym_readonly] = ACTIONS(4577), - [anon_sym_required] = ACTIONS(4577), - [anon_sym_sealed] = ACTIONS(4577), - [anon_sym_virtual] = ACTIONS(4577), - [anon_sym_volatile] = ACTIONS(4577), - [anon_sym_where] = ACTIONS(4577), - [anon_sym_notnull] = ACTIONS(4577), - [anon_sym_unmanaged] = ACTIONS(4577), - [anon_sym_TILDE] = ACTIONS(4579), - [anon_sym_implicit] = ACTIONS(4577), - [anon_sym_explicit] = ACTIONS(4577), - [anon_sym_scoped] = ACTIONS(4577), - [anon_sym_var] = ACTIONS(4577), - [sym_predefined_type] = ACTIONS(4577), - [anon_sym_yield] = ACTIONS(4577), - [anon_sym_when] = ACTIONS(4577), - [anon_sym_from] = ACTIONS(4577), - [anon_sym_into] = ACTIONS(4577), - [anon_sym_join] = ACTIONS(4577), - [anon_sym_on] = ACTIONS(4577), - [anon_sym_equals] = ACTIONS(4577), - [anon_sym_let] = ACTIONS(4577), - [anon_sym_orderby] = ACTIONS(4577), - [anon_sym_ascending] = ACTIONS(4577), - [anon_sym_descending] = ACTIONS(4577), - [anon_sym_group] = ACTIONS(4577), - [anon_sym_by] = ACTIONS(4577), - [anon_sym_select] = ACTIONS(4577), - [aux_sym_preproc_if_token1] = ACTIONS(4579), - [aux_sym_preproc_if_token3] = ACTIONS(4579), - [aux_sym_preproc_else_token1] = ACTIONS(4579), - [aux_sym_preproc_elif_token1] = ACTIONS(4579), + [anon_sym_SEMI] = ACTIONS(3711), + [anon_sym_EQ] = ACTIONS(3696), + [anon_sym_LBRACK] = ACTIONS(3711), + [anon_sym_COLON] = ACTIONS(3711), + [anon_sym_COMMA] = ACTIONS(3711), + [anon_sym_RBRACK] = ACTIONS(3711), + [anon_sym_LPAREN] = ACTIONS(3711), + [anon_sym_RPAREN] = ACTIONS(3711), + [anon_sym_RBRACE] = ACTIONS(3711), + [anon_sym_LT] = ACTIONS(3696), + [anon_sym_GT] = ACTIONS(3696), + [anon_sym_in] = ACTIONS(3711), + [anon_sym_QMARK] = ACTIONS(3696), + [anon_sym_BANG] = ACTIONS(3696), + [anon_sym_PLUS_PLUS] = ACTIONS(3711), + [anon_sym_DASH_DASH] = ACTIONS(3711), + [anon_sym_PLUS] = ACTIONS(3696), + [anon_sym_DASH] = ACTIONS(3696), + [anon_sym_STAR] = ACTIONS(3696), + [anon_sym_SLASH] = ACTIONS(3696), + [anon_sym_PERCENT] = ACTIONS(3696), + [anon_sym_CARET] = ACTIONS(3696), + [anon_sym_PIPE] = ACTIONS(3696), + [anon_sym_AMP] = ACTIONS(3696), + [anon_sym_LT_LT] = ACTIONS(3696), + [anon_sym_GT_GT] = ACTIONS(3696), + [anon_sym_GT_GT_GT] = ACTIONS(3696), + [anon_sym_EQ_EQ] = ACTIONS(3711), + [anon_sym_BANG_EQ] = ACTIONS(3711), + [anon_sym_GT_EQ] = ACTIONS(3711), + [anon_sym_LT_EQ] = ACTIONS(3711), + [anon_sym_DOT] = ACTIONS(3696), + [anon_sym_EQ_GT] = ACTIONS(3711), + [anon_sym_switch] = ACTIONS(3711), + [anon_sym_when] = ACTIONS(3711), + [anon_sym_DOT_DOT] = ACTIONS(3711), + [anon_sym_and] = ACTIONS(3711), + [anon_sym_or] = ACTIONS(3711), + [anon_sym_PLUS_EQ] = ACTIONS(3711), + [anon_sym_DASH_EQ] = ACTIONS(3711), + [anon_sym_STAR_EQ] = ACTIONS(3711), + [anon_sym_SLASH_EQ] = ACTIONS(3711), + [anon_sym_PERCENT_EQ] = ACTIONS(3711), + [anon_sym_AMP_EQ] = ACTIONS(3711), + [anon_sym_CARET_EQ] = ACTIONS(3711), + [anon_sym_PIPE_EQ] = ACTIONS(3711), + [anon_sym_LT_LT_EQ] = ACTIONS(3711), + [anon_sym_GT_GT_EQ] = ACTIONS(3711), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3711), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3711), + [anon_sym_AMP_AMP] = ACTIONS(3711), + [anon_sym_PIPE_PIPE] = ACTIONS(3711), + [anon_sym_QMARK_QMARK] = ACTIONS(3696), + [anon_sym_on] = ACTIONS(3711), + [anon_sym_equals] = ACTIONS(3711), + [anon_sym_by] = ACTIONS(3711), + [anon_sym_as] = ACTIONS(3711), + [anon_sym_is] = ACTIONS(3711), + [anon_sym_DASH_GT] = ACTIONS(3711), + [anon_sym_with] = ACTIONS(3711), + [aux_sym_preproc_if_token3] = ACTIONS(3711), + [aux_sym_preproc_else_token1] = ACTIONS(3711), + [aux_sym_preproc_elif_token1] = ACTIONS(3711), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -455401,69 +455015,69 @@ 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), - [sym__identifier_token] = ACTIONS(4581), - [anon_sym_extern] = ACTIONS(4581), - [anon_sym_alias] = ACTIONS(4581), - [anon_sym_global] = ACTIONS(4581), - [anon_sym_using] = ACTIONS(4581), - [anon_sym_unsafe] = ACTIONS(4581), - [anon_sym_static] = ACTIONS(4581), - [anon_sym_LBRACK] = ACTIONS(4583), - [anon_sym_LPAREN] = ACTIONS(4583), - [anon_sym_event] = ACTIONS(4581), - [anon_sym_namespace] = ACTIONS(4581), - [anon_sym_class] = ACTIONS(4581), - [anon_sym_ref] = ACTIONS(4581), - [anon_sym_struct] = ACTIONS(4581), - [anon_sym_enum] = ACTIONS(4581), - [anon_sym_RBRACE] = ACTIONS(4583), - [anon_sym_interface] = ACTIONS(4581), - [anon_sym_delegate] = ACTIONS(4581), - [anon_sym_record] = ACTIONS(4581), - [anon_sym_abstract] = ACTIONS(4581), - [anon_sym_async] = ACTIONS(4581), - [anon_sym_const] = ACTIONS(4581), - [anon_sym_file] = ACTIONS(4581), - [anon_sym_fixed] = ACTIONS(4581), - [anon_sym_internal] = ACTIONS(4581), - [anon_sym_new] = ACTIONS(4581), - [anon_sym_override] = ACTIONS(4581), - [anon_sym_partial] = ACTIONS(4581), - [anon_sym_private] = ACTIONS(4581), - [anon_sym_protected] = ACTIONS(4581), - [anon_sym_public] = ACTIONS(4581), - [anon_sym_readonly] = ACTIONS(4581), - [anon_sym_required] = ACTIONS(4581), - [anon_sym_sealed] = ACTIONS(4581), - [anon_sym_virtual] = ACTIONS(4581), - [anon_sym_volatile] = ACTIONS(4581), - [anon_sym_where] = ACTIONS(4581), - [anon_sym_notnull] = ACTIONS(4581), - [anon_sym_unmanaged] = ACTIONS(4581), - [anon_sym_TILDE] = ACTIONS(4583), - [anon_sym_implicit] = ACTIONS(4581), - [anon_sym_explicit] = ACTIONS(4581), - [anon_sym_scoped] = ACTIONS(4581), - [anon_sym_var] = ACTIONS(4581), - [sym_predefined_type] = ACTIONS(4581), - [anon_sym_yield] = ACTIONS(4581), - [anon_sym_when] = ACTIONS(4581), - [anon_sym_from] = ACTIONS(4581), - [anon_sym_into] = ACTIONS(4581), - [anon_sym_join] = ACTIONS(4581), - [anon_sym_on] = ACTIONS(4581), - [anon_sym_equals] = ACTIONS(4581), - [anon_sym_let] = ACTIONS(4581), - [anon_sym_orderby] = ACTIONS(4581), - [anon_sym_ascending] = ACTIONS(4581), - [anon_sym_descending] = ACTIONS(4581), - [anon_sym_group] = ACTIONS(4581), - [anon_sym_by] = ACTIONS(4581), - [anon_sym_select] = ACTIONS(4581), - [aux_sym_preproc_if_token1] = ACTIONS(4583), - [aux_sym_preproc_if_token3] = ACTIONS(4583), - [aux_sym_preproc_else_token1] = ACTIONS(4583), - [aux_sym_preproc_elif_token1] = ACTIONS(4583), + [anon_sym_SEMI] = ACTIONS(4116), + [anon_sym_EQ] = ACTIONS(4118), + [anon_sym_LBRACK] = ACTIONS(4116), + [anon_sym_COLON] = ACTIONS(4116), + [anon_sym_COMMA] = ACTIONS(4116), + [anon_sym_RBRACK] = ACTIONS(4116), + [anon_sym_LPAREN] = ACTIONS(4116), + [anon_sym_RPAREN] = ACTIONS(4116), + [anon_sym_RBRACE] = ACTIONS(4116), + [anon_sym_LT] = ACTIONS(4118), + [anon_sym_GT] = ACTIONS(4118), + [anon_sym_in] = ACTIONS(4116), + [anon_sym_QMARK] = ACTIONS(4118), + [anon_sym_BANG] = ACTIONS(4118), + [anon_sym_PLUS_PLUS] = ACTIONS(4116), + [anon_sym_DASH_DASH] = ACTIONS(4116), + [anon_sym_PLUS] = ACTIONS(4118), + [anon_sym_DASH] = ACTIONS(4118), + [anon_sym_STAR] = ACTIONS(4118), + [anon_sym_SLASH] = ACTIONS(4118), + [anon_sym_PERCENT] = ACTIONS(4118), + [anon_sym_CARET] = ACTIONS(4118), + [anon_sym_PIPE] = ACTIONS(4118), + [anon_sym_AMP] = ACTIONS(4118), + [anon_sym_LT_LT] = ACTIONS(4118), + [anon_sym_GT_GT] = ACTIONS(4118), + [anon_sym_GT_GT_GT] = ACTIONS(4118), + [anon_sym_EQ_EQ] = ACTIONS(4116), + [anon_sym_BANG_EQ] = ACTIONS(4116), + [anon_sym_GT_EQ] = ACTIONS(4116), + [anon_sym_LT_EQ] = ACTIONS(4116), + [anon_sym_DOT] = ACTIONS(4118), + [anon_sym_EQ_GT] = ACTIONS(4116), + [anon_sym_switch] = ACTIONS(4116), + [anon_sym_when] = ACTIONS(4116), + [anon_sym_DOT_DOT] = ACTIONS(4116), + [anon_sym_and] = ACTIONS(4116), + [anon_sym_or] = ACTIONS(4116), + [anon_sym_PLUS_EQ] = ACTIONS(4116), + [anon_sym_DASH_EQ] = ACTIONS(4116), + [anon_sym_STAR_EQ] = ACTIONS(4116), + [anon_sym_SLASH_EQ] = ACTIONS(4116), + [anon_sym_PERCENT_EQ] = ACTIONS(4116), + [anon_sym_AMP_EQ] = ACTIONS(4116), + [anon_sym_CARET_EQ] = ACTIONS(4116), + [anon_sym_PIPE_EQ] = ACTIONS(4116), + [anon_sym_LT_LT_EQ] = ACTIONS(4116), + [anon_sym_GT_GT_EQ] = ACTIONS(4116), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(4116), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(4116), + [anon_sym_AMP_AMP] = ACTIONS(4116), + [anon_sym_PIPE_PIPE] = ACTIONS(4116), + [anon_sym_QMARK_QMARK] = ACTIONS(4118), + [anon_sym_on] = ACTIONS(4116), + [anon_sym_equals] = ACTIONS(4116), + [anon_sym_by] = ACTIONS(4116), + [anon_sym_as] = ACTIONS(4116), + [anon_sym_is] = ACTIONS(4116), + [anon_sym_DASH_GT] = ACTIONS(4116), + [anon_sym_with] = ACTIONS(4116), + [aux_sym_preproc_if_token3] = ACTIONS(4116), + [aux_sym_preproc_else_token1] = ACTIONS(4116), + [aux_sym_preproc_elif_token1] = ACTIONS(4116), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -455485,79 +455099,79 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2817), [sym_preproc_define] = STATE(2817), [sym_preproc_undef] = STATE(2817), - [sym__identifier_token] = ACTIONS(4585), - [anon_sym_extern] = ACTIONS(4585), - [anon_sym_alias] = ACTIONS(4585), - [anon_sym_global] = ACTIONS(4585), - [anon_sym_using] = ACTIONS(4585), - [anon_sym_unsafe] = ACTIONS(4585), - [anon_sym_static] = ACTIONS(4585), - [anon_sym_LBRACK] = ACTIONS(4587), - [anon_sym_LPAREN] = ACTIONS(4587), - [anon_sym_event] = ACTIONS(4585), - [anon_sym_namespace] = ACTIONS(4585), - [anon_sym_class] = ACTIONS(4585), - [anon_sym_ref] = ACTIONS(4585), - [anon_sym_struct] = ACTIONS(4585), - [anon_sym_enum] = ACTIONS(4585), - [anon_sym_RBRACE] = ACTIONS(4587), - [anon_sym_interface] = ACTIONS(4585), - [anon_sym_delegate] = ACTIONS(4585), - [anon_sym_record] = ACTIONS(4585), - [anon_sym_abstract] = ACTIONS(4585), - [anon_sym_async] = ACTIONS(4585), - [anon_sym_const] = ACTIONS(4585), - [anon_sym_file] = ACTIONS(4585), - [anon_sym_fixed] = ACTIONS(4585), - [anon_sym_internal] = ACTIONS(4585), - [anon_sym_new] = ACTIONS(4585), - [anon_sym_override] = ACTIONS(4585), - [anon_sym_partial] = ACTIONS(4585), - [anon_sym_private] = ACTIONS(4585), - [anon_sym_protected] = ACTIONS(4585), - [anon_sym_public] = ACTIONS(4585), - [anon_sym_readonly] = ACTIONS(4585), - [anon_sym_required] = ACTIONS(4585), - [anon_sym_sealed] = ACTIONS(4585), - [anon_sym_virtual] = ACTIONS(4585), - [anon_sym_volatile] = ACTIONS(4585), - [anon_sym_where] = ACTIONS(4585), - [anon_sym_notnull] = ACTIONS(4585), - [anon_sym_unmanaged] = ACTIONS(4585), - [anon_sym_TILDE] = ACTIONS(4587), - [anon_sym_implicit] = ACTIONS(4585), - [anon_sym_explicit] = ACTIONS(4585), - [anon_sym_scoped] = ACTIONS(4585), - [anon_sym_var] = ACTIONS(4585), - [sym_predefined_type] = ACTIONS(4585), - [anon_sym_yield] = ACTIONS(4585), - [anon_sym_when] = ACTIONS(4585), - [anon_sym_from] = ACTIONS(4585), - [anon_sym_into] = ACTIONS(4585), - [anon_sym_join] = ACTIONS(4585), - [anon_sym_on] = ACTIONS(4585), - [anon_sym_equals] = ACTIONS(4585), - [anon_sym_let] = ACTIONS(4585), - [anon_sym_orderby] = ACTIONS(4585), - [anon_sym_ascending] = ACTIONS(4585), - [anon_sym_descending] = ACTIONS(4585), - [anon_sym_group] = ACTIONS(4585), - [anon_sym_by] = ACTIONS(4585), - [anon_sym_select] = ACTIONS(4585), - [aux_sym_preproc_if_token1] = ACTIONS(4587), - [aux_sym_preproc_if_token3] = ACTIONS(4587), - [aux_sym_preproc_else_token1] = ACTIONS(4587), - [aux_sym_preproc_elif_token1] = ACTIONS(4587), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_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(3961), + [anon_sym_alias] = ACTIONS(3961), + [anon_sym_global] = ACTIONS(3961), + [anon_sym_LBRACK] = ACTIONS(4033), + [anon_sym_COLON] = ACTIONS(3963), + [anon_sym_COMMA] = ACTIONS(3963), + [anon_sym_LPAREN] = ACTIONS(3963), + [anon_sym_LBRACE] = ACTIONS(3963), + [anon_sym_file] = ACTIONS(3961), + [anon_sym_LT] = ACTIONS(3961), + [anon_sym_GT] = ACTIONS(3961), + [anon_sym_where] = ACTIONS(3961), + [anon_sym_QMARK] = ACTIONS(4298), + [anon_sym_notnull] = ACTIONS(3961), + [anon_sym_unmanaged] = ACTIONS(3961), + [anon_sym_BANG] = ACTIONS(3961), + [anon_sym_PLUS_PLUS] = ACTIONS(3963), + [anon_sym_DASH_DASH] = ACTIONS(3963), + [anon_sym_PLUS] = ACTIONS(3961), + [anon_sym_DASH] = ACTIONS(3961), + [anon_sym_STAR] = ACTIONS(4039), + [anon_sym_SLASH] = ACTIONS(3961), + [anon_sym_PERCENT] = ACTIONS(3963), + [anon_sym_CARET] = ACTIONS(3963), + [anon_sym_PIPE] = ACTIONS(3961), + [anon_sym_AMP] = ACTIONS(3961), + [anon_sym_LT_LT] = ACTIONS(3963), + [anon_sym_GT_GT] = ACTIONS(3961), + [anon_sym_GT_GT_GT] = ACTIONS(3963), + [anon_sym_EQ_EQ] = ACTIONS(3963), + [anon_sym_BANG_EQ] = ACTIONS(3963), + [anon_sym_GT_EQ] = ACTIONS(3963), + [anon_sym_LT_EQ] = ACTIONS(3963), + [anon_sym_DOT] = ACTIONS(4631), + [anon_sym_scoped] = ACTIONS(3961), + [anon_sym_var] = ACTIONS(3961), + [anon_sym_yield] = ACTIONS(3961), + [anon_sym_switch] = ACTIONS(3961), + [anon_sym_when] = ACTIONS(3961), + [sym_discard] = ACTIONS(3961), + [anon_sym_DOT_DOT] = ACTIONS(3963), + [anon_sym_and] = ACTIONS(3961), + [anon_sym_or] = ACTIONS(3961), + [anon_sym_AMP_AMP] = ACTIONS(3963), + [anon_sym_PIPE_PIPE] = ACTIONS(3963), + [anon_sym_QMARK_QMARK] = ACTIONS(3963), + [anon_sym_from] = ACTIONS(3961), + [anon_sym_into] = ACTIONS(3961), + [anon_sym_join] = ACTIONS(3961), + [anon_sym_on] = ACTIONS(3961), + [anon_sym_equals] = ACTIONS(3961), + [anon_sym_let] = ACTIONS(3961), + [anon_sym_orderby] = ACTIONS(3961), + [anon_sym_ascending] = ACTIONS(3961), + [anon_sym_descending] = ACTIONS(3961), + [anon_sym_group] = ACTIONS(3961), + [anon_sym_by] = ACTIONS(3961), + [anon_sym_select] = ACTIONS(3961), + [anon_sym_as] = ACTIONS(3961), + [anon_sym_is] = ACTIONS(3961), + [anon_sym_DASH_GT] = ACTIONS(4429), + [anon_sym_with] = ACTIONS(3961), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_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(3963), }, [2818] = { [sym_preproc_region] = STATE(2818), @@ -455569,69 +455183,69 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2818), [sym_preproc_define] = STATE(2818), [sym_preproc_undef] = STATE(2818), - [sym__identifier_token] = ACTIONS(4589), - [anon_sym_extern] = ACTIONS(4589), - [anon_sym_alias] = ACTIONS(4589), - [anon_sym_global] = ACTIONS(4589), - [anon_sym_using] = ACTIONS(4589), - [anon_sym_unsafe] = ACTIONS(4589), - [anon_sym_static] = ACTIONS(4589), - [anon_sym_LBRACK] = ACTIONS(4591), - [anon_sym_LPAREN] = ACTIONS(4591), - [anon_sym_event] = ACTIONS(4589), - [anon_sym_namespace] = ACTIONS(4589), - [anon_sym_class] = ACTIONS(4589), - [anon_sym_ref] = ACTIONS(4589), - [anon_sym_struct] = ACTIONS(4589), - [anon_sym_enum] = ACTIONS(4589), - [anon_sym_RBRACE] = ACTIONS(4591), - [anon_sym_interface] = ACTIONS(4589), - [anon_sym_delegate] = ACTIONS(4589), - [anon_sym_record] = ACTIONS(4589), - [anon_sym_abstract] = ACTIONS(4589), - [anon_sym_async] = ACTIONS(4589), - [anon_sym_const] = ACTIONS(4589), - [anon_sym_file] = ACTIONS(4589), - [anon_sym_fixed] = ACTIONS(4589), - [anon_sym_internal] = ACTIONS(4589), - [anon_sym_new] = ACTIONS(4589), - [anon_sym_override] = ACTIONS(4589), - [anon_sym_partial] = ACTIONS(4589), - [anon_sym_private] = ACTIONS(4589), - [anon_sym_protected] = ACTIONS(4589), - [anon_sym_public] = ACTIONS(4589), - [anon_sym_readonly] = ACTIONS(4589), - [anon_sym_required] = ACTIONS(4589), - [anon_sym_sealed] = ACTIONS(4589), - [anon_sym_virtual] = ACTIONS(4589), - [anon_sym_volatile] = ACTIONS(4589), - [anon_sym_where] = ACTIONS(4589), - [anon_sym_notnull] = ACTIONS(4589), - [anon_sym_unmanaged] = ACTIONS(4589), - [anon_sym_TILDE] = ACTIONS(4591), - [anon_sym_implicit] = ACTIONS(4589), - [anon_sym_explicit] = ACTIONS(4589), - [anon_sym_scoped] = ACTIONS(4589), - [anon_sym_var] = ACTIONS(4589), - [sym_predefined_type] = ACTIONS(4589), - [anon_sym_yield] = ACTIONS(4589), - [anon_sym_when] = ACTIONS(4589), - [anon_sym_from] = ACTIONS(4589), - [anon_sym_into] = ACTIONS(4589), - [anon_sym_join] = ACTIONS(4589), - [anon_sym_on] = ACTIONS(4589), - [anon_sym_equals] = ACTIONS(4589), - [anon_sym_let] = ACTIONS(4589), - [anon_sym_orderby] = ACTIONS(4589), - [anon_sym_ascending] = ACTIONS(4589), - [anon_sym_descending] = ACTIONS(4589), - [anon_sym_group] = ACTIONS(4589), - [anon_sym_by] = ACTIONS(4589), - [anon_sym_select] = ACTIONS(4589), - [aux_sym_preproc_if_token1] = ACTIONS(4591), - [aux_sym_preproc_if_token3] = ACTIONS(4591), - [aux_sym_preproc_else_token1] = ACTIONS(4591), - [aux_sym_preproc_elif_token1] = ACTIONS(4591), + [sym__identifier_token] = ACTIONS(3331), + [anon_sym_extern] = ACTIONS(3331), + [anon_sym_alias] = ACTIONS(3331), + [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_event] = 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_RBRACE] = 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_TILDE] = ACTIONS(3333), + [anon_sym_implicit] = ACTIONS(3331), + [anon_sym_explicit] = ACTIONS(3331), + [anon_sym_scoped] = ACTIONS(3331), + [anon_sym_var] = ACTIONS(3331), + [sym_predefined_type] = ACTIONS(3331), + [anon_sym_yield] = ACTIONS(3331), + [anon_sym_when] = ACTIONS(3331), + [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), + [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), @@ -455653,68 +455267,69 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2819), [sym_preproc_define] = STATE(2819), [sym_preproc_undef] = STATE(2819), - [sym__identifier_token] = ACTIONS(3949), - [anon_sym_alias] = ACTIONS(3949), - [anon_sym_global] = ACTIONS(3949), - [anon_sym_LBRACK] = ACTIONS(3951), - [anon_sym_COLON] = ACTIONS(3951), - [anon_sym_COMMA] = ACTIONS(3951), - [anon_sym_LPAREN] = ACTIONS(3951), - [anon_sym_LBRACE] = ACTIONS(3951), - [anon_sym_file] = ACTIONS(3949), - [anon_sym_LT] = ACTIONS(3949), - [anon_sym_GT] = ACTIONS(3949), - [anon_sym_where] = ACTIONS(3949), - [anon_sym_QMARK] = ACTIONS(3949), - [anon_sym_notnull] = ACTIONS(3949), - [anon_sym_unmanaged] = ACTIONS(3949), - [anon_sym_BANG] = ACTIONS(3949), - [anon_sym_PLUS_PLUS] = ACTIONS(3951), - [anon_sym_DASH_DASH] = ACTIONS(3951), - [anon_sym_PLUS] = ACTIONS(3949), - [anon_sym_DASH] = ACTIONS(3949), - [anon_sym_STAR] = ACTIONS(3951), - [anon_sym_SLASH] = ACTIONS(3949), - [anon_sym_PERCENT] = ACTIONS(3951), - [anon_sym_CARET] = ACTIONS(3951), - [anon_sym_PIPE] = ACTIONS(3949), - [anon_sym_AMP] = ACTIONS(3949), - [anon_sym_LT_LT] = ACTIONS(3951), - [anon_sym_GT_GT] = ACTIONS(3949), - [anon_sym_GT_GT_GT] = ACTIONS(3951), - [anon_sym_EQ_EQ] = ACTIONS(3951), - [anon_sym_BANG_EQ] = ACTIONS(3951), - [anon_sym_GT_EQ] = ACTIONS(3951), - [anon_sym_LT_EQ] = ACTIONS(3951), - [anon_sym_DOT] = ACTIONS(3949), - [anon_sym_scoped] = ACTIONS(3949), - [anon_sym_var] = ACTIONS(3949), - [anon_sym_yield] = ACTIONS(3949), - [anon_sym_switch] = ACTIONS(3949), - [anon_sym_when] = ACTIONS(3949), - [sym_discard] = ACTIONS(3949), - [anon_sym_DOT_DOT] = ACTIONS(3951), - [anon_sym_and] = ACTIONS(3949), - [anon_sym_or] = ACTIONS(3949), - [anon_sym_AMP_AMP] = ACTIONS(3951), - [anon_sym_PIPE_PIPE] = ACTIONS(3951), - [anon_sym_QMARK_QMARK] = ACTIONS(3951), - [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_ascending] = ACTIONS(3949), - [anon_sym_descending] = 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(3951), - [anon_sym_with] = ACTIONS(3949), + [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_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), + [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), @@ -455725,7 +455340,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(3951), }, [2820] = { [sym_preproc_region] = STATE(2820), @@ -455737,69 +455351,69 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2820), [sym_preproc_define] = STATE(2820), [sym_preproc_undef] = STATE(2820), - [sym__identifier_token] = ACTIONS(2951), - [anon_sym_extern] = ACTIONS(2951), - [anon_sym_alias] = ACTIONS(2951), - [anon_sym_global] = ACTIONS(2951), - [anon_sym_using] = ACTIONS(2951), - [anon_sym_unsafe] = ACTIONS(2951), - [anon_sym_static] = ACTIONS(2951), - [anon_sym_LBRACK] = ACTIONS(2953), - [anon_sym_LPAREN] = ACTIONS(2953), - [anon_sym_event] = ACTIONS(2951), - [anon_sym_namespace] = ACTIONS(2951), - [anon_sym_class] = ACTIONS(2951), - [anon_sym_ref] = ACTIONS(2951), - [anon_sym_struct] = ACTIONS(2951), - [anon_sym_enum] = ACTIONS(2951), - [anon_sym_RBRACE] = ACTIONS(2953), - [anon_sym_interface] = ACTIONS(2951), - [anon_sym_delegate] = ACTIONS(2951), - [anon_sym_record] = ACTIONS(2951), - [anon_sym_abstract] = ACTIONS(2951), - [anon_sym_async] = ACTIONS(2951), - [anon_sym_const] = ACTIONS(2951), - [anon_sym_file] = ACTIONS(2951), - [anon_sym_fixed] = ACTIONS(2951), - [anon_sym_internal] = ACTIONS(2951), - [anon_sym_new] = ACTIONS(2951), - [anon_sym_override] = ACTIONS(2951), - [anon_sym_partial] = ACTIONS(2951), - [anon_sym_private] = ACTIONS(2951), - [anon_sym_protected] = ACTIONS(2951), - [anon_sym_public] = ACTIONS(2951), - [anon_sym_readonly] = ACTIONS(2951), - [anon_sym_required] = ACTIONS(2951), - [anon_sym_sealed] = ACTIONS(2951), - [anon_sym_virtual] = ACTIONS(2951), - [anon_sym_volatile] = ACTIONS(2951), - [anon_sym_where] = ACTIONS(2951), - [anon_sym_notnull] = ACTIONS(2951), - [anon_sym_unmanaged] = ACTIONS(2951), - [anon_sym_TILDE] = ACTIONS(2953), - [anon_sym_implicit] = ACTIONS(2951), - [anon_sym_explicit] = ACTIONS(2951), - [anon_sym_scoped] = ACTIONS(2951), - [anon_sym_var] = ACTIONS(2951), - [sym_predefined_type] = ACTIONS(2951), - [anon_sym_yield] = ACTIONS(2951), - [anon_sym_when] = ACTIONS(2951), - [anon_sym_from] = ACTIONS(2951), - [anon_sym_into] = ACTIONS(2951), - [anon_sym_join] = ACTIONS(2951), - [anon_sym_on] = ACTIONS(2951), - [anon_sym_equals] = ACTIONS(2951), - [anon_sym_let] = ACTIONS(2951), - [anon_sym_orderby] = ACTIONS(2951), - [anon_sym_ascending] = ACTIONS(2951), - [anon_sym_descending] = ACTIONS(2951), - [anon_sym_group] = ACTIONS(2951), - [anon_sym_by] = ACTIONS(2951), - [anon_sym_select] = ACTIONS(2951), - [aux_sym_preproc_if_token1] = ACTIONS(2953), - [aux_sym_preproc_if_token3] = ACTIONS(2953), - [aux_sym_preproc_else_token1] = ACTIONS(2953), - [aux_sym_preproc_elif_token1] = ACTIONS(2953), + [sym__identifier_token] = ACTIONS(3347), + [anon_sym_extern] = ACTIONS(3347), + [anon_sym_alias] = ACTIONS(3347), + [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_event] = 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_RBRACE] = 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_TILDE] = ACTIONS(3349), + [anon_sym_implicit] = ACTIONS(3347), + [anon_sym_explicit] = ACTIONS(3347), + [anon_sym_scoped] = ACTIONS(3347), + [anon_sym_var] = ACTIONS(3347), + [sym_predefined_type] = ACTIONS(3347), + [anon_sym_yield] = ACTIONS(3347), + [anon_sym_when] = ACTIONS(3347), + [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), + [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), @@ -455821,79 +455435,79 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2821), [sym_preproc_define] = STATE(2821), [sym_preproc_undef] = STATE(2821), - [sym__identifier_token] = ACTIONS(4593), - [anon_sym_extern] = ACTIONS(4593), - [anon_sym_alias] = ACTIONS(4593), - [anon_sym_global] = ACTIONS(4593), - [anon_sym_using] = ACTIONS(4593), - [anon_sym_unsafe] = ACTIONS(4593), - [anon_sym_static] = ACTIONS(4593), - [anon_sym_LBRACK] = ACTIONS(4595), - [anon_sym_LPAREN] = ACTIONS(4595), - [anon_sym_event] = ACTIONS(4593), - [anon_sym_namespace] = ACTIONS(4593), - [anon_sym_class] = ACTIONS(4593), - [anon_sym_ref] = ACTIONS(4593), - [anon_sym_struct] = ACTIONS(4593), - [anon_sym_enum] = ACTIONS(4593), - [anon_sym_RBRACE] = ACTIONS(4595), - [anon_sym_interface] = ACTIONS(4593), - [anon_sym_delegate] = ACTIONS(4593), - [anon_sym_record] = ACTIONS(4593), - [anon_sym_abstract] = ACTIONS(4593), - [anon_sym_async] = ACTIONS(4593), - [anon_sym_const] = ACTIONS(4593), - [anon_sym_file] = ACTIONS(4593), - [anon_sym_fixed] = ACTIONS(4593), - [anon_sym_internal] = ACTIONS(4593), - [anon_sym_new] = ACTIONS(4593), - [anon_sym_override] = ACTIONS(4593), - [anon_sym_partial] = ACTIONS(4593), - [anon_sym_private] = ACTIONS(4593), - [anon_sym_protected] = ACTIONS(4593), - [anon_sym_public] = ACTIONS(4593), - [anon_sym_readonly] = ACTIONS(4593), - [anon_sym_required] = ACTIONS(4593), - [anon_sym_sealed] = ACTIONS(4593), - [anon_sym_virtual] = ACTIONS(4593), - [anon_sym_volatile] = ACTIONS(4593), - [anon_sym_where] = ACTIONS(4593), - [anon_sym_notnull] = ACTIONS(4593), - [anon_sym_unmanaged] = ACTIONS(4593), - [anon_sym_TILDE] = ACTIONS(4595), - [anon_sym_implicit] = ACTIONS(4593), - [anon_sym_explicit] = ACTIONS(4593), - [anon_sym_scoped] = ACTIONS(4593), - [anon_sym_var] = ACTIONS(4593), - [sym_predefined_type] = ACTIONS(4593), - [anon_sym_yield] = ACTIONS(4593), - [anon_sym_when] = ACTIONS(4593), - [anon_sym_from] = ACTIONS(4593), - [anon_sym_into] = ACTIONS(4593), - [anon_sym_join] = ACTIONS(4593), - [anon_sym_on] = ACTIONS(4593), - [anon_sym_equals] = ACTIONS(4593), - [anon_sym_let] = ACTIONS(4593), - [anon_sym_orderby] = ACTIONS(4593), - [anon_sym_ascending] = ACTIONS(4593), - [anon_sym_descending] = ACTIONS(4593), - [anon_sym_group] = ACTIONS(4593), - [anon_sym_by] = ACTIONS(4593), - [anon_sym_select] = ACTIONS(4593), - [aux_sym_preproc_if_token1] = ACTIONS(4595), - [aux_sym_preproc_if_token3] = ACTIONS(4595), - [aux_sym_preproc_else_token1] = ACTIONS(4595), - [aux_sym_preproc_elif_token1] = ACTIONS(4595), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_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(3691), + [anon_sym_alias] = ACTIONS(3691), + [anon_sym_global] = ACTIONS(3691), + [anon_sym_LBRACK] = ACTIONS(3702), + [anon_sym_COLON] = ACTIONS(3702), + [anon_sym_COMMA] = ACTIONS(3702), + [anon_sym_LPAREN] = ACTIONS(3702), + [anon_sym_LBRACE] = ACTIONS(3702), + [anon_sym_file] = ACTIONS(3691), + [anon_sym_LT] = ACTIONS(3691), + [anon_sym_GT] = ACTIONS(3691), + [anon_sym_where] = ACTIONS(3691), + [anon_sym_QMARK] = ACTIONS(3691), + [anon_sym_notnull] = ACTIONS(3691), + [anon_sym_unmanaged] = ACTIONS(3691), + [anon_sym_BANG] = ACTIONS(3691), + [anon_sym_PLUS_PLUS] = ACTIONS(3702), + [anon_sym_DASH_DASH] = ACTIONS(3702), + [anon_sym_PLUS] = ACTIONS(3691), + [anon_sym_DASH] = ACTIONS(3691), + [anon_sym_STAR] = ACTIONS(3702), + [anon_sym_SLASH] = ACTIONS(3691), + [anon_sym_PERCENT] = ACTIONS(3702), + [anon_sym_CARET] = ACTIONS(3702), + [anon_sym_PIPE] = ACTIONS(3691), + [anon_sym_AMP] = ACTIONS(3691), + [anon_sym_LT_LT] = ACTIONS(3702), + [anon_sym_GT_GT] = ACTIONS(3691), + [anon_sym_GT_GT_GT] = ACTIONS(3702), + [anon_sym_EQ_EQ] = ACTIONS(3702), + [anon_sym_BANG_EQ] = ACTIONS(3702), + [anon_sym_GT_EQ] = ACTIONS(3702), + [anon_sym_LT_EQ] = ACTIONS(3702), + [anon_sym_DOT] = ACTIONS(3691), + [anon_sym_scoped] = ACTIONS(3691), + [anon_sym_var] = ACTIONS(3691), + [anon_sym_yield] = ACTIONS(3691), + [anon_sym_switch] = ACTIONS(3691), + [anon_sym_when] = ACTIONS(3691), + [sym_discard] = ACTIONS(3691), + [anon_sym_DOT_DOT] = ACTIONS(3702), + [anon_sym_and] = ACTIONS(3691), + [anon_sym_or] = ACTIONS(3691), + [anon_sym_AMP_AMP] = ACTIONS(3702), + [anon_sym_PIPE_PIPE] = ACTIONS(3702), + [anon_sym_QMARK_QMARK] = ACTIONS(3702), + [anon_sym_from] = ACTIONS(3691), + [anon_sym_into] = ACTIONS(3691), + [anon_sym_join] = ACTIONS(3691), + [anon_sym_on] = ACTIONS(3691), + [anon_sym_equals] = ACTIONS(3691), + [anon_sym_let] = ACTIONS(3691), + [anon_sym_orderby] = ACTIONS(3691), + [anon_sym_ascending] = ACTIONS(3691), + [anon_sym_descending] = ACTIONS(3691), + [anon_sym_group] = ACTIONS(3691), + [anon_sym_by] = ACTIONS(3691), + [anon_sym_select] = ACTIONS(3691), + [anon_sym_as] = ACTIONS(3691), + [anon_sym_is] = ACTIONS(3691), + [anon_sym_DASH_GT] = ACTIONS(3702), + [anon_sym_with] = ACTIONS(3691), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_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(3702), }, [2822] = { [sym_preproc_region] = STATE(2822), @@ -455905,79 +455519,79 @@ 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(4008), - [anon_sym_alias] = ACTIONS(4008), - [anon_sym_global] = ACTIONS(4008), - [anon_sym_LBRACK] = ACTIONS(4010), - [anon_sym_COLON] = ACTIONS(4010), - [anon_sym_COMMA] = ACTIONS(4010), - [anon_sym_LPAREN] = ACTIONS(4010), - [anon_sym_LBRACE] = ACTIONS(4010), - [anon_sym_file] = ACTIONS(4008), - [anon_sym_LT] = ACTIONS(4008), - [anon_sym_GT] = ACTIONS(4008), - [anon_sym_where] = ACTIONS(4008), - [anon_sym_QMARK] = ACTIONS(4008), - [anon_sym_notnull] = ACTIONS(4008), - [anon_sym_unmanaged] = ACTIONS(4008), - [anon_sym_BANG] = ACTIONS(4008), - [anon_sym_PLUS_PLUS] = ACTIONS(4010), - [anon_sym_DASH_DASH] = ACTIONS(4010), - [anon_sym_PLUS] = ACTIONS(4008), - [anon_sym_DASH] = ACTIONS(4008), - [anon_sym_STAR] = ACTIONS(4010), - [anon_sym_SLASH] = ACTIONS(4008), - [anon_sym_PERCENT] = ACTIONS(4010), - [anon_sym_CARET] = ACTIONS(4010), - [anon_sym_PIPE] = ACTIONS(4008), - [anon_sym_AMP] = ACTIONS(4008), - [anon_sym_LT_LT] = ACTIONS(4010), - [anon_sym_GT_GT] = ACTIONS(4008), - [anon_sym_GT_GT_GT] = ACTIONS(4010), - [anon_sym_EQ_EQ] = ACTIONS(4010), - [anon_sym_BANG_EQ] = ACTIONS(4010), - [anon_sym_GT_EQ] = ACTIONS(4010), - [anon_sym_LT_EQ] = ACTIONS(4010), - [anon_sym_DOT] = ACTIONS(4008), - [anon_sym_scoped] = ACTIONS(4008), - [anon_sym_var] = ACTIONS(4008), - [anon_sym_yield] = ACTIONS(4008), - [anon_sym_switch] = ACTIONS(4008), - [anon_sym_when] = ACTIONS(4008), - [sym_discard] = ACTIONS(4008), - [anon_sym_DOT_DOT] = ACTIONS(4010), - [anon_sym_and] = ACTIONS(4008), - [anon_sym_or] = ACTIONS(4008), - [anon_sym_AMP_AMP] = ACTIONS(4010), - [anon_sym_PIPE_PIPE] = ACTIONS(4010), - [anon_sym_QMARK_QMARK] = ACTIONS(4010), - [anon_sym_from] = ACTIONS(4008), - [anon_sym_into] = ACTIONS(4008), - [anon_sym_join] = ACTIONS(4008), - [anon_sym_on] = ACTIONS(4008), - [anon_sym_equals] = ACTIONS(4008), - [anon_sym_let] = ACTIONS(4008), - [anon_sym_orderby] = ACTIONS(4008), - [anon_sym_ascending] = ACTIONS(4008), - [anon_sym_descending] = ACTIONS(4008), - [anon_sym_group] = ACTIONS(4008), - [anon_sym_by] = ACTIONS(4008), - [anon_sym_select] = ACTIONS(4008), - [anon_sym_as] = ACTIONS(4008), - [anon_sym_is] = ACTIONS(4008), - [anon_sym_DASH_GT] = ACTIONS(4010), - [anon_sym_with] = ACTIONS(4008), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_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(4010), + [sym__identifier_token] = ACTIONS(3961), + [anon_sym_alias] = ACTIONS(3961), + [anon_sym_global] = ACTIONS(3961), + [anon_sym_LBRACK] = ACTIONS(4033), + [anon_sym_COLON] = ACTIONS(3963), + [anon_sym_COMMA] = ACTIONS(3963), + [anon_sym_LPAREN] = ACTIONS(3963), + [anon_sym_LBRACE] = ACTIONS(3963), + [anon_sym_file] = ACTIONS(3961), + [anon_sym_LT] = ACTIONS(3961), + [anon_sym_GT] = ACTIONS(3961), + [anon_sym_where] = ACTIONS(3961), + [anon_sym_QMARK] = ACTIONS(4298), + [anon_sym_notnull] = ACTIONS(3961), + [anon_sym_unmanaged] = ACTIONS(3961), + [anon_sym_BANG] = ACTIONS(3961), + [anon_sym_PLUS_PLUS] = ACTIONS(3963), + [anon_sym_DASH_DASH] = ACTIONS(3963), + [anon_sym_PLUS] = ACTIONS(3961), + [anon_sym_DASH] = ACTIONS(3961), + [anon_sym_STAR] = ACTIONS(3963), + [anon_sym_SLASH] = ACTIONS(3961), + [anon_sym_PERCENT] = ACTIONS(3963), + [anon_sym_CARET] = ACTIONS(3963), + [anon_sym_PIPE] = ACTIONS(3961), + [anon_sym_AMP] = ACTIONS(3961), + [anon_sym_LT_LT] = ACTIONS(3963), + [anon_sym_GT_GT] = ACTIONS(3961), + [anon_sym_GT_GT_GT] = ACTIONS(3963), + [anon_sym_EQ_EQ] = ACTIONS(3963), + [anon_sym_BANG_EQ] = ACTIONS(3963), + [anon_sym_GT_EQ] = ACTIONS(3963), + [anon_sym_LT_EQ] = ACTIONS(3963), + [anon_sym_DOT] = ACTIONS(3961), + [anon_sym_scoped] = ACTIONS(3961), + [anon_sym_var] = ACTIONS(3961), + [anon_sym_yield] = ACTIONS(3961), + [anon_sym_switch] = ACTIONS(3961), + [anon_sym_when] = ACTIONS(3961), + [sym_discard] = ACTIONS(3961), + [anon_sym_DOT_DOT] = ACTIONS(3963), + [anon_sym_and] = ACTIONS(3961), + [anon_sym_or] = ACTIONS(3961), + [anon_sym_AMP_AMP] = ACTIONS(3963), + [anon_sym_PIPE_PIPE] = ACTIONS(3963), + [anon_sym_QMARK_QMARK] = ACTIONS(3963), + [anon_sym_from] = ACTIONS(3961), + [anon_sym_into] = ACTIONS(3961), + [anon_sym_join] = ACTIONS(3961), + [anon_sym_on] = ACTIONS(3961), + [anon_sym_equals] = ACTIONS(3961), + [anon_sym_let] = ACTIONS(3961), + [anon_sym_orderby] = ACTIONS(3961), + [anon_sym_ascending] = ACTIONS(3961), + [anon_sym_descending] = ACTIONS(3961), + [anon_sym_group] = ACTIONS(3961), + [anon_sym_by] = ACTIONS(3961), + [anon_sym_select] = ACTIONS(3961), + [anon_sym_as] = ACTIONS(3961), + [anon_sym_is] = ACTIONS(3961), + [anon_sym_DASH_GT] = ACTIONS(3963), + [anon_sym_with] = ACTIONS(3961), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_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(3963), }, [2823] = { [sym_preproc_region] = STATE(2823), @@ -455989,79 +455603,79 @@ 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(4597), - [anon_sym_extern] = ACTIONS(4597), - [anon_sym_alias] = ACTIONS(4597), - [anon_sym_global] = ACTIONS(4597), - [anon_sym_using] = ACTIONS(4597), - [anon_sym_unsafe] = ACTIONS(4597), - [anon_sym_static] = ACTIONS(4597), - [anon_sym_LBRACK] = ACTIONS(4599), - [anon_sym_LPAREN] = ACTIONS(4599), - [anon_sym_event] = ACTIONS(4597), - [anon_sym_namespace] = ACTIONS(4597), - [anon_sym_class] = ACTIONS(4597), - [anon_sym_ref] = ACTIONS(4597), - [anon_sym_struct] = ACTIONS(4597), - [anon_sym_enum] = ACTIONS(4597), - [anon_sym_RBRACE] = ACTIONS(4599), - [anon_sym_interface] = ACTIONS(4597), - [anon_sym_delegate] = ACTIONS(4597), - [anon_sym_record] = ACTIONS(4597), - [anon_sym_abstract] = ACTIONS(4597), - [anon_sym_async] = ACTIONS(4597), - [anon_sym_const] = ACTIONS(4597), - [anon_sym_file] = ACTIONS(4597), - [anon_sym_fixed] = ACTIONS(4597), - [anon_sym_internal] = ACTIONS(4597), - [anon_sym_new] = ACTIONS(4597), - [anon_sym_override] = ACTIONS(4597), - [anon_sym_partial] = ACTIONS(4597), - [anon_sym_private] = ACTIONS(4597), - [anon_sym_protected] = ACTIONS(4597), - [anon_sym_public] = ACTIONS(4597), - [anon_sym_readonly] = ACTIONS(4597), - [anon_sym_required] = ACTIONS(4597), - [anon_sym_sealed] = ACTIONS(4597), - [anon_sym_virtual] = ACTIONS(4597), - [anon_sym_volatile] = ACTIONS(4597), - [anon_sym_where] = ACTIONS(4597), - [anon_sym_notnull] = ACTIONS(4597), - [anon_sym_unmanaged] = ACTIONS(4597), - [anon_sym_TILDE] = ACTIONS(4599), - [anon_sym_implicit] = ACTIONS(4597), - [anon_sym_explicit] = ACTIONS(4597), - [anon_sym_scoped] = ACTIONS(4597), - [anon_sym_var] = ACTIONS(4597), - [sym_predefined_type] = ACTIONS(4597), - [anon_sym_yield] = ACTIONS(4597), - [anon_sym_when] = ACTIONS(4597), - [anon_sym_from] = ACTIONS(4597), - [anon_sym_into] = ACTIONS(4597), - [anon_sym_join] = ACTIONS(4597), - [anon_sym_on] = ACTIONS(4597), - [anon_sym_equals] = ACTIONS(4597), - [anon_sym_let] = ACTIONS(4597), - [anon_sym_orderby] = ACTIONS(4597), - [anon_sym_ascending] = ACTIONS(4597), - [anon_sym_descending] = ACTIONS(4597), - [anon_sym_group] = ACTIONS(4597), - [anon_sym_by] = ACTIONS(4597), - [anon_sym_select] = ACTIONS(4597), - [aux_sym_preproc_if_token1] = ACTIONS(4599), - [aux_sym_preproc_if_token3] = ACTIONS(4599), - [aux_sym_preproc_else_token1] = ACTIONS(4599), - [aux_sym_preproc_elif_token1] = ACTIONS(4599), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_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(3961), + [anon_sym_alias] = ACTIONS(3961), + [anon_sym_global] = ACTIONS(3961), + [anon_sym_LBRACK] = ACTIONS(4033), + [anon_sym_COLON] = ACTIONS(3963), + [anon_sym_COMMA] = ACTIONS(3963), + [anon_sym_LPAREN] = ACTIONS(3963), + [anon_sym_LBRACE] = ACTIONS(3963), + [anon_sym_file] = ACTIONS(3961), + [anon_sym_LT] = ACTIONS(3961), + [anon_sym_GT] = ACTIONS(3961), + [anon_sym_where] = ACTIONS(3961), + [anon_sym_QMARK] = ACTIONS(3961), + [anon_sym_notnull] = ACTIONS(3961), + [anon_sym_unmanaged] = ACTIONS(3961), + [anon_sym_BANG] = ACTIONS(3961), + [anon_sym_PLUS_PLUS] = ACTIONS(3963), + [anon_sym_DASH_DASH] = ACTIONS(3963), + [anon_sym_PLUS] = ACTIONS(3961), + [anon_sym_DASH] = ACTIONS(3961), + [anon_sym_STAR] = ACTIONS(4039), + [anon_sym_SLASH] = ACTIONS(3961), + [anon_sym_PERCENT] = ACTIONS(3963), + [anon_sym_CARET] = ACTIONS(3963), + [anon_sym_PIPE] = ACTIONS(3961), + [anon_sym_AMP] = ACTIONS(3961), + [anon_sym_LT_LT] = ACTIONS(3963), + [anon_sym_GT_GT] = ACTIONS(3961), + [anon_sym_GT_GT_GT] = ACTIONS(3963), + [anon_sym_EQ_EQ] = ACTIONS(3963), + [anon_sym_BANG_EQ] = ACTIONS(3963), + [anon_sym_GT_EQ] = ACTIONS(3963), + [anon_sym_LT_EQ] = ACTIONS(3963), + [anon_sym_DOT] = ACTIONS(3961), + [anon_sym_scoped] = ACTIONS(3961), + [anon_sym_var] = ACTIONS(3961), + [anon_sym_yield] = ACTIONS(3961), + [anon_sym_switch] = ACTIONS(3961), + [anon_sym_when] = ACTIONS(3961), + [sym_discard] = ACTIONS(3961), + [anon_sym_DOT_DOT] = ACTIONS(3963), + [anon_sym_and] = ACTIONS(3961), + [anon_sym_or] = ACTIONS(3961), + [anon_sym_AMP_AMP] = ACTIONS(3963), + [anon_sym_PIPE_PIPE] = ACTIONS(3963), + [anon_sym_QMARK_QMARK] = ACTIONS(3963), + [anon_sym_from] = ACTIONS(3961), + [anon_sym_into] = ACTIONS(3961), + [anon_sym_join] = ACTIONS(3961), + [anon_sym_on] = ACTIONS(3961), + [anon_sym_equals] = ACTIONS(3961), + [anon_sym_let] = ACTIONS(3961), + [anon_sym_orderby] = ACTIONS(3961), + [anon_sym_ascending] = ACTIONS(3961), + [anon_sym_descending] = ACTIONS(3961), + [anon_sym_group] = ACTIONS(3961), + [anon_sym_by] = ACTIONS(3961), + [anon_sym_select] = ACTIONS(3961), + [anon_sym_as] = ACTIONS(3961), + [anon_sym_is] = ACTIONS(3961), + [anon_sym_DASH_GT] = ACTIONS(3963), + [anon_sym_with] = ACTIONS(3961), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_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(3963), }, [2824] = { [sym_preproc_region] = STATE(2824), @@ -456073,69 +455687,69 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2824), [sym_preproc_define] = STATE(2824), [sym_preproc_undef] = STATE(2824), - [sym__identifier_token] = ACTIONS(4601), - [anon_sym_extern] = ACTIONS(4601), - [anon_sym_alias] = ACTIONS(4601), - [anon_sym_global] = ACTIONS(4601), - [anon_sym_using] = ACTIONS(4601), - [anon_sym_unsafe] = ACTIONS(4601), - [anon_sym_static] = ACTIONS(4601), - [anon_sym_LBRACK] = ACTIONS(4603), - [anon_sym_LPAREN] = ACTIONS(4603), - [anon_sym_event] = ACTIONS(4601), - [anon_sym_namespace] = ACTIONS(4601), - [anon_sym_class] = ACTIONS(4601), - [anon_sym_ref] = ACTIONS(4601), - [anon_sym_struct] = ACTIONS(4601), - [anon_sym_enum] = ACTIONS(4601), - [anon_sym_RBRACE] = ACTIONS(4603), - [anon_sym_interface] = ACTIONS(4601), - [anon_sym_delegate] = ACTIONS(4601), - [anon_sym_record] = ACTIONS(4601), - [anon_sym_abstract] = ACTIONS(4601), - [anon_sym_async] = ACTIONS(4601), - [anon_sym_const] = ACTIONS(4601), - [anon_sym_file] = ACTIONS(4601), - [anon_sym_fixed] = ACTIONS(4601), - [anon_sym_internal] = ACTIONS(4601), - [anon_sym_new] = ACTIONS(4601), - [anon_sym_override] = ACTIONS(4601), - [anon_sym_partial] = ACTIONS(4601), - [anon_sym_private] = ACTIONS(4601), - [anon_sym_protected] = ACTIONS(4601), - [anon_sym_public] = ACTIONS(4601), - [anon_sym_readonly] = ACTIONS(4601), - [anon_sym_required] = ACTIONS(4601), - [anon_sym_sealed] = ACTIONS(4601), - [anon_sym_virtual] = ACTIONS(4601), - [anon_sym_volatile] = ACTIONS(4601), - [anon_sym_where] = ACTIONS(4601), - [anon_sym_notnull] = ACTIONS(4601), - [anon_sym_unmanaged] = ACTIONS(4601), - [anon_sym_TILDE] = ACTIONS(4603), - [anon_sym_implicit] = ACTIONS(4601), - [anon_sym_explicit] = ACTIONS(4601), - [anon_sym_scoped] = ACTIONS(4601), - [anon_sym_var] = ACTIONS(4601), - [sym_predefined_type] = ACTIONS(4601), - [anon_sym_yield] = ACTIONS(4601), - [anon_sym_when] = ACTIONS(4601), - [anon_sym_from] = ACTIONS(4601), - [anon_sym_into] = ACTIONS(4601), - [anon_sym_join] = ACTIONS(4601), - [anon_sym_on] = ACTIONS(4601), - [anon_sym_equals] = ACTIONS(4601), - [anon_sym_let] = ACTIONS(4601), - [anon_sym_orderby] = ACTIONS(4601), - [anon_sym_ascending] = ACTIONS(4601), - [anon_sym_descending] = ACTIONS(4601), - [anon_sym_group] = ACTIONS(4601), - [anon_sym_by] = ACTIONS(4601), - [anon_sym_select] = ACTIONS(4601), - [aux_sym_preproc_if_token1] = ACTIONS(4603), - [aux_sym_preproc_if_token3] = ACTIONS(4603), - [aux_sym_preproc_else_token1] = ACTIONS(4603), - [aux_sym_preproc_elif_token1] = ACTIONS(4603), + [anon_sym_SEMI] = ACTIONS(3671), + [anon_sym_EQ] = ACTIONS(3673), + [anon_sym_LBRACK] = ACTIONS(3671), + [anon_sym_COLON] = ACTIONS(3671), + [anon_sym_COMMA] = ACTIONS(3671), + [anon_sym_RBRACK] = ACTIONS(3671), + [anon_sym_LPAREN] = ACTIONS(3671), + [anon_sym_RPAREN] = ACTIONS(3671), + [anon_sym_RBRACE] = ACTIONS(3671), + [anon_sym_LT] = ACTIONS(3673), + [anon_sym_GT] = ACTIONS(3673), + [anon_sym_in] = ACTIONS(3671), + [anon_sym_QMARK] = ACTIONS(3673), + [anon_sym_BANG] = ACTIONS(3673), + [anon_sym_PLUS_PLUS] = ACTIONS(3671), + [anon_sym_DASH_DASH] = ACTIONS(3671), + [anon_sym_PLUS] = ACTIONS(3673), + [anon_sym_DASH] = ACTIONS(3673), + [anon_sym_STAR] = ACTIONS(3673), + [anon_sym_SLASH] = ACTIONS(3673), + [anon_sym_PERCENT] = ACTIONS(3673), + [anon_sym_CARET] = ACTIONS(3673), + [anon_sym_PIPE] = ACTIONS(3673), + [anon_sym_AMP] = ACTIONS(3673), + [anon_sym_LT_LT] = ACTIONS(3673), + [anon_sym_GT_GT] = ACTIONS(3673), + [anon_sym_GT_GT_GT] = ACTIONS(3673), + [anon_sym_EQ_EQ] = ACTIONS(3671), + [anon_sym_BANG_EQ] = ACTIONS(3671), + [anon_sym_GT_EQ] = ACTIONS(3671), + [anon_sym_LT_EQ] = ACTIONS(3671), + [anon_sym_DOT] = ACTIONS(3673), + [anon_sym_EQ_GT] = ACTIONS(3671), + [anon_sym_switch] = ACTIONS(3671), + [anon_sym_when] = ACTIONS(3671), + [anon_sym_DOT_DOT] = ACTIONS(3671), + [anon_sym_and] = ACTIONS(3671), + [anon_sym_or] = ACTIONS(3671), + [anon_sym_PLUS_EQ] = ACTIONS(3671), + [anon_sym_DASH_EQ] = ACTIONS(3671), + [anon_sym_STAR_EQ] = ACTIONS(3671), + [anon_sym_SLASH_EQ] = ACTIONS(3671), + [anon_sym_PERCENT_EQ] = ACTIONS(3671), + [anon_sym_AMP_EQ] = ACTIONS(3671), + [anon_sym_CARET_EQ] = ACTIONS(3671), + [anon_sym_PIPE_EQ] = ACTIONS(3671), + [anon_sym_LT_LT_EQ] = ACTIONS(3671), + [anon_sym_GT_GT_EQ] = ACTIONS(3671), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3671), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3671), + [anon_sym_AMP_AMP] = ACTIONS(3671), + [anon_sym_PIPE_PIPE] = ACTIONS(3671), + [anon_sym_QMARK_QMARK] = ACTIONS(3673), + [anon_sym_on] = ACTIONS(3671), + [anon_sym_equals] = ACTIONS(3671), + [anon_sym_by] = ACTIONS(3671), + [anon_sym_as] = ACTIONS(3671), + [anon_sym_is] = ACTIONS(3671), + [anon_sym_DASH_GT] = ACTIONS(3671), + [anon_sym_with] = ACTIONS(3671), + [aux_sym_preproc_if_token3] = ACTIONS(3671), + [aux_sym_preproc_else_token1] = ACTIONS(3671), + [aux_sym_preproc_elif_token1] = ACTIONS(3671), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -456157,79 +455771,79 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2825), [sym_preproc_define] = STATE(2825), [sym_preproc_undef] = STATE(2825), - [sym__identifier_token] = ACTIONS(4605), - [anon_sym_extern] = ACTIONS(4605), - [anon_sym_alias] = ACTIONS(4605), - [anon_sym_global] = ACTIONS(4605), - [anon_sym_using] = ACTIONS(4605), - [anon_sym_unsafe] = ACTIONS(4605), - [anon_sym_static] = ACTIONS(4605), - [anon_sym_LBRACK] = ACTIONS(4607), - [anon_sym_LPAREN] = ACTIONS(4607), - [anon_sym_event] = ACTIONS(4605), - [anon_sym_namespace] = ACTIONS(4605), - [anon_sym_class] = ACTIONS(4605), - [anon_sym_ref] = ACTIONS(4605), - [anon_sym_struct] = ACTIONS(4605), - [anon_sym_enum] = ACTIONS(4605), - [anon_sym_RBRACE] = ACTIONS(4607), - [anon_sym_interface] = ACTIONS(4605), - [anon_sym_delegate] = ACTIONS(4605), - [anon_sym_record] = ACTIONS(4605), - [anon_sym_abstract] = ACTIONS(4605), - [anon_sym_async] = ACTIONS(4605), - [anon_sym_const] = ACTIONS(4605), - [anon_sym_file] = ACTIONS(4605), - [anon_sym_fixed] = ACTIONS(4605), - [anon_sym_internal] = ACTIONS(4605), - [anon_sym_new] = ACTIONS(4605), - [anon_sym_override] = ACTIONS(4605), - [anon_sym_partial] = ACTIONS(4605), - [anon_sym_private] = ACTIONS(4605), - [anon_sym_protected] = ACTIONS(4605), - [anon_sym_public] = ACTIONS(4605), - [anon_sym_readonly] = ACTIONS(4605), - [anon_sym_required] = ACTIONS(4605), - [anon_sym_sealed] = ACTIONS(4605), - [anon_sym_virtual] = ACTIONS(4605), - [anon_sym_volatile] = ACTIONS(4605), - [anon_sym_where] = ACTIONS(4605), - [anon_sym_notnull] = ACTIONS(4605), - [anon_sym_unmanaged] = ACTIONS(4605), - [anon_sym_TILDE] = ACTIONS(4607), - [anon_sym_implicit] = ACTIONS(4605), - [anon_sym_explicit] = ACTIONS(4605), - [anon_sym_scoped] = ACTIONS(4605), - [anon_sym_var] = ACTIONS(4605), - [sym_predefined_type] = ACTIONS(4605), - [anon_sym_yield] = ACTIONS(4605), - [anon_sym_when] = ACTIONS(4605), - [anon_sym_from] = ACTIONS(4605), - [anon_sym_into] = ACTIONS(4605), - [anon_sym_join] = ACTIONS(4605), - [anon_sym_on] = ACTIONS(4605), - [anon_sym_equals] = ACTIONS(4605), - [anon_sym_let] = ACTIONS(4605), - [anon_sym_orderby] = ACTIONS(4605), - [anon_sym_ascending] = ACTIONS(4605), - [anon_sym_descending] = ACTIONS(4605), - [anon_sym_group] = ACTIONS(4605), - [anon_sym_by] = ACTIONS(4605), - [anon_sym_select] = ACTIONS(4605), - [aux_sym_preproc_if_token1] = ACTIONS(4607), - [aux_sym_preproc_if_token3] = ACTIONS(4607), - [aux_sym_preproc_else_token1] = ACTIONS(4607), - [aux_sym_preproc_elif_token1] = ACTIONS(4607), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_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(3961), + [anon_sym_alias] = ACTIONS(3961), + [anon_sym_global] = ACTIONS(3961), + [anon_sym_LBRACK] = ACTIONS(4033), + [anon_sym_COLON] = ACTIONS(3963), + [anon_sym_COMMA] = ACTIONS(3963), + [anon_sym_LPAREN] = ACTIONS(3963), + [anon_sym_LBRACE] = ACTIONS(3963), + [anon_sym_file] = ACTIONS(3961), + [anon_sym_LT] = ACTIONS(3961), + [anon_sym_GT] = ACTIONS(3961), + [anon_sym_where] = ACTIONS(3961), + [anon_sym_QMARK] = ACTIONS(4298), + [anon_sym_notnull] = ACTIONS(3961), + [anon_sym_unmanaged] = ACTIONS(3961), + [anon_sym_BANG] = ACTIONS(3961), + [anon_sym_PLUS_PLUS] = ACTIONS(3963), + [anon_sym_DASH_DASH] = ACTIONS(3963), + [anon_sym_PLUS] = ACTIONS(3961), + [anon_sym_DASH] = ACTIONS(3961), + [anon_sym_STAR] = ACTIONS(4039), + [anon_sym_SLASH] = ACTIONS(3961), + [anon_sym_PERCENT] = ACTIONS(3963), + [anon_sym_CARET] = ACTIONS(3963), + [anon_sym_PIPE] = ACTIONS(3961), + [anon_sym_AMP] = ACTIONS(3961), + [anon_sym_LT_LT] = ACTIONS(3963), + [anon_sym_GT_GT] = ACTIONS(3961), + [anon_sym_GT_GT_GT] = ACTIONS(3963), + [anon_sym_EQ_EQ] = ACTIONS(3963), + [anon_sym_BANG_EQ] = ACTIONS(3963), + [anon_sym_GT_EQ] = ACTIONS(3963), + [anon_sym_LT_EQ] = ACTIONS(3963), + [anon_sym_DOT] = ACTIONS(3961), + [anon_sym_scoped] = ACTIONS(3961), + [anon_sym_var] = ACTIONS(3961), + [anon_sym_yield] = ACTIONS(3961), + [anon_sym_switch] = ACTIONS(3961), + [anon_sym_when] = ACTIONS(3961), + [sym_discard] = ACTIONS(3961), + [anon_sym_DOT_DOT] = ACTIONS(3963), + [anon_sym_and] = ACTIONS(3961), + [anon_sym_or] = ACTIONS(3961), + [anon_sym_AMP_AMP] = ACTIONS(3963), + [anon_sym_PIPE_PIPE] = ACTIONS(3963), + [anon_sym_QMARK_QMARK] = ACTIONS(3963), + [anon_sym_from] = ACTIONS(3961), + [anon_sym_into] = ACTIONS(3961), + [anon_sym_join] = ACTIONS(3961), + [anon_sym_on] = ACTIONS(3961), + [anon_sym_equals] = ACTIONS(3961), + [anon_sym_let] = ACTIONS(3961), + [anon_sym_orderby] = ACTIONS(3961), + [anon_sym_ascending] = ACTIONS(3961), + [anon_sym_descending] = ACTIONS(3961), + [anon_sym_group] = ACTIONS(3961), + [anon_sym_by] = ACTIONS(3961), + [anon_sym_select] = ACTIONS(3961), + [anon_sym_as] = ACTIONS(3961), + [anon_sym_is] = ACTIONS(3961), + [anon_sym_DASH_GT] = ACTIONS(3963), + [anon_sym_with] = ACTIONS(3961), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_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(3963), }, [2826] = { [sym_preproc_region] = STATE(2826), @@ -456241,69 +455855,69 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2826), [sym_preproc_define] = STATE(2826), [sym_preproc_undef] = STATE(2826), - [sym__identifier_token] = ACTIONS(4609), - [anon_sym_extern] = ACTIONS(4609), - [anon_sym_alias] = ACTIONS(4609), - [anon_sym_global] = ACTIONS(4609), - [anon_sym_using] = ACTIONS(4609), - [anon_sym_unsafe] = ACTIONS(4609), - [anon_sym_static] = ACTIONS(4609), - [anon_sym_LBRACK] = ACTIONS(4611), - [anon_sym_LPAREN] = ACTIONS(4611), - [anon_sym_event] = ACTIONS(4609), - [anon_sym_namespace] = ACTIONS(4609), - [anon_sym_class] = ACTIONS(4609), - [anon_sym_ref] = ACTIONS(4609), - [anon_sym_struct] = ACTIONS(4609), - [anon_sym_enum] = ACTIONS(4609), - [anon_sym_RBRACE] = ACTIONS(4611), - [anon_sym_interface] = ACTIONS(4609), - [anon_sym_delegate] = ACTIONS(4609), - [anon_sym_record] = ACTIONS(4609), - [anon_sym_abstract] = ACTIONS(4609), - [anon_sym_async] = ACTIONS(4609), - [anon_sym_const] = ACTIONS(4609), - [anon_sym_file] = ACTIONS(4609), - [anon_sym_fixed] = ACTIONS(4609), - [anon_sym_internal] = ACTIONS(4609), - [anon_sym_new] = ACTIONS(4609), - [anon_sym_override] = ACTIONS(4609), - [anon_sym_partial] = ACTIONS(4609), - [anon_sym_private] = ACTIONS(4609), - [anon_sym_protected] = ACTIONS(4609), - [anon_sym_public] = ACTIONS(4609), - [anon_sym_readonly] = ACTIONS(4609), - [anon_sym_required] = ACTIONS(4609), - [anon_sym_sealed] = ACTIONS(4609), - [anon_sym_virtual] = ACTIONS(4609), - [anon_sym_volatile] = ACTIONS(4609), - [anon_sym_where] = ACTIONS(4609), - [anon_sym_notnull] = ACTIONS(4609), - [anon_sym_unmanaged] = ACTIONS(4609), - [anon_sym_TILDE] = ACTIONS(4611), - [anon_sym_implicit] = ACTIONS(4609), - [anon_sym_explicit] = ACTIONS(4609), - [anon_sym_scoped] = ACTIONS(4609), - [anon_sym_var] = ACTIONS(4609), - [sym_predefined_type] = ACTIONS(4609), - [anon_sym_yield] = ACTIONS(4609), - [anon_sym_when] = ACTIONS(4609), - [anon_sym_from] = ACTIONS(4609), - [anon_sym_into] = ACTIONS(4609), - [anon_sym_join] = ACTIONS(4609), - [anon_sym_on] = ACTIONS(4609), - [anon_sym_equals] = ACTIONS(4609), - [anon_sym_let] = ACTIONS(4609), - [anon_sym_orderby] = ACTIONS(4609), - [anon_sym_ascending] = ACTIONS(4609), - [anon_sym_descending] = ACTIONS(4609), - [anon_sym_group] = ACTIONS(4609), - [anon_sym_by] = ACTIONS(4609), - [anon_sym_select] = ACTIONS(4609), - [aux_sym_preproc_if_token1] = ACTIONS(4611), - [aux_sym_preproc_if_token3] = ACTIONS(4611), - [aux_sym_preproc_else_token1] = ACTIONS(4611), - [aux_sym_preproc_elif_token1] = ACTIONS(4611), + [sym__identifier_token] = ACTIONS(3335), + [anon_sym_extern] = ACTIONS(3335), + [anon_sym_alias] = ACTIONS(3335), + [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_event] = 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_RBRACE] = 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_TILDE] = ACTIONS(3337), + [anon_sym_implicit] = ACTIONS(3335), + [anon_sym_explicit] = ACTIONS(3335), + [anon_sym_scoped] = ACTIONS(3335), + [anon_sym_var] = ACTIONS(3335), + [sym_predefined_type] = ACTIONS(3335), + [anon_sym_yield] = ACTIONS(3335), + [anon_sym_when] = ACTIONS(3335), + [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), + [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), @@ -456325,69 +455939,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(4187), - [anon_sym_EQ] = ACTIONS(4189), - [anon_sym_LBRACK] = ACTIONS(4187), - [anon_sym_COLON] = ACTIONS(4187), - [anon_sym_COMMA] = ACTIONS(4187), - [anon_sym_RBRACK] = ACTIONS(4187), - [anon_sym_LPAREN] = ACTIONS(4187), - [anon_sym_RPAREN] = ACTIONS(4187), - [anon_sym_RBRACE] = ACTIONS(4187), - [anon_sym_LT] = ACTIONS(4189), - [anon_sym_GT] = ACTIONS(4189), - [anon_sym_in] = ACTIONS(4187), - [anon_sym_QMARK] = ACTIONS(4189), - [anon_sym_BANG] = ACTIONS(4189), - [anon_sym_PLUS_PLUS] = ACTIONS(4187), - [anon_sym_DASH_DASH] = ACTIONS(4187), - [anon_sym_PLUS] = ACTIONS(4189), - [anon_sym_DASH] = ACTIONS(4189), - [anon_sym_STAR] = ACTIONS(4189), - [anon_sym_SLASH] = ACTIONS(4189), - [anon_sym_PERCENT] = ACTIONS(4189), - [anon_sym_CARET] = ACTIONS(4189), - [anon_sym_PIPE] = ACTIONS(4189), - [anon_sym_AMP] = ACTIONS(4189), - [anon_sym_LT_LT] = ACTIONS(4189), - [anon_sym_GT_GT] = ACTIONS(4189), - [anon_sym_GT_GT_GT] = ACTIONS(4189), - [anon_sym_EQ_EQ] = ACTIONS(4187), - [anon_sym_BANG_EQ] = ACTIONS(4187), - [anon_sym_GT_EQ] = ACTIONS(4187), - [anon_sym_LT_EQ] = ACTIONS(4187), - [anon_sym_DOT] = ACTIONS(4189), - [anon_sym_EQ_GT] = ACTIONS(4187), - [anon_sym_switch] = ACTIONS(4187), - [anon_sym_when] = ACTIONS(4187), - [anon_sym_DOT_DOT] = ACTIONS(4187), - [anon_sym_and] = ACTIONS(4187), - [anon_sym_or] = ACTIONS(4187), - [anon_sym_PLUS_EQ] = ACTIONS(4187), - [anon_sym_DASH_EQ] = ACTIONS(4187), - [anon_sym_STAR_EQ] = ACTIONS(4187), - [anon_sym_SLASH_EQ] = ACTIONS(4187), - [anon_sym_PERCENT_EQ] = ACTIONS(4187), - [anon_sym_AMP_EQ] = ACTIONS(4187), - [anon_sym_CARET_EQ] = ACTIONS(4187), - [anon_sym_PIPE_EQ] = ACTIONS(4187), - [anon_sym_LT_LT_EQ] = ACTIONS(4187), - [anon_sym_GT_GT_EQ] = ACTIONS(4187), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(4187), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(4187), - [anon_sym_AMP_AMP] = ACTIONS(4187), - [anon_sym_PIPE_PIPE] = ACTIONS(4187), - [anon_sym_QMARK_QMARK] = ACTIONS(4189), - [anon_sym_on] = ACTIONS(4187), - [anon_sym_equals] = ACTIONS(4187), - [anon_sym_by] = ACTIONS(4187), - [anon_sym_as] = ACTIONS(4187), - [anon_sym_is] = ACTIONS(4187), - [anon_sym_DASH_GT] = ACTIONS(4187), - [anon_sym_with] = ACTIONS(4187), - [aux_sym_preproc_if_token3] = ACTIONS(4187), - [aux_sym_preproc_else_token1] = ACTIONS(4187), - [aux_sym_preproc_elif_token1] = ACTIONS(4187), + [sym__identifier_token] = ACTIONS(4633), + [anon_sym_extern] = ACTIONS(4633), + [anon_sym_alias] = ACTIONS(4633), + [anon_sym_global] = ACTIONS(4633), + [anon_sym_using] = ACTIONS(4633), + [anon_sym_unsafe] = ACTIONS(4633), + [anon_sym_static] = ACTIONS(4633), + [anon_sym_LBRACK] = ACTIONS(4635), + [anon_sym_LPAREN] = ACTIONS(4635), + [anon_sym_event] = ACTIONS(4633), + [anon_sym_namespace] = ACTIONS(4633), + [anon_sym_class] = ACTIONS(4633), + [anon_sym_ref] = ACTIONS(4633), + [anon_sym_struct] = ACTIONS(4633), + [anon_sym_enum] = ACTIONS(4633), + [anon_sym_RBRACE] = ACTIONS(4635), + [anon_sym_interface] = ACTIONS(4633), + [anon_sym_delegate] = ACTIONS(4633), + [anon_sym_record] = ACTIONS(4633), + [anon_sym_abstract] = ACTIONS(4633), + [anon_sym_async] = ACTIONS(4633), + [anon_sym_const] = ACTIONS(4633), + [anon_sym_file] = ACTIONS(4633), + [anon_sym_fixed] = ACTIONS(4633), + [anon_sym_internal] = ACTIONS(4633), + [anon_sym_new] = ACTIONS(4633), + [anon_sym_override] = ACTIONS(4633), + [anon_sym_partial] = ACTIONS(4633), + [anon_sym_private] = ACTIONS(4633), + [anon_sym_protected] = ACTIONS(4633), + [anon_sym_public] = ACTIONS(4633), + [anon_sym_readonly] = ACTIONS(4633), + [anon_sym_required] = ACTIONS(4633), + [anon_sym_sealed] = ACTIONS(4633), + [anon_sym_virtual] = ACTIONS(4633), + [anon_sym_volatile] = ACTIONS(4633), + [anon_sym_where] = ACTIONS(4633), + [anon_sym_notnull] = ACTIONS(4633), + [anon_sym_unmanaged] = ACTIONS(4633), + [anon_sym_TILDE] = ACTIONS(4635), + [anon_sym_implicit] = ACTIONS(4633), + [anon_sym_explicit] = ACTIONS(4633), + [anon_sym_scoped] = ACTIONS(4633), + [anon_sym_var] = ACTIONS(4633), + [sym_predefined_type] = ACTIONS(4633), + [anon_sym_yield] = ACTIONS(4633), + [anon_sym_when] = ACTIONS(4633), + [anon_sym_from] = ACTIONS(4633), + [anon_sym_into] = ACTIONS(4633), + [anon_sym_join] = ACTIONS(4633), + [anon_sym_on] = ACTIONS(4633), + [anon_sym_equals] = ACTIONS(4633), + [anon_sym_let] = ACTIONS(4633), + [anon_sym_orderby] = ACTIONS(4633), + [anon_sym_ascending] = ACTIONS(4633), + [anon_sym_descending] = ACTIONS(4633), + [anon_sym_group] = ACTIONS(4633), + [anon_sym_by] = ACTIONS(4633), + [anon_sym_select] = ACTIONS(4633), + [aux_sym_preproc_if_token1] = ACTIONS(4635), + [aux_sym_preproc_if_token3] = ACTIONS(4635), + [aux_sym_preproc_else_token1] = ACTIONS(4635), + [aux_sym_preproc_elif_token1] = ACTIONS(4635), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -456409,69 +456023,69 @@ 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(4613), - [anon_sym_extern] = ACTIONS(4613), - [anon_sym_alias] = ACTIONS(4613), - [anon_sym_global] = ACTIONS(4613), - [anon_sym_using] = ACTIONS(4613), - [anon_sym_unsafe] = ACTIONS(4613), - [anon_sym_static] = ACTIONS(4613), - [anon_sym_LBRACK] = ACTIONS(4615), - [anon_sym_LPAREN] = ACTIONS(4615), - [anon_sym_event] = ACTIONS(4613), - [anon_sym_namespace] = ACTIONS(4613), - [anon_sym_class] = ACTIONS(4613), - [anon_sym_ref] = ACTIONS(4613), - [anon_sym_struct] = ACTIONS(4613), - [anon_sym_enum] = ACTIONS(4613), - [anon_sym_RBRACE] = ACTIONS(4615), - [anon_sym_interface] = ACTIONS(4613), - [anon_sym_delegate] = ACTIONS(4613), - [anon_sym_record] = ACTIONS(4613), - [anon_sym_abstract] = ACTIONS(4613), - [anon_sym_async] = ACTIONS(4613), - [anon_sym_const] = ACTIONS(4613), - [anon_sym_file] = ACTIONS(4613), - [anon_sym_fixed] = ACTIONS(4613), - [anon_sym_internal] = ACTIONS(4613), - [anon_sym_new] = ACTIONS(4613), - [anon_sym_override] = ACTIONS(4613), - [anon_sym_partial] = ACTIONS(4613), - [anon_sym_private] = ACTIONS(4613), - [anon_sym_protected] = ACTIONS(4613), - [anon_sym_public] = ACTIONS(4613), - [anon_sym_readonly] = ACTIONS(4613), - [anon_sym_required] = ACTIONS(4613), - [anon_sym_sealed] = ACTIONS(4613), - [anon_sym_virtual] = ACTIONS(4613), - [anon_sym_volatile] = ACTIONS(4613), - [anon_sym_where] = ACTIONS(4613), - [anon_sym_notnull] = ACTIONS(4613), - [anon_sym_unmanaged] = ACTIONS(4613), - [anon_sym_TILDE] = ACTIONS(4615), - [anon_sym_implicit] = ACTIONS(4613), - [anon_sym_explicit] = ACTIONS(4613), - [anon_sym_scoped] = ACTIONS(4613), - [anon_sym_var] = ACTIONS(4613), - [sym_predefined_type] = ACTIONS(4613), - [anon_sym_yield] = ACTIONS(4613), - [anon_sym_when] = ACTIONS(4613), - [anon_sym_from] = ACTIONS(4613), - [anon_sym_into] = ACTIONS(4613), - [anon_sym_join] = ACTIONS(4613), - [anon_sym_on] = ACTIONS(4613), - [anon_sym_equals] = ACTIONS(4613), - [anon_sym_let] = ACTIONS(4613), - [anon_sym_orderby] = ACTIONS(4613), - [anon_sym_ascending] = ACTIONS(4613), - [anon_sym_descending] = ACTIONS(4613), - [anon_sym_group] = ACTIONS(4613), - [anon_sym_by] = ACTIONS(4613), - [anon_sym_select] = ACTIONS(4613), - [aux_sym_preproc_if_token1] = ACTIONS(4615), - [aux_sym_preproc_if_token3] = ACTIONS(4615), - [aux_sym_preproc_else_token1] = ACTIONS(4615), - [aux_sym_preproc_elif_token1] = ACTIONS(4615), + [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), @@ -456493,79 +456107,79 @@ 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(4617), - [anon_sym_extern] = ACTIONS(4617), - [anon_sym_alias] = ACTIONS(4617), - [anon_sym_global] = ACTIONS(4617), - [anon_sym_using] = ACTIONS(4617), - [anon_sym_unsafe] = ACTIONS(4617), - [anon_sym_static] = ACTIONS(4617), - [anon_sym_LBRACK] = ACTIONS(4619), - [anon_sym_LPAREN] = ACTIONS(4619), - [anon_sym_event] = ACTIONS(4617), - [anon_sym_namespace] = ACTIONS(4617), - [anon_sym_class] = ACTIONS(4617), - [anon_sym_ref] = ACTIONS(4617), - [anon_sym_struct] = ACTIONS(4617), - [anon_sym_enum] = ACTIONS(4617), - [anon_sym_RBRACE] = ACTIONS(4619), - [anon_sym_interface] = ACTIONS(4617), - [anon_sym_delegate] = ACTIONS(4617), - [anon_sym_record] = ACTIONS(4617), - [anon_sym_abstract] = ACTIONS(4617), - [anon_sym_async] = ACTIONS(4617), - [anon_sym_const] = ACTIONS(4617), - [anon_sym_file] = ACTIONS(4617), - [anon_sym_fixed] = ACTIONS(4617), - [anon_sym_internal] = ACTIONS(4617), - [anon_sym_new] = ACTIONS(4617), - [anon_sym_override] = ACTIONS(4617), - [anon_sym_partial] = ACTIONS(4617), - [anon_sym_private] = ACTIONS(4617), - [anon_sym_protected] = ACTIONS(4617), - [anon_sym_public] = ACTIONS(4617), - [anon_sym_readonly] = ACTIONS(4617), - [anon_sym_required] = ACTIONS(4617), - [anon_sym_sealed] = ACTIONS(4617), - [anon_sym_virtual] = ACTIONS(4617), - [anon_sym_volatile] = ACTIONS(4617), - [anon_sym_where] = ACTIONS(4617), - [anon_sym_notnull] = ACTIONS(4617), - [anon_sym_unmanaged] = ACTIONS(4617), - [anon_sym_TILDE] = ACTIONS(4619), - [anon_sym_implicit] = ACTIONS(4617), - [anon_sym_explicit] = ACTIONS(4617), - [anon_sym_scoped] = ACTIONS(4617), - [anon_sym_var] = ACTIONS(4617), - [sym_predefined_type] = ACTIONS(4617), - [anon_sym_yield] = ACTIONS(4617), - [anon_sym_when] = ACTIONS(4617), - [anon_sym_from] = ACTIONS(4617), - [anon_sym_into] = ACTIONS(4617), - [anon_sym_join] = ACTIONS(4617), - [anon_sym_on] = ACTIONS(4617), - [anon_sym_equals] = ACTIONS(4617), - [anon_sym_let] = ACTIONS(4617), - [anon_sym_orderby] = ACTIONS(4617), - [anon_sym_ascending] = ACTIONS(4617), - [anon_sym_descending] = ACTIONS(4617), - [anon_sym_group] = ACTIONS(4617), - [anon_sym_by] = ACTIONS(4617), - [anon_sym_select] = ACTIONS(4617), - [aux_sym_preproc_if_token1] = ACTIONS(4619), - [aux_sym_preproc_if_token3] = ACTIONS(4619), - [aux_sym_preproc_else_token1] = ACTIONS(4619), - [aux_sym_preproc_elif_token1] = ACTIONS(4619), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_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(3961), + [anon_sym_alias] = ACTIONS(3961), + [anon_sym_global] = ACTIONS(3961), + [anon_sym_LBRACK] = ACTIONS(4033), + [anon_sym_COLON] = ACTIONS(3963), + [anon_sym_COMMA] = ACTIONS(3963), + [anon_sym_LPAREN] = ACTIONS(3963), + [anon_sym_LBRACE] = ACTIONS(3963), + [anon_sym_file] = ACTIONS(3961), + [anon_sym_LT] = ACTIONS(3961), + [anon_sym_GT] = ACTIONS(3961), + [anon_sym_where] = ACTIONS(3961), + [anon_sym_QMARK] = ACTIONS(4298), + [anon_sym_notnull] = ACTIONS(3961), + [anon_sym_unmanaged] = ACTIONS(3961), + [anon_sym_BANG] = ACTIONS(3961), + [anon_sym_PLUS_PLUS] = ACTIONS(3963), + [anon_sym_DASH_DASH] = ACTIONS(3963), + [anon_sym_PLUS] = ACTIONS(3961), + [anon_sym_DASH] = ACTIONS(3961), + [anon_sym_STAR] = ACTIONS(4039), + [anon_sym_SLASH] = ACTIONS(3961), + [anon_sym_PERCENT] = ACTIONS(3963), + [anon_sym_CARET] = ACTIONS(3963), + [anon_sym_PIPE] = ACTIONS(3961), + [anon_sym_AMP] = ACTIONS(3961), + [anon_sym_LT_LT] = ACTIONS(3963), + [anon_sym_GT_GT] = ACTIONS(3961), + [anon_sym_GT_GT_GT] = ACTIONS(3963), + [anon_sym_EQ_EQ] = ACTIONS(3963), + [anon_sym_BANG_EQ] = ACTIONS(3963), + [anon_sym_GT_EQ] = ACTIONS(3963), + [anon_sym_LT_EQ] = ACTIONS(3963), + [anon_sym_DOT] = ACTIONS(4477), + [anon_sym_scoped] = ACTIONS(3961), + [anon_sym_var] = ACTIONS(3961), + [anon_sym_yield] = ACTIONS(3961), + [anon_sym_switch] = ACTIONS(3961), + [anon_sym_when] = ACTIONS(3961), + [sym_discard] = ACTIONS(3961), + [anon_sym_DOT_DOT] = ACTIONS(3963), + [anon_sym_and] = ACTIONS(3961), + [anon_sym_or] = ACTIONS(3961), + [anon_sym_AMP_AMP] = ACTIONS(3963), + [anon_sym_PIPE_PIPE] = ACTIONS(3963), + [anon_sym_QMARK_QMARK] = ACTIONS(3963), + [anon_sym_from] = ACTIONS(3961), + [anon_sym_into] = ACTIONS(3961), + [anon_sym_join] = ACTIONS(3961), + [anon_sym_on] = ACTIONS(3961), + [anon_sym_equals] = ACTIONS(3961), + [anon_sym_let] = ACTIONS(3961), + [anon_sym_orderby] = ACTIONS(3961), + [anon_sym_ascending] = ACTIONS(3961), + [anon_sym_descending] = ACTIONS(3961), + [anon_sym_group] = ACTIONS(3961), + [anon_sym_by] = ACTIONS(3961), + [anon_sym_select] = ACTIONS(3961), + [anon_sym_as] = ACTIONS(3961), + [anon_sym_is] = ACTIONS(3961), + [anon_sym_DASH_GT] = ACTIONS(3963), + [anon_sym_with] = ACTIONS(3961), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_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(3963), }, [2830] = { [sym_preproc_region] = STATE(2830), @@ -456577,69 +456191,69 @@ 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(4621), - [anon_sym_extern] = ACTIONS(4621), - [anon_sym_alias] = ACTIONS(4621), - [anon_sym_global] = ACTIONS(4621), - [anon_sym_using] = ACTIONS(4621), - [anon_sym_unsafe] = ACTIONS(4621), - [anon_sym_static] = ACTIONS(4621), - [anon_sym_LBRACK] = ACTIONS(4623), - [anon_sym_LPAREN] = ACTIONS(4623), - [anon_sym_event] = ACTIONS(4621), - [anon_sym_namespace] = ACTIONS(4621), - [anon_sym_class] = ACTIONS(4621), - [anon_sym_ref] = ACTIONS(4621), - [anon_sym_struct] = ACTIONS(4621), - [anon_sym_enum] = ACTIONS(4621), - [anon_sym_RBRACE] = ACTIONS(4623), - [anon_sym_interface] = ACTIONS(4621), - [anon_sym_delegate] = ACTIONS(4621), - [anon_sym_record] = ACTIONS(4621), - [anon_sym_abstract] = ACTIONS(4621), - [anon_sym_async] = ACTIONS(4621), - [anon_sym_const] = ACTIONS(4621), - [anon_sym_file] = ACTIONS(4621), - [anon_sym_fixed] = ACTIONS(4621), - [anon_sym_internal] = ACTIONS(4621), - [anon_sym_new] = ACTIONS(4621), - [anon_sym_override] = ACTIONS(4621), - [anon_sym_partial] = ACTIONS(4621), - [anon_sym_private] = ACTIONS(4621), - [anon_sym_protected] = ACTIONS(4621), - [anon_sym_public] = ACTIONS(4621), - [anon_sym_readonly] = ACTIONS(4621), - [anon_sym_required] = ACTIONS(4621), - [anon_sym_sealed] = ACTIONS(4621), - [anon_sym_virtual] = ACTIONS(4621), - [anon_sym_volatile] = ACTIONS(4621), - [anon_sym_where] = ACTIONS(4621), - [anon_sym_notnull] = ACTIONS(4621), - [anon_sym_unmanaged] = ACTIONS(4621), - [anon_sym_TILDE] = ACTIONS(4623), - [anon_sym_implicit] = ACTIONS(4621), - [anon_sym_explicit] = ACTIONS(4621), - [anon_sym_scoped] = ACTIONS(4621), - [anon_sym_var] = ACTIONS(4621), - [sym_predefined_type] = ACTIONS(4621), - [anon_sym_yield] = ACTIONS(4621), - [anon_sym_when] = ACTIONS(4621), - [anon_sym_from] = ACTIONS(4621), - [anon_sym_into] = ACTIONS(4621), - [anon_sym_join] = ACTIONS(4621), - [anon_sym_on] = ACTIONS(4621), - [anon_sym_equals] = ACTIONS(4621), - [anon_sym_let] = ACTIONS(4621), - [anon_sym_orderby] = ACTIONS(4621), - [anon_sym_ascending] = ACTIONS(4621), - [anon_sym_descending] = ACTIONS(4621), - [anon_sym_group] = ACTIONS(4621), - [anon_sym_by] = ACTIONS(4621), - [anon_sym_select] = ACTIONS(4621), - [aux_sym_preproc_if_token1] = ACTIONS(4623), - [aux_sym_preproc_if_token3] = ACTIONS(4623), - [aux_sym_preproc_else_token1] = ACTIONS(4623), - [aux_sym_preproc_elif_token1] = ACTIONS(4623), + [anon_sym_SEMI] = ACTIONS(4120), + [anon_sym_EQ] = ACTIONS(4122), + [anon_sym_LBRACK] = ACTIONS(4120), + [anon_sym_COLON] = ACTIONS(4120), + [anon_sym_COMMA] = ACTIONS(4120), + [anon_sym_RBRACK] = ACTIONS(4120), + [anon_sym_LPAREN] = ACTIONS(4120), + [anon_sym_RPAREN] = ACTIONS(4120), + [anon_sym_RBRACE] = ACTIONS(4120), + [anon_sym_LT] = ACTIONS(4122), + [anon_sym_GT] = ACTIONS(4122), + [anon_sym_in] = ACTIONS(4120), + [anon_sym_QMARK] = ACTIONS(4122), + [anon_sym_BANG] = ACTIONS(4122), + [anon_sym_PLUS_PLUS] = ACTIONS(4120), + [anon_sym_DASH_DASH] = ACTIONS(4120), + [anon_sym_PLUS] = ACTIONS(4122), + [anon_sym_DASH] = ACTIONS(4122), + [anon_sym_STAR] = ACTIONS(4122), + [anon_sym_SLASH] = ACTIONS(4122), + [anon_sym_PERCENT] = ACTIONS(4122), + [anon_sym_CARET] = ACTIONS(4122), + [anon_sym_PIPE] = ACTIONS(4122), + [anon_sym_AMP] = ACTIONS(4122), + [anon_sym_LT_LT] = ACTIONS(4122), + [anon_sym_GT_GT] = ACTIONS(4122), + [anon_sym_GT_GT_GT] = ACTIONS(4122), + [anon_sym_EQ_EQ] = ACTIONS(4120), + [anon_sym_BANG_EQ] = ACTIONS(4120), + [anon_sym_GT_EQ] = ACTIONS(4120), + [anon_sym_LT_EQ] = ACTIONS(4120), + [anon_sym_DOT] = ACTIONS(4122), + [anon_sym_EQ_GT] = ACTIONS(4120), + [anon_sym_switch] = ACTIONS(4120), + [anon_sym_when] = ACTIONS(4120), + [anon_sym_DOT_DOT] = ACTIONS(4120), + [anon_sym_and] = ACTIONS(4120), + [anon_sym_or] = ACTIONS(4120), + [anon_sym_PLUS_EQ] = ACTIONS(4120), + [anon_sym_DASH_EQ] = ACTIONS(4120), + [anon_sym_STAR_EQ] = ACTIONS(4120), + [anon_sym_SLASH_EQ] = ACTIONS(4120), + [anon_sym_PERCENT_EQ] = ACTIONS(4120), + [anon_sym_AMP_EQ] = ACTIONS(4120), + [anon_sym_CARET_EQ] = ACTIONS(4120), + [anon_sym_PIPE_EQ] = ACTIONS(4120), + [anon_sym_LT_LT_EQ] = ACTIONS(4120), + [anon_sym_GT_GT_EQ] = ACTIONS(4120), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(4120), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(4120), + [anon_sym_AMP_AMP] = ACTIONS(4120), + [anon_sym_PIPE_PIPE] = ACTIONS(4120), + [anon_sym_QMARK_QMARK] = ACTIONS(4122), + [anon_sym_on] = ACTIONS(4120), + [anon_sym_equals] = ACTIONS(4120), + [anon_sym_by] = ACTIONS(4120), + [anon_sym_as] = ACTIONS(4120), + [anon_sym_is] = ACTIONS(4120), + [anon_sym_DASH_GT] = ACTIONS(4120), + [anon_sym_with] = ACTIONS(4120), + [aux_sym_preproc_if_token3] = ACTIONS(4120), + [aux_sym_preproc_else_token1] = ACTIONS(4120), + [aux_sym_preproc_elif_token1] = ACTIONS(4120), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -456661,79 +456275,79 @@ 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(4625), - [anon_sym_extern] = ACTIONS(4625), - [anon_sym_alias] = ACTIONS(4625), - [anon_sym_global] = ACTIONS(4625), - [anon_sym_using] = ACTIONS(4625), - [anon_sym_unsafe] = ACTIONS(4625), - [anon_sym_static] = ACTIONS(4625), - [anon_sym_LBRACK] = ACTIONS(4627), - [anon_sym_LPAREN] = ACTIONS(4627), - [anon_sym_event] = ACTIONS(4625), - [anon_sym_namespace] = ACTIONS(4625), - [anon_sym_class] = ACTIONS(4625), - [anon_sym_ref] = ACTIONS(4625), - [anon_sym_struct] = ACTIONS(4625), - [anon_sym_enum] = ACTIONS(4625), - [anon_sym_RBRACE] = ACTIONS(4627), - [anon_sym_interface] = ACTIONS(4625), - [anon_sym_delegate] = ACTIONS(4625), - [anon_sym_record] = ACTIONS(4625), - [anon_sym_abstract] = ACTIONS(4625), - [anon_sym_async] = ACTIONS(4625), - [anon_sym_const] = ACTIONS(4625), - [anon_sym_file] = ACTIONS(4625), - [anon_sym_fixed] = ACTIONS(4625), - [anon_sym_internal] = ACTIONS(4625), - [anon_sym_new] = ACTIONS(4625), - [anon_sym_override] = ACTIONS(4625), - [anon_sym_partial] = ACTIONS(4625), - [anon_sym_private] = ACTIONS(4625), - [anon_sym_protected] = ACTIONS(4625), - [anon_sym_public] = ACTIONS(4625), - [anon_sym_readonly] = ACTIONS(4625), - [anon_sym_required] = ACTIONS(4625), - [anon_sym_sealed] = ACTIONS(4625), - [anon_sym_virtual] = ACTIONS(4625), - [anon_sym_volatile] = ACTIONS(4625), - [anon_sym_where] = ACTIONS(4625), - [anon_sym_notnull] = ACTIONS(4625), - [anon_sym_unmanaged] = ACTIONS(4625), - [anon_sym_TILDE] = ACTIONS(4627), - [anon_sym_implicit] = ACTIONS(4625), - [anon_sym_explicit] = ACTIONS(4625), - [anon_sym_scoped] = ACTIONS(4625), - [anon_sym_var] = ACTIONS(4625), - [sym_predefined_type] = ACTIONS(4625), - [anon_sym_yield] = ACTIONS(4625), - [anon_sym_when] = ACTIONS(4625), - [anon_sym_from] = ACTIONS(4625), - [anon_sym_into] = ACTIONS(4625), - [anon_sym_join] = ACTIONS(4625), - [anon_sym_on] = ACTIONS(4625), - [anon_sym_equals] = ACTIONS(4625), - [anon_sym_let] = ACTIONS(4625), - [anon_sym_orderby] = ACTIONS(4625), - [anon_sym_ascending] = ACTIONS(4625), - [anon_sym_descending] = ACTIONS(4625), - [anon_sym_group] = ACTIONS(4625), - [anon_sym_by] = ACTIONS(4625), - [anon_sym_select] = ACTIONS(4625), - [aux_sym_preproc_if_token1] = ACTIONS(4627), - [aux_sym_preproc_if_token3] = ACTIONS(4627), - [aux_sym_preproc_else_token1] = ACTIONS(4627), - [aux_sym_preproc_elif_token1] = ACTIONS(4627), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_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(4088), + [anon_sym_alias] = ACTIONS(4088), + [anon_sym_global] = ACTIONS(4088), + [anon_sym_LBRACK] = ACTIONS(4090), + [anon_sym_COLON] = ACTIONS(4090), + [anon_sym_COMMA] = ACTIONS(4090), + [anon_sym_LPAREN] = ACTIONS(4090), + [anon_sym_LBRACE] = ACTIONS(4090), + [anon_sym_file] = ACTIONS(4088), + [anon_sym_LT] = ACTIONS(4088), + [anon_sym_GT] = ACTIONS(4088), + [anon_sym_where] = ACTIONS(4088), + [anon_sym_QMARK] = ACTIONS(4088), + [anon_sym_notnull] = ACTIONS(4088), + [anon_sym_unmanaged] = ACTIONS(4088), + [anon_sym_BANG] = ACTIONS(4088), + [anon_sym_PLUS_PLUS] = ACTIONS(4090), + [anon_sym_DASH_DASH] = ACTIONS(4090), + [anon_sym_PLUS] = ACTIONS(4088), + [anon_sym_DASH] = ACTIONS(4088), + [anon_sym_STAR] = ACTIONS(4090), + [anon_sym_SLASH] = ACTIONS(4088), + [anon_sym_PERCENT] = ACTIONS(4090), + [anon_sym_CARET] = ACTIONS(4090), + [anon_sym_PIPE] = ACTIONS(4088), + [anon_sym_AMP] = ACTIONS(4088), + [anon_sym_LT_LT] = ACTIONS(4090), + [anon_sym_GT_GT] = ACTIONS(4088), + [anon_sym_GT_GT_GT] = ACTIONS(4090), + [anon_sym_EQ_EQ] = ACTIONS(4090), + [anon_sym_BANG_EQ] = ACTIONS(4090), + [anon_sym_GT_EQ] = ACTIONS(4090), + [anon_sym_LT_EQ] = ACTIONS(4090), + [anon_sym_DOT] = ACTIONS(4088), + [anon_sym_scoped] = ACTIONS(4088), + [anon_sym_var] = ACTIONS(4088), + [anon_sym_yield] = ACTIONS(4088), + [anon_sym_switch] = ACTIONS(4088), + [anon_sym_when] = ACTIONS(4088), + [sym_discard] = ACTIONS(4088), + [anon_sym_DOT_DOT] = ACTIONS(4090), + [anon_sym_and] = ACTIONS(4088), + [anon_sym_or] = ACTIONS(4088), + [anon_sym_AMP_AMP] = ACTIONS(4090), + [anon_sym_PIPE_PIPE] = ACTIONS(4090), + [anon_sym_QMARK_QMARK] = ACTIONS(4090), + [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(4088), + [anon_sym_is] = ACTIONS(4088), + [anon_sym_DASH_GT] = ACTIONS(4090), + [anon_sym_with] = ACTIONS(4088), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_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(4090), }, [2832] = { [sym_preproc_region] = STATE(2832), @@ -456745,174 +456359,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2832), [sym_preproc_define] = STATE(2832), [sym_preproc_undef] = STATE(2832), - [sym__identifier_token] = ACTIONS(4629), - [anon_sym_extern] = ACTIONS(4629), - [anon_sym_alias] = ACTIONS(4629), - [anon_sym_global] = ACTIONS(4629), - [anon_sym_using] = ACTIONS(4629), - [anon_sym_unsafe] = ACTIONS(4629), - [anon_sym_static] = ACTIONS(4629), - [anon_sym_LBRACK] = ACTIONS(4631), - [anon_sym_LPAREN] = ACTIONS(4631), - [anon_sym_event] = ACTIONS(4629), - [anon_sym_namespace] = ACTIONS(4629), - [anon_sym_class] = ACTIONS(4629), - [anon_sym_ref] = ACTIONS(4629), - [anon_sym_struct] = ACTIONS(4629), - [anon_sym_enum] = ACTIONS(4629), - [anon_sym_RBRACE] = ACTIONS(4631), - [anon_sym_interface] = ACTIONS(4629), - [anon_sym_delegate] = ACTIONS(4629), - [anon_sym_record] = ACTIONS(4629), - [anon_sym_abstract] = ACTIONS(4629), - [anon_sym_async] = ACTIONS(4629), - [anon_sym_const] = ACTIONS(4629), - [anon_sym_file] = ACTIONS(4629), - [anon_sym_fixed] = ACTIONS(4629), - [anon_sym_internal] = ACTIONS(4629), - [anon_sym_new] = ACTIONS(4629), - [anon_sym_override] = ACTIONS(4629), - [anon_sym_partial] = ACTIONS(4629), - [anon_sym_private] = ACTIONS(4629), - [anon_sym_protected] = ACTIONS(4629), - [anon_sym_public] = ACTIONS(4629), - [anon_sym_readonly] = ACTIONS(4629), - [anon_sym_required] = ACTIONS(4629), - [anon_sym_sealed] = ACTIONS(4629), - [anon_sym_virtual] = ACTIONS(4629), - [anon_sym_volatile] = ACTIONS(4629), - [anon_sym_where] = ACTIONS(4629), - [anon_sym_notnull] = ACTIONS(4629), - [anon_sym_unmanaged] = ACTIONS(4629), - [anon_sym_TILDE] = ACTIONS(4631), - [anon_sym_implicit] = ACTIONS(4629), - [anon_sym_explicit] = ACTIONS(4629), - [anon_sym_scoped] = ACTIONS(4629), - [anon_sym_var] = ACTIONS(4629), - [sym_predefined_type] = ACTIONS(4629), - [anon_sym_yield] = ACTIONS(4629), - [anon_sym_when] = ACTIONS(4629), - [anon_sym_from] = ACTIONS(4629), - [anon_sym_into] = ACTIONS(4629), - [anon_sym_join] = ACTIONS(4629), - [anon_sym_on] = ACTIONS(4629), - [anon_sym_equals] = ACTIONS(4629), - [anon_sym_let] = ACTIONS(4629), - [anon_sym_orderby] = ACTIONS(4629), - [anon_sym_ascending] = ACTIONS(4629), - [anon_sym_descending] = ACTIONS(4629), - [anon_sym_group] = ACTIONS(4629), - [anon_sym_by] = ACTIONS(4629), - [anon_sym_select] = ACTIONS(4629), - [aux_sym_preproc_if_token1] = ACTIONS(4631), - [aux_sym_preproc_if_token3] = ACTIONS(4631), - [aux_sym_preproc_else_token1] = ACTIONS(4631), - [aux_sym_preproc_elif_token1] = ACTIONS(4631), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - }, - [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(4633), - [anon_sym_extern] = ACTIONS(4633), - [anon_sym_alias] = ACTIONS(4633), - [anon_sym_global] = ACTIONS(4633), - [anon_sym_using] = ACTIONS(4633), - [anon_sym_unsafe] = ACTIONS(4633), - [anon_sym_static] = ACTIONS(4633), - [anon_sym_LBRACK] = ACTIONS(4635), - [anon_sym_LPAREN] = ACTIONS(4635), - [anon_sym_event] = ACTIONS(4633), - [anon_sym_namespace] = ACTIONS(4633), - [anon_sym_class] = ACTIONS(4633), - [anon_sym_ref] = ACTIONS(4633), - [anon_sym_struct] = ACTIONS(4633), - [anon_sym_enum] = ACTIONS(4633), - [anon_sym_RBRACE] = ACTIONS(4635), - [anon_sym_interface] = ACTIONS(4633), - [anon_sym_delegate] = ACTIONS(4633), - [anon_sym_record] = ACTIONS(4633), - [anon_sym_abstract] = ACTIONS(4633), - [anon_sym_async] = ACTIONS(4633), - [anon_sym_const] = ACTIONS(4633), - [anon_sym_file] = ACTIONS(4633), - [anon_sym_fixed] = ACTIONS(4633), - [anon_sym_internal] = ACTIONS(4633), - [anon_sym_new] = ACTIONS(4633), - [anon_sym_override] = ACTIONS(4633), - [anon_sym_partial] = ACTIONS(4633), - [anon_sym_private] = ACTIONS(4633), - [anon_sym_protected] = ACTIONS(4633), - [anon_sym_public] = ACTIONS(4633), - [anon_sym_readonly] = ACTIONS(4633), - [anon_sym_required] = ACTIONS(4633), - [anon_sym_sealed] = ACTIONS(4633), - [anon_sym_virtual] = ACTIONS(4633), - [anon_sym_volatile] = ACTIONS(4633), - [anon_sym_where] = ACTIONS(4633), - [anon_sym_notnull] = ACTIONS(4633), - [anon_sym_unmanaged] = ACTIONS(4633), - [anon_sym_TILDE] = ACTIONS(4635), - [anon_sym_implicit] = ACTIONS(4633), - [anon_sym_explicit] = ACTIONS(4633), - [anon_sym_scoped] = ACTIONS(4633), - [anon_sym_var] = ACTIONS(4633), - [sym_predefined_type] = ACTIONS(4633), - [anon_sym_yield] = ACTIONS(4633), - [anon_sym_when] = ACTIONS(4633), - [anon_sym_from] = ACTIONS(4633), - [anon_sym_into] = ACTIONS(4633), - [anon_sym_join] = ACTIONS(4633), - [anon_sym_on] = ACTIONS(4633), - [anon_sym_equals] = ACTIONS(4633), - [anon_sym_let] = ACTIONS(4633), - [anon_sym_orderby] = ACTIONS(4633), - [anon_sym_ascending] = ACTIONS(4633), - [anon_sym_descending] = ACTIONS(4633), - [anon_sym_group] = ACTIONS(4633), - [anon_sym_by] = ACTIONS(4633), - [anon_sym_select] = ACTIONS(4633), - [aux_sym_preproc_if_token1] = ACTIONS(4635), - [aux_sym_preproc_if_token3] = ACTIONS(4635), - [aux_sym_preproc_else_token1] = ACTIONS(4635), - [aux_sym_preproc_elif_token1] = ACTIONS(4635), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - }, - [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(4637), [anon_sym_extern] = ACTIONS(4637), [anon_sym_alias] = ACTIONS(4637), @@ -456987,16 +456433,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), }, - [2835] = { - [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), + [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(4641), [anon_sym_extern] = ACTIONS(4641), [anon_sym_alias] = ACTIONS(4641), @@ -457071,16 +456517,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [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(4645), [anon_sym_extern] = ACTIONS(4645), [anon_sym_alias] = ACTIONS(4645), @@ -457155,16 +456601,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), }, - [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), + [2835] = { + [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(4649), [anon_sym_extern] = ACTIONS(4649), [anon_sym_alias] = ACTIONS(4649), @@ -457239,16 +456685,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), }, - [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), + [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(4653), [anon_sym_extern] = ACTIONS(4653), [anon_sym_alias] = ACTIONS(4653), @@ -457323,16 +456769,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [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(4657), [anon_sym_extern] = ACTIONS(4657), [anon_sym_alias] = ACTIONS(4657), @@ -457407,100 +456853,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), }, - [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), - [anon_sym_SEMI] = ACTIONS(4144), - [anon_sym_EQ] = ACTIONS(4146), - [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_RBRACE] = ACTIONS(4144), - [anon_sym_LT] = ACTIONS(4146), - [anon_sym_GT] = ACTIONS(4146), - [anon_sym_in] = ACTIONS(4144), - [anon_sym_QMARK] = ACTIONS(4146), - [anon_sym_BANG] = ACTIONS(4146), - [anon_sym_PLUS_PLUS] = ACTIONS(4144), - [anon_sym_DASH_DASH] = ACTIONS(4144), - [anon_sym_PLUS] = ACTIONS(4146), - [anon_sym_DASH] = ACTIONS(4146), - [anon_sym_STAR] = ACTIONS(4146), - [anon_sym_SLASH] = ACTIONS(4146), - [anon_sym_PERCENT] = ACTIONS(4146), - [anon_sym_CARET] = ACTIONS(4146), - [anon_sym_PIPE] = ACTIONS(4146), - [anon_sym_AMP] = ACTIONS(4146), - [anon_sym_LT_LT] = ACTIONS(4146), - [anon_sym_GT_GT] = ACTIONS(4146), - [anon_sym_GT_GT_GT] = ACTIONS(4146), - [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(4146), - [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_PLUS_EQ] = ACTIONS(4144), - [anon_sym_DASH_EQ] = ACTIONS(4144), - [anon_sym_STAR_EQ] = ACTIONS(4144), - [anon_sym_SLASH_EQ] = ACTIONS(4144), - [anon_sym_PERCENT_EQ] = ACTIONS(4144), - [anon_sym_AMP_EQ] = ACTIONS(4144), - [anon_sym_CARET_EQ] = ACTIONS(4144), - [anon_sym_PIPE_EQ] = ACTIONS(4144), - [anon_sym_LT_LT_EQ] = ACTIONS(4144), - [anon_sym_GT_GT_EQ] = ACTIONS(4144), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(4144), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(4144), - [anon_sym_AMP_AMP] = ACTIONS(4144), - [anon_sym_PIPE_PIPE] = ACTIONS(4144), - [anon_sym_QMARK_QMARK] = ACTIONS(4146), - [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), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [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), + [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(4661), [anon_sym_extern] = ACTIONS(4661), [anon_sym_alias] = ACTIONS(4661), @@ -457575,79 +456937,77 @@ 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(3141), - [anon_sym_extern] = ACTIONS(3141), - [anon_sym_alias] = ACTIONS(3141), - [anon_sym_global] = ACTIONS(3141), - [anon_sym_using] = ACTIONS(3141), - [anon_sym_unsafe] = ACTIONS(3141), - [anon_sym_static] = ACTIONS(3141), - [anon_sym_LBRACK] = ACTIONS(3143), - [anon_sym_LPAREN] = ACTIONS(3143), - [anon_sym_event] = ACTIONS(3141), - [anon_sym_namespace] = ACTIONS(3141), - [anon_sym_class] = ACTIONS(3141), - [anon_sym_ref] = ACTIONS(3141), - [anon_sym_struct] = ACTIONS(3141), - [anon_sym_enum] = ACTIONS(3141), - [anon_sym_RBRACE] = ACTIONS(3143), - [anon_sym_interface] = ACTIONS(3141), - [anon_sym_delegate] = ACTIONS(3141), - [anon_sym_record] = ACTIONS(3141), - [anon_sym_abstract] = ACTIONS(3141), - [anon_sym_async] = ACTIONS(3141), - [anon_sym_const] = ACTIONS(3141), - [anon_sym_file] = ACTIONS(3141), - [anon_sym_fixed] = ACTIONS(3141), - [anon_sym_internal] = ACTIONS(3141), - [anon_sym_new] = ACTIONS(3141), - [anon_sym_override] = ACTIONS(3141), - [anon_sym_partial] = ACTIONS(3141), - [anon_sym_private] = ACTIONS(3141), - [anon_sym_protected] = ACTIONS(3141), - [anon_sym_public] = ACTIONS(3141), - [anon_sym_readonly] = ACTIONS(3141), - [anon_sym_required] = ACTIONS(3141), - [anon_sym_sealed] = ACTIONS(3141), - [anon_sym_virtual] = ACTIONS(3141), - [anon_sym_volatile] = ACTIONS(3141), - [anon_sym_where] = ACTIONS(3141), - [anon_sym_notnull] = ACTIONS(3141), - [anon_sym_unmanaged] = ACTIONS(3141), - [anon_sym_TILDE] = ACTIONS(3143), - [anon_sym_implicit] = ACTIONS(3141), - [anon_sym_explicit] = ACTIONS(3141), - [anon_sym_scoped] = ACTIONS(3141), - [anon_sym_var] = ACTIONS(3141), - [sym_predefined_type] = ACTIONS(3141), - [anon_sym_yield] = ACTIONS(3141), - [anon_sym_when] = ACTIONS(3141), - [anon_sym_from] = ACTIONS(3141), - [anon_sym_into] = ACTIONS(3141), - [anon_sym_join] = ACTIONS(3141), - [anon_sym_on] = ACTIONS(3141), - [anon_sym_equals] = ACTIONS(3141), - [anon_sym_let] = ACTIONS(3141), - [anon_sym_orderby] = ACTIONS(3141), - [anon_sym_ascending] = ACTIONS(3141), - [anon_sym_descending] = ACTIONS(3141), - [anon_sym_group] = ACTIONS(3141), - [anon_sym_by] = ACTIONS(3141), - [anon_sym_select] = ACTIONS(3141), - [aux_sym_preproc_if_token1] = ACTIONS(3143), - [aux_sym_preproc_if_token3] = ACTIONS(3143), - [aux_sym_preproc_else_token1] = ACTIONS(3143), - [aux_sym_preproc_elif_token1] = ACTIONS(3143), + [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(4112), + [anon_sym_alias] = ACTIONS(4112), + [anon_sym_global] = ACTIONS(4112), + [anon_sym_LBRACK] = ACTIONS(4114), + [anon_sym_COLON] = ACTIONS(4114), + [anon_sym_COMMA] = ACTIONS(4114), + [anon_sym_LPAREN] = ACTIONS(4114), + [anon_sym_file] = ACTIONS(4112), + [anon_sym_LT] = ACTIONS(4112), + [anon_sym_GT] = ACTIONS(4112), + [anon_sym_where] = ACTIONS(4112), + [anon_sym_QMARK] = ACTIONS(4112), + [anon_sym_notnull] = ACTIONS(4112), + [anon_sym_unmanaged] = ACTIONS(4112), + [anon_sym_BANG] = ACTIONS(4112), + [anon_sym_PLUS_PLUS] = ACTIONS(4114), + [anon_sym_DASH_DASH] = ACTIONS(4114), + [anon_sym_PLUS] = ACTIONS(4112), + [anon_sym_DASH] = ACTIONS(4112), + [anon_sym_STAR] = ACTIONS(4114), + [anon_sym_SLASH] = ACTIONS(4112), + [anon_sym_PERCENT] = ACTIONS(4114), + [anon_sym_CARET] = ACTIONS(4114), + [anon_sym_PIPE] = ACTIONS(4112), + [anon_sym_AMP] = ACTIONS(4112), + [anon_sym_LT_LT] = ACTIONS(4114), + [anon_sym_GT_GT] = ACTIONS(4112), + [anon_sym_GT_GT_GT] = ACTIONS(4114), + [anon_sym_EQ_EQ] = ACTIONS(4114), + [anon_sym_BANG_EQ] = ACTIONS(4114), + [anon_sym_GT_EQ] = ACTIONS(4114), + [anon_sym_LT_EQ] = ACTIONS(4114), + [anon_sym_DOT] = ACTIONS(4112), + [anon_sym_scoped] = ACTIONS(4112), + [anon_sym_var] = ACTIONS(4112), + [anon_sym_yield] = ACTIONS(4112), + [anon_sym_switch] = ACTIONS(4112), + [anon_sym_when] = ACTIONS(4112), + [sym_discard] = ACTIONS(4112), + [anon_sym_DOT_DOT] = ACTIONS(4114), + [anon_sym_and] = ACTIONS(4112), + [anon_sym_or] = ACTIONS(4112), + [anon_sym_AMP_AMP] = ACTIONS(4114), + [anon_sym_PIPE_PIPE] = ACTIONS(4114), + [anon_sym_QMARK_QMARK] = ACTIONS(4114), + [anon_sym_from] = ACTIONS(4112), + [anon_sym_into] = ACTIONS(4112), + [anon_sym_join] = ACTIONS(4112), + [anon_sym_on] = ACTIONS(4112), + [anon_sym_equals] = ACTIONS(4112), + [anon_sym_let] = ACTIONS(4112), + [anon_sym_orderby] = ACTIONS(4112), + [anon_sym_ascending] = ACTIONS(4112), + [anon_sym_descending] = ACTIONS(4112), + [anon_sym_group] = ACTIONS(4112), + [anon_sym_by] = ACTIONS(4112), + [anon_sym_select] = ACTIONS(4112), + [anon_sym_as] = ACTIONS(4112), + [anon_sym_is] = ACTIONS(4112), + [anon_sym_DASH_GT] = ACTIONS(4114), + [anon_sym_with] = ACTIONS(4112), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -457658,33 +457018,116 @@ static const uint16_t ts_parse_table[LARGE_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(4114), }, - [2843] = { - [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), + [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(4108), + [anon_sym_alias] = ACTIONS(4108), + [anon_sym_global] = ACTIONS(4108), + [anon_sym_LBRACK] = ACTIONS(4110), + [anon_sym_COLON] = ACTIONS(4110), + [anon_sym_COMMA] = ACTIONS(4110), + [anon_sym_LPAREN] = ACTIONS(4110), + [anon_sym_file] = ACTIONS(4108), + [anon_sym_LT] = ACTIONS(4108), + [anon_sym_GT] = ACTIONS(4108), + [anon_sym_where] = ACTIONS(4108), + [anon_sym_QMARK] = ACTIONS(4108), + [anon_sym_notnull] = ACTIONS(4108), + [anon_sym_unmanaged] = ACTIONS(4108), + [anon_sym_BANG] = ACTIONS(4108), + [anon_sym_PLUS_PLUS] = ACTIONS(4110), + [anon_sym_DASH_DASH] = ACTIONS(4110), + [anon_sym_PLUS] = ACTIONS(4108), + [anon_sym_DASH] = ACTIONS(4108), + [anon_sym_STAR] = ACTIONS(4110), + [anon_sym_SLASH] = ACTIONS(4108), + [anon_sym_PERCENT] = ACTIONS(4110), + [anon_sym_CARET] = ACTIONS(4110), + [anon_sym_PIPE] = ACTIONS(4108), + [anon_sym_AMP] = ACTIONS(4108), + [anon_sym_LT_LT] = ACTIONS(4110), + [anon_sym_GT_GT] = ACTIONS(4108), + [anon_sym_GT_GT_GT] = ACTIONS(4110), + [anon_sym_EQ_EQ] = ACTIONS(4110), + [anon_sym_BANG_EQ] = ACTIONS(4110), + [anon_sym_GT_EQ] = ACTIONS(4110), + [anon_sym_LT_EQ] = ACTIONS(4110), + [anon_sym_DOT] = ACTIONS(4108), + [anon_sym_scoped] = ACTIONS(4108), + [anon_sym_var] = ACTIONS(4108), + [anon_sym_yield] = ACTIONS(4108), + [anon_sym_switch] = ACTIONS(4108), + [anon_sym_when] = ACTIONS(4108), + [sym_discard] = ACTIONS(4108), + [anon_sym_DOT_DOT] = ACTIONS(4110), + [anon_sym_and] = ACTIONS(4108), + [anon_sym_or] = ACTIONS(4108), + [anon_sym_AMP_AMP] = ACTIONS(4110), + [anon_sym_PIPE_PIPE] = ACTIONS(4110), + [anon_sym_QMARK_QMARK] = ACTIONS(4110), + [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(4108), + [anon_sym_is] = ACTIONS(4108), + [anon_sym_DASH_GT] = ACTIONS(4110), + [anon_sym_with] = 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), + [sym_interpolation_close_brace] = ACTIONS(4110), + }, + [2841] = { + [sym_preproc_else_in_attribute_list] = STATE(7382), + [sym_preproc_elif_in_attribute_list] = STATE(7382), + [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(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), @@ -457729,9 +457172,175 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_if_token3] = ACTIONS(4669), + [aux_sym_preproc_else_token1] = ACTIONS(4671), + [aux_sym_preproc_elif_token1] = ACTIONS(4673), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [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(4108), + [anon_sym_alias] = ACTIONS(4108), + [anon_sym_global] = ACTIONS(4108), + [anon_sym_LBRACK] = ACTIONS(4110), + [anon_sym_COLON] = ACTIONS(4110), + [anon_sym_COMMA] = ACTIONS(4110), + [anon_sym_LPAREN] = ACTIONS(4110), + [anon_sym_file] = ACTIONS(4108), + [anon_sym_LT] = ACTIONS(4108), + [anon_sym_GT] = ACTIONS(4108), + [anon_sym_where] = ACTIONS(4108), + [anon_sym_QMARK] = ACTIONS(4108), + [anon_sym_notnull] = ACTIONS(4108), + [anon_sym_unmanaged] = ACTIONS(4108), + [anon_sym_BANG] = ACTIONS(4108), + [anon_sym_PLUS_PLUS] = ACTIONS(4110), + [anon_sym_DASH_DASH] = ACTIONS(4110), + [anon_sym_PLUS] = ACTIONS(4108), + [anon_sym_DASH] = ACTIONS(4108), + [anon_sym_STAR] = ACTIONS(4110), + [anon_sym_SLASH] = ACTIONS(4108), + [anon_sym_PERCENT] = ACTIONS(4110), + [anon_sym_CARET] = ACTIONS(4110), + [anon_sym_PIPE] = ACTIONS(4108), + [anon_sym_AMP] = ACTIONS(4108), + [anon_sym_LT_LT] = ACTIONS(4110), + [anon_sym_GT_GT] = ACTIONS(4108), + [anon_sym_GT_GT_GT] = ACTIONS(4110), + [anon_sym_EQ_EQ] = ACTIONS(4110), + [anon_sym_BANG_EQ] = ACTIONS(4110), + [anon_sym_GT_EQ] = ACTIONS(4110), + [anon_sym_LT_EQ] = ACTIONS(4110), + [anon_sym_DOT] = ACTIONS(4108), + [anon_sym_scoped] = ACTIONS(4108), + [anon_sym_var] = ACTIONS(4108), + [anon_sym_yield] = ACTIONS(4108), + [anon_sym_switch] = ACTIONS(4108), + [anon_sym_when] = ACTIONS(4108), + [sym_discard] = ACTIONS(4108), + [anon_sym_DOT_DOT] = ACTIONS(4110), + [anon_sym_and] = ACTIONS(4108), + [anon_sym_or] = ACTIONS(4108), + [anon_sym_AMP_AMP] = ACTIONS(4110), + [anon_sym_PIPE_PIPE] = ACTIONS(4110), + [anon_sym_QMARK_QMARK] = ACTIONS(4110), + [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(4108), + [anon_sym_is] = ACTIONS(4108), + [anon_sym_DASH_GT] = ACTIONS(4110), + [anon_sym_with] = 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), + [sym_interpolation_close_brace] = ACTIONS(4110), + }, + [2843] = { + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym__name] = STATE(4369), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(4068), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(4073), + [sym_type] = STATE(5902), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym__lambda_parameters] = STATE(7609), + [sym_identifier] = STATE(5688), + [sym__reserved_identifier] = STATE(3654), + [sym_preproc_if_in_attribute_list] = STATE(5583), + [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), + [aux_sym__class_declaration_initializer_repeat1] = STATE(4409), + [aux_sym__parameter_type_with_modifiers_repeat1] = STATE(3426), + [aux_sym__lambda_expression_init_repeat1] = STATE(3435), + [sym__identifier_token] = ACTIONS(2965), + [anon_sym_alias] = ACTIONS(2969), + [anon_sym_global] = ACTIONS(2969), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(4675), + [anon_sym_LPAREN] = ACTIONS(3786), + [anon_sym_ref] = ACTIONS(4677), + [anon_sym_delegate] = ACTIONS(3438), + [anon_sym_async] = ACTIONS(1045), + [anon_sym_file] = ACTIONS(2969), + [anon_sym_readonly] = ACTIONS(1097), + [anon_sym_in] = ACTIONS(1097), + [anon_sym_out] = ACTIONS(1097), + [anon_sym_where] = ACTIONS(2969), + [anon_sym_notnull] = ACTIONS(2969), + [anon_sym_unmanaged] = ACTIONS(2969), + [anon_sym_this] = ACTIONS(1097), + [anon_sym_scoped] = ACTIONS(4679), + [anon_sym_params] = ACTIONS(4681), + [anon_sym_var] = ACTIONS(2995), + [sym_predefined_type] = ACTIONS(2997), + [anon_sym_yield] = ACTIONS(2969), + [anon_sym_when] = ACTIONS(2969), + [anon_sym_from] = ACTIONS(2969), + [anon_sym_into] = ACTIONS(2969), + [anon_sym_join] = ACTIONS(2969), + [anon_sym_on] = ACTIONS(2969), + [anon_sym_equals] = ACTIONS(2969), + [anon_sym_let] = ACTIONS(2969), + [anon_sym_orderby] = ACTIONS(2969), + [anon_sym_ascending] = ACTIONS(2969), + [anon_sym_descending] = ACTIONS(2969), + [anon_sym_group] = ACTIONS(2969), + [anon_sym_by] = ACTIONS(2969), + [anon_sym_select] = ACTIONS(2969), + [aux_sym_preproc_if_token1] = ACTIONS(4683), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -457753,69 +457362,67 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2844), [sym_preproc_define] = STATE(2844), [sym_preproc_undef] = STATE(2844), - [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), + [sym__identifier_token] = ACTIONS(4124), + [anon_sym_alias] = ACTIONS(4124), + [anon_sym_global] = ACTIONS(4124), + [anon_sym_LBRACK] = ACTIONS(4126), + [anon_sym_COLON] = ACTIONS(4126), + [anon_sym_COMMA] = ACTIONS(4126), + [anon_sym_LPAREN] = ACTIONS(4126), + [anon_sym_file] = ACTIONS(4124), + [anon_sym_LT] = ACTIONS(4124), + [anon_sym_GT] = ACTIONS(4124), + [anon_sym_where] = ACTIONS(4124), + [anon_sym_QMARK] = ACTIONS(4124), + [anon_sym_notnull] = ACTIONS(4124), + [anon_sym_unmanaged] = ACTIONS(4124), + [anon_sym_BANG] = ACTIONS(4124), + [anon_sym_PLUS_PLUS] = ACTIONS(4126), + [anon_sym_DASH_DASH] = ACTIONS(4126), + [anon_sym_PLUS] = ACTIONS(4124), + [anon_sym_DASH] = ACTIONS(4124), + [anon_sym_STAR] = ACTIONS(4126), + [anon_sym_SLASH] = ACTIONS(4124), + [anon_sym_PERCENT] = ACTIONS(4126), + [anon_sym_CARET] = ACTIONS(4126), + [anon_sym_PIPE] = ACTIONS(4124), + [anon_sym_AMP] = ACTIONS(4124), + [anon_sym_LT_LT] = ACTIONS(4126), + [anon_sym_GT_GT] = ACTIONS(4124), + [anon_sym_GT_GT_GT] = ACTIONS(4126), + [anon_sym_EQ_EQ] = ACTIONS(4126), + [anon_sym_BANG_EQ] = ACTIONS(4126), + [anon_sym_GT_EQ] = ACTIONS(4126), + [anon_sym_LT_EQ] = ACTIONS(4126), + [anon_sym_DOT] = ACTIONS(4124), + [anon_sym_scoped] = ACTIONS(4124), + [anon_sym_var] = ACTIONS(4124), + [anon_sym_yield] = ACTIONS(4124), + [anon_sym_switch] = ACTIONS(4124), + [anon_sym_when] = ACTIONS(4124), + [sym_discard] = ACTIONS(4124), + [anon_sym_DOT_DOT] = ACTIONS(4126), + [anon_sym_and] = ACTIONS(4124), + [anon_sym_or] = ACTIONS(4124), + [anon_sym_AMP_AMP] = ACTIONS(4126), + [anon_sym_PIPE_PIPE] = ACTIONS(4126), + [anon_sym_QMARK_QMARK] = ACTIONS(4126), + [anon_sym_from] = ACTIONS(4124), + [anon_sym_into] = ACTIONS(4124), + [anon_sym_join] = ACTIONS(4124), + [anon_sym_on] = ACTIONS(4124), + [anon_sym_equals] = ACTIONS(4124), + [anon_sym_let] = ACTIONS(4124), + [anon_sym_orderby] = ACTIONS(4124), + [anon_sym_ascending] = ACTIONS(4124), + [anon_sym_descending] = ACTIONS(4124), + [anon_sym_group] = ACTIONS(4124), + [anon_sym_by] = ACTIONS(4124), + [anon_sym_select] = ACTIONS(4124), + [anon_sym_as] = ACTIONS(4124), + [anon_sym_is] = ACTIONS(4124), + [anon_sym_DASH_GT] = ACTIONS(4126), + [anon_sym_with] = ACTIONS(4124), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -457826,6 +457433,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(4126), }, [2845] = { [sym_preproc_region] = STATE(2845), @@ -457837,69 +457445,67 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2845), [sym_preproc_define] = STATE(2845), [sym_preproc_undef] = STATE(2845), - [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), + [sym__identifier_token] = ACTIONS(4112), + [anon_sym_alias] = ACTIONS(4112), + [anon_sym_global] = ACTIONS(4112), + [anon_sym_LBRACK] = ACTIONS(4114), + [anon_sym_COLON] = ACTIONS(4114), + [anon_sym_COMMA] = ACTIONS(4114), + [anon_sym_LPAREN] = ACTIONS(4114), + [anon_sym_file] = ACTIONS(4112), + [anon_sym_LT] = ACTIONS(4112), + [anon_sym_GT] = ACTIONS(4112), + [anon_sym_where] = ACTIONS(4112), + [anon_sym_QMARK] = ACTIONS(4112), + [anon_sym_notnull] = ACTIONS(4112), + [anon_sym_unmanaged] = ACTIONS(4112), + [anon_sym_BANG] = ACTIONS(4112), + [anon_sym_PLUS_PLUS] = ACTIONS(4114), + [anon_sym_DASH_DASH] = ACTIONS(4114), + [anon_sym_PLUS] = ACTIONS(4112), + [anon_sym_DASH] = ACTIONS(4112), + [anon_sym_STAR] = ACTIONS(4114), + [anon_sym_SLASH] = ACTIONS(4112), + [anon_sym_PERCENT] = ACTIONS(4114), + [anon_sym_CARET] = ACTIONS(4114), + [anon_sym_PIPE] = ACTIONS(4112), + [anon_sym_AMP] = ACTIONS(4112), + [anon_sym_LT_LT] = ACTIONS(4114), + [anon_sym_GT_GT] = ACTIONS(4112), + [anon_sym_GT_GT_GT] = ACTIONS(4114), + [anon_sym_EQ_EQ] = ACTIONS(4114), + [anon_sym_BANG_EQ] = ACTIONS(4114), + [anon_sym_GT_EQ] = ACTIONS(4114), + [anon_sym_LT_EQ] = ACTIONS(4114), + [anon_sym_DOT] = ACTIONS(4112), + [anon_sym_scoped] = ACTIONS(4112), + [anon_sym_var] = ACTIONS(4112), + [anon_sym_yield] = ACTIONS(4112), + [anon_sym_switch] = ACTIONS(4112), + [anon_sym_when] = ACTIONS(4112), + [sym_discard] = ACTIONS(4112), + [anon_sym_DOT_DOT] = ACTIONS(4114), + [anon_sym_and] = ACTIONS(4112), + [anon_sym_or] = ACTIONS(4112), + [anon_sym_AMP_AMP] = ACTIONS(4114), + [anon_sym_PIPE_PIPE] = ACTIONS(4114), + [anon_sym_QMARK_QMARK] = ACTIONS(4114), + [anon_sym_from] = ACTIONS(4112), + [anon_sym_into] = ACTIONS(4112), + [anon_sym_join] = ACTIONS(4112), + [anon_sym_on] = ACTIONS(4112), + [anon_sym_equals] = ACTIONS(4112), + [anon_sym_let] = ACTIONS(4112), + [anon_sym_orderby] = ACTIONS(4112), + [anon_sym_ascending] = ACTIONS(4112), + [anon_sym_descending] = ACTIONS(4112), + [anon_sym_group] = ACTIONS(4112), + [anon_sym_by] = ACTIONS(4112), + [anon_sym_select] = ACTIONS(4112), + [anon_sym_as] = ACTIONS(4112), + [anon_sym_is] = ACTIONS(4112), + [anon_sym_DASH_GT] = ACTIONS(4114), + [anon_sym_with] = ACTIONS(4112), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -457910,6 +457516,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(4114), }, [2846] = { [sym_preproc_region] = STATE(2846), @@ -457921,69 +457528,67 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2846), [sym_preproc_define] = STATE(2846), [sym_preproc_undef] = STATE(2846), - [sym__identifier_token] = ACTIONS(4677), - [anon_sym_extern] = ACTIONS(4677), - [anon_sym_alias] = ACTIONS(4677), - [anon_sym_global] = ACTIONS(4677), - [anon_sym_using] = ACTIONS(4677), - [anon_sym_unsafe] = ACTIONS(4677), - [anon_sym_static] = ACTIONS(4677), - [anon_sym_LBRACK] = ACTIONS(4679), - [anon_sym_LPAREN] = ACTIONS(4679), - [anon_sym_event] = ACTIONS(4677), - [anon_sym_namespace] = ACTIONS(4677), - [anon_sym_class] = ACTIONS(4677), - [anon_sym_ref] = ACTIONS(4677), - [anon_sym_struct] = ACTIONS(4677), - [anon_sym_enum] = ACTIONS(4677), - [anon_sym_RBRACE] = ACTIONS(4679), - [anon_sym_interface] = ACTIONS(4677), - [anon_sym_delegate] = ACTIONS(4677), - [anon_sym_record] = ACTIONS(4677), - [anon_sym_abstract] = ACTIONS(4677), - [anon_sym_async] = ACTIONS(4677), - [anon_sym_const] = ACTIONS(4677), - [anon_sym_file] = ACTIONS(4677), - [anon_sym_fixed] = ACTIONS(4677), - [anon_sym_internal] = ACTIONS(4677), - [anon_sym_new] = ACTIONS(4677), - [anon_sym_override] = ACTIONS(4677), - [anon_sym_partial] = ACTIONS(4677), - [anon_sym_private] = ACTIONS(4677), - [anon_sym_protected] = ACTIONS(4677), - [anon_sym_public] = ACTIONS(4677), - [anon_sym_readonly] = ACTIONS(4677), - [anon_sym_required] = ACTIONS(4677), - [anon_sym_sealed] = ACTIONS(4677), - [anon_sym_virtual] = ACTIONS(4677), - [anon_sym_volatile] = ACTIONS(4677), - [anon_sym_where] = ACTIONS(4677), - [anon_sym_notnull] = ACTIONS(4677), - [anon_sym_unmanaged] = ACTIONS(4677), - [anon_sym_TILDE] = ACTIONS(4679), - [anon_sym_implicit] = ACTIONS(4677), - [anon_sym_explicit] = ACTIONS(4677), - [anon_sym_scoped] = ACTIONS(4677), - [anon_sym_var] = ACTIONS(4677), - [sym_predefined_type] = ACTIONS(4677), - [anon_sym_yield] = ACTIONS(4677), - [anon_sym_when] = ACTIONS(4677), - [anon_sym_from] = ACTIONS(4677), - [anon_sym_into] = ACTIONS(4677), - [anon_sym_join] = ACTIONS(4677), - [anon_sym_on] = ACTIONS(4677), - [anon_sym_equals] = ACTIONS(4677), - [anon_sym_let] = ACTIONS(4677), - [anon_sym_orderby] = ACTIONS(4677), - [anon_sym_ascending] = ACTIONS(4677), - [anon_sym_descending] = ACTIONS(4677), - [anon_sym_group] = ACTIONS(4677), - [anon_sym_by] = ACTIONS(4677), - [anon_sym_select] = ACTIONS(4677), - [aux_sym_preproc_if_token1] = ACTIONS(4679), - [aux_sym_preproc_if_token3] = ACTIONS(4679), - [aux_sym_preproc_else_token1] = ACTIONS(4679), - [aux_sym_preproc_elif_token1] = ACTIONS(4679), + [sym__identifier_token] = ACTIONS(4179), + [anon_sym_alias] = ACTIONS(4179), + [anon_sym_global] = ACTIONS(4179), + [anon_sym_LBRACK] = ACTIONS(4181), + [anon_sym_COLON] = ACTIONS(4181), + [anon_sym_COMMA] = ACTIONS(4181), + [anon_sym_LPAREN] = ACTIONS(4181), + [anon_sym_file] = ACTIONS(4179), + [anon_sym_LT] = ACTIONS(4179), + [anon_sym_GT] = ACTIONS(4179), + [anon_sym_where] = ACTIONS(4179), + [anon_sym_QMARK] = ACTIONS(4179), + [anon_sym_notnull] = ACTIONS(4179), + [anon_sym_unmanaged] = ACTIONS(4179), + [anon_sym_BANG] = ACTIONS(4179), + [anon_sym_PLUS_PLUS] = ACTIONS(4181), + [anon_sym_DASH_DASH] = ACTIONS(4181), + [anon_sym_PLUS] = ACTIONS(4179), + [anon_sym_DASH] = ACTIONS(4179), + [anon_sym_STAR] = ACTIONS(4181), + [anon_sym_SLASH] = ACTIONS(4179), + [anon_sym_PERCENT] = ACTIONS(4181), + [anon_sym_CARET] = ACTIONS(4181), + [anon_sym_PIPE] = ACTIONS(4179), + [anon_sym_AMP] = ACTIONS(4179), + [anon_sym_LT_LT] = ACTIONS(4181), + [anon_sym_GT_GT] = ACTIONS(4179), + [anon_sym_GT_GT_GT] = ACTIONS(4181), + [anon_sym_EQ_EQ] = ACTIONS(4181), + [anon_sym_BANG_EQ] = ACTIONS(4181), + [anon_sym_GT_EQ] = ACTIONS(4181), + [anon_sym_LT_EQ] = ACTIONS(4181), + [anon_sym_DOT] = ACTIONS(4179), + [anon_sym_scoped] = ACTIONS(4179), + [anon_sym_var] = ACTIONS(4179), + [anon_sym_yield] = ACTIONS(4179), + [anon_sym_switch] = ACTIONS(4179), + [anon_sym_when] = ACTIONS(4179), + [sym_discard] = ACTIONS(4179), + [anon_sym_DOT_DOT] = ACTIONS(4181), + [anon_sym_and] = ACTIONS(4179), + [anon_sym_or] = ACTIONS(4179), + [anon_sym_AMP_AMP] = ACTIONS(4181), + [anon_sym_PIPE_PIPE] = ACTIONS(4181), + [anon_sym_QMARK_QMARK] = ACTIONS(4181), + [anon_sym_from] = ACTIONS(4179), + [anon_sym_into] = ACTIONS(4179), + [anon_sym_join] = ACTIONS(4179), + [anon_sym_on] = ACTIONS(4179), + [anon_sym_equals] = ACTIONS(4179), + [anon_sym_let] = ACTIONS(4179), + [anon_sym_orderby] = ACTIONS(4179), + [anon_sym_ascending] = ACTIONS(4179), + [anon_sym_descending] = ACTIONS(4179), + [anon_sym_group] = ACTIONS(4179), + [anon_sym_by] = ACTIONS(4179), + [anon_sym_select] = ACTIONS(4179), + [anon_sym_as] = ACTIONS(4179), + [anon_sym_is] = ACTIONS(4179), + [anon_sym_DASH_GT] = ACTIONS(4181), + [anon_sym_with] = ACTIONS(4179), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -457994,8 +457599,33 @@ static const uint16_t ts_parse_table[LARGE_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(4181), }, [2847] = { + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter] = STATE(6769), + [sym__parameter_array] = STATE(6785), + [sym_tuple_pattern] = STATE(6980), + [sym__name] = STATE(4369), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(4068), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(4073), + [sym_type] = STATE(6070), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_identifier] = STATE(5709), + [sym__reserved_identifier] = STATE(3654), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(2847), [sym_preproc_endregion] = STATE(2847), [sym_preproc_line] = STATE(2847), @@ -458005,69 +457635,44 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2847), [sym_preproc_define] = STATE(2847), [sym_preproc_undef] = STATE(2847), - [sym__identifier_token] = ACTIONS(4681), - [anon_sym_extern] = ACTIONS(4681), - [anon_sym_alias] = ACTIONS(4681), - [anon_sym_global] = ACTIONS(4681), - [anon_sym_using] = ACTIONS(4681), - [anon_sym_unsafe] = ACTIONS(4681), - [anon_sym_static] = ACTIONS(4681), - [anon_sym_LBRACK] = ACTIONS(4683), - [anon_sym_LPAREN] = ACTIONS(4683), - [anon_sym_event] = ACTIONS(4681), - [anon_sym_namespace] = ACTIONS(4681), - [anon_sym_class] = ACTIONS(4681), - [anon_sym_ref] = ACTIONS(4681), - [anon_sym_struct] = ACTIONS(4681), - [anon_sym_enum] = ACTIONS(4681), - [anon_sym_RBRACE] = ACTIONS(4683), - [anon_sym_interface] = ACTIONS(4681), - [anon_sym_delegate] = ACTIONS(4681), - [anon_sym_record] = ACTIONS(4681), - [anon_sym_abstract] = ACTIONS(4681), - [anon_sym_async] = ACTIONS(4681), - [anon_sym_const] = ACTIONS(4681), - [anon_sym_file] = ACTIONS(4681), - [anon_sym_fixed] = ACTIONS(4681), - [anon_sym_internal] = ACTIONS(4681), - [anon_sym_new] = ACTIONS(4681), - [anon_sym_override] = ACTIONS(4681), - [anon_sym_partial] = ACTIONS(4681), - [anon_sym_private] = ACTIONS(4681), - [anon_sym_protected] = ACTIONS(4681), - [anon_sym_public] = ACTIONS(4681), - [anon_sym_readonly] = ACTIONS(4681), - [anon_sym_required] = ACTIONS(4681), - [anon_sym_sealed] = ACTIONS(4681), - [anon_sym_virtual] = ACTIONS(4681), - [anon_sym_volatile] = ACTIONS(4681), - [anon_sym_where] = ACTIONS(4681), - [anon_sym_notnull] = ACTIONS(4681), - [anon_sym_unmanaged] = ACTIONS(4681), - [anon_sym_TILDE] = ACTIONS(4683), - [anon_sym_implicit] = ACTIONS(4681), - [anon_sym_explicit] = ACTIONS(4681), - [anon_sym_scoped] = ACTIONS(4681), - [anon_sym_var] = ACTIONS(4681), - [sym_predefined_type] = ACTIONS(4681), - [anon_sym_yield] = ACTIONS(4681), - [anon_sym_when] = ACTIONS(4681), - [anon_sym_from] = ACTIONS(4681), - [anon_sym_into] = ACTIONS(4681), - [anon_sym_join] = ACTIONS(4681), - [anon_sym_on] = ACTIONS(4681), - [anon_sym_equals] = ACTIONS(4681), - [anon_sym_let] = ACTIONS(4681), - [anon_sym_orderby] = ACTIONS(4681), - [anon_sym_ascending] = ACTIONS(4681), - [anon_sym_descending] = ACTIONS(4681), - [anon_sym_group] = ACTIONS(4681), - [anon_sym_by] = ACTIONS(4681), - [anon_sym_select] = ACTIONS(4681), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3044), + [aux_sym__parameter_type_with_modifiers_repeat1] = STATE(3452), + [sym__identifier_token] = ACTIONS(2965), + [anon_sym_alias] = ACTIONS(2969), + [anon_sym_global] = ACTIONS(2969), + [anon_sym_LBRACK] = ACTIONS(4675), + [anon_sym_LPAREN] = ACTIONS(4685), + [anon_sym_RPAREN] = ACTIONS(2625), + [anon_sym_ref] = ACTIONS(4677), + [anon_sym_delegate] = ACTIONS(3438), + [anon_sym_file] = ACTIONS(2969), + [anon_sym_readonly] = ACTIONS(1097), + [anon_sym_in] = ACTIONS(1097), + [anon_sym_out] = ACTIONS(1097), + [anon_sym_where] = ACTIONS(2969), + [anon_sym_notnull] = ACTIONS(2969), + [anon_sym_unmanaged] = ACTIONS(2969), + [anon_sym_this] = ACTIONS(1097), + [anon_sym_scoped] = ACTIONS(4687), + [anon_sym_params] = ACTIONS(1111), + [anon_sym_var] = ACTIONS(2995), + [sym_predefined_type] = ACTIONS(2997), + [anon_sym_yield] = ACTIONS(2969), + [anon_sym_when] = ACTIONS(2969), + [sym_discard] = ACTIONS(4689), + [anon_sym_from] = ACTIONS(2969), + [anon_sym_into] = ACTIONS(2969), + [anon_sym_join] = ACTIONS(2969), + [anon_sym_on] = ACTIONS(2969), + [anon_sym_equals] = ACTIONS(2969), + [anon_sym_let] = ACTIONS(2969), + [anon_sym_orderby] = ACTIONS(2969), + [anon_sym_ascending] = ACTIONS(2969), + [anon_sym_descending] = ACTIONS(2969), + [anon_sym_group] = ACTIONS(2969), + [anon_sym_by] = ACTIONS(2969), + [anon_sym_select] = ACTIONS(2969), [aux_sym_preproc_if_token1] = ACTIONS(4683), - [aux_sym_preproc_if_token3] = ACTIONS(4683), - [aux_sym_preproc_else_token1] = ACTIONS(4683), - [aux_sym_preproc_elif_token1] = ACTIONS(4683), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -458080,6 +457685,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2848] = { + [sym_preproc_else_in_attribute_list] = STATE(7339), + [sym_preproc_elif_in_attribute_list] = STATE(7339), [sym_preproc_region] = STATE(2848), [sym_preproc_endregion] = STATE(2848), [sym_preproc_line] = STATE(2848), @@ -458089,69 +457696,66 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2848), [sym_preproc_define] = STATE(2848), [sym_preproc_undef] = STATE(2848), - [sym__identifier_token] = ACTIONS(4685), - [anon_sym_extern] = ACTIONS(4685), - [anon_sym_alias] = ACTIONS(4685), - [anon_sym_global] = ACTIONS(4685), - [anon_sym_using] = ACTIONS(4685), - [anon_sym_unsafe] = ACTIONS(4685), - [anon_sym_static] = ACTIONS(4685), - [anon_sym_LBRACK] = ACTIONS(4687), - [anon_sym_LPAREN] = ACTIONS(4687), - [anon_sym_event] = ACTIONS(4685), - [anon_sym_namespace] = ACTIONS(4685), - [anon_sym_class] = ACTIONS(4685), - [anon_sym_ref] = ACTIONS(4685), - [anon_sym_struct] = ACTIONS(4685), - [anon_sym_enum] = ACTIONS(4685), - [anon_sym_RBRACE] = ACTIONS(4687), - [anon_sym_interface] = ACTIONS(4685), - [anon_sym_delegate] = ACTIONS(4685), - [anon_sym_record] = ACTIONS(4685), - [anon_sym_abstract] = ACTIONS(4685), - [anon_sym_async] = ACTIONS(4685), - [anon_sym_const] = ACTIONS(4685), - [anon_sym_file] = ACTIONS(4685), - [anon_sym_fixed] = ACTIONS(4685), - [anon_sym_internal] = ACTIONS(4685), - [anon_sym_new] = ACTIONS(4685), - [anon_sym_override] = ACTIONS(4685), - [anon_sym_partial] = ACTIONS(4685), - [anon_sym_private] = ACTIONS(4685), - [anon_sym_protected] = ACTIONS(4685), - [anon_sym_public] = ACTIONS(4685), - [anon_sym_readonly] = ACTIONS(4685), - [anon_sym_required] = ACTIONS(4685), - [anon_sym_sealed] = ACTIONS(4685), - [anon_sym_virtual] = ACTIONS(4685), - [anon_sym_volatile] = ACTIONS(4685), - [anon_sym_where] = ACTIONS(4685), - [anon_sym_notnull] = ACTIONS(4685), - [anon_sym_unmanaged] = ACTIONS(4685), - [anon_sym_TILDE] = ACTIONS(4687), - [anon_sym_implicit] = ACTIONS(4685), - [anon_sym_explicit] = ACTIONS(4685), - [anon_sym_scoped] = ACTIONS(4685), - [anon_sym_var] = ACTIONS(4685), - [sym_predefined_type] = ACTIONS(4685), - [anon_sym_yield] = ACTIONS(4685), - [anon_sym_when] = ACTIONS(4685), - [anon_sym_from] = ACTIONS(4685), - [anon_sym_into] = ACTIONS(4685), - [anon_sym_join] = ACTIONS(4685), - [anon_sym_on] = ACTIONS(4685), - [anon_sym_equals] = ACTIONS(4685), - [anon_sym_let] = ACTIONS(4685), - [anon_sym_orderby] = ACTIONS(4685), - [anon_sym_ascending] = ACTIONS(4685), - [anon_sym_descending] = ACTIONS(4685), - [anon_sym_group] = ACTIONS(4685), - [anon_sym_by] = ACTIONS(4685), - [anon_sym_select] = ACTIONS(4685), - [aux_sym_preproc_if_token1] = ACTIONS(4687), - [aux_sym_preproc_if_token3] = ACTIONS(4687), - [aux_sym_preproc_else_token1] = ACTIONS(4687), - [aux_sym_preproc_elif_token1] = ACTIONS(4687), + [sym__identifier_token] = ACTIONS(4665), + [anon_sym_extern] = ACTIONS(4665), + [anon_sym_alias] = ACTIONS(4665), + [anon_sym_global] = 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_class] = ACTIONS(4665), + [anon_sym_ref] = ACTIONS(4665), + [anon_sym_struct] = ACTIONS(4665), + [anon_sym_enum] = ACTIONS(4665), + [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(4691), + [aux_sym_preproc_else_token1] = ACTIONS(4671), + [aux_sym_preproc_elif_token1] = ACTIONS(4673), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -458173,79 +457777,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2849), [sym_preproc_define] = STATE(2849), [sym_preproc_undef] = STATE(2849), - [sym__identifier_token] = ACTIONS(3650), - [anon_sym_alias] = ACTIONS(3650), - [anon_sym_global] = ACTIONS(3650), - [anon_sym_LBRACK] = ACTIONS(3652), - [anon_sym_COLON] = ACTIONS(3652), - [anon_sym_COMMA] = ACTIONS(3652), - [anon_sym_LPAREN] = ACTIONS(3652), - [anon_sym_LBRACE] = ACTIONS(3652), - [anon_sym_file] = ACTIONS(3650), - [anon_sym_LT] = ACTIONS(3650), - [anon_sym_GT] = ACTIONS(3650), - [anon_sym_where] = ACTIONS(3650), - [anon_sym_QMARK] = ACTIONS(3650), - [anon_sym_notnull] = ACTIONS(3650), - [anon_sym_unmanaged] = ACTIONS(3650), - [anon_sym_BANG] = ACTIONS(3650), - [anon_sym_PLUS_PLUS] = ACTIONS(3652), - [anon_sym_DASH_DASH] = ACTIONS(3652), - [anon_sym_PLUS] = ACTIONS(3650), - [anon_sym_DASH] = ACTIONS(3650), - [anon_sym_STAR] = ACTIONS(3652), - [anon_sym_SLASH] = ACTIONS(3650), - [anon_sym_PERCENT] = ACTIONS(3652), - [anon_sym_CARET] = ACTIONS(3652), - [anon_sym_PIPE] = ACTIONS(3650), - [anon_sym_AMP] = ACTIONS(3650), - [anon_sym_LT_LT] = ACTIONS(3652), - [anon_sym_GT_GT] = ACTIONS(3650), - [anon_sym_GT_GT_GT] = ACTIONS(3652), - [anon_sym_EQ_EQ] = ACTIONS(3652), - [anon_sym_BANG_EQ] = ACTIONS(3652), - [anon_sym_GT_EQ] = ACTIONS(3652), - [anon_sym_LT_EQ] = ACTIONS(3652), - [anon_sym_DOT] = ACTIONS(3650), - [anon_sym_scoped] = ACTIONS(3650), - [anon_sym_var] = ACTIONS(3650), - [anon_sym_yield] = ACTIONS(3650), - [anon_sym_switch] = ACTIONS(3650), - [anon_sym_when] = ACTIONS(3650), - [sym_discard] = ACTIONS(3650), - [anon_sym_DOT_DOT] = ACTIONS(3652), - [anon_sym_and] = ACTIONS(3650), - [anon_sym_or] = ACTIONS(3650), - [anon_sym_AMP_AMP] = ACTIONS(3652), - [anon_sym_PIPE_PIPE] = ACTIONS(3652), - [anon_sym_QMARK_QMARK] = ACTIONS(3652), - [anon_sym_from] = ACTIONS(3650), - [anon_sym_into] = ACTIONS(3650), - [anon_sym_join] = ACTIONS(3650), - [anon_sym_on] = ACTIONS(3650), - [anon_sym_equals] = ACTIONS(3650), - [anon_sym_let] = ACTIONS(3650), - [anon_sym_orderby] = ACTIONS(3650), - [anon_sym_ascending] = ACTIONS(3650), - [anon_sym_descending] = ACTIONS(3650), - [anon_sym_group] = ACTIONS(3650), - [anon_sym_by] = ACTIONS(3650), - [anon_sym_select] = ACTIONS(3650), - [anon_sym_as] = ACTIONS(3650), - [anon_sym_is] = ACTIONS(3650), - [anon_sym_DASH_GT] = ACTIONS(3652), - [anon_sym_with] = ACTIONS(3650), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_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(3652), + [sym__identifier_token] = ACTIONS(3961), + [anon_sym_alias] = ACTIONS(3961), + [anon_sym_global] = ACTIONS(3961), + [anon_sym_LBRACK] = ACTIONS(4033), + [anon_sym_LPAREN] = ACTIONS(3963), + [anon_sym_LBRACE] = ACTIONS(3963), + [anon_sym_file] = ACTIONS(3961), + [anon_sym_LT] = ACTIONS(3961), + [anon_sym_GT] = ACTIONS(3961), + [anon_sym_where] = ACTIONS(3961), + [anon_sym_QMARK] = ACTIONS(4036), + [anon_sym_notnull] = ACTIONS(3961), + [anon_sym_unmanaged] = ACTIONS(3961), + [anon_sym_BANG] = ACTIONS(3961), + [anon_sym_PLUS_PLUS] = ACTIONS(3963), + [anon_sym_DASH_DASH] = ACTIONS(3963), + [anon_sym_PLUS] = ACTIONS(3961), + [anon_sym_DASH] = ACTIONS(3961), + [anon_sym_STAR] = ACTIONS(4039), + [anon_sym_SLASH] = ACTIONS(3961), + [anon_sym_PERCENT] = ACTIONS(3963), + [anon_sym_CARET] = ACTIONS(3963), + [anon_sym_PIPE] = ACTIONS(3961), + [anon_sym_AMP] = ACTIONS(3961), + [anon_sym_LT_LT] = ACTIONS(3963), + [anon_sym_GT_GT] = ACTIONS(3961), + [anon_sym_GT_GT_GT] = ACTIONS(3963), + [anon_sym_EQ_EQ] = ACTIONS(3963), + [anon_sym_BANG_EQ] = ACTIONS(3963), + [anon_sym_GT_EQ] = ACTIONS(3963), + [anon_sym_LT_EQ] = ACTIONS(3963), + [anon_sym_DOT] = ACTIONS(4693), + [anon_sym_scoped] = ACTIONS(3961), + [anon_sym_EQ_GT] = ACTIONS(3963), + [anon_sym_var] = ACTIONS(3961), + [anon_sym_yield] = ACTIONS(3961), + [anon_sym_switch] = ACTIONS(3961), + [anon_sym_when] = ACTIONS(3961), + [sym_discard] = ACTIONS(3961), + [anon_sym_DOT_DOT] = ACTIONS(3963), + [anon_sym_and] = ACTIONS(3961), + [anon_sym_or] = ACTIONS(3961), + [anon_sym_AMP_AMP] = ACTIONS(3963), + [anon_sym_PIPE_PIPE] = ACTIONS(3963), + [anon_sym_QMARK_QMARK] = ACTIONS(3963), + [anon_sym_from] = ACTIONS(3961), + [anon_sym_into] = ACTIONS(3961), + [anon_sym_join] = ACTIONS(3961), + [anon_sym_on] = ACTIONS(3961), + [anon_sym_equals] = ACTIONS(3961), + [anon_sym_let] = ACTIONS(3961), + [anon_sym_orderby] = ACTIONS(3961), + [anon_sym_ascending] = ACTIONS(3961), + [anon_sym_descending] = ACTIONS(3961), + [anon_sym_group] = ACTIONS(3961), + [anon_sym_by] = ACTIONS(3961), + [anon_sym_select] = ACTIONS(3961), + [anon_sym_as] = ACTIONS(3961), + [anon_sym_is] = ACTIONS(3961), + [anon_sym_DASH_GT] = ACTIONS(4044), + [anon_sym_with] = ACTIONS(3961), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), }, [2850] = { [sym_preproc_region] = STATE(2850), @@ -458257,67 +457859,67 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2850), [sym_preproc_define] = STATE(2850), [sym_preproc_undef] = STATE(2850), - [sym__identifier_token] = ACTIONS(4140), - [anon_sym_alias] = ACTIONS(4140), - [anon_sym_global] = ACTIONS(4140), - [anon_sym_LBRACK] = ACTIONS(4142), - [anon_sym_COLON] = ACTIONS(4142), - [anon_sym_COMMA] = ACTIONS(4142), - [anon_sym_LPAREN] = ACTIONS(4142), - [anon_sym_file] = ACTIONS(4140), - [anon_sym_LT] = ACTIONS(4140), - [anon_sym_GT] = ACTIONS(4140), - [anon_sym_where] = ACTIONS(4140), - [anon_sym_QMARK] = ACTIONS(4140), - [anon_sym_notnull] = ACTIONS(4140), - [anon_sym_unmanaged] = ACTIONS(4140), - [anon_sym_BANG] = ACTIONS(4140), - [anon_sym_PLUS_PLUS] = ACTIONS(4142), - [anon_sym_DASH_DASH] = ACTIONS(4142), - [anon_sym_PLUS] = ACTIONS(4140), - [anon_sym_DASH] = ACTIONS(4140), - [anon_sym_STAR] = ACTIONS(4142), - [anon_sym_SLASH] = ACTIONS(4140), - [anon_sym_PERCENT] = ACTIONS(4142), - [anon_sym_CARET] = ACTIONS(4142), - [anon_sym_PIPE] = ACTIONS(4140), - [anon_sym_AMP] = ACTIONS(4140), - [anon_sym_LT_LT] = ACTIONS(4142), - [anon_sym_GT_GT] = ACTIONS(4140), - [anon_sym_GT_GT_GT] = ACTIONS(4142), - [anon_sym_EQ_EQ] = ACTIONS(4142), - [anon_sym_BANG_EQ] = ACTIONS(4142), - [anon_sym_GT_EQ] = ACTIONS(4142), - [anon_sym_LT_EQ] = ACTIONS(4142), - [anon_sym_DOT] = ACTIONS(4140), - [anon_sym_scoped] = ACTIONS(4140), - [anon_sym_var] = ACTIONS(4140), - [anon_sym_yield] = ACTIONS(4140), - [anon_sym_switch] = ACTIONS(4140), - [anon_sym_when] = ACTIONS(4140), - [sym_discard] = ACTIONS(4140), - [anon_sym_DOT_DOT] = ACTIONS(4142), - [anon_sym_and] = ACTIONS(4140), - [anon_sym_or] = ACTIONS(4140), - [anon_sym_AMP_AMP] = ACTIONS(4142), - [anon_sym_PIPE_PIPE] = ACTIONS(4142), - [anon_sym_QMARK_QMARK] = ACTIONS(4142), - [anon_sym_from] = ACTIONS(4140), - [anon_sym_into] = ACTIONS(4140), - [anon_sym_join] = ACTIONS(4140), - [anon_sym_on] = ACTIONS(4140), - [anon_sym_equals] = ACTIONS(4140), - [anon_sym_let] = ACTIONS(4140), - [anon_sym_orderby] = ACTIONS(4140), - [anon_sym_ascending] = ACTIONS(4140), - [anon_sym_descending] = ACTIONS(4140), - [anon_sym_group] = ACTIONS(4140), - [anon_sym_by] = ACTIONS(4140), - [anon_sym_select] = ACTIONS(4140), - [anon_sym_as] = ACTIONS(4140), - [anon_sym_is] = ACTIONS(4140), - [anon_sym_DASH_GT] = ACTIONS(4142), - [anon_sym_with] = ACTIONS(4140), + [sym__identifier_token] = ACTIONS(3961), + [anon_sym_alias] = ACTIONS(3961), + [anon_sym_global] = ACTIONS(3961), + [anon_sym_LBRACK] = ACTIONS(4033), + [anon_sym_COLON] = ACTIONS(3963), + [anon_sym_LPAREN] = ACTIONS(3963), + [anon_sym_LBRACE] = ACTIONS(3963), + [anon_sym_file] = ACTIONS(3961), + [anon_sym_LT] = ACTIONS(3961), + [anon_sym_GT] = ACTIONS(3961), + [anon_sym_where] = ACTIONS(3961), + [anon_sym_QMARK] = ACTIONS(4036), + [anon_sym_notnull] = ACTIONS(3961), + [anon_sym_unmanaged] = ACTIONS(3961), + [anon_sym_BANG] = ACTIONS(3961), + [anon_sym_PLUS_PLUS] = ACTIONS(3963), + [anon_sym_DASH_DASH] = ACTIONS(3963), + [anon_sym_PLUS] = ACTIONS(3961), + [anon_sym_DASH] = ACTIONS(3961), + [anon_sym_STAR] = ACTIONS(4039), + [anon_sym_SLASH] = ACTIONS(3961), + [anon_sym_PERCENT] = ACTIONS(3963), + [anon_sym_CARET] = ACTIONS(3963), + [anon_sym_PIPE] = ACTIONS(3961), + [anon_sym_AMP] = ACTIONS(3961), + [anon_sym_LT_LT] = ACTIONS(3963), + [anon_sym_GT_GT] = ACTIONS(3961), + [anon_sym_GT_GT_GT] = ACTIONS(3963), + [anon_sym_EQ_EQ] = ACTIONS(3963), + [anon_sym_BANG_EQ] = ACTIONS(3963), + [anon_sym_GT_EQ] = ACTIONS(3963), + [anon_sym_LT_EQ] = ACTIONS(3963), + [anon_sym_DOT] = ACTIONS(4695), + [anon_sym_scoped] = ACTIONS(3961), + [anon_sym_var] = ACTIONS(3961), + [anon_sym_yield] = ACTIONS(3961), + [anon_sym_switch] = ACTIONS(3961), + [anon_sym_when] = ACTIONS(3961), + [sym_discard] = ACTIONS(3961), + [anon_sym_DOT_DOT] = ACTIONS(3963), + [anon_sym_and] = ACTIONS(3961), + [anon_sym_or] = ACTIONS(3961), + [anon_sym_AMP_AMP] = ACTIONS(3963), + [anon_sym_PIPE_PIPE] = ACTIONS(3963), + [anon_sym_QMARK_QMARK] = ACTIONS(3963), + [anon_sym_from] = ACTIONS(3961), + [anon_sym_into] = ACTIONS(3961), + [anon_sym_join] = ACTIONS(3961), + [anon_sym_on] = ACTIONS(3961), + [anon_sym_equals] = ACTIONS(3961), + [anon_sym_let] = ACTIONS(3961), + [anon_sym_orderby] = ACTIONS(3961), + [anon_sym_ascending] = ACTIONS(3961), + [anon_sym_descending] = ACTIONS(3961), + [anon_sym_group] = ACTIONS(3961), + [anon_sym_by] = ACTIONS(3961), + [anon_sym_select] = ACTIONS(3961), + [anon_sym_as] = ACTIONS(3961), + [anon_sym_is] = ACTIONS(3961), + [anon_sym_DASH_GT] = ACTIONS(4094), + [anon_sym_with] = ACTIONS(3961), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -458328,7 +457930,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(4142), }, [2851] = { [sym_preproc_region] = STATE(2851), @@ -458340,67 +457941,67 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2851), [sym_preproc_define] = STATE(2851), [sym_preproc_undef] = STATE(2851), - [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_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), + [sym__identifier_token] = ACTIONS(3961), + [anon_sym_alias] = ACTIONS(3961), + [anon_sym_global] = ACTIONS(3961), + [anon_sym_LBRACK] = ACTIONS(4033), + [anon_sym_COMMA] = ACTIONS(3963), + [anon_sym_LPAREN] = ACTIONS(3963), + [anon_sym_LBRACE] = ACTIONS(3963), + [anon_sym_file] = ACTIONS(3961), + [anon_sym_LT] = ACTIONS(3961), + [anon_sym_GT] = ACTIONS(3961), + [anon_sym_where] = ACTIONS(3961), + [anon_sym_QMARK] = ACTIONS(4036), + [anon_sym_notnull] = ACTIONS(3961), + [anon_sym_unmanaged] = ACTIONS(3961), + [anon_sym_BANG] = ACTIONS(3961), + [anon_sym_PLUS_PLUS] = ACTIONS(3963), + [anon_sym_DASH_DASH] = ACTIONS(3963), + [anon_sym_PLUS] = ACTIONS(3961), + [anon_sym_DASH] = ACTIONS(3961), + [anon_sym_STAR] = ACTIONS(4039), + [anon_sym_SLASH] = ACTIONS(3961), + [anon_sym_PERCENT] = ACTIONS(3963), + [anon_sym_CARET] = ACTIONS(3963), + [anon_sym_PIPE] = ACTIONS(3961), + [anon_sym_AMP] = ACTIONS(3961), + [anon_sym_LT_LT] = ACTIONS(3963), + [anon_sym_GT_GT] = ACTIONS(3961), + [anon_sym_GT_GT_GT] = ACTIONS(3963), + [anon_sym_EQ_EQ] = ACTIONS(3963), + [anon_sym_BANG_EQ] = ACTIONS(3963), + [anon_sym_GT_EQ] = ACTIONS(3963), + [anon_sym_LT_EQ] = ACTIONS(3963), + [anon_sym_DOT] = ACTIONS(4697), + [anon_sym_scoped] = ACTIONS(3961), + [anon_sym_var] = ACTIONS(3961), + [anon_sym_yield] = ACTIONS(3961), + [anon_sym_switch] = ACTIONS(3961), + [anon_sym_when] = ACTIONS(3961), + [sym_discard] = ACTIONS(3961), + [anon_sym_DOT_DOT] = ACTIONS(3963), + [anon_sym_and] = ACTIONS(3961), + [anon_sym_or] = ACTIONS(3961), + [anon_sym_AMP_AMP] = ACTIONS(3963), + [anon_sym_PIPE_PIPE] = ACTIONS(3963), + [anon_sym_QMARK_QMARK] = ACTIONS(3963), + [anon_sym_from] = ACTIONS(3961), + [anon_sym_into] = ACTIONS(3961), + [anon_sym_join] = ACTIONS(3961), + [anon_sym_on] = ACTIONS(3961), + [anon_sym_equals] = ACTIONS(3961), + [anon_sym_let] = ACTIONS(3961), + [anon_sym_orderby] = ACTIONS(3961), + [anon_sym_ascending] = ACTIONS(3961), + [anon_sym_descending] = ACTIONS(3961), + [anon_sym_group] = ACTIONS(3961), + [anon_sym_by] = ACTIONS(3961), + [anon_sym_select] = ACTIONS(3961), + [anon_sym_as] = ACTIONS(3961), + [anon_sym_is] = ACTIONS(3961), + [anon_sym_DASH_GT] = ACTIONS(4699), + [anon_sym_with] = ACTIONS(3961), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -458411,32 +458012,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(4156), }, [2852] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym__name] = STATE(4390), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(4096), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(4109), - [sym_type] = STATE(5923), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym__lambda_parameters] = STATE(7489), - [sym_identifier] = STATE(5664), - [sym__reserved_identifier] = STATE(3691), - [sym_preproc_if_in_attribute_list] = STATE(5576), [sym_preproc_region] = STATE(2852), [sym_preproc_endregion] = STATE(2852), [sym_preproc_line] = STATE(2852), @@ -458446,45 +458023,67 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2852), [sym_preproc_define] = STATE(2852), [sym_preproc_undef] = STATE(2852), - [aux_sym__class_declaration_initializer_repeat1] = STATE(4491), - [aux_sym__parameter_type_with_modifiers_repeat1] = STATE(3478), - [aux_sym__lambda_expression_init_repeat1] = STATE(3498), - [sym__identifier_token] = ACTIONS(2967), - [anon_sym_alias] = ACTIONS(2971), - [anon_sym_global] = ACTIONS(2971), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(4689), - [anon_sym_LPAREN] = ACTIONS(3794), - [anon_sym_ref] = ACTIONS(4691), - [anon_sym_delegate] = ACTIONS(3454), - [anon_sym_async] = ACTIONS(1047), - [anon_sym_file] = ACTIONS(2971), - [anon_sym_readonly] = ACTIONS(1103), - [anon_sym_in] = ACTIONS(1103), - [anon_sym_out] = ACTIONS(1103), - [anon_sym_where] = ACTIONS(2971), - [anon_sym_notnull] = ACTIONS(2971), - [anon_sym_unmanaged] = ACTIONS(2971), - [anon_sym_this] = ACTIONS(1103), - [anon_sym_scoped] = ACTIONS(4693), - [anon_sym_params] = ACTIONS(4695), - [anon_sym_var] = ACTIONS(2999), - [sym_predefined_type] = ACTIONS(3001), - [anon_sym_yield] = ACTIONS(2971), - [anon_sym_when] = ACTIONS(2971), - [anon_sym_from] = ACTIONS(2971), - [anon_sym_into] = ACTIONS(2971), - [anon_sym_join] = ACTIONS(2971), - [anon_sym_on] = ACTIONS(2971), - [anon_sym_equals] = ACTIONS(2971), - [anon_sym_let] = ACTIONS(2971), - [anon_sym_orderby] = ACTIONS(2971), - [anon_sym_ascending] = ACTIONS(2971), - [anon_sym_descending] = ACTIONS(2971), - [anon_sym_group] = ACTIONS(2971), - [anon_sym_by] = ACTIONS(2971), - [anon_sym_select] = ACTIONS(2971), - [aux_sym_preproc_if_token1] = ACTIONS(4697), + [sym__identifier_token] = ACTIONS(3961), + [anon_sym_alias] = ACTIONS(3961), + [anon_sym_global] = ACTIONS(3961), + [anon_sym_LBRACK] = ACTIONS(4033), + [anon_sym_COMMA] = ACTIONS(3963), + [anon_sym_LPAREN] = ACTIONS(3963), + [anon_sym_LBRACE] = ACTIONS(3963), + [anon_sym_file] = ACTIONS(3961), + [anon_sym_LT] = ACTIONS(3961), + [anon_sym_GT] = ACTIONS(3961), + [anon_sym_where] = ACTIONS(3961), + [anon_sym_QMARK] = ACTIONS(4036), + [anon_sym_notnull] = ACTIONS(3961), + [anon_sym_unmanaged] = ACTIONS(3961), + [anon_sym_BANG] = ACTIONS(3961), + [anon_sym_PLUS_PLUS] = ACTIONS(3963), + [anon_sym_DASH_DASH] = ACTIONS(3963), + [anon_sym_PLUS] = ACTIONS(3961), + [anon_sym_DASH] = ACTIONS(3961), + [anon_sym_STAR] = ACTIONS(4039), + [anon_sym_SLASH] = ACTIONS(3961), + [anon_sym_PERCENT] = ACTIONS(3963), + [anon_sym_CARET] = ACTIONS(3963), + [anon_sym_PIPE] = ACTIONS(3961), + [anon_sym_AMP] = ACTIONS(3961), + [anon_sym_LT_LT] = ACTIONS(3963), + [anon_sym_GT_GT] = ACTIONS(3961), + [anon_sym_GT_GT_GT] = ACTIONS(3963), + [anon_sym_EQ_EQ] = ACTIONS(3963), + [anon_sym_BANG_EQ] = ACTIONS(3963), + [anon_sym_GT_EQ] = ACTIONS(3963), + [anon_sym_LT_EQ] = ACTIONS(3963), + [anon_sym_DOT] = ACTIONS(4701), + [anon_sym_scoped] = ACTIONS(3961), + [anon_sym_var] = ACTIONS(3961), + [anon_sym_yield] = ACTIONS(3961), + [anon_sym_switch] = ACTIONS(3961), + [anon_sym_when] = ACTIONS(3961), + [sym_discard] = ACTIONS(3961), + [anon_sym_DOT_DOT] = ACTIONS(3963), + [anon_sym_and] = ACTIONS(3961), + [anon_sym_or] = ACTIONS(3961), + [anon_sym_AMP_AMP] = ACTIONS(3963), + [anon_sym_PIPE_PIPE] = ACTIONS(3963), + [anon_sym_QMARK_QMARK] = ACTIONS(3963), + [anon_sym_from] = ACTIONS(3961), + [anon_sym_into] = ACTIONS(3961), + [anon_sym_join] = ACTIONS(3961), + [anon_sym_on] = ACTIONS(3961), + [anon_sym_equals] = ACTIONS(3961), + [anon_sym_let] = ACTIONS(3961), + [anon_sym_orderby] = ACTIONS(3961), + [anon_sym_ascending] = ACTIONS(3961), + [anon_sym_descending] = ACTIONS(3961), + [anon_sym_group] = ACTIONS(3961), + [anon_sym_by] = ACTIONS(3961), + [anon_sym_select] = ACTIONS(3961), + [anon_sym_as] = ACTIONS(3961), + [anon_sym_is] = ACTIONS(3961), + [anon_sym_DASH_GT] = ACTIONS(4699), + [anon_sym_with] = ACTIONS(3961), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -458506,67 +458105,67 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2853), [sym_preproc_define] = STATE(2853), [sym_preproc_undef] = STATE(2853), - [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_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), + [sym__identifier_token] = ACTIONS(3961), + [anon_sym_alias] = ACTIONS(3961), + [anon_sym_global] = ACTIONS(3961), + [anon_sym_LBRACK] = ACTIONS(4033), + [anon_sym_COMMA] = ACTIONS(3963), + [anon_sym_LPAREN] = ACTIONS(3963), + [anon_sym_LBRACE] = ACTIONS(3963), + [anon_sym_file] = ACTIONS(3961), + [anon_sym_LT] = ACTIONS(3961), + [anon_sym_GT] = ACTIONS(3961), + [anon_sym_where] = ACTIONS(3961), + [anon_sym_QMARK] = ACTIONS(4036), + [anon_sym_notnull] = ACTIONS(3961), + [anon_sym_unmanaged] = ACTIONS(3961), + [anon_sym_BANG] = ACTIONS(3961), + [anon_sym_PLUS_PLUS] = ACTIONS(3963), + [anon_sym_DASH_DASH] = ACTIONS(3963), + [anon_sym_PLUS] = ACTIONS(3961), + [anon_sym_DASH] = ACTIONS(3961), + [anon_sym_STAR] = ACTIONS(4039), + [anon_sym_SLASH] = ACTIONS(3961), + [anon_sym_PERCENT] = ACTIONS(3963), + [anon_sym_CARET] = ACTIONS(3963), + [anon_sym_PIPE] = ACTIONS(3961), + [anon_sym_AMP] = ACTIONS(3961), + [anon_sym_LT_LT] = ACTIONS(3963), + [anon_sym_GT_GT] = ACTIONS(3961), + [anon_sym_GT_GT_GT] = ACTIONS(3963), + [anon_sym_EQ_EQ] = ACTIONS(3963), + [anon_sym_BANG_EQ] = ACTIONS(3963), + [anon_sym_GT_EQ] = ACTIONS(3963), + [anon_sym_LT_EQ] = ACTIONS(3963), + [anon_sym_DOT] = ACTIONS(4703), + [anon_sym_scoped] = ACTIONS(3961), + [anon_sym_var] = ACTIONS(3961), + [anon_sym_yield] = ACTIONS(3961), + [anon_sym_switch] = ACTIONS(3961), + [anon_sym_when] = ACTIONS(3961), + [sym_discard] = ACTIONS(3961), + [anon_sym_DOT_DOT] = ACTIONS(3963), + [anon_sym_and] = ACTIONS(3961), + [anon_sym_or] = ACTIONS(3961), + [anon_sym_AMP_AMP] = ACTIONS(3963), + [anon_sym_PIPE_PIPE] = ACTIONS(3963), + [anon_sym_QMARK_QMARK] = ACTIONS(3963), + [anon_sym_from] = ACTIONS(3961), + [anon_sym_into] = ACTIONS(3961), + [anon_sym_join] = ACTIONS(3961), + [anon_sym_on] = ACTIONS(3961), + [anon_sym_equals] = ACTIONS(3961), + [anon_sym_let] = ACTIONS(3961), + [anon_sym_orderby] = ACTIONS(3961), + [anon_sym_ascending] = ACTIONS(3961), + [anon_sym_descending] = ACTIONS(3961), + [anon_sym_group] = ACTIONS(3961), + [anon_sym_by] = ACTIONS(3961), + [anon_sym_select] = ACTIONS(3961), + [anon_sym_as] = ACTIONS(3961), + [anon_sym_is] = ACTIONS(3961), + [anon_sym_DASH_GT] = ACTIONS(4699), + [anon_sym_with] = ACTIONS(3961), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -458577,9 +458176,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(4156), }, [2854] = { + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter] = STATE(6769), + [sym__parameter_array] = STATE(6785), + [sym__name] = STATE(4369), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(4068), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(4073), + [sym_type] = STATE(6053), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_tuple_element] = STATE(7166), + [sym_identifier] = STATE(5729), + [sym__reserved_identifier] = STATE(3654), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(2854), [sym_preproc_endregion] = STATE(2854), [sym_preproc_line] = STATE(2854), @@ -458589,82 +458211,55 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2854), [sym_preproc_define] = STATE(2854), [sym_preproc_undef] = STATE(2854), - [sym__identifier_token] = ACTIONS(4195), - [anon_sym_alias] = ACTIONS(4195), - [anon_sym_global] = ACTIONS(4195), - [anon_sym_LBRACK] = ACTIONS(4197), - [anon_sym_COLON] = ACTIONS(4197), - [anon_sym_COMMA] = ACTIONS(4197), - [anon_sym_LPAREN] = ACTIONS(4197), - [anon_sym_file] = ACTIONS(4195), - [anon_sym_LT] = ACTIONS(4195), - [anon_sym_GT] = ACTIONS(4195), - [anon_sym_where] = ACTIONS(4195), - [anon_sym_QMARK] = ACTIONS(4195), - [anon_sym_notnull] = ACTIONS(4195), - [anon_sym_unmanaged] = ACTIONS(4195), - [anon_sym_BANG] = ACTIONS(4195), - [anon_sym_PLUS_PLUS] = ACTIONS(4197), - [anon_sym_DASH_DASH] = ACTIONS(4197), - [anon_sym_PLUS] = ACTIONS(4195), - [anon_sym_DASH] = ACTIONS(4195), - [anon_sym_STAR] = ACTIONS(4197), - [anon_sym_SLASH] = ACTIONS(4195), - [anon_sym_PERCENT] = ACTIONS(4197), - [anon_sym_CARET] = ACTIONS(4197), - [anon_sym_PIPE] = ACTIONS(4195), - [anon_sym_AMP] = ACTIONS(4195), - [anon_sym_LT_LT] = ACTIONS(4197), - [anon_sym_GT_GT] = ACTIONS(4195), - [anon_sym_GT_GT_GT] = ACTIONS(4197), - [anon_sym_EQ_EQ] = ACTIONS(4197), - [anon_sym_BANG_EQ] = ACTIONS(4197), - [anon_sym_GT_EQ] = ACTIONS(4197), - [anon_sym_LT_EQ] = ACTIONS(4197), - [anon_sym_DOT] = ACTIONS(4195), - [anon_sym_scoped] = ACTIONS(4195), - [anon_sym_var] = ACTIONS(4195), - [anon_sym_yield] = ACTIONS(4195), - [anon_sym_switch] = ACTIONS(4195), - [anon_sym_when] = ACTIONS(4195), - [sym_discard] = ACTIONS(4195), - [anon_sym_DOT_DOT] = ACTIONS(4197), - [anon_sym_and] = ACTIONS(4195), - [anon_sym_or] = ACTIONS(4195), - [anon_sym_AMP_AMP] = ACTIONS(4197), - [anon_sym_PIPE_PIPE] = ACTIONS(4197), - [anon_sym_QMARK_QMARK] = ACTIONS(4197), - [anon_sym_from] = ACTIONS(4195), - [anon_sym_into] = ACTIONS(4195), - [anon_sym_join] = ACTIONS(4195), - [anon_sym_on] = ACTIONS(4195), - [anon_sym_equals] = ACTIONS(4195), - [anon_sym_let] = ACTIONS(4195), - [anon_sym_orderby] = ACTIONS(4195), - [anon_sym_ascending] = ACTIONS(4195), - [anon_sym_descending] = ACTIONS(4195), - [anon_sym_group] = ACTIONS(4195), - [anon_sym_by] = ACTIONS(4195), - [anon_sym_select] = ACTIONS(4195), - [anon_sym_as] = ACTIONS(4195), - [anon_sym_is] = ACTIONS(4195), - [anon_sym_DASH_GT] = ACTIONS(4197), - [anon_sym_with] = ACTIONS(4195), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_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(4197), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3044), + [aux_sym__parameter_type_with_modifiers_repeat1] = STATE(3452), + [sym__identifier_token] = ACTIONS(2965), + [anon_sym_alias] = ACTIONS(2969), + [anon_sym_global] = ACTIONS(2969), + [anon_sym_LBRACK] = ACTIONS(4675), + [anon_sym_LPAREN] = ACTIONS(2977), + [anon_sym_RPAREN] = ACTIONS(2625), + [anon_sym_ref] = ACTIONS(4677), + [anon_sym_delegate] = ACTIONS(3438), + [anon_sym_file] = ACTIONS(2969), + [anon_sym_readonly] = ACTIONS(1097), + [anon_sym_in] = ACTIONS(1097), + [anon_sym_out] = ACTIONS(1097), + [anon_sym_where] = ACTIONS(2969), + [anon_sym_notnull] = ACTIONS(2969), + [anon_sym_unmanaged] = ACTIONS(2969), + [anon_sym_this] = ACTIONS(1097), + [anon_sym_scoped] = ACTIONS(4687), + [anon_sym_params] = ACTIONS(1111), + [anon_sym_var] = ACTIONS(4705), + [sym_predefined_type] = ACTIONS(2997), + [anon_sym_yield] = ACTIONS(2969), + [anon_sym_when] = ACTIONS(2969), + [anon_sym_from] = ACTIONS(2969), + [anon_sym_into] = ACTIONS(2969), + [anon_sym_join] = ACTIONS(2969), + [anon_sym_on] = ACTIONS(2969), + [anon_sym_equals] = ACTIONS(2969), + [anon_sym_let] = ACTIONS(2969), + [anon_sym_orderby] = ACTIONS(2969), + [anon_sym_ascending] = ACTIONS(2969), + [anon_sym_descending] = ACTIONS(2969), + [anon_sym_group] = ACTIONS(2969), + [anon_sym_by] = ACTIONS(2969), + [anon_sym_select] = ACTIONS(2969), + [aux_sym_preproc_if_token1] = ACTIONS(4683), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_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_else_in_attribute_list] = STATE(7379), - [sym_preproc_elif_in_attribute_list] = STATE(7379), [sym_preproc_region] = STATE(2855), [sym_preproc_endregion] = STATE(2855), [sym_preproc_line] = STATE(2855), @@ -458674,66 +458269,67 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2855), [sym_preproc_define] = STATE(2855), [sym_preproc_undef] = STATE(2855), - [sym__identifier_token] = ACTIONS(4699), - [anon_sym_extern] = ACTIONS(4699), - [anon_sym_alias] = ACTIONS(4699), - [anon_sym_global] = ACTIONS(4699), - [anon_sym_unsafe] = ACTIONS(4699), - [anon_sym_static] = ACTIONS(4699), - [anon_sym_LBRACK] = ACTIONS(4701), - [anon_sym_LPAREN] = ACTIONS(4701), - [anon_sym_event] = ACTIONS(4699), - [anon_sym_class] = ACTIONS(4699), - [anon_sym_ref] = ACTIONS(4699), - [anon_sym_struct] = ACTIONS(4699), - [anon_sym_enum] = ACTIONS(4699), - [anon_sym_interface] = ACTIONS(4699), - [anon_sym_delegate] = ACTIONS(4699), - [anon_sym_record] = ACTIONS(4699), - [anon_sym_abstract] = ACTIONS(4699), - [anon_sym_async] = ACTIONS(4699), - [anon_sym_const] = ACTIONS(4699), - [anon_sym_file] = ACTIONS(4699), - [anon_sym_fixed] = ACTIONS(4699), - [anon_sym_internal] = ACTIONS(4699), - [anon_sym_new] = ACTIONS(4699), - [anon_sym_override] = ACTIONS(4699), - [anon_sym_partial] = ACTIONS(4699), - [anon_sym_private] = ACTIONS(4699), - [anon_sym_protected] = ACTIONS(4699), - [anon_sym_public] = ACTIONS(4699), - [anon_sym_readonly] = ACTIONS(4699), - [anon_sym_required] = ACTIONS(4699), - [anon_sym_sealed] = ACTIONS(4699), - [anon_sym_virtual] = ACTIONS(4699), - [anon_sym_volatile] = ACTIONS(4699), - [anon_sym_where] = ACTIONS(4699), - [anon_sym_notnull] = ACTIONS(4699), - [anon_sym_unmanaged] = ACTIONS(4699), - [anon_sym_TILDE] = ACTIONS(4701), - [anon_sym_implicit] = ACTIONS(4699), - [anon_sym_explicit] = ACTIONS(4699), - [anon_sym_scoped] = ACTIONS(4699), - [anon_sym_var] = ACTIONS(4699), - [sym_predefined_type] = ACTIONS(4699), - [anon_sym_yield] = ACTIONS(4699), - [anon_sym_when] = ACTIONS(4699), - [anon_sym_from] = ACTIONS(4699), - [anon_sym_into] = ACTIONS(4699), - [anon_sym_join] = ACTIONS(4699), - [anon_sym_on] = ACTIONS(4699), - [anon_sym_equals] = ACTIONS(4699), - [anon_sym_let] = ACTIONS(4699), - [anon_sym_orderby] = ACTIONS(4699), - [anon_sym_ascending] = ACTIONS(4699), - [anon_sym_descending] = ACTIONS(4699), - [anon_sym_group] = ACTIONS(4699), - [anon_sym_by] = ACTIONS(4699), - [anon_sym_select] = ACTIONS(4699), - [aux_sym_preproc_if_token1] = ACTIONS(4701), - [aux_sym_preproc_if_token3] = ACTIONS(4703), - [aux_sym_preproc_else_token1] = ACTIONS(4705), - [aux_sym_preproc_elif_token1] = ACTIONS(4707), + [sym__identifier_token] = ACTIONS(4062), + [anon_sym_alias] = ACTIONS(4062), + [anon_sym_global] = ACTIONS(4062), + [anon_sym_LBRACK] = ACTIONS(4064), + [anon_sym_LPAREN] = ACTIONS(4064), + [anon_sym_LBRACE] = ACTIONS(4064), + [anon_sym_file] = ACTIONS(4062), + [anon_sym_LT] = ACTIONS(4062), + [anon_sym_GT] = ACTIONS(4062), + [anon_sym_where] = ACTIONS(4062), + [anon_sym_QMARK] = ACTIONS(4062), + [anon_sym_notnull] = ACTIONS(4062), + [anon_sym_unmanaged] = ACTIONS(4062), + [anon_sym_BANG] = ACTIONS(4062), + [anon_sym_PLUS_PLUS] = ACTIONS(4064), + [anon_sym_DASH_DASH] = ACTIONS(4064), + [anon_sym_PLUS] = ACTIONS(4062), + [anon_sym_DASH] = ACTIONS(4062), + [anon_sym_STAR] = ACTIONS(4064), + [anon_sym_SLASH] = ACTIONS(4062), + [anon_sym_PERCENT] = ACTIONS(4064), + [anon_sym_CARET] = ACTIONS(4064), + [anon_sym_PIPE] = ACTIONS(4062), + [anon_sym_AMP] = ACTIONS(4062), + [anon_sym_LT_LT] = ACTIONS(4064), + [anon_sym_GT_GT] = ACTIONS(4062), + [anon_sym_GT_GT_GT] = ACTIONS(4064), + [anon_sym_EQ_EQ] = ACTIONS(4064), + [anon_sym_BANG_EQ] = ACTIONS(4064), + [anon_sym_GT_EQ] = ACTIONS(4064), + [anon_sym_LT_EQ] = ACTIONS(4064), + [anon_sym_DOT] = ACTIONS(4062), + [anon_sym_scoped] = ACTIONS(4062), + [anon_sym_EQ_GT] = ACTIONS(4064), + [anon_sym_var] = ACTIONS(4062), + [anon_sym_yield] = ACTIONS(4062), + [anon_sym_switch] = ACTIONS(4062), + [anon_sym_when] = ACTIONS(4062), + [sym_discard] = ACTIONS(4062), + [anon_sym_DOT_DOT] = ACTIONS(4064), + [anon_sym_and] = ACTIONS(4062), + [anon_sym_or] = ACTIONS(4062), + [anon_sym_AMP_AMP] = ACTIONS(4064), + [anon_sym_PIPE_PIPE] = ACTIONS(4064), + [anon_sym_QMARK_QMARK] = ACTIONS(4064), + [anon_sym_from] = ACTIONS(4062), + [anon_sym_into] = ACTIONS(4062), + [anon_sym_join] = ACTIONS(4062), + [anon_sym_on] = ACTIONS(4062), + [anon_sym_equals] = ACTIONS(4062), + [anon_sym_let] = ACTIONS(4062), + [anon_sym_orderby] = ACTIONS(4062), + [anon_sym_ascending] = ACTIONS(4062), + [anon_sym_descending] = ACTIONS(4062), + [anon_sym_group] = ACTIONS(4062), + [anon_sym_by] = ACTIONS(4062), + [anon_sym_select] = ACTIONS(4062), + [anon_sym_as] = ACTIONS(4062), + [anon_sym_is] = ACTIONS(4062), + [anon_sym_DASH_GT] = ACTIONS(4064), + [anon_sym_with] = ACTIONS(4062), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -458755,104 +458351,79 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2856), [sym_preproc_define] = STATE(2856), [sym_preproc_undef] = STATE(2856), - [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_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(3961), + [anon_sym_alias] = ACTIONS(3961), + [anon_sym_global] = ACTIONS(3961), + [anon_sym_LBRACK] = ACTIONS(4033), + [anon_sym_LPAREN] = ACTIONS(3963), + [anon_sym_LBRACE] = ACTIONS(3963), + [anon_sym_file] = ACTIONS(3961), + [anon_sym_LT] = ACTIONS(3961), + [anon_sym_GT] = ACTIONS(3961), + [anon_sym_where] = ACTIONS(3961), + [anon_sym_QMARK] = ACTIONS(4036), + [anon_sym_notnull] = ACTIONS(3961), + [anon_sym_unmanaged] = ACTIONS(3961), + [anon_sym_BANG] = ACTIONS(3961), + [anon_sym_PLUS_PLUS] = ACTIONS(3963), + [anon_sym_DASH_DASH] = ACTIONS(3963), + [anon_sym_PLUS] = ACTIONS(3961), + [anon_sym_DASH] = ACTIONS(3961), + [anon_sym_STAR] = ACTIONS(4039), + [anon_sym_SLASH] = ACTIONS(3961), + [anon_sym_PERCENT] = ACTIONS(3963), + [anon_sym_CARET] = ACTIONS(3963), + [anon_sym_PIPE] = ACTIONS(3961), + [anon_sym_AMP] = ACTIONS(3961), + [anon_sym_LT_LT] = ACTIONS(3963), + [anon_sym_GT_GT] = ACTIONS(3961), + [anon_sym_GT_GT_GT] = ACTIONS(3963), + [anon_sym_EQ_EQ] = ACTIONS(3963), + [anon_sym_BANG_EQ] = ACTIONS(3963), + [anon_sym_GT_EQ] = ACTIONS(3963), + [anon_sym_LT_EQ] = ACTIONS(3963), + [anon_sym_DOT] = ACTIONS(4707), + [anon_sym_scoped] = ACTIONS(3961), + [anon_sym_EQ_GT] = ACTIONS(3963), + [anon_sym_var] = ACTIONS(3961), + [anon_sym_yield] = ACTIONS(3961), + [anon_sym_switch] = ACTIONS(3961), + [anon_sym_when] = ACTIONS(3961), + [sym_discard] = ACTIONS(3961), + [anon_sym_DOT_DOT] = ACTIONS(3963), + [anon_sym_and] = ACTIONS(3961), + [anon_sym_or] = ACTIONS(3961), + [anon_sym_AMP_AMP] = ACTIONS(3963), + [anon_sym_PIPE_PIPE] = ACTIONS(3963), + [anon_sym_QMARK_QMARK] = ACTIONS(3963), + [anon_sym_from] = ACTIONS(3961), + [anon_sym_into] = ACTIONS(3961), + [anon_sym_join] = ACTIONS(3961), + [anon_sym_on] = ACTIONS(3961), + [anon_sym_equals] = ACTIONS(3961), + [anon_sym_let] = ACTIONS(3961), + [anon_sym_orderby] = ACTIONS(3961), + [anon_sym_ascending] = ACTIONS(3961), + [anon_sym_descending] = ACTIONS(3961), + [anon_sym_group] = ACTIONS(3961), + [anon_sym_by] = ACTIONS(3961), + [anon_sym_select] = ACTIONS(3961), + [anon_sym_as] = ACTIONS(3961), + [anon_sym_is] = ACTIONS(3961), + [anon_sym_DASH_GT] = ACTIONS(4094), + [anon_sym_with] = ACTIONS(3961), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), }, [2857] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter] = STATE(6948), - [sym__parameter_array] = STATE(6996), - [sym_tuple_pattern] = STATE(6810), - [sym__name] = STATE(4390), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(4096), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(4109), - [sym_type] = STATE(6103), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_identifier] = STATE(5721), - [sym__reserved_identifier] = STATE(3691), - [sym_preproc_if_in_attribute_list] = STATE(5576), [sym_preproc_region] = STATE(2857), [sym_preproc_endregion] = STATE(2857), [sym_preproc_line] = STATE(2857), @@ -458862,44 +458433,67 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2857), [sym_preproc_define] = STATE(2857), [sym_preproc_undef] = STATE(2857), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3060), - [aux_sym__parameter_type_with_modifiers_repeat1] = STATE(3489), - [sym__identifier_token] = ACTIONS(2967), - [anon_sym_alias] = ACTIONS(2971), - [anon_sym_global] = ACTIONS(2971), - [anon_sym_LBRACK] = ACTIONS(4689), - [anon_sym_LPAREN] = ACTIONS(4709), - [anon_sym_RPAREN] = ACTIONS(2627), - [anon_sym_ref] = ACTIONS(4691), - [anon_sym_delegate] = ACTIONS(3454), - [anon_sym_file] = ACTIONS(2971), - [anon_sym_readonly] = ACTIONS(1103), - [anon_sym_in] = ACTIONS(1103), - [anon_sym_out] = ACTIONS(1103), - [anon_sym_where] = ACTIONS(2971), - [anon_sym_notnull] = ACTIONS(2971), - [anon_sym_unmanaged] = ACTIONS(2971), - [anon_sym_this] = ACTIONS(1103), - [anon_sym_scoped] = ACTIONS(4711), - [anon_sym_params] = ACTIONS(1117), - [anon_sym_var] = ACTIONS(2999), - [sym_predefined_type] = ACTIONS(3001), - [anon_sym_yield] = ACTIONS(2971), - [anon_sym_when] = ACTIONS(2971), - [sym_discard] = ACTIONS(4713), - [anon_sym_from] = ACTIONS(2971), - [anon_sym_into] = ACTIONS(2971), - [anon_sym_join] = ACTIONS(2971), - [anon_sym_on] = ACTIONS(2971), - [anon_sym_equals] = ACTIONS(2971), - [anon_sym_let] = ACTIONS(2971), - [anon_sym_orderby] = ACTIONS(2971), - [anon_sym_ascending] = ACTIONS(2971), - [anon_sym_descending] = ACTIONS(2971), - [anon_sym_group] = ACTIONS(2971), - [anon_sym_by] = ACTIONS(2971), - [anon_sym_select] = ACTIONS(2971), - [aux_sym_preproc_if_token1] = ACTIONS(4697), + [sym__identifier_token] = ACTIONS(3961), + [anon_sym_alias] = ACTIONS(3961), + [anon_sym_global] = ACTIONS(3961), + [anon_sym_LBRACK] = ACTIONS(4033), + [anon_sym_COLON] = ACTIONS(3963), + [anon_sym_LPAREN] = ACTIONS(3963), + [anon_sym_LBRACE] = ACTIONS(3963), + [anon_sym_file] = ACTIONS(3961), + [anon_sym_LT] = ACTIONS(3961), + [anon_sym_GT] = ACTIONS(3961), + [anon_sym_where] = ACTIONS(3961), + [anon_sym_QMARK] = ACTIONS(4036), + [anon_sym_notnull] = ACTIONS(3961), + [anon_sym_unmanaged] = ACTIONS(3961), + [anon_sym_BANG] = ACTIONS(3961), + [anon_sym_PLUS_PLUS] = ACTIONS(3963), + [anon_sym_DASH_DASH] = ACTIONS(3963), + [anon_sym_PLUS] = ACTIONS(3961), + [anon_sym_DASH] = ACTIONS(3961), + [anon_sym_STAR] = ACTIONS(4039), + [anon_sym_SLASH] = ACTIONS(3961), + [anon_sym_PERCENT] = ACTIONS(3963), + [anon_sym_CARET] = ACTIONS(3963), + [anon_sym_PIPE] = ACTIONS(3961), + [anon_sym_AMP] = ACTIONS(3961), + [anon_sym_LT_LT] = ACTIONS(3963), + [anon_sym_GT_GT] = ACTIONS(3961), + [anon_sym_GT_GT_GT] = ACTIONS(3963), + [anon_sym_EQ_EQ] = ACTIONS(3963), + [anon_sym_BANG_EQ] = ACTIONS(3963), + [anon_sym_GT_EQ] = ACTIONS(3963), + [anon_sym_LT_EQ] = ACTIONS(3963), + [anon_sym_DOT] = ACTIONS(4709), + [anon_sym_scoped] = ACTIONS(3961), + [anon_sym_var] = ACTIONS(3961), + [anon_sym_yield] = ACTIONS(3961), + [anon_sym_switch] = ACTIONS(3961), + [anon_sym_when] = ACTIONS(3961), + [sym_discard] = ACTIONS(3961), + [anon_sym_DOT_DOT] = ACTIONS(3963), + [anon_sym_and] = ACTIONS(3961), + [anon_sym_or] = ACTIONS(3961), + [anon_sym_AMP_AMP] = ACTIONS(3963), + [anon_sym_PIPE_PIPE] = ACTIONS(3963), + [anon_sym_QMARK_QMARK] = ACTIONS(3963), + [anon_sym_from] = ACTIONS(3961), + [anon_sym_into] = ACTIONS(3961), + [anon_sym_join] = ACTIONS(3961), + [anon_sym_on] = ACTIONS(3961), + [anon_sym_equals] = ACTIONS(3961), + [anon_sym_let] = ACTIONS(3961), + [anon_sym_orderby] = ACTIONS(3961), + [anon_sym_ascending] = ACTIONS(3961), + [anon_sym_descending] = ACTIONS(3961), + [anon_sym_group] = ACTIONS(3961), + [anon_sym_by] = ACTIONS(3961), + [anon_sym_select] = ACTIONS(3961), + [anon_sym_as] = ACTIONS(3961), + [anon_sym_is] = ACTIONS(3961), + [anon_sym_DASH_GT] = ACTIONS(4044), + [anon_sym_with] = ACTIONS(3961), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -458912,6 +458506,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2858] = { + [sym_attribute_list] = STATE(3034), + [sym__attribute_list] = STATE(2953), + [sym_preproc_if_in_attribute_list] = STATE(3034), [sym_preproc_region] = STATE(2858), [sym_preproc_endregion] = STATE(2858), [sym_preproc_line] = STATE(2858), @@ -458921,67 +458518,64 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2858), [sym_preproc_define] = STATE(2858), [sym_preproc_undef] = STATE(2858), - [sym__identifier_token] = ACTIONS(4140), - [anon_sym_alias] = ACTIONS(4140), - [anon_sym_global] = ACTIONS(4140), - [anon_sym_LBRACK] = ACTIONS(4142), - [anon_sym_COLON] = ACTIONS(4142), - [anon_sym_COMMA] = ACTIONS(4142), - [anon_sym_LPAREN] = ACTIONS(4142), - [anon_sym_file] = ACTIONS(4140), - [anon_sym_LT] = ACTIONS(4140), - [anon_sym_GT] = ACTIONS(4140), - [anon_sym_where] = ACTIONS(4140), - [anon_sym_QMARK] = ACTIONS(4140), - [anon_sym_notnull] = ACTIONS(4140), - [anon_sym_unmanaged] = ACTIONS(4140), - [anon_sym_BANG] = ACTIONS(4140), - [anon_sym_PLUS_PLUS] = ACTIONS(4142), - [anon_sym_DASH_DASH] = ACTIONS(4142), - [anon_sym_PLUS] = ACTIONS(4140), - [anon_sym_DASH] = ACTIONS(4140), - [anon_sym_STAR] = ACTIONS(4142), - [anon_sym_SLASH] = ACTIONS(4140), - [anon_sym_PERCENT] = ACTIONS(4142), - [anon_sym_CARET] = ACTIONS(4142), - [anon_sym_PIPE] = ACTIONS(4140), - [anon_sym_AMP] = ACTIONS(4140), - [anon_sym_LT_LT] = ACTIONS(4142), - [anon_sym_GT_GT] = ACTIONS(4140), - [anon_sym_GT_GT_GT] = ACTIONS(4142), - [anon_sym_EQ_EQ] = ACTIONS(4142), - [anon_sym_BANG_EQ] = ACTIONS(4142), - [anon_sym_GT_EQ] = ACTIONS(4142), - [anon_sym_LT_EQ] = ACTIONS(4142), - [anon_sym_DOT] = ACTIONS(4140), - [anon_sym_scoped] = ACTIONS(4140), - [anon_sym_var] = ACTIONS(4140), - [anon_sym_yield] = ACTIONS(4140), - [anon_sym_switch] = ACTIONS(4140), - [anon_sym_when] = ACTIONS(4140), - [sym_discard] = ACTIONS(4140), - [anon_sym_DOT_DOT] = ACTIONS(4142), - [anon_sym_and] = ACTIONS(4140), - [anon_sym_or] = ACTIONS(4140), - [anon_sym_AMP_AMP] = ACTIONS(4142), - [anon_sym_PIPE_PIPE] = ACTIONS(4142), - [anon_sym_QMARK_QMARK] = ACTIONS(4142), - [anon_sym_from] = ACTIONS(4140), - [anon_sym_into] = ACTIONS(4140), - [anon_sym_join] = ACTIONS(4140), - [anon_sym_on] = ACTIONS(4140), - [anon_sym_equals] = ACTIONS(4140), - [anon_sym_let] = ACTIONS(4140), - [anon_sym_orderby] = ACTIONS(4140), - [anon_sym_ascending] = ACTIONS(4140), - [anon_sym_descending] = ACTIONS(4140), - [anon_sym_group] = ACTIONS(4140), - [anon_sym_by] = ACTIONS(4140), - [anon_sym_select] = ACTIONS(4140), - [anon_sym_as] = ACTIONS(4140), - [anon_sym_is] = ACTIONS(4140), - [anon_sym_DASH_GT] = ACTIONS(4142), - [anon_sym_with] = ACTIONS(4140), + [aux_sym__class_declaration_initializer_repeat1] = STATE(2858), + [sym__identifier_token] = ACTIONS(4711), + [anon_sym_extern] = ACTIONS(4711), + [anon_sym_alias] = ACTIONS(4711), + [anon_sym_global] = ACTIONS(4711), + [anon_sym_unsafe] = ACTIONS(4711), + [anon_sym_static] = ACTIONS(4711), + [anon_sym_LBRACK] = ACTIONS(4713), + [anon_sym_LPAREN] = ACTIONS(4716), + [anon_sym_event] = ACTIONS(4711), + [anon_sym_class] = ACTIONS(4711), + [anon_sym_ref] = ACTIONS(4711), + [anon_sym_struct] = ACTIONS(4711), + [anon_sym_enum] = ACTIONS(4711), + [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(4716), + [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(4718), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -458992,11 +458586,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(4142), }, [2859] = { - [sym_preproc_else_in_attribute_list] = STATE(7705), - [sym_preproc_elif_in_attribute_list] = STATE(7705), [sym_preproc_region] = STATE(2859), [sym_preproc_endregion] = STATE(2859), [sym_preproc_line] = STATE(2859), @@ -459006,66 +458597,67 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2859), [sym_preproc_define] = STATE(2859), [sym_preproc_undef] = STATE(2859), - [sym__identifier_token] = ACTIONS(4699), - [anon_sym_extern] = ACTIONS(4699), - [anon_sym_alias] = ACTIONS(4699), - [anon_sym_global] = ACTIONS(4699), - [anon_sym_unsafe] = ACTIONS(4699), - [anon_sym_static] = ACTIONS(4699), - [anon_sym_LBRACK] = ACTIONS(4701), - [anon_sym_LPAREN] = ACTIONS(4701), - [anon_sym_event] = ACTIONS(4699), - [anon_sym_class] = ACTIONS(4699), - [anon_sym_ref] = ACTIONS(4699), - [anon_sym_struct] = ACTIONS(4699), - [anon_sym_enum] = ACTIONS(4699), - [anon_sym_interface] = ACTIONS(4699), - [anon_sym_delegate] = ACTIONS(4699), - [anon_sym_record] = ACTIONS(4699), - [anon_sym_abstract] = ACTIONS(4699), - [anon_sym_async] = ACTIONS(4699), - [anon_sym_const] = ACTIONS(4699), - [anon_sym_file] = ACTIONS(4699), - [anon_sym_fixed] = ACTIONS(4699), - [anon_sym_internal] = ACTIONS(4699), - [anon_sym_new] = ACTIONS(4699), - [anon_sym_override] = ACTIONS(4699), - [anon_sym_partial] = ACTIONS(4699), - [anon_sym_private] = ACTIONS(4699), - [anon_sym_protected] = ACTIONS(4699), - [anon_sym_public] = ACTIONS(4699), - [anon_sym_readonly] = ACTIONS(4699), - [anon_sym_required] = ACTIONS(4699), - [anon_sym_sealed] = ACTIONS(4699), - [anon_sym_virtual] = ACTIONS(4699), - [anon_sym_volatile] = ACTIONS(4699), - [anon_sym_where] = ACTIONS(4699), - [anon_sym_notnull] = ACTIONS(4699), - [anon_sym_unmanaged] = ACTIONS(4699), - [anon_sym_TILDE] = ACTIONS(4701), - [anon_sym_implicit] = ACTIONS(4699), - [anon_sym_explicit] = ACTIONS(4699), - [anon_sym_scoped] = ACTIONS(4699), - [anon_sym_var] = ACTIONS(4699), - [sym_predefined_type] = ACTIONS(4699), - [anon_sym_yield] = ACTIONS(4699), - [anon_sym_when] = ACTIONS(4699), - [anon_sym_from] = ACTIONS(4699), - [anon_sym_into] = ACTIONS(4699), - [anon_sym_join] = ACTIONS(4699), - [anon_sym_on] = ACTIONS(4699), - [anon_sym_equals] = ACTIONS(4699), - [anon_sym_let] = ACTIONS(4699), - [anon_sym_orderby] = ACTIONS(4699), - [anon_sym_ascending] = ACTIONS(4699), - [anon_sym_descending] = ACTIONS(4699), - [anon_sym_group] = ACTIONS(4699), - [anon_sym_by] = ACTIONS(4699), - [anon_sym_select] = ACTIONS(4699), - [aux_sym_preproc_if_token1] = ACTIONS(4701), - [aux_sym_preproc_if_token3] = ACTIONS(4715), - [aux_sym_preproc_else_token1] = ACTIONS(4705), - [aux_sym_preproc_elif_token1] = ACTIONS(4707), + [sym__identifier_token] = ACTIONS(4062), + [anon_sym_alias] = ACTIONS(4062), + [anon_sym_global] = ACTIONS(4062), + [anon_sym_LBRACK] = ACTIONS(4064), + [anon_sym_LPAREN] = ACTIONS(4064), + [anon_sym_LBRACE] = ACTIONS(4064), + [anon_sym_file] = ACTIONS(4062), + [anon_sym_LT] = ACTIONS(4062), + [anon_sym_GT] = ACTIONS(4062), + [anon_sym_where] = ACTIONS(4062), + [anon_sym_QMARK] = ACTIONS(4062), + [anon_sym_notnull] = ACTIONS(4062), + [anon_sym_unmanaged] = ACTIONS(4062), + [anon_sym_BANG] = ACTIONS(4062), + [anon_sym_PLUS_PLUS] = ACTIONS(4064), + [anon_sym_DASH_DASH] = ACTIONS(4064), + [anon_sym_PLUS] = ACTIONS(4062), + [anon_sym_DASH] = ACTIONS(4062), + [anon_sym_STAR] = ACTIONS(4064), + [anon_sym_SLASH] = ACTIONS(4062), + [anon_sym_PERCENT] = ACTIONS(4064), + [anon_sym_CARET] = ACTIONS(4064), + [anon_sym_PIPE] = ACTIONS(4062), + [anon_sym_AMP] = ACTIONS(4062), + [anon_sym_LT_LT] = ACTIONS(4064), + [anon_sym_GT_GT] = ACTIONS(4062), + [anon_sym_GT_GT_GT] = ACTIONS(4064), + [anon_sym_EQ_EQ] = ACTIONS(4064), + [anon_sym_BANG_EQ] = ACTIONS(4064), + [anon_sym_GT_EQ] = ACTIONS(4064), + [anon_sym_LT_EQ] = ACTIONS(4064), + [anon_sym_DOT] = ACTIONS(4062), + [anon_sym_scoped] = ACTIONS(4062), + [anon_sym_EQ_GT] = ACTIONS(4064), + [anon_sym_var] = ACTIONS(4062), + [anon_sym_yield] = ACTIONS(4062), + [anon_sym_switch] = ACTIONS(4062), + [anon_sym_when] = ACTIONS(4062), + [sym_discard] = ACTIONS(4062), + [anon_sym_DOT_DOT] = ACTIONS(4064), + [anon_sym_and] = ACTIONS(4062), + [anon_sym_or] = ACTIONS(4062), + [anon_sym_AMP_AMP] = ACTIONS(4064), + [anon_sym_PIPE_PIPE] = ACTIONS(4064), + [anon_sym_QMARK_QMARK] = ACTIONS(4064), + [anon_sym_from] = ACTIONS(4062), + [anon_sym_into] = ACTIONS(4062), + [anon_sym_join] = ACTIONS(4062), + [anon_sym_on] = ACTIONS(4062), + [anon_sym_equals] = ACTIONS(4062), + [anon_sym_let] = ACTIONS(4062), + [anon_sym_orderby] = ACTIONS(4062), + [anon_sym_ascending] = ACTIONS(4062), + [anon_sym_descending] = ACTIONS(4062), + [anon_sym_group] = ACTIONS(4062), + [anon_sym_by] = ACTIONS(4062), + [anon_sym_select] = ACTIONS(4062), + [anon_sym_as] = ACTIONS(4062), + [anon_sym_is] = ACTIONS(4062), + [anon_sym_DASH_GT] = ACTIONS(4064), + [anon_sym_with] = ACTIONS(4062), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -459087,92 +458679,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2860), [sym_preproc_define] = STATE(2860), [sym_preproc_undef] = STATE(2860), - [sym__identifier_token] = ACTIONS(4016), - [anon_sym_alias] = ACTIONS(4016), - [anon_sym_global] = ACTIONS(4016), - [anon_sym_LBRACK] = ACTIONS(4066), - [anon_sym_COMMA] = ACTIONS(4018), - [anon_sym_LPAREN] = ACTIONS(4018), - [anon_sym_LBRACE] = ACTIONS(4018), - [anon_sym_file] = ACTIONS(4016), - [anon_sym_LT] = ACTIONS(4016), - [anon_sym_GT] = ACTIONS(4016), - [anon_sym_where] = ACTIONS(4016), - [anon_sym_QMARK] = ACTIONS(4069), - [anon_sym_notnull] = ACTIONS(4016), - [anon_sym_unmanaged] = ACTIONS(4016), - [anon_sym_BANG] = ACTIONS(4016), - [anon_sym_PLUS_PLUS] = ACTIONS(4018), - [anon_sym_DASH_DASH] = ACTIONS(4018), - [anon_sym_PLUS] = ACTIONS(4016), - [anon_sym_DASH] = ACTIONS(4016), - [anon_sym_STAR] = ACTIONS(4072), - [anon_sym_SLASH] = ACTIONS(4016), - [anon_sym_PERCENT] = ACTIONS(4018), - [anon_sym_CARET] = ACTIONS(4018), - [anon_sym_PIPE] = ACTIONS(4016), - [anon_sym_AMP] = ACTIONS(4016), - [anon_sym_LT_LT] = ACTIONS(4018), - [anon_sym_GT_GT] = ACTIONS(4016), - [anon_sym_GT_GT_GT] = ACTIONS(4018), - [anon_sym_EQ_EQ] = ACTIONS(4018), - [anon_sym_BANG_EQ] = ACTIONS(4018), - [anon_sym_GT_EQ] = ACTIONS(4018), - [anon_sym_LT_EQ] = ACTIONS(4018), - [anon_sym_DOT] = ACTIONS(4717), - [anon_sym_scoped] = ACTIONS(4016), - [anon_sym_var] = ACTIONS(4016), - [anon_sym_yield] = ACTIONS(4016), - [anon_sym_switch] = ACTIONS(4016), - [anon_sym_when] = ACTIONS(4016), - [sym_discard] = ACTIONS(4016), - [anon_sym_DOT_DOT] = ACTIONS(4018), - [anon_sym_and] = ACTIONS(4016), - [anon_sym_or] = ACTIONS(4016), - [anon_sym_AMP_AMP] = ACTIONS(4018), - [anon_sym_PIPE_PIPE] = ACTIONS(4018), - [anon_sym_QMARK_QMARK] = ACTIONS(4018), - [anon_sym_from] = ACTIONS(4016), - [anon_sym_into] = ACTIONS(4016), - [anon_sym_join] = ACTIONS(4016), - [anon_sym_on] = ACTIONS(4016), - [anon_sym_equals] = ACTIONS(4016), - [anon_sym_let] = ACTIONS(4016), - [anon_sym_orderby] = ACTIONS(4016), - [anon_sym_ascending] = ACTIONS(4016), - [anon_sym_descending] = ACTIONS(4016), - [anon_sym_group] = ACTIONS(4016), - [anon_sym_by] = ACTIONS(4016), - [anon_sym_select] = ACTIONS(4016), - [anon_sym_as] = ACTIONS(4016), - [anon_sym_is] = ACTIONS(4016), - [anon_sym_DASH_GT] = ACTIONS(4719), - [anon_sym_with] = ACTIONS(4016), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_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_attribute_list] = STATE(2979), - [sym__attribute_list] = STATE(2990), - [sym_preproc_if_in_attribute_list] = STATE(2979), - [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), - [aux_sym__class_declaration_initializer_repeat1] = STATE(2861), [sym__identifier_token] = ACTIONS(4721), [anon_sym_extern] = ACTIONS(4721), [anon_sym_alias] = ACTIONS(4721), @@ -459180,7 +458686,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unsafe] = ACTIONS(4721), [anon_sym_static] = ACTIONS(4721), [anon_sym_LBRACK] = ACTIONS(4723), - [anon_sym_LPAREN] = ACTIONS(4726), + [anon_sym_LPAREN] = ACTIONS(4723), [anon_sym_event] = ACTIONS(4721), [anon_sym_class] = ACTIONS(4721), [anon_sym_ref] = ACTIONS(4721), @@ -459209,7 +458715,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_where] = ACTIONS(4721), [anon_sym_notnull] = ACTIONS(4721), [anon_sym_unmanaged] = ACTIONS(4721), - [anon_sym_TILDE] = ACTIONS(4726), + [anon_sym_TILDE] = ACTIONS(4723), [anon_sym_implicit] = ACTIONS(4721), [anon_sym_explicit] = ACTIONS(4721), [anon_sym_scoped] = ACTIONS(4721), @@ -459229,7 +458735,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(4721), [anon_sym_by] = ACTIONS(4721), [anon_sym_select] = ACTIONS(4721), - [aux_sym_preproc_if_token1] = ACTIONS(4728), + [aux_sym_preproc_if_token1] = ACTIONS(4723), + [aux_sym_preproc_if_token3] = ACTIONS(4723), + [aux_sym_preproc_else_token1] = ACTIONS(4723), + [aux_sym_preproc_elif_token1] = ACTIONS(4723), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_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_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(4112), + [anon_sym_alias] = ACTIONS(4112), + [anon_sym_global] = ACTIONS(4112), + [anon_sym_LBRACK] = ACTIONS(2955), + [anon_sym_COLON] = ACTIONS(4114), + [anon_sym_LPAREN] = ACTIONS(4114), + [anon_sym_file] = ACTIONS(4112), + [anon_sym_LT] = ACTIONS(2953), + [anon_sym_GT] = ACTIONS(2953), + [anon_sym_where] = ACTIONS(4112), + [anon_sym_QMARK] = ACTIONS(2953), + [anon_sym_notnull] = ACTIONS(4112), + [anon_sym_unmanaged] = ACTIONS(4112), + [anon_sym_BANG] = ACTIONS(2953), + [anon_sym_PLUS_PLUS] = ACTIONS(2955), + [anon_sym_DASH_DASH] = ACTIONS(2955), + [anon_sym_PLUS] = ACTIONS(2953), + [anon_sym_DASH] = ACTIONS(2953), + [anon_sym_STAR] = ACTIONS(2955), + [anon_sym_SLASH] = ACTIONS(2953), + [anon_sym_PERCENT] = ACTIONS(2955), + [anon_sym_CARET] = ACTIONS(2955), + [anon_sym_PIPE] = ACTIONS(2953), + [anon_sym_AMP] = ACTIONS(2953), + [anon_sym_LT_LT] = ACTIONS(2955), + [anon_sym_GT_GT] = ACTIONS(2953), + [anon_sym_GT_GT_GT] = ACTIONS(2955), + [anon_sym_EQ_EQ] = ACTIONS(2955), + [anon_sym_BANG_EQ] = ACTIONS(2955), + [anon_sym_GT_EQ] = ACTIONS(2955), + [anon_sym_LT_EQ] = ACTIONS(2955), + [anon_sym_DOT] = ACTIONS(2953), + [anon_sym_scoped] = ACTIONS(4112), + [anon_sym_var] = ACTIONS(4112), + [anon_sym_yield] = ACTIONS(4112), + [anon_sym_switch] = ACTIONS(2953), + [anon_sym_when] = ACTIONS(4112), + [sym_discard] = ACTIONS(4112), + [anon_sym_DOT_DOT] = ACTIONS(2955), + [anon_sym_and] = ACTIONS(4112), + [anon_sym_or] = ACTIONS(4112), + [anon_sym_AMP_AMP] = ACTIONS(2955), + [anon_sym_PIPE_PIPE] = ACTIONS(2955), + [anon_sym_QMARK_QMARK] = ACTIONS(2955), + [anon_sym_from] = ACTIONS(4112), + [anon_sym_into] = ACTIONS(4112), + [anon_sym_join] = ACTIONS(4112), + [anon_sym_on] = ACTIONS(4112), + [anon_sym_equals] = ACTIONS(4112), + [anon_sym_let] = ACTIONS(4112), + [anon_sym_orderby] = ACTIONS(4112), + [anon_sym_ascending] = ACTIONS(4112), + [anon_sym_descending] = ACTIONS(4112), + [anon_sym_group] = ACTIONS(4112), + [anon_sym_by] = ACTIONS(4112), + [anon_sym_select] = ACTIONS(4112), + [anon_sym_as] = ACTIONS(2953), + [anon_sym_is] = ACTIONS(2953), + [anon_sym_DASH_GT] = ACTIONS(2955), + [anon_sym_with] = ACTIONS(2953), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -459251,67 +458841,66 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2862), [sym_preproc_define] = STATE(2862), [sym_preproc_undef] = STATE(2862), - [sym__identifier_token] = ACTIONS(4016), - [anon_sym_alias] = ACTIONS(4016), - [anon_sym_global] = ACTIONS(4016), - [anon_sym_LBRACK] = ACTIONS(4066), - [anon_sym_COLON] = ACTIONS(4018), - [anon_sym_LPAREN] = ACTIONS(4018), - [anon_sym_LBRACE] = ACTIONS(4018), - [anon_sym_file] = ACTIONS(4016), - [anon_sym_LT] = ACTIONS(4016), - [anon_sym_GT] = ACTIONS(4016), - [anon_sym_where] = ACTIONS(4016), - [anon_sym_QMARK] = ACTIONS(4069), - [anon_sym_notnull] = ACTIONS(4016), - [anon_sym_unmanaged] = ACTIONS(4016), - [anon_sym_BANG] = ACTIONS(4016), - [anon_sym_PLUS_PLUS] = ACTIONS(4018), - [anon_sym_DASH_DASH] = ACTIONS(4018), - [anon_sym_PLUS] = ACTIONS(4016), - [anon_sym_DASH] = ACTIONS(4016), - [anon_sym_STAR] = ACTIONS(4072), - [anon_sym_SLASH] = ACTIONS(4016), - [anon_sym_PERCENT] = ACTIONS(4018), - [anon_sym_CARET] = ACTIONS(4018), - [anon_sym_PIPE] = ACTIONS(4016), - [anon_sym_AMP] = ACTIONS(4016), - [anon_sym_LT_LT] = ACTIONS(4018), - [anon_sym_GT_GT] = ACTIONS(4016), - [anon_sym_GT_GT_GT] = ACTIONS(4018), - [anon_sym_EQ_EQ] = ACTIONS(4018), - [anon_sym_BANG_EQ] = ACTIONS(4018), - [anon_sym_GT_EQ] = ACTIONS(4018), - [anon_sym_LT_EQ] = ACTIONS(4018), - [anon_sym_DOT] = ACTIONS(4731), - [anon_sym_scoped] = ACTIONS(4016), - [anon_sym_var] = ACTIONS(4016), - [anon_sym_yield] = ACTIONS(4016), - [anon_sym_switch] = ACTIONS(4016), - [anon_sym_when] = ACTIONS(4016), - [sym_discard] = ACTIONS(4016), - [anon_sym_DOT_DOT] = ACTIONS(4018), - [anon_sym_and] = ACTIONS(4016), - [anon_sym_or] = ACTIONS(4016), - [anon_sym_AMP_AMP] = ACTIONS(4018), - [anon_sym_PIPE_PIPE] = ACTIONS(4018), - [anon_sym_QMARK_QMARK] = ACTIONS(4018), - [anon_sym_from] = ACTIONS(4016), - [anon_sym_into] = ACTIONS(4016), - [anon_sym_join] = ACTIONS(4016), - [anon_sym_on] = ACTIONS(4016), - [anon_sym_equals] = ACTIONS(4016), - [anon_sym_let] = ACTIONS(4016), - [anon_sym_orderby] = ACTIONS(4016), - [anon_sym_ascending] = ACTIONS(4016), - [anon_sym_descending] = ACTIONS(4016), - [anon_sym_group] = ACTIONS(4016), - [anon_sym_by] = ACTIONS(4016), - [anon_sym_select] = ACTIONS(4016), - [anon_sym_as] = ACTIONS(4016), - [anon_sym_is] = ACTIONS(4016), - [anon_sym_DASH_GT] = ACTIONS(4077), - [anon_sym_with] = ACTIONS(4016), + [sym__identifier_token] = ACTIONS(3961), + [anon_sym_alias] = ACTIONS(3961), + [anon_sym_global] = ACTIONS(3961), + [anon_sym_LBRACK] = ACTIONS(4033), + [anon_sym_LPAREN] = ACTIONS(3963), + [anon_sym_LBRACE] = ACTIONS(3963), + [anon_sym_file] = ACTIONS(3961), + [anon_sym_LT] = ACTIONS(3961), + [anon_sym_GT] = ACTIONS(3961), + [anon_sym_where] = ACTIONS(3961), + [anon_sym_QMARK] = ACTIONS(4036), + [anon_sym_notnull] = ACTIONS(3961), + [anon_sym_unmanaged] = ACTIONS(3961), + [anon_sym_BANG] = ACTIONS(3961), + [anon_sym_PLUS_PLUS] = ACTIONS(3963), + [anon_sym_DASH_DASH] = ACTIONS(3963), + [anon_sym_PLUS] = ACTIONS(3961), + [anon_sym_DASH] = ACTIONS(3961), + [anon_sym_STAR] = ACTIONS(4039), + [anon_sym_SLASH] = ACTIONS(3961), + [anon_sym_PERCENT] = ACTIONS(3963), + [anon_sym_CARET] = ACTIONS(3963), + [anon_sym_PIPE] = ACTIONS(3961), + [anon_sym_AMP] = ACTIONS(3961), + [anon_sym_LT_LT] = ACTIONS(3963), + [anon_sym_GT_GT] = ACTIONS(3961), + [anon_sym_GT_GT_GT] = ACTIONS(3963), + [anon_sym_EQ_EQ] = ACTIONS(3963), + [anon_sym_BANG_EQ] = ACTIONS(3963), + [anon_sym_GT_EQ] = ACTIONS(3963), + [anon_sym_LT_EQ] = ACTIONS(3963), + [anon_sym_DOT] = ACTIONS(4725), + [anon_sym_scoped] = ACTIONS(3961), + [anon_sym_var] = ACTIONS(3961), + [anon_sym_yield] = ACTIONS(3961), + [anon_sym_switch] = ACTIONS(3961), + [anon_sym_when] = ACTIONS(3961), + [sym_discard] = ACTIONS(3961), + [anon_sym_DOT_DOT] = ACTIONS(3963), + [anon_sym_and] = ACTIONS(3961), + [anon_sym_or] = ACTIONS(3961), + [anon_sym_AMP_AMP] = ACTIONS(3963), + [anon_sym_PIPE_PIPE] = ACTIONS(3963), + [anon_sym_QMARK_QMARK] = ACTIONS(3963), + [anon_sym_from] = ACTIONS(3961), + [anon_sym_into] = ACTIONS(3961), + [anon_sym_join] = ACTIONS(3961), + [anon_sym_on] = ACTIONS(3961), + [anon_sym_equals] = ACTIONS(3961), + [anon_sym_let] = ACTIONS(3961), + [anon_sym_orderby] = ACTIONS(3961), + [anon_sym_ascending] = ACTIONS(3961), + [anon_sym_descending] = ACTIONS(3961), + [anon_sym_group] = ACTIONS(3961), + [anon_sym_by] = ACTIONS(3961), + [anon_sym_select] = ACTIONS(3961), + [anon_sym_as] = ACTIONS(3961), + [anon_sym_is] = ACTIONS(3961), + [anon_sym_DASH_GT] = ACTIONS(4094), + [anon_sym_with] = ACTIONS(3961), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -459333,67 +458922,66 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2863), [sym_preproc_define] = STATE(2863), [sym_preproc_undef] = STATE(2863), - [sym__identifier_token] = ACTIONS(4016), - [anon_sym_alias] = ACTIONS(4016), - [anon_sym_global] = ACTIONS(4016), - [anon_sym_LBRACK] = ACTIONS(4066), - [anon_sym_COMMA] = ACTIONS(4018), - [anon_sym_LPAREN] = ACTIONS(4018), - [anon_sym_LBRACE] = ACTIONS(4018), - [anon_sym_file] = ACTIONS(4016), - [anon_sym_LT] = ACTIONS(4016), - [anon_sym_GT] = ACTIONS(4016), - [anon_sym_where] = ACTIONS(4016), - [anon_sym_QMARK] = ACTIONS(4069), - [anon_sym_notnull] = ACTIONS(4016), - [anon_sym_unmanaged] = ACTIONS(4016), - [anon_sym_BANG] = ACTIONS(4016), - [anon_sym_PLUS_PLUS] = ACTIONS(4018), - [anon_sym_DASH_DASH] = ACTIONS(4018), - [anon_sym_PLUS] = ACTIONS(4016), - [anon_sym_DASH] = ACTIONS(4016), - [anon_sym_STAR] = ACTIONS(4072), - [anon_sym_SLASH] = ACTIONS(4016), - [anon_sym_PERCENT] = ACTIONS(4018), - [anon_sym_CARET] = ACTIONS(4018), - [anon_sym_PIPE] = ACTIONS(4016), - [anon_sym_AMP] = ACTIONS(4016), - [anon_sym_LT_LT] = ACTIONS(4018), - [anon_sym_GT_GT] = ACTIONS(4016), - [anon_sym_GT_GT_GT] = ACTIONS(4018), - [anon_sym_EQ_EQ] = ACTIONS(4018), - [anon_sym_BANG_EQ] = ACTIONS(4018), - [anon_sym_GT_EQ] = ACTIONS(4018), - [anon_sym_LT_EQ] = ACTIONS(4018), - [anon_sym_DOT] = ACTIONS(4733), - [anon_sym_scoped] = ACTIONS(4016), - [anon_sym_var] = ACTIONS(4016), - [anon_sym_yield] = ACTIONS(4016), - [anon_sym_switch] = ACTIONS(4016), - [anon_sym_when] = ACTIONS(4016), - [sym_discard] = ACTIONS(4016), - [anon_sym_DOT_DOT] = ACTIONS(4018), - [anon_sym_and] = ACTIONS(4016), - [anon_sym_or] = ACTIONS(4016), - [anon_sym_AMP_AMP] = ACTIONS(4018), - [anon_sym_PIPE_PIPE] = ACTIONS(4018), - [anon_sym_QMARK_QMARK] = ACTIONS(4018), - [anon_sym_from] = ACTIONS(4016), - [anon_sym_into] = ACTIONS(4016), - [anon_sym_join] = ACTIONS(4016), - [anon_sym_on] = ACTIONS(4016), - [anon_sym_equals] = ACTIONS(4016), - [anon_sym_let] = ACTIONS(4016), - [anon_sym_orderby] = ACTIONS(4016), - [anon_sym_ascending] = ACTIONS(4016), - [anon_sym_descending] = ACTIONS(4016), - [anon_sym_group] = ACTIONS(4016), - [anon_sym_by] = ACTIONS(4016), - [anon_sym_select] = ACTIONS(4016), - [anon_sym_as] = ACTIONS(4016), - [anon_sym_is] = ACTIONS(4016), - [anon_sym_DASH_GT] = ACTIONS(4719), - [anon_sym_with] = ACTIONS(4016), + [sym__identifier_token] = ACTIONS(3961), + [anon_sym_alias] = ACTIONS(3961), + [anon_sym_global] = ACTIONS(3961), + [anon_sym_LBRACK] = ACTIONS(4033), + [anon_sym_LPAREN] = ACTIONS(3963), + [anon_sym_LBRACE] = ACTIONS(3963), + [anon_sym_file] = ACTIONS(3961), + [anon_sym_LT] = ACTIONS(3961), + [anon_sym_GT] = ACTIONS(3961), + [anon_sym_where] = ACTIONS(3961), + [anon_sym_QMARK] = ACTIONS(4036), + [anon_sym_notnull] = ACTIONS(3961), + [anon_sym_unmanaged] = ACTIONS(3961), + [anon_sym_BANG] = ACTIONS(3961), + [anon_sym_PLUS_PLUS] = ACTIONS(3963), + [anon_sym_DASH_DASH] = ACTIONS(3963), + [anon_sym_PLUS] = ACTIONS(3961), + [anon_sym_DASH] = ACTIONS(3961), + [anon_sym_STAR] = ACTIONS(4039), + [anon_sym_SLASH] = ACTIONS(3961), + [anon_sym_PERCENT] = ACTIONS(3963), + [anon_sym_CARET] = ACTIONS(3963), + [anon_sym_PIPE] = ACTIONS(3961), + [anon_sym_AMP] = ACTIONS(3961), + [anon_sym_LT_LT] = ACTIONS(3963), + [anon_sym_GT_GT] = ACTIONS(3961), + [anon_sym_GT_GT_GT] = ACTIONS(3963), + [anon_sym_EQ_EQ] = ACTIONS(3963), + [anon_sym_BANG_EQ] = ACTIONS(3963), + [anon_sym_GT_EQ] = ACTIONS(3963), + [anon_sym_LT_EQ] = ACTIONS(3963), + [anon_sym_DOT] = ACTIONS(4727), + [anon_sym_scoped] = ACTIONS(3961), + [anon_sym_var] = ACTIONS(3961), + [anon_sym_yield] = ACTIONS(3961), + [anon_sym_switch] = ACTIONS(3961), + [anon_sym_when] = ACTIONS(3961), + [sym_discard] = ACTIONS(3961), + [anon_sym_DOT_DOT] = ACTIONS(3963), + [anon_sym_and] = ACTIONS(3961), + [anon_sym_or] = ACTIONS(3961), + [anon_sym_AMP_AMP] = ACTIONS(3963), + [anon_sym_PIPE_PIPE] = ACTIONS(3963), + [anon_sym_QMARK_QMARK] = ACTIONS(3963), + [anon_sym_from] = ACTIONS(3961), + [anon_sym_into] = ACTIONS(3961), + [anon_sym_join] = ACTIONS(3961), + [anon_sym_on] = ACTIONS(3961), + [anon_sym_equals] = ACTIONS(3961), + [anon_sym_let] = ACTIONS(3961), + [anon_sym_orderby] = ACTIONS(3961), + [anon_sym_ascending] = ACTIONS(3961), + [anon_sym_descending] = ACTIONS(3961), + [anon_sym_group] = ACTIONS(3961), + [anon_sym_by] = ACTIONS(3961), + [anon_sym_select] = ACTIONS(3961), + [anon_sym_as] = ACTIONS(3961), + [anon_sym_is] = ACTIONS(3961), + [anon_sym_DASH_GT] = ACTIONS(4044), + [anon_sym_with] = ACTIONS(3961), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -459415,67 +459003,66 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2864), [sym_preproc_define] = STATE(2864), [sym_preproc_undef] = STATE(2864), - [sym__identifier_token] = ACTIONS(4090), - [anon_sym_alias] = ACTIONS(4090), - [anon_sym_global] = ACTIONS(4090), - [anon_sym_LBRACK] = ACTIONS(4092), - [anon_sym_LPAREN] = ACTIONS(4092), - [anon_sym_LBRACE] = ACTIONS(4092), - [anon_sym_file] = ACTIONS(4090), - [anon_sym_LT] = ACTIONS(4090), - [anon_sym_GT] = ACTIONS(4090), - [anon_sym_where] = ACTIONS(4090), - [anon_sym_QMARK] = ACTIONS(4090), - [anon_sym_notnull] = ACTIONS(4090), - [anon_sym_unmanaged] = ACTIONS(4090), - [anon_sym_BANG] = ACTIONS(4090), - [anon_sym_PLUS_PLUS] = ACTIONS(4092), - [anon_sym_DASH_DASH] = ACTIONS(4092), - [anon_sym_PLUS] = ACTIONS(4090), - [anon_sym_DASH] = ACTIONS(4090), - [anon_sym_STAR] = ACTIONS(4092), - [anon_sym_SLASH] = ACTIONS(4090), - [anon_sym_PERCENT] = ACTIONS(4092), - [anon_sym_CARET] = ACTIONS(4092), - [anon_sym_PIPE] = ACTIONS(4090), - [anon_sym_AMP] = ACTIONS(4090), - [anon_sym_LT_LT] = ACTIONS(4092), - [anon_sym_GT_GT] = ACTIONS(4090), - [anon_sym_GT_GT_GT] = ACTIONS(4092), - [anon_sym_EQ_EQ] = ACTIONS(4092), - [anon_sym_BANG_EQ] = ACTIONS(4092), - [anon_sym_GT_EQ] = ACTIONS(4092), - [anon_sym_LT_EQ] = ACTIONS(4092), - [anon_sym_DOT] = ACTIONS(4090), - [anon_sym_scoped] = ACTIONS(4090), - [anon_sym_EQ_GT] = ACTIONS(4092), - [anon_sym_var] = ACTIONS(4090), - [anon_sym_yield] = ACTIONS(4090), - [anon_sym_switch] = ACTIONS(4090), - [anon_sym_when] = ACTIONS(4090), - [sym_discard] = ACTIONS(4090), - [anon_sym_DOT_DOT] = ACTIONS(4092), - [anon_sym_and] = ACTIONS(4090), - [anon_sym_or] = ACTIONS(4090), - [anon_sym_AMP_AMP] = ACTIONS(4092), - [anon_sym_PIPE_PIPE] = ACTIONS(4092), - [anon_sym_QMARK_QMARK] = ACTIONS(4092), - [anon_sym_from] = ACTIONS(4090), - [anon_sym_into] = ACTIONS(4090), - [anon_sym_join] = ACTIONS(4090), - [anon_sym_on] = ACTIONS(4090), - [anon_sym_equals] = ACTIONS(4090), - [anon_sym_let] = ACTIONS(4090), - [anon_sym_orderby] = ACTIONS(4090), - [anon_sym_ascending] = ACTIONS(4090), - [anon_sym_descending] = ACTIONS(4090), - [anon_sym_group] = ACTIONS(4090), - [anon_sym_by] = ACTIONS(4090), - [anon_sym_select] = ACTIONS(4090), - [anon_sym_as] = ACTIONS(4090), - [anon_sym_is] = ACTIONS(4090), - [anon_sym_DASH_GT] = ACTIONS(4092), - [anon_sym_with] = ACTIONS(4090), + [sym__identifier_token] = ACTIONS(3961), + [anon_sym_alias] = ACTIONS(3961), + [anon_sym_global] = ACTIONS(3961), + [anon_sym_LBRACK] = ACTIONS(4033), + [anon_sym_LPAREN] = ACTIONS(3963), + [anon_sym_LBRACE] = ACTIONS(3963), + [anon_sym_file] = ACTIONS(3961), + [anon_sym_LT] = ACTIONS(3961), + [anon_sym_GT] = ACTIONS(3961), + [anon_sym_where] = ACTIONS(3961), + [anon_sym_QMARK] = ACTIONS(4036), + [anon_sym_notnull] = ACTIONS(3961), + [anon_sym_unmanaged] = ACTIONS(3961), + [anon_sym_BANG] = ACTIONS(3961), + [anon_sym_PLUS_PLUS] = ACTIONS(3963), + [anon_sym_DASH_DASH] = ACTIONS(3963), + [anon_sym_PLUS] = ACTIONS(3961), + [anon_sym_DASH] = ACTIONS(3961), + [anon_sym_STAR] = ACTIONS(4039), + [anon_sym_SLASH] = ACTIONS(3961), + [anon_sym_PERCENT] = ACTIONS(3963), + [anon_sym_CARET] = ACTIONS(3963), + [anon_sym_PIPE] = ACTIONS(3961), + [anon_sym_AMP] = ACTIONS(3961), + [anon_sym_LT_LT] = ACTIONS(3963), + [anon_sym_GT_GT] = ACTIONS(3961), + [anon_sym_GT_GT_GT] = ACTIONS(3963), + [anon_sym_EQ_EQ] = ACTIONS(3963), + [anon_sym_BANG_EQ] = ACTIONS(3963), + [anon_sym_GT_EQ] = ACTIONS(3963), + [anon_sym_LT_EQ] = ACTIONS(3963), + [anon_sym_DOT] = ACTIONS(4729), + [anon_sym_scoped] = ACTIONS(3961), + [anon_sym_var] = ACTIONS(3961), + [anon_sym_yield] = ACTIONS(3961), + [anon_sym_switch] = ACTIONS(3961), + [anon_sym_when] = ACTIONS(3961), + [sym_discard] = ACTIONS(3961), + [anon_sym_DOT_DOT] = ACTIONS(3963), + [anon_sym_and] = ACTIONS(3961), + [anon_sym_or] = ACTIONS(3961), + [anon_sym_AMP_AMP] = ACTIONS(3963), + [anon_sym_PIPE_PIPE] = ACTIONS(3963), + [anon_sym_QMARK_QMARK] = ACTIONS(3963), + [anon_sym_from] = ACTIONS(3961), + [anon_sym_into] = ACTIONS(3961), + [anon_sym_join] = ACTIONS(3961), + [anon_sym_on] = ACTIONS(3961), + [anon_sym_equals] = ACTIONS(3961), + [anon_sym_let] = ACTIONS(3961), + [anon_sym_orderby] = ACTIONS(3961), + [anon_sym_ascending] = ACTIONS(3961), + [anon_sym_descending] = ACTIONS(3961), + [anon_sym_group] = ACTIONS(3961), + [anon_sym_by] = ACTIONS(3961), + [anon_sym_select] = ACTIONS(3961), + [anon_sym_as] = ACTIONS(3961), + [anon_sym_is] = ACTIONS(3961), + [anon_sym_DASH_GT] = ACTIONS(4094), + [anon_sym_with] = ACTIONS(3961), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -459497,67 +459084,66 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2865), [sym_preproc_define] = STATE(2865), [sym_preproc_undef] = STATE(2865), - [sym__identifier_token] = ACTIONS(4090), - [anon_sym_alias] = ACTIONS(4090), - [anon_sym_global] = ACTIONS(4090), - [anon_sym_LBRACK] = ACTIONS(4092), - [anon_sym_LPAREN] = ACTIONS(4092), - [anon_sym_LBRACE] = ACTIONS(4092), - [anon_sym_file] = ACTIONS(4090), - [anon_sym_LT] = ACTIONS(4090), - [anon_sym_GT] = ACTIONS(4090), - [anon_sym_where] = ACTIONS(4090), - [anon_sym_QMARK] = ACTIONS(4090), - [anon_sym_notnull] = ACTIONS(4090), - [anon_sym_unmanaged] = ACTIONS(4090), - [anon_sym_BANG] = ACTIONS(4090), - [anon_sym_PLUS_PLUS] = ACTIONS(4092), - [anon_sym_DASH_DASH] = ACTIONS(4092), - [anon_sym_PLUS] = ACTIONS(4090), - [anon_sym_DASH] = ACTIONS(4090), - [anon_sym_STAR] = ACTIONS(4092), - [anon_sym_SLASH] = ACTIONS(4090), - [anon_sym_PERCENT] = ACTIONS(4092), - [anon_sym_CARET] = ACTIONS(4092), - [anon_sym_PIPE] = ACTIONS(4090), - [anon_sym_AMP] = ACTIONS(4090), - [anon_sym_LT_LT] = ACTIONS(4092), - [anon_sym_GT_GT] = ACTIONS(4090), - [anon_sym_GT_GT_GT] = ACTIONS(4092), - [anon_sym_EQ_EQ] = ACTIONS(4092), - [anon_sym_BANG_EQ] = ACTIONS(4092), - [anon_sym_GT_EQ] = ACTIONS(4092), - [anon_sym_LT_EQ] = ACTIONS(4092), - [anon_sym_DOT] = ACTIONS(4090), - [anon_sym_scoped] = ACTIONS(4090), - [anon_sym_EQ_GT] = ACTIONS(4092), - [anon_sym_var] = ACTIONS(4090), - [anon_sym_yield] = ACTIONS(4090), - [anon_sym_switch] = ACTIONS(4090), - [anon_sym_when] = ACTIONS(4090), - [sym_discard] = ACTIONS(4090), - [anon_sym_DOT_DOT] = ACTIONS(4092), - [anon_sym_and] = ACTIONS(4090), - [anon_sym_or] = ACTIONS(4090), - [anon_sym_AMP_AMP] = ACTIONS(4092), - [anon_sym_PIPE_PIPE] = ACTIONS(4092), - [anon_sym_QMARK_QMARK] = ACTIONS(4092), - [anon_sym_from] = ACTIONS(4090), - [anon_sym_into] = ACTIONS(4090), - [anon_sym_join] = ACTIONS(4090), - [anon_sym_on] = ACTIONS(4090), - [anon_sym_equals] = ACTIONS(4090), - [anon_sym_let] = ACTIONS(4090), - [anon_sym_orderby] = ACTIONS(4090), - [anon_sym_ascending] = ACTIONS(4090), - [anon_sym_descending] = ACTIONS(4090), - [anon_sym_group] = ACTIONS(4090), - [anon_sym_by] = ACTIONS(4090), - [anon_sym_select] = ACTIONS(4090), - [anon_sym_as] = ACTIONS(4090), - [anon_sym_is] = ACTIONS(4090), - [anon_sym_DASH_GT] = ACTIONS(4092), - [anon_sym_with] = ACTIONS(4090), + [anon_sym_SEMI] = ACTIONS(2951), + [anon_sym_LBRACK] = ACTIONS(2951), + [anon_sym_COLON] = ACTIONS(2951), + [anon_sym_COMMA] = ACTIONS(2951), + [anon_sym_RBRACK] = ACTIONS(2951), + [anon_sym_LPAREN] = ACTIONS(2951), + [anon_sym_RPAREN] = ACTIONS(2951), + [anon_sym_RBRACE] = ACTIONS(2951), + [anon_sym_LT] = ACTIONS(2949), + [anon_sym_GT] = ACTIONS(2949), + [anon_sym_in] = ACTIONS(2951), + [anon_sym_where] = ACTIONS(2951), + [anon_sym_QMARK] = ACTIONS(2949), + [anon_sym_BANG] = ACTIONS(2949), + [anon_sym_PLUS_PLUS] = ACTIONS(2951), + [anon_sym_DASH_DASH] = ACTIONS(2951), + [anon_sym_PLUS] = ACTIONS(2949), + [anon_sym_DASH] = ACTIONS(2949), + [anon_sym_STAR] = ACTIONS(2951), + [anon_sym_SLASH] = ACTIONS(2949), + [anon_sym_PERCENT] = ACTIONS(2951), + [anon_sym_CARET] = ACTIONS(2951), + [anon_sym_PIPE] = ACTIONS(2949), + [anon_sym_AMP] = ACTIONS(2949), + [anon_sym_LT_LT] = ACTIONS(2951), + [anon_sym_GT_GT] = ACTIONS(2949), + [anon_sym_GT_GT_GT] = ACTIONS(2951), + [anon_sym_EQ_EQ] = ACTIONS(2951), + [anon_sym_BANG_EQ] = ACTIONS(2951), + [anon_sym_GT_EQ] = ACTIONS(2951), + [anon_sym_LT_EQ] = ACTIONS(2951), + [anon_sym_DOT] = ACTIONS(2949), + [anon_sym_EQ_GT] = ACTIONS(2951), + [anon_sym_while] = ACTIONS(2951), + [anon_sym_switch] = ACTIONS(2951), + [anon_sym_catch] = ACTIONS(2951), + [anon_sym_finally] = ACTIONS(2951), + [anon_sym_else] = ACTIONS(2951), + [anon_sym_DOT_DOT] = ACTIONS(2951), + [anon_sym_and] = ACTIONS(2951), + [anon_sym_or] = ACTIONS(2949), + [anon_sym_AMP_AMP] = ACTIONS(2951), + [anon_sym_PIPE_PIPE] = ACTIONS(2951), + [anon_sym_QMARK_QMARK] = ACTIONS(2951), + [anon_sym_from] = ACTIONS(2951), + [anon_sym_join] = ACTIONS(2951), + [anon_sym_on] = ACTIONS(2951), + [anon_sym_equals] = ACTIONS(2951), + [anon_sym_let] = ACTIONS(2951), + [anon_sym_orderby] = ACTIONS(2951), + [anon_sym_group] = ACTIONS(2951), + [anon_sym_by] = ACTIONS(2951), + [anon_sym_select] = ACTIONS(2951), + [anon_sym_as] = ACTIONS(2951), + [anon_sym_is] = ACTIONS(2951), + [anon_sym_DASH_GT] = ACTIONS(2951), + [anon_sym_with] = ACTIONS(2951), + [aux_sym_preproc_if_token3] = ACTIONS(2951), + [aux_sym_preproc_else_token1] = ACTIONS(2951), + [aux_sym_preproc_elif_token1] = ACTIONS(2951), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -459579,67 +459165,66 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2866), [sym_preproc_define] = STATE(2866), [sym_preproc_undef] = STATE(2866), - [sym__identifier_token] = ACTIONS(4016), - [anon_sym_alias] = ACTIONS(4016), - [anon_sym_global] = ACTIONS(4016), - [anon_sym_LBRACK] = ACTIONS(4066), - [anon_sym_LPAREN] = ACTIONS(4018), - [anon_sym_LBRACE] = ACTIONS(4018), - [anon_sym_file] = ACTIONS(4016), - [anon_sym_LT] = ACTIONS(4016), - [anon_sym_GT] = ACTIONS(4016), - [anon_sym_where] = ACTIONS(4016), - [anon_sym_QMARK] = ACTIONS(4069), - [anon_sym_notnull] = ACTIONS(4016), - [anon_sym_unmanaged] = ACTIONS(4016), - [anon_sym_BANG] = ACTIONS(4016), - [anon_sym_PLUS_PLUS] = ACTIONS(4018), - [anon_sym_DASH_DASH] = ACTIONS(4018), - [anon_sym_PLUS] = ACTIONS(4016), - [anon_sym_DASH] = ACTIONS(4016), - [anon_sym_STAR] = ACTIONS(4072), - [anon_sym_SLASH] = ACTIONS(4016), - [anon_sym_PERCENT] = ACTIONS(4018), - [anon_sym_CARET] = ACTIONS(4018), - [anon_sym_PIPE] = ACTIONS(4016), - [anon_sym_AMP] = ACTIONS(4016), - [anon_sym_LT_LT] = ACTIONS(4018), - [anon_sym_GT_GT] = ACTIONS(4016), - [anon_sym_GT_GT_GT] = ACTIONS(4018), - [anon_sym_EQ_EQ] = ACTIONS(4018), - [anon_sym_BANG_EQ] = ACTIONS(4018), - [anon_sym_GT_EQ] = ACTIONS(4018), - [anon_sym_LT_EQ] = ACTIONS(4018), - [anon_sym_DOT] = ACTIONS(4735), - [anon_sym_scoped] = ACTIONS(4016), - [anon_sym_EQ_GT] = ACTIONS(4018), - [anon_sym_var] = ACTIONS(4016), - [anon_sym_yield] = ACTIONS(4016), - [anon_sym_switch] = ACTIONS(4016), - [anon_sym_when] = ACTIONS(4016), - [sym_discard] = ACTIONS(4016), - [anon_sym_DOT_DOT] = ACTIONS(4018), - [anon_sym_and] = ACTIONS(4016), - [anon_sym_or] = ACTIONS(4016), - [anon_sym_AMP_AMP] = ACTIONS(4018), - [anon_sym_PIPE_PIPE] = ACTIONS(4018), - [anon_sym_QMARK_QMARK] = ACTIONS(4018), - [anon_sym_from] = ACTIONS(4016), - [anon_sym_into] = ACTIONS(4016), - [anon_sym_join] = ACTIONS(4016), - [anon_sym_on] = ACTIONS(4016), - [anon_sym_equals] = ACTIONS(4016), - [anon_sym_let] = ACTIONS(4016), - [anon_sym_orderby] = ACTIONS(4016), - [anon_sym_ascending] = ACTIONS(4016), - [anon_sym_descending] = ACTIONS(4016), - [anon_sym_group] = ACTIONS(4016), - [anon_sym_by] = ACTIONS(4016), - [anon_sym_select] = ACTIONS(4016), - [anon_sym_as] = ACTIONS(4016), - [anon_sym_is] = ACTIONS(4016), - [anon_sym_DASH_GT] = ACTIONS(4102), - [anon_sym_with] = ACTIONS(4016), + [anon_sym_EQ] = ACTIONS(4134), + [anon_sym_LBRACK] = ACTIONS(4132), + [anon_sym_COLON] = ACTIONS(4132), + [anon_sym_COMMA] = ACTIONS(4132), + [anon_sym_LPAREN] = ACTIONS(4132), + [anon_sym_LT] = ACTIONS(4134), + [anon_sym_GT] = ACTIONS(4134), + [anon_sym_where] = ACTIONS(4132), + [anon_sym_QMARK] = ACTIONS(4134), + [anon_sym_BANG] = ACTIONS(4134), + [anon_sym_PLUS_PLUS] = ACTIONS(4132), + [anon_sym_DASH_DASH] = ACTIONS(4132), + [anon_sym_PLUS] = ACTIONS(4134), + [anon_sym_DASH] = ACTIONS(4134), + [anon_sym_STAR] = ACTIONS(4134), + [anon_sym_SLASH] = ACTIONS(4134), + [anon_sym_PERCENT] = ACTIONS(4134), + [anon_sym_CARET] = ACTIONS(4134), + [anon_sym_PIPE] = ACTIONS(4134), + [anon_sym_AMP] = ACTIONS(4134), + [anon_sym_LT_LT] = ACTIONS(4134), + [anon_sym_GT_GT] = ACTIONS(4134), + [anon_sym_GT_GT_GT] = ACTIONS(4134), + [anon_sym_EQ_EQ] = ACTIONS(4132), + [anon_sym_BANG_EQ] = ACTIONS(4132), + [anon_sym_GT_EQ] = ACTIONS(4132), + [anon_sym_LT_EQ] = ACTIONS(4132), + [anon_sym_DOT] = ACTIONS(4134), + [anon_sym_switch] = ACTIONS(4132), + [anon_sym_DOT_DOT] = ACTIONS(4132), + [anon_sym_and] = ACTIONS(4132), + [anon_sym_or] = ACTIONS(4134), + [anon_sym_PLUS_EQ] = ACTIONS(4132), + [anon_sym_DASH_EQ] = ACTIONS(4132), + [anon_sym_STAR_EQ] = ACTIONS(4132), + [anon_sym_SLASH_EQ] = ACTIONS(4132), + [anon_sym_PERCENT_EQ] = ACTIONS(4132), + [anon_sym_AMP_EQ] = ACTIONS(4132), + [anon_sym_CARET_EQ] = ACTIONS(4132), + [anon_sym_PIPE_EQ] = ACTIONS(4132), + [anon_sym_LT_LT_EQ] = ACTIONS(4132), + [anon_sym_GT_GT_EQ] = ACTIONS(4132), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(4132), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(4132), + [anon_sym_AMP_AMP] = ACTIONS(4132), + [anon_sym_PIPE_PIPE] = ACTIONS(4132), + [anon_sym_QMARK_QMARK] = ACTIONS(4134), + [anon_sym_from] = ACTIONS(4132), + [anon_sym_into] = ACTIONS(4132), + [anon_sym_join] = ACTIONS(4132), + [anon_sym_let] = ACTIONS(4132), + [anon_sym_orderby] = ACTIONS(4132), + [anon_sym_ascending] = ACTIONS(4132), + [anon_sym_descending] = ACTIONS(4132), + [anon_sym_group] = ACTIONS(4132), + [anon_sym_select] = ACTIONS(4132), + [anon_sym_as] = ACTIONS(4134), + [anon_sym_is] = ACTIONS(4132), + [anon_sym_DASH_GT] = ACTIONS(4132), + [anon_sym_with] = ACTIONS(4132), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -459652,30 +459237,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2867] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter] = STATE(6948), - [sym__parameter_array] = STATE(6996), - [sym__name] = STATE(4390), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(4096), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(4109), - [sym_type] = STATE(6060), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_tuple_element] = STATE(7283), - [sym_identifier] = STATE(5749), - [sym__reserved_identifier] = STATE(3691), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(3516), + [sym__attribute_list] = STATE(3518), + [sym_modifier] = STATE(3655), + [sym_accessor_declaration] = STATE(3443), + [sym_identifier] = STATE(6408), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_attribute_list] = STATE(3516), [sym_preproc_region] = STATE(2867), [sym_preproc_endregion] = STATE(2867), [sym_preproc_line] = STATE(2867), @@ -459685,43 +459253,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2867), [sym_preproc_define] = STATE(2867), [sym_preproc_undef] = STATE(2867), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3060), - [aux_sym__parameter_type_with_modifiers_repeat1] = STATE(3489), - [sym__identifier_token] = ACTIONS(2967), - [anon_sym_alias] = ACTIONS(2971), - [anon_sym_global] = ACTIONS(2971), - [anon_sym_LBRACK] = ACTIONS(4689), - [anon_sym_LPAREN] = ACTIONS(2979), - [anon_sym_RPAREN] = ACTIONS(2627), - [anon_sym_ref] = ACTIONS(4691), - [anon_sym_delegate] = ACTIONS(3454), - [anon_sym_file] = ACTIONS(2971), - [anon_sym_readonly] = ACTIONS(1103), - [anon_sym_in] = ACTIONS(1103), - [anon_sym_out] = ACTIONS(1103), - [anon_sym_where] = ACTIONS(2971), - [anon_sym_notnull] = ACTIONS(2971), - [anon_sym_unmanaged] = ACTIONS(2971), - [anon_sym_this] = ACTIONS(1103), - [anon_sym_scoped] = ACTIONS(4711), - [anon_sym_params] = ACTIONS(1117), - [anon_sym_var] = ACTIONS(4737), - [sym_predefined_type] = ACTIONS(3001), - [anon_sym_yield] = ACTIONS(2971), - [anon_sym_when] = ACTIONS(2971), - [anon_sym_from] = ACTIONS(2971), - [anon_sym_into] = ACTIONS(2971), - [anon_sym_join] = ACTIONS(2971), - [anon_sym_on] = ACTIONS(2971), - [anon_sym_equals] = ACTIONS(2971), - [anon_sym_let] = ACTIONS(2971), - [anon_sym_orderby] = ACTIONS(2971), - [anon_sym_ascending] = ACTIONS(2971), - [anon_sym_descending] = ACTIONS(2971), - [anon_sym_group] = ACTIONS(2971), - [anon_sym_by] = ACTIONS(2971), - [anon_sym_select] = ACTIONS(2971), - [aux_sym_preproc_if_token1] = ACTIONS(4697), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3047), + [aux_sym__class_declaration_initializer_repeat2] = STATE(3323), + [aux_sym_accessor_list_repeat1] = STATE(2880), + [sym__identifier_token] = ACTIONS(25), + [anon_sym_extern] = ACTIONS(4731), + [anon_sym_alias] = ACTIONS(29), + [anon_sym_global] = ACTIONS(29), + [anon_sym_unsafe] = ACTIONS(4731), + [anon_sym_static] = ACTIONS(4731), + [anon_sym_LBRACK] = ACTIONS(4733), + [anon_sym_RBRACE] = ACTIONS(4735), + [anon_sym_abstract] = ACTIONS(4731), + [anon_sym_async] = ACTIONS(4731), + [anon_sym_const] = ACTIONS(4731), + [anon_sym_file] = ACTIONS(4737), + [anon_sym_fixed] = ACTIONS(4731), + [anon_sym_internal] = ACTIONS(4731), + [anon_sym_new] = ACTIONS(4731), + [anon_sym_override] = ACTIONS(4731), + [anon_sym_partial] = ACTIONS(4731), + [anon_sym_private] = ACTIONS(4731), + [anon_sym_protected] = ACTIONS(4731), + [anon_sym_public] = ACTIONS(4731), + [anon_sym_readonly] = ACTIONS(4731), + [anon_sym_required] = ACTIONS(4731), + [anon_sym_sealed] = ACTIONS(4731), + [anon_sym_virtual] = ACTIONS(4731), + [anon_sym_volatile] = ACTIONS(4731), + [anon_sym_where] = ACTIONS(29), + [anon_sym_notnull] = ACTIONS(29), + [anon_sym_unmanaged] = ACTIONS(29), + [anon_sym_get] = ACTIONS(4739), + [anon_sym_set] = ACTIONS(4739), + [anon_sym_add] = ACTIONS(4739), + [anon_sym_remove] = ACTIONS(4739), + [anon_sym_init] = ACTIONS(4739), + [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(4741), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -459743,67 +459327,66 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2868), [sym_preproc_define] = STATE(2868), [sym_preproc_undef] = STATE(2868), - [sym__identifier_token] = ACTIONS(4016), - [anon_sym_alias] = ACTIONS(4016), - [anon_sym_global] = ACTIONS(4016), - [anon_sym_LBRACK] = ACTIONS(4066), - [anon_sym_COLON] = ACTIONS(4018), - [anon_sym_LPAREN] = ACTIONS(4018), - [anon_sym_LBRACE] = ACTIONS(4018), - [anon_sym_file] = ACTIONS(4016), - [anon_sym_LT] = ACTIONS(4016), - [anon_sym_GT] = ACTIONS(4016), - [anon_sym_where] = ACTIONS(4016), - [anon_sym_QMARK] = ACTIONS(4069), - [anon_sym_notnull] = ACTIONS(4016), - [anon_sym_unmanaged] = ACTIONS(4016), - [anon_sym_BANG] = ACTIONS(4016), - [anon_sym_PLUS_PLUS] = ACTIONS(4018), - [anon_sym_DASH_DASH] = ACTIONS(4018), - [anon_sym_PLUS] = ACTIONS(4016), - [anon_sym_DASH] = ACTIONS(4016), - [anon_sym_STAR] = ACTIONS(4072), - [anon_sym_SLASH] = ACTIONS(4016), - [anon_sym_PERCENT] = ACTIONS(4018), - [anon_sym_CARET] = ACTIONS(4018), - [anon_sym_PIPE] = ACTIONS(4016), - [anon_sym_AMP] = ACTIONS(4016), - [anon_sym_LT_LT] = ACTIONS(4018), - [anon_sym_GT_GT] = ACTIONS(4016), - [anon_sym_GT_GT_GT] = ACTIONS(4018), - [anon_sym_EQ_EQ] = ACTIONS(4018), - [anon_sym_BANG_EQ] = ACTIONS(4018), - [anon_sym_GT_EQ] = ACTIONS(4018), - [anon_sym_LT_EQ] = ACTIONS(4018), - [anon_sym_DOT] = ACTIONS(4739), - [anon_sym_scoped] = ACTIONS(4016), - [anon_sym_var] = ACTIONS(4016), - [anon_sym_yield] = ACTIONS(4016), - [anon_sym_switch] = ACTIONS(4016), - [anon_sym_when] = ACTIONS(4016), - [sym_discard] = ACTIONS(4016), - [anon_sym_DOT_DOT] = ACTIONS(4018), - [anon_sym_and] = ACTIONS(4016), - [anon_sym_or] = ACTIONS(4016), - [anon_sym_AMP_AMP] = ACTIONS(4018), - [anon_sym_PIPE_PIPE] = ACTIONS(4018), - [anon_sym_QMARK_QMARK] = ACTIONS(4018), - [anon_sym_from] = ACTIONS(4016), - [anon_sym_into] = ACTIONS(4016), - [anon_sym_join] = ACTIONS(4016), - [anon_sym_on] = ACTIONS(4016), - [anon_sym_equals] = ACTIONS(4016), - [anon_sym_let] = ACTIONS(4016), - [anon_sym_orderby] = ACTIONS(4016), - [anon_sym_ascending] = ACTIONS(4016), - [anon_sym_descending] = ACTIONS(4016), - [anon_sym_group] = ACTIONS(4016), - [anon_sym_by] = ACTIONS(4016), - [anon_sym_select] = ACTIONS(4016), - [anon_sym_as] = ACTIONS(4016), - [anon_sym_is] = ACTIONS(4016), - [anon_sym_DASH_GT] = ACTIONS(4102), - [anon_sym_with] = ACTIONS(4016), + [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(4745), + [aux_sym_preproc_else_token1] = ACTIONS(4745), + [aux_sym_preproc_elif_token1] = ACTIONS(4745), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -459825,67 +459408,66 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2869), [sym_preproc_define] = STATE(2869), [sym_preproc_undef] = STATE(2869), - [sym__identifier_token] = ACTIONS(4016), - [anon_sym_alias] = ACTIONS(4016), - [anon_sym_global] = ACTIONS(4016), - [anon_sym_LBRACK] = ACTIONS(4066), - [anon_sym_LPAREN] = ACTIONS(4018), - [anon_sym_LBRACE] = ACTIONS(4018), - [anon_sym_file] = ACTIONS(4016), - [anon_sym_LT] = ACTIONS(4016), - [anon_sym_GT] = ACTIONS(4016), - [anon_sym_where] = ACTIONS(4016), - [anon_sym_QMARK] = ACTIONS(4069), - [anon_sym_notnull] = ACTIONS(4016), - [anon_sym_unmanaged] = ACTIONS(4016), - [anon_sym_BANG] = ACTIONS(4016), - [anon_sym_PLUS_PLUS] = ACTIONS(4018), - [anon_sym_DASH_DASH] = ACTIONS(4018), - [anon_sym_PLUS] = ACTIONS(4016), - [anon_sym_DASH] = ACTIONS(4016), - [anon_sym_STAR] = ACTIONS(4072), - [anon_sym_SLASH] = ACTIONS(4016), - [anon_sym_PERCENT] = ACTIONS(4018), - [anon_sym_CARET] = ACTIONS(4018), - [anon_sym_PIPE] = ACTIONS(4016), - [anon_sym_AMP] = ACTIONS(4016), - [anon_sym_LT_LT] = ACTIONS(4018), - [anon_sym_GT_GT] = ACTIONS(4016), - [anon_sym_GT_GT_GT] = ACTIONS(4018), - [anon_sym_EQ_EQ] = ACTIONS(4018), - [anon_sym_BANG_EQ] = ACTIONS(4018), - [anon_sym_GT_EQ] = ACTIONS(4018), - [anon_sym_LT_EQ] = ACTIONS(4018), - [anon_sym_DOT] = ACTIONS(4741), - [anon_sym_scoped] = ACTIONS(4016), - [anon_sym_EQ_GT] = ACTIONS(4018), - [anon_sym_var] = ACTIONS(4016), - [anon_sym_yield] = ACTIONS(4016), - [anon_sym_switch] = ACTIONS(4016), - [anon_sym_when] = ACTIONS(4016), - [sym_discard] = ACTIONS(4016), - [anon_sym_DOT_DOT] = ACTIONS(4018), - [anon_sym_and] = ACTIONS(4016), - [anon_sym_or] = ACTIONS(4016), - [anon_sym_AMP_AMP] = ACTIONS(4018), - [anon_sym_PIPE_PIPE] = ACTIONS(4018), - [anon_sym_QMARK_QMARK] = ACTIONS(4018), - [anon_sym_from] = ACTIONS(4016), - [anon_sym_into] = ACTIONS(4016), - [anon_sym_join] = ACTIONS(4016), - [anon_sym_on] = ACTIONS(4016), - [anon_sym_equals] = ACTIONS(4016), - [anon_sym_let] = ACTIONS(4016), - [anon_sym_orderby] = ACTIONS(4016), - [anon_sym_ascending] = ACTIONS(4016), - [anon_sym_descending] = ACTIONS(4016), - [anon_sym_group] = ACTIONS(4016), - [anon_sym_by] = ACTIONS(4016), - [anon_sym_select] = ACTIONS(4016), - [anon_sym_as] = ACTIONS(4016), - [anon_sym_is] = ACTIONS(4016), - [anon_sym_DASH_GT] = ACTIONS(4077), - [anon_sym_with] = ACTIONS(4016), + [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(4749), + [aux_sym_preproc_else_token1] = ACTIONS(4749), + [aux_sym_preproc_elif_token1] = ACTIONS(4749), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -459907,67 +459489,66 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2870), [sym_preproc_define] = STATE(2870), [sym_preproc_undef] = STATE(2870), - [sym__identifier_token] = ACTIONS(4016), - [anon_sym_alias] = ACTIONS(4016), - [anon_sym_global] = ACTIONS(4016), - [anon_sym_LBRACK] = ACTIONS(4066), - [anon_sym_COMMA] = ACTIONS(4018), - [anon_sym_LPAREN] = ACTIONS(4018), - [anon_sym_LBRACE] = ACTIONS(4018), - [anon_sym_file] = ACTIONS(4016), - [anon_sym_LT] = ACTIONS(4016), - [anon_sym_GT] = ACTIONS(4016), - [anon_sym_where] = ACTIONS(4016), - [anon_sym_QMARK] = ACTIONS(4069), - [anon_sym_notnull] = ACTIONS(4016), - [anon_sym_unmanaged] = ACTIONS(4016), - [anon_sym_BANG] = ACTIONS(4016), - [anon_sym_PLUS_PLUS] = ACTIONS(4018), - [anon_sym_DASH_DASH] = ACTIONS(4018), - [anon_sym_PLUS] = ACTIONS(4016), - [anon_sym_DASH] = ACTIONS(4016), - [anon_sym_STAR] = ACTIONS(4072), - [anon_sym_SLASH] = ACTIONS(4016), - [anon_sym_PERCENT] = ACTIONS(4018), - [anon_sym_CARET] = ACTIONS(4018), - [anon_sym_PIPE] = ACTIONS(4016), - [anon_sym_AMP] = ACTIONS(4016), - [anon_sym_LT_LT] = ACTIONS(4018), - [anon_sym_GT_GT] = ACTIONS(4016), - [anon_sym_GT_GT_GT] = ACTIONS(4018), - [anon_sym_EQ_EQ] = ACTIONS(4018), - [anon_sym_BANG_EQ] = ACTIONS(4018), - [anon_sym_GT_EQ] = ACTIONS(4018), - [anon_sym_LT_EQ] = ACTIONS(4018), - [anon_sym_DOT] = ACTIONS(4743), - [anon_sym_scoped] = ACTIONS(4016), - [anon_sym_var] = ACTIONS(4016), - [anon_sym_yield] = ACTIONS(4016), - [anon_sym_switch] = ACTIONS(4016), - [anon_sym_when] = ACTIONS(4016), - [sym_discard] = ACTIONS(4016), - [anon_sym_DOT_DOT] = ACTIONS(4018), - [anon_sym_and] = ACTIONS(4016), - [anon_sym_or] = ACTIONS(4016), - [anon_sym_AMP_AMP] = ACTIONS(4018), - [anon_sym_PIPE_PIPE] = ACTIONS(4018), - [anon_sym_QMARK_QMARK] = ACTIONS(4018), - [anon_sym_from] = ACTIONS(4016), - [anon_sym_into] = ACTIONS(4016), - [anon_sym_join] = ACTIONS(4016), - [anon_sym_on] = ACTIONS(4016), - [anon_sym_equals] = ACTIONS(4016), - [anon_sym_let] = ACTIONS(4016), - [anon_sym_orderby] = ACTIONS(4016), - [anon_sym_ascending] = ACTIONS(4016), - [anon_sym_descending] = ACTIONS(4016), - [anon_sym_group] = ACTIONS(4016), - [anon_sym_by] = ACTIONS(4016), - [anon_sym_select] = ACTIONS(4016), - [anon_sym_as] = ACTIONS(4016), - [anon_sym_is] = ACTIONS(4016), - [anon_sym_DASH_GT] = ACTIONS(4719), - [anon_sym_with] = ACTIONS(4016), + [sym__identifier_token] = ACTIONS(4108), + [anon_sym_alias] = ACTIONS(4108), + [anon_sym_global] = ACTIONS(4108), + [anon_sym_LBRACK] = ACTIONS(4226), + [anon_sym_COLON] = ACTIONS(4110), + [anon_sym_LPAREN] = ACTIONS(4110), + [anon_sym_file] = ACTIONS(4108), + [anon_sym_LT] = ACTIONS(4228), + [anon_sym_GT] = ACTIONS(4228), + [anon_sym_where] = ACTIONS(4108), + [anon_sym_QMARK] = ACTIONS(4228), + [anon_sym_notnull] = ACTIONS(4108), + [anon_sym_unmanaged] = ACTIONS(4108), + [anon_sym_BANG] = ACTIONS(4228), + [anon_sym_PLUS_PLUS] = ACTIONS(4226), + [anon_sym_DASH_DASH] = ACTIONS(4226), + [anon_sym_PLUS] = ACTIONS(4228), + [anon_sym_DASH] = ACTIONS(4228), + [anon_sym_STAR] = ACTIONS(4226), + [anon_sym_SLASH] = ACTIONS(4228), + [anon_sym_PERCENT] = ACTIONS(4226), + [anon_sym_CARET] = ACTIONS(4226), + [anon_sym_PIPE] = ACTIONS(4228), + [anon_sym_AMP] = ACTIONS(4228), + [anon_sym_LT_LT] = ACTIONS(4226), + [anon_sym_GT_GT] = ACTIONS(4228), + [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(4228), + [anon_sym_scoped] = ACTIONS(4108), + [anon_sym_var] = ACTIONS(4108), + [anon_sym_yield] = ACTIONS(4108), + [anon_sym_switch] = ACTIONS(4228), + [anon_sym_when] = ACTIONS(4108), + [sym_discard] = ACTIONS(4108), + [anon_sym_DOT_DOT] = ACTIONS(4226), + [anon_sym_and] = ACTIONS(4108), + [anon_sym_or] = ACTIONS(4108), + [anon_sym_AMP_AMP] = ACTIONS(4226), + [anon_sym_PIPE_PIPE] = ACTIONS(4226), + [anon_sym_QMARK_QMARK] = ACTIONS(4226), + [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(4228), + [anon_sym_is] = ACTIONS(4228), + [anon_sym_DASH_GT] = ACTIONS(4226), + [anon_sym_with] = ACTIONS(4228), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -459980,6 +459561,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2871] = { + [sym_argument_list] = STATE(2894), + [sym_initializer_expression] = STATE(2970), [sym_preproc_region] = STATE(2871), [sym_preproc_endregion] = STATE(2871), [sym_preproc_line] = STATE(2871), @@ -459989,66 +459572,64 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2871), [sym_preproc_define] = STATE(2871), [sym_preproc_undef] = STATE(2871), - [anon_sym_EQ] = ACTIONS(4181), - [anon_sym_LBRACK] = ACTIONS(4179), - [anon_sym_COLON] = ACTIONS(4179), - [anon_sym_COMMA] = ACTIONS(4179), - [anon_sym_LPAREN] = ACTIONS(4179), - [anon_sym_LT] = ACTIONS(4181), - [anon_sym_GT] = ACTIONS(4181), - [anon_sym_where] = ACTIONS(4179), - [anon_sym_QMARK] = ACTIONS(4181), - [anon_sym_BANG] = ACTIONS(4181), - [anon_sym_PLUS_PLUS] = ACTIONS(4179), - [anon_sym_DASH_DASH] = ACTIONS(4179), - [anon_sym_PLUS] = ACTIONS(4181), - [anon_sym_DASH] = ACTIONS(4181), - [anon_sym_STAR] = ACTIONS(4181), - [anon_sym_SLASH] = ACTIONS(4181), - [anon_sym_PERCENT] = ACTIONS(4181), - [anon_sym_CARET] = ACTIONS(4181), - [anon_sym_PIPE] = ACTIONS(4181), - [anon_sym_AMP] = ACTIONS(4181), - [anon_sym_LT_LT] = ACTIONS(4181), - [anon_sym_GT_GT] = ACTIONS(4181), - [anon_sym_GT_GT_GT] = ACTIONS(4181), - [anon_sym_EQ_EQ] = ACTIONS(4179), - [anon_sym_BANG_EQ] = ACTIONS(4179), - [anon_sym_GT_EQ] = ACTIONS(4179), - [anon_sym_LT_EQ] = ACTIONS(4179), - [anon_sym_DOT] = ACTIONS(4181), - [anon_sym_switch] = ACTIONS(4179), - [anon_sym_DOT_DOT] = ACTIONS(4179), - [anon_sym_and] = ACTIONS(4179), - [anon_sym_or] = ACTIONS(4181), - [anon_sym_PLUS_EQ] = ACTIONS(4179), - [anon_sym_DASH_EQ] = ACTIONS(4179), - [anon_sym_STAR_EQ] = ACTIONS(4179), - [anon_sym_SLASH_EQ] = ACTIONS(4179), - [anon_sym_PERCENT_EQ] = ACTIONS(4179), - [anon_sym_AMP_EQ] = ACTIONS(4179), - [anon_sym_CARET_EQ] = ACTIONS(4179), - [anon_sym_PIPE_EQ] = ACTIONS(4179), - [anon_sym_LT_LT_EQ] = ACTIONS(4179), - [anon_sym_GT_GT_EQ] = ACTIONS(4179), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(4179), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(4179), - [anon_sym_AMP_AMP] = ACTIONS(4179), - [anon_sym_PIPE_PIPE] = ACTIONS(4179), - [anon_sym_QMARK_QMARK] = ACTIONS(4181), - [anon_sym_from] = ACTIONS(4179), - [anon_sym_into] = ACTIONS(4179), - [anon_sym_join] = ACTIONS(4179), - [anon_sym_let] = ACTIONS(4179), - [anon_sym_orderby] = ACTIONS(4179), - [anon_sym_ascending] = ACTIONS(4179), - [anon_sym_descending] = ACTIONS(4179), - [anon_sym_group] = ACTIONS(4179), - [anon_sym_select] = ACTIONS(4179), - [anon_sym_as] = ACTIONS(4181), - [anon_sym_is] = ACTIONS(4179), - [anon_sym_DASH_GT] = ACTIONS(4179), - [anon_sym_with] = ACTIONS(4179), + [anon_sym_SEMI] = ACTIONS(4751), + [anon_sym_LBRACK] = ACTIONS(4751), + [anon_sym_COLON] = ACTIONS(4751), + [anon_sym_COMMA] = ACTIONS(4751), + [anon_sym_RBRACK] = ACTIONS(4751), + [anon_sym_LPAREN] = ACTIONS(4753), + [anon_sym_RPAREN] = ACTIONS(4751), + [anon_sym_LBRACE] = ACTIONS(1245), + [anon_sym_RBRACE] = ACTIONS(4751), + [anon_sym_LT] = ACTIONS(4755), + [anon_sym_GT] = ACTIONS(4755), + [anon_sym_in] = ACTIONS(4755), + [anon_sym_where] = ACTIONS(4751), + [anon_sym_QMARK] = ACTIONS(4755), + [anon_sym_BANG] = ACTIONS(4755), + [anon_sym_PLUS_PLUS] = ACTIONS(4751), + [anon_sym_DASH_DASH] = ACTIONS(4751), + [anon_sym_PLUS] = ACTIONS(4755), + [anon_sym_DASH] = ACTIONS(4755), + [anon_sym_STAR] = ACTIONS(4751), + [anon_sym_SLASH] = ACTIONS(4755), + [anon_sym_PERCENT] = ACTIONS(4751), + [anon_sym_CARET] = ACTIONS(4751), + [anon_sym_PIPE] = ACTIONS(4755), + [anon_sym_AMP] = ACTIONS(4755), + [anon_sym_LT_LT] = ACTIONS(4751), + [anon_sym_GT_GT] = ACTIONS(4755), + [anon_sym_GT_GT_GT] = ACTIONS(4751), + [anon_sym_EQ_EQ] = ACTIONS(4751), + [anon_sym_BANG_EQ] = ACTIONS(4751), + [anon_sym_GT_EQ] = ACTIONS(4751), + [anon_sym_LT_EQ] = ACTIONS(4751), + [anon_sym_DOT] = ACTIONS(4755), + [anon_sym_EQ_GT] = ACTIONS(4751), + [anon_sym_switch] = ACTIONS(4751), + [anon_sym_DOT_DOT] = ACTIONS(4751), + [anon_sym_and] = ACTIONS(4751), + [anon_sym_or] = ACTIONS(4755), + [anon_sym_AMP_AMP] = ACTIONS(4751), + [anon_sym_PIPE_PIPE] = ACTIONS(4751), + [anon_sym_QMARK_QMARK] = ACTIONS(4751), + [anon_sym_from] = ACTIONS(4751), + [anon_sym_into] = ACTIONS(4751), + [anon_sym_join] = ACTIONS(4751), + [anon_sym_on] = ACTIONS(4751), + [anon_sym_equals] = ACTIONS(4751), + [anon_sym_let] = ACTIONS(4751), + [anon_sym_orderby] = ACTIONS(4751), + [anon_sym_group] = ACTIONS(4751), + [anon_sym_by] = ACTIONS(4751), + [anon_sym_select] = ACTIONS(4751), + [anon_sym_as] = ACTIONS(4751), + [anon_sym_is] = ACTIONS(4751), + [anon_sym_DASH_GT] = ACTIONS(4751), + [anon_sym_with] = ACTIONS(4751), + [aux_sym_preproc_if_token3] = ACTIONS(4751), + [aux_sym_preproc_else_token1] = ACTIONS(4751), + [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), @@ -460061,6 +459642,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2872] = { + [sym_attribute_list] = STATE(3516), + [sym__attribute_list] = STATE(3518), + [sym_modifier] = STATE(3655), + [sym_accessor_declaration] = STATE(3443), + [sym_identifier] = STATE(6408), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_attribute_list] = STATE(3516), [sym_preproc_region] = STATE(2872), [sym_preproc_endregion] = STATE(2872), [sym_preproc_line] = STATE(2872), @@ -460070,66 +459658,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2872), [sym_preproc_define] = STATE(2872), [sym_preproc_undef] = STATE(2872), - [anon_sym_EQ] = ACTIONS(4201), - [anon_sym_LBRACK] = ACTIONS(4199), - [anon_sym_COLON] = ACTIONS(4199), - [anon_sym_COMMA] = ACTIONS(4199), - [anon_sym_LPAREN] = ACTIONS(4199), - [anon_sym_LT] = ACTIONS(4201), - [anon_sym_GT] = ACTIONS(4201), - [anon_sym_where] = ACTIONS(4199), - [anon_sym_QMARK] = ACTIONS(4201), - [anon_sym_BANG] = ACTIONS(4201), - [anon_sym_PLUS_PLUS] = ACTIONS(4199), - [anon_sym_DASH_DASH] = ACTIONS(4199), - [anon_sym_PLUS] = ACTIONS(4201), - [anon_sym_DASH] = ACTIONS(4201), - [anon_sym_STAR] = ACTIONS(4201), - [anon_sym_SLASH] = ACTIONS(4201), - [anon_sym_PERCENT] = ACTIONS(4201), - [anon_sym_CARET] = ACTIONS(4201), - [anon_sym_PIPE] = ACTIONS(4201), - [anon_sym_AMP] = ACTIONS(4201), - [anon_sym_LT_LT] = ACTIONS(4201), - [anon_sym_GT_GT] = ACTIONS(4201), - [anon_sym_GT_GT_GT] = ACTIONS(4201), - [anon_sym_EQ_EQ] = ACTIONS(4199), - [anon_sym_BANG_EQ] = ACTIONS(4199), - [anon_sym_GT_EQ] = ACTIONS(4199), - [anon_sym_LT_EQ] = ACTIONS(4199), - [anon_sym_DOT] = ACTIONS(4201), - [anon_sym_switch] = ACTIONS(4199), - [anon_sym_DOT_DOT] = ACTIONS(4199), - [anon_sym_and] = ACTIONS(4199), - [anon_sym_or] = ACTIONS(4201), - [anon_sym_PLUS_EQ] = ACTIONS(4199), - [anon_sym_DASH_EQ] = ACTIONS(4199), - [anon_sym_STAR_EQ] = ACTIONS(4199), - [anon_sym_SLASH_EQ] = ACTIONS(4199), - [anon_sym_PERCENT_EQ] = ACTIONS(4199), - [anon_sym_AMP_EQ] = ACTIONS(4199), - [anon_sym_CARET_EQ] = ACTIONS(4199), - [anon_sym_PIPE_EQ] = ACTIONS(4199), - [anon_sym_LT_LT_EQ] = ACTIONS(4199), - [anon_sym_GT_GT_EQ] = ACTIONS(4199), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(4199), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(4199), - [anon_sym_AMP_AMP] = ACTIONS(4199), - [anon_sym_PIPE_PIPE] = ACTIONS(4199), - [anon_sym_QMARK_QMARK] = ACTIONS(4201), - [anon_sym_from] = ACTIONS(4199), - [anon_sym_into] = ACTIONS(4199), - [anon_sym_join] = ACTIONS(4199), - [anon_sym_let] = ACTIONS(4199), - [anon_sym_orderby] = ACTIONS(4199), - [anon_sym_ascending] = ACTIONS(4199), - [anon_sym_descending] = ACTIONS(4199), - [anon_sym_group] = ACTIONS(4199), - [anon_sym_select] = ACTIONS(4199), - [anon_sym_as] = ACTIONS(4201), - [anon_sym_is] = ACTIONS(4199), - [anon_sym_DASH_GT] = ACTIONS(4199), - [anon_sym_with] = ACTIONS(4199), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3047), + [aux_sym__class_declaration_initializer_repeat2] = STATE(3323), + [aux_sym_accessor_list_repeat1] = STATE(2867), + [sym__identifier_token] = ACTIONS(25), + [anon_sym_extern] = ACTIONS(4731), + [anon_sym_alias] = ACTIONS(29), + [anon_sym_global] = ACTIONS(29), + [anon_sym_unsafe] = ACTIONS(4731), + [anon_sym_static] = ACTIONS(4731), + [anon_sym_LBRACK] = ACTIONS(4733), + [anon_sym_RBRACE] = ACTIONS(4757), + [anon_sym_abstract] = ACTIONS(4731), + [anon_sym_async] = ACTIONS(4731), + [anon_sym_const] = ACTIONS(4731), + [anon_sym_file] = ACTIONS(4737), + [anon_sym_fixed] = ACTIONS(4731), + [anon_sym_internal] = ACTIONS(4731), + [anon_sym_new] = ACTIONS(4731), + [anon_sym_override] = ACTIONS(4731), + [anon_sym_partial] = ACTIONS(4731), + [anon_sym_private] = ACTIONS(4731), + [anon_sym_protected] = ACTIONS(4731), + [anon_sym_public] = ACTIONS(4731), + [anon_sym_readonly] = ACTIONS(4731), + [anon_sym_required] = ACTIONS(4731), + [anon_sym_sealed] = ACTIONS(4731), + [anon_sym_virtual] = ACTIONS(4731), + [anon_sym_volatile] = ACTIONS(4731), + [anon_sym_where] = ACTIONS(29), + [anon_sym_notnull] = ACTIONS(29), + [anon_sym_unmanaged] = ACTIONS(29), + [anon_sym_get] = ACTIONS(4739), + [anon_sym_set] = ACTIONS(4739), + [anon_sym_add] = ACTIONS(4739), + [anon_sym_remove] = ACTIONS(4739), + [anon_sym_init] = ACTIONS(4739), + [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(4741), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -460151,66 +459732,66 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2873), [sym_preproc_define] = STATE(2873), [sym_preproc_undef] = STATE(2873), - [sym__identifier_token] = ACTIONS(4154), - [anon_sym_alias] = ACTIONS(4154), - [anon_sym_global] = ACTIONS(4154), - [anon_sym_LBRACK] = ACTIONS(4253), - [anon_sym_COLON] = ACTIONS(4156), - [anon_sym_LPAREN] = ACTIONS(4156), - [anon_sym_file] = ACTIONS(4154), - [anon_sym_LT] = ACTIONS(4255), - [anon_sym_GT] = ACTIONS(4255), - [anon_sym_where] = ACTIONS(4154), - [anon_sym_QMARK] = ACTIONS(4255), - [anon_sym_notnull] = ACTIONS(4154), - [anon_sym_unmanaged] = ACTIONS(4154), - [anon_sym_BANG] = ACTIONS(4255), - [anon_sym_PLUS_PLUS] = ACTIONS(4253), - [anon_sym_DASH_DASH] = ACTIONS(4253), - [anon_sym_PLUS] = ACTIONS(4255), - [anon_sym_DASH] = ACTIONS(4255), - [anon_sym_STAR] = ACTIONS(4253), - [anon_sym_SLASH] = ACTIONS(4255), - [anon_sym_PERCENT] = ACTIONS(4253), - [anon_sym_CARET] = ACTIONS(4253), - [anon_sym_PIPE] = ACTIONS(4255), - [anon_sym_AMP] = ACTIONS(4255), - [anon_sym_LT_LT] = ACTIONS(4253), - [anon_sym_GT_GT] = ACTIONS(4255), - [anon_sym_GT_GT_GT] = ACTIONS(4253), - [anon_sym_EQ_EQ] = ACTIONS(4253), - [anon_sym_BANG_EQ] = ACTIONS(4253), - [anon_sym_GT_EQ] = ACTIONS(4253), - [anon_sym_LT_EQ] = ACTIONS(4253), - [anon_sym_DOT] = ACTIONS(4255), - [anon_sym_scoped] = ACTIONS(4154), - [anon_sym_var] = ACTIONS(4154), - [anon_sym_yield] = ACTIONS(4154), - [anon_sym_switch] = ACTIONS(4255), - [anon_sym_when] = ACTIONS(4154), - [sym_discard] = ACTIONS(4154), - [anon_sym_DOT_DOT] = ACTIONS(4253), - [anon_sym_and] = ACTIONS(4154), - [anon_sym_or] = ACTIONS(4154), - [anon_sym_AMP_AMP] = ACTIONS(4253), - [anon_sym_PIPE_PIPE] = ACTIONS(4253), - [anon_sym_QMARK_QMARK] = ACTIONS(4253), - [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(4255), - [anon_sym_is] = ACTIONS(4255), - [anon_sym_DASH_GT] = ACTIONS(4253), - [anon_sym_with] = ACTIONS(4255), + [sym__identifier_token] = ACTIONS(3961), + [anon_sym_alias] = ACTIONS(3961), + [anon_sym_global] = ACTIONS(3961), + [anon_sym_LBRACK] = ACTIONS(4033), + [anon_sym_LPAREN] = ACTIONS(3963), + [anon_sym_LBRACE] = ACTIONS(3963), + [anon_sym_file] = ACTIONS(3961), + [anon_sym_LT] = ACTIONS(3961), + [anon_sym_GT] = ACTIONS(3961), + [anon_sym_where] = ACTIONS(3961), + [anon_sym_QMARK] = ACTIONS(4036), + [anon_sym_notnull] = ACTIONS(3961), + [anon_sym_unmanaged] = ACTIONS(3961), + [anon_sym_BANG] = ACTIONS(3961), + [anon_sym_PLUS_PLUS] = ACTIONS(3963), + [anon_sym_DASH_DASH] = ACTIONS(3963), + [anon_sym_PLUS] = ACTIONS(3961), + [anon_sym_DASH] = ACTIONS(3961), + [anon_sym_STAR] = ACTIONS(4039), + [anon_sym_SLASH] = ACTIONS(3961), + [anon_sym_PERCENT] = ACTIONS(3963), + [anon_sym_CARET] = ACTIONS(3963), + [anon_sym_PIPE] = ACTIONS(3961), + [anon_sym_AMP] = ACTIONS(3961), + [anon_sym_LT_LT] = ACTIONS(3963), + [anon_sym_GT_GT] = ACTIONS(3961), + [anon_sym_GT_GT_GT] = ACTIONS(3963), + [anon_sym_EQ_EQ] = ACTIONS(3963), + [anon_sym_BANG_EQ] = ACTIONS(3963), + [anon_sym_GT_EQ] = ACTIONS(3963), + [anon_sym_LT_EQ] = ACTIONS(3963), + [anon_sym_DOT] = ACTIONS(4759), + [anon_sym_scoped] = ACTIONS(3961), + [anon_sym_var] = ACTIONS(3961), + [anon_sym_yield] = ACTIONS(3961), + [anon_sym_switch] = ACTIONS(3961), + [anon_sym_when] = ACTIONS(3961), + [sym_discard] = ACTIONS(3961), + [anon_sym_DOT_DOT] = ACTIONS(3963), + [anon_sym_and] = ACTIONS(3961), + [anon_sym_or] = ACTIONS(3961), + [anon_sym_AMP_AMP] = ACTIONS(3963), + [anon_sym_PIPE_PIPE] = ACTIONS(3963), + [anon_sym_QMARK_QMARK] = ACTIONS(3963), + [anon_sym_from] = ACTIONS(3961), + [anon_sym_into] = ACTIONS(3961), + [anon_sym_join] = ACTIONS(3961), + [anon_sym_on] = ACTIONS(3961), + [anon_sym_equals] = ACTIONS(3961), + [anon_sym_let] = ACTIONS(3961), + [anon_sym_orderby] = ACTIONS(3961), + [anon_sym_ascending] = ACTIONS(3961), + [anon_sym_descending] = ACTIONS(3961), + [anon_sym_group] = ACTIONS(3961), + [anon_sym_by] = ACTIONS(3961), + [anon_sym_select] = ACTIONS(3961), + [anon_sym_as] = ACTIONS(3961), + [anon_sym_is] = ACTIONS(3961), + [anon_sym_DASH_GT] = ACTIONS(4044), + [anon_sym_with] = ACTIONS(3961), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -460232,66 +459813,66 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2874), [sym_preproc_define] = STATE(2874), [sym_preproc_undef] = STATE(2874), - [sym__identifier_token] = ACTIONS(4745), - [anon_sym_extern] = ACTIONS(4745), - [anon_sym_alias] = ACTIONS(4745), - [anon_sym_global] = ACTIONS(4745), - [anon_sym_unsafe] = ACTIONS(4745), - [anon_sym_static] = ACTIONS(4745), - [anon_sym_LBRACK] = ACTIONS(4747), - [anon_sym_LPAREN] = ACTIONS(4747), - [anon_sym_event] = ACTIONS(4745), - [anon_sym_class] = ACTIONS(4745), - [anon_sym_ref] = ACTIONS(4745), - [anon_sym_struct] = ACTIONS(4745), - [anon_sym_enum] = ACTIONS(4745), - [anon_sym_interface] = ACTIONS(4745), - [anon_sym_delegate] = ACTIONS(4745), - [anon_sym_record] = ACTIONS(4745), - [anon_sym_abstract] = ACTIONS(4745), - [anon_sym_async] = ACTIONS(4745), - [anon_sym_const] = ACTIONS(4745), - [anon_sym_file] = ACTIONS(4745), - [anon_sym_fixed] = ACTIONS(4745), - [anon_sym_internal] = ACTIONS(4745), - [anon_sym_new] = ACTIONS(4745), - [anon_sym_override] = ACTIONS(4745), - [anon_sym_partial] = ACTIONS(4745), - [anon_sym_private] = ACTIONS(4745), - [anon_sym_protected] = ACTIONS(4745), - [anon_sym_public] = ACTIONS(4745), - [anon_sym_readonly] = ACTIONS(4745), - [anon_sym_required] = ACTIONS(4745), - [anon_sym_sealed] = ACTIONS(4745), - [anon_sym_virtual] = ACTIONS(4745), - [anon_sym_volatile] = ACTIONS(4745), - [anon_sym_where] = ACTIONS(4745), - [anon_sym_notnull] = ACTIONS(4745), - [anon_sym_unmanaged] = ACTIONS(4745), - [anon_sym_TILDE] = ACTIONS(4747), - [anon_sym_implicit] = ACTIONS(4745), - [anon_sym_explicit] = ACTIONS(4745), - [anon_sym_scoped] = ACTIONS(4745), - [anon_sym_var] = ACTIONS(4745), - [sym_predefined_type] = ACTIONS(4745), - [anon_sym_yield] = ACTIONS(4745), - [anon_sym_when] = ACTIONS(4745), - [anon_sym_from] = ACTIONS(4745), - [anon_sym_into] = ACTIONS(4745), - [anon_sym_join] = ACTIONS(4745), - [anon_sym_on] = ACTIONS(4745), - [anon_sym_equals] = ACTIONS(4745), - [anon_sym_let] = ACTIONS(4745), - [anon_sym_orderby] = ACTIONS(4745), - [anon_sym_ascending] = ACTIONS(4745), - [anon_sym_descending] = ACTIONS(4745), - [anon_sym_group] = ACTIONS(4745), - [anon_sym_by] = ACTIONS(4745), - [anon_sym_select] = ACTIONS(4745), - [aux_sym_preproc_if_token1] = ACTIONS(4747), - [aux_sym_preproc_if_token3] = ACTIONS(4747), - [aux_sym_preproc_else_token1] = ACTIONS(4747), - [aux_sym_preproc_elif_token1] = ACTIONS(4747), + [sym__identifier_token] = ACTIONS(4761), + [anon_sym_extern] = ACTIONS(4761), + [anon_sym_alias] = ACTIONS(4761), + [anon_sym_global] = ACTIONS(4761), + [anon_sym_unsafe] = ACTIONS(4761), + [anon_sym_static] = ACTIONS(4761), + [anon_sym_LBRACK] = ACTIONS(4763), + [anon_sym_LPAREN] = ACTIONS(4763), + [anon_sym_event] = ACTIONS(4761), + [anon_sym_class] = ACTIONS(4761), + [anon_sym_ref] = ACTIONS(4761), + [anon_sym_struct] = ACTIONS(4761), + [anon_sym_enum] = ACTIONS(4761), + [anon_sym_interface] = ACTIONS(4761), + [anon_sym_delegate] = ACTIONS(4761), + [anon_sym_record] = ACTIONS(4761), + [anon_sym_abstract] = ACTIONS(4761), + [anon_sym_async] = ACTIONS(4761), + [anon_sym_const] = ACTIONS(4761), + [anon_sym_file] = ACTIONS(4761), + [anon_sym_fixed] = ACTIONS(4761), + [anon_sym_internal] = ACTIONS(4761), + [anon_sym_new] = ACTIONS(4761), + [anon_sym_override] = ACTIONS(4761), + [anon_sym_partial] = ACTIONS(4761), + [anon_sym_private] = ACTIONS(4761), + [anon_sym_protected] = ACTIONS(4761), + [anon_sym_public] = ACTIONS(4761), + [anon_sym_readonly] = ACTIONS(4761), + [anon_sym_required] = ACTIONS(4761), + [anon_sym_sealed] = ACTIONS(4761), + [anon_sym_virtual] = ACTIONS(4761), + [anon_sym_volatile] = ACTIONS(4761), + [anon_sym_where] = ACTIONS(4761), + [anon_sym_notnull] = ACTIONS(4761), + [anon_sym_unmanaged] = ACTIONS(4761), + [anon_sym_TILDE] = ACTIONS(4763), + [anon_sym_implicit] = ACTIONS(4761), + [anon_sym_explicit] = ACTIONS(4761), + [anon_sym_scoped] = ACTIONS(4761), + [anon_sym_var] = ACTIONS(4761), + [sym_predefined_type] = ACTIONS(4761), + [anon_sym_yield] = ACTIONS(4761), + [anon_sym_when] = ACTIONS(4761), + [anon_sym_from] = ACTIONS(4761), + [anon_sym_into] = ACTIONS(4761), + [anon_sym_join] = ACTIONS(4761), + [anon_sym_on] = ACTIONS(4761), + [anon_sym_equals] = ACTIONS(4761), + [anon_sym_let] = ACTIONS(4761), + [anon_sym_orderby] = ACTIONS(4761), + [anon_sym_ascending] = ACTIONS(4761), + [anon_sym_descending] = ACTIONS(4761), + [anon_sym_group] = ACTIONS(4761), + [anon_sym_by] = ACTIONS(4761), + [anon_sym_select] = ACTIONS(4761), + [aux_sym_preproc_if_token1] = ACTIONS(4763), + [aux_sym_preproc_if_token3] = ACTIONS(4763), + [aux_sym_preproc_else_token1] = ACTIONS(4763), + [aux_sym_preproc_elif_token1] = ACTIONS(4763), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -460304,29 +459885,29 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2875] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter] = STATE(6948), - [sym__parameter_array] = STATE(6996), - [sym__name] = STATE(4390), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(4096), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(4109), - [sym_type] = STATE(6103), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_identifier] = STATE(5730), - [sym__reserved_identifier] = STATE(3691), - [sym_preproc_if_in_attribute_list] = STATE(5576), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter] = STATE(6937), + [sym__parameter_array] = STATE(6940), + [sym__name] = STATE(4369), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(4068), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(4073), + [sym_type] = STATE(6070), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_identifier] = STATE(5716), + [sym__reserved_identifier] = STATE(3654), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(2875), [sym_preproc_endregion] = STATE(2875), [sym_preproc_line] = STATE(2875), @@ -460336,43 +459917,43 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2875), [sym_preproc_define] = STATE(2875), [sym_preproc_undef] = STATE(2875), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3060), - [aux_sym__parameter_type_with_modifiers_repeat1] = STATE(3489), - [sym__identifier_token] = ACTIONS(2967), - [anon_sym_alias] = ACTIONS(2971), - [anon_sym_global] = ACTIONS(2971), - [anon_sym_LBRACK] = ACTIONS(4689), - [anon_sym_LPAREN] = ACTIONS(2979), - [anon_sym_RPAREN] = ACTIONS(2627), - [anon_sym_ref] = ACTIONS(4691), - [anon_sym_delegate] = ACTIONS(3454), - [anon_sym_file] = ACTIONS(2971), - [anon_sym_readonly] = ACTIONS(1103), - [anon_sym_in] = ACTIONS(1103), - [anon_sym_out] = ACTIONS(1103), - [anon_sym_where] = ACTIONS(2971), - [anon_sym_notnull] = ACTIONS(2971), - [anon_sym_unmanaged] = ACTIONS(2971), - [anon_sym_this] = ACTIONS(1103), - [anon_sym_scoped] = ACTIONS(4711), - [anon_sym_params] = ACTIONS(1117), - [anon_sym_var] = ACTIONS(2999), - [sym_predefined_type] = ACTIONS(3001), - [anon_sym_yield] = ACTIONS(2971), - [anon_sym_when] = ACTIONS(2971), - [anon_sym_from] = ACTIONS(2971), - [anon_sym_into] = ACTIONS(2971), - [anon_sym_join] = ACTIONS(2971), - [anon_sym_on] = ACTIONS(2971), - [anon_sym_equals] = ACTIONS(2971), - [anon_sym_let] = ACTIONS(2971), - [anon_sym_orderby] = ACTIONS(2971), - [anon_sym_ascending] = ACTIONS(2971), - [anon_sym_descending] = ACTIONS(2971), - [anon_sym_group] = ACTIONS(2971), - [anon_sym_by] = ACTIONS(2971), - [anon_sym_select] = ACTIONS(2971), - [aux_sym_preproc_if_token1] = ACTIONS(4697), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3044), + [aux_sym__parameter_type_with_modifiers_repeat1] = STATE(3452), + [sym__identifier_token] = ACTIONS(2965), + [anon_sym_alias] = ACTIONS(2969), + [anon_sym_global] = ACTIONS(2969), + [anon_sym_LBRACK] = ACTIONS(4675), + [anon_sym_RBRACK] = ACTIONS(4765), + [anon_sym_LPAREN] = ACTIONS(2977), + [anon_sym_ref] = ACTIONS(4677), + [anon_sym_delegate] = ACTIONS(3438), + [anon_sym_file] = ACTIONS(2969), + [anon_sym_readonly] = ACTIONS(1097), + [anon_sym_in] = ACTIONS(1097), + [anon_sym_out] = ACTIONS(1097), + [anon_sym_where] = ACTIONS(2969), + [anon_sym_notnull] = ACTIONS(2969), + [anon_sym_unmanaged] = ACTIONS(2969), + [anon_sym_this] = ACTIONS(1097), + [anon_sym_scoped] = ACTIONS(4687), + [anon_sym_params] = ACTIONS(1111), + [anon_sym_var] = ACTIONS(2995), + [sym_predefined_type] = ACTIONS(2997), + [anon_sym_yield] = ACTIONS(2969), + [anon_sym_when] = ACTIONS(2969), + [anon_sym_from] = ACTIONS(2969), + [anon_sym_into] = ACTIONS(2969), + [anon_sym_join] = ACTIONS(2969), + [anon_sym_on] = ACTIONS(2969), + [anon_sym_equals] = ACTIONS(2969), + [anon_sym_let] = ACTIONS(2969), + [anon_sym_orderby] = ACTIONS(2969), + [anon_sym_ascending] = ACTIONS(2969), + [anon_sym_descending] = ACTIONS(2969), + [anon_sym_group] = ACTIONS(2969), + [anon_sym_by] = ACTIONS(2969), + [anon_sym_select] = ACTIONS(2969), + [aux_sym_preproc_if_token1] = ACTIONS(4683), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -460385,6 +459966,29 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2876] = { + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter] = STATE(6769), + [sym__parameter_array] = STATE(6785), + [sym__name] = STATE(4369), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(4068), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(4073), + [sym_type] = STATE(6070), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_identifier] = STATE(5716), + [sym__reserved_identifier] = STATE(3654), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(2876), [sym_preproc_endregion] = STATE(2876), [sym_preproc_line] = STATE(2876), @@ -460394,66 +459998,43 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2876), [sym_preproc_define] = STATE(2876), [sym_preproc_undef] = STATE(2876), - [sym__identifier_token] = ACTIONS(4749), - [anon_sym_extern] = ACTIONS(4749), - [anon_sym_alias] = ACTIONS(4749), - [anon_sym_global] = ACTIONS(4749), - [anon_sym_unsafe] = ACTIONS(4749), - [anon_sym_static] = ACTIONS(4749), - [anon_sym_LBRACK] = ACTIONS(4751), - [anon_sym_LPAREN] = ACTIONS(4751), - [anon_sym_event] = ACTIONS(4749), - [anon_sym_class] = ACTIONS(4749), - [anon_sym_ref] = ACTIONS(4749), - [anon_sym_struct] = ACTIONS(4749), - [anon_sym_enum] = ACTIONS(4749), - [anon_sym_interface] = ACTIONS(4749), - [anon_sym_delegate] = ACTIONS(4749), - [anon_sym_record] = ACTIONS(4749), - [anon_sym_abstract] = ACTIONS(4749), - [anon_sym_async] = ACTIONS(4749), - [anon_sym_const] = ACTIONS(4749), - [anon_sym_file] = ACTIONS(4749), - [anon_sym_fixed] = ACTIONS(4749), - [anon_sym_internal] = ACTIONS(4749), - [anon_sym_new] = ACTIONS(4749), - [anon_sym_override] = ACTIONS(4749), - [anon_sym_partial] = ACTIONS(4749), - [anon_sym_private] = ACTIONS(4749), - [anon_sym_protected] = ACTIONS(4749), - [anon_sym_public] = ACTIONS(4749), - [anon_sym_readonly] = ACTIONS(4749), - [anon_sym_required] = ACTIONS(4749), - [anon_sym_sealed] = ACTIONS(4749), - [anon_sym_virtual] = ACTIONS(4749), - [anon_sym_volatile] = ACTIONS(4749), - [anon_sym_where] = ACTIONS(4749), - [anon_sym_notnull] = ACTIONS(4749), - [anon_sym_unmanaged] = ACTIONS(4749), - [anon_sym_TILDE] = ACTIONS(4751), - [anon_sym_implicit] = ACTIONS(4749), - [anon_sym_explicit] = ACTIONS(4749), - [anon_sym_scoped] = ACTIONS(4749), - [anon_sym_var] = ACTIONS(4749), - [sym_predefined_type] = ACTIONS(4749), - [anon_sym_yield] = ACTIONS(4749), - [anon_sym_when] = ACTIONS(4749), - [anon_sym_from] = ACTIONS(4749), - [anon_sym_into] = ACTIONS(4749), - [anon_sym_join] = ACTIONS(4749), - [anon_sym_on] = ACTIONS(4749), - [anon_sym_equals] = ACTIONS(4749), - [anon_sym_let] = ACTIONS(4749), - [anon_sym_orderby] = ACTIONS(4749), - [anon_sym_ascending] = ACTIONS(4749), - [anon_sym_descending] = ACTIONS(4749), - [anon_sym_group] = ACTIONS(4749), - [anon_sym_by] = ACTIONS(4749), - [anon_sym_select] = ACTIONS(4749), - [aux_sym_preproc_if_token1] = ACTIONS(4751), - [aux_sym_preproc_if_token3] = ACTIONS(4751), - [aux_sym_preproc_else_token1] = ACTIONS(4751), - [aux_sym_preproc_elif_token1] = ACTIONS(4751), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3044), + [aux_sym__parameter_type_with_modifiers_repeat1] = STATE(3452), + [sym__identifier_token] = ACTIONS(2965), + [anon_sym_alias] = ACTIONS(2969), + [anon_sym_global] = ACTIONS(2969), + [anon_sym_LBRACK] = ACTIONS(4675), + [anon_sym_LPAREN] = ACTIONS(2977), + [anon_sym_RPAREN] = ACTIONS(2625), + [anon_sym_ref] = ACTIONS(4677), + [anon_sym_delegate] = ACTIONS(3438), + [anon_sym_file] = ACTIONS(2969), + [anon_sym_readonly] = ACTIONS(1097), + [anon_sym_in] = ACTIONS(1097), + [anon_sym_out] = ACTIONS(1097), + [anon_sym_where] = ACTIONS(2969), + [anon_sym_notnull] = ACTIONS(2969), + [anon_sym_unmanaged] = ACTIONS(2969), + [anon_sym_this] = ACTIONS(1097), + [anon_sym_scoped] = ACTIONS(4687), + [anon_sym_params] = ACTIONS(1111), + [anon_sym_var] = ACTIONS(2995), + [sym_predefined_type] = ACTIONS(2997), + [anon_sym_yield] = ACTIONS(2969), + [anon_sym_when] = ACTIONS(2969), + [anon_sym_from] = ACTIONS(2969), + [anon_sym_into] = ACTIONS(2969), + [anon_sym_join] = ACTIONS(2969), + [anon_sym_on] = ACTIONS(2969), + [anon_sym_equals] = ACTIONS(2969), + [anon_sym_let] = ACTIONS(2969), + [anon_sym_orderby] = ACTIONS(2969), + [anon_sym_ascending] = ACTIONS(2969), + [anon_sym_descending] = ACTIONS(2969), + [anon_sym_group] = ACTIONS(2969), + [anon_sym_by] = ACTIONS(2969), + [anon_sym_select] = ACTIONS(2969), + [aux_sym_preproc_if_token1] = ACTIONS(4683), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -460475,66 +460056,66 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2877), [sym_preproc_define] = STATE(2877), [sym_preproc_undef] = STATE(2877), - [sym__identifier_token] = ACTIONS(4016), - [anon_sym_alias] = ACTIONS(4016), - [anon_sym_global] = ACTIONS(4016), - [anon_sym_LBRACK] = ACTIONS(4066), - [anon_sym_LPAREN] = ACTIONS(4018), - [anon_sym_LBRACE] = ACTIONS(4018), - [anon_sym_file] = ACTIONS(4016), - [anon_sym_LT] = ACTIONS(4016), - [anon_sym_GT] = ACTIONS(4016), - [anon_sym_where] = ACTIONS(4016), - [anon_sym_QMARK] = ACTIONS(4069), - [anon_sym_notnull] = ACTIONS(4016), - [anon_sym_unmanaged] = ACTIONS(4016), - [anon_sym_BANG] = ACTIONS(4016), - [anon_sym_PLUS_PLUS] = ACTIONS(4018), - [anon_sym_DASH_DASH] = ACTIONS(4018), - [anon_sym_PLUS] = ACTIONS(4016), - [anon_sym_DASH] = ACTIONS(4016), - [anon_sym_STAR] = ACTIONS(4072), - [anon_sym_SLASH] = ACTIONS(4016), - [anon_sym_PERCENT] = ACTIONS(4018), - [anon_sym_CARET] = ACTIONS(4018), - [anon_sym_PIPE] = ACTIONS(4016), - [anon_sym_AMP] = ACTIONS(4016), - [anon_sym_LT_LT] = ACTIONS(4018), - [anon_sym_GT_GT] = ACTIONS(4016), - [anon_sym_GT_GT_GT] = ACTIONS(4018), - [anon_sym_EQ_EQ] = ACTIONS(4018), - [anon_sym_BANG_EQ] = ACTIONS(4018), - [anon_sym_GT_EQ] = ACTIONS(4018), - [anon_sym_LT_EQ] = ACTIONS(4018), - [anon_sym_DOT] = ACTIONS(4753), - [anon_sym_scoped] = ACTIONS(4016), - [anon_sym_var] = ACTIONS(4016), - [anon_sym_yield] = ACTIONS(4016), - [anon_sym_switch] = ACTIONS(4016), - [anon_sym_when] = ACTIONS(4016), - [sym_discard] = ACTIONS(4016), - [anon_sym_DOT_DOT] = ACTIONS(4018), - [anon_sym_and] = ACTIONS(4016), - [anon_sym_or] = ACTIONS(4016), - [anon_sym_AMP_AMP] = ACTIONS(4018), - [anon_sym_PIPE_PIPE] = ACTIONS(4018), - [anon_sym_QMARK_QMARK] = ACTIONS(4018), - [anon_sym_from] = ACTIONS(4016), - [anon_sym_into] = ACTIONS(4016), - [anon_sym_join] = ACTIONS(4016), - [anon_sym_on] = ACTIONS(4016), - [anon_sym_equals] = ACTIONS(4016), - [anon_sym_let] = ACTIONS(4016), - [anon_sym_orderby] = ACTIONS(4016), - [anon_sym_ascending] = ACTIONS(4016), - [anon_sym_descending] = ACTIONS(4016), - [anon_sym_group] = ACTIONS(4016), - [anon_sym_by] = ACTIONS(4016), - [anon_sym_select] = ACTIONS(4016), - [anon_sym_as] = ACTIONS(4016), - [anon_sym_is] = ACTIONS(4016), - [anon_sym_DASH_GT] = ACTIONS(4755), - [anon_sym_with] = ACTIONS(4016), + [sym__identifier_token] = ACTIONS(3961), + [anon_sym_alias] = ACTIONS(3961), + [anon_sym_global] = ACTIONS(3961), + [anon_sym_LBRACK] = ACTIONS(4033), + [anon_sym_LPAREN] = ACTIONS(3963), + [anon_sym_LBRACE] = ACTIONS(3963), + [anon_sym_file] = ACTIONS(3961), + [anon_sym_LT] = ACTIONS(3961), + [anon_sym_GT] = ACTIONS(3961), + [anon_sym_where] = ACTIONS(3961), + [anon_sym_QMARK] = ACTIONS(4036), + [anon_sym_notnull] = ACTIONS(3961), + [anon_sym_unmanaged] = ACTIONS(3961), + [anon_sym_BANG] = ACTIONS(3961), + [anon_sym_PLUS_PLUS] = ACTIONS(3963), + [anon_sym_DASH_DASH] = ACTIONS(3963), + [anon_sym_PLUS] = ACTIONS(3961), + [anon_sym_DASH] = ACTIONS(3961), + [anon_sym_STAR] = ACTIONS(4039), + [anon_sym_SLASH] = ACTIONS(3961), + [anon_sym_PERCENT] = ACTIONS(3963), + [anon_sym_CARET] = ACTIONS(3963), + [anon_sym_PIPE] = ACTIONS(3961), + [anon_sym_AMP] = ACTIONS(3961), + [anon_sym_LT_LT] = ACTIONS(3963), + [anon_sym_GT_GT] = ACTIONS(3961), + [anon_sym_GT_GT_GT] = ACTIONS(3963), + [anon_sym_EQ_EQ] = ACTIONS(3963), + [anon_sym_BANG_EQ] = ACTIONS(3963), + [anon_sym_GT_EQ] = ACTIONS(3963), + [anon_sym_LT_EQ] = ACTIONS(3963), + [anon_sym_DOT] = ACTIONS(4767), + [anon_sym_scoped] = ACTIONS(3961), + [anon_sym_var] = ACTIONS(3961), + [anon_sym_yield] = ACTIONS(3961), + [anon_sym_switch] = ACTIONS(3961), + [anon_sym_when] = ACTIONS(3961), + [sym_discard] = ACTIONS(3961), + [anon_sym_DOT_DOT] = ACTIONS(3963), + [anon_sym_and] = ACTIONS(3961), + [anon_sym_or] = ACTIONS(3961), + [anon_sym_AMP_AMP] = ACTIONS(3963), + [anon_sym_PIPE_PIPE] = ACTIONS(3963), + [anon_sym_QMARK_QMARK] = ACTIONS(3963), + [anon_sym_from] = ACTIONS(3961), + [anon_sym_into] = ACTIONS(3961), + [anon_sym_join] = ACTIONS(3961), + [anon_sym_on] = ACTIONS(3961), + [anon_sym_equals] = ACTIONS(3961), + [anon_sym_let] = ACTIONS(3961), + [anon_sym_orderby] = ACTIONS(3961), + [anon_sym_ascending] = ACTIONS(3961), + [anon_sym_descending] = ACTIONS(3961), + [anon_sym_group] = ACTIONS(3961), + [anon_sym_by] = ACTIONS(3961), + [anon_sym_select] = ACTIONS(3961), + [anon_sym_as] = ACTIONS(3961), + [anon_sym_is] = ACTIONS(3961), + [anon_sym_DASH_GT] = ACTIONS(4044), + [anon_sym_with] = ACTIONS(3961), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -460556,66 +460137,66 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2878), [sym_preproc_define] = STATE(2878), [sym_preproc_undef] = STATE(2878), - [sym__identifier_token] = ACTIONS(4757), - [anon_sym_extern] = ACTIONS(4757), - [anon_sym_alias] = ACTIONS(4757), - [anon_sym_global] = ACTIONS(4757), - [anon_sym_unsafe] = ACTIONS(4757), - [anon_sym_static] = ACTIONS(4757), - [anon_sym_LBRACK] = ACTIONS(4759), - [anon_sym_LPAREN] = ACTIONS(4759), - [anon_sym_event] = ACTIONS(4757), - [anon_sym_class] = ACTIONS(4757), - [anon_sym_ref] = ACTIONS(4757), - [anon_sym_struct] = ACTIONS(4757), - [anon_sym_enum] = ACTIONS(4757), - [anon_sym_interface] = ACTIONS(4757), - [anon_sym_delegate] = ACTIONS(4757), - [anon_sym_record] = ACTIONS(4757), - [anon_sym_abstract] = ACTIONS(4757), - [anon_sym_async] = ACTIONS(4757), - [anon_sym_const] = ACTIONS(4757), - [anon_sym_file] = ACTIONS(4757), - [anon_sym_fixed] = ACTIONS(4757), - [anon_sym_internal] = ACTIONS(4757), - [anon_sym_new] = ACTIONS(4757), - [anon_sym_override] = ACTIONS(4757), - [anon_sym_partial] = ACTIONS(4757), - [anon_sym_private] = ACTIONS(4757), - [anon_sym_protected] = ACTIONS(4757), - [anon_sym_public] = ACTIONS(4757), - [anon_sym_readonly] = ACTIONS(4757), - [anon_sym_required] = ACTIONS(4757), - [anon_sym_sealed] = ACTIONS(4757), - [anon_sym_virtual] = ACTIONS(4757), - [anon_sym_volatile] = ACTIONS(4757), - [anon_sym_where] = ACTIONS(4757), - [anon_sym_notnull] = ACTIONS(4757), - [anon_sym_unmanaged] = ACTIONS(4757), - [anon_sym_TILDE] = ACTIONS(4759), - [anon_sym_implicit] = ACTIONS(4757), - [anon_sym_explicit] = ACTIONS(4757), - [anon_sym_scoped] = ACTIONS(4757), - [anon_sym_var] = ACTIONS(4757), - [sym_predefined_type] = ACTIONS(4757), - [anon_sym_yield] = ACTIONS(4757), - [anon_sym_when] = ACTIONS(4757), - [anon_sym_from] = ACTIONS(4757), - [anon_sym_into] = ACTIONS(4757), - [anon_sym_join] = ACTIONS(4757), - [anon_sym_on] = ACTIONS(4757), - [anon_sym_equals] = ACTIONS(4757), - [anon_sym_let] = ACTIONS(4757), - [anon_sym_orderby] = ACTIONS(4757), - [anon_sym_ascending] = ACTIONS(4757), - [anon_sym_descending] = ACTIONS(4757), - [anon_sym_group] = ACTIONS(4757), - [anon_sym_by] = ACTIONS(4757), - [anon_sym_select] = ACTIONS(4757), - [aux_sym_preproc_if_token1] = ACTIONS(4759), - [aux_sym_preproc_if_token3] = ACTIONS(4759), - [aux_sym_preproc_else_token1] = ACTIONS(4759), - [aux_sym_preproc_elif_token1] = ACTIONS(4759), + [anon_sym_SEMI] = ACTIONS(3139), + [anon_sym_LBRACK] = ACTIONS(3139), + [anon_sym_COLON] = ACTIONS(3139), + [anon_sym_COMMA] = ACTIONS(3139), + [anon_sym_RBRACK] = ACTIONS(3139), + [anon_sym_LPAREN] = ACTIONS(3139), + [anon_sym_RPAREN] = ACTIONS(3139), + [anon_sym_RBRACE] = ACTIONS(3139), + [anon_sym_LT] = ACTIONS(3137), + [anon_sym_GT] = ACTIONS(3137), + [anon_sym_in] = ACTIONS(3139), + [anon_sym_where] = ACTIONS(3139), + [anon_sym_QMARK] = ACTIONS(3137), + [anon_sym_BANG] = ACTIONS(3137), + [anon_sym_PLUS_PLUS] = ACTIONS(3139), + [anon_sym_DASH_DASH] = ACTIONS(3139), + [anon_sym_PLUS] = ACTIONS(3137), + [anon_sym_DASH] = ACTIONS(3137), + [anon_sym_STAR] = ACTIONS(3139), + [anon_sym_SLASH] = ACTIONS(3137), + [anon_sym_PERCENT] = ACTIONS(3139), + [anon_sym_CARET] = ACTIONS(3139), + [anon_sym_PIPE] = ACTIONS(3137), + [anon_sym_AMP] = ACTIONS(3137), + [anon_sym_LT_LT] = ACTIONS(3139), + [anon_sym_GT_GT] = ACTIONS(3137), + [anon_sym_GT_GT_GT] = ACTIONS(3139), + [anon_sym_EQ_EQ] = ACTIONS(3139), + [anon_sym_BANG_EQ] = ACTIONS(3139), + [anon_sym_GT_EQ] = ACTIONS(3139), + [anon_sym_LT_EQ] = ACTIONS(3139), + [anon_sym_DOT] = ACTIONS(3137), + [anon_sym_EQ_GT] = ACTIONS(3139), + [anon_sym_while] = ACTIONS(3139), + [anon_sym_switch] = ACTIONS(3139), + [anon_sym_catch] = ACTIONS(3139), + [anon_sym_finally] = ACTIONS(3139), + [anon_sym_else] = ACTIONS(3139), + [anon_sym_DOT_DOT] = ACTIONS(3139), + [anon_sym_and] = ACTIONS(3139), + [anon_sym_or] = ACTIONS(3137), + [anon_sym_AMP_AMP] = ACTIONS(3139), + [anon_sym_PIPE_PIPE] = ACTIONS(3139), + [anon_sym_QMARK_QMARK] = ACTIONS(3139), + [anon_sym_from] = 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_group] = ACTIONS(3139), + [anon_sym_by] = ACTIONS(3139), + [anon_sym_select] = ACTIONS(3139), + [anon_sym_as] = ACTIONS(3139), + [anon_sym_is] = ACTIONS(3139), + [anon_sym_DASH_GT] = ACTIONS(3139), + [anon_sym_with] = ACTIONS(3139), + [aux_sym_preproc_if_token3] = ACTIONS(3139), + [aux_sym_preproc_else_token1] = ACTIONS(3139), + [aux_sym_preproc_elif_token1] = ACTIONS(3139), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -460637,66 +460218,66 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2879), [sym_preproc_define] = STATE(2879), [sym_preproc_undef] = STATE(2879), - [sym__identifier_token] = ACTIONS(4761), - [anon_sym_extern] = ACTIONS(4761), - [anon_sym_alias] = ACTIONS(4761), - [anon_sym_global] = ACTIONS(4761), - [anon_sym_unsafe] = ACTIONS(4761), - [anon_sym_static] = ACTIONS(4761), - [anon_sym_LBRACK] = ACTIONS(4763), - [anon_sym_LPAREN] = ACTIONS(4763), - [anon_sym_event] = ACTIONS(4761), - [anon_sym_class] = ACTIONS(4761), - [anon_sym_ref] = ACTIONS(4761), - [anon_sym_struct] = ACTIONS(4761), - [anon_sym_enum] = ACTIONS(4761), - [anon_sym_interface] = ACTIONS(4761), - [anon_sym_delegate] = ACTIONS(4761), - [anon_sym_record] = ACTIONS(4761), - [anon_sym_abstract] = ACTIONS(4761), - [anon_sym_async] = ACTIONS(4761), - [anon_sym_const] = ACTIONS(4761), - [anon_sym_file] = ACTIONS(4761), - [anon_sym_fixed] = ACTIONS(4761), - [anon_sym_internal] = ACTIONS(4761), - [anon_sym_new] = ACTIONS(4761), - [anon_sym_override] = ACTIONS(4761), - [anon_sym_partial] = ACTIONS(4761), - [anon_sym_private] = ACTIONS(4761), - [anon_sym_protected] = ACTIONS(4761), - [anon_sym_public] = ACTIONS(4761), - [anon_sym_readonly] = ACTIONS(4761), - [anon_sym_required] = ACTIONS(4761), - [anon_sym_sealed] = ACTIONS(4761), - [anon_sym_virtual] = ACTIONS(4761), - [anon_sym_volatile] = ACTIONS(4761), - [anon_sym_where] = ACTIONS(4761), - [anon_sym_notnull] = ACTIONS(4761), - [anon_sym_unmanaged] = ACTIONS(4761), - [anon_sym_TILDE] = ACTIONS(4763), - [anon_sym_implicit] = ACTIONS(4761), - [anon_sym_explicit] = ACTIONS(4761), - [anon_sym_scoped] = ACTIONS(4761), - [anon_sym_var] = ACTIONS(4761), - [sym_predefined_type] = ACTIONS(4761), - [anon_sym_yield] = ACTIONS(4761), - [anon_sym_when] = ACTIONS(4761), - [anon_sym_from] = ACTIONS(4761), - [anon_sym_into] = ACTIONS(4761), - [anon_sym_join] = ACTIONS(4761), - [anon_sym_on] = ACTIONS(4761), - [anon_sym_equals] = ACTIONS(4761), - [anon_sym_let] = ACTIONS(4761), - [anon_sym_orderby] = ACTIONS(4761), - [anon_sym_ascending] = ACTIONS(4761), - [anon_sym_descending] = ACTIONS(4761), - [anon_sym_group] = ACTIONS(4761), - [anon_sym_by] = ACTIONS(4761), - [anon_sym_select] = ACTIONS(4761), - [aux_sym_preproc_if_token1] = ACTIONS(4763), - [aux_sym_preproc_if_token3] = ACTIONS(4763), - [aux_sym_preproc_else_token1] = ACTIONS(4763), - [aux_sym_preproc_elif_token1] = ACTIONS(4763), + [anon_sym_EQ] = ACTIONS(4142), + [anon_sym_LBRACK] = ACTIONS(4140), + [anon_sym_COLON] = ACTIONS(4140), + [anon_sym_COMMA] = ACTIONS(4140), + [anon_sym_LPAREN] = ACTIONS(4140), + [anon_sym_LT] = ACTIONS(4142), + [anon_sym_GT] = ACTIONS(4142), + [anon_sym_where] = ACTIONS(4140), + [anon_sym_QMARK] = ACTIONS(4142), + [anon_sym_BANG] = ACTIONS(4142), + [anon_sym_PLUS_PLUS] = ACTIONS(4140), + [anon_sym_DASH_DASH] = ACTIONS(4140), + [anon_sym_PLUS] = ACTIONS(4142), + [anon_sym_DASH] = ACTIONS(4142), + [anon_sym_STAR] = ACTIONS(4142), + [anon_sym_SLASH] = ACTIONS(4142), + [anon_sym_PERCENT] = ACTIONS(4142), + [anon_sym_CARET] = ACTIONS(4142), + [anon_sym_PIPE] = ACTIONS(4142), + [anon_sym_AMP] = ACTIONS(4142), + [anon_sym_LT_LT] = ACTIONS(4142), + [anon_sym_GT_GT] = ACTIONS(4142), + [anon_sym_GT_GT_GT] = ACTIONS(4142), + [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(4142), + [anon_sym_switch] = ACTIONS(4140), + [anon_sym_DOT_DOT] = ACTIONS(4140), + [anon_sym_and] = ACTIONS(4140), + [anon_sym_or] = ACTIONS(4142), + [anon_sym_PLUS_EQ] = ACTIONS(4140), + [anon_sym_DASH_EQ] = ACTIONS(4140), + [anon_sym_STAR_EQ] = ACTIONS(4140), + [anon_sym_SLASH_EQ] = ACTIONS(4140), + [anon_sym_PERCENT_EQ] = ACTIONS(4140), + [anon_sym_AMP_EQ] = ACTIONS(4140), + [anon_sym_CARET_EQ] = ACTIONS(4140), + [anon_sym_PIPE_EQ] = ACTIONS(4140), + [anon_sym_LT_LT_EQ] = ACTIONS(4140), + [anon_sym_GT_GT_EQ] = ACTIONS(4140), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(4140), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(4140), + [anon_sym_AMP_AMP] = ACTIONS(4140), + [anon_sym_PIPE_PIPE] = ACTIONS(4140), + [anon_sym_QMARK_QMARK] = ACTIONS(4142), + [anon_sym_from] = ACTIONS(4140), + [anon_sym_into] = ACTIONS(4140), + [anon_sym_join] = ACTIONS(4140), + [anon_sym_let] = ACTIONS(4140), + [anon_sym_orderby] = ACTIONS(4140), + [anon_sym_ascending] = ACTIONS(4140), + [anon_sym_descending] = ACTIONS(4140), + [anon_sym_group] = ACTIONS(4140), + [anon_sym_select] = ACTIONS(4140), + [anon_sym_as] = ACTIONS(4142), + [anon_sym_is] = ACTIONS(4140), + [anon_sym_DASH_GT] = ACTIONS(4140), + [anon_sym_with] = ACTIONS(4140), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -460709,13 +460290,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2880] = { - [sym_attribute_list] = STATE(3531), - [sym__attribute_list] = STATE(3536), - [sym_modifier] = STATE(3652), - [sym_accessor_declaration] = STATE(3467), - [sym_identifier] = STATE(6442), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_attribute_list] = STATE(3531), + [sym_attribute_list] = STATE(3516), + [sym__attribute_list] = STATE(3518), + [sym_modifier] = STATE(3655), + [sym_accessor_declaration] = STATE(3443), + [sym_identifier] = STATE(6408), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_attribute_list] = STATE(3516), [sym_preproc_region] = STATE(2880), [sym_preproc_endregion] = STATE(2880), [sym_preproc_line] = STATE(2880), @@ -460725,59 +460306,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2880), [sym_preproc_define] = STATE(2880), [sym_preproc_undef] = STATE(2880), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3041), - [aux_sym__class_declaration_initializer_repeat2] = STATE(3331), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3047), + [aux_sym__class_declaration_initializer_repeat2] = STATE(3323), [aux_sym_accessor_list_repeat1] = STATE(2880), - [sym__identifier_token] = ACTIONS(4765), - [anon_sym_extern] = ACTIONS(4768), - [anon_sym_alias] = ACTIONS(4771), - [anon_sym_global] = ACTIONS(4771), - [anon_sym_unsafe] = ACTIONS(4768), - [anon_sym_static] = ACTIONS(4768), - [anon_sym_LBRACK] = ACTIONS(4774), - [anon_sym_RBRACE] = ACTIONS(4777), - [anon_sym_abstract] = ACTIONS(4768), - [anon_sym_async] = ACTIONS(4768), - [anon_sym_const] = ACTIONS(4768), - [anon_sym_file] = ACTIONS(4779), - [anon_sym_fixed] = ACTIONS(4768), - [anon_sym_internal] = ACTIONS(4768), - [anon_sym_new] = ACTIONS(4768), - [anon_sym_override] = ACTIONS(4768), - [anon_sym_partial] = ACTIONS(4768), - [anon_sym_private] = ACTIONS(4768), - [anon_sym_protected] = ACTIONS(4768), - [anon_sym_public] = ACTIONS(4768), - [anon_sym_readonly] = ACTIONS(4768), - [anon_sym_required] = ACTIONS(4768), - [anon_sym_sealed] = ACTIONS(4768), - [anon_sym_virtual] = ACTIONS(4768), - [anon_sym_volatile] = ACTIONS(4768), - [anon_sym_where] = ACTIONS(4771), - [anon_sym_notnull] = ACTIONS(4771), - [anon_sym_unmanaged] = ACTIONS(4771), - [anon_sym_get] = ACTIONS(4782), - [anon_sym_set] = ACTIONS(4782), - [anon_sym_add] = ACTIONS(4782), - [anon_sym_remove] = ACTIONS(4782), - [anon_sym_init] = ACTIONS(4782), - [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(4785), + [sym__identifier_token] = ACTIONS(4769), + [anon_sym_extern] = ACTIONS(4772), + [anon_sym_alias] = ACTIONS(4775), + [anon_sym_global] = ACTIONS(4775), + [anon_sym_unsafe] = ACTIONS(4772), + [anon_sym_static] = ACTIONS(4772), + [anon_sym_LBRACK] = ACTIONS(4778), + [anon_sym_RBRACE] = ACTIONS(4781), + [anon_sym_abstract] = ACTIONS(4772), + [anon_sym_async] = ACTIONS(4772), + [anon_sym_const] = ACTIONS(4772), + [anon_sym_file] = ACTIONS(4783), + [anon_sym_fixed] = ACTIONS(4772), + [anon_sym_internal] = ACTIONS(4772), + [anon_sym_new] = ACTIONS(4772), + [anon_sym_override] = ACTIONS(4772), + [anon_sym_partial] = ACTIONS(4772), + [anon_sym_private] = ACTIONS(4772), + [anon_sym_protected] = ACTIONS(4772), + [anon_sym_public] = ACTIONS(4772), + [anon_sym_readonly] = ACTIONS(4772), + [anon_sym_required] = ACTIONS(4772), + [anon_sym_sealed] = ACTIONS(4772), + [anon_sym_virtual] = ACTIONS(4772), + [anon_sym_volatile] = ACTIONS(4772), + [anon_sym_where] = ACTIONS(4775), + [anon_sym_notnull] = ACTIONS(4775), + [anon_sym_unmanaged] = ACTIONS(4775), + [anon_sym_get] = ACTIONS(4786), + [anon_sym_set] = ACTIONS(4786), + [anon_sym_add] = ACTIONS(4786), + [anon_sym_remove] = ACTIONS(4786), + [anon_sym_init] = ACTIONS(4786), + [anon_sym_scoped] = ACTIONS(4775), + [anon_sym_var] = ACTIONS(4775), + [anon_sym_yield] = ACTIONS(4775), + [anon_sym_when] = ACTIONS(4775), + [anon_sym_from] = ACTIONS(4775), + [anon_sym_into] = ACTIONS(4775), + [anon_sym_join] = ACTIONS(4775), + [anon_sym_on] = ACTIONS(4775), + [anon_sym_equals] = ACTIONS(4775), + [anon_sym_let] = ACTIONS(4775), + [anon_sym_orderby] = ACTIONS(4775), + [anon_sym_ascending] = ACTIONS(4775), + [anon_sym_descending] = ACTIONS(4775), + [anon_sym_group] = ACTIONS(4775), + [anon_sym_by] = ACTIONS(4775), + [anon_sym_select] = ACTIONS(4775), + [aux_sym_preproc_if_token1] = ACTIONS(4789), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -460799,66 +460380,66 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2881), [sym_preproc_define] = STATE(2881), [sym_preproc_undef] = STATE(2881), - [sym__identifier_token] = ACTIONS(4016), - [anon_sym_alias] = ACTIONS(4016), - [anon_sym_global] = ACTIONS(4016), - [anon_sym_LBRACK] = ACTIONS(4066), - [anon_sym_LPAREN] = ACTIONS(4018), - [anon_sym_LBRACE] = ACTIONS(4018), - [anon_sym_file] = ACTIONS(4016), - [anon_sym_LT] = ACTIONS(4016), - [anon_sym_GT] = ACTIONS(4016), - [anon_sym_where] = ACTIONS(4016), - [anon_sym_QMARK] = ACTIONS(4069), - [anon_sym_notnull] = ACTIONS(4016), - [anon_sym_unmanaged] = ACTIONS(4016), - [anon_sym_BANG] = ACTIONS(4016), - [anon_sym_PLUS_PLUS] = ACTIONS(4018), - [anon_sym_DASH_DASH] = ACTIONS(4018), - [anon_sym_PLUS] = ACTIONS(4016), - [anon_sym_DASH] = ACTIONS(4016), - [anon_sym_STAR] = ACTIONS(4072), - [anon_sym_SLASH] = ACTIONS(4016), - [anon_sym_PERCENT] = ACTIONS(4018), - [anon_sym_CARET] = ACTIONS(4018), - [anon_sym_PIPE] = ACTIONS(4016), - [anon_sym_AMP] = ACTIONS(4016), - [anon_sym_LT_LT] = ACTIONS(4018), - [anon_sym_GT_GT] = ACTIONS(4016), - [anon_sym_GT_GT_GT] = ACTIONS(4018), - [anon_sym_EQ_EQ] = ACTIONS(4018), - [anon_sym_BANG_EQ] = ACTIONS(4018), - [anon_sym_GT_EQ] = ACTIONS(4018), - [anon_sym_LT_EQ] = ACTIONS(4018), - [anon_sym_DOT] = ACTIONS(4788), - [anon_sym_scoped] = ACTIONS(4016), - [anon_sym_var] = ACTIONS(4016), - [anon_sym_yield] = ACTIONS(4016), - [anon_sym_switch] = ACTIONS(4016), - [anon_sym_when] = ACTIONS(4016), - [sym_discard] = ACTIONS(4016), - [anon_sym_DOT_DOT] = ACTIONS(4018), - [anon_sym_and] = ACTIONS(4016), - [anon_sym_or] = ACTIONS(4016), - [anon_sym_AMP_AMP] = ACTIONS(4018), - [anon_sym_PIPE_PIPE] = ACTIONS(4018), - [anon_sym_QMARK_QMARK] = ACTIONS(4018), - [anon_sym_from] = ACTIONS(4016), - [anon_sym_into] = ACTIONS(4016), - [anon_sym_join] = ACTIONS(4016), - [anon_sym_on] = ACTIONS(4016), - [anon_sym_equals] = ACTIONS(4016), - [anon_sym_let] = ACTIONS(4016), - [anon_sym_orderby] = ACTIONS(4016), - [anon_sym_ascending] = ACTIONS(4016), - [anon_sym_descending] = ACTIONS(4016), - [anon_sym_group] = ACTIONS(4016), - [anon_sym_by] = ACTIONS(4016), - [anon_sym_select] = ACTIONS(4016), - [anon_sym_as] = ACTIONS(4016), - [anon_sym_is] = ACTIONS(4016), - [anon_sym_DASH_GT] = ACTIONS(4077), - [anon_sym_with] = ACTIONS(4016), + [sym__identifier_token] = ACTIONS(3961), + [anon_sym_alias] = ACTIONS(3961), + [anon_sym_global] = ACTIONS(3961), + [anon_sym_LBRACK] = ACTIONS(4033), + [anon_sym_LPAREN] = ACTIONS(3963), + [anon_sym_LBRACE] = ACTIONS(3963), + [anon_sym_file] = ACTIONS(3961), + [anon_sym_LT] = ACTIONS(3961), + [anon_sym_GT] = ACTIONS(3961), + [anon_sym_where] = ACTIONS(3961), + [anon_sym_QMARK] = ACTIONS(4036), + [anon_sym_notnull] = ACTIONS(3961), + [anon_sym_unmanaged] = ACTIONS(3961), + [anon_sym_BANG] = ACTIONS(3961), + [anon_sym_PLUS_PLUS] = ACTIONS(3963), + [anon_sym_DASH_DASH] = ACTIONS(3963), + [anon_sym_PLUS] = ACTIONS(3961), + [anon_sym_DASH] = ACTIONS(3961), + [anon_sym_STAR] = ACTIONS(4039), + [anon_sym_SLASH] = ACTIONS(3961), + [anon_sym_PERCENT] = ACTIONS(3963), + [anon_sym_CARET] = ACTIONS(3963), + [anon_sym_PIPE] = ACTIONS(3961), + [anon_sym_AMP] = ACTIONS(3961), + [anon_sym_LT_LT] = ACTIONS(3963), + [anon_sym_GT_GT] = ACTIONS(3961), + [anon_sym_GT_GT_GT] = ACTIONS(3963), + [anon_sym_EQ_EQ] = ACTIONS(3963), + [anon_sym_BANG_EQ] = ACTIONS(3963), + [anon_sym_GT_EQ] = ACTIONS(3963), + [anon_sym_LT_EQ] = ACTIONS(3963), + [anon_sym_DOT] = ACTIONS(4792), + [anon_sym_scoped] = ACTIONS(3961), + [anon_sym_var] = ACTIONS(3961), + [anon_sym_yield] = ACTIONS(3961), + [anon_sym_switch] = ACTIONS(3961), + [anon_sym_when] = ACTIONS(3961), + [sym_discard] = ACTIONS(3961), + [anon_sym_DOT_DOT] = ACTIONS(3963), + [anon_sym_and] = ACTIONS(3961), + [anon_sym_or] = ACTIONS(3961), + [anon_sym_AMP_AMP] = ACTIONS(3963), + [anon_sym_PIPE_PIPE] = ACTIONS(3963), + [anon_sym_QMARK_QMARK] = ACTIONS(3963), + [anon_sym_from] = ACTIONS(3961), + [anon_sym_into] = ACTIONS(3961), + [anon_sym_join] = ACTIONS(3961), + [anon_sym_on] = ACTIONS(3961), + [anon_sym_equals] = ACTIONS(3961), + [anon_sym_let] = ACTIONS(3961), + [anon_sym_orderby] = ACTIONS(3961), + [anon_sym_ascending] = ACTIONS(3961), + [anon_sym_descending] = ACTIONS(3961), + [anon_sym_group] = ACTIONS(3961), + [anon_sym_by] = ACTIONS(3961), + [anon_sym_select] = ACTIONS(3961), + [anon_sym_as] = ACTIONS(3961), + [anon_sym_is] = ACTIONS(3961), + [anon_sym_DASH_GT] = ACTIONS(4794), + [anon_sym_with] = ACTIONS(3961), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -460880,66 +460461,66 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2882), [sym_preproc_define] = STATE(2882), [sym_preproc_undef] = STATE(2882), - [anon_sym_SEMI] = ACTIONS(3143), - [anon_sym_LBRACK] = ACTIONS(3143), - [anon_sym_COLON] = ACTIONS(3143), - [anon_sym_COMMA] = ACTIONS(3143), - [anon_sym_RBRACK] = ACTIONS(3143), - [anon_sym_LPAREN] = ACTIONS(3143), - [anon_sym_RPAREN] = ACTIONS(3143), - [anon_sym_RBRACE] = ACTIONS(3143), - [anon_sym_LT] = ACTIONS(3141), - [anon_sym_GT] = ACTIONS(3141), - [anon_sym_in] = ACTIONS(3143), - [anon_sym_where] = ACTIONS(3143), - [anon_sym_QMARK] = ACTIONS(3141), - [anon_sym_BANG] = ACTIONS(3141), - [anon_sym_PLUS_PLUS] = ACTIONS(3143), - [anon_sym_DASH_DASH] = ACTIONS(3143), - [anon_sym_PLUS] = ACTIONS(3141), - [anon_sym_DASH] = ACTIONS(3141), - [anon_sym_STAR] = ACTIONS(3143), - [anon_sym_SLASH] = ACTIONS(3141), - [anon_sym_PERCENT] = ACTIONS(3143), - [anon_sym_CARET] = ACTIONS(3143), - [anon_sym_PIPE] = ACTIONS(3141), - [anon_sym_AMP] = ACTIONS(3141), - [anon_sym_LT_LT] = ACTIONS(3143), - [anon_sym_GT_GT] = ACTIONS(3141), - [anon_sym_GT_GT_GT] = ACTIONS(3143), - [anon_sym_EQ_EQ] = ACTIONS(3143), - [anon_sym_BANG_EQ] = ACTIONS(3143), - [anon_sym_GT_EQ] = ACTIONS(3143), - [anon_sym_LT_EQ] = ACTIONS(3143), - [anon_sym_DOT] = ACTIONS(3141), - [anon_sym_EQ_GT] = ACTIONS(3143), - [anon_sym_while] = ACTIONS(3143), - [anon_sym_switch] = ACTIONS(3143), - [anon_sym_catch] = ACTIONS(3143), - [anon_sym_finally] = ACTIONS(3143), - [anon_sym_else] = ACTIONS(3143), - [anon_sym_DOT_DOT] = ACTIONS(3143), - [anon_sym_and] = ACTIONS(3143), - [anon_sym_or] = ACTIONS(3141), - [anon_sym_AMP_AMP] = ACTIONS(3143), - [anon_sym_PIPE_PIPE] = ACTIONS(3143), - [anon_sym_QMARK_QMARK] = ACTIONS(3143), - [anon_sym_from] = ACTIONS(3143), - [anon_sym_join] = ACTIONS(3143), - [anon_sym_on] = ACTIONS(3143), - [anon_sym_equals] = ACTIONS(3143), - [anon_sym_let] = ACTIONS(3143), - [anon_sym_orderby] = ACTIONS(3143), - [anon_sym_group] = ACTIONS(3143), - [anon_sym_by] = ACTIONS(3143), - [anon_sym_select] = ACTIONS(3143), - [anon_sym_as] = ACTIONS(3143), - [anon_sym_is] = ACTIONS(3143), - [anon_sym_DASH_GT] = ACTIONS(3143), - [anon_sym_with] = ACTIONS(3143), - [aux_sym_preproc_if_token3] = ACTIONS(3143), - [aux_sym_preproc_else_token1] = ACTIONS(3143), - [aux_sym_preproc_elif_token1] = ACTIONS(3143), + [sym__identifier_token] = ACTIONS(3961), + [anon_sym_alias] = ACTIONS(3961), + [anon_sym_global] = ACTIONS(3961), + [anon_sym_LBRACK] = ACTIONS(4033), + [anon_sym_LPAREN] = ACTIONS(3963), + [anon_sym_LBRACE] = ACTIONS(3963), + [anon_sym_file] = ACTIONS(3961), + [anon_sym_LT] = ACTIONS(3961), + [anon_sym_GT] = ACTIONS(3961), + [anon_sym_where] = ACTIONS(3961), + [anon_sym_QMARK] = ACTIONS(4036), + [anon_sym_notnull] = ACTIONS(3961), + [anon_sym_unmanaged] = ACTIONS(3961), + [anon_sym_BANG] = ACTIONS(3961), + [anon_sym_PLUS_PLUS] = ACTIONS(3963), + [anon_sym_DASH_DASH] = ACTIONS(3963), + [anon_sym_PLUS] = ACTIONS(3961), + [anon_sym_DASH] = ACTIONS(3961), + [anon_sym_STAR] = ACTIONS(4039), + [anon_sym_SLASH] = ACTIONS(3961), + [anon_sym_PERCENT] = ACTIONS(3963), + [anon_sym_CARET] = ACTIONS(3963), + [anon_sym_PIPE] = ACTIONS(3961), + [anon_sym_AMP] = ACTIONS(3961), + [anon_sym_LT_LT] = ACTIONS(3963), + [anon_sym_GT_GT] = ACTIONS(3961), + [anon_sym_GT_GT_GT] = ACTIONS(3963), + [anon_sym_EQ_EQ] = ACTIONS(3963), + [anon_sym_BANG_EQ] = ACTIONS(3963), + [anon_sym_GT_EQ] = ACTIONS(3963), + [anon_sym_LT_EQ] = ACTIONS(3963), + [anon_sym_DOT] = ACTIONS(4796), + [anon_sym_scoped] = ACTIONS(3961), + [anon_sym_var] = ACTIONS(3961), + [anon_sym_yield] = ACTIONS(3961), + [anon_sym_switch] = ACTIONS(3961), + [anon_sym_when] = ACTIONS(3961), + [sym_discard] = ACTIONS(3961), + [anon_sym_DOT_DOT] = ACTIONS(3963), + [anon_sym_and] = ACTIONS(3961), + [anon_sym_or] = ACTIONS(3961), + [anon_sym_AMP_AMP] = ACTIONS(3963), + [anon_sym_PIPE_PIPE] = ACTIONS(3963), + [anon_sym_QMARK_QMARK] = ACTIONS(3963), + [anon_sym_from] = ACTIONS(3961), + [anon_sym_into] = ACTIONS(3961), + [anon_sym_join] = ACTIONS(3961), + [anon_sym_on] = ACTIONS(3961), + [anon_sym_equals] = ACTIONS(3961), + [anon_sym_let] = ACTIONS(3961), + [anon_sym_orderby] = ACTIONS(3961), + [anon_sym_ascending] = ACTIONS(3961), + [anon_sym_descending] = ACTIONS(3961), + [anon_sym_group] = ACTIONS(3961), + [anon_sym_by] = ACTIONS(3961), + [anon_sym_select] = ACTIONS(3961), + [anon_sym_as] = ACTIONS(3961), + [anon_sym_is] = ACTIONS(3961), + [anon_sym_DASH_GT] = ACTIONS(4094), + [anon_sym_with] = ACTIONS(3961), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -460961,9 +460542,171 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2883), [sym_preproc_define] = STATE(2883), [sym_preproc_undef] = STATE(2883), - [anon_sym_EQ] = ACTIONS(4136), + [sym__identifier_token] = ACTIONS(3961), + [anon_sym_alias] = ACTIONS(3961), + [anon_sym_global] = ACTIONS(3961), + [anon_sym_LBRACK] = ACTIONS(4033), + [anon_sym_LPAREN] = ACTIONS(3963), + [anon_sym_LBRACE] = ACTIONS(3963), + [anon_sym_file] = ACTIONS(3961), + [anon_sym_LT] = ACTIONS(3961), + [anon_sym_GT] = ACTIONS(3961), + [anon_sym_where] = ACTIONS(3961), + [anon_sym_QMARK] = ACTIONS(4036), + [anon_sym_notnull] = ACTIONS(3961), + [anon_sym_unmanaged] = ACTIONS(3961), + [anon_sym_BANG] = ACTIONS(3961), + [anon_sym_PLUS_PLUS] = ACTIONS(3963), + [anon_sym_DASH_DASH] = ACTIONS(3963), + [anon_sym_PLUS] = ACTIONS(3961), + [anon_sym_DASH] = ACTIONS(3961), + [anon_sym_STAR] = ACTIONS(4039), + [anon_sym_SLASH] = ACTIONS(3961), + [anon_sym_PERCENT] = ACTIONS(3963), + [anon_sym_CARET] = ACTIONS(3963), + [anon_sym_PIPE] = ACTIONS(3961), + [anon_sym_AMP] = ACTIONS(3961), + [anon_sym_LT_LT] = ACTIONS(3963), + [anon_sym_GT_GT] = ACTIONS(3961), + [anon_sym_GT_GT_GT] = ACTIONS(3963), + [anon_sym_EQ_EQ] = ACTIONS(3963), + [anon_sym_BANG_EQ] = ACTIONS(3963), + [anon_sym_GT_EQ] = ACTIONS(3963), + [anon_sym_LT_EQ] = ACTIONS(3963), + [anon_sym_DOT] = ACTIONS(4798), + [anon_sym_scoped] = ACTIONS(3961), + [anon_sym_var] = ACTIONS(3961), + [anon_sym_yield] = ACTIONS(3961), + [anon_sym_switch] = ACTIONS(3961), + [anon_sym_when] = ACTIONS(3961), + [sym_discard] = ACTIONS(3961), + [anon_sym_DOT_DOT] = ACTIONS(3963), + [anon_sym_and] = ACTIONS(3961), + [anon_sym_or] = ACTIONS(3961), + [anon_sym_AMP_AMP] = ACTIONS(3963), + [anon_sym_PIPE_PIPE] = ACTIONS(3963), + [anon_sym_QMARK_QMARK] = ACTIONS(3963), + [anon_sym_from] = ACTIONS(3961), + [anon_sym_into] = ACTIONS(3961), + [anon_sym_join] = ACTIONS(3961), + [anon_sym_on] = ACTIONS(3961), + [anon_sym_equals] = ACTIONS(3961), + [anon_sym_let] = ACTIONS(3961), + [anon_sym_orderby] = ACTIONS(3961), + [anon_sym_ascending] = ACTIONS(3961), + [anon_sym_descending] = ACTIONS(3961), + [anon_sym_group] = ACTIONS(3961), + [anon_sym_by] = ACTIONS(3961), + [anon_sym_select] = ACTIONS(3961), + [anon_sym_as] = ACTIONS(3961), + [anon_sym_is] = ACTIONS(3961), + [anon_sym_DASH_GT] = ACTIONS(4794), + [anon_sym_with] = ACTIONS(3961), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_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_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), + [anon_sym_EQ] = ACTIONS(4118), + [anon_sym_LBRACK] = ACTIONS(4152), + [anon_sym_COLON] = ACTIONS(4116), + [anon_sym_COMMA] = ACTIONS(4152), + [anon_sym_LPAREN] = ACTIONS(4152), + [anon_sym_LT] = ACTIONS(4154), + [anon_sym_GT] = ACTIONS(4154), + [anon_sym_where] = ACTIONS(4152), + [anon_sym_QMARK] = ACTIONS(4154), + [anon_sym_BANG] = ACTIONS(4154), + [anon_sym_PLUS_PLUS] = ACTIONS(4152), + [anon_sym_DASH_DASH] = ACTIONS(4152), + [anon_sym_PLUS] = ACTIONS(4154), + [anon_sym_DASH] = ACTIONS(4154), + [anon_sym_STAR] = ACTIONS(4154), + [anon_sym_SLASH] = ACTIONS(4154), + [anon_sym_PERCENT] = ACTIONS(4154), + [anon_sym_CARET] = ACTIONS(4154), + [anon_sym_PIPE] = ACTIONS(4154), + [anon_sym_AMP] = ACTIONS(4154), + [anon_sym_LT_LT] = ACTIONS(4154), + [anon_sym_GT_GT] = ACTIONS(4154), + [anon_sym_GT_GT_GT] = ACTIONS(4154), + [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(4154), + [anon_sym_switch] = ACTIONS(4152), + [anon_sym_DOT_DOT] = ACTIONS(4152), + [anon_sym_and] = ACTIONS(4152), + [anon_sym_or] = ACTIONS(4154), + [anon_sym_PLUS_EQ] = ACTIONS(4116), + [anon_sym_DASH_EQ] = ACTIONS(4116), + [anon_sym_STAR_EQ] = ACTIONS(4116), + [anon_sym_SLASH_EQ] = ACTIONS(4116), + [anon_sym_PERCENT_EQ] = ACTIONS(4116), + [anon_sym_AMP_EQ] = ACTIONS(4116), + [anon_sym_CARET_EQ] = ACTIONS(4116), + [anon_sym_PIPE_EQ] = ACTIONS(4116), + [anon_sym_LT_LT_EQ] = ACTIONS(4116), + [anon_sym_GT_GT_EQ] = ACTIONS(4116), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(4116), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(4116), + [anon_sym_AMP_AMP] = ACTIONS(4152), + [anon_sym_PIPE_PIPE] = ACTIONS(4152), + [anon_sym_QMARK_QMARK] = ACTIONS(4154), + [anon_sym_from] = ACTIONS(4152), + [anon_sym_into] = ACTIONS(4152), + [anon_sym_join] = ACTIONS(4152), + [anon_sym_let] = ACTIONS(4152), + [anon_sym_orderby] = ACTIONS(4152), + [anon_sym_ascending] = ACTIONS(4152), + [anon_sym_descending] = ACTIONS(4152), + [anon_sym_group] = ACTIONS(4152), + [anon_sym_select] = ACTIONS(4152), + [anon_sym_as] = ACTIONS(4154), + [anon_sym_is] = ACTIONS(4152), + [anon_sym_DASH_GT] = ACTIONS(4152), + [anon_sym_with] = 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), + }, + [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), + [anon_sym_EQ] = ACTIONS(4150), [anon_sym_LBRACK] = ACTIONS(4148), - [anon_sym_COLON] = ACTIONS(4134), + [anon_sym_COLON] = ACTIONS(4148), [anon_sym_COMMA] = ACTIONS(4148), [anon_sym_LPAREN] = ACTIONS(4148), [anon_sym_LT] = ACTIONS(4150), @@ -460993,18 +460736,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT_DOT] = ACTIONS(4148), [anon_sym_and] = ACTIONS(4148), [anon_sym_or] = ACTIONS(4150), - [anon_sym_PLUS_EQ] = ACTIONS(4134), - [anon_sym_DASH_EQ] = ACTIONS(4134), - [anon_sym_STAR_EQ] = ACTIONS(4134), - [anon_sym_SLASH_EQ] = ACTIONS(4134), - [anon_sym_PERCENT_EQ] = ACTIONS(4134), - [anon_sym_AMP_EQ] = ACTIONS(4134), - [anon_sym_CARET_EQ] = ACTIONS(4134), - [anon_sym_PIPE_EQ] = ACTIONS(4134), - [anon_sym_LT_LT_EQ] = ACTIONS(4134), - [anon_sym_GT_GT_EQ] = ACTIONS(4134), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(4134), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(4134), + [anon_sym_PLUS_EQ] = ACTIONS(4148), + [anon_sym_DASH_EQ] = ACTIONS(4148), + [anon_sym_STAR_EQ] = ACTIONS(4148), + [anon_sym_SLASH_EQ] = ACTIONS(4148), + [anon_sym_PERCENT_EQ] = ACTIONS(4148), + [anon_sym_AMP_EQ] = ACTIONS(4148), + [anon_sym_CARET_EQ] = ACTIONS(4148), + [anon_sym_PIPE_EQ] = ACTIONS(4148), + [anon_sym_LT_LT_EQ] = ACTIONS(4148), + [anon_sym_GT_GT_EQ] = ACTIONS(4148), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(4148), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(4148), [anon_sym_AMP_AMP] = ACTIONS(4148), [anon_sym_PIPE_PIPE] = ACTIONS(4148), [anon_sym_QMARK_QMARK] = ACTIONS(4150), @@ -461032,168 +460775,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), }, - [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(4016), - [anon_sym_alias] = ACTIONS(4016), - [anon_sym_global] = ACTIONS(4016), - [anon_sym_LBRACK] = ACTIONS(4066), - [anon_sym_LPAREN] = ACTIONS(4018), - [anon_sym_LBRACE] = ACTIONS(4018), - [anon_sym_file] = ACTIONS(4016), - [anon_sym_LT] = ACTIONS(4016), - [anon_sym_GT] = ACTIONS(4016), - [anon_sym_where] = ACTIONS(4016), - [anon_sym_QMARK] = ACTIONS(4069), - [anon_sym_notnull] = ACTIONS(4016), - [anon_sym_unmanaged] = ACTIONS(4016), - [anon_sym_BANG] = ACTIONS(4016), - [anon_sym_PLUS_PLUS] = ACTIONS(4018), - [anon_sym_DASH_DASH] = ACTIONS(4018), - [anon_sym_PLUS] = ACTIONS(4016), - [anon_sym_DASH] = ACTIONS(4016), - [anon_sym_STAR] = ACTIONS(4072), - [anon_sym_SLASH] = ACTIONS(4016), - [anon_sym_PERCENT] = ACTIONS(4018), - [anon_sym_CARET] = ACTIONS(4018), - [anon_sym_PIPE] = ACTIONS(4016), - [anon_sym_AMP] = ACTIONS(4016), - [anon_sym_LT_LT] = ACTIONS(4018), - [anon_sym_GT_GT] = ACTIONS(4016), - [anon_sym_GT_GT_GT] = ACTIONS(4018), - [anon_sym_EQ_EQ] = ACTIONS(4018), - [anon_sym_BANG_EQ] = ACTIONS(4018), - [anon_sym_GT_EQ] = ACTIONS(4018), - [anon_sym_LT_EQ] = ACTIONS(4018), - [anon_sym_DOT] = ACTIONS(4790), - [anon_sym_scoped] = ACTIONS(4016), - [anon_sym_var] = ACTIONS(4016), - [anon_sym_yield] = ACTIONS(4016), - [anon_sym_switch] = ACTIONS(4016), - [anon_sym_when] = ACTIONS(4016), - [sym_discard] = ACTIONS(4016), - [anon_sym_DOT_DOT] = ACTIONS(4018), - [anon_sym_and] = ACTIONS(4016), - [anon_sym_or] = ACTIONS(4016), - [anon_sym_AMP_AMP] = ACTIONS(4018), - [anon_sym_PIPE_PIPE] = ACTIONS(4018), - [anon_sym_QMARK_QMARK] = ACTIONS(4018), - [anon_sym_from] = ACTIONS(4016), - [anon_sym_into] = ACTIONS(4016), - [anon_sym_join] = ACTIONS(4016), - [anon_sym_on] = ACTIONS(4016), - [anon_sym_equals] = ACTIONS(4016), - [anon_sym_let] = ACTIONS(4016), - [anon_sym_orderby] = ACTIONS(4016), - [anon_sym_ascending] = ACTIONS(4016), - [anon_sym_descending] = ACTIONS(4016), - [anon_sym_group] = ACTIONS(4016), - [anon_sym_by] = ACTIONS(4016), - [anon_sym_select] = ACTIONS(4016), - [anon_sym_as] = ACTIONS(4016), - [anon_sym_is] = ACTIONS(4016), - [anon_sym_DASH_GT] = ACTIONS(4102), - [anon_sym_with] = ACTIONS(4016), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_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(4016), - [anon_sym_alias] = ACTIONS(4016), - [anon_sym_global] = ACTIONS(4016), - [anon_sym_LBRACK] = ACTIONS(4066), - [anon_sym_LPAREN] = ACTIONS(4018), - [anon_sym_LBRACE] = ACTIONS(4018), - [anon_sym_file] = ACTIONS(4016), - [anon_sym_LT] = ACTIONS(4016), - [anon_sym_GT] = ACTIONS(4016), - [anon_sym_where] = ACTIONS(4016), - [anon_sym_QMARK] = ACTIONS(4069), - [anon_sym_notnull] = ACTIONS(4016), - [anon_sym_unmanaged] = ACTIONS(4016), - [anon_sym_BANG] = ACTIONS(4016), - [anon_sym_PLUS_PLUS] = ACTIONS(4018), - [anon_sym_DASH_DASH] = ACTIONS(4018), - [anon_sym_PLUS] = ACTIONS(4016), - [anon_sym_DASH] = ACTIONS(4016), - [anon_sym_STAR] = ACTIONS(4072), - [anon_sym_SLASH] = ACTIONS(4016), - [anon_sym_PERCENT] = ACTIONS(4018), - [anon_sym_CARET] = ACTIONS(4018), - [anon_sym_PIPE] = ACTIONS(4016), - [anon_sym_AMP] = ACTIONS(4016), - [anon_sym_LT_LT] = ACTIONS(4018), - [anon_sym_GT_GT] = ACTIONS(4016), - [anon_sym_GT_GT_GT] = ACTIONS(4018), - [anon_sym_EQ_EQ] = ACTIONS(4018), - [anon_sym_BANG_EQ] = ACTIONS(4018), - [anon_sym_GT_EQ] = ACTIONS(4018), - [anon_sym_LT_EQ] = ACTIONS(4018), - [anon_sym_DOT] = ACTIONS(4792), - [anon_sym_scoped] = ACTIONS(4016), - [anon_sym_var] = ACTIONS(4016), - [anon_sym_yield] = ACTIONS(4016), - [anon_sym_switch] = ACTIONS(4016), - [anon_sym_when] = ACTIONS(4016), - [sym_discard] = ACTIONS(4016), - [anon_sym_DOT_DOT] = ACTIONS(4018), - [anon_sym_and] = ACTIONS(4016), - [anon_sym_or] = ACTIONS(4016), - [anon_sym_AMP_AMP] = ACTIONS(4018), - [anon_sym_PIPE_PIPE] = ACTIONS(4018), - [anon_sym_QMARK_QMARK] = ACTIONS(4018), - [anon_sym_from] = ACTIONS(4016), - [anon_sym_into] = ACTIONS(4016), - [anon_sym_join] = ACTIONS(4016), - [anon_sym_on] = ACTIONS(4016), - [anon_sym_equals] = ACTIONS(4016), - [anon_sym_let] = ACTIONS(4016), - [anon_sym_orderby] = ACTIONS(4016), - [anon_sym_ascending] = ACTIONS(4016), - [anon_sym_descending] = ACTIONS(4016), - [anon_sym_group] = ACTIONS(4016), - [anon_sym_by] = ACTIONS(4016), - [anon_sym_select] = ACTIONS(4016), - [anon_sym_as] = ACTIONS(4016), - [anon_sym_is] = ACTIONS(4016), - [anon_sym_DASH_GT] = ACTIONS(4755), - [anon_sym_with] = ACTIONS(4016), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - }, [2886] = { [sym_preproc_region] = STATE(2886), [sym_preproc_endregion] = STATE(2886), @@ -461204,66 +460785,66 @@ 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(4140), - [anon_sym_alias] = ACTIONS(4140), - [anon_sym_global] = ACTIONS(4140), - [anon_sym_LBRACK] = ACTIONS(2957), - [anon_sym_COLON] = ACTIONS(4142), - [anon_sym_LPAREN] = ACTIONS(4142), - [anon_sym_file] = ACTIONS(4140), - [anon_sym_LT] = ACTIONS(2955), - [anon_sym_GT] = ACTIONS(2955), - [anon_sym_where] = ACTIONS(4140), - [anon_sym_QMARK] = ACTIONS(2955), - [anon_sym_notnull] = ACTIONS(4140), - [anon_sym_unmanaged] = ACTIONS(4140), - [anon_sym_BANG] = ACTIONS(2955), - [anon_sym_PLUS_PLUS] = ACTIONS(2957), - [anon_sym_DASH_DASH] = ACTIONS(2957), - [anon_sym_PLUS] = ACTIONS(2955), - [anon_sym_DASH] = ACTIONS(2955), - [anon_sym_STAR] = ACTIONS(2957), - [anon_sym_SLASH] = ACTIONS(2955), - [anon_sym_PERCENT] = ACTIONS(2957), - [anon_sym_CARET] = ACTIONS(2957), - [anon_sym_PIPE] = ACTIONS(2955), - [anon_sym_AMP] = ACTIONS(2955), - [anon_sym_LT_LT] = ACTIONS(2957), - [anon_sym_GT_GT] = ACTIONS(2955), - [anon_sym_GT_GT_GT] = ACTIONS(2957), - [anon_sym_EQ_EQ] = ACTIONS(2957), - [anon_sym_BANG_EQ] = ACTIONS(2957), - [anon_sym_GT_EQ] = ACTIONS(2957), - [anon_sym_LT_EQ] = ACTIONS(2957), - [anon_sym_DOT] = ACTIONS(2955), - [anon_sym_scoped] = ACTIONS(4140), - [anon_sym_var] = ACTIONS(4140), - [anon_sym_yield] = ACTIONS(4140), - [anon_sym_switch] = ACTIONS(2955), - [anon_sym_when] = ACTIONS(4140), - [sym_discard] = ACTIONS(4140), - [anon_sym_DOT_DOT] = ACTIONS(2957), - [anon_sym_and] = ACTIONS(4140), - [anon_sym_or] = ACTIONS(4140), - [anon_sym_AMP_AMP] = ACTIONS(2957), - [anon_sym_PIPE_PIPE] = ACTIONS(2957), - [anon_sym_QMARK_QMARK] = ACTIONS(2957), - [anon_sym_from] = ACTIONS(4140), - [anon_sym_into] = ACTIONS(4140), - [anon_sym_join] = ACTIONS(4140), - [anon_sym_on] = ACTIONS(4140), - [anon_sym_equals] = ACTIONS(4140), - [anon_sym_let] = ACTIONS(4140), - [anon_sym_orderby] = ACTIONS(4140), - [anon_sym_ascending] = ACTIONS(4140), - [anon_sym_descending] = ACTIONS(4140), - [anon_sym_group] = ACTIONS(4140), - [anon_sym_by] = ACTIONS(4140), - [anon_sym_select] = ACTIONS(4140), - [anon_sym_as] = ACTIONS(2955), - [anon_sym_is] = ACTIONS(2955), - [anon_sym_DASH_GT] = ACTIONS(2957), - [anon_sym_with] = ACTIONS(2955), + [sym__identifier_token] = ACTIONS(3961), + [anon_sym_alias] = ACTIONS(3961), + [anon_sym_global] = ACTIONS(3961), + [anon_sym_LBRACK] = ACTIONS(4033), + [anon_sym_LPAREN] = ACTIONS(3963), + [anon_sym_LBRACE] = ACTIONS(3963), + [anon_sym_file] = ACTIONS(3961), + [anon_sym_LT] = ACTIONS(3961), + [anon_sym_GT] = ACTIONS(3961), + [anon_sym_where] = ACTIONS(3961), + [anon_sym_QMARK] = ACTIONS(4036), + [anon_sym_notnull] = ACTIONS(3961), + [anon_sym_unmanaged] = ACTIONS(3961), + [anon_sym_BANG] = ACTIONS(3961), + [anon_sym_PLUS_PLUS] = ACTIONS(3963), + [anon_sym_DASH_DASH] = ACTIONS(3963), + [anon_sym_PLUS] = ACTIONS(3961), + [anon_sym_DASH] = ACTIONS(3961), + [anon_sym_STAR] = ACTIONS(4039), + [anon_sym_SLASH] = ACTIONS(3961), + [anon_sym_PERCENT] = ACTIONS(3963), + [anon_sym_CARET] = ACTIONS(3963), + [anon_sym_PIPE] = ACTIONS(3961), + [anon_sym_AMP] = ACTIONS(3961), + [anon_sym_LT_LT] = ACTIONS(3963), + [anon_sym_GT_GT] = ACTIONS(3961), + [anon_sym_GT_GT_GT] = ACTIONS(3963), + [anon_sym_EQ_EQ] = ACTIONS(3963), + [anon_sym_BANG_EQ] = ACTIONS(3963), + [anon_sym_GT_EQ] = ACTIONS(3963), + [anon_sym_LT_EQ] = ACTIONS(3963), + [anon_sym_DOT] = ACTIONS(4800), + [anon_sym_scoped] = ACTIONS(3961), + [anon_sym_var] = ACTIONS(3961), + [anon_sym_yield] = ACTIONS(3961), + [anon_sym_switch] = ACTIONS(3961), + [anon_sym_when] = ACTIONS(3961), + [sym_discard] = ACTIONS(3961), + [anon_sym_DOT_DOT] = ACTIONS(3963), + [anon_sym_and] = ACTIONS(3961), + [anon_sym_or] = ACTIONS(3961), + [anon_sym_AMP_AMP] = ACTIONS(3963), + [anon_sym_PIPE_PIPE] = ACTIONS(3963), + [anon_sym_QMARK_QMARK] = ACTIONS(3963), + [anon_sym_from] = ACTIONS(3961), + [anon_sym_into] = ACTIONS(3961), + [anon_sym_join] = ACTIONS(3961), + [anon_sym_on] = ACTIONS(3961), + [anon_sym_equals] = ACTIONS(3961), + [anon_sym_let] = ACTIONS(3961), + [anon_sym_orderby] = ACTIONS(3961), + [anon_sym_ascending] = ACTIONS(3961), + [anon_sym_descending] = ACTIONS(3961), + [anon_sym_group] = ACTIONS(3961), + [anon_sym_by] = ACTIONS(3961), + [anon_sym_select] = ACTIONS(3961), + [anon_sym_as] = ACTIONS(3961), + [anon_sym_is] = ACTIONS(3961), + [anon_sym_DASH_GT] = ACTIONS(4794), + [anon_sym_with] = ACTIONS(3961), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -461285,66 +460866,65 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2887), [sym_preproc_define] = STATE(2887), [sym_preproc_undef] = STATE(2887), - [sym__identifier_token] = ACTIONS(4016), - [anon_sym_alias] = ACTIONS(4016), - [anon_sym_global] = ACTIONS(4016), - [anon_sym_LBRACK] = ACTIONS(4066), - [anon_sym_LPAREN] = ACTIONS(4018), - [anon_sym_LBRACE] = ACTIONS(4018), - [anon_sym_file] = ACTIONS(4016), - [anon_sym_LT] = ACTIONS(4016), - [anon_sym_GT] = ACTIONS(4016), - [anon_sym_where] = ACTIONS(4016), - [anon_sym_QMARK] = ACTIONS(4069), - [anon_sym_notnull] = ACTIONS(4016), - [anon_sym_unmanaged] = ACTIONS(4016), - [anon_sym_BANG] = ACTIONS(4016), - [anon_sym_PLUS_PLUS] = ACTIONS(4018), - [anon_sym_DASH_DASH] = ACTIONS(4018), - [anon_sym_PLUS] = ACTIONS(4016), - [anon_sym_DASH] = ACTIONS(4016), - [anon_sym_STAR] = ACTIONS(4072), - [anon_sym_SLASH] = ACTIONS(4016), - [anon_sym_PERCENT] = ACTIONS(4018), - [anon_sym_CARET] = ACTIONS(4018), - [anon_sym_PIPE] = ACTIONS(4016), - [anon_sym_AMP] = ACTIONS(4016), - [anon_sym_LT_LT] = ACTIONS(4018), - [anon_sym_GT_GT] = ACTIONS(4016), - [anon_sym_GT_GT_GT] = ACTIONS(4018), - [anon_sym_EQ_EQ] = ACTIONS(4018), - [anon_sym_BANG_EQ] = ACTIONS(4018), - [anon_sym_GT_EQ] = ACTIONS(4018), - [anon_sym_LT_EQ] = ACTIONS(4018), - [anon_sym_DOT] = ACTIONS(4794), - [anon_sym_scoped] = ACTIONS(4016), - [anon_sym_var] = ACTIONS(4016), - [anon_sym_yield] = ACTIONS(4016), - [anon_sym_switch] = ACTIONS(4016), - [anon_sym_when] = ACTIONS(4016), - [sym_discard] = ACTIONS(4016), - [anon_sym_DOT_DOT] = ACTIONS(4018), - [anon_sym_and] = ACTIONS(4016), - [anon_sym_or] = ACTIONS(4016), - [anon_sym_AMP_AMP] = ACTIONS(4018), - [anon_sym_PIPE_PIPE] = ACTIONS(4018), - [anon_sym_QMARK_QMARK] = ACTIONS(4018), - [anon_sym_from] = ACTIONS(4016), - [anon_sym_into] = ACTIONS(4016), - [anon_sym_join] = ACTIONS(4016), - [anon_sym_on] = ACTIONS(4016), - [anon_sym_equals] = ACTIONS(4016), - [anon_sym_let] = ACTIONS(4016), - [anon_sym_orderby] = ACTIONS(4016), - [anon_sym_ascending] = ACTIONS(4016), - [anon_sym_descending] = ACTIONS(4016), - [anon_sym_group] = ACTIONS(4016), - [anon_sym_by] = ACTIONS(4016), - [anon_sym_select] = ACTIONS(4016), - [anon_sym_as] = ACTIONS(4016), - [anon_sym_is] = ACTIONS(4016), - [anon_sym_DASH_GT] = ACTIONS(4077), - [anon_sym_with] = ACTIONS(4016), + [anon_sym_EQ] = ACTIONS(4146), + [anon_sym_LBRACK] = ACTIONS(4144), + [anon_sym_COMMA] = ACTIONS(4144), + [anon_sym_LPAREN] = ACTIONS(4144), + [anon_sym_LT] = ACTIONS(4146), + [anon_sym_GT] = ACTIONS(4146), + [anon_sym_where] = ACTIONS(4144), + [anon_sym_QMARK] = ACTIONS(4146), + [anon_sym_BANG] = ACTIONS(4146), + [anon_sym_PLUS_PLUS] = ACTIONS(4144), + [anon_sym_DASH_DASH] = ACTIONS(4144), + [anon_sym_PLUS] = ACTIONS(4146), + [anon_sym_DASH] = ACTIONS(4146), + [anon_sym_STAR] = ACTIONS(4146), + [anon_sym_SLASH] = ACTIONS(4146), + [anon_sym_PERCENT] = ACTIONS(4146), + [anon_sym_CARET] = ACTIONS(4146), + [anon_sym_PIPE] = ACTIONS(4146), + [anon_sym_AMP] = ACTIONS(4146), + [anon_sym_LT_LT] = ACTIONS(4146), + [anon_sym_GT_GT] = ACTIONS(4146), + [anon_sym_GT_GT_GT] = ACTIONS(4146), + [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(4146), + [anon_sym_switch] = ACTIONS(4144), + [anon_sym_DOT_DOT] = ACTIONS(4144), + [anon_sym_and] = ACTIONS(4144), + [anon_sym_or] = ACTIONS(4146), + [anon_sym_PLUS_EQ] = ACTIONS(4144), + [anon_sym_DASH_EQ] = ACTIONS(4144), + [anon_sym_STAR_EQ] = ACTIONS(4144), + [anon_sym_SLASH_EQ] = ACTIONS(4144), + [anon_sym_PERCENT_EQ] = ACTIONS(4144), + [anon_sym_AMP_EQ] = ACTIONS(4144), + [anon_sym_CARET_EQ] = ACTIONS(4144), + [anon_sym_PIPE_EQ] = ACTIONS(4144), + [anon_sym_LT_LT_EQ] = ACTIONS(4144), + [anon_sym_GT_GT_EQ] = ACTIONS(4144), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(4144), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(4144), + [anon_sym_AMP_AMP] = ACTIONS(4144), + [anon_sym_PIPE_PIPE] = ACTIONS(4144), + [anon_sym_QMARK_QMARK] = ACTIONS(4146), + [anon_sym_from] = ACTIONS(4144), + [anon_sym_into] = ACTIONS(4144), + [anon_sym_join] = ACTIONS(4144), + [anon_sym_let] = ACTIONS(4144), + [anon_sym_orderby] = ACTIONS(4144), + [anon_sym_ascending] = ACTIONS(4144), + [anon_sym_descending] = ACTIONS(4144), + [anon_sym_group] = ACTIONS(4144), + [anon_sym_select] = ACTIONS(4144), + [anon_sym_as] = ACTIONS(4146), + [anon_sym_is] = ACTIONS(4144), + [anon_sym_DASH_GT] = ACTIONS(4144), + [anon_sym_with] = ACTIONS(4144), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -461357,6 +460937,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2888] = { + [sym_initializer_expression] = STATE(2972), [sym_preproc_region] = STATE(2888), [sym_preproc_endregion] = STATE(2888), [sym_preproc_line] = STATE(2888), @@ -461366,66 +460947,64 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2888), [sym_preproc_define] = STATE(2888), [sym_preproc_undef] = STATE(2888), - [sym__identifier_token] = ACTIONS(4016), - [anon_sym_alias] = ACTIONS(4016), - [anon_sym_global] = ACTIONS(4016), - [anon_sym_LBRACK] = ACTIONS(4066), - [anon_sym_LPAREN] = ACTIONS(4018), - [anon_sym_LBRACE] = ACTIONS(4018), - [anon_sym_file] = ACTIONS(4016), - [anon_sym_LT] = ACTIONS(4016), - [anon_sym_GT] = ACTIONS(4016), - [anon_sym_where] = ACTIONS(4016), - [anon_sym_QMARK] = ACTIONS(4069), - [anon_sym_notnull] = ACTIONS(4016), - [anon_sym_unmanaged] = ACTIONS(4016), - [anon_sym_BANG] = ACTIONS(4016), - [anon_sym_PLUS_PLUS] = ACTIONS(4018), - [anon_sym_DASH_DASH] = ACTIONS(4018), - [anon_sym_PLUS] = ACTIONS(4016), - [anon_sym_DASH] = ACTIONS(4016), - [anon_sym_STAR] = ACTIONS(4072), - [anon_sym_SLASH] = ACTIONS(4016), - [anon_sym_PERCENT] = ACTIONS(4018), - [anon_sym_CARET] = ACTIONS(4018), - [anon_sym_PIPE] = ACTIONS(4016), - [anon_sym_AMP] = ACTIONS(4016), - [anon_sym_LT_LT] = ACTIONS(4018), - [anon_sym_GT_GT] = ACTIONS(4016), - [anon_sym_GT_GT_GT] = ACTIONS(4018), - [anon_sym_EQ_EQ] = ACTIONS(4018), - [anon_sym_BANG_EQ] = ACTIONS(4018), - [anon_sym_GT_EQ] = ACTIONS(4018), - [anon_sym_LT_EQ] = ACTIONS(4018), - [anon_sym_DOT] = ACTIONS(4796), - [anon_sym_scoped] = ACTIONS(4016), - [anon_sym_var] = ACTIONS(4016), - [anon_sym_yield] = ACTIONS(4016), - [anon_sym_switch] = ACTIONS(4016), - [anon_sym_when] = ACTIONS(4016), - [sym_discard] = ACTIONS(4016), - [anon_sym_DOT_DOT] = ACTIONS(4018), - [anon_sym_and] = ACTIONS(4016), - [anon_sym_or] = ACTIONS(4016), - [anon_sym_AMP_AMP] = ACTIONS(4018), - [anon_sym_PIPE_PIPE] = ACTIONS(4018), - [anon_sym_QMARK_QMARK] = ACTIONS(4018), - [anon_sym_from] = ACTIONS(4016), - [anon_sym_into] = ACTIONS(4016), - [anon_sym_join] = ACTIONS(4016), - [anon_sym_on] = ACTIONS(4016), - [anon_sym_equals] = ACTIONS(4016), - [anon_sym_let] = ACTIONS(4016), - [anon_sym_orderby] = ACTIONS(4016), - [anon_sym_ascending] = ACTIONS(4016), - [anon_sym_descending] = ACTIONS(4016), - [anon_sym_group] = ACTIONS(4016), - [anon_sym_by] = ACTIONS(4016), - [anon_sym_select] = ACTIONS(4016), - [anon_sym_as] = ACTIONS(4016), - [anon_sym_is] = ACTIONS(4016), - [anon_sym_DASH_GT] = ACTIONS(4102), - [anon_sym_with] = ACTIONS(4016), + [anon_sym_SEMI] = ACTIONS(4802), + [anon_sym_LBRACK] = ACTIONS(4804), + [anon_sym_COLON] = ACTIONS(4802), + [anon_sym_COMMA] = ACTIONS(4802), + [anon_sym_RBRACK] = ACTIONS(4802), + [anon_sym_LPAREN] = ACTIONS(4802), + [anon_sym_RPAREN] = ACTIONS(4802), + [anon_sym_LBRACE] = ACTIONS(1245), + [anon_sym_RBRACE] = ACTIONS(4802), + [anon_sym_LT] = ACTIONS(4807), + [anon_sym_GT] = ACTIONS(4807), + [anon_sym_in] = ACTIONS(4807), + [anon_sym_where] = ACTIONS(4802), + [anon_sym_QMARK] = ACTIONS(4807), + [anon_sym_BANG] = ACTIONS(4807), + [anon_sym_PLUS_PLUS] = ACTIONS(4802), + [anon_sym_DASH_DASH] = ACTIONS(4802), + [anon_sym_PLUS] = ACTIONS(4807), + [anon_sym_DASH] = ACTIONS(4807), + [anon_sym_STAR] = ACTIONS(4802), + [anon_sym_SLASH] = ACTIONS(4807), + [anon_sym_PERCENT] = ACTIONS(4802), + [anon_sym_CARET] = ACTIONS(4802), + [anon_sym_PIPE] = ACTIONS(4807), + [anon_sym_AMP] = ACTIONS(4807), + [anon_sym_LT_LT] = ACTIONS(4802), + [anon_sym_GT_GT] = ACTIONS(4807), + [anon_sym_GT_GT_GT] = ACTIONS(4802), + [anon_sym_EQ_EQ] = ACTIONS(4802), + [anon_sym_BANG_EQ] = ACTIONS(4802), + [anon_sym_GT_EQ] = ACTIONS(4802), + [anon_sym_LT_EQ] = ACTIONS(4802), + [anon_sym_DOT] = ACTIONS(4807), + [anon_sym_EQ_GT] = ACTIONS(4802), + [anon_sym_switch] = ACTIONS(4802), + [anon_sym_DOT_DOT] = ACTIONS(4802), + [anon_sym_and] = ACTIONS(4802), + [anon_sym_or] = ACTIONS(4807), + [anon_sym_AMP_AMP] = ACTIONS(4802), + [anon_sym_PIPE_PIPE] = ACTIONS(4802), + [anon_sym_QMARK_QMARK] = ACTIONS(4802), + [anon_sym_from] = ACTIONS(4802), + [anon_sym_into] = ACTIONS(4802), + [anon_sym_join] = ACTIONS(4802), + [anon_sym_on] = ACTIONS(4802), + [anon_sym_equals] = ACTIONS(4802), + [anon_sym_let] = ACTIONS(4802), + [anon_sym_orderby] = ACTIONS(4802), + [anon_sym_group] = ACTIONS(4802), + [anon_sym_by] = ACTIONS(4802), + [anon_sym_select] = ACTIONS(4802), + [anon_sym_as] = ACTIONS(4802), + [anon_sym_is] = ACTIONS(4802), + [anon_sym_DASH_GT] = ACTIONS(4802), + [anon_sym_with] = ACTIONS(4802), + [aux_sym_preproc_if_token3] = ACTIONS(4802), + [aux_sym_preproc_else_token1] = ACTIONS(4802), + [aux_sym_preproc_elif_token1] = ACTIONS(4802), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -461447,66 +461026,65 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2889), [sym_preproc_define] = STATE(2889), [sym_preproc_undef] = STATE(2889), - [sym__identifier_token] = ACTIONS(4016), - [anon_sym_alias] = ACTIONS(4016), - [anon_sym_global] = ACTIONS(4016), - [anon_sym_LBRACK] = ACTIONS(4066), - [anon_sym_LPAREN] = ACTIONS(4018), - [anon_sym_LBRACE] = ACTIONS(4018), - [anon_sym_file] = ACTIONS(4016), - [anon_sym_LT] = ACTIONS(4016), - [anon_sym_GT] = ACTIONS(4016), - [anon_sym_where] = ACTIONS(4016), - [anon_sym_QMARK] = ACTIONS(4069), - [anon_sym_notnull] = ACTIONS(4016), - [anon_sym_unmanaged] = ACTIONS(4016), - [anon_sym_BANG] = ACTIONS(4016), - [anon_sym_PLUS_PLUS] = ACTIONS(4018), - [anon_sym_DASH_DASH] = ACTIONS(4018), - [anon_sym_PLUS] = ACTIONS(4016), - [anon_sym_DASH] = ACTIONS(4016), - [anon_sym_STAR] = ACTIONS(4072), - [anon_sym_SLASH] = ACTIONS(4016), - [anon_sym_PERCENT] = ACTIONS(4018), - [anon_sym_CARET] = ACTIONS(4018), - [anon_sym_PIPE] = ACTIONS(4016), - [anon_sym_AMP] = ACTIONS(4016), - [anon_sym_LT_LT] = ACTIONS(4018), - [anon_sym_GT_GT] = ACTIONS(4016), - [anon_sym_GT_GT_GT] = ACTIONS(4018), - [anon_sym_EQ_EQ] = ACTIONS(4018), - [anon_sym_BANG_EQ] = ACTIONS(4018), - [anon_sym_GT_EQ] = ACTIONS(4018), - [anon_sym_LT_EQ] = ACTIONS(4018), - [anon_sym_DOT] = ACTIONS(4798), - [anon_sym_scoped] = ACTIONS(4016), - [anon_sym_var] = ACTIONS(4016), - [anon_sym_yield] = ACTIONS(4016), - [anon_sym_switch] = ACTIONS(4016), - [anon_sym_when] = ACTIONS(4016), - [sym_discard] = ACTIONS(4016), - [anon_sym_DOT_DOT] = ACTIONS(4018), - [anon_sym_and] = ACTIONS(4016), - [anon_sym_or] = ACTIONS(4016), - [anon_sym_AMP_AMP] = ACTIONS(4018), - [anon_sym_PIPE_PIPE] = ACTIONS(4018), - [anon_sym_QMARK_QMARK] = ACTIONS(4018), - [anon_sym_from] = ACTIONS(4016), - [anon_sym_into] = ACTIONS(4016), - [anon_sym_join] = ACTIONS(4016), - [anon_sym_on] = ACTIONS(4016), - [anon_sym_equals] = ACTIONS(4016), - [anon_sym_let] = ACTIONS(4016), - [anon_sym_orderby] = ACTIONS(4016), - [anon_sym_ascending] = ACTIONS(4016), - [anon_sym_descending] = ACTIONS(4016), - [anon_sym_group] = ACTIONS(4016), - [anon_sym_by] = ACTIONS(4016), - [anon_sym_select] = ACTIONS(4016), - [anon_sym_as] = ACTIONS(4016), - [anon_sym_is] = ACTIONS(4016), - [anon_sym_DASH_GT] = ACTIONS(4077), - [anon_sym_with] = ACTIONS(4016), + [anon_sym_EQ] = ACTIONS(3673), + [anon_sym_LBRACK] = ACTIONS(3671), + [anon_sym_COMMA] = ACTIONS(3671), + [anon_sym_LPAREN] = ACTIONS(3671), + [anon_sym_LT] = ACTIONS(3673), + [anon_sym_GT] = ACTIONS(3673), + [anon_sym_where] = ACTIONS(3671), + [anon_sym_QMARK] = ACTIONS(3673), + [anon_sym_BANG] = ACTIONS(3673), + [anon_sym_PLUS_PLUS] = ACTIONS(3671), + [anon_sym_DASH_DASH] = ACTIONS(3671), + [anon_sym_PLUS] = ACTIONS(3673), + [anon_sym_DASH] = ACTIONS(3673), + [anon_sym_STAR] = ACTIONS(3673), + [anon_sym_SLASH] = ACTIONS(3673), + [anon_sym_PERCENT] = ACTIONS(3673), + [anon_sym_CARET] = ACTIONS(3673), + [anon_sym_PIPE] = ACTIONS(3673), + [anon_sym_AMP] = ACTIONS(3673), + [anon_sym_LT_LT] = ACTIONS(3673), + [anon_sym_GT_GT] = ACTIONS(3673), + [anon_sym_GT_GT_GT] = ACTIONS(3673), + [anon_sym_EQ_EQ] = ACTIONS(3671), + [anon_sym_BANG_EQ] = ACTIONS(3671), + [anon_sym_GT_EQ] = ACTIONS(3671), + [anon_sym_LT_EQ] = ACTIONS(3671), + [anon_sym_DOT] = ACTIONS(3673), + [anon_sym_switch] = ACTIONS(3671), + [anon_sym_DOT_DOT] = ACTIONS(3671), + [anon_sym_and] = ACTIONS(3671), + [anon_sym_or] = ACTIONS(3673), + [anon_sym_PLUS_EQ] = ACTIONS(3671), + [anon_sym_DASH_EQ] = ACTIONS(3671), + [anon_sym_STAR_EQ] = ACTIONS(3671), + [anon_sym_SLASH_EQ] = ACTIONS(3671), + [anon_sym_PERCENT_EQ] = ACTIONS(3671), + [anon_sym_AMP_EQ] = ACTIONS(3671), + [anon_sym_CARET_EQ] = ACTIONS(3671), + [anon_sym_PIPE_EQ] = ACTIONS(3671), + [anon_sym_LT_LT_EQ] = ACTIONS(3671), + [anon_sym_GT_GT_EQ] = ACTIONS(3671), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3671), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3671), + [anon_sym_AMP_AMP] = ACTIONS(3671), + [anon_sym_PIPE_PIPE] = ACTIONS(3671), + [anon_sym_QMARK_QMARK] = ACTIONS(3673), + [anon_sym_from] = ACTIONS(3671), + [anon_sym_into] = ACTIONS(3671), + [anon_sym_join] = ACTIONS(3671), + [anon_sym_let] = ACTIONS(3671), + [anon_sym_orderby] = ACTIONS(3671), + [anon_sym_ascending] = ACTIONS(3671), + [anon_sym_descending] = ACTIONS(3671), + [anon_sym_group] = ACTIONS(3671), + [anon_sym_select] = ACTIONS(3671), + [anon_sym_as] = ACTIONS(3673), + [anon_sym_is] = ACTIONS(3671), + [anon_sym_DASH_GT] = ACTIONS(3671), + [anon_sym_with] = ACTIONS(3671), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -461528,66 +461106,65 @@ 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), - [sym__identifier_token] = ACTIONS(4016), - [anon_sym_alias] = ACTIONS(4016), - [anon_sym_global] = ACTIONS(4016), - [anon_sym_LBRACK] = ACTIONS(4066), - [anon_sym_LPAREN] = ACTIONS(4018), - [anon_sym_LBRACE] = ACTIONS(4018), - [anon_sym_file] = ACTIONS(4016), - [anon_sym_LT] = ACTIONS(4016), - [anon_sym_GT] = ACTIONS(4016), - [anon_sym_where] = ACTIONS(4016), - [anon_sym_QMARK] = ACTIONS(4069), - [anon_sym_notnull] = ACTIONS(4016), - [anon_sym_unmanaged] = ACTIONS(4016), - [anon_sym_BANG] = ACTIONS(4016), - [anon_sym_PLUS_PLUS] = ACTIONS(4018), - [anon_sym_DASH_DASH] = ACTIONS(4018), - [anon_sym_PLUS] = ACTIONS(4016), - [anon_sym_DASH] = ACTIONS(4016), - [anon_sym_STAR] = ACTIONS(4072), - [anon_sym_SLASH] = ACTIONS(4016), - [anon_sym_PERCENT] = ACTIONS(4018), - [anon_sym_CARET] = ACTIONS(4018), - [anon_sym_PIPE] = ACTIONS(4016), - [anon_sym_AMP] = ACTIONS(4016), - [anon_sym_LT_LT] = ACTIONS(4018), - [anon_sym_GT_GT] = ACTIONS(4016), - [anon_sym_GT_GT_GT] = ACTIONS(4018), - [anon_sym_EQ_EQ] = ACTIONS(4018), - [anon_sym_BANG_EQ] = ACTIONS(4018), - [anon_sym_GT_EQ] = ACTIONS(4018), - [anon_sym_LT_EQ] = ACTIONS(4018), - [anon_sym_DOT] = ACTIONS(4800), - [anon_sym_scoped] = ACTIONS(4016), - [anon_sym_var] = ACTIONS(4016), - [anon_sym_yield] = ACTIONS(4016), - [anon_sym_switch] = ACTIONS(4016), - [anon_sym_when] = ACTIONS(4016), - [sym_discard] = ACTIONS(4016), - [anon_sym_DOT_DOT] = ACTIONS(4018), - [anon_sym_and] = ACTIONS(4016), - [anon_sym_or] = ACTIONS(4016), - [anon_sym_AMP_AMP] = ACTIONS(4018), - [anon_sym_PIPE_PIPE] = ACTIONS(4018), - [anon_sym_QMARK_QMARK] = ACTIONS(4018), - [anon_sym_from] = ACTIONS(4016), - [anon_sym_into] = ACTIONS(4016), - [anon_sym_join] = ACTIONS(4016), - [anon_sym_on] = ACTIONS(4016), - [anon_sym_equals] = ACTIONS(4016), - [anon_sym_let] = ACTIONS(4016), - [anon_sym_orderby] = ACTIONS(4016), - [anon_sym_ascending] = ACTIONS(4016), - [anon_sym_descending] = ACTIONS(4016), - [anon_sym_group] = ACTIONS(4016), - [anon_sym_by] = ACTIONS(4016), - [anon_sym_select] = ACTIONS(4016), - [anon_sym_as] = ACTIONS(4016), - [anon_sym_is] = ACTIONS(4016), - [anon_sym_DASH_GT] = ACTIONS(4102), - [anon_sym_with] = ACTIONS(4016), + [anon_sym_EQ] = ACTIONS(4809), + [anon_sym_LBRACK] = ACTIONS(4811), + [anon_sym_COMMA] = ACTIONS(4811), + [anon_sym_LPAREN] = ACTIONS(4811), + [anon_sym_LT] = ACTIONS(4813), + [anon_sym_GT] = ACTIONS(4813), + [anon_sym_where] = ACTIONS(4811), + [anon_sym_QMARK] = ACTIONS(4813), + [anon_sym_BANG] = ACTIONS(4813), + [anon_sym_PLUS_PLUS] = ACTIONS(4811), + [anon_sym_DASH_DASH] = ACTIONS(4811), + [anon_sym_PLUS] = ACTIONS(4813), + [anon_sym_DASH] = ACTIONS(4813), + [anon_sym_STAR] = ACTIONS(4813), + [anon_sym_SLASH] = ACTIONS(4813), + [anon_sym_PERCENT] = ACTIONS(4813), + [anon_sym_CARET] = ACTIONS(4813), + [anon_sym_PIPE] = ACTIONS(4813), + [anon_sym_AMP] = ACTIONS(4813), + [anon_sym_LT_LT] = ACTIONS(4813), + [anon_sym_GT_GT] = ACTIONS(4813), + [anon_sym_GT_GT_GT] = ACTIONS(4813), + [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(4813), + [anon_sym_switch] = ACTIONS(4811), + [anon_sym_DOT_DOT] = ACTIONS(4811), + [anon_sym_and] = ACTIONS(4811), + [anon_sym_or] = ACTIONS(4813), + [anon_sym_PLUS_EQ] = ACTIONS(4815), + [anon_sym_DASH_EQ] = ACTIONS(4815), + [anon_sym_STAR_EQ] = ACTIONS(4815), + [anon_sym_SLASH_EQ] = ACTIONS(4815), + [anon_sym_PERCENT_EQ] = ACTIONS(4815), + [anon_sym_AMP_EQ] = ACTIONS(4815), + [anon_sym_CARET_EQ] = ACTIONS(4815), + [anon_sym_PIPE_EQ] = ACTIONS(4815), + [anon_sym_LT_LT_EQ] = ACTIONS(4815), + [anon_sym_GT_GT_EQ] = ACTIONS(4815), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(4815), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(4815), + [anon_sym_AMP_AMP] = ACTIONS(4811), + [anon_sym_PIPE_PIPE] = ACTIONS(4811), + [anon_sym_QMARK_QMARK] = ACTIONS(4813), + [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(4813), + [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), @@ -461600,8 +461177,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2891] = { - [sym_argument_list] = STATE(2915), - [sym_initializer_expression] = STATE(3055), [sym_preproc_region] = STATE(2891), [sym_preproc_endregion] = STATE(2891), [sym_preproc_line] = STATE(2891), @@ -461611,64 +461186,65 @@ 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), - [anon_sym_SEMI] = ACTIONS(4802), - [anon_sym_LBRACK] = ACTIONS(4802), - [anon_sym_COLON] = ACTIONS(4802), - [anon_sym_COMMA] = ACTIONS(4802), - [anon_sym_RBRACK] = ACTIONS(4802), - [anon_sym_LPAREN] = ACTIONS(4804), - [anon_sym_RPAREN] = ACTIONS(4802), - [anon_sym_LBRACE] = ACTIONS(1247), - [anon_sym_RBRACE] = ACTIONS(4802), - [anon_sym_LT] = ACTIONS(4806), - [anon_sym_GT] = ACTIONS(4806), - [anon_sym_in] = ACTIONS(4806), - [anon_sym_where] = ACTIONS(4802), - [anon_sym_QMARK] = ACTIONS(4806), - [anon_sym_BANG] = ACTIONS(4806), - [anon_sym_PLUS_PLUS] = ACTIONS(4802), - [anon_sym_DASH_DASH] = ACTIONS(4802), - [anon_sym_PLUS] = ACTIONS(4806), - [anon_sym_DASH] = ACTIONS(4806), - [anon_sym_STAR] = ACTIONS(4802), - [anon_sym_SLASH] = ACTIONS(4806), - [anon_sym_PERCENT] = ACTIONS(4802), - [anon_sym_CARET] = ACTIONS(4802), - [anon_sym_PIPE] = ACTIONS(4806), - [anon_sym_AMP] = ACTIONS(4806), - [anon_sym_LT_LT] = ACTIONS(4802), - [anon_sym_GT_GT] = ACTIONS(4806), - [anon_sym_GT_GT_GT] = ACTIONS(4802), - [anon_sym_EQ_EQ] = ACTIONS(4802), - [anon_sym_BANG_EQ] = ACTIONS(4802), - [anon_sym_GT_EQ] = ACTIONS(4802), - [anon_sym_LT_EQ] = ACTIONS(4802), - [anon_sym_DOT] = ACTIONS(4806), - [anon_sym_EQ_GT] = ACTIONS(4802), - [anon_sym_switch] = ACTIONS(4802), - [anon_sym_DOT_DOT] = ACTIONS(4802), - [anon_sym_and] = ACTIONS(4802), - [anon_sym_or] = ACTIONS(4806), - [anon_sym_AMP_AMP] = ACTIONS(4802), - [anon_sym_PIPE_PIPE] = ACTIONS(4802), - [anon_sym_QMARK_QMARK] = ACTIONS(4802), - [anon_sym_from] = ACTIONS(4802), - [anon_sym_into] = ACTIONS(4802), - [anon_sym_join] = ACTIONS(4802), - [anon_sym_on] = ACTIONS(4802), - [anon_sym_equals] = ACTIONS(4802), - [anon_sym_let] = ACTIONS(4802), - [anon_sym_orderby] = ACTIONS(4802), - [anon_sym_group] = ACTIONS(4802), - [anon_sym_by] = ACTIONS(4802), - [anon_sym_select] = ACTIONS(4802), - [anon_sym_as] = ACTIONS(4802), - [anon_sym_is] = ACTIONS(4802), - [anon_sym_DASH_GT] = ACTIONS(4802), - [anon_sym_with] = ACTIONS(4802), - [aux_sym_preproc_if_token3] = ACTIONS(4802), - [aux_sym_preproc_else_token1] = ACTIONS(4802), - [aux_sym_preproc_elif_token1] = ACTIONS(4802), + [anon_sym_SEMI] = ACTIONS(3600), + [anon_sym_LBRACK] = ACTIONS(3600), + [anon_sym_COLON] = ACTIONS(3603), + [anon_sym_COMMA] = ACTIONS(3600), + [anon_sym_RBRACK] = ACTIONS(3600), + [anon_sym_LPAREN] = ACTIONS(3600), + [anon_sym_RPAREN] = ACTIONS(3600), + [anon_sym_LBRACE] = ACTIONS(3600), + [anon_sym_RBRACE] = ACTIONS(3600), + [anon_sym_LT] = ACTIONS(3603), + [anon_sym_GT] = ACTIONS(3603), + [anon_sym_in] = ACTIONS(3603), + [anon_sym_where] = ACTIONS(3600), + [anon_sym_QMARK] = ACTIONS(3603), + [anon_sym_BANG] = ACTIONS(3603), + [anon_sym_PLUS_PLUS] = ACTIONS(3600), + [anon_sym_DASH_DASH] = ACTIONS(3600), + [anon_sym_PLUS] = ACTIONS(3603), + [anon_sym_DASH] = ACTIONS(3603), + [anon_sym_STAR] = ACTIONS(3600), + [anon_sym_SLASH] = ACTIONS(3603), + [anon_sym_PERCENT] = ACTIONS(3600), + [anon_sym_CARET] = ACTIONS(3600), + [anon_sym_PIPE] = ACTIONS(3603), + [anon_sym_AMP] = ACTIONS(3603), + [anon_sym_LT_LT] = ACTIONS(3600), + [anon_sym_GT_GT] = ACTIONS(3603), + [anon_sym_GT_GT_GT] = ACTIONS(3600), + [anon_sym_EQ_EQ] = ACTIONS(3600), + [anon_sym_BANG_EQ] = ACTIONS(3600), + [anon_sym_GT_EQ] = ACTIONS(3600), + [anon_sym_LT_EQ] = ACTIONS(3600), + [anon_sym_DOT] = ACTIONS(3603), + [anon_sym_EQ_GT] = ACTIONS(3600), + [anon_sym_COLON_COLON] = ACTIONS(3429), + [anon_sym_switch] = ACTIONS(3600), + [anon_sym_DOT_DOT] = ACTIONS(3600), + [anon_sym_and] = ACTIONS(3600), + [anon_sym_or] = ACTIONS(3603), + [anon_sym_AMP_AMP] = ACTIONS(3600), + [anon_sym_PIPE_PIPE] = ACTIONS(3600), + [anon_sym_QMARK_QMARK] = ACTIONS(3600), + [anon_sym_from] = ACTIONS(3600), + [anon_sym_into] = ACTIONS(3600), + [anon_sym_join] = ACTIONS(3600), + [anon_sym_on] = ACTIONS(3600), + [anon_sym_equals] = ACTIONS(3600), + [anon_sym_let] = ACTIONS(3600), + [anon_sym_orderby] = ACTIONS(3600), + [anon_sym_group] = ACTIONS(3600), + [anon_sym_by] = ACTIONS(3600), + [anon_sym_select] = ACTIONS(3600), + [anon_sym_as] = ACTIONS(3600), + [anon_sym_is] = ACTIONS(3600), + [anon_sym_DASH_GT] = ACTIONS(3600), + [anon_sym_with] = ACTIONS(3600), + [aux_sym_preproc_if_token3] = ACTIONS(3600), + [aux_sym_preproc_else_token1] = ACTIONS(3600), + [aux_sym_preproc_elif_token1] = ACTIONS(3600), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -461690,66 +461266,65 @@ 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), - [anon_sym_SEMI] = ACTIONS(2953), - [anon_sym_LBRACK] = ACTIONS(2953), - [anon_sym_COLON] = ACTIONS(2953), - [anon_sym_COMMA] = ACTIONS(2953), - [anon_sym_RBRACK] = ACTIONS(2953), - [anon_sym_LPAREN] = ACTIONS(2953), - [anon_sym_RPAREN] = ACTIONS(2953), - [anon_sym_RBRACE] = ACTIONS(2953), - [anon_sym_LT] = ACTIONS(2951), - [anon_sym_GT] = ACTIONS(2951), - [anon_sym_in] = ACTIONS(2953), - [anon_sym_where] = ACTIONS(2953), - [anon_sym_QMARK] = ACTIONS(2951), - [anon_sym_BANG] = ACTIONS(2951), - [anon_sym_PLUS_PLUS] = ACTIONS(2953), - [anon_sym_DASH_DASH] = ACTIONS(2953), - [anon_sym_PLUS] = ACTIONS(2951), - [anon_sym_DASH] = ACTIONS(2951), - [anon_sym_STAR] = ACTIONS(2953), - [anon_sym_SLASH] = ACTIONS(2951), - [anon_sym_PERCENT] = ACTIONS(2953), - [anon_sym_CARET] = ACTIONS(2953), - [anon_sym_PIPE] = ACTIONS(2951), - [anon_sym_AMP] = ACTIONS(2951), - [anon_sym_LT_LT] = ACTIONS(2953), - [anon_sym_GT_GT] = ACTIONS(2951), - [anon_sym_GT_GT_GT] = ACTIONS(2953), - [anon_sym_EQ_EQ] = ACTIONS(2953), - [anon_sym_BANG_EQ] = ACTIONS(2953), - [anon_sym_GT_EQ] = ACTIONS(2953), - [anon_sym_LT_EQ] = ACTIONS(2953), - [anon_sym_DOT] = ACTIONS(2951), - [anon_sym_EQ_GT] = ACTIONS(2953), - [anon_sym_while] = ACTIONS(2953), - [anon_sym_switch] = ACTIONS(2953), - [anon_sym_catch] = ACTIONS(2953), - [anon_sym_finally] = ACTIONS(2953), - [anon_sym_else] = ACTIONS(2953), - [anon_sym_DOT_DOT] = ACTIONS(2953), - [anon_sym_and] = ACTIONS(2953), - [anon_sym_or] = ACTIONS(2951), - [anon_sym_AMP_AMP] = ACTIONS(2953), - [anon_sym_PIPE_PIPE] = ACTIONS(2953), - [anon_sym_QMARK_QMARK] = ACTIONS(2953), - [anon_sym_from] = ACTIONS(2953), - [anon_sym_join] = ACTIONS(2953), - [anon_sym_on] = ACTIONS(2953), - [anon_sym_equals] = ACTIONS(2953), - [anon_sym_let] = ACTIONS(2953), - [anon_sym_orderby] = ACTIONS(2953), - [anon_sym_group] = ACTIONS(2953), - [anon_sym_by] = ACTIONS(2953), - [anon_sym_select] = ACTIONS(2953), - [anon_sym_as] = ACTIONS(2953), - [anon_sym_is] = ACTIONS(2953), - [anon_sym_DASH_GT] = ACTIONS(2953), - [anon_sym_with] = ACTIONS(2953), - [aux_sym_preproc_if_token3] = ACTIONS(2953), - [aux_sym_preproc_else_token1] = ACTIONS(2953), - [aux_sym_preproc_elif_token1] = ACTIONS(2953), + [anon_sym_EQ] = ACTIONS(4130), + [anon_sym_LBRACK] = ACTIONS(4128), + [anon_sym_COMMA] = ACTIONS(4128), + [anon_sym_LPAREN] = ACTIONS(4128), + [anon_sym_LT] = ACTIONS(4130), + [anon_sym_GT] = ACTIONS(4130), + [anon_sym_where] = ACTIONS(4128), + [anon_sym_QMARK] = ACTIONS(4130), + [anon_sym_BANG] = ACTIONS(4130), + [anon_sym_PLUS_PLUS] = ACTIONS(4128), + [anon_sym_DASH_DASH] = ACTIONS(4128), + [anon_sym_PLUS] = ACTIONS(4130), + [anon_sym_DASH] = ACTIONS(4130), + [anon_sym_STAR] = ACTIONS(4130), + [anon_sym_SLASH] = ACTIONS(4130), + [anon_sym_PERCENT] = ACTIONS(4130), + [anon_sym_CARET] = ACTIONS(4130), + [anon_sym_PIPE] = ACTIONS(4130), + [anon_sym_AMP] = ACTIONS(4130), + [anon_sym_LT_LT] = ACTIONS(4130), + [anon_sym_GT_GT] = ACTIONS(4130), + [anon_sym_GT_GT_GT] = ACTIONS(4130), + [anon_sym_EQ_EQ] = ACTIONS(4128), + [anon_sym_BANG_EQ] = ACTIONS(4128), + [anon_sym_GT_EQ] = ACTIONS(4128), + [anon_sym_LT_EQ] = ACTIONS(4128), + [anon_sym_DOT] = ACTIONS(4130), + [anon_sym_switch] = ACTIONS(4128), + [anon_sym_DOT_DOT] = ACTIONS(4128), + [anon_sym_and] = ACTIONS(4128), + [anon_sym_or] = ACTIONS(4130), + [anon_sym_PLUS_EQ] = ACTIONS(4128), + [anon_sym_DASH_EQ] = ACTIONS(4128), + [anon_sym_STAR_EQ] = ACTIONS(4128), + [anon_sym_SLASH_EQ] = ACTIONS(4128), + [anon_sym_PERCENT_EQ] = ACTIONS(4128), + [anon_sym_AMP_EQ] = ACTIONS(4128), + [anon_sym_CARET_EQ] = ACTIONS(4128), + [anon_sym_PIPE_EQ] = ACTIONS(4128), + [anon_sym_LT_LT_EQ] = ACTIONS(4128), + [anon_sym_GT_GT_EQ] = ACTIONS(4128), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(4128), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(4128), + [anon_sym_AMP_AMP] = ACTIONS(4128), + [anon_sym_PIPE_PIPE] = ACTIONS(4128), + [anon_sym_QMARK_QMARK] = ACTIONS(4130), + [anon_sym_from] = ACTIONS(4128), + [anon_sym_into] = ACTIONS(4128), + [anon_sym_join] = ACTIONS(4128), + [anon_sym_let] = ACTIONS(4128), + [anon_sym_orderby] = ACTIONS(4128), + [anon_sym_ascending] = ACTIONS(4128), + [anon_sym_descending] = ACTIONS(4128), + [anon_sym_group] = ACTIONS(4128), + [anon_sym_select] = ACTIONS(4128), + [anon_sym_as] = ACTIONS(4130), + [anon_sym_is] = ACTIONS(4128), + [anon_sym_DASH_GT] = ACTIONS(4128), + [anon_sym_with] = ACTIONS(4128), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -461762,6 +461337,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2893] = { + [sym_argument_list] = STATE(2958), + [sym_bracketed_argument_list] = STATE(2419), [sym_preproc_region] = STATE(2893), [sym_preproc_endregion] = STATE(2893), [sym_preproc_line] = STATE(2893), @@ -461771,66 +461348,63 @@ 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), - [anon_sym_EQ] = ACTIONS(4189), - [anon_sym_LBRACK] = ACTIONS(4187), - [anon_sym_COLON] = ACTIONS(4187), - [anon_sym_COMMA] = ACTIONS(4187), - [anon_sym_LPAREN] = ACTIONS(4187), - [anon_sym_LT] = ACTIONS(4189), - [anon_sym_GT] = ACTIONS(4189), - [anon_sym_where] = ACTIONS(4187), - [anon_sym_QMARK] = ACTIONS(4189), - [anon_sym_BANG] = ACTIONS(4189), - [anon_sym_PLUS_PLUS] = ACTIONS(4187), - [anon_sym_DASH_DASH] = ACTIONS(4187), - [anon_sym_PLUS] = ACTIONS(4189), - [anon_sym_DASH] = ACTIONS(4189), - [anon_sym_STAR] = ACTIONS(4189), - [anon_sym_SLASH] = ACTIONS(4189), - [anon_sym_PERCENT] = ACTIONS(4189), - [anon_sym_CARET] = ACTIONS(4189), - [anon_sym_PIPE] = ACTIONS(4189), - [anon_sym_AMP] = ACTIONS(4189), - [anon_sym_LT_LT] = ACTIONS(4189), - [anon_sym_GT_GT] = ACTIONS(4189), - [anon_sym_GT_GT_GT] = ACTIONS(4189), - [anon_sym_EQ_EQ] = ACTIONS(4187), - [anon_sym_BANG_EQ] = ACTIONS(4187), - [anon_sym_GT_EQ] = ACTIONS(4187), - [anon_sym_LT_EQ] = ACTIONS(4187), - [anon_sym_DOT] = ACTIONS(4189), - [anon_sym_switch] = ACTIONS(4187), - [anon_sym_DOT_DOT] = ACTIONS(4187), - [anon_sym_and] = ACTIONS(4187), - [anon_sym_or] = ACTIONS(4189), - [anon_sym_PLUS_EQ] = ACTIONS(4187), - [anon_sym_DASH_EQ] = ACTIONS(4187), - [anon_sym_STAR_EQ] = ACTIONS(4187), - [anon_sym_SLASH_EQ] = ACTIONS(4187), - [anon_sym_PERCENT_EQ] = ACTIONS(4187), - [anon_sym_AMP_EQ] = ACTIONS(4187), - [anon_sym_CARET_EQ] = ACTIONS(4187), - [anon_sym_PIPE_EQ] = ACTIONS(4187), - [anon_sym_LT_LT_EQ] = ACTIONS(4187), - [anon_sym_GT_GT_EQ] = ACTIONS(4187), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(4187), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(4187), - [anon_sym_AMP_AMP] = ACTIONS(4187), - [anon_sym_PIPE_PIPE] = ACTIONS(4187), - [anon_sym_QMARK_QMARK] = ACTIONS(4189), - [anon_sym_from] = ACTIONS(4187), - [anon_sym_into] = ACTIONS(4187), - [anon_sym_join] = ACTIONS(4187), - [anon_sym_let] = ACTIONS(4187), - [anon_sym_orderby] = ACTIONS(4187), - [anon_sym_ascending] = ACTIONS(4187), - [anon_sym_descending] = ACTIONS(4187), - [anon_sym_group] = ACTIONS(4187), - [anon_sym_select] = ACTIONS(4187), - [anon_sym_as] = ACTIONS(4189), - [anon_sym_is] = ACTIONS(4187), - [anon_sym_DASH_GT] = ACTIONS(4187), - [anon_sym_with] = ACTIONS(4187), + [anon_sym_SEMI] = ACTIONS(4817), + [anon_sym_LBRACK] = ACTIONS(4819), + [anon_sym_COLON] = ACTIONS(4817), + [anon_sym_COMMA] = ACTIONS(4817), + [anon_sym_RBRACK] = ACTIONS(4817), + [anon_sym_LPAREN] = ACTIONS(4753), + [anon_sym_RPAREN] = ACTIONS(4817), + [anon_sym_RBRACE] = ACTIONS(4817), + [anon_sym_LT] = ACTIONS(4821), + [anon_sym_GT] = ACTIONS(4821), + [anon_sym_in] = ACTIONS(4821), + [anon_sym_where] = ACTIONS(4817), + [anon_sym_QMARK] = ACTIONS(4821), + [anon_sym_BANG] = ACTIONS(4823), + [anon_sym_PLUS_PLUS] = ACTIONS(4825), + [anon_sym_DASH_DASH] = ACTIONS(4825), + [anon_sym_PLUS] = ACTIONS(4821), + [anon_sym_DASH] = ACTIONS(4821), + [anon_sym_STAR] = ACTIONS(4817), + [anon_sym_SLASH] = ACTIONS(4821), + [anon_sym_PERCENT] = ACTIONS(4817), + [anon_sym_CARET] = ACTIONS(4817), + [anon_sym_PIPE] = ACTIONS(4821), + [anon_sym_AMP] = ACTIONS(4821), + [anon_sym_LT_LT] = ACTIONS(4817), + [anon_sym_GT_GT] = ACTIONS(4821), + [anon_sym_GT_GT_GT] = ACTIONS(4817), + [anon_sym_EQ_EQ] = ACTIONS(4817), + [anon_sym_BANG_EQ] = ACTIONS(4817), + [anon_sym_GT_EQ] = ACTIONS(4817), + [anon_sym_LT_EQ] = ACTIONS(4817), + [anon_sym_DOT] = ACTIONS(4792), + [anon_sym_EQ_GT] = ACTIONS(4817), + [anon_sym_switch] = ACTIONS(4817), + [anon_sym_DOT_DOT] = ACTIONS(4817), + [anon_sym_and] = ACTIONS(4817), + [anon_sym_or] = ACTIONS(4821), + [anon_sym_AMP_AMP] = ACTIONS(4817), + [anon_sym_PIPE_PIPE] = ACTIONS(4817), + [anon_sym_QMARK_QMARK] = 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_group] = ACTIONS(4817), + [anon_sym_by] = ACTIONS(4817), + [anon_sym_select] = ACTIONS(4817), + [anon_sym_as] = ACTIONS(4817), + [anon_sym_is] = ACTIONS(4817), + [anon_sym_DASH_GT] = ACTIONS(4794), + [anon_sym_with] = ACTIONS(4817), + [aux_sym_preproc_if_token3] = ACTIONS(4817), + [aux_sym_preproc_else_token1] = ACTIONS(4817), + [aux_sym_preproc_elif_token1] = ACTIONS(4817), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -461843,6 +461417,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2894] = { + [sym_initializer_expression] = STATE(2993), [sym_preproc_region] = STATE(2894), [sym_preproc_endregion] = STATE(2894), [sym_preproc_line] = STATE(2894), @@ -461852,66 +461427,64 @@ 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(4016), - [anon_sym_alias] = ACTIONS(4016), - [anon_sym_global] = ACTIONS(4016), - [anon_sym_LBRACK] = ACTIONS(4066), - [anon_sym_LPAREN] = ACTIONS(4018), - [anon_sym_LBRACE] = ACTIONS(4018), - [anon_sym_file] = ACTIONS(4016), - [anon_sym_LT] = ACTIONS(4016), - [anon_sym_GT] = ACTIONS(4016), - [anon_sym_where] = ACTIONS(4016), - [anon_sym_QMARK] = ACTIONS(4069), - [anon_sym_notnull] = ACTIONS(4016), - [anon_sym_unmanaged] = ACTIONS(4016), - [anon_sym_BANG] = ACTIONS(4016), - [anon_sym_PLUS_PLUS] = ACTIONS(4018), - [anon_sym_DASH_DASH] = ACTIONS(4018), - [anon_sym_PLUS] = ACTIONS(4016), - [anon_sym_DASH] = ACTIONS(4016), - [anon_sym_STAR] = ACTIONS(4072), - [anon_sym_SLASH] = ACTIONS(4016), - [anon_sym_PERCENT] = ACTIONS(4018), - [anon_sym_CARET] = ACTIONS(4018), - [anon_sym_PIPE] = ACTIONS(4016), - [anon_sym_AMP] = ACTIONS(4016), - [anon_sym_LT_LT] = ACTIONS(4018), - [anon_sym_GT_GT] = ACTIONS(4016), - [anon_sym_GT_GT_GT] = ACTIONS(4018), - [anon_sym_EQ_EQ] = ACTIONS(4018), - [anon_sym_BANG_EQ] = ACTIONS(4018), - [anon_sym_GT_EQ] = ACTIONS(4018), - [anon_sym_LT_EQ] = ACTIONS(4018), - [anon_sym_DOT] = ACTIONS(4808), - [anon_sym_scoped] = ACTIONS(4016), - [anon_sym_var] = ACTIONS(4016), - [anon_sym_yield] = ACTIONS(4016), - [anon_sym_switch] = ACTIONS(4016), - [anon_sym_when] = ACTIONS(4016), - [sym_discard] = ACTIONS(4016), - [anon_sym_DOT_DOT] = ACTIONS(4018), - [anon_sym_and] = ACTIONS(4016), - [anon_sym_or] = ACTIONS(4016), - [anon_sym_AMP_AMP] = ACTIONS(4018), - [anon_sym_PIPE_PIPE] = ACTIONS(4018), - [anon_sym_QMARK_QMARK] = ACTIONS(4018), - [anon_sym_from] = ACTIONS(4016), - [anon_sym_into] = ACTIONS(4016), - [anon_sym_join] = ACTIONS(4016), - [anon_sym_on] = ACTIONS(4016), - [anon_sym_equals] = ACTIONS(4016), - [anon_sym_let] = ACTIONS(4016), - [anon_sym_orderby] = ACTIONS(4016), - [anon_sym_ascending] = ACTIONS(4016), - [anon_sym_descending] = ACTIONS(4016), - [anon_sym_group] = ACTIONS(4016), - [anon_sym_by] = ACTIONS(4016), - [anon_sym_select] = ACTIONS(4016), - [anon_sym_as] = ACTIONS(4016), - [anon_sym_is] = ACTIONS(4016), - [anon_sym_DASH_GT] = ACTIONS(4755), - [anon_sym_with] = ACTIONS(4016), + [anon_sym_SEMI] = ACTIONS(4827), + [anon_sym_LBRACK] = ACTIONS(4827), + [anon_sym_COLON] = ACTIONS(4827), + [anon_sym_COMMA] = ACTIONS(4827), + [anon_sym_RBRACK] = ACTIONS(4827), + [anon_sym_LPAREN] = ACTIONS(4827), + [anon_sym_RPAREN] = ACTIONS(4827), + [anon_sym_LBRACE] = ACTIONS(1245), + [anon_sym_RBRACE] = ACTIONS(4827), + [anon_sym_LT] = ACTIONS(4829), + [anon_sym_GT] = ACTIONS(4829), + [anon_sym_in] = ACTIONS(4829), + [anon_sym_where] = ACTIONS(4827), + [anon_sym_QMARK] = ACTIONS(4829), + [anon_sym_BANG] = ACTIONS(4829), + [anon_sym_PLUS_PLUS] = ACTIONS(4827), + [anon_sym_DASH_DASH] = ACTIONS(4827), + [anon_sym_PLUS] = ACTIONS(4829), + [anon_sym_DASH] = ACTIONS(4829), + [anon_sym_STAR] = ACTIONS(4827), + [anon_sym_SLASH] = ACTIONS(4829), + [anon_sym_PERCENT] = ACTIONS(4827), + [anon_sym_CARET] = ACTIONS(4827), + [anon_sym_PIPE] = ACTIONS(4829), + [anon_sym_AMP] = ACTIONS(4829), + [anon_sym_LT_LT] = ACTIONS(4827), + [anon_sym_GT_GT] = ACTIONS(4829), + [anon_sym_GT_GT_GT] = ACTIONS(4827), + [anon_sym_EQ_EQ] = ACTIONS(4827), + [anon_sym_BANG_EQ] = ACTIONS(4827), + [anon_sym_GT_EQ] = ACTIONS(4827), + [anon_sym_LT_EQ] = ACTIONS(4827), + [anon_sym_DOT] = ACTIONS(4829), + [anon_sym_EQ_GT] = ACTIONS(4827), + [anon_sym_switch] = ACTIONS(4827), + [anon_sym_DOT_DOT] = ACTIONS(4827), + [anon_sym_and] = ACTIONS(4827), + [anon_sym_or] = ACTIONS(4829), + [anon_sym_AMP_AMP] = ACTIONS(4827), + [anon_sym_PIPE_PIPE] = ACTIONS(4827), + [anon_sym_QMARK_QMARK] = ACTIONS(4827), + [anon_sym_from] = ACTIONS(4827), + [anon_sym_into] = ACTIONS(4827), + [anon_sym_join] = ACTIONS(4827), + [anon_sym_on] = ACTIONS(4827), + [anon_sym_equals] = ACTIONS(4827), + [anon_sym_let] = ACTIONS(4827), + [anon_sym_orderby] = ACTIONS(4827), + [anon_sym_group] = ACTIONS(4827), + [anon_sym_by] = ACTIONS(4827), + [anon_sym_select] = ACTIONS(4827), + [anon_sym_as] = ACTIONS(4827), + [anon_sym_is] = ACTIONS(4827), + [anon_sym_DASH_GT] = ACTIONS(4827), + [anon_sym_with] = ACTIONS(4827), + [aux_sym_preproc_if_token3] = ACTIONS(4827), + [aux_sym_preproc_else_token1] = ACTIONS(4827), + [aux_sym_preproc_elif_token1] = ACTIONS(4827), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -461924,13 +461497,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2895] = { - [sym_attribute_list] = STATE(3531), - [sym__attribute_list] = STATE(3536), - [sym_modifier] = STATE(3652), - [sym_accessor_declaration] = STATE(3467), - [sym_identifier] = STATE(6442), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_attribute_list] = STATE(3531), + [sym_initializer_expression] = STATE(2969), [sym_preproc_region] = STATE(2895), [sym_preproc_endregion] = STATE(2895), [sym_preproc_line] = STATE(2895), @@ -461940,59 +461507,64 @@ 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), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3041), - [aux_sym__class_declaration_initializer_repeat2] = STATE(3331), - [aux_sym_accessor_list_repeat1] = STATE(2880), - [sym__identifier_token] = ACTIONS(25), - [anon_sym_extern] = ACTIONS(4810), - [anon_sym_alias] = ACTIONS(29), - [anon_sym_global] = ACTIONS(29), - [anon_sym_unsafe] = ACTIONS(4810), - [anon_sym_static] = ACTIONS(4810), - [anon_sym_LBRACK] = ACTIONS(4812), - [anon_sym_RBRACE] = ACTIONS(4814), - [anon_sym_abstract] = ACTIONS(4810), - [anon_sym_async] = ACTIONS(4810), - [anon_sym_const] = ACTIONS(4810), - [anon_sym_file] = ACTIONS(4816), - [anon_sym_fixed] = ACTIONS(4810), - [anon_sym_internal] = ACTIONS(4810), - [anon_sym_new] = ACTIONS(4810), - [anon_sym_override] = ACTIONS(4810), - [anon_sym_partial] = ACTIONS(4810), - [anon_sym_private] = ACTIONS(4810), - [anon_sym_protected] = ACTIONS(4810), - [anon_sym_public] = ACTIONS(4810), - [anon_sym_readonly] = ACTIONS(4810), - [anon_sym_required] = ACTIONS(4810), - [anon_sym_sealed] = ACTIONS(4810), - [anon_sym_virtual] = ACTIONS(4810), - [anon_sym_volatile] = ACTIONS(4810), - [anon_sym_where] = ACTIONS(29), - [anon_sym_notnull] = ACTIONS(29), - [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_get] = ACTIONS(4818), - [anon_sym_set] = ACTIONS(4818), - [anon_sym_add] = ACTIONS(4818), - [anon_sym_remove] = ACTIONS(4818), - [anon_sym_init] = ACTIONS(4818), - [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(4820), + [anon_sym_SEMI] = ACTIONS(4831), + [anon_sym_LBRACK] = ACTIONS(4831), + [anon_sym_COLON] = ACTIONS(4831), + [anon_sym_COMMA] = ACTIONS(4831), + [anon_sym_RBRACK] = ACTIONS(4831), + [anon_sym_LPAREN] = ACTIONS(4831), + [anon_sym_RPAREN] = ACTIONS(4831), + [anon_sym_LBRACE] = ACTIONS(1245), + [anon_sym_RBRACE] = ACTIONS(4831), + [anon_sym_LT] = ACTIONS(4833), + [anon_sym_GT] = ACTIONS(4833), + [anon_sym_in] = ACTIONS(4833), + [anon_sym_where] = ACTIONS(4831), + [anon_sym_QMARK] = ACTIONS(4833), + [anon_sym_BANG] = ACTIONS(4833), + [anon_sym_PLUS_PLUS] = ACTIONS(4831), + [anon_sym_DASH_DASH] = ACTIONS(4831), + [anon_sym_PLUS] = ACTIONS(4833), + [anon_sym_DASH] = ACTIONS(4833), + [anon_sym_STAR] = ACTIONS(4831), + [anon_sym_SLASH] = ACTIONS(4833), + [anon_sym_PERCENT] = ACTIONS(4831), + [anon_sym_CARET] = ACTIONS(4831), + [anon_sym_PIPE] = ACTIONS(4833), + [anon_sym_AMP] = ACTIONS(4833), + [anon_sym_LT_LT] = ACTIONS(4831), + [anon_sym_GT_GT] = ACTIONS(4833), + [anon_sym_GT_GT_GT] = ACTIONS(4831), + [anon_sym_EQ_EQ] = ACTIONS(4831), + [anon_sym_BANG_EQ] = ACTIONS(4831), + [anon_sym_GT_EQ] = ACTIONS(4831), + [anon_sym_LT_EQ] = ACTIONS(4831), + [anon_sym_DOT] = ACTIONS(4833), + [anon_sym_EQ_GT] = ACTIONS(4831), + [anon_sym_switch] = ACTIONS(4831), + [anon_sym_DOT_DOT] = ACTIONS(4831), + [anon_sym_and] = ACTIONS(4831), + [anon_sym_or] = ACTIONS(4833), + [anon_sym_AMP_AMP] = ACTIONS(4831), + [anon_sym_PIPE_PIPE] = ACTIONS(4831), + [anon_sym_QMARK_QMARK] = ACTIONS(4831), + [anon_sym_from] = ACTIONS(4831), + [anon_sym_into] = ACTIONS(4831), + [anon_sym_join] = ACTIONS(4831), + [anon_sym_on] = ACTIONS(4831), + [anon_sym_equals] = ACTIONS(4831), + [anon_sym_let] = ACTIONS(4831), + [anon_sym_orderby] = ACTIONS(4831), + [anon_sym_group] = ACTIONS(4831), + [anon_sym_by] = ACTIONS(4831), + [anon_sym_select] = ACTIONS(4831), + [anon_sym_as] = ACTIONS(4831), + [anon_sym_is] = ACTIONS(4831), + [anon_sym_DASH_GT] = ACTIONS(4831), + [anon_sym_with] = ACTIONS(4831), + [aux_sym_preproc_if_token3] = ACTIONS(4831), + [aux_sym_preproc_else_token1] = ACTIONS(4831), + [aux_sym_preproc_elif_token1] = ACTIONS(4831), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -462005,29 +461577,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2896] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter] = STATE(6997), - [sym__parameter_array] = STATE(6998), - [sym__name] = STATE(4390), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(4096), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(4109), - [sym_type] = STATE(6103), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_identifier] = STATE(5730), - [sym__reserved_identifier] = STATE(3691), - [sym_preproc_if_in_attribute_list] = STATE(5576), [sym_preproc_region] = STATE(2896), [sym_preproc_endregion] = STATE(2896), [sym_preproc_line] = STATE(2896), @@ -462037,43 +461586,65 @@ 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), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3060), - [aux_sym__parameter_type_with_modifiers_repeat1] = STATE(3489), - [sym__identifier_token] = ACTIONS(2967), - [anon_sym_alias] = ACTIONS(2971), - [anon_sym_global] = ACTIONS(2971), - [anon_sym_LBRACK] = ACTIONS(4689), - [anon_sym_RBRACK] = ACTIONS(4822), - [anon_sym_LPAREN] = ACTIONS(2979), - [anon_sym_ref] = ACTIONS(4691), - [anon_sym_delegate] = ACTIONS(3454), - [anon_sym_file] = ACTIONS(2971), - [anon_sym_readonly] = ACTIONS(1103), - [anon_sym_in] = ACTIONS(1103), - [anon_sym_out] = ACTIONS(1103), - [anon_sym_where] = ACTIONS(2971), - [anon_sym_notnull] = ACTIONS(2971), - [anon_sym_unmanaged] = ACTIONS(2971), - [anon_sym_this] = ACTIONS(1103), - [anon_sym_scoped] = ACTIONS(4711), - [anon_sym_params] = ACTIONS(1117), - [anon_sym_var] = ACTIONS(2999), - [sym_predefined_type] = ACTIONS(3001), - [anon_sym_yield] = ACTIONS(2971), - [anon_sym_when] = ACTIONS(2971), - [anon_sym_from] = ACTIONS(2971), - [anon_sym_into] = ACTIONS(2971), - [anon_sym_join] = ACTIONS(2971), - [anon_sym_on] = ACTIONS(2971), - [anon_sym_equals] = ACTIONS(2971), - [anon_sym_let] = ACTIONS(2971), - [anon_sym_orderby] = ACTIONS(2971), - [anon_sym_ascending] = ACTIONS(2971), - [anon_sym_descending] = ACTIONS(2971), - [anon_sym_group] = ACTIONS(2971), - [anon_sym_by] = ACTIONS(2971), - [anon_sym_select] = ACTIONS(2971), - [aux_sym_preproc_if_token1] = ACTIONS(4697), + [anon_sym_EQ] = ACTIONS(3696), + [anon_sym_LBRACK] = ACTIONS(4243), + [anon_sym_COMMA] = ACTIONS(4241), + [anon_sym_LPAREN] = ACTIONS(4243), + [anon_sym_LT] = ACTIONS(4246), + [anon_sym_GT] = ACTIONS(4246), + [anon_sym_where] = ACTIONS(4241), + [anon_sym_QMARK] = ACTIONS(4246), + [anon_sym_BANG] = ACTIONS(4246), + [anon_sym_PLUS_PLUS] = ACTIONS(4243), + [anon_sym_DASH_DASH] = ACTIONS(4243), + [anon_sym_PLUS] = ACTIONS(4246), + [anon_sym_DASH] = ACTIONS(4246), + [anon_sym_STAR] = ACTIONS(4246), + [anon_sym_SLASH] = ACTIONS(4246), + [anon_sym_PERCENT] = ACTIONS(4246), + [anon_sym_CARET] = ACTIONS(4246), + [anon_sym_PIPE] = ACTIONS(4246), + [anon_sym_AMP] = ACTIONS(4246), + [anon_sym_LT_LT] = ACTIONS(4246), + [anon_sym_GT_GT] = ACTIONS(4246), + [anon_sym_GT_GT_GT] = ACTIONS(4246), + [anon_sym_EQ_EQ] = ACTIONS(4243), + [anon_sym_BANG_EQ] = ACTIONS(4243), + [anon_sym_GT_EQ] = ACTIONS(4243), + [anon_sym_LT_EQ] = ACTIONS(4243), + [anon_sym_DOT] = ACTIONS(4246), + [anon_sym_switch] = ACTIONS(4243), + [anon_sym_DOT_DOT] = ACTIONS(4243), + [anon_sym_and] = ACTIONS(4241), + [anon_sym_or] = ACTIONS(4249), + [anon_sym_PLUS_EQ] = ACTIONS(3711), + [anon_sym_DASH_EQ] = ACTIONS(3711), + [anon_sym_STAR_EQ] = ACTIONS(3711), + [anon_sym_SLASH_EQ] = ACTIONS(3711), + [anon_sym_PERCENT_EQ] = ACTIONS(3711), + [anon_sym_AMP_EQ] = ACTIONS(3711), + [anon_sym_CARET_EQ] = ACTIONS(3711), + [anon_sym_PIPE_EQ] = ACTIONS(3711), + [anon_sym_LT_LT_EQ] = ACTIONS(3711), + [anon_sym_GT_GT_EQ] = ACTIONS(3711), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3711), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3711), + [anon_sym_AMP_AMP] = ACTIONS(4243), + [anon_sym_PIPE_PIPE] = ACTIONS(4243), + [anon_sym_QMARK_QMARK] = ACTIONS(4246), + [anon_sym_from] = ACTIONS(4241), + [anon_sym_into] = ACTIONS(4241), + [anon_sym_join] = ACTIONS(4241), + [anon_sym_let] = ACTIONS(4241), + [anon_sym_orderby] = ACTIONS(4241), + [anon_sym_ascending] = ACTIONS(4241), + [anon_sym_descending] = ACTIONS(4241), + [anon_sym_group] = ACTIONS(4241), + [anon_sym_select] = ACTIONS(4241), + [anon_sym_as] = ACTIONS(4246), + [anon_sym_is] = ACTIONS(4243), + [anon_sym_DASH_GT] = ACTIONS(4243), + [anon_sym_with] = ACTIONS(4243), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -462086,13 +461657,29 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2897] = { - [sym_attribute_list] = STATE(3531), - [sym__attribute_list] = STATE(3536), - [sym_modifier] = STATE(3652), - [sym_accessor_declaration] = STATE(3467), - [sym_identifier] = STATE(6442), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_attribute_list] = STATE(3531), + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter] = STATE(6852), + [sym__parameter_array] = STATE(6854), + [sym__name] = STATE(4369), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(4068), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(4073), + [sym_type] = STATE(6070), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_identifier] = STATE(5716), + [sym__reserved_identifier] = STATE(3654), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(2897), [sym_preproc_endregion] = STATE(2897), [sym_preproc_line] = STATE(2897), @@ -462102,59 +461689,42 @@ 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), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3041), - [aux_sym__class_declaration_initializer_repeat2] = STATE(3331), - [aux_sym_accessor_list_repeat1] = STATE(2895), - [sym__identifier_token] = ACTIONS(25), - [anon_sym_extern] = ACTIONS(4810), - [anon_sym_alias] = ACTIONS(29), - [anon_sym_global] = ACTIONS(29), - [anon_sym_unsafe] = ACTIONS(4810), - [anon_sym_static] = ACTIONS(4810), - [anon_sym_LBRACK] = ACTIONS(4812), - [anon_sym_RBRACE] = ACTIONS(4824), - [anon_sym_abstract] = ACTIONS(4810), - [anon_sym_async] = ACTIONS(4810), - [anon_sym_const] = ACTIONS(4810), - [anon_sym_file] = ACTIONS(4816), - [anon_sym_fixed] = ACTIONS(4810), - [anon_sym_internal] = ACTIONS(4810), - [anon_sym_new] = ACTIONS(4810), - [anon_sym_override] = ACTIONS(4810), - [anon_sym_partial] = ACTIONS(4810), - [anon_sym_private] = ACTIONS(4810), - [anon_sym_protected] = ACTIONS(4810), - [anon_sym_public] = ACTIONS(4810), - [anon_sym_readonly] = ACTIONS(4810), - [anon_sym_required] = ACTIONS(4810), - [anon_sym_sealed] = ACTIONS(4810), - [anon_sym_virtual] = ACTIONS(4810), - [anon_sym_volatile] = ACTIONS(4810), - [anon_sym_where] = ACTIONS(29), - [anon_sym_notnull] = ACTIONS(29), - [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_get] = ACTIONS(4818), - [anon_sym_set] = ACTIONS(4818), - [anon_sym_add] = ACTIONS(4818), - [anon_sym_remove] = ACTIONS(4818), - [anon_sym_init] = ACTIONS(4818), - [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(4820), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3044), + [aux_sym__parameter_type_with_modifiers_repeat1] = STATE(3452), + [sym__identifier_token] = ACTIONS(2965), + [anon_sym_alias] = ACTIONS(2969), + [anon_sym_global] = ACTIONS(2969), + [anon_sym_LBRACK] = ACTIONS(4675), + [anon_sym_LPAREN] = ACTIONS(2977), + [anon_sym_ref] = ACTIONS(4677), + [anon_sym_delegate] = ACTIONS(3438), + [anon_sym_file] = ACTIONS(2969), + [anon_sym_readonly] = ACTIONS(1097), + [anon_sym_in] = ACTIONS(1097), + [anon_sym_out] = ACTIONS(1097), + [anon_sym_where] = ACTIONS(2969), + [anon_sym_notnull] = ACTIONS(2969), + [anon_sym_unmanaged] = ACTIONS(2969), + [anon_sym_this] = ACTIONS(1097), + [anon_sym_scoped] = ACTIONS(4687), + [anon_sym_params] = ACTIONS(1111), + [anon_sym_var] = ACTIONS(2995), + [sym_predefined_type] = ACTIONS(2997), + [anon_sym_yield] = ACTIONS(2969), + [anon_sym_when] = ACTIONS(2969), + [anon_sym_from] = ACTIONS(2969), + [anon_sym_into] = ACTIONS(2969), + [anon_sym_join] = ACTIONS(2969), + [anon_sym_on] = ACTIONS(2969), + [anon_sym_equals] = ACTIONS(2969), + [anon_sym_let] = ACTIONS(2969), + [anon_sym_orderby] = ACTIONS(2969), + [anon_sym_ascending] = ACTIONS(2969), + [anon_sym_descending] = ACTIONS(2969), + [anon_sym_group] = ACTIONS(2969), + [anon_sym_by] = ACTIONS(2969), + [anon_sym_select] = ACTIONS(2969), + [aux_sym_preproc_if_token1] = ACTIONS(4683), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -462176,65 +461746,65 @@ 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), - [anon_sym_EQ] = ACTIONS(4130), - [anon_sym_LBRACK] = ACTIONS(4128), - [anon_sym_COMMA] = ACTIONS(4128), - [anon_sym_LPAREN] = ACTIONS(4128), - [anon_sym_LT] = ACTIONS(4130), - [anon_sym_GT] = ACTIONS(4130), - [anon_sym_where] = ACTIONS(4128), - [anon_sym_QMARK] = ACTIONS(4130), - [anon_sym_BANG] = ACTIONS(4130), - [anon_sym_PLUS_PLUS] = ACTIONS(4128), - [anon_sym_DASH_DASH] = ACTIONS(4128), - [anon_sym_PLUS] = ACTIONS(4130), - [anon_sym_DASH] = ACTIONS(4130), - [anon_sym_STAR] = ACTIONS(4130), - [anon_sym_SLASH] = ACTIONS(4130), - [anon_sym_PERCENT] = ACTIONS(4130), - [anon_sym_CARET] = ACTIONS(4130), - [anon_sym_PIPE] = ACTIONS(4130), - [anon_sym_AMP] = ACTIONS(4130), - [anon_sym_LT_LT] = ACTIONS(4130), - [anon_sym_GT_GT] = ACTIONS(4130), - [anon_sym_GT_GT_GT] = ACTIONS(4130), - [anon_sym_EQ_EQ] = ACTIONS(4128), - [anon_sym_BANG_EQ] = ACTIONS(4128), - [anon_sym_GT_EQ] = ACTIONS(4128), - [anon_sym_LT_EQ] = ACTIONS(4128), - [anon_sym_DOT] = ACTIONS(4130), - [anon_sym_switch] = ACTIONS(4128), - [anon_sym_DOT_DOT] = ACTIONS(4128), - [anon_sym_and] = ACTIONS(4128), - [anon_sym_or] = ACTIONS(4130), - [anon_sym_PLUS_EQ] = ACTIONS(4128), - [anon_sym_DASH_EQ] = ACTIONS(4128), - [anon_sym_STAR_EQ] = ACTIONS(4128), - [anon_sym_SLASH_EQ] = ACTIONS(4128), - [anon_sym_PERCENT_EQ] = ACTIONS(4128), - [anon_sym_AMP_EQ] = ACTIONS(4128), - [anon_sym_CARET_EQ] = ACTIONS(4128), - [anon_sym_PIPE_EQ] = ACTIONS(4128), - [anon_sym_LT_LT_EQ] = ACTIONS(4128), - [anon_sym_GT_GT_EQ] = ACTIONS(4128), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(4128), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(4128), - [anon_sym_AMP_AMP] = ACTIONS(4128), - [anon_sym_PIPE_PIPE] = ACTIONS(4128), - [anon_sym_QMARK_QMARK] = ACTIONS(4130), - [anon_sym_from] = ACTIONS(4128), - [anon_sym_into] = ACTIONS(4128), - [anon_sym_join] = ACTIONS(4128), - [anon_sym_let] = ACTIONS(4128), - [anon_sym_orderby] = ACTIONS(4128), - [anon_sym_ascending] = ACTIONS(4128), - [anon_sym_descending] = ACTIONS(4128), - [anon_sym_group] = ACTIONS(4128), - [anon_sym_select] = ACTIONS(4128), - [anon_sym_as] = ACTIONS(4130), - [anon_sym_is] = ACTIONS(4128), - [anon_sym_DASH_GT] = ACTIONS(4128), - [anon_sym_with] = ACTIONS(4128), + [anon_sym_SEMI] = ACTIONS(3429), + [anon_sym_LBRACK] = ACTIONS(3429), + [anon_sym_COLON] = ACTIONS(3431), + [anon_sym_COMMA] = ACTIONS(3429), + [anon_sym_RBRACK] = ACTIONS(3429), + [anon_sym_LPAREN] = ACTIONS(3429), + [anon_sym_RPAREN] = ACTIONS(3429), + [anon_sym_LBRACE] = ACTIONS(3429), + [anon_sym_RBRACE] = ACTIONS(3429), + [anon_sym_LT] = ACTIONS(3431), + [anon_sym_GT] = ACTIONS(3431), + [anon_sym_in] = ACTIONS(3431), + [anon_sym_where] = ACTIONS(3429), + [anon_sym_QMARK] = ACTIONS(3431), + [anon_sym_BANG] = ACTIONS(3431), + [anon_sym_PLUS_PLUS] = ACTIONS(3429), + [anon_sym_DASH_DASH] = ACTIONS(3429), + [anon_sym_PLUS] = ACTIONS(3431), + [anon_sym_DASH] = ACTIONS(3431), + [anon_sym_STAR] = ACTIONS(3429), + [anon_sym_SLASH] = ACTIONS(3431), + [anon_sym_PERCENT] = ACTIONS(3429), + [anon_sym_CARET] = ACTIONS(3429), + [anon_sym_PIPE] = ACTIONS(3431), + [anon_sym_AMP] = ACTIONS(3431), + [anon_sym_LT_LT] = ACTIONS(3429), + [anon_sym_GT_GT] = ACTIONS(3431), + [anon_sym_GT_GT_GT] = ACTIONS(3429), + [anon_sym_EQ_EQ] = ACTIONS(3429), + [anon_sym_BANG_EQ] = ACTIONS(3429), + [anon_sym_GT_EQ] = ACTIONS(3429), + [anon_sym_LT_EQ] = ACTIONS(3429), + [anon_sym_DOT] = ACTIONS(3431), + [anon_sym_EQ_GT] = ACTIONS(3429), + [anon_sym_COLON_COLON] = ACTIONS(3429), + [anon_sym_switch] = ACTIONS(3429), + [anon_sym_DOT_DOT] = ACTIONS(3429), + [anon_sym_and] = ACTIONS(3429), + [anon_sym_or] = ACTIONS(3431), + [anon_sym_AMP_AMP] = ACTIONS(3429), + [anon_sym_PIPE_PIPE] = ACTIONS(3429), + [anon_sym_QMARK_QMARK] = ACTIONS(3429), + [anon_sym_from] = ACTIONS(3429), + [anon_sym_into] = ACTIONS(3429), + [anon_sym_join] = ACTIONS(3429), + [anon_sym_on] = ACTIONS(3429), + [anon_sym_equals] = ACTIONS(3429), + [anon_sym_let] = ACTIONS(3429), + [anon_sym_orderby] = ACTIONS(3429), + [anon_sym_group] = ACTIONS(3429), + [anon_sym_by] = ACTIONS(3429), + [anon_sym_select] = ACTIONS(3429), + [anon_sym_as] = ACTIONS(3429), + [anon_sym_is] = ACTIONS(3429), + [anon_sym_DASH_GT] = ACTIONS(3429), + [anon_sym_with] = 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), @@ -462247,6 +461817,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2899] = { + [sym_type_argument_list] = STATE(2933), [sym_preproc_region] = STATE(2899), [sym_preproc_endregion] = STATE(2899), [sym_preproc_line] = STATE(2899), @@ -462256,65 +461827,64 @@ 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), - [anon_sym_EQ] = ACTIONS(4193), - [anon_sym_LBRACK] = ACTIONS(4191), - [anon_sym_COMMA] = ACTIONS(4191), - [anon_sym_LPAREN] = ACTIONS(4191), - [anon_sym_LT] = ACTIONS(4193), - [anon_sym_GT] = ACTIONS(4193), - [anon_sym_where] = ACTIONS(4191), - [anon_sym_QMARK] = ACTIONS(4193), - [anon_sym_BANG] = ACTIONS(4193), - [anon_sym_PLUS_PLUS] = ACTIONS(4191), - [anon_sym_DASH_DASH] = ACTIONS(4191), - [anon_sym_PLUS] = ACTIONS(4193), - [anon_sym_DASH] = ACTIONS(4193), - [anon_sym_STAR] = ACTIONS(4193), - [anon_sym_SLASH] = ACTIONS(4193), - [anon_sym_PERCENT] = ACTIONS(4193), - [anon_sym_CARET] = ACTIONS(4193), - [anon_sym_PIPE] = ACTIONS(4193), - [anon_sym_AMP] = ACTIONS(4193), - [anon_sym_LT_LT] = ACTIONS(4193), - [anon_sym_GT_GT] = ACTIONS(4193), - [anon_sym_GT_GT_GT] = ACTIONS(4193), - [anon_sym_EQ_EQ] = ACTIONS(4191), - [anon_sym_BANG_EQ] = ACTIONS(4191), - [anon_sym_GT_EQ] = ACTIONS(4191), - [anon_sym_LT_EQ] = ACTIONS(4191), - [anon_sym_DOT] = ACTIONS(4193), - [anon_sym_switch] = ACTIONS(4191), - [anon_sym_DOT_DOT] = ACTIONS(4191), - [anon_sym_and] = ACTIONS(4191), - [anon_sym_or] = ACTIONS(4193), - [anon_sym_PLUS_EQ] = ACTIONS(4191), - [anon_sym_DASH_EQ] = ACTIONS(4191), - [anon_sym_STAR_EQ] = ACTIONS(4191), - [anon_sym_SLASH_EQ] = ACTIONS(4191), - [anon_sym_PERCENT_EQ] = ACTIONS(4191), - [anon_sym_AMP_EQ] = ACTIONS(4191), - [anon_sym_CARET_EQ] = ACTIONS(4191), - [anon_sym_PIPE_EQ] = ACTIONS(4191), - [anon_sym_LT_LT_EQ] = ACTIONS(4191), - [anon_sym_GT_GT_EQ] = ACTIONS(4191), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(4191), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(4191), - [anon_sym_AMP_AMP] = ACTIONS(4191), - [anon_sym_PIPE_PIPE] = ACTIONS(4191), - [anon_sym_QMARK_QMARK] = ACTIONS(4193), - [anon_sym_from] = ACTIONS(4191), - [anon_sym_into] = ACTIONS(4191), - [anon_sym_join] = ACTIONS(4191), - [anon_sym_let] = ACTIONS(4191), - [anon_sym_orderby] = ACTIONS(4191), - [anon_sym_ascending] = ACTIONS(4191), - [anon_sym_descending] = ACTIONS(4191), - [anon_sym_group] = ACTIONS(4191), - [anon_sym_select] = ACTIONS(4191), - [anon_sym_as] = ACTIONS(4193), - [anon_sym_is] = ACTIONS(4191), - [anon_sym_DASH_GT] = ACTIONS(4191), - [anon_sym_with] = ACTIONS(4191), + [anon_sym_SEMI] = ACTIONS(3640), + [anon_sym_LBRACK] = ACTIONS(3640), + [anon_sym_COLON] = ACTIONS(3640), + [anon_sym_COMMA] = ACTIONS(3640), + [anon_sym_RBRACK] = ACTIONS(3640), + [anon_sym_LPAREN] = ACTIONS(3640), + [anon_sym_RPAREN] = ACTIONS(3640), + [anon_sym_LBRACE] = ACTIONS(3640), + [anon_sym_RBRACE] = ACTIONS(3640), + [anon_sym_LT] = ACTIONS(4835), + [anon_sym_GT] = ACTIONS(3638), + [anon_sym_in] = ACTIONS(3638), + [anon_sym_where] = ACTIONS(3640), + [anon_sym_QMARK] = ACTIONS(3638), + [anon_sym_BANG] = ACTIONS(3638), + [anon_sym_PLUS_PLUS] = ACTIONS(3640), + [anon_sym_DASH_DASH] = ACTIONS(3640), + [anon_sym_PLUS] = ACTIONS(3638), + [anon_sym_DASH] = ACTIONS(3638), + [anon_sym_STAR] = ACTIONS(3640), + [anon_sym_SLASH] = ACTIONS(3638), + [anon_sym_PERCENT] = ACTIONS(3640), + [anon_sym_CARET] = ACTIONS(3640), + [anon_sym_PIPE] = ACTIONS(3638), + [anon_sym_AMP] = ACTIONS(3638), + [anon_sym_LT_LT] = ACTIONS(3640), + [anon_sym_GT_GT] = ACTIONS(3638), + [anon_sym_GT_GT_GT] = ACTIONS(3640), + [anon_sym_EQ_EQ] = ACTIONS(3640), + [anon_sym_BANG_EQ] = ACTIONS(3640), + [anon_sym_GT_EQ] = ACTIONS(3640), + [anon_sym_LT_EQ] = ACTIONS(3640), + [anon_sym_DOT] = ACTIONS(3638), + [anon_sym_EQ_GT] = ACTIONS(3640), + [anon_sym_switch] = ACTIONS(3640), + [anon_sym_DOT_DOT] = ACTIONS(3640), + [anon_sym_and] = ACTIONS(3640), + [anon_sym_or] = ACTIONS(3638), + [anon_sym_AMP_AMP] = ACTIONS(3640), + [anon_sym_PIPE_PIPE] = ACTIONS(3640), + [anon_sym_QMARK_QMARK] = ACTIONS(3640), + [anon_sym_from] = ACTIONS(3640), + [anon_sym_into] = ACTIONS(3640), + [anon_sym_join] = ACTIONS(3640), + [anon_sym_on] = ACTIONS(3640), + [anon_sym_equals] = ACTIONS(3640), + [anon_sym_let] = ACTIONS(3640), + [anon_sym_orderby] = ACTIONS(3640), + [anon_sym_group] = ACTIONS(3640), + [anon_sym_by] = ACTIONS(3640), + [anon_sym_select] = ACTIONS(3640), + [anon_sym_as] = ACTIONS(3640), + [anon_sym_is] = ACTIONS(3640), + [anon_sym_DASH_GT] = ACTIONS(3640), + [anon_sym_with] = ACTIONS(3640), + [aux_sym_preproc_if_token3] = ACTIONS(3640), + [aux_sym_preproc_else_token1] = ACTIONS(3640), + [aux_sym_preproc_elif_token1] = ACTIONS(3640), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -462327,7 +461897,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2900] = { - [sym_type_argument_list] = STATE(2930), [sym_preproc_region] = STATE(2900), [sym_preproc_endregion] = STATE(2900), [sym_preproc_line] = STATE(2900), @@ -462337,64 +461906,65 @@ 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), - [anon_sym_SEMI] = ACTIONS(3662), - [anon_sym_LBRACK] = ACTIONS(3662), - [anon_sym_COLON] = ACTIONS(3662), - [anon_sym_COMMA] = ACTIONS(3662), - [anon_sym_RBRACK] = ACTIONS(3662), - [anon_sym_LPAREN] = ACTIONS(3662), - [anon_sym_RPAREN] = ACTIONS(3662), - [anon_sym_LBRACE] = ACTIONS(3662), - [anon_sym_RBRACE] = ACTIONS(3662), - [anon_sym_LT] = ACTIONS(4826), - [anon_sym_GT] = ACTIONS(3660), - [anon_sym_in] = ACTIONS(3660), - [anon_sym_where] = ACTIONS(3662), - [anon_sym_QMARK] = ACTIONS(3660), - [anon_sym_BANG] = ACTIONS(3660), - [anon_sym_PLUS_PLUS] = ACTIONS(3662), - [anon_sym_DASH_DASH] = ACTIONS(3662), - [anon_sym_PLUS] = ACTIONS(3660), - [anon_sym_DASH] = ACTIONS(3660), - [anon_sym_STAR] = ACTIONS(3662), - [anon_sym_SLASH] = ACTIONS(3660), - [anon_sym_PERCENT] = ACTIONS(3662), - [anon_sym_CARET] = ACTIONS(3662), - [anon_sym_PIPE] = ACTIONS(3660), - [anon_sym_AMP] = ACTIONS(3660), - [anon_sym_LT_LT] = ACTIONS(3662), - [anon_sym_GT_GT] = ACTIONS(3660), - [anon_sym_GT_GT_GT] = ACTIONS(3662), - [anon_sym_EQ_EQ] = ACTIONS(3662), - [anon_sym_BANG_EQ] = ACTIONS(3662), - [anon_sym_GT_EQ] = ACTIONS(3662), - [anon_sym_LT_EQ] = ACTIONS(3662), - [anon_sym_DOT] = ACTIONS(3660), - [anon_sym_EQ_GT] = ACTIONS(3662), - [anon_sym_switch] = ACTIONS(3662), - [anon_sym_DOT_DOT] = ACTIONS(3662), - [anon_sym_and] = ACTIONS(3662), - [anon_sym_or] = ACTIONS(3660), - [anon_sym_AMP_AMP] = ACTIONS(3662), - [anon_sym_PIPE_PIPE] = ACTIONS(3662), - [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_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(3662), - [anon_sym_with] = ACTIONS(3662), - [aux_sym_preproc_if_token3] = ACTIONS(3662), - [aux_sym_preproc_else_token1] = ACTIONS(3662), - [aux_sym_preproc_elif_token1] = ACTIONS(3662), + [anon_sym_SEMI] = ACTIONS(3636), + [anon_sym_LBRACK] = ACTIONS(3636), + [anon_sym_COLON] = ACTIONS(3634), + [anon_sym_COMMA] = ACTIONS(3636), + [anon_sym_RBRACK] = ACTIONS(3636), + [anon_sym_LPAREN] = ACTIONS(3636), + [anon_sym_RPAREN] = ACTIONS(3636), + [anon_sym_LBRACE] = ACTIONS(3636), + [anon_sym_RBRACE] = ACTIONS(3636), + [anon_sym_LT] = ACTIONS(3634), + [anon_sym_GT] = ACTIONS(3634), + [anon_sym_in] = ACTIONS(3634), + [anon_sym_where] = ACTIONS(3636), + [anon_sym_QMARK] = ACTIONS(3634), + [anon_sym_BANG] = ACTIONS(3634), + [anon_sym_PLUS_PLUS] = ACTIONS(3636), + [anon_sym_DASH_DASH] = ACTIONS(3636), + [anon_sym_PLUS] = ACTIONS(3634), + [anon_sym_DASH] = ACTIONS(3634), + [anon_sym_STAR] = ACTIONS(3636), + [anon_sym_SLASH] = ACTIONS(3634), + [anon_sym_PERCENT] = ACTIONS(3636), + [anon_sym_CARET] = ACTIONS(3636), + [anon_sym_PIPE] = ACTIONS(3634), + [anon_sym_AMP] = ACTIONS(3634), + [anon_sym_LT_LT] = ACTIONS(3636), + [anon_sym_GT_GT] = ACTIONS(3634), + [anon_sym_GT_GT_GT] = ACTIONS(3636), + [anon_sym_EQ_EQ] = ACTIONS(3636), + [anon_sym_BANG_EQ] = ACTIONS(3636), + [anon_sym_GT_EQ] = ACTIONS(3636), + [anon_sym_LT_EQ] = ACTIONS(3636), + [anon_sym_DOT] = ACTIONS(3634), + [anon_sym_EQ_GT] = ACTIONS(3636), + [anon_sym_COLON_COLON] = ACTIONS(3636), + [anon_sym_switch] = ACTIONS(3636), + [anon_sym_DOT_DOT] = ACTIONS(3636), + [anon_sym_and] = ACTIONS(3636), + [anon_sym_or] = ACTIONS(3634), + [anon_sym_AMP_AMP] = ACTIONS(3636), + [anon_sym_PIPE_PIPE] = ACTIONS(3636), + [anon_sym_QMARK_QMARK] = ACTIONS(3636), + [anon_sym_from] = ACTIONS(3636), + [anon_sym_into] = ACTIONS(3636), + [anon_sym_join] = ACTIONS(3636), + [anon_sym_on] = ACTIONS(3636), + [anon_sym_equals] = ACTIONS(3636), + [anon_sym_let] = ACTIONS(3636), + [anon_sym_orderby] = ACTIONS(3636), + [anon_sym_group] = ACTIONS(3636), + [anon_sym_by] = ACTIONS(3636), + [anon_sym_select] = ACTIONS(3636), + [anon_sym_as] = ACTIONS(3636), + [anon_sym_is] = ACTIONS(3636), + [anon_sym_DASH_GT] = ACTIONS(3636), + [anon_sym_with] = ACTIONS(3636), + [aux_sym_preproc_if_token3] = ACTIONS(3636), + [aux_sym_preproc_else_token1] = ACTIONS(3636), + [aux_sym_preproc_elif_token1] = ACTIONS(3636), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -462416,65 +461986,65 @@ 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), - [anon_sym_SEMI] = ACTIONS(3616), - [anon_sym_LBRACK] = ACTIONS(3616), - [anon_sym_COLON] = ACTIONS(3619), - [anon_sym_COMMA] = ACTIONS(3616), - [anon_sym_RBRACK] = ACTIONS(3616), - [anon_sym_LPAREN] = ACTIONS(3616), - [anon_sym_RPAREN] = ACTIONS(3616), - [anon_sym_LBRACE] = ACTIONS(3616), - [anon_sym_RBRACE] = ACTIONS(3616), - [anon_sym_LT] = ACTIONS(3619), - [anon_sym_GT] = ACTIONS(3619), - [anon_sym_in] = ACTIONS(3619), - [anon_sym_where] = ACTIONS(3616), - [anon_sym_QMARK] = ACTIONS(3619), - [anon_sym_BANG] = ACTIONS(3619), - [anon_sym_PLUS_PLUS] = ACTIONS(3616), - [anon_sym_DASH_DASH] = ACTIONS(3616), - [anon_sym_PLUS] = ACTIONS(3619), - [anon_sym_DASH] = ACTIONS(3619), - [anon_sym_STAR] = ACTIONS(3616), - [anon_sym_SLASH] = ACTIONS(3619), - [anon_sym_PERCENT] = ACTIONS(3616), - [anon_sym_CARET] = ACTIONS(3616), - [anon_sym_PIPE] = ACTIONS(3619), - [anon_sym_AMP] = ACTIONS(3619), - [anon_sym_LT_LT] = ACTIONS(3616), - [anon_sym_GT_GT] = ACTIONS(3619), - [anon_sym_GT_GT_GT] = ACTIONS(3616), - [anon_sym_EQ_EQ] = ACTIONS(3616), - [anon_sym_BANG_EQ] = ACTIONS(3616), - [anon_sym_GT_EQ] = ACTIONS(3616), - [anon_sym_LT_EQ] = ACTIONS(3616), - [anon_sym_DOT] = ACTIONS(3619), - [anon_sym_EQ_GT] = ACTIONS(3616), - [anon_sym_COLON_COLON] = ACTIONS(3445), - [anon_sym_switch] = ACTIONS(3616), - [anon_sym_DOT_DOT] = ACTIONS(3616), - [anon_sym_and] = ACTIONS(3616), - [anon_sym_or] = ACTIONS(3619), - [anon_sym_AMP_AMP] = ACTIONS(3616), - [anon_sym_PIPE_PIPE] = ACTIONS(3616), - [anon_sym_QMARK_QMARK] = ACTIONS(3616), - [anon_sym_from] = ACTIONS(3616), - [anon_sym_into] = ACTIONS(3616), - [anon_sym_join] = ACTIONS(3616), - [anon_sym_on] = ACTIONS(3616), - [anon_sym_equals] = ACTIONS(3616), - [anon_sym_let] = ACTIONS(3616), - [anon_sym_orderby] = ACTIONS(3616), - [anon_sym_group] = ACTIONS(3616), - [anon_sym_by] = ACTIONS(3616), - [anon_sym_select] = ACTIONS(3616), - [anon_sym_as] = ACTIONS(3616), - [anon_sym_is] = ACTIONS(3616), - [anon_sym_DASH_GT] = ACTIONS(3616), - [anon_sym_with] = ACTIONS(3616), - [aux_sym_preproc_if_token3] = ACTIONS(3616), - [aux_sym_preproc_else_token1] = ACTIONS(3616), - [aux_sym_preproc_elif_token1] = ACTIONS(3616), + [anon_sym_EQ] = ACTIONS(4118), + [anon_sym_LBRACK] = ACTIONS(4116), + [anon_sym_COMMA] = ACTIONS(4116), + [anon_sym_LPAREN] = ACTIONS(4116), + [anon_sym_LT] = ACTIONS(4118), + [anon_sym_GT] = ACTIONS(4118), + [anon_sym_where] = ACTIONS(4116), + [anon_sym_QMARK] = ACTIONS(4118), + [anon_sym_BANG] = ACTIONS(4118), + [anon_sym_PLUS_PLUS] = ACTIONS(4116), + [anon_sym_DASH_DASH] = ACTIONS(4116), + [anon_sym_PLUS] = ACTIONS(4118), + [anon_sym_DASH] = ACTIONS(4118), + [anon_sym_STAR] = ACTIONS(4118), + [anon_sym_SLASH] = ACTIONS(4118), + [anon_sym_PERCENT] = ACTIONS(4118), + [anon_sym_CARET] = ACTIONS(4118), + [anon_sym_PIPE] = ACTIONS(4118), + [anon_sym_AMP] = ACTIONS(4118), + [anon_sym_LT_LT] = ACTIONS(4118), + [anon_sym_GT_GT] = ACTIONS(4118), + [anon_sym_GT_GT_GT] = ACTIONS(4118), + [anon_sym_EQ_EQ] = ACTIONS(4116), + [anon_sym_BANG_EQ] = ACTIONS(4116), + [anon_sym_GT_EQ] = ACTIONS(4116), + [anon_sym_LT_EQ] = ACTIONS(4116), + [anon_sym_DOT] = ACTIONS(4118), + [anon_sym_switch] = ACTIONS(4116), + [anon_sym_DOT_DOT] = ACTIONS(4116), + [anon_sym_and] = ACTIONS(4116), + [anon_sym_or] = ACTIONS(4118), + [anon_sym_PLUS_EQ] = ACTIONS(4116), + [anon_sym_DASH_EQ] = ACTIONS(4116), + [anon_sym_STAR_EQ] = ACTIONS(4116), + [anon_sym_SLASH_EQ] = ACTIONS(4116), + [anon_sym_PERCENT_EQ] = ACTIONS(4116), + [anon_sym_AMP_EQ] = ACTIONS(4116), + [anon_sym_CARET_EQ] = ACTIONS(4116), + [anon_sym_PIPE_EQ] = ACTIONS(4116), + [anon_sym_LT_LT_EQ] = ACTIONS(4116), + [anon_sym_GT_GT_EQ] = ACTIONS(4116), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(4116), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(4116), + [anon_sym_AMP_AMP] = ACTIONS(4116), + [anon_sym_PIPE_PIPE] = ACTIONS(4116), + [anon_sym_QMARK_QMARK] = ACTIONS(4118), + [anon_sym_from] = ACTIONS(4116), + [anon_sym_into] = ACTIONS(4116), + [anon_sym_join] = ACTIONS(4116), + [anon_sym_let] = ACTIONS(4116), + [anon_sym_orderby] = ACTIONS(4116), + [anon_sym_ascending] = ACTIONS(4116), + [anon_sym_descending] = ACTIONS(4116), + [anon_sym_group] = ACTIONS(4116), + [anon_sym_select] = ACTIONS(4116), + [anon_sym_as] = ACTIONS(4118), + [anon_sym_is] = ACTIONS(4116), + [anon_sym_DASH_GT] = ACTIONS(4116), + [anon_sym_with] = ACTIONS(4116), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -462487,6 +462057,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2902] = { + [sym_argument_list] = STATE(2958), + [sym_bracketed_argument_list] = STATE(2419), [sym_preproc_region] = STATE(2902), [sym_preproc_endregion] = STATE(2902), [sym_preproc_line] = STATE(2902), @@ -462496,65 +462068,63 @@ 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), - [anon_sym_EQ] = ACTIONS(4166), - [anon_sym_LBRACK] = 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), + [anon_sym_SEMI] = ACTIONS(4838), + [anon_sym_LBRACK] = ACTIONS(4819), + [anon_sym_COLON] = ACTIONS(4838), + [anon_sym_COMMA] = ACTIONS(4838), + [anon_sym_RBRACK] = ACTIONS(4838), + [anon_sym_LPAREN] = ACTIONS(4753), + [anon_sym_RPAREN] = ACTIONS(4838), + [anon_sym_RBRACE] = ACTIONS(4838), + [anon_sym_LT] = ACTIONS(4840), + [anon_sym_GT] = ACTIONS(4840), + [anon_sym_in] = ACTIONS(4840), + [anon_sym_where] = ACTIONS(4838), + [anon_sym_QMARK] = ACTIONS(4840), + [anon_sym_BANG] = ACTIONS(4823), + [anon_sym_PLUS_PLUS] = ACTIONS(4825), + [anon_sym_DASH_DASH] = ACTIONS(4825), + [anon_sym_PLUS] = ACTIONS(4840), + [anon_sym_DASH] = ACTIONS(4840), + [anon_sym_STAR] = ACTIONS(4838), + [anon_sym_SLASH] = ACTIONS(4840), + [anon_sym_PERCENT] = ACTIONS(4838), + [anon_sym_CARET] = ACTIONS(4838), + [anon_sym_PIPE] = ACTIONS(4840), + [anon_sym_AMP] = ACTIONS(4840), + [anon_sym_LT_LT] = ACTIONS(4838), + [anon_sym_GT_GT] = ACTIONS(4840), + [anon_sym_GT_GT_GT] = ACTIONS(4838), + [anon_sym_EQ_EQ] = ACTIONS(4838), + [anon_sym_BANG_EQ] = ACTIONS(4838), + [anon_sym_GT_EQ] = ACTIONS(4838), + [anon_sym_LT_EQ] = ACTIONS(4838), + [anon_sym_DOT] = ACTIONS(4792), + [anon_sym_EQ_GT] = ACTIONS(4838), + [anon_sym_switch] = ACTIONS(4838), + [anon_sym_DOT_DOT] = ACTIONS(4838), + [anon_sym_and] = ACTIONS(4838), + [anon_sym_or] = ACTIONS(4840), + [anon_sym_AMP_AMP] = ACTIONS(4838), + [anon_sym_PIPE_PIPE] = ACTIONS(4838), + [anon_sym_QMARK_QMARK] = ACTIONS(4838), + [anon_sym_from] = ACTIONS(4838), + [anon_sym_into] = ACTIONS(4838), + [anon_sym_join] = ACTIONS(4838), + [anon_sym_on] = ACTIONS(4838), + [anon_sym_equals] = ACTIONS(4838), + [anon_sym_let] = ACTIONS(4838), + [anon_sym_orderby] = ACTIONS(4838), + [anon_sym_group] = ACTIONS(4838), + [anon_sym_by] = ACTIONS(4838), + [anon_sym_select] = ACTIONS(4838), + [anon_sym_as] = ACTIONS(4838), + [anon_sym_is] = ACTIONS(4838), + [anon_sym_DASH_GT] = ACTIONS(4794), + [anon_sym_with] = ACTIONS(4838), + [aux_sym_preproc_if_token3] = ACTIONS(4838), + [aux_sym_preproc_else_token1] = ACTIONS(4838), + [aux_sym_preproc_elif_token1] = ACTIONS(4838), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -462576,65 +462146,65 @@ 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), - [anon_sym_SEMI] = ACTIONS(3445), - [anon_sym_LBRACK] = ACTIONS(3445), - [anon_sym_COLON] = ACTIONS(3447), - [anon_sym_COMMA] = ACTIONS(3445), - [anon_sym_RBRACK] = ACTIONS(3445), - [anon_sym_LPAREN] = ACTIONS(3445), - [anon_sym_RPAREN] = ACTIONS(3445), - [anon_sym_LBRACE] = ACTIONS(3445), - [anon_sym_RBRACE] = ACTIONS(3445), - [anon_sym_LT] = ACTIONS(3447), - [anon_sym_GT] = ACTIONS(3447), - [anon_sym_in] = ACTIONS(3447), - [anon_sym_where] = ACTIONS(3445), - [anon_sym_QMARK] = ACTIONS(3447), - [anon_sym_BANG] = ACTIONS(3447), - [anon_sym_PLUS_PLUS] = ACTIONS(3445), - [anon_sym_DASH_DASH] = ACTIONS(3445), - [anon_sym_PLUS] = ACTIONS(3447), - [anon_sym_DASH] = ACTIONS(3447), - [anon_sym_STAR] = ACTIONS(3445), - [anon_sym_SLASH] = ACTIONS(3447), - [anon_sym_PERCENT] = ACTIONS(3445), - [anon_sym_CARET] = ACTIONS(3445), - [anon_sym_PIPE] = ACTIONS(3447), - [anon_sym_AMP] = ACTIONS(3447), - [anon_sym_LT_LT] = ACTIONS(3445), - [anon_sym_GT_GT] = ACTIONS(3447), - [anon_sym_GT_GT_GT] = ACTIONS(3445), - [anon_sym_EQ_EQ] = ACTIONS(3445), - [anon_sym_BANG_EQ] = ACTIONS(3445), - [anon_sym_GT_EQ] = ACTIONS(3445), - [anon_sym_LT_EQ] = ACTIONS(3445), - [anon_sym_DOT] = ACTIONS(3447), - [anon_sym_EQ_GT] = ACTIONS(3445), - [anon_sym_COLON_COLON] = ACTIONS(3445), - [anon_sym_switch] = ACTIONS(3445), - [anon_sym_DOT_DOT] = ACTIONS(3445), - [anon_sym_and] = ACTIONS(3445), - [anon_sym_or] = ACTIONS(3447), - [anon_sym_AMP_AMP] = ACTIONS(3445), - [anon_sym_PIPE_PIPE] = ACTIONS(3445), - [anon_sym_QMARK_QMARK] = ACTIONS(3445), - [anon_sym_from] = ACTIONS(3445), - [anon_sym_into] = ACTIONS(3445), - [anon_sym_join] = ACTIONS(3445), - [anon_sym_on] = ACTIONS(3445), - [anon_sym_equals] = ACTIONS(3445), - [anon_sym_let] = ACTIONS(3445), - [anon_sym_orderby] = ACTIONS(3445), - [anon_sym_group] = ACTIONS(3445), - [anon_sym_by] = ACTIONS(3445), - [anon_sym_select] = ACTIONS(3445), - [anon_sym_as] = ACTIONS(3445), - [anon_sym_is] = ACTIONS(3445), - [anon_sym_DASH_GT] = ACTIONS(3445), - [anon_sym_with] = ACTIONS(3445), - [aux_sym_preproc_if_token3] = ACTIONS(3445), - [aux_sym_preproc_else_token1] = ACTIONS(3445), - [aux_sym_preproc_elif_token1] = ACTIONS(3445), + [anon_sym_EQ] = ACTIONS(4138), + [anon_sym_LBRACK] = ACTIONS(4136), + [anon_sym_COMMA] = ACTIONS(4136), + [anon_sym_LPAREN] = ACTIONS(4136), + [anon_sym_LT] = ACTIONS(4138), + [anon_sym_GT] = ACTIONS(4138), + [anon_sym_where] = ACTIONS(4136), + [anon_sym_QMARK] = ACTIONS(4138), + [anon_sym_BANG] = ACTIONS(4138), + [anon_sym_PLUS_PLUS] = ACTIONS(4136), + [anon_sym_DASH_DASH] = ACTIONS(4136), + [anon_sym_PLUS] = ACTIONS(4138), + [anon_sym_DASH] = ACTIONS(4138), + [anon_sym_STAR] = ACTIONS(4138), + [anon_sym_SLASH] = ACTIONS(4138), + [anon_sym_PERCENT] = ACTIONS(4138), + [anon_sym_CARET] = ACTIONS(4138), + [anon_sym_PIPE] = ACTIONS(4138), + [anon_sym_AMP] = ACTIONS(4138), + [anon_sym_LT_LT] = ACTIONS(4138), + [anon_sym_GT_GT] = ACTIONS(4138), + [anon_sym_GT_GT_GT] = ACTIONS(4138), + [anon_sym_EQ_EQ] = ACTIONS(4136), + [anon_sym_BANG_EQ] = ACTIONS(4136), + [anon_sym_GT_EQ] = ACTIONS(4136), + [anon_sym_LT_EQ] = ACTIONS(4136), + [anon_sym_DOT] = ACTIONS(4138), + [anon_sym_switch] = ACTIONS(4136), + [anon_sym_DOT_DOT] = ACTIONS(4136), + [anon_sym_and] = ACTIONS(4136), + [anon_sym_or] = ACTIONS(4138), + [anon_sym_PLUS_EQ] = ACTIONS(4136), + [anon_sym_DASH_EQ] = ACTIONS(4136), + [anon_sym_STAR_EQ] = ACTIONS(4136), + [anon_sym_SLASH_EQ] = ACTIONS(4136), + [anon_sym_PERCENT_EQ] = ACTIONS(4136), + [anon_sym_AMP_EQ] = ACTIONS(4136), + [anon_sym_CARET_EQ] = ACTIONS(4136), + [anon_sym_PIPE_EQ] = ACTIONS(4136), + [anon_sym_LT_LT_EQ] = ACTIONS(4136), + [anon_sym_GT_GT_EQ] = ACTIONS(4136), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(4136), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(4136), + [anon_sym_AMP_AMP] = ACTIONS(4136), + [anon_sym_PIPE_PIPE] = ACTIONS(4136), + [anon_sym_QMARK_QMARK] = ACTIONS(4138), + [anon_sym_from] = ACTIONS(4136), + [anon_sym_into] = ACTIONS(4136), + [anon_sym_join] = ACTIONS(4136), + [anon_sym_let] = ACTIONS(4136), + [anon_sym_orderby] = ACTIONS(4136), + [anon_sym_ascending] = ACTIONS(4136), + [anon_sym_descending] = ACTIONS(4136), + [anon_sym_group] = ACTIONS(4136), + [anon_sym_select] = ACTIONS(4136), + [anon_sym_as] = ACTIONS(4138), + [anon_sym_is] = ACTIONS(4136), + [anon_sym_DASH_GT] = ACTIONS(4136), + [anon_sym_with] = ACTIONS(4136), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -462647,6 +462217,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2904] = { + [sym_argument_list] = STATE(2958), + [sym_bracketed_argument_list] = STATE(2419), [sym_preproc_region] = STATE(2904), [sym_preproc_endregion] = STATE(2904), [sym_preproc_line] = STATE(2904), @@ -462656,65 +462228,63 @@ 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), - [anon_sym_SEMI] = ACTIONS(3652), - [anon_sym_LBRACK] = ACTIONS(3652), - [anon_sym_COLON] = ACTIONS(3650), - [anon_sym_COMMA] = ACTIONS(3652), - [anon_sym_RBRACK] = ACTIONS(3652), - [anon_sym_LPAREN] = ACTIONS(3652), - [anon_sym_RPAREN] = ACTIONS(3652), - [anon_sym_LBRACE] = ACTIONS(3652), - [anon_sym_RBRACE] = ACTIONS(3652), - [anon_sym_LT] = ACTIONS(3650), - [anon_sym_GT] = ACTIONS(3650), - [anon_sym_in] = ACTIONS(3650), - [anon_sym_where] = ACTIONS(3652), - [anon_sym_QMARK] = ACTIONS(3650), - [anon_sym_BANG] = ACTIONS(3650), - [anon_sym_PLUS_PLUS] = ACTIONS(3652), - [anon_sym_DASH_DASH] = ACTIONS(3652), - [anon_sym_PLUS] = ACTIONS(3650), - [anon_sym_DASH] = ACTIONS(3650), - [anon_sym_STAR] = ACTIONS(3652), - [anon_sym_SLASH] = ACTIONS(3650), - [anon_sym_PERCENT] = ACTIONS(3652), - [anon_sym_CARET] = ACTIONS(3652), - [anon_sym_PIPE] = ACTIONS(3650), - [anon_sym_AMP] = ACTIONS(3650), - [anon_sym_LT_LT] = ACTIONS(3652), - [anon_sym_GT_GT] = ACTIONS(3650), - [anon_sym_GT_GT_GT] = ACTIONS(3652), - [anon_sym_EQ_EQ] = ACTIONS(3652), - [anon_sym_BANG_EQ] = ACTIONS(3652), - [anon_sym_GT_EQ] = ACTIONS(3652), - [anon_sym_LT_EQ] = ACTIONS(3652), - [anon_sym_DOT] = ACTIONS(3650), - [anon_sym_EQ_GT] = ACTIONS(3652), - [anon_sym_COLON_COLON] = ACTIONS(3652), - [anon_sym_switch] = ACTIONS(3652), - [anon_sym_DOT_DOT] = ACTIONS(3652), - [anon_sym_and] = ACTIONS(3652), - [anon_sym_or] = ACTIONS(3650), - [anon_sym_AMP_AMP] = ACTIONS(3652), - [anon_sym_PIPE_PIPE] = ACTIONS(3652), - [anon_sym_QMARK_QMARK] = ACTIONS(3652), - [anon_sym_from] = ACTIONS(3652), - [anon_sym_into] = ACTIONS(3652), - [anon_sym_join] = ACTIONS(3652), - [anon_sym_on] = ACTIONS(3652), - [anon_sym_equals] = ACTIONS(3652), - [anon_sym_let] = ACTIONS(3652), - [anon_sym_orderby] = ACTIONS(3652), - [anon_sym_group] = ACTIONS(3652), - [anon_sym_by] = ACTIONS(3652), - [anon_sym_select] = ACTIONS(3652), - [anon_sym_as] = ACTIONS(3652), - [anon_sym_is] = ACTIONS(3652), - [anon_sym_DASH_GT] = ACTIONS(3652), - [anon_sym_with] = ACTIONS(3652), - [aux_sym_preproc_if_token3] = ACTIONS(3652), - [aux_sym_preproc_else_token1] = ACTIONS(3652), - [aux_sym_preproc_elif_token1] = ACTIONS(3652), + [anon_sym_SEMI] = ACTIONS(4842), + [anon_sym_LBRACK] = ACTIONS(4819), + [anon_sym_COLON] = ACTIONS(4842), + [anon_sym_COMMA] = ACTIONS(4842), + [anon_sym_RBRACK] = ACTIONS(4842), + [anon_sym_LPAREN] = ACTIONS(4753), + [anon_sym_RPAREN] = ACTIONS(4842), + [anon_sym_RBRACE] = ACTIONS(4842), + [anon_sym_LT] = ACTIONS(4844), + [anon_sym_GT] = ACTIONS(4844), + [anon_sym_in] = ACTIONS(4844), + [anon_sym_where] = ACTIONS(4842), + [anon_sym_QMARK] = ACTIONS(4844), + [anon_sym_BANG] = ACTIONS(4823), + [anon_sym_PLUS_PLUS] = ACTIONS(4825), + [anon_sym_DASH_DASH] = ACTIONS(4825), + [anon_sym_PLUS] = ACTIONS(4844), + [anon_sym_DASH] = ACTIONS(4844), + [anon_sym_STAR] = ACTIONS(4842), + [anon_sym_SLASH] = ACTIONS(4844), + [anon_sym_PERCENT] = ACTIONS(4842), + [anon_sym_CARET] = ACTIONS(4842), + [anon_sym_PIPE] = ACTIONS(4844), + [anon_sym_AMP] = ACTIONS(4844), + [anon_sym_LT_LT] = ACTIONS(4842), + [anon_sym_GT_GT] = ACTIONS(4844), + [anon_sym_GT_GT_GT] = ACTIONS(4842), + [anon_sym_EQ_EQ] = ACTIONS(4842), + [anon_sym_BANG_EQ] = ACTIONS(4842), + [anon_sym_GT_EQ] = ACTIONS(4842), + [anon_sym_LT_EQ] = ACTIONS(4842), + [anon_sym_DOT] = ACTIONS(4792), + [anon_sym_EQ_GT] = ACTIONS(4842), + [anon_sym_switch] = ACTIONS(4842), + [anon_sym_DOT_DOT] = ACTIONS(4842), + [anon_sym_and] = ACTIONS(4842), + [anon_sym_or] = ACTIONS(4844), + [anon_sym_AMP_AMP] = ACTIONS(4842), + [anon_sym_PIPE_PIPE] = ACTIONS(4842), + [anon_sym_QMARK_QMARK] = ACTIONS(4842), + [anon_sym_from] = ACTIONS(4842), + [anon_sym_into] = ACTIONS(4842), + [anon_sym_join] = ACTIONS(4842), + [anon_sym_on] = ACTIONS(4842), + [anon_sym_equals] = ACTIONS(4842), + [anon_sym_let] = ACTIONS(4842), + [anon_sym_orderby] = ACTIONS(4842), + [anon_sym_group] = ACTIONS(4842), + [anon_sym_by] = ACTIONS(4842), + [anon_sym_select] = ACTIONS(4842), + [anon_sym_as] = ACTIONS(4842), + [anon_sym_is] = ACTIONS(4842), + [anon_sym_DASH_GT] = ACTIONS(4794), + [anon_sym_with] = ACTIONS(4842), + [aux_sym_preproc_if_token3] = ACTIONS(4842), + [aux_sym_preproc_else_token1] = ACTIONS(4842), + [aux_sym_preproc_elif_token1] = ACTIONS(4842), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -462727,7 +462297,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2905] = { - [sym_initializer_expression] = STATE(3053), [sym_preproc_region] = STATE(2905), [sym_preproc_endregion] = STATE(2905), [sym_preproc_line] = STATE(2905), @@ -462737,64 +462306,65 @@ 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), - [anon_sym_SEMI] = ACTIONS(4829), - [anon_sym_LBRACK] = ACTIONS(4829), - [anon_sym_COLON] = ACTIONS(4829), - [anon_sym_COMMA] = ACTIONS(4829), - [anon_sym_RBRACK] = ACTIONS(4829), - [anon_sym_LPAREN] = ACTIONS(4829), - [anon_sym_RPAREN] = ACTIONS(4829), - [anon_sym_LBRACE] = ACTIONS(1247), - [anon_sym_RBRACE] = ACTIONS(4829), - [anon_sym_LT] = ACTIONS(4831), - [anon_sym_GT] = ACTIONS(4831), - [anon_sym_in] = ACTIONS(4831), - [anon_sym_where] = ACTIONS(4829), - [anon_sym_QMARK] = ACTIONS(4831), - [anon_sym_BANG] = ACTIONS(4831), - [anon_sym_PLUS_PLUS] = ACTIONS(4829), - [anon_sym_DASH_DASH] = ACTIONS(4829), - [anon_sym_PLUS] = ACTIONS(4831), - [anon_sym_DASH] = ACTIONS(4831), - [anon_sym_STAR] = ACTIONS(4829), - [anon_sym_SLASH] = ACTIONS(4831), - [anon_sym_PERCENT] = ACTIONS(4829), - [anon_sym_CARET] = ACTIONS(4829), - [anon_sym_PIPE] = ACTIONS(4831), - [anon_sym_AMP] = ACTIONS(4831), - [anon_sym_LT_LT] = ACTIONS(4829), - [anon_sym_GT_GT] = ACTIONS(4831), - [anon_sym_GT_GT_GT] = ACTIONS(4829), - [anon_sym_EQ_EQ] = ACTIONS(4829), - [anon_sym_BANG_EQ] = ACTIONS(4829), - [anon_sym_GT_EQ] = ACTIONS(4829), - [anon_sym_LT_EQ] = ACTIONS(4829), - [anon_sym_DOT] = ACTIONS(4831), - [anon_sym_EQ_GT] = ACTIONS(4829), - [anon_sym_switch] = ACTIONS(4829), - [anon_sym_DOT_DOT] = ACTIONS(4829), - [anon_sym_and] = ACTIONS(4829), - [anon_sym_or] = ACTIONS(4831), - [anon_sym_AMP_AMP] = ACTIONS(4829), - [anon_sym_PIPE_PIPE] = ACTIONS(4829), - [anon_sym_QMARK_QMARK] = ACTIONS(4829), - [anon_sym_from] = ACTIONS(4829), - [anon_sym_into] = ACTIONS(4829), - [anon_sym_join] = ACTIONS(4829), - [anon_sym_on] = ACTIONS(4829), - [anon_sym_equals] = ACTIONS(4829), - [anon_sym_let] = ACTIONS(4829), - [anon_sym_orderby] = ACTIONS(4829), - [anon_sym_group] = ACTIONS(4829), - [anon_sym_by] = ACTIONS(4829), - [anon_sym_select] = ACTIONS(4829), - [anon_sym_as] = ACTIONS(4829), - [anon_sym_is] = ACTIONS(4829), - [anon_sym_DASH_GT] = ACTIONS(4829), - [anon_sym_with] = ACTIONS(4829), - [aux_sym_preproc_if_token3] = ACTIONS(4829), - [aux_sym_preproc_else_token1] = ACTIONS(4829), - [aux_sym_preproc_elif_token1] = ACTIONS(4829), + [anon_sym_EQ] = ACTIONS(4122), + [anon_sym_LBRACK] = ACTIONS(4120), + [anon_sym_COMMA] = ACTIONS(4120), + [anon_sym_LPAREN] = ACTIONS(4120), + [anon_sym_LT] = ACTIONS(4122), + [anon_sym_GT] = ACTIONS(4122), + [anon_sym_where] = ACTIONS(4120), + [anon_sym_QMARK] = ACTIONS(4122), + [anon_sym_BANG] = ACTIONS(4122), + [anon_sym_PLUS_PLUS] = ACTIONS(4120), + [anon_sym_DASH_DASH] = ACTIONS(4120), + [anon_sym_PLUS] = ACTIONS(4122), + [anon_sym_DASH] = ACTIONS(4122), + [anon_sym_STAR] = ACTIONS(4122), + [anon_sym_SLASH] = ACTIONS(4122), + [anon_sym_PERCENT] = ACTIONS(4122), + [anon_sym_CARET] = ACTIONS(4122), + [anon_sym_PIPE] = ACTIONS(4122), + [anon_sym_AMP] = ACTIONS(4122), + [anon_sym_LT_LT] = ACTIONS(4122), + [anon_sym_GT_GT] = ACTIONS(4122), + [anon_sym_GT_GT_GT] = ACTIONS(4122), + [anon_sym_EQ_EQ] = ACTIONS(4120), + [anon_sym_BANG_EQ] = ACTIONS(4120), + [anon_sym_GT_EQ] = ACTIONS(4120), + [anon_sym_LT_EQ] = ACTIONS(4120), + [anon_sym_DOT] = ACTIONS(4122), + [anon_sym_switch] = ACTIONS(4120), + [anon_sym_DOT_DOT] = ACTIONS(4120), + [anon_sym_and] = ACTIONS(4120), + [anon_sym_or] = ACTIONS(4122), + [anon_sym_PLUS_EQ] = ACTIONS(4120), + [anon_sym_DASH_EQ] = ACTIONS(4120), + [anon_sym_STAR_EQ] = ACTIONS(4120), + [anon_sym_SLASH_EQ] = ACTIONS(4120), + [anon_sym_PERCENT_EQ] = ACTIONS(4120), + [anon_sym_AMP_EQ] = ACTIONS(4120), + [anon_sym_CARET_EQ] = ACTIONS(4120), + [anon_sym_PIPE_EQ] = ACTIONS(4120), + [anon_sym_LT_LT_EQ] = ACTIONS(4120), + [anon_sym_GT_GT_EQ] = ACTIONS(4120), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(4120), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(4120), + [anon_sym_AMP_AMP] = ACTIONS(4120), + [anon_sym_PIPE_PIPE] = ACTIONS(4120), + [anon_sym_QMARK_QMARK] = ACTIONS(4122), + [anon_sym_from] = ACTIONS(4120), + [anon_sym_into] = ACTIONS(4120), + [anon_sym_join] = ACTIONS(4120), + [anon_sym_let] = ACTIONS(4120), + [anon_sym_orderby] = ACTIONS(4120), + [anon_sym_ascending] = ACTIONS(4120), + [anon_sym_descending] = ACTIONS(4120), + [anon_sym_group] = ACTIONS(4120), + [anon_sym_select] = ACTIONS(4120), + [anon_sym_as] = ACTIONS(4122), + [anon_sym_is] = ACTIONS(4120), + [anon_sym_DASH_GT] = ACTIONS(4120), + [anon_sym_with] = ACTIONS(4120), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -462807,29 +462377,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2906] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter] = STATE(6986), - [sym__parameter_array] = STATE(6987), - [sym__name] = STATE(4390), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(4096), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(4109), - [sym_type] = STATE(6103), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_identifier] = STATE(5730), - [sym__reserved_identifier] = STATE(3691), - [sym_preproc_if_in_attribute_list] = STATE(5576), [sym_preproc_region] = STATE(2906), [sym_preproc_endregion] = STATE(2906), [sym_preproc_line] = STATE(2906), @@ -462839,42 +462386,65 @@ 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), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3060), - [aux_sym__parameter_type_with_modifiers_repeat1] = STATE(3489), - [sym__identifier_token] = ACTIONS(2967), - [anon_sym_alias] = ACTIONS(2971), - [anon_sym_global] = ACTIONS(2971), - [anon_sym_LBRACK] = ACTIONS(4689), - [anon_sym_LPAREN] = ACTIONS(2979), - [anon_sym_ref] = ACTIONS(4691), - [anon_sym_delegate] = ACTIONS(3454), - [anon_sym_file] = ACTIONS(2971), - [anon_sym_readonly] = ACTIONS(1103), - [anon_sym_in] = ACTIONS(1103), - [anon_sym_out] = ACTIONS(1103), - [anon_sym_where] = ACTIONS(2971), - [anon_sym_notnull] = ACTIONS(2971), - [anon_sym_unmanaged] = ACTIONS(2971), - [anon_sym_this] = ACTIONS(1103), - [anon_sym_scoped] = ACTIONS(4711), - [anon_sym_params] = ACTIONS(1117), - [anon_sym_var] = ACTIONS(2999), - [sym_predefined_type] = ACTIONS(3001), - [anon_sym_yield] = ACTIONS(2971), - [anon_sym_when] = ACTIONS(2971), - [anon_sym_from] = ACTIONS(2971), - [anon_sym_into] = ACTIONS(2971), - [anon_sym_join] = ACTIONS(2971), - [anon_sym_on] = ACTIONS(2971), - [anon_sym_equals] = ACTIONS(2971), - [anon_sym_let] = ACTIONS(2971), - [anon_sym_orderby] = ACTIONS(2971), - [anon_sym_ascending] = ACTIONS(2971), - [anon_sym_descending] = ACTIONS(2971), - [anon_sym_group] = ACTIONS(2971), - [anon_sym_by] = ACTIONS(2971), - [anon_sym_select] = ACTIONS(2971), - [aux_sym_preproc_if_token1] = ACTIONS(4697), + [anon_sym_EQ] = ACTIONS(3696), + [anon_sym_LBRACK] = ACTIONS(3711), + [anon_sym_COMMA] = ACTIONS(3711), + [anon_sym_LPAREN] = ACTIONS(3711), + [anon_sym_LT] = ACTIONS(3696), + [anon_sym_GT] = ACTIONS(3696), + [anon_sym_where] = ACTIONS(3711), + [anon_sym_QMARK] = ACTIONS(3696), + [anon_sym_BANG] = ACTIONS(3696), + [anon_sym_PLUS_PLUS] = ACTIONS(3711), + [anon_sym_DASH_DASH] = ACTIONS(3711), + [anon_sym_PLUS] = ACTIONS(3696), + [anon_sym_DASH] = ACTIONS(3696), + [anon_sym_STAR] = ACTIONS(3696), + [anon_sym_SLASH] = ACTIONS(3696), + [anon_sym_PERCENT] = ACTIONS(3696), + [anon_sym_CARET] = ACTIONS(3696), + [anon_sym_PIPE] = ACTIONS(3696), + [anon_sym_AMP] = ACTIONS(3696), + [anon_sym_LT_LT] = ACTIONS(3696), + [anon_sym_GT_GT] = ACTIONS(3696), + [anon_sym_GT_GT_GT] = ACTIONS(3696), + [anon_sym_EQ_EQ] = ACTIONS(3711), + [anon_sym_BANG_EQ] = ACTIONS(3711), + [anon_sym_GT_EQ] = ACTIONS(3711), + [anon_sym_LT_EQ] = ACTIONS(3711), + [anon_sym_DOT] = ACTIONS(3696), + [anon_sym_switch] = ACTIONS(3711), + [anon_sym_DOT_DOT] = ACTIONS(3711), + [anon_sym_and] = ACTIONS(3711), + [anon_sym_or] = ACTIONS(3696), + [anon_sym_PLUS_EQ] = ACTIONS(3711), + [anon_sym_DASH_EQ] = ACTIONS(3711), + [anon_sym_STAR_EQ] = ACTIONS(3711), + [anon_sym_SLASH_EQ] = ACTIONS(3711), + [anon_sym_PERCENT_EQ] = ACTIONS(3711), + [anon_sym_AMP_EQ] = ACTIONS(3711), + [anon_sym_CARET_EQ] = ACTIONS(3711), + [anon_sym_PIPE_EQ] = ACTIONS(3711), + [anon_sym_LT_LT_EQ] = ACTIONS(3711), + [anon_sym_GT_GT_EQ] = ACTIONS(3711), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3711), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3711), + [anon_sym_AMP_AMP] = ACTIONS(3711), + [anon_sym_PIPE_PIPE] = ACTIONS(3711), + [anon_sym_QMARK_QMARK] = ACTIONS(3696), + [anon_sym_from] = ACTIONS(3711), + [anon_sym_into] = ACTIONS(3711), + [anon_sym_join] = 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_select] = ACTIONS(3711), + [anon_sym_as] = ACTIONS(3696), + [anon_sym_is] = ACTIONS(3711), + [anon_sym_DASH_GT] = ACTIONS(3711), + [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), @@ -462887,8 +462457,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2907] = { - [sym_argument_list] = STATE(3035), - [sym_bracketed_argument_list] = STATE(2433), [sym_preproc_region] = STATE(2907), [sym_preproc_endregion] = STATE(2907), [sym_preproc_line] = STATE(2907), @@ -462898,63 +462466,64 @@ 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), - [anon_sym_SEMI] = ACTIONS(4833), - [anon_sym_LBRACK] = ACTIONS(4835), - [anon_sym_COLON] = ACTIONS(4833), - [anon_sym_COMMA] = ACTIONS(4833), - [anon_sym_RBRACK] = ACTIONS(4833), - [anon_sym_LPAREN] = ACTIONS(4804), - [anon_sym_RPAREN] = ACTIONS(4833), - [anon_sym_RBRACE] = ACTIONS(4833), - [anon_sym_LT] = ACTIONS(4837), - [anon_sym_GT] = ACTIONS(4837), - [anon_sym_in] = ACTIONS(4837), - [anon_sym_where] = ACTIONS(4833), - [anon_sym_QMARK] = ACTIONS(4837), - [anon_sym_BANG] = ACTIONS(4839), - [anon_sym_PLUS_PLUS] = ACTIONS(4841), - [anon_sym_DASH_DASH] = ACTIONS(4841), - [anon_sym_PLUS] = ACTIONS(4837), - [anon_sym_DASH] = ACTIONS(4837), - [anon_sym_STAR] = ACTIONS(4833), - [anon_sym_SLASH] = ACTIONS(4837), - [anon_sym_PERCENT] = ACTIONS(4833), - [anon_sym_CARET] = ACTIONS(4833), - [anon_sym_PIPE] = ACTIONS(4837), - [anon_sym_AMP] = ACTIONS(4837), - [anon_sym_LT_LT] = ACTIONS(4833), - [anon_sym_GT_GT] = ACTIONS(4837), - [anon_sym_GT_GT_GT] = ACTIONS(4833), - [anon_sym_EQ_EQ] = ACTIONS(4833), - [anon_sym_BANG_EQ] = ACTIONS(4833), - [anon_sym_GT_EQ] = ACTIONS(4833), - [anon_sym_LT_EQ] = ACTIONS(4833), - [anon_sym_DOT] = ACTIONS(4808), - [anon_sym_EQ_GT] = ACTIONS(4833), - [anon_sym_switch] = ACTIONS(4833), - [anon_sym_DOT_DOT] = ACTIONS(4833), - [anon_sym_and] = ACTIONS(4833), - [anon_sym_or] = ACTIONS(4837), - [anon_sym_AMP_AMP] = ACTIONS(4833), - [anon_sym_PIPE_PIPE] = ACTIONS(4833), - [anon_sym_QMARK_QMARK] = 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_group] = ACTIONS(4833), - [anon_sym_by] = ACTIONS(4833), - [anon_sym_select] = ACTIONS(4833), - [anon_sym_as] = ACTIONS(4833), - [anon_sym_is] = ACTIONS(4833), - [anon_sym_DASH_GT] = ACTIONS(4755), - [anon_sym_with] = ACTIONS(4833), - [aux_sym_preproc_if_token3] = ACTIONS(4833), - [aux_sym_preproc_else_token1] = ACTIONS(4833), - [aux_sym_preproc_elif_token1] = ACTIONS(4833), + [anon_sym_SEMI] = ACTIONS(3702), + [anon_sym_LBRACK] = ACTIONS(3702), + [anon_sym_COLON] = ACTIONS(3702), + [anon_sym_COMMA] = ACTIONS(3702), + [anon_sym_RBRACK] = ACTIONS(3702), + [anon_sym_LPAREN] = ACTIONS(3702), + [anon_sym_RPAREN] = ACTIONS(3702), + [anon_sym_LBRACE] = ACTIONS(3702), + [anon_sym_RBRACE] = ACTIONS(3702), + [anon_sym_LT] = ACTIONS(3691), + [anon_sym_GT] = ACTIONS(3691), + [anon_sym_in] = ACTIONS(3691), + [anon_sym_where] = ACTIONS(3702), + [anon_sym_QMARK] = ACTIONS(3691), + [anon_sym_BANG] = ACTIONS(3691), + [anon_sym_PLUS_PLUS] = ACTIONS(3702), + [anon_sym_DASH_DASH] = ACTIONS(3702), + [anon_sym_PLUS] = ACTIONS(3691), + [anon_sym_DASH] = ACTIONS(3691), + [anon_sym_STAR] = ACTIONS(3702), + [anon_sym_SLASH] = ACTIONS(3691), + [anon_sym_PERCENT] = ACTIONS(3702), + [anon_sym_CARET] = ACTIONS(3702), + [anon_sym_PIPE] = ACTIONS(3691), + [anon_sym_AMP] = ACTIONS(3691), + [anon_sym_LT_LT] = ACTIONS(3702), + [anon_sym_GT_GT] = ACTIONS(3691), + [anon_sym_GT_GT_GT] = ACTIONS(3702), + [anon_sym_EQ_EQ] = ACTIONS(3702), + [anon_sym_BANG_EQ] = ACTIONS(3702), + [anon_sym_GT_EQ] = ACTIONS(3702), + [anon_sym_LT_EQ] = ACTIONS(3702), + [anon_sym_DOT] = ACTIONS(3691), + [anon_sym_EQ_GT] = ACTIONS(3702), + [anon_sym_switch] = ACTIONS(3702), + [anon_sym_DOT_DOT] = ACTIONS(3702), + [anon_sym_and] = ACTIONS(3702), + [anon_sym_or] = ACTIONS(3691), + [anon_sym_AMP_AMP] = ACTIONS(3702), + [anon_sym_PIPE_PIPE] = ACTIONS(3702), + [anon_sym_QMARK_QMARK] = ACTIONS(3702), + [anon_sym_from] = ACTIONS(3702), + [anon_sym_into] = ACTIONS(3702), + [anon_sym_join] = ACTIONS(3702), + [anon_sym_on] = ACTIONS(3702), + [anon_sym_equals] = ACTIONS(3702), + [anon_sym_let] = ACTIONS(3702), + [anon_sym_orderby] = ACTIONS(3702), + [anon_sym_group] = ACTIONS(3702), + [anon_sym_by] = ACTIONS(3702), + [anon_sym_select] = ACTIONS(3702), + [anon_sym_as] = ACTIONS(3702), + [anon_sym_is] = ACTIONS(3702), + [anon_sym_DASH_GT] = ACTIONS(3702), + [anon_sym_with] = ACTIONS(3702), + [aux_sym_preproc_if_token3] = ACTIONS(3702), + [aux_sym_preproc_else_token1] = ACTIONS(3702), + [aux_sym_preproc_elif_token1] = ACTIONS(3702), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -462967,8 +462536,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2908] = { - [sym_argument_list] = STATE(3035), - [sym_bracketed_argument_list] = STATE(2433), + [sym_initializer_expression] = STATE(3098), [sym_preproc_region] = STATE(2908), [sym_preproc_endregion] = STATE(2908), [sym_preproc_line] = STATE(2908), @@ -462978,63 +462546,63 @@ 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_SEMI] = ACTIONS(4843), - [anon_sym_LBRACK] = ACTIONS(4835), - [anon_sym_COLON] = ACTIONS(4843), - [anon_sym_COMMA] = ACTIONS(4843), - [anon_sym_RBRACK] = ACTIONS(4843), - [anon_sym_LPAREN] = ACTIONS(4804), - [anon_sym_RPAREN] = ACTIONS(4843), - [anon_sym_RBRACE] = ACTIONS(4843), - [anon_sym_LT] = ACTIONS(4845), - [anon_sym_GT] = ACTIONS(4845), - [anon_sym_in] = ACTIONS(4845), - [anon_sym_where] = ACTIONS(4843), - [anon_sym_QMARK] = ACTIONS(4845), - [anon_sym_BANG] = ACTIONS(4839), - [anon_sym_PLUS_PLUS] = ACTIONS(4841), - [anon_sym_DASH_DASH] = ACTIONS(4841), - [anon_sym_PLUS] = ACTIONS(4845), - [anon_sym_DASH] = ACTIONS(4845), - [anon_sym_STAR] = ACTIONS(4843), - [anon_sym_SLASH] = ACTIONS(4845), - [anon_sym_PERCENT] = ACTIONS(4843), - [anon_sym_CARET] = ACTIONS(4843), - [anon_sym_PIPE] = ACTIONS(4845), - [anon_sym_AMP] = ACTIONS(4845), - [anon_sym_LT_LT] = ACTIONS(4843), - [anon_sym_GT_GT] = ACTIONS(4845), - [anon_sym_GT_GT_GT] = ACTIONS(4843), - [anon_sym_EQ_EQ] = ACTIONS(4843), - [anon_sym_BANG_EQ] = ACTIONS(4843), - [anon_sym_GT_EQ] = ACTIONS(4843), - [anon_sym_LT_EQ] = ACTIONS(4843), - [anon_sym_DOT] = ACTIONS(4808), - [anon_sym_EQ_GT] = ACTIONS(4843), - [anon_sym_switch] = ACTIONS(4843), - [anon_sym_DOT_DOT] = ACTIONS(4843), - [anon_sym_and] = ACTIONS(4843), - [anon_sym_or] = ACTIONS(4845), - [anon_sym_AMP_AMP] = ACTIONS(4843), - [anon_sym_PIPE_PIPE] = ACTIONS(4843), - [anon_sym_QMARK_QMARK] = ACTIONS(4843), - [anon_sym_from] = ACTIONS(4843), - [anon_sym_into] = ACTIONS(4843), - [anon_sym_join] = ACTIONS(4843), - [anon_sym_on] = ACTIONS(4843), - [anon_sym_equals] = ACTIONS(4843), - [anon_sym_let] = ACTIONS(4843), - [anon_sym_orderby] = ACTIONS(4843), - [anon_sym_group] = ACTIONS(4843), - [anon_sym_by] = ACTIONS(4843), - [anon_sym_select] = ACTIONS(4843), - [anon_sym_as] = ACTIONS(4843), - [anon_sym_is] = ACTIONS(4843), - [anon_sym_DASH_GT] = ACTIONS(4755), - [anon_sym_with] = ACTIONS(4843), - [aux_sym_preproc_if_token3] = ACTIONS(4843), - [aux_sym_preproc_else_token1] = ACTIONS(4843), - [aux_sym_preproc_elif_token1] = ACTIONS(4843), + [anon_sym_SEMI] = ACTIONS(3963), + [anon_sym_LBRACK] = ACTIONS(4846), + [anon_sym_COLON] = ACTIONS(4850), + [anon_sym_COMMA] = ACTIONS(4850), + [anon_sym_RBRACK] = ACTIONS(4850), + [anon_sym_LPAREN] = ACTIONS(4850), + [anon_sym_RPAREN] = ACTIONS(4850), + [anon_sym_LBRACE] = ACTIONS(4853), + [anon_sym_RBRACE] = ACTIONS(4850), + [anon_sym_LT] = ACTIONS(4856), + [anon_sym_GT] = ACTIONS(4856), + [anon_sym_in] = ACTIONS(4850), + [anon_sym_where] = ACTIONS(4850), + [anon_sym_QMARK] = ACTIONS(4859), + [anon_sym_BANG] = ACTIONS(4856), + [anon_sym_PLUS_PLUS] = ACTIONS(4850), + [anon_sym_DASH_DASH] = ACTIONS(4850), + [anon_sym_PLUS] = ACTIONS(4856), + [anon_sym_DASH] = ACTIONS(4856), + [anon_sym_STAR] = ACTIONS(4850), + [anon_sym_SLASH] = ACTIONS(4856), + [anon_sym_PERCENT] = ACTIONS(4850), + [anon_sym_CARET] = ACTIONS(4850), + [anon_sym_PIPE] = ACTIONS(4856), + [anon_sym_AMP] = ACTIONS(4856), + [anon_sym_LT_LT] = ACTIONS(4850), + [anon_sym_GT_GT] = ACTIONS(4856), + [anon_sym_GT_GT_GT] = ACTIONS(4850), + [anon_sym_EQ_EQ] = ACTIONS(4850), + [anon_sym_BANG_EQ] = ACTIONS(4850), + [anon_sym_GT_EQ] = ACTIONS(4850), + [anon_sym_LT_EQ] = ACTIONS(4850), + [anon_sym_DOT] = ACTIONS(4856), + [anon_sym_EQ_GT] = ACTIONS(4850), + [anon_sym_switch] = ACTIONS(4850), + [anon_sym_DOT_DOT] = ACTIONS(4850), + [anon_sym_and] = ACTIONS(4850), + [anon_sym_or] = ACTIONS(4856), + [anon_sym_AMP_AMP] = ACTIONS(4850), + [anon_sym_PIPE_PIPE] = ACTIONS(4850), + [anon_sym_QMARK_QMARK] = ACTIONS(4850), + [anon_sym_from] = ACTIONS(4850), + [anon_sym_join] = ACTIONS(4850), + [anon_sym_on] = ACTIONS(4850), + [anon_sym_equals] = ACTIONS(4850), + [anon_sym_let] = ACTIONS(4850), + [anon_sym_orderby] = ACTIONS(4850), + [anon_sym_group] = ACTIONS(4850), + [anon_sym_by] = ACTIONS(4850), + [anon_sym_select] = ACTIONS(4850), + [anon_sym_as] = ACTIONS(4850), + [anon_sym_is] = ACTIONS(4850), + [anon_sym_DASH_GT] = ACTIONS(4850), + [anon_sym_with] = ACTIONS(4850), + [aux_sym_preproc_if_token3] = ACTIONS(4850), + [aux_sym_preproc_else_token1] = ACTIONS(4850), + [aux_sym_preproc_elif_token1] = ACTIONS(4850), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -463047,7 +462615,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2909] = { - [sym_initializer_expression] = STATE(3061), [sym_preproc_region] = STATE(2909), [sym_preproc_endregion] = STATE(2909), [sym_preproc_line] = STATE(2909), @@ -463057,64 +462624,64 @@ 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), - [anon_sym_SEMI] = ACTIONS(4847), - [anon_sym_LBRACK] = ACTIONS(4849), - [anon_sym_COLON] = ACTIONS(4847), - [anon_sym_COMMA] = ACTIONS(4847), - [anon_sym_RBRACK] = ACTIONS(4847), - [anon_sym_LPAREN] = ACTIONS(4847), - [anon_sym_RPAREN] = ACTIONS(4847), - [anon_sym_LBRACE] = ACTIONS(1247), - [anon_sym_RBRACE] = ACTIONS(4847), - [anon_sym_LT] = ACTIONS(4852), - [anon_sym_GT] = ACTIONS(4852), - [anon_sym_in] = ACTIONS(4852), - [anon_sym_where] = ACTIONS(4847), - [anon_sym_QMARK] = ACTIONS(4852), - [anon_sym_BANG] = ACTIONS(4852), - [anon_sym_PLUS_PLUS] = ACTIONS(4847), - [anon_sym_DASH_DASH] = ACTIONS(4847), - [anon_sym_PLUS] = ACTIONS(4852), - [anon_sym_DASH] = ACTIONS(4852), - [anon_sym_STAR] = ACTIONS(4847), - [anon_sym_SLASH] = ACTIONS(4852), - [anon_sym_PERCENT] = ACTIONS(4847), - [anon_sym_CARET] = ACTIONS(4847), - [anon_sym_PIPE] = ACTIONS(4852), - [anon_sym_AMP] = ACTIONS(4852), - [anon_sym_LT_LT] = ACTIONS(4847), - [anon_sym_GT_GT] = ACTIONS(4852), - [anon_sym_GT_GT_GT] = ACTIONS(4847), - [anon_sym_EQ_EQ] = ACTIONS(4847), - [anon_sym_BANG_EQ] = ACTIONS(4847), - [anon_sym_GT_EQ] = ACTIONS(4847), - [anon_sym_LT_EQ] = ACTIONS(4847), - [anon_sym_DOT] = ACTIONS(4852), - [anon_sym_EQ_GT] = ACTIONS(4847), - [anon_sym_switch] = ACTIONS(4847), - [anon_sym_DOT_DOT] = ACTIONS(4847), - [anon_sym_and] = ACTIONS(4847), - [anon_sym_or] = ACTIONS(4852), - [anon_sym_AMP_AMP] = ACTIONS(4847), - [anon_sym_PIPE_PIPE] = ACTIONS(4847), - [anon_sym_QMARK_QMARK] = 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_group] = ACTIONS(4847), - [anon_sym_by] = ACTIONS(4847), - [anon_sym_select] = ACTIONS(4847), - [anon_sym_as] = ACTIONS(4847), - [anon_sym_is] = ACTIONS(4847), - [anon_sym_DASH_GT] = ACTIONS(4847), - [anon_sym_with] = ACTIONS(4847), - [aux_sym_preproc_if_token3] = ACTIONS(4847), - [aux_sym_preproc_else_token1] = ACTIONS(4847), - [aux_sym_preproc_elif_token1] = ACTIONS(4847), + [anon_sym_SEMI] = ACTIONS(4060), + [anon_sym_LBRACK] = ACTIONS(4060), + [anon_sym_COLON] = ACTIONS(4060), + [anon_sym_COMMA] = ACTIONS(4060), + [anon_sym_RBRACK] = ACTIONS(4060), + [anon_sym_LPAREN] = ACTIONS(4060), + [anon_sym_RPAREN] = ACTIONS(4060), + [anon_sym_LBRACE] = ACTIONS(4060), + [anon_sym_RBRACE] = ACTIONS(4060), + [anon_sym_LT] = ACTIONS(4058), + [anon_sym_GT] = ACTIONS(4058), + [anon_sym_in] = ACTIONS(4058), + [anon_sym_where] = ACTIONS(4060), + [anon_sym_QMARK] = ACTIONS(4058), + [anon_sym_BANG] = ACTIONS(4058), + [anon_sym_PLUS_PLUS] = ACTIONS(4060), + [anon_sym_DASH_DASH] = ACTIONS(4060), + [anon_sym_PLUS] = ACTIONS(4058), + [anon_sym_DASH] = ACTIONS(4058), + [anon_sym_STAR] = ACTIONS(4060), + [anon_sym_SLASH] = ACTIONS(4058), + [anon_sym_PERCENT] = ACTIONS(4060), + [anon_sym_CARET] = ACTIONS(4060), + [anon_sym_PIPE] = ACTIONS(4058), + [anon_sym_AMP] = ACTIONS(4058), + [anon_sym_LT_LT] = ACTIONS(4060), + [anon_sym_GT_GT] = ACTIONS(4058), + [anon_sym_GT_GT_GT] = ACTIONS(4060), + [anon_sym_EQ_EQ] = ACTIONS(4060), + [anon_sym_BANG_EQ] = ACTIONS(4060), + [anon_sym_GT_EQ] = ACTIONS(4060), + [anon_sym_LT_EQ] = ACTIONS(4060), + [anon_sym_DOT] = ACTIONS(4058), + [anon_sym_EQ_GT] = ACTIONS(4060), + [anon_sym_switch] = ACTIONS(4060), + [anon_sym_DOT_DOT] = ACTIONS(4060), + [anon_sym_and] = ACTIONS(4060), + [anon_sym_or] = ACTIONS(4058), + [anon_sym_AMP_AMP] = ACTIONS(4060), + [anon_sym_PIPE_PIPE] = ACTIONS(4060), + [anon_sym_QMARK_QMARK] = ACTIONS(4060), + [anon_sym_from] = ACTIONS(4060), + [anon_sym_into] = ACTIONS(4060), + [anon_sym_join] = ACTIONS(4060), + [anon_sym_on] = ACTIONS(4060), + [anon_sym_equals] = ACTIONS(4060), + [anon_sym_let] = ACTIONS(4060), + [anon_sym_orderby] = ACTIONS(4060), + [anon_sym_group] = ACTIONS(4060), + [anon_sym_by] = ACTIONS(4060), + [anon_sym_select] = ACTIONS(4060), + [anon_sym_as] = ACTIONS(4060), + [anon_sym_is] = ACTIONS(4060), + [anon_sym_DASH_GT] = ACTIONS(4060), + [anon_sym_with] = ACTIONS(4060), + [aux_sym_preproc_if_token3] = ACTIONS(4060), + [aux_sym_preproc_else_token1] = ACTIONS(4060), + [aux_sym_preproc_elif_token1] = ACTIONS(4060), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -463127,8 +462694,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2910] = { - [sym_argument_list] = STATE(3035), - [sym_bracketed_argument_list] = STATE(2433), [sym_preproc_region] = STATE(2910), [sym_preproc_endregion] = STATE(2910), [sym_preproc_line] = STATE(2910), @@ -463138,63 +462703,64 @@ 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(4854), - [anon_sym_LBRACK] = ACTIONS(4835), - [anon_sym_COLON] = ACTIONS(4854), - [anon_sym_COMMA] = ACTIONS(4854), - [anon_sym_RBRACK] = ACTIONS(4854), - [anon_sym_LPAREN] = ACTIONS(4804), - [anon_sym_RPAREN] = ACTIONS(4854), - [anon_sym_RBRACE] = ACTIONS(4854), - [anon_sym_LT] = ACTIONS(4856), - [anon_sym_GT] = ACTIONS(4856), - [anon_sym_in] = ACTIONS(4856), - [anon_sym_where] = ACTIONS(4854), - [anon_sym_QMARK] = ACTIONS(4856), - [anon_sym_BANG] = ACTIONS(4839), - [anon_sym_PLUS_PLUS] = ACTIONS(4841), - [anon_sym_DASH_DASH] = ACTIONS(4841), - [anon_sym_PLUS] = ACTIONS(4856), - [anon_sym_DASH] = ACTIONS(4856), - [anon_sym_STAR] = ACTIONS(4854), - [anon_sym_SLASH] = ACTIONS(4856), - [anon_sym_PERCENT] = ACTIONS(4854), - [anon_sym_CARET] = ACTIONS(4854), - [anon_sym_PIPE] = ACTIONS(4856), - [anon_sym_AMP] = ACTIONS(4856), - [anon_sym_LT_LT] = ACTIONS(4854), - [anon_sym_GT_GT] = ACTIONS(4856), - [anon_sym_GT_GT_GT] = ACTIONS(4854), - [anon_sym_EQ_EQ] = ACTIONS(4854), - [anon_sym_BANG_EQ] = ACTIONS(4854), - [anon_sym_GT_EQ] = ACTIONS(4854), - [anon_sym_LT_EQ] = ACTIONS(4854), - [anon_sym_DOT] = ACTIONS(4808), - [anon_sym_EQ_GT] = ACTIONS(4854), - [anon_sym_switch] = ACTIONS(4854), - [anon_sym_DOT_DOT] = ACTIONS(4854), - [anon_sym_and] = ACTIONS(4854), - [anon_sym_or] = ACTIONS(4856), - [anon_sym_AMP_AMP] = ACTIONS(4854), - [anon_sym_PIPE_PIPE] = ACTIONS(4854), - [anon_sym_QMARK_QMARK] = ACTIONS(4854), - [anon_sym_from] = ACTIONS(4854), - [anon_sym_into] = ACTIONS(4854), - [anon_sym_join] = ACTIONS(4854), - [anon_sym_on] = ACTIONS(4854), - [anon_sym_equals] = ACTIONS(4854), - [anon_sym_let] = ACTIONS(4854), - [anon_sym_orderby] = ACTIONS(4854), - [anon_sym_group] = ACTIONS(4854), - [anon_sym_by] = ACTIONS(4854), - [anon_sym_select] = ACTIONS(4854), - [anon_sym_as] = ACTIONS(4854), - [anon_sym_is] = ACTIONS(4854), - [anon_sym_DASH_GT] = ACTIONS(4755), - [anon_sym_with] = ACTIONS(4854), - [aux_sym_preproc_if_token3] = ACTIONS(4854), - [aux_sym_preproc_else_token1] = ACTIONS(4854), - [aux_sym_preproc_elif_token1] = ACTIONS(4854), + [anon_sym_SEMI] = ACTIONS(3678), + [anon_sym_LBRACK] = ACTIONS(3678), + [anon_sym_COLON] = ACTIONS(3678), + [anon_sym_COMMA] = ACTIONS(3678), + [anon_sym_RBRACK] = ACTIONS(3678), + [anon_sym_LPAREN] = ACTIONS(3678), + [anon_sym_RPAREN] = ACTIONS(3678), + [anon_sym_LBRACE] = ACTIONS(3678), + [anon_sym_RBRACE] = ACTIONS(3678), + [anon_sym_LT] = ACTIONS(3669), + [anon_sym_GT] = ACTIONS(3669), + [anon_sym_in] = ACTIONS(3669), + [anon_sym_where] = ACTIONS(3678), + [anon_sym_QMARK] = ACTIONS(3669), + [anon_sym_BANG] = ACTIONS(3669), + [anon_sym_PLUS_PLUS] = ACTIONS(3678), + [anon_sym_DASH_DASH] = ACTIONS(3678), + [anon_sym_PLUS] = ACTIONS(3669), + [anon_sym_DASH] = ACTIONS(3669), + [anon_sym_STAR] = ACTIONS(3678), + [anon_sym_SLASH] = ACTIONS(3669), + [anon_sym_PERCENT] = ACTIONS(3678), + [anon_sym_CARET] = ACTIONS(3678), + [anon_sym_PIPE] = ACTIONS(3669), + [anon_sym_AMP] = ACTIONS(3669), + [anon_sym_LT_LT] = ACTIONS(3678), + [anon_sym_GT_GT] = ACTIONS(3669), + [anon_sym_GT_GT_GT] = ACTIONS(3678), + [anon_sym_EQ_EQ] = ACTIONS(3678), + [anon_sym_BANG_EQ] = ACTIONS(3678), + [anon_sym_GT_EQ] = ACTIONS(3678), + [anon_sym_LT_EQ] = ACTIONS(3678), + [anon_sym_DOT] = ACTIONS(3669), + [anon_sym_EQ_GT] = ACTIONS(3678), + [anon_sym_switch] = ACTIONS(3678), + [anon_sym_DOT_DOT] = ACTIONS(3678), + [anon_sym_and] = ACTIONS(3678), + [anon_sym_or] = ACTIONS(3669), + [anon_sym_AMP_AMP] = ACTIONS(3678), + [anon_sym_PIPE_PIPE] = ACTIONS(3678), + [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_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(3678), + [anon_sym_with] = ACTIONS(3678), + [aux_sym_preproc_if_token3] = ACTIONS(3678), + [aux_sym_preproc_else_token1] = ACTIONS(3678), + [aux_sym_preproc_elif_token1] = ACTIONS(3678), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -463216,65 +462782,64 @@ 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), - [anon_sym_EQ] = ACTIONS(4858), - [anon_sym_LBRACK] = ACTIONS(4860), - [anon_sym_COMMA] = ACTIONS(4860), - [anon_sym_LPAREN] = ACTIONS(4860), - [anon_sym_LT] = ACTIONS(4862), - [anon_sym_GT] = ACTIONS(4862), - [anon_sym_where] = ACTIONS(4860), - [anon_sym_QMARK] = ACTIONS(4862), - [anon_sym_BANG] = ACTIONS(4862), - [anon_sym_PLUS_PLUS] = ACTIONS(4860), - [anon_sym_DASH_DASH] = ACTIONS(4860), - [anon_sym_PLUS] = ACTIONS(4862), - [anon_sym_DASH] = ACTIONS(4862), - [anon_sym_STAR] = ACTIONS(4862), - [anon_sym_SLASH] = ACTIONS(4862), - [anon_sym_PERCENT] = ACTIONS(4862), - [anon_sym_CARET] = ACTIONS(4862), - [anon_sym_PIPE] = ACTIONS(4862), - [anon_sym_AMP] = ACTIONS(4862), - [anon_sym_LT_LT] = ACTIONS(4862), - [anon_sym_GT_GT] = ACTIONS(4862), - [anon_sym_GT_GT_GT] = ACTIONS(4862), - [anon_sym_EQ_EQ] = ACTIONS(4860), - [anon_sym_BANG_EQ] = ACTIONS(4860), - [anon_sym_GT_EQ] = ACTIONS(4860), - [anon_sym_LT_EQ] = ACTIONS(4860), - [anon_sym_DOT] = ACTIONS(4862), - [anon_sym_switch] = ACTIONS(4860), - [anon_sym_DOT_DOT] = ACTIONS(4860), - [anon_sym_and] = ACTIONS(4860), - [anon_sym_or] = ACTIONS(4862), - [anon_sym_PLUS_EQ] = ACTIONS(4864), - [anon_sym_DASH_EQ] = ACTIONS(4864), - [anon_sym_STAR_EQ] = ACTIONS(4864), - [anon_sym_SLASH_EQ] = ACTIONS(4864), - [anon_sym_PERCENT_EQ] = ACTIONS(4864), - [anon_sym_AMP_EQ] = ACTIONS(4864), - [anon_sym_CARET_EQ] = ACTIONS(4864), - [anon_sym_PIPE_EQ] = ACTIONS(4864), - [anon_sym_LT_LT_EQ] = ACTIONS(4864), - [anon_sym_GT_GT_EQ] = ACTIONS(4864), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(4864), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(4864), - [anon_sym_AMP_AMP] = ACTIONS(4860), - [anon_sym_PIPE_PIPE] = ACTIONS(4860), - [anon_sym_QMARK_QMARK] = ACTIONS(4862), - [anon_sym_from] = ACTIONS(4860), - [anon_sym_into] = ACTIONS(4860), - [anon_sym_join] = ACTIONS(4860), - [anon_sym_let] = ACTIONS(4860), - [anon_sym_orderby] = ACTIONS(4860), - [anon_sym_ascending] = ACTIONS(4860), - [anon_sym_descending] = ACTIONS(4860), - [anon_sym_group] = ACTIONS(4860), - [anon_sym_select] = ACTIONS(4860), - [anon_sym_as] = ACTIONS(4862), - [anon_sym_is] = ACTIONS(4860), - [anon_sym_DASH_GT] = ACTIONS(4860), - [anon_sym_with] = ACTIONS(4860), + [anon_sym_SEMI] = ACTIONS(3986), + [anon_sym_LBRACK] = ACTIONS(3986), + [anon_sym_COLON] = ACTIONS(3986), + [anon_sym_COMMA] = ACTIONS(3986), + [anon_sym_RBRACK] = ACTIONS(3986), + [anon_sym_LPAREN] = ACTIONS(3986), + [anon_sym_RPAREN] = ACTIONS(3986), + [anon_sym_LBRACE] = ACTIONS(3986), + [anon_sym_RBRACE] = ACTIONS(3986), + [anon_sym_LT] = ACTIONS(3984), + [anon_sym_GT] = ACTIONS(3984), + [anon_sym_in] = ACTIONS(3984), + [anon_sym_where] = ACTIONS(3986), + [anon_sym_QMARK] = ACTIONS(3984), + [anon_sym_BANG] = ACTIONS(3984), + [anon_sym_PLUS_PLUS] = ACTIONS(3986), + [anon_sym_DASH_DASH] = ACTIONS(3986), + [anon_sym_PLUS] = ACTIONS(3984), + [anon_sym_DASH] = ACTIONS(3984), + [anon_sym_STAR] = ACTIONS(3986), + [anon_sym_SLASH] = ACTIONS(3984), + [anon_sym_PERCENT] = ACTIONS(3986), + [anon_sym_CARET] = ACTIONS(3986), + [anon_sym_PIPE] = ACTIONS(3984), + [anon_sym_AMP] = ACTIONS(3984), + [anon_sym_LT_LT] = ACTIONS(3986), + [anon_sym_GT_GT] = ACTIONS(3984), + [anon_sym_GT_GT_GT] = ACTIONS(3986), + [anon_sym_EQ_EQ] = ACTIONS(3986), + [anon_sym_BANG_EQ] = ACTIONS(3986), + [anon_sym_GT_EQ] = ACTIONS(3986), + [anon_sym_LT_EQ] = ACTIONS(3986), + [anon_sym_DOT] = ACTIONS(3984), + [anon_sym_EQ_GT] = ACTIONS(3986), + [anon_sym_switch] = ACTIONS(3986), + [anon_sym_DOT_DOT] = ACTIONS(3986), + [anon_sym_and] = ACTIONS(3986), + [anon_sym_or] = ACTIONS(3984), + [anon_sym_AMP_AMP] = ACTIONS(3986), + [anon_sym_PIPE_PIPE] = ACTIONS(3986), + [anon_sym_QMARK_QMARK] = ACTIONS(3986), + [anon_sym_from] = ACTIONS(3986), + [anon_sym_into] = ACTIONS(3986), + [anon_sym_join] = ACTIONS(3986), + [anon_sym_on] = ACTIONS(3986), + [anon_sym_equals] = ACTIONS(3986), + [anon_sym_let] = ACTIONS(3986), + [anon_sym_orderby] = ACTIONS(3986), + [anon_sym_group] = ACTIONS(3986), + [anon_sym_by] = ACTIONS(3986), + [anon_sym_select] = ACTIONS(3986), + [anon_sym_as] = ACTIONS(3986), + [anon_sym_is] = ACTIONS(3986), + [anon_sym_DASH_GT] = ACTIONS(3986), + [anon_sym_with] = ACTIONS(3986), + [aux_sym_preproc_if_token3] = ACTIONS(3986), + [aux_sym_preproc_else_token1] = ACTIONS(3986), + [aux_sym_preproc_elif_token1] = ACTIONS(3986), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -463296,65 +462861,64 @@ 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), - [anon_sym_EQ] = ACTIONS(4146), - [anon_sym_LBRACK] = ACTIONS(4144), - [anon_sym_COMMA] = ACTIONS(4144), - [anon_sym_LPAREN] = ACTIONS(4144), - [anon_sym_LT] = ACTIONS(4146), - [anon_sym_GT] = ACTIONS(4146), - [anon_sym_where] = ACTIONS(4144), - [anon_sym_QMARK] = ACTIONS(4146), - [anon_sym_BANG] = ACTIONS(4146), - [anon_sym_PLUS_PLUS] = ACTIONS(4144), - [anon_sym_DASH_DASH] = ACTIONS(4144), - [anon_sym_PLUS] = ACTIONS(4146), - [anon_sym_DASH] = ACTIONS(4146), - [anon_sym_STAR] = ACTIONS(4146), - [anon_sym_SLASH] = ACTIONS(4146), - [anon_sym_PERCENT] = ACTIONS(4146), - [anon_sym_CARET] = ACTIONS(4146), - [anon_sym_PIPE] = ACTIONS(4146), - [anon_sym_AMP] = ACTIONS(4146), - [anon_sym_LT_LT] = ACTIONS(4146), - [anon_sym_GT_GT] = ACTIONS(4146), - [anon_sym_GT_GT_GT] = ACTIONS(4146), - [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(4146), - [anon_sym_switch] = ACTIONS(4144), - [anon_sym_DOT_DOT] = ACTIONS(4144), - [anon_sym_and] = ACTIONS(4144), - [anon_sym_or] = ACTIONS(4146), - [anon_sym_PLUS_EQ] = ACTIONS(4144), - [anon_sym_DASH_EQ] = ACTIONS(4144), - [anon_sym_STAR_EQ] = ACTIONS(4144), - [anon_sym_SLASH_EQ] = ACTIONS(4144), - [anon_sym_PERCENT_EQ] = ACTIONS(4144), - [anon_sym_AMP_EQ] = ACTIONS(4144), - [anon_sym_CARET_EQ] = ACTIONS(4144), - [anon_sym_PIPE_EQ] = ACTIONS(4144), - [anon_sym_LT_LT_EQ] = ACTIONS(4144), - [anon_sym_GT_GT_EQ] = ACTIONS(4144), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(4144), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(4144), - [anon_sym_AMP_AMP] = ACTIONS(4144), - [anon_sym_PIPE_PIPE] = ACTIONS(4144), - [anon_sym_QMARK_QMARK] = ACTIONS(4146), - [anon_sym_from] = ACTIONS(4144), - [anon_sym_into] = ACTIONS(4144), - [anon_sym_join] = ACTIONS(4144), - [anon_sym_let] = ACTIONS(4144), - [anon_sym_orderby] = ACTIONS(4144), - [anon_sym_ascending] = ACTIONS(4144), - [anon_sym_descending] = ACTIONS(4144), - [anon_sym_group] = ACTIONS(4144), - [anon_sym_select] = ACTIONS(4144), - [anon_sym_as] = ACTIONS(4146), - [anon_sym_is] = ACTIONS(4144), - [anon_sym_DASH_GT] = ACTIONS(4144), - [anon_sym_with] = ACTIONS(4144), + [anon_sym_SEMI] = ACTIONS(3600), + [anon_sym_LBRACK] = ACTIONS(3600), + [anon_sym_COLON] = ACTIONS(3603), + [anon_sym_COMMA] = ACTIONS(3600), + [anon_sym_RBRACK] = ACTIONS(3600), + [anon_sym_LPAREN] = ACTIONS(3600), + [anon_sym_RPAREN] = ACTIONS(3600), + [anon_sym_LBRACE] = ACTIONS(3600), + [anon_sym_RBRACE] = ACTIONS(3600), + [anon_sym_LT] = ACTIONS(3603), + [anon_sym_GT] = ACTIONS(3603), + [anon_sym_in] = ACTIONS(3600), + [anon_sym_where] = ACTIONS(3600), + [anon_sym_QMARK] = ACTIONS(3603), + [anon_sym_BANG] = ACTIONS(3603), + [anon_sym_PLUS_PLUS] = ACTIONS(3600), + [anon_sym_DASH_DASH] = ACTIONS(3600), + [anon_sym_PLUS] = ACTIONS(3603), + [anon_sym_DASH] = ACTIONS(3603), + [anon_sym_STAR] = ACTIONS(3600), + [anon_sym_SLASH] = ACTIONS(3603), + [anon_sym_PERCENT] = ACTIONS(3600), + [anon_sym_CARET] = ACTIONS(3600), + [anon_sym_PIPE] = ACTIONS(3603), + [anon_sym_AMP] = ACTIONS(3603), + [anon_sym_LT_LT] = ACTIONS(3600), + [anon_sym_GT_GT] = ACTIONS(3603), + [anon_sym_GT_GT_GT] = ACTIONS(3600), + [anon_sym_EQ_EQ] = ACTIONS(3600), + [anon_sym_BANG_EQ] = ACTIONS(3600), + [anon_sym_GT_EQ] = ACTIONS(3600), + [anon_sym_LT_EQ] = ACTIONS(3600), + [anon_sym_DOT] = ACTIONS(3603), + [anon_sym_EQ_GT] = ACTIONS(3600), + [anon_sym_COLON_COLON] = ACTIONS(3429), + [anon_sym_switch] = ACTIONS(3600), + [anon_sym_DOT_DOT] = ACTIONS(3600), + [anon_sym_and] = ACTIONS(3600), + [anon_sym_or] = ACTIONS(3603), + [anon_sym_AMP_AMP] = ACTIONS(3600), + [anon_sym_PIPE_PIPE] = ACTIONS(3600), + [anon_sym_QMARK_QMARK] = ACTIONS(3600), + [anon_sym_from] = ACTIONS(3600), + [anon_sym_join] = ACTIONS(3600), + [anon_sym_on] = ACTIONS(3600), + [anon_sym_equals] = ACTIONS(3600), + [anon_sym_let] = ACTIONS(3600), + [anon_sym_orderby] = ACTIONS(3600), + [anon_sym_group] = ACTIONS(3600), + [anon_sym_by] = ACTIONS(3600), + [anon_sym_select] = ACTIONS(3600), + [anon_sym_as] = ACTIONS(3600), + [anon_sym_is] = ACTIONS(3600), + [anon_sym_DASH_GT] = ACTIONS(3600), + [anon_sym_with] = ACTIONS(3600), + [aux_sym_preproc_if_token3] = ACTIONS(3600), + [aux_sym_preproc_else_token1] = ACTIONS(3600), + [aux_sym_preproc_elif_token1] = ACTIONS(3600), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -463367,6 +462931,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2913] = { + [sym_initializer_expression] = STATE(3084), [sym_preproc_region] = STATE(2913), [sym_preproc_endregion] = STATE(2913), [sym_preproc_line] = STATE(2913), @@ -463376,65 +462941,63 @@ 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), - [anon_sym_EQ] = ACTIONS(3704), - [anon_sym_LBRACK] = ACTIONS(3719), - [anon_sym_COMMA] = ACTIONS(3719), - [anon_sym_LPAREN] = ACTIONS(3719), - [anon_sym_LT] = ACTIONS(3704), - [anon_sym_GT] = ACTIONS(3704), - [anon_sym_where] = ACTIONS(3719), - [anon_sym_QMARK] = ACTIONS(3704), - [anon_sym_BANG] = ACTIONS(3704), - [anon_sym_PLUS_PLUS] = ACTIONS(3719), - [anon_sym_DASH_DASH] = ACTIONS(3719), - [anon_sym_PLUS] = ACTIONS(3704), - [anon_sym_DASH] = ACTIONS(3704), - [anon_sym_STAR] = ACTIONS(3704), - [anon_sym_SLASH] = ACTIONS(3704), - [anon_sym_PERCENT] = ACTIONS(3704), - [anon_sym_CARET] = ACTIONS(3704), - [anon_sym_PIPE] = ACTIONS(3704), - [anon_sym_AMP] = ACTIONS(3704), - [anon_sym_LT_LT] = ACTIONS(3704), - [anon_sym_GT_GT] = ACTIONS(3704), - [anon_sym_GT_GT_GT] = ACTIONS(3704), - [anon_sym_EQ_EQ] = ACTIONS(3719), - [anon_sym_BANG_EQ] = ACTIONS(3719), - [anon_sym_GT_EQ] = ACTIONS(3719), - [anon_sym_LT_EQ] = ACTIONS(3719), - [anon_sym_DOT] = ACTIONS(3704), - [anon_sym_switch] = ACTIONS(3719), - [anon_sym_DOT_DOT] = ACTIONS(3719), - [anon_sym_and] = ACTIONS(3719), - [anon_sym_or] = ACTIONS(3704), - [anon_sym_PLUS_EQ] = ACTIONS(3719), - [anon_sym_DASH_EQ] = ACTIONS(3719), - [anon_sym_STAR_EQ] = ACTIONS(3719), - [anon_sym_SLASH_EQ] = ACTIONS(3719), - [anon_sym_PERCENT_EQ] = ACTIONS(3719), - [anon_sym_AMP_EQ] = ACTIONS(3719), - [anon_sym_CARET_EQ] = ACTIONS(3719), - [anon_sym_PIPE_EQ] = ACTIONS(3719), - [anon_sym_LT_LT_EQ] = ACTIONS(3719), - [anon_sym_GT_GT_EQ] = ACTIONS(3719), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3719), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3719), - [anon_sym_AMP_AMP] = ACTIONS(3719), - [anon_sym_PIPE_PIPE] = ACTIONS(3719), - [anon_sym_QMARK_QMARK] = ACTIONS(3704), - [anon_sym_from] = ACTIONS(3719), - [anon_sym_into] = ACTIONS(3719), - [anon_sym_join] = 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_select] = ACTIONS(3719), - [anon_sym_as] = ACTIONS(3704), - [anon_sym_is] = ACTIONS(3719), - [anon_sym_DASH_GT] = ACTIONS(3719), - [anon_sym_with] = ACTIONS(3719), + [anon_sym_SEMI] = ACTIONS(4802), + [anon_sym_LBRACK] = ACTIONS(4804), + [anon_sym_COLON] = ACTIONS(4802), + [anon_sym_COMMA] = ACTIONS(4802), + [anon_sym_RBRACK] = ACTIONS(4802), + [anon_sym_LPAREN] = ACTIONS(4802), + [anon_sym_RPAREN] = ACTIONS(4802), + [anon_sym_LBRACE] = ACTIONS(1481), + [anon_sym_RBRACE] = ACTIONS(4802), + [anon_sym_LT] = ACTIONS(4807), + [anon_sym_GT] = ACTIONS(4807), + [anon_sym_in] = ACTIONS(4802), + [anon_sym_where] = ACTIONS(4802), + [anon_sym_QMARK] = ACTIONS(4807), + [anon_sym_BANG] = ACTIONS(4807), + [anon_sym_PLUS_PLUS] = ACTIONS(4802), + [anon_sym_DASH_DASH] = ACTIONS(4802), + [anon_sym_PLUS] = ACTIONS(4807), + [anon_sym_DASH] = ACTIONS(4807), + [anon_sym_STAR] = ACTIONS(4802), + [anon_sym_SLASH] = ACTIONS(4807), + [anon_sym_PERCENT] = ACTIONS(4802), + [anon_sym_CARET] = ACTIONS(4802), + [anon_sym_PIPE] = ACTIONS(4807), + [anon_sym_AMP] = ACTIONS(4807), + [anon_sym_LT_LT] = ACTIONS(4802), + [anon_sym_GT_GT] = ACTIONS(4807), + [anon_sym_GT_GT_GT] = ACTIONS(4802), + [anon_sym_EQ_EQ] = ACTIONS(4802), + [anon_sym_BANG_EQ] = ACTIONS(4802), + [anon_sym_GT_EQ] = ACTIONS(4802), + [anon_sym_LT_EQ] = ACTIONS(4802), + [anon_sym_DOT] = ACTIONS(4807), + [anon_sym_EQ_GT] = ACTIONS(4802), + [anon_sym_switch] = ACTIONS(4802), + [anon_sym_DOT_DOT] = ACTIONS(4802), + [anon_sym_and] = ACTIONS(4802), + [anon_sym_or] = ACTIONS(4807), + [anon_sym_AMP_AMP] = ACTIONS(4802), + [anon_sym_PIPE_PIPE] = ACTIONS(4802), + [anon_sym_QMARK_QMARK] = ACTIONS(4802), + [anon_sym_from] = ACTIONS(4802), + [anon_sym_join] = ACTIONS(4802), + [anon_sym_on] = ACTIONS(4802), + [anon_sym_equals] = ACTIONS(4802), + [anon_sym_let] = ACTIONS(4802), + [anon_sym_orderby] = ACTIONS(4802), + [anon_sym_group] = ACTIONS(4802), + [anon_sym_by] = ACTIONS(4802), + [anon_sym_select] = ACTIONS(4802), + [anon_sym_as] = ACTIONS(4802), + [anon_sym_is] = ACTIONS(4802), + [anon_sym_DASH_GT] = ACTIONS(4802), + [anon_sym_with] = ACTIONS(4802), + [aux_sym_preproc_if_token3] = ACTIONS(4802), + [aux_sym_preproc_else_token1] = ACTIONS(4802), + [aux_sym_preproc_elif_token1] = ACTIONS(4802), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -463456,65 +463019,64 @@ 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(4136), - [anon_sym_LBRACK] = ACTIONS(4134), - [anon_sym_COMMA] = ACTIONS(4134), - [anon_sym_LPAREN] = ACTIONS(4134), - [anon_sym_LT] = ACTIONS(4136), - [anon_sym_GT] = ACTIONS(4136), - [anon_sym_where] = ACTIONS(4134), - [anon_sym_QMARK] = ACTIONS(4136), - [anon_sym_BANG] = ACTIONS(4136), - [anon_sym_PLUS_PLUS] = ACTIONS(4134), - [anon_sym_DASH_DASH] = ACTIONS(4134), - [anon_sym_PLUS] = ACTIONS(4136), - [anon_sym_DASH] = ACTIONS(4136), - [anon_sym_STAR] = ACTIONS(4136), - [anon_sym_SLASH] = ACTIONS(4136), - [anon_sym_PERCENT] = ACTIONS(4136), - [anon_sym_CARET] = ACTIONS(4136), - [anon_sym_PIPE] = ACTIONS(4136), - [anon_sym_AMP] = ACTIONS(4136), - [anon_sym_LT_LT] = ACTIONS(4136), - [anon_sym_GT_GT] = ACTIONS(4136), - [anon_sym_GT_GT_GT] = ACTIONS(4136), - [anon_sym_EQ_EQ] = ACTIONS(4134), - [anon_sym_BANG_EQ] = ACTIONS(4134), - [anon_sym_GT_EQ] = ACTIONS(4134), - [anon_sym_LT_EQ] = ACTIONS(4134), - [anon_sym_DOT] = ACTIONS(4136), - [anon_sym_switch] = ACTIONS(4134), - [anon_sym_DOT_DOT] = ACTIONS(4134), - [anon_sym_and] = ACTIONS(4134), - [anon_sym_or] = ACTIONS(4136), - [anon_sym_PLUS_EQ] = ACTIONS(4134), - [anon_sym_DASH_EQ] = ACTIONS(4134), - [anon_sym_STAR_EQ] = ACTIONS(4134), - [anon_sym_SLASH_EQ] = ACTIONS(4134), - [anon_sym_PERCENT_EQ] = ACTIONS(4134), - [anon_sym_AMP_EQ] = ACTIONS(4134), - [anon_sym_CARET_EQ] = ACTIONS(4134), - [anon_sym_PIPE_EQ] = ACTIONS(4134), - [anon_sym_LT_LT_EQ] = ACTIONS(4134), - [anon_sym_GT_GT_EQ] = ACTIONS(4134), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(4134), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(4134), - [anon_sym_AMP_AMP] = ACTIONS(4134), - [anon_sym_PIPE_PIPE] = ACTIONS(4134), - [anon_sym_QMARK_QMARK] = ACTIONS(4136), - [anon_sym_from] = ACTIONS(4134), - [anon_sym_into] = ACTIONS(4134), - [anon_sym_join] = ACTIONS(4134), - [anon_sym_let] = ACTIONS(4134), - [anon_sym_orderby] = ACTIONS(4134), - [anon_sym_ascending] = ACTIONS(4134), - [anon_sym_descending] = ACTIONS(4134), - [anon_sym_group] = ACTIONS(4134), - [anon_sym_select] = ACTIONS(4134), - [anon_sym_as] = ACTIONS(4136), - [anon_sym_is] = ACTIONS(4134), - [anon_sym_DASH_GT] = ACTIONS(4134), - [anon_sym_with] = ACTIONS(4134), + [anon_sym_SEMI] = ACTIONS(3661), + [anon_sym_LBRACK] = ACTIONS(3661), + [anon_sym_COLON] = ACTIONS(3661), + [anon_sym_COMMA] = ACTIONS(3661), + [anon_sym_RBRACK] = ACTIONS(3661), + [anon_sym_LPAREN] = ACTIONS(3661), + [anon_sym_RPAREN] = ACTIONS(3661), + [anon_sym_LBRACE] = ACTIONS(3661), + [anon_sym_RBRACE] = ACTIONS(3661), + [anon_sym_LT] = ACTIONS(3659), + [anon_sym_GT] = ACTIONS(3659), + [anon_sym_in] = ACTIONS(3659), + [anon_sym_where] = ACTIONS(3661), + [anon_sym_QMARK] = ACTIONS(3659), + [anon_sym_BANG] = ACTIONS(3659), + [anon_sym_PLUS_PLUS] = ACTIONS(3661), + [anon_sym_DASH_DASH] = ACTIONS(3661), + [anon_sym_PLUS] = ACTIONS(3659), + [anon_sym_DASH] = ACTIONS(3659), + [anon_sym_STAR] = ACTIONS(3661), + [anon_sym_SLASH] = ACTIONS(3659), + [anon_sym_PERCENT] = ACTIONS(3661), + [anon_sym_CARET] = ACTIONS(3661), + [anon_sym_PIPE] = ACTIONS(3659), + [anon_sym_AMP] = ACTIONS(3659), + [anon_sym_LT_LT] = ACTIONS(3661), + [anon_sym_GT_GT] = ACTIONS(3659), + [anon_sym_GT_GT_GT] = ACTIONS(3661), + [anon_sym_EQ_EQ] = ACTIONS(3661), + [anon_sym_BANG_EQ] = ACTIONS(3661), + [anon_sym_GT_EQ] = ACTIONS(3661), + [anon_sym_LT_EQ] = ACTIONS(3661), + [anon_sym_DOT] = ACTIONS(3659), + [anon_sym_EQ_GT] = ACTIONS(3661), + [anon_sym_switch] = ACTIONS(3661), + [anon_sym_DOT_DOT] = ACTIONS(3661), + [anon_sym_and] = ACTIONS(3661), + [anon_sym_or] = ACTIONS(3659), + [anon_sym_AMP_AMP] = ACTIONS(3661), + [anon_sym_PIPE_PIPE] = ACTIONS(3661), + [anon_sym_QMARK_QMARK] = ACTIONS(3661), + [anon_sym_from] = ACTIONS(3661), + [anon_sym_into] = ACTIONS(3661), + [anon_sym_join] = ACTIONS(3661), + [anon_sym_on] = ACTIONS(3661), + [anon_sym_equals] = ACTIONS(3661), + [anon_sym_let] = ACTIONS(3661), + [anon_sym_orderby] = ACTIONS(3661), + [anon_sym_group] = ACTIONS(3661), + [anon_sym_by] = ACTIONS(3661), + [anon_sym_select] = ACTIONS(3661), + [anon_sym_as] = ACTIONS(3661), + [anon_sym_is] = ACTIONS(3661), + [anon_sym_DASH_GT] = ACTIONS(3661), + [anon_sym_with] = ACTIONS(3661), + [aux_sym_preproc_if_token3] = ACTIONS(3661), + [aux_sym_preproc_else_token1] = ACTIONS(3661), + [aux_sym_preproc_elif_token1] = ACTIONS(3661), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -463527,7 +463089,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2915] = { - [sym_initializer_expression] = STATE(2966), [sym_preproc_region] = STATE(2915), [sym_preproc_endregion] = STATE(2915), [sym_preproc_line] = STATE(2915), @@ -463537,64 +463098,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), - [anon_sym_SEMI] = ACTIONS(4866), - [anon_sym_LBRACK] = ACTIONS(4866), - [anon_sym_COLON] = ACTIONS(4866), - [anon_sym_COMMA] = ACTIONS(4866), - [anon_sym_RBRACK] = ACTIONS(4866), - [anon_sym_LPAREN] = ACTIONS(4866), - [anon_sym_RPAREN] = ACTIONS(4866), - [anon_sym_LBRACE] = ACTIONS(1247), - [anon_sym_RBRACE] = ACTIONS(4866), - [anon_sym_LT] = ACTIONS(4868), - [anon_sym_GT] = ACTIONS(4868), - [anon_sym_in] = ACTIONS(4868), - [anon_sym_where] = ACTIONS(4866), - [anon_sym_QMARK] = ACTIONS(4868), - [anon_sym_BANG] = ACTIONS(4868), - [anon_sym_PLUS_PLUS] = ACTIONS(4866), - [anon_sym_DASH_DASH] = ACTIONS(4866), - [anon_sym_PLUS] = ACTIONS(4868), - [anon_sym_DASH] = ACTIONS(4868), - [anon_sym_STAR] = ACTIONS(4866), - [anon_sym_SLASH] = ACTIONS(4868), - [anon_sym_PERCENT] = ACTIONS(4866), - [anon_sym_CARET] = ACTIONS(4866), - [anon_sym_PIPE] = ACTIONS(4868), - [anon_sym_AMP] = ACTIONS(4868), - [anon_sym_LT_LT] = ACTIONS(4866), - [anon_sym_GT_GT] = ACTIONS(4868), - [anon_sym_GT_GT_GT] = ACTIONS(4866), - [anon_sym_EQ_EQ] = ACTIONS(4866), - [anon_sym_BANG_EQ] = ACTIONS(4866), - [anon_sym_GT_EQ] = ACTIONS(4866), - [anon_sym_LT_EQ] = ACTIONS(4866), - [anon_sym_DOT] = ACTIONS(4868), - [anon_sym_EQ_GT] = ACTIONS(4866), - [anon_sym_switch] = ACTIONS(4866), - [anon_sym_DOT_DOT] = ACTIONS(4866), - [anon_sym_and] = ACTIONS(4866), - [anon_sym_or] = ACTIONS(4868), - [anon_sym_AMP_AMP] = ACTIONS(4866), - [anon_sym_PIPE_PIPE] = ACTIONS(4866), - [anon_sym_QMARK_QMARK] = ACTIONS(4866), - [anon_sym_from] = ACTIONS(4866), - [anon_sym_into] = ACTIONS(4866), - [anon_sym_join] = ACTIONS(4866), - [anon_sym_on] = ACTIONS(4866), - [anon_sym_equals] = ACTIONS(4866), - [anon_sym_let] = ACTIONS(4866), - [anon_sym_orderby] = ACTIONS(4866), - [anon_sym_group] = ACTIONS(4866), - [anon_sym_by] = ACTIONS(4866), - [anon_sym_select] = ACTIONS(4866), - [anon_sym_as] = ACTIONS(4866), - [anon_sym_is] = ACTIONS(4866), - [anon_sym_DASH_GT] = ACTIONS(4866), - [anon_sym_with] = ACTIONS(4866), - [aux_sym_preproc_if_token3] = ACTIONS(4866), - [aux_sym_preproc_else_token1] = ACTIONS(4866), - [aux_sym_preproc_elif_token1] = ACTIONS(4866), + [anon_sym_SEMI] = ACTIONS(4090), + [anon_sym_LBRACK] = ACTIONS(4090), + [anon_sym_COLON] = ACTIONS(4090), + [anon_sym_COMMA] = ACTIONS(4090), + [anon_sym_RBRACK] = ACTIONS(4090), + [anon_sym_LPAREN] = ACTIONS(4090), + [anon_sym_RPAREN] = ACTIONS(4090), + [anon_sym_LBRACE] = ACTIONS(4090), + [anon_sym_RBRACE] = ACTIONS(4090), + [anon_sym_LT] = ACTIONS(4088), + [anon_sym_GT] = ACTIONS(4088), + [anon_sym_in] = ACTIONS(4088), + [anon_sym_where] = ACTIONS(4090), + [anon_sym_QMARK] = ACTIONS(4088), + [anon_sym_BANG] = ACTIONS(4088), + [anon_sym_PLUS_PLUS] = ACTIONS(4090), + [anon_sym_DASH_DASH] = ACTIONS(4090), + [anon_sym_PLUS] = ACTIONS(4088), + [anon_sym_DASH] = ACTIONS(4088), + [anon_sym_STAR] = ACTIONS(4090), + [anon_sym_SLASH] = ACTIONS(4088), + [anon_sym_PERCENT] = ACTIONS(4090), + [anon_sym_CARET] = ACTIONS(4090), + [anon_sym_PIPE] = ACTIONS(4088), + [anon_sym_AMP] = ACTIONS(4088), + [anon_sym_LT_LT] = ACTIONS(4090), + [anon_sym_GT_GT] = ACTIONS(4088), + [anon_sym_GT_GT_GT] = ACTIONS(4090), + [anon_sym_EQ_EQ] = ACTIONS(4090), + [anon_sym_BANG_EQ] = ACTIONS(4090), + [anon_sym_GT_EQ] = ACTIONS(4090), + [anon_sym_LT_EQ] = ACTIONS(4090), + [anon_sym_DOT] = ACTIONS(4088), + [anon_sym_EQ_GT] = ACTIONS(4090), + [anon_sym_switch] = ACTIONS(4090), + [anon_sym_DOT_DOT] = ACTIONS(4090), + [anon_sym_and] = ACTIONS(4090), + [anon_sym_or] = ACTIONS(4088), + [anon_sym_AMP_AMP] = ACTIONS(4090), + [anon_sym_PIPE_PIPE] = ACTIONS(4090), + [anon_sym_QMARK_QMARK] = ACTIONS(4090), + [anon_sym_from] = ACTIONS(4090), + [anon_sym_into] = ACTIONS(4090), + [anon_sym_join] = ACTIONS(4090), + [anon_sym_on] = ACTIONS(4090), + [anon_sym_equals] = ACTIONS(4090), + [anon_sym_let] = ACTIONS(4090), + [anon_sym_orderby] = ACTIONS(4090), + [anon_sym_group] = ACTIONS(4090), + [anon_sym_by] = ACTIONS(4090), + [anon_sym_select] = ACTIONS(4090), + [anon_sym_as] = ACTIONS(4090), + [anon_sym_is] = ACTIONS(4090), + [anon_sym_DASH_GT] = ACTIONS(4090), + [anon_sym_with] = ACTIONS(4090), + [aux_sym_preproc_if_token3] = ACTIONS(4090), + [aux_sym_preproc_else_token1] = ACTIONS(4090), + [aux_sym_preproc_elif_token1] = ACTIONS(4090), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -463616,65 +463177,64 @@ 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), - [anon_sym_EQ] = ACTIONS(3689), - [anon_sym_LBRACK] = ACTIONS(3697), - [anon_sym_COMMA] = ACTIONS(3697), - [anon_sym_LPAREN] = ACTIONS(3697), - [anon_sym_LT] = ACTIONS(3689), - [anon_sym_GT] = ACTIONS(3689), - [anon_sym_where] = ACTIONS(3697), - [anon_sym_QMARK] = ACTIONS(3689), - [anon_sym_BANG] = ACTIONS(3689), - [anon_sym_PLUS_PLUS] = ACTIONS(3697), - [anon_sym_DASH_DASH] = ACTIONS(3697), - [anon_sym_PLUS] = ACTIONS(3689), - [anon_sym_DASH] = ACTIONS(3689), - [anon_sym_STAR] = ACTIONS(3689), - [anon_sym_SLASH] = ACTIONS(3689), - [anon_sym_PERCENT] = ACTIONS(3689), - [anon_sym_CARET] = ACTIONS(3689), - [anon_sym_PIPE] = ACTIONS(3689), - [anon_sym_AMP] = ACTIONS(3689), - [anon_sym_LT_LT] = ACTIONS(3689), - [anon_sym_GT_GT] = ACTIONS(3689), - [anon_sym_GT_GT_GT] = ACTIONS(3689), - [anon_sym_EQ_EQ] = ACTIONS(3697), - [anon_sym_BANG_EQ] = ACTIONS(3697), - [anon_sym_GT_EQ] = ACTIONS(3697), - [anon_sym_LT_EQ] = ACTIONS(3697), - [anon_sym_DOT] = ACTIONS(3689), - [anon_sym_switch] = ACTIONS(3697), - [anon_sym_DOT_DOT] = ACTIONS(3697), - [anon_sym_and] = ACTIONS(3697), - [anon_sym_or] = ACTIONS(3689), - [anon_sym_PLUS_EQ] = ACTIONS(3697), - [anon_sym_DASH_EQ] = ACTIONS(3697), - [anon_sym_STAR_EQ] = ACTIONS(3697), - [anon_sym_SLASH_EQ] = ACTIONS(3697), - [anon_sym_PERCENT_EQ] = ACTIONS(3697), - [anon_sym_AMP_EQ] = ACTIONS(3697), - [anon_sym_CARET_EQ] = ACTIONS(3697), - [anon_sym_PIPE_EQ] = ACTIONS(3697), - [anon_sym_LT_LT_EQ] = ACTIONS(3697), - [anon_sym_GT_GT_EQ] = ACTIONS(3697), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3697), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3697), - [anon_sym_AMP_AMP] = ACTIONS(3697), - [anon_sym_PIPE_PIPE] = ACTIONS(3697), - [anon_sym_QMARK_QMARK] = ACTIONS(3689), - [anon_sym_from] = ACTIONS(3697), - [anon_sym_into] = ACTIONS(3697), - [anon_sym_join] = 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_select] = ACTIONS(3697), - [anon_sym_as] = ACTIONS(3689), - [anon_sym_is] = ACTIONS(3697), - [anon_sym_DASH_GT] = ACTIONS(3697), - [anon_sym_with] = ACTIONS(3697), + [anon_sym_SEMI] = ACTIONS(3636), + [anon_sym_LBRACK] = ACTIONS(3636), + [anon_sym_COLON] = ACTIONS(3634), + [anon_sym_COMMA] = ACTIONS(3636), + [anon_sym_RBRACK] = ACTIONS(3636), + [anon_sym_LPAREN] = ACTIONS(3636), + [anon_sym_RPAREN] = ACTIONS(3636), + [anon_sym_LBRACE] = ACTIONS(3636), + [anon_sym_RBRACE] = ACTIONS(3636), + [anon_sym_LT] = ACTIONS(3634), + [anon_sym_GT] = ACTIONS(3634), + [anon_sym_in] = ACTIONS(3636), + [anon_sym_where] = ACTIONS(3636), + [anon_sym_QMARK] = ACTIONS(3634), + [anon_sym_BANG] = ACTIONS(3634), + [anon_sym_PLUS_PLUS] = ACTIONS(3636), + [anon_sym_DASH_DASH] = ACTIONS(3636), + [anon_sym_PLUS] = ACTIONS(3634), + [anon_sym_DASH] = ACTIONS(3634), + [anon_sym_STAR] = ACTIONS(3636), + [anon_sym_SLASH] = ACTIONS(3634), + [anon_sym_PERCENT] = ACTIONS(3636), + [anon_sym_CARET] = ACTIONS(3636), + [anon_sym_PIPE] = ACTIONS(3634), + [anon_sym_AMP] = ACTIONS(3634), + [anon_sym_LT_LT] = ACTIONS(3636), + [anon_sym_GT_GT] = ACTIONS(3634), + [anon_sym_GT_GT_GT] = ACTIONS(3636), + [anon_sym_EQ_EQ] = ACTIONS(3636), + [anon_sym_BANG_EQ] = ACTIONS(3636), + [anon_sym_GT_EQ] = ACTIONS(3636), + [anon_sym_LT_EQ] = ACTIONS(3636), + [anon_sym_DOT] = ACTIONS(3634), + [anon_sym_EQ_GT] = ACTIONS(3636), + [anon_sym_COLON_COLON] = ACTIONS(3636), + [anon_sym_switch] = ACTIONS(3636), + [anon_sym_DOT_DOT] = ACTIONS(3636), + [anon_sym_and] = ACTIONS(3636), + [anon_sym_or] = ACTIONS(3634), + [anon_sym_AMP_AMP] = ACTIONS(3636), + [anon_sym_PIPE_PIPE] = ACTIONS(3636), + [anon_sym_QMARK_QMARK] = ACTIONS(3636), + [anon_sym_from] = ACTIONS(3636), + [anon_sym_join] = ACTIONS(3636), + [anon_sym_on] = ACTIONS(3636), + [anon_sym_equals] = ACTIONS(3636), + [anon_sym_let] = ACTIONS(3636), + [anon_sym_orderby] = ACTIONS(3636), + [anon_sym_group] = ACTIONS(3636), + [anon_sym_by] = ACTIONS(3636), + [anon_sym_select] = ACTIONS(3636), + [anon_sym_as] = ACTIONS(3636), + [anon_sym_is] = ACTIONS(3636), + [anon_sym_DASH_GT] = ACTIONS(3636), + [anon_sym_with] = ACTIONS(3636), + [aux_sym_preproc_if_token3] = ACTIONS(3636), + [aux_sym_preproc_else_token1] = ACTIONS(3636), + [aux_sym_preproc_elif_token1] = ACTIONS(3636), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -463687,6 +463247,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2917] = { + [sym_initializer_expression] = STATE(3068), [sym_preproc_region] = STATE(2917), [sym_preproc_endregion] = STATE(2917), [sym_preproc_line] = STATE(2917), @@ -463696,65 +463257,63 @@ 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), - [anon_sym_EQ] = ACTIONS(3704), - [anon_sym_LBRACK] = ACTIONS(4273), - [anon_sym_COMMA] = ACTIONS(4271), - [anon_sym_LPAREN] = ACTIONS(4273), - [anon_sym_LT] = ACTIONS(4276), - [anon_sym_GT] = ACTIONS(4276), - [anon_sym_where] = ACTIONS(4271), - [anon_sym_QMARK] = ACTIONS(4276), - [anon_sym_BANG] = ACTIONS(4276), - [anon_sym_PLUS_PLUS] = ACTIONS(4273), - [anon_sym_DASH_DASH] = ACTIONS(4273), - [anon_sym_PLUS] = ACTIONS(4276), - [anon_sym_DASH] = ACTIONS(4276), - [anon_sym_STAR] = ACTIONS(4276), - [anon_sym_SLASH] = ACTIONS(4276), - [anon_sym_PERCENT] = ACTIONS(4276), - [anon_sym_CARET] = ACTIONS(4276), - [anon_sym_PIPE] = ACTIONS(4276), - [anon_sym_AMP] = ACTIONS(4276), - [anon_sym_LT_LT] = ACTIONS(4276), - [anon_sym_GT_GT] = ACTIONS(4276), - [anon_sym_GT_GT_GT] = ACTIONS(4276), - [anon_sym_EQ_EQ] = ACTIONS(4273), - [anon_sym_BANG_EQ] = ACTIONS(4273), - [anon_sym_GT_EQ] = ACTIONS(4273), - [anon_sym_LT_EQ] = ACTIONS(4273), - [anon_sym_DOT] = ACTIONS(4276), - [anon_sym_switch] = ACTIONS(4273), - [anon_sym_DOT_DOT] = ACTIONS(4273), - [anon_sym_and] = ACTIONS(4271), - [anon_sym_or] = ACTIONS(4279), - [anon_sym_PLUS_EQ] = ACTIONS(3719), - [anon_sym_DASH_EQ] = ACTIONS(3719), - [anon_sym_STAR_EQ] = ACTIONS(3719), - [anon_sym_SLASH_EQ] = ACTIONS(3719), - [anon_sym_PERCENT_EQ] = ACTIONS(3719), - [anon_sym_AMP_EQ] = ACTIONS(3719), - [anon_sym_CARET_EQ] = ACTIONS(3719), - [anon_sym_PIPE_EQ] = ACTIONS(3719), - [anon_sym_LT_LT_EQ] = ACTIONS(3719), - [anon_sym_GT_GT_EQ] = ACTIONS(3719), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3719), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3719), - [anon_sym_AMP_AMP] = ACTIONS(4273), - [anon_sym_PIPE_PIPE] = ACTIONS(4273), - [anon_sym_QMARK_QMARK] = ACTIONS(4276), - [anon_sym_from] = ACTIONS(4271), - [anon_sym_into] = ACTIONS(4271), - [anon_sym_join] = ACTIONS(4271), - [anon_sym_let] = ACTIONS(4271), - [anon_sym_orderby] = ACTIONS(4271), - [anon_sym_ascending] = ACTIONS(4271), - [anon_sym_descending] = ACTIONS(4271), - [anon_sym_group] = ACTIONS(4271), - [anon_sym_select] = ACTIONS(4271), - [anon_sym_as] = ACTIONS(4276), - [anon_sym_is] = ACTIONS(4273), - [anon_sym_DASH_GT] = ACTIONS(4273), - [anon_sym_with] = ACTIONS(4273), + [anon_sym_SEMI] = ACTIONS(4827), + [anon_sym_LBRACK] = ACTIONS(4827), + [anon_sym_COLON] = ACTIONS(4827), + [anon_sym_COMMA] = ACTIONS(4827), + [anon_sym_RBRACK] = ACTIONS(4827), + [anon_sym_LPAREN] = ACTIONS(4827), + [anon_sym_RPAREN] = ACTIONS(4827), + [anon_sym_LBRACE] = ACTIONS(1481), + [anon_sym_RBRACE] = ACTIONS(4827), + [anon_sym_LT] = ACTIONS(4829), + [anon_sym_GT] = ACTIONS(4829), + [anon_sym_in] = ACTIONS(4827), + [anon_sym_where] = ACTIONS(4827), + [anon_sym_QMARK] = ACTIONS(4829), + [anon_sym_BANG] = ACTIONS(4829), + [anon_sym_PLUS_PLUS] = ACTIONS(4827), + [anon_sym_DASH_DASH] = ACTIONS(4827), + [anon_sym_PLUS] = ACTIONS(4829), + [anon_sym_DASH] = ACTIONS(4829), + [anon_sym_STAR] = ACTIONS(4827), + [anon_sym_SLASH] = ACTIONS(4829), + [anon_sym_PERCENT] = ACTIONS(4827), + [anon_sym_CARET] = ACTIONS(4827), + [anon_sym_PIPE] = ACTIONS(4829), + [anon_sym_AMP] = ACTIONS(4829), + [anon_sym_LT_LT] = ACTIONS(4827), + [anon_sym_GT_GT] = ACTIONS(4829), + [anon_sym_GT_GT_GT] = ACTIONS(4827), + [anon_sym_EQ_EQ] = ACTIONS(4827), + [anon_sym_BANG_EQ] = ACTIONS(4827), + [anon_sym_GT_EQ] = ACTIONS(4827), + [anon_sym_LT_EQ] = ACTIONS(4827), + [anon_sym_DOT] = ACTIONS(4829), + [anon_sym_EQ_GT] = ACTIONS(4827), + [anon_sym_switch] = ACTIONS(4827), + [anon_sym_DOT_DOT] = ACTIONS(4827), + [anon_sym_and] = ACTIONS(4827), + [anon_sym_or] = ACTIONS(4829), + [anon_sym_AMP_AMP] = ACTIONS(4827), + [anon_sym_PIPE_PIPE] = ACTIONS(4827), + [anon_sym_QMARK_QMARK] = ACTIONS(4827), + [anon_sym_from] = ACTIONS(4827), + [anon_sym_join] = ACTIONS(4827), + [anon_sym_on] = ACTIONS(4827), + [anon_sym_equals] = ACTIONS(4827), + [anon_sym_let] = ACTIONS(4827), + [anon_sym_orderby] = ACTIONS(4827), + [anon_sym_group] = ACTIONS(4827), + [anon_sym_by] = ACTIONS(4827), + [anon_sym_select] = ACTIONS(4827), + [anon_sym_as] = ACTIONS(4827), + [anon_sym_is] = ACTIONS(4827), + [anon_sym_DASH_GT] = ACTIONS(4827), + [anon_sym_with] = ACTIONS(4827), + [aux_sym_preproc_if_token3] = ACTIONS(4827), + [aux_sym_preproc_else_token1] = ACTIONS(4827), + [aux_sym_preproc_elif_token1] = ACTIONS(4827), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -463776,64 +463335,64 @@ 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), - [anon_sym_SEMI] = ACTIONS(3656), - [anon_sym_LBRACK] = ACTIONS(3656), - [anon_sym_COLON] = ACTIONS(3656), - [anon_sym_COMMA] = ACTIONS(3656), - [anon_sym_RBRACK] = ACTIONS(3656), - [anon_sym_LPAREN] = ACTIONS(3656), - [anon_sym_RPAREN] = ACTIONS(3656), - [anon_sym_LBRACE] = ACTIONS(3656), - [anon_sym_RBRACE] = ACTIONS(3656), - [anon_sym_LT] = ACTIONS(3654), - [anon_sym_GT] = ACTIONS(3654), - [anon_sym_in] = ACTIONS(3654), - [anon_sym_where] = ACTIONS(3656), - [anon_sym_QMARK] = ACTIONS(3654), - [anon_sym_BANG] = ACTIONS(3654), - [anon_sym_PLUS_PLUS] = ACTIONS(3656), - [anon_sym_DASH_DASH] = ACTIONS(3656), - [anon_sym_PLUS] = ACTIONS(3654), - [anon_sym_DASH] = ACTIONS(3654), - [anon_sym_STAR] = ACTIONS(3656), - [anon_sym_SLASH] = ACTIONS(3654), - [anon_sym_PERCENT] = ACTIONS(3656), - [anon_sym_CARET] = ACTIONS(3656), - [anon_sym_PIPE] = ACTIONS(3654), - [anon_sym_AMP] = ACTIONS(3654), - [anon_sym_LT_LT] = ACTIONS(3656), - [anon_sym_GT_GT] = ACTIONS(3654), - [anon_sym_GT_GT_GT] = ACTIONS(3656), - [anon_sym_EQ_EQ] = ACTIONS(3656), - [anon_sym_BANG_EQ] = ACTIONS(3656), - [anon_sym_GT_EQ] = ACTIONS(3656), - [anon_sym_LT_EQ] = ACTIONS(3656), - [anon_sym_DOT] = ACTIONS(3654), - [anon_sym_EQ_GT] = ACTIONS(3656), - [anon_sym_switch] = ACTIONS(3656), - [anon_sym_DOT_DOT] = ACTIONS(3656), - [anon_sym_and] = ACTIONS(3656), - [anon_sym_or] = ACTIONS(3654), - [anon_sym_AMP_AMP] = ACTIONS(3656), - [anon_sym_PIPE_PIPE] = ACTIONS(3656), - [anon_sym_QMARK_QMARK] = ACTIONS(3656), - [anon_sym_from] = ACTIONS(3656), - [anon_sym_into] = ACTIONS(3656), - [anon_sym_join] = ACTIONS(3656), - [anon_sym_on] = ACTIONS(3656), - [anon_sym_equals] = ACTIONS(3656), - [anon_sym_let] = ACTIONS(3656), - [anon_sym_orderby] = ACTIONS(3656), - [anon_sym_group] = ACTIONS(3656), - [anon_sym_by] = ACTIONS(3656), - [anon_sym_select] = ACTIONS(3656), - [anon_sym_as] = ACTIONS(3656), - [anon_sym_is] = ACTIONS(3656), - [anon_sym_DASH_GT] = ACTIONS(3656), - [anon_sym_with] = ACTIONS(3656), - [aux_sym_preproc_if_token3] = ACTIONS(3656), - [aux_sym_preproc_else_token1] = ACTIONS(3656), - [aux_sym_preproc_elif_token1] = ACTIONS(3656), + [anon_sym_SEMI] = ACTIONS(4098), + [anon_sym_LBRACK] = ACTIONS(4098), + [anon_sym_COLON] = ACTIONS(4098), + [anon_sym_COMMA] = ACTIONS(4098), + [anon_sym_RBRACK] = ACTIONS(4098), + [anon_sym_LPAREN] = ACTIONS(4098), + [anon_sym_RPAREN] = ACTIONS(4098), + [anon_sym_LBRACE] = ACTIONS(4098), + [anon_sym_RBRACE] = ACTIONS(4098), + [anon_sym_LT] = ACTIONS(4096), + [anon_sym_GT] = ACTIONS(4096), + [anon_sym_in] = ACTIONS(4096), + [anon_sym_where] = ACTIONS(4098), + [anon_sym_QMARK] = ACTIONS(4096), + [anon_sym_BANG] = ACTIONS(4096), + [anon_sym_PLUS_PLUS] = ACTIONS(4098), + [anon_sym_DASH_DASH] = ACTIONS(4098), + [anon_sym_PLUS] = ACTIONS(4096), + [anon_sym_DASH] = ACTIONS(4096), + [anon_sym_STAR] = ACTIONS(4098), + [anon_sym_SLASH] = ACTIONS(4096), + [anon_sym_PERCENT] = ACTIONS(4098), + [anon_sym_CARET] = ACTIONS(4098), + [anon_sym_PIPE] = ACTIONS(4096), + [anon_sym_AMP] = ACTIONS(4096), + [anon_sym_LT_LT] = ACTIONS(4098), + [anon_sym_GT_GT] = ACTIONS(4096), + [anon_sym_GT_GT_GT] = ACTIONS(4098), + [anon_sym_EQ_EQ] = ACTIONS(4098), + [anon_sym_BANG_EQ] = ACTIONS(4098), + [anon_sym_GT_EQ] = ACTIONS(4098), + [anon_sym_LT_EQ] = ACTIONS(4098), + [anon_sym_DOT] = ACTIONS(4096), + [anon_sym_EQ_GT] = ACTIONS(4098), + [anon_sym_switch] = ACTIONS(4098), + [anon_sym_DOT_DOT] = ACTIONS(4098), + [anon_sym_and] = ACTIONS(4098), + [anon_sym_or] = ACTIONS(4096), + [anon_sym_AMP_AMP] = ACTIONS(4098), + [anon_sym_PIPE_PIPE] = ACTIONS(4098), + [anon_sym_QMARK_QMARK] = 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_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(4098), + [anon_sym_with] = ACTIONS(4098), + [aux_sym_preproc_if_token3] = ACTIONS(4098), + [aux_sym_preproc_else_token1] = ACTIONS(4098), + [aux_sym_preproc_elif_token1] = ACTIONS(4098), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -463855,64 +463414,64 @@ 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), - [anon_sym_SEMI] = ACTIONS(4870), - [anon_sym_LBRACK] = ACTIONS(4870), - [anon_sym_COLON] = ACTIONS(4870), - [anon_sym_COMMA] = ACTIONS(4870), - [anon_sym_RBRACK] = ACTIONS(4870), - [anon_sym_LPAREN] = ACTIONS(4870), - [anon_sym_RPAREN] = ACTIONS(4870), - [anon_sym_LBRACE] = ACTIONS(4870), - [anon_sym_RBRACE] = ACTIONS(4870), - [anon_sym_LT] = ACTIONS(4872), - [anon_sym_GT] = ACTIONS(4872), - [anon_sym_in] = ACTIONS(4872), - [anon_sym_where] = ACTIONS(4870), - [anon_sym_QMARK] = ACTIONS(4872), - [anon_sym_BANG] = ACTIONS(4872), - [anon_sym_PLUS_PLUS] = ACTIONS(4870), - [anon_sym_DASH_DASH] = ACTIONS(4870), - [anon_sym_PLUS] = ACTIONS(4872), - [anon_sym_DASH] = ACTIONS(4872), - [anon_sym_STAR] = ACTIONS(4870), - [anon_sym_SLASH] = ACTIONS(4872), - [anon_sym_PERCENT] = ACTIONS(4870), - [anon_sym_CARET] = ACTIONS(4870), - [anon_sym_PIPE] = ACTIONS(4872), - [anon_sym_AMP] = ACTIONS(4872), - [anon_sym_LT_LT] = ACTIONS(4870), - [anon_sym_GT_GT] = ACTIONS(4872), - [anon_sym_GT_GT_GT] = ACTIONS(4870), - [anon_sym_EQ_EQ] = ACTIONS(4870), - [anon_sym_BANG_EQ] = ACTIONS(4870), - [anon_sym_GT_EQ] = ACTIONS(4870), - [anon_sym_LT_EQ] = ACTIONS(4870), - [anon_sym_DOT] = ACTIONS(4872), - [anon_sym_EQ_GT] = ACTIONS(4870), - [anon_sym_switch] = ACTIONS(4870), - [anon_sym_DOT_DOT] = ACTIONS(4870), - [anon_sym_and] = ACTIONS(4870), - [anon_sym_or] = ACTIONS(4872), - [anon_sym_AMP_AMP] = ACTIONS(4870), - [anon_sym_PIPE_PIPE] = ACTIONS(4870), - [anon_sym_QMARK_QMARK] = ACTIONS(4870), - [anon_sym_from] = ACTIONS(4870), - [anon_sym_into] = ACTIONS(4870), - [anon_sym_join] = ACTIONS(4870), - [anon_sym_on] = ACTIONS(4870), - [anon_sym_equals] = ACTIONS(4870), - [anon_sym_let] = ACTIONS(4870), - [anon_sym_orderby] = ACTIONS(4870), - [anon_sym_group] = ACTIONS(4870), - [anon_sym_by] = ACTIONS(4870), - [anon_sym_select] = ACTIONS(4870), - [anon_sym_as] = ACTIONS(4870), - [anon_sym_is] = ACTIONS(4870), - [anon_sym_DASH_GT] = ACTIONS(4870), - [anon_sym_with] = ACTIONS(4870), - [aux_sym_preproc_if_token3] = ACTIONS(4870), - [aux_sym_preproc_else_token1] = ACTIONS(4870), - [aux_sym_preproc_elif_token1] = ACTIONS(4870), + [anon_sym_SEMI] = ACTIONS(4072), + [anon_sym_LBRACK] = ACTIONS(4072), + [anon_sym_COLON] = ACTIONS(4072), + [anon_sym_COMMA] = ACTIONS(4072), + [anon_sym_RBRACK] = ACTIONS(4072), + [anon_sym_LPAREN] = ACTIONS(4072), + [anon_sym_RPAREN] = ACTIONS(4072), + [anon_sym_LBRACE] = ACTIONS(4072), + [anon_sym_RBRACE] = ACTIONS(4072), + [anon_sym_LT] = ACTIONS(4070), + [anon_sym_GT] = ACTIONS(4070), + [anon_sym_in] = ACTIONS(4070), + [anon_sym_where] = ACTIONS(4072), + [anon_sym_QMARK] = ACTIONS(4070), + [anon_sym_BANG] = ACTIONS(4070), + [anon_sym_PLUS_PLUS] = ACTIONS(4072), + [anon_sym_DASH_DASH] = ACTIONS(4072), + [anon_sym_PLUS] = ACTIONS(4070), + [anon_sym_DASH] = ACTIONS(4070), + [anon_sym_STAR] = ACTIONS(4072), + [anon_sym_SLASH] = ACTIONS(4070), + [anon_sym_PERCENT] = ACTIONS(4072), + [anon_sym_CARET] = ACTIONS(4072), + [anon_sym_PIPE] = ACTIONS(4070), + [anon_sym_AMP] = ACTIONS(4070), + [anon_sym_LT_LT] = ACTIONS(4072), + [anon_sym_GT_GT] = ACTIONS(4070), + [anon_sym_GT_GT_GT] = ACTIONS(4072), + [anon_sym_EQ_EQ] = ACTIONS(4072), + [anon_sym_BANG_EQ] = ACTIONS(4072), + [anon_sym_GT_EQ] = ACTIONS(4072), + [anon_sym_LT_EQ] = ACTIONS(4072), + [anon_sym_DOT] = ACTIONS(4070), + [anon_sym_EQ_GT] = ACTIONS(4072), + [anon_sym_switch] = ACTIONS(4072), + [anon_sym_DOT_DOT] = ACTIONS(4072), + [anon_sym_and] = ACTIONS(4072), + [anon_sym_or] = ACTIONS(4070), + [anon_sym_AMP_AMP] = ACTIONS(4072), + [anon_sym_PIPE_PIPE] = ACTIONS(4072), + [anon_sym_QMARK_QMARK] = ACTIONS(4072), + [anon_sym_from] = ACTIONS(4072), + [anon_sym_into] = ACTIONS(4072), + [anon_sym_join] = ACTIONS(4072), + [anon_sym_on] = ACTIONS(4072), + [anon_sym_equals] = ACTIONS(4072), + [anon_sym_let] = ACTIONS(4072), + [anon_sym_orderby] = ACTIONS(4072), + [anon_sym_group] = ACTIONS(4072), + [anon_sym_by] = ACTIONS(4072), + [anon_sym_select] = ACTIONS(4072), + [anon_sym_as] = ACTIONS(4072), + [anon_sym_is] = ACTIONS(4072), + [anon_sym_DASH_GT] = ACTIONS(4072), + [anon_sym_with] = ACTIONS(4072), + [aux_sym_preproc_if_token3] = ACTIONS(4072), + [aux_sym_preproc_else_token1] = ACTIONS(4072), + [aux_sym_preproc_elif_token1] = ACTIONS(4072), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -463934,64 +463493,64 @@ 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), - [anon_sym_SEMI] = ACTIONS(3616), - [anon_sym_LBRACK] = ACTIONS(3616), - [anon_sym_COLON] = ACTIONS(3619), - [anon_sym_COMMA] = ACTIONS(3616), - [anon_sym_RBRACK] = ACTIONS(3616), - [anon_sym_LPAREN] = ACTIONS(3616), - [anon_sym_RPAREN] = ACTIONS(3616), - [anon_sym_LBRACE] = ACTIONS(3616), - [anon_sym_RBRACE] = ACTIONS(3616), - [anon_sym_LT] = ACTIONS(3619), - [anon_sym_GT] = ACTIONS(3619), - [anon_sym_in] = ACTIONS(3616), - [anon_sym_where] = ACTIONS(3616), - [anon_sym_QMARK] = ACTIONS(3619), - [anon_sym_BANG] = ACTIONS(3619), - [anon_sym_PLUS_PLUS] = ACTIONS(3616), - [anon_sym_DASH_DASH] = ACTIONS(3616), - [anon_sym_PLUS] = ACTIONS(3619), - [anon_sym_DASH] = ACTIONS(3619), - [anon_sym_STAR] = ACTIONS(3616), - [anon_sym_SLASH] = ACTIONS(3619), - [anon_sym_PERCENT] = ACTIONS(3616), - [anon_sym_CARET] = ACTIONS(3616), - [anon_sym_PIPE] = ACTIONS(3619), - [anon_sym_AMP] = ACTIONS(3619), - [anon_sym_LT_LT] = ACTIONS(3616), - [anon_sym_GT_GT] = ACTIONS(3619), - [anon_sym_GT_GT_GT] = ACTIONS(3616), - [anon_sym_EQ_EQ] = ACTIONS(3616), - [anon_sym_BANG_EQ] = ACTIONS(3616), - [anon_sym_GT_EQ] = ACTIONS(3616), - [anon_sym_LT_EQ] = ACTIONS(3616), - [anon_sym_DOT] = ACTIONS(3619), - [anon_sym_EQ_GT] = ACTIONS(3616), - [anon_sym_COLON_COLON] = ACTIONS(3445), - [anon_sym_switch] = ACTIONS(3616), - [anon_sym_DOT_DOT] = ACTIONS(3616), - [anon_sym_and] = ACTIONS(3616), - [anon_sym_or] = ACTIONS(3619), - [anon_sym_AMP_AMP] = ACTIONS(3616), - [anon_sym_PIPE_PIPE] = ACTIONS(3616), - [anon_sym_QMARK_QMARK] = ACTIONS(3616), - [anon_sym_from] = ACTIONS(3616), - [anon_sym_join] = ACTIONS(3616), - [anon_sym_on] = ACTIONS(3616), - [anon_sym_equals] = ACTIONS(3616), - [anon_sym_let] = ACTIONS(3616), - [anon_sym_orderby] = ACTIONS(3616), - [anon_sym_group] = ACTIONS(3616), - [anon_sym_by] = ACTIONS(3616), - [anon_sym_select] = ACTIONS(3616), - [anon_sym_as] = ACTIONS(3616), - [anon_sym_is] = ACTIONS(3616), - [anon_sym_DASH_GT] = ACTIONS(3616), - [anon_sym_with] = ACTIONS(3616), - [aux_sym_preproc_if_token3] = ACTIONS(3616), - [aux_sym_preproc_else_token1] = ACTIONS(3616), - [aux_sym_preproc_elif_token1] = ACTIONS(3616), + [anon_sym_SEMI] = ACTIONS(4863), + [anon_sym_LBRACK] = ACTIONS(4863), + [anon_sym_COLON] = ACTIONS(4863), + [anon_sym_COMMA] = ACTIONS(4863), + [anon_sym_RBRACK] = ACTIONS(4863), + [anon_sym_LPAREN] = ACTIONS(4863), + [anon_sym_RPAREN] = ACTIONS(4863), + [anon_sym_LBRACE] = ACTIONS(4863), + [anon_sym_RBRACE] = ACTIONS(4863), + [anon_sym_LT] = ACTIONS(4865), + [anon_sym_GT] = ACTIONS(4865), + [anon_sym_in] = ACTIONS(4865), + [anon_sym_where] = ACTIONS(4863), + [anon_sym_QMARK] = ACTIONS(4865), + [anon_sym_BANG] = ACTIONS(4865), + [anon_sym_PLUS_PLUS] = ACTIONS(4863), + [anon_sym_DASH_DASH] = ACTIONS(4863), + [anon_sym_PLUS] = ACTIONS(4865), + [anon_sym_DASH] = ACTIONS(4865), + [anon_sym_STAR] = ACTIONS(4863), + [anon_sym_SLASH] = ACTIONS(4865), + [anon_sym_PERCENT] = ACTIONS(4863), + [anon_sym_CARET] = ACTIONS(4863), + [anon_sym_PIPE] = ACTIONS(4865), + [anon_sym_AMP] = ACTIONS(4865), + [anon_sym_LT_LT] = ACTIONS(4863), + [anon_sym_GT_GT] = ACTIONS(4865), + [anon_sym_GT_GT_GT] = ACTIONS(4863), + [anon_sym_EQ_EQ] = ACTIONS(4863), + [anon_sym_BANG_EQ] = ACTIONS(4863), + [anon_sym_GT_EQ] = ACTIONS(4863), + [anon_sym_LT_EQ] = ACTIONS(4863), + [anon_sym_DOT] = ACTIONS(4865), + [anon_sym_EQ_GT] = ACTIONS(4863), + [anon_sym_switch] = ACTIONS(4863), + [anon_sym_DOT_DOT] = ACTIONS(4863), + [anon_sym_and] = ACTIONS(4863), + [anon_sym_or] = ACTIONS(4865), + [anon_sym_AMP_AMP] = ACTIONS(4863), + [anon_sym_PIPE_PIPE] = ACTIONS(4863), + [anon_sym_QMARK_QMARK] = ACTIONS(4863), + [anon_sym_from] = ACTIONS(4863), + [anon_sym_into] = ACTIONS(4863), + [anon_sym_join] = ACTIONS(4863), + [anon_sym_on] = ACTIONS(4863), + [anon_sym_equals] = ACTIONS(4863), + [anon_sym_let] = ACTIONS(4863), + [anon_sym_orderby] = ACTIONS(4863), + [anon_sym_group] = ACTIONS(4863), + [anon_sym_by] = ACTIONS(4863), + [anon_sym_select] = ACTIONS(4863), + [anon_sym_as] = ACTIONS(4863), + [anon_sym_is] = ACTIONS(4863), + [anon_sym_DASH_GT] = ACTIONS(4863), + [anon_sym_with] = ACTIONS(4863), + [aux_sym_preproc_if_token3] = ACTIONS(4863), + [aux_sym_preproc_else_token1] = ACTIONS(4863), + [aux_sym_preproc_elif_token1] = ACTIONS(4863), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -464013,64 +463572,64 @@ 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), - [anon_sym_SEMI] = ACTIONS(3710), - [anon_sym_LBRACK] = ACTIONS(3710), - [anon_sym_COLON] = ACTIONS(3710), - [anon_sym_COMMA] = ACTIONS(3710), - [anon_sym_RBRACK] = ACTIONS(3710), - [anon_sym_LPAREN] = ACTIONS(3710), - [anon_sym_RPAREN] = ACTIONS(3710), - [anon_sym_LBRACE] = ACTIONS(3710), - [anon_sym_RBRACE] = ACTIONS(3710), - [anon_sym_LT] = ACTIONS(3699), - [anon_sym_GT] = ACTIONS(3699), - [anon_sym_in] = ACTIONS(3699), - [anon_sym_where] = ACTIONS(3710), - [anon_sym_QMARK] = ACTIONS(3699), - [anon_sym_BANG] = ACTIONS(3699), - [anon_sym_PLUS_PLUS] = ACTIONS(3710), - [anon_sym_DASH_DASH] = ACTIONS(3710), - [anon_sym_PLUS] = ACTIONS(3699), - [anon_sym_DASH] = ACTIONS(3699), - [anon_sym_STAR] = ACTIONS(3710), - [anon_sym_SLASH] = ACTIONS(3699), - [anon_sym_PERCENT] = ACTIONS(3710), - [anon_sym_CARET] = ACTIONS(3710), - [anon_sym_PIPE] = ACTIONS(3699), - [anon_sym_AMP] = ACTIONS(3699), - [anon_sym_LT_LT] = ACTIONS(3710), - [anon_sym_GT_GT] = ACTIONS(3699), - [anon_sym_GT_GT_GT] = ACTIONS(3710), - [anon_sym_EQ_EQ] = ACTIONS(3710), - [anon_sym_BANG_EQ] = ACTIONS(3710), - [anon_sym_GT_EQ] = ACTIONS(3710), - [anon_sym_LT_EQ] = ACTIONS(3710), - [anon_sym_DOT] = ACTIONS(3699), - [anon_sym_EQ_GT] = ACTIONS(3710), - [anon_sym_switch] = ACTIONS(3710), - [anon_sym_DOT_DOT] = ACTIONS(3710), - [anon_sym_and] = ACTIONS(3710), - [anon_sym_or] = ACTIONS(3699), - [anon_sym_AMP_AMP] = ACTIONS(3710), - [anon_sym_PIPE_PIPE] = ACTIONS(3710), - [anon_sym_QMARK_QMARK] = ACTIONS(3710), - [anon_sym_from] = ACTIONS(3710), - [anon_sym_into] = ACTIONS(3710), - [anon_sym_join] = ACTIONS(3710), - [anon_sym_on] = ACTIONS(3710), - [anon_sym_equals] = ACTIONS(3710), - [anon_sym_let] = ACTIONS(3710), - [anon_sym_orderby] = ACTIONS(3710), - [anon_sym_group] = ACTIONS(3710), - [anon_sym_by] = ACTIONS(3710), - [anon_sym_select] = ACTIONS(3710), - [anon_sym_as] = ACTIONS(3710), - [anon_sym_is] = ACTIONS(3710), - [anon_sym_DASH_GT] = ACTIONS(3710), - [anon_sym_with] = ACTIONS(3710), - [aux_sym_preproc_if_token3] = ACTIONS(3710), - [aux_sym_preproc_else_token1] = ACTIONS(3710), - [aux_sym_preproc_elif_token1] = ACTIONS(3710), + [anon_sym_SEMI] = ACTIONS(3953), + [anon_sym_LBRACK] = ACTIONS(3953), + [anon_sym_COLON] = ACTIONS(3953), + [anon_sym_COMMA] = ACTIONS(3953), + [anon_sym_RBRACK] = ACTIONS(3953), + [anon_sym_LPAREN] = ACTIONS(3953), + [anon_sym_RPAREN] = ACTIONS(3953), + [anon_sym_LBRACE] = ACTIONS(3953), + [anon_sym_RBRACE] = ACTIONS(3953), + [anon_sym_LT] = ACTIONS(3951), + [anon_sym_GT] = ACTIONS(3951), + [anon_sym_in] = ACTIONS(3951), + [anon_sym_where] = ACTIONS(3953), + [anon_sym_QMARK] = ACTIONS(3951), + [anon_sym_BANG] = ACTIONS(3951), + [anon_sym_PLUS_PLUS] = ACTIONS(3953), + [anon_sym_DASH_DASH] = ACTIONS(3953), + [anon_sym_PLUS] = ACTIONS(3951), + [anon_sym_DASH] = ACTIONS(3951), + [anon_sym_STAR] = ACTIONS(3953), + [anon_sym_SLASH] = ACTIONS(3951), + [anon_sym_PERCENT] = ACTIONS(3953), + [anon_sym_CARET] = ACTIONS(3953), + [anon_sym_PIPE] = ACTIONS(3951), + [anon_sym_AMP] = ACTIONS(3951), + [anon_sym_LT_LT] = ACTIONS(3953), + [anon_sym_GT_GT] = ACTIONS(3951), + [anon_sym_GT_GT_GT] = ACTIONS(3953), + [anon_sym_EQ_EQ] = ACTIONS(3953), + [anon_sym_BANG_EQ] = ACTIONS(3953), + [anon_sym_GT_EQ] = ACTIONS(3953), + [anon_sym_LT_EQ] = ACTIONS(3953), + [anon_sym_DOT] = ACTIONS(3951), + [anon_sym_EQ_GT] = ACTIONS(3953), + [anon_sym_switch] = ACTIONS(3953), + [anon_sym_DOT_DOT] = ACTIONS(3953), + [anon_sym_and] = ACTIONS(3953), + [anon_sym_or] = ACTIONS(3951), + [anon_sym_AMP_AMP] = ACTIONS(3953), + [anon_sym_PIPE_PIPE] = ACTIONS(3953), + [anon_sym_QMARK_QMARK] = ACTIONS(3953), + [anon_sym_from] = ACTIONS(3953), + [anon_sym_into] = ACTIONS(3953), + [anon_sym_join] = ACTIONS(3953), + [anon_sym_on] = ACTIONS(3953), + [anon_sym_equals] = ACTIONS(3953), + [anon_sym_let] = ACTIONS(3953), + [anon_sym_orderby] = ACTIONS(3953), + [anon_sym_group] = ACTIONS(3953), + [anon_sym_by] = ACTIONS(3953), + [anon_sym_select] = ACTIONS(3953), + [anon_sym_as] = ACTIONS(3953), + [anon_sym_is] = ACTIONS(3953), + [anon_sym_DASH_GT] = ACTIONS(3953), + [anon_sym_with] = ACTIONS(3953), + [aux_sym_preproc_if_token3] = ACTIONS(3953), + [aux_sym_preproc_else_token1] = ACTIONS(3953), + [aux_sym_preproc_elif_token1] = ACTIONS(3953), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -464083,6 +463642,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2922] = { + [sym_initializer_expression] = STATE(3095), [sym_preproc_region] = STATE(2922), [sym_preproc_endregion] = STATE(2922), [sym_preproc_line] = STATE(2922), @@ -464092,64 +463652,63 @@ 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(3977), - [anon_sym_LBRACK] = ACTIONS(3977), - [anon_sym_COLON] = ACTIONS(3977), - [anon_sym_COMMA] = ACTIONS(3977), - [anon_sym_RBRACK] = ACTIONS(3977), - [anon_sym_LPAREN] = ACTIONS(3977), - [anon_sym_RPAREN] = ACTIONS(3977), - [anon_sym_LBRACE] = ACTIONS(3977), - [anon_sym_RBRACE] = ACTIONS(3977), - [anon_sym_LT] = ACTIONS(3975), - [anon_sym_GT] = ACTIONS(3975), - [anon_sym_in] = ACTIONS(3975), - [anon_sym_where] = ACTIONS(3977), - [anon_sym_QMARK] = ACTIONS(3975), - [anon_sym_BANG] = ACTIONS(3975), - [anon_sym_PLUS_PLUS] = ACTIONS(3977), - [anon_sym_DASH_DASH] = ACTIONS(3977), - [anon_sym_PLUS] = ACTIONS(3975), - [anon_sym_DASH] = ACTIONS(3975), - [anon_sym_STAR] = ACTIONS(3977), - [anon_sym_SLASH] = ACTIONS(3975), - [anon_sym_PERCENT] = ACTIONS(3977), - [anon_sym_CARET] = ACTIONS(3977), - [anon_sym_PIPE] = ACTIONS(3975), - [anon_sym_AMP] = ACTIONS(3975), - [anon_sym_LT_LT] = ACTIONS(3977), - [anon_sym_GT_GT] = ACTIONS(3975), - [anon_sym_GT_GT_GT] = ACTIONS(3977), - [anon_sym_EQ_EQ] = ACTIONS(3977), - [anon_sym_BANG_EQ] = ACTIONS(3977), - [anon_sym_GT_EQ] = ACTIONS(3977), - [anon_sym_LT_EQ] = ACTIONS(3977), - [anon_sym_DOT] = ACTIONS(3975), - [anon_sym_EQ_GT] = ACTIONS(3977), - [anon_sym_switch] = ACTIONS(3977), - [anon_sym_DOT_DOT] = ACTIONS(3977), - [anon_sym_and] = ACTIONS(3977), - [anon_sym_or] = ACTIONS(3975), - [anon_sym_AMP_AMP] = ACTIONS(3977), - [anon_sym_PIPE_PIPE] = ACTIONS(3977), - [anon_sym_QMARK_QMARK] = ACTIONS(3977), - [anon_sym_from] = ACTIONS(3977), - [anon_sym_into] = ACTIONS(3977), - [anon_sym_join] = ACTIONS(3977), - [anon_sym_on] = ACTIONS(3977), - [anon_sym_equals] = ACTIONS(3977), - [anon_sym_let] = ACTIONS(3977), - [anon_sym_orderby] = ACTIONS(3977), - [anon_sym_group] = ACTIONS(3977), - [anon_sym_by] = ACTIONS(3977), - [anon_sym_select] = ACTIONS(3977), - [anon_sym_as] = ACTIONS(3977), - [anon_sym_is] = ACTIONS(3977), - [anon_sym_DASH_GT] = ACTIONS(3977), - [anon_sym_with] = ACTIONS(3977), - [aux_sym_preproc_if_token3] = ACTIONS(3977), - [aux_sym_preproc_else_token1] = ACTIONS(3977), - [aux_sym_preproc_elif_token1] = ACTIONS(3977), + [anon_sym_SEMI] = ACTIONS(4831), + [anon_sym_LBRACK] = ACTIONS(4831), + [anon_sym_COLON] = ACTIONS(4831), + [anon_sym_COMMA] = ACTIONS(4831), + [anon_sym_RBRACK] = ACTIONS(4831), + [anon_sym_LPAREN] = ACTIONS(4831), + [anon_sym_RPAREN] = ACTIONS(4831), + [anon_sym_LBRACE] = ACTIONS(1481), + [anon_sym_RBRACE] = ACTIONS(4831), + [anon_sym_LT] = ACTIONS(4833), + [anon_sym_GT] = ACTIONS(4833), + [anon_sym_in] = ACTIONS(4831), + [anon_sym_where] = ACTIONS(4831), + [anon_sym_QMARK] = ACTIONS(4833), + [anon_sym_BANG] = ACTIONS(4833), + [anon_sym_PLUS_PLUS] = ACTIONS(4831), + [anon_sym_DASH_DASH] = ACTIONS(4831), + [anon_sym_PLUS] = ACTIONS(4833), + [anon_sym_DASH] = ACTIONS(4833), + [anon_sym_STAR] = ACTIONS(4831), + [anon_sym_SLASH] = ACTIONS(4833), + [anon_sym_PERCENT] = ACTIONS(4831), + [anon_sym_CARET] = ACTIONS(4831), + [anon_sym_PIPE] = ACTIONS(4833), + [anon_sym_AMP] = ACTIONS(4833), + [anon_sym_LT_LT] = ACTIONS(4831), + [anon_sym_GT_GT] = ACTIONS(4833), + [anon_sym_GT_GT_GT] = ACTIONS(4831), + [anon_sym_EQ_EQ] = ACTIONS(4831), + [anon_sym_BANG_EQ] = ACTIONS(4831), + [anon_sym_GT_EQ] = ACTIONS(4831), + [anon_sym_LT_EQ] = ACTIONS(4831), + [anon_sym_DOT] = ACTIONS(4833), + [anon_sym_EQ_GT] = ACTIONS(4831), + [anon_sym_switch] = ACTIONS(4831), + [anon_sym_DOT_DOT] = ACTIONS(4831), + [anon_sym_and] = ACTIONS(4831), + [anon_sym_or] = ACTIONS(4833), + [anon_sym_AMP_AMP] = ACTIONS(4831), + [anon_sym_PIPE_PIPE] = ACTIONS(4831), + [anon_sym_QMARK_QMARK] = ACTIONS(4831), + [anon_sym_from] = ACTIONS(4831), + [anon_sym_join] = ACTIONS(4831), + [anon_sym_on] = ACTIONS(4831), + [anon_sym_equals] = ACTIONS(4831), + [anon_sym_let] = ACTIONS(4831), + [anon_sym_orderby] = ACTIONS(4831), + [anon_sym_group] = ACTIONS(4831), + [anon_sym_by] = ACTIONS(4831), + [anon_sym_select] = ACTIONS(4831), + [anon_sym_as] = ACTIONS(4831), + [anon_sym_is] = ACTIONS(4831), + [anon_sym_DASH_GT] = ACTIONS(4831), + [anon_sym_with] = ACTIONS(4831), + [aux_sym_preproc_if_token3] = ACTIONS(4831), + [aux_sym_preproc_else_token1] = ACTIONS(4831), + [aux_sym_preproc_elif_token1] = ACTIONS(4831), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -464162,7 +463721,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2923] = { - [sym_type_argument_list] = STATE(2964), [sym_preproc_region] = STATE(2923), [sym_preproc_endregion] = STATE(2923), [sym_preproc_line] = STATE(2923), @@ -464172,63 +463730,64 @@ 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), - [anon_sym_SEMI] = ACTIONS(3662), - [anon_sym_LBRACK] = ACTIONS(3662), - [anon_sym_COMMA] = ACTIONS(3662), - [anon_sym_RBRACK] = ACTIONS(3662), - [anon_sym_LPAREN] = ACTIONS(3662), - [anon_sym_RPAREN] = ACTIONS(3662), - [anon_sym_LBRACE] = ACTIONS(3662), - [anon_sym_RBRACE] = ACTIONS(3662), - [anon_sym_LT] = ACTIONS(4874), - [anon_sym_GT] = ACTIONS(3660), - [anon_sym_in] = ACTIONS(3662), - [anon_sym_where] = ACTIONS(3662), - [anon_sym_QMARK] = ACTIONS(3660), - [anon_sym_BANG] = ACTIONS(3660), - [anon_sym_PLUS_PLUS] = ACTIONS(3662), - [anon_sym_DASH_DASH] = ACTIONS(3662), - [anon_sym_PLUS] = ACTIONS(3660), - [anon_sym_DASH] = ACTIONS(3660), - [anon_sym_STAR] = ACTIONS(3662), - [anon_sym_SLASH] = ACTIONS(3660), - [anon_sym_PERCENT] = ACTIONS(3662), - [anon_sym_CARET] = ACTIONS(3662), - [anon_sym_PIPE] = ACTIONS(3660), - [anon_sym_AMP] = ACTIONS(3660), - [anon_sym_LT_LT] = ACTIONS(3662), - [anon_sym_GT_GT] = ACTIONS(3660), - [anon_sym_GT_GT_GT] = ACTIONS(3662), - [anon_sym_EQ_EQ] = ACTIONS(3662), - [anon_sym_BANG_EQ] = ACTIONS(3662), - [anon_sym_GT_EQ] = ACTIONS(3662), - [anon_sym_LT_EQ] = ACTIONS(3662), - [anon_sym_DOT] = ACTIONS(3660), - [anon_sym_EQ_GT] = ACTIONS(3662), - [anon_sym_COLON_COLON] = ACTIONS(4877), - [anon_sym_switch] = ACTIONS(3662), - [anon_sym_DOT_DOT] = ACTIONS(3662), - [anon_sym_and] = ACTIONS(3662), - [anon_sym_or] = ACTIONS(3660), - [anon_sym_AMP_AMP] = ACTIONS(3662), - [anon_sym_PIPE_PIPE] = ACTIONS(3662), - [anon_sym_QMARK_QMARK] = ACTIONS(3662), - [anon_sym_from] = 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_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(3662), - [anon_sym_with] = ACTIONS(3662), - [aux_sym_preproc_if_token3] = ACTIONS(3662), - [aux_sym_preproc_else_token1] = ACTIONS(3662), - [aux_sym_preproc_elif_token1] = ACTIONS(3662), + [anon_sym_SEMI] = ACTIONS(3978), + [anon_sym_LBRACK] = ACTIONS(3978), + [anon_sym_COLON] = ACTIONS(3978), + [anon_sym_COMMA] = ACTIONS(3978), + [anon_sym_RBRACK] = ACTIONS(3978), + [anon_sym_LPAREN] = ACTIONS(3978), + [anon_sym_RPAREN] = ACTIONS(3978), + [anon_sym_LBRACE] = ACTIONS(3978), + [anon_sym_RBRACE] = ACTIONS(3978), + [anon_sym_LT] = ACTIONS(3976), + [anon_sym_GT] = ACTIONS(3976), + [anon_sym_in] = ACTIONS(3976), + [anon_sym_where] = ACTIONS(3978), + [anon_sym_QMARK] = ACTIONS(3976), + [anon_sym_BANG] = ACTIONS(3976), + [anon_sym_PLUS_PLUS] = ACTIONS(3978), + [anon_sym_DASH_DASH] = ACTIONS(3978), + [anon_sym_PLUS] = ACTIONS(3976), + [anon_sym_DASH] = ACTIONS(3976), + [anon_sym_STAR] = ACTIONS(3978), + [anon_sym_SLASH] = ACTIONS(3976), + [anon_sym_PERCENT] = ACTIONS(3978), + [anon_sym_CARET] = ACTIONS(3978), + [anon_sym_PIPE] = ACTIONS(3976), + [anon_sym_AMP] = ACTIONS(3976), + [anon_sym_LT_LT] = ACTIONS(3978), + [anon_sym_GT_GT] = ACTIONS(3976), + [anon_sym_GT_GT_GT] = ACTIONS(3978), + [anon_sym_EQ_EQ] = ACTIONS(3978), + [anon_sym_BANG_EQ] = ACTIONS(3978), + [anon_sym_GT_EQ] = ACTIONS(3978), + [anon_sym_LT_EQ] = ACTIONS(3978), + [anon_sym_DOT] = ACTIONS(3976), + [anon_sym_EQ_GT] = ACTIONS(3978), + [anon_sym_switch] = ACTIONS(3978), + [anon_sym_DOT_DOT] = ACTIONS(3978), + [anon_sym_and] = ACTIONS(3978), + [anon_sym_or] = ACTIONS(3976), + [anon_sym_AMP_AMP] = ACTIONS(3978), + [anon_sym_PIPE_PIPE] = ACTIONS(3978), + [anon_sym_QMARK_QMARK] = ACTIONS(3978), + [anon_sym_from] = ACTIONS(3978), + [anon_sym_into] = ACTIONS(3978), + [anon_sym_join] = ACTIONS(3978), + [anon_sym_on] = ACTIONS(3978), + [anon_sym_equals] = ACTIONS(3978), + [anon_sym_let] = ACTIONS(3978), + [anon_sym_orderby] = ACTIONS(3978), + [anon_sym_group] = ACTIONS(3978), + [anon_sym_by] = ACTIONS(3978), + [anon_sym_select] = ACTIONS(3978), + [anon_sym_as] = ACTIONS(3978), + [anon_sym_is] = ACTIONS(3978), + [anon_sym_DASH_GT] = ACTIONS(3978), + [anon_sym_with] = ACTIONS(3978), + [aux_sym_preproc_if_token3] = ACTIONS(3978), + [aux_sym_preproc_else_token1] = ACTIONS(3978), + [aux_sym_preproc_elif_token1] = ACTIONS(3978), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -464250,64 +463809,64 @@ 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), - [anon_sym_SEMI] = ACTIONS(4002), - [anon_sym_LBRACK] = ACTIONS(4002), - [anon_sym_COLON] = ACTIONS(4002), - [anon_sym_COMMA] = ACTIONS(4002), - [anon_sym_RBRACK] = ACTIONS(4002), - [anon_sym_LPAREN] = ACTIONS(4002), - [anon_sym_RPAREN] = ACTIONS(4002), - [anon_sym_LBRACE] = ACTIONS(4002), - [anon_sym_RBRACE] = ACTIONS(4002), - [anon_sym_LT] = ACTIONS(4000), - [anon_sym_GT] = ACTIONS(4000), - [anon_sym_in] = ACTIONS(4000), - [anon_sym_where] = ACTIONS(4002), - [anon_sym_QMARK] = ACTIONS(4000), - [anon_sym_BANG] = ACTIONS(4000), - [anon_sym_PLUS_PLUS] = ACTIONS(4002), - [anon_sym_DASH_DASH] = ACTIONS(4002), - [anon_sym_PLUS] = ACTIONS(4000), - [anon_sym_DASH] = ACTIONS(4000), - [anon_sym_STAR] = ACTIONS(4002), - [anon_sym_SLASH] = ACTIONS(4000), - [anon_sym_PERCENT] = ACTIONS(4002), - [anon_sym_CARET] = ACTIONS(4002), - [anon_sym_PIPE] = ACTIONS(4000), - [anon_sym_AMP] = ACTIONS(4000), - [anon_sym_LT_LT] = ACTIONS(4002), - [anon_sym_GT_GT] = ACTIONS(4000), - [anon_sym_GT_GT_GT] = ACTIONS(4002), - [anon_sym_EQ_EQ] = ACTIONS(4002), - [anon_sym_BANG_EQ] = ACTIONS(4002), - [anon_sym_GT_EQ] = ACTIONS(4002), - [anon_sym_LT_EQ] = ACTIONS(4002), - [anon_sym_DOT] = ACTIONS(4000), - [anon_sym_EQ_GT] = ACTIONS(4002), - [anon_sym_switch] = ACTIONS(4002), - [anon_sym_DOT_DOT] = ACTIONS(4002), - [anon_sym_and] = ACTIONS(4002), - [anon_sym_or] = ACTIONS(4000), - [anon_sym_AMP_AMP] = ACTIONS(4002), - [anon_sym_PIPE_PIPE] = ACTIONS(4002), - [anon_sym_QMARK_QMARK] = ACTIONS(4002), - [anon_sym_from] = ACTIONS(4002), - [anon_sym_into] = ACTIONS(4002), - [anon_sym_join] = ACTIONS(4002), - [anon_sym_on] = ACTIONS(4002), - [anon_sym_equals] = ACTIONS(4002), - [anon_sym_let] = ACTIONS(4002), - [anon_sym_orderby] = ACTIONS(4002), - [anon_sym_group] = ACTIONS(4002), - [anon_sym_by] = ACTIONS(4002), - [anon_sym_select] = ACTIONS(4002), - [anon_sym_as] = ACTIONS(4002), - [anon_sym_is] = ACTIONS(4002), - [anon_sym_DASH_GT] = ACTIONS(4002), - [anon_sym_with] = ACTIONS(4002), - [aux_sym_preproc_if_token3] = ACTIONS(4002), - [aux_sym_preproc_else_token1] = ACTIONS(4002), - [aux_sym_preproc_elif_token1] = ACTIONS(4002), + [anon_sym_SEMI] = ACTIONS(4076), + [anon_sym_LBRACK] = ACTIONS(4076), + [anon_sym_COLON] = ACTIONS(4076), + [anon_sym_COMMA] = ACTIONS(4076), + [anon_sym_RBRACK] = ACTIONS(4076), + [anon_sym_LPAREN] = ACTIONS(4076), + [anon_sym_RPAREN] = ACTIONS(4076), + [anon_sym_LBRACE] = ACTIONS(4076), + [anon_sym_RBRACE] = ACTIONS(4076), + [anon_sym_LT] = ACTIONS(4074), + [anon_sym_GT] = ACTIONS(4074), + [anon_sym_in] = ACTIONS(4074), + [anon_sym_where] = ACTIONS(4076), + [anon_sym_QMARK] = ACTIONS(4074), + [anon_sym_BANG] = ACTIONS(4074), + [anon_sym_PLUS_PLUS] = ACTIONS(4076), + [anon_sym_DASH_DASH] = ACTIONS(4076), + [anon_sym_PLUS] = ACTIONS(4074), + [anon_sym_DASH] = ACTIONS(4074), + [anon_sym_STAR] = ACTIONS(4076), + [anon_sym_SLASH] = ACTIONS(4074), + [anon_sym_PERCENT] = ACTIONS(4076), + [anon_sym_CARET] = ACTIONS(4076), + [anon_sym_PIPE] = ACTIONS(4074), + [anon_sym_AMP] = ACTIONS(4074), + [anon_sym_LT_LT] = ACTIONS(4076), + [anon_sym_GT_GT] = ACTIONS(4074), + [anon_sym_GT_GT_GT] = ACTIONS(4076), + [anon_sym_EQ_EQ] = ACTIONS(4076), + [anon_sym_BANG_EQ] = ACTIONS(4076), + [anon_sym_GT_EQ] = ACTIONS(4076), + [anon_sym_LT_EQ] = ACTIONS(4076), + [anon_sym_DOT] = ACTIONS(4074), + [anon_sym_EQ_GT] = ACTIONS(4076), + [anon_sym_switch] = ACTIONS(4076), + [anon_sym_DOT_DOT] = ACTIONS(4076), + [anon_sym_and] = ACTIONS(4076), + [anon_sym_or] = ACTIONS(4074), + [anon_sym_AMP_AMP] = ACTIONS(4076), + [anon_sym_PIPE_PIPE] = ACTIONS(4076), + [anon_sym_QMARK_QMARK] = ACTIONS(4076), + [anon_sym_from] = ACTIONS(4076), + [anon_sym_into] = ACTIONS(4076), + [anon_sym_join] = ACTIONS(4076), + [anon_sym_on] = ACTIONS(4076), + [anon_sym_equals] = ACTIONS(4076), + [anon_sym_let] = ACTIONS(4076), + [anon_sym_orderby] = ACTIONS(4076), + [anon_sym_group] = ACTIONS(4076), + [anon_sym_by] = ACTIONS(4076), + [anon_sym_select] = ACTIONS(4076), + [anon_sym_as] = ACTIONS(4076), + [anon_sym_is] = ACTIONS(4076), + [anon_sym_DASH_GT] = ACTIONS(4076), + [anon_sym_with] = ACTIONS(4076), + [aux_sym_preproc_if_token3] = ACTIONS(4076), + [aux_sym_preproc_else_token1] = ACTIONS(4076), + [aux_sym_preproc_elif_token1] = ACTIONS(4076), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -464329,64 +463888,64 @@ 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(4006), - [anon_sym_LBRACK] = ACTIONS(4006), - [anon_sym_COLON] = ACTIONS(4006), - [anon_sym_COMMA] = ACTIONS(4006), - [anon_sym_RBRACK] = ACTIONS(4006), - [anon_sym_LPAREN] = ACTIONS(4006), - [anon_sym_RPAREN] = ACTIONS(4006), - [anon_sym_LBRACE] = ACTIONS(4006), - [anon_sym_RBRACE] = ACTIONS(4006), - [anon_sym_LT] = ACTIONS(4004), - [anon_sym_GT] = ACTIONS(4004), - [anon_sym_in] = ACTIONS(4004), - [anon_sym_where] = ACTIONS(4006), - [anon_sym_QMARK] = ACTIONS(4004), - [anon_sym_BANG] = ACTIONS(4004), - [anon_sym_PLUS_PLUS] = ACTIONS(4006), - [anon_sym_DASH_DASH] = ACTIONS(4006), - [anon_sym_PLUS] = ACTIONS(4004), - [anon_sym_DASH] = ACTIONS(4004), - [anon_sym_STAR] = ACTIONS(4006), - [anon_sym_SLASH] = ACTIONS(4004), - [anon_sym_PERCENT] = ACTIONS(4006), - [anon_sym_CARET] = ACTIONS(4006), - [anon_sym_PIPE] = ACTIONS(4004), - [anon_sym_AMP] = ACTIONS(4004), - [anon_sym_LT_LT] = ACTIONS(4006), - [anon_sym_GT_GT] = ACTIONS(4004), - [anon_sym_GT_GT_GT] = ACTIONS(4006), - [anon_sym_EQ_EQ] = ACTIONS(4006), - [anon_sym_BANG_EQ] = ACTIONS(4006), - [anon_sym_GT_EQ] = ACTIONS(4006), - [anon_sym_LT_EQ] = ACTIONS(4006), - [anon_sym_DOT] = ACTIONS(4004), - [anon_sym_EQ_GT] = ACTIONS(4006), - [anon_sym_switch] = ACTIONS(4006), - [anon_sym_DOT_DOT] = ACTIONS(4006), - [anon_sym_and] = ACTIONS(4006), - [anon_sym_or] = ACTIONS(4004), - [anon_sym_AMP_AMP] = ACTIONS(4006), - [anon_sym_PIPE_PIPE] = ACTIONS(4006), - [anon_sym_QMARK_QMARK] = ACTIONS(4006), - [anon_sym_from] = ACTIONS(4006), - [anon_sym_into] = ACTIONS(4006), - [anon_sym_join] = ACTIONS(4006), - [anon_sym_on] = ACTIONS(4006), - [anon_sym_equals] = ACTIONS(4006), - [anon_sym_let] = ACTIONS(4006), - [anon_sym_orderby] = ACTIONS(4006), - [anon_sym_group] = ACTIONS(4006), - [anon_sym_by] = ACTIONS(4006), - [anon_sym_select] = ACTIONS(4006), - [anon_sym_as] = ACTIONS(4006), - [anon_sym_is] = ACTIONS(4006), - [anon_sym_DASH_GT] = ACTIONS(4006), - [anon_sym_with] = ACTIONS(4006), - [aux_sym_preproc_if_token3] = ACTIONS(4006), - [aux_sym_preproc_else_token1] = ACTIONS(4006), - [aux_sym_preproc_elif_token1] = ACTIONS(4006), + [sym__identifier_token] = ACTIONS(4665), + [anon_sym_extern] = ACTIONS(4665), + [anon_sym_alias] = ACTIONS(4665), + [anon_sym_global] = 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_class] = ACTIONS(4665), + [anon_sym_ref] = ACTIONS(4665), + [anon_sym_struct] = ACTIONS(4665), + [anon_sym_enum] = ACTIONS(4665), + [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(4867), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -464408,64 +463967,64 @@ 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), - [anon_sym_SEMI] = ACTIONS(4084), - [anon_sym_LBRACK] = ACTIONS(4084), - [anon_sym_COLON] = ACTIONS(4084), - [anon_sym_COMMA] = ACTIONS(4084), - [anon_sym_RBRACK] = ACTIONS(4084), - [anon_sym_LPAREN] = ACTIONS(4084), - [anon_sym_RPAREN] = ACTIONS(4084), - [anon_sym_LBRACE] = ACTIONS(4084), - [anon_sym_RBRACE] = ACTIONS(4084), - [anon_sym_LT] = ACTIONS(4082), - [anon_sym_GT] = ACTIONS(4082), - [anon_sym_in] = ACTIONS(4082), - [anon_sym_where] = ACTIONS(4084), - [anon_sym_QMARK] = ACTIONS(4082), - [anon_sym_BANG] = ACTIONS(4082), - [anon_sym_PLUS_PLUS] = ACTIONS(4084), - [anon_sym_DASH_DASH] = ACTIONS(4084), - [anon_sym_PLUS] = ACTIONS(4082), - [anon_sym_DASH] = ACTIONS(4082), - [anon_sym_STAR] = ACTIONS(4084), - [anon_sym_SLASH] = ACTIONS(4082), - [anon_sym_PERCENT] = ACTIONS(4084), - [anon_sym_CARET] = ACTIONS(4084), - [anon_sym_PIPE] = ACTIONS(4082), - [anon_sym_AMP] = ACTIONS(4082), - [anon_sym_LT_LT] = ACTIONS(4084), - [anon_sym_GT_GT] = ACTIONS(4082), - [anon_sym_GT_GT_GT] = ACTIONS(4084), - [anon_sym_EQ_EQ] = ACTIONS(4084), - [anon_sym_BANG_EQ] = ACTIONS(4084), - [anon_sym_GT_EQ] = ACTIONS(4084), - [anon_sym_LT_EQ] = ACTIONS(4084), - [anon_sym_DOT] = ACTIONS(4082), - [anon_sym_EQ_GT] = ACTIONS(4084), - [anon_sym_switch] = ACTIONS(4084), - [anon_sym_DOT_DOT] = ACTIONS(4084), - [anon_sym_and] = ACTIONS(4084), - [anon_sym_or] = ACTIONS(4082), - [anon_sym_AMP_AMP] = ACTIONS(4084), - [anon_sym_PIPE_PIPE] = ACTIONS(4084), - [anon_sym_QMARK_QMARK] = ACTIONS(4084), - [anon_sym_from] = ACTIONS(4084), - [anon_sym_into] = ACTIONS(4084), - [anon_sym_join] = ACTIONS(4084), - [anon_sym_on] = ACTIONS(4084), - [anon_sym_equals] = ACTIONS(4084), - [anon_sym_let] = ACTIONS(4084), - [anon_sym_orderby] = ACTIONS(4084), - [anon_sym_group] = ACTIONS(4084), - [anon_sym_by] = ACTIONS(4084), - [anon_sym_select] = ACTIONS(4084), - [anon_sym_as] = ACTIONS(4084), - [anon_sym_is] = ACTIONS(4084), - [anon_sym_DASH_GT] = ACTIONS(4084), - [anon_sym_with] = ACTIONS(4084), - [aux_sym_preproc_if_token3] = ACTIONS(4084), - [aux_sym_preproc_else_token1] = ACTIONS(4084), - [aux_sym_preproc_elif_token1] = ACTIONS(4084), + [anon_sym_SEMI] = ACTIONS(3963), + [anon_sym_LBRACK] = ACTIONS(3963), + [anon_sym_COLON] = ACTIONS(3963), + [anon_sym_COMMA] = ACTIONS(3963), + [anon_sym_RBRACK] = ACTIONS(3963), + [anon_sym_LPAREN] = ACTIONS(3963), + [anon_sym_RPAREN] = ACTIONS(3963), + [anon_sym_LBRACE] = ACTIONS(3963), + [anon_sym_RBRACE] = ACTIONS(3963), + [anon_sym_LT] = ACTIONS(3961), + [anon_sym_GT] = ACTIONS(3961), + [anon_sym_in] = ACTIONS(3961), + [anon_sym_where] = ACTIONS(3963), + [anon_sym_QMARK] = ACTIONS(3961), + [anon_sym_BANG] = ACTIONS(3961), + [anon_sym_PLUS_PLUS] = ACTIONS(3963), + [anon_sym_DASH_DASH] = ACTIONS(3963), + [anon_sym_PLUS] = ACTIONS(3961), + [anon_sym_DASH] = ACTIONS(3961), + [anon_sym_STAR] = ACTIONS(3963), + [anon_sym_SLASH] = ACTIONS(3961), + [anon_sym_PERCENT] = ACTIONS(3963), + [anon_sym_CARET] = ACTIONS(3963), + [anon_sym_PIPE] = ACTIONS(3961), + [anon_sym_AMP] = ACTIONS(3961), + [anon_sym_LT_LT] = ACTIONS(3963), + [anon_sym_GT_GT] = ACTIONS(3961), + [anon_sym_GT_GT_GT] = ACTIONS(3963), + [anon_sym_EQ_EQ] = ACTIONS(3963), + [anon_sym_BANG_EQ] = ACTIONS(3963), + [anon_sym_GT_EQ] = ACTIONS(3963), + [anon_sym_LT_EQ] = ACTIONS(3963), + [anon_sym_DOT] = ACTIONS(3961), + [anon_sym_EQ_GT] = ACTIONS(3963), + [anon_sym_switch] = ACTIONS(3963), + [anon_sym_DOT_DOT] = ACTIONS(3963), + [anon_sym_and] = ACTIONS(3963), + [anon_sym_or] = ACTIONS(3961), + [anon_sym_AMP_AMP] = ACTIONS(3963), + [anon_sym_PIPE_PIPE] = ACTIONS(3963), + [anon_sym_QMARK_QMARK] = ACTIONS(3963), + [anon_sym_from] = ACTIONS(3963), + [anon_sym_into] = ACTIONS(3963), + [anon_sym_join] = ACTIONS(3963), + [anon_sym_on] = ACTIONS(3963), + [anon_sym_equals] = ACTIONS(3963), + [anon_sym_let] = ACTIONS(3963), + [anon_sym_orderby] = ACTIONS(3963), + [anon_sym_group] = ACTIONS(3963), + [anon_sym_by] = ACTIONS(3963), + [anon_sym_select] = ACTIONS(3963), + [anon_sym_as] = ACTIONS(3963), + [anon_sym_is] = ACTIONS(3963), + [anon_sym_DASH_GT] = ACTIONS(3963), + [anon_sym_with] = ACTIONS(3963), + [aux_sym_preproc_if_token3] = ACTIONS(3963), + [aux_sym_preproc_else_token1] = ACTIONS(3963), + [aux_sym_preproc_elif_token1] = ACTIONS(3963), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -464478,6 +464037,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2927] = { + [sym_type_argument_list] = STATE(2965), [sym_preproc_region] = STATE(2927), [sym_preproc_endregion] = STATE(2927), [sym_preproc_line] = STATE(2927), @@ -464487,64 +464047,63 @@ 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), - [anon_sym_SEMI] = ACTIONS(3973), - [anon_sym_LBRACK] = ACTIONS(3973), - [anon_sym_COLON] = ACTIONS(3973), - [anon_sym_COMMA] = ACTIONS(3973), - [anon_sym_RBRACK] = ACTIONS(3973), - [anon_sym_LPAREN] = ACTIONS(3973), - [anon_sym_RPAREN] = ACTIONS(3973), - [anon_sym_LBRACE] = ACTIONS(3973), - [anon_sym_RBRACE] = ACTIONS(3973), - [anon_sym_LT] = ACTIONS(3971), - [anon_sym_GT] = ACTIONS(3971), - [anon_sym_in] = ACTIONS(3971), - [anon_sym_where] = ACTIONS(3973), - [anon_sym_QMARK] = ACTIONS(3971), - [anon_sym_BANG] = ACTIONS(3971), - [anon_sym_PLUS_PLUS] = ACTIONS(3973), - [anon_sym_DASH_DASH] = ACTIONS(3973), - [anon_sym_PLUS] = ACTIONS(3971), - [anon_sym_DASH] = ACTIONS(3971), - [anon_sym_STAR] = ACTIONS(3973), - [anon_sym_SLASH] = ACTIONS(3971), - [anon_sym_PERCENT] = ACTIONS(3973), - [anon_sym_CARET] = ACTIONS(3973), - [anon_sym_PIPE] = ACTIONS(3971), - [anon_sym_AMP] = ACTIONS(3971), - [anon_sym_LT_LT] = ACTIONS(3973), - [anon_sym_GT_GT] = ACTIONS(3971), - [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(3971), - [anon_sym_EQ_GT] = ACTIONS(3973), - [anon_sym_switch] = ACTIONS(3973), - [anon_sym_DOT_DOT] = ACTIONS(3973), - [anon_sym_and] = ACTIONS(3973), - [anon_sym_or] = ACTIONS(3971), - [anon_sym_AMP_AMP] = ACTIONS(3973), - [anon_sym_PIPE_PIPE] = ACTIONS(3973), - [anon_sym_QMARK_QMARK] = ACTIONS(3973), - [anon_sym_from] = ACTIONS(3973), - [anon_sym_into] = ACTIONS(3973), - [anon_sym_join] = ACTIONS(3973), - [anon_sym_on] = ACTIONS(3973), - [anon_sym_equals] = ACTIONS(3973), - [anon_sym_let] = ACTIONS(3973), - [anon_sym_orderby] = ACTIONS(3973), - [anon_sym_group] = ACTIONS(3973), - [anon_sym_by] = ACTIONS(3973), - [anon_sym_select] = ACTIONS(3973), - [anon_sym_as] = ACTIONS(3973), - [anon_sym_is] = ACTIONS(3973), - [anon_sym_DASH_GT] = ACTIONS(3973), - [anon_sym_with] = ACTIONS(3973), - [aux_sym_preproc_if_token3] = ACTIONS(3973), - [aux_sym_preproc_else_token1] = ACTIONS(3973), - [aux_sym_preproc_elif_token1] = ACTIONS(3973), + [anon_sym_SEMI] = ACTIONS(3640), + [anon_sym_LBRACK] = ACTIONS(3640), + [anon_sym_COMMA] = ACTIONS(3640), + [anon_sym_RBRACK] = ACTIONS(3640), + [anon_sym_LPAREN] = ACTIONS(3640), + [anon_sym_RPAREN] = ACTIONS(3640), + [anon_sym_LBRACE] = ACTIONS(3640), + [anon_sym_RBRACE] = ACTIONS(3640), + [anon_sym_LT] = ACTIONS(4869), + [anon_sym_GT] = ACTIONS(3638), + [anon_sym_in] = ACTIONS(3640), + [anon_sym_where] = ACTIONS(3640), + [anon_sym_QMARK] = ACTIONS(3638), + [anon_sym_BANG] = ACTIONS(3638), + [anon_sym_PLUS_PLUS] = ACTIONS(3640), + [anon_sym_DASH_DASH] = ACTIONS(3640), + [anon_sym_PLUS] = ACTIONS(3638), + [anon_sym_DASH] = ACTIONS(3638), + [anon_sym_STAR] = ACTIONS(3640), + [anon_sym_SLASH] = ACTIONS(3638), + [anon_sym_PERCENT] = ACTIONS(3640), + [anon_sym_CARET] = ACTIONS(3640), + [anon_sym_PIPE] = ACTIONS(3638), + [anon_sym_AMP] = ACTIONS(3638), + [anon_sym_LT_LT] = ACTIONS(3640), + [anon_sym_GT_GT] = ACTIONS(3638), + [anon_sym_GT_GT_GT] = ACTIONS(3640), + [anon_sym_EQ_EQ] = ACTIONS(3640), + [anon_sym_BANG_EQ] = ACTIONS(3640), + [anon_sym_GT_EQ] = ACTIONS(3640), + [anon_sym_LT_EQ] = ACTIONS(3640), + [anon_sym_DOT] = ACTIONS(3638), + [anon_sym_EQ_GT] = ACTIONS(3640), + [anon_sym_COLON_COLON] = ACTIONS(4872), + [anon_sym_switch] = ACTIONS(3640), + [anon_sym_DOT_DOT] = ACTIONS(3640), + [anon_sym_and] = ACTIONS(3640), + [anon_sym_or] = ACTIONS(3638), + [anon_sym_AMP_AMP] = ACTIONS(3640), + [anon_sym_PIPE_PIPE] = ACTIONS(3640), + [anon_sym_QMARK_QMARK] = ACTIONS(3640), + [anon_sym_from] = ACTIONS(3640), + [anon_sym_join] = ACTIONS(3640), + [anon_sym_on] = ACTIONS(3640), + [anon_sym_equals] = ACTIONS(3640), + [anon_sym_let] = ACTIONS(3640), + [anon_sym_orderby] = ACTIONS(3640), + [anon_sym_group] = ACTIONS(3640), + [anon_sym_by] = ACTIONS(3640), + [anon_sym_select] = ACTIONS(3640), + [anon_sym_as] = ACTIONS(3640), + [anon_sym_is] = ACTIONS(3640), + [anon_sym_DASH_GT] = ACTIONS(3640), + [anon_sym_with] = ACTIONS(3640), + [aux_sym_preproc_if_token3] = ACTIONS(3640), + [aux_sym_preproc_else_token1] = ACTIONS(3640), + [aux_sym_preproc_elif_token1] = ACTIONS(3640), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -464566,64 +464125,64 @@ 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_SEMI] = ACTIONS(4879), - [anon_sym_LBRACK] = ACTIONS(4879), - [anon_sym_COLON] = ACTIONS(4879), - [anon_sym_COMMA] = ACTIONS(4879), - [anon_sym_RBRACK] = ACTIONS(4879), - [anon_sym_LPAREN] = ACTIONS(4879), - [anon_sym_RPAREN] = ACTIONS(4879), - [anon_sym_RBRACE] = ACTIONS(4879), - [anon_sym_LT] = ACTIONS(4881), - [anon_sym_GT] = ACTIONS(4881), - [anon_sym_in] = ACTIONS(4881), - [anon_sym_where] = ACTIONS(4879), - [anon_sym_QMARK] = ACTIONS(4881), - [anon_sym_BANG] = ACTIONS(4881), - [anon_sym_PLUS_PLUS] = ACTIONS(4879), - [anon_sym_DASH_DASH] = ACTIONS(4879), - [anon_sym_PLUS] = ACTIONS(4881), - [anon_sym_DASH] = ACTIONS(4881), - [anon_sym_STAR] = ACTIONS(4879), - [anon_sym_SLASH] = ACTIONS(4881), - [anon_sym_PERCENT] = ACTIONS(4879), - [anon_sym_CARET] = ACTIONS(4879), - [anon_sym_PIPE] = ACTIONS(4881), - [anon_sym_AMP] = ACTIONS(4881), - [anon_sym_LT_LT] = ACTIONS(4879), - [anon_sym_GT_GT] = ACTIONS(4881), - [anon_sym_GT_GT_GT] = ACTIONS(4879), - [anon_sym_EQ_EQ] = ACTIONS(4879), - [anon_sym_BANG_EQ] = ACTIONS(4879), - [anon_sym_GT_EQ] = ACTIONS(4879), - [anon_sym_LT_EQ] = ACTIONS(4879), - [anon_sym_DOT] = ACTIONS(4881), - [anon_sym_EQ_GT] = ACTIONS(4879), - [anon_sym_switch] = ACTIONS(4879), - [anon_sym_DOT_DOT] = ACTIONS(4879), - [anon_sym_and] = ACTIONS(4879), - [anon_sym_or] = ACTIONS(4881), - [anon_sym_AMP_AMP] = ACTIONS(4879), - [anon_sym_PIPE_PIPE] = ACTIONS(4879), - [anon_sym_QMARK_QMARK] = ACTIONS(4879), - [anon_sym_from] = ACTIONS(4879), - [anon_sym_into] = ACTIONS(4879), - [anon_sym_join] = ACTIONS(4879), - [anon_sym_on] = ACTIONS(4879), - [anon_sym_equals] = ACTIONS(4879), - [anon_sym_let] = ACTIONS(4879), - [anon_sym_orderby] = ACTIONS(4879), - [anon_sym_group] = ACTIONS(4879), - [anon_sym_by] = ACTIONS(4879), - [anon_sym_select] = ACTIONS(4879), - [anon_sym_as] = ACTIONS(4879), - [anon_sym_is] = ACTIONS(4879), - [anon_sym_DASH_GT] = ACTIONS(4879), - [anon_sym_with] = ACTIONS(4879), - [sym_string_literal_encoding] = ACTIONS(4883), - [aux_sym_preproc_if_token3] = ACTIONS(4879), - [aux_sym_preproc_else_token1] = ACTIONS(4879), - [aux_sym_preproc_elif_token1] = ACTIONS(4879), + [anon_sym_SEMI] = ACTIONS(4874), + [anon_sym_LBRACK] = ACTIONS(4874), + [anon_sym_COLON] = ACTIONS(4874), + [anon_sym_COMMA] = ACTIONS(4874), + [anon_sym_RBRACK] = ACTIONS(4874), + [anon_sym_LPAREN] = ACTIONS(4874), + [anon_sym_RPAREN] = ACTIONS(4874), + [anon_sym_RBRACE] = ACTIONS(4874), + [anon_sym_LT] = ACTIONS(4876), + [anon_sym_GT] = ACTIONS(4876), + [anon_sym_in] = ACTIONS(4876), + [anon_sym_where] = ACTIONS(4874), + [anon_sym_QMARK] = ACTIONS(4876), + [anon_sym_BANG] = ACTIONS(4876), + [anon_sym_PLUS_PLUS] = ACTIONS(4874), + [anon_sym_DASH_DASH] = ACTIONS(4874), + [anon_sym_PLUS] = ACTIONS(4876), + [anon_sym_DASH] = ACTIONS(4876), + [anon_sym_STAR] = ACTIONS(4874), + [anon_sym_SLASH] = ACTIONS(4876), + [anon_sym_PERCENT] = ACTIONS(4874), + [anon_sym_CARET] = ACTIONS(4874), + [anon_sym_PIPE] = ACTIONS(4876), + [anon_sym_AMP] = ACTIONS(4876), + [anon_sym_LT_LT] = ACTIONS(4874), + [anon_sym_GT_GT] = ACTIONS(4876), + [anon_sym_GT_GT_GT] = ACTIONS(4874), + [anon_sym_EQ_EQ] = ACTIONS(4874), + [anon_sym_BANG_EQ] = ACTIONS(4874), + [anon_sym_GT_EQ] = ACTIONS(4874), + [anon_sym_LT_EQ] = ACTIONS(4874), + [anon_sym_DOT] = ACTIONS(4876), + [anon_sym_EQ_GT] = ACTIONS(4874), + [anon_sym_switch] = ACTIONS(4874), + [anon_sym_DOT_DOT] = ACTIONS(4874), + [anon_sym_and] = ACTIONS(4874), + [anon_sym_or] = ACTIONS(4876), + [anon_sym_AMP_AMP] = ACTIONS(4874), + [anon_sym_PIPE_PIPE] = ACTIONS(4874), + [anon_sym_QMARK_QMARK] = ACTIONS(4874), + [anon_sym_from] = ACTIONS(4874), + [anon_sym_into] = ACTIONS(4874), + [anon_sym_join] = ACTIONS(4874), + [anon_sym_on] = ACTIONS(4874), + [anon_sym_equals] = ACTIONS(4874), + [anon_sym_let] = ACTIONS(4874), + [anon_sym_orderby] = ACTIONS(4874), + [anon_sym_group] = ACTIONS(4874), + [anon_sym_by] = ACTIONS(4874), + [anon_sym_select] = ACTIONS(4874), + [anon_sym_as] = ACTIONS(4874), + [anon_sym_is] = ACTIONS(4874), + [anon_sym_DASH_GT] = ACTIONS(4874), + [anon_sym_with] = ACTIONS(4874), + [sym_string_literal_encoding] = ACTIONS(4878), + [aux_sym_preproc_if_token3] = ACTIONS(4874), + [aux_sym_preproc_else_token1] = ACTIONS(4874), + [aux_sym_preproc_elif_token1] = ACTIONS(4874), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -464645,64 +464204,64 @@ 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_SEMI] = ACTIONS(3662), - [anon_sym_LBRACK] = ACTIONS(3662), - [anon_sym_COLON] = ACTIONS(3662), - [anon_sym_COMMA] = ACTIONS(3662), - [anon_sym_RBRACK] = ACTIONS(3662), - [anon_sym_LPAREN] = ACTIONS(3662), - [anon_sym_RPAREN] = ACTIONS(3662), - [anon_sym_LBRACE] = ACTIONS(3662), - [anon_sym_RBRACE] = ACTIONS(3662), - [anon_sym_LT] = ACTIONS(3660), - [anon_sym_GT] = ACTIONS(3660), - [anon_sym_in] = ACTIONS(3660), - [anon_sym_where] = ACTIONS(3662), - [anon_sym_QMARK] = ACTIONS(3660), - [anon_sym_BANG] = ACTIONS(3660), - [anon_sym_PLUS_PLUS] = ACTIONS(3662), - [anon_sym_DASH_DASH] = ACTIONS(3662), - [anon_sym_PLUS] = ACTIONS(3660), - [anon_sym_DASH] = ACTIONS(3660), - [anon_sym_STAR] = ACTIONS(3662), - [anon_sym_SLASH] = ACTIONS(3660), - [anon_sym_PERCENT] = ACTIONS(3662), - [anon_sym_CARET] = ACTIONS(3662), - [anon_sym_PIPE] = ACTIONS(3660), - [anon_sym_AMP] = ACTIONS(3660), - [anon_sym_LT_LT] = ACTIONS(3662), - [anon_sym_GT_GT] = ACTIONS(3660), - [anon_sym_GT_GT_GT] = ACTIONS(3662), - [anon_sym_EQ_EQ] = ACTIONS(3662), - [anon_sym_BANG_EQ] = ACTIONS(3662), - [anon_sym_GT_EQ] = ACTIONS(3662), - [anon_sym_LT_EQ] = ACTIONS(3662), - [anon_sym_DOT] = ACTIONS(3660), - [anon_sym_EQ_GT] = ACTIONS(3662), - [anon_sym_switch] = ACTIONS(3662), - [anon_sym_DOT_DOT] = ACTIONS(3662), - [anon_sym_and] = ACTIONS(3662), - [anon_sym_or] = ACTIONS(3660), - [anon_sym_AMP_AMP] = ACTIONS(3662), - [anon_sym_PIPE_PIPE] = ACTIONS(3662), - [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_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(3662), - [anon_sym_with] = ACTIONS(3662), - [aux_sym_preproc_if_token3] = ACTIONS(3662), - [aux_sym_preproc_else_token1] = ACTIONS(3662), - [aux_sym_preproc_elif_token1] = ACTIONS(3662), + [anon_sym_SEMI] = ACTIONS(4880), + [anon_sym_LBRACK] = ACTIONS(4880), + [anon_sym_COLON] = ACTIONS(4880), + [anon_sym_COMMA] = ACTIONS(4880), + [anon_sym_RBRACK] = ACTIONS(4880), + [anon_sym_LPAREN] = ACTIONS(4880), + [anon_sym_RPAREN] = ACTIONS(4880), + [anon_sym_LBRACE] = ACTIONS(4880), + [anon_sym_RBRACE] = ACTIONS(4880), + [anon_sym_LT] = ACTIONS(4882), + [anon_sym_GT] = ACTIONS(4882), + [anon_sym_in] = ACTIONS(4882), + [anon_sym_where] = ACTIONS(4880), + [anon_sym_QMARK] = ACTIONS(4882), + [anon_sym_BANG] = ACTIONS(4882), + [anon_sym_PLUS_PLUS] = ACTIONS(4880), + [anon_sym_DASH_DASH] = ACTIONS(4880), + [anon_sym_PLUS] = ACTIONS(4882), + [anon_sym_DASH] = ACTIONS(4882), + [anon_sym_STAR] = ACTIONS(4880), + [anon_sym_SLASH] = ACTIONS(4882), + [anon_sym_PERCENT] = ACTIONS(4880), + [anon_sym_CARET] = ACTIONS(4880), + [anon_sym_PIPE] = ACTIONS(4882), + [anon_sym_AMP] = ACTIONS(4882), + [anon_sym_LT_LT] = ACTIONS(4880), + [anon_sym_GT_GT] = ACTIONS(4882), + [anon_sym_GT_GT_GT] = ACTIONS(4880), + [anon_sym_EQ_EQ] = ACTIONS(4880), + [anon_sym_BANG_EQ] = ACTIONS(4880), + [anon_sym_GT_EQ] = ACTIONS(4880), + [anon_sym_LT_EQ] = ACTIONS(4880), + [anon_sym_DOT] = ACTIONS(4882), + [anon_sym_EQ_GT] = ACTIONS(4880), + [anon_sym_switch] = ACTIONS(4880), + [anon_sym_DOT_DOT] = ACTIONS(4880), + [anon_sym_and] = ACTIONS(4880), + [anon_sym_or] = ACTIONS(4882), + [anon_sym_AMP_AMP] = ACTIONS(4880), + [anon_sym_PIPE_PIPE] = ACTIONS(4880), + [anon_sym_QMARK_QMARK] = ACTIONS(4880), + [anon_sym_from] = ACTIONS(4880), + [anon_sym_into] = ACTIONS(4880), + [anon_sym_join] = ACTIONS(4880), + [anon_sym_on] = ACTIONS(4880), + [anon_sym_equals] = ACTIONS(4880), + [anon_sym_let] = ACTIONS(4880), + [anon_sym_orderby] = ACTIONS(4880), + [anon_sym_group] = ACTIONS(4880), + [anon_sym_by] = ACTIONS(4880), + [anon_sym_select] = ACTIONS(4880), + [anon_sym_as] = ACTIONS(4880), + [anon_sym_is] = ACTIONS(4880), + [anon_sym_DASH_GT] = ACTIONS(4880), + [anon_sym_with] = ACTIONS(4880), + [aux_sym_preproc_if_token3] = ACTIONS(4880), + [aux_sym_preproc_else_token1] = ACTIONS(4880), + [aux_sym_preproc_elif_token1] = ACTIONS(4880), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -464724,64 +464283,64 @@ 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), - [anon_sym_SEMI] = ACTIONS(3681), - [anon_sym_LBRACK] = ACTIONS(3681), - [anon_sym_COLON] = ACTIONS(3681), - [anon_sym_COMMA] = ACTIONS(3681), - [anon_sym_RBRACK] = ACTIONS(3681), - [anon_sym_LPAREN] = ACTIONS(3681), - [anon_sym_RPAREN] = ACTIONS(3681), - [anon_sym_LBRACE] = ACTIONS(3681), - [anon_sym_RBRACE] = ACTIONS(3681), - [anon_sym_LT] = ACTIONS(3679), - [anon_sym_GT] = ACTIONS(3679), - [anon_sym_in] = ACTIONS(3679), - [anon_sym_where] = ACTIONS(3681), - [anon_sym_QMARK] = ACTIONS(3679), - [anon_sym_BANG] = ACTIONS(3679), - [anon_sym_PLUS_PLUS] = ACTIONS(3681), - [anon_sym_DASH_DASH] = ACTIONS(3681), - [anon_sym_PLUS] = ACTIONS(3679), - [anon_sym_DASH] = ACTIONS(3679), - [anon_sym_STAR] = ACTIONS(3681), - [anon_sym_SLASH] = ACTIONS(3679), - [anon_sym_PERCENT] = ACTIONS(3681), - [anon_sym_CARET] = ACTIONS(3681), - [anon_sym_PIPE] = ACTIONS(3679), - [anon_sym_AMP] = ACTIONS(3679), - [anon_sym_LT_LT] = ACTIONS(3681), - [anon_sym_GT_GT] = ACTIONS(3679), - [anon_sym_GT_GT_GT] = ACTIONS(3681), - [anon_sym_EQ_EQ] = ACTIONS(3681), - [anon_sym_BANG_EQ] = ACTIONS(3681), - [anon_sym_GT_EQ] = ACTIONS(3681), - [anon_sym_LT_EQ] = ACTIONS(3681), - [anon_sym_DOT] = ACTIONS(3679), - [anon_sym_EQ_GT] = ACTIONS(3681), - [anon_sym_switch] = ACTIONS(3681), - [anon_sym_DOT_DOT] = ACTIONS(3681), - [anon_sym_and] = ACTIONS(3681), - [anon_sym_or] = ACTIONS(3679), - [anon_sym_AMP_AMP] = ACTIONS(3681), - [anon_sym_PIPE_PIPE] = ACTIONS(3681), - [anon_sym_QMARK_QMARK] = ACTIONS(3681), - [anon_sym_from] = ACTIONS(3681), - [anon_sym_into] = ACTIONS(3681), - [anon_sym_join] = ACTIONS(3681), - [anon_sym_on] = ACTIONS(3681), - [anon_sym_equals] = ACTIONS(3681), - [anon_sym_let] = ACTIONS(3681), - [anon_sym_orderby] = ACTIONS(3681), - [anon_sym_group] = ACTIONS(3681), - [anon_sym_by] = ACTIONS(3681), - [anon_sym_select] = ACTIONS(3681), - [anon_sym_as] = ACTIONS(3681), - [anon_sym_is] = ACTIONS(3681), - [anon_sym_DASH_GT] = ACTIONS(3681), - [anon_sym_with] = ACTIONS(3681), - [aux_sym_preproc_if_token3] = ACTIONS(3681), - [aux_sym_preproc_else_token1] = ACTIONS(3681), - [aux_sym_preproc_elif_token1] = ACTIONS(3681), + [anon_sym_SEMI] = ACTIONS(3429), + [anon_sym_LBRACK] = ACTIONS(3429), + [anon_sym_COLON] = ACTIONS(3431), + [anon_sym_COMMA] = ACTIONS(3429), + [anon_sym_RBRACK] = ACTIONS(3429), + [anon_sym_LPAREN] = ACTIONS(3429), + [anon_sym_RPAREN] = ACTIONS(3429), + [anon_sym_LBRACE] = ACTIONS(3429), + [anon_sym_RBRACE] = ACTIONS(3429), + [anon_sym_LT] = ACTIONS(3431), + [anon_sym_GT] = ACTIONS(3431), + [anon_sym_in] = ACTIONS(3429), + [anon_sym_where] = ACTIONS(3429), + [anon_sym_QMARK] = ACTIONS(3431), + [anon_sym_BANG] = ACTIONS(3431), + [anon_sym_PLUS_PLUS] = ACTIONS(3429), + [anon_sym_DASH_DASH] = ACTIONS(3429), + [anon_sym_PLUS] = ACTIONS(3431), + [anon_sym_DASH] = ACTIONS(3431), + [anon_sym_STAR] = ACTIONS(3429), + [anon_sym_SLASH] = ACTIONS(3431), + [anon_sym_PERCENT] = ACTIONS(3429), + [anon_sym_CARET] = ACTIONS(3429), + [anon_sym_PIPE] = ACTIONS(3431), + [anon_sym_AMP] = ACTIONS(3431), + [anon_sym_LT_LT] = ACTIONS(3429), + [anon_sym_GT_GT] = ACTIONS(3431), + [anon_sym_GT_GT_GT] = ACTIONS(3429), + [anon_sym_EQ_EQ] = ACTIONS(3429), + [anon_sym_BANG_EQ] = ACTIONS(3429), + [anon_sym_GT_EQ] = ACTIONS(3429), + [anon_sym_LT_EQ] = ACTIONS(3429), + [anon_sym_DOT] = ACTIONS(3431), + [anon_sym_EQ_GT] = ACTIONS(3429), + [anon_sym_COLON_COLON] = ACTIONS(3429), + [anon_sym_switch] = ACTIONS(3429), + [anon_sym_DOT_DOT] = ACTIONS(3429), + [anon_sym_and] = ACTIONS(3429), + [anon_sym_or] = ACTIONS(3431), + [anon_sym_AMP_AMP] = ACTIONS(3429), + [anon_sym_PIPE_PIPE] = ACTIONS(3429), + [anon_sym_QMARK_QMARK] = ACTIONS(3429), + [anon_sym_from] = ACTIONS(3429), + [anon_sym_join] = ACTIONS(3429), + [anon_sym_on] = ACTIONS(3429), + [anon_sym_equals] = ACTIONS(3429), + [anon_sym_let] = ACTIONS(3429), + [anon_sym_orderby] = ACTIONS(3429), + [anon_sym_group] = ACTIONS(3429), + [anon_sym_by] = ACTIONS(3429), + [anon_sym_select] = ACTIONS(3429), + [anon_sym_as] = ACTIONS(3429), + [anon_sym_is] = ACTIONS(3429), + [anon_sym_DASH_GT] = ACTIONS(3429), + [anon_sym_with] = 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), @@ -464803,64 +464362,64 @@ 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), - [anon_sym_SEMI] = ACTIONS(3677), - [anon_sym_LBRACK] = ACTIONS(3677), - [anon_sym_COLON] = ACTIONS(3677), - [anon_sym_COMMA] = ACTIONS(3677), - [anon_sym_RBRACK] = ACTIONS(3677), - [anon_sym_LPAREN] = ACTIONS(3677), - [anon_sym_RPAREN] = ACTIONS(3677), - [anon_sym_LBRACE] = ACTIONS(3677), - [anon_sym_RBRACE] = ACTIONS(3677), - [anon_sym_LT] = ACTIONS(3675), - [anon_sym_GT] = ACTIONS(3675), - [anon_sym_in] = ACTIONS(3675), - [anon_sym_where] = ACTIONS(3677), - [anon_sym_QMARK] = ACTIONS(3675), - [anon_sym_BANG] = ACTIONS(3675), - [anon_sym_PLUS_PLUS] = ACTIONS(3677), - [anon_sym_DASH_DASH] = ACTIONS(3677), - [anon_sym_PLUS] = ACTIONS(3675), - [anon_sym_DASH] = ACTIONS(3675), - [anon_sym_STAR] = ACTIONS(3677), - [anon_sym_SLASH] = ACTIONS(3675), - [anon_sym_PERCENT] = ACTIONS(3677), - [anon_sym_CARET] = ACTIONS(3677), - [anon_sym_PIPE] = ACTIONS(3675), - [anon_sym_AMP] = ACTIONS(3675), - [anon_sym_LT_LT] = ACTIONS(3677), - [anon_sym_GT_GT] = ACTIONS(3675), - [anon_sym_GT_GT_GT] = ACTIONS(3677), - [anon_sym_EQ_EQ] = ACTIONS(3677), - [anon_sym_BANG_EQ] = ACTIONS(3677), - [anon_sym_GT_EQ] = ACTIONS(3677), - [anon_sym_LT_EQ] = ACTIONS(3677), - [anon_sym_DOT] = ACTIONS(3675), - [anon_sym_EQ_GT] = ACTIONS(3677), - [anon_sym_switch] = ACTIONS(3677), - [anon_sym_DOT_DOT] = ACTIONS(3677), - [anon_sym_and] = ACTIONS(3677), - [anon_sym_or] = ACTIONS(3675), - [anon_sym_AMP_AMP] = ACTIONS(3677), - [anon_sym_PIPE_PIPE] = ACTIONS(3677), - [anon_sym_QMARK_QMARK] = ACTIONS(3677), - [anon_sym_from] = ACTIONS(3677), - [anon_sym_into] = ACTIONS(3677), - [anon_sym_join] = ACTIONS(3677), - [anon_sym_on] = ACTIONS(3677), - [anon_sym_equals] = ACTIONS(3677), - [anon_sym_let] = ACTIONS(3677), - [anon_sym_orderby] = ACTIONS(3677), - [anon_sym_group] = ACTIONS(3677), - [anon_sym_by] = ACTIONS(3677), - [anon_sym_select] = ACTIONS(3677), - [anon_sym_as] = ACTIONS(3677), - [anon_sym_is] = ACTIONS(3677), - [anon_sym_DASH_GT] = ACTIONS(3677), - [anon_sym_with] = ACTIONS(3677), - [aux_sym_preproc_if_token3] = ACTIONS(3677), - [aux_sym_preproc_else_token1] = ACTIONS(3677), - [aux_sym_preproc_elif_token1] = ACTIONS(3677), + [anon_sym_SEMI] = ACTIONS(3998), + [anon_sym_LBRACK] = ACTIONS(3998), + [anon_sym_COLON] = ACTIONS(3998), + [anon_sym_COMMA] = ACTIONS(3998), + [anon_sym_RBRACK] = ACTIONS(3998), + [anon_sym_LPAREN] = ACTIONS(3998), + [anon_sym_RPAREN] = ACTIONS(3998), + [anon_sym_LBRACE] = ACTIONS(3998), + [anon_sym_RBRACE] = ACTIONS(3998), + [anon_sym_LT] = ACTIONS(3996), + [anon_sym_GT] = ACTIONS(3996), + [anon_sym_in] = ACTIONS(3996), + [anon_sym_where] = ACTIONS(3998), + [anon_sym_QMARK] = ACTIONS(3996), + [anon_sym_BANG] = ACTIONS(3996), + [anon_sym_PLUS_PLUS] = ACTIONS(3998), + [anon_sym_DASH_DASH] = ACTIONS(3998), + [anon_sym_PLUS] = ACTIONS(3996), + [anon_sym_DASH] = ACTIONS(3996), + [anon_sym_STAR] = ACTIONS(3998), + [anon_sym_SLASH] = ACTIONS(3996), + [anon_sym_PERCENT] = ACTIONS(3998), + [anon_sym_CARET] = ACTIONS(3998), + [anon_sym_PIPE] = ACTIONS(3996), + [anon_sym_AMP] = ACTIONS(3996), + [anon_sym_LT_LT] = ACTIONS(3998), + [anon_sym_GT_GT] = ACTIONS(3996), + [anon_sym_GT_GT_GT] = ACTIONS(3998), + [anon_sym_EQ_EQ] = ACTIONS(3998), + [anon_sym_BANG_EQ] = ACTIONS(3998), + [anon_sym_GT_EQ] = ACTIONS(3998), + [anon_sym_LT_EQ] = ACTIONS(3998), + [anon_sym_DOT] = ACTIONS(3996), + [anon_sym_EQ_GT] = ACTIONS(3998), + [anon_sym_switch] = ACTIONS(3998), + [anon_sym_DOT_DOT] = ACTIONS(3998), + [anon_sym_and] = ACTIONS(3998), + [anon_sym_or] = ACTIONS(3996), + [anon_sym_AMP_AMP] = ACTIONS(3998), + [anon_sym_PIPE_PIPE] = ACTIONS(3998), + [anon_sym_QMARK_QMARK] = ACTIONS(3998), + [anon_sym_from] = ACTIONS(3998), + [anon_sym_into] = ACTIONS(3998), + [anon_sym_join] = ACTIONS(3998), + [anon_sym_on] = ACTIONS(3998), + [anon_sym_equals] = ACTIONS(3998), + [anon_sym_let] = ACTIONS(3998), + [anon_sym_orderby] = ACTIONS(3998), + [anon_sym_group] = ACTIONS(3998), + [anon_sym_by] = ACTIONS(3998), + [anon_sym_select] = ACTIONS(3998), + [anon_sym_as] = ACTIONS(3998), + [anon_sym_is] = ACTIONS(3998), + [anon_sym_DASH_GT] = ACTIONS(3998), + [anon_sym_with] = ACTIONS(3998), + [aux_sym_preproc_if_token3] = ACTIONS(3998), + [aux_sym_preproc_else_token1] = ACTIONS(3998), + [aux_sym_preproc_elif_token1] = ACTIONS(3998), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -464873,6 +464432,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2932] = { + [sym_type_argument_list] = STATE(2965), [sym_preproc_region] = STATE(2932), [sym_preproc_endregion] = STATE(2932), [sym_preproc_line] = STATE(2932), @@ -464882,64 +464442,63 @@ 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), - [anon_sym_SEMI] = ACTIONS(3673), - [anon_sym_LBRACK] = ACTIONS(3673), - [anon_sym_COLON] = ACTIONS(3673), - [anon_sym_COMMA] = ACTIONS(3673), - [anon_sym_RBRACK] = ACTIONS(3673), - [anon_sym_LPAREN] = ACTIONS(3673), - [anon_sym_RPAREN] = ACTIONS(3673), - [anon_sym_LBRACE] = ACTIONS(3673), - [anon_sym_RBRACE] = ACTIONS(3673), - [anon_sym_LT] = ACTIONS(3671), - [anon_sym_GT] = ACTIONS(3671), - [anon_sym_in] = ACTIONS(3671), - [anon_sym_where] = ACTIONS(3673), - [anon_sym_QMARK] = ACTIONS(3671), - [anon_sym_BANG] = ACTIONS(3671), - [anon_sym_PLUS_PLUS] = ACTIONS(3673), - [anon_sym_DASH_DASH] = ACTIONS(3673), - [anon_sym_PLUS] = ACTIONS(3671), - [anon_sym_DASH] = ACTIONS(3671), - [anon_sym_STAR] = ACTIONS(3673), - [anon_sym_SLASH] = ACTIONS(3671), - [anon_sym_PERCENT] = ACTIONS(3673), - [anon_sym_CARET] = ACTIONS(3673), - [anon_sym_PIPE] = ACTIONS(3671), - [anon_sym_AMP] = ACTIONS(3671), - [anon_sym_LT_LT] = ACTIONS(3673), - [anon_sym_GT_GT] = ACTIONS(3671), - [anon_sym_GT_GT_GT] = ACTIONS(3673), - [anon_sym_EQ_EQ] = ACTIONS(3673), - [anon_sym_BANG_EQ] = ACTIONS(3673), - [anon_sym_GT_EQ] = ACTIONS(3673), - [anon_sym_LT_EQ] = ACTIONS(3673), - [anon_sym_DOT] = ACTIONS(3671), - [anon_sym_EQ_GT] = ACTIONS(3673), - [anon_sym_switch] = ACTIONS(3673), - [anon_sym_DOT_DOT] = ACTIONS(3673), - [anon_sym_and] = ACTIONS(3673), - [anon_sym_or] = ACTIONS(3671), - [anon_sym_AMP_AMP] = ACTIONS(3673), - [anon_sym_PIPE_PIPE] = ACTIONS(3673), - [anon_sym_QMARK_QMARK] = ACTIONS(3673), - [anon_sym_from] = ACTIONS(3673), - [anon_sym_into] = ACTIONS(3673), - [anon_sym_join] = ACTIONS(3673), - [anon_sym_on] = ACTIONS(3673), - [anon_sym_equals] = ACTIONS(3673), - [anon_sym_let] = ACTIONS(3673), - [anon_sym_orderby] = ACTIONS(3673), - [anon_sym_group] = ACTIONS(3673), - [anon_sym_by] = ACTIONS(3673), - [anon_sym_select] = ACTIONS(3673), - [anon_sym_as] = ACTIONS(3673), - [anon_sym_is] = ACTIONS(3673), - [anon_sym_DASH_GT] = ACTIONS(3673), - [anon_sym_with] = ACTIONS(3673), - [aux_sym_preproc_if_token3] = ACTIONS(3673), - [aux_sym_preproc_else_token1] = ACTIONS(3673), - [aux_sym_preproc_elif_token1] = ACTIONS(3673), + [anon_sym_SEMI] = ACTIONS(3640), + [anon_sym_LBRACK] = ACTIONS(3640), + [anon_sym_COLON] = ACTIONS(3640), + [anon_sym_COMMA] = ACTIONS(3640), + [anon_sym_RBRACK] = ACTIONS(3640), + [anon_sym_LPAREN] = ACTIONS(3640), + [anon_sym_RPAREN] = ACTIONS(3640), + [anon_sym_LBRACE] = ACTIONS(3640), + [anon_sym_RBRACE] = ACTIONS(3640), + [anon_sym_LT] = ACTIONS(4869), + [anon_sym_GT] = ACTIONS(3638), + [anon_sym_in] = ACTIONS(3640), + [anon_sym_where] = ACTIONS(3640), + [anon_sym_QMARK] = ACTIONS(3638), + [anon_sym_BANG] = ACTIONS(3638), + [anon_sym_PLUS_PLUS] = ACTIONS(3640), + [anon_sym_DASH_DASH] = ACTIONS(3640), + [anon_sym_PLUS] = ACTIONS(3638), + [anon_sym_DASH] = ACTIONS(3638), + [anon_sym_STAR] = ACTIONS(3640), + [anon_sym_SLASH] = ACTIONS(3638), + [anon_sym_PERCENT] = ACTIONS(3640), + [anon_sym_CARET] = ACTIONS(3640), + [anon_sym_PIPE] = ACTIONS(3638), + [anon_sym_AMP] = ACTIONS(3638), + [anon_sym_LT_LT] = ACTIONS(3640), + [anon_sym_GT_GT] = ACTIONS(3638), + [anon_sym_GT_GT_GT] = ACTIONS(3640), + [anon_sym_EQ_EQ] = ACTIONS(3640), + [anon_sym_BANG_EQ] = ACTIONS(3640), + [anon_sym_GT_EQ] = ACTIONS(3640), + [anon_sym_LT_EQ] = ACTIONS(3640), + [anon_sym_DOT] = ACTIONS(3638), + [anon_sym_EQ_GT] = ACTIONS(3640), + [anon_sym_switch] = ACTIONS(3640), + [anon_sym_DOT_DOT] = ACTIONS(3640), + [anon_sym_and] = ACTIONS(3640), + [anon_sym_or] = ACTIONS(3638), + [anon_sym_AMP_AMP] = ACTIONS(3640), + [anon_sym_PIPE_PIPE] = ACTIONS(3640), + [anon_sym_QMARK_QMARK] = ACTIONS(3640), + [anon_sym_from] = ACTIONS(3640), + [anon_sym_join] = ACTIONS(3640), + [anon_sym_on] = ACTIONS(3640), + [anon_sym_equals] = ACTIONS(3640), + [anon_sym_let] = ACTIONS(3640), + [anon_sym_orderby] = ACTIONS(3640), + [anon_sym_group] = ACTIONS(3640), + [anon_sym_by] = ACTIONS(3640), + [anon_sym_select] = ACTIONS(3640), + [anon_sym_as] = ACTIONS(3640), + [anon_sym_is] = ACTIONS(3640), + [anon_sym_DASH_GT] = ACTIONS(3640), + [anon_sym_with] = ACTIONS(3640), + [aux_sym_preproc_if_token3] = ACTIONS(3640), + [aux_sym_preproc_else_token1] = ACTIONS(3640), + [aux_sym_preproc_elif_token1] = ACTIONS(3640), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -464952,7 +464511,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2933] = { - [sym_initializer_expression] = STATE(3075), [sym_preproc_region] = STATE(2933), [sym_preproc_endregion] = STATE(2933), [sym_preproc_line] = STATE(2933), @@ -464962,63 +464520,64 @@ 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), - [anon_sym_SEMI] = ACTIONS(4866), - [anon_sym_LBRACK] = ACTIONS(4866), - [anon_sym_COLON] = ACTIONS(4866), - [anon_sym_COMMA] = ACTIONS(4866), - [anon_sym_RBRACK] = ACTIONS(4866), - [anon_sym_LPAREN] = ACTIONS(4866), - [anon_sym_RPAREN] = ACTIONS(4866), - [anon_sym_LBRACE] = ACTIONS(1487), - [anon_sym_RBRACE] = ACTIONS(4866), - [anon_sym_LT] = ACTIONS(4868), - [anon_sym_GT] = ACTIONS(4868), - [anon_sym_in] = ACTIONS(4866), - [anon_sym_where] = ACTIONS(4866), - [anon_sym_QMARK] = ACTIONS(4868), - [anon_sym_BANG] = ACTIONS(4868), - [anon_sym_PLUS_PLUS] = ACTIONS(4866), - [anon_sym_DASH_DASH] = ACTIONS(4866), - [anon_sym_PLUS] = ACTIONS(4868), - [anon_sym_DASH] = ACTIONS(4868), - [anon_sym_STAR] = ACTIONS(4866), - [anon_sym_SLASH] = ACTIONS(4868), - [anon_sym_PERCENT] = ACTIONS(4866), - [anon_sym_CARET] = ACTIONS(4866), - [anon_sym_PIPE] = ACTIONS(4868), - [anon_sym_AMP] = ACTIONS(4868), - [anon_sym_LT_LT] = ACTIONS(4866), - [anon_sym_GT_GT] = ACTIONS(4868), - [anon_sym_GT_GT_GT] = ACTIONS(4866), - [anon_sym_EQ_EQ] = ACTIONS(4866), - [anon_sym_BANG_EQ] = ACTIONS(4866), - [anon_sym_GT_EQ] = ACTIONS(4866), - [anon_sym_LT_EQ] = ACTIONS(4866), - [anon_sym_DOT] = ACTIONS(4868), - [anon_sym_EQ_GT] = ACTIONS(4866), - [anon_sym_switch] = ACTIONS(4866), - [anon_sym_DOT_DOT] = ACTIONS(4866), - [anon_sym_and] = ACTIONS(4866), - [anon_sym_or] = ACTIONS(4868), - [anon_sym_AMP_AMP] = ACTIONS(4866), - [anon_sym_PIPE_PIPE] = ACTIONS(4866), - [anon_sym_QMARK_QMARK] = ACTIONS(4866), - [anon_sym_from] = ACTIONS(4866), - [anon_sym_join] = ACTIONS(4866), - [anon_sym_on] = ACTIONS(4866), - [anon_sym_equals] = ACTIONS(4866), - [anon_sym_let] = ACTIONS(4866), - [anon_sym_orderby] = ACTIONS(4866), - [anon_sym_group] = ACTIONS(4866), - [anon_sym_by] = ACTIONS(4866), - [anon_sym_select] = ACTIONS(4866), - [anon_sym_as] = ACTIONS(4866), - [anon_sym_is] = ACTIONS(4866), - [anon_sym_DASH_GT] = ACTIONS(4866), - [anon_sym_with] = ACTIONS(4866), - [aux_sym_preproc_if_token3] = ACTIONS(4866), - [aux_sym_preproc_else_token1] = ACTIONS(4866), - [aux_sym_preproc_elif_token1] = ACTIONS(4866), + [anon_sym_SEMI] = ACTIONS(3644), + [anon_sym_LBRACK] = ACTIONS(3644), + [anon_sym_COLON] = ACTIONS(3644), + [anon_sym_COMMA] = ACTIONS(3644), + [anon_sym_RBRACK] = ACTIONS(3644), + [anon_sym_LPAREN] = ACTIONS(3644), + [anon_sym_RPAREN] = ACTIONS(3644), + [anon_sym_LBRACE] = ACTIONS(3644), + [anon_sym_RBRACE] = ACTIONS(3644), + [anon_sym_LT] = ACTIONS(3642), + [anon_sym_GT] = ACTIONS(3642), + [anon_sym_in] = ACTIONS(3642), + [anon_sym_where] = ACTIONS(3644), + [anon_sym_QMARK] = ACTIONS(3642), + [anon_sym_BANG] = ACTIONS(3642), + [anon_sym_PLUS_PLUS] = ACTIONS(3644), + [anon_sym_DASH_DASH] = ACTIONS(3644), + [anon_sym_PLUS] = ACTIONS(3642), + [anon_sym_DASH] = ACTIONS(3642), + [anon_sym_STAR] = ACTIONS(3644), + [anon_sym_SLASH] = ACTIONS(3642), + [anon_sym_PERCENT] = ACTIONS(3644), + [anon_sym_CARET] = ACTIONS(3644), + [anon_sym_PIPE] = ACTIONS(3642), + [anon_sym_AMP] = ACTIONS(3642), + [anon_sym_LT_LT] = ACTIONS(3644), + [anon_sym_GT_GT] = ACTIONS(3642), + [anon_sym_GT_GT_GT] = ACTIONS(3644), + [anon_sym_EQ_EQ] = ACTIONS(3644), + [anon_sym_BANG_EQ] = ACTIONS(3644), + [anon_sym_GT_EQ] = ACTIONS(3644), + [anon_sym_LT_EQ] = ACTIONS(3644), + [anon_sym_DOT] = ACTIONS(3642), + [anon_sym_EQ_GT] = ACTIONS(3644), + [anon_sym_switch] = ACTIONS(3644), + [anon_sym_DOT_DOT] = ACTIONS(3644), + [anon_sym_and] = ACTIONS(3644), + [anon_sym_or] = ACTIONS(3642), + [anon_sym_AMP_AMP] = ACTIONS(3644), + [anon_sym_PIPE_PIPE] = ACTIONS(3644), + [anon_sym_QMARK_QMARK] = ACTIONS(3644), + [anon_sym_from] = ACTIONS(3644), + [anon_sym_into] = ACTIONS(3644), + [anon_sym_join] = ACTIONS(3644), + [anon_sym_on] = ACTIONS(3644), + [anon_sym_equals] = ACTIONS(3644), + [anon_sym_let] = ACTIONS(3644), + [anon_sym_orderby] = ACTIONS(3644), + [anon_sym_group] = ACTIONS(3644), + [anon_sym_by] = ACTIONS(3644), + [anon_sym_select] = ACTIONS(3644), + [anon_sym_as] = ACTIONS(3644), + [anon_sym_is] = ACTIONS(3644), + [anon_sym_DASH_GT] = ACTIONS(3644), + [anon_sym_with] = ACTIONS(3644), + [aux_sym_preproc_if_token3] = ACTIONS(3644), + [aux_sym_preproc_else_token1] = ACTIONS(3644), + [aux_sym_preproc_elif_token1] = ACTIONS(3644), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -465040,64 +464599,64 @@ 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), - [sym__identifier_token] = ACTIONS(4699), - [anon_sym_extern] = ACTIONS(4699), - [anon_sym_alias] = ACTIONS(4699), - [anon_sym_global] = ACTIONS(4699), - [anon_sym_unsafe] = ACTIONS(4699), - [anon_sym_static] = ACTIONS(4699), - [anon_sym_LBRACK] = ACTIONS(4701), - [anon_sym_LPAREN] = ACTIONS(4701), - [anon_sym_event] = ACTIONS(4699), - [anon_sym_class] = ACTIONS(4699), - [anon_sym_ref] = ACTIONS(4699), - [anon_sym_struct] = ACTIONS(4699), - [anon_sym_enum] = ACTIONS(4699), - [anon_sym_interface] = ACTIONS(4699), - [anon_sym_delegate] = ACTIONS(4699), - [anon_sym_record] = ACTIONS(4699), - [anon_sym_abstract] = ACTIONS(4699), - [anon_sym_async] = ACTIONS(4699), - [anon_sym_const] = ACTIONS(4699), - [anon_sym_file] = ACTIONS(4699), - [anon_sym_fixed] = ACTIONS(4699), - [anon_sym_internal] = ACTIONS(4699), - [anon_sym_new] = ACTIONS(4699), - [anon_sym_override] = ACTIONS(4699), - [anon_sym_partial] = ACTIONS(4699), - [anon_sym_private] = ACTIONS(4699), - [anon_sym_protected] = ACTIONS(4699), - [anon_sym_public] = ACTIONS(4699), - [anon_sym_readonly] = ACTIONS(4699), - [anon_sym_required] = ACTIONS(4699), - [anon_sym_sealed] = ACTIONS(4699), - [anon_sym_virtual] = ACTIONS(4699), - [anon_sym_volatile] = ACTIONS(4699), - [anon_sym_where] = ACTIONS(4699), - [anon_sym_notnull] = ACTIONS(4699), - [anon_sym_unmanaged] = ACTIONS(4699), - [anon_sym_TILDE] = ACTIONS(4701), - [anon_sym_implicit] = ACTIONS(4699), - [anon_sym_explicit] = ACTIONS(4699), - [anon_sym_scoped] = ACTIONS(4699), - [anon_sym_var] = ACTIONS(4699), - [sym_predefined_type] = ACTIONS(4699), - [anon_sym_yield] = ACTIONS(4699), - [anon_sym_when] = ACTIONS(4699), - [anon_sym_from] = ACTIONS(4699), - [anon_sym_into] = ACTIONS(4699), - [anon_sym_join] = ACTIONS(4699), - [anon_sym_on] = ACTIONS(4699), - [anon_sym_equals] = ACTIONS(4699), - [anon_sym_let] = ACTIONS(4699), - [anon_sym_orderby] = ACTIONS(4699), - [anon_sym_ascending] = ACTIONS(4699), - [anon_sym_descending] = ACTIONS(4699), - [anon_sym_group] = ACTIONS(4699), - [anon_sym_by] = ACTIONS(4699), - [anon_sym_select] = ACTIONS(4699), - [aux_sym_preproc_if_token1] = ACTIONS(4701), - [aux_sym_preproc_if_token3] = ACTIONS(4885), + [anon_sym_SEMI] = ACTIONS(3963), + [anon_sym_LBRACK] = ACTIONS(4033), + [anon_sym_COLON] = ACTIONS(3963), + [anon_sym_COMMA] = ACTIONS(3963), + [anon_sym_RBRACK] = ACTIONS(3963), + [anon_sym_LPAREN] = ACTIONS(3963), + [anon_sym_RPAREN] = ACTIONS(3963), + [anon_sym_LBRACE] = ACTIONS(3963), + [anon_sym_RBRACE] = ACTIONS(3963), + [anon_sym_LT] = ACTIONS(3961), + [anon_sym_GT] = ACTIONS(3961), + [anon_sym_in] = ACTIONS(3961), + [anon_sym_where] = ACTIONS(3963), + [anon_sym_QMARK] = ACTIONS(4884), + [anon_sym_BANG] = ACTIONS(3961), + [anon_sym_PLUS_PLUS] = ACTIONS(3963), + [anon_sym_DASH_DASH] = ACTIONS(3963), + [anon_sym_PLUS] = ACTIONS(3961), + [anon_sym_DASH] = ACTIONS(3961), + [anon_sym_STAR] = ACTIONS(3963), + [anon_sym_SLASH] = ACTIONS(3961), + [anon_sym_PERCENT] = ACTIONS(3963), + [anon_sym_CARET] = ACTIONS(3963), + [anon_sym_PIPE] = ACTIONS(3961), + [anon_sym_AMP] = ACTIONS(3961), + [anon_sym_LT_LT] = ACTIONS(3963), + [anon_sym_GT_GT] = ACTIONS(3961), + [anon_sym_GT_GT_GT] = ACTIONS(3963), + [anon_sym_EQ_EQ] = ACTIONS(3963), + [anon_sym_BANG_EQ] = ACTIONS(3963), + [anon_sym_GT_EQ] = ACTIONS(3963), + [anon_sym_LT_EQ] = ACTIONS(3963), + [anon_sym_DOT] = ACTIONS(3961), + [anon_sym_EQ_GT] = ACTIONS(3963), + [anon_sym_switch] = ACTIONS(3963), + [anon_sym_DOT_DOT] = ACTIONS(3963), + [anon_sym_and] = ACTIONS(3963), + [anon_sym_or] = ACTIONS(3961), + [anon_sym_AMP_AMP] = ACTIONS(3963), + [anon_sym_PIPE_PIPE] = ACTIONS(3963), + [anon_sym_QMARK_QMARK] = ACTIONS(3963), + [anon_sym_from] = ACTIONS(3963), + [anon_sym_into] = ACTIONS(3963), + [anon_sym_join] = ACTIONS(3963), + [anon_sym_on] = ACTIONS(3963), + [anon_sym_equals] = ACTIONS(3963), + [anon_sym_let] = ACTIONS(3963), + [anon_sym_orderby] = ACTIONS(3963), + [anon_sym_group] = ACTIONS(3963), + [anon_sym_by] = ACTIONS(3963), + [anon_sym_select] = ACTIONS(3963), + [anon_sym_as] = ACTIONS(3963), + [anon_sym_is] = ACTIONS(3963), + [anon_sym_DASH_GT] = ACTIONS(3963), + [anon_sym_with] = ACTIONS(3963), + [aux_sym_preproc_if_token3] = ACTIONS(3963), + [aux_sym_preproc_else_token1] = ACTIONS(3963), + [aux_sym_preproc_elif_token1] = ACTIONS(3963), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -465119,64 +464678,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_SEMI] = ACTIONS(4018), - [anon_sym_LBRACK] = ACTIONS(4018), - [anon_sym_COLON] = ACTIONS(4018), - [anon_sym_COMMA] = ACTIONS(4018), - [anon_sym_RBRACK] = ACTIONS(4018), - [anon_sym_LPAREN] = ACTIONS(4018), - [anon_sym_RPAREN] = ACTIONS(4018), - [anon_sym_LBRACE] = ACTIONS(4018), - [anon_sym_RBRACE] = ACTIONS(4018), - [anon_sym_LT] = ACTIONS(4016), - [anon_sym_GT] = ACTIONS(4016), - [anon_sym_in] = ACTIONS(4016), - [anon_sym_where] = ACTIONS(4018), - [anon_sym_QMARK] = ACTIONS(4016), - [anon_sym_BANG] = ACTIONS(4016), - [anon_sym_PLUS_PLUS] = ACTIONS(4018), - [anon_sym_DASH_DASH] = ACTIONS(4018), - [anon_sym_PLUS] = ACTIONS(4016), - [anon_sym_DASH] = ACTIONS(4016), - [anon_sym_STAR] = ACTIONS(4018), - [anon_sym_SLASH] = ACTIONS(4016), - [anon_sym_PERCENT] = ACTIONS(4018), - [anon_sym_CARET] = ACTIONS(4018), - [anon_sym_PIPE] = ACTIONS(4016), - [anon_sym_AMP] = ACTIONS(4016), - [anon_sym_LT_LT] = ACTIONS(4018), - [anon_sym_GT_GT] = ACTIONS(4016), - [anon_sym_GT_GT_GT] = ACTIONS(4018), - [anon_sym_EQ_EQ] = ACTIONS(4018), - [anon_sym_BANG_EQ] = ACTIONS(4018), - [anon_sym_GT_EQ] = ACTIONS(4018), - [anon_sym_LT_EQ] = ACTIONS(4018), - [anon_sym_DOT] = ACTIONS(4016), - [anon_sym_EQ_GT] = ACTIONS(4018), - [anon_sym_switch] = ACTIONS(4018), - [anon_sym_DOT_DOT] = ACTIONS(4018), - [anon_sym_and] = ACTIONS(4018), - [anon_sym_or] = ACTIONS(4016), - [anon_sym_AMP_AMP] = ACTIONS(4018), - [anon_sym_PIPE_PIPE] = ACTIONS(4018), - [anon_sym_QMARK_QMARK] = ACTIONS(4018), - [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_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(4018), - [anon_sym_with] = ACTIONS(4018), - [aux_sym_preproc_if_token3] = ACTIONS(4018), - [aux_sym_preproc_else_token1] = ACTIONS(4018), - [aux_sym_preproc_elif_token1] = ACTIONS(4018), + [anon_sym_SEMI] = ACTIONS(3665), + [anon_sym_LBRACK] = ACTIONS(3665), + [anon_sym_COLON] = ACTIONS(3665), + [anon_sym_COMMA] = ACTIONS(3665), + [anon_sym_RBRACK] = ACTIONS(3665), + [anon_sym_LPAREN] = ACTIONS(3665), + [anon_sym_RPAREN] = ACTIONS(3665), + [anon_sym_LBRACE] = ACTIONS(3665), + [anon_sym_RBRACE] = ACTIONS(3665), + [anon_sym_LT] = ACTIONS(3663), + [anon_sym_GT] = ACTIONS(3663), + [anon_sym_in] = ACTIONS(3663), + [anon_sym_where] = ACTIONS(3665), + [anon_sym_QMARK] = ACTIONS(3663), + [anon_sym_BANG] = ACTIONS(3663), + [anon_sym_PLUS_PLUS] = ACTIONS(3665), + [anon_sym_DASH_DASH] = ACTIONS(3665), + [anon_sym_PLUS] = ACTIONS(3663), + [anon_sym_DASH] = ACTIONS(3663), + [anon_sym_STAR] = ACTIONS(3665), + [anon_sym_SLASH] = ACTIONS(3663), + [anon_sym_PERCENT] = ACTIONS(3665), + [anon_sym_CARET] = ACTIONS(3665), + [anon_sym_PIPE] = ACTIONS(3663), + [anon_sym_AMP] = ACTIONS(3663), + [anon_sym_LT_LT] = ACTIONS(3665), + [anon_sym_GT_GT] = ACTIONS(3663), + [anon_sym_GT_GT_GT] = ACTIONS(3665), + [anon_sym_EQ_EQ] = ACTIONS(3665), + [anon_sym_BANG_EQ] = ACTIONS(3665), + [anon_sym_GT_EQ] = ACTIONS(3665), + [anon_sym_LT_EQ] = ACTIONS(3665), + [anon_sym_DOT] = ACTIONS(3663), + [anon_sym_EQ_GT] = ACTIONS(3665), + [anon_sym_switch] = ACTIONS(3665), + [anon_sym_DOT_DOT] = ACTIONS(3665), + [anon_sym_and] = ACTIONS(3665), + [anon_sym_or] = ACTIONS(3663), + [anon_sym_AMP_AMP] = ACTIONS(3665), + [anon_sym_PIPE_PIPE] = ACTIONS(3665), + [anon_sym_QMARK_QMARK] = ACTIONS(3665), + [anon_sym_from] = ACTIONS(3665), + [anon_sym_into] = ACTIONS(3665), + [anon_sym_join] = ACTIONS(3665), + [anon_sym_on] = ACTIONS(3665), + [anon_sym_equals] = ACTIONS(3665), + [anon_sym_let] = ACTIONS(3665), + [anon_sym_orderby] = ACTIONS(3665), + [anon_sym_group] = ACTIONS(3665), + [anon_sym_by] = ACTIONS(3665), + [anon_sym_select] = ACTIONS(3665), + [anon_sym_as] = ACTIONS(3665), + [anon_sym_is] = ACTIONS(3665), + [anon_sym_DASH_GT] = ACTIONS(3665), + [anon_sym_with] = ACTIONS(3665), + [aux_sym_preproc_if_token3] = ACTIONS(3665), + [aux_sym_preproc_else_token1] = ACTIONS(3665), + [aux_sym_preproc_elif_token1] = ACTIONS(3665), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -465198,64 +464757,64 @@ 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_SEMI] = ACTIONS(3951), - [anon_sym_LBRACK] = ACTIONS(3951), - [anon_sym_COLON] = ACTIONS(3951), - [anon_sym_COMMA] = ACTIONS(3951), - [anon_sym_RBRACK] = ACTIONS(3951), - [anon_sym_LPAREN] = ACTIONS(3951), - [anon_sym_RPAREN] = ACTIONS(3951), - [anon_sym_LBRACE] = ACTIONS(3951), - [anon_sym_RBRACE] = ACTIONS(3951), - [anon_sym_LT] = ACTIONS(3949), - [anon_sym_GT] = ACTIONS(3949), - [anon_sym_in] = ACTIONS(3949), - [anon_sym_where] = ACTIONS(3951), - [anon_sym_QMARK] = ACTIONS(3949), - [anon_sym_BANG] = ACTIONS(3949), - [anon_sym_PLUS_PLUS] = ACTIONS(3951), - [anon_sym_DASH_DASH] = ACTIONS(3951), - [anon_sym_PLUS] = ACTIONS(3949), - [anon_sym_DASH] = ACTIONS(3949), - [anon_sym_STAR] = ACTIONS(3951), - [anon_sym_SLASH] = ACTIONS(3949), - [anon_sym_PERCENT] = ACTIONS(3951), - [anon_sym_CARET] = ACTIONS(3951), - [anon_sym_PIPE] = ACTIONS(3949), - [anon_sym_AMP] = ACTIONS(3949), - [anon_sym_LT_LT] = ACTIONS(3951), - [anon_sym_GT_GT] = ACTIONS(3949), - [anon_sym_GT_GT_GT] = ACTIONS(3951), - [anon_sym_EQ_EQ] = ACTIONS(3951), - [anon_sym_BANG_EQ] = ACTIONS(3951), - [anon_sym_GT_EQ] = ACTIONS(3951), - [anon_sym_LT_EQ] = ACTIONS(3951), - [anon_sym_DOT] = ACTIONS(3949), - [anon_sym_EQ_GT] = ACTIONS(3951), - [anon_sym_switch] = ACTIONS(3951), - [anon_sym_DOT_DOT] = ACTIONS(3951), - [anon_sym_and] = ACTIONS(3951), - [anon_sym_or] = ACTIONS(3949), - [anon_sym_AMP_AMP] = ACTIONS(3951), - [anon_sym_PIPE_PIPE] = ACTIONS(3951), - [anon_sym_QMARK_QMARK] = ACTIONS(3951), - [anon_sym_from] = ACTIONS(3951), - [anon_sym_into] = ACTIONS(3951), - [anon_sym_join] = ACTIONS(3951), - [anon_sym_on] = ACTIONS(3951), - [anon_sym_equals] = ACTIONS(3951), - [anon_sym_let] = ACTIONS(3951), - [anon_sym_orderby] = ACTIONS(3951), - [anon_sym_group] = ACTIONS(3951), - [anon_sym_by] = ACTIONS(3951), - [anon_sym_select] = ACTIONS(3951), - [anon_sym_as] = ACTIONS(3951), - [anon_sym_is] = ACTIONS(3951), - [anon_sym_DASH_GT] = ACTIONS(3951), - [anon_sym_with] = ACTIONS(3951), - [aux_sym_preproc_if_token3] = ACTIONS(3951), - [aux_sym_preproc_else_token1] = ACTIONS(3951), - [aux_sym_preproc_elif_token1] = ACTIONS(3951), + [anon_sym_SEMI] = ACTIONS(4887), + [anon_sym_LBRACK] = ACTIONS(4887), + [anon_sym_COLON] = ACTIONS(4887), + [anon_sym_COMMA] = ACTIONS(4887), + [anon_sym_RBRACK] = ACTIONS(4887), + [anon_sym_LPAREN] = ACTIONS(4887), + [anon_sym_RPAREN] = ACTIONS(4887), + [anon_sym_LBRACE] = ACTIONS(4887), + [anon_sym_RBRACE] = ACTIONS(4887), + [anon_sym_LT] = ACTIONS(4889), + [anon_sym_GT] = ACTIONS(4889), + [anon_sym_in] = ACTIONS(4889), + [anon_sym_where] = ACTIONS(4887), + [anon_sym_QMARK] = ACTIONS(4889), + [anon_sym_BANG] = ACTIONS(4889), + [anon_sym_PLUS_PLUS] = ACTIONS(4887), + [anon_sym_DASH_DASH] = ACTIONS(4887), + [anon_sym_PLUS] = ACTIONS(4889), + [anon_sym_DASH] = ACTIONS(4889), + [anon_sym_STAR] = ACTIONS(4887), + [anon_sym_SLASH] = ACTIONS(4889), + [anon_sym_PERCENT] = ACTIONS(4887), + [anon_sym_CARET] = ACTIONS(4887), + [anon_sym_PIPE] = ACTIONS(4889), + [anon_sym_AMP] = ACTIONS(4889), + [anon_sym_LT_LT] = ACTIONS(4887), + [anon_sym_GT_GT] = ACTIONS(4889), + [anon_sym_GT_GT_GT] = ACTIONS(4887), + [anon_sym_EQ_EQ] = ACTIONS(4887), + [anon_sym_BANG_EQ] = ACTIONS(4887), + [anon_sym_GT_EQ] = ACTIONS(4887), + [anon_sym_LT_EQ] = ACTIONS(4887), + [anon_sym_DOT] = ACTIONS(4889), + [anon_sym_EQ_GT] = ACTIONS(4887), + [anon_sym_switch] = ACTIONS(4887), + [anon_sym_DOT_DOT] = ACTIONS(4887), + [anon_sym_and] = ACTIONS(4887), + [anon_sym_or] = ACTIONS(4889), + [anon_sym_AMP_AMP] = ACTIONS(4887), + [anon_sym_PIPE_PIPE] = ACTIONS(4887), + [anon_sym_QMARK_QMARK] = ACTIONS(4887), + [anon_sym_from] = ACTIONS(4887), + [anon_sym_into] = ACTIONS(4887), + [anon_sym_join] = ACTIONS(4887), + [anon_sym_on] = ACTIONS(4887), + [anon_sym_equals] = ACTIONS(4887), + [anon_sym_let] = ACTIONS(4887), + [anon_sym_orderby] = ACTIONS(4887), + [anon_sym_group] = ACTIONS(4887), + [anon_sym_by] = ACTIONS(4887), + [anon_sym_select] = ACTIONS(4887), + [anon_sym_as] = ACTIONS(4887), + [anon_sym_is] = ACTIONS(4887), + [anon_sym_DASH_GT] = ACTIONS(4887), + [anon_sym_with] = ACTIONS(4887), + [aux_sym_preproc_if_token3] = ACTIONS(4887), + [aux_sym_preproc_else_token1] = ACTIONS(4887), + [aux_sym_preproc_elif_token1] = ACTIONS(4887), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -465277,64 +464836,64 @@ 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(4018), - [anon_sym_LBRACK] = ACTIONS(4066), - [anon_sym_COLON] = ACTIONS(4018), - [anon_sym_COMMA] = ACTIONS(4018), - [anon_sym_RBRACK] = ACTIONS(4018), - [anon_sym_LPAREN] = ACTIONS(4018), - [anon_sym_RPAREN] = ACTIONS(4018), - [anon_sym_LBRACE] = ACTIONS(4018), - [anon_sym_RBRACE] = ACTIONS(4018), - [anon_sym_LT] = ACTIONS(4016), - [anon_sym_GT] = ACTIONS(4016), - [anon_sym_in] = ACTIONS(4016), - [anon_sym_where] = ACTIONS(4018), - [anon_sym_QMARK] = ACTIONS(4887), - [anon_sym_BANG] = ACTIONS(4016), - [anon_sym_PLUS_PLUS] = ACTIONS(4018), - [anon_sym_DASH_DASH] = ACTIONS(4018), - [anon_sym_PLUS] = ACTIONS(4016), - [anon_sym_DASH] = ACTIONS(4016), - [anon_sym_STAR] = ACTIONS(4018), - [anon_sym_SLASH] = ACTIONS(4016), - [anon_sym_PERCENT] = ACTIONS(4018), - [anon_sym_CARET] = ACTIONS(4018), - [anon_sym_PIPE] = ACTIONS(4016), - [anon_sym_AMP] = ACTIONS(4016), - [anon_sym_LT_LT] = ACTIONS(4018), - [anon_sym_GT_GT] = ACTIONS(4016), - [anon_sym_GT_GT_GT] = ACTIONS(4018), - [anon_sym_EQ_EQ] = ACTIONS(4018), - [anon_sym_BANG_EQ] = ACTIONS(4018), - [anon_sym_GT_EQ] = ACTIONS(4018), - [anon_sym_LT_EQ] = ACTIONS(4018), - [anon_sym_DOT] = ACTIONS(4016), - [anon_sym_EQ_GT] = ACTIONS(4018), - [anon_sym_switch] = ACTIONS(4018), - [anon_sym_DOT_DOT] = ACTIONS(4018), - [anon_sym_and] = ACTIONS(4018), - [anon_sym_or] = ACTIONS(4016), - [anon_sym_AMP_AMP] = ACTIONS(4018), - [anon_sym_PIPE_PIPE] = ACTIONS(4018), - [anon_sym_QMARK_QMARK] = ACTIONS(4018), - [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_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(4018), - [anon_sym_with] = ACTIONS(4018), - [aux_sym_preproc_if_token3] = ACTIONS(4018), - [aux_sym_preproc_else_token1] = ACTIONS(4018), - [aux_sym_preproc_elif_token1] = ACTIONS(4018), + [anon_sym_SEMI] = ACTIONS(4891), + [anon_sym_LBRACK] = ACTIONS(4891), + [anon_sym_COLON] = ACTIONS(4891), + [anon_sym_COMMA] = ACTIONS(4891), + [anon_sym_RBRACK] = ACTIONS(4891), + [anon_sym_LPAREN] = ACTIONS(4891), + [anon_sym_RPAREN] = ACTIONS(4891), + [anon_sym_RBRACE] = ACTIONS(4891), + [anon_sym_LT] = ACTIONS(4893), + [anon_sym_GT] = ACTIONS(4893), + [anon_sym_in] = ACTIONS(4893), + [anon_sym_where] = ACTIONS(4891), + [anon_sym_QMARK] = ACTIONS(4893), + [anon_sym_BANG] = ACTIONS(4893), + [anon_sym_PLUS_PLUS] = ACTIONS(4891), + [anon_sym_DASH_DASH] = ACTIONS(4891), + [anon_sym_PLUS] = ACTIONS(4893), + [anon_sym_DASH] = ACTIONS(4893), + [anon_sym_STAR] = ACTIONS(4891), + [anon_sym_SLASH] = ACTIONS(4893), + [anon_sym_PERCENT] = ACTIONS(4891), + [anon_sym_CARET] = ACTIONS(4891), + [anon_sym_PIPE] = ACTIONS(4893), + [anon_sym_AMP] = ACTIONS(4893), + [anon_sym_LT_LT] = ACTIONS(4891), + [anon_sym_GT_GT] = ACTIONS(4893), + [anon_sym_GT_GT_GT] = ACTIONS(4891), + [anon_sym_EQ_EQ] = ACTIONS(4891), + [anon_sym_BANG_EQ] = ACTIONS(4891), + [anon_sym_GT_EQ] = ACTIONS(4891), + [anon_sym_LT_EQ] = ACTIONS(4891), + [anon_sym_DOT] = ACTIONS(4893), + [anon_sym_EQ_GT] = ACTIONS(4891), + [anon_sym_switch] = ACTIONS(4891), + [anon_sym_DOT_DOT] = ACTIONS(4891), + [anon_sym_and] = ACTIONS(4891), + [anon_sym_or] = ACTIONS(4893), + [anon_sym_AMP_AMP] = ACTIONS(4891), + [anon_sym_PIPE_PIPE] = ACTIONS(4891), + [anon_sym_QMARK_QMARK] = ACTIONS(4891), + [anon_sym_from] = ACTIONS(4891), + [anon_sym_into] = ACTIONS(4891), + [anon_sym_join] = ACTIONS(4891), + [anon_sym_on] = ACTIONS(4891), + [anon_sym_equals] = ACTIONS(4891), + [anon_sym_let] = ACTIONS(4891), + [anon_sym_orderby] = ACTIONS(4891), + [anon_sym_group] = ACTIONS(4891), + [anon_sym_by] = ACTIONS(4891), + [anon_sym_select] = ACTIONS(4891), + [anon_sym_as] = ACTIONS(4891), + [anon_sym_is] = ACTIONS(4891), + [anon_sym_DASH_GT] = ACTIONS(4891), + [anon_sym_with] = ACTIONS(4891), + [sym_string_literal_encoding] = ACTIONS(4895), + [aux_sym_preproc_if_token3] = ACTIONS(4891), + [aux_sym_preproc_else_token1] = ACTIONS(4891), + [aux_sym_preproc_elif_token1] = ACTIONS(4891), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -465347,8 +464906,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2938] = { - [sym_preproc_else_in_attribute_list] = STATE(7673), - [sym_preproc_elif_in_attribute_list] = STATE(7673), + [sym_preproc_else_in_attribute_list] = STATE(7535), + [sym_preproc_elif_in_attribute_list] = STATE(7535), [sym_preproc_region] = STATE(2938), [sym_preproc_endregion] = STATE(2938), [sym_preproc_line] = STATE(2938), @@ -465358,62 +464917,62 @@ 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), - [sym__identifier_token] = ACTIONS(4699), - [anon_sym_extern] = ACTIONS(4699), - [anon_sym_alias] = ACTIONS(4699), - [anon_sym_global] = ACTIONS(4699), - [anon_sym_unsafe] = ACTIONS(4699), - [anon_sym_static] = ACTIONS(4699), - [anon_sym_LBRACK] = ACTIONS(4701), - [anon_sym_LPAREN] = ACTIONS(4701), - [anon_sym_class] = ACTIONS(4699), - [anon_sym_ref] = ACTIONS(4699), - [anon_sym_struct] = ACTIONS(4699), - [anon_sym_enum] = ACTIONS(4699), - [anon_sym_interface] = ACTIONS(4699), - [anon_sym_delegate] = ACTIONS(4699), - [anon_sym_record] = ACTIONS(4699), - [anon_sym_abstract] = ACTIONS(4699), - [anon_sym_async] = ACTIONS(4699), - [anon_sym_const] = ACTIONS(4699), - [anon_sym_file] = ACTIONS(4699), - [anon_sym_fixed] = ACTIONS(4699), - [anon_sym_internal] = ACTIONS(4699), - [anon_sym_new] = ACTIONS(4699), - [anon_sym_override] = ACTIONS(4699), - [anon_sym_partial] = ACTIONS(4699), - [anon_sym_private] = ACTIONS(4699), - [anon_sym_protected] = ACTIONS(4699), - [anon_sym_public] = ACTIONS(4699), - [anon_sym_readonly] = ACTIONS(4699), - [anon_sym_required] = ACTIONS(4699), - [anon_sym_sealed] = ACTIONS(4699), - [anon_sym_virtual] = ACTIONS(4699), - [anon_sym_volatile] = ACTIONS(4699), - [anon_sym_where] = ACTIONS(4699), - [anon_sym_notnull] = ACTIONS(4699), - [anon_sym_unmanaged] = ACTIONS(4699), - [anon_sym_scoped] = ACTIONS(4699), - [anon_sym_var] = ACTIONS(4699), - [sym_predefined_type] = ACTIONS(4699), - [anon_sym_yield] = ACTIONS(4699), - [anon_sym_when] = ACTIONS(4699), - [anon_sym_from] = ACTIONS(4699), - [anon_sym_into] = ACTIONS(4699), - [anon_sym_join] = ACTIONS(4699), - [anon_sym_on] = ACTIONS(4699), - [anon_sym_equals] = ACTIONS(4699), - [anon_sym_let] = ACTIONS(4699), - [anon_sym_orderby] = ACTIONS(4699), - [anon_sym_ascending] = ACTIONS(4699), - [anon_sym_descending] = ACTIONS(4699), - [anon_sym_group] = ACTIONS(4699), - [anon_sym_by] = ACTIONS(4699), - [anon_sym_select] = ACTIONS(4699), - [aux_sym_preproc_if_token1] = ACTIONS(4701), - [aux_sym_preproc_if_token3] = ACTIONS(4890), - [aux_sym_preproc_else_token1] = ACTIONS(4705), - [aux_sym_preproc_elif_token1] = ACTIONS(4707), + [sym__identifier_token] = ACTIONS(4665), + [anon_sym_extern] = ACTIONS(4665), + [anon_sym_alias] = ACTIONS(4665), + [anon_sym_global] = ACTIONS(4665), + [anon_sym_unsafe] = ACTIONS(4665), + [anon_sym_static] = ACTIONS(4665), + [anon_sym_LBRACK] = ACTIONS(4667), + [anon_sym_LPAREN] = ACTIONS(4667), + [anon_sym_class] = ACTIONS(4665), + [anon_sym_ref] = ACTIONS(4665), + [anon_sym_struct] = ACTIONS(4665), + [anon_sym_enum] = ACTIONS(4665), + [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_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(4897), + [aux_sym_preproc_else_token1] = ACTIONS(4671), + [aux_sym_preproc_elif_token1] = ACTIONS(4673), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -465435,64 +464994,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(4010), - [anon_sym_LBRACK] = ACTIONS(4010), - [anon_sym_COLON] = ACTIONS(4010), - [anon_sym_COMMA] = ACTIONS(4010), - [anon_sym_RBRACK] = ACTIONS(4010), - [anon_sym_LPAREN] = ACTIONS(4010), - [anon_sym_RPAREN] = ACTIONS(4010), - [anon_sym_LBRACE] = ACTIONS(4010), - [anon_sym_RBRACE] = ACTIONS(4010), - [anon_sym_LT] = ACTIONS(4008), - [anon_sym_GT] = ACTIONS(4008), - [anon_sym_in] = ACTIONS(4008), - [anon_sym_where] = ACTIONS(4010), - [anon_sym_QMARK] = ACTIONS(4008), - [anon_sym_BANG] = ACTIONS(4008), - [anon_sym_PLUS_PLUS] = ACTIONS(4010), - [anon_sym_DASH_DASH] = ACTIONS(4010), - [anon_sym_PLUS] = ACTIONS(4008), - [anon_sym_DASH] = ACTIONS(4008), - [anon_sym_STAR] = ACTIONS(4010), - [anon_sym_SLASH] = ACTIONS(4008), - [anon_sym_PERCENT] = ACTIONS(4010), - [anon_sym_CARET] = ACTIONS(4010), - [anon_sym_PIPE] = ACTIONS(4008), - [anon_sym_AMP] = ACTIONS(4008), - [anon_sym_LT_LT] = ACTIONS(4010), - [anon_sym_GT_GT] = ACTIONS(4008), - [anon_sym_GT_GT_GT] = ACTIONS(4010), - [anon_sym_EQ_EQ] = ACTIONS(4010), - [anon_sym_BANG_EQ] = ACTIONS(4010), - [anon_sym_GT_EQ] = ACTIONS(4010), - [anon_sym_LT_EQ] = ACTIONS(4010), - [anon_sym_DOT] = ACTIONS(4008), - [anon_sym_EQ_GT] = ACTIONS(4010), - [anon_sym_switch] = ACTIONS(4010), - [anon_sym_DOT_DOT] = ACTIONS(4010), - [anon_sym_and] = ACTIONS(4010), - [anon_sym_or] = ACTIONS(4008), - [anon_sym_AMP_AMP] = ACTIONS(4010), - [anon_sym_PIPE_PIPE] = ACTIONS(4010), - [anon_sym_QMARK_QMARK] = ACTIONS(4010), - [anon_sym_from] = ACTIONS(4010), - [anon_sym_into] = ACTIONS(4010), - [anon_sym_join] = ACTIONS(4010), - [anon_sym_on] = ACTIONS(4010), - [anon_sym_equals] = ACTIONS(4010), - [anon_sym_let] = ACTIONS(4010), - [anon_sym_orderby] = ACTIONS(4010), - [anon_sym_group] = ACTIONS(4010), - [anon_sym_by] = ACTIONS(4010), - [anon_sym_select] = ACTIONS(4010), - [anon_sym_as] = ACTIONS(4010), - [anon_sym_is] = ACTIONS(4010), - [anon_sym_DASH_GT] = ACTIONS(4010), - [anon_sym_with] = ACTIONS(4010), - [aux_sym_preproc_if_token3] = ACTIONS(4010), - [aux_sym_preproc_else_token1] = ACTIONS(4010), - [aux_sym_preproc_elif_token1] = ACTIONS(4010), + [anon_sym_SEMI] = ACTIONS(4102), + [anon_sym_LBRACK] = ACTIONS(4102), + [anon_sym_COLON] = ACTIONS(4102), + [anon_sym_COMMA] = ACTIONS(4102), + [anon_sym_RBRACK] = ACTIONS(4102), + [anon_sym_LPAREN] = ACTIONS(4102), + [anon_sym_RPAREN] = ACTIONS(4102), + [anon_sym_LBRACE] = ACTIONS(4102), + [anon_sym_RBRACE] = ACTIONS(4102), + [anon_sym_LT] = ACTIONS(4100), + [anon_sym_GT] = ACTIONS(4100), + [anon_sym_in] = ACTIONS(4100), + [anon_sym_where] = ACTIONS(4102), + [anon_sym_QMARK] = ACTIONS(4100), + [anon_sym_BANG] = ACTIONS(4100), + [anon_sym_PLUS_PLUS] = ACTIONS(4102), + [anon_sym_DASH_DASH] = ACTIONS(4102), + [anon_sym_PLUS] = ACTIONS(4100), + [anon_sym_DASH] = ACTIONS(4100), + [anon_sym_STAR] = ACTIONS(4102), + [anon_sym_SLASH] = ACTIONS(4100), + [anon_sym_PERCENT] = ACTIONS(4102), + [anon_sym_CARET] = ACTIONS(4102), + [anon_sym_PIPE] = ACTIONS(4100), + [anon_sym_AMP] = ACTIONS(4100), + [anon_sym_LT_LT] = ACTIONS(4102), + [anon_sym_GT_GT] = ACTIONS(4100), + [anon_sym_GT_GT_GT] = ACTIONS(4102), + [anon_sym_EQ_EQ] = ACTIONS(4102), + [anon_sym_BANG_EQ] = ACTIONS(4102), + [anon_sym_GT_EQ] = ACTIONS(4102), + [anon_sym_LT_EQ] = ACTIONS(4102), + [anon_sym_DOT] = ACTIONS(4100), + [anon_sym_EQ_GT] = ACTIONS(4102), + [anon_sym_switch] = ACTIONS(4102), + [anon_sym_DOT_DOT] = ACTIONS(4102), + [anon_sym_and] = ACTIONS(4102), + [anon_sym_or] = ACTIONS(4100), + [anon_sym_AMP_AMP] = ACTIONS(4102), + [anon_sym_PIPE_PIPE] = ACTIONS(4102), + [anon_sym_QMARK_QMARK] = ACTIONS(4102), + [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_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(4102), + [anon_sym_with] = ACTIONS(4102), + [aux_sym_preproc_if_token3] = ACTIONS(4102), + [aux_sym_preproc_else_token1] = ACTIONS(4102), + [aux_sym_preproc_elif_token1] = ACTIONS(4102), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -465514,64 +465073,64 @@ 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_SEMI] = ACTIONS(4106), - [anon_sym_LBRACK] = ACTIONS(4106), - [anon_sym_COLON] = ACTIONS(4106), - [anon_sym_COMMA] = ACTIONS(4106), - [anon_sym_RBRACK] = ACTIONS(4106), - [anon_sym_LPAREN] = ACTIONS(4106), - [anon_sym_RPAREN] = ACTIONS(4106), - [anon_sym_LBRACE] = ACTIONS(4106), - [anon_sym_RBRACE] = ACTIONS(4106), - [anon_sym_LT] = ACTIONS(4104), - [anon_sym_GT] = ACTIONS(4104), - [anon_sym_in] = ACTIONS(4104), - [anon_sym_where] = ACTIONS(4106), - [anon_sym_QMARK] = ACTIONS(4104), - [anon_sym_BANG] = ACTIONS(4104), - [anon_sym_PLUS_PLUS] = ACTIONS(4106), - [anon_sym_DASH_DASH] = ACTIONS(4106), - [anon_sym_PLUS] = ACTIONS(4104), - [anon_sym_DASH] = ACTIONS(4104), - [anon_sym_STAR] = ACTIONS(4106), - [anon_sym_SLASH] = ACTIONS(4104), - [anon_sym_PERCENT] = ACTIONS(4106), - [anon_sym_CARET] = ACTIONS(4106), - [anon_sym_PIPE] = ACTIONS(4104), - [anon_sym_AMP] = ACTIONS(4104), - [anon_sym_LT_LT] = ACTIONS(4106), - [anon_sym_GT_GT] = ACTIONS(4104), - [anon_sym_GT_GT_GT] = ACTIONS(4106), - [anon_sym_EQ_EQ] = ACTIONS(4106), - [anon_sym_BANG_EQ] = ACTIONS(4106), - [anon_sym_GT_EQ] = ACTIONS(4106), - [anon_sym_LT_EQ] = ACTIONS(4106), - [anon_sym_DOT] = ACTIONS(4104), - [anon_sym_EQ_GT] = ACTIONS(4106), - [anon_sym_switch] = ACTIONS(4106), - [anon_sym_DOT_DOT] = ACTIONS(4106), - [anon_sym_and] = ACTIONS(4106), - [anon_sym_or] = ACTIONS(4104), - [anon_sym_AMP_AMP] = ACTIONS(4106), - [anon_sym_PIPE_PIPE] = ACTIONS(4106), - [anon_sym_QMARK_QMARK] = ACTIONS(4106), - [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_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(4106), - [anon_sym_with] = ACTIONS(4106), - [aux_sym_preproc_if_token3] = ACTIONS(4106), - [aux_sym_preproc_else_token1] = ACTIONS(4106), - [aux_sym_preproc_elif_token1] = ACTIONS(4106), + [anon_sym_SEMI] = ACTIONS(3994), + [anon_sym_LBRACK] = ACTIONS(3994), + [anon_sym_COLON] = ACTIONS(3994), + [anon_sym_COMMA] = ACTIONS(3994), + [anon_sym_RBRACK] = ACTIONS(3994), + [anon_sym_LPAREN] = ACTIONS(3994), + [anon_sym_RPAREN] = ACTIONS(3994), + [anon_sym_LBRACE] = ACTIONS(3994), + [anon_sym_RBRACE] = ACTIONS(3994), + [anon_sym_LT] = ACTIONS(3992), + [anon_sym_GT] = ACTIONS(3992), + [anon_sym_in] = ACTIONS(3992), + [anon_sym_where] = ACTIONS(3994), + [anon_sym_QMARK] = ACTIONS(3992), + [anon_sym_BANG] = ACTIONS(3992), + [anon_sym_PLUS_PLUS] = ACTIONS(3994), + [anon_sym_DASH_DASH] = ACTIONS(3994), + [anon_sym_PLUS] = ACTIONS(3992), + [anon_sym_DASH] = ACTIONS(3992), + [anon_sym_STAR] = ACTIONS(3994), + [anon_sym_SLASH] = ACTIONS(3992), + [anon_sym_PERCENT] = ACTIONS(3994), + [anon_sym_CARET] = ACTIONS(3994), + [anon_sym_PIPE] = ACTIONS(3992), + [anon_sym_AMP] = ACTIONS(3992), + [anon_sym_LT_LT] = ACTIONS(3994), + [anon_sym_GT_GT] = ACTIONS(3992), + [anon_sym_GT_GT_GT] = ACTIONS(3994), + [anon_sym_EQ_EQ] = ACTIONS(3994), + [anon_sym_BANG_EQ] = ACTIONS(3994), + [anon_sym_GT_EQ] = ACTIONS(3994), + [anon_sym_LT_EQ] = ACTIONS(3994), + [anon_sym_DOT] = ACTIONS(3992), + [anon_sym_EQ_GT] = ACTIONS(3994), + [anon_sym_switch] = ACTIONS(3994), + [anon_sym_DOT_DOT] = ACTIONS(3994), + [anon_sym_and] = ACTIONS(3994), + [anon_sym_or] = ACTIONS(3992), + [anon_sym_AMP_AMP] = ACTIONS(3994), + [anon_sym_PIPE_PIPE] = ACTIONS(3994), + [anon_sym_QMARK_QMARK] = ACTIONS(3994), + [anon_sym_from] = ACTIONS(3994), + [anon_sym_into] = ACTIONS(3994), + [anon_sym_join] = ACTIONS(3994), + [anon_sym_on] = ACTIONS(3994), + [anon_sym_equals] = ACTIONS(3994), + [anon_sym_let] = ACTIONS(3994), + [anon_sym_orderby] = ACTIONS(3994), + [anon_sym_group] = ACTIONS(3994), + [anon_sym_by] = ACTIONS(3994), + [anon_sym_select] = ACTIONS(3994), + [anon_sym_as] = ACTIONS(3994), + [anon_sym_is] = ACTIONS(3994), + [anon_sym_DASH_GT] = ACTIONS(3994), + [anon_sym_with] = ACTIONS(3994), + [aux_sym_preproc_if_token3] = ACTIONS(3994), + [aux_sym_preproc_else_token1] = ACTIONS(3994), + [aux_sym_preproc_elif_token1] = ACTIONS(3994), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -465593,64 +465152,64 @@ 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(4892), - [anon_sym_LBRACK] = ACTIONS(4892), - [anon_sym_COLON] = ACTIONS(4892), - [anon_sym_COMMA] = ACTIONS(4892), - [anon_sym_RBRACK] = ACTIONS(4892), - [anon_sym_LPAREN] = ACTIONS(4892), - [anon_sym_RPAREN] = ACTIONS(4892), - [anon_sym_RBRACE] = ACTIONS(4892), - [anon_sym_LT] = ACTIONS(4894), - [anon_sym_GT] = ACTIONS(4894), - [anon_sym_in] = ACTIONS(4894), - [anon_sym_where] = ACTIONS(4892), - [anon_sym_QMARK] = ACTIONS(4894), - [anon_sym_BANG] = ACTIONS(4894), - [anon_sym_PLUS_PLUS] = ACTIONS(4892), - [anon_sym_DASH_DASH] = ACTIONS(4892), - [anon_sym_PLUS] = ACTIONS(4894), - [anon_sym_DASH] = ACTIONS(4894), - [anon_sym_STAR] = ACTIONS(4892), - [anon_sym_SLASH] = ACTIONS(4894), - [anon_sym_PERCENT] = ACTIONS(4892), - [anon_sym_CARET] = ACTIONS(4892), - [anon_sym_PIPE] = ACTIONS(4894), - [anon_sym_AMP] = ACTIONS(4894), - [anon_sym_LT_LT] = ACTIONS(4892), - [anon_sym_GT_GT] = ACTIONS(4894), - [anon_sym_GT_GT_GT] = ACTIONS(4892), - [anon_sym_EQ_EQ] = ACTIONS(4892), - [anon_sym_BANG_EQ] = ACTIONS(4892), - [anon_sym_GT_EQ] = ACTIONS(4892), - [anon_sym_LT_EQ] = ACTIONS(4892), - [anon_sym_DOT] = ACTIONS(4894), - [anon_sym_EQ_GT] = ACTIONS(4892), - [anon_sym_switch] = ACTIONS(4892), - [anon_sym_DOT_DOT] = ACTIONS(4892), - [anon_sym_and] = ACTIONS(4892), - [anon_sym_or] = ACTIONS(4894), - [anon_sym_AMP_AMP] = ACTIONS(4892), - [anon_sym_PIPE_PIPE] = ACTIONS(4892), - [anon_sym_QMARK_QMARK] = ACTIONS(4892), - [anon_sym_from] = ACTIONS(4892), - [anon_sym_into] = ACTIONS(4892), - [anon_sym_join] = ACTIONS(4892), - [anon_sym_on] = ACTIONS(4892), - [anon_sym_equals] = ACTIONS(4892), - [anon_sym_let] = ACTIONS(4892), - [anon_sym_orderby] = ACTIONS(4892), - [anon_sym_group] = ACTIONS(4892), - [anon_sym_by] = ACTIONS(4892), - [anon_sym_select] = ACTIONS(4892), - [anon_sym_as] = ACTIONS(4892), - [anon_sym_is] = ACTIONS(4892), - [anon_sym_DASH_GT] = ACTIONS(4892), - [anon_sym_with] = ACTIONS(4892), - [sym_string_literal_encoding] = ACTIONS(4896), - [aux_sym_preproc_if_token3] = ACTIONS(4892), - [aux_sym_preproc_else_token1] = ACTIONS(4892), - [aux_sym_preproc_elif_token1] = ACTIONS(4892), + [anon_sym_SEMI] = ACTIONS(3911), + [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(3911), + [anon_sym_RBRACE] = ACTIONS(3911), + [anon_sym_LT] = ACTIONS(3909), + [anon_sym_GT] = ACTIONS(3909), + [anon_sym_in] = ACTIONS(3909), + [anon_sym_where] = ACTIONS(3911), + [anon_sym_QMARK] = ACTIONS(3909), + [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_EQ_GT] = ACTIONS(3911), + [anon_sym_switch] = ACTIONS(3911), + [anon_sym_DOT_DOT] = ACTIONS(3911), + [anon_sym_and] = ACTIONS(3911), + [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(3911), + [anon_sym_into] = ACTIONS(3911), + [anon_sym_join] = ACTIONS(3911), + [anon_sym_on] = ACTIONS(3911), + [anon_sym_equals] = ACTIONS(3911), + [anon_sym_let] = ACTIONS(3911), + [anon_sym_orderby] = ACTIONS(3911), + [anon_sym_group] = ACTIONS(3911), + [anon_sym_by] = ACTIONS(3911), + [anon_sym_select] = ACTIONS(3911), + [anon_sym_as] = ACTIONS(3911), + [anon_sym_is] = ACTIONS(3911), + [anon_sym_DASH_GT] = ACTIONS(3911), + [anon_sym_with] = ACTIONS(3911), + [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), @@ -465663,7 +465222,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2942] = { - [sym_initializer_expression] = STATE(3077), [sym_preproc_region] = STATE(2942), [sym_preproc_endregion] = STATE(2942), [sym_preproc_line] = STATE(2942), @@ -465673,63 +465231,64 @@ 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(4847), - [anon_sym_LBRACK] = ACTIONS(4849), - [anon_sym_COLON] = ACTIONS(4847), - [anon_sym_COMMA] = ACTIONS(4847), - [anon_sym_RBRACK] = ACTIONS(4847), - [anon_sym_LPAREN] = ACTIONS(4847), - [anon_sym_RPAREN] = ACTIONS(4847), - [anon_sym_LBRACE] = ACTIONS(1487), - [anon_sym_RBRACE] = ACTIONS(4847), - [anon_sym_LT] = ACTIONS(4852), - [anon_sym_GT] = ACTIONS(4852), - [anon_sym_in] = ACTIONS(4847), - [anon_sym_where] = ACTIONS(4847), - [anon_sym_QMARK] = ACTIONS(4852), - [anon_sym_BANG] = ACTIONS(4852), - [anon_sym_PLUS_PLUS] = ACTIONS(4847), - [anon_sym_DASH_DASH] = ACTIONS(4847), - [anon_sym_PLUS] = ACTIONS(4852), - [anon_sym_DASH] = ACTIONS(4852), - [anon_sym_STAR] = ACTIONS(4847), - [anon_sym_SLASH] = ACTIONS(4852), - [anon_sym_PERCENT] = ACTIONS(4847), - [anon_sym_CARET] = ACTIONS(4847), - [anon_sym_PIPE] = ACTIONS(4852), - [anon_sym_AMP] = ACTIONS(4852), - [anon_sym_LT_LT] = ACTIONS(4847), - [anon_sym_GT_GT] = ACTIONS(4852), - [anon_sym_GT_GT_GT] = ACTIONS(4847), - [anon_sym_EQ_EQ] = ACTIONS(4847), - [anon_sym_BANG_EQ] = ACTIONS(4847), - [anon_sym_GT_EQ] = ACTIONS(4847), - [anon_sym_LT_EQ] = ACTIONS(4847), - [anon_sym_DOT] = ACTIONS(4852), - [anon_sym_EQ_GT] = ACTIONS(4847), - [anon_sym_switch] = ACTIONS(4847), - [anon_sym_DOT_DOT] = ACTIONS(4847), - [anon_sym_and] = ACTIONS(4847), - [anon_sym_or] = ACTIONS(4852), - [anon_sym_AMP_AMP] = ACTIONS(4847), - [anon_sym_PIPE_PIPE] = ACTIONS(4847), - [anon_sym_QMARK_QMARK] = ACTIONS(4847), - [anon_sym_from] = 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_group] = ACTIONS(4847), - [anon_sym_by] = ACTIONS(4847), - [anon_sym_select] = ACTIONS(4847), - [anon_sym_as] = ACTIONS(4847), - [anon_sym_is] = ACTIONS(4847), - [anon_sym_DASH_GT] = ACTIONS(4847), - [anon_sym_with] = ACTIONS(4847), - [aux_sym_preproc_if_token3] = ACTIONS(4847), - [aux_sym_preproc_else_token1] = ACTIONS(4847), - [aux_sym_preproc_elif_token1] = ACTIONS(4847), + [anon_sym_SEMI] = ACTIONS(3963), + [anon_sym_LBRACK] = ACTIONS(4033), + [anon_sym_COLON] = ACTIONS(3963), + [anon_sym_COMMA] = ACTIONS(3963), + [anon_sym_RBRACK] = ACTIONS(3963), + [anon_sym_LPAREN] = ACTIONS(3963), + [anon_sym_RPAREN] = ACTIONS(3963), + [anon_sym_LBRACE] = ACTIONS(3963), + [anon_sym_RBRACE] = ACTIONS(3963), + [anon_sym_LT] = ACTIONS(3961), + [anon_sym_GT] = ACTIONS(3961), + [anon_sym_in] = ACTIONS(3961), + [anon_sym_where] = ACTIONS(3963), + [anon_sym_QMARK] = ACTIONS(3961), + [anon_sym_BANG] = ACTIONS(3961), + [anon_sym_PLUS_PLUS] = ACTIONS(3963), + [anon_sym_DASH_DASH] = ACTIONS(3963), + [anon_sym_PLUS] = ACTIONS(3961), + [anon_sym_DASH] = ACTIONS(3961), + [anon_sym_STAR] = ACTIONS(4039), + [anon_sym_SLASH] = ACTIONS(3961), + [anon_sym_PERCENT] = ACTIONS(3963), + [anon_sym_CARET] = ACTIONS(3963), + [anon_sym_PIPE] = ACTIONS(3961), + [anon_sym_AMP] = ACTIONS(3961), + [anon_sym_LT_LT] = ACTIONS(3963), + [anon_sym_GT_GT] = ACTIONS(3961), + [anon_sym_GT_GT_GT] = ACTIONS(3963), + [anon_sym_EQ_EQ] = ACTIONS(3963), + [anon_sym_BANG_EQ] = ACTIONS(3963), + [anon_sym_GT_EQ] = ACTIONS(3963), + [anon_sym_LT_EQ] = ACTIONS(3963), + [anon_sym_DOT] = ACTIONS(3961), + [anon_sym_EQ_GT] = ACTIONS(3963), + [anon_sym_switch] = ACTIONS(3963), + [anon_sym_DOT_DOT] = ACTIONS(3963), + [anon_sym_and] = ACTIONS(3963), + [anon_sym_or] = ACTIONS(3961), + [anon_sym_AMP_AMP] = ACTIONS(3963), + [anon_sym_PIPE_PIPE] = ACTIONS(3963), + [anon_sym_QMARK_QMARK] = ACTIONS(3963), + [anon_sym_from] = ACTIONS(3963), + [anon_sym_into] = ACTIONS(3963), + [anon_sym_join] = ACTIONS(3963), + [anon_sym_on] = ACTIONS(3963), + [anon_sym_equals] = ACTIONS(3963), + [anon_sym_let] = ACTIONS(3963), + [anon_sym_orderby] = ACTIONS(3963), + [anon_sym_group] = ACTIONS(3963), + [anon_sym_by] = ACTIONS(3963), + [anon_sym_select] = ACTIONS(3963), + [anon_sym_as] = ACTIONS(3963), + [anon_sym_is] = ACTIONS(3963), + [anon_sym_DASH_GT] = ACTIONS(3963), + [anon_sym_with] = ACTIONS(3963), + [aux_sym_preproc_if_token3] = ACTIONS(3963), + [aux_sym_preproc_else_token1] = ACTIONS(3963), + [aux_sym_preproc_elif_token1] = ACTIONS(3963), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -465751,64 +465310,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_SEMI] = ACTIONS(3445), - [anon_sym_LBRACK] = ACTIONS(3445), - [anon_sym_COLON] = ACTIONS(3447), - [anon_sym_COMMA] = ACTIONS(3445), - [anon_sym_RBRACK] = ACTIONS(3445), - [anon_sym_LPAREN] = ACTIONS(3445), - [anon_sym_RPAREN] = ACTIONS(3445), - [anon_sym_LBRACE] = ACTIONS(3445), - [anon_sym_RBRACE] = ACTIONS(3445), - [anon_sym_LT] = ACTIONS(3447), - [anon_sym_GT] = ACTIONS(3447), - [anon_sym_in] = ACTIONS(3445), - [anon_sym_where] = ACTIONS(3445), - [anon_sym_QMARK] = ACTIONS(3447), - [anon_sym_BANG] = ACTIONS(3447), - [anon_sym_PLUS_PLUS] = ACTIONS(3445), - [anon_sym_DASH_DASH] = ACTIONS(3445), - [anon_sym_PLUS] = ACTIONS(3447), - [anon_sym_DASH] = ACTIONS(3447), - [anon_sym_STAR] = ACTIONS(3445), - [anon_sym_SLASH] = ACTIONS(3447), - [anon_sym_PERCENT] = ACTIONS(3445), - [anon_sym_CARET] = ACTIONS(3445), - [anon_sym_PIPE] = ACTIONS(3447), - [anon_sym_AMP] = ACTIONS(3447), - [anon_sym_LT_LT] = ACTIONS(3445), - [anon_sym_GT_GT] = ACTIONS(3447), - [anon_sym_GT_GT_GT] = ACTIONS(3445), - [anon_sym_EQ_EQ] = ACTIONS(3445), - [anon_sym_BANG_EQ] = ACTIONS(3445), - [anon_sym_GT_EQ] = ACTIONS(3445), - [anon_sym_LT_EQ] = ACTIONS(3445), - [anon_sym_DOT] = ACTIONS(3447), - [anon_sym_EQ_GT] = ACTIONS(3445), - [anon_sym_COLON_COLON] = ACTIONS(3445), - [anon_sym_switch] = ACTIONS(3445), - [anon_sym_DOT_DOT] = ACTIONS(3445), - [anon_sym_and] = ACTIONS(3445), - [anon_sym_or] = ACTIONS(3447), - [anon_sym_AMP_AMP] = ACTIONS(3445), - [anon_sym_PIPE_PIPE] = ACTIONS(3445), - [anon_sym_QMARK_QMARK] = ACTIONS(3445), - [anon_sym_from] = ACTIONS(3445), - [anon_sym_join] = ACTIONS(3445), - [anon_sym_on] = ACTIONS(3445), - [anon_sym_equals] = ACTIONS(3445), - [anon_sym_let] = ACTIONS(3445), - [anon_sym_orderby] = ACTIONS(3445), - [anon_sym_group] = ACTIONS(3445), - [anon_sym_by] = ACTIONS(3445), - [anon_sym_select] = ACTIONS(3445), - [anon_sym_as] = ACTIONS(3445), - [anon_sym_is] = ACTIONS(3445), - [anon_sym_DASH_GT] = ACTIONS(3445), - [anon_sym_with] = ACTIONS(3445), - [aux_sym_preproc_if_token3] = ACTIONS(3445), - [aux_sym_preproc_else_token1] = ACTIONS(3445), - [aux_sym_preproc_elif_token1] = ACTIONS(3445), + [anon_sym_SEMI] = ACTIONS(3963), + [anon_sym_LBRACK] = ACTIONS(4033), + [anon_sym_COLON] = ACTIONS(3963), + [anon_sym_COMMA] = ACTIONS(3963), + [anon_sym_RBRACK] = ACTIONS(3963), + [anon_sym_LPAREN] = ACTIONS(3963), + [anon_sym_RPAREN] = ACTIONS(3963), + [anon_sym_LBRACE] = ACTIONS(3963), + [anon_sym_RBRACE] = ACTIONS(3963), + [anon_sym_LT] = ACTIONS(3961), + [anon_sym_GT] = ACTIONS(3961), + [anon_sym_in] = ACTIONS(3961), + [anon_sym_where] = ACTIONS(3963), + [anon_sym_QMARK] = ACTIONS(4884), + [anon_sym_BANG] = ACTIONS(3961), + [anon_sym_PLUS_PLUS] = ACTIONS(3963), + [anon_sym_DASH_DASH] = ACTIONS(3963), + [anon_sym_PLUS] = ACTIONS(3961), + [anon_sym_DASH] = ACTIONS(3961), + [anon_sym_STAR] = ACTIONS(4039), + [anon_sym_SLASH] = ACTIONS(3961), + [anon_sym_PERCENT] = ACTIONS(3963), + [anon_sym_CARET] = ACTIONS(3963), + [anon_sym_PIPE] = ACTIONS(3961), + [anon_sym_AMP] = ACTIONS(3961), + [anon_sym_LT_LT] = ACTIONS(3963), + [anon_sym_GT_GT] = ACTIONS(3961), + [anon_sym_GT_GT_GT] = ACTIONS(3963), + [anon_sym_EQ_EQ] = ACTIONS(3963), + [anon_sym_BANG_EQ] = ACTIONS(3963), + [anon_sym_GT_EQ] = ACTIONS(3963), + [anon_sym_LT_EQ] = ACTIONS(3963), + [anon_sym_DOT] = ACTIONS(3961), + [anon_sym_EQ_GT] = ACTIONS(3963), + [anon_sym_switch] = ACTIONS(3963), + [anon_sym_DOT_DOT] = ACTIONS(3963), + [anon_sym_and] = ACTIONS(3963), + [anon_sym_or] = ACTIONS(3961), + [anon_sym_AMP_AMP] = ACTIONS(3963), + [anon_sym_PIPE_PIPE] = ACTIONS(3963), + [anon_sym_QMARK_QMARK] = ACTIONS(3963), + [anon_sym_from] = ACTIONS(3963), + [anon_sym_into] = ACTIONS(3963), + [anon_sym_join] = ACTIONS(3963), + [anon_sym_on] = ACTIONS(3963), + [anon_sym_equals] = ACTIONS(3963), + [anon_sym_let] = ACTIONS(3963), + [anon_sym_orderby] = ACTIONS(3963), + [anon_sym_group] = ACTIONS(3963), + [anon_sym_by] = ACTIONS(3963), + [anon_sym_select] = ACTIONS(3963), + [anon_sym_as] = ACTIONS(3963), + [anon_sym_is] = ACTIONS(3963), + [anon_sym_DASH_GT] = ACTIONS(3963), + [anon_sym_with] = ACTIONS(3963), + [aux_sym_preproc_if_token3] = ACTIONS(3963), + [aux_sym_preproc_else_token1] = ACTIONS(3963), + [aux_sym_preproc_elif_token1] = ACTIONS(3963), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -465830,64 +465389,64 @@ 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(4018), - [anon_sym_LBRACK] = ACTIONS(4066), - [anon_sym_COLON] = ACTIONS(4018), - [anon_sym_COMMA] = ACTIONS(4018), - [anon_sym_RBRACK] = ACTIONS(4018), - [anon_sym_LPAREN] = ACTIONS(4018), - [anon_sym_RPAREN] = ACTIONS(4018), - [anon_sym_LBRACE] = ACTIONS(4018), - [anon_sym_RBRACE] = ACTIONS(4018), - [anon_sym_LT] = ACTIONS(4016), - [anon_sym_GT] = ACTIONS(4016), - [anon_sym_in] = ACTIONS(4016), - [anon_sym_where] = ACTIONS(4018), - [anon_sym_QMARK] = ACTIONS(4887), - [anon_sym_BANG] = ACTIONS(4016), - [anon_sym_PLUS_PLUS] = ACTIONS(4018), - [anon_sym_DASH_DASH] = ACTIONS(4018), - [anon_sym_PLUS] = ACTIONS(4016), - [anon_sym_DASH] = ACTIONS(4016), - [anon_sym_STAR] = ACTIONS(4072), - [anon_sym_SLASH] = ACTIONS(4016), - [anon_sym_PERCENT] = ACTIONS(4018), - [anon_sym_CARET] = ACTIONS(4018), - [anon_sym_PIPE] = ACTIONS(4016), - [anon_sym_AMP] = ACTIONS(4016), - [anon_sym_LT_LT] = ACTIONS(4018), - [anon_sym_GT_GT] = ACTIONS(4016), - [anon_sym_GT_GT_GT] = ACTIONS(4018), - [anon_sym_EQ_EQ] = ACTIONS(4018), - [anon_sym_BANG_EQ] = ACTIONS(4018), - [anon_sym_GT_EQ] = ACTIONS(4018), - [anon_sym_LT_EQ] = ACTIONS(4018), - [anon_sym_DOT] = ACTIONS(4016), - [anon_sym_EQ_GT] = ACTIONS(4018), - [anon_sym_switch] = ACTIONS(4018), - [anon_sym_DOT_DOT] = ACTIONS(4018), - [anon_sym_and] = ACTIONS(4018), - [anon_sym_or] = ACTIONS(4016), - [anon_sym_AMP_AMP] = ACTIONS(4018), - [anon_sym_PIPE_PIPE] = ACTIONS(4018), - [anon_sym_QMARK_QMARK] = ACTIONS(4018), - [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_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(4018), - [anon_sym_with] = ACTIONS(4018), - [aux_sym_preproc_if_token3] = ACTIONS(4018), - [aux_sym_preproc_else_token1] = ACTIONS(4018), - [aux_sym_preproc_elif_token1] = ACTIONS(4018), + [anon_sym_EQ] = ACTIONS(4899), + [anon_sym_LBRACK] = ACTIONS(4811), + [anon_sym_COMMA] = ACTIONS(4811), + [anon_sym_LPAREN] = ACTIONS(4811), + [anon_sym_LT] = ACTIONS(4813), + [anon_sym_GT] = ACTIONS(4813), + [anon_sym_where] = ACTIONS(4811), + [anon_sym_QMARK] = ACTIONS(4813), + [anon_sym_BANG] = ACTIONS(4813), + [anon_sym_PLUS_PLUS] = ACTIONS(4811), + [anon_sym_DASH_DASH] = ACTIONS(4811), + [anon_sym_PLUS] = ACTIONS(4813), + [anon_sym_DASH] = ACTIONS(4813), + [anon_sym_STAR] = ACTIONS(4813), + [anon_sym_SLASH] = ACTIONS(4813), + [anon_sym_PERCENT] = ACTIONS(4813), + [anon_sym_CARET] = ACTIONS(4813), + [anon_sym_PIPE] = ACTIONS(4813), + [anon_sym_AMP] = ACTIONS(4813), + [anon_sym_LT_LT] = ACTIONS(4813), + [anon_sym_GT_GT] = ACTIONS(4813), + [anon_sym_GT_GT_GT] = ACTIONS(4813), + [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(4813), + [anon_sym_switch] = ACTIONS(4811), + [anon_sym_DOT_DOT] = ACTIONS(4811), + [anon_sym_and] = ACTIONS(4811), + [anon_sym_or] = ACTIONS(4813), + [anon_sym_PLUS_EQ] = ACTIONS(4901), + [anon_sym_DASH_EQ] = ACTIONS(4901), + [anon_sym_STAR_EQ] = ACTIONS(4901), + [anon_sym_SLASH_EQ] = ACTIONS(4901), + [anon_sym_PERCENT_EQ] = ACTIONS(4901), + [anon_sym_AMP_EQ] = ACTIONS(4901), + [anon_sym_CARET_EQ] = ACTIONS(4901), + [anon_sym_PIPE_EQ] = ACTIONS(4901), + [anon_sym_LT_LT_EQ] = ACTIONS(4901), + [anon_sym_GT_GT_EQ] = ACTIONS(4901), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(4901), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(4901), + [anon_sym_AMP_AMP] = ACTIONS(4811), + [anon_sym_PIPE_PIPE] = ACTIONS(4811), + [anon_sym_QMARK_QMARK] = ACTIONS(4813), + [anon_sym_from] = 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(4813), + [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), @@ -465909,64 +465468,64 @@ 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(3652), - [anon_sym_LBRACK] = ACTIONS(3652), - [anon_sym_COLON] = ACTIONS(3650), - [anon_sym_COMMA] = ACTIONS(3652), - [anon_sym_RBRACK] = ACTIONS(3652), - [anon_sym_LPAREN] = ACTIONS(3652), - [anon_sym_RPAREN] = ACTIONS(3652), - [anon_sym_LBRACE] = ACTIONS(3652), - [anon_sym_RBRACE] = ACTIONS(3652), - [anon_sym_LT] = ACTIONS(3650), - [anon_sym_GT] = ACTIONS(3650), - [anon_sym_in] = ACTIONS(3652), - [anon_sym_where] = ACTIONS(3652), - [anon_sym_QMARK] = ACTIONS(3650), - [anon_sym_BANG] = ACTIONS(3650), - [anon_sym_PLUS_PLUS] = ACTIONS(3652), - [anon_sym_DASH_DASH] = ACTIONS(3652), - [anon_sym_PLUS] = ACTIONS(3650), - [anon_sym_DASH] = ACTIONS(3650), - [anon_sym_STAR] = ACTIONS(3652), - [anon_sym_SLASH] = ACTIONS(3650), - [anon_sym_PERCENT] = ACTIONS(3652), - [anon_sym_CARET] = ACTIONS(3652), - [anon_sym_PIPE] = ACTIONS(3650), - [anon_sym_AMP] = ACTIONS(3650), - [anon_sym_LT_LT] = ACTIONS(3652), - [anon_sym_GT_GT] = ACTIONS(3650), - [anon_sym_GT_GT_GT] = ACTIONS(3652), - [anon_sym_EQ_EQ] = ACTIONS(3652), - [anon_sym_BANG_EQ] = ACTIONS(3652), - [anon_sym_GT_EQ] = ACTIONS(3652), - [anon_sym_LT_EQ] = ACTIONS(3652), - [anon_sym_DOT] = ACTIONS(3650), - [anon_sym_EQ_GT] = ACTIONS(3652), - [anon_sym_COLON_COLON] = ACTIONS(3652), - [anon_sym_switch] = ACTIONS(3652), - [anon_sym_DOT_DOT] = ACTIONS(3652), - [anon_sym_and] = ACTIONS(3652), - [anon_sym_or] = ACTIONS(3650), - [anon_sym_AMP_AMP] = ACTIONS(3652), - [anon_sym_PIPE_PIPE] = ACTIONS(3652), - [anon_sym_QMARK_QMARK] = ACTIONS(3652), - [anon_sym_from] = ACTIONS(3652), - [anon_sym_join] = ACTIONS(3652), - [anon_sym_on] = ACTIONS(3652), - [anon_sym_equals] = ACTIONS(3652), - [anon_sym_let] = ACTIONS(3652), - [anon_sym_orderby] = ACTIONS(3652), - [anon_sym_group] = ACTIONS(3652), - [anon_sym_by] = ACTIONS(3652), - [anon_sym_select] = ACTIONS(3652), - [anon_sym_as] = ACTIONS(3652), - [anon_sym_is] = ACTIONS(3652), - [anon_sym_DASH_GT] = ACTIONS(3652), - [anon_sym_with] = ACTIONS(3652), - [aux_sym_preproc_if_token3] = ACTIONS(3652), - [aux_sym_preproc_else_token1] = ACTIONS(3652), - [aux_sym_preproc_elif_token1] = ACTIONS(3652), + [anon_sym_SEMI] = ACTIONS(3957), + [anon_sym_LBRACK] = ACTIONS(3957), + [anon_sym_COLON] = ACTIONS(3957), + [anon_sym_COMMA] = ACTIONS(3957), + [anon_sym_RBRACK] = ACTIONS(3957), + [anon_sym_LPAREN] = ACTIONS(3957), + [anon_sym_RPAREN] = ACTIONS(3957), + [anon_sym_LBRACE] = ACTIONS(3957), + [anon_sym_RBRACE] = ACTIONS(3957), + [anon_sym_LT] = ACTIONS(3955), + [anon_sym_GT] = ACTIONS(3955), + [anon_sym_in] = ACTIONS(3955), + [anon_sym_where] = ACTIONS(3957), + [anon_sym_QMARK] = ACTIONS(3955), + [anon_sym_BANG] = ACTIONS(3955), + [anon_sym_PLUS_PLUS] = ACTIONS(3957), + [anon_sym_DASH_DASH] = ACTIONS(3957), + [anon_sym_PLUS] = ACTIONS(3955), + [anon_sym_DASH] = ACTIONS(3955), + [anon_sym_STAR] = ACTIONS(3957), + [anon_sym_SLASH] = ACTIONS(3955), + [anon_sym_PERCENT] = ACTIONS(3957), + [anon_sym_CARET] = ACTIONS(3957), + [anon_sym_PIPE] = ACTIONS(3955), + [anon_sym_AMP] = ACTIONS(3955), + [anon_sym_LT_LT] = ACTIONS(3957), + [anon_sym_GT_GT] = ACTIONS(3955), + [anon_sym_GT_GT_GT] = ACTIONS(3957), + [anon_sym_EQ_EQ] = ACTIONS(3957), + [anon_sym_BANG_EQ] = ACTIONS(3957), + [anon_sym_GT_EQ] = ACTIONS(3957), + [anon_sym_LT_EQ] = ACTIONS(3957), + [anon_sym_DOT] = ACTIONS(3955), + [anon_sym_EQ_GT] = ACTIONS(3957), + [anon_sym_switch] = ACTIONS(3957), + [anon_sym_DOT_DOT] = ACTIONS(3957), + [anon_sym_and] = ACTIONS(3957), + [anon_sym_or] = ACTIONS(3955), + [anon_sym_AMP_AMP] = ACTIONS(3957), + [anon_sym_PIPE_PIPE] = ACTIONS(3957), + [anon_sym_QMARK_QMARK] = ACTIONS(3957), + [anon_sym_from] = ACTIONS(3957), + [anon_sym_into] = ACTIONS(3957), + [anon_sym_join] = ACTIONS(3957), + [anon_sym_on] = ACTIONS(3957), + [anon_sym_equals] = ACTIONS(3957), + [anon_sym_let] = ACTIONS(3957), + [anon_sym_orderby] = ACTIONS(3957), + [anon_sym_group] = ACTIONS(3957), + [anon_sym_by] = ACTIONS(3957), + [anon_sym_select] = ACTIONS(3957), + [anon_sym_as] = ACTIONS(3957), + [anon_sym_is] = ACTIONS(3957), + [anon_sym_DASH_GT] = ACTIONS(3957), + [anon_sym_with] = ACTIONS(3957), + [aux_sym_preproc_if_token3] = ACTIONS(3957), + [aux_sym_preproc_else_token1] = ACTIONS(3957), + [aux_sym_preproc_elif_token1] = ACTIONS(3957), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -465979,7 +465538,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2946] = { - [sym_initializer_expression] = STATE(3071), [sym_preproc_region] = STATE(2946), [sym_preproc_endregion] = STATE(2946), [sym_preproc_line] = STATE(2946), @@ -465989,63 +465547,64 @@ 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_SEMI] = ACTIONS(4829), - [anon_sym_LBRACK] = ACTIONS(4829), - [anon_sym_COLON] = ACTIONS(4829), - [anon_sym_COMMA] = ACTIONS(4829), - [anon_sym_RBRACK] = ACTIONS(4829), - [anon_sym_LPAREN] = ACTIONS(4829), - [anon_sym_RPAREN] = ACTIONS(4829), - [anon_sym_LBRACE] = ACTIONS(1487), - [anon_sym_RBRACE] = ACTIONS(4829), - [anon_sym_LT] = ACTIONS(4831), - [anon_sym_GT] = ACTIONS(4831), - [anon_sym_in] = ACTIONS(4829), - [anon_sym_where] = ACTIONS(4829), - [anon_sym_QMARK] = ACTIONS(4831), - [anon_sym_BANG] = ACTIONS(4831), - [anon_sym_PLUS_PLUS] = ACTIONS(4829), - [anon_sym_DASH_DASH] = ACTIONS(4829), - [anon_sym_PLUS] = ACTIONS(4831), - [anon_sym_DASH] = ACTIONS(4831), - [anon_sym_STAR] = ACTIONS(4829), - [anon_sym_SLASH] = ACTIONS(4831), - [anon_sym_PERCENT] = ACTIONS(4829), - [anon_sym_CARET] = ACTIONS(4829), - [anon_sym_PIPE] = ACTIONS(4831), - [anon_sym_AMP] = ACTIONS(4831), - [anon_sym_LT_LT] = ACTIONS(4829), - [anon_sym_GT_GT] = ACTIONS(4831), - [anon_sym_GT_GT_GT] = ACTIONS(4829), - [anon_sym_EQ_EQ] = ACTIONS(4829), - [anon_sym_BANG_EQ] = ACTIONS(4829), - [anon_sym_GT_EQ] = ACTIONS(4829), - [anon_sym_LT_EQ] = ACTIONS(4829), - [anon_sym_DOT] = ACTIONS(4831), - [anon_sym_EQ_GT] = ACTIONS(4829), - [anon_sym_switch] = ACTIONS(4829), - [anon_sym_DOT_DOT] = ACTIONS(4829), - [anon_sym_and] = ACTIONS(4829), - [anon_sym_or] = ACTIONS(4831), - [anon_sym_AMP_AMP] = ACTIONS(4829), - [anon_sym_PIPE_PIPE] = ACTIONS(4829), - [anon_sym_QMARK_QMARK] = ACTIONS(4829), - [anon_sym_from] = ACTIONS(4829), - [anon_sym_join] = ACTIONS(4829), - [anon_sym_on] = ACTIONS(4829), - [anon_sym_equals] = ACTIONS(4829), - [anon_sym_let] = ACTIONS(4829), - [anon_sym_orderby] = ACTIONS(4829), - [anon_sym_group] = ACTIONS(4829), - [anon_sym_by] = ACTIONS(4829), - [anon_sym_select] = ACTIONS(4829), - [anon_sym_as] = ACTIONS(4829), - [anon_sym_is] = ACTIONS(4829), - [anon_sym_DASH_GT] = ACTIONS(4829), - [anon_sym_with] = ACTIONS(4829), - [aux_sym_preproc_if_token3] = ACTIONS(4829), - [aux_sym_preproc_else_token1] = ACTIONS(4829), - [aux_sym_preproc_elif_token1] = ACTIONS(4829), + [anon_sym_SEMI] = ACTIONS(4002), + [anon_sym_LBRACK] = ACTIONS(4002), + [anon_sym_COLON] = ACTIONS(4002), + [anon_sym_COMMA] = ACTIONS(4002), + [anon_sym_RBRACK] = ACTIONS(4002), + [anon_sym_LPAREN] = ACTIONS(4002), + [anon_sym_RPAREN] = ACTIONS(4002), + [anon_sym_LBRACE] = ACTIONS(4002), + [anon_sym_RBRACE] = ACTIONS(4002), + [anon_sym_LT] = ACTIONS(4000), + [anon_sym_GT] = ACTIONS(4000), + [anon_sym_in] = ACTIONS(4000), + [anon_sym_where] = ACTIONS(4002), + [anon_sym_QMARK] = ACTIONS(4000), + [anon_sym_BANG] = ACTIONS(4000), + [anon_sym_PLUS_PLUS] = ACTIONS(4002), + [anon_sym_DASH_DASH] = ACTIONS(4002), + [anon_sym_PLUS] = ACTIONS(4000), + [anon_sym_DASH] = ACTIONS(4000), + [anon_sym_STAR] = ACTIONS(4002), + [anon_sym_SLASH] = ACTIONS(4000), + [anon_sym_PERCENT] = ACTIONS(4002), + [anon_sym_CARET] = ACTIONS(4002), + [anon_sym_PIPE] = ACTIONS(4000), + [anon_sym_AMP] = ACTIONS(4000), + [anon_sym_LT_LT] = ACTIONS(4002), + [anon_sym_GT_GT] = ACTIONS(4000), + [anon_sym_GT_GT_GT] = ACTIONS(4002), + [anon_sym_EQ_EQ] = ACTIONS(4002), + [anon_sym_BANG_EQ] = ACTIONS(4002), + [anon_sym_GT_EQ] = ACTIONS(4002), + [anon_sym_LT_EQ] = ACTIONS(4002), + [anon_sym_DOT] = ACTIONS(4000), + [anon_sym_EQ_GT] = ACTIONS(4002), + [anon_sym_switch] = ACTIONS(4002), + [anon_sym_DOT_DOT] = ACTIONS(4002), + [anon_sym_and] = ACTIONS(4002), + [anon_sym_or] = ACTIONS(4000), + [anon_sym_AMP_AMP] = ACTIONS(4002), + [anon_sym_PIPE_PIPE] = ACTIONS(4002), + [anon_sym_QMARK_QMARK] = ACTIONS(4002), + [anon_sym_from] = ACTIONS(4002), + [anon_sym_into] = ACTIONS(4002), + [anon_sym_join] = ACTIONS(4002), + [anon_sym_on] = ACTIONS(4002), + [anon_sym_equals] = ACTIONS(4002), + [anon_sym_let] = ACTIONS(4002), + [anon_sym_orderby] = ACTIONS(4002), + [anon_sym_group] = ACTIONS(4002), + [anon_sym_by] = ACTIONS(4002), + [anon_sym_select] = ACTIONS(4002), + [anon_sym_as] = ACTIONS(4002), + [anon_sym_is] = ACTIONS(4002), + [anon_sym_DASH_GT] = ACTIONS(4002), + [anon_sym_with] = ACTIONS(4002), + [aux_sym_preproc_if_token3] = ACTIONS(4002), + [aux_sym_preproc_else_token1] = ACTIONS(4002), + [aux_sym_preproc_elif_token1] = ACTIONS(4002), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -466067,64 +465626,64 @@ 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(4114), - [anon_sym_LBRACK] = ACTIONS(4114), - [anon_sym_COLON] = ACTIONS(4114), - [anon_sym_COMMA] = ACTIONS(4114), - [anon_sym_RBRACK] = ACTIONS(4114), - [anon_sym_LPAREN] = ACTIONS(4114), - [anon_sym_RPAREN] = ACTIONS(4114), - [anon_sym_LBRACE] = ACTIONS(4114), - [anon_sym_RBRACE] = ACTIONS(4114), - [anon_sym_LT] = ACTIONS(4112), - [anon_sym_GT] = ACTIONS(4112), - [anon_sym_in] = ACTIONS(4112), - [anon_sym_where] = ACTIONS(4114), - [anon_sym_QMARK] = ACTIONS(4112), - [anon_sym_BANG] = ACTIONS(4112), - [anon_sym_PLUS_PLUS] = ACTIONS(4114), - [anon_sym_DASH_DASH] = ACTIONS(4114), - [anon_sym_PLUS] = ACTIONS(4112), - [anon_sym_DASH] = ACTIONS(4112), - [anon_sym_STAR] = ACTIONS(4114), - [anon_sym_SLASH] = ACTIONS(4112), - [anon_sym_PERCENT] = ACTIONS(4114), - [anon_sym_CARET] = ACTIONS(4114), - [anon_sym_PIPE] = ACTIONS(4112), - [anon_sym_AMP] = ACTIONS(4112), - [anon_sym_LT_LT] = ACTIONS(4114), - [anon_sym_GT_GT] = ACTIONS(4112), - [anon_sym_GT_GT_GT] = ACTIONS(4114), - [anon_sym_EQ_EQ] = ACTIONS(4114), - [anon_sym_BANG_EQ] = ACTIONS(4114), - [anon_sym_GT_EQ] = ACTIONS(4114), - [anon_sym_LT_EQ] = ACTIONS(4114), - [anon_sym_DOT] = ACTIONS(4112), - [anon_sym_EQ_GT] = ACTIONS(4114), - [anon_sym_switch] = ACTIONS(4114), - [anon_sym_DOT_DOT] = ACTIONS(4114), - [anon_sym_and] = ACTIONS(4114), - [anon_sym_or] = ACTIONS(4112), - [anon_sym_AMP_AMP] = ACTIONS(4114), - [anon_sym_PIPE_PIPE] = ACTIONS(4114), - [anon_sym_QMARK_QMARK] = ACTIONS(4114), - [anon_sym_from] = ACTIONS(4114), - [anon_sym_into] = ACTIONS(4114), - [anon_sym_join] = ACTIONS(4114), - [anon_sym_on] = ACTIONS(4114), - [anon_sym_equals] = ACTIONS(4114), - [anon_sym_let] = ACTIONS(4114), - [anon_sym_orderby] = ACTIONS(4114), - [anon_sym_group] = ACTIONS(4114), - [anon_sym_by] = ACTIONS(4114), - [anon_sym_select] = ACTIONS(4114), - [anon_sym_as] = ACTIONS(4114), - [anon_sym_is] = ACTIONS(4114), - [anon_sym_DASH_GT] = ACTIONS(4114), - [anon_sym_with] = ACTIONS(4114), - [aux_sym_preproc_if_token3] = ACTIONS(4114), - [aux_sym_preproc_else_token1] = ACTIONS(4114), - [aux_sym_preproc_elif_token1] = ACTIONS(4114), + [anon_sym_SEMI] = ACTIONS(3990), + [anon_sym_LBRACK] = ACTIONS(3990), + [anon_sym_COLON] = ACTIONS(3990), + [anon_sym_COMMA] = ACTIONS(3990), + [anon_sym_RBRACK] = ACTIONS(3990), + [anon_sym_LPAREN] = ACTIONS(3990), + [anon_sym_RPAREN] = ACTIONS(3990), + [anon_sym_LBRACE] = ACTIONS(3990), + [anon_sym_RBRACE] = ACTIONS(3990), + [anon_sym_LT] = ACTIONS(3988), + [anon_sym_GT] = ACTIONS(3988), + [anon_sym_in] = ACTIONS(3988), + [anon_sym_where] = ACTIONS(3990), + [anon_sym_QMARK] = ACTIONS(3988), + [anon_sym_BANG] = ACTIONS(3988), + [anon_sym_PLUS_PLUS] = ACTIONS(3990), + [anon_sym_DASH_DASH] = ACTIONS(3990), + [anon_sym_PLUS] = ACTIONS(3988), + [anon_sym_DASH] = ACTIONS(3988), + [anon_sym_STAR] = ACTIONS(3990), + [anon_sym_SLASH] = ACTIONS(3988), + [anon_sym_PERCENT] = ACTIONS(3990), + [anon_sym_CARET] = ACTIONS(3990), + [anon_sym_PIPE] = ACTIONS(3988), + [anon_sym_AMP] = ACTIONS(3988), + [anon_sym_LT_LT] = ACTIONS(3990), + [anon_sym_GT_GT] = ACTIONS(3988), + [anon_sym_GT_GT_GT] = ACTIONS(3990), + [anon_sym_EQ_EQ] = ACTIONS(3990), + [anon_sym_BANG_EQ] = ACTIONS(3990), + [anon_sym_GT_EQ] = ACTIONS(3990), + [anon_sym_LT_EQ] = ACTIONS(3990), + [anon_sym_DOT] = ACTIONS(3988), + [anon_sym_EQ_GT] = ACTIONS(3990), + [anon_sym_switch] = ACTIONS(3990), + [anon_sym_DOT_DOT] = ACTIONS(3990), + [anon_sym_and] = ACTIONS(3990), + [anon_sym_or] = ACTIONS(3988), + [anon_sym_AMP_AMP] = ACTIONS(3990), + [anon_sym_PIPE_PIPE] = ACTIONS(3990), + [anon_sym_QMARK_QMARK] = ACTIONS(3990), + [anon_sym_from] = ACTIONS(3990), + [anon_sym_into] = ACTIONS(3990), + [anon_sym_join] = ACTIONS(3990), + [anon_sym_on] = ACTIONS(3990), + [anon_sym_equals] = ACTIONS(3990), + [anon_sym_let] = ACTIONS(3990), + [anon_sym_orderby] = ACTIONS(3990), + [anon_sym_group] = ACTIONS(3990), + [anon_sym_by] = ACTIONS(3990), + [anon_sym_select] = ACTIONS(3990), + [anon_sym_as] = ACTIONS(3990), + [anon_sym_is] = ACTIONS(3990), + [anon_sym_DASH_GT] = ACTIONS(3990), + [anon_sym_with] = ACTIONS(3990), + [aux_sym_preproc_if_token3] = ACTIONS(3990), + [aux_sym_preproc_else_token1] = ACTIONS(3990), + [aux_sym_preproc_elif_token1] = ACTIONS(3990), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -466146,64 +465705,64 @@ 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_SEMI] = ACTIONS(3687), - [anon_sym_LBRACK] = ACTIONS(3687), - [anon_sym_COLON] = ACTIONS(3687), - [anon_sym_COMMA] = ACTIONS(3687), - [anon_sym_RBRACK] = ACTIONS(3687), - [anon_sym_LPAREN] = ACTIONS(3687), - [anon_sym_RPAREN] = ACTIONS(3687), - [anon_sym_LBRACE] = ACTIONS(3687), - [anon_sym_RBRACE] = ACTIONS(3687), - [anon_sym_LT] = ACTIONS(3685), - [anon_sym_GT] = ACTIONS(3685), - [anon_sym_in] = ACTIONS(3685), - [anon_sym_where] = ACTIONS(3687), - [anon_sym_QMARK] = ACTIONS(3685), - [anon_sym_BANG] = ACTIONS(3685), - [anon_sym_PLUS_PLUS] = ACTIONS(3687), - [anon_sym_DASH_DASH] = ACTIONS(3687), - [anon_sym_PLUS] = ACTIONS(3685), - [anon_sym_DASH] = ACTIONS(3685), - [anon_sym_STAR] = ACTIONS(3687), - [anon_sym_SLASH] = ACTIONS(3685), - [anon_sym_PERCENT] = ACTIONS(3687), - [anon_sym_CARET] = ACTIONS(3687), - [anon_sym_PIPE] = ACTIONS(3685), - [anon_sym_AMP] = ACTIONS(3685), - [anon_sym_LT_LT] = ACTIONS(3687), - [anon_sym_GT_GT] = ACTIONS(3685), - [anon_sym_GT_GT_GT] = ACTIONS(3687), - [anon_sym_EQ_EQ] = ACTIONS(3687), - [anon_sym_BANG_EQ] = ACTIONS(3687), - [anon_sym_GT_EQ] = ACTIONS(3687), - [anon_sym_LT_EQ] = ACTIONS(3687), - [anon_sym_DOT] = ACTIONS(3685), - [anon_sym_EQ_GT] = ACTIONS(3687), - [anon_sym_switch] = ACTIONS(3687), - [anon_sym_DOT_DOT] = ACTIONS(3687), - [anon_sym_and] = ACTIONS(3687), - [anon_sym_or] = ACTIONS(3685), - [anon_sym_AMP_AMP] = ACTIONS(3687), - [anon_sym_PIPE_PIPE] = ACTIONS(3687), - [anon_sym_QMARK_QMARK] = ACTIONS(3687), - [anon_sym_from] = ACTIONS(3687), - [anon_sym_into] = ACTIONS(3687), - [anon_sym_join] = ACTIONS(3687), - [anon_sym_on] = ACTIONS(3687), - [anon_sym_equals] = ACTIONS(3687), - [anon_sym_let] = ACTIONS(3687), - [anon_sym_orderby] = ACTIONS(3687), - [anon_sym_group] = ACTIONS(3687), - [anon_sym_by] = ACTIONS(3687), - [anon_sym_select] = ACTIONS(3687), - [anon_sym_as] = ACTIONS(3687), - [anon_sym_is] = ACTIONS(3687), - [anon_sym_DASH_GT] = ACTIONS(3687), - [anon_sym_with] = ACTIONS(3687), - [aux_sym_preproc_if_token3] = ACTIONS(3687), - [aux_sym_preproc_else_token1] = ACTIONS(3687), - [aux_sym_preproc_elif_token1] = ACTIONS(3687), + [anon_sym_SEMI] = ACTIONS(3657), + [anon_sym_LBRACK] = ACTIONS(3657), + [anon_sym_COLON] = ACTIONS(3657), + [anon_sym_COMMA] = ACTIONS(3657), + [anon_sym_RBRACK] = ACTIONS(3657), + [anon_sym_LPAREN] = ACTIONS(3657), + [anon_sym_RPAREN] = ACTIONS(3657), + [anon_sym_LBRACE] = ACTIONS(3657), + [anon_sym_RBRACE] = ACTIONS(3657), + [anon_sym_LT] = ACTIONS(3655), + [anon_sym_GT] = ACTIONS(3655), + [anon_sym_in] = ACTIONS(3655), + [anon_sym_where] = ACTIONS(3657), + [anon_sym_QMARK] = ACTIONS(3655), + [anon_sym_BANG] = ACTIONS(3655), + [anon_sym_PLUS_PLUS] = ACTIONS(3657), + [anon_sym_DASH_DASH] = ACTIONS(3657), + [anon_sym_PLUS] = ACTIONS(3655), + [anon_sym_DASH] = ACTIONS(3655), + [anon_sym_STAR] = ACTIONS(3657), + [anon_sym_SLASH] = ACTIONS(3655), + [anon_sym_PERCENT] = ACTIONS(3657), + [anon_sym_CARET] = ACTIONS(3657), + [anon_sym_PIPE] = ACTIONS(3655), + [anon_sym_AMP] = ACTIONS(3655), + [anon_sym_LT_LT] = ACTIONS(3657), + [anon_sym_GT_GT] = ACTIONS(3655), + [anon_sym_GT_GT_GT] = ACTIONS(3657), + [anon_sym_EQ_EQ] = ACTIONS(3657), + [anon_sym_BANG_EQ] = ACTIONS(3657), + [anon_sym_GT_EQ] = ACTIONS(3657), + [anon_sym_LT_EQ] = ACTIONS(3657), + [anon_sym_DOT] = ACTIONS(3655), + [anon_sym_EQ_GT] = ACTIONS(3657), + [anon_sym_switch] = ACTIONS(3657), + [anon_sym_DOT_DOT] = ACTIONS(3657), + [anon_sym_and] = ACTIONS(3657), + [anon_sym_or] = ACTIONS(3655), + [anon_sym_AMP_AMP] = ACTIONS(3657), + [anon_sym_PIPE_PIPE] = ACTIONS(3657), + [anon_sym_QMARK_QMARK] = ACTIONS(3657), + [anon_sym_from] = ACTIONS(3657), + [anon_sym_into] = ACTIONS(3657), + [anon_sym_join] = ACTIONS(3657), + [anon_sym_on] = ACTIONS(3657), + [anon_sym_equals] = ACTIONS(3657), + [anon_sym_let] = ACTIONS(3657), + [anon_sym_orderby] = ACTIONS(3657), + [anon_sym_group] = ACTIONS(3657), + [anon_sym_by] = ACTIONS(3657), + [anon_sym_select] = ACTIONS(3657), + [anon_sym_as] = ACTIONS(3657), + [anon_sym_is] = ACTIONS(3657), + [anon_sym_DASH_GT] = ACTIONS(3657), + [anon_sym_with] = ACTIONS(3657), + [aux_sym_preproc_if_token3] = ACTIONS(3657), + [aux_sym_preproc_else_token1] = ACTIONS(3657), + [aux_sym_preproc_elif_token1] = ACTIONS(3657), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -466225,64 +465784,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), - [anon_sym_EQ] = ACTIONS(4898), - [anon_sym_LBRACK] = ACTIONS(4860), - [anon_sym_COMMA] = ACTIONS(4860), - [anon_sym_LPAREN] = ACTIONS(4860), - [anon_sym_LT] = ACTIONS(4862), - [anon_sym_GT] = ACTIONS(4862), - [anon_sym_where] = ACTIONS(4860), - [anon_sym_QMARK] = ACTIONS(4862), - [anon_sym_BANG] = ACTIONS(4862), - [anon_sym_PLUS_PLUS] = ACTIONS(4860), - [anon_sym_DASH_DASH] = ACTIONS(4860), - [anon_sym_PLUS] = ACTIONS(4862), - [anon_sym_DASH] = ACTIONS(4862), - [anon_sym_STAR] = ACTIONS(4862), - [anon_sym_SLASH] = ACTIONS(4862), - [anon_sym_PERCENT] = ACTIONS(4862), - [anon_sym_CARET] = ACTIONS(4862), - [anon_sym_PIPE] = ACTIONS(4862), - [anon_sym_AMP] = ACTIONS(4862), - [anon_sym_LT_LT] = ACTIONS(4862), - [anon_sym_GT_GT] = ACTIONS(4862), - [anon_sym_GT_GT_GT] = ACTIONS(4862), - [anon_sym_EQ_EQ] = ACTIONS(4860), - [anon_sym_BANG_EQ] = ACTIONS(4860), - [anon_sym_GT_EQ] = ACTIONS(4860), - [anon_sym_LT_EQ] = ACTIONS(4860), - [anon_sym_DOT] = ACTIONS(4862), - [anon_sym_switch] = ACTIONS(4860), - [anon_sym_DOT_DOT] = ACTIONS(4860), - [anon_sym_and] = ACTIONS(4860), - [anon_sym_or] = ACTIONS(4862), - [anon_sym_PLUS_EQ] = ACTIONS(4900), - [anon_sym_DASH_EQ] = ACTIONS(4900), - [anon_sym_STAR_EQ] = ACTIONS(4900), - [anon_sym_SLASH_EQ] = ACTIONS(4900), - [anon_sym_PERCENT_EQ] = ACTIONS(4900), - [anon_sym_AMP_EQ] = ACTIONS(4900), - [anon_sym_CARET_EQ] = ACTIONS(4900), - [anon_sym_PIPE_EQ] = ACTIONS(4900), - [anon_sym_LT_LT_EQ] = ACTIONS(4900), - [anon_sym_GT_GT_EQ] = ACTIONS(4900), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(4900), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(4900), - [anon_sym_AMP_AMP] = ACTIONS(4860), - [anon_sym_PIPE_PIPE] = ACTIONS(4860), - [anon_sym_QMARK_QMARK] = ACTIONS(4862), - [anon_sym_from] = ACTIONS(4860), - [anon_sym_join] = ACTIONS(4860), - [anon_sym_let] = ACTIONS(4860), - [anon_sym_orderby] = ACTIONS(4860), - [anon_sym_ascending] = ACTIONS(4860), - [anon_sym_descending] = ACTIONS(4860), - [anon_sym_group] = ACTIONS(4860), - [anon_sym_select] = ACTIONS(4860), - [anon_sym_as] = ACTIONS(4862), - [anon_sym_is] = ACTIONS(4860), - [anon_sym_DASH_GT] = ACTIONS(4860), - [anon_sym_with] = ACTIONS(4860), + [anon_sym_SEMI] = ACTIONS(4903), + [anon_sym_LBRACK] = ACTIONS(4903), + [anon_sym_COLON] = ACTIONS(4903), + [anon_sym_COMMA] = ACTIONS(4903), + [anon_sym_RBRACK] = ACTIONS(4903), + [anon_sym_LPAREN] = ACTIONS(4903), + [anon_sym_RPAREN] = ACTIONS(4903), + [anon_sym_RBRACE] = ACTIONS(4903), + [anon_sym_LT] = ACTIONS(4905), + [anon_sym_GT] = ACTIONS(4905), + [anon_sym_in] = ACTIONS(4905), + [anon_sym_where] = ACTIONS(4903), + [anon_sym_QMARK] = ACTIONS(4905), + [anon_sym_BANG] = ACTIONS(4905), + [anon_sym_PLUS_PLUS] = ACTIONS(4903), + [anon_sym_DASH_DASH] = ACTIONS(4903), + [anon_sym_PLUS] = ACTIONS(4905), + [anon_sym_DASH] = ACTIONS(4905), + [anon_sym_STAR] = ACTIONS(4903), + [anon_sym_SLASH] = ACTIONS(4905), + [anon_sym_PERCENT] = ACTIONS(4903), + [anon_sym_CARET] = ACTIONS(4903), + [anon_sym_PIPE] = ACTIONS(4905), + [anon_sym_AMP] = ACTIONS(4905), + [anon_sym_LT_LT] = ACTIONS(4903), + [anon_sym_GT_GT] = ACTIONS(4905), + [anon_sym_GT_GT_GT] = ACTIONS(4903), + [anon_sym_EQ_EQ] = ACTIONS(4903), + [anon_sym_BANG_EQ] = ACTIONS(4903), + [anon_sym_GT_EQ] = ACTIONS(4903), + [anon_sym_LT_EQ] = ACTIONS(4903), + [anon_sym_DOT] = ACTIONS(4905), + [anon_sym_EQ_GT] = ACTIONS(4903), + [anon_sym_switch] = ACTIONS(4903), + [anon_sym_DOT_DOT] = ACTIONS(4903), + [anon_sym_and] = ACTIONS(4903), + [anon_sym_or] = ACTIONS(4905), + [anon_sym_AMP_AMP] = ACTIONS(4903), + [anon_sym_PIPE_PIPE] = ACTIONS(4903), + [anon_sym_QMARK_QMARK] = ACTIONS(4903), + [anon_sym_from] = ACTIONS(4903), + [anon_sym_into] = ACTIONS(4903), + [anon_sym_join] = ACTIONS(4903), + [anon_sym_on] = ACTIONS(4903), + [anon_sym_equals] = ACTIONS(4903), + [anon_sym_let] = ACTIONS(4903), + [anon_sym_orderby] = ACTIONS(4903), + [anon_sym_group] = ACTIONS(4903), + [anon_sym_by] = ACTIONS(4903), + [anon_sym_select] = ACTIONS(4903), + [anon_sym_as] = ACTIONS(4903), + [anon_sym_is] = ACTIONS(4903), + [anon_sym_DASH_GT] = ACTIONS(4903), + [anon_sym_with] = ACTIONS(4903), + [aux_sym_raw_string_literal_token1] = ACTIONS(4907), + [aux_sym_preproc_if_token3] = ACTIONS(4903), + [aux_sym_preproc_else_token1] = ACTIONS(4903), + [aux_sym_preproc_elif_token1] = ACTIONS(4903), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -466304,64 +465863,64 @@ 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_SEMI] = ACTIONS(4122), - [anon_sym_LBRACK] = ACTIONS(4122), - [anon_sym_COLON] = ACTIONS(4122), - [anon_sym_COMMA] = ACTIONS(4122), - [anon_sym_RBRACK] = ACTIONS(4122), - [anon_sym_LPAREN] = ACTIONS(4122), - [anon_sym_RPAREN] = ACTIONS(4122), - [anon_sym_LBRACE] = ACTIONS(4122), - [anon_sym_RBRACE] = ACTIONS(4122), - [anon_sym_LT] = ACTIONS(4120), - [anon_sym_GT] = ACTIONS(4120), - [anon_sym_in] = ACTIONS(4120), - [anon_sym_where] = ACTIONS(4122), - [anon_sym_QMARK] = ACTIONS(4120), - [anon_sym_BANG] = ACTIONS(4120), - [anon_sym_PLUS_PLUS] = ACTIONS(4122), - [anon_sym_DASH_DASH] = ACTIONS(4122), - [anon_sym_PLUS] = ACTIONS(4120), - [anon_sym_DASH] = ACTIONS(4120), - [anon_sym_STAR] = ACTIONS(4122), - [anon_sym_SLASH] = ACTIONS(4120), - [anon_sym_PERCENT] = ACTIONS(4122), - [anon_sym_CARET] = ACTIONS(4122), - [anon_sym_PIPE] = ACTIONS(4120), - [anon_sym_AMP] = ACTIONS(4120), - [anon_sym_LT_LT] = ACTIONS(4122), - [anon_sym_GT_GT] = ACTIONS(4120), - [anon_sym_GT_GT_GT] = ACTIONS(4122), - [anon_sym_EQ_EQ] = ACTIONS(4122), - [anon_sym_BANG_EQ] = ACTIONS(4122), - [anon_sym_GT_EQ] = ACTIONS(4122), - [anon_sym_LT_EQ] = ACTIONS(4122), - [anon_sym_DOT] = ACTIONS(4120), - [anon_sym_EQ_GT] = ACTIONS(4122), - [anon_sym_switch] = ACTIONS(4122), - [anon_sym_DOT_DOT] = ACTIONS(4122), - [anon_sym_and] = ACTIONS(4122), - [anon_sym_or] = ACTIONS(4120), - [anon_sym_AMP_AMP] = ACTIONS(4122), - [anon_sym_PIPE_PIPE] = ACTIONS(4122), - [anon_sym_QMARK_QMARK] = ACTIONS(4122), - [anon_sym_from] = ACTIONS(4122), - [anon_sym_into] = ACTIONS(4122), - [anon_sym_join] = ACTIONS(4122), - [anon_sym_on] = ACTIONS(4122), - [anon_sym_equals] = ACTIONS(4122), - [anon_sym_let] = ACTIONS(4122), - [anon_sym_orderby] = ACTIONS(4122), - [anon_sym_group] = ACTIONS(4122), - [anon_sym_by] = ACTIONS(4122), - [anon_sym_select] = ACTIONS(4122), - [anon_sym_as] = ACTIONS(4122), - [anon_sym_is] = ACTIONS(4122), - [anon_sym_DASH_GT] = ACTIONS(4122), - [anon_sym_with] = ACTIONS(4122), - [aux_sym_preproc_if_token3] = ACTIONS(4122), - [aux_sym_preproc_else_token1] = ACTIONS(4122), - [aux_sym_preproc_elif_token1] = ACTIONS(4122), + [anon_sym_SEMI] = ACTIONS(3640), + [anon_sym_LBRACK] = ACTIONS(3640), + [anon_sym_COLON] = ACTIONS(3640), + [anon_sym_COMMA] = ACTIONS(3640), + [anon_sym_RBRACK] = ACTIONS(3640), + [anon_sym_LPAREN] = ACTIONS(3640), + [anon_sym_RPAREN] = ACTIONS(3640), + [anon_sym_LBRACE] = ACTIONS(3640), + [anon_sym_RBRACE] = ACTIONS(3640), + [anon_sym_LT] = ACTIONS(3638), + [anon_sym_GT] = ACTIONS(3638), + [anon_sym_in] = ACTIONS(3638), + [anon_sym_where] = ACTIONS(3640), + [anon_sym_QMARK] = ACTIONS(3638), + [anon_sym_BANG] = ACTIONS(3638), + [anon_sym_PLUS_PLUS] = ACTIONS(3640), + [anon_sym_DASH_DASH] = ACTIONS(3640), + [anon_sym_PLUS] = ACTIONS(3638), + [anon_sym_DASH] = ACTIONS(3638), + [anon_sym_STAR] = ACTIONS(3640), + [anon_sym_SLASH] = ACTIONS(3638), + [anon_sym_PERCENT] = ACTIONS(3640), + [anon_sym_CARET] = ACTIONS(3640), + [anon_sym_PIPE] = ACTIONS(3638), + [anon_sym_AMP] = ACTIONS(3638), + [anon_sym_LT_LT] = ACTIONS(3640), + [anon_sym_GT_GT] = ACTIONS(3638), + [anon_sym_GT_GT_GT] = ACTIONS(3640), + [anon_sym_EQ_EQ] = ACTIONS(3640), + [anon_sym_BANG_EQ] = ACTIONS(3640), + [anon_sym_GT_EQ] = ACTIONS(3640), + [anon_sym_LT_EQ] = ACTIONS(3640), + [anon_sym_DOT] = ACTIONS(3638), + [anon_sym_EQ_GT] = ACTIONS(3640), + [anon_sym_switch] = ACTIONS(3640), + [anon_sym_DOT_DOT] = ACTIONS(3640), + [anon_sym_and] = ACTIONS(3640), + [anon_sym_or] = ACTIONS(3638), + [anon_sym_AMP_AMP] = ACTIONS(3640), + [anon_sym_PIPE_PIPE] = ACTIONS(3640), + [anon_sym_QMARK_QMARK] = ACTIONS(3640), + [anon_sym_from] = ACTIONS(3640), + [anon_sym_into] = ACTIONS(3640), + [anon_sym_join] = ACTIONS(3640), + [anon_sym_on] = ACTIONS(3640), + [anon_sym_equals] = ACTIONS(3640), + [anon_sym_let] = ACTIONS(3640), + [anon_sym_orderby] = ACTIONS(3640), + [anon_sym_group] = ACTIONS(3640), + [anon_sym_by] = ACTIONS(3640), + [anon_sym_select] = ACTIONS(3640), + [anon_sym_as] = ACTIONS(3640), + [anon_sym_is] = ACTIONS(3640), + [anon_sym_DASH_GT] = ACTIONS(3640), + [anon_sym_with] = ACTIONS(3640), + [aux_sym_preproc_if_token3] = ACTIONS(3640), + [aux_sym_preproc_else_token1] = ACTIONS(3640), + [aux_sym_preproc_elif_token1] = ACTIONS(3640), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -466383,64 +465942,63 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2951), [sym_preproc_define] = STATE(2951), [sym_preproc_undef] = STATE(2951), - [anon_sym_SEMI] = ACTIONS(4126), - [anon_sym_LBRACK] = ACTIONS(4126), - [anon_sym_COLON] = ACTIONS(4126), - [anon_sym_COMMA] = ACTIONS(4126), - [anon_sym_RBRACK] = ACTIONS(4126), - [anon_sym_LPAREN] = ACTIONS(4126), - [anon_sym_RPAREN] = ACTIONS(4126), - [anon_sym_LBRACE] = ACTIONS(4126), - [anon_sym_RBRACE] = ACTIONS(4126), - [anon_sym_LT] = ACTIONS(4124), - [anon_sym_GT] = ACTIONS(4124), - [anon_sym_in] = ACTIONS(4124), - [anon_sym_where] = ACTIONS(4126), - [anon_sym_QMARK] = ACTIONS(4124), - [anon_sym_BANG] = ACTIONS(4124), - [anon_sym_PLUS_PLUS] = ACTIONS(4126), - [anon_sym_DASH_DASH] = ACTIONS(4126), - [anon_sym_PLUS] = ACTIONS(4124), - [anon_sym_DASH] = ACTIONS(4124), - [anon_sym_STAR] = ACTIONS(4126), - [anon_sym_SLASH] = ACTIONS(4124), - [anon_sym_PERCENT] = ACTIONS(4126), - [anon_sym_CARET] = ACTIONS(4126), - [anon_sym_PIPE] = ACTIONS(4124), - [anon_sym_AMP] = ACTIONS(4124), - [anon_sym_LT_LT] = ACTIONS(4126), - [anon_sym_GT_GT] = ACTIONS(4124), - [anon_sym_GT_GT_GT] = ACTIONS(4126), - [anon_sym_EQ_EQ] = ACTIONS(4126), - [anon_sym_BANG_EQ] = ACTIONS(4126), - [anon_sym_GT_EQ] = ACTIONS(4126), - [anon_sym_LT_EQ] = ACTIONS(4126), - [anon_sym_DOT] = ACTIONS(4124), - [anon_sym_EQ_GT] = ACTIONS(4126), - [anon_sym_switch] = ACTIONS(4126), - [anon_sym_DOT_DOT] = ACTIONS(4126), - [anon_sym_and] = ACTIONS(4126), - [anon_sym_or] = ACTIONS(4124), - [anon_sym_AMP_AMP] = ACTIONS(4126), - [anon_sym_PIPE_PIPE] = ACTIONS(4126), - [anon_sym_QMARK_QMARK] = ACTIONS(4126), - [anon_sym_from] = ACTIONS(4126), - [anon_sym_into] = ACTIONS(4126), - [anon_sym_join] = ACTIONS(4126), - [anon_sym_on] = ACTIONS(4126), - [anon_sym_equals] = ACTIONS(4126), - [anon_sym_let] = ACTIONS(4126), - [anon_sym_orderby] = ACTIONS(4126), - [anon_sym_group] = ACTIONS(4126), - [anon_sym_by] = ACTIONS(4126), - [anon_sym_select] = ACTIONS(4126), - [anon_sym_as] = ACTIONS(4126), - [anon_sym_is] = ACTIONS(4126), - [anon_sym_DASH_GT] = ACTIONS(4126), - [anon_sym_with] = ACTIONS(4126), - [aux_sym_preproc_if_token3] = ACTIONS(4126), - [aux_sym_preproc_else_token1] = ACTIONS(4126), - [aux_sym_preproc_elif_token1] = ACTIONS(4126), + [sym__identifier_token] = ACTIONS(3757), + [anon_sym_extern] = ACTIONS(3757), + [anon_sym_alias] = ACTIONS(3757), + [anon_sym_global] = ACTIONS(3757), + [anon_sym_unsafe] = ACTIONS(3757), + [anon_sym_static] = ACTIONS(3757), + [anon_sym_LBRACK] = ACTIONS(3759), + [anon_sym_LPAREN] = ACTIONS(3759), + [anon_sym_event] = ACTIONS(3757), + [anon_sym_class] = ACTIONS(3757), + [anon_sym_ref] = ACTIONS(3757), + [anon_sym_struct] = ACTIONS(3757), + [anon_sym_enum] = ACTIONS(3757), + [anon_sym_interface] = ACTIONS(3757), + [anon_sym_delegate] = ACTIONS(3757), + [anon_sym_record] = ACTIONS(3757), + [anon_sym_abstract] = ACTIONS(3757), + [anon_sym_async] = ACTIONS(3757), + [anon_sym_const] = ACTIONS(3757), + [anon_sym_file] = ACTIONS(3757), + [anon_sym_fixed] = ACTIONS(3757), + [anon_sym_internal] = ACTIONS(3757), + [anon_sym_new] = ACTIONS(3757), + [anon_sym_override] = ACTIONS(3757), + [anon_sym_partial] = ACTIONS(3757), + [anon_sym_private] = ACTIONS(3757), + [anon_sym_protected] = ACTIONS(3757), + [anon_sym_public] = ACTIONS(3757), + [anon_sym_readonly] = ACTIONS(3757), + [anon_sym_required] = ACTIONS(3757), + [anon_sym_sealed] = ACTIONS(3757), + [anon_sym_virtual] = ACTIONS(3757), + [anon_sym_volatile] = ACTIONS(3757), + [anon_sym_where] = ACTIONS(3757), + [anon_sym_notnull] = ACTIONS(3757), + [anon_sym_unmanaged] = ACTIONS(3757), + [anon_sym_TILDE] = ACTIONS(3759), + [anon_sym_implicit] = ACTIONS(3757), + [anon_sym_explicit] = ACTIONS(3757), + [anon_sym_scoped] = ACTIONS(3757), + [anon_sym_var] = ACTIONS(3757), + [sym_predefined_type] = ACTIONS(3757), + [anon_sym_yield] = ACTIONS(3757), + [anon_sym_when] = ACTIONS(3757), + [anon_sym_from] = ACTIONS(3757), + [anon_sym_into] = ACTIONS(3757), + [anon_sym_join] = ACTIONS(3757), + [anon_sym_on] = ACTIONS(3757), + [anon_sym_equals] = ACTIONS(3757), + [anon_sym_let] = ACTIONS(3757), + [anon_sym_orderby] = ACTIONS(3757), + [anon_sym_ascending] = ACTIONS(3757), + [anon_sym_descending] = ACTIONS(3757), + [anon_sym_group] = ACTIONS(3757), + [anon_sym_by] = ACTIONS(3757), + [anon_sym_select] = ACTIONS(3757), + [aux_sym_preproc_if_token1] = ACTIONS(3759), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -466462,64 +466020,63 @@ 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_SEMI] = ACTIONS(3996), - [anon_sym_LBRACK] = ACTIONS(3996), - [anon_sym_COLON] = ACTIONS(3996), - [anon_sym_COMMA] = ACTIONS(3996), - [anon_sym_RBRACK] = ACTIONS(3996), - [anon_sym_LPAREN] = ACTIONS(3996), - [anon_sym_RPAREN] = ACTIONS(3996), - [anon_sym_LBRACE] = ACTIONS(3996), - [anon_sym_RBRACE] = ACTIONS(3996), - [anon_sym_LT] = ACTIONS(3994), - [anon_sym_GT] = ACTIONS(3994), - [anon_sym_in] = ACTIONS(3994), - [anon_sym_where] = ACTIONS(3996), - [anon_sym_QMARK] = ACTIONS(3994), - [anon_sym_BANG] = ACTIONS(3994), - [anon_sym_PLUS_PLUS] = ACTIONS(3996), - [anon_sym_DASH_DASH] = ACTIONS(3996), - [anon_sym_PLUS] = ACTIONS(3994), - [anon_sym_DASH] = ACTIONS(3994), - [anon_sym_STAR] = ACTIONS(3996), - [anon_sym_SLASH] = ACTIONS(3994), - [anon_sym_PERCENT] = ACTIONS(3996), - [anon_sym_CARET] = ACTIONS(3996), - [anon_sym_PIPE] = ACTIONS(3994), - [anon_sym_AMP] = ACTIONS(3994), - [anon_sym_LT_LT] = ACTIONS(3996), - [anon_sym_GT_GT] = ACTIONS(3994), - [anon_sym_GT_GT_GT] = ACTIONS(3996), - [anon_sym_EQ_EQ] = ACTIONS(3996), - [anon_sym_BANG_EQ] = ACTIONS(3996), - [anon_sym_GT_EQ] = ACTIONS(3996), - [anon_sym_LT_EQ] = ACTIONS(3996), - [anon_sym_DOT] = ACTIONS(3994), - [anon_sym_EQ_GT] = ACTIONS(3996), - [anon_sym_switch] = ACTIONS(3996), - [anon_sym_DOT_DOT] = ACTIONS(3996), - [anon_sym_and] = ACTIONS(3996), - [anon_sym_or] = ACTIONS(3994), - [anon_sym_AMP_AMP] = ACTIONS(3996), - [anon_sym_PIPE_PIPE] = ACTIONS(3996), - [anon_sym_QMARK_QMARK] = ACTIONS(3996), - [anon_sym_from] = ACTIONS(3996), - [anon_sym_into] = ACTIONS(3996), - [anon_sym_join] = ACTIONS(3996), - [anon_sym_on] = ACTIONS(3996), - [anon_sym_equals] = ACTIONS(3996), - [anon_sym_let] = ACTIONS(3996), - [anon_sym_orderby] = ACTIONS(3996), - [anon_sym_group] = ACTIONS(3996), - [anon_sym_by] = ACTIONS(3996), - [anon_sym_select] = ACTIONS(3996), - [anon_sym_as] = ACTIONS(3996), - [anon_sym_is] = ACTIONS(3996), - [anon_sym_DASH_GT] = ACTIONS(3996), - [anon_sym_with] = ACTIONS(3996), - [aux_sym_preproc_if_token3] = ACTIONS(3996), - [aux_sym_preproc_else_token1] = ACTIONS(3996), - [aux_sym_preproc_elif_token1] = ACTIONS(3996), + [anon_sym_SEMI] = ACTIONS(3986), + [anon_sym_LBRACK] = ACTIONS(3986), + [anon_sym_COLON] = ACTIONS(3986), + [anon_sym_COMMA] = ACTIONS(3986), + [anon_sym_RBRACK] = ACTIONS(3986), + [anon_sym_LPAREN] = ACTIONS(3986), + [anon_sym_RPAREN] = ACTIONS(3986), + [anon_sym_LBRACE] = ACTIONS(3986), + [anon_sym_RBRACE] = ACTIONS(3986), + [anon_sym_LT] = ACTIONS(3984), + [anon_sym_GT] = ACTIONS(3984), + [anon_sym_in] = ACTIONS(3986), + [anon_sym_where] = ACTIONS(3986), + [anon_sym_QMARK] = ACTIONS(3984), + [anon_sym_BANG] = ACTIONS(3984), + [anon_sym_PLUS_PLUS] = ACTIONS(3986), + [anon_sym_DASH_DASH] = ACTIONS(3986), + [anon_sym_PLUS] = ACTIONS(3984), + [anon_sym_DASH] = ACTIONS(3984), + [anon_sym_STAR] = ACTIONS(3986), + [anon_sym_SLASH] = ACTIONS(3984), + [anon_sym_PERCENT] = ACTIONS(3986), + [anon_sym_CARET] = ACTIONS(3986), + [anon_sym_PIPE] = ACTIONS(3984), + [anon_sym_AMP] = ACTIONS(3984), + [anon_sym_LT_LT] = ACTIONS(3986), + [anon_sym_GT_GT] = ACTIONS(3984), + [anon_sym_GT_GT_GT] = ACTIONS(3986), + [anon_sym_EQ_EQ] = ACTIONS(3986), + [anon_sym_BANG_EQ] = ACTIONS(3986), + [anon_sym_GT_EQ] = ACTIONS(3986), + [anon_sym_LT_EQ] = ACTIONS(3986), + [anon_sym_DOT] = ACTIONS(3984), + [anon_sym_EQ_GT] = ACTIONS(3986), + [anon_sym_switch] = ACTIONS(3986), + [anon_sym_DOT_DOT] = ACTIONS(3986), + [anon_sym_and] = ACTIONS(3986), + [anon_sym_or] = ACTIONS(3984), + [anon_sym_AMP_AMP] = ACTIONS(3986), + [anon_sym_PIPE_PIPE] = ACTIONS(3986), + [anon_sym_QMARK_QMARK] = ACTIONS(3986), + [anon_sym_from] = ACTIONS(3986), + [anon_sym_join] = ACTIONS(3986), + [anon_sym_on] = ACTIONS(3986), + [anon_sym_equals] = ACTIONS(3986), + [anon_sym_let] = ACTIONS(3986), + [anon_sym_orderby] = ACTIONS(3986), + [anon_sym_group] = ACTIONS(3986), + [anon_sym_by] = ACTIONS(3986), + [anon_sym_select] = ACTIONS(3986), + [anon_sym_as] = ACTIONS(3986), + [anon_sym_is] = ACTIONS(3986), + [anon_sym_DASH_GT] = ACTIONS(3986), + [anon_sym_with] = ACTIONS(3986), + [aux_sym_preproc_if_token3] = ACTIONS(3986), + [aux_sym_preproc_else_token1] = ACTIONS(3986), + [aux_sym_preproc_elif_token1] = ACTIONS(3986), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -466541,64 +466098,63 @@ 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_SEMI] = ACTIONS(4110), - [anon_sym_LBRACK] = ACTIONS(4110), - [anon_sym_COLON] = ACTIONS(4110), - [anon_sym_COMMA] = ACTIONS(4110), - [anon_sym_RBRACK] = ACTIONS(4110), - [anon_sym_LPAREN] = ACTIONS(4110), - [anon_sym_RPAREN] = ACTIONS(4110), - [anon_sym_LBRACE] = ACTIONS(4110), - [anon_sym_RBRACE] = ACTIONS(4110), - [anon_sym_LT] = ACTIONS(4108), - [anon_sym_GT] = ACTIONS(4108), - [anon_sym_in] = ACTIONS(4108), - [anon_sym_where] = ACTIONS(4110), - [anon_sym_QMARK] = ACTIONS(4108), - [anon_sym_BANG] = ACTIONS(4108), - [anon_sym_PLUS_PLUS] = ACTIONS(4110), - [anon_sym_DASH_DASH] = ACTIONS(4110), - [anon_sym_PLUS] = ACTIONS(4108), - [anon_sym_DASH] = ACTIONS(4108), - [anon_sym_STAR] = ACTIONS(4110), - [anon_sym_SLASH] = ACTIONS(4108), - [anon_sym_PERCENT] = ACTIONS(4110), - [anon_sym_CARET] = ACTIONS(4110), - [anon_sym_PIPE] = ACTIONS(4108), - [anon_sym_AMP] = ACTIONS(4108), - [anon_sym_LT_LT] = ACTIONS(4110), - [anon_sym_GT_GT] = ACTIONS(4108), - [anon_sym_GT_GT_GT] = ACTIONS(4110), - [anon_sym_EQ_EQ] = ACTIONS(4110), - [anon_sym_BANG_EQ] = ACTIONS(4110), - [anon_sym_GT_EQ] = ACTIONS(4110), - [anon_sym_LT_EQ] = ACTIONS(4110), - [anon_sym_DOT] = ACTIONS(4108), - [anon_sym_EQ_GT] = ACTIONS(4110), - [anon_sym_switch] = ACTIONS(4110), - [anon_sym_DOT_DOT] = ACTIONS(4110), - [anon_sym_and] = ACTIONS(4110), - [anon_sym_or] = ACTIONS(4108), - [anon_sym_AMP_AMP] = ACTIONS(4110), - [anon_sym_PIPE_PIPE] = ACTIONS(4110), - [anon_sym_QMARK_QMARK] = ACTIONS(4110), - [anon_sym_from] = ACTIONS(4110), - [anon_sym_into] = ACTIONS(4110), - [anon_sym_join] = ACTIONS(4110), - [anon_sym_on] = ACTIONS(4110), - [anon_sym_equals] = ACTIONS(4110), - [anon_sym_let] = ACTIONS(4110), - [anon_sym_orderby] = ACTIONS(4110), - [anon_sym_group] = ACTIONS(4110), - [anon_sym_by] = ACTIONS(4110), - [anon_sym_select] = ACTIONS(4110), - [anon_sym_as] = ACTIONS(4110), - [anon_sym_is] = ACTIONS(4110), - [anon_sym_DASH_GT] = ACTIONS(4110), - [anon_sym_with] = ACTIONS(4110), - [aux_sym_preproc_if_token3] = ACTIONS(4110), - [aux_sym_preproc_else_token1] = ACTIONS(4110), - [aux_sym_preproc_elif_token1] = ACTIONS(4110), + [sym__identifier_token] = ACTIONS(4909), + [anon_sym_extern] = ACTIONS(4909), + [anon_sym_alias] = ACTIONS(4909), + [anon_sym_global] = ACTIONS(4909), + [anon_sym_unsafe] = ACTIONS(4909), + [anon_sym_static] = ACTIONS(4909), + [anon_sym_LBRACK] = ACTIONS(4911), + [anon_sym_LPAREN] = ACTIONS(4911), + [anon_sym_event] = ACTIONS(4909), + [anon_sym_class] = ACTIONS(4909), + [anon_sym_ref] = ACTIONS(4909), + [anon_sym_struct] = ACTIONS(4909), + [anon_sym_enum] = ACTIONS(4909), + [anon_sym_interface] = ACTIONS(4909), + [anon_sym_delegate] = ACTIONS(4909), + [anon_sym_record] = ACTIONS(4909), + [anon_sym_abstract] = ACTIONS(4909), + [anon_sym_async] = ACTIONS(4909), + [anon_sym_const] = ACTIONS(4909), + [anon_sym_file] = ACTIONS(4909), + [anon_sym_fixed] = ACTIONS(4909), + [anon_sym_internal] = ACTIONS(4909), + [anon_sym_new] = ACTIONS(4909), + [anon_sym_override] = ACTIONS(4909), + [anon_sym_partial] = ACTIONS(4909), + [anon_sym_private] = ACTIONS(4909), + [anon_sym_protected] = ACTIONS(4909), + [anon_sym_public] = ACTIONS(4909), + [anon_sym_readonly] = ACTIONS(4909), + [anon_sym_required] = ACTIONS(4909), + [anon_sym_sealed] = ACTIONS(4909), + [anon_sym_virtual] = ACTIONS(4909), + [anon_sym_volatile] = ACTIONS(4909), + [anon_sym_where] = ACTIONS(4909), + [anon_sym_notnull] = ACTIONS(4909), + [anon_sym_unmanaged] = ACTIONS(4909), + [anon_sym_TILDE] = ACTIONS(4911), + [anon_sym_implicit] = ACTIONS(4909), + [anon_sym_explicit] = ACTIONS(4909), + [anon_sym_scoped] = ACTIONS(4909), + [anon_sym_var] = ACTIONS(4909), + [sym_predefined_type] = ACTIONS(4909), + [anon_sym_yield] = ACTIONS(4909), + [anon_sym_when] = ACTIONS(4909), + [anon_sym_from] = ACTIONS(4909), + [anon_sym_into] = ACTIONS(4909), + [anon_sym_join] = ACTIONS(4909), + [anon_sym_on] = ACTIONS(4909), + [anon_sym_equals] = ACTIONS(4909), + [anon_sym_let] = ACTIONS(4909), + [anon_sym_orderby] = ACTIONS(4909), + [anon_sym_ascending] = ACTIONS(4909), + [anon_sym_descending] = ACTIONS(4909), + [anon_sym_group] = ACTIONS(4909), + [anon_sym_by] = ACTIONS(4909), + [anon_sym_select] = ACTIONS(4909), + [aux_sym_preproc_if_token1] = ACTIONS(4911), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -466620,64 +466176,63 @@ 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(4902), - [anon_sym_LBRACK] = ACTIONS(4902), - [anon_sym_COLON] = ACTIONS(4902), - [anon_sym_COMMA] = ACTIONS(4902), - [anon_sym_RBRACK] = ACTIONS(4902), - [anon_sym_LPAREN] = ACTIONS(4902), - [anon_sym_RPAREN] = ACTIONS(4902), - [anon_sym_RBRACE] = ACTIONS(4902), - [anon_sym_LT] = ACTIONS(4904), - [anon_sym_GT] = ACTIONS(4904), - [anon_sym_in] = ACTIONS(4904), - [anon_sym_where] = ACTIONS(4902), - [anon_sym_QMARK] = ACTIONS(4904), - [anon_sym_BANG] = ACTIONS(4904), - [anon_sym_PLUS_PLUS] = ACTIONS(4902), - [anon_sym_DASH_DASH] = ACTIONS(4902), - [anon_sym_PLUS] = ACTIONS(4904), - [anon_sym_DASH] = ACTIONS(4904), - [anon_sym_STAR] = ACTIONS(4902), - [anon_sym_SLASH] = ACTIONS(4904), - [anon_sym_PERCENT] = ACTIONS(4902), - [anon_sym_CARET] = ACTIONS(4902), - [anon_sym_PIPE] = ACTIONS(4904), - [anon_sym_AMP] = ACTIONS(4904), - [anon_sym_LT_LT] = ACTIONS(4902), - [anon_sym_GT_GT] = ACTIONS(4904), - [anon_sym_GT_GT_GT] = ACTIONS(4902), - [anon_sym_EQ_EQ] = ACTIONS(4902), - [anon_sym_BANG_EQ] = ACTIONS(4902), - [anon_sym_GT_EQ] = ACTIONS(4902), - [anon_sym_LT_EQ] = ACTIONS(4902), - [anon_sym_DOT] = ACTIONS(4904), - [anon_sym_EQ_GT] = ACTIONS(4902), - [anon_sym_switch] = ACTIONS(4902), - [anon_sym_DOT_DOT] = ACTIONS(4902), - [anon_sym_and] = ACTIONS(4902), - [anon_sym_or] = ACTIONS(4904), - [anon_sym_AMP_AMP] = ACTIONS(4902), - [anon_sym_PIPE_PIPE] = ACTIONS(4902), - [anon_sym_QMARK_QMARK] = ACTIONS(4902), - [anon_sym_from] = ACTIONS(4902), - [anon_sym_into] = ACTIONS(4902), - [anon_sym_join] = ACTIONS(4902), - [anon_sym_on] = ACTIONS(4902), - [anon_sym_equals] = ACTIONS(4902), - [anon_sym_let] = ACTIONS(4902), - [anon_sym_orderby] = ACTIONS(4902), - [anon_sym_group] = ACTIONS(4902), - [anon_sym_by] = ACTIONS(4902), - [anon_sym_select] = ACTIONS(4902), - [anon_sym_as] = ACTIONS(4902), - [anon_sym_is] = ACTIONS(4902), - [anon_sym_DASH_GT] = ACTIONS(4902), - [anon_sym_with] = ACTIONS(4902), - [aux_sym_raw_string_literal_token1] = ACTIONS(4906), - [aux_sym_preproc_if_token3] = ACTIONS(4902), - [aux_sym_preproc_else_token1] = ACTIONS(4902), - [aux_sym_preproc_elif_token1] = ACTIONS(4902), + [anon_sym_SEMI] = ACTIONS(4102), + [anon_sym_LBRACK] = ACTIONS(4102), + [anon_sym_COLON] = ACTIONS(4102), + [anon_sym_COMMA] = ACTIONS(4102), + [anon_sym_RBRACK] = ACTIONS(4102), + [anon_sym_LPAREN] = ACTIONS(4102), + [anon_sym_RPAREN] = ACTIONS(4102), + [anon_sym_LBRACE] = ACTIONS(4102), + [anon_sym_RBRACE] = ACTIONS(4102), + [anon_sym_LT] = ACTIONS(4100), + [anon_sym_GT] = ACTIONS(4100), + [anon_sym_in] = ACTIONS(4102), + [anon_sym_where] = ACTIONS(4102), + [anon_sym_QMARK] = ACTIONS(4100), + [anon_sym_BANG] = ACTIONS(4100), + [anon_sym_PLUS_PLUS] = ACTIONS(4102), + [anon_sym_DASH_DASH] = ACTIONS(4102), + [anon_sym_PLUS] = ACTIONS(4100), + [anon_sym_DASH] = ACTIONS(4100), + [anon_sym_STAR] = ACTIONS(4102), + [anon_sym_SLASH] = ACTIONS(4100), + [anon_sym_PERCENT] = ACTIONS(4102), + [anon_sym_CARET] = ACTIONS(4102), + [anon_sym_PIPE] = ACTIONS(4100), + [anon_sym_AMP] = ACTIONS(4100), + [anon_sym_LT_LT] = ACTIONS(4102), + [anon_sym_GT_GT] = ACTIONS(4100), + [anon_sym_GT_GT_GT] = ACTIONS(4102), + [anon_sym_EQ_EQ] = ACTIONS(4102), + [anon_sym_BANG_EQ] = ACTIONS(4102), + [anon_sym_GT_EQ] = ACTIONS(4102), + [anon_sym_LT_EQ] = ACTIONS(4102), + [anon_sym_DOT] = ACTIONS(4100), + [anon_sym_EQ_GT] = ACTIONS(4102), + [anon_sym_switch] = ACTIONS(4102), + [anon_sym_DOT_DOT] = ACTIONS(4102), + [anon_sym_and] = ACTIONS(4102), + [anon_sym_or] = ACTIONS(4100), + [anon_sym_AMP_AMP] = ACTIONS(4102), + [anon_sym_PIPE_PIPE] = ACTIONS(4102), + [anon_sym_QMARK_QMARK] = ACTIONS(4102), + [anon_sym_from] = 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_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(4102), + [anon_sym_with] = ACTIONS(4102), + [aux_sym_preproc_if_token3] = ACTIONS(4102), + [aux_sym_preproc_else_token1] = ACTIONS(4102), + [aux_sym_preproc_elif_token1] = ACTIONS(4102), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -466699,64 +466254,63 @@ 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(4908), - [anon_sym_LBRACK] = ACTIONS(4908), - [anon_sym_COLON] = ACTIONS(4908), - [anon_sym_COMMA] = ACTIONS(4908), - [anon_sym_RBRACK] = ACTIONS(4908), - [anon_sym_LPAREN] = ACTIONS(4908), - [anon_sym_RPAREN] = ACTIONS(4908), - [anon_sym_LBRACE] = 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(4910), - [anon_sym_PLUS_PLUS] = ACTIONS(4908), - [anon_sym_DASH_DASH] = ACTIONS(4908), - [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(4910), - [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(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(4908), - [anon_sym_DASH_GT] = ACTIONS(4908), - [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), + [anon_sym_SEMI] = ACTIONS(4811), + [anon_sym_EQ] = ACTIONS(4913), + [anon_sym_LBRACK] = ACTIONS(4811), + [anon_sym_COMMA] = ACTIONS(4811), + [anon_sym_RBRACK] = ACTIONS(4811), + [anon_sym_LPAREN] = ACTIONS(4811), + [anon_sym_RPAREN] = ACTIONS(4811), + [anon_sym_RBRACE] = ACTIONS(4811), + [anon_sym_LT] = ACTIONS(4813), + [anon_sym_GT] = ACTIONS(4813), + [anon_sym_QMARK] = ACTIONS(4813), + [anon_sym_BANG] = ACTIONS(4813), + [anon_sym_PLUS_PLUS] = ACTIONS(4811), + [anon_sym_DASH_DASH] = ACTIONS(4811), + [anon_sym_PLUS] = ACTIONS(4813), + [anon_sym_DASH] = ACTIONS(4813), + [anon_sym_STAR] = ACTIONS(4813), + [anon_sym_SLASH] = ACTIONS(4813), + [anon_sym_PERCENT] = ACTIONS(4813), + [anon_sym_CARET] = ACTIONS(4813), + [anon_sym_PIPE] = ACTIONS(4813), + [anon_sym_AMP] = ACTIONS(4813), + [anon_sym_LT_LT] = ACTIONS(4813), + [anon_sym_GT_GT] = ACTIONS(4813), + [anon_sym_GT_GT_GT] = ACTIONS(4813), + [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(4813), + [anon_sym_switch] = ACTIONS(4811), + [anon_sym_DOT_DOT] = ACTIONS(4811), + [anon_sym_and] = ACTIONS(4811), + [anon_sym_or] = ACTIONS(4811), + [anon_sym_PLUS_EQ] = ACTIONS(4915), + [anon_sym_DASH_EQ] = ACTIONS(4915), + [anon_sym_STAR_EQ] = ACTIONS(4915), + [anon_sym_SLASH_EQ] = ACTIONS(4915), + [anon_sym_PERCENT_EQ] = ACTIONS(4915), + [anon_sym_AMP_EQ] = ACTIONS(4915), + [anon_sym_CARET_EQ] = ACTIONS(4915), + [anon_sym_PIPE_EQ] = ACTIONS(4915), + [anon_sym_LT_LT_EQ] = ACTIONS(4915), + [anon_sym_GT_GT_EQ] = ACTIONS(4915), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(4915), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(4915), + [anon_sym_AMP_AMP] = ACTIONS(4811), + [anon_sym_PIPE_PIPE] = ACTIONS(4811), + [anon_sym_QMARK_QMARK] = ACTIONS(4813), + [anon_sym_into] = 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), @@ -466769,7 +466323,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2956] = { - [sym_initializer_expression] = STATE(3095), [sym_preproc_region] = STATE(2956), [sym_preproc_endregion] = STATE(2956), [sym_preproc_line] = STATE(2956), @@ -466779,63 +466332,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(4018), - [anon_sym_LBRACK] = ACTIONS(4912), - [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(4919), - [anon_sym_RBRACE] = ACTIONS(4916), - [anon_sym_LT] = ACTIONS(4922), - [anon_sym_GT] = ACTIONS(4922), - [anon_sym_in] = ACTIONS(4916), - [anon_sym_where] = ACTIONS(4916), - [anon_sym_QMARK] = ACTIONS(4925), - [anon_sym_BANG] = ACTIONS(4922), - [anon_sym_PLUS_PLUS] = ACTIONS(4916), - [anon_sym_DASH_DASH] = ACTIONS(4916), - [anon_sym_PLUS] = ACTIONS(4922), - [anon_sym_DASH] = ACTIONS(4922), - [anon_sym_STAR] = ACTIONS(4916), - [anon_sym_SLASH] = ACTIONS(4922), - [anon_sym_PERCENT] = ACTIONS(4916), - [anon_sym_CARET] = ACTIONS(4916), - [anon_sym_PIPE] = ACTIONS(4922), - [anon_sym_AMP] = ACTIONS(4922), - [anon_sym_LT_LT] = ACTIONS(4916), - [anon_sym_GT_GT] = ACTIONS(4922), - [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(4922), - [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(4922), - [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_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(4917), + [anon_sym_LBRACK] = ACTIONS(4917), + [anon_sym_COLON] = ACTIONS(4917), + [anon_sym_COMMA] = ACTIONS(4917), + [anon_sym_RBRACK] = ACTIONS(4917), + [anon_sym_LPAREN] = ACTIONS(4917), + [anon_sym_RPAREN] = ACTIONS(4917), + [anon_sym_RBRACE] = ACTIONS(4917), + [anon_sym_LT] = ACTIONS(4919), + [anon_sym_GT] = ACTIONS(4919), + [anon_sym_in] = ACTIONS(4919), + [anon_sym_where] = ACTIONS(4917), + [anon_sym_QMARK] = ACTIONS(4919), + [anon_sym_BANG] = ACTIONS(4919), + [anon_sym_PLUS_PLUS] = ACTIONS(4917), + [anon_sym_DASH_DASH] = ACTIONS(4917), + [anon_sym_PLUS] = ACTIONS(4919), + [anon_sym_DASH] = ACTIONS(4919), + [anon_sym_STAR] = ACTIONS(4917), + [anon_sym_SLASH] = ACTIONS(4919), + [anon_sym_PERCENT] = ACTIONS(4917), + [anon_sym_CARET] = ACTIONS(4917), + [anon_sym_PIPE] = ACTIONS(4919), + [anon_sym_AMP] = ACTIONS(4919), + [anon_sym_LT_LT] = ACTIONS(4917), + [anon_sym_GT_GT] = ACTIONS(4919), + [anon_sym_GT_GT_GT] = ACTIONS(4917), + [anon_sym_EQ_EQ] = ACTIONS(4917), + [anon_sym_BANG_EQ] = ACTIONS(4917), + [anon_sym_GT_EQ] = ACTIONS(4917), + [anon_sym_LT_EQ] = ACTIONS(4917), + [anon_sym_DOT] = ACTIONS(4919), + [anon_sym_EQ_GT] = ACTIONS(4917), + [anon_sym_switch] = ACTIONS(4917), + [anon_sym_DOT_DOT] = ACTIONS(4917), + [anon_sym_and] = ACTIONS(4917), + [anon_sym_or] = ACTIONS(4919), + [anon_sym_AMP_AMP] = ACTIONS(4917), + [anon_sym_PIPE_PIPE] = ACTIONS(4917), + [anon_sym_QMARK_QMARK] = ACTIONS(4917), + [anon_sym_from] = ACTIONS(4917), + [anon_sym_into] = ACTIONS(4917), + [anon_sym_join] = ACTIONS(4917), + [anon_sym_on] = ACTIONS(4917), + [anon_sym_equals] = ACTIONS(4917), + [anon_sym_let] = ACTIONS(4917), + [anon_sym_orderby] = ACTIONS(4917), + [anon_sym_group] = ACTIONS(4917), + [anon_sym_by] = ACTIONS(4917), + [anon_sym_select] = ACTIONS(4917), + [anon_sym_as] = ACTIONS(4917), + [anon_sym_is] = ACTIONS(4917), + [anon_sym_DASH_GT] = ACTIONS(4917), + [anon_sym_with] = ACTIONS(4917), + [aux_sym_preproc_if_token3] = ACTIONS(4917), + [aux_sym_preproc_else_token1] = ACTIONS(4917), + [aux_sym_preproc_elif_token1] = ACTIONS(4917), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -466857,64 +466410,63 @@ 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(3981), - [anon_sym_LBRACK] = ACTIONS(3981), - [anon_sym_COLON] = ACTIONS(3981), - [anon_sym_COMMA] = ACTIONS(3981), - [anon_sym_RBRACK] = ACTIONS(3981), - [anon_sym_LPAREN] = ACTIONS(3981), - [anon_sym_RPAREN] = ACTIONS(3981), - [anon_sym_LBRACE] = ACTIONS(3981), - [anon_sym_RBRACE] = ACTIONS(3981), - [anon_sym_LT] = ACTIONS(3979), - [anon_sym_GT] = ACTIONS(3979), - [anon_sym_in] = ACTIONS(3979), - [anon_sym_where] = ACTIONS(3981), - [anon_sym_QMARK] = ACTIONS(3979), - [anon_sym_BANG] = ACTIONS(3979), - [anon_sym_PLUS_PLUS] = ACTIONS(3981), - [anon_sym_DASH_DASH] = ACTIONS(3981), - [anon_sym_PLUS] = ACTIONS(3979), - [anon_sym_DASH] = ACTIONS(3979), - [anon_sym_STAR] = ACTIONS(3981), - [anon_sym_SLASH] = ACTIONS(3979), - [anon_sym_PERCENT] = ACTIONS(3981), - [anon_sym_CARET] = ACTIONS(3981), - [anon_sym_PIPE] = ACTIONS(3979), - [anon_sym_AMP] = ACTIONS(3979), - [anon_sym_LT_LT] = ACTIONS(3981), - [anon_sym_GT_GT] = ACTIONS(3979), - [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(3979), - [anon_sym_EQ_GT] = ACTIONS(3981), - [anon_sym_switch] = ACTIONS(3981), - [anon_sym_DOT_DOT] = ACTIONS(3981), - [anon_sym_and] = ACTIONS(3981), - [anon_sym_or] = ACTIONS(3979), - [anon_sym_AMP_AMP] = ACTIONS(3981), - [anon_sym_PIPE_PIPE] = ACTIONS(3981), - [anon_sym_QMARK_QMARK] = ACTIONS(3981), - [anon_sym_from] = ACTIONS(3981), - [anon_sym_into] = ACTIONS(3981), - [anon_sym_join] = ACTIONS(3981), - [anon_sym_on] = ACTIONS(3981), - [anon_sym_equals] = ACTIONS(3981), - [anon_sym_let] = ACTIONS(3981), - [anon_sym_orderby] = ACTIONS(3981), - [anon_sym_group] = ACTIONS(3981), - [anon_sym_by] = ACTIONS(3981), - [anon_sym_select] = ACTIONS(3981), - [anon_sym_as] = ACTIONS(3981), - [anon_sym_is] = ACTIONS(3981), - [anon_sym_DASH_GT] = ACTIONS(3981), - [anon_sym_with] = ACTIONS(3981), - [aux_sym_preproc_if_token3] = ACTIONS(3981), - [aux_sym_preproc_else_token1] = ACTIONS(3981), - [aux_sym_preproc_elif_token1] = ACTIONS(3981), + [anon_sym_SEMI] = ACTIONS(4921), + [anon_sym_LBRACK] = ACTIONS(4921), + [anon_sym_COLON] = ACTIONS(4921), + [anon_sym_COMMA] = ACTIONS(4921), + [anon_sym_RBRACK] = ACTIONS(4921), + [anon_sym_LPAREN] = ACTIONS(4921), + [anon_sym_RPAREN] = ACTIONS(4921), + [anon_sym_RBRACE] = ACTIONS(4921), + [anon_sym_LT] = ACTIONS(4923), + [anon_sym_GT] = ACTIONS(4923), + [anon_sym_in] = ACTIONS(4923), + [anon_sym_where] = ACTIONS(4921), + [anon_sym_QMARK] = ACTIONS(4923), + [anon_sym_BANG] = ACTIONS(4923), + [anon_sym_PLUS_PLUS] = ACTIONS(4921), + [anon_sym_DASH_DASH] = ACTIONS(4921), + [anon_sym_PLUS] = ACTIONS(4923), + [anon_sym_DASH] = ACTIONS(4923), + [anon_sym_STAR] = ACTIONS(4921), + [anon_sym_SLASH] = ACTIONS(4923), + [anon_sym_PERCENT] = ACTIONS(4921), + [anon_sym_CARET] = ACTIONS(4921), + [anon_sym_PIPE] = ACTIONS(4923), + [anon_sym_AMP] = ACTIONS(4923), + [anon_sym_LT_LT] = ACTIONS(4921), + [anon_sym_GT_GT] = ACTIONS(4923), + [anon_sym_GT_GT_GT] = ACTIONS(4921), + [anon_sym_EQ_EQ] = ACTIONS(4921), + [anon_sym_BANG_EQ] = ACTIONS(4921), + [anon_sym_GT_EQ] = ACTIONS(4921), + [anon_sym_LT_EQ] = ACTIONS(4921), + [anon_sym_DOT] = ACTIONS(4923), + [anon_sym_EQ_GT] = ACTIONS(4921), + [anon_sym_switch] = ACTIONS(4921), + [anon_sym_DOT_DOT] = ACTIONS(4921), + [anon_sym_and] = ACTIONS(4921), + [anon_sym_or] = ACTIONS(4923), + [anon_sym_AMP_AMP] = ACTIONS(4921), + [anon_sym_PIPE_PIPE] = ACTIONS(4921), + [anon_sym_QMARK_QMARK] = ACTIONS(4921), + [anon_sym_from] = ACTIONS(4921), + [anon_sym_into] = ACTIONS(4921), + [anon_sym_join] = ACTIONS(4921), + [anon_sym_on] = ACTIONS(4921), + [anon_sym_equals] = ACTIONS(4921), + [anon_sym_let] = ACTIONS(4921), + [anon_sym_orderby] = ACTIONS(4921), + [anon_sym_group] = ACTIONS(4921), + [anon_sym_by] = ACTIONS(4921), + [anon_sym_select] = ACTIONS(4921), + [anon_sym_as] = ACTIONS(4921), + [anon_sym_is] = ACTIONS(4921), + [anon_sym_DASH_GT] = ACTIONS(4921), + [anon_sym_with] = ACTIONS(4921), + [aux_sym_preproc_if_token3] = ACTIONS(4921), + [aux_sym_preproc_else_token1] = ACTIONS(4921), + [aux_sym_preproc_elif_token1] = ACTIONS(4921), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -466927,7 +466479,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2958] = { - [sym_type_argument_list] = STATE(2964), [sym_preproc_region] = STATE(2958), [sym_preproc_endregion] = STATE(2958), [sym_preproc_line] = STATE(2958), @@ -466937,63 +466488,63 @@ 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(3662), - [anon_sym_LBRACK] = ACTIONS(3662), - [anon_sym_COLON] = ACTIONS(3662), - [anon_sym_COMMA] = ACTIONS(3662), - [anon_sym_RBRACK] = ACTIONS(3662), - [anon_sym_LPAREN] = ACTIONS(3662), - [anon_sym_RPAREN] = ACTIONS(3662), - [anon_sym_LBRACE] = ACTIONS(3662), - [anon_sym_RBRACE] = ACTIONS(3662), - [anon_sym_LT] = ACTIONS(4874), - [anon_sym_GT] = ACTIONS(3660), - [anon_sym_in] = ACTIONS(3662), - [anon_sym_where] = ACTIONS(3662), - [anon_sym_QMARK] = ACTIONS(3660), - [anon_sym_BANG] = ACTIONS(3660), - [anon_sym_PLUS_PLUS] = ACTIONS(3662), - [anon_sym_DASH_DASH] = ACTIONS(3662), - [anon_sym_PLUS] = ACTIONS(3660), - [anon_sym_DASH] = ACTIONS(3660), - [anon_sym_STAR] = ACTIONS(3662), - [anon_sym_SLASH] = ACTIONS(3660), - [anon_sym_PERCENT] = ACTIONS(3662), - [anon_sym_CARET] = ACTIONS(3662), - [anon_sym_PIPE] = ACTIONS(3660), - [anon_sym_AMP] = ACTIONS(3660), - [anon_sym_LT_LT] = ACTIONS(3662), - [anon_sym_GT_GT] = ACTIONS(3660), - [anon_sym_GT_GT_GT] = ACTIONS(3662), - [anon_sym_EQ_EQ] = ACTIONS(3662), - [anon_sym_BANG_EQ] = ACTIONS(3662), - [anon_sym_GT_EQ] = ACTIONS(3662), - [anon_sym_LT_EQ] = ACTIONS(3662), - [anon_sym_DOT] = ACTIONS(3660), - [anon_sym_EQ_GT] = ACTIONS(3662), - [anon_sym_switch] = ACTIONS(3662), - [anon_sym_DOT_DOT] = ACTIONS(3662), - [anon_sym_and] = ACTIONS(3662), - [anon_sym_or] = ACTIONS(3660), - [anon_sym_AMP_AMP] = ACTIONS(3662), - [anon_sym_PIPE_PIPE] = ACTIONS(3662), - [anon_sym_QMARK_QMARK] = ACTIONS(3662), - [anon_sym_from] = 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_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(3662), - [anon_sym_with] = ACTIONS(3662), - [aux_sym_preproc_if_token3] = ACTIONS(3662), - [aux_sym_preproc_else_token1] = ACTIONS(3662), - [aux_sym_preproc_elif_token1] = ACTIONS(3662), + [anon_sym_SEMI] = ACTIONS(4925), + [anon_sym_LBRACK] = ACTIONS(4925), + [anon_sym_COLON] = ACTIONS(4925), + [anon_sym_COMMA] = ACTIONS(4925), + [anon_sym_RBRACK] = ACTIONS(4925), + [anon_sym_LPAREN] = ACTIONS(4925), + [anon_sym_RPAREN] = ACTIONS(4925), + [anon_sym_RBRACE] = ACTIONS(4925), + [anon_sym_LT] = ACTIONS(4927), + [anon_sym_GT] = ACTIONS(4927), + [anon_sym_in] = ACTIONS(4927), + [anon_sym_where] = ACTIONS(4925), + [anon_sym_QMARK] = ACTIONS(4927), + [anon_sym_BANG] = ACTIONS(4927), + [anon_sym_PLUS_PLUS] = ACTIONS(4925), + [anon_sym_DASH_DASH] = ACTIONS(4925), + [anon_sym_PLUS] = ACTIONS(4927), + [anon_sym_DASH] = ACTIONS(4927), + [anon_sym_STAR] = ACTIONS(4925), + [anon_sym_SLASH] = ACTIONS(4927), + [anon_sym_PERCENT] = ACTIONS(4925), + [anon_sym_CARET] = ACTIONS(4925), + [anon_sym_PIPE] = ACTIONS(4927), + [anon_sym_AMP] = ACTIONS(4927), + [anon_sym_LT_LT] = ACTIONS(4925), + [anon_sym_GT_GT] = ACTIONS(4927), + [anon_sym_GT_GT_GT] = ACTIONS(4925), + [anon_sym_EQ_EQ] = ACTIONS(4925), + [anon_sym_BANG_EQ] = ACTIONS(4925), + [anon_sym_GT_EQ] = ACTIONS(4925), + [anon_sym_LT_EQ] = ACTIONS(4925), + [anon_sym_DOT] = ACTIONS(4927), + [anon_sym_EQ_GT] = ACTIONS(4925), + [anon_sym_switch] = ACTIONS(4925), + [anon_sym_DOT_DOT] = ACTIONS(4925), + [anon_sym_and] = ACTIONS(4925), + [anon_sym_or] = ACTIONS(4927), + [anon_sym_AMP_AMP] = ACTIONS(4925), + [anon_sym_PIPE_PIPE] = ACTIONS(4925), + [anon_sym_QMARK_QMARK] = ACTIONS(4925), + [anon_sym_from] = ACTIONS(4925), + [anon_sym_into] = ACTIONS(4925), + [anon_sym_join] = ACTIONS(4925), + [anon_sym_on] = ACTIONS(4925), + [anon_sym_equals] = ACTIONS(4925), + [anon_sym_let] = ACTIONS(4925), + [anon_sym_orderby] = ACTIONS(4925), + [anon_sym_group] = ACTIONS(4925), + [anon_sym_by] = ACTIONS(4925), + [anon_sym_select] = ACTIONS(4925), + [anon_sym_as] = ACTIONS(4925), + [anon_sym_is] = ACTIONS(4925), + [anon_sym_DASH_GT] = ACTIONS(4925), + [anon_sym_with] = ACTIONS(4925), + [aux_sym_preproc_if_token3] = ACTIONS(4925), + [aux_sym_preproc_else_token1] = ACTIONS(4925), + [aux_sym_preproc_elif_token1] = ACTIONS(4925), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -467022,7 +466573,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_RBRACK] = ACTIONS(4929), [anon_sym_LPAREN] = ACTIONS(4929), [anon_sym_RPAREN] = ACTIONS(4929), - [anon_sym_LBRACE] = ACTIONS(4929), [anon_sym_RBRACE] = ACTIONS(4929), [anon_sym_LT] = ACTIONS(4931), [anon_sym_GT] = ACTIONS(4931), @@ -467094,164 +466644,6 @@ 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(4014), - [anon_sym_LBRACK] = ACTIONS(4014), - [anon_sym_COLON] = ACTIONS(4014), - [anon_sym_COMMA] = ACTIONS(4014), - [anon_sym_RBRACK] = ACTIONS(4014), - [anon_sym_LPAREN] = ACTIONS(4014), - [anon_sym_RPAREN] = ACTIONS(4014), - [anon_sym_LBRACE] = ACTIONS(4014), - [anon_sym_RBRACE] = ACTIONS(4014), - [anon_sym_LT] = ACTIONS(4012), - [anon_sym_GT] = ACTIONS(4012), - [anon_sym_in] = ACTIONS(4012), - [anon_sym_where] = ACTIONS(4014), - [anon_sym_QMARK] = ACTIONS(4012), - [anon_sym_BANG] = ACTIONS(4012), - [anon_sym_PLUS_PLUS] = ACTIONS(4014), - [anon_sym_DASH_DASH] = ACTIONS(4014), - [anon_sym_PLUS] = ACTIONS(4012), - [anon_sym_DASH] = ACTIONS(4012), - [anon_sym_STAR] = ACTIONS(4014), - [anon_sym_SLASH] = ACTIONS(4012), - [anon_sym_PERCENT] = ACTIONS(4014), - [anon_sym_CARET] = ACTIONS(4014), - [anon_sym_PIPE] = ACTIONS(4012), - [anon_sym_AMP] = ACTIONS(4012), - [anon_sym_LT_LT] = ACTIONS(4014), - [anon_sym_GT_GT] = ACTIONS(4012), - [anon_sym_GT_GT_GT] = ACTIONS(4014), - [anon_sym_EQ_EQ] = ACTIONS(4014), - [anon_sym_BANG_EQ] = ACTIONS(4014), - [anon_sym_GT_EQ] = ACTIONS(4014), - [anon_sym_LT_EQ] = ACTIONS(4014), - [anon_sym_DOT] = ACTIONS(4012), - [anon_sym_EQ_GT] = ACTIONS(4014), - [anon_sym_switch] = ACTIONS(4014), - [anon_sym_DOT_DOT] = ACTIONS(4014), - [anon_sym_and] = ACTIONS(4014), - [anon_sym_or] = ACTIONS(4012), - [anon_sym_AMP_AMP] = ACTIONS(4014), - [anon_sym_PIPE_PIPE] = ACTIONS(4014), - [anon_sym_QMARK_QMARK] = ACTIONS(4014), - [anon_sym_from] = ACTIONS(4014), - [anon_sym_into] = ACTIONS(4014), - [anon_sym_join] = ACTIONS(4014), - [anon_sym_on] = ACTIONS(4014), - [anon_sym_equals] = ACTIONS(4014), - [anon_sym_let] = ACTIONS(4014), - [anon_sym_orderby] = ACTIONS(4014), - [anon_sym_group] = ACTIONS(4014), - [anon_sym_by] = ACTIONS(4014), - [anon_sym_select] = ACTIONS(4014), - [anon_sym_as] = ACTIONS(4014), - [anon_sym_is] = ACTIONS(4014), - [anon_sym_DASH_GT] = ACTIONS(4014), - [anon_sym_with] = ACTIONS(4014), - [aux_sym_preproc_if_token3] = ACTIONS(4014), - [aux_sym_preproc_else_token1] = ACTIONS(4014), - [aux_sym_preproc_elif_token1] = ACTIONS(4014), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - }, - [2961] = { - [sym_preproc_region] = STATE(2961), - [sym_preproc_endregion] = STATE(2961), - [sym_preproc_line] = STATE(2961), - [sym_preproc_pragma] = STATE(2961), - [sym_preproc_nullable] = STATE(2961), - [sym_preproc_error] = STATE(2961), - [sym_preproc_warning] = STATE(2961), - [sym_preproc_define] = STATE(2961), - [sym_preproc_undef] = STATE(2961), - [anon_sym_SEMI] = ACTIONS(4018), - [anon_sym_LBRACK] = ACTIONS(4066), - [anon_sym_COLON] = ACTIONS(4018), - [anon_sym_COMMA] = ACTIONS(4018), - [anon_sym_RBRACK] = ACTIONS(4018), - [anon_sym_LPAREN] = ACTIONS(4018), - [anon_sym_RPAREN] = ACTIONS(4018), - [anon_sym_LBRACE] = ACTIONS(4018), - [anon_sym_RBRACE] = ACTIONS(4018), - [anon_sym_LT] = ACTIONS(4016), - [anon_sym_GT] = ACTIONS(4016), - [anon_sym_in] = ACTIONS(4016), - [anon_sym_where] = ACTIONS(4018), - [anon_sym_QMARK] = ACTIONS(4016), - [anon_sym_BANG] = ACTIONS(4016), - [anon_sym_PLUS_PLUS] = ACTIONS(4018), - [anon_sym_DASH_DASH] = ACTIONS(4018), - [anon_sym_PLUS] = ACTIONS(4016), - [anon_sym_DASH] = ACTIONS(4016), - [anon_sym_STAR] = ACTIONS(4072), - [anon_sym_SLASH] = ACTIONS(4016), - [anon_sym_PERCENT] = ACTIONS(4018), - [anon_sym_CARET] = ACTIONS(4018), - [anon_sym_PIPE] = ACTIONS(4016), - [anon_sym_AMP] = ACTIONS(4016), - [anon_sym_LT_LT] = ACTIONS(4018), - [anon_sym_GT_GT] = ACTIONS(4016), - [anon_sym_GT_GT_GT] = ACTIONS(4018), - [anon_sym_EQ_EQ] = ACTIONS(4018), - [anon_sym_BANG_EQ] = ACTIONS(4018), - [anon_sym_GT_EQ] = ACTIONS(4018), - [anon_sym_LT_EQ] = ACTIONS(4018), - [anon_sym_DOT] = ACTIONS(4016), - [anon_sym_EQ_GT] = ACTIONS(4018), - [anon_sym_switch] = ACTIONS(4018), - [anon_sym_DOT_DOT] = ACTIONS(4018), - [anon_sym_and] = ACTIONS(4018), - [anon_sym_or] = ACTIONS(4016), - [anon_sym_AMP_AMP] = ACTIONS(4018), - [anon_sym_PIPE_PIPE] = ACTIONS(4018), - [anon_sym_QMARK_QMARK] = ACTIONS(4018), - [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_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(4018), - [anon_sym_with] = ACTIONS(4018), - [aux_sym_preproc_if_token3] = ACTIONS(4018), - [aux_sym_preproc_else_token1] = ACTIONS(4018), - [aux_sym_preproc_elif_token1] = 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), - }, - [2962] = { - [sym_preproc_region] = STATE(2962), - [sym_preproc_endregion] = STATE(2962), - [sym_preproc_line] = STATE(2962), - [sym_preproc_pragma] = STATE(2962), - [sym_preproc_nullable] = STATE(2962), - [sym_preproc_error] = STATE(2962), - [sym_preproc_warning] = STATE(2962), - [sym_preproc_define] = STATE(2962), - [sym_preproc_undef] = STATE(2962), [anon_sym_SEMI] = ACTIONS(4933), [anon_sym_LBRACK] = ACTIONS(4933), [anon_sym_COLON] = ACTIONS(4933), @@ -467320,250 +466712,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), }, - [2963] = { - [sym_preproc_region] = STATE(2963), - [sym_preproc_endregion] = STATE(2963), - [sym_preproc_line] = STATE(2963), - [sym_preproc_pragma] = STATE(2963), - [sym_preproc_nullable] = STATE(2963), - [sym_preproc_error] = STATE(2963), - [sym_preproc_warning] = STATE(2963), - [sym_preproc_define] = STATE(2963), - [sym_preproc_undef] = STATE(2963), - [anon_sym_SEMI] = ACTIONS(4002), - [anon_sym_LBRACK] = ACTIONS(4002), - [anon_sym_COLON] = ACTIONS(4002), - [anon_sym_COMMA] = ACTIONS(4002), - [anon_sym_RBRACK] = ACTIONS(4002), - [anon_sym_LPAREN] = ACTIONS(4002), - [anon_sym_RPAREN] = ACTIONS(4002), - [anon_sym_LBRACE] = ACTIONS(4002), - [anon_sym_RBRACE] = ACTIONS(4002), - [anon_sym_LT] = ACTIONS(4000), - [anon_sym_GT] = ACTIONS(4000), - [anon_sym_in] = ACTIONS(4002), - [anon_sym_where] = ACTIONS(4002), - [anon_sym_QMARK] = ACTIONS(4000), - [anon_sym_BANG] = ACTIONS(4000), - [anon_sym_PLUS_PLUS] = ACTIONS(4002), - [anon_sym_DASH_DASH] = ACTIONS(4002), - [anon_sym_PLUS] = ACTIONS(4000), - [anon_sym_DASH] = ACTIONS(4000), - [anon_sym_STAR] = ACTIONS(4002), - [anon_sym_SLASH] = ACTIONS(4000), - [anon_sym_PERCENT] = ACTIONS(4002), - [anon_sym_CARET] = ACTIONS(4002), - [anon_sym_PIPE] = ACTIONS(4000), - [anon_sym_AMP] = ACTIONS(4000), - [anon_sym_LT_LT] = ACTIONS(4002), - [anon_sym_GT_GT] = ACTIONS(4000), - [anon_sym_GT_GT_GT] = ACTIONS(4002), - [anon_sym_EQ_EQ] = ACTIONS(4002), - [anon_sym_BANG_EQ] = ACTIONS(4002), - [anon_sym_GT_EQ] = ACTIONS(4002), - [anon_sym_LT_EQ] = ACTIONS(4002), - [anon_sym_DOT] = ACTIONS(4000), - [anon_sym_EQ_GT] = ACTIONS(4002), - [anon_sym_switch] = ACTIONS(4002), - [anon_sym_DOT_DOT] = ACTIONS(4002), - [anon_sym_and] = ACTIONS(4002), - [anon_sym_or] = ACTIONS(4000), - [anon_sym_AMP_AMP] = ACTIONS(4002), - [anon_sym_PIPE_PIPE] = ACTIONS(4002), - [anon_sym_QMARK_QMARK] = ACTIONS(4002), - [anon_sym_from] = ACTIONS(4002), - [anon_sym_join] = ACTIONS(4002), - [anon_sym_on] = ACTIONS(4002), - [anon_sym_equals] = ACTIONS(4002), - [anon_sym_let] = ACTIONS(4002), - [anon_sym_orderby] = ACTIONS(4002), - [anon_sym_group] = ACTIONS(4002), - [anon_sym_by] = ACTIONS(4002), - [anon_sym_select] = ACTIONS(4002), - [anon_sym_as] = ACTIONS(4002), - [anon_sym_is] = ACTIONS(4002), - [anon_sym_DASH_GT] = ACTIONS(4002), - [anon_sym_with] = ACTIONS(4002), - [aux_sym_preproc_if_token3] = ACTIONS(4002), - [aux_sym_preproc_else_token1] = ACTIONS(4002), - [aux_sym_preproc_elif_token1] = ACTIONS(4002), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - }, - [2964] = { - [sym_preproc_region] = STATE(2964), - [sym_preproc_endregion] = STATE(2964), - [sym_preproc_line] = STATE(2964), - [sym_preproc_pragma] = STATE(2964), - [sym_preproc_nullable] = STATE(2964), - [sym_preproc_error] = STATE(2964), - [sym_preproc_warning] = STATE(2964), - [sym_preproc_define] = STATE(2964), - [sym_preproc_undef] = STATE(2964), - [anon_sym_SEMI] = ACTIONS(3681), - [anon_sym_LBRACK] = ACTIONS(3681), - [anon_sym_COLON] = ACTIONS(3681), - [anon_sym_COMMA] = ACTIONS(3681), - [anon_sym_RBRACK] = ACTIONS(3681), - [anon_sym_LPAREN] = ACTIONS(3681), - [anon_sym_RPAREN] = ACTIONS(3681), - [anon_sym_LBRACE] = ACTIONS(3681), - [anon_sym_RBRACE] = ACTIONS(3681), - [anon_sym_LT] = ACTIONS(3679), - [anon_sym_GT] = ACTIONS(3679), - [anon_sym_in] = ACTIONS(3681), - [anon_sym_where] = ACTIONS(3681), - [anon_sym_QMARK] = ACTIONS(3679), - [anon_sym_BANG] = ACTIONS(3679), - [anon_sym_PLUS_PLUS] = ACTIONS(3681), - [anon_sym_DASH_DASH] = ACTIONS(3681), - [anon_sym_PLUS] = ACTIONS(3679), - [anon_sym_DASH] = ACTIONS(3679), - [anon_sym_STAR] = ACTIONS(3681), - [anon_sym_SLASH] = ACTIONS(3679), - [anon_sym_PERCENT] = ACTIONS(3681), - [anon_sym_CARET] = ACTIONS(3681), - [anon_sym_PIPE] = ACTIONS(3679), - [anon_sym_AMP] = ACTIONS(3679), - [anon_sym_LT_LT] = ACTIONS(3681), - [anon_sym_GT_GT] = ACTIONS(3679), - [anon_sym_GT_GT_GT] = ACTIONS(3681), - [anon_sym_EQ_EQ] = ACTIONS(3681), - [anon_sym_BANG_EQ] = ACTIONS(3681), - [anon_sym_GT_EQ] = ACTIONS(3681), - [anon_sym_LT_EQ] = ACTIONS(3681), - [anon_sym_DOT] = ACTIONS(3679), - [anon_sym_EQ_GT] = ACTIONS(3681), - [anon_sym_switch] = ACTIONS(3681), - [anon_sym_DOT_DOT] = ACTIONS(3681), - [anon_sym_and] = ACTIONS(3681), - [anon_sym_or] = ACTIONS(3679), - [anon_sym_AMP_AMP] = ACTIONS(3681), - [anon_sym_PIPE_PIPE] = ACTIONS(3681), - [anon_sym_QMARK_QMARK] = ACTIONS(3681), - [anon_sym_from] = ACTIONS(3681), - [anon_sym_join] = ACTIONS(3681), - [anon_sym_on] = ACTIONS(3681), - [anon_sym_equals] = ACTIONS(3681), - [anon_sym_let] = ACTIONS(3681), - [anon_sym_orderby] = ACTIONS(3681), - [anon_sym_group] = ACTIONS(3681), - [anon_sym_by] = ACTIONS(3681), - [anon_sym_select] = ACTIONS(3681), - [anon_sym_as] = ACTIONS(3681), - [anon_sym_is] = ACTIONS(3681), - [anon_sym_DASH_GT] = ACTIONS(3681), - [anon_sym_with] = ACTIONS(3681), - [aux_sym_preproc_if_token3] = ACTIONS(3681), - [aux_sym_preproc_else_token1] = ACTIONS(3681), - [aux_sym_preproc_elif_token1] = ACTIONS(3681), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - }, - [2965] = { - [sym_preproc_region] = STATE(2965), - [sym_preproc_endregion] = STATE(2965), - [sym_preproc_line] = STATE(2965), - [sym_preproc_pragma] = STATE(2965), - [sym_preproc_nullable] = STATE(2965), - [sym_preproc_error] = STATE(2965), - [sym_preproc_warning] = STATE(2965), - [sym_preproc_define] = STATE(2965), - [sym_preproc_undef] = STATE(2965), - [anon_sym_SEMI] = ACTIONS(3996), - [anon_sym_LBRACK] = ACTIONS(3996), - [anon_sym_COLON] = ACTIONS(3996), - [anon_sym_COMMA] = ACTIONS(3996), - [anon_sym_RBRACK] = ACTIONS(3996), - [anon_sym_LPAREN] = ACTIONS(3996), - [anon_sym_RPAREN] = ACTIONS(3996), - [anon_sym_LBRACE] = ACTIONS(3996), - [anon_sym_RBRACE] = ACTIONS(3996), - [anon_sym_LT] = ACTIONS(3994), - [anon_sym_GT] = ACTIONS(3994), - [anon_sym_in] = ACTIONS(3996), - [anon_sym_where] = ACTIONS(3996), - [anon_sym_QMARK] = ACTIONS(3994), - [anon_sym_BANG] = ACTIONS(3994), - [anon_sym_PLUS_PLUS] = ACTIONS(3996), - [anon_sym_DASH_DASH] = ACTIONS(3996), - [anon_sym_PLUS] = ACTIONS(3994), - [anon_sym_DASH] = ACTIONS(3994), - [anon_sym_STAR] = ACTIONS(3996), - [anon_sym_SLASH] = ACTIONS(3994), - [anon_sym_PERCENT] = ACTIONS(3996), - [anon_sym_CARET] = ACTIONS(3996), - [anon_sym_PIPE] = ACTIONS(3994), - [anon_sym_AMP] = ACTIONS(3994), - [anon_sym_LT_LT] = ACTIONS(3996), - [anon_sym_GT_GT] = ACTIONS(3994), - [anon_sym_GT_GT_GT] = ACTIONS(3996), - [anon_sym_EQ_EQ] = ACTIONS(3996), - [anon_sym_BANG_EQ] = ACTIONS(3996), - [anon_sym_GT_EQ] = ACTIONS(3996), - [anon_sym_LT_EQ] = ACTIONS(3996), - [anon_sym_DOT] = ACTIONS(3994), - [anon_sym_EQ_GT] = ACTIONS(3996), - [anon_sym_switch] = ACTIONS(3996), - [anon_sym_DOT_DOT] = ACTIONS(3996), - [anon_sym_and] = ACTIONS(3996), - [anon_sym_or] = ACTIONS(3994), - [anon_sym_AMP_AMP] = ACTIONS(3996), - [anon_sym_PIPE_PIPE] = ACTIONS(3996), - [anon_sym_QMARK_QMARK] = ACTIONS(3996), - [anon_sym_from] = ACTIONS(3996), - [anon_sym_join] = ACTIONS(3996), - [anon_sym_on] = ACTIONS(3996), - [anon_sym_equals] = ACTIONS(3996), - [anon_sym_let] = ACTIONS(3996), - [anon_sym_orderby] = ACTIONS(3996), - [anon_sym_group] = ACTIONS(3996), - [anon_sym_by] = ACTIONS(3996), - [anon_sym_select] = ACTIONS(3996), - [anon_sym_as] = ACTIONS(3996), - [anon_sym_is] = ACTIONS(3996), - [anon_sym_DASH_GT] = ACTIONS(3996), - [anon_sym_with] = ACTIONS(3996), - [aux_sym_preproc_if_token3] = ACTIONS(3996), - [aux_sym_preproc_else_token1] = ACTIONS(3996), - [aux_sym_preproc_elif_token1] = ACTIONS(3996), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - }, - [2966] = { - [sym_preproc_region] = STATE(2966), - [sym_preproc_endregion] = STATE(2966), - [sym_preproc_line] = STATE(2966), - [sym_preproc_pragma] = STATE(2966), - [sym_preproc_nullable] = STATE(2966), - [sym_preproc_error] = STATE(2966), - [sym_preproc_warning] = STATE(2966), - [sym_preproc_define] = STATE(2966), - [sym_preproc_undef] = STATE(2966), + [2961] = { + [sym_preproc_region] = STATE(2961), + [sym_preproc_endregion] = STATE(2961), + [sym_preproc_line] = STATE(2961), + [sym_preproc_pragma] = STATE(2961), + [sym_preproc_nullable] = STATE(2961), + [sym_preproc_error] = STATE(2961), + [sym_preproc_warning] = STATE(2961), + [sym_preproc_define] = STATE(2961), + [sym_preproc_undef] = STATE(2961), [anon_sym_SEMI] = ACTIONS(4937), [anon_sym_LBRACK] = ACTIONS(4937), [anon_sym_COLON] = ACTIONS(4937), @@ -467632,16 +466790,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), }, - [2967] = { - [sym_preproc_region] = STATE(2967), - [sym_preproc_endregion] = STATE(2967), - [sym_preproc_line] = STATE(2967), - [sym_preproc_pragma] = STATE(2967), - [sym_preproc_nullable] = STATE(2967), - [sym_preproc_error] = STATE(2967), - [sym_preproc_warning] = STATE(2967), - [sym_preproc_define] = STATE(2967), - [sym_preproc_undef] = STATE(2967), + [2962] = { + [sym_preproc_region] = STATE(2962), + [sym_preproc_endregion] = STATE(2962), + [sym_preproc_line] = STATE(2962), + [sym_preproc_pragma] = STATE(2962), + [sym_preproc_nullable] = STATE(2962), + [sym_preproc_error] = STATE(2962), + [sym_preproc_warning] = STATE(2962), + [sym_preproc_define] = STATE(2962), + [sym_preproc_undef] = STATE(2962), [anon_sym_SEMI] = ACTIONS(4941), [anon_sym_LBRACK] = ACTIONS(4941), [anon_sym_COLON] = ACTIONS(4941), @@ -467710,151 +466868,73 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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(4006), - [anon_sym_LBRACK] = ACTIONS(4006), - [anon_sym_COLON] = ACTIONS(4006), - [anon_sym_COMMA] = ACTIONS(4006), - [anon_sym_RBRACK] = ACTIONS(4006), - [anon_sym_LPAREN] = ACTIONS(4006), - [anon_sym_RPAREN] = ACTIONS(4006), - [anon_sym_LBRACE] = ACTIONS(4006), - [anon_sym_RBRACE] = ACTIONS(4006), - [anon_sym_LT] = ACTIONS(4004), - [anon_sym_GT] = ACTIONS(4004), - [anon_sym_in] = ACTIONS(4006), - [anon_sym_where] = ACTIONS(4006), - [anon_sym_QMARK] = ACTIONS(4004), - [anon_sym_BANG] = ACTIONS(4004), - [anon_sym_PLUS_PLUS] = ACTIONS(4006), - [anon_sym_DASH_DASH] = ACTIONS(4006), - [anon_sym_PLUS] = ACTIONS(4004), - [anon_sym_DASH] = ACTIONS(4004), - [anon_sym_STAR] = ACTIONS(4006), - [anon_sym_SLASH] = ACTIONS(4004), - [anon_sym_PERCENT] = ACTIONS(4006), - [anon_sym_CARET] = ACTIONS(4006), - [anon_sym_PIPE] = ACTIONS(4004), - [anon_sym_AMP] = ACTIONS(4004), - [anon_sym_LT_LT] = ACTIONS(4006), - [anon_sym_GT_GT] = ACTIONS(4004), - [anon_sym_GT_GT_GT] = ACTIONS(4006), - [anon_sym_EQ_EQ] = ACTIONS(4006), - [anon_sym_BANG_EQ] = ACTIONS(4006), - [anon_sym_GT_EQ] = ACTIONS(4006), - [anon_sym_LT_EQ] = ACTIONS(4006), - [anon_sym_DOT] = ACTIONS(4004), - [anon_sym_EQ_GT] = ACTIONS(4006), - [anon_sym_switch] = ACTIONS(4006), - [anon_sym_DOT_DOT] = ACTIONS(4006), - [anon_sym_and] = ACTIONS(4006), - [anon_sym_or] = ACTIONS(4004), - [anon_sym_AMP_AMP] = ACTIONS(4006), - [anon_sym_PIPE_PIPE] = ACTIONS(4006), - [anon_sym_QMARK_QMARK] = ACTIONS(4006), - [anon_sym_from] = ACTIONS(4006), - [anon_sym_join] = ACTIONS(4006), - [anon_sym_on] = ACTIONS(4006), - [anon_sym_equals] = ACTIONS(4006), - [anon_sym_let] = ACTIONS(4006), - [anon_sym_orderby] = ACTIONS(4006), - [anon_sym_group] = ACTIONS(4006), - [anon_sym_by] = ACTIONS(4006), - [anon_sym_select] = ACTIONS(4006), - [anon_sym_as] = ACTIONS(4006), - [anon_sym_is] = ACTIONS(4006), - [anon_sym_DASH_GT] = ACTIONS(4006), - [anon_sym_with] = ACTIONS(4006), - [aux_sym_preproc_if_token3] = ACTIONS(4006), - [aux_sym_preproc_else_token1] = ACTIONS(4006), - [aux_sym_preproc_elif_token1] = ACTIONS(4006), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_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(3981), - [anon_sym_LBRACK] = ACTIONS(3981), - [anon_sym_COLON] = ACTIONS(3981), - [anon_sym_COMMA] = ACTIONS(3981), - [anon_sym_RBRACK] = ACTIONS(3981), - [anon_sym_LPAREN] = ACTIONS(3981), - [anon_sym_RPAREN] = ACTIONS(3981), - [anon_sym_LBRACE] = ACTIONS(3981), - [anon_sym_RBRACE] = ACTIONS(3981), - [anon_sym_LT] = ACTIONS(3979), - [anon_sym_GT] = ACTIONS(3979), - [anon_sym_in] = ACTIONS(3981), - [anon_sym_where] = ACTIONS(3981), - [anon_sym_QMARK] = ACTIONS(3979), - [anon_sym_BANG] = ACTIONS(3979), - [anon_sym_PLUS_PLUS] = ACTIONS(3981), - [anon_sym_DASH_DASH] = ACTIONS(3981), - [anon_sym_PLUS] = ACTIONS(3979), - [anon_sym_DASH] = ACTIONS(3979), - [anon_sym_STAR] = ACTIONS(3981), - [anon_sym_SLASH] = ACTIONS(3979), - [anon_sym_PERCENT] = ACTIONS(3981), - [anon_sym_CARET] = ACTIONS(3981), - [anon_sym_PIPE] = ACTIONS(3979), - [anon_sym_AMP] = ACTIONS(3979), - [anon_sym_LT_LT] = ACTIONS(3981), - [anon_sym_GT_GT] = ACTIONS(3979), - [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(3979), - [anon_sym_EQ_GT] = ACTIONS(3981), - [anon_sym_switch] = ACTIONS(3981), - [anon_sym_DOT_DOT] = ACTIONS(3981), - [anon_sym_and] = ACTIONS(3981), - [anon_sym_or] = ACTIONS(3979), - [anon_sym_AMP_AMP] = ACTIONS(3981), - [anon_sym_PIPE_PIPE] = ACTIONS(3981), - [anon_sym_QMARK_QMARK] = ACTIONS(3981), - [anon_sym_from] = ACTIONS(3981), - [anon_sym_join] = ACTIONS(3981), - [anon_sym_on] = ACTIONS(3981), - [anon_sym_equals] = ACTIONS(3981), - [anon_sym_let] = ACTIONS(3981), - [anon_sym_orderby] = ACTIONS(3981), - [anon_sym_group] = ACTIONS(3981), - [anon_sym_by] = ACTIONS(3981), - [anon_sym_select] = ACTIONS(3981), - [anon_sym_as] = ACTIONS(3981), - [anon_sym_is] = ACTIONS(3981), - [anon_sym_DASH_GT] = ACTIONS(3981), - [anon_sym_with] = ACTIONS(3981), - [aux_sym_preproc_if_token3] = ACTIONS(3981), - [aux_sym_preproc_else_token1] = ACTIONS(3981), - [aux_sym_preproc_elif_token1] = ACTIONS(3981), + [2963] = { + [sym_preproc_region] = STATE(2963), + [sym_preproc_endregion] = STATE(2963), + [sym_preproc_line] = STATE(2963), + [sym_preproc_pragma] = STATE(2963), + [sym_preproc_nullable] = STATE(2963), + [sym_preproc_error] = STATE(2963), + [sym_preproc_warning] = STATE(2963), + [sym_preproc_define] = STATE(2963), + [sym_preproc_undef] = STATE(2963), + [anon_sym_SEMI] = ACTIONS(2955), + [anon_sym_LBRACK] = ACTIONS(2955), + [anon_sym_COLON] = ACTIONS(2955), + [anon_sym_COMMA] = ACTIONS(2955), + [anon_sym_RBRACK] = ACTIONS(2955), + [anon_sym_LPAREN] = ACTIONS(2955), + [anon_sym_RPAREN] = ACTIONS(2955), + [anon_sym_RBRACE] = ACTIONS(2955), + [anon_sym_LT] = ACTIONS(2953), + [anon_sym_GT] = ACTIONS(2953), + [anon_sym_in] = ACTIONS(2953), + [anon_sym_where] = ACTIONS(2955), + [anon_sym_QMARK] = ACTIONS(2953), + [anon_sym_BANG] = ACTIONS(2953), + [anon_sym_PLUS_PLUS] = ACTIONS(2955), + [anon_sym_DASH_DASH] = ACTIONS(2955), + [anon_sym_PLUS] = ACTIONS(2953), + [anon_sym_DASH] = ACTIONS(2953), + [anon_sym_STAR] = ACTIONS(2955), + [anon_sym_SLASH] = ACTIONS(2953), + [anon_sym_PERCENT] = ACTIONS(2955), + [anon_sym_CARET] = ACTIONS(2955), + [anon_sym_PIPE] = ACTIONS(2953), + [anon_sym_AMP] = ACTIONS(2953), + [anon_sym_LT_LT] = ACTIONS(2955), + [anon_sym_GT_GT] = ACTIONS(2953), + [anon_sym_GT_GT_GT] = ACTIONS(2955), + [anon_sym_EQ_EQ] = ACTIONS(2955), + [anon_sym_BANG_EQ] = ACTIONS(2955), + [anon_sym_GT_EQ] = ACTIONS(2955), + [anon_sym_LT_EQ] = ACTIONS(2955), + [anon_sym_DOT] = ACTIONS(2953), + [anon_sym_EQ_GT] = ACTIONS(2955), + [anon_sym_switch] = ACTIONS(2955), + [anon_sym_DOT_DOT] = ACTIONS(2955), + [anon_sym_and] = ACTIONS(2955), + [anon_sym_or] = ACTIONS(2953), + [anon_sym_AMP_AMP] = ACTIONS(2955), + [anon_sym_PIPE_PIPE] = ACTIONS(2955), + [anon_sym_QMARK_QMARK] = ACTIONS(2955), + [anon_sym_from] = ACTIONS(2955), + [anon_sym_into] = ACTIONS(2955), + [anon_sym_join] = ACTIONS(2955), + [anon_sym_on] = ACTIONS(2955), + [anon_sym_equals] = ACTIONS(2955), + [anon_sym_let] = ACTIONS(2955), + [anon_sym_orderby] = ACTIONS(2955), + [anon_sym_group] = ACTIONS(2955), + [anon_sym_by] = ACTIONS(2955), + [anon_sym_select] = ACTIONS(2955), + [anon_sym_as] = ACTIONS(2955), + [anon_sym_is] = ACTIONS(2955), + [anon_sym_DASH_GT] = ACTIONS(2955), + [anon_sym_with] = ACTIONS(2955), + [aux_sym_preproc_if_token3] = ACTIONS(2955), + [aux_sym_preproc_else_token1] = ACTIONS(2955), + [aux_sym_preproc_elif_token1] = ACTIONS(2955), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -467866,16 +466946,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), }, - [2970] = { - [sym_preproc_region] = STATE(2970), - [sym_preproc_endregion] = STATE(2970), - [sym_preproc_line] = STATE(2970), - [sym_preproc_pragma] = STATE(2970), - [sym_preproc_nullable] = STATE(2970), - [sym_preproc_error] = STATE(2970), - [sym_preproc_warning] = STATE(2970), - [sym_preproc_define] = STATE(2970), - [sym_preproc_undef] = STATE(2970), + [2964] = { + [sym_preproc_region] = STATE(2964), + [sym_preproc_endregion] = STATE(2964), + [sym_preproc_line] = STATE(2964), + [sym_preproc_pragma] = STATE(2964), + [sym_preproc_nullable] = STATE(2964), + [sym_preproc_error] = STATE(2964), + [sym_preproc_warning] = STATE(2964), + [sym_preproc_define] = STATE(2964), + [sym_preproc_undef] = STATE(2964), [anon_sym_SEMI] = ACTIONS(4945), [anon_sym_LBRACK] = ACTIONS(4945), [anon_sym_COLON] = ACTIONS(4945), @@ -467944,16 +467024,172 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), }, - [2971] = { - [sym_preproc_region] = STATE(2971), - [sym_preproc_endregion] = STATE(2971), - [sym_preproc_line] = STATE(2971), - [sym_preproc_pragma] = STATE(2971), - [sym_preproc_nullable] = STATE(2971), - [sym_preproc_error] = STATE(2971), - [sym_preproc_warning] = STATE(2971), - [sym_preproc_define] = STATE(2971), - [sym_preproc_undef] = STATE(2971), + [2965] = { + [sym_preproc_region] = STATE(2965), + [sym_preproc_endregion] = STATE(2965), + [sym_preproc_line] = STATE(2965), + [sym_preproc_pragma] = STATE(2965), + [sym_preproc_nullable] = STATE(2965), + [sym_preproc_error] = STATE(2965), + [sym_preproc_warning] = STATE(2965), + [sym_preproc_define] = STATE(2965), + [sym_preproc_undef] = STATE(2965), + [anon_sym_SEMI] = ACTIONS(3644), + [anon_sym_LBRACK] = ACTIONS(3644), + [anon_sym_COLON] = ACTIONS(3644), + [anon_sym_COMMA] = ACTIONS(3644), + [anon_sym_RBRACK] = ACTIONS(3644), + [anon_sym_LPAREN] = ACTIONS(3644), + [anon_sym_RPAREN] = ACTIONS(3644), + [anon_sym_LBRACE] = ACTIONS(3644), + [anon_sym_RBRACE] = ACTIONS(3644), + [anon_sym_LT] = ACTIONS(3642), + [anon_sym_GT] = ACTIONS(3642), + [anon_sym_in] = ACTIONS(3644), + [anon_sym_where] = ACTIONS(3644), + [anon_sym_QMARK] = ACTIONS(3642), + [anon_sym_BANG] = ACTIONS(3642), + [anon_sym_PLUS_PLUS] = ACTIONS(3644), + [anon_sym_DASH_DASH] = ACTIONS(3644), + [anon_sym_PLUS] = ACTIONS(3642), + [anon_sym_DASH] = ACTIONS(3642), + [anon_sym_STAR] = ACTIONS(3644), + [anon_sym_SLASH] = ACTIONS(3642), + [anon_sym_PERCENT] = ACTIONS(3644), + [anon_sym_CARET] = ACTIONS(3644), + [anon_sym_PIPE] = ACTIONS(3642), + [anon_sym_AMP] = ACTIONS(3642), + [anon_sym_LT_LT] = ACTIONS(3644), + [anon_sym_GT_GT] = ACTIONS(3642), + [anon_sym_GT_GT_GT] = ACTIONS(3644), + [anon_sym_EQ_EQ] = ACTIONS(3644), + [anon_sym_BANG_EQ] = ACTIONS(3644), + [anon_sym_GT_EQ] = ACTIONS(3644), + [anon_sym_LT_EQ] = ACTIONS(3644), + [anon_sym_DOT] = ACTIONS(3642), + [anon_sym_EQ_GT] = ACTIONS(3644), + [anon_sym_switch] = ACTIONS(3644), + [anon_sym_DOT_DOT] = ACTIONS(3644), + [anon_sym_and] = ACTIONS(3644), + [anon_sym_or] = ACTIONS(3642), + [anon_sym_AMP_AMP] = ACTIONS(3644), + [anon_sym_PIPE_PIPE] = ACTIONS(3644), + [anon_sym_QMARK_QMARK] = ACTIONS(3644), + [anon_sym_from] = ACTIONS(3644), + [anon_sym_join] = ACTIONS(3644), + [anon_sym_on] = ACTIONS(3644), + [anon_sym_equals] = ACTIONS(3644), + [anon_sym_let] = ACTIONS(3644), + [anon_sym_orderby] = ACTIONS(3644), + [anon_sym_group] = ACTIONS(3644), + [anon_sym_by] = ACTIONS(3644), + [anon_sym_select] = ACTIONS(3644), + [anon_sym_as] = ACTIONS(3644), + [anon_sym_is] = ACTIONS(3644), + [anon_sym_DASH_GT] = ACTIONS(3644), + [anon_sym_with] = ACTIONS(3644), + [aux_sym_preproc_if_token3] = ACTIONS(3644), + [aux_sym_preproc_else_token1] = ACTIONS(3644), + [aux_sym_preproc_elif_token1] = ACTIONS(3644), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + }, + [2966] = { + [sym_preproc_region] = STATE(2966), + [sym_preproc_endregion] = STATE(2966), + [sym_preproc_line] = STATE(2966), + [sym_preproc_pragma] = STATE(2966), + [sym_preproc_nullable] = STATE(2966), + [sym_preproc_error] = STATE(2966), + [sym_preproc_warning] = STATE(2966), + [sym_preproc_define] = STATE(2966), + [sym_preproc_undef] = STATE(2966), + [anon_sym_SEMI] = ACTIONS(4226), + [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_LT] = ACTIONS(4228), + [anon_sym_GT] = ACTIONS(4228), + [anon_sym_in] = ACTIONS(4228), + [anon_sym_where] = ACTIONS(4226), + [anon_sym_QMARK] = ACTIONS(4228), + [anon_sym_BANG] = ACTIONS(4228), + [anon_sym_PLUS_PLUS] = ACTIONS(4226), + [anon_sym_DASH_DASH] = ACTIONS(4226), + [anon_sym_PLUS] = ACTIONS(4228), + [anon_sym_DASH] = ACTIONS(4228), + [anon_sym_STAR] = ACTIONS(4226), + [anon_sym_SLASH] = ACTIONS(4228), + [anon_sym_PERCENT] = ACTIONS(4226), + [anon_sym_CARET] = ACTIONS(4226), + [anon_sym_PIPE] = ACTIONS(4228), + [anon_sym_AMP] = ACTIONS(4228), + [anon_sym_LT_LT] = ACTIONS(4226), + [anon_sym_GT_GT] = ACTIONS(4228), + [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(4228), + [anon_sym_EQ_GT] = ACTIONS(4226), + [anon_sym_switch] = ACTIONS(4226), + [anon_sym_DOT_DOT] = ACTIONS(4226), + [anon_sym_and] = ACTIONS(4226), + [anon_sym_or] = ACTIONS(4228), + [anon_sym_AMP_AMP] = ACTIONS(4226), + [anon_sym_PIPE_PIPE] = ACTIONS(4226), + [anon_sym_QMARK_QMARK] = ACTIONS(4226), + [anon_sym_from] = ACTIONS(4226), + [anon_sym_into] = ACTIONS(4226), + [anon_sym_join] = ACTIONS(4226), + [anon_sym_on] = ACTIONS(4226), + [anon_sym_equals] = ACTIONS(4226), + [anon_sym_let] = ACTIONS(4226), + [anon_sym_orderby] = ACTIONS(4226), + [anon_sym_group] = ACTIONS(4226), + [anon_sym_by] = ACTIONS(4226), + [anon_sym_select] = ACTIONS(4226), + [anon_sym_as] = ACTIONS(4226), + [anon_sym_is] = ACTIONS(4226), + [anon_sym_DASH_GT] = ACTIONS(4226), + [anon_sym_with] = ACTIONS(4226), + [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), + }, + [2967] = { + [sym_preproc_region] = STATE(2967), + [sym_preproc_endregion] = STATE(2967), + [sym_preproc_line] = STATE(2967), + [sym_preproc_pragma] = STATE(2967), + [sym_preproc_nullable] = STATE(2967), + [sym_preproc_error] = STATE(2967), + [sym_preproc_warning] = STATE(2967), + [sym_preproc_define] = STATE(2967), + [sym_preproc_undef] = STATE(2967), [anon_sym_SEMI] = ACTIONS(4949), [anon_sym_LBRACK] = ACTIONS(4949), [anon_sym_COLON] = ACTIONS(4949), @@ -468022,60 +467258,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), }, - [2972] = { - [sym_preproc_region] = STATE(2972), - [sym_preproc_endregion] = STATE(2972), - [sym_preproc_line] = STATE(2972), - [sym_preproc_pragma] = STATE(2972), - [sym_preproc_nullable] = STATE(2972), - [sym_preproc_error] = STATE(2972), - [sym_preproc_warning] = STATE(2972), - [sym_preproc_define] = STATE(2972), - [sym_preproc_undef] = STATE(2972), - [sym__identifier_token] = ACTIONS(4953), - [anon_sym_extern] = ACTIONS(4953), - [anon_sym_alias] = ACTIONS(4953), - [anon_sym_global] = ACTIONS(4953), - [anon_sym_unsafe] = ACTIONS(4953), - [anon_sym_static] = ACTIONS(4953), - [anon_sym_LBRACK] = ACTIONS(4955), - [anon_sym_LPAREN] = ACTIONS(4955), - [anon_sym_event] = ACTIONS(4953), - [anon_sym_class] = ACTIONS(4953), - [anon_sym_ref] = ACTIONS(4953), - [anon_sym_struct] = ACTIONS(4953), - [anon_sym_enum] = ACTIONS(4953), - [anon_sym_interface] = ACTIONS(4953), - [anon_sym_delegate] = ACTIONS(4953), - [anon_sym_record] = ACTIONS(4953), - [anon_sym_abstract] = ACTIONS(4953), - [anon_sym_async] = ACTIONS(4953), - [anon_sym_const] = ACTIONS(4953), - [anon_sym_file] = ACTIONS(4953), - [anon_sym_fixed] = ACTIONS(4953), - [anon_sym_internal] = ACTIONS(4953), - [anon_sym_new] = ACTIONS(4953), - [anon_sym_override] = ACTIONS(4953), - [anon_sym_partial] = ACTIONS(4953), - [anon_sym_private] = ACTIONS(4953), - [anon_sym_protected] = ACTIONS(4953), - [anon_sym_public] = ACTIONS(4953), - [anon_sym_readonly] = ACTIONS(4953), - [anon_sym_required] = ACTIONS(4953), - [anon_sym_sealed] = ACTIONS(4953), - [anon_sym_virtual] = ACTIONS(4953), - [anon_sym_volatile] = ACTIONS(4953), + [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(4953), + [anon_sym_LBRACK] = ACTIONS(4953), + [anon_sym_COLON] = ACTIONS(4953), + [anon_sym_COMMA] = ACTIONS(4953), + [anon_sym_RBRACK] = ACTIONS(4953), + [anon_sym_LPAREN] = ACTIONS(4953), + [anon_sym_RPAREN] = ACTIONS(4953), + [anon_sym_RBRACE] = ACTIONS(4953), + [anon_sym_LT] = ACTIONS(4955), + [anon_sym_GT] = ACTIONS(4955), + [anon_sym_in] = ACTIONS(4955), [anon_sym_where] = ACTIONS(4953), - [anon_sym_notnull] = ACTIONS(4953), - [anon_sym_unmanaged] = ACTIONS(4953), - [anon_sym_TILDE] = ACTIONS(4955), - [anon_sym_implicit] = ACTIONS(4953), - [anon_sym_explicit] = ACTIONS(4953), - [anon_sym_scoped] = ACTIONS(4953), - [anon_sym_var] = ACTIONS(4953), - [sym_predefined_type] = ACTIONS(4953), - [anon_sym_yield] = ACTIONS(4953), - [anon_sym_when] = ACTIONS(4953), + [anon_sym_QMARK] = ACTIONS(4955), + [anon_sym_BANG] = ACTIONS(4955), + [anon_sym_PLUS_PLUS] = ACTIONS(4953), + [anon_sym_DASH_DASH] = ACTIONS(4953), + [anon_sym_PLUS] = ACTIONS(4955), + [anon_sym_DASH] = ACTIONS(4955), + [anon_sym_STAR] = ACTIONS(4953), + [anon_sym_SLASH] = ACTIONS(4955), + [anon_sym_PERCENT] = ACTIONS(4953), + [anon_sym_CARET] = ACTIONS(4953), + [anon_sym_PIPE] = ACTIONS(4955), + [anon_sym_AMP] = ACTIONS(4955), + [anon_sym_LT_LT] = ACTIONS(4953), + [anon_sym_GT_GT] = ACTIONS(4955), + [anon_sym_GT_GT_GT] = ACTIONS(4953), + [anon_sym_EQ_EQ] = ACTIONS(4953), + [anon_sym_BANG_EQ] = ACTIONS(4953), + [anon_sym_GT_EQ] = ACTIONS(4953), + [anon_sym_LT_EQ] = ACTIONS(4953), + [anon_sym_DOT] = ACTIONS(4955), + [anon_sym_EQ_GT] = ACTIONS(4953), + [anon_sym_switch] = ACTIONS(4953), + [anon_sym_DOT_DOT] = ACTIONS(4953), + [anon_sym_and] = ACTIONS(4953), + [anon_sym_or] = ACTIONS(4955), + [anon_sym_AMP_AMP] = ACTIONS(4953), + [anon_sym_PIPE_PIPE] = ACTIONS(4953), + [anon_sym_QMARK_QMARK] = ACTIONS(4953), [anon_sym_from] = ACTIONS(4953), [anon_sym_into] = ACTIONS(4953), [anon_sym_join] = ACTIONS(4953), @@ -468083,12 +467315,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_equals] = ACTIONS(4953), [anon_sym_let] = ACTIONS(4953), [anon_sym_orderby] = ACTIONS(4953), - [anon_sym_ascending] = ACTIONS(4953), - [anon_sym_descending] = ACTIONS(4953), [anon_sym_group] = ACTIONS(4953), [anon_sym_by] = ACTIONS(4953), [anon_sym_select] = ACTIONS(4953), - [aux_sym_preproc_if_token1] = ACTIONS(4955), + [anon_sym_as] = ACTIONS(4953), + [anon_sym_is] = ACTIONS(4953), + [anon_sym_DASH_GT] = ACTIONS(4953), + [anon_sym_with] = ACTIONS(4953), + [aux_sym_preproc_if_token3] = ACTIONS(4953), + [aux_sym_preproc_else_token1] = ACTIONS(4953), + [aux_sym_preproc_elif_token1] = ACTIONS(4953), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -468100,16 +467336,16 @@ 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), + [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(4957), [anon_sym_LBRACK] = ACTIONS(4957), [anon_sym_COLON] = ACTIONS(4957), @@ -468178,16 +467414,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [2970] = { + [sym_preproc_region] = STATE(2970), + [sym_preproc_endregion] = STATE(2970), + [sym_preproc_line] = STATE(2970), + [sym_preproc_pragma] = STATE(2970), + [sym_preproc_nullable] = STATE(2970), + [sym_preproc_error] = STATE(2970), + [sym_preproc_warning] = STATE(2970), + [sym_preproc_define] = STATE(2970), + [sym_preproc_undef] = STATE(2970), [anon_sym_SEMI] = ACTIONS(4961), [anon_sym_LBRACK] = ACTIONS(4961), [anon_sym_COLON] = ACTIONS(4961), @@ -468256,16 +467492,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), }, - [2975] = { - [sym_preproc_region] = STATE(2975), - [sym_preproc_endregion] = STATE(2975), - [sym_preproc_line] = STATE(2975), - [sym_preproc_pragma] = STATE(2975), - [sym_preproc_nullable] = STATE(2975), - [sym_preproc_error] = STATE(2975), - [sym_preproc_warning] = STATE(2975), - [sym_preproc_define] = STATE(2975), - [sym_preproc_undef] = STATE(2975), + [2971] = { + [sym_preproc_region] = STATE(2971), + [sym_preproc_endregion] = STATE(2971), + [sym_preproc_line] = STATE(2971), + [sym_preproc_pragma] = STATE(2971), + [sym_preproc_nullable] = STATE(2971), + [sym_preproc_error] = STATE(2971), + [sym_preproc_warning] = STATE(2971), + [sym_preproc_define] = STATE(2971), + [sym_preproc_undef] = STATE(2971), [anon_sym_SEMI] = ACTIONS(4965), [anon_sym_LBRACK] = ACTIONS(4965), [anon_sym_COLON] = ACTIONS(4965), @@ -468334,94 +467570,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), }, - [2976] = { - [sym_preproc_region] = STATE(2976), - [sym_preproc_endregion] = STATE(2976), - [sym_preproc_line] = STATE(2976), - [sym_preproc_pragma] = STATE(2976), - [sym_preproc_nullable] = STATE(2976), - [sym_preproc_error] = STATE(2976), - [sym_preproc_warning] = STATE(2976), - [sym_preproc_define] = STATE(2976), - [sym_preproc_undef] = STATE(2976), - [anon_sym_SEMI] = ACTIONS(3687), - [anon_sym_LBRACK] = ACTIONS(3687), - [anon_sym_COLON] = ACTIONS(3687), - [anon_sym_COMMA] = ACTIONS(3687), - [anon_sym_RBRACK] = ACTIONS(3687), - [anon_sym_LPAREN] = ACTIONS(3687), - [anon_sym_RPAREN] = ACTIONS(3687), - [anon_sym_LBRACE] = ACTIONS(3687), - [anon_sym_RBRACE] = ACTIONS(3687), - [anon_sym_LT] = ACTIONS(3685), - [anon_sym_GT] = ACTIONS(3685), - [anon_sym_in] = ACTIONS(3687), - [anon_sym_where] = ACTIONS(3687), - [anon_sym_QMARK] = ACTIONS(3685), - [anon_sym_BANG] = ACTIONS(3685), - [anon_sym_PLUS_PLUS] = ACTIONS(3687), - [anon_sym_DASH_DASH] = ACTIONS(3687), - [anon_sym_PLUS] = ACTIONS(3685), - [anon_sym_DASH] = ACTIONS(3685), - [anon_sym_STAR] = ACTIONS(3687), - [anon_sym_SLASH] = ACTIONS(3685), - [anon_sym_PERCENT] = ACTIONS(3687), - [anon_sym_CARET] = ACTIONS(3687), - [anon_sym_PIPE] = ACTIONS(3685), - [anon_sym_AMP] = ACTIONS(3685), - [anon_sym_LT_LT] = ACTIONS(3687), - [anon_sym_GT_GT] = ACTIONS(3685), - [anon_sym_GT_GT_GT] = ACTIONS(3687), - [anon_sym_EQ_EQ] = ACTIONS(3687), - [anon_sym_BANG_EQ] = ACTIONS(3687), - [anon_sym_GT_EQ] = ACTIONS(3687), - [anon_sym_LT_EQ] = ACTIONS(3687), - [anon_sym_DOT] = ACTIONS(3685), - [anon_sym_EQ_GT] = ACTIONS(3687), - [anon_sym_switch] = ACTIONS(3687), - [anon_sym_DOT_DOT] = ACTIONS(3687), - [anon_sym_and] = ACTIONS(3687), - [anon_sym_or] = ACTIONS(3685), - [anon_sym_AMP_AMP] = ACTIONS(3687), - [anon_sym_PIPE_PIPE] = ACTIONS(3687), - [anon_sym_QMARK_QMARK] = ACTIONS(3687), - [anon_sym_from] = ACTIONS(3687), - [anon_sym_join] = ACTIONS(3687), - [anon_sym_on] = ACTIONS(3687), - [anon_sym_equals] = ACTIONS(3687), - [anon_sym_let] = ACTIONS(3687), - [anon_sym_orderby] = ACTIONS(3687), - [anon_sym_group] = ACTIONS(3687), - [anon_sym_by] = ACTIONS(3687), - [anon_sym_select] = ACTIONS(3687), - [anon_sym_as] = ACTIONS(3687), - [anon_sym_is] = ACTIONS(3687), - [anon_sym_DASH_GT] = ACTIONS(3687), - [anon_sym_with] = ACTIONS(3687), - [aux_sym_preproc_if_token3] = ACTIONS(3687), - [aux_sym_preproc_else_token1] = ACTIONS(3687), - [aux_sym_preproc_elif_token1] = ACTIONS(3687), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - }, - [2977] = { - [sym_preproc_region] = STATE(2977), - [sym_preproc_endregion] = STATE(2977), - [sym_preproc_line] = STATE(2977), - [sym_preproc_pragma] = STATE(2977), - [sym_preproc_nullable] = STATE(2977), - [sym_preproc_error] = STATE(2977), - [sym_preproc_warning] = STATE(2977), - [sym_preproc_define] = STATE(2977), - [sym_preproc_undef] = STATE(2977), + [2972] = { + [sym_preproc_region] = STATE(2972), + [sym_preproc_endregion] = STATE(2972), + [sym_preproc_line] = STATE(2972), + [sym_preproc_pragma] = STATE(2972), + [sym_preproc_nullable] = STATE(2972), + [sym_preproc_error] = STATE(2972), + [sym_preproc_warning] = STATE(2972), + [sym_preproc_define] = STATE(2972), + [sym_preproc_undef] = STATE(2972), [anon_sym_SEMI] = ACTIONS(4969), [anon_sym_LBRACK] = ACTIONS(4969), [anon_sym_COLON] = ACTIONS(4969), @@ -468490,60 +467648,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), }, - [2978] = { - [sym_preproc_region] = STATE(2978), - [sym_preproc_endregion] = STATE(2978), - [sym_preproc_line] = STATE(2978), - [sym_preproc_pragma] = STATE(2978), - [sym_preproc_nullable] = STATE(2978), - [sym_preproc_error] = STATE(2978), - [sym_preproc_warning] = STATE(2978), - [sym_preproc_define] = STATE(2978), - [sym_preproc_undef] = STATE(2978), - [sym__identifier_token] = ACTIONS(4973), - [anon_sym_extern] = ACTIONS(4973), - [anon_sym_alias] = ACTIONS(4973), - [anon_sym_global] = ACTIONS(4973), - [anon_sym_unsafe] = ACTIONS(4973), - [anon_sym_static] = ACTIONS(4973), - [anon_sym_LBRACK] = ACTIONS(4975), - [anon_sym_LPAREN] = ACTIONS(4975), - [anon_sym_event] = ACTIONS(4973), - [anon_sym_class] = ACTIONS(4973), - [anon_sym_ref] = ACTIONS(4973), - [anon_sym_struct] = ACTIONS(4973), - [anon_sym_enum] = ACTIONS(4973), - [anon_sym_interface] = ACTIONS(4973), - [anon_sym_delegate] = ACTIONS(4973), - [anon_sym_record] = ACTIONS(4973), - [anon_sym_abstract] = ACTIONS(4973), - [anon_sym_async] = ACTIONS(4973), - [anon_sym_const] = ACTIONS(4973), - [anon_sym_file] = ACTIONS(4973), - [anon_sym_fixed] = ACTIONS(4973), - [anon_sym_internal] = ACTIONS(4973), - [anon_sym_new] = ACTIONS(4973), - [anon_sym_override] = ACTIONS(4973), - [anon_sym_partial] = ACTIONS(4973), - [anon_sym_private] = ACTIONS(4973), - [anon_sym_protected] = ACTIONS(4973), - [anon_sym_public] = ACTIONS(4973), - [anon_sym_readonly] = ACTIONS(4973), - [anon_sym_required] = ACTIONS(4973), - [anon_sym_sealed] = ACTIONS(4973), - [anon_sym_virtual] = ACTIONS(4973), - [anon_sym_volatile] = ACTIONS(4973), + [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(4973), + [anon_sym_LBRACK] = ACTIONS(4973), + [anon_sym_COLON] = ACTIONS(4973), + [anon_sym_COMMA] = ACTIONS(4973), + [anon_sym_RBRACK] = ACTIONS(4973), + [anon_sym_LPAREN] = ACTIONS(4973), + [anon_sym_RPAREN] = ACTIONS(4973), + [anon_sym_RBRACE] = ACTIONS(4973), + [anon_sym_LT] = ACTIONS(4975), + [anon_sym_GT] = ACTIONS(4975), + [anon_sym_in] = ACTIONS(4975), [anon_sym_where] = ACTIONS(4973), - [anon_sym_notnull] = ACTIONS(4973), - [anon_sym_unmanaged] = ACTIONS(4973), - [anon_sym_TILDE] = ACTIONS(4975), - [anon_sym_implicit] = ACTIONS(4973), - [anon_sym_explicit] = ACTIONS(4973), - [anon_sym_scoped] = ACTIONS(4973), - [anon_sym_var] = ACTIONS(4973), - [sym_predefined_type] = ACTIONS(4973), - [anon_sym_yield] = ACTIONS(4973), - [anon_sym_when] = ACTIONS(4973), + [anon_sym_QMARK] = ACTIONS(4975), + [anon_sym_BANG] = ACTIONS(4975), + [anon_sym_PLUS_PLUS] = ACTIONS(4973), + [anon_sym_DASH_DASH] = ACTIONS(4973), + [anon_sym_PLUS] = ACTIONS(4975), + [anon_sym_DASH] = ACTIONS(4975), + [anon_sym_STAR] = ACTIONS(4973), + [anon_sym_SLASH] = ACTIONS(4975), + [anon_sym_PERCENT] = ACTIONS(4973), + [anon_sym_CARET] = ACTIONS(4973), + [anon_sym_PIPE] = ACTIONS(4975), + [anon_sym_AMP] = ACTIONS(4975), + [anon_sym_LT_LT] = ACTIONS(4973), + [anon_sym_GT_GT] = ACTIONS(4975), + [anon_sym_GT_GT_GT] = ACTIONS(4973), + [anon_sym_EQ_EQ] = ACTIONS(4973), + [anon_sym_BANG_EQ] = ACTIONS(4973), + [anon_sym_GT_EQ] = ACTIONS(4973), + [anon_sym_LT_EQ] = ACTIONS(4973), + [anon_sym_DOT] = ACTIONS(4975), + [anon_sym_EQ_GT] = ACTIONS(4973), + [anon_sym_switch] = ACTIONS(4973), + [anon_sym_DOT_DOT] = ACTIONS(4973), + [anon_sym_and] = ACTIONS(4973), + [anon_sym_or] = ACTIONS(4975), + [anon_sym_AMP_AMP] = ACTIONS(4973), + [anon_sym_PIPE_PIPE] = ACTIONS(4973), + [anon_sym_QMARK_QMARK] = ACTIONS(4973), [anon_sym_from] = ACTIONS(4973), [anon_sym_into] = ACTIONS(4973), [anon_sym_join] = ACTIONS(4973), @@ -468551,90 +467705,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_equals] = ACTIONS(4973), [anon_sym_let] = ACTIONS(4973), [anon_sym_orderby] = ACTIONS(4973), - [anon_sym_ascending] = ACTIONS(4973), - [anon_sym_descending] = ACTIONS(4973), [anon_sym_group] = ACTIONS(4973), [anon_sym_by] = ACTIONS(4973), [anon_sym_select] = ACTIONS(4973), - [aux_sym_preproc_if_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), - }, - [2979] = { - [sym_preproc_region] = STATE(2979), - [sym_preproc_endregion] = STATE(2979), - [sym_preproc_line] = STATE(2979), - [sym_preproc_pragma] = STATE(2979), - [sym_preproc_nullable] = STATE(2979), - [sym_preproc_error] = STATE(2979), - [sym_preproc_warning] = STATE(2979), - [sym_preproc_define] = STATE(2979), - [sym_preproc_undef] = STATE(2979), - [sym__identifier_token] = ACTIONS(4699), - [anon_sym_extern] = ACTIONS(4699), - [anon_sym_alias] = ACTIONS(4699), - [anon_sym_global] = ACTIONS(4699), - [anon_sym_unsafe] = ACTIONS(4699), - [anon_sym_static] = ACTIONS(4699), - [anon_sym_LBRACK] = ACTIONS(4701), - [anon_sym_LPAREN] = ACTIONS(4701), - [anon_sym_event] = ACTIONS(4699), - [anon_sym_class] = ACTIONS(4699), - [anon_sym_ref] = ACTIONS(4699), - [anon_sym_struct] = ACTIONS(4699), - [anon_sym_enum] = ACTIONS(4699), - [anon_sym_interface] = ACTIONS(4699), - [anon_sym_delegate] = ACTIONS(4699), - [anon_sym_record] = ACTIONS(4699), - [anon_sym_abstract] = ACTIONS(4699), - [anon_sym_async] = ACTIONS(4699), - [anon_sym_const] = ACTIONS(4699), - [anon_sym_file] = ACTIONS(4699), - [anon_sym_fixed] = ACTIONS(4699), - [anon_sym_internal] = ACTIONS(4699), - [anon_sym_new] = ACTIONS(4699), - [anon_sym_override] = ACTIONS(4699), - [anon_sym_partial] = ACTIONS(4699), - [anon_sym_private] = ACTIONS(4699), - [anon_sym_protected] = ACTIONS(4699), - [anon_sym_public] = ACTIONS(4699), - [anon_sym_readonly] = ACTIONS(4699), - [anon_sym_required] = ACTIONS(4699), - [anon_sym_sealed] = ACTIONS(4699), - [anon_sym_virtual] = ACTIONS(4699), - [anon_sym_volatile] = ACTIONS(4699), - [anon_sym_where] = ACTIONS(4699), - [anon_sym_notnull] = ACTIONS(4699), - [anon_sym_unmanaged] = ACTIONS(4699), - [anon_sym_TILDE] = ACTIONS(4701), - [anon_sym_implicit] = ACTIONS(4699), - [anon_sym_explicit] = ACTIONS(4699), - [anon_sym_scoped] = ACTIONS(4699), - [anon_sym_var] = ACTIONS(4699), - [sym_predefined_type] = ACTIONS(4699), - [anon_sym_yield] = ACTIONS(4699), - [anon_sym_when] = ACTIONS(4699), - [anon_sym_from] = ACTIONS(4699), - [anon_sym_into] = ACTIONS(4699), - [anon_sym_join] = ACTIONS(4699), - [anon_sym_on] = ACTIONS(4699), - [anon_sym_equals] = ACTIONS(4699), - [anon_sym_let] = ACTIONS(4699), - [anon_sym_orderby] = ACTIONS(4699), - [anon_sym_ascending] = ACTIONS(4699), - [anon_sym_descending] = ACTIONS(4699), - [anon_sym_group] = ACTIONS(4699), - [anon_sym_by] = ACTIONS(4699), - [anon_sym_select] = ACTIONS(4699), - [aux_sym_preproc_if_token1] = ACTIONS(4701), + [anon_sym_as] = ACTIONS(4973), + [anon_sym_is] = ACTIONS(4973), + [anon_sym_DASH_GT] = ACTIONS(4973), + [anon_sym_with] = ACTIONS(4973), + [aux_sym_preproc_if_token3] = ACTIONS(4973), + [aux_sym_preproc_else_token1] = ACTIONS(4973), + [aux_sym_preproc_elif_token1] = ACTIONS(4973), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -468646,16 +467726,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), }, - [2980] = { - [sym_preproc_region] = STATE(2980), - [sym_preproc_endregion] = STATE(2980), - [sym_preproc_line] = STATE(2980), - [sym_preproc_pragma] = STATE(2980), - [sym_preproc_nullable] = STATE(2980), - [sym_preproc_error] = STATE(2980), - [sym_preproc_warning] = STATE(2980), - [sym_preproc_define] = STATE(2980), - [sym_preproc_undef] = STATE(2980), + [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(4977), [anon_sym_LBRACK] = ACTIONS(4977), [anon_sym_COLON] = ACTIONS(4977), @@ -468724,16 +467804,16 @@ 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), + [2975] = { + [sym_preproc_region] = STATE(2975), + [sym_preproc_endregion] = STATE(2975), + [sym_preproc_line] = STATE(2975), + [sym_preproc_pragma] = STATE(2975), + [sym_preproc_nullable] = STATE(2975), + [sym_preproc_error] = STATE(2975), + [sym_preproc_warning] = STATE(2975), + [sym_preproc_define] = STATE(2975), + [sym_preproc_undef] = STATE(2975), [anon_sym_SEMI] = ACTIONS(4981), [anon_sym_LBRACK] = ACTIONS(4981), [anon_sym_COLON] = ACTIONS(4981), @@ -468802,6 +467882,474 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), }, + [2976] = { + [sym_preproc_region] = STATE(2976), + [sym_preproc_endregion] = STATE(2976), + [sym_preproc_line] = STATE(2976), + [sym_preproc_pragma] = STATE(2976), + [sym_preproc_nullable] = STATE(2976), + [sym_preproc_error] = STATE(2976), + [sym_preproc_warning] = STATE(2976), + [sym_preproc_define] = STATE(2976), + [sym_preproc_undef] = STATE(2976), + [anon_sym_SEMI] = ACTIONS(3702), + [anon_sym_LBRACK] = ACTIONS(3702), + [anon_sym_COLON] = ACTIONS(3702), + [anon_sym_COMMA] = ACTIONS(3702), + [anon_sym_RBRACK] = ACTIONS(3702), + [anon_sym_LPAREN] = ACTIONS(3702), + [anon_sym_RPAREN] = ACTIONS(3702), + [anon_sym_LBRACE] = ACTIONS(3702), + [anon_sym_RBRACE] = ACTIONS(3702), + [anon_sym_LT] = ACTIONS(3691), + [anon_sym_GT] = ACTIONS(3691), + [anon_sym_in] = ACTIONS(3702), + [anon_sym_where] = ACTIONS(3702), + [anon_sym_QMARK] = ACTIONS(3691), + [anon_sym_BANG] = ACTIONS(3691), + [anon_sym_PLUS_PLUS] = ACTIONS(3702), + [anon_sym_DASH_DASH] = ACTIONS(3702), + [anon_sym_PLUS] = ACTIONS(3691), + [anon_sym_DASH] = ACTIONS(3691), + [anon_sym_STAR] = ACTIONS(3702), + [anon_sym_SLASH] = ACTIONS(3691), + [anon_sym_PERCENT] = ACTIONS(3702), + [anon_sym_CARET] = ACTIONS(3702), + [anon_sym_PIPE] = ACTIONS(3691), + [anon_sym_AMP] = ACTIONS(3691), + [anon_sym_LT_LT] = ACTIONS(3702), + [anon_sym_GT_GT] = ACTIONS(3691), + [anon_sym_GT_GT_GT] = ACTIONS(3702), + [anon_sym_EQ_EQ] = ACTIONS(3702), + [anon_sym_BANG_EQ] = ACTIONS(3702), + [anon_sym_GT_EQ] = ACTIONS(3702), + [anon_sym_LT_EQ] = ACTIONS(3702), + [anon_sym_DOT] = ACTIONS(3691), + [anon_sym_EQ_GT] = ACTIONS(3702), + [anon_sym_switch] = ACTIONS(3702), + [anon_sym_DOT_DOT] = ACTIONS(3702), + [anon_sym_and] = ACTIONS(3702), + [anon_sym_or] = ACTIONS(3691), + [anon_sym_AMP_AMP] = ACTIONS(3702), + [anon_sym_PIPE_PIPE] = ACTIONS(3702), + [anon_sym_QMARK_QMARK] = ACTIONS(3702), + [anon_sym_from] = ACTIONS(3702), + [anon_sym_join] = ACTIONS(3702), + [anon_sym_on] = ACTIONS(3702), + [anon_sym_equals] = ACTIONS(3702), + [anon_sym_let] = ACTIONS(3702), + [anon_sym_orderby] = ACTIONS(3702), + [anon_sym_group] = ACTIONS(3702), + [anon_sym_by] = ACTIONS(3702), + [anon_sym_select] = ACTIONS(3702), + [anon_sym_as] = ACTIONS(3702), + [anon_sym_is] = ACTIONS(3702), + [anon_sym_DASH_GT] = ACTIONS(3702), + [anon_sym_with] = ACTIONS(3702), + [aux_sym_preproc_if_token3] = ACTIONS(3702), + [aux_sym_preproc_else_token1] = ACTIONS(3702), + [aux_sym_preproc_elif_token1] = 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), + }, + [2977] = { + [sym_preproc_region] = STATE(2977), + [sym_preproc_endregion] = STATE(2977), + [sym_preproc_line] = STATE(2977), + [sym_preproc_pragma] = STATE(2977), + [sym_preproc_nullable] = STATE(2977), + [sym_preproc_error] = STATE(2977), + [sym_preproc_warning] = STATE(2977), + [sym_preproc_define] = STATE(2977), + [sym_preproc_undef] = STATE(2977), + [anon_sym_SEMI] = ACTIONS(3963), + [anon_sym_LBRACK] = ACTIONS(3963), + [anon_sym_COLON] = ACTIONS(3963), + [anon_sym_COMMA] = ACTIONS(3963), + [anon_sym_RBRACK] = ACTIONS(3963), + [anon_sym_LPAREN] = ACTIONS(3963), + [anon_sym_RPAREN] = ACTIONS(3963), + [anon_sym_LBRACE] = ACTIONS(3963), + [anon_sym_RBRACE] = ACTIONS(3963), + [anon_sym_LT] = ACTIONS(3961), + [anon_sym_GT] = ACTIONS(3961), + [anon_sym_in] = ACTIONS(3963), + [anon_sym_where] = ACTIONS(3963), + [anon_sym_QMARK] = ACTIONS(3961), + [anon_sym_BANG] = ACTIONS(3961), + [anon_sym_PLUS_PLUS] = ACTIONS(3963), + [anon_sym_DASH_DASH] = ACTIONS(3963), + [anon_sym_PLUS] = ACTIONS(3961), + [anon_sym_DASH] = ACTIONS(3961), + [anon_sym_STAR] = ACTIONS(3963), + [anon_sym_SLASH] = ACTIONS(3961), + [anon_sym_PERCENT] = ACTIONS(3963), + [anon_sym_CARET] = ACTIONS(3963), + [anon_sym_PIPE] = ACTIONS(3961), + [anon_sym_AMP] = ACTIONS(3961), + [anon_sym_LT_LT] = ACTIONS(3963), + [anon_sym_GT_GT] = ACTIONS(3961), + [anon_sym_GT_GT_GT] = ACTIONS(3963), + [anon_sym_EQ_EQ] = ACTIONS(3963), + [anon_sym_BANG_EQ] = ACTIONS(3963), + [anon_sym_GT_EQ] = ACTIONS(3963), + [anon_sym_LT_EQ] = ACTIONS(3963), + [anon_sym_DOT] = ACTIONS(3961), + [anon_sym_EQ_GT] = ACTIONS(3963), + [anon_sym_switch] = ACTIONS(3963), + [anon_sym_DOT_DOT] = ACTIONS(3963), + [anon_sym_and] = ACTIONS(3963), + [anon_sym_or] = ACTIONS(3961), + [anon_sym_AMP_AMP] = ACTIONS(3963), + [anon_sym_PIPE_PIPE] = ACTIONS(3963), + [anon_sym_QMARK_QMARK] = ACTIONS(3963), + [anon_sym_from] = ACTIONS(3963), + [anon_sym_join] = ACTIONS(3963), + [anon_sym_on] = ACTIONS(3963), + [anon_sym_equals] = ACTIONS(3963), + [anon_sym_let] = ACTIONS(3963), + [anon_sym_orderby] = ACTIONS(3963), + [anon_sym_group] = ACTIONS(3963), + [anon_sym_by] = ACTIONS(3963), + [anon_sym_select] = ACTIONS(3963), + [anon_sym_as] = ACTIONS(3963), + [anon_sym_is] = ACTIONS(3963), + [anon_sym_DASH_GT] = ACTIONS(3963), + [anon_sym_with] = ACTIONS(3963), + [aux_sym_preproc_if_token3] = ACTIONS(3963), + [aux_sym_preproc_else_token1] = ACTIONS(3963), + [aux_sym_preproc_elif_token1] = ACTIONS(3963), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + }, + [2978] = { + [sym_preproc_region] = STATE(2978), + [sym_preproc_endregion] = STATE(2978), + [sym_preproc_line] = STATE(2978), + [sym_preproc_pragma] = STATE(2978), + [sym_preproc_nullable] = STATE(2978), + [sym_preproc_error] = STATE(2978), + [sym_preproc_warning] = STATE(2978), + [sym_preproc_define] = STATE(2978), + [sym_preproc_undef] = STATE(2978), + [anon_sym_SEMI] = ACTIONS(3963), + [anon_sym_LBRACK] = ACTIONS(4033), + [anon_sym_COLON] = ACTIONS(3963), + [anon_sym_COMMA] = ACTIONS(3963), + [anon_sym_RBRACK] = ACTIONS(3963), + [anon_sym_LPAREN] = ACTIONS(3963), + [anon_sym_RPAREN] = ACTIONS(3963), + [anon_sym_LBRACE] = ACTIONS(3963), + [anon_sym_RBRACE] = ACTIONS(3963), + [anon_sym_LT] = ACTIONS(3961), + [anon_sym_GT] = ACTIONS(3961), + [anon_sym_in] = ACTIONS(3963), + [anon_sym_where] = ACTIONS(3963), + [anon_sym_QMARK] = ACTIONS(4985), + [anon_sym_BANG] = ACTIONS(3961), + [anon_sym_PLUS_PLUS] = ACTIONS(3963), + [anon_sym_DASH_DASH] = ACTIONS(3963), + [anon_sym_PLUS] = ACTIONS(3961), + [anon_sym_DASH] = ACTIONS(3961), + [anon_sym_STAR] = ACTIONS(3963), + [anon_sym_SLASH] = ACTIONS(3961), + [anon_sym_PERCENT] = ACTIONS(3963), + [anon_sym_CARET] = ACTIONS(3963), + [anon_sym_PIPE] = ACTIONS(3961), + [anon_sym_AMP] = ACTIONS(3961), + [anon_sym_LT_LT] = ACTIONS(3963), + [anon_sym_GT_GT] = ACTIONS(3961), + [anon_sym_GT_GT_GT] = ACTIONS(3963), + [anon_sym_EQ_EQ] = ACTIONS(3963), + [anon_sym_BANG_EQ] = ACTIONS(3963), + [anon_sym_GT_EQ] = ACTIONS(3963), + [anon_sym_LT_EQ] = ACTIONS(3963), + [anon_sym_DOT] = ACTIONS(3961), + [anon_sym_EQ_GT] = ACTIONS(3963), + [anon_sym_switch] = ACTIONS(3963), + [anon_sym_DOT_DOT] = ACTIONS(3963), + [anon_sym_and] = ACTIONS(3963), + [anon_sym_or] = ACTIONS(3961), + [anon_sym_AMP_AMP] = ACTIONS(3963), + [anon_sym_PIPE_PIPE] = ACTIONS(3963), + [anon_sym_QMARK_QMARK] = ACTIONS(3963), + [anon_sym_from] = ACTIONS(3963), + [anon_sym_join] = ACTIONS(3963), + [anon_sym_on] = ACTIONS(3963), + [anon_sym_equals] = ACTIONS(3963), + [anon_sym_let] = ACTIONS(3963), + [anon_sym_orderby] = ACTIONS(3963), + [anon_sym_group] = ACTIONS(3963), + [anon_sym_by] = ACTIONS(3963), + [anon_sym_select] = ACTIONS(3963), + [anon_sym_as] = ACTIONS(3963), + [anon_sym_is] = ACTIONS(3963), + [anon_sym_DASH_GT] = ACTIONS(3963), + [anon_sym_with] = ACTIONS(3963), + [aux_sym_preproc_if_token3] = ACTIONS(3963), + [aux_sym_preproc_else_token1] = ACTIONS(3963), + [aux_sym_preproc_elif_token1] = ACTIONS(3963), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + }, + [2979] = { + [sym_preproc_region] = STATE(2979), + [sym_preproc_endregion] = STATE(2979), + [sym_preproc_line] = STATE(2979), + [sym_preproc_pragma] = STATE(2979), + [sym_preproc_nullable] = STATE(2979), + [sym_preproc_error] = STATE(2979), + [sym_preproc_warning] = STATE(2979), + [sym_preproc_define] = STATE(2979), + [sym_preproc_undef] = STATE(2979), + [anon_sym_SEMI] = ACTIONS(3963), + [anon_sym_LBRACK] = ACTIONS(4033), + [anon_sym_COLON] = ACTIONS(3963), + [anon_sym_COMMA] = ACTIONS(3963), + [anon_sym_RBRACK] = ACTIONS(3963), + [anon_sym_LPAREN] = ACTIONS(3963), + [anon_sym_RPAREN] = ACTIONS(3963), + [anon_sym_LBRACE] = ACTIONS(3963), + [anon_sym_RBRACE] = ACTIONS(3963), + [anon_sym_LT] = ACTIONS(3961), + [anon_sym_GT] = ACTIONS(3961), + [anon_sym_in] = ACTIONS(3963), + [anon_sym_where] = ACTIONS(3963), + [anon_sym_QMARK] = ACTIONS(3961), + [anon_sym_BANG] = ACTIONS(3961), + [anon_sym_PLUS_PLUS] = ACTIONS(3963), + [anon_sym_DASH_DASH] = ACTIONS(3963), + [anon_sym_PLUS] = ACTIONS(3961), + [anon_sym_DASH] = ACTIONS(3961), + [anon_sym_STAR] = ACTIONS(4039), + [anon_sym_SLASH] = ACTIONS(3961), + [anon_sym_PERCENT] = ACTIONS(3963), + [anon_sym_CARET] = ACTIONS(3963), + [anon_sym_PIPE] = ACTIONS(3961), + [anon_sym_AMP] = ACTIONS(3961), + [anon_sym_LT_LT] = ACTIONS(3963), + [anon_sym_GT_GT] = ACTIONS(3961), + [anon_sym_GT_GT_GT] = ACTIONS(3963), + [anon_sym_EQ_EQ] = ACTIONS(3963), + [anon_sym_BANG_EQ] = ACTIONS(3963), + [anon_sym_GT_EQ] = ACTIONS(3963), + [anon_sym_LT_EQ] = ACTIONS(3963), + [anon_sym_DOT] = ACTIONS(3961), + [anon_sym_EQ_GT] = ACTIONS(3963), + [anon_sym_switch] = ACTIONS(3963), + [anon_sym_DOT_DOT] = ACTIONS(3963), + [anon_sym_and] = ACTIONS(3963), + [anon_sym_or] = ACTIONS(3961), + [anon_sym_AMP_AMP] = ACTIONS(3963), + [anon_sym_PIPE_PIPE] = ACTIONS(3963), + [anon_sym_QMARK_QMARK] = ACTIONS(3963), + [anon_sym_from] = ACTIONS(3963), + [anon_sym_join] = ACTIONS(3963), + [anon_sym_on] = ACTIONS(3963), + [anon_sym_equals] = ACTIONS(3963), + [anon_sym_let] = ACTIONS(3963), + [anon_sym_orderby] = ACTIONS(3963), + [anon_sym_group] = ACTIONS(3963), + [anon_sym_by] = ACTIONS(3963), + [anon_sym_select] = ACTIONS(3963), + [anon_sym_as] = ACTIONS(3963), + [anon_sym_is] = ACTIONS(3963), + [anon_sym_DASH_GT] = ACTIONS(3963), + [anon_sym_with] = ACTIONS(3963), + [aux_sym_preproc_if_token3] = ACTIONS(3963), + [aux_sym_preproc_else_token1] = ACTIONS(3963), + [aux_sym_preproc_elif_token1] = ACTIONS(3963), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + }, + [2980] = { + [sym_preproc_region] = STATE(2980), + [sym_preproc_endregion] = STATE(2980), + [sym_preproc_line] = STATE(2980), + [sym_preproc_pragma] = STATE(2980), + [sym_preproc_nullable] = STATE(2980), + [sym_preproc_error] = STATE(2980), + [sym_preproc_warning] = STATE(2980), + [sym_preproc_define] = STATE(2980), + [sym_preproc_undef] = STATE(2980), + [anon_sym_SEMI] = ACTIONS(3963), + [anon_sym_LBRACK] = ACTIONS(4033), + [anon_sym_COLON] = ACTIONS(3963), + [anon_sym_COMMA] = ACTIONS(3963), + [anon_sym_RBRACK] = ACTIONS(3963), + [anon_sym_LPAREN] = ACTIONS(3963), + [anon_sym_RPAREN] = ACTIONS(3963), + [anon_sym_LBRACE] = ACTIONS(3963), + [anon_sym_RBRACE] = ACTIONS(3963), + [anon_sym_LT] = ACTIONS(3961), + [anon_sym_GT] = ACTIONS(3961), + [anon_sym_in] = ACTIONS(3963), + [anon_sym_where] = ACTIONS(3963), + [anon_sym_QMARK] = ACTIONS(4985), + [anon_sym_BANG] = ACTIONS(3961), + [anon_sym_PLUS_PLUS] = ACTIONS(3963), + [anon_sym_DASH_DASH] = ACTIONS(3963), + [anon_sym_PLUS] = ACTIONS(3961), + [anon_sym_DASH] = ACTIONS(3961), + [anon_sym_STAR] = ACTIONS(4039), + [anon_sym_SLASH] = ACTIONS(3961), + [anon_sym_PERCENT] = ACTIONS(3963), + [anon_sym_CARET] = ACTIONS(3963), + [anon_sym_PIPE] = ACTIONS(3961), + [anon_sym_AMP] = ACTIONS(3961), + [anon_sym_LT_LT] = ACTIONS(3963), + [anon_sym_GT_GT] = ACTIONS(3961), + [anon_sym_GT_GT_GT] = ACTIONS(3963), + [anon_sym_EQ_EQ] = ACTIONS(3963), + [anon_sym_BANG_EQ] = ACTIONS(3963), + [anon_sym_GT_EQ] = ACTIONS(3963), + [anon_sym_LT_EQ] = ACTIONS(3963), + [anon_sym_DOT] = ACTIONS(3961), + [anon_sym_EQ_GT] = ACTIONS(3963), + [anon_sym_switch] = ACTIONS(3963), + [anon_sym_DOT_DOT] = ACTIONS(3963), + [anon_sym_and] = ACTIONS(3963), + [anon_sym_or] = ACTIONS(3961), + [anon_sym_AMP_AMP] = ACTIONS(3963), + [anon_sym_PIPE_PIPE] = ACTIONS(3963), + [anon_sym_QMARK_QMARK] = ACTIONS(3963), + [anon_sym_from] = ACTIONS(3963), + [anon_sym_join] = ACTIONS(3963), + [anon_sym_on] = ACTIONS(3963), + [anon_sym_equals] = ACTIONS(3963), + [anon_sym_let] = ACTIONS(3963), + [anon_sym_orderby] = ACTIONS(3963), + [anon_sym_group] = ACTIONS(3963), + [anon_sym_by] = ACTIONS(3963), + [anon_sym_select] = ACTIONS(3963), + [anon_sym_as] = ACTIONS(3963), + [anon_sym_is] = ACTIONS(3963), + [anon_sym_DASH_GT] = ACTIONS(3963), + [anon_sym_with] = ACTIONS(3963), + [aux_sym_preproc_if_token3] = ACTIONS(3963), + [aux_sym_preproc_else_token1] = ACTIONS(3963), + [aux_sym_preproc_elif_token1] = ACTIONS(3963), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_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(2951), + [anon_sym_LBRACK] = ACTIONS(2951), + [anon_sym_COLON] = ACTIONS(2951), + [anon_sym_COMMA] = ACTIONS(2951), + [anon_sym_RBRACK] = ACTIONS(2951), + [anon_sym_LPAREN] = ACTIONS(2951), + [anon_sym_RPAREN] = ACTIONS(2951), + [anon_sym_RBRACE] = ACTIONS(2951), + [anon_sym_LT] = ACTIONS(2949), + [anon_sym_GT] = ACTIONS(2949), + [anon_sym_in] = ACTIONS(2949), + [anon_sym_where] = ACTIONS(2951), + [anon_sym_QMARK] = ACTIONS(2949), + [anon_sym_BANG] = ACTIONS(2949), + [anon_sym_PLUS_PLUS] = ACTIONS(2951), + [anon_sym_DASH_DASH] = ACTIONS(2951), + [anon_sym_PLUS] = ACTIONS(2949), + [anon_sym_DASH] = ACTIONS(2949), + [anon_sym_STAR] = ACTIONS(2951), + [anon_sym_SLASH] = ACTIONS(2949), + [anon_sym_PERCENT] = ACTIONS(2951), + [anon_sym_CARET] = ACTIONS(2951), + [anon_sym_PIPE] = ACTIONS(2949), + [anon_sym_AMP] = ACTIONS(2949), + [anon_sym_LT_LT] = ACTIONS(2951), + [anon_sym_GT_GT] = ACTIONS(2949), + [anon_sym_GT_GT_GT] = ACTIONS(2951), + [anon_sym_EQ_EQ] = ACTIONS(2951), + [anon_sym_BANG_EQ] = ACTIONS(2951), + [anon_sym_GT_EQ] = ACTIONS(2951), + [anon_sym_LT_EQ] = ACTIONS(2951), + [anon_sym_DOT] = ACTIONS(2949), + [anon_sym_EQ_GT] = ACTIONS(2951), + [anon_sym_switch] = ACTIONS(2951), + [anon_sym_DOT_DOT] = ACTIONS(2951), + [anon_sym_and] = ACTIONS(2951), + [anon_sym_or] = ACTIONS(2949), + [anon_sym_AMP_AMP] = ACTIONS(2951), + [anon_sym_PIPE_PIPE] = ACTIONS(2951), + [anon_sym_QMARK_QMARK] = ACTIONS(2951), + [anon_sym_from] = ACTIONS(2951), + [anon_sym_into] = ACTIONS(2951), + [anon_sym_join] = ACTIONS(2951), + [anon_sym_on] = ACTIONS(2951), + [anon_sym_equals] = ACTIONS(2951), + [anon_sym_let] = ACTIONS(2951), + [anon_sym_orderby] = ACTIONS(2951), + [anon_sym_group] = ACTIONS(2951), + [anon_sym_by] = ACTIONS(2951), + [anon_sym_select] = ACTIONS(2951), + [anon_sym_as] = ACTIONS(2951), + [anon_sym_is] = ACTIONS(2951), + [anon_sym_DASH_GT] = ACTIONS(2951), + [anon_sym_with] = ACTIONS(2951), + [aux_sym_preproc_if_token3] = ACTIONS(2951), + [aux_sym_preproc_else_token1] = ACTIONS(2951), + [aux_sym_preproc_elif_token1] = ACTIONS(2951), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_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), @@ -468812,63 +468360,63 @@ 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(4985), - [anon_sym_LBRACK] = ACTIONS(4985), - [anon_sym_COLON] = ACTIONS(4985), - [anon_sym_COMMA] = ACTIONS(4985), - [anon_sym_RBRACK] = ACTIONS(4985), - [anon_sym_LPAREN] = ACTIONS(4985), - [anon_sym_RPAREN] = ACTIONS(4985), - [anon_sym_RBRACE] = ACTIONS(4985), - [anon_sym_LT] = ACTIONS(4987), - [anon_sym_GT] = ACTIONS(4987), - [anon_sym_in] = ACTIONS(4987), - [anon_sym_where] = ACTIONS(4985), - [anon_sym_QMARK] = ACTIONS(4987), - [anon_sym_BANG] = ACTIONS(4987), - [anon_sym_PLUS_PLUS] = ACTIONS(4985), - [anon_sym_DASH_DASH] = ACTIONS(4985), - [anon_sym_PLUS] = ACTIONS(4987), - [anon_sym_DASH] = ACTIONS(4987), - [anon_sym_STAR] = ACTIONS(4985), - [anon_sym_SLASH] = ACTIONS(4987), - [anon_sym_PERCENT] = ACTIONS(4985), - [anon_sym_CARET] = ACTIONS(4985), - [anon_sym_PIPE] = ACTIONS(4987), - [anon_sym_AMP] = ACTIONS(4987), - [anon_sym_LT_LT] = ACTIONS(4985), - [anon_sym_GT_GT] = ACTIONS(4987), - [anon_sym_GT_GT_GT] = ACTIONS(4985), - [anon_sym_EQ_EQ] = ACTIONS(4985), - [anon_sym_BANG_EQ] = ACTIONS(4985), - [anon_sym_GT_EQ] = ACTIONS(4985), - [anon_sym_LT_EQ] = ACTIONS(4985), - [anon_sym_DOT] = ACTIONS(4987), - [anon_sym_EQ_GT] = ACTIONS(4985), - [anon_sym_switch] = ACTIONS(4985), - [anon_sym_DOT_DOT] = ACTIONS(4985), - [anon_sym_and] = ACTIONS(4985), - [anon_sym_or] = ACTIONS(4987), - [anon_sym_AMP_AMP] = ACTIONS(4985), - [anon_sym_PIPE_PIPE] = ACTIONS(4985), - [anon_sym_QMARK_QMARK] = ACTIONS(4985), - [anon_sym_from] = ACTIONS(4985), - [anon_sym_into] = ACTIONS(4985), - [anon_sym_join] = ACTIONS(4985), - [anon_sym_on] = ACTIONS(4985), - [anon_sym_equals] = ACTIONS(4985), - [anon_sym_let] = ACTIONS(4985), - [anon_sym_orderby] = ACTIONS(4985), - [anon_sym_group] = ACTIONS(4985), - [anon_sym_by] = ACTIONS(4985), - [anon_sym_select] = ACTIONS(4985), - [anon_sym_as] = ACTIONS(4985), - [anon_sym_is] = ACTIONS(4985), - [anon_sym_DASH_GT] = ACTIONS(4985), - [anon_sym_with] = ACTIONS(4985), - [aux_sym_preproc_if_token3] = ACTIONS(4985), - [aux_sym_preproc_else_token1] = ACTIONS(4985), - [aux_sym_preproc_elif_token1] = ACTIONS(4985), + [sym__identifier_token] = ACTIONS(4988), + [anon_sym_extern] = ACTIONS(4988), + [anon_sym_alias] = ACTIONS(4988), + [anon_sym_global] = ACTIONS(4988), + [anon_sym_unsafe] = ACTIONS(4988), + [anon_sym_static] = ACTIONS(4988), + [anon_sym_LBRACK] = ACTIONS(4990), + [anon_sym_LPAREN] = ACTIONS(4990), + [anon_sym_event] = ACTIONS(4988), + [anon_sym_class] = ACTIONS(4988), + [anon_sym_ref] = ACTIONS(4988), + [anon_sym_struct] = ACTIONS(4988), + [anon_sym_enum] = ACTIONS(4988), + [anon_sym_interface] = ACTIONS(4988), + [anon_sym_delegate] = ACTIONS(4988), + [anon_sym_record] = ACTIONS(4988), + [anon_sym_abstract] = ACTIONS(4988), + [anon_sym_async] = ACTIONS(4988), + [anon_sym_const] = ACTIONS(4988), + [anon_sym_file] = ACTIONS(4988), + [anon_sym_fixed] = ACTIONS(4988), + [anon_sym_internal] = ACTIONS(4988), + [anon_sym_new] = ACTIONS(4988), + [anon_sym_override] = ACTIONS(4988), + [anon_sym_partial] = ACTIONS(4988), + [anon_sym_private] = ACTIONS(4988), + [anon_sym_protected] = ACTIONS(4988), + [anon_sym_public] = ACTIONS(4988), + [anon_sym_readonly] = ACTIONS(4988), + [anon_sym_required] = ACTIONS(4988), + [anon_sym_sealed] = ACTIONS(4988), + [anon_sym_virtual] = ACTIONS(4988), + [anon_sym_volatile] = ACTIONS(4988), + [anon_sym_where] = ACTIONS(4988), + [anon_sym_notnull] = ACTIONS(4988), + [anon_sym_unmanaged] = ACTIONS(4988), + [anon_sym_TILDE] = ACTIONS(4990), + [anon_sym_implicit] = ACTIONS(4988), + [anon_sym_explicit] = ACTIONS(4988), + [anon_sym_scoped] = ACTIONS(4988), + [anon_sym_var] = ACTIONS(4988), + [sym_predefined_type] = ACTIONS(4988), + [anon_sym_yield] = ACTIONS(4988), + [anon_sym_when] = ACTIONS(4988), + [anon_sym_from] = ACTIONS(4988), + [anon_sym_into] = ACTIONS(4988), + [anon_sym_join] = ACTIONS(4988), + [anon_sym_on] = ACTIONS(4988), + [anon_sym_equals] = ACTIONS(4988), + [anon_sym_let] = ACTIONS(4988), + [anon_sym_orderby] = ACTIONS(4988), + [anon_sym_ascending] = ACTIONS(4988), + [anon_sym_descending] = ACTIONS(4988), + [anon_sym_group] = ACTIONS(4988), + [anon_sym_by] = ACTIONS(4988), + [anon_sym_select] = ACTIONS(4988), + [aux_sym_preproc_if_token1] = ACTIONS(4990), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -468890,63 +468438,63 @@ 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(4989), - [anon_sym_LBRACK] = ACTIONS(4989), - [anon_sym_COLON] = ACTIONS(4989), - [anon_sym_COMMA] = ACTIONS(4989), - [anon_sym_RBRACK] = ACTIONS(4989), - [anon_sym_LPAREN] = ACTIONS(4989), - [anon_sym_RPAREN] = ACTIONS(4989), - [anon_sym_RBRACE] = ACTIONS(4989), - [anon_sym_LT] = ACTIONS(4991), - [anon_sym_GT] = ACTIONS(4991), - [anon_sym_in] = ACTIONS(4991), - [anon_sym_where] = ACTIONS(4989), - [anon_sym_QMARK] = ACTIONS(4991), - [anon_sym_BANG] = ACTIONS(4991), - [anon_sym_PLUS_PLUS] = ACTIONS(4989), - [anon_sym_DASH_DASH] = ACTIONS(4989), - [anon_sym_PLUS] = ACTIONS(4991), - [anon_sym_DASH] = ACTIONS(4991), - [anon_sym_STAR] = ACTIONS(4989), - [anon_sym_SLASH] = ACTIONS(4991), - [anon_sym_PERCENT] = ACTIONS(4989), - [anon_sym_CARET] = ACTIONS(4989), - [anon_sym_PIPE] = ACTIONS(4991), - [anon_sym_AMP] = ACTIONS(4991), - [anon_sym_LT_LT] = ACTIONS(4989), - [anon_sym_GT_GT] = ACTIONS(4991), - [anon_sym_GT_GT_GT] = ACTIONS(4989), - [anon_sym_EQ_EQ] = ACTIONS(4989), - [anon_sym_BANG_EQ] = ACTIONS(4989), - [anon_sym_GT_EQ] = ACTIONS(4989), - [anon_sym_LT_EQ] = ACTIONS(4989), - [anon_sym_DOT] = ACTIONS(4991), - [anon_sym_EQ_GT] = ACTIONS(4989), - [anon_sym_switch] = ACTIONS(4989), - [anon_sym_DOT_DOT] = ACTIONS(4989), - [anon_sym_and] = ACTIONS(4989), - [anon_sym_or] = ACTIONS(4991), - [anon_sym_AMP_AMP] = ACTIONS(4989), - [anon_sym_PIPE_PIPE] = ACTIONS(4989), - [anon_sym_QMARK_QMARK] = ACTIONS(4989), - [anon_sym_from] = ACTIONS(4989), - [anon_sym_into] = ACTIONS(4989), - [anon_sym_join] = ACTIONS(4989), - [anon_sym_on] = ACTIONS(4989), - [anon_sym_equals] = ACTIONS(4989), - [anon_sym_let] = ACTIONS(4989), - [anon_sym_orderby] = ACTIONS(4989), - [anon_sym_group] = ACTIONS(4989), - [anon_sym_by] = ACTIONS(4989), - [anon_sym_select] = ACTIONS(4989), - [anon_sym_as] = ACTIONS(4989), - [anon_sym_is] = ACTIONS(4989), - [anon_sym_DASH_GT] = ACTIONS(4989), - [anon_sym_with] = ACTIONS(4989), - [aux_sym_preproc_if_token3] = ACTIONS(4989), - [aux_sym_preproc_else_token1] = ACTIONS(4989), - [aux_sym_preproc_elif_token1] = ACTIONS(4989), + [anon_sym_SEMI] = ACTIONS(4992), + [anon_sym_LBRACK] = ACTIONS(4992), + [anon_sym_COLON] = ACTIONS(4992), + [anon_sym_COMMA] = ACTIONS(4992), + [anon_sym_RBRACK] = ACTIONS(4992), + [anon_sym_LPAREN] = ACTIONS(4992), + [anon_sym_RPAREN] = ACTIONS(4992), + [anon_sym_RBRACE] = ACTIONS(4992), + [anon_sym_LT] = ACTIONS(4994), + [anon_sym_GT] = ACTIONS(4994), + [anon_sym_in] = ACTIONS(4994), + [anon_sym_where] = ACTIONS(4992), + [anon_sym_QMARK] = ACTIONS(4994), + [anon_sym_BANG] = ACTIONS(4994), + [anon_sym_PLUS_PLUS] = ACTIONS(4992), + [anon_sym_DASH_DASH] = ACTIONS(4992), + [anon_sym_PLUS] = ACTIONS(4994), + [anon_sym_DASH] = ACTIONS(4994), + [anon_sym_STAR] = ACTIONS(4992), + [anon_sym_SLASH] = ACTIONS(4994), + [anon_sym_PERCENT] = ACTIONS(4992), + [anon_sym_CARET] = ACTIONS(4992), + [anon_sym_PIPE] = ACTIONS(4994), + [anon_sym_AMP] = ACTIONS(4994), + [anon_sym_LT_LT] = ACTIONS(4992), + [anon_sym_GT_GT] = ACTIONS(4994), + [anon_sym_GT_GT_GT] = ACTIONS(4992), + [anon_sym_EQ_EQ] = ACTIONS(4992), + [anon_sym_BANG_EQ] = ACTIONS(4992), + [anon_sym_GT_EQ] = ACTIONS(4992), + [anon_sym_LT_EQ] = ACTIONS(4992), + [anon_sym_DOT] = ACTIONS(4994), + [anon_sym_EQ_GT] = ACTIONS(4992), + [anon_sym_switch] = ACTIONS(4992), + [anon_sym_DOT_DOT] = ACTIONS(4992), + [anon_sym_and] = ACTIONS(4992), + [anon_sym_or] = ACTIONS(4994), + [anon_sym_AMP_AMP] = ACTIONS(4992), + [anon_sym_PIPE_PIPE] = ACTIONS(4992), + [anon_sym_QMARK_QMARK] = ACTIONS(4992), + [anon_sym_from] = ACTIONS(4992), + [anon_sym_into] = ACTIONS(4992), + [anon_sym_join] = ACTIONS(4992), + [anon_sym_on] = ACTIONS(4992), + [anon_sym_equals] = ACTIONS(4992), + [anon_sym_let] = ACTIONS(4992), + [anon_sym_orderby] = ACTIONS(4992), + [anon_sym_group] = ACTIONS(4992), + [anon_sym_by] = ACTIONS(4992), + [anon_sym_select] = ACTIONS(4992), + [anon_sym_as] = ACTIONS(4992), + [anon_sym_is] = ACTIONS(4992), + [anon_sym_DASH_GT] = ACTIONS(4992), + [anon_sym_with] = ACTIONS(4992), + [aux_sym_preproc_if_token3] = ACTIONS(4992), + [aux_sym_preproc_else_token1] = ACTIONS(4992), + [aux_sym_preproc_elif_token1] = ACTIONS(4992), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -468968,63 +468516,63 @@ 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(3677), - [anon_sym_LBRACK] = ACTIONS(3677), - [anon_sym_COLON] = ACTIONS(3677), - [anon_sym_COMMA] = ACTIONS(3677), - [anon_sym_RBRACK] = ACTIONS(3677), - [anon_sym_LPAREN] = ACTIONS(3677), - [anon_sym_RPAREN] = ACTIONS(3677), - [anon_sym_LBRACE] = ACTIONS(3677), - [anon_sym_RBRACE] = ACTIONS(3677), - [anon_sym_LT] = ACTIONS(3675), - [anon_sym_GT] = ACTIONS(3675), - [anon_sym_in] = ACTIONS(3677), - [anon_sym_where] = ACTIONS(3677), - [anon_sym_QMARK] = ACTIONS(3675), - [anon_sym_BANG] = ACTIONS(3675), - [anon_sym_PLUS_PLUS] = ACTIONS(3677), - [anon_sym_DASH_DASH] = ACTIONS(3677), - [anon_sym_PLUS] = ACTIONS(3675), - [anon_sym_DASH] = ACTIONS(3675), - [anon_sym_STAR] = ACTIONS(3677), - [anon_sym_SLASH] = ACTIONS(3675), - [anon_sym_PERCENT] = ACTIONS(3677), - [anon_sym_CARET] = ACTIONS(3677), - [anon_sym_PIPE] = ACTIONS(3675), - [anon_sym_AMP] = ACTIONS(3675), - [anon_sym_LT_LT] = ACTIONS(3677), - [anon_sym_GT_GT] = ACTIONS(3675), - [anon_sym_GT_GT_GT] = ACTIONS(3677), - [anon_sym_EQ_EQ] = ACTIONS(3677), - [anon_sym_BANG_EQ] = ACTIONS(3677), - [anon_sym_GT_EQ] = ACTIONS(3677), - [anon_sym_LT_EQ] = ACTIONS(3677), - [anon_sym_DOT] = ACTIONS(3675), - [anon_sym_EQ_GT] = ACTIONS(3677), - [anon_sym_switch] = ACTIONS(3677), - [anon_sym_DOT_DOT] = ACTIONS(3677), - [anon_sym_and] = ACTIONS(3677), - [anon_sym_or] = ACTIONS(3675), - [anon_sym_AMP_AMP] = ACTIONS(3677), - [anon_sym_PIPE_PIPE] = ACTIONS(3677), - [anon_sym_QMARK_QMARK] = ACTIONS(3677), - [anon_sym_from] = ACTIONS(3677), - [anon_sym_join] = ACTIONS(3677), - [anon_sym_on] = ACTIONS(3677), - [anon_sym_equals] = ACTIONS(3677), - [anon_sym_let] = ACTIONS(3677), - [anon_sym_orderby] = ACTIONS(3677), - [anon_sym_group] = ACTIONS(3677), - [anon_sym_by] = ACTIONS(3677), - [anon_sym_select] = ACTIONS(3677), - [anon_sym_as] = ACTIONS(3677), - [anon_sym_is] = ACTIONS(3677), - [anon_sym_DASH_GT] = ACTIONS(3677), - [anon_sym_with] = ACTIONS(3677), - [aux_sym_preproc_if_token3] = ACTIONS(3677), - [aux_sym_preproc_else_token1] = ACTIONS(3677), - [aux_sym_preproc_elif_token1] = ACTIONS(3677), + [anon_sym_SEMI] = ACTIONS(4996), + [anon_sym_LBRACK] = ACTIONS(4996), + [anon_sym_COLON] = ACTIONS(4996), + [anon_sym_COMMA] = ACTIONS(4996), + [anon_sym_RBRACK] = ACTIONS(4996), + [anon_sym_LPAREN] = ACTIONS(4996), + [anon_sym_RPAREN] = ACTIONS(4996), + [anon_sym_RBRACE] = ACTIONS(4996), + [anon_sym_LT] = ACTIONS(4998), + [anon_sym_GT] = ACTIONS(4998), + [anon_sym_in] = ACTIONS(4998), + [anon_sym_where] = ACTIONS(4996), + [anon_sym_QMARK] = ACTIONS(4998), + [anon_sym_BANG] = ACTIONS(4998), + [anon_sym_PLUS_PLUS] = ACTIONS(4996), + [anon_sym_DASH_DASH] = ACTIONS(4996), + [anon_sym_PLUS] = ACTIONS(4998), + [anon_sym_DASH] = ACTIONS(4998), + [anon_sym_STAR] = ACTIONS(4996), + [anon_sym_SLASH] = ACTIONS(4998), + [anon_sym_PERCENT] = ACTIONS(4996), + [anon_sym_CARET] = ACTIONS(4996), + [anon_sym_PIPE] = ACTIONS(4998), + [anon_sym_AMP] = ACTIONS(4998), + [anon_sym_LT_LT] = ACTIONS(4996), + [anon_sym_GT_GT] = ACTIONS(4998), + [anon_sym_GT_GT_GT] = ACTIONS(4996), + [anon_sym_EQ_EQ] = ACTIONS(4996), + [anon_sym_BANG_EQ] = ACTIONS(4996), + [anon_sym_GT_EQ] = ACTIONS(4996), + [anon_sym_LT_EQ] = ACTIONS(4996), + [anon_sym_DOT] = ACTIONS(4998), + [anon_sym_EQ_GT] = ACTIONS(4996), + [anon_sym_switch] = ACTIONS(4996), + [anon_sym_DOT_DOT] = ACTIONS(4996), + [anon_sym_and] = ACTIONS(4996), + [anon_sym_or] = ACTIONS(4998), + [anon_sym_AMP_AMP] = ACTIONS(4996), + [anon_sym_PIPE_PIPE] = ACTIONS(4996), + [anon_sym_QMARK_QMARK] = ACTIONS(4996), + [anon_sym_from] = ACTIONS(4996), + [anon_sym_into] = ACTIONS(4996), + [anon_sym_join] = ACTIONS(4996), + [anon_sym_on] = ACTIONS(4996), + [anon_sym_equals] = ACTIONS(4996), + [anon_sym_let] = ACTIONS(4996), + [anon_sym_orderby] = ACTIONS(4996), + [anon_sym_group] = ACTIONS(4996), + [anon_sym_by] = ACTIONS(4996), + [anon_sym_select] = ACTIONS(4996), + [anon_sym_as] = ACTIONS(4996), + [anon_sym_is] = ACTIONS(4996), + [anon_sym_DASH_GT] = ACTIONS(4996), + [anon_sym_with] = ACTIONS(4996), + [aux_sym_preproc_if_token3] = ACTIONS(4996), + [aux_sym_preproc_else_token1] = ACTIONS(4996), + [aux_sym_preproc_elif_token1] = ACTIONS(4996), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -469046,63 +468594,63 @@ 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(3662), - [anon_sym_LBRACK] = ACTIONS(3662), - [anon_sym_COLON] = ACTIONS(3662), - [anon_sym_COMMA] = ACTIONS(3662), - [anon_sym_RBRACK] = ACTIONS(3662), - [anon_sym_LPAREN] = ACTIONS(3662), - [anon_sym_RPAREN] = ACTIONS(3662), - [anon_sym_LBRACE] = ACTIONS(3662), - [anon_sym_RBRACE] = ACTIONS(3662), - [anon_sym_LT] = ACTIONS(3660), - [anon_sym_GT] = ACTIONS(3660), - [anon_sym_in] = ACTIONS(3662), - [anon_sym_where] = ACTIONS(3662), - [anon_sym_QMARK] = ACTIONS(3660), - [anon_sym_BANG] = ACTIONS(3660), - [anon_sym_PLUS_PLUS] = ACTIONS(3662), - [anon_sym_DASH_DASH] = ACTIONS(3662), - [anon_sym_PLUS] = ACTIONS(3660), - [anon_sym_DASH] = ACTIONS(3660), - [anon_sym_STAR] = ACTIONS(3662), - [anon_sym_SLASH] = ACTIONS(3660), - [anon_sym_PERCENT] = ACTIONS(3662), - [anon_sym_CARET] = ACTIONS(3662), - [anon_sym_PIPE] = ACTIONS(3660), - [anon_sym_AMP] = ACTIONS(3660), - [anon_sym_LT_LT] = ACTIONS(3662), - [anon_sym_GT_GT] = ACTIONS(3660), - [anon_sym_GT_GT_GT] = ACTIONS(3662), - [anon_sym_EQ_EQ] = ACTIONS(3662), - [anon_sym_BANG_EQ] = ACTIONS(3662), - [anon_sym_GT_EQ] = ACTIONS(3662), - [anon_sym_LT_EQ] = ACTIONS(3662), - [anon_sym_DOT] = ACTIONS(3660), - [anon_sym_EQ_GT] = ACTIONS(3662), - [anon_sym_switch] = ACTIONS(3662), - [anon_sym_DOT_DOT] = ACTIONS(3662), - [anon_sym_and] = ACTIONS(3662), - [anon_sym_or] = ACTIONS(3660), - [anon_sym_AMP_AMP] = ACTIONS(3662), - [anon_sym_PIPE_PIPE] = ACTIONS(3662), - [anon_sym_QMARK_QMARK] = ACTIONS(3662), - [anon_sym_from] = 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_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(3662), - [anon_sym_with] = ACTIONS(3662), - [aux_sym_preproc_if_token3] = ACTIONS(3662), - [aux_sym_preproc_else_token1] = ACTIONS(3662), - [aux_sym_preproc_elif_token1] = ACTIONS(3662), + [anon_sym_EQ] = ACTIONS(5000), + [anon_sym_LBRACK] = ACTIONS(4811), + [anon_sym_COMMA] = ACTIONS(4811), + [anon_sym_LPAREN] = ACTIONS(4811), + [anon_sym_LT] = ACTIONS(4813), + [anon_sym_GT] = ACTIONS(4813), + [anon_sym_where] = ACTIONS(4811), + [anon_sym_QMARK] = ACTIONS(4813), + [anon_sym_BANG] = ACTIONS(4813), + [anon_sym_PLUS_PLUS] = ACTIONS(4811), + [anon_sym_DASH_DASH] = ACTIONS(4811), + [anon_sym_PLUS] = ACTIONS(4813), + [anon_sym_DASH] = ACTIONS(4813), + [anon_sym_STAR] = ACTIONS(4813), + [anon_sym_SLASH] = ACTIONS(4813), + [anon_sym_PERCENT] = ACTIONS(4813), + [anon_sym_CARET] = ACTIONS(4813), + [anon_sym_PIPE] = ACTIONS(4813), + [anon_sym_AMP] = ACTIONS(4813), + [anon_sym_LT_LT] = ACTIONS(4813), + [anon_sym_GT_GT] = ACTIONS(4813), + [anon_sym_GT_GT_GT] = ACTIONS(4813), + [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(4813), + [anon_sym_switch] = ACTIONS(4811), + [anon_sym_DOT_DOT] = ACTIONS(4811), + [anon_sym_PLUS_EQ] = ACTIONS(5002), + [anon_sym_DASH_EQ] = ACTIONS(5002), + [anon_sym_STAR_EQ] = ACTIONS(5002), + [anon_sym_SLASH_EQ] = ACTIONS(5002), + [anon_sym_PERCENT_EQ] = ACTIONS(5002), + [anon_sym_AMP_EQ] = ACTIONS(5002), + [anon_sym_CARET_EQ] = ACTIONS(5002), + [anon_sym_PIPE_EQ] = ACTIONS(5002), + [anon_sym_LT_LT_EQ] = ACTIONS(5002), + [anon_sym_GT_GT_EQ] = ACTIONS(5002), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(5002), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(5002), + [anon_sym_AMP_AMP] = ACTIONS(4811), + [anon_sym_PIPE_PIPE] = ACTIONS(4811), + [anon_sym_QMARK_QMARK] = ACTIONS(4813), + [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(4813), + [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), @@ -469124,63 +468672,63 @@ 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_EQ] = ACTIONS(4993), - [anon_sym_LBRACK] = ACTIONS(4860), - [anon_sym_COMMA] = ACTIONS(4860), - [anon_sym_LPAREN] = ACTIONS(4860), - [anon_sym_LT] = ACTIONS(4862), - [anon_sym_GT] = ACTIONS(4862), - [anon_sym_where] = ACTIONS(4860), - [anon_sym_QMARK] = ACTIONS(4862), - [anon_sym_BANG] = ACTIONS(4862), - [anon_sym_PLUS_PLUS] = ACTIONS(4860), - [anon_sym_DASH_DASH] = ACTIONS(4860), - [anon_sym_PLUS] = ACTIONS(4862), - [anon_sym_DASH] = ACTIONS(4862), - [anon_sym_STAR] = ACTIONS(4862), - [anon_sym_SLASH] = ACTIONS(4862), - [anon_sym_PERCENT] = ACTIONS(4862), - [anon_sym_CARET] = ACTIONS(4862), - [anon_sym_PIPE] = ACTIONS(4862), - [anon_sym_AMP] = ACTIONS(4862), - [anon_sym_LT_LT] = ACTIONS(4862), - [anon_sym_GT_GT] = ACTIONS(4862), - [anon_sym_GT_GT_GT] = ACTIONS(4862), - [anon_sym_EQ_EQ] = ACTIONS(4860), - [anon_sym_BANG_EQ] = ACTIONS(4860), - [anon_sym_GT_EQ] = ACTIONS(4860), - [anon_sym_LT_EQ] = ACTIONS(4860), - [anon_sym_DOT] = ACTIONS(4862), - [anon_sym_switch] = ACTIONS(4860), - [anon_sym_DOT_DOT] = ACTIONS(4860), - [anon_sym_PLUS_EQ] = ACTIONS(4995), - [anon_sym_DASH_EQ] = ACTIONS(4995), - [anon_sym_STAR_EQ] = ACTIONS(4995), - [anon_sym_SLASH_EQ] = ACTIONS(4995), - [anon_sym_PERCENT_EQ] = ACTIONS(4995), - [anon_sym_AMP_EQ] = ACTIONS(4995), - [anon_sym_CARET_EQ] = ACTIONS(4995), - [anon_sym_PIPE_EQ] = ACTIONS(4995), - [anon_sym_LT_LT_EQ] = ACTIONS(4995), - [anon_sym_GT_GT_EQ] = ACTIONS(4995), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(4995), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(4995), - [anon_sym_AMP_AMP] = ACTIONS(4860), - [anon_sym_PIPE_PIPE] = ACTIONS(4860), - [anon_sym_QMARK_QMARK] = ACTIONS(4862), - [anon_sym_from] = ACTIONS(4860), - [anon_sym_into] = ACTIONS(4860), - [anon_sym_join] = ACTIONS(4860), - [anon_sym_let] = ACTIONS(4860), - [anon_sym_orderby] = ACTIONS(4860), - [anon_sym_ascending] = ACTIONS(4860), - [anon_sym_descending] = ACTIONS(4860), - [anon_sym_group] = ACTIONS(4860), - [anon_sym_select] = ACTIONS(4860), - [anon_sym_as] = ACTIONS(4862), - [anon_sym_is] = ACTIONS(4860), - [anon_sym_DASH_GT] = ACTIONS(4860), - [anon_sym_with] = ACTIONS(4860), + [anon_sym_SEMI] = ACTIONS(5004), + [anon_sym_LBRACK] = ACTIONS(5004), + [anon_sym_COLON] = ACTIONS(5004), + [anon_sym_COMMA] = ACTIONS(5004), + [anon_sym_RBRACK] = ACTIONS(5004), + [anon_sym_LPAREN] = ACTIONS(5004), + [anon_sym_RPAREN] = ACTIONS(5004), + [anon_sym_RBRACE] = ACTIONS(5004), + [anon_sym_LT] = ACTIONS(5006), + [anon_sym_GT] = ACTIONS(5006), + [anon_sym_in] = ACTIONS(5006), + [anon_sym_where] = ACTIONS(5004), + [anon_sym_QMARK] = ACTIONS(5006), + [anon_sym_BANG] = ACTIONS(5006), + [anon_sym_PLUS_PLUS] = ACTIONS(5004), + [anon_sym_DASH_DASH] = ACTIONS(5004), + [anon_sym_PLUS] = ACTIONS(5006), + [anon_sym_DASH] = ACTIONS(5006), + [anon_sym_STAR] = ACTIONS(5004), + [anon_sym_SLASH] = ACTIONS(5006), + [anon_sym_PERCENT] = ACTIONS(5004), + [anon_sym_CARET] = ACTIONS(5004), + [anon_sym_PIPE] = ACTIONS(5006), + [anon_sym_AMP] = ACTIONS(5006), + [anon_sym_LT_LT] = ACTIONS(5004), + [anon_sym_GT_GT] = ACTIONS(5006), + [anon_sym_GT_GT_GT] = ACTIONS(5004), + [anon_sym_EQ_EQ] = ACTIONS(5004), + [anon_sym_BANG_EQ] = ACTIONS(5004), + [anon_sym_GT_EQ] = ACTIONS(5004), + [anon_sym_LT_EQ] = ACTIONS(5004), + [anon_sym_DOT] = ACTIONS(5006), + [anon_sym_EQ_GT] = ACTIONS(5004), + [anon_sym_switch] = ACTIONS(5004), + [anon_sym_DOT_DOT] = ACTIONS(5004), + [anon_sym_and] = ACTIONS(5004), + [anon_sym_or] = ACTIONS(5006), + [anon_sym_AMP_AMP] = ACTIONS(5004), + [anon_sym_PIPE_PIPE] = ACTIONS(5004), + [anon_sym_QMARK_QMARK] = ACTIONS(5004), + [anon_sym_from] = ACTIONS(5004), + [anon_sym_into] = ACTIONS(5004), + [anon_sym_join] = ACTIONS(5004), + [anon_sym_on] = ACTIONS(5004), + [anon_sym_equals] = ACTIONS(5004), + [anon_sym_let] = ACTIONS(5004), + [anon_sym_orderby] = ACTIONS(5004), + [anon_sym_group] = ACTIONS(5004), + [anon_sym_by] = ACTIONS(5004), + [anon_sym_select] = ACTIONS(5004), + [anon_sym_as] = ACTIONS(5004), + [anon_sym_is] = ACTIONS(5004), + [anon_sym_DASH_GT] = ACTIONS(5004), + [anon_sym_with] = ACTIONS(5004), + [aux_sym_preproc_if_token3] = ACTIONS(5004), + [aux_sym_preproc_else_token1] = ACTIONS(5004), + [aux_sym_preproc_elif_token1] = ACTIONS(5004), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -469202,63 +468750,63 @@ 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(4997), - [anon_sym_LBRACK] = ACTIONS(4997), - [anon_sym_COLON] = ACTIONS(4997), - [anon_sym_COMMA] = ACTIONS(4997), - [anon_sym_RBRACK] = ACTIONS(4997), - [anon_sym_LPAREN] = ACTIONS(4997), - [anon_sym_RPAREN] = ACTIONS(4997), - [anon_sym_RBRACE] = ACTIONS(4997), - [anon_sym_LT] = ACTIONS(4999), - [anon_sym_GT] = ACTIONS(4999), - [anon_sym_in] = ACTIONS(4999), - [anon_sym_where] = ACTIONS(4997), - [anon_sym_QMARK] = ACTIONS(4999), - [anon_sym_BANG] = ACTIONS(4999), - [anon_sym_PLUS_PLUS] = ACTIONS(4997), - [anon_sym_DASH_DASH] = ACTIONS(4997), - [anon_sym_PLUS] = ACTIONS(4999), - [anon_sym_DASH] = ACTIONS(4999), - [anon_sym_STAR] = ACTIONS(4997), - [anon_sym_SLASH] = ACTIONS(4999), - [anon_sym_PERCENT] = ACTIONS(4997), - [anon_sym_CARET] = ACTIONS(4997), - [anon_sym_PIPE] = ACTIONS(4999), - [anon_sym_AMP] = ACTIONS(4999), - [anon_sym_LT_LT] = ACTIONS(4997), - [anon_sym_GT_GT] = ACTIONS(4999), - [anon_sym_GT_GT_GT] = ACTIONS(4997), - [anon_sym_EQ_EQ] = ACTIONS(4997), - [anon_sym_BANG_EQ] = ACTIONS(4997), - [anon_sym_GT_EQ] = ACTIONS(4997), - [anon_sym_LT_EQ] = ACTIONS(4997), - [anon_sym_DOT] = ACTIONS(4999), - [anon_sym_EQ_GT] = ACTIONS(4997), - [anon_sym_switch] = ACTIONS(4997), - [anon_sym_DOT_DOT] = ACTIONS(4997), - [anon_sym_and] = ACTIONS(4997), - [anon_sym_or] = ACTIONS(4999), - [anon_sym_AMP_AMP] = ACTIONS(4997), - [anon_sym_PIPE_PIPE] = ACTIONS(4997), - [anon_sym_QMARK_QMARK] = ACTIONS(4997), - [anon_sym_from] = ACTIONS(4997), - [anon_sym_into] = ACTIONS(4997), - [anon_sym_join] = ACTIONS(4997), - [anon_sym_on] = ACTIONS(4997), - [anon_sym_equals] = ACTIONS(4997), - [anon_sym_let] = ACTIONS(4997), - [anon_sym_orderby] = ACTIONS(4997), - [anon_sym_group] = ACTIONS(4997), - [anon_sym_by] = ACTIONS(4997), - [anon_sym_select] = ACTIONS(4997), - [anon_sym_as] = ACTIONS(4997), - [anon_sym_is] = ACTIONS(4997), - [anon_sym_DASH_GT] = ACTIONS(4997), - [anon_sym_with] = ACTIONS(4997), - [aux_sym_preproc_if_token3] = ACTIONS(4997), - [aux_sym_preproc_else_token1] = ACTIONS(4997), - [aux_sym_preproc_elif_token1] = ACTIONS(4997), + [anon_sym_SEMI] = ACTIONS(5008), + [anon_sym_LBRACK] = ACTIONS(5008), + [anon_sym_COLON] = ACTIONS(5008), + [anon_sym_COMMA] = ACTIONS(5008), + [anon_sym_RBRACK] = ACTIONS(5008), + [anon_sym_LPAREN] = ACTIONS(5008), + [anon_sym_RPAREN] = ACTIONS(5008), + [anon_sym_RBRACE] = ACTIONS(5008), + [anon_sym_LT] = ACTIONS(5010), + [anon_sym_GT] = ACTIONS(5010), + [anon_sym_in] = ACTIONS(5010), + [anon_sym_where] = ACTIONS(5008), + [anon_sym_QMARK] = ACTIONS(5010), + [anon_sym_BANG] = ACTIONS(5010), + [anon_sym_PLUS_PLUS] = ACTIONS(5008), + [anon_sym_DASH_DASH] = ACTIONS(5008), + [anon_sym_PLUS] = ACTIONS(5010), + [anon_sym_DASH] = ACTIONS(5010), + [anon_sym_STAR] = ACTIONS(5008), + [anon_sym_SLASH] = ACTIONS(5010), + [anon_sym_PERCENT] = ACTIONS(5008), + [anon_sym_CARET] = ACTIONS(5008), + [anon_sym_PIPE] = ACTIONS(5010), + [anon_sym_AMP] = ACTIONS(5010), + [anon_sym_LT_LT] = ACTIONS(5008), + [anon_sym_GT_GT] = ACTIONS(5010), + [anon_sym_GT_GT_GT] = ACTIONS(5008), + [anon_sym_EQ_EQ] = ACTIONS(5008), + [anon_sym_BANG_EQ] = ACTIONS(5008), + [anon_sym_GT_EQ] = ACTIONS(5008), + [anon_sym_LT_EQ] = ACTIONS(5008), + [anon_sym_DOT] = ACTIONS(5010), + [anon_sym_EQ_GT] = ACTIONS(5008), + [anon_sym_switch] = ACTIONS(5008), + [anon_sym_DOT_DOT] = ACTIONS(5008), + [anon_sym_and] = ACTIONS(5008), + [anon_sym_or] = ACTIONS(5010), + [anon_sym_AMP_AMP] = ACTIONS(5008), + [anon_sym_PIPE_PIPE] = ACTIONS(5008), + [anon_sym_QMARK_QMARK] = ACTIONS(5008), + [anon_sym_from] = ACTIONS(5008), + [anon_sym_into] = ACTIONS(5008), + [anon_sym_join] = ACTIONS(5008), + [anon_sym_on] = ACTIONS(5008), + [anon_sym_equals] = ACTIONS(5008), + [anon_sym_let] = ACTIONS(5008), + [anon_sym_orderby] = ACTIONS(5008), + [anon_sym_group] = ACTIONS(5008), + [anon_sym_by] = ACTIONS(5008), + [anon_sym_select] = ACTIONS(5008), + [anon_sym_as] = ACTIONS(5008), + [anon_sym_is] = ACTIONS(5008), + [anon_sym_DASH_GT] = ACTIONS(5008), + [anon_sym_with] = ACTIONS(5008), + [aux_sym_preproc_if_token3] = ACTIONS(5008), + [aux_sym_preproc_else_token1] = ACTIONS(5008), + [aux_sym_preproc_elif_token1] = ACTIONS(5008), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -469280,396 +468828,6 @@ 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(5001), - [anon_sym_LBRACK] = ACTIONS(5001), - [anon_sym_COLON] = ACTIONS(5001), - [anon_sym_COMMA] = ACTIONS(5001), - [anon_sym_RBRACK] = ACTIONS(5001), - [anon_sym_LPAREN] = ACTIONS(5001), - [anon_sym_RPAREN] = ACTIONS(5001), - [anon_sym_RBRACE] = ACTIONS(5001), - [anon_sym_LT] = ACTIONS(5003), - [anon_sym_GT] = ACTIONS(5003), - [anon_sym_in] = ACTIONS(5003), - [anon_sym_where] = ACTIONS(5001), - [anon_sym_QMARK] = ACTIONS(5003), - [anon_sym_BANG] = ACTIONS(5003), - [anon_sym_PLUS_PLUS] = ACTIONS(5001), - [anon_sym_DASH_DASH] = ACTIONS(5001), - [anon_sym_PLUS] = ACTIONS(5003), - [anon_sym_DASH] = ACTIONS(5003), - [anon_sym_STAR] = ACTIONS(5001), - [anon_sym_SLASH] = ACTIONS(5003), - [anon_sym_PERCENT] = ACTIONS(5001), - [anon_sym_CARET] = ACTIONS(5001), - [anon_sym_PIPE] = ACTIONS(5003), - [anon_sym_AMP] = ACTIONS(5003), - [anon_sym_LT_LT] = ACTIONS(5001), - [anon_sym_GT_GT] = ACTIONS(5003), - [anon_sym_GT_GT_GT] = ACTIONS(5001), - [anon_sym_EQ_EQ] = ACTIONS(5001), - [anon_sym_BANG_EQ] = ACTIONS(5001), - [anon_sym_GT_EQ] = ACTIONS(5001), - [anon_sym_LT_EQ] = ACTIONS(5001), - [anon_sym_DOT] = ACTIONS(5003), - [anon_sym_EQ_GT] = ACTIONS(5001), - [anon_sym_switch] = ACTIONS(5001), - [anon_sym_DOT_DOT] = ACTIONS(5001), - [anon_sym_and] = ACTIONS(5001), - [anon_sym_or] = ACTIONS(5003), - [anon_sym_AMP_AMP] = ACTIONS(5001), - [anon_sym_PIPE_PIPE] = ACTIONS(5001), - [anon_sym_QMARK_QMARK] = ACTIONS(5001), - [anon_sym_from] = ACTIONS(5001), - [anon_sym_into] = ACTIONS(5001), - [anon_sym_join] = ACTIONS(5001), - [anon_sym_on] = ACTIONS(5001), - [anon_sym_equals] = ACTIONS(5001), - [anon_sym_let] = ACTIONS(5001), - [anon_sym_orderby] = ACTIONS(5001), - [anon_sym_group] = ACTIONS(5001), - [anon_sym_by] = ACTIONS(5001), - [anon_sym_select] = ACTIONS(5001), - [anon_sym_as] = ACTIONS(5001), - [anon_sym_is] = ACTIONS(5001), - [anon_sym_DASH_GT] = ACTIONS(5001), - [anon_sym_with] = ACTIONS(5001), - [aux_sym_preproc_if_token3] = ACTIONS(5001), - [aux_sym_preproc_else_token1] = ACTIONS(5001), - [aux_sym_preproc_elif_token1] = ACTIONS(5001), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - }, - [2989] = { - [sym_preproc_region] = STATE(2989), - [sym_preproc_endregion] = STATE(2989), - [sym_preproc_line] = STATE(2989), - [sym_preproc_pragma] = STATE(2989), - [sym_preproc_nullable] = STATE(2989), - [sym_preproc_error] = STATE(2989), - [sym_preproc_warning] = STATE(2989), - [sym_preproc_define] = STATE(2989), - [sym_preproc_undef] = STATE(2989), - [anon_sym_SEMI] = ACTIONS(4084), - [anon_sym_LBRACK] = ACTIONS(4084), - [anon_sym_COLON] = ACTIONS(4084), - [anon_sym_COMMA] = ACTIONS(4084), - [anon_sym_RBRACK] = ACTIONS(4084), - [anon_sym_LPAREN] = ACTIONS(4084), - [anon_sym_RPAREN] = ACTIONS(4084), - [anon_sym_LBRACE] = ACTIONS(4084), - [anon_sym_RBRACE] = ACTIONS(4084), - [anon_sym_LT] = ACTIONS(4082), - [anon_sym_GT] = ACTIONS(4082), - [anon_sym_in] = ACTIONS(4084), - [anon_sym_where] = ACTIONS(4084), - [anon_sym_QMARK] = ACTIONS(4082), - [anon_sym_BANG] = ACTIONS(4082), - [anon_sym_PLUS_PLUS] = ACTIONS(4084), - [anon_sym_DASH_DASH] = ACTIONS(4084), - [anon_sym_PLUS] = ACTIONS(4082), - [anon_sym_DASH] = ACTIONS(4082), - [anon_sym_STAR] = ACTIONS(4084), - [anon_sym_SLASH] = ACTIONS(4082), - [anon_sym_PERCENT] = ACTIONS(4084), - [anon_sym_CARET] = ACTIONS(4084), - [anon_sym_PIPE] = ACTIONS(4082), - [anon_sym_AMP] = ACTIONS(4082), - [anon_sym_LT_LT] = ACTIONS(4084), - [anon_sym_GT_GT] = ACTIONS(4082), - [anon_sym_GT_GT_GT] = ACTIONS(4084), - [anon_sym_EQ_EQ] = ACTIONS(4084), - [anon_sym_BANG_EQ] = ACTIONS(4084), - [anon_sym_GT_EQ] = ACTIONS(4084), - [anon_sym_LT_EQ] = ACTIONS(4084), - [anon_sym_DOT] = ACTIONS(4082), - [anon_sym_EQ_GT] = ACTIONS(4084), - [anon_sym_switch] = ACTIONS(4084), - [anon_sym_DOT_DOT] = ACTIONS(4084), - [anon_sym_and] = ACTIONS(4084), - [anon_sym_or] = ACTIONS(4082), - [anon_sym_AMP_AMP] = ACTIONS(4084), - [anon_sym_PIPE_PIPE] = ACTIONS(4084), - [anon_sym_QMARK_QMARK] = ACTIONS(4084), - [anon_sym_from] = ACTIONS(4084), - [anon_sym_join] = ACTIONS(4084), - [anon_sym_on] = ACTIONS(4084), - [anon_sym_equals] = ACTIONS(4084), - [anon_sym_let] = ACTIONS(4084), - [anon_sym_orderby] = ACTIONS(4084), - [anon_sym_group] = ACTIONS(4084), - [anon_sym_by] = ACTIONS(4084), - [anon_sym_select] = ACTIONS(4084), - [anon_sym_as] = ACTIONS(4084), - [anon_sym_is] = ACTIONS(4084), - [anon_sym_DASH_GT] = ACTIONS(4084), - [anon_sym_with] = ACTIONS(4084), - [aux_sym_preproc_if_token3] = ACTIONS(4084), - [aux_sym_preproc_else_token1] = ACTIONS(4084), - [aux_sym_preproc_elif_token1] = ACTIONS(4084), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - }, - [2990] = { - [sym_preproc_region] = STATE(2990), - [sym_preproc_endregion] = STATE(2990), - [sym_preproc_line] = STATE(2990), - [sym_preproc_pragma] = STATE(2990), - [sym_preproc_nullable] = STATE(2990), - [sym_preproc_error] = STATE(2990), - [sym_preproc_warning] = STATE(2990), - [sym_preproc_define] = STATE(2990), - [sym_preproc_undef] = STATE(2990), - [sym__identifier_token] = ACTIONS(5005), - [anon_sym_extern] = ACTIONS(5005), - [anon_sym_alias] = ACTIONS(5005), - [anon_sym_global] = ACTIONS(5005), - [anon_sym_unsafe] = ACTIONS(5005), - [anon_sym_static] = ACTIONS(5005), - [anon_sym_LBRACK] = ACTIONS(5007), - [anon_sym_LPAREN] = ACTIONS(5007), - [anon_sym_event] = ACTIONS(5005), - [anon_sym_class] = ACTIONS(5005), - [anon_sym_ref] = ACTIONS(5005), - [anon_sym_struct] = ACTIONS(5005), - [anon_sym_enum] = ACTIONS(5005), - [anon_sym_interface] = ACTIONS(5005), - [anon_sym_delegate] = ACTIONS(5005), - [anon_sym_record] = ACTIONS(5005), - [anon_sym_abstract] = ACTIONS(5005), - [anon_sym_async] = ACTIONS(5005), - [anon_sym_const] = ACTIONS(5005), - [anon_sym_file] = ACTIONS(5005), - [anon_sym_fixed] = ACTIONS(5005), - [anon_sym_internal] = ACTIONS(5005), - [anon_sym_new] = ACTIONS(5005), - [anon_sym_override] = ACTIONS(5005), - [anon_sym_partial] = ACTIONS(5005), - [anon_sym_private] = ACTIONS(5005), - [anon_sym_protected] = ACTIONS(5005), - [anon_sym_public] = ACTIONS(5005), - [anon_sym_readonly] = ACTIONS(5005), - [anon_sym_required] = ACTIONS(5005), - [anon_sym_sealed] = ACTIONS(5005), - [anon_sym_virtual] = ACTIONS(5005), - [anon_sym_volatile] = ACTIONS(5005), - [anon_sym_where] = ACTIONS(5005), - [anon_sym_notnull] = ACTIONS(5005), - [anon_sym_unmanaged] = ACTIONS(5005), - [anon_sym_TILDE] = ACTIONS(5007), - [anon_sym_implicit] = ACTIONS(5005), - [anon_sym_explicit] = ACTIONS(5005), - [anon_sym_scoped] = ACTIONS(5005), - [anon_sym_var] = ACTIONS(5005), - [sym_predefined_type] = ACTIONS(5005), - [anon_sym_yield] = ACTIONS(5005), - [anon_sym_when] = ACTIONS(5005), - [anon_sym_from] = ACTIONS(5005), - [anon_sym_into] = ACTIONS(5005), - [anon_sym_join] = ACTIONS(5005), - [anon_sym_on] = ACTIONS(5005), - [anon_sym_equals] = ACTIONS(5005), - [anon_sym_let] = ACTIONS(5005), - [anon_sym_orderby] = ACTIONS(5005), - [anon_sym_ascending] = ACTIONS(5005), - [anon_sym_descending] = ACTIONS(5005), - [anon_sym_group] = ACTIONS(5005), - [anon_sym_by] = ACTIONS(5005), - [anon_sym_select] = ACTIONS(5005), - [aux_sym_preproc_if_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), - }, - [2991] = { - [sym_preproc_region] = STATE(2991), - [sym_preproc_endregion] = STATE(2991), - [sym_preproc_line] = STATE(2991), - [sym_preproc_pragma] = STATE(2991), - [sym_preproc_nullable] = STATE(2991), - [sym_preproc_error] = STATE(2991), - [sym_preproc_warning] = STATE(2991), - [sym_preproc_define] = STATE(2991), - [sym_preproc_undef] = STATE(2991), - [anon_sym_SEMI] = ACTIONS(3973), - [anon_sym_LBRACK] = ACTIONS(3973), - [anon_sym_COLON] = ACTIONS(3973), - [anon_sym_COMMA] = ACTIONS(3973), - [anon_sym_RBRACK] = ACTIONS(3973), - [anon_sym_LPAREN] = ACTIONS(3973), - [anon_sym_RPAREN] = ACTIONS(3973), - [anon_sym_LBRACE] = ACTIONS(3973), - [anon_sym_RBRACE] = ACTIONS(3973), - [anon_sym_LT] = ACTIONS(3971), - [anon_sym_GT] = ACTIONS(3971), - [anon_sym_in] = ACTIONS(3973), - [anon_sym_where] = ACTIONS(3973), - [anon_sym_QMARK] = ACTIONS(3971), - [anon_sym_BANG] = ACTIONS(3971), - [anon_sym_PLUS_PLUS] = ACTIONS(3973), - [anon_sym_DASH_DASH] = ACTIONS(3973), - [anon_sym_PLUS] = ACTIONS(3971), - [anon_sym_DASH] = ACTIONS(3971), - [anon_sym_STAR] = ACTIONS(3973), - [anon_sym_SLASH] = ACTIONS(3971), - [anon_sym_PERCENT] = ACTIONS(3973), - [anon_sym_CARET] = ACTIONS(3973), - [anon_sym_PIPE] = ACTIONS(3971), - [anon_sym_AMP] = ACTIONS(3971), - [anon_sym_LT_LT] = ACTIONS(3973), - [anon_sym_GT_GT] = ACTIONS(3971), - [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(3971), - [anon_sym_EQ_GT] = ACTIONS(3973), - [anon_sym_switch] = ACTIONS(3973), - [anon_sym_DOT_DOT] = ACTIONS(3973), - [anon_sym_and] = ACTIONS(3973), - [anon_sym_or] = ACTIONS(3971), - [anon_sym_AMP_AMP] = ACTIONS(3973), - [anon_sym_PIPE_PIPE] = ACTIONS(3973), - [anon_sym_QMARK_QMARK] = ACTIONS(3973), - [anon_sym_from] = ACTIONS(3973), - [anon_sym_join] = ACTIONS(3973), - [anon_sym_on] = ACTIONS(3973), - [anon_sym_equals] = ACTIONS(3973), - [anon_sym_let] = ACTIONS(3973), - [anon_sym_orderby] = ACTIONS(3973), - [anon_sym_group] = ACTIONS(3973), - [anon_sym_by] = ACTIONS(3973), - [anon_sym_select] = ACTIONS(3973), - [anon_sym_as] = ACTIONS(3973), - [anon_sym_is] = ACTIONS(3973), - [anon_sym_DASH_GT] = ACTIONS(3973), - [anon_sym_with] = ACTIONS(3973), - [aux_sym_preproc_if_token3] = ACTIONS(3973), - [aux_sym_preproc_else_token1] = ACTIONS(3973), - [aux_sym_preproc_elif_token1] = ACTIONS(3973), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - }, - [2992] = { - [sym_preproc_region] = STATE(2992), - [sym_preproc_endregion] = STATE(2992), - [sym_preproc_line] = STATE(2992), - [sym_preproc_pragma] = STATE(2992), - [sym_preproc_nullable] = STATE(2992), - [sym_preproc_error] = STATE(2992), - [sym_preproc_warning] = STATE(2992), - [sym_preproc_define] = STATE(2992), - [sym_preproc_undef] = STATE(2992), - [anon_sym_SEMI] = ACTIONS(4018), - [anon_sym_LBRACK] = ACTIONS(4066), - [anon_sym_COLON] = ACTIONS(4018), - [anon_sym_COMMA] = ACTIONS(4018), - [anon_sym_RBRACK] = ACTIONS(4018), - [anon_sym_LPAREN] = ACTIONS(4018), - [anon_sym_RPAREN] = ACTIONS(4018), - [anon_sym_LBRACE] = ACTIONS(4018), - [anon_sym_RBRACE] = ACTIONS(4018), - [anon_sym_LT] = ACTIONS(4016), - [anon_sym_GT] = ACTIONS(4016), - [anon_sym_in] = ACTIONS(4018), - [anon_sym_where] = ACTIONS(4018), - [anon_sym_QMARK] = ACTIONS(5009), - [anon_sym_BANG] = ACTIONS(4016), - [anon_sym_PLUS_PLUS] = ACTIONS(4018), - [anon_sym_DASH_DASH] = ACTIONS(4018), - [anon_sym_PLUS] = ACTIONS(4016), - [anon_sym_DASH] = ACTIONS(4016), - [anon_sym_STAR] = ACTIONS(4018), - [anon_sym_SLASH] = ACTIONS(4016), - [anon_sym_PERCENT] = ACTIONS(4018), - [anon_sym_CARET] = ACTIONS(4018), - [anon_sym_PIPE] = ACTIONS(4016), - [anon_sym_AMP] = ACTIONS(4016), - [anon_sym_LT_LT] = ACTIONS(4018), - [anon_sym_GT_GT] = ACTIONS(4016), - [anon_sym_GT_GT_GT] = ACTIONS(4018), - [anon_sym_EQ_EQ] = ACTIONS(4018), - [anon_sym_BANG_EQ] = ACTIONS(4018), - [anon_sym_GT_EQ] = ACTIONS(4018), - [anon_sym_LT_EQ] = ACTIONS(4018), - [anon_sym_DOT] = ACTIONS(4016), - [anon_sym_EQ_GT] = ACTIONS(4018), - [anon_sym_switch] = ACTIONS(4018), - [anon_sym_DOT_DOT] = ACTIONS(4018), - [anon_sym_and] = ACTIONS(4018), - [anon_sym_or] = ACTIONS(4016), - [anon_sym_AMP_AMP] = ACTIONS(4018), - [anon_sym_PIPE_PIPE] = ACTIONS(4018), - [anon_sym_QMARK_QMARK] = ACTIONS(4018), - [anon_sym_from] = 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_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(4018), - [anon_sym_with] = ACTIONS(4018), - [aux_sym_preproc_if_token3] = ACTIONS(4018), - [aux_sym_preproc_else_token1] = ACTIONS(4018), - [aux_sym_preproc_elif_token1] = 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), - }, - [2993] = { - [sym_preproc_region] = STATE(2993), - [sym_preproc_endregion] = STATE(2993), - [sym_preproc_line] = STATE(2993), - [sym_preproc_pragma] = STATE(2993), - [sym_preproc_nullable] = STATE(2993), - [sym_preproc_error] = STATE(2993), - [sym_preproc_warning] = STATE(2993), - [sym_preproc_define] = STATE(2993), - [sym_preproc_undef] = STATE(2993), [anon_sym_SEMI] = ACTIONS(5012), [anon_sym_LBRACK] = ACTIONS(5012), [anon_sym_COLON] = ACTIONS(5012), @@ -469738,16 +468896,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), }, - [2994] = { - [sym_preproc_region] = STATE(2994), - [sym_preproc_endregion] = STATE(2994), - [sym_preproc_line] = STATE(2994), - [sym_preproc_pragma] = STATE(2994), - [sym_preproc_nullable] = STATE(2994), - [sym_preproc_error] = STATE(2994), - [sym_preproc_warning] = STATE(2994), - [sym_preproc_define] = STATE(2994), - [sym_preproc_undef] = STATE(2994), + [2989] = { + [sym_preproc_region] = STATE(2989), + [sym_preproc_endregion] = STATE(2989), + [sym_preproc_line] = STATE(2989), + [sym_preproc_pragma] = STATE(2989), + [sym_preproc_nullable] = STATE(2989), + [sym_preproc_error] = STATE(2989), + [sym_preproc_warning] = STATE(2989), + [sym_preproc_define] = STATE(2989), + [sym_preproc_undef] = STATE(2989), [anon_sym_SEMI] = ACTIONS(5016), [anon_sym_LBRACK] = ACTIONS(5016), [anon_sym_COLON] = ACTIONS(5016), @@ -469816,94 +468974,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), }, - [2995] = { - [sym_preproc_region] = STATE(2995), - [sym_preproc_endregion] = STATE(2995), - [sym_preproc_line] = STATE(2995), - [sym_preproc_pragma] = STATE(2995), - [sym_preproc_nullable] = STATE(2995), - [sym_preproc_error] = STATE(2995), - [sym_preproc_warning] = STATE(2995), - [sym_preproc_define] = STATE(2995), - [sym_preproc_undef] = STATE(2995), - [anon_sym_SEMI] = ACTIONS(4892), - [anon_sym_LBRACK] = ACTIONS(4892), - [anon_sym_COLON] = ACTIONS(4892), - [anon_sym_COMMA] = ACTIONS(4892), - [anon_sym_RBRACK] = ACTIONS(4892), - [anon_sym_LPAREN] = ACTIONS(4892), - [anon_sym_RPAREN] = ACTIONS(4892), - [anon_sym_RBRACE] = ACTIONS(4892), - [anon_sym_LT] = ACTIONS(4894), - [anon_sym_GT] = ACTIONS(4894), - [anon_sym_in] = ACTIONS(4894), - [anon_sym_where] = ACTIONS(4892), - [anon_sym_QMARK] = ACTIONS(4894), - [anon_sym_BANG] = ACTIONS(4894), - [anon_sym_PLUS_PLUS] = ACTIONS(4892), - [anon_sym_DASH_DASH] = ACTIONS(4892), - [anon_sym_PLUS] = ACTIONS(4894), - [anon_sym_DASH] = ACTIONS(4894), - [anon_sym_STAR] = ACTIONS(4892), - [anon_sym_SLASH] = ACTIONS(4894), - [anon_sym_PERCENT] = ACTIONS(4892), - [anon_sym_CARET] = ACTIONS(4892), - [anon_sym_PIPE] = ACTIONS(4894), - [anon_sym_AMP] = ACTIONS(4894), - [anon_sym_LT_LT] = ACTIONS(4892), - [anon_sym_GT_GT] = ACTIONS(4894), - [anon_sym_GT_GT_GT] = ACTIONS(4892), - [anon_sym_EQ_EQ] = ACTIONS(4892), - [anon_sym_BANG_EQ] = ACTIONS(4892), - [anon_sym_GT_EQ] = ACTIONS(4892), - [anon_sym_LT_EQ] = ACTIONS(4892), - [anon_sym_DOT] = ACTIONS(4894), - [anon_sym_EQ_GT] = ACTIONS(4892), - [anon_sym_switch] = ACTIONS(4892), - [anon_sym_DOT_DOT] = ACTIONS(4892), - [anon_sym_and] = ACTIONS(4892), - [anon_sym_or] = ACTIONS(4894), - [anon_sym_AMP_AMP] = ACTIONS(4892), - [anon_sym_PIPE_PIPE] = ACTIONS(4892), - [anon_sym_QMARK_QMARK] = ACTIONS(4892), - [anon_sym_from] = ACTIONS(4892), - [anon_sym_into] = ACTIONS(4892), - [anon_sym_join] = ACTIONS(4892), - [anon_sym_on] = ACTIONS(4892), - [anon_sym_equals] = ACTIONS(4892), - [anon_sym_let] = ACTIONS(4892), - [anon_sym_orderby] = ACTIONS(4892), - [anon_sym_group] = ACTIONS(4892), - [anon_sym_by] = ACTIONS(4892), - [anon_sym_select] = ACTIONS(4892), - [anon_sym_as] = ACTIONS(4892), - [anon_sym_is] = ACTIONS(4892), - [anon_sym_DASH_GT] = ACTIONS(4892), - [anon_sym_with] = ACTIONS(4892), - [aux_sym_preproc_if_token3] = ACTIONS(4892), - [aux_sym_preproc_else_token1] = ACTIONS(4892), - [aux_sym_preproc_elif_token1] = ACTIONS(4892), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - }, - [2996] = { - [sym_preproc_region] = STATE(2996), - [sym_preproc_endregion] = STATE(2996), - [sym_preproc_line] = STATE(2996), - [sym_preproc_pragma] = STATE(2996), - [sym_preproc_nullable] = STATE(2996), - [sym_preproc_error] = STATE(2996), - [sym_preproc_warning] = STATE(2996), - [sym_preproc_define] = STATE(2996), - [sym_preproc_undef] = STATE(2996), + [2990] = { + [sym_preproc_region] = STATE(2990), + [sym_preproc_endregion] = STATE(2990), + [sym_preproc_line] = STATE(2990), + [sym_preproc_pragma] = STATE(2990), + [sym_preproc_nullable] = STATE(2990), + [sym_preproc_error] = STATE(2990), + [sym_preproc_warning] = STATE(2990), + [sym_preproc_define] = STATE(2990), + [sym_preproc_undef] = STATE(2990), [anon_sym_SEMI] = ACTIONS(5020), [anon_sym_LBRACK] = ACTIONS(5020), [anon_sym_COLON] = ACTIONS(5020), @@ -469972,73 +469052,73 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), }, - [2997] = { - [sym_preproc_region] = STATE(2997), - [sym_preproc_endregion] = STATE(2997), - [sym_preproc_line] = STATE(2997), - [sym_preproc_pragma] = STATE(2997), - [sym_preproc_nullable] = STATE(2997), - [sym_preproc_error] = STATE(2997), - [sym_preproc_warning] = STATE(2997), - [sym_preproc_define] = STATE(2997), - [sym_preproc_undef] = STATE(2997), - [anon_sym_SEMI] = ACTIONS(3673), - [anon_sym_LBRACK] = ACTIONS(3673), - [anon_sym_COLON] = ACTIONS(3673), - [anon_sym_COMMA] = ACTIONS(3673), - [anon_sym_RBRACK] = ACTIONS(3673), - [anon_sym_LPAREN] = ACTIONS(3673), - [anon_sym_RPAREN] = ACTIONS(3673), - [anon_sym_LBRACE] = ACTIONS(3673), - [anon_sym_RBRACE] = ACTIONS(3673), - [anon_sym_LT] = ACTIONS(3671), - [anon_sym_GT] = ACTIONS(3671), - [anon_sym_in] = ACTIONS(3673), - [anon_sym_where] = ACTIONS(3673), - [anon_sym_QMARK] = ACTIONS(3671), - [anon_sym_BANG] = ACTIONS(3671), - [anon_sym_PLUS_PLUS] = ACTIONS(3673), - [anon_sym_DASH_DASH] = ACTIONS(3673), - [anon_sym_PLUS] = ACTIONS(3671), - [anon_sym_DASH] = ACTIONS(3671), - [anon_sym_STAR] = ACTIONS(3673), - [anon_sym_SLASH] = ACTIONS(3671), - [anon_sym_PERCENT] = ACTIONS(3673), - [anon_sym_CARET] = ACTIONS(3673), - [anon_sym_PIPE] = ACTIONS(3671), - [anon_sym_AMP] = ACTIONS(3671), - [anon_sym_LT_LT] = ACTIONS(3673), - [anon_sym_GT_GT] = ACTIONS(3671), - [anon_sym_GT_GT_GT] = ACTIONS(3673), - [anon_sym_EQ_EQ] = ACTIONS(3673), - [anon_sym_BANG_EQ] = ACTIONS(3673), - [anon_sym_GT_EQ] = ACTIONS(3673), - [anon_sym_LT_EQ] = ACTIONS(3673), - [anon_sym_DOT] = ACTIONS(3671), - [anon_sym_EQ_GT] = ACTIONS(3673), - [anon_sym_switch] = ACTIONS(3673), - [anon_sym_DOT_DOT] = ACTIONS(3673), - [anon_sym_and] = ACTIONS(3673), - [anon_sym_or] = ACTIONS(3671), - [anon_sym_AMP_AMP] = ACTIONS(3673), - [anon_sym_PIPE_PIPE] = ACTIONS(3673), - [anon_sym_QMARK_QMARK] = ACTIONS(3673), - [anon_sym_from] = ACTIONS(3673), - [anon_sym_join] = ACTIONS(3673), - [anon_sym_on] = ACTIONS(3673), - [anon_sym_equals] = ACTIONS(3673), - [anon_sym_let] = ACTIONS(3673), - [anon_sym_orderby] = ACTIONS(3673), - [anon_sym_group] = ACTIONS(3673), - [anon_sym_by] = ACTIONS(3673), - [anon_sym_select] = ACTIONS(3673), - [anon_sym_as] = ACTIONS(3673), - [anon_sym_is] = ACTIONS(3673), - [anon_sym_DASH_GT] = ACTIONS(3673), - [anon_sym_with] = ACTIONS(3673), - [aux_sym_preproc_if_token3] = ACTIONS(3673), - [aux_sym_preproc_else_token1] = ACTIONS(3673), - [aux_sym_preproc_elif_token1] = ACTIONS(3673), + [2991] = { + [sym_preproc_region] = STATE(2991), + [sym_preproc_endregion] = STATE(2991), + [sym_preproc_line] = STATE(2991), + [sym_preproc_pragma] = STATE(2991), + [sym_preproc_nullable] = STATE(2991), + [sym_preproc_error] = STATE(2991), + [sym_preproc_warning] = STATE(2991), + [sym_preproc_define] = STATE(2991), + [sym_preproc_undef] = STATE(2991), + [anon_sym_SEMI] = ACTIONS(5024), + [anon_sym_LBRACK] = ACTIONS(5024), + [anon_sym_COLON] = ACTIONS(5024), + [anon_sym_COMMA] = ACTIONS(5024), + [anon_sym_RBRACK] = ACTIONS(5024), + [anon_sym_LPAREN] = ACTIONS(5024), + [anon_sym_RPAREN] = ACTIONS(5024), + [anon_sym_RBRACE] = ACTIONS(5024), + [anon_sym_LT] = ACTIONS(5026), + [anon_sym_GT] = ACTIONS(5026), + [anon_sym_in] = ACTIONS(5026), + [anon_sym_where] = ACTIONS(5024), + [anon_sym_QMARK] = ACTIONS(5026), + [anon_sym_BANG] = ACTIONS(5026), + [anon_sym_PLUS_PLUS] = ACTIONS(5024), + [anon_sym_DASH_DASH] = ACTIONS(5024), + [anon_sym_PLUS] = ACTIONS(5026), + [anon_sym_DASH] = ACTIONS(5026), + [anon_sym_STAR] = ACTIONS(5024), + [anon_sym_SLASH] = ACTIONS(5026), + [anon_sym_PERCENT] = ACTIONS(5024), + [anon_sym_CARET] = ACTIONS(5024), + [anon_sym_PIPE] = ACTIONS(5026), + [anon_sym_AMP] = ACTIONS(5026), + [anon_sym_LT_LT] = ACTIONS(5024), + [anon_sym_GT_GT] = ACTIONS(5026), + [anon_sym_GT_GT_GT] = ACTIONS(5024), + [anon_sym_EQ_EQ] = ACTIONS(5024), + [anon_sym_BANG_EQ] = ACTIONS(5024), + [anon_sym_GT_EQ] = ACTIONS(5024), + [anon_sym_LT_EQ] = ACTIONS(5024), + [anon_sym_DOT] = ACTIONS(5026), + [anon_sym_EQ_GT] = ACTIONS(5024), + [anon_sym_switch] = ACTIONS(5024), + [anon_sym_DOT_DOT] = ACTIONS(5024), + [anon_sym_and] = ACTIONS(5024), + [anon_sym_or] = ACTIONS(5026), + [anon_sym_AMP_AMP] = ACTIONS(5024), + [anon_sym_PIPE_PIPE] = ACTIONS(5024), + [anon_sym_QMARK_QMARK] = ACTIONS(5024), + [anon_sym_from] = ACTIONS(5024), + [anon_sym_into] = ACTIONS(5024), + [anon_sym_join] = ACTIONS(5024), + [anon_sym_on] = ACTIONS(5024), + [anon_sym_equals] = ACTIONS(5024), + [anon_sym_let] = ACTIONS(5024), + [anon_sym_orderby] = ACTIONS(5024), + [anon_sym_group] = ACTIONS(5024), + [anon_sym_by] = ACTIONS(5024), + [anon_sym_select] = ACTIONS(5024), + [anon_sym_as] = ACTIONS(5024), + [anon_sym_is] = ACTIONS(5024), + [anon_sym_DASH_GT] = ACTIONS(5024), + [anon_sym_with] = ACTIONS(5024), + [aux_sym_preproc_if_token3] = ACTIONS(5024), + [aux_sym_preproc_else_token1] = ACTIONS(5024), + [aux_sym_preproc_elif_token1] = ACTIONS(5024), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -470050,73 +469130,73 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), }, - [2998] = { - [sym_attribute_list] = STATE(5934), - [sym__attribute_list] = STATE(6051), - [sym_type_parameter] = STATE(6980), - [sym__name] = STATE(6450), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(4096), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(4109), - [sym_type] = STATE(6915), - [sym_implicit_type] = STATE(7266), - [sym_array_type] = STATE(6694), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7446), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(7266), - [sym_scoped_type] = STATE(7266), - [sym_tuple_type] = STATE(6579), - [sym_identifier] = STATE(6323), - [sym__reserved_identifier] = STATE(3691), - [sym_preproc_if_in_attribute_list] = STATE(5934), - [sym_preproc_region] = STATE(2998), - [sym_preproc_endregion] = STATE(2998), - [sym_preproc_line] = STATE(2998), - [sym_preproc_pragma] = STATE(2998), - [sym_preproc_nullable] = STATE(2998), - [sym_preproc_error] = STATE(2998), - [sym_preproc_warning] = STATE(2998), - [sym_preproc_define] = STATE(2998), - [sym_preproc_undef] = STATE(2998), - [aux_sym__class_declaration_initializer_repeat1] = STATE(5756), - [aux_sym_type_argument_list_repeat1] = STATE(6917), - [sym__identifier_token] = ACTIONS(2967), - [anon_sym_alias] = ACTIONS(2971), - [anon_sym_global] = ACTIONS(2971), - [anon_sym_LBRACK] = ACTIONS(5024), - [anon_sym_COMMA] = ACTIONS(5026), - [anon_sym_LPAREN] = ACTIONS(2979), - [anon_sym_ref] = ACTIONS(5028), - [anon_sym_delegate] = ACTIONS(5030), - [anon_sym_file] = ACTIONS(2971), - [anon_sym_GT] = ACTIONS(5032), - [anon_sym_in] = ACTIONS(5034), - [anon_sym_out] = ACTIONS(5034), - [anon_sym_where] = ACTIONS(2971), - [anon_sym_notnull] = ACTIONS(2971), - [anon_sym_unmanaged] = ACTIONS(2971), - [anon_sym_scoped] = ACTIONS(5036), - [anon_sym_var] = ACTIONS(4737), - [sym_predefined_type] = ACTIONS(5038), - [anon_sym_yield] = ACTIONS(2971), - [anon_sym_when] = ACTIONS(2971), - [anon_sym_from] = ACTIONS(2971), - [anon_sym_into] = ACTIONS(2971), - [anon_sym_join] = ACTIONS(2971), - [anon_sym_on] = ACTIONS(2971), - [anon_sym_equals] = ACTIONS(2971), - [anon_sym_let] = ACTIONS(2971), - [anon_sym_orderby] = ACTIONS(2971), - [anon_sym_ascending] = ACTIONS(2971), - [anon_sym_descending] = ACTIONS(2971), - [anon_sym_group] = ACTIONS(2971), - [anon_sym_by] = ACTIONS(2971), - [anon_sym_select] = ACTIONS(2971), - [aux_sym_preproc_if_token1] = ACTIONS(5040), + [2992] = { + [sym_preproc_region] = STATE(2992), + [sym_preproc_endregion] = STATE(2992), + [sym_preproc_line] = STATE(2992), + [sym_preproc_pragma] = STATE(2992), + [sym_preproc_nullable] = STATE(2992), + [sym_preproc_error] = STATE(2992), + [sym_preproc_warning] = STATE(2992), + [sym_preproc_define] = STATE(2992), + [sym_preproc_undef] = STATE(2992), + [anon_sym_SEMI] = ACTIONS(5028), + [anon_sym_LBRACK] = ACTIONS(5028), + [anon_sym_COLON] = ACTIONS(5028), + [anon_sym_COMMA] = ACTIONS(5028), + [anon_sym_RBRACK] = ACTIONS(5028), + [anon_sym_LPAREN] = ACTIONS(5028), + [anon_sym_RPAREN] = ACTIONS(5028), + [anon_sym_RBRACE] = ACTIONS(5028), + [anon_sym_LT] = ACTIONS(5030), + [anon_sym_GT] = ACTIONS(5030), + [anon_sym_in] = ACTIONS(5030), + [anon_sym_where] = ACTIONS(5028), + [anon_sym_QMARK] = ACTIONS(5030), + [anon_sym_BANG] = ACTIONS(5030), + [anon_sym_PLUS_PLUS] = ACTIONS(5028), + [anon_sym_DASH_DASH] = ACTIONS(5028), + [anon_sym_PLUS] = ACTIONS(5030), + [anon_sym_DASH] = ACTIONS(5030), + [anon_sym_STAR] = ACTIONS(5028), + [anon_sym_SLASH] = ACTIONS(5030), + [anon_sym_PERCENT] = ACTIONS(5028), + [anon_sym_CARET] = ACTIONS(5028), + [anon_sym_PIPE] = ACTIONS(5030), + [anon_sym_AMP] = ACTIONS(5030), + [anon_sym_LT_LT] = ACTIONS(5028), + [anon_sym_GT_GT] = ACTIONS(5030), + [anon_sym_GT_GT_GT] = ACTIONS(5028), + [anon_sym_EQ_EQ] = ACTIONS(5028), + [anon_sym_BANG_EQ] = ACTIONS(5028), + [anon_sym_GT_EQ] = ACTIONS(5028), + [anon_sym_LT_EQ] = ACTIONS(5028), + [anon_sym_DOT] = ACTIONS(5030), + [anon_sym_EQ_GT] = ACTIONS(5028), + [anon_sym_switch] = ACTIONS(5028), + [anon_sym_DOT_DOT] = ACTIONS(5028), + [anon_sym_and] = ACTIONS(5028), + [anon_sym_or] = ACTIONS(5030), + [anon_sym_AMP_AMP] = ACTIONS(5028), + [anon_sym_PIPE_PIPE] = ACTIONS(5028), + [anon_sym_QMARK_QMARK] = ACTIONS(5028), + [anon_sym_from] = ACTIONS(5028), + [anon_sym_into] = ACTIONS(5028), + [anon_sym_join] = ACTIONS(5028), + [anon_sym_on] = ACTIONS(5028), + [anon_sym_equals] = ACTIONS(5028), + [anon_sym_let] = ACTIONS(5028), + [anon_sym_orderby] = ACTIONS(5028), + [anon_sym_group] = ACTIONS(5028), + [anon_sym_by] = ACTIONS(5028), + [anon_sym_select] = ACTIONS(5028), + [anon_sym_as] = ACTIONS(5028), + [anon_sym_is] = ACTIONS(5028), + [anon_sym_DASH_GT] = ACTIONS(5028), + [anon_sym_with] = ACTIONS(5028), + [aux_sym_preproc_if_token3] = ACTIONS(5028), + [aux_sym_preproc_else_token1] = ACTIONS(5028), + [aux_sym_preproc_elif_token1] = ACTIONS(5028), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -470128,73 +469208,73 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), }, - [2999] = { - [sym_preproc_region] = STATE(2999), - [sym_preproc_endregion] = STATE(2999), - [sym_preproc_line] = STATE(2999), - [sym_preproc_pragma] = STATE(2999), - [sym_preproc_nullable] = STATE(2999), - [sym_preproc_error] = STATE(2999), - [sym_preproc_warning] = STATE(2999), - [sym_preproc_define] = STATE(2999), - [sym_preproc_undef] = STATE(2999), - [anon_sym_SEMI] = ACTIONS(5042), - [anon_sym_LBRACK] = ACTIONS(5042), - [anon_sym_COLON] = ACTIONS(5042), - [anon_sym_COMMA] = ACTIONS(5042), - [anon_sym_RBRACK] = ACTIONS(5042), - [anon_sym_LPAREN] = ACTIONS(5042), - [anon_sym_RPAREN] = ACTIONS(5042), - [anon_sym_RBRACE] = ACTIONS(5042), - [anon_sym_LT] = ACTIONS(5044), - [anon_sym_GT] = ACTIONS(5044), - [anon_sym_in] = ACTIONS(5044), - [anon_sym_where] = ACTIONS(5042), - [anon_sym_QMARK] = ACTIONS(5044), - [anon_sym_BANG] = ACTIONS(5044), - [anon_sym_PLUS_PLUS] = ACTIONS(5042), - [anon_sym_DASH_DASH] = ACTIONS(5042), - [anon_sym_PLUS] = ACTIONS(5044), - [anon_sym_DASH] = ACTIONS(5044), - [anon_sym_STAR] = ACTIONS(5042), - [anon_sym_SLASH] = ACTIONS(5044), - [anon_sym_PERCENT] = ACTIONS(5042), - [anon_sym_CARET] = ACTIONS(5042), - [anon_sym_PIPE] = ACTIONS(5044), - [anon_sym_AMP] = ACTIONS(5044), - [anon_sym_LT_LT] = ACTIONS(5042), - [anon_sym_GT_GT] = ACTIONS(5044), - [anon_sym_GT_GT_GT] = ACTIONS(5042), - [anon_sym_EQ_EQ] = ACTIONS(5042), - [anon_sym_BANG_EQ] = ACTIONS(5042), - [anon_sym_GT_EQ] = ACTIONS(5042), - [anon_sym_LT_EQ] = ACTIONS(5042), - [anon_sym_DOT] = ACTIONS(5044), - [anon_sym_EQ_GT] = ACTIONS(5042), - [anon_sym_switch] = ACTIONS(5042), - [anon_sym_DOT_DOT] = ACTIONS(5042), - [anon_sym_and] = ACTIONS(5042), - [anon_sym_or] = ACTIONS(5044), - [anon_sym_AMP_AMP] = ACTIONS(5042), - [anon_sym_PIPE_PIPE] = ACTIONS(5042), - [anon_sym_QMARK_QMARK] = ACTIONS(5042), - [anon_sym_from] = ACTIONS(5042), - [anon_sym_into] = ACTIONS(5042), - [anon_sym_join] = ACTIONS(5042), - [anon_sym_on] = ACTIONS(5042), - [anon_sym_equals] = ACTIONS(5042), - [anon_sym_let] = ACTIONS(5042), - [anon_sym_orderby] = ACTIONS(5042), - [anon_sym_group] = ACTIONS(5042), - [anon_sym_by] = ACTIONS(5042), - [anon_sym_select] = ACTIONS(5042), - [anon_sym_as] = ACTIONS(5042), - [anon_sym_is] = ACTIONS(5042), - [anon_sym_DASH_GT] = ACTIONS(5042), - [anon_sym_with] = ACTIONS(5042), - [aux_sym_preproc_if_token3] = ACTIONS(5042), - [aux_sym_preproc_else_token1] = ACTIONS(5042), - [aux_sym_preproc_elif_token1] = ACTIONS(5042), + [2993] = { + [sym_preproc_region] = STATE(2993), + [sym_preproc_endregion] = STATE(2993), + [sym_preproc_line] = STATE(2993), + [sym_preproc_pragma] = STATE(2993), + [sym_preproc_nullable] = STATE(2993), + [sym_preproc_error] = STATE(2993), + [sym_preproc_warning] = STATE(2993), + [sym_preproc_define] = STATE(2993), + [sym_preproc_undef] = STATE(2993), + [anon_sym_SEMI] = ACTIONS(5032), + [anon_sym_LBRACK] = ACTIONS(5032), + [anon_sym_COLON] = ACTIONS(5032), + [anon_sym_COMMA] = ACTIONS(5032), + [anon_sym_RBRACK] = ACTIONS(5032), + [anon_sym_LPAREN] = ACTIONS(5032), + [anon_sym_RPAREN] = ACTIONS(5032), + [anon_sym_RBRACE] = ACTIONS(5032), + [anon_sym_LT] = ACTIONS(5034), + [anon_sym_GT] = ACTIONS(5034), + [anon_sym_in] = ACTIONS(5034), + [anon_sym_where] = ACTIONS(5032), + [anon_sym_QMARK] = ACTIONS(5034), + [anon_sym_BANG] = ACTIONS(5034), + [anon_sym_PLUS_PLUS] = ACTIONS(5032), + [anon_sym_DASH_DASH] = ACTIONS(5032), + [anon_sym_PLUS] = ACTIONS(5034), + [anon_sym_DASH] = ACTIONS(5034), + [anon_sym_STAR] = ACTIONS(5032), + [anon_sym_SLASH] = ACTIONS(5034), + [anon_sym_PERCENT] = ACTIONS(5032), + [anon_sym_CARET] = ACTIONS(5032), + [anon_sym_PIPE] = ACTIONS(5034), + [anon_sym_AMP] = ACTIONS(5034), + [anon_sym_LT_LT] = ACTIONS(5032), + [anon_sym_GT_GT] = ACTIONS(5034), + [anon_sym_GT_GT_GT] = ACTIONS(5032), + [anon_sym_EQ_EQ] = ACTIONS(5032), + [anon_sym_BANG_EQ] = ACTIONS(5032), + [anon_sym_GT_EQ] = ACTIONS(5032), + [anon_sym_LT_EQ] = ACTIONS(5032), + [anon_sym_DOT] = ACTIONS(5034), + [anon_sym_EQ_GT] = ACTIONS(5032), + [anon_sym_switch] = ACTIONS(5032), + [anon_sym_DOT_DOT] = ACTIONS(5032), + [anon_sym_and] = ACTIONS(5032), + [anon_sym_or] = ACTIONS(5034), + [anon_sym_AMP_AMP] = ACTIONS(5032), + [anon_sym_PIPE_PIPE] = ACTIONS(5032), + [anon_sym_QMARK_QMARK] = ACTIONS(5032), + [anon_sym_from] = ACTIONS(5032), + [anon_sym_into] = ACTIONS(5032), + [anon_sym_join] = ACTIONS(5032), + [anon_sym_on] = ACTIONS(5032), + [anon_sym_equals] = ACTIONS(5032), + [anon_sym_let] = ACTIONS(5032), + [anon_sym_orderby] = ACTIONS(5032), + [anon_sym_group] = ACTIONS(5032), + [anon_sym_by] = ACTIONS(5032), + [anon_sym_select] = ACTIONS(5032), + [anon_sym_as] = ACTIONS(5032), + [anon_sym_is] = ACTIONS(5032), + [anon_sym_DASH_GT] = ACTIONS(5032), + [anon_sym_with] = ACTIONS(5032), + [aux_sym_preproc_if_token3] = ACTIONS(5032), + [aux_sym_preproc_else_token1] = ACTIONS(5032), + [aux_sym_preproc_elif_token1] = ACTIONS(5032), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -470206,73 +469286,73 @@ 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), - [anon_sym_SEMI] = ACTIONS(5046), - [anon_sym_LBRACK] = ACTIONS(5046), - [anon_sym_COLON] = ACTIONS(5046), - [anon_sym_COMMA] = ACTIONS(5046), - [anon_sym_RBRACK] = ACTIONS(5046), - [anon_sym_LPAREN] = ACTIONS(5046), - [anon_sym_RPAREN] = ACTIONS(5046), - [anon_sym_RBRACE] = ACTIONS(5046), - [anon_sym_LT] = ACTIONS(5048), - [anon_sym_GT] = ACTIONS(5048), - [anon_sym_in] = ACTIONS(5048), - [anon_sym_where] = ACTIONS(5046), - [anon_sym_QMARK] = ACTIONS(5048), - [anon_sym_BANG] = ACTIONS(5048), - [anon_sym_PLUS_PLUS] = ACTIONS(5046), - [anon_sym_DASH_DASH] = ACTIONS(5046), - [anon_sym_PLUS] = ACTIONS(5048), - [anon_sym_DASH] = ACTIONS(5048), - [anon_sym_STAR] = ACTIONS(5046), - [anon_sym_SLASH] = ACTIONS(5048), - [anon_sym_PERCENT] = ACTIONS(5046), - [anon_sym_CARET] = ACTIONS(5046), - [anon_sym_PIPE] = ACTIONS(5048), - [anon_sym_AMP] = ACTIONS(5048), - [anon_sym_LT_LT] = ACTIONS(5046), - [anon_sym_GT_GT] = ACTIONS(5048), - [anon_sym_GT_GT_GT] = ACTIONS(5046), - [anon_sym_EQ_EQ] = ACTIONS(5046), - [anon_sym_BANG_EQ] = ACTIONS(5046), - [anon_sym_GT_EQ] = ACTIONS(5046), - [anon_sym_LT_EQ] = ACTIONS(5046), - [anon_sym_DOT] = ACTIONS(5048), - [anon_sym_EQ_GT] = ACTIONS(5046), - [anon_sym_switch] = ACTIONS(5046), - [anon_sym_DOT_DOT] = ACTIONS(5046), - [anon_sym_and] = ACTIONS(5046), - [anon_sym_or] = ACTIONS(5048), - [anon_sym_AMP_AMP] = ACTIONS(5046), - [anon_sym_PIPE_PIPE] = ACTIONS(5046), - [anon_sym_QMARK_QMARK] = ACTIONS(5046), - [anon_sym_from] = ACTIONS(5046), - [anon_sym_into] = ACTIONS(5046), - [anon_sym_join] = ACTIONS(5046), - [anon_sym_on] = ACTIONS(5046), - [anon_sym_equals] = ACTIONS(5046), - [anon_sym_let] = ACTIONS(5046), - [anon_sym_orderby] = ACTIONS(5046), - [anon_sym_group] = ACTIONS(5046), - [anon_sym_by] = ACTIONS(5046), - [anon_sym_select] = ACTIONS(5046), - [anon_sym_as] = ACTIONS(5046), - [anon_sym_is] = ACTIONS(5046), - [anon_sym_DASH_GT] = ACTIONS(5046), - [anon_sym_with] = ACTIONS(5046), - [aux_sym_preproc_if_token3] = ACTIONS(5046), - [aux_sym_preproc_else_token1] = ACTIONS(5046), - [aux_sym_preproc_elif_token1] = ACTIONS(5046), + [2994] = { + [sym_preproc_region] = STATE(2994), + [sym_preproc_endregion] = STATE(2994), + [sym_preproc_line] = STATE(2994), + [sym_preproc_pragma] = STATE(2994), + [sym_preproc_nullable] = STATE(2994), + [sym_preproc_error] = STATE(2994), + [sym_preproc_warning] = STATE(2994), + [sym_preproc_define] = STATE(2994), + [sym_preproc_undef] = STATE(2994), + [anon_sym_SEMI] = ACTIONS(2951), + [anon_sym_LBRACK] = ACTIONS(2951), + [anon_sym_COLON] = ACTIONS(2951), + [anon_sym_COMMA] = ACTIONS(2951), + [anon_sym_RBRACK] = ACTIONS(2951), + [anon_sym_LPAREN] = ACTIONS(2951), + [anon_sym_RPAREN] = ACTIONS(2951), + [anon_sym_RBRACE] = ACTIONS(2951), + [anon_sym_LT] = ACTIONS(2949), + [anon_sym_GT] = ACTIONS(2949), + [anon_sym_in] = ACTIONS(2949), + [anon_sym_where] = ACTIONS(2951), + [anon_sym_QMARK] = ACTIONS(2949), + [anon_sym_BANG] = ACTIONS(2949), + [anon_sym_PLUS_PLUS] = ACTIONS(2951), + [anon_sym_DASH_DASH] = ACTIONS(2951), + [anon_sym_PLUS] = ACTIONS(2949), + [anon_sym_DASH] = ACTIONS(2949), + [anon_sym_STAR] = ACTIONS(2951), + [anon_sym_SLASH] = ACTIONS(2949), + [anon_sym_PERCENT] = ACTIONS(2951), + [anon_sym_CARET] = ACTIONS(2951), + [anon_sym_PIPE] = ACTIONS(2949), + [anon_sym_AMP] = ACTIONS(2949), + [anon_sym_LT_LT] = ACTIONS(2951), + [anon_sym_GT_GT] = ACTIONS(2949), + [anon_sym_GT_GT_GT] = ACTIONS(2951), + [anon_sym_EQ_EQ] = ACTIONS(2951), + [anon_sym_BANG_EQ] = ACTIONS(2951), + [anon_sym_GT_EQ] = ACTIONS(2951), + [anon_sym_LT_EQ] = ACTIONS(2951), + [anon_sym_DOT] = ACTIONS(2949), + [anon_sym_EQ_GT] = ACTIONS(2951), + [anon_sym_switch] = ACTIONS(2951), + [anon_sym_DOT_DOT] = ACTIONS(2951), + [anon_sym_and] = ACTIONS(2951), + [anon_sym_or] = ACTIONS(2949), + [anon_sym_AMP_AMP] = ACTIONS(2951), + [anon_sym_PIPE_PIPE] = ACTIONS(2951), + [anon_sym_QMARK_QMARK] = ACTIONS(2951), + [anon_sym_from] = ACTIONS(2951), + [anon_sym_into] = ACTIONS(2951), + [anon_sym_join] = ACTIONS(2951), + [anon_sym_on] = ACTIONS(2951), + [anon_sym_equals] = ACTIONS(2951), + [anon_sym_let] = ACTIONS(2951), + [anon_sym_orderby] = ACTIONS(2951), + [anon_sym_group] = ACTIONS(2951), + [anon_sym_by] = ACTIONS(2951), + [anon_sym_select] = ACTIONS(2951), + [anon_sym_as] = ACTIONS(2951), + [anon_sym_is] = ACTIONS(2951), + [anon_sym_DASH_GT] = ACTIONS(2951), + [anon_sym_with] = ACTIONS(2951), + [aux_sym_preproc_if_token3] = ACTIONS(2951), + [aux_sym_preproc_else_token1] = ACTIONS(2951), + [aux_sym_preproc_elif_token1] = ACTIONS(2951), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -470284,73 +469364,541 @@ 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), - [anon_sym_SEMI] = ACTIONS(5050), - [anon_sym_LBRACK] = ACTIONS(5050), - [anon_sym_COLON] = ACTIONS(5050), - [anon_sym_COMMA] = ACTIONS(5050), - [anon_sym_RBRACK] = ACTIONS(5050), - [anon_sym_LPAREN] = ACTIONS(5050), - [anon_sym_RPAREN] = ACTIONS(5050), - [anon_sym_RBRACE] = ACTIONS(5050), - [anon_sym_LT] = ACTIONS(5052), - [anon_sym_GT] = ACTIONS(5052), - [anon_sym_in] = ACTIONS(5052), - [anon_sym_where] = ACTIONS(5050), - [anon_sym_QMARK] = ACTIONS(5052), - [anon_sym_BANG] = ACTIONS(5052), - [anon_sym_PLUS_PLUS] = ACTIONS(5050), - [anon_sym_DASH_DASH] = ACTIONS(5050), - [anon_sym_PLUS] = ACTIONS(5052), - [anon_sym_DASH] = ACTIONS(5052), - [anon_sym_STAR] = ACTIONS(5050), - [anon_sym_SLASH] = ACTIONS(5052), - [anon_sym_PERCENT] = ACTIONS(5050), - [anon_sym_CARET] = ACTIONS(5050), - [anon_sym_PIPE] = ACTIONS(5052), - [anon_sym_AMP] = ACTIONS(5052), - [anon_sym_LT_LT] = ACTIONS(5050), - [anon_sym_GT_GT] = ACTIONS(5052), - [anon_sym_GT_GT_GT] = ACTIONS(5050), - [anon_sym_EQ_EQ] = ACTIONS(5050), - [anon_sym_BANG_EQ] = ACTIONS(5050), - [anon_sym_GT_EQ] = ACTIONS(5050), - [anon_sym_LT_EQ] = ACTIONS(5050), - [anon_sym_DOT] = ACTIONS(5052), - [anon_sym_EQ_GT] = ACTIONS(5050), - [anon_sym_switch] = ACTIONS(5050), - [anon_sym_DOT_DOT] = ACTIONS(5050), - [anon_sym_and] = ACTIONS(5050), - [anon_sym_or] = ACTIONS(5052), - [anon_sym_AMP_AMP] = ACTIONS(5050), - [anon_sym_PIPE_PIPE] = ACTIONS(5050), - [anon_sym_QMARK_QMARK] = ACTIONS(5050), - [anon_sym_from] = ACTIONS(5050), - [anon_sym_into] = ACTIONS(5050), - [anon_sym_join] = ACTIONS(5050), - [anon_sym_on] = ACTIONS(5050), - [anon_sym_equals] = ACTIONS(5050), - [anon_sym_let] = ACTIONS(5050), - [anon_sym_orderby] = ACTIONS(5050), - [anon_sym_group] = ACTIONS(5050), - [anon_sym_by] = ACTIONS(5050), - [anon_sym_select] = ACTIONS(5050), - [anon_sym_as] = ACTIONS(5050), - [anon_sym_is] = ACTIONS(5050), - [anon_sym_DASH_GT] = ACTIONS(5050), - [anon_sym_with] = ACTIONS(5050), - [aux_sym_preproc_if_token3] = ACTIONS(5050), - [aux_sym_preproc_else_token1] = ACTIONS(5050), - [aux_sym_preproc_elif_token1] = ACTIONS(5050), + [2995] = { + [sym_preproc_region] = STATE(2995), + [sym_preproc_endregion] = STATE(2995), + [sym_preproc_line] = STATE(2995), + [sym_preproc_pragma] = STATE(2995), + [sym_preproc_nullable] = STATE(2995), + [sym_preproc_error] = STATE(2995), + [sym_preproc_warning] = STATE(2995), + [sym_preproc_define] = STATE(2995), + [sym_preproc_undef] = STATE(2995), + [anon_sym_SEMI] = ACTIONS(3139), + [anon_sym_LBRACK] = ACTIONS(3139), + [anon_sym_COLON] = ACTIONS(3139), + [anon_sym_COMMA] = ACTIONS(3139), + [anon_sym_RBRACK] = ACTIONS(3139), + [anon_sym_LPAREN] = ACTIONS(3139), + [anon_sym_RPAREN] = ACTIONS(3139), + [anon_sym_RBRACE] = ACTIONS(3139), + [anon_sym_LT] = ACTIONS(3137), + [anon_sym_GT] = ACTIONS(3137), + [anon_sym_in] = ACTIONS(3137), + [anon_sym_where] = ACTIONS(3139), + [anon_sym_QMARK] = ACTIONS(3137), + [anon_sym_BANG] = ACTIONS(3137), + [anon_sym_PLUS_PLUS] = ACTIONS(3139), + [anon_sym_DASH_DASH] = ACTIONS(3139), + [anon_sym_PLUS] = ACTIONS(3137), + [anon_sym_DASH] = ACTIONS(3137), + [anon_sym_STAR] = ACTIONS(3139), + [anon_sym_SLASH] = ACTIONS(3137), + [anon_sym_PERCENT] = ACTIONS(3139), + [anon_sym_CARET] = ACTIONS(3139), + [anon_sym_PIPE] = ACTIONS(3137), + [anon_sym_AMP] = ACTIONS(3137), + [anon_sym_LT_LT] = ACTIONS(3139), + [anon_sym_GT_GT] = ACTIONS(3137), + [anon_sym_GT_GT_GT] = ACTIONS(3139), + [anon_sym_EQ_EQ] = ACTIONS(3139), + [anon_sym_BANG_EQ] = ACTIONS(3139), + [anon_sym_GT_EQ] = ACTIONS(3139), + [anon_sym_LT_EQ] = ACTIONS(3139), + [anon_sym_DOT] = ACTIONS(3137), + [anon_sym_EQ_GT] = ACTIONS(3139), + [anon_sym_switch] = ACTIONS(3139), + [anon_sym_DOT_DOT] = ACTIONS(3139), + [anon_sym_and] = ACTIONS(3139), + [anon_sym_or] = ACTIONS(3137), + [anon_sym_AMP_AMP] = ACTIONS(3139), + [anon_sym_PIPE_PIPE] = ACTIONS(3139), + [anon_sym_QMARK_QMARK] = ACTIONS(3139), + [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_group] = ACTIONS(3139), + [anon_sym_by] = ACTIONS(3139), + [anon_sym_select] = ACTIONS(3139), + [anon_sym_as] = ACTIONS(3139), + [anon_sym_is] = ACTIONS(3139), + [anon_sym_DASH_GT] = ACTIONS(3139), + [anon_sym_with] = ACTIONS(3139), + [aux_sym_preproc_if_token3] = ACTIONS(3139), + [aux_sym_preproc_else_token1] = ACTIONS(3139), + [aux_sym_preproc_elif_token1] = ACTIONS(3139), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + }, + [2996] = { + [sym_preproc_region] = STATE(2996), + [sym_preproc_endregion] = STATE(2996), + [sym_preproc_line] = STATE(2996), + [sym_preproc_pragma] = STATE(2996), + [sym_preproc_nullable] = STATE(2996), + [sym_preproc_error] = STATE(2996), + [sym_preproc_warning] = STATE(2996), + [sym_preproc_define] = STATE(2996), + [sym_preproc_undef] = STATE(2996), + [anon_sym_SEMI] = ACTIONS(5036), + [anon_sym_LBRACK] = ACTIONS(5036), + [anon_sym_COLON] = ACTIONS(5036), + [anon_sym_COMMA] = ACTIONS(5036), + [anon_sym_RBRACK] = ACTIONS(5036), + [anon_sym_LPAREN] = ACTIONS(5036), + [anon_sym_RPAREN] = ACTIONS(5036), + [anon_sym_RBRACE] = ACTIONS(5036), + [anon_sym_LT] = ACTIONS(5038), + [anon_sym_GT] = ACTIONS(5038), + [anon_sym_in] = ACTIONS(5038), + [anon_sym_where] = ACTIONS(5036), + [anon_sym_QMARK] = ACTIONS(5038), + [anon_sym_BANG] = ACTIONS(5038), + [anon_sym_PLUS_PLUS] = ACTIONS(5036), + [anon_sym_DASH_DASH] = ACTIONS(5036), + [anon_sym_PLUS] = ACTIONS(5038), + [anon_sym_DASH] = ACTIONS(5038), + [anon_sym_STAR] = ACTIONS(5036), + [anon_sym_SLASH] = ACTIONS(5038), + [anon_sym_PERCENT] = ACTIONS(5036), + [anon_sym_CARET] = ACTIONS(5036), + [anon_sym_PIPE] = ACTIONS(5038), + [anon_sym_AMP] = ACTIONS(5038), + [anon_sym_LT_LT] = ACTIONS(5036), + [anon_sym_GT_GT] = ACTIONS(5038), + [anon_sym_GT_GT_GT] = ACTIONS(5036), + [anon_sym_EQ_EQ] = ACTIONS(5036), + [anon_sym_BANG_EQ] = ACTIONS(5036), + [anon_sym_GT_EQ] = ACTIONS(5036), + [anon_sym_LT_EQ] = ACTIONS(5036), + [anon_sym_DOT] = ACTIONS(5038), + [anon_sym_EQ_GT] = ACTIONS(5036), + [anon_sym_switch] = ACTIONS(5036), + [anon_sym_DOT_DOT] = ACTIONS(5036), + [anon_sym_and] = ACTIONS(5036), + [anon_sym_or] = ACTIONS(5038), + [anon_sym_AMP_AMP] = ACTIONS(5036), + [anon_sym_PIPE_PIPE] = ACTIONS(5036), + [anon_sym_QMARK_QMARK] = ACTIONS(5036), + [anon_sym_from] = ACTIONS(5036), + [anon_sym_into] = ACTIONS(5036), + [anon_sym_join] = ACTIONS(5036), + [anon_sym_on] = ACTIONS(5036), + [anon_sym_equals] = ACTIONS(5036), + [anon_sym_let] = ACTIONS(5036), + [anon_sym_orderby] = ACTIONS(5036), + [anon_sym_group] = ACTIONS(5036), + [anon_sym_by] = ACTIONS(5036), + [anon_sym_select] = ACTIONS(5036), + [anon_sym_as] = ACTIONS(5036), + [anon_sym_is] = ACTIONS(5036), + [anon_sym_DASH_GT] = ACTIONS(5036), + [anon_sym_with] = ACTIONS(5036), + [aux_sym_preproc_if_token3] = ACTIONS(5036), + [aux_sym_preproc_else_token1] = ACTIONS(5036), + [aux_sym_preproc_elif_token1] = ACTIONS(5036), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + }, + [2997] = { + [sym_preproc_region] = STATE(2997), + [sym_preproc_endregion] = STATE(2997), + [sym_preproc_line] = STATE(2997), + [sym_preproc_pragma] = STATE(2997), + [sym_preproc_nullable] = STATE(2997), + [sym_preproc_error] = STATE(2997), + [sym_preproc_warning] = STATE(2997), + [sym_preproc_define] = STATE(2997), + [sym_preproc_undef] = STATE(2997), + [anon_sym_SEMI] = ACTIONS(5040), + [anon_sym_LBRACK] = ACTIONS(5040), + [anon_sym_COLON] = ACTIONS(5040), + [anon_sym_COMMA] = ACTIONS(5040), + [anon_sym_RBRACK] = ACTIONS(5040), + [anon_sym_LPAREN] = ACTIONS(5040), + [anon_sym_RPAREN] = ACTIONS(5040), + [anon_sym_RBRACE] = ACTIONS(5040), + [anon_sym_LT] = ACTIONS(5042), + [anon_sym_GT] = ACTIONS(5042), + [anon_sym_in] = ACTIONS(5042), + [anon_sym_where] = ACTIONS(5040), + [anon_sym_QMARK] = ACTIONS(5042), + [anon_sym_BANG] = ACTIONS(5042), + [anon_sym_PLUS_PLUS] = ACTIONS(5040), + [anon_sym_DASH_DASH] = ACTIONS(5040), + [anon_sym_PLUS] = ACTIONS(5042), + [anon_sym_DASH] = ACTIONS(5042), + [anon_sym_STAR] = ACTIONS(5040), + [anon_sym_SLASH] = ACTIONS(5042), + [anon_sym_PERCENT] = ACTIONS(5040), + [anon_sym_CARET] = ACTIONS(5040), + [anon_sym_PIPE] = ACTIONS(5042), + [anon_sym_AMP] = ACTIONS(5042), + [anon_sym_LT_LT] = ACTIONS(5040), + [anon_sym_GT_GT] = ACTIONS(5042), + [anon_sym_GT_GT_GT] = ACTIONS(5040), + [anon_sym_EQ_EQ] = ACTIONS(5040), + [anon_sym_BANG_EQ] = ACTIONS(5040), + [anon_sym_GT_EQ] = ACTIONS(5040), + [anon_sym_LT_EQ] = ACTIONS(5040), + [anon_sym_DOT] = ACTIONS(5042), + [anon_sym_EQ_GT] = ACTIONS(5040), + [anon_sym_switch] = ACTIONS(5040), + [anon_sym_DOT_DOT] = ACTIONS(5040), + [anon_sym_and] = ACTIONS(5040), + [anon_sym_or] = ACTIONS(5042), + [anon_sym_AMP_AMP] = ACTIONS(5040), + [anon_sym_PIPE_PIPE] = ACTIONS(5040), + [anon_sym_QMARK_QMARK] = ACTIONS(5040), + [anon_sym_from] = ACTIONS(5040), + [anon_sym_into] = ACTIONS(5040), + [anon_sym_join] = ACTIONS(5040), + [anon_sym_on] = ACTIONS(5040), + [anon_sym_equals] = ACTIONS(5040), + [anon_sym_let] = ACTIONS(5040), + [anon_sym_orderby] = ACTIONS(5040), + [anon_sym_group] = ACTIONS(5040), + [anon_sym_by] = ACTIONS(5040), + [anon_sym_select] = ACTIONS(5040), + [anon_sym_as] = ACTIONS(5040), + [anon_sym_is] = ACTIONS(5040), + [anon_sym_DASH_GT] = ACTIONS(5040), + [anon_sym_with] = ACTIONS(5040), + [aux_sym_preproc_if_token3] = ACTIONS(5040), + [aux_sym_preproc_else_token1] = ACTIONS(5040), + [aux_sym_preproc_elif_token1] = ACTIONS(5040), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + }, + [2998] = { + [sym_preproc_region] = STATE(2998), + [sym_preproc_endregion] = STATE(2998), + [sym_preproc_line] = STATE(2998), + [sym_preproc_pragma] = STATE(2998), + [sym_preproc_nullable] = STATE(2998), + [sym_preproc_error] = STATE(2998), + [sym_preproc_warning] = STATE(2998), + [sym_preproc_define] = STATE(2998), + [sym_preproc_undef] = STATE(2998), + [anon_sym_SEMI] = ACTIONS(2127), + [anon_sym_LBRACK] = ACTIONS(2127), + [anon_sym_COLON] = ACTIONS(2127), + [anon_sym_COMMA] = ACTIONS(2127), + [anon_sym_RBRACK] = ACTIONS(2127), + [anon_sym_LPAREN] = ACTIONS(2127), + [anon_sym_RPAREN] = ACTIONS(2127), + [anon_sym_RBRACE] = ACTIONS(2127), + [anon_sym_LT] = ACTIONS(2129), + [anon_sym_GT] = ACTIONS(2129), + [anon_sym_in] = ACTIONS(2129), + [anon_sym_where] = ACTIONS(2127), + [anon_sym_QMARK] = ACTIONS(2129), + [anon_sym_BANG] = ACTIONS(2129), + [anon_sym_PLUS_PLUS] = ACTIONS(2127), + [anon_sym_DASH_DASH] = ACTIONS(2127), + [anon_sym_PLUS] = ACTIONS(2129), + [anon_sym_DASH] = ACTIONS(2129), + [anon_sym_STAR] = ACTIONS(2127), + [anon_sym_SLASH] = ACTIONS(2129), + [anon_sym_PERCENT] = ACTIONS(2127), + [anon_sym_CARET] = ACTIONS(2127), + [anon_sym_PIPE] = ACTIONS(2129), + [anon_sym_AMP] = ACTIONS(2129), + [anon_sym_LT_LT] = ACTIONS(2127), + [anon_sym_GT_GT] = ACTIONS(2129), + [anon_sym_GT_GT_GT] = ACTIONS(2127), + [anon_sym_EQ_EQ] = ACTIONS(2127), + [anon_sym_BANG_EQ] = ACTIONS(2127), + [anon_sym_GT_EQ] = ACTIONS(2127), + [anon_sym_LT_EQ] = ACTIONS(2127), + [anon_sym_DOT] = ACTIONS(2129), + [anon_sym_EQ_GT] = ACTIONS(2127), + [anon_sym_switch] = ACTIONS(2127), + [anon_sym_DOT_DOT] = ACTIONS(2127), + [anon_sym_and] = ACTIONS(2127), + [anon_sym_or] = ACTIONS(2129), + [anon_sym_AMP_AMP] = ACTIONS(2127), + [anon_sym_PIPE_PIPE] = ACTIONS(2127), + [anon_sym_QMARK_QMARK] = ACTIONS(2127), + [anon_sym_from] = ACTIONS(2127), + [anon_sym_into] = ACTIONS(2127), + [anon_sym_join] = ACTIONS(2127), + [anon_sym_on] = ACTIONS(2127), + [anon_sym_equals] = ACTIONS(2127), + [anon_sym_let] = ACTIONS(2127), + [anon_sym_orderby] = ACTIONS(2127), + [anon_sym_group] = ACTIONS(2127), + [anon_sym_by] = ACTIONS(2127), + [anon_sym_select] = ACTIONS(2127), + [anon_sym_as] = ACTIONS(2127), + [anon_sym_is] = ACTIONS(2127), + [anon_sym_DASH_GT] = ACTIONS(2127), + [anon_sym_with] = ACTIONS(2127), + [aux_sym_preproc_if_token3] = ACTIONS(2127), + [aux_sym_preproc_else_token1] = ACTIONS(2127), + [aux_sym_preproc_elif_token1] = ACTIONS(2127), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + }, + [2999] = { + [sym_preproc_region] = STATE(2999), + [sym_preproc_endregion] = STATE(2999), + [sym_preproc_line] = STATE(2999), + [sym_preproc_pragma] = STATE(2999), + [sym_preproc_nullable] = STATE(2999), + [sym_preproc_error] = STATE(2999), + [sym_preproc_warning] = STATE(2999), + [sym_preproc_define] = STATE(2999), + [sym_preproc_undef] = STATE(2999), + [anon_sym_SEMI] = ACTIONS(3657), + [anon_sym_LBRACK] = ACTIONS(3657), + [anon_sym_COLON] = ACTIONS(3657), + [anon_sym_COMMA] = ACTIONS(3657), + [anon_sym_RBRACK] = ACTIONS(3657), + [anon_sym_LPAREN] = ACTIONS(3657), + [anon_sym_RPAREN] = ACTIONS(3657), + [anon_sym_LBRACE] = ACTIONS(3657), + [anon_sym_RBRACE] = ACTIONS(3657), + [anon_sym_LT] = ACTIONS(3655), + [anon_sym_GT] = ACTIONS(3655), + [anon_sym_in] = ACTIONS(3657), + [anon_sym_where] = ACTIONS(3657), + [anon_sym_QMARK] = ACTIONS(3655), + [anon_sym_BANG] = ACTIONS(3655), + [anon_sym_PLUS_PLUS] = ACTIONS(3657), + [anon_sym_DASH_DASH] = ACTIONS(3657), + [anon_sym_PLUS] = ACTIONS(3655), + [anon_sym_DASH] = ACTIONS(3655), + [anon_sym_STAR] = ACTIONS(3657), + [anon_sym_SLASH] = ACTIONS(3655), + [anon_sym_PERCENT] = ACTIONS(3657), + [anon_sym_CARET] = ACTIONS(3657), + [anon_sym_PIPE] = ACTIONS(3655), + [anon_sym_AMP] = ACTIONS(3655), + [anon_sym_LT_LT] = ACTIONS(3657), + [anon_sym_GT_GT] = ACTIONS(3655), + [anon_sym_GT_GT_GT] = ACTIONS(3657), + [anon_sym_EQ_EQ] = ACTIONS(3657), + [anon_sym_BANG_EQ] = ACTIONS(3657), + [anon_sym_GT_EQ] = ACTIONS(3657), + [anon_sym_LT_EQ] = ACTIONS(3657), + [anon_sym_DOT] = ACTIONS(3655), + [anon_sym_EQ_GT] = ACTIONS(3657), + [anon_sym_switch] = ACTIONS(3657), + [anon_sym_DOT_DOT] = ACTIONS(3657), + [anon_sym_and] = ACTIONS(3657), + [anon_sym_or] = ACTIONS(3655), + [anon_sym_AMP_AMP] = ACTIONS(3657), + [anon_sym_PIPE_PIPE] = ACTIONS(3657), + [anon_sym_QMARK_QMARK] = ACTIONS(3657), + [anon_sym_from] = ACTIONS(3657), + [anon_sym_join] = ACTIONS(3657), + [anon_sym_on] = ACTIONS(3657), + [anon_sym_equals] = ACTIONS(3657), + [anon_sym_let] = ACTIONS(3657), + [anon_sym_orderby] = ACTIONS(3657), + [anon_sym_group] = ACTIONS(3657), + [anon_sym_by] = ACTIONS(3657), + [anon_sym_select] = ACTIONS(3657), + [anon_sym_as] = ACTIONS(3657), + [anon_sym_is] = ACTIONS(3657), + [anon_sym_DASH_GT] = ACTIONS(3657), + [anon_sym_with] = ACTIONS(3657), + [aux_sym_preproc_if_token3] = ACTIONS(3657), + [aux_sym_preproc_else_token1] = ACTIONS(3657), + [aux_sym_preproc_elif_token1] = ACTIONS(3657), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_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(3978), + [anon_sym_LBRACK] = ACTIONS(3978), + [anon_sym_COLON] = ACTIONS(3978), + [anon_sym_COMMA] = ACTIONS(3978), + [anon_sym_RBRACK] = ACTIONS(3978), + [anon_sym_LPAREN] = ACTIONS(3978), + [anon_sym_RPAREN] = ACTIONS(3978), + [anon_sym_LBRACE] = ACTIONS(3978), + [anon_sym_RBRACE] = ACTIONS(3978), + [anon_sym_LT] = ACTIONS(3976), + [anon_sym_GT] = ACTIONS(3976), + [anon_sym_in] = ACTIONS(3978), + [anon_sym_where] = ACTIONS(3978), + [anon_sym_QMARK] = ACTIONS(3976), + [anon_sym_BANG] = ACTIONS(3976), + [anon_sym_PLUS_PLUS] = ACTIONS(3978), + [anon_sym_DASH_DASH] = ACTIONS(3978), + [anon_sym_PLUS] = ACTIONS(3976), + [anon_sym_DASH] = ACTIONS(3976), + [anon_sym_STAR] = ACTIONS(3978), + [anon_sym_SLASH] = ACTIONS(3976), + [anon_sym_PERCENT] = ACTIONS(3978), + [anon_sym_CARET] = ACTIONS(3978), + [anon_sym_PIPE] = ACTIONS(3976), + [anon_sym_AMP] = ACTIONS(3976), + [anon_sym_LT_LT] = ACTIONS(3978), + [anon_sym_GT_GT] = ACTIONS(3976), + [anon_sym_GT_GT_GT] = ACTIONS(3978), + [anon_sym_EQ_EQ] = ACTIONS(3978), + [anon_sym_BANG_EQ] = ACTIONS(3978), + [anon_sym_GT_EQ] = ACTIONS(3978), + [anon_sym_LT_EQ] = ACTIONS(3978), + [anon_sym_DOT] = ACTIONS(3976), + [anon_sym_EQ_GT] = ACTIONS(3978), + [anon_sym_switch] = ACTIONS(3978), + [anon_sym_DOT_DOT] = ACTIONS(3978), + [anon_sym_and] = ACTIONS(3978), + [anon_sym_or] = ACTIONS(3976), + [anon_sym_AMP_AMP] = ACTIONS(3978), + [anon_sym_PIPE_PIPE] = ACTIONS(3978), + [anon_sym_QMARK_QMARK] = ACTIONS(3978), + [anon_sym_from] = ACTIONS(3978), + [anon_sym_join] = ACTIONS(3978), + [anon_sym_on] = ACTIONS(3978), + [anon_sym_equals] = ACTIONS(3978), + [anon_sym_let] = ACTIONS(3978), + [anon_sym_orderby] = ACTIONS(3978), + [anon_sym_group] = ACTIONS(3978), + [anon_sym_by] = ACTIONS(3978), + [anon_sym_select] = ACTIONS(3978), + [anon_sym_as] = ACTIONS(3978), + [anon_sym_is] = ACTIONS(3978), + [anon_sym_DASH_GT] = ACTIONS(3978), + [anon_sym_with] = ACTIONS(3978), + [aux_sym_preproc_if_token3] = ACTIONS(3978), + [aux_sym_preproc_else_token1] = ACTIONS(3978), + [aux_sym_preproc_elif_token1] = ACTIONS(3978), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_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(3994), + [anon_sym_LBRACK] = ACTIONS(3994), + [anon_sym_COLON] = ACTIONS(3994), + [anon_sym_COMMA] = ACTIONS(3994), + [anon_sym_RBRACK] = ACTIONS(3994), + [anon_sym_LPAREN] = ACTIONS(3994), + [anon_sym_RPAREN] = ACTIONS(3994), + [anon_sym_LBRACE] = ACTIONS(3994), + [anon_sym_RBRACE] = ACTIONS(3994), + [anon_sym_LT] = ACTIONS(3992), + [anon_sym_GT] = ACTIONS(3992), + [anon_sym_in] = ACTIONS(3994), + [anon_sym_where] = ACTIONS(3994), + [anon_sym_QMARK] = ACTIONS(3992), + [anon_sym_BANG] = ACTIONS(3992), + [anon_sym_PLUS_PLUS] = ACTIONS(3994), + [anon_sym_DASH_DASH] = ACTIONS(3994), + [anon_sym_PLUS] = ACTIONS(3992), + [anon_sym_DASH] = ACTIONS(3992), + [anon_sym_STAR] = ACTIONS(3994), + [anon_sym_SLASH] = ACTIONS(3992), + [anon_sym_PERCENT] = ACTIONS(3994), + [anon_sym_CARET] = ACTIONS(3994), + [anon_sym_PIPE] = ACTIONS(3992), + [anon_sym_AMP] = ACTIONS(3992), + [anon_sym_LT_LT] = ACTIONS(3994), + [anon_sym_GT_GT] = ACTIONS(3992), + [anon_sym_GT_GT_GT] = ACTIONS(3994), + [anon_sym_EQ_EQ] = ACTIONS(3994), + [anon_sym_BANG_EQ] = ACTIONS(3994), + [anon_sym_GT_EQ] = ACTIONS(3994), + [anon_sym_LT_EQ] = ACTIONS(3994), + [anon_sym_DOT] = ACTIONS(3992), + [anon_sym_EQ_GT] = ACTIONS(3994), + [anon_sym_switch] = ACTIONS(3994), + [anon_sym_DOT_DOT] = ACTIONS(3994), + [anon_sym_and] = ACTIONS(3994), + [anon_sym_or] = ACTIONS(3992), + [anon_sym_AMP_AMP] = ACTIONS(3994), + [anon_sym_PIPE_PIPE] = ACTIONS(3994), + [anon_sym_QMARK_QMARK] = ACTIONS(3994), + [anon_sym_from] = ACTIONS(3994), + [anon_sym_join] = ACTIONS(3994), + [anon_sym_on] = ACTIONS(3994), + [anon_sym_equals] = ACTIONS(3994), + [anon_sym_let] = ACTIONS(3994), + [anon_sym_orderby] = ACTIONS(3994), + [anon_sym_group] = ACTIONS(3994), + [anon_sym_by] = ACTIONS(3994), + [anon_sym_select] = ACTIONS(3994), + [anon_sym_as] = ACTIONS(3994), + [anon_sym_is] = ACTIONS(3994), + [anon_sym_DASH_GT] = ACTIONS(3994), + [anon_sym_with] = ACTIONS(3994), + [aux_sym_preproc_if_token3] = ACTIONS(3994), + [aux_sym_preproc_else_token1] = ACTIONS(3994), + [aux_sym_preproc_elif_token1] = ACTIONS(3994), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -470372,63 +469920,63 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3002), [sym_preproc_define] = STATE(3002), [sym_preproc_undef] = STATE(3002), - [anon_sym_SEMI] = ACTIONS(3656), - [anon_sym_LBRACK] = ACTIONS(3656), - [anon_sym_COLON] = ACTIONS(3656), - [anon_sym_COMMA] = ACTIONS(3656), - [anon_sym_RBRACK] = ACTIONS(3656), - [anon_sym_LPAREN] = ACTIONS(3656), - [anon_sym_RPAREN] = ACTIONS(3656), - [anon_sym_LBRACE] = ACTIONS(3656), - [anon_sym_RBRACE] = ACTIONS(3656), - [anon_sym_LT] = ACTIONS(3654), - [anon_sym_GT] = ACTIONS(3654), - [anon_sym_in] = ACTIONS(3656), - [anon_sym_where] = ACTIONS(3656), - [anon_sym_QMARK] = ACTIONS(3654), - [anon_sym_BANG] = ACTIONS(3654), - [anon_sym_PLUS_PLUS] = ACTIONS(3656), - [anon_sym_DASH_DASH] = ACTIONS(3656), - [anon_sym_PLUS] = ACTIONS(3654), - [anon_sym_DASH] = ACTIONS(3654), - [anon_sym_STAR] = ACTIONS(3656), - [anon_sym_SLASH] = ACTIONS(3654), - [anon_sym_PERCENT] = ACTIONS(3656), - [anon_sym_CARET] = ACTIONS(3656), - [anon_sym_PIPE] = ACTIONS(3654), - [anon_sym_AMP] = ACTIONS(3654), - [anon_sym_LT_LT] = ACTIONS(3656), - [anon_sym_GT_GT] = ACTIONS(3654), - [anon_sym_GT_GT_GT] = ACTIONS(3656), - [anon_sym_EQ_EQ] = ACTIONS(3656), - [anon_sym_BANG_EQ] = ACTIONS(3656), - [anon_sym_GT_EQ] = ACTIONS(3656), - [anon_sym_LT_EQ] = ACTIONS(3656), - [anon_sym_DOT] = ACTIONS(3654), - [anon_sym_EQ_GT] = ACTIONS(3656), - [anon_sym_switch] = ACTIONS(3656), - [anon_sym_DOT_DOT] = ACTIONS(3656), - [anon_sym_and] = ACTIONS(3656), - [anon_sym_or] = ACTIONS(3654), - [anon_sym_AMP_AMP] = ACTIONS(3656), - [anon_sym_PIPE_PIPE] = ACTIONS(3656), - [anon_sym_QMARK_QMARK] = ACTIONS(3656), - [anon_sym_from] = ACTIONS(3656), - [anon_sym_join] = ACTIONS(3656), - [anon_sym_on] = ACTIONS(3656), - [anon_sym_equals] = ACTIONS(3656), - [anon_sym_let] = ACTIONS(3656), - [anon_sym_orderby] = ACTIONS(3656), - [anon_sym_group] = ACTIONS(3656), - [anon_sym_by] = ACTIONS(3656), - [anon_sym_select] = ACTIONS(3656), - [anon_sym_as] = ACTIONS(3656), - [anon_sym_is] = ACTIONS(3656), - [anon_sym_DASH_GT] = ACTIONS(3656), - [anon_sym_with] = ACTIONS(3656), - [aux_sym_preproc_if_token3] = ACTIONS(3656), - [aux_sym_preproc_else_token1] = ACTIONS(3656), - [aux_sym_preproc_elif_token1] = ACTIONS(3656), + [anon_sym_SEMI] = ACTIONS(5044), + [anon_sym_LBRACK] = ACTIONS(5044), + [anon_sym_COLON] = ACTIONS(5044), + [anon_sym_COMMA] = ACTIONS(5044), + [anon_sym_RBRACK] = ACTIONS(5044), + [anon_sym_LPAREN] = ACTIONS(5044), + [anon_sym_RPAREN] = ACTIONS(5044), + [anon_sym_RBRACE] = ACTIONS(5044), + [anon_sym_LT] = ACTIONS(5046), + [anon_sym_GT] = ACTIONS(5046), + [anon_sym_in] = ACTIONS(5046), + [anon_sym_where] = ACTIONS(5044), + [anon_sym_QMARK] = ACTIONS(5046), + [anon_sym_BANG] = ACTIONS(5046), + [anon_sym_PLUS_PLUS] = ACTIONS(5044), + [anon_sym_DASH_DASH] = ACTIONS(5044), + [anon_sym_PLUS] = ACTIONS(5046), + [anon_sym_DASH] = ACTIONS(5046), + [anon_sym_STAR] = ACTIONS(5044), + [anon_sym_SLASH] = ACTIONS(5046), + [anon_sym_PERCENT] = ACTIONS(5044), + [anon_sym_CARET] = ACTIONS(5044), + [anon_sym_PIPE] = ACTIONS(5046), + [anon_sym_AMP] = ACTIONS(5046), + [anon_sym_LT_LT] = ACTIONS(5044), + [anon_sym_GT_GT] = ACTIONS(5046), + [anon_sym_GT_GT_GT] = ACTIONS(5044), + [anon_sym_EQ_EQ] = ACTIONS(5044), + [anon_sym_BANG_EQ] = ACTIONS(5044), + [anon_sym_GT_EQ] = ACTIONS(5044), + [anon_sym_LT_EQ] = ACTIONS(5044), + [anon_sym_DOT] = ACTIONS(5046), + [anon_sym_EQ_GT] = ACTIONS(5044), + [anon_sym_switch] = ACTIONS(5044), + [anon_sym_DOT_DOT] = ACTIONS(5044), + [anon_sym_and] = ACTIONS(5044), + [anon_sym_or] = ACTIONS(5046), + [anon_sym_AMP_AMP] = ACTIONS(5044), + [anon_sym_PIPE_PIPE] = ACTIONS(5044), + [anon_sym_QMARK_QMARK] = ACTIONS(5044), + [anon_sym_from] = ACTIONS(5044), + [anon_sym_into] = ACTIONS(5044), + [anon_sym_join] = ACTIONS(5044), + [anon_sym_on] = ACTIONS(5044), + [anon_sym_equals] = ACTIONS(5044), + [anon_sym_let] = ACTIONS(5044), + [anon_sym_orderby] = ACTIONS(5044), + [anon_sym_group] = ACTIONS(5044), + [anon_sym_by] = ACTIONS(5044), + [anon_sym_select] = ACTIONS(5044), + [anon_sym_as] = ACTIONS(5044), + [anon_sym_is] = ACTIONS(5044), + [anon_sym_DASH_GT] = ACTIONS(5044), + [anon_sym_with] = ACTIONS(5044), + [aux_sym_preproc_if_token3] = ACTIONS(5044), + [aux_sym_preproc_else_token1] = ACTIONS(5044), + [aux_sym_preproc_elif_token1] = ACTIONS(5044), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -470450,63 +469998,63 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3003), [sym_preproc_define] = STATE(3003), [sym_preproc_undef] = STATE(3003), - [sym__identifier_token] = ACTIONS(3782), - [anon_sym_extern] = ACTIONS(3782), - [anon_sym_alias] = ACTIONS(3782), - [anon_sym_global] = ACTIONS(3782), - [anon_sym_unsafe] = ACTIONS(3782), - [anon_sym_static] = ACTIONS(3782), - [anon_sym_LBRACK] = ACTIONS(3784), - [anon_sym_LPAREN] = ACTIONS(3784), - [anon_sym_event] = ACTIONS(3782), - [anon_sym_class] = ACTIONS(3782), - [anon_sym_ref] = ACTIONS(3782), - [anon_sym_struct] = ACTIONS(3782), - [anon_sym_enum] = ACTIONS(3782), - [anon_sym_interface] = ACTIONS(3782), - [anon_sym_delegate] = ACTIONS(3782), - [anon_sym_record] = ACTIONS(3782), - [anon_sym_abstract] = ACTIONS(3782), - [anon_sym_async] = ACTIONS(3782), - [anon_sym_const] = ACTIONS(3782), - [anon_sym_file] = ACTIONS(3782), - [anon_sym_fixed] = ACTIONS(3782), - [anon_sym_internal] = ACTIONS(3782), - [anon_sym_new] = ACTIONS(3782), - [anon_sym_override] = ACTIONS(3782), - [anon_sym_partial] = ACTIONS(3782), - [anon_sym_private] = ACTIONS(3782), - [anon_sym_protected] = ACTIONS(3782), - [anon_sym_public] = ACTIONS(3782), - [anon_sym_readonly] = ACTIONS(3782), - [anon_sym_required] = ACTIONS(3782), - [anon_sym_sealed] = ACTIONS(3782), - [anon_sym_virtual] = ACTIONS(3782), - [anon_sym_volatile] = ACTIONS(3782), - [anon_sym_where] = ACTIONS(3782), - [anon_sym_notnull] = ACTIONS(3782), - [anon_sym_unmanaged] = ACTIONS(3782), - [anon_sym_TILDE] = ACTIONS(3784), - [anon_sym_implicit] = ACTIONS(3782), - [anon_sym_explicit] = ACTIONS(3782), - [anon_sym_scoped] = ACTIONS(3782), - [anon_sym_var] = ACTIONS(3782), - [sym_predefined_type] = ACTIONS(3782), - [anon_sym_yield] = ACTIONS(3782), - [anon_sym_when] = ACTIONS(3782), - [anon_sym_from] = ACTIONS(3782), - [anon_sym_into] = ACTIONS(3782), - [anon_sym_join] = ACTIONS(3782), - [anon_sym_on] = ACTIONS(3782), - [anon_sym_equals] = ACTIONS(3782), - [anon_sym_let] = ACTIONS(3782), - [anon_sym_orderby] = ACTIONS(3782), - [anon_sym_ascending] = ACTIONS(3782), - [anon_sym_descending] = ACTIONS(3782), - [anon_sym_group] = ACTIONS(3782), - [anon_sym_by] = ACTIONS(3782), - [anon_sym_select] = ACTIONS(3782), - [aux_sym_preproc_if_token1] = ACTIONS(3784), + [anon_sym_SEMI] = ACTIONS(5048), + [anon_sym_LBRACK] = ACTIONS(5048), + [anon_sym_COLON] = ACTIONS(5048), + [anon_sym_COMMA] = ACTIONS(5048), + [anon_sym_RBRACK] = ACTIONS(5048), + [anon_sym_LPAREN] = ACTIONS(5048), + [anon_sym_RPAREN] = ACTIONS(5048), + [anon_sym_RBRACE] = ACTIONS(5048), + [anon_sym_LT] = ACTIONS(5050), + [anon_sym_GT] = ACTIONS(5050), + [anon_sym_in] = ACTIONS(5050), + [anon_sym_where] = ACTIONS(5048), + [anon_sym_QMARK] = ACTIONS(5050), + [anon_sym_BANG] = ACTIONS(5050), + [anon_sym_PLUS_PLUS] = ACTIONS(5048), + [anon_sym_DASH_DASH] = ACTIONS(5048), + [anon_sym_PLUS] = ACTIONS(5050), + [anon_sym_DASH] = ACTIONS(5050), + [anon_sym_STAR] = ACTIONS(5048), + [anon_sym_SLASH] = ACTIONS(5050), + [anon_sym_PERCENT] = ACTIONS(5048), + [anon_sym_CARET] = ACTIONS(5048), + [anon_sym_PIPE] = ACTIONS(5050), + [anon_sym_AMP] = ACTIONS(5050), + [anon_sym_LT_LT] = ACTIONS(5048), + [anon_sym_GT_GT] = ACTIONS(5050), + [anon_sym_GT_GT_GT] = ACTIONS(5048), + [anon_sym_EQ_EQ] = ACTIONS(5048), + [anon_sym_BANG_EQ] = ACTIONS(5048), + [anon_sym_GT_EQ] = ACTIONS(5048), + [anon_sym_LT_EQ] = ACTIONS(5048), + [anon_sym_DOT] = ACTIONS(5050), + [anon_sym_EQ_GT] = ACTIONS(5048), + [anon_sym_switch] = ACTIONS(5048), + [anon_sym_DOT_DOT] = ACTIONS(5048), + [anon_sym_and] = ACTIONS(5048), + [anon_sym_or] = ACTIONS(5050), + [anon_sym_AMP_AMP] = ACTIONS(5048), + [anon_sym_PIPE_PIPE] = ACTIONS(5048), + [anon_sym_QMARK_QMARK] = ACTIONS(5048), + [anon_sym_from] = ACTIONS(5048), + [anon_sym_into] = ACTIONS(5048), + [anon_sym_join] = ACTIONS(5048), + [anon_sym_on] = ACTIONS(5048), + [anon_sym_equals] = ACTIONS(5048), + [anon_sym_let] = ACTIONS(5048), + [anon_sym_orderby] = ACTIONS(5048), + [anon_sym_group] = ACTIONS(5048), + [anon_sym_by] = ACTIONS(5048), + [anon_sym_select] = ACTIONS(5048), + [anon_sym_as] = ACTIONS(5048), + [anon_sym_is] = ACTIONS(5048), + [anon_sym_DASH_GT] = ACTIONS(5048), + [anon_sym_with] = ACTIONS(5048), + [aux_sym_preproc_if_token3] = ACTIONS(5048), + [aux_sym_preproc_else_token1] = ACTIONS(5048), + [aux_sym_preproc_elif_token1] = ACTIONS(5048), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -470528,63 +470076,63 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3004), [sym_preproc_define] = STATE(3004), [sym_preproc_undef] = STATE(3004), - [anon_sym_SEMI] = ACTIONS(2953), - [anon_sym_LBRACK] = ACTIONS(2953), - [anon_sym_COLON] = ACTIONS(2953), - [anon_sym_COMMA] = ACTIONS(2953), - [anon_sym_RBRACK] = ACTIONS(2953), - [anon_sym_LPAREN] = ACTIONS(2953), - [anon_sym_RPAREN] = ACTIONS(2953), - [anon_sym_RBRACE] = ACTIONS(2953), - [anon_sym_LT] = ACTIONS(2951), - [anon_sym_GT] = ACTIONS(2951), - [anon_sym_in] = ACTIONS(2951), - [anon_sym_where] = ACTIONS(2953), - [anon_sym_QMARK] = ACTIONS(2951), - [anon_sym_BANG] = ACTIONS(2951), - [anon_sym_PLUS_PLUS] = ACTIONS(2953), - [anon_sym_DASH_DASH] = ACTIONS(2953), - [anon_sym_PLUS] = ACTIONS(2951), - [anon_sym_DASH] = ACTIONS(2951), - [anon_sym_STAR] = ACTIONS(2953), - [anon_sym_SLASH] = ACTIONS(2951), - [anon_sym_PERCENT] = ACTIONS(2953), - [anon_sym_CARET] = ACTIONS(2953), - [anon_sym_PIPE] = ACTIONS(2951), - [anon_sym_AMP] = ACTIONS(2951), - [anon_sym_LT_LT] = ACTIONS(2953), - [anon_sym_GT_GT] = ACTIONS(2951), - [anon_sym_GT_GT_GT] = ACTIONS(2953), - [anon_sym_EQ_EQ] = ACTIONS(2953), - [anon_sym_BANG_EQ] = ACTIONS(2953), - [anon_sym_GT_EQ] = ACTIONS(2953), - [anon_sym_LT_EQ] = ACTIONS(2953), - [anon_sym_DOT] = ACTIONS(2951), - [anon_sym_EQ_GT] = ACTIONS(2953), - [anon_sym_switch] = ACTIONS(2953), - [anon_sym_DOT_DOT] = ACTIONS(2953), - [anon_sym_and] = ACTIONS(2953), - [anon_sym_or] = ACTIONS(2951), - [anon_sym_AMP_AMP] = ACTIONS(2953), - [anon_sym_PIPE_PIPE] = ACTIONS(2953), - [anon_sym_QMARK_QMARK] = ACTIONS(2953), - [anon_sym_from] = ACTIONS(2953), - [anon_sym_into] = ACTIONS(2953), - [anon_sym_join] = ACTIONS(2953), - [anon_sym_on] = ACTIONS(2953), - [anon_sym_equals] = ACTIONS(2953), - [anon_sym_let] = ACTIONS(2953), - [anon_sym_orderby] = ACTIONS(2953), - [anon_sym_group] = ACTIONS(2953), - [anon_sym_by] = ACTIONS(2953), - [anon_sym_select] = ACTIONS(2953), - [anon_sym_as] = ACTIONS(2953), - [anon_sym_is] = ACTIONS(2953), - [anon_sym_DASH_GT] = ACTIONS(2953), - [anon_sym_with] = ACTIONS(2953), - [aux_sym_preproc_if_token3] = ACTIONS(2953), - [aux_sym_preproc_else_token1] = ACTIONS(2953), - [aux_sym_preproc_elif_token1] = ACTIONS(2953), + [anon_sym_SEMI] = ACTIONS(3953), + [anon_sym_LBRACK] = ACTIONS(3953), + [anon_sym_COLON] = ACTIONS(3953), + [anon_sym_COMMA] = ACTIONS(3953), + [anon_sym_RBRACK] = ACTIONS(3953), + [anon_sym_LPAREN] = ACTIONS(3953), + [anon_sym_RPAREN] = ACTIONS(3953), + [anon_sym_LBRACE] = ACTIONS(3953), + [anon_sym_RBRACE] = ACTIONS(3953), + [anon_sym_LT] = ACTIONS(3951), + [anon_sym_GT] = ACTIONS(3951), + [anon_sym_in] = ACTIONS(3953), + [anon_sym_where] = ACTIONS(3953), + [anon_sym_QMARK] = ACTIONS(3951), + [anon_sym_BANG] = ACTIONS(3951), + [anon_sym_PLUS_PLUS] = ACTIONS(3953), + [anon_sym_DASH_DASH] = ACTIONS(3953), + [anon_sym_PLUS] = ACTIONS(3951), + [anon_sym_DASH] = ACTIONS(3951), + [anon_sym_STAR] = ACTIONS(3953), + [anon_sym_SLASH] = ACTIONS(3951), + [anon_sym_PERCENT] = ACTIONS(3953), + [anon_sym_CARET] = ACTIONS(3953), + [anon_sym_PIPE] = ACTIONS(3951), + [anon_sym_AMP] = ACTIONS(3951), + [anon_sym_LT_LT] = ACTIONS(3953), + [anon_sym_GT_GT] = ACTIONS(3951), + [anon_sym_GT_GT_GT] = ACTIONS(3953), + [anon_sym_EQ_EQ] = ACTIONS(3953), + [anon_sym_BANG_EQ] = ACTIONS(3953), + [anon_sym_GT_EQ] = ACTIONS(3953), + [anon_sym_LT_EQ] = ACTIONS(3953), + [anon_sym_DOT] = ACTIONS(3951), + [anon_sym_EQ_GT] = ACTIONS(3953), + [anon_sym_switch] = ACTIONS(3953), + [anon_sym_DOT_DOT] = ACTIONS(3953), + [anon_sym_and] = ACTIONS(3953), + [anon_sym_or] = ACTIONS(3951), + [anon_sym_AMP_AMP] = ACTIONS(3953), + [anon_sym_PIPE_PIPE] = ACTIONS(3953), + [anon_sym_QMARK_QMARK] = ACTIONS(3953), + [anon_sym_from] = ACTIONS(3953), + [anon_sym_join] = ACTIONS(3953), + [anon_sym_on] = ACTIONS(3953), + [anon_sym_equals] = ACTIONS(3953), + [anon_sym_let] = ACTIONS(3953), + [anon_sym_orderby] = ACTIONS(3953), + [anon_sym_group] = ACTIONS(3953), + [anon_sym_by] = ACTIONS(3953), + [anon_sym_select] = ACTIONS(3953), + [anon_sym_as] = ACTIONS(3953), + [anon_sym_is] = ACTIONS(3953), + [anon_sym_DASH_GT] = ACTIONS(3953), + [anon_sym_with] = ACTIONS(3953), + [aux_sym_preproc_if_token3] = ACTIONS(3953), + [aux_sym_preproc_else_token1] = ACTIONS(3953), + [aux_sym_preproc_elif_token1] = ACTIONS(3953), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -470606,63 +470154,63 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3005), [sym_preproc_define] = STATE(3005), [sym_preproc_undef] = STATE(3005), - [anon_sym_SEMI] = ACTIONS(1957), - [anon_sym_LBRACK] = ACTIONS(1957), - [anon_sym_COLON] = ACTIONS(1957), - [anon_sym_COMMA] = ACTIONS(1957), - [anon_sym_RBRACK] = ACTIONS(1957), - [anon_sym_LPAREN] = ACTIONS(1957), - [anon_sym_RPAREN] = ACTIONS(1957), - [anon_sym_RBRACE] = ACTIONS(1957), - [anon_sym_LT] = ACTIONS(1959), - [anon_sym_GT] = ACTIONS(1959), - [anon_sym_in] = ACTIONS(1959), - [anon_sym_where] = ACTIONS(1957), - [anon_sym_QMARK] = ACTIONS(1959), - [anon_sym_BANG] = ACTIONS(1959), - [anon_sym_PLUS_PLUS] = ACTIONS(1957), - [anon_sym_DASH_DASH] = ACTIONS(1957), - [anon_sym_PLUS] = ACTIONS(1959), - [anon_sym_DASH] = ACTIONS(1959), - [anon_sym_STAR] = ACTIONS(1957), - [anon_sym_SLASH] = ACTIONS(1959), - [anon_sym_PERCENT] = ACTIONS(1957), - [anon_sym_CARET] = ACTIONS(1957), - [anon_sym_PIPE] = ACTIONS(1959), - [anon_sym_AMP] = ACTIONS(1959), - [anon_sym_LT_LT] = ACTIONS(1957), - [anon_sym_GT_GT] = ACTIONS(1959), - [anon_sym_GT_GT_GT] = ACTIONS(1957), - [anon_sym_EQ_EQ] = ACTIONS(1957), - [anon_sym_BANG_EQ] = ACTIONS(1957), - [anon_sym_GT_EQ] = ACTIONS(1957), - [anon_sym_LT_EQ] = ACTIONS(1957), - [anon_sym_DOT] = ACTIONS(1959), - [anon_sym_EQ_GT] = ACTIONS(1957), - [anon_sym_switch] = ACTIONS(1957), - [anon_sym_DOT_DOT] = ACTIONS(1957), - [anon_sym_and] = ACTIONS(1957), - [anon_sym_or] = ACTIONS(1959), - [anon_sym_AMP_AMP] = ACTIONS(1957), - [anon_sym_PIPE_PIPE] = ACTIONS(1957), - [anon_sym_QMARK_QMARK] = ACTIONS(1957), - [anon_sym_from] = ACTIONS(1957), - [anon_sym_into] = ACTIONS(1957), - [anon_sym_join] = ACTIONS(1957), - [anon_sym_on] = ACTIONS(1957), - [anon_sym_equals] = ACTIONS(1957), - [anon_sym_let] = ACTIONS(1957), - [anon_sym_orderby] = ACTIONS(1957), - [anon_sym_group] = ACTIONS(1957), - [anon_sym_by] = ACTIONS(1957), - [anon_sym_select] = ACTIONS(1957), - [anon_sym_as] = ACTIONS(1957), - [anon_sym_is] = ACTIONS(1957), - [anon_sym_DASH_GT] = ACTIONS(1957), - [anon_sym_with] = ACTIONS(1957), - [aux_sym_preproc_if_token3] = ACTIONS(1957), - [aux_sym_preproc_else_token1] = ACTIONS(1957), - [aux_sym_preproc_elif_token1] = ACTIONS(1957), + [anon_sym_SEMI] = ACTIONS(5052), + [anon_sym_LBRACK] = ACTIONS(5052), + [anon_sym_COLON] = ACTIONS(5052), + [anon_sym_COMMA] = ACTIONS(5052), + [anon_sym_RBRACK] = ACTIONS(5052), + [anon_sym_LPAREN] = ACTIONS(5052), + [anon_sym_RPAREN] = ACTIONS(5052), + [anon_sym_RBRACE] = ACTIONS(5052), + [anon_sym_LT] = ACTIONS(5054), + [anon_sym_GT] = ACTIONS(5054), + [anon_sym_in] = ACTIONS(5054), + [anon_sym_where] = ACTIONS(5052), + [anon_sym_QMARK] = ACTIONS(5054), + [anon_sym_BANG] = ACTIONS(5054), + [anon_sym_PLUS_PLUS] = ACTIONS(5052), + [anon_sym_DASH_DASH] = ACTIONS(5052), + [anon_sym_PLUS] = ACTIONS(5054), + [anon_sym_DASH] = ACTIONS(5054), + [anon_sym_STAR] = ACTIONS(5052), + [anon_sym_SLASH] = ACTIONS(5054), + [anon_sym_PERCENT] = ACTIONS(5052), + [anon_sym_CARET] = ACTIONS(5052), + [anon_sym_PIPE] = ACTIONS(5054), + [anon_sym_AMP] = ACTIONS(5054), + [anon_sym_LT_LT] = ACTIONS(5052), + [anon_sym_GT_GT] = ACTIONS(5054), + [anon_sym_GT_GT_GT] = ACTIONS(5052), + [anon_sym_EQ_EQ] = ACTIONS(5052), + [anon_sym_BANG_EQ] = ACTIONS(5052), + [anon_sym_GT_EQ] = ACTIONS(5052), + [anon_sym_LT_EQ] = ACTIONS(5052), + [anon_sym_DOT] = ACTIONS(5054), + [anon_sym_EQ_GT] = ACTIONS(5052), + [anon_sym_switch] = ACTIONS(5052), + [anon_sym_DOT_DOT] = ACTIONS(5052), + [anon_sym_and] = ACTIONS(5052), + [anon_sym_or] = ACTIONS(5054), + [anon_sym_AMP_AMP] = ACTIONS(5052), + [anon_sym_PIPE_PIPE] = ACTIONS(5052), + [anon_sym_QMARK_QMARK] = ACTIONS(5052), + [anon_sym_from] = ACTIONS(5052), + [anon_sym_into] = ACTIONS(5052), + [anon_sym_join] = ACTIONS(5052), + [anon_sym_on] = ACTIONS(5052), + [anon_sym_equals] = ACTIONS(5052), + [anon_sym_let] = ACTIONS(5052), + [anon_sym_orderby] = ACTIONS(5052), + [anon_sym_group] = ACTIONS(5052), + [anon_sym_by] = ACTIONS(5052), + [anon_sym_select] = ACTIONS(5052), + [anon_sym_as] = ACTIONS(5052), + [anon_sym_is] = ACTIONS(5052), + [anon_sym_DASH_GT] = ACTIONS(5052), + [anon_sym_with] = ACTIONS(5052), + [aux_sym_preproc_if_token3] = ACTIONS(5052), + [aux_sym_preproc_else_token1] = ACTIONS(5052), + [aux_sym_preproc_elif_token1] = ACTIONS(5052), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -470684,63 +470232,63 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3006), [sym_preproc_define] = STATE(3006), [sym_preproc_undef] = STATE(3006), - [anon_sym_SEMI] = ACTIONS(5054), - [anon_sym_LBRACK] = ACTIONS(5054), - [anon_sym_COLON] = ACTIONS(5054), - [anon_sym_COMMA] = ACTIONS(5054), - [anon_sym_RBRACK] = ACTIONS(5054), - [anon_sym_LPAREN] = ACTIONS(5054), - [anon_sym_RPAREN] = ACTIONS(5054), - [anon_sym_RBRACE] = ACTIONS(5054), - [anon_sym_LT] = ACTIONS(5056), - [anon_sym_GT] = ACTIONS(5056), - [anon_sym_in] = ACTIONS(5056), - [anon_sym_where] = ACTIONS(5054), - [anon_sym_QMARK] = ACTIONS(5056), - [anon_sym_BANG] = ACTIONS(5056), - [anon_sym_PLUS_PLUS] = ACTIONS(5054), - [anon_sym_DASH_DASH] = ACTIONS(5054), - [anon_sym_PLUS] = ACTIONS(5056), - [anon_sym_DASH] = ACTIONS(5056), - [anon_sym_STAR] = ACTIONS(5054), - [anon_sym_SLASH] = ACTIONS(5056), - [anon_sym_PERCENT] = ACTIONS(5054), - [anon_sym_CARET] = ACTIONS(5054), - [anon_sym_PIPE] = ACTIONS(5056), - [anon_sym_AMP] = ACTIONS(5056), - [anon_sym_LT_LT] = ACTIONS(5054), - [anon_sym_GT_GT] = ACTIONS(5056), - [anon_sym_GT_GT_GT] = ACTIONS(5054), - [anon_sym_EQ_EQ] = ACTIONS(5054), - [anon_sym_BANG_EQ] = ACTIONS(5054), - [anon_sym_GT_EQ] = ACTIONS(5054), - [anon_sym_LT_EQ] = ACTIONS(5054), - [anon_sym_DOT] = ACTIONS(5056), - [anon_sym_EQ_GT] = ACTIONS(5054), - [anon_sym_switch] = ACTIONS(5054), - [anon_sym_DOT_DOT] = ACTIONS(5054), - [anon_sym_and] = ACTIONS(5054), - [anon_sym_or] = ACTIONS(5056), - [anon_sym_AMP_AMP] = ACTIONS(5054), - [anon_sym_PIPE_PIPE] = ACTIONS(5054), - [anon_sym_QMARK_QMARK] = ACTIONS(5054), - [anon_sym_from] = ACTIONS(5054), - [anon_sym_into] = ACTIONS(5054), - [anon_sym_join] = ACTIONS(5054), - [anon_sym_on] = ACTIONS(5054), - [anon_sym_equals] = ACTIONS(5054), - [anon_sym_let] = ACTIONS(5054), - [anon_sym_orderby] = ACTIONS(5054), - [anon_sym_group] = ACTIONS(5054), - [anon_sym_by] = ACTIONS(5054), - [anon_sym_select] = ACTIONS(5054), - [anon_sym_as] = ACTIONS(5054), - [anon_sym_is] = ACTIONS(5054), - [anon_sym_DASH_GT] = ACTIONS(5054), - [anon_sym_with] = ACTIONS(5054), - [aux_sym_preproc_if_token3] = ACTIONS(5054), - [aux_sym_preproc_else_token1] = ACTIONS(5054), - [aux_sym_preproc_elif_token1] = ACTIONS(5054), + [anon_sym_SEMI] = ACTIONS(5056), + [anon_sym_LBRACK] = ACTIONS(5056), + [anon_sym_COLON] = ACTIONS(5056), + [anon_sym_COMMA] = ACTIONS(5056), + [anon_sym_RBRACK] = ACTIONS(5056), + [anon_sym_LPAREN] = ACTIONS(5056), + [anon_sym_RPAREN] = ACTIONS(5056), + [anon_sym_RBRACE] = ACTIONS(5056), + [anon_sym_LT] = ACTIONS(5058), + [anon_sym_GT] = ACTIONS(5058), + [anon_sym_in] = ACTIONS(5058), + [anon_sym_where] = ACTIONS(5056), + [anon_sym_QMARK] = ACTIONS(5058), + [anon_sym_BANG] = ACTIONS(5058), + [anon_sym_PLUS_PLUS] = ACTIONS(5056), + [anon_sym_DASH_DASH] = ACTIONS(5056), + [anon_sym_PLUS] = ACTIONS(5058), + [anon_sym_DASH] = ACTIONS(5058), + [anon_sym_STAR] = ACTIONS(5056), + [anon_sym_SLASH] = ACTIONS(5058), + [anon_sym_PERCENT] = ACTIONS(5056), + [anon_sym_CARET] = ACTIONS(5056), + [anon_sym_PIPE] = ACTIONS(5058), + [anon_sym_AMP] = ACTIONS(5058), + [anon_sym_LT_LT] = ACTIONS(5056), + [anon_sym_GT_GT] = ACTIONS(5058), + [anon_sym_GT_GT_GT] = ACTIONS(5056), + [anon_sym_EQ_EQ] = ACTIONS(5056), + [anon_sym_BANG_EQ] = ACTIONS(5056), + [anon_sym_GT_EQ] = ACTIONS(5056), + [anon_sym_LT_EQ] = ACTIONS(5056), + [anon_sym_DOT] = ACTIONS(5058), + [anon_sym_EQ_GT] = ACTIONS(5056), + [anon_sym_switch] = ACTIONS(5056), + [anon_sym_DOT_DOT] = ACTIONS(5056), + [anon_sym_and] = ACTIONS(5056), + [anon_sym_or] = ACTIONS(5058), + [anon_sym_AMP_AMP] = ACTIONS(5056), + [anon_sym_PIPE_PIPE] = ACTIONS(5056), + [anon_sym_QMARK_QMARK] = ACTIONS(5056), + [anon_sym_from] = ACTIONS(5056), + [anon_sym_into] = ACTIONS(5056), + [anon_sym_join] = ACTIONS(5056), + [anon_sym_on] = ACTIONS(5056), + [anon_sym_equals] = ACTIONS(5056), + [anon_sym_let] = ACTIONS(5056), + [anon_sym_orderby] = ACTIONS(5056), + [anon_sym_group] = ACTIONS(5056), + [anon_sym_by] = ACTIONS(5056), + [anon_sym_select] = ACTIONS(5056), + [anon_sym_as] = ACTIONS(5056), + [anon_sym_is] = ACTIONS(5056), + [anon_sym_DASH_GT] = ACTIONS(5056), + [anon_sym_with] = ACTIONS(5056), + [aux_sym_preproc_if_token3] = ACTIONS(5056), + [aux_sym_preproc_else_token1] = ACTIONS(5056), + [aux_sym_preproc_elif_token1] = ACTIONS(5056), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -470762,63 +470310,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(5058), - [anon_sym_LBRACK] = ACTIONS(5058), - [anon_sym_COLON] = ACTIONS(5058), - [anon_sym_COMMA] = ACTIONS(5058), - [anon_sym_RBRACK] = ACTIONS(5058), - [anon_sym_LPAREN] = ACTIONS(5058), - [anon_sym_RPAREN] = ACTIONS(5058), - [anon_sym_RBRACE] = ACTIONS(5058), - [anon_sym_LT] = ACTIONS(5060), - [anon_sym_GT] = ACTIONS(5060), - [anon_sym_in] = ACTIONS(5060), - [anon_sym_where] = ACTIONS(5058), - [anon_sym_QMARK] = ACTIONS(5060), - [anon_sym_BANG] = ACTIONS(5060), - [anon_sym_PLUS_PLUS] = ACTIONS(5058), - [anon_sym_DASH_DASH] = ACTIONS(5058), - [anon_sym_PLUS] = ACTIONS(5060), - [anon_sym_DASH] = ACTIONS(5060), - [anon_sym_STAR] = ACTIONS(5058), - [anon_sym_SLASH] = ACTIONS(5060), - [anon_sym_PERCENT] = ACTIONS(5058), - [anon_sym_CARET] = ACTIONS(5058), - [anon_sym_PIPE] = ACTIONS(5060), - [anon_sym_AMP] = ACTIONS(5060), - [anon_sym_LT_LT] = ACTIONS(5058), - [anon_sym_GT_GT] = ACTIONS(5060), - [anon_sym_GT_GT_GT] = ACTIONS(5058), - [anon_sym_EQ_EQ] = ACTIONS(5058), - [anon_sym_BANG_EQ] = ACTIONS(5058), - [anon_sym_GT_EQ] = ACTIONS(5058), - [anon_sym_LT_EQ] = ACTIONS(5058), - [anon_sym_DOT] = ACTIONS(5060), - [anon_sym_EQ_GT] = ACTIONS(5058), - [anon_sym_switch] = ACTIONS(5058), - [anon_sym_DOT_DOT] = ACTIONS(5058), - [anon_sym_and] = ACTIONS(5058), - [anon_sym_or] = ACTIONS(5060), - [anon_sym_AMP_AMP] = ACTIONS(5058), - [anon_sym_PIPE_PIPE] = ACTIONS(5058), - [anon_sym_QMARK_QMARK] = ACTIONS(5058), - [anon_sym_from] = ACTIONS(5058), - [anon_sym_into] = ACTIONS(5058), - [anon_sym_join] = ACTIONS(5058), - [anon_sym_on] = ACTIONS(5058), - [anon_sym_equals] = ACTIONS(5058), - [anon_sym_let] = ACTIONS(5058), - [anon_sym_orderby] = ACTIONS(5058), - [anon_sym_group] = ACTIONS(5058), - [anon_sym_by] = ACTIONS(5058), - [anon_sym_select] = ACTIONS(5058), - [anon_sym_as] = ACTIONS(5058), - [anon_sym_is] = ACTIONS(5058), - [anon_sym_DASH_GT] = ACTIONS(5058), - [anon_sym_with] = ACTIONS(5058), - [aux_sym_preproc_if_token3] = ACTIONS(5058), - [aux_sym_preproc_else_token1] = ACTIONS(5058), - [aux_sym_preproc_elif_token1] = ACTIONS(5058), + [anon_sym_SEMI] = ACTIONS(4072), + [anon_sym_LBRACK] = ACTIONS(4072), + [anon_sym_COLON] = ACTIONS(4072), + [anon_sym_COMMA] = ACTIONS(4072), + [anon_sym_RBRACK] = ACTIONS(4072), + [anon_sym_LPAREN] = ACTIONS(4072), + [anon_sym_RPAREN] = ACTIONS(4072), + [anon_sym_LBRACE] = ACTIONS(4072), + [anon_sym_RBRACE] = ACTIONS(4072), + [anon_sym_LT] = ACTIONS(4070), + [anon_sym_GT] = ACTIONS(4070), + [anon_sym_in] = ACTIONS(4072), + [anon_sym_where] = ACTIONS(4072), + [anon_sym_QMARK] = ACTIONS(4070), + [anon_sym_BANG] = ACTIONS(4070), + [anon_sym_PLUS_PLUS] = ACTIONS(4072), + [anon_sym_DASH_DASH] = ACTIONS(4072), + [anon_sym_PLUS] = ACTIONS(4070), + [anon_sym_DASH] = ACTIONS(4070), + [anon_sym_STAR] = ACTIONS(4072), + [anon_sym_SLASH] = ACTIONS(4070), + [anon_sym_PERCENT] = ACTIONS(4072), + [anon_sym_CARET] = ACTIONS(4072), + [anon_sym_PIPE] = ACTIONS(4070), + [anon_sym_AMP] = ACTIONS(4070), + [anon_sym_LT_LT] = ACTIONS(4072), + [anon_sym_GT_GT] = ACTIONS(4070), + [anon_sym_GT_GT_GT] = ACTIONS(4072), + [anon_sym_EQ_EQ] = ACTIONS(4072), + [anon_sym_BANG_EQ] = ACTIONS(4072), + [anon_sym_GT_EQ] = ACTIONS(4072), + [anon_sym_LT_EQ] = ACTIONS(4072), + [anon_sym_DOT] = ACTIONS(4070), + [anon_sym_EQ_GT] = ACTIONS(4072), + [anon_sym_switch] = ACTIONS(4072), + [anon_sym_DOT_DOT] = ACTIONS(4072), + [anon_sym_and] = ACTIONS(4072), + [anon_sym_or] = ACTIONS(4070), + [anon_sym_AMP_AMP] = ACTIONS(4072), + [anon_sym_PIPE_PIPE] = ACTIONS(4072), + [anon_sym_QMARK_QMARK] = ACTIONS(4072), + [anon_sym_from] = ACTIONS(4072), + [anon_sym_join] = ACTIONS(4072), + [anon_sym_on] = ACTIONS(4072), + [anon_sym_equals] = ACTIONS(4072), + [anon_sym_let] = ACTIONS(4072), + [anon_sym_orderby] = ACTIONS(4072), + [anon_sym_group] = ACTIONS(4072), + [anon_sym_by] = ACTIONS(4072), + [anon_sym_select] = ACTIONS(4072), + [anon_sym_as] = ACTIONS(4072), + [anon_sym_is] = ACTIONS(4072), + [anon_sym_DASH_GT] = ACTIONS(4072), + [anon_sym_with] = ACTIONS(4072), + [aux_sym_preproc_if_token3] = ACTIONS(4072), + [aux_sym_preproc_else_token1] = ACTIONS(4072), + [aux_sym_preproc_elif_token1] = ACTIONS(4072), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -470840,63 +470388,63 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3008), [sym_preproc_define] = STATE(3008), [sym_preproc_undef] = STATE(3008), - [anon_sym_SEMI] = ACTIONS(4126), - [anon_sym_LBRACK] = ACTIONS(4126), - [anon_sym_COLON] = ACTIONS(4126), - [anon_sym_COMMA] = ACTIONS(4126), - [anon_sym_RBRACK] = ACTIONS(4126), - [anon_sym_LPAREN] = ACTIONS(4126), - [anon_sym_RPAREN] = ACTIONS(4126), - [anon_sym_LBRACE] = ACTIONS(4126), - [anon_sym_RBRACE] = ACTIONS(4126), - [anon_sym_LT] = ACTIONS(4124), - [anon_sym_GT] = ACTIONS(4124), - [anon_sym_in] = ACTIONS(4126), - [anon_sym_where] = ACTIONS(4126), - [anon_sym_QMARK] = ACTIONS(4124), - [anon_sym_BANG] = ACTIONS(4124), - [anon_sym_PLUS_PLUS] = ACTIONS(4126), - [anon_sym_DASH_DASH] = ACTIONS(4126), - [anon_sym_PLUS] = ACTIONS(4124), - [anon_sym_DASH] = ACTIONS(4124), - [anon_sym_STAR] = ACTIONS(4126), - [anon_sym_SLASH] = ACTIONS(4124), - [anon_sym_PERCENT] = ACTIONS(4126), - [anon_sym_CARET] = ACTIONS(4126), - [anon_sym_PIPE] = ACTIONS(4124), - [anon_sym_AMP] = ACTIONS(4124), - [anon_sym_LT_LT] = ACTIONS(4126), - [anon_sym_GT_GT] = ACTIONS(4124), - [anon_sym_GT_GT_GT] = ACTIONS(4126), - [anon_sym_EQ_EQ] = ACTIONS(4126), - [anon_sym_BANG_EQ] = ACTIONS(4126), - [anon_sym_GT_EQ] = ACTIONS(4126), - [anon_sym_LT_EQ] = ACTIONS(4126), - [anon_sym_DOT] = ACTIONS(4124), - [anon_sym_EQ_GT] = ACTIONS(4126), - [anon_sym_switch] = ACTIONS(4126), - [anon_sym_DOT_DOT] = ACTIONS(4126), - [anon_sym_and] = ACTIONS(4126), - [anon_sym_or] = ACTIONS(4124), - [anon_sym_AMP_AMP] = ACTIONS(4126), - [anon_sym_PIPE_PIPE] = ACTIONS(4126), - [anon_sym_QMARK_QMARK] = ACTIONS(4126), - [anon_sym_from] = ACTIONS(4126), - [anon_sym_join] = ACTIONS(4126), - [anon_sym_on] = ACTIONS(4126), - [anon_sym_equals] = ACTIONS(4126), - [anon_sym_let] = ACTIONS(4126), - [anon_sym_orderby] = ACTIONS(4126), - [anon_sym_group] = ACTIONS(4126), - [anon_sym_by] = ACTIONS(4126), - [anon_sym_select] = ACTIONS(4126), - [anon_sym_as] = ACTIONS(4126), - [anon_sym_is] = ACTIONS(4126), - [anon_sym_DASH_GT] = ACTIONS(4126), - [anon_sym_with] = ACTIONS(4126), - [aux_sym_preproc_if_token3] = ACTIONS(4126), - [aux_sym_preproc_else_token1] = ACTIONS(4126), - [aux_sym_preproc_elif_token1] = ACTIONS(4126), + [anon_sym_SEMI] = ACTIONS(5060), + [anon_sym_LBRACK] = ACTIONS(5060), + [anon_sym_COLON] = ACTIONS(5060), + [anon_sym_COMMA] = ACTIONS(5060), + [anon_sym_RBRACK] = ACTIONS(5060), + [anon_sym_LPAREN] = ACTIONS(5060), + [anon_sym_RPAREN] = ACTIONS(5060), + [anon_sym_RBRACE] = ACTIONS(5060), + [anon_sym_LT] = ACTIONS(5062), + [anon_sym_GT] = ACTIONS(5062), + [anon_sym_in] = ACTIONS(5062), + [anon_sym_where] = ACTIONS(5060), + [anon_sym_QMARK] = ACTIONS(5062), + [anon_sym_BANG] = ACTIONS(5062), + [anon_sym_PLUS_PLUS] = ACTIONS(5060), + [anon_sym_DASH_DASH] = ACTIONS(5060), + [anon_sym_PLUS] = ACTIONS(5062), + [anon_sym_DASH] = ACTIONS(5062), + [anon_sym_STAR] = ACTIONS(5060), + [anon_sym_SLASH] = ACTIONS(5062), + [anon_sym_PERCENT] = ACTIONS(5060), + [anon_sym_CARET] = ACTIONS(5060), + [anon_sym_PIPE] = ACTIONS(5062), + [anon_sym_AMP] = ACTIONS(5062), + [anon_sym_LT_LT] = ACTIONS(5060), + [anon_sym_GT_GT] = ACTIONS(5062), + [anon_sym_GT_GT_GT] = ACTIONS(5060), + [anon_sym_EQ_EQ] = ACTIONS(5060), + [anon_sym_BANG_EQ] = ACTIONS(5060), + [anon_sym_GT_EQ] = ACTIONS(5060), + [anon_sym_LT_EQ] = ACTIONS(5060), + [anon_sym_DOT] = ACTIONS(5062), + [anon_sym_EQ_GT] = ACTIONS(5060), + [anon_sym_switch] = ACTIONS(5060), + [anon_sym_DOT_DOT] = ACTIONS(5060), + [anon_sym_and] = ACTIONS(5060), + [anon_sym_or] = ACTIONS(5062), + [anon_sym_AMP_AMP] = ACTIONS(5060), + [anon_sym_PIPE_PIPE] = ACTIONS(5060), + [anon_sym_QMARK_QMARK] = ACTIONS(5060), + [anon_sym_from] = ACTIONS(5060), + [anon_sym_into] = ACTIONS(5060), + [anon_sym_join] = ACTIONS(5060), + [anon_sym_on] = ACTIONS(5060), + [anon_sym_equals] = ACTIONS(5060), + [anon_sym_let] = ACTIONS(5060), + [anon_sym_orderby] = ACTIONS(5060), + [anon_sym_group] = ACTIONS(5060), + [anon_sym_by] = ACTIONS(5060), + [anon_sym_select] = ACTIONS(5060), + [anon_sym_as] = ACTIONS(5060), + [anon_sym_is] = ACTIONS(5060), + [anon_sym_DASH_GT] = ACTIONS(5060), + [anon_sym_with] = ACTIONS(5060), + [aux_sym_preproc_if_token3] = ACTIONS(5060), + [aux_sym_preproc_else_token1] = ACTIONS(5060), + [aux_sym_preproc_elif_token1] = ACTIONS(5060), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -470918,84 +470466,6 @@ 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(1981), - [anon_sym_LBRACK] = ACTIONS(1981), - [anon_sym_COLON] = ACTIONS(1981), - [anon_sym_COMMA] = ACTIONS(1981), - [anon_sym_RBRACK] = ACTIONS(1981), - [anon_sym_LPAREN] = ACTIONS(5062), - [anon_sym_RPAREN] = ACTIONS(1981), - [anon_sym_RBRACE] = ACTIONS(1981), - [anon_sym_LT] = ACTIONS(1979), - [anon_sym_GT] = ACTIONS(1979), - [anon_sym_in] = ACTIONS(1979), - [anon_sym_where] = ACTIONS(1981), - [anon_sym_QMARK] = ACTIONS(1979), - [anon_sym_BANG] = ACTIONS(1979), - [anon_sym_PLUS_PLUS] = ACTIONS(1981), - [anon_sym_DASH_DASH] = ACTIONS(1981), - [anon_sym_PLUS] = ACTIONS(1979), - [anon_sym_DASH] = ACTIONS(1979), - [anon_sym_STAR] = ACTIONS(1981), - [anon_sym_SLASH] = ACTIONS(1979), - [anon_sym_PERCENT] = ACTIONS(1981), - [anon_sym_CARET] = ACTIONS(1981), - [anon_sym_PIPE] = ACTIONS(1979), - [anon_sym_AMP] = ACTIONS(1979), - [anon_sym_LT_LT] = ACTIONS(1981), - [anon_sym_GT_GT] = ACTIONS(1979), - [anon_sym_GT_GT_GT] = ACTIONS(1981), - [anon_sym_EQ_EQ] = ACTIONS(1981), - [anon_sym_BANG_EQ] = ACTIONS(1981), - [anon_sym_GT_EQ] = ACTIONS(1981), - [anon_sym_LT_EQ] = ACTIONS(1981), - [anon_sym_DOT] = ACTIONS(1979), - [anon_sym_EQ_GT] = ACTIONS(1981), - [anon_sym_switch] = ACTIONS(1981), - [anon_sym_DOT_DOT] = ACTIONS(1981), - [anon_sym_and] = ACTIONS(1981), - [anon_sym_or] = ACTIONS(1979), - [anon_sym_AMP_AMP] = ACTIONS(1981), - [anon_sym_PIPE_PIPE] = ACTIONS(1981), - [anon_sym_QMARK_QMARK] = ACTIONS(1981), - [anon_sym_from] = ACTIONS(1981), - [anon_sym_into] = ACTIONS(1981), - [anon_sym_join] = ACTIONS(1981), - [anon_sym_on] = ACTIONS(1981), - [anon_sym_equals] = ACTIONS(1981), - [anon_sym_let] = ACTIONS(1981), - [anon_sym_orderby] = ACTIONS(1981), - [anon_sym_group] = ACTIONS(1981), - [anon_sym_by] = ACTIONS(1981), - [anon_sym_select] = ACTIONS(1981), - [anon_sym_as] = ACTIONS(1981), - [anon_sym_is] = ACTIONS(1981), - [anon_sym_DASH_GT] = ACTIONS(1981), - [anon_sym_with] = ACTIONS(1981), - [aux_sym_preproc_if_token3] = ACTIONS(1981), - [aux_sym_preproc_else_token1] = ACTIONS(1981), - [aux_sym_preproc_elif_token1] = ACTIONS(1981), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - }, - [3010] = { - [sym_preproc_region] = STATE(3010), - [sym_preproc_endregion] = STATE(3010), - [sym_preproc_line] = STATE(3010), - [sym_preproc_pragma] = STATE(3010), - [sym_preproc_nullable] = STATE(3010), - [sym_preproc_error] = STATE(3010), - [sym_preproc_warning] = STATE(3010), - [sym_preproc_define] = STATE(3010), - [sym_preproc_undef] = STATE(3010), [anon_sym_SEMI] = ACTIONS(5064), [anon_sym_LBRACK] = ACTIONS(5064), [anon_sym_COLON] = ACTIONS(5064), @@ -471064,16 +470534,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [3010] = { + [sym_preproc_region] = STATE(3010), + [sym_preproc_endregion] = STATE(3010), + [sym_preproc_line] = STATE(3010), + [sym_preproc_pragma] = STATE(3010), + [sym_preproc_nullable] = STATE(3010), + [sym_preproc_error] = STATE(3010), + [sym_preproc_warning] = STATE(3010), + [sym_preproc_define] = STATE(3010), + [sym_preproc_undef] = STATE(3010), [anon_sym_SEMI] = ACTIONS(5068), [anon_sym_LBRACK] = ACTIONS(5068), [anon_sym_COLON] = ACTIONS(5068), @@ -471142,172 +470612,16 @@ 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), - [anon_sym_SEMI] = ACTIONS(4018), - [anon_sym_LBRACK] = ACTIONS(4066), - [anon_sym_COLON] = ACTIONS(4018), - [anon_sym_COMMA] = ACTIONS(4018), - [anon_sym_RBRACK] = ACTIONS(4018), - [anon_sym_LPAREN] = ACTIONS(4018), - [anon_sym_RPAREN] = ACTIONS(4018), - [anon_sym_LBRACE] = ACTIONS(4018), - [anon_sym_RBRACE] = ACTIONS(4018), - [anon_sym_LT] = ACTIONS(4016), - [anon_sym_GT] = ACTIONS(4016), - [anon_sym_in] = ACTIONS(4018), - [anon_sym_where] = ACTIONS(4018), - [anon_sym_QMARK] = ACTIONS(4016), - [anon_sym_BANG] = ACTIONS(4016), - [anon_sym_PLUS_PLUS] = ACTIONS(4018), - [anon_sym_DASH_DASH] = ACTIONS(4018), - [anon_sym_PLUS] = ACTIONS(4016), - [anon_sym_DASH] = ACTIONS(4016), - [anon_sym_STAR] = ACTIONS(4072), - [anon_sym_SLASH] = ACTIONS(4016), - [anon_sym_PERCENT] = ACTIONS(4018), - [anon_sym_CARET] = ACTIONS(4018), - [anon_sym_PIPE] = ACTIONS(4016), - [anon_sym_AMP] = ACTIONS(4016), - [anon_sym_LT_LT] = ACTIONS(4018), - [anon_sym_GT_GT] = ACTIONS(4016), - [anon_sym_GT_GT_GT] = ACTIONS(4018), - [anon_sym_EQ_EQ] = ACTIONS(4018), - [anon_sym_BANG_EQ] = ACTIONS(4018), - [anon_sym_GT_EQ] = ACTIONS(4018), - [anon_sym_LT_EQ] = ACTIONS(4018), - [anon_sym_DOT] = ACTIONS(4016), - [anon_sym_EQ_GT] = ACTIONS(4018), - [anon_sym_switch] = ACTIONS(4018), - [anon_sym_DOT_DOT] = ACTIONS(4018), - [anon_sym_and] = ACTIONS(4018), - [anon_sym_or] = ACTIONS(4016), - [anon_sym_AMP_AMP] = ACTIONS(4018), - [anon_sym_PIPE_PIPE] = ACTIONS(4018), - [anon_sym_QMARK_QMARK] = ACTIONS(4018), - [anon_sym_from] = 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_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(4018), - [anon_sym_with] = ACTIONS(4018), - [aux_sym_preproc_if_token3] = ACTIONS(4018), - [aux_sym_preproc_else_token1] = ACTIONS(4018), - [aux_sym_preproc_elif_token1] = 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), - }, - [3013] = { - [sym_preproc_region] = STATE(3013), - [sym_preproc_endregion] = STATE(3013), - [sym_preproc_line] = STATE(3013), - [sym_preproc_pragma] = STATE(3013), - [sym_preproc_nullable] = STATE(3013), - [sym_preproc_error] = STATE(3013), - [sym_preproc_warning] = STATE(3013), - [sym_preproc_define] = STATE(3013), - [sym_preproc_undef] = STATE(3013), - [anon_sym_SEMI] = ACTIONS(4122), - [anon_sym_LBRACK] = ACTIONS(4122), - [anon_sym_COLON] = ACTIONS(4122), - [anon_sym_COMMA] = ACTIONS(4122), - [anon_sym_RBRACK] = ACTIONS(4122), - [anon_sym_LPAREN] = ACTIONS(4122), - [anon_sym_RPAREN] = ACTIONS(4122), - [anon_sym_LBRACE] = ACTIONS(4122), - [anon_sym_RBRACE] = ACTIONS(4122), - [anon_sym_LT] = ACTIONS(4120), - [anon_sym_GT] = ACTIONS(4120), - [anon_sym_in] = ACTIONS(4122), - [anon_sym_where] = ACTIONS(4122), - [anon_sym_QMARK] = ACTIONS(4120), - [anon_sym_BANG] = ACTIONS(4120), - [anon_sym_PLUS_PLUS] = ACTIONS(4122), - [anon_sym_DASH_DASH] = ACTIONS(4122), - [anon_sym_PLUS] = ACTIONS(4120), - [anon_sym_DASH] = ACTIONS(4120), - [anon_sym_STAR] = ACTIONS(4122), - [anon_sym_SLASH] = ACTIONS(4120), - [anon_sym_PERCENT] = ACTIONS(4122), - [anon_sym_CARET] = ACTIONS(4122), - [anon_sym_PIPE] = ACTIONS(4120), - [anon_sym_AMP] = ACTIONS(4120), - [anon_sym_LT_LT] = ACTIONS(4122), - [anon_sym_GT_GT] = ACTIONS(4120), - [anon_sym_GT_GT_GT] = ACTIONS(4122), - [anon_sym_EQ_EQ] = ACTIONS(4122), - [anon_sym_BANG_EQ] = ACTIONS(4122), - [anon_sym_GT_EQ] = ACTIONS(4122), - [anon_sym_LT_EQ] = ACTIONS(4122), - [anon_sym_DOT] = ACTIONS(4120), - [anon_sym_EQ_GT] = ACTIONS(4122), - [anon_sym_switch] = ACTIONS(4122), - [anon_sym_DOT_DOT] = ACTIONS(4122), - [anon_sym_and] = ACTIONS(4122), - [anon_sym_or] = ACTIONS(4120), - [anon_sym_AMP_AMP] = ACTIONS(4122), - [anon_sym_PIPE_PIPE] = ACTIONS(4122), - [anon_sym_QMARK_QMARK] = ACTIONS(4122), - [anon_sym_from] = ACTIONS(4122), - [anon_sym_join] = ACTIONS(4122), - [anon_sym_on] = ACTIONS(4122), - [anon_sym_equals] = ACTIONS(4122), - [anon_sym_let] = ACTIONS(4122), - [anon_sym_orderby] = ACTIONS(4122), - [anon_sym_group] = ACTIONS(4122), - [anon_sym_by] = ACTIONS(4122), - [anon_sym_select] = ACTIONS(4122), - [anon_sym_as] = ACTIONS(4122), - [anon_sym_is] = ACTIONS(4122), - [anon_sym_DASH_GT] = ACTIONS(4122), - [anon_sym_with] = ACTIONS(4122), - [aux_sym_preproc_if_token3] = ACTIONS(4122), - [aux_sym_preproc_else_token1] = ACTIONS(4122), - [aux_sym_preproc_elif_token1] = ACTIONS(4122), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - }, - [3014] = { - [sym_preproc_region] = STATE(3014), - [sym_preproc_endregion] = STATE(3014), - [sym_preproc_line] = STATE(3014), - [sym_preproc_pragma] = STATE(3014), - [sym_preproc_nullable] = STATE(3014), - [sym_preproc_error] = STATE(3014), - [sym_preproc_warning] = STATE(3014), - [sym_preproc_define] = STATE(3014), - [sym_preproc_undef] = STATE(3014), + [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(5072), [anon_sym_LBRACK] = ACTIONS(5072), [anon_sym_COLON] = ACTIONS(5072), @@ -471376,16 +470690,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [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), [anon_sym_SEMI] = ACTIONS(5076), [anon_sym_LBRACK] = ACTIONS(5076), [anon_sym_COLON] = ACTIONS(5076), @@ -471454,16 +470768,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), + [3013] = { + [sym_preproc_region] = STATE(3013), + [sym_preproc_endregion] = STATE(3013), + [sym_preproc_line] = STATE(3013), + [sym_preproc_pragma] = STATE(3013), + [sym_preproc_nullable] = STATE(3013), + [sym_preproc_error] = STATE(3013), + [sym_preproc_warning] = STATE(3013), + [sym_preproc_define] = STATE(3013), + [sym_preproc_undef] = STATE(3013), [anon_sym_SEMI] = ACTIONS(5080), [anon_sym_LBRACK] = ACTIONS(5080), [anon_sym_COLON] = ACTIONS(5080), @@ -471532,6 +470846,240 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), }, + [3014] = { + [sym_preproc_region] = STATE(3014), + [sym_preproc_endregion] = STATE(3014), + [sym_preproc_line] = STATE(3014), + [sym_preproc_pragma] = STATE(3014), + [sym_preproc_nullable] = STATE(3014), + [sym_preproc_error] = STATE(3014), + [sym_preproc_warning] = STATE(3014), + [sym_preproc_define] = STATE(3014), + [sym_preproc_undef] = STATE(3014), + [anon_sym_SEMI] = ACTIONS(5084), + [anon_sym_LBRACK] = ACTIONS(5084), + [anon_sym_COLON] = ACTIONS(5084), + [anon_sym_COMMA] = ACTIONS(5084), + [anon_sym_RBRACK] = ACTIONS(5084), + [anon_sym_LPAREN] = ACTIONS(5084), + [anon_sym_RPAREN] = ACTIONS(5084), + [anon_sym_RBRACE] = ACTIONS(5084), + [anon_sym_LT] = ACTIONS(5086), + [anon_sym_GT] = ACTIONS(5086), + [anon_sym_in] = ACTIONS(5086), + [anon_sym_where] = ACTIONS(5084), + [anon_sym_QMARK] = ACTIONS(5086), + [anon_sym_BANG] = ACTIONS(5086), + [anon_sym_PLUS_PLUS] = ACTIONS(5084), + [anon_sym_DASH_DASH] = ACTIONS(5084), + [anon_sym_PLUS] = ACTIONS(5086), + [anon_sym_DASH] = ACTIONS(5086), + [anon_sym_STAR] = ACTIONS(5084), + [anon_sym_SLASH] = ACTIONS(5086), + [anon_sym_PERCENT] = ACTIONS(5084), + [anon_sym_CARET] = ACTIONS(5084), + [anon_sym_PIPE] = ACTIONS(5086), + [anon_sym_AMP] = ACTIONS(5086), + [anon_sym_LT_LT] = ACTIONS(5084), + [anon_sym_GT_GT] = ACTIONS(5086), + [anon_sym_GT_GT_GT] = ACTIONS(5084), + [anon_sym_EQ_EQ] = ACTIONS(5084), + [anon_sym_BANG_EQ] = ACTIONS(5084), + [anon_sym_GT_EQ] = ACTIONS(5084), + [anon_sym_LT_EQ] = ACTIONS(5084), + [anon_sym_DOT] = ACTIONS(5086), + [anon_sym_EQ_GT] = ACTIONS(5084), + [anon_sym_switch] = ACTIONS(5084), + [anon_sym_DOT_DOT] = ACTIONS(5084), + [anon_sym_and] = ACTIONS(5084), + [anon_sym_or] = ACTIONS(5086), + [anon_sym_AMP_AMP] = ACTIONS(5084), + [anon_sym_PIPE_PIPE] = ACTIONS(5084), + [anon_sym_QMARK_QMARK] = ACTIONS(5084), + [anon_sym_from] = ACTIONS(5084), + [anon_sym_into] = ACTIONS(5084), + [anon_sym_join] = ACTIONS(5084), + [anon_sym_on] = ACTIONS(5084), + [anon_sym_equals] = ACTIONS(5084), + [anon_sym_let] = ACTIONS(5084), + [anon_sym_orderby] = ACTIONS(5084), + [anon_sym_group] = ACTIONS(5084), + [anon_sym_by] = ACTIONS(5084), + [anon_sym_select] = ACTIONS(5084), + [anon_sym_as] = ACTIONS(5084), + [anon_sym_is] = ACTIONS(5084), + [anon_sym_DASH_GT] = ACTIONS(5084), + [anon_sym_with] = ACTIONS(5084), + [aux_sym_preproc_if_token3] = ACTIONS(5084), + [aux_sym_preproc_else_token1] = ACTIONS(5084), + [aux_sym_preproc_elif_token1] = ACTIONS(5084), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_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(4090), + [anon_sym_LBRACK] = ACTIONS(4090), + [anon_sym_COLON] = ACTIONS(4090), + [anon_sym_COMMA] = ACTIONS(4090), + [anon_sym_RBRACK] = ACTIONS(4090), + [anon_sym_LPAREN] = ACTIONS(4090), + [anon_sym_RPAREN] = ACTIONS(4090), + [anon_sym_LBRACE] = ACTIONS(4090), + [anon_sym_RBRACE] = ACTIONS(4090), + [anon_sym_LT] = ACTIONS(4088), + [anon_sym_GT] = ACTIONS(4088), + [anon_sym_in] = ACTIONS(4090), + [anon_sym_where] = ACTIONS(4090), + [anon_sym_QMARK] = ACTIONS(4088), + [anon_sym_BANG] = ACTIONS(4088), + [anon_sym_PLUS_PLUS] = ACTIONS(4090), + [anon_sym_DASH_DASH] = ACTIONS(4090), + [anon_sym_PLUS] = ACTIONS(4088), + [anon_sym_DASH] = ACTIONS(4088), + [anon_sym_STAR] = ACTIONS(4090), + [anon_sym_SLASH] = ACTIONS(4088), + [anon_sym_PERCENT] = ACTIONS(4090), + [anon_sym_CARET] = ACTIONS(4090), + [anon_sym_PIPE] = ACTIONS(4088), + [anon_sym_AMP] = ACTIONS(4088), + [anon_sym_LT_LT] = ACTIONS(4090), + [anon_sym_GT_GT] = ACTIONS(4088), + [anon_sym_GT_GT_GT] = ACTIONS(4090), + [anon_sym_EQ_EQ] = ACTIONS(4090), + [anon_sym_BANG_EQ] = ACTIONS(4090), + [anon_sym_GT_EQ] = ACTIONS(4090), + [anon_sym_LT_EQ] = ACTIONS(4090), + [anon_sym_DOT] = ACTIONS(4088), + [anon_sym_EQ_GT] = ACTIONS(4090), + [anon_sym_switch] = ACTIONS(4090), + [anon_sym_DOT_DOT] = ACTIONS(4090), + [anon_sym_and] = ACTIONS(4090), + [anon_sym_or] = ACTIONS(4088), + [anon_sym_AMP_AMP] = ACTIONS(4090), + [anon_sym_PIPE_PIPE] = ACTIONS(4090), + [anon_sym_QMARK_QMARK] = ACTIONS(4090), + [anon_sym_from] = ACTIONS(4090), + [anon_sym_join] = ACTIONS(4090), + [anon_sym_on] = ACTIONS(4090), + [anon_sym_equals] = ACTIONS(4090), + [anon_sym_let] = ACTIONS(4090), + [anon_sym_orderby] = ACTIONS(4090), + [anon_sym_group] = ACTIONS(4090), + [anon_sym_by] = ACTIONS(4090), + [anon_sym_select] = ACTIONS(4090), + [anon_sym_as] = ACTIONS(4090), + [anon_sym_is] = ACTIONS(4090), + [anon_sym_DASH_GT] = ACTIONS(4090), + [anon_sym_with] = ACTIONS(4090), + [aux_sym_preproc_if_token3] = ACTIONS(4090), + [aux_sym_preproc_else_token1] = ACTIONS(4090), + [aux_sym_preproc_elif_token1] = ACTIONS(4090), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [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(5088), + [anon_sym_LBRACK] = ACTIONS(5088), + [anon_sym_COLON] = ACTIONS(5088), + [anon_sym_COMMA] = ACTIONS(5088), + [anon_sym_RBRACK] = ACTIONS(5088), + [anon_sym_LPAREN] = ACTIONS(5088), + [anon_sym_RPAREN] = ACTIONS(5088), + [anon_sym_RBRACE] = ACTIONS(5088), + [anon_sym_LT] = ACTIONS(5090), + [anon_sym_GT] = ACTIONS(5090), + [anon_sym_in] = ACTIONS(5090), + [anon_sym_where] = ACTIONS(5088), + [anon_sym_QMARK] = ACTIONS(5090), + [anon_sym_BANG] = ACTIONS(5090), + [anon_sym_PLUS_PLUS] = ACTIONS(5088), + [anon_sym_DASH_DASH] = ACTIONS(5088), + [anon_sym_PLUS] = ACTIONS(5090), + [anon_sym_DASH] = ACTIONS(5090), + [anon_sym_STAR] = ACTIONS(5088), + [anon_sym_SLASH] = ACTIONS(5090), + [anon_sym_PERCENT] = ACTIONS(5088), + [anon_sym_CARET] = ACTIONS(5088), + [anon_sym_PIPE] = ACTIONS(5090), + [anon_sym_AMP] = ACTIONS(5090), + [anon_sym_LT_LT] = ACTIONS(5088), + [anon_sym_GT_GT] = ACTIONS(5090), + [anon_sym_GT_GT_GT] = ACTIONS(5088), + [anon_sym_EQ_EQ] = ACTIONS(5088), + [anon_sym_BANG_EQ] = ACTIONS(5088), + [anon_sym_GT_EQ] = ACTIONS(5088), + [anon_sym_LT_EQ] = ACTIONS(5088), + [anon_sym_DOT] = ACTIONS(5090), + [anon_sym_EQ_GT] = ACTIONS(5088), + [anon_sym_switch] = ACTIONS(5088), + [anon_sym_DOT_DOT] = ACTIONS(5088), + [anon_sym_and] = ACTIONS(5088), + [anon_sym_or] = ACTIONS(5090), + [anon_sym_AMP_AMP] = ACTIONS(5088), + [anon_sym_PIPE_PIPE] = ACTIONS(5088), + [anon_sym_QMARK_QMARK] = ACTIONS(5088), + [anon_sym_from] = ACTIONS(5088), + [anon_sym_into] = ACTIONS(5088), + [anon_sym_join] = ACTIONS(5088), + [anon_sym_on] = ACTIONS(5088), + [anon_sym_equals] = ACTIONS(5088), + [anon_sym_let] = ACTIONS(5088), + [anon_sym_orderby] = ACTIONS(5088), + [anon_sym_group] = ACTIONS(5088), + [anon_sym_by] = ACTIONS(5088), + [anon_sym_select] = ACTIONS(5088), + [anon_sym_as] = ACTIONS(5088), + [anon_sym_is] = ACTIONS(5088), + [anon_sym_DASH_GT] = ACTIONS(5088), + [anon_sym_with] = ACTIONS(5088), + [aux_sym_preproc_if_token3] = ACTIONS(5088), + [aux_sym_preproc_else_token1] = ACTIONS(5088), + [aux_sym_preproc_elif_token1] = ACTIONS(5088), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_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), @@ -471542,63 +471090,63 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3017), [sym_preproc_define] = STATE(3017), [sym_preproc_undef] = STATE(3017), - [anon_sym_SEMI] = ACTIONS(2953), - [anon_sym_LBRACK] = ACTIONS(2953), - [anon_sym_COLON] = ACTIONS(2953), - [anon_sym_COMMA] = ACTIONS(2953), - [anon_sym_RBRACK] = ACTIONS(2953), - [anon_sym_LPAREN] = ACTIONS(2953), - [anon_sym_RPAREN] = ACTIONS(2953), - [anon_sym_RBRACE] = ACTIONS(2953), - [anon_sym_LT] = ACTIONS(2951), - [anon_sym_GT] = ACTIONS(2951), - [anon_sym_in] = ACTIONS(2951), - [anon_sym_where] = ACTIONS(2953), - [anon_sym_QMARK] = ACTIONS(2951), - [anon_sym_BANG] = ACTIONS(2951), - [anon_sym_PLUS_PLUS] = ACTIONS(2953), - [anon_sym_DASH_DASH] = ACTIONS(2953), - [anon_sym_PLUS] = ACTIONS(2951), - [anon_sym_DASH] = ACTIONS(2951), - [anon_sym_STAR] = ACTIONS(2953), - [anon_sym_SLASH] = ACTIONS(2951), - [anon_sym_PERCENT] = ACTIONS(2953), - [anon_sym_CARET] = ACTIONS(2953), - [anon_sym_PIPE] = ACTIONS(2951), - [anon_sym_AMP] = ACTIONS(2951), - [anon_sym_LT_LT] = ACTIONS(2953), - [anon_sym_GT_GT] = ACTIONS(2951), - [anon_sym_GT_GT_GT] = ACTIONS(2953), - [anon_sym_EQ_EQ] = ACTIONS(2953), - [anon_sym_BANG_EQ] = ACTIONS(2953), - [anon_sym_GT_EQ] = ACTIONS(2953), - [anon_sym_LT_EQ] = ACTIONS(2953), - [anon_sym_DOT] = ACTIONS(2951), - [anon_sym_EQ_GT] = ACTIONS(2953), - [anon_sym_switch] = ACTIONS(2953), - [anon_sym_DOT_DOT] = ACTIONS(2953), - [anon_sym_and] = ACTIONS(2953), - [anon_sym_or] = ACTIONS(2951), - [anon_sym_AMP_AMP] = ACTIONS(2953), - [anon_sym_PIPE_PIPE] = ACTIONS(2953), - [anon_sym_QMARK_QMARK] = ACTIONS(2953), - [anon_sym_from] = ACTIONS(2953), - [anon_sym_into] = ACTIONS(2953), - [anon_sym_join] = ACTIONS(2953), - [anon_sym_on] = ACTIONS(2953), - [anon_sym_equals] = ACTIONS(2953), - [anon_sym_let] = ACTIONS(2953), - [anon_sym_orderby] = ACTIONS(2953), - [anon_sym_group] = ACTIONS(2953), - [anon_sym_by] = ACTIONS(2953), - [anon_sym_select] = ACTIONS(2953), - [anon_sym_as] = ACTIONS(2953), - [anon_sym_is] = ACTIONS(2953), - [anon_sym_DASH_GT] = ACTIONS(2953), - [anon_sym_with] = ACTIONS(2953), - [aux_sym_preproc_if_token3] = ACTIONS(2953), - [aux_sym_preproc_else_token1] = ACTIONS(2953), - [aux_sym_preproc_elif_token1] = ACTIONS(2953), + [anon_sym_SEMI] = ACTIONS(5092), + [anon_sym_LBRACK] = ACTIONS(5092), + [anon_sym_COLON] = ACTIONS(5092), + [anon_sym_COMMA] = ACTIONS(5092), + [anon_sym_RBRACK] = ACTIONS(5092), + [anon_sym_LPAREN] = ACTIONS(5092), + [anon_sym_RPAREN] = ACTIONS(5092), + [anon_sym_RBRACE] = ACTIONS(5092), + [anon_sym_LT] = ACTIONS(5094), + [anon_sym_GT] = ACTIONS(5094), + [anon_sym_in] = ACTIONS(5094), + [anon_sym_where] = ACTIONS(5092), + [anon_sym_QMARK] = ACTIONS(5094), + [anon_sym_BANG] = ACTIONS(5094), + [anon_sym_PLUS_PLUS] = ACTIONS(5092), + [anon_sym_DASH_DASH] = ACTIONS(5092), + [anon_sym_PLUS] = ACTIONS(5094), + [anon_sym_DASH] = ACTIONS(5094), + [anon_sym_STAR] = ACTIONS(5092), + [anon_sym_SLASH] = ACTIONS(5094), + [anon_sym_PERCENT] = ACTIONS(5092), + [anon_sym_CARET] = ACTIONS(5092), + [anon_sym_PIPE] = ACTIONS(5094), + [anon_sym_AMP] = ACTIONS(5094), + [anon_sym_LT_LT] = ACTIONS(5092), + [anon_sym_GT_GT] = ACTIONS(5094), + [anon_sym_GT_GT_GT] = ACTIONS(5092), + [anon_sym_EQ_EQ] = ACTIONS(5092), + [anon_sym_BANG_EQ] = ACTIONS(5092), + [anon_sym_GT_EQ] = ACTIONS(5092), + [anon_sym_LT_EQ] = ACTIONS(5092), + [anon_sym_DOT] = ACTIONS(5094), + [anon_sym_EQ_GT] = ACTIONS(5092), + [anon_sym_switch] = ACTIONS(5092), + [anon_sym_DOT_DOT] = ACTIONS(5092), + [anon_sym_and] = ACTIONS(5092), + [anon_sym_or] = ACTIONS(5094), + [anon_sym_AMP_AMP] = ACTIONS(5092), + [anon_sym_PIPE_PIPE] = ACTIONS(5092), + [anon_sym_QMARK_QMARK] = ACTIONS(5092), + [anon_sym_from] = ACTIONS(5092), + [anon_sym_into] = ACTIONS(5092), + [anon_sym_join] = ACTIONS(5092), + [anon_sym_on] = ACTIONS(5092), + [anon_sym_equals] = ACTIONS(5092), + [anon_sym_let] = ACTIONS(5092), + [anon_sym_orderby] = ACTIONS(5092), + [anon_sym_group] = ACTIONS(5092), + [anon_sym_by] = ACTIONS(5092), + [anon_sym_select] = ACTIONS(5092), + [anon_sym_as] = ACTIONS(5092), + [anon_sym_is] = ACTIONS(5092), + [anon_sym_DASH_GT] = ACTIONS(5092), + [anon_sym_with] = ACTIONS(5092), + [aux_sym_preproc_if_token3] = ACTIONS(5092), + [aux_sym_preproc_else_token1] = ACTIONS(5092), + [aux_sym_preproc_elif_token1] = ACTIONS(5092), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -471620,63 +471168,63 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3018), [sym_preproc_define] = STATE(3018), [sym_preproc_undef] = STATE(3018), - [sym__identifier_token] = ACTIONS(3479), - [anon_sym_extern] = ACTIONS(3482), - [anon_sym_alias] = ACTIONS(3479), - [anon_sym_global] = ACTIONS(3479), - [anon_sym_unsafe] = ACTIONS(3482), - [anon_sym_static] = ACTIONS(3482), - [anon_sym_LBRACK] = ACTIONS(3445), - [anon_sym_LPAREN] = ACTIONS(5084), - [anon_sym_class] = ACTIONS(3482), - [anon_sym_ref] = ACTIONS(3482), - [anon_sym_struct] = ACTIONS(3482), - [anon_sym_enum] = ACTIONS(3482), - [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(3479), - [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_LT] = ACTIONS(3445), - [anon_sym_where] = ACTIONS(3479), - [anon_sym_QMARK] = ACTIONS(3445), - [anon_sym_notnull] = ACTIONS(3479), - [anon_sym_unmanaged] = ACTIONS(3479), - [anon_sym_STAR] = ACTIONS(3445), - [anon_sym_DOT] = ACTIONS(3445), - [anon_sym_scoped] = ACTIONS(3479), - [anon_sym_COLON_COLON] = ACTIONS(3445), - [anon_sym_var] = ACTIONS(3479), - [sym_predefined_type] = ACTIONS(3482), - [anon_sym_yield] = ACTIONS(3479), - [anon_sym_when] = ACTIONS(3479), - [anon_sym_from] = ACTIONS(3479), - [anon_sym_into] = ACTIONS(3479), - [anon_sym_join] = ACTIONS(3479), - [anon_sym_on] = ACTIONS(3479), - [anon_sym_equals] = ACTIONS(3479), - [anon_sym_let] = ACTIONS(3479), - [anon_sym_orderby] = ACTIONS(3479), - [anon_sym_ascending] = ACTIONS(3479), - [anon_sym_descending] = ACTIONS(3479), - [anon_sym_group] = ACTIONS(3479), - [anon_sym_by] = ACTIONS(3479), - [anon_sym_select] = ACTIONS(3479), + [anon_sym_SEMI] = ACTIONS(3957), + [anon_sym_LBRACK] = ACTIONS(3957), + [anon_sym_COLON] = ACTIONS(3957), + [anon_sym_COMMA] = ACTIONS(3957), + [anon_sym_RBRACK] = ACTIONS(3957), + [anon_sym_LPAREN] = ACTIONS(3957), + [anon_sym_RPAREN] = ACTIONS(3957), + [anon_sym_LBRACE] = ACTIONS(3957), + [anon_sym_RBRACE] = ACTIONS(3957), + [anon_sym_LT] = ACTIONS(3955), + [anon_sym_GT] = ACTIONS(3955), + [anon_sym_in] = ACTIONS(3957), + [anon_sym_where] = ACTIONS(3957), + [anon_sym_QMARK] = ACTIONS(3955), + [anon_sym_BANG] = ACTIONS(3955), + [anon_sym_PLUS_PLUS] = ACTIONS(3957), + [anon_sym_DASH_DASH] = ACTIONS(3957), + [anon_sym_PLUS] = ACTIONS(3955), + [anon_sym_DASH] = ACTIONS(3955), + [anon_sym_STAR] = ACTIONS(3957), + [anon_sym_SLASH] = ACTIONS(3955), + [anon_sym_PERCENT] = ACTIONS(3957), + [anon_sym_CARET] = ACTIONS(3957), + [anon_sym_PIPE] = ACTIONS(3955), + [anon_sym_AMP] = ACTIONS(3955), + [anon_sym_LT_LT] = ACTIONS(3957), + [anon_sym_GT_GT] = ACTIONS(3955), + [anon_sym_GT_GT_GT] = ACTIONS(3957), + [anon_sym_EQ_EQ] = ACTIONS(3957), + [anon_sym_BANG_EQ] = ACTIONS(3957), + [anon_sym_GT_EQ] = ACTIONS(3957), + [anon_sym_LT_EQ] = ACTIONS(3957), + [anon_sym_DOT] = ACTIONS(3955), + [anon_sym_EQ_GT] = ACTIONS(3957), + [anon_sym_switch] = ACTIONS(3957), + [anon_sym_DOT_DOT] = ACTIONS(3957), + [anon_sym_and] = ACTIONS(3957), + [anon_sym_or] = ACTIONS(3955), + [anon_sym_AMP_AMP] = ACTIONS(3957), + [anon_sym_PIPE_PIPE] = ACTIONS(3957), + [anon_sym_QMARK_QMARK] = ACTIONS(3957), + [anon_sym_from] = ACTIONS(3957), + [anon_sym_join] = ACTIONS(3957), + [anon_sym_on] = ACTIONS(3957), + [anon_sym_equals] = ACTIONS(3957), + [anon_sym_let] = ACTIONS(3957), + [anon_sym_orderby] = ACTIONS(3957), + [anon_sym_group] = ACTIONS(3957), + [anon_sym_by] = ACTIONS(3957), + [anon_sym_select] = ACTIONS(3957), + [anon_sym_as] = ACTIONS(3957), + [anon_sym_is] = ACTIONS(3957), + [anon_sym_DASH_GT] = ACTIONS(3957), + [anon_sym_with] = ACTIONS(3957), + [aux_sym_preproc_if_token3] = ACTIONS(3957), + [aux_sym_preproc_else_token1] = ACTIONS(3957), + [aux_sym_preproc_elif_token1] = ACTIONS(3957), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -471698,63 +471246,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(5086), - [anon_sym_LBRACK] = ACTIONS(5086), - [anon_sym_COLON] = ACTIONS(5086), - [anon_sym_COMMA] = ACTIONS(5086), - [anon_sym_RBRACK] = ACTIONS(5086), - [anon_sym_LPAREN] = ACTIONS(5086), - [anon_sym_RPAREN] = ACTIONS(5086), - [anon_sym_RBRACE] = ACTIONS(5086), - [anon_sym_LT] = ACTIONS(5088), - [anon_sym_GT] = ACTIONS(5088), - [anon_sym_in] = ACTIONS(5088), - [anon_sym_where] = ACTIONS(5086), - [anon_sym_QMARK] = ACTIONS(5088), - [anon_sym_BANG] = ACTIONS(5088), - [anon_sym_PLUS_PLUS] = ACTIONS(5086), - [anon_sym_DASH_DASH] = ACTIONS(5086), - [anon_sym_PLUS] = ACTIONS(5088), - [anon_sym_DASH] = ACTIONS(5088), - [anon_sym_STAR] = ACTIONS(5086), - [anon_sym_SLASH] = ACTIONS(5088), - [anon_sym_PERCENT] = ACTIONS(5086), - [anon_sym_CARET] = ACTIONS(5086), - [anon_sym_PIPE] = ACTIONS(5088), - [anon_sym_AMP] = ACTIONS(5088), - [anon_sym_LT_LT] = ACTIONS(5086), - [anon_sym_GT_GT] = ACTIONS(5088), - [anon_sym_GT_GT_GT] = ACTIONS(5086), - [anon_sym_EQ_EQ] = ACTIONS(5086), - [anon_sym_BANG_EQ] = ACTIONS(5086), - [anon_sym_GT_EQ] = ACTIONS(5086), - [anon_sym_LT_EQ] = ACTIONS(5086), - [anon_sym_DOT] = ACTIONS(5088), - [anon_sym_EQ_GT] = ACTIONS(5086), - [anon_sym_switch] = ACTIONS(5086), - [anon_sym_DOT_DOT] = ACTIONS(5086), - [anon_sym_and] = ACTIONS(5086), - [anon_sym_or] = ACTIONS(5088), - [anon_sym_AMP_AMP] = ACTIONS(5086), - [anon_sym_PIPE_PIPE] = ACTIONS(5086), - [anon_sym_QMARK_QMARK] = ACTIONS(5086), - [anon_sym_from] = ACTIONS(5086), - [anon_sym_into] = ACTIONS(5086), - [anon_sym_join] = ACTIONS(5086), - [anon_sym_on] = ACTIONS(5086), - [anon_sym_equals] = ACTIONS(5086), - [anon_sym_let] = ACTIONS(5086), - [anon_sym_orderby] = ACTIONS(5086), - [anon_sym_group] = ACTIONS(5086), - [anon_sym_by] = ACTIONS(5086), - [anon_sym_select] = ACTIONS(5086), - [anon_sym_as] = ACTIONS(5086), - [anon_sym_is] = ACTIONS(5086), - [anon_sym_DASH_GT] = ACTIONS(5086), - [anon_sym_with] = ACTIONS(5086), - [aux_sym_preproc_if_token3] = ACTIONS(5086), - [aux_sym_preproc_else_token1] = ACTIONS(5086), - [aux_sym_preproc_elif_token1] = ACTIONS(5086), + [anon_sym_SEMI] = ACTIONS(5096), + [anon_sym_LBRACK] = ACTIONS(5096), + [anon_sym_COLON] = ACTIONS(5096), + [anon_sym_COMMA] = ACTIONS(5096), + [anon_sym_RBRACK] = ACTIONS(5096), + [anon_sym_LPAREN] = ACTIONS(5096), + [anon_sym_RPAREN] = ACTIONS(5096), + [anon_sym_RBRACE] = ACTIONS(5096), + [anon_sym_LT] = ACTIONS(5098), + [anon_sym_GT] = ACTIONS(5098), + [anon_sym_in] = ACTIONS(5098), + [anon_sym_where] = ACTIONS(5096), + [anon_sym_QMARK] = ACTIONS(5098), + [anon_sym_BANG] = ACTIONS(5098), + [anon_sym_PLUS_PLUS] = ACTIONS(5096), + [anon_sym_DASH_DASH] = ACTIONS(5096), + [anon_sym_PLUS] = ACTIONS(5098), + [anon_sym_DASH] = ACTIONS(5098), + [anon_sym_STAR] = ACTIONS(5096), + [anon_sym_SLASH] = ACTIONS(5098), + [anon_sym_PERCENT] = ACTIONS(5096), + [anon_sym_CARET] = ACTIONS(5096), + [anon_sym_PIPE] = ACTIONS(5098), + [anon_sym_AMP] = ACTIONS(5098), + [anon_sym_LT_LT] = ACTIONS(5096), + [anon_sym_GT_GT] = ACTIONS(5098), + [anon_sym_GT_GT_GT] = ACTIONS(5096), + [anon_sym_EQ_EQ] = ACTIONS(5096), + [anon_sym_BANG_EQ] = ACTIONS(5096), + [anon_sym_GT_EQ] = ACTIONS(5096), + [anon_sym_LT_EQ] = ACTIONS(5096), + [anon_sym_DOT] = ACTIONS(5098), + [anon_sym_EQ_GT] = ACTIONS(5096), + [anon_sym_switch] = ACTIONS(5096), + [anon_sym_DOT_DOT] = ACTIONS(5096), + [anon_sym_and] = ACTIONS(5096), + [anon_sym_or] = ACTIONS(5098), + [anon_sym_AMP_AMP] = ACTIONS(5096), + [anon_sym_PIPE_PIPE] = ACTIONS(5096), + [anon_sym_QMARK_QMARK] = ACTIONS(5096), + [anon_sym_from] = ACTIONS(5096), + [anon_sym_into] = ACTIONS(5096), + [anon_sym_join] = ACTIONS(5096), + [anon_sym_on] = ACTIONS(5096), + [anon_sym_equals] = ACTIONS(5096), + [anon_sym_let] = ACTIONS(5096), + [anon_sym_orderby] = ACTIONS(5096), + [anon_sym_group] = ACTIONS(5096), + [anon_sym_by] = ACTIONS(5096), + [anon_sym_select] = ACTIONS(5096), + [anon_sym_as] = ACTIONS(5096), + [anon_sym_is] = ACTIONS(5096), + [anon_sym_DASH_GT] = ACTIONS(5096), + [anon_sym_with] = ACTIONS(5096), + [aux_sym_preproc_if_token3] = ACTIONS(5096), + [aux_sym_preproc_else_token1] = ACTIONS(5096), + [aux_sym_preproc_elif_token1] = ACTIONS(5096), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -471776,63 +471324,63 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3020), [sym_preproc_define] = STATE(3020), [sym_preproc_undef] = STATE(3020), - [anon_sym_SEMI] = ACTIONS(5090), - [anon_sym_LBRACK] = ACTIONS(5090), - [anon_sym_COLON] = ACTIONS(5090), - [anon_sym_COMMA] = ACTIONS(5090), - [anon_sym_RBRACK] = ACTIONS(5090), - [anon_sym_LPAREN] = ACTIONS(5090), - [anon_sym_RPAREN] = ACTIONS(5090), - [anon_sym_RBRACE] = ACTIONS(5090), - [anon_sym_LT] = ACTIONS(5092), - [anon_sym_GT] = ACTIONS(5092), - [anon_sym_in] = ACTIONS(5092), - [anon_sym_where] = ACTIONS(5090), - [anon_sym_QMARK] = ACTIONS(5092), - [anon_sym_BANG] = ACTIONS(5092), - [anon_sym_PLUS_PLUS] = ACTIONS(5090), - [anon_sym_DASH_DASH] = ACTIONS(5090), - [anon_sym_PLUS] = ACTIONS(5092), - [anon_sym_DASH] = ACTIONS(5092), - [anon_sym_STAR] = ACTIONS(5090), - [anon_sym_SLASH] = ACTIONS(5092), - [anon_sym_PERCENT] = ACTIONS(5090), - [anon_sym_CARET] = ACTIONS(5090), - [anon_sym_PIPE] = ACTIONS(5092), - [anon_sym_AMP] = ACTIONS(5092), - [anon_sym_LT_LT] = ACTIONS(5090), - [anon_sym_GT_GT] = ACTIONS(5092), - [anon_sym_GT_GT_GT] = ACTIONS(5090), - [anon_sym_EQ_EQ] = ACTIONS(5090), - [anon_sym_BANG_EQ] = ACTIONS(5090), - [anon_sym_GT_EQ] = ACTIONS(5090), - [anon_sym_LT_EQ] = ACTIONS(5090), - [anon_sym_DOT] = ACTIONS(5092), - [anon_sym_EQ_GT] = ACTIONS(5090), - [anon_sym_switch] = ACTIONS(5090), - [anon_sym_DOT_DOT] = ACTIONS(5090), - [anon_sym_and] = ACTIONS(5090), - [anon_sym_or] = ACTIONS(5092), - [anon_sym_AMP_AMP] = ACTIONS(5090), - [anon_sym_PIPE_PIPE] = ACTIONS(5090), - [anon_sym_QMARK_QMARK] = ACTIONS(5090), - [anon_sym_from] = ACTIONS(5090), - [anon_sym_into] = ACTIONS(5090), - [anon_sym_join] = ACTIONS(5090), - [anon_sym_on] = ACTIONS(5090), - [anon_sym_equals] = ACTIONS(5090), - [anon_sym_let] = ACTIONS(5090), - [anon_sym_orderby] = ACTIONS(5090), - [anon_sym_group] = ACTIONS(5090), - [anon_sym_by] = ACTIONS(5090), - [anon_sym_select] = ACTIONS(5090), - [anon_sym_as] = ACTIONS(5090), - [anon_sym_is] = ACTIONS(5090), - [anon_sym_DASH_GT] = ACTIONS(5090), - [anon_sym_with] = ACTIONS(5090), - [aux_sym_preproc_if_token3] = ACTIONS(5090), - [aux_sym_preproc_else_token1] = ACTIONS(5090), - [aux_sym_preproc_elif_token1] = ACTIONS(5090), + [anon_sym_SEMI] = ACTIONS(3661), + [anon_sym_LBRACK] = ACTIONS(3661), + [anon_sym_COLON] = ACTIONS(3661), + [anon_sym_COMMA] = ACTIONS(3661), + [anon_sym_RBRACK] = ACTIONS(3661), + [anon_sym_LPAREN] = ACTIONS(3661), + [anon_sym_RPAREN] = ACTIONS(3661), + [anon_sym_LBRACE] = ACTIONS(3661), + [anon_sym_RBRACE] = ACTIONS(3661), + [anon_sym_LT] = ACTIONS(3659), + [anon_sym_GT] = ACTIONS(3659), + [anon_sym_in] = ACTIONS(3661), + [anon_sym_where] = ACTIONS(3661), + [anon_sym_QMARK] = ACTIONS(3659), + [anon_sym_BANG] = ACTIONS(3659), + [anon_sym_PLUS_PLUS] = ACTIONS(3661), + [anon_sym_DASH_DASH] = ACTIONS(3661), + [anon_sym_PLUS] = ACTIONS(3659), + [anon_sym_DASH] = ACTIONS(3659), + [anon_sym_STAR] = ACTIONS(3661), + [anon_sym_SLASH] = ACTIONS(3659), + [anon_sym_PERCENT] = ACTIONS(3661), + [anon_sym_CARET] = ACTIONS(3661), + [anon_sym_PIPE] = ACTIONS(3659), + [anon_sym_AMP] = ACTIONS(3659), + [anon_sym_LT_LT] = ACTIONS(3661), + [anon_sym_GT_GT] = ACTIONS(3659), + [anon_sym_GT_GT_GT] = ACTIONS(3661), + [anon_sym_EQ_EQ] = ACTIONS(3661), + [anon_sym_BANG_EQ] = ACTIONS(3661), + [anon_sym_GT_EQ] = ACTIONS(3661), + [anon_sym_LT_EQ] = ACTIONS(3661), + [anon_sym_DOT] = ACTIONS(3659), + [anon_sym_EQ_GT] = ACTIONS(3661), + [anon_sym_switch] = ACTIONS(3661), + [anon_sym_DOT_DOT] = ACTIONS(3661), + [anon_sym_and] = ACTIONS(3661), + [anon_sym_or] = ACTIONS(3659), + [anon_sym_AMP_AMP] = ACTIONS(3661), + [anon_sym_PIPE_PIPE] = ACTIONS(3661), + [anon_sym_QMARK_QMARK] = ACTIONS(3661), + [anon_sym_from] = ACTIONS(3661), + [anon_sym_join] = ACTIONS(3661), + [anon_sym_on] = ACTIONS(3661), + [anon_sym_equals] = ACTIONS(3661), + [anon_sym_let] = ACTIONS(3661), + [anon_sym_orderby] = ACTIONS(3661), + [anon_sym_group] = ACTIONS(3661), + [anon_sym_by] = ACTIONS(3661), + [anon_sym_select] = ACTIONS(3661), + [anon_sym_as] = ACTIONS(3661), + [anon_sym_is] = ACTIONS(3661), + [anon_sym_DASH_GT] = ACTIONS(3661), + [anon_sym_with] = ACTIONS(3661), + [aux_sym_preproc_if_token3] = ACTIONS(3661), + [aux_sym_preproc_else_token1] = ACTIONS(3661), + [aux_sym_preproc_elif_token1] = ACTIONS(3661), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -471854,63 +471402,63 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3021), [sym_preproc_define] = STATE(3021), [sym_preproc_undef] = STATE(3021), - [anon_sym_SEMI] = ACTIONS(3143), - [anon_sym_LBRACK] = ACTIONS(3143), - [anon_sym_COLON] = ACTIONS(3143), - [anon_sym_COMMA] = ACTIONS(3143), - [anon_sym_RBRACK] = ACTIONS(3143), - [anon_sym_LPAREN] = ACTIONS(3143), - [anon_sym_RPAREN] = ACTIONS(3143), - [anon_sym_RBRACE] = ACTIONS(3143), - [anon_sym_LT] = ACTIONS(3141), - [anon_sym_GT] = ACTIONS(3141), - [anon_sym_in] = ACTIONS(3141), - [anon_sym_where] = ACTIONS(3143), - [anon_sym_QMARK] = ACTIONS(3141), - [anon_sym_BANG] = ACTIONS(3141), - [anon_sym_PLUS_PLUS] = ACTIONS(3143), - [anon_sym_DASH_DASH] = ACTIONS(3143), - [anon_sym_PLUS] = ACTIONS(3141), - [anon_sym_DASH] = ACTIONS(3141), - [anon_sym_STAR] = ACTIONS(3143), - [anon_sym_SLASH] = ACTIONS(3141), - [anon_sym_PERCENT] = ACTIONS(3143), - [anon_sym_CARET] = ACTIONS(3143), - [anon_sym_PIPE] = ACTIONS(3141), - [anon_sym_AMP] = ACTIONS(3141), - [anon_sym_LT_LT] = ACTIONS(3143), - [anon_sym_GT_GT] = ACTIONS(3141), - [anon_sym_GT_GT_GT] = ACTIONS(3143), - [anon_sym_EQ_EQ] = ACTIONS(3143), - [anon_sym_BANG_EQ] = ACTIONS(3143), - [anon_sym_GT_EQ] = ACTIONS(3143), - [anon_sym_LT_EQ] = ACTIONS(3143), - [anon_sym_DOT] = ACTIONS(3141), - [anon_sym_EQ_GT] = ACTIONS(3143), - [anon_sym_switch] = ACTIONS(3143), - [anon_sym_DOT_DOT] = ACTIONS(3143), - [anon_sym_and] = ACTIONS(3143), - [anon_sym_or] = ACTIONS(3141), - [anon_sym_AMP_AMP] = ACTIONS(3143), - [anon_sym_PIPE_PIPE] = ACTIONS(3143), - [anon_sym_QMARK_QMARK] = ACTIONS(3143), - [anon_sym_from] = ACTIONS(3143), - [anon_sym_into] = ACTIONS(3143), - [anon_sym_join] = ACTIONS(3143), - [anon_sym_on] = ACTIONS(3143), - [anon_sym_equals] = ACTIONS(3143), - [anon_sym_let] = ACTIONS(3143), - [anon_sym_orderby] = ACTIONS(3143), - [anon_sym_group] = ACTIONS(3143), - [anon_sym_by] = ACTIONS(3143), - [anon_sym_select] = ACTIONS(3143), - [anon_sym_as] = ACTIONS(3143), - [anon_sym_is] = ACTIONS(3143), - [anon_sym_DASH_GT] = ACTIONS(3143), - [anon_sym_with] = ACTIONS(3143), - [aux_sym_preproc_if_token3] = ACTIONS(3143), - [aux_sym_preproc_else_token1] = ACTIONS(3143), - [aux_sym_preproc_elif_token1] = ACTIONS(3143), + [anon_sym_SEMI] = ACTIONS(5100), + [anon_sym_LBRACK] = ACTIONS(5100), + [anon_sym_COLON] = ACTIONS(5100), + [anon_sym_COMMA] = ACTIONS(5100), + [anon_sym_RBRACK] = ACTIONS(5100), + [anon_sym_LPAREN] = ACTIONS(5100), + [anon_sym_RPAREN] = ACTIONS(5100), + [anon_sym_RBRACE] = ACTIONS(5100), + [anon_sym_LT] = ACTIONS(5102), + [anon_sym_GT] = ACTIONS(5102), + [anon_sym_in] = ACTIONS(5102), + [anon_sym_where] = ACTIONS(5100), + [anon_sym_QMARK] = ACTIONS(5102), + [anon_sym_BANG] = ACTIONS(5102), + [anon_sym_PLUS_PLUS] = ACTIONS(5100), + [anon_sym_DASH_DASH] = ACTIONS(5100), + [anon_sym_PLUS] = ACTIONS(5102), + [anon_sym_DASH] = ACTIONS(5102), + [anon_sym_STAR] = ACTIONS(5100), + [anon_sym_SLASH] = ACTIONS(5102), + [anon_sym_PERCENT] = ACTIONS(5100), + [anon_sym_CARET] = ACTIONS(5100), + [anon_sym_PIPE] = ACTIONS(5102), + [anon_sym_AMP] = ACTIONS(5102), + [anon_sym_LT_LT] = ACTIONS(5100), + [anon_sym_GT_GT] = ACTIONS(5102), + [anon_sym_GT_GT_GT] = ACTIONS(5100), + [anon_sym_EQ_EQ] = ACTIONS(5100), + [anon_sym_BANG_EQ] = ACTIONS(5100), + [anon_sym_GT_EQ] = ACTIONS(5100), + [anon_sym_LT_EQ] = ACTIONS(5100), + [anon_sym_DOT] = ACTIONS(5102), + [anon_sym_EQ_GT] = ACTIONS(5100), + [anon_sym_switch] = ACTIONS(5100), + [anon_sym_DOT_DOT] = ACTIONS(5100), + [anon_sym_and] = ACTIONS(5100), + [anon_sym_or] = ACTIONS(5102), + [anon_sym_AMP_AMP] = ACTIONS(5100), + [anon_sym_PIPE_PIPE] = ACTIONS(5100), + [anon_sym_QMARK_QMARK] = ACTIONS(5100), + [anon_sym_from] = ACTIONS(5100), + [anon_sym_into] = ACTIONS(5100), + [anon_sym_join] = ACTIONS(5100), + [anon_sym_on] = ACTIONS(5100), + [anon_sym_equals] = ACTIONS(5100), + [anon_sym_let] = ACTIONS(5100), + [anon_sym_orderby] = ACTIONS(5100), + [anon_sym_group] = ACTIONS(5100), + [anon_sym_by] = ACTIONS(5100), + [anon_sym_select] = ACTIONS(5100), + [anon_sym_as] = ACTIONS(5100), + [anon_sym_is] = ACTIONS(5100), + [anon_sym_DASH_GT] = ACTIONS(5100), + [anon_sym_with] = ACTIONS(5100), + [aux_sym_preproc_if_token3] = ACTIONS(5100), + [aux_sym_preproc_else_token1] = ACTIONS(5100), + [aux_sym_preproc_elif_token1] = ACTIONS(5100), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -471932,63 +471480,63 @@ 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(5094), - [anon_sym_LBRACK] = ACTIONS(5094), - [anon_sym_COLON] = ACTIONS(5094), - [anon_sym_COMMA] = ACTIONS(5094), - [anon_sym_RBRACK] = ACTIONS(5094), - [anon_sym_LPAREN] = ACTIONS(5094), - [anon_sym_RPAREN] = ACTIONS(5094), - [anon_sym_RBRACE] = ACTIONS(5094), - [anon_sym_LT] = ACTIONS(5096), - [anon_sym_GT] = ACTIONS(5096), - [anon_sym_in] = ACTIONS(5096), - [anon_sym_where] = ACTIONS(5094), - [anon_sym_QMARK] = ACTIONS(5096), - [anon_sym_BANG] = ACTIONS(5096), - [anon_sym_PLUS_PLUS] = ACTIONS(5094), - [anon_sym_DASH_DASH] = ACTIONS(5094), - [anon_sym_PLUS] = ACTIONS(5096), - [anon_sym_DASH] = ACTIONS(5096), - [anon_sym_STAR] = ACTIONS(5094), - [anon_sym_SLASH] = ACTIONS(5096), - [anon_sym_PERCENT] = ACTIONS(5094), - [anon_sym_CARET] = ACTIONS(5094), - [anon_sym_PIPE] = ACTIONS(5096), - [anon_sym_AMP] = ACTIONS(5096), - [anon_sym_LT_LT] = ACTIONS(5094), - [anon_sym_GT_GT] = ACTIONS(5096), - [anon_sym_GT_GT_GT] = ACTIONS(5094), - [anon_sym_EQ_EQ] = ACTIONS(5094), - [anon_sym_BANG_EQ] = ACTIONS(5094), - [anon_sym_GT_EQ] = ACTIONS(5094), - [anon_sym_LT_EQ] = ACTIONS(5094), - [anon_sym_DOT] = ACTIONS(5096), - [anon_sym_EQ_GT] = ACTIONS(5094), - [anon_sym_switch] = ACTIONS(5094), - [anon_sym_DOT_DOT] = ACTIONS(5094), - [anon_sym_and] = ACTIONS(5094), - [anon_sym_or] = ACTIONS(5096), - [anon_sym_AMP_AMP] = ACTIONS(5094), - [anon_sym_PIPE_PIPE] = ACTIONS(5094), - [anon_sym_QMARK_QMARK] = ACTIONS(5094), - [anon_sym_from] = ACTIONS(5094), - [anon_sym_into] = ACTIONS(5094), - [anon_sym_join] = ACTIONS(5094), - [anon_sym_on] = ACTIONS(5094), - [anon_sym_equals] = ACTIONS(5094), - [anon_sym_let] = ACTIONS(5094), - [anon_sym_orderby] = ACTIONS(5094), - [anon_sym_group] = ACTIONS(5094), - [anon_sym_by] = ACTIONS(5094), - [anon_sym_select] = ACTIONS(5094), - [anon_sym_as] = ACTIONS(5094), - [anon_sym_is] = ACTIONS(5094), - [anon_sym_DASH_GT] = ACTIONS(5094), - [anon_sym_with] = ACTIONS(5094), - [aux_sym_preproc_if_token3] = ACTIONS(5094), - [aux_sym_preproc_else_token1] = ACTIONS(5094), - [aux_sym_preproc_elif_token1] = ACTIONS(5094), + [anon_sym_SEMI] = ACTIONS(5104), + [anon_sym_LBRACK] = ACTIONS(5104), + [anon_sym_COLON] = ACTIONS(5104), + [anon_sym_COMMA] = ACTIONS(5104), + [anon_sym_RBRACK] = ACTIONS(5104), + [anon_sym_LPAREN] = ACTIONS(5104), + [anon_sym_RPAREN] = ACTIONS(5104), + [anon_sym_RBRACE] = ACTIONS(5104), + [anon_sym_LT] = ACTIONS(5106), + [anon_sym_GT] = ACTIONS(5106), + [anon_sym_in] = ACTIONS(5106), + [anon_sym_where] = ACTIONS(5104), + [anon_sym_QMARK] = ACTIONS(5106), + [anon_sym_BANG] = ACTIONS(5106), + [anon_sym_PLUS_PLUS] = ACTIONS(5104), + [anon_sym_DASH_DASH] = ACTIONS(5104), + [anon_sym_PLUS] = ACTIONS(5106), + [anon_sym_DASH] = ACTIONS(5106), + [anon_sym_STAR] = ACTIONS(5104), + [anon_sym_SLASH] = ACTIONS(5106), + [anon_sym_PERCENT] = ACTIONS(5104), + [anon_sym_CARET] = ACTIONS(5104), + [anon_sym_PIPE] = ACTIONS(5106), + [anon_sym_AMP] = ACTIONS(5106), + [anon_sym_LT_LT] = ACTIONS(5104), + [anon_sym_GT_GT] = ACTIONS(5106), + [anon_sym_GT_GT_GT] = ACTIONS(5104), + [anon_sym_EQ_EQ] = ACTIONS(5104), + [anon_sym_BANG_EQ] = ACTIONS(5104), + [anon_sym_GT_EQ] = ACTIONS(5104), + [anon_sym_LT_EQ] = ACTIONS(5104), + [anon_sym_DOT] = ACTIONS(5106), + [anon_sym_EQ_GT] = ACTIONS(5104), + [anon_sym_switch] = ACTIONS(5104), + [anon_sym_DOT_DOT] = ACTIONS(5104), + [anon_sym_and] = ACTIONS(5104), + [anon_sym_or] = ACTIONS(5106), + [anon_sym_AMP_AMP] = ACTIONS(5104), + [anon_sym_PIPE_PIPE] = ACTIONS(5104), + [anon_sym_QMARK_QMARK] = ACTIONS(5104), + [anon_sym_from] = ACTIONS(5104), + [anon_sym_into] = ACTIONS(5104), + [anon_sym_join] = ACTIONS(5104), + [anon_sym_on] = ACTIONS(5104), + [anon_sym_equals] = ACTIONS(5104), + [anon_sym_let] = ACTIONS(5104), + [anon_sym_orderby] = ACTIONS(5104), + [anon_sym_group] = ACTIONS(5104), + [anon_sym_by] = ACTIONS(5104), + [anon_sym_select] = ACTIONS(5104), + [anon_sym_as] = ACTIONS(5104), + [anon_sym_is] = ACTIONS(5104), + [anon_sym_DASH_GT] = ACTIONS(5104), + [anon_sym_with] = ACTIONS(5104), + [aux_sym_preproc_if_token3] = ACTIONS(5104), + [aux_sym_preproc_else_token1] = ACTIONS(5104), + [aux_sym_preproc_elif_token1] = ACTIONS(5104), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -472010,63 +471558,63 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3023), [sym_preproc_define] = STATE(3023), [sym_preproc_undef] = STATE(3023), - [anon_sym_SEMI] = ACTIONS(4860), - [anon_sym_EQ] = ACTIONS(5098), - [anon_sym_LBRACK] = ACTIONS(4860), - [anon_sym_COMMA] = ACTIONS(4860), - [anon_sym_RBRACK] = ACTIONS(4860), - [anon_sym_LPAREN] = ACTIONS(4860), - [anon_sym_RPAREN] = ACTIONS(4860), - [anon_sym_RBRACE] = ACTIONS(4860), - [anon_sym_LT] = ACTIONS(4862), - [anon_sym_GT] = ACTIONS(4862), - [anon_sym_QMARK] = ACTIONS(4862), - [anon_sym_BANG] = ACTIONS(4862), - [anon_sym_PLUS_PLUS] = ACTIONS(4860), - [anon_sym_DASH_DASH] = ACTIONS(4860), - [anon_sym_PLUS] = ACTIONS(4862), - [anon_sym_DASH] = ACTIONS(4862), - [anon_sym_STAR] = ACTIONS(4862), - [anon_sym_SLASH] = ACTIONS(4862), - [anon_sym_PERCENT] = ACTIONS(4862), - [anon_sym_CARET] = ACTIONS(4862), - [anon_sym_PIPE] = ACTIONS(4862), - [anon_sym_AMP] = ACTIONS(4862), - [anon_sym_LT_LT] = ACTIONS(4862), - [anon_sym_GT_GT] = ACTIONS(4862), - [anon_sym_GT_GT_GT] = ACTIONS(4862), - [anon_sym_EQ_EQ] = ACTIONS(4860), - [anon_sym_BANG_EQ] = ACTIONS(4860), - [anon_sym_GT_EQ] = ACTIONS(4860), - [anon_sym_LT_EQ] = ACTIONS(4860), - [anon_sym_DOT] = ACTIONS(4862), - [anon_sym_switch] = ACTIONS(4860), - [anon_sym_DOT_DOT] = ACTIONS(4860), - [anon_sym_and] = ACTIONS(4860), - [anon_sym_or] = ACTIONS(4860), - [anon_sym_PLUS_EQ] = ACTIONS(5100), - [anon_sym_DASH_EQ] = ACTIONS(5100), - [anon_sym_STAR_EQ] = ACTIONS(5100), - [anon_sym_SLASH_EQ] = ACTIONS(5100), - [anon_sym_PERCENT_EQ] = ACTIONS(5100), - [anon_sym_AMP_EQ] = ACTIONS(5100), - [anon_sym_CARET_EQ] = ACTIONS(5100), - [anon_sym_PIPE_EQ] = ACTIONS(5100), - [anon_sym_LT_LT_EQ] = ACTIONS(5100), - [anon_sym_GT_GT_EQ] = ACTIONS(5100), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(5100), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(5100), - [anon_sym_AMP_AMP] = ACTIONS(4860), - [anon_sym_PIPE_PIPE] = ACTIONS(4860), - [anon_sym_QMARK_QMARK] = ACTIONS(4862), - [anon_sym_into] = ACTIONS(4860), - [anon_sym_as] = ACTIONS(4860), - [anon_sym_is] = ACTIONS(4860), - [anon_sym_DASH_GT] = ACTIONS(4860), - [anon_sym_with] = ACTIONS(4860), - [aux_sym_preproc_if_token3] = ACTIONS(4860), - [aux_sym_preproc_else_token1] = ACTIONS(4860), - [aux_sym_preproc_elif_token1] = ACTIONS(4860), + [anon_sym_SEMI] = ACTIONS(5108), + [anon_sym_LBRACK] = ACTIONS(5108), + [anon_sym_COLON] = ACTIONS(5108), + [anon_sym_COMMA] = ACTIONS(5108), + [anon_sym_RBRACK] = ACTIONS(5108), + [anon_sym_LPAREN] = ACTIONS(5108), + [anon_sym_RPAREN] = ACTIONS(5108), + [anon_sym_RBRACE] = ACTIONS(5108), + [anon_sym_LT] = ACTIONS(5110), + [anon_sym_GT] = ACTIONS(5110), + [anon_sym_in] = ACTIONS(5110), + [anon_sym_where] = ACTIONS(5108), + [anon_sym_QMARK] = ACTIONS(5110), + [anon_sym_BANG] = ACTIONS(5110), + [anon_sym_PLUS_PLUS] = ACTIONS(5108), + [anon_sym_DASH_DASH] = ACTIONS(5108), + [anon_sym_PLUS] = ACTIONS(5110), + [anon_sym_DASH] = ACTIONS(5110), + [anon_sym_STAR] = ACTIONS(5108), + [anon_sym_SLASH] = ACTIONS(5110), + [anon_sym_PERCENT] = ACTIONS(5108), + [anon_sym_CARET] = ACTIONS(5108), + [anon_sym_PIPE] = ACTIONS(5110), + [anon_sym_AMP] = ACTIONS(5110), + [anon_sym_LT_LT] = ACTIONS(5108), + [anon_sym_GT_GT] = ACTIONS(5110), + [anon_sym_GT_GT_GT] = ACTIONS(5108), + [anon_sym_EQ_EQ] = ACTIONS(5108), + [anon_sym_BANG_EQ] = ACTIONS(5108), + [anon_sym_GT_EQ] = ACTIONS(5108), + [anon_sym_LT_EQ] = ACTIONS(5108), + [anon_sym_DOT] = ACTIONS(5110), + [anon_sym_EQ_GT] = ACTIONS(5108), + [anon_sym_switch] = ACTIONS(5108), + [anon_sym_DOT_DOT] = ACTIONS(5108), + [anon_sym_and] = ACTIONS(5108), + [anon_sym_or] = ACTIONS(5110), + [anon_sym_AMP_AMP] = ACTIONS(5108), + [anon_sym_PIPE_PIPE] = ACTIONS(5108), + [anon_sym_QMARK_QMARK] = ACTIONS(5108), + [anon_sym_from] = ACTIONS(5108), + [anon_sym_into] = ACTIONS(5108), + [anon_sym_join] = ACTIONS(5108), + [anon_sym_on] = ACTIONS(5108), + [anon_sym_equals] = ACTIONS(5108), + [anon_sym_let] = ACTIONS(5108), + [anon_sym_orderby] = ACTIONS(5108), + [anon_sym_group] = ACTIONS(5108), + [anon_sym_by] = ACTIONS(5108), + [anon_sym_select] = ACTIONS(5108), + [anon_sym_as] = ACTIONS(5108), + [anon_sym_is] = ACTIONS(5108), + [anon_sym_DASH_GT] = ACTIONS(5108), + [anon_sym_with] = ACTIONS(5108), + [aux_sym_preproc_if_token3] = ACTIONS(5108), + [aux_sym_preproc_else_token1] = ACTIONS(5108), + [aux_sym_preproc_elif_token1] = ACTIONS(5108), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -472088,63 +471636,63 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3024), [sym_preproc_define] = STATE(3024), [sym_preproc_undef] = STATE(3024), - [anon_sym_SEMI] = ACTIONS(5102), - [anon_sym_LBRACK] = ACTIONS(5102), - [anon_sym_COLON] = ACTIONS(5102), - [anon_sym_COMMA] = ACTIONS(5102), - [anon_sym_RBRACK] = ACTIONS(5102), - [anon_sym_LPAREN] = ACTIONS(5102), - [anon_sym_RPAREN] = ACTIONS(5102), - [anon_sym_RBRACE] = ACTIONS(5102), - [anon_sym_LT] = ACTIONS(5104), - [anon_sym_GT] = ACTIONS(5104), - [anon_sym_in] = ACTIONS(5104), - [anon_sym_where] = ACTIONS(5102), - [anon_sym_QMARK] = ACTIONS(5104), - [anon_sym_BANG] = ACTIONS(5104), - [anon_sym_PLUS_PLUS] = ACTIONS(5102), - [anon_sym_DASH_DASH] = ACTIONS(5102), - [anon_sym_PLUS] = ACTIONS(5104), - [anon_sym_DASH] = ACTIONS(5104), - [anon_sym_STAR] = ACTIONS(5102), - [anon_sym_SLASH] = ACTIONS(5104), - [anon_sym_PERCENT] = ACTIONS(5102), - [anon_sym_CARET] = ACTIONS(5102), - [anon_sym_PIPE] = ACTIONS(5104), - [anon_sym_AMP] = ACTIONS(5104), - [anon_sym_LT_LT] = ACTIONS(5102), - [anon_sym_GT_GT] = ACTIONS(5104), - [anon_sym_GT_GT_GT] = ACTIONS(5102), - [anon_sym_EQ_EQ] = ACTIONS(5102), - [anon_sym_BANG_EQ] = ACTIONS(5102), - [anon_sym_GT_EQ] = ACTIONS(5102), - [anon_sym_LT_EQ] = ACTIONS(5102), - [anon_sym_DOT] = ACTIONS(5104), - [anon_sym_EQ_GT] = ACTIONS(5102), - [anon_sym_switch] = ACTIONS(5102), - [anon_sym_DOT_DOT] = ACTIONS(5102), - [anon_sym_and] = ACTIONS(5102), - [anon_sym_or] = ACTIONS(5104), - [anon_sym_AMP_AMP] = ACTIONS(5102), - [anon_sym_PIPE_PIPE] = ACTIONS(5102), - [anon_sym_QMARK_QMARK] = ACTIONS(5102), - [anon_sym_from] = ACTIONS(5102), - [anon_sym_into] = ACTIONS(5102), - [anon_sym_join] = ACTIONS(5102), - [anon_sym_on] = ACTIONS(5102), - [anon_sym_equals] = ACTIONS(5102), - [anon_sym_let] = ACTIONS(5102), - [anon_sym_orderby] = ACTIONS(5102), - [anon_sym_group] = ACTIONS(5102), - [anon_sym_by] = ACTIONS(5102), - [anon_sym_select] = ACTIONS(5102), - [anon_sym_as] = ACTIONS(5102), - [anon_sym_is] = ACTIONS(5102), - [anon_sym_DASH_GT] = ACTIONS(5102), - [anon_sym_with] = ACTIONS(5102), - [aux_sym_preproc_if_token3] = ACTIONS(5102), - [aux_sym_preproc_else_token1] = ACTIONS(5102), - [aux_sym_preproc_elif_token1] = ACTIONS(5102), + [anon_sym_SEMI] = ACTIONS(5112), + [anon_sym_LBRACK] = ACTIONS(5112), + [anon_sym_COLON] = ACTIONS(5112), + [anon_sym_COMMA] = ACTIONS(5112), + [anon_sym_RBRACK] = ACTIONS(5112), + [anon_sym_LPAREN] = ACTIONS(5112), + [anon_sym_RPAREN] = ACTIONS(5112), + [anon_sym_RBRACE] = ACTIONS(5112), + [anon_sym_LT] = ACTIONS(5114), + [anon_sym_GT] = ACTIONS(5114), + [anon_sym_in] = ACTIONS(5114), + [anon_sym_where] = ACTIONS(5112), + [anon_sym_QMARK] = ACTIONS(5114), + [anon_sym_BANG] = ACTIONS(5114), + [anon_sym_PLUS_PLUS] = ACTIONS(5112), + [anon_sym_DASH_DASH] = ACTIONS(5112), + [anon_sym_PLUS] = ACTIONS(5114), + [anon_sym_DASH] = ACTIONS(5114), + [anon_sym_STAR] = ACTIONS(5112), + [anon_sym_SLASH] = ACTIONS(5114), + [anon_sym_PERCENT] = ACTIONS(5112), + [anon_sym_CARET] = ACTIONS(5112), + [anon_sym_PIPE] = ACTIONS(5114), + [anon_sym_AMP] = ACTIONS(5114), + [anon_sym_LT_LT] = ACTIONS(5112), + [anon_sym_GT_GT] = ACTIONS(5114), + [anon_sym_GT_GT_GT] = ACTIONS(5112), + [anon_sym_EQ_EQ] = ACTIONS(5112), + [anon_sym_BANG_EQ] = ACTIONS(5112), + [anon_sym_GT_EQ] = ACTIONS(5112), + [anon_sym_LT_EQ] = ACTIONS(5112), + [anon_sym_DOT] = ACTIONS(5114), + [anon_sym_EQ_GT] = ACTIONS(5112), + [anon_sym_switch] = ACTIONS(5112), + [anon_sym_DOT_DOT] = ACTIONS(5112), + [anon_sym_and] = ACTIONS(5112), + [anon_sym_or] = ACTIONS(5114), + [anon_sym_AMP_AMP] = ACTIONS(5112), + [anon_sym_PIPE_PIPE] = ACTIONS(5112), + [anon_sym_QMARK_QMARK] = ACTIONS(5112), + [anon_sym_from] = ACTIONS(5112), + [anon_sym_into] = ACTIONS(5112), + [anon_sym_join] = ACTIONS(5112), + [anon_sym_on] = ACTIONS(5112), + [anon_sym_equals] = ACTIONS(5112), + [anon_sym_let] = ACTIONS(5112), + [anon_sym_orderby] = ACTIONS(5112), + [anon_sym_group] = ACTIONS(5112), + [anon_sym_by] = ACTIONS(5112), + [anon_sym_select] = ACTIONS(5112), + [anon_sym_as] = ACTIONS(5112), + [anon_sym_is] = ACTIONS(5112), + [anon_sym_DASH_GT] = ACTIONS(5112), + [anon_sym_with] = ACTIONS(5112), + [aux_sym_preproc_if_token3] = ACTIONS(5112), + [aux_sym_preproc_else_token1] = ACTIONS(5112), + [aux_sym_preproc_elif_token1] = ACTIONS(5112), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -472166,63 +471714,63 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3025), [sym_preproc_define] = STATE(3025), [sym_preproc_undef] = STATE(3025), - [anon_sym_SEMI] = ACTIONS(5106), - [anon_sym_LBRACK] = ACTIONS(5106), - [anon_sym_COLON] = ACTIONS(5106), - [anon_sym_COMMA] = ACTIONS(5106), - [anon_sym_RBRACK] = ACTIONS(5106), - [anon_sym_LPAREN] = ACTIONS(5106), - [anon_sym_RPAREN] = ACTIONS(5106), - [anon_sym_RBRACE] = ACTIONS(5106), - [anon_sym_LT] = ACTIONS(5108), - [anon_sym_GT] = ACTIONS(5108), - [anon_sym_in] = ACTIONS(5108), - [anon_sym_where] = ACTIONS(5106), - [anon_sym_QMARK] = ACTIONS(5108), - [anon_sym_BANG] = ACTIONS(5108), - [anon_sym_PLUS_PLUS] = ACTIONS(5106), - [anon_sym_DASH_DASH] = ACTIONS(5106), - [anon_sym_PLUS] = ACTIONS(5108), - [anon_sym_DASH] = ACTIONS(5108), - [anon_sym_STAR] = ACTIONS(5106), - [anon_sym_SLASH] = ACTIONS(5108), - [anon_sym_PERCENT] = ACTIONS(5106), - [anon_sym_CARET] = ACTIONS(5106), - [anon_sym_PIPE] = ACTIONS(5108), - [anon_sym_AMP] = ACTIONS(5108), - [anon_sym_LT_LT] = ACTIONS(5106), - [anon_sym_GT_GT] = ACTIONS(5108), - [anon_sym_GT_GT_GT] = ACTIONS(5106), - [anon_sym_EQ_EQ] = ACTIONS(5106), - [anon_sym_BANG_EQ] = ACTIONS(5106), - [anon_sym_GT_EQ] = ACTIONS(5106), - [anon_sym_LT_EQ] = ACTIONS(5106), - [anon_sym_DOT] = ACTIONS(5108), - [anon_sym_EQ_GT] = ACTIONS(5106), - [anon_sym_switch] = ACTIONS(5106), - [anon_sym_DOT_DOT] = ACTIONS(5106), - [anon_sym_and] = ACTIONS(5106), - [anon_sym_or] = ACTIONS(5108), - [anon_sym_AMP_AMP] = ACTIONS(5106), - [anon_sym_PIPE_PIPE] = ACTIONS(5106), - [anon_sym_QMARK_QMARK] = ACTIONS(5106), - [anon_sym_from] = ACTIONS(5106), - [anon_sym_into] = ACTIONS(5106), - [anon_sym_join] = ACTIONS(5106), - [anon_sym_on] = ACTIONS(5106), - [anon_sym_equals] = ACTIONS(5106), - [anon_sym_let] = ACTIONS(5106), - [anon_sym_orderby] = ACTIONS(5106), - [anon_sym_group] = ACTIONS(5106), - [anon_sym_by] = ACTIONS(5106), - [anon_sym_select] = ACTIONS(5106), - [anon_sym_as] = ACTIONS(5106), - [anon_sym_is] = ACTIONS(5106), - [anon_sym_DASH_GT] = ACTIONS(5106), - [anon_sym_with] = ACTIONS(5106), - [aux_sym_preproc_if_token3] = ACTIONS(5106), - [aux_sym_preproc_else_token1] = ACTIONS(5106), - [aux_sym_preproc_elif_token1] = ACTIONS(5106), + [anon_sym_SEMI] = ACTIONS(5116), + [anon_sym_LBRACK] = ACTIONS(5116), + [anon_sym_COLON] = ACTIONS(5116), + [anon_sym_COMMA] = ACTIONS(5116), + [anon_sym_RBRACK] = ACTIONS(5116), + [anon_sym_LPAREN] = ACTIONS(5116), + [anon_sym_RPAREN] = ACTIONS(5116), + [anon_sym_RBRACE] = ACTIONS(5116), + [anon_sym_LT] = ACTIONS(5118), + [anon_sym_GT] = ACTIONS(5118), + [anon_sym_in] = ACTIONS(5118), + [anon_sym_where] = ACTIONS(5116), + [anon_sym_QMARK] = ACTIONS(5118), + [anon_sym_BANG] = ACTIONS(5118), + [anon_sym_PLUS_PLUS] = ACTIONS(5116), + [anon_sym_DASH_DASH] = ACTIONS(5116), + [anon_sym_PLUS] = ACTIONS(5118), + [anon_sym_DASH] = ACTIONS(5118), + [anon_sym_STAR] = ACTIONS(5116), + [anon_sym_SLASH] = ACTIONS(5118), + [anon_sym_PERCENT] = ACTIONS(5116), + [anon_sym_CARET] = ACTIONS(5116), + [anon_sym_PIPE] = ACTIONS(5118), + [anon_sym_AMP] = ACTIONS(5118), + [anon_sym_LT_LT] = ACTIONS(5116), + [anon_sym_GT_GT] = ACTIONS(5118), + [anon_sym_GT_GT_GT] = ACTIONS(5116), + [anon_sym_EQ_EQ] = ACTIONS(5116), + [anon_sym_BANG_EQ] = ACTIONS(5116), + [anon_sym_GT_EQ] = ACTIONS(5116), + [anon_sym_LT_EQ] = ACTIONS(5116), + [anon_sym_DOT] = ACTIONS(5118), + [anon_sym_EQ_GT] = ACTIONS(5116), + [anon_sym_switch] = ACTIONS(5116), + [anon_sym_DOT_DOT] = ACTIONS(5116), + [anon_sym_and] = ACTIONS(5116), + [anon_sym_or] = ACTIONS(5118), + [anon_sym_AMP_AMP] = ACTIONS(5116), + [anon_sym_PIPE_PIPE] = ACTIONS(5116), + [anon_sym_QMARK_QMARK] = ACTIONS(5116), + [anon_sym_from] = ACTIONS(5116), + [anon_sym_into] = ACTIONS(5116), + [anon_sym_join] = ACTIONS(5116), + [anon_sym_on] = ACTIONS(5116), + [anon_sym_equals] = ACTIONS(5116), + [anon_sym_let] = ACTIONS(5116), + [anon_sym_orderby] = ACTIONS(5116), + [anon_sym_group] = ACTIONS(5116), + [anon_sym_by] = ACTIONS(5116), + [anon_sym_select] = ACTIONS(5116), + [anon_sym_as] = ACTIONS(5116), + [anon_sym_is] = ACTIONS(5116), + [anon_sym_DASH_GT] = ACTIONS(5116), + [anon_sym_with] = ACTIONS(5116), + [aux_sym_preproc_if_token3] = ACTIONS(5116), + [aux_sym_preproc_else_token1] = ACTIONS(5116), + [aux_sym_preproc_elif_token1] = ACTIONS(5116), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -472244,63 +471792,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), - [anon_sym_SEMI] = ACTIONS(3951), - [anon_sym_LBRACK] = ACTIONS(3951), - [anon_sym_COLON] = ACTIONS(3951), - [anon_sym_COMMA] = ACTIONS(3951), - [anon_sym_RBRACK] = ACTIONS(3951), - [anon_sym_LPAREN] = ACTIONS(3951), - [anon_sym_RPAREN] = ACTIONS(3951), - [anon_sym_LBRACE] = ACTIONS(3951), - [anon_sym_RBRACE] = ACTIONS(3951), - [anon_sym_LT] = ACTIONS(3949), - [anon_sym_GT] = ACTIONS(3949), - [anon_sym_in] = ACTIONS(3951), - [anon_sym_where] = ACTIONS(3951), - [anon_sym_QMARK] = ACTIONS(3949), - [anon_sym_BANG] = ACTIONS(3949), - [anon_sym_PLUS_PLUS] = ACTIONS(3951), - [anon_sym_DASH_DASH] = ACTIONS(3951), - [anon_sym_PLUS] = ACTIONS(3949), - [anon_sym_DASH] = ACTIONS(3949), - [anon_sym_STAR] = ACTIONS(3951), - [anon_sym_SLASH] = ACTIONS(3949), - [anon_sym_PERCENT] = ACTIONS(3951), - [anon_sym_CARET] = ACTIONS(3951), - [anon_sym_PIPE] = ACTIONS(3949), - [anon_sym_AMP] = ACTIONS(3949), - [anon_sym_LT_LT] = ACTIONS(3951), - [anon_sym_GT_GT] = ACTIONS(3949), - [anon_sym_GT_GT_GT] = ACTIONS(3951), - [anon_sym_EQ_EQ] = ACTIONS(3951), - [anon_sym_BANG_EQ] = ACTIONS(3951), - [anon_sym_GT_EQ] = ACTIONS(3951), - [anon_sym_LT_EQ] = ACTIONS(3951), - [anon_sym_DOT] = ACTIONS(3949), - [anon_sym_EQ_GT] = ACTIONS(3951), - [anon_sym_switch] = ACTIONS(3951), - [anon_sym_DOT_DOT] = ACTIONS(3951), - [anon_sym_and] = ACTIONS(3951), - [anon_sym_or] = ACTIONS(3949), - [anon_sym_AMP_AMP] = ACTIONS(3951), - [anon_sym_PIPE_PIPE] = ACTIONS(3951), - [anon_sym_QMARK_QMARK] = ACTIONS(3951), - [anon_sym_from] = ACTIONS(3951), - [anon_sym_join] = ACTIONS(3951), - [anon_sym_on] = ACTIONS(3951), - [anon_sym_equals] = ACTIONS(3951), - [anon_sym_let] = ACTIONS(3951), - [anon_sym_orderby] = ACTIONS(3951), - [anon_sym_group] = ACTIONS(3951), - [anon_sym_by] = ACTIONS(3951), - [anon_sym_select] = ACTIONS(3951), - [anon_sym_as] = ACTIONS(3951), - [anon_sym_is] = ACTIONS(3951), - [anon_sym_DASH_GT] = ACTIONS(3951), - [anon_sym_with] = ACTIONS(3951), - [aux_sym_preproc_if_token3] = ACTIONS(3951), - [aux_sym_preproc_else_token1] = ACTIONS(3951), - [aux_sym_preproc_elif_token1] = ACTIONS(3951), + [anon_sym_SEMI] = ACTIONS(5120), + [anon_sym_LBRACK] = ACTIONS(5120), + [anon_sym_COLON] = ACTIONS(5120), + [anon_sym_COMMA] = ACTIONS(5120), + [anon_sym_RBRACK] = ACTIONS(5120), + [anon_sym_LPAREN] = ACTIONS(5120), + [anon_sym_RPAREN] = ACTIONS(5120), + [anon_sym_RBRACE] = ACTIONS(5120), + [anon_sym_LT] = ACTIONS(5122), + [anon_sym_GT] = ACTIONS(5122), + [anon_sym_in] = ACTIONS(5122), + [anon_sym_where] = ACTIONS(5120), + [anon_sym_QMARK] = ACTIONS(5122), + [anon_sym_BANG] = ACTIONS(5122), + [anon_sym_PLUS_PLUS] = ACTIONS(5120), + [anon_sym_DASH_DASH] = ACTIONS(5120), + [anon_sym_PLUS] = ACTIONS(5122), + [anon_sym_DASH] = ACTIONS(5122), + [anon_sym_STAR] = ACTIONS(5120), + [anon_sym_SLASH] = ACTIONS(5122), + [anon_sym_PERCENT] = ACTIONS(5120), + [anon_sym_CARET] = ACTIONS(5120), + [anon_sym_PIPE] = ACTIONS(5122), + [anon_sym_AMP] = ACTIONS(5122), + [anon_sym_LT_LT] = ACTIONS(5120), + [anon_sym_GT_GT] = ACTIONS(5122), + [anon_sym_GT_GT_GT] = ACTIONS(5120), + [anon_sym_EQ_EQ] = ACTIONS(5120), + [anon_sym_BANG_EQ] = ACTIONS(5120), + [anon_sym_GT_EQ] = ACTIONS(5120), + [anon_sym_LT_EQ] = ACTIONS(5120), + [anon_sym_DOT] = ACTIONS(5122), + [anon_sym_EQ_GT] = ACTIONS(5120), + [anon_sym_switch] = ACTIONS(5120), + [anon_sym_DOT_DOT] = ACTIONS(5120), + [anon_sym_and] = ACTIONS(5120), + [anon_sym_or] = ACTIONS(5122), + [anon_sym_AMP_AMP] = ACTIONS(5120), + [anon_sym_PIPE_PIPE] = ACTIONS(5120), + [anon_sym_QMARK_QMARK] = ACTIONS(5120), + [anon_sym_from] = ACTIONS(5120), + [anon_sym_into] = ACTIONS(5120), + [anon_sym_join] = ACTIONS(5120), + [anon_sym_on] = ACTIONS(5120), + [anon_sym_equals] = ACTIONS(5120), + [anon_sym_let] = ACTIONS(5120), + [anon_sym_orderby] = ACTIONS(5120), + [anon_sym_group] = ACTIONS(5120), + [anon_sym_by] = ACTIONS(5120), + [anon_sym_select] = ACTIONS(5120), + [anon_sym_as] = ACTIONS(5120), + [anon_sym_is] = ACTIONS(5120), + [anon_sym_DASH_GT] = ACTIONS(5120), + [anon_sym_with] = ACTIONS(5120), + [aux_sym_preproc_if_token3] = ACTIONS(5120), + [aux_sym_preproc_else_token1] = ACTIONS(5120), + [aux_sym_preproc_elif_token1] = ACTIONS(5120), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -472322,63 +471870,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(5110), - [anon_sym_LBRACK] = ACTIONS(5110), - [anon_sym_COLON] = ACTIONS(5110), - [anon_sym_COMMA] = ACTIONS(5110), - [anon_sym_RBRACK] = ACTIONS(5110), - [anon_sym_LPAREN] = ACTIONS(5110), - [anon_sym_RPAREN] = ACTIONS(5110), - [anon_sym_RBRACE] = ACTIONS(5110), - [anon_sym_LT] = ACTIONS(5112), - [anon_sym_GT] = ACTIONS(5112), - [anon_sym_in] = ACTIONS(5112), - [anon_sym_where] = ACTIONS(5110), - [anon_sym_QMARK] = ACTIONS(5112), - [anon_sym_BANG] = ACTIONS(5112), - [anon_sym_PLUS_PLUS] = ACTIONS(5110), - [anon_sym_DASH_DASH] = ACTIONS(5110), - [anon_sym_PLUS] = ACTIONS(5112), - [anon_sym_DASH] = ACTIONS(5112), - [anon_sym_STAR] = ACTIONS(5110), - [anon_sym_SLASH] = ACTIONS(5112), - [anon_sym_PERCENT] = ACTIONS(5110), - [anon_sym_CARET] = ACTIONS(5110), - [anon_sym_PIPE] = ACTIONS(5112), - [anon_sym_AMP] = ACTIONS(5112), - [anon_sym_LT_LT] = ACTIONS(5110), - [anon_sym_GT_GT] = ACTIONS(5112), - [anon_sym_GT_GT_GT] = ACTIONS(5110), - [anon_sym_EQ_EQ] = ACTIONS(5110), - [anon_sym_BANG_EQ] = ACTIONS(5110), - [anon_sym_GT_EQ] = ACTIONS(5110), - [anon_sym_LT_EQ] = ACTIONS(5110), - [anon_sym_DOT] = ACTIONS(5112), - [anon_sym_EQ_GT] = ACTIONS(5110), - [anon_sym_switch] = ACTIONS(5110), - [anon_sym_DOT_DOT] = ACTIONS(5110), - [anon_sym_and] = ACTIONS(5110), - [anon_sym_or] = ACTIONS(5112), - [anon_sym_AMP_AMP] = ACTIONS(5110), - [anon_sym_PIPE_PIPE] = ACTIONS(5110), - [anon_sym_QMARK_QMARK] = ACTIONS(5110), - [anon_sym_from] = ACTIONS(5110), - [anon_sym_into] = ACTIONS(5110), - [anon_sym_join] = ACTIONS(5110), - [anon_sym_on] = ACTIONS(5110), - [anon_sym_equals] = ACTIONS(5110), - [anon_sym_let] = ACTIONS(5110), - [anon_sym_orderby] = ACTIONS(5110), - [anon_sym_group] = ACTIONS(5110), - [anon_sym_by] = ACTIONS(5110), - [anon_sym_select] = ACTIONS(5110), - [anon_sym_as] = ACTIONS(5110), - [anon_sym_is] = ACTIONS(5110), - [anon_sym_DASH_GT] = ACTIONS(5110), - [anon_sym_with] = ACTIONS(5110), - [aux_sym_preproc_if_token3] = ACTIONS(5110), - [aux_sym_preproc_else_token1] = ACTIONS(5110), - [aux_sym_preproc_elif_token1] = ACTIONS(5110), + [anon_sym_SEMI] = ACTIONS(5124), + [anon_sym_LBRACK] = ACTIONS(5124), + [anon_sym_COLON] = ACTIONS(5124), + [anon_sym_COMMA] = ACTIONS(5124), + [anon_sym_RBRACK] = ACTIONS(5124), + [anon_sym_LPAREN] = ACTIONS(5124), + [anon_sym_RPAREN] = ACTIONS(5124), + [anon_sym_RBRACE] = ACTIONS(5124), + [anon_sym_LT] = ACTIONS(5126), + [anon_sym_GT] = ACTIONS(5126), + [anon_sym_in] = ACTIONS(5126), + [anon_sym_where] = ACTIONS(5124), + [anon_sym_QMARK] = ACTIONS(5126), + [anon_sym_BANG] = ACTIONS(5126), + [anon_sym_PLUS_PLUS] = ACTIONS(5124), + [anon_sym_DASH_DASH] = ACTIONS(5124), + [anon_sym_PLUS] = ACTIONS(5126), + [anon_sym_DASH] = ACTIONS(5126), + [anon_sym_STAR] = ACTIONS(5124), + [anon_sym_SLASH] = ACTIONS(5126), + [anon_sym_PERCENT] = ACTIONS(5124), + [anon_sym_CARET] = ACTIONS(5124), + [anon_sym_PIPE] = ACTIONS(5126), + [anon_sym_AMP] = ACTIONS(5126), + [anon_sym_LT_LT] = ACTIONS(5124), + [anon_sym_GT_GT] = ACTIONS(5126), + [anon_sym_GT_GT_GT] = ACTIONS(5124), + [anon_sym_EQ_EQ] = ACTIONS(5124), + [anon_sym_BANG_EQ] = ACTIONS(5124), + [anon_sym_GT_EQ] = ACTIONS(5124), + [anon_sym_LT_EQ] = ACTIONS(5124), + [anon_sym_DOT] = ACTIONS(5126), + [anon_sym_EQ_GT] = ACTIONS(5124), + [anon_sym_switch] = ACTIONS(5124), + [anon_sym_DOT_DOT] = ACTIONS(5124), + [anon_sym_and] = ACTIONS(5124), + [anon_sym_or] = ACTIONS(5126), + [anon_sym_AMP_AMP] = ACTIONS(5124), + [anon_sym_PIPE_PIPE] = ACTIONS(5124), + [anon_sym_QMARK_QMARK] = ACTIONS(5124), + [anon_sym_from] = ACTIONS(5124), + [anon_sym_into] = ACTIONS(5124), + [anon_sym_join] = ACTIONS(5124), + [anon_sym_on] = ACTIONS(5124), + [anon_sym_equals] = ACTIONS(5124), + [anon_sym_let] = ACTIONS(5124), + [anon_sym_orderby] = ACTIONS(5124), + [anon_sym_group] = ACTIONS(5124), + [anon_sym_by] = ACTIONS(5124), + [anon_sym_select] = ACTIONS(5124), + [anon_sym_as] = ACTIONS(5124), + [anon_sym_is] = ACTIONS(5124), + [anon_sym_DASH_GT] = ACTIONS(5124), + [anon_sym_with] = ACTIONS(5124), + [aux_sym_preproc_if_token3] = ACTIONS(5124), + [aux_sym_preproc_else_token1] = ACTIONS(5124), + [aux_sym_preproc_elif_token1] = ACTIONS(5124), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -472400,63 +471948,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(4110), - [anon_sym_LBRACK] = ACTIONS(4110), - [anon_sym_COLON] = ACTIONS(4110), - [anon_sym_COMMA] = ACTIONS(4110), - [anon_sym_RBRACK] = ACTIONS(4110), - [anon_sym_LPAREN] = ACTIONS(4110), - [anon_sym_RPAREN] = ACTIONS(4110), - [anon_sym_LBRACE] = ACTIONS(4110), - [anon_sym_RBRACE] = ACTIONS(4110), - [anon_sym_LT] = ACTIONS(4108), - [anon_sym_GT] = ACTIONS(4108), - [anon_sym_in] = ACTIONS(4110), - [anon_sym_where] = ACTIONS(4110), - [anon_sym_QMARK] = ACTIONS(4108), - [anon_sym_BANG] = ACTIONS(4108), - [anon_sym_PLUS_PLUS] = ACTIONS(4110), - [anon_sym_DASH_DASH] = ACTIONS(4110), - [anon_sym_PLUS] = ACTIONS(4108), - [anon_sym_DASH] = ACTIONS(4108), - [anon_sym_STAR] = ACTIONS(4110), - [anon_sym_SLASH] = ACTIONS(4108), - [anon_sym_PERCENT] = ACTIONS(4110), - [anon_sym_CARET] = ACTIONS(4110), - [anon_sym_PIPE] = ACTIONS(4108), - [anon_sym_AMP] = ACTIONS(4108), - [anon_sym_LT_LT] = ACTIONS(4110), - [anon_sym_GT_GT] = ACTIONS(4108), - [anon_sym_GT_GT_GT] = ACTIONS(4110), - [anon_sym_EQ_EQ] = ACTIONS(4110), - [anon_sym_BANG_EQ] = ACTIONS(4110), - [anon_sym_GT_EQ] = ACTIONS(4110), - [anon_sym_LT_EQ] = ACTIONS(4110), - [anon_sym_DOT] = ACTIONS(4108), - [anon_sym_EQ_GT] = ACTIONS(4110), - [anon_sym_switch] = ACTIONS(4110), - [anon_sym_DOT_DOT] = ACTIONS(4110), - [anon_sym_and] = ACTIONS(4110), - [anon_sym_or] = ACTIONS(4108), - [anon_sym_AMP_AMP] = ACTIONS(4110), - [anon_sym_PIPE_PIPE] = ACTIONS(4110), - [anon_sym_QMARK_QMARK] = ACTIONS(4110), - [anon_sym_from] = ACTIONS(4110), - [anon_sym_join] = ACTIONS(4110), - [anon_sym_on] = ACTIONS(4110), - [anon_sym_equals] = ACTIONS(4110), - [anon_sym_let] = ACTIONS(4110), - [anon_sym_orderby] = ACTIONS(4110), - [anon_sym_group] = ACTIONS(4110), - [anon_sym_by] = ACTIONS(4110), - [anon_sym_select] = ACTIONS(4110), - [anon_sym_as] = ACTIONS(4110), - [anon_sym_is] = ACTIONS(4110), - [anon_sym_DASH_GT] = ACTIONS(4110), - [anon_sym_with] = ACTIONS(4110), - [aux_sym_preproc_if_token3] = ACTIONS(4110), - [aux_sym_preproc_else_token1] = ACTIONS(4110), - [aux_sym_preproc_elif_token1] = ACTIONS(4110), + [sym__identifier_token] = ACTIONS(3463), + [anon_sym_extern] = ACTIONS(3466), + [anon_sym_alias] = ACTIONS(3463), + [anon_sym_global] = ACTIONS(3463), + [anon_sym_unsafe] = ACTIONS(3466), + [anon_sym_static] = ACTIONS(3466), + [anon_sym_LBRACK] = ACTIONS(3429), + [anon_sym_LPAREN] = ACTIONS(5128), + [anon_sym_class] = ACTIONS(3466), + [anon_sym_ref] = ACTIONS(3466), + [anon_sym_struct] = ACTIONS(3466), + [anon_sym_enum] = ACTIONS(3466), + [anon_sym_interface] = ACTIONS(3466), + [anon_sym_delegate] = ACTIONS(3466), + [anon_sym_record] = ACTIONS(3466), + [anon_sym_abstract] = ACTIONS(3466), + [anon_sym_async] = ACTIONS(3466), + [anon_sym_const] = ACTIONS(3466), + [anon_sym_file] = ACTIONS(3463), + [anon_sym_fixed] = ACTIONS(3466), + [anon_sym_internal] = ACTIONS(3466), + [anon_sym_new] = ACTIONS(3466), + [anon_sym_override] = ACTIONS(3466), + [anon_sym_partial] = ACTIONS(3466), + [anon_sym_private] = ACTIONS(3466), + [anon_sym_protected] = ACTIONS(3466), + [anon_sym_public] = ACTIONS(3466), + [anon_sym_readonly] = ACTIONS(3466), + [anon_sym_required] = ACTIONS(3466), + [anon_sym_sealed] = ACTIONS(3466), + [anon_sym_virtual] = ACTIONS(3466), + [anon_sym_volatile] = ACTIONS(3466), + [anon_sym_LT] = ACTIONS(3429), + [anon_sym_where] = ACTIONS(3463), + [anon_sym_QMARK] = ACTIONS(3429), + [anon_sym_notnull] = ACTIONS(3463), + [anon_sym_unmanaged] = ACTIONS(3463), + [anon_sym_STAR] = ACTIONS(3429), + [anon_sym_DOT] = ACTIONS(3429), + [anon_sym_scoped] = ACTIONS(3463), + [anon_sym_COLON_COLON] = ACTIONS(3429), + [anon_sym_var] = ACTIONS(3463), + [sym_predefined_type] = ACTIONS(3466), + [anon_sym_yield] = ACTIONS(3463), + [anon_sym_when] = ACTIONS(3463), + [anon_sym_from] = ACTIONS(3463), + [anon_sym_into] = ACTIONS(3463), + [anon_sym_join] = ACTIONS(3463), + [anon_sym_on] = ACTIONS(3463), + [anon_sym_equals] = ACTIONS(3463), + [anon_sym_let] = ACTIONS(3463), + [anon_sym_orderby] = ACTIONS(3463), + [anon_sym_ascending] = ACTIONS(3463), + [anon_sym_descending] = ACTIONS(3463), + [anon_sym_group] = ACTIONS(3463), + [anon_sym_by] = ACTIONS(3463), + [anon_sym_select] = ACTIONS(3463), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -472478,63 +472026,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(3710), - [anon_sym_LBRACK] = ACTIONS(3710), - [anon_sym_COLON] = ACTIONS(3710), - [anon_sym_COMMA] = ACTIONS(3710), - [anon_sym_RBRACK] = ACTIONS(3710), - [anon_sym_LPAREN] = ACTIONS(3710), - [anon_sym_RPAREN] = ACTIONS(3710), - [anon_sym_LBRACE] = ACTIONS(3710), - [anon_sym_RBRACE] = ACTIONS(3710), - [anon_sym_LT] = ACTIONS(3699), - [anon_sym_GT] = ACTIONS(3699), - [anon_sym_in] = ACTIONS(3710), - [anon_sym_where] = ACTIONS(3710), - [anon_sym_QMARK] = ACTIONS(3699), - [anon_sym_BANG] = ACTIONS(3699), - [anon_sym_PLUS_PLUS] = ACTIONS(3710), - [anon_sym_DASH_DASH] = ACTIONS(3710), - [anon_sym_PLUS] = ACTIONS(3699), - [anon_sym_DASH] = ACTIONS(3699), - [anon_sym_STAR] = ACTIONS(3710), - [anon_sym_SLASH] = ACTIONS(3699), - [anon_sym_PERCENT] = ACTIONS(3710), - [anon_sym_CARET] = ACTIONS(3710), - [anon_sym_PIPE] = ACTIONS(3699), - [anon_sym_AMP] = ACTIONS(3699), - [anon_sym_LT_LT] = ACTIONS(3710), - [anon_sym_GT_GT] = ACTIONS(3699), - [anon_sym_GT_GT_GT] = ACTIONS(3710), - [anon_sym_EQ_EQ] = ACTIONS(3710), - [anon_sym_BANG_EQ] = ACTIONS(3710), - [anon_sym_GT_EQ] = ACTIONS(3710), - [anon_sym_LT_EQ] = ACTIONS(3710), - [anon_sym_DOT] = ACTIONS(3699), - [anon_sym_EQ_GT] = ACTIONS(3710), - [anon_sym_switch] = ACTIONS(3710), - [anon_sym_DOT_DOT] = ACTIONS(3710), - [anon_sym_and] = ACTIONS(3710), - [anon_sym_or] = ACTIONS(3699), - [anon_sym_AMP_AMP] = ACTIONS(3710), - [anon_sym_PIPE_PIPE] = ACTIONS(3710), - [anon_sym_QMARK_QMARK] = ACTIONS(3710), - [anon_sym_from] = ACTIONS(3710), - [anon_sym_join] = ACTIONS(3710), - [anon_sym_on] = ACTIONS(3710), - [anon_sym_equals] = ACTIONS(3710), - [anon_sym_let] = ACTIONS(3710), - [anon_sym_orderby] = ACTIONS(3710), - [anon_sym_group] = ACTIONS(3710), - [anon_sym_by] = ACTIONS(3710), - [anon_sym_select] = ACTIONS(3710), - [anon_sym_as] = ACTIONS(3710), - [anon_sym_is] = ACTIONS(3710), - [anon_sym_DASH_GT] = ACTIONS(3710), - [anon_sym_with] = ACTIONS(3710), - [aux_sym_preproc_if_token3] = ACTIONS(3710), - [aux_sym_preproc_else_token1] = ACTIONS(3710), - [aux_sym_preproc_elif_token1] = ACTIONS(3710), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -472556,63 +472104,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(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(3640), + [anon_sym_LBRACK] = ACTIONS(3640), + [anon_sym_COLON] = ACTIONS(3640), + [anon_sym_COMMA] = ACTIONS(3640), + [anon_sym_RBRACK] = ACTIONS(3640), + [anon_sym_LPAREN] = ACTIONS(3640), + [anon_sym_RPAREN] = ACTIONS(3640), + [anon_sym_LBRACE] = ACTIONS(3640), + [anon_sym_RBRACE] = ACTIONS(3640), + [anon_sym_LT] = ACTIONS(3638), + [anon_sym_GT] = ACTIONS(3638), + [anon_sym_in] = ACTIONS(3640), + [anon_sym_where] = ACTIONS(3640), + [anon_sym_QMARK] = ACTIONS(3638), + [anon_sym_BANG] = ACTIONS(3638), + [anon_sym_PLUS_PLUS] = ACTIONS(3640), + [anon_sym_DASH_DASH] = ACTIONS(3640), + [anon_sym_PLUS] = ACTIONS(3638), + [anon_sym_DASH] = ACTIONS(3638), + [anon_sym_STAR] = ACTIONS(3640), + [anon_sym_SLASH] = ACTIONS(3638), + [anon_sym_PERCENT] = ACTIONS(3640), + [anon_sym_CARET] = ACTIONS(3640), + [anon_sym_PIPE] = ACTIONS(3638), + [anon_sym_AMP] = ACTIONS(3638), + [anon_sym_LT_LT] = ACTIONS(3640), + [anon_sym_GT_GT] = ACTIONS(3638), + [anon_sym_GT_GT_GT] = ACTIONS(3640), + [anon_sym_EQ_EQ] = ACTIONS(3640), + [anon_sym_BANG_EQ] = ACTIONS(3640), + [anon_sym_GT_EQ] = ACTIONS(3640), + [anon_sym_LT_EQ] = ACTIONS(3640), + [anon_sym_DOT] = ACTIONS(3638), + [anon_sym_EQ_GT] = ACTIONS(3640), + [anon_sym_switch] = ACTIONS(3640), + [anon_sym_DOT_DOT] = ACTIONS(3640), + [anon_sym_and] = ACTIONS(3640), + [anon_sym_or] = ACTIONS(3638), + [anon_sym_AMP_AMP] = ACTIONS(3640), + [anon_sym_PIPE_PIPE] = ACTIONS(3640), + [anon_sym_QMARK_QMARK] = ACTIONS(3640), + [anon_sym_from] = ACTIONS(3640), + [anon_sym_join] = ACTIONS(3640), + [anon_sym_on] = ACTIONS(3640), + [anon_sym_equals] = ACTIONS(3640), + [anon_sym_let] = ACTIONS(3640), + [anon_sym_orderby] = ACTIONS(3640), + [anon_sym_group] = ACTIONS(3640), + [anon_sym_by] = ACTIONS(3640), + [anon_sym_select] = ACTIONS(3640), + [anon_sym_as] = ACTIONS(3640), + [anon_sym_is] = ACTIONS(3640), + [anon_sym_DASH_GT] = ACTIONS(3640), + [anon_sym_with] = ACTIONS(3640), + [aux_sym_preproc_if_token3] = ACTIONS(3640), + [aux_sym_preproc_else_token1] = ACTIONS(3640), + [aux_sym_preproc_elif_token1] = ACTIONS(3640), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -472634,63 +472182,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(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), + [sym__identifier_token] = ACTIONS(5134), + [anon_sym_extern] = ACTIONS(5134), + [anon_sym_alias] = ACTIONS(5134), + [anon_sym_global] = ACTIONS(5134), + [anon_sym_unsafe] = ACTIONS(5134), + [anon_sym_static] = ACTIONS(5134), + [anon_sym_LBRACK] = ACTIONS(5136), + [anon_sym_LPAREN] = ACTIONS(5136), + [anon_sym_event] = ACTIONS(5134), + [anon_sym_class] = ACTIONS(5134), + [anon_sym_ref] = ACTIONS(5134), + [anon_sym_struct] = ACTIONS(5134), + [anon_sym_enum] = ACTIONS(5134), + [anon_sym_interface] = ACTIONS(5134), + [anon_sym_delegate] = ACTIONS(5134), + [anon_sym_record] = ACTIONS(5134), + [anon_sym_abstract] = ACTIONS(5134), + [anon_sym_async] = ACTIONS(5134), + [anon_sym_const] = ACTIONS(5134), + [anon_sym_file] = ACTIONS(5134), + [anon_sym_fixed] = ACTIONS(5134), + [anon_sym_internal] = ACTIONS(5134), + [anon_sym_new] = ACTIONS(5134), + [anon_sym_override] = ACTIONS(5134), + [anon_sym_partial] = ACTIONS(5134), + [anon_sym_private] = ACTIONS(5134), + [anon_sym_protected] = ACTIONS(5134), + [anon_sym_public] = ACTIONS(5134), + [anon_sym_readonly] = ACTIONS(5134), + [anon_sym_required] = ACTIONS(5134), + [anon_sym_sealed] = ACTIONS(5134), + [anon_sym_virtual] = ACTIONS(5134), + [anon_sym_volatile] = ACTIONS(5134), + [anon_sym_where] = ACTIONS(5134), + [anon_sym_notnull] = ACTIONS(5134), + [anon_sym_unmanaged] = ACTIONS(5134), + [anon_sym_TILDE] = ACTIONS(5136), + [anon_sym_implicit] = ACTIONS(5134), + [anon_sym_explicit] = ACTIONS(5134), + [anon_sym_scoped] = ACTIONS(5134), + [anon_sym_var] = ACTIONS(5134), + [sym_predefined_type] = ACTIONS(5134), + [anon_sym_yield] = ACTIONS(5134), + [anon_sym_when] = ACTIONS(5134), + [anon_sym_from] = ACTIONS(5134), + [anon_sym_into] = ACTIONS(5134), + [anon_sym_join] = ACTIONS(5134), + [anon_sym_on] = ACTIONS(5134), + [anon_sym_equals] = ACTIONS(5134), + [anon_sym_let] = ACTIONS(5134), + [anon_sym_orderby] = ACTIONS(5134), + [anon_sym_ascending] = ACTIONS(5134), + [anon_sym_descending] = ACTIONS(5134), + [anon_sym_group] = ACTIONS(5134), + [anon_sym_by] = ACTIONS(5134), + [anon_sym_select] = ACTIONS(5134), + [aux_sym_preproc_if_token1] = ACTIONS(5136), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -472712,63 +472260,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(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), + [anon_sym_SEMI] = ACTIONS(3665), + [anon_sym_LBRACK] = ACTIONS(3665), + [anon_sym_COLON] = ACTIONS(3665), + [anon_sym_COMMA] = ACTIONS(3665), + [anon_sym_RBRACK] = ACTIONS(3665), + [anon_sym_LPAREN] = ACTIONS(3665), + [anon_sym_RPAREN] = ACTIONS(3665), + [anon_sym_LBRACE] = ACTIONS(3665), + [anon_sym_RBRACE] = ACTIONS(3665), + [anon_sym_LT] = ACTIONS(3663), + [anon_sym_GT] = ACTIONS(3663), + [anon_sym_in] = ACTIONS(3665), + [anon_sym_where] = ACTIONS(3665), + [anon_sym_QMARK] = ACTIONS(3663), + [anon_sym_BANG] = ACTIONS(3663), + [anon_sym_PLUS_PLUS] = ACTIONS(3665), + [anon_sym_DASH_DASH] = ACTIONS(3665), + [anon_sym_PLUS] = ACTIONS(3663), + [anon_sym_DASH] = ACTIONS(3663), + [anon_sym_STAR] = ACTIONS(3665), + [anon_sym_SLASH] = ACTIONS(3663), + [anon_sym_PERCENT] = ACTIONS(3665), + [anon_sym_CARET] = ACTIONS(3665), + [anon_sym_PIPE] = ACTIONS(3663), + [anon_sym_AMP] = ACTIONS(3663), + [anon_sym_LT_LT] = ACTIONS(3665), + [anon_sym_GT_GT] = ACTIONS(3663), + [anon_sym_GT_GT_GT] = ACTIONS(3665), + [anon_sym_EQ_EQ] = ACTIONS(3665), + [anon_sym_BANG_EQ] = ACTIONS(3665), + [anon_sym_GT_EQ] = ACTIONS(3665), + [anon_sym_LT_EQ] = ACTIONS(3665), + [anon_sym_DOT] = ACTIONS(3663), + [anon_sym_EQ_GT] = ACTIONS(3665), + [anon_sym_switch] = ACTIONS(3665), + [anon_sym_DOT_DOT] = ACTIONS(3665), + [anon_sym_and] = ACTIONS(3665), + [anon_sym_or] = ACTIONS(3663), + [anon_sym_AMP_AMP] = ACTIONS(3665), + [anon_sym_PIPE_PIPE] = ACTIONS(3665), + [anon_sym_QMARK_QMARK] = ACTIONS(3665), + [anon_sym_from] = ACTIONS(3665), + [anon_sym_join] = ACTIONS(3665), + [anon_sym_on] = ACTIONS(3665), + [anon_sym_equals] = ACTIONS(3665), + [anon_sym_let] = ACTIONS(3665), + [anon_sym_orderby] = ACTIONS(3665), + [anon_sym_group] = ACTIONS(3665), + [anon_sym_by] = ACTIONS(3665), + [anon_sym_select] = ACTIONS(3665), + [anon_sym_as] = ACTIONS(3665), + [anon_sym_is] = ACTIONS(3665), + [anon_sym_DASH_GT] = ACTIONS(3665), + [anon_sym_with] = ACTIONS(3665), + [aux_sym_preproc_if_token3] = ACTIONS(3665), + [aux_sym_preproc_else_token1] = ACTIONS(3665), + [aux_sym_preproc_elif_token1] = ACTIONS(3665), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -472790,63 +472338,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), - [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), + [sym__identifier_token] = ACTIONS(5138), + [anon_sym_extern] = ACTIONS(5138), + [anon_sym_alias] = ACTIONS(5138), + [anon_sym_global] = ACTIONS(5138), + [anon_sym_unsafe] = ACTIONS(5138), + [anon_sym_static] = ACTIONS(5138), + [anon_sym_LBRACK] = ACTIONS(5140), + [anon_sym_LPAREN] = ACTIONS(5140), + [anon_sym_event] = ACTIONS(5138), + [anon_sym_class] = ACTIONS(5138), + [anon_sym_ref] = ACTIONS(5138), + [anon_sym_struct] = ACTIONS(5138), + [anon_sym_enum] = ACTIONS(5138), + [anon_sym_interface] = ACTIONS(5138), + [anon_sym_delegate] = ACTIONS(5138), + [anon_sym_record] = ACTIONS(5138), + [anon_sym_abstract] = ACTIONS(5138), + [anon_sym_async] = ACTIONS(5138), + [anon_sym_const] = ACTIONS(5138), + [anon_sym_file] = ACTIONS(5138), + [anon_sym_fixed] = ACTIONS(5138), + [anon_sym_internal] = ACTIONS(5138), + [anon_sym_new] = ACTIONS(5138), + [anon_sym_override] = ACTIONS(5138), + [anon_sym_partial] = ACTIONS(5138), + [anon_sym_private] = ACTIONS(5138), + [anon_sym_protected] = ACTIONS(5138), + [anon_sym_public] = ACTIONS(5138), + [anon_sym_readonly] = ACTIONS(5138), + [anon_sym_required] = ACTIONS(5138), + [anon_sym_sealed] = ACTIONS(5138), + [anon_sym_virtual] = ACTIONS(5138), + [anon_sym_volatile] = ACTIONS(5138), + [anon_sym_where] = ACTIONS(5138), + [anon_sym_notnull] = ACTIONS(5138), + [anon_sym_unmanaged] = ACTIONS(5138), + [anon_sym_TILDE] = ACTIONS(5140), + [anon_sym_implicit] = ACTIONS(5138), + [anon_sym_explicit] = ACTIONS(5138), + [anon_sym_scoped] = ACTIONS(5138), + [anon_sym_var] = ACTIONS(5138), + [sym_predefined_type] = ACTIONS(5138), + [anon_sym_yield] = ACTIONS(5138), + [anon_sym_when] = ACTIONS(5138), + [anon_sym_from] = ACTIONS(5138), + [anon_sym_into] = ACTIONS(5138), + [anon_sym_join] = ACTIONS(5138), + [anon_sym_on] = ACTIONS(5138), + [anon_sym_equals] = ACTIONS(5138), + [anon_sym_let] = ACTIONS(5138), + [anon_sym_orderby] = ACTIONS(5138), + [anon_sym_ascending] = ACTIONS(5138), + [anon_sym_descending] = ACTIONS(5138), + [anon_sym_group] = ACTIONS(5138), + [anon_sym_by] = ACTIONS(5138), + [anon_sym_select] = ACTIONS(5138), + [aux_sym_preproc_if_token1] = ACTIONS(5140), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -472868,63 +472416,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), - [sym__identifier_token] = ACTIONS(5130), - [anon_sym_extern] = ACTIONS(5130), - [anon_sym_alias] = ACTIONS(5130), - [anon_sym_global] = ACTIONS(5130), - [anon_sym_unsafe] = ACTIONS(5130), - [anon_sym_static] = ACTIONS(5130), - [anon_sym_LBRACK] = ACTIONS(5132), - [anon_sym_LPAREN] = ACTIONS(5132), - [anon_sym_event] = ACTIONS(5130), - [anon_sym_class] = ACTIONS(5130), - [anon_sym_ref] = ACTIONS(5130), - [anon_sym_struct] = ACTIONS(5130), - [anon_sym_enum] = ACTIONS(5130), - [anon_sym_interface] = ACTIONS(5130), - [anon_sym_delegate] = ACTIONS(5130), - [anon_sym_record] = ACTIONS(5130), - [anon_sym_abstract] = ACTIONS(5130), - [anon_sym_async] = ACTIONS(5130), - [anon_sym_const] = ACTIONS(5130), - [anon_sym_file] = ACTIONS(5130), - [anon_sym_fixed] = ACTIONS(5130), - [anon_sym_internal] = ACTIONS(5130), - [anon_sym_new] = ACTIONS(5130), - [anon_sym_override] = ACTIONS(5130), - [anon_sym_partial] = ACTIONS(5130), - [anon_sym_private] = ACTIONS(5130), - [anon_sym_protected] = ACTIONS(5130), - [anon_sym_public] = ACTIONS(5130), - [anon_sym_readonly] = ACTIONS(5130), - [anon_sym_required] = ACTIONS(5130), - [anon_sym_sealed] = ACTIONS(5130), - [anon_sym_virtual] = ACTIONS(5130), - [anon_sym_volatile] = ACTIONS(5130), - [anon_sym_where] = ACTIONS(5130), - [anon_sym_notnull] = ACTIONS(5130), - [anon_sym_unmanaged] = ACTIONS(5130), - [anon_sym_TILDE] = ACTIONS(5132), - [anon_sym_implicit] = ACTIONS(5130), - [anon_sym_explicit] = ACTIONS(5130), - [anon_sym_scoped] = ACTIONS(5130), - [anon_sym_var] = ACTIONS(5130), - [sym_predefined_type] = ACTIONS(5130), - [anon_sym_yield] = ACTIONS(5130), - [anon_sym_when] = 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_ascending] = ACTIONS(5130), - [anon_sym_descending] = ACTIONS(5130), - [anon_sym_group] = ACTIONS(5130), - [anon_sym_by] = ACTIONS(5130), - [anon_sym_select] = ACTIONS(5130), - [aux_sym_preproc_if_token1] = ACTIONS(5132), + [sym__identifier_token] = ACTIONS(4665), + [anon_sym_extern] = ACTIONS(4665), + [anon_sym_alias] = ACTIONS(4665), + [anon_sym_global] = 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_class] = ACTIONS(4665), + [anon_sym_ref] = ACTIONS(4665), + [anon_sym_struct] = ACTIONS(4665), + [anon_sym_enum] = ACTIONS(4665), + [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_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -472946,63 +472494,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(5134), - [anon_sym_LBRACK] = ACTIONS(5134), - [anon_sym_COLON] = ACTIONS(5134), - [anon_sym_COMMA] = ACTIONS(5134), - [anon_sym_RBRACK] = ACTIONS(5134), - [anon_sym_LPAREN] = ACTIONS(5134), - [anon_sym_RPAREN] = ACTIONS(5134), - [anon_sym_RBRACE] = ACTIONS(5134), - [anon_sym_LT] = ACTIONS(5136), - [anon_sym_GT] = ACTIONS(5136), - [anon_sym_in] = ACTIONS(5136), - [anon_sym_where] = ACTIONS(5134), - [anon_sym_QMARK] = ACTIONS(5136), - [anon_sym_BANG] = ACTIONS(5136), - [anon_sym_PLUS_PLUS] = ACTIONS(5134), - [anon_sym_DASH_DASH] = ACTIONS(5134), - [anon_sym_PLUS] = ACTIONS(5136), - [anon_sym_DASH] = ACTIONS(5136), - [anon_sym_STAR] = ACTIONS(5134), - [anon_sym_SLASH] = ACTIONS(5136), - [anon_sym_PERCENT] = ACTIONS(5134), - [anon_sym_CARET] = ACTIONS(5134), - [anon_sym_PIPE] = ACTIONS(5136), - [anon_sym_AMP] = ACTIONS(5136), - [anon_sym_LT_LT] = ACTIONS(5134), - [anon_sym_GT_GT] = ACTIONS(5136), - [anon_sym_GT_GT_GT] = ACTIONS(5134), - [anon_sym_EQ_EQ] = ACTIONS(5134), - [anon_sym_BANG_EQ] = ACTIONS(5134), - [anon_sym_GT_EQ] = ACTIONS(5134), - [anon_sym_LT_EQ] = ACTIONS(5134), - [anon_sym_DOT] = ACTIONS(5136), - [anon_sym_EQ_GT] = ACTIONS(5134), - [anon_sym_switch] = ACTIONS(5134), - [anon_sym_DOT_DOT] = ACTIONS(5134), - [anon_sym_and] = ACTIONS(5134), - [anon_sym_or] = ACTIONS(5136), - [anon_sym_AMP_AMP] = ACTIONS(5134), - [anon_sym_PIPE_PIPE] = ACTIONS(5134), - [anon_sym_QMARK_QMARK] = ACTIONS(5134), - [anon_sym_from] = ACTIONS(5134), - [anon_sym_into] = ACTIONS(5134), - [anon_sym_join] = ACTIONS(5134), - [anon_sym_on] = ACTIONS(5134), - [anon_sym_equals] = ACTIONS(5134), - [anon_sym_let] = ACTIONS(5134), - [anon_sym_orderby] = ACTIONS(5134), - [anon_sym_group] = ACTIONS(5134), - [anon_sym_by] = ACTIONS(5134), - [anon_sym_select] = ACTIONS(5134), - [anon_sym_as] = ACTIONS(5134), - [anon_sym_is] = ACTIONS(5134), - [anon_sym_DASH_GT] = ACTIONS(5134), - [anon_sym_with] = ACTIONS(5134), - [aux_sym_preproc_if_token3] = ACTIONS(5134), - [aux_sym_preproc_else_token1] = ACTIONS(5134), - [aux_sym_preproc_elif_token1] = ACTIONS(5134), + [anon_sym_SEMI] = ACTIONS(5142), + [anon_sym_LBRACK] = ACTIONS(5142), + [anon_sym_COLON] = ACTIONS(5142), + [anon_sym_COMMA] = ACTIONS(5142), + [anon_sym_RBRACK] = ACTIONS(5142), + [anon_sym_LPAREN] = ACTIONS(5142), + [anon_sym_RPAREN] = ACTIONS(5142), + [anon_sym_RBRACE] = ACTIONS(5142), + [anon_sym_LT] = ACTIONS(5144), + [anon_sym_GT] = ACTIONS(5144), + [anon_sym_in] = ACTIONS(5144), + [anon_sym_where] = ACTIONS(5142), + [anon_sym_QMARK] = ACTIONS(5144), + [anon_sym_BANG] = ACTIONS(5144), + [anon_sym_PLUS_PLUS] = ACTIONS(5142), + [anon_sym_DASH_DASH] = ACTIONS(5142), + [anon_sym_PLUS] = ACTIONS(5144), + [anon_sym_DASH] = ACTIONS(5144), + [anon_sym_STAR] = ACTIONS(5142), + [anon_sym_SLASH] = ACTIONS(5144), + [anon_sym_PERCENT] = ACTIONS(5142), + [anon_sym_CARET] = ACTIONS(5142), + [anon_sym_PIPE] = ACTIONS(5144), + [anon_sym_AMP] = ACTIONS(5144), + [anon_sym_LT_LT] = ACTIONS(5142), + [anon_sym_GT_GT] = ACTIONS(5144), + [anon_sym_GT_GT_GT] = ACTIONS(5142), + [anon_sym_EQ_EQ] = ACTIONS(5142), + [anon_sym_BANG_EQ] = ACTIONS(5142), + [anon_sym_GT_EQ] = ACTIONS(5142), + [anon_sym_LT_EQ] = ACTIONS(5142), + [anon_sym_DOT] = ACTIONS(5144), + [anon_sym_EQ_GT] = ACTIONS(5142), + [anon_sym_switch] = ACTIONS(5142), + [anon_sym_DOT_DOT] = ACTIONS(5142), + [anon_sym_and] = ACTIONS(5142), + [anon_sym_or] = ACTIONS(5144), + [anon_sym_AMP_AMP] = ACTIONS(5142), + [anon_sym_PIPE_PIPE] = ACTIONS(5142), + [anon_sym_QMARK_QMARK] = ACTIONS(5142), + [anon_sym_from] = ACTIONS(5142), + [anon_sym_into] = ACTIONS(5142), + [anon_sym_join] = ACTIONS(5142), + [anon_sym_on] = ACTIONS(5142), + [anon_sym_equals] = ACTIONS(5142), + [anon_sym_let] = ACTIONS(5142), + [anon_sym_orderby] = ACTIONS(5142), + [anon_sym_group] = ACTIONS(5142), + [anon_sym_by] = ACTIONS(5142), + [anon_sym_select] = ACTIONS(5142), + [anon_sym_as] = ACTIONS(5142), + [anon_sym_is] = ACTIONS(5142), + [anon_sym_DASH_GT] = ACTIONS(5142), + [anon_sym_with] = ACTIONS(5142), + [aux_sym_preproc_if_token3] = ACTIONS(5142), + [aux_sym_preproc_else_token1] = ACTIONS(5142), + [aux_sym_preproc_elif_token1] = ACTIONS(5142), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -473024,63 +472572,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(4106), - [anon_sym_LBRACK] = ACTIONS(4106), - [anon_sym_COLON] = ACTIONS(4106), - [anon_sym_COMMA] = ACTIONS(4106), - [anon_sym_RBRACK] = ACTIONS(4106), - [anon_sym_LPAREN] = ACTIONS(4106), - [anon_sym_RPAREN] = ACTIONS(4106), - [anon_sym_LBRACE] = ACTIONS(4106), - [anon_sym_RBRACE] = ACTIONS(4106), - [anon_sym_LT] = ACTIONS(4104), - [anon_sym_GT] = ACTIONS(4104), - [anon_sym_in] = ACTIONS(4106), - [anon_sym_where] = ACTIONS(4106), - [anon_sym_QMARK] = ACTIONS(4104), - [anon_sym_BANG] = ACTIONS(4104), - [anon_sym_PLUS_PLUS] = ACTIONS(4106), - [anon_sym_DASH_DASH] = ACTIONS(4106), - [anon_sym_PLUS] = ACTIONS(4104), - [anon_sym_DASH] = ACTIONS(4104), - [anon_sym_STAR] = ACTIONS(4106), - [anon_sym_SLASH] = ACTIONS(4104), - [anon_sym_PERCENT] = ACTIONS(4106), - [anon_sym_CARET] = ACTIONS(4106), - [anon_sym_PIPE] = ACTIONS(4104), - [anon_sym_AMP] = ACTIONS(4104), - [anon_sym_LT_LT] = ACTIONS(4106), - [anon_sym_GT_GT] = ACTIONS(4104), - [anon_sym_GT_GT_GT] = ACTIONS(4106), - [anon_sym_EQ_EQ] = ACTIONS(4106), - [anon_sym_BANG_EQ] = ACTIONS(4106), - [anon_sym_GT_EQ] = ACTIONS(4106), - [anon_sym_LT_EQ] = ACTIONS(4106), - [anon_sym_DOT] = ACTIONS(4104), - [anon_sym_EQ_GT] = ACTIONS(4106), - [anon_sym_switch] = ACTIONS(4106), - [anon_sym_DOT_DOT] = ACTIONS(4106), - [anon_sym_and] = ACTIONS(4106), - [anon_sym_or] = ACTIONS(4104), - [anon_sym_AMP_AMP] = ACTIONS(4106), - [anon_sym_PIPE_PIPE] = ACTIONS(4106), - [anon_sym_QMARK_QMARK] = ACTIONS(4106), - [anon_sym_from] = 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_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(4106), - [anon_sym_with] = ACTIONS(4106), - [aux_sym_preproc_if_token3] = ACTIONS(4106), - [aux_sym_preproc_else_token1] = ACTIONS(4106), - [aux_sym_preproc_elif_token1] = ACTIONS(4106), + [anon_sym_SEMI] = ACTIONS(2031), + [anon_sym_LBRACK] = ACTIONS(2031), + [anon_sym_COLON] = ACTIONS(2031), + [anon_sym_COMMA] = ACTIONS(2031), + [anon_sym_RBRACK] = ACTIONS(2031), + [anon_sym_LPAREN] = ACTIONS(5146), + [anon_sym_RPAREN] = ACTIONS(2031), + [anon_sym_RBRACE] = ACTIONS(2031), + [anon_sym_LT] = ACTIONS(2029), + [anon_sym_GT] = ACTIONS(2029), + [anon_sym_in] = ACTIONS(2029), + [anon_sym_where] = ACTIONS(2031), + [anon_sym_QMARK] = ACTIONS(2029), + [anon_sym_BANG] = ACTIONS(2029), + [anon_sym_PLUS_PLUS] = ACTIONS(2031), + [anon_sym_DASH_DASH] = ACTIONS(2031), + [anon_sym_PLUS] = ACTIONS(2029), + [anon_sym_DASH] = ACTIONS(2029), + [anon_sym_STAR] = ACTIONS(2031), + [anon_sym_SLASH] = ACTIONS(2029), + [anon_sym_PERCENT] = ACTIONS(2031), + [anon_sym_CARET] = ACTIONS(2031), + [anon_sym_PIPE] = ACTIONS(2029), + [anon_sym_AMP] = ACTIONS(2029), + [anon_sym_LT_LT] = ACTIONS(2031), + [anon_sym_GT_GT] = ACTIONS(2029), + [anon_sym_GT_GT_GT] = ACTIONS(2031), + [anon_sym_EQ_EQ] = ACTIONS(2031), + [anon_sym_BANG_EQ] = ACTIONS(2031), + [anon_sym_GT_EQ] = ACTIONS(2031), + [anon_sym_LT_EQ] = ACTIONS(2031), + [anon_sym_DOT] = ACTIONS(2029), + [anon_sym_EQ_GT] = ACTIONS(2031), + [anon_sym_switch] = ACTIONS(2031), + [anon_sym_DOT_DOT] = ACTIONS(2031), + [anon_sym_and] = ACTIONS(2031), + [anon_sym_or] = ACTIONS(2029), + [anon_sym_AMP_AMP] = ACTIONS(2031), + [anon_sym_PIPE_PIPE] = ACTIONS(2031), + [anon_sym_QMARK_QMARK] = ACTIONS(2031), + [anon_sym_from] = ACTIONS(2031), + [anon_sym_into] = ACTIONS(2031), + [anon_sym_join] = ACTIONS(2031), + [anon_sym_on] = ACTIONS(2031), + [anon_sym_equals] = ACTIONS(2031), + [anon_sym_let] = ACTIONS(2031), + [anon_sym_orderby] = ACTIONS(2031), + [anon_sym_group] = ACTIONS(2031), + [anon_sym_by] = ACTIONS(2031), + [anon_sym_select] = ACTIONS(2031), + [anon_sym_as] = ACTIONS(2031), + [anon_sym_is] = ACTIONS(2031), + [anon_sym_DASH_GT] = ACTIONS(2031), + [anon_sym_with] = ACTIONS(2031), + [aux_sym_preproc_if_token3] = ACTIONS(2031), + [aux_sym_preproc_else_token1] = ACTIONS(2031), + [aux_sym_preproc_elif_token1] = ACTIONS(2031), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -473102,63 +472650,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(5138), - [anon_sym_LBRACK] = ACTIONS(5138), - [anon_sym_COLON] = ACTIONS(5138), - [anon_sym_COMMA] = ACTIONS(5138), - [anon_sym_RBRACK] = ACTIONS(5138), - [anon_sym_LPAREN] = ACTIONS(5138), - [anon_sym_RPAREN] = ACTIONS(5138), - [anon_sym_RBRACE] = ACTIONS(5138), - [anon_sym_LT] = ACTIONS(5140), - [anon_sym_GT] = ACTIONS(5140), - [anon_sym_in] = ACTIONS(5140), - [anon_sym_where] = ACTIONS(5138), - [anon_sym_QMARK] = ACTIONS(5140), - [anon_sym_BANG] = ACTIONS(5140), - [anon_sym_PLUS_PLUS] = ACTIONS(5138), - [anon_sym_DASH_DASH] = ACTIONS(5138), - [anon_sym_PLUS] = ACTIONS(5140), - [anon_sym_DASH] = ACTIONS(5140), - [anon_sym_STAR] = ACTIONS(5138), - [anon_sym_SLASH] = ACTIONS(5140), - [anon_sym_PERCENT] = ACTIONS(5138), - [anon_sym_CARET] = ACTIONS(5138), - [anon_sym_PIPE] = ACTIONS(5140), - [anon_sym_AMP] = ACTIONS(5140), - [anon_sym_LT_LT] = ACTIONS(5138), - [anon_sym_GT_GT] = ACTIONS(5140), - [anon_sym_GT_GT_GT] = ACTIONS(5138), - [anon_sym_EQ_EQ] = ACTIONS(5138), - [anon_sym_BANG_EQ] = ACTIONS(5138), - [anon_sym_GT_EQ] = ACTIONS(5138), - [anon_sym_LT_EQ] = ACTIONS(5138), - [anon_sym_DOT] = ACTIONS(5140), - [anon_sym_EQ_GT] = ACTIONS(5138), - [anon_sym_switch] = ACTIONS(5138), - [anon_sym_DOT_DOT] = ACTIONS(5138), - [anon_sym_and] = ACTIONS(5138), - [anon_sym_or] = ACTIONS(5140), - [anon_sym_AMP_AMP] = ACTIONS(5138), - [anon_sym_PIPE_PIPE] = ACTIONS(5138), - [anon_sym_QMARK_QMARK] = ACTIONS(5138), - [anon_sym_from] = ACTIONS(5138), - [anon_sym_into] = ACTIONS(5138), - [anon_sym_join] = ACTIONS(5138), - [anon_sym_on] = ACTIONS(5138), - [anon_sym_equals] = ACTIONS(5138), - [anon_sym_let] = ACTIONS(5138), - [anon_sym_orderby] = ACTIONS(5138), - [anon_sym_group] = ACTIONS(5138), - [anon_sym_by] = ACTIONS(5138), - [anon_sym_select] = ACTIONS(5138), - [anon_sym_as] = ACTIONS(5138), - [anon_sym_is] = ACTIONS(5138), - [anon_sym_DASH_GT] = ACTIONS(5138), - [anon_sym_with] = ACTIONS(5138), - [aux_sym_preproc_if_token3] = ACTIONS(5138), - [aux_sym_preproc_else_token1] = ACTIONS(5138), - [aux_sym_preproc_elif_token1] = ACTIONS(5138), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -473180,63 +472728,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(4010), - [anon_sym_LBRACK] = ACTIONS(4010), - [anon_sym_COLON] = ACTIONS(4010), - [anon_sym_COMMA] = ACTIONS(4010), - [anon_sym_RBRACK] = ACTIONS(4010), - [anon_sym_LPAREN] = ACTIONS(4010), - [anon_sym_RPAREN] = ACTIONS(4010), - [anon_sym_LBRACE] = ACTIONS(4010), - [anon_sym_RBRACE] = ACTIONS(4010), - [anon_sym_LT] = ACTIONS(4008), - [anon_sym_GT] = ACTIONS(4008), - [anon_sym_in] = ACTIONS(4010), - [anon_sym_where] = ACTIONS(4010), - [anon_sym_QMARK] = ACTIONS(4008), - [anon_sym_BANG] = ACTIONS(4008), - [anon_sym_PLUS_PLUS] = ACTIONS(4010), - [anon_sym_DASH_DASH] = ACTIONS(4010), - [anon_sym_PLUS] = ACTIONS(4008), - [anon_sym_DASH] = ACTIONS(4008), - [anon_sym_STAR] = ACTIONS(4010), - [anon_sym_SLASH] = ACTIONS(4008), - [anon_sym_PERCENT] = ACTIONS(4010), - [anon_sym_CARET] = ACTIONS(4010), - [anon_sym_PIPE] = ACTIONS(4008), - [anon_sym_AMP] = ACTIONS(4008), - [anon_sym_LT_LT] = ACTIONS(4010), - [anon_sym_GT_GT] = ACTIONS(4008), - [anon_sym_GT_GT_GT] = ACTIONS(4010), - [anon_sym_EQ_EQ] = ACTIONS(4010), - [anon_sym_BANG_EQ] = ACTIONS(4010), - [anon_sym_GT_EQ] = ACTIONS(4010), - [anon_sym_LT_EQ] = ACTIONS(4010), - [anon_sym_DOT] = ACTIONS(4008), - [anon_sym_EQ_GT] = ACTIONS(4010), - [anon_sym_switch] = ACTIONS(4010), - [anon_sym_DOT_DOT] = ACTIONS(4010), - [anon_sym_and] = ACTIONS(4010), - [anon_sym_or] = ACTIONS(4008), - [anon_sym_AMP_AMP] = ACTIONS(4010), - [anon_sym_PIPE_PIPE] = ACTIONS(4010), - [anon_sym_QMARK_QMARK] = ACTIONS(4010), - [anon_sym_from] = ACTIONS(4010), - [anon_sym_join] = ACTIONS(4010), - [anon_sym_on] = ACTIONS(4010), - [anon_sym_equals] = ACTIONS(4010), - [anon_sym_let] = ACTIONS(4010), - [anon_sym_orderby] = ACTIONS(4010), - [anon_sym_group] = ACTIONS(4010), - [anon_sym_by] = ACTIONS(4010), - [anon_sym_select] = ACTIONS(4010), - [anon_sym_as] = ACTIONS(4010), - [anon_sym_is] = ACTIONS(4010), - [anon_sym_DASH_GT] = ACTIONS(4010), - [anon_sym_with] = ACTIONS(4010), - [aux_sym_preproc_if_token3] = ACTIONS(4010), - [aux_sym_preproc_else_token1] = ACTIONS(4010), - [aux_sym_preproc_elif_token1] = ACTIONS(4010), + [anon_sym_SEMI] = ACTIONS(3998), + [anon_sym_LBRACK] = ACTIONS(3998), + [anon_sym_COLON] = ACTIONS(3998), + [anon_sym_COMMA] = ACTIONS(3998), + [anon_sym_RBRACK] = ACTIONS(3998), + [anon_sym_LPAREN] = ACTIONS(3998), + [anon_sym_RPAREN] = ACTIONS(3998), + [anon_sym_LBRACE] = ACTIONS(3998), + [anon_sym_RBRACE] = ACTIONS(3998), + [anon_sym_LT] = ACTIONS(3996), + [anon_sym_GT] = ACTIONS(3996), + [anon_sym_in] = ACTIONS(3998), + [anon_sym_where] = ACTIONS(3998), + [anon_sym_QMARK] = ACTIONS(3996), + [anon_sym_BANG] = ACTIONS(3996), + [anon_sym_PLUS_PLUS] = ACTIONS(3998), + [anon_sym_DASH_DASH] = ACTIONS(3998), + [anon_sym_PLUS] = ACTIONS(3996), + [anon_sym_DASH] = ACTIONS(3996), + [anon_sym_STAR] = ACTIONS(3998), + [anon_sym_SLASH] = ACTIONS(3996), + [anon_sym_PERCENT] = ACTIONS(3998), + [anon_sym_CARET] = ACTIONS(3998), + [anon_sym_PIPE] = ACTIONS(3996), + [anon_sym_AMP] = ACTIONS(3996), + [anon_sym_LT_LT] = ACTIONS(3998), + [anon_sym_GT_GT] = ACTIONS(3996), + [anon_sym_GT_GT_GT] = ACTIONS(3998), + [anon_sym_EQ_EQ] = ACTIONS(3998), + [anon_sym_BANG_EQ] = ACTIONS(3998), + [anon_sym_GT_EQ] = ACTIONS(3998), + [anon_sym_LT_EQ] = ACTIONS(3998), + [anon_sym_DOT] = ACTIONS(3996), + [anon_sym_EQ_GT] = ACTIONS(3998), + [anon_sym_switch] = ACTIONS(3998), + [anon_sym_DOT_DOT] = ACTIONS(3998), + [anon_sym_and] = ACTIONS(3998), + [anon_sym_or] = ACTIONS(3996), + [anon_sym_AMP_AMP] = ACTIONS(3998), + [anon_sym_PIPE_PIPE] = ACTIONS(3998), + [anon_sym_QMARK_QMARK] = ACTIONS(3998), + [anon_sym_from] = ACTIONS(3998), + [anon_sym_join] = ACTIONS(3998), + [anon_sym_on] = ACTIONS(3998), + [anon_sym_equals] = ACTIONS(3998), + [anon_sym_let] = ACTIONS(3998), + [anon_sym_orderby] = ACTIONS(3998), + [anon_sym_group] = ACTIONS(3998), + [anon_sym_by] = ACTIONS(3998), + [anon_sym_select] = ACTIONS(3998), + [anon_sym_as] = ACTIONS(3998), + [anon_sym_is] = ACTIONS(3998), + [anon_sym_DASH_GT] = ACTIONS(3998), + [anon_sym_with] = ACTIONS(3998), + [aux_sym_preproc_if_token3] = ACTIONS(3998), + [aux_sym_preproc_else_token1] = ACTIONS(3998), + [aux_sym_preproc_elif_token1] = ACTIONS(3998), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -473258,63 +472806,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(5142), - [anon_sym_LBRACK] = ACTIONS(5142), - [anon_sym_COLON] = ACTIONS(5142), - [anon_sym_COMMA] = ACTIONS(5142), - [anon_sym_RBRACK] = ACTIONS(5142), - [anon_sym_LPAREN] = ACTIONS(5142), - [anon_sym_RPAREN] = ACTIONS(5142), - [anon_sym_RBRACE] = ACTIONS(5142), - [anon_sym_LT] = ACTIONS(5144), - [anon_sym_GT] = ACTIONS(5144), - [anon_sym_in] = ACTIONS(5144), - [anon_sym_where] = ACTIONS(5142), - [anon_sym_QMARK] = ACTIONS(5144), - [anon_sym_BANG] = ACTIONS(5144), - [anon_sym_PLUS_PLUS] = ACTIONS(5142), - [anon_sym_DASH_DASH] = ACTIONS(5142), - [anon_sym_PLUS] = ACTIONS(5144), - [anon_sym_DASH] = ACTIONS(5144), - [anon_sym_STAR] = ACTIONS(5142), - [anon_sym_SLASH] = ACTIONS(5144), - [anon_sym_PERCENT] = ACTIONS(5142), - [anon_sym_CARET] = ACTIONS(5142), - [anon_sym_PIPE] = ACTIONS(5144), - [anon_sym_AMP] = ACTIONS(5144), - [anon_sym_LT_LT] = ACTIONS(5142), - [anon_sym_GT_GT] = ACTIONS(5144), - [anon_sym_GT_GT_GT] = ACTIONS(5142), - [anon_sym_EQ_EQ] = ACTIONS(5142), - [anon_sym_BANG_EQ] = ACTIONS(5142), - [anon_sym_GT_EQ] = ACTIONS(5142), - [anon_sym_LT_EQ] = ACTIONS(5142), - [anon_sym_DOT] = ACTIONS(5144), - [anon_sym_EQ_GT] = ACTIONS(5142), - [anon_sym_switch] = ACTIONS(5142), - [anon_sym_DOT_DOT] = ACTIONS(5142), - [anon_sym_and] = ACTIONS(5142), - [anon_sym_or] = ACTIONS(5144), - [anon_sym_AMP_AMP] = ACTIONS(5142), - [anon_sym_PIPE_PIPE] = ACTIONS(5142), - [anon_sym_QMARK_QMARK] = ACTIONS(5142), - [anon_sym_from] = ACTIONS(5142), - [anon_sym_into] = ACTIONS(5142), - [anon_sym_join] = ACTIONS(5142), - [anon_sym_on] = ACTIONS(5142), - [anon_sym_equals] = ACTIONS(5142), - [anon_sym_let] = ACTIONS(5142), - [anon_sym_orderby] = ACTIONS(5142), - [anon_sym_group] = ACTIONS(5142), - [anon_sym_by] = ACTIONS(5142), - [anon_sym_select] = ACTIONS(5142), - [anon_sym_as] = ACTIONS(5142), - [anon_sym_is] = ACTIONS(5142), - [anon_sym_DASH_GT] = ACTIONS(5142), - [anon_sym_with] = ACTIONS(5142), - [aux_sym_preproc_if_token3] = ACTIONS(5142), - [aux_sym_preproc_else_token1] = ACTIONS(5142), - [aux_sym_preproc_elif_token1] = ACTIONS(5142), + [anon_sym_SEMI] = ACTIONS(3911), + [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(3911), + [anon_sym_RBRACE] = ACTIONS(3911), + [anon_sym_LT] = ACTIONS(3909), + [anon_sym_GT] = ACTIONS(3909), + [anon_sym_in] = ACTIONS(3911), + [anon_sym_where] = ACTIONS(3911), + [anon_sym_QMARK] = ACTIONS(3909), + [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_EQ_GT] = ACTIONS(3911), + [anon_sym_switch] = ACTIONS(3911), + [anon_sym_DOT_DOT] = ACTIONS(3911), + [anon_sym_and] = ACTIONS(3911), + [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(3911), + [anon_sym_join] = ACTIONS(3911), + [anon_sym_on] = ACTIONS(3911), + [anon_sym_equals] = ACTIONS(3911), + [anon_sym_let] = ACTIONS(3911), + [anon_sym_orderby] = ACTIONS(3911), + [anon_sym_group] = ACTIONS(3911), + [anon_sym_by] = ACTIONS(3911), + [anon_sym_select] = ACTIONS(3911), + [anon_sym_as] = ACTIONS(3911), + [anon_sym_is] = ACTIONS(3911), + [anon_sym_DASH_GT] = ACTIONS(3911), + [anon_sym_with] = ACTIONS(3911), + [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), @@ -473336,63 +472884,63 @@ 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(5146), - [anon_sym_LBRACK] = ACTIONS(5146), - [anon_sym_COLON] = ACTIONS(5146), - [anon_sym_COMMA] = ACTIONS(5146), - [anon_sym_RBRACK] = ACTIONS(5146), - [anon_sym_LPAREN] = ACTIONS(5146), - [anon_sym_RPAREN] = ACTIONS(5146), - [anon_sym_RBRACE] = ACTIONS(5146), - [anon_sym_LT] = ACTIONS(5148), - [anon_sym_GT] = ACTIONS(5148), - [anon_sym_in] = ACTIONS(5148), - [anon_sym_where] = ACTIONS(5146), - [anon_sym_QMARK] = ACTIONS(5148), - [anon_sym_BANG] = ACTIONS(5148), - [anon_sym_PLUS_PLUS] = ACTIONS(5146), - [anon_sym_DASH_DASH] = ACTIONS(5146), - [anon_sym_PLUS] = ACTIONS(5148), - [anon_sym_DASH] = ACTIONS(5148), - [anon_sym_STAR] = ACTIONS(5146), - [anon_sym_SLASH] = ACTIONS(5148), - [anon_sym_PERCENT] = ACTIONS(5146), - [anon_sym_CARET] = ACTIONS(5146), - [anon_sym_PIPE] = ACTIONS(5148), - [anon_sym_AMP] = ACTIONS(5148), - [anon_sym_LT_LT] = ACTIONS(5146), - [anon_sym_GT_GT] = ACTIONS(5148), - [anon_sym_GT_GT_GT] = ACTIONS(5146), - [anon_sym_EQ_EQ] = ACTIONS(5146), - [anon_sym_BANG_EQ] = ACTIONS(5146), - [anon_sym_GT_EQ] = ACTIONS(5146), - [anon_sym_LT_EQ] = ACTIONS(5146), - [anon_sym_DOT] = ACTIONS(5148), - [anon_sym_EQ_GT] = ACTIONS(5146), - [anon_sym_switch] = ACTIONS(5146), - [anon_sym_DOT_DOT] = ACTIONS(5146), - [anon_sym_and] = ACTIONS(5146), - [anon_sym_or] = ACTIONS(5148), - [anon_sym_AMP_AMP] = ACTIONS(5146), - [anon_sym_PIPE_PIPE] = ACTIONS(5146), - [anon_sym_QMARK_QMARK] = ACTIONS(5146), - [anon_sym_from] = ACTIONS(5146), - [anon_sym_into] = ACTIONS(5146), - [anon_sym_join] = ACTIONS(5146), - [anon_sym_on] = ACTIONS(5146), - [anon_sym_equals] = ACTIONS(5146), - [anon_sym_let] = ACTIONS(5146), - [anon_sym_orderby] = ACTIONS(5146), - [anon_sym_group] = ACTIONS(5146), - [anon_sym_by] = ACTIONS(5146), - [anon_sym_select] = ACTIONS(5146), - [anon_sym_as] = ACTIONS(5146), - [anon_sym_is] = ACTIONS(5146), - [anon_sym_DASH_GT] = ACTIONS(5146), - [anon_sym_with] = ACTIONS(5146), - [aux_sym_preproc_if_token3] = ACTIONS(5146), - [aux_sym_preproc_else_token1] = ACTIONS(5146), - [aux_sym_preproc_elif_token1] = ACTIONS(5146), + [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(4811), + [anon_sym_RPAREN] = ACTIONS(4811), + [anon_sym_RBRACE] = ACTIONS(4811), + [anon_sym_LT] = ACTIONS(4813), + [anon_sym_GT] = ACTIONS(4813), + [anon_sym_in] = ACTIONS(4813), + [anon_sym_where] = ACTIONS(4811), + [anon_sym_QMARK] = ACTIONS(4813), + [anon_sym_BANG] = ACTIONS(4813), + [anon_sym_PLUS_PLUS] = ACTIONS(4811), + [anon_sym_DASH_DASH] = ACTIONS(4811), + [anon_sym_PLUS] = ACTIONS(4813), + [anon_sym_DASH] = ACTIONS(4813), + [anon_sym_STAR] = ACTIONS(4811), + [anon_sym_SLASH] = ACTIONS(4813), + [anon_sym_PERCENT] = ACTIONS(4811), + [anon_sym_CARET] = ACTIONS(4811), + [anon_sym_PIPE] = ACTIONS(4813), + [anon_sym_AMP] = ACTIONS(4813), + [anon_sym_LT_LT] = ACTIONS(4811), + [anon_sym_GT_GT] = ACTIONS(4813), + [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(4813), + [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(4813), + [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), @@ -473405,12 +472953,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3041] = { - [sym_attribute_list] = STATE(3531), - [sym__attribute_list] = STATE(3536), - [sym_modifier] = STATE(3652), - [sym_identifier] = STATE(6424), - [sym__reserved_identifier] = STATE(2175), - [sym_preproc_if_in_attribute_list] = STATE(3531), [sym_preproc_region] = STATE(3041), [sym_preproc_endregion] = STATE(3041), [sym_preproc_line] = STATE(3041), @@ -473420,57 +472962,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), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3131), - [aux_sym__class_declaration_initializer_repeat2] = STATE(3355), - [sym__identifier_token] = ACTIONS(25), - [anon_sym_extern] = ACTIONS(4810), - [anon_sym_alias] = ACTIONS(29), - [anon_sym_global] = ACTIONS(29), - [anon_sym_unsafe] = ACTIONS(4810), - [anon_sym_static] = ACTIONS(4810), - [anon_sym_LBRACK] = ACTIONS(4812), - [anon_sym_abstract] = ACTIONS(4810), - [anon_sym_async] = ACTIONS(4810), - [anon_sym_const] = ACTIONS(4810), - [anon_sym_file] = ACTIONS(4816), - [anon_sym_fixed] = ACTIONS(4810), - [anon_sym_internal] = ACTIONS(4810), - [anon_sym_new] = ACTIONS(4810), - [anon_sym_override] = ACTIONS(4810), - [anon_sym_partial] = ACTIONS(4810), - [anon_sym_private] = ACTIONS(4810), - [anon_sym_protected] = ACTIONS(4810), - [anon_sym_public] = ACTIONS(4810), - [anon_sym_readonly] = ACTIONS(4810), - [anon_sym_required] = ACTIONS(4810), - [anon_sym_sealed] = ACTIONS(4810), - [anon_sym_virtual] = ACTIONS(4810), - [anon_sym_volatile] = ACTIONS(4810), - [anon_sym_where] = ACTIONS(29), - [anon_sym_notnull] = ACTIONS(29), - [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_get] = ACTIONS(5150), - [anon_sym_set] = ACTIONS(5150), - [anon_sym_add] = ACTIONS(5150), - [anon_sym_remove] = ACTIONS(5150), - [anon_sym_init] = ACTIONS(5150), - [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(4820), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -473492,63 +473040,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(4114), - [anon_sym_LBRACK] = ACTIONS(4114), - [anon_sym_COLON] = ACTIONS(4114), - [anon_sym_COMMA] = ACTIONS(4114), - [anon_sym_RBRACK] = ACTIONS(4114), - [anon_sym_LPAREN] = ACTIONS(4114), - [anon_sym_RPAREN] = ACTIONS(4114), - [anon_sym_LBRACE] = ACTIONS(4114), - [anon_sym_RBRACE] = ACTIONS(4114), - [anon_sym_LT] = ACTIONS(4112), - [anon_sym_GT] = ACTIONS(4112), - [anon_sym_in] = ACTIONS(4114), - [anon_sym_where] = ACTIONS(4114), - [anon_sym_QMARK] = ACTIONS(4112), - [anon_sym_BANG] = ACTIONS(4112), - [anon_sym_PLUS_PLUS] = ACTIONS(4114), - [anon_sym_DASH_DASH] = ACTIONS(4114), - [anon_sym_PLUS] = ACTIONS(4112), - [anon_sym_DASH] = ACTIONS(4112), - [anon_sym_STAR] = ACTIONS(4114), - [anon_sym_SLASH] = ACTIONS(4112), - [anon_sym_PERCENT] = ACTIONS(4114), - [anon_sym_CARET] = ACTIONS(4114), - [anon_sym_PIPE] = ACTIONS(4112), - [anon_sym_AMP] = ACTIONS(4112), - [anon_sym_LT_LT] = ACTIONS(4114), - [anon_sym_GT_GT] = ACTIONS(4112), - [anon_sym_GT_GT_GT] = ACTIONS(4114), - [anon_sym_EQ_EQ] = ACTIONS(4114), - [anon_sym_BANG_EQ] = ACTIONS(4114), - [anon_sym_GT_EQ] = ACTIONS(4114), - [anon_sym_LT_EQ] = ACTIONS(4114), - [anon_sym_DOT] = ACTIONS(4112), - [anon_sym_EQ_GT] = ACTIONS(4114), - [anon_sym_switch] = ACTIONS(4114), - [anon_sym_DOT_DOT] = ACTIONS(4114), - [anon_sym_and] = ACTIONS(4114), - [anon_sym_or] = ACTIONS(4112), - [anon_sym_AMP_AMP] = ACTIONS(4114), - [anon_sym_PIPE_PIPE] = ACTIONS(4114), - [anon_sym_QMARK_QMARK] = ACTIONS(4114), - [anon_sym_from] = ACTIONS(4114), - [anon_sym_join] = ACTIONS(4114), - [anon_sym_on] = ACTIONS(4114), - [anon_sym_equals] = ACTIONS(4114), - [anon_sym_let] = ACTIONS(4114), - [anon_sym_orderby] = ACTIONS(4114), - [anon_sym_group] = ACTIONS(4114), - [anon_sym_by] = ACTIONS(4114), - [anon_sym_select] = ACTIONS(4114), - [anon_sym_as] = ACTIONS(4114), - [anon_sym_is] = ACTIONS(4114), - [anon_sym_DASH_GT] = ACTIONS(4114), - [anon_sym_with] = ACTIONS(4114), - [aux_sym_preproc_if_token3] = ACTIONS(4114), - [aux_sym_preproc_else_token1] = ACTIONS(4114), - [aux_sym_preproc_elif_token1] = ACTIONS(4114), + [anon_sym_SEMI] = ACTIONS(4874), + [anon_sym_LBRACK] = ACTIONS(4874), + [anon_sym_COLON] = ACTIONS(4874), + [anon_sym_COMMA] = ACTIONS(4874), + [anon_sym_RBRACK] = ACTIONS(4874), + [anon_sym_LPAREN] = ACTIONS(4874), + [anon_sym_RPAREN] = ACTIONS(4874), + [anon_sym_RBRACE] = ACTIONS(4874), + [anon_sym_LT] = ACTIONS(4876), + [anon_sym_GT] = ACTIONS(4876), + [anon_sym_in] = ACTIONS(4876), + [anon_sym_where] = ACTIONS(4874), + [anon_sym_QMARK] = ACTIONS(4876), + [anon_sym_BANG] = ACTIONS(4876), + [anon_sym_PLUS_PLUS] = ACTIONS(4874), + [anon_sym_DASH_DASH] = ACTIONS(4874), + [anon_sym_PLUS] = ACTIONS(4876), + [anon_sym_DASH] = ACTIONS(4876), + [anon_sym_STAR] = ACTIONS(4874), + [anon_sym_SLASH] = ACTIONS(4876), + [anon_sym_PERCENT] = ACTIONS(4874), + [anon_sym_CARET] = ACTIONS(4874), + [anon_sym_PIPE] = ACTIONS(4876), + [anon_sym_AMP] = ACTIONS(4876), + [anon_sym_LT_LT] = ACTIONS(4874), + [anon_sym_GT_GT] = ACTIONS(4876), + [anon_sym_GT_GT_GT] = ACTIONS(4874), + [anon_sym_EQ_EQ] = ACTIONS(4874), + [anon_sym_BANG_EQ] = ACTIONS(4874), + [anon_sym_GT_EQ] = ACTIONS(4874), + [anon_sym_LT_EQ] = ACTIONS(4874), + [anon_sym_DOT] = ACTIONS(4876), + [anon_sym_EQ_GT] = ACTIONS(4874), + [anon_sym_switch] = ACTIONS(4874), + [anon_sym_DOT_DOT] = ACTIONS(4874), + [anon_sym_and] = ACTIONS(4874), + [anon_sym_or] = ACTIONS(4876), + [anon_sym_AMP_AMP] = ACTIONS(4874), + [anon_sym_PIPE_PIPE] = ACTIONS(4874), + [anon_sym_QMARK_QMARK] = ACTIONS(4874), + [anon_sym_from] = ACTIONS(4874), + [anon_sym_into] = ACTIONS(4874), + [anon_sym_join] = ACTIONS(4874), + [anon_sym_on] = ACTIONS(4874), + [anon_sym_equals] = ACTIONS(4874), + [anon_sym_let] = ACTIONS(4874), + [anon_sym_orderby] = ACTIONS(4874), + [anon_sym_group] = ACTIONS(4874), + [anon_sym_by] = ACTIONS(4874), + [anon_sym_select] = ACTIONS(4874), + [anon_sym_as] = ACTIONS(4874), + [anon_sym_is] = ACTIONS(4874), + [anon_sym_DASH_GT] = ACTIONS(4874), + [anon_sym_with] = ACTIONS(4874), + [aux_sym_preproc_if_token3] = ACTIONS(4874), + [aux_sym_preproc_else_token1] = ACTIONS(4874), + [aux_sym_preproc_elif_token1] = ACTIONS(4874), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -473570,162 +473118,6 @@ 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_SEMI] = ACTIONS(3977), - [anon_sym_LBRACK] = ACTIONS(3977), - [anon_sym_COLON] = ACTIONS(3977), - [anon_sym_COMMA] = ACTIONS(3977), - [anon_sym_RBRACK] = ACTIONS(3977), - [anon_sym_LPAREN] = ACTIONS(3977), - [anon_sym_RPAREN] = ACTIONS(3977), - [anon_sym_LBRACE] = ACTIONS(3977), - [anon_sym_RBRACE] = ACTIONS(3977), - [anon_sym_LT] = ACTIONS(3975), - [anon_sym_GT] = ACTIONS(3975), - [anon_sym_in] = ACTIONS(3977), - [anon_sym_where] = ACTIONS(3977), - [anon_sym_QMARK] = ACTIONS(3975), - [anon_sym_BANG] = ACTIONS(3975), - [anon_sym_PLUS_PLUS] = ACTIONS(3977), - [anon_sym_DASH_DASH] = ACTIONS(3977), - [anon_sym_PLUS] = ACTIONS(3975), - [anon_sym_DASH] = ACTIONS(3975), - [anon_sym_STAR] = ACTIONS(3977), - [anon_sym_SLASH] = ACTIONS(3975), - [anon_sym_PERCENT] = ACTIONS(3977), - [anon_sym_CARET] = ACTIONS(3977), - [anon_sym_PIPE] = ACTIONS(3975), - [anon_sym_AMP] = ACTIONS(3975), - [anon_sym_LT_LT] = ACTIONS(3977), - [anon_sym_GT_GT] = ACTIONS(3975), - [anon_sym_GT_GT_GT] = ACTIONS(3977), - [anon_sym_EQ_EQ] = ACTIONS(3977), - [anon_sym_BANG_EQ] = ACTIONS(3977), - [anon_sym_GT_EQ] = ACTIONS(3977), - [anon_sym_LT_EQ] = ACTIONS(3977), - [anon_sym_DOT] = ACTIONS(3975), - [anon_sym_EQ_GT] = ACTIONS(3977), - [anon_sym_switch] = ACTIONS(3977), - [anon_sym_DOT_DOT] = ACTIONS(3977), - [anon_sym_and] = ACTIONS(3977), - [anon_sym_or] = ACTIONS(3975), - [anon_sym_AMP_AMP] = ACTIONS(3977), - [anon_sym_PIPE_PIPE] = ACTIONS(3977), - [anon_sym_QMARK_QMARK] = ACTIONS(3977), - [anon_sym_from] = ACTIONS(3977), - [anon_sym_join] = ACTIONS(3977), - [anon_sym_on] = ACTIONS(3977), - [anon_sym_equals] = ACTIONS(3977), - [anon_sym_let] = ACTIONS(3977), - [anon_sym_orderby] = ACTIONS(3977), - [anon_sym_group] = ACTIONS(3977), - [anon_sym_by] = ACTIONS(3977), - [anon_sym_select] = ACTIONS(3977), - [anon_sym_as] = ACTIONS(3977), - [anon_sym_is] = ACTIONS(3977), - [anon_sym_DASH_GT] = ACTIONS(3977), - [anon_sym_with] = ACTIONS(3977), - [aux_sym_preproc_if_token3] = ACTIONS(3977), - [aux_sym_preproc_else_token1] = ACTIONS(3977), - [aux_sym_preproc_elif_token1] = ACTIONS(3977), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - }, - [3044] = { - [sym_preproc_region] = STATE(3044), - [sym_preproc_endregion] = STATE(3044), - [sym_preproc_line] = STATE(3044), - [sym_preproc_pragma] = STATE(3044), - [sym_preproc_nullable] = STATE(3044), - [sym_preproc_error] = STATE(3044), - [sym_preproc_warning] = STATE(3044), - [sym_preproc_define] = STATE(3044), - [sym_preproc_undef] = STATE(3044), - [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), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - }, - [3045] = { - [sym_preproc_region] = STATE(3045), - [sym_preproc_endregion] = STATE(3045), - [sym_preproc_line] = STATE(3045), - [sym_preproc_pragma] = STATE(3045), - [sym_preproc_nullable] = STATE(3045), - [sym_preproc_error] = STATE(3045), - [sym_preproc_warning] = STATE(3045), - [sym_preproc_define] = STATE(3045), - [sym_preproc_undef] = STATE(3045), [anon_sym_SEMI] = ACTIONS(5156), [anon_sym_LBRACK] = ACTIONS(5156), [anon_sym_COLON] = ACTIONS(5156), @@ -473794,6 +473186,162 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), }, + [3044] = { + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym__name] = STATE(4369), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(4068), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(4073), + [sym_type] = STATE(6075), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_identifier] = STATE(5720), + [sym__reserved_identifier] = STATE(3654), + [sym_preproc_if_in_attribute_list] = STATE(5583), + [sym_preproc_region] = STATE(3044), + [sym_preproc_endregion] = STATE(3044), + [sym_preproc_line] = STATE(3044), + [sym_preproc_pragma] = STATE(3044), + [sym_preproc_nullable] = STATE(3044), + [sym_preproc_error] = STATE(3044), + [sym_preproc_warning] = STATE(3044), + [sym_preproc_define] = STATE(3044), + [sym_preproc_undef] = STATE(3044), + [aux_sym__class_declaration_initializer_repeat1] = STATE(4409), + [aux_sym__parameter_type_with_modifiers_repeat1] = STATE(3426), + [sym__identifier_token] = ACTIONS(2965), + [anon_sym_alias] = ACTIONS(2969), + [anon_sym_global] = ACTIONS(2969), + [anon_sym_LBRACK] = ACTIONS(4675), + [anon_sym_LPAREN] = ACTIONS(2977), + [anon_sym_ref] = ACTIONS(4677), + [anon_sym_delegate] = ACTIONS(3438), + [anon_sym_file] = ACTIONS(2969), + [anon_sym_readonly] = ACTIONS(1097), + [anon_sym_in] = ACTIONS(1097), + [anon_sym_out] = ACTIONS(1097), + [anon_sym_where] = ACTIONS(2969), + [anon_sym_notnull] = ACTIONS(2969), + [anon_sym_unmanaged] = ACTIONS(2969), + [anon_sym_this] = ACTIONS(1097), + [anon_sym_scoped] = ACTIONS(4687), + [anon_sym_params] = ACTIONS(4681), + [anon_sym_var] = ACTIONS(2995), + [sym_predefined_type] = ACTIONS(2997), + [anon_sym_yield] = ACTIONS(2969), + [anon_sym_when] = ACTIONS(2969), + [anon_sym_from] = ACTIONS(2969), + [anon_sym_into] = ACTIONS(2969), + [anon_sym_join] = ACTIONS(2969), + [anon_sym_on] = ACTIONS(2969), + [anon_sym_equals] = ACTIONS(2969), + [anon_sym_let] = ACTIONS(2969), + [anon_sym_orderby] = ACTIONS(2969), + [anon_sym_ascending] = ACTIONS(2969), + [anon_sym_descending] = ACTIONS(2969), + [anon_sym_group] = ACTIONS(2969), + [anon_sym_by] = ACTIONS(2969), + [anon_sym_select] = ACTIONS(2969), + [aux_sym_preproc_if_token1] = ACTIONS(4683), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + }, + [3045] = { + [sym_preproc_region] = STATE(3045), + [sym_preproc_endregion] = STATE(3045), + [sym_preproc_line] = STATE(3045), + [sym_preproc_pragma] = STATE(3045), + [sym_preproc_nullable] = STATE(3045), + [sym_preproc_error] = STATE(3045), + [sym_preproc_warning] = STATE(3045), + [sym_preproc_define] = STATE(3045), + [sym_preproc_undef] = STATE(3045), + [anon_sym_SEMI] = ACTIONS(4002), + [anon_sym_LBRACK] = ACTIONS(4002), + [anon_sym_COLON] = ACTIONS(4002), + [anon_sym_COMMA] = ACTIONS(4002), + [anon_sym_RBRACK] = ACTIONS(4002), + [anon_sym_LPAREN] = ACTIONS(4002), + [anon_sym_RPAREN] = ACTIONS(4002), + [anon_sym_LBRACE] = ACTIONS(4002), + [anon_sym_RBRACE] = ACTIONS(4002), + [anon_sym_LT] = ACTIONS(4000), + [anon_sym_GT] = ACTIONS(4000), + [anon_sym_in] = ACTIONS(4002), + [anon_sym_where] = ACTIONS(4002), + [anon_sym_QMARK] = ACTIONS(4000), + [anon_sym_BANG] = ACTIONS(4000), + [anon_sym_PLUS_PLUS] = ACTIONS(4002), + [anon_sym_DASH_DASH] = ACTIONS(4002), + [anon_sym_PLUS] = ACTIONS(4000), + [anon_sym_DASH] = ACTIONS(4000), + [anon_sym_STAR] = ACTIONS(4002), + [anon_sym_SLASH] = ACTIONS(4000), + [anon_sym_PERCENT] = ACTIONS(4002), + [anon_sym_CARET] = ACTIONS(4002), + [anon_sym_PIPE] = ACTIONS(4000), + [anon_sym_AMP] = ACTIONS(4000), + [anon_sym_LT_LT] = ACTIONS(4002), + [anon_sym_GT_GT] = ACTIONS(4000), + [anon_sym_GT_GT_GT] = ACTIONS(4002), + [anon_sym_EQ_EQ] = ACTIONS(4002), + [anon_sym_BANG_EQ] = ACTIONS(4002), + [anon_sym_GT_EQ] = ACTIONS(4002), + [anon_sym_LT_EQ] = ACTIONS(4002), + [anon_sym_DOT] = ACTIONS(4000), + [anon_sym_EQ_GT] = ACTIONS(4002), + [anon_sym_switch] = ACTIONS(4002), + [anon_sym_DOT_DOT] = ACTIONS(4002), + [anon_sym_and] = ACTIONS(4002), + [anon_sym_or] = ACTIONS(4000), + [anon_sym_AMP_AMP] = ACTIONS(4002), + [anon_sym_PIPE_PIPE] = ACTIONS(4002), + [anon_sym_QMARK_QMARK] = ACTIONS(4002), + [anon_sym_from] = ACTIONS(4002), + [anon_sym_join] = ACTIONS(4002), + [anon_sym_on] = ACTIONS(4002), + [anon_sym_equals] = ACTIONS(4002), + [anon_sym_let] = ACTIONS(4002), + [anon_sym_orderby] = ACTIONS(4002), + [anon_sym_group] = ACTIONS(4002), + [anon_sym_by] = ACTIONS(4002), + [anon_sym_select] = ACTIONS(4002), + [anon_sym_as] = ACTIONS(4002), + [anon_sym_is] = ACTIONS(4002), + [anon_sym_DASH_GT] = ACTIONS(4002), + [anon_sym_with] = ACTIONS(4002), + [aux_sym_preproc_if_token3] = ACTIONS(4002), + [aux_sym_preproc_else_token1] = ACTIONS(4002), + [aux_sym_preproc_elif_token1] = ACTIONS(4002), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + }, [3046] = { [sym_preproc_region] = STATE(3046), [sym_preproc_endregion] = STATE(3046), @@ -473804,63 +473352,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(2957), - [anon_sym_LBRACK] = ACTIONS(2957), - [anon_sym_COLON] = ACTIONS(2957), - [anon_sym_COMMA] = ACTIONS(2957), - [anon_sym_RBRACK] = ACTIONS(2957), - [anon_sym_LPAREN] = ACTIONS(2957), - [anon_sym_RPAREN] = ACTIONS(2957), - [anon_sym_RBRACE] = ACTIONS(2957), - [anon_sym_LT] = ACTIONS(2955), - [anon_sym_GT] = ACTIONS(2955), - [anon_sym_in] = ACTIONS(2955), - [anon_sym_where] = ACTIONS(2957), - [anon_sym_QMARK] = ACTIONS(2955), - [anon_sym_BANG] = ACTIONS(2955), - [anon_sym_PLUS_PLUS] = ACTIONS(2957), - [anon_sym_DASH_DASH] = ACTIONS(2957), - [anon_sym_PLUS] = ACTIONS(2955), - [anon_sym_DASH] = ACTIONS(2955), - [anon_sym_STAR] = ACTIONS(2957), - [anon_sym_SLASH] = ACTIONS(2955), - [anon_sym_PERCENT] = ACTIONS(2957), - [anon_sym_CARET] = ACTIONS(2957), - [anon_sym_PIPE] = ACTIONS(2955), - [anon_sym_AMP] = ACTIONS(2955), - [anon_sym_LT_LT] = ACTIONS(2957), - [anon_sym_GT_GT] = ACTIONS(2955), - [anon_sym_GT_GT_GT] = ACTIONS(2957), - [anon_sym_EQ_EQ] = ACTIONS(2957), - [anon_sym_BANG_EQ] = ACTIONS(2957), - [anon_sym_GT_EQ] = ACTIONS(2957), - [anon_sym_LT_EQ] = ACTIONS(2957), - [anon_sym_DOT] = ACTIONS(2955), - [anon_sym_EQ_GT] = ACTIONS(2957), - [anon_sym_switch] = ACTIONS(2957), - [anon_sym_DOT_DOT] = ACTIONS(2957), - [anon_sym_and] = ACTIONS(2957), - [anon_sym_or] = ACTIONS(2955), - [anon_sym_AMP_AMP] = ACTIONS(2957), - [anon_sym_PIPE_PIPE] = ACTIONS(2957), - [anon_sym_QMARK_QMARK] = ACTIONS(2957), - [anon_sym_from] = ACTIONS(2957), - [anon_sym_into] = ACTIONS(2957), - [anon_sym_join] = ACTIONS(2957), - [anon_sym_on] = ACTIONS(2957), - [anon_sym_equals] = ACTIONS(2957), - [anon_sym_let] = ACTIONS(2957), - [anon_sym_orderby] = ACTIONS(2957), - [anon_sym_group] = ACTIONS(2957), - [anon_sym_by] = ACTIONS(2957), - [anon_sym_select] = ACTIONS(2957), - [anon_sym_as] = ACTIONS(2957), - [anon_sym_is] = ACTIONS(2957), - [anon_sym_DASH_GT] = ACTIONS(2957), - [anon_sym_with] = ACTIONS(2957), - [aux_sym_preproc_if_token3] = ACTIONS(2957), - [aux_sym_preproc_else_token1] = ACTIONS(2957), - [aux_sym_preproc_elif_token1] = ACTIONS(2957), + [anon_sym_SEMI] = ACTIONS(3990), + [anon_sym_LBRACK] = ACTIONS(3990), + [anon_sym_COLON] = ACTIONS(3990), + [anon_sym_COMMA] = ACTIONS(3990), + [anon_sym_RBRACK] = ACTIONS(3990), + [anon_sym_LPAREN] = ACTIONS(3990), + [anon_sym_RPAREN] = ACTIONS(3990), + [anon_sym_LBRACE] = ACTIONS(3990), + [anon_sym_RBRACE] = ACTIONS(3990), + [anon_sym_LT] = ACTIONS(3988), + [anon_sym_GT] = ACTIONS(3988), + [anon_sym_in] = ACTIONS(3990), + [anon_sym_where] = ACTIONS(3990), + [anon_sym_QMARK] = ACTIONS(3988), + [anon_sym_BANG] = ACTIONS(3988), + [anon_sym_PLUS_PLUS] = ACTIONS(3990), + [anon_sym_DASH_DASH] = ACTIONS(3990), + [anon_sym_PLUS] = ACTIONS(3988), + [anon_sym_DASH] = ACTIONS(3988), + [anon_sym_STAR] = ACTIONS(3990), + [anon_sym_SLASH] = ACTIONS(3988), + [anon_sym_PERCENT] = ACTIONS(3990), + [anon_sym_CARET] = ACTIONS(3990), + [anon_sym_PIPE] = ACTIONS(3988), + [anon_sym_AMP] = ACTIONS(3988), + [anon_sym_LT_LT] = ACTIONS(3990), + [anon_sym_GT_GT] = ACTIONS(3988), + [anon_sym_GT_GT_GT] = ACTIONS(3990), + [anon_sym_EQ_EQ] = ACTIONS(3990), + [anon_sym_BANG_EQ] = ACTIONS(3990), + [anon_sym_GT_EQ] = ACTIONS(3990), + [anon_sym_LT_EQ] = ACTIONS(3990), + [anon_sym_DOT] = ACTIONS(3988), + [anon_sym_EQ_GT] = ACTIONS(3990), + [anon_sym_switch] = ACTIONS(3990), + [anon_sym_DOT_DOT] = ACTIONS(3990), + [anon_sym_and] = ACTIONS(3990), + [anon_sym_or] = ACTIONS(3988), + [anon_sym_AMP_AMP] = ACTIONS(3990), + [anon_sym_PIPE_PIPE] = ACTIONS(3990), + [anon_sym_QMARK_QMARK] = ACTIONS(3990), + [anon_sym_from] = ACTIONS(3990), + [anon_sym_join] = ACTIONS(3990), + [anon_sym_on] = ACTIONS(3990), + [anon_sym_equals] = ACTIONS(3990), + [anon_sym_let] = ACTIONS(3990), + [anon_sym_orderby] = ACTIONS(3990), + [anon_sym_group] = ACTIONS(3990), + [anon_sym_by] = ACTIONS(3990), + [anon_sym_select] = ACTIONS(3990), + [anon_sym_as] = ACTIONS(3990), + [anon_sym_is] = ACTIONS(3990), + [anon_sym_DASH_GT] = ACTIONS(3990), + [anon_sym_with] = ACTIONS(3990), + [aux_sym_preproc_if_token3] = ACTIONS(3990), + [aux_sym_preproc_else_token1] = ACTIONS(3990), + [aux_sym_preproc_elif_token1] = ACTIONS(3990), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -473873,6 +473421,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3047] = { + [sym_attribute_list] = STATE(3516), + [sym__attribute_list] = STATE(3518), + [sym_modifier] = STATE(3655), + [sym_identifier] = STATE(6427), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_if_in_attribute_list] = STATE(3516), [sym_preproc_region] = STATE(3047), [sym_preproc_endregion] = STATE(3047), [sym_preproc_line] = STATE(3047), @@ -473882,63 +473436,57 @@ 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(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), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3128), + [aux_sym__class_declaration_initializer_repeat2] = STATE(3233), + [sym__identifier_token] = ACTIONS(25), + [anon_sym_extern] = ACTIONS(4731), + [anon_sym_alias] = ACTIONS(29), + [anon_sym_global] = ACTIONS(29), + [anon_sym_unsafe] = ACTIONS(4731), + [anon_sym_static] = ACTIONS(4731), + [anon_sym_LBRACK] = ACTIONS(4733), + [anon_sym_abstract] = ACTIONS(4731), + [anon_sym_async] = ACTIONS(4731), + [anon_sym_const] = ACTIONS(4731), + [anon_sym_file] = ACTIONS(4737), + [anon_sym_fixed] = ACTIONS(4731), + [anon_sym_internal] = ACTIONS(4731), + [anon_sym_new] = ACTIONS(4731), + [anon_sym_override] = ACTIONS(4731), + [anon_sym_partial] = ACTIONS(4731), + [anon_sym_private] = ACTIONS(4731), + [anon_sym_protected] = ACTIONS(4731), + [anon_sym_public] = ACTIONS(4731), + [anon_sym_readonly] = ACTIONS(4731), + [anon_sym_required] = ACTIONS(4731), + [anon_sym_sealed] = ACTIONS(4731), + [anon_sym_virtual] = ACTIONS(4731), + [anon_sym_volatile] = ACTIONS(4731), + [anon_sym_where] = ACTIONS(29), + [anon_sym_notnull] = ACTIONS(29), + [anon_sym_unmanaged] = ACTIONS(29), + [anon_sym_get] = ACTIONS(5160), + [anon_sym_set] = ACTIONS(5160), + [anon_sym_add] = ACTIONS(5160), + [anon_sym_remove] = ACTIONS(5160), + [anon_sym_init] = ACTIONS(5160), + [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(4741), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -473960,63 +473508,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(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(5162), + [anon_sym_LBRACK] = ACTIONS(5162), + [anon_sym_COLON] = ACTIONS(5162), + [anon_sym_COMMA] = ACTIONS(5162), + [anon_sym_RBRACK] = ACTIONS(5162), + [anon_sym_LPAREN] = ACTIONS(5162), + [anon_sym_RPAREN] = ACTIONS(5162), + [anon_sym_RBRACE] = ACTIONS(5162), + [anon_sym_LT] = ACTIONS(5164), + [anon_sym_GT] = ACTIONS(5164), + [anon_sym_in] = ACTIONS(5164), + [anon_sym_where] = ACTIONS(5162), + [anon_sym_QMARK] = ACTIONS(5164), + [anon_sym_BANG] = ACTIONS(5164), + [anon_sym_PLUS_PLUS] = ACTIONS(5162), + [anon_sym_DASH_DASH] = ACTIONS(5162), + [anon_sym_PLUS] = ACTIONS(5164), + [anon_sym_DASH] = ACTIONS(5164), + [anon_sym_STAR] = ACTIONS(5162), + [anon_sym_SLASH] = ACTIONS(5164), + [anon_sym_PERCENT] = ACTIONS(5162), + [anon_sym_CARET] = ACTIONS(5162), + [anon_sym_PIPE] = ACTIONS(5164), + [anon_sym_AMP] = ACTIONS(5164), + [anon_sym_LT_LT] = ACTIONS(5162), + [anon_sym_GT_GT] = ACTIONS(5164), + [anon_sym_GT_GT_GT] = ACTIONS(5162), + [anon_sym_EQ_EQ] = ACTIONS(5162), + [anon_sym_BANG_EQ] = ACTIONS(5162), + [anon_sym_GT_EQ] = ACTIONS(5162), + [anon_sym_LT_EQ] = ACTIONS(5162), + [anon_sym_DOT] = ACTIONS(5164), + [anon_sym_EQ_GT] = ACTIONS(5162), + [anon_sym_switch] = ACTIONS(5162), + [anon_sym_DOT_DOT] = ACTIONS(5162), + [anon_sym_and] = ACTIONS(5162), + [anon_sym_or] = ACTIONS(5164), + [anon_sym_AMP_AMP] = ACTIONS(5162), + [anon_sym_PIPE_PIPE] = ACTIONS(5162), + [anon_sym_QMARK_QMARK] = ACTIONS(5162), + [anon_sym_from] = ACTIONS(5162), + [anon_sym_into] = ACTIONS(5162), + [anon_sym_join] = ACTIONS(5162), + [anon_sym_on] = ACTIONS(5162), + [anon_sym_equals] = ACTIONS(5162), + [anon_sym_let] = ACTIONS(5162), + [anon_sym_orderby] = ACTIONS(5162), + [anon_sym_group] = ACTIONS(5162), + [anon_sym_by] = ACTIONS(5162), + [anon_sym_select] = ACTIONS(5162), + [anon_sym_as] = ACTIONS(5162), + [anon_sym_is] = ACTIONS(5162), + [anon_sym_DASH_GT] = ACTIONS(5162), + [anon_sym_with] = ACTIONS(5162), + [aux_sym_preproc_if_token3] = ACTIONS(5162), + [aux_sym_preproc_else_token1] = ACTIONS(5162), + [aux_sym_preproc_elif_token1] = ACTIONS(5162), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -474038,63 +473586,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(4253), - [anon_sym_LBRACK] = ACTIONS(4253), - [anon_sym_COLON] = ACTIONS(4253), - [anon_sym_COMMA] = ACTIONS(4253), - [anon_sym_RBRACK] = ACTIONS(4253), - [anon_sym_LPAREN] = ACTIONS(4253), - [anon_sym_RPAREN] = ACTIONS(4253), - [anon_sym_RBRACE] = ACTIONS(4253), - [anon_sym_LT] = ACTIONS(4255), - [anon_sym_GT] = ACTIONS(4255), - [anon_sym_in] = ACTIONS(4255), - [anon_sym_where] = ACTIONS(4253), - [anon_sym_QMARK] = ACTIONS(4255), - [anon_sym_BANG] = ACTIONS(4255), - [anon_sym_PLUS_PLUS] = ACTIONS(4253), - [anon_sym_DASH_DASH] = ACTIONS(4253), - [anon_sym_PLUS] = ACTIONS(4255), - [anon_sym_DASH] = ACTIONS(4255), - [anon_sym_STAR] = ACTIONS(4253), - [anon_sym_SLASH] = ACTIONS(4255), - [anon_sym_PERCENT] = ACTIONS(4253), - [anon_sym_CARET] = ACTIONS(4253), - [anon_sym_PIPE] = ACTIONS(4255), - [anon_sym_AMP] = ACTIONS(4255), - [anon_sym_LT_LT] = ACTIONS(4253), - [anon_sym_GT_GT] = ACTIONS(4255), - [anon_sym_GT_GT_GT] = ACTIONS(4253), - [anon_sym_EQ_EQ] = ACTIONS(4253), - [anon_sym_BANG_EQ] = ACTIONS(4253), - [anon_sym_GT_EQ] = ACTIONS(4253), - [anon_sym_LT_EQ] = ACTIONS(4253), - [anon_sym_DOT] = ACTIONS(4255), - [anon_sym_EQ_GT] = ACTIONS(4253), - [anon_sym_switch] = ACTIONS(4253), - [anon_sym_DOT_DOT] = ACTIONS(4253), - [anon_sym_and] = ACTIONS(4253), - [anon_sym_or] = ACTIONS(4255), - [anon_sym_AMP_AMP] = ACTIONS(4253), - [anon_sym_PIPE_PIPE] = ACTIONS(4253), - [anon_sym_QMARK_QMARK] = ACTIONS(4253), - [anon_sym_from] = ACTIONS(4253), - [anon_sym_into] = ACTIONS(4253), - [anon_sym_join] = ACTIONS(4253), - [anon_sym_on] = ACTIONS(4253), - [anon_sym_equals] = ACTIONS(4253), - [anon_sym_let] = ACTIONS(4253), - [anon_sym_orderby] = ACTIONS(4253), - [anon_sym_group] = ACTIONS(4253), - [anon_sym_by] = ACTIONS(4253), - [anon_sym_select] = ACTIONS(4253), - [anon_sym_as] = ACTIONS(4253), - [anon_sym_is] = ACTIONS(4253), - [anon_sym_DASH_GT] = ACTIONS(4253), - [anon_sym_with] = ACTIONS(4253), - [aux_sym_preproc_if_token3] = ACTIONS(4253), - [aux_sym_preproc_else_token1] = ACTIONS(4253), - [aux_sym_preproc_elif_token1] = ACTIONS(4253), + [anon_sym_SEMI] = ACTIONS(4076), + [anon_sym_LBRACK] = ACTIONS(4076), + [anon_sym_COLON] = ACTIONS(4076), + [anon_sym_COMMA] = ACTIONS(4076), + [anon_sym_RBRACK] = ACTIONS(4076), + [anon_sym_LPAREN] = ACTIONS(4076), + [anon_sym_RPAREN] = ACTIONS(4076), + [anon_sym_LBRACE] = ACTIONS(4076), + [anon_sym_RBRACE] = ACTIONS(4076), + [anon_sym_LT] = ACTIONS(4074), + [anon_sym_GT] = ACTIONS(4074), + [anon_sym_in] = ACTIONS(4076), + [anon_sym_where] = ACTIONS(4076), + [anon_sym_QMARK] = ACTIONS(4074), + [anon_sym_BANG] = ACTIONS(4074), + [anon_sym_PLUS_PLUS] = ACTIONS(4076), + [anon_sym_DASH_DASH] = ACTIONS(4076), + [anon_sym_PLUS] = ACTIONS(4074), + [anon_sym_DASH] = ACTIONS(4074), + [anon_sym_STAR] = ACTIONS(4076), + [anon_sym_SLASH] = ACTIONS(4074), + [anon_sym_PERCENT] = ACTIONS(4076), + [anon_sym_CARET] = ACTIONS(4076), + [anon_sym_PIPE] = ACTIONS(4074), + [anon_sym_AMP] = ACTIONS(4074), + [anon_sym_LT_LT] = ACTIONS(4076), + [anon_sym_GT_GT] = ACTIONS(4074), + [anon_sym_GT_GT_GT] = ACTIONS(4076), + [anon_sym_EQ_EQ] = ACTIONS(4076), + [anon_sym_BANG_EQ] = ACTIONS(4076), + [anon_sym_GT_EQ] = ACTIONS(4076), + [anon_sym_LT_EQ] = ACTIONS(4076), + [anon_sym_DOT] = ACTIONS(4074), + [anon_sym_EQ_GT] = ACTIONS(4076), + [anon_sym_switch] = ACTIONS(4076), + [anon_sym_DOT_DOT] = ACTIONS(4076), + [anon_sym_and] = ACTIONS(4076), + [anon_sym_or] = ACTIONS(4074), + [anon_sym_AMP_AMP] = ACTIONS(4076), + [anon_sym_PIPE_PIPE] = ACTIONS(4076), + [anon_sym_QMARK_QMARK] = ACTIONS(4076), + [anon_sym_from] = ACTIONS(4076), + [anon_sym_join] = ACTIONS(4076), + [anon_sym_on] = ACTIONS(4076), + [anon_sym_equals] = ACTIONS(4076), + [anon_sym_let] = ACTIONS(4076), + [anon_sym_orderby] = ACTIONS(4076), + [anon_sym_group] = ACTIONS(4076), + [anon_sym_by] = ACTIONS(4076), + [anon_sym_select] = ACTIONS(4076), + [anon_sym_as] = ACTIONS(4076), + [anon_sym_is] = ACTIONS(4076), + [anon_sym_DASH_GT] = ACTIONS(4076), + [anon_sym_with] = ACTIONS(4076), + [aux_sym_preproc_if_token3] = ACTIONS(4076), + [aux_sym_preproc_else_token1] = ACTIONS(4076), + [aux_sym_preproc_elif_token1] = ACTIONS(4076), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -474107,6 +473655,28 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3050] = { + [sym_attribute_list] = STATE(6020), + [sym__attribute_list] = STATE(5961), + [sym_type_parameter] = STATE(6757), + [sym__name] = STATE(6400), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(4068), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(4073), + [sym_type] = STATE(6987), + [sym_implicit_type] = STATE(7035), + [sym_array_type] = STATE(6706), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7421), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(7035), + [sym_scoped_type] = STATE(7035), + [sym_tuple_type] = STATE(6601), + [sym_identifier] = STATE(6275), + [sym__reserved_identifier] = STATE(3654), + [sym_preproc_if_in_attribute_list] = STATE(6020), [sym_preproc_region] = STATE(3050), [sym_preproc_endregion] = STATE(3050), [sym_preproc_line] = STATE(3050), @@ -474116,63 +473686,41 @@ 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(5168), - [anon_sym_LBRACK] = ACTIONS(5168), - [anon_sym_COLON] = ACTIONS(5168), + [aux_sym__class_declaration_initializer_repeat1] = STATE(5734), + [aux_sym_type_argument_list_repeat1] = STATE(7000), + [sym__identifier_token] = ACTIONS(2965), + [anon_sym_alias] = ACTIONS(2969), + [anon_sym_global] = ACTIONS(2969), + [anon_sym_LBRACK] = ACTIONS(5166), [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_LPAREN] = ACTIONS(2977), + [anon_sym_ref] = ACTIONS(5170), + [anon_sym_delegate] = ACTIONS(5172), + [anon_sym_file] = ACTIONS(2969), + [anon_sym_GT] = ACTIONS(5174), + [anon_sym_in] = ACTIONS(5176), + [anon_sym_out] = ACTIONS(5176), + [anon_sym_where] = ACTIONS(2969), + [anon_sym_notnull] = ACTIONS(2969), + [anon_sym_unmanaged] = ACTIONS(2969), + [anon_sym_scoped] = ACTIONS(5178), + [anon_sym_var] = ACTIONS(4705), + [sym_predefined_type] = ACTIONS(5180), + [anon_sym_yield] = ACTIONS(2969), + [anon_sym_when] = ACTIONS(2969), + [anon_sym_from] = ACTIONS(2969), + [anon_sym_into] = ACTIONS(2969), + [anon_sym_join] = ACTIONS(2969), + [anon_sym_on] = ACTIONS(2969), + [anon_sym_equals] = ACTIONS(2969), + [anon_sym_let] = ACTIONS(2969), + [anon_sym_orderby] = ACTIONS(2969), + [anon_sym_ascending] = ACTIONS(2969), + [anon_sym_descending] = ACTIONS(2969), + [anon_sym_group] = ACTIONS(2969), + [anon_sym_by] = ACTIONS(2969), + [anon_sym_select] = ACTIONS(2969), + [aux_sym_preproc_if_token1] = ACTIONS(5182), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -474194,63 +473742,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), - [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(4060), + [anon_sym_LBRACK] = ACTIONS(4060), + [anon_sym_COLON] = ACTIONS(4060), + [anon_sym_COMMA] = ACTIONS(4060), + [anon_sym_RBRACK] = ACTIONS(4060), + [anon_sym_LPAREN] = ACTIONS(4060), + [anon_sym_RPAREN] = ACTIONS(4060), + [anon_sym_LBRACE] = ACTIONS(4060), + [anon_sym_RBRACE] = ACTIONS(4060), + [anon_sym_LT] = ACTIONS(4058), + [anon_sym_GT] = ACTIONS(4058), + [anon_sym_in] = ACTIONS(4060), + [anon_sym_where] = ACTIONS(4060), + [anon_sym_QMARK] = ACTIONS(4058), + [anon_sym_BANG] = ACTIONS(4058), + [anon_sym_PLUS_PLUS] = ACTIONS(4060), + [anon_sym_DASH_DASH] = ACTIONS(4060), + [anon_sym_PLUS] = ACTIONS(4058), + [anon_sym_DASH] = ACTIONS(4058), + [anon_sym_STAR] = ACTIONS(4060), + [anon_sym_SLASH] = ACTIONS(4058), + [anon_sym_PERCENT] = ACTIONS(4060), + [anon_sym_CARET] = ACTIONS(4060), + [anon_sym_PIPE] = ACTIONS(4058), + [anon_sym_AMP] = ACTIONS(4058), + [anon_sym_LT_LT] = ACTIONS(4060), + [anon_sym_GT_GT] = ACTIONS(4058), + [anon_sym_GT_GT_GT] = ACTIONS(4060), + [anon_sym_EQ_EQ] = ACTIONS(4060), + [anon_sym_BANG_EQ] = ACTIONS(4060), + [anon_sym_GT_EQ] = ACTIONS(4060), + [anon_sym_LT_EQ] = ACTIONS(4060), + [anon_sym_DOT] = ACTIONS(4058), + [anon_sym_EQ_GT] = ACTIONS(4060), + [anon_sym_switch] = ACTIONS(4060), + [anon_sym_DOT_DOT] = ACTIONS(4060), + [anon_sym_and] = ACTIONS(4060), + [anon_sym_or] = ACTIONS(4058), + [anon_sym_AMP_AMP] = ACTIONS(4060), + [anon_sym_PIPE_PIPE] = ACTIONS(4060), + [anon_sym_QMARK_QMARK] = ACTIONS(4060), + [anon_sym_from] = ACTIONS(4060), + [anon_sym_join] = ACTIONS(4060), + [anon_sym_on] = ACTIONS(4060), + [anon_sym_equals] = ACTIONS(4060), + [anon_sym_let] = ACTIONS(4060), + [anon_sym_orderby] = ACTIONS(4060), + [anon_sym_group] = ACTIONS(4060), + [anon_sym_by] = ACTIONS(4060), + [anon_sym_select] = ACTIONS(4060), + [anon_sym_as] = ACTIONS(4060), + [anon_sym_is] = ACTIONS(4060), + [anon_sym_DASH_GT] = ACTIONS(4060), + [anon_sym_with] = ACTIONS(4060), + [aux_sym_preproc_if_token3] = ACTIONS(4060), + [aux_sym_preproc_else_token1] = ACTIONS(4060), + [aux_sym_preproc_elif_token1] = ACTIONS(4060), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -474272,63 +473820,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(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(3678), + [anon_sym_LBRACK] = ACTIONS(3678), + [anon_sym_COLON] = ACTIONS(3678), + [anon_sym_COMMA] = ACTIONS(3678), + [anon_sym_RBRACK] = ACTIONS(3678), + [anon_sym_LPAREN] = ACTIONS(3678), + [anon_sym_RPAREN] = ACTIONS(3678), + [anon_sym_LBRACE] = ACTIONS(3678), + [anon_sym_RBRACE] = ACTIONS(3678), + [anon_sym_LT] = ACTIONS(3669), + [anon_sym_GT] = ACTIONS(3669), + [anon_sym_in] = ACTIONS(3678), + [anon_sym_where] = ACTIONS(3678), + [anon_sym_QMARK] = ACTIONS(3669), + [anon_sym_BANG] = ACTIONS(3669), + [anon_sym_PLUS_PLUS] = ACTIONS(3678), + [anon_sym_DASH_DASH] = ACTIONS(3678), + [anon_sym_PLUS] = ACTIONS(3669), + [anon_sym_DASH] = ACTIONS(3669), + [anon_sym_STAR] = ACTIONS(3678), + [anon_sym_SLASH] = ACTIONS(3669), + [anon_sym_PERCENT] = ACTIONS(3678), + [anon_sym_CARET] = ACTIONS(3678), + [anon_sym_PIPE] = ACTIONS(3669), + [anon_sym_AMP] = ACTIONS(3669), + [anon_sym_LT_LT] = ACTIONS(3678), + [anon_sym_GT_GT] = ACTIONS(3669), + [anon_sym_GT_GT_GT] = ACTIONS(3678), + [anon_sym_EQ_EQ] = ACTIONS(3678), + [anon_sym_BANG_EQ] = ACTIONS(3678), + [anon_sym_GT_EQ] = ACTIONS(3678), + [anon_sym_LT_EQ] = ACTIONS(3678), + [anon_sym_DOT] = ACTIONS(3669), + [anon_sym_EQ_GT] = ACTIONS(3678), + [anon_sym_switch] = ACTIONS(3678), + [anon_sym_DOT_DOT] = ACTIONS(3678), + [anon_sym_and] = ACTIONS(3678), + [anon_sym_or] = ACTIONS(3669), + [anon_sym_AMP_AMP] = ACTIONS(3678), + [anon_sym_PIPE_PIPE] = ACTIONS(3678), + [anon_sym_QMARK_QMARK] = ACTIONS(3678), + [anon_sym_from] = 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_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(3678), + [anon_sym_with] = ACTIONS(3678), + [aux_sym_preproc_if_token3] = ACTIONS(3678), + [aux_sym_preproc_else_token1] = ACTIONS(3678), + [aux_sym_preproc_elif_token1] = ACTIONS(3678), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -474350,63 +473898,63 @@ 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(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(4098), + [anon_sym_LBRACK] = ACTIONS(4098), + [anon_sym_COLON] = ACTIONS(4098), + [anon_sym_COMMA] = ACTIONS(4098), + [anon_sym_RBRACK] = ACTIONS(4098), + [anon_sym_LPAREN] = ACTIONS(4098), + [anon_sym_RPAREN] = ACTIONS(4098), + [anon_sym_LBRACE] = ACTIONS(4098), + [anon_sym_RBRACE] = ACTIONS(4098), + [anon_sym_LT] = ACTIONS(4096), + [anon_sym_GT] = ACTIONS(4096), + [anon_sym_in] = ACTIONS(4098), + [anon_sym_where] = ACTIONS(4098), + [anon_sym_QMARK] = ACTIONS(4096), + [anon_sym_BANG] = ACTIONS(4096), + [anon_sym_PLUS_PLUS] = ACTIONS(4098), + [anon_sym_DASH_DASH] = ACTIONS(4098), + [anon_sym_PLUS] = ACTIONS(4096), + [anon_sym_DASH] = ACTIONS(4096), + [anon_sym_STAR] = ACTIONS(4098), + [anon_sym_SLASH] = ACTIONS(4096), + [anon_sym_PERCENT] = ACTIONS(4098), + [anon_sym_CARET] = ACTIONS(4098), + [anon_sym_PIPE] = ACTIONS(4096), + [anon_sym_AMP] = ACTIONS(4096), + [anon_sym_LT_LT] = ACTIONS(4098), + [anon_sym_GT_GT] = ACTIONS(4096), + [anon_sym_GT_GT_GT] = ACTIONS(4098), + [anon_sym_EQ_EQ] = ACTIONS(4098), + [anon_sym_BANG_EQ] = ACTIONS(4098), + [anon_sym_GT_EQ] = ACTIONS(4098), + [anon_sym_LT_EQ] = ACTIONS(4098), + [anon_sym_DOT] = ACTIONS(4096), + [anon_sym_EQ_GT] = ACTIONS(4098), + [anon_sym_switch] = ACTIONS(4098), + [anon_sym_DOT_DOT] = ACTIONS(4098), + [anon_sym_and] = ACTIONS(4098), + [anon_sym_or] = ACTIONS(4096), + [anon_sym_AMP_AMP] = ACTIONS(4098), + [anon_sym_PIPE_PIPE] = ACTIONS(4098), + [anon_sym_QMARK_QMARK] = ACTIONS(4098), + [anon_sym_from] = 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_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(4098), + [anon_sym_with] = ACTIONS(4098), + [aux_sym_preproc_if_token3] = ACTIONS(4098), + [aux_sym_preproc_else_token1] = ACTIONS(4098), + [aux_sym_preproc_elif_token1] = ACTIONS(4098), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -474428,84 +473976,6 @@ 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(4018), - [anon_sym_LBRACK] = ACTIONS(4018), - [anon_sym_COLON] = ACTIONS(4018), - [anon_sym_COMMA] = ACTIONS(4018), - [anon_sym_RBRACK] = ACTIONS(4018), - [anon_sym_LPAREN] = ACTIONS(4018), - [anon_sym_RPAREN] = ACTIONS(4018), - [anon_sym_LBRACE] = ACTIONS(4018), - [anon_sym_RBRACE] = ACTIONS(4018), - [anon_sym_LT] = ACTIONS(4016), - [anon_sym_GT] = ACTIONS(4016), - [anon_sym_in] = ACTIONS(4018), - [anon_sym_where] = ACTIONS(4018), - [anon_sym_QMARK] = ACTIONS(4016), - [anon_sym_BANG] = ACTIONS(4016), - [anon_sym_PLUS_PLUS] = ACTIONS(4018), - [anon_sym_DASH_DASH] = ACTIONS(4018), - [anon_sym_PLUS] = ACTIONS(4016), - [anon_sym_DASH] = ACTIONS(4016), - [anon_sym_STAR] = ACTIONS(4018), - [anon_sym_SLASH] = ACTIONS(4016), - [anon_sym_PERCENT] = ACTIONS(4018), - [anon_sym_CARET] = ACTIONS(4018), - [anon_sym_PIPE] = ACTIONS(4016), - [anon_sym_AMP] = ACTIONS(4016), - [anon_sym_LT_LT] = ACTIONS(4018), - [anon_sym_GT_GT] = ACTIONS(4016), - [anon_sym_GT_GT_GT] = ACTIONS(4018), - [anon_sym_EQ_EQ] = ACTIONS(4018), - [anon_sym_BANG_EQ] = ACTIONS(4018), - [anon_sym_GT_EQ] = ACTIONS(4018), - [anon_sym_LT_EQ] = ACTIONS(4018), - [anon_sym_DOT] = ACTIONS(4016), - [anon_sym_EQ_GT] = ACTIONS(4018), - [anon_sym_switch] = ACTIONS(4018), - [anon_sym_DOT_DOT] = ACTIONS(4018), - [anon_sym_and] = ACTIONS(4018), - [anon_sym_or] = ACTIONS(4016), - [anon_sym_AMP_AMP] = ACTIONS(4018), - [anon_sym_PIPE_PIPE] = ACTIONS(4018), - [anon_sym_QMARK_QMARK] = ACTIONS(4018), - [anon_sym_from] = 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_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(4018), - [anon_sym_with] = ACTIONS(4018), - [aux_sym_preproc_if_token3] = ACTIONS(4018), - [aux_sym_preproc_else_token1] = ACTIONS(4018), - [aux_sym_preproc_elif_token1] = 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), - }, - [3055] = { - [sym_preproc_region] = STATE(3055), - [sym_preproc_endregion] = STATE(3055), - [sym_preproc_line] = STATE(3055), - [sym_preproc_pragma] = STATE(3055), - [sym_preproc_nullable] = STATE(3055), - [sym_preproc_error] = STATE(3055), - [sym_preproc_warning] = STATE(3055), - [sym_preproc_define] = STATE(3055), - [sym_preproc_undef] = STATE(3055), [anon_sym_SEMI] = ACTIONS(5184), [anon_sym_LBRACK] = ACTIONS(5184), [anon_sym_COLON] = ACTIONS(5184), @@ -474574,16 +474044,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), }, - [3056] = { - [sym_preproc_region] = STATE(3056), - [sym_preproc_endregion] = STATE(3056), - [sym_preproc_line] = STATE(3056), - [sym_preproc_pragma] = STATE(3056), - [sym_preproc_nullable] = STATE(3056), - [sym_preproc_error] = STATE(3056), - [sym_preproc_warning] = STATE(3056), - [sym_preproc_define] = STATE(3056), - [sym_preproc_undef] = STATE(3056), + [3055] = { + [sym_preproc_region] = STATE(3055), + [sym_preproc_endregion] = STATE(3055), + [sym_preproc_line] = STATE(3055), + [sym_preproc_pragma] = STATE(3055), + [sym_preproc_nullable] = STATE(3055), + [sym_preproc_error] = STATE(3055), + [sym_preproc_warning] = STATE(3055), + [sym_preproc_define] = STATE(3055), + [sym_preproc_undef] = STATE(3055), [anon_sym_SEMI] = ACTIONS(5188), [anon_sym_LBRACK] = ACTIONS(5188), [anon_sym_COLON] = ACTIONS(5188), @@ -474652,6 +474122,83 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), }, + [3056] = { + [sym_preproc_region] = STATE(3056), + [sym_preproc_endregion] = STATE(3056), + [sym_preproc_line] = STATE(3056), + [sym_preproc_pragma] = STATE(3056), + [sym_preproc_nullable] = STATE(3056), + [sym_preproc_error] = STATE(3056), + [sym_preproc_warning] = STATE(3056), + [sym_preproc_define] = STATE(3056), + [sym_preproc_undef] = STATE(3056), + [anon_sym_SEMI] = ACTIONS(4961), + [anon_sym_LBRACK] = ACTIONS(4961), + [anon_sym_COLON] = ACTIONS(4961), + [anon_sym_COMMA] = ACTIONS(4961), + [anon_sym_RBRACK] = ACTIONS(4961), + [anon_sym_LPAREN] = ACTIONS(4961), + [anon_sym_RPAREN] = ACTIONS(4961), + [anon_sym_RBRACE] = ACTIONS(4961), + [anon_sym_LT] = ACTIONS(4963), + [anon_sym_GT] = ACTIONS(4963), + [anon_sym_in] = ACTIONS(4961), + [anon_sym_where] = ACTIONS(4961), + [anon_sym_QMARK] = ACTIONS(4963), + [anon_sym_BANG] = ACTIONS(4963), + [anon_sym_PLUS_PLUS] = ACTIONS(4961), + [anon_sym_DASH_DASH] = ACTIONS(4961), + [anon_sym_PLUS] = ACTIONS(4963), + [anon_sym_DASH] = ACTIONS(4963), + [anon_sym_STAR] = ACTIONS(4961), + [anon_sym_SLASH] = ACTIONS(4963), + [anon_sym_PERCENT] = ACTIONS(4961), + [anon_sym_CARET] = ACTIONS(4961), + [anon_sym_PIPE] = ACTIONS(4963), + [anon_sym_AMP] = ACTIONS(4963), + [anon_sym_LT_LT] = ACTIONS(4961), + [anon_sym_GT_GT] = ACTIONS(4963), + [anon_sym_GT_GT_GT] = ACTIONS(4961), + [anon_sym_EQ_EQ] = ACTIONS(4961), + [anon_sym_BANG_EQ] = ACTIONS(4961), + [anon_sym_GT_EQ] = ACTIONS(4961), + [anon_sym_LT_EQ] = ACTIONS(4961), + [anon_sym_DOT] = ACTIONS(4963), + [anon_sym_EQ_GT] = ACTIONS(4961), + [anon_sym_switch] = ACTIONS(4961), + [anon_sym_DOT_DOT] = ACTIONS(4961), + [anon_sym_and] = ACTIONS(4961), + [anon_sym_or] = ACTIONS(4963), + [anon_sym_AMP_AMP] = ACTIONS(4961), + [anon_sym_PIPE_PIPE] = ACTIONS(4961), + [anon_sym_QMARK_QMARK] = ACTIONS(4961), + [anon_sym_from] = ACTIONS(4961), + [anon_sym_join] = ACTIONS(4961), + [anon_sym_on] = ACTIONS(4961), + [anon_sym_equals] = ACTIONS(4961), + [anon_sym_let] = ACTIONS(4961), + [anon_sym_orderby] = ACTIONS(4961), + [anon_sym_group] = ACTIONS(4961), + [anon_sym_by] = ACTIONS(4961), + [anon_sym_select] = ACTIONS(4961), + [anon_sym_as] = ACTIONS(4961), + [anon_sym_is] = ACTIONS(4961), + [anon_sym_DASH_GT] = ACTIONS(4961), + [anon_sym_with] = ACTIONS(4961), + [aux_sym_preproc_if_token3] = ACTIONS(4961), + [aux_sym_preproc_else_token1] = ACTIONS(4961), + [aux_sym_preproc_elif_token1] = ACTIONS(4961), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + }, [3057] = { [sym_preproc_region] = STATE(3057), [sym_preproc_endregion] = STATE(3057), @@ -474662,63 +474209,62 @@ 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(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(2955), + [anon_sym_LBRACK] = ACTIONS(2955), + [anon_sym_COLON] = ACTIONS(2955), + [anon_sym_COMMA] = ACTIONS(2955), + [anon_sym_RBRACK] = ACTIONS(2955), + [anon_sym_LPAREN] = ACTIONS(2955), + [anon_sym_RPAREN] = ACTIONS(2955), + [anon_sym_RBRACE] = ACTIONS(2955), + [anon_sym_LT] = ACTIONS(2953), + [anon_sym_GT] = ACTIONS(2953), + [anon_sym_in] = ACTIONS(2955), + [anon_sym_where] = ACTIONS(2955), + [anon_sym_QMARK] = ACTIONS(2953), + [anon_sym_BANG] = ACTIONS(2953), + [anon_sym_PLUS_PLUS] = ACTIONS(2955), + [anon_sym_DASH_DASH] = ACTIONS(2955), + [anon_sym_PLUS] = ACTIONS(2953), + [anon_sym_DASH] = ACTIONS(2953), + [anon_sym_STAR] = ACTIONS(2955), + [anon_sym_SLASH] = ACTIONS(2953), + [anon_sym_PERCENT] = ACTIONS(2955), + [anon_sym_CARET] = ACTIONS(2955), + [anon_sym_PIPE] = ACTIONS(2953), + [anon_sym_AMP] = ACTIONS(2953), + [anon_sym_LT_LT] = ACTIONS(2955), + [anon_sym_GT_GT] = ACTIONS(2953), + [anon_sym_GT_GT_GT] = ACTIONS(2955), + [anon_sym_EQ_EQ] = ACTIONS(2955), + [anon_sym_BANG_EQ] = ACTIONS(2955), + [anon_sym_GT_EQ] = ACTIONS(2955), + [anon_sym_LT_EQ] = ACTIONS(2955), + [anon_sym_DOT] = ACTIONS(2953), + [anon_sym_EQ_GT] = ACTIONS(2955), + [anon_sym_switch] = ACTIONS(2955), + [anon_sym_DOT_DOT] = ACTIONS(2955), + [anon_sym_and] = ACTIONS(2955), + [anon_sym_or] = ACTIONS(2953), + [anon_sym_AMP_AMP] = ACTIONS(2955), + [anon_sym_PIPE_PIPE] = ACTIONS(2955), + [anon_sym_QMARK_QMARK] = ACTIONS(2955), + [anon_sym_from] = ACTIONS(2955), + [anon_sym_join] = ACTIONS(2955), + [anon_sym_on] = ACTIONS(2955), + [anon_sym_equals] = ACTIONS(2955), + [anon_sym_let] = ACTIONS(2955), + [anon_sym_orderby] = ACTIONS(2955), + [anon_sym_group] = ACTIONS(2955), + [anon_sym_by] = ACTIONS(2955), + [anon_sym_select] = ACTIONS(2955), + [anon_sym_as] = ACTIONS(2955), + [anon_sym_is] = ACTIONS(2955), + [anon_sym_DASH_GT] = ACTIONS(2955), + [anon_sym_with] = ACTIONS(2955), + [aux_sym_preproc_if_token3] = ACTIONS(2955), + [aux_sym_preproc_else_token1] = ACTIONS(2955), + [aux_sym_preproc_elif_token1] = ACTIONS(2955), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -474740,63 +474286,62 @@ 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(4018), - [anon_sym_LBRACK] = ACTIONS(4066), - [anon_sym_COLON] = ACTIONS(4018), - [anon_sym_COMMA] = ACTIONS(4018), - [anon_sym_RBRACK] = ACTIONS(4018), - [anon_sym_LPAREN] = ACTIONS(4018), - [anon_sym_RPAREN] = ACTIONS(4018), - [anon_sym_LBRACE] = ACTIONS(4018), - [anon_sym_RBRACE] = ACTIONS(4018), - [anon_sym_LT] = ACTIONS(4016), - [anon_sym_GT] = ACTIONS(4016), - [anon_sym_in] = ACTIONS(4018), - [anon_sym_where] = ACTIONS(4018), - [anon_sym_QMARK] = ACTIONS(5009), - [anon_sym_BANG] = ACTIONS(4016), - [anon_sym_PLUS_PLUS] = ACTIONS(4018), - [anon_sym_DASH_DASH] = ACTIONS(4018), - [anon_sym_PLUS] = ACTIONS(4016), - [anon_sym_DASH] = ACTIONS(4016), - [anon_sym_STAR] = ACTIONS(4072), - [anon_sym_SLASH] = ACTIONS(4016), - [anon_sym_PERCENT] = ACTIONS(4018), - [anon_sym_CARET] = ACTIONS(4018), - [anon_sym_PIPE] = ACTIONS(4016), - [anon_sym_AMP] = ACTIONS(4016), - [anon_sym_LT_LT] = ACTIONS(4018), - [anon_sym_GT_GT] = ACTIONS(4016), - [anon_sym_GT_GT_GT] = ACTIONS(4018), - [anon_sym_EQ_EQ] = ACTIONS(4018), - [anon_sym_BANG_EQ] = ACTIONS(4018), - [anon_sym_GT_EQ] = ACTIONS(4018), - [anon_sym_LT_EQ] = ACTIONS(4018), - [anon_sym_DOT] = ACTIONS(4016), - [anon_sym_EQ_GT] = ACTIONS(4018), - [anon_sym_switch] = ACTIONS(4018), - [anon_sym_DOT_DOT] = ACTIONS(4018), - [anon_sym_and] = ACTIONS(4018), - [anon_sym_or] = ACTIONS(4016), - [anon_sym_AMP_AMP] = ACTIONS(4018), - [anon_sym_PIPE_PIPE] = ACTIONS(4018), - [anon_sym_QMARK_QMARK] = ACTIONS(4018), - [anon_sym_from] = 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_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(4018), - [anon_sym_with] = ACTIONS(4018), - [aux_sym_preproc_if_token3] = ACTIONS(4018), - [aux_sym_preproc_else_token1] = ACTIONS(4018), - [aux_sym_preproc_elif_token1] = ACTIONS(4018), + [anon_sym_SEMI] = ACTIONS(4996), + [anon_sym_LBRACK] = ACTIONS(4996), + [anon_sym_COLON] = ACTIONS(4996), + [anon_sym_COMMA] = ACTIONS(4996), + [anon_sym_RBRACK] = ACTIONS(4996), + [anon_sym_LPAREN] = ACTIONS(4996), + [anon_sym_RPAREN] = ACTIONS(4996), + [anon_sym_RBRACE] = ACTIONS(4996), + [anon_sym_LT] = ACTIONS(4998), + [anon_sym_GT] = ACTIONS(4998), + [anon_sym_in] = ACTIONS(4996), + [anon_sym_where] = ACTIONS(4996), + [anon_sym_QMARK] = ACTIONS(4998), + [anon_sym_BANG] = ACTIONS(4998), + [anon_sym_PLUS_PLUS] = ACTIONS(4996), + [anon_sym_DASH_DASH] = ACTIONS(4996), + [anon_sym_PLUS] = ACTIONS(4998), + [anon_sym_DASH] = ACTIONS(4998), + [anon_sym_STAR] = ACTIONS(4996), + [anon_sym_SLASH] = ACTIONS(4998), + [anon_sym_PERCENT] = ACTIONS(4996), + [anon_sym_CARET] = ACTIONS(4996), + [anon_sym_PIPE] = ACTIONS(4998), + [anon_sym_AMP] = ACTIONS(4998), + [anon_sym_LT_LT] = ACTIONS(4996), + [anon_sym_GT_GT] = ACTIONS(4998), + [anon_sym_GT_GT_GT] = ACTIONS(4996), + [anon_sym_EQ_EQ] = ACTIONS(4996), + [anon_sym_BANG_EQ] = ACTIONS(4996), + [anon_sym_GT_EQ] = ACTIONS(4996), + [anon_sym_LT_EQ] = ACTIONS(4996), + [anon_sym_DOT] = ACTIONS(4998), + [anon_sym_EQ_GT] = ACTIONS(4996), + [anon_sym_switch] = ACTIONS(4996), + [anon_sym_DOT_DOT] = ACTIONS(4996), + [anon_sym_and] = ACTIONS(4996), + [anon_sym_or] = ACTIONS(4998), + [anon_sym_AMP_AMP] = ACTIONS(4996), + [anon_sym_PIPE_PIPE] = ACTIONS(4996), + [anon_sym_QMARK_QMARK] = ACTIONS(4996), + [anon_sym_from] = ACTIONS(4996), + [anon_sym_join] = ACTIONS(4996), + [anon_sym_on] = ACTIONS(4996), + [anon_sym_equals] = ACTIONS(4996), + [anon_sym_let] = ACTIONS(4996), + [anon_sym_orderby] = ACTIONS(4996), + [anon_sym_group] = ACTIONS(4996), + [anon_sym_by] = ACTIONS(4996), + [anon_sym_select] = ACTIONS(4996), + [anon_sym_as] = ACTIONS(4996), + [anon_sym_is] = ACTIONS(4996), + [anon_sym_DASH_GT] = ACTIONS(4996), + [anon_sym_with] = ACTIONS(4996), + [aux_sym_preproc_if_token3] = ACTIONS(4996), + [aux_sym_preproc_else_token1] = ACTIONS(4996), + [aux_sym_preproc_elif_token1] = ACTIONS(4996), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -474818,63 +474363,62 @@ 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(4014), - [anon_sym_LBRACK] = ACTIONS(4014), - [anon_sym_COLON] = ACTIONS(4014), - [anon_sym_COMMA] = ACTIONS(4014), - [anon_sym_RBRACK] = ACTIONS(4014), - [anon_sym_LPAREN] = ACTIONS(4014), - [anon_sym_RPAREN] = ACTIONS(4014), - [anon_sym_LBRACE] = ACTIONS(4014), - [anon_sym_RBRACE] = ACTIONS(4014), - [anon_sym_LT] = ACTIONS(4012), - [anon_sym_GT] = ACTIONS(4012), - [anon_sym_in] = ACTIONS(4014), - [anon_sym_where] = ACTIONS(4014), - [anon_sym_QMARK] = ACTIONS(4012), - [anon_sym_BANG] = ACTIONS(4012), - [anon_sym_PLUS_PLUS] = ACTIONS(4014), - [anon_sym_DASH_DASH] = ACTIONS(4014), - [anon_sym_PLUS] = ACTIONS(4012), - [anon_sym_DASH] = ACTIONS(4012), - [anon_sym_STAR] = ACTIONS(4014), - [anon_sym_SLASH] = ACTIONS(4012), - [anon_sym_PERCENT] = ACTIONS(4014), - [anon_sym_CARET] = ACTIONS(4014), - [anon_sym_PIPE] = ACTIONS(4012), - [anon_sym_AMP] = ACTIONS(4012), - [anon_sym_LT_LT] = ACTIONS(4014), - [anon_sym_GT_GT] = ACTIONS(4012), - [anon_sym_GT_GT_GT] = ACTIONS(4014), - [anon_sym_EQ_EQ] = ACTIONS(4014), - [anon_sym_BANG_EQ] = ACTIONS(4014), - [anon_sym_GT_EQ] = ACTIONS(4014), - [anon_sym_LT_EQ] = ACTIONS(4014), - [anon_sym_DOT] = ACTIONS(4012), - [anon_sym_EQ_GT] = ACTIONS(4014), - [anon_sym_switch] = ACTIONS(4014), - [anon_sym_DOT_DOT] = ACTIONS(4014), - [anon_sym_and] = ACTIONS(4014), - [anon_sym_or] = ACTIONS(4012), - [anon_sym_AMP_AMP] = ACTIONS(4014), - [anon_sym_PIPE_PIPE] = ACTIONS(4014), - [anon_sym_QMARK_QMARK] = ACTIONS(4014), - [anon_sym_from] = ACTIONS(4014), - [anon_sym_join] = ACTIONS(4014), - [anon_sym_on] = ACTIONS(4014), - [anon_sym_equals] = ACTIONS(4014), - [anon_sym_let] = ACTIONS(4014), - [anon_sym_orderby] = ACTIONS(4014), - [anon_sym_group] = ACTIONS(4014), - [anon_sym_by] = ACTIONS(4014), - [anon_sym_select] = ACTIONS(4014), - [anon_sym_as] = ACTIONS(4014), - [anon_sym_is] = ACTIONS(4014), - [anon_sym_DASH_GT] = ACTIONS(4014), - [anon_sym_with] = ACTIONS(4014), - [aux_sym_preproc_if_token3] = ACTIONS(4014), - [aux_sym_preproc_else_token1] = ACTIONS(4014), - [aux_sym_preproc_elif_token1] = ACTIONS(4014), + [anon_sym_SEMI] = ACTIONS(5096), + [anon_sym_LBRACK] = ACTIONS(5096), + [anon_sym_COLON] = ACTIONS(5096), + [anon_sym_COMMA] = ACTIONS(5096), + [anon_sym_RBRACK] = ACTIONS(5096), + [anon_sym_LPAREN] = ACTIONS(5096), + [anon_sym_RPAREN] = ACTIONS(5096), + [anon_sym_RBRACE] = ACTIONS(5096), + [anon_sym_LT] = ACTIONS(5098), + [anon_sym_GT] = ACTIONS(5098), + [anon_sym_in] = ACTIONS(5096), + [anon_sym_where] = ACTIONS(5096), + [anon_sym_QMARK] = ACTIONS(5098), + [anon_sym_BANG] = ACTIONS(5098), + [anon_sym_PLUS_PLUS] = ACTIONS(5096), + [anon_sym_DASH_DASH] = ACTIONS(5096), + [anon_sym_PLUS] = ACTIONS(5098), + [anon_sym_DASH] = ACTIONS(5098), + [anon_sym_STAR] = ACTIONS(5096), + [anon_sym_SLASH] = ACTIONS(5098), + [anon_sym_PERCENT] = ACTIONS(5096), + [anon_sym_CARET] = ACTIONS(5096), + [anon_sym_PIPE] = ACTIONS(5098), + [anon_sym_AMP] = ACTIONS(5098), + [anon_sym_LT_LT] = ACTIONS(5096), + [anon_sym_GT_GT] = ACTIONS(5098), + [anon_sym_GT_GT_GT] = ACTIONS(5096), + [anon_sym_EQ_EQ] = ACTIONS(5096), + [anon_sym_BANG_EQ] = ACTIONS(5096), + [anon_sym_GT_EQ] = ACTIONS(5096), + [anon_sym_LT_EQ] = ACTIONS(5096), + [anon_sym_DOT] = ACTIONS(5098), + [anon_sym_EQ_GT] = ACTIONS(5096), + [anon_sym_switch] = ACTIONS(5096), + [anon_sym_DOT_DOT] = ACTIONS(5096), + [anon_sym_and] = ACTIONS(5096), + [anon_sym_or] = ACTIONS(5098), + [anon_sym_AMP_AMP] = ACTIONS(5096), + [anon_sym_PIPE_PIPE] = ACTIONS(5096), + [anon_sym_QMARK_QMARK] = ACTIONS(5096), + [anon_sym_from] = ACTIONS(5096), + [anon_sym_join] = ACTIONS(5096), + [anon_sym_on] = ACTIONS(5096), + [anon_sym_equals] = ACTIONS(5096), + [anon_sym_let] = ACTIONS(5096), + [anon_sym_orderby] = ACTIONS(5096), + [anon_sym_group] = ACTIONS(5096), + [anon_sym_by] = ACTIONS(5096), + [anon_sym_select] = ACTIONS(5096), + [anon_sym_as] = ACTIONS(5096), + [anon_sym_is] = ACTIONS(5096), + [anon_sym_DASH_GT] = ACTIONS(5096), + [anon_sym_with] = ACTIONS(5096), + [aux_sym_preproc_if_token3] = ACTIONS(5096), + [aux_sym_preproc_else_token1] = ACTIONS(5096), + [aux_sym_preproc_elif_token1] = ACTIONS(5096), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -474887,27 +474431,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3060] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym__name] = STATE(4390), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(4096), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(4109), - [sym_type] = STATE(6072), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_identifier] = STATE(5718), - [sym__reserved_identifier] = STATE(3691), - [sym_preproc_if_in_attribute_list] = STATE(5576), [sym_preproc_region] = STATE(3060), [sym_preproc_endregion] = STATE(3060), [sym_preproc_line] = STATE(3060), @@ -474917,42 +474440,62 @@ 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), - [aux_sym__class_declaration_initializer_repeat1] = STATE(4491), - [aux_sym__parameter_type_with_modifiers_repeat1] = STATE(3478), - [sym__identifier_token] = ACTIONS(2967), - [anon_sym_alias] = ACTIONS(2971), - [anon_sym_global] = ACTIONS(2971), - [anon_sym_LBRACK] = ACTIONS(4689), - [anon_sym_LPAREN] = ACTIONS(2979), - [anon_sym_ref] = ACTIONS(4691), - [anon_sym_delegate] = ACTIONS(3454), - [anon_sym_file] = ACTIONS(2971), - [anon_sym_readonly] = ACTIONS(1103), - [anon_sym_in] = ACTIONS(1103), - [anon_sym_out] = ACTIONS(1103), - [anon_sym_where] = ACTIONS(2971), - [anon_sym_notnull] = ACTIONS(2971), - [anon_sym_unmanaged] = ACTIONS(2971), - [anon_sym_this] = ACTIONS(1103), - [anon_sym_scoped] = ACTIONS(4711), - [anon_sym_params] = ACTIONS(4695), - [anon_sym_var] = ACTIONS(2999), - [sym_predefined_type] = ACTIONS(3001), - [anon_sym_yield] = ACTIONS(2971), - [anon_sym_when] = ACTIONS(2971), - [anon_sym_from] = ACTIONS(2971), - [anon_sym_into] = ACTIONS(2971), - [anon_sym_join] = ACTIONS(2971), - [anon_sym_on] = ACTIONS(2971), - [anon_sym_equals] = ACTIONS(2971), - [anon_sym_let] = ACTIONS(2971), - [anon_sym_orderby] = ACTIONS(2971), - [anon_sym_ascending] = ACTIONS(2971), - [anon_sym_descending] = ACTIONS(2971), - [anon_sym_group] = ACTIONS(2971), - [anon_sym_by] = ACTIONS(2971), - [anon_sym_select] = ACTIONS(2971), - [aux_sym_preproc_if_token1] = ACTIONS(4697), + [anon_sym_SEMI] = ACTIONS(5120), + [anon_sym_LBRACK] = ACTIONS(5120), + [anon_sym_COLON] = ACTIONS(5120), + [anon_sym_COMMA] = ACTIONS(5120), + [anon_sym_RBRACK] = ACTIONS(5120), + [anon_sym_LPAREN] = ACTIONS(5120), + [anon_sym_RPAREN] = ACTIONS(5120), + [anon_sym_RBRACE] = ACTIONS(5120), + [anon_sym_LT] = ACTIONS(5122), + [anon_sym_GT] = ACTIONS(5122), + [anon_sym_in] = ACTIONS(5120), + [anon_sym_where] = ACTIONS(5120), + [anon_sym_QMARK] = ACTIONS(5122), + [anon_sym_BANG] = ACTIONS(5122), + [anon_sym_PLUS_PLUS] = ACTIONS(5120), + [anon_sym_DASH_DASH] = ACTIONS(5120), + [anon_sym_PLUS] = ACTIONS(5122), + [anon_sym_DASH] = ACTIONS(5122), + [anon_sym_STAR] = ACTIONS(5120), + [anon_sym_SLASH] = ACTIONS(5122), + [anon_sym_PERCENT] = ACTIONS(5120), + [anon_sym_CARET] = ACTIONS(5120), + [anon_sym_PIPE] = ACTIONS(5122), + [anon_sym_AMP] = ACTIONS(5122), + [anon_sym_LT_LT] = ACTIONS(5120), + [anon_sym_GT_GT] = ACTIONS(5122), + [anon_sym_GT_GT_GT] = ACTIONS(5120), + [anon_sym_EQ_EQ] = ACTIONS(5120), + [anon_sym_BANG_EQ] = ACTIONS(5120), + [anon_sym_GT_EQ] = ACTIONS(5120), + [anon_sym_LT_EQ] = ACTIONS(5120), + [anon_sym_DOT] = ACTIONS(5122), + [anon_sym_EQ_GT] = ACTIONS(5120), + [anon_sym_switch] = ACTIONS(5120), + [anon_sym_DOT_DOT] = ACTIONS(5120), + [anon_sym_and] = ACTIONS(5120), + [anon_sym_or] = ACTIONS(5122), + [anon_sym_AMP_AMP] = ACTIONS(5120), + [anon_sym_PIPE_PIPE] = ACTIONS(5120), + [anon_sym_QMARK_QMARK] = ACTIONS(5120), + [anon_sym_from] = ACTIONS(5120), + [anon_sym_join] = ACTIONS(5120), + [anon_sym_on] = ACTIONS(5120), + [anon_sym_equals] = ACTIONS(5120), + [anon_sym_let] = ACTIONS(5120), + [anon_sym_orderby] = ACTIONS(5120), + [anon_sym_group] = ACTIONS(5120), + [anon_sym_by] = ACTIONS(5120), + [anon_sym_select] = ACTIONS(5120), + [anon_sym_as] = ACTIONS(5120), + [anon_sym_is] = ACTIONS(5120), + [anon_sym_DASH_GT] = ACTIONS(5120), + [anon_sym_with] = ACTIONS(5120), + [aux_sym_preproc_if_token3] = ACTIONS(5120), + [aux_sym_preproc_else_token1] = ACTIONS(5120), + [aux_sym_preproc_elif_token1] = ACTIONS(5120), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -474974,63 +474517,62 @@ 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(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(5116), + [anon_sym_LBRACK] = ACTIONS(5116), + [anon_sym_COLON] = ACTIONS(5116), + [anon_sym_COMMA] = ACTIONS(5116), + [anon_sym_RBRACK] = ACTIONS(5116), + [anon_sym_LPAREN] = ACTIONS(5116), + [anon_sym_RPAREN] = ACTIONS(5116), + [anon_sym_RBRACE] = ACTIONS(5116), + [anon_sym_LT] = ACTIONS(5118), + [anon_sym_GT] = ACTIONS(5118), + [anon_sym_in] = ACTIONS(5116), + [anon_sym_where] = ACTIONS(5116), + [anon_sym_QMARK] = ACTIONS(5118), + [anon_sym_BANG] = ACTIONS(5118), + [anon_sym_PLUS_PLUS] = ACTIONS(5116), + [anon_sym_DASH_DASH] = ACTIONS(5116), + [anon_sym_PLUS] = ACTIONS(5118), + [anon_sym_DASH] = ACTIONS(5118), + [anon_sym_STAR] = ACTIONS(5116), + [anon_sym_SLASH] = ACTIONS(5118), + [anon_sym_PERCENT] = ACTIONS(5116), + [anon_sym_CARET] = ACTIONS(5116), + [anon_sym_PIPE] = ACTIONS(5118), + [anon_sym_AMP] = ACTIONS(5118), + [anon_sym_LT_LT] = ACTIONS(5116), + [anon_sym_GT_GT] = ACTIONS(5118), + [anon_sym_GT_GT_GT] = ACTIONS(5116), + [anon_sym_EQ_EQ] = ACTIONS(5116), + [anon_sym_BANG_EQ] = ACTIONS(5116), + [anon_sym_GT_EQ] = ACTIONS(5116), + [anon_sym_LT_EQ] = ACTIONS(5116), + [anon_sym_DOT] = ACTIONS(5118), + [anon_sym_EQ_GT] = ACTIONS(5116), + [anon_sym_switch] = ACTIONS(5116), + [anon_sym_DOT_DOT] = ACTIONS(5116), + [anon_sym_and] = ACTIONS(5116), + [anon_sym_or] = ACTIONS(5118), + [anon_sym_AMP_AMP] = ACTIONS(5116), + [anon_sym_PIPE_PIPE] = ACTIONS(5116), + [anon_sym_QMARK_QMARK] = ACTIONS(5116), + [anon_sym_from] = ACTIONS(5116), + [anon_sym_join] = ACTIONS(5116), + [anon_sym_on] = ACTIONS(5116), + [anon_sym_equals] = ACTIONS(5116), + [anon_sym_let] = ACTIONS(5116), + [anon_sym_orderby] = ACTIONS(5116), + [anon_sym_group] = ACTIONS(5116), + [anon_sym_by] = ACTIONS(5116), + [anon_sym_select] = ACTIONS(5116), + [anon_sym_as] = ACTIONS(5116), + [anon_sym_is] = ACTIONS(5116), + [anon_sym_DASH_GT] = ACTIONS(5116), + [anon_sym_with] = ACTIONS(5116), + [aux_sym_preproc_if_token3] = ACTIONS(5116), + [aux_sym_preproc_else_token1] = ACTIONS(5116), + [aux_sym_preproc_elif_token1] = ACTIONS(5116), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -475052,63 +474594,62 @@ 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), - [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(5088), + [anon_sym_LBRACK] = ACTIONS(5088), + [anon_sym_COLON] = ACTIONS(5088), + [anon_sym_COMMA] = ACTIONS(5088), + [anon_sym_RBRACK] = ACTIONS(5088), + [anon_sym_LPAREN] = ACTIONS(5088), + [anon_sym_RPAREN] = ACTIONS(5088), + [anon_sym_RBRACE] = ACTIONS(5088), + [anon_sym_LT] = ACTIONS(5090), + [anon_sym_GT] = ACTIONS(5090), + [anon_sym_in] = ACTIONS(5088), + [anon_sym_where] = ACTIONS(5088), + [anon_sym_QMARK] = ACTIONS(5090), + [anon_sym_BANG] = ACTIONS(5090), + [anon_sym_PLUS_PLUS] = ACTIONS(5088), + [anon_sym_DASH_DASH] = ACTIONS(5088), + [anon_sym_PLUS] = ACTIONS(5090), + [anon_sym_DASH] = ACTIONS(5090), + [anon_sym_STAR] = ACTIONS(5088), + [anon_sym_SLASH] = ACTIONS(5090), + [anon_sym_PERCENT] = ACTIONS(5088), + [anon_sym_CARET] = ACTIONS(5088), + [anon_sym_PIPE] = ACTIONS(5090), + [anon_sym_AMP] = ACTIONS(5090), + [anon_sym_LT_LT] = ACTIONS(5088), + [anon_sym_GT_GT] = ACTIONS(5090), + [anon_sym_GT_GT_GT] = ACTIONS(5088), + [anon_sym_EQ_EQ] = ACTIONS(5088), + [anon_sym_BANG_EQ] = ACTIONS(5088), + [anon_sym_GT_EQ] = ACTIONS(5088), + [anon_sym_LT_EQ] = ACTIONS(5088), + [anon_sym_DOT] = ACTIONS(5090), + [anon_sym_EQ_GT] = ACTIONS(5088), + [anon_sym_switch] = ACTIONS(5088), + [anon_sym_DOT_DOT] = ACTIONS(5088), + [anon_sym_and] = ACTIONS(5088), + [anon_sym_or] = ACTIONS(5090), + [anon_sym_AMP_AMP] = ACTIONS(5088), + [anon_sym_PIPE_PIPE] = ACTIONS(5088), + [anon_sym_QMARK_QMARK] = ACTIONS(5088), + [anon_sym_from] = ACTIONS(5088), + [anon_sym_join] = ACTIONS(5088), + [anon_sym_on] = ACTIONS(5088), + [anon_sym_equals] = ACTIONS(5088), + [anon_sym_let] = ACTIONS(5088), + [anon_sym_orderby] = ACTIONS(5088), + [anon_sym_group] = ACTIONS(5088), + [anon_sym_by] = ACTIONS(5088), + [anon_sym_select] = ACTIONS(5088), + [anon_sym_as] = ACTIONS(5088), + [anon_sym_is] = ACTIONS(5088), + [anon_sym_DASH_GT] = ACTIONS(5088), + [anon_sym_with] = ACTIONS(5088), + [aux_sym_preproc_if_token3] = ACTIONS(5088), + [aux_sym_preproc_else_token1] = ACTIONS(5088), + [aux_sym_preproc_elif_token1] = ACTIONS(5088), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -475130,63 +474671,62 @@ 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(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(5024), + [anon_sym_LBRACK] = ACTIONS(5024), + [anon_sym_COLON] = ACTIONS(5024), + [anon_sym_COMMA] = ACTIONS(5024), + [anon_sym_RBRACK] = ACTIONS(5024), + [anon_sym_LPAREN] = ACTIONS(5024), + [anon_sym_RPAREN] = ACTIONS(5024), + [anon_sym_RBRACE] = ACTIONS(5024), + [anon_sym_LT] = ACTIONS(5026), + [anon_sym_GT] = ACTIONS(5026), + [anon_sym_in] = ACTIONS(5024), + [anon_sym_where] = ACTIONS(5024), + [anon_sym_QMARK] = ACTIONS(5026), + [anon_sym_BANG] = ACTIONS(5026), + [anon_sym_PLUS_PLUS] = ACTIONS(5024), + [anon_sym_DASH_DASH] = ACTIONS(5024), + [anon_sym_PLUS] = ACTIONS(5026), + [anon_sym_DASH] = ACTIONS(5026), + [anon_sym_STAR] = ACTIONS(5024), + [anon_sym_SLASH] = ACTIONS(5026), + [anon_sym_PERCENT] = ACTIONS(5024), + [anon_sym_CARET] = ACTIONS(5024), + [anon_sym_PIPE] = ACTIONS(5026), + [anon_sym_AMP] = ACTIONS(5026), + [anon_sym_LT_LT] = ACTIONS(5024), + [anon_sym_GT_GT] = ACTIONS(5026), + [anon_sym_GT_GT_GT] = ACTIONS(5024), + [anon_sym_EQ_EQ] = ACTIONS(5024), + [anon_sym_BANG_EQ] = ACTIONS(5024), + [anon_sym_GT_EQ] = ACTIONS(5024), + [anon_sym_LT_EQ] = ACTIONS(5024), + [anon_sym_DOT] = ACTIONS(5026), + [anon_sym_EQ_GT] = ACTIONS(5024), + [anon_sym_switch] = ACTIONS(5024), + [anon_sym_DOT_DOT] = ACTIONS(5024), + [anon_sym_and] = ACTIONS(5024), + [anon_sym_or] = ACTIONS(5026), + [anon_sym_AMP_AMP] = ACTIONS(5024), + [anon_sym_PIPE_PIPE] = ACTIONS(5024), + [anon_sym_QMARK_QMARK] = ACTIONS(5024), + [anon_sym_from] = ACTIONS(5024), + [anon_sym_join] = ACTIONS(5024), + [anon_sym_on] = ACTIONS(5024), + [anon_sym_equals] = ACTIONS(5024), + [anon_sym_let] = ACTIONS(5024), + [anon_sym_orderby] = ACTIONS(5024), + [anon_sym_group] = ACTIONS(5024), + [anon_sym_by] = ACTIONS(5024), + [anon_sym_select] = ACTIONS(5024), + [anon_sym_as] = ACTIONS(5024), + [anon_sym_is] = ACTIONS(5024), + [anon_sym_DASH_GT] = ACTIONS(5024), + [anon_sym_with] = ACTIONS(5024), + [aux_sym_preproc_if_token3] = ACTIONS(5024), + [aux_sym_preproc_else_token1] = ACTIONS(5024), + [aux_sym_preproc_elif_token1] = ACTIONS(5024), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -475208,63 +474748,62 @@ 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(5208), - [anon_sym_LBRACK] = ACTIONS(5208), - [anon_sym_COLON] = ACTIONS(5208), - [anon_sym_COMMA] = ACTIONS(5208), - [anon_sym_RBRACK] = ACTIONS(5208), - [anon_sym_LPAREN] = ACTIONS(5208), - [anon_sym_RPAREN] = ACTIONS(5208), - [anon_sym_RBRACE] = ACTIONS(5208), - [anon_sym_LT] = ACTIONS(5210), - [anon_sym_GT] = ACTIONS(5210), - [anon_sym_in] = ACTIONS(5210), - [anon_sym_where] = ACTIONS(5208), - [anon_sym_QMARK] = ACTIONS(5210), - [anon_sym_BANG] = ACTIONS(5210), - [anon_sym_PLUS_PLUS] = ACTIONS(5208), - [anon_sym_DASH_DASH] = ACTIONS(5208), - [anon_sym_PLUS] = ACTIONS(5210), - [anon_sym_DASH] = ACTIONS(5210), - [anon_sym_STAR] = ACTIONS(5208), - [anon_sym_SLASH] = ACTIONS(5210), - [anon_sym_PERCENT] = ACTIONS(5208), - [anon_sym_CARET] = ACTIONS(5208), - [anon_sym_PIPE] = ACTIONS(5210), - [anon_sym_AMP] = ACTIONS(5210), - [anon_sym_LT_LT] = ACTIONS(5208), - [anon_sym_GT_GT] = ACTIONS(5210), - [anon_sym_GT_GT_GT] = ACTIONS(5208), - [anon_sym_EQ_EQ] = ACTIONS(5208), - [anon_sym_BANG_EQ] = ACTIONS(5208), - [anon_sym_GT_EQ] = ACTIONS(5208), - [anon_sym_LT_EQ] = ACTIONS(5208), - [anon_sym_DOT] = ACTIONS(5210), - [anon_sym_EQ_GT] = ACTIONS(5208), - [anon_sym_switch] = ACTIONS(5208), - [anon_sym_DOT_DOT] = ACTIONS(5208), - [anon_sym_and] = ACTIONS(5208), - [anon_sym_or] = ACTIONS(5210), - [anon_sym_AMP_AMP] = ACTIONS(5208), - [anon_sym_PIPE_PIPE] = ACTIONS(5208), - [anon_sym_QMARK_QMARK] = ACTIONS(5208), - [anon_sym_from] = ACTIONS(5208), - [anon_sym_into] = ACTIONS(5208), - [anon_sym_join] = ACTIONS(5208), - [anon_sym_on] = ACTIONS(5208), - [anon_sym_equals] = ACTIONS(5208), - [anon_sym_let] = ACTIONS(5208), - [anon_sym_orderby] = ACTIONS(5208), - [anon_sym_group] = ACTIONS(5208), - [anon_sym_by] = ACTIONS(5208), - [anon_sym_select] = ACTIONS(5208), - [anon_sym_as] = ACTIONS(5208), - [anon_sym_is] = ACTIONS(5208), - [anon_sym_DASH_GT] = ACTIONS(5208), - [anon_sym_with] = ACTIONS(5208), - [aux_sym_preproc_if_token3] = ACTIONS(5208), - [aux_sym_preproc_else_token1] = ACTIONS(5208), - [aux_sym_preproc_elif_token1] = ACTIONS(5208), + [anon_sym_SEMI] = ACTIONS(5080), + [anon_sym_LBRACK] = ACTIONS(5080), + [anon_sym_COLON] = ACTIONS(5080), + [anon_sym_COMMA] = ACTIONS(5080), + [anon_sym_RBRACK] = ACTIONS(5080), + [anon_sym_LPAREN] = ACTIONS(5080), + [anon_sym_RPAREN] = ACTIONS(5080), + [anon_sym_RBRACE] = ACTIONS(5080), + [anon_sym_LT] = ACTIONS(5082), + [anon_sym_GT] = ACTIONS(5082), + [anon_sym_in] = ACTIONS(5080), + [anon_sym_where] = ACTIONS(5080), + [anon_sym_QMARK] = ACTIONS(5082), + [anon_sym_BANG] = ACTIONS(5082), + [anon_sym_PLUS_PLUS] = ACTIONS(5080), + [anon_sym_DASH_DASH] = ACTIONS(5080), + [anon_sym_PLUS] = ACTIONS(5082), + [anon_sym_DASH] = ACTIONS(5082), + [anon_sym_STAR] = ACTIONS(5080), + [anon_sym_SLASH] = ACTIONS(5082), + [anon_sym_PERCENT] = ACTIONS(5080), + [anon_sym_CARET] = ACTIONS(5080), + [anon_sym_PIPE] = ACTIONS(5082), + [anon_sym_AMP] = ACTIONS(5082), + [anon_sym_LT_LT] = ACTIONS(5080), + [anon_sym_GT_GT] = ACTIONS(5082), + [anon_sym_GT_GT_GT] = ACTIONS(5080), + [anon_sym_EQ_EQ] = ACTIONS(5080), + [anon_sym_BANG_EQ] = ACTIONS(5080), + [anon_sym_GT_EQ] = ACTIONS(5080), + [anon_sym_LT_EQ] = ACTIONS(5080), + [anon_sym_DOT] = ACTIONS(5082), + [anon_sym_EQ_GT] = ACTIONS(5080), + [anon_sym_switch] = ACTIONS(5080), + [anon_sym_DOT_DOT] = ACTIONS(5080), + [anon_sym_and] = ACTIONS(5080), + [anon_sym_or] = ACTIONS(5082), + [anon_sym_AMP_AMP] = ACTIONS(5080), + [anon_sym_PIPE_PIPE] = ACTIONS(5080), + [anon_sym_QMARK_QMARK] = ACTIONS(5080), + [anon_sym_from] = ACTIONS(5080), + [anon_sym_join] = ACTIONS(5080), + [anon_sym_on] = ACTIONS(5080), + [anon_sym_equals] = ACTIONS(5080), + [anon_sym_let] = ACTIONS(5080), + [anon_sym_orderby] = ACTIONS(5080), + [anon_sym_group] = ACTIONS(5080), + [anon_sym_by] = ACTIONS(5080), + [anon_sym_select] = ACTIONS(5080), + [anon_sym_as] = ACTIONS(5080), + [anon_sym_is] = ACTIONS(5080), + [anon_sym_DASH_GT] = ACTIONS(5080), + [anon_sym_with] = ACTIONS(5080), + [aux_sym_preproc_if_token3] = ACTIONS(5080), + [aux_sym_preproc_else_token1] = ACTIONS(5080), + [aux_sym_preproc_elif_token1] = ACTIONS(5080), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -475277,6 +474816,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3065] = { + [sym_modifier] = STATE(3114), [sym_preproc_region] = STATE(3065), [sym_preproc_endregion] = STATE(3065), [sym_preproc_line] = STATE(3065), @@ -475286,63 +474826,61 @@ 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(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), + [aux_sym__class_declaration_initializer_repeat2] = STATE(3065), + [sym__identifier_token] = ACTIONS(5192), + [anon_sym_extern] = ACTIONS(5194), + [anon_sym_alias] = ACTIONS(5192), + [anon_sym_global] = ACTIONS(5192), + [anon_sym_unsafe] = ACTIONS(5194), + [anon_sym_static] = ACTIONS(5194), + [anon_sym_LPAREN] = ACTIONS(5197), + [anon_sym_event] = ACTIONS(5192), + [anon_sym_class] = ACTIONS(5192), + [anon_sym_ref] = ACTIONS(5192), + [anon_sym_struct] = ACTIONS(5192), + [anon_sym_enum] = ACTIONS(5192), + [anon_sym_interface] = ACTIONS(5192), + [anon_sym_delegate] = ACTIONS(5192), + [anon_sym_record] = ACTIONS(5192), + [anon_sym_abstract] = ACTIONS(5194), + [anon_sym_async] = ACTIONS(5194), + [anon_sym_const] = ACTIONS(5194), + [anon_sym_file] = ACTIONS(5194), + [anon_sym_fixed] = ACTIONS(5194), + [anon_sym_internal] = ACTIONS(5194), + [anon_sym_new] = ACTIONS(5194), + [anon_sym_override] = ACTIONS(5194), + [anon_sym_partial] = ACTIONS(5194), + [anon_sym_private] = ACTIONS(5194), + [anon_sym_protected] = ACTIONS(5194), + [anon_sym_public] = ACTIONS(5194), + [anon_sym_readonly] = ACTIONS(5194), + [anon_sym_required] = ACTIONS(5194), + [anon_sym_sealed] = ACTIONS(5194), + [anon_sym_virtual] = ACTIONS(5194), + [anon_sym_volatile] = ACTIONS(5194), + [anon_sym_where] = ACTIONS(5192), + [anon_sym_notnull] = ACTIONS(5192), + [anon_sym_unmanaged] = ACTIONS(5192), + [anon_sym_implicit] = ACTIONS(5192), + [anon_sym_explicit] = ACTIONS(5192), + [anon_sym_scoped] = ACTIONS(5192), + [anon_sym_var] = ACTIONS(5192), + [sym_predefined_type] = ACTIONS(5192), + [anon_sym_yield] = ACTIONS(5192), + [anon_sym_when] = 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_ascending] = ACTIONS(5192), + [anon_sym_descending] = ACTIONS(5192), + [anon_sym_group] = ACTIONS(5192), + [anon_sym_by] = ACTIONS(5192), + [anon_sym_select] = ACTIONS(5192), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -475364,63 +474902,62 @@ 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(4860), - [anon_sym_LBRACK] = ACTIONS(4860), - [anon_sym_COLON] = ACTIONS(4860), - [anon_sym_COMMA] = ACTIONS(4860), - [anon_sym_RBRACK] = ACTIONS(4860), - [anon_sym_LPAREN] = ACTIONS(4860), - [anon_sym_RPAREN] = ACTIONS(4860), - [anon_sym_RBRACE] = ACTIONS(4860), - [anon_sym_LT] = ACTIONS(4862), - [anon_sym_GT] = ACTIONS(4862), - [anon_sym_in] = ACTIONS(4862), - [anon_sym_where] = ACTIONS(4860), - [anon_sym_QMARK] = ACTIONS(4862), - [anon_sym_BANG] = ACTIONS(4862), - [anon_sym_PLUS_PLUS] = ACTIONS(4860), - [anon_sym_DASH_DASH] = ACTIONS(4860), - [anon_sym_PLUS] = ACTIONS(4862), - [anon_sym_DASH] = ACTIONS(4862), - [anon_sym_STAR] = ACTIONS(4860), - [anon_sym_SLASH] = ACTIONS(4862), - [anon_sym_PERCENT] = ACTIONS(4860), - [anon_sym_CARET] = ACTIONS(4860), - [anon_sym_PIPE] = ACTIONS(4862), - [anon_sym_AMP] = ACTIONS(4862), - [anon_sym_LT_LT] = ACTIONS(4860), - [anon_sym_GT_GT] = ACTIONS(4862), - [anon_sym_GT_GT_GT] = ACTIONS(4860), - [anon_sym_EQ_EQ] = ACTIONS(4860), - [anon_sym_BANG_EQ] = ACTIONS(4860), - [anon_sym_GT_EQ] = ACTIONS(4860), - [anon_sym_LT_EQ] = ACTIONS(4860), - [anon_sym_DOT] = ACTIONS(4862), - [anon_sym_EQ_GT] = ACTIONS(4860), - [anon_sym_switch] = ACTIONS(4860), - [anon_sym_DOT_DOT] = ACTIONS(4860), - [anon_sym_and] = ACTIONS(4860), - [anon_sym_or] = ACTIONS(4862), - [anon_sym_AMP_AMP] = ACTIONS(4860), - [anon_sym_PIPE_PIPE] = ACTIONS(4860), - [anon_sym_QMARK_QMARK] = ACTIONS(4860), - [anon_sym_from] = ACTIONS(4860), - [anon_sym_into] = ACTIONS(4860), - [anon_sym_join] = ACTIONS(4860), - [anon_sym_on] = ACTIONS(4860), - [anon_sym_equals] = ACTIONS(4860), - [anon_sym_let] = ACTIONS(4860), - [anon_sym_orderby] = ACTIONS(4860), - [anon_sym_group] = ACTIONS(4860), - [anon_sym_by] = ACTIONS(4860), - [anon_sym_select] = ACTIONS(4860), - [anon_sym_as] = ACTIONS(4860), - [anon_sym_is] = ACTIONS(4860), - [anon_sym_DASH_GT] = ACTIONS(4860), - [anon_sym_with] = ACTIONS(4860), - [aux_sym_preproc_if_token3] = ACTIONS(4860), - [aux_sym_preproc_else_token1] = ACTIONS(4860), - [aux_sym_preproc_elif_token1] = ACTIONS(4860), + [anon_sym_EQ] = ACTIONS(3696), + [anon_sym_LBRACK] = ACTIONS(4243), + [anon_sym_LPAREN] = ACTIONS(4243), + [anon_sym_LT] = ACTIONS(4246), + [anon_sym_GT] = ACTIONS(4246), + [anon_sym_where] = ACTIONS(4241), + [anon_sym_QMARK] = ACTIONS(4246), + [anon_sym_BANG] = ACTIONS(4246), + [anon_sym_PLUS_PLUS] = ACTIONS(4243), + [anon_sym_DASH_DASH] = ACTIONS(4243), + [anon_sym_PLUS] = ACTIONS(4246), + [anon_sym_DASH] = ACTIONS(4246), + [anon_sym_STAR] = ACTIONS(4246), + [anon_sym_SLASH] = ACTIONS(4246), + [anon_sym_PERCENT] = ACTIONS(4246), + [anon_sym_CARET] = ACTIONS(4246), + [anon_sym_PIPE] = ACTIONS(4246), + [anon_sym_AMP] = ACTIONS(4246), + [anon_sym_LT_LT] = ACTIONS(4246), + [anon_sym_GT_GT] = ACTIONS(4246), + [anon_sym_GT_GT_GT] = ACTIONS(4246), + [anon_sym_EQ_EQ] = ACTIONS(4243), + [anon_sym_BANG_EQ] = ACTIONS(4243), + [anon_sym_GT_EQ] = ACTIONS(4243), + [anon_sym_LT_EQ] = ACTIONS(4243), + [anon_sym_DOT] = ACTIONS(4246), + [anon_sym_switch] = ACTIONS(4243), + [anon_sym_DOT_DOT] = ACTIONS(4243), + [anon_sym_and] = ACTIONS(4241), + [anon_sym_or] = ACTIONS(4249), + [anon_sym_PLUS_EQ] = ACTIONS(3711), + [anon_sym_DASH_EQ] = ACTIONS(3711), + [anon_sym_STAR_EQ] = ACTIONS(3711), + [anon_sym_SLASH_EQ] = ACTIONS(3711), + [anon_sym_PERCENT_EQ] = ACTIONS(3711), + [anon_sym_AMP_EQ] = ACTIONS(3711), + [anon_sym_CARET_EQ] = ACTIONS(3711), + [anon_sym_PIPE_EQ] = ACTIONS(3711), + [anon_sym_LT_LT_EQ] = ACTIONS(3711), + [anon_sym_GT_GT_EQ] = ACTIONS(3711), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3711), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3711), + [anon_sym_AMP_AMP] = ACTIONS(4243), + [anon_sym_PIPE_PIPE] = ACTIONS(4243), + [anon_sym_QMARK_QMARK] = ACTIONS(4246), + [anon_sym_from] = ACTIONS(4241), + [anon_sym_into] = ACTIONS(4241), + [anon_sym_join] = ACTIONS(4241), + [anon_sym_let] = ACTIONS(4241), + [anon_sym_orderby] = ACTIONS(4241), + [anon_sym_group] = ACTIONS(4241), + [anon_sym_select] = ACTIONS(4241), + [anon_sym_as] = ACTIONS(4243), + [anon_sym_is] = ACTIONS(4243), + [anon_sym_DASH_GT] = ACTIONS(4243), + [anon_sym_with] = ACTIONS(4243), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -475433,29 +474970,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3067] = { - [sym_attribute_list] = STATE(5576), - [sym__attribute_list] = STATE(5577), - [sym_parameter_list] = STATE(7311), - [sym__name] = STATE(4390), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(4096), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(4109), - [sym_type] = STATE(5915), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym__lambda_parameters] = STATE(7489), - [sym_identifier] = STATE(5763), - [sym__reserved_identifier] = STATE(3691), - [sym_preproc_if_in_attribute_list] = STATE(5576), [sym_preproc_region] = STATE(3067), [sym_preproc_endregion] = STATE(3067), [sym_preproc_line] = STATE(3067), @@ -475465,39 +474979,62 @@ 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), - [aux_sym__class_declaration_initializer_repeat1] = STATE(4491), - [aux_sym__lambda_expression_init_repeat1] = STATE(3498), - [sym__identifier_token] = ACTIONS(2967), - [anon_sym_alias] = ACTIONS(2971), - [anon_sym_global] = ACTIONS(2971), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(4689), - [anon_sym_LPAREN] = ACTIONS(3794), - [anon_sym_ref] = ACTIONS(3452), - [anon_sym_delegate] = ACTIONS(3454), - [anon_sym_async] = ACTIONS(1047), - [anon_sym_file] = ACTIONS(2971), - [anon_sym_where] = ACTIONS(2971), - [anon_sym_notnull] = ACTIONS(2971), - [anon_sym_unmanaged] = ACTIONS(2971), - [anon_sym_scoped] = ACTIONS(2997), - [anon_sym_var] = ACTIONS(2999), - [sym_predefined_type] = ACTIONS(3001), - [anon_sym_yield] = ACTIONS(2971), - [anon_sym_when] = ACTIONS(2971), - [anon_sym_from] = ACTIONS(2971), - [anon_sym_into] = ACTIONS(2971), - [anon_sym_join] = ACTIONS(2971), - [anon_sym_on] = ACTIONS(2971), - [anon_sym_equals] = ACTIONS(2971), - [anon_sym_let] = ACTIONS(2971), - [anon_sym_orderby] = ACTIONS(2971), - [anon_sym_ascending] = ACTIONS(2971), - [anon_sym_descending] = ACTIONS(2971), - [anon_sym_group] = ACTIONS(2971), - [anon_sym_by] = ACTIONS(2971), - [anon_sym_select] = ACTIONS(2971), - [aux_sym_preproc_if_token1] = ACTIONS(4697), + [anon_sym_SEMI] = ACTIONS(5056), + [anon_sym_LBRACK] = ACTIONS(5056), + [anon_sym_COLON] = ACTIONS(5056), + [anon_sym_COMMA] = ACTIONS(5056), + [anon_sym_RBRACK] = ACTIONS(5056), + [anon_sym_LPAREN] = ACTIONS(5056), + [anon_sym_RPAREN] = ACTIONS(5056), + [anon_sym_RBRACE] = ACTIONS(5056), + [anon_sym_LT] = ACTIONS(5058), + [anon_sym_GT] = ACTIONS(5058), + [anon_sym_in] = ACTIONS(5056), + [anon_sym_where] = ACTIONS(5056), + [anon_sym_QMARK] = ACTIONS(5058), + [anon_sym_BANG] = ACTIONS(5058), + [anon_sym_PLUS_PLUS] = ACTIONS(5056), + [anon_sym_DASH_DASH] = ACTIONS(5056), + [anon_sym_PLUS] = ACTIONS(5058), + [anon_sym_DASH] = ACTIONS(5058), + [anon_sym_STAR] = ACTIONS(5056), + [anon_sym_SLASH] = ACTIONS(5058), + [anon_sym_PERCENT] = ACTIONS(5056), + [anon_sym_CARET] = ACTIONS(5056), + [anon_sym_PIPE] = ACTIONS(5058), + [anon_sym_AMP] = ACTIONS(5058), + [anon_sym_LT_LT] = ACTIONS(5056), + [anon_sym_GT_GT] = ACTIONS(5058), + [anon_sym_GT_GT_GT] = ACTIONS(5056), + [anon_sym_EQ_EQ] = ACTIONS(5056), + [anon_sym_BANG_EQ] = ACTIONS(5056), + [anon_sym_GT_EQ] = ACTIONS(5056), + [anon_sym_LT_EQ] = ACTIONS(5056), + [anon_sym_DOT] = ACTIONS(5058), + [anon_sym_EQ_GT] = ACTIONS(5056), + [anon_sym_switch] = ACTIONS(5056), + [anon_sym_DOT_DOT] = ACTIONS(5056), + [anon_sym_and] = ACTIONS(5056), + [anon_sym_or] = ACTIONS(5058), + [anon_sym_AMP_AMP] = ACTIONS(5056), + [anon_sym_PIPE_PIPE] = ACTIONS(5056), + [anon_sym_QMARK_QMARK] = ACTIONS(5056), + [anon_sym_from] = ACTIONS(5056), + [anon_sym_join] = ACTIONS(5056), + [anon_sym_on] = ACTIONS(5056), + [anon_sym_equals] = ACTIONS(5056), + [anon_sym_let] = ACTIONS(5056), + [anon_sym_orderby] = ACTIONS(5056), + [anon_sym_group] = ACTIONS(5056), + [anon_sym_by] = ACTIONS(5056), + [anon_sym_select] = ACTIONS(5056), + [anon_sym_as] = ACTIONS(5056), + [anon_sym_is] = ACTIONS(5056), + [anon_sym_DASH_GT] = ACTIONS(5056), + [anon_sym_with] = ACTIONS(5056), + [aux_sym_preproc_if_token3] = ACTIONS(5056), + [aux_sym_preproc_else_token1] = ACTIONS(5056), + [aux_sym_preproc_elif_token1] = ACTIONS(5056), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -475519,62 +475056,62 @@ 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(5064), - [anon_sym_LBRACK] = ACTIONS(5064), - [anon_sym_COLON] = ACTIONS(5064), - [anon_sym_COMMA] = ACTIONS(5064), - [anon_sym_RBRACK] = ACTIONS(5064), - [anon_sym_LPAREN] = ACTIONS(5064), - [anon_sym_RPAREN] = ACTIONS(5064), - [anon_sym_RBRACE] = ACTIONS(5064), - [anon_sym_LT] = ACTIONS(5066), - [anon_sym_GT] = ACTIONS(5066), - [anon_sym_in] = ACTIONS(5064), - [anon_sym_where] = ACTIONS(5064), - [anon_sym_QMARK] = ACTIONS(5066), - [anon_sym_BANG] = ACTIONS(5066), - [anon_sym_PLUS_PLUS] = ACTIONS(5064), - [anon_sym_DASH_DASH] = ACTIONS(5064), - [anon_sym_PLUS] = ACTIONS(5066), - [anon_sym_DASH] = ACTIONS(5066), - [anon_sym_STAR] = ACTIONS(5064), - [anon_sym_SLASH] = ACTIONS(5066), - [anon_sym_PERCENT] = ACTIONS(5064), - [anon_sym_CARET] = ACTIONS(5064), - [anon_sym_PIPE] = ACTIONS(5066), - [anon_sym_AMP] = ACTIONS(5066), - [anon_sym_LT_LT] = ACTIONS(5064), - [anon_sym_GT_GT] = ACTIONS(5066), - [anon_sym_GT_GT_GT] = ACTIONS(5064), - [anon_sym_EQ_EQ] = ACTIONS(5064), - [anon_sym_BANG_EQ] = ACTIONS(5064), - [anon_sym_GT_EQ] = ACTIONS(5064), - [anon_sym_LT_EQ] = ACTIONS(5064), - [anon_sym_DOT] = ACTIONS(5066), - [anon_sym_EQ_GT] = ACTIONS(5064), - [anon_sym_switch] = ACTIONS(5064), - [anon_sym_DOT_DOT] = ACTIONS(5064), - [anon_sym_and] = ACTIONS(5064), - [anon_sym_or] = ACTIONS(5066), - [anon_sym_AMP_AMP] = ACTIONS(5064), - [anon_sym_PIPE_PIPE] = ACTIONS(5064), - [anon_sym_QMARK_QMARK] = ACTIONS(5064), - [anon_sym_from] = ACTIONS(5064), - [anon_sym_join] = ACTIONS(5064), - [anon_sym_on] = ACTIONS(5064), - [anon_sym_equals] = ACTIONS(5064), - [anon_sym_let] = ACTIONS(5064), - [anon_sym_orderby] = ACTIONS(5064), - [anon_sym_group] = ACTIONS(5064), - [anon_sym_by] = ACTIONS(5064), - [anon_sym_select] = ACTIONS(5064), - [anon_sym_as] = ACTIONS(5064), - [anon_sym_is] = ACTIONS(5064), - [anon_sym_DASH_GT] = ACTIONS(5064), - [anon_sym_with] = ACTIONS(5064), - [aux_sym_preproc_if_token3] = ACTIONS(5064), - [aux_sym_preproc_else_token1] = ACTIONS(5064), - [aux_sym_preproc_elif_token1] = ACTIONS(5064), + [anon_sym_SEMI] = ACTIONS(5032), + [anon_sym_LBRACK] = ACTIONS(5032), + [anon_sym_COLON] = ACTIONS(5032), + [anon_sym_COMMA] = ACTIONS(5032), + [anon_sym_RBRACK] = ACTIONS(5032), + [anon_sym_LPAREN] = ACTIONS(5032), + [anon_sym_RPAREN] = ACTIONS(5032), + [anon_sym_RBRACE] = ACTIONS(5032), + [anon_sym_LT] = ACTIONS(5034), + [anon_sym_GT] = ACTIONS(5034), + [anon_sym_in] = ACTIONS(5032), + [anon_sym_where] = ACTIONS(5032), + [anon_sym_QMARK] = ACTIONS(5034), + [anon_sym_BANG] = ACTIONS(5034), + [anon_sym_PLUS_PLUS] = ACTIONS(5032), + [anon_sym_DASH_DASH] = ACTIONS(5032), + [anon_sym_PLUS] = ACTIONS(5034), + [anon_sym_DASH] = ACTIONS(5034), + [anon_sym_STAR] = ACTIONS(5032), + [anon_sym_SLASH] = ACTIONS(5034), + [anon_sym_PERCENT] = ACTIONS(5032), + [anon_sym_CARET] = ACTIONS(5032), + [anon_sym_PIPE] = ACTIONS(5034), + [anon_sym_AMP] = ACTIONS(5034), + [anon_sym_LT_LT] = ACTIONS(5032), + [anon_sym_GT_GT] = ACTIONS(5034), + [anon_sym_GT_GT_GT] = ACTIONS(5032), + [anon_sym_EQ_EQ] = ACTIONS(5032), + [anon_sym_BANG_EQ] = ACTIONS(5032), + [anon_sym_GT_EQ] = ACTIONS(5032), + [anon_sym_LT_EQ] = ACTIONS(5032), + [anon_sym_DOT] = ACTIONS(5034), + [anon_sym_EQ_GT] = ACTIONS(5032), + [anon_sym_switch] = ACTIONS(5032), + [anon_sym_DOT_DOT] = ACTIONS(5032), + [anon_sym_and] = ACTIONS(5032), + [anon_sym_or] = ACTIONS(5034), + [anon_sym_AMP_AMP] = ACTIONS(5032), + [anon_sym_PIPE_PIPE] = ACTIONS(5032), + [anon_sym_QMARK_QMARK] = ACTIONS(5032), + [anon_sym_from] = ACTIONS(5032), + [anon_sym_join] = ACTIONS(5032), + [anon_sym_on] = ACTIONS(5032), + [anon_sym_equals] = ACTIONS(5032), + [anon_sym_let] = ACTIONS(5032), + [anon_sym_orderby] = ACTIONS(5032), + [anon_sym_group] = ACTIONS(5032), + [anon_sym_by] = ACTIONS(5032), + [anon_sym_select] = ACTIONS(5032), + [anon_sym_as] = ACTIONS(5032), + [anon_sym_is] = ACTIONS(5032), + [anon_sym_DASH_GT] = ACTIONS(5032), + [anon_sym_with] = ACTIONS(5032), + [aux_sym_preproc_if_token3] = ACTIONS(5032), + [aux_sym_preproc_else_token1] = ACTIONS(5032), + [aux_sym_preproc_elif_token1] = ACTIONS(5032), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -475596,62 +475133,62 @@ 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_EQ] = ACTIONS(3704), - [anon_sym_LBRACK] = ACTIONS(4273), - [anon_sym_LPAREN] = ACTIONS(4273), - [anon_sym_LT] = ACTIONS(4276), - [anon_sym_GT] = ACTIONS(4276), - [anon_sym_where] = ACTIONS(4271), - [anon_sym_QMARK] = ACTIONS(4276), - [anon_sym_BANG] = ACTIONS(4276), - [anon_sym_PLUS_PLUS] = ACTIONS(4273), - [anon_sym_DASH_DASH] = ACTIONS(4273), - [anon_sym_PLUS] = ACTIONS(4276), - [anon_sym_DASH] = ACTIONS(4276), - [anon_sym_STAR] = ACTIONS(4276), - [anon_sym_SLASH] = ACTIONS(4276), - [anon_sym_PERCENT] = ACTIONS(4276), - [anon_sym_CARET] = ACTIONS(4276), - [anon_sym_PIPE] = ACTIONS(4276), - [anon_sym_AMP] = ACTIONS(4276), - [anon_sym_LT_LT] = ACTIONS(4276), - [anon_sym_GT_GT] = ACTIONS(4276), - [anon_sym_GT_GT_GT] = ACTIONS(4276), - [anon_sym_EQ_EQ] = ACTIONS(4273), - [anon_sym_BANG_EQ] = ACTIONS(4273), - [anon_sym_GT_EQ] = ACTIONS(4273), - [anon_sym_LT_EQ] = ACTIONS(4273), - [anon_sym_DOT] = ACTIONS(4276), - [anon_sym_switch] = ACTIONS(4273), - [anon_sym_DOT_DOT] = ACTIONS(4273), - [anon_sym_and] = ACTIONS(4271), - [anon_sym_or] = ACTIONS(4279), - [anon_sym_PLUS_EQ] = ACTIONS(3719), - [anon_sym_DASH_EQ] = ACTIONS(3719), - [anon_sym_STAR_EQ] = ACTIONS(3719), - [anon_sym_SLASH_EQ] = ACTIONS(3719), - [anon_sym_PERCENT_EQ] = ACTIONS(3719), - [anon_sym_AMP_EQ] = ACTIONS(3719), - [anon_sym_CARET_EQ] = ACTIONS(3719), - [anon_sym_PIPE_EQ] = ACTIONS(3719), - [anon_sym_LT_LT_EQ] = ACTIONS(3719), - [anon_sym_GT_GT_EQ] = ACTIONS(3719), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3719), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3719), - [anon_sym_AMP_AMP] = ACTIONS(4273), - [anon_sym_PIPE_PIPE] = ACTIONS(4273), - [anon_sym_QMARK_QMARK] = ACTIONS(4276), - [anon_sym_from] = ACTIONS(4271), - [anon_sym_into] = ACTIONS(4271), - [anon_sym_join] = ACTIONS(4271), - [anon_sym_let] = ACTIONS(4271), - [anon_sym_orderby] = ACTIONS(4271), - [anon_sym_group] = ACTIONS(4271), - [anon_sym_select] = ACTIONS(4271), - [anon_sym_as] = ACTIONS(4273), - [anon_sym_is] = ACTIONS(4273), - [anon_sym_DASH_GT] = ACTIONS(4273), - [anon_sym_with] = ACTIONS(4273), + [anon_sym_SEMI] = ACTIONS(5036), + [anon_sym_LBRACK] = ACTIONS(5036), + [anon_sym_COLON] = ACTIONS(5036), + [anon_sym_COMMA] = ACTIONS(5036), + [anon_sym_RBRACK] = ACTIONS(5036), + [anon_sym_LPAREN] = ACTIONS(5036), + [anon_sym_RPAREN] = ACTIONS(5036), + [anon_sym_RBRACE] = ACTIONS(5036), + [anon_sym_LT] = ACTIONS(5038), + [anon_sym_GT] = ACTIONS(5038), + [anon_sym_in] = ACTIONS(5036), + [anon_sym_where] = ACTIONS(5036), + [anon_sym_QMARK] = ACTIONS(5038), + [anon_sym_BANG] = ACTIONS(5038), + [anon_sym_PLUS_PLUS] = ACTIONS(5036), + [anon_sym_DASH_DASH] = ACTIONS(5036), + [anon_sym_PLUS] = ACTIONS(5038), + [anon_sym_DASH] = ACTIONS(5038), + [anon_sym_STAR] = ACTIONS(5036), + [anon_sym_SLASH] = ACTIONS(5038), + [anon_sym_PERCENT] = ACTIONS(5036), + [anon_sym_CARET] = ACTIONS(5036), + [anon_sym_PIPE] = ACTIONS(5038), + [anon_sym_AMP] = ACTIONS(5038), + [anon_sym_LT_LT] = ACTIONS(5036), + [anon_sym_GT_GT] = ACTIONS(5038), + [anon_sym_GT_GT_GT] = ACTIONS(5036), + [anon_sym_EQ_EQ] = ACTIONS(5036), + [anon_sym_BANG_EQ] = ACTIONS(5036), + [anon_sym_GT_EQ] = ACTIONS(5036), + [anon_sym_LT_EQ] = ACTIONS(5036), + [anon_sym_DOT] = ACTIONS(5038), + [anon_sym_EQ_GT] = ACTIONS(5036), + [anon_sym_switch] = ACTIONS(5036), + [anon_sym_DOT_DOT] = ACTIONS(5036), + [anon_sym_and] = ACTIONS(5036), + [anon_sym_or] = ACTIONS(5038), + [anon_sym_AMP_AMP] = ACTIONS(5036), + [anon_sym_PIPE_PIPE] = ACTIONS(5036), + [anon_sym_QMARK_QMARK] = ACTIONS(5036), + [anon_sym_from] = ACTIONS(5036), + [anon_sym_join] = ACTIONS(5036), + [anon_sym_on] = ACTIONS(5036), + [anon_sym_equals] = ACTIONS(5036), + [anon_sym_let] = ACTIONS(5036), + [anon_sym_orderby] = ACTIONS(5036), + [anon_sym_group] = ACTIONS(5036), + [anon_sym_by] = ACTIONS(5036), + [anon_sym_select] = ACTIONS(5036), + [anon_sym_as] = ACTIONS(5036), + [anon_sym_is] = ACTIONS(5036), + [anon_sym_DASH_GT] = ACTIONS(5036), + [anon_sym_with] = ACTIONS(5036), + [aux_sym_preproc_if_token3] = ACTIONS(5036), + [aux_sym_preproc_else_token1] = ACTIONS(5036), + [aux_sym_preproc_elif_token1] = ACTIONS(5036), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -475673,62 +475210,62 @@ 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(5050), - [anon_sym_LBRACK] = ACTIONS(5050), - [anon_sym_COLON] = ACTIONS(5050), - [anon_sym_COMMA] = ACTIONS(5050), - [anon_sym_RBRACK] = ACTIONS(5050), - [anon_sym_LPAREN] = ACTIONS(5050), - [anon_sym_RPAREN] = ACTIONS(5050), - [anon_sym_RBRACE] = ACTIONS(5050), - [anon_sym_LT] = ACTIONS(5052), - [anon_sym_GT] = ACTIONS(5052), - [anon_sym_in] = ACTIONS(5050), - [anon_sym_where] = ACTIONS(5050), - [anon_sym_QMARK] = ACTIONS(5052), - [anon_sym_BANG] = ACTIONS(5052), - [anon_sym_PLUS_PLUS] = ACTIONS(5050), - [anon_sym_DASH_DASH] = ACTIONS(5050), - [anon_sym_PLUS] = ACTIONS(5052), - [anon_sym_DASH] = ACTIONS(5052), - [anon_sym_STAR] = ACTIONS(5050), - [anon_sym_SLASH] = ACTIONS(5052), - [anon_sym_PERCENT] = ACTIONS(5050), - [anon_sym_CARET] = ACTIONS(5050), - [anon_sym_PIPE] = ACTIONS(5052), - [anon_sym_AMP] = ACTIONS(5052), - [anon_sym_LT_LT] = ACTIONS(5050), - [anon_sym_GT_GT] = ACTIONS(5052), - [anon_sym_GT_GT_GT] = ACTIONS(5050), - [anon_sym_EQ_EQ] = ACTIONS(5050), - [anon_sym_BANG_EQ] = ACTIONS(5050), - [anon_sym_GT_EQ] = ACTIONS(5050), - [anon_sym_LT_EQ] = ACTIONS(5050), - [anon_sym_DOT] = ACTIONS(5052), - [anon_sym_EQ_GT] = ACTIONS(5050), - [anon_sym_switch] = ACTIONS(5050), - [anon_sym_DOT_DOT] = ACTIONS(5050), - [anon_sym_and] = ACTIONS(5050), - [anon_sym_or] = ACTIONS(5052), - [anon_sym_AMP_AMP] = ACTIONS(5050), - [anon_sym_PIPE_PIPE] = ACTIONS(5050), - [anon_sym_QMARK_QMARK] = ACTIONS(5050), - [anon_sym_from] = ACTIONS(5050), - [anon_sym_join] = ACTIONS(5050), - [anon_sym_on] = ACTIONS(5050), - [anon_sym_equals] = ACTIONS(5050), - [anon_sym_let] = ACTIONS(5050), - [anon_sym_orderby] = ACTIONS(5050), - [anon_sym_group] = ACTIONS(5050), - [anon_sym_by] = ACTIONS(5050), - [anon_sym_select] = ACTIONS(5050), - [anon_sym_as] = ACTIONS(5050), - [anon_sym_is] = ACTIONS(5050), - [anon_sym_DASH_GT] = ACTIONS(5050), - [anon_sym_with] = ACTIONS(5050), - [aux_sym_preproc_if_token3] = ACTIONS(5050), - [aux_sym_preproc_else_token1] = ACTIONS(5050), - [aux_sym_preproc_elif_token1] = ACTIONS(5050), + [anon_sym_SEMI] = ACTIONS(5060), + [anon_sym_LBRACK] = ACTIONS(5060), + [anon_sym_COLON] = ACTIONS(5060), + [anon_sym_COMMA] = ACTIONS(5060), + [anon_sym_RBRACK] = ACTIONS(5060), + [anon_sym_LPAREN] = ACTIONS(5060), + [anon_sym_RPAREN] = ACTIONS(5060), + [anon_sym_RBRACE] = ACTIONS(5060), + [anon_sym_LT] = ACTIONS(5062), + [anon_sym_GT] = ACTIONS(5062), + [anon_sym_in] = ACTIONS(5060), + [anon_sym_where] = ACTIONS(5060), + [anon_sym_QMARK] = ACTIONS(5062), + [anon_sym_BANG] = ACTIONS(5062), + [anon_sym_PLUS_PLUS] = ACTIONS(5060), + [anon_sym_DASH_DASH] = ACTIONS(5060), + [anon_sym_PLUS] = ACTIONS(5062), + [anon_sym_DASH] = ACTIONS(5062), + [anon_sym_STAR] = ACTIONS(5060), + [anon_sym_SLASH] = ACTIONS(5062), + [anon_sym_PERCENT] = ACTIONS(5060), + [anon_sym_CARET] = ACTIONS(5060), + [anon_sym_PIPE] = ACTIONS(5062), + [anon_sym_AMP] = ACTIONS(5062), + [anon_sym_LT_LT] = ACTIONS(5060), + [anon_sym_GT_GT] = ACTIONS(5062), + [anon_sym_GT_GT_GT] = ACTIONS(5060), + [anon_sym_EQ_EQ] = ACTIONS(5060), + [anon_sym_BANG_EQ] = ACTIONS(5060), + [anon_sym_GT_EQ] = ACTIONS(5060), + [anon_sym_LT_EQ] = ACTIONS(5060), + [anon_sym_DOT] = ACTIONS(5062), + [anon_sym_EQ_GT] = ACTIONS(5060), + [anon_sym_switch] = ACTIONS(5060), + [anon_sym_DOT_DOT] = ACTIONS(5060), + [anon_sym_and] = ACTIONS(5060), + [anon_sym_or] = ACTIONS(5062), + [anon_sym_AMP_AMP] = ACTIONS(5060), + [anon_sym_PIPE_PIPE] = ACTIONS(5060), + [anon_sym_QMARK_QMARK] = ACTIONS(5060), + [anon_sym_from] = ACTIONS(5060), + [anon_sym_join] = ACTIONS(5060), + [anon_sym_on] = ACTIONS(5060), + [anon_sym_equals] = ACTIONS(5060), + [anon_sym_let] = ACTIONS(5060), + [anon_sym_orderby] = ACTIONS(5060), + [anon_sym_group] = ACTIONS(5060), + [anon_sym_by] = ACTIONS(5060), + [anon_sym_select] = ACTIONS(5060), + [anon_sym_as] = ACTIONS(5060), + [anon_sym_is] = ACTIONS(5060), + [anon_sym_DASH_GT] = ACTIONS(5060), + [anon_sym_with] = ACTIONS(5060), + [aux_sym_preproc_if_token3] = ACTIONS(5060), + [aux_sym_preproc_else_token1] = ACTIONS(5060), + [aux_sym_preproc_elif_token1] = ACTIONS(5060), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -475750,62 +475287,62 @@ 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(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(5064), + [anon_sym_LBRACK] = ACTIONS(5064), + [anon_sym_COLON] = ACTIONS(5064), + [anon_sym_COMMA] = ACTIONS(5064), + [anon_sym_RBRACK] = ACTIONS(5064), + [anon_sym_LPAREN] = ACTIONS(5064), + [anon_sym_RPAREN] = ACTIONS(5064), + [anon_sym_RBRACE] = ACTIONS(5064), + [anon_sym_LT] = ACTIONS(5066), + [anon_sym_GT] = ACTIONS(5066), + [anon_sym_in] = ACTIONS(5064), + [anon_sym_where] = ACTIONS(5064), + [anon_sym_QMARK] = ACTIONS(5066), + [anon_sym_BANG] = ACTIONS(5066), + [anon_sym_PLUS_PLUS] = ACTIONS(5064), + [anon_sym_DASH_DASH] = ACTIONS(5064), + [anon_sym_PLUS] = ACTIONS(5066), + [anon_sym_DASH] = ACTIONS(5066), + [anon_sym_STAR] = ACTIONS(5064), + [anon_sym_SLASH] = ACTIONS(5066), + [anon_sym_PERCENT] = ACTIONS(5064), + [anon_sym_CARET] = ACTIONS(5064), + [anon_sym_PIPE] = ACTIONS(5066), + [anon_sym_AMP] = ACTIONS(5066), + [anon_sym_LT_LT] = ACTIONS(5064), + [anon_sym_GT_GT] = ACTIONS(5066), + [anon_sym_GT_GT_GT] = ACTIONS(5064), + [anon_sym_EQ_EQ] = ACTIONS(5064), + [anon_sym_BANG_EQ] = ACTIONS(5064), + [anon_sym_GT_EQ] = ACTIONS(5064), + [anon_sym_LT_EQ] = ACTIONS(5064), + [anon_sym_DOT] = ACTIONS(5066), + [anon_sym_EQ_GT] = ACTIONS(5064), + [anon_sym_switch] = ACTIONS(5064), + [anon_sym_DOT_DOT] = ACTIONS(5064), + [anon_sym_and] = ACTIONS(5064), + [anon_sym_or] = ACTIONS(5066), + [anon_sym_AMP_AMP] = ACTIONS(5064), + [anon_sym_PIPE_PIPE] = ACTIONS(5064), + [anon_sym_QMARK_QMARK] = ACTIONS(5064), + [anon_sym_from] = ACTIONS(5064), + [anon_sym_join] = ACTIONS(5064), + [anon_sym_on] = ACTIONS(5064), + [anon_sym_equals] = ACTIONS(5064), + [anon_sym_let] = ACTIONS(5064), + [anon_sym_orderby] = ACTIONS(5064), + [anon_sym_group] = ACTIONS(5064), + [anon_sym_by] = ACTIONS(5064), + [anon_sym_select] = ACTIONS(5064), + [anon_sym_as] = ACTIONS(5064), + [anon_sym_is] = ACTIONS(5064), + [anon_sym_DASH_GT] = ACTIONS(5064), + [anon_sym_with] = ACTIONS(5064), + [aux_sym_preproc_if_token3] = ACTIONS(5064), + [aux_sym_preproc_else_token1] = ACTIONS(5064), + [aux_sym_preproc_elif_token1] = ACTIONS(5064), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -475827,62 +475364,62 @@ 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(4018), - [anon_sym_LBRACK] = ACTIONS(4066), - [anon_sym_COMMA] = ACTIONS(4018), - [anon_sym_RBRACK] = ACTIONS(4018), - [anon_sym_LPAREN] = ACTIONS(4018), - [anon_sym_RPAREN] = ACTIONS(4018), - [anon_sym_LBRACE] = ACTIONS(4018), - [anon_sym_RBRACE] = ACTIONS(4018), - [anon_sym_LT] = ACTIONS(4016), - [anon_sym_GT] = ACTIONS(4016), - [anon_sym_in] = ACTIONS(4018), - [anon_sym_where] = ACTIONS(4018), - [anon_sym_QMARK] = ACTIONS(5009), - [anon_sym_BANG] = ACTIONS(4016), - [anon_sym_PLUS_PLUS] = ACTIONS(4018), - [anon_sym_DASH_DASH] = ACTIONS(4018), - [anon_sym_PLUS] = ACTIONS(4016), - [anon_sym_DASH] = ACTIONS(4016), - [anon_sym_STAR] = ACTIONS(4072), - [anon_sym_SLASH] = ACTIONS(4016), - [anon_sym_PERCENT] = ACTIONS(4018), - [anon_sym_CARET] = ACTIONS(4018), - [anon_sym_PIPE] = ACTIONS(4016), - [anon_sym_AMP] = ACTIONS(4016), - [anon_sym_LT_LT] = ACTIONS(4018), - [anon_sym_GT_GT] = ACTIONS(4016), - [anon_sym_GT_GT_GT] = ACTIONS(4018), - [anon_sym_EQ_EQ] = ACTIONS(4018), - [anon_sym_BANG_EQ] = ACTIONS(4018), - [anon_sym_GT_EQ] = ACTIONS(4018), - [anon_sym_LT_EQ] = ACTIONS(4018), - [anon_sym_DOT] = ACTIONS(5216), - [anon_sym_EQ_GT] = ACTIONS(4018), - [anon_sym_switch] = ACTIONS(4018), - [anon_sym_DOT_DOT] = ACTIONS(4018), - [anon_sym_and] = ACTIONS(4018), - [anon_sym_or] = ACTIONS(4016), - [anon_sym_AMP_AMP] = ACTIONS(4018), - [anon_sym_PIPE_PIPE] = ACTIONS(4018), - [anon_sym_QMARK_QMARK] = ACTIONS(4018), - [anon_sym_from] = 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_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(4018), - [anon_sym_with] = ACTIONS(4018), - [aux_sym_preproc_if_token3] = ACTIONS(4018), - [aux_sym_preproc_else_token1] = ACTIONS(4018), - [aux_sym_preproc_elif_token1] = ACTIONS(4018), + [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(4811), + [anon_sym_RPAREN] = ACTIONS(4811), + [anon_sym_RBRACE] = ACTIONS(4811), + [anon_sym_LT] = ACTIONS(4813), + [anon_sym_GT] = ACTIONS(4813), + [anon_sym_in] = ACTIONS(4811), + [anon_sym_where] = ACTIONS(4811), + [anon_sym_QMARK] = ACTIONS(4813), + [anon_sym_BANG] = ACTIONS(4813), + [anon_sym_PLUS_PLUS] = ACTIONS(4811), + [anon_sym_DASH_DASH] = ACTIONS(4811), + [anon_sym_PLUS] = ACTIONS(4813), + [anon_sym_DASH] = ACTIONS(4813), + [anon_sym_STAR] = ACTIONS(4811), + [anon_sym_SLASH] = ACTIONS(4813), + [anon_sym_PERCENT] = ACTIONS(4811), + [anon_sym_CARET] = ACTIONS(4811), + [anon_sym_PIPE] = ACTIONS(4813), + [anon_sym_AMP] = ACTIONS(4813), + [anon_sym_LT_LT] = ACTIONS(4811), + [anon_sym_GT_GT] = ACTIONS(4813), + [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(4813), + [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(4813), + [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_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), @@ -475904,62 +475441,62 @@ 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(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(5199), + [anon_sym_LBRACK] = ACTIONS(4811), + [anon_sym_COMMA] = ACTIONS(4811), + [anon_sym_LPAREN] = ACTIONS(4811), + [anon_sym_LT] = ACTIONS(4813), + [anon_sym_GT] = ACTIONS(4813), + [anon_sym_where] = ACTIONS(4811), + [anon_sym_QMARK] = ACTIONS(4813), + [anon_sym_BANG] = ACTIONS(4813), + [anon_sym_PLUS_PLUS] = ACTIONS(4811), + [anon_sym_DASH_DASH] = ACTIONS(4811), + [anon_sym_PLUS] = ACTIONS(4813), + [anon_sym_DASH] = ACTIONS(4813), + [anon_sym_STAR] = ACTIONS(4813), + [anon_sym_SLASH] = ACTIONS(4813), + [anon_sym_PERCENT] = ACTIONS(4813), + [anon_sym_CARET] = ACTIONS(4813), + [anon_sym_PIPE] = ACTIONS(4813), + [anon_sym_AMP] = ACTIONS(4813), + [anon_sym_LT_LT] = ACTIONS(4813), + [anon_sym_GT_GT] = ACTIONS(4813), + [anon_sym_GT_GT_GT] = ACTIONS(4813), + [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(4813), + [anon_sym_switch] = ACTIONS(4811), + [anon_sym_DOT_DOT] = ACTIONS(4811), + [anon_sym_PLUS_EQ] = ACTIONS(5201), + [anon_sym_DASH_EQ] = ACTIONS(5201), + [anon_sym_STAR_EQ] = ACTIONS(5201), + [anon_sym_SLASH_EQ] = ACTIONS(5201), + [anon_sym_PERCENT_EQ] = ACTIONS(5201), + [anon_sym_AMP_EQ] = ACTIONS(5201), + [anon_sym_CARET_EQ] = ACTIONS(5201), + [anon_sym_PIPE_EQ] = ACTIONS(5201), + [anon_sym_LT_LT_EQ] = ACTIONS(5201), + [anon_sym_GT_GT_EQ] = ACTIONS(5201), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(5201), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(5201), + [anon_sym_AMP_AMP] = ACTIONS(4811), + [anon_sym_PIPE_PIPE] = ACTIONS(4811), + [anon_sym_QMARK_QMARK] = ACTIONS(4813), + [anon_sym_from] = 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(4813), + [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), @@ -475981,62 +475518,62 @@ 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(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_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_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(5092), + [anon_sym_LBRACK] = ACTIONS(5092), + [anon_sym_COLON] = ACTIONS(5092), + [anon_sym_COMMA] = ACTIONS(5092), + [anon_sym_RBRACK] = ACTIONS(5092), + [anon_sym_LPAREN] = ACTIONS(5092), + [anon_sym_RPAREN] = ACTIONS(5092), + [anon_sym_RBRACE] = ACTIONS(5092), + [anon_sym_LT] = ACTIONS(5094), + [anon_sym_GT] = ACTIONS(5094), + [anon_sym_in] = ACTIONS(5092), + [anon_sym_where] = ACTIONS(5092), + [anon_sym_QMARK] = ACTIONS(5094), + [anon_sym_BANG] = ACTIONS(5094), + [anon_sym_PLUS_PLUS] = ACTIONS(5092), + [anon_sym_DASH_DASH] = ACTIONS(5092), + [anon_sym_PLUS] = ACTIONS(5094), + [anon_sym_DASH] = ACTIONS(5094), + [anon_sym_STAR] = ACTIONS(5092), + [anon_sym_SLASH] = ACTIONS(5094), + [anon_sym_PERCENT] = ACTIONS(5092), + [anon_sym_CARET] = ACTIONS(5092), + [anon_sym_PIPE] = ACTIONS(5094), + [anon_sym_AMP] = ACTIONS(5094), + [anon_sym_LT_LT] = ACTIONS(5092), + [anon_sym_GT_GT] = ACTIONS(5094), + [anon_sym_GT_GT_GT] = ACTIONS(5092), + [anon_sym_EQ_EQ] = ACTIONS(5092), + [anon_sym_BANG_EQ] = ACTIONS(5092), + [anon_sym_GT_EQ] = ACTIONS(5092), + [anon_sym_LT_EQ] = ACTIONS(5092), + [anon_sym_DOT] = ACTIONS(5094), + [anon_sym_EQ_GT] = ACTIONS(5092), + [anon_sym_switch] = ACTIONS(5092), + [anon_sym_DOT_DOT] = ACTIONS(5092), + [anon_sym_and] = ACTIONS(5092), + [anon_sym_or] = ACTIONS(5094), + [anon_sym_AMP_AMP] = ACTIONS(5092), + [anon_sym_PIPE_PIPE] = ACTIONS(5092), + [anon_sym_QMARK_QMARK] = ACTIONS(5092), + [anon_sym_from] = ACTIONS(5092), + [anon_sym_join] = ACTIONS(5092), + [anon_sym_on] = ACTIONS(5092), + [anon_sym_equals] = ACTIONS(5092), + [anon_sym_let] = ACTIONS(5092), + [anon_sym_orderby] = ACTIONS(5092), + [anon_sym_group] = ACTIONS(5092), + [anon_sym_by] = ACTIONS(5092), + [anon_sym_select] = ACTIONS(5092), + [anon_sym_as] = ACTIONS(5092), + [anon_sym_is] = ACTIONS(5092), + [anon_sym_DASH_GT] = ACTIONS(5092), + [anon_sym_with] = ACTIONS(5092), + [aux_sym_preproc_if_token3] = ACTIONS(5092), + [aux_sym_preproc_else_token1] = ACTIONS(5092), + [aux_sym_preproc_elif_token1] = ACTIONS(5092), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -476058,62 +475595,62 @@ 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(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_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_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_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(4226), + [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_LT] = ACTIONS(4228), + [anon_sym_GT] = ACTIONS(4228), + [anon_sym_in] = ACTIONS(4226), + [anon_sym_where] = ACTIONS(4226), + [anon_sym_QMARK] = ACTIONS(4228), + [anon_sym_BANG] = ACTIONS(4228), + [anon_sym_PLUS_PLUS] = ACTIONS(4226), + [anon_sym_DASH_DASH] = ACTIONS(4226), + [anon_sym_PLUS] = ACTIONS(4228), + [anon_sym_DASH] = ACTIONS(4228), + [anon_sym_STAR] = ACTIONS(4226), + [anon_sym_SLASH] = ACTIONS(4228), + [anon_sym_PERCENT] = ACTIONS(4226), + [anon_sym_CARET] = ACTIONS(4226), + [anon_sym_PIPE] = ACTIONS(4228), + [anon_sym_AMP] = ACTIONS(4228), + [anon_sym_LT_LT] = ACTIONS(4226), + [anon_sym_GT_GT] = ACTIONS(4228), + [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(4228), + [anon_sym_EQ_GT] = ACTIONS(4226), + [anon_sym_switch] = ACTIONS(4226), + [anon_sym_DOT_DOT] = ACTIONS(4226), + [anon_sym_and] = ACTIONS(4226), + [anon_sym_or] = ACTIONS(4228), + [anon_sym_AMP_AMP] = ACTIONS(4226), + [anon_sym_PIPE_PIPE] = ACTIONS(4226), + [anon_sym_QMARK_QMARK] = ACTIONS(4226), + [anon_sym_from] = ACTIONS(4226), + [anon_sym_join] = ACTIONS(4226), + [anon_sym_on] = ACTIONS(4226), + [anon_sym_equals] = ACTIONS(4226), + [anon_sym_let] = ACTIONS(4226), + [anon_sym_orderby] = ACTIONS(4226), + [anon_sym_group] = ACTIONS(4226), + [anon_sym_by] = ACTIONS(4226), + [anon_sym_select] = ACTIONS(4226), + [anon_sym_as] = ACTIONS(4226), + [anon_sym_is] = ACTIONS(4226), + [anon_sym_DASH_GT] = ACTIONS(4226), + [anon_sym_with] = ACTIONS(4226), + [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), @@ -476135,62 +475672,62 @@ 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(4941), - [anon_sym_LBRACK] = ACTIONS(4941), - [anon_sym_COLON] = ACTIONS(4941), - [anon_sym_COMMA] = ACTIONS(4941), - [anon_sym_RBRACK] = ACTIONS(4941), - [anon_sym_LPAREN] = ACTIONS(4941), - [anon_sym_RPAREN] = ACTIONS(4941), - [anon_sym_RBRACE] = ACTIONS(4941), - [anon_sym_LT] = ACTIONS(4943), - [anon_sym_GT] = ACTIONS(4943), - [anon_sym_in] = ACTIONS(4941), - [anon_sym_where] = ACTIONS(4941), - [anon_sym_QMARK] = ACTIONS(4943), - [anon_sym_BANG] = ACTIONS(4943), - [anon_sym_PLUS_PLUS] = ACTIONS(4941), - [anon_sym_DASH_DASH] = ACTIONS(4941), - [anon_sym_PLUS] = ACTIONS(4943), - [anon_sym_DASH] = ACTIONS(4943), - [anon_sym_STAR] = ACTIONS(4941), - [anon_sym_SLASH] = ACTIONS(4943), - [anon_sym_PERCENT] = ACTIONS(4941), - [anon_sym_CARET] = ACTIONS(4941), - [anon_sym_PIPE] = ACTIONS(4943), - [anon_sym_AMP] = ACTIONS(4943), - [anon_sym_LT_LT] = ACTIONS(4941), - [anon_sym_GT_GT] = ACTIONS(4943), - [anon_sym_GT_GT_GT] = ACTIONS(4941), - [anon_sym_EQ_EQ] = ACTIONS(4941), - [anon_sym_BANG_EQ] = ACTIONS(4941), - [anon_sym_GT_EQ] = ACTIONS(4941), - [anon_sym_LT_EQ] = ACTIONS(4941), - [anon_sym_DOT] = ACTIONS(4943), - [anon_sym_EQ_GT] = ACTIONS(4941), - [anon_sym_switch] = ACTIONS(4941), - [anon_sym_DOT_DOT] = ACTIONS(4941), - [anon_sym_and] = ACTIONS(4941), - [anon_sym_or] = ACTIONS(4943), - [anon_sym_AMP_AMP] = ACTIONS(4941), - [anon_sym_PIPE_PIPE] = ACTIONS(4941), - [anon_sym_QMARK_QMARK] = ACTIONS(4941), - [anon_sym_from] = ACTIONS(4941), - [anon_sym_join] = ACTIONS(4941), - [anon_sym_on] = ACTIONS(4941), - [anon_sym_equals] = ACTIONS(4941), - [anon_sym_let] = ACTIONS(4941), - [anon_sym_orderby] = ACTIONS(4941), - [anon_sym_group] = ACTIONS(4941), - [anon_sym_by] = ACTIONS(4941), - [anon_sym_select] = ACTIONS(4941), - [anon_sym_as] = ACTIONS(4941), - [anon_sym_is] = ACTIONS(4941), - [anon_sym_DASH_GT] = ACTIONS(4941), - [anon_sym_with] = ACTIONS(4941), - [aux_sym_preproc_if_token3] = ACTIONS(4941), - [aux_sym_preproc_else_token1] = ACTIONS(4941), - [aux_sym_preproc_elif_token1] = ACTIONS(4941), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -476212,62 +475749,62 @@ 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(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(5108), + [anon_sym_LBRACK] = ACTIONS(5108), + [anon_sym_COLON] = ACTIONS(5108), + [anon_sym_COMMA] = ACTIONS(5108), + [anon_sym_RBRACK] = ACTIONS(5108), + [anon_sym_LPAREN] = ACTIONS(5108), + [anon_sym_RPAREN] = ACTIONS(5108), + [anon_sym_RBRACE] = ACTIONS(5108), + [anon_sym_LT] = ACTIONS(5110), + [anon_sym_GT] = ACTIONS(5110), + [anon_sym_in] = ACTIONS(5108), + [anon_sym_where] = ACTIONS(5108), + [anon_sym_QMARK] = ACTIONS(5110), + [anon_sym_BANG] = ACTIONS(5110), + [anon_sym_PLUS_PLUS] = ACTIONS(5108), + [anon_sym_DASH_DASH] = ACTIONS(5108), + [anon_sym_PLUS] = ACTIONS(5110), + [anon_sym_DASH] = ACTIONS(5110), + [anon_sym_STAR] = ACTIONS(5108), + [anon_sym_SLASH] = ACTIONS(5110), + [anon_sym_PERCENT] = ACTIONS(5108), + [anon_sym_CARET] = ACTIONS(5108), + [anon_sym_PIPE] = ACTIONS(5110), + [anon_sym_AMP] = ACTIONS(5110), + [anon_sym_LT_LT] = ACTIONS(5108), + [anon_sym_GT_GT] = ACTIONS(5110), + [anon_sym_GT_GT_GT] = ACTIONS(5108), + [anon_sym_EQ_EQ] = ACTIONS(5108), + [anon_sym_BANG_EQ] = ACTIONS(5108), + [anon_sym_GT_EQ] = ACTIONS(5108), + [anon_sym_LT_EQ] = ACTIONS(5108), + [anon_sym_DOT] = ACTIONS(5110), + [anon_sym_EQ_GT] = ACTIONS(5108), + [anon_sym_switch] = ACTIONS(5108), + [anon_sym_DOT_DOT] = ACTIONS(5108), + [anon_sym_and] = ACTIONS(5108), + [anon_sym_or] = ACTIONS(5110), + [anon_sym_AMP_AMP] = ACTIONS(5108), + [anon_sym_PIPE_PIPE] = ACTIONS(5108), + [anon_sym_QMARK_QMARK] = ACTIONS(5108), + [anon_sym_from] = ACTIONS(5108), + [anon_sym_join] = ACTIONS(5108), + [anon_sym_on] = ACTIONS(5108), + [anon_sym_equals] = ACTIONS(5108), + [anon_sym_let] = ACTIONS(5108), + [anon_sym_orderby] = ACTIONS(5108), + [anon_sym_group] = ACTIONS(5108), + [anon_sym_by] = ACTIONS(5108), + [anon_sym_select] = ACTIONS(5108), + [anon_sym_as] = ACTIONS(5108), + [anon_sym_is] = ACTIONS(5108), + [anon_sym_DASH_GT] = ACTIONS(5108), + [anon_sym_with] = ACTIONS(5108), + [aux_sym_preproc_if_token3] = ACTIONS(5108), + [aux_sym_preproc_else_token1] = ACTIONS(5108), + [aux_sym_preproc_elif_token1] = ACTIONS(5108), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -476289,62 +475826,62 @@ 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(5020), - [anon_sym_LBRACK] = ACTIONS(5020), - [anon_sym_COLON] = ACTIONS(5020), - [anon_sym_COMMA] = ACTIONS(5020), - [anon_sym_RBRACK] = ACTIONS(5020), - [anon_sym_LPAREN] = ACTIONS(5020), - [anon_sym_RPAREN] = ACTIONS(5020), - [anon_sym_RBRACE] = ACTIONS(5020), - [anon_sym_LT] = ACTIONS(5022), - [anon_sym_GT] = ACTIONS(5022), - [anon_sym_in] = ACTIONS(5020), - [anon_sym_where] = ACTIONS(5020), - [anon_sym_QMARK] = ACTIONS(5022), - [anon_sym_BANG] = ACTIONS(5022), - [anon_sym_PLUS_PLUS] = ACTIONS(5020), - [anon_sym_DASH_DASH] = ACTIONS(5020), - [anon_sym_PLUS] = ACTIONS(5022), - [anon_sym_DASH] = ACTIONS(5022), - [anon_sym_STAR] = ACTIONS(5020), - [anon_sym_SLASH] = ACTIONS(5022), - [anon_sym_PERCENT] = ACTIONS(5020), - [anon_sym_CARET] = ACTIONS(5020), - [anon_sym_PIPE] = ACTIONS(5022), - [anon_sym_AMP] = ACTIONS(5022), - [anon_sym_LT_LT] = ACTIONS(5020), - [anon_sym_GT_GT] = ACTIONS(5022), - [anon_sym_GT_GT_GT] = ACTIONS(5020), - [anon_sym_EQ_EQ] = ACTIONS(5020), - [anon_sym_BANG_EQ] = ACTIONS(5020), - [anon_sym_GT_EQ] = ACTIONS(5020), - [anon_sym_LT_EQ] = ACTIONS(5020), - [anon_sym_DOT] = ACTIONS(5022), - [anon_sym_EQ_GT] = ACTIONS(5020), - [anon_sym_switch] = ACTIONS(5020), - [anon_sym_DOT_DOT] = ACTIONS(5020), - [anon_sym_and] = ACTIONS(5020), - [anon_sym_or] = ACTIONS(5022), - [anon_sym_AMP_AMP] = ACTIONS(5020), - [anon_sym_PIPE_PIPE] = ACTIONS(5020), - [anon_sym_QMARK_QMARK] = ACTIONS(5020), - [anon_sym_from] = ACTIONS(5020), - [anon_sym_join] = ACTIONS(5020), - [anon_sym_on] = ACTIONS(5020), - [anon_sym_equals] = ACTIONS(5020), - [anon_sym_let] = ACTIONS(5020), - [anon_sym_orderby] = ACTIONS(5020), - [anon_sym_group] = ACTIONS(5020), - [anon_sym_by] = ACTIONS(5020), - [anon_sym_select] = ACTIONS(5020), - [anon_sym_as] = ACTIONS(5020), - [anon_sym_is] = ACTIONS(5020), - [anon_sym_DASH_GT] = ACTIONS(5020), - [anon_sym_with] = ACTIONS(5020), - [aux_sym_preproc_if_token3] = ACTIONS(5020), - [aux_sym_preproc_else_token1] = ACTIONS(5020), - [aux_sym_preproc_elif_token1] = ACTIONS(5020), + [anon_sym_SEMI] = ACTIONS(5112), + [anon_sym_LBRACK] = ACTIONS(5112), + [anon_sym_COLON] = ACTIONS(5112), + [anon_sym_COMMA] = ACTIONS(5112), + [anon_sym_RBRACK] = ACTIONS(5112), + [anon_sym_LPAREN] = ACTIONS(5112), + [anon_sym_RPAREN] = ACTIONS(5112), + [anon_sym_RBRACE] = ACTIONS(5112), + [anon_sym_LT] = ACTIONS(5114), + [anon_sym_GT] = ACTIONS(5114), + [anon_sym_in] = ACTIONS(5112), + [anon_sym_where] = ACTIONS(5112), + [anon_sym_QMARK] = ACTIONS(5114), + [anon_sym_BANG] = ACTIONS(5114), + [anon_sym_PLUS_PLUS] = ACTIONS(5112), + [anon_sym_DASH_DASH] = ACTIONS(5112), + [anon_sym_PLUS] = ACTIONS(5114), + [anon_sym_DASH] = ACTIONS(5114), + [anon_sym_STAR] = ACTIONS(5112), + [anon_sym_SLASH] = ACTIONS(5114), + [anon_sym_PERCENT] = ACTIONS(5112), + [anon_sym_CARET] = ACTIONS(5112), + [anon_sym_PIPE] = ACTIONS(5114), + [anon_sym_AMP] = ACTIONS(5114), + [anon_sym_LT_LT] = ACTIONS(5112), + [anon_sym_GT_GT] = ACTIONS(5114), + [anon_sym_GT_GT_GT] = ACTIONS(5112), + [anon_sym_EQ_EQ] = ACTIONS(5112), + [anon_sym_BANG_EQ] = ACTIONS(5112), + [anon_sym_GT_EQ] = ACTIONS(5112), + [anon_sym_LT_EQ] = ACTIONS(5112), + [anon_sym_DOT] = ACTIONS(5114), + [anon_sym_EQ_GT] = ACTIONS(5112), + [anon_sym_switch] = ACTIONS(5112), + [anon_sym_DOT_DOT] = ACTIONS(5112), + [anon_sym_and] = ACTIONS(5112), + [anon_sym_or] = ACTIONS(5114), + [anon_sym_AMP_AMP] = ACTIONS(5112), + [anon_sym_PIPE_PIPE] = ACTIONS(5112), + [anon_sym_QMARK_QMARK] = ACTIONS(5112), + [anon_sym_from] = ACTIONS(5112), + [anon_sym_join] = ACTIONS(5112), + [anon_sym_on] = ACTIONS(5112), + [anon_sym_equals] = ACTIONS(5112), + [anon_sym_let] = ACTIONS(5112), + [anon_sym_orderby] = ACTIONS(5112), + [anon_sym_group] = ACTIONS(5112), + [anon_sym_by] = ACTIONS(5112), + [anon_sym_select] = ACTIONS(5112), + [anon_sym_as] = ACTIONS(5112), + [anon_sym_is] = ACTIONS(5112), + [anon_sym_DASH_GT] = ACTIONS(5112), + [anon_sym_with] = ACTIONS(5112), + [aux_sym_preproc_if_token3] = ACTIONS(5112), + [aux_sym_preproc_else_token1] = ACTIONS(5112), + [aux_sym_preproc_elif_token1] = ACTIONS(5112), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -476366,62 +475903,62 @@ 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(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), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -476443,62 +475980,62 @@ 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(5054), - [anon_sym_LBRACK] = ACTIONS(5054), - [anon_sym_COLON] = ACTIONS(5054), - [anon_sym_COMMA] = ACTIONS(5054), - [anon_sym_RBRACK] = ACTIONS(5054), - [anon_sym_LPAREN] = ACTIONS(5054), - [anon_sym_RPAREN] = ACTIONS(5054), - [anon_sym_RBRACE] = ACTIONS(5054), - [anon_sym_LT] = ACTIONS(5056), - [anon_sym_GT] = ACTIONS(5056), - [anon_sym_in] = ACTIONS(5054), - [anon_sym_where] = ACTIONS(5054), - [anon_sym_QMARK] = ACTIONS(5056), - [anon_sym_BANG] = ACTIONS(5056), - [anon_sym_PLUS_PLUS] = ACTIONS(5054), - [anon_sym_DASH_DASH] = ACTIONS(5054), - [anon_sym_PLUS] = ACTIONS(5056), - [anon_sym_DASH] = ACTIONS(5056), - [anon_sym_STAR] = ACTIONS(5054), - [anon_sym_SLASH] = ACTIONS(5056), - [anon_sym_PERCENT] = ACTIONS(5054), - [anon_sym_CARET] = ACTIONS(5054), - [anon_sym_PIPE] = ACTIONS(5056), - [anon_sym_AMP] = ACTIONS(5056), - [anon_sym_LT_LT] = ACTIONS(5054), - [anon_sym_GT_GT] = ACTIONS(5056), - [anon_sym_GT_GT_GT] = ACTIONS(5054), - [anon_sym_EQ_EQ] = ACTIONS(5054), - [anon_sym_BANG_EQ] = ACTIONS(5054), - [anon_sym_GT_EQ] = ACTIONS(5054), - [anon_sym_LT_EQ] = ACTIONS(5054), - [anon_sym_DOT] = ACTIONS(5056), - [anon_sym_EQ_GT] = ACTIONS(5054), - [anon_sym_switch] = ACTIONS(5054), - [anon_sym_DOT_DOT] = ACTIONS(5054), - [anon_sym_and] = ACTIONS(5054), - [anon_sym_or] = ACTIONS(5056), - [anon_sym_AMP_AMP] = ACTIONS(5054), - [anon_sym_PIPE_PIPE] = ACTIONS(5054), - [anon_sym_QMARK_QMARK] = ACTIONS(5054), - [anon_sym_from] = ACTIONS(5054), - [anon_sym_join] = ACTIONS(5054), - [anon_sym_on] = ACTIONS(5054), - [anon_sym_equals] = ACTIONS(5054), - [anon_sym_let] = ACTIONS(5054), - [anon_sym_orderby] = ACTIONS(5054), - [anon_sym_group] = ACTIONS(5054), - [anon_sym_by] = ACTIONS(5054), - [anon_sym_select] = ACTIONS(5054), - [anon_sym_as] = ACTIONS(5054), - [anon_sym_is] = ACTIONS(5054), - [anon_sym_DASH_GT] = ACTIONS(5054), - [anon_sym_with] = ACTIONS(5054), - [aux_sym_preproc_if_token3] = ACTIONS(5054), - [aux_sym_preproc_else_token1] = ACTIONS(5054), - [aux_sym_preproc_elif_token1] = ACTIONS(5054), + [anon_sym_SEMI] = ACTIONS(4977), + [anon_sym_LBRACK] = ACTIONS(4977), + [anon_sym_COLON] = ACTIONS(4977), + [anon_sym_COMMA] = ACTIONS(4977), + [anon_sym_RBRACK] = ACTIONS(4977), + [anon_sym_LPAREN] = ACTIONS(4977), + [anon_sym_RPAREN] = ACTIONS(4977), + [anon_sym_RBRACE] = ACTIONS(4977), + [anon_sym_LT] = ACTIONS(4979), + [anon_sym_GT] = ACTIONS(4979), + [anon_sym_in] = ACTIONS(4977), + [anon_sym_where] = ACTIONS(4977), + [anon_sym_QMARK] = ACTIONS(4979), + [anon_sym_BANG] = ACTIONS(4979), + [anon_sym_PLUS_PLUS] = ACTIONS(4977), + [anon_sym_DASH_DASH] = ACTIONS(4977), + [anon_sym_PLUS] = ACTIONS(4979), + [anon_sym_DASH] = ACTIONS(4979), + [anon_sym_STAR] = ACTIONS(4977), + [anon_sym_SLASH] = ACTIONS(4979), + [anon_sym_PERCENT] = ACTIONS(4977), + [anon_sym_CARET] = ACTIONS(4977), + [anon_sym_PIPE] = ACTIONS(4979), + [anon_sym_AMP] = ACTIONS(4979), + [anon_sym_LT_LT] = ACTIONS(4977), + [anon_sym_GT_GT] = ACTIONS(4979), + [anon_sym_GT_GT_GT] = ACTIONS(4977), + [anon_sym_EQ_EQ] = ACTIONS(4977), + [anon_sym_BANG_EQ] = ACTIONS(4977), + [anon_sym_GT_EQ] = ACTIONS(4977), + [anon_sym_LT_EQ] = ACTIONS(4977), + [anon_sym_DOT] = ACTIONS(4979), + [anon_sym_EQ_GT] = ACTIONS(4977), + [anon_sym_switch] = ACTIONS(4977), + [anon_sym_DOT_DOT] = ACTIONS(4977), + [anon_sym_and] = ACTIONS(4977), + [anon_sym_or] = ACTIONS(4979), + [anon_sym_AMP_AMP] = ACTIONS(4977), + [anon_sym_PIPE_PIPE] = ACTIONS(4977), + [anon_sym_QMARK_QMARK] = ACTIONS(4977), + [anon_sym_from] = ACTIONS(4977), + [anon_sym_join] = ACTIONS(4977), + [anon_sym_on] = ACTIONS(4977), + [anon_sym_equals] = ACTIONS(4977), + [anon_sym_let] = ACTIONS(4977), + [anon_sym_orderby] = ACTIONS(4977), + [anon_sym_group] = ACTIONS(4977), + [anon_sym_by] = ACTIONS(4977), + [anon_sym_select] = ACTIONS(4977), + [anon_sym_as] = ACTIONS(4977), + [anon_sym_is] = ACTIONS(4977), + [anon_sym_DASH_GT] = ACTIONS(4977), + [anon_sym_with] = ACTIONS(4977), + [aux_sym_preproc_if_token3] = ACTIONS(4977), + [aux_sym_preproc_else_token1] = ACTIONS(4977), + [aux_sym_preproc_elif_token1] = ACTIONS(4977), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -476520,62 +476057,62 @@ 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(5012), - [anon_sym_LBRACK] = ACTIONS(5012), - [anon_sym_COLON] = ACTIONS(5012), - [anon_sym_COMMA] = ACTIONS(5012), - [anon_sym_RBRACK] = ACTIONS(5012), - [anon_sym_LPAREN] = ACTIONS(5012), - [anon_sym_RPAREN] = ACTIONS(5012), - [anon_sym_RBRACE] = ACTIONS(5012), - [anon_sym_LT] = ACTIONS(5014), - [anon_sym_GT] = ACTIONS(5014), - [anon_sym_in] = ACTIONS(5012), - [anon_sym_where] = ACTIONS(5012), - [anon_sym_QMARK] = ACTIONS(5014), - [anon_sym_BANG] = ACTIONS(5014), - [anon_sym_PLUS_PLUS] = ACTIONS(5012), - [anon_sym_DASH_DASH] = ACTIONS(5012), - [anon_sym_PLUS] = ACTIONS(5014), - [anon_sym_DASH] = ACTIONS(5014), - [anon_sym_STAR] = ACTIONS(5012), - [anon_sym_SLASH] = ACTIONS(5014), - [anon_sym_PERCENT] = ACTIONS(5012), - [anon_sym_CARET] = ACTIONS(5012), - [anon_sym_PIPE] = ACTIONS(5014), - [anon_sym_AMP] = ACTIONS(5014), - [anon_sym_LT_LT] = ACTIONS(5012), - [anon_sym_GT_GT] = ACTIONS(5014), - [anon_sym_GT_GT_GT] = ACTIONS(5012), - [anon_sym_EQ_EQ] = ACTIONS(5012), - [anon_sym_BANG_EQ] = ACTIONS(5012), - [anon_sym_GT_EQ] = ACTIONS(5012), - [anon_sym_LT_EQ] = ACTIONS(5012), - [anon_sym_DOT] = ACTIONS(5014), - [anon_sym_EQ_GT] = ACTIONS(5012), - [anon_sym_switch] = ACTIONS(5012), - [anon_sym_DOT_DOT] = ACTIONS(5012), - [anon_sym_and] = ACTIONS(5012), - [anon_sym_or] = ACTIONS(5014), - [anon_sym_AMP_AMP] = ACTIONS(5012), - [anon_sym_PIPE_PIPE] = ACTIONS(5012), - [anon_sym_QMARK_QMARK] = ACTIONS(5012), - [anon_sym_from] = ACTIONS(5012), - [anon_sym_join] = ACTIONS(5012), - [anon_sym_on] = ACTIONS(5012), - [anon_sym_equals] = ACTIONS(5012), - [anon_sym_let] = ACTIONS(5012), - [anon_sym_orderby] = ACTIONS(5012), - [anon_sym_group] = ACTIONS(5012), - [anon_sym_by] = ACTIONS(5012), - [anon_sym_select] = ACTIONS(5012), - [anon_sym_as] = ACTIONS(5012), - [anon_sym_is] = ACTIONS(5012), - [anon_sym_DASH_GT] = ACTIONS(5012), - [anon_sym_with] = ACTIONS(5012), - [aux_sym_preproc_if_token3] = ACTIONS(5012), - [aux_sym_preproc_else_token1] = ACTIONS(5012), - [aux_sym_preproc_elif_token1] = ACTIONS(5012), + [anon_sym_SEMI] = ACTIONS(4973), + [anon_sym_LBRACK] = ACTIONS(4973), + [anon_sym_COLON] = ACTIONS(4973), + [anon_sym_COMMA] = ACTIONS(4973), + [anon_sym_RBRACK] = ACTIONS(4973), + [anon_sym_LPAREN] = ACTIONS(4973), + [anon_sym_RPAREN] = ACTIONS(4973), + [anon_sym_RBRACE] = ACTIONS(4973), + [anon_sym_LT] = ACTIONS(4975), + [anon_sym_GT] = ACTIONS(4975), + [anon_sym_in] = ACTIONS(4973), + [anon_sym_where] = ACTIONS(4973), + [anon_sym_QMARK] = ACTIONS(4975), + [anon_sym_BANG] = ACTIONS(4975), + [anon_sym_PLUS_PLUS] = ACTIONS(4973), + [anon_sym_DASH_DASH] = ACTIONS(4973), + [anon_sym_PLUS] = ACTIONS(4975), + [anon_sym_DASH] = ACTIONS(4975), + [anon_sym_STAR] = ACTIONS(4973), + [anon_sym_SLASH] = ACTIONS(4975), + [anon_sym_PERCENT] = ACTIONS(4973), + [anon_sym_CARET] = ACTIONS(4973), + [anon_sym_PIPE] = ACTIONS(4975), + [anon_sym_AMP] = ACTIONS(4975), + [anon_sym_LT_LT] = ACTIONS(4973), + [anon_sym_GT_GT] = ACTIONS(4975), + [anon_sym_GT_GT_GT] = ACTIONS(4973), + [anon_sym_EQ_EQ] = ACTIONS(4973), + [anon_sym_BANG_EQ] = ACTIONS(4973), + [anon_sym_GT_EQ] = ACTIONS(4973), + [anon_sym_LT_EQ] = ACTIONS(4973), + [anon_sym_DOT] = ACTIONS(4975), + [anon_sym_EQ_GT] = ACTIONS(4973), + [anon_sym_switch] = ACTIONS(4973), + [anon_sym_DOT_DOT] = ACTIONS(4973), + [anon_sym_and] = ACTIONS(4973), + [anon_sym_or] = ACTIONS(4975), + [anon_sym_AMP_AMP] = ACTIONS(4973), + [anon_sym_PIPE_PIPE] = ACTIONS(4973), + [anon_sym_QMARK_QMARK] = ACTIONS(4973), + [anon_sym_from] = ACTIONS(4973), + [anon_sym_join] = ACTIONS(4973), + [anon_sym_on] = ACTIONS(4973), + [anon_sym_equals] = ACTIONS(4973), + [anon_sym_let] = ACTIONS(4973), + [anon_sym_orderby] = ACTIONS(4973), + [anon_sym_group] = ACTIONS(4973), + [anon_sym_by] = ACTIONS(4973), + [anon_sym_select] = ACTIONS(4973), + [anon_sym_as] = ACTIONS(4973), + [anon_sym_is] = ACTIONS(4973), + [anon_sym_DASH_GT] = ACTIONS(4973), + [anon_sym_with] = ACTIONS(4973), + [aux_sym_preproc_if_token3] = ACTIONS(4973), + [aux_sym_preproc_else_token1] = ACTIONS(4973), + [aux_sym_preproc_elif_token1] = ACTIONS(4973), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -476597,62 +476134,62 @@ 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(5042), - [anon_sym_LBRACK] = ACTIONS(5042), - [anon_sym_COLON] = ACTIONS(5042), - [anon_sym_COMMA] = ACTIONS(5042), - [anon_sym_RBRACK] = ACTIONS(5042), - [anon_sym_LPAREN] = ACTIONS(5042), - [anon_sym_RPAREN] = ACTIONS(5042), - [anon_sym_RBRACE] = ACTIONS(5042), - [anon_sym_LT] = ACTIONS(5044), - [anon_sym_GT] = ACTIONS(5044), - [anon_sym_in] = ACTIONS(5042), - [anon_sym_where] = ACTIONS(5042), - [anon_sym_QMARK] = ACTIONS(5044), - [anon_sym_BANG] = ACTIONS(5044), - [anon_sym_PLUS_PLUS] = ACTIONS(5042), - [anon_sym_DASH_DASH] = ACTIONS(5042), - [anon_sym_PLUS] = ACTIONS(5044), - [anon_sym_DASH] = ACTIONS(5044), - [anon_sym_STAR] = ACTIONS(5042), - [anon_sym_SLASH] = ACTIONS(5044), - [anon_sym_PERCENT] = ACTIONS(5042), - [anon_sym_CARET] = ACTIONS(5042), - [anon_sym_PIPE] = ACTIONS(5044), - [anon_sym_AMP] = ACTIONS(5044), - [anon_sym_LT_LT] = ACTIONS(5042), - [anon_sym_GT_GT] = ACTIONS(5044), - [anon_sym_GT_GT_GT] = ACTIONS(5042), - [anon_sym_EQ_EQ] = ACTIONS(5042), - [anon_sym_BANG_EQ] = ACTIONS(5042), - [anon_sym_GT_EQ] = ACTIONS(5042), - [anon_sym_LT_EQ] = ACTIONS(5042), - [anon_sym_DOT] = ACTIONS(5044), - [anon_sym_EQ_GT] = ACTIONS(5042), - [anon_sym_switch] = ACTIONS(5042), - [anon_sym_DOT_DOT] = ACTIONS(5042), - [anon_sym_and] = ACTIONS(5042), - [anon_sym_or] = ACTIONS(5044), - [anon_sym_AMP_AMP] = ACTIONS(5042), - [anon_sym_PIPE_PIPE] = ACTIONS(5042), - [anon_sym_QMARK_QMARK] = ACTIONS(5042), - [anon_sym_from] = ACTIONS(5042), - [anon_sym_join] = ACTIONS(5042), - [anon_sym_on] = ACTIONS(5042), - [anon_sym_equals] = ACTIONS(5042), - [anon_sym_let] = ACTIONS(5042), - [anon_sym_orderby] = ACTIONS(5042), - [anon_sym_group] = ACTIONS(5042), - [anon_sym_by] = ACTIONS(5042), - [anon_sym_select] = ACTIONS(5042), - [anon_sym_as] = ACTIONS(5042), - [anon_sym_is] = ACTIONS(5042), - [anon_sym_DASH_GT] = ACTIONS(5042), - [anon_sym_with] = ACTIONS(5042), - [aux_sym_preproc_if_token3] = ACTIONS(5042), - [aux_sym_preproc_else_token1] = ACTIONS(5042), - [aux_sym_preproc_elif_token1] = ACTIONS(5042), + [anon_sym_SEMI] = ACTIONS(5162), + [anon_sym_LBRACK] = ACTIONS(5162), + [anon_sym_COLON] = ACTIONS(5162), + [anon_sym_COMMA] = ACTIONS(5162), + [anon_sym_RBRACK] = ACTIONS(5162), + [anon_sym_LPAREN] = ACTIONS(5162), + [anon_sym_RPAREN] = ACTIONS(5162), + [anon_sym_RBRACE] = ACTIONS(5162), + [anon_sym_LT] = ACTIONS(5164), + [anon_sym_GT] = ACTIONS(5164), + [anon_sym_in] = ACTIONS(5162), + [anon_sym_where] = ACTIONS(5162), + [anon_sym_QMARK] = ACTIONS(5164), + [anon_sym_BANG] = ACTIONS(5164), + [anon_sym_PLUS_PLUS] = ACTIONS(5162), + [anon_sym_DASH_DASH] = ACTIONS(5162), + [anon_sym_PLUS] = ACTIONS(5164), + [anon_sym_DASH] = ACTIONS(5164), + [anon_sym_STAR] = ACTIONS(5162), + [anon_sym_SLASH] = ACTIONS(5164), + [anon_sym_PERCENT] = ACTIONS(5162), + [anon_sym_CARET] = ACTIONS(5162), + [anon_sym_PIPE] = ACTIONS(5164), + [anon_sym_AMP] = ACTIONS(5164), + [anon_sym_LT_LT] = ACTIONS(5162), + [anon_sym_GT_GT] = ACTIONS(5164), + [anon_sym_GT_GT_GT] = ACTIONS(5162), + [anon_sym_EQ_EQ] = ACTIONS(5162), + [anon_sym_BANG_EQ] = ACTIONS(5162), + [anon_sym_GT_EQ] = ACTIONS(5162), + [anon_sym_LT_EQ] = ACTIONS(5162), + [anon_sym_DOT] = ACTIONS(5164), + [anon_sym_EQ_GT] = ACTIONS(5162), + [anon_sym_switch] = ACTIONS(5162), + [anon_sym_DOT_DOT] = ACTIONS(5162), + [anon_sym_and] = ACTIONS(5162), + [anon_sym_or] = ACTIONS(5164), + [anon_sym_AMP_AMP] = ACTIONS(5162), + [anon_sym_PIPE_PIPE] = ACTIONS(5162), + [anon_sym_QMARK_QMARK] = ACTIONS(5162), + [anon_sym_from] = ACTIONS(5162), + [anon_sym_join] = ACTIONS(5162), + [anon_sym_on] = ACTIONS(5162), + [anon_sym_equals] = ACTIONS(5162), + [anon_sym_let] = ACTIONS(5162), + [anon_sym_orderby] = ACTIONS(5162), + [anon_sym_group] = ACTIONS(5162), + [anon_sym_by] = ACTIONS(5162), + [anon_sym_select] = ACTIONS(5162), + [anon_sym_as] = ACTIONS(5162), + [anon_sym_is] = ACTIONS(5162), + [anon_sym_DASH_GT] = ACTIONS(5162), + [anon_sym_with] = ACTIONS(5162), + [aux_sym_preproc_if_token3] = ACTIONS(5162), + [aux_sym_preproc_else_token1] = ACTIONS(5162), + [aux_sym_preproc_elif_token1] = ACTIONS(5162), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -476674,62 +476211,62 @@ 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(2957), - [anon_sym_LBRACK] = ACTIONS(2957), - [anon_sym_COLON] = ACTIONS(2957), - [anon_sym_COMMA] = ACTIONS(2957), - [anon_sym_RBRACK] = ACTIONS(2957), - [anon_sym_LPAREN] = ACTIONS(2957), - [anon_sym_RPAREN] = ACTIONS(2957), - [anon_sym_RBRACE] = ACTIONS(2957), - [anon_sym_LT] = ACTIONS(2955), - [anon_sym_GT] = ACTIONS(2955), - [anon_sym_in] = ACTIONS(2957), - [anon_sym_where] = ACTIONS(2957), - [anon_sym_QMARK] = ACTIONS(2955), - [anon_sym_BANG] = ACTIONS(2955), - [anon_sym_PLUS_PLUS] = ACTIONS(2957), - [anon_sym_DASH_DASH] = ACTIONS(2957), - [anon_sym_PLUS] = ACTIONS(2955), - [anon_sym_DASH] = ACTIONS(2955), - [anon_sym_STAR] = ACTIONS(2957), - [anon_sym_SLASH] = ACTIONS(2955), - [anon_sym_PERCENT] = ACTIONS(2957), - [anon_sym_CARET] = ACTIONS(2957), - [anon_sym_PIPE] = ACTIONS(2955), - [anon_sym_AMP] = ACTIONS(2955), - [anon_sym_LT_LT] = ACTIONS(2957), - [anon_sym_GT_GT] = ACTIONS(2955), - [anon_sym_GT_GT_GT] = ACTIONS(2957), - [anon_sym_EQ_EQ] = ACTIONS(2957), - [anon_sym_BANG_EQ] = ACTIONS(2957), - [anon_sym_GT_EQ] = ACTIONS(2957), - [anon_sym_LT_EQ] = ACTIONS(2957), - [anon_sym_DOT] = ACTIONS(2955), - [anon_sym_EQ_GT] = ACTIONS(2957), - [anon_sym_switch] = ACTIONS(2957), - [anon_sym_DOT_DOT] = ACTIONS(2957), - [anon_sym_and] = ACTIONS(2957), - [anon_sym_or] = ACTIONS(2955), - [anon_sym_AMP_AMP] = ACTIONS(2957), - [anon_sym_PIPE_PIPE] = ACTIONS(2957), - [anon_sym_QMARK_QMARK] = ACTIONS(2957), - [anon_sym_from] = ACTIONS(2957), - [anon_sym_join] = ACTIONS(2957), - [anon_sym_on] = ACTIONS(2957), - [anon_sym_equals] = ACTIONS(2957), - [anon_sym_let] = ACTIONS(2957), - [anon_sym_orderby] = ACTIONS(2957), - [anon_sym_group] = ACTIONS(2957), - [anon_sym_by] = ACTIONS(2957), - [anon_sym_select] = ACTIONS(2957), - [anon_sym_as] = ACTIONS(2957), - [anon_sym_is] = ACTIONS(2957), - [anon_sym_DASH_GT] = ACTIONS(2957), - [anon_sym_with] = ACTIONS(2957), - [aux_sym_preproc_if_token3] = ACTIONS(2957), - [aux_sym_preproc_else_token1] = ACTIONS(2957), - [aux_sym_preproc_elif_token1] = ACTIONS(2957), + [anon_sym_SEMI] = ACTIONS(5084), + [anon_sym_LBRACK] = ACTIONS(5084), + [anon_sym_COLON] = ACTIONS(5084), + [anon_sym_COMMA] = ACTIONS(5084), + [anon_sym_RBRACK] = ACTIONS(5084), + [anon_sym_LPAREN] = ACTIONS(5084), + [anon_sym_RPAREN] = ACTIONS(5084), + [anon_sym_RBRACE] = ACTIONS(5084), + [anon_sym_LT] = ACTIONS(5086), + [anon_sym_GT] = ACTIONS(5086), + [anon_sym_in] = ACTIONS(5084), + [anon_sym_where] = ACTIONS(5084), + [anon_sym_QMARK] = ACTIONS(5086), + [anon_sym_BANG] = ACTIONS(5086), + [anon_sym_PLUS_PLUS] = ACTIONS(5084), + [anon_sym_DASH_DASH] = ACTIONS(5084), + [anon_sym_PLUS] = ACTIONS(5086), + [anon_sym_DASH] = ACTIONS(5086), + [anon_sym_STAR] = ACTIONS(5084), + [anon_sym_SLASH] = ACTIONS(5086), + [anon_sym_PERCENT] = ACTIONS(5084), + [anon_sym_CARET] = ACTIONS(5084), + [anon_sym_PIPE] = ACTIONS(5086), + [anon_sym_AMP] = ACTIONS(5086), + [anon_sym_LT_LT] = ACTIONS(5084), + [anon_sym_GT_GT] = ACTIONS(5086), + [anon_sym_GT_GT_GT] = ACTIONS(5084), + [anon_sym_EQ_EQ] = ACTIONS(5084), + [anon_sym_BANG_EQ] = ACTIONS(5084), + [anon_sym_GT_EQ] = ACTIONS(5084), + [anon_sym_LT_EQ] = ACTIONS(5084), + [anon_sym_DOT] = ACTIONS(5086), + [anon_sym_EQ_GT] = ACTIONS(5084), + [anon_sym_switch] = ACTIONS(5084), + [anon_sym_DOT_DOT] = ACTIONS(5084), + [anon_sym_and] = ACTIONS(5084), + [anon_sym_or] = ACTIONS(5086), + [anon_sym_AMP_AMP] = ACTIONS(5084), + [anon_sym_PIPE_PIPE] = ACTIONS(5084), + [anon_sym_QMARK_QMARK] = ACTIONS(5084), + [anon_sym_from] = ACTIONS(5084), + [anon_sym_join] = ACTIONS(5084), + [anon_sym_on] = ACTIONS(5084), + [anon_sym_equals] = ACTIONS(5084), + [anon_sym_let] = ACTIONS(5084), + [anon_sym_orderby] = ACTIONS(5084), + [anon_sym_group] = ACTIONS(5084), + [anon_sym_by] = ACTIONS(5084), + [anon_sym_select] = ACTIONS(5084), + [anon_sym_as] = ACTIONS(5084), + [anon_sym_is] = ACTIONS(5084), + [anon_sym_DASH_GT] = ACTIONS(5084), + [anon_sym_with] = ACTIONS(5084), + [aux_sym_preproc_if_token3] = ACTIONS(5084), + [aux_sym_preproc_else_token1] = ACTIONS(5084), + [aux_sym_preproc_elif_token1] = ACTIONS(5084), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -476751,62 +476288,62 @@ 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(5072), - [anon_sym_LBRACK] = ACTIONS(5072), - [anon_sym_COLON] = ACTIONS(5072), - [anon_sym_COMMA] = ACTIONS(5072), - [anon_sym_RBRACK] = ACTIONS(5072), - [anon_sym_LPAREN] = ACTIONS(5072), - [anon_sym_RPAREN] = ACTIONS(5072), - [anon_sym_RBRACE] = ACTIONS(5072), - [anon_sym_LT] = ACTIONS(5074), - [anon_sym_GT] = ACTIONS(5074), - [anon_sym_in] = ACTIONS(5072), - [anon_sym_where] = ACTIONS(5072), - [anon_sym_QMARK] = ACTIONS(5074), - [anon_sym_BANG] = ACTIONS(5074), - [anon_sym_PLUS_PLUS] = ACTIONS(5072), - [anon_sym_DASH_DASH] = ACTIONS(5072), - [anon_sym_PLUS] = ACTIONS(5074), - [anon_sym_DASH] = ACTIONS(5074), - [anon_sym_STAR] = ACTIONS(5072), - [anon_sym_SLASH] = ACTIONS(5074), - [anon_sym_PERCENT] = ACTIONS(5072), - [anon_sym_CARET] = ACTIONS(5072), - [anon_sym_PIPE] = ACTIONS(5074), - [anon_sym_AMP] = ACTIONS(5074), - [anon_sym_LT_LT] = ACTIONS(5072), - [anon_sym_GT_GT] = ACTIONS(5074), - [anon_sym_GT_GT_GT] = ACTIONS(5072), - [anon_sym_EQ_EQ] = ACTIONS(5072), - [anon_sym_BANG_EQ] = ACTIONS(5072), - [anon_sym_GT_EQ] = ACTIONS(5072), - [anon_sym_LT_EQ] = ACTIONS(5072), - [anon_sym_DOT] = ACTIONS(5074), - [anon_sym_EQ_GT] = ACTIONS(5072), - [anon_sym_switch] = ACTIONS(5072), - [anon_sym_DOT_DOT] = ACTIONS(5072), - [anon_sym_and] = ACTIONS(5072), - [anon_sym_or] = ACTIONS(5074), - [anon_sym_AMP_AMP] = ACTIONS(5072), - [anon_sym_PIPE_PIPE] = ACTIONS(5072), - [anon_sym_QMARK_QMARK] = ACTIONS(5072), - [anon_sym_from] = ACTIONS(5072), - [anon_sym_join] = ACTIONS(5072), - [anon_sym_on] = ACTIONS(5072), - [anon_sym_equals] = ACTIONS(5072), - [anon_sym_let] = ACTIONS(5072), - [anon_sym_orderby] = ACTIONS(5072), - [anon_sym_group] = ACTIONS(5072), - [anon_sym_by] = ACTIONS(5072), - [anon_sym_select] = ACTIONS(5072), - [anon_sym_as] = ACTIONS(5072), - [anon_sym_is] = ACTIONS(5072), - [anon_sym_DASH_GT] = ACTIONS(5072), - [anon_sym_with] = ACTIONS(5072), - [aux_sym_preproc_if_token3] = ACTIONS(5072), - [aux_sym_preproc_else_token1] = ACTIONS(5072), - [aux_sym_preproc_elif_token1] = ACTIONS(5072), + [anon_sym_SEMI] = ACTIONS(4969), + [anon_sym_LBRACK] = ACTIONS(4969), + [anon_sym_COLON] = ACTIONS(4969), + [anon_sym_COMMA] = ACTIONS(4969), + [anon_sym_RBRACK] = ACTIONS(4969), + [anon_sym_LPAREN] = ACTIONS(4969), + [anon_sym_RPAREN] = ACTIONS(4969), + [anon_sym_RBRACE] = ACTIONS(4969), + [anon_sym_LT] = ACTIONS(4971), + [anon_sym_GT] = ACTIONS(4971), + [anon_sym_in] = ACTIONS(4969), + [anon_sym_where] = ACTIONS(4969), + [anon_sym_QMARK] = ACTIONS(4971), + [anon_sym_BANG] = ACTIONS(4971), + [anon_sym_PLUS_PLUS] = ACTIONS(4969), + [anon_sym_DASH_DASH] = ACTIONS(4969), + [anon_sym_PLUS] = ACTIONS(4971), + [anon_sym_DASH] = ACTIONS(4971), + [anon_sym_STAR] = ACTIONS(4969), + [anon_sym_SLASH] = ACTIONS(4971), + [anon_sym_PERCENT] = ACTIONS(4969), + [anon_sym_CARET] = ACTIONS(4969), + [anon_sym_PIPE] = ACTIONS(4971), + [anon_sym_AMP] = ACTIONS(4971), + [anon_sym_LT_LT] = ACTIONS(4969), + [anon_sym_GT_GT] = ACTIONS(4971), + [anon_sym_GT_GT_GT] = ACTIONS(4969), + [anon_sym_EQ_EQ] = ACTIONS(4969), + [anon_sym_BANG_EQ] = ACTIONS(4969), + [anon_sym_GT_EQ] = ACTIONS(4969), + [anon_sym_LT_EQ] = ACTIONS(4969), + [anon_sym_DOT] = ACTIONS(4971), + [anon_sym_EQ_GT] = ACTIONS(4969), + [anon_sym_switch] = ACTIONS(4969), + [anon_sym_DOT_DOT] = ACTIONS(4969), + [anon_sym_and] = ACTIONS(4969), + [anon_sym_or] = ACTIONS(4971), + [anon_sym_AMP_AMP] = ACTIONS(4969), + [anon_sym_PIPE_PIPE] = ACTIONS(4969), + [anon_sym_QMARK_QMARK] = ACTIONS(4969), + [anon_sym_from] = ACTIONS(4969), + [anon_sym_join] = ACTIONS(4969), + [anon_sym_on] = ACTIONS(4969), + [anon_sym_equals] = ACTIONS(4969), + [anon_sym_let] = ACTIONS(4969), + [anon_sym_orderby] = ACTIONS(4969), + [anon_sym_group] = ACTIONS(4969), + [anon_sym_by] = ACTIONS(4969), + [anon_sym_select] = ACTIONS(4969), + [anon_sym_as] = ACTIONS(4969), + [anon_sym_is] = ACTIONS(4969), + [anon_sym_DASH_GT] = ACTIONS(4969), + [anon_sym_with] = ACTIONS(4969), + [aux_sym_preproc_if_token3] = ACTIONS(4969), + [aux_sym_preproc_else_token1] = ACTIONS(4969), + [aux_sym_preproc_elif_token1] = ACTIONS(4969), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -476828,62 +476365,62 @@ 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(5086), - [anon_sym_LBRACK] = ACTIONS(5086), - [anon_sym_COLON] = ACTIONS(5086), - [anon_sym_COMMA] = ACTIONS(5086), - [anon_sym_RBRACK] = ACTIONS(5086), - [anon_sym_LPAREN] = ACTIONS(5086), - [anon_sym_RPAREN] = ACTIONS(5086), - [anon_sym_RBRACE] = ACTIONS(5086), - [anon_sym_LT] = ACTIONS(5088), - [anon_sym_GT] = ACTIONS(5088), - [anon_sym_in] = ACTIONS(5086), - [anon_sym_where] = ACTIONS(5086), - [anon_sym_QMARK] = ACTIONS(5088), - [anon_sym_BANG] = ACTIONS(5088), - [anon_sym_PLUS_PLUS] = ACTIONS(5086), - [anon_sym_DASH_DASH] = ACTIONS(5086), - [anon_sym_PLUS] = ACTIONS(5088), - [anon_sym_DASH] = ACTIONS(5088), - [anon_sym_STAR] = ACTIONS(5086), - [anon_sym_SLASH] = ACTIONS(5088), - [anon_sym_PERCENT] = ACTIONS(5086), - [anon_sym_CARET] = ACTIONS(5086), - [anon_sym_PIPE] = ACTIONS(5088), - [anon_sym_AMP] = ACTIONS(5088), - [anon_sym_LT_LT] = ACTIONS(5086), - [anon_sym_GT_GT] = ACTIONS(5088), - [anon_sym_GT_GT_GT] = ACTIONS(5086), - [anon_sym_EQ_EQ] = ACTIONS(5086), - [anon_sym_BANG_EQ] = ACTIONS(5086), - [anon_sym_GT_EQ] = ACTIONS(5086), - [anon_sym_LT_EQ] = ACTIONS(5086), - [anon_sym_DOT] = ACTIONS(5088), - [anon_sym_EQ_GT] = ACTIONS(5086), - [anon_sym_switch] = ACTIONS(5086), - [anon_sym_DOT_DOT] = ACTIONS(5086), - [anon_sym_and] = ACTIONS(5086), - [anon_sym_or] = ACTIONS(5088), - [anon_sym_AMP_AMP] = ACTIONS(5086), - [anon_sym_PIPE_PIPE] = ACTIONS(5086), - [anon_sym_QMARK_QMARK] = ACTIONS(5086), - [anon_sym_from] = ACTIONS(5086), - [anon_sym_join] = ACTIONS(5086), - [anon_sym_on] = ACTIONS(5086), - [anon_sym_equals] = ACTIONS(5086), - [anon_sym_let] = ACTIONS(5086), - [anon_sym_orderby] = ACTIONS(5086), - [anon_sym_group] = ACTIONS(5086), - [anon_sym_by] = ACTIONS(5086), - [anon_sym_select] = ACTIONS(5086), - [anon_sym_as] = ACTIONS(5086), - [anon_sym_is] = ACTIONS(5086), - [anon_sym_DASH_GT] = ACTIONS(5086), - [anon_sym_with] = ACTIONS(5086), - [aux_sym_preproc_if_token3] = ACTIONS(5086), - [aux_sym_preproc_else_token1] = ACTIONS(5086), - [aux_sym_preproc_elif_token1] = ACTIONS(5086), + [anon_sym_SEMI] = ACTIONS(5020), + [anon_sym_LBRACK] = ACTIONS(5020), + [anon_sym_COLON] = ACTIONS(5020), + [anon_sym_COMMA] = ACTIONS(5020), + [anon_sym_RBRACK] = ACTIONS(5020), + [anon_sym_LPAREN] = ACTIONS(5020), + [anon_sym_RPAREN] = ACTIONS(5020), + [anon_sym_RBRACE] = ACTIONS(5020), + [anon_sym_LT] = ACTIONS(5022), + [anon_sym_GT] = ACTIONS(5022), + [anon_sym_in] = ACTIONS(5020), + [anon_sym_where] = ACTIONS(5020), + [anon_sym_QMARK] = ACTIONS(5022), + [anon_sym_BANG] = ACTIONS(5022), + [anon_sym_PLUS_PLUS] = ACTIONS(5020), + [anon_sym_DASH_DASH] = ACTIONS(5020), + [anon_sym_PLUS] = ACTIONS(5022), + [anon_sym_DASH] = ACTIONS(5022), + [anon_sym_STAR] = ACTIONS(5020), + [anon_sym_SLASH] = ACTIONS(5022), + [anon_sym_PERCENT] = ACTIONS(5020), + [anon_sym_CARET] = ACTIONS(5020), + [anon_sym_PIPE] = ACTIONS(5022), + [anon_sym_AMP] = ACTIONS(5022), + [anon_sym_LT_LT] = ACTIONS(5020), + [anon_sym_GT_GT] = ACTIONS(5022), + [anon_sym_GT_GT_GT] = ACTIONS(5020), + [anon_sym_EQ_EQ] = ACTIONS(5020), + [anon_sym_BANG_EQ] = ACTIONS(5020), + [anon_sym_GT_EQ] = ACTIONS(5020), + [anon_sym_LT_EQ] = ACTIONS(5020), + [anon_sym_DOT] = ACTIONS(5022), + [anon_sym_EQ_GT] = ACTIONS(5020), + [anon_sym_switch] = ACTIONS(5020), + [anon_sym_DOT_DOT] = ACTIONS(5020), + [anon_sym_and] = ACTIONS(5020), + [anon_sym_or] = ACTIONS(5022), + [anon_sym_AMP_AMP] = ACTIONS(5020), + [anon_sym_PIPE_PIPE] = ACTIONS(5020), + [anon_sym_QMARK_QMARK] = ACTIONS(5020), + [anon_sym_from] = ACTIONS(5020), + [anon_sym_join] = ACTIONS(5020), + [anon_sym_on] = ACTIONS(5020), + [anon_sym_equals] = ACTIONS(5020), + [anon_sym_let] = ACTIONS(5020), + [anon_sym_orderby] = ACTIONS(5020), + [anon_sym_group] = ACTIONS(5020), + [anon_sym_by] = ACTIONS(5020), + [anon_sym_select] = ACTIONS(5020), + [anon_sym_as] = ACTIONS(5020), + [anon_sym_is] = ACTIONS(5020), + [anon_sym_DASH_GT] = ACTIONS(5020), + [anon_sym_with] = ACTIONS(5020), + [aux_sym_preproc_if_token3] = ACTIONS(5020), + [aux_sym_preproc_else_token1] = ACTIONS(5020), + [aux_sym_preproc_elif_token1] = ACTIONS(5020), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -476905,62 +476442,62 @@ 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(4945), - [anon_sym_LBRACK] = ACTIONS(4945), - [anon_sym_COLON] = ACTIONS(4945), - [anon_sym_COMMA] = ACTIONS(4945), - [anon_sym_RBRACK] = ACTIONS(4945), - [anon_sym_LPAREN] = ACTIONS(4945), - [anon_sym_RPAREN] = ACTIONS(4945), - [anon_sym_RBRACE] = ACTIONS(4945), - [anon_sym_LT] = ACTIONS(4947), - [anon_sym_GT] = ACTIONS(4947), - [anon_sym_in] = ACTIONS(4945), - [anon_sym_where] = ACTIONS(4945), - [anon_sym_QMARK] = ACTIONS(4947), - [anon_sym_BANG] = ACTIONS(4947), - [anon_sym_PLUS_PLUS] = ACTIONS(4945), - [anon_sym_DASH_DASH] = ACTIONS(4945), - [anon_sym_PLUS] = ACTIONS(4947), - [anon_sym_DASH] = ACTIONS(4947), - [anon_sym_STAR] = ACTIONS(4945), - [anon_sym_SLASH] = ACTIONS(4947), - [anon_sym_PERCENT] = ACTIONS(4945), - [anon_sym_CARET] = ACTIONS(4945), - [anon_sym_PIPE] = ACTIONS(4947), - [anon_sym_AMP] = ACTIONS(4947), - [anon_sym_LT_LT] = ACTIONS(4945), - [anon_sym_GT_GT] = ACTIONS(4947), - [anon_sym_GT_GT_GT] = ACTIONS(4945), - [anon_sym_EQ_EQ] = ACTIONS(4945), - [anon_sym_BANG_EQ] = ACTIONS(4945), - [anon_sym_GT_EQ] = ACTIONS(4945), - [anon_sym_LT_EQ] = ACTIONS(4945), - [anon_sym_DOT] = ACTIONS(4947), - [anon_sym_EQ_GT] = ACTIONS(4945), - [anon_sym_switch] = ACTIONS(4945), - [anon_sym_DOT_DOT] = ACTIONS(4945), - [anon_sym_and] = ACTIONS(4945), - [anon_sym_or] = ACTIONS(4947), - [anon_sym_AMP_AMP] = ACTIONS(4945), - [anon_sym_PIPE_PIPE] = ACTIONS(4945), - [anon_sym_QMARK_QMARK] = ACTIONS(4945), - [anon_sym_from] = ACTIONS(4945), - [anon_sym_join] = ACTIONS(4945), - [anon_sym_on] = ACTIONS(4945), - [anon_sym_equals] = ACTIONS(4945), - [anon_sym_let] = ACTIONS(4945), - [anon_sym_orderby] = ACTIONS(4945), - [anon_sym_group] = ACTIONS(4945), - [anon_sym_by] = ACTIONS(4945), - [anon_sym_select] = ACTIONS(4945), - [anon_sym_as] = ACTIONS(4945), - [anon_sym_is] = ACTIONS(4945), - [anon_sym_DASH_GT] = ACTIONS(4945), - [anon_sym_with] = ACTIONS(4945), - [aux_sym_preproc_if_token3] = ACTIONS(4945), - [aux_sym_preproc_else_token1] = ACTIONS(4945), - [aux_sym_preproc_elif_token1] = ACTIONS(4945), + [anon_sym_SEMI] = ACTIONS(3963), + [anon_sym_LBRACK] = ACTIONS(4033), + [anon_sym_COMMA] = ACTIONS(3963), + [anon_sym_RBRACK] = ACTIONS(3963), + [anon_sym_LPAREN] = ACTIONS(3963), + [anon_sym_RPAREN] = ACTIONS(3963), + [anon_sym_LBRACE] = ACTIONS(3963), + [anon_sym_RBRACE] = ACTIONS(3963), + [anon_sym_LT] = ACTIONS(3961), + [anon_sym_GT] = ACTIONS(3961), + [anon_sym_in] = ACTIONS(3963), + [anon_sym_where] = ACTIONS(3963), + [anon_sym_QMARK] = ACTIONS(4985), + [anon_sym_BANG] = ACTIONS(3961), + [anon_sym_PLUS_PLUS] = ACTIONS(3963), + [anon_sym_DASH_DASH] = ACTIONS(3963), + [anon_sym_PLUS] = ACTIONS(3961), + [anon_sym_DASH] = ACTIONS(3961), + [anon_sym_STAR] = ACTIONS(4039), + [anon_sym_SLASH] = ACTIONS(3961), + [anon_sym_PERCENT] = ACTIONS(3963), + [anon_sym_CARET] = ACTIONS(3963), + [anon_sym_PIPE] = ACTIONS(3961), + [anon_sym_AMP] = ACTIONS(3961), + [anon_sym_LT_LT] = ACTIONS(3963), + [anon_sym_GT_GT] = ACTIONS(3961), + [anon_sym_GT_GT_GT] = ACTIONS(3963), + [anon_sym_EQ_EQ] = ACTIONS(3963), + [anon_sym_BANG_EQ] = ACTIONS(3963), + [anon_sym_GT_EQ] = ACTIONS(3963), + [anon_sym_LT_EQ] = ACTIONS(3963), + [anon_sym_DOT] = ACTIONS(5203), + [anon_sym_EQ_GT] = ACTIONS(3963), + [anon_sym_switch] = ACTIONS(3963), + [anon_sym_DOT_DOT] = ACTIONS(3963), + [anon_sym_and] = ACTIONS(3963), + [anon_sym_or] = ACTIONS(3961), + [anon_sym_AMP_AMP] = ACTIONS(3963), + [anon_sym_PIPE_PIPE] = ACTIONS(3963), + [anon_sym_QMARK_QMARK] = ACTIONS(3963), + [anon_sym_from] = ACTIONS(3963), + [anon_sym_join] = ACTIONS(3963), + [anon_sym_on] = ACTIONS(3963), + [anon_sym_equals] = ACTIONS(3963), + [anon_sym_let] = ACTIONS(3963), + [anon_sym_orderby] = ACTIONS(3963), + [anon_sym_group] = ACTIONS(3963), + [anon_sym_by] = ACTIONS(3963), + [anon_sym_select] = ACTIONS(3963), + [anon_sym_as] = ACTIONS(3963), + [anon_sym_is] = ACTIONS(3963), + [anon_sym_DASH_GT] = ACTIONS(3963), + [anon_sym_with] = ACTIONS(3963), + [aux_sym_preproc_if_token3] = ACTIONS(3963), + [aux_sym_preproc_else_token1] = ACTIONS(3963), + [aux_sym_preproc_elif_token1] = ACTIONS(3963), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -476982,62 +476519,62 @@ 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(3977), - [anon_sym_LBRACK] = ACTIONS(3977), - [anon_sym_COMMA] = ACTIONS(3977), - [anon_sym_RBRACK] = ACTIONS(3977), - [anon_sym_LPAREN] = ACTIONS(3977), - [anon_sym_RPAREN] = ACTIONS(3977), - [anon_sym_LBRACE] = ACTIONS(3977), - [anon_sym_RBRACE] = ACTIONS(3977), - [anon_sym_LT] = ACTIONS(3975), - [anon_sym_GT] = ACTIONS(3975), - [anon_sym_in] = ACTIONS(3977), - [anon_sym_where] = ACTIONS(3977), - [anon_sym_QMARK] = ACTIONS(3975), - [anon_sym_BANG] = ACTIONS(3975), - [anon_sym_PLUS_PLUS] = ACTIONS(3977), - [anon_sym_DASH_DASH] = ACTIONS(3977), - [anon_sym_PLUS] = ACTIONS(3975), - [anon_sym_DASH] = ACTIONS(3975), - [anon_sym_STAR] = ACTIONS(3977), - [anon_sym_SLASH] = ACTIONS(3975), - [anon_sym_PERCENT] = ACTIONS(3977), - [anon_sym_CARET] = ACTIONS(3977), - [anon_sym_PIPE] = ACTIONS(3975), - [anon_sym_AMP] = ACTIONS(3975), - [anon_sym_LT_LT] = ACTIONS(3977), - [anon_sym_GT_GT] = ACTIONS(3975), - [anon_sym_GT_GT_GT] = ACTIONS(3977), - [anon_sym_EQ_EQ] = ACTIONS(3977), - [anon_sym_BANG_EQ] = ACTIONS(3977), - [anon_sym_GT_EQ] = ACTIONS(3977), - [anon_sym_LT_EQ] = ACTIONS(3977), - [anon_sym_DOT] = ACTIONS(5216), - [anon_sym_EQ_GT] = ACTIONS(3977), - [anon_sym_switch] = ACTIONS(3977), - [anon_sym_DOT_DOT] = ACTIONS(3977), - [anon_sym_and] = ACTIONS(3977), - [anon_sym_or] = ACTIONS(3975), - [anon_sym_AMP_AMP] = ACTIONS(3977), - [anon_sym_PIPE_PIPE] = ACTIONS(3977), - [anon_sym_QMARK_QMARK] = ACTIONS(3977), - [anon_sym_from] = ACTIONS(3977), - [anon_sym_join] = ACTIONS(3977), - [anon_sym_on] = ACTIONS(3977), - [anon_sym_equals] = ACTIONS(3977), - [anon_sym_let] = ACTIONS(3977), - [anon_sym_orderby] = ACTIONS(3977), - [anon_sym_group] = ACTIONS(3977), - [anon_sym_by] = ACTIONS(3977), - [anon_sym_select] = ACTIONS(3977), - [anon_sym_as] = ACTIONS(3977), - [anon_sym_is] = ACTIONS(3977), - [anon_sym_DASH_GT] = ACTIONS(3977), - [anon_sym_with] = ACTIONS(3977), - [aux_sym_preproc_if_token3] = ACTIONS(3977), - [aux_sym_preproc_else_token1] = ACTIONS(3977), - [aux_sym_preproc_elif_token1] = ACTIONS(3977), + [anon_sym_SEMI] = ACTIONS(5004), + [anon_sym_LBRACK] = ACTIONS(5004), + [anon_sym_COLON] = ACTIONS(5004), + [anon_sym_COMMA] = ACTIONS(5004), + [anon_sym_RBRACK] = ACTIONS(5004), + [anon_sym_LPAREN] = ACTIONS(5004), + [anon_sym_RPAREN] = ACTIONS(5004), + [anon_sym_RBRACE] = ACTIONS(5004), + [anon_sym_LT] = ACTIONS(5006), + [anon_sym_GT] = ACTIONS(5006), + [anon_sym_in] = ACTIONS(5004), + [anon_sym_where] = ACTIONS(5004), + [anon_sym_QMARK] = ACTIONS(5006), + [anon_sym_BANG] = ACTIONS(5006), + [anon_sym_PLUS_PLUS] = ACTIONS(5004), + [anon_sym_DASH_DASH] = ACTIONS(5004), + [anon_sym_PLUS] = ACTIONS(5006), + [anon_sym_DASH] = ACTIONS(5006), + [anon_sym_STAR] = ACTIONS(5004), + [anon_sym_SLASH] = ACTIONS(5006), + [anon_sym_PERCENT] = ACTIONS(5004), + [anon_sym_CARET] = ACTIONS(5004), + [anon_sym_PIPE] = ACTIONS(5006), + [anon_sym_AMP] = ACTIONS(5006), + [anon_sym_LT_LT] = ACTIONS(5004), + [anon_sym_GT_GT] = ACTIONS(5006), + [anon_sym_GT_GT_GT] = ACTIONS(5004), + [anon_sym_EQ_EQ] = ACTIONS(5004), + [anon_sym_BANG_EQ] = ACTIONS(5004), + [anon_sym_GT_EQ] = ACTIONS(5004), + [anon_sym_LT_EQ] = ACTIONS(5004), + [anon_sym_DOT] = ACTIONS(5006), + [anon_sym_EQ_GT] = ACTIONS(5004), + [anon_sym_switch] = ACTIONS(5004), + [anon_sym_DOT_DOT] = ACTIONS(5004), + [anon_sym_and] = ACTIONS(5004), + [anon_sym_or] = ACTIONS(5006), + [anon_sym_AMP_AMP] = ACTIONS(5004), + [anon_sym_PIPE_PIPE] = ACTIONS(5004), + [anon_sym_QMARK_QMARK] = ACTIONS(5004), + [anon_sym_from] = ACTIONS(5004), + [anon_sym_join] = ACTIONS(5004), + [anon_sym_on] = ACTIONS(5004), + [anon_sym_equals] = ACTIONS(5004), + [anon_sym_let] = ACTIONS(5004), + [anon_sym_orderby] = ACTIONS(5004), + [anon_sym_group] = ACTIONS(5004), + [anon_sym_by] = ACTIONS(5004), + [anon_sym_select] = ACTIONS(5004), + [anon_sym_as] = ACTIONS(5004), + [anon_sym_is] = ACTIONS(5004), + [anon_sym_DASH_GT] = ACTIONS(5004), + [anon_sym_with] = ACTIONS(5004), + [aux_sym_preproc_if_token3] = ACTIONS(5004), + [aux_sym_preproc_else_token1] = ACTIONS(5004), + [aux_sym_preproc_elif_token1] = ACTIONS(5004), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -477059,62 +476596,62 @@ 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(5046), - [anon_sym_LBRACK] = ACTIONS(5046), - [anon_sym_COLON] = ACTIONS(5046), - [anon_sym_COMMA] = ACTIONS(5046), - [anon_sym_RBRACK] = ACTIONS(5046), - [anon_sym_LPAREN] = ACTIONS(5046), - [anon_sym_RPAREN] = ACTIONS(5046), - [anon_sym_RBRACE] = ACTIONS(5046), - [anon_sym_LT] = ACTIONS(5048), - [anon_sym_GT] = ACTIONS(5048), - [anon_sym_in] = ACTIONS(5046), - [anon_sym_where] = ACTIONS(5046), - [anon_sym_QMARK] = ACTIONS(5048), - [anon_sym_BANG] = ACTIONS(5048), - [anon_sym_PLUS_PLUS] = ACTIONS(5046), - [anon_sym_DASH_DASH] = ACTIONS(5046), - [anon_sym_PLUS] = ACTIONS(5048), - [anon_sym_DASH] = ACTIONS(5048), - [anon_sym_STAR] = ACTIONS(5046), - [anon_sym_SLASH] = ACTIONS(5048), - [anon_sym_PERCENT] = ACTIONS(5046), - [anon_sym_CARET] = ACTIONS(5046), - [anon_sym_PIPE] = ACTIONS(5048), - [anon_sym_AMP] = ACTIONS(5048), - [anon_sym_LT_LT] = ACTIONS(5046), - [anon_sym_GT_GT] = ACTIONS(5048), - [anon_sym_GT_GT_GT] = ACTIONS(5046), - [anon_sym_EQ_EQ] = ACTIONS(5046), - [anon_sym_BANG_EQ] = ACTIONS(5046), - [anon_sym_GT_EQ] = ACTIONS(5046), - [anon_sym_LT_EQ] = ACTIONS(5046), - [anon_sym_DOT] = ACTIONS(5048), - [anon_sym_EQ_GT] = ACTIONS(5046), - [anon_sym_switch] = ACTIONS(5046), - [anon_sym_DOT_DOT] = ACTIONS(5046), - [anon_sym_and] = ACTIONS(5046), - [anon_sym_or] = ACTIONS(5048), - [anon_sym_AMP_AMP] = ACTIONS(5046), - [anon_sym_PIPE_PIPE] = ACTIONS(5046), - [anon_sym_QMARK_QMARK] = ACTIONS(5046), - [anon_sym_from] = ACTIONS(5046), - [anon_sym_join] = ACTIONS(5046), - [anon_sym_on] = ACTIONS(5046), - [anon_sym_equals] = ACTIONS(5046), - [anon_sym_let] = ACTIONS(5046), - [anon_sym_orderby] = ACTIONS(5046), - [anon_sym_group] = ACTIONS(5046), - [anon_sym_by] = ACTIONS(5046), - [anon_sym_select] = ACTIONS(5046), - [anon_sym_as] = ACTIONS(5046), - [anon_sym_is] = ACTIONS(5046), - [anon_sym_DASH_GT] = ACTIONS(5046), - [anon_sym_with] = ACTIONS(5046), - [aux_sym_preproc_if_token3] = ACTIONS(5046), - [aux_sym_preproc_else_token1] = ACTIONS(5046), - [aux_sym_preproc_elif_token1] = ACTIONS(5046), + [anon_sym_SEMI] = ACTIONS(5100), + [anon_sym_LBRACK] = ACTIONS(5100), + [anon_sym_COLON] = ACTIONS(5100), + [anon_sym_COMMA] = ACTIONS(5100), + [anon_sym_RBRACK] = ACTIONS(5100), + [anon_sym_LPAREN] = ACTIONS(5100), + [anon_sym_RPAREN] = ACTIONS(5100), + [anon_sym_RBRACE] = ACTIONS(5100), + [anon_sym_LT] = ACTIONS(5102), + [anon_sym_GT] = ACTIONS(5102), + [anon_sym_in] = ACTIONS(5100), + [anon_sym_where] = ACTIONS(5100), + [anon_sym_QMARK] = ACTIONS(5102), + [anon_sym_BANG] = ACTIONS(5102), + [anon_sym_PLUS_PLUS] = ACTIONS(5100), + [anon_sym_DASH_DASH] = ACTIONS(5100), + [anon_sym_PLUS] = ACTIONS(5102), + [anon_sym_DASH] = ACTIONS(5102), + [anon_sym_STAR] = ACTIONS(5100), + [anon_sym_SLASH] = ACTIONS(5102), + [anon_sym_PERCENT] = ACTIONS(5100), + [anon_sym_CARET] = ACTIONS(5100), + [anon_sym_PIPE] = ACTIONS(5102), + [anon_sym_AMP] = ACTIONS(5102), + [anon_sym_LT_LT] = ACTIONS(5100), + [anon_sym_GT_GT] = ACTIONS(5102), + [anon_sym_GT_GT_GT] = ACTIONS(5100), + [anon_sym_EQ_EQ] = ACTIONS(5100), + [anon_sym_BANG_EQ] = ACTIONS(5100), + [anon_sym_GT_EQ] = ACTIONS(5100), + [anon_sym_LT_EQ] = ACTIONS(5100), + [anon_sym_DOT] = ACTIONS(5102), + [anon_sym_EQ_GT] = ACTIONS(5100), + [anon_sym_switch] = ACTIONS(5100), + [anon_sym_DOT_DOT] = ACTIONS(5100), + [anon_sym_and] = ACTIONS(5100), + [anon_sym_or] = ACTIONS(5102), + [anon_sym_AMP_AMP] = ACTIONS(5100), + [anon_sym_PIPE_PIPE] = ACTIONS(5100), + [anon_sym_QMARK_QMARK] = ACTIONS(5100), + [anon_sym_from] = ACTIONS(5100), + [anon_sym_join] = ACTIONS(5100), + [anon_sym_on] = ACTIONS(5100), + [anon_sym_equals] = ACTIONS(5100), + [anon_sym_let] = ACTIONS(5100), + [anon_sym_orderby] = ACTIONS(5100), + [anon_sym_group] = ACTIONS(5100), + [anon_sym_by] = ACTIONS(5100), + [anon_sym_select] = ACTIONS(5100), + [anon_sym_as] = ACTIONS(5100), + [anon_sym_is] = ACTIONS(5100), + [anon_sym_DASH_GT] = ACTIONS(5100), + [anon_sym_with] = ACTIONS(5100), + [aux_sym_preproc_if_token3] = ACTIONS(5100), + [aux_sym_preproc_else_token1] = ACTIONS(5100), + [aux_sym_preproc_elif_token1] = ACTIONS(5100), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -477136,62 +476673,62 @@ 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(2953), - [anon_sym_LBRACK] = ACTIONS(2953), - [anon_sym_COLON] = ACTIONS(2953), - [anon_sym_COMMA] = ACTIONS(2953), - [anon_sym_RBRACK] = ACTIONS(2953), - [anon_sym_LPAREN] = ACTIONS(2953), - [anon_sym_RPAREN] = ACTIONS(2953), - [anon_sym_RBRACE] = ACTIONS(2953), - [anon_sym_LT] = ACTIONS(2951), - [anon_sym_GT] = ACTIONS(2951), - [anon_sym_in] = ACTIONS(2953), - [anon_sym_where] = ACTIONS(2953), - [anon_sym_QMARK] = ACTIONS(2951), - [anon_sym_BANG] = ACTIONS(2951), - [anon_sym_PLUS_PLUS] = ACTIONS(2953), - [anon_sym_DASH_DASH] = ACTIONS(2953), - [anon_sym_PLUS] = ACTIONS(2951), - [anon_sym_DASH] = ACTIONS(2951), - [anon_sym_STAR] = ACTIONS(2953), - [anon_sym_SLASH] = ACTIONS(2951), - [anon_sym_PERCENT] = ACTIONS(2953), - [anon_sym_CARET] = ACTIONS(2953), - [anon_sym_PIPE] = ACTIONS(2951), - [anon_sym_AMP] = ACTIONS(2951), - [anon_sym_LT_LT] = ACTIONS(2953), - [anon_sym_GT_GT] = ACTIONS(2951), - [anon_sym_GT_GT_GT] = ACTIONS(2953), - [anon_sym_EQ_EQ] = ACTIONS(2953), - [anon_sym_BANG_EQ] = ACTIONS(2953), - [anon_sym_GT_EQ] = ACTIONS(2953), - [anon_sym_LT_EQ] = ACTIONS(2953), - [anon_sym_DOT] = ACTIONS(2951), - [anon_sym_EQ_GT] = ACTIONS(2953), - [anon_sym_switch] = ACTIONS(2953), - [anon_sym_DOT_DOT] = ACTIONS(2953), - [anon_sym_and] = ACTIONS(2953), - [anon_sym_or] = ACTIONS(2951), - [anon_sym_AMP_AMP] = ACTIONS(2953), - [anon_sym_PIPE_PIPE] = ACTIONS(2953), - [anon_sym_QMARK_QMARK] = ACTIONS(2953), - [anon_sym_from] = ACTIONS(2953), - [anon_sym_join] = ACTIONS(2953), - [anon_sym_on] = ACTIONS(2953), - [anon_sym_equals] = ACTIONS(2953), - [anon_sym_let] = ACTIONS(2953), - [anon_sym_orderby] = ACTIONS(2953), - [anon_sym_group] = ACTIONS(2953), - [anon_sym_by] = ACTIONS(2953), - [anon_sym_select] = ACTIONS(2953), - [anon_sym_as] = ACTIONS(2953), - [anon_sym_is] = ACTIONS(2953), - [anon_sym_DASH_GT] = ACTIONS(2953), - [anon_sym_with] = ACTIONS(2953), - [aux_sym_preproc_if_token3] = ACTIONS(2953), - [aux_sym_preproc_else_token1] = ACTIONS(2953), - [aux_sym_preproc_elif_token1] = ACTIONS(2953), + [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_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_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_preproc_if_token3] = ACTIONS(4949), + [aux_sym_preproc_else_token1] = ACTIONS(4949), + [aux_sym_preproc_elif_token1] = ACTIONS(4949), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -477213,62 +476750,62 @@ 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(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(5104), + [anon_sym_LBRACK] = ACTIONS(5104), + [anon_sym_COLON] = ACTIONS(5104), + [anon_sym_COMMA] = ACTIONS(5104), + [anon_sym_RBRACK] = ACTIONS(5104), + [anon_sym_LPAREN] = ACTIONS(5104), + [anon_sym_RPAREN] = ACTIONS(5104), + [anon_sym_RBRACE] = ACTIONS(5104), + [anon_sym_LT] = ACTIONS(5106), + [anon_sym_GT] = ACTIONS(5106), + [anon_sym_in] = ACTIONS(5104), + [anon_sym_where] = ACTIONS(5104), + [anon_sym_QMARK] = ACTIONS(5106), + [anon_sym_BANG] = ACTIONS(5106), + [anon_sym_PLUS_PLUS] = ACTIONS(5104), + [anon_sym_DASH_DASH] = ACTIONS(5104), + [anon_sym_PLUS] = ACTIONS(5106), + [anon_sym_DASH] = ACTIONS(5106), + [anon_sym_STAR] = ACTIONS(5104), + [anon_sym_SLASH] = ACTIONS(5106), + [anon_sym_PERCENT] = ACTIONS(5104), + [anon_sym_CARET] = ACTIONS(5104), + [anon_sym_PIPE] = ACTIONS(5106), + [anon_sym_AMP] = ACTIONS(5106), + [anon_sym_LT_LT] = ACTIONS(5104), + [anon_sym_GT_GT] = ACTIONS(5106), + [anon_sym_GT_GT_GT] = ACTIONS(5104), + [anon_sym_EQ_EQ] = ACTIONS(5104), + [anon_sym_BANG_EQ] = ACTIONS(5104), + [anon_sym_GT_EQ] = ACTIONS(5104), + [anon_sym_LT_EQ] = ACTIONS(5104), + [anon_sym_DOT] = ACTIONS(5106), + [anon_sym_EQ_GT] = ACTIONS(5104), + [anon_sym_switch] = ACTIONS(5104), + [anon_sym_DOT_DOT] = ACTIONS(5104), + [anon_sym_and] = ACTIONS(5104), + [anon_sym_or] = ACTIONS(5106), + [anon_sym_AMP_AMP] = ACTIONS(5104), + [anon_sym_PIPE_PIPE] = ACTIONS(5104), + [anon_sym_QMARK_QMARK] = ACTIONS(5104), + [anon_sym_from] = ACTIONS(5104), + [anon_sym_join] = ACTIONS(5104), + [anon_sym_on] = ACTIONS(5104), + [anon_sym_equals] = ACTIONS(5104), + [anon_sym_let] = ACTIONS(5104), + [anon_sym_orderby] = ACTIONS(5104), + [anon_sym_group] = ACTIONS(5104), + [anon_sym_by] = ACTIONS(5104), + [anon_sym_select] = ACTIONS(5104), + [anon_sym_as] = ACTIONS(5104), + [anon_sym_is] = ACTIONS(5104), + [anon_sym_DASH_GT] = ACTIONS(5104), + [anon_sym_with] = ACTIONS(5104), + [aux_sym_preproc_if_token3] = ACTIONS(5104), + [aux_sym_preproc_else_token1] = ACTIONS(5104), + [aux_sym_preproc_elif_token1] = ACTIONS(5104), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -477290,62 +476827,62 @@ 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(4957), - [anon_sym_LBRACK] = ACTIONS(4957), - [anon_sym_COLON] = ACTIONS(4957), - [anon_sym_COMMA] = ACTIONS(4957), - [anon_sym_RBRACK] = ACTIONS(4957), - [anon_sym_LPAREN] = ACTIONS(4957), - [anon_sym_RPAREN] = ACTIONS(4957), - [anon_sym_RBRACE] = ACTIONS(4957), - [anon_sym_LT] = ACTIONS(4959), - [anon_sym_GT] = ACTIONS(4959), - [anon_sym_in] = ACTIONS(4957), - [anon_sym_where] = ACTIONS(4957), - [anon_sym_QMARK] = ACTIONS(4959), - [anon_sym_BANG] = ACTIONS(4959), - [anon_sym_PLUS_PLUS] = ACTIONS(4957), - [anon_sym_DASH_DASH] = ACTIONS(4957), - [anon_sym_PLUS] = ACTIONS(4959), - [anon_sym_DASH] = ACTIONS(4959), - [anon_sym_STAR] = ACTIONS(4957), - [anon_sym_SLASH] = ACTIONS(4959), - [anon_sym_PERCENT] = ACTIONS(4957), - [anon_sym_CARET] = ACTIONS(4957), - [anon_sym_PIPE] = ACTIONS(4959), - [anon_sym_AMP] = ACTIONS(4959), - [anon_sym_LT_LT] = ACTIONS(4957), - [anon_sym_GT_GT] = ACTIONS(4959), - [anon_sym_GT_GT_GT] = ACTIONS(4957), - [anon_sym_EQ_EQ] = ACTIONS(4957), - [anon_sym_BANG_EQ] = ACTIONS(4957), - [anon_sym_GT_EQ] = ACTIONS(4957), - [anon_sym_LT_EQ] = ACTIONS(4957), - [anon_sym_DOT] = ACTIONS(4959), - [anon_sym_EQ_GT] = ACTIONS(4957), - [anon_sym_switch] = ACTIONS(4957), - [anon_sym_DOT_DOT] = ACTIONS(4957), - [anon_sym_and] = ACTIONS(4957), - [anon_sym_or] = ACTIONS(4959), - [anon_sym_AMP_AMP] = ACTIONS(4957), - [anon_sym_PIPE_PIPE] = ACTIONS(4957), - [anon_sym_QMARK_QMARK] = ACTIONS(4957), - [anon_sym_from] = ACTIONS(4957), - [anon_sym_join] = ACTIONS(4957), - [anon_sym_on] = ACTIONS(4957), - [anon_sym_equals] = ACTIONS(4957), - [anon_sym_let] = ACTIONS(4957), - [anon_sym_orderby] = ACTIONS(4957), - [anon_sym_group] = ACTIONS(4957), - [anon_sym_by] = ACTIONS(4957), - [anon_sym_select] = ACTIONS(4957), - [anon_sym_as] = ACTIONS(4957), - [anon_sym_is] = ACTIONS(4957), - [anon_sym_DASH_GT] = ACTIONS(4957), - [anon_sym_with] = ACTIONS(4957), - [aux_sym_preproc_if_token3] = ACTIONS(4957), - [aux_sym_preproc_else_token1] = ACTIONS(4957), - [aux_sym_preproc_elif_token1] = ACTIONS(4957), + [anon_sym_SEMI] = ACTIONS(2951), + [anon_sym_LBRACK] = ACTIONS(2951), + [anon_sym_COLON] = ACTIONS(2951), + [anon_sym_COMMA] = ACTIONS(2951), + [anon_sym_RBRACK] = ACTIONS(2951), + [anon_sym_LPAREN] = ACTIONS(2951), + [anon_sym_RPAREN] = ACTIONS(2951), + [anon_sym_RBRACE] = ACTIONS(2951), + [anon_sym_LT] = ACTIONS(2949), + [anon_sym_GT] = ACTIONS(2949), + [anon_sym_in] = ACTIONS(2951), + [anon_sym_where] = ACTIONS(2951), + [anon_sym_QMARK] = ACTIONS(2949), + [anon_sym_BANG] = ACTIONS(2949), + [anon_sym_PLUS_PLUS] = ACTIONS(2951), + [anon_sym_DASH_DASH] = ACTIONS(2951), + [anon_sym_PLUS] = ACTIONS(2949), + [anon_sym_DASH] = ACTIONS(2949), + [anon_sym_STAR] = ACTIONS(2951), + [anon_sym_SLASH] = ACTIONS(2949), + [anon_sym_PERCENT] = ACTIONS(2951), + [anon_sym_CARET] = ACTIONS(2951), + [anon_sym_PIPE] = ACTIONS(2949), + [anon_sym_AMP] = ACTIONS(2949), + [anon_sym_LT_LT] = ACTIONS(2951), + [anon_sym_GT_GT] = ACTIONS(2949), + [anon_sym_GT_GT_GT] = ACTIONS(2951), + [anon_sym_EQ_EQ] = ACTIONS(2951), + [anon_sym_BANG_EQ] = ACTIONS(2951), + [anon_sym_GT_EQ] = ACTIONS(2951), + [anon_sym_LT_EQ] = ACTIONS(2951), + [anon_sym_DOT] = ACTIONS(2949), + [anon_sym_EQ_GT] = ACTIONS(2951), + [anon_sym_switch] = ACTIONS(2951), + [anon_sym_DOT_DOT] = ACTIONS(2951), + [anon_sym_and] = ACTIONS(2951), + [anon_sym_or] = ACTIONS(2949), + [anon_sym_AMP_AMP] = ACTIONS(2951), + [anon_sym_PIPE_PIPE] = ACTIONS(2951), + [anon_sym_QMARK_QMARK] = ACTIONS(2951), + [anon_sym_from] = ACTIONS(2951), + [anon_sym_join] = ACTIONS(2951), + [anon_sym_on] = ACTIONS(2951), + [anon_sym_equals] = ACTIONS(2951), + [anon_sym_let] = ACTIONS(2951), + [anon_sym_orderby] = ACTIONS(2951), + [anon_sym_group] = ACTIONS(2951), + [anon_sym_by] = ACTIONS(2951), + [anon_sym_select] = ACTIONS(2951), + [anon_sym_as] = ACTIONS(2951), + [anon_sym_is] = ACTIONS(2951), + [anon_sym_DASH_GT] = ACTIONS(2951), + [anon_sym_with] = ACTIONS(2951), + [aux_sym_preproc_if_token3] = ACTIONS(2951), + [aux_sym_preproc_else_token1] = ACTIONS(2951), + [aux_sym_preproc_elif_token1] = ACTIONS(2951), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -477367,62 +476904,62 @@ 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_EQ] = ACTIONS(5218), - [anon_sym_LBRACK] = ACTIONS(4860), - [anon_sym_COMMA] = ACTIONS(4860), - [anon_sym_LPAREN] = ACTIONS(4860), - [anon_sym_LT] = ACTIONS(4862), - [anon_sym_GT] = ACTIONS(4862), - [anon_sym_where] = ACTIONS(4860), - [anon_sym_QMARK] = ACTIONS(4862), - [anon_sym_BANG] = ACTIONS(4862), - [anon_sym_PLUS_PLUS] = ACTIONS(4860), - [anon_sym_DASH_DASH] = ACTIONS(4860), - [anon_sym_PLUS] = ACTIONS(4862), - [anon_sym_DASH] = ACTIONS(4862), - [anon_sym_STAR] = ACTIONS(4862), - [anon_sym_SLASH] = ACTIONS(4862), - [anon_sym_PERCENT] = ACTIONS(4862), - [anon_sym_CARET] = ACTIONS(4862), - [anon_sym_PIPE] = ACTIONS(4862), - [anon_sym_AMP] = ACTIONS(4862), - [anon_sym_LT_LT] = ACTIONS(4862), - [anon_sym_GT_GT] = ACTIONS(4862), - [anon_sym_GT_GT_GT] = ACTIONS(4862), - [anon_sym_EQ_EQ] = ACTIONS(4860), - [anon_sym_BANG_EQ] = ACTIONS(4860), - [anon_sym_GT_EQ] = ACTIONS(4860), - [anon_sym_LT_EQ] = ACTIONS(4860), - [anon_sym_DOT] = ACTIONS(4862), - [anon_sym_switch] = ACTIONS(4860), - [anon_sym_DOT_DOT] = ACTIONS(4860), - [anon_sym_PLUS_EQ] = ACTIONS(5220), - [anon_sym_DASH_EQ] = ACTIONS(5220), - [anon_sym_STAR_EQ] = ACTIONS(5220), - [anon_sym_SLASH_EQ] = ACTIONS(5220), - [anon_sym_PERCENT_EQ] = ACTIONS(5220), - [anon_sym_AMP_EQ] = ACTIONS(5220), - [anon_sym_CARET_EQ] = ACTIONS(5220), - [anon_sym_PIPE_EQ] = ACTIONS(5220), - [anon_sym_LT_LT_EQ] = ACTIONS(5220), - [anon_sym_GT_GT_EQ] = ACTIONS(5220), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(5220), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(5220), - [anon_sym_AMP_AMP] = ACTIONS(4860), - [anon_sym_PIPE_PIPE] = ACTIONS(4860), - [anon_sym_QMARK_QMARK] = ACTIONS(4862), - [anon_sym_from] = ACTIONS(4860), - [anon_sym_join] = ACTIONS(4860), - [anon_sym_let] = ACTIONS(4860), - [anon_sym_orderby] = ACTIONS(4860), - [anon_sym_ascending] = ACTIONS(4860), - [anon_sym_descending] = ACTIONS(4860), - [anon_sym_group] = ACTIONS(4860), - [anon_sym_select] = ACTIONS(4860), - [anon_sym_as] = ACTIONS(4862), - [anon_sym_is] = ACTIONS(4860), - [anon_sym_DASH_GT] = ACTIONS(4860), - [anon_sym_with] = ACTIONS(4860), + [anon_sym_SEMI] = ACTIONS(4992), + [anon_sym_LBRACK] = ACTIONS(4992), + [anon_sym_COLON] = ACTIONS(4992), + [anon_sym_COMMA] = ACTIONS(4992), + [anon_sym_RBRACK] = ACTIONS(4992), + [anon_sym_LPAREN] = ACTIONS(4992), + [anon_sym_RPAREN] = ACTIONS(4992), + [anon_sym_RBRACE] = ACTIONS(4992), + [anon_sym_LT] = ACTIONS(4994), + [anon_sym_GT] = ACTIONS(4994), + [anon_sym_in] = ACTIONS(4992), + [anon_sym_where] = ACTIONS(4992), + [anon_sym_QMARK] = ACTIONS(4994), + [anon_sym_BANG] = ACTIONS(4994), + [anon_sym_PLUS_PLUS] = ACTIONS(4992), + [anon_sym_DASH_DASH] = ACTIONS(4992), + [anon_sym_PLUS] = ACTIONS(4994), + [anon_sym_DASH] = ACTIONS(4994), + [anon_sym_STAR] = ACTIONS(4992), + [anon_sym_SLASH] = ACTIONS(4994), + [anon_sym_PERCENT] = ACTIONS(4992), + [anon_sym_CARET] = ACTIONS(4992), + [anon_sym_PIPE] = ACTIONS(4994), + [anon_sym_AMP] = ACTIONS(4994), + [anon_sym_LT_LT] = ACTIONS(4992), + [anon_sym_GT_GT] = ACTIONS(4994), + [anon_sym_GT_GT_GT] = ACTIONS(4992), + [anon_sym_EQ_EQ] = ACTIONS(4992), + [anon_sym_BANG_EQ] = ACTIONS(4992), + [anon_sym_GT_EQ] = ACTIONS(4992), + [anon_sym_LT_EQ] = ACTIONS(4992), + [anon_sym_DOT] = ACTIONS(4994), + [anon_sym_EQ_GT] = ACTIONS(4992), + [anon_sym_switch] = ACTIONS(4992), + [anon_sym_DOT_DOT] = ACTIONS(4992), + [anon_sym_and] = ACTIONS(4992), + [anon_sym_or] = ACTIONS(4994), + [anon_sym_AMP_AMP] = ACTIONS(4992), + [anon_sym_PIPE_PIPE] = ACTIONS(4992), + [anon_sym_QMARK_QMARK] = ACTIONS(4992), + [anon_sym_from] = ACTIONS(4992), + [anon_sym_join] = ACTIONS(4992), + [anon_sym_on] = ACTIONS(4992), + [anon_sym_equals] = ACTIONS(4992), + [anon_sym_let] = ACTIONS(4992), + [anon_sym_orderby] = ACTIONS(4992), + [anon_sym_group] = ACTIONS(4992), + [anon_sym_by] = ACTIONS(4992), + [anon_sym_select] = ACTIONS(4992), + [anon_sym_as] = ACTIONS(4992), + [anon_sym_is] = ACTIONS(4992), + [anon_sym_DASH_GT] = ACTIONS(4992), + [anon_sym_with] = ACTIONS(4992), + [aux_sym_preproc_if_token3] = ACTIONS(4992), + [aux_sym_preproc_else_token1] = ACTIONS(4992), + [aux_sym_preproc_elif_token1] = ACTIONS(4992), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -477444,62 +476981,62 @@ 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(4977), - [anon_sym_LBRACK] = ACTIONS(4977), - [anon_sym_COLON] = ACTIONS(4977), - [anon_sym_COMMA] = ACTIONS(4977), - [anon_sym_RBRACK] = ACTIONS(4977), - [anon_sym_LPAREN] = ACTIONS(4977), - [anon_sym_RPAREN] = ACTIONS(4977), - [anon_sym_RBRACE] = ACTIONS(4977), - [anon_sym_LT] = ACTIONS(4979), - [anon_sym_GT] = ACTIONS(4979), - [anon_sym_in] = ACTIONS(4977), - [anon_sym_where] = ACTIONS(4977), - [anon_sym_QMARK] = ACTIONS(4979), - [anon_sym_BANG] = ACTIONS(4979), - [anon_sym_PLUS_PLUS] = ACTIONS(4977), - [anon_sym_DASH_DASH] = ACTIONS(4977), - [anon_sym_PLUS] = ACTIONS(4979), - [anon_sym_DASH] = ACTIONS(4979), - [anon_sym_STAR] = ACTIONS(4977), - [anon_sym_SLASH] = ACTIONS(4979), - [anon_sym_PERCENT] = ACTIONS(4977), - [anon_sym_CARET] = ACTIONS(4977), - [anon_sym_PIPE] = ACTIONS(4979), - [anon_sym_AMP] = ACTIONS(4979), - [anon_sym_LT_LT] = ACTIONS(4977), - [anon_sym_GT_GT] = ACTIONS(4979), - [anon_sym_GT_GT_GT] = ACTIONS(4977), - [anon_sym_EQ_EQ] = ACTIONS(4977), - [anon_sym_BANG_EQ] = ACTIONS(4977), - [anon_sym_GT_EQ] = ACTIONS(4977), - [anon_sym_LT_EQ] = ACTIONS(4977), - [anon_sym_DOT] = ACTIONS(4979), - [anon_sym_EQ_GT] = ACTIONS(4977), - [anon_sym_switch] = ACTIONS(4977), - [anon_sym_DOT_DOT] = ACTIONS(4977), - [anon_sym_and] = ACTIONS(4977), - [anon_sym_or] = ACTIONS(4979), - [anon_sym_AMP_AMP] = ACTIONS(4977), - [anon_sym_PIPE_PIPE] = ACTIONS(4977), - [anon_sym_QMARK_QMARK] = ACTIONS(4977), - [anon_sym_from] = ACTIONS(4977), - [anon_sym_join] = ACTIONS(4977), - [anon_sym_on] = ACTIONS(4977), - [anon_sym_equals] = ACTIONS(4977), - [anon_sym_let] = ACTIONS(4977), - [anon_sym_orderby] = ACTIONS(4977), - [anon_sym_group] = ACTIONS(4977), - [anon_sym_by] = ACTIONS(4977), - [anon_sym_select] = ACTIONS(4977), - [anon_sym_as] = ACTIONS(4977), - [anon_sym_is] = ACTIONS(4977), - [anon_sym_DASH_GT] = ACTIONS(4977), - [anon_sym_with] = ACTIONS(4977), - [aux_sym_preproc_if_token3] = ACTIONS(4977), - [aux_sym_preproc_else_token1] = ACTIONS(4977), - [aux_sym_preproc_elif_token1] = ACTIONS(4977), + [anon_sym_SEMI] = ACTIONS(5068), + [anon_sym_LBRACK] = ACTIONS(5068), + [anon_sym_COLON] = ACTIONS(5068), + [anon_sym_COMMA] = ACTIONS(5068), + [anon_sym_RBRACK] = ACTIONS(5068), + [anon_sym_LPAREN] = ACTIONS(5068), + [anon_sym_RPAREN] = ACTIONS(5068), + [anon_sym_RBRACE] = ACTIONS(5068), + [anon_sym_LT] = ACTIONS(5070), + [anon_sym_GT] = ACTIONS(5070), + [anon_sym_in] = ACTIONS(5068), + [anon_sym_where] = ACTIONS(5068), + [anon_sym_QMARK] = ACTIONS(5070), + [anon_sym_BANG] = ACTIONS(5070), + [anon_sym_PLUS_PLUS] = ACTIONS(5068), + [anon_sym_DASH_DASH] = ACTIONS(5068), + [anon_sym_PLUS] = ACTIONS(5070), + [anon_sym_DASH] = ACTIONS(5070), + [anon_sym_STAR] = ACTIONS(5068), + [anon_sym_SLASH] = ACTIONS(5070), + [anon_sym_PERCENT] = ACTIONS(5068), + [anon_sym_CARET] = ACTIONS(5068), + [anon_sym_PIPE] = ACTIONS(5070), + [anon_sym_AMP] = ACTIONS(5070), + [anon_sym_LT_LT] = ACTIONS(5068), + [anon_sym_GT_GT] = ACTIONS(5070), + [anon_sym_GT_GT_GT] = ACTIONS(5068), + [anon_sym_EQ_EQ] = ACTIONS(5068), + [anon_sym_BANG_EQ] = ACTIONS(5068), + [anon_sym_GT_EQ] = ACTIONS(5068), + [anon_sym_LT_EQ] = ACTIONS(5068), + [anon_sym_DOT] = ACTIONS(5070), + [anon_sym_EQ_GT] = ACTIONS(5068), + [anon_sym_switch] = ACTIONS(5068), + [anon_sym_DOT_DOT] = ACTIONS(5068), + [anon_sym_and] = ACTIONS(5068), + [anon_sym_or] = ACTIONS(5070), + [anon_sym_AMP_AMP] = ACTIONS(5068), + [anon_sym_PIPE_PIPE] = ACTIONS(5068), + [anon_sym_QMARK_QMARK] = ACTIONS(5068), + [anon_sym_from] = ACTIONS(5068), + [anon_sym_join] = ACTIONS(5068), + [anon_sym_on] = ACTIONS(5068), + [anon_sym_equals] = ACTIONS(5068), + [anon_sym_let] = ACTIONS(5068), + [anon_sym_orderby] = ACTIONS(5068), + [anon_sym_group] = ACTIONS(5068), + [anon_sym_by] = ACTIONS(5068), + [anon_sym_select] = ACTIONS(5068), + [anon_sym_as] = ACTIONS(5068), + [anon_sym_is] = ACTIONS(5068), + [anon_sym_DASH_GT] = ACTIONS(5068), + [anon_sym_with] = ACTIONS(5068), + [aux_sym_preproc_if_token3] = ACTIONS(5068), + [aux_sym_preproc_else_token1] = ACTIONS(5068), + [aux_sym_preproc_elif_token1] = ACTIONS(5068), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -477521,62 +477058,62 @@ 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(4981), - [anon_sym_LBRACK] = ACTIONS(4981), - [anon_sym_COLON] = ACTIONS(4981), - [anon_sym_COMMA] = ACTIONS(4981), - [anon_sym_RBRACK] = ACTIONS(4981), - [anon_sym_LPAREN] = ACTIONS(4981), - [anon_sym_RPAREN] = ACTIONS(4981), - [anon_sym_RBRACE] = ACTIONS(4981), - [anon_sym_LT] = ACTIONS(4983), - [anon_sym_GT] = ACTIONS(4983), - [anon_sym_in] = ACTIONS(4981), - [anon_sym_where] = ACTIONS(4981), - [anon_sym_QMARK] = ACTIONS(4983), - [anon_sym_BANG] = ACTIONS(4983), - [anon_sym_PLUS_PLUS] = ACTIONS(4981), - [anon_sym_DASH_DASH] = ACTIONS(4981), - [anon_sym_PLUS] = ACTIONS(4983), - [anon_sym_DASH] = ACTIONS(4983), - [anon_sym_STAR] = ACTIONS(4981), - [anon_sym_SLASH] = ACTIONS(4983), - [anon_sym_PERCENT] = ACTIONS(4981), - [anon_sym_CARET] = ACTIONS(4981), - [anon_sym_PIPE] = ACTIONS(4983), - [anon_sym_AMP] = ACTIONS(4983), - [anon_sym_LT_LT] = ACTIONS(4981), - [anon_sym_GT_GT] = ACTIONS(4983), - [anon_sym_GT_GT_GT] = ACTIONS(4981), - [anon_sym_EQ_EQ] = ACTIONS(4981), - [anon_sym_BANG_EQ] = ACTIONS(4981), - [anon_sym_GT_EQ] = ACTIONS(4981), - [anon_sym_LT_EQ] = ACTIONS(4981), - [anon_sym_DOT] = ACTIONS(4983), - [anon_sym_EQ_GT] = ACTIONS(4981), - [anon_sym_switch] = ACTIONS(4981), - [anon_sym_DOT_DOT] = ACTIONS(4981), - [anon_sym_and] = ACTIONS(4981), - [anon_sym_or] = ACTIONS(4983), - [anon_sym_AMP_AMP] = ACTIONS(4981), - [anon_sym_PIPE_PIPE] = ACTIONS(4981), - [anon_sym_QMARK_QMARK] = ACTIONS(4981), - [anon_sym_from] = ACTIONS(4981), - [anon_sym_join] = ACTIONS(4981), - [anon_sym_on] = ACTIONS(4981), - [anon_sym_equals] = ACTIONS(4981), - [anon_sym_let] = ACTIONS(4981), - [anon_sym_orderby] = ACTIONS(4981), - [anon_sym_group] = ACTIONS(4981), - [anon_sym_by] = ACTIONS(4981), - [anon_sym_select] = ACTIONS(4981), - [anon_sym_as] = ACTIONS(4981), - [anon_sym_is] = ACTIONS(4981), - [anon_sym_DASH_GT] = ACTIONS(4981), - [anon_sym_with] = ACTIONS(4981), - [aux_sym_preproc_if_token3] = ACTIONS(4981), - [aux_sym_preproc_else_token1] = ACTIONS(4981), - [aux_sym_preproc_elif_token1] = ACTIONS(4981), + [anon_sym_SEMI] = ACTIONS(4953), + [anon_sym_LBRACK] = ACTIONS(4953), + [anon_sym_COLON] = ACTIONS(4953), + [anon_sym_COMMA] = ACTIONS(4953), + [anon_sym_RBRACK] = ACTIONS(4953), + [anon_sym_LPAREN] = ACTIONS(4953), + [anon_sym_RPAREN] = ACTIONS(4953), + [anon_sym_RBRACE] = ACTIONS(4953), + [anon_sym_LT] = ACTIONS(4955), + [anon_sym_GT] = ACTIONS(4955), + [anon_sym_in] = ACTIONS(4953), + [anon_sym_where] = ACTIONS(4953), + [anon_sym_QMARK] = ACTIONS(4955), + [anon_sym_BANG] = ACTIONS(4955), + [anon_sym_PLUS_PLUS] = ACTIONS(4953), + [anon_sym_DASH_DASH] = ACTIONS(4953), + [anon_sym_PLUS] = ACTIONS(4955), + [anon_sym_DASH] = ACTIONS(4955), + [anon_sym_STAR] = ACTIONS(4953), + [anon_sym_SLASH] = ACTIONS(4955), + [anon_sym_PERCENT] = ACTIONS(4953), + [anon_sym_CARET] = ACTIONS(4953), + [anon_sym_PIPE] = ACTIONS(4955), + [anon_sym_AMP] = ACTIONS(4955), + [anon_sym_LT_LT] = ACTIONS(4953), + [anon_sym_GT_GT] = ACTIONS(4955), + [anon_sym_GT_GT_GT] = ACTIONS(4953), + [anon_sym_EQ_EQ] = ACTIONS(4953), + [anon_sym_BANG_EQ] = ACTIONS(4953), + [anon_sym_GT_EQ] = ACTIONS(4953), + [anon_sym_LT_EQ] = ACTIONS(4953), + [anon_sym_DOT] = ACTIONS(4955), + [anon_sym_EQ_GT] = ACTIONS(4953), + [anon_sym_switch] = ACTIONS(4953), + [anon_sym_DOT_DOT] = ACTIONS(4953), + [anon_sym_and] = ACTIONS(4953), + [anon_sym_or] = ACTIONS(4955), + [anon_sym_AMP_AMP] = ACTIONS(4953), + [anon_sym_PIPE_PIPE] = ACTIONS(4953), + [anon_sym_QMARK_QMARK] = ACTIONS(4953), + [anon_sym_from] = ACTIONS(4953), + [anon_sym_join] = ACTIONS(4953), + [anon_sym_on] = ACTIONS(4953), + [anon_sym_equals] = ACTIONS(4953), + [anon_sym_let] = ACTIONS(4953), + [anon_sym_orderby] = ACTIONS(4953), + [anon_sym_group] = ACTIONS(4953), + [anon_sym_by] = ACTIONS(4953), + [anon_sym_select] = ACTIONS(4953), + [anon_sym_as] = ACTIONS(4953), + [anon_sym_is] = ACTIONS(4953), + [anon_sym_DASH_GT] = ACTIONS(4953), + [anon_sym_with] = ACTIONS(4953), + [aux_sym_preproc_if_token3] = ACTIONS(4953), + [aux_sym_preproc_else_token1] = ACTIONS(4953), + [aux_sym_preproc_elif_token1] = ACTIONS(4953), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -477598,62 +477135,62 @@ 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(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(4957), + [anon_sym_LBRACK] = ACTIONS(4957), + [anon_sym_COLON] = ACTIONS(4957), + [anon_sym_COMMA] = ACTIONS(4957), + [anon_sym_RBRACK] = ACTIONS(4957), + [anon_sym_LPAREN] = ACTIONS(4957), + [anon_sym_RPAREN] = ACTIONS(4957), + [anon_sym_RBRACE] = ACTIONS(4957), + [anon_sym_LT] = ACTIONS(4959), + [anon_sym_GT] = ACTIONS(4959), + [anon_sym_in] = ACTIONS(4957), + [anon_sym_where] = ACTIONS(4957), + [anon_sym_QMARK] = ACTIONS(4959), + [anon_sym_BANG] = ACTIONS(4959), + [anon_sym_PLUS_PLUS] = ACTIONS(4957), + [anon_sym_DASH_DASH] = ACTIONS(4957), + [anon_sym_PLUS] = ACTIONS(4959), + [anon_sym_DASH] = ACTIONS(4959), + [anon_sym_STAR] = ACTIONS(4957), + [anon_sym_SLASH] = ACTIONS(4959), + [anon_sym_PERCENT] = ACTIONS(4957), + [anon_sym_CARET] = ACTIONS(4957), + [anon_sym_PIPE] = ACTIONS(4959), + [anon_sym_AMP] = ACTIONS(4959), + [anon_sym_LT_LT] = ACTIONS(4957), + [anon_sym_GT_GT] = ACTIONS(4959), + [anon_sym_GT_GT_GT] = ACTIONS(4957), + [anon_sym_EQ_EQ] = ACTIONS(4957), + [anon_sym_BANG_EQ] = ACTIONS(4957), + [anon_sym_GT_EQ] = ACTIONS(4957), + [anon_sym_LT_EQ] = ACTIONS(4957), + [anon_sym_DOT] = ACTIONS(4959), + [anon_sym_EQ_GT] = ACTIONS(4957), + [anon_sym_switch] = ACTIONS(4957), + [anon_sym_DOT_DOT] = ACTIONS(4957), + [anon_sym_and] = ACTIONS(4957), + [anon_sym_or] = ACTIONS(4959), + [anon_sym_AMP_AMP] = ACTIONS(4957), + [anon_sym_PIPE_PIPE] = ACTIONS(4957), + [anon_sym_QMARK_QMARK] = ACTIONS(4957), + [anon_sym_from] = ACTIONS(4957), + [anon_sym_join] = ACTIONS(4957), + [anon_sym_on] = ACTIONS(4957), + [anon_sym_equals] = ACTIONS(4957), + [anon_sym_let] = ACTIONS(4957), + [anon_sym_orderby] = ACTIONS(4957), + [anon_sym_group] = ACTIONS(4957), + [anon_sym_by] = ACTIONS(4957), + [anon_sym_select] = ACTIONS(4957), + [anon_sym_as] = ACTIONS(4957), + [anon_sym_is] = ACTIONS(4957), + [anon_sym_DASH_GT] = ACTIONS(4957), + [anon_sym_with] = ACTIONS(4957), + [aux_sym_preproc_if_token3] = ACTIONS(4957), + [aux_sym_preproc_else_token1] = ACTIONS(4957), + [aux_sym_preproc_elif_token1] = ACTIONS(4957), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -477675,62 +477212,62 @@ 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(4860), - [anon_sym_LBRACK] = ACTIONS(4860), - [anon_sym_COLON] = ACTIONS(4860), - [anon_sym_COMMA] = ACTIONS(4860), - [anon_sym_RBRACK] = ACTIONS(4860), - [anon_sym_LPAREN] = ACTIONS(4860), - [anon_sym_RPAREN] = ACTIONS(4860), - [anon_sym_RBRACE] = ACTIONS(4860), - [anon_sym_LT] = ACTIONS(4862), - [anon_sym_GT] = ACTIONS(4862), - [anon_sym_in] = ACTIONS(4860), - [anon_sym_where] = ACTIONS(4860), - [anon_sym_QMARK] = ACTIONS(4862), - [anon_sym_BANG] = ACTIONS(4862), - [anon_sym_PLUS_PLUS] = ACTIONS(4860), - [anon_sym_DASH_DASH] = ACTIONS(4860), - [anon_sym_PLUS] = ACTIONS(4862), - [anon_sym_DASH] = ACTIONS(4862), - [anon_sym_STAR] = ACTIONS(4860), - [anon_sym_SLASH] = ACTIONS(4862), - [anon_sym_PERCENT] = ACTIONS(4860), - [anon_sym_CARET] = ACTIONS(4860), - [anon_sym_PIPE] = ACTIONS(4862), - [anon_sym_AMP] = ACTIONS(4862), - [anon_sym_LT_LT] = ACTIONS(4860), - [anon_sym_GT_GT] = ACTIONS(4862), - [anon_sym_GT_GT_GT] = ACTIONS(4860), - [anon_sym_EQ_EQ] = ACTIONS(4860), - [anon_sym_BANG_EQ] = ACTIONS(4860), - [anon_sym_GT_EQ] = ACTIONS(4860), - [anon_sym_LT_EQ] = ACTIONS(4860), - [anon_sym_DOT] = ACTIONS(4862), - [anon_sym_EQ_GT] = ACTIONS(4860), - [anon_sym_switch] = ACTIONS(4860), - [anon_sym_DOT_DOT] = ACTIONS(4860), - [anon_sym_and] = ACTIONS(4860), - [anon_sym_or] = ACTIONS(4862), - [anon_sym_AMP_AMP] = ACTIONS(4860), - [anon_sym_PIPE_PIPE] = ACTIONS(4860), - [anon_sym_QMARK_QMARK] = ACTIONS(4860), - [anon_sym_from] = ACTIONS(4860), - [anon_sym_join] = ACTIONS(4860), - [anon_sym_on] = ACTIONS(4860), - [anon_sym_equals] = ACTIONS(4860), - [anon_sym_let] = ACTIONS(4860), - [anon_sym_orderby] = ACTIONS(4860), - [anon_sym_group] = ACTIONS(4860), - [anon_sym_by] = ACTIONS(4860), - [anon_sym_select] = ACTIONS(4860), - [anon_sym_as] = ACTIONS(4860), - [anon_sym_is] = ACTIONS(4860), - [anon_sym_DASH_GT] = ACTIONS(4860), - [anon_sym_with] = ACTIONS(4860), - [aux_sym_preproc_if_token3] = ACTIONS(4860), - [aux_sym_preproc_else_token1] = ACTIONS(4860), - [aux_sym_preproc_elif_token1] = ACTIONS(4860), + [anon_sym_SEMI] = ACTIONS(5124), + [anon_sym_LBRACK] = ACTIONS(5124), + [anon_sym_COLON] = ACTIONS(5124), + [anon_sym_COMMA] = ACTIONS(5124), + [anon_sym_RBRACK] = ACTIONS(5124), + [anon_sym_LPAREN] = ACTIONS(5124), + [anon_sym_RPAREN] = ACTIONS(5124), + [anon_sym_RBRACE] = ACTIONS(5124), + [anon_sym_LT] = ACTIONS(5126), + [anon_sym_GT] = ACTIONS(5126), + [anon_sym_in] = ACTIONS(5124), + [anon_sym_where] = ACTIONS(5124), + [anon_sym_QMARK] = ACTIONS(5126), + [anon_sym_BANG] = ACTIONS(5126), + [anon_sym_PLUS_PLUS] = ACTIONS(5124), + [anon_sym_DASH_DASH] = ACTIONS(5124), + [anon_sym_PLUS] = ACTIONS(5126), + [anon_sym_DASH] = ACTIONS(5126), + [anon_sym_STAR] = ACTIONS(5124), + [anon_sym_SLASH] = ACTIONS(5126), + [anon_sym_PERCENT] = ACTIONS(5124), + [anon_sym_CARET] = ACTIONS(5124), + [anon_sym_PIPE] = ACTIONS(5126), + [anon_sym_AMP] = ACTIONS(5126), + [anon_sym_LT_LT] = ACTIONS(5124), + [anon_sym_GT_GT] = ACTIONS(5126), + [anon_sym_GT_GT_GT] = ACTIONS(5124), + [anon_sym_EQ_EQ] = ACTIONS(5124), + [anon_sym_BANG_EQ] = ACTIONS(5124), + [anon_sym_GT_EQ] = ACTIONS(5124), + [anon_sym_LT_EQ] = ACTIONS(5124), + [anon_sym_DOT] = ACTIONS(5126), + [anon_sym_EQ_GT] = ACTIONS(5124), + [anon_sym_switch] = ACTIONS(5124), + [anon_sym_DOT_DOT] = ACTIONS(5124), + [anon_sym_and] = ACTIONS(5124), + [anon_sym_or] = ACTIONS(5126), + [anon_sym_AMP_AMP] = ACTIONS(5124), + [anon_sym_PIPE_PIPE] = ACTIONS(5124), + [anon_sym_QMARK_QMARK] = ACTIONS(5124), + [anon_sym_from] = ACTIONS(5124), + [anon_sym_join] = ACTIONS(5124), + [anon_sym_on] = ACTIONS(5124), + [anon_sym_equals] = ACTIONS(5124), + [anon_sym_let] = ACTIONS(5124), + [anon_sym_orderby] = ACTIONS(5124), + [anon_sym_group] = ACTIONS(5124), + [anon_sym_by] = ACTIONS(5124), + [anon_sym_select] = ACTIONS(5124), + [anon_sym_as] = ACTIONS(5124), + [anon_sym_is] = ACTIONS(5124), + [anon_sym_DASH_GT] = ACTIONS(5124), + [anon_sym_with] = ACTIONS(5124), + [aux_sym_preproc_if_token3] = ACTIONS(5124), + [aux_sym_preproc_else_token1] = ACTIONS(5124), + [aux_sym_preproc_elif_token1] = ACTIONS(5124), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -477752,62 +477289,62 @@ 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(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(5072), + [anon_sym_LBRACK] = ACTIONS(5072), + [anon_sym_COLON] = ACTIONS(5072), + [anon_sym_COMMA] = ACTIONS(5072), + [anon_sym_RBRACK] = ACTIONS(5072), + [anon_sym_LPAREN] = ACTIONS(5072), + [anon_sym_RPAREN] = ACTIONS(5072), + [anon_sym_RBRACE] = ACTIONS(5072), + [anon_sym_LT] = ACTIONS(5074), + [anon_sym_GT] = ACTIONS(5074), + [anon_sym_in] = ACTIONS(5072), + [anon_sym_where] = ACTIONS(5072), + [anon_sym_QMARK] = ACTIONS(5074), + [anon_sym_BANG] = ACTIONS(5074), + [anon_sym_PLUS_PLUS] = ACTIONS(5072), + [anon_sym_DASH_DASH] = ACTIONS(5072), + [anon_sym_PLUS] = ACTIONS(5074), + [anon_sym_DASH] = ACTIONS(5074), + [anon_sym_STAR] = ACTIONS(5072), + [anon_sym_SLASH] = ACTIONS(5074), + [anon_sym_PERCENT] = ACTIONS(5072), + [anon_sym_CARET] = ACTIONS(5072), + [anon_sym_PIPE] = ACTIONS(5074), + [anon_sym_AMP] = ACTIONS(5074), + [anon_sym_LT_LT] = ACTIONS(5072), + [anon_sym_GT_GT] = ACTIONS(5074), + [anon_sym_GT_GT_GT] = ACTIONS(5072), + [anon_sym_EQ_EQ] = ACTIONS(5072), + [anon_sym_BANG_EQ] = ACTIONS(5072), + [anon_sym_GT_EQ] = ACTIONS(5072), + [anon_sym_LT_EQ] = ACTIONS(5072), + [anon_sym_DOT] = ACTIONS(5074), + [anon_sym_EQ_GT] = ACTIONS(5072), + [anon_sym_switch] = ACTIONS(5072), + [anon_sym_DOT_DOT] = ACTIONS(5072), + [anon_sym_and] = ACTIONS(5072), + [anon_sym_or] = ACTIONS(5074), + [anon_sym_AMP_AMP] = ACTIONS(5072), + [anon_sym_PIPE_PIPE] = ACTIONS(5072), + [anon_sym_QMARK_QMARK] = ACTIONS(5072), + [anon_sym_from] = ACTIONS(5072), + [anon_sym_join] = ACTIONS(5072), + [anon_sym_on] = ACTIONS(5072), + [anon_sym_equals] = ACTIONS(5072), + [anon_sym_let] = ACTIONS(5072), + [anon_sym_orderby] = ACTIONS(5072), + [anon_sym_group] = ACTIONS(5072), + [anon_sym_by] = ACTIONS(5072), + [anon_sym_select] = ACTIONS(5072), + [anon_sym_as] = ACTIONS(5072), + [anon_sym_is] = ACTIONS(5072), + [anon_sym_DASH_GT] = ACTIONS(5072), + [anon_sym_with] = ACTIONS(5072), + [aux_sym_preproc_if_token3] = ACTIONS(5072), + [aux_sym_preproc_else_token1] = ACTIONS(5072), + [aux_sym_preproc_elif_token1] = ACTIONS(5072), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -477829,62 +477366,62 @@ 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), - [anon_sym_SEMI] = ACTIONS(4989), - [anon_sym_LBRACK] = ACTIONS(4989), - [anon_sym_COLON] = ACTIONS(4989), - [anon_sym_COMMA] = ACTIONS(4989), - [anon_sym_RBRACK] = ACTIONS(4989), - [anon_sym_LPAREN] = ACTIONS(4989), - [anon_sym_RPAREN] = ACTIONS(4989), - [anon_sym_RBRACE] = ACTIONS(4989), - [anon_sym_LT] = ACTIONS(4991), - [anon_sym_GT] = ACTIONS(4991), - [anon_sym_in] = ACTIONS(4989), - [anon_sym_where] = ACTIONS(4989), - [anon_sym_QMARK] = ACTIONS(4991), - [anon_sym_BANG] = ACTIONS(4991), - [anon_sym_PLUS_PLUS] = ACTIONS(4989), - [anon_sym_DASH_DASH] = ACTIONS(4989), - [anon_sym_PLUS] = ACTIONS(4991), - [anon_sym_DASH] = ACTIONS(4991), - [anon_sym_STAR] = ACTIONS(4989), - [anon_sym_SLASH] = ACTIONS(4991), - [anon_sym_PERCENT] = ACTIONS(4989), - [anon_sym_CARET] = ACTIONS(4989), - [anon_sym_PIPE] = ACTIONS(4991), - [anon_sym_AMP] = ACTIONS(4991), - [anon_sym_LT_LT] = ACTIONS(4989), - [anon_sym_GT_GT] = ACTIONS(4991), - [anon_sym_GT_GT_GT] = ACTIONS(4989), - [anon_sym_EQ_EQ] = ACTIONS(4989), - [anon_sym_BANG_EQ] = ACTIONS(4989), - [anon_sym_GT_EQ] = ACTIONS(4989), - [anon_sym_LT_EQ] = ACTIONS(4989), - [anon_sym_DOT] = ACTIONS(4991), - [anon_sym_EQ_GT] = ACTIONS(4989), - [anon_sym_switch] = ACTIONS(4989), - [anon_sym_DOT_DOT] = ACTIONS(4989), - [anon_sym_and] = ACTIONS(4989), - [anon_sym_or] = ACTIONS(4991), - [anon_sym_AMP_AMP] = ACTIONS(4989), - [anon_sym_PIPE_PIPE] = ACTIONS(4989), - [anon_sym_QMARK_QMARK] = ACTIONS(4989), - [anon_sym_from] = ACTIONS(4989), - [anon_sym_join] = ACTIONS(4989), - [anon_sym_on] = ACTIONS(4989), - [anon_sym_equals] = ACTIONS(4989), - [anon_sym_let] = ACTIONS(4989), - [anon_sym_orderby] = ACTIONS(4989), - [anon_sym_group] = ACTIONS(4989), - [anon_sym_by] = ACTIONS(4989), - [anon_sym_select] = ACTIONS(4989), - [anon_sym_as] = ACTIONS(4989), - [anon_sym_is] = ACTIONS(4989), - [anon_sym_DASH_GT] = ACTIONS(4989), - [anon_sym_with] = ACTIONS(4989), - [aux_sym_preproc_if_token3] = ACTIONS(4989), - [aux_sym_preproc_else_token1] = ACTIONS(4989), - [aux_sym_preproc_elif_token1] = ACTIONS(4989), + [anon_sym_SEMI] = ACTIONS(4965), + [anon_sym_LBRACK] = ACTIONS(4965), + [anon_sym_COLON] = ACTIONS(4965), + [anon_sym_COMMA] = ACTIONS(4965), + [anon_sym_RBRACK] = ACTIONS(4965), + [anon_sym_LPAREN] = ACTIONS(4965), + [anon_sym_RPAREN] = ACTIONS(4965), + [anon_sym_RBRACE] = ACTIONS(4965), + [anon_sym_LT] = ACTIONS(4967), + [anon_sym_GT] = ACTIONS(4967), + [anon_sym_in] = ACTIONS(4965), + [anon_sym_where] = ACTIONS(4965), + [anon_sym_QMARK] = ACTIONS(4967), + [anon_sym_BANG] = ACTIONS(4967), + [anon_sym_PLUS_PLUS] = ACTIONS(4965), + [anon_sym_DASH_DASH] = ACTIONS(4965), + [anon_sym_PLUS] = ACTIONS(4967), + [anon_sym_DASH] = ACTIONS(4967), + [anon_sym_STAR] = ACTIONS(4965), + [anon_sym_SLASH] = ACTIONS(4967), + [anon_sym_PERCENT] = ACTIONS(4965), + [anon_sym_CARET] = ACTIONS(4965), + [anon_sym_PIPE] = ACTIONS(4967), + [anon_sym_AMP] = ACTIONS(4967), + [anon_sym_LT_LT] = ACTIONS(4965), + [anon_sym_GT_GT] = ACTIONS(4967), + [anon_sym_GT_GT_GT] = ACTIONS(4965), + [anon_sym_EQ_EQ] = ACTIONS(4965), + [anon_sym_BANG_EQ] = ACTIONS(4965), + [anon_sym_GT_EQ] = ACTIONS(4965), + [anon_sym_LT_EQ] = ACTIONS(4965), + [anon_sym_DOT] = ACTIONS(4967), + [anon_sym_EQ_GT] = ACTIONS(4965), + [anon_sym_switch] = ACTIONS(4965), + [anon_sym_DOT_DOT] = ACTIONS(4965), + [anon_sym_and] = ACTIONS(4965), + [anon_sym_or] = ACTIONS(4967), + [anon_sym_AMP_AMP] = ACTIONS(4965), + [anon_sym_PIPE_PIPE] = ACTIONS(4965), + [anon_sym_QMARK_QMARK] = ACTIONS(4965), + [anon_sym_from] = ACTIONS(4965), + [anon_sym_join] = ACTIONS(4965), + [anon_sym_on] = ACTIONS(4965), + [anon_sym_equals] = ACTIONS(4965), + [anon_sym_let] = ACTIONS(4965), + [anon_sym_orderby] = ACTIONS(4965), + [anon_sym_group] = ACTIONS(4965), + [anon_sym_by] = ACTIONS(4965), + [anon_sym_select] = ACTIONS(4965), + [anon_sym_as] = ACTIONS(4965), + [anon_sym_is] = ACTIONS(4965), + [anon_sym_DASH_GT] = ACTIONS(4965), + [anon_sym_with] = ACTIONS(4965), + [aux_sym_preproc_if_token3] = ACTIONS(4965), + [aux_sym_preproc_else_token1] = ACTIONS(4965), + [aux_sym_preproc_elif_token1] = ACTIONS(4965), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -477906,62 +477443,62 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3099), [sym_preproc_define] = STATE(3099), [sym_preproc_undef] = STATE(3099), - [anon_sym_SEMI] = ACTIONS(4997), - [anon_sym_LBRACK] = ACTIONS(4997), - [anon_sym_COLON] = ACTIONS(4997), - [anon_sym_COMMA] = ACTIONS(4997), - [anon_sym_RBRACK] = ACTIONS(4997), - [anon_sym_LPAREN] = ACTIONS(4997), - [anon_sym_RPAREN] = ACTIONS(4997), - [anon_sym_RBRACE] = ACTIONS(4997), - [anon_sym_LT] = ACTIONS(4999), - [anon_sym_GT] = ACTIONS(4999), - [anon_sym_in] = ACTIONS(4997), - [anon_sym_where] = ACTIONS(4997), - [anon_sym_QMARK] = ACTIONS(4999), - [anon_sym_BANG] = ACTIONS(4999), - [anon_sym_PLUS_PLUS] = ACTIONS(4997), - [anon_sym_DASH_DASH] = ACTIONS(4997), - [anon_sym_PLUS] = ACTIONS(4999), - [anon_sym_DASH] = ACTIONS(4999), - [anon_sym_STAR] = ACTIONS(4997), - [anon_sym_SLASH] = ACTIONS(4999), - [anon_sym_PERCENT] = ACTIONS(4997), - [anon_sym_CARET] = ACTIONS(4997), - [anon_sym_PIPE] = ACTIONS(4999), - [anon_sym_AMP] = ACTIONS(4999), - [anon_sym_LT_LT] = ACTIONS(4997), - [anon_sym_GT_GT] = ACTIONS(4999), - [anon_sym_GT_GT_GT] = ACTIONS(4997), - [anon_sym_EQ_EQ] = ACTIONS(4997), - [anon_sym_BANG_EQ] = ACTIONS(4997), - [anon_sym_GT_EQ] = ACTIONS(4997), - [anon_sym_LT_EQ] = ACTIONS(4997), - [anon_sym_DOT] = ACTIONS(4999), - [anon_sym_EQ_GT] = ACTIONS(4997), - [anon_sym_switch] = ACTIONS(4997), - [anon_sym_DOT_DOT] = ACTIONS(4997), - [anon_sym_and] = ACTIONS(4997), - [anon_sym_or] = ACTIONS(4999), - [anon_sym_AMP_AMP] = ACTIONS(4997), - [anon_sym_PIPE_PIPE] = ACTIONS(4997), - [anon_sym_QMARK_QMARK] = ACTIONS(4997), - [anon_sym_from] = ACTIONS(4997), - [anon_sym_join] = ACTIONS(4997), - [anon_sym_on] = ACTIONS(4997), - [anon_sym_equals] = ACTIONS(4997), - [anon_sym_let] = ACTIONS(4997), - [anon_sym_orderby] = ACTIONS(4997), - [anon_sym_group] = ACTIONS(4997), - [anon_sym_by] = ACTIONS(4997), - [anon_sym_select] = ACTIONS(4997), - [anon_sym_as] = ACTIONS(4997), - [anon_sym_is] = ACTIONS(4997), - [anon_sym_DASH_GT] = ACTIONS(4997), - [anon_sym_with] = ACTIONS(4997), - [aux_sym_preproc_if_token3] = ACTIONS(4997), - [aux_sym_preproc_else_token1] = ACTIONS(4997), - [aux_sym_preproc_elif_token1] = ACTIONS(4997), + [anon_sym_SEMI] = ACTIONS(4981), + [anon_sym_LBRACK] = ACTIONS(4981), + [anon_sym_COLON] = ACTIONS(4981), + [anon_sym_COMMA] = ACTIONS(4981), + [anon_sym_RBRACK] = ACTIONS(4981), + [anon_sym_LPAREN] = ACTIONS(4981), + [anon_sym_RPAREN] = ACTIONS(4981), + [anon_sym_RBRACE] = ACTIONS(4981), + [anon_sym_LT] = ACTIONS(4983), + [anon_sym_GT] = ACTIONS(4983), + [anon_sym_in] = ACTIONS(4981), + [anon_sym_where] = ACTIONS(4981), + [anon_sym_QMARK] = ACTIONS(4983), + [anon_sym_BANG] = ACTIONS(4983), + [anon_sym_PLUS_PLUS] = ACTIONS(4981), + [anon_sym_DASH_DASH] = ACTIONS(4981), + [anon_sym_PLUS] = ACTIONS(4983), + [anon_sym_DASH] = ACTIONS(4983), + [anon_sym_STAR] = ACTIONS(4981), + [anon_sym_SLASH] = ACTIONS(4983), + [anon_sym_PERCENT] = ACTIONS(4981), + [anon_sym_CARET] = ACTIONS(4981), + [anon_sym_PIPE] = ACTIONS(4983), + [anon_sym_AMP] = ACTIONS(4983), + [anon_sym_LT_LT] = ACTIONS(4981), + [anon_sym_GT_GT] = ACTIONS(4983), + [anon_sym_GT_GT_GT] = ACTIONS(4981), + [anon_sym_EQ_EQ] = ACTIONS(4981), + [anon_sym_BANG_EQ] = ACTIONS(4981), + [anon_sym_GT_EQ] = ACTIONS(4981), + [anon_sym_LT_EQ] = ACTIONS(4981), + [anon_sym_DOT] = ACTIONS(4983), + [anon_sym_EQ_GT] = ACTIONS(4981), + [anon_sym_switch] = ACTIONS(4981), + [anon_sym_DOT_DOT] = ACTIONS(4981), + [anon_sym_and] = ACTIONS(4981), + [anon_sym_or] = ACTIONS(4983), + [anon_sym_AMP_AMP] = ACTIONS(4981), + [anon_sym_PIPE_PIPE] = ACTIONS(4981), + [anon_sym_QMARK_QMARK] = ACTIONS(4981), + [anon_sym_from] = ACTIONS(4981), + [anon_sym_join] = ACTIONS(4981), + [anon_sym_on] = ACTIONS(4981), + [anon_sym_equals] = ACTIONS(4981), + [anon_sym_let] = ACTIONS(4981), + [anon_sym_orderby] = ACTIONS(4981), + [anon_sym_group] = ACTIONS(4981), + [anon_sym_by] = ACTIONS(4981), + [anon_sym_select] = ACTIONS(4981), + [anon_sym_as] = ACTIONS(4981), + [anon_sym_is] = ACTIONS(4981), + [anon_sym_DASH_GT] = ACTIONS(4981), + [anon_sym_with] = ACTIONS(4981), + [aux_sym_preproc_if_token3] = ACTIONS(4981), + [aux_sym_preproc_else_token1] = ACTIONS(4981), + [aux_sym_preproc_elif_token1] = ACTIONS(4981), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -477974,7 +477511,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3100] = { - [sym_modifier] = STATE(3130), [sym_preproc_region] = STATE(3100), [sym_preproc_endregion] = STATE(3100), [sym_preproc_line] = STATE(3100), @@ -477984,61 +477520,62 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3100), [sym_preproc_define] = STATE(3100), [sym_preproc_undef] = STATE(3100), - [aux_sym__class_declaration_initializer_repeat2] = STATE(3100), - [sym__identifier_token] = ACTIONS(5222), - [anon_sym_extern] = ACTIONS(5224), - [anon_sym_alias] = ACTIONS(5222), - [anon_sym_global] = ACTIONS(5222), - [anon_sym_unsafe] = ACTIONS(5224), - [anon_sym_static] = ACTIONS(5224), - [anon_sym_LPAREN] = ACTIONS(5227), - [anon_sym_event] = ACTIONS(5222), - [anon_sym_class] = ACTIONS(5222), - [anon_sym_ref] = ACTIONS(5222), - [anon_sym_struct] = ACTIONS(5222), - [anon_sym_enum] = ACTIONS(5222), - [anon_sym_interface] = ACTIONS(5222), - [anon_sym_delegate] = ACTIONS(5222), - [anon_sym_record] = ACTIONS(5222), - [anon_sym_abstract] = ACTIONS(5224), - [anon_sym_async] = ACTIONS(5224), - [anon_sym_const] = ACTIONS(5224), - [anon_sym_file] = ACTIONS(5224), - [anon_sym_fixed] = ACTIONS(5224), - [anon_sym_internal] = ACTIONS(5224), - [anon_sym_new] = ACTIONS(5224), - [anon_sym_override] = ACTIONS(5224), - [anon_sym_partial] = ACTIONS(5224), - [anon_sym_private] = ACTIONS(5224), - [anon_sym_protected] = ACTIONS(5224), - [anon_sym_public] = ACTIONS(5224), - [anon_sym_readonly] = ACTIONS(5224), - [anon_sym_required] = ACTIONS(5224), - [anon_sym_sealed] = ACTIONS(5224), - [anon_sym_virtual] = ACTIONS(5224), - [anon_sym_volatile] = ACTIONS(5224), - [anon_sym_where] = ACTIONS(5222), - [anon_sym_notnull] = ACTIONS(5222), - [anon_sym_unmanaged] = ACTIONS(5222), - [anon_sym_implicit] = ACTIONS(5222), - [anon_sym_explicit] = ACTIONS(5222), - [anon_sym_scoped] = ACTIONS(5222), - [anon_sym_var] = ACTIONS(5222), - [sym_predefined_type] = ACTIONS(5222), - [anon_sym_yield] = ACTIONS(5222), - [anon_sym_when] = 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_ascending] = ACTIONS(5222), - [anon_sym_descending] = ACTIONS(5222), - [anon_sym_group] = ACTIONS(5222), - [anon_sym_by] = ACTIONS(5222), - [anon_sym_select] = ACTIONS(5222), + [anon_sym_EQ] = ACTIONS(5205), + [anon_sym_LBRACK] = ACTIONS(4811), + [anon_sym_LPAREN] = ACTIONS(4811), + [anon_sym_LT] = ACTIONS(4813), + [anon_sym_GT] = ACTIONS(4813), + [anon_sym_where] = ACTIONS(4811), + [anon_sym_QMARK] = ACTIONS(4813), + [anon_sym_BANG] = ACTIONS(4813), + [anon_sym_PLUS_PLUS] = ACTIONS(4811), + [anon_sym_DASH_DASH] = ACTIONS(4811), + [anon_sym_PLUS] = ACTIONS(4813), + [anon_sym_DASH] = ACTIONS(4813), + [anon_sym_STAR] = ACTIONS(4813), + [anon_sym_SLASH] = ACTIONS(4813), + [anon_sym_PERCENT] = ACTIONS(4813), + [anon_sym_CARET] = ACTIONS(4813), + [anon_sym_PIPE] = ACTIONS(4813), + [anon_sym_AMP] = ACTIONS(4813), + [anon_sym_LT_LT] = ACTIONS(4813), + [anon_sym_GT_GT] = ACTIONS(4813), + [anon_sym_GT_GT_GT] = ACTIONS(4813), + [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(4813), + [anon_sym_switch] = ACTIONS(4811), + [anon_sym_DOT_DOT] = ACTIONS(4811), + [anon_sym_and] = ACTIONS(4811), + [anon_sym_or] = ACTIONS(4813), + [anon_sym_PLUS_EQ] = ACTIONS(5207), + [anon_sym_DASH_EQ] = ACTIONS(5207), + [anon_sym_STAR_EQ] = ACTIONS(5207), + [anon_sym_SLASH_EQ] = ACTIONS(5207), + [anon_sym_PERCENT_EQ] = ACTIONS(5207), + [anon_sym_AMP_EQ] = ACTIONS(5207), + [anon_sym_CARET_EQ] = ACTIONS(5207), + [anon_sym_PIPE_EQ] = ACTIONS(5207), + [anon_sym_LT_LT_EQ] = ACTIONS(5207), + [anon_sym_GT_GT_EQ] = ACTIONS(5207), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(5207), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(5207), + [anon_sym_AMP_AMP] = ACTIONS(4811), + [anon_sym_PIPE_PIPE] = ACTIONS(4811), + [anon_sym_QMARK_QMARK] = ACTIONS(4813), + [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_group] = 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_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -478060,62 +477597,62 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3101), [sym_preproc_define] = STATE(3101), [sym_preproc_undef] = STATE(3101), - [anon_sym_SEMI] = ACTIONS(5080), - [anon_sym_LBRACK] = ACTIONS(5080), - [anon_sym_COLON] = ACTIONS(5080), - [anon_sym_COMMA] = ACTIONS(5080), - [anon_sym_RBRACK] = ACTIONS(5080), - [anon_sym_LPAREN] = ACTIONS(5080), - [anon_sym_RPAREN] = ACTIONS(5080), - [anon_sym_RBRACE] = ACTIONS(5080), - [anon_sym_LT] = ACTIONS(5082), - [anon_sym_GT] = ACTIONS(5082), - [anon_sym_in] = ACTIONS(5080), - [anon_sym_where] = ACTIONS(5080), - [anon_sym_QMARK] = ACTIONS(5082), - [anon_sym_BANG] = ACTIONS(5082), - [anon_sym_PLUS_PLUS] = ACTIONS(5080), - [anon_sym_DASH_DASH] = ACTIONS(5080), - [anon_sym_PLUS] = ACTIONS(5082), - [anon_sym_DASH] = ACTIONS(5082), - [anon_sym_STAR] = ACTIONS(5080), - [anon_sym_SLASH] = ACTIONS(5082), - [anon_sym_PERCENT] = ACTIONS(5080), - [anon_sym_CARET] = ACTIONS(5080), - [anon_sym_PIPE] = ACTIONS(5082), - [anon_sym_AMP] = ACTIONS(5082), - [anon_sym_LT_LT] = ACTIONS(5080), - [anon_sym_GT_GT] = ACTIONS(5082), - [anon_sym_GT_GT_GT] = ACTIONS(5080), - [anon_sym_EQ_EQ] = ACTIONS(5080), - [anon_sym_BANG_EQ] = ACTIONS(5080), - [anon_sym_GT_EQ] = ACTIONS(5080), - [anon_sym_LT_EQ] = ACTIONS(5080), - [anon_sym_DOT] = ACTIONS(5082), - [anon_sym_EQ_GT] = ACTIONS(5080), - [anon_sym_switch] = ACTIONS(5080), - [anon_sym_DOT_DOT] = ACTIONS(5080), - [anon_sym_and] = ACTIONS(5080), - [anon_sym_or] = ACTIONS(5082), - [anon_sym_AMP_AMP] = ACTIONS(5080), - [anon_sym_PIPE_PIPE] = ACTIONS(5080), - [anon_sym_QMARK_QMARK] = ACTIONS(5080), - [anon_sym_from] = ACTIONS(5080), - [anon_sym_join] = ACTIONS(5080), - [anon_sym_on] = ACTIONS(5080), - [anon_sym_equals] = ACTIONS(5080), - [anon_sym_let] = ACTIONS(5080), - [anon_sym_orderby] = ACTIONS(5080), - [anon_sym_group] = ACTIONS(5080), - [anon_sym_by] = ACTIONS(5080), - [anon_sym_select] = ACTIONS(5080), - [anon_sym_as] = ACTIONS(5080), - [anon_sym_is] = ACTIONS(5080), - [anon_sym_DASH_GT] = ACTIONS(5080), - [anon_sym_with] = ACTIONS(5080), - [aux_sym_preproc_if_token3] = ACTIONS(5080), - [aux_sym_preproc_else_token1] = ACTIONS(5080), - [aux_sym_preproc_elif_token1] = ACTIONS(5080), + [anon_sym_SEMI] = ACTIONS(5028), + [anon_sym_LBRACK] = ACTIONS(5028), + [anon_sym_COLON] = ACTIONS(5028), + [anon_sym_COMMA] = ACTIONS(5028), + [anon_sym_RBRACK] = ACTIONS(5028), + [anon_sym_LPAREN] = ACTIONS(5028), + [anon_sym_RPAREN] = ACTIONS(5028), + [anon_sym_RBRACE] = ACTIONS(5028), + [anon_sym_LT] = ACTIONS(5030), + [anon_sym_GT] = ACTIONS(5030), + [anon_sym_in] = ACTIONS(5028), + [anon_sym_where] = ACTIONS(5028), + [anon_sym_QMARK] = ACTIONS(5030), + [anon_sym_BANG] = ACTIONS(5030), + [anon_sym_PLUS_PLUS] = ACTIONS(5028), + [anon_sym_DASH_DASH] = ACTIONS(5028), + [anon_sym_PLUS] = ACTIONS(5030), + [anon_sym_DASH] = ACTIONS(5030), + [anon_sym_STAR] = ACTIONS(5028), + [anon_sym_SLASH] = ACTIONS(5030), + [anon_sym_PERCENT] = ACTIONS(5028), + [anon_sym_CARET] = ACTIONS(5028), + [anon_sym_PIPE] = ACTIONS(5030), + [anon_sym_AMP] = ACTIONS(5030), + [anon_sym_LT_LT] = ACTIONS(5028), + [anon_sym_GT_GT] = ACTIONS(5030), + [anon_sym_GT_GT_GT] = ACTIONS(5028), + [anon_sym_EQ_EQ] = ACTIONS(5028), + [anon_sym_BANG_EQ] = ACTIONS(5028), + [anon_sym_GT_EQ] = ACTIONS(5028), + [anon_sym_LT_EQ] = ACTIONS(5028), + [anon_sym_DOT] = ACTIONS(5030), + [anon_sym_EQ_GT] = ACTIONS(5028), + [anon_sym_switch] = ACTIONS(5028), + [anon_sym_DOT_DOT] = ACTIONS(5028), + [anon_sym_and] = ACTIONS(5028), + [anon_sym_or] = ACTIONS(5030), + [anon_sym_AMP_AMP] = ACTIONS(5028), + [anon_sym_PIPE_PIPE] = ACTIONS(5028), + [anon_sym_QMARK_QMARK] = ACTIONS(5028), + [anon_sym_from] = ACTIONS(5028), + [anon_sym_join] = ACTIONS(5028), + [anon_sym_on] = ACTIONS(5028), + [anon_sym_equals] = ACTIONS(5028), + [anon_sym_let] = ACTIONS(5028), + [anon_sym_orderby] = ACTIONS(5028), + [anon_sym_group] = ACTIONS(5028), + [anon_sym_by] = ACTIONS(5028), + [anon_sym_select] = ACTIONS(5028), + [anon_sym_as] = ACTIONS(5028), + [anon_sym_is] = ACTIONS(5028), + [anon_sym_DASH_GT] = ACTIONS(5028), + [anon_sym_with] = ACTIONS(5028), + [aux_sym_preproc_if_token3] = ACTIONS(5028), + [aux_sym_preproc_else_token1] = ACTIONS(5028), + [aux_sym_preproc_elif_token1] = ACTIONS(5028), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -478137,62 +477674,62 @@ 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(5106), - [anon_sym_LBRACK] = ACTIONS(5106), - [anon_sym_COLON] = ACTIONS(5106), - [anon_sym_COMMA] = ACTIONS(5106), - [anon_sym_RBRACK] = ACTIONS(5106), - [anon_sym_LPAREN] = ACTIONS(5106), - [anon_sym_RPAREN] = ACTIONS(5106), - [anon_sym_RBRACE] = ACTIONS(5106), - [anon_sym_LT] = ACTIONS(5108), - [anon_sym_GT] = ACTIONS(5108), - [anon_sym_in] = ACTIONS(5106), - [anon_sym_where] = ACTIONS(5106), - [anon_sym_QMARK] = ACTIONS(5108), - [anon_sym_BANG] = ACTIONS(5108), - [anon_sym_PLUS_PLUS] = ACTIONS(5106), - [anon_sym_DASH_DASH] = ACTIONS(5106), - [anon_sym_PLUS] = ACTIONS(5108), - [anon_sym_DASH] = ACTIONS(5108), - [anon_sym_STAR] = ACTIONS(5106), - [anon_sym_SLASH] = ACTIONS(5108), - [anon_sym_PERCENT] = ACTIONS(5106), - [anon_sym_CARET] = ACTIONS(5106), - [anon_sym_PIPE] = ACTIONS(5108), - [anon_sym_AMP] = ACTIONS(5108), - [anon_sym_LT_LT] = ACTIONS(5106), - [anon_sym_GT_GT] = ACTIONS(5108), - [anon_sym_GT_GT_GT] = ACTIONS(5106), - [anon_sym_EQ_EQ] = ACTIONS(5106), - [anon_sym_BANG_EQ] = ACTIONS(5106), - [anon_sym_GT_EQ] = ACTIONS(5106), - [anon_sym_LT_EQ] = ACTIONS(5106), - [anon_sym_DOT] = ACTIONS(5108), - [anon_sym_EQ_GT] = ACTIONS(5106), - [anon_sym_switch] = ACTIONS(5106), - [anon_sym_DOT_DOT] = ACTIONS(5106), - [anon_sym_and] = ACTIONS(5106), - [anon_sym_or] = ACTIONS(5108), - [anon_sym_AMP_AMP] = ACTIONS(5106), - [anon_sym_PIPE_PIPE] = ACTIONS(5106), - [anon_sym_QMARK_QMARK] = ACTIONS(5106), - [anon_sym_from] = ACTIONS(5106), - [anon_sym_join] = ACTIONS(5106), - [anon_sym_on] = ACTIONS(5106), - [anon_sym_equals] = ACTIONS(5106), - [anon_sym_let] = ACTIONS(5106), - [anon_sym_orderby] = ACTIONS(5106), - [anon_sym_group] = ACTIONS(5106), - [anon_sym_by] = ACTIONS(5106), - [anon_sym_select] = ACTIONS(5106), - [anon_sym_as] = ACTIONS(5106), - [anon_sym_is] = ACTIONS(5106), - [anon_sym_DASH_GT] = ACTIONS(5106), - [anon_sym_with] = ACTIONS(5106), - [aux_sym_preproc_if_token3] = ACTIONS(5106), - [aux_sym_preproc_else_token1] = ACTIONS(5106), - [aux_sym_preproc_elif_token1] = ACTIONS(5106), + [anon_sym_SEMI] = ACTIONS(5142), + [anon_sym_LBRACK] = ACTIONS(5142), + [anon_sym_COLON] = ACTIONS(5142), + [anon_sym_COMMA] = ACTIONS(5142), + [anon_sym_RBRACK] = ACTIONS(5142), + [anon_sym_LPAREN] = ACTIONS(5142), + [anon_sym_RPAREN] = ACTIONS(5142), + [anon_sym_RBRACE] = ACTIONS(5142), + [anon_sym_LT] = ACTIONS(5144), + [anon_sym_GT] = ACTIONS(5144), + [anon_sym_in] = ACTIONS(5142), + [anon_sym_where] = ACTIONS(5142), + [anon_sym_QMARK] = ACTIONS(5144), + [anon_sym_BANG] = ACTIONS(5144), + [anon_sym_PLUS_PLUS] = ACTIONS(5142), + [anon_sym_DASH_DASH] = ACTIONS(5142), + [anon_sym_PLUS] = ACTIONS(5144), + [anon_sym_DASH] = ACTIONS(5144), + [anon_sym_STAR] = ACTIONS(5142), + [anon_sym_SLASH] = ACTIONS(5144), + [anon_sym_PERCENT] = ACTIONS(5142), + [anon_sym_CARET] = ACTIONS(5142), + [anon_sym_PIPE] = ACTIONS(5144), + [anon_sym_AMP] = ACTIONS(5144), + [anon_sym_LT_LT] = ACTIONS(5142), + [anon_sym_GT_GT] = ACTIONS(5144), + [anon_sym_GT_GT_GT] = ACTIONS(5142), + [anon_sym_EQ_EQ] = ACTIONS(5142), + [anon_sym_BANG_EQ] = ACTIONS(5142), + [anon_sym_GT_EQ] = ACTIONS(5142), + [anon_sym_LT_EQ] = ACTIONS(5142), + [anon_sym_DOT] = ACTIONS(5144), + [anon_sym_EQ_GT] = ACTIONS(5142), + [anon_sym_switch] = ACTIONS(5142), + [anon_sym_DOT_DOT] = ACTIONS(5142), + [anon_sym_and] = ACTIONS(5142), + [anon_sym_or] = ACTIONS(5144), + [anon_sym_AMP_AMP] = ACTIONS(5142), + [anon_sym_PIPE_PIPE] = ACTIONS(5142), + [anon_sym_QMARK_QMARK] = ACTIONS(5142), + [anon_sym_from] = ACTIONS(5142), + [anon_sym_join] = ACTIONS(5142), + [anon_sym_on] = ACTIONS(5142), + [anon_sym_equals] = ACTIONS(5142), + [anon_sym_let] = ACTIONS(5142), + [anon_sym_orderby] = ACTIONS(5142), + [anon_sym_group] = ACTIONS(5142), + [anon_sym_by] = ACTIONS(5142), + [anon_sym_select] = ACTIONS(5142), + [anon_sym_as] = ACTIONS(5142), + [anon_sym_is] = ACTIONS(5142), + [anon_sym_DASH_GT] = ACTIONS(5142), + [anon_sym_with] = ACTIONS(5142), + [aux_sym_preproc_if_token3] = ACTIONS(5142), + [aux_sym_preproc_else_token1] = ACTIONS(5142), + [aux_sym_preproc_elif_token1] = ACTIONS(5142), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -478214,62 +477751,62 @@ 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(5208), - [anon_sym_LBRACK] = ACTIONS(5208), - [anon_sym_COLON] = ACTIONS(5208), - [anon_sym_COMMA] = ACTIONS(5208), - [anon_sym_RBRACK] = ACTIONS(5208), - [anon_sym_LPAREN] = ACTIONS(5208), - [anon_sym_RPAREN] = ACTIONS(5208), - [anon_sym_RBRACE] = ACTIONS(5208), - [anon_sym_LT] = ACTIONS(5210), - [anon_sym_GT] = ACTIONS(5210), - [anon_sym_in] = ACTIONS(5208), - [anon_sym_where] = ACTIONS(5208), - [anon_sym_QMARK] = ACTIONS(5210), - [anon_sym_BANG] = ACTIONS(5210), - [anon_sym_PLUS_PLUS] = ACTIONS(5208), - [anon_sym_DASH_DASH] = ACTIONS(5208), - [anon_sym_PLUS] = ACTIONS(5210), - [anon_sym_DASH] = ACTIONS(5210), - [anon_sym_STAR] = ACTIONS(5208), - [anon_sym_SLASH] = ACTIONS(5210), - [anon_sym_PERCENT] = ACTIONS(5208), - [anon_sym_CARET] = ACTIONS(5208), - [anon_sym_PIPE] = ACTIONS(5210), - [anon_sym_AMP] = ACTIONS(5210), - [anon_sym_LT_LT] = ACTIONS(5208), - [anon_sym_GT_GT] = ACTIONS(5210), - [anon_sym_GT_GT_GT] = ACTIONS(5208), - [anon_sym_EQ_EQ] = ACTIONS(5208), - [anon_sym_BANG_EQ] = ACTIONS(5208), - [anon_sym_GT_EQ] = ACTIONS(5208), - [anon_sym_LT_EQ] = ACTIONS(5208), - [anon_sym_DOT] = ACTIONS(5210), - [anon_sym_EQ_GT] = ACTIONS(5208), - [anon_sym_switch] = ACTIONS(5208), - [anon_sym_DOT_DOT] = ACTIONS(5208), - [anon_sym_and] = ACTIONS(5208), - [anon_sym_or] = ACTIONS(5210), - [anon_sym_AMP_AMP] = ACTIONS(5208), - [anon_sym_PIPE_PIPE] = ACTIONS(5208), - [anon_sym_QMARK_QMARK] = ACTIONS(5208), - [anon_sym_from] = ACTIONS(5208), - [anon_sym_join] = ACTIONS(5208), - [anon_sym_on] = ACTIONS(5208), - [anon_sym_equals] = ACTIONS(5208), - [anon_sym_let] = ACTIONS(5208), - [anon_sym_orderby] = ACTIONS(5208), - [anon_sym_group] = ACTIONS(5208), - [anon_sym_by] = ACTIONS(5208), - [anon_sym_select] = ACTIONS(5208), - [anon_sym_as] = ACTIONS(5208), - [anon_sym_is] = ACTIONS(5208), - [anon_sym_DASH_GT] = ACTIONS(5208), - [anon_sym_with] = ACTIONS(5208), - [aux_sym_preproc_if_token3] = ACTIONS(5208), - [aux_sym_preproc_else_token1] = ACTIONS(5208), - [aux_sym_preproc_elif_token1] = ACTIONS(5208), + [anon_sym_SEMI] = ACTIONS(5044), + [anon_sym_LBRACK] = ACTIONS(5044), + [anon_sym_COLON] = ACTIONS(5044), + [anon_sym_COMMA] = ACTIONS(5044), + [anon_sym_RBRACK] = ACTIONS(5044), + [anon_sym_LPAREN] = ACTIONS(5044), + [anon_sym_RPAREN] = ACTIONS(5044), + [anon_sym_RBRACE] = ACTIONS(5044), + [anon_sym_LT] = ACTIONS(5046), + [anon_sym_GT] = ACTIONS(5046), + [anon_sym_in] = ACTIONS(5044), + [anon_sym_where] = ACTIONS(5044), + [anon_sym_QMARK] = ACTIONS(5046), + [anon_sym_BANG] = ACTIONS(5046), + [anon_sym_PLUS_PLUS] = ACTIONS(5044), + [anon_sym_DASH_DASH] = ACTIONS(5044), + [anon_sym_PLUS] = ACTIONS(5046), + [anon_sym_DASH] = ACTIONS(5046), + [anon_sym_STAR] = ACTIONS(5044), + [anon_sym_SLASH] = ACTIONS(5046), + [anon_sym_PERCENT] = ACTIONS(5044), + [anon_sym_CARET] = ACTIONS(5044), + [anon_sym_PIPE] = ACTIONS(5046), + [anon_sym_AMP] = ACTIONS(5046), + [anon_sym_LT_LT] = ACTIONS(5044), + [anon_sym_GT_GT] = ACTIONS(5046), + [anon_sym_GT_GT_GT] = ACTIONS(5044), + [anon_sym_EQ_EQ] = ACTIONS(5044), + [anon_sym_BANG_EQ] = ACTIONS(5044), + [anon_sym_GT_EQ] = ACTIONS(5044), + [anon_sym_LT_EQ] = ACTIONS(5044), + [anon_sym_DOT] = ACTIONS(5046), + [anon_sym_EQ_GT] = ACTIONS(5044), + [anon_sym_switch] = ACTIONS(5044), + [anon_sym_DOT_DOT] = ACTIONS(5044), + [anon_sym_and] = ACTIONS(5044), + [anon_sym_or] = ACTIONS(5046), + [anon_sym_AMP_AMP] = ACTIONS(5044), + [anon_sym_PIPE_PIPE] = ACTIONS(5044), + [anon_sym_QMARK_QMARK] = ACTIONS(5044), + [anon_sym_from] = ACTIONS(5044), + [anon_sym_join] = ACTIONS(5044), + [anon_sym_on] = ACTIONS(5044), + [anon_sym_equals] = ACTIONS(5044), + [anon_sym_let] = ACTIONS(5044), + [anon_sym_orderby] = ACTIONS(5044), + [anon_sym_group] = ACTIONS(5044), + [anon_sym_by] = ACTIONS(5044), + [anon_sym_select] = ACTIONS(5044), + [anon_sym_as] = ACTIONS(5044), + [anon_sym_is] = ACTIONS(5044), + [anon_sym_DASH_GT] = ACTIONS(5044), + [anon_sym_with] = ACTIONS(5044), + [aux_sym_preproc_if_token3] = ACTIONS(5044), + [aux_sym_preproc_else_token1] = ACTIONS(5044), + [aux_sym_preproc_elif_token1] = ACTIONS(5044), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -478282,6 +477819,29 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3104] = { + [sym_attribute_list] = STATE(5583), + [sym__attribute_list] = STATE(5608), + [sym_parameter_list] = STATE(7531), + [sym__name] = STATE(4369), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(4068), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(4073), + [sym_type] = STATE(5906), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym__lambda_parameters] = STATE(7609), + [sym_identifier] = STATE(5764), + [sym__reserved_identifier] = STATE(3654), + [sym_preproc_if_in_attribute_list] = STATE(5583), [sym_preproc_region] = STATE(3104), [sym_preproc_endregion] = STATE(3104), [sym_preproc_line] = STATE(3104), @@ -478291,62 +477851,39 @@ 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(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_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_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), + [aux_sym__class_declaration_initializer_repeat1] = STATE(4409), + [aux_sym__lambda_expression_init_repeat1] = STATE(3435), + [sym__identifier_token] = ACTIONS(2965), + [anon_sym_alias] = ACTIONS(2969), + [anon_sym_global] = ACTIONS(2969), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(4675), + [anon_sym_LPAREN] = ACTIONS(3786), + [anon_sym_ref] = ACTIONS(3436), + [anon_sym_delegate] = ACTIONS(3438), + [anon_sym_async] = ACTIONS(1045), + [anon_sym_file] = ACTIONS(2969), + [anon_sym_where] = ACTIONS(2969), + [anon_sym_notnull] = ACTIONS(2969), + [anon_sym_unmanaged] = ACTIONS(2969), + [anon_sym_scoped] = ACTIONS(2993), + [anon_sym_var] = ACTIONS(2995), + [sym_predefined_type] = ACTIONS(2997), + [anon_sym_yield] = ACTIONS(2969), + [anon_sym_when] = ACTIONS(2969), + [anon_sym_from] = ACTIONS(2969), + [anon_sym_into] = ACTIONS(2969), + [anon_sym_join] = ACTIONS(2969), + [anon_sym_on] = ACTIONS(2969), + [anon_sym_equals] = ACTIONS(2969), + [anon_sym_let] = ACTIONS(2969), + [anon_sym_orderby] = ACTIONS(2969), + [anon_sym_ascending] = ACTIONS(2969), + [anon_sym_descending] = ACTIONS(2969), + [anon_sym_group] = ACTIONS(2969), + [anon_sym_by] = ACTIONS(2969), + [anon_sym_select] = ACTIONS(2969), + [aux_sym_preproc_if_token1] = ACTIONS(4683), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -478368,62 +477905,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(5001), - [anon_sym_LBRACK] = ACTIONS(5001), - [anon_sym_COLON] = ACTIONS(5001), - [anon_sym_COMMA] = ACTIONS(5001), - [anon_sym_RBRACK] = ACTIONS(5001), - [anon_sym_LPAREN] = ACTIONS(5001), - [anon_sym_RPAREN] = ACTIONS(5001), - [anon_sym_RBRACE] = ACTIONS(5001), - [anon_sym_LT] = ACTIONS(5003), - [anon_sym_GT] = ACTIONS(5003), - [anon_sym_in] = ACTIONS(5001), - [anon_sym_where] = ACTIONS(5001), - [anon_sym_QMARK] = ACTIONS(5003), - [anon_sym_BANG] = ACTIONS(5003), - [anon_sym_PLUS_PLUS] = ACTIONS(5001), - [anon_sym_DASH_DASH] = ACTIONS(5001), - [anon_sym_PLUS] = ACTIONS(5003), - [anon_sym_DASH] = ACTIONS(5003), - [anon_sym_STAR] = ACTIONS(5001), - [anon_sym_SLASH] = ACTIONS(5003), - [anon_sym_PERCENT] = ACTIONS(5001), - [anon_sym_CARET] = ACTIONS(5001), - [anon_sym_PIPE] = ACTIONS(5003), - [anon_sym_AMP] = ACTIONS(5003), - [anon_sym_LT_LT] = ACTIONS(5001), - [anon_sym_GT_GT] = ACTIONS(5003), - [anon_sym_GT_GT_GT] = ACTIONS(5001), - [anon_sym_EQ_EQ] = ACTIONS(5001), - [anon_sym_BANG_EQ] = ACTIONS(5001), - [anon_sym_GT_EQ] = ACTIONS(5001), - [anon_sym_LT_EQ] = ACTIONS(5001), - [anon_sym_DOT] = ACTIONS(5003), - [anon_sym_EQ_GT] = ACTIONS(5001), - [anon_sym_switch] = ACTIONS(5001), - [anon_sym_DOT_DOT] = ACTIONS(5001), - [anon_sym_and] = ACTIONS(5001), - [anon_sym_or] = ACTIONS(5003), - [anon_sym_AMP_AMP] = ACTIONS(5001), - [anon_sym_PIPE_PIPE] = ACTIONS(5001), - [anon_sym_QMARK_QMARK] = ACTIONS(5001), - [anon_sym_from] = ACTIONS(5001), - [anon_sym_join] = ACTIONS(5001), - [anon_sym_on] = ACTIONS(5001), - [anon_sym_equals] = ACTIONS(5001), - [anon_sym_let] = ACTIONS(5001), - [anon_sym_orderby] = ACTIONS(5001), - [anon_sym_group] = ACTIONS(5001), - [anon_sym_by] = ACTIONS(5001), - [anon_sym_select] = ACTIONS(5001), - [anon_sym_as] = ACTIONS(5001), - [anon_sym_is] = ACTIONS(5001), - [anon_sym_DASH_GT] = ACTIONS(5001), - [anon_sym_with] = ACTIONS(5001), - [aux_sym_preproc_if_token3] = ACTIONS(5001), - [aux_sym_preproc_else_token1] = ACTIONS(5001), - [aux_sym_preproc_elif_token1] = ACTIONS(5001), + [anon_sym_SEMI] = ACTIONS(5076), + [anon_sym_LBRACK] = ACTIONS(5076), + [anon_sym_COLON] = ACTIONS(5076), + [anon_sym_COMMA] = ACTIONS(5076), + [anon_sym_RBRACK] = ACTIONS(5076), + [anon_sym_LPAREN] = ACTIONS(5076), + [anon_sym_RPAREN] = ACTIONS(5076), + [anon_sym_RBRACE] = ACTIONS(5076), + [anon_sym_LT] = ACTIONS(5078), + [anon_sym_GT] = ACTIONS(5078), + [anon_sym_in] = ACTIONS(5076), + [anon_sym_where] = ACTIONS(5076), + [anon_sym_QMARK] = ACTIONS(5078), + [anon_sym_BANG] = ACTIONS(5078), + [anon_sym_PLUS_PLUS] = ACTIONS(5076), + [anon_sym_DASH_DASH] = ACTIONS(5076), + [anon_sym_PLUS] = ACTIONS(5078), + [anon_sym_DASH] = ACTIONS(5078), + [anon_sym_STAR] = ACTIONS(5076), + [anon_sym_SLASH] = ACTIONS(5078), + [anon_sym_PERCENT] = ACTIONS(5076), + [anon_sym_CARET] = ACTIONS(5076), + [anon_sym_PIPE] = ACTIONS(5078), + [anon_sym_AMP] = ACTIONS(5078), + [anon_sym_LT_LT] = ACTIONS(5076), + [anon_sym_GT_GT] = ACTIONS(5078), + [anon_sym_GT_GT_GT] = ACTIONS(5076), + [anon_sym_EQ_EQ] = ACTIONS(5076), + [anon_sym_BANG_EQ] = ACTIONS(5076), + [anon_sym_GT_EQ] = ACTIONS(5076), + [anon_sym_LT_EQ] = ACTIONS(5076), + [anon_sym_DOT] = ACTIONS(5078), + [anon_sym_EQ_GT] = ACTIONS(5076), + [anon_sym_switch] = ACTIONS(5076), + [anon_sym_DOT_DOT] = ACTIONS(5076), + [anon_sym_and] = ACTIONS(5076), + [anon_sym_or] = ACTIONS(5078), + [anon_sym_AMP_AMP] = ACTIONS(5076), + [anon_sym_PIPE_PIPE] = ACTIONS(5076), + [anon_sym_QMARK_QMARK] = ACTIONS(5076), + [anon_sym_from] = ACTIONS(5076), + [anon_sym_join] = ACTIONS(5076), + [anon_sym_on] = ACTIONS(5076), + [anon_sym_equals] = ACTIONS(5076), + [anon_sym_let] = ACTIONS(5076), + [anon_sym_orderby] = ACTIONS(5076), + [anon_sym_group] = ACTIONS(5076), + [anon_sym_by] = ACTIONS(5076), + [anon_sym_select] = ACTIONS(5076), + [anon_sym_as] = ACTIONS(5076), + [anon_sym_is] = ACTIONS(5076), + [anon_sym_DASH_GT] = ACTIONS(5076), + [anon_sym_with] = ACTIONS(5076), + [aux_sym_preproc_if_token3] = ACTIONS(5076), + [aux_sym_preproc_else_token1] = ACTIONS(5076), + [aux_sym_preproc_elif_token1] = ACTIONS(5076), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -478522,62 +478059,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(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(3978), + [anon_sym_LBRACK] = ACTIONS(3978), + [anon_sym_COMMA] = ACTIONS(3978), + [anon_sym_RBRACK] = ACTIONS(3978), + [anon_sym_LPAREN] = ACTIONS(3978), + [anon_sym_RPAREN] = ACTIONS(3978), + [anon_sym_LBRACE] = ACTIONS(3978), + [anon_sym_RBRACE] = ACTIONS(3978), + [anon_sym_LT] = ACTIONS(3976), + [anon_sym_GT] = ACTIONS(3976), + [anon_sym_in] = ACTIONS(3978), + [anon_sym_where] = ACTIONS(3978), + [anon_sym_QMARK] = ACTIONS(3976), + [anon_sym_BANG] = ACTIONS(3976), + [anon_sym_PLUS_PLUS] = ACTIONS(3978), + [anon_sym_DASH_DASH] = ACTIONS(3978), + [anon_sym_PLUS] = ACTIONS(3976), + [anon_sym_DASH] = ACTIONS(3976), + [anon_sym_STAR] = ACTIONS(3978), + [anon_sym_SLASH] = ACTIONS(3976), + [anon_sym_PERCENT] = ACTIONS(3978), + [anon_sym_CARET] = ACTIONS(3978), + [anon_sym_PIPE] = ACTIONS(3976), + [anon_sym_AMP] = ACTIONS(3976), + [anon_sym_LT_LT] = ACTIONS(3978), + [anon_sym_GT_GT] = ACTIONS(3976), + [anon_sym_GT_GT_GT] = ACTIONS(3978), + [anon_sym_EQ_EQ] = ACTIONS(3978), + [anon_sym_BANG_EQ] = ACTIONS(3978), + [anon_sym_GT_EQ] = ACTIONS(3978), + [anon_sym_LT_EQ] = ACTIONS(3978), + [anon_sym_DOT] = ACTIONS(5203), + [anon_sym_EQ_GT] = ACTIONS(3978), + [anon_sym_switch] = ACTIONS(3978), + [anon_sym_DOT_DOT] = ACTIONS(3978), + [anon_sym_and] = ACTIONS(3978), + [anon_sym_or] = ACTIONS(3976), + [anon_sym_AMP_AMP] = ACTIONS(3978), + [anon_sym_PIPE_PIPE] = ACTIONS(3978), + [anon_sym_QMARK_QMARK] = ACTIONS(3978), + [anon_sym_from] = ACTIONS(3978), + [anon_sym_join] = ACTIONS(3978), + [anon_sym_on] = ACTIONS(3978), + [anon_sym_equals] = ACTIONS(3978), + [anon_sym_let] = ACTIONS(3978), + [anon_sym_orderby] = ACTIONS(3978), + [anon_sym_group] = ACTIONS(3978), + [anon_sym_by] = ACTIONS(3978), + [anon_sym_select] = ACTIONS(3978), + [anon_sym_as] = ACTIONS(3978), + [anon_sym_is] = ACTIONS(3978), + [anon_sym_DASH_GT] = ACTIONS(3978), + [anon_sym_with] = ACTIONS(3978), + [aux_sym_preproc_if_token3] = ACTIONS(3978), + [aux_sym_preproc_else_token1] = ACTIONS(3978), + [aux_sym_preproc_elif_token1] = ACTIONS(3978), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -478599,62 +478136,61 @@ 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(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_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_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), + [sym__identifier_token] = ACTIONS(3466), + [anon_sym_extern] = ACTIONS(3466), + [anon_sym_alias] = ACTIONS(3466), + [anon_sym_global] = ACTIONS(3466), + [anon_sym_unsafe] = ACTIONS(3466), + [anon_sym_static] = ACTIONS(3466), + [anon_sym_LPAREN] = ACTIONS(5128), + [anon_sym_event] = ACTIONS(3466), + [anon_sym_class] = ACTIONS(3466), + [anon_sym_ref] = ACTIONS(3466), + [anon_sym_struct] = ACTIONS(3466), + [anon_sym_enum] = ACTIONS(3466), + [anon_sym_interface] = ACTIONS(3466), + [anon_sym_delegate] = ACTIONS(3466), + [anon_sym_record] = ACTIONS(3466), + [anon_sym_abstract] = ACTIONS(3466), + [anon_sym_async] = ACTIONS(3466), + [anon_sym_const] = ACTIONS(3466), + [anon_sym_file] = ACTIONS(3466), + [anon_sym_fixed] = ACTIONS(3466), + [anon_sym_internal] = ACTIONS(3466), + [anon_sym_new] = ACTIONS(3466), + [anon_sym_override] = ACTIONS(3466), + [anon_sym_partial] = ACTIONS(3466), + [anon_sym_private] = ACTIONS(3466), + [anon_sym_protected] = ACTIONS(3466), + [anon_sym_public] = ACTIONS(3466), + [anon_sym_readonly] = ACTIONS(3466), + [anon_sym_required] = ACTIONS(3466), + [anon_sym_sealed] = ACTIONS(3466), + [anon_sym_virtual] = ACTIONS(3466), + [anon_sym_volatile] = ACTIONS(3466), + [anon_sym_where] = ACTIONS(3466), + [anon_sym_notnull] = ACTIONS(3466), + [anon_sym_unmanaged] = ACTIONS(3466), + [anon_sym_TILDE] = ACTIONS(3751), + [anon_sym_implicit] = ACTIONS(3466), + [anon_sym_explicit] = ACTIONS(3466), + [anon_sym_scoped] = ACTIONS(3466), + [anon_sym_var] = ACTIONS(3466), + [sym_predefined_type] = ACTIONS(3466), + [anon_sym_yield] = ACTIONS(3466), + [anon_sym_when] = ACTIONS(3466), + [anon_sym_from] = ACTIONS(3466), + [anon_sym_into] = ACTIONS(3466), + [anon_sym_join] = ACTIONS(3466), + [anon_sym_on] = ACTIONS(3466), + [anon_sym_equals] = ACTIONS(3466), + [anon_sym_let] = ACTIONS(3466), + [anon_sym_orderby] = ACTIONS(3466), + [anon_sym_ascending] = ACTIONS(3466), + [anon_sym_descending] = ACTIONS(3466), + [anon_sym_group] = ACTIONS(3466), + [anon_sym_by] = ACTIONS(3466), + [anon_sym_select] = ACTIONS(3466), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -478676,62 +478212,61 @@ 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_EQ] = ACTIONS(5229), - [anon_sym_LBRACK] = ACTIONS(4860), - [anon_sym_LPAREN] = ACTIONS(4860), - [anon_sym_LT] = ACTIONS(4862), - [anon_sym_GT] = ACTIONS(4862), - [anon_sym_where] = ACTIONS(4860), - [anon_sym_QMARK] = ACTIONS(4862), - [anon_sym_BANG] = ACTIONS(4862), - [anon_sym_PLUS_PLUS] = ACTIONS(4860), - [anon_sym_DASH_DASH] = ACTIONS(4860), - [anon_sym_PLUS] = ACTIONS(4862), - [anon_sym_DASH] = ACTIONS(4862), - [anon_sym_STAR] = ACTIONS(4862), - [anon_sym_SLASH] = ACTIONS(4862), - [anon_sym_PERCENT] = ACTIONS(4862), - [anon_sym_CARET] = ACTIONS(4862), - [anon_sym_PIPE] = ACTIONS(4862), - [anon_sym_AMP] = ACTIONS(4862), - [anon_sym_LT_LT] = ACTIONS(4862), - [anon_sym_GT_GT] = ACTIONS(4862), - [anon_sym_GT_GT_GT] = ACTIONS(4862), - [anon_sym_EQ_EQ] = ACTIONS(4860), - [anon_sym_BANG_EQ] = ACTIONS(4860), - [anon_sym_GT_EQ] = ACTIONS(4860), - [anon_sym_LT_EQ] = ACTIONS(4860), - [anon_sym_DOT] = ACTIONS(4862), - [anon_sym_switch] = ACTIONS(4860), - [anon_sym_DOT_DOT] = ACTIONS(4860), - [anon_sym_and] = ACTIONS(4860), - [anon_sym_or] = ACTIONS(4862), - [anon_sym_PLUS_EQ] = ACTIONS(5231), - [anon_sym_DASH_EQ] = ACTIONS(5231), - [anon_sym_STAR_EQ] = ACTIONS(5231), - [anon_sym_SLASH_EQ] = ACTIONS(5231), - [anon_sym_PERCENT_EQ] = ACTIONS(5231), - [anon_sym_AMP_EQ] = ACTIONS(5231), - [anon_sym_CARET_EQ] = ACTIONS(5231), - [anon_sym_PIPE_EQ] = ACTIONS(5231), - [anon_sym_LT_LT_EQ] = ACTIONS(5231), - [anon_sym_GT_GT_EQ] = ACTIONS(5231), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(5231), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(5231), - [anon_sym_AMP_AMP] = ACTIONS(4860), - [anon_sym_PIPE_PIPE] = ACTIONS(4860), - [anon_sym_QMARK_QMARK] = ACTIONS(4862), - [anon_sym_from] = ACTIONS(4860), - [anon_sym_into] = ACTIONS(4860), - [anon_sym_join] = ACTIONS(4860), - [anon_sym_let] = ACTIONS(4860), - [anon_sym_orderby] = ACTIONS(4860), - [anon_sym_group] = ACTIONS(4860), - [anon_sym_select] = ACTIONS(4860), - [anon_sym_as] = ACTIONS(4860), - [anon_sym_is] = ACTIONS(4860), - [anon_sym_DASH_GT] = ACTIONS(4860), - [anon_sym_with] = ACTIONS(4860), + [anon_sym_SEMI] = ACTIONS(4811), + [anon_sym_EQ] = ACTIONS(5209), + [anon_sym_LBRACK] = ACTIONS(4811), + [anon_sym_COMMA] = ACTIONS(4811), + [anon_sym_RBRACK] = ACTIONS(4811), + [anon_sym_LPAREN] = ACTIONS(4811), + [anon_sym_RPAREN] = ACTIONS(4811), + [anon_sym_RBRACE] = ACTIONS(4811), + [anon_sym_LT] = ACTIONS(4813), + [anon_sym_GT] = ACTIONS(4813), + [anon_sym_QMARK] = ACTIONS(4813), + [anon_sym_BANG] = ACTIONS(4813), + [anon_sym_PLUS_PLUS] = ACTIONS(4811), + [anon_sym_DASH_DASH] = ACTIONS(4811), + [anon_sym_PLUS] = ACTIONS(4813), + [anon_sym_DASH] = ACTIONS(4813), + [anon_sym_STAR] = ACTIONS(4813), + [anon_sym_SLASH] = ACTIONS(4813), + [anon_sym_PERCENT] = ACTIONS(4813), + [anon_sym_CARET] = ACTIONS(4813), + [anon_sym_PIPE] = ACTIONS(4813), + [anon_sym_AMP] = ACTIONS(4813), + [anon_sym_LT_LT] = ACTIONS(4813), + [anon_sym_GT_GT] = ACTIONS(4813), + [anon_sym_GT_GT_GT] = ACTIONS(4813), + [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(4813), + [anon_sym_switch] = ACTIONS(4811), + [anon_sym_DOT_DOT] = ACTIONS(4811), + [anon_sym_PLUS_EQ] = ACTIONS(5211), + [anon_sym_DASH_EQ] = ACTIONS(5211), + [anon_sym_STAR_EQ] = ACTIONS(5211), + [anon_sym_SLASH_EQ] = ACTIONS(5211), + [anon_sym_PERCENT_EQ] = ACTIONS(5211), + [anon_sym_AMP_EQ] = ACTIONS(5211), + [anon_sym_CARET_EQ] = ACTIONS(5211), + [anon_sym_PIPE_EQ] = ACTIONS(5211), + [anon_sym_LT_LT_EQ] = ACTIONS(5211), + [anon_sym_GT_GT_EQ] = ACTIONS(5211), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(5211), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(5211), + [anon_sym_AMP_AMP] = ACTIONS(4811), + [anon_sym_PIPE_PIPE] = ACTIONS(4811), + [anon_sym_QMARK_QMARK] = ACTIONS(4813), + [anon_sym_into] = 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), @@ -478753,62 +478288,61 @@ 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(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_EQ] = ACTIONS(5213), + [anon_sym_LBRACK] = ACTIONS(4811), + [anon_sym_LPAREN] = ACTIONS(4811), + [anon_sym_LT] = ACTIONS(4813), + [anon_sym_GT] = ACTIONS(4813), + [anon_sym_where] = ACTIONS(4811), + [anon_sym_QMARK] = ACTIONS(4813), + [anon_sym_BANG] = ACTIONS(4813), + [anon_sym_PLUS_PLUS] = ACTIONS(4811), + [anon_sym_DASH_DASH] = ACTIONS(4811), + [anon_sym_PLUS] = ACTIONS(4813), + [anon_sym_DASH] = ACTIONS(4813), + [anon_sym_STAR] = ACTIONS(4813), + [anon_sym_SLASH] = ACTIONS(4813), + [anon_sym_PERCENT] = ACTIONS(4813), + [anon_sym_CARET] = ACTIONS(4813), + [anon_sym_PIPE] = ACTIONS(4813), + [anon_sym_AMP] = ACTIONS(4813), + [anon_sym_LT_LT] = ACTIONS(4813), + [anon_sym_GT_GT] = ACTIONS(4813), + [anon_sym_GT_GT_GT] = ACTIONS(4813), + [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(4813), + [anon_sym_switch] = ACTIONS(4811), + [anon_sym_DOT_DOT] = ACTIONS(4811), + [anon_sym_and] = ACTIONS(4811), + [anon_sym_or] = ACTIONS(4813), + [anon_sym_PLUS_EQ] = ACTIONS(5215), + [anon_sym_DASH_EQ] = ACTIONS(5215), + [anon_sym_STAR_EQ] = ACTIONS(5215), + [anon_sym_SLASH_EQ] = ACTIONS(5215), + [anon_sym_PERCENT_EQ] = ACTIONS(5215), + [anon_sym_AMP_EQ] = ACTIONS(5215), + [anon_sym_CARET_EQ] = ACTIONS(5215), + [anon_sym_PIPE_EQ] = ACTIONS(5215), + [anon_sym_LT_LT_EQ] = ACTIONS(5215), + [anon_sym_GT_GT_EQ] = ACTIONS(5215), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(5215), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(5215), + [anon_sym_AMP_AMP] = ACTIONS(4811), + [anon_sym_PIPE_PIPE] = ACTIONS(4811), + [anon_sym_QMARK_QMARK] = ACTIONS(4813), + [anon_sym_from] = ACTIONS(4811), + [anon_sym_join] = ACTIONS(4811), + [anon_sym_let] = ACTIONS(4811), + [anon_sym_orderby] = ACTIONS(4811), + [anon_sym_group] = 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_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -478830,62 +478364,61 @@ 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(5090), - [anon_sym_LBRACK] = ACTIONS(5090), - [anon_sym_COLON] = ACTIONS(5090), - [anon_sym_COMMA] = ACTIONS(5090), - [anon_sym_RBRACK] = ACTIONS(5090), - [anon_sym_LPAREN] = ACTIONS(5090), - [anon_sym_RPAREN] = ACTIONS(5090), - [anon_sym_RBRACE] = ACTIONS(5090), - [anon_sym_LT] = ACTIONS(5092), - [anon_sym_GT] = ACTIONS(5092), - [anon_sym_in] = ACTIONS(5090), - [anon_sym_where] = ACTIONS(5090), - [anon_sym_QMARK] = ACTIONS(5092), - [anon_sym_BANG] = ACTIONS(5092), - [anon_sym_PLUS_PLUS] = ACTIONS(5090), - [anon_sym_DASH_DASH] = ACTIONS(5090), - [anon_sym_PLUS] = ACTIONS(5092), - [anon_sym_DASH] = ACTIONS(5092), - [anon_sym_STAR] = ACTIONS(5090), - [anon_sym_SLASH] = ACTIONS(5092), - [anon_sym_PERCENT] = ACTIONS(5090), - [anon_sym_CARET] = ACTIONS(5090), - [anon_sym_PIPE] = ACTIONS(5092), - [anon_sym_AMP] = ACTIONS(5092), - [anon_sym_LT_LT] = ACTIONS(5090), - [anon_sym_GT_GT] = ACTIONS(5092), - [anon_sym_GT_GT_GT] = ACTIONS(5090), - [anon_sym_EQ_EQ] = ACTIONS(5090), - [anon_sym_BANG_EQ] = ACTIONS(5090), - [anon_sym_GT_EQ] = ACTIONS(5090), - [anon_sym_LT_EQ] = ACTIONS(5090), - [anon_sym_DOT] = ACTIONS(5092), - [anon_sym_EQ_GT] = ACTIONS(5090), - [anon_sym_switch] = ACTIONS(5090), - [anon_sym_DOT_DOT] = ACTIONS(5090), - [anon_sym_and] = ACTIONS(5090), - [anon_sym_or] = ACTIONS(5092), - [anon_sym_AMP_AMP] = ACTIONS(5090), - [anon_sym_PIPE_PIPE] = ACTIONS(5090), - [anon_sym_QMARK_QMARK] = ACTIONS(5090), - [anon_sym_from] = ACTIONS(5090), - [anon_sym_join] = ACTIONS(5090), - [anon_sym_on] = ACTIONS(5090), - [anon_sym_equals] = ACTIONS(5090), - [anon_sym_let] = ACTIONS(5090), - [anon_sym_orderby] = ACTIONS(5090), - [anon_sym_group] = ACTIONS(5090), - [anon_sym_by] = ACTIONS(5090), - [anon_sym_select] = ACTIONS(5090), - [anon_sym_as] = ACTIONS(5090), - [anon_sym_is] = ACTIONS(5090), - [anon_sym_DASH_GT] = ACTIONS(5090), - [anon_sym_with] = ACTIONS(5090), - [aux_sym_preproc_if_token3] = ACTIONS(5090), - [aux_sym_preproc_else_token1] = ACTIONS(5090), - [aux_sym_preproc_elif_token1] = ACTIONS(5090), + [sym__identifier_token] = ACTIONS(3466), + [anon_sym_extern] = ACTIONS(3466), + [anon_sym_alias] = ACTIONS(3466), + [anon_sym_global] = ACTIONS(3466), + [anon_sym_unsafe] = ACTIONS(3466), + [anon_sym_static] = ACTIONS(3466), + [anon_sym_LPAREN] = ACTIONS(5128), + [anon_sym_event] = ACTIONS(3466), + [anon_sym_class] = ACTIONS(3466), + [anon_sym_ref] = ACTIONS(3466), + [anon_sym_struct] = ACTIONS(3466), + [anon_sym_enum] = ACTIONS(3466), + [anon_sym_interface] = ACTIONS(3466), + [anon_sym_delegate] = ACTIONS(3466), + [anon_sym_record] = ACTIONS(3466), + [anon_sym_abstract] = ACTIONS(3466), + [anon_sym_async] = ACTIONS(3466), + [anon_sym_const] = ACTIONS(3466), + [anon_sym_file] = ACTIONS(3466), + [anon_sym_fixed] = ACTIONS(3466), + [anon_sym_internal] = ACTIONS(3466), + [anon_sym_new] = ACTIONS(3466), + [anon_sym_override] = ACTIONS(3466), + [anon_sym_partial] = ACTIONS(3466), + [anon_sym_private] = ACTIONS(3466), + [anon_sym_protected] = ACTIONS(3466), + [anon_sym_public] = ACTIONS(3466), + [anon_sym_readonly] = ACTIONS(3466), + [anon_sym_required] = ACTIONS(3466), + [anon_sym_sealed] = ACTIONS(3466), + [anon_sym_virtual] = ACTIONS(3466), + [anon_sym_volatile] = ACTIONS(3466), + [anon_sym_where] = ACTIONS(3466), + [anon_sym_notnull] = ACTIONS(3466), + [anon_sym_unmanaged] = ACTIONS(3466), + [anon_sym_TILDE] = ACTIONS(5217), + [anon_sym_implicit] = ACTIONS(3466), + [anon_sym_explicit] = ACTIONS(3466), + [anon_sym_scoped] = ACTIONS(3466), + [anon_sym_var] = ACTIONS(3466), + [sym_predefined_type] = ACTIONS(3466), + [anon_sym_yield] = ACTIONS(3466), + [anon_sym_when] = ACTIONS(3466), + [anon_sym_from] = ACTIONS(3466), + [anon_sym_into] = ACTIONS(3466), + [anon_sym_join] = ACTIONS(3466), + [anon_sym_on] = ACTIONS(3466), + [anon_sym_equals] = ACTIONS(3466), + [anon_sym_let] = ACTIONS(3466), + [anon_sym_orderby] = ACTIONS(3466), + [anon_sym_ascending] = ACTIONS(3466), + [anon_sym_descending] = ACTIONS(3466), + [anon_sym_group] = ACTIONS(3466), + [anon_sym_by] = ACTIONS(3466), + [anon_sym_select] = ACTIONS(3466), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -478907,62 +478440,61 @@ 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(5138), - [anon_sym_LBRACK] = ACTIONS(5138), - [anon_sym_COLON] = ACTIONS(5138), - [anon_sym_COMMA] = ACTIONS(5138), - [anon_sym_RBRACK] = ACTIONS(5138), - [anon_sym_LPAREN] = ACTIONS(5138), - [anon_sym_RPAREN] = ACTIONS(5138), - [anon_sym_RBRACE] = ACTIONS(5138), - [anon_sym_LT] = ACTIONS(5140), - [anon_sym_GT] = ACTIONS(5140), - [anon_sym_in] = ACTIONS(5138), - [anon_sym_where] = ACTIONS(5138), - [anon_sym_QMARK] = ACTIONS(5140), - [anon_sym_BANG] = ACTIONS(5140), - [anon_sym_PLUS_PLUS] = ACTIONS(5138), - [anon_sym_DASH_DASH] = ACTIONS(5138), - [anon_sym_PLUS] = ACTIONS(5140), - [anon_sym_DASH] = ACTIONS(5140), - [anon_sym_STAR] = ACTIONS(5138), - [anon_sym_SLASH] = ACTIONS(5140), - [anon_sym_PERCENT] = ACTIONS(5138), - [anon_sym_CARET] = ACTIONS(5138), - [anon_sym_PIPE] = ACTIONS(5140), - [anon_sym_AMP] = ACTIONS(5140), - [anon_sym_LT_LT] = ACTIONS(5138), - [anon_sym_GT_GT] = ACTIONS(5140), - [anon_sym_GT_GT_GT] = ACTIONS(5138), - [anon_sym_EQ_EQ] = ACTIONS(5138), - [anon_sym_BANG_EQ] = ACTIONS(5138), - [anon_sym_GT_EQ] = ACTIONS(5138), - [anon_sym_LT_EQ] = ACTIONS(5138), - [anon_sym_DOT] = ACTIONS(5140), - [anon_sym_EQ_GT] = ACTIONS(5138), - [anon_sym_switch] = ACTIONS(5138), - [anon_sym_DOT_DOT] = ACTIONS(5138), - [anon_sym_and] = ACTIONS(5138), - [anon_sym_or] = ACTIONS(5140), - [anon_sym_AMP_AMP] = ACTIONS(5138), - [anon_sym_PIPE_PIPE] = ACTIONS(5138), - [anon_sym_QMARK_QMARK] = ACTIONS(5138), - [anon_sym_from] = ACTIONS(5138), - [anon_sym_join] = ACTIONS(5138), - [anon_sym_on] = ACTIONS(5138), - [anon_sym_equals] = ACTIONS(5138), - [anon_sym_let] = ACTIONS(5138), - [anon_sym_orderby] = ACTIONS(5138), - [anon_sym_group] = ACTIONS(5138), - [anon_sym_by] = ACTIONS(5138), - [anon_sym_select] = ACTIONS(5138), - [anon_sym_as] = ACTIONS(5138), - [anon_sym_is] = ACTIONS(5138), - [anon_sym_DASH_GT] = ACTIONS(5138), - [anon_sym_with] = ACTIONS(5138), - [aux_sym_preproc_if_token3] = ACTIONS(5138), - [aux_sym_preproc_else_token1] = ACTIONS(5138), - [aux_sym_preproc_elif_token1] = ACTIONS(5138), + [anon_sym_EQ] = ACTIONS(3696), + [anon_sym_LBRACK] = ACTIONS(3711), + [anon_sym_COLON] = ACTIONS(3711), + [anon_sym_COMMA] = ACTIONS(4243), + [anon_sym_RBRACK] = ACTIONS(4243), + [anon_sym_LPAREN] = ACTIONS(3711), + [anon_sym_RPAREN] = ACTIONS(4243), + [anon_sym_RBRACE] = ACTIONS(4243), + [anon_sym_LT] = ACTIONS(3696), + [anon_sym_GT] = ACTIONS(3696), + [anon_sym_QMARK] = ACTIONS(3696), + [anon_sym_BANG] = ACTIONS(3696), + [anon_sym_PLUS_PLUS] = ACTIONS(3711), + [anon_sym_DASH_DASH] = ACTIONS(3711), + [anon_sym_PLUS] = ACTIONS(3696), + [anon_sym_DASH] = ACTIONS(3696), + [anon_sym_STAR] = ACTIONS(3696), + [anon_sym_SLASH] = ACTIONS(3696), + [anon_sym_PERCENT] = ACTIONS(3696), + [anon_sym_CARET] = ACTIONS(3696), + [anon_sym_PIPE] = ACTIONS(3696), + [anon_sym_AMP] = ACTIONS(3696), + [anon_sym_LT_LT] = ACTIONS(3696), + [anon_sym_GT_GT] = ACTIONS(3696), + [anon_sym_GT_GT_GT] = ACTIONS(3696), + [anon_sym_EQ_EQ] = ACTIONS(3711), + [anon_sym_BANG_EQ] = ACTIONS(3711), + [anon_sym_GT_EQ] = ACTIONS(3711), + [anon_sym_LT_EQ] = ACTIONS(3711), + [anon_sym_DOT] = ACTIONS(3696), + [anon_sym_EQ_GT] = ACTIONS(4241), + [anon_sym_switch] = ACTIONS(3711), + [anon_sym_when] = ACTIONS(4241), + [anon_sym_DOT_DOT] = ACTIONS(3711), + [anon_sym_and] = ACTIONS(4241), + [anon_sym_or] = ACTIONS(4241), + [anon_sym_PLUS_EQ] = ACTIONS(3711), + [anon_sym_DASH_EQ] = ACTIONS(3711), + [anon_sym_STAR_EQ] = ACTIONS(3711), + [anon_sym_SLASH_EQ] = ACTIONS(3711), + [anon_sym_PERCENT_EQ] = ACTIONS(3711), + [anon_sym_AMP_EQ] = ACTIONS(3711), + [anon_sym_CARET_EQ] = ACTIONS(3711), + [anon_sym_PIPE_EQ] = ACTIONS(3711), + [anon_sym_LT_LT_EQ] = ACTIONS(3711), + [anon_sym_GT_GT_EQ] = ACTIONS(3711), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3711), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3711), + [anon_sym_AMP_AMP] = ACTIONS(3711), + [anon_sym_PIPE_PIPE] = ACTIONS(3711), + [anon_sym_QMARK_QMARK] = ACTIONS(3696), + [anon_sym_as] = ACTIONS(3711), + [anon_sym_is] = ACTIONS(3711), + [anon_sym_DASH_GT] = ACTIONS(3711), + [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), @@ -478984,62 +478516,61 @@ 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(4965), - [anon_sym_LBRACK] = ACTIONS(4965), - [anon_sym_COLON] = ACTIONS(4965), - [anon_sym_COMMA] = ACTIONS(4965), - [anon_sym_RBRACK] = ACTIONS(4965), - [anon_sym_LPAREN] = ACTIONS(4965), - [anon_sym_RPAREN] = ACTIONS(4965), - [anon_sym_RBRACE] = ACTIONS(4965), - [anon_sym_LT] = ACTIONS(4967), - [anon_sym_GT] = ACTIONS(4967), - [anon_sym_in] = ACTIONS(4965), - [anon_sym_where] = ACTIONS(4965), - [anon_sym_QMARK] = ACTIONS(4967), - [anon_sym_BANG] = ACTIONS(4967), - [anon_sym_PLUS_PLUS] = ACTIONS(4965), - [anon_sym_DASH_DASH] = ACTIONS(4965), - [anon_sym_PLUS] = ACTIONS(4967), - [anon_sym_DASH] = ACTIONS(4967), - [anon_sym_STAR] = ACTIONS(4965), - [anon_sym_SLASH] = ACTIONS(4967), - [anon_sym_PERCENT] = ACTIONS(4965), - [anon_sym_CARET] = ACTIONS(4965), - [anon_sym_PIPE] = ACTIONS(4967), - [anon_sym_AMP] = ACTIONS(4967), - [anon_sym_LT_LT] = ACTIONS(4965), - [anon_sym_GT_GT] = ACTIONS(4967), - [anon_sym_GT_GT_GT] = ACTIONS(4965), - [anon_sym_EQ_EQ] = ACTIONS(4965), - [anon_sym_BANG_EQ] = ACTIONS(4965), - [anon_sym_GT_EQ] = ACTIONS(4965), - [anon_sym_LT_EQ] = ACTIONS(4965), - [anon_sym_DOT] = ACTIONS(4967), - [anon_sym_EQ_GT] = ACTIONS(4965), - [anon_sym_switch] = ACTIONS(4965), - [anon_sym_DOT_DOT] = ACTIONS(4965), - [anon_sym_and] = ACTIONS(4965), - [anon_sym_or] = ACTIONS(4967), - [anon_sym_AMP_AMP] = ACTIONS(4965), - [anon_sym_PIPE_PIPE] = ACTIONS(4965), - [anon_sym_QMARK_QMARK] = ACTIONS(4965), - [anon_sym_from] = ACTIONS(4965), - [anon_sym_join] = ACTIONS(4965), - [anon_sym_on] = ACTIONS(4965), - [anon_sym_equals] = ACTIONS(4965), - [anon_sym_let] = ACTIONS(4965), - [anon_sym_orderby] = ACTIONS(4965), - [anon_sym_group] = ACTIONS(4965), - [anon_sym_by] = ACTIONS(4965), - [anon_sym_select] = ACTIONS(4965), - [anon_sym_as] = ACTIONS(4965), - [anon_sym_is] = ACTIONS(4965), - [anon_sym_DASH_GT] = ACTIONS(4965), - [anon_sym_with] = ACTIONS(4965), - [aux_sym_preproc_if_token3] = ACTIONS(4965), - [aux_sym_preproc_else_token1] = ACTIONS(4965), - [aux_sym_preproc_elif_token1] = ACTIONS(4965), + [sym__identifier_token] = ACTIONS(3463), + [anon_sym_extern] = ACTIONS(3466), + [anon_sym_alias] = ACTIONS(3463), + [anon_sym_SEMI] = ACTIONS(3429), + [anon_sym_global] = ACTIONS(3463), + [anon_sym_unsafe] = ACTIONS(3466), + [anon_sym_EQ] = ACTIONS(3431), + [anon_sym_static] = ACTIONS(3466), + [anon_sym_LBRACK] = ACTIONS(3429), + [anon_sym_LPAREN] = ACTIONS(3468), + [anon_sym_ref] = ACTIONS(3466), + [anon_sym_delegate] = ACTIONS(3466), + [anon_sym_abstract] = ACTIONS(3466), + [anon_sym_async] = ACTIONS(3466), + [anon_sym_const] = ACTIONS(3466), + [anon_sym_file] = ACTIONS(3463), + [anon_sym_fixed] = ACTIONS(3466), + [anon_sym_internal] = ACTIONS(3466), + [anon_sym_new] = ACTIONS(3466), + [anon_sym_override] = ACTIONS(3466), + [anon_sym_partial] = ACTIONS(3466), + [anon_sym_private] = ACTIONS(3466), + [anon_sym_protected] = ACTIONS(3466), + [anon_sym_public] = ACTIONS(3466), + [anon_sym_readonly] = ACTIONS(3466), + [anon_sym_required] = ACTIONS(3466), + [anon_sym_sealed] = ACTIONS(3466), + [anon_sym_virtual] = ACTIONS(3466), + [anon_sym_volatile] = ACTIONS(3466), + [anon_sym_LT] = ACTIONS(3429), + [anon_sym_where] = ACTIONS(3463), + [anon_sym_QMARK] = ACTIONS(3429), + [anon_sym_notnull] = ACTIONS(3463), + [anon_sym_unmanaged] = ACTIONS(3463), + [anon_sym_STAR] = ACTIONS(3429), + [anon_sym_DOT] = ACTIONS(3429), + [anon_sym_scoped] = ACTIONS(3463), + [anon_sym_EQ_GT] = ACTIONS(3429), + [anon_sym_COLON_COLON] = ACTIONS(3429), + [anon_sym_var] = ACTIONS(3463), + [sym_predefined_type] = ACTIONS(3466), + [anon_sym_yield] = ACTIONS(3463), + [anon_sym_when] = ACTIONS(3463), + [anon_sym_from] = ACTIONS(3463), + [anon_sym_into] = ACTIONS(3463), + [anon_sym_join] = ACTIONS(3463), + [anon_sym_on] = ACTIONS(3463), + [anon_sym_equals] = ACTIONS(3463), + [anon_sym_let] = ACTIONS(3463), + [anon_sym_orderby] = ACTIONS(3463), + [anon_sym_ascending] = ACTIONS(3463), + [anon_sym_descending] = ACTIONS(3463), + [anon_sym_group] = ACTIONS(3463), + [anon_sym_by] = ACTIONS(3463), + [anon_sym_select] = ACTIONS(3463), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -479061,62 +478592,60 @@ 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(4253), - [anon_sym_LBRACK] = ACTIONS(4253), - [anon_sym_COLON] = ACTIONS(4253), - [anon_sym_COMMA] = ACTIONS(4253), - [anon_sym_RBRACK] = ACTIONS(4253), - [anon_sym_LPAREN] = ACTIONS(4253), - [anon_sym_RPAREN] = ACTIONS(4253), - [anon_sym_RBRACE] = ACTIONS(4253), - [anon_sym_LT] = ACTIONS(4255), - [anon_sym_GT] = ACTIONS(4255), - [anon_sym_in] = ACTIONS(4253), - [anon_sym_where] = ACTIONS(4253), - [anon_sym_QMARK] = ACTIONS(4255), - [anon_sym_BANG] = ACTIONS(4255), - [anon_sym_PLUS_PLUS] = ACTIONS(4253), - [anon_sym_DASH_DASH] = ACTIONS(4253), - [anon_sym_PLUS] = ACTIONS(4255), - [anon_sym_DASH] = ACTIONS(4255), - [anon_sym_STAR] = ACTIONS(4253), - [anon_sym_SLASH] = ACTIONS(4255), - [anon_sym_PERCENT] = ACTIONS(4253), - [anon_sym_CARET] = ACTIONS(4253), - [anon_sym_PIPE] = ACTIONS(4255), - [anon_sym_AMP] = ACTIONS(4255), - [anon_sym_LT_LT] = ACTIONS(4253), - [anon_sym_GT_GT] = ACTIONS(4255), - [anon_sym_GT_GT_GT] = ACTIONS(4253), - [anon_sym_EQ_EQ] = ACTIONS(4253), - [anon_sym_BANG_EQ] = ACTIONS(4253), - [anon_sym_GT_EQ] = ACTIONS(4253), - [anon_sym_LT_EQ] = ACTIONS(4253), - [anon_sym_DOT] = ACTIONS(4255), - [anon_sym_EQ_GT] = ACTIONS(4253), - [anon_sym_switch] = ACTIONS(4253), - [anon_sym_DOT_DOT] = ACTIONS(4253), - [anon_sym_and] = ACTIONS(4253), - [anon_sym_or] = ACTIONS(4255), - [anon_sym_AMP_AMP] = ACTIONS(4253), - [anon_sym_PIPE_PIPE] = ACTIONS(4253), - [anon_sym_QMARK_QMARK] = ACTIONS(4253), - [anon_sym_from] = ACTIONS(4253), - [anon_sym_join] = ACTIONS(4253), - [anon_sym_on] = ACTIONS(4253), - [anon_sym_equals] = ACTIONS(4253), - [anon_sym_let] = ACTIONS(4253), - [anon_sym_orderby] = ACTIONS(4253), - [anon_sym_group] = ACTIONS(4253), - [anon_sym_by] = ACTIONS(4253), - [anon_sym_select] = ACTIONS(4253), - [anon_sym_as] = ACTIONS(4253), - [anon_sym_is] = ACTIONS(4253), - [anon_sym_DASH_GT] = ACTIONS(4253), - [anon_sym_with] = ACTIONS(4253), - [aux_sym_preproc_if_token3] = ACTIONS(4253), - [aux_sym_preproc_else_token1] = ACTIONS(4253), - [aux_sym_preproc_elif_token1] = ACTIONS(4253), + [sym__identifier_token] = ACTIONS(5219), + [anon_sym_extern] = ACTIONS(5219), + [anon_sym_alias] = ACTIONS(5219), + [anon_sym_global] = ACTIONS(5219), + [anon_sym_unsafe] = ACTIONS(5219), + [anon_sym_static] = ACTIONS(5219), + [anon_sym_LPAREN] = ACTIONS(5221), + [anon_sym_event] = ACTIONS(5219), + [anon_sym_class] = ACTIONS(5219), + [anon_sym_ref] = ACTIONS(5219), + [anon_sym_struct] = ACTIONS(5219), + [anon_sym_enum] = ACTIONS(5219), + [anon_sym_interface] = ACTIONS(5219), + [anon_sym_delegate] = ACTIONS(5219), + [anon_sym_record] = ACTIONS(5219), + [anon_sym_abstract] = ACTIONS(5219), + [anon_sym_async] = ACTIONS(5219), + [anon_sym_const] = ACTIONS(5219), + [anon_sym_file] = ACTIONS(5219), + [anon_sym_fixed] = ACTIONS(5219), + [anon_sym_internal] = ACTIONS(5219), + [anon_sym_new] = ACTIONS(5219), + [anon_sym_override] = ACTIONS(5219), + [anon_sym_partial] = ACTIONS(5219), + [anon_sym_private] = ACTIONS(5219), + [anon_sym_protected] = ACTIONS(5219), + [anon_sym_public] = ACTIONS(5219), + [anon_sym_readonly] = ACTIONS(5219), + [anon_sym_required] = ACTIONS(5219), + [anon_sym_sealed] = ACTIONS(5219), + [anon_sym_virtual] = ACTIONS(5219), + [anon_sym_volatile] = ACTIONS(5219), + [anon_sym_where] = ACTIONS(5219), + [anon_sym_notnull] = ACTIONS(5219), + [anon_sym_unmanaged] = ACTIONS(5219), + [anon_sym_implicit] = ACTIONS(5219), + [anon_sym_explicit] = ACTIONS(5219), + [anon_sym_scoped] = ACTIONS(5219), + [anon_sym_var] = ACTIONS(5219), + [sym_predefined_type] = ACTIONS(5219), + [anon_sym_yield] = ACTIONS(5219), + [anon_sym_when] = ACTIONS(5219), + [anon_sym_from] = ACTIONS(5219), + [anon_sym_into] = ACTIONS(5219), + [anon_sym_join] = ACTIONS(5219), + [anon_sym_on] = ACTIONS(5219), + [anon_sym_equals] = ACTIONS(5219), + [anon_sym_let] = ACTIONS(5219), + [anon_sym_orderby] = ACTIONS(5219), + [anon_sym_ascending] = ACTIONS(5219), + [anon_sym_descending] = ACTIONS(5219), + [anon_sym_group] = ACTIONS(5219), + [anon_sym_by] = ACTIONS(5219), + [anon_sym_select] = ACTIONS(5219), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -479138,62 +478667,60 @@ 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(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_EQ] = ACTIONS(5223), + [anon_sym_LBRACK] = ACTIONS(4811), + [anon_sym_LPAREN] = ACTIONS(4811), + [anon_sym_LT] = ACTIONS(4813), + [anon_sym_GT] = ACTIONS(4813), + [anon_sym_where] = ACTIONS(4811), + [anon_sym_QMARK] = ACTIONS(4813), + [anon_sym_BANG] = ACTIONS(4813), + [anon_sym_PLUS_PLUS] = ACTIONS(4811), + [anon_sym_DASH_DASH] = ACTIONS(4811), + [anon_sym_PLUS] = ACTIONS(4813), + [anon_sym_DASH] = ACTIONS(4813), + [anon_sym_STAR] = ACTIONS(4813), + [anon_sym_SLASH] = ACTIONS(4813), + [anon_sym_PERCENT] = ACTIONS(4813), + [anon_sym_CARET] = ACTIONS(4813), + [anon_sym_PIPE] = ACTIONS(4813), + [anon_sym_AMP] = ACTIONS(4813), + [anon_sym_LT_LT] = ACTIONS(4813), + [anon_sym_GT_GT] = ACTIONS(4813), + [anon_sym_GT_GT_GT] = ACTIONS(4813), + [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(4813), + [anon_sym_switch] = ACTIONS(4811), + [anon_sym_DOT_DOT] = ACTIONS(4811), + [anon_sym_PLUS_EQ] = ACTIONS(5225), + [anon_sym_DASH_EQ] = ACTIONS(5225), + [anon_sym_STAR_EQ] = ACTIONS(5225), + [anon_sym_SLASH_EQ] = ACTIONS(5225), + [anon_sym_PERCENT_EQ] = ACTIONS(5225), + [anon_sym_AMP_EQ] = ACTIONS(5225), + [anon_sym_CARET_EQ] = ACTIONS(5225), + [anon_sym_PIPE_EQ] = ACTIONS(5225), + [anon_sym_LT_LT_EQ] = ACTIONS(5225), + [anon_sym_GT_GT_EQ] = ACTIONS(5225), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(5225), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(5225), + [anon_sym_AMP_AMP] = ACTIONS(4811), + [anon_sym_PIPE_PIPE] = ACTIONS(4811), + [anon_sym_QMARK_QMARK] = ACTIONS(4813), + [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_group] = 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_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -479206,6 +478733,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3116] = { + [sym_argument_list] = STATE(3134), + [sym_initializer_expression] = STATE(3258), [sym_preproc_region] = STATE(3116), [sym_preproc_endregion] = STATE(3116), [sym_preproc_line] = STATE(3116), @@ -479215,62 +478744,58 @@ 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(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(4751), + [anon_sym_LBRACK] = ACTIONS(4751), + [anon_sym_COLON] = ACTIONS(4751), + [anon_sym_COMMA] = ACTIONS(4751), + [anon_sym_RBRACK] = ACTIONS(4751), + [anon_sym_LPAREN] = ACTIONS(5227), + [anon_sym_RPAREN] = ACTIONS(4751), + [anon_sym_LBRACE] = ACTIONS(1155), + [anon_sym_RBRACE] = ACTIONS(4751), + [anon_sym_LT] = ACTIONS(4755), + [anon_sym_GT] = ACTIONS(4755), + [anon_sym_in] = ACTIONS(4755), + [anon_sym_QMARK] = ACTIONS(4755), + [anon_sym_BANG] = ACTIONS(4755), + [anon_sym_PLUS_PLUS] = ACTIONS(4751), + [anon_sym_DASH_DASH] = ACTIONS(4751), + [anon_sym_PLUS] = ACTIONS(4755), + [anon_sym_DASH] = ACTIONS(4755), + [anon_sym_STAR] = ACTIONS(4751), + [anon_sym_SLASH] = ACTIONS(4755), + [anon_sym_PERCENT] = ACTIONS(4751), + [anon_sym_CARET] = ACTIONS(4751), + [anon_sym_PIPE] = ACTIONS(4755), + [anon_sym_AMP] = ACTIONS(4755), + [anon_sym_LT_LT] = ACTIONS(4751), + [anon_sym_GT_GT] = ACTIONS(4755), + [anon_sym_GT_GT_GT] = ACTIONS(4751), + [anon_sym_EQ_EQ] = ACTIONS(4751), + [anon_sym_BANG_EQ] = ACTIONS(4751), + [anon_sym_GT_EQ] = ACTIONS(4751), + [anon_sym_LT_EQ] = ACTIONS(4751), + [anon_sym_DOT] = ACTIONS(4755), + [anon_sym_EQ_GT] = ACTIONS(4751), + [anon_sym_switch] = ACTIONS(4751), + [anon_sym_when] = ACTIONS(4751), + [anon_sym_DOT_DOT] = ACTIONS(4751), + [anon_sym_and] = ACTIONS(4751), + [anon_sym_or] = ACTIONS(4751), + [anon_sym_AMP_AMP] = ACTIONS(4751), + [anon_sym_PIPE_PIPE] = ACTIONS(4751), + [anon_sym_QMARK_QMARK] = ACTIONS(4751), + [anon_sym_into] = ACTIONS(4751), + [anon_sym_on] = ACTIONS(4751), + [anon_sym_equals] = ACTIONS(4751), + [anon_sym_by] = ACTIONS(4751), + [anon_sym_as] = ACTIONS(4751), + [anon_sym_is] = ACTIONS(4751), + [anon_sym_DASH_GT] = ACTIONS(4751), + [anon_sym_with] = ACTIONS(4751), + [aux_sym_preproc_if_token3] = ACTIONS(4751), + [aux_sym_preproc_else_token1] = ACTIONS(4751), + [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), @@ -479292,62 +478817,60 @@ 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(5110), - [anon_sym_LBRACK] = ACTIONS(5110), - [anon_sym_COLON] = ACTIONS(5110), - [anon_sym_COMMA] = ACTIONS(5110), - [anon_sym_RBRACK] = ACTIONS(5110), - [anon_sym_LPAREN] = ACTIONS(5110), - [anon_sym_RPAREN] = ACTIONS(5110), - [anon_sym_RBRACE] = ACTIONS(5110), - [anon_sym_LT] = ACTIONS(5112), - [anon_sym_GT] = ACTIONS(5112), - [anon_sym_in] = ACTIONS(5110), - [anon_sym_where] = ACTIONS(5110), - [anon_sym_QMARK] = ACTIONS(5112), - [anon_sym_BANG] = ACTIONS(5112), - [anon_sym_PLUS_PLUS] = ACTIONS(5110), - [anon_sym_DASH_DASH] = ACTIONS(5110), - [anon_sym_PLUS] = ACTIONS(5112), - [anon_sym_DASH] = ACTIONS(5112), - [anon_sym_STAR] = ACTIONS(5110), - [anon_sym_SLASH] = ACTIONS(5112), - [anon_sym_PERCENT] = ACTIONS(5110), - [anon_sym_CARET] = ACTIONS(5110), - [anon_sym_PIPE] = ACTIONS(5112), - [anon_sym_AMP] = ACTIONS(5112), - [anon_sym_LT_LT] = ACTIONS(5110), - [anon_sym_GT_GT] = ACTIONS(5112), - [anon_sym_GT_GT_GT] = ACTIONS(5110), - [anon_sym_EQ_EQ] = ACTIONS(5110), - [anon_sym_BANG_EQ] = ACTIONS(5110), - [anon_sym_GT_EQ] = ACTIONS(5110), - [anon_sym_LT_EQ] = ACTIONS(5110), - [anon_sym_DOT] = ACTIONS(5112), - [anon_sym_EQ_GT] = ACTIONS(5110), - [anon_sym_switch] = ACTIONS(5110), - [anon_sym_DOT_DOT] = ACTIONS(5110), - [anon_sym_and] = ACTIONS(5110), - [anon_sym_or] = ACTIONS(5112), - [anon_sym_AMP_AMP] = ACTIONS(5110), - [anon_sym_PIPE_PIPE] = ACTIONS(5110), - [anon_sym_QMARK_QMARK] = ACTIONS(5110), - [anon_sym_from] = ACTIONS(5110), - [anon_sym_join] = ACTIONS(5110), - [anon_sym_on] = ACTIONS(5110), - [anon_sym_equals] = ACTIONS(5110), - [anon_sym_let] = ACTIONS(5110), - [anon_sym_orderby] = ACTIONS(5110), - [anon_sym_group] = ACTIONS(5110), - [anon_sym_by] = ACTIONS(5110), - [anon_sym_select] = ACTIONS(5110), - [anon_sym_as] = ACTIONS(5110), - [anon_sym_is] = ACTIONS(5110), - [anon_sym_DASH_GT] = ACTIONS(5110), - [anon_sym_with] = ACTIONS(5110), - [aux_sym_preproc_if_token3] = ACTIONS(5110), - [aux_sym_preproc_else_token1] = ACTIONS(5110), - [aux_sym_preproc_elif_token1] = ACTIONS(5110), + [sym__identifier_token] = ACTIONS(3466), + [anon_sym_extern] = ACTIONS(3466), + [anon_sym_alias] = ACTIONS(3466), + [anon_sym_global] = ACTIONS(3466), + [anon_sym_unsafe] = ACTIONS(3466), + [anon_sym_static] = ACTIONS(3466), + [anon_sym_LPAREN] = ACTIONS(5128), + [anon_sym_event] = ACTIONS(3466), + [anon_sym_class] = ACTIONS(3466), + [anon_sym_ref] = ACTIONS(3466), + [anon_sym_struct] = ACTIONS(3466), + [anon_sym_enum] = ACTIONS(3466), + [anon_sym_interface] = ACTIONS(3466), + [anon_sym_delegate] = ACTIONS(3466), + [anon_sym_record] = ACTIONS(3466), + [anon_sym_abstract] = ACTIONS(3466), + [anon_sym_async] = ACTIONS(3466), + [anon_sym_const] = ACTIONS(3466), + [anon_sym_file] = ACTIONS(3466), + [anon_sym_fixed] = ACTIONS(3466), + [anon_sym_internal] = ACTIONS(3466), + [anon_sym_new] = ACTIONS(3466), + [anon_sym_override] = ACTIONS(3466), + [anon_sym_partial] = ACTIONS(3466), + [anon_sym_private] = ACTIONS(3466), + [anon_sym_protected] = ACTIONS(3466), + [anon_sym_public] = ACTIONS(3466), + [anon_sym_readonly] = ACTIONS(3466), + [anon_sym_required] = ACTIONS(3466), + [anon_sym_sealed] = ACTIONS(3466), + [anon_sym_virtual] = ACTIONS(3466), + [anon_sym_volatile] = ACTIONS(3466), + [anon_sym_where] = ACTIONS(3466), + [anon_sym_notnull] = ACTIONS(3466), + [anon_sym_unmanaged] = ACTIONS(3466), + [anon_sym_implicit] = ACTIONS(3466), + [anon_sym_explicit] = ACTIONS(3466), + [anon_sym_scoped] = ACTIONS(3466), + [anon_sym_var] = ACTIONS(3466), + [sym_predefined_type] = ACTIONS(3466), + [anon_sym_yield] = ACTIONS(3466), + [anon_sym_when] = ACTIONS(3466), + [anon_sym_from] = ACTIONS(3466), + [anon_sym_into] = ACTIONS(3466), + [anon_sym_join] = ACTIONS(3466), + [anon_sym_on] = ACTIONS(3466), + [anon_sym_equals] = ACTIONS(3466), + [anon_sym_let] = ACTIONS(3466), + [anon_sym_orderby] = ACTIONS(3466), + [anon_sym_ascending] = ACTIONS(3466), + [anon_sym_descending] = ACTIONS(3466), + [anon_sym_group] = ACTIONS(3466), + [anon_sym_by] = ACTIONS(3466), + [anon_sym_select] = ACTIONS(3466), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -479369,62 +478892,60 @@ 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_SEMI] = ACTIONS(5094), - [anon_sym_LBRACK] = ACTIONS(5094), - [anon_sym_COLON] = ACTIONS(5094), - [anon_sym_COMMA] = ACTIONS(5094), - [anon_sym_RBRACK] = ACTIONS(5094), - [anon_sym_LPAREN] = ACTIONS(5094), - [anon_sym_RPAREN] = ACTIONS(5094), - [anon_sym_RBRACE] = ACTIONS(5094), - [anon_sym_LT] = ACTIONS(5096), - [anon_sym_GT] = ACTIONS(5096), - [anon_sym_in] = ACTIONS(5094), - [anon_sym_where] = ACTIONS(5094), - [anon_sym_QMARK] = ACTIONS(5096), - [anon_sym_BANG] = ACTIONS(5096), - [anon_sym_PLUS_PLUS] = ACTIONS(5094), - [anon_sym_DASH_DASH] = ACTIONS(5094), - [anon_sym_PLUS] = ACTIONS(5096), - [anon_sym_DASH] = ACTIONS(5096), - [anon_sym_STAR] = ACTIONS(5094), - [anon_sym_SLASH] = ACTIONS(5096), - [anon_sym_PERCENT] = ACTIONS(5094), - [anon_sym_CARET] = ACTIONS(5094), - [anon_sym_PIPE] = ACTIONS(5096), - [anon_sym_AMP] = ACTIONS(5096), - [anon_sym_LT_LT] = ACTIONS(5094), - [anon_sym_GT_GT] = ACTIONS(5096), - [anon_sym_GT_GT_GT] = ACTIONS(5094), - [anon_sym_EQ_EQ] = ACTIONS(5094), - [anon_sym_BANG_EQ] = ACTIONS(5094), - [anon_sym_GT_EQ] = ACTIONS(5094), - [anon_sym_LT_EQ] = ACTIONS(5094), - [anon_sym_DOT] = ACTIONS(5096), - [anon_sym_EQ_GT] = ACTIONS(5094), - [anon_sym_switch] = ACTIONS(5094), - [anon_sym_DOT_DOT] = ACTIONS(5094), - [anon_sym_and] = ACTIONS(5094), - [anon_sym_or] = ACTIONS(5096), - [anon_sym_AMP_AMP] = ACTIONS(5094), - [anon_sym_PIPE_PIPE] = ACTIONS(5094), - [anon_sym_QMARK_QMARK] = ACTIONS(5094), - [anon_sym_from] = ACTIONS(5094), - [anon_sym_join] = ACTIONS(5094), - [anon_sym_on] = ACTIONS(5094), - [anon_sym_equals] = ACTIONS(5094), - [anon_sym_let] = ACTIONS(5094), - [anon_sym_orderby] = ACTIONS(5094), - [anon_sym_group] = ACTIONS(5094), - [anon_sym_by] = ACTIONS(5094), - [anon_sym_select] = ACTIONS(5094), - [anon_sym_as] = ACTIONS(5094), - [anon_sym_is] = ACTIONS(5094), - [anon_sym_DASH_GT] = ACTIONS(5094), - [anon_sym_with] = ACTIONS(5094), - [aux_sym_preproc_if_token3] = ACTIONS(5094), - [aux_sym_preproc_else_token1] = ACTIONS(5094), - [aux_sym_preproc_elif_token1] = ACTIONS(5094), + [anon_sym_EQ] = ACTIONS(4118), + [anon_sym_LBRACK] = ACTIONS(4152), + [anon_sym_COLON] = ACTIONS(4152), + [anon_sym_COMMA] = ACTIONS(4152), + [anon_sym_LPAREN] = ACTIONS(4152), + [anon_sym_RPAREN] = ACTIONS(4152), + [anon_sym_RBRACE] = ACTIONS(4152), + [anon_sym_LT] = ACTIONS(4154), + [anon_sym_GT] = ACTIONS(4154), + [anon_sym_QMARK] = ACTIONS(4154), + [anon_sym_BANG] = ACTIONS(4154), + [anon_sym_PLUS_PLUS] = ACTIONS(4152), + [anon_sym_DASH_DASH] = ACTIONS(4152), + [anon_sym_PLUS] = ACTIONS(4154), + [anon_sym_DASH] = ACTIONS(4154), + [anon_sym_STAR] = ACTIONS(4154), + [anon_sym_SLASH] = ACTIONS(4154), + [anon_sym_PERCENT] = ACTIONS(4154), + [anon_sym_CARET] = ACTIONS(4154), + [anon_sym_PIPE] = ACTIONS(4154), + [anon_sym_AMP] = ACTIONS(4154), + [anon_sym_LT_LT] = ACTIONS(4154), + [anon_sym_GT_GT] = ACTIONS(4154), + [anon_sym_GT_GT_GT] = ACTIONS(4154), + [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(4154), + [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_PLUS_EQ] = ACTIONS(4116), + [anon_sym_DASH_EQ] = ACTIONS(4116), + [anon_sym_STAR_EQ] = ACTIONS(4116), + [anon_sym_SLASH_EQ] = ACTIONS(4116), + [anon_sym_PERCENT_EQ] = ACTIONS(4116), + [anon_sym_AMP_EQ] = ACTIONS(4116), + [anon_sym_CARET_EQ] = ACTIONS(4116), + [anon_sym_PIPE_EQ] = ACTIONS(4116), + [anon_sym_LT_LT_EQ] = ACTIONS(4116), + [anon_sym_GT_GT_EQ] = ACTIONS(4116), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(4116), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(4116), + [anon_sym_AMP_AMP] = ACTIONS(4152), + [anon_sym_PIPE_PIPE] = ACTIONS(4152), + [anon_sym_QMARK_QMARK] = ACTIONS(4154), + [anon_sym_into] = 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_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -479437,6 +478958,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3119] = { + [sym_type_argument_list] = STATE(3185), [sym_preproc_region] = STATE(3119), [sym_preproc_endregion] = STATE(3119), [sym_preproc_line] = STATE(3119), @@ -479446,61 +478968,59 @@ 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), - [sym__identifier_token] = ACTIONS(3479), - [anon_sym_extern] = ACTIONS(3482), - [anon_sym_alias] = ACTIONS(3479), - [anon_sym_SEMI] = ACTIONS(3445), - [anon_sym_global] = ACTIONS(3479), - [anon_sym_unsafe] = ACTIONS(3482), - [anon_sym_EQ] = ACTIONS(3447), - [anon_sym_static] = ACTIONS(3482), - [anon_sym_LBRACK] = ACTIONS(3445), - [anon_sym_LPAREN] = ACTIONS(3484), - [anon_sym_ref] = ACTIONS(3482), - [anon_sym_delegate] = ACTIONS(3482), - [anon_sym_abstract] = ACTIONS(3482), - [anon_sym_async] = ACTIONS(3482), - [anon_sym_const] = ACTIONS(3482), - [anon_sym_file] = ACTIONS(3479), - [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_LT] = ACTIONS(3445), - [anon_sym_where] = ACTIONS(3479), - [anon_sym_QMARK] = ACTIONS(3445), - [anon_sym_notnull] = ACTIONS(3479), - [anon_sym_unmanaged] = ACTIONS(3479), - [anon_sym_STAR] = ACTIONS(3445), - [anon_sym_DOT] = ACTIONS(3445), - [anon_sym_scoped] = ACTIONS(3479), - [anon_sym_EQ_GT] = ACTIONS(3445), - [anon_sym_COLON_COLON] = ACTIONS(3445), - [anon_sym_var] = ACTIONS(3479), - [sym_predefined_type] = ACTIONS(3482), - [anon_sym_yield] = ACTIONS(3479), - [anon_sym_when] = ACTIONS(3479), - [anon_sym_from] = ACTIONS(3479), - [anon_sym_into] = ACTIONS(3479), - [anon_sym_join] = ACTIONS(3479), - [anon_sym_on] = ACTIONS(3479), - [anon_sym_equals] = ACTIONS(3479), - [anon_sym_let] = ACTIONS(3479), - [anon_sym_orderby] = ACTIONS(3479), - [anon_sym_ascending] = ACTIONS(3479), - [anon_sym_descending] = ACTIONS(3479), - [anon_sym_group] = ACTIONS(3479), - [anon_sym_by] = ACTIONS(3479), - [anon_sym_select] = ACTIONS(3479), + [anon_sym_SEMI] = ACTIONS(3640), + [anon_sym_LBRACK] = ACTIONS(3640), + [anon_sym_COLON] = ACTIONS(3638), + [anon_sym_COMMA] = ACTIONS(3640), + [anon_sym_RBRACK] = ACTIONS(3640), + [anon_sym_LPAREN] = ACTIONS(3640), + [anon_sym_RPAREN] = ACTIONS(3640), + [anon_sym_LBRACE] = ACTIONS(3640), + [anon_sym_RBRACE] = ACTIONS(3640), + [anon_sym_LT] = ACTIONS(5229), + [anon_sym_GT] = ACTIONS(3638), + [anon_sym_in] = ACTIONS(3638), + [anon_sym_QMARK] = ACTIONS(3638), + [anon_sym_BANG] = ACTIONS(3638), + [anon_sym_PLUS_PLUS] = ACTIONS(3640), + [anon_sym_DASH_DASH] = ACTIONS(3640), + [anon_sym_PLUS] = ACTIONS(3638), + [anon_sym_DASH] = ACTIONS(3638), + [anon_sym_STAR] = ACTIONS(3640), + [anon_sym_SLASH] = ACTIONS(3638), + [anon_sym_PERCENT] = ACTIONS(3640), + [anon_sym_CARET] = ACTIONS(3640), + [anon_sym_PIPE] = ACTIONS(3638), + [anon_sym_AMP] = ACTIONS(3638), + [anon_sym_LT_LT] = ACTIONS(3640), + [anon_sym_GT_GT] = ACTIONS(3638), + [anon_sym_GT_GT_GT] = ACTIONS(3640), + [anon_sym_EQ_EQ] = ACTIONS(3640), + [anon_sym_BANG_EQ] = ACTIONS(3640), + [anon_sym_GT_EQ] = ACTIONS(3640), + [anon_sym_LT_EQ] = ACTIONS(3640), + [anon_sym_DOT] = ACTIONS(3638), + [anon_sym_EQ_GT] = ACTIONS(3640), + [anon_sym_COLON_COLON] = ACTIONS(5232), + [anon_sym_switch] = ACTIONS(3640), + [anon_sym_when] = ACTIONS(3640), + [anon_sym_DOT_DOT] = ACTIONS(3640), + [anon_sym_and] = ACTIONS(3640), + [anon_sym_or] = ACTIONS(3640), + [anon_sym_AMP_AMP] = ACTIONS(3640), + [anon_sym_PIPE_PIPE] = ACTIONS(3640), + [anon_sym_QMARK_QMARK] = ACTIONS(3640), + [anon_sym_into] = ACTIONS(3640), + [anon_sym_on] = ACTIONS(3640), + [anon_sym_equals] = ACTIONS(3640), + [anon_sym_by] = ACTIONS(3640), + [anon_sym_as] = ACTIONS(3640), + [anon_sym_is] = ACTIONS(3640), + [anon_sym_DASH_GT] = ACTIONS(3640), + [anon_sym_with] = ACTIONS(3640), + [aux_sym_preproc_if_token3] = ACTIONS(3640), + [aux_sym_preproc_else_token1] = ACTIONS(3640), + [aux_sym_preproc_elif_token1] = ACTIONS(3640), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -479522,61 +479042,59 @@ 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(4860), - [anon_sym_EQ] = ACTIONS(5233), - [anon_sym_LBRACK] = ACTIONS(4860), - [anon_sym_COMMA] = ACTIONS(4860), - [anon_sym_RBRACK] = ACTIONS(4860), - [anon_sym_LPAREN] = ACTIONS(4860), - [anon_sym_RPAREN] = ACTIONS(4860), - [anon_sym_RBRACE] = ACTIONS(4860), - [anon_sym_LT] = ACTIONS(4862), - [anon_sym_GT] = ACTIONS(4862), - [anon_sym_QMARK] = ACTIONS(4862), - [anon_sym_BANG] = ACTIONS(4862), - [anon_sym_PLUS_PLUS] = ACTIONS(4860), - [anon_sym_DASH_DASH] = ACTIONS(4860), - [anon_sym_PLUS] = ACTIONS(4862), - [anon_sym_DASH] = ACTIONS(4862), - [anon_sym_STAR] = ACTIONS(4862), - [anon_sym_SLASH] = ACTIONS(4862), - [anon_sym_PERCENT] = ACTIONS(4862), - [anon_sym_CARET] = ACTIONS(4862), - [anon_sym_PIPE] = ACTIONS(4862), - [anon_sym_AMP] = ACTIONS(4862), - [anon_sym_LT_LT] = ACTIONS(4862), - [anon_sym_GT_GT] = ACTIONS(4862), - [anon_sym_GT_GT_GT] = ACTIONS(4862), - [anon_sym_EQ_EQ] = ACTIONS(4860), - [anon_sym_BANG_EQ] = ACTIONS(4860), - [anon_sym_GT_EQ] = ACTIONS(4860), - [anon_sym_LT_EQ] = ACTIONS(4860), - [anon_sym_DOT] = ACTIONS(4862), - [anon_sym_switch] = ACTIONS(4860), - [anon_sym_DOT_DOT] = ACTIONS(4860), - [anon_sym_PLUS_EQ] = ACTIONS(5235), - [anon_sym_DASH_EQ] = ACTIONS(5235), - [anon_sym_STAR_EQ] = ACTIONS(5235), - [anon_sym_SLASH_EQ] = ACTIONS(5235), - [anon_sym_PERCENT_EQ] = ACTIONS(5235), - [anon_sym_AMP_EQ] = ACTIONS(5235), - [anon_sym_CARET_EQ] = ACTIONS(5235), - [anon_sym_PIPE_EQ] = ACTIONS(5235), - [anon_sym_LT_LT_EQ] = ACTIONS(5235), - [anon_sym_GT_GT_EQ] = ACTIONS(5235), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(5235), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(5235), - [anon_sym_AMP_AMP] = ACTIONS(4860), - [anon_sym_PIPE_PIPE] = ACTIONS(4860), - [anon_sym_QMARK_QMARK] = ACTIONS(4862), - [anon_sym_into] = ACTIONS(4860), - [anon_sym_as] = ACTIONS(4860), - [anon_sym_is] = ACTIONS(4860), - [anon_sym_DASH_GT] = ACTIONS(4860), - [anon_sym_with] = ACTIONS(4860), - [aux_sym_preproc_if_token3] = ACTIONS(4860), - [aux_sym_preproc_else_token1] = ACTIONS(4860), - [aux_sym_preproc_elif_token1] = ACTIONS(4860), + [anon_sym_SEMI] = ACTIONS(3636), + [anon_sym_LBRACK] = ACTIONS(3636), + [anon_sym_COLON] = ACTIONS(3634), + [anon_sym_COMMA] = ACTIONS(3636), + [anon_sym_RBRACK] = ACTIONS(3636), + [anon_sym_LPAREN] = ACTIONS(3636), + [anon_sym_RPAREN] = ACTIONS(3636), + [anon_sym_LBRACE] = ACTIONS(3636), + [anon_sym_RBRACE] = ACTIONS(3636), + [anon_sym_LT] = ACTIONS(3634), + [anon_sym_GT] = ACTIONS(3634), + [anon_sym_in] = ACTIONS(3634), + [anon_sym_QMARK] = ACTIONS(3634), + [anon_sym_BANG] = ACTIONS(3634), + [anon_sym_PLUS_PLUS] = ACTIONS(3636), + [anon_sym_DASH_DASH] = ACTIONS(3636), + [anon_sym_PLUS] = ACTIONS(3634), + [anon_sym_DASH] = ACTIONS(3634), + [anon_sym_STAR] = ACTIONS(3636), + [anon_sym_SLASH] = ACTIONS(3634), + [anon_sym_PERCENT] = ACTIONS(3636), + [anon_sym_CARET] = ACTIONS(3636), + [anon_sym_PIPE] = ACTIONS(3634), + [anon_sym_AMP] = ACTIONS(3634), + [anon_sym_LT_LT] = ACTIONS(3636), + [anon_sym_GT_GT] = ACTIONS(3634), + [anon_sym_GT_GT_GT] = ACTIONS(3636), + [anon_sym_EQ_EQ] = ACTIONS(3636), + [anon_sym_BANG_EQ] = ACTIONS(3636), + [anon_sym_GT_EQ] = ACTIONS(3636), + [anon_sym_LT_EQ] = ACTIONS(3636), + [anon_sym_DOT] = ACTIONS(3634), + [anon_sym_EQ_GT] = ACTIONS(3636), + [anon_sym_COLON_COLON] = ACTIONS(3636), + [anon_sym_switch] = ACTIONS(3636), + [anon_sym_when] = ACTIONS(3636), + [anon_sym_DOT_DOT] = ACTIONS(3636), + [anon_sym_and] = ACTIONS(3636), + [anon_sym_or] = ACTIONS(3636), + [anon_sym_AMP_AMP] = ACTIONS(3636), + [anon_sym_PIPE_PIPE] = ACTIONS(3636), + [anon_sym_QMARK_QMARK] = ACTIONS(3636), + [anon_sym_into] = ACTIONS(3636), + [anon_sym_on] = ACTIONS(3636), + [anon_sym_equals] = ACTIONS(3636), + [anon_sym_by] = ACTIONS(3636), + [anon_sym_as] = ACTIONS(3636), + [anon_sym_is] = ACTIONS(3636), + [anon_sym_DASH_GT] = ACTIONS(3636), + [anon_sym_with] = ACTIONS(3636), + [aux_sym_preproc_if_token3] = ACTIONS(3636), + [aux_sym_preproc_else_token1] = ACTIONS(3636), + [aux_sym_preproc_elif_token1] = ACTIONS(3636), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -479589,6 +479107,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3121] = { + [sym_block] = STATE(2032), [sym_preproc_region] = STATE(3121), [sym_preproc_endregion] = STATE(3121), [sym_preproc_line] = STATE(3121), @@ -479598,61 +479117,58 @@ 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_EQ] = ACTIONS(3704), - [anon_sym_LBRACK] = ACTIONS(3719), - [anon_sym_COLON] = ACTIONS(3719), - [anon_sym_COMMA] = ACTIONS(4273), - [anon_sym_RBRACK] = ACTIONS(4273), - [anon_sym_LPAREN] = ACTIONS(3719), - [anon_sym_RPAREN] = ACTIONS(4273), - [anon_sym_RBRACE] = ACTIONS(4273), - [anon_sym_LT] = ACTIONS(3704), - [anon_sym_GT] = ACTIONS(3704), - [anon_sym_QMARK] = ACTIONS(3704), - [anon_sym_BANG] = ACTIONS(3704), - [anon_sym_PLUS_PLUS] = ACTIONS(3719), - [anon_sym_DASH_DASH] = ACTIONS(3719), - [anon_sym_PLUS] = ACTIONS(3704), - [anon_sym_DASH] = ACTIONS(3704), - [anon_sym_STAR] = ACTIONS(3704), - [anon_sym_SLASH] = ACTIONS(3704), - [anon_sym_PERCENT] = ACTIONS(3704), - [anon_sym_CARET] = ACTIONS(3704), - [anon_sym_PIPE] = ACTIONS(3704), - [anon_sym_AMP] = ACTIONS(3704), - [anon_sym_LT_LT] = ACTIONS(3704), - [anon_sym_GT_GT] = ACTIONS(3704), - [anon_sym_GT_GT_GT] = ACTIONS(3704), - [anon_sym_EQ_EQ] = ACTIONS(3719), - [anon_sym_BANG_EQ] = ACTIONS(3719), - [anon_sym_GT_EQ] = ACTIONS(3719), - [anon_sym_LT_EQ] = ACTIONS(3719), - [anon_sym_DOT] = ACTIONS(3704), - [anon_sym_EQ_GT] = ACTIONS(4271), - [anon_sym_switch] = ACTIONS(3719), - [anon_sym_when] = ACTIONS(4271), - [anon_sym_DOT_DOT] = ACTIONS(3719), - [anon_sym_and] = ACTIONS(4271), - [anon_sym_or] = ACTIONS(4271), - [anon_sym_PLUS_EQ] = ACTIONS(3719), - [anon_sym_DASH_EQ] = ACTIONS(3719), - [anon_sym_STAR_EQ] = ACTIONS(3719), - [anon_sym_SLASH_EQ] = ACTIONS(3719), - [anon_sym_PERCENT_EQ] = ACTIONS(3719), - [anon_sym_AMP_EQ] = ACTIONS(3719), - [anon_sym_CARET_EQ] = ACTIONS(3719), - [anon_sym_PIPE_EQ] = ACTIONS(3719), - [anon_sym_LT_LT_EQ] = ACTIONS(3719), - [anon_sym_GT_GT_EQ] = ACTIONS(3719), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3719), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3719), - [anon_sym_AMP_AMP] = ACTIONS(3719), - [anon_sym_PIPE_PIPE] = ACTIONS(3719), - [anon_sym_QMARK_QMARK] = ACTIONS(3704), - [anon_sym_as] = ACTIONS(3719), - [anon_sym_is] = ACTIONS(3719), - [anon_sym_DASH_GT] = ACTIONS(3719), - [anon_sym_with] = ACTIONS(3719), + [sym__identifier_token] = ACTIONS(3466), + [anon_sym_extern] = ACTIONS(3466), + [anon_sym_alias] = ACTIONS(3466), + [anon_sym_global] = ACTIONS(3466), + [anon_sym_unsafe] = ACTIONS(3466), + [anon_sym_static] = ACTIONS(3466), + [anon_sym_LPAREN] = ACTIONS(5128), + [anon_sym_class] = ACTIONS(3466), + [anon_sym_ref] = ACTIONS(3466), + [anon_sym_struct] = ACTIONS(3466), + [anon_sym_enum] = ACTIONS(3466), + [anon_sym_LBRACE] = ACTIONS(5234), + [anon_sym_interface] = ACTIONS(3466), + [anon_sym_delegate] = ACTIONS(3466), + [anon_sym_record] = ACTIONS(3466), + [anon_sym_abstract] = ACTIONS(3466), + [anon_sym_async] = ACTIONS(3466), + [anon_sym_const] = ACTIONS(3466), + [anon_sym_file] = ACTIONS(3466), + [anon_sym_fixed] = ACTIONS(3466), + [anon_sym_internal] = ACTIONS(3466), + [anon_sym_new] = ACTIONS(3466), + [anon_sym_override] = ACTIONS(3466), + [anon_sym_partial] = ACTIONS(3466), + [anon_sym_private] = ACTIONS(3466), + [anon_sym_protected] = ACTIONS(3466), + [anon_sym_public] = ACTIONS(3466), + [anon_sym_readonly] = ACTIONS(3466), + [anon_sym_required] = ACTIONS(3466), + [anon_sym_sealed] = ACTIONS(3466), + [anon_sym_virtual] = ACTIONS(3466), + [anon_sym_volatile] = ACTIONS(3466), + [anon_sym_where] = ACTIONS(3466), + [anon_sym_notnull] = ACTIONS(3466), + [anon_sym_unmanaged] = ACTIONS(3466), + [anon_sym_scoped] = ACTIONS(3466), + [anon_sym_var] = ACTIONS(3466), + [sym_predefined_type] = ACTIONS(3466), + [anon_sym_yield] = ACTIONS(3466), + [anon_sym_when] = ACTIONS(3466), + [anon_sym_from] = ACTIONS(3466), + [anon_sym_into] = ACTIONS(3466), + [anon_sym_join] = ACTIONS(3466), + [anon_sym_on] = ACTIONS(3466), + [anon_sym_equals] = ACTIONS(3466), + [anon_sym_let] = ACTIONS(3466), + [anon_sym_orderby] = ACTIONS(3466), + [anon_sym_ascending] = ACTIONS(3466), + [anon_sym_descending] = ACTIONS(3466), + [anon_sym_group] = ACTIONS(3466), + [anon_sym_by] = ACTIONS(3466), + [anon_sym_select] = ACTIONS(3466), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -479674,61 +479190,59 @@ 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_EQ] = ACTIONS(5237), - [anon_sym_LBRACK] = ACTIONS(4860), - [anon_sym_LPAREN] = ACTIONS(4860), - [anon_sym_LT] = ACTIONS(4862), - [anon_sym_GT] = ACTIONS(4862), - [anon_sym_where] = ACTIONS(4860), - [anon_sym_QMARK] = ACTIONS(4862), - [anon_sym_BANG] = ACTIONS(4862), - [anon_sym_PLUS_PLUS] = ACTIONS(4860), - [anon_sym_DASH_DASH] = ACTIONS(4860), - [anon_sym_PLUS] = ACTIONS(4862), - [anon_sym_DASH] = ACTIONS(4862), - [anon_sym_STAR] = ACTIONS(4862), - [anon_sym_SLASH] = ACTIONS(4862), - [anon_sym_PERCENT] = ACTIONS(4862), - [anon_sym_CARET] = ACTIONS(4862), - [anon_sym_PIPE] = ACTIONS(4862), - [anon_sym_AMP] = ACTIONS(4862), - [anon_sym_LT_LT] = ACTIONS(4862), - [anon_sym_GT_GT] = ACTIONS(4862), - [anon_sym_GT_GT_GT] = ACTIONS(4862), - [anon_sym_EQ_EQ] = ACTIONS(4860), - [anon_sym_BANG_EQ] = ACTIONS(4860), - [anon_sym_GT_EQ] = ACTIONS(4860), - [anon_sym_LT_EQ] = ACTIONS(4860), - [anon_sym_DOT] = ACTIONS(4862), - [anon_sym_switch] = ACTIONS(4860), - [anon_sym_DOT_DOT] = ACTIONS(4860), - [anon_sym_and] = ACTIONS(4860), - [anon_sym_or] = ACTIONS(4862), - [anon_sym_PLUS_EQ] = ACTIONS(5239), - [anon_sym_DASH_EQ] = ACTIONS(5239), - [anon_sym_STAR_EQ] = ACTIONS(5239), - [anon_sym_SLASH_EQ] = ACTIONS(5239), - [anon_sym_PERCENT_EQ] = ACTIONS(5239), - [anon_sym_AMP_EQ] = ACTIONS(5239), - [anon_sym_CARET_EQ] = ACTIONS(5239), - [anon_sym_PIPE_EQ] = ACTIONS(5239), - [anon_sym_LT_LT_EQ] = ACTIONS(5239), - [anon_sym_GT_GT_EQ] = ACTIONS(5239), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(5239), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(5239), - [anon_sym_AMP_AMP] = ACTIONS(4860), - [anon_sym_PIPE_PIPE] = ACTIONS(4860), - [anon_sym_QMARK_QMARK] = ACTIONS(4862), - [anon_sym_from] = ACTIONS(4860), - [anon_sym_join] = ACTIONS(4860), - [anon_sym_let] = ACTIONS(4860), - [anon_sym_orderby] = ACTIONS(4860), - [anon_sym_group] = ACTIONS(4860), - [anon_sym_select] = ACTIONS(4860), - [anon_sym_as] = ACTIONS(4860), - [anon_sym_is] = ACTIONS(4860), - [anon_sym_DASH_GT] = ACTIONS(4860), - [anon_sym_with] = ACTIONS(4860), + [anon_sym_SEMI] = ACTIONS(3429), + [anon_sym_LBRACK] = ACTIONS(3429), + [anon_sym_COLON] = ACTIONS(3431), + [anon_sym_COMMA] = ACTIONS(3429), + [anon_sym_RBRACK] = ACTIONS(3429), + [anon_sym_LPAREN] = ACTIONS(3429), + [anon_sym_RPAREN] = ACTIONS(3429), + [anon_sym_LBRACE] = ACTIONS(3429), + [anon_sym_RBRACE] = ACTIONS(3429), + [anon_sym_LT] = ACTIONS(3431), + [anon_sym_GT] = ACTIONS(3431), + [anon_sym_in] = ACTIONS(3431), + [anon_sym_QMARK] = ACTIONS(3431), + [anon_sym_BANG] = ACTIONS(3431), + [anon_sym_PLUS_PLUS] = ACTIONS(3429), + [anon_sym_DASH_DASH] = ACTIONS(3429), + [anon_sym_PLUS] = ACTIONS(3431), + [anon_sym_DASH] = ACTIONS(3431), + [anon_sym_STAR] = ACTIONS(3429), + [anon_sym_SLASH] = ACTIONS(3431), + [anon_sym_PERCENT] = ACTIONS(3429), + [anon_sym_CARET] = ACTIONS(3429), + [anon_sym_PIPE] = ACTIONS(3431), + [anon_sym_AMP] = ACTIONS(3431), + [anon_sym_LT_LT] = ACTIONS(3429), + [anon_sym_GT_GT] = ACTIONS(3431), + [anon_sym_GT_GT_GT] = ACTIONS(3429), + [anon_sym_EQ_EQ] = ACTIONS(3429), + [anon_sym_BANG_EQ] = ACTIONS(3429), + [anon_sym_GT_EQ] = ACTIONS(3429), + [anon_sym_LT_EQ] = ACTIONS(3429), + [anon_sym_DOT] = ACTIONS(3431), + [anon_sym_EQ_GT] = ACTIONS(3429), + [anon_sym_COLON_COLON] = ACTIONS(3429), + [anon_sym_switch] = ACTIONS(3429), + [anon_sym_when] = ACTIONS(3429), + [anon_sym_DOT_DOT] = ACTIONS(3429), + [anon_sym_and] = ACTIONS(3429), + [anon_sym_or] = ACTIONS(3429), + [anon_sym_AMP_AMP] = ACTIONS(3429), + [anon_sym_PIPE_PIPE] = ACTIONS(3429), + [anon_sym_QMARK_QMARK] = ACTIONS(3429), + [anon_sym_into] = ACTIONS(3429), + [anon_sym_on] = ACTIONS(3429), + [anon_sym_equals] = ACTIONS(3429), + [anon_sym_by] = ACTIONS(3429), + [anon_sym_as] = ACTIONS(3429), + [anon_sym_is] = ACTIONS(3429), + [anon_sym_DASH_GT] = ACTIONS(3429), + [anon_sym_with] = 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), @@ -479741,6 +479255,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3123] = { + [sym_argument_list] = STATE(3348), + [sym_bracketed_argument_list] = STATE(2605), [sym_preproc_region] = STATE(3123), [sym_preproc_endregion] = STATE(3123), [sym_preproc_line] = STATE(3123), @@ -479750,61 +479266,57 @@ 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), - [sym__identifier_token] = ACTIONS(3482), - [anon_sym_extern] = ACTIONS(3482), - [anon_sym_alias] = ACTIONS(3482), - [anon_sym_global] = ACTIONS(3482), - [anon_sym_unsafe] = ACTIONS(3482), - [anon_sym_static] = ACTIONS(3482), - [anon_sym_LPAREN] = ACTIONS(5084), - [anon_sym_event] = ACTIONS(3482), - [anon_sym_class] = ACTIONS(3482), - [anon_sym_ref] = ACTIONS(3482), - [anon_sym_struct] = ACTIONS(3482), - [anon_sym_enum] = ACTIONS(3482), - [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_TILDE] = ACTIONS(3751), - [anon_sym_implicit] = ACTIONS(3482), - [anon_sym_explicit] = ACTIONS(3482), - [anon_sym_scoped] = ACTIONS(3482), - [anon_sym_var] = ACTIONS(3482), - [sym_predefined_type] = ACTIONS(3482), - [anon_sym_yield] = ACTIONS(3482), - [anon_sym_when] = ACTIONS(3482), - [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_SEMI] = ACTIONS(4817), + [anon_sym_LBRACK] = ACTIONS(5236), + [anon_sym_COLON] = ACTIONS(4817), + [anon_sym_COMMA] = ACTIONS(4817), + [anon_sym_RBRACK] = ACTIONS(4817), + [anon_sym_LPAREN] = ACTIONS(5227), + [anon_sym_RPAREN] = ACTIONS(4817), + [anon_sym_RBRACE] = ACTIONS(4817), + [anon_sym_LT] = ACTIONS(4821), + [anon_sym_GT] = ACTIONS(4821), + [anon_sym_in] = ACTIONS(4821), + [anon_sym_QMARK] = ACTIONS(4821), + [anon_sym_BANG] = ACTIONS(5238), + [anon_sym_PLUS_PLUS] = ACTIONS(5240), + [anon_sym_DASH_DASH] = ACTIONS(5240), + [anon_sym_PLUS] = ACTIONS(4821), + [anon_sym_DASH] = ACTIONS(4821), + [anon_sym_STAR] = ACTIONS(4817), + [anon_sym_SLASH] = ACTIONS(4821), + [anon_sym_PERCENT] = ACTIONS(4817), + [anon_sym_CARET] = ACTIONS(4817), + [anon_sym_PIPE] = ACTIONS(4821), + [anon_sym_AMP] = ACTIONS(4821), + [anon_sym_LT_LT] = ACTIONS(4817), + [anon_sym_GT_GT] = ACTIONS(4821), + [anon_sym_GT_GT_GT] = ACTIONS(4817), + [anon_sym_EQ_EQ] = ACTIONS(4817), + [anon_sym_BANG_EQ] = ACTIONS(4817), + [anon_sym_GT_EQ] = ACTIONS(4817), + [anon_sym_LT_EQ] = ACTIONS(4817), + [anon_sym_DOT] = ACTIONS(4092), + [anon_sym_EQ_GT] = ACTIONS(4817), + [anon_sym_switch] = ACTIONS(4817), + [anon_sym_when] = ACTIONS(4817), + [anon_sym_DOT_DOT] = ACTIONS(4817), + [anon_sym_and] = ACTIONS(4817), + [anon_sym_or] = ACTIONS(4817), + [anon_sym_AMP_AMP] = ACTIONS(4817), + [anon_sym_PIPE_PIPE] = ACTIONS(4817), + [anon_sym_QMARK_QMARK] = ACTIONS(4817), + [anon_sym_into] = ACTIONS(4817), + [anon_sym_on] = ACTIONS(4817), + [anon_sym_equals] = ACTIONS(4817), + [anon_sym_by] = ACTIONS(4817), + [anon_sym_as] = ACTIONS(4817), + [anon_sym_is] = ACTIONS(4817), + [anon_sym_DASH_GT] = ACTIONS(4094), + [anon_sym_with] = ACTIONS(4817), + [aux_sym_preproc_if_token3] = ACTIONS(4817), + [aux_sym_preproc_else_token1] = ACTIONS(4817), + [aux_sym_preproc_elif_token1] = ACTIONS(4817), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -479817,6 +479329,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3124] = { + [sym_type_argument_list] = STATE(3158), [sym_preproc_region] = STATE(3124), [sym_preproc_endregion] = STATE(3124), [sym_preproc_line] = STATE(3124), @@ -479826,73 +479339,71 @@ 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), - [sym__identifier_token] = ACTIONS(3482), - [anon_sym_extern] = ACTIONS(3482), - [anon_sym_alias] = ACTIONS(3482), - [anon_sym_global] = ACTIONS(3482), - [anon_sym_unsafe] = ACTIONS(3482), - [anon_sym_static] = ACTIONS(3482), - [anon_sym_LPAREN] = ACTIONS(5084), - [anon_sym_event] = ACTIONS(3482), - [anon_sym_class] = ACTIONS(3482), - [anon_sym_ref] = ACTIONS(3482), - [anon_sym_struct] = ACTIONS(3482), - [anon_sym_enum] = ACTIONS(3482), - [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_TILDE] = ACTIONS(5241), - [anon_sym_implicit] = ACTIONS(3482), - [anon_sym_explicit] = ACTIONS(3482), - [anon_sym_scoped] = ACTIONS(3482), - [anon_sym_var] = ACTIONS(3482), - [sym_predefined_type] = ACTIONS(3482), - [anon_sym_yield] = ACTIONS(3482), - [anon_sym_when] = ACTIONS(3482), - [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), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_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(3638), + [anon_sym_LBRACK] = ACTIONS(3640), + [anon_sym_COLON] = ACTIONS(3640), + [anon_sym_COMMA] = ACTIONS(3640), + [anon_sym_LPAREN] = ACTIONS(3640), + [anon_sym_LT] = ACTIONS(5242), + [anon_sym_GT] = ACTIONS(3638), + [anon_sym_QMARK] = ACTIONS(3638), + [anon_sym_BANG] = ACTIONS(3638), + [anon_sym_PLUS_PLUS] = ACTIONS(3640), + [anon_sym_DASH_DASH] = ACTIONS(3640), + [anon_sym_PLUS] = ACTIONS(3638), + [anon_sym_DASH] = ACTIONS(3638), + [anon_sym_STAR] = ACTIONS(3638), + [anon_sym_SLASH] = ACTIONS(3638), + [anon_sym_PERCENT] = ACTIONS(3638), + [anon_sym_CARET] = ACTIONS(3638), + [anon_sym_PIPE] = ACTIONS(3638), + [anon_sym_AMP] = ACTIONS(3638), + [anon_sym_LT_LT] = ACTIONS(3638), + [anon_sym_GT_GT] = ACTIONS(3638), + [anon_sym_GT_GT_GT] = ACTIONS(3638), + [anon_sym_EQ_EQ] = ACTIONS(3640), + [anon_sym_BANG_EQ] = ACTIONS(3640), + [anon_sym_GT_EQ] = ACTIONS(3640), + [anon_sym_LT_EQ] = ACTIONS(3640), + [anon_sym_DOT] = ACTIONS(3638), + [anon_sym_switch] = ACTIONS(3640), + [anon_sym_DOT_DOT] = ACTIONS(3640), + [anon_sym_and] = ACTIONS(3640), + [anon_sym_or] = ACTIONS(3640), + [anon_sym_PLUS_EQ] = ACTIONS(3640), + [anon_sym_DASH_EQ] = ACTIONS(3640), + [anon_sym_STAR_EQ] = ACTIONS(3640), + [anon_sym_SLASH_EQ] = ACTIONS(3640), + [anon_sym_PERCENT_EQ] = ACTIONS(3640), + [anon_sym_AMP_EQ] = ACTIONS(3640), + [anon_sym_CARET_EQ] = ACTIONS(3640), + [anon_sym_PIPE_EQ] = ACTIONS(3640), + [anon_sym_LT_LT_EQ] = ACTIONS(3640), + [anon_sym_GT_GT_EQ] = ACTIONS(3640), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3640), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3640), + [anon_sym_AMP_AMP] = ACTIONS(3640), + [anon_sym_PIPE_PIPE] = ACTIONS(3640), + [anon_sym_QMARK_QMARK] = ACTIONS(3638), + [anon_sym_into] = ACTIONS(3640), + [anon_sym_as] = ACTIONS(3640), + [anon_sym_is] = ACTIONS(3640), + [anon_sym_DASH_GT] = ACTIONS(3640), + [anon_sym_with] = ACTIONS(3640), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_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(3640), }, [3125] = { + [sym_initializer_expression] = STATE(3261), [sym_preproc_region] = STATE(3125), [sym_preproc_endregion] = STATE(3125), [sym_preproc_line] = STATE(3125), @@ -479902,60 +479413,58 @@ 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_EQ] = ACTIONS(5243), - [anon_sym_LBRACK] = ACTIONS(4860), - [anon_sym_LPAREN] = ACTIONS(4860), - [anon_sym_LT] = ACTIONS(4862), - [anon_sym_GT] = ACTIONS(4862), - [anon_sym_where] = ACTIONS(4860), - [anon_sym_QMARK] = ACTIONS(4862), - [anon_sym_BANG] = ACTIONS(4862), - [anon_sym_PLUS_PLUS] = ACTIONS(4860), - [anon_sym_DASH_DASH] = ACTIONS(4860), - [anon_sym_PLUS] = ACTIONS(4862), - [anon_sym_DASH] = ACTIONS(4862), - [anon_sym_STAR] = ACTIONS(4862), - [anon_sym_SLASH] = ACTIONS(4862), - [anon_sym_PERCENT] = ACTIONS(4862), - [anon_sym_CARET] = ACTIONS(4862), - [anon_sym_PIPE] = ACTIONS(4862), - [anon_sym_AMP] = ACTIONS(4862), - [anon_sym_LT_LT] = ACTIONS(4862), - [anon_sym_GT_GT] = ACTIONS(4862), - [anon_sym_GT_GT_GT] = ACTIONS(4862), - [anon_sym_EQ_EQ] = ACTIONS(4860), - [anon_sym_BANG_EQ] = ACTIONS(4860), - [anon_sym_GT_EQ] = ACTIONS(4860), - [anon_sym_LT_EQ] = ACTIONS(4860), - [anon_sym_DOT] = ACTIONS(4862), - [anon_sym_switch] = ACTIONS(4860), - [anon_sym_DOT_DOT] = ACTIONS(4860), - [anon_sym_PLUS_EQ] = ACTIONS(5245), - [anon_sym_DASH_EQ] = ACTIONS(5245), - [anon_sym_STAR_EQ] = ACTIONS(5245), - [anon_sym_SLASH_EQ] = ACTIONS(5245), - [anon_sym_PERCENT_EQ] = ACTIONS(5245), - [anon_sym_AMP_EQ] = ACTIONS(5245), - [anon_sym_CARET_EQ] = ACTIONS(5245), - [anon_sym_PIPE_EQ] = ACTIONS(5245), - [anon_sym_LT_LT_EQ] = ACTIONS(5245), - [anon_sym_GT_GT_EQ] = ACTIONS(5245), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(5245), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(5245), - [anon_sym_AMP_AMP] = ACTIONS(4860), - [anon_sym_PIPE_PIPE] = ACTIONS(4860), - [anon_sym_QMARK_QMARK] = ACTIONS(4862), - [anon_sym_from] = ACTIONS(4860), - [anon_sym_into] = ACTIONS(4860), - [anon_sym_join] = ACTIONS(4860), - [anon_sym_let] = ACTIONS(4860), - [anon_sym_orderby] = ACTIONS(4860), - [anon_sym_group] = ACTIONS(4860), - [anon_sym_select] = ACTIONS(4860), - [anon_sym_as] = ACTIONS(4860), - [anon_sym_is] = ACTIONS(4860), - [anon_sym_DASH_GT] = ACTIONS(4860), - [anon_sym_with] = ACTIONS(4860), + [anon_sym_SEMI] = ACTIONS(4802), + [anon_sym_LBRACK] = ACTIONS(4804), + [anon_sym_COLON] = ACTIONS(4802), + [anon_sym_COMMA] = ACTIONS(4802), + [anon_sym_RBRACK] = ACTIONS(4802), + [anon_sym_LPAREN] = ACTIONS(4802), + [anon_sym_RPAREN] = ACTIONS(4802), + [anon_sym_LBRACE] = ACTIONS(1155), + [anon_sym_RBRACE] = ACTIONS(4802), + [anon_sym_LT] = ACTIONS(4807), + [anon_sym_GT] = ACTIONS(4807), + [anon_sym_in] = ACTIONS(4807), + [anon_sym_QMARK] = ACTIONS(4807), + [anon_sym_BANG] = ACTIONS(4807), + [anon_sym_PLUS_PLUS] = ACTIONS(4802), + [anon_sym_DASH_DASH] = ACTIONS(4802), + [anon_sym_PLUS] = ACTIONS(4807), + [anon_sym_DASH] = ACTIONS(4807), + [anon_sym_STAR] = ACTIONS(4802), + [anon_sym_SLASH] = ACTIONS(4807), + [anon_sym_PERCENT] = ACTIONS(4802), + [anon_sym_CARET] = ACTIONS(4802), + [anon_sym_PIPE] = ACTIONS(4807), + [anon_sym_AMP] = ACTIONS(4807), + [anon_sym_LT_LT] = ACTIONS(4802), + [anon_sym_GT_GT] = ACTIONS(4807), + [anon_sym_GT_GT_GT] = ACTIONS(4802), + [anon_sym_EQ_EQ] = ACTIONS(4802), + [anon_sym_BANG_EQ] = ACTIONS(4802), + [anon_sym_GT_EQ] = ACTIONS(4802), + [anon_sym_LT_EQ] = ACTIONS(4802), + [anon_sym_DOT] = ACTIONS(4807), + [anon_sym_EQ_GT] = ACTIONS(4802), + [anon_sym_switch] = ACTIONS(4802), + [anon_sym_when] = ACTIONS(4802), + [anon_sym_DOT_DOT] = ACTIONS(4802), + [anon_sym_and] = ACTIONS(4802), + [anon_sym_or] = ACTIONS(4802), + [anon_sym_AMP_AMP] = ACTIONS(4802), + [anon_sym_PIPE_PIPE] = ACTIONS(4802), + [anon_sym_QMARK_QMARK] = ACTIONS(4802), + [anon_sym_into] = ACTIONS(4802), + [anon_sym_on] = ACTIONS(4802), + [anon_sym_equals] = ACTIONS(4802), + [anon_sym_by] = ACTIONS(4802), + [anon_sym_as] = ACTIONS(4802), + [anon_sym_is] = ACTIONS(4802), + [anon_sym_DASH_GT] = ACTIONS(4802), + [anon_sym_with] = ACTIONS(4802), + [aux_sym_preproc_if_token3] = ACTIONS(4802), + [aux_sym_preproc_else_token1] = ACTIONS(4802), + [aux_sym_preproc_elif_token1] = ACTIONS(4802), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -479977,60 +479486,59 @@ 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), - [anon_sym_EQ] = ACTIONS(4136), - [anon_sym_LBRACK] = ACTIONS(4148), - [anon_sym_COLON] = ACTIONS(4148), - [anon_sym_COMMA] = ACTIONS(4148), - [anon_sym_LPAREN] = ACTIONS(4148), - [anon_sym_RPAREN] = ACTIONS(4148), - [anon_sym_RBRACE] = ACTIONS(4148), - [anon_sym_LT] = ACTIONS(4150), - [anon_sym_GT] = ACTIONS(4150), - [anon_sym_QMARK] = ACTIONS(4150), - [anon_sym_BANG] = ACTIONS(4150), - [anon_sym_PLUS_PLUS] = ACTIONS(4148), - [anon_sym_DASH_DASH] = ACTIONS(4148), - [anon_sym_PLUS] = ACTIONS(4150), - [anon_sym_DASH] = ACTIONS(4150), - [anon_sym_STAR] = ACTIONS(4150), - [anon_sym_SLASH] = ACTIONS(4150), - [anon_sym_PERCENT] = ACTIONS(4150), - [anon_sym_CARET] = ACTIONS(4150), - [anon_sym_PIPE] = ACTIONS(4150), - [anon_sym_AMP] = ACTIONS(4150), - [anon_sym_LT_LT] = ACTIONS(4150), - [anon_sym_GT_GT] = ACTIONS(4150), - [anon_sym_GT_GT_GT] = ACTIONS(4150), - [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(4150), - [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_PLUS_EQ] = ACTIONS(4134), - [anon_sym_DASH_EQ] = ACTIONS(4134), - [anon_sym_STAR_EQ] = ACTIONS(4134), - [anon_sym_SLASH_EQ] = ACTIONS(4134), - [anon_sym_PERCENT_EQ] = ACTIONS(4134), - [anon_sym_AMP_EQ] = ACTIONS(4134), - [anon_sym_CARET_EQ] = ACTIONS(4134), - [anon_sym_PIPE_EQ] = ACTIONS(4134), - [anon_sym_LT_LT_EQ] = ACTIONS(4134), - [anon_sym_GT_GT_EQ] = ACTIONS(4134), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(4134), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(4134), - [anon_sym_AMP_AMP] = ACTIONS(4148), - [anon_sym_PIPE_PIPE] = ACTIONS(4148), - [anon_sym_QMARK_QMARK] = ACTIONS(4150), - [anon_sym_into] = ACTIONS(4148), - [anon_sym_as] = ACTIONS(4148), - [anon_sym_is] = ACTIONS(4148), - [anon_sym_DASH_GT] = ACTIONS(4148), - [anon_sym_with] = ACTIONS(4148), + [anon_sym_EQ] = ACTIONS(5245), + [anon_sym_LBRACK] = ACTIONS(4811), + [anon_sym_COLON] = ACTIONS(4811), + [anon_sym_COMMA] = ACTIONS(4811), + [anon_sym_LPAREN] = ACTIONS(4811), + [anon_sym_RPAREN] = ACTIONS(4811), + [anon_sym_RBRACE] = ACTIONS(4811), + [anon_sym_LT] = ACTIONS(4813), + [anon_sym_GT] = ACTIONS(4813), + [anon_sym_QMARK] = ACTIONS(4813), + [anon_sym_BANG] = ACTIONS(4813), + [anon_sym_PLUS_PLUS] = ACTIONS(4811), + [anon_sym_DASH_DASH] = ACTIONS(4811), + [anon_sym_PLUS] = ACTIONS(4813), + [anon_sym_DASH] = ACTIONS(4813), + [anon_sym_STAR] = ACTIONS(4813), + [anon_sym_SLASH] = ACTIONS(4813), + [anon_sym_PERCENT] = ACTIONS(4813), + [anon_sym_CARET] = ACTIONS(4813), + [anon_sym_PIPE] = ACTIONS(4813), + [anon_sym_AMP] = ACTIONS(4813), + [anon_sym_LT_LT] = ACTIONS(4813), + [anon_sym_GT_GT] = ACTIONS(4813), + [anon_sym_GT_GT_GT] = ACTIONS(4813), + [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(4813), + [anon_sym_switch] = ACTIONS(4811), + [anon_sym_DOT_DOT] = ACTIONS(4811), + [anon_sym_and] = ACTIONS(4811), + [anon_sym_or] = ACTIONS(4811), + [anon_sym_PLUS_EQ] = ACTIONS(5247), + [anon_sym_DASH_EQ] = ACTIONS(5247), + [anon_sym_STAR_EQ] = ACTIONS(5247), + [anon_sym_SLASH_EQ] = ACTIONS(5247), + [anon_sym_PERCENT_EQ] = ACTIONS(5247), + [anon_sym_AMP_EQ] = ACTIONS(5247), + [anon_sym_CARET_EQ] = ACTIONS(5247), + [anon_sym_PIPE_EQ] = ACTIONS(5247), + [anon_sym_LT_LT_EQ] = ACTIONS(5247), + [anon_sym_GT_GT_EQ] = ACTIONS(5247), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(5247), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(5247), + [anon_sym_AMP_AMP] = ACTIONS(4811), + [anon_sym_PIPE_PIPE] = ACTIONS(4811), + [anon_sym_QMARK_QMARK] = ACTIONS(4813), + [anon_sym_into] = 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_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -480043,8 +479551,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3127] = { - [sym_argument_list] = STATE(3146), - [sym_initializer_expression] = STATE(3283), [sym_preproc_region] = STATE(3127), [sym_preproc_endregion] = STATE(3127), [sym_preproc_line] = STATE(3127), @@ -480054,58 +479560,59 @@ 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(4802), - [anon_sym_LBRACK] = ACTIONS(4802), - [anon_sym_COLON] = ACTIONS(4802), - [anon_sym_COMMA] = ACTIONS(4802), - [anon_sym_RBRACK] = ACTIONS(4802), - [anon_sym_LPAREN] = ACTIONS(5247), - [anon_sym_RPAREN] = ACTIONS(4802), - [anon_sym_LBRACE] = ACTIONS(1159), - [anon_sym_RBRACE] = ACTIONS(4802), - [anon_sym_LT] = ACTIONS(4806), - [anon_sym_GT] = ACTIONS(4806), - [anon_sym_in] = ACTIONS(4806), - [anon_sym_QMARK] = ACTIONS(4806), - [anon_sym_BANG] = ACTIONS(4806), - [anon_sym_PLUS_PLUS] = ACTIONS(4802), - [anon_sym_DASH_DASH] = ACTIONS(4802), - [anon_sym_PLUS] = ACTIONS(4806), - [anon_sym_DASH] = ACTIONS(4806), - [anon_sym_STAR] = ACTIONS(4802), - [anon_sym_SLASH] = ACTIONS(4806), - [anon_sym_PERCENT] = ACTIONS(4802), - [anon_sym_CARET] = ACTIONS(4802), - [anon_sym_PIPE] = ACTIONS(4806), - [anon_sym_AMP] = ACTIONS(4806), - [anon_sym_LT_LT] = ACTIONS(4802), - [anon_sym_GT_GT] = ACTIONS(4806), - [anon_sym_GT_GT_GT] = ACTIONS(4802), - [anon_sym_EQ_EQ] = ACTIONS(4802), - [anon_sym_BANG_EQ] = ACTIONS(4802), - [anon_sym_GT_EQ] = ACTIONS(4802), - [anon_sym_LT_EQ] = ACTIONS(4802), - [anon_sym_DOT] = ACTIONS(4806), - [anon_sym_EQ_GT] = ACTIONS(4802), - [anon_sym_switch] = ACTIONS(4802), - [anon_sym_when] = ACTIONS(4802), - [anon_sym_DOT_DOT] = ACTIONS(4802), - [anon_sym_and] = ACTIONS(4802), - [anon_sym_or] = ACTIONS(4802), - [anon_sym_AMP_AMP] = ACTIONS(4802), - [anon_sym_PIPE_PIPE] = ACTIONS(4802), - [anon_sym_QMARK_QMARK] = ACTIONS(4802), - [anon_sym_into] = ACTIONS(4802), - [anon_sym_on] = ACTIONS(4802), - [anon_sym_equals] = ACTIONS(4802), - [anon_sym_by] = ACTIONS(4802), - [anon_sym_as] = ACTIONS(4802), - [anon_sym_is] = ACTIONS(4802), - [anon_sym_DASH_GT] = ACTIONS(4802), - [anon_sym_with] = ACTIONS(4802), - [aux_sym_preproc_if_token3] = ACTIONS(4802), - [aux_sym_preproc_else_token1] = ACTIONS(4802), - [aux_sym_preproc_elif_token1] = ACTIONS(4802), + [anon_sym_EQ] = ACTIONS(3696), + [anon_sym_LBRACK] = ACTIONS(3711), + [anon_sym_COLON] = ACTIONS(3711), + [anon_sym_COMMA] = ACTIONS(4241), + [anon_sym_RBRACK] = ACTIONS(4241), + [anon_sym_LPAREN] = ACTIONS(3711), + [anon_sym_RPAREN] = ACTIONS(4241), + [anon_sym_RBRACE] = ACTIONS(4241), + [anon_sym_LT] = ACTIONS(3696), + [anon_sym_GT] = ACTIONS(3696), + [anon_sym_QMARK] = ACTIONS(3696), + [anon_sym_BANG] = ACTIONS(3696), + [anon_sym_PLUS_PLUS] = ACTIONS(3711), + [anon_sym_DASH_DASH] = ACTIONS(3711), + [anon_sym_PLUS] = ACTIONS(3696), + [anon_sym_DASH] = ACTIONS(3696), + [anon_sym_STAR] = ACTIONS(3696), + [anon_sym_SLASH] = ACTIONS(3696), + [anon_sym_PERCENT] = ACTIONS(3696), + [anon_sym_CARET] = ACTIONS(3696), + [anon_sym_PIPE] = ACTIONS(3696), + [anon_sym_AMP] = ACTIONS(3696), + [anon_sym_LT_LT] = ACTIONS(3696), + [anon_sym_GT_GT] = ACTIONS(3696), + [anon_sym_GT_GT_GT] = ACTIONS(3696), + [anon_sym_EQ_EQ] = ACTIONS(3711), + [anon_sym_BANG_EQ] = ACTIONS(3711), + [anon_sym_GT_EQ] = ACTIONS(3711), + [anon_sym_LT_EQ] = ACTIONS(3711), + [anon_sym_DOT] = ACTIONS(3696), + [anon_sym_switch] = ACTIONS(3711), + [anon_sym_DOT_DOT] = ACTIONS(3711), + [anon_sym_and] = ACTIONS(4241), + [anon_sym_or] = ACTIONS(4241), + [anon_sym_PLUS_EQ] = ACTIONS(3711), + [anon_sym_DASH_EQ] = ACTIONS(3711), + [anon_sym_STAR_EQ] = ACTIONS(3711), + [anon_sym_SLASH_EQ] = ACTIONS(3711), + [anon_sym_PERCENT_EQ] = ACTIONS(3711), + [anon_sym_AMP_EQ] = ACTIONS(3711), + [anon_sym_CARET_EQ] = ACTIONS(3711), + [anon_sym_PIPE_EQ] = ACTIONS(3711), + [anon_sym_LT_LT_EQ] = ACTIONS(3711), + [anon_sym_GT_GT_EQ] = ACTIONS(3711), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3711), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3711), + [anon_sym_AMP_AMP] = ACTIONS(3711), + [anon_sym_PIPE_PIPE] = ACTIONS(3711), + [anon_sym_QMARK_QMARK] = ACTIONS(3696), + [anon_sym_as] = ACTIONS(3711), + [anon_sym_is] = ACTIONS(3711), + [anon_sym_DASH_GT] = ACTIONS(3711), + [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), @@ -480118,6 +479625,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3128] = { + [sym_attribute_list] = STATE(3516), + [sym__attribute_list] = STATE(3518), + [sym_preproc_if_in_attribute_list] = STATE(3516), [sym_preproc_region] = STATE(3128), [sym_preproc_endregion] = STATE(3128), [sym_preproc_line] = STATE(3128), @@ -480127,60 +479637,56 @@ 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), - [sym__identifier_token] = ACTIONS(3482), - [anon_sym_extern] = ACTIONS(3482), - [anon_sym_alias] = ACTIONS(3482), - [anon_sym_global] = ACTIONS(3482), - [anon_sym_unsafe] = ACTIONS(3482), - [anon_sym_static] = ACTIONS(3482), - [anon_sym_LPAREN] = ACTIONS(5084), - [anon_sym_event] = ACTIONS(3482), - [anon_sym_class] = ACTIONS(3482), - [anon_sym_ref] = ACTIONS(3482), - [anon_sym_struct] = ACTIONS(3482), - [anon_sym_enum] = ACTIONS(3482), - [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_implicit] = ACTIONS(3482), - [anon_sym_explicit] = ACTIONS(3482), - [anon_sym_scoped] = ACTIONS(3482), - [anon_sym_var] = ACTIONS(3482), - [sym_predefined_type] = ACTIONS(3482), - [anon_sym_yield] = ACTIONS(3482), - [anon_sym_when] = ACTIONS(3482), - [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), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3128), + [sym__identifier_token] = ACTIONS(4711), + [anon_sym_extern] = ACTIONS(4711), + [anon_sym_alias] = ACTIONS(4711), + [anon_sym_global] = ACTIONS(4711), + [anon_sym_unsafe] = ACTIONS(4711), + [anon_sym_static] = ACTIONS(4711), + [anon_sym_LBRACK] = ACTIONS(5249), + [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_get] = ACTIONS(4711), + [anon_sym_set] = ACTIONS(4711), + [anon_sym_add] = ACTIONS(4711), + [anon_sym_remove] = ACTIONS(4711), + [anon_sym_init] = ACTIONS(4711), + [anon_sym_scoped] = ACTIONS(4711), + [anon_sym_var] = 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(5252), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -480193,7 +479699,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3129] = { - [sym_type_argument_list] = STATE(3158), + [sym_block] = STATE(1952), [sym_preproc_region] = STATE(3129), [sym_preproc_endregion] = STATE(3129), [sym_preproc_line] = STATE(3129), @@ -480203,59 +479709,58 @@ 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(3662), - [anon_sym_LBRACK] = ACTIONS(3662), - [anon_sym_COLON] = ACTIONS(3660), - [anon_sym_COMMA] = ACTIONS(3662), - [anon_sym_RBRACK] = ACTIONS(3662), - [anon_sym_LPAREN] = ACTIONS(3662), - [anon_sym_RPAREN] = ACTIONS(3662), - [anon_sym_LBRACE] = ACTIONS(3662), - [anon_sym_RBRACE] = ACTIONS(3662), - [anon_sym_LT] = ACTIONS(5249), - [anon_sym_GT] = ACTIONS(3660), - [anon_sym_in] = ACTIONS(3660), - [anon_sym_QMARK] = ACTIONS(3660), - [anon_sym_BANG] = ACTIONS(3660), - [anon_sym_PLUS_PLUS] = ACTIONS(3662), - [anon_sym_DASH_DASH] = ACTIONS(3662), - [anon_sym_PLUS] = ACTIONS(3660), - [anon_sym_DASH] = ACTIONS(3660), - [anon_sym_STAR] = ACTIONS(3662), - [anon_sym_SLASH] = ACTIONS(3660), - [anon_sym_PERCENT] = ACTIONS(3662), - [anon_sym_CARET] = ACTIONS(3662), - [anon_sym_PIPE] = ACTIONS(3660), - [anon_sym_AMP] = ACTIONS(3660), - [anon_sym_LT_LT] = ACTIONS(3662), - [anon_sym_GT_GT] = ACTIONS(3660), - [anon_sym_GT_GT_GT] = ACTIONS(3662), - [anon_sym_EQ_EQ] = ACTIONS(3662), - [anon_sym_BANG_EQ] = ACTIONS(3662), - [anon_sym_GT_EQ] = ACTIONS(3662), - [anon_sym_LT_EQ] = ACTIONS(3662), - [anon_sym_DOT] = ACTIONS(3660), - [anon_sym_EQ_GT] = ACTIONS(3662), - [anon_sym_COLON_COLON] = ACTIONS(5252), - [anon_sym_switch] = ACTIONS(3662), - [anon_sym_when] = ACTIONS(3662), - [anon_sym_DOT_DOT] = ACTIONS(3662), - [anon_sym_and] = ACTIONS(3662), - [anon_sym_or] = ACTIONS(3662), - [anon_sym_AMP_AMP] = ACTIONS(3662), - [anon_sym_PIPE_PIPE] = ACTIONS(3662), - [anon_sym_QMARK_QMARK] = ACTIONS(3662), - [anon_sym_into] = ACTIONS(3662), - [anon_sym_on] = ACTIONS(3662), - [anon_sym_equals] = ACTIONS(3662), - [anon_sym_by] = ACTIONS(3662), - [anon_sym_as] = ACTIONS(3662), - [anon_sym_is] = ACTIONS(3662), - [anon_sym_DASH_GT] = ACTIONS(3662), - [anon_sym_with] = ACTIONS(3662), - [aux_sym_preproc_if_token3] = ACTIONS(3662), - [aux_sym_preproc_else_token1] = ACTIONS(3662), - [aux_sym_preproc_elif_token1] = ACTIONS(3662), + [sym__identifier_token] = ACTIONS(3466), + [anon_sym_extern] = ACTIONS(3466), + [anon_sym_alias] = ACTIONS(3466), + [anon_sym_global] = ACTIONS(3466), + [anon_sym_unsafe] = ACTIONS(3466), + [anon_sym_static] = ACTIONS(3466), + [anon_sym_LPAREN] = ACTIONS(5128), + [anon_sym_class] = ACTIONS(3466), + [anon_sym_ref] = ACTIONS(3466), + [anon_sym_struct] = ACTIONS(3466), + [anon_sym_enum] = ACTIONS(3466), + [anon_sym_LBRACE] = ACTIONS(5255), + [anon_sym_interface] = ACTIONS(3466), + [anon_sym_delegate] = ACTIONS(3466), + [anon_sym_record] = ACTIONS(3466), + [anon_sym_abstract] = ACTIONS(3466), + [anon_sym_async] = ACTIONS(3466), + [anon_sym_const] = ACTIONS(3466), + [anon_sym_file] = ACTIONS(3466), + [anon_sym_fixed] = ACTIONS(3466), + [anon_sym_internal] = ACTIONS(3466), + [anon_sym_new] = ACTIONS(3466), + [anon_sym_override] = ACTIONS(3466), + [anon_sym_partial] = ACTIONS(3466), + [anon_sym_private] = ACTIONS(3466), + [anon_sym_protected] = ACTIONS(3466), + [anon_sym_public] = ACTIONS(3466), + [anon_sym_readonly] = ACTIONS(3466), + [anon_sym_required] = ACTIONS(3466), + [anon_sym_sealed] = ACTIONS(3466), + [anon_sym_virtual] = ACTIONS(3466), + [anon_sym_volatile] = ACTIONS(3466), + [anon_sym_where] = ACTIONS(3466), + [anon_sym_notnull] = ACTIONS(3466), + [anon_sym_unmanaged] = ACTIONS(3466), + [anon_sym_scoped] = ACTIONS(3466), + [anon_sym_var] = ACTIONS(3466), + [sym_predefined_type] = ACTIONS(3466), + [anon_sym_yield] = ACTIONS(3466), + [anon_sym_when] = ACTIONS(3466), + [anon_sym_from] = ACTIONS(3466), + [anon_sym_into] = ACTIONS(3466), + [anon_sym_join] = ACTIONS(3466), + [anon_sym_on] = ACTIONS(3466), + [anon_sym_equals] = ACTIONS(3466), + [anon_sym_let] = ACTIONS(3466), + [anon_sym_orderby] = ACTIONS(3466), + [anon_sym_ascending] = ACTIONS(3466), + [anon_sym_descending] = ACTIONS(3466), + [anon_sym_group] = ACTIONS(3466), + [anon_sym_by] = ACTIONS(3466), + [anon_sym_select] = ACTIONS(3466), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -480268,6 +479773,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3130] = { + [sym_argument_list] = STATE(3203), + [sym_initializer_expression] = STATE(3420), [sym_preproc_region] = STATE(3130), [sym_preproc_endregion] = STATE(3130), [sym_preproc_line] = STATE(3130), @@ -480277,60 +479784,57 @@ 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), - [sym__identifier_token] = ACTIONS(5254), - [anon_sym_extern] = ACTIONS(5254), - [anon_sym_alias] = ACTIONS(5254), - [anon_sym_global] = ACTIONS(5254), - [anon_sym_unsafe] = ACTIONS(5254), - [anon_sym_static] = ACTIONS(5254), - [anon_sym_LPAREN] = ACTIONS(5256), - [anon_sym_event] = ACTIONS(5254), - [anon_sym_class] = ACTIONS(5254), - [anon_sym_ref] = ACTIONS(5254), - [anon_sym_struct] = ACTIONS(5254), - [anon_sym_enum] = ACTIONS(5254), - [anon_sym_interface] = ACTIONS(5254), - [anon_sym_delegate] = ACTIONS(5254), - [anon_sym_record] = ACTIONS(5254), - [anon_sym_abstract] = ACTIONS(5254), - [anon_sym_async] = ACTIONS(5254), - [anon_sym_const] = ACTIONS(5254), - [anon_sym_file] = ACTIONS(5254), - [anon_sym_fixed] = ACTIONS(5254), - [anon_sym_internal] = ACTIONS(5254), - [anon_sym_new] = ACTIONS(5254), - [anon_sym_override] = ACTIONS(5254), - [anon_sym_partial] = ACTIONS(5254), - [anon_sym_private] = ACTIONS(5254), - [anon_sym_protected] = ACTIONS(5254), - [anon_sym_public] = ACTIONS(5254), - [anon_sym_readonly] = ACTIONS(5254), - [anon_sym_required] = ACTIONS(5254), - [anon_sym_sealed] = ACTIONS(5254), - [anon_sym_virtual] = ACTIONS(5254), - [anon_sym_volatile] = ACTIONS(5254), - [anon_sym_where] = ACTIONS(5254), - [anon_sym_notnull] = ACTIONS(5254), - [anon_sym_unmanaged] = ACTIONS(5254), - [anon_sym_implicit] = ACTIONS(5254), - [anon_sym_explicit] = ACTIONS(5254), - [anon_sym_scoped] = ACTIONS(5254), - [anon_sym_var] = ACTIONS(5254), - [sym_predefined_type] = ACTIONS(5254), - [anon_sym_yield] = ACTIONS(5254), - [anon_sym_when] = ACTIONS(5254), - [anon_sym_from] = ACTIONS(5254), - [anon_sym_into] = 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_ascending] = ACTIONS(5254), - [anon_sym_descending] = ACTIONS(5254), - [anon_sym_group] = ACTIONS(5254), - [anon_sym_by] = ACTIONS(5254), - [anon_sym_select] = ACTIONS(5254), + [anon_sym_SEMI] = ACTIONS(4751), + [anon_sym_LBRACK] = ACTIONS(4751), + [anon_sym_COLON] = ACTIONS(4751), + [anon_sym_COMMA] = ACTIONS(4751), + [anon_sym_RBRACK] = ACTIONS(4751), + [anon_sym_LPAREN] = ACTIONS(5257), + [anon_sym_RPAREN] = ACTIONS(4751), + [anon_sym_LBRACE] = ACTIONS(1311), + [anon_sym_RBRACE] = ACTIONS(4751), + [anon_sym_LT] = ACTIONS(4755), + [anon_sym_GT] = ACTIONS(4755), + [anon_sym_in] = ACTIONS(4751), + [anon_sym_QMARK] = ACTIONS(4755), + [anon_sym_BANG] = ACTIONS(4755), + [anon_sym_PLUS_PLUS] = ACTIONS(4751), + [anon_sym_DASH_DASH] = ACTIONS(4751), + [anon_sym_PLUS] = ACTIONS(4755), + [anon_sym_DASH] = ACTIONS(4755), + [anon_sym_STAR] = ACTIONS(4751), + [anon_sym_SLASH] = ACTIONS(4755), + [anon_sym_PERCENT] = ACTIONS(4751), + [anon_sym_CARET] = ACTIONS(4751), + [anon_sym_PIPE] = ACTIONS(4755), + [anon_sym_AMP] = ACTIONS(4755), + [anon_sym_LT_LT] = ACTIONS(4751), + [anon_sym_GT_GT] = ACTIONS(4755), + [anon_sym_GT_GT_GT] = ACTIONS(4751), + [anon_sym_EQ_EQ] = ACTIONS(4751), + [anon_sym_BANG_EQ] = ACTIONS(4751), + [anon_sym_GT_EQ] = ACTIONS(4751), + [anon_sym_LT_EQ] = ACTIONS(4751), + [anon_sym_DOT] = ACTIONS(4755), + [anon_sym_EQ_GT] = ACTIONS(4751), + [anon_sym_switch] = ACTIONS(4751), + [anon_sym_when] = ACTIONS(4751), + [anon_sym_DOT_DOT] = ACTIONS(4751), + [anon_sym_and] = ACTIONS(4751), + [anon_sym_or] = ACTIONS(4751), + [anon_sym_AMP_AMP] = ACTIONS(4751), + [anon_sym_PIPE_PIPE] = ACTIONS(4751), + [anon_sym_QMARK_QMARK] = ACTIONS(4751), + [anon_sym_on] = ACTIONS(4751), + [anon_sym_equals] = ACTIONS(4751), + [anon_sym_by] = ACTIONS(4751), + [anon_sym_as] = ACTIONS(4751), + [anon_sym_is] = ACTIONS(4751), + [anon_sym_DASH_GT] = ACTIONS(4751), + [anon_sym_with] = ACTIONS(4751), + [aux_sym_preproc_if_token3] = ACTIONS(4751), + [aux_sym_preproc_else_token1] = ACTIONS(4751), + [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), @@ -480343,9 +479847,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3131] = { - [sym_attribute_list] = STATE(3531), - [sym__attribute_list] = STATE(3536), - [sym_preproc_if_in_attribute_list] = STATE(3531), [sym_preproc_region] = STATE(3131), [sym_preproc_endregion] = STATE(3131), [sym_preproc_line] = STATE(3131), @@ -480355,56 +479856,59 @@ 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), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3131), - [sym__identifier_token] = ACTIONS(4721), - [anon_sym_extern] = ACTIONS(4721), - [anon_sym_alias] = ACTIONS(4721), - [anon_sym_global] = ACTIONS(4721), - [anon_sym_unsafe] = ACTIONS(4721), - [anon_sym_static] = ACTIONS(4721), - [anon_sym_LBRACK] = ACTIONS(5258), - [anon_sym_abstract] = ACTIONS(4721), - [anon_sym_async] = ACTIONS(4721), - [anon_sym_const] = ACTIONS(4721), - [anon_sym_file] = ACTIONS(4721), - [anon_sym_fixed] = ACTIONS(4721), - [anon_sym_internal] = ACTIONS(4721), - [anon_sym_new] = ACTIONS(4721), - [anon_sym_override] = ACTIONS(4721), - [anon_sym_partial] = ACTIONS(4721), - [anon_sym_private] = ACTIONS(4721), - [anon_sym_protected] = ACTIONS(4721), - [anon_sym_public] = ACTIONS(4721), - [anon_sym_readonly] = ACTIONS(4721), - [anon_sym_required] = ACTIONS(4721), - [anon_sym_sealed] = ACTIONS(4721), - [anon_sym_virtual] = ACTIONS(4721), - [anon_sym_volatile] = ACTIONS(4721), - [anon_sym_where] = ACTIONS(4721), - [anon_sym_notnull] = ACTIONS(4721), - [anon_sym_unmanaged] = ACTIONS(4721), - [anon_sym_get] = ACTIONS(4721), - [anon_sym_set] = ACTIONS(4721), - [anon_sym_add] = ACTIONS(4721), - [anon_sym_remove] = ACTIONS(4721), - [anon_sym_init] = ACTIONS(4721), - [anon_sym_scoped] = ACTIONS(4721), - [anon_sym_var] = ACTIONS(4721), - [anon_sym_yield] = ACTIONS(4721), - [anon_sym_when] = ACTIONS(4721), - [anon_sym_from] = ACTIONS(4721), - [anon_sym_into] = ACTIONS(4721), - [anon_sym_join] = ACTIONS(4721), - [anon_sym_on] = ACTIONS(4721), - [anon_sym_equals] = ACTIONS(4721), - [anon_sym_let] = ACTIONS(4721), - [anon_sym_orderby] = ACTIONS(4721), - [anon_sym_ascending] = ACTIONS(4721), - [anon_sym_descending] = ACTIONS(4721), - [anon_sym_group] = ACTIONS(4721), - [anon_sym_by] = ACTIONS(4721), - [anon_sym_select] = ACTIONS(4721), - [aux_sym_preproc_if_token1] = ACTIONS(5261), + [anon_sym_SEMI] = ACTIONS(4811), + [anon_sym_EQ] = ACTIONS(5259), + [anon_sym_LBRACK] = ACTIONS(4811), + [anon_sym_COMMA] = ACTIONS(4811), + [anon_sym_RBRACK] = ACTIONS(4811), + [anon_sym_LPAREN] = ACTIONS(4811), + [anon_sym_RPAREN] = ACTIONS(4811), + [anon_sym_RBRACE] = ACTIONS(4811), + [anon_sym_LT] = ACTIONS(4813), + [anon_sym_GT] = ACTIONS(4813), + [anon_sym_QMARK] = ACTIONS(4813), + [anon_sym_BANG] = ACTIONS(4813), + [anon_sym_PLUS_PLUS] = ACTIONS(4811), + [anon_sym_DASH_DASH] = ACTIONS(4811), + [anon_sym_PLUS] = ACTIONS(4813), + [anon_sym_DASH] = ACTIONS(4813), + [anon_sym_STAR] = ACTIONS(4813), + [anon_sym_SLASH] = ACTIONS(4813), + [anon_sym_PERCENT] = ACTIONS(4813), + [anon_sym_CARET] = ACTIONS(4813), + [anon_sym_PIPE] = ACTIONS(4813), + [anon_sym_AMP] = ACTIONS(4813), + [anon_sym_LT_LT] = ACTIONS(4813), + [anon_sym_GT_GT] = ACTIONS(4813), + [anon_sym_GT_GT_GT] = ACTIONS(4813), + [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(4813), + [anon_sym_switch] = ACTIONS(4811), + [anon_sym_DOT_DOT] = ACTIONS(4811), + [anon_sym_and] = ACTIONS(4811), + [anon_sym_or] = ACTIONS(4811), + [anon_sym_PLUS_EQ] = ACTIONS(5261), + [anon_sym_DASH_EQ] = ACTIONS(5261), + [anon_sym_STAR_EQ] = ACTIONS(5261), + [anon_sym_SLASH_EQ] = ACTIONS(5261), + [anon_sym_PERCENT_EQ] = ACTIONS(5261), + [anon_sym_AMP_EQ] = ACTIONS(5261), + [anon_sym_CARET_EQ] = ACTIONS(5261), + [anon_sym_PIPE_EQ] = ACTIONS(5261), + [anon_sym_LT_LT_EQ] = ACTIONS(5261), + [anon_sym_GT_GT_EQ] = ACTIONS(5261), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(5261), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(5261), + [anon_sym_AMP_AMP] = ACTIONS(4811), + [anon_sym_PIPE_PIPE] = ACTIONS(4811), + [anon_sym_QMARK_QMARK] = ACTIONS(4813), + [anon_sym_as] = ACTIONS(4811), + [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), @@ -480417,8 +479921,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3132] = { - [sym_argument_list] = STATE(3216), - [sym_initializer_expression] = STATE(3376), [sym_preproc_region] = STATE(3132), [sym_preproc_endregion] = STATE(3132), [sym_preproc_line] = STATE(3132), @@ -480428,57 +479930,59 @@ 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(4802), - [anon_sym_LBRACK] = ACTIONS(4802), - [anon_sym_COLON] = ACTIONS(4802), - [anon_sym_COMMA] = ACTIONS(4802), - [anon_sym_RBRACK] = ACTIONS(4802), - [anon_sym_LPAREN] = ACTIONS(5264), - [anon_sym_RPAREN] = ACTIONS(4802), - [anon_sym_LBRACE] = ACTIONS(1313), - [anon_sym_RBRACE] = ACTIONS(4802), - [anon_sym_LT] = ACTIONS(4806), - [anon_sym_GT] = ACTIONS(4806), - [anon_sym_in] = ACTIONS(4802), - [anon_sym_QMARK] = ACTIONS(4806), - [anon_sym_BANG] = ACTIONS(4806), - [anon_sym_PLUS_PLUS] = ACTIONS(4802), - [anon_sym_DASH_DASH] = ACTIONS(4802), - [anon_sym_PLUS] = ACTIONS(4806), - [anon_sym_DASH] = ACTIONS(4806), - [anon_sym_STAR] = ACTIONS(4802), - [anon_sym_SLASH] = ACTIONS(4806), - [anon_sym_PERCENT] = ACTIONS(4802), - [anon_sym_CARET] = ACTIONS(4802), - [anon_sym_PIPE] = ACTIONS(4806), - [anon_sym_AMP] = ACTIONS(4806), - [anon_sym_LT_LT] = ACTIONS(4802), - [anon_sym_GT_GT] = ACTIONS(4806), - [anon_sym_GT_GT_GT] = ACTIONS(4802), - [anon_sym_EQ_EQ] = ACTIONS(4802), - [anon_sym_BANG_EQ] = ACTIONS(4802), - [anon_sym_GT_EQ] = ACTIONS(4802), - [anon_sym_LT_EQ] = ACTIONS(4802), - [anon_sym_DOT] = ACTIONS(4806), - [anon_sym_EQ_GT] = ACTIONS(4802), - [anon_sym_switch] = ACTIONS(4802), - [anon_sym_when] = ACTIONS(4802), - [anon_sym_DOT_DOT] = ACTIONS(4802), - [anon_sym_and] = ACTIONS(4802), - [anon_sym_or] = ACTIONS(4802), - [anon_sym_AMP_AMP] = ACTIONS(4802), - [anon_sym_PIPE_PIPE] = ACTIONS(4802), - [anon_sym_QMARK_QMARK] = ACTIONS(4802), - [anon_sym_on] = ACTIONS(4802), - [anon_sym_equals] = ACTIONS(4802), - [anon_sym_by] = ACTIONS(4802), - [anon_sym_as] = ACTIONS(4802), - [anon_sym_is] = ACTIONS(4802), - [anon_sym_DASH_GT] = ACTIONS(4802), - [anon_sym_with] = ACTIONS(4802), - [aux_sym_preproc_if_token3] = ACTIONS(4802), - [aux_sym_preproc_else_token1] = ACTIONS(4802), - [aux_sym_preproc_elif_token1] = ACTIONS(4802), + [anon_sym_EQ] = ACTIONS(5263), + [anon_sym_LBRACK] = ACTIONS(4811), + [anon_sym_LPAREN] = ACTIONS(4811), + [anon_sym_LT] = ACTIONS(4813), + [anon_sym_GT] = ACTIONS(4813), + [anon_sym_where] = ACTIONS(4811), + [anon_sym_QMARK] = ACTIONS(4813), + [anon_sym_BANG] = ACTIONS(4813), + [anon_sym_PLUS_PLUS] = ACTIONS(4811), + [anon_sym_DASH_DASH] = ACTIONS(4811), + [anon_sym_PLUS] = ACTIONS(4813), + [anon_sym_DASH] = ACTIONS(4813), + [anon_sym_STAR] = ACTIONS(4813), + [anon_sym_SLASH] = ACTIONS(4813), + [anon_sym_PERCENT] = ACTIONS(4813), + [anon_sym_CARET] = ACTIONS(4813), + [anon_sym_PIPE] = ACTIONS(4813), + [anon_sym_AMP] = ACTIONS(4813), + [anon_sym_LT_LT] = ACTIONS(4813), + [anon_sym_GT_GT] = ACTIONS(4813), + [anon_sym_GT_GT_GT] = ACTIONS(4813), + [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(4813), + [anon_sym_switch] = ACTIONS(4811), + [anon_sym_DOT_DOT] = ACTIONS(4811), + [anon_sym_PLUS_EQ] = ACTIONS(5265), + [anon_sym_DASH_EQ] = ACTIONS(5265), + [anon_sym_STAR_EQ] = ACTIONS(5265), + [anon_sym_SLASH_EQ] = ACTIONS(5265), + [anon_sym_PERCENT_EQ] = ACTIONS(5265), + [anon_sym_AMP_EQ] = ACTIONS(5265), + [anon_sym_CARET_EQ] = ACTIONS(5265), + [anon_sym_PIPE_EQ] = ACTIONS(5265), + [anon_sym_LT_LT_EQ] = ACTIONS(5265), + [anon_sym_GT_GT_EQ] = ACTIONS(5265), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(5265), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(5265), + [anon_sym_AMP_AMP] = ACTIONS(4811), + [anon_sym_PIPE_PIPE] = ACTIONS(4811), + [anon_sym_QMARK_QMARK] = ACTIONS(4813), + [anon_sym_from] = ACTIONS(4811), + [anon_sym_join] = ACTIONS(4811), + [anon_sym_let] = ACTIONS(4811), + [anon_sym_orderby] = ACTIONS(4811), + [anon_sym_group] = 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_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -480491,6 +479995,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3133] = { + [sym_argument_list] = STATE(3348), + [sym_bracketed_argument_list] = STATE(2605), [sym_preproc_region] = STATE(3133), [sym_preproc_endregion] = STATE(3133), [sym_preproc_line] = STATE(3133), @@ -480500,59 +480006,57 @@ 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(3616), - [anon_sym_LBRACK] = ACTIONS(3616), - [anon_sym_COLON] = ACTIONS(3619), - [anon_sym_COMMA] = ACTIONS(3616), - [anon_sym_RBRACK] = ACTIONS(3616), - [anon_sym_LPAREN] = ACTIONS(3616), - [anon_sym_RPAREN] = ACTIONS(3616), - [anon_sym_LBRACE] = ACTIONS(3616), - [anon_sym_RBRACE] = ACTIONS(3616), - [anon_sym_LT] = ACTIONS(3619), - [anon_sym_GT] = ACTIONS(3619), - [anon_sym_in] = ACTIONS(3619), - [anon_sym_QMARK] = ACTIONS(3619), - [anon_sym_BANG] = ACTIONS(3619), - [anon_sym_PLUS_PLUS] = ACTIONS(3616), - [anon_sym_DASH_DASH] = ACTIONS(3616), - [anon_sym_PLUS] = ACTIONS(3619), - [anon_sym_DASH] = ACTIONS(3619), - [anon_sym_STAR] = ACTIONS(3616), - [anon_sym_SLASH] = ACTIONS(3619), - [anon_sym_PERCENT] = ACTIONS(3616), - [anon_sym_CARET] = ACTIONS(3616), - [anon_sym_PIPE] = ACTIONS(3619), - [anon_sym_AMP] = ACTIONS(3619), - [anon_sym_LT_LT] = ACTIONS(3616), - [anon_sym_GT_GT] = ACTIONS(3619), - [anon_sym_GT_GT_GT] = ACTIONS(3616), - [anon_sym_EQ_EQ] = ACTIONS(3616), - [anon_sym_BANG_EQ] = ACTIONS(3616), - [anon_sym_GT_EQ] = ACTIONS(3616), - [anon_sym_LT_EQ] = ACTIONS(3616), - [anon_sym_DOT] = ACTIONS(3619), - [anon_sym_EQ_GT] = ACTIONS(3616), - [anon_sym_COLON_COLON] = ACTIONS(3445), - [anon_sym_switch] = ACTIONS(3616), - [anon_sym_when] = ACTIONS(3616), - [anon_sym_DOT_DOT] = ACTIONS(3616), - [anon_sym_and] = ACTIONS(3616), - [anon_sym_or] = ACTIONS(3616), - [anon_sym_AMP_AMP] = ACTIONS(3616), - [anon_sym_PIPE_PIPE] = ACTIONS(3616), - [anon_sym_QMARK_QMARK] = ACTIONS(3616), - [anon_sym_into] = ACTIONS(3616), - [anon_sym_on] = ACTIONS(3616), - [anon_sym_equals] = ACTIONS(3616), - [anon_sym_by] = ACTIONS(3616), - [anon_sym_as] = ACTIONS(3616), - [anon_sym_is] = ACTIONS(3616), - [anon_sym_DASH_GT] = ACTIONS(3616), - [anon_sym_with] = ACTIONS(3616), - [aux_sym_preproc_if_token3] = ACTIONS(3616), - [aux_sym_preproc_else_token1] = ACTIONS(3616), - [aux_sym_preproc_elif_token1] = ACTIONS(3616), + [anon_sym_SEMI] = ACTIONS(4842), + [anon_sym_LBRACK] = ACTIONS(5236), + [anon_sym_COLON] = ACTIONS(4842), + [anon_sym_COMMA] = ACTIONS(4842), + [anon_sym_RBRACK] = ACTIONS(4842), + [anon_sym_LPAREN] = ACTIONS(5227), + [anon_sym_RPAREN] = ACTIONS(4842), + [anon_sym_RBRACE] = ACTIONS(4842), + [anon_sym_LT] = ACTIONS(4844), + [anon_sym_GT] = ACTIONS(4844), + [anon_sym_in] = ACTIONS(4844), + [anon_sym_QMARK] = ACTIONS(4844), + [anon_sym_BANG] = ACTIONS(5238), + [anon_sym_PLUS_PLUS] = ACTIONS(5240), + [anon_sym_DASH_DASH] = ACTIONS(5240), + [anon_sym_PLUS] = ACTIONS(4844), + [anon_sym_DASH] = ACTIONS(4844), + [anon_sym_STAR] = ACTIONS(4842), + [anon_sym_SLASH] = ACTIONS(4844), + [anon_sym_PERCENT] = ACTIONS(4842), + [anon_sym_CARET] = ACTIONS(4842), + [anon_sym_PIPE] = ACTIONS(4844), + [anon_sym_AMP] = ACTIONS(4844), + [anon_sym_LT_LT] = ACTIONS(4842), + [anon_sym_GT_GT] = ACTIONS(4844), + [anon_sym_GT_GT_GT] = ACTIONS(4842), + [anon_sym_EQ_EQ] = ACTIONS(4842), + [anon_sym_BANG_EQ] = ACTIONS(4842), + [anon_sym_GT_EQ] = ACTIONS(4842), + [anon_sym_LT_EQ] = ACTIONS(4842), + [anon_sym_DOT] = ACTIONS(4092), + [anon_sym_EQ_GT] = ACTIONS(4842), + [anon_sym_switch] = ACTIONS(4842), + [anon_sym_when] = ACTIONS(4842), + [anon_sym_DOT_DOT] = ACTIONS(4842), + [anon_sym_and] = ACTIONS(4842), + [anon_sym_or] = ACTIONS(4842), + [anon_sym_AMP_AMP] = ACTIONS(4842), + [anon_sym_PIPE_PIPE] = ACTIONS(4842), + [anon_sym_QMARK_QMARK] = ACTIONS(4842), + [anon_sym_into] = ACTIONS(4842), + [anon_sym_on] = ACTIONS(4842), + [anon_sym_equals] = ACTIONS(4842), + [anon_sym_by] = ACTIONS(4842), + [anon_sym_as] = ACTIONS(4842), + [anon_sym_is] = ACTIONS(4842), + [anon_sym_DASH_GT] = ACTIONS(4094), + [anon_sym_with] = ACTIONS(4842), + [aux_sym_preproc_if_token3] = ACTIONS(4842), + [aux_sym_preproc_else_token1] = ACTIONS(4842), + [aux_sym_preproc_elif_token1] = ACTIONS(4842), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -480565,6 +480069,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3134] = { + [sym_initializer_expression] = STATE(3289), [sym_preproc_region] = STATE(3134), [sym_preproc_endregion] = STATE(3134), [sym_preproc_line] = STATE(3134), @@ -480574,59 +480079,58 @@ 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_EQ] = ACTIONS(5266), - [anon_sym_LBRACK] = ACTIONS(4860), - [anon_sym_COLON] = ACTIONS(4860), - [anon_sym_COMMA] = ACTIONS(4860), - [anon_sym_LPAREN] = ACTIONS(4860), - [anon_sym_RPAREN] = ACTIONS(4860), - [anon_sym_RBRACE] = ACTIONS(4860), - [anon_sym_LT] = ACTIONS(4862), - [anon_sym_GT] = ACTIONS(4862), - [anon_sym_QMARK] = ACTIONS(4862), - [anon_sym_BANG] = ACTIONS(4862), - [anon_sym_PLUS_PLUS] = ACTIONS(4860), - [anon_sym_DASH_DASH] = ACTIONS(4860), - [anon_sym_PLUS] = ACTIONS(4862), - [anon_sym_DASH] = ACTIONS(4862), - [anon_sym_STAR] = ACTIONS(4862), - [anon_sym_SLASH] = ACTIONS(4862), - [anon_sym_PERCENT] = ACTIONS(4862), - [anon_sym_CARET] = ACTIONS(4862), - [anon_sym_PIPE] = ACTIONS(4862), - [anon_sym_AMP] = ACTIONS(4862), - [anon_sym_LT_LT] = ACTIONS(4862), - [anon_sym_GT_GT] = ACTIONS(4862), - [anon_sym_GT_GT_GT] = ACTIONS(4862), - [anon_sym_EQ_EQ] = ACTIONS(4860), - [anon_sym_BANG_EQ] = ACTIONS(4860), - [anon_sym_GT_EQ] = ACTIONS(4860), - [anon_sym_LT_EQ] = ACTIONS(4860), - [anon_sym_DOT] = ACTIONS(4862), - [anon_sym_switch] = ACTIONS(4860), - [anon_sym_DOT_DOT] = ACTIONS(4860), - [anon_sym_and] = ACTIONS(4860), - [anon_sym_or] = ACTIONS(4860), - [anon_sym_PLUS_EQ] = ACTIONS(5268), - [anon_sym_DASH_EQ] = ACTIONS(5268), - [anon_sym_STAR_EQ] = ACTIONS(5268), - [anon_sym_SLASH_EQ] = ACTIONS(5268), - [anon_sym_PERCENT_EQ] = ACTIONS(5268), - [anon_sym_AMP_EQ] = ACTIONS(5268), - [anon_sym_CARET_EQ] = ACTIONS(5268), - [anon_sym_PIPE_EQ] = ACTIONS(5268), - [anon_sym_LT_LT_EQ] = ACTIONS(5268), - [anon_sym_GT_GT_EQ] = ACTIONS(5268), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(5268), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(5268), - [anon_sym_AMP_AMP] = ACTIONS(4860), - [anon_sym_PIPE_PIPE] = ACTIONS(4860), - [anon_sym_QMARK_QMARK] = ACTIONS(4862), - [anon_sym_into] = ACTIONS(4860), - [anon_sym_as] = ACTIONS(4860), - [anon_sym_is] = ACTIONS(4860), - [anon_sym_DASH_GT] = ACTIONS(4860), - [anon_sym_with] = ACTIONS(4860), + [anon_sym_SEMI] = ACTIONS(4827), + [anon_sym_LBRACK] = ACTIONS(4827), + [anon_sym_COLON] = ACTIONS(4827), + [anon_sym_COMMA] = ACTIONS(4827), + [anon_sym_RBRACK] = ACTIONS(4827), + [anon_sym_LPAREN] = ACTIONS(4827), + [anon_sym_RPAREN] = ACTIONS(4827), + [anon_sym_LBRACE] = ACTIONS(1155), + [anon_sym_RBRACE] = ACTIONS(4827), + [anon_sym_LT] = ACTIONS(4829), + [anon_sym_GT] = ACTIONS(4829), + [anon_sym_in] = ACTIONS(4829), + [anon_sym_QMARK] = ACTIONS(4829), + [anon_sym_BANG] = ACTIONS(4829), + [anon_sym_PLUS_PLUS] = ACTIONS(4827), + [anon_sym_DASH_DASH] = ACTIONS(4827), + [anon_sym_PLUS] = ACTIONS(4829), + [anon_sym_DASH] = ACTIONS(4829), + [anon_sym_STAR] = ACTIONS(4827), + [anon_sym_SLASH] = ACTIONS(4829), + [anon_sym_PERCENT] = ACTIONS(4827), + [anon_sym_CARET] = ACTIONS(4827), + [anon_sym_PIPE] = ACTIONS(4829), + [anon_sym_AMP] = ACTIONS(4829), + [anon_sym_LT_LT] = ACTIONS(4827), + [anon_sym_GT_GT] = ACTIONS(4829), + [anon_sym_GT_GT_GT] = ACTIONS(4827), + [anon_sym_EQ_EQ] = ACTIONS(4827), + [anon_sym_BANG_EQ] = ACTIONS(4827), + [anon_sym_GT_EQ] = ACTIONS(4827), + [anon_sym_LT_EQ] = ACTIONS(4827), + [anon_sym_DOT] = ACTIONS(4829), + [anon_sym_EQ_GT] = ACTIONS(4827), + [anon_sym_switch] = ACTIONS(4827), + [anon_sym_when] = ACTIONS(4827), + [anon_sym_DOT_DOT] = ACTIONS(4827), + [anon_sym_and] = ACTIONS(4827), + [anon_sym_or] = ACTIONS(4827), + [anon_sym_AMP_AMP] = ACTIONS(4827), + [anon_sym_PIPE_PIPE] = ACTIONS(4827), + [anon_sym_QMARK_QMARK] = ACTIONS(4827), + [anon_sym_into] = ACTIONS(4827), + [anon_sym_on] = ACTIONS(4827), + [anon_sym_equals] = ACTIONS(4827), + [anon_sym_by] = ACTIONS(4827), + [anon_sym_as] = ACTIONS(4827), + [anon_sym_is] = ACTIONS(4827), + [anon_sym_DASH_GT] = ACTIONS(4827), + [anon_sym_with] = ACTIONS(4827), + [aux_sym_preproc_if_token3] = ACTIONS(4827), + [aux_sym_preproc_else_token1] = ACTIONS(4827), + [aux_sym_preproc_elif_token1] = ACTIONS(4827), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -480648,59 +480152,59 @@ 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_EQ] = ACTIONS(3704), - [anon_sym_LBRACK] = ACTIONS(3719), - [anon_sym_COLON] = ACTIONS(3719), - [anon_sym_COMMA] = ACTIONS(4271), - [anon_sym_RBRACK] = ACTIONS(4271), - [anon_sym_LPAREN] = ACTIONS(3719), - [anon_sym_RPAREN] = ACTIONS(4271), - [anon_sym_RBRACE] = ACTIONS(4271), - [anon_sym_LT] = ACTIONS(3704), - [anon_sym_GT] = ACTIONS(3704), - [anon_sym_QMARK] = ACTIONS(3704), - [anon_sym_BANG] = ACTIONS(3704), - [anon_sym_PLUS_PLUS] = ACTIONS(3719), - [anon_sym_DASH_DASH] = ACTIONS(3719), - [anon_sym_PLUS] = ACTIONS(3704), - [anon_sym_DASH] = ACTIONS(3704), - [anon_sym_STAR] = ACTIONS(3704), - [anon_sym_SLASH] = ACTIONS(3704), - [anon_sym_PERCENT] = ACTIONS(3704), - [anon_sym_CARET] = ACTIONS(3704), - [anon_sym_PIPE] = ACTIONS(3704), - [anon_sym_AMP] = ACTIONS(3704), - [anon_sym_LT_LT] = ACTIONS(3704), - [anon_sym_GT_GT] = ACTIONS(3704), - [anon_sym_GT_GT_GT] = ACTIONS(3704), - [anon_sym_EQ_EQ] = ACTIONS(3719), - [anon_sym_BANG_EQ] = ACTIONS(3719), - [anon_sym_GT_EQ] = ACTIONS(3719), - [anon_sym_LT_EQ] = ACTIONS(3719), - [anon_sym_DOT] = ACTIONS(3704), - [anon_sym_switch] = ACTIONS(3719), - [anon_sym_DOT_DOT] = ACTIONS(3719), - [anon_sym_and] = ACTIONS(4271), - [anon_sym_or] = ACTIONS(4271), - [anon_sym_PLUS_EQ] = ACTIONS(3719), - [anon_sym_DASH_EQ] = ACTIONS(3719), - [anon_sym_STAR_EQ] = ACTIONS(3719), - [anon_sym_SLASH_EQ] = ACTIONS(3719), - [anon_sym_PERCENT_EQ] = ACTIONS(3719), - [anon_sym_AMP_EQ] = ACTIONS(3719), - [anon_sym_CARET_EQ] = ACTIONS(3719), - [anon_sym_PIPE_EQ] = ACTIONS(3719), - [anon_sym_LT_LT_EQ] = ACTIONS(3719), - [anon_sym_GT_GT_EQ] = ACTIONS(3719), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3719), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3719), - [anon_sym_AMP_AMP] = ACTIONS(3719), - [anon_sym_PIPE_PIPE] = ACTIONS(3719), - [anon_sym_QMARK_QMARK] = ACTIONS(3704), - [anon_sym_as] = ACTIONS(3719), - [anon_sym_is] = ACTIONS(3719), - [anon_sym_DASH_GT] = ACTIONS(3719), - [anon_sym_with] = ACTIONS(3719), + [anon_sym_SEMI] = ACTIONS(3600), + [anon_sym_LBRACK] = ACTIONS(3600), + [anon_sym_COLON] = ACTIONS(3603), + [anon_sym_COMMA] = ACTIONS(3600), + [anon_sym_RBRACK] = ACTIONS(3600), + [anon_sym_LPAREN] = ACTIONS(3600), + [anon_sym_RPAREN] = ACTIONS(3600), + [anon_sym_LBRACE] = ACTIONS(3600), + [anon_sym_RBRACE] = ACTIONS(3600), + [anon_sym_LT] = ACTIONS(3603), + [anon_sym_GT] = ACTIONS(3603), + [anon_sym_in] = ACTIONS(3603), + [anon_sym_QMARK] = ACTIONS(3603), + [anon_sym_BANG] = ACTIONS(3603), + [anon_sym_PLUS_PLUS] = ACTIONS(3600), + [anon_sym_DASH_DASH] = ACTIONS(3600), + [anon_sym_PLUS] = ACTIONS(3603), + [anon_sym_DASH] = ACTIONS(3603), + [anon_sym_STAR] = ACTIONS(3600), + [anon_sym_SLASH] = ACTIONS(3603), + [anon_sym_PERCENT] = ACTIONS(3600), + [anon_sym_CARET] = ACTIONS(3600), + [anon_sym_PIPE] = ACTIONS(3603), + [anon_sym_AMP] = ACTIONS(3603), + [anon_sym_LT_LT] = ACTIONS(3600), + [anon_sym_GT_GT] = ACTIONS(3603), + [anon_sym_GT_GT_GT] = ACTIONS(3600), + [anon_sym_EQ_EQ] = ACTIONS(3600), + [anon_sym_BANG_EQ] = ACTIONS(3600), + [anon_sym_GT_EQ] = ACTIONS(3600), + [anon_sym_LT_EQ] = ACTIONS(3600), + [anon_sym_DOT] = ACTIONS(3603), + [anon_sym_EQ_GT] = ACTIONS(3600), + [anon_sym_COLON_COLON] = ACTIONS(3429), + [anon_sym_switch] = ACTIONS(3600), + [anon_sym_when] = ACTIONS(3600), + [anon_sym_DOT_DOT] = ACTIONS(3600), + [anon_sym_and] = ACTIONS(3600), + [anon_sym_or] = ACTIONS(3600), + [anon_sym_AMP_AMP] = ACTIONS(3600), + [anon_sym_PIPE_PIPE] = ACTIONS(3600), + [anon_sym_QMARK_QMARK] = ACTIONS(3600), + [anon_sym_into] = ACTIONS(3600), + [anon_sym_on] = ACTIONS(3600), + [anon_sym_equals] = ACTIONS(3600), + [anon_sym_by] = ACTIONS(3600), + [anon_sym_as] = ACTIONS(3600), + [anon_sym_is] = ACTIONS(3600), + [anon_sym_DASH_GT] = ACTIONS(3600), + [anon_sym_with] = ACTIONS(3600), + [aux_sym_preproc_if_token3] = ACTIONS(3600), + [aux_sym_preproc_else_token1] = ACTIONS(3600), + [aux_sym_preproc_elif_token1] = ACTIONS(3600), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -480713,6 +480217,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3136] = { + [sym_argument_list] = STATE(3348), + [sym_bracketed_argument_list] = STATE(2605), [sym_preproc_region] = STATE(3136), [sym_preproc_endregion] = STATE(3136), [sym_preproc_line] = STATE(3136), @@ -480722,59 +480228,57 @@ 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(4860), - [anon_sym_EQ] = ACTIONS(5270), - [anon_sym_LBRACK] = ACTIONS(4860), - [anon_sym_COMMA] = ACTIONS(4860), - [anon_sym_RBRACK] = ACTIONS(4860), - [anon_sym_LPAREN] = ACTIONS(4860), - [anon_sym_RPAREN] = ACTIONS(4860), - [anon_sym_RBRACE] = ACTIONS(4860), - [anon_sym_LT] = ACTIONS(4862), - [anon_sym_GT] = ACTIONS(4862), - [anon_sym_QMARK] = ACTIONS(4862), - [anon_sym_BANG] = ACTIONS(4862), - [anon_sym_PLUS_PLUS] = ACTIONS(4860), - [anon_sym_DASH_DASH] = ACTIONS(4860), - [anon_sym_PLUS] = ACTIONS(4862), - [anon_sym_DASH] = ACTIONS(4862), - [anon_sym_STAR] = ACTIONS(4862), - [anon_sym_SLASH] = ACTIONS(4862), - [anon_sym_PERCENT] = ACTIONS(4862), - [anon_sym_CARET] = ACTIONS(4862), - [anon_sym_PIPE] = ACTIONS(4862), - [anon_sym_AMP] = ACTIONS(4862), - [anon_sym_LT_LT] = ACTIONS(4862), - [anon_sym_GT_GT] = ACTIONS(4862), - [anon_sym_GT_GT_GT] = ACTIONS(4862), - [anon_sym_EQ_EQ] = ACTIONS(4860), - [anon_sym_BANG_EQ] = ACTIONS(4860), - [anon_sym_GT_EQ] = ACTIONS(4860), - [anon_sym_LT_EQ] = ACTIONS(4860), - [anon_sym_DOT] = ACTIONS(4862), - [anon_sym_switch] = ACTIONS(4860), - [anon_sym_DOT_DOT] = ACTIONS(4860), - [anon_sym_and] = ACTIONS(4860), - [anon_sym_or] = ACTIONS(4860), - [anon_sym_PLUS_EQ] = ACTIONS(5272), - [anon_sym_DASH_EQ] = ACTIONS(5272), - [anon_sym_STAR_EQ] = ACTIONS(5272), - [anon_sym_SLASH_EQ] = ACTIONS(5272), - [anon_sym_PERCENT_EQ] = ACTIONS(5272), - [anon_sym_AMP_EQ] = ACTIONS(5272), - [anon_sym_CARET_EQ] = ACTIONS(5272), - [anon_sym_PIPE_EQ] = ACTIONS(5272), - [anon_sym_LT_LT_EQ] = ACTIONS(5272), - [anon_sym_GT_GT_EQ] = ACTIONS(5272), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(5272), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(5272), - [anon_sym_AMP_AMP] = ACTIONS(4860), - [anon_sym_PIPE_PIPE] = ACTIONS(4860), - [anon_sym_QMARK_QMARK] = ACTIONS(4862), - [anon_sym_as] = ACTIONS(4860), - [anon_sym_is] = ACTIONS(4860), - [anon_sym_DASH_GT] = ACTIONS(4860), - [anon_sym_with] = ACTIONS(4860), + [anon_sym_SEMI] = ACTIONS(4838), + [anon_sym_LBRACK] = ACTIONS(5236), + [anon_sym_COLON] = ACTIONS(4838), + [anon_sym_COMMA] = ACTIONS(4838), + [anon_sym_RBRACK] = ACTIONS(4838), + [anon_sym_LPAREN] = ACTIONS(5227), + [anon_sym_RPAREN] = ACTIONS(4838), + [anon_sym_RBRACE] = ACTIONS(4838), + [anon_sym_LT] = ACTIONS(4840), + [anon_sym_GT] = ACTIONS(4840), + [anon_sym_in] = ACTIONS(4840), + [anon_sym_QMARK] = ACTIONS(4840), + [anon_sym_BANG] = ACTIONS(5238), + [anon_sym_PLUS_PLUS] = ACTIONS(5240), + [anon_sym_DASH_DASH] = ACTIONS(5240), + [anon_sym_PLUS] = ACTIONS(4840), + [anon_sym_DASH] = ACTIONS(4840), + [anon_sym_STAR] = ACTIONS(4838), + [anon_sym_SLASH] = ACTIONS(4840), + [anon_sym_PERCENT] = ACTIONS(4838), + [anon_sym_CARET] = ACTIONS(4838), + [anon_sym_PIPE] = ACTIONS(4840), + [anon_sym_AMP] = ACTIONS(4840), + [anon_sym_LT_LT] = ACTIONS(4838), + [anon_sym_GT_GT] = ACTIONS(4840), + [anon_sym_GT_GT_GT] = ACTIONS(4838), + [anon_sym_EQ_EQ] = ACTIONS(4838), + [anon_sym_BANG_EQ] = ACTIONS(4838), + [anon_sym_GT_EQ] = ACTIONS(4838), + [anon_sym_LT_EQ] = ACTIONS(4838), + [anon_sym_DOT] = ACTIONS(4092), + [anon_sym_EQ_GT] = ACTIONS(4838), + [anon_sym_switch] = ACTIONS(4838), + [anon_sym_when] = ACTIONS(4838), + [anon_sym_DOT_DOT] = ACTIONS(4838), + [anon_sym_and] = ACTIONS(4838), + [anon_sym_or] = ACTIONS(4838), + [anon_sym_AMP_AMP] = ACTIONS(4838), + [anon_sym_PIPE_PIPE] = ACTIONS(4838), + [anon_sym_QMARK_QMARK] = ACTIONS(4838), + [anon_sym_into] = ACTIONS(4838), + [anon_sym_on] = ACTIONS(4838), + [anon_sym_equals] = ACTIONS(4838), + [anon_sym_by] = ACTIONS(4838), + [anon_sym_as] = ACTIONS(4838), + [anon_sym_is] = ACTIONS(4838), + [anon_sym_DASH_GT] = ACTIONS(4094), + [anon_sym_with] = ACTIONS(4838), + [aux_sym_preproc_if_token3] = ACTIONS(4838), + [aux_sym_preproc_else_token1] = ACTIONS(4838), + [aux_sym_preproc_elif_token1] = ACTIONS(4838), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -480787,7 +480291,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3137] = { - [sym_block] = STATE(1970), + [sym_type_argument_list] = STATE(3185), [sym_preproc_region] = STATE(3137), [sym_preproc_endregion] = STATE(3137), [sym_preproc_line] = STATE(3137), @@ -480797,58 +480301,58 @@ 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), - [sym__identifier_token] = ACTIONS(3482), - [anon_sym_extern] = ACTIONS(3482), - [anon_sym_alias] = ACTIONS(3482), - [anon_sym_global] = ACTIONS(3482), - [anon_sym_unsafe] = ACTIONS(3482), - [anon_sym_static] = ACTIONS(3482), - [anon_sym_LPAREN] = ACTIONS(5084), - [anon_sym_class] = ACTIONS(3482), - [anon_sym_ref] = ACTIONS(3482), - [anon_sym_struct] = ACTIONS(3482), - [anon_sym_enum] = ACTIONS(3482), - [anon_sym_LBRACE] = ACTIONS(5274), - [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_scoped] = ACTIONS(3482), - [anon_sym_var] = ACTIONS(3482), - [sym_predefined_type] = ACTIONS(3482), - [anon_sym_yield] = ACTIONS(3482), - [anon_sym_when] = ACTIONS(3482), - [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_SEMI] = ACTIONS(3640), + [anon_sym_LBRACK] = ACTIONS(3640), + [anon_sym_COLON] = ACTIONS(3640), + [anon_sym_COMMA] = ACTIONS(3640), + [anon_sym_RBRACK] = ACTIONS(3640), + [anon_sym_LPAREN] = ACTIONS(3640), + [anon_sym_RPAREN] = ACTIONS(3640), + [anon_sym_LBRACE] = ACTIONS(3640), + [anon_sym_RBRACE] = ACTIONS(3640), + [anon_sym_LT] = ACTIONS(5229), + [anon_sym_GT] = ACTIONS(3638), + [anon_sym_in] = ACTIONS(3638), + [anon_sym_QMARK] = ACTIONS(3638), + [anon_sym_BANG] = ACTIONS(3638), + [anon_sym_PLUS_PLUS] = ACTIONS(3640), + [anon_sym_DASH_DASH] = ACTIONS(3640), + [anon_sym_PLUS] = ACTIONS(3638), + [anon_sym_DASH] = ACTIONS(3638), + [anon_sym_STAR] = ACTIONS(3640), + [anon_sym_SLASH] = ACTIONS(3638), + [anon_sym_PERCENT] = ACTIONS(3640), + [anon_sym_CARET] = ACTIONS(3640), + [anon_sym_PIPE] = ACTIONS(3638), + [anon_sym_AMP] = ACTIONS(3638), + [anon_sym_LT_LT] = ACTIONS(3640), + [anon_sym_GT_GT] = ACTIONS(3638), + [anon_sym_GT_GT_GT] = ACTIONS(3640), + [anon_sym_EQ_EQ] = ACTIONS(3640), + [anon_sym_BANG_EQ] = ACTIONS(3640), + [anon_sym_GT_EQ] = ACTIONS(3640), + [anon_sym_LT_EQ] = ACTIONS(3640), + [anon_sym_DOT] = ACTIONS(3638), + [anon_sym_EQ_GT] = ACTIONS(3640), + [anon_sym_switch] = ACTIONS(3640), + [anon_sym_when] = ACTIONS(3640), + [anon_sym_DOT_DOT] = ACTIONS(3640), + [anon_sym_and] = ACTIONS(3640), + [anon_sym_or] = ACTIONS(3640), + [anon_sym_AMP_AMP] = ACTIONS(3640), + [anon_sym_PIPE_PIPE] = ACTIONS(3640), + [anon_sym_QMARK_QMARK] = ACTIONS(3640), + [anon_sym_into] = ACTIONS(3640), + [anon_sym_on] = ACTIONS(3640), + [anon_sym_equals] = ACTIONS(3640), + [anon_sym_by] = ACTIONS(3640), + [anon_sym_as] = ACTIONS(3640), + [anon_sym_is] = ACTIONS(3640), + [anon_sym_DASH_GT] = ACTIONS(3640), + [anon_sym_with] = ACTIONS(3640), + [aux_sym_preproc_if_token3] = ACTIONS(3640), + [aux_sym_preproc_else_token1] = ACTIONS(3640), + [aux_sym_preproc_elif_token1] = ACTIONS(3640), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -480861,7 +480365,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3138] = { - [sym_initializer_expression] = STATE(3284), + [sym_initializer_expression] = STATE(3255), [sym_preproc_region] = STATE(3138), [sym_preproc_endregion] = STATE(3138), [sym_preproc_line] = STATE(3138), @@ -480871,58 +480375,58 @@ 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(4916), - [anon_sym_LBRACK] = ACTIONS(4912), - [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(5276), - [anon_sym_RBRACE] = ACTIONS(4916), - [anon_sym_LT] = ACTIONS(4922), - [anon_sym_GT] = ACTIONS(4922), - [anon_sym_in] = ACTIONS(4922), - [anon_sym_QMARK] = ACTIONS(5279), - [anon_sym_BANG] = ACTIONS(4922), - [anon_sym_PLUS_PLUS] = ACTIONS(4916), - [anon_sym_DASH_DASH] = ACTIONS(4916), - [anon_sym_PLUS] = ACTIONS(4922), - [anon_sym_DASH] = ACTIONS(4922), - [anon_sym_STAR] = ACTIONS(4916), - [anon_sym_SLASH] = ACTIONS(4922), - [anon_sym_PERCENT] = ACTIONS(4916), - [anon_sym_CARET] = ACTIONS(4916), - [anon_sym_PIPE] = ACTIONS(4922), - [anon_sym_AMP] = ACTIONS(4922), - [anon_sym_LT_LT] = ACTIONS(4916), - [anon_sym_GT_GT] = ACTIONS(4922), - [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(4922), - [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_SEMI] = ACTIONS(4831), + [anon_sym_LBRACK] = ACTIONS(4831), + [anon_sym_COLON] = ACTIONS(4831), + [anon_sym_COMMA] = ACTIONS(4831), + [anon_sym_RBRACK] = ACTIONS(4831), + [anon_sym_LPAREN] = ACTIONS(4831), + [anon_sym_RPAREN] = ACTIONS(4831), + [anon_sym_LBRACE] = ACTIONS(1155), + [anon_sym_RBRACE] = ACTIONS(4831), + [anon_sym_LT] = ACTIONS(4833), + [anon_sym_GT] = ACTIONS(4833), + [anon_sym_in] = ACTIONS(4833), + [anon_sym_QMARK] = ACTIONS(4833), + [anon_sym_BANG] = ACTIONS(4833), + [anon_sym_PLUS_PLUS] = ACTIONS(4831), + [anon_sym_DASH_DASH] = ACTIONS(4831), + [anon_sym_PLUS] = ACTIONS(4833), + [anon_sym_DASH] = ACTIONS(4833), + [anon_sym_STAR] = ACTIONS(4831), + [anon_sym_SLASH] = ACTIONS(4833), + [anon_sym_PERCENT] = ACTIONS(4831), + [anon_sym_CARET] = ACTIONS(4831), + [anon_sym_PIPE] = ACTIONS(4833), + [anon_sym_AMP] = ACTIONS(4833), + [anon_sym_LT_LT] = ACTIONS(4831), + [anon_sym_GT_GT] = ACTIONS(4833), + [anon_sym_GT_GT_GT] = ACTIONS(4831), + [anon_sym_EQ_EQ] = ACTIONS(4831), + [anon_sym_BANG_EQ] = ACTIONS(4831), + [anon_sym_GT_EQ] = ACTIONS(4831), + [anon_sym_LT_EQ] = ACTIONS(4831), + [anon_sym_DOT] = ACTIONS(4833), + [anon_sym_EQ_GT] = ACTIONS(4831), + [anon_sym_switch] = ACTIONS(4831), + [anon_sym_when] = ACTIONS(4831), + [anon_sym_DOT_DOT] = ACTIONS(4831), + [anon_sym_and] = ACTIONS(4831), + [anon_sym_or] = ACTIONS(4831), + [anon_sym_AMP_AMP] = ACTIONS(4831), + [anon_sym_PIPE_PIPE] = ACTIONS(4831), + [anon_sym_QMARK_QMARK] = ACTIONS(4831), + [anon_sym_into] = ACTIONS(4831), + [anon_sym_on] = ACTIONS(4831), + [anon_sym_equals] = ACTIONS(4831), + [anon_sym_by] = ACTIONS(4831), + [anon_sym_as] = ACTIONS(4831), + [anon_sym_is] = ACTIONS(4831), + [anon_sym_DASH_GT] = ACTIONS(4831), + [anon_sym_with] = ACTIONS(4831), + [aux_sym_preproc_if_token3] = ACTIONS(4831), + [aux_sym_preproc_else_token1] = ACTIONS(4831), + [aux_sym_preproc_elif_token1] = ACTIONS(4831), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -480935,8 +480439,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3139] = { - [sym_argument_list] = STATE(3259), - [sym_bracketed_argument_list] = STATE(2613), + [sym_initializer_expression] = STATE(3259), [sym_preproc_region] = STATE(3139), [sym_preproc_endregion] = STATE(3139), [sym_preproc_line] = STATE(3139), @@ -480946,57 +480449,58 @@ 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(4843), - [anon_sym_LBRACK] = ACTIONS(5283), - [anon_sym_COLON] = ACTIONS(4843), - [anon_sym_COMMA] = ACTIONS(4843), - [anon_sym_RBRACK] = ACTIONS(4843), - [anon_sym_LPAREN] = ACTIONS(5247), - [anon_sym_RPAREN] = ACTIONS(4843), - [anon_sym_RBRACE] = ACTIONS(4843), - [anon_sym_LT] = ACTIONS(4845), - [anon_sym_GT] = ACTIONS(4845), - [anon_sym_in] = ACTIONS(4845), - [anon_sym_QMARK] = ACTIONS(4845), - [anon_sym_BANG] = ACTIONS(5285), - [anon_sym_PLUS_PLUS] = ACTIONS(5287), - [anon_sym_DASH_DASH] = ACTIONS(5287), - [anon_sym_PLUS] = ACTIONS(4845), - [anon_sym_DASH] = ACTIONS(4845), - [anon_sym_STAR] = ACTIONS(4843), - [anon_sym_SLASH] = ACTIONS(4845), - [anon_sym_PERCENT] = ACTIONS(4843), - [anon_sym_CARET] = ACTIONS(4843), - [anon_sym_PIPE] = ACTIONS(4845), - [anon_sym_AMP] = ACTIONS(4845), - [anon_sym_LT_LT] = ACTIONS(4843), - [anon_sym_GT_GT] = ACTIONS(4845), - [anon_sym_GT_GT_GT] = ACTIONS(4843), - [anon_sym_EQ_EQ] = ACTIONS(4843), - [anon_sym_BANG_EQ] = ACTIONS(4843), - [anon_sym_GT_EQ] = ACTIONS(4843), - [anon_sym_LT_EQ] = ACTIONS(4843), - [anon_sym_DOT] = ACTIONS(4075), - [anon_sym_EQ_GT] = ACTIONS(4843), - [anon_sym_switch] = ACTIONS(4843), - [anon_sym_when] = ACTIONS(4843), - [anon_sym_DOT_DOT] = ACTIONS(4843), - [anon_sym_and] = ACTIONS(4843), - [anon_sym_or] = ACTIONS(4843), - [anon_sym_AMP_AMP] = ACTIONS(4843), - [anon_sym_PIPE_PIPE] = ACTIONS(4843), - [anon_sym_QMARK_QMARK] = ACTIONS(4843), - [anon_sym_into] = ACTIONS(4843), - [anon_sym_on] = ACTIONS(4843), - [anon_sym_equals] = ACTIONS(4843), - [anon_sym_by] = ACTIONS(4843), - [anon_sym_as] = ACTIONS(4843), - [anon_sym_is] = ACTIONS(4843), - [anon_sym_DASH_GT] = ACTIONS(4077), - [anon_sym_with] = ACTIONS(4843), - [aux_sym_preproc_if_token3] = ACTIONS(4843), - [aux_sym_preproc_else_token1] = ACTIONS(4843), - [aux_sym_preproc_elif_token1] = ACTIONS(4843), + [anon_sym_SEMI] = ACTIONS(4850), + [anon_sym_LBRACK] = ACTIONS(4846), + [anon_sym_COLON] = ACTIONS(4850), + [anon_sym_COMMA] = ACTIONS(4850), + [anon_sym_RBRACK] = ACTIONS(4850), + [anon_sym_LPAREN] = ACTIONS(4850), + [anon_sym_RPAREN] = ACTIONS(4850), + [anon_sym_LBRACE] = ACTIONS(5267), + [anon_sym_RBRACE] = ACTIONS(4850), + [anon_sym_LT] = ACTIONS(4856), + [anon_sym_GT] = ACTIONS(4856), + [anon_sym_in] = ACTIONS(4856), + [anon_sym_QMARK] = ACTIONS(5270), + [anon_sym_BANG] = ACTIONS(4856), + [anon_sym_PLUS_PLUS] = ACTIONS(4850), + [anon_sym_DASH_DASH] = ACTIONS(4850), + [anon_sym_PLUS] = ACTIONS(4856), + [anon_sym_DASH] = ACTIONS(4856), + [anon_sym_STAR] = ACTIONS(4850), + [anon_sym_SLASH] = ACTIONS(4856), + [anon_sym_PERCENT] = ACTIONS(4850), + [anon_sym_CARET] = ACTIONS(4850), + [anon_sym_PIPE] = ACTIONS(4856), + [anon_sym_AMP] = ACTIONS(4856), + [anon_sym_LT_LT] = ACTIONS(4850), + [anon_sym_GT_GT] = ACTIONS(4856), + [anon_sym_GT_GT_GT] = ACTIONS(4850), + [anon_sym_EQ_EQ] = ACTIONS(4850), + [anon_sym_BANG_EQ] = ACTIONS(4850), + [anon_sym_GT_EQ] = ACTIONS(4850), + [anon_sym_LT_EQ] = ACTIONS(4850), + [anon_sym_DOT] = ACTIONS(4856), + [anon_sym_EQ_GT] = ACTIONS(4850), + [anon_sym_switch] = ACTIONS(4850), + [anon_sym_when] = ACTIONS(4850), + [anon_sym_DOT_DOT] = ACTIONS(4850), + [anon_sym_and] = ACTIONS(4850), + [anon_sym_or] = ACTIONS(4850), + [anon_sym_AMP_AMP] = ACTIONS(4850), + [anon_sym_PIPE_PIPE] = ACTIONS(4850), + [anon_sym_QMARK_QMARK] = ACTIONS(4850), + [anon_sym_into] = ACTIONS(4850), + [anon_sym_on] = ACTIONS(4850), + [anon_sym_equals] = ACTIONS(4850), + [anon_sym_by] = ACTIONS(4850), + [anon_sym_as] = ACTIONS(4850), + [anon_sym_is] = ACTIONS(4850), + [anon_sym_DASH_GT] = ACTIONS(4850), + [anon_sym_with] = ACTIONS(4850), + [aux_sym_preproc_if_token3] = ACTIONS(4850), + [aux_sym_preproc_else_token1] = ACTIONS(4850), + [aux_sym_preproc_elif_token1] = ACTIONS(4850), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -481009,6 +480513,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3140] = { + [sym_type_argument_list] = STATE(3242), [sym_preproc_region] = STATE(3140), [sym_preproc_endregion] = STATE(3140), [sym_preproc_line] = STATE(3140), @@ -481018,59 +480523,57 @@ 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(5289), - [anon_sym_LBRACK] = ACTIONS(4860), - [anon_sym_LPAREN] = ACTIONS(4860), - [anon_sym_LT] = ACTIONS(4862), - [anon_sym_GT] = ACTIONS(4862), - [anon_sym_where] = ACTIONS(4860), - [anon_sym_QMARK] = ACTIONS(4862), - [anon_sym_BANG] = ACTIONS(4862), - [anon_sym_PLUS_PLUS] = ACTIONS(4860), - [anon_sym_DASH_DASH] = ACTIONS(4860), - [anon_sym_PLUS] = ACTIONS(4862), - [anon_sym_DASH] = ACTIONS(4862), - [anon_sym_STAR] = ACTIONS(4862), - [anon_sym_SLASH] = ACTIONS(4862), - [anon_sym_PERCENT] = ACTIONS(4862), - [anon_sym_CARET] = ACTIONS(4862), - [anon_sym_PIPE] = ACTIONS(4862), - [anon_sym_AMP] = ACTIONS(4862), - [anon_sym_LT_LT] = ACTIONS(4862), - [anon_sym_GT_GT] = ACTIONS(4862), - [anon_sym_GT_GT_GT] = ACTIONS(4862), - [anon_sym_EQ_EQ] = ACTIONS(4860), - [anon_sym_BANG_EQ] = ACTIONS(4860), - [anon_sym_GT_EQ] = ACTIONS(4860), - [anon_sym_LT_EQ] = ACTIONS(4860), - [anon_sym_DOT] = ACTIONS(4862), - [anon_sym_switch] = ACTIONS(4860), - [anon_sym_DOT_DOT] = ACTIONS(4860), - [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(4860), - [anon_sym_PIPE_PIPE] = ACTIONS(4860), - [anon_sym_QMARK_QMARK] = ACTIONS(4862), - [anon_sym_from] = ACTIONS(4860), - [anon_sym_join] = ACTIONS(4860), - [anon_sym_let] = ACTIONS(4860), - [anon_sym_orderby] = ACTIONS(4860), - [anon_sym_group] = ACTIONS(4860), - [anon_sym_select] = ACTIONS(4860), - [anon_sym_as] = ACTIONS(4860), - [anon_sym_is] = ACTIONS(4860), - [anon_sym_DASH_GT] = ACTIONS(4860), - [anon_sym_with] = ACTIONS(4860), + [anon_sym_SEMI] = ACTIONS(3640), + [anon_sym_LBRACK] = ACTIONS(3640), + [anon_sym_COLON] = ACTIONS(3640), + [anon_sym_COMMA] = ACTIONS(3640), + [anon_sym_RBRACK] = ACTIONS(3640), + [anon_sym_LPAREN] = ACTIONS(3640), + [anon_sym_RPAREN] = ACTIONS(3640), + [anon_sym_LBRACE] = ACTIONS(3640), + [anon_sym_RBRACE] = ACTIONS(3640), + [anon_sym_LT] = ACTIONS(5274), + [anon_sym_GT] = ACTIONS(3638), + [anon_sym_in] = ACTIONS(3640), + [anon_sym_QMARK] = ACTIONS(3638), + [anon_sym_BANG] = ACTIONS(3638), + [anon_sym_PLUS_PLUS] = ACTIONS(3640), + [anon_sym_DASH_DASH] = ACTIONS(3640), + [anon_sym_PLUS] = ACTIONS(3638), + [anon_sym_DASH] = ACTIONS(3638), + [anon_sym_STAR] = ACTIONS(3640), + [anon_sym_SLASH] = ACTIONS(3638), + [anon_sym_PERCENT] = ACTIONS(3640), + [anon_sym_CARET] = ACTIONS(3640), + [anon_sym_PIPE] = ACTIONS(3638), + [anon_sym_AMP] = ACTIONS(3638), + [anon_sym_LT_LT] = ACTIONS(3640), + [anon_sym_GT_GT] = ACTIONS(3638), + [anon_sym_GT_GT_GT] = ACTIONS(3640), + [anon_sym_EQ_EQ] = ACTIONS(3640), + [anon_sym_BANG_EQ] = ACTIONS(3640), + [anon_sym_GT_EQ] = ACTIONS(3640), + [anon_sym_LT_EQ] = ACTIONS(3640), + [anon_sym_DOT] = ACTIONS(3638), + [anon_sym_EQ_GT] = ACTIONS(3640), + [anon_sym_switch] = ACTIONS(3640), + [anon_sym_when] = ACTIONS(3640), + [anon_sym_DOT_DOT] = ACTIONS(3640), + [anon_sym_and] = ACTIONS(3640), + [anon_sym_or] = ACTIONS(3640), + [anon_sym_AMP_AMP] = ACTIONS(3640), + [anon_sym_PIPE_PIPE] = ACTIONS(3640), + [anon_sym_QMARK_QMARK] = ACTIONS(3640), + [anon_sym_on] = ACTIONS(3640), + [anon_sym_equals] = ACTIONS(3640), + [anon_sym_by] = ACTIONS(3640), + [anon_sym_as] = ACTIONS(3640), + [anon_sym_is] = ACTIONS(3640), + [anon_sym_DASH_GT] = ACTIONS(3640), + [anon_sym_with] = ACTIONS(3640), + [aux_sym_preproc_if_token3] = ACTIONS(3640), + [aux_sym_preproc_else_token1] = ACTIONS(3640), + [aux_sym_preproc_elif_token1] = ACTIONS(3640), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -481083,7 +480586,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3141] = { - [sym_type_argument_list] = STATE(3158), [sym_preproc_region] = STATE(3141), [sym_preproc_endregion] = STATE(3141), [sym_preproc_line] = STATE(3141), @@ -481093,58 +480595,58 @@ 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(3662), - [anon_sym_LBRACK] = ACTIONS(3662), - [anon_sym_COLON] = ACTIONS(3662), - [anon_sym_COMMA] = ACTIONS(3662), - [anon_sym_RBRACK] = ACTIONS(3662), - [anon_sym_LPAREN] = ACTIONS(3662), - [anon_sym_RPAREN] = ACTIONS(3662), - [anon_sym_LBRACE] = ACTIONS(3662), - [anon_sym_RBRACE] = ACTIONS(3662), - [anon_sym_LT] = ACTIONS(5249), - [anon_sym_GT] = ACTIONS(3660), - [anon_sym_in] = ACTIONS(3660), - [anon_sym_QMARK] = ACTIONS(3660), - [anon_sym_BANG] = ACTIONS(3660), - [anon_sym_PLUS_PLUS] = ACTIONS(3662), - [anon_sym_DASH_DASH] = ACTIONS(3662), - [anon_sym_PLUS] = ACTIONS(3660), - [anon_sym_DASH] = ACTIONS(3660), - [anon_sym_STAR] = ACTIONS(3662), - [anon_sym_SLASH] = ACTIONS(3660), - [anon_sym_PERCENT] = ACTIONS(3662), - [anon_sym_CARET] = ACTIONS(3662), - [anon_sym_PIPE] = ACTIONS(3660), - [anon_sym_AMP] = ACTIONS(3660), - [anon_sym_LT_LT] = ACTIONS(3662), - [anon_sym_GT_GT] = ACTIONS(3660), - [anon_sym_GT_GT_GT] = ACTIONS(3662), - [anon_sym_EQ_EQ] = ACTIONS(3662), - [anon_sym_BANG_EQ] = ACTIONS(3662), - [anon_sym_GT_EQ] = ACTIONS(3662), - [anon_sym_LT_EQ] = ACTIONS(3662), - [anon_sym_DOT] = ACTIONS(3660), - [anon_sym_EQ_GT] = ACTIONS(3662), - [anon_sym_switch] = ACTIONS(3662), - [anon_sym_when] = ACTIONS(3662), - [anon_sym_DOT_DOT] = ACTIONS(3662), - [anon_sym_and] = ACTIONS(3662), - [anon_sym_or] = ACTIONS(3662), - [anon_sym_AMP_AMP] = ACTIONS(3662), - [anon_sym_PIPE_PIPE] = ACTIONS(3662), - [anon_sym_QMARK_QMARK] = ACTIONS(3662), - [anon_sym_into] = ACTIONS(3662), - [anon_sym_on] = ACTIONS(3662), - [anon_sym_equals] = ACTIONS(3662), - [anon_sym_by] = ACTIONS(3662), - [anon_sym_as] = ACTIONS(3662), - [anon_sym_is] = ACTIONS(3662), - [anon_sym_DASH_GT] = ACTIONS(3662), - [anon_sym_with] = ACTIONS(3662), - [aux_sym_preproc_if_token3] = ACTIONS(3662), - [aux_sym_preproc_else_token1] = ACTIONS(3662), - [aux_sym_preproc_elif_token1] = ACTIONS(3662), + [sym__identifier_token] = ACTIONS(3463), + [anon_sym_extern] = ACTIONS(3466), + [anon_sym_alias] = ACTIONS(3463), + [anon_sym_global] = ACTIONS(3463), + [anon_sym_unsafe] = ACTIONS(3466), + [anon_sym_static] = ACTIONS(3466), + [anon_sym_LBRACK] = ACTIONS(3429), + [anon_sym_LPAREN] = ACTIONS(5128), + [anon_sym_ref] = ACTIONS(3466), + [anon_sym_delegate] = ACTIONS(3466), + [anon_sym_abstract] = ACTIONS(3466), + [anon_sym_async] = ACTIONS(3466), + [anon_sym_const] = ACTIONS(3466), + [anon_sym_file] = ACTIONS(3463), + [anon_sym_fixed] = ACTIONS(3466), + [anon_sym_internal] = ACTIONS(3466), + [anon_sym_new] = ACTIONS(3466), + [anon_sym_override] = ACTIONS(3466), + [anon_sym_partial] = ACTIONS(3466), + [anon_sym_private] = ACTIONS(3466), + [anon_sym_protected] = ACTIONS(3466), + [anon_sym_public] = ACTIONS(3466), + [anon_sym_readonly] = ACTIONS(3466), + [anon_sym_required] = ACTIONS(3466), + [anon_sym_sealed] = ACTIONS(3466), + [anon_sym_virtual] = ACTIONS(3466), + [anon_sym_volatile] = ACTIONS(3466), + [anon_sym_LT] = ACTIONS(3429), + [anon_sym_where] = ACTIONS(3463), + [anon_sym_QMARK] = ACTIONS(3429), + [anon_sym_notnull] = ACTIONS(3463), + [anon_sym_unmanaged] = ACTIONS(3463), + [anon_sym_STAR] = ACTIONS(3429), + [anon_sym_DOT] = ACTIONS(3429), + [anon_sym_scoped] = ACTIONS(3463), + [anon_sym_COLON_COLON] = ACTIONS(3429), + [anon_sym_var] = ACTIONS(3463), + [sym_predefined_type] = ACTIONS(3466), + [anon_sym_yield] = ACTIONS(3463), + [anon_sym_when] = ACTIONS(3463), + [anon_sym_from] = ACTIONS(3463), + [anon_sym_into] = ACTIONS(3463), + [anon_sym_join] = ACTIONS(3463), + [anon_sym_on] = ACTIONS(3463), + [anon_sym_equals] = ACTIONS(3463), + [anon_sym_let] = ACTIONS(3463), + [anon_sym_orderby] = ACTIONS(3463), + [anon_sym_ascending] = ACTIONS(3463), + [anon_sym_descending] = ACTIONS(3463), + [anon_sym_group] = ACTIONS(3463), + [anon_sym_by] = ACTIONS(3463), + [anon_sym_select] = ACTIONS(3463), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -481157,8 +480659,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3142] = { - [sym_argument_list] = STATE(3259), - [sym_bracketed_argument_list] = STATE(2613), [sym_preproc_region] = STATE(3142), [sym_preproc_endregion] = STATE(3142), [sym_preproc_line] = STATE(3142), @@ -481168,57 +480668,57 @@ 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(4833), - [anon_sym_LBRACK] = ACTIONS(5283), - [anon_sym_COLON] = ACTIONS(4833), - [anon_sym_COMMA] = ACTIONS(4833), - [anon_sym_RBRACK] = ACTIONS(4833), - [anon_sym_LPAREN] = ACTIONS(5247), - [anon_sym_RPAREN] = ACTIONS(4833), - [anon_sym_RBRACE] = ACTIONS(4833), - [anon_sym_LT] = ACTIONS(4837), - [anon_sym_GT] = ACTIONS(4837), - [anon_sym_in] = ACTIONS(4837), - [anon_sym_QMARK] = ACTIONS(4837), - [anon_sym_BANG] = ACTIONS(5285), - [anon_sym_PLUS_PLUS] = ACTIONS(5287), - [anon_sym_DASH_DASH] = ACTIONS(5287), - [anon_sym_PLUS] = ACTIONS(4837), - [anon_sym_DASH] = ACTIONS(4837), - [anon_sym_STAR] = ACTIONS(4833), - [anon_sym_SLASH] = ACTIONS(4837), - [anon_sym_PERCENT] = ACTIONS(4833), - [anon_sym_CARET] = ACTIONS(4833), - [anon_sym_PIPE] = ACTIONS(4837), - [anon_sym_AMP] = ACTIONS(4837), - [anon_sym_LT_LT] = ACTIONS(4833), - [anon_sym_GT_GT] = ACTIONS(4837), - [anon_sym_GT_GT_GT] = ACTIONS(4833), - [anon_sym_EQ_EQ] = ACTIONS(4833), - [anon_sym_BANG_EQ] = ACTIONS(4833), - [anon_sym_GT_EQ] = ACTIONS(4833), - [anon_sym_LT_EQ] = ACTIONS(4833), - [anon_sym_DOT] = ACTIONS(4075), - [anon_sym_EQ_GT] = ACTIONS(4833), - [anon_sym_switch] = ACTIONS(4833), - [anon_sym_when] = ACTIONS(4833), - [anon_sym_DOT_DOT] = ACTIONS(4833), - [anon_sym_and] = ACTIONS(4833), - [anon_sym_or] = ACTIONS(4833), - [anon_sym_AMP_AMP] = ACTIONS(4833), - [anon_sym_PIPE_PIPE] = ACTIONS(4833), - [anon_sym_QMARK_QMARK] = ACTIONS(4833), - [anon_sym_into] = ACTIONS(4833), - [anon_sym_on] = ACTIONS(4833), - [anon_sym_equals] = ACTIONS(4833), - [anon_sym_by] = ACTIONS(4833), - [anon_sym_as] = ACTIONS(4833), - [anon_sym_is] = ACTIONS(4833), - [anon_sym_DASH_GT] = ACTIONS(4077), - [anon_sym_with] = ACTIONS(4833), - [aux_sym_preproc_if_token3] = ACTIONS(4833), - [aux_sym_preproc_else_token1] = ACTIONS(4833), - [aux_sym_preproc_elif_token1] = ACTIONS(4833), + [anon_sym_EQ] = ACTIONS(4138), + [anon_sym_LBRACK] = ACTIONS(4136), + [anon_sym_COLON] = ACTIONS(4136), + [anon_sym_COMMA] = ACTIONS(4136), + [anon_sym_LPAREN] = ACTIONS(4136), + [anon_sym_LT] = ACTIONS(4138), + [anon_sym_GT] = ACTIONS(4138), + [anon_sym_QMARK] = ACTIONS(4138), + [anon_sym_BANG] = ACTIONS(4138), + [anon_sym_PLUS_PLUS] = ACTIONS(4136), + [anon_sym_DASH_DASH] = ACTIONS(4136), + [anon_sym_PLUS] = ACTIONS(4138), + [anon_sym_DASH] = ACTIONS(4138), + [anon_sym_STAR] = ACTIONS(4138), + [anon_sym_SLASH] = ACTIONS(4138), + [anon_sym_PERCENT] = ACTIONS(4138), + [anon_sym_CARET] = ACTIONS(4138), + [anon_sym_PIPE] = ACTIONS(4138), + [anon_sym_AMP] = ACTIONS(4138), + [anon_sym_LT_LT] = ACTIONS(4138), + [anon_sym_GT_GT] = ACTIONS(4138), + [anon_sym_GT_GT_GT] = ACTIONS(4138), + [anon_sym_EQ_EQ] = ACTIONS(4136), + [anon_sym_BANG_EQ] = ACTIONS(4136), + [anon_sym_GT_EQ] = ACTIONS(4136), + [anon_sym_LT_EQ] = ACTIONS(4136), + [anon_sym_DOT] = ACTIONS(4138), + [anon_sym_switch] = ACTIONS(4136), + [anon_sym_DOT_DOT] = ACTIONS(4136), + [anon_sym_and] = ACTIONS(4136), + [anon_sym_or] = ACTIONS(4136), + [anon_sym_PLUS_EQ] = ACTIONS(4136), + [anon_sym_DASH_EQ] = ACTIONS(4136), + [anon_sym_STAR_EQ] = ACTIONS(4136), + [anon_sym_SLASH_EQ] = ACTIONS(4136), + [anon_sym_PERCENT_EQ] = ACTIONS(4136), + [anon_sym_AMP_EQ] = ACTIONS(4136), + [anon_sym_CARET_EQ] = ACTIONS(4136), + [anon_sym_PIPE_EQ] = ACTIONS(4136), + [anon_sym_LT_LT_EQ] = ACTIONS(4136), + [anon_sym_GT_GT_EQ] = ACTIONS(4136), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(4136), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(4136), + [anon_sym_AMP_AMP] = ACTIONS(4136), + [anon_sym_PIPE_PIPE] = ACTIONS(4136), + [anon_sym_QMARK_QMARK] = ACTIONS(4138), + [anon_sym_into] = ACTIONS(4136), + [anon_sym_as] = ACTIONS(4136), + [anon_sym_is] = ACTIONS(4136), + [anon_sym_DASH_GT] = ACTIONS(4136), + [anon_sym_with] = ACTIONS(4136), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -481229,9 +480729,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(4136), }, [3143] = { - [sym_block] = STATE(2037), [sym_preproc_region] = STATE(3143), [sym_preproc_endregion] = STATE(3143), [sym_preproc_line] = STATE(3143), @@ -481241,58 +480741,58 @@ 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), - [sym__identifier_token] = ACTIONS(3482), - [anon_sym_extern] = ACTIONS(3482), - [anon_sym_alias] = ACTIONS(3482), - [anon_sym_global] = ACTIONS(3482), - [anon_sym_unsafe] = ACTIONS(3482), - [anon_sym_static] = ACTIONS(3482), - [anon_sym_LPAREN] = ACTIONS(5084), - [anon_sym_class] = ACTIONS(3482), - [anon_sym_ref] = ACTIONS(3482), - [anon_sym_struct] = ACTIONS(3482), - [anon_sym_enum] = ACTIONS(3482), - [anon_sym_LBRACE] = ACTIONS(5293), - [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_scoped] = ACTIONS(3482), - [anon_sym_var] = ACTIONS(3482), - [sym_predefined_type] = ACTIONS(3482), - [anon_sym_yield] = ACTIONS(3482), - [anon_sym_when] = ACTIONS(3482), - [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_SEMI] = ACTIONS(3702), + [anon_sym_LBRACK] = ACTIONS(3702), + [anon_sym_COLON] = ACTIONS(3702), + [anon_sym_COMMA] = ACTIONS(3702), + [anon_sym_RBRACK] = ACTIONS(3702), + [anon_sym_LPAREN] = ACTIONS(3702), + [anon_sym_RPAREN] = ACTIONS(3702), + [anon_sym_LBRACE] = ACTIONS(3702), + [anon_sym_RBRACE] = ACTIONS(3702), + [anon_sym_LT] = ACTIONS(3691), + [anon_sym_GT] = ACTIONS(3691), + [anon_sym_in] = ACTIONS(3691), + [anon_sym_QMARK] = ACTIONS(3691), + [anon_sym_BANG] = ACTIONS(3691), + [anon_sym_PLUS_PLUS] = ACTIONS(3702), + [anon_sym_DASH_DASH] = ACTIONS(3702), + [anon_sym_PLUS] = ACTIONS(3691), + [anon_sym_DASH] = ACTIONS(3691), + [anon_sym_STAR] = ACTIONS(3702), + [anon_sym_SLASH] = ACTIONS(3691), + [anon_sym_PERCENT] = ACTIONS(3702), + [anon_sym_CARET] = ACTIONS(3702), + [anon_sym_PIPE] = ACTIONS(3691), + [anon_sym_AMP] = ACTIONS(3691), + [anon_sym_LT_LT] = ACTIONS(3702), + [anon_sym_GT_GT] = ACTIONS(3691), + [anon_sym_GT_GT_GT] = ACTIONS(3702), + [anon_sym_EQ_EQ] = ACTIONS(3702), + [anon_sym_BANG_EQ] = ACTIONS(3702), + [anon_sym_GT_EQ] = ACTIONS(3702), + [anon_sym_LT_EQ] = ACTIONS(3702), + [anon_sym_DOT] = ACTIONS(3691), + [anon_sym_EQ_GT] = ACTIONS(3702), + [anon_sym_switch] = ACTIONS(3702), + [anon_sym_when] = ACTIONS(3702), + [anon_sym_DOT_DOT] = ACTIONS(3702), + [anon_sym_and] = ACTIONS(3702), + [anon_sym_or] = ACTIONS(3702), + [anon_sym_AMP_AMP] = ACTIONS(3702), + [anon_sym_PIPE_PIPE] = ACTIONS(3702), + [anon_sym_QMARK_QMARK] = ACTIONS(3702), + [anon_sym_into] = ACTIONS(3702), + [anon_sym_on] = ACTIONS(3702), + [anon_sym_equals] = ACTIONS(3702), + [anon_sym_by] = ACTIONS(3702), + [anon_sym_as] = ACTIONS(3702), + [anon_sym_is] = ACTIONS(3702), + [anon_sym_DASH_GT] = ACTIONS(3702), + [anon_sym_with] = ACTIONS(3702), + [aux_sym_preproc_if_token3] = ACTIONS(3702), + [aux_sym_preproc_else_token1] = ACTIONS(3702), + [aux_sym_preproc_elif_token1] = ACTIONS(3702), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -481305,7 +480805,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3144] = { - [sym_initializer_expression] = STATE(3291), [sym_preproc_region] = STATE(3144), [sym_preproc_endregion] = STATE(3144), [sym_preproc_line] = STATE(3144), @@ -481315,72 +480814,70 @@ 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(4847), - [anon_sym_LBRACK] = ACTIONS(4849), - [anon_sym_COLON] = ACTIONS(4847), - [anon_sym_COMMA] = ACTIONS(4847), - [anon_sym_RBRACK] = ACTIONS(4847), - [anon_sym_LPAREN] = ACTIONS(4847), - [anon_sym_RPAREN] = ACTIONS(4847), - [anon_sym_LBRACE] = ACTIONS(1159), - [anon_sym_RBRACE] = ACTIONS(4847), - [anon_sym_LT] = ACTIONS(4852), - [anon_sym_GT] = ACTIONS(4852), - [anon_sym_in] = ACTIONS(4852), - [anon_sym_QMARK] = ACTIONS(4852), - [anon_sym_BANG] = ACTIONS(4852), - [anon_sym_PLUS_PLUS] = ACTIONS(4847), - [anon_sym_DASH_DASH] = ACTIONS(4847), - [anon_sym_PLUS] = ACTIONS(4852), - [anon_sym_DASH] = ACTIONS(4852), - [anon_sym_STAR] = ACTIONS(4847), - [anon_sym_SLASH] = ACTIONS(4852), - [anon_sym_PERCENT] = ACTIONS(4847), - [anon_sym_CARET] = ACTIONS(4847), - [anon_sym_PIPE] = ACTIONS(4852), - [anon_sym_AMP] = ACTIONS(4852), - [anon_sym_LT_LT] = ACTIONS(4847), - [anon_sym_GT_GT] = ACTIONS(4852), - [anon_sym_GT_GT_GT] = ACTIONS(4847), - [anon_sym_EQ_EQ] = ACTIONS(4847), - [anon_sym_BANG_EQ] = ACTIONS(4847), - [anon_sym_GT_EQ] = ACTIONS(4847), - [anon_sym_LT_EQ] = ACTIONS(4847), - [anon_sym_DOT] = ACTIONS(4852), - [anon_sym_EQ_GT] = ACTIONS(4847), - [anon_sym_switch] = ACTIONS(4847), - [anon_sym_when] = ACTIONS(4847), - [anon_sym_DOT_DOT] = ACTIONS(4847), - [anon_sym_and] = ACTIONS(4847), - [anon_sym_or] = ACTIONS(4847), - [anon_sym_AMP_AMP] = ACTIONS(4847), - [anon_sym_PIPE_PIPE] = ACTIONS(4847), - [anon_sym_QMARK_QMARK] = ACTIONS(4847), - [anon_sym_into] = ACTIONS(4847), - [anon_sym_on] = ACTIONS(4847), - [anon_sym_equals] = ACTIONS(4847), - [anon_sym_by] = ACTIONS(4847), - [anon_sym_as] = ACTIONS(4847), - [anon_sym_is] = ACTIONS(4847), - [anon_sym_DASH_GT] = ACTIONS(4847), - [anon_sym_with] = ACTIONS(4847), - [aux_sym_preproc_if_token3] = ACTIONS(4847), - [aux_sym_preproc_else_token1] = ACTIONS(4847), - [aux_sym_preproc_elif_token1] = ACTIONS(4847), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_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(3696), + [anon_sym_LBRACK] = ACTIONS(3711), + [anon_sym_COLON] = ACTIONS(3711), + [anon_sym_COMMA] = ACTIONS(3711), + [anon_sym_LPAREN] = ACTIONS(3711), + [anon_sym_LT] = ACTIONS(3696), + [anon_sym_GT] = ACTIONS(3696), + [anon_sym_QMARK] = ACTIONS(3696), + [anon_sym_BANG] = ACTIONS(3696), + [anon_sym_PLUS_PLUS] = ACTIONS(3711), + [anon_sym_DASH_DASH] = ACTIONS(3711), + [anon_sym_PLUS] = ACTIONS(3696), + [anon_sym_DASH] = ACTIONS(3696), + [anon_sym_STAR] = ACTIONS(3696), + [anon_sym_SLASH] = ACTIONS(3696), + [anon_sym_PERCENT] = ACTIONS(3696), + [anon_sym_CARET] = ACTIONS(3696), + [anon_sym_PIPE] = ACTIONS(3696), + [anon_sym_AMP] = ACTIONS(3696), + [anon_sym_LT_LT] = ACTIONS(3696), + [anon_sym_GT_GT] = ACTIONS(3696), + [anon_sym_GT_GT_GT] = ACTIONS(3696), + [anon_sym_EQ_EQ] = ACTIONS(3711), + [anon_sym_BANG_EQ] = ACTIONS(3711), + [anon_sym_GT_EQ] = ACTIONS(3711), + [anon_sym_LT_EQ] = ACTIONS(3711), + [anon_sym_DOT] = ACTIONS(3696), + [anon_sym_switch] = ACTIONS(3711), + [anon_sym_DOT_DOT] = ACTIONS(3711), + [anon_sym_and] = ACTIONS(3711), + [anon_sym_or] = ACTIONS(3711), + [anon_sym_PLUS_EQ] = ACTIONS(3711), + [anon_sym_DASH_EQ] = ACTIONS(3711), + [anon_sym_STAR_EQ] = ACTIONS(3711), + [anon_sym_SLASH_EQ] = ACTIONS(3711), + [anon_sym_PERCENT_EQ] = ACTIONS(3711), + [anon_sym_AMP_EQ] = ACTIONS(3711), + [anon_sym_CARET_EQ] = ACTIONS(3711), + [anon_sym_PIPE_EQ] = ACTIONS(3711), + [anon_sym_LT_LT_EQ] = ACTIONS(3711), + [anon_sym_GT_GT_EQ] = ACTIONS(3711), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3711), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3711), + [anon_sym_AMP_AMP] = ACTIONS(3711), + [anon_sym_PIPE_PIPE] = ACTIONS(3711), + [anon_sym_QMARK_QMARK] = ACTIONS(3696), + [anon_sym_into] = ACTIONS(3711), + [anon_sym_as] = ACTIONS(3711), + [anon_sym_is] = ACTIONS(3711), + [anon_sym_DASH_GT] = ACTIONS(3711), + [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(3711), }, [3145] = { - [sym_argument_list] = STATE(3259), - [sym_bracketed_argument_list] = STATE(2613), [sym_preproc_region] = STATE(3145), [sym_preproc_endregion] = STATE(3145), [sym_preproc_line] = STATE(3145), @@ -481390,70 +480887,70 @@ 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(4854), - [anon_sym_LBRACK] = ACTIONS(5283), - [anon_sym_COLON] = ACTIONS(4854), - [anon_sym_COMMA] = ACTIONS(4854), - [anon_sym_RBRACK] = ACTIONS(4854), - [anon_sym_LPAREN] = ACTIONS(5247), - [anon_sym_RPAREN] = ACTIONS(4854), - [anon_sym_RBRACE] = ACTIONS(4854), - [anon_sym_LT] = ACTIONS(4856), - [anon_sym_GT] = ACTIONS(4856), - [anon_sym_in] = ACTIONS(4856), - [anon_sym_QMARK] = ACTIONS(4856), - [anon_sym_BANG] = ACTIONS(5285), - [anon_sym_PLUS_PLUS] = ACTIONS(5287), - [anon_sym_DASH_DASH] = ACTIONS(5287), - [anon_sym_PLUS] = ACTIONS(4856), - [anon_sym_DASH] = ACTIONS(4856), - [anon_sym_STAR] = ACTIONS(4854), - [anon_sym_SLASH] = ACTIONS(4856), - [anon_sym_PERCENT] = ACTIONS(4854), - [anon_sym_CARET] = ACTIONS(4854), - [anon_sym_PIPE] = ACTIONS(4856), - [anon_sym_AMP] = ACTIONS(4856), - [anon_sym_LT_LT] = ACTIONS(4854), - [anon_sym_GT_GT] = ACTIONS(4856), - [anon_sym_GT_GT_GT] = ACTIONS(4854), - [anon_sym_EQ_EQ] = ACTIONS(4854), - [anon_sym_BANG_EQ] = ACTIONS(4854), - [anon_sym_GT_EQ] = ACTIONS(4854), - [anon_sym_LT_EQ] = ACTIONS(4854), - [anon_sym_DOT] = ACTIONS(4075), - [anon_sym_EQ_GT] = ACTIONS(4854), - [anon_sym_switch] = ACTIONS(4854), - [anon_sym_when] = ACTIONS(4854), - [anon_sym_DOT_DOT] = ACTIONS(4854), - [anon_sym_and] = ACTIONS(4854), - [anon_sym_or] = ACTIONS(4854), - [anon_sym_AMP_AMP] = ACTIONS(4854), - [anon_sym_PIPE_PIPE] = ACTIONS(4854), - [anon_sym_QMARK_QMARK] = ACTIONS(4854), - [anon_sym_into] = ACTIONS(4854), - [anon_sym_on] = ACTIONS(4854), - [anon_sym_equals] = ACTIONS(4854), - [anon_sym_by] = ACTIONS(4854), - [anon_sym_as] = ACTIONS(4854), - [anon_sym_is] = ACTIONS(4854), - [anon_sym_DASH_GT] = ACTIONS(4077), - [anon_sym_with] = ACTIONS(4854), - [aux_sym_preproc_if_token3] = ACTIONS(4854), - [aux_sym_preproc_else_token1] = ACTIONS(4854), - [aux_sym_preproc_elif_token1] = ACTIONS(4854), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_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(3638), + [anon_sym_LBRACK] = ACTIONS(3640), + [anon_sym_COLON] = ACTIONS(3640), + [anon_sym_COMMA] = ACTIONS(3640), + [anon_sym_LPAREN] = ACTIONS(3640), + [anon_sym_LT] = ACTIONS(3638), + [anon_sym_GT] = ACTIONS(3638), + [anon_sym_QMARK] = ACTIONS(3638), + [anon_sym_BANG] = ACTIONS(3638), + [anon_sym_PLUS_PLUS] = ACTIONS(3640), + [anon_sym_DASH_DASH] = ACTIONS(3640), + [anon_sym_PLUS] = ACTIONS(3638), + [anon_sym_DASH] = ACTIONS(3638), + [anon_sym_STAR] = ACTIONS(3638), + [anon_sym_SLASH] = ACTIONS(3638), + [anon_sym_PERCENT] = ACTIONS(3638), + [anon_sym_CARET] = ACTIONS(3638), + [anon_sym_PIPE] = ACTIONS(3638), + [anon_sym_AMP] = ACTIONS(3638), + [anon_sym_LT_LT] = ACTIONS(3638), + [anon_sym_GT_GT] = ACTIONS(3638), + [anon_sym_GT_GT_GT] = ACTIONS(3638), + [anon_sym_EQ_EQ] = ACTIONS(3640), + [anon_sym_BANG_EQ] = ACTIONS(3640), + [anon_sym_GT_EQ] = ACTIONS(3640), + [anon_sym_LT_EQ] = ACTIONS(3640), + [anon_sym_DOT] = ACTIONS(3638), + [anon_sym_switch] = ACTIONS(3640), + [anon_sym_DOT_DOT] = ACTIONS(3640), + [anon_sym_and] = ACTIONS(3640), + [anon_sym_or] = ACTIONS(3640), + [anon_sym_PLUS_EQ] = ACTIONS(3640), + [anon_sym_DASH_EQ] = ACTIONS(3640), + [anon_sym_STAR_EQ] = ACTIONS(3640), + [anon_sym_SLASH_EQ] = ACTIONS(3640), + [anon_sym_PERCENT_EQ] = ACTIONS(3640), + [anon_sym_AMP_EQ] = ACTIONS(3640), + [anon_sym_CARET_EQ] = ACTIONS(3640), + [anon_sym_PIPE_EQ] = ACTIONS(3640), + [anon_sym_LT_LT_EQ] = ACTIONS(3640), + [anon_sym_GT_GT_EQ] = ACTIONS(3640), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3640), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3640), + [anon_sym_AMP_AMP] = ACTIONS(3640), + [anon_sym_PIPE_PIPE] = ACTIONS(3640), + [anon_sym_QMARK_QMARK] = ACTIONS(3638), + [anon_sym_into] = ACTIONS(3640), + [anon_sym_as] = ACTIONS(3640), + [anon_sym_is] = ACTIONS(3640), + [anon_sym_DASH_GT] = ACTIONS(3640), + [anon_sym_with] = ACTIONS(3640), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_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(3640), }, [3146] = { - [sym_initializer_expression] = STATE(3324), [sym_preproc_region] = STATE(3146), [sym_preproc_endregion] = STATE(3146), [sym_preproc_line] = STATE(3146), @@ -481463,58 +480960,58 @@ 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), - [anon_sym_SEMI] = ACTIONS(4866), - [anon_sym_LBRACK] = ACTIONS(4866), - [anon_sym_COLON] = ACTIONS(4866), - [anon_sym_COMMA] = ACTIONS(4866), - [anon_sym_RBRACK] = ACTIONS(4866), - [anon_sym_LPAREN] = ACTIONS(4866), - [anon_sym_RPAREN] = ACTIONS(4866), - [anon_sym_LBRACE] = ACTIONS(1159), - [anon_sym_RBRACE] = ACTIONS(4866), - [anon_sym_LT] = ACTIONS(4868), - [anon_sym_GT] = ACTIONS(4868), - [anon_sym_in] = ACTIONS(4868), - [anon_sym_QMARK] = ACTIONS(4868), - [anon_sym_BANG] = ACTIONS(4868), - [anon_sym_PLUS_PLUS] = ACTIONS(4866), - [anon_sym_DASH_DASH] = ACTIONS(4866), - [anon_sym_PLUS] = ACTIONS(4868), - [anon_sym_DASH] = ACTIONS(4868), - [anon_sym_STAR] = ACTIONS(4866), - [anon_sym_SLASH] = ACTIONS(4868), - [anon_sym_PERCENT] = ACTIONS(4866), - [anon_sym_CARET] = ACTIONS(4866), - [anon_sym_PIPE] = ACTIONS(4868), - [anon_sym_AMP] = ACTIONS(4868), - [anon_sym_LT_LT] = ACTIONS(4866), - [anon_sym_GT_GT] = ACTIONS(4868), - [anon_sym_GT_GT_GT] = ACTIONS(4866), - [anon_sym_EQ_EQ] = ACTIONS(4866), - [anon_sym_BANG_EQ] = ACTIONS(4866), - [anon_sym_GT_EQ] = ACTIONS(4866), - [anon_sym_LT_EQ] = ACTIONS(4866), - [anon_sym_DOT] = ACTIONS(4868), - [anon_sym_EQ_GT] = ACTIONS(4866), - [anon_sym_switch] = ACTIONS(4866), - [anon_sym_when] = ACTIONS(4866), - [anon_sym_DOT_DOT] = ACTIONS(4866), - [anon_sym_and] = ACTIONS(4866), - [anon_sym_or] = ACTIONS(4866), - [anon_sym_AMP_AMP] = ACTIONS(4866), - [anon_sym_PIPE_PIPE] = ACTIONS(4866), - [anon_sym_QMARK_QMARK] = ACTIONS(4866), - [anon_sym_into] = ACTIONS(4866), - [anon_sym_on] = ACTIONS(4866), - [anon_sym_equals] = ACTIONS(4866), - [anon_sym_by] = ACTIONS(4866), - [anon_sym_as] = ACTIONS(4866), - [anon_sym_is] = ACTIONS(4866), - [anon_sym_DASH_GT] = ACTIONS(4866), - [anon_sym_with] = ACTIONS(4866), - [aux_sym_preproc_if_token3] = ACTIONS(4866), - [aux_sym_preproc_else_token1] = ACTIONS(4866), - [aux_sym_preproc_elif_token1] = ACTIONS(4866), + [anon_sym_SEMI] = ACTIONS(3963), + [anon_sym_LBRACK] = ACTIONS(3963), + [anon_sym_COLON] = ACTIONS(3963), + [anon_sym_COMMA] = ACTIONS(3963), + [anon_sym_RBRACK] = ACTIONS(3963), + [anon_sym_LPAREN] = ACTIONS(3963), + [anon_sym_RPAREN] = ACTIONS(3963), + [anon_sym_LBRACE] = ACTIONS(3963), + [anon_sym_RBRACE] = ACTIONS(3963), + [anon_sym_LT] = ACTIONS(3961), + [anon_sym_GT] = ACTIONS(3961), + [anon_sym_in] = ACTIONS(3961), + [anon_sym_QMARK] = ACTIONS(3961), + [anon_sym_BANG] = ACTIONS(3961), + [anon_sym_PLUS_PLUS] = ACTIONS(3963), + [anon_sym_DASH_DASH] = ACTIONS(3963), + [anon_sym_PLUS] = ACTIONS(3961), + [anon_sym_DASH] = ACTIONS(3961), + [anon_sym_STAR] = ACTIONS(3963), + [anon_sym_SLASH] = ACTIONS(3961), + [anon_sym_PERCENT] = ACTIONS(3963), + [anon_sym_CARET] = ACTIONS(3963), + [anon_sym_PIPE] = ACTIONS(3961), + [anon_sym_AMP] = ACTIONS(3961), + [anon_sym_LT_LT] = ACTIONS(3963), + [anon_sym_GT_GT] = ACTIONS(3961), + [anon_sym_GT_GT_GT] = ACTIONS(3963), + [anon_sym_EQ_EQ] = ACTIONS(3963), + [anon_sym_BANG_EQ] = ACTIONS(3963), + [anon_sym_GT_EQ] = ACTIONS(3963), + [anon_sym_LT_EQ] = ACTIONS(3963), + [anon_sym_DOT] = ACTIONS(3961), + [anon_sym_EQ_GT] = ACTIONS(3963), + [anon_sym_switch] = ACTIONS(3963), + [anon_sym_when] = ACTIONS(3963), + [anon_sym_DOT_DOT] = ACTIONS(3963), + [anon_sym_and] = ACTIONS(3963), + [anon_sym_or] = ACTIONS(3963), + [anon_sym_AMP_AMP] = ACTIONS(3963), + [anon_sym_PIPE_PIPE] = ACTIONS(3963), + [anon_sym_QMARK_QMARK] = ACTIONS(3963), + [anon_sym_into] = ACTIONS(3963), + [anon_sym_on] = ACTIONS(3963), + [anon_sym_equals] = ACTIONS(3963), + [anon_sym_by] = ACTIONS(3963), + [anon_sym_as] = ACTIONS(3963), + [anon_sym_is] = ACTIONS(3963), + [anon_sym_DASH_GT] = ACTIONS(3963), + [anon_sym_with] = ACTIONS(3963), + [aux_sym_preproc_if_token3] = ACTIONS(3963), + [aux_sym_preproc_else_token1] = ACTIONS(3963), + [aux_sym_preproc_elif_token1] = ACTIONS(3963), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -481527,7 +481024,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3147] = { - [sym_type_argument_list] = STATE(3161), [sym_preproc_region] = STATE(3147), [sym_preproc_endregion] = STATE(3147), [sym_preproc_line] = STATE(3147), @@ -481537,68 +481033,68 @@ 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_EQ] = ACTIONS(3660), - [anon_sym_LBRACK] = ACTIONS(3662), - [anon_sym_COLON] = ACTIONS(3662), - [anon_sym_COMMA] = ACTIONS(3662), - [anon_sym_LPAREN] = ACTIONS(3662), - [anon_sym_LT] = ACTIONS(5295), - [anon_sym_GT] = ACTIONS(3660), - [anon_sym_QMARK] = ACTIONS(3660), - [anon_sym_BANG] = ACTIONS(3660), - [anon_sym_PLUS_PLUS] = ACTIONS(3662), - [anon_sym_DASH_DASH] = ACTIONS(3662), - [anon_sym_PLUS] = ACTIONS(3660), - [anon_sym_DASH] = ACTIONS(3660), - [anon_sym_STAR] = ACTIONS(3660), - [anon_sym_SLASH] = ACTIONS(3660), - [anon_sym_PERCENT] = ACTIONS(3660), - [anon_sym_CARET] = ACTIONS(3660), - [anon_sym_PIPE] = ACTIONS(3660), - [anon_sym_AMP] = ACTIONS(3660), - [anon_sym_LT_LT] = ACTIONS(3660), - [anon_sym_GT_GT] = ACTIONS(3660), - [anon_sym_GT_GT_GT] = ACTIONS(3660), - [anon_sym_EQ_EQ] = ACTIONS(3662), - [anon_sym_BANG_EQ] = ACTIONS(3662), - [anon_sym_GT_EQ] = ACTIONS(3662), - [anon_sym_LT_EQ] = ACTIONS(3662), - [anon_sym_DOT] = ACTIONS(3660), - [anon_sym_switch] = ACTIONS(3662), - [anon_sym_DOT_DOT] = ACTIONS(3662), - [anon_sym_and] = ACTIONS(3662), - [anon_sym_or] = ACTIONS(3662), - [anon_sym_PLUS_EQ] = ACTIONS(3662), - [anon_sym_DASH_EQ] = ACTIONS(3662), - [anon_sym_STAR_EQ] = ACTIONS(3662), - [anon_sym_SLASH_EQ] = ACTIONS(3662), - [anon_sym_PERCENT_EQ] = ACTIONS(3662), - [anon_sym_AMP_EQ] = ACTIONS(3662), - [anon_sym_CARET_EQ] = ACTIONS(3662), - [anon_sym_PIPE_EQ] = ACTIONS(3662), - [anon_sym_LT_LT_EQ] = ACTIONS(3662), - [anon_sym_GT_GT_EQ] = ACTIONS(3662), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3662), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3662), - [anon_sym_AMP_AMP] = ACTIONS(3662), - [anon_sym_PIPE_PIPE] = ACTIONS(3662), - [anon_sym_QMARK_QMARK] = ACTIONS(3660), - [anon_sym_into] = ACTIONS(3662), - [anon_sym_as] = ACTIONS(3662), - [anon_sym_is] = ACTIONS(3662), - [anon_sym_DASH_GT] = ACTIONS(3662), - [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(3662), + [anon_sym_SEMI] = ACTIONS(3963), + [anon_sym_LBRACK] = ACTIONS(4033), + [anon_sym_COLON] = ACTIONS(3963), + [anon_sym_COMMA] = ACTIONS(3963), + [anon_sym_RBRACK] = ACTIONS(3963), + [anon_sym_LPAREN] = ACTIONS(3963), + [anon_sym_RPAREN] = ACTIONS(3963), + [anon_sym_LBRACE] = ACTIONS(3963), + [anon_sym_RBRACE] = ACTIONS(3963), + [anon_sym_LT] = ACTIONS(3961), + [anon_sym_GT] = ACTIONS(3961), + [anon_sym_in] = ACTIONS(3961), + [anon_sym_QMARK] = ACTIONS(5277), + [anon_sym_BANG] = ACTIONS(3961), + [anon_sym_PLUS_PLUS] = ACTIONS(3963), + [anon_sym_DASH_DASH] = ACTIONS(3963), + [anon_sym_PLUS] = ACTIONS(3961), + [anon_sym_DASH] = ACTIONS(3961), + [anon_sym_STAR] = ACTIONS(3963), + [anon_sym_SLASH] = ACTIONS(3961), + [anon_sym_PERCENT] = ACTIONS(3963), + [anon_sym_CARET] = ACTIONS(3963), + [anon_sym_PIPE] = ACTIONS(3961), + [anon_sym_AMP] = ACTIONS(3961), + [anon_sym_LT_LT] = ACTIONS(3963), + [anon_sym_GT_GT] = ACTIONS(3961), + [anon_sym_GT_GT_GT] = ACTIONS(3963), + [anon_sym_EQ_EQ] = ACTIONS(3963), + [anon_sym_BANG_EQ] = ACTIONS(3963), + [anon_sym_GT_EQ] = ACTIONS(3963), + [anon_sym_LT_EQ] = ACTIONS(3963), + [anon_sym_DOT] = ACTIONS(3961), + [anon_sym_EQ_GT] = ACTIONS(3963), + [anon_sym_switch] = ACTIONS(3963), + [anon_sym_when] = ACTIONS(3963), + [anon_sym_DOT_DOT] = ACTIONS(3963), + [anon_sym_and] = ACTIONS(3963), + [anon_sym_or] = ACTIONS(3963), + [anon_sym_AMP_AMP] = ACTIONS(3963), + [anon_sym_PIPE_PIPE] = ACTIONS(3963), + [anon_sym_QMARK_QMARK] = ACTIONS(3963), + [anon_sym_into] = ACTIONS(3963), + [anon_sym_on] = ACTIONS(3963), + [anon_sym_equals] = ACTIONS(3963), + [anon_sym_by] = ACTIONS(3963), + [anon_sym_as] = ACTIONS(3963), + [anon_sym_is] = ACTIONS(3963), + [anon_sym_DASH_GT] = ACTIONS(3963), + [anon_sym_with] = ACTIONS(3963), + [aux_sym_preproc_if_token3] = ACTIONS(3963), + [aux_sym_preproc_else_token1] = ACTIONS(3963), + [aux_sym_preproc_elif_token1] = ACTIONS(3963), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), }, [3148] = { [sym_preproc_region] = STATE(3148), @@ -481610,59 +481106,58 @@ 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(3445), - [anon_sym_LBRACK] = ACTIONS(3445), - [anon_sym_COLON] = ACTIONS(3447), - [anon_sym_COMMA] = ACTIONS(3445), - [anon_sym_RBRACK] = ACTIONS(3445), - [anon_sym_LPAREN] = ACTIONS(3445), - [anon_sym_RPAREN] = ACTIONS(3445), - [anon_sym_LBRACE] = ACTIONS(3445), - [anon_sym_RBRACE] = ACTIONS(3445), - [anon_sym_LT] = ACTIONS(3447), - [anon_sym_GT] = ACTIONS(3447), - [anon_sym_in] = ACTIONS(3447), - [anon_sym_QMARK] = ACTIONS(3447), - [anon_sym_BANG] = ACTIONS(3447), - [anon_sym_PLUS_PLUS] = ACTIONS(3445), - [anon_sym_DASH_DASH] = ACTIONS(3445), - [anon_sym_PLUS] = ACTIONS(3447), - [anon_sym_DASH] = ACTIONS(3447), - [anon_sym_STAR] = ACTIONS(3445), - [anon_sym_SLASH] = ACTIONS(3447), - [anon_sym_PERCENT] = ACTIONS(3445), - [anon_sym_CARET] = ACTIONS(3445), - [anon_sym_PIPE] = ACTIONS(3447), - [anon_sym_AMP] = ACTIONS(3447), - [anon_sym_LT_LT] = ACTIONS(3445), - [anon_sym_GT_GT] = ACTIONS(3447), - [anon_sym_GT_GT_GT] = ACTIONS(3445), - [anon_sym_EQ_EQ] = ACTIONS(3445), - [anon_sym_BANG_EQ] = ACTIONS(3445), - [anon_sym_GT_EQ] = ACTIONS(3445), - [anon_sym_LT_EQ] = ACTIONS(3445), - [anon_sym_DOT] = ACTIONS(3447), - [anon_sym_EQ_GT] = ACTIONS(3445), - [anon_sym_COLON_COLON] = ACTIONS(3445), - [anon_sym_switch] = ACTIONS(3445), - [anon_sym_when] = ACTIONS(3445), - [anon_sym_DOT_DOT] = ACTIONS(3445), - [anon_sym_and] = ACTIONS(3445), - [anon_sym_or] = ACTIONS(3445), - [anon_sym_AMP_AMP] = ACTIONS(3445), - [anon_sym_PIPE_PIPE] = ACTIONS(3445), - [anon_sym_QMARK_QMARK] = ACTIONS(3445), - [anon_sym_into] = ACTIONS(3445), - [anon_sym_on] = ACTIONS(3445), - [anon_sym_equals] = ACTIONS(3445), - [anon_sym_by] = ACTIONS(3445), - [anon_sym_as] = ACTIONS(3445), - [anon_sym_is] = ACTIONS(3445), - [anon_sym_DASH_GT] = ACTIONS(3445), - [anon_sym_with] = ACTIONS(3445), - [aux_sym_preproc_if_token3] = ACTIONS(3445), - [aux_sym_preproc_else_token1] = ACTIONS(3445), - [aux_sym_preproc_elif_token1] = ACTIONS(3445), + [anon_sym_SEMI] = ACTIONS(3963), + [anon_sym_LBRACK] = ACTIONS(4033), + [anon_sym_COLON] = ACTIONS(3963), + [anon_sym_COMMA] = ACTIONS(3963), + [anon_sym_RBRACK] = ACTIONS(3963), + [anon_sym_LPAREN] = ACTIONS(3963), + [anon_sym_RPAREN] = ACTIONS(3963), + [anon_sym_LBRACE] = ACTIONS(3963), + [anon_sym_RBRACE] = ACTIONS(3963), + [anon_sym_LT] = ACTIONS(3961), + [anon_sym_GT] = ACTIONS(3961), + [anon_sym_in] = ACTIONS(3961), + [anon_sym_QMARK] = ACTIONS(3961), + [anon_sym_BANG] = ACTIONS(3961), + [anon_sym_PLUS_PLUS] = ACTIONS(3963), + [anon_sym_DASH_DASH] = ACTIONS(3963), + [anon_sym_PLUS] = ACTIONS(3961), + [anon_sym_DASH] = ACTIONS(3961), + [anon_sym_STAR] = ACTIONS(4039), + [anon_sym_SLASH] = ACTIONS(3961), + [anon_sym_PERCENT] = ACTIONS(3963), + [anon_sym_CARET] = ACTIONS(3963), + [anon_sym_PIPE] = ACTIONS(3961), + [anon_sym_AMP] = ACTIONS(3961), + [anon_sym_LT_LT] = ACTIONS(3963), + [anon_sym_GT_GT] = ACTIONS(3961), + [anon_sym_GT_GT_GT] = ACTIONS(3963), + [anon_sym_EQ_EQ] = ACTIONS(3963), + [anon_sym_BANG_EQ] = ACTIONS(3963), + [anon_sym_GT_EQ] = ACTIONS(3963), + [anon_sym_LT_EQ] = ACTIONS(3963), + [anon_sym_DOT] = ACTIONS(3961), + [anon_sym_EQ_GT] = ACTIONS(3963), + [anon_sym_switch] = ACTIONS(3963), + [anon_sym_when] = ACTIONS(3963), + [anon_sym_DOT_DOT] = ACTIONS(3963), + [anon_sym_and] = ACTIONS(3963), + [anon_sym_or] = ACTIONS(3963), + [anon_sym_AMP_AMP] = ACTIONS(3963), + [anon_sym_PIPE_PIPE] = ACTIONS(3963), + [anon_sym_QMARK_QMARK] = ACTIONS(3963), + [anon_sym_into] = ACTIONS(3963), + [anon_sym_on] = ACTIONS(3963), + [anon_sym_equals] = ACTIONS(3963), + [anon_sym_by] = ACTIONS(3963), + [anon_sym_as] = ACTIONS(3963), + [anon_sym_is] = ACTIONS(3963), + [anon_sym_DASH_GT] = ACTIONS(3963), + [anon_sym_with] = ACTIONS(3963), + [aux_sym_preproc_if_token3] = ACTIONS(3963), + [aux_sym_preproc_else_token1] = ACTIONS(3963), + [aux_sym_preproc_elif_token1] = ACTIONS(3963), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -481684,59 +481179,58 @@ 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(3652), - [anon_sym_LBRACK] = ACTIONS(3652), - [anon_sym_COLON] = ACTIONS(3650), - [anon_sym_COMMA] = ACTIONS(3652), - [anon_sym_RBRACK] = ACTIONS(3652), - [anon_sym_LPAREN] = ACTIONS(3652), - [anon_sym_RPAREN] = ACTIONS(3652), - [anon_sym_LBRACE] = ACTIONS(3652), - [anon_sym_RBRACE] = ACTIONS(3652), - [anon_sym_LT] = ACTIONS(3650), - [anon_sym_GT] = ACTIONS(3650), - [anon_sym_in] = ACTIONS(3650), - [anon_sym_QMARK] = ACTIONS(3650), - [anon_sym_BANG] = ACTIONS(3650), - [anon_sym_PLUS_PLUS] = ACTIONS(3652), - [anon_sym_DASH_DASH] = ACTIONS(3652), - [anon_sym_PLUS] = ACTIONS(3650), - [anon_sym_DASH] = ACTIONS(3650), - [anon_sym_STAR] = ACTIONS(3652), - [anon_sym_SLASH] = ACTIONS(3650), - [anon_sym_PERCENT] = ACTIONS(3652), - [anon_sym_CARET] = ACTIONS(3652), - [anon_sym_PIPE] = ACTIONS(3650), - [anon_sym_AMP] = ACTIONS(3650), - [anon_sym_LT_LT] = ACTIONS(3652), - [anon_sym_GT_GT] = ACTIONS(3650), - [anon_sym_GT_GT_GT] = ACTIONS(3652), - [anon_sym_EQ_EQ] = ACTIONS(3652), - [anon_sym_BANG_EQ] = ACTIONS(3652), - [anon_sym_GT_EQ] = ACTIONS(3652), - [anon_sym_LT_EQ] = ACTIONS(3652), - [anon_sym_DOT] = ACTIONS(3650), - [anon_sym_EQ_GT] = ACTIONS(3652), - [anon_sym_COLON_COLON] = ACTIONS(3652), - [anon_sym_switch] = ACTIONS(3652), - [anon_sym_when] = ACTIONS(3652), - [anon_sym_DOT_DOT] = ACTIONS(3652), - [anon_sym_and] = ACTIONS(3652), - [anon_sym_or] = ACTIONS(3652), - [anon_sym_AMP_AMP] = ACTIONS(3652), - [anon_sym_PIPE_PIPE] = ACTIONS(3652), - [anon_sym_QMARK_QMARK] = ACTIONS(3652), - [anon_sym_into] = ACTIONS(3652), - [anon_sym_on] = ACTIONS(3652), - [anon_sym_equals] = ACTIONS(3652), - [anon_sym_by] = ACTIONS(3652), - [anon_sym_as] = ACTIONS(3652), - [anon_sym_is] = ACTIONS(3652), - [anon_sym_DASH_GT] = ACTIONS(3652), - [anon_sym_with] = ACTIONS(3652), - [aux_sym_preproc_if_token3] = ACTIONS(3652), - [aux_sym_preproc_else_token1] = ACTIONS(3652), - [aux_sym_preproc_elif_token1] = ACTIONS(3652), + [anon_sym_SEMI] = ACTIONS(3963), + [anon_sym_LBRACK] = ACTIONS(4033), + [anon_sym_COLON] = ACTIONS(3963), + [anon_sym_COMMA] = ACTIONS(3963), + [anon_sym_RBRACK] = ACTIONS(3963), + [anon_sym_LPAREN] = ACTIONS(3963), + [anon_sym_RPAREN] = ACTIONS(3963), + [anon_sym_LBRACE] = ACTIONS(3963), + [anon_sym_RBRACE] = ACTIONS(3963), + [anon_sym_LT] = ACTIONS(3961), + [anon_sym_GT] = ACTIONS(3961), + [anon_sym_in] = ACTIONS(3961), + [anon_sym_QMARK] = ACTIONS(5277), + [anon_sym_BANG] = ACTIONS(3961), + [anon_sym_PLUS_PLUS] = ACTIONS(3963), + [anon_sym_DASH_DASH] = ACTIONS(3963), + [anon_sym_PLUS] = ACTIONS(3961), + [anon_sym_DASH] = ACTIONS(3961), + [anon_sym_STAR] = ACTIONS(4039), + [anon_sym_SLASH] = ACTIONS(3961), + [anon_sym_PERCENT] = ACTIONS(3963), + [anon_sym_CARET] = ACTIONS(3963), + [anon_sym_PIPE] = ACTIONS(3961), + [anon_sym_AMP] = ACTIONS(3961), + [anon_sym_LT_LT] = ACTIONS(3963), + [anon_sym_GT_GT] = ACTIONS(3961), + [anon_sym_GT_GT_GT] = ACTIONS(3963), + [anon_sym_EQ_EQ] = ACTIONS(3963), + [anon_sym_BANG_EQ] = ACTIONS(3963), + [anon_sym_GT_EQ] = ACTIONS(3963), + [anon_sym_LT_EQ] = ACTIONS(3963), + [anon_sym_DOT] = ACTIONS(3961), + [anon_sym_EQ_GT] = ACTIONS(3963), + [anon_sym_switch] = ACTIONS(3963), + [anon_sym_when] = ACTIONS(3963), + [anon_sym_DOT_DOT] = ACTIONS(3963), + [anon_sym_and] = ACTIONS(3963), + [anon_sym_or] = ACTIONS(3963), + [anon_sym_AMP_AMP] = ACTIONS(3963), + [anon_sym_PIPE_PIPE] = ACTIONS(3963), + [anon_sym_QMARK_QMARK] = ACTIONS(3963), + [anon_sym_into] = ACTIONS(3963), + [anon_sym_on] = ACTIONS(3963), + [anon_sym_equals] = ACTIONS(3963), + [anon_sym_by] = ACTIONS(3963), + [anon_sym_as] = ACTIONS(3963), + [anon_sym_is] = ACTIONS(3963), + [anon_sym_DASH_GT] = ACTIONS(3963), + [anon_sym_with] = ACTIONS(3963), + [aux_sym_preproc_if_token3] = ACTIONS(3963), + [aux_sym_preproc_else_token1] = ACTIONS(3963), + [aux_sym_preproc_elif_token1] = ACTIONS(3963), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -481749,7 +481243,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3150] = { - [sym_initializer_expression] = STATE(3282), [sym_preproc_region] = STATE(3150), [sym_preproc_endregion] = STATE(3150), [sym_preproc_line] = STATE(3150), @@ -481759,58 +481252,57 @@ 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_SEMI] = ACTIONS(4829), - [anon_sym_LBRACK] = ACTIONS(4829), - [anon_sym_COLON] = ACTIONS(4829), - [anon_sym_COMMA] = ACTIONS(4829), - [anon_sym_RBRACK] = ACTIONS(4829), - [anon_sym_LPAREN] = ACTIONS(4829), - [anon_sym_RPAREN] = ACTIONS(4829), - [anon_sym_LBRACE] = ACTIONS(1159), - [anon_sym_RBRACE] = ACTIONS(4829), - [anon_sym_LT] = ACTIONS(4831), - [anon_sym_GT] = ACTIONS(4831), - [anon_sym_in] = ACTIONS(4831), - [anon_sym_QMARK] = ACTIONS(4831), - [anon_sym_BANG] = ACTIONS(4831), - [anon_sym_PLUS_PLUS] = ACTIONS(4829), - [anon_sym_DASH_DASH] = ACTIONS(4829), - [anon_sym_PLUS] = ACTIONS(4831), - [anon_sym_DASH] = ACTIONS(4831), - [anon_sym_STAR] = ACTIONS(4829), - [anon_sym_SLASH] = ACTIONS(4831), - [anon_sym_PERCENT] = ACTIONS(4829), - [anon_sym_CARET] = ACTIONS(4829), - [anon_sym_PIPE] = ACTIONS(4831), - [anon_sym_AMP] = ACTIONS(4831), - [anon_sym_LT_LT] = ACTIONS(4829), - [anon_sym_GT_GT] = ACTIONS(4831), - [anon_sym_GT_GT_GT] = ACTIONS(4829), - [anon_sym_EQ_EQ] = ACTIONS(4829), - [anon_sym_BANG_EQ] = ACTIONS(4829), - [anon_sym_GT_EQ] = ACTIONS(4829), - [anon_sym_LT_EQ] = ACTIONS(4829), - [anon_sym_DOT] = ACTIONS(4831), - [anon_sym_EQ_GT] = ACTIONS(4829), - [anon_sym_switch] = ACTIONS(4829), - [anon_sym_when] = ACTIONS(4829), - [anon_sym_DOT_DOT] = ACTIONS(4829), - [anon_sym_and] = ACTIONS(4829), - [anon_sym_or] = ACTIONS(4829), - [anon_sym_AMP_AMP] = ACTIONS(4829), - [anon_sym_PIPE_PIPE] = ACTIONS(4829), - [anon_sym_QMARK_QMARK] = ACTIONS(4829), - [anon_sym_into] = ACTIONS(4829), - [anon_sym_on] = ACTIONS(4829), - [anon_sym_equals] = ACTIONS(4829), - [anon_sym_by] = ACTIONS(4829), - [anon_sym_as] = ACTIONS(4829), - [anon_sym_is] = ACTIONS(4829), - [anon_sym_DASH_GT] = ACTIONS(4829), - [anon_sym_with] = ACTIONS(4829), - [aux_sym_preproc_if_token3] = ACTIONS(4829), - [aux_sym_preproc_else_token1] = ACTIONS(4829), - [aux_sym_preproc_elif_token1] = ACTIONS(4829), + [anon_sym_EQ] = ACTIONS(3673), + [anon_sym_LBRACK] = ACTIONS(3671), + [anon_sym_COLON] = ACTIONS(3671), + [anon_sym_COMMA] = ACTIONS(3671), + [anon_sym_LPAREN] = ACTIONS(3671), + [anon_sym_LT] = ACTIONS(3673), + [anon_sym_GT] = ACTIONS(3673), + [anon_sym_QMARK] = ACTIONS(3673), + [anon_sym_BANG] = ACTIONS(3673), + [anon_sym_PLUS_PLUS] = ACTIONS(3671), + [anon_sym_DASH_DASH] = ACTIONS(3671), + [anon_sym_PLUS] = ACTIONS(3673), + [anon_sym_DASH] = ACTIONS(3673), + [anon_sym_STAR] = ACTIONS(3673), + [anon_sym_SLASH] = ACTIONS(3673), + [anon_sym_PERCENT] = ACTIONS(3673), + [anon_sym_CARET] = ACTIONS(3673), + [anon_sym_PIPE] = ACTIONS(3673), + [anon_sym_AMP] = ACTIONS(3673), + [anon_sym_LT_LT] = ACTIONS(3673), + [anon_sym_GT_GT] = ACTIONS(3673), + [anon_sym_GT_GT_GT] = ACTIONS(3673), + [anon_sym_EQ_EQ] = ACTIONS(3671), + [anon_sym_BANG_EQ] = ACTIONS(3671), + [anon_sym_GT_EQ] = ACTIONS(3671), + [anon_sym_LT_EQ] = ACTIONS(3671), + [anon_sym_DOT] = ACTIONS(3673), + [anon_sym_switch] = ACTIONS(3671), + [anon_sym_DOT_DOT] = ACTIONS(3671), + [anon_sym_and] = ACTIONS(3671), + [anon_sym_or] = ACTIONS(3671), + [anon_sym_PLUS_EQ] = ACTIONS(3671), + [anon_sym_DASH_EQ] = ACTIONS(3671), + [anon_sym_STAR_EQ] = ACTIONS(3671), + [anon_sym_SLASH_EQ] = ACTIONS(3671), + [anon_sym_PERCENT_EQ] = ACTIONS(3671), + [anon_sym_AMP_EQ] = ACTIONS(3671), + [anon_sym_CARET_EQ] = ACTIONS(3671), + [anon_sym_PIPE_EQ] = ACTIONS(3671), + [anon_sym_LT_LT_EQ] = ACTIONS(3671), + [anon_sym_GT_GT_EQ] = ACTIONS(3671), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3671), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3671), + [anon_sym_AMP_AMP] = ACTIONS(3671), + [anon_sym_PIPE_PIPE] = ACTIONS(3671), + [anon_sym_QMARK_QMARK] = ACTIONS(3673), + [anon_sym_into] = ACTIONS(3671), + [anon_sym_as] = ACTIONS(3671), + [anon_sym_is] = ACTIONS(3671), + [anon_sym_DASH_GT] = ACTIONS(3671), + [anon_sym_with] = ACTIONS(3671), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -481821,6 +481313,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(3671), }, [3151] = { [sym_preproc_region] = STATE(3151), @@ -481832,58 +481325,58 @@ 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(4018), - [anon_sym_LBRACK] = ACTIONS(4066), - [anon_sym_COLON] = ACTIONS(4018), - [anon_sym_COMMA] = ACTIONS(4018), - [anon_sym_RBRACK] = ACTIONS(4018), - [anon_sym_LPAREN] = ACTIONS(4018), - [anon_sym_RPAREN] = ACTIONS(4018), - [anon_sym_LBRACE] = ACTIONS(4018), - [anon_sym_RBRACE] = ACTIONS(4018), - [anon_sym_LT] = ACTIONS(4016), - [anon_sym_GT] = ACTIONS(4016), - [anon_sym_in] = ACTIONS(4016), - [anon_sym_QMARK] = ACTIONS(4016), - [anon_sym_BANG] = ACTIONS(4016), - [anon_sym_PLUS_PLUS] = ACTIONS(4018), - [anon_sym_DASH_DASH] = ACTIONS(4018), - [anon_sym_PLUS] = ACTIONS(4016), - [anon_sym_DASH] = ACTIONS(4016), - [anon_sym_STAR] = ACTIONS(4072), - [anon_sym_SLASH] = ACTIONS(4016), - [anon_sym_PERCENT] = ACTIONS(4018), - [anon_sym_CARET] = ACTIONS(4018), - [anon_sym_PIPE] = ACTIONS(4016), - [anon_sym_AMP] = ACTIONS(4016), - [anon_sym_LT_LT] = ACTIONS(4018), - [anon_sym_GT_GT] = ACTIONS(4016), - [anon_sym_GT_GT_GT] = ACTIONS(4018), - [anon_sym_EQ_EQ] = ACTIONS(4018), - [anon_sym_BANG_EQ] = ACTIONS(4018), - [anon_sym_GT_EQ] = ACTIONS(4018), - [anon_sym_LT_EQ] = ACTIONS(4018), - [anon_sym_DOT] = ACTIONS(4016), - [anon_sym_EQ_GT] = ACTIONS(4018), - [anon_sym_switch] = ACTIONS(4018), - [anon_sym_when] = ACTIONS(4018), - [anon_sym_DOT_DOT] = ACTIONS(4018), - [anon_sym_and] = ACTIONS(4018), - [anon_sym_or] = ACTIONS(4018), - [anon_sym_AMP_AMP] = ACTIONS(4018), - [anon_sym_PIPE_PIPE] = ACTIONS(4018), - [anon_sym_QMARK_QMARK] = ACTIONS(4018), - [anon_sym_into] = ACTIONS(4018), - [anon_sym_on] = ACTIONS(4018), - [anon_sym_equals] = ACTIONS(4018), - [anon_sym_by] = ACTIONS(4018), - [anon_sym_as] = ACTIONS(4018), - [anon_sym_is] = ACTIONS(4018), - [anon_sym_DASH_GT] = ACTIONS(4018), - [anon_sym_with] = ACTIONS(4018), - [aux_sym_preproc_if_token3] = ACTIONS(4018), - [aux_sym_preproc_else_token1] = ACTIONS(4018), - [aux_sym_preproc_elif_token1] = ACTIONS(4018), + [anon_sym_SEMI] = ACTIONS(3963), + [anon_sym_LBRACK] = ACTIONS(4033), + [anon_sym_COLON] = ACTIONS(3963), + [anon_sym_COMMA] = ACTIONS(3963), + [anon_sym_RBRACK] = ACTIONS(3963), + [anon_sym_LPAREN] = ACTIONS(3963), + [anon_sym_RPAREN] = ACTIONS(3963), + [anon_sym_LBRACE] = ACTIONS(3963), + [anon_sym_RBRACE] = ACTIONS(3963), + [anon_sym_LT] = ACTIONS(3961), + [anon_sym_GT] = ACTIONS(3961), + [anon_sym_in] = ACTIONS(3961), + [anon_sym_QMARK] = ACTIONS(5277), + [anon_sym_BANG] = ACTIONS(3961), + [anon_sym_PLUS_PLUS] = ACTIONS(3963), + [anon_sym_DASH_DASH] = ACTIONS(3963), + [anon_sym_PLUS] = ACTIONS(3961), + [anon_sym_DASH] = ACTIONS(3961), + [anon_sym_STAR] = ACTIONS(4039), + [anon_sym_SLASH] = ACTIONS(3961), + [anon_sym_PERCENT] = ACTIONS(3963), + [anon_sym_CARET] = ACTIONS(3963), + [anon_sym_PIPE] = ACTIONS(3961), + [anon_sym_AMP] = ACTIONS(3961), + [anon_sym_LT_LT] = ACTIONS(3963), + [anon_sym_GT_GT] = ACTIONS(3961), + [anon_sym_GT_GT_GT] = ACTIONS(3963), + [anon_sym_EQ_EQ] = ACTIONS(3963), + [anon_sym_BANG_EQ] = ACTIONS(3963), + [anon_sym_GT_EQ] = ACTIONS(3963), + [anon_sym_LT_EQ] = ACTIONS(3963), + [anon_sym_DOT] = ACTIONS(5280), + [anon_sym_EQ_GT] = ACTIONS(3963), + [anon_sym_switch] = ACTIONS(3963), + [anon_sym_when] = ACTIONS(3963), + [anon_sym_DOT_DOT] = ACTIONS(3963), + [anon_sym_and] = ACTIONS(3963), + [anon_sym_or] = ACTIONS(3963), + [anon_sym_AMP_AMP] = ACTIONS(3963), + [anon_sym_PIPE_PIPE] = ACTIONS(3963), + [anon_sym_QMARK_QMARK] = ACTIONS(3963), + [anon_sym_into] = ACTIONS(3963), + [anon_sym_on] = ACTIONS(3963), + [anon_sym_equals] = ACTIONS(3963), + [anon_sym_by] = ACTIONS(3963), + [anon_sym_as] = ACTIONS(3963), + [anon_sym_is] = ACTIONS(3963), + [anon_sym_DASH_GT] = ACTIONS(3963), + [anon_sym_with] = ACTIONS(3963), + [aux_sym_preproc_if_token3] = ACTIONS(3963), + [aux_sym_preproc_else_token1] = ACTIONS(3963), + [aux_sym_preproc_elif_token1] = ACTIONS(3963), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -481905,58 +481398,58 @@ 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(4114), - [anon_sym_LBRACK] = ACTIONS(4114), - [anon_sym_COLON] = ACTIONS(4114), - [anon_sym_COMMA] = ACTIONS(4114), - [anon_sym_RBRACK] = ACTIONS(4114), - [anon_sym_LPAREN] = ACTIONS(4114), - [anon_sym_RPAREN] = ACTIONS(4114), - [anon_sym_LBRACE] = ACTIONS(4114), - [anon_sym_RBRACE] = ACTIONS(4114), - [anon_sym_LT] = ACTIONS(4112), - [anon_sym_GT] = ACTIONS(4112), - [anon_sym_in] = ACTIONS(4112), - [anon_sym_QMARK] = ACTIONS(4112), - [anon_sym_BANG] = ACTIONS(4112), - [anon_sym_PLUS_PLUS] = ACTIONS(4114), - [anon_sym_DASH_DASH] = ACTIONS(4114), - [anon_sym_PLUS] = ACTIONS(4112), - [anon_sym_DASH] = ACTIONS(4112), - [anon_sym_STAR] = ACTIONS(4114), - [anon_sym_SLASH] = ACTIONS(4112), - [anon_sym_PERCENT] = ACTIONS(4114), - [anon_sym_CARET] = ACTIONS(4114), - [anon_sym_PIPE] = ACTIONS(4112), - [anon_sym_AMP] = ACTIONS(4112), - [anon_sym_LT_LT] = ACTIONS(4114), - [anon_sym_GT_GT] = ACTIONS(4112), - [anon_sym_GT_GT_GT] = ACTIONS(4114), - [anon_sym_EQ_EQ] = ACTIONS(4114), - [anon_sym_BANG_EQ] = ACTIONS(4114), - [anon_sym_GT_EQ] = ACTIONS(4114), - [anon_sym_LT_EQ] = ACTIONS(4114), - [anon_sym_DOT] = ACTIONS(4112), - [anon_sym_EQ_GT] = ACTIONS(4114), - [anon_sym_switch] = ACTIONS(4114), - [anon_sym_when] = ACTIONS(4114), - [anon_sym_DOT_DOT] = ACTIONS(4114), - [anon_sym_and] = ACTIONS(4114), - [anon_sym_or] = ACTIONS(4114), - [anon_sym_AMP_AMP] = ACTIONS(4114), - [anon_sym_PIPE_PIPE] = ACTIONS(4114), - [anon_sym_QMARK_QMARK] = ACTIONS(4114), - [anon_sym_into] = ACTIONS(4114), - [anon_sym_on] = ACTIONS(4114), - [anon_sym_equals] = ACTIONS(4114), - [anon_sym_by] = ACTIONS(4114), - [anon_sym_as] = ACTIONS(4114), - [anon_sym_is] = ACTIONS(4114), - [anon_sym_DASH_GT] = ACTIONS(4114), - [anon_sym_with] = ACTIONS(4114), - [aux_sym_preproc_if_token3] = ACTIONS(4114), - [aux_sym_preproc_else_token1] = ACTIONS(4114), - [aux_sym_preproc_elif_token1] = ACTIONS(4114), + [anon_sym_SEMI] = ACTIONS(3978), + [anon_sym_LBRACK] = ACTIONS(3978), + [anon_sym_COLON] = ACTIONS(3978), + [anon_sym_COMMA] = ACTIONS(3978), + [anon_sym_RBRACK] = ACTIONS(3978), + [anon_sym_LPAREN] = ACTIONS(3978), + [anon_sym_RPAREN] = ACTIONS(3978), + [anon_sym_LBRACE] = ACTIONS(3978), + [anon_sym_RBRACE] = ACTIONS(3978), + [anon_sym_LT] = ACTIONS(3976), + [anon_sym_GT] = ACTIONS(3976), + [anon_sym_in] = ACTIONS(3976), + [anon_sym_QMARK] = ACTIONS(3976), + [anon_sym_BANG] = ACTIONS(3976), + [anon_sym_PLUS_PLUS] = ACTIONS(3978), + [anon_sym_DASH_DASH] = ACTIONS(3978), + [anon_sym_PLUS] = ACTIONS(3976), + [anon_sym_DASH] = ACTIONS(3976), + [anon_sym_STAR] = ACTIONS(3978), + [anon_sym_SLASH] = ACTIONS(3976), + [anon_sym_PERCENT] = ACTIONS(3978), + [anon_sym_CARET] = ACTIONS(3978), + [anon_sym_PIPE] = ACTIONS(3976), + [anon_sym_AMP] = ACTIONS(3976), + [anon_sym_LT_LT] = ACTIONS(3978), + [anon_sym_GT_GT] = ACTIONS(3976), + [anon_sym_GT_GT_GT] = ACTIONS(3978), + [anon_sym_EQ_EQ] = ACTIONS(3978), + [anon_sym_BANG_EQ] = ACTIONS(3978), + [anon_sym_GT_EQ] = ACTIONS(3978), + [anon_sym_LT_EQ] = ACTIONS(3978), + [anon_sym_DOT] = ACTIONS(5280), + [anon_sym_EQ_GT] = ACTIONS(3978), + [anon_sym_switch] = ACTIONS(3978), + [anon_sym_when] = ACTIONS(3978), + [anon_sym_DOT_DOT] = ACTIONS(3978), + [anon_sym_and] = ACTIONS(3978), + [anon_sym_or] = ACTIONS(3978), + [anon_sym_AMP_AMP] = ACTIONS(3978), + [anon_sym_PIPE_PIPE] = ACTIONS(3978), + [anon_sym_QMARK_QMARK] = ACTIONS(3978), + [anon_sym_into] = ACTIONS(3978), + [anon_sym_on] = ACTIONS(3978), + [anon_sym_equals] = ACTIONS(3978), + [anon_sym_by] = ACTIONS(3978), + [anon_sym_as] = ACTIONS(3978), + [anon_sym_is] = ACTIONS(3978), + [anon_sym_DASH_GT] = ACTIONS(3978), + [anon_sym_with] = ACTIONS(3978), + [aux_sym_preproc_if_token3] = ACTIONS(3978), + [aux_sym_preproc_else_token1] = ACTIONS(3978), + [aux_sym_preproc_elif_token1] = ACTIONS(3978), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -481978,58 +481471,58 @@ 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(3687), - [anon_sym_LBRACK] = ACTIONS(3687), - [anon_sym_COLON] = ACTIONS(3687), - [anon_sym_COMMA] = ACTIONS(3687), - [anon_sym_RBRACK] = ACTIONS(3687), - [anon_sym_LPAREN] = ACTIONS(3687), - [anon_sym_RPAREN] = ACTIONS(3687), - [anon_sym_LBRACE] = ACTIONS(3687), - [anon_sym_RBRACE] = ACTIONS(3687), - [anon_sym_LT] = ACTIONS(3685), - [anon_sym_GT] = ACTIONS(3685), - [anon_sym_in] = ACTIONS(3685), - [anon_sym_QMARK] = ACTIONS(3685), - [anon_sym_BANG] = ACTIONS(3685), - [anon_sym_PLUS_PLUS] = ACTIONS(3687), - [anon_sym_DASH_DASH] = ACTIONS(3687), - [anon_sym_PLUS] = ACTIONS(3685), - [anon_sym_DASH] = ACTIONS(3685), - [anon_sym_STAR] = ACTIONS(3687), - [anon_sym_SLASH] = ACTIONS(3685), - [anon_sym_PERCENT] = ACTIONS(3687), - [anon_sym_CARET] = ACTIONS(3687), - [anon_sym_PIPE] = ACTIONS(3685), - [anon_sym_AMP] = ACTIONS(3685), - [anon_sym_LT_LT] = ACTIONS(3687), - [anon_sym_GT_GT] = ACTIONS(3685), - [anon_sym_GT_GT_GT] = ACTIONS(3687), - [anon_sym_EQ_EQ] = ACTIONS(3687), - [anon_sym_BANG_EQ] = ACTIONS(3687), - [anon_sym_GT_EQ] = ACTIONS(3687), - [anon_sym_LT_EQ] = ACTIONS(3687), - [anon_sym_DOT] = ACTIONS(3685), - [anon_sym_EQ_GT] = ACTIONS(3687), - [anon_sym_switch] = ACTIONS(3687), - [anon_sym_when] = ACTIONS(3687), - [anon_sym_DOT_DOT] = ACTIONS(3687), - [anon_sym_and] = ACTIONS(3687), - [anon_sym_or] = ACTIONS(3687), - [anon_sym_AMP_AMP] = ACTIONS(3687), - [anon_sym_PIPE_PIPE] = ACTIONS(3687), - [anon_sym_QMARK_QMARK] = ACTIONS(3687), - [anon_sym_into] = ACTIONS(3687), - [anon_sym_on] = ACTIONS(3687), - [anon_sym_equals] = ACTIONS(3687), - [anon_sym_by] = ACTIONS(3687), - [anon_sym_as] = ACTIONS(3687), - [anon_sym_is] = ACTIONS(3687), - [anon_sym_DASH_GT] = ACTIONS(3687), - [anon_sym_with] = ACTIONS(3687), - [aux_sym_preproc_if_token3] = ACTIONS(3687), - [aux_sym_preproc_else_token1] = ACTIONS(3687), - [aux_sym_preproc_elif_token1] = ACTIONS(3687), + [anon_sym_SEMI] = ACTIONS(3978), + [anon_sym_LBRACK] = ACTIONS(3978), + [anon_sym_COLON] = ACTIONS(3978), + [anon_sym_COMMA] = ACTIONS(3978), + [anon_sym_RBRACK] = ACTIONS(3978), + [anon_sym_LPAREN] = ACTIONS(3978), + [anon_sym_RPAREN] = ACTIONS(3978), + [anon_sym_LBRACE] = ACTIONS(3978), + [anon_sym_RBRACE] = ACTIONS(3978), + [anon_sym_LT] = ACTIONS(3976), + [anon_sym_GT] = ACTIONS(3976), + [anon_sym_in] = ACTIONS(3976), + [anon_sym_QMARK] = ACTIONS(3976), + [anon_sym_BANG] = ACTIONS(3976), + [anon_sym_PLUS_PLUS] = ACTIONS(3978), + [anon_sym_DASH_DASH] = ACTIONS(3978), + [anon_sym_PLUS] = ACTIONS(3976), + [anon_sym_DASH] = ACTIONS(3976), + [anon_sym_STAR] = ACTIONS(3978), + [anon_sym_SLASH] = ACTIONS(3976), + [anon_sym_PERCENT] = ACTIONS(3978), + [anon_sym_CARET] = ACTIONS(3978), + [anon_sym_PIPE] = ACTIONS(3976), + [anon_sym_AMP] = ACTIONS(3976), + [anon_sym_LT_LT] = ACTIONS(3978), + [anon_sym_GT_GT] = ACTIONS(3976), + [anon_sym_GT_GT_GT] = ACTIONS(3978), + [anon_sym_EQ_EQ] = ACTIONS(3978), + [anon_sym_BANG_EQ] = ACTIONS(3978), + [anon_sym_GT_EQ] = ACTIONS(3978), + [anon_sym_LT_EQ] = ACTIONS(3978), + [anon_sym_DOT] = ACTIONS(3976), + [anon_sym_EQ_GT] = ACTIONS(3978), + [anon_sym_switch] = ACTIONS(3978), + [anon_sym_when] = ACTIONS(3978), + [anon_sym_DOT_DOT] = ACTIONS(3978), + [anon_sym_and] = ACTIONS(3978), + [anon_sym_or] = ACTIONS(3978), + [anon_sym_AMP_AMP] = ACTIONS(3978), + [anon_sym_PIPE_PIPE] = ACTIONS(3978), + [anon_sym_QMARK_QMARK] = ACTIONS(3978), + [anon_sym_into] = ACTIONS(3978), + [anon_sym_on] = ACTIONS(3978), + [anon_sym_equals] = ACTIONS(3978), + [anon_sym_by] = ACTIONS(3978), + [anon_sym_as] = ACTIONS(3978), + [anon_sym_is] = ACTIONS(3978), + [anon_sym_DASH_GT] = ACTIONS(3978), + [anon_sym_with] = ACTIONS(3978), + [aux_sym_preproc_if_token3] = ACTIONS(3978), + [aux_sym_preproc_else_token1] = ACTIONS(3978), + [aux_sym_preproc_elif_token1] = ACTIONS(3978), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -482051,58 +481544,58 @@ 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(4122), - [anon_sym_LBRACK] = ACTIONS(4122), - [anon_sym_COLON] = ACTIONS(4122), - [anon_sym_COMMA] = ACTIONS(4122), - [anon_sym_RBRACK] = ACTIONS(4122), - [anon_sym_LPAREN] = ACTIONS(4122), - [anon_sym_RPAREN] = ACTIONS(4122), - [anon_sym_LBRACE] = ACTIONS(4122), - [anon_sym_RBRACE] = ACTIONS(4122), - [anon_sym_LT] = ACTIONS(4120), - [anon_sym_GT] = ACTIONS(4120), - [anon_sym_in] = ACTIONS(4120), - [anon_sym_QMARK] = ACTIONS(4120), - [anon_sym_BANG] = ACTIONS(4120), - [anon_sym_PLUS_PLUS] = ACTIONS(4122), - [anon_sym_DASH_DASH] = ACTIONS(4122), - [anon_sym_PLUS] = ACTIONS(4120), - [anon_sym_DASH] = ACTIONS(4120), - [anon_sym_STAR] = ACTIONS(4122), - [anon_sym_SLASH] = ACTIONS(4120), - [anon_sym_PERCENT] = ACTIONS(4122), - [anon_sym_CARET] = ACTIONS(4122), - [anon_sym_PIPE] = ACTIONS(4120), - [anon_sym_AMP] = ACTIONS(4120), - [anon_sym_LT_LT] = ACTIONS(4122), - [anon_sym_GT_GT] = ACTIONS(4120), - [anon_sym_GT_GT_GT] = ACTIONS(4122), - [anon_sym_EQ_EQ] = ACTIONS(4122), - [anon_sym_BANG_EQ] = ACTIONS(4122), - [anon_sym_GT_EQ] = ACTIONS(4122), - [anon_sym_LT_EQ] = ACTIONS(4122), - [anon_sym_DOT] = ACTIONS(4120), - [anon_sym_EQ_GT] = ACTIONS(4122), - [anon_sym_switch] = ACTIONS(4122), - [anon_sym_when] = ACTIONS(4122), - [anon_sym_DOT_DOT] = ACTIONS(4122), - [anon_sym_and] = ACTIONS(4122), - [anon_sym_or] = ACTIONS(4122), - [anon_sym_AMP_AMP] = ACTIONS(4122), - [anon_sym_PIPE_PIPE] = ACTIONS(4122), - [anon_sym_QMARK_QMARK] = ACTIONS(4122), - [anon_sym_into] = ACTIONS(4122), - [anon_sym_on] = ACTIONS(4122), - [anon_sym_equals] = ACTIONS(4122), - [anon_sym_by] = ACTIONS(4122), - [anon_sym_as] = ACTIONS(4122), - [anon_sym_is] = ACTIONS(4122), - [anon_sym_DASH_GT] = ACTIONS(4122), - [anon_sym_with] = ACTIONS(4122), - [aux_sym_preproc_if_token3] = ACTIONS(4122), - [aux_sym_preproc_else_token1] = ACTIONS(4122), - [aux_sym_preproc_elif_token1] = ACTIONS(4122), + [anon_sym_SEMI] = ACTIONS(3994), + [anon_sym_LBRACK] = ACTIONS(3994), + [anon_sym_COLON] = ACTIONS(3994), + [anon_sym_COMMA] = ACTIONS(3994), + [anon_sym_RBRACK] = ACTIONS(3994), + [anon_sym_LPAREN] = ACTIONS(3994), + [anon_sym_RPAREN] = ACTIONS(3994), + [anon_sym_LBRACE] = ACTIONS(3994), + [anon_sym_RBRACE] = ACTIONS(3994), + [anon_sym_LT] = ACTIONS(3992), + [anon_sym_GT] = ACTIONS(3992), + [anon_sym_in] = ACTIONS(3992), + [anon_sym_QMARK] = ACTIONS(3992), + [anon_sym_BANG] = ACTIONS(3992), + [anon_sym_PLUS_PLUS] = ACTIONS(3994), + [anon_sym_DASH_DASH] = ACTIONS(3994), + [anon_sym_PLUS] = ACTIONS(3992), + [anon_sym_DASH] = ACTIONS(3992), + [anon_sym_STAR] = ACTIONS(3994), + [anon_sym_SLASH] = ACTIONS(3992), + [anon_sym_PERCENT] = ACTIONS(3994), + [anon_sym_CARET] = ACTIONS(3994), + [anon_sym_PIPE] = ACTIONS(3992), + [anon_sym_AMP] = ACTIONS(3992), + [anon_sym_LT_LT] = ACTIONS(3994), + [anon_sym_GT_GT] = ACTIONS(3992), + [anon_sym_GT_GT_GT] = ACTIONS(3994), + [anon_sym_EQ_EQ] = ACTIONS(3994), + [anon_sym_BANG_EQ] = ACTIONS(3994), + [anon_sym_GT_EQ] = ACTIONS(3994), + [anon_sym_LT_EQ] = ACTIONS(3994), + [anon_sym_DOT] = ACTIONS(3992), + [anon_sym_EQ_GT] = ACTIONS(3994), + [anon_sym_switch] = ACTIONS(3994), + [anon_sym_when] = ACTIONS(3994), + [anon_sym_DOT_DOT] = ACTIONS(3994), + [anon_sym_and] = ACTIONS(3994), + [anon_sym_or] = ACTIONS(3994), + [anon_sym_AMP_AMP] = ACTIONS(3994), + [anon_sym_PIPE_PIPE] = ACTIONS(3994), + [anon_sym_QMARK_QMARK] = ACTIONS(3994), + [anon_sym_into] = ACTIONS(3994), + [anon_sym_on] = ACTIONS(3994), + [anon_sym_equals] = ACTIONS(3994), + [anon_sym_by] = ACTIONS(3994), + [anon_sym_as] = ACTIONS(3994), + [anon_sym_is] = ACTIONS(3994), + [anon_sym_DASH_GT] = ACTIONS(3994), + [anon_sym_with] = ACTIONS(3994), + [aux_sym_preproc_if_token3] = ACTIONS(3994), + [aux_sym_preproc_else_token1] = ACTIONS(3994), + [aux_sym_preproc_elif_token1] = ACTIONS(3994), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -482124,58 +481617,58 @@ 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(4126), - [anon_sym_LBRACK] = ACTIONS(4126), - [anon_sym_COLON] = ACTIONS(4126), - [anon_sym_COMMA] = ACTIONS(4126), - [anon_sym_RBRACK] = ACTIONS(4126), - [anon_sym_LPAREN] = ACTIONS(4126), - [anon_sym_RPAREN] = ACTIONS(4126), - [anon_sym_LBRACE] = ACTIONS(4126), - [anon_sym_RBRACE] = ACTIONS(4126), - [anon_sym_LT] = ACTIONS(4124), - [anon_sym_GT] = ACTIONS(4124), - [anon_sym_in] = ACTIONS(4124), - [anon_sym_QMARK] = ACTIONS(4124), - [anon_sym_BANG] = ACTIONS(4124), - [anon_sym_PLUS_PLUS] = ACTIONS(4126), - [anon_sym_DASH_DASH] = ACTIONS(4126), - [anon_sym_PLUS] = ACTIONS(4124), - [anon_sym_DASH] = ACTIONS(4124), - [anon_sym_STAR] = ACTIONS(4126), - [anon_sym_SLASH] = ACTIONS(4124), - [anon_sym_PERCENT] = ACTIONS(4126), - [anon_sym_CARET] = ACTIONS(4126), - [anon_sym_PIPE] = ACTIONS(4124), - [anon_sym_AMP] = ACTIONS(4124), - [anon_sym_LT_LT] = ACTIONS(4126), - [anon_sym_GT_GT] = ACTIONS(4124), - [anon_sym_GT_GT_GT] = ACTIONS(4126), - [anon_sym_EQ_EQ] = ACTIONS(4126), - [anon_sym_BANG_EQ] = ACTIONS(4126), - [anon_sym_GT_EQ] = ACTIONS(4126), - [anon_sym_LT_EQ] = ACTIONS(4126), - [anon_sym_DOT] = ACTIONS(4124), - [anon_sym_EQ_GT] = ACTIONS(4126), - [anon_sym_switch] = ACTIONS(4126), - [anon_sym_when] = ACTIONS(4126), - [anon_sym_DOT_DOT] = ACTIONS(4126), - [anon_sym_and] = ACTIONS(4126), - [anon_sym_or] = ACTIONS(4126), - [anon_sym_AMP_AMP] = ACTIONS(4126), - [anon_sym_PIPE_PIPE] = ACTIONS(4126), - [anon_sym_QMARK_QMARK] = ACTIONS(4126), - [anon_sym_into] = ACTIONS(4126), - [anon_sym_on] = ACTIONS(4126), - [anon_sym_equals] = ACTIONS(4126), - [anon_sym_by] = ACTIONS(4126), - [anon_sym_as] = ACTIONS(4126), - [anon_sym_is] = ACTIONS(4126), - [anon_sym_DASH_GT] = ACTIONS(4126), - [anon_sym_with] = ACTIONS(4126), - [aux_sym_preproc_if_token3] = ACTIONS(4126), - [aux_sym_preproc_else_token1] = ACTIONS(4126), - [aux_sym_preproc_elif_token1] = ACTIONS(4126), + [anon_sym_SEMI] = ACTIONS(3953), + [anon_sym_LBRACK] = ACTIONS(3953), + [anon_sym_COLON] = ACTIONS(3953), + [anon_sym_COMMA] = ACTIONS(3953), + [anon_sym_RBRACK] = ACTIONS(3953), + [anon_sym_LPAREN] = ACTIONS(3953), + [anon_sym_RPAREN] = ACTIONS(3953), + [anon_sym_LBRACE] = ACTIONS(3953), + [anon_sym_RBRACE] = ACTIONS(3953), + [anon_sym_LT] = ACTIONS(3951), + [anon_sym_GT] = ACTIONS(3951), + [anon_sym_in] = ACTIONS(3951), + [anon_sym_QMARK] = ACTIONS(3951), + [anon_sym_BANG] = ACTIONS(3951), + [anon_sym_PLUS_PLUS] = ACTIONS(3953), + [anon_sym_DASH_DASH] = ACTIONS(3953), + [anon_sym_PLUS] = ACTIONS(3951), + [anon_sym_DASH] = ACTIONS(3951), + [anon_sym_STAR] = ACTIONS(3953), + [anon_sym_SLASH] = ACTIONS(3951), + [anon_sym_PERCENT] = ACTIONS(3953), + [anon_sym_CARET] = ACTIONS(3953), + [anon_sym_PIPE] = ACTIONS(3951), + [anon_sym_AMP] = ACTIONS(3951), + [anon_sym_LT_LT] = ACTIONS(3953), + [anon_sym_GT_GT] = ACTIONS(3951), + [anon_sym_GT_GT_GT] = ACTIONS(3953), + [anon_sym_EQ_EQ] = ACTIONS(3953), + [anon_sym_BANG_EQ] = ACTIONS(3953), + [anon_sym_GT_EQ] = ACTIONS(3953), + [anon_sym_LT_EQ] = ACTIONS(3953), + [anon_sym_DOT] = ACTIONS(3951), + [anon_sym_EQ_GT] = ACTIONS(3953), + [anon_sym_switch] = ACTIONS(3953), + [anon_sym_when] = ACTIONS(3953), + [anon_sym_DOT_DOT] = ACTIONS(3953), + [anon_sym_and] = ACTIONS(3953), + [anon_sym_or] = ACTIONS(3953), + [anon_sym_AMP_AMP] = ACTIONS(3953), + [anon_sym_PIPE_PIPE] = ACTIONS(3953), + [anon_sym_QMARK_QMARK] = ACTIONS(3953), + [anon_sym_into] = ACTIONS(3953), + [anon_sym_on] = ACTIONS(3953), + [anon_sym_equals] = ACTIONS(3953), + [anon_sym_by] = ACTIONS(3953), + [anon_sym_as] = ACTIONS(3953), + [anon_sym_is] = ACTIONS(3953), + [anon_sym_DASH_GT] = ACTIONS(3953), + [anon_sym_with] = ACTIONS(3953), + [aux_sym_preproc_if_token3] = ACTIONS(3953), + [aux_sym_preproc_else_token1] = ACTIONS(3953), + [aux_sym_preproc_elif_token1] = ACTIONS(3953), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -482197,58 +481690,58 @@ 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(3662), - [anon_sym_LBRACK] = ACTIONS(3662), - [anon_sym_COLON] = ACTIONS(3662), - [anon_sym_COMMA] = ACTIONS(3662), - [anon_sym_RBRACK] = ACTIONS(3662), - [anon_sym_LPAREN] = ACTIONS(3662), - [anon_sym_RPAREN] = ACTIONS(3662), - [anon_sym_LBRACE] = ACTIONS(3662), - [anon_sym_RBRACE] = ACTIONS(3662), - [anon_sym_LT] = ACTIONS(3660), - [anon_sym_GT] = ACTIONS(3660), - [anon_sym_in] = ACTIONS(3660), - [anon_sym_QMARK] = ACTIONS(3660), - [anon_sym_BANG] = ACTIONS(3660), - [anon_sym_PLUS_PLUS] = ACTIONS(3662), - [anon_sym_DASH_DASH] = ACTIONS(3662), - [anon_sym_PLUS] = ACTIONS(3660), - [anon_sym_DASH] = ACTIONS(3660), - [anon_sym_STAR] = ACTIONS(3662), - [anon_sym_SLASH] = ACTIONS(3660), - [anon_sym_PERCENT] = ACTIONS(3662), - [anon_sym_CARET] = ACTIONS(3662), - [anon_sym_PIPE] = ACTIONS(3660), - [anon_sym_AMP] = ACTIONS(3660), - [anon_sym_LT_LT] = ACTIONS(3662), - [anon_sym_GT_GT] = ACTIONS(3660), - [anon_sym_GT_GT_GT] = ACTIONS(3662), - [anon_sym_EQ_EQ] = ACTIONS(3662), - [anon_sym_BANG_EQ] = ACTIONS(3662), - [anon_sym_GT_EQ] = ACTIONS(3662), - [anon_sym_LT_EQ] = ACTIONS(3662), - [anon_sym_DOT] = ACTIONS(3660), - [anon_sym_EQ_GT] = ACTIONS(3662), - [anon_sym_switch] = ACTIONS(3662), - [anon_sym_when] = ACTIONS(3662), - [anon_sym_DOT_DOT] = ACTIONS(3662), - [anon_sym_and] = ACTIONS(3662), - [anon_sym_or] = ACTIONS(3662), - [anon_sym_AMP_AMP] = ACTIONS(3662), - [anon_sym_PIPE_PIPE] = ACTIONS(3662), - [anon_sym_QMARK_QMARK] = ACTIONS(3662), - [anon_sym_into] = ACTIONS(3662), - [anon_sym_on] = ACTIONS(3662), - [anon_sym_equals] = ACTIONS(3662), - [anon_sym_by] = ACTIONS(3662), - [anon_sym_as] = ACTIONS(3662), - [anon_sym_is] = ACTIONS(3662), - [anon_sym_DASH_GT] = ACTIONS(3662), - [anon_sym_with] = ACTIONS(3662), - [aux_sym_preproc_if_token3] = ACTIONS(3662), - [aux_sym_preproc_else_token1] = ACTIONS(3662), - [aux_sym_preproc_elif_token1] = ACTIONS(3662), + [anon_sym_SEMI] = ACTIONS(4090), + [anon_sym_LBRACK] = ACTIONS(4090), + [anon_sym_COLON] = ACTIONS(4090), + [anon_sym_COMMA] = ACTIONS(4090), + [anon_sym_RBRACK] = ACTIONS(4090), + [anon_sym_LPAREN] = ACTIONS(4090), + [anon_sym_RPAREN] = ACTIONS(4090), + [anon_sym_LBRACE] = ACTIONS(4090), + [anon_sym_RBRACE] = ACTIONS(4090), + [anon_sym_LT] = ACTIONS(4088), + [anon_sym_GT] = ACTIONS(4088), + [anon_sym_in] = ACTIONS(4088), + [anon_sym_QMARK] = ACTIONS(4088), + [anon_sym_BANG] = ACTIONS(4088), + [anon_sym_PLUS_PLUS] = ACTIONS(4090), + [anon_sym_DASH_DASH] = ACTIONS(4090), + [anon_sym_PLUS] = ACTIONS(4088), + [anon_sym_DASH] = ACTIONS(4088), + [anon_sym_STAR] = ACTIONS(4090), + [anon_sym_SLASH] = ACTIONS(4088), + [anon_sym_PERCENT] = ACTIONS(4090), + [anon_sym_CARET] = ACTIONS(4090), + [anon_sym_PIPE] = ACTIONS(4088), + [anon_sym_AMP] = ACTIONS(4088), + [anon_sym_LT_LT] = ACTIONS(4090), + [anon_sym_GT_GT] = ACTIONS(4088), + [anon_sym_GT_GT_GT] = ACTIONS(4090), + [anon_sym_EQ_EQ] = ACTIONS(4090), + [anon_sym_BANG_EQ] = ACTIONS(4090), + [anon_sym_GT_EQ] = ACTIONS(4090), + [anon_sym_LT_EQ] = ACTIONS(4090), + [anon_sym_DOT] = ACTIONS(4088), + [anon_sym_EQ_GT] = ACTIONS(4090), + [anon_sym_switch] = ACTIONS(4090), + [anon_sym_when] = ACTIONS(4090), + [anon_sym_DOT_DOT] = ACTIONS(4090), + [anon_sym_and] = ACTIONS(4090), + [anon_sym_or] = ACTIONS(4090), + [anon_sym_AMP_AMP] = ACTIONS(4090), + [anon_sym_PIPE_PIPE] = ACTIONS(4090), + [anon_sym_QMARK_QMARK] = ACTIONS(4090), + [anon_sym_into] = ACTIONS(4090), + [anon_sym_on] = ACTIONS(4090), + [anon_sym_equals] = ACTIONS(4090), + [anon_sym_by] = ACTIONS(4090), + [anon_sym_as] = ACTIONS(4090), + [anon_sym_is] = ACTIONS(4090), + [anon_sym_DASH_GT] = ACTIONS(4090), + [anon_sym_with] = ACTIONS(4090), + [aux_sym_preproc_if_token3] = ACTIONS(4090), + [aux_sym_preproc_else_token1] = ACTIONS(4090), + [aux_sym_preproc_elif_token1] = ACTIONS(4090), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -482270,68 +481763,68 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3157), [sym_preproc_define] = STATE(3157), [sym_preproc_undef] = STATE(3157), - [anon_sym_EQ] = ACTIONS(4193), - [anon_sym_LBRACK] = ACTIONS(4191), - [anon_sym_COLON] = ACTIONS(4191), - [anon_sym_COMMA] = ACTIONS(4191), - [anon_sym_LPAREN] = ACTIONS(4191), - [anon_sym_LT] = ACTIONS(4193), - [anon_sym_GT] = ACTIONS(4193), - [anon_sym_QMARK] = ACTIONS(4193), - [anon_sym_BANG] = ACTIONS(4193), - [anon_sym_PLUS_PLUS] = ACTIONS(4191), - [anon_sym_DASH_DASH] = ACTIONS(4191), - [anon_sym_PLUS] = ACTIONS(4193), - [anon_sym_DASH] = ACTIONS(4193), - [anon_sym_STAR] = ACTIONS(4193), - [anon_sym_SLASH] = ACTIONS(4193), - [anon_sym_PERCENT] = ACTIONS(4193), - [anon_sym_CARET] = ACTIONS(4193), - [anon_sym_PIPE] = ACTIONS(4193), - [anon_sym_AMP] = ACTIONS(4193), - [anon_sym_LT_LT] = ACTIONS(4193), - [anon_sym_GT_GT] = ACTIONS(4193), - [anon_sym_GT_GT_GT] = ACTIONS(4193), - [anon_sym_EQ_EQ] = ACTIONS(4191), - [anon_sym_BANG_EQ] = ACTIONS(4191), - [anon_sym_GT_EQ] = ACTIONS(4191), - [anon_sym_LT_EQ] = ACTIONS(4191), - [anon_sym_DOT] = ACTIONS(4193), - [anon_sym_switch] = ACTIONS(4191), - [anon_sym_DOT_DOT] = ACTIONS(4191), - [anon_sym_and] = ACTIONS(4191), - [anon_sym_or] = ACTIONS(4191), - [anon_sym_PLUS_EQ] = ACTIONS(4191), - [anon_sym_DASH_EQ] = ACTIONS(4191), - [anon_sym_STAR_EQ] = ACTIONS(4191), - [anon_sym_SLASH_EQ] = ACTIONS(4191), - [anon_sym_PERCENT_EQ] = ACTIONS(4191), - [anon_sym_AMP_EQ] = ACTIONS(4191), - [anon_sym_CARET_EQ] = ACTIONS(4191), - [anon_sym_PIPE_EQ] = ACTIONS(4191), - [anon_sym_LT_LT_EQ] = ACTIONS(4191), - [anon_sym_GT_GT_EQ] = ACTIONS(4191), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(4191), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(4191), - [anon_sym_AMP_AMP] = ACTIONS(4191), - [anon_sym_PIPE_PIPE] = ACTIONS(4191), - [anon_sym_QMARK_QMARK] = ACTIONS(4193), - [anon_sym_into] = ACTIONS(4191), - [anon_sym_as] = ACTIONS(4191), - [anon_sym_is] = ACTIONS(4191), - [anon_sym_DASH_GT] = ACTIONS(4191), - [anon_sym_with] = ACTIONS(4191), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_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(4191), + [anon_sym_SEMI] = ACTIONS(3957), + [anon_sym_LBRACK] = ACTIONS(3957), + [anon_sym_COLON] = ACTIONS(3957), + [anon_sym_COMMA] = ACTIONS(3957), + [anon_sym_RBRACK] = ACTIONS(3957), + [anon_sym_LPAREN] = ACTIONS(3957), + [anon_sym_RPAREN] = ACTIONS(3957), + [anon_sym_LBRACE] = ACTIONS(3957), + [anon_sym_RBRACE] = ACTIONS(3957), + [anon_sym_LT] = ACTIONS(3955), + [anon_sym_GT] = ACTIONS(3955), + [anon_sym_in] = ACTIONS(3955), + [anon_sym_QMARK] = ACTIONS(3955), + [anon_sym_BANG] = ACTIONS(3955), + [anon_sym_PLUS_PLUS] = ACTIONS(3957), + [anon_sym_DASH_DASH] = ACTIONS(3957), + [anon_sym_PLUS] = ACTIONS(3955), + [anon_sym_DASH] = ACTIONS(3955), + [anon_sym_STAR] = ACTIONS(3957), + [anon_sym_SLASH] = ACTIONS(3955), + [anon_sym_PERCENT] = ACTIONS(3957), + [anon_sym_CARET] = ACTIONS(3957), + [anon_sym_PIPE] = ACTIONS(3955), + [anon_sym_AMP] = ACTIONS(3955), + [anon_sym_LT_LT] = ACTIONS(3957), + [anon_sym_GT_GT] = ACTIONS(3955), + [anon_sym_GT_GT_GT] = ACTIONS(3957), + [anon_sym_EQ_EQ] = ACTIONS(3957), + [anon_sym_BANG_EQ] = ACTIONS(3957), + [anon_sym_GT_EQ] = ACTIONS(3957), + [anon_sym_LT_EQ] = ACTIONS(3957), + [anon_sym_DOT] = ACTIONS(3955), + [anon_sym_EQ_GT] = ACTIONS(3957), + [anon_sym_switch] = ACTIONS(3957), + [anon_sym_when] = ACTIONS(3957), + [anon_sym_DOT_DOT] = ACTIONS(3957), + [anon_sym_and] = ACTIONS(3957), + [anon_sym_or] = ACTIONS(3957), + [anon_sym_AMP_AMP] = ACTIONS(3957), + [anon_sym_PIPE_PIPE] = ACTIONS(3957), + [anon_sym_QMARK_QMARK] = ACTIONS(3957), + [anon_sym_into] = ACTIONS(3957), + [anon_sym_on] = ACTIONS(3957), + [anon_sym_equals] = ACTIONS(3957), + [anon_sym_by] = ACTIONS(3957), + [anon_sym_as] = ACTIONS(3957), + [anon_sym_is] = ACTIONS(3957), + [anon_sym_DASH_GT] = ACTIONS(3957), + [anon_sym_with] = ACTIONS(3957), + [aux_sym_preproc_if_token3] = ACTIONS(3957), + [aux_sym_preproc_else_token1] = ACTIONS(3957), + [aux_sym_preproc_elif_token1] = ACTIONS(3957), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), }, [3158] = { [sym_preproc_region] = STATE(3158), @@ -482343,68 +481836,68 @@ 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_SEMI] = ACTIONS(3681), - [anon_sym_LBRACK] = ACTIONS(3681), - [anon_sym_COLON] = ACTIONS(3681), - [anon_sym_COMMA] = ACTIONS(3681), - [anon_sym_RBRACK] = ACTIONS(3681), - [anon_sym_LPAREN] = ACTIONS(3681), - [anon_sym_RPAREN] = ACTIONS(3681), - [anon_sym_LBRACE] = ACTIONS(3681), - [anon_sym_RBRACE] = ACTIONS(3681), - [anon_sym_LT] = ACTIONS(3679), - [anon_sym_GT] = ACTIONS(3679), - [anon_sym_in] = ACTIONS(3679), - [anon_sym_QMARK] = ACTIONS(3679), - [anon_sym_BANG] = ACTIONS(3679), - [anon_sym_PLUS_PLUS] = ACTIONS(3681), - [anon_sym_DASH_DASH] = ACTIONS(3681), - [anon_sym_PLUS] = ACTIONS(3679), - [anon_sym_DASH] = ACTIONS(3679), - [anon_sym_STAR] = ACTIONS(3681), - [anon_sym_SLASH] = ACTIONS(3679), - [anon_sym_PERCENT] = ACTIONS(3681), - [anon_sym_CARET] = ACTIONS(3681), - [anon_sym_PIPE] = ACTIONS(3679), - [anon_sym_AMP] = ACTIONS(3679), - [anon_sym_LT_LT] = ACTIONS(3681), - [anon_sym_GT_GT] = ACTIONS(3679), - [anon_sym_GT_GT_GT] = ACTIONS(3681), - [anon_sym_EQ_EQ] = ACTIONS(3681), - [anon_sym_BANG_EQ] = ACTIONS(3681), - [anon_sym_GT_EQ] = ACTIONS(3681), - [anon_sym_LT_EQ] = ACTIONS(3681), - [anon_sym_DOT] = ACTIONS(3679), - [anon_sym_EQ_GT] = ACTIONS(3681), - [anon_sym_switch] = ACTIONS(3681), - [anon_sym_when] = ACTIONS(3681), - [anon_sym_DOT_DOT] = ACTIONS(3681), - [anon_sym_and] = ACTIONS(3681), - [anon_sym_or] = ACTIONS(3681), - [anon_sym_AMP_AMP] = ACTIONS(3681), - [anon_sym_PIPE_PIPE] = ACTIONS(3681), - [anon_sym_QMARK_QMARK] = ACTIONS(3681), - [anon_sym_into] = ACTIONS(3681), - [anon_sym_on] = ACTIONS(3681), - [anon_sym_equals] = ACTIONS(3681), - [anon_sym_by] = ACTIONS(3681), - [anon_sym_as] = ACTIONS(3681), - [anon_sym_is] = ACTIONS(3681), - [anon_sym_DASH_GT] = ACTIONS(3681), - [anon_sym_with] = ACTIONS(3681), - [aux_sym_preproc_if_token3] = ACTIONS(3681), - [aux_sym_preproc_else_token1] = ACTIONS(3681), - [aux_sym_preproc_elif_token1] = ACTIONS(3681), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_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(3642), + [anon_sym_LBRACK] = ACTIONS(3644), + [anon_sym_COLON] = ACTIONS(3644), + [anon_sym_COMMA] = ACTIONS(3644), + [anon_sym_LPAREN] = ACTIONS(3644), + [anon_sym_LT] = ACTIONS(3642), + [anon_sym_GT] = ACTIONS(3642), + [anon_sym_QMARK] = ACTIONS(3642), + [anon_sym_BANG] = ACTIONS(3642), + [anon_sym_PLUS_PLUS] = ACTIONS(3644), + [anon_sym_DASH_DASH] = ACTIONS(3644), + [anon_sym_PLUS] = ACTIONS(3642), + [anon_sym_DASH] = ACTIONS(3642), + [anon_sym_STAR] = ACTIONS(3642), + [anon_sym_SLASH] = ACTIONS(3642), + [anon_sym_PERCENT] = ACTIONS(3642), + [anon_sym_CARET] = ACTIONS(3642), + [anon_sym_PIPE] = ACTIONS(3642), + [anon_sym_AMP] = ACTIONS(3642), + [anon_sym_LT_LT] = ACTIONS(3642), + [anon_sym_GT_GT] = ACTIONS(3642), + [anon_sym_GT_GT_GT] = ACTIONS(3642), + [anon_sym_EQ_EQ] = ACTIONS(3644), + [anon_sym_BANG_EQ] = ACTIONS(3644), + [anon_sym_GT_EQ] = ACTIONS(3644), + [anon_sym_LT_EQ] = ACTIONS(3644), + [anon_sym_DOT] = ACTIONS(3642), + [anon_sym_switch] = ACTIONS(3644), + [anon_sym_DOT_DOT] = ACTIONS(3644), + [anon_sym_and] = ACTIONS(3644), + [anon_sym_or] = ACTIONS(3644), + [anon_sym_PLUS_EQ] = ACTIONS(3644), + [anon_sym_DASH_EQ] = ACTIONS(3644), + [anon_sym_STAR_EQ] = ACTIONS(3644), + [anon_sym_SLASH_EQ] = ACTIONS(3644), + [anon_sym_PERCENT_EQ] = ACTIONS(3644), + [anon_sym_AMP_EQ] = ACTIONS(3644), + [anon_sym_CARET_EQ] = ACTIONS(3644), + [anon_sym_PIPE_EQ] = ACTIONS(3644), + [anon_sym_LT_LT_EQ] = ACTIONS(3644), + [anon_sym_GT_GT_EQ] = ACTIONS(3644), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3644), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3644), + [anon_sym_AMP_AMP] = ACTIONS(3644), + [anon_sym_PIPE_PIPE] = ACTIONS(3644), + [anon_sym_QMARK_QMARK] = ACTIONS(3642), + [anon_sym_into] = ACTIONS(3644), + [anon_sym_as] = ACTIONS(3644), + [anon_sym_is] = ACTIONS(3644), + [anon_sym_DASH_GT] = ACTIONS(3644), + [anon_sym_with] = ACTIONS(3644), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_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(3644), }, [3159] = { [sym_preproc_region] = STATE(3159), @@ -482416,57 +481909,58 @@ 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), - [anon_sym_EQ] = ACTIONS(3671), - [anon_sym_LBRACK] = ACTIONS(3673), - [anon_sym_COLON] = ACTIONS(3673), - [anon_sym_COMMA] = ACTIONS(3673), - [anon_sym_LPAREN] = ACTIONS(3673), - [anon_sym_LT] = ACTIONS(3671), - [anon_sym_GT] = ACTIONS(3671), - [anon_sym_QMARK] = ACTIONS(3671), - [anon_sym_BANG] = ACTIONS(3671), - [anon_sym_PLUS_PLUS] = ACTIONS(3673), - [anon_sym_DASH_DASH] = ACTIONS(3673), - [anon_sym_PLUS] = ACTIONS(3671), - [anon_sym_DASH] = ACTIONS(3671), - [anon_sym_STAR] = ACTIONS(3671), - [anon_sym_SLASH] = ACTIONS(3671), - [anon_sym_PERCENT] = ACTIONS(3671), - [anon_sym_CARET] = ACTIONS(3671), - [anon_sym_PIPE] = ACTIONS(3671), - [anon_sym_AMP] = ACTIONS(3671), - [anon_sym_LT_LT] = ACTIONS(3671), - [anon_sym_GT_GT] = ACTIONS(3671), - [anon_sym_GT_GT_GT] = ACTIONS(3671), - [anon_sym_EQ_EQ] = ACTIONS(3673), - [anon_sym_BANG_EQ] = ACTIONS(3673), - [anon_sym_GT_EQ] = ACTIONS(3673), - [anon_sym_LT_EQ] = ACTIONS(3673), - [anon_sym_DOT] = ACTIONS(3671), - [anon_sym_switch] = ACTIONS(3673), - [anon_sym_DOT_DOT] = ACTIONS(3673), - [anon_sym_and] = ACTIONS(3673), - [anon_sym_or] = ACTIONS(3673), - [anon_sym_PLUS_EQ] = ACTIONS(3673), - [anon_sym_DASH_EQ] = ACTIONS(3673), - [anon_sym_STAR_EQ] = ACTIONS(3673), - [anon_sym_SLASH_EQ] = ACTIONS(3673), - [anon_sym_PERCENT_EQ] = ACTIONS(3673), - [anon_sym_AMP_EQ] = ACTIONS(3673), - [anon_sym_CARET_EQ] = ACTIONS(3673), - [anon_sym_PIPE_EQ] = ACTIONS(3673), - [anon_sym_LT_LT_EQ] = ACTIONS(3673), - [anon_sym_GT_GT_EQ] = ACTIONS(3673), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3673), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3673), - [anon_sym_AMP_AMP] = ACTIONS(3673), - [anon_sym_PIPE_PIPE] = ACTIONS(3673), - [anon_sym_QMARK_QMARK] = ACTIONS(3671), - [anon_sym_into] = ACTIONS(3673), - [anon_sym_as] = ACTIONS(3673), - [anon_sym_is] = ACTIONS(3673), - [anon_sym_DASH_GT] = ACTIONS(3673), - [anon_sym_with] = ACTIONS(3673), + [anon_sym_SEMI] = ACTIONS(3911), + [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(3911), + [anon_sym_RBRACE] = ACTIONS(3911), + [anon_sym_LT] = ACTIONS(3909), + [anon_sym_GT] = ACTIONS(3909), + [anon_sym_in] = ACTIONS(3909), + [anon_sym_QMARK] = ACTIONS(3909), + [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_EQ_GT] = ACTIONS(3911), + [anon_sym_switch] = ACTIONS(3911), + [anon_sym_when] = ACTIONS(3911), + [anon_sym_DOT_DOT] = ACTIONS(3911), + [anon_sym_and] = ACTIONS(3911), + [anon_sym_or] = ACTIONS(3911), + [anon_sym_AMP_AMP] = ACTIONS(3911), + [anon_sym_PIPE_PIPE] = ACTIONS(3911), + [anon_sym_QMARK_QMARK] = ACTIONS(3911), + [anon_sym_into] = ACTIONS(3911), + [anon_sym_on] = ACTIONS(3911), + [anon_sym_equals] = ACTIONS(3911), + [anon_sym_by] = ACTIONS(3911), + [anon_sym_as] = ACTIONS(3911), + [anon_sym_is] = ACTIONS(3911), + [anon_sym_DASH_GT] = ACTIONS(3911), + [anon_sym_with] = ACTIONS(3911), + [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), @@ -482477,7 +481971,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(3673), }, [3160] = { [sym_preproc_region] = STATE(3160), @@ -482489,58 +481982,58 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3160), [sym_preproc_define] = STATE(3160), [sym_preproc_undef] = STATE(3160), - [anon_sym_SEMI] = ACTIONS(3996), - [anon_sym_LBRACK] = ACTIONS(3996), - [anon_sym_COLON] = ACTIONS(3996), - [anon_sym_COMMA] = ACTIONS(3996), - [anon_sym_RBRACK] = ACTIONS(3996), - [anon_sym_LPAREN] = ACTIONS(3996), - [anon_sym_RPAREN] = ACTIONS(3996), - [anon_sym_LBRACE] = ACTIONS(3996), - [anon_sym_RBRACE] = ACTIONS(3996), - [anon_sym_LT] = ACTIONS(3994), - [anon_sym_GT] = ACTIONS(3994), - [anon_sym_in] = ACTIONS(3994), - [anon_sym_QMARK] = ACTIONS(3994), - [anon_sym_BANG] = ACTIONS(3994), - [anon_sym_PLUS_PLUS] = ACTIONS(3996), - [anon_sym_DASH_DASH] = ACTIONS(3996), - [anon_sym_PLUS] = ACTIONS(3994), - [anon_sym_DASH] = ACTIONS(3994), - [anon_sym_STAR] = ACTIONS(3996), - [anon_sym_SLASH] = ACTIONS(3994), - [anon_sym_PERCENT] = ACTIONS(3996), - [anon_sym_CARET] = ACTIONS(3996), - [anon_sym_PIPE] = ACTIONS(3994), - [anon_sym_AMP] = ACTIONS(3994), - [anon_sym_LT_LT] = ACTIONS(3996), - [anon_sym_GT_GT] = ACTIONS(3994), - [anon_sym_GT_GT_GT] = ACTIONS(3996), - [anon_sym_EQ_EQ] = ACTIONS(3996), - [anon_sym_BANG_EQ] = ACTIONS(3996), - [anon_sym_GT_EQ] = ACTIONS(3996), - [anon_sym_LT_EQ] = ACTIONS(3996), - [anon_sym_DOT] = ACTIONS(3994), - [anon_sym_EQ_GT] = ACTIONS(3996), - [anon_sym_switch] = ACTIONS(3996), - [anon_sym_when] = ACTIONS(3996), - [anon_sym_DOT_DOT] = ACTIONS(3996), - [anon_sym_and] = ACTIONS(3996), - [anon_sym_or] = ACTIONS(3996), - [anon_sym_AMP_AMP] = ACTIONS(3996), - [anon_sym_PIPE_PIPE] = ACTIONS(3996), - [anon_sym_QMARK_QMARK] = ACTIONS(3996), - [anon_sym_into] = ACTIONS(3996), - [anon_sym_on] = ACTIONS(3996), - [anon_sym_equals] = ACTIONS(3996), - [anon_sym_by] = ACTIONS(3996), - [anon_sym_as] = ACTIONS(3996), - [anon_sym_is] = ACTIONS(3996), - [anon_sym_DASH_GT] = ACTIONS(3996), - [anon_sym_with] = ACTIONS(3996), - [aux_sym_preproc_if_token3] = ACTIONS(3996), - [aux_sym_preproc_else_token1] = ACTIONS(3996), - [aux_sym_preproc_elif_token1] = ACTIONS(3996), + [anon_sym_SEMI] = ACTIONS(4002), + [anon_sym_LBRACK] = ACTIONS(4002), + [anon_sym_COLON] = ACTIONS(4002), + [anon_sym_COMMA] = ACTIONS(4002), + [anon_sym_RBRACK] = ACTIONS(4002), + [anon_sym_LPAREN] = ACTIONS(4002), + [anon_sym_RPAREN] = ACTIONS(4002), + [anon_sym_LBRACE] = ACTIONS(4002), + [anon_sym_RBRACE] = ACTIONS(4002), + [anon_sym_LT] = ACTIONS(4000), + [anon_sym_GT] = ACTIONS(4000), + [anon_sym_in] = ACTIONS(4000), + [anon_sym_QMARK] = ACTIONS(4000), + [anon_sym_BANG] = ACTIONS(4000), + [anon_sym_PLUS_PLUS] = ACTIONS(4002), + [anon_sym_DASH_DASH] = ACTIONS(4002), + [anon_sym_PLUS] = ACTIONS(4000), + [anon_sym_DASH] = ACTIONS(4000), + [anon_sym_STAR] = ACTIONS(4002), + [anon_sym_SLASH] = ACTIONS(4000), + [anon_sym_PERCENT] = ACTIONS(4002), + [anon_sym_CARET] = ACTIONS(4002), + [anon_sym_PIPE] = ACTIONS(4000), + [anon_sym_AMP] = ACTIONS(4000), + [anon_sym_LT_LT] = ACTIONS(4002), + [anon_sym_GT_GT] = ACTIONS(4000), + [anon_sym_GT_GT_GT] = ACTIONS(4002), + [anon_sym_EQ_EQ] = ACTIONS(4002), + [anon_sym_BANG_EQ] = ACTIONS(4002), + [anon_sym_GT_EQ] = ACTIONS(4002), + [anon_sym_LT_EQ] = ACTIONS(4002), + [anon_sym_DOT] = ACTIONS(4000), + [anon_sym_EQ_GT] = ACTIONS(4002), + [anon_sym_switch] = ACTIONS(4002), + [anon_sym_when] = ACTIONS(4002), + [anon_sym_DOT_DOT] = ACTIONS(4002), + [anon_sym_and] = ACTIONS(4002), + [anon_sym_or] = ACTIONS(4002), + [anon_sym_AMP_AMP] = ACTIONS(4002), + [anon_sym_PIPE_PIPE] = ACTIONS(4002), + [anon_sym_QMARK_QMARK] = ACTIONS(4002), + [anon_sym_into] = ACTIONS(4002), + [anon_sym_on] = ACTIONS(4002), + [anon_sym_equals] = ACTIONS(4002), + [anon_sym_by] = ACTIONS(4002), + [anon_sym_as] = ACTIONS(4002), + [anon_sym_is] = ACTIONS(4002), + [anon_sym_DASH_GT] = ACTIONS(4002), + [anon_sym_with] = ACTIONS(4002), + [aux_sym_preproc_if_token3] = ACTIONS(4002), + [aux_sym_preproc_else_token1] = ACTIONS(4002), + [aux_sym_preproc_elif_token1] = ACTIONS(4002), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -482562,68 +482055,68 @@ 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), - [anon_sym_EQ] = ACTIONS(3679), - [anon_sym_LBRACK] = ACTIONS(3681), - [anon_sym_COLON] = ACTIONS(3681), - [anon_sym_COMMA] = ACTIONS(3681), - [anon_sym_LPAREN] = ACTIONS(3681), - [anon_sym_LT] = ACTIONS(3679), - [anon_sym_GT] = ACTIONS(3679), - [anon_sym_QMARK] = ACTIONS(3679), - [anon_sym_BANG] = ACTIONS(3679), - [anon_sym_PLUS_PLUS] = ACTIONS(3681), - [anon_sym_DASH_DASH] = ACTIONS(3681), - [anon_sym_PLUS] = ACTIONS(3679), - [anon_sym_DASH] = ACTIONS(3679), - [anon_sym_STAR] = ACTIONS(3679), - [anon_sym_SLASH] = ACTIONS(3679), - [anon_sym_PERCENT] = ACTIONS(3679), - [anon_sym_CARET] = ACTIONS(3679), - [anon_sym_PIPE] = ACTIONS(3679), - [anon_sym_AMP] = ACTIONS(3679), - [anon_sym_LT_LT] = ACTIONS(3679), - [anon_sym_GT_GT] = ACTIONS(3679), - [anon_sym_GT_GT_GT] = ACTIONS(3679), - [anon_sym_EQ_EQ] = ACTIONS(3681), - [anon_sym_BANG_EQ] = ACTIONS(3681), - [anon_sym_GT_EQ] = ACTIONS(3681), - [anon_sym_LT_EQ] = ACTIONS(3681), - [anon_sym_DOT] = ACTIONS(3679), - [anon_sym_switch] = ACTIONS(3681), - [anon_sym_DOT_DOT] = ACTIONS(3681), - [anon_sym_and] = ACTIONS(3681), - [anon_sym_or] = ACTIONS(3681), - [anon_sym_PLUS_EQ] = ACTIONS(3681), - [anon_sym_DASH_EQ] = ACTIONS(3681), - [anon_sym_STAR_EQ] = ACTIONS(3681), - [anon_sym_SLASH_EQ] = ACTIONS(3681), - [anon_sym_PERCENT_EQ] = ACTIONS(3681), - [anon_sym_AMP_EQ] = ACTIONS(3681), - [anon_sym_CARET_EQ] = ACTIONS(3681), - [anon_sym_PIPE_EQ] = ACTIONS(3681), - [anon_sym_LT_LT_EQ] = ACTIONS(3681), - [anon_sym_GT_GT_EQ] = ACTIONS(3681), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3681), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3681), - [anon_sym_AMP_AMP] = ACTIONS(3681), - [anon_sym_PIPE_PIPE] = ACTIONS(3681), - [anon_sym_QMARK_QMARK] = ACTIONS(3679), - [anon_sym_into] = ACTIONS(3681), - [anon_sym_as] = ACTIONS(3681), - [anon_sym_is] = ACTIONS(3681), - [anon_sym_DASH_GT] = ACTIONS(3681), - [anon_sym_with] = ACTIONS(3681), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_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(3681), + [anon_sym_SEMI] = ACTIONS(4076), + [anon_sym_LBRACK] = ACTIONS(4076), + [anon_sym_COLON] = ACTIONS(4076), + [anon_sym_COMMA] = ACTIONS(4076), + [anon_sym_RBRACK] = ACTIONS(4076), + [anon_sym_LPAREN] = ACTIONS(4076), + [anon_sym_RPAREN] = ACTIONS(4076), + [anon_sym_LBRACE] = ACTIONS(4076), + [anon_sym_RBRACE] = ACTIONS(4076), + [anon_sym_LT] = ACTIONS(4074), + [anon_sym_GT] = ACTIONS(4074), + [anon_sym_in] = ACTIONS(4074), + [anon_sym_QMARK] = ACTIONS(4074), + [anon_sym_BANG] = ACTIONS(4074), + [anon_sym_PLUS_PLUS] = ACTIONS(4076), + [anon_sym_DASH_DASH] = ACTIONS(4076), + [anon_sym_PLUS] = ACTIONS(4074), + [anon_sym_DASH] = ACTIONS(4074), + [anon_sym_STAR] = ACTIONS(4076), + [anon_sym_SLASH] = ACTIONS(4074), + [anon_sym_PERCENT] = ACTIONS(4076), + [anon_sym_CARET] = ACTIONS(4076), + [anon_sym_PIPE] = ACTIONS(4074), + [anon_sym_AMP] = ACTIONS(4074), + [anon_sym_LT_LT] = ACTIONS(4076), + [anon_sym_GT_GT] = ACTIONS(4074), + [anon_sym_GT_GT_GT] = ACTIONS(4076), + [anon_sym_EQ_EQ] = ACTIONS(4076), + [anon_sym_BANG_EQ] = ACTIONS(4076), + [anon_sym_GT_EQ] = ACTIONS(4076), + [anon_sym_LT_EQ] = ACTIONS(4076), + [anon_sym_DOT] = ACTIONS(4074), + [anon_sym_EQ_GT] = ACTIONS(4076), + [anon_sym_switch] = ACTIONS(4076), + [anon_sym_when] = ACTIONS(4076), + [anon_sym_DOT_DOT] = ACTIONS(4076), + [anon_sym_and] = ACTIONS(4076), + [anon_sym_or] = ACTIONS(4076), + [anon_sym_AMP_AMP] = ACTIONS(4076), + [anon_sym_PIPE_PIPE] = ACTIONS(4076), + [anon_sym_QMARK_QMARK] = ACTIONS(4076), + [anon_sym_into] = ACTIONS(4076), + [anon_sym_on] = ACTIONS(4076), + [anon_sym_equals] = ACTIONS(4076), + [anon_sym_by] = ACTIONS(4076), + [anon_sym_as] = ACTIONS(4076), + [anon_sym_is] = ACTIONS(4076), + [anon_sym_DASH_GT] = ACTIONS(4076), + [anon_sym_with] = ACTIONS(4076), + [aux_sym_preproc_if_token3] = ACTIONS(4076), + [aux_sym_preproc_else_token1] = ACTIONS(4076), + [aux_sym_preproc_elif_token1] = ACTIONS(4076), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), }, [3162] = { [sym_preproc_region] = STATE(3162), @@ -482635,72 +482128,70 @@ 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_SEMI] = ACTIONS(4860), - [anon_sym_EQ] = ACTIONS(5298), - [anon_sym_LBRACK] = ACTIONS(4860), - [anon_sym_LPAREN] = ACTIONS(4860), - [anon_sym_LT] = ACTIONS(4862), - [anon_sym_GT] = ACTIONS(4862), - [anon_sym_QMARK] = ACTIONS(4862), - [anon_sym_BANG] = ACTIONS(4862), - [anon_sym_PLUS_PLUS] = ACTIONS(4860), - [anon_sym_DASH_DASH] = ACTIONS(4860), - [anon_sym_PLUS] = ACTIONS(4862), - [anon_sym_DASH] = ACTIONS(4862), - [anon_sym_STAR] = ACTIONS(4862), - [anon_sym_SLASH] = ACTIONS(4862), - [anon_sym_PERCENT] = ACTIONS(4862), - [anon_sym_CARET] = ACTIONS(4862), - [anon_sym_PIPE] = ACTIONS(4862), - [anon_sym_AMP] = ACTIONS(4862), - [anon_sym_LT_LT] = ACTIONS(4862), - [anon_sym_GT_GT] = ACTIONS(4862), - [anon_sym_GT_GT_GT] = ACTIONS(4862), - [anon_sym_EQ_EQ] = ACTIONS(4860), - [anon_sym_BANG_EQ] = ACTIONS(4860), - [anon_sym_GT_EQ] = ACTIONS(4860), - [anon_sym_LT_EQ] = ACTIONS(4860), - [anon_sym_DOT] = ACTIONS(4862), - [anon_sym_switch] = ACTIONS(4860), - [anon_sym_DOT_DOT] = ACTIONS(4860), - [anon_sym_and] = ACTIONS(4860), - [anon_sym_or] = ACTIONS(4860), - [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(4860), - [anon_sym_PIPE_PIPE] = ACTIONS(4860), - [anon_sym_QMARK_QMARK] = ACTIONS(4862), - [anon_sym_as] = ACTIONS(4860), - [anon_sym_is] = ACTIONS(4860), - [anon_sym_DASH_GT] = ACTIONS(4860), - [anon_sym_with] = ACTIONS(4860), - [aux_sym_preproc_if_token3] = ACTIONS(4860), - [aux_sym_preproc_else_token1] = ACTIONS(4860), - [aux_sym_preproc_elif_token1] = ACTIONS(4860), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_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(3655), + [anon_sym_LBRACK] = ACTIONS(3657), + [anon_sym_COLON] = ACTIONS(3657), + [anon_sym_COMMA] = ACTIONS(3657), + [anon_sym_LPAREN] = ACTIONS(3657), + [anon_sym_LT] = ACTIONS(3655), + [anon_sym_GT] = ACTIONS(3655), + [anon_sym_QMARK] = ACTIONS(3655), + [anon_sym_BANG] = ACTIONS(3655), + [anon_sym_PLUS_PLUS] = ACTIONS(3657), + [anon_sym_DASH_DASH] = ACTIONS(3657), + [anon_sym_PLUS] = ACTIONS(3655), + [anon_sym_DASH] = ACTIONS(3655), + [anon_sym_STAR] = ACTIONS(3655), + [anon_sym_SLASH] = ACTIONS(3655), + [anon_sym_PERCENT] = ACTIONS(3655), + [anon_sym_CARET] = ACTIONS(3655), + [anon_sym_PIPE] = ACTIONS(3655), + [anon_sym_AMP] = ACTIONS(3655), + [anon_sym_LT_LT] = ACTIONS(3655), + [anon_sym_GT_GT] = ACTIONS(3655), + [anon_sym_GT_GT_GT] = ACTIONS(3655), + [anon_sym_EQ_EQ] = ACTIONS(3657), + [anon_sym_BANG_EQ] = ACTIONS(3657), + [anon_sym_GT_EQ] = ACTIONS(3657), + [anon_sym_LT_EQ] = ACTIONS(3657), + [anon_sym_DOT] = ACTIONS(3655), + [anon_sym_switch] = ACTIONS(3657), + [anon_sym_DOT_DOT] = ACTIONS(3657), + [anon_sym_and] = ACTIONS(3657), + [anon_sym_or] = ACTIONS(3657), + [anon_sym_PLUS_EQ] = ACTIONS(3657), + [anon_sym_DASH_EQ] = ACTIONS(3657), + [anon_sym_STAR_EQ] = ACTIONS(3657), + [anon_sym_SLASH_EQ] = ACTIONS(3657), + [anon_sym_PERCENT_EQ] = ACTIONS(3657), + [anon_sym_AMP_EQ] = ACTIONS(3657), + [anon_sym_CARET_EQ] = ACTIONS(3657), + [anon_sym_PIPE_EQ] = ACTIONS(3657), + [anon_sym_LT_LT_EQ] = ACTIONS(3657), + [anon_sym_GT_GT_EQ] = ACTIONS(3657), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3657), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3657), + [anon_sym_AMP_AMP] = ACTIONS(3657), + [anon_sym_PIPE_PIPE] = ACTIONS(3657), + [anon_sym_QMARK_QMARK] = ACTIONS(3655), + [anon_sym_into] = ACTIONS(3657), + [anon_sym_as] = ACTIONS(3657), + [anon_sym_is] = ACTIONS(3657), + [anon_sym_DASH_GT] = ACTIONS(3657), + [anon_sym_with] = ACTIONS(3657), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_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(3657), }, [3163] = { - [sym_argument_list] = STATE(3487), - [sym_bracketed_argument_list] = STATE(2808), [sym_preproc_region] = STATE(3163), [sym_preproc_endregion] = STATE(3163), [sym_preproc_line] = STATE(3163), @@ -482710,56 +482201,58 @@ 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(4843), - [anon_sym_LBRACK] = ACTIONS(5302), - [anon_sym_COLON] = ACTIONS(4843), - [anon_sym_COMMA] = ACTIONS(4843), - [anon_sym_RBRACK] = ACTIONS(4843), - [anon_sym_LPAREN] = ACTIONS(5264), - [anon_sym_RPAREN] = ACTIONS(4843), - [anon_sym_RBRACE] = ACTIONS(4843), - [anon_sym_LT] = ACTIONS(4845), - [anon_sym_GT] = ACTIONS(4845), - [anon_sym_in] = ACTIONS(4843), - [anon_sym_QMARK] = ACTIONS(4845), - [anon_sym_BANG] = ACTIONS(5304), - [anon_sym_PLUS_PLUS] = ACTIONS(5306), - [anon_sym_DASH_DASH] = ACTIONS(5306), - [anon_sym_PLUS] = ACTIONS(4845), - [anon_sym_DASH] = ACTIONS(4845), - [anon_sym_STAR] = ACTIONS(4843), - [anon_sym_SLASH] = ACTIONS(4845), - [anon_sym_PERCENT] = ACTIONS(4843), - [anon_sym_CARET] = ACTIONS(4843), - [anon_sym_PIPE] = ACTIONS(4845), - [anon_sym_AMP] = ACTIONS(4845), - [anon_sym_LT_LT] = ACTIONS(4843), - [anon_sym_GT_GT] = ACTIONS(4845), - [anon_sym_GT_GT_GT] = ACTIONS(4843), - [anon_sym_EQ_EQ] = ACTIONS(4843), - [anon_sym_BANG_EQ] = ACTIONS(4843), - [anon_sym_GT_EQ] = ACTIONS(4843), - [anon_sym_LT_EQ] = ACTIONS(4843), - [anon_sym_DOT] = ACTIONS(4100), - [anon_sym_EQ_GT] = ACTIONS(4843), - [anon_sym_switch] = ACTIONS(4843), - [anon_sym_when] = ACTIONS(4843), - [anon_sym_DOT_DOT] = ACTIONS(4843), - [anon_sym_and] = ACTIONS(4843), - [anon_sym_or] = ACTIONS(4843), - [anon_sym_AMP_AMP] = ACTIONS(4843), - [anon_sym_PIPE_PIPE] = ACTIONS(4843), - [anon_sym_QMARK_QMARK] = ACTIONS(4843), - [anon_sym_on] = ACTIONS(4843), - [anon_sym_equals] = ACTIONS(4843), - [anon_sym_by] = ACTIONS(4843), - [anon_sym_as] = ACTIONS(4843), - [anon_sym_is] = ACTIONS(4843), - [anon_sym_DASH_GT] = ACTIONS(4102), - [anon_sym_with] = ACTIONS(4843), - [aux_sym_preproc_if_token3] = ACTIONS(4843), - [aux_sym_preproc_else_token1] = ACTIONS(4843), - [aux_sym_preproc_elif_token1] = ACTIONS(4843), + [anon_sym_SEMI] = ACTIONS(4060), + [anon_sym_LBRACK] = ACTIONS(4060), + [anon_sym_COLON] = ACTIONS(4060), + [anon_sym_COMMA] = ACTIONS(4060), + [anon_sym_RBRACK] = ACTIONS(4060), + [anon_sym_LPAREN] = ACTIONS(4060), + [anon_sym_RPAREN] = ACTIONS(4060), + [anon_sym_LBRACE] = ACTIONS(4060), + [anon_sym_RBRACE] = ACTIONS(4060), + [anon_sym_LT] = ACTIONS(4058), + [anon_sym_GT] = ACTIONS(4058), + [anon_sym_in] = ACTIONS(4058), + [anon_sym_QMARK] = ACTIONS(4058), + [anon_sym_BANG] = ACTIONS(4058), + [anon_sym_PLUS_PLUS] = ACTIONS(4060), + [anon_sym_DASH_DASH] = ACTIONS(4060), + [anon_sym_PLUS] = ACTIONS(4058), + [anon_sym_DASH] = ACTIONS(4058), + [anon_sym_STAR] = ACTIONS(4060), + [anon_sym_SLASH] = ACTIONS(4058), + [anon_sym_PERCENT] = ACTIONS(4060), + [anon_sym_CARET] = ACTIONS(4060), + [anon_sym_PIPE] = ACTIONS(4058), + [anon_sym_AMP] = ACTIONS(4058), + [anon_sym_LT_LT] = ACTIONS(4060), + [anon_sym_GT_GT] = ACTIONS(4058), + [anon_sym_GT_GT_GT] = ACTIONS(4060), + [anon_sym_EQ_EQ] = ACTIONS(4060), + [anon_sym_BANG_EQ] = ACTIONS(4060), + [anon_sym_GT_EQ] = ACTIONS(4060), + [anon_sym_LT_EQ] = ACTIONS(4060), + [anon_sym_DOT] = ACTIONS(4058), + [anon_sym_EQ_GT] = ACTIONS(4060), + [anon_sym_switch] = ACTIONS(4060), + [anon_sym_when] = ACTIONS(4060), + [anon_sym_DOT_DOT] = ACTIONS(4060), + [anon_sym_and] = ACTIONS(4060), + [anon_sym_or] = ACTIONS(4060), + [anon_sym_AMP_AMP] = ACTIONS(4060), + [anon_sym_PIPE_PIPE] = ACTIONS(4060), + [anon_sym_QMARK_QMARK] = ACTIONS(4060), + [anon_sym_into] = ACTIONS(4060), + [anon_sym_on] = ACTIONS(4060), + [anon_sym_equals] = ACTIONS(4060), + [anon_sym_by] = ACTIONS(4060), + [anon_sym_as] = ACTIONS(4060), + [anon_sym_is] = ACTIONS(4060), + [anon_sym_DASH_GT] = ACTIONS(4060), + [anon_sym_with] = ACTIONS(4060), + [aux_sym_preproc_if_token3] = ACTIONS(4060), + [aux_sym_preproc_else_token1] = ACTIONS(4060), + [aux_sym_preproc_elif_token1] = ACTIONS(4060), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -482781,58 +482274,58 @@ 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), - [anon_sym_SEMI] = ACTIONS(3951), - [anon_sym_LBRACK] = ACTIONS(3951), - [anon_sym_COLON] = ACTIONS(3951), - [anon_sym_COMMA] = ACTIONS(3951), - [anon_sym_RBRACK] = ACTIONS(3951), - [anon_sym_LPAREN] = ACTIONS(3951), - [anon_sym_RPAREN] = ACTIONS(3951), - [anon_sym_LBRACE] = ACTIONS(3951), - [anon_sym_RBRACE] = ACTIONS(3951), - [anon_sym_LT] = ACTIONS(3949), - [anon_sym_GT] = ACTIONS(3949), - [anon_sym_in] = ACTIONS(3949), - [anon_sym_QMARK] = ACTIONS(3949), - [anon_sym_BANG] = ACTIONS(3949), - [anon_sym_PLUS_PLUS] = ACTIONS(3951), - [anon_sym_DASH_DASH] = ACTIONS(3951), - [anon_sym_PLUS] = ACTIONS(3949), - [anon_sym_DASH] = ACTIONS(3949), - [anon_sym_STAR] = ACTIONS(3951), - [anon_sym_SLASH] = ACTIONS(3949), - [anon_sym_PERCENT] = ACTIONS(3951), - [anon_sym_CARET] = ACTIONS(3951), - [anon_sym_PIPE] = ACTIONS(3949), - [anon_sym_AMP] = ACTIONS(3949), - [anon_sym_LT_LT] = ACTIONS(3951), - [anon_sym_GT_GT] = ACTIONS(3949), - [anon_sym_GT_GT_GT] = ACTIONS(3951), - [anon_sym_EQ_EQ] = ACTIONS(3951), - [anon_sym_BANG_EQ] = ACTIONS(3951), - [anon_sym_GT_EQ] = ACTIONS(3951), - [anon_sym_LT_EQ] = ACTIONS(3951), - [anon_sym_DOT] = ACTIONS(3949), - [anon_sym_EQ_GT] = ACTIONS(3951), - [anon_sym_switch] = ACTIONS(3951), - [anon_sym_when] = ACTIONS(3951), - [anon_sym_DOT_DOT] = ACTIONS(3951), - [anon_sym_and] = ACTIONS(3951), - [anon_sym_or] = ACTIONS(3951), - [anon_sym_AMP_AMP] = ACTIONS(3951), - [anon_sym_PIPE_PIPE] = ACTIONS(3951), - [anon_sym_QMARK_QMARK] = ACTIONS(3951), - [anon_sym_into] = ACTIONS(3951), - [anon_sym_on] = ACTIONS(3951), - [anon_sym_equals] = ACTIONS(3951), - [anon_sym_by] = ACTIONS(3951), - [anon_sym_as] = ACTIONS(3951), - [anon_sym_is] = ACTIONS(3951), - [anon_sym_DASH_GT] = ACTIONS(3951), - [anon_sym_with] = ACTIONS(3951), - [aux_sym_preproc_if_token3] = ACTIONS(3951), - [aux_sym_preproc_else_token1] = ACTIONS(3951), - [aux_sym_preproc_elif_token1] = ACTIONS(3951), + [anon_sym_SEMI] = ACTIONS(3678), + [anon_sym_LBRACK] = ACTIONS(3678), + [anon_sym_COLON] = ACTIONS(3678), + [anon_sym_COMMA] = ACTIONS(3678), + [anon_sym_RBRACK] = ACTIONS(3678), + [anon_sym_LPAREN] = ACTIONS(3678), + [anon_sym_RPAREN] = ACTIONS(3678), + [anon_sym_LBRACE] = ACTIONS(3678), + [anon_sym_RBRACE] = ACTIONS(3678), + [anon_sym_LT] = ACTIONS(3669), + [anon_sym_GT] = ACTIONS(3669), + [anon_sym_in] = ACTIONS(3669), + [anon_sym_QMARK] = ACTIONS(3669), + [anon_sym_BANG] = ACTIONS(3669), + [anon_sym_PLUS_PLUS] = ACTIONS(3678), + [anon_sym_DASH_DASH] = ACTIONS(3678), + [anon_sym_PLUS] = ACTIONS(3669), + [anon_sym_DASH] = ACTIONS(3669), + [anon_sym_STAR] = ACTIONS(3678), + [anon_sym_SLASH] = ACTIONS(3669), + [anon_sym_PERCENT] = ACTIONS(3678), + [anon_sym_CARET] = ACTIONS(3678), + [anon_sym_PIPE] = ACTIONS(3669), + [anon_sym_AMP] = ACTIONS(3669), + [anon_sym_LT_LT] = ACTIONS(3678), + [anon_sym_GT_GT] = ACTIONS(3669), + [anon_sym_GT_GT_GT] = ACTIONS(3678), + [anon_sym_EQ_EQ] = ACTIONS(3678), + [anon_sym_BANG_EQ] = ACTIONS(3678), + [anon_sym_GT_EQ] = ACTIONS(3678), + [anon_sym_LT_EQ] = ACTIONS(3678), + [anon_sym_DOT] = ACTIONS(3669), + [anon_sym_EQ_GT] = ACTIONS(3678), + [anon_sym_switch] = ACTIONS(3678), + [anon_sym_when] = ACTIONS(3678), + [anon_sym_DOT_DOT] = ACTIONS(3678), + [anon_sym_and] = ACTIONS(3678), + [anon_sym_or] = ACTIONS(3678), + [anon_sym_AMP_AMP] = ACTIONS(3678), + [anon_sym_PIPE_PIPE] = ACTIONS(3678), + [anon_sym_QMARK_QMARK] = ACTIONS(3678), + [anon_sym_into] = ACTIONS(3678), + [anon_sym_on] = ACTIONS(3678), + [anon_sym_equals] = ACTIONS(3678), + [anon_sym_by] = ACTIONS(3678), + [anon_sym_as] = ACTIONS(3678), + [anon_sym_is] = ACTIONS(3678), + [anon_sym_DASH_GT] = ACTIONS(3678), + [anon_sym_with] = ACTIONS(3678), + [aux_sym_preproc_if_token3] = ACTIONS(3678), + [aux_sym_preproc_else_token1] = ACTIONS(3678), + [aux_sym_preproc_elif_token1] = ACTIONS(3678), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -482854,68 +482347,68 @@ 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_EQ] = ACTIONS(5308), - [anon_sym_LBRACK] = ACTIONS(4860), - [anon_sym_COLON] = ACTIONS(4860), - [anon_sym_COMMA] = ACTIONS(4860), - [anon_sym_LPAREN] = ACTIONS(4860), - [anon_sym_LT] = ACTIONS(4862), - [anon_sym_GT] = ACTIONS(4862), - [anon_sym_QMARK] = ACTIONS(4862), - [anon_sym_BANG] = ACTIONS(4862), - [anon_sym_PLUS_PLUS] = ACTIONS(4860), - [anon_sym_DASH_DASH] = ACTIONS(4860), - [anon_sym_PLUS] = ACTIONS(4862), - [anon_sym_DASH] = ACTIONS(4862), - [anon_sym_STAR] = ACTIONS(4862), - [anon_sym_SLASH] = ACTIONS(4862), - [anon_sym_PERCENT] = ACTIONS(4862), - [anon_sym_CARET] = ACTIONS(4862), - [anon_sym_PIPE] = ACTIONS(4862), - [anon_sym_AMP] = ACTIONS(4862), - [anon_sym_LT_LT] = ACTIONS(4862), - [anon_sym_GT_GT] = ACTIONS(4862), - [anon_sym_GT_GT_GT] = ACTIONS(4862), - [anon_sym_EQ_EQ] = ACTIONS(4860), - [anon_sym_BANG_EQ] = ACTIONS(4860), - [anon_sym_GT_EQ] = ACTIONS(4860), - [anon_sym_LT_EQ] = ACTIONS(4860), - [anon_sym_DOT] = ACTIONS(4862), - [anon_sym_switch] = ACTIONS(4860), - [anon_sym_DOT_DOT] = ACTIONS(4860), - [anon_sym_and] = ACTIONS(4860), - [anon_sym_or] = ACTIONS(4860), - [anon_sym_PLUS_EQ] = ACTIONS(5310), - [anon_sym_DASH_EQ] = ACTIONS(5310), - [anon_sym_STAR_EQ] = ACTIONS(5310), - [anon_sym_SLASH_EQ] = ACTIONS(5310), - [anon_sym_PERCENT_EQ] = ACTIONS(5310), - [anon_sym_AMP_EQ] = ACTIONS(5310), - [anon_sym_CARET_EQ] = ACTIONS(5310), - [anon_sym_PIPE_EQ] = ACTIONS(5310), - [anon_sym_LT_LT_EQ] = ACTIONS(5310), - [anon_sym_GT_GT_EQ] = ACTIONS(5310), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(5310), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(5310), - [anon_sym_AMP_AMP] = ACTIONS(4860), - [anon_sym_PIPE_PIPE] = ACTIONS(4860), - [anon_sym_QMARK_QMARK] = ACTIONS(4862), - [anon_sym_into] = ACTIONS(4860), - [anon_sym_as] = ACTIONS(4860), - [anon_sym_is] = ACTIONS(4860), - [anon_sym_DASH_GT] = ACTIONS(4860), - [anon_sym_with] = ACTIONS(4860), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_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(4860), + [anon_sym_SEMI] = ACTIONS(4098), + [anon_sym_LBRACK] = ACTIONS(4098), + [anon_sym_COLON] = ACTIONS(4098), + [anon_sym_COMMA] = ACTIONS(4098), + [anon_sym_RBRACK] = ACTIONS(4098), + [anon_sym_LPAREN] = ACTIONS(4098), + [anon_sym_RPAREN] = ACTIONS(4098), + [anon_sym_LBRACE] = ACTIONS(4098), + [anon_sym_RBRACE] = ACTIONS(4098), + [anon_sym_LT] = ACTIONS(4096), + [anon_sym_GT] = ACTIONS(4096), + [anon_sym_in] = ACTIONS(4096), + [anon_sym_QMARK] = ACTIONS(4096), + [anon_sym_BANG] = ACTIONS(4096), + [anon_sym_PLUS_PLUS] = ACTIONS(4098), + [anon_sym_DASH_DASH] = ACTIONS(4098), + [anon_sym_PLUS] = ACTIONS(4096), + [anon_sym_DASH] = ACTIONS(4096), + [anon_sym_STAR] = ACTIONS(4098), + [anon_sym_SLASH] = ACTIONS(4096), + [anon_sym_PERCENT] = ACTIONS(4098), + [anon_sym_CARET] = ACTIONS(4098), + [anon_sym_PIPE] = ACTIONS(4096), + [anon_sym_AMP] = ACTIONS(4096), + [anon_sym_LT_LT] = ACTIONS(4098), + [anon_sym_GT_GT] = ACTIONS(4096), + [anon_sym_GT_GT_GT] = ACTIONS(4098), + [anon_sym_EQ_EQ] = ACTIONS(4098), + [anon_sym_BANG_EQ] = ACTIONS(4098), + [anon_sym_GT_EQ] = ACTIONS(4098), + [anon_sym_LT_EQ] = ACTIONS(4098), + [anon_sym_DOT] = ACTIONS(4096), + [anon_sym_EQ_GT] = ACTIONS(4098), + [anon_sym_switch] = ACTIONS(4098), + [anon_sym_when] = ACTIONS(4098), + [anon_sym_DOT_DOT] = ACTIONS(4098), + [anon_sym_and] = ACTIONS(4098), + [anon_sym_or] = ACTIONS(4098), + [anon_sym_AMP_AMP] = ACTIONS(4098), + [anon_sym_PIPE_PIPE] = ACTIONS(4098), + [anon_sym_QMARK_QMARK] = ACTIONS(4098), + [anon_sym_into] = ACTIONS(4098), + [anon_sym_on] = ACTIONS(4098), + [anon_sym_equals] = ACTIONS(4098), + [anon_sym_by] = ACTIONS(4098), + [anon_sym_as] = ACTIONS(4098), + [anon_sym_is] = ACTIONS(4098), + [anon_sym_DASH_GT] = ACTIONS(4098), + [anon_sym_with] = ACTIONS(4098), + [aux_sym_preproc_if_token3] = ACTIONS(4098), + [aux_sym_preproc_else_token1] = ACTIONS(4098), + [aux_sym_preproc_elif_token1] = ACTIONS(4098), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_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), @@ -482927,58 +482420,58 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3166), [sym_preproc_define] = STATE(3166), [sym_preproc_undef] = STATE(3166), - [anon_sym_SEMI] = ACTIONS(4110), - [anon_sym_LBRACK] = ACTIONS(4110), - [anon_sym_COLON] = ACTIONS(4110), - [anon_sym_COMMA] = ACTIONS(4110), - [anon_sym_RBRACK] = ACTIONS(4110), - [anon_sym_LPAREN] = ACTIONS(4110), - [anon_sym_RPAREN] = ACTIONS(4110), - [anon_sym_LBRACE] = ACTIONS(4110), - [anon_sym_RBRACE] = ACTIONS(4110), - [anon_sym_LT] = ACTIONS(4108), - [anon_sym_GT] = ACTIONS(4108), - [anon_sym_in] = ACTIONS(4108), - [anon_sym_QMARK] = ACTIONS(4108), - [anon_sym_BANG] = ACTIONS(4108), - [anon_sym_PLUS_PLUS] = ACTIONS(4110), - [anon_sym_DASH_DASH] = ACTIONS(4110), - [anon_sym_PLUS] = ACTIONS(4108), - [anon_sym_DASH] = ACTIONS(4108), - [anon_sym_STAR] = ACTIONS(4110), - [anon_sym_SLASH] = ACTIONS(4108), - [anon_sym_PERCENT] = ACTIONS(4110), - [anon_sym_CARET] = ACTIONS(4110), - [anon_sym_PIPE] = ACTIONS(4108), - [anon_sym_AMP] = ACTIONS(4108), - [anon_sym_LT_LT] = ACTIONS(4110), - [anon_sym_GT_GT] = ACTIONS(4108), - [anon_sym_GT_GT_GT] = ACTIONS(4110), - [anon_sym_EQ_EQ] = ACTIONS(4110), - [anon_sym_BANG_EQ] = ACTIONS(4110), - [anon_sym_GT_EQ] = ACTIONS(4110), - [anon_sym_LT_EQ] = ACTIONS(4110), - [anon_sym_DOT] = ACTIONS(4108), - [anon_sym_EQ_GT] = ACTIONS(4110), - [anon_sym_switch] = ACTIONS(4110), - [anon_sym_when] = ACTIONS(4110), - [anon_sym_DOT_DOT] = ACTIONS(4110), - [anon_sym_and] = ACTIONS(4110), - [anon_sym_or] = ACTIONS(4110), - [anon_sym_AMP_AMP] = ACTIONS(4110), - [anon_sym_PIPE_PIPE] = ACTIONS(4110), - [anon_sym_QMARK_QMARK] = ACTIONS(4110), - [anon_sym_into] = ACTIONS(4110), - [anon_sym_on] = ACTIONS(4110), - [anon_sym_equals] = ACTIONS(4110), - [anon_sym_by] = ACTIONS(4110), - [anon_sym_as] = ACTIONS(4110), - [anon_sym_is] = ACTIONS(4110), - [anon_sym_DASH_GT] = ACTIONS(4110), - [anon_sym_with] = ACTIONS(4110), - [aux_sym_preproc_if_token3] = ACTIONS(4110), - [aux_sym_preproc_else_token1] = ACTIONS(4110), - [aux_sym_preproc_elif_token1] = ACTIONS(4110), + [anon_sym_SEMI] = ACTIONS(4072), + [anon_sym_LBRACK] = ACTIONS(4072), + [anon_sym_COLON] = ACTIONS(4072), + [anon_sym_COMMA] = ACTIONS(4072), + [anon_sym_RBRACK] = ACTIONS(4072), + [anon_sym_LPAREN] = ACTIONS(4072), + [anon_sym_RPAREN] = ACTIONS(4072), + [anon_sym_LBRACE] = ACTIONS(4072), + [anon_sym_RBRACE] = ACTIONS(4072), + [anon_sym_LT] = ACTIONS(4070), + [anon_sym_GT] = ACTIONS(4070), + [anon_sym_in] = ACTIONS(4070), + [anon_sym_QMARK] = ACTIONS(4070), + [anon_sym_BANG] = ACTIONS(4070), + [anon_sym_PLUS_PLUS] = ACTIONS(4072), + [anon_sym_DASH_DASH] = ACTIONS(4072), + [anon_sym_PLUS] = ACTIONS(4070), + [anon_sym_DASH] = ACTIONS(4070), + [anon_sym_STAR] = ACTIONS(4072), + [anon_sym_SLASH] = ACTIONS(4070), + [anon_sym_PERCENT] = ACTIONS(4072), + [anon_sym_CARET] = ACTIONS(4072), + [anon_sym_PIPE] = ACTIONS(4070), + [anon_sym_AMP] = ACTIONS(4070), + [anon_sym_LT_LT] = ACTIONS(4072), + [anon_sym_GT_GT] = ACTIONS(4070), + [anon_sym_GT_GT_GT] = ACTIONS(4072), + [anon_sym_EQ_EQ] = ACTIONS(4072), + [anon_sym_BANG_EQ] = ACTIONS(4072), + [anon_sym_GT_EQ] = ACTIONS(4072), + [anon_sym_LT_EQ] = ACTIONS(4072), + [anon_sym_DOT] = ACTIONS(4070), + [anon_sym_EQ_GT] = ACTIONS(4072), + [anon_sym_switch] = ACTIONS(4072), + [anon_sym_when] = ACTIONS(4072), + [anon_sym_DOT_DOT] = ACTIONS(4072), + [anon_sym_and] = ACTIONS(4072), + [anon_sym_or] = ACTIONS(4072), + [anon_sym_AMP_AMP] = ACTIONS(4072), + [anon_sym_PIPE_PIPE] = ACTIONS(4072), + [anon_sym_QMARK_QMARK] = ACTIONS(4072), + [anon_sym_into] = ACTIONS(4072), + [anon_sym_on] = ACTIONS(4072), + [anon_sym_equals] = ACTIONS(4072), + [anon_sym_by] = ACTIONS(4072), + [anon_sym_as] = ACTIONS(4072), + [anon_sym_is] = ACTIONS(4072), + [anon_sym_DASH_GT] = ACTIONS(4072), + [anon_sym_with] = ACTIONS(4072), + [aux_sym_preproc_if_token3] = ACTIONS(4072), + [aux_sym_preproc_else_token1] = ACTIONS(4072), + [aux_sym_preproc_elif_token1] = ACTIONS(4072), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -482991,7 +482484,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3167] = { - [sym_type_argument_list] = STATE(3247), [sym_preproc_region] = STATE(3167), [sym_preproc_endregion] = STATE(3167), [sym_preproc_line] = STATE(3167), @@ -483001,70 +482493,70 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3167), [sym_preproc_define] = STATE(3167), [sym_preproc_undef] = STATE(3167), - [anon_sym_SEMI] = ACTIONS(3662), - [anon_sym_LBRACK] = ACTIONS(3662), - [anon_sym_COLON] = ACTIONS(3660), - [anon_sym_COMMA] = ACTIONS(3662), - [anon_sym_RBRACK] = ACTIONS(3662), - [anon_sym_LPAREN] = ACTIONS(3662), - [anon_sym_RPAREN] = ACTIONS(3662), - [anon_sym_LBRACE] = ACTIONS(3662), - [anon_sym_RBRACE] = ACTIONS(3662), - [anon_sym_LT] = ACTIONS(5312), - [anon_sym_GT] = ACTIONS(3660), - [anon_sym_QMARK] = ACTIONS(3660), - [anon_sym_BANG] = ACTIONS(3660), - [anon_sym_PLUS_PLUS] = ACTIONS(3662), - [anon_sym_DASH_DASH] = ACTIONS(3662), - [anon_sym_PLUS] = ACTIONS(3660), - [anon_sym_DASH] = ACTIONS(3660), - [anon_sym_STAR] = ACTIONS(3662), - [anon_sym_SLASH] = ACTIONS(3660), - [anon_sym_PERCENT] = ACTIONS(3662), - [anon_sym_CARET] = ACTIONS(3662), - [anon_sym_PIPE] = ACTIONS(3660), - [anon_sym_AMP] = ACTIONS(3660), - [anon_sym_LT_LT] = ACTIONS(3662), - [anon_sym_GT_GT] = ACTIONS(3660), - [anon_sym_GT_GT_GT] = ACTIONS(3662), - [anon_sym_EQ_EQ] = ACTIONS(3662), - [anon_sym_BANG_EQ] = ACTIONS(3662), - [anon_sym_GT_EQ] = ACTIONS(3662), - [anon_sym_LT_EQ] = ACTIONS(3662), - [anon_sym_DOT] = ACTIONS(3660), - [anon_sym_EQ_GT] = ACTIONS(3662), - [anon_sym_COLON_COLON] = ACTIONS(5315), - [anon_sym_switch] = ACTIONS(3662), - [anon_sym_when] = ACTIONS(3662), - [anon_sym_DOT_DOT] = ACTIONS(3662), - [anon_sym_and] = ACTIONS(3662), - [anon_sym_or] = ACTIONS(3662), - [anon_sym_AMP_AMP] = ACTIONS(3662), - [anon_sym_PIPE_PIPE] = ACTIONS(3662), - [anon_sym_QMARK_QMARK] = ACTIONS(3662), - [anon_sym_on] = ACTIONS(3662), - [anon_sym_equals] = ACTIONS(3662), - [anon_sym_by] = ACTIONS(3662), - [anon_sym_as] = ACTIONS(3662), - [anon_sym_is] = ACTIONS(3662), - [anon_sym_DASH_GT] = ACTIONS(3662), - [anon_sym_with] = ACTIONS(3662), - [aux_sym_preproc_if_token3] = ACTIONS(3662), - [aux_sym_preproc_else_token1] = ACTIONS(3662), - [aux_sym_preproc_elif_token1] = 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), + [anon_sym_EQ] = ACTIONS(3659), + [anon_sym_LBRACK] = ACTIONS(3661), + [anon_sym_COLON] = ACTIONS(3661), + [anon_sym_COMMA] = ACTIONS(3661), + [anon_sym_LPAREN] = ACTIONS(3661), + [anon_sym_LT] = ACTIONS(3659), + [anon_sym_GT] = ACTIONS(3659), + [anon_sym_QMARK] = ACTIONS(3659), + [anon_sym_BANG] = ACTIONS(3659), + [anon_sym_PLUS_PLUS] = ACTIONS(3661), + [anon_sym_DASH_DASH] = ACTIONS(3661), + [anon_sym_PLUS] = ACTIONS(3659), + [anon_sym_DASH] = ACTIONS(3659), + [anon_sym_STAR] = ACTIONS(3659), + [anon_sym_SLASH] = ACTIONS(3659), + [anon_sym_PERCENT] = ACTIONS(3659), + [anon_sym_CARET] = ACTIONS(3659), + [anon_sym_PIPE] = ACTIONS(3659), + [anon_sym_AMP] = ACTIONS(3659), + [anon_sym_LT_LT] = ACTIONS(3659), + [anon_sym_GT_GT] = ACTIONS(3659), + [anon_sym_GT_GT_GT] = ACTIONS(3659), + [anon_sym_EQ_EQ] = ACTIONS(3661), + [anon_sym_BANG_EQ] = ACTIONS(3661), + [anon_sym_GT_EQ] = ACTIONS(3661), + [anon_sym_LT_EQ] = ACTIONS(3661), + [anon_sym_DOT] = ACTIONS(3659), + [anon_sym_switch] = ACTIONS(3661), + [anon_sym_DOT_DOT] = ACTIONS(3661), + [anon_sym_and] = ACTIONS(3661), + [anon_sym_or] = ACTIONS(3661), + [anon_sym_PLUS_EQ] = ACTIONS(3661), + [anon_sym_DASH_EQ] = ACTIONS(3661), + [anon_sym_STAR_EQ] = ACTIONS(3661), + [anon_sym_SLASH_EQ] = ACTIONS(3661), + [anon_sym_PERCENT_EQ] = ACTIONS(3661), + [anon_sym_AMP_EQ] = ACTIONS(3661), + [anon_sym_CARET_EQ] = ACTIONS(3661), + [anon_sym_PIPE_EQ] = ACTIONS(3661), + [anon_sym_LT_LT_EQ] = ACTIONS(3661), + [anon_sym_GT_GT_EQ] = ACTIONS(3661), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3661), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3661), + [anon_sym_AMP_AMP] = ACTIONS(3661), + [anon_sym_PIPE_PIPE] = ACTIONS(3661), + [anon_sym_QMARK_QMARK] = ACTIONS(3659), + [anon_sym_into] = ACTIONS(3661), + [anon_sym_as] = ACTIONS(3661), + [anon_sym_is] = ACTIONS(3661), + [anon_sym_DASH_GT] = ACTIONS(3661), + [anon_sym_with] = ACTIONS(3661), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_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(3661), }, [3168] = { - [sym_initializer_expression] = STATE(3384), [sym_preproc_region] = STATE(3168), [sym_preproc_endregion] = STATE(3168), [sym_preproc_line] = STATE(3168), @@ -483074,57 +482566,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_SEMI] = ACTIONS(4847), - [anon_sym_LBRACK] = ACTIONS(4849), - [anon_sym_COLON] = ACTIONS(4847), - [anon_sym_COMMA] = ACTIONS(4847), - [anon_sym_RBRACK] = ACTIONS(4847), - [anon_sym_LPAREN] = ACTIONS(4847), - [anon_sym_RPAREN] = ACTIONS(4847), - [anon_sym_LBRACE] = ACTIONS(1313), - [anon_sym_RBRACE] = ACTIONS(4847), - [anon_sym_LT] = ACTIONS(4852), - [anon_sym_GT] = ACTIONS(4852), - [anon_sym_in] = ACTIONS(4847), - [anon_sym_QMARK] = ACTIONS(4852), - [anon_sym_BANG] = ACTIONS(4852), - [anon_sym_PLUS_PLUS] = ACTIONS(4847), - [anon_sym_DASH_DASH] = ACTIONS(4847), - [anon_sym_PLUS] = ACTIONS(4852), - [anon_sym_DASH] = ACTIONS(4852), - [anon_sym_STAR] = ACTIONS(4847), - [anon_sym_SLASH] = ACTIONS(4852), - [anon_sym_PERCENT] = ACTIONS(4847), - [anon_sym_CARET] = ACTIONS(4847), - [anon_sym_PIPE] = ACTIONS(4852), - [anon_sym_AMP] = ACTIONS(4852), - [anon_sym_LT_LT] = ACTIONS(4847), - [anon_sym_GT_GT] = ACTIONS(4852), - [anon_sym_GT_GT_GT] = ACTIONS(4847), - [anon_sym_EQ_EQ] = ACTIONS(4847), - [anon_sym_BANG_EQ] = ACTIONS(4847), - [anon_sym_GT_EQ] = ACTIONS(4847), - [anon_sym_LT_EQ] = ACTIONS(4847), - [anon_sym_DOT] = ACTIONS(4852), - [anon_sym_EQ_GT] = ACTIONS(4847), - [anon_sym_switch] = ACTIONS(4847), - [anon_sym_when] = ACTIONS(4847), - [anon_sym_DOT_DOT] = ACTIONS(4847), - [anon_sym_and] = ACTIONS(4847), - [anon_sym_or] = ACTIONS(4847), - [anon_sym_AMP_AMP] = ACTIONS(4847), - [anon_sym_PIPE_PIPE] = ACTIONS(4847), - [anon_sym_QMARK_QMARK] = ACTIONS(4847), - [anon_sym_on] = ACTIONS(4847), - [anon_sym_equals] = ACTIONS(4847), - [anon_sym_by] = ACTIONS(4847), - [anon_sym_as] = ACTIONS(4847), - [anon_sym_is] = ACTIONS(4847), - [anon_sym_DASH_GT] = ACTIONS(4847), - [anon_sym_with] = ACTIONS(4847), - [aux_sym_preproc_if_token3] = ACTIONS(4847), - [aux_sym_preproc_else_token1] = ACTIONS(4847), - [aux_sym_preproc_elif_token1] = ACTIONS(4847), + [anon_sym_SEMI] = ACTIONS(3998), + [anon_sym_LBRACK] = ACTIONS(3998), + [anon_sym_COLON] = ACTIONS(3998), + [anon_sym_COMMA] = ACTIONS(3998), + [anon_sym_RBRACK] = ACTIONS(3998), + [anon_sym_LPAREN] = ACTIONS(3998), + [anon_sym_RPAREN] = ACTIONS(3998), + [anon_sym_LBRACE] = ACTIONS(3998), + [anon_sym_RBRACE] = ACTIONS(3998), + [anon_sym_LT] = ACTIONS(3996), + [anon_sym_GT] = ACTIONS(3996), + [anon_sym_in] = ACTIONS(3996), + [anon_sym_QMARK] = ACTIONS(3996), + [anon_sym_BANG] = ACTIONS(3996), + [anon_sym_PLUS_PLUS] = ACTIONS(3998), + [anon_sym_DASH_DASH] = ACTIONS(3998), + [anon_sym_PLUS] = ACTIONS(3996), + [anon_sym_DASH] = ACTIONS(3996), + [anon_sym_STAR] = ACTIONS(3998), + [anon_sym_SLASH] = ACTIONS(3996), + [anon_sym_PERCENT] = ACTIONS(3998), + [anon_sym_CARET] = ACTIONS(3998), + [anon_sym_PIPE] = ACTIONS(3996), + [anon_sym_AMP] = ACTIONS(3996), + [anon_sym_LT_LT] = ACTIONS(3998), + [anon_sym_GT_GT] = ACTIONS(3996), + [anon_sym_GT_GT_GT] = ACTIONS(3998), + [anon_sym_EQ_EQ] = ACTIONS(3998), + [anon_sym_BANG_EQ] = ACTIONS(3998), + [anon_sym_GT_EQ] = ACTIONS(3998), + [anon_sym_LT_EQ] = ACTIONS(3998), + [anon_sym_DOT] = ACTIONS(3996), + [anon_sym_EQ_GT] = ACTIONS(3998), + [anon_sym_switch] = ACTIONS(3998), + [anon_sym_when] = ACTIONS(3998), + [anon_sym_DOT_DOT] = ACTIONS(3998), + [anon_sym_and] = ACTIONS(3998), + [anon_sym_or] = ACTIONS(3998), + [anon_sym_AMP_AMP] = ACTIONS(3998), + [anon_sym_PIPE_PIPE] = ACTIONS(3998), + [anon_sym_QMARK_QMARK] = ACTIONS(3998), + [anon_sym_into] = ACTIONS(3998), + [anon_sym_on] = ACTIONS(3998), + [anon_sym_equals] = ACTIONS(3998), + [anon_sym_by] = ACTIONS(3998), + [anon_sym_as] = ACTIONS(3998), + [anon_sym_is] = ACTIONS(3998), + [anon_sym_DASH_GT] = ACTIONS(3998), + [anon_sym_with] = ACTIONS(3998), + [aux_sym_preproc_if_token3] = ACTIONS(3998), + [aux_sym_preproc_else_token1] = ACTIONS(3998), + [aux_sym_preproc_elif_token1] = ACTIONS(3998), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -483146,68 +482639,68 @@ 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), - [anon_sym_EQ] = ACTIONS(4201), - [anon_sym_LBRACK] = ACTIONS(4199), - [anon_sym_COLON] = ACTIONS(4199), - [anon_sym_COMMA] = ACTIONS(4199), - [anon_sym_LPAREN] = ACTIONS(4199), - [anon_sym_LT] = ACTIONS(4201), - [anon_sym_GT] = ACTIONS(4201), - [anon_sym_QMARK] = ACTIONS(4201), - [anon_sym_BANG] = ACTIONS(4201), - [anon_sym_PLUS_PLUS] = ACTIONS(4199), - [anon_sym_DASH_DASH] = ACTIONS(4199), - [anon_sym_PLUS] = ACTIONS(4201), - [anon_sym_DASH] = ACTIONS(4201), - [anon_sym_STAR] = ACTIONS(4201), - [anon_sym_SLASH] = ACTIONS(4201), - [anon_sym_PERCENT] = ACTIONS(4201), - [anon_sym_CARET] = ACTIONS(4201), - [anon_sym_PIPE] = ACTIONS(4201), - [anon_sym_AMP] = ACTIONS(4201), - [anon_sym_LT_LT] = ACTIONS(4201), - [anon_sym_GT_GT] = ACTIONS(4201), - [anon_sym_GT_GT_GT] = ACTIONS(4201), - [anon_sym_EQ_EQ] = ACTIONS(4199), - [anon_sym_BANG_EQ] = ACTIONS(4199), - [anon_sym_GT_EQ] = ACTIONS(4199), - [anon_sym_LT_EQ] = ACTIONS(4199), - [anon_sym_DOT] = ACTIONS(4201), - [anon_sym_switch] = ACTIONS(4199), - [anon_sym_DOT_DOT] = ACTIONS(4199), - [anon_sym_and] = ACTIONS(4199), - [anon_sym_or] = ACTIONS(4199), - [anon_sym_PLUS_EQ] = ACTIONS(4199), - [anon_sym_DASH_EQ] = ACTIONS(4199), - [anon_sym_STAR_EQ] = ACTIONS(4199), - [anon_sym_SLASH_EQ] = ACTIONS(4199), - [anon_sym_PERCENT_EQ] = ACTIONS(4199), - [anon_sym_AMP_EQ] = ACTIONS(4199), - [anon_sym_CARET_EQ] = ACTIONS(4199), - [anon_sym_PIPE_EQ] = ACTIONS(4199), - [anon_sym_LT_LT_EQ] = ACTIONS(4199), - [anon_sym_GT_GT_EQ] = ACTIONS(4199), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(4199), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(4199), - [anon_sym_AMP_AMP] = ACTIONS(4199), - [anon_sym_PIPE_PIPE] = ACTIONS(4199), - [anon_sym_QMARK_QMARK] = ACTIONS(4201), - [anon_sym_into] = ACTIONS(4199), - [anon_sym_as] = ACTIONS(4199), - [anon_sym_is] = ACTIONS(4199), - [anon_sym_DASH_GT] = ACTIONS(4199), - [anon_sym_with] = ACTIONS(4199), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_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(4199), + [anon_sym_SEMI] = ACTIONS(4102), + [anon_sym_LBRACK] = ACTIONS(4102), + [anon_sym_COLON] = ACTIONS(4102), + [anon_sym_COMMA] = ACTIONS(4102), + [anon_sym_RBRACK] = ACTIONS(4102), + [anon_sym_LPAREN] = ACTIONS(4102), + [anon_sym_RPAREN] = ACTIONS(4102), + [anon_sym_LBRACE] = ACTIONS(4102), + [anon_sym_RBRACE] = ACTIONS(4102), + [anon_sym_LT] = ACTIONS(4100), + [anon_sym_GT] = ACTIONS(4100), + [anon_sym_in] = ACTIONS(4100), + [anon_sym_QMARK] = ACTIONS(4100), + [anon_sym_BANG] = ACTIONS(4100), + [anon_sym_PLUS_PLUS] = ACTIONS(4102), + [anon_sym_DASH_DASH] = ACTIONS(4102), + [anon_sym_PLUS] = ACTIONS(4100), + [anon_sym_DASH] = ACTIONS(4100), + [anon_sym_STAR] = ACTIONS(4102), + [anon_sym_SLASH] = ACTIONS(4100), + [anon_sym_PERCENT] = ACTIONS(4102), + [anon_sym_CARET] = ACTIONS(4102), + [anon_sym_PIPE] = ACTIONS(4100), + [anon_sym_AMP] = ACTIONS(4100), + [anon_sym_LT_LT] = ACTIONS(4102), + [anon_sym_GT_GT] = ACTIONS(4100), + [anon_sym_GT_GT_GT] = ACTIONS(4102), + [anon_sym_EQ_EQ] = ACTIONS(4102), + [anon_sym_BANG_EQ] = ACTIONS(4102), + [anon_sym_GT_EQ] = ACTIONS(4102), + [anon_sym_LT_EQ] = ACTIONS(4102), + [anon_sym_DOT] = ACTIONS(4100), + [anon_sym_EQ_GT] = ACTIONS(4102), + [anon_sym_switch] = ACTIONS(4102), + [anon_sym_when] = ACTIONS(4102), + [anon_sym_DOT_DOT] = ACTIONS(4102), + [anon_sym_and] = ACTIONS(4102), + [anon_sym_or] = ACTIONS(4102), + [anon_sym_AMP_AMP] = ACTIONS(4102), + [anon_sym_PIPE_PIPE] = ACTIONS(4102), + [anon_sym_QMARK_QMARK] = ACTIONS(4102), + [anon_sym_into] = ACTIONS(4102), + [anon_sym_on] = ACTIONS(4102), + [anon_sym_equals] = ACTIONS(4102), + [anon_sym_by] = ACTIONS(4102), + [anon_sym_as] = ACTIONS(4102), + [anon_sym_is] = ACTIONS(4102), + [anon_sym_DASH_GT] = ACTIONS(4102), + [anon_sym_with] = ACTIONS(4102), + [aux_sym_preproc_if_token3] = ACTIONS(4102), + [aux_sym_preproc_else_token1] = ACTIONS(4102), + [aux_sym_preproc_elif_token1] = 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), }, [3170] = { [sym_preproc_region] = STATE(3170), @@ -483219,68 +482712,68 @@ 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_SEMI] = ACTIONS(4006), - [anon_sym_LBRACK] = ACTIONS(4006), - [anon_sym_COLON] = ACTIONS(4006), - [anon_sym_COMMA] = ACTIONS(4006), - [anon_sym_RBRACK] = ACTIONS(4006), - [anon_sym_LPAREN] = ACTIONS(4006), - [anon_sym_RPAREN] = ACTIONS(4006), - [anon_sym_LBRACE] = ACTIONS(4006), - [anon_sym_RBRACE] = ACTIONS(4006), - [anon_sym_LT] = ACTIONS(4004), - [anon_sym_GT] = ACTIONS(4004), - [anon_sym_in] = ACTIONS(4004), - [anon_sym_QMARK] = ACTIONS(4004), - [anon_sym_BANG] = ACTIONS(4004), - [anon_sym_PLUS_PLUS] = ACTIONS(4006), - [anon_sym_DASH_DASH] = ACTIONS(4006), - [anon_sym_PLUS] = ACTIONS(4004), - [anon_sym_DASH] = ACTIONS(4004), - [anon_sym_STAR] = ACTIONS(4006), - [anon_sym_SLASH] = ACTIONS(4004), - [anon_sym_PERCENT] = ACTIONS(4006), - [anon_sym_CARET] = ACTIONS(4006), - [anon_sym_PIPE] = ACTIONS(4004), - [anon_sym_AMP] = ACTIONS(4004), - [anon_sym_LT_LT] = ACTIONS(4006), - [anon_sym_GT_GT] = ACTIONS(4004), - [anon_sym_GT_GT_GT] = ACTIONS(4006), - [anon_sym_EQ_EQ] = ACTIONS(4006), - [anon_sym_BANG_EQ] = ACTIONS(4006), - [anon_sym_GT_EQ] = ACTIONS(4006), - [anon_sym_LT_EQ] = ACTIONS(4006), - [anon_sym_DOT] = ACTIONS(4004), - [anon_sym_EQ_GT] = ACTIONS(4006), - [anon_sym_switch] = ACTIONS(4006), - [anon_sym_when] = ACTIONS(4006), - [anon_sym_DOT_DOT] = ACTIONS(4006), - [anon_sym_and] = ACTIONS(4006), - [anon_sym_or] = ACTIONS(4006), - [anon_sym_AMP_AMP] = ACTIONS(4006), - [anon_sym_PIPE_PIPE] = ACTIONS(4006), - [anon_sym_QMARK_QMARK] = ACTIONS(4006), - [anon_sym_into] = ACTIONS(4006), - [anon_sym_on] = ACTIONS(4006), - [anon_sym_equals] = ACTIONS(4006), - [anon_sym_by] = ACTIONS(4006), - [anon_sym_as] = ACTIONS(4006), - [anon_sym_is] = ACTIONS(4006), - [anon_sym_DASH_GT] = ACTIONS(4006), - [anon_sym_with] = ACTIONS(4006), - [aux_sym_preproc_if_token3] = ACTIONS(4006), - [aux_sym_preproc_else_token1] = ACTIONS(4006), - [aux_sym_preproc_elif_token1] = ACTIONS(4006), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_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(3663), + [anon_sym_LBRACK] = ACTIONS(3665), + [anon_sym_COLON] = ACTIONS(3665), + [anon_sym_COMMA] = ACTIONS(3665), + [anon_sym_LPAREN] = ACTIONS(3665), + [anon_sym_LT] = ACTIONS(3663), + [anon_sym_GT] = ACTIONS(3663), + [anon_sym_QMARK] = ACTIONS(3663), + [anon_sym_BANG] = ACTIONS(3663), + [anon_sym_PLUS_PLUS] = ACTIONS(3665), + [anon_sym_DASH_DASH] = ACTIONS(3665), + [anon_sym_PLUS] = ACTIONS(3663), + [anon_sym_DASH] = ACTIONS(3663), + [anon_sym_STAR] = ACTIONS(3663), + [anon_sym_SLASH] = ACTIONS(3663), + [anon_sym_PERCENT] = ACTIONS(3663), + [anon_sym_CARET] = ACTIONS(3663), + [anon_sym_PIPE] = ACTIONS(3663), + [anon_sym_AMP] = ACTIONS(3663), + [anon_sym_LT_LT] = ACTIONS(3663), + [anon_sym_GT_GT] = ACTIONS(3663), + [anon_sym_GT_GT_GT] = ACTIONS(3663), + [anon_sym_EQ_EQ] = ACTIONS(3665), + [anon_sym_BANG_EQ] = ACTIONS(3665), + [anon_sym_GT_EQ] = ACTIONS(3665), + [anon_sym_LT_EQ] = ACTIONS(3665), + [anon_sym_DOT] = ACTIONS(3663), + [anon_sym_switch] = ACTIONS(3665), + [anon_sym_DOT_DOT] = ACTIONS(3665), + [anon_sym_and] = ACTIONS(3665), + [anon_sym_or] = ACTIONS(3665), + [anon_sym_PLUS_EQ] = ACTIONS(3665), + [anon_sym_DASH_EQ] = ACTIONS(3665), + [anon_sym_STAR_EQ] = ACTIONS(3665), + [anon_sym_SLASH_EQ] = ACTIONS(3665), + [anon_sym_PERCENT_EQ] = ACTIONS(3665), + [anon_sym_AMP_EQ] = ACTIONS(3665), + [anon_sym_CARET_EQ] = ACTIONS(3665), + [anon_sym_PIPE_EQ] = ACTIONS(3665), + [anon_sym_LT_LT_EQ] = ACTIONS(3665), + [anon_sym_GT_GT_EQ] = ACTIONS(3665), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3665), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3665), + [anon_sym_AMP_AMP] = ACTIONS(3665), + [anon_sym_PIPE_PIPE] = ACTIONS(3665), + [anon_sym_QMARK_QMARK] = ACTIONS(3663), + [anon_sym_into] = ACTIONS(3665), + [anon_sym_as] = ACTIONS(3665), + [anon_sym_is] = ACTIONS(3665), + [anon_sym_DASH_GT] = ACTIONS(3665), + [anon_sym_with] = ACTIONS(3665), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_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(3665), }, [3171] = { [sym_preproc_region] = STATE(3171), @@ -483292,58 +482785,58 @@ 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(4870), - [anon_sym_LBRACK] = ACTIONS(4870), - [anon_sym_COLON] = ACTIONS(4870), - [anon_sym_COMMA] = ACTIONS(4870), - [anon_sym_RBRACK] = ACTIONS(4870), - [anon_sym_LPAREN] = ACTIONS(4870), - [anon_sym_RPAREN] = ACTIONS(4870), - [anon_sym_LBRACE] = ACTIONS(4870), - [anon_sym_RBRACE] = ACTIONS(4870), - [anon_sym_LT] = ACTIONS(4872), - [anon_sym_GT] = ACTIONS(4872), - [anon_sym_in] = ACTIONS(4872), - [anon_sym_QMARK] = ACTIONS(4872), - [anon_sym_BANG] = ACTIONS(4872), - [anon_sym_PLUS_PLUS] = ACTIONS(4870), - [anon_sym_DASH_DASH] = ACTIONS(4870), - [anon_sym_PLUS] = ACTIONS(4872), - [anon_sym_DASH] = ACTIONS(4872), - [anon_sym_STAR] = ACTIONS(4870), - [anon_sym_SLASH] = ACTIONS(4872), - [anon_sym_PERCENT] = ACTIONS(4870), - [anon_sym_CARET] = ACTIONS(4870), - [anon_sym_PIPE] = ACTIONS(4872), - [anon_sym_AMP] = ACTIONS(4872), - [anon_sym_LT_LT] = ACTIONS(4870), - [anon_sym_GT_GT] = ACTIONS(4872), - [anon_sym_GT_GT_GT] = ACTIONS(4870), - [anon_sym_EQ_EQ] = ACTIONS(4870), - [anon_sym_BANG_EQ] = ACTIONS(4870), - [anon_sym_GT_EQ] = ACTIONS(4870), - [anon_sym_LT_EQ] = ACTIONS(4870), - [anon_sym_DOT] = ACTIONS(4872), - [anon_sym_EQ_GT] = ACTIONS(4870), - [anon_sym_switch] = ACTIONS(4870), - [anon_sym_when] = ACTIONS(4870), - [anon_sym_DOT_DOT] = ACTIONS(4870), - [anon_sym_and] = ACTIONS(4870), - [anon_sym_or] = ACTIONS(4870), - [anon_sym_AMP_AMP] = ACTIONS(4870), - [anon_sym_PIPE_PIPE] = ACTIONS(4870), - [anon_sym_QMARK_QMARK] = ACTIONS(4870), - [anon_sym_into] = ACTIONS(4870), - [anon_sym_on] = ACTIONS(4870), - [anon_sym_equals] = ACTIONS(4870), - [anon_sym_by] = ACTIONS(4870), - [anon_sym_as] = ACTIONS(4870), - [anon_sym_is] = ACTIONS(4870), - [anon_sym_DASH_GT] = ACTIONS(4870), - [anon_sym_with] = ACTIONS(4870), - [aux_sym_preproc_if_token3] = ACTIONS(4870), - [aux_sym_preproc_else_token1] = ACTIONS(4870), - [aux_sym_preproc_elif_token1] = ACTIONS(4870), + [anon_sym_SEMI] = ACTIONS(3990), + [anon_sym_LBRACK] = ACTIONS(3990), + [anon_sym_COLON] = ACTIONS(3990), + [anon_sym_COMMA] = ACTIONS(3990), + [anon_sym_RBRACK] = ACTIONS(3990), + [anon_sym_LPAREN] = ACTIONS(3990), + [anon_sym_RPAREN] = ACTIONS(3990), + [anon_sym_LBRACE] = ACTIONS(3990), + [anon_sym_RBRACE] = ACTIONS(3990), + [anon_sym_LT] = ACTIONS(3988), + [anon_sym_GT] = ACTIONS(3988), + [anon_sym_in] = ACTIONS(3988), + [anon_sym_QMARK] = ACTIONS(3988), + [anon_sym_BANG] = ACTIONS(3988), + [anon_sym_PLUS_PLUS] = ACTIONS(3990), + [anon_sym_DASH_DASH] = ACTIONS(3990), + [anon_sym_PLUS] = ACTIONS(3988), + [anon_sym_DASH] = ACTIONS(3988), + [anon_sym_STAR] = ACTIONS(3990), + [anon_sym_SLASH] = ACTIONS(3988), + [anon_sym_PERCENT] = ACTIONS(3990), + [anon_sym_CARET] = ACTIONS(3990), + [anon_sym_PIPE] = ACTIONS(3988), + [anon_sym_AMP] = ACTIONS(3988), + [anon_sym_LT_LT] = ACTIONS(3990), + [anon_sym_GT_GT] = ACTIONS(3988), + [anon_sym_GT_GT_GT] = ACTIONS(3990), + [anon_sym_EQ_EQ] = ACTIONS(3990), + [anon_sym_BANG_EQ] = ACTIONS(3990), + [anon_sym_GT_EQ] = ACTIONS(3990), + [anon_sym_LT_EQ] = ACTIONS(3990), + [anon_sym_DOT] = ACTIONS(3988), + [anon_sym_EQ_GT] = ACTIONS(3990), + [anon_sym_switch] = ACTIONS(3990), + [anon_sym_when] = ACTIONS(3990), + [anon_sym_DOT_DOT] = ACTIONS(3990), + [anon_sym_and] = ACTIONS(3990), + [anon_sym_or] = ACTIONS(3990), + [anon_sym_AMP_AMP] = ACTIONS(3990), + [anon_sym_PIPE_PIPE] = ACTIONS(3990), + [anon_sym_QMARK_QMARK] = ACTIONS(3990), + [anon_sym_into] = ACTIONS(3990), + [anon_sym_on] = ACTIONS(3990), + [anon_sym_equals] = ACTIONS(3990), + [anon_sym_by] = ACTIONS(3990), + [anon_sym_as] = ACTIONS(3990), + [anon_sym_is] = ACTIONS(3990), + [anon_sym_DASH_GT] = ACTIONS(3990), + [anon_sym_with] = ACTIONS(3990), + [aux_sym_preproc_if_token3] = ACTIONS(3990), + [aux_sym_preproc_else_token1] = ACTIONS(3990), + [aux_sym_preproc_elif_token1] = ACTIONS(3990), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -483365,58 +482858,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), - [anon_sym_SEMI] = ACTIONS(4084), - [anon_sym_LBRACK] = ACTIONS(4084), - [anon_sym_COLON] = ACTIONS(4084), - [anon_sym_COMMA] = ACTIONS(4084), - [anon_sym_RBRACK] = ACTIONS(4084), - [anon_sym_LPAREN] = ACTIONS(4084), - [anon_sym_RPAREN] = ACTIONS(4084), - [anon_sym_LBRACE] = ACTIONS(4084), - [anon_sym_RBRACE] = ACTIONS(4084), - [anon_sym_LT] = ACTIONS(4082), - [anon_sym_GT] = ACTIONS(4082), - [anon_sym_in] = ACTIONS(4082), - [anon_sym_QMARK] = ACTIONS(4082), - [anon_sym_BANG] = ACTIONS(4082), - [anon_sym_PLUS_PLUS] = ACTIONS(4084), - [anon_sym_DASH_DASH] = ACTIONS(4084), - [anon_sym_PLUS] = ACTIONS(4082), - [anon_sym_DASH] = ACTIONS(4082), - [anon_sym_STAR] = ACTIONS(4084), - [anon_sym_SLASH] = ACTIONS(4082), - [anon_sym_PERCENT] = ACTIONS(4084), - [anon_sym_CARET] = ACTIONS(4084), - [anon_sym_PIPE] = ACTIONS(4082), - [anon_sym_AMP] = ACTIONS(4082), - [anon_sym_LT_LT] = ACTIONS(4084), - [anon_sym_GT_GT] = ACTIONS(4082), - [anon_sym_GT_GT_GT] = ACTIONS(4084), - [anon_sym_EQ_EQ] = ACTIONS(4084), - [anon_sym_BANG_EQ] = ACTIONS(4084), - [anon_sym_GT_EQ] = ACTIONS(4084), - [anon_sym_LT_EQ] = ACTIONS(4084), - [anon_sym_DOT] = ACTIONS(4082), - [anon_sym_EQ_GT] = ACTIONS(4084), - [anon_sym_switch] = ACTIONS(4084), - [anon_sym_when] = ACTIONS(4084), - [anon_sym_DOT_DOT] = ACTIONS(4084), - [anon_sym_and] = ACTIONS(4084), - [anon_sym_or] = ACTIONS(4084), - [anon_sym_AMP_AMP] = ACTIONS(4084), - [anon_sym_PIPE_PIPE] = ACTIONS(4084), - [anon_sym_QMARK_QMARK] = ACTIONS(4084), - [anon_sym_into] = ACTIONS(4084), - [anon_sym_on] = ACTIONS(4084), - [anon_sym_equals] = ACTIONS(4084), - [anon_sym_by] = ACTIONS(4084), - [anon_sym_as] = ACTIONS(4084), - [anon_sym_is] = ACTIONS(4084), - [anon_sym_DASH_GT] = ACTIONS(4084), - [anon_sym_with] = ACTIONS(4084), - [aux_sym_preproc_if_token3] = ACTIONS(4084), - [aux_sym_preproc_else_token1] = ACTIONS(4084), - [aux_sym_preproc_elif_token1] = ACTIONS(4084), + [anon_sym_SEMI] = ACTIONS(3986), + [anon_sym_LBRACK] = ACTIONS(3986), + [anon_sym_COLON] = ACTIONS(3986), + [anon_sym_COMMA] = ACTIONS(3986), + [anon_sym_RBRACK] = ACTIONS(3986), + [anon_sym_LPAREN] = ACTIONS(3986), + [anon_sym_RPAREN] = ACTIONS(3986), + [anon_sym_LBRACE] = ACTIONS(3986), + [anon_sym_RBRACE] = ACTIONS(3986), + [anon_sym_LT] = ACTIONS(3984), + [anon_sym_GT] = ACTIONS(3984), + [anon_sym_in] = ACTIONS(3984), + [anon_sym_QMARK] = ACTIONS(3984), + [anon_sym_BANG] = ACTIONS(3984), + [anon_sym_PLUS_PLUS] = ACTIONS(3986), + [anon_sym_DASH_DASH] = ACTIONS(3986), + [anon_sym_PLUS] = ACTIONS(3984), + [anon_sym_DASH] = ACTIONS(3984), + [anon_sym_STAR] = ACTIONS(3986), + [anon_sym_SLASH] = ACTIONS(3984), + [anon_sym_PERCENT] = ACTIONS(3986), + [anon_sym_CARET] = ACTIONS(3986), + [anon_sym_PIPE] = ACTIONS(3984), + [anon_sym_AMP] = ACTIONS(3984), + [anon_sym_LT_LT] = ACTIONS(3986), + [anon_sym_GT_GT] = ACTIONS(3984), + [anon_sym_GT_GT_GT] = ACTIONS(3986), + [anon_sym_EQ_EQ] = ACTIONS(3986), + [anon_sym_BANG_EQ] = ACTIONS(3986), + [anon_sym_GT_EQ] = ACTIONS(3986), + [anon_sym_LT_EQ] = ACTIONS(3986), + [anon_sym_DOT] = ACTIONS(3984), + [anon_sym_EQ_GT] = ACTIONS(3986), + [anon_sym_switch] = ACTIONS(3986), + [anon_sym_when] = ACTIONS(3986), + [anon_sym_DOT_DOT] = ACTIONS(3986), + [anon_sym_and] = ACTIONS(3986), + [anon_sym_or] = ACTIONS(3986), + [anon_sym_AMP_AMP] = ACTIONS(3986), + [anon_sym_PIPE_PIPE] = ACTIONS(3986), + [anon_sym_QMARK_QMARK] = ACTIONS(3986), + [anon_sym_into] = ACTIONS(3986), + [anon_sym_on] = ACTIONS(3986), + [anon_sym_equals] = ACTIONS(3986), + [anon_sym_by] = ACTIONS(3986), + [anon_sym_as] = ACTIONS(3986), + [anon_sym_is] = ACTIONS(3986), + [anon_sym_DASH_GT] = ACTIONS(3986), + [anon_sym_with] = ACTIONS(3986), + [aux_sym_preproc_if_token3] = ACTIONS(3986), + [aux_sym_preproc_else_token1] = ACTIONS(3986), + [aux_sym_preproc_elif_token1] = ACTIONS(3986), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -483438,68 +482931,68 @@ 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_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), + [anon_sym_EQ] = ACTIONS(3431), + [anon_sym_LBRACK] = ACTIONS(3429), + [anon_sym_COLON] = ACTIONS(3429), + [anon_sym_COMMA] = ACTIONS(3429), + [anon_sym_LPAREN] = ACTIONS(3429), + [anon_sym_LT] = ACTIONS(3431), + [anon_sym_GT] = ACTIONS(3431), + [anon_sym_QMARK] = ACTIONS(3431), + [anon_sym_BANG] = ACTIONS(3431), + [anon_sym_PLUS_PLUS] = ACTIONS(3429), + [anon_sym_DASH_DASH] = ACTIONS(3429), + [anon_sym_PLUS] = ACTIONS(3431), + [anon_sym_DASH] = ACTIONS(3431), + [anon_sym_STAR] = ACTIONS(3431), + [anon_sym_SLASH] = ACTIONS(3431), + [anon_sym_PERCENT] = ACTIONS(3431), + [anon_sym_CARET] = ACTIONS(3431), + [anon_sym_PIPE] = ACTIONS(3431), + [anon_sym_AMP] = ACTIONS(3431), + [anon_sym_LT_LT] = ACTIONS(3431), + [anon_sym_GT_GT] = ACTIONS(3431), + [anon_sym_GT_GT_GT] = ACTIONS(3431), + [anon_sym_EQ_EQ] = ACTIONS(3429), + [anon_sym_BANG_EQ] = ACTIONS(3429), + [anon_sym_GT_EQ] = ACTIONS(3429), + [anon_sym_LT_EQ] = ACTIONS(3429), + [anon_sym_DOT] = ACTIONS(3431), + [anon_sym_switch] = ACTIONS(3429), + [anon_sym_DOT_DOT] = ACTIONS(3429), + [anon_sym_and] = ACTIONS(3429), + [anon_sym_or] = ACTIONS(3429), + [anon_sym_PLUS_EQ] = ACTIONS(3429), + [anon_sym_DASH_EQ] = ACTIONS(3429), + [anon_sym_STAR_EQ] = ACTIONS(3429), + [anon_sym_SLASH_EQ] = ACTIONS(3429), + [anon_sym_PERCENT_EQ] = ACTIONS(3429), + [anon_sym_AMP_EQ] = ACTIONS(3429), + [anon_sym_CARET_EQ] = ACTIONS(3429), + [anon_sym_PIPE_EQ] = ACTIONS(3429), + [anon_sym_LT_LT_EQ] = ACTIONS(3429), + [anon_sym_GT_GT_EQ] = ACTIONS(3429), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3429), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3429), + [anon_sym_AMP_AMP] = ACTIONS(3429), + [anon_sym_PIPE_PIPE] = ACTIONS(3429), + [anon_sym_QMARK_QMARK] = ACTIONS(3431), + [anon_sym_into] = ACTIONS(3429), + [anon_sym_as] = ACTIONS(3429), + [anon_sym_is] = ACTIONS(3429), + [anon_sym_DASH_GT] = ACTIONS(3429), + [anon_sym_with] = 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_close_brace] = ACTIONS(3429), }, [3174] = { [sym_preproc_region] = STATE(3174), @@ -483511,68 +483004,68 @@ 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(3445), - [anon_sym_LBRACK] = ACTIONS(3445), - [anon_sym_COLON] = ACTIONS(3445), - [anon_sym_COMMA] = ACTIONS(3445), - [anon_sym_RBRACK] = ACTIONS(3445), - [anon_sym_LPAREN] = ACTIONS(3445), - [anon_sym_RPAREN] = ACTIONS(3445), - [anon_sym_LBRACE] = ACTIONS(3445), - [anon_sym_RBRACE] = ACTIONS(3445), - [anon_sym_LT] = ACTIONS(3447), - [anon_sym_GT] = ACTIONS(3447), - [anon_sym_in] = ACTIONS(3447), - [anon_sym_QMARK] = ACTIONS(3447), - [anon_sym_BANG] = ACTIONS(3447), - [anon_sym_PLUS_PLUS] = ACTIONS(3445), - [anon_sym_DASH_DASH] = ACTIONS(3445), - [anon_sym_PLUS] = ACTIONS(3447), - [anon_sym_DASH] = ACTIONS(3447), - [anon_sym_STAR] = ACTIONS(3445), - [anon_sym_SLASH] = ACTIONS(3447), - [anon_sym_PERCENT] = ACTIONS(3445), - [anon_sym_CARET] = ACTIONS(3445), - [anon_sym_PIPE] = ACTIONS(3447), - [anon_sym_AMP] = ACTIONS(3447), - [anon_sym_LT_LT] = ACTIONS(3445), - [anon_sym_GT_GT] = ACTIONS(3447), - [anon_sym_GT_GT_GT] = ACTIONS(3445), - [anon_sym_EQ_EQ] = ACTIONS(3445), - [anon_sym_BANG_EQ] = ACTIONS(3445), - [anon_sym_GT_EQ] = ACTIONS(3445), - [anon_sym_LT_EQ] = ACTIONS(3445), - [anon_sym_DOT] = ACTIONS(3447), - [anon_sym_EQ_GT] = ACTIONS(3445), - [anon_sym_switch] = ACTIONS(3445), - [anon_sym_when] = ACTIONS(3445), - [anon_sym_DOT_DOT] = ACTIONS(3445), - [anon_sym_and] = ACTIONS(3445), - [anon_sym_or] = ACTIONS(3445), - [anon_sym_AMP_AMP] = ACTIONS(3445), - [anon_sym_PIPE_PIPE] = ACTIONS(3445), - [anon_sym_QMARK_QMARK] = ACTIONS(3445), - [anon_sym_into] = ACTIONS(3445), - [anon_sym_on] = ACTIONS(3445), - [anon_sym_equals] = ACTIONS(3445), - [anon_sym_by] = ACTIONS(3445), - [anon_sym_as] = ACTIONS(3445), - [anon_sym_is] = ACTIONS(3445), - [anon_sym_DASH_GT] = ACTIONS(3445), - [anon_sym_with] = 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), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_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(3634), + [anon_sym_LBRACK] = ACTIONS(3636), + [anon_sym_COLON] = ACTIONS(3636), + [anon_sym_COMMA] = ACTIONS(3636), + [anon_sym_LPAREN] = ACTIONS(3636), + [anon_sym_LT] = ACTIONS(3634), + [anon_sym_GT] = ACTIONS(3634), + [anon_sym_QMARK] = ACTIONS(3634), + [anon_sym_BANG] = ACTIONS(3634), + [anon_sym_PLUS_PLUS] = ACTIONS(3636), + [anon_sym_DASH_DASH] = ACTIONS(3636), + [anon_sym_PLUS] = ACTIONS(3634), + [anon_sym_DASH] = ACTIONS(3634), + [anon_sym_STAR] = ACTIONS(3634), + [anon_sym_SLASH] = ACTIONS(3634), + [anon_sym_PERCENT] = ACTIONS(3634), + [anon_sym_CARET] = ACTIONS(3634), + [anon_sym_PIPE] = ACTIONS(3634), + [anon_sym_AMP] = ACTIONS(3634), + [anon_sym_LT_LT] = ACTIONS(3634), + [anon_sym_GT_GT] = ACTIONS(3634), + [anon_sym_GT_GT_GT] = ACTIONS(3634), + [anon_sym_EQ_EQ] = ACTIONS(3636), + [anon_sym_BANG_EQ] = ACTIONS(3636), + [anon_sym_GT_EQ] = ACTIONS(3636), + [anon_sym_LT_EQ] = ACTIONS(3636), + [anon_sym_DOT] = ACTIONS(3634), + [anon_sym_switch] = ACTIONS(3636), + [anon_sym_DOT_DOT] = ACTIONS(3636), + [anon_sym_and] = ACTIONS(3636), + [anon_sym_or] = ACTIONS(3636), + [anon_sym_PLUS_EQ] = ACTIONS(3636), + [anon_sym_DASH_EQ] = ACTIONS(3636), + [anon_sym_STAR_EQ] = ACTIONS(3636), + [anon_sym_SLASH_EQ] = ACTIONS(3636), + [anon_sym_PERCENT_EQ] = ACTIONS(3636), + [anon_sym_AMP_EQ] = ACTIONS(3636), + [anon_sym_CARET_EQ] = ACTIONS(3636), + [anon_sym_PIPE_EQ] = ACTIONS(3636), + [anon_sym_LT_LT_EQ] = ACTIONS(3636), + [anon_sym_GT_GT_EQ] = ACTIONS(3636), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3636), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3636), + [anon_sym_AMP_AMP] = ACTIONS(3636), + [anon_sym_PIPE_PIPE] = ACTIONS(3636), + [anon_sym_QMARK_QMARK] = ACTIONS(3634), + [anon_sym_into] = ACTIONS(3636), + [anon_sym_as] = ACTIONS(3636), + [anon_sym_is] = ACTIONS(3636), + [anon_sym_DASH_GT] = ACTIONS(3636), + [anon_sym_with] = ACTIONS(3636), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_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(3636), }, [3175] = { [sym_preproc_region] = STATE(3175), @@ -483584,57 +483077,58 @@ 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_EQ] = ACTIONS(3704), - [anon_sym_LBRACK] = ACTIONS(3719), - [anon_sym_COLON] = ACTIONS(3719), - [anon_sym_COMMA] = ACTIONS(3719), - [anon_sym_LPAREN] = ACTIONS(3719), - [anon_sym_LT] = ACTIONS(3704), - [anon_sym_GT] = ACTIONS(3704), - [anon_sym_QMARK] = ACTIONS(3704), - [anon_sym_BANG] = ACTIONS(3704), - [anon_sym_PLUS_PLUS] = ACTIONS(3719), - [anon_sym_DASH_DASH] = ACTIONS(3719), - [anon_sym_PLUS] = ACTIONS(3704), - [anon_sym_DASH] = ACTIONS(3704), - [anon_sym_STAR] = ACTIONS(3704), - [anon_sym_SLASH] = ACTIONS(3704), - [anon_sym_PERCENT] = ACTIONS(3704), - [anon_sym_CARET] = ACTIONS(3704), - [anon_sym_PIPE] = ACTIONS(3704), - [anon_sym_AMP] = ACTIONS(3704), - [anon_sym_LT_LT] = ACTIONS(3704), - [anon_sym_GT_GT] = ACTIONS(3704), - [anon_sym_GT_GT_GT] = ACTIONS(3704), - [anon_sym_EQ_EQ] = ACTIONS(3719), - [anon_sym_BANG_EQ] = ACTIONS(3719), - [anon_sym_GT_EQ] = ACTIONS(3719), - [anon_sym_LT_EQ] = ACTIONS(3719), - [anon_sym_DOT] = ACTIONS(3704), - [anon_sym_switch] = ACTIONS(3719), - [anon_sym_DOT_DOT] = ACTIONS(3719), - [anon_sym_and] = ACTIONS(3719), - [anon_sym_or] = ACTIONS(3719), - [anon_sym_PLUS_EQ] = ACTIONS(3719), - [anon_sym_DASH_EQ] = ACTIONS(3719), - [anon_sym_STAR_EQ] = ACTIONS(3719), - [anon_sym_SLASH_EQ] = ACTIONS(3719), - [anon_sym_PERCENT_EQ] = ACTIONS(3719), - [anon_sym_AMP_EQ] = ACTIONS(3719), - [anon_sym_CARET_EQ] = ACTIONS(3719), - [anon_sym_PIPE_EQ] = ACTIONS(3719), - [anon_sym_LT_LT_EQ] = ACTIONS(3719), - [anon_sym_GT_GT_EQ] = ACTIONS(3719), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3719), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3719), - [anon_sym_AMP_AMP] = ACTIONS(3719), - [anon_sym_PIPE_PIPE] = ACTIONS(3719), - [anon_sym_QMARK_QMARK] = ACTIONS(3704), - [anon_sym_into] = ACTIONS(3719), - [anon_sym_as] = ACTIONS(3719), - [anon_sym_is] = ACTIONS(3719), - [anon_sym_DASH_GT] = ACTIONS(3719), - [anon_sym_with] = ACTIONS(3719), + [anon_sym_SEMI] = ACTIONS(4887), + [anon_sym_LBRACK] = ACTIONS(4887), + [anon_sym_COLON] = ACTIONS(4887), + [anon_sym_COMMA] = ACTIONS(4887), + [anon_sym_RBRACK] = ACTIONS(4887), + [anon_sym_LPAREN] = ACTIONS(4887), + [anon_sym_RPAREN] = ACTIONS(4887), + [anon_sym_LBRACE] = ACTIONS(4887), + [anon_sym_RBRACE] = ACTIONS(4887), + [anon_sym_LT] = ACTIONS(4889), + [anon_sym_GT] = ACTIONS(4889), + [anon_sym_in] = ACTIONS(4889), + [anon_sym_QMARK] = ACTIONS(4889), + [anon_sym_BANG] = ACTIONS(4889), + [anon_sym_PLUS_PLUS] = ACTIONS(4887), + [anon_sym_DASH_DASH] = ACTIONS(4887), + [anon_sym_PLUS] = ACTIONS(4889), + [anon_sym_DASH] = ACTIONS(4889), + [anon_sym_STAR] = ACTIONS(4887), + [anon_sym_SLASH] = ACTIONS(4889), + [anon_sym_PERCENT] = ACTIONS(4887), + [anon_sym_CARET] = ACTIONS(4887), + [anon_sym_PIPE] = ACTIONS(4889), + [anon_sym_AMP] = ACTIONS(4889), + [anon_sym_LT_LT] = ACTIONS(4887), + [anon_sym_GT_GT] = ACTIONS(4889), + [anon_sym_GT_GT_GT] = ACTIONS(4887), + [anon_sym_EQ_EQ] = ACTIONS(4887), + [anon_sym_BANG_EQ] = ACTIONS(4887), + [anon_sym_GT_EQ] = ACTIONS(4887), + [anon_sym_LT_EQ] = ACTIONS(4887), + [anon_sym_DOT] = ACTIONS(4889), + [anon_sym_EQ_GT] = ACTIONS(4887), + [anon_sym_switch] = ACTIONS(4887), + [anon_sym_when] = ACTIONS(4887), + [anon_sym_DOT_DOT] = ACTIONS(4887), + [anon_sym_and] = ACTIONS(4887), + [anon_sym_or] = ACTIONS(4887), + [anon_sym_AMP_AMP] = ACTIONS(4887), + [anon_sym_PIPE_PIPE] = ACTIONS(4887), + [anon_sym_QMARK_QMARK] = ACTIONS(4887), + [anon_sym_into] = ACTIONS(4887), + [anon_sym_on] = ACTIONS(4887), + [anon_sym_equals] = ACTIONS(4887), + [anon_sym_by] = ACTIONS(4887), + [anon_sym_as] = ACTIONS(4887), + [anon_sym_is] = ACTIONS(4887), + [anon_sym_DASH_GT] = ACTIONS(4887), + [anon_sym_with] = ACTIONS(4887), + [aux_sym_preproc_if_token3] = ACTIONS(4887), + [aux_sym_preproc_else_token1] = ACTIONS(4887), + [aux_sym_preproc_elif_token1] = ACTIONS(4887), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -483645,10 +483139,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(3719), }, [3176] = { - [sym_type_argument_list] = STATE(3247), [sym_preproc_region] = STATE(3176), [sym_preproc_endregion] = STATE(3176), [sym_preproc_line] = STATE(3176), @@ -483658,57 +483150,58 @@ 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(3662), - [anon_sym_LBRACK] = ACTIONS(3662), - [anon_sym_COLON] = ACTIONS(3662), - [anon_sym_COMMA] = ACTIONS(3662), - [anon_sym_RBRACK] = ACTIONS(3662), - [anon_sym_LPAREN] = ACTIONS(3662), - [anon_sym_RPAREN] = ACTIONS(3662), - [anon_sym_LBRACE] = ACTIONS(3662), - [anon_sym_RBRACE] = ACTIONS(3662), - [anon_sym_LT] = ACTIONS(5312), - [anon_sym_GT] = ACTIONS(3660), - [anon_sym_in] = ACTIONS(3662), - [anon_sym_QMARK] = ACTIONS(3660), - [anon_sym_BANG] = ACTIONS(3660), - [anon_sym_PLUS_PLUS] = ACTIONS(3662), - [anon_sym_DASH_DASH] = ACTIONS(3662), - [anon_sym_PLUS] = ACTIONS(3660), - [anon_sym_DASH] = ACTIONS(3660), - [anon_sym_STAR] = ACTIONS(3662), - [anon_sym_SLASH] = ACTIONS(3660), - [anon_sym_PERCENT] = ACTIONS(3662), - [anon_sym_CARET] = ACTIONS(3662), - [anon_sym_PIPE] = ACTIONS(3660), - [anon_sym_AMP] = ACTIONS(3660), - [anon_sym_LT_LT] = ACTIONS(3662), - [anon_sym_GT_GT] = ACTIONS(3660), - [anon_sym_GT_GT_GT] = ACTIONS(3662), - [anon_sym_EQ_EQ] = ACTIONS(3662), - [anon_sym_BANG_EQ] = ACTIONS(3662), - [anon_sym_GT_EQ] = ACTIONS(3662), - [anon_sym_LT_EQ] = ACTIONS(3662), - [anon_sym_DOT] = ACTIONS(3660), - [anon_sym_EQ_GT] = ACTIONS(3662), - [anon_sym_switch] = ACTIONS(3662), - [anon_sym_when] = ACTIONS(3662), - [anon_sym_DOT_DOT] = ACTIONS(3662), - [anon_sym_and] = ACTIONS(3662), - [anon_sym_or] = ACTIONS(3662), - [anon_sym_AMP_AMP] = ACTIONS(3662), - [anon_sym_PIPE_PIPE] = ACTIONS(3662), - [anon_sym_QMARK_QMARK] = ACTIONS(3662), - [anon_sym_on] = ACTIONS(3662), - [anon_sym_equals] = ACTIONS(3662), - [anon_sym_by] = ACTIONS(3662), - [anon_sym_as] = ACTIONS(3662), - [anon_sym_is] = ACTIONS(3662), - [anon_sym_DASH_GT] = ACTIONS(3662), - [anon_sym_with] = ACTIONS(3662), - [aux_sym_preproc_if_token3] = ACTIONS(3662), - [aux_sym_preproc_else_token1] = ACTIONS(3662), - [aux_sym_preproc_elif_token1] = ACTIONS(3662), + [anon_sym_SEMI] = ACTIONS(4891), + [anon_sym_LBRACK] = ACTIONS(4891), + [anon_sym_COLON] = ACTIONS(4891), + [anon_sym_COMMA] = ACTIONS(4891), + [anon_sym_RBRACK] = ACTIONS(4891), + [anon_sym_LPAREN] = ACTIONS(4891), + [anon_sym_RPAREN] = ACTIONS(4891), + [anon_sym_RBRACE] = ACTIONS(4891), + [anon_sym_LT] = ACTIONS(4893), + [anon_sym_GT] = ACTIONS(4893), + [anon_sym_in] = ACTIONS(4893), + [anon_sym_QMARK] = ACTIONS(4893), + [anon_sym_BANG] = ACTIONS(4893), + [anon_sym_PLUS_PLUS] = ACTIONS(4891), + [anon_sym_DASH_DASH] = ACTIONS(4891), + [anon_sym_PLUS] = ACTIONS(4893), + [anon_sym_DASH] = ACTIONS(4893), + [anon_sym_STAR] = ACTIONS(4891), + [anon_sym_SLASH] = ACTIONS(4893), + [anon_sym_PERCENT] = ACTIONS(4891), + [anon_sym_CARET] = ACTIONS(4891), + [anon_sym_PIPE] = ACTIONS(4893), + [anon_sym_AMP] = ACTIONS(4893), + [anon_sym_LT_LT] = ACTIONS(4891), + [anon_sym_GT_GT] = ACTIONS(4893), + [anon_sym_GT_GT_GT] = ACTIONS(4891), + [anon_sym_EQ_EQ] = ACTIONS(4891), + [anon_sym_BANG_EQ] = ACTIONS(4891), + [anon_sym_GT_EQ] = ACTIONS(4891), + [anon_sym_LT_EQ] = ACTIONS(4891), + [anon_sym_DOT] = ACTIONS(4893), + [anon_sym_EQ_GT] = ACTIONS(4891), + [anon_sym_switch] = ACTIONS(4891), + [anon_sym_when] = ACTIONS(4891), + [anon_sym_DOT_DOT] = ACTIONS(4891), + [anon_sym_and] = ACTIONS(4891), + [anon_sym_or] = ACTIONS(4891), + [anon_sym_AMP_AMP] = ACTIONS(4891), + [anon_sym_PIPE_PIPE] = ACTIONS(4891), + [anon_sym_QMARK_QMARK] = ACTIONS(4891), + [anon_sym_into] = ACTIONS(4891), + [anon_sym_on] = ACTIONS(4891), + [anon_sym_equals] = ACTIONS(4891), + [anon_sym_by] = ACTIONS(4891), + [anon_sym_as] = ACTIONS(4891), + [anon_sym_is] = ACTIONS(4891), + [anon_sym_DASH_GT] = ACTIONS(4891), + [anon_sym_with] = ACTIONS(4891), + [sym_string_literal_encoding] = ACTIONS(5282), + [aux_sym_preproc_if_token3] = ACTIONS(4891), + [aux_sym_preproc_else_token1] = ACTIONS(4891), + [aux_sym_preproc_elif_token1] = ACTIONS(4891), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -483721,6 +483214,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3177] = { + [sym_type_argument_list] = STATE(3242), [sym_preproc_region] = STATE(3177), [sym_preproc_endregion] = STATE(3177), [sym_preproc_line] = STATE(3177), @@ -483730,58 +483224,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), - [anon_sym_SEMI] = ACTIONS(3652), - [anon_sym_LBRACK] = ACTIONS(3652), - [anon_sym_COLON] = ACTIONS(3652), - [anon_sym_COMMA] = ACTIONS(3652), - [anon_sym_RBRACK] = ACTIONS(3652), - [anon_sym_LPAREN] = ACTIONS(3652), - [anon_sym_RPAREN] = ACTIONS(3652), - [anon_sym_LBRACE] = ACTIONS(3652), - [anon_sym_RBRACE] = ACTIONS(3652), - [anon_sym_LT] = ACTIONS(3650), - [anon_sym_GT] = ACTIONS(3650), - [anon_sym_in] = ACTIONS(3650), - [anon_sym_QMARK] = ACTIONS(3650), - [anon_sym_BANG] = ACTIONS(3650), - [anon_sym_PLUS_PLUS] = ACTIONS(3652), - [anon_sym_DASH_DASH] = ACTIONS(3652), - [anon_sym_PLUS] = ACTIONS(3650), - [anon_sym_DASH] = ACTIONS(3650), - [anon_sym_STAR] = ACTIONS(3652), - [anon_sym_SLASH] = ACTIONS(3650), - [anon_sym_PERCENT] = ACTIONS(3652), - [anon_sym_CARET] = ACTIONS(3652), - [anon_sym_PIPE] = ACTIONS(3650), - [anon_sym_AMP] = ACTIONS(3650), - [anon_sym_LT_LT] = ACTIONS(3652), - [anon_sym_GT_GT] = ACTIONS(3650), - [anon_sym_GT_GT_GT] = ACTIONS(3652), - [anon_sym_EQ_EQ] = ACTIONS(3652), - [anon_sym_BANG_EQ] = ACTIONS(3652), - [anon_sym_GT_EQ] = ACTIONS(3652), - [anon_sym_LT_EQ] = ACTIONS(3652), - [anon_sym_DOT] = ACTIONS(3650), - [anon_sym_EQ_GT] = ACTIONS(3652), - [anon_sym_switch] = ACTIONS(3652), - [anon_sym_when] = ACTIONS(3652), - [anon_sym_DOT_DOT] = ACTIONS(3652), - [anon_sym_and] = ACTIONS(3652), - [anon_sym_or] = ACTIONS(3652), - [anon_sym_AMP_AMP] = ACTIONS(3652), - [anon_sym_PIPE_PIPE] = ACTIONS(3652), - [anon_sym_QMARK_QMARK] = ACTIONS(3652), - [anon_sym_into] = ACTIONS(3652), - [anon_sym_on] = ACTIONS(3652), - [anon_sym_equals] = ACTIONS(3652), - [anon_sym_by] = ACTIONS(3652), - [anon_sym_as] = ACTIONS(3652), - [anon_sym_is] = ACTIONS(3652), - [anon_sym_DASH_GT] = ACTIONS(3652), - [anon_sym_with] = ACTIONS(3652), - [aux_sym_preproc_if_token3] = ACTIONS(3652), - [aux_sym_preproc_else_token1] = ACTIONS(3652), - [aux_sym_preproc_elif_token1] = ACTIONS(3652), + [anon_sym_SEMI] = ACTIONS(3640), + [anon_sym_LBRACK] = ACTIONS(3640), + [anon_sym_COLON] = ACTIONS(3638), + [anon_sym_COMMA] = ACTIONS(3640), + [anon_sym_RBRACK] = ACTIONS(3640), + [anon_sym_LPAREN] = ACTIONS(3640), + [anon_sym_RPAREN] = ACTIONS(3640), + [anon_sym_LBRACE] = ACTIONS(3640), + [anon_sym_RBRACE] = ACTIONS(3640), + [anon_sym_LT] = ACTIONS(5274), + [anon_sym_GT] = ACTIONS(3638), + [anon_sym_QMARK] = ACTIONS(3638), + [anon_sym_BANG] = ACTIONS(3638), + [anon_sym_PLUS_PLUS] = ACTIONS(3640), + [anon_sym_DASH_DASH] = ACTIONS(3640), + [anon_sym_PLUS] = ACTIONS(3638), + [anon_sym_DASH] = ACTIONS(3638), + [anon_sym_STAR] = ACTIONS(3640), + [anon_sym_SLASH] = ACTIONS(3638), + [anon_sym_PERCENT] = ACTIONS(3640), + [anon_sym_CARET] = ACTIONS(3640), + [anon_sym_PIPE] = ACTIONS(3638), + [anon_sym_AMP] = ACTIONS(3638), + [anon_sym_LT_LT] = ACTIONS(3640), + [anon_sym_GT_GT] = ACTIONS(3638), + [anon_sym_GT_GT_GT] = ACTIONS(3640), + [anon_sym_EQ_EQ] = ACTIONS(3640), + [anon_sym_BANG_EQ] = ACTIONS(3640), + [anon_sym_GT_EQ] = ACTIONS(3640), + [anon_sym_LT_EQ] = ACTIONS(3640), + [anon_sym_DOT] = ACTIONS(3638), + [anon_sym_EQ_GT] = ACTIONS(3640), + [anon_sym_COLON_COLON] = ACTIONS(5284), + [anon_sym_switch] = ACTIONS(3640), + [anon_sym_when] = ACTIONS(3640), + [anon_sym_DOT_DOT] = ACTIONS(3640), + [anon_sym_and] = ACTIONS(3640), + [anon_sym_or] = ACTIONS(3640), + [anon_sym_AMP_AMP] = ACTIONS(3640), + [anon_sym_PIPE_PIPE] = ACTIONS(3640), + [anon_sym_QMARK_QMARK] = ACTIONS(3640), + [anon_sym_on] = ACTIONS(3640), + [anon_sym_equals] = ACTIONS(3640), + [anon_sym_by] = ACTIONS(3640), + [anon_sym_as] = ACTIONS(3640), + [anon_sym_is] = ACTIONS(3640), + [anon_sym_DASH_GT] = ACTIONS(3640), + [anon_sym_with] = ACTIONS(3640), + [aux_sym_preproc_if_token3] = ACTIONS(3640), + [aux_sym_preproc_else_token1] = ACTIONS(3640), + [aux_sym_preproc_elif_token1] = ACTIONS(3640), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -483803,58 +483296,57 @@ 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_SEMI] = ACTIONS(3977), - [anon_sym_LBRACK] = ACTIONS(3977), - [anon_sym_COLON] = ACTIONS(3977), - [anon_sym_COMMA] = ACTIONS(3977), - [anon_sym_RBRACK] = ACTIONS(3977), - [anon_sym_LPAREN] = ACTIONS(3977), - [anon_sym_RPAREN] = ACTIONS(3977), - [anon_sym_LBRACE] = ACTIONS(3977), - [anon_sym_RBRACE] = ACTIONS(3977), - [anon_sym_LT] = ACTIONS(3975), - [anon_sym_GT] = ACTIONS(3975), - [anon_sym_in] = ACTIONS(3975), - [anon_sym_QMARK] = ACTIONS(3975), - [anon_sym_BANG] = ACTIONS(3975), - [anon_sym_PLUS_PLUS] = ACTIONS(3977), - [anon_sym_DASH_DASH] = ACTIONS(3977), - [anon_sym_PLUS] = ACTIONS(3975), - [anon_sym_DASH] = ACTIONS(3975), - [anon_sym_STAR] = ACTIONS(3977), - [anon_sym_SLASH] = ACTIONS(3975), - [anon_sym_PERCENT] = ACTIONS(3977), - [anon_sym_CARET] = ACTIONS(3977), - [anon_sym_PIPE] = ACTIONS(3975), - [anon_sym_AMP] = ACTIONS(3975), - [anon_sym_LT_LT] = ACTIONS(3977), - [anon_sym_GT_GT] = ACTIONS(3975), - [anon_sym_GT_GT_GT] = ACTIONS(3977), - [anon_sym_EQ_EQ] = ACTIONS(3977), - [anon_sym_BANG_EQ] = ACTIONS(3977), - [anon_sym_GT_EQ] = ACTIONS(3977), - [anon_sym_LT_EQ] = ACTIONS(3977), - [anon_sym_DOT] = ACTIONS(3975), - [anon_sym_EQ_GT] = ACTIONS(3977), - [anon_sym_switch] = ACTIONS(3977), - [anon_sym_when] = ACTIONS(3977), - [anon_sym_DOT_DOT] = ACTIONS(3977), - [anon_sym_and] = ACTIONS(3977), - [anon_sym_or] = ACTIONS(3977), - [anon_sym_AMP_AMP] = ACTIONS(3977), - [anon_sym_PIPE_PIPE] = ACTIONS(3977), - [anon_sym_QMARK_QMARK] = ACTIONS(3977), - [anon_sym_into] = ACTIONS(3977), - [anon_sym_on] = ACTIONS(3977), - [anon_sym_equals] = ACTIONS(3977), - [anon_sym_by] = ACTIONS(3977), - [anon_sym_as] = ACTIONS(3977), - [anon_sym_is] = ACTIONS(3977), - [anon_sym_DASH_GT] = ACTIONS(3977), - [anon_sym_with] = ACTIONS(3977), - [aux_sym_preproc_if_token3] = ACTIONS(3977), - [aux_sym_preproc_else_token1] = ACTIONS(3977), - [aux_sym_preproc_elif_token1] = ACTIONS(3977), + [anon_sym_EQ] = ACTIONS(4142), + [anon_sym_LBRACK] = ACTIONS(4140), + [anon_sym_COLON] = ACTIONS(4140), + [anon_sym_COMMA] = ACTIONS(4140), + [anon_sym_LPAREN] = ACTIONS(4140), + [anon_sym_LT] = ACTIONS(4142), + [anon_sym_GT] = ACTIONS(4142), + [anon_sym_QMARK] = ACTIONS(4142), + [anon_sym_BANG] = ACTIONS(4142), + [anon_sym_PLUS_PLUS] = ACTIONS(4140), + [anon_sym_DASH_DASH] = ACTIONS(4140), + [anon_sym_PLUS] = ACTIONS(4142), + [anon_sym_DASH] = ACTIONS(4142), + [anon_sym_STAR] = ACTIONS(4142), + [anon_sym_SLASH] = ACTIONS(4142), + [anon_sym_PERCENT] = ACTIONS(4142), + [anon_sym_CARET] = ACTIONS(4142), + [anon_sym_PIPE] = ACTIONS(4142), + [anon_sym_AMP] = ACTIONS(4142), + [anon_sym_LT_LT] = ACTIONS(4142), + [anon_sym_GT_GT] = ACTIONS(4142), + [anon_sym_GT_GT_GT] = ACTIONS(4142), + [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(4142), + [anon_sym_switch] = ACTIONS(4140), + [anon_sym_DOT_DOT] = ACTIONS(4140), + [anon_sym_and] = ACTIONS(4140), + [anon_sym_or] = ACTIONS(4140), + [anon_sym_PLUS_EQ] = ACTIONS(4140), + [anon_sym_DASH_EQ] = ACTIONS(4140), + [anon_sym_STAR_EQ] = ACTIONS(4140), + [anon_sym_SLASH_EQ] = ACTIONS(4140), + [anon_sym_PERCENT_EQ] = ACTIONS(4140), + [anon_sym_AMP_EQ] = ACTIONS(4140), + [anon_sym_CARET_EQ] = ACTIONS(4140), + [anon_sym_PIPE_EQ] = ACTIONS(4140), + [anon_sym_LT_LT_EQ] = ACTIONS(4140), + [anon_sym_GT_GT_EQ] = ACTIONS(4140), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(4140), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(4140), + [anon_sym_AMP_AMP] = ACTIONS(4140), + [anon_sym_PIPE_PIPE] = ACTIONS(4140), + [anon_sym_QMARK_QMARK] = ACTIONS(4142), + [anon_sym_into] = ACTIONS(4140), + [anon_sym_as] = ACTIONS(4140), + [anon_sym_is] = ACTIONS(4140), + [anon_sym_DASH_GT] = ACTIONS(4140), + [anon_sym_with] = ACTIONS(4140), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -483865,6 +483357,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(4140), }, [3179] = { [sym_preproc_region] = STATE(3179), @@ -483876,58 +483369,57 @@ 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_SEMI] = ACTIONS(4892), - [anon_sym_LBRACK] = ACTIONS(4892), - [anon_sym_COLON] = ACTIONS(4892), - [anon_sym_COMMA] = ACTIONS(4892), - [anon_sym_RBRACK] = ACTIONS(4892), - [anon_sym_LPAREN] = ACTIONS(4892), - [anon_sym_RPAREN] = ACTIONS(4892), - [anon_sym_RBRACE] = ACTIONS(4892), - [anon_sym_LT] = ACTIONS(4894), - [anon_sym_GT] = ACTIONS(4894), - [anon_sym_in] = ACTIONS(4892), - [anon_sym_QMARK] = ACTIONS(4894), - [anon_sym_BANG] = ACTIONS(4894), - [anon_sym_PLUS_PLUS] = ACTIONS(4892), - [anon_sym_DASH_DASH] = ACTIONS(4892), - [anon_sym_PLUS] = ACTIONS(4894), - [anon_sym_DASH] = ACTIONS(4894), - [anon_sym_STAR] = ACTIONS(4892), - [anon_sym_SLASH] = ACTIONS(4894), - [anon_sym_PERCENT] = ACTIONS(4892), - [anon_sym_CARET] = ACTIONS(4892), - [anon_sym_PIPE] = ACTIONS(4894), - [anon_sym_AMP] = ACTIONS(4894), - [anon_sym_LT_LT] = ACTIONS(4892), - [anon_sym_GT_GT] = ACTIONS(4894), - [anon_sym_GT_GT_GT] = ACTIONS(4892), - [anon_sym_EQ_EQ] = ACTIONS(4892), - [anon_sym_BANG_EQ] = ACTIONS(4892), - [anon_sym_GT_EQ] = ACTIONS(4892), - [anon_sym_LT_EQ] = ACTIONS(4892), - [anon_sym_DOT] = ACTIONS(4894), - [anon_sym_EQ_GT] = ACTIONS(4892), - [anon_sym_switch] = ACTIONS(4892), - [anon_sym_when] = ACTIONS(4892), - [anon_sym_DOT_DOT] = ACTIONS(4892), - [anon_sym_and] = ACTIONS(4892), - [anon_sym_or] = ACTIONS(4892), - [anon_sym_AMP_AMP] = ACTIONS(4892), - [anon_sym_PIPE_PIPE] = ACTIONS(4892), - [anon_sym_QMARK_QMARK] = ACTIONS(4892), - [anon_sym_on] = ACTIONS(4892), - [anon_sym_equals] = ACTIONS(4892), - [anon_sym_by] = ACTIONS(4892), - [anon_sym_as] = ACTIONS(4892), - [anon_sym_is] = ACTIONS(4892), - [anon_sym_DASH_GT] = ACTIONS(4892), - [anon_sym_with] = ACTIONS(4892), - [anon_sym_DQUOTE] = ACTIONS(4892), - [sym_string_literal_encoding] = ACTIONS(5317), - [aux_sym_preproc_if_token3] = ACTIONS(4892), - [aux_sym_preproc_else_token1] = ACTIONS(4892), - [aux_sym_preproc_elif_token1] = ACTIONS(4892), + [anon_sym_EQ] = ACTIONS(4146), + [anon_sym_LBRACK] = ACTIONS(4144), + [anon_sym_COLON] = ACTIONS(4144), + [anon_sym_COMMA] = ACTIONS(4144), + [anon_sym_LPAREN] = ACTIONS(4144), + [anon_sym_LT] = ACTIONS(4146), + [anon_sym_GT] = ACTIONS(4146), + [anon_sym_QMARK] = ACTIONS(4146), + [anon_sym_BANG] = ACTIONS(4146), + [anon_sym_PLUS_PLUS] = ACTIONS(4144), + [anon_sym_DASH_DASH] = ACTIONS(4144), + [anon_sym_PLUS] = ACTIONS(4146), + [anon_sym_DASH] = ACTIONS(4146), + [anon_sym_STAR] = ACTIONS(4146), + [anon_sym_SLASH] = ACTIONS(4146), + [anon_sym_PERCENT] = ACTIONS(4146), + [anon_sym_CARET] = ACTIONS(4146), + [anon_sym_PIPE] = ACTIONS(4146), + [anon_sym_AMP] = ACTIONS(4146), + [anon_sym_LT_LT] = ACTIONS(4146), + [anon_sym_GT_GT] = ACTIONS(4146), + [anon_sym_GT_GT_GT] = ACTIONS(4146), + [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(4146), + [anon_sym_switch] = ACTIONS(4144), + [anon_sym_DOT_DOT] = ACTIONS(4144), + [anon_sym_and] = ACTIONS(4144), + [anon_sym_or] = ACTIONS(4144), + [anon_sym_PLUS_EQ] = ACTIONS(4144), + [anon_sym_DASH_EQ] = ACTIONS(4144), + [anon_sym_STAR_EQ] = ACTIONS(4144), + [anon_sym_SLASH_EQ] = ACTIONS(4144), + [anon_sym_PERCENT_EQ] = ACTIONS(4144), + [anon_sym_AMP_EQ] = ACTIONS(4144), + [anon_sym_CARET_EQ] = ACTIONS(4144), + [anon_sym_PIPE_EQ] = ACTIONS(4144), + [anon_sym_LT_LT_EQ] = ACTIONS(4144), + [anon_sym_GT_GT_EQ] = ACTIONS(4144), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(4144), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(4144), + [anon_sym_AMP_AMP] = ACTIONS(4144), + [anon_sym_PIPE_PIPE] = ACTIONS(4144), + [anon_sym_QMARK_QMARK] = ACTIONS(4146), + [anon_sym_into] = 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_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -483938,6 +483430,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(4144), }, [3180] = { [sym_preproc_region] = STATE(3180), @@ -483949,68 +483442,68 @@ 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_EQ] = ACTIONS(3654), - [anon_sym_LBRACK] = ACTIONS(3656), - [anon_sym_COLON] = ACTIONS(3656), - [anon_sym_COMMA] = ACTIONS(3656), - [anon_sym_LPAREN] = ACTIONS(3656), - [anon_sym_LT] = ACTIONS(3654), - [anon_sym_GT] = ACTIONS(3654), - [anon_sym_QMARK] = ACTIONS(3654), - [anon_sym_BANG] = ACTIONS(3654), - [anon_sym_PLUS_PLUS] = ACTIONS(3656), - [anon_sym_DASH_DASH] = ACTIONS(3656), - [anon_sym_PLUS] = ACTIONS(3654), - [anon_sym_DASH] = ACTIONS(3654), - [anon_sym_STAR] = ACTIONS(3654), - [anon_sym_SLASH] = ACTIONS(3654), - [anon_sym_PERCENT] = ACTIONS(3654), - [anon_sym_CARET] = ACTIONS(3654), - [anon_sym_PIPE] = ACTIONS(3654), - [anon_sym_AMP] = ACTIONS(3654), - [anon_sym_LT_LT] = ACTIONS(3654), - [anon_sym_GT_GT] = ACTIONS(3654), - [anon_sym_GT_GT_GT] = ACTIONS(3654), - [anon_sym_EQ_EQ] = ACTIONS(3656), - [anon_sym_BANG_EQ] = ACTIONS(3656), - [anon_sym_GT_EQ] = ACTIONS(3656), - [anon_sym_LT_EQ] = ACTIONS(3656), - [anon_sym_DOT] = ACTIONS(3654), - [anon_sym_switch] = ACTIONS(3656), - [anon_sym_DOT_DOT] = ACTIONS(3656), - [anon_sym_and] = ACTIONS(3656), - [anon_sym_or] = ACTIONS(3656), - [anon_sym_PLUS_EQ] = ACTIONS(3656), - [anon_sym_DASH_EQ] = ACTIONS(3656), - [anon_sym_STAR_EQ] = ACTIONS(3656), - [anon_sym_SLASH_EQ] = ACTIONS(3656), - [anon_sym_PERCENT_EQ] = ACTIONS(3656), - [anon_sym_AMP_EQ] = ACTIONS(3656), - [anon_sym_CARET_EQ] = ACTIONS(3656), - [anon_sym_PIPE_EQ] = ACTIONS(3656), - [anon_sym_LT_LT_EQ] = ACTIONS(3656), - [anon_sym_GT_GT_EQ] = ACTIONS(3656), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3656), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3656), - [anon_sym_AMP_AMP] = ACTIONS(3656), - [anon_sym_PIPE_PIPE] = ACTIONS(3656), - [anon_sym_QMARK_QMARK] = ACTIONS(3654), - [anon_sym_into] = ACTIONS(3656), - [anon_sym_as] = ACTIONS(3656), - [anon_sym_is] = ACTIONS(3656), - [anon_sym_DASH_GT] = ACTIONS(3656), - [anon_sym_with] = ACTIONS(3656), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_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(3656), + [anon_sym_EQ] = ACTIONS(4118), + [anon_sym_LBRACK] = ACTIONS(4152), + [anon_sym_COLON] = ACTIONS(4152), + [anon_sym_COMMA] = ACTIONS(4152), + [anon_sym_LPAREN] = ACTIONS(4152), + [anon_sym_LT] = ACTIONS(4154), + [anon_sym_GT] = ACTIONS(4154), + [anon_sym_QMARK] = ACTIONS(4154), + [anon_sym_BANG] = ACTIONS(4154), + [anon_sym_PLUS_PLUS] = ACTIONS(4152), + [anon_sym_DASH_DASH] = ACTIONS(4152), + [anon_sym_PLUS] = ACTIONS(4154), + [anon_sym_DASH] = ACTIONS(4154), + [anon_sym_STAR] = ACTIONS(4154), + [anon_sym_SLASH] = ACTIONS(4154), + [anon_sym_PERCENT] = ACTIONS(4154), + [anon_sym_CARET] = ACTIONS(4154), + [anon_sym_PIPE] = ACTIONS(4154), + [anon_sym_AMP] = ACTIONS(4154), + [anon_sym_LT_LT] = ACTIONS(4154), + [anon_sym_GT_GT] = ACTIONS(4154), + [anon_sym_GT_GT_GT] = ACTIONS(4154), + [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(4154), + [anon_sym_switch] = ACTIONS(4152), + [anon_sym_DOT_DOT] = ACTIONS(4152), + [anon_sym_and] = ACTIONS(4152), + [anon_sym_or] = ACTIONS(4152), + [anon_sym_PLUS_EQ] = ACTIONS(4116), + [anon_sym_DASH_EQ] = ACTIONS(4116), + [anon_sym_STAR_EQ] = ACTIONS(4116), + [anon_sym_SLASH_EQ] = ACTIONS(4116), + [anon_sym_PERCENT_EQ] = ACTIONS(4116), + [anon_sym_AMP_EQ] = ACTIONS(4116), + [anon_sym_CARET_EQ] = ACTIONS(4116), + [anon_sym_PIPE_EQ] = ACTIONS(4116), + [anon_sym_LT_LT_EQ] = ACTIONS(4116), + [anon_sym_GT_GT_EQ] = ACTIONS(4116), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(4116), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(4116), + [anon_sym_AMP_AMP] = ACTIONS(4152), + [anon_sym_PIPE_PIPE] = ACTIONS(4152), + [anon_sym_QMARK_QMARK] = ACTIONS(4154), + [anon_sym_into] = 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_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_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), }, [3181] = { [sym_preproc_region] = STATE(3181), @@ -484022,58 +483515,58 @@ 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_SEMI] = ACTIONS(4010), - [anon_sym_LBRACK] = ACTIONS(4010), - [anon_sym_COLON] = ACTIONS(4010), - [anon_sym_COMMA] = ACTIONS(4010), - [anon_sym_RBRACK] = ACTIONS(4010), - [anon_sym_LPAREN] = ACTIONS(4010), - [anon_sym_RPAREN] = ACTIONS(4010), - [anon_sym_LBRACE] = ACTIONS(4010), - [anon_sym_RBRACE] = ACTIONS(4010), - [anon_sym_LT] = ACTIONS(4008), - [anon_sym_GT] = ACTIONS(4008), - [anon_sym_in] = ACTIONS(4008), - [anon_sym_QMARK] = ACTIONS(4008), - [anon_sym_BANG] = ACTIONS(4008), - [anon_sym_PLUS_PLUS] = ACTIONS(4010), - [anon_sym_DASH_DASH] = ACTIONS(4010), - [anon_sym_PLUS] = ACTIONS(4008), - [anon_sym_DASH] = ACTIONS(4008), - [anon_sym_STAR] = ACTIONS(4010), - [anon_sym_SLASH] = ACTIONS(4008), - [anon_sym_PERCENT] = ACTIONS(4010), - [anon_sym_CARET] = ACTIONS(4010), - [anon_sym_PIPE] = ACTIONS(4008), - [anon_sym_AMP] = ACTIONS(4008), - [anon_sym_LT_LT] = ACTIONS(4010), - [anon_sym_GT_GT] = ACTIONS(4008), - [anon_sym_GT_GT_GT] = ACTIONS(4010), - [anon_sym_EQ_EQ] = ACTIONS(4010), - [anon_sym_BANG_EQ] = ACTIONS(4010), - [anon_sym_GT_EQ] = ACTIONS(4010), - [anon_sym_LT_EQ] = ACTIONS(4010), - [anon_sym_DOT] = ACTIONS(4008), - [anon_sym_EQ_GT] = ACTIONS(4010), - [anon_sym_switch] = ACTIONS(4010), - [anon_sym_when] = ACTIONS(4010), - [anon_sym_DOT_DOT] = ACTIONS(4010), - [anon_sym_and] = ACTIONS(4010), - [anon_sym_or] = ACTIONS(4010), - [anon_sym_AMP_AMP] = ACTIONS(4010), - [anon_sym_PIPE_PIPE] = ACTIONS(4010), - [anon_sym_QMARK_QMARK] = ACTIONS(4010), - [anon_sym_into] = ACTIONS(4010), - [anon_sym_on] = ACTIONS(4010), - [anon_sym_equals] = ACTIONS(4010), - [anon_sym_by] = ACTIONS(4010), - [anon_sym_as] = ACTIONS(4010), - [anon_sym_is] = ACTIONS(4010), - [anon_sym_DASH_GT] = ACTIONS(4010), - [anon_sym_with] = ACTIONS(4010), - [aux_sym_preproc_if_token3] = ACTIONS(4010), - [aux_sym_preproc_else_token1] = ACTIONS(4010), - [aux_sym_preproc_elif_token1] = ACTIONS(4010), + [anon_sym_SEMI] = ACTIONS(4880), + [anon_sym_LBRACK] = ACTIONS(4880), + [anon_sym_COLON] = ACTIONS(4880), + [anon_sym_COMMA] = ACTIONS(4880), + [anon_sym_RBRACK] = ACTIONS(4880), + [anon_sym_LPAREN] = ACTIONS(4880), + [anon_sym_RPAREN] = ACTIONS(4880), + [anon_sym_LBRACE] = ACTIONS(4880), + [anon_sym_RBRACE] = ACTIONS(4880), + [anon_sym_LT] = ACTIONS(4882), + [anon_sym_GT] = ACTIONS(4882), + [anon_sym_in] = ACTIONS(4880), + [anon_sym_where] = ACTIONS(4880), + [anon_sym_QMARK] = ACTIONS(4882), + [anon_sym_BANG] = ACTIONS(4882), + [anon_sym_PLUS_PLUS] = ACTIONS(4880), + [anon_sym_DASH_DASH] = ACTIONS(4880), + [anon_sym_PLUS] = ACTIONS(4882), + [anon_sym_DASH] = ACTIONS(4882), + [anon_sym_STAR] = ACTIONS(4880), + [anon_sym_SLASH] = ACTIONS(4882), + [anon_sym_PERCENT] = ACTIONS(4880), + [anon_sym_CARET] = ACTIONS(4880), + [anon_sym_PIPE] = ACTIONS(4882), + [anon_sym_AMP] = ACTIONS(4882), + [anon_sym_LT_LT] = ACTIONS(4880), + [anon_sym_GT_GT] = ACTIONS(4882), + [anon_sym_GT_GT_GT] = ACTIONS(4880), + [anon_sym_EQ_EQ] = ACTIONS(4880), + [anon_sym_BANG_EQ] = ACTIONS(4880), + [anon_sym_GT_EQ] = ACTIONS(4880), + [anon_sym_LT_EQ] = ACTIONS(4880), + [anon_sym_DOT] = ACTIONS(4882), + [anon_sym_EQ_GT] = ACTIONS(4880), + [anon_sym_switch] = ACTIONS(4880), + [anon_sym_when] = ACTIONS(4880), + [anon_sym_DOT_DOT] = ACTIONS(4880), + [anon_sym_and] = ACTIONS(4880), + [anon_sym_or] = ACTIONS(4880), + [anon_sym_AMP_AMP] = ACTIONS(4880), + [anon_sym_PIPE_PIPE] = ACTIONS(4880), + [anon_sym_QMARK_QMARK] = ACTIONS(4880), + [anon_sym_on] = ACTIONS(4880), + [anon_sym_equals] = ACTIONS(4880), + [anon_sym_by] = ACTIONS(4880), + [anon_sym_as] = ACTIONS(4880), + [anon_sym_is] = ACTIONS(4880), + [anon_sym_DASH_GT] = ACTIONS(4880), + [anon_sym_with] = ACTIONS(4880), + [aux_sym_preproc_if_token3] = ACTIONS(4880), + [aux_sym_preproc_else_token1] = ACTIONS(4880), + [aux_sym_preproc_elif_token1] = ACTIONS(4880), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -484095,58 +483588,57 @@ 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(3981), - [anon_sym_LBRACK] = ACTIONS(3981), - [anon_sym_COLON] = ACTIONS(3981), - [anon_sym_COMMA] = ACTIONS(3981), - [anon_sym_RBRACK] = ACTIONS(3981), - [anon_sym_LPAREN] = ACTIONS(3981), - [anon_sym_RPAREN] = ACTIONS(3981), - [anon_sym_LBRACE] = ACTIONS(3981), - [anon_sym_RBRACE] = ACTIONS(3981), - [anon_sym_LT] = ACTIONS(3979), - [anon_sym_GT] = ACTIONS(3979), - [anon_sym_in] = ACTIONS(3979), - [anon_sym_QMARK] = ACTIONS(3979), - [anon_sym_BANG] = ACTIONS(3979), - [anon_sym_PLUS_PLUS] = ACTIONS(3981), - [anon_sym_DASH_DASH] = ACTIONS(3981), - [anon_sym_PLUS] = ACTIONS(3979), - [anon_sym_DASH] = ACTIONS(3979), - [anon_sym_STAR] = ACTIONS(3981), - [anon_sym_SLASH] = ACTIONS(3979), - [anon_sym_PERCENT] = ACTIONS(3981), - [anon_sym_CARET] = ACTIONS(3981), - [anon_sym_PIPE] = ACTIONS(3979), - [anon_sym_AMP] = ACTIONS(3979), - [anon_sym_LT_LT] = ACTIONS(3981), - [anon_sym_GT_GT] = ACTIONS(3979), - [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(3979), - [anon_sym_EQ_GT] = ACTIONS(3981), - [anon_sym_switch] = ACTIONS(3981), - [anon_sym_when] = ACTIONS(3981), - [anon_sym_DOT_DOT] = ACTIONS(3981), - [anon_sym_and] = ACTIONS(3981), - [anon_sym_or] = ACTIONS(3981), - [anon_sym_AMP_AMP] = ACTIONS(3981), - [anon_sym_PIPE_PIPE] = ACTIONS(3981), - [anon_sym_QMARK_QMARK] = ACTIONS(3981), - [anon_sym_into] = ACTIONS(3981), - [anon_sym_on] = ACTIONS(3981), - [anon_sym_equals] = ACTIONS(3981), - [anon_sym_by] = ACTIONS(3981), - [anon_sym_as] = ACTIONS(3981), - [anon_sym_is] = ACTIONS(3981), - [anon_sym_DASH_GT] = ACTIONS(3981), - [anon_sym_with] = ACTIONS(3981), - [aux_sym_preproc_if_token3] = ACTIONS(3981), - [aux_sym_preproc_else_token1] = ACTIONS(3981), - [aux_sym_preproc_elif_token1] = ACTIONS(3981), + [anon_sym_EQ] = ACTIONS(4118), + [anon_sym_LBRACK] = ACTIONS(4116), + [anon_sym_COLON] = ACTIONS(4116), + [anon_sym_COMMA] = ACTIONS(4116), + [anon_sym_LPAREN] = ACTIONS(4116), + [anon_sym_LT] = ACTIONS(4118), + [anon_sym_GT] = ACTIONS(4118), + [anon_sym_QMARK] = ACTIONS(4118), + [anon_sym_BANG] = ACTIONS(4118), + [anon_sym_PLUS_PLUS] = ACTIONS(4116), + [anon_sym_DASH_DASH] = ACTIONS(4116), + [anon_sym_PLUS] = ACTIONS(4118), + [anon_sym_DASH] = ACTIONS(4118), + [anon_sym_STAR] = ACTIONS(4118), + [anon_sym_SLASH] = ACTIONS(4118), + [anon_sym_PERCENT] = ACTIONS(4118), + [anon_sym_CARET] = ACTIONS(4118), + [anon_sym_PIPE] = ACTIONS(4118), + [anon_sym_AMP] = ACTIONS(4118), + [anon_sym_LT_LT] = ACTIONS(4118), + [anon_sym_GT_GT] = ACTIONS(4118), + [anon_sym_GT_GT_GT] = ACTIONS(4118), + [anon_sym_EQ_EQ] = ACTIONS(4116), + [anon_sym_BANG_EQ] = ACTIONS(4116), + [anon_sym_GT_EQ] = ACTIONS(4116), + [anon_sym_LT_EQ] = ACTIONS(4116), + [anon_sym_DOT] = ACTIONS(4118), + [anon_sym_switch] = ACTIONS(4116), + [anon_sym_DOT_DOT] = ACTIONS(4116), + [anon_sym_and] = ACTIONS(4116), + [anon_sym_or] = ACTIONS(4116), + [anon_sym_PLUS_EQ] = ACTIONS(4116), + [anon_sym_DASH_EQ] = ACTIONS(4116), + [anon_sym_STAR_EQ] = ACTIONS(4116), + [anon_sym_SLASH_EQ] = ACTIONS(4116), + [anon_sym_PERCENT_EQ] = ACTIONS(4116), + [anon_sym_AMP_EQ] = ACTIONS(4116), + [anon_sym_CARET_EQ] = ACTIONS(4116), + [anon_sym_PIPE_EQ] = ACTIONS(4116), + [anon_sym_LT_LT_EQ] = ACTIONS(4116), + [anon_sym_GT_GT_EQ] = ACTIONS(4116), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(4116), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(4116), + [anon_sym_AMP_AMP] = ACTIONS(4116), + [anon_sym_PIPE_PIPE] = ACTIONS(4116), + [anon_sym_QMARK_QMARK] = ACTIONS(4118), + [anon_sym_into] = ACTIONS(4116), + [anon_sym_as] = ACTIONS(4116), + [anon_sym_is] = ACTIONS(4116), + [anon_sym_DASH_GT] = ACTIONS(4116), + [anon_sym_with] = ACTIONS(4116), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -484157,6 +483649,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(4116), }, [3183] = { [sym_preproc_region] = STATE(3183), @@ -484168,58 +483661,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(4014), - [anon_sym_LBRACK] = ACTIONS(4014), - [anon_sym_COLON] = ACTIONS(4014), - [anon_sym_COMMA] = ACTIONS(4014), - [anon_sym_RBRACK] = ACTIONS(4014), - [anon_sym_LPAREN] = ACTIONS(4014), - [anon_sym_RPAREN] = ACTIONS(4014), - [anon_sym_LBRACE] = ACTIONS(4014), - [anon_sym_RBRACE] = ACTIONS(4014), - [anon_sym_LT] = ACTIONS(4012), - [anon_sym_GT] = ACTIONS(4012), - [anon_sym_in] = ACTIONS(4012), - [anon_sym_QMARK] = ACTIONS(4012), - [anon_sym_BANG] = ACTIONS(4012), - [anon_sym_PLUS_PLUS] = ACTIONS(4014), - [anon_sym_DASH_DASH] = ACTIONS(4014), - [anon_sym_PLUS] = ACTIONS(4012), - [anon_sym_DASH] = ACTIONS(4012), - [anon_sym_STAR] = ACTIONS(4014), - [anon_sym_SLASH] = ACTIONS(4012), - [anon_sym_PERCENT] = ACTIONS(4014), - [anon_sym_CARET] = ACTIONS(4014), - [anon_sym_PIPE] = ACTIONS(4012), - [anon_sym_AMP] = ACTIONS(4012), - [anon_sym_LT_LT] = ACTIONS(4014), - [anon_sym_GT_GT] = ACTIONS(4012), - [anon_sym_GT_GT_GT] = ACTIONS(4014), - [anon_sym_EQ_EQ] = ACTIONS(4014), - [anon_sym_BANG_EQ] = ACTIONS(4014), - [anon_sym_GT_EQ] = ACTIONS(4014), - [anon_sym_LT_EQ] = ACTIONS(4014), - [anon_sym_DOT] = ACTIONS(4012), - [anon_sym_EQ_GT] = ACTIONS(4014), - [anon_sym_switch] = ACTIONS(4014), - [anon_sym_when] = ACTIONS(4014), - [anon_sym_DOT_DOT] = ACTIONS(4014), - [anon_sym_and] = ACTIONS(4014), - [anon_sym_or] = ACTIONS(4014), - [anon_sym_AMP_AMP] = ACTIONS(4014), - [anon_sym_PIPE_PIPE] = ACTIONS(4014), - [anon_sym_QMARK_QMARK] = ACTIONS(4014), - [anon_sym_into] = ACTIONS(4014), - [anon_sym_on] = ACTIONS(4014), - [anon_sym_equals] = ACTIONS(4014), - [anon_sym_by] = ACTIONS(4014), - [anon_sym_as] = ACTIONS(4014), - [anon_sym_is] = ACTIONS(4014), - [anon_sym_DASH_GT] = ACTIONS(4014), - [anon_sym_with] = ACTIONS(4014), - [aux_sym_preproc_if_token3] = ACTIONS(4014), - [aux_sym_preproc_else_token1] = ACTIONS(4014), - [aux_sym_preproc_elif_token1] = ACTIONS(4014), + [anon_sym_SEMI] = ACTIONS(4891), + [anon_sym_LBRACK] = ACTIONS(4891), + [anon_sym_COLON] = ACTIONS(4891), + [anon_sym_COMMA] = ACTIONS(4891), + [anon_sym_RBRACK] = ACTIONS(4891), + [anon_sym_LPAREN] = ACTIONS(4891), + [anon_sym_RPAREN] = ACTIONS(4891), + [anon_sym_RBRACE] = ACTIONS(4891), + [anon_sym_LT] = ACTIONS(4893), + [anon_sym_GT] = ACTIONS(4893), + [anon_sym_in] = ACTIONS(4891), + [anon_sym_QMARK] = ACTIONS(4893), + [anon_sym_BANG] = ACTIONS(4893), + [anon_sym_PLUS_PLUS] = ACTIONS(4891), + [anon_sym_DASH_DASH] = ACTIONS(4891), + [anon_sym_PLUS] = ACTIONS(4893), + [anon_sym_DASH] = ACTIONS(4893), + [anon_sym_STAR] = ACTIONS(4891), + [anon_sym_SLASH] = ACTIONS(4893), + [anon_sym_PERCENT] = ACTIONS(4891), + [anon_sym_CARET] = ACTIONS(4891), + [anon_sym_PIPE] = ACTIONS(4893), + [anon_sym_AMP] = ACTIONS(4893), + [anon_sym_LT_LT] = ACTIONS(4891), + [anon_sym_GT_GT] = ACTIONS(4893), + [anon_sym_GT_GT_GT] = ACTIONS(4891), + [anon_sym_EQ_EQ] = ACTIONS(4891), + [anon_sym_BANG_EQ] = ACTIONS(4891), + [anon_sym_GT_EQ] = ACTIONS(4891), + [anon_sym_LT_EQ] = ACTIONS(4891), + [anon_sym_DOT] = ACTIONS(4893), + [anon_sym_EQ_GT] = ACTIONS(4891), + [anon_sym_switch] = ACTIONS(4891), + [anon_sym_when] = ACTIONS(4891), + [anon_sym_DOT_DOT] = ACTIONS(4891), + [anon_sym_and] = ACTIONS(4891), + [anon_sym_or] = ACTIONS(4891), + [anon_sym_AMP_AMP] = ACTIONS(4891), + [anon_sym_PIPE_PIPE] = ACTIONS(4891), + [anon_sym_QMARK_QMARK] = ACTIONS(4891), + [anon_sym_on] = ACTIONS(4891), + [anon_sym_equals] = ACTIONS(4891), + [anon_sym_by] = ACTIONS(4891), + [anon_sym_as] = ACTIONS(4891), + [anon_sym_is] = ACTIONS(4891), + [anon_sym_DASH_GT] = ACTIONS(4891), + [anon_sym_with] = ACTIONS(4891), + [anon_sym_DQUOTE] = ACTIONS(4891), + [sym_string_literal_encoding] = ACTIONS(5286), + [aux_sym_preproc_if_token3] = ACTIONS(4891), + [aux_sym_preproc_else_token1] = ACTIONS(4891), + [aux_sym_preproc_elif_token1] = ACTIONS(4891), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -484241,57 +483734,58 @@ 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_EQ] = ACTIONS(4136), - [anon_sym_LBRACK] = ACTIONS(4134), - [anon_sym_COLON] = ACTIONS(4134), - [anon_sym_COMMA] = ACTIONS(4134), - [anon_sym_LPAREN] = ACTIONS(4134), - [anon_sym_LT] = ACTIONS(4136), - [anon_sym_GT] = ACTIONS(4136), - [anon_sym_QMARK] = ACTIONS(4136), - [anon_sym_BANG] = ACTIONS(4136), - [anon_sym_PLUS_PLUS] = ACTIONS(4134), - [anon_sym_DASH_DASH] = ACTIONS(4134), - [anon_sym_PLUS] = ACTIONS(4136), - [anon_sym_DASH] = ACTIONS(4136), - [anon_sym_STAR] = ACTIONS(4136), - [anon_sym_SLASH] = ACTIONS(4136), - [anon_sym_PERCENT] = ACTIONS(4136), - [anon_sym_CARET] = ACTIONS(4136), - [anon_sym_PIPE] = ACTIONS(4136), - [anon_sym_AMP] = ACTIONS(4136), - [anon_sym_LT_LT] = ACTIONS(4136), - [anon_sym_GT_GT] = ACTIONS(4136), - [anon_sym_GT_GT_GT] = ACTIONS(4136), - [anon_sym_EQ_EQ] = ACTIONS(4134), - [anon_sym_BANG_EQ] = ACTIONS(4134), - [anon_sym_GT_EQ] = ACTIONS(4134), - [anon_sym_LT_EQ] = ACTIONS(4134), - [anon_sym_DOT] = ACTIONS(4136), - [anon_sym_switch] = ACTIONS(4134), - [anon_sym_DOT_DOT] = ACTIONS(4134), - [anon_sym_and] = ACTIONS(4134), - [anon_sym_or] = ACTIONS(4134), - [anon_sym_PLUS_EQ] = ACTIONS(4134), - [anon_sym_DASH_EQ] = ACTIONS(4134), - [anon_sym_STAR_EQ] = ACTIONS(4134), - [anon_sym_SLASH_EQ] = ACTIONS(4134), - [anon_sym_PERCENT_EQ] = ACTIONS(4134), - [anon_sym_AMP_EQ] = ACTIONS(4134), - [anon_sym_CARET_EQ] = ACTIONS(4134), - [anon_sym_PIPE_EQ] = ACTIONS(4134), - [anon_sym_LT_LT_EQ] = ACTIONS(4134), - [anon_sym_GT_GT_EQ] = ACTIONS(4134), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(4134), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(4134), - [anon_sym_AMP_AMP] = ACTIONS(4134), - [anon_sym_PIPE_PIPE] = ACTIONS(4134), - [anon_sym_QMARK_QMARK] = ACTIONS(4136), - [anon_sym_into] = ACTIONS(4134), - [anon_sym_as] = ACTIONS(4134), - [anon_sym_is] = ACTIONS(4134), - [anon_sym_DASH_GT] = ACTIONS(4134), - [anon_sym_with] = ACTIONS(4134), + [anon_sym_SEMI] = ACTIONS(3640), + [anon_sym_LBRACK] = ACTIONS(3640), + [anon_sym_COLON] = ACTIONS(3640), + [anon_sym_COMMA] = ACTIONS(3640), + [anon_sym_RBRACK] = ACTIONS(3640), + [anon_sym_LPAREN] = ACTIONS(3640), + [anon_sym_RPAREN] = ACTIONS(3640), + [anon_sym_LBRACE] = ACTIONS(3640), + [anon_sym_RBRACE] = ACTIONS(3640), + [anon_sym_LT] = ACTIONS(3638), + [anon_sym_GT] = ACTIONS(3638), + [anon_sym_in] = ACTIONS(3638), + [anon_sym_QMARK] = ACTIONS(3638), + [anon_sym_BANG] = ACTIONS(3638), + [anon_sym_PLUS_PLUS] = ACTIONS(3640), + [anon_sym_DASH_DASH] = ACTIONS(3640), + [anon_sym_PLUS] = ACTIONS(3638), + [anon_sym_DASH] = ACTIONS(3638), + [anon_sym_STAR] = ACTIONS(3640), + [anon_sym_SLASH] = ACTIONS(3638), + [anon_sym_PERCENT] = ACTIONS(3640), + [anon_sym_CARET] = ACTIONS(3640), + [anon_sym_PIPE] = ACTIONS(3638), + [anon_sym_AMP] = ACTIONS(3638), + [anon_sym_LT_LT] = ACTIONS(3640), + [anon_sym_GT_GT] = ACTIONS(3638), + [anon_sym_GT_GT_GT] = ACTIONS(3640), + [anon_sym_EQ_EQ] = ACTIONS(3640), + [anon_sym_BANG_EQ] = ACTIONS(3640), + [anon_sym_GT_EQ] = ACTIONS(3640), + [anon_sym_LT_EQ] = ACTIONS(3640), + [anon_sym_DOT] = ACTIONS(3638), + [anon_sym_EQ_GT] = ACTIONS(3640), + [anon_sym_switch] = ACTIONS(3640), + [anon_sym_when] = ACTIONS(3640), + [anon_sym_DOT_DOT] = ACTIONS(3640), + [anon_sym_and] = ACTIONS(3640), + [anon_sym_or] = ACTIONS(3640), + [anon_sym_AMP_AMP] = ACTIONS(3640), + [anon_sym_PIPE_PIPE] = ACTIONS(3640), + [anon_sym_QMARK_QMARK] = ACTIONS(3640), + [anon_sym_into] = ACTIONS(3640), + [anon_sym_on] = ACTIONS(3640), + [anon_sym_equals] = ACTIONS(3640), + [anon_sym_by] = ACTIONS(3640), + [anon_sym_as] = ACTIONS(3640), + [anon_sym_is] = ACTIONS(3640), + [anon_sym_DASH_GT] = ACTIONS(3640), + [anon_sym_with] = ACTIONS(3640), + [aux_sym_preproc_if_token3] = ACTIONS(3640), + [aux_sym_preproc_else_token1] = ACTIONS(3640), + [aux_sym_preproc_elif_token1] = ACTIONS(3640), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -484302,7 +483796,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(4134), }, [3185] = { [sym_preproc_region] = STATE(3185), @@ -484314,58 +483807,58 @@ 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(4106), - [anon_sym_LBRACK] = ACTIONS(4106), - [anon_sym_COLON] = ACTIONS(4106), - [anon_sym_COMMA] = ACTIONS(4106), - [anon_sym_RBRACK] = ACTIONS(4106), - [anon_sym_LPAREN] = ACTIONS(4106), - [anon_sym_RPAREN] = ACTIONS(4106), - [anon_sym_LBRACE] = ACTIONS(4106), - [anon_sym_RBRACE] = ACTIONS(4106), - [anon_sym_LT] = ACTIONS(4104), - [anon_sym_GT] = ACTIONS(4104), - [anon_sym_in] = ACTIONS(4104), - [anon_sym_QMARK] = ACTIONS(4104), - [anon_sym_BANG] = ACTIONS(4104), - [anon_sym_PLUS_PLUS] = ACTIONS(4106), - [anon_sym_DASH_DASH] = ACTIONS(4106), - [anon_sym_PLUS] = ACTIONS(4104), - [anon_sym_DASH] = ACTIONS(4104), - [anon_sym_STAR] = ACTIONS(4106), - [anon_sym_SLASH] = ACTIONS(4104), - [anon_sym_PERCENT] = ACTIONS(4106), - [anon_sym_CARET] = ACTIONS(4106), - [anon_sym_PIPE] = ACTIONS(4104), - [anon_sym_AMP] = ACTIONS(4104), - [anon_sym_LT_LT] = ACTIONS(4106), - [anon_sym_GT_GT] = ACTIONS(4104), - [anon_sym_GT_GT_GT] = ACTIONS(4106), - [anon_sym_EQ_EQ] = ACTIONS(4106), - [anon_sym_BANG_EQ] = ACTIONS(4106), - [anon_sym_GT_EQ] = ACTIONS(4106), - [anon_sym_LT_EQ] = ACTIONS(4106), - [anon_sym_DOT] = ACTIONS(4104), - [anon_sym_EQ_GT] = ACTIONS(4106), - [anon_sym_switch] = ACTIONS(4106), - [anon_sym_when] = ACTIONS(4106), - [anon_sym_DOT_DOT] = ACTIONS(4106), - [anon_sym_and] = ACTIONS(4106), - [anon_sym_or] = ACTIONS(4106), - [anon_sym_AMP_AMP] = ACTIONS(4106), - [anon_sym_PIPE_PIPE] = ACTIONS(4106), - [anon_sym_QMARK_QMARK] = ACTIONS(4106), - [anon_sym_into] = ACTIONS(4106), - [anon_sym_on] = ACTIONS(4106), - [anon_sym_equals] = ACTIONS(4106), - [anon_sym_by] = ACTIONS(4106), - [anon_sym_as] = ACTIONS(4106), - [anon_sym_is] = ACTIONS(4106), - [anon_sym_DASH_GT] = ACTIONS(4106), - [anon_sym_with] = ACTIONS(4106), - [aux_sym_preproc_if_token3] = ACTIONS(4106), - [aux_sym_preproc_else_token1] = ACTIONS(4106), - [aux_sym_preproc_elif_token1] = ACTIONS(4106), + [anon_sym_SEMI] = ACTIONS(3644), + [anon_sym_LBRACK] = ACTIONS(3644), + [anon_sym_COLON] = ACTIONS(3644), + [anon_sym_COMMA] = ACTIONS(3644), + [anon_sym_RBRACK] = ACTIONS(3644), + [anon_sym_LPAREN] = ACTIONS(3644), + [anon_sym_RPAREN] = ACTIONS(3644), + [anon_sym_LBRACE] = ACTIONS(3644), + [anon_sym_RBRACE] = ACTIONS(3644), + [anon_sym_LT] = ACTIONS(3642), + [anon_sym_GT] = ACTIONS(3642), + [anon_sym_in] = ACTIONS(3642), + [anon_sym_QMARK] = ACTIONS(3642), + [anon_sym_BANG] = ACTIONS(3642), + [anon_sym_PLUS_PLUS] = ACTIONS(3644), + [anon_sym_DASH_DASH] = ACTIONS(3644), + [anon_sym_PLUS] = ACTIONS(3642), + [anon_sym_DASH] = ACTIONS(3642), + [anon_sym_STAR] = ACTIONS(3644), + [anon_sym_SLASH] = ACTIONS(3642), + [anon_sym_PERCENT] = ACTIONS(3644), + [anon_sym_CARET] = ACTIONS(3644), + [anon_sym_PIPE] = ACTIONS(3642), + [anon_sym_AMP] = ACTIONS(3642), + [anon_sym_LT_LT] = ACTIONS(3644), + [anon_sym_GT_GT] = ACTIONS(3642), + [anon_sym_GT_GT_GT] = ACTIONS(3644), + [anon_sym_EQ_EQ] = ACTIONS(3644), + [anon_sym_BANG_EQ] = ACTIONS(3644), + [anon_sym_GT_EQ] = ACTIONS(3644), + [anon_sym_LT_EQ] = ACTIONS(3644), + [anon_sym_DOT] = ACTIONS(3642), + [anon_sym_EQ_GT] = ACTIONS(3644), + [anon_sym_switch] = ACTIONS(3644), + [anon_sym_when] = ACTIONS(3644), + [anon_sym_DOT_DOT] = ACTIONS(3644), + [anon_sym_and] = ACTIONS(3644), + [anon_sym_or] = ACTIONS(3644), + [anon_sym_AMP_AMP] = ACTIONS(3644), + [anon_sym_PIPE_PIPE] = ACTIONS(3644), + [anon_sym_QMARK_QMARK] = ACTIONS(3644), + [anon_sym_into] = ACTIONS(3644), + [anon_sym_on] = ACTIONS(3644), + [anon_sym_equals] = ACTIONS(3644), + [anon_sym_by] = ACTIONS(3644), + [anon_sym_as] = ACTIONS(3644), + [anon_sym_is] = ACTIONS(3644), + [anon_sym_DASH_GT] = ACTIONS(3644), + [anon_sym_with] = ACTIONS(3644), + [aux_sym_preproc_if_token3] = ACTIONS(3644), + [aux_sym_preproc_else_token1] = ACTIONS(3644), + [aux_sym_preproc_elif_token1] = ACTIONS(3644), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -484387,68 +483880,68 @@ 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_EQ] = ACTIONS(3447), - [anon_sym_LBRACK] = ACTIONS(3445), - [anon_sym_COLON] = ACTIONS(3445), - [anon_sym_COMMA] = ACTIONS(3445), - [anon_sym_LPAREN] = ACTIONS(3445), - [anon_sym_LT] = ACTIONS(3447), - [anon_sym_GT] = ACTIONS(3447), - [anon_sym_QMARK] = ACTIONS(3447), - [anon_sym_BANG] = ACTIONS(3447), - [anon_sym_PLUS_PLUS] = ACTIONS(3445), - [anon_sym_DASH_DASH] = ACTIONS(3445), - [anon_sym_PLUS] = ACTIONS(3447), - [anon_sym_DASH] = ACTIONS(3447), - [anon_sym_STAR] = ACTIONS(3447), - [anon_sym_SLASH] = ACTIONS(3447), - [anon_sym_PERCENT] = ACTIONS(3447), - [anon_sym_CARET] = ACTIONS(3447), - [anon_sym_PIPE] = ACTIONS(3447), - [anon_sym_AMP] = ACTIONS(3447), - [anon_sym_LT_LT] = ACTIONS(3447), - [anon_sym_GT_GT] = ACTIONS(3447), - [anon_sym_GT_GT_GT] = ACTIONS(3447), - [anon_sym_EQ_EQ] = ACTIONS(3445), - [anon_sym_BANG_EQ] = ACTIONS(3445), - [anon_sym_GT_EQ] = ACTIONS(3445), - [anon_sym_LT_EQ] = ACTIONS(3445), - [anon_sym_DOT] = ACTIONS(3447), - [anon_sym_switch] = ACTIONS(3445), - [anon_sym_DOT_DOT] = ACTIONS(3445), - [anon_sym_and] = ACTIONS(3445), - [anon_sym_or] = ACTIONS(3445), - [anon_sym_PLUS_EQ] = ACTIONS(3445), - [anon_sym_DASH_EQ] = ACTIONS(3445), - [anon_sym_STAR_EQ] = ACTIONS(3445), - [anon_sym_SLASH_EQ] = ACTIONS(3445), - [anon_sym_PERCENT_EQ] = ACTIONS(3445), - [anon_sym_AMP_EQ] = ACTIONS(3445), - [anon_sym_CARET_EQ] = ACTIONS(3445), - [anon_sym_PIPE_EQ] = ACTIONS(3445), - [anon_sym_LT_LT_EQ] = ACTIONS(3445), - [anon_sym_GT_GT_EQ] = ACTIONS(3445), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3445), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3445), - [anon_sym_AMP_AMP] = ACTIONS(3445), - [anon_sym_PIPE_PIPE] = ACTIONS(3445), - [anon_sym_QMARK_QMARK] = ACTIONS(3447), - [anon_sym_into] = ACTIONS(3445), - [anon_sym_as] = ACTIONS(3445), - [anon_sym_is] = ACTIONS(3445), - [anon_sym_DASH_GT] = ACTIONS(3445), - [anon_sym_with] = 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_close_brace] = ACTIONS(3445), + [anon_sym_SEMI] = ACTIONS(4874), + [anon_sym_LBRACK] = ACTIONS(4874), + [anon_sym_COLON] = ACTIONS(4874), + [anon_sym_COMMA] = ACTIONS(4874), + [anon_sym_RBRACK] = ACTIONS(4874), + [anon_sym_LPAREN] = ACTIONS(4874), + [anon_sym_RPAREN] = ACTIONS(4874), + [anon_sym_RBRACE] = ACTIONS(4874), + [anon_sym_LT] = ACTIONS(4876), + [anon_sym_GT] = ACTIONS(4876), + [anon_sym_in] = ACTIONS(4876), + [anon_sym_QMARK] = ACTIONS(4876), + [anon_sym_BANG] = ACTIONS(4876), + [anon_sym_PLUS_PLUS] = ACTIONS(4874), + [anon_sym_DASH_DASH] = ACTIONS(4874), + [anon_sym_PLUS] = ACTIONS(4876), + [anon_sym_DASH] = ACTIONS(4876), + [anon_sym_STAR] = ACTIONS(4874), + [anon_sym_SLASH] = ACTIONS(4876), + [anon_sym_PERCENT] = ACTIONS(4874), + [anon_sym_CARET] = ACTIONS(4874), + [anon_sym_PIPE] = ACTIONS(4876), + [anon_sym_AMP] = ACTIONS(4876), + [anon_sym_LT_LT] = ACTIONS(4874), + [anon_sym_GT_GT] = ACTIONS(4876), + [anon_sym_GT_GT_GT] = ACTIONS(4874), + [anon_sym_EQ_EQ] = ACTIONS(4874), + [anon_sym_BANG_EQ] = ACTIONS(4874), + [anon_sym_GT_EQ] = ACTIONS(4874), + [anon_sym_LT_EQ] = ACTIONS(4874), + [anon_sym_DOT] = ACTIONS(4876), + [anon_sym_EQ_GT] = ACTIONS(4874), + [anon_sym_switch] = ACTIONS(4874), + [anon_sym_when] = ACTIONS(4874), + [anon_sym_DOT_DOT] = ACTIONS(4874), + [anon_sym_and] = ACTIONS(4874), + [anon_sym_or] = ACTIONS(4874), + [anon_sym_AMP_AMP] = ACTIONS(4874), + [anon_sym_PIPE_PIPE] = ACTIONS(4874), + [anon_sym_QMARK_QMARK] = ACTIONS(4874), + [anon_sym_into] = ACTIONS(4874), + [anon_sym_on] = ACTIONS(4874), + [anon_sym_equals] = ACTIONS(4874), + [anon_sym_by] = ACTIONS(4874), + [anon_sym_as] = ACTIONS(4874), + [anon_sym_is] = ACTIONS(4874), + [anon_sym_DASH_GT] = ACTIONS(4874), + [anon_sym_with] = ACTIONS(4874), + [sym_string_literal_encoding] = ACTIONS(5288), + [aux_sym_preproc_if_token3] = ACTIONS(4874), + [aux_sym_preproc_else_token1] = ACTIONS(4874), + [aux_sym_preproc_elif_token1] = ACTIONS(4874), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), }, [3187] = { [sym_preproc_region] = STATE(3187), @@ -484460,58 +483953,57 @@ 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(3677), - [anon_sym_LBRACK] = ACTIONS(3677), - [anon_sym_COLON] = ACTIONS(3677), - [anon_sym_COMMA] = ACTIONS(3677), - [anon_sym_RBRACK] = ACTIONS(3677), - [anon_sym_LPAREN] = ACTIONS(3677), - [anon_sym_RPAREN] = ACTIONS(3677), - [anon_sym_LBRACE] = ACTIONS(3677), - [anon_sym_RBRACE] = ACTIONS(3677), - [anon_sym_LT] = ACTIONS(3675), - [anon_sym_GT] = ACTIONS(3675), - [anon_sym_in] = ACTIONS(3675), - [anon_sym_QMARK] = ACTIONS(3675), - [anon_sym_BANG] = ACTIONS(3675), - [anon_sym_PLUS_PLUS] = ACTIONS(3677), - [anon_sym_DASH_DASH] = ACTIONS(3677), - [anon_sym_PLUS] = ACTIONS(3675), - [anon_sym_DASH] = ACTIONS(3675), - [anon_sym_STAR] = ACTIONS(3677), - [anon_sym_SLASH] = ACTIONS(3675), - [anon_sym_PERCENT] = ACTIONS(3677), - [anon_sym_CARET] = ACTIONS(3677), - [anon_sym_PIPE] = ACTIONS(3675), - [anon_sym_AMP] = ACTIONS(3675), - [anon_sym_LT_LT] = ACTIONS(3677), - [anon_sym_GT_GT] = ACTIONS(3675), - [anon_sym_GT_GT_GT] = ACTIONS(3677), - [anon_sym_EQ_EQ] = ACTIONS(3677), - [anon_sym_BANG_EQ] = ACTIONS(3677), - [anon_sym_GT_EQ] = ACTIONS(3677), - [anon_sym_LT_EQ] = ACTIONS(3677), - [anon_sym_DOT] = ACTIONS(3675), - [anon_sym_EQ_GT] = ACTIONS(3677), - [anon_sym_switch] = ACTIONS(3677), - [anon_sym_when] = ACTIONS(3677), - [anon_sym_DOT_DOT] = ACTIONS(3677), - [anon_sym_and] = ACTIONS(3677), - [anon_sym_or] = ACTIONS(3677), - [anon_sym_AMP_AMP] = ACTIONS(3677), - [anon_sym_PIPE_PIPE] = ACTIONS(3677), - [anon_sym_QMARK_QMARK] = ACTIONS(3677), - [anon_sym_into] = ACTIONS(3677), - [anon_sym_on] = ACTIONS(3677), - [anon_sym_equals] = ACTIONS(3677), - [anon_sym_by] = ACTIONS(3677), - [anon_sym_as] = ACTIONS(3677), - [anon_sym_is] = ACTIONS(3677), - [anon_sym_DASH_GT] = ACTIONS(3677), - [anon_sym_with] = ACTIONS(3677), - [aux_sym_preproc_if_token3] = ACTIONS(3677), - [aux_sym_preproc_else_token1] = ACTIONS(3677), - [aux_sym_preproc_elif_token1] = ACTIONS(3677), + [anon_sym_EQ] = ACTIONS(4150), + [anon_sym_LBRACK] = ACTIONS(4148), + [anon_sym_COLON] = ACTIONS(4148), + [anon_sym_COMMA] = ACTIONS(4148), + [anon_sym_LPAREN] = ACTIONS(4148), + [anon_sym_LT] = ACTIONS(4150), + [anon_sym_GT] = ACTIONS(4150), + [anon_sym_QMARK] = ACTIONS(4150), + [anon_sym_BANG] = ACTIONS(4150), + [anon_sym_PLUS_PLUS] = ACTIONS(4148), + [anon_sym_DASH_DASH] = ACTIONS(4148), + [anon_sym_PLUS] = ACTIONS(4150), + [anon_sym_DASH] = ACTIONS(4150), + [anon_sym_STAR] = ACTIONS(4150), + [anon_sym_SLASH] = ACTIONS(4150), + [anon_sym_PERCENT] = ACTIONS(4150), + [anon_sym_CARET] = ACTIONS(4150), + [anon_sym_PIPE] = ACTIONS(4150), + [anon_sym_AMP] = ACTIONS(4150), + [anon_sym_LT_LT] = ACTIONS(4150), + [anon_sym_GT_GT] = ACTIONS(4150), + [anon_sym_GT_GT_GT] = ACTIONS(4150), + [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(4150), + [anon_sym_switch] = ACTIONS(4148), + [anon_sym_DOT_DOT] = ACTIONS(4148), + [anon_sym_and] = ACTIONS(4148), + [anon_sym_or] = ACTIONS(4148), + [anon_sym_PLUS_EQ] = ACTIONS(4148), + [anon_sym_DASH_EQ] = ACTIONS(4148), + [anon_sym_STAR_EQ] = ACTIONS(4148), + [anon_sym_SLASH_EQ] = ACTIONS(4148), + [anon_sym_PERCENT_EQ] = ACTIONS(4148), + [anon_sym_AMP_EQ] = ACTIONS(4148), + [anon_sym_CARET_EQ] = ACTIONS(4148), + [anon_sym_PIPE_EQ] = ACTIONS(4148), + [anon_sym_LT_LT_EQ] = ACTIONS(4148), + [anon_sym_GT_GT_EQ] = ACTIONS(4148), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(4148), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(4148), + [anon_sym_AMP_AMP] = ACTIONS(4148), + [anon_sym_PIPE_PIPE] = ACTIONS(4148), + [anon_sym_QMARK_QMARK] = ACTIONS(4150), + [anon_sym_into] = 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_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -484522,6 +484014,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), }, [3188] = { [sym_preproc_region] = STATE(3188), @@ -484533,152 +484026,6 @@ 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_EQ] = ACTIONS(4181), - [anon_sym_LBRACK] = ACTIONS(4179), - [anon_sym_COLON] = ACTIONS(4179), - [anon_sym_COMMA] = ACTIONS(4179), - [anon_sym_LPAREN] = ACTIONS(4179), - [anon_sym_LT] = ACTIONS(4181), - [anon_sym_GT] = ACTIONS(4181), - [anon_sym_QMARK] = ACTIONS(4181), - [anon_sym_BANG] = ACTIONS(4181), - [anon_sym_PLUS_PLUS] = ACTIONS(4179), - [anon_sym_DASH_DASH] = ACTIONS(4179), - [anon_sym_PLUS] = ACTIONS(4181), - [anon_sym_DASH] = ACTIONS(4181), - [anon_sym_STAR] = ACTIONS(4181), - [anon_sym_SLASH] = ACTIONS(4181), - [anon_sym_PERCENT] = ACTIONS(4181), - [anon_sym_CARET] = ACTIONS(4181), - [anon_sym_PIPE] = ACTIONS(4181), - [anon_sym_AMP] = ACTIONS(4181), - [anon_sym_LT_LT] = ACTIONS(4181), - [anon_sym_GT_GT] = ACTIONS(4181), - [anon_sym_GT_GT_GT] = ACTIONS(4181), - [anon_sym_EQ_EQ] = ACTIONS(4179), - [anon_sym_BANG_EQ] = ACTIONS(4179), - [anon_sym_GT_EQ] = ACTIONS(4179), - [anon_sym_LT_EQ] = ACTIONS(4179), - [anon_sym_DOT] = ACTIONS(4181), - [anon_sym_switch] = ACTIONS(4179), - [anon_sym_DOT_DOT] = ACTIONS(4179), - [anon_sym_and] = ACTIONS(4179), - [anon_sym_or] = ACTIONS(4179), - [anon_sym_PLUS_EQ] = ACTIONS(4179), - [anon_sym_DASH_EQ] = ACTIONS(4179), - [anon_sym_STAR_EQ] = ACTIONS(4179), - [anon_sym_SLASH_EQ] = ACTIONS(4179), - [anon_sym_PERCENT_EQ] = ACTIONS(4179), - [anon_sym_AMP_EQ] = ACTIONS(4179), - [anon_sym_CARET_EQ] = ACTIONS(4179), - [anon_sym_PIPE_EQ] = ACTIONS(4179), - [anon_sym_LT_LT_EQ] = ACTIONS(4179), - [anon_sym_GT_GT_EQ] = ACTIONS(4179), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(4179), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(4179), - [anon_sym_AMP_AMP] = ACTIONS(4179), - [anon_sym_PIPE_PIPE] = ACTIONS(4179), - [anon_sym_QMARK_QMARK] = ACTIONS(4181), - [anon_sym_into] = ACTIONS(4179), - [anon_sym_as] = ACTIONS(4179), - [anon_sym_is] = ACTIONS(4179), - [anon_sym_DASH_GT] = ACTIONS(4179), - [anon_sym_with] = ACTIONS(4179), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_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(4179), - }, - [3189] = { - [sym_preproc_region] = STATE(3189), - [sym_preproc_endregion] = STATE(3189), - [sym_preproc_line] = STATE(3189), - [sym_preproc_pragma] = STATE(3189), - [sym_preproc_nullable] = STATE(3189), - [sym_preproc_error] = STATE(3189), - [sym_preproc_warning] = STATE(3189), - [sym_preproc_define] = STATE(3189), - [sym_preproc_undef] = STATE(3189), - [anon_sym_EQ] = ACTIONS(3650), - [anon_sym_LBRACK] = ACTIONS(3652), - [anon_sym_COLON] = ACTIONS(3652), - [anon_sym_COMMA] = ACTIONS(3652), - [anon_sym_LPAREN] = ACTIONS(3652), - [anon_sym_LT] = ACTIONS(3650), - [anon_sym_GT] = ACTIONS(3650), - [anon_sym_QMARK] = ACTIONS(3650), - [anon_sym_BANG] = ACTIONS(3650), - [anon_sym_PLUS_PLUS] = ACTIONS(3652), - [anon_sym_DASH_DASH] = ACTIONS(3652), - [anon_sym_PLUS] = ACTIONS(3650), - [anon_sym_DASH] = ACTIONS(3650), - [anon_sym_STAR] = ACTIONS(3650), - [anon_sym_SLASH] = ACTIONS(3650), - [anon_sym_PERCENT] = ACTIONS(3650), - [anon_sym_CARET] = ACTIONS(3650), - [anon_sym_PIPE] = ACTIONS(3650), - [anon_sym_AMP] = ACTIONS(3650), - [anon_sym_LT_LT] = ACTIONS(3650), - [anon_sym_GT_GT] = ACTIONS(3650), - [anon_sym_GT_GT_GT] = ACTIONS(3650), - [anon_sym_EQ_EQ] = ACTIONS(3652), - [anon_sym_BANG_EQ] = ACTIONS(3652), - [anon_sym_GT_EQ] = ACTIONS(3652), - [anon_sym_LT_EQ] = ACTIONS(3652), - [anon_sym_DOT] = ACTIONS(3650), - [anon_sym_switch] = ACTIONS(3652), - [anon_sym_DOT_DOT] = ACTIONS(3652), - [anon_sym_and] = ACTIONS(3652), - [anon_sym_or] = ACTIONS(3652), - [anon_sym_PLUS_EQ] = ACTIONS(3652), - [anon_sym_DASH_EQ] = ACTIONS(3652), - [anon_sym_STAR_EQ] = ACTIONS(3652), - [anon_sym_SLASH_EQ] = ACTIONS(3652), - [anon_sym_PERCENT_EQ] = ACTIONS(3652), - [anon_sym_AMP_EQ] = ACTIONS(3652), - [anon_sym_CARET_EQ] = ACTIONS(3652), - [anon_sym_PIPE_EQ] = ACTIONS(3652), - [anon_sym_LT_LT_EQ] = ACTIONS(3652), - [anon_sym_GT_GT_EQ] = ACTIONS(3652), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3652), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3652), - [anon_sym_AMP_AMP] = ACTIONS(3652), - [anon_sym_PIPE_PIPE] = ACTIONS(3652), - [anon_sym_QMARK_QMARK] = ACTIONS(3650), - [anon_sym_into] = ACTIONS(3652), - [anon_sym_as] = ACTIONS(3652), - [anon_sym_is] = ACTIONS(3652), - [anon_sym_DASH_GT] = ACTIONS(3652), - [anon_sym_with] = ACTIONS(3652), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_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(3652), - }, - [3190] = { - [sym_preproc_region] = STATE(3190), - [sym_preproc_endregion] = STATE(3190), - [sym_preproc_line] = STATE(3190), - [sym_preproc_pragma] = STATE(3190), - [sym_preproc_nullable] = STATE(3190), - [sym_preproc_error] = STATE(3190), - [sym_preproc_warning] = STATE(3190), - [sym_preproc_define] = STATE(3190), - [sym_preproc_undef] = STATE(3190), [anon_sym_EQ] = ACTIONS(4130), [anon_sym_LBRACK] = ACTIONS(4128), [anon_sym_COLON] = ACTIONS(4128), @@ -484742,6 +484089,152 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), [sym_interpolation_close_brace] = ACTIONS(4128), }, + [3189] = { + [sym_preproc_region] = STATE(3189), + [sym_preproc_endregion] = STATE(3189), + [sym_preproc_line] = STATE(3189), + [sym_preproc_pragma] = STATE(3189), + [sym_preproc_nullable] = STATE(3189), + [sym_preproc_error] = STATE(3189), + [sym_preproc_warning] = STATE(3189), + [sym_preproc_define] = STATE(3189), + [sym_preproc_undef] = STATE(3189), + [anon_sym_SEMI] = ACTIONS(3657), + [anon_sym_LBRACK] = ACTIONS(3657), + [anon_sym_COLON] = ACTIONS(3657), + [anon_sym_COMMA] = ACTIONS(3657), + [anon_sym_RBRACK] = ACTIONS(3657), + [anon_sym_LPAREN] = ACTIONS(3657), + [anon_sym_RPAREN] = ACTIONS(3657), + [anon_sym_LBRACE] = ACTIONS(3657), + [anon_sym_RBRACE] = ACTIONS(3657), + [anon_sym_LT] = ACTIONS(3655), + [anon_sym_GT] = ACTIONS(3655), + [anon_sym_in] = ACTIONS(3655), + [anon_sym_QMARK] = ACTIONS(3655), + [anon_sym_BANG] = ACTIONS(3655), + [anon_sym_PLUS_PLUS] = ACTIONS(3657), + [anon_sym_DASH_DASH] = ACTIONS(3657), + [anon_sym_PLUS] = ACTIONS(3655), + [anon_sym_DASH] = ACTIONS(3655), + [anon_sym_STAR] = ACTIONS(3657), + [anon_sym_SLASH] = ACTIONS(3655), + [anon_sym_PERCENT] = ACTIONS(3657), + [anon_sym_CARET] = ACTIONS(3657), + [anon_sym_PIPE] = ACTIONS(3655), + [anon_sym_AMP] = ACTIONS(3655), + [anon_sym_LT_LT] = ACTIONS(3657), + [anon_sym_GT_GT] = ACTIONS(3655), + [anon_sym_GT_GT_GT] = ACTIONS(3657), + [anon_sym_EQ_EQ] = ACTIONS(3657), + [anon_sym_BANG_EQ] = ACTIONS(3657), + [anon_sym_GT_EQ] = ACTIONS(3657), + [anon_sym_LT_EQ] = ACTIONS(3657), + [anon_sym_DOT] = ACTIONS(3655), + [anon_sym_EQ_GT] = ACTIONS(3657), + [anon_sym_switch] = ACTIONS(3657), + [anon_sym_when] = ACTIONS(3657), + [anon_sym_DOT_DOT] = ACTIONS(3657), + [anon_sym_and] = ACTIONS(3657), + [anon_sym_or] = ACTIONS(3657), + [anon_sym_AMP_AMP] = ACTIONS(3657), + [anon_sym_PIPE_PIPE] = ACTIONS(3657), + [anon_sym_QMARK_QMARK] = ACTIONS(3657), + [anon_sym_into] = ACTIONS(3657), + [anon_sym_on] = ACTIONS(3657), + [anon_sym_equals] = ACTIONS(3657), + [anon_sym_by] = ACTIONS(3657), + [anon_sym_as] = ACTIONS(3657), + [anon_sym_is] = ACTIONS(3657), + [anon_sym_DASH_GT] = ACTIONS(3657), + [anon_sym_with] = ACTIONS(3657), + [aux_sym_preproc_if_token3] = ACTIONS(3657), + [aux_sym_preproc_else_token1] = ACTIONS(3657), + [aux_sym_preproc_elif_token1] = ACTIONS(3657), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + }, + [3190] = { + [sym_preproc_region] = STATE(3190), + [sym_preproc_endregion] = STATE(3190), + [sym_preproc_line] = STATE(3190), + [sym_preproc_pragma] = STATE(3190), + [sym_preproc_nullable] = STATE(3190), + [sym_preproc_error] = STATE(3190), + [sym_preproc_warning] = STATE(3190), + [sym_preproc_define] = STATE(3190), + [sym_preproc_undef] = STATE(3190), + [anon_sym_SEMI] = ACTIONS(3661), + [anon_sym_LBRACK] = ACTIONS(3661), + [anon_sym_COLON] = ACTIONS(3661), + [anon_sym_COMMA] = ACTIONS(3661), + [anon_sym_RBRACK] = ACTIONS(3661), + [anon_sym_LPAREN] = ACTIONS(3661), + [anon_sym_RPAREN] = ACTIONS(3661), + [anon_sym_LBRACE] = ACTIONS(3661), + [anon_sym_RBRACE] = ACTIONS(3661), + [anon_sym_LT] = ACTIONS(3659), + [anon_sym_GT] = ACTIONS(3659), + [anon_sym_in] = ACTIONS(3659), + [anon_sym_QMARK] = ACTIONS(3659), + [anon_sym_BANG] = ACTIONS(3659), + [anon_sym_PLUS_PLUS] = ACTIONS(3661), + [anon_sym_DASH_DASH] = ACTIONS(3661), + [anon_sym_PLUS] = ACTIONS(3659), + [anon_sym_DASH] = ACTIONS(3659), + [anon_sym_STAR] = ACTIONS(3661), + [anon_sym_SLASH] = ACTIONS(3659), + [anon_sym_PERCENT] = ACTIONS(3661), + [anon_sym_CARET] = ACTIONS(3661), + [anon_sym_PIPE] = ACTIONS(3659), + [anon_sym_AMP] = ACTIONS(3659), + [anon_sym_LT_LT] = ACTIONS(3661), + [anon_sym_GT_GT] = ACTIONS(3659), + [anon_sym_GT_GT_GT] = ACTIONS(3661), + [anon_sym_EQ_EQ] = ACTIONS(3661), + [anon_sym_BANG_EQ] = ACTIONS(3661), + [anon_sym_GT_EQ] = ACTIONS(3661), + [anon_sym_LT_EQ] = ACTIONS(3661), + [anon_sym_DOT] = ACTIONS(3659), + [anon_sym_EQ_GT] = ACTIONS(3661), + [anon_sym_switch] = ACTIONS(3661), + [anon_sym_when] = ACTIONS(3661), + [anon_sym_DOT_DOT] = ACTIONS(3661), + [anon_sym_and] = ACTIONS(3661), + [anon_sym_or] = ACTIONS(3661), + [anon_sym_AMP_AMP] = ACTIONS(3661), + [anon_sym_PIPE_PIPE] = ACTIONS(3661), + [anon_sym_QMARK_QMARK] = ACTIONS(3661), + [anon_sym_into] = ACTIONS(3661), + [anon_sym_on] = ACTIONS(3661), + [anon_sym_equals] = ACTIONS(3661), + [anon_sym_by] = ACTIONS(3661), + [anon_sym_as] = ACTIONS(3661), + [anon_sym_is] = ACTIONS(3661), + [anon_sym_DASH_GT] = ACTIONS(3661), + [anon_sym_with] = ACTIONS(3661), + [aux_sym_preproc_if_token3] = ACTIONS(3661), + [aux_sym_preproc_else_token1] = ACTIONS(3661), + [aux_sym_preproc_elif_token1] = ACTIONS(3661), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + }, [3191] = { [sym_preproc_region] = STATE(3191), [sym_preproc_endregion] = STATE(3191), @@ -484752,58 +484245,58 @@ 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_SEMI] = ACTIONS(3977), - [anon_sym_LBRACK] = ACTIONS(3977), - [anon_sym_COLON] = ACTIONS(3977), - [anon_sym_COMMA] = ACTIONS(3977), - [anon_sym_RBRACK] = ACTIONS(3977), - [anon_sym_LPAREN] = ACTIONS(3977), - [anon_sym_RPAREN] = ACTIONS(3977), - [anon_sym_LBRACE] = ACTIONS(3977), - [anon_sym_RBRACE] = ACTIONS(3977), - [anon_sym_LT] = ACTIONS(3975), - [anon_sym_GT] = ACTIONS(3975), - [anon_sym_in] = ACTIONS(3975), - [anon_sym_QMARK] = ACTIONS(3975), - [anon_sym_BANG] = ACTIONS(3975), - [anon_sym_PLUS_PLUS] = ACTIONS(3977), - [anon_sym_DASH_DASH] = ACTIONS(3977), - [anon_sym_PLUS] = ACTIONS(3975), - [anon_sym_DASH] = ACTIONS(3975), - [anon_sym_STAR] = ACTIONS(3977), - [anon_sym_SLASH] = ACTIONS(3975), - [anon_sym_PERCENT] = ACTIONS(3977), - [anon_sym_CARET] = ACTIONS(3977), - [anon_sym_PIPE] = ACTIONS(3975), - [anon_sym_AMP] = ACTIONS(3975), - [anon_sym_LT_LT] = ACTIONS(3977), - [anon_sym_GT_GT] = ACTIONS(3975), - [anon_sym_GT_GT_GT] = ACTIONS(3977), - [anon_sym_EQ_EQ] = ACTIONS(3977), - [anon_sym_BANG_EQ] = ACTIONS(3977), - [anon_sym_GT_EQ] = ACTIONS(3977), - [anon_sym_LT_EQ] = ACTIONS(3977), - [anon_sym_DOT] = ACTIONS(5319), - [anon_sym_EQ_GT] = ACTIONS(3977), - [anon_sym_switch] = ACTIONS(3977), - [anon_sym_when] = ACTIONS(3977), - [anon_sym_DOT_DOT] = ACTIONS(3977), - [anon_sym_and] = ACTIONS(3977), - [anon_sym_or] = ACTIONS(3977), - [anon_sym_AMP_AMP] = ACTIONS(3977), - [anon_sym_PIPE_PIPE] = ACTIONS(3977), - [anon_sym_QMARK_QMARK] = ACTIONS(3977), - [anon_sym_into] = ACTIONS(3977), - [anon_sym_on] = ACTIONS(3977), - [anon_sym_equals] = ACTIONS(3977), - [anon_sym_by] = ACTIONS(3977), - [anon_sym_as] = ACTIONS(3977), - [anon_sym_is] = ACTIONS(3977), - [anon_sym_DASH_GT] = ACTIONS(3977), - [anon_sym_with] = ACTIONS(3977), - [aux_sym_preproc_if_token3] = ACTIONS(3977), - [aux_sym_preproc_else_token1] = ACTIONS(3977), - [aux_sym_preproc_elif_token1] = ACTIONS(3977), + [anon_sym_SEMI] = ACTIONS(3665), + [anon_sym_LBRACK] = ACTIONS(3665), + [anon_sym_COLON] = ACTIONS(3665), + [anon_sym_COMMA] = ACTIONS(3665), + [anon_sym_RBRACK] = ACTIONS(3665), + [anon_sym_LPAREN] = ACTIONS(3665), + [anon_sym_RPAREN] = ACTIONS(3665), + [anon_sym_LBRACE] = ACTIONS(3665), + [anon_sym_RBRACE] = ACTIONS(3665), + [anon_sym_LT] = ACTIONS(3663), + [anon_sym_GT] = ACTIONS(3663), + [anon_sym_in] = ACTIONS(3663), + [anon_sym_QMARK] = ACTIONS(3663), + [anon_sym_BANG] = ACTIONS(3663), + [anon_sym_PLUS_PLUS] = ACTIONS(3665), + [anon_sym_DASH_DASH] = ACTIONS(3665), + [anon_sym_PLUS] = ACTIONS(3663), + [anon_sym_DASH] = ACTIONS(3663), + [anon_sym_STAR] = ACTIONS(3665), + [anon_sym_SLASH] = ACTIONS(3663), + [anon_sym_PERCENT] = ACTIONS(3665), + [anon_sym_CARET] = ACTIONS(3665), + [anon_sym_PIPE] = ACTIONS(3663), + [anon_sym_AMP] = ACTIONS(3663), + [anon_sym_LT_LT] = ACTIONS(3665), + [anon_sym_GT_GT] = ACTIONS(3663), + [anon_sym_GT_GT_GT] = ACTIONS(3665), + [anon_sym_EQ_EQ] = ACTIONS(3665), + [anon_sym_BANG_EQ] = ACTIONS(3665), + [anon_sym_GT_EQ] = ACTIONS(3665), + [anon_sym_LT_EQ] = ACTIONS(3665), + [anon_sym_DOT] = ACTIONS(3663), + [anon_sym_EQ_GT] = ACTIONS(3665), + [anon_sym_switch] = ACTIONS(3665), + [anon_sym_when] = ACTIONS(3665), + [anon_sym_DOT_DOT] = ACTIONS(3665), + [anon_sym_and] = ACTIONS(3665), + [anon_sym_or] = ACTIONS(3665), + [anon_sym_AMP_AMP] = ACTIONS(3665), + [anon_sym_PIPE_PIPE] = ACTIONS(3665), + [anon_sym_QMARK_QMARK] = ACTIONS(3665), + [anon_sym_into] = ACTIONS(3665), + [anon_sym_on] = ACTIONS(3665), + [anon_sym_equals] = ACTIONS(3665), + [anon_sym_by] = ACTIONS(3665), + [anon_sym_as] = ACTIONS(3665), + [anon_sym_is] = ACTIONS(3665), + [anon_sym_DASH_GT] = ACTIONS(3665), + [anon_sym_with] = ACTIONS(3665), + [aux_sym_preproc_if_token3] = ACTIONS(3665), + [aux_sym_preproc_else_token1] = ACTIONS(3665), + [aux_sym_preproc_elif_token1] = ACTIONS(3665), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -484825,71 +484318,73 @@ 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(4908), - [anon_sym_LBRACK] = ACTIONS(4908), - [anon_sym_COLON] = ACTIONS(4908), - [anon_sym_COMMA] = ACTIONS(4908), - [anon_sym_RBRACK] = ACTIONS(4908), - [anon_sym_LPAREN] = ACTIONS(4908), - [anon_sym_RPAREN] = ACTIONS(4908), - [anon_sym_LBRACE] = 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(4910), - [anon_sym_PLUS_PLUS] = ACTIONS(4908), - [anon_sym_DASH_DASH] = ACTIONS(4908), - [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(4910), - [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(4908), - [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), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_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(5290), + [anon_sym_LBRACK] = ACTIONS(4811), + [anon_sym_COLON] = ACTIONS(4811), + [anon_sym_COMMA] = ACTIONS(4811), + [anon_sym_LPAREN] = ACTIONS(4811), + [anon_sym_LT] = ACTIONS(4813), + [anon_sym_GT] = ACTIONS(4813), + [anon_sym_QMARK] = ACTIONS(4813), + [anon_sym_BANG] = ACTIONS(4813), + [anon_sym_PLUS_PLUS] = ACTIONS(4811), + [anon_sym_DASH_DASH] = ACTIONS(4811), + [anon_sym_PLUS] = ACTIONS(4813), + [anon_sym_DASH] = ACTIONS(4813), + [anon_sym_STAR] = ACTIONS(4813), + [anon_sym_SLASH] = ACTIONS(4813), + [anon_sym_PERCENT] = ACTIONS(4813), + [anon_sym_CARET] = ACTIONS(4813), + [anon_sym_PIPE] = ACTIONS(4813), + [anon_sym_AMP] = ACTIONS(4813), + [anon_sym_LT_LT] = ACTIONS(4813), + [anon_sym_GT_GT] = ACTIONS(4813), + [anon_sym_GT_GT_GT] = ACTIONS(4813), + [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(4813), + [anon_sym_switch] = ACTIONS(4811), + [anon_sym_DOT_DOT] = ACTIONS(4811), + [anon_sym_and] = ACTIONS(4811), + [anon_sym_or] = ACTIONS(4811), + [anon_sym_PLUS_EQ] = ACTIONS(5292), + [anon_sym_DASH_EQ] = ACTIONS(5292), + [anon_sym_STAR_EQ] = ACTIONS(5292), + [anon_sym_SLASH_EQ] = ACTIONS(5292), + [anon_sym_PERCENT_EQ] = ACTIONS(5292), + [anon_sym_AMP_EQ] = ACTIONS(5292), + [anon_sym_CARET_EQ] = ACTIONS(5292), + [anon_sym_PIPE_EQ] = ACTIONS(5292), + [anon_sym_LT_LT_EQ] = ACTIONS(5292), + [anon_sym_GT_GT_EQ] = ACTIONS(5292), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(5292), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(5292), + [anon_sym_AMP_AMP] = ACTIONS(4811), + [anon_sym_PIPE_PIPE] = ACTIONS(4811), + [anon_sym_QMARK_QMARK] = ACTIONS(4813), + [anon_sym_into] = 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_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_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(4811), }, [3193] = { - [sym_initializer_expression] = STATE(3517), + [sym_attribute_list] = STATE(3612), + [sym__attribute_list] = STATE(3570), + [sym_preproc_if_in_attribute_list] = STATE(3612), [sym_preproc_region] = STATE(3193), [sym_preproc_endregion] = STATE(3193), [sym_preproc_line] = STATE(3193), @@ -484899,57 +484394,55 @@ 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_SEMI] = ACTIONS(4829), - [anon_sym_LBRACK] = ACTIONS(4829), - [anon_sym_COLON] = ACTIONS(4829), - [anon_sym_COMMA] = ACTIONS(4829), - [anon_sym_RBRACK] = ACTIONS(4829), - [anon_sym_LPAREN] = ACTIONS(4829), - [anon_sym_RPAREN] = ACTIONS(4829), - [anon_sym_LBRACE] = ACTIONS(1313), - [anon_sym_RBRACE] = ACTIONS(4829), - [anon_sym_LT] = ACTIONS(4831), - [anon_sym_GT] = ACTIONS(4831), - [anon_sym_in] = ACTIONS(4829), - [anon_sym_QMARK] = ACTIONS(4831), - [anon_sym_BANG] = ACTIONS(4831), - [anon_sym_PLUS_PLUS] = ACTIONS(4829), - [anon_sym_DASH_DASH] = ACTIONS(4829), - [anon_sym_PLUS] = ACTIONS(4831), - [anon_sym_DASH] = ACTIONS(4831), - [anon_sym_STAR] = ACTIONS(4829), - [anon_sym_SLASH] = ACTIONS(4831), - [anon_sym_PERCENT] = ACTIONS(4829), - [anon_sym_CARET] = ACTIONS(4829), - [anon_sym_PIPE] = ACTIONS(4831), - [anon_sym_AMP] = ACTIONS(4831), - [anon_sym_LT_LT] = ACTIONS(4829), - [anon_sym_GT_GT] = ACTIONS(4831), - [anon_sym_GT_GT_GT] = ACTIONS(4829), - [anon_sym_EQ_EQ] = ACTIONS(4829), - [anon_sym_BANG_EQ] = ACTIONS(4829), - [anon_sym_GT_EQ] = ACTIONS(4829), - [anon_sym_LT_EQ] = ACTIONS(4829), - [anon_sym_DOT] = ACTIONS(4831), - [anon_sym_EQ_GT] = ACTIONS(4829), - [anon_sym_switch] = ACTIONS(4829), - [anon_sym_when] = ACTIONS(4829), - [anon_sym_DOT_DOT] = ACTIONS(4829), - [anon_sym_and] = ACTIONS(4829), - [anon_sym_or] = ACTIONS(4829), - [anon_sym_AMP_AMP] = ACTIONS(4829), - [anon_sym_PIPE_PIPE] = ACTIONS(4829), - [anon_sym_QMARK_QMARK] = ACTIONS(4829), - [anon_sym_on] = ACTIONS(4829), - [anon_sym_equals] = ACTIONS(4829), - [anon_sym_by] = ACTIONS(4829), - [anon_sym_as] = ACTIONS(4829), - [anon_sym_is] = ACTIONS(4829), - [anon_sym_DASH_GT] = ACTIONS(4829), - [anon_sym_with] = ACTIONS(4829), - [aux_sym_preproc_if_token3] = ACTIONS(4829), - [aux_sym_preproc_else_token1] = ACTIONS(4829), - [aux_sym_preproc_elif_token1] = ACTIONS(4829), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3193), + [sym__identifier_token] = ACTIONS(4711), + [anon_sym_extern] = ACTIONS(4711), + [anon_sym_alias] = ACTIONS(4711), + [anon_sym_global] = ACTIONS(4711), + [anon_sym_unsafe] = ACTIONS(4711), + [anon_sym_static] = ACTIONS(4711), + [anon_sym_LBRACK] = ACTIONS(5294), + [anon_sym_LPAREN] = ACTIONS(4716), + [anon_sym_ref] = ACTIONS(4711), + [anon_sym_delegate] = 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_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(5297), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -484962,8 +484455,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3194] = { - [sym_argument_list] = STATE(3487), - [sym_bracketed_argument_list] = STATE(2808), + [sym_initializer_expression] = STATE(3418), [sym_preproc_region] = STATE(3194), [sym_preproc_endregion] = STATE(3194), [sym_preproc_line] = STATE(3194), @@ -484973,56 +484465,57 @@ 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_SEMI] = ACTIONS(4833), - [anon_sym_LBRACK] = ACTIONS(5302), - [anon_sym_COLON] = ACTIONS(4833), - [anon_sym_COMMA] = ACTIONS(4833), - [anon_sym_RBRACK] = ACTIONS(4833), - [anon_sym_LPAREN] = ACTIONS(5264), - [anon_sym_RPAREN] = ACTIONS(4833), - [anon_sym_RBRACE] = ACTIONS(4833), - [anon_sym_LT] = ACTIONS(4837), - [anon_sym_GT] = ACTIONS(4837), - [anon_sym_in] = ACTIONS(4833), - [anon_sym_QMARK] = ACTIONS(4837), - [anon_sym_BANG] = ACTIONS(5304), - [anon_sym_PLUS_PLUS] = ACTIONS(5306), - [anon_sym_DASH_DASH] = ACTIONS(5306), - [anon_sym_PLUS] = ACTIONS(4837), - [anon_sym_DASH] = ACTIONS(4837), - [anon_sym_STAR] = ACTIONS(4833), - [anon_sym_SLASH] = ACTIONS(4837), - [anon_sym_PERCENT] = ACTIONS(4833), - [anon_sym_CARET] = ACTIONS(4833), - [anon_sym_PIPE] = ACTIONS(4837), - [anon_sym_AMP] = ACTIONS(4837), - [anon_sym_LT_LT] = ACTIONS(4833), - [anon_sym_GT_GT] = ACTIONS(4837), - [anon_sym_GT_GT_GT] = ACTIONS(4833), - [anon_sym_EQ_EQ] = ACTIONS(4833), - [anon_sym_BANG_EQ] = ACTIONS(4833), - [anon_sym_GT_EQ] = ACTIONS(4833), - [anon_sym_LT_EQ] = ACTIONS(4833), - [anon_sym_DOT] = ACTIONS(4100), - [anon_sym_EQ_GT] = ACTIONS(4833), - [anon_sym_switch] = ACTIONS(4833), - [anon_sym_when] = ACTIONS(4833), - [anon_sym_DOT_DOT] = ACTIONS(4833), - [anon_sym_and] = ACTIONS(4833), - [anon_sym_or] = ACTIONS(4833), - [anon_sym_AMP_AMP] = ACTIONS(4833), - [anon_sym_PIPE_PIPE] = ACTIONS(4833), - [anon_sym_QMARK_QMARK] = ACTIONS(4833), - [anon_sym_on] = ACTIONS(4833), - [anon_sym_equals] = ACTIONS(4833), - [anon_sym_by] = ACTIONS(4833), - [anon_sym_as] = ACTIONS(4833), - [anon_sym_is] = ACTIONS(4833), - [anon_sym_DASH_GT] = ACTIONS(4102), - [anon_sym_with] = ACTIONS(4833), - [aux_sym_preproc_if_token3] = ACTIONS(4833), - [aux_sym_preproc_else_token1] = ACTIONS(4833), - [aux_sym_preproc_elif_token1] = ACTIONS(4833), + [anon_sym_SEMI] = ACTIONS(4831), + [anon_sym_LBRACK] = ACTIONS(4831), + [anon_sym_COLON] = ACTIONS(4831), + [anon_sym_COMMA] = ACTIONS(4831), + [anon_sym_RBRACK] = ACTIONS(4831), + [anon_sym_LPAREN] = ACTIONS(4831), + [anon_sym_RPAREN] = ACTIONS(4831), + [anon_sym_LBRACE] = ACTIONS(1311), + [anon_sym_RBRACE] = ACTIONS(4831), + [anon_sym_LT] = ACTIONS(4833), + [anon_sym_GT] = ACTIONS(4833), + [anon_sym_in] = ACTIONS(4831), + [anon_sym_QMARK] = ACTIONS(4833), + [anon_sym_BANG] = ACTIONS(4833), + [anon_sym_PLUS_PLUS] = ACTIONS(4831), + [anon_sym_DASH_DASH] = ACTIONS(4831), + [anon_sym_PLUS] = ACTIONS(4833), + [anon_sym_DASH] = ACTIONS(4833), + [anon_sym_STAR] = ACTIONS(4831), + [anon_sym_SLASH] = ACTIONS(4833), + [anon_sym_PERCENT] = ACTIONS(4831), + [anon_sym_CARET] = ACTIONS(4831), + [anon_sym_PIPE] = ACTIONS(4833), + [anon_sym_AMP] = ACTIONS(4833), + [anon_sym_LT_LT] = ACTIONS(4831), + [anon_sym_GT_GT] = ACTIONS(4833), + [anon_sym_GT_GT_GT] = ACTIONS(4831), + [anon_sym_EQ_EQ] = ACTIONS(4831), + [anon_sym_BANG_EQ] = ACTIONS(4831), + [anon_sym_GT_EQ] = ACTIONS(4831), + [anon_sym_LT_EQ] = ACTIONS(4831), + [anon_sym_DOT] = ACTIONS(4833), + [anon_sym_EQ_GT] = ACTIONS(4831), + [anon_sym_switch] = ACTIONS(4831), + [anon_sym_when] = ACTIONS(4831), + [anon_sym_DOT_DOT] = ACTIONS(4831), + [anon_sym_and] = ACTIONS(4831), + [anon_sym_or] = ACTIONS(4831), + [anon_sym_AMP_AMP] = ACTIONS(4831), + [anon_sym_PIPE_PIPE] = ACTIONS(4831), + [anon_sym_QMARK_QMARK] = ACTIONS(4831), + [anon_sym_on] = ACTIONS(4831), + [anon_sym_equals] = ACTIONS(4831), + [anon_sym_by] = ACTIONS(4831), + [anon_sym_as] = ACTIONS(4831), + [anon_sym_is] = ACTIONS(4831), + [anon_sym_DASH_GT] = ACTIONS(4831), + [anon_sym_with] = ACTIONS(4831), + [aux_sym_preproc_if_token3] = ACTIONS(4831), + [aux_sym_preproc_else_token1] = ACTIONS(4831), + [aux_sym_preproc_elif_token1] = ACTIONS(4831), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -485035,6 +484528,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3195] = { + [sym_argument_list] = STATE(3381), + [sym_bracketed_argument_list] = STATE(2759), [sym_preproc_region] = STATE(3195), [sym_preproc_endregion] = STATE(3195), [sym_preproc_line] = STATE(3195), @@ -485044,58 +484539,56 @@ 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_SEMI] = ACTIONS(3616), - [anon_sym_LBRACK] = ACTIONS(3616), - [anon_sym_COLON] = ACTIONS(3619), - [anon_sym_COMMA] = ACTIONS(3616), - [anon_sym_RBRACK] = ACTIONS(3616), - [anon_sym_LPAREN] = ACTIONS(3616), - [anon_sym_RPAREN] = ACTIONS(3616), - [anon_sym_LBRACE] = ACTIONS(3616), - [anon_sym_RBRACE] = ACTIONS(3616), - [anon_sym_LT] = ACTIONS(3619), - [anon_sym_GT] = ACTIONS(3619), - [anon_sym_in] = ACTIONS(3616), - [anon_sym_QMARK] = ACTIONS(3619), - [anon_sym_BANG] = ACTIONS(3619), - [anon_sym_PLUS_PLUS] = ACTIONS(3616), - [anon_sym_DASH_DASH] = ACTIONS(3616), - [anon_sym_PLUS] = ACTIONS(3619), - [anon_sym_DASH] = ACTIONS(3619), - [anon_sym_STAR] = ACTIONS(3616), - [anon_sym_SLASH] = ACTIONS(3619), - [anon_sym_PERCENT] = ACTIONS(3616), - [anon_sym_CARET] = ACTIONS(3616), - [anon_sym_PIPE] = ACTIONS(3619), - [anon_sym_AMP] = ACTIONS(3619), - [anon_sym_LT_LT] = ACTIONS(3616), - [anon_sym_GT_GT] = ACTIONS(3619), - [anon_sym_GT_GT_GT] = ACTIONS(3616), - [anon_sym_EQ_EQ] = ACTIONS(3616), - [anon_sym_BANG_EQ] = ACTIONS(3616), - [anon_sym_GT_EQ] = ACTIONS(3616), - [anon_sym_LT_EQ] = ACTIONS(3616), - [anon_sym_DOT] = ACTIONS(3619), - [anon_sym_EQ_GT] = ACTIONS(3616), - [anon_sym_COLON_COLON] = ACTIONS(3445), - [anon_sym_switch] = ACTIONS(3616), - [anon_sym_when] = ACTIONS(3616), - [anon_sym_DOT_DOT] = ACTIONS(3616), - [anon_sym_and] = ACTIONS(3616), - [anon_sym_or] = ACTIONS(3616), - [anon_sym_AMP_AMP] = ACTIONS(3616), - [anon_sym_PIPE_PIPE] = ACTIONS(3616), - [anon_sym_QMARK_QMARK] = ACTIONS(3616), - [anon_sym_on] = ACTIONS(3616), - [anon_sym_equals] = ACTIONS(3616), - [anon_sym_by] = ACTIONS(3616), - [anon_sym_as] = ACTIONS(3616), - [anon_sym_is] = ACTIONS(3616), - [anon_sym_DASH_GT] = ACTIONS(3616), - [anon_sym_with] = ACTIONS(3616), - [aux_sym_preproc_if_token3] = ACTIONS(3616), - [aux_sym_preproc_else_token1] = ACTIONS(3616), - [aux_sym_preproc_elif_token1] = ACTIONS(3616), + [anon_sym_SEMI] = ACTIONS(4817), + [anon_sym_LBRACK] = ACTIONS(5300), + [anon_sym_COLON] = ACTIONS(4817), + [anon_sym_COMMA] = ACTIONS(4817), + [anon_sym_RBRACK] = ACTIONS(4817), + [anon_sym_LPAREN] = ACTIONS(5257), + [anon_sym_RPAREN] = ACTIONS(4817), + [anon_sym_RBRACE] = ACTIONS(4817), + [anon_sym_LT] = ACTIONS(4821), + [anon_sym_GT] = ACTIONS(4821), + [anon_sym_in] = ACTIONS(4817), + [anon_sym_QMARK] = ACTIONS(4821), + [anon_sym_BANG] = ACTIONS(5302), + [anon_sym_PLUS_PLUS] = ACTIONS(5304), + [anon_sym_DASH_DASH] = ACTIONS(5304), + [anon_sym_PLUS] = ACTIONS(4821), + [anon_sym_DASH] = ACTIONS(4821), + [anon_sym_STAR] = ACTIONS(4817), + [anon_sym_SLASH] = ACTIONS(4821), + [anon_sym_PERCENT] = ACTIONS(4817), + [anon_sym_CARET] = ACTIONS(4817), + [anon_sym_PIPE] = ACTIONS(4821), + [anon_sym_AMP] = ACTIONS(4821), + [anon_sym_LT_LT] = ACTIONS(4817), + [anon_sym_GT_GT] = ACTIONS(4821), + [anon_sym_GT_GT_GT] = ACTIONS(4817), + [anon_sym_EQ_EQ] = ACTIONS(4817), + [anon_sym_BANG_EQ] = ACTIONS(4817), + [anon_sym_GT_EQ] = ACTIONS(4817), + [anon_sym_LT_EQ] = ACTIONS(4817), + [anon_sym_DOT] = ACTIONS(4042), + [anon_sym_EQ_GT] = ACTIONS(4817), + [anon_sym_switch] = ACTIONS(4817), + [anon_sym_when] = ACTIONS(4817), + [anon_sym_DOT_DOT] = ACTIONS(4817), + [anon_sym_and] = ACTIONS(4817), + [anon_sym_or] = ACTIONS(4817), + [anon_sym_AMP_AMP] = ACTIONS(4817), + [anon_sym_PIPE_PIPE] = ACTIONS(4817), + [anon_sym_QMARK_QMARK] = ACTIONS(4817), + [anon_sym_on] = ACTIONS(4817), + [anon_sym_equals] = ACTIONS(4817), + [anon_sym_by] = ACTIONS(4817), + [anon_sym_as] = ACTIONS(4817), + [anon_sym_is] = ACTIONS(4817), + [anon_sym_DASH_GT] = ACTIONS(4044), + [anon_sym_with] = ACTIONS(4817), + [aux_sym_preproc_if_token3] = ACTIONS(4817), + [aux_sym_preproc_else_token1] = ACTIONS(4817), + [aux_sym_preproc_elif_token1] = ACTIONS(4817), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -485108,6 +484601,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3196] = { + [sym_initializer_expression] = STATE(3423), [sym_preproc_region] = STATE(3196), [sym_preproc_endregion] = STATE(3196), [sym_preproc_line] = STATE(3196), @@ -485117,58 +484611,57 @@ 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(3673), - [anon_sym_LBRACK] = ACTIONS(3673), - [anon_sym_COLON] = ACTIONS(3673), - [anon_sym_COMMA] = ACTIONS(3673), - [anon_sym_RBRACK] = ACTIONS(3673), - [anon_sym_LPAREN] = ACTIONS(3673), - [anon_sym_RPAREN] = ACTIONS(3673), - [anon_sym_LBRACE] = ACTIONS(3673), - [anon_sym_RBRACE] = ACTIONS(3673), - [anon_sym_LT] = ACTIONS(3671), - [anon_sym_GT] = ACTIONS(3671), - [anon_sym_in] = ACTIONS(3671), - [anon_sym_QMARK] = ACTIONS(3671), - [anon_sym_BANG] = ACTIONS(3671), - [anon_sym_PLUS_PLUS] = ACTIONS(3673), - [anon_sym_DASH_DASH] = ACTIONS(3673), - [anon_sym_PLUS] = ACTIONS(3671), - [anon_sym_DASH] = ACTIONS(3671), - [anon_sym_STAR] = ACTIONS(3673), - [anon_sym_SLASH] = ACTIONS(3671), - [anon_sym_PERCENT] = ACTIONS(3673), - [anon_sym_CARET] = ACTIONS(3673), - [anon_sym_PIPE] = ACTIONS(3671), - [anon_sym_AMP] = ACTIONS(3671), - [anon_sym_LT_LT] = ACTIONS(3673), - [anon_sym_GT_GT] = ACTIONS(3671), - [anon_sym_GT_GT_GT] = ACTIONS(3673), - [anon_sym_EQ_EQ] = ACTIONS(3673), - [anon_sym_BANG_EQ] = ACTIONS(3673), - [anon_sym_GT_EQ] = ACTIONS(3673), - [anon_sym_LT_EQ] = ACTIONS(3673), - [anon_sym_DOT] = ACTIONS(3671), - [anon_sym_EQ_GT] = ACTIONS(3673), - [anon_sym_switch] = ACTIONS(3673), - [anon_sym_when] = ACTIONS(3673), - [anon_sym_DOT_DOT] = ACTIONS(3673), - [anon_sym_and] = ACTIONS(3673), - [anon_sym_or] = ACTIONS(3673), - [anon_sym_AMP_AMP] = ACTIONS(3673), - [anon_sym_PIPE_PIPE] = ACTIONS(3673), - [anon_sym_QMARK_QMARK] = ACTIONS(3673), - [anon_sym_into] = ACTIONS(3673), - [anon_sym_on] = ACTIONS(3673), - [anon_sym_equals] = ACTIONS(3673), - [anon_sym_by] = ACTIONS(3673), - [anon_sym_as] = ACTIONS(3673), - [anon_sym_is] = ACTIONS(3673), - [anon_sym_DASH_GT] = ACTIONS(3673), - [anon_sym_with] = ACTIONS(3673), - [aux_sym_preproc_if_token3] = ACTIONS(3673), - [aux_sym_preproc_else_token1] = ACTIONS(3673), - [aux_sym_preproc_elif_token1] = ACTIONS(3673), + [anon_sym_SEMI] = ACTIONS(4802), + [anon_sym_LBRACK] = ACTIONS(4804), + [anon_sym_COLON] = ACTIONS(4802), + [anon_sym_COMMA] = ACTIONS(4802), + [anon_sym_RBRACK] = ACTIONS(4802), + [anon_sym_LPAREN] = ACTIONS(4802), + [anon_sym_RPAREN] = ACTIONS(4802), + [anon_sym_LBRACE] = ACTIONS(1311), + [anon_sym_RBRACE] = ACTIONS(4802), + [anon_sym_LT] = ACTIONS(4807), + [anon_sym_GT] = ACTIONS(4807), + [anon_sym_in] = ACTIONS(4802), + [anon_sym_QMARK] = ACTIONS(4807), + [anon_sym_BANG] = ACTIONS(4807), + [anon_sym_PLUS_PLUS] = ACTIONS(4802), + [anon_sym_DASH_DASH] = ACTIONS(4802), + [anon_sym_PLUS] = ACTIONS(4807), + [anon_sym_DASH] = ACTIONS(4807), + [anon_sym_STAR] = ACTIONS(4802), + [anon_sym_SLASH] = ACTIONS(4807), + [anon_sym_PERCENT] = ACTIONS(4802), + [anon_sym_CARET] = ACTIONS(4802), + [anon_sym_PIPE] = ACTIONS(4807), + [anon_sym_AMP] = ACTIONS(4807), + [anon_sym_LT_LT] = ACTIONS(4802), + [anon_sym_GT_GT] = ACTIONS(4807), + [anon_sym_GT_GT_GT] = ACTIONS(4802), + [anon_sym_EQ_EQ] = ACTIONS(4802), + [anon_sym_BANG_EQ] = ACTIONS(4802), + [anon_sym_GT_EQ] = ACTIONS(4802), + [anon_sym_LT_EQ] = ACTIONS(4802), + [anon_sym_DOT] = ACTIONS(4807), + [anon_sym_EQ_GT] = ACTIONS(4802), + [anon_sym_switch] = ACTIONS(4802), + [anon_sym_when] = ACTIONS(4802), + [anon_sym_DOT_DOT] = ACTIONS(4802), + [anon_sym_and] = ACTIONS(4802), + [anon_sym_or] = ACTIONS(4802), + [anon_sym_AMP_AMP] = ACTIONS(4802), + [anon_sym_PIPE_PIPE] = ACTIONS(4802), + [anon_sym_QMARK_QMARK] = ACTIONS(4802), + [anon_sym_on] = ACTIONS(4802), + [anon_sym_equals] = ACTIONS(4802), + [anon_sym_by] = ACTIONS(4802), + [anon_sym_as] = ACTIONS(4802), + [anon_sym_is] = ACTIONS(4802), + [anon_sym_DASH_GT] = ACTIONS(4802), + [anon_sym_with] = ACTIONS(4802), + [aux_sym_preproc_if_token3] = ACTIONS(4802), + [aux_sym_preproc_else_token1] = ACTIONS(4802), + [aux_sym_preproc_elif_token1] = ACTIONS(4802), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -485190,68 +484683,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_EQ] = ACTIONS(3704), - [anon_sym_LBRACK] = ACTIONS(4273), - [anon_sym_COLON] = ACTIONS(4271), - [anon_sym_COMMA] = ACTIONS(4271), - [anon_sym_LPAREN] = ACTIONS(4273), - [anon_sym_LT] = ACTIONS(4276), - [anon_sym_GT] = ACTIONS(4276), - [anon_sym_QMARK] = ACTIONS(4276), - [anon_sym_BANG] = ACTIONS(4276), - [anon_sym_PLUS_PLUS] = ACTIONS(4273), - [anon_sym_DASH_DASH] = ACTIONS(4273), - [anon_sym_PLUS] = ACTIONS(4276), - [anon_sym_DASH] = ACTIONS(4276), - [anon_sym_STAR] = ACTIONS(4276), - [anon_sym_SLASH] = ACTIONS(4276), - [anon_sym_PERCENT] = ACTIONS(4276), - [anon_sym_CARET] = ACTIONS(4276), - [anon_sym_PIPE] = ACTIONS(4276), - [anon_sym_AMP] = ACTIONS(4276), - [anon_sym_LT_LT] = ACTIONS(4276), - [anon_sym_GT_GT] = ACTIONS(4276), - [anon_sym_GT_GT_GT] = ACTIONS(4276), - [anon_sym_EQ_EQ] = ACTIONS(4273), - [anon_sym_BANG_EQ] = ACTIONS(4273), - [anon_sym_GT_EQ] = ACTIONS(4273), - [anon_sym_LT_EQ] = ACTIONS(4273), - [anon_sym_DOT] = ACTIONS(4276), - [anon_sym_switch] = ACTIONS(4273), - [anon_sym_DOT_DOT] = ACTIONS(4273), - [anon_sym_and] = ACTIONS(4271), - [anon_sym_or] = ACTIONS(4271), - [anon_sym_PLUS_EQ] = ACTIONS(3719), - [anon_sym_DASH_EQ] = ACTIONS(3719), - [anon_sym_STAR_EQ] = ACTIONS(3719), - [anon_sym_SLASH_EQ] = ACTIONS(3719), - [anon_sym_PERCENT_EQ] = ACTIONS(3719), - [anon_sym_AMP_EQ] = ACTIONS(3719), - [anon_sym_CARET_EQ] = ACTIONS(3719), - [anon_sym_PIPE_EQ] = ACTIONS(3719), - [anon_sym_LT_LT_EQ] = ACTIONS(3719), - [anon_sym_GT_GT_EQ] = ACTIONS(3719), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3719), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3719), - [anon_sym_AMP_AMP] = ACTIONS(4273), - [anon_sym_PIPE_PIPE] = ACTIONS(4273), - [anon_sym_QMARK_QMARK] = ACTIONS(4276), - [anon_sym_into] = ACTIONS(4271), - [anon_sym_as] = ACTIONS(4273), - [anon_sym_is] = ACTIONS(4273), - [anon_sym_DASH_GT] = ACTIONS(4273), - [anon_sym_with] = ACTIONS(4273), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_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(4271), + [anon_sym_EQ] = ACTIONS(5306), + [anon_sym_LBRACK] = ACTIONS(4811), + [anon_sym_COLON] = ACTIONS(4811), + [anon_sym_COMMA] = ACTIONS(4811), + [anon_sym_LPAREN] = ACTIONS(4811), + [anon_sym_RPAREN] = ACTIONS(4811), + [anon_sym_RBRACE] = ACTIONS(4811), + [anon_sym_LT] = ACTIONS(4813), + [anon_sym_GT] = ACTIONS(4813), + [anon_sym_QMARK] = ACTIONS(4813), + [anon_sym_BANG] = ACTIONS(4813), + [anon_sym_PLUS_PLUS] = ACTIONS(4811), + [anon_sym_DASH_DASH] = ACTIONS(4811), + [anon_sym_PLUS] = ACTIONS(4813), + [anon_sym_DASH] = ACTIONS(4813), + [anon_sym_STAR] = ACTIONS(4813), + [anon_sym_SLASH] = ACTIONS(4813), + [anon_sym_PERCENT] = ACTIONS(4813), + [anon_sym_CARET] = ACTIONS(4813), + [anon_sym_PIPE] = ACTIONS(4813), + [anon_sym_AMP] = ACTIONS(4813), + [anon_sym_LT_LT] = ACTIONS(4813), + [anon_sym_GT_GT] = ACTIONS(4813), + [anon_sym_GT_GT_GT] = ACTIONS(4813), + [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(4813), + [anon_sym_switch] = ACTIONS(4811), + [anon_sym_DOT_DOT] = ACTIONS(4811), + [anon_sym_and] = ACTIONS(4811), + [anon_sym_or] = ACTIONS(4811), + [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(4811), + [anon_sym_PIPE_PIPE] = ACTIONS(4811), + [anon_sym_QMARK_QMARK] = ACTIONS(4813), + [anon_sym_as] = ACTIONS(4811), + [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), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), }, [3198] = { [sym_preproc_region] = STATE(3198), @@ -485263,58 +484756,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(4892), - [anon_sym_LBRACK] = ACTIONS(4892), - [anon_sym_COLON] = ACTIONS(4892), - [anon_sym_COMMA] = ACTIONS(4892), - [anon_sym_RBRACK] = ACTIONS(4892), - [anon_sym_LPAREN] = ACTIONS(4892), - [anon_sym_RPAREN] = ACTIONS(4892), - [anon_sym_RBRACE] = ACTIONS(4892), - [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(4892), - [anon_sym_DASH_DASH] = ACTIONS(4892), - [anon_sym_PLUS] = ACTIONS(4894), - [anon_sym_DASH] = ACTIONS(4894), - [anon_sym_STAR] = ACTIONS(4892), - [anon_sym_SLASH] = ACTIONS(4894), - [anon_sym_PERCENT] = ACTIONS(4892), - [anon_sym_CARET] = ACTIONS(4892), - [anon_sym_PIPE] = ACTIONS(4894), - [anon_sym_AMP] = ACTIONS(4894), - [anon_sym_LT_LT] = ACTIONS(4892), - [anon_sym_GT_GT] = ACTIONS(4894), - [anon_sym_GT_GT_GT] = ACTIONS(4892), - [anon_sym_EQ_EQ] = ACTIONS(4892), - [anon_sym_BANG_EQ] = ACTIONS(4892), - [anon_sym_GT_EQ] = ACTIONS(4892), - [anon_sym_LT_EQ] = ACTIONS(4892), - [anon_sym_DOT] = ACTIONS(4894), - [anon_sym_EQ_GT] = ACTIONS(4892), - [anon_sym_switch] = ACTIONS(4892), - [anon_sym_when] = ACTIONS(4892), - [anon_sym_DOT_DOT] = ACTIONS(4892), - [anon_sym_and] = ACTIONS(4892), - [anon_sym_or] = ACTIONS(4892), - [anon_sym_AMP_AMP] = ACTIONS(4892), - [anon_sym_PIPE_PIPE] = ACTIONS(4892), - [anon_sym_QMARK_QMARK] = ACTIONS(4892), - [anon_sym_into] = ACTIONS(4892), - [anon_sym_on] = ACTIONS(4892), - [anon_sym_equals] = ACTIONS(4892), - [anon_sym_by] = ACTIONS(4892), - [anon_sym_as] = ACTIONS(4892), - [anon_sym_is] = ACTIONS(4892), - [anon_sym_DASH_GT] = ACTIONS(4892), - [anon_sym_with] = ACTIONS(4892), - [sym_string_literal_encoding] = ACTIONS(5321), - [aux_sym_preproc_if_token3] = ACTIONS(4892), - [aux_sym_preproc_else_token1] = ACTIONS(4892), - [aux_sym_preproc_elif_token1] = ACTIONS(4892), + [anon_sym_SEMI] = ACTIONS(3429), + [anon_sym_LBRACK] = ACTIONS(3429), + [anon_sym_COLON] = ACTIONS(3429), + [anon_sym_COMMA] = ACTIONS(3429), + [anon_sym_RBRACK] = ACTIONS(3429), + [anon_sym_LPAREN] = ACTIONS(3429), + [anon_sym_RPAREN] = ACTIONS(3429), + [anon_sym_LBRACE] = ACTIONS(3429), + [anon_sym_RBRACE] = ACTIONS(3429), + [anon_sym_LT] = ACTIONS(3431), + [anon_sym_GT] = ACTIONS(3431), + [anon_sym_in] = ACTIONS(3431), + [anon_sym_QMARK] = ACTIONS(3431), + [anon_sym_BANG] = ACTIONS(3431), + [anon_sym_PLUS_PLUS] = ACTIONS(3429), + [anon_sym_DASH_DASH] = ACTIONS(3429), + [anon_sym_PLUS] = ACTIONS(3431), + [anon_sym_DASH] = ACTIONS(3431), + [anon_sym_STAR] = ACTIONS(3429), + [anon_sym_SLASH] = ACTIONS(3431), + [anon_sym_PERCENT] = ACTIONS(3429), + [anon_sym_CARET] = ACTIONS(3429), + [anon_sym_PIPE] = ACTIONS(3431), + [anon_sym_AMP] = ACTIONS(3431), + [anon_sym_LT_LT] = ACTIONS(3429), + [anon_sym_GT_GT] = ACTIONS(3431), + [anon_sym_GT_GT_GT] = ACTIONS(3429), + [anon_sym_EQ_EQ] = ACTIONS(3429), + [anon_sym_BANG_EQ] = ACTIONS(3429), + [anon_sym_GT_EQ] = ACTIONS(3429), + [anon_sym_LT_EQ] = ACTIONS(3429), + [anon_sym_DOT] = ACTIONS(3431), + [anon_sym_EQ_GT] = ACTIONS(3429), + [anon_sym_switch] = ACTIONS(3429), + [anon_sym_when] = ACTIONS(3429), + [anon_sym_DOT_DOT] = ACTIONS(3429), + [anon_sym_and] = ACTIONS(3429), + [anon_sym_or] = ACTIONS(3429), + [anon_sym_AMP_AMP] = ACTIONS(3429), + [anon_sym_PIPE_PIPE] = ACTIONS(3429), + [anon_sym_QMARK_QMARK] = ACTIONS(3429), + [anon_sym_into] = ACTIONS(3429), + [anon_sym_on] = ACTIONS(3429), + [anon_sym_equals] = ACTIONS(3429), + [anon_sym_by] = ACTIONS(3429), + [anon_sym_as] = ACTIONS(3429), + [anon_sym_is] = ACTIONS(3429), + [anon_sym_DASH_GT] = ACTIONS(3429), + [anon_sym_with] = 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), @@ -485327,9 +484820,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3199] = { - [sym_attribute_list] = STATE(3645), - [sym__attribute_list] = STATE(3580), - [sym_preproc_if_in_attribute_list] = STATE(3645), [sym_preproc_region] = STATE(3199), [sym_preproc_endregion] = STATE(3199), [sym_preproc_line] = STATE(3199), @@ -485339,55 +484829,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), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3199), - [sym__identifier_token] = ACTIONS(4721), - [anon_sym_extern] = ACTIONS(4721), - [anon_sym_alias] = ACTIONS(4721), - [anon_sym_global] = ACTIONS(4721), - [anon_sym_unsafe] = ACTIONS(4721), - [anon_sym_static] = ACTIONS(4721), - [anon_sym_LBRACK] = ACTIONS(5323), - [anon_sym_LPAREN] = ACTIONS(4726), - [anon_sym_ref] = ACTIONS(4721), - [anon_sym_delegate] = ACTIONS(4721), - [anon_sym_abstract] = ACTIONS(4721), - [anon_sym_async] = ACTIONS(4721), - [anon_sym_const] = ACTIONS(4721), - [anon_sym_file] = ACTIONS(4721), - [anon_sym_fixed] = ACTIONS(4721), - [anon_sym_internal] = ACTIONS(4721), - [anon_sym_new] = ACTIONS(4721), - [anon_sym_override] = ACTIONS(4721), - [anon_sym_partial] = ACTIONS(4721), - [anon_sym_private] = ACTIONS(4721), - [anon_sym_protected] = ACTIONS(4721), - [anon_sym_public] = ACTIONS(4721), - [anon_sym_readonly] = ACTIONS(4721), - [anon_sym_required] = ACTIONS(4721), - [anon_sym_sealed] = ACTIONS(4721), - [anon_sym_virtual] = ACTIONS(4721), - [anon_sym_volatile] = ACTIONS(4721), - [anon_sym_where] = ACTIONS(4721), - [anon_sym_notnull] = ACTIONS(4721), - [anon_sym_unmanaged] = ACTIONS(4721), - [anon_sym_scoped] = ACTIONS(4721), - [anon_sym_var] = ACTIONS(4721), - [sym_predefined_type] = ACTIONS(4721), - [anon_sym_yield] = ACTIONS(4721), - [anon_sym_when] = ACTIONS(4721), - [anon_sym_from] = ACTIONS(4721), - [anon_sym_into] = ACTIONS(4721), - [anon_sym_join] = ACTIONS(4721), - [anon_sym_on] = ACTIONS(4721), - [anon_sym_equals] = ACTIONS(4721), - [anon_sym_let] = ACTIONS(4721), - [anon_sym_orderby] = ACTIONS(4721), - [anon_sym_ascending] = ACTIONS(4721), - [anon_sym_descending] = ACTIONS(4721), - [anon_sym_group] = ACTIONS(4721), - [anon_sym_by] = ACTIONS(4721), - [anon_sym_select] = ACTIONS(4721), - [aux_sym_preproc_if_token1] = ACTIONS(5326), + [anon_sym_SEMI] = ACTIONS(3636), + [anon_sym_LBRACK] = ACTIONS(3636), + [anon_sym_COLON] = ACTIONS(3636), + [anon_sym_COMMA] = ACTIONS(3636), + [anon_sym_RBRACK] = ACTIONS(3636), + [anon_sym_LPAREN] = ACTIONS(3636), + [anon_sym_RPAREN] = ACTIONS(3636), + [anon_sym_LBRACE] = ACTIONS(3636), + [anon_sym_RBRACE] = ACTIONS(3636), + [anon_sym_LT] = ACTIONS(3634), + [anon_sym_GT] = ACTIONS(3634), + [anon_sym_in] = ACTIONS(3634), + [anon_sym_QMARK] = ACTIONS(3634), + [anon_sym_BANG] = ACTIONS(3634), + [anon_sym_PLUS_PLUS] = ACTIONS(3636), + [anon_sym_DASH_DASH] = ACTIONS(3636), + [anon_sym_PLUS] = ACTIONS(3634), + [anon_sym_DASH] = ACTIONS(3634), + [anon_sym_STAR] = ACTIONS(3636), + [anon_sym_SLASH] = ACTIONS(3634), + [anon_sym_PERCENT] = ACTIONS(3636), + [anon_sym_CARET] = ACTIONS(3636), + [anon_sym_PIPE] = ACTIONS(3634), + [anon_sym_AMP] = ACTIONS(3634), + [anon_sym_LT_LT] = ACTIONS(3636), + [anon_sym_GT_GT] = ACTIONS(3634), + [anon_sym_GT_GT_GT] = ACTIONS(3636), + [anon_sym_EQ_EQ] = ACTIONS(3636), + [anon_sym_BANG_EQ] = ACTIONS(3636), + [anon_sym_GT_EQ] = ACTIONS(3636), + [anon_sym_LT_EQ] = ACTIONS(3636), + [anon_sym_DOT] = ACTIONS(3634), + [anon_sym_EQ_GT] = ACTIONS(3636), + [anon_sym_switch] = ACTIONS(3636), + [anon_sym_when] = ACTIONS(3636), + [anon_sym_DOT_DOT] = ACTIONS(3636), + [anon_sym_and] = ACTIONS(3636), + [anon_sym_or] = ACTIONS(3636), + [anon_sym_AMP_AMP] = ACTIONS(3636), + [anon_sym_PIPE_PIPE] = ACTIONS(3636), + [anon_sym_QMARK_QMARK] = ACTIONS(3636), + [anon_sym_into] = ACTIONS(3636), + [anon_sym_on] = ACTIONS(3636), + [anon_sym_equals] = ACTIONS(3636), + [anon_sym_by] = ACTIONS(3636), + [anon_sym_as] = ACTIONS(3636), + [anon_sym_is] = ACTIONS(3636), + [anon_sym_DASH_GT] = ACTIONS(3636), + [anon_sym_with] = ACTIONS(3636), + [aux_sym_preproc_if_token3] = ACTIONS(3636), + [aux_sym_preproc_else_token1] = ACTIONS(3636), + [aux_sym_preproc_elif_token1] = ACTIONS(3636), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -485409,58 +484902,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(3710), - [anon_sym_LBRACK] = ACTIONS(3710), - [anon_sym_COLON] = ACTIONS(3710), - [anon_sym_COMMA] = ACTIONS(3710), - [anon_sym_RBRACK] = ACTIONS(3710), - [anon_sym_LPAREN] = ACTIONS(3710), - [anon_sym_RPAREN] = ACTIONS(3710), - [anon_sym_LBRACE] = ACTIONS(3710), - [anon_sym_RBRACE] = ACTIONS(3710), - [anon_sym_LT] = ACTIONS(3699), - [anon_sym_GT] = ACTIONS(3699), - [anon_sym_in] = ACTIONS(3699), - [anon_sym_QMARK] = ACTIONS(3699), - [anon_sym_BANG] = ACTIONS(3699), - [anon_sym_PLUS_PLUS] = ACTIONS(3710), - [anon_sym_DASH_DASH] = ACTIONS(3710), - [anon_sym_PLUS] = ACTIONS(3699), - [anon_sym_DASH] = ACTIONS(3699), - [anon_sym_STAR] = ACTIONS(3710), - [anon_sym_SLASH] = ACTIONS(3699), - [anon_sym_PERCENT] = ACTIONS(3710), - [anon_sym_CARET] = ACTIONS(3710), - [anon_sym_PIPE] = ACTIONS(3699), - [anon_sym_AMP] = ACTIONS(3699), - [anon_sym_LT_LT] = ACTIONS(3710), - [anon_sym_GT_GT] = ACTIONS(3699), - [anon_sym_GT_GT_GT] = ACTIONS(3710), - [anon_sym_EQ_EQ] = ACTIONS(3710), - [anon_sym_BANG_EQ] = ACTIONS(3710), - [anon_sym_GT_EQ] = ACTIONS(3710), - [anon_sym_LT_EQ] = ACTIONS(3710), - [anon_sym_DOT] = ACTIONS(3699), - [anon_sym_EQ_GT] = ACTIONS(3710), - [anon_sym_switch] = ACTIONS(3710), - [anon_sym_when] = ACTIONS(3710), - [anon_sym_DOT_DOT] = ACTIONS(3710), - [anon_sym_and] = ACTIONS(3710), - [anon_sym_or] = ACTIONS(3710), - [anon_sym_AMP_AMP] = ACTIONS(3710), - [anon_sym_PIPE_PIPE] = ACTIONS(3710), - [anon_sym_QMARK_QMARK] = ACTIONS(3710), - [anon_sym_into] = ACTIONS(3710), - [anon_sym_on] = ACTIONS(3710), - [anon_sym_equals] = ACTIONS(3710), - [anon_sym_by] = ACTIONS(3710), - [anon_sym_as] = ACTIONS(3710), - [anon_sym_is] = ACTIONS(3710), - [anon_sym_DASH_GT] = ACTIONS(3710), - [anon_sym_with] = ACTIONS(3710), - [aux_sym_preproc_if_token3] = ACTIONS(3710), - [aux_sym_preproc_else_token1] = ACTIONS(3710), - [aux_sym_preproc_elif_token1] = ACTIONS(3710), + [anon_sym_SEMI] = ACTIONS(4903), + [anon_sym_LBRACK] = ACTIONS(4903), + [anon_sym_COLON] = ACTIONS(4903), + [anon_sym_COMMA] = ACTIONS(4903), + [anon_sym_RBRACK] = ACTIONS(4903), + [anon_sym_LPAREN] = ACTIONS(4903), + [anon_sym_RPAREN] = ACTIONS(4903), + [anon_sym_RBRACE] = ACTIONS(4903), + [anon_sym_LT] = ACTIONS(4905), + [anon_sym_GT] = ACTIONS(4905), + [anon_sym_in] = ACTIONS(4905), + [anon_sym_QMARK] = ACTIONS(4905), + [anon_sym_BANG] = ACTIONS(4905), + [anon_sym_PLUS_PLUS] = ACTIONS(4903), + [anon_sym_DASH_DASH] = ACTIONS(4903), + [anon_sym_PLUS] = ACTIONS(4905), + [anon_sym_DASH] = ACTIONS(4905), + [anon_sym_STAR] = ACTIONS(4903), + [anon_sym_SLASH] = ACTIONS(4905), + [anon_sym_PERCENT] = ACTIONS(4903), + [anon_sym_CARET] = ACTIONS(4903), + [anon_sym_PIPE] = ACTIONS(4905), + [anon_sym_AMP] = ACTIONS(4905), + [anon_sym_LT_LT] = ACTIONS(4903), + [anon_sym_GT_GT] = ACTIONS(4905), + [anon_sym_GT_GT_GT] = ACTIONS(4903), + [anon_sym_EQ_EQ] = ACTIONS(4903), + [anon_sym_BANG_EQ] = ACTIONS(4903), + [anon_sym_GT_EQ] = ACTIONS(4903), + [anon_sym_LT_EQ] = ACTIONS(4903), + [anon_sym_DOT] = ACTIONS(4905), + [anon_sym_EQ_GT] = ACTIONS(4903), + [anon_sym_switch] = ACTIONS(4903), + [anon_sym_when] = ACTIONS(4903), + [anon_sym_DOT_DOT] = ACTIONS(4903), + [anon_sym_and] = ACTIONS(4903), + [anon_sym_or] = ACTIONS(4903), + [anon_sym_AMP_AMP] = ACTIONS(4903), + [anon_sym_PIPE_PIPE] = ACTIONS(4903), + [anon_sym_QMARK_QMARK] = ACTIONS(4903), + [anon_sym_into] = ACTIONS(4903), + [anon_sym_on] = ACTIONS(4903), + [anon_sym_equals] = ACTIONS(4903), + [anon_sym_by] = ACTIONS(4903), + [anon_sym_as] = ACTIONS(4903), + [anon_sym_is] = ACTIONS(4903), + [anon_sym_DASH_GT] = ACTIONS(4903), + [anon_sym_with] = ACTIONS(4903), + [aux_sym_raw_string_literal_token1] = ACTIONS(5310), + [aux_sym_preproc_if_token3] = ACTIONS(4903), + [aux_sym_preproc_else_token1] = ACTIONS(4903), + [aux_sym_preproc_elif_token1] = ACTIONS(4903), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -485482,58 +484975,58 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3201), [sym_preproc_define] = STATE(3201), [sym_preproc_undef] = STATE(3201), - [anon_sym_SEMI] = ACTIONS(3656), - [anon_sym_LBRACK] = ACTIONS(3656), - [anon_sym_COLON] = ACTIONS(3656), - [anon_sym_COMMA] = ACTIONS(3656), - [anon_sym_RBRACK] = ACTIONS(3656), - [anon_sym_LPAREN] = ACTIONS(3656), - [anon_sym_RPAREN] = ACTIONS(3656), - [anon_sym_LBRACE] = ACTIONS(3656), - [anon_sym_RBRACE] = ACTIONS(3656), - [anon_sym_LT] = ACTIONS(3654), - [anon_sym_GT] = ACTIONS(3654), - [anon_sym_in] = ACTIONS(3654), - [anon_sym_QMARK] = ACTIONS(3654), - [anon_sym_BANG] = ACTIONS(3654), - [anon_sym_PLUS_PLUS] = ACTIONS(3656), - [anon_sym_DASH_DASH] = ACTIONS(3656), - [anon_sym_PLUS] = ACTIONS(3654), - [anon_sym_DASH] = ACTIONS(3654), - [anon_sym_STAR] = ACTIONS(3656), - [anon_sym_SLASH] = ACTIONS(3654), - [anon_sym_PERCENT] = ACTIONS(3656), - [anon_sym_CARET] = ACTIONS(3656), - [anon_sym_PIPE] = ACTIONS(3654), - [anon_sym_AMP] = ACTIONS(3654), - [anon_sym_LT_LT] = ACTIONS(3656), - [anon_sym_GT_GT] = ACTIONS(3654), - [anon_sym_GT_GT_GT] = ACTIONS(3656), - [anon_sym_EQ_EQ] = ACTIONS(3656), - [anon_sym_BANG_EQ] = ACTIONS(3656), - [anon_sym_GT_EQ] = ACTIONS(3656), - [anon_sym_LT_EQ] = ACTIONS(3656), - [anon_sym_DOT] = ACTIONS(3654), - [anon_sym_EQ_GT] = ACTIONS(3656), - [anon_sym_switch] = ACTIONS(3656), - [anon_sym_when] = ACTIONS(3656), - [anon_sym_DOT_DOT] = ACTIONS(3656), - [anon_sym_and] = ACTIONS(3656), - [anon_sym_or] = ACTIONS(3656), - [anon_sym_AMP_AMP] = ACTIONS(3656), - [anon_sym_PIPE_PIPE] = ACTIONS(3656), - [anon_sym_QMARK_QMARK] = ACTIONS(3656), - [anon_sym_into] = ACTIONS(3656), - [anon_sym_on] = ACTIONS(3656), - [anon_sym_equals] = ACTIONS(3656), - [anon_sym_by] = ACTIONS(3656), - [anon_sym_as] = ACTIONS(3656), - [anon_sym_is] = ACTIONS(3656), - [anon_sym_DASH_GT] = ACTIONS(3656), - [anon_sym_with] = ACTIONS(3656), - [aux_sym_preproc_if_token3] = ACTIONS(3656), - [aux_sym_preproc_else_token1] = ACTIONS(3656), - [aux_sym_preproc_elif_token1] = ACTIONS(3656), + [anon_sym_SEMI] = ACTIONS(3600), + [anon_sym_LBRACK] = ACTIONS(3600), + [anon_sym_COLON] = ACTIONS(3603), + [anon_sym_COMMA] = ACTIONS(3600), + [anon_sym_RBRACK] = ACTIONS(3600), + [anon_sym_LPAREN] = ACTIONS(3600), + [anon_sym_RPAREN] = ACTIONS(3600), + [anon_sym_LBRACE] = ACTIONS(3600), + [anon_sym_RBRACE] = ACTIONS(3600), + [anon_sym_LT] = ACTIONS(3603), + [anon_sym_GT] = ACTIONS(3603), + [anon_sym_in] = ACTIONS(3600), + [anon_sym_QMARK] = ACTIONS(3603), + [anon_sym_BANG] = ACTIONS(3603), + [anon_sym_PLUS_PLUS] = ACTIONS(3600), + [anon_sym_DASH_DASH] = ACTIONS(3600), + [anon_sym_PLUS] = ACTIONS(3603), + [anon_sym_DASH] = ACTIONS(3603), + [anon_sym_STAR] = ACTIONS(3600), + [anon_sym_SLASH] = ACTIONS(3603), + [anon_sym_PERCENT] = ACTIONS(3600), + [anon_sym_CARET] = ACTIONS(3600), + [anon_sym_PIPE] = ACTIONS(3603), + [anon_sym_AMP] = ACTIONS(3603), + [anon_sym_LT_LT] = ACTIONS(3600), + [anon_sym_GT_GT] = ACTIONS(3603), + [anon_sym_GT_GT_GT] = ACTIONS(3600), + [anon_sym_EQ_EQ] = ACTIONS(3600), + [anon_sym_BANG_EQ] = ACTIONS(3600), + [anon_sym_GT_EQ] = ACTIONS(3600), + [anon_sym_LT_EQ] = ACTIONS(3600), + [anon_sym_DOT] = ACTIONS(3603), + [anon_sym_EQ_GT] = ACTIONS(3600), + [anon_sym_COLON_COLON] = ACTIONS(3429), + [anon_sym_switch] = ACTIONS(3600), + [anon_sym_when] = ACTIONS(3600), + [anon_sym_DOT_DOT] = ACTIONS(3600), + [anon_sym_and] = ACTIONS(3600), + [anon_sym_or] = ACTIONS(3600), + [anon_sym_AMP_AMP] = ACTIONS(3600), + [anon_sym_PIPE_PIPE] = ACTIONS(3600), + [anon_sym_QMARK_QMARK] = ACTIONS(3600), + [anon_sym_on] = ACTIONS(3600), + [anon_sym_equals] = ACTIONS(3600), + [anon_sym_by] = ACTIONS(3600), + [anon_sym_as] = ACTIONS(3600), + [anon_sym_is] = ACTIONS(3600), + [anon_sym_DASH_GT] = ACTIONS(3600), + [anon_sym_with] = ACTIONS(3600), + [aux_sym_preproc_if_token3] = ACTIONS(3600), + [aux_sym_preproc_else_token1] = ACTIONS(3600), + [aux_sym_preproc_elif_token1] = ACTIONS(3600), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -485555,58 +485048,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), - [anon_sym_SEMI] = ACTIONS(4002), - [anon_sym_LBRACK] = ACTIONS(4002), - [anon_sym_COLON] = ACTIONS(4002), - [anon_sym_COMMA] = ACTIONS(4002), - [anon_sym_RBRACK] = ACTIONS(4002), - [anon_sym_LPAREN] = ACTIONS(4002), - [anon_sym_RPAREN] = ACTIONS(4002), - [anon_sym_LBRACE] = ACTIONS(4002), - [anon_sym_RBRACE] = ACTIONS(4002), - [anon_sym_LT] = ACTIONS(4000), - [anon_sym_GT] = ACTIONS(4000), - [anon_sym_in] = ACTIONS(4000), - [anon_sym_QMARK] = ACTIONS(4000), - [anon_sym_BANG] = ACTIONS(4000), - [anon_sym_PLUS_PLUS] = ACTIONS(4002), - [anon_sym_DASH_DASH] = ACTIONS(4002), - [anon_sym_PLUS] = ACTIONS(4000), - [anon_sym_DASH] = ACTIONS(4000), - [anon_sym_STAR] = ACTIONS(4002), - [anon_sym_SLASH] = ACTIONS(4000), - [anon_sym_PERCENT] = ACTIONS(4002), - [anon_sym_CARET] = ACTIONS(4002), - [anon_sym_PIPE] = ACTIONS(4000), - [anon_sym_AMP] = ACTIONS(4000), - [anon_sym_LT_LT] = ACTIONS(4002), - [anon_sym_GT_GT] = ACTIONS(4000), - [anon_sym_GT_GT_GT] = ACTIONS(4002), - [anon_sym_EQ_EQ] = ACTIONS(4002), - [anon_sym_BANG_EQ] = ACTIONS(4002), - [anon_sym_GT_EQ] = ACTIONS(4002), - [anon_sym_LT_EQ] = ACTIONS(4002), - [anon_sym_DOT] = ACTIONS(4000), - [anon_sym_EQ_GT] = ACTIONS(4002), - [anon_sym_switch] = ACTIONS(4002), - [anon_sym_when] = ACTIONS(4002), - [anon_sym_DOT_DOT] = ACTIONS(4002), - [anon_sym_and] = ACTIONS(4002), - [anon_sym_or] = ACTIONS(4002), - [anon_sym_AMP_AMP] = ACTIONS(4002), - [anon_sym_PIPE_PIPE] = ACTIONS(4002), - [anon_sym_QMARK_QMARK] = ACTIONS(4002), - [anon_sym_into] = ACTIONS(4002), - [anon_sym_on] = ACTIONS(4002), - [anon_sym_equals] = ACTIONS(4002), - [anon_sym_by] = ACTIONS(4002), - [anon_sym_as] = ACTIONS(4002), - [anon_sym_is] = ACTIONS(4002), - [anon_sym_DASH_GT] = ACTIONS(4002), - [anon_sym_with] = ACTIONS(4002), - [aux_sym_preproc_if_token3] = ACTIONS(4002), - [aux_sym_preproc_else_token1] = ACTIONS(4002), - [aux_sym_preproc_elif_token1] = ACTIONS(4002), + [anon_sym_SEMI] = ACTIONS(4863), + [anon_sym_LBRACK] = ACTIONS(4863), + [anon_sym_COLON] = ACTIONS(4863), + [anon_sym_COMMA] = ACTIONS(4863), + [anon_sym_RBRACK] = ACTIONS(4863), + [anon_sym_LPAREN] = ACTIONS(4863), + [anon_sym_RPAREN] = ACTIONS(4863), + [anon_sym_LBRACE] = ACTIONS(4863), + [anon_sym_RBRACE] = ACTIONS(4863), + [anon_sym_LT] = ACTIONS(4865), + [anon_sym_GT] = ACTIONS(4865), + [anon_sym_in] = ACTIONS(4865), + [anon_sym_QMARK] = ACTIONS(4865), + [anon_sym_BANG] = ACTIONS(4865), + [anon_sym_PLUS_PLUS] = ACTIONS(4863), + [anon_sym_DASH_DASH] = ACTIONS(4863), + [anon_sym_PLUS] = ACTIONS(4865), + [anon_sym_DASH] = ACTIONS(4865), + [anon_sym_STAR] = ACTIONS(4863), + [anon_sym_SLASH] = ACTIONS(4865), + [anon_sym_PERCENT] = ACTIONS(4863), + [anon_sym_CARET] = ACTIONS(4863), + [anon_sym_PIPE] = ACTIONS(4865), + [anon_sym_AMP] = ACTIONS(4865), + [anon_sym_LT_LT] = ACTIONS(4863), + [anon_sym_GT_GT] = ACTIONS(4865), + [anon_sym_GT_GT_GT] = ACTIONS(4863), + [anon_sym_EQ_EQ] = ACTIONS(4863), + [anon_sym_BANG_EQ] = ACTIONS(4863), + [anon_sym_GT_EQ] = ACTIONS(4863), + [anon_sym_LT_EQ] = ACTIONS(4863), + [anon_sym_DOT] = ACTIONS(4865), + [anon_sym_EQ_GT] = ACTIONS(4863), + [anon_sym_switch] = ACTIONS(4863), + [anon_sym_when] = ACTIONS(4863), + [anon_sym_DOT_DOT] = ACTIONS(4863), + [anon_sym_and] = ACTIONS(4863), + [anon_sym_or] = ACTIONS(4863), + [anon_sym_AMP_AMP] = ACTIONS(4863), + [anon_sym_PIPE_PIPE] = ACTIONS(4863), + [anon_sym_QMARK_QMARK] = ACTIONS(4863), + [anon_sym_into] = ACTIONS(4863), + [anon_sym_on] = ACTIONS(4863), + [anon_sym_equals] = ACTIONS(4863), + [anon_sym_by] = ACTIONS(4863), + [anon_sym_as] = ACTIONS(4863), + [anon_sym_is] = ACTIONS(4863), + [anon_sym_DASH_GT] = ACTIONS(4863), + [anon_sym_with] = ACTIONS(4863), + [aux_sym_preproc_if_token3] = ACTIONS(4863), + [aux_sym_preproc_else_token1] = ACTIONS(4863), + [aux_sym_preproc_elif_token1] = ACTIONS(4863), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -485619,6 +485112,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3203] = { + [sym_initializer_expression] = STATE(3481), [sym_preproc_region] = STATE(3203), [sym_preproc_endregion] = STATE(3203), [sym_preproc_line] = STATE(3203), @@ -485628,58 +485122,57 @@ 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_SEMI] = ACTIONS(4879), - [anon_sym_LBRACK] = ACTIONS(4879), - [anon_sym_COLON] = ACTIONS(4879), - [anon_sym_COMMA] = ACTIONS(4879), - [anon_sym_RBRACK] = ACTIONS(4879), - [anon_sym_LPAREN] = ACTIONS(4879), - [anon_sym_RPAREN] = ACTIONS(4879), - [anon_sym_RBRACE] = ACTIONS(4879), - [anon_sym_LT] = ACTIONS(4881), - [anon_sym_GT] = ACTIONS(4881), - [anon_sym_in] = ACTIONS(4881), - [anon_sym_QMARK] = ACTIONS(4881), - [anon_sym_BANG] = ACTIONS(4881), - [anon_sym_PLUS_PLUS] = ACTIONS(4879), - [anon_sym_DASH_DASH] = ACTIONS(4879), - [anon_sym_PLUS] = ACTIONS(4881), - [anon_sym_DASH] = ACTIONS(4881), - [anon_sym_STAR] = ACTIONS(4879), - [anon_sym_SLASH] = ACTIONS(4881), - [anon_sym_PERCENT] = ACTIONS(4879), - [anon_sym_CARET] = ACTIONS(4879), - [anon_sym_PIPE] = ACTIONS(4881), - [anon_sym_AMP] = ACTIONS(4881), - [anon_sym_LT_LT] = ACTIONS(4879), - [anon_sym_GT_GT] = ACTIONS(4881), - [anon_sym_GT_GT_GT] = ACTIONS(4879), - [anon_sym_EQ_EQ] = ACTIONS(4879), - [anon_sym_BANG_EQ] = ACTIONS(4879), - [anon_sym_GT_EQ] = ACTIONS(4879), - [anon_sym_LT_EQ] = ACTIONS(4879), - [anon_sym_DOT] = ACTIONS(4881), - [anon_sym_EQ_GT] = ACTIONS(4879), - [anon_sym_switch] = ACTIONS(4879), - [anon_sym_when] = ACTIONS(4879), - [anon_sym_DOT_DOT] = ACTIONS(4879), - [anon_sym_and] = ACTIONS(4879), - [anon_sym_or] = ACTIONS(4879), - [anon_sym_AMP_AMP] = ACTIONS(4879), - [anon_sym_PIPE_PIPE] = ACTIONS(4879), - [anon_sym_QMARK_QMARK] = ACTIONS(4879), - [anon_sym_into] = ACTIONS(4879), - [anon_sym_on] = ACTIONS(4879), - [anon_sym_equals] = ACTIONS(4879), - [anon_sym_by] = ACTIONS(4879), - [anon_sym_as] = ACTIONS(4879), - [anon_sym_is] = ACTIONS(4879), - [anon_sym_DASH_GT] = ACTIONS(4879), - [anon_sym_with] = ACTIONS(4879), - [sym_string_literal_encoding] = ACTIONS(5329), - [aux_sym_preproc_if_token3] = ACTIONS(4879), - [aux_sym_preproc_else_token1] = ACTIONS(4879), - [aux_sym_preproc_elif_token1] = ACTIONS(4879), + [anon_sym_SEMI] = ACTIONS(4827), + [anon_sym_LBRACK] = ACTIONS(4827), + [anon_sym_COLON] = ACTIONS(4827), + [anon_sym_COMMA] = ACTIONS(4827), + [anon_sym_RBRACK] = ACTIONS(4827), + [anon_sym_LPAREN] = ACTIONS(4827), + [anon_sym_RPAREN] = ACTIONS(4827), + [anon_sym_LBRACE] = ACTIONS(1311), + [anon_sym_RBRACE] = ACTIONS(4827), + [anon_sym_LT] = ACTIONS(4829), + [anon_sym_GT] = ACTIONS(4829), + [anon_sym_in] = ACTIONS(4827), + [anon_sym_QMARK] = ACTIONS(4829), + [anon_sym_BANG] = ACTIONS(4829), + [anon_sym_PLUS_PLUS] = ACTIONS(4827), + [anon_sym_DASH_DASH] = ACTIONS(4827), + [anon_sym_PLUS] = ACTIONS(4829), + [anon_sym_DASH] = ACTIONS(4829), + [anon_sym_STAR] = ACTIONS(4827), + [anon_sym_SLASH] = ACTIONS(4829), + [anon_sym_PERCENT] = ACTIONS(4827), + [anon_sym_CARET] = ACTIONS(4827), + [anon_sym_PIPE] = ACTIONS(4829), + [anon_sym_AMP] = ACTIONS(4829), + [anon_sym_LT_LT] = ACTIONS(4827), + [anon_sym_GT_GT] = ACTIONS(4829), + [anon_sym_GT_GT_GT] = ACTIONS(4827), + [anon_sym_EQ_EQ] = ACTIONS(4827), + [anon_sym_BANG_EQ] = ACTIONS(4827), + [anon_sym_GT_EQ] = ACTIONS(4827), + [anon_sym_LT_EQ] = ACTIONS(4827), + [anon_sym_DOT] = ACTIONS(4829), + [anon_sym_EQ_GT] = ACTIONS(4827), + [anon_sym_switch] = ACTIONS(4827), + [anon_sym_when] = ACTIONS(4827), + [anon_sym_DOT_DOT] = ACTIONS(4827), + [anon_sym_and] = ACTIONS(4827), + [anon_sym_or] = ACTIONS(4827), + [anon_sym_AMP_AMP] = ACTIONS(4827), + [anon_sym_PIPE_PIPE] = ACTIONS(4827), + [anon_sym_QMARK_QMARK] = ACTIONS(4827), + [anon_sym_on] = ACTIONS(4827), + [anon_sym_equals] = ACTIONS(4827), + [anon_sym_by] = ACTIONS(4827), + [anon_sym_as] = ACTIONS(4827), + [anon_sym_is] = ACTIONS(4827), + [anon_sym_DASH_GT] = ACTIONS(4827), + [anon_sym_with] = ACTIONS(4827), + [aux_sym_preproc_if_token3] = ACTIONS(4827), + [aux_sym_preproc_else_token1] = ACTIONS(4827), + [aux_sym_preproc_elif_token1] = ACTIONS(4827), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -485701,68 +485194,68 @@ 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_EQ] = ACTIONS(3660), - [anon_sym_LBRACK] = ACTIONS(3662), - [anon_sym_COLON] = ACTIONS(3662), - [anon_sym_COMMA] = ACTIONS(3662), - [anon_sym_LPAREN] = ACTIONS(3662), - [anon_sym_LT] = ACTIONS(3660), - [anon_sym_GT] = ACTIONS(3660), - [anon_sym_QMARK] = ACTIONS(3660), - [anon_sym_BANG] = ACTIONS(3660), - [anon_sym_PLUS_PLUS] = ACTIONS(3662), - [anon_sym_DASH_DASH] = ACTIONS(3662), - [anon_sym_PLUS] = ACTIONS(3660), - [anon_sym_DASH] = ACTIONS(3660), - [anon_sym_STAR] = ACTIONS(3660), - [anon_sym_SLASH] = ACTIONS(3660), - [anon_sym_PERCENT] = ACTIONS(3660), - [anon_sym_CARET] = ACTIONS(3660), - [anon_sym_PIPE] = ACTIONS(3660), - [anon_sym_AMP] = ACTIONS(3660), - [anon_sym_LT_LT] = ACTIONS(3660), - [anon_sym_GT_GT] = ACTIONS(3660), - [anon_sym_GT_GT_GT] = ACTIONS(3660), - [anon_sym_EQ_EQ] = ACTIONS(3662), - [anon_sym_BANG_EQ] = ACTIONS(3662), - [anon_sym_GT_EQ] = ACTIONS(3662), - [anon_sym_LT_EQ] = ACTIONS(3662), - [anon_sym_DOT] = ACTIONS(3660), - [anon_sym_switch] = ACTIONS(3662), - [anon_sym_DOT_DOT] = ACTIONS(3662), - [anon_sym_and] = ACTIONS(3662), - [anon_sym_or] = ACTIONS(3662), - [anon_sym_PLUS_EQ] = ACTIONS(3662), - [anon_sym_DASH_EQ] = ACTIONS(3662), - [anon_sym_STAR_EQ] = ACTIONS(3662), - [anon_sym_SLASH_EQ] = ACTIONS(3662), - [anon_sym_PERCENT_EQ] = ACTIONS(3662), - [anon_sym_AMP_EQ] = ACTIONS(3662), - [anon_sym_CARET_EQ] = ACTIONS(3662), - [anon_sym_PIPE_EQ] = ACTIONS(3662), - [anon_sym_LT_LT_EQ] = ACTIONS(3662), - [anon_sym_GT_GT_EQ] = ACTIONS(3662), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3662), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3662), - [anon_sym_AMP_AMP] = ACTIONS(3662), - [anon_sym_PIPE_PIPE] = ACTIONS(3662), - [anon_sym_QMARK_QMARK] = ACTIONS(3660), - [anon_sym_into] = ACTIONS(3662), - [anon_sym_as] = ACTIONS(3662), - [anon_sym_is] = ACTIONS(3662), - [anon_sym_DASH_GT] = ACTIONS(3662), - [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(3662), + [anon_sym_SEMI] = ACTIONS(3429), + [anon_sym_LBRACK] = ACTIONS(3429), + [anon_sym_COLON] = ACTIONS(3431), + [anon_sym_COMMA] = ACTIONS(3429), + [anon_sym_RBRACK] = ACTIONS(3429), + [anon_sym_LPAREN] = ACTIONS(3429), + [anon_sym_RPAREN] = ACTIONS(3429), + [anon_sym_LBRACE] = ACTIONS(3429), + [anon_sym_RBRACE] = ACTIONS(3429), + [anon_sym_LT] = ACTIONS(3431), + [anon_sym_GT] = ACTIONS(3431), + [anon_sym_in] = ACTIONS(3429), + [anon_sym_QMARK] = ACTIONS(3431), + [anon_sym_BANG] = ACTIONS(3431), + [anon_sym_PLUS_PLUS] = ACTIONS(3429), + [anon_sym_DASH_DASH] = ACTIONS(3429), + [anon_sym_PLUS] = ACTIONS(3431), + [anon_sym_DASH] = ACTIONS(3431), + [anon_sym_STAR] = ACTIONS(3429), + [anon_sym_SLASH] = ACTIONS(3431), + [anon_sym_PERCENT] = ACTIONS(3429), + [anon_sym_CARET] = ACTIONS(3429), + [anon_sym_PIPE] = ACTIONS(3431), + [anon_sym_AMP] = ACTIONS(3431), + [anon_sym_LT_LT] = ACTIONS(3429), + [anon_sym_GT_GT] = ACTIONS(3431), + [anon_sym_GT_GT_GT] = ACTIONS(3429), + [anon_sym_EQ_EQ] = ACTIONS(3429), + [anon_sym_BANG_EQ] = ACTIONS(3429), + [anon_sym_GT_EQ] = ACTIONS(3429), + [anon_sym_LT_EQ] = ACTIONS(3429), + [anon_sym_DOT] = ACTIONS(3431), + [anon_sym_EQ_GT] = ACTIONS(3429), + [anon_sym_COLON_COLON] = ACTIONS(3429), + [anon_sym_switch] = ACTIONS(3429), + [anon_sym_when] = ACTIONS(3429), + [anon_sym_DOT_DOT] = ACTIONS(3429), + [anon_sym_and] = ACTIONS(3429), + [anon_sym_or] = ACTIONS(3429), + [anon_sym_AMP_AMP] = ACTIONS(3429), + [anon_sym_PIPE_PIPE] = ACTIONS(3429), + [anon_sym_QMARK_QMARK] = ACTIONS(3429), + [anon_sym_on] = ACTIONS(3429), + [anon_sym_equals] = ACTIONS(3429), + [anon_sym_by] = ACTIONS(3429), + [anon_sym_as] = ACTIONS(3429), + [anon_sym_is] = ACTIONS(3429), + [anon_sym_DASH_GT] = ACTIONS(3429), + [anon_sym_with] = 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), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), }, [3205] = { [sym_preproc_region] = STATE(3205), @@ -485774,58 +485267,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(4018), - [anon_sym_LBRACK] = ACTIONS(4018), - [anon_sym_COLON] = ACTIONS(4018), - [anon_sym_COMMA] = ACTIONS(4018), - [anon_sym_RBRACK] = ACTIONS(4018), - [anon_sym_LPAREN] = ACTIONS(4018), - [anon_sym_RPAREN] = ACTIONS(4018), - [anon_sym_LBRACE] = ACTIONS(4018), - [anon_sym_RBRACE] = ACTIONS(4018), - [anon_sym_LT] = ACTIONS(4016), - [anon_sym_GT] = ACTIONS(4016), - [anon_sym_in] = ACTIONS(4016), - [anon_sym_QMARK] = ACTIONS(4016), - [anon_sym_BANG] = ACTIONS(4016), - [anon_sym_PLUS_PLUS] = ACTIONS(4018), - [anon_sym_DASH_DASH] = ACTIONS(4018), - [anon_sym_PLUS] = ACTIONS(4016), - [anon_sym_DASH] = ACTIONS(4016), - [anon_sym_STAR] = ACTIONS(4018), - [anon_sym_SLASH] = ACTIONS(4016), - [anon_sym_PERCENT] = ACTIONS(4018), - [anon_sym_CARET] = ACTIONS(4018), - [anon_sym_PIPE] = ACTIONS(4016), - [anon_sym_AMP] = ACTIONS(4016), - [anon_sym_LT_LT] = ACTIONS(4018), - [anon_sym_GT_GT] = ACTIONS(4016), - [anon_sym_GT_GT_GT] = ACTIONS(4018), - [anon_sym_EQ_EQ] = ACTIONS(4018), - [anon_sym_BANG_EQ] = ACTIONS(4018), - [anon_sym_GT_EQ] = ACTIONS(4018), - [anon_sym_LT_EQ] = ACTIONS(4018), - [anon_sym_DOT] = ACTIONS(4016), - [anon_sym_EQ_GT] = ACTIONS(4018), - [anon_sym_switch] = ACTIONS(4018), - [anon_sym_when] = ACTIONS(4018), - [anon_sym_DOT_DOT] = ACTIONS(4018), - [anon_sym_and] = ACTIONS(4018), - [anon_sym_or] = ACTIONS(4018), - [anon_sym_AMP_AMP] = ACTIONS(4018), - [anon_sym_PIPE_PIPE] = ACTIONS(4018), - [anon_sym_QMARK_QMARK] = ACTIONS(4018), - [anon_sym_into] = ACTIONS(4018), - [anon_sym_on] = ACTIONS(4018), - [anon_sym_equals] = ACTIONS(4018), - [anon_sym_by] = ACTIONS(4018), - [anon_sym_as] = ACTIONS(4018), - [anon_sym_is] = ACTIONS(4018), - [anon_sym_DASH_GT] = ACTIONS(4018), - [anon_sym_with] = ACTIONS(4018), - [aux_sym_preproc_if_token3] = ACTIONS(4018), - [aux_sym_preproc_else_token1] = ACTIONS(4018), - [aux_sym_preproc_elif_token1] = ACTIONS(4018), + [anon_sym_SEMI] = ACTIONS(3636), + [anon_sym_LBRACK] = ACTIONS(3636), + [anon_sym_COLON] = ACTIONS(3634), + [anon_sym_COMMA] = ACTIONS(3636), + [anon_sym_RBRACK] = ACTIONS(3636), + [anon_sym_LPAREN] = ACTIONS(3636), + [anon_sym_RPAREN] = ACTIONS(3636), + [anon_sym_LBRACE] = ACTIONS(3636), + [anon_sym_RBRACE] = ACTIONS(3636), + [anon_sym_LT] = ACTIONS(3634), + [anon_sym_GT] = ACTIONS(3634), + [anon_sym_in] = ACTIONS(3636), + [anon_sym_QMARK] = ACTIONS(3634), + [anon_sym_BANG] = ACTIONS(3634), + [anon_sym_PLUS_PLUS] = ACTIONS(3636), + [anon_sym_DASH_DASH] = ACTIONS(3636), + [anon_sym_PLUS] = ACTIONS(3634), + [anon_sym_DASH] = ACTIONS(3634), + [anon_sym_STAR] = ACTIONS(3636), + [anon_sym_SLASH] = ACTIONS(3634), + [anon_sym_PERCENT] = ACTIONS(3636), + [anon_sym_CARET] = ACTIONS(3636), + [anon_sym_PIPE] = ACTIONS(3634), + [anon_sym_AMP] = ACTIONS(3634), + [anon_sym_LT_LT] = ACTIONS(3636), + [anon_sym_GT_GT] = ACTIONS(3634), + [anon_sym_GT_GT_GT] = ACTIONS(3636), + [anon_sym_EQ_EQ] = ACTIONS(3636), + [anon_sym_BANG_EQ] = ACTIONS(3636), + [anon_sym_GT_EQ] = ACTIONS(3636), + [anon_sym_LT_EQ] = ACTIONS(3636), + [anon_sym_DOT] = ACTIONS(3634), + [anon_sym_EQ_GT] = ACTIONS(3636), + [anon_sym_COLON_COLON] = ACTIONS(3636), + [anon_sym_switch] = ACTIONS(3636), + [anon_sym_when] = ACTIONS(3636), + [anon_sym_DOT_DOT] = ACTIONS(3636), + [anon_sym_and] = ACTIONS(3636), + [anon_sym_or] = ACTIONS(3636), + [anon_sym_AMP_AMP] = ACTIONS(3636), + [anon_sym_PIPE_PIPE] = ACTIONS(3636), + [anon_sym_QMARK_QMARK] = ACTIONS(3636), + [anon_sym_on] = ACTIONS(3636), + [anon_sym_equals] = ACTIONS(3636), + [anon_sym_by] = ACTIONS(3636), + [anon_sym_as] = ACTIONS(3636), + [anon_sym_is] = ACTIONS(3636), + [anon_sym_DASH_GT] = ACTIONS(3636), + [anon_sym_with] = ACTIONS(3636), + [aux_sym_preproc_if_token3] = ACTIONS(3636), + [aux_sym_preproc_else_token1] = ACTIONS(3636), + [aux_sym_preproc_elif_token1] = ACTIONS(3636), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -485847,58 +485340,57 @@ 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(4018), - [anon_sym_LBRACK] = ACTIONS(4066), - [anon_sym_COLON] = ACTIONS(4018), - [anon_sym_COMMA] = ACTIONS(4018), - [anon_sym_RBRACK] = ACTIONS(4018), - [anon_sym_LPAREN] = ACTIONS(4018), - [anon_sym_RPAREN] = ACTIONS(4018), - [anon_sym_LBRACE] = ACTIONS(4018), - [anon_sym_RBRACE] = ACTIONS(4018), - [anon_sym_LT] = ACTIONS(4016), - [anon_sym_GT] = ACTIONS(4016), - [anon_sym_in] = ACTIONS(4016), - [anon_sym_QMARK] = ACTIONS(5331), - [anon_sym_BANG] = ACTIONS(4016), - [anon_sym_PLUS_PLUS] = ACTIONS(4018), - [anon_sym_DASH_DASH] = ACTIONS(4018), - [anon_sym_PLUS] = ACTIONS(4016), - [anon_sym_DASH] = ACTIONS(4016), - [anon_sym_STAR] = ACTIONS(4018), - [anon_sym_SLASH] = ACTIONS(4016), - [anon_sym_PERCENT] = ACTIONS(4018), - [anon_sym_CARET] = ACTIONS(4018), - [anon_sym_PIPE] = ACTIONS(4016), - [anon_sym_AMP] = ACTIONS(4016), - [anon_sym_LT_LT] = ACTIONS(4018), - [anon_sym_GT_GT] = ACTIONS(4016), - [anon_sym_GT_GT_GT] = ACTIONS(4018), - [anon_sym_EQ_EQ] = ACTIONS(4018), - [anon_sym_BANG_EQ] = ACTIONS(4018), - [anon_sym_GT_EQ] = ACTIONS(4018), - [anon_sym_LT_EQ] = ACTIONS(4018), - [anon_sym_DOT] = ACTIONS(4016), - [anon_sym_EQ_GT] = ACTIONS(4018), - [anon_sym_switch] = ACTIONS(4018), - [anon_sym_when] = ACTIONS(4018), - [anon_sym_DOT_DOT] = ACTIONS(4018), - [anon_sym_and] = ACTIONS(4018), - [anon_sym_or] = ACTIONS(4018), - [anon_sym_AMP_AMP] = ACTIONS(4018), - [anon_sym_PIPE_PIPE] = ACTIONS(4018), - [anon_sym_QMARK_QMARK] = ACTIONS(4018), - [anon_sym_into] = ACTIONS(4018), - [anon_sym_on] = ACTIONS(4018), - [anon_sym_equals] = ACTIONS(4018), - [anon_sym_by] = ACTIONS(4018), - [anon_sym_as] = ACTIONS(4018), - [anon_sym_is] = ACTIONS(4018), - [anon_sym_DASH_GT] = ACTIONS(4018), - [anon_sym_with] = ACTIONS(4018), - [aux_sym_preproc_if_token3] = ACTIONS(4018), - [aux_sym_preproc_else_token1] = ACTIONS(4018), - [aux_sym_preproc_elif_token1] = ACTIONS(4018), + [anon_sym_EQ] = ACTIONS(4122), + [anon_sym_LBRACK] = ACTIONS(4120), + [anon_sym_COLON] = ACTIONS(4120), + [anon_sym_COMMA] = ACTIONS(4120), + [anon_sym_LPAREN] = ACTIONS(4120), + [anon_sym_LT] = ACTIONS(4122), + [anon_sym_GT] = ACTIONS(4122), + [anon_sym_QMARK] = ACTIONS(4122), + [anon_sym_BANG] = ACTIONS(4122), + [anon_sym_PLUS_PLUS] = ACTIONS(4120), + [anon_sym_DASH_DASH] = ACTIONS(4120), + [anon_sym_PLUS] = ACTIONS(4122), + [anon_sym_DASH] = ACTIONS(4122), + [anon_sym_STAR] = ACTIONS(4122), + [anon_sym_SLASH] = ACTIONS(4122), + [anon_sym_PERCENT] = ACTIONS(4122), + [anon_sym_CARET] = ACTIONS(4122), + [anon_sym_PIPE] = ACTIONS(4122), + [anon_sym_AMP] = ACTIONS(4122), + [anon_sym_LT_LT] = ACTIONS(4122), + [anon_sym_GT_GT] = ACTIONS(4122), + [anon_sym_GT_GT_GT] = ACTIONS(4122), + [anon_sym_EQ_EQ] = ACTIONS(4120), + [anon_sym_BANG_EQ] = ACTIONS(4120), + [anon_sym_GT_EQ] = ACTIONS(4120), + [anon_sym_LT_EQ] = ACTIONS(4120), + [anon_sym_DOT] = ACTIONS(4122), + [anon_sym_switch] = ACTIONS(4120), + [anon_sym_DOT_DOT] = ACTIONS(4120), + [anon_sym_and] = ACTIONS(4120), + [anon_sym_or] = ACTIONS(4120), + [anon_sym_PLUS_EQ] = ACTIONS(4120), + [anon_sym_DASH_EQ] = ACTIONS(4120), + [anon_sym_STAR_EQ] = ACTIONS(4120), + [anon_sym_SLASH_EQ] = ACTIONS(4120), + [anon_sym_PERCENT_EQ] = ACTIONS(4120), + [anon_sym_AMP_EQ] = ACTIONS(4120), + [anon_sym_CARET_EQ] = ACTIONS(4120), + [anon_sym_PIPE_EQ] = ACTIONS(4120), + [anon_sym_LT_LT_EQ] = ACTIONS(4120), + [anon_sym_GT_GT_EQ] = ACTIONS(4120), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(4120), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(4120), + [anon_sym_AMP_AMP] = ACTIONS(4120), + [anon_sym_PIPE_PIPE] = ACTIONS(4120), + [anon_sym_QMARK_QMARK] = ACTIONS(4122), + [anon_sym_into] = ACTIONS(4120), + [anon_sym_as] = ACTIONS(4120), + [anon_sym_is] = ACTIONS(4120), + [anon_sym_DASH_GT] = ACTIONS(4120), + [anon_sym_with] = ACTIONS(4120), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -485909,6 +485401,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(4120), }, [3207] = { [sym_preproc_region] = STATE(3207), @@ -485920,68 +485413,68 @@ 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_SEMI] = ACTIONS(3973), - [anon_sym_LBRACK] = ACTIONS(3973), - [anon_sym_COLON] = ACTIONS(3973), - [anon_sym_COMMA] = ACTIONS(3973), - [anon_sym_RBRACK] = ACTIONS(3973), - [anon_sym_LPAREN] = ACTIONS(3973), - [anon_sym_RPAREN] = ACTIONS(3973), - [anon_sym_LBRACE] = ACTIONS(3973), - [anon_sym_RBRACE] = ACTIONS(3973), - [anon_sym_LT] = ACTIONS(3971), - [anon_sym_GT] = ACTIONS(3971), - [anon_sym_in] = ACTIONS(3971), - [anon_sym_QMARK] = ACTIONS(3971), - [anon_sym_BANG] = ACTIONS(3971), - [anon_sym_PLUS_PLUS] = ACTIONS(3973), - [anon_sym_DASH_DASH] = ACTIONS(3973), - [anon_sym_PLUS] = ACTIONS(3971), - [anon_sym_DASH] = ACTIONS(3971), - [anon_sym_STAR] = ACTIONS(3973), - [anon_sym_SLASH] = ACTIONS(3971), - [anon_sym_PERCENT] = ACTIONS(3973), - [anon_sym_CARET] = ACTIONS(3973), - [anon_sym_PIPE] = ACTIONS(3971), - [anon_sym_AMP] = ACTIONS(3971), - [anon_sym_LT_LT] = ACTIONS(3973), - [anon_sym_GT_GT] = ACTIONS(3971), - [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(3971), - [anon_sym_EQ_GT] = ACTIONS(3973), - [anon_sym_switch] = ACTIONS(3973), - [anon_sym_when] = ACTIONS(3973), - [anon_sym_DOT_DOT] = ACTIONS(3973), - [anon_sym_and] = ACTIONS(3973), - [anon_sym_or] = ACTIONS(3973), - [anon_sym_AMP_AMP] = ACTIONS(3973), - [anon_sym_PIPE_PIPE] = ACTIONS(3973), - [anon_sym_QMARK_QMARK] = ACTIONS(3973), - [anon_sym_into] = ACTIONS(3973), - [anon_sym_on] = ACTIONS(3973), - [anon_sym_equals] = ACTIONS(3973), - [anon_sym_by] = ACTIONS(3973), - [anon_sym_as] = ACTIONS(3973), - [anon_sym_is] = ACTIONS(3973), - [anon_sym_DASH_GT] = ACTIONS(3973), - [anon_sym_with] = ACTIONS(3973), - [aux_sym_preproc_if_token3] = ACTIONS(3973), - [aux_sym_preproc_else_token1] = ACTIONS(3973), - [aux_sym_preproc_elif_token1] = ACTIONS(3973), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_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(3696), + [anon_sym_LBRACK] = ACTIONS(4243), + [anon_sym_COLON] = ACTIONS(4241), + [anon_sym_COMMA] = ACTIONS(4241), + [anon_sym_LPAREN] = ACTIONS(4243), + [anon_sym_LT] = ACTIONS(4246), + [anon_sym_GT] = ACTIONS(4246), + [anon_sym_QMARK] = ACTIONS(4246), + [anon_sym_BANG] = ACTIONS(4246), + [anon_sym_PLUS_PLUS] = ACTIONS(4243), + [anon_sym_DASH_DASH] = ACTIONS(4243), + [anon_sym_PLUS] = ACTIONS(4246), + [anon_sym_DASH] = ACTIONS(4246), + [anon_sym_STAR] = ACTIONS(4246), + [anon_sym_SLASH] = ACTIONS(4246), + [anon_sym_PERCENT] = ACTIONS(4246), + [anon_sym_CARET] = ACTIONS(4246), + [anon_sym_PIPE] = ACTIONS(4246), + [anon_sym_AMP] = ACTIONS(4246), + [anon_sym_LT_LT] = ACTIONS(4246), + [anon_sym_GT_GT] = ACTIONS(4246), + [anon_sym_GT_GT_GT] = ACTIONS(4246), + [anon_sym_EQ_EQ] = ACTIONS(4243), + [anon_sym_BANG_EQ] = ACTIONS(4243), + [anon_sym_GT_EQ] = ACTIONS(4243), + [anon_sym_LT_EQ] = ACTIONS(4243), + [anon_sym_DOT] = ACTIONS(4246), + [anon_sym_switch] = ACTIONS(4243), + [anon_sym_DOT_DOT] = ACTIONS(4243), + [anon_sym_and] = ACTIONS(4241), + [anon_sym_or] = ACTIONS(4241), + [anon_sym_PLUS_EQ] = ACTIONS(3711), + [anon_sym_DASH_EQ] = ACTIONS(3711), + [anon_sym_STAR_EQ] = ACTIONS(3711), + [anon_sym_SLASH_EQ] = ACTIONS(3711), + [anon_sym_PERCENT_EQ] = ACTIONS(3711), + [anon_sym_AMP_EQ] = ACTIONS(3711), + [anon_sym_CARET_EQ] = ACTIONS(3711), + [anon_sym_PIPE_EQ] = ACTIONS(3711), + [anon_sym_LT_LT_EQ] = ACTIONS(3711), + [anon_sym_GT_GT_EQ] = ACTIONS(3711), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3711), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3711), + [anon_sym_AMP_AMP] = ACTIONS(4243), + [anon_sym_PIPE_PIPE] = ACTIONS(4243), + [anon_sym_QMARK_QMARK] = ACTIONS(4246), + [anon_sym_into] = ACTIONS(4241), + [anon_sym_as] = ACTIONS(4243), + [anon_sym_is] = ACTIONS(4243), + [anon_sym_DASH_GT] = ACTIONS(4243), + [anon_sym_with] = ACTIONS(4243), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_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(4241), }, [3208] = { [sym_preproc_region] = STATE(3208), @@ -485993,58 +485486,58 @@ 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), - [sym__identifier_token] = ACTIONS(3479), - [anon_sym_extern] = ACTIONS(3482), - [anon_sym_alias] = ACTIONS(3479), - [anon_sym_global] = ACTIONS(3479), - [anon_sym_unsafe] = ACTIONS(3482), - [anon_sym_static] = ACTIONS(3482), - [anon_sym_LBRACK] = ACTIONS(3445), - [anon_sym_LPAREN] = ACTIONS(5084), - [anon_sym_ref] = ACTIONS(3482), - [anon_sym_delegate] = ACTIONS(3482), - [anon_sym_abstract] = ACTIONS(3482), - [anon_sym_async] = ACTIONS(3482), - [anon_sym_const] = ACTIONS(3482), - [anon_sym_file] = ACTIONS(3479), - [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_LT] = ACTIONS(3445), - [anon_sym_where] = ACTIONS(3479), - [anon_sym_QMARK] = ACTIONS(3445), - [anon_sym_notnull] = ACTIONS(3479), - [anon_sym_unmanaged] = ACTIONS(3479), - [anon_sym_STAR] = ACTIONS(3445), - [anon_sym_DOT] = ACTIONS(3445), - [anon_sym_scoped] = ACTIONS(3479), - [anon_sym_COLON_COLON] = ACTIONS(3445), - [anon_sym_var] = ACTIONS(3479), - [sym_predefined_type] = ACTIONS(3482), - [anon_sym_yield] = ACTIONS(3479), - [anon_sym_when] = ACTIONS(3479), - [anon_sym_from] = ACTIONS(3479), - [anon_sym_into] = ACTIONS(3479), - [anon_sym_join] = ACTIONS(3479), - [anon_sym_on] = ACTIONS(3479), - [anon_sym_equals] = ACTIONS(3479), - [anon_sym_let] = ACTIONS(3479), - [anon_sym_orderby] = ACTIONS(3479), - [anon_sym_ascending] = ACTIONS(3479), - [anon_sym_descending] = ACTIONS(3479), - [anon_sym_group] = ACTIONS(3479), - [anon_sym_by] = ACTIONS(3479), - [anon_sym_select] = ACTIONS(3479), + [anon_sym_SEMI] = ACTIONS(4811), + [anon_sym_EQ] = ACTIONS(5312), + [anon_sym_LBRACK] = ACTIONS(4811), + [anon_sym_LPAREN] = ACTIONS(4811), + [anon_sym_LT] = ACTIONS(4813), + [anon_sym_GT] = ACTIONS(4813), + [anon_sym_QMARK] = ACTIONS(4813), + [anon_sym_BANG] = ACTIONS(4813), + [anon_sym_PLUS_PLUS] = ACTIONS(4811), + [anon_sym_DASH_DASH] = ACTIONS(4811), + [anon_sym_PLUS] = ACTIONS(4813), + [anon_sym_DASH] = ACTIONS(4813), + [anon_sym_STAR] = ACTIONS(4813), + [anon_sym_SLASH] = ACTIONS(4813), + [anon_sym_PERCENT] = ACTIONS(4813), + [anon_sym_CARET] = ACTIONS(4813), + [anon_sym_PIPE] = ACTIONS(4813), + [anon_sym_AMP] = ACTIONS(4813), + [anon_sym_LT_LT] = ACTIONS(4813), + [anon_sym_GT_GT] = ACTIONS(4813), + [anon_sym_GT_GT_GT] = ACTIONS(4813), + [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(4813), + [anon_sym_switch] = ACTIONS(4811), + [anon_sym_DOT_DOT] = ACTIONS(4811), + [anon_sym_and] = ACTIONS(4811), + [anon_sym_or] = ACTIONS(4811), + [anon_sym_PLUS_EQ] = ACTIONS(5314), + [anon_sym_DASH_EQ] = ACTIONS(5314), + [anon_sym_STAR_EQ] = ACTIONS(5314), + [anon_sym_SLASH_EQ] = ACTIONS(5314), + [anon_sym_PERCENT_EQ] = ACTIONS(5314), + [anon_sym_AMP_EQ] = ACTIONS(5314), + [anon_sym_CARET_EQ] = ACTIONS(5314), + [anon_sym_PIPE_EQ] = ACTIONS(5314), + [anon_sym_LT_LT_EQ] = ACTIONS(5314), + [anon_sym_GT_GT_EQ] = ACTIONS(5314), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(5314), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(5314), + [anon_sym_AMP_AMP] = ACTIONS(4811), + [anon_sym_PIPE_PIPE] = ACTIONS(4811), + [anon_sym_QMARK_QMARK] = ACTIONS(4813), + [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), @@ -486066,58 +485559,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(4018), - [anon_sym_LBRACK] = ACTIONS(4066), - [anon_sym_COLON] = ACTIONS(4018), - [anon_sym_COMMA] = ACTIONS(4018), - [anon_sym_RBRACK] = ACTIONS(4018), - [anon_sym_LPAREN] = ACTIONS(4018), - [anon_sym_RPAREN] = ACTIONS(4018), - [anon_sym_LBRACE] = ACTIONS(4018), - [anon_sym_RBRACE] = ACTIONS(4018), - [anon_sym_LT] = ACTIONS(4016), - [anon_sym_GT] = ACTIONS(4016), - [anon_sym_in] = ACTIONS(4016), - [anon_sym_QMARK] = ACTIONS(5331), - [anon_sym_BANG] = ACTIONS(4016), - [anon_sym_PLUS_PLUS] = ACTIONS(4018), - [anon_sym_DASH_DASH] = ACTIONS(4018), - [anon_sym_PLUS] = ACTIONS(4016), - [anon_sym_DASH] = ACTIONS(4016), - [anon_sym_STAR] = ACTIONS(4072), - [anon_sym_SLASH] = ACTIONS(4016), - [anon_sym_PERCENT] = ACTIONS(4018), - [anon_sym_CARET] = ACTIONS(4018), - [anon_sym_PIPE] = ACTIONS(4016), - [anon_sym_AMP] = ACTIONS(4016), - [anon_sym_LT_LT] = ACTIONS(4018), - [anon_sym_GT_GT] = ACTIONS(4016), - [anon_sym_GT_GT_GT] = ACTIONS(4018), - [anon_sym_EQ_EQ] = ACTIONS(4018), - [anon_sym_BANG_EQ] = ACTIONS(4018), - [anon_sym_GT_EQ] = ACTIONS(4018), - [anon_sym_LT_EQ] = ACTIONS(4018), - [anon_sym_DOT] = ACTIONS(4016), - [anon_sym_EQ_GT] = ACTIONS(4018), - [anon_sym_switch] = ACTIONS(4018), - [anon_sym_when] = ACTIONS(4018), - [anon_sym_DOT_DOT] = ACTIONS(4018), - [anon_sym_and] = ACTIONS(4018), - [anon_sym_or] = ACTIONS(4018), - [anon_sym_AMP_AMP] = ACTIONS(4018), - [anon_sym_PIPE_PIPE] = ACTIONS(4018), - [anon_sym_QMARK_QMARK] = ACTIONS(4018), - [anon_sym_into] = ACTIONS(4018), - [anon_sym_on] = ACTIONS(4018), - [anon_sym_equals] = ACTIONS(4018), - [anon_sym_by] = ACTIONS(4018), - [anon_sym_as] = ACTIONS(4018), - [anon_sym_is] = ACTIONS(4018), - [anon_sym_DASH_GT] = ACTIONS(4018), - [anon_sym_with] = ACTIONS(4018), - [aux_sym_preproc_if_token3] = ACTIONS(4018), - [aux_sym_preproc_else_token1] = ACTIONS(4018), - [aux_sym_preproc_elif_token1] = ACTIONS(4018), + [anon_sym_SEMI] = ACTIONS(4863), + [anon_sym_LBRACK] = ACTIONS(4863), + [anon_sym_COLON] = ACTIONS(4863), + [anon_sym_COMMA] = ACTIONS(4863), + [anon_sym_RBRACK] = ACTIONS(4863), + [anon_sym_LPAREN] = ACTIONS(4863), + [anon_sym_RPAREN] = ACTIONS(4863), + [anon_sym_LBRACE] = ACTIONS(4863), + [anon_sym_RBRACE] = ACTIONS(4863), + [anon_sym_LT] = ACTIONS(4865), + [anon_sym_GT] = ACTIONS(4865), + [anon_sym_in] = ACTIONS(4863), + [anon_sym_where] = ACTIONS(4863), + [anon_sym_QMARK] = ACTIONS(4865), + [anon_sym_BANG] = ACTIONS(4865), + [anon_sym_PLUS_PLUS] = ACTIONS(4863), + [anon_sym_DASH_DASH] = ACTIONS(4863), + [anon_sym_PLUS] = ACTIONS(4865), + [anon_sym_DASH] = ACTIONS(4865), + [anon_sym_STAR] = ACTIONS(4863), + [anon_sym_SLASH] = ACTIONS(4865), + [anon_sym_PERCENT] = ACTIONS(4863), + [anon_sym_CARET] = ACTIONS(4863), + [anon_sym_PIPE] = ACTIONS(4865), + [anon_sym_AMP] = ACTIONS(4865), + [anon_sym_LT_LT] = ACTIONS(4863), + [anon_sym_GT_GT] = ACTIONS(4865), + [anon_sym_GT_GT_GT] = ACTIONS(4863), + [anon_sym_EQ_EQ] = ACTIONS(4863), + [anon_sym_BANG_EQ] = ACTIONS(4863), + [anon_sym_GT_EQ] = ACTIONS(4863), + [anon_sym_LT_EQ] = ACTIONS(4863), + [anon_sym_DOT] = ACTIONS(4865), + [anon_sym_EQ_GT] = ACTIONS(4863), + [anon_sym_switch] = ACTIONS(4863), + [anon_sym_when] = ACTIONS(4863), + [anon_sym_DOT_DOT] = ACTIONS(4863), + [anon_sym_and] = ACTIONS(4863), + [anon_sym_or] = ACTIONS(4863), + [anon_sym_AMP_AMP] = ACTIONS(4863), + [anon_sym_PIPE_PIPE] = ACTIONS(4863), + [anon_sym_QMARK_QMARK] = ACTIONS(4863), + [anon_sym_on] = ACTIONS(4863), + [anon_sym_equals] = ACTIONS(4863), + [anon_sym_by] = ACTIONS(4863), + [anon_sym_as] = ACTIONS(4863), + [anon_sym_is] = ACTIONS(4863), + [anon_sym_DASH_GT] = ACTIONS(4863), + [anon_sym_with] = ACTIONS(4863), + [aux_sym_preproc_if_token3] = ACTIONS(4863), + [aux_sym_preproc_else_token1] = ACTIONS(4863), + [aux_sym_preproc_elif_token1] = ACTIONS(4863), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -486139,68 +485632,68 @@ 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_EQ] = ACTIONS(4189), - [anon_sym_LBRACK] = ACTIONS(4187), - [anon_sym_COLON] = ACTIONS(4187), - [anon_sym_COMMA] = ACTIONS(4187), - [anon_sym_LPAREN] = ACTIONS(4187), - [anon_sym_LT] = ACTIONS(4189), - [anon_sym_GT] = ACTIONS(4189), - [anon_sym_QMARK] = ACTIONS(4189), - [anon_sym_BANG] = ACTIONS(4189), - [anon_sym_PLUS_PLUS] = ACTIONS(4187), - [anon_sym_DASH_DASH] = ACTIONS(4187), - [anon_sym_PLUS] = ACTIONS(4189), - [anon_sym_DASH] = ACTIONS(4189), - [anon_sym_STAR] = ACTIONS(4189), - [anon_sym_SLASH] = ACTIONS(4189), - [anon_sym_PERCENT] = ACTIONS(4189), - [anon_sym_CARET] = ACTIONS(4189), - [anon_sym_PIPE] = ACTIONS(4189), - [anon_sym_AMP] = ACTIONS(4189), - [anon_sym_LT_LT] = ACTIONS(4189), - [anon_sym_GT_GT] = ACTIONS(4189), - [anon_sym_GT_GT_GT] = ACTIONS(4189), - [anon_sym_EQ_EQ] = ACTIONS(4187), - [anon_sym_BANG_EQ] = ACTIONS(4187), - [anon_sym_GT_EQ] = ACTIONS(4187), - [anon_sym_LT_EQ] = ACTIONS(4187), - [anon_sym_DOT] = ACTIONS(4189), - [anon_sym_switch] = ACTIONS(4187), - [anon_sym_DOT_DOT] = ACTIONS(4187), - [anon_sym_and] = ACTIONS(4187), - [anon_sym_or] = ACTIONS(4187), - [anon_sym_PLUS_EQ] = ACTIONS(4187), - [anon_sym_DASH_EQ] = ACTIONS(4187), - [anon_sym_STAR_EQ] = ACTIONS(4187), - [anon_sym_SLASH_EQ] = ACTIONS(4187), - [anon_sym_PERCENT_EQ] = ACTIONS(4187), - [anon_sym_AMP_EQ] = ACTIONS(4187), - [anon_sym_CARET_EQ] = ACTIONS(4187), - [anon_sym_PIPE_EQ] = ACTIONS(4187), - [anon_sym_LT_LT_EQ] = ACTIONS(4187), - [anon_sym_GT_GT_EQ] = ACTIONS(4187), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(4187), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(4187), - [anon_sym_AMP_AMP] = ACTIONS(4187), - [anon_sym_PIPE_PIPE] = ACTIONS(4187), - [anon_sym_QMARK_QMARK] = ACTIONS(4189), - [anon_sym_into] = ACTIONS(4187), - [anon_sym_as] = ACTIONS(4187), - [anon_sym_is] = ACTIONS(4187), - [anon_sym_DASH_GT] = ACTIONS(4187), - [anon_sym_with] = ACTIONS(4187), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_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(4187), + [anon_sym_EQ] = ACTIONS(4134), + [anon_sym_LBRACK] = ACTIONS(4132), + [anon_sym_COLON] = ACTIONS(4132), + [anon_sym_COMMA] = ACTIONS(4132), + [anon_sym_LPAREN] = ACTIONS(4132), + [anon_sym_LT] = ACTIONS(4134), + [anon_sym_GT] = ACTIONS(4134), + [anon_sym_QMARK] = ACTIONS(4134), + [anon_sym_BANG] = ACTIONS(4134), + [anon_sym_PLUS_PLUS] = ACTIONS(4132), + [anon_sym_DASH_DASH] = ACTIONS(4132), + [anon_sym_PLUS] = ACTIONS(4134), + [anon_sym_DASH] = ACTIONS(4134), + [anon_sym_STAR] = ACTIONS(4134), + [anon_sym_SLASH] = ACTIONS(4134), + [anon_sym_PERCENT] = ACTIONS(4134), + [anon_sym_CARET] = ACTIONS(4134), + [anon_sym_PIPE] = ACTIONS(4134), + [anon_sym_AMP] = ACTIONS(4134), + [anon_sym_LT_LT] = ACTIONS(4134), + [anon_sym_GT_GT] = ACTIONS(4134), + [anon_sym_GT_GT_GT] = ACTIONS(4134), + [anon_sym_EQ_EQ] = ACTIONS(4132), + [anon_sym_BANG_EQ] = ACTIONS(4132), + [anon_sym_GT_EQ] = ACTIONS(4132), + [anon_sym_LT_EQ] = ACTIONS(4132), + [anon_sym_DOT] = ACTIONS(4134), + [anon_sym_switch] = ACTIONS(4132), + [anon_sym_DOT_DOT] = ACTIONS(4132), + [anon_sym_and] = ACTIONS(4132), + [anon_sym_or] = ACTIONS(4132), + [anon_sym_PLUS_EQ] = ACTIONS(4132), + [anon_sym_DASH_EQ] = ACTIONS(4132), + [anon_sym_STAR_EQ] = ACTIONS(4132), + [anon_sym_SLASH_EQ] = ACTIONS(4132), + [anon_sym_PERCENT_EQ] = ACTIONS(4132), + [anon_sym_AMP_EQ] = ACTIONS(4132), + [anon_sym_CARET_EQ] = ACTIONS(4132), + [anon_sym_PIPE_EQ] = ACTIONS(4132), + [anon_sym_LT_LT_EQ] = ACTIONS(4132), + [anon_sym_GT_GT_EQ] = ACTIONS(4132), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(4132), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(4132), + [anon_sym_AMP_AMP] = ACTIONS(4132), + [anon_sym_PIPE_PIPE] = ACTIONS(4132), + [anon_sym_QMARK_QMARK] = ACTIONS(4134), + [anon_sym_into] = ACTIONS(4132), + [anon_sym_as] = ACTIONS(4132), + [anon_sym_is] = ACTIONS(4132), + [anon_sym_DASH_GT] = ACTIONS(4132), + [anon_sym_with] = ACTIONS(4132), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_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(4132), }, [3211] = { [sym_preproc_region] = STATE(3211), @@ -486212,58 +485705,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(4870), - [anon_sym_LBRACK] = ACTIONS(4870), - [anon_sym_COLON] = ACTIONS(4870), - [anon_sym_COMMA] = ACTIONS(4870), - [anon_sym_RBRACK] = ACTIONS(4870), - [anon_sym_LPAREN] = ACTIONS(4870), - [anon_sym_RPAREN] = ACTIONS(4870), - [anon_sym_LBRACE] = ACTIONS(4870), - [anon_sym_RBRACE] = ACTIONS(4870), - [anon_sym_LT] = ACTIONS(4872), - [anon_sym_GT] = ACTIONS(4872), - [anon_sym_in] = ACTIONS(4870), - [anon_sym_where] = ACTIONS(4870), - [anon_sym_QMARK] = ACTIONS(4872), - [anon_sym_BANG] = ACTIONS(4872), - [anon_sym_PLUS_PLUS] = ACTIONS(4870), - [anon_sym_DASH_DASH] = ACTIONS(4870), - [anon_sym_PLUS] = ACTIONS(4872), - [anon_sym_DASH] = ACTIONS(4872), - [anon_sym_STAR] = ACTIONS(4870), - [anon_sym_SLASH] = ACTIONS(4872), - [anon_sym_PERCENT] = ACTIONS(4870), - [anon_sym_CARET] = ACTIONS(4870), - [anon_sym_PIPE] = ACTIONS(4872), - [anon_sym_AMP] = ACTIONS(4872), - [anon_sym_LT_LT] = ACTIONS(4870), - [anon_sym_GT_GT] = ACTIONS(4872), - [anon_sym_GT_GT_GT] = ACTIONS(4870), - [anon_sym_EQ_EQ] = ACTIONS(4870), - [anon_sym_BANG_EQ] = ACTIONS(4870), - [anon_sym_GT_EQ] = ACTIONS(4870), - [anon_sym_LT_EQ] = ACTIONS(4870), - [anon_sym_DOT] = ACTIONS(4872), - [anon_sym_EQ_GT] = ACTIONS(4870), - [anon_sym_switch] = ACTIONS(4870), - [anon_sym_when] = ACTIONS(4870), - [anon_sym_DOT_DOT] = ACTIONS(4870), - [anon_sym_and] = ACTIONS(4870), - [anon_sym_or] = ACTIONS(4870), - [anon_sym_AMP_AMP] = ACTIONS(4870), - [anon_sym_PIPE_PIPE] = ACTIONS(4870), - [anon_sym_QMARK_QMARK] = ACTIONS(4870), - [anon_sym_on] = ACTIONS(4870), - [anon_sym_equals] = ACTIONS(4870), - [anon_sym_by] = ACTIONS(4870), - [anon_sym_as] = ACTIONS(4870), - [anon_sym_is] = ACTIONS(4870), - [anon_sym_DASH_GT] = ACTIONS(4870), - [anon_sym_with] = ACTIONS(4870), - [aux_sym_preproc_if_token3] = ACTIONS(4870), - [aux_sym_preproc_else_token1] = ACTIONS(4870), - [aux_sym_preproc_elif_token1] = ACTIONS(4870), + [anon_sym_SEMI] = ACTIONS(4874), + [anon_sym_LBRACK] = ACTIONS(4874), + [anon_sym_COLON] = ACTIONS(4874), + [anon_sym_COMMA] = ACTIONS(4874), + [anon_sym_RBRACK] = ACTIONS(4874), + [anon_sym_LPAREN] = ACTIONS(4874), + [anon_sym_RPAREN] = ACTIONS(4874), + [anon_sym_RBRACE] = ACTIONS(4874), + [anon_sym_LT] = ACTIONS(4876), + [anon_sym_GT] = ACTIONS(4876), + [anon_sym_in] = ACTIONS(4874), + [anon_sym_QMARK] = ACTIONS(4876), + [anon_sym_BANG] = ACTIONS(4876), + [anon_sym_PLUS_PLUS] = ACTIONS(4874), + [anon_sym_DASH_DASH] = ACTIONS(4874), + [anon_sym_PLUS] = ACTIONS(4876), + [anon_sym_DASH] = ACTIONS(4876), + [anon_sym_STAR] = ACTIONS(4874), + [anon_sym_SLASH] = ACTIONS(4876), + [anon_sym_PERCENT] = ACTIONS(4874), + [anon_sym_CARET] = ACTIONS(4874), + [anon_sym_PIPE] = ACTIONS(4876), + [anon_sym_AMP] = ACTIONS(4876), + [anon_sym_LT_LT] = ACTIONS(4874), + [anon_sym_GT_GT] = ACTIONS(4876), + [anon_sym_GT_GT_GT] = ACTIONS(4874), + [anon_sym_EQ_EQ] = ACTIONS(4874), + [anon_sym_BANG_EQ] = ACTIONS(4874), + [anon_sym_GT_EQ] = ACTIONS(4874), + [anon_sym_LT_EQ] = ACTIONS(4874), + [anon_sym_DOT] = ACTIONS(4876), + [anon_sym_EQ_GT] = ACTIONS(4874), + [anon_sym_switch] = ACTIONS(4874), + [anon_sym_when] = ACTIONS(4874), + [anon_sym_DOT_DOT] = ACTIONS(4874), + [anon_sym_and] = ACTIONS(4874), + [anon_sym_or] = ACTIONS(4874), + [anon_sym_AMP_AMP] = ACTIONS(4874), + [anon_sym_PIPE_PIPE] = ACTIONS(4874), + [anon_sym_QMARK_QMARK] = ACTIONS(4874), + [anon_sym_on] = ACTIONS(4874), + [anon_sym_equals] = ACTIONS(4874), + [anon_sym_by] = ACTIONS(4874), + [anon_sym_as] = ACTIONS(4874), + [anon_sym_is] = ACTIONS(4874), + [anon_sym_DASH_GT] = ACTIONS(4874), + [anon_sym_with] = ACTIONS(4874), + [anon_sym_DQUOTE] = ACTIONS(4874), + [sym_string_literal_encoding] = ACTIONS(5316), + [aux_sym_preproc_if_token3] = ACTIONS(4874), + [aux_sym_preproc_else_token1] = ACTIONS(4874), + [aux_sym_preproc_elif_token1] = ACTIONS(4874), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -486276,6 +485769,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3212] = { + [sym_argument_list] = STATE(3381), + [sym_bracketed_argument_list] = STATE(2759), [sym_preproc_region] = STATE(3212), [sym_preproc_endregion] = STATE(3212), [sym_preproc_line] = STATE(3212), @@ -486285,68 +485780,66 @@ 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_EQ] = ACTIONS(3675), - [anon_sym_LBRACK] = ACTIONS(3677), - [anon_sym_COLON] = ACTIONS(3677), - [anon_sym_COMMA] = ACTIONS(3677), - [anon_sym_LPAREN] = ACTIONS(3677), - [anon_sym_LT] = ACTIONS(3675), - [anon_sym_GT] = ACTIONS(3675), - [anon_sym_QMARK] = ACTIONS(3675), - [anon_sym_BANG] = ACTIONS(3675), - [anon_sym_PLUS_PLUS] = ACTIONS(3677), - [anon_sym_DASH_DASH] = ACTIONS(3677), - [anon_sym_PLUS] = ACTIONS(3675), - [anon_sym_DASH] = ACTIONS(3675), - [anon_sym_STAR] = ACTIONS(3675), - [anon_sym_SLASH] = ACTIONS(3675), - [anon_sym_PERCENT] = ACTIONS(3675), - [anon_sym_CARET] = ACTIONS(3675), - [anon_sym_PIPE] = ACTIONS(3675), - [anon_sym_AMP] = ACTIONS(3675), - [anon_sym_LT_LT] = ACTIONS(3675), - [anon_sym_GT_GT] = ACTIONS(3675), - [anon_sym_GT_GT_GT] = ACTIONS(3675), - [anon_sym_EQ_EQ] = ACTIONS(3677), - [anon_sym_BANG_EQ] = ACTIONS(3677), - [anon_sym_GT_EQ] = ACTIONS(3677), - [anon_sym_LT_EQ] = ACTIONS(3677), - [anon_sym_DOT] = ACTIONS(3675), - [anon_sym_switch] = ACTIONS(3677), - [anon_sym_DOT_DOT] = ACTIONS(3677), - [anon_sym_and] = ACTIONS(3677), - [anon_sym_or] = ACTIONS(3677), - [anon_sym_PLUS_EQ] = ACTIONS(3677), - [anon_sym_DASH_EQ] = ACTIONS(3677), - [anon_sym_STAR_EQ] = ACTIONS(3677), - [anon_sym_SLASH_EQ] = ACTIONS(3677), - [anon_sym_PERCENT_EQ] = ACTIONS(3677), - [anon_sym_AMP_EQ] = ACTIONS(3677), - [anon_sym_CARET_EQ] = ACTIONS(3677), - [anon_sym_PIPE_EQ] = ACTIONS(3677), - [anon_sym_LT_LT_EQ] = ACTIONS(3677), - [anon_sym_GT_GT_EQ] = ACTIONS(3677), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3677), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3677), - [anon_sym_AMP_AMP] = ACTIONS(3677), - [anon_sym_PIPE_PIPE] = ACTIONS(3677), - [anon_sym_QMARK_QMARK] = ACTIONS(3675), - [anon_sym_into] = ACTIONS(3677), - [anon_sym_as] = ACTIONS(3677), - [anon_sym_is] = ACTIONS(3677), - [anon_sym_DASH_GT] = ACTIONS(3677), - [anon_sym_with] = ACTIONS(3677), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_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(3677), + [anon_sym_SEMI] = ACTIONS(4838), + [anon_sym_LBRACK] = ACTIONS(5300), + [anon_sym_COLON] = ACTIONS(4838), + [anon_sym_COMMA] = ACTIONS(4838), + [anon_sym_RBRACK] = ACTIONS(4838), + [anon_sym_LPAREN] = ACTIONS(5257), + [anon_sym_RPAREN] = ACTIONS(4838), + [anon_sym_RBRACE] = ACTIONS(4838), + [anon_sym_LT] = ACTIONS(4840), + [anon_sym_GT] = ACTIONS(4840), + [anon_sym_in] = ACTIONS(4838), + [anon_sym_QMARK] = ACTIONS(4840), + [anon_sym_BANG] = ACTIONS(5302), + [anon_sym_PLUS_PLUS] = ACTIONS(5304), + [anon_sym_DASH_DASH] = ACTIONS(5304), + [anon_sym_PLUS] = ACTIONS(4840), + [anon_sym_DASH] = ACTIONS(4840), + [anon_sym_STAR] = ACTIONS(4838), + [anon_sym_SLASH] = ACTIONS(4840), + [anon_sym_PERCENT] = ACTIONS(4838), + [anon_sym_CARET] = ACTIONS(4838), + [anon_sym_PIPE] = ACTIONS(4840), + [anon_sym_AMP] = ACTIONS(4840), + [anon_sym_LT_LT] = ACTIONS(4838), + [anon_sym_GT_GT] = ACTIONS(4840), + [anon_sym_GT_GT_GT] = ACTIONS(4838), + [anon_sym_EQ_EQ] = ACTIONS(4838), + [anon_sym_BANG_EQ] = ACTIONS(4838), + [anon_sym_GT_EQ] = ACTIONS(4838), + [anon_sym_LT_EQ] = ACTIONS(4838), + [anon_sym_DOT] = ACTIONS(4042), + [anon_sym_EQ_GT] = ACTIONS(4838), + [anon_sym_switch] = ACTIONS(4838), + [anon_sym_when] = ACTIONS(4838), + [anon_sym_DOT_DOT] = ACTIONS(4838), + [anon_sym_and] = ACTIONS(4838), + [anon_sym_or] = ACTIONS(4838), + [anon_sym_AMP_AMP] = ACTIONS(4838), + [anon_sym_PIPE_PIPE] = ACTIONS(4838), + [anon_sym_QMARK_QMARK] = ACTIONS(4838), + [anon_sym_on] = ACTIONS(4838), + [anon_sym_equals] = ACTIONS(4838), + [anon_sym_by] = ACTIONS(4838), + [anon_sym_as] = ACTIONS(4838), + [anon_sym_is] = ACTIONS(4838), + [anon_sym_DASH_GT] = ACTIONS(4044), + [anon_sym_with] = ACTIONS(4838), + [aux_sym_preproc_if_token3] = ACTIONS(4838), + [aux_sym_preproc_else_token1] = ACTIONS(4838), + [aux_sym_preproc_elif_token1] = ACTIONS(4838), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), }, [3213] = { [sym_preproc_region] = STATE(3213), @@ -486358,57 +485851,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_EQ] = ACTIONS(4136), - [anon_sym_LBRACK] = ACTIONS(4148), - [anon_sym_COLON] = ACTIONS(4148), - [anon_sym_COMMA] = ACTIONS(4148), - [anon_sym_LPAREN] = ACTIONS(4148), - [anon_sym_LT] = ACTIONS(4150), - [anon_sym_GT] = ACTIONS(4150), - [anon_sym_QMARK] = ACTIONS(4150), - [anon_sym_BANG] = ACTIONS(4150), - [anon_sym_PLUS_PLUS] = ACTIONS(4148), - [anon_sym_DASH_DASH] = ACTIONS(4148), - [anon_sym_PLUS] = ACTIONS(4150), - [anon_sym_DASH] = ACTIONS(4150), - [anon_sym_STAR] = ACTIONS(4150), - [anon_sym_SLASH] = ACTIONS(4150), - [anon_sym_PERCENT] = ACTIONS(4150), - [anon_sym_CARET] = ACTIONS(4150), - [anon_sym_PIPE] = ACTIONS(4150), - [anon_sym_AMP] = ACTIONS(4150), - [anon_sym_LT_LT] = ACTIONS(4150), - [anon_sym_GT_GT] = ACTIONS(4150), - [anon_sym_GT_GT_GT] = ACTIONS(4150), - [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(4150), - [anon_sym_switch] = ACTIONS(4148), - [anon_sym_DOT_DOT] = ACTIONS(4148), - [anon_sym_and] = ACTIONS(4148), - [anon_sym_or] = ACTIONS(4148), - [anon_sym_PLUS_EQ] = ACTIONS(4134), - [anon_sym_DASH_EQ] = ACTIONS(4134), - [anon_sym_STAR_EQ] = ACTIONS(4134), - [anon_sym_SLASH_EQ] = ACTIONS(4134), - [anon_sym_PERCENT_EQ] = ACTIONS(4134), - [anon_sym_AMP_EQ] = ACTIONS(4134), - [anon_sym_CARET_EQ] = ACTIONS(4134), - [anon_sym_PIPE_EQ] = ACTIONS(4134), - [anon_sym_LT_LT_EQ] = ACTIONS(4134), - [anon_sym_GT_GT_EQ] = ACTIONS(4134), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(4134), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(4134), - [anon_sym_AMP_AMP] = ACTIONS(4148), - [anon_sym_PIPE_PIPE] = ACTIONS(4148), - [anon_sym_QMARK_QMARK] = ACTIONS(4150), - [anon_sym_into] = ACTIONS(4148), - [anon_sym_as] = ACTIONS(4148), - [anon_sym_is] = ACTIONS(4148), - [anon_sym_DASH_GT] = ACTIONS(4148), - [anon_sym_with] = ACTIONS(4148), + [anon_sym_SEMI] = ACTIONS(4880), + [anon_sym_LBRACK] = ACTIONS(4880), + [anon_sym_COLON] = ACTIONS(4880), + [anon_sym_COMMA] = ACTIONS(4880), + [anon_sym_RBRACK] = ACTIONS(4880), + [anon_sym_LPAREN] = ACTIONS(4880), + [anon_sym_RPAREN] = ACTIONS(4880), + [anon_sym_LBRACE] = ACTIONS(4880), + [anon_sym_RBRACE] = ACTIONS(4880), + [anon_sym_LT] = ACTIONS(4882), + [anon_sym_GT] = ACTIONS(4882), + [anon_sym_in] = ACTIONS(4882), + [anon_sym_QMARK] = ACTIONS(4882), + [anon_sym_BANG] = ACTIONS(4882), + [anon_sym_PLUS_PLUS] = ACTIONS(4880), + [anon_sym_DASH_DASH] = ACTIONS(4880), + [anon_sym_PLUS] = ACTIONS(4882), + [anon_sym_DASH] = ACTIONS(4882), + [anon_sym_STAR] = ACTIONS(4880), + [anon_sym_SLASH] = ACTIONS(4882), + [anon_sym_PERCENT] = ACTIONS(4880), + [anon_sym_CARET] = ACTIONS(4880), + [anon_sym_PIPE] = ACTIONS(4882), + [anon_sym_AMP] = ACTIONS(4882), + [anon_sym_LT_LT] = ACTIONS(4880), + [anon_sym_GT_GT] = ACTIONS(4882), + [anon_sym_GT_GT_GT] = ACTIONS(4880), + [anon_sym_EQ_EQ] = ACTIONS(4880), + [anon_sym_BANG_EQ] = ACTIONS(4880), + [anon_sym_GT_EQ] = ACTIONS(4880), + [anon_sym_LT_EQ] = ACTIONS(4880), + [anon_sym_DOT] = ACTIONS(4882), + [anon_sym_EQ_GT] = ACTIONS(4880), + [anon_sym_switch] = ACTIONS(4880), + [anon_sym_when] = ACTIONS(4880), + [anon_sym_DOT_DOT] = ACTIONS(4880), + [anon_sym_and] = ACTIONS(4880), + [anon_sym_or] = ACTIONS(4880), + [anon_sym_AMP_AMP] = ACTIONS(4880), + [anon_sym_PIPE_PIPE] = ACTIONS(4880), + [anon_sym_QMARK_QMARK] = ACTIONS(4880), + [anon_sym_into] = ACTIONS(4880), + [anon_sym_on] = ACTIONS(4880), + [anon_sym_equals] = ACTIONS(4880), + [anon_sym_by] = ACTIONS(4880), + [anon_sym_as] = ACTIONS(4880), + [anon_sym_is] = ACTIONS(4880), + [anon_sym_DASH_GT] = ACTIONS(4880), + [anon_sym_with] = ACTIONS(4880), + [aux_sym_preproc_if_token3] = ACTIONS(4880), + [aux_sym_preproc_else_token1] = ACTIONS(4880), + [aux_sym_preproc_elif_token1] = ACTIONS(4880), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -486419,9 +485913,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(4148), }, [3214] = { + [sym_argument_list] = STATE(3381), + [sym_bracketed_argument_list] = STATE(2759), [sym_preproc_region] = STATE(3214), [sym_preproc_endregion] = STATE(3214), [sym_preproc_line] = STATE(3214), @@ -486431,57 +485926,56 @@ 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_EQ] = ACTIONS(4146), - [anon_sym_LBRACK] = ACTIONS(4144), - [anon_sym_COLON] = ACTIONS(4144), - [anon_sym_COMMA] = ACTIONS(4144), - [anon_sym_LPAREN] = ACTIONS(4144), - [anon_sym_LT] = ACTIONS(4146), - [anon_sym_GT] = ACTIONS(4146), - [anon_sym_QMARK] = ACTIONS(4146), - [anon_sym_BANG] = ACTIONS(4146), - [anon_sym_PLUS_PLUS] = ACTIONS(4144), - [anon_sym_DASH_DASH] = ACTIONS(4144), - [anon_sym_PLUS] = ACTIONS(4146), - [anon_sym_DASH] = ACTIONS(4146), - [anon_sym_STAR] = ACTIONS(4146), - [anon_sym_SLASH] = ACTIONS(4146), - [anon_sym_PERCENT] = ACTIONS(4146), - [anon_sym_CARET] = ACTIONS(4146), - [anon_sym_PIPE] = ACTIONS(4146), - [anon_sym_AMP] = ACTIONS(4146), - [anon_sym_LT_LT] = ACTIONS(4146), - [anon_sym_GT_GT] = ACTIONS(4146), - [anon_sym_GT_GT_GT] = ACTIONS(4146), - [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(4146), - [anon_sym_switch] = ACTIONS(4144), - [anon_sym_DOT_DOT] = ACTIONS(4144), - [anon_sym_and] = ACTIONS(4144), - [anon_sym_or] = ACTIONS(4144), - [anon_sym_PLUS_EQ] = ACTIONS(4144), - [anon_sym_DASH_EQ] = ACTIONS(4144), - [anon_sym_STAR_EQ] = ACTIONS(4144), - [anon_sym_SLASH_EQ] = ACTIONS(4144), - [anon_sym_PERCENT_EQ] = ACTIONS(4144), - [anon_sym_AMP_EQ] = ACTIONS(4144), - [anon_sym_CARET_EQ] = ACTIONS(4144), - [anon_sym_PIPE_EQ] = ACTIONS(4144), - [anon_sym_LT_LT_EQ] = ACTIONS(4144), - [anon_sym_GT_GT_EQ] = ACTIONS(4144), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(4144), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(4144), - [anon_sym_AMP_AMP] = ACTIONS(4144), - [anon_sym_PIPE_PIPE] = ACTIONS(4144), - [anon_sym_QMARK_QMARK] = ACTIONS(4146), - [anon_sym_into] = ACTIONS(4144), - [anon_sym_as] = ACTIONS(4144), - [anon_sym_is] = ACTIONS(4144), - [anon_sym_DASH_GT] = ACTIONS(4144), - [anon_sym_with] = ACTIONS(4144), + [anon_sym_SEMI] = ACTIONS(4842), + [anon_sym_LBRACK] = ACTIONS(5300), + [anon_sym_COLON] = ACTIONS(4842), + [anon_sym_COMMA] = ACTIONS(4842), + [anon_sym_RBRACK] = ACTIONS(4842), + [anon_sym_LPAREN] = ACTIONS(5257), + [anon_sym_RPAREN] = ACTIONS(4842), + [anon_sym_RBRACE] = ACTIONS(4842), + [anon_sym_LT] = ACTIONS(4844), + [anon_sym_GT] = ACTIONS(4844), + [anon_sym_in] = ACTIONS(4842), + [anon_sym_QMARK] = ACTIONS(4844), + [anon_sym_BANG] = ACTIONS(5302), + [anon_sym_PLUS_PLUS] = ACTIONS(5304), + [anon_sym_DASH_DASH] = ACTIONS(5304), + [anon_sym_PLUS] = ACTIONS(4844), + [anon_sym_DASH] = ACTIONS(4844), + [anon_sym_STAR] = ACTIONS(4842), + [anon_sym_SLASH] = ACTIONS(4844), + [anon_sym_PERCENT] = ACTIONS(4842), + [anon_sym_CARET] = ACTIONS(4842), + [anon_sym_PIPE] = ACTIONS(4844), + [anon_sym_AMP] = ACTIONS(4844), + [anon_sym_LT_LT] = ACTIONS(4842), + [anon_sym_GT_GT] = ACTIONS(4844), + [anon_sym_GT_GT_GT] = ACTIONS(4842), + [anon_sym_EQ_EQ] = ACTIONS(4842), + [anon_sym_BANG_EQ] = ACTIONS(4842), + [anon_sym_GT_EQ] = ACTIONS(4842), + [anon_sym_LT_EQ] = ACTIONS(4842), + [anon_sym_DOT] = ACTIONS(4042), + [anon_sym_EQ_GT] = ACTIONS(4842), + [anon_sym_switch] = ACTIONS(4842), + [anon_sym_when] = ACTIONS(4842), + [anon_sym_DOT_DOT] = ACTIONS(4842), + [anon_sym_and] = ACTIONS(4842), + [anon_sym_or] = ACTIONS(4842), + [anon_sym_AMP_AMP] = ACTIONS(4842), + [anon_sym_PIPE_PIPE] = ACTIONS(4842), + [anon_sym_QMARK_QMARK] = ACTIONS(4842), + [anon_sym_on] = ACTIONS(4842), + [anon_sym_equals] = ACTIONS(4842), + [anon_sym_by] = ACTIONS(4842), + [anon_sym_as] = ACTIONS(4842), + [anon_sym_is] = ACTIONS(4842), + [anon_sym_DASH_GT] = ACTIONS(4044), + [anon_sym_with] = ACTIONS(4842), + [aux_sym_preproc_if_token3] = ACTIONS(4842), + [aux_sym_preproc_else_token1] = ACTIONS(4842), + [aux_sym_preproc_elif_token1] = ACTIONS(4842), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -486492,7 +485986,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(4144), }, [3215] = { [sym_preproc_region] = STATE(3215), @@ -486504,58 +485997,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(4929), - [anon_sym_LBRACK] = ACTIONS(4929), - [anon_sym_COLON] = ACTIONS(4929), - [anon_sym_COMMA] = ACTIONS(4929), - [anon_sym_RBRACK] = ACTIONS(4929), - [anon_sym_LPAREN] = ACTIONS(4929), - [anon_sym_RPAREN] = ACTIONS(4929), - [anon_sym_LBRACE] = ACTIONS(4929), - [anon_sym_RBRACE] = ACTIONS(4929), - [anon_sym_LT] = ACTIONS(4931), - [anon_sym_GT] = ACTIONS(4931), - [anon_sym_in] = ACTIONS(4929), - [anon_sym_where] = ACTIONS(4929), - [anon_sym_QMARK] = ACTIONS(4931), - [anon_sym_BANG] = ACTIONS(4931), - [anon_sym_PLUS_PLUS] = ACTIONS(4929), - [anon_sym_DASH_DASH] = ACTIONS(4929), - [anon_sym_PLUS] = ACTIONS(4931), - [anon_sym_DASH] = ACTIONS(4931), - [anon_sym_STAR] = ACTIONS(4929), - [anon_sym_SLASH] = ACTIONS(4931), - [anon_sym_PERCENT] = ACTIONS(4929), - [anon_sym_CARET] = ACTIONS(4929), - [anon_sym_PIPE] = ACTIONS(4931), - [anon_sym_AMP] = ACTIONS(4931), - [anon_sym_LT_LT] = ACTIONS(4929), - [anon_sym_GT_GT] = ACTIONS(4931), - [anon_sym_GT_GT_GT] = ACTIONS(4929), - [anon_sym_EQ_EQ] = ACTIONS(4929), - [anon_sym_BANG_EQ] = ACTIONS(4929), - [anon_sym_GT_EQ] = ACTIONS(4929), - [anon_sym_LT_EQ] = ACTIONS(4929), - [anon_sym_DOT] = ACTIONS(4931), - [anon_sym_EQ_GT] = ACTIONS(4929), - [anon_sym_switch] = ACTIONS(4929), - [anon_sym_when] = ACTIONS(4929), - [anon_sym_DOT_DOT] = ACTIONS(4929), - [anon_sym_and] = ACTIONS(4929), - [anon_sym_or] = ACTIONS(4929), - [anon_sym_AMP_AMP] = ACTIONS(4929), - [anon_sym_PIPE_PIPE] = ACTIONS(4929), - [anon_sym_QMARK_QMARK] = ACTIONS(4929), - [anon_sym_on] = ACTIONS(4929), - [anon_sym_equals] = ACTIONS(4929), - [anon_sym_by] = ACTIONS(4929), - [anon_sym_as] = ACTIONS(4929), - [anon_sym_is] = ACTIONS(4929), - [anon_sym_DASH_GT] = ACTIONS(4929), - [anon_sym_with] = ACTIONS(4929), - [aux_sym_preproc_if_token3] = ACTIONS(4929), - [aux_sym_preproc_else_token1] = ACTIONS(4929), - [aux_sym_preproc_elif_token1] = ACTIONS(4929), + [anon_sym_SEMI] = ACTIONS(4887), + [anon_sym_LBRACK] = ACTIONS(4887), + [anon_sym_COLON] = ACTIONS(4887), + [anon_sym_COMMA] = ACTIONS(4887), + [anon_sym_RBRACK] = ACTIONS(4887), + [anon_sym_LPAREN] = ACTIONS(4887), + [anon_sym_RPAREN] = ACTIONS(4887), + [anon_sym_LBRACE] = ACTIONS(4887), + [anon_sym_RBRACE] = ACTIONS(4887), + [anon_sym_LT] = ACTIONS(4889), + [anon_sym_GT] = ACTIONS(4889), + [anon_sym_in] = ACTIONS(4887), + [anon_sym_where] = ACTIONS(4887), + [anon_sym_QMARK] = ACTIONS(4889), + [anon_sym_BANG] = ACTIONS(4889), + [anon_sym_PLUS_PLUS] = ACTIONS(4887), + [anon_sym_DASH_DASH] = ACTIONS(4887), + [anon_sym_PLUS] = ACTIONS(4889), + [anon_sym_DASH] = ACTIONS(4889), + [anon_sym_STAR] = ACTIONS(4887), + [anon_sym_SLASH] = ACTIONS(4889), + [anon_sym_PERCENT] = ACTIONS(4887), + [anon_sym_CARET] = ACTIONS(4887), + [anon_sym_PIPE] = ACTIONS(4889), + [anon_sym_AMP] = ACTIONS(4889), + [anon_sym_LT_LT] = ACTIONS(4887), + [anon_sym_GT_GT] = ACTIONS(4889), + [anon_sym_GT_GT_GT] = ACTIONS(4887), + [anon_sym_EQ_EQ] = ACTIONS(4887), + [anon_sym_BANG_EQ] = ACTIONS(4887), + [anon_sym_GT_EQ] = ACTIONS(4887), + [anon_sym_LT_EQ] = ACTIONS(4887), + [anon_sym_DOT] = ACTIONS(4889), + [anon_sym_EQ_GT] = ACTIONS(4887), + [anon_sym_switch] = ACTIONS(4887), + [anon_sym_when] = ACTIONS(4887), + [anon_sym_DOT_DOT] = ACTIONS(4887), + [anon_sym_and] = ACTIONS(4887), + [anon_sym_or] = ACTIONS(4887), + [anon_sym_AMP_AMP] = ACTIONS(4887), + [anon_sym_PIPE_PIPE] = ACTIONS(4887), + [anon_sym_QMARK_QMARK] = ACTIONS(4887), + [anon_sym_on] = ACTIONS(4887), + [anon_sym_equals] = ACTIONS(4887), + [anon_sym_by] = ACTIONS(4887), + [anon_sym_as] = ACTIONS(4887), + [anon_sym_is] = ACTIONS(4887), + [anon_sym_DASH_GT] = ACTIONS(4887), + [anon_sym_with] = ACTIONS(4887), + [aux_sym_preproc_if_token3] = ACTIONS(4887), + [aux_sym_preproc_else_token1] = ACTIONS(4887), + [aux_sym_preproc_elif_token1] = ACTIONS(4887), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -486568,7 +486061,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3216] = { - [sym_initializer_expression] = STATE(3457), [sym_preproc_region] = STATE(3216), [sym_preproc_endregion] = STATE(3216), [sym_preproc_line] = STATE(3216), @@ -486578,57 +486070,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(4866), - [anon_sym_LBRACK] = ACTIONS(4866), - [anon_sym_COLON] = ACTIONS(4866), - [anon_sym_COMMA] = ACTIONS(4866), - [anon_sym_RBRACK] = ACTIONS(4866), - [anon_sym_LPAREN] = ACTIONS(4866), - [anon_sym_RPAREN] = ACTIONS(4866), - [anon_sym_LBRACE] = ACTIONS(1313), - [anon_sym_RBRACE] = ACTIONS(4866), - [anon_sym_LT] = ACTIONS(4868), - [anon_sym_GT] = ACTIONS(4868), - [anon_sym_in] = ACTIONS(4866), - [anon_sym_QMARK] = ACTIONS(4868), - [anon_sym_BANG] = ACTIONS(4868), - [anon_sym_PLUS_PLUS] = ACTIONS(4866), - [anon_sym_DASH_DASH] = ACTIONS(4866), - [anon_sym_PLUS] = ACTIONS(4868), - [anon_sym_DASH] = ACTIONS(4868), - [anon_sym_STAR] = ACTIONS(4866), - [anon_sym_SLASH] = ACTIONS(4868), - [anon_sym_PERCENT] = ACTIONS(4866), - [anon_sym_CARET] = ACTIONS(4866), - [anon_sym_PIPE] = ACTIONS(4868), - [anon_sym_AMP] = ACTIONS(4868), - [anon_sym_LT_LT] = ACTIONS(4866), - [anon_sym_GT_GT] = ACTIONS(4868), - [anon_sym_GT_GT_GT] = ACTIONS(4866), - [anon_sym_EQ_EQ] = ACTIONS(4866), - [anon_sym_BANG_EQ] = ACTIONS(4866), - [anon_sym_GT_EQ] = ACTIONS(4866), - [anon_sym_LT_EQ] = ACTIONS(4866), - [anon_sym_DOT] = ACTIONS(4868), - [anon_sym_EQ_GT] = ACTIONS(4866), - [anon_sym_switch] = ACTIONS(4866), - [anon_sym_when] = ACTIONS(4866), - [anon_sym_DOT_DOT] = ACTIONS(4866), - [anon_sym_and] = ACTIONS(4866), - [anon_sym_or] = ACTIONS(4866), - [anon_sym_AMP_AMP] = ACTIONS(4866), - [anon_sym_PIPE_PIPE] = ACTIONS(4866), - [anon_sym_QMARK_QMARK] = ACTIONS(4866), - [anon_sym_on] = ACTIONS(4866), - [anon_sym_equals] = ACTIONS(4866), - [anon_sym_by] = ACTIONS(4866), - [anon_sym_as] = ACTIONS(4866), - [anon_sym_is] = ACTIONS(4866), - [anon_sym_DASH_GT] = ACTIONS(4866), - [anon_sym_with] = ACTIONS(4866), - [aux_sym_preproc_if_token3] = ACTIONS(4866), - [aux_sym_preproc_else_token1] = ACTIONS(4866), - [aux_sym_preproc_elif_token1] = ACTIONS(4866), + [anon_sym_SEMI] = ACTIONS(3963), + [anon_sym_LBRACK] = ACTIONS(4033), + [anon_sym_COLON] = ACTIONS(3963), + [anon_sym_COMMA] = ACTIONS(3963), + [anon_sym_RBRACK] = ACTIONS(3963), + [anon_sym_LPAREN] = ACTIONS(3963), + [anon_sym_RPAREN] = ACTIONS(3963), + [anon_sym_LBRACE] = ACTIONS(3963), + [anon_sym_RBRACE] = ACTIONS(3963), + [anon_sym_LT] = ACTIONS(3961), + [anon_sym_GT] = ACTIONS(3961), + [anon_sym_in] = ACTIONS(3963), + [anon_sym_QMARK] = ACTIONS(3961), + [anon_sym_BANG] = ACTIONS(3961), + [anon_sym_PLUS_PLUS] = ACTIONS(3963), + [anon_sym_DASH_DASH] = ACTIONS(3963), + [anon_sym_PLUS] = ACTIONS(3961), + [anon_sym_DASH] = ACTIONS(3961), + [anon_sym_STAR] = ACTIONS(4039), + [anon_sym_SLASH] = ACTIONS(3961), + [anon_sym_PERCENT] = ACTIONS(3963), + [anon_sym_CARET] = ACTIONS(3963), + [anon_sym_PIPE] = ACTIONS(3961), + [anon_sym_AMP] = ACTIONS(3961), + [anon_sym_LT_LT] = ACTIONS(3963), + [anon_sym_GT_GT] = ACTIONS(3961), + [anon_sym_GT_GT_GT] = ACTIONS(3963), + [anon_sym_EQ_EQ] = ACTIONS(3963), + [anon_sym_BANG_EQ] = ACTIONS(3963), + [anon_sym_GT_EQ] = ACTIONS(3963), + [anon_sym_LT_EQ] = ACTIONS(3963), + [anon_sym_DOT] = ACTIONS(3961), + [anon_sym_EQ_GT] = ACTIONS(3963), + [anon_sym_switch] = ACTIONS(3963), + [anon_sym_when] = ACTIONS(3963), + [anon_sym_DOT_DOT] = ACTIONS(3963), + [anon_sym_and] = ACTIONS(3963), + [anon_sym_or] = ACTIONS(3963), + [anon_sym_AMP_AMP] = ACTIONS(3963), + [anon_sym_PIPE_PIPE] = ACTIONS(3963), + [anon_sym_QMARK_QMARK] = ACTIONS(3963), + [anon_sym_on] = ACTIONS(3963), + [anon_sym_equals] = ACTIONS(3963), + [anon_sym_by] = ACTIONS(3963), + [anon_sym_as] = ACTIONS(3963), + [anon_sym_is] = ACTIONS(3963), + [anon_sym_DASH_GT] = ACTIONS(3963), + [anon_sym_with] = ACTIONS(3963), + [aux_sym_preproc_if_token3] = ACTIONS(3963), + [aux_sym_preproc_else_token1] = ACTIONS(3963), + [aux_sym_preproc_elif_token1] = ACTIONS(3963), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -486650,131 +486142,57 @@ 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_EQ] = ACTIONS(3689), - [anon_sym_LBRACK] = ACTIONS(3697), - [anon_sym_COLON] = ACTIONS(3697), - [anon_sym_COMMA] = ACTIONS(3697), - [anon_sym_LPAREN] = ACTIONS(3697), - [anon_sym_LT] = ACTIONS(3689), - [anon_sym_GT] = ACTIONS(3689), - [anon_sym_QMARK] = ACTIONS(3689), - [anon_sym_BANG] = ACTIONS(3689), - [anon_sym_PLUS_PLUS] = ACTIONS(3697), - [anon_sym_DASH_DASH] = ACTIONS(3697), - [anon_sym_PLUS] = ACTIONS(3689), - [anon_sym_DASH] = ACTIONS(3689), - [anon_sym_STAR] = ACTIONS(3689), - [anon_sym_SLASH] = ACTIONS(3689), - [anon_sym_PERCENT] = ACTIONS(3689), - [anon_sym_CARET] = ACTIONS(3689), - [anon_sym_PIPE] = ACTIONS(3689), - [anon_sym_AMP] = ACTIONS(3689), - [anon_sym_LT_LT] = ACTIONS(3689), - [anon_sym_GT_GT] = ACTIONS(3689), - [anon_sym_GT_GT_GT] = ACTIONS(3689), - [anon_sym_EQ_EQ] = ACTIONS(3697), - [anon_sym_BANG_EQ] = ACTIONS(3697), - [anon_sym_GT_EQ] = ACTIONS(3697), - [anon_sym_LT_EQ] = ACTIONS(3697), - [anon_sym_DOT] = ACTIONS(3689), - [anon_sym_switch] = ACTIONS(3697), - [anon_sym_DOT_DOT] = ACTIONS(3697), - [anon_sym_and] = ACTIONS(3697), - [anon_sym_or] = ACTIONS(3697), - [anon_sym_PLUS_EQ] = ACTIONS(3697), - [anon_sym_DASH_EQ] = ACTIONS(3697), - [anon_sym_STAR_EQ] = ACTIONS(3697), - [anon_sym_SLASH_EQ] = ACTIONS(3697), - [anon_sym_PERCENT_EQ] = ACTIONS(3697), - [anon_sym_AMP_EQ] = ACTIONS(3697), - [anon_sym_CARET_EQ] = ACTIONS(3697), - [anon_sym_PIPE_EQ] = ACTIONS(3697), - [anon_sym_LT_LT_EQ] = ACTIONS(3697), - [anon_sym_GT_GT_EQ] = ACTIONS(3697), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3697), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3697), - [anon_sym_AMP_AMP] = ACTIONS(3697), - [anon_sym_PIPE_PIPE] = ACTIONS(3697), - [anon_sym_QMARK_QMARK] = ACTIONS(3689), - [anon_sym_into] = ACTIONS(3697), - [anon_sym_as] = ACTIONS(3697), - [anon_sym_is] = ACTIONS(3697), - [anon_sym_DASH_GT] = ACTIONS(3697), - [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(3697), - }, - [3218] = { - [sym_argument_list] = STATE(3487), - [sym_bracketed_argument_list] = STATE(2808), - [sym_preproc_region] = STATE(3218), - [sym_preproc_endregion] = STATE(3218), - [sym_preproc_line] = STATE(3218), - [sym_preproc_pragma] = STATE(3218), - [sym_preproc_nullable] = STATE(3218), - [sym_preproc_error] = STATE(3218), - [sym_preproc_warning] = STATE(3218), - [sym_preproc_define] = STATE(3218), - [sym_preproc_undef] = STATE(3218), - [anon_sym_SEMI] = ACTIONS(4854), - [anon_sym_LBRACK] = ACTIONS(5302), - [anon_sym_COLON] = ACTIONS(4854), - [anon_sym_COMMA] = ACTIONS(4854), - [anon_sym_RBRACK] = ACTIONS(4854), - [anon_sym_LPAREN] = ACTIONS(5264), - [anon_sym_RPAREN] = ACTIONS(4854), - [anon_sym_RBRACE] = ACTIONS(4854), - [anon_sym_LT] = ACTIONS(4856), - [anon_sym_GT] = ACTIONS(4856), - [anon_sym_in] = ACTIONS(4854), - [anon_sym_QMARK] = ACTIONS(4856), - [anon_sym_BANG] = ACTIONS(5304), - [anon_sym_PLUS_PLUS] = ACTIONS(5306), - [anon_sym_DASH_DASH] = ACTIONS(5306), - [anon_sym_PLUS] = ACTIONS(4856), - [anon_sym_DASH] = ACTIONS(4856), - [anon_sym_STAR] = ACTIONS(4854), - [anon_sym_SLASH] = ACTIONS(4856), - [anon_sym_PERCENT] = ACTIONS(4854), - [anon_sym_CARET] = ACTIONS(4854), - [anon_sym_PIPE] = ACTIONS(4856), - [anon_sym_AMP] = ACTIONS(4856), - [anon_sym_LT_LT] = ACTIONS(4854), - [anon_sym_GT_GT] = ACTIONS(4856), - [anon_sym_GT_GT_GT] = ACTIONS(4854), - [anon_sym_EQ_EQ] = ACTIONS(4854), - [anon_sym_BANG_EQ] = ACTIONS(4854), - [anon_sym_GT_EQ] = ACTIONS(4854), - [anon_sym_LT_EQ] = ACTIONS(4854), - [anon_sym_DOT] = ACTIONS(4100), - [anon_sym_EQ_GT] = ACTIONS(4854), - [anon_sym_switch] = ACTIONS(4854), - [anon_sym_when] = ACTIONS(4854), - [anon_sym_DOT_DOT] = ACTIONS(4854), - [anon_sym_and] = ACTIONS(4854), - [anon_sym_or] = ACTIONS(4854), - [anon_sym_AMP_AMP] = ACTIONS(4854), - [anon_sym_PIPE_PIPE] = ACTIONS(4854), - [anon_sym_QMARK_QMARK] = ACTIONS(4854), - [anon_sym_on] = ACTIONS(4854), - [anon_sym_equals] = ACTIONS(4854), - [anon_sym_by] = ACTIONS(4854), - [anon_sym_as] = ACTIONS(4854), - [anon_sym_is] = ACTIONS(4854), - [anon_sym_DASH_GT] = ACTIONS(4102), - [anon_sym_with] = ACTIONS(4854), - [aux_sym_preproc_if_token3] = ACTIONS(4854), - [aux_sym_preproc_else_token1] = ACTIONS(4854), - [aux_sym_preproc_elif_token1] = ACTIONS(4854), + [anon_sym_SEMI] = ACTIONS(4090), + [anon_sym_LBRACK] = ACTIONS(4090), + [anon_sym_COLON] = ACTIONS(4090), + [anon_sym_COMMA] = ACTIONS(4090), + [anon_sym_RBRACK] = ACTIONS(4090), + [anon_sym_LPAREN] = ACTIONS(4090), + [anon_sym_RPAREN] = ACTIONS(4090), + [anon_sym_LBRACE] = ACTIONS(4090), + [anon_sym_RBRACE] = ACTIONS(4090), + [anon_sym_LT] = ACTIONS(4088), + [anon_sym_GT] = ACTIONS(4088), + [anon_sym_in] = ACTIONS(4090), + [anon_sym_QMARK] = ACTIONS(4088), + [anon_sym_BANG] = ACTIONS(4088), + [anon_sym_PLUS_PLUS] = ACTIONS(4090), + [anon_sym_DASH_DASH] = ACTIONS(4090), + [anon_sym_PLUS] = ACTIONS(4088), + [anon_sym_DASH] = ACTIONS(4088), + [anon_sym_STAR] = ACTIONS(4090), + [anon_sym_SLASH] = ACTIONS(4088), + [anon_sym_PERCENT] = ACTIONS(4090), + [anon_sym_CARET] = ACTIONS(4090), + [anon_sym_PIPE] = ACTIONS(4088), + [anon_sym_AMP] = ACTIONS(4088), + [anon_sym_LT_LT] = ACTIONS(4090), + [anon_sym_GT_GT] = ACTIONS(4088), + [anon_sym_GT_GT_GT] = ACTIONS(4090), + [anon_sym_EQ_EQ] = ACTIONS(4090), + [anon_sym_BANG_EQ] = ACTIONS(4090), + [anon_sym_GT_EQ] = ACTIONS(4090), + [anon_sym_LT_EQ] = ACTIONS(4090), + [anon_sym_DOT] = ACTIONS(4088), + [anon_sym_EQ_GT] = ACTIONS(4090), + [anon_sym_switch] = ACTIONS(4090), + [anon_sym_when] = ACTIONS(4090), + [anon_sym_DOT_DOT] = ACTIONS(4090), + [anon_sym_and] = ACTIONS(4090), + [anon_sym_or] = ACTIONS(4090), + [anon_sym_AMP_AMP] = ACTIONS(4090), + [anon_sym_PIPE_PIPE] = ACTIONS(4090), + [anon_sym_QMARK_QMARK] = ACTIONS(4090), + [anon_sym_on] = ACTIONS(4090), + [anon_sym_equals] = ACTIONS(4090), + [anon_sym_by] = ACTIONS(4090), + [anon_sym_as] = ACTIONS(4090), + [anon_sym_is] = ACTIONS(4090), + [anon_sym_DASH_GT] = ACTIONS(4090), + [anon_sym_with] = ACTIONS(4090), + [aux_sym_preproc_if_token3] = ACTIONS(4090), + [aux_sym_preproc_else_token1] = ACTIONS(4090), + [aux_sym_preproc_elif_token1] = ACTIONS(4090), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -486786,68 +486204,139 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), }, - [3219] = { - [sym_preproc_region] = STATE(3219), - [sym_preproc_endregion] = STATE(3219), - [sym_preproc_line] = STATE(3219), - [sym_preproc_pragma] = STATE(3219), - [sym_preproc_nullable] = STATE(3219), - [sym_preproc_error] = STATE(3219), - [sym_preproc_warning] = STATE(3219), - [sym_preproc_define] = STATE(3219), - [sym_preproc_undef] = STATE(3219), - [anon_sym_SEMI] = ACTIONS(4018), - [anon_sym_LBRACK] = ACTIONS(4066), - [anon_sym_COLON] = ACTIONS(4018), - [anon_sym_COMMA] = ACTIONS(4018), - [anon_sym_RBRACK] = ACTIONS(4018), - [anon_sym_LPAREN] = ACTIONS(4018), - [anon_sym_RPAREN] = ACTIONS(4018), - [anon_sym_LBRACE] = ACTIONS(4018), - [anon_sym_RBRACE] = ACTIONS(4018), - [anon_sym_LT] = ACTIONS(4016), - [anon_sym_GT] = ACTIONS(4016), - [anon_sym_in] = ACTIONS(4016), - [anon_sym_QMARK] = ACTIONS(5331), - [anon_sym_BANG] = ACTIONS(4016), - [anon_sym_PLUS_PLUS] = ACTIONS(4018), - [anon_sym_DASH_DASH] = ACTIONS(4018), - [anon_sym_PLUS] = ACTIONS(4016), - [anon_sym_DASH] = ACTIONS(4016), - [anon_sym_STAR] = ACTIONS(4072), - [anon_sym_SLASH] = ACTIONS(4016), - [anon_sym_PERCENT] = ACTIONS(4018), - [anon_sym_CARET] = ACTIONS(4018), - [anon_sym_PIPE] = ACTIONS(4016), - [anon_sym_AMP] = ACTIONS(4016), - [anon_sym_LT_LT] = ACTIONS(4018), - [anon_sym_GT_GT] = ACTIONS(4016), - [anon_sym_GT_GT_GT] = ACTIONS(4018), - [anon_sym_EQ_EQ] = ACTIONS(4018), - [anon_sym_BANG_EQ] = ACTIONS(4018), - [anon_sym_GT_EQ] = ACTIONS(4018), - [anon_sym_LT_EQ] = ACTIONS(4018), - [anon_sym_DOT] = ACTIONS(5319), - [anon_sym_EQ_GT] = ACTIONS(4018), - [anon_sym_switch] = ACTIONS(4018), - [anon_sym_when] = ACTIONS(4018), - [anon_sym_DOT_DOT] = ACTIONS(4018), - [anon_sym_and] = ACTIONS(4018), - [anon_sym_or] = ACTIONS(4018), - [anon_sym_AMP_AMP] = ACTIONS(4018), - [anon_sym_PIPE_PIPE] = ACTIONS(4018), - [anon_sym_QMARK_QMARK] = ACTIONS(4018), - [anon_sym_into] = ACTIONS(4018), - [anon_sym_on] = ACTIONS(4018), - [anon_sym_equals] = ACTIONS(4018), - [anon_sym_by] = ACTIONS(4018), - [anon_sym_as] = ACTIONS(4018), - [anon_sym_is] = ACTIONS(4018), - [anon_sym_DASH_GT] = ACTIONS(4018), - [anon_sym_with] = ACTIONS(4018), - [aux_sym_preproc_if_token3] = ACTIONS(4018), - [aux_sym_preproc_else_token1] = ACTIONS(4018), - [aux_sym_preproc_elif_token1] = ACTIONS(4018), + [3218] = { + [sym_preproc_region] = STATE(3218), + [sym_preproc_endregion] = STATE(3218), + [sym_preproc_line] = STATE(3218), + [sym_preproc_pragma] = STATE(3218), + [sym_preproc_nullable] = STATE(3218), + [sym_preproc_error] = STATE(3218), + [sym_preproc_warning] = STATE(3218), + [sym_preproc_define] = STATE(3218), + [sym_preproc_undef] = STATE(3218), + [anon_sym_SEMI] = ACTIONS(3957), + [anon_sym_LBRACK] = ACTIONS(3957), + [anon_sym_COLON] = ACTIONS(3957), + [anon_sym_COMMA] = ACTIONS(3957), + [anon_sym_RBRACK] = ACTIONS(3957), + [anon_sym_LPAREN] = ACTIONS(3957), + [anon_sym_RPAREN] = ACTIONS(3957), + [anon_sym_LBRACE] = ACTIONS(3957), + [anon_sym_RBRACE] = ACTIONS(3957), + [anon_sym_LT] = ACTIONS(3955), + [anon_sym_GT] = ACTIONS(3955), + [anon_sym_in] = ACTIONS(3957), + [anon_sym_QMARK] = ACTIONS(3955), + [anon_sym_BANG] = ACTIONS(3955), + [anon_sym_PLUS_PLUS] = ACTIONS(3957), + [anon_sym_DASH_DASH] = ACTIONS(3957), + [anon_sym_PLUS] = ACTIONS(3955), + [anon_sym_DASH] = ACTIONS(3955), + [anon_sym_STAR] = ACTIONS(3957), + [anon_sym_SLASH] = ACTIONS(3955), + [anon_sym_PERCENT] = ACTIONS(3957), + [anon_sym_CARET] = ACTIONS(3957), + [anon_sym_PIPE] = ACTIONS(3955), + [anon_sym_AMP] = ACTIONS(3955), + [anon_sym_LT_LT] = ACTIONS(3957), + [anon_sym_GT_GT] = ACTIONS(3955), + [anon_sym_GT_GT_GT] = ACTIONS(3957), + [anon_sym_EQ_EQ] = ACTIONS(3957), + [anon_sym_BANG_EQ] = ACTIONS(3957), + [anon_sym_GT_EQ] = ACTIONS(3957), + [anon_sym_LT_EQ] = ACTIONS(3957), + [anon_sym_DOT] = ACTIONS(3955), + [anon_sym_EQ_GT] = ACTIONS(3957), + [anon_sym_switch] = ACTIONS(3957), + [anon_sym_when] = ACTIONS(3957), + [anon_sym_DOT_DOT] = ACTIONS(3957), + [anon_sym_and] = ACTIONS(3957), + [anon_sym_or] = ACTIONS(3957), + [anon_sym_AMP_AMP] = ACTIONS(3957), + [anon_sym_PIPE_PIPE] = ACTIONS(3957), + [anon_sym_QMARK_QMARK] = ACTIONS(3957), + [anon_sym_on] = ACTIONS(3957), + [anon_sym_equals] = ACTIONS(3957), + [anon_sym_by] = ACTIONS(3957), + [anon_sym_as] = ACTIONS(3957), + [anon_sym_is] = ACTIONS(3957), + [anon_sym_DASH_GT] = ACTIONS(3957), + [anon_sym_with] = ACTIONS(3957), + [aux_sym_preproc_if_token3] = ACTIONS(3957), + [aux_sym_preproc_else_token1] = ACTIONS(3957), + [aux_sym_preproc_elif_token1] = ACTIONS(3957), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + }, + [3219] = { + [sym_preproc_region] = STATE(3219), + [sym_preproc_endregion] = STATE(3219), + [sym_preproc_line] = STATE(3219), + [sym_preproc_pragma] = STATE(3219), + [sym_preproc_nullable] = STATE(3219), + [sym_preproc_error] = STATE(3219), + [sym_preproc_warning] = STATE(3219), + [sym_preproc_define] = STATE(3219), + [sym_preproc_undef] = STATE(3219), + [anon_sym_SEMI] = ACTIONS(5318), + [anon_sym_LBRACK] = ACTIONS(5318), + [anon_sym_COLON] = ACTIONS(5318), + [anon_sym_COMMA] = ACTIONS(5318), + [anon_sym_RBRACK] = ACTIONS(5318), + [anon_sym_LPAREN] = ACTIONS(5318), + [anon_sym_RPAREN] = ACTIONS(5318), + [anon_sym_RBRACE] = ACTIONS(5318), + [anon_sym_LT] = ACTIONS(5320), + [anon_sym_GT] = ACTIONS(5320), + [anon_sym_in] = ACTIONS(5320), + [anon_sym_QMARK] = ACTIONS(5320), + [anon_sym_BANG] = ACTIONS(5320), + [anon_sym_PLUS_PLUS] = ACTIONS(5318), + [anon_sym_DASH_DASH] = ACTIONS(5318), + [anon_sym_PLUS] = ACTIONS(5320), + [anon_sym_DASH] = ACTIONS(5320), + [anon_sym_STAR] = ACTIONS(5318), + [anon_sym_SLASH] = ACTIONS(5320), + [anon_sym_PERCENT] = ACTIONS(5318), + [anon_sym_CARET] = ACTIONS(5318), + [anon_sym_PIPE] = ACTIONS(5320), + [anon_sym_AMP] = ACTIONS(5320), + [anon_sym_LT_LT] = ACTIONS(5318), + [anon_sym_GT_GT] = ACTIONS(5320), + [anon_sym_GT_GT_GT] = ACTIONS(5318), + [anon_sym_EQ_EQ] = ACTIONS(5318), + [anon_sym_BANG_EQ] = ACTIONS(5318), + [anon_sym_GT_EQ] = ACTIONS(5318), + [anon_sym_LT_EQ] = ACTIONS(5318), + [anon_sym_DOT] = ACTIONS(5320), + [anon_sym_EQ_GT] = ACTIONS(5318), + [anon_sym_switch] = ACTIONS(5318), + [anon_sym_when] = ACTIONS(5318), + [anon_sym_DOT_DOT] = ACTIONS(5318), + [anon_sym_and] = ACTIONS(5318), + [anon_sym_or] = ACTIONS(5318), + [anon_sym_AMP_AMP] = ACTIONS(5318), + [anon_sym_PIPE_PIPE] = ACTIONS(5318), + [anon_sym_QMARK_QMARK] = ACTIONS(5318), + [anon_sym_into] = ACTIONS(5318), + [anon_sym_on] = ACTIONS(5318), + [anon_sym_equals] = ACTIONS(5318), + [anon_sym_by] = ACTIONS(5318), + [anon_sym_as] = ACTIONS(5318), + [anon_sym_is] = ACTIONS(5318), + [anon_sym_DASH_GT] = ACTIONS(5318), + [anon_sym_with] = ACTIONS(5318), + [aux_sym_preproc_if_token3] = ACTIONS(5318), + [aux_sym_preproc_else_token1] = ACTIONS(5318), + [aux_sym_preproc_elif_token1] = ACTIONS(5318), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -486869,58 +486358,57 @@ 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(4879), - [anon_sym_LBRACK] = ACTIONS(4879), - [anon_sym_COLON] = ACTIONS(4879), - [anon_sym_COMMA] = ACTIONS(4879), - [anon_sym_RBRACK] = ACTIONS(4879), - [anon_sym_LPAREN] = ACTIONS(4879), - [anon_sym_RPAREN] = ACTIONS(4879), - [anon_sym_RBRACE] = ACTIONS(4879), - [anon_sym_LT] = ACTIONS(4881), - [anon_sym_GT] = ACTIONS(4881), - [anon_sym_in] = ACTIONS(4879), - [anon_sym_QMARK] = ACTIONS(4881), - [anon_sym_BANG] = ACTIONS(4881), - [anon_sym_PLUS_PLUS] = ACTIONS(4879), - [anon_sym_DASH_DASH] = ACTIONS(4879), - [anon_sym_PLUS] = ACTIONS(4881), - [anon_sym_DASH] = ACTIONS(4881), - [anon_sym_STAR] = ACTIONS(4879), - [anon_sym_SLASH] = ACTIONS(4881), - [anon_sym_PERCENT] = ACTIONS(4879), - [anon_sym_CARET] = ACTIONS(4879), - [anon_sym_PIPE] = ACTIONS(4881), - [anon_sym_AMP] = ACTIONS(4881), - [anon_sym_LT_LT] = ACTIONS(4879), - [anon_sym_GT_GT] = ACTIONS(4881), - [anon_sym_GT_GT_GT] = ACTIONS(4879), - [anon_sym_EQ_EQ] = ACTIONS(4879), - [anon_sym_BANG_EQ] = ACTIONS(4879), - [anon_sym_GT_EQ] = ACTIONS(4879), - [anon_sym_LT_EQ] = ACTIONS(4879), - [anon_sym_DOT] = ACTIONS(4881), - [anon_sym_EQ_GT] = ACTIONS(4879), - [anon_sym_switch] = ACTIONS(4879), - [anon_sym_when] = ACTIONS(4879), - [anon_sym_DOT_DOT] = ACTIONS(4879), - [anon_sym_and] = ACTIONS(4879), - [anon_sym_or] = ACTIONS(4879), - [anon_sym_AMP_AMP] = ACTIONS(4879), - [anon_sym_PIPE_PIPE] = ACTIONS(4879), - [anon_sym_QMARK_QMARK] = ACTIONS(4879), - [anon_sym_on] = ACTIONS(4879), - [anon_sym_equals] = ACTIONS(4879), - [anon_sym_by] = ACTIONS(4879), - [anon_sym_as] = ACTIONS(4879), - [anon_sym_is] = ACTIONS(4879), - [anon_sym_DASH_GT] = ACTIONS(4879), - [anon_sym_with] = ACTIONS(4879), - [anon_sym_DQUOTE] = ACTIONS(4879), - [sym_string_literal_encoding] = ACTIONS(5334), - [aux_sym_preproc_if_token3] = ACTIONS(4879), - [aux_sym_preproc_else_token1] = ACTIONS(4879), - [aux_sym_preproc_elif_token1] = ACTIONS(4879), + [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(4811), + [anon_sym_RPAREN] = ACTIONS(4811), + [anon_sym_RBRACE] = ACTIONS(4811), + [anon_sym_LT] = ACTIONS(4813), + [anon_sym_GT] = ACTIONS(4813), + [anon_sym_in] = ACTIONS(4813), + [anon_sym_QMARK] = ACTIONS(4813), + [anon_sym_BANG] = ACTIONS(4813), + [anon_sym_PLUS_PLUS] = ACTIONS(4811), + [anon_sym_DASH_DASH] = ACTIONS(4811), + [anon_sym_PLUS] = ACTIONS(4813), + [anon_sym_DASH] = ACTIONS(4813), + [anon_sym_STAR] = ACTIONS(4811), + [anon_sym_SLASH] = ACTIONS(4813), + [anon_sym_PERCENT] = ACTIONS(4811), + [anon_sym_CARET] = ACTIONS(4811), + [anon_sym_PIPE] = ACTIONS(4813), + [anon_sym_AMP] = ACTIONS(4813), + [anon_sym_LT_LT] = ACTIONS(4811), + [anon_sym_GT_GT] = ACTIONS(4813), + [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(4813), + [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), @@ -486942,58 +486430,57 @@ 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(3445), - [anon_sym_LBRACK] = ACTIONS(3445), - [anon_sym_COLON] = ACTIONS(3447), - [anon_sym_COMMA] = ACTIONS(3445), - [anon_sym_RBRACK] = ACTIONS(3445), - [anon_sym_LPAREN] = ACTIONS(3445), - [anon_sym_RPAREN] = ACTIONS(3445), - [anon_sym_LBRACE] = ACTIONS(3445), - [anon_sym_RBRACE] = ACTIONS(3445), - [anon_sym_LT] = ACTIONS(3447), - [anon_sym_GT] = ACTIONS(3447), - [anon_sym_in] = ACTIONS(3445), - [anon_sym_QMARK] = ACTIONS(3447), - [anon_sym_BANG] = ACTIONS(3447), - [anon_sym_PLUS_PLUS] = ACTIONS(3445), - [anon_sym_DASH_DASH] = ACTIONS(3445), - [anon_sym_PLUS] = ACTIONS(3447), - [anon_sym_DASH] = ACTIONS(3447), - [anon_sym_STAR] = ACTIONS(3445), - [anon_sym_SLASH] = ACTIONS(3447), - [anon_sym_PERCENT] = ACTIONS(3445), - [anon_sym_CARET] = ACTIONS(3445), - [anon_sym_PIPE] = ACTIONS(3447), - [anon_sym_AMP] = ACTIONS(3447), - [anon_sym_LT_LT] = ACTIONS(3445), - [anon_sym_GT_GT] = ACTIONS(3447), - [anon_sym_GT_GT_GT] = ACTIONS(3445), - [anon_sym_EQ_EQ] = ACTIONS(3445), - [anon_sym_BANG_EQ] = ACTIONS(3445), - [anon_sym_GT_EQ] = ACTIONS(3445), - [anon_sym_LT_EQ] = ACTIONS(3445), - [anon_sym_DOT] = ACTIONS(3447), - [anon_sym_EQ_GT] = ACTIONS(3445), - [anon_sym_COLON_COLON] = ACTIONS(3445), - [anon_sym_switch] = ACTIONS(3445), - [anon_sym_when] = ACTIONS(3445), - [anon_sym_DOT_DOT] = ACTIONS(3445), - [anon_sym_and] = ACTIONS(3445), - [anon_sym_or] = ACTIONS(3445), - [anon_sym_AMP_AMP] = ACTIONS(3445), - [anon_sym_PIPE_PIPE] = ACTIONS(3445), - [anon_sym_QMARK_QMARK] = ACTIONS(3445), - [anon_sym_on] = ACTIONS(3445), - [anon_sym_equals] = ACTIONS(3445), - [anon_sym_by] = ACTIONS(3445), - [anon_sym_as] = ACTIONS(3445), - [anon_sym_is] = ACTIONS(3445), - [anon_sym_DASH_GT] = ACTIONS(3445), - [anon_sym_with] = ACTIONS(3445), - [aux_sym_preproc_if_token3] = ACTIONS(3445), - [aux_sym_preproc_else_token1] = ACTIONS(3445), - [aux_sym_preproc_elif_token1] = ACTIONS(3445), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -487015,58 +486502,57 @@ 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(4908), - [anon_sym_LBRACK] = ACTIONS(4908), - [anon_sym_COLON] = ACTIONS(4908), - [anon_sym_COMMA] = ACTIONS(4908), - [anon_sym_RBRACK] = ACTIONS(4908), - [anon_sym_LPAREN] = ACTIONS(4908), - [anon_sym_RPAREN] = ACTIONS(4908), - [anon_sym_LBRACE] = ACTIONS(4908), - [anon_sym_RBRACE] = ACTIONS(4908), - [anon_sym_LT] = ACTIONS(4910), - [anon_sym_GT] = ACTIONS(4910), - [anon_sym_in] = ACTIONS(4908), - [anon_sym_where] = ACTIONS(4908), - [anon_sym_QMARK] = ACTIONS(4910), - [anon_sym_BANG] = ACTIONS(4910), - [anon_sym_PLUS_PLUS] = ACTIONS(4908), - [anon_sym_DASH_DASH] = ACTIONS(4908), - [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(4910), - [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(4908), - [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), + [anon_sym_SEMI] = ACTIONS(3963), + [anon_sym_LBRACK] = ACTIONS(3963), + [anon_sym_COLON] = ACTIONS(3963), + [anon_sym_COMMA] = ACTIONS(3963), + [anon_sym_RBRACK] = ACTIONS(3963), + [anon_sym_LPAREN] = ACTIONS(3963), + [anon_sym_RPAREN] = ACTIONS(3963), + [anon_sym_LBRACE] = ACTIONS(3963), + [anon_sym_RBRACE] = ACTIONS(3963), + [anon_sym_LT] = ACTIONS(3961), + [anon_sym_GT] = ACTIONS(3961), + [anon_sym_in] = ACTIONS(3963), + [anon_sym_QMARK] = ACTIONS(3961), + [anon_sym_BANG] = ACTIONS(3961), + [anon_sym_PLUS_PLUS] = ACTIONS(3963), + [anon_sym_DASH_DASH] = ACTIONS(3963), + [anon_sym_PLUS] = ACTIONS(3961), + [anon_sym_DASH] = ACTIONS(3961), + [anon_sym_STAR] = ACTIONS(3963), + [anon_sym_SLASH] = ACTIONS(3961), + [anon_sym_PERCENT] = ACTIONS(3963), + [anon_sym_CARET] = ACTIONS(3963), + [anon_sym_PIPE] = ACTIONS(3961), + [anon_sym_AMP] = ACTIONS(3961), + [anon_sym_LT_LT] = ACTIONS(3963), + [anon_sym_GT_GT] = ACTIONS(3961), + [anon_sym_GT_GT_GT] = ACTIONS(3963), + [anon_sym_EQ_EQ] = ACTIONS(3963), + [anon_sym_BANG_EQ] = ACTIONS(3963), + [anon_sym_GT_EQ] = ACTIONS(3963), + [anon_sym_LT_EQ] = ACTIONS(3963), + [anon_sym_DOT] = ACTIONS(3961), + [anon_sym_EQ_GT] = ACTIONS(3963), + [anon_sym_switch] = ACTIONS(3963), + [anon_sym_when] = ACTIONS(3963), + [anon_sym_DOT_DOT] = ACTIONS(3963), + [anon_sym_and] = ACTIONS(3963), + [anon_sym_or] = ACTIONS(3963), + [anon_sym_AMP_AMP] = ACTIONS(3963), + [anon_sym_PIPE_PIPE] = ACTIONS(3963), + [anon_sym_QMARK_QMARK] = ACTIONS(3963), + [anon_sym_on] = ACTIONS(3963), + [anon_sym_equals] = ACTIONS(3963), + [anon_sym_by] = ACTIONS(3963), + [anon_sym_as] = ACTIONS(3963), + [anon_sym_is] = ACTIONS(3963), + [anon_sym_DASH_GT] = ACTIONS(3963), + [anon_sym_with] = ACTIONS(3963), + [aux_sym_preproc_if_token3] = ACTIONS(3963), + [aux_sym_preproc_else_token1] = ACTIONS(3963), + [aux_sym_preproc_elif_token1] = ACTIONS(3963), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -487088,58 +486574,57 @@ 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_SEMI] = ACTIONS(4929), - [anon_sym_LBRACK] = ACTIONS(4929), - [anon_sym_COLON] = ACTIONS(4929), - [anon_sym_COMMA] = ACTIONS(4929), - [anon_sym_RBRACK] = ACTIONS(4929), - [anon_sym_LPAREN] = ACTIONS(4929), - [anon_sym_RPAREN] = ACTIONS(4929), - [anon_sym_LBRACE] = ACTIONS(4929), - [anon_sym_RBRACE] = ACTIONS(4929), - [anon_sym_LT] = ACTIONS(4931), - [anon_sym_GT] = ACTIONS(4931), - [anon_sym_in] = ACTIONS(4931), - [anon_sym_QMARK] = ACTIONS(4931), - [anon_sym_BANG] = ACTIONS(4931), - [anon_sym_PLUS_PLUS] = ACTIONS(4929), - [anon_sym_DASH_DASH] = ACTIONS(4929), - [anon_sym_PLUS] = ACTIONS(4931), - [anon_sym_DASH] = ACTIONS(4931), - [anon_sym_STAR] = ACTIONS(4929), - [anon_sym_SLASH] = ACTIONS(4931), - [anon_sym_PERCENT] = ACTIONS(4929), - [anon_sym_CARET] = ACTIONS(4929), - [anon_sym_PIPE] = ACTIONS(4931), - [anon_sym_AMP] = ACTIONS(4931), - [anon_sym_LT_LT] = ACTIONS(4929), - [anon_sym_GT_GT] = ACTIONS(4931), - [anon_sym_GT_GT_GT] = ACTIONS(4929), - [anon_sym_EQ_EQ] = ACTIONS(4929), - [anon_sym_BANG_EQ] = ACTIONS(4929), - [anon_sym_GT_EQ] = ACTIONS(4929), - [anon_sym_LT_EQ] = ACTIONS(4929), - [anon_sym_DOT] = ACTIONS(4931), - [anon_sym_EQ_GT] = ACTIONS(4929), - [anon_sym_switch] = ACTIONS(4929), - [anon_sym_when] = ACTIONS(4929), - [anon_sym_DOT_DOT] = ACTIONS(4929), - [anon_sym_and] = ACTIONS(4929), - [anon_sym_or] = ACTIONS(4929), - [anon_sym_AMP_AMP] = ACTIONS(4929), - [anon_sym_PIPE_PIPE] = ACTIONS(4929), - [anon_sym_QMARK_QMARK] = ACTIONS(4929), - [anon_sym_into] = ACTIONS(4929), - [anon_sym_on] = ACTIONS(4929), - [anon_sym_equals] = ACTIONS(4929), - [anon_sym_by] = ACTIONS(4929), - [anon_sym_as] = ACTIONS(4929), - [anon_sym_is] = ACTIONS(4929), - [anon_sym_DASH_GT] = ACTIONS(4929), - [anon_sym_with] = ACTIONS(4929), - [aux_sym_preproc_if_token3] = ACTIONS(4929), - [aux_sym_preproc_else_token1] = ACTIONS(4929), - [aux_sym_preproc_elif_token1] = ACTIONS(4929), + [anon_sym_SEMI] = ACTIONS(3911), + [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(3911), + [anon_sym_RBRACE] = ACTIONS(3911), + [anon_sym_LT] = ACTIONS(3909), + [anon_sym_GT] = ACTIONS(3909), + [anon_sym_in] = ACTIONS(3911), + [anon_sym_QMARK] = ACTIONS(3909), + [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_EQ_GT] = ACTIONS(3911), + [anon_sym_switch] = ACTIONS(3911), + [anon_sym_when] = ACTIONS(3911), + [anon_sym_DOT_DOT] = ACTIONS(3911), + [anon_sym_and] = ACTIONS(3911), + [anon_sym_or] = ACTIONS(3911), + [anon_sym_AMP_AMP] = ACTIONS(3911), + [anon_sym_PIPE_PIPE] = ACTIONS(3911), + [anon_sym_QMARK_QMARK] = ACTIONS(3911), + [anon_sym_on] = ACTIONS(3911), + [anon_sym_equals] = ACTIONS(3911), + [anon_sym_by] = ACTIONS(3911), + [anon_sym_as] = ACTIONS(3911), + [anon_sym_is] = ACTIONS(3911), + [anon_sym_DASH_GT] = ACTIONS(3911), + [anon_sym_with] = ACTIONS(3911), + [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), @@ -487161,58 +486646,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3224), [sym_preproc_define] = STATE(3224), [sym_preproc_undef] = STATE(3224), - [anon_sym_EQ] = ACTIONS(5336), - [anon_sym_LBRACK] = ACTIONS(4860), - [anon_sym_COLON] = ACTIONS(4860), - [anon_sym_COMMA] = ACTIONS(4860), - [anon_sym_LPAREN] = ACTIONS(4860), - [anon_sym_RPAREN] = ACTIONS(4860), - [anon_sym_RBRACE] = ACTIONS(4860), - [anon_sym_LT] = ACTIONS(4862), - [anon_sym_GT] = ACTIONS(4862), - [anon_sym_QMARK] = ACTIONS(4862), - [anon_sym_BANG] = ACTIONS(4862), - [anon_sym_PLUS_PLUS] = ACTIONS(4860), - [anon_sym_DASH_DASH] = ACTIONS(4860), - [anon_sym_PLUS] = ACTIONS(4862), - [anon_sym_DASH] = ACTIONS(4862), - [anon_sym_STAR] = ACTIONS(4862), - [anon_sym_SLASH] = ACTIONS(4862), - [anon_sym_PERCENT] = ACTIONS(4862), - [anon_sym_CARET] = ACTIONS(4862), - [anon_sym_PIPE] = ACTIONS(4862), - [anon_sym_AMP] = ACTIONS(4862), - [anon_sym_LT_LT] = ACTIONS(4862), - [anon_sym_GT_GT] = ACTIONS(4862), - [anon_sym_GT_GT_GT] = ACTIONS(4862), - [anon_sym_EQ_EQ] = ACTIONS(4860), - [anon_sym_BANG_EQ] = ACTIONS(4860), - [anon_sym_GT_EQ] = ACTIONS(4860), - [anon_sym_LT_EQ] = ACTIONS(4860), - [anon_sym_DOT] = ACTIONS(4862), - [anon_sym_switch] = ACTIONS(4860), - [anon_sym_DOT_DOT] = ACTIONS(4860), - [anon_sym_and] = ACTIONS(4860), - [anon_sym_or] = ACTIONS(4860), - [anon_sym_PLUS_EQ] = ACTIONS(5338), - [anon_sym_DASH_EQ] = ACTIONS(5338), - [anon_sym_STAR_EQ] = ACTIONS(5338), - [anon_sym_SLASH_EQ] = ACTIONS(5338), - [anon_sym_PERCENT_EQ] = ACTIONS(5338), - [anon_sym_AMP_EQ] = ACTIONS(5338), - [anon_sym_CARET_EQ] = ACTIONS(5338), - [anon_sym_PIPE_EQ] = ACTIONS(5338), - [anon_sym_LT_LT_EQ] = ACTIONS(5338), - [anon_sym_GT_GT_EQ] = ACTIONS(5338), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(5338), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(5338), - [anon_sym_AMP_AMP] = ACTIONS(4860), - [anon_sym_PIPE_PIPE] = ACTIONS(4860), - [anon_sym_QMARK_QMARK] = ACTIONS(4862), - [anon_sym_as] = ACTIONS(4860), - [anon_sym_is] = ACTIONS(4860), - [anon_sym_DASH_GT] = ACTIONS(4860), - [anon_sym_with] = ACTIONS(4860), + [anon_sym_SEMI] = ACTIONS(5322), + [anon_sym_LBRACK] = ACTIONS(5322), + [anon_sym_COLON] = ACTIONS(5322), + [anon_sym_COMMA] = ACTIONS(5322), + [anon_sym_RBRACK] = ACTIONS(5322), + [anon_sym_LPAREN] = ACTIONS(5322), + [anon_sym_RPAREN] = ACTIONS(5322), + [anon_sym_RBRACE] = ACTIONS(5322), + [anon_sym_LT] = ACTIONS(5324), + [anon_sym_GT] = ACTIONS(5324), + [anon_sym_in] = ACTIONS(5324), + [anon_sym_QMARK] = ACTIONS(5324), + [anon_sym_BANG] = ACTIONS(5324), + [anon_sym_PLUS_PLUS] = ACTIONS(5322), + [anon_sym_DASH_DASH] = ACTIONS(5322), + [anon_sym_PLUS] = ACTIONS(5324), + [anon_sym_DASH] = ACTIONS(5324), + [anon_sym_STAR] = ACTIONS(5322), + [anon_sym_SLASH] = ACTIONS(5324), + [anon_sym_PERCENT] = ACTIONS(5322), + [anon_sym_CARET] = ACTIONS(5322), + [anon_sym_PIPE] = ACTIONS(5324), + [anon_sym_AMP] = ACTIONS(5324), + [anon_sym_LT_LT] = ACTIONS(5322), + [anon_sym_GT_GT] = ACTIONS(5324), + [anon_sym_GT_GT_GT] = ACTIONS(5322), + [anon_sym_EQ_EQ] = ACTIONS(5322), + [anon_sym_BANG_EQ] = ACTIONS(5322), + [anon_sym_GT_EQ] = ACTIONS(5322), + [anon_sym_LT_EQ] = ACTIONS(5322), + [anon_sym_DOT] = ACTIONS(5324), + [anon_sym_EQ_GT] = ACTIONS(5322), + [anon_sym_switch] = ACTIONS(5322), + [anon_sym_when] = ACTIONS(5322), + [anon_sym_DOT_DOT] = ACTIONS(5322), + [anon_sym_and] = ACTIONS(5322), + [anon_sym_or] = ACTIONS(5322), + [anon_sym_AMP_AMP] = ACTIONS(5322), + [anon_sym_PIPE_PIPE] = ACTIONS(5322), + [anon_sym_QMARK_QMARK] = ACTIONS(5322), + [anon_sym_into] = ACTIONS(5322), + [anon_sym_on] = ACTIONS(5322), + [anon_sym_equals] = ACTIONS(5322), + [anon_sym_by] = ACTIONS(5322), + [anon_sym_as] = ACTIONS(5322), + [anon_sym_is] = ACTIONS(5322), + [anon_sym_DASH_GT] = ACTIONS(5322), + [anon_sym_with] = ACTIONS(5322), + [aux_sym_preproc_if_token3] = ACTIONS(5322), + [aux_sym_preproc_else_token1] = ACTIONS(5322), + [aux_sym_preproc_elif_token1] = ACTIONS(5322), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -487234,58 +486718,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3225), [sym_preproc_define] = STATE(3225), [sym_preproc_undef] = STATE(3225), - [anon_sym_SEMI] = ACTIONS(3652), - [anon_sym_LBRACK] = ACTIONS(3652), - [anon_sym_COLON] = ACTIONS(3650), - [anon_sym_COMMA] = ACTIONS(3652), - [anon_sym_RBRACK] = ACTIONS(3652), - [anon_sym_LPAREN] = ACTIONS(3652), - [anon_sym_RPAREN] = ACTIONS(3652), - [anon_sym_LBRACE] = ACTIONS(3652), - [anon_sym_RBRACE] = ACTIONS(3652), - [anon_sym_LT] = ACTIONS(3650), - [anon_sym_GT] = ACTIONS(3650), - [anon_sym_in] = ACTIONS(3652), - [anon_sym_QMARK] = ACTIONS(3650), - [anon_sym_BANG] = ACTIONS(3650), - [anon_sym_PLUS_PLUS] = ACTIONS(3652), - [anon_sym_DASH_DASH] = ACTIONS(3652), - [anon_sym_PLUS] = ACTIONS(3650), - [anon_sym_DASH] = ACTIONS(3650), - [anon_sym_STAR] = ACTIONS(3652), - [anon_sym_SLASH] = ACTIONS(3650), - [anon_sym_PERCENT] = ACTIONS(3652), - [anon_sym_CARET] = ACTIONS(3652), - [anon_sym_PIPE] = ACTIONS(3650), - [anon_sym_AMP] = ACTIONS(3650), - [anon_sym_LT_LT] = ACTIONS(3652), - [anon_sym_GT_GT] = ACTIONS(3650), - [anon_sym_GT_GT_GT] = ACTIONS(3652), - [anon_sym_EQ_EQ] = ACTIONS(3652), - [anon_sym_BANG_EQ] = ACTIONS(3652), - [anon_sym_GT_EQ] = ACTIONS(3652), - [anon_sym_LT_EQ] = ACTIONS(3652), - [anon_sym_DOT] = ACTIONS(3650), - [anon_sym_EQ_GT] = ACTIONS(3652), - [anon_sym_COLON_COLON] = ACTIONS(3652), - [anon_sym_switch] = ACTIONS(3652), - [anon_sym_when] = ACTIONS(3652), - [anon_sym_DOT_DOT] = ACTIONS(3652), - [anon_sym_and] = ACTIONS(3652), - [anon_sym_or] = ACTIONS(3652), - [anon_sym_AMP_AMP] = ACTIONS(3652), - [anon_sym_PIPE_PIPE] = ACTIONS(3652), - [anon_sym_QMARK_QMARK] = ACTIONS(3652), - [anon_sym_on] = ACTIONS(3652), - [anon_sym_equals] = ACTIONS(3652), - [anon_sym_by] = ACTIONS(3652), - [anon_sym_as] = ACTIONS(3652), - [anon_sym_is] = ACTIONS(3652), - [anon_sym_DASH_GT] = ACTIONS(3652), - [anon_sym_with] = ACTIONS(3652), - [aux_sym_preproc_if_token3] = ACTIONS(3652), - [aux_sym_preproc_else_token1] = ACTIONS(3652), - [aux_sym_preproc_elif_token1] = ACTIONS(3652), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -487307,58 +486790,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(4902), - [anon_sym_LBRACK] = ACTIONS(4902), - [anon_sym_COLON] = ACTIONS(4902), - [anon_sym_COMMA] = ACTIONS(4902), - [anon_sym_RBRACK] = ACTIONS(4902), - [anon_sym_LPAREN] = ACTIONS(4902), - [anon_sym_RPAREN] = ACTIONS(4902), - [anon_sym_RBRACE] = ACTIONS(4902), - [anon_sym_LT] = ACTIONS(4904), - [anon_sym_GT] = ACTIONS(4904), - [anon_sym_in] = ACTIONS(4904), - [anon_sym_QMARK] = ACTIONS(4904), - [anon_sym_BANG] = ACTIONS(4904), - [anon_sym_PLUS_PLUS] = ACTIONS(4902), - [anon_sym_DASH_DASH] = ACTIONS(4902), - [anon_sym_PLUS] = ACTIONS(4904), - [anon_sym_DASH] = ACTIONS(4904), - [anon_sym_STAR] = ACTIONS(4902), - [anon_sym_SLASH] = ACTIONS(4904), - [anon_sym_PERCENT] = ACTIONS(4902), - [anon_sym_CARET] = ACTIONS(4902), - [anon_sym_PIPE] = ACTIONS(4904), - [anon_sym_AMP] = ACTIONS(4904), - [anon_sym_LT_LT] = ACTIONS(4902), - [anon_sym_GT_GT] = ACTIONS(4904), - [anon_sym_GT_GT_GT] = ACTIONS(4902), - [anon_sym_EQ_EQ] = ACTIONS(4902), - [anon_sym_BANG_EQ] = ACTIONS(4902), - [anon_sym_GT_EQ] = ACTIONS(4902), - [anon_sym_LT_EQ] = ACTIONS(4902), - [anon_sym_DOT] = ACTIONS(4904), - [anon_sym_EQ_GT] = ACTIONS(4902), - [anon_sym_switch] = ACTIONS(4902), - [anon_sym_when] = ACTIONS(4902), - [anon_sym_DOT_DOT] = ACTIONS(4902), - [anon_sym_and] = ACTIONS(4902), - [anon_sym_or] = ACTIONS(4902), - [anon_sym_AMP_AMP] = ACTIONS(4902), - [anon_sym_PIPE_PIPE] = ACTIONS(4902), - [anon_sym_QMARK_QMARK] = ACTIONS(4902), - [anon_sym_into] = ACTIONS(4902), - [anon_sym_on] = ACTIONS(4902), - [anon_sym_equals] = ACTIONS(4902), - [anon_sym_by] = ACTIONS(4902), - [anon_sym_as] = ACTIONS(4902), - [anon_sym_is] = ACTIONS(4902), - [anon_sym_DASH_GT] = ACTIONS(4902), - [anon_sym_with] = ACTIONS(4902), - [aux_sym_raw_string_literal_token1] = ACTIONS(5340), - [aux_sym_preproc_if_token3] = ACTIONS(4902), - [aux_sym_preproc_else_token1] = ACTIONS(4902), - [aux_sym_preproc_elif_token1] = ACTIONS(4902), + [anon_sym_SEMI] = ACTIONS(4002), + [anon_sym_LBRACK] = ACTIONS(4002), + [anon_sym_COLON] = ACTIONS(4002), + [anon_sym_COMMA] = ACTIONS(4002), + [anon_sym_RBRACK] = ACTIONS(4002), + [anon_sym_LPAREN] = ACTIONS(4002), + [anon_sym_RPAREN] = ACTIONS(4002), + [anon_sym_LBRACE] = ACTIONS(4002), + [anon_sym_RBRACE] = ACTIONS(4002), + [anon_sym_LT] = ACTIONS(4000), + [anon_sym_GT] = ACTIONS(4000), + [anon_sym_in] = ACTIONS(4002), + [anon_sym_QMARK] = ACTIONS(4000), + [anon_sym_BANG] = ACTIONS(4000), + [anon_sym_PLUS_PLUS] = ACTIONS(4002), + [anon_sym_DASH_DASH] = ACTIONS(4002), + [anon_sym_PLUS] = ACTIONS(4000), + [anon_sym_DASH] = ACTIONS(4000), + [anon_sym_STAR] = ACTIONS(4002), + [anon_sym_SLASH] = ACTIONS(4000), + [anon_sym_PERCENT] = ACTIONS(4002), + [anon_sym_CARET] = ACTIONS(4002), + [anon_sym_PIPE] = ACTIONS(4000), + [anon_sym_AMP] = ACTIONS(4000), + [anon_sym_LT_LT] = ACTIONS(4002), + [anon_sym_GT_GT] = ACTIONS(4000), + [anon_sym_GT_GT_GT] = ACTIONS(4002), + [anon_sym_EQ_EQ] = ACTIONS(4002), + [anon_sym_BANG_EQ] = ACTIONS(4002), + [anon_sym_GT_EQ] = ACTIONS(4002), + [anon_sym_LT_EQ] = ACTIONS(4002), + [anon_sym_DOT] = ACTIONS(4000), + [anon_sym_EQ_GT] = ACTIONS(4002), + [anon_sym_switch] = ACTIONS(4002), + [anon_sym_when] = ACTIONS(4002), + [anon_sym_DOT_DOT] = ACTIONS(4002), + [anon_sym_and] = ACTIONS(4002), + [anon_sym_or] = ACTIONS(4002), + [anon_sym_AMP_AMP] = ACTIONS(4002), + [anon_sym_PIPE_PIPE] = ACTIONS(4002), + [anon_sym_QMARK_QMARK] = ACTIONS(4002), + [anon_sym_on] = ACTIONS(4002), + [anon_sym_equals] = ACTIONS(4002), + [anon_sym_by] = ACTIONS(4002), + [anon_sym_as] = ACTIONS(4002), + [anon_sym_is] = ACTIONS(4002), + [anon_sym_DASH_GT] = ACTIONS(4002), + [anon_sym_with] = ACTIONS(4002), + [aux_sym_preproc_if_token3] = ACTIONS(4002), + [aux_sym_preproc_else_token1] = ACTIONS(4002), + [aux_sym_preproc_elif_token1] = ACTIONS(4002), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -487380,57 +486862,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_SEMI] = ACTIONS(4253), - [anon_sym_LBRACK] = ACTIONS(4253), - [anon_sym_COLON] = ACTIONS(4253), - [anon_sym_COMMA] = ACTIONS(4253), - [anon_sym_RBRACK] = ACTIONS(4253), - [anon_sym_LPAREN] = ACTIONS(4253), - [anon_sym_RPAREN] = ACTIONS(4253), - [anon_sym_RBRACE] = ACTIONS(4253), - [anon_sym_LT] = ACTIONS(4255), - [anon_sym_GT] = ACTIONS(4255), - [anon_sym_in] = ACTIONS(4255), - [anon_sym_QMARK] = ACTIONS(4255), - [anon_sym_BANG] = ACTIONS(4255), - [anon_sym_PLUS_PLUS] = ACTIONS(4253), - [anon_sym_DASH_DASH] = ACTIONS(4253), - [anon_sym_PLUS] = ACTIONS(4255), - [anon_sym_DASH] = ACTIONS(4255), - [anon_sym_STAR] = ACTIONS(4253), - [anon_sym_SLASH] = ACTIONS(4255), - [anon_sym_PERCENT] = ACTIONS(4253), - [anon_sym_CARET] = ACTIONS(4253), - [anon_sym_PIPE] = ACTIONS(4255), - [anon_sym_AMP] = ACTIONS(4255), - [anon_sym_LT_LT] = ACTIONS(4253), - [anon_sym_GT_GT] = ACTIONS(4255), - [anon_sym_GT_GT_GT] = ACTIONS(4253), - [anon_sym_EQ_EQ] = ACTIONS(4253), - [anon_sym_BANG_EQ] = ACTIONS(4253), - [anon_sym_GT_EQ] = ACTIONS(4253), - [anon_sym_LT_EQ] = ACTIONS(4253), - [anon_sym_DOT] = ACTIONS(4255), - [anon_sym_EQ_GT] = ACTIONS(4253), - [anon_sym_switch] = ACTIONS(4253), - [anon_sym_when] = ACTIONS(4253), - [anon_sym_DOT_DOT] = ACTIONS(4253), - [anon_sym_and] = ACTIONS(4253), - [anon_sym_or] = ACTIONS(4253), - [anon_sym_AMP_AMP] = ACTIONS(4253), - [anon_sym_PIPE_PIPE] = ACTIONS(4253), - [anon_sym_QMARK_QMARK] = ACTIONS(4253), - [anon_sym_into] = ACTIONS(4253), - [anon_sym_on] = ACTIONS(4253), - [anon_sym_equals] = ACTIONS(4253), - [anon_sym_by] = ACTIONS(4253), - [anon_sym_as] = ACTIONS(4253), - [anon_sym_is] = ACTIONS(4253), - [anon_sym_DASH_GT] = ACTIONS(4253), - [anon_sym_with] = ACTIONS(4253), - [aux_sym_preproc_if_token3] = ACTIONS(4253), - [aux_sym_preproc_else_token1] = ACTIONS(4253), - [aux_sym_preproc_elif_token1] = ACTIONS(4253), + [anon_sym_SEMI] = ACTIONS(5322), + [anon_sym_LBRACK] = ACTIONS(5322), + [anon_sym_COLON] = ACTIONS(5322), + [anon_sym_COMMA] = ACTIONS(5322), + [anon_sym_RBRACK] = ACTIONS(5322), + [anon_sym_LPAREN] = ACTIONS(5322), + [anon_sym_RPAREN] = ACTIONS(5322), + [anon_sym_RBRACE] = ACTIONS(5322), + [anon_sym_LT] = ACTIONS(5324), + [anon_sym_GT] = ACTIONS(5324), + [anon_sym_in] = ACTIONS(5324), + [anon_sym_QMARK] = ACTIONS(5324), + [anon_sym_BANG] = ACTIONS(5324), + [anon_sym_PLUS_PLUS] = ACTIONS(5322), + [anon_sym_DASH_DASH] = ACTIONS(5322), + [anon_sym_PLUS] = ACTIONS(5324), + [anon_sym_DASH] = ACTIONS(5324), + [anon_sym_STAR] = ACTIONS(5322), + [anon_sym_SLASH] = ACTIONS(5324), + [anon_sym_PERCENT] = ACTIONS(5322), + [anon_sym_CARET] = ACTIONS(5322), + [anon_sym_PIPE] = ACTIONS(5324), + [anon_sym_AMP] = ACTIONS(5324), + [anon_sym_LT_LT] = ACTIONS(5322), + [anon_sym_GT_GT] = ACTIONS(5324), + [anon_sym_GT_GT_GT] = ACTIONS(5322), + [anon_sym_EQ_EQ] = ACTIONS(5322), + [anon_sym_BANG_EQ] = ACTIONS(5322), + [anon_sym_GT_EQ] = ACTIONS(5322), + [anon_sym_LT_EQ] = ACTIONS(5322), + [anon_sym_DOT] = ACTIONS(5324), + [anon_sym_EQ_GT] = ACTIONS(5322), + [anon_sym_switch] = ACTIONS(5322), + [anon_sym_when] = ACTIONS(5322), + [anon_sym_DOT_DOT] = ACTIONS(5322), + [anon_sym_and] = ACTIONS(5322), + [anon_sym_or] = ACTIONS(5322), + [anon_sym_AMP_AMP] = ACTIONS(5322), + [anon_sym_PIPE_PIPE] = ACTIONS(5322), + [anon_sym_QMARK_QMARK] = ACTIONS(5322), + [anon_sym_into] = ACTIONS(5322), + [anon_sym_on] = ACTIONS(5322), + [anon_sym_equals] = ACTIONS(5322), + [anon_sym_by] = ACTIONS(5322), + [anon_sym_as] = ACTIONS(5322), + [anon_sym_is] = ACTIONS(5322), + [anon_sym_DASH_GT] = ACTIONS(5322), + [anon_sym_with] = ACTIONS(5322), + [aux_sym_preproc_if_token3] = ACTIONS(5322), + [aux_sym_preproc_else_token1] = ACTIONS(5322), + [aux_sym_preproc_elif_token1] = ACTIONS(5322), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -487452,57 +486934,57 @@ 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(5054), - [anon_sym_LBRACK] = ACTIONS(5054), - [anon_sym_COLON] = ACTIONS(5054), - [anon_sym_COMMA] = ACTIONS(5054), - [anon_sym_RBRACK] = ACTIONS(5054), - [anon_sym_LPAREN] = ACTIONS(5054), - [anon_sym_RPAREN] = ACTIONS(5054), - [anon_sym_RBRACE] = ACTIONS(5054), - [anon_sym_LT] = ACTIONS(5056), - [anon_sym_GT] = ACTIONS(5056), - [anon_sym_in] = ACTIONS(5056), - [anon_sym_QMARK] = ACTIONS(5056), - [anon_sym_BANG] = ACTIONS(5056), - [anon_sym_PLUS_PLUS] = ACTIONS(5054), - [anon_sym_DASH_DASH] = ACTIONS(5054), - [anon_sym_PLUS] = ACTIONS(5056), - [anon_sym_DASH] = ACTIONS(5056), - [anon_sym_STAR] = ACTIONS(5054), - [anon_sym_SLASH] = ACTIONS(5056), - [anon_sym_PERCENT] = ACTIONS(5054), - [anon_sym_CARET] = ACTIONS(5054), - [anon_sym_PIPE] = ACTIONS(5056), - [anon_sym_AMP] = ACTIONS(5056), - [anon_sym_LT_LT] = ACTIONS(5054), - [anon_sym_GT_GT] = ACTIONS(5056), - [anon_sym_GT_GT_GT] = ACTIONS(5054), - [anon_sym_EQ_EQ] = ACTIONS(5054), - [anon_sym_BANG_EQ] = ACTIONS(5054), - [anon_sym_GT_EQ] = ACTIONS(5054), - [anon_sym_LT_EQ] = ACTIONS(5054), - [anon_sym_DOT] = ACTIONS(5056), - [anon_sym_EQ_GT] = ACTIONS(5054), - [anon_sym_switch] = ACTIONS(5054), - [anon_sym_when] = ACTIONS(5054), - [anon_sym_DOT_DOT] = ACTIONS(5054), - [anon_sym_and] = ACTIONS(5054), - [anon_sym_or] = ACTIONS(5054), - [anon_sym_AMP_AMP] = ACTIONS(5054), - [anon_sym_PIPE_PIPE] = ACTIONS(5054), - [anon_sym_QMARK_QMARK] = ACTIONS(5054), - [anon_sym_into] = ACTIONS(5054), - [anon_sym_on] = ACTIONS(5054), - [anon_sym_equals] = ACTIONS(5054), - [anon_sym_by] = ACTIONS(5054), - [anon_sym_as] = ACTIONS(5054), - [anon_sym_is] = ACTIONS(5054), - [anon_sym_DASH_GT] = ACTIONS(5054), - [anon_sym_with] = ACTIONS(5054), - [aux_sym_preproc_if_token3] = ACTIONS(5054), - [aux_sym_preproc_else_token1] = ACTIONS(5054), - [aux_sym_preproc_elif_token1] = ACTIONS(5054), + [anon_sym_SEMI] = ACTIONS(4076), + [anon_sym_LBRACK] = ACTIONS(4076), + [anon_sym_COLON] = ACTIONS(4076), + [anon_sym_COMMA] = ACTIONS(4076), + [anon_sym_RBRACK] = ACTIONS(4076), + [anon_sym_LPAREN] = ACTIONS(4076), + [anon_sym_RPAREN] = ACTIONS(4076), + [anon_sym_LBRACE] = ACTIONS(4076), + [anon_sym_RBRACE] = ACTIONS(4076), + [anon_sym_LT] = ACTIONS(4074), + [anon_sym_GT] = ACTIONS(4074), + [anon_sym_in] = ACTIONS(4076), + [anon_sym_QMARK] = ACTIONS(4074), + [anon_sym_BANG] = ACTIONS(4074), + [anon_sym_PLUS_PLUS] = ACTIONS(4076), + [anon_sym_DASH_DASH] = ACTIONS(4076), + [anon_sym_PLUS] = ACTIONS(4074), + [anon_sym_DASH] = ACTIONS(4074), + [anon_sym_STAR] = ACTIONS(4076), + [anon_sym_SLASH] = ACTIONS(4074), + [anon_sym_PERCENT] = ACTIONS(4076), + [anon_sym_CARET] = ACTIONS(4076), + [anon_sym_PIPE] = ACTIONS(4074), + [anon_sym_AMP] = ACTIONS(4074), + [anon_sym_LT_LT] = ACTIONS(4076), + [anon_sym_GT_GT] = ACTIONS(4074), + [anon_sym_GT_GT_GT] = ACTIONS(4076), + [anon_sym_EQ_EQ] = ACTIONS(4076), + [anon_sym_BANG_EQ] = ACTIONS(4076), + [anon_sym_GT_EQ] = ACTIONS(4076), + [anon_sym_LT_EQ] = ACTIONS(4076), + [anon_sym_DOT] = ACTIONS(4074), + [anon_sym_EQ_GT] = ACTIONS(4076), + [anon_sym_switch] = ACTIONS(4076), + [anon_sym_when] = ACTIONS(4076), + [anon_sym_DOT_DOT] = ACTIONS(4076), + [anon_sym_and] = ACTIONS(4076), + [anon_sym_or] = ACTIONS(4076), + [anon_sym_AMP_AMP] = ACTIONS(4076), + [anon_sym_PIPE_PIPE] = ACTIONS(4076), + [anon_sym_QMARK_QMARK] = ACTIONS(4076), + [anon_sym_on] = ACTIONS(4076), + [anon_sym_equals] = ACTIONS(4076), + [anon_sym_by] = ACTIONS(4076), + [anon_sym_as] = ACTIONS(4076), + [anon_sym_is] = ACTIONS(4076), + [anon_sym_DASH_GT] = ACTIONS(4076), + [anon_sym_with] = ACTIONS(4076), + [aux_sym_preproc_if_token3] = ACTIONS(4076), + [aux_sym_preproc_else_token1] = ACTIONS(4076), + [aux_sym_preproc_elif_token1] = ACTIONS(4076), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -487524,57 +487006,57 @@ 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(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(3963), + [anon_sym_LBRACK] = ACTIONS(4033), + [anon_sym_COLON] = ACTIONS(3963), + [anon_sym_COMMA] = ACTIONS(3963), + [anon_sym_RBRACK] = ACTIONS(3963), + [anon_sym_LPAREN] = ACTIONS(3963), + [anon_sym_RPAREN] = ACTIONS(3963), + [anon_sym_LBRACE] = ACTIONS(3963), + [anon_sym_RBRACE] = ACTIONS(3963), + [anon_sym_LT] = ACTIONS(3961), + [anon_sym_GT] = ACTIONS(3961), + [anon_sym_in] = ACTIONS(3963), + [anon_sym_QMARK] = ACTIONS(5326), + [anon_sym_BANG] = ACTIONS(3961), + [anon_sym_PLUS_PLUS] = ACTIONS(3963), + [anon_sym_DASH_DASH] = ACTIONS(3963), + [anon_sym_PLUS] = ACTIONS(3961), + [anon_sym_DASH] = ACTIONS(3961), + [anon_sym_STAR] = ACTIONS(3963), + [anon_sym_SLASH] = ACTIONS(3961), + [anon_sym_PERCENT] = ACTIONS(3963), + [anon_sym_CARET] = ACTIONS(3963), + [anon_sym_PIPE] = ACTIONS(3961), + [anon_sym_AMP] = ACTIONS(3961), + [anon_sym_LT_LT] = ACTIONS(3963), + [anon_sym_GT_GT] = ACTIONS(3961), + [anon_sym_GT_GT_GT] = ACTIONS(3963), + [anon_sym_EQ_EQ] = ACTIONS(3963), + [anon_sym_BANG_EQ] = ACTIONS(3963), + [anon_sym_GT_EQ] = ACTIONS(3963), + [anon_sym_LT_EQ] = ACTIONS(3963), + [anon_sym_DOT] = ACTIONS(3961), + [anon_sym_EQ_GT] = ACTIONS(3963), + [anon_sym_switch] = ACTIONS(3963), + [anon_sym_when] = ACTIONS(3963), + [anon_sym_DOT_DOT] = ACTIONS(3963), + [anon_sym_and] = ACTIONS(3963), + [anon_sym_or] = ACTIONS(3963), + [anon_sym_AMP_AMP] = ACTIONS(3963), + [anon_sym_PIPE_PIPE] = ACTIONS(3963), + [anon_sym_QMARK_QMARK] = ACTIONS(3963), + [anon_sym_on] = ACTIONS(3963), + [anon_sym_equals] = ACTIONS(3963), + [anon_sym_by] = ACTIONS(3963), + [anon_sym_as] = ACTIONS(3963), + [anon_sym_is] = ACTIONS(3963), + [anon_sym_DASH_GT] = ACTIONS(3963), + [anon_sym_with] = ACTIONS(3963), + [aux_sym_preproc_if_token3] = ACTIONS(3963), + [aux_sym_preproc_else_token1] = ACTIONS(3963), + [aux_sym_preproc_elif_token1] = ACTIONS(3963), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -487596,57 +487078,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(5208), - [anon_sym_LBRACK] = ACTIONS(5208), - [anon_sym_COLON] = ACTIONS(5208), - [anon_sym_COMMA] = ACTIONS(5208), - [anon_sym_RBRACK] = ACTIONS(5208), - [anon_sym_LPAREN] = ACTIONS(5208), - [anon_sym_RPAREN] = ACTIONS(5208), - [anon_sym_RBRACE] = ACTIONS(5208), - [anon_sym_LT] = ACTIONS(5210), - [anon_sym_GT] = ACTIONS(5210), - [anon_sym_in] = ACTIONS(5210), - [anon_sym_QMARK] = ACTIONS(5210), - [anon_sym_BANG] = ACTIONS(5210), - [anon_sym_PLUS_PLUS] = ACTIONS(5208), - [anon_sym_DASH_DASH] = ACTIONS(5208), - [anon_sym_PLUS] = ACTIONS(5210), - [anon_sym_DASH] = ACTIONS(5210), - [anon_sym_STAR] = ACTIONS(5208), - [anon_sym_SLASH] = ACTIONS(5210), - [anon_sym_PERCENT] = ACTIONS(5208), - [anon_sym_CARET] = ACTIONS(5208), - [anon_sym_PIPE] = ACTIONS(5210), - [anon_sym_AMP] = ACTIONS(5210), - [anon_sym_LT_LT] = ACTIONS(5208), - [anon_sym_GT_GT] = ACTIONS(5210), - [anon_sym_GT_GT_GT] = ACTIONS(5208), - [anon_sym_EQ_EQ] = ACTIONS(5208), - [anon_sym_BANG_EQ] = ACTIONS(5208), - [anon_sym_GT_EQ] = ACTIONS(5208), - [anon_sym_LT_EQ] = ACTIONS(5208), - [anon_sym_DOT] = ACTIONS(5210), - [anon_sym_EQ_GT] = ACTIONS(5208), - [anon_sym_switch] = ACTIONS(5208), - [anon_sym_when] = ACTIONS(5208), - [anon_sym_DOT_DOT] = ACTIONS(5208), - [anon_sym_and] = ACTIONS(5208), - [anon_sym_or] = ACTIONS(5208), - [anon_sym_AMP_AMP] = ACTIONS(5208), - [anon_sym_PIPE_PIPE] = ACTIONS(5208), - [anon_sym_QMARK_QMARK] = ACTIONS(5208), - [anon_sym_into] = ACTIONS(5208), - [anon_sym_on] = ACTIONS(5208), - [anon_sym_equals] = ACTIONS(5208), - [anon_sym_by] = ACTIONS(5208), - [anon_sym_as] = ACTIONS(5208), - [anon_sym_is] = ACTIONS(5208), - [anon_sym_DASH_GT] = ACTIONS(5208), - [anon_sym_with] = ACTIONS(5208), - [aux_sym_preproc_if_token3] = ACTIONS(5208), - [aux_sym_preproc_else_token1] = ACTIONS(5208), - [aux_sym_preproc_elif_token1] = ACTIONS(5208), + [anon_sym_SEMI] = ACTIONS(5162), + [anon_sym_LBRACK] = ACTIONS(5162), + [anon_sym_COLON] = ACTIONS(5162), + [anon_sym_COMMA] = ACTIONS(5162), + [anon_sym_RBRACK] = ACTIONS(5162), + [anon_sym_LPAREN] = ACTIONS(5162), + [anon_sym_RPAREN] = ACTIONS(5162), + [anon_sym_RBRACE] = ACTIONS(5162), + [anon_sym_LT] = ACTIONS(5164), + [anon_sym_GT] = ACTIONS(5164), + [anon_sym_in] = ACTIONS(5164), + [anon_sym_QMARK] = ACTIONS(5164), + [anon_sym_BANG] = ACTIONS(5164), + [anon_sym_PLUS_PLUS] = ACTIONS(5162), + [anon_sym_DASH_DASH] = ACTIONS(5162), + [anon_sym_PLUS] = ACTIONS(5164), + [anon_sym_DASH] = ACTIONS(5164), + [anon_sym_STAR] = ACTIONS(5162), + [anon_sym_SLASH] = ACTIONS(5164), + [anon_sym_PERCENT] = ACTIONS(5162), + [anon_sym_CARET] = ACTIONS(5162), + [anon_sym_PIPE] = ACTIONS(5164), + [anon_sym_AMP] = ACTIONS(5164), + [anon_sym_LT_LT] = ACTIONS(5162), + [anon_sym_GT_GT] = ACTIONS(5164), + [anon_sym_GT_GT_GT] = ACTIONS(5162), + [anon_sym_EQ_EQ] = ACTIONS(5162), + [anon_sym_BANG_EQ] = ACTIONS(5162), + [anon_sym_GT_EQ] = ACTIONS(5162), + [anon_sym_LT_EQ] = ACTIONS(5162), + [anon_sym_DOT] = ACTIONS(5164), + [anon_sym_EQ_GT] = ACTIONS(5162), + [anon_sym_switch] = ACTIONS(5162), + [anon_sym_when] = ACTIONS(5162), + [anon_sym_DOT_DOT] = ACTIONS(5162), + [anon_sym_and] = ACTIONS(5162), + [anon_sym_or] = ACTIONS(5162), + [anon_sym_AMP_AMP] = ACTIONS(5162), + [anon_sym_PIPE_PIPE] = ACTIONS(5162), + [anon_sym_QMARK_QMARK] = ACTIONS(5162), + [anon_sym_into] = ACTIONS(5162), + [anon_sym_on] = ACTIONS(5162), + [anon_sym_equals] = ACTIONS(5162), + [anon_sym_by] = ACTIONS(5162), + [anon_sym_as] = ACTIONS(5162), + [anon_sym_is] = ACTIONS(5162), + [anon_sym_DASH_GT] = ACTIONS(5162), + [anon_sym_with] = ACTIONS(5162), + [aux_sym_preproc_if_token3] = ACTIONS(5162), + [aux_sym_preproc_else_token1] = ACTIONS(5162), + [aux_sym_preproc_elif_token1] = ACTIONS(5162), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -487668,57 +487150,57 @@ 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(4965), - [anon_sym_LBRACK] = ACTIONS(4965), - [anon_sym_COLON] = ACTIONS(4965), - [anon_sym_COMMA] = ACTIONS(4965), - [anon_sym_RBRACK] = ACTIONS(4965), - [anon_sym_LPAREN] = ACTIONS(4965), - [anon_sym_RPAREN] = ACTIONS(4965), - [anon_sym_RBRACE] = ACTIONS(4965), - [anon_sym_LT] = ACTIONS(4967), - [anon_sym_GT] = ACTIONS(4967), - [anon_sym_in] = ACTIONS(4967), - [anon_sym_QMARK] = ACTIONS(4967), - [anon_sym_BANG] = ACTIONS(4967), - [anon_sym_PLUS_PLUS] = ACTIONS(4965), - [anon_sym_DASH_DASH] = ACTIONS(4965), - [anon_sym_PLUS] = ACTIONS(4967), - [anon_sym_DASH] = ACTIONS(4967), - [anon_sym_STAR] = ACTIONS(4965), - [anon_sym_SLASH] = ACTIONS(4967), - [anon_sym_PERCENT] = ACTIONS(4965), - [anon_sym_CARET] = ACTIONS(4965), - [anon_sym_PIPE] = ACTIONS(4967), - [anon_sym_AMP] = ACTIONS(4967), - [anon_sym_LT_LT] = ACTIONS(4965), - [anon_sym_GT_GT] = ACTIONS(4967), - [anon_sym_GT_GT_GT] = ACTIONS(4965), - [anon_sym_EQ_EQ] = ACTIONS(4965), - [anon_sym_BANG_EQ] = ACTIONS(4965), - [anon_sym_GT_EQ] = ACTIONS(4965), - [anon_sym_LT_EQ] = ACTIONS(4965), - [anon_sym_DOT] = ACTIONS(4967), - [anon_sym_EQ_GT] = ACTIONS(4965), - [anon_sym_switch] = ACTIONS(4965), - [anon_sym_when] = ACTIONS(4965), - [anon_sym_DOT_DOT] = ACTIONS(4965), - [anon_sym_and] = ACTIONS(4965), - [anon_sym_or] = ACTIONS(4965), - [anon_sym_AMP_AMP] = ACTIONS(4965), - [anon_sym_PIPE_PIPE] = ACTIONS(4965), - [anon_sym_QMARK_QMARK] = ACTIONS(4965), - [anon_sym_into] = ACTIONS(4965), - [anon_sym_on] = ACTIONS(4965), - [anon_sym_equals] = ACTIONS(4965), - [anon_sym_by] = ACTIONS(4965), - [anon_sym_as] = ACTIONS(4965), - [anon_sym_is] = ACTIONS(4965), - [anon_sym_DASH_GT] = ACTIONS(4965), - [anon_sym_with] = ACTIONS(4965), - [aux_sym_preproc_if_token3] = ACTIONS(4965), - [aux_sym_preproc_else_token1] = ACTIONS(4965), - [aux_sym_preproc_elif_token1] = ACTIONS(4965), + [anon_sym_EQ] = ACTIONS(5329), + [anon_sym_LBRACK] = ACTIONS(4811), + [anon_sym_COLON] = ACTIONS(4811), + [anon_sym_COMMA] = ACTIONS(4811), + [anon_sym_LPAREN] = ACTIONS(4811), + [anon_sym_RPAREN] = ACTIONS(4811), + [anon_sym_RBRACE] = ACTIONS(4811), + [anon_sym_LT] = ACTIONS(4813), + [anon_sym_GT] = ACTIONS(4813), + [anon_sym_QMARK] = ACTIONS(4813), + [anon_sym_BANG] = ACTIONS(4813), + [anon_sym_PLUS_PLUS] = ACTIONS(4811), + [anon_sym_DASH_DASH] = ACTIONS(4811), + [anon_sym_PLUS] = ACTIONS(4813), + [anon_sym_DASH] = ACTIONS(4813), + [anon_sym_STAR] = ACTIONS(4813), + [anon_sym_SLASH] = ACTIONS(4813), + [anon_sym_PERCENT] = ACTIONS(4813), + [anon_sym_CARET] = ACTIONS(4813), + [anon_sym_PIPE] = ACTIONS(4813), + [anon_sym_AMP] = ACTIONS(4813), + [anon_sym_LT_LT] = ACTIONS(4813), + [anon_sym_GT_GT] = ACTIONS(4813), + [anon_sym_GT_GT_GT] = ACTIONS(4813), + [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(4813), + [anon_sym_switch] = ACTIONS(4811), + [anon_sym_DOT_DOT] = ACTIONS(4811), + [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(4811), + [anon_sym_PIPE_PIPE] = ACTIONS(4811), + [anon_sym_QMARK_QMARK] = ACTIONS(4813), + [anon_sym_into] = 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_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -487731,6 +487213,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3232] = { + [sym_initializer_expression] = STATE(3421), [sym_preproc_region] = STATE(3232), [sym_preproc_endregion] = STATE(3232), [sym_preproc_line] = STATE(3232), @@ -487740,57 +487223,56 @@ 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(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(4850), + [anon_sym_LBRACK] = ACTIONS(4846), + [anon_sym_COLON] = ACTIONS(4850), + [anon_sym_COMMA] = ACTIONS(4850), + [anon_sym_RBRACK] = ACTIONS(4850), + [anon_sym_LPAREN] = ACTIONS(4850), + [anon_sym_RPAREN] = ACTIONS(4850), + [anon_sym_LBRACE] = ACTIONS(5333), + [anon_sym_RBRACE] = ACTIONS(4850), + [anon_sym_LT] = ACTIONS(4856), + [anon_sym_GT] = ACTIONS(4856), + [anon_sym_QMARK] = ACTIONS(5336), + [anon_sym_BANG] = ACTIONS(4856), + [anon_sym_PLUS_PLUS] = ACTIONS(4850), + [anon_sym_DASH_DASH] = ACTIONS(4850), + [anon_sym_PLUS] = ACTIONS(4856), + [anon_sym_DASH] = ACTIONS(4856), + [anon_sym_STAR] = ACTIONS(4850), + [anon_sym_SLASH] = ACTIONS(4856), + [anon_sym_PERCENT] = ACTIONS(4850), + [anon_sym_CARET] = ACTIONS(4850), + [anon_sym_PIPE] = ACTIONS(4856), + [anon_sym_AMP] = ACTIONS(4856), + [anon_sym_LT_LT] = ACTIONS(4850), + [anon_sym_GT_GT] = ACTIONS(4856), + [anon_sym_GT_GT_GT] = ACTIONS(4850), + [anon_sym_EQ_EQ] = ACTIONS(4850), + [anon_sym_BANG_EQ] = ACTIONS(4850), + [anon_sym_GT_EQ] = ACTIONS(4850), + [anon_sym_LT_EQ] = ACTIONS(4850), + [anon_sym_DOT] = ACTIONS(4856), + [anon_sym_EQ_GT] = ACTIONS(4850), + [anon_sym_switch] = ACTIONS(4850), + [anon_sym_when] = ACTIONS(4850), + [anon_sym_DOT_DOT] = ACTIONS(4850), + [anon_sym_and] = ACTIONS(4850), + [anon_sym_or] = ACTIONS(4850), + [anon_sym_AMP_AMP] = ACTIONS(4850), + [anon_sym_PIPE_PIPE] = ACTIONS(4850), + [anon_sym_QMARK_QMARK] = ACTIONS(4850), + [anon_sym_on] = ACTIONS(4850), + [anon_sym_equals] = ACTIONS(4850), + [anon_sym_by] = ACTIONS(4850), + [anon_sym_as] = ACTIONS(4850), + [anon_sym_is] = ACTIONS(4850), + [anon_sym_DASH_GT] = ACTIONS(4850), + [anon_sym_with] = ACTIONS(4850), + [aux_sym_preproc_if_token3] = ACTIONS(4850), + [aux_sym_preproc_else_token1] = ACTIONS(4850), + [aux_sym_preproc_elif_token1] = ACTIONS(4850), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -487803,6 +487285,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3233] = { + [sym_modifier] = STATE(3655), + [sym_identifier] = STATE(6444), + [sym__reserved_identifier] = STATE(2168), [sym_preproc_region] = STATE(3233), [sym_preproc_endregion] = STATE(3233), [sym_preproc_line] = STATE(3233), @@ -487812,57 +487297,54 @@ 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(4945), - [anon_sym_LBRACK] = ACTIONS(4945), - [anon_sym_COLON] = ACTIONS(4945), - [anon_sym_COMMA] = ACTIONS(4945), - [anon_sym_RBRACK] = ACTIONS(4945), - [anon_sym_LPAREN] = ACTIONS(4945), - [anon_sym_RPAREN] = ACTIONS(4945), - [anon_sym_RBRACE] = ACTIONS(4945), - [anon_sym_LT] = ACTIONS(4947), - [anon_sym_GT] = ACTIONS(4947), - [anon_sym_in] = ACTIONS(4947), - [anon_sym_QMARK] = ACTIONS(4947), - [anon_sym_BANG] = ACTIONS(4947), - [anon_sym_PLUS_PLUS] = ACTIONS(4945), - [anon_sym_DASH_DASH] = ACTIONS(4945), - [anon_sym_PLUS] = ACTIONS(4947), - [anon_sym_DASH] = ACTIONS(4947), - [anon_sym_STAR] = ACTIONS(4945), - [anon_sym_SLASH] = ACTIONS(4947), - [anon_sym_PERCENT] = ACTIONS(4945), - [anon_sym_CARET] = ACTIONS(4945), - [anon_sym_PIPE] = ACTIONS(4947), - [anon_sym_AMP] = ACTIONS(4947), - [anon_sym_LT_LT] = ACTIONS(4945), - [anon_sym_GT_GT] = ACTIONS(4947), - [anon_sym_GT_GT_GT] = ACTIONS(4945), - [anon_sym_EQ_EQ] = ACTIONS(4945), - [anon_sym_BANG_EQ] = ACTIONS(4945), - [anon_sym_GT_EQ] = ACTIONS(4945), - [anon_sym_LT_EQ] = ACTIONS(4945), - [anon_sym_DOT] = ACTIONS(4947), - [anon_sym_EQ_GT] = ACTIONS(4945), - [anon_sym_switch] = ACTIONS(4945), - [anon_sym_when] = ACTIONS(4945), - [anon_sym_DOT_DOT] = ACTIONS(4945), - [anon_sym_and] = ACTIONS(4945), - [anon_sym_or] = ACTIONS(4945), - [anon_sym_AMP_AMP] = ACTIONS(4945), - [anon_sym_PIPE_PIPE] = ACTIONS(4945), - [anon_sym_QMARK_QMARK] = ACTIONS(4945), - [anon_sym_into] = ACTIONS(4945), - [anon_sym_on] = ACTIONS(4945), - [anon_sym_equals] = ACTIONS(4945), - [anon_sym_by] = ACTIONS(4945), - [anon_sym_as] = ACTIONS(4945), - [anon_sym_is] = ACTIONS(4945), - [anon_sym_DASH_GT] = ACTIONS(4945), - [anon_sym_with] = ACTIONS(4945), - [aux_sym_preproc_if_token3] = ACTIONS(4945), - [aux_sym_preproc_else_token1] = ACTIONS(4945), - [aux_sym_preproc_elif_token1] = ACTIONS(4945), + [aux_sym__class_declaration_initializer_repeat2] = STATE(3532), + [sym__identifier_token] = ACTIONS(25), + [anon_sym_extern] = ACTIONS(4731), + [anon_sym_alias] = ACTIONS(29), + [anon_sym_global] = ACTIONS(29), + [anon_sym_unsafe] = ACTIONS(4731), + [anon_sym_static] = ACTIONS(4731), + [anon_sym_abstract] = ACTIONS(4731), + [anon_sym_async] = ACTIONS(4731), + [anon_sym_const] = ACTIONS(4731), + [anon_sym_file] = ACTIONS(4737), + [anon_sym_fixed] = ACTIONS(4731), + [anon_sym_internal] = ACTIONS(4731), + [anon_sym_new] = ACTIONS(4731), + [anon_sym_override] = ACTIONS(4731), + [anon_sym_partial] = ACTIONS(4731), + [anon_sym_private] = ACTIONS(4731), + [anon_sym_protected] = ACTIONS(4731), + [anon_sym_public] = ACTIONS(4731), + [anon_sym_readonly] = ACTIONS(4731), + [anon_sym_required] = ACTIONS(4731), + [anon_sym_sealed] = ACTIONS(4731), + [anon_sym_virtual] = ACTIONS(4731), + [anon_sym_volatile] = ACTIONS(4731), + [anon_sym_where] = ACTIONS(29), + [anon_sym_notnull] = ACTIONS(29), + [anon_sym_unmanaged] = ACTIONS(29), + [anon_sym_get] = ACTIONS(5340), + [anon_sym_set] = ACTIONS(5340), + [anon_sym_add] = ACTIONS(5340), + [anon_sym_remove] = ACTIONS(5340), + [anon_sym_init] = ACTIONS(5340), + [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), @@ -487884,57 +487366,57 @@ 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), - [anon_sym_SEMI] = ACTIONS(5342), - [anon_sym_LBRACK] = ACTIONS(5342), - [anon_sym_COLON] = ACTIONS(5342), - [anon_sym_COMMA] = ACTIONS(5342), - [anon_sym_RBRACK] = ACTIONS(5342), - [anon_sym_LPAREN] = ACTIONS(5342), - [anon_sym_RPAREN] = ACTIONS(5342), - [anon_sym_RBRACE] = ACTIONS(5342), - [anon_sym_LT] = ACTIONS(5344), - [anon_sym_GT] = ACTIONS(5344), - [anon_sym_in] = ACTIONS(5344), - [anon_sym_QMARK] = ACTIONS(5344), - [anon_sym_BANG] = ACTIONS(5344), - [anon_sym_PLUS_PLUS] = ACTIONS(5342), - [anon_sym_DASH_DASH] = ACTIONS(5342), - [anon_sym_PLUS] = ACTIONS(5344), - [anon_sym_DASH] = ACTIONS(5344), - [anon_sym_STAR] = ACTIONS(5342), - [anon_sym_SLASH] = ACTIONS(5344), - [anon_sym_PERCENT] = ACTIONS(5342), - [anon_sym_CARET] = ACTIONS(5342), - [anon_sym_PIPE] = ACTIONS(5344), - [anon_sym_AMP] = ACTIONS(5344), - [anon_sym_LT_LT] = ACTIONS(5342), - [anon_sym_GT_GT] = ACTIONS(5344), - [anon_sym_GT_GT_GT] = ACTIONS(5342), - [anon_sym_EQ_EQ] = ACTIONS(5342), - [anon_sym_BANG_EQ] = ACTIONS(5342), - [anon_sym_GT_EQ] = ACTIONS(5342), - [anon_sym_LT_EQ] = ACTIONS(5342), - [anon_sym_DOT] = ACTIONS(5344), - [anon_sym_EQ_GT] = ACTIONS(5342), - [anon_sym_switch] = ACTIONS(5342), - [anon_sym_when] = ACTIONS(5342), - [anon_sym_DOT_DOT] = ACTIONS(5342), - [anon_sym_and] = ACTIONS(5342), - [anon_sym_or] = ACTIONS(5342), - [anon_sym_AMP_AMP] = ACTIONS(5342), - [anon_sym_PIPE_PIPE] = ACTIONS(5342), - [anon_sym_QMARK_QMARK] = ACTIONS(5342), - [anon_sym_into] = ACTIONS(5342), - [anon_sym_on] = ACTIONS(5342), - [anon_sym_equals] = ACTIONS(5342), - [anon_sym_by] = ACTIONS(5342), - [anon_sym_as] = ACTIONS(5342), - [anon_sym_is] = ACTIONS(5342), - [anon_sym_DASH_GT] = ACTIONS(5342), - [anon_sym_with] = ACTIONS(5342), - [aux_sym_preproc_if_token3] = ACTIONS(5342), - [aux_sym_preproc_else_token1] = ACTIONS(5342), - [aux_sym_preproc_elif_token1] = ACTIONS(5342), + [anon_sym_EQ] = ACTIONS(5342), + [anon_sym_LBRACK] = ACTIONS(4811), + [anon_sym_LPAREN] = ACTIONS(4811), + [anon_sym_LT] = ACTIONS(4813), + [anon_sym_GT] = ACTIONS(4813), + [anon_sym_QMARK] = ACTIONS(4813), + [anon_sym_BANG] = ACTIONS(4813), + [anon_sym_PLUS_PLUS] = ACTIONS(4811), + [anon_sym_DASH_DASH] = ACTIONS(4811), + [anon_sym_PLUS] = ACTIONS(4813), + [anon_sym_DASH] = ACTIONS(4813), + [anon_sym_STAR] = ACTIONS(4813), + [anon_sym_SLASH] = ACTIONS(4813), + [anon_sym_PERCENT] = ACTIONS(4813), + [anon_sym_CARET] = ACTIONS(4813), + [anon_sym_PIPE] = ACTIONS(4813), + [anon_sym_AMP] = ACTIONS(4813), + [anon_sym_LT_LT] = ACTIONS(4813), + [anon_sym_GT_GT] = ACTIONS(4813), + [anon_sym_GT_GT_GT] = ACTIONS(4813), + [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(4813), + [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_PLUS_EQ] = ACTIONS(5344), + [anon_sym_DASH_EQ] = ACTIONS(5344), + [anon_sym_STAR_EQ] = ACTIONS(5344), + [anon_sym_SLASH_EQ] = ACTIONS(5344), + [anon_sym_PERCENT_EQ] = ACTIONS(5344), + [anon_sym_AMP_EQ] = ACTIONS(5344), + [anon_sym_CARET_EQ] = ACTIONS(5344), + [anon_sym_PIPE_EQ] = ACTIONS(5344), + [anon_sym_LT_LT_EQ] = ACTIONS(5344), + [anon_sym_GT_GT_EQ] = ACTIONS(5344), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(5344), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(5344), + [anon_sym_AMP_AMP] = ACTIONS(4811), + [anon_sym_PIPE_PIPE] = ACTIONS(4811), + [anon_sym_QMARK_QMARK] = ACTIONS(4813), + [anon_sym_into] = 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_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -487956,57 +487438,57 @@ 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(5001), - [anon_sym_LBRACK] = ACTIONS(5001), - [anon_sym_COLON] = ACTIONS(5001), - [anon_sym_COMMA] = ACTIONS(5001), - [anon_sym_RBRACK] = ACTIONS(5001), - [anon_sym_LPAREN] = ACTIONS(5001), - [anon_sym_RPAREN] = ACTIONS(5001), - [anon_sym_RBRACE] = ACTIONS(5001), - [anon_sym_LT] = ACTIONS(5003), - [anon_sym_GT] = ACTIONS(5003), - [anon_sym_in] = ACTIONS(5003), - [anon_sym_QMARK] = ACTIONS(5003), - [anon_sym_BANG] = ACTIONS(5003), - [anon_sym_PLUS_PLUS] = ACTIONS(5001), - [anon_sym_DASH_DASH] = ACTIONS(5001), - [anon_sym_PLUS] = ACTIONS(5003), - [anon_sym_DASH] = ACTIONS(5003), - [anon_sym_STAR] = ACTIONS(5001), - [anon_sym_SLASH] = ACTIONS(5003), - [anon_sym_PERCENT] = ACTIONS(5001), - [anon_sym_CARET] = ACTIONS(5001), - [anon_sym_PIPE] = ACTIONS(5003), - [anon_sym_AMP] = ACTIONS(5003), - [anon_sym_LT_LT] = ACTIONS(5001), - [anon_sym_GT_GT] = ACTIONS(5003), - [anon_sym_GT_GT_GT] = ACTIONS(5001), - [anon_sym_EQ_EQ] = ACTIONS(5001), - [anon_sym_BANG_EQ] = ACTIONS(5001), - [anon_sym_GT_EQ] = ACTIONS(5001), - [anon_sym_LT_EQ] = ACTIONS(5001), - [anon_sym_DOT] = ACTIONS(5003), - [anon_sym_EQ_GT] = ACTIONS(5001), - [anon_sym_switch] = ACTIONS(5001), - [anon_sym_when] = ACTIONS(5001), - [anon_sym_DOT_DOT] = ACTIONS(5001), - [anon_sym_and] = ACTIONS(5001), - [anon_sym_or] = ACTIONS(5001), - [anon_sym_AMP_AMP] = ACTIONS(5001), - [anon_sym_PIPE_PIPE] = ACTIONS(5001), - [anon_sym_QMARK_QMARK] = ACTIONS(5001), - [anon_sym_into] = ACTIONS(5001), - [anon_sym_on] = ACTIONS(5001), - [anon_sym_equals] = ACTIONS(5001), - [anon_sym_by] = ACTIONS(5001), - [anon_sym_as] = ACTIONS(5001), - [anon_sym_is] = ACTIONS(5001), - [anon_sym_DASH_GT] = ACTIONS(5001), - [anon_sym_with] = ACTIONS(5001), - [aux_sym_preproc_if_token3] = ACTIONS(5001), - [aux_sym_preproc_else_token1] = ACTIONS(5001), - [aux_sym_preproc_elif_token1] = ACTIONS(5001), + [anon_sym_SEMI] = ACTIONS(2951), + [anon_sym_LBRACK] = ACTIONS(2951), + [anon_sym_COLON] = ACTIONS(2951), + [anon_sym_COMMA] = ACTIONS(2951), + [anon_sym_RBRACK] = ACTIONS(2951), + [anon_sym_LPAREN] = ACTIONS(2951), + [anon_sym_RPAREN] = ACTIONS(2951), + [anon_sym_RBRACE] = ACTIONS(2951), + [anon_sym_LT] = ACTIONS(2949), + [anon_sym_GT] = ACTIONS(2949), + [anon_sym_in] = ACTIONS(2949), + [anon_sym_QMARK] = ACTIONS(2949), + [anon_sym_BANG] = ACTIONS(2949), + [anon_sym_PLUS_PLUS] = ACTIONS(2951), + [anon_sym_DASH_DASH] = ACTIONS(2951), + [anon_sym_PLUS] = ACTIONS(2949), + [anon_sym_DASH] = ACTIONS(2949), + [anon_sym_STAR] = ACTIONS(2951), + [anon_sym_SLASH] = ACTIONS(2949), + [anon_sym_PERCENT] = ACTIONS(2951), + [anon_sym_CARET] = ACTIONS(2951), + [anon_sym_PIPE] = ACTIONS(2949), + [anon_sym_AMP] = ACTIONS(2949), + [anon_sym_LT_LT] = ACTIONS(2951), + [anon_sym_GT_GT] = ACTIONS(2949), + [anon_sym_GT_GT_GT] = ACTIONS(2951), + [anon_sym_EQ_EQ] = ACTIONS(2951), + [anon_sym_BANG_EQ] = ACTIONS(2951), + [anon_sym_GT_EQ] = ACTIONS(2951), + [anon_sym_LT_EQ] = ACTIONS(2951), + [anon_sym_DOT] = ACTIONS(2949), + [anon_sym_EQ_GT] = ACTIONS(2951), + [anon_sym_switch] = ACTIONS(2951), + [anon_sym_when] = ACTIONS(2951), + [anon_sym_DOT_DOT] = ACTIONS(2951), + [anon_sym_and] = ACTIONS(2951), + [anon_sym_or] = ACTIONS(2951), + [anon_sym_AMP_AMP] = ACTIONS(2951), + [anon_sym_PIPE_PIPE] = ACTIONS(2951), + [anon_sym_QMARK_QMARK] = ACTIONS(2951), + [anon_sym_into] = ACTIONS(2951), + [anon_sym_on] = ACTIONS(2951), + [anon_sym_equals] = ACTIONS(2951), + [anon_sym_by] = ACTIONS(2951), + [anon_sym_as] = ACTIONS(2951), + [anon_sym_is] = ACTIONS(2951), + [anon_sym_DASH_GT] = ACTIONS(2951), + [anon_sym_with] = ACTIONS(2951), + [aux_sym_preproc_if_token3] = ACTIONS(2951), + [aux_sym_preproc_else_token1] = ACTIONS(2951), + [aux_sym_preproc_elif_token1] = ACTIONS(2951), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -488028,6 +487510,78 @@ 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(5142), + [anon_sym_LBRACK] = ACTIONS(5142), + [anon_sym_COLON] = ACTIONS(5142), + [anon_sym_COMMA] = ACTIONS(5142), + [anon_sym_RBRACK] = ACTIONS(5142), + [anon_sym_LPAREN] = ACTIONS(5142), + [anon_sym_RPAREN] = ACTIONS(5142), + [anon_sym_RBRACE] = ACTIONS(5142), + [anon_sym_LT] = ACTIONS(5144), + [anon_sym_GT] = ACTIONS(5144), + [anon_sym_in] = ACTIONS(5144), + [anon_sym_QMARK] = ACTIONS(5144), + [anon_sym_BANG] = ACTIONS(5144), + [anon_sym_PLUS_PLUS] = ACTIONS(5142), + [anon_sym_DASH_DASH] = ACTIONS(5142), + [anon_sym_PLUS] = ACTIONS(5144), + [anon_sym_DASH] = ACTIONS(5144), + [anon_sym_STAR] = ACTIONS(5142), + [anon_sym_SLASH] = ACTIONS(5144), + [anon_sym_PERCENT] = ACTIONS(5142), + [anon_sym_CARET] = ACTIONS(5142), + [anon_sym_PIPE] = ACTIONS(5144), + [anon_sym_AMP] = ACTIONS(5144), + [anon_sym_LT_LT] = ACTIONS(5142), + [anon_sym_GT_GT] = ACTIONS(5144), + [anon_sym_GT_GT_GT] = ACTIONS(5142), + [anon_sym_EQ_EQ] = ACTIONS(5142), + [anon_sym_BANG_EQ] = ACTIONS(5142), + [anon_sym_GT_EQ] = ACTIONS(5142), + [anon_sym_LT_EQ] = ACTIONS(5142), + [anon_sym_DOT] = ACTIONS(5144), + [anon_sym_EQ_GT] = ACTIONS(5142), + [anon_sym_switch] = ACTIONS(5142), + [anon_sym_when] = ACTIONS(5142), + [anon_sym_DOT_DOT] = ACTIONS(5142), + [anon_sym_and] = ACTIONS(5142), + [anon_sym_or] = ACTIONS(5142), + [anon_sym_AMP_AMP] = ACTIONS(5142), + [anon_sym_PIPE_PIPE] = ACTIONS(5142), + [anon_sym_QMARK_QMARK] = ACTIONS(5142), + [anon_sym_into] = ACTIONS(5142), + [anon_sym_on] = ACTIONS(5142), + [anon_sym_equals] = ACTIONS(5142), + [anon_sym_by] = ACTIONS(5142), + [anon_sym_as] = ACTIONS(5142), + [anon_sym_is] = ACTIONS(5142), + [anon_sym_DASH_GT] = ACTIONS(5142), + [anon_sym_with] = ACTIONS(5142), + [aux_sym_preproc_if_token3] = ACTIONS(5142), + [aux_sym_preproc_else_token1] = ACTIONS(5142), + [aux_sym_preproc_elif_token1] = ACTIONS(5142), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + }, + [3237] = { + [sym_preproc_region] = STATE(3237), + [sym_preproc_endregion] = STATE(3237), + [sym_preproc_line] = STATE(3237), + [sym_preproc_pragma] = STATE(3237), + [sym_preproc_nullable] = STATE(3237), + [sym_preproc_error] = STATE(3237), + [sym_preproc_warning] = STATE(3237), + [sym_preproc_define] = STATE(3237), + [sym_preproc_undef] = STATE(3237), [anon_sym_SEMI] = ACTIONS(5346), [anon_sym_LBRACK] = ACTIONS(5346), [anon_sym_COLON] = ACTIONS(5346), @@ -488090,78 +487644,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), }, - [3237] = { - [sym_preproc_region] = STATE(3237), - [sym_preproc_endregion] = STATE(3237), - [sym_preproc_line] = STATE(3237), - [sym_preproc_pragma] = STATE(3237), - [sym_preproc_nullable] = STATE(3237), - [sym_preproc_error] = STATE(3237), - [sym_preproc_warning] = STATE(3237), - [sym_preproc_define] = STATE(3237), - [sym_preproc_undef] = STATE(3237), - [anon_sym_SEMI] = ACTIONS(5042), - [anon_sym_LBRACK] = ACTIONS(5042), - [anon_sym_COLON] = ACTIONS(5042), - [anon_sym_COMMA] = ACTIONS(5042), - [anon_sym_RBRACK] = ACTIONS(5042), - [anon_sym_LPAREN] = ACTIONS(5042), - [anon_sym_RPAREN] = ACTIONS(5042), - [anon_sym_RBRACE] = ACTIONS(5042), - [anon_sym_LT] = ACTIONS(5044), - [anon_sym_GT] = ACTIONS(5044), - [anon_sym_in] = ACTIONS(5044), - [anon_sym_QMARK] = ACTIONS(5044), - [anon_sym_BANG] = ACTIONS(5044), - [anon_sym_PLUS_PLUS] = ACTIONS(5042), - [anon_sym_DASH_DASH] = ACTIONS(5042), - [anon_sym_PLUS] = ACTIONS(5044), - [anon_sym_DASH] = ACTIONS(5044), - [anon_sym_STAR] = ACTIONS(5042), - [anon_sym_SLASH] = ACTIONS(5044), - [anon_sym_PERCENT] = ACTIONS(5042), - [anon_sym_CARET] = ACTIONS(5042), - [anon_sym_PIPE] = ACTIONS(5044), - [anon_sym_AMP] = ACTIONS(5044), - [anon_sym_LT_LT] = ACTIONS(5042), - [anon_sym_GT_GT] = ACTIONS(5044), - [anon_sym_GT_GT_GT] = ACTIONS(5042), - [anon_sym_EQ_EQ] = ACTIONS(5042), - [anon_sym_BANG_EQ] = ACTIONS(5042), - [anon_sym_GT_EQ] = ACTIONS(5042), - [anon_sym_LT_EQ] = ACTIONS(5042), - [anon_sym_DOT] = ACTIONS(5044), - [anon_sym_EQ_GT] = ACTIONS(5042), - [anon_sym_switch] = ACTIONS(5042), - [anon_sym_when] = ACTIONS(5042), - [anon_sym_DOT_DOT] = ACTIONS(5042), - [anon_sym_and] = ACTIONS(5042), - [anon_sym_or] = ACTIONS(5042), - [anon_sym_AMP_AMP] = ACTIONS(5042), - [anon_sym_PIPE_PIPE] = ACTIONS(5042), - [anon_sym_QMARK_QMARK] = ACTIONS(5042), - [anon_sym_into] = ACTIONS(5042), - [anon_sym_on] = ACTIONS(5042), - [anon_sym_equals] = ACTIONS(5042), - [anon_sym_by] = ACTIONS(5042), - [anon_sym_as] = ACTIONS(5042), - [anon_sym_is] = ACTIONS(5042), - [anon_sym_DASH_GT] = ACTIONS(5042), - [anon_sym_with] = ACTIONS(5042), - [aux_sym_preproc_if_token3] = ACTIONS(5042), - [aux_sym_preproc_else_token1] = ACTIONS(5042), - [aux_sym_preproc_elif_token1] = ACTIONS(5042), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - }, [3238] = { [sym_preproc_region] = STATE(3238), [sym_preproc_endregion] = STATE(3238), @@ -488172,57 +487654,57 @@ 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_SEMI] = ACTIONS(5086), - [anon_sym_LBRACK] = ACTIONS(5086), - [anon_sym_COLON] = ACTIONS(5086), - [anon_sym_COMMA] = ACTIONS(5086), - [anon_sym_RBRACK] = ACTIONS(5086), - [anon_sym_LPAREN] = ACTIONS(5086), - [anon_sym_RPAREN] = ACTIONS(5086), - [anon_sym_RBRACE] = ACTIONS(5086), - [anon_sym_LT] = ACTIONS(5088), - [anon_sym_GT] = ACTIONS(5088), - [anon_sym_in] = ACTIONS(5088), - [anon_sym_QMARK] = ACTIONS(5088), - [anon_sym_BANG] = ACTIONS(5088), - [anon_sym_PLUS_PLUS] = ACTIONS(5086), - [anon_sym_DASH_DASH] = ACTIONS(5086), - [anon_sym_PLUS] = ACTIONS(5088), - [anon_sym_DASH] = ACTIONS(5088), - [anon_sym_STAR] = ACTIONS(5086), - [anon_sym_SLASH] = ACTIONS(5088), - [anon_sym_PERCENT] = ACTIONS(5086), - [anon_sym_CARET] = ACTIONS(5086), - [anon_sym_PIPE] = ACTIONS(5088), - [anon_sym_AMP] = ACTIONS(5088), - [anon_sym_LT_LT] = ACTIONS(5086), - [anon_sym_GT_GT] = ACTIONS(5088), - [anon_sym_GT_GT_GT] = ACTIONS(5086), - [anon_sym_EQ_EQ] = ACTIONS(5086), - [anon_sym_BANG_EQ] = ACTIONS(5086), - [anon_sym_GT_EQ] = ACTIONS(5086), - [anon_sym_LT_EQ] = ACTIONS(5086), - [anon_sym_DOT] = ACTIONS(5088), - [anon_sym_EQ_GT] = ACTIONS(5086), - [anon_sym_switch] = ACTIONS(5086), - [anon_sym_when] = ACTIONS(5086), - [anon_sym_DOT_DOT] = ACTIONS(5086), - [anon_sym_and] = ACTIONS(5086), - [anon_sym_or] = ACTIONS(5086), - [anon_sym_AMP_AMP] = ACTIONS(5086), - [anon_sym_PIPE_PIPE] = ACTIONS(5086), - [anon_sym_QMARK_QMARK] = ACTIONS(5086), - [anon_sym_into] = ACTIONS(5086), - [anon_sym_on] = ACTIONS(5086), - [anon_sym_equals] = ACTIONS(5086), - [anon_sym_by] = ACTIONS(5086), - [anon_sym_as] = ACTIONS(5086), - [anon_sym_is] = ACTIONS(5086), - [anon_sym_DASH_GT] = ACTIONS(5086), - [anon_sym_with] = ACTIONS(5086), - [aux_sym_preproc_if_token3] = ACTIONS(5086), - [aux_sym_preproc_else_token1] = ACTIONS(5086), - [aux_sym_preproc_elif_token1] = ACTIONS(5086), + [anon_sym_SEMI] = ACTIONS(5350), + [anon_sym_LBRACK] = ACTIONS(5350), + [anon_sym_COLON] = ACTIONS(5350), + [anon_sym_COMMA] = ACTIONS(5350), + [anon_sym_RBRACK] = ACTIONS(5350), + [anon_sym_LPAREN] = ACTIONS(5350), + [anon_sym_RPAREN] = ACTIONS(5350), + [anon_sym_RBRACE] = ACTIONS(5350), + [anon_sym_LT] = ACTIONS(5352), + [anon_sym_GT] = ACTIONS(5352), + [anon_sym_in] = ACTIONS(5352), + [anon_sym_QMARK] = ACTIONS(5352), + [anon_sym_BANG] = ACTIONS(5352), + [anon_sym_PLUS_PLUS] = ACTIONS(5350), + [anon_sym_DASH_DASH] = ACTIONS(5350), + [anon_sym_PLUS] = ACTIONS(5352), + [anon_sym_DASH] = ACTIONS(5352), + [anon_sym_STAR] = ACTIONS(5350), + [anon_sym_SLASH] = ACTIONS(5352), + [anon_sym_PERCENT] = ACTIONS(5350), + [anon_sym_CARET] = ACTIONS(5350), + [anon_sym_PIPE] = ACTIONS(5352), + [anon_sym_AMP] = ACTIONS(5352), + [anon_sym_LT_LT] = ACTIONS(5350), + [anon_sym_GT_GT] = ACTIONS(5352), + [anon_sym_GT_GT_GT] = ACTIONS(5350), + [anon_sym_EQ_EQ] = ACTIONS(5350), + [anon_sym_BANG_EQ] = ACTIONS(5350), + [anon_sym_GT_EQ] = ACTIONS(5350), + [anon_sym_LT_EQ] = ACTIONS(5350), + [anon_sym_DOT] = ACTIONS(5352), + [anon_sym_EQ_GT] = ACTIONS(5350), + [anon_sym_switch] = ACTIONS(5350), + [anon_sym_when] = ACTIONS(5350), + [anon_sym_DOT_DOT] = ACTIONS(5350), + [anon_sym_and] = ACTIONS(5350), + [anon_sym_or] = ACTIONS(5350), + [anon_sym_AMP_AMP] = ACTIONS(5350), + [anon_sym_PIPE_PIPE] = ACTIONS(5350), + [anon_sym_QMARK_QMARK] = ACTIONS(5350), + [anon_sym_into] = ACTIONS(5350), + [anon_sym_on] = ACTIONS(5350), + [anon_sym_equals] = ACTIONS(5350), + [anon_sym_by] = ACTIONS(5350), + [anon_sym_as] = ACTIONS(5350), + [anon_sym_is] = ACTIONS(5350), + [anon_sym_DASH_GT] = ACTIONS(5350), + [anon_sym_with] = ACTIONS(5350), + [aux_sym_preproc_if_token3] = ACTIONS(5350), + [aux_sym_preproc_else_token1] = ACTIONS(5350), + [aux_sym_preproc_elif_token1] = ACTIONS(5350), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -488244,57 +487726,57 @@ 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_SEMI] = ACTIONS(5106), - [anon_sym_LBRACK] = ACTIONS(5106), - [anon_sym_COLON] = ACTIONS(5106), - [anon_sym_COMMA] = ACTIONS(5106), - [anon_sym_RBRACK] = ACTIONS(5106), - [anon_sym_LPAREN] = ACTIONS(5106), - [anon_sym_RPAREN] = ACTIONS(5106), - [anon_sym_RBRACE] = ACTIONS(5106), - [anon_sym_LT] = ACTIONS(5108), - [anon_sym_GT] = ACTIONS(5108), - [anon_sym_in] = ACTIONS(5108), - [anon_sym_QMARK] = ACTIONS(5108), - [anon_sym_BANG] = ACTIONS(5108), - [anon_sym_PLUS_PLUS] = ACTIONS(5106), - [anon_sym_DASH_DASH] = ACTIONS(5106), - [anon_sym_PLUS] = ACTIONS(5108), - [anon_sym_DASH] = ACTIONS(5108), - [anon_sym_STAR] = ACTIONS(5106), - [anon_sym_SLASH] = ACTIONS(5108), - [anon_sym_PERCENT] = ACTIONS(5106), - [anon_sym_CARET] = ACTIONS(5106), - [anon_sym_PIPE] = ACTIONS(5108), - [anon_sym_AMP] = ACTIONS(5108), - [anon_sym_LT_LT] = ACTIONS(5106), - [anon_sym_GT_GT] = ACTIONS(5108), - [anon_sym_GT_GT_GT] = ACTIONS(5106), - [anon_sym_EQ_EQ] = ACTIONS(5106), - [anon_sym_BANG_EQ] = ACTIONS(5106), - [anon_sym_GT_EQ] = ACTIONS(5106), - [anon_sym_LT_EQ] = ACTIONS(5106), - [anon_sym_DOT] = ACTIONS(5108), - [anon_sym_EQ_GT] = ACTIONS(5106), - [anon_sym_switch] = ACTIONS(5106), - [anon_sym_when] = ACTIONS(5106), - [anon_sym_DOT_DOT] = ACTIONS(5106), - [anon_sym_and] = ACTIONS(5106), - [anon_sym_or] = ACTIONS(5106), - [anon_sym_AMP_AMP] = ACTIONS(5106), - [anon_sym_PIPE_PIPE] = ACTIONS(5106), - [anon_sym_QMARK_QMARK] = ACTIONS(5106), - [anon_sym_into] = ACTIONS(5106), - [anon_sym_on] = ACTIONS(5106), - [anon_sym_equals] = ACTIONS(5106), - [anon_sym_by] = ACTIONS(5106), - [anon_sym_as] = ACTIONS(5106), - [anon_sym_is] = ACTIONS(5106), - [anon_sym_DASH_GT] = ACTIONS(5106), - [anon_sym_with] = ACTIONS(5106), - [aux_sym_preproc_if_token3] = ACTIONS(5106), - [aux_sym_preproc_else_token1] = ACTIONS(5106), - [aux_sym_preproc_elif_token1] = ACTIONS(5106), + [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_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), @@ -488316,57 +487798,57 @@ 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(2953), - [anon_sym_LBRACK] = ACTIONS(2953), - [anon_sym_COLON] = ACTIONS(2953), - [anon_sym_COMMA] = ACTIONS(2953), - [anon_sym_RBRACK] = ACTIONS(2953), - [anon_sym_LPAREN] = ACTIONS(2953), - [anon_sym_RPAREN] = ACTIONS(2953), - [anon_sym_RBRACE] = ACTIONS(2953), - [anon_sym_LT] = ACTIONS(2951), - [anon_sym_GT] = ACTIONS(2951), - [anon_sym_in] = ACTIONS(2951), - [anon_sym_QMARK] = ACTIONS(2951), - [anon_sym_BANG] = ACTIONS(2951), - [anon_sym_PLUS_PLUS] = ACTIONS(2953), - [anon_sym_DASH_DASH] = ACTIONS(2953), - [anon_sym_PLUS] = ACTIONS(2951), - [anon_sym_DASH] = ACTIONS(2951), - [anon_sym_STAR] = ACTIONS(2953), - [anon_sym_SLASH] = ACTIONS(2951), - [anon_sym_PERCENT] = ACTIONS(2953), - [anon_sym_CARET] = ACTIONS(2953), - [anon_sym_PIPE] = ACTIONS(2951), - [anon_sym_AMP] = ACTIONS(2951), - [anon_sym_LT_LT] = ACTIONS(2953), - [anon_sym_GT_GT] = ACTIONS(2951), - [anon_sym_GT_GT_GT] = ACTIONS(2953), - [anon_sym_EQ_EQ] = ACTIONS(2953), - [anon_sym_BANG_EQ] = ACTIONS(2953), - [anon_sym_GT_EQ] = ACTIONS(2953), - [anon_sym_LT_EQ] = ACTIONS(2953), - [anon_sym_DOT] = ACTIONS(2951), - [anon_sym_EQ_GT] = ACTIONS(2953), - [anon_sym_switch] = ACTIONS(2953), - [anon_sym_when] = ACTIONS(2953), - [anon_sym_DOT_DOT] = ACTIONS(2953), - [anon_sym_and] = ACTIONS(2953), - [anon_sym_or] = ACTIONS(2953), - [anon_sym_AMP_AMP] = ACTIONS(2953), - [anon_sym_PIPE_PIPE] = ACTIONS(2953), - [anon_sym_QMARK_QMARK] = ACTIONS(2953), - [anon_sym_into] = ACTIONS(2953), - [anon_sym_on] = ACTIONS(2953), - [anon_sym_equals] = ACTIONS(2953), - [anon_sym_by] = ACTIONS(2953), - [anon_sym_as] = ACTIONS(2953), - [anon_sym_is] = ACTIONS(2953), - [anon_sym_DASH_GT] = ACTIONS(2953), - [anon_sym_with] = ACTIONS(2953), - [aux_sym_preproc_if_token3] = ACTIONS(2953), - [aux_sym_preproc_else_token1] = ACTIONS(2953), - [aux_sym_preproc_elif_token1] = ACTIONS(2953), + [anon_sym_SEMI] = ACTIONS(4929), + [anon_sym_LBRACK] = ACTIONS(4929), + [anon_sym_COLON] = ACTIONS(4929), + [anon_sym_COMMA] = ACTIONS(4929), + [anon_sym_RBRACK] = ACTIONS(4929), + [anon_sym_LPAREN] = ACTIONS(4929), + [anon_sym_RPAREN] = ACTIONS(4929), + [anon_sym_RBRACE] = ACTIONS(4929), + [anon_sym_LT] = ACTIONS(4931), + [anon_sym_GT] = ACTIONS(4931), + [anon_sym_in] = ACTIONS(4931), + [anon_sym_QMARK] = ACTIONS(4931), + [anon_sym_BANG] = ACTIONS(4931), + [anon_sym_PLUS_PLUS] = ACTIONS(4929), + [anon_sym_DASH_DASH] = ACTIONS(4929), + [anon_sym_PLUS] = ACTIONS(4931), + [anon_sym_DASH] = ACTIONS(4931), + [anon_sym_STAR] = ACTIONS(4929), + [anon_sym_SLASH] = ACTIONS(4931), + [anon_sym_PERCENT] = ACTIONS(4929), + [anon_sym_CARET] = ACTIONS(4929), + [anon_sym_PIPE] = ACTIONS(4931), + [anon_sym_AMP] = ACTIONS(4931), + [anon_sym_LT_LT] = ACTIONS(4929), + [anon_sym_GT_GT] = ACTIONS(4931), + [anon_sym_GT_GT_GT] = ACTIONS(4929), + [anon_sym_EQ_EQ] = ACTIONS(4929), + [anon_sym_BANG_EQ] = ACTIONS(4929), + [anon_sym_GT_EQ] = ACTIONS(4929), + [anon_sym_LT_EQ] = ACTIONS(4929), + [anon_sym_DOT] = ACTIONS(4931), + [anon_sym_EQ_GT] = ACTIONS(4929), + [anon_sym_switch] = ACTIONS(4929), + [anon_sym_when] = ACTIONS(4929), + [anon_sym_DOT_DOT] = ACTIONS(4929), + [anon_sym_and] = ACTIONS(4929), + [anon_sym_or] = ACTIONS(4929), + [anon_sym_AMP_AMP] = ACTIONS(4929), + [anon_sym_PIPE_PIPE] = ACTIONS(4929), + [anon_sym_QMARK_QMARK] = ACTIONS(4929), + [anon_sym_into] = ACTIONS(4929), + [anon_sym_on] = ACTIONS(4929), + [anon_sym_equals] = ACTIONS(4929), + [anon_sym_by] = ACTIONS(4929), + [anon_sym_as] = ACTIONS(4929), + [anon_sym_is] = ACTIONS(4929), + [anon_sym_DASH_GT] = ACTIONS(4929), + [anon_sym_with] = ACTIONS(4929), + [aux_sym_preproc_if_token3] = ACTIONS(4929), + [aux_sym_preproc_else_token1] = ACTIONS(4929), + [aux_sym_preproc_elif_token1] = ACTIONS(4929), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -488388,57 +487870,57 @@ 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(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(3640), + [anon_sym_LBRACK] = ACTIONS(3640), + [anon_sym_COLON] = ACTIONS(3640), + [anon_sym_COMMA] = ACTIONS(3640), + [anon_sym_RBRACK] = ACTIONS(3640), + [anon_sym_LPAREN] = ACTIONS(3640), + [anon_sym_RPAREN] = ACTIONS(3640), + [anon_sym_LBRACE] = ACTIONS(3640), + [anon_sym_RBRACE] = ACTIONS(3640), + [anon_sym_LT] = ACTIONS(3638), + [anon_sym_GT] = ACTIONS(3638), + [anon_sym_in] = ACTIONS(3640), + [anon_sym_QMARK] = ACTIONS(3638), + [anon_sym_BANG] = ACTIONS(3638), + [anon_sym_PLUS_PLUS] = ACTIONS(3640), + [anon_sym_DASH_DASH] = ACTIONS(3640), + [anon_sym_PLUS] = ACTIONS(3638), + [anon_sym_DASH] = ACTIONS(3638), + [anon_sym_STAR] = ACTIONS(3640), + [anon_sym_SLASH] = ACTIONS(3638), + [anon_sym_PERCENT] = ACTIONS(3640), + [anon_sym_CARET] = ACTIONS(3640), + [anon_sym_PIPE] = ACTIONS(3638), + [anon_sym_AMP] = ACTIONS(3638), + [anon_sym_LT_LT] = ACTIONS(3640), + [anon_sym_GT_GT] = ACTIONS(3638), + [anon_sym_GT_GT_GT] = ACTIONS(3640), + [anon_sym_EQ_EQ] = ACTIONS(3640), + [anon_sym_BANG_EQ] = ACTIONS(3640), + [anon_sym_GT_EQ] = ACTIONS(3640), + [anon_sym_LT_EQ] = ACTIONS(3640), + [anon_sym_DOT] = ACTIONS(3638), + [anon_sym_EQ_GT] = ACTIONS(3640), + [anon_sym_switch] = ACTIONS(3640), + [anon_sym_when] = ACTIONS(3640), + [anon_sym_DOT_DOT] = ACTIONS(3640), + [anon_sym_and] = ACTIONS(3640), + [anon_sym_or] = ACTIONS(3640), + [anon_sym_AMP_AMP] = ACTIONS(3640), + [anon_sym_PIPE_PIPE] = ACTIONS(3640), + [anon_sym_QMARK_QMARK] = ACTIONS(3640), + [anon_sym_on] = ACTIONS(3640), + [anon_sym_equals] = ACTIONS(3640), + [anon_sym_by] = ACTIONS(3640), + [anon_sym_as] = ACTIONS(3640), + [anon_sym_is] = ACTIONS(3640), + [anon_sym_DASH_GT] = ACTIONS(3640), + [anon_sym_with] = ACTIONS(3640), + [aux_sym_preproc_if_token3] = ACTIONS(3640), + [aux_sym_preproc_else_token1] = ACTIONS(3640), + [aux_sym_preproc_elif_token1] = ACTIONS(3640), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -488460,57 +487942,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3242), [sym_preproc_define] = STATE(3242), [sym_preproc_undef] = STATE(3242), - [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_SEMI] = ACTIONS(3644), + [anon_sym_LBRACK] = ACTIONS(3644), + [anon_sym_COLON] = ACTIONS(3644), + [anon_sym_COMMA] = ACTIONS(3644), + [anon_sym_RBRACK] = ACTIONS(3644), + [anon_sym_LPAREN] = ACTIONS(3644), + [anon_sym_RPAREN] = ACTIONS(3644), + [anon_sym_LBRACE] = ACTIONS(3644), + [anon_sym_RBRACE] = ACTIONS(3644), + [anon_sym_LT] = ACTIONS(3642), + [anon_sym_GT] = ACTIONS(3642), + [anon_sym_in] = ACTIONS(3644), + [anon_sym_QMARK] = ACTIONS(3642), + [anon_sym_BANG] = ACTIONS(3642), + [anon_sym_PLUS_PLUS] = ACTIONS(3644), + [anon_sym_DASH_DASH] = ACTIONS(3644), + [anon_sym_PLUS] = ACTIONS(3642), + [anon_sym_DASH] = ACTIONS(3642), + [anon_sym_STAR] = ACTIONS(3644), + [anon_sym_SLASH] = ACTIONS(3642), + [anon_sym_PERCENT] = ACTIONS(3644), + [anon_sym_CARET] = ACTIONS(3644), + [anon_sym_PIPE] = ACTIONS(3642), + [anon_sym_AMP] = ACTIONS(3642), + [anon_sym_LT_LT] = ACTIONS(3644), + [anon_sym_GT_GT] = ACTIONS(3642), + [anon_sym_GT_GT_GT] = ACTIONS(3644), + [anon_sym_EQ_EQ] = ACTIONS(3644), + [anon_sym_BANG_EQ] = ACTIONS(3644), + [anon_sym_GT_EQ] = ACTIONS(3644), + [anon_sym_LT_EQ] = ACTIONS(3644), + [anon_sym_DOT] = ACTIONS(3642), + [anon_sym_EQ_GT] = ACTIONS(3644), + [anon_sym_switch] = ACTIONS(3644), + [anon_sym_when] = ACTIONS(3644), + [anon_sym_DOT_DOT] = ACTIONS(3644), + [anon_sym_and] = ACTIONS(3644), + [anon_sym_or] = ACTIONS(3644), + [anon_sym_AMP_AMP] = ACTIONS(3644), + [anon_sym_PIPE_PIPE] = ACTIONS(3644), + [anon_sym_QMARK_QMARK] = ACTIONS(3644), + [anon_sym_on] = ACTIONS(3644), + [anon_sym_equals] = ACTIONS(3644), + [anon_sym_by] = ACTIONS(3644), + [anon_sym_as] = ACTIONS(3644), + [anon_sym_is] = ACTIONS(3644), + [anon_sym_DASH_GT] = ACTIONS(3644), + [anon_sym_with] = ACTIONS(3644), + [aux_sym_preproc_if_token3] = ACTIONS(3644), + [aux_sym_preproc_else_token1] = ACTIONS(3644), + [aux_sym_preproc_elif_token1] = ACTIONS(3644), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -488532,57 +488014,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3243), [sym_preproc_define] = STATE(3243), [sym_preproc_undef] = STATE(3243), - [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(2951), + [anon_sym_LBRACK] = ACTIONS(2951), + [anon_sym_COLON] = ACTIONS(2951), + [anon_sym_COMMA] = ACTIONS(2951), + [anon_sym_RBRACK] = ACTIONS(2951), + [anon_sym_LPAREN] = ACTIONS(2951), + [anon_sym_RPAREN] = ACTIONS(2951), + [anon_sym_RBRACE] = ACTIONS(2951), + [anon_sym_LT] = ACTIONS(2949), + [anon_sym_GT] = ACTIONS(2949), + [anon_sym_in] = ACTIONS(2949), + [anon_sym_QMARK] = ACTIONS(2949), + [anon_sym_BANG] = ACTIONS(2949), + [anon_sym_PLUS_PLUS] = ACTIONS(2951), + [anon_sym_DASH_DASH] = ACTIONS(2951), + [anon_sym_PLUS] = ACTIONS(2949), + [anon_sym_DASH] = ACTIONS(2949), + [anon_sym_STAR] = ACTIONS(2951), + [anon_sym_SLASH] = ACTIONS(2949), + [anon_sym_PERCENT] = ACTIONS(2951), + [anon_sym_CARET] = ACTIONS(2951), + [anon_sym_PIPE] = ACTIONS(2949), + [anon_sym_AMP] = ACTIONS(2949), + [anon_sym_LT_LT] = ACTIONS(2951), + [anon_sym_GT_GT] = ACTIONS(2949), + [anon_sym_GT_GT_GT] = ACTIONS(2951), + [anon_sym_EQ_EQ] = ACTIONS(2951), + [anon_sym_BANG_EQ] = ACTIONS(2951), + [anon_sym_GT_EQ] = ACTIONS(2951), + [anon_sym_LT_EQ] = ACTIONS(2951), + [anon_sym_DOT] = ACTIONS(2949), + [anon_sym_EQ_GT] = ACTIONS(2951), + [anon_sym_switch] = ACTIONS(2951), + [anon_sym_when] = ACTIONS(2951), + [anon_sym_DOT_DOT] = ACTIONS(2951), + [anon_sym_and] = ACTIONS(2951), + [anon_sym_or] = ACTIONS(2951), + [anon_sym_AMP_AMP] = ACTIONS(2951), + [anon_sym_PIPE_PIPE] = ACTIONS(2951), + [anon_sym_QMARK_QMARK] = ACTIONS(2951), + [anon_sym_into] = ACTIONS(2951), + [anon_sym_on] = ACTIONS(2951), + [anon_sym_equals] = ACTIONS(2951), + [anon_sym_by] = ACTIONS(2951), + [anon_sym_as] = ACTIONS(2951), + [anon_sym_is] = ACTIONS(2951), + [anon_sym_DASH_GT] = ACTIONS(2951), + [anon_sym_with] = ACTIONS(2951), + [aux_sym_preproc_if_token3] = ACTIONS(2951), + [aux_sym_preproc_else_token1] = ACTIONS(2951), + [aux_sym_preproc_elif_token1] = ACTIONS(2951), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -488604,57 +488086,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3244), [sym_preproc_define] = STATE(3244), [sym_preproc_undef] = STATE(3244), - [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(3139), + [anon_sym_LBRACK] = ACTIONS(3139), + [anon_sym_COLON] = ACTIONS(3139), + [anon_sym_COMMA] = ACTIONS(3139), + [anon_sym_RBRACK] = ACTIONS(3139), + [anon_sym_LPAREN] = ACTIONS(3139), + [anon_sym_RPAREN] = ACTIONS(3139), + [anon_sym_RBRACE] = ACTIONS(3139), + [anon_sym_LT] = ACTIONS(3137), + [anon_sym_GT] = ACTIONS(3137), + [anon_sym_in] = ACTIONS(3137), + [anon_sym_QMARK] = ACTIONS(3137), + [anon_sym_BANG] = ACTIONS(3137), + [anon_sym_PLUS_PLUS] = ACTIONS(3139), + [anon_sym_DASH_DASH] = ACTIONS(3139), + [anon_sym_PLUS] = ACTIONS(3137), + [anon_sym_DASH] = ACTIONS(3137), + [anon_sym_STAR] = ACTIONS(3139), + [anon_sym_SLASH] = ACTIONS(3137), + [anon_sym_PERCENT] = ACTIONS(3139), + [anon_sym_CARET] = ACTIONS(3139), + [anon_sym_PIPE] = ACTIONS(3137), + [anon_sym_AMP] = ACTIONS(3137), + [anon_sym_LT_LT] = ACTIONS(3139), + [anon_sym_GT_GT] = ACTIONS(3137), + [anon_sym_GT_GT_GT] = ACTIONS(3139), + [anon_sym_EQ_EQ] = ACTIONS(3139), + [anon_sym_BANG_EQ] = ACTIONS(3139), + [anon_sym_GT_EQ] = ACTIONS(3139), + [anon_sym_LT_EQ] = ACTIONS(3139), + [anon_sym_DOT] = ACTIONS(3137), + [anon_sym_EQ_GT] = ACTIONS(3139), + [anon_sym_switch] = ACTIONS(3139), + [anon_sym_when] = ACTIONS(3139), + [anon_sym_DOT_DOT] = ACTIONS(3139), + [anon_sym_and] = ACTIONS(3139), + [anon_sym_or] = ACTIONS(3139), + [anon_sym_AMP_AMP] = ACTIONS(3139), + [anon_sym_PIPE_PIPE] = ACTIONS(3139), + [anon_sym_QMARK_QMARK] = ACTIONS(3139), + [anon_sym_into] = ACTIONS(3139), + [anon_sym_on] = ACTIONS(3139), + [anon_sym_equals] = ACTIONS(3139), + [anon_sym_by] = ACTIONS(3139), + [anon_sym_as] = ACTIONS(3139), + [anon_sym_is] = ACTIONS(3139), + [anon_sym_DASH_GT] = ACTIONS(3139), + [anon_sym_with] = ACTIONS(3139), + [aux_sym_preproc_if_token3] = ACTIONS(3139), + [aux_sym_preproc_else_token1] = ACTIONS(3139), + [aux_sym_preproc_elif_token1] = ACTIONS(3139), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -488676,57 +488158,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3245), [sym_preproc_define] = STATE(3245), [sym_preproc_undef] = STATE(3245), - [anon_sym_SEMI] = ACTIONS(5350), - [anon_sym_LBRACK] = ACTIONS(5350), - [anon_sym_COLON] = ACTIONS(5350), - [anon_sym_COMMA] = ACTIONS(5350), - [anon_sym_RBRACK] = ACTIONS(5350), - [anon_sym_LPAREN] = ACTIONS(5350), - [anon_sym_RPAREN] = ACTIONS(5350), - [anon_sym_RBRACE] = ACTIONS(5350), - [anon_sym_LT] = ACTIONS(5352), - [anon_sym_GT] = ACTIONS(5352), - [anon_sym_in] = ACTIONS(5352), - [anon_sym_QMARK] = ACTIONS(5352), - [anon_sym_BANG] = ACTIONS(5352), - [anon_sym_PLUS_PLUS] = ACTIONS(5350), - [anon_sym_DASH_DASH] = ACTIONS(5350), - [anon_sym_PLUS] = ACTIONS(5352), - [anon_sym_DASH] = ACTIONS(5352), - [anon_sym_STAR] = ACTIONS(5350), - [anon_sym_SLASH] = ACTIONS(5352), - [anon_sym_PERCENT] = ACTIONS(5350), - [anon_sym_CARET] = ACTIONS(5350), - [anon_sym_PIPE] = ACTIONS(5352), - [anon_sym_AMP] = ACTIONS(5352), - [anon_sym_LT_LT] = ACTIONS(5350), - [anon_sym_GT_GT] = ACTIONS(5352), - [anon_sym_GT_GT_GT] = ACTIONS(5350), - [anon_sym_EQ_EQ] = ACTIONS(5350), - [anon_sym_BANG_EQ] = ACTIONS(5350), - [anon_sym_GT_EQ] = ACTIONS(5350), - [anon_sym_LT_EQ] = ACTIONS(5350), - [anon_sym_DOT] = ACTIONS(5352), - [anon_sym_EQ_GT] = ACTIONS(5350), - [anon_sym_switch] = ACTIONS(5350), - [anon_sym_when] = ACTIONS(5350), - [anon_sym_DOT_DOT] = ACTIONS(5350), - [anon_sym_and] = ACTIONS(5350), - [anon_sym_or] = ACTIONS(5350), - [anon_sym_AMP_AMP] = ACTIONS(5350), - [anon_sym_PIPE_PIPE] = ACTIONS(5350), - [anon_sym_QMARK_QMARK] = ACTIONS(5350), - [anon_sym_into] = ACTIONS(5350), - [anon_sym_on] = ACTIONS(5350), - [anon_sym_equals] = ACTIONS(5350), - [anon_sym_by] = ACTIONS(5350), - [anon_sym_as] = ACTIONS(5350), - [anon_sym_is] = ACTIONS(5350), - [anon_sym_DASH_GT] = ACTIONS(5350), - [anon_sym_with] = ACTIONS(5350), - [aux_sym_preproc_if_token3] = ACTIONS(5350), - [aux_sym_preproc_else_token1] = ACTIONS(5350), - [aux_sym_preproc_elif_token1] = ACTIONS(5350), + [anon_sym_SEMI] = ACTIONS(5354), + [anon_sym_LBRACK] = ACTIONS(5354), + [anon_sym_COLON] = ACTIONS(5354), + [anon_sym_COMMA] = ACTIONS(5354), + [anon_sym_RBRACK] = ACTIONS(5354), + [anon_sym_LPAREN] = ACTIONS(5354), + [anon_sym_RPAREN] = ACTIONS(5354), + [anon_sym_RBRACE] = ACTIONS(5354), + [anon_sym_LT] = ACTIONS(5356), + [anon_sym_GT] = ACTIONS(5356), + [anon_sym_in] = ACTIONS(5356), + [anon_sym_QMARK] = ACTIONS(5356), + [anon_sym_BANG] = ACTIONS(5356), + [anon_sym_PLUS_PLUS] = ACTIONS(5354), + [anon_sym_DASH_DASH] = ACTIONS(5354), + [anon_sym_PLUS] = ACTIONS(5356), + [anon_sym_DASH] = ACTIONS(5356), + [anon_sym_STAR] = ACTIONS(5354), + [anon_sym_SLASH] = ACTIONS(5356), + [anon_sym_PERCENT] = ACTIONS(5354), + [anon_sym_CARET] = ACTIONS(5354), + [anon_sym_PIPE] = ACTIONS(5356), + [anon_sym_AMP] = ACTIONS(5356), + [anon_sym_LT_LT] = ACTIONS(5354), + [anon_sym_GT_GT] = ACTIONS(5356), + [anon_sym_GT_GT_GT] = ACTIONS(5354), + [anon_sym_EQ_EQ] = ACTIONS(5354), + [anon_sym_BANG_EQ] = ACTIONS(5354), + [anon_sym_GT_EQ] = ACTIONS(5354), + [anon_sym_LT_EQ] = ACTIONS(5354), + [anon_sym_DOT] = ACTIONS(5356), + [anon_sym_EQ_GT] = ACTIONS(5354), + [anon_sym_switch] = ACTIONS(5354), + [anon_sym_when] = ACTIONS(5354), + [anon_sym_DOT_DOT] = ACTIONS(5354), + [anon_sym_and] = ACTIONS(5354), + [anon_sym_or] = ACTIONS(5354), + [anon_sym_AMP_AMP] = ACTIONS(5354), + [anon_sym_PIPE_PIPE] = ACTIONS(5354), + [anon_sym_QMARK_QMARK] = ACTIONS(5354), + [anon_sym_into] = ACTIONS(5354), + [anon_sym_on] = ACTIONS(5354), + [anon_sym_equals] = ACTIONS(5354), + [anon_sym_by] = ACTIONS(5354), + [anon_sym_as] = ACTIONS(5354), + [anon_sym_is] = ACTIONS(5354), + [anon_sym_DASH_GT] = ACTIONS(5354), + [anon_sym_with] = ACTIONS(5354), + [aux_sym_preproc_if_token3] = ACTIONS(5354), + [aux_sym_preproc_else_token1] = ACTIONS(5354), + [aux_sym_preproc_elif_token1] = ACTIONS(5354), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -488748,57 +488230,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_SEMI] = ACTIONS(3662), - [anon_sym_LBRACK] = ACTIONS(3662), - [anon_sym_COLON] = ACTIONS(3662), - [anon_sym_COMMA] = ACTIONS(3662), - [anon_sym_RBRACK] = ACTIONS(3662), - [anon_sym_LPAREN] = ACTIONS(3662), - [anon_sym_RPAREN] = ACTIONS(3662), - [anon_sym_LBRACE] = ACTIONS(3662), - [anon_sym_RBRACE] = ACTIONS(3662), - [anon_sym_LT] = ACTIONS(3660), - [anon_sym_GT] = ACTIONS(3660), - [anon_sym_in] = ACTIONS(3662), - [anon_sym_QMARK] = ACTIONS(3660), - [anon_sym_BANG] = ACTIONS(3660), - [anon_sym_PLUS_PLUS] = ACTIONS(3662), - [anon_sym_DASH_DASH] = ACTIONS(3662), - [anon_sym_PLUS] = ACTIONS(3660), - [anon_sym_DASH] = ACTIONS(3660), - [anon_sym_STAR] = ACTIONS(3662), - [anon_sym_SLASH] = ACTIONS(3660), - [anon_sym_PERCENT] = ACTIONS(3662), - [anon_sym_CARET] = ACTIONS(3662), - [anon_sym_PIPE] = ACTIONS(3660), - [anon_sym_AMP] = ACTIONS(3660), - [anon_sym_LT_LT] = ACTIONS(3662), - [anon_sym_GT_GT] = ACTIONS(3660), - [anon_sym_GT_GT_GT] = ACTIONS(3662), - [anon_sym_EQ_EQ] = ACTIONS(3662), - [anon_sym_BANG_EQ] = ACTIONS(3662), - [anon_sym_GT_EQ] = ACTIONS(3662), - [anon_sym_LT_EQ] = ACTIONS(3662), - [anon_sym_DOT] = ACTIONS(3660), - [anon_sym_EQ_GT] = ACTIONS(3662), - [anon_sym_switch] = ACTIONS(3662), - [anon_sym_when] = ACTIONS(3662), - [anon_sym_DOT_DOT] = ACTIONS(3662), - [anon_sym_and] = ACTIONS(3662), - [anon_sym_or] = ACTIONS(3662), - [anon_sym_AMP_AMP] = ACTIONS(3662), - [anon_sym_PIPE_PIPE] = ACTIONS(3662), - [anon_sym_QMARK_QMARK] = ACTIONS(3662), - [anon_sym_on] = ACTIONS(3662), - [anon_sym_equals] = ACTIONS(3662), - [anon_sym_by] = ACTIONS(3662), - [anon_sym_as] = ACTIONS(3662), - [anon_sym_is] = ACTIONS(3662), - [anon_sym_DASH_GT] = ACTIONS(3662), - [anon_sym_with] = ACTIONS(3662), - [aux_sym_preproc_if_token3] = ACTIONS(3662), - [aux_sym_preproc_else_token1] = ACTIONS(3662), - [aux_sym_preproc_elif_token1] = ACTIONS(3662), + [anon_sym_SEMI] = ACTIONS(2955), + [anon_sym_LBRACK] = ACTIONS(2955), + [anon_sym_COLON] = ACTIONS(2955), + [anon_sym_COMMA] = ACTIONS(2955), + [anon_sym_RBRACK] = ACTIONS(2955), + [anon_sym_LPAREN] = ACTIONS(2955), + [anon_sym_RPAREN] = ACTIONS(2955), + [anon_sym_RBRACE] = ACTIONS(2955), + [anon_sym_LT] = ACTIONS(2953), + [anon_sym_GT] = ACTIONS(2953), + [anon_sym_in] = ACTIONS(2953), + [anon_sym_QMARK] = ACTIONS(2953), + [anon_sym_BANG] = ACTIONS(2953), + [anon_sym_PLUS_PLUS] = ACTIONS(2955), + [anon_sym_DASH_DASH] = ACTIONS(2955), + [anon_sym_PLUS] = ACTIONS(2953), + [anon_sym_DASH] = ACTIONS(2953), + [anon_sym_STAR] = ACTIONS(2955), + [anon_sym_SLASH] = ACTIONS(2953), + [anon_sym_PERCENT] = ACTIONS(2955), + [anon_sym_CARET] = ACTIONS(2955), + [anon_sym_PIPE] = ACTIONS(2953), + [anon_sym_AMP] = ACTIONS(2953), + [anon_sym_LT_LT] = ACTIONS(2955), + [anon_sym_GT_GT] = ACTIONS(2953), + [anon_sym_GT_GT_GT] = ACTIONS(2955), + [anon_sym_EQ_EQ] = ACTIONS(2955), + [anon_sym_BANG_EQ] = ACTIONS(2955), + [anon_sym_GT_EQ] = ACTIONS(2955), + [anon_sym_LT_EQ] = ACTIONS(2955), + [anon_sym_DOT] = ACTIONS(2953), + [anon_sym_EQ_GT] = ACTIONS(2955), + [anon_sym_switch] = ACTIONS(2955), + [anon_sym_when] = ACTIONS(2955), + [anon_sym_DOT_DOT] = ACTIONS(2955), + [anon_sym_and] = ACTIONS(2955), + [anon_sym_or] = ACTIONS(2955), + [anon_sym_AMP_AMP] = ACTIONS(2955), + [anon_sym_PIPE_PIPE] = ACTIONS(2955), + [anon_sym_QMARK_QMARK] = ACTIONS(2955), + [anon_sym_into] = ACTIONS(2955), + [anon_sym_on] = ACTIONS(2955), + [anon_sym_equals] = ACTIONS(2955), + [anon_sym_by] = ACTIONS(2955), + [anon_sym_as] = ACTIONS(2955), + [anon_sym_is] = ACTIONS(2955), + [anon_sym_DASH_GT] = ACTIONS(2955), + [anon_sym_with] = ACTIONS(2955), + [aux_sym_preproc_if_token3] = ACTIONS(2955), + [aux_sym_preproc_else_token1] = ACTIONS(2955), + [aux_sym_preproc_elif_token1] = ACTIONS(2955), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -488820,57 +488302,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(3681), - [anon_sym_LBRACK] = ACTIONS(3681), - [anon_sym_COLON] = ACTIONS(3681), - [anon_sym_COMMA] = ACTIONS(3681), - [anon_sym_RBRACK] = ACTIONS(3681), - [anon_sym_LPAREN] = ACTIONS(3681), - [anon_sym_RPAREN] = ACTIONS(3681), - [anon_sym_LBRACE] = ACTIONS(3681), - [anon_sym_RBRACE] = ACTIONS(3681), - [anon_sym_LT] = ACTIONS(3679), - [anon_sym_GT] = ACTIONS(3679), - [anon_sym_in] = ACTIONS(3681), - [anon_sym_QMARK] = ACTIONS(3679), - [anon_sym_BANG] = ACTIONS(3679), - [anon_sym_PLUS_PLUS] = ACTIONS(3681), - [anon_sym_DASH_DASH] = ACTIONS(3681), - [anon_sym_PLUS] = ACTIONS(3679), - [anon_sym_DASH] = ACTIONS(3679), - [anon_sym_STAR] = ACTIONS(3681), - [anon_sym_SLASH] = ACTIONS(3679), - [anon_sym_PERCENT] = ACTIONS(3681), - [anon_sym_CARET] = ACTIONS(3681), - [anon_sym_PIPE] = ACTIONS(3679), - [anon_sym_AMP] = ACTIONS(3679), - [anon_sym_LT_LT] = ACTIONS(3681), - [anon_sym_GT_GT] = ACTIONS(3679), - [anon_sym_GT_GT_GT] = ACTIONS(3681), - [anon_sym_EQ_EQ] = ACTIONS(3681), - [anon_sym_BANG_EQ] = ACTIONS(3681), - [anon_sym_GT_EQ] = ACTIONS(3681), - [anon_sym_LT_EQ] = ACTIONS(3681), - [anon_sym_DOT] = ACTIONS(3679), - [anon_sym_EQ_GT] = ACTIONS(3681), - [anon_sym_switch] = ACTIONS(3681), - [anon_sym_when] = ACTIONS(3681), - [anon_sym_DOT_DOT] = ACTIONS(3681), - [anon_sym_and] = ACTIONS(3681), - [anon_sym_or] = ACTIONS(3681), - [anon_sym_AMP_AMP] = ACTIONS(3681), - [anon_sym_PIPE_PIPE] = ACTIONS(3681), - [anon_sym_QMARK_QMARK] = ACTIONS(3681), - [anon_sym_on] = ACTIONS(3681), - [anon_sym_equals] = ACTIONS(3681), - [anon_sym_by] = ACTIONS(3681), - [anon_sym_as] = ACTIONS(3681), - [anon_sym_is] = ACTIONS(3681), - [anon_sym_DASH_GT] = ACTIONS(3681), - [anon_sym_with] = ACTIONS(3681), - [aux_sym_preproc_if_token3] = ACTIONS(3681), - [aux_sym_preproc_else_token1] = ACTIONS(3681), - [aux_sym_preproc_elif_token1] = ACTIONS(3681), + [anon_sym_SEMI] = ACTIONS(5358), + [anon_sym_LBRACK] = ACTIONS(5358), + [anon_sym_COLON] = ACTIONS(5358), + [anon_sym_COMMA] = ACTIONS(5358), + [anon_sym_RBRACK] = ACTIONS(5358), + [anon_sym_LPAREN] = ACTIONS(5358), + [anon_sym_RPAREN] = ACTIONS(5358), + [anon_sym_RBRACE] = ACTIONS(5358), + [anon_sym_LT] = ACTIONS(5360), + [anon_sym_GT] = ACTIONS(5360), + [anon_sym_in] = ACTIONS(5360), + [anon_sym_QMARK] = ACTIONS(5360), + [anon_sym_BANG] = ACTIONS(5360), + [anon_sym_PLUS_PLUS] = ACTIONS(5358), + [anon_sym_DASH_DASH] = ACTIONS(5358), + [anon_sym_PLUS] = ACTIONS(5360), + [anon_sym_DASH] = ACTIONS(5360), + [anon_sym_STAR] = ACTIONS(5358), + [anon_sym_SLASH] = ACTIONS(5360), + [anon_sym_PERCENT] = ACTIONS(5358), + [anon_sym_CARET] = ACTIONS(5358), + [anon_sym_PIPE] = ACTIONS(5360), + [anon_sym_AMP] = ACTIONS(5360), + [anon_sym_LT_LT] = ACTIONS(5358), + [anon_sym_GT_GT] = ACTIONS(5360), + [anon_sym_GT_GT_GT] = ACTIONS(5358), + [anon_sym_EQ_EQ] = ACTIONS(5358), + [anon_sym_BANG_EQ] = ACTIONS(5358), + [anon_sym_GT_EQ] = ACTIONS(5358), + [anon_sym_LT_EQ] = ACTIONS(5358), + [anon_sym_DOT] = ACTIONS(5360), + [anon_sym_EQ_GT] = ACTIONS(5358), + [anon_sym_switch] = ACTIONS(5358), + [anon_sym_when] = ACTIONS(5358), + [anon_sym_DOT_DOT] = ACTIONS(5358), + [anon_sym_and] = ACTIONS(5358), + [anon_sym_or] = ACTIONS(5358), + [anon_sym_AMP_AMP] = ACTIONS(5358), + [anon_sym_PIPE_PIPE] = ACTIONS(5358), + [anon_sym_QMARK_QMARK] = ACTIONS(5358), + [anon_sym_into] = ACTIONS(5358), + [anon_sym_on] = ACTIONS(5358), + [anon_sym_equals] = ACTIONS(5358), + [anon_sym_by] = ACTIONS(5358), + [anon_sym_as] = ACTIONS(5358), + [anon_sym_is] = ACTIONS(5358), + [anon_sym_DASH_GT] = ACTIONS(5358), + [anon_sym_with] = ACTIONS(5358), + [aux_sym_preproc_if_token3] = ACTIONS(5358), + [aux_sym_preproc_else_token1] = ACTIONS(5358), + [aux_sym_preproc_elif_token1] = ACTIONS(5358), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -488892,57 +488374,57 @@ 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_SEMI] = ACTIONS(2953), - [anon_sym_LBRACK] = ACTIONS(2953), - [anon_sym_COLON] = ACTIONS(2953), - [anon_sym_COMMA] = ACTIONS(2953), - [anon_sym_RBRACK] = ACTIONS(2953), - [anon_sym_LPAREN] = ACTIONS(2953), - [anon_sym_RPAREN] = ACTIONS(2953), - [anon_sym_RBRACE] = ACTIONS(2953), - [anon_sym_LT] = ACTIONS(2951), - [anon_sym_GT] = ACTIONS(2951), - [anon_sym_in] = ACTIONS(2951), - [anon_sym_QMARK] = ACTIONS(2951), - [anon_sym_BANG] = ACTIONS(2951), - [anon_sym_PLUS_PLUS] = ACTIONS(2953), - [anon_sym_DASH_DASH] = ACTIONS(2953), - [anon_sym_PLUS] = ACTIONS(2951), - [anon_sym_DASH] = ACTIONS(2951), - [anon_sym_STAR] = ACTIONS(2953), - [anon_sym_SLASH] = ACTIONS(2951), - [anon_sym_PERCENT] = ACTIONS(2953), - [anon_sym_CARET] = ACTIONS(2953), - [anon_sym_PIPE] = ACTIONS(2951), - [anon_sym_AMP] = ACTIONS(2951), - [anon_sym_LT_LT] = ACTIONS(2953), - [anon_sym_GT_GT] = ACTIONS(2951), - [anon_sym_GT_GT_GT] = ACTIONS(2953), - [anon_sym_EQ_EQ] = ACTIONS(2953), - [anon_sym_BANG_EQ] = ACTIONS(2953), - [anon_sym_GT_EQ] = ACTIONS(2953), - [anon_sym_LT_EQ] = ACTIONS(2953), - [anon_sym_DOT] = ACTIONS(2951), - [anon_sym_EQ_GT] = ACTIONS(2953), - [anon_sym_switch] = ACTIONS(2953), - [anon_sym_when] = ACTIONS(2953), - [anon_sym_DOT_DOT] = ACTIONS(2953), - [anon_sym_and] = ACTIONS(2953), - [anon_sym_or] = ACTIONS(2953), - [anon_sym_AMP_AMP] = ACTIONS(2953), - [anon_sym_PIPE_PIPE] = ACTIONS(2953), - [anon_sym_QMARK_QMARK] = ACTIONS(2953), - [anon_sym_into] = ACTIONS(2953), - [anon_sym_on] = ACTIONS(2953), - [anon_sym_equals] = ACTIONS(2953), - [anon_sym_by] = ACTIONS(2953), - [anon_sym_as] = ACTIONS(2953), - [anon_sym_is] = ACTIONS(2953), - [anon_sym_DASH_GT] = ACTIONS(2953), - [anon_sym_with] = ACTIONS(2953), - [aux_sym_preproc_if_token3] = ACTIONS(2953), - [aux_sym_preproc_else_token1] = ACTIONS(2953), - [aux_sym_preproc_elif_token1] = ACTIONS(2953), + [anon_sym_SEMI] = ACTIONS(3657), + [anon_sym_LBRACK] = ACTIONS(3657), + [anon_sym_COLON] = ACTIONS(3657), + [anon_sym_COMMA] = ACTIONS(3657), + [anon_sym_RBRACK] = ACTIONS(3657), + [anon_sym_LPAREN] = ACTIONS(3657), + [anon_sym_RPAREN] = ACTIONS(3657), + [anon_sym_LBRACE] = ACTIONS(3657), + [anon_sym_RBRACE] = ACTIONS(3657), + [anon_sym_LT] = ACTIONS(3655), + [anon_sym_GT] = ACTIONS(3655), + [anon_sym_in] = ACTIONS(3657), + [anon_sym_QMARK] = ACTIONS(3655), + [anon_sym_BANG] = ACTIONS(3655), + [anon_sym_PLUS_PLUS] = ACTIONS(3657), + [anon_sym_DASH_DASH] = ACTIONS(3657), + [anon_sym_PLUS] = ACTIONS(3655), + [anon_sym_DASH] = ACTIONS(3655), + [anon_sym_STAR] = ACTIONS(3657), + [anon_sym_SLASH] = ACTIONS(3655), + [anon_sym_PERCENT] = ACTIONS(3657), + [anon_sym_CARET] = ACTIONS(3657), + [anon_sym_PIPE] = ACTIONS(3655), + [anon_sym_AMP] = ACTIONS(3655), + [anon_sym_LT_LT] = ACTIONS(3657), + [anon_sym_GT_GT] = ACTIONS(3655), + [anon_sym_GT_GT_GT] = ACTIONS(3657), + [anon_sym_EQ_EQ] = ACTIONS(3657), + [anon_sym_BANG_EQ] = ACTIONS(3657), + [anon_sym_GT_EQ] = ACTIONS(3657), + [anon_sym_LT_EQ] = ACTIONS(3657), + [anon_sym_DOT] = ACTIONS(3655), + [anon_sym_EQ_GT] = ACTIONS(3657), + [anon_sym_switch] = ACTIONS(3657), + [anon_sym_when] = ACTIONS(3657), + [anon_sym_DOT_DOT] = ACTIONS(3657), + [anon_sym_and] = ACTIONS(3657), + [anon_sym_or] = ACTIONS(3657), + [anon_sym_AMP_AMP] = ACTIONS(3657), + [anon_sym_PIPE_PIPE] = ACTIONS(3657), + [anon_sym_QMARK_QMARK] = ACTIONS(3657), + [anon_sym_on] = ACTIONS(3657), + [anon_sym_equals] = ACTIONS(3657), + [anon_sym_by] = ACTIONS(3657), + [anon_sym_as] = ACTIONS(3657), + [anon_sym_is] = ACTIONS(3657), + [anon_sym_DASH_GT] = ACTIONS(3657), + [anon_sym_with] = ACTIONS(3657), + [aux_sym_preproc_if_token3] = ACTIONS(3657), + [aux_sym_preproc_else_token1] = ACTIONS(3657), + [aux_sym_preproc_elif_token1] = ACTIONS(3657), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -488964,57 +488446,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_SEMI] = ACTIONS(3143), - [anon_sym_LBRACK] = ACTIONS(3143), - [anon_sym_COLON] = ACTIONS(3143), - [anon_sym_COMMA] = ACTIONS(3143), - [anon_sym_RBRACK] = ACTIONS(3143), - [anon_sym_LPAREN] = ACTIONS(3143), - [anon_sym_RPAREN] = ACTIONS(3143), - [anon_sym_RBRACE] = ACTIONS(3143), - [anon_sym_LT] = ACTIONS(3141), - [anon_sym_GT] = ACTIONS(3141), - [anon_sym_in] = ACTIONS(3141), - [anon_sym_QMARK] = ACTIONS(3141), - [anon_sym_BANG] = ACTIONS(3141), - [anon_sym_PLUS_PLUS] = ACTIONS(3143), - [anon_sym_DASH_DASH] = ACTIONS(3143), - [anon_sym_PLUS] = ACTIONS(3141), - [anon_sym_DASH] = ACTIONS(3141), - [anon_sym_STAR] = ACTIONS(3143), - [anon_sym_SLASH] = ACTIONS(3141), - [anon_sym_PERCENT] = ACTIONS(3143), - [anon_sym_CARET] = ACTIONS(3143), - [anon_sym_PIPE] = ACTIONS(3141), - [anon_sym_AMP] = ACTIONS(3141), - [anon_sym_LT_LT] = ACTIONS(3143), - [anon_sym_GT_GT] = ACTIONS(3141), - [anon_sym_GT_GT_GT] = ACTIONS(3143), - [anon_sym_EQ_EQ] = ACTIONS(3143), - [anon_sym_BANG_EQ] = ACTIONS(3143), - [anon_sym_GT_EQ] = ACTIONS(3143), - [anon_sym_LT_EQ] = ACTIONS(3143), - [anon_sym_DOT] = ACTIONS(3141), - [anon_sym_EQ_GT] = ACTIONS(3143), - [anon_sym_switch] = ACTIONS(3143), - [anon_sym_when] = ACTIONS(3143), - [anon_sym_DOT_DOT] = ACTIONS(3143), - [anon_sym_and] = ACTIONS(3143), - [anon_sym_or] = ACTIONS(3143), - [anon_sym_AMP_AMP] = ACTIONS(3143), - [anon_sym_PIPE_PIPE] = ACTIONS(3143), - [anon_sym_QMARK_QMARK] = ACTIONS(3143), - [anon_sym_into] = ACTIONS(3143), - [anon_sym_on] = ACTIONS(3143), - [anon_sym_equals] = ACTIONS(3143), - [anon_sym_by] = ACTIONS(3143), - [anon_sym_as] = ACTIONS(3143), - [anon_sym_is] = ACTIONS(3143), - [anon_sym_DASH_GT] = ACTIONS(3143), - [anon_sym_with] = ACTIONS(3143), - [aux_sym_preproc_if_token3] = ACTIONS(3143), - [aux_sym_preproc_else_token1] = ACTIONS(3143), - [aux_sym_preproc_elif_token1] = ACTIONS(3143), + [anon_sym_SEMI] = ACTIONS(5362), + [anon_sym_LBRACK] = ACTIONS(5362), + [anon_sym_COLON] = ACTIONS(5362), + [anon_sym_COMMA] = ACTIONS(5362), + [anon_sym_RBRACK] = ACTIONS(5362), + [anon_sym_LPAREN] = ACTIONS(5362), + [anon_sym_RPAREN] = ACTIONS(5362), + [anon_sym_RBRACE] = ACTIONS(5362), + [anon_sym_LT] = ACTIONS(5364), + [anon_sym_GT] = ACTIONS(5364), + [anon_sym_in] = ACTIONS(5364), + [anon_sym_QMARK] = ACTIONS(5364), + [anon_sym_BANG] = ACTIONS(5364), + [anon_sym_PLUS_PLUS] = ACTIONS(5362), + [anon_sym_DASH_DASH] = ACTIONS(5362), + [anon_sym_PLUS] = ACTIONS(5364), + [anon_sym_DASH] = ACTIONS(5364), + [anon_sym_STAR] = ACTIONS(5362), + [anon_sym_SLASH] = ACTIONS(5364), + [anon_sym_PERCENT] = ACTIONS(5362), + [anon_sym_CARET] = ACTIONS(5362), + [anon_sym_PIPE] = ACTIONS(5364), + [anon_sym_AMP] = ACTIONS(5364), + [anon_sym_LT_LT] = ACTIONS(5362), + [anon_sym_GT_GT] = ACTIONS(5364), + [anon_sym_GT_GT_GT] = ACTIONS(5362), + [anon_sym_EQ_EQ] = ACTIONS(5362), + [anon_sym_BANG_EQ] = ACTIONS(5362), + [anon_sym_GT_EQ] = ACTIONS(5362), + [anon_sym_LT_EQ] = ACTIONS(5362), + [anon_sym_DOT] = ACTIONS(5364), + [anon_sym_EQ_GT] = ACTIONS(5362), + [anon_sym_switch] = ACTIONS(5362), + [anon_sym_when] = ACTIONS(5362), + [anon_sym_DOT_DOT] = ACTIONS(5362), + [anon_sym_and] = ACTIONS(5362), + [anon_sym_or] = ACTIONS(5362), + [anon_sym_AMP_AMP] = ACTIONS(5362), + [anon_sym_PIPE_PIPE] = ACTIONS(5362), + [anon_sym_QMARK_QMARK] = ACTIONS(5362), + [anon_sym_into] = ACTIONS(5362), + [anon_sym_on] = ACTIONS(5362), + [anon_sym_equals] = ACTIONS(5362), + [anon_sym_by] = ACTIONS(5362), + [anon_sym_as] = ACTIONS(5362), + [anon_sym_is] = ACTIONS(5362), + [anon_sym_DASH_GT] = ACTIONS(5362), + [anon_sym_with] = ACTIONS(5362), + [aux_sym_preproc_if_token3] = ACTIONS(5362), + [aux_sym_preproc_else_token1] = ACTIONS(5362), + [aux_sym_preproc_elif_token1] = ACTIONS(5362), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -489036,57 +488518,57 @@ 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_SEMI] = ACTIONS(5354), - [anon_sym_LBRACK] = ACTIONS(5354), - [anon_sym_COLON] = ACTIONS(5354), - [anon_sym_COMMA] = ACTIONS(5354), - [anon_sym_RBRACK] = ACTIONS(5354), - [anon_sym_LPAREN] = ACTIONS(5354), - [anon_sym_RPAREN] = ACTIONS(5354), - [anon_sym_RBRACE] = ACTIONS(5354), - [anon_sym_LT] = ACTIONS(5356), - [anon_sym_GT] = ACTIONS(5356), - [anon_sym_in] = ACTIONS(5356), - [anon_sym_QMARK] = ACTIONS(5356), - [anon_sym_BANG] = ACTIONS(5356), - [anon_sym_PLUS_PLUS] = ACTIONS(5354), - [anon_sym_DASH_DASH] = ACTIONS(5354), - [anon_sym_PLUS] = ACTIONS(5356), - [anon_sym_DASH] = ACTIONS(5356), - [anon_sym_STAR] = ACTIONS(5354), - [anon_sym_SLASH] = ACTIONS(5356), - [anon_sym_PERCENT] = ACTIONS(5354), - [anon_sym_CARET] = ACTIONS(5354), - [anon_sym_PIPE] = ACTIONS(5356), - [anon_sym_AMP] = ACTIONS(5356), - [anon_sym_LT_LT] = ACTIONS(5354), - [anon_sym_GT_GT] = ACTIONS(5356), - [anon_sym_GT_GT_GT] = ACTIONS(5354), - [anon_sym_EQ_EQ] = ACTIONS(5354), - [anon_sym_BANG_EQ] = ACTIONS(5354), - [anon_sym_GT_EQ] = ACTIONS(5354), - [anon_sym_LT_EQ] = ACTIONS(5354), - [anon_sym_DOT] = ACTIONS(5356), - [anon_sym_EQ_GT] = ACTIONS(5354), - [anon_sym_switch] = ACTIONS(5354), - [anon_sym_when] = ACTIONS(5354), - [anon_sym_DOT_DOT] = ACTIONS(5354), - [anon_sym_and] = ACTIONS(5354), - [anon_sym_or] = ACTIONS(5354), - [anon_sym_AMP_AMP] = ACTIONS(5354), - [anon_sym_PIPE_PIPE] = ACTIONS(5354), - [anon_sym_QMARK_QMARK] = ACTIONS(5354), - [anon_sym_into] = ACTIONS(5354), - [anon_sym_on] = ACTIONS(5354), - [anon_sym_equals] = ACTIONS(5354), - [anon_sym_by] = ACTIONS(5354), - [anon_sym_as] = ACTIONS(5354), - [anon_sym_is] = ACTIONS(5354), - [anon_sym_DASH_GT] = ACTIONS(5354), - [anon_sym_with] = ACTIONS(5354), - [aux_sym_preproc_if_token3] = ACTIONS(5354), - [aux_sym_preproc_else_token1] = ACTIONS(5354), - [aux_sym_preproc_elif_token1] = ACTIONS(5354), + [anon_sym_SEMI] = ACTIONS(3661), + [anon_sym_LBRACK] = ACTIONS(3661), + [anon_sym_COLON] = ACTIONS(3661), + [anon_sym_COMMA] = ACTIONS(3661), + [anon_sym_RBRACK] = ACTIONS(3661), + [anon_sym_LPAREN] = ACTIONS(3661), + [anon_sym_RPAREN] = ACTIONS(3661), + [anon_sym_LBRACE] = ACTIONS(3661), + [anon_sym_RBRACE] = ACTIONS(3661), + [anon_sym_LT] = ACTIONS(3659), + [anon_sym_GT] = ACTIONS(3659), + [anon_sym_in] = ACTIONS(3661), + [anon_sym_QMARK] = ACTIONS(3659), + [anon_sym_BANG] = ACTIONS(3659), + [anon_sym_PLUS_PLUS] = ACTIONS(3661), + [anon_sym_DASH_DASH] = ACTIONS(3661), + [anon_sym_PLUS] = ACTIONS(3659), + [anon_sym_DASH] = ACTIONS(3659), + [anon_sym_STAR] = ACTIONS(3661), + [anon_sym_SLASH] = ACTIONS(3659), + [anon_sym_PERCENT] = ACTIONS(3661), + [anon_sym_CARET] = ACTIONS(3661), + [anon_sym_PIPE] = ACTIONS(3659), + [anon_sym_AMP] = ACTIONS(3659), + [anon_sym_LT_LT] = ACTIONS(3661), + [anon_sym_GT_GT] = ACTIONS(3659), + [anon_sym_GT_GT_GT] = ACTIONS(3661), + [anon_sym_EQ_EQ] = ACTIONS(3661), + [anon_sym_BANG_EQ] = ACTIONS(3661), + [anon_sym_GT_EQ] = ACTIONS(3661), + [anon_sym_LT_EQ] = ACTIONS(3661), + [anon_sym_DOT] = ACTIONS(3659), + [anon_sym_EQ_GT] = ACTIONS(3661), + [anon_sym_switch] = ACTIONS(3661), + [anon_sym_when] = ACTIONS(3661), + [anon_sym_DOT_DOT] = ACTIONS(3661), + [anon_sym_and] = ACTIONS(3661), + [anon_sym_or] = ACTIONS(3661), + [anon_sym_AMP_AMP] = ACTIONS(3661), + [anon_sym_PIPE_PIPE] = ACTIONS(3661), + [anon_sym_QMARK_QMARK] = ACTIONS(3661), + [anon_sym_on] = ACTIONS(3661), + [anon_sym_equals] = ACTIONS(3661), + [anon_sym_by] = ACTIONS(3661), + [anon_sym_as] = ACTIONS(3661), + [anon_sym_is] = ACTIONS(3661), + [anon_sym_DASH_GT] = ACTIONS(3661), + [anon_sym_with] = ACTIONS(3661), + [aux_sym_preproc_if_token3] = ACTIONS(3661), + [aux_sym_preproc_else_token1] = ACTIONS(3661), + [aux_sym_preproc_elif_token1] = ACTIONS(3661), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -489108,57 +488590,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(3710), - [anon_sym_LBRACK] = ACTIONS(3710), - [anon_sym_COLON] = ACTIONS(3710), - [anon_sym_COMMA] = ACTIONS(3710), - [anon_sym_RBRACK] = ACTIONS(3710), - [anon_sym_LPAREN] = ACTIONS(3710), - [anon_sym_RPAREN] = ACTIONS(3710), - [anon_sym_LBRACE] = ACTIONS(3710), - [anon_sym_RBRACE] = ACTIONS(3710), - [anon_sym_LT] = ACTIONS(3699), - [anon_sym_GT] = ACTIONS(3699), - [anon_sym_in] = ACTIONS(3710), - [anon_sym_QMARK] = ACTIONS(3699), - [anon_sym_BANG] = ACTIONS(3699), - [anon_sym_PLUS_PLUS] = ACTIONS(3710), - [anon_sym_DASH_DASH] = ACTIONS(3710), - [anon_sym_PLUS] = ACTIONS(3699), - [anon_sym_DASH] = ACTIONS(3699), - [anon_sym_STAR] = ACTIONS(3710), - [anon_sym_SLASH] = ACTIONS(3699), - [anon_sym_PERCENT] = ACTIONS(3710), - [anon_sym_CARET] = ACTIONS(3710), - [anon_sym_PIPE] = ACTIONS(3699), - [anon_sym_AMP] = ACTIONS(3699), - [anon_sym_LT_LT] = ACTIONS(3710), - [anon_sym_GT_GT] = ACTIONS(3699), - [anon_sym_GT_GT_GT] = ACTIONS(3710), - [anon_sym_EQ_EQ] = ACTIONS(3710), - [anon_sym_BANG_EQ] = ACTIONS(3710), - [anon_sym_GT_EQ] = ACTIONS(3710), - [anon_sym_LT_EQ] = ACTIONS(3710), - [anon_sym_DOT] = ACTIONS(3699), - [anon_sym_EQ_GT] = ACTIONS(3710), - [anon_sym_switch] = ACTIONS(3710), - [anon_sym_when] = ACTIONS(3710), - [anon_sym_DOT_DOT] = ACTIONS(3710), - [anon_sym_and] = ACTIONS(3710), - [anon_sym_or] = ACTIONS(3710), - [anon_sym_AMP_AMP] = ACTIONS(3710), - [anon_sym_PIPE_PIPE] = ACTIONS(3710), - [anon_sym_QMARK_QMARK] = ACTIONS(3710), - [anon_sym_on] = ACTIONS(3710), - [anon_sym_equals] = ACTIONS(3710), - [anon_sym_by] = ACTIONS(3710), - [anon_sym_as] = ACTIONS(3710), - [anon_sym_is] = ACTIONS(3710), - [anon_sym_DASH_GT] = ACTIONS(3710), - [anon_sym_with] = ACTIONS(3710), - [aux_sym_preproc_if_token3] = ACTIONS(3710), - [aux_sym_preproc_else_token1] = ACTIONS(3710), - [aux_sym_preproc_elif_token1] = ACTIONS(3710), + [anon_sym_SEMI] = ACTIONS(3665), + [anon_sym_LBRACK] = ACTIONS(3665), + [anon_sym_COLON] = ACTIONS(3665), + [anon_sym_COMMA] = ACTIONS(3665), + [anon_sym_RBRACK] = ACTIONS(3665), + [anon_sym_LPAREN] = ACTIONS(3665), + [anon_sym_RPAREN] = ACTIONS(3665), + [anon_sym_LBRACE] = ACTIONS(3665), + [anon_sym_RBRACE] = ACTIONS(3665), + [anon_sym_LT] = ACTIONS(3663), + [anon_sym_GT] = ACTIONS(3663), + [anon_sym_in] = ACTIONS(3665), + [anon_sym_QMARK] = ACTIONS(3663), + [anon_sym_BANG] = ACTIONS(3663), + [anon_sym_PLUS_PLUS] = ACTIONS(3665), + [anon_sym_DASH_DASH] = ACTIONS(3665), + [anon_sym_PLUS] = ACTIONS(3663), + [anon_sym_DASH] = ACTIONS(3663), + [anon_sym_STAR] = ACTIONS(3665), + [anon_sym_SLASH] = ACTIONS(3663), + [anon_sym_PERCENT] = ACTIONS(3665), + [anon_sym_CARET] = ACTIONS(3665), + [anon_sym_PIPE] = ACTIONS(3663), + [anon_sym_AMP] = ACTIONS(3663), + [anon_sym_LT_LT] = ACTIONS(3665), + [anon_sym_GT_GT] = ACTIONS(3663), + [anon_sym_GT_GT_GT] = ACTIONS(3665), + [anon_sym_EQ_EQ] = ACTIONS(3665), + [anon_sym_BANG_EQ] = ACTIONS(3665), + [anon_sym_GT_EQ] = ACTIONS(3665), + [anon_sym_LT_EQ] = ACTIONS(3665), + [anon_sym_DOT] = ACTIONS(3663), + [anon_sym_EQ_GT] = ACTIONS(3665), + [anon_sym_switch] = ACTIONS(3665), + [anon_sym_when] = ACTIONS(3665), + [anon_sym_DOT_DOT] = ACTIONS(3665), + [anon_sym_and] = ACTIONS(3665), + [anon_sym_or] = ACTIONS(3665), + [anon_sym_AMP_AMP] = ACTIONS(3665), + [anon_sym_PIPE_PIPE] = ACTIONS(3665), + [anon_sym_QMARK_QMARK] = ACTIONS(3665), + [anon_sym_on] = ACTIONS(3665), + [anon_sym_equals] = ACTIONS(3665), + [anon_sym_by] = ACTIONS(3665), + [anon_sym_as] = ACTIONS(3665), + [anon_sym_is] = ACTIONS(3665), + [anon_sym_DASH_GT] = ACTIONS(3665), + [anon_sym_with] = ACTIONS(3665), + [aux_sym_preproc_if_token3] = ACTIONS(3665), + [aux_sym_preproc_else_token1] = ACTIONS(3665), + [aux_sym_preproc_elif_token1] = ACTIONS(3665), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -489180,57 +488662,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(3677), - [anon_sym_LBRACK] = ACTIONS(3677), - [anon_sym_COLON] = ACTIONS(3677), - [anon_sym_COMMA] = ACTIONS(3677), - [anon_sym_RBRACK] = ACTIONS(3677), - [anon_sym_LPAREN] = ACTIONS(3677), - [anon_sym_RPAREN] = ACTIONS(3677), - [anon_sym_LBRACE] = ACTIONS(3677), - [anon_sym_RBRACE] = ACTIONS(3677), - [anon_sym_LT] = ACTIONS(3675), - [anon_sym_GT] = ACTIONS(3675), - [anon_sym_in] = ACTIONS(3677), - [anon_sym_QMARK] = ACTIONS(3675), - [anon_sym_BANG] = ACTIONS(3675), - [anon_sym_PLUS_PLUS] = ACTIONS(3677), - [anon_sym_DASH_DASH] = ACTIONS(3677), - [anon_sym_PLUS] = ACTIONS(3675), - [anon_sym_DASH] = ACTIONS(3675), - [anon_sym_STAR] = ACTIONS(3677), - [anon_sym_SLASH] = ACTIONS(3675), - [anon_sym_PERCENT] = ACTIONS(3677), - [anon_sym_CARET] = ACTIONS(3677), - [anon_sym_PIPE] = ACTIONS(3675), - [anon_sym_AMP] = ACTIONS(3675), - [anon_sym_LT_LT] = ACTIONS(3677), - [anon_sym_GT_GT] = ACTIONS(3675), - [anon_sym_GT_GT_GT] = ACTIONS(3677), - [anon_sym_EQ_EQ] = ACTIONS(3677), - [anon_sym_BANG_EQ] = ACTIONS(3677), - [anon_sym_GT_EQ] = ACTIONS(3677), - [anon_sym_LT_EQ] = ACTIONS(3677), - [anon_sym_DOT] = ACTIONS(3675), - [anon_sym_EQ_GT] = ACTIONS(3677), - [anon_sym_switch] = ACTIONS(3677), - [anon_sym_when] = ACTIONS(3677), - [anon_sym_DOT_DOT] = ACTIONS(3677), - [anon_sym_and] = ACTIONS(3677), - [anon_sym_or] = ACTIONS(3677), - [anon_sym_AMP_AMP] = ACTIONS(3677), - [anon_sym_PIPE_PIPE] = ACTIONS(3677), - [anon_sym_QMARK_QMARK] = ACTIONS(3677), - [anon_sym_on] = ACTIONS(3677), - [anon_sym_equals] = ACTIONS(3677), - [anon_sym_by] = ACTIONS(3677), - [anon_sym_as] = ACTIONS(3677), - [anon_sym_is] = ACTIONS(3677), - [anon_sym_DASH_GT] = ACTIONS(3677), - [anon_sym_with] = ACTIONS(3677), - [aux_sym_preproc_if_token3] = ACTIONS(3677), - [aux_sym_preproc_else_token1] = ACTIONS(3677), - [aux_sym_preproc_elif_token1] = ACTIONS(3677), + [anon_sym_SEMI] = ACTIONS(4226), + [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_LT] = ACTIONS(4228), + [anon_sym_GT] = ACTIONS(4228), + [anon_sym_in] = ACTIONS(4228), + [anon_sym_QMARK] = ACTIONS(4228), + [anon_sym_BANG] = ACTIONS(4228), + [anon_sym_PLUS_PLUS] = ACTIONS(4226), + [anon_sym_DASH_DASH] = ACTIONS(4226), + [anon_sym_PLUS] = ACTIONS(4228), + [anon_sym_DASH] = ACTIONS(4228), + [anon_sym_STAR] = ACTIONS(4226), + [anon_sym_SLASH] = ACTIONS(4228), + [anon_sym_PERCENT] = ACTIONS(4226), + [anon_sym_CARET] = ACTIONS(4226), + [anon_sym_PIPE] = ACTIONS(4228), + [anon_sym_AMP] = ACTIONS(4228), + [anon_sym_LT_LT] = ACTIONS(4226), + [anon_sym_GT_GT] = ACTIONS(4228), + [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(4228), + [anon_sym_EQ_GT] = ACTIONS(4226), + [anon_sym_switch] = ACTIONS(4226), + [anon_sym_when] = ACTIONS(4226), + [anon_sym_DOT_DOT] = ACTIONS(4226), + [anon_sym_and] = ACTIONS(4226), + [anon_sym_or] = ACTIONS(4226), + [anon_sym_AMP_AMP] = ACTIONS(4226), + [anon_sym_PIPE_PIPE] = ACTIONS(4226), + [anon_sym_QMARK_QMARK] = ACTIONS(4226), + [anon_sym_into] = ACTIONS(4226), + [anon_sym_on] = ACTIONS(4226), + [anon_sym_equals] = ACTIONS(4226), + [anon_sym_by] = ACTIONS(4226), + [anon_sym_as] = ACTIONS(4226), + [anon_sym_is] = ACTIONS(4226), + [anon_sym_DASH_GT] = ACTIONS(4226), + [anon_sym_with] = ACTIONS(4226), + [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), @@ -489252,57 +488734,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(4018), - [anon_sym_LBRACK] = ACTIONS(4018), - [anon_sym_COLON] = ACTIONS(4018), - [anon_sym_COMMA] = ACTIONS(4018), - [anon_sym_RBRACK] = ACTIONS(4018), - [anon_sym_LPAREN] = ACTIONS(4018), - [anon_sym_RPAREN] = ACTIONS(4018), - [anon_sym_LBRACE] = ACTIONS(4018), - [anon_sym_RBRACE] = ACTIONS(4018), - [anon_sym_LT] = ACTIONS(4016), - [anon_sym_GT] = ACTIONS(4016), - [anon_sym_in] = ACTIONS(4018), - [anon_sym_QMARK] = ACTIONS(4016), - [anon_sym_BANG] = ACTIONS(4016), - [anon_sym_PLUS_PLUS] = ACTIONS(4018), - [anon_sym_DASH_DASH] = ACTIONS(4018), - [anon_sym_PLUS] = ACTIONS(4016), - [anon_sym_DASH] = ACTIONS(4016), - [anon_sym_STAR] = ACTIONS(4018), - [anon_sym_SLASH] = ACTIONS(4016), - [anon_sym_PERCENT] = ACTIONS(4018), - [anon_sym_CARET] = ACTIONS(4018), - [anon_sym_PIPE] = ACTIONS(4016), - [anon_sym_AMP] = ACTIONS(4016), - [anon_sym_LT_LT] = ACTIONS(4018), - [anon_sym_GT_GT] = ACTIONS(4016), - [anon_sym_GT_GT_GT] = ACTIONS(4018), - [anon_sym_EQ_EQ] = ACTIONS(4018), - [anon_sym_BANG_EQ] = ACTIONS(4018), - [anon_sym_GT_EQ] = ACTIONS(4018), - [anon_sym_LT_EQ] = ACTIONS(4018), - [anon_sym_DOT] = ACTIONS(4016), - [anon_sym_EQ_GT] = ACTIONS(4018), - [anon_sym_switch] = ACTIONS(4018), - [anon_sym_when] = ACTIONS(4018), - [anon_sym_DOT_DOT] = ACTIONS(4018), - [anon_sym_and] = ACTIONS(4018), - [anon_sym_or] = ACTIONS(4018), - [anon_sym_AMP_AMP] = ACTIONS(4018), - [anon_sym_PIPE_PIPE] = ACTIONS(4018), - [anon_sym_QMARK_QMARK] = ACTIONS(4018), - [anon_sym_on] = ACTIONS(4018), - [anon_sym_equals] = ACTIONS(4018), - [anon_sym_by] = ACTIONS(4018), - [anon_sym_as] = ACTIONS(4018), - [anon_sym_is] = ACTIONS(4018), - [anon_sym_DASH_GT] = ACTIONS(4018), - [anon_sym_with] = ACTIONS(4018), - [aux_sym_preproc_if_token3] = ACTIONS(4018), - [aux_sym_preproc_else_token1] = ACTIONS(4018), - [aux_sym_preproc_elif_token1] = ACTIONS(4018), + [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_preproc_if_token3] = ACTIONS(4949), + [aux_sym_preproc_else_token1] = ACTIONS(4949), + [aux_sym_preproc_elif_token1] = ACTIONS(4949), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -489324,57 +488806,57 @@ 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(3673), - [anon_sym_LBRACK] = ACTIONS(3673), - [anon_sym_COLON] = ACTIONS(3673), - [anon_sym_COMMA] = ACTIONS(3673), - [anon_sym_RBRACK] = ACTIONS(3673), - [anon_sym_LPAREN] = ACTIONS(3673), - [anon_sym_RPAREN] = ACTIONS(3673), - [anon_sym_LBRACE] = ACTIONS(3673), - [anon_sym_RBRACE] = ACTIONS(3673), - [anon_sym_LT] = ACTIONS(3671), - [anon_sym_GT] = ACTIONS(3671), - [anon_sym_in] = ACTIONS(3673), - [anon_sym_QMARK] = ACTIONS(3671), - [anon_sym_BANG] = ACTIONS(3671), - [anon_sym_PLUS_PLUS] = ACTIONS(3673), - [anon_sym_DASH_DASH] = ACTIONS(3673), - [anon_sym_PLUS] = ACTIONS(3671), - [anon_sym_DASH] = ACTIONS(3671), - [anon_sym_STAR] = ACTIONS(3673), - [anon_sym_SLASH] = ACTIONS(3671), - [anon_sym_PERCENT] = ACTIONS(3673), - [anon_sym_CARET] = ACTIONS(3673), - [anon_sym_PIPE] = ACTIONS(3671), - [anon_sym_AMP] = ACTIONS(3671), - [anon_sym_LT_LT] = ACTIONS(3673), - [anon_sym_GT_GT] = ACTIONS(3671), - [anon_sym_GT_GT_GT] = ACTIONS(3673), - [anon_sym_EQ_EQ] = ACTIONS(3673), - [anon_sym_BANG_EQ] = ACTIONS(3673), - [anon_sym_GT_EQ] = ACTIONS(3673), - [anon_sym_LT_EQ] = ACTIONS(3673), - [anon_sym_DOT] = ACTIONS(3671), - [anon_sym_EQ_GT] = ACTIONS(3673), - [anon_sym_switch] = ACTIONS(3673), - [anon_sym_when] = ACTIONS(3673), - [anon_sym_DOT_DOT] = ACTIONS(3673), - [anon_sym_and] = ACTIONS(3673), - [anon_sym_or] = ACTIONS(3673), - [anon_sym_AMP_AMP] = ACTIONS(3673), - [anon_sym_PIPE_PIPE] = ACTIONS(3673), - [anon_sym_QMARK_QMARK] = ACTIONS(3673), - [anon_sym_on] = ACTIONS(3673), - [anon_sym_equals] = ACTIONS(3673), - [anon_sym_by] = ACTIONS(3673), - [anon_sym_as] = ACTIONS(3673), - [anon_sym_is] = ACTIONS(3673), - [anon_sym_DASH_GT] = ACTIONS(3673), - [anon_sym_with] = ACTIONS(3673), - [aux_sym_preproc_if_token3] = ACTIONS(3673), - [aux_sym_preproc_else_token1] = ACTIONS(3673), - [aux_sym_preproc_elif_token1] = ACTIONS(3673), + [anon_sym_SEMI] = ACTIONS(4953), + [anon_sym_LBRACK] = ACTIONS(4953), + [anon_sym_COLON] = ACTIONS(4953), + [anon_sym_COMMA] = ACTIONS(4953), + [anon_sym_RBRACK] = ACTIONS(4953), + [anon_sym_LPAREN] = ACTIONS(4953), + [anon_sym_RPAREN] = ACTIONS(4953), + [anon_sym_RBRACE] = ACTIONS(4953), + [anon_sym_LT] = ACTIONS(4955), + [anon_sym_GT] = ACTIONS(4955), + [anon_sym_in] = ACTIONS(4955), + [anon_sym_QMARK] = ACTIONS(4955), + [anon_sym_BANG] = ACTIONS(4955), + [anon_sym_PLUS_PLUS] = ACTIONS(4953), + [anon_sym_DASH_DASH] = ACTIONS(4953), + [anon_sym_PLUS] = ACTIONS(4955), + [anon_sym_DASH] = ACTIONS(4955), + [anon_sym_STAR] = ACTIONS(4953), + [anon_sym_SLASH] = ACTIONS(4955), + [anon_sym_PERCENT] = ACTIONS(4953), + [anon_sym_CARET] = ACTIONS(4953), + [anon_sym_PIPE] = ACTIONS(4955), + [anon_sym_AMP] = ACTIONS(4955), + [anon_sym_LT_LT] = ACTIONS(4953), + [anon_sym_GT_GT] = ACTIONS(4955), + [anon_sym_GT_GT_GT] = ACTIONS(4953), + [anon_sym_EQ_EQ] = ACTIONS(4953), + [anon_sym_BANG_EQ] = ACTIONS(4953), + [anon_sym_GT_EQ] = ACTIONS(4953), + [anon_sym_LT_EQ] = ACTIONS(4953), + [anon_sym_DOT] = ACTIONS(4955), + [anon_sym_EQ_GT] = ACTIONS(4953), + [anon_sym_switch] = ACTIONS(4953), + [anon_sym_when] = ACTIONS(4953), + [anon_sym_DOT_DOT] = ACTIONS(4953), + [anon_sym_and] = ACTIONS(4953), + [anon_sym_or] = ACTIONS(4953), + [anon_sym_AMP_AMP] = ACTIONS(4953), + [anon_sym_PIPE_PIPE] = ACTIONS(4953), + [anon_sym_QMARK_QMARK] = ACTIONS(4953), + [anon_sym_into] = ACTIONS(4953), + [anon_sym_on] = ACTIONS(4953), + [anon_sym_equals] = ACTIONS(4953), + [anon_sym_by] = ACTIONS(4953), + [anon_sym_as] = ACTIONS(4953), + [anon_sym_is] = ACTIONS(4953), + [anon_sym_DASH_GT] = ACTIONS(4953), + [anon_sym_with] = ACTIONS(4953), + [aux_sym_preproc_if_token3] = ACTIONS(4953), + [aux_sym_preproc_else_token1] = ACTIONS(4953), + [aux_sym_preproc_elif_token1] = ACTIONS(4953), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -489396,57 +488878,57 @@ 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(4018), - [anon_sym_LBRACK] = ACTIONS(4066), - [anon_sym_COLON] = ACTIONS(4018), - [anon_sym_COMMA] = ACTIONS(4018), - [anon_sym_RBRACK] = ACTIONS(4018), - [anon_sym_LPAREN] = ACTIONS(4018), - [anon_sym_RPAREN] = ACTIONS(4018), - [anon_sym_LBRACE] = ACTIONS(4018), - [anon_sym_RBRACE] = ACTIONS(4018), - [anon_sym_LT] = ACTIONS(4016), - [anon_sym_GT] = ACTIONS(4016), - [anon_sym_in] = ACTIONS(4018), - [anon_sym_QMARK] = ACTIONS(5358), - [anon_sym_BANG] = ACTIONS(4016), - [anon_sym_PLUS_PLUS] = ACTIONS(4018), - [anon_sym_DASH_DASH] = ACTIONS(4018), - [anon_sym_PLUS] = ACTIONS(4016), - [anon_sym_DASH] = ACTIONS(4016), - [anon_sym_STAR] = ACTIONS(4018), - [anon_sym_SLASH] = ACTIONS(4016), - [anon_sym_PERCENT] = ACTIONS(4018), - [anon_sym_CARET] = ACTIONS(4018), - [anon_sym_PIPE] = ACTIONS(4016), - [anon_sym_AMP] = ACTIONS(4016), - [anon_sym_LT_LT] = ACTIONS(4018), - [anon_sym_GT_GT] = ACTIONS(4016), - [anon_sym_GT_GT_GT] = ACTIONS(4018), - [anon_sym_EQ_EQ] = ACTIONS(4018), - [anon_sym_BANG_EQ] = ACTIONS(4018), - [anon_sym_GT_EQ] = ACTIONS(4018), - [anon_sym_LT_EQ] = ACTIONS(4018), - [anon_sym_DOT] = ACTIONS(4016), - [anon_sym_EQ_GT] = ACTIONS(4018), - [anon_sym_switch] = ACTIONS(4018), - [anon_sym_when] = ACTIONS(4018), - [anon_sym_DOT_DOT] = ACTIONS(4018), - [anon_sym_and] = ACTIONS(4018), - [anon_sym_or] = ACTIONS(4018), - [anon_sym_AMP_AMP] = ACTIONS(4018), - [anon_sym_PIPE_PIPE] = ACTIONS(4018), - [anon_sym_QMARK_QMARK] = ACTIONS(4018), - [anon_sym_on] = ACTIONS(4018), - [anon_sym_equals] = ACTIONS(4018), - [anon_sym_by] = ACTIONS(4018), - [anon_sym_as] = ACTIONS(4018), - [anon_sym_is] = ACTIONS(4018), - [anon_sym_DASH_GT] = ACTIONS(4018), - [anon_sym_with] = ACTIONS(4018), - [aux_sym_preproc_if_token3] = ACTIONS(4018), - [aux_sym_preproc_else_token1] = ACTIONS(4018), - [aux_sym_preproc_elif_token1] = ACTIONS(4018), + [anon_sym_SEMI] = ACTIONS(4957), + [anon_sym_LBRACK] = ACTIONS(4957), + [anon_sym_COLON] = ACTIONS(4957), + [anon_sym_COMMA] = ACTIONS(4957), + [anon_sym_RBRACK] = ACTIONS(4957), + [anon_sym_LPAREN] = ACTIONS(4957), + [anon_sym_RPAREN] = ACTIONS(4957), + [anon_sym_RBRACE] = ACTIONS(4957), + [anon_sym_LT] = ACTIONS(4959), + [anon_sym_GT] = ACTIONS(4959), + [anon_sym_in] = ACTIONS(4959), + [anon_sym_QMARK] = ACTIONS(4959), + [anon_sym_BANG] = ACTIONS(4959), + [anon_sym_PLUS_PLUS] = ACTIONS(4957), + [anon_sym_DASH_DASH] = ACTIONS(4957), + [anon_sym_PLUS] = ACTIONS(4959), + [anon_sym_DASH] = ACTIONS(4959), + [anon_sym_STAR] = ACTIONS(4957), + [anon_sym_SLASH] = ACTIONS(4959), + [anon_sym_PERCENT] = ACTIONS(4957), + [anon_sym_CARET] = ACTIONS(4957), + [anon_sym_PIPE] = ACTIONS(4959), + [anon_sym_AMP] = ACTIONS(4959), + [anon_sym_LT_LT] = ACTIONS(4957), + [anon_sym_GT_GT] = ACTIONS(4959), + [anon_sym_GT_GT_GT] = ACTIONS(4957), + [anon_sym_EQ_EQ] = ACTIONS(4957), + [anon_sym_BANG_EQ] = ACTIONS(4957), + [anon_sym_GT_EQ] = ACTIONS(4957), + [anon_sym_LT_EQ] = ACTIONS(4957), + [anon_sym_DOT] = ACTIONS(4959), + [anon_sym_EQ_GT] = ACTIONS(4957), + [anon_sym_switch] = ACTIONS(4957), + [anon_sym_when] = ACTIONS(4957), + [anon_sym_DOT_DOT] = ACTIONS(4957), + [anon_sym_and] = ACTIONS(4957), + [anon_sym_or] = ACTIONS(4957), + [anon_sym_AMP_AMP] = ACTIONS(4957), + [anon_sym_PIPE_PIPE] = ACTIONS(4957), + [anon_sym_QMARK_QMARK] = ACTIONS(4957), + [anon_sym_into] = ACTIONS(4957), + [anon_sym_on] = ACTIONS(4957), + [anon_sym_equals] = ACTIONS(4957), + [anon_sym_by] = ACTIONS(4957), + [anon_sym_as] = ACTIONS(4957), + [anon_sym_is] = ACTIONS(4957), + [anon_sym_DASH_GT] = ACTIONS(4957), + [anon_sym_with] = ACTIONS(4957), + [aux_sym_preproc_if_token3] = ACTIONS(4957), + [aux_sym_preproc_else_token1] = ACTIONS(4957), + [aux_sym_preproc_elif_token1] = ACTIONS(4957), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -489468,57 +488950,57 @@ 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_SEMI] = ACTIONS(3656), - [anon_sym_LBRACK] = ACTIONS(3656), - [anon_sym_COLON] = ACTIONS(3656), - [anon_sym_COMMA] = ACTIONS(3656), - [anon_sym_RBRACK] = ACTIONS(3656), - [anon_sym_LPAREN] = ACTIONS(3656), - [anon_sym_RPAREN] = ACTIONS(3656), - [anon_sym_LBRACE] = ACTIONS(3656), - [anon_sym_RBRACE] = ACTIONS(3656), - [anon_sym_LT] = ACTIONS(3654), - [anon_sym_GT] = ACTIONS(3654), - [anon_sym_in] = ACTIONS(3656), - [anon_sym_QMARK] = ACTIONS(3654), - [anon_sym_BANG] = ACTIONS(3654), - [anon_sym_PLUS_PLUS] = ACTIONS(3656), - [anon_sym_DASH_DASH] = ACTIONS(3656), - [anon_sym_PLUS] = ACTIONS(3654), - [anon_sym_DASH] = ACTIONS(3654), - [anon_sym_STAR] = ACTIONS(3656), - [anon_sym_SLASH] = ACTIONS(3654), - [anon_sym_PERCENT] = ACTIONS(3656), - [anon_sym_CARET] = ACTIONS(3656), - [anon_sym_PIPE] = ACTIONS(3654), - [anon_sym_AMP] = ACTIONS(3654), - [anon_sym_LT_LT] = ACTIONS(3656), - [anon_sym_GT_GT] = ACTIONS(3654), - [anon_sym_GT_GT_GT] = ACTIONS(3656), - [anon_sym_EQ_EQ] = ACTIONS(3656), - [anon_sym_BANG_EQ] = ACTIONS(3656), - [anon_sym_GT_EQ] = ACTIONS(3656), - [anon_sym_LT_EQ] = ACTIONS(3656), - [anon_sym_DOT] = ACTIONS(3654), - [anon_sym_EQ_GT] = ACTIONS(3656), - [anon_sym_switch] = ACTIONS(3656), - [anon_sym_when] = ACTIONS(3656), - [anon_sym_DOT_DOT] = ACTIONS(3656), - [anon_sym_and] = ACTIONS(3656), - [anon_sym_or] = ACTIONS(3656), - [anon_sym_AMP_AMP] = ACTIONS(3656), - [anon_sym_PIPE_PIPE] = ACTIONS(3656), - [anon_sym_QMARK_QMARK] = ACTIONS(3656), - [anon_sym_on] = ACTIONS(3656), - [anon_sym_equals] = ACTIONS(3656), - [anon_sym_by] = ACTIONS(3656), - [anon_sym_as] = ACTIONS(3656), - [anon_sym_is] = ACTIONS(3656), - [anon_sym_DASH_GT] = ACTIONS(3656), - [anon_sym_with] = ACTIONS(3656), - [aux_sym_preproc_if_token3] = ACTIONS(3656), - [aux_sym_preproc_else_token1] = ACTIONS(3656), - [aux_sym_preproc_elif_token1] = ACTIONS(3656), + [anon_sym_SEMI] = ACTIONS(5362), + [anon_sym_LBRACK] = ACTIONS(5362), + [anon_sym_COLON] = ACTIONS(5362), + [anon_sym_COMMA] = ACTIONS(5362), + [anon_sym_RBRACK] = ACTIONS(5362), + [anon_sym_LPAREN] = ACTIONS(5362), + [anon_sym_RPAREN] = ACTIONS(5362), + [anon_sym_RBRACE] = ACTIONS(5362), + [anon_sym_LT] = ACTIONS(5364), + [anon_sym_GT] = ACTIONS(5364), + [anon_sym_in] = ACTIONS(5364), + [anon_sym_QMARK] = ACTIONS(5364), + [anon_sym_BANG] = ACTIONS(5364), + [anon_sym_PLUS_PLUS] = ACTIONS(5362), + [anon_sym_DASH_DASH] = ACTIONS(5362), + [anon_sym_PLUS] = ACTIONS(5364), + [anon_sym_DASH] = ACTIONS(5364), + [anon_sym_STAR] = ACTIONS(5362), + [anon_sym_SLASH] = ACTIONS(5364), + [anon_sym_PERCENT] = ACTIONS(5362), + [anon_sym_CARET] = ACTIONS(5362), + [anon_sym_PIPE] = ACTIONS(5364), + [anon_sym_AMP] = ACTIONS(5364), + [anon_sym_LT_LT] = ACTIONS(5362), + [anon_sym_GT_GT] = ACTIONS(5364), + [anon_sym_GT_GT_GT] = ACTIONS(5362), + [anon_sym_EQ_EQ] = ACTIONS(5362), + [anon_sym_BANG_EQ] = ACTIONS(5362), + [anon_sym_GT_EQ] = ACTIONS(5362), + [anon_sym_LT_EQ] = ACTIONS(5362), + [anon_sym_DOT] = ACTIONS(5364), + [anon_sym_EQ_GT] = ACTIONS(5362), + [anon_sym_switch] = ACTIONS(5362), + [anon_sym_when] = ACTIONS(5362), + [anon_sym_DOT_DOT] = ACTIONS(5362), + [anon_sym_and] = ACTIONS(5362), + [anon_sym_or] = ACTIONS(5362), + [anon_sym_AMP_AMP] = ACTIONS(5362), + [anon_sym_PIPE_PIPE] = ACTIONS(5362), + [anon_sym_QMARK_QMARK] = ACTIONS(5362), + [anon_sym_into] = ACTIONS(5362), + [anon_sym_on] = ACTIONS(5362), + [anon_sym_equals] = ACTIONS(5362), + [anon_sym_by] = ACTIONS(5362), + [anon_sym_as] = ACTIONS(5362), + [anon_sym_is] = ACTIONS(5362), + [anon_sym_DASH_GT] = ACTIONS(5362), + [anon_sym_with] = ACTIONS(5362), + [aux_sym_preproc_if_token3] = ACTIONS(5362), + [aux_sym_preproc_else_token1] = ACTIONS(5362), + [aux_sym_preproc_elif_token1] = ACTIONS(5362), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -489540,57 +489022,57 @@ 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_SEMI] = ACTIONS(4018), - [anon_sym_LBRACK] = ACTIONS(4066), - [anon_sym_COLON] = ACTIONS(4018), - [anon_sym_COMMA] = ACTIONS(4018), - [anon_sym_RBRACK] = ACTIONS(4018), - [anon_sym_LPAREN] = ACTIONS(4018), - [anon_sym_RPAREN] = ACTIONS(4018), - [anon_sym_LBRACE] = ACTIONS(4018), - [anon_sym_RBRACE] = ACTIONS(4018), - [anon_sym_LT] = ACTIONS(4016), - [anon_sym_GT] = ACTIONS(4016), - [anon_sym_in] = ACTIONS(4018), - [anon_sym_QMARK] = ACTIONS(4016), - [anon_sym_BANG] = ACTIONS(4016), - [anon_sym_PLUS_PLUS] = ACTIONS(4018), - [anon_sym_DASH_DASH] = ACTIONS(4018), - [anon_sym_PLUS] = ACTIONS(4016), - [anon_sym_DASH] = ACTIONS(4016), - [anon_sym_STAR] = ACTIONS(4072), - [anon_sym_SLASH] = ACTIONS(4016), - [anon_sym_PERCENT] = ACTIONS(4018), - [anon_sym_CARET] = ACTIONS(4018), - [anon_sym_PIPE] = ACTIONS(4016), - [anon_sym_AMP] = ACTIONS(4016), - [anon_sym_LT_LT] = ACTIONS(4018), - [anon_sym_GT_GT] = ACTIONS(4016), - [anon_sym_GT_GT_GT] = ACTIONS(4018), - [anon_sym_EQ_EQ] = ACTIONS(4018), - [anon_sym_BANG_EQ] = ACTIONS(4018), - [anon_sym_GT_EQ] = ACTIONS(4018), - [anon_sym_LT_EQ] = ACTIONS(4018), - [anon_sym_DOT] = ACTIONS(4016), - [anon_sym_EQ_GT] = ACTIONS(4018), - [anon_sym_switch] = ACTIONS(4018), - [anon_sym_when] = ACTIONS(4018), - [anon_sym_DOT_DOT] = ACTIONS(4018), - [anon_sym_and] = ACTIONS(4018), - [anon_sym_or] = ACTIONS(4018), - [anon_sym_AMP_AMP] = ACTIONS(4018), - [anon_sym_PIPE_PIPE] = ACTIONS(4018), - [anon_sym_QMARK_QMARK] = ACTIONS(4018), - [anon_sym_on] = ACTIONS(4018), - [anon_sym_equals] = ACTIONS(4018), - [anon_sym_by] = ACTIONS(4018), - [anon_sym_as] = ACTIONS(4018), - [anon_sym_is] = ACTIONS(4018), - [anon_sym_DASH_GT] = ACTIONS(4018), - [anon_sym_with] = ACTIONS(4018), - [aux_sym_preproc_if_token3] = ACTIONS(4018), - [aux_sym_preproc_else_token1] = ACTIONS(4018), - [aux_sym_preproc_elif_token1] = ACTIONS(4018), + [anon_sym_SEMI] = ACTIONS(5040), + [anon_sym_LBRACK] = ACTIONS(5040), + [anon_sym_COLON] = ACTIONS(5040), + [anon_sym_COMMA] = ACTIONS(5040), + [anon_sym_RBRACK] = ACTIONS(5040), + [anon_sym_LPAREN] = ACTIONS(5040), + [anon_sym_RPAREN] = ACTIONS(5040), + [anon_sym_RBRACE] = ACTIONS(5040), + [anon_sym_LT] = ACTIONS(5042), + [anon_sym_GT] = ACTIONS(5042), + [anon_sym_in] = ACTIONS(5042), + [anon_sym_QMARK] = ACTIONS(5042), + [anon_sym_BANG] = ACTIONS(5042), + [anon_sym_PLUS_PLUS] = ACTIONS(5040), + [anon_sym_DASH_DASH] = ACTIONS(5040), + [anon_sym_PLUS] = ACTIONS(5042), + [anon_sym_DASH] = ACTIONS(5042), + [anon_sym_STAR] = ACTIONS(5040), + [anon_sym_SLASH] = ACTIONS(5042), + [anon_sym_PERCENT] = ACTIONS(5040), + [anon_sym_CARET] = ACTIONS(5040), + [anon_sym_PIPE] = ACTIONS(5042), + [anon_sym_AMP] = ACTIONS(5042), + [anon_sym_LT_LT] = ACTIONS(5040), + [anon_sym_GT_GT] = ACTIONS(5042), + [anon_sym_GT_GT_GT] = ACTIONS(5040), + [anon_sym_EQ_EQ] = ACTIONS(5040), + [anon_sym_BANG_EQ] = ACTIONS(5040), + [anon_sym_GT_EQ] = ACTIONS(5040), + [anon_sym_LT_EQ] = ACTIONS(5040), + [anon_sym_DOT] = ACTIONS(5042), + [anon_sym_EQ_GT] = ACTIONS(5040), + [anon_sym_switch] = ACTIONS(5040), + [anon_sym_when] = ACTIONS(5040), + [anon_sym_DOT_DOT] = ACTIONS(5040), + [anon_sym_and] = ACTIONS(5040), + [anon_sym_or] = ACTIONS(5040), + [anon_sym_AMP_AMP] = ACTIONS(5040), + [anon_sym_PIPE_PIPE] = ACTIONS(5040), + [anon_sym_QMARK_QMARK] = ACTIONS(5040), + [anon_sym_into] = ACTIONS(5040), + [anon_sym_on] = ACTIONS(5040), + [anon_sym_equals] = ACTIONS(5040), + [anon_sym_by] = ACTIONS(5040), + [anon_sym_as] = ACTIONS(5040), + [anon_sym_is] = ACTIONS(5040), + [anon_sym_DASH_GT] = ACTIONS(5040), + [anon_sym_with] = ACTIONS(5040), + [aux_sym_preproc_if_token3] = ACTIONS(5040), + [aux_sym_preproc_else_token1] = ACTIONS(5040), + [aux_sym_preproc_elif_token1] = ACTIONS(5040), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -489612,59 +489094,59 @@ 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(4018), - [anon_sym_LBRACK] = ACTIONS(4066), - [anon_sym_COLON] = ACTIONS(4018), - [anon_sym_COMMA] = ACTIONS(4018), - [anon_sym_RBRACK] = ACTIONS(4018), - [anon_sym_LPAREN] = ACTIONS(4018), - [anon_sym_RPAREN] = ACTIONS(4018), - [anon_sym_LBRACE] = ACTIONS(4018), - [anon_sym_RBRACE] = ACTIONS(4018), - [anon_sym_LT] = ACTIONS(4016), - [anon_sym_GT] = ACTIONS(4016), - [anon_sym_in] = ACTIONS(4018), - [anon_sym_QMARK] = ACTIONS(5358), - [anon_sym_BANG] = ACTIONS(4016), - [anon_sym_PLUS_PLUS] = ACTIONS(4018), - [anon_sym_DASH_DASH] = ACTIONS(4018), - [anon_sym_PLUS] = ACTIONS(4016), - [anon_sym_DASH] = ACTIONS(4016), - [anon_sym_STAR] = ACTIONS(4072), - [anon_sym_SLASH] = ACTIONS(4016), - [anon_sym_PERCENT] = ACTIONS(4018), - [anon_sym_CARET] = ACTIONS(4018), - [anon_sym_PIPE] = ACTIONS(4016), - [anon_sym_AMP] = ACTIONS(4016), - [anon_sym_LT_LT] = ACTIONS(4018), - [anon_sym_GT_GT] = ACTIONS(4016), - [anon_sym_GT_GT_GT] = ACTIONS(4018), - [anon_sym_EQ_EQ] = ACTIONS(4018), - [anon_sym_BANG_EQ] = ACTIONS(4018), - [anon_sym_GT_EQ] = ACTIONS(4018), - [anon_sym_LT_EQ] = ACTIONS(4018), - [anon_sym_DOT] = ACTIONS(4016), - [anon_sym_EQ_GT] = ACTIONS(4018), - [anon_sym_switch] = ACTIONS(4018), - [anon_sym_when] = ACTIONS(4018), - [anon_sym_DOT_DOT] = ACTIONS(4018), - [anon_sym_and] = ACTIONS(4018), - [anon_sym_or] = ACTIONS(4018), - [anon_sym_AMP_AMP] = ACTIONS(4018), - [anon_sym_PIPE_PIPE] = ACTIONS(4018), - [anon_sym_QMARK_QMARK] = ACTIONS(4018), - [anon_sym_on] = ACTIONS(4018), - [anon_sym_equals] = ACTIONS(4018), - [anon_sym_by] = ACTIONS(4018), - [anon_sym_as] = ACTIONS(4018), - [anon_sym_is] = ACTIONS(4018), - [anon_sym_DASH_GT] = ACTIONS(4018), - [anon_sym_with] = ACTIONS(4018), - [aux_sym_preproc_if_token3] = ACTIONS(4018), - [aux_sym_preproc_else_token1] = ACTIONS(4018), - [aux_sym_preproc_elif_token1] = ACTIONS(4018), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [anon_sym_SEMI] = ACTIONS(4961), + [anon_sym_LBRACK] = ACTIONS(4961), + [anon_sym_COLON] = ACTIONS(4961), + [anon_sym_COMMA] = ACTIONS(4961), + [anon_sym_RBRACK] = ACTIONS(4961), + [anon_sym_LPAREN] = ACTIONS(4961), + [anon_sym_RPAREN] = ACTIONS(4961), + [anon_sym_RBRACE] = ACTIONS(4961), + [anon_sym_LT] = ACTIONS(4963), + [anon_sym_GT] = ACTIONS(4963), + [anon_sym_in] = ACTIONS(4963), + [anon_sym_QMARK] = ACTIONS(4963), + [anon_sym_BANG] = ACTIONS(4963), + [anon_sym_PLUS_PLUS] = ACTIONS(4961), + [anon_sym_DASH_DASH] = ACTIONS(4961), + [anon_sym_PLUS] = ACTIONS(4963), + [anon_sym_DASH] = ACTIONS(4963), + [anon_sym_STAR] = ACTIONS(4961), + [anon_sym_SLASH] = ACTIONS(4963), + [anon_sym_PERCENT] = ACTIONS(4961), + [anon_sym_CARET] = ACTIONS(4961), + [anon_sym_PIPE] = ACTIONS(4963), + [anon_sym_AMP] = ACTIONS(4963), + [anon_sym_LT_LT] = ACTIONS(4961), + [anon_sym_GT_GT] = ACTIONS(4963), + [anon_sym_GT_GT_GT] = ACTIONS(4961), + [anon_sym_EQ_EQ] = ACTIONS(4961), + [anon_sym_BANG_EQ] = ACTIONS(4961), + [anon_sym_GT_EQ] = ACTIONS(4961), + [anon_sym_LT_EQ] = ACTIONS(4961), + [anon_sym_DOT] = ACTIONS(4963), + [anon_sym_EQ_GT] = ACTIONS(4961), + [anon_sym_switch] = ACTIONS(4961), + [anon_sym_when] = ACTIONS(4961), + [anon_sym_DOT_DOT] = ACTIONS(4961), + [anon_sym_and] = ACTIONS(4961), + [anon_sym_or] = ACTIONS(4961), + [anon_sym_AMP_AMP] = ACTIONS(4961), + [anon_sym_PIPE_PIPE] = ACTIONS(4961), + [anon_sym_QMARK_QMARK] = ACTIONS(4961), + [anon_sym_into] = ACTIONS(4961), + [anon_sym_on] = ACTIONS(4961), + [anon_sym_equals] = ACTIONS(4961), + [anon_sym_by] = ACTIONS(4961), + [anon_sym_as] = ACTIONS(4961), + [anon_sym_is] = ACTIONS(4961), + [anon_sym_DASH_GT] = ACTIONS(4961), + [anon_sym_with] = ACTIONS(4961), + [aux_sym_preproc_if_token3] = ACTIONS(4961), + [aux_sym_preproc_else_token1] = ACTIONS(4961), + [aux_sym_preproc_elif_token1] = ACTIONS(4961), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), [aux_sym_preproc_pragma_token1] = ACTIONS(9), [aux_sym_preproc_nullable_token1] = ACTIONS(11), @@ -489684,57 +489166,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(5134), - [anon_sym_LBRACK] = ACTIONS(5134), - [anon_sym_COLON] = ACTIONS(5134), - [anon_sym_COMMA] = ACTIONS(5134), - [anon_sym_RBRACK] = ACTIONS(5134), - [anon_sym_LPAREN] = ACTIONS(5134), - [anon_sym_RPAREN] = ACTIONS(5134), - [anon_sym_RBRACE] = ACTIONS(5134), - [anon_sym_LT] = ACTIONS(5136), - [anon_sym_GT] = ACTIONS(5136), - [anon_sym_in] = ACTIONS(5136), - [anon_sym_QMARK] = ACTIONS(5136), - [anon_sym_BANG] = ACTIONS(5136), - [anon_sym_PLUS_PLUS] = ACTIONS(5134), - [anon_sym_DASH_DASH] = ACTIONS(5134), - [anon_sym_PLUS] = ACTIONS(5136), - [anon_sym_DASH] = ACTIONS(5136), - [anon_sym_STAR] = ACTIONS(5134), - [anon_sym_SLASH] = ACTIONS(5136), - [anon_sym_PERCENT] = ACTIONS(5134), - [anon_sym_CARET] = ACTIONS(5134), - [anon_sym_PIPE] = ACTIONS(5136), - [anon_sym_AMP] = ACTIONS(5136), - [anon_sym_LT_LT] = ACTIONS(5134), - [anon_sym_GT_GT] = ACTIONS(5136), - [anon_sym_GT_GT_GT] = ACTIONS(5134), - [anon_sym_EQ_EQ] = ACTIONS(5134), - [anon_sym_BANG_EQ] = ACTIONS(5134), - [anon_sym_GT_EQ] = ACTIONS(5134), - [anon_sym_LT_EQ] = ACTIONS(5134), - [anon_sym_DOT] = ACTIONS(5136), - [anon_sym_EQ_GT] = ACTIONS(5134), - [anon_sym_switch] = ACTIONS(5134), - [anon_sym_when] = ACTIONS(5134), - [anon_sym_DOT_DOT] = ACTIONS(5134), - [anon_sym_and] = ACTIONS(5134), - [anon_sym_or] = ACTIONS(5134), - [anon_sym_AMP_AMP] = ACTIONS(5134), - [anon_sym_PIPE_PIPE] = ACTIONS(5134), - [anon_sym_QMARK_QMARK] = ACTIONS(5134), - [anon_sym_into] = ACTIONS(5134), - [anon_sym_on] = ACTIONS(5134), - [anon_sym_equals] = ACTIONS(5134), - [anon_sym_by] = ACTIONS(5134), - [anon_sym_as] = ACTIONS(5134), - [anon_sym_is] = ACTIONS(5134), - [anon_sym_DASH_GT] = ACTIONS(5134), - [anon_sym_with] = ACTIONS(5134), - [aux_sym_preproc_if_token3] = ACTIONS(5134), - [aux_sym_preproc_else_token1] = ACTIONS(5134), - [aux_sym_preproc_elif_token1] = ACTIONS(5134), + [anon_sym_SEMI] = ACTIONS(4965), + [anon_sym_LBRACK] = ACTIONS(4965), + [anon_sym_COLON] = ACTIONS(4965), + [anon_sym_COMMA] = ACTIONS(4965), + [anon_sym_RBRACK] = ACTIONS(4965), + [anon_sym_LPAREN] = ACTIONS(4965), + [anon_sym_RPAREN] = ACTIONS(4965), + [anon_sym_RBRACE] = ACTIONS(4965), + [anon_sym_LT] = ACTIONS(4967), + [anon_sym_GT] = ACTIONS(4967), + [anon_sym_in] = ACTIONS(4967), + [anon_sym_QMARK] = ACTIONS(4967), + [anon_sym_BANG] = ACTIONS(4967), + [anon_sym_PLUS_PLUS] = ACTIONS(4965), + [anon_sym_DASH_DASH] = ACTIONS(4965), + [anon_sym_PLUS] = ACTIONS(4967), + [anon_sym_DASH] = ACTIONS(4967), + [anon_sym_STAR] = ACTIONS(4965), + [anon_sym_SLASH] = ACTIONS(4967), + [anon_sym_PERCENT] = ACTIONS(4965), + [anon_sym_CARET] = ACTIONS(4965), + [anon_sym_PIPE] = ACTIONS(4967), + [anon_sym_AMP] = ACTIONS(4967), + [anon_sym_LT_LT] = ACTIONS(4965), + [anon_sym_GT_GT] = ACTIONS(4967), + [anon_sym_GT_GT_GT] = ACTIONS(4965), + [anon_sym_EQ_EQ] = ACTIONS(4965), + [anon_sym_BANG_EQ] = ACTIONS(4965), + [anon_sym_GT_EQ] = ACTIONS(4965), + [anon_sym_LT_EQ] = ACTIONS(4965), + [anon_sym_DOT] = ACTIONS(4967), + [anon_sym_EQ_GT] = ACTIONS(4965), + [anon_sym_switch] = ACTIONS(4965), + [anon_sym_when] = ACTIONS(4965), + [anon_sym_DOT_DOT] = ACTIONS(4965), + [anon_sym_and] = ACTIONS(4965), + [anon_sym_or] = ACTIONS(4965), + [anon_sym_AMP_AMP] = ACTIONS(4965), + [anon_sym_PIPE_PIPE] = ACTIONS(4965), + [anon_sym_QMARK_QMARK] = ACTIONS(4965), + [anon_sym_into] = ACTIONS(4965), + [anon_sym_on] = ACTIONS(4965), + [anon_sym_equals] = ACTIONS(4965), + [anon_sym_by] = ACTIONS(4965), + [anon_sym_as] = ACTIONS(4965), + [anon_sym_is] = ACTIONS(4965), + [anon_sym_DASH_GT] = ACTIONS(4965), + [anon_sym_with] = ACTIONS(4965), + [aux_sym_preproc_if_token3] = ACTIONS(4965), + [aux_sym_preproc_else_token1] = ACTIONS(4965), + [aux_sym_preproc_elif_token1] = ACTIONS(4965), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -489747,7 +489229,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3260] = { - [sym_type_argument_list] = STATE(2930), [sym_preproc_region] = STATE(3260), [sym_preproc_endregion] = STATE(3260), [sym_preproc_line] = STATE(3260), @@ -489757,56 +489238,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(3662), - [anon_sym_LBRACK] = ACTIONS(3662), - [anon_sym_COLON] = ACTIONS(3660), - [anon_sym_COMMA] = ACTIONS(3662), - [anon_sym_RBRACK] = ACTIONS(3662), - [anon_sym_LPAREN] = ACTIONS(3662), - [anon_sym_RPAREN] = ACTIONS(3662), - [anon_sym_LBRACE] = ACTIONS(3662), - [anon_sym_RBRACE] = ACTIONS(3662), - [anon_sym_LT] = ACTIONS(4826), - [anon_sym_GT] = ACTIONS(3660), - [anon_sym_in] = ACTIONS(3660), - [anon_sym_QMARK] = ACTIONS(3660), - [anon_sym_BANG] = ACTIONS(3660), - [anon_sym_PLUS_PLUS] = ACTIONS(3662), - [anon_sym_DASH_DASH] = ACTIONS(3662), - [anon_sym_PLUS] = ACTIONS(3660), - [anon_sym_DASH] = ACTIONS(3660), - [anon_sym_STAR] = ACTIONS(3662), - [anon_sym_SLASH] = ACTIONS(3660), - [anon_sym_PERCENT] = ACTIONS(3662), - [anon_sym_CARET] = ACTIONS(3662), - [anon_sym_PIPE] = ACTIONS(3660), - [anon_sym_AMP] = ACTIONS(3660), - [anon_sym_LT_LT] = ACTIONS(3662), - [anon_sym_GT_GT] = ACTIONS(3660), - [anon_sym_GT_GT_GT] = ACTIONS(3662), - [anon_sym_EQ_EQ] = ACTIONS(3662), - [anon_sym_BANG_EQ] = ACTIONS(3662), - [anon_sym_GT_EQ] = ACTIONS(3662), - [anon_sym_LT_EQ] = ACTIONS(3662), - [anon_sym_DOT] = ACTIONS(3660), - [anon_sym_EQ_GT] = ACTIONS(3662), - [anon_sym_COLON_COLON] = ACTIONS(5361), - [anon_sym_switch] = ACTIONS(3662), - [anon_sym_DOT_DOT] = ACTIONS(3662), - [anon_sym_AMP_AMP] = ACTIONS(3662), - [anon_sym_PIPE_PIPE] = ACTIONS(3662), - [anon_sym_QMARK_QMARK] = ACTIONS(3662), - [anon_sym_into] = ACTIONS(3662), - [anon_sym_on] = ACTIONS(3662), - [anon_sym_equals] = ACTIONS(3662), - [anon_sym_by] = ACTIONS(3662), - [anon_sym_as] = ACTIONS(3662), - [anon_sym_is] = ACTIONS(3662), - [anon_sym_DASH_GT] = ACTIONS(3662), - [anon_sym_with] = ACTIONS(3662), - [aux_sym_preproc_if_token3] = ACTIONS(3662), - [aux_sym_preproc_else_token1] = ACTIONS(3662), - [aux_sym_preproc_elif_token1] = ACTIONS(3662), + [anon_sym_SEMI] = ACTIONS(5366), + [anon_sym_LBRACK] = ACTIONS(5366), + [anon_sym_COLON] = ACTIONS(5366), + [anon_sym_COMMA] = ACTIONS(5366), + [anon_sym_RBRACK] = ACTIONS(5366), + [anon_sym_LPAREN] = ACTIONS(5366), + [anon_sym_RPAREN] = ACTIONS(5366), + [anon_sym_RBRACE] = ACTIONS(5366), + [anon_sym_LT] = ACTIONS(5368), + [anon_sym_GT] = ACTIONS(5368), + [anon_sym_in] = ACTIONS(5368), + [anon_sym_QMARK] = ACTIONS(5368), + [anon_sym_BANG] = ACTIONS(5368), + [anon_sym_PLUS_PLUS] = ACTIONS(5366), + [anon_sym_DASH_DASH] = ACTIONS(5366), + [anon_sym_PLUS] = ACTIONS(5368), + [anon_sym_DASH] = ACTIONS(5368), + [anon_sym_STAR] = ACTIONS(5366), + [anon_sym_SLASH] = ACTIONS(5368), + [anon_sym_PERCENT] = ACTIONS(5366), + [anon_sym_CARET] = ACTIONS(5366), + [anon_sym_PIPE] = ACTIONS(5368), + [anon_sym_AMP] = ACTIONS(5368), + [anon_sym_LT_LT] = ACTIONS(5366), + [anon_sym_GT_GT] = ACTIONS(5368), + [anon_sym_GT_GT_GT] = ACTIONS(5366), + [anon_sym_EQ_EQ] = ACTIONS(5366), + [anon_sym_BANG_EQ] = ACTIONS(5366), + [anon_sym_GT_EQ] = ACTIONS(5366), + [anon_sym_LT_EQ] = ACTIONS(5366), + [anon_sym_DOT] = ACTIONS(5368), + [anon_sym_EQ_GT] = ACTIONS(5366), + [anon_sym_switch] = ACTIONS(5366), + [anon_sym_when] = ACTIONS(5366), + [anon_sym_DOT_DOT] = ACTIONS(5366), + [anon_sym_and] = ACTIONS(5366), + [anon_sym_or] = ACTIONS(5366), + [anon_sym_AMP_AMP] = ACTIONS(5366), + [anon_sym_PIPE_PIPE] = ACTIONS(5366), + [anon_sym_QMARK_QMARK] = ACTIONS(5366), + [anon_sym_into] = ACTIONS(5366), + [anon_sym_on] = ACTIONS(5366), + [anon_sym_equals] = ACTIONS(5366), + [anon_sym_by] = ACTIONS(5366), + [anon_sym_as] = ACTIONS(5366), + [anon_sym_is] = ACTIONS(5366), + [anon_sym_DASH_GT] = ACTIONS(5366), + [anon_sym_with] = ACTIONS(5366), + [aux_sym_preproc_if_token3] = ACTIONS(5366), + [aux_sym_preproc_else_token1] = ACTIONS(5366), + [aux_sym_preproc_elif_token1] = ACTIONS(5366), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -489828,57 +489310,57 @@ 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_SEMI] = ACTIONS(3977), - [anon_sym_LBRACK] = ACTIONS(3977), - [anon_sym_COLON] = ACTIONS(3977), - [anon_sym_COMMA] = ACTIONS(3977), - [anon_sym_RBRACK] = ACTIONS(3977), - [anon_sym_LPAREN] = ACTIONS(3977), - [anon_sym_RPAREN] = ACTIONS(3977), - [anon_sym_LBRACE] = ACTIONS(3977), - [anon_sym_RBRACE] = ACTIONS(3977), - [anon_sym_LT] = ACTIONS(3975), - [anon_sym_GT] = ACTIONS(3975), - [anon_sym_in] = ACTIONS(3977), - [anon_sym_QMARK] = ACTIONS(3975), - [anon_sym_BANG] = ACTIONS(3975), - [anon_sym_PLUS_PLUS] = ACTIONS(3977), - [anon_sym_DASH_DASH] = ACTIONS(3977), - [anon_sym_PLUS] = ACTIONS(3975), - [anon_sym_DASH] = ACTIONS(3975), - [anon_sym_STAR] = ACTIONS(3977), - [anon_sym_SLASH] = ACTIONS(3975), - [anon_sym_PERCENT] = ACTIONS(3977), - [anon_sym_CARET] = ACTIONS(3977), - [anon_sym_PIPE] = ACTIONS(3975), - [anon_sym_AMP] = ACTIONS(3975), - [anon_sym_LT_LT] = ACTIONS(3977), - [anon_sym_GT_GT] = ACTIONS(3975), - [anon_sym_GT_GT_GT] = ACTIONS(3977), - [anon_sym_EQ_EQ] = ACTIONS(3977), - [anon_sym_BANG_EQ] = ACTIONS(3977), - [anon_sym_GT_EQ] = ACTIONS(3977), - [anon_sym_LT_EQ] = ACTIONS(3977), - [anon_sym_DOT] = ACTIONS(3975), - [anon_sym_EQ_GT] = ACTIONS(3977), - [anon_sym_switch] = ACTIONS(3977), - [anon_sym_when] = ACTIONS(3977), - [anon_sym_DOT_DOT] = ACTIONS(3977), - [anon_sym_and] = ACTIONS(3977), - [anon_sym_or] = ACTIONS(3977), - [anon_sym_AMP_AMP] = ACTIONS(3977), - [anon_sym_PIPE_PIPE] = ACTIONS(3977), - [anon_sym_QMARK_QMARK] = ACTIONS(3977), - [anon_sym_on] = ACTIONS(3977), - [anon_sym_equals] = ACTIONS(3977), - [anon_sym_by] = ACTIONS(3977), - [anon_sym_as] = ACTIONS(3977), - [anon_sym_is] = ACTIONS(3977), - [anon_sym_DASH_GT] = ACTIONS(3977), - [anon_sym_with] = ACTIONS(3977), - [aux_sym_preproc_if_token3] = ACTIONS(3977), - [aux_sym_preproc_else_token1] = ACTIONS(3977), - [aux_sym_preproc_elif_token1] = ACTIONS(3977), + [anon_sym_SEMI] = ACTIONS(4969), + [anon_sym_LBRACK] = ACTIONS(4969), + [anon_sym_COLON] = ACTIONS(4969), + [anon_sym_COMMA] = ACTIONS(4969), + [anon_sym_RBRACK] = ACTIONS(4969), + [anon_sym_LPAREN] = ACTIONS(4969), + [anon_sym_RPAREN] = ACTIONS(4969), + [anon_sym_RBRACE] = ACTIONS(4969), + [anon_sym_LT] = ACTIONS(4971), + [anon_sym_GT] = ACTIONS(4971), + [anon_sym_in] = ACTIONS(4971), + [anon_sym_QMARK] = ACTIONS(4971), + [anon_sym_BANG] = ACTIONS(4971), + [anon_sym_PLUS_PLUS] = ACTIONS(4969), + [anon_sym_DASH_DASH] = ACTIONS(4969), + [anon_sym_PLUS] = ACTIONS(4971), + [anon_sym_DASH] = ACTIONS(4971), + [anon_sym_STAR] = ACTIONS(4969), + [anon_sym_SLASH] = ACTIONS(4971), + [anon_sym_PERCENT] = ACTIONS(4969), + [anon_sym_CARET] = ACTIONS(4969), + [anon_sym_PIPE] = ACTIONS(4971), + [anon_sym_AMP] = ACTIONS(4971), + [anon_sym_LT_LT] = ACTIONS(4969), + [anon_sym_GT_GT] = ACTIONS(4971), + [anon_sym_GT_GT_GT] = ACTIONS(4969), + [anon_sym_EQ_EQ] = ACTIONS(4969), + [anon_sym_BANG_EQ] = ACTIONS(4969), + [anon_sym_GT_EQ] = ACTIONS(4969), + [anon_sym_LT_EQ] = ACTIONS(4969), + [anon_sym_DOT] = ACTIONS(4971), + [anon_sym_EQ_GT] = ACTIONS(4969), + [anon_sym_switch] = ACTIONS(4969), + [anon_sym_when] = ACTIONS(4969), + [anon_sym_DOT_DOT] = ACTIONS(4969), + [anon_sym_and] = ACTIONS(4969), + [anon_sym_or] = ACTIONS(4969), + [anon_sym_AMP_AMP] = ACTIONS(4969), + [anon_sym_PIPE_PIPE] = ACTIONS(4969), + [anon_sym_QMARK_QMARK] = ACTIONS(4969), + [anon_sym_into] = ACTIONS(4969), + [anon_sym_on] = ACTIONS(4969), + [anon_sym_equals] = ACTIONS(4969), + [anon_sym_by] = ACTIONS(4969), + [anon_sym_as] = ACTIONS(4969), + [anon_sym_is] = ACTIONS(4969), + [anon_sym_DASH_GT] = ACTIONS(4969), + [anon_sym_with] = ACTIONS(4969), + [aux_sym_preproc_if_token3] = ACTIONS(4969), + [aux_sym_preproc_else_token1] = ACTIONS(4969), + [aux_sym_preproc_elif_token1] = ACTIONS(4969), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -489900,57 +489382,57 @@ 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(4002), - [anon_sym_LBRACK] = ACTIONS(4002), - [anon_sym_COLON] = ACTIONS(4002), - [anon_sym_COMMA] = ACTIONS(4002), - [anon_sym_RBRACK] = ACTIONS(4002), - [anon_sym_LPAREN] = ACTIONS(4002), - [anon_sym_RPAREN] = ACTIONS(4002), - [anon_sym_LBRACE] = ACTIONS(4002), - [anon_sym_RBRACE] = ACTIONS(4002), - [anon_sym_LT] = ACTIONS(4000), - [anon_sym_GT] = ACTIONS(4000), - [anon_sym_in] = ACTIONS(4002), - [anon_sym_QMARK] = ACTIONS(4000), - [anon_sym_BANG] = ACTIONS(4000), - [anon_sym_PLUS_PLUS] = ACTIONS(4002), - [anon_sym_DASH_DASH] = ACTIONS(4002), - [anon_sym_PLUS] = ACTIONS(4000), - [anon_sym_DASH] = ACTIONS(4000), - [anon_sym_STAR] = ACTIONS(4002), - [anon_sym_SLASH] = ACTIONS(4000), - [anon_sym_PERCENT] = ACTIONS(4002), - [anon_sym_CARET] = ACTIONS(4002), - [anon_sym_PIPE] = ACTIONS(4000), - [anon_sym_AMP] = ACTIONS(4000), - [anon_sym_LT_LT] = ACTIONS(4002), - [anon_sym_GT_GT] = ACTIONS(4000), - [anon_sym_GT_GT_GT] = ACTIONS(4002), - [anon_sym_EQ_EQ] = ACTIONS(4002), - [anon_sym_BANG_EQ] = ACTIONS(4002), - [anon_sym_GT_EQ] = ACTIONS(4002), - [anon_sym_LT_EQ] = ACTIONS(4002), - [anon_sym_DOT] = ACTIONS(4000), - [anon_sym_EQ_GT] = ACTIONS(4002), - [anon_sym_switch] = ACTIONS(4002), - [anon_sym_when] = ACTIONS(4002), - [anon_sym_DOT_DOT] = ACTIONS(4002), - [anon_sym_and] = ACTIONS(4002), - [anon_sym_or] = ACTIONS(4002), - [anon_sym_AMP_AMP] = ACTIONS(4002), - [anon_sym_PIPE_PIPE] = ACTIONS(4002), - [anon_sym_QMARK_QMARK] = ACTIONS(4002), - [anon_sym_on] = ACTIONS(4002), - [anon_sym_equals] = ACTIONS(4002), - [anon_sym_by] = ACTIONS(4002), - [anon_sym_as] = ACTIONS(4002), - [anon_sym_is] = ACTIONS(4002), - [anon_sym_DASH_GT] = ACTIONS(4002), - [anon_sym_with] = ACTIONS(4002), - [aux_sym_preproc_if_token3] = ACTIONS(4002), - [aux_sym_preproc_else_token1] = ACTIONS(4002), - [aux_sym_preproc_elif_token1] = ACTIONS(4002), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -489972,57 +489454,57 @@ 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(4006), - [anon_sym_LBRACK] = ACTIONS(4006), - [anon_sym_COLON] = ACTIONS(4006), - [anon_sym_COMMA] = ACTIONS(4006), - [anon_sym_RBRACK] = ACTIONS(4006), - [anon_sym_LPAREN] = ACTIONS(4006), - [anon_sym_RPAREN] = ACTIONS(4006), - [anon_sym_LBRACE] = ACTIONS(4006), - [anon_sym_RBRACE] = ACTIONS(4006), - [anon_sym_LT] = ACTIONS(4004), - [anon_sym_GT] = ACTIONS(4004), - [anon_sym_in] = ACTIONS(4006), - [anon_sym_QMARK] = ACTIONS(4004), - [anon_sym_BANG] = ACTIONS(4004), - [anon_sym_PLUS_PLUS] = ACTIONS(4006), - [anon_sym_DASH_DASH] = ACTIONS(4006), - [anon_sym_PLUS] = ACTIONS(4004), - [anon_sym_DASH] = ACTIONS(4004), - [anon_sym_STAR] = ACTIONS(4006), - [anon_sym_SLASH] = ACTIONS(4004), - [anon_sym_PERCENT] = ACTIONS(4006), - [anon_sym_CARET] = ACTIONS(4006), - [anon_sym_PIPE] = ACTIONS(4004), - [anon_sym_AMP] = ACTIONS(4004), - [anon_sym_LT_LT] = ACTIONS(4006), - [anon_sym_GT_GT] = ACTIONS(4004), - [anon_sym_GT_GT_GT] = ACTIONS(4006), - [anon_sym_EQ_EQ] = ACTIONS(4006), - [anon_sym_BANG_EQ] = ACTIONS(4006), - [anon_sym_GT_EQ] = ACTIONS(4006), - [anon_sym_LT_EQ] = ACTIONS(4006), - [anon_sym_DOT] = ACTIONS(4004), - [anon_sym_EQ_GT] = ACTIONS(4006), - [anon_sym_switch] = ACTIONS(4006), - [anon_sym_when] = ACTIONS(4006), - [anon_sym_DOT_DOT] = ACTIONS(4006), - [anon_sym_and] = ACTIONS(4006), - [anon_sym_or] = ACTIONS(4006), - [anon_sym_AMP_AMP] = ACTIONS(4006), - [anon_sym_PIPE_PIPE] = ACTIONS(4006), - [anon_sym_QMARK_QMARK] = ACTIONS(4006), - [anon_sym_on] = ACTIONS(4006), - [anon_sym_equals] = ACTIONS(4006), - [anon_sym_by] = ACTIONS(4006), - [anon_sym_as] = ACTIONS(4006), - [anon_sym_is] = ACTIONS(4006), - [anon_sym_DASH_GT] = ACTIONS(4006), - [anon_sym_with] = ACTIONS(4006), - [aux_sym_preproc_if_token3] = ACTIONS(4006), - [aux_sym_preproc_else_token1] = ACTIONS(4006), - [aux_sym_preproc_elif_token1] = ACTIONS(4006), + [anon_sym_SEMI] = ACTIONS(4874), + [anon_sym_LBRACK] = ACTIONS(4874), + [anon_sym_COLON] = ACTIONS(4874), + [anon_sym_COMMA] = ACTIONS(4874), + [anon_sym_RBRACK] = ACTIONS(4874), + [anon_sym_LPAREN] = ACTIONS(4874), + [anon_sym_RPAREN] = ACTIONS(4874), + [anon_sym_RBRACE] = ACTIONS(4874), + [anon_sym_LT] = ACTIONS(4876), + [anon_sym_GT] = ACTIONS(4876), + [anon_sym_in] = ACTIONS(4876), + [anon_sym_QMARK] = ACTIONS(4876), + [anon_sym_BANG] = ACTIONS(4876), + [anon_sym_PLUS_PLUS] = ACTIONS(4874), + [anon_sym_DASH_DASH] = ACTIONS(4874), + [anon_sym_PLUS] = ACTIONS(4876), + [anon_sym_DASH] = ACTIONS(4876), + [anon_sym_STAR] = ACTIONS(4874), + [anon_sym_SLASH] = ACTIONS(4876), + [anon_sym_PERCENT] = ACTIONS(4874), + [anon_sym_CARET] = ACTIONS(4874), + [anon_sym_PIPE] = ACTIONS(4876), + [anon_sym_AMP] = ACTIONS(4876), + [anon_sym_LT_LT] = ACTIONS(4874), + [anon_sym_GT_GT] = ACTIONS(4876), + [anon_sym_GT_GT_GT] = ACTIONS(4874), + [anon_sym_EQ_EQ] = ACTIONS(4874), + [anon_sym_BANG_EQ] = ACTIONS(4874), + [anon_sym_GT_EQ] = ACTIONS(4874), + [anon_sym_LT_EQ] = ACTIONS(4874), + [anon_sym_DOT] = ACTIONS(4876), + [anon_sym_EQ_GT] = ACTIONS(4874), + [anon_sym_switch] = ACTIONS(4874), + [anon_sym_when] = ACTIONS(4874), + [anon_sym_DOT_DOT] = ACTIONS(4874), + [anon_sym_and] = ACTIONS(4874), + [anon_sym_or] = ACTIONS(4874), + [anon_sym_AMP_AMP] = ACTIONS(4874), + [anon_sym_PIPE_PIPE] = ACTIONS(4874), + [anon_sym_QMARK_QMARK] = ACTIONS(4874), + [anon_sym_into] = ACTIONS(4874), + [anon_sym_on] = ACTIONS(4874), + [anon_sym_equals] = ACTIONS(4874), + [anon_sym_by] = ACTIONS(4874), + [anon_sym_as] = ACTIONS(4874), + [anon_sym_is] = ACTIONS(4874), + [anon_sym_DASH_GT] = ACTIONS(4874), + [anon_sym_with] = ACTIONS(4874), + [aux_sym_preproc_if_token3] = ACTIONS(4874), + [aux_sym_preproc_else_token1] = ACTIONS(4874), + [aux_sym_preproc_elif_token1] = ACTIONS(4874), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -490044,57 +489526,57 @@ 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(4084), - [anon_sym_LBRACK] = ACTIONS(4084), - [anon_sym_COLON] = ACTIONS(4084), - [anon_sym_COMMA] = ACTIONS(4084), - [anon_sym_RBRACK] = ACTIONS(4084), - [anon_sym_LPAREN] = ACTIONS(4084), - [anon_sym_RPAREN] = ACTIONS(4084), - [anon_sym_LBRACE] = ACTIONS(4084), - [anon_sym_RBRACE] = ACTIONS(4084), - [anon_sym_LT] = ACTIONS(4082), - [anon_sym_GT] = ACTIONS(4082), - [anon_sym_in] = ACTIONS(4084), - [anon_sym_QMARK] = ACTIONS(4082), - [anon_sym_BANG] = ACTIONS(4082), - [anon_sym_PLUS_PLUS] = ACTIONS(4084), - [anon_sym_DASH_DASH] = ACTIONS(4084), - [anon_sym_PLUS] = ACTIONS(4082), - [anon_sym_DASH] = ACTIONS(4082), - [anon_sym_STAR] = ACTIONS(4084), - [anon_sym_SLASH] = ACTIONS(4082), - [anon_sym_PERCENT] = ACTIONS(4084), - [anon_sym_CARET] = ACTIONS(4084), - [anon_sym_PIPE] = ACTIONS(4082), - [anon_sym_AMP] = ACTIONS(4082), - [anon_sym_LT_LT] = ACTIONS(4084), - [anon_sym_GT_GT] = ACTIONS(4082), - [anon_sym_GT_GT_GT] = ACTIONS(4084), - [anon_sym_EQ_EQ] = ACTIONS(4084), - [anon_sym_BANG_EQ] = ACTIONS(4084), - [anon_sym_GT_EQ] = ACTIONS(4084), - [anon_sym_LT_EQ] = ACTIONS(4084), - [anon_sym_DOT] = ACTIONS(4082), - [anon_sym_EQ_GT] = ACTIONS(4084), - [anon_sym_switch] = ACTIONS(4084), - [anon_sym_when] = ACTIONS(4084), - [anon_sym_DOT_DOT] = ACTIONS(4084), - [anon_sym_and] = ACTIONS(4084), - [anon_sym_or] = ACTIONS(4084), - [anon_sym_AMP_AMP] = ACTIONS(4084), - [anon_sym_PIPE_PIPE] = ACTIONS(4084), - [anon_sym_QMARK_QMARK] = ACTIONS(4084), - [anon_sym_on] = ACTIONS(4084), - [anon_sym_equals] = ACTIONS(4084), - [anon_sym_by] = ACTIONS(4084), - [anon_sym_as] = ACTIONS(4084), - [anon_sym_is] = ACTIONS(4084), - [anon_sym_DASH_GT] = ACTIONS(4084), - [anon_sym_with] = ACTIONS(4084), - [aux_sym_preproc_if_token3] = ACTIONS(4084), - [aux_sym_preproc_else_token1] = ACTIONS(4084), - [aux_sym_preproc_elif_token1] = ACTIONS(4084), + [anon_sym_SEMI] = ACTIONS(4921), + [anon_sym_LBRACK] = ACTIONS(4921), + [anon_sym_COLON] = ACTIONS(4921), + [anon_sym_COMMA] = ACTIONS(4921), + [anon_sym_RBRACK] = ACTIONS(4921), + [anon_sym_LPAREN] = ACTIONS(4921), + [anon_sym_RPAREN] = ACTIONS(4921), + [anon_sym_RBRACE] = ACTIONS(4921), + [anon_sym_LT] = ACTIONS(4923), + [anon_sym_GT] = ACTIONS(4923), + [anon_sym_in] = ACTIONS(4923), + [anon_sym_QMARK] = ACTIONS(4923), + [anon_sym_BANG] = ACTIONS(4923), + [anon_sym_PLUS_PLUS] = ACTIONS(4921), + [anon_sym_DASH_DASH] = ACTIONS(4921), + [anon_sym_PLUS] = ACTIONS(4923), + [anon_sym_DASH] = ACTIONS(4923), + [anon_sym_STAR] = ACTIONS(4921), + [anon_sym_SLASH] = ACTIONS(4923), + [anon_sym_PERCENT] = ACTIONS(4921), + [anon_sym_CARET] = ACTIONS(4921), + [anon_sym_PIPE] = ACTIONS(4923), + [anon_sym_AMP] = ACTIONS(4923), + [anon_sym_LT_LT] = ACTIONS(4921), + [anon_sym_GT_GT] = ACTIONS(4923), + [anon_sym_GT_GT_GT] = ACTIONS(4921), + [anon_sym_EQ_EQ] = ACTIONS(4921), + [anon_sym_BANG_EQ] = ACTIONS(4921), + [anon_sym_GT_EQ] = ACTIONS(4921), + [anon_sym_LT_EQ] = ACTIONS(4921), + [anon_sym_DOT] = ACTIONS(4923), + [anon_sym_EQ_GT] = ACTIONS(4921), + [anon_sym_switch] = ACTIONS(4921), + [anon_sym_when] = ACTIONS(4921), + [anon_sym_DOT_DOT] = ACTIONS(4921), + [anon_sym_and] = ACTIONS(4921), + [anon_sym_or] = ACTIONS(4921), + [anon_sym_AMP_AMP] = ACTIONS(4921), + [anon_sym_PIPE_PIPE] = ACTIONS(4921), + [anon_sym_QMARK_QMARK] = ACTIONS(4921), + [anon_sym_into] = ACTIONS(4921), + [anon_sym_on] = ACTIONS(4921), + [anon_sym_equals] = ACTIONS(4921), + [anon_sym_by] = ACTIONS(4921), + [anon_sym_as] = ACTIONS(4921), + [anon_sym_is] = ACTIONS(4921), + [anon_sym_DASH_GT] = ACTIONS(4921), + [anon_sym_with] = ACTIONS(4921), + [aux_sym_preproc_if_token3] = ACTIONS(4921), + [aux_sym_preproc_else_token1] = ACTIONS(4921), + [aux_sym_preproc_elif_token1] = ACTIONS(4921), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -490116,57 +489598,57 @@ 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(3973), - [anon_sym_LBRACK] = ACTIONS(3973), - [anon_sym_COLON] = ACTIONS(3973), - [anon_sym_COMMA] = ACTIONS(3973), - [anon_sym_RBRACK] = ACTIONS(3973), - [anon_sym_LPAREN] = ACTIONS(3973), - [anon_sym_RPAREN] = ACTIONS(3973), - [anon_sym_LBRACE] = ACTIONS(3973), - [anon_sym_RBRACE] = ACTIONS(3973), - [anon_sym_LT] = ACTIONS(3971), - [anon_sym_GT] = ACTIONS(3971), - [anon_sym_in] = ACTIONS(3973), - [anon_sym_QMARK] = ACTIONS(3971), - [anon_sym_BANG] = ACTIONS(3971), - [anon_sym_PLUS_PLUS] = ACTIONS(3973), - [anon_sym_DASH_DASH] = ACTIONS(3973), - [anon_sym_PLUS] = ACTIONS(3971), - [anon_sym_DASH] = ACTIONS(3971), - [anon_sym_STAR] = ACTIONS(3973), - [anon_sym_SLASH] = ACTIONS(3971), - [anon_sym_PERCENT] = ACTIONS(3973), - [anon_sym_CARET] = ACTIONS(3973), - [anon_sym_PIPE] = ACTIONS(3971), - [anon_sym_AMP] = ACTIONS(3971), - [anon_sym_LT_LT] = ACTIONS(3973), - [anon_sym_GT_GT] = ACTIONS(3971), - [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(3971), - [anon_sym_EQ_GT] = ACTIONS(3973), - [anon_sym_switch] = ACTIONS(3973), - [anon_sym_when] = ACTIONS(3973), - [anon_sym_DOT_DOT] = ACTIONS(3973), - [anon_sym_and] = ACTIONS(3973), - [anon_sym_or] = ACTIONS(3973), - [anon_sym_AMP_AMP] = ACTIONS(3973), - [anon_sym_PIPE_PIPE] = ACTIONS(3973), - [anon_sym_QMARK_QMARK] = ACTIONS(3973), - [anon_sym_on] = ACTIONS(3973), - [anon_sym_equals] = ACTIONS(3973), - [anon_sym_by] = ACTIONS(3973), - [anon_sym_as] = ACTIONS(3973), - [anon_sym_is] = ACTIONS(3973), - [anon_sym_DASH_GT] = ACTIONS(3973), - [anon_sym_with] = ACTIONS(3973), - [aux_sym_preproc_if_token3] = ACTIONS(3973), - [aux_sym_preproc_else_token1] = ACTIONS(3973), - [aux_sym_preproc_elif_token1] = ACTIONS(3973), + [anon_sym_SEMI] = ACTIONS(5370), + [anon_sym_LBRACK] = ACTIONS(5370), + [anon_sym_COLON] = ACTIONS(5370), + [anon_sym_COMMA] = ACTIONS(5370), + [anon_sym_RBRACK] = ACTIONS(5370), + [anon_sym_LPAREN] = ACTIONS(5370), + [anon_sym_RPAREN] = ACTIONS(5370), + [anon_sym_RBRACE] = ACTIONS(5370), + [anon_sym_LT] = ACTIONS(5372), + [anon_sym_GT] = ACTIONS(5372), + [anon_sym_in] = ACTIONS(5372), + [anon_sym_QMARK] = ACTIONS(5372), + [anon_sym_BANG] = ACTIONS(5372), + [anon_sym_PLUS_PLUS] = ACTIONS(5370), + [anon_sym_DASH_DASH] = ACTIONS(5370), + [anon_sym_PLUS] = ACTIONS(5372), + [anon_sym_DASH] = ACTIONS(5372), + [anon_sym_STAR] = ACTIONS(5370), + [anon_sym_SLASH] = ACTIONS(5372), + [anon_sym_PERCENT] = ACTIONS(5370), + [anon_sym_CARET] = ACTIONS(5370), + [anon_sym_PIPE] = ACTIONS(5372), + [anon_sym_AMP] = ACTIONS(5372), + [anon_sym_LT_LT] = ACTIONS(5370), + [anon_sym_GT_GT] = ACTIONS(5372), + [anon_sym_GT_GT_GT] = ACTIONS(5370), + [anon_sym_EQ_EQ] = ACTIONS(5370), + [anon_sym_BANG_EQ] = ACTIONS(5370), + [anon_sym_GT_EQ] = ACTIONS(5370), + [anon_sym_LT_EQ] = ACTIONS(5370), + [anon_sym_DOT] = ACTIONS(5372), + [anon_sym_EQ_GT] = ACTIONS(5370), + [anon_sym_switch] = ACTIONS(5370), + [anon_sym_when] = ACTIONS(5370), + [anon_sym_DOT_DOT] = ACTIONS(5370), + [anon_sym_and] = ACTIONS(5370), + [anon_sym_or] = ACTIONS(5370), + [anon_sym_AMP_AMP] = ACTIONS(5370), + [anon_sym_PIPE_PIPE] = ACTIONS(5370), + [anon_sym_QMARK_QMARK] = ACTIONS(5370), + [anon_sym_into] = ACTIONS(5370), + [anon_sym_on] = ACTIONS(5370), + [anon_sym_equals] = ACTIONS(5370), + [anon_sym_by] = ACTIONS(5370), + [anon_sym_as] = ACTIONS(5370), + [anon_sym_is] = ACTIONS(5370), + [anon_sym_DASH_GT] = ACTIONS(5370), + [anon_sym_with] = ACTIONS(5370), + [aux_sym_preproc_if_token3] = ACTIONS(5370), + [aux_sym_preproc_else_token1] = ACTIONS(5370), + [aux_sym_preproc_elif_token1] = ACTIONS(5370), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -490188,57 +489670,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), - [anon_sym_SEMI] = ACTIONS(5142), - [anon_sym_LBRACK] = ACTIONS(5142), - [anon_sym_COLON] = ACTIONS(5142), - [anon_sym_COMMA] = ACTIONS(5142), - [anon_sym_RBRACK] = ACTIONS(5142), - [anon_sym_LPAREN] = ACTIONS(5142), - [anon_sym_RPAREN] = ACTIONS(5142), - [anon_sym_RBRACE] = ACTIONS(5142), - [anon_sym_LT] = ACTIONS(5144), - [anon_sym_GT] = ACTIONS(5144), - [anon_sym_in] = ACTIONS(5144), - [anon_sym_QMARK] = ACTIONS(5144), - [anon_sym_BANG] = ACTIONS(5144), - [anon_sym_PLUS_PLUS] = ACTIONS(5142), - [anon_sym_DASH_DASH] = ACTIONS(5142), - [anon_sym_PLUS] = ACTIONS(5144), - [anon_sym_DASH] = ACTIONS(5144), - [anon_sym_STAR] = ACTIONS(5142), - [anon_sym_SLASH] = ACTIONS(5144), - [anon_sym_PERCENT] = ACTIONS(5142), - [anon_sym_CARET] = ACTIONS(5142), - [anon_sym_PIPE] = ACTIONS(5144), - [anon_sym_AMP] = ACTIONS(5144), - [anon_sym_LT_LT] = ACTIONS(5142), - [anon_sym_GT_GT] = ACTIONS(5144), - [anon_sym_GT_GT_GT] = ACTIONS(5142), - [anon_sym_EQ_EQ] = ACTIONS(5142), - [anon_sym_BANG_EQ] = ACTIONS(5142), - [anon_sym_GT_EQ] = ACTIONS(5142), - [anon_sym_LT_EQ] = ACTIONS(5142), - [anon_sym_DOT] = ACTIONS(5144), - [anon_sym_EQ_GT] = ACTIONS(5142), - [anon_sym_switch] = ACTIONS(5142), - [anon_sym_when] = ACTIONS(5142), - [anon_sym_DOT_DOT] = ACTIONS(5142), - [anon_sym_and] = ACTIONS(5142), - [anon_sym_or] = ACTIONS(5142), - [anon_sym_AMP_AMP] = ACTIONS(5142), - [anon_sym_PIPE_PIPE] = ACTIONS(5142), - [anon_sym_QMARK_QMARK] = ACTIONS(5142), - [anon_sym_into] = ACTIONS(5142), - [anon_sym_on] = ACTIONS(5142), - [anon_sym_equals] = ACTIONS(5142), - [anon_sym_by] = ACTIONS(5142), - [anon_sym_as] = ACTIONS(5142), - [anon_sym_is] = ACTIONS(5142), - [anon_sym_DASH_GT] = ACTIONS(5142), - [anon_sym_with] = ACTIONS(5142), - [aux_sym_preproc_if_token3] = ACTIONS(5142), - [aux_sym_preproc_else_token1] = ACTIONS(5142), - [aux_sym_preproc_elif_token1] = ACTIONS(5142), + [anon_sym_SEMI] = ACTIONS(4060), + [anon_sym_LBRACK] = ACTIONS(4060), + [anon_sym_COLON] = ACTIONS(4060), + [anon_sym_COMMA] = ACTIONS(4060), + [anon_sym_RBRACK] = ACTIONS(4060), + [anon_sym_LPAREN] = ACTIONS(4060), + [anon_sym_RPAREN] = ACTIONS(4060), + [anon_sym_LBRACE] = ACTIONS(4060), + [anon_sym_RBRACE] = ACTIONS(4060), + [anon_sym_LT] = ACTIONS(4058), + [anon_sym_GT] = ACTIONS(4058), + [anon_sym_in] = ACTIONS(4060), + [anon_sym_QMARK] = ACTIONS(4058), + [anon_sym_BANG] = ACTIONS(4058), + [anon_sym_PLUS_PLUS] = ACTIONS(4060), + [anon_sym_DASH_DASH] = ACTIONS(4060), + [anon_sym_PLUS] = ACTIONS(4058), + [anon_sym_DASH] = ACTIONS(4058), + [anon_sym_STAR] = ACTIONS(4060), + [anon_sym_SLASH] = ACTIONS(4058), + [anon_sym_PERCENT] = ACTIONS(4060), + [anon_sym_CARET] = ACTIONS(4060), + [anon_sym_PIPE] = ACTIONS(4058), + [anon_sym_AMP] = ACTIONS(4058), + [anon_sym_LT_LT] = ACTIONS(4060), + [anon_sym_GT_GT] = ACTIONS(4058), + [anon_sym_GT_GT_GT] = ACTIONS(4060), + [anon_sym_EQ_EQ] = ACTIONS(4060), + [anon_sym_BANG_EQ] = ACTIONS(4060), + [anon_sym_GT_EQ] = ACTIONS(4060), + [anon_sym_LT_EQ] = ACTIONS(4060), + [anon_sym_DOT] = ACTIONS(4058), + [anon_sym_EQ_GT] = ACTIONS(4060), + [anon_sym_switch] = ACTIONS(4060), + [anon_sym_when] = ACTIONS(4060), + [anon_sym_DOT_DOT] = ACTIONS(4060), + [anon_sym_and] = ACTIONS(4060), + [anon_sym_or] = ACTIONS(4060), + [anon_sym_AMP_AMP] = ACTIONS(4060), + [anon_sym_PIPE_PIPE] = ACTIONS(4060), + [anon_sym_QMARK_QMARK] = ACTIONS(4060), + [anon_sym_on] = ACTIONS(4060), + [anon_sym_equals] = ACTIONS(4060), + [anon_sym_by] = ACTIONS(4060), + [anon_sym_as] = ACTIONS(4060), + [anon_sym_is] = ACTIONS(4060), + [anon_sym_DASH_GT] = ACTIONS(4060), + [anon_sym_with] = ACTIONS(4060), + [aux_sym_preproc_if_token3] = ACTIONS(4060), + [aux_sym_preproc_else_token1] = ACTIONS(4060), + [aux_sym_preproc_elif_token1] = ACTIONS(4060), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -490260,57 +489742,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(5146), - [anon_sym_LBRACK] = ACTIONS(5146), - [anon_sym_COLON] = ACTIONS(5146), - [anon_sym_COMMA] = ACTIONS(5146), - [anon_sym_RBRACK] = ACTIONS(5146), - [anon_sym_LPAREN] = ACTIONS(5146), - [anon_sym_RPAREN] = ACTIONS(5146), - [anon_sym_RBRACE] = ACTIONS(5146), - [anon_sym_LT] = ACTIONS(5148), - [anon_sym_GT] = ACTIONS(5148), - [anon_sym_in] = ACTIONS(5148), - [anon_sym_QMARK] = ACTIONS(5148), - [anon_sym_BANG] = ACTIONS(5148), - [anon_sym_PLUS_PLUS] = ACTIONS(5146), - [anon_sym_DASH_DASH] = ACTIONS(5146), - [anon_sym_PLUS] = ACTIONS(5148), - [anon_sym_DASH] = ACTIONS(5148), - [anon_sym_STAR] = ACTIONS(5146), - [anon_sym_SLASH] = ACTIONS(5148), - [anon_sym_PERCENT] = ACTIONS(5146), - [anon_sym_CARET] = ACTIONS(5146), - [anon_sym_PIPE] = ACTIONS(5148), - [anon_sym_AMP] = ACTIONS(5148), - [anon_sym_LT_LT] = ACTIONS(5146), - [anon_sym_GT_GT] = ACTIONS(5148), - [anon_sym_GT_GT_GT] = ACTIONS(5146), - [anon_sym_EQ_EQ] = ACTIONS(5146), - [anon_sym_BANG_EQ] = ACTIONS(5146), - [anon_sym_GT_EQ] = ACTIONS(5146), - [anon_sym_LT_EQ] = ACTIONS(5146), - [anon_sym_DOT] = ACTIONS(5148), - [anon_sym_EQ_GT] = ACTIONS(5146), - [anon_sym_switch] = ACTIONS(5146), - [anon_sym_when] = ACTIONS(5146), - [anon_sym_DOT_DOT] = ACTIONS(5146), - [anon_sym_and] = ACTIONS(5146), - [anon_sym_or] = ACTIONS(5146), - [anon_sym_AMP_AMP] = ACTIONS(5146), - [anon_sym_PIPE_PIPE] = ACTIONS(5146), - [anon_sym_QMARK_QMARK] = ACTIONS(5146), - [anon_sym_into] = ACTIONS(5146), - [anon_sym_on] = ACTIONS(5146), - [anon_sym_equals] = ACTIONS(5146), - [anon_sym_by] = ACTIONS(5146), - [anon_sym_as] = ACTIONS(5146), - [anon_sym_is] = ACTIONS(5146), - [anon_sym_DASH_GT] = ACTIONS(5146), - [anon_sym_with] = ACTIONS(5146), - [aux_sym_preproc_if_token3] = ACTIONS(5146), - [aux_sym_preproc_else_token1] = ACTIONS(5146), - [aux_sym_preproc_elif_token1] = ACTIONS(5146), + [anon_sym_SEMI] = ACTIONS(4973), + [anon_sym_LBRACK] = ACTIONS(4973), + [anon_sym_COLON] = ACTIONS(4973), + [anon_sym_COMMA] = ACTIONS(4973), + [anon_sym_RBRACK] = ACTIONS(4973), + [anon_sym_LPAREN] = ACTIONS(4973), + [anon_sym_RPAREN] = ACTIONS(4973), + [anon_sym_RBRACE] = ACTIONS(4973), + [anon_sym_LT] = ACTIONS(4975), + [anon_sym_GT] = ACTIONS(4975), + [anon_sym_in] = ACTIONS(4975), + [anon_sym_QMARK] = ACTIONS(4975), + [anon_sym_BANG] = ACTIONS(4975), + [anon_sym_PLUS_PLUS] = ACTIONS(4973), + [anon_sym_DASH_DASH] = ACTIONS(4973), + [anon_sym_PLUS] = ACTIONS(4975), + [anon_sym_DASH] = ACTIONS(4975), + [anon_sym_STAR] = ACTIONS(4973), + [anon_sym_SLASH] = ACTIONS(4975), + [anon_sym_PERCENT] = ACTIONS(4973), + [anon_sym_CARET] = ACTIONS(4973), + [anon_sym_PIPE] = ACTIONS(4975), + [anon_sym_AMP] = ACTIONS(4975), + [anon_sym_LT_LT] = ACTIONS(4973), + [anon_sym_GT_GT] = ACTIONS(4975), + [anon_sym_GT_GT_GT] = ACTIONS(4973), + [anon_sym_EQ_EQ] = ACTIONS(4973), + [anon_sym_BANG_EQ] = ACTIONS(4973), + [anon_sym_GT_EQ] = ACTIONS(4973), + [anon_sym_LT_EQ] = ACTIONS(4973), + [anon_sym_DOT] = ACTIONS(4975), + [anon_sym_EQ_GT] = ACTIONS(4973), + [anon_sym_switch] = ACTIONS(4973), + [anon_sym_when] = ACTIONS(4973), + [anon_sym_DOT_DOT] = ACTIONS(4973), + [anon_sym_and] = ACTIONS(4973), + [anon_sym_or] = ACTIONS(4973), + [anon_sym_AMP_AMP] = ACTIONS(4973), + [anon_sym_PIPE_PIPE] = ACTIONS(4973), + [anon_sym_QMARK_QMARK] = ACTIONS(4973), + [anon_sym_into] = ACTIONS(4973), + [anon_sym_on] = ACTIONS(4973), + [anon_sym_equals] = ACTIONS(4973), + [anon_sym_by] = ACTIONS(4973), + [anon_sym_as] = ACTIONS(4973), + [anon_sym_is] = ACTIONS(4973), + [anon_sym_DASH_GT] = ACTIONS(4973), + [anon_sym_with] = ACTIONS(4973), + [aux_sym_preproc_if_token3] = ACTIONS(4973), + [aux_sym_preproc_else_token1] = ACTIONS(4973), + [aux_sym_preproc_elif_token1] = ACTIONS(4973), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -490332,57 +489814,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(4902), - [anon_sym_LBRACK] = ACTIONS(4902), - [anon_sym_COLON] = ACTIONS(4902), - [anon_sym_COMMA] = ACTIONS(4902), - [anon_sym_RBRACK] = ACTIONS(4902), - [anon_sym_LPAREN] = ACTIONS(4902), - [anon_sym_RPAREN] = ACTIONS(4902), - [anon_sym_RBRACE] = ACTIONS(4902), - [anon_sym_LT] = ACTIONS(4904), - [anon_sym_GT] = ACTIONS(4904), - [anon_sym_in] = ACTIONS(4902), - [anon_sym_QMARK] = ACTIONS(4904), - [anon_sym_BANG] = ACTIONS(4904), - [anon_sym_PLUS_PLUS] = ACTIONS(4902), - [anon_sym_DASH_DASH] = ACTIONS(4902), - [anon_sym_PLUS] = ACTIONS(4904), - [anon_sym_DASH] = ACTIONS(4904), - [anon_sym_STAR] = ACTIONS(4902), - [anon_sym_SLASH] = ACTIONS(4904), - [anon_sym_PERCENT] = ACTIONS(4902), - [anon_sym_CARET] = ACTIONS(4902), - [anon_sym_PIPE] = ACTIONS(4904), - [anon_sym_AMP] = ACTIONS(4904), - [anon_sym_LT_LT] = ACTIONS(4902), - [anon_sym_GT_GT] = ACTIONS(4904), - [anon_sym_GT_GT_GT] = ACTIONS(4902), - [anon_sym_EQ_EQ] = ACTIONS(4902), - [anon_sym_BANG_EQ] = ACTIONS(4902), - [anon_sym_GT_EQ] = ACTIONS(4902), - [anon_sym_LT_EQ] = ACTIONS(4902), - [anon_sym_DOT] = ACTIONS(4904), - [anon_sym_EQ_GT] = ACTIONS(4902), - [anon_sym_switch] = ACTIONS(4902), - [anon_sym_when] = ACTIONS(4902), - [anon_sym_DOT_DOT] = ACTIONS(4902), - [anon_sym_and] = ACTIONS(4902), - [anon_sym_or] = ACTIONS(4902), - [anon_sym_AMP_AMP] = ACTIONS(4902), - [anon_sym_PIPE_PIPE] = ACTIONS(4902), - [anon_sym_QMARK_QMARK] = ACTIONS(4902), - [anon_sym_on] = ACTIONS(4902), - [anon_sym_equals] = ACTIONS(4902), - [anon_sym_by] = ACTIONS(4902), - [anon_sym_as] = ACTIONS(4902), - [anon_sym_is] = ACTIONS(4902), - [anon_sym_DASH_GT] = ACTIONS(4902), - [anon_sym_with] = ACTIONS(4902), - [aux_sym_raw_string_literal_token1] = ACTIONS(5363), - [aux_sym_preproc_if_token3] = ACTIONS(4902), - [aux_sym_preproc_else_token1] = ACTIONS(4902), - [aux_sym_preproc_elif_token1] = ACTIONS(4902), + [anon_sym_SEMI] = ACTIONS(4977), + [anon_sym_LBRACK] = ACTIONS(4977), + [anon_sym_COLON] = ACTIONS(4977), + [anon_sym_COMMA] = ACTIONS(4977), + [anon_sym_RBRACK] = ACTIONS(4977), + [anon_sym_LPAREN] = ACTIONS(4977), + [anon_sym_RPAREN] = ACTIONS(4977), + [anon_sym_RBRACE] = ACTIONS(4977), + [anon_sym_LT] = ACTIONS(4979), + [anon_sym_GT] = ACTIONS(4979), + [anon_sym_in] = ACTIONS(4979), + [anon_sym_QMARK] = ACTIONS(4979), + [anon_sym_BANG] = ACTIONS(4979), + [anon_sym_PLUS_PLUS] = ACTIONS(4977), + [anon_sym_DASH_DASH] = ACTIONS(4977), + [anon_sym_PLUS] = ACTIONS(4979), + [anon_sym_DASH] = ACTIONS(4979), + [anon_sym_STAR] = ACTIONS(4977), + [anon_sym_SLASH] = ACTIONS(4979), + [anon_sym_PERCENT] = ACTIONS(4977), + [anon_sym_CARET] = ACTIONS(4977), + [anon_sym_PIPE] = ACTIONS(4979), + [anon_sym_AMP] = ACTIONS(4979), + [anon_sym_LT_LT] = ACTIONS(4977), + [anon_sym_GT_GT] = ACTIONS(4979), + [anon_sym_GT_GT_GT] = ACTIONS(4977), + [anon_sym_EQ_EQ] = ACTIONS(4977), + [anon_sym_BANG_EQ] = ACTIONS(4977), + [anon_sym_GT_EQ] = ACTIONS(4977), + [anon_sym_LT_EQ] = ACTIONS(4977), + [anon_sym_DOT] = ACTIONS(4979), + [anon_sym_EQ_GT] = ACTIONS(4977), + [anon_sym_switch] = ACTIONS(4977), + [anon_sym_when] = ACTIONS(4977), + [anon_sym_DOT_DOT] = ACTIONS(4977), + [anon_sym_and] = ACTIONS(4977), + [anon_sym_or] = ACTIONS(4977), + [anon_sym_AMP_AMP] = ACTIONS(4977), + [anon_sym_PIPE_PIPE] = ACTIONS(4977), + [anon_sym_QMARK_QMARK] = ACTIONS(4977), + [anon_sym_into] = ACTIONS(4977), + [anon_sym_on] = ACTIONS(4977), + [anon_sym_equals] = ACTIONS(4977), + [anon_sym_by] = ACTIONS(4977), + [anon_sym_as] = ACTIONS(4977), + [anon_sym_is] = ACTIONS(4977), + [anon_sym_DASH_GT] = ACTIONS(4977), + [anon_sym_with] = ACTIONS(4977), + [aux_sym_preproc_if_token3] = ACTIONS(4977), + [aux_sym_preproc_else_token1] = ACTIONS(4977), + [aux_sym_preproc_elif_token1] = ACTIONS(4977), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -490404,57 +489886,57 @@ 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), - [sym__identifier_token] = ACTIONS(3482), - [anon_sym_extern] = ACTIONS(3482), - [anon_sym_alias] = ACTIONS(3482), - [anon_sym_global] = ACTIONS(3482), - [anon_sym_unsafe] = ACTIONS(3482), - [anon_sym_static] = ACTIONS(3482), - [anon_sym_LPAREN] = ACTIONS(5084), - [anon_sym_class] = ACTIONS(3482), - [anon_sym_ref] = ACTIONS(3482), - [anon_sym_struct] = ACTIONS(3482), - [anon_sym_enum] = ACTIONS(3482), - [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_scoped] = ACTIONS(3482), - [anon_sym_var] = ACTIONS(3482), - [sym_predefined_type] = ACTIONS(3482), - [anon_sym_yield] = ACTIONS(3482), - [anon_sym_when] = ACTIONS(3482), - [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_SEMI] = ACTIONS(2031), + [anon_sym_LBRACK] = ACTIONS(2031), + [anon_sym_COLON] = ACTIONS(2031), + [anon_sym_COMMA] = ACTIONS(2031), + [anon_sym_RBRACK] = ACTIONS(2031), + [anon_sym_LPAREN] = ACTIONS(5374), + [anon_sym_RPAREN] = ACTIONS(2031), + [anon_sym_RBRACE] = ACTIONS(2031), + [anon_sym_LT] = ACTIONS(2029), + [anon_sym_GT] = ACTIONS(2029), + [anon_sym_in] = ACTIONS(2029), + [anon_sym_QMARK] = ACTIONS(2029), + [anon_sym_BANG] = ACTIONS(2029), + [anon_sym_PLUS_PLUS] = ACTIONS(2031), + [anon_sym_DASH_DASH] = ACTIONS(2031), + [anon_sym_PLUS] = ACTIONS(2029), + [anon_sym_DASH] = ACTIONS(2029), + [anon_sym_STAR] = ACTIONS(2031), + [anon_sym_SLASH] = ACTIONS(2029), + [anon_sym_PERCENT] = ACTIONS(2031), + [anon_sym_CARET] = ACTIONS(2031), + [anon_sym_PIPE] = ACTIONS(2029), + [anon_sym_AMP] = ACTIONS(2029), + [anon_sym_LT_LT] = ACTIONS(2031), + [anon_sym_GT_GT] = ACTIONS(2029), + [anon_sym_GT_GT_GT] = ACTIONS(2031), + [anon_sym_EQ_EQ] = ACTIONS(2031), + [anon_sym_BANG_EQ] = ACTIONS(2031), + [anon_sym_GT_EQ] = ACTIONS(2031), + [anon_sym_LT_EQ] = ACTIONS(2031), + [anon_sym_DOT] = ACTIONS(2029), + [anon_sym_EQ_GT] = ACTIONS(2031), + [anon_sym_switch] = ACTIONS(2031), + [anon_sym_when] = ACTIONS(2031), + [anon_sym_DOT_DOT] = ACTIONS(2031), + [anon_sym_and] = ACTIONS(2031), + [anon_sym_or] = ACTIONS(2031), + [anon_sym_AMP_AMP] = ACTIONS(2031), + [anon_sym_PIPE_PIPE] = ACTIONS(2031), + [anon_sym_QMARK_QMARK] = ACTIONS(2031), + [anon_sym_into] = ACTIONS(2031), + [anon_sym_on] = ACTIONS(2031), + [anon_sym_equals] = ACTIONS(2031), + [anon_sym_by] = ACTIONS(2031), + [anon_sym_as] = ACTIONS(2031), + [anon_sym_is] = ACTIONS(2031), + [anon_sym_DASH_GT] = ACTIONS(2031), + [anon_sym_with] = ACTIONS(2031), + [aux_sym_preproc_if_token3] = ACTIONS(2031), + [aux_sym_preproc_else_token1] = ACTIONS(2031), + [aux_sym_preproc_elif_token1] = ACTIONS(2031), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -490476,57 +489958,57 @@ 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(5138), - [anon_sym_LBRACK] = ACTIONS(5138), - [anon_sym_COLON] = ACTIONS(5138), - [anon_sym_COMMA] = ACTIONS(5138), - [anon_sym_RBRACK] = ACTIONS(5138), - [anon_sym_LPAREN] = ACTIONS(5138), - [anon_sym_RPAREN] = ACTIONS(5138), - [anon_sym_RBRACE] = ACTIONS(5138), - [anon_sym_LT] = ACTIONS(5140), - [anon_sym_GT] = ACTIONS(5140), - [anon_sym_in] = ACTIONS(5140), - [anon_sym_QMARK] = ACTIONS(5140), - [anon_sym_BANG] = ACTIONS(5140), - [anon_sym_PLUS_PLUS] = ACTIONS(5138), - [anon_sym_DASH_DASH] = ACTIONS(5138), - [anon_sym_PLUS] = ACTIONS(5140), - [anon_sym_DASH] = ACTIONS(5140), - [anon_sym_STAR] = ACTIONS(5138), - [anon_sym_SLASH] = ACTIONS(5140), - [anon_sym_PERCENT] = ACTIONS(5138), - [anon_sym_CARET] = ACTIONS(5138), - [anon_sym_PIPE] = ACTIONS(5140), - [anon_sym_AMP] = ACTIONS(5140), - [anon_sym_LT_LT] = ACTIONS(5138), - [anon_sym_GT_GT] = ACTIONS(5140), - [anon_sym_GT_GT_GT] = ACTIONS(5138), - [anon_sym_EQ_EQ] = ACTIONS(5138), - [anon_sym_BANG_EQ] = ACTIONS(5138), - [anon_sym_GT_EQ] = ACTIONS(5138), - [anon_sym_LT_EQ] = ACTIONS(5138), - [anon_sym_DOT] = ACTIONS(5140), - [anon_sym_EQ_GT] = ACTIONS(5138), - [anon_sym_switch] = ACTIONS(5138), - [anon_sym_when] = ACTIONS(5138), - [anon_sym_DOT_DOT] = ACTIONS(5138), - [anon_sym_and] = ACTIONS(5138), - [anon_sym_or] = ACTIONS(5138), - [anon_sym_AMP_AMP] = ACTIONS(5138), - [anon_sym_PIPE_PIPE] = ACTIONS(5138), - [anon_sym_QMARK_QMARK] = ACTIONS(5138), - [anon_sym_into] = ACTIONS(5138), - [anon_sym_on] = ACTIONS(5138), - [anon_sym_equals] = ACTIONS(5138), - [anon_sym_by] = ACTIONS(5138), - [anon_sym_as] = ACTIONS(5138), - [anon_sym_is] = ACTIONS(5138), - [anon_sym_DASH_GT] = ACTIONS(5138), - [anon_sym_with] = ACTIONS(5138), - [aux_sym_preproc_if_token3] = ACTIONS(5138), - [aux_sym_preproc_else_token1] = ACTIONS(5138), - [aux_sym_preproc_elif_token1] = ACTIONS(5138), + [anon_sym_SEMI] = ACTIONS(4981), + [anon_sym_LBRACK] = ACTIONS(4981), + [anon_sym_COLON] = ACTIONS(4981), + [anon_sym_COMMA] = ACTIONS(4981), + [anon_sym_RBRACK] = ACTIONS(4981), + [anon_sym_LPAREN] = ACTIONS(4981), + [anon_sym_RPAREN] = ACTIONS(4981), + [anon_sym_RBRACE] = ACTIONS(4981), + [anon_sym_LT] = ACTIONS(4983), + [anon_sym_GT] = ACTIONS(4983), + [anon_sym_in] = ACTIONS(4983), + [anon_sym_QMARK] = ACTIONS(4983), + [anon_sym_BANG] = ACTIONS(4983), + [anon_sym_PLUS_PLUS] = ACTIONS(4981), + [anon_sym_DASH_DASH] = ACTIONS(4981), + [anon_sym_PLUS] = ACTIONS(4983), + [anon_sym_DASH] = ACTIONS(4983), + [anon_sym_STAR] = ACTIONS(4981), + [anon_sym_SLASH] = ACTIONS(4983), + [anon_sym_PERCENT] = ACTIONS(4981), + [anon_sym_CARET] = ACTIONS(4981), + [anon_sym_PIPE] = ACTIONS(4983), + [anon_sym_AMP] = ACTIONS(4983), + [anon_sym_LT_LT] = ACTIONS(4981), + [anon_sym_GT_GT] = ACTIONS(4983), + [anon_sym_GT_GT_GT] = ACTIONS(4981), + [anon_sym_EQ_EQ] = ACTIONS(4981), + [anon_sym_BANG_EQ] = ACTIONS(4981), + [anon_sym_GT_EQ] = ACTIONS(4981), + [anon_sym_LT_EQ] = ACTIONS(4981), + [anon_sym_DOT] = ACTIONS(4983), + [anon_sym_EQ_GT] = ACTIONS(4981), + [anon_sym_switch] = ACTIONS(4981), + [anon_sym_when] = ACTIONS(4981), + [anon_sym_DOT_DOT] = ACTIONS(4981), + [anon_sym_and] = ACTIONS(4981), + [anon_sym_or] = ACTIONS(4981), + [anon_sym_AMP_AMP] = ACTIONS(4981), + [anon_sym_PIPE_PIPE] = ACTIONS(4981), + [anon_sym_QMARK_QMARK] = ACTIONS(4981), + [anon_sym_into] = ACTIONS(4981), + [anon_sym_on] = ACTIONS(4981), + [anon_sym_equals] = ACTIONS(4981), + [anon_sym_by] = ACTIONS(4981), + [anon_sym_as] = ACTIONS(4981), + [anon_sym_is] = ACTIONS(4981), + [anon_sym_DASH_GT] = ACTIONS(4981), + [anon_sym_with] = ACTIONS(4981), + [aux_sym_preproc_if_token3] = ACTIONS(4981), + [aux_sym_preproc_else_token1] = ACTIONS(4981), + [aux_sym_preproc_elif_token1] = ACTIONS(4981), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -490548,57 +490030,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(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(3678), + [anon_sym_LBRACK] = ACTIONS(3678), + [anon_sym_COLON] = ACTIONS(3678), + [anon_sym_COMMA] = ACTIONS(3678), + [anon_sym_RBRACK] = ACTIONS(3678), + [anon_sym_LPAREN] = ACTIONS(3678), + [anon_sym_RPAREN] = ACTIONS(3678), + [anon_sym_LBRACE] = ACTIONS(3678), + [anon_sym_RBRACE] = ACTIONS(3678), + [anon_sym_LT] = ACTIONS(3669), + [anon_sym_GT] = ACTIONS(3669), + [anon_sym_in] = ACTIONS(3678), + [anon_sym_QMARK] = ACTIONS(3669), + [anon_sym_BANG] = ACTIONS(3669), + [anon_sym_PLUS_PLUS] = ACTIONS(3678), + [anon_sym_DASH_DASH] = ACTIONS(3678), + [anon_sym_PLUS] = ACTIONS(3669), + [anon_sym_DASH] = ACTIONS(3669), + [anon_sym_STAR] = ACTIONS(3678), + [anon_sym_SLASH] = ACTIONS(3669), + [anon_sym_PERCENT] = ACTIONS(3678), + [anon_sym_CARET] = ACTIONS(3678), + [anon_sym_PIPE] = ACTIONS(3669), + [anon_sym_AMP] = ACTIONS(3669), + [anon_sym_LT_LT] = ACTIONS(3678), + [anon_sym_GT_GT] = ACTIONS(3669), + [anon_sym_GT_GT_GT] = ACTIONS(3678), + [anon_sym_EQ_EQ] = ACTIONS(3678), + [anon_sym_BANG_EQ] = ACTIONS(3678), + [anon_sym_GT_EQ] = ACTIONS(3678), + [anon_sym_LT_EQ] = ACTIONS(3678), + [anon_sym_DOT] = ACTIONS(3669), + [anon_sym_EQ_GT] = ACTIONS(3678), + [anon_sym_switch] = ACTIONS(3678), + [anon_sym_when] = ACTIONS(3678), + [anon_sym_DOT_DOT] = ACTIONS(3678), + [anon_sym_and] = ACTIONS(3678), + [anon_sym_or] = ACTIONS(3678), + [anon_sym_AMP_AMP] = ACTIONS(3678), + [anon_sym_PIPE_PIPE] = ACTIONS(3678), + [anon_sym_QMARK_QMARK] = ACTIONS(3678), + [anon_sym_on] = ACTIONS(3678), + [anon_sym_equals] = ACTIONS(3678), + [anon_sym_by] = ACTIONS(3678), + [anon_sym_as] = ACTIONS(3678), + [anon_sym_is] = ACTIONS(3678), + [anon_sym_DASH_GT] = ACTIONS(3678), + [anon_sym_with] = ACTIONS(3678), + [aux_sym_preproc_if_token3] = ACTIONS(3678), + [aux_sym_preproc_else_token1] = ACTIONS(3678), + [aux_sym_preproc_elif_token1] = ACTIONS(3678), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -490620,57 +490102,57 @@ 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(2957), - [anon_sym_LBRACK] = ACTIONS(2957), - [anon_sym_COLON] = ACTIONS(2957), - [anon_sym_COMMA] = ACTIONS(2957), - [anon_sym_RBRACK] = ACTIONS(2957), - [anon_sym_LPAREN] = ACTIONS(2957), - [anon_sym_RPAREN] = ACTIONS(2957), - [anon_sym_RBRACE] = ACTIONS(2957), - [anon_sym_LT] = ACTIONS(2955), - [anon_sym_GT] = ACTIONS(2955), - [anon_sym_in] = ACTIONS(2955), - [anon_sym_QMARK] = ACTIONS(2955), - [anon_sym_BANG] = ACTIONS(2955), - [anon_sym_PLUS_PLUS] = ACTIONS(2957), - [anon_sym_DASH_DASH] = ACTIONS(2957), - [anon_sym_PLUS] = ACTIONS(2955), - [anon_sym_DASH] = ACTIONS(2955), - [anon_sym_STAR] = ACTIONS(2957), - [anon_sym_SLASH] = ACTIONS(2955), - [anon_sym_PERCENT] = ACTIONS(2957), - [anon_sym_CARET] = ACTIONS(2957), - [anon_sym_PIPE] = ACTIONS(2955), - [anon_sym_AMP] = ACTIONS(2955), - [anon_sym_LT_LT] = ACTIONS(2957), - [anon_sym_GT_GT] = ACTIONS(2955), - [anon_sym_GT_GT_GT] = ACTIONS(2957), - [anon_sym_EQ_EQ] = ACTIONS(2957), - [anon_sym_BANG_EQ] = ACTIONS(2957), - [anon_sym_GT_EQ] = ACTIONS(2957), - [anon_sym_LT_EQ] = ACTIONS(2957), - [anon_sym_DOT] = ACTIONS(2955), - [anon_sym_EQ_GT] = ACTIONS(2957), - [anon_sym_switch] = ACTIONS(2957), - [anon_sym_when] = ACTIONS(2957), - [anon_sym_DOT_DOT] = ACTIONS(2957), - [anon_sym_and] = ACTIONS(2957), - [anon_sym_or] = ACTIONS(2957), - [anon_sym_AMP_AMP] = ACTIONS(2957), - [anon_sym_PIPE_PIPE] = ACTIONS(2957), - [anon_sym_QMARK_QMARK] = ACTIONS(2957), - [anon_sym_into] = ACTIONS(2957), - [anon_sym_on] = ACTIONS(2957), - [anon_sym_equals] = ACTIONS(2957), - [anon_sym_by] = ACTIONS(2957), - [anon_sym_as] = ACTIONS(2957), - [anon_sym_is] = ACTIONS(2957), - [anon_sym_DASH_GT] = ACTIONS(2957), - [anon_sym_with] = ACTIONS(2957), - [aux_sym_preproc_if_token3] = ACTIONS(2957), - [aux_sym_preproc_else_token1] = ACTIONS(2957), - [aux_sym_preproc_elif_token1] = ACTIONS(2957), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -490692,57 +490174,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(3951), - [anon_sym_LBRACK] = ACTIONS(3951), - [anon_sym_COLON] = ACTIONS(3951), - [anon_sym_COMMA] = ACTIONS(3951), - [anon_sym_RBRACK] = ACTIONS(3951), - [anon_sym_LPAREN] = ACTIONS(3951), - [anon_sym_RPAREN] = ACTIONS(3951), - [anon_sym_LBRACE] = ACTIONS(3951), - [anon_sym_RBRACE] = ACTIONS(3951), - [anon_sym_LT] = ACTIONS(3949), - [anon_sym_GT] = ACTIONS(3949), - [anon_sym_in] = ACTIONS(3951), - [anon_sym_QMARK] = ACTIONS(3949), - [anon_sym_BANG] = ACTIONS(3949), - [anon_sym_PLUS_PLUS] = ACTIONS(3951), - [anon_sym_DASH_DASH] = ACTIONS(3951), - [anon_sym_PLUS] = ACTIONS(3949), - [anon_sym_DASH] = ACTIONS(3949), - [anon_sym_STAR] = ACTIONS(3951), - [anon_sym_SLASH] = ACTIONS(3949), - [anon_sym_PERCENT] = ACTIONS(3951), - [anon_sym_CARET] = ACTIONS(3951), - [anon_sym_PIPE] = ACTIONS(3949), - [anon_sym_AMP] = ACTIONS(3949), - [anon_sym_LT_LT] = ACTIONS(3951), - [anon_sym_GT_GT] = ACTIONS(3949), - [anon_sym_GT_GT_GT] = ACTIONS(3951), - [anon_sym_EQ_EQ] = ACTIONS(3951), - [anon_sym_BANG_EQ] = ACTIONS(3951), - [anon_sym_GT_EQ] = ACTIONS(3951), - [anon_sym_LT_EQ] = ACTIONS(3951), - [anon_sym_DOT] = ACTIONS(3949), - [anon_sym_EQ_GT] = ACTIONS(3951), - [anon_sym_switch] = ACTIONS(3951), - [anon_sym_when] = ACTIONS(3951), - [anon_sym_DOT_DOT] = ACTIONS(3951), - [anon_sym_and] = ACTIONS(3951), - [anon_sym_or] = ACTIONS(3951), - [anon_sym_AMP_AMP] = ACTIONS(3951), - [anon_sym_PIPE_PIPE] = ACTIONS(3951), - [anon_sym_QMARK_QMARK] = ACTIONS(3951), - [anon_sym_on] = ACTIONS(3951), - [anon_sym_equals] = ACTIONS(3951), - [anon_sym_by] = ACTIONS(3951), - [anon_sym_as] = ACTIONS(3951), - [anon_sym_is] = ACTIONS(3951), - [anon_sym_DASH_GT] = ACTIONS(3951), - [anon_sym_with] = ACTIONS(3951), - [aux_sym_preproc_if_token3] = ACTIONS(3951), - [aux_sym_preproc_else_token1] = ACTIONS(3951), - [aux_sym_preproc_elif_token1] = ACTIONS(3951), + [anon_sym_SEMI] = ACTIONS(4098), + [anon_sym_LBRACK] = ACTIONS(4098), + [anon_sym_COLON] = ACTIONS(4098), + [anon_sym_COMMA] = ACTIONS(4098), + [anon_sym_RBRACK] = ACTIONS(4098), + [anon_sym_LPAREN] = ACTIONS(4098), + [anon_sym_RPAREN] = ACTIONS(4098), + [anon_sym_LBRACE] = ACTIONS(4098), + [anon_sym_RBRACE] = ACTIONS(4098), + [anon_sym_LT] = ACTIONS(4096), + [anon_sym_GT] = ACTIONS(4096), + [anon_sym_in] = ACTIONS(4098), + [anon_sym_QMARK] = ACTIONS(4096), + [anon_sym_BANG] = ACTIONS(4096), + [anon_sym_PLUS_PLUS] = ACTIONS(4098), + [anon_sym_DASH_DASH] = ACTIONS(4098), + [anon_sym_PLUS] = ACTIONS(4096), + [anon_sym_DASH] = ACTIONS(4096), + [anon_sym_STAR] = ACTIONS(4098), + [anon_sym_SLASH] = ACTIONS(4096), + [anon_sym_PERCENT] = ACTIONS(4098), + [anon_sym_CARET] = ACTIONS(4098), + [anon_sym_PIPE] = ACTIONS(4096), + [anon_sym_AMP] = ACTIONS(4096), + [anon_sym_LT_LT] = ACTIONS(4098), + [anon_sym_GT_GT] = ACTIONS(4096), + [anon_sym_GT_GT_GT] = ACTIONS(4098), + [anon_sym_EQ_EQ] = ACTIONS(4098), + [anon_sym_BANG_EQ] = ACTIONS(4098), + [anon_sym_GT_EQ] = ACTIONS(4098), + [anon_sym_LT_EQ] = ACTIONS(4098), + [anon_sym_DOT] = ACTIONS(4096), + [anon_sym_EQ_GT] = ACTIONS(4098), + [anon_sym_switch] = ACTIONS(4098), + [anon_sym_when] = ACTIONS(4098), + [anon_sym_DOT_DOT] = ACTIONS(4098), + [anon_sym_and] = ACTIONS(4098), + [anon_sym_or] = ACTIONS(4098), + [anon_sym_AMP_AMP] = ACTIONS(4098), + [anon_sym_PIPE_PIPE] = ACTIONS(4098), + [anon_sym_QMARK_QMARK] = ACTIONS(4098), + [anon_sym_on] = ACTIONS(4098), + [anon_sym_equals] = ACTIONS(4098), + [anon_sym_by] = ACTIONS(4098), + [anon_sym_as] = ACTIONS(4098), + [anon_sym_is] = ACTIONS(4098), + [anon_sym_DASH_GT] = ACTIONS(4098), + [anon_sym_with] = ACTIONS(4098), + [aux_sym_preproc_if_token3] = ACTIONS(4098), + [aux_sym_preproc_else_token1] = ACTIONS(4098), + [aux_sym_preproc_elif_token1] = ACTIONS(4098), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -490764,57 +490246,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(4010), - [anon_sym_LBRACK] = ACTIONS(4010), - [anon_sym_COLON] = ACTIONS(4010), - [anon_sym_COMMA] = ACTIONS(4010), - [anon_sym_RBRACK] = ACTIONS(4010), - [anon_sym_LPAREN] = ACTIONS(4010), - [anon_sym_RPAREN] = ACTIONS(4010), - [anon_sym_LBRACE] = ACTIONS(4010), - [anon_sym_RBRACE] = ACTIONS(4010), - [anon_sym_LT] = ACTIONS(4008), - [anon_sym_GT] = ACTIONS(4008), - [anon_sym_in] = ACTIONS(4010), - [anon_sym_QMARK] = ACTIONS(4008), - [anon_sym_BANG] = ACTIONS(4008), - [anon_sym_PLUS_PLUS] = ACTIONS(4010), - [anon_sym_DASH_DASH] = ACTIONS(4010), - [anon_sym_PLUS] = ACTIONS(4008), - [anon_sym_DASH] = ACTIONS(4008), - [anon_sym_STAR] = ACTIONS(4010), - [anon_sym_SLASH] = ACTIONS(4008), - [anon_sym_PERCENT] = ACTIONS(4010), - [anon_sym_CARET] = ACTIONS(4010), - [anon_sym_PIPE] = ACTIONS(4008), - [anon_sym_AMP] = ACTIONS(4008), - [anon_sym_LT_LT] = ACTIONS(4010), - [anon_sym_GT_GT] = ACTIONS(4008), - [anon_sym_GT_GT_GT] = ACTIONS(4010), - [anon_sym_EQ_EQ] = ACTIONS(4010), - [anon_sym_BANG_EQ] = ACTIONS(4010), - [anon_sym_GT_EQ] = ACTIONS(4010), - [anon_sym_LT_EQ] = ACTIONS(4010), - [anon_sym_DOT] = ACTIONS(4008), - [anon_sym_EQ_GT] = ACTIONS(4010), - [anon_sym_switch] = ACTIONS(4010), - [anon_sym_when] = ACTIONS(4010), - [anon_sym_DOT_DOT] = ACTIONS(4010), - [anon_sym_and] = ACTIONS(4010), - [anon_sym_or] = ACTIONS(4010), - [anon_sym_AMP_AMP] = ACTIONS(4010), - [anon_sym_PIPE_PIPE] = ACTIONS(4010), - [anon_sym_QMARK_QMARK] = ACTIONS(4010), - [anon_sym_on] = ACTIONS(4010), - [anon_sym_equals] = ACTIONS(4010), - [anon_sym_by] = ACTIONS(4010), - [anon_sym_as] = ACTIONS(4010), - [anon_sym_is] = ACTIONS(4010), - [anon_sym_DASH_GT] = ACTIONS(4010), - [anon_sym_with] = ACTIONS(4010), - [aux_sym_preproc_if_token3] = ACTIONS(4010), - [aux_sym_preproc_else_token1] = ACTIONS(4010), - [aux_sym_preproc_elif_token1] = ACTIONS(4010), + [anon_sym_SEMI] = ACTIONS(4072), + [anon_sym_LBRACK] = ACTIONS(4072), + [anon_sym_COLON] = ACTIONS(4072), + [anon_sym_COMMA] = ACTIONS(4072), + [anon_sym_RBRACK] = ACTIONS(4072), + [anon_sym_LPAREN] = ACTIONS(4072), + [anon_sym_RPAREN] = ACTIONS(4072), + [anon_sym_LBRACE] = ACTIONS(4072), + [anon_sym_RBRACE] = ACTIONS(4072), + [anon_sym_LT] = ACTIONS(4070), + [anon_sym_GT] = ACTIONS(4070), + [anon_sym_in] = ACTIONS(4072), + [anon_sym_QMARK] = ACTIONS(4070), + [anon_sym_BANG] = ACTIONS(4070), + [anon_sym_PLUS_PLUS] = ACTIONS(4072), + [anon_sym_DASH_DASH] = ACTIONS(4072), + [anon_sym_PLUS] = ACTIONS(4070), + [anon_sym_DASH] = ACTIONS(4070), + [anon_sym_STAR] = ACTIONS(4072), + [anon_sym_SLASH] = ACTIONS(4070), + [anon_sym_PERCENT] = ACTIONS(4072), + [anon_sym_CARET] = ACTIONS(4072), + [anon_sym_PIPE] = ACTIONS(4070), + [anon_sym_AMP] = ACTIONS(4070), + [anon_sym_LT_LT] = ACTIONS(4072), + [anon_sym_GT_GT] = ACTIONS(4070), + [anon_sym_GT_GT_GT] = ACTIONS(4072), + [anon_sym_EQ_EQ] = ACTIONS(4072), + [anon_sym_BANG_EQ] = ACTIONS(4072), + [anon_sym_GT_EQ] = ACTIONS(4072), + [anon_sym_LT_EQ] = ACTIONS(4072), + [anon_sym_DOT] = ACTIONS(4070), + [anon_sym_EQ_GT] = ACTIONS(4072), + [anon_sym_switch] = ACTIONS(4072), + [anon_sym_when] = ACTIONS(4072), + [anon_sym_DOT_DOT] = ACTIONS(4072), + [anon_sym_and] = ACTIONS(4072), + [anon_sym_or] = ACTIONS(4072), + [anon_sym_AMP_AMP] = ACTIONS(4072), + [anon_sym_PIPE_PIPE] = ACTIONS(4072), + [anon_sym_QMARK_QMARK] = ACTIONS(4072), + [anon_sym_on] = ACTIONS(4072), + [anon_sym_equals] = ACTIONS(4072), + [anon_sym_by] = ACTIONS(4072), + [anon_sym_as] = ACTIONS(4072), + [anon_sym_is] = ACTIONS(4072), + [anon_sym_DASH_GT] = ACTIONS(4072), + [anon_sym_with] = ACTIONS(4072), + [aux_sym_preproc_if_token3] = ACTIONS(4072), + [aux_sym_preproc_else_token1] = ACTIONS(4072), + [aux_sym_preproc_elif_token1] = ACTIONS(4072), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -490836,57 +490318,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(1981), - [anon_sym_LBRACK] = ACTIONS(1981), - [anon_sym_COLON] = ACTIONS(1981), - [anon_sym_COMMA] = ACTIONS(1981), - [anon_sym_RBRACK] = ACTIONS(1981), - [anon_sym_LPAREN] = ACTIONS(5365), - [anon_sym_RPAREN] = ACTIONS(1981), - [anon_sym_RBRACE] = ACTIONS(1981), - [anon_sym_LT] = ACTIONS(1979), - [anon_sym_GT] = ACTIONS(1979), - [anon_sym_in] = ACTIONS(1979), - [anon_sym_QMARK] = ACTIONS(1979), - [anon_sym_BANG] = ACTIONS(1979), - [anon_sym_PLUS_PLUS] = ACTIONS(1981), - [anon_sym_DASH_DASH] = ACTIONS(1981), - [anon_sym_PLUS] = ACTIONS(1979), - [anon_sym_DASH] = ACTIONS(1979), - [anon_sym_STAR] = ACTIONS(1981), - [anon_sym_SLASH] = ACTIONS(1979), - [anon_sym_PERCENT] = ACTIONS(1981), - [anon_sym_CARET] = ACTIONS(1981), - [anon_sym_PIPE] = ACTIONS(1979), - [anon_sym_AMP] = ACTIONS(1979), - [anon_sym_LT_LT] = ACTIONS(1981), - [anon_sym_GT_GT] = ACTIONS(1979), - [anon_sym_GT_GT_GT] = ACTIONS(1981), - [anon_sym_EQ_EQ] = ACTIONS(1981), - [anon_sym_BANG_EQ] = ACTIONS(1981), - [anon_sym_GT_EQ] = ACTIONS(1981), - [anon_sym_LT_EQ] = ACTIONS(1981), - [anon_sym_DOT] = ACTIONS(1979), - [anon_sym_EQ_GT] = ACTIONS(1981), - [anon_sym_switch] = ACTIONS(1981), - [anon_sym_when] = ACTIONS(1981), - [anon_sym_DOT_DOT] = ACTIONS(1981), - [anon_sym_and] = ACTIONS(1981), - [anon_sym_or] = ACTIONS(1981), - [anon_sym_AMP_AMP] = ACTIONS(1981), - [anon_sym_PIPE_PIPE] = ACTIONS(1981), - [anon_sym_QMARK_QMARK] = ACTIONS(1981), - [anon_sym_into] = ACTIONS(1981), - [anon_sym_on] = ACTIONS(1981), - [anon_sym_equals] = ACTIONS(1981), - [anon_sym_by] = ACTIONS(1981), - [anon_sym_as] = ACTIONS(1981), - [anon_sym_is] = ACTIONS(1981), - [anon_sym_DASH_GT] = ACTIONS(1981), - [anon_sym_with] = ACTIONS(1981), - [aux_sym_preproc_if_token3] = ACTIONS(1981), - [aux_sym_preproc_else_token1] = ACTIONS(1981), - [aux_sym_preproc_elif_token1] = ACTIONS(1981), + [anon_sym_SEMI] = ACTIONS(4241), + [anon_sym_LBRACK] = ACTIONS(5376), + [anon_sym_COLON] = ACTIONS(4241), + [anon_sym_COMMA] = ACTIONS(4241), + [anon_sym_RBRACK] = ACTIONS(4241), + [anon_sym_LPAREN] = ACTIONS(5376), + [anon_sym_RPAREN] = ACTIONS(4241), + [anon_sym_RBRACE] = ACTIONS(4241), + [anon_sym_LT] = ACTIONS(5379), + [anon_sym_GT] = ACTIONS(5379), + [anon_sym_in] = ACTIONS(4249), + [anon_sym_QMARK] = ACTIONS(5379), + [anon_sym_BANG] = ACTIONS(5379), + [anon_sym_PLUS_PLUS] = ACTIONS(5376), + [anon_sym_DASH_DASH] = ACTIONS(5376), + [anon_sym_PLUS] = ACTIONS(5379), + [anon_sym_DASH] = ACTIONS(5379), + [anon_sym_STAR] = ACTIONS(5376), + [anon_sym_SLASH] = ACTIONS(5379), + [anon_sym_PERCENT] = ACTIONS(5376), + [anon_sym_CARET] = ACTIONS(5376), + [anon_sym_PIPE] = ACTIONS(5379), + [anon_sym_AMP] = ACTIONS(5379), + [anon_sym_LT_LT] = ACTIONS(5376), + [anon_sym_GT_GT] = ACTIONS(5379), + [anon_sym_GT_GT_GT] = ACTIONS(5376), + [anon_sym_EQ_EQ] = ACTIONS(5376), + [anon_sym_BANG_EQ] = ACTIONS(5376), + [anon_sym_GT_EQ] = ACTIONS(5376), + [anon_sym_LT_EQ] = ACTIONS(5376), + [anon_sym_DOT] = ACTIONS(5379), + [anon_sym_EQ_GT] = ACTIONS(4241), + [anon_sym_switch] = ACTIONS(5376), + [anon_sym_when] = ACTIONS(4241), + [anon_sym_DOT_DOT] = ACTIONS(5376), + [anon_sym_and] = ACTIONS(4241), + [anon_sym_or] = ACTIONS(4241), + [anon_sym_AMP_AMP] = ACTIONS(5376), + [anon_sym_PIPE_PIPE] = ACTIONS(5376), + [anon_sym_QMARK_QMARK] = ACTIONS(5376), + [anon_sym_into] = ACTIONS(4241), + [anon_sym_on] = ACTIONS(4241), + [anon_sym_equals] = ACTIONS(4241), + [anon_sym_by] = ACTIONS(4241), + [anon_sym_as] = ACTIONS(5376), + [anon_sym_is] = ACTIONS(5376), + [anon_sym_DASH_GT] = ACTIONS(5376), + [anon_sym_with] = ACTIONS(5376), + [aux_sym_preproc_if_token3] = ACTIONS(4241), + [aux_sym_preproc_else_token1] = ACTIONS(4241), + [aux_sym_preproc_elif_token1] = ACTIONS(4241), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -490908,57 +490390,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(4106), - [anon_sym_LBRACK] = ACTIONS(4106), - [anon_sym_COLON] = ACTIONS(4106), - [anon_sym_COMMA] = ACTIONS(4106), - [anon_sym_RBRACK] = ACTIONS(4106), - [anon_sym_LPAREN] = ACTIONS(4106), - [anon_sym_RPAREN] = ACTIONS(4106), - [anon_sym_LBRACE] = ACTIONS(4106), - [anon_sym_RBRACE] = ACTIONS(4106), - [anon_sym_LT] = ACTIONS(4104), - [anon_sym_GT] = ACTIONS(4104), - [anon_sym_in] = ACTIONS(4106), - [anon_sym_QMARK] = ACTIONS(4104), - [anon_sym_BANG] = ACTIONS(4104), - [anon_sym_PLUS_PLUS] = ACTIONS(4106), - [anon_sym_DASH_DASH] = ACTIONS(4106), - [anon_sym_PLUS] = ACTIONS(4104), - [anon_sym_DASH] = ACTIONS(4104), - [anon_sym_STAR] = ACTIONS(4106), - [anon_sym_SLASH] = ACTIONS(4104), - [anon_sym_PERCENT] = ACTIONS(4106), - [anon_sym_CARET] = ACTIONS(4106), - [anon_sym_PIPE] = ACTIONS(4104), - [anon_sym_AMP] = ACTIONS(4104), - [anon_sym_LT_LT] = ACTIONS(4106), - [anon_sym_GT_GT] = ACTIONS(4104), - [anon_sym_GT_GT_GT] = ACTIONS(4106), - [anon_sym_EQ_EQ] = ACTIONS(4106), - [anon_sym_BANG_EQ] = ACTIONS(4106), - [anon_sym_GT_EQ] = ACTIONS(4106), - [anon_sym_LT_EQ] = ACTIONS(4106), - [anon_sym_DOT] = ACTIONS(4104), - [anon_sym_EQ_GT] = ACTIONS(4106), - [anon_sym_switch] = ACTIONS(4106), - [anon_sym_when] = ACTIONS(4106), - [anon_sym_DOT_DOT] = ACTIONS(4106), - [anon_sym_and] = ACTIONS(4106), - [anon_sym_or] = ACTIONS(4106), - [anon_sym_AMP_AMP] = ACTIONS(4106), - [anon_sym_PIPE_PIPE] = ACTIONS(4106), - [anon_sym_QMARK_QMARK] = ACTIONS(4106), - [anon_sym_on] = ACTIONS(4106), - [anon_sym_equals] = ACTIONS(4106), - [anon_sym_by] = ACTIONS(4106), - [anon_sym_as] = ACTIONS(4106), - [anon_sym_is] = ACTIONS(4106), - [anon_sym_DASH_GT] = ACTIONS(4106), - [anon_sym_with] = ACTIONS(4106), - [aux_sym_preproc_if_token3] = ACTIONS(4106), - [aux_sym_preproc_else_token1] = ACTIONS(4106), - [aux_sym_preproc_elif_token1] = ACTIONS(4106), + [anon_sym_SEMI] = ACTIONS(4241), + [anon_sym_LBRACK] = ACTIONS(5382), + [anon_sym_COLON] = ACTIONS(4241), + [anon_sym_COMMA] = ACTIONS(4241), + [anon_sym_RBRACK] = ACTIONS(4241), + [anon_sym_LPAREN] = ACTIONS(5382), + [anon_sym_RPAREN] = ACTIONS(4241), + [anon_sym_RBRACE] = ACTIONS(4241), + [anon_sym_LT] = ACTIONS(5385), + [anon_sym_GT] = ACTIONS(5385), + [anon_sym_in] = ACTIONS(4249), + [anon_sym_QMARK] = ACTIONS(5385), + [anon_sym_BANG] = ACTIONS(5385), + [anon_sym_PLUS_PLUS] = ACTIONS(5382), + [anon_sym_DASH_DASH] = ACTIONS(5382), + [anon_sym_PLUS] = ACTIONS(5385), + [anon_sym_DASH] = ACTIONS(5385), + [anon_sym_STAR] = ACTIONS(5382), + [anon_sym_SLASH] = ACTIONS(5385), + [anon_sym_PERCENT] = ACTIONS(5382), + [anon_sym_CARET] = ACTIONS(5382), + [anon_sym_PIPE] = ACTIONS(5385), + [anon_sym_AMP] = ACTIONS(5385), + [anon_sym_LT_LT] = ACTIONS(5382), + [anon_sym_GT_GT] = ACTIONS(5385), + [anon_sym_GT_GT_GT] = ACTIONS(5382), + [anon_sym_EQ_EQ] = ACTIONS(5382), + [anon_sym_BANG_EQ] = ACTIONS(5382), + [anon_sym_GT_EQ] = ACTIONS(5382), + [anon_sym_LT_EQ] = ACTIONS(5382), + [anon_sym_DOT] = ACTIONS(5385), + [anon_sym_EQ_GT] = ACTIONS(4241), + [anon_sym_switch] = ACTIONS(5382), + [anon_sym_when] = ACTIONS(4241), + [anon_sym_DOT_DOT] = ACTIONS(5382), + [anon_sym_and] = ACTIONS(4241), + [anon_sym_or] = ACTIONS(4241), + [anon_sym_AMP_AMP] = ACTIONS(5382), + [anon_sym_PIPE_PIPE] = ACTIONS(5382), + [anon_sym_QMARK_QMARK] = ACTIONS(5382), + [anon_sym_into] = ACTIONS(4241), + [anon_sym_on] = ACTIONS(4241), + [anon_sym_equals] = ACTIONS(4241), + [anon_sym_by] = ACTIONS(4241), + [anon_sym_as] = ACTIONS(5382), + [anon_sym_is] = ACTIONS(5382), + [anon_sym_DASH_GT] = ACTIONS(5382), + [anon_sym_with] = ACTIONS(5382), + [aux_sym_preproc_if_token3] = ACTIONS(4241), + [aux_sym_preproc_else_token1] = ACTIONS(4241), + [aux_sym_preproc_elif_token1] = ACTIONS(4241), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -490980,57 +490462,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(4860), - [anon_sym_LBRACK] = ACTIONS(4860), - [anon_sym_COLON] = ACTIONS(4860), - [anon_sym_COMMA] = ACTIONS(4860), - [anon_sym_RBRACK] = ACTIONS(4860), - [anon_sym_LPAREN] = ACTIONS(4860), - [anon_sym_RPAREN] = ACTIONS(4860), - [anon_sym_RBRACE] = ACTIONS(4860), - [anon_sym_LT] = ACTIONS(4862), - [anon_sym_GT] = ACTIONS(4862), - [anon_sym_in] = ACTIONS(4862), - [anon_sym_QMARK] = ACTIONS(4862), - [anon_sym_BANG] = ACTIONS(4862), - [anon_sym_PLUS_PLUS] = ACTIONS(4860), - [anon_sym_DASH_DASH] = ACTIONS(4860), - [anon_sym_PLUS] = ACTIONS(4862), - [anon_sym_DASH] = ACTIONS(4862), - [anon_sym_STAR] = ACTIONS(4860), - [anon_sym_SLASH] = ACTIONS(4862), - [anon_sym_PERCENT] = ACTIONS(4860), - [anon_sym_CARET] = ACTIONS(4860), - [anon_sym_PIPE] = ACTIONS(4862), - [anon_sym_AMP] = ACTIONS(4862), - [anon_sym_LT_LT] = ACTIONS(4860), - [anon_sym_GT_GT] = ACTIONS(4862), - [anon_sym_GT_GT_GT] = ACTIONS(4860), - [anon_sym_EQ_EQ] = ACTIONS(4860), - [anon_sym_BANG_EQ] = ACTIONS(4860), - [anon_sym_GT_EQ] = ACTIONS(4860), - [anon_sym_LT_EQ] = ACTIONS(4860), - [anon_sym_DOT] = ACTIONS(4862), - [anon_sym_EQ_GT] = ACTIONS(4860), - [anon_sym_switch] = ACTIONS(4860), - [anon_sym_when] = ACTIONS(4860), - [anon_sym_DOT_DOT] = ACTIONS(4860), - [anon_sym_and] = ACTIONS(4860), - [anon_sym_or] = ACTIONS(4860), - [anon_sym_AMP_AMP] = ACTIONS(4860), - [anon_sym_PIPE_PIPE] = ACTIONS(4860), - [anon_sym_QMARK_QMARK] = ACTIONS(4860), - [anon_sym_into] = ACTIONS(4860), - [anon_sym_on] = ACTIONS(4860), - [anon_sym_equals] = ACTIONS(4860), - [anon_sym_by] = ACTIONS(4860), - [anon_sym_as] = ACTIONS(4860), - [anon_sym_is] = ACTIONS(4860), - [anon_sym_DASH_GT] = ACTIONS(4860), - [anon_sym_with] = ACTIONS(4860), - [aux_sym_preproc_if_token3] = ACTIONS(4860), - [aux_sym_preproc_else_token1] = ACTIONS(4860), - [aux_sym_preproc_elif_token1] = ACTIONS(4860), + [anon_sym_SEMI] = ACTIONS(4903), + [anon_sym_LBRACK] = ACTIONS(4903), + [anon_sym_COLON] = ACTIONS(4903), + [anon_sym_COMMA] = ACTIONS(4903), + [anon_sym_RBRACK] = ACTIONS(4903), + [anon_sym_LPAREN] = ACTIONS(4903), + [anon_sym_RPAREN] = ACTIONS(4903), + [anon_sym_RBRACE] = ACTIONS(4903), + [anon_sym_LT] = ACTIONS(4905), + [anon_sym_GT] = ACTIONS(4905), + [anon_sym_in] = ACTIONS(4903), + [anon_sym_QMARK] = ACTIONS(4905), + [anon_sym_BANG] = ACTIONS(4905), + [anon_sym_PLUS_PLUS] = ACTIONS(4903), + [anon_sym_DASH_DASH] = ACTIONS(4903), + [anon_sym_PLUS] = ACTIONS(4905), + [anon_sym_DASH] = ACTIONS(4905), + [anon_sym_STAR] = ACTIONS(4903), + [anon_sym_SLASH] = ACTIONS(4905), + [anon_sym_PERCENT] = ACTIONS(4903), + [anon_sym_CARET] = ACTIONS(4903), + [anon_sym_PIPE] = ACTIONS(4905), + [anon_sym_AMP] = ACTIONS(4905), + [anon_sym_LT_LT] = ACTIONS(4903), + [anon_sym_GT_GT] = ACTIONS(4905), + [anon_sym_GT_GT_GT] = ACTIONS(4903), + [anon_sym_EQ_EQ] = ACTIONS(4903), + [anon_sym_BANG_EQ] = ACTIONS(4903), + [anon_sym_GT_EQ] = ACTIONS(4903), + [anon_sym_LT_EQ] = ACTIONS(4903), + [anon_sym_DOT] = ACTIONS(4905), + [anon_sym_EQ_GT] = ACTIONS(4903), + [anon_sym_switch] = ACTIONS(4903), + [anon_sym_when] = ACTIONS(4903), + [anon_sym_DOT_DOT] = ACTIONS(4903), + [anon_sym_and] = ACTIONS(4903), + [anon_sym_or] = ACTIONS(4903), + [anon_sym_AMP_AMP] = ACTIONS(4903), + [anon_sym_PIPE_PIPE] = ACTIONS(4903), + [anon_sym_QMARK_QMARK] = ACTIONS(4903), + [anon_sym_on] = ACTIONS(4903), + [anon_sym_equals] = ACTIONS(4903), + [anon_sym_by] = ACTIONS(4903), + [anon_sym_as] = ACTIONS(4903), + [anon_sym_is] = ACTIONS(4903), + [anon_sym_DASH_GT] = ACTIONS(4903), + [anon_sym_with] = ACTIONS(4903), + [aux_sym_raw_string_literal_token1] = ACTIONS(5388), + [aux_sym_preproc_if_token3] = ACTIONS(4903), + [aux_sym_preproc_else_token1] = ACTIONS(4903), + [aux_sym_preproc_elif_token1] = ACTIONS(4903), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -491052,57 +490534,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(5068), - [anon_sym_LBRACK] = ACTIONS(5068), - [anon_sym_COLON] = ACTIONS(5068), - [anon_sym_COMMA] = ACTIONS(5068), - [anon_sym_RBRACK] = ACTIONS(5068), - [anon_sym_LPAREN] = ACTIONS(5068), - [anon_sym_RPAREN] = ACTIONS(5068), - [anon_sym_RBRACE] = ACTIONS(5068), - [anon_sym_LT] = ACTIONS(5070), - [anon_sym_GT] = ACTIONS(5070), - [anon_sym_in] = ACTIONS(5070), - [anon_sym_QMARK] = ACTIONS(5070), - [anon_sym_BANG] = ACTIONS(5070), - [anon_sym_PLUS_PLUS] = ACTIONS(5068), - [anon_sym_DASH_DASH] = ACTIONS(5068), - [anon_sym_PLUS] = ACTIONS(5070), - [anon_sym_DASH] = ACTIONS(5070), - [anon_sym_STAR] = ACTIONS(5068), - [anon_sym_SLASH] = ACTIONS(5070), - [anon_sym_PERCENT] = ACTIONS(5068), - [anon_sym_CARET] = ACTIONS(5068), - [anon_sym_PIPE] = ACTIONS(5070), - [anon_sym_AMP] = ACTIONS(5070), - [anon_sym_LT_LT] = ACTIONS(5068), - [anon_sym_GT_GT] = ACTIONS(5070), - [anon_sym_GT_GT_GT] = ACTIONS(5068), - [anon_sym_EQ_EQ] = ACTIONS(5068), - [anon_sym_BANG_EQ] = ACTIONS(5068), - [anon_sym_GT_EQ] = ACTIONS(5068), - [anon_sym_LT_EQ] = ACTIONS(5068), - [anon_sym_DOT] = ACTIONS(5070), - [anon_sym_EQ_GT] = ACTIONS(5068), - [anon_sym_switch] = ACTIONS(5068), - [anon_sym_when] = ACTIONS(5068), - [anon_sym_DOT_DOT] = ACTIONS(5068), - [anon_sym_and] = ACTIONS(5068), - [anon_sym_or] = ACTIONS(5068), - [anon_sym_AMP_AMP] = ACTIONS(5068), - [anon_sym_PIPE_PIPE] = ACTIONS(5068), - [anon_sym_QMARK_QMARK] = ACTIONS(5068), - [anon_sym_into] = ACTIONS(5068), - [anon_sym_on] = ACTIONS(5068), - [anon_sym_equals] = ACTIONS(5068), - [anon_sym_by] = ACTIONS(5068), - [anon_sym_as] = ACTIONS(5068), - [anon_sym_is] = ACTIONS(5068), - [anon_sym_DASH_GT] = ACTIONS(5068), - [anon_sym_with] = ACTIONS(5068), - [aux_sym_preproc_if_token3] = ACTIONS(5068), - [aux_sym_preproc_else_token1] = ACTIONS(5068), - [aux_sym_preproc_elif_token1] = ACTIONS(5068), + [anon_sym_SEMI] = ACTIONS(4992), + [anon_sym_LBRACK] = ACTIONS(4992), + [anon_sym_COLON] = ACTIONS(4992), + [anon_sym_COMMA] = ACTIONS(4992), + [anon_sym_RBRACK] = ACTIONS(4992), + [anon_sym_LPAREN] = ACTIONS(4992), + [anon_sym_RPAREN] = ACTIONS(4992), + [anon_sym_RBRACE] = ACTIONS(4992), + [anon_sym_LT] = ACTIONS(4994), + [anon_sym_GT] = ACTIONS(4994), + [anon_sym_in] = ACTIONS(4994), + [anon_sym_QMARK] = ACTIONS(4994), + [anon_sym_BANG] = ACTIONS(4994), + [anon_sym_PLUS_PLUS] = ACTIONS(4992), + [anon_sym_DASH_DASH] = ACTIONS(4992), + [anon_sym_PLUS] = ACTIONS(4994), + [anon_sym_DASH] = ACTIONS(4994), + [anon_sym_STAR] = ACTIONS(4992), + [anon_sym_SLASH] = ACTIONS(4994), + [anon_sym_PERCENT] = ACTIONS(4992), + [anon_sym_CARET] = ACTIONS(4992), + [anon_sym_PIPE] = ACTIONS(4994), + [anon_sym_AMP] = ACTIONS(4994), + [anon_sym_LT_LT] = ACTIONS(4992), + [anon_sym_GT_GT] = ACTIONS(4994), + [anon_sym_GT_GT_GT] = ACTIONS(4992), + [anon_sym_EQ_EQ] = ACTIONS(4992), + [anon_sym_BANG_EQ] = ACTIONS(4992), + [anon_sym_GT_EQ] = ACTIONS(4992), + [anon_sym_LT_EQ] = ACTIONS(4992), + [anon_sym_DOT] = ACTIONS(4994), + [anon_sym_EQ_GT] = ACTIONS(4992), + [anon_sym_switch] = ACTIONS(4992), + [anon_sym_when] = ACTIONS(4992), + [anon_sym_DOT_DOT] = ACTIONS(4992), + [anon_sym_and] = ACTIONS(4992), + [anon_sym_or] = ACTIONS(4992), + [anon_sym_AMP_AMP] = ACTIONS(4992), + [anon_sym_PIPE_PIPE] = ACTIONS(4992), + [anon_sym_QMARK_QMARK] = ACTIONS(4992), + [anon_sym_into] = ACTIONS(4992), + [anon_sym_on] = ACTIONS(4992), + [anon_sym_equals] = ACTIONS(4992), + [anon_sym_by] = ACTIONS(4992), + [anon_sym_as] = ACTIONS(4992), + [anon_sym_is] = ACTIONS(4992), + [anon_sym_DASH_GT] = ACTIONS(4992), + [anon_sym_with] = ACTIONS(4992), + [aux_sym_preproc_if_token3] = ACTIONS(4992), + [aux_sym_preproc_else_token1] = ACTIONS(4992), + [aux_sym_preproc_elif_token1] = ACTIONS(4992), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -491124,57 +490606,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(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(4996), + [anon_sym_LBRACK] = ACTIONS(4996), + [anon_sym_COLON] = ACTIONS(4996), + [anon_sym_COMMA] = ACTIONS(4996), + [anon_sym_RBRACK] = ACTIONS(4996), + [anon_sym_LPAREN] = ACTIONS(4996), + [anon_sym_RPAREN] = ACTIONS(4996), + [anon_sym_RBRACE] = ACTIONS(4996), + [anon_sym_LT] = ACTIONS(4998), + [anon_sym_GT] = ACTIONS(4998), + [anon_sym_in] = ACTIONS(4998), + [anon_sym_QMARK] = ACTIONS(4998), + [anon_sym_BANG] = ACTIONS(4998), + [anon_sym_PLUS_PLUS] = ACTIONS(4996), + [anon_sym_DASH_DASH] = ACTIONS(4996), + [anon_sym_PLUS] = ACTIONS(4998), + [anon_sym_DASH] = ACTIONS(4998), + [anon_sym_STAR] = ACTIONS(4996), + [anon_sym_SLASH] = ACTIONS(4998), + [anon_sym_PERCENT] = ACTIONS(4996), + [anon_sym_CARET] = ACTIONS(4996), + [anon_sym_PIPE] = ACTIONS(4998), + [anon_sym_AMP] = ACTIONS(4998), + [anon_sym_LT_LT] = ACTIONS(4996), + [anon_sym_GT_GT] = ACTIONS(4998), + [anon_sym_GT_GT_GT] = ACTIONS(4996), + [anon_sym_EQ_EQ] = ACTIONS(4996), + [anon_sym_BANG_EQ] = ACTIONS(4996), + [anon_sym_GT_EQ] = ACTIONS(4996), + [anon_sym_LT_EQ] = ACTIONS(4996), + [anon_sym_DOT] = ACTIONS(4998), + [anon_sym_EQ_GT] = ACTIONS(4996), + [anon_sym_switch] = ACTIONS(4996), + [anon_sym_when] = ACTIONS(4996), + [anon_sym_DOT_DOT] = ACTIONS(4996), + [anon_sym_and] = ACTIONS(4996), + [anon_sym_or] = ACTIONS(4996), + [anon_sym_AMP_AMP] = ACTIONS(4996), + [anon_sym_PIPE_PIPE] = ACTIONS(4996), + [anon_sym_QMARK_QMARK] = ACTIONS(4996), + [anon_sym_into] = ACTIONS(4996), + [anon_sym_on] = ACTIONS(4996), + [anon_sym_equals] = ACTIONS(4996), + [anon_sym_by] = ACTIONS(4996), + [anon_sym_as] = ACTIONS(4996), + [anon_sym_is] = ACTIONS(4996), + [anon_sym_DASH_GT] = ACTIONS(4996), + [anon_sym_with] = ACTIONS(4996), + [aux_sym_preproc_if_token3] = ACTIONS(4996), + [aux_sym_preproc_else_token1] = ACTIONS(4996), + [aux_sym_preproc_elif_token1] = ACTIONS(4996), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -491196,57 +490678,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_EQ] = ACTIONS(5367), - [anon_sym_LBRACK] = ACTIONS(4860), - [anon_sym_COLON] = ACTIONS(4860), - [anon_sym_LPAREN] = ACTIONS(4860), - [anon_sym_LT] = ACTIONS(4862), - [anon_sym_GT] = ACTIONS(4862), - [anon_sym_QMARK] = ACTIONS(4862), - [anon_sym_BANG] = ACTIONS(4862), - [anon_sym_PLUS_PLUS] = ACTIONS(4860), - [anon_sym_DASH_DASH] = ACTIONS(4860), - [anon_sym_PLUS] = ACTIONS(4862), - [anon_sym_DASH] = ACTIONS(4862), - [anon_sym_STAR] = ACTIONS(4862), - [anon_sym_SLASH] = ACTIONS(4862), - [anon_sym_PERCENT] = ACTIONS(4862), - [anon_sym_CARET] = ACTIONS(4862), - [anon_sym_PIPE] = ACTIONS(4862), - [anon_sym_AMP] = ACTIONS(4862), - [anon_sym_LT_LT] = ACTIONS(4862), - [anon_sym_GT_GT] = ACTIONS(4862), - [anon_sym_GT_GT_GT] = ACTIONS(4862), - [anon_sym_EQ_EQ] = ACTIONS(4860), - [anon_sym_BANG_EQ] = ACTIONS(4860), - [anon_sym_GT_EQ] = ACTIONS(4860), - [anon_sym_LT_EQ] = ACTIONS(4860), - [anon_sym_DOT] = ACTIONS(4862), - [anon_sym_switch] = ACTIONS(4860), - [anon_sym_when] = ACTIONS(4860), - [anon_sym_DOT_DOT] = ACTIONS(4860), - [anon_sym_and] = ACTIONS(4860), - [anon_sym_or] = ACTIONS(4860), - [anon_sym_PLUS_EQ] = ACTIONS(5369), - [anon_sym_DASH_EQ] = ACTIONS(5369), - [anon_sym_STAR_EQ] = ACTIONS(5369), - [anon_sym_SLASH_EQ] = ACTIONS(5369), - [anon_sym_PERCENT_EQ] = ACTIONS(5369), - [anon_sym_AMP_EQ] = ACTIONS(5369), - [anon_sym_CARET_EQ] = ACTIONS(5369), - [anon_sym_PIPE_EQ] = ACTIONS(5369), - [anon_sym_LT_LT_EQ] = ACTIONS(5369), - [anon_sym_GT_GT_EQ] = ACTIONS(5369), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(5369), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(5369), - [anon_sym_AMP_AMP] = ACTIONS(4860), - [anon_sym_PIPE_PIPE] = ACTIONS(4860), - [anon_sym_QMARK_QMARK] = ACTIONS(4862), - [anon_sym_into] = ACTIONS(4860), - [anon_sym_as] = ACTIONS(4860), - [anon_sym_is] = ACTIONS(4860), - [anon_sym_DASH_GT] = ACTIONS(4860), - [anon_sym_with] = ACTIONS(4860), + [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), + [anon_sym_DQUOTE] = ACTIONS(5184), + [aux_sym_preproc_if_token3] = ACTIONS(5184), + [aux_sym_preproc_else_token1] = ACTIONS(5184), + [aux_sym_preproc_elif_token1] = ACTIONS(5184), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -491268,57 +490750,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(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_EQ] = ACTIONS(5390), + [anon_sym_LBRACK] = ACTIONS(4811), + [anon_sym_COLON] = ACTIONS(4811), + [anon_sym_LPAREN] = ACTIONS(4811), + [anon_sym_LT] = ACTIONS(4813), + [anon_sym_GT] = ACTIONS(4813), + [anon_sym_QMARK] = ACTIONS(4813), + [anon_sym_BANG] = ACTIONS(4813), + [anon_sym_PLUS_PLUS] = ACTIONS(4811), + [anon_sym_DASH_DASH] = ACTIONS(4811), + [anon_sym_PLUS] = ACTIONS(4813), + [anon_sym_DASH] = ACTIONS(4813), + [anon_sym_STAR] = ACTIONS(4813), + [anon_sym_SLASH] = ACTIONS(4813), + [anon_sym_PERCENT] = ACTIONS(4813), + [anon_sym_CARET] = ACTIONS(4813), + [anon_sym_PIPE] = ACTIONS(4813), + [anon_sym_AMP] = ACTIONS(4813), + [anon_sym_LT_LT] = ACTIONS(4813), + [anon_sym_GT_GT] = ACTIONS(4813), + [anon_sym_GT_GT_GT] = ACTIONS(4813), + [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(4813), + [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_PLUS_EQ] = ACTIONS(5392), + [anon_sym_DASH_EQ] = ACTIONS(5392), + [anon_sym_STAR_EQ] = ACTIONS(5392), + [anon_sym_SLASH_EQ] = ACTIONS(5392), + [anon_sym_PERCENT_EQ] = ACTIONS(5392), + [anon_sym_AMP_EQ] = ACTIONS(5392), + [anon_sym_CARET_EQ] = ACTIONS(5392), + [anon_sym_PIPE_EQ] = ACTIONS(5392), + [anon_sym_LT_LT_EQ] = ACTIONS(5392), + [anon_sym_GT_GT_EQ] = ACTIONS(5392), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(5392), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(5392), + [anon_sym_AMP_AMP] = ACTIONS(4811), + [anon_sym_PIPE_PIPE] = ACTIONS(4811), + [anon_sym_QMARK_QMARK] = ACTIONS(4813), + [anon_sym_into] = 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_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -491340,57 +490822,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(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(4917), + [anon_sym_LBRACK] = ACTIONS(4917), + [anon_sym_COLON] = ACTIONS(4917), + [anon_sym_COMMA] = ACTIONS(4917), + [anon_sym_RBRACK] = ACTIONS(4917), + [anon_sym_LPAREN] = ACTIONS(4917), + [anon_sym_RPAREN] = ACTIONS(4917), + [anon_sym_RBRACE] = ACTIONS(4917), + [anon_sym_LT] = ACTIONS(4919), + [anon_sym_GT] = ACTIONS(4919), + [anon_sym_in] = ACTIONS(4919), + [anon_sym_QMARK] = ACTIONS(4919), + [anon_sym_BANG] = ACTIONS(4919), + [anon_sym_PLUS_PLUS] = ACTIONS(4917), + [anon_sym_DASH_DASH] = ACTIONS(4917), + [anon_sym_PLUS] = ACTIONS(4919), + [anon_sym_DASH] = ACTIONS(4919), + [anon_sym_STAR] = ACTIONS(4917), + [anon_sym_SLASH] = ACTIONS(4919), + [anon_sym_PERCENT] = ACTIONS(4917), + [anon_sym_CARET] = ACTIONS(4917), + [anon_sym_PIPE] = ACTIONS(4919), + [anon_sym_AMP] = ACTIONS(4919), + [anon_sym_LT_LT] = ACTIONS(4917), + [anon_sym_GT_GT] = ACTIONS(4919), + [anon_sym_GT_GT_GT] = ACTIONS(4917), + [anon_sym_EQ_EQ] = ACTIONS(4917), + [anon_sym_BANG_EQ] = ACTIONS(4917), + [anon_sym_GT_EQ] = ACTIONS(4917), + [anon_sym_LT_EQ] = ACTIONS(4917), + [anon_sym_DOT] = ACTIONS(4919), + [anon_sym_EQ_GT] = ACTIONS(4917), + [anon_sym_switch] = ACTIONS(4917), + [anon_sym_when] = ACTIONS(4917), + [anon_sym_DOT_DOT] = ACTIONS(4917), + [anon_sym_and] = ACTIONS(4917), + [anon_sym_or] = ACTIONS(4917), + [anon_sym_AMP_AMP] = ACTIONS(4917), + [anon_sym_PIPE_PIPE] = ACTIONS(4917), + [anon_sym_QMARK_QMARK] = ACTIONS(4917), + [anon_sym_into] = ACTIONS(4917), + [anon_sym_on] = ACTIONS(4917), + [anon_sym_equals] = ACTIONS(4917), + [anon_sym_by] = ACTIONS(4917), + [anon_sym_as] = ACTIONS(4917), + [anon_sym_is] = ACTIONS(4917), + [anon_sym_DASH_GT] = ACTIONS(4917), + [anon_sym_with] = ACTIONS(4917), + [aux_sym_preproc_if_token3] = ACTIONS(4917), + [aux_sym_preproc_else_token1] = ACTIONS(4917), + [aux_sym_preproc_elif_token1] = ACTIONS(4917), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -491412,57 +490894,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(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(5004), + [anon_sym_LBRACK] = ACTIONS(5004), + [anon_sym_COLON] = ACTIONS(5004), + [anon_sym_COMMA] = ACTIONS(5004), + [anon_sym_RBRACK] = ACTIONS(5004), + [anon_sym_LPAREN] = ACTIONS(5004), + [anon_sym_RPAREN] = ACTIONS(5004), + [anon_sym_RBRACE] = ACTIONS(5004), + [anon_sym_LT] = ACTIONS(5006), + [anon_sym_GT] = ACTIONS(5006), + [anon_sym_in] = ACTIONS(5006), + [anon_sym_QMARK] = ACTIONS(5006), + [anon_sym_BANG] = ACTIONS(5006), + [anon_sym_PLUS_PLUS] = ACTIONS(5004), + [anon_sym_DASH_DASH] = ACTIONS(5004), + [anon_sym_PLUS] = ACTIONS(5006), + [anon_sym_DASH] = ACTIONS(5006), + [anon_sym_STAR] = ACTIONS(5004), + [anon_sym_SLASH] = ACTIONS(5006), + [anon_sym_PERCENT] = ACTIONS(5004), + [anon_sym_CARET] = ACTIONS(5004), + [anon_sym_PIPE] = ACTIONS(5006), + [anon_sym_AMP] = ACTIONS(5006), + [anon_sym_LT_LT] = ACTIONS(5004), + [anon_sym_GT_GT] = ACTIONS(5006), + [anon_sym_GT_GT_GT] = ACTIONS(5004), + [anon_sym_EQ_EQ] = ACTIONS(5004), + [anon_sym_BANG_EQ] = ACTIONS(5004), + [anon_sym_GT_EQ] = ACTIONS(5004), + [anon_sym_LT_EQ] = ACTIONS(5004), + [anon_sym_DOT] = ACTIONS(5006), + [anon_sym_EQ_GT] = ACTIONS(5004), + [anon_sym_switch] = ACTIONS(5004), + [anon_sym_when] = ACTIONS(5004), + [anon_sym_DOT_DOT] = ACTIONS(5004), + [anon_sym_and] = ACTIONS(5004), + [anon_sym_or] = ACTIONS(5004), + [anon_sym_AMP_AMP] = ACTIONS(5004), + [anon_sym_PIPE_PIPE] = ACTIONS(5004), + [anon_sym_QMARK_QMARK] = ACTIONS(5004), + [anon_sym_into] = ACTIONS(5004), + [anon_sym_on] = ACTIONS(5004), + [anon_sym_equals] = ACTIONS(5004), + [anon_sym_by] = ACTIONS(5004), + [anon_sym_as] = ACTIONS(5004), + [anon_sym_is] = ACTIONS(5004), + [anon_sym_DASH_GT] = ACTIONS(5004), + [anon_sym_with] = ACTIONS(5004), + [aux_sym_preproc_if_token3] = ACTIONS(5004), + [aux_sym_preproc_else_token1] = ACTIONS(5004), + [aux_sym_preproc_elif_token1] = ACTIONS(5004), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -491484,57 +490966,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(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(3998), + [anon_sym_LBRACK] = ACTIONS(3998), + [anon_sym_COLON] = ACTIONS(3998), + [anon_sym_COMMA] = ACTIONS(3998), + [anon_sym_RBRACK] = ACTIONS(3998), + [anon_sym_LPAREN] = ACTIONS(3998), + [anon_sym_RPAREN] = ACTIONS(3998), + [anon_sym_LBRACE] = ACTIONS(3998), + [anon_sym_RBRACE] = ACTIONS(3998), + [anon_sym_LT] = ACTIONS(3996), + [anon_sym_GT] = ACTIONS(3996), + [anon_sym_in] = ACTIONS(3998), + [anon_sym_QMARK] = ACTIONS(3996), + [anon_sym_BANG] = ACTIONS(3996), + [anon_sym_PLUS_PLUS] = ACTIONS(3998), + [anon_sym_DASH_DASH] = ACTIONS(3998), + [anon_sym_PLUS] = ACTIONS(3996), + [anon_sym_DASH] = ACTIONS(3996), + [anon_sym_STAR] = ACTIONS(3998), + [anon_sym_SLASH] = ACTIONS(3996), + [anon_sym_PERCENT] = ACTIONS(3998), + [anon_sym_CARET] = ACTIONS(3998), + [anon_sym_PIPE] = ACTIONS(3996), + [anon_sym_AMP] = ACTIONS(3996), + [anon_sym_LT_LT] = ACTIONS(3998), + [anon_sym_GT_GT] = ACTIONS(3996), + [anon_sym_GT_GT_GT] = ACTIONS(3998), + [anon_sym_EQ_EQ] = ACTIONS(3998), + [anon_sym_BANG_EQ] = ACTIONS(3998), + [anon_sym_GT_EQ] = ACTIONS(3998), + [anon_sym_LT_EQ] = ACTIONS(3998), + [anon_sym_DOT] = ACTIONS(3996), + [anon_sym_EQ_GT] = ACTIONS(3998), + [anon_sym_switch] = ACTIONS(3998), + [anon_sym_when] = ACTIONS(3998), + [anon_sym_DOT_DOT] = ACTIONS(3998), + [anon_sym_and] = ACTIONS(3998), + [anon_sym_or] = ACTIONS(3998), + [anon_sym_AMP_AMP] = ACTIONS(3998), + [anon_sym_PIPE_PIPE] = ACTIONS(3998), + [anon_sym_QMARK_QMARK] = ACTIONS(3998), + [anon_sym_on] = ACTIONS(3998), + [anon_sym_equals] = ACTIONS(3998), + [anon_sym_by] = ACTIONS(3998), + [anon_sym_as] = ACTIONS(3998), + [anon_sym_is] = ACTIONS(3998), + [anon_sym_DASH_GT] = ACTIONS(3998), + [anon_sym_with] = ACTIONS(3998), + [aux_sym_preproc_if_token3] = ACTIONS(3998), + [aux_sym_preproc_else_token1] = ACTIONS(3998), + [aux_sym_preproc_elif_token1] = ACTIONS(3998), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -491556,57 +491038,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(4114), - [anon_sym_LBRACK] = ACTIONS(4114), - [anon_sym_COLON] = ACTIONS(4114), - [anon_sym_COMMA] = ACTIONS(4114), - [anon_sym_RBRACK] = ACTIONS(4114), - [anon_sym_LPAREN] = ACTIONS(4114), - [anon_sym_RPAREN] = ACTIONS(4114), - [anon_sym_LBRACE] = ACTIONS(4114), - [anon_sym_RBRACE] = ACTIONS(4114), - [anon_sym_LT] = ACTIONS(4112), - [anon_sym_GT] = ACTIONS(4112), - [anon_sym_in] = ACTIONS(4114), - [anon_sym_QMARK] = ACTIONS(4112), - [anon_sym_BANG] = ACTIONS(4112), - [anon_sym_PLUS_PLUS] = ACTIONS(4114), - [anon_sym_DASH_DASH] = ACTIONS(4114), - [anon_sym_PLUS] = ACTIONS(4112), - [anon_sym_DASH] = ACTIONS(4112), - [anon_sym_STAR] = ACTIONS(4114), - [anon_sym_SLASH] = ACTIONS(4112), - [anon_sym_PERCENT] = ACTIONS(4114), - [anon_sym_CARET] = ACTIONS(4114), - [anon_sym_PIPE] = ACTIONS(4112), - [anon_sym_AMP] = ACTIONS(4112), - [anon_sym_LT_LT] = ACTIONS(4114), - [anon_sym_GT_GT] = ACTIONS(4112), - [anon_sym_GT_GT_GT] = ACTIONS(4114), - [anon_sym_EQ_EQ] = ACTIONS(4114), - [anon_sym_BANG_EQ] = ACTIONS(4114), - [anon_sym_GT_EQ] = ACTIONS(4114), - [anon_sym_LT_EQ] = ACTIONS(4114), - [anon_sym_DOT] = ACTIONS(4112), - [anon_sym_EQ_GT] = ACTIONS(4114), - [anon_sym_switch] = ACTIONS(4114), - [anon_sym_when] = ACTIONS(4114), - [anon_sym_DOT_DOT] = ACTIONS(4114), - [anon_sym_and] = ACTIONS(4114), - [anon_sym_or] = ACTIONS(4114), - [anon_sym_AMP_AMP] = ACTIONS(4114), - [anon_sym_PIPE_PIPE] = ACTIONS(4114), - [anon_sym_QMARK_QMARK] = ACTIONS(4114), - [anon_sym_on] = ACTIONS(4114), - [anon_sym_equals] = ACTIONS(4114), - [anon_sym_by] = ACTIONS(4114), - [anon_sym_as] = ACTIONS(4114), - [anon_sym_is] = ACTIONS(4114), - [anon_sym_DASH_GT] = ACTIONS(4114), - [anon_sym_with] = ACTIONS(4114), - [aux_sym_preproc_if_token3] = ACTIONS(4114), - [aux_sym_preproc_else_token1] = ACTIONS(4114), - [aux_sym_preproc_elif_token1] = ACTIONS(4114), + [anon_sym_SEMI] = ACTIONS(5020), + [anon_sym_LBRACK] = ACTIONS(5020), + [anon_sym_COLON] = ACTIONS(5020), + [anon_sym_COMMA] = ACTIONS(5020), + [anon_sym_RBRACK] = ACTIONS(5020), + [anon_sym_LPAREN] = ACTIONS(5020), + [anon_sym_RPAREN] = ACTIONS(5020), + [anon_sym_RBRACE] = ACTIONS(5020), + [anon_sym_LT] = ACTIONS(5022), + [anon_sym_GT] = ACTIONS(5022), + [anon_sym_in] = ACTIONS(5022), + [anon_sym_QMARK] = ACTIONS(5022), + [anon_sym_BANG] = ACTIONS(5022), + [anon_sym_PLUS_PLUS] = ACTIONS(5020), + [anon_sym_DASH_DASH] = ACTIONS(5020), + [anon_sym_PLUS] = ACTIONS(5022), + [anon_sym_DASH] = ACTIONS(5022), + [anon_sym_STAR] = ACTIONS(5020), + [anon_sym_SLASH] = ACTIONS(5022), + [anon_sym_PERCENT] = ACTIONS(5020), + [anon_sym_CARET] = ACTIONS(5020), + [anon_sym_PIPE] = ACTIONS(5022), + [anon_sym_AMP] = ACTIONS(5022), + [anon_sym_LT_LT] = ACTIONS(5020), + [anon_sym_GT_GT] = ACTIONS(5022), + [anon_sym_GT_GT_GT] = ACTIONS(5020), + [anon_sym_EQ_EQ] = ACTIONS(5020), + [anon_sym_BANG_EQ] = ACTIONS(5020), + [anon_sym_GT_EQ] = ACTIONS(5020), + [anon_sym_LT_EQ] = ACTIONS(5020), + [anon_sym_DOT] = ACTIONS(5022), + [anon_sym_EQ_GT] = ACTIONS(5020), + [anon_sym_switch] = ACTIONS(5020), + [anon_sym_when] = ACTIONS(5020), + [anon_sym_DOT_DOT] = ACTIONS(5020), + [anon_sym_and] = ACTIONS(5020), + [anon_sym_or] = ACTIONS(5020), + [anon_sym_AMP_AMP] = ACTIONS(5020), + [anon_sym_PIPE_PIPE] = ACTIONS(5020), + [anon_sym_QMARK_QMARK] = ACTIONS(5020), + [anon_sym_into] = ACTIONS(5020), + [anon_sym_on] = ACTIONS(5020), + [anon_sym_equals] = ACTIONS(5020), + [anon_sym_by] = ACTIONS(5020), + [anon_sym_as] = ACTIONS(5020), + [anon_sym_is] = ACTIONS(5020), + [anon_sym_DASH_GT] = ACTIONS(5020), + [anon_sym_with] = ACTIONS(5020), + [aux_sym_preproc_if_token3] = ACTIONS(5020), + [aux_sym_preproc_else_token1] = ACTIONS(5020), + [aux_sym_preproc_elif_token1] = ACTIONS(5020), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -491628,57 +491110,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(3687), - [anon_sym_LBRACK] = ACTIONS(3687), - [anon_sym_COLON] = ACTIONS(3687), - [anon_sym_COMMA] = ACTIONS(3687), - [anon_sym_RBRACK] = ACTIONS(3687), - [anon_sym_LPAREN] = ACTIONS(3687), - [anon_sym_RPAREN] = ACTIONS(3687), - [anon_sym_LBRACE] = ACTIONS(3687), - [anon_sym_RBRACE] = ACTIONS(3687), - [anon_sym_LT] = ACTIONS(3685), - [anon_sym_GT] = ACTIONS(3685), - [anon_sym_in] = ACTIONS(3687), - [anon_sym_QMARK] = ACTIONS(3685), - [anon_sym_BANG] = ACTIONS(3685), - [anon_sym_PLUS_PLUS] = ACTIONS(3687), - [anon_sym_DASH_DASH] = ACTIONS(3687), - [anon_sym_PLUS] = ACTIONS(3685), - [anon_sym_DASH] = ACTIONS(3685), - [anon_sym_STAR] = ACTIONS(3687), - [anon_sym_SLASH] = ACTIONS(3685), - [anon_sym_PERCENT] = ACTIONS(3687), - [anon_sym_CARET] = ACTIONS(3687), - [anon_sym_PIPE] = ACTIONS(3685), - [anon_sym_AMP] = ACTIONS(3685), - [anon_sym_LT_LT] = ACTIONS(3687), - [anon_sym_GT_GT] = ACTIONS(3685), - [anon_sym_GT_GT_GT] = ACTIONS(3687), - [anon_sym_EQ_EQ] = ACTIONS(3687), - [anon_sym_BANG_EQ] = ACTIONS(3687), - [anon_sym_GT_EQ] = ACTIONS(3687), - [anon_sym_LT_EQ] = ACTIONS(3687), - [anon_sym_DOT] = ACTIONS(3685), - [anon_sym_EQ_GT] = ACTIONS(3687), - [anon_sym_switch] = ACTIONS(3687), - [anon_sym_when] = ACTIONS(3687), - [anon_sym_DOT_DOT] = ACTIONS(3687), - [anon_sym_and] = ACTIONS(3687), - [anon_sym_or] = ACTIONS(3687), - [anon_sym_AMP_AMP] = ACTIONS(3687), - [anon_sym_PIPE_PIPE] = ACTIONS(3687), - [anon_sym_QMARK_QMARK] = ACTIONS(3687), - [anon_sym_on] = ACTIONS(3687), - [anon_sym_equals] = ACTIONS(3687), - [anon_sym_by] = ACTIONS(3687), - [anon_sym_as] = ACTIONS(3687), - [anon_sym_is] = ACTIONS(3687), - [anon_sym_DASH_GT] = ACTIONS(3687), - [anon_sym_with] = ACTIONS(3687), - [aux_sym_preproc_if_token3] = ACTIONS(3687), - [aux_sym_preproc_else_token1] = ACTIONS(3687), - [aux_sym_preproc_elif_token1] = ACTIONS(3687), + [anon_sym_SEMI] = ACTIONS(5024), + [anon_sym_LBRACK] = ACTIONS(5024), + [anon_sym_COLON] = ACTIONS(5024), + [anon_sym_COMMA] = ACTIONS(5024), + [anon_sym_RBRACK] = ACTIONS(5024), + [anon_sym_LPAREN] = ACTIONS(5024), + [anon_sym_RPAREN] = ACTIONS(5024), + [anon_sym_RBRACE] = ACTIONS(5024), + [anon_sym_LT] = ACTIONS(5026), + [anon_sym_GT] = ACTIONS(5026), + [anon_sym_in] = ACTIONS(5026), + [anon_sym_QMARK] = ACTIONS(5026), + [anon_sym_BANG] = ACTIONS(5026), + [anon_sym_PLUS_PLUS] = ACTIONS(5024), + [anon_sym_DASH_DASH] = ACTIONS(5024), + [anon_sym_PLUS] = ACTIONS(5026), + [anon_sym_DASH] = ACTIONS(5026), + [anon_sym_STAR] = ACTIONS(5024), + [anon_sym_SLASH] = ACTIONS(5026), + [anon_sym_PERCENT] = ACTIONS(5024), + [anon_sym_CARET] = ACTIONS(5024), + [anon_sym_PIPE] = ACTIONS(5026), + [anon_sym_AMP] = ACTIONS(5026), + [anon_sym_LT_LT] = ACTIONS(5024), + [anon_sym_GT_GT] = ACTIONS(5026), + [anon_sym_GT_GT_GT] = ACTIONS(5024), + [anon_sym_EQ_EQ] = ACTIONS(5024), + [anon_sym_BANG_EQ] = ACTIONS(5024), + [anon_sym_GT_EQ] = ACTIONS(5024), + [anon_sym_LT_EQ] = ACTIONS(5024), + [anon_sym_DOT] = ACTIONS(5026), + [anon_sym_EQ_GT] = ACTIONS(5024), + [anon_sym_switch] = ACTIONS(5024), + [anon_sym_when] = ACTIONS(5024), + [anon_sym_DOT_DOT] = ACTIONS(5024), + [anon_sym_and] = ACTIONS(5024), + [anon_sym_or] = ACTIONS(5024), + [anon_sym_AMP_AMP] = ACTIONS(5024), + [anon_sym_PIPE_PIPE] = ACTIONS(5024), + [anon_sym_QMARK_QMARK] = ACTIONS(5024), + [anon_sym_into] = ACTIONS(5024), + [anon_sym_on] = ACTIONS(5024), + [anon_sym_equals] = ACTIONS(5024), + [anon_sym_by] = ACTIONS(5024), + [anon_sym_as] = ACTIONS(5024), + [anon_sym_is] = ACTIONS(5024), + [anon_sym_DASH_GT] = ACTIONS(5024), + [anon_sym_with] = ACTIONS(5024), + [aux_sym_preproc_if_token3] = ACTIONS(5024), + [aux_sym_preproc_else_token1] = ACTIONS(5024), + [aux_sym_preproc_elif_token1] = ACTIONS(5024), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -491700,57 +491182,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(4122), - [anon_sym_LBRACK] = ACTIONS(4122), - [anon_sym_COLON] = ACTIONS(4122), - [anon_sym_COMMA] = ACTIONS(4122), - [anon_sym_RBRACK] = ACTIONS(4122), - [anon_sym_LPAREN] = ACTIONS(4122), - [anon_sym_RPAREN] = ACTIONS(4122), - [anon_sym_LBRACE] = ACTIONS(4122), - [anon_sym_RBRACE] = ACTIONS(4122), - [anon_sym_LT] = ACTIONS(4120), - [anon_sym_GT] = ACTIONS(4120), - [anon_sym_in] = ACTIONS(4122), - [anon_sym_QMARK] = ACTIONS(4120), - [anon_sym_BANG] = ACTIONS(4120), - [anon_sym_PLUS_PLUS] = ACTIONS(4122), - [anon_sym_DASH_DASH] = ACTIONS(4122), - [anon_sym_PLUS] = ACTIONS(4120), - [anon_sym_DASH] = ACTIONS(4120), - [anon_sym_STAR] = ACTIONS(4122), - [anon_sym_SLASH] = ACTIONS(4120), - [anon_sym_PERCENT] = ACTIONS(4122), - [anon_sym_CARET] = ACTIONS(4122), - [anon_sym_PIPE] = ACTIONS(4120), - [anon_sym_AMP] = ACTIONS(4120), - [anon_sym_LT_LT] = ACTIONS(4122), - [anon_sym_GT_GT] = ACTIONS(4120), - [anon_sym_GT_GT_GT] = ACTIONS(4122), - [anon_sym_EQ_EQ] = ACTIONS(4122), - [anon_sym_BANG_EQ] = ACTIONS(4122), - [anon_sym_GT_EQ] = ACTIONS(4122), - [anon_sym_LT_EQ] = ACTIONS(4122), - [anon_sym_DOT] = ACTIONS(4120), - [anon_sym_EQ_GT] = ACTIONS(4122), - [anon_sym_switch] = ACTIONS(4122), - [anon_sym_when] = ACTIONS(4122), - [anon_sym_DOT_DOT] = ACTIONS(4122), - [anon_sym_and] = ACTIONS(4122), - [anon_sym_or] = ACTIONS(4122), - [anon_sym_AMP_AMP] = ACTIONS(4122), - [anon_sym_PIPE_PIPE] = ACTIONS(4122), - [anon_sym_QMARK_QMARK] = ACTIONS(4122), - [anon_sym_on] = ACTIONS(4122), - [anon_sym_equals] = ACTIONS(4122), - [anon_sym_by] = ACTIONS(4122), - [anon_sym_as] = ACTIONS(4122), - [anon_sym_is] = ACTIONS(4122), - [anon_sym_DASH_GT] = ACTIONS(4122), - [anon_sym_with] = ACTIONS(4122), - [aux_sym_preproc_if_token3] = ACTIONS(4122), - [aux_sym_preproc_else_token1] = ACTIONS(4122), - [aux_sym_preproc_elif_token1] = ACTIONS(4122), + [anon_sym_SEMI] = ACTIONS(5028), + [anon_sym_LBRACK] = ACTIONS(5028), + [anon_sym_COLON] = ACTIONS(5028), + [anon_sym_COMMA] = ACTIONS(5028), + [anon_sym_RBRACK] = ACTIONS(5028), + [anon_sym_LPAREN] = ACTIONS(5028), + [anon_sym_RPAREN] = ACTIONS(5028), + [anon_sym_RBRACE] = ACTIONS(5028), + [anon_sym_LT] = ACTIONS(5030), + [anon_sym_GT] = ACTIONS(5030), + [anon_sym_in] = ACTIONS(5030), + [anon_sym_QMARK] = ACTIONS(5030), + [anon_sym_BANG] = ACTIONS(5030), + [anon_sym_PLUS_PLUS] = ACTIONS(5028), + [anon_sym_DASH_DASH] = ACTIONS(5028), + [anon_sym_PLUS] = ACTIONS(5030), + [anon_sym_DASH] = ACTIONS(5030), + [anon_sym_STAR] = ACTIONS(5028), + [anon_sym_SLASH] = ACTIONS(5030), + [anon_sym_PERCENT] = ACTIONS(5028), + [anon_sym_CARET] = ACTIONS(5028), + [anon_sym_PIPE] = ACTIONS(5030), + [anon_sym_AMP] = ACTIONS(5030), + [anon_sym_LT_LT] = ACTIONS(5028), + [anon_sym_GT_GT] = ACTIONS(5030), + [anon_sym_GT_GT_GT] = ACTIONS(5028), + [anon_sym_EQ_EQ] = ACTIONS(5028), + [anon_sym_BANG_EQ] = ACTIONS(5028), + [anon_sym_GT_EQ] = ACTIONS(5028), + [anon_sym_LT_EQ] = ACTIONS(5028), + [anon_sym_DOT] = ACTIONS(5030), + [anon_sym_EQ_GT] = ACTIONS(5028), + [anon_sym_switch] = ACTIONS(5028), + [anon_sym_when] = ACTIONS(5028), + [anon_sym_DOT_DOT] = ACTIONS(5028), + [anon_sym_and] = ACTIONS(5028), + [anon_sym_or] = ACTIONS(5028), + [anon_sym_AMP_AMP] = ACTIONS(5028), + [anon_sym_PIPE_PIPE] = ACTIONS(5028), + [anon_sym_QMARK_QMARK] = ACTIONS(5028), + [anon_sym_into] = ACTIONS(5028), + [anon_sym_on] = ACTIONS(5028), + [anon_sym_equals] = ACTIONS(5028), + [anon_sym_by] = ACTIONS(5028), + [anon_sym_as] = ACTIONS(5028), + [anon_sym_is] = ACTIONS(5028), + [anon_sym_DASH_GT] = ACTIONS(5028), + [anon_sym_with] = ACTIONS(5028), + [aux_sym_preproc_if_token3] = ACTIONS(5028), + [aux_sym_preproc_else_token1] = ACTIONS(5028), + [aux_sym_preproc_elif_token1] = ACTIONS(5028), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -491772,57 +491254,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(4126), - [anon_sym_LBRACK] = ACTIONS(4126), - [anon_sym_COLON] = ACTIONS(4126), - [anon_sym_COMMA] = ACTIONS(4126), - [anon_sym_RBRACK] = ACTIONS(4126), - [anon_sym_LPAREN] = ACTIONS(4126), - [anon_sym_RPAREN] = ACTIONS(4126), - [anon_sym_LBRACE] = ACTIONS(4126), - [anon_sym_RBRACE] = ACTIONS(4126), - [anon_sym_LT] = ACTIONS(4124), - [anon_sym_GT] = ACTIONS(4124), - [anon_sym_in] = ACTIONS(4126), - [anon_sym_QMARK] = ACTIONS(4124), - [anon_sym_BANG] = ACTIONS(4124), - [anon_sym_PLUS_PLUS] = ACTIONS(4126), - [anon_sym_DASH_DASH] = ACTIONS(4126), - [anon_sym_PLUS] = ACTIONS(4124), - [anon_sym_DASH] = ACTIONS(4124), - [anon_sym_STAR] = ACTIONS(4126), - [anon_sym_SLASH] = ACTIONS(4124), - [anon_sym_PERCENT] = ACTIONS(4126), - [anon_sym_CARET] = ACTIONS(4126), - [anon_sym_PIPE] = ACTIONS(4124), - [anon_sym_AMP] = ACTIONS(4124), - [anon_sym_LT_LT] = ACTIONS(4126), - [anon_sym_GT_GT] = ACTIONS(4124), - [anon_sym_GT_GT_GT] = ACTIONS(4126), - [anon_sym_EQ_EQ] = ACTIONS(4126), - [anon_sym_BANG_EQ] = ACTIONS(4126), - [anon_sym_GT_EQ] = ACTIONS(4126), - [anon_sym_LT_EQ] = ACTIONS(4126), - [anon_sym_DOT] = ACTIONS(4124), - [anon_sym_EQ_GT] = ACTIONS(4126), - [anon_sym_switch] = ACTIONS(4126), - [anon_sym_when] = ACTIONS(4126), - [anon_sym_DOT_DOT] = ACTIONS(4126), - [anon_sym_and] = ACTIONS(4126), - [anon_sym_or] = ACTIONS(4126), - [anon_sym_AMP_AMP] = ACTIONS(4126), - [anon_sym_PIPE_PIPE] = ACTIONS(4126), - [anon_sym_QMARK_QMARK] = ACTIONS(4126), - [anon_sym_on] = ACTIONS(4126), - [anon_sym_equals] = ACTIONS(4126), - [anon_sym_by] = ACTIONS(4126), - [anon_sym_as] = ACTIONS(4126), - [anon_sym_is] = ACTIONS(4126), - [anon_sym_DASH_GT] = ACTIONS(4126), - [anon_sym_with] = ACTIONS(4126), - [aux_sym_preproc_if_token3] = ACTIONS(4126), - [aux_sym_preproc_else_token1] = ACTIONS(4126), - [aux_sym_preproc_elif_token1] = ACTIONS(4126), + [anon_sym_SEMI] = ACTIONS(3953), + [anon_sym_LBRACK] = ACTIONS(3953), + [anon_sym_COLON] = ACTIONS(3953), + [anon_sym_COMMA] = ACTIONS(3953), + [anon_sym_RBRACK] = ACTIONS(3953), + [anon_sym_LPAREN] = ACTIONS(3953), + [anon_sym_RPAREN] = ACTIONS(3953), + [anon_sym_LBRACE] = ACTIONS(3953), + [anon_sym_RBRACE] = ACTIONS(3953), + [anon_sym_LT] = ACTIONS(3951), + [anon_sym_GT] = ACTIONS(3951), + [anon_sym_in] = ACTIONS(3953), + [anon_sym_QMARK] = ACTIONS(3951), + [anon_sym_BANG] = ACTIONS(3951), + [anon_sym_PLUS_PLUS] = ACTIONS(3953), + [anon_sym_DASH_DASH] = ACTIONS(3953), + [anon_sym_PLUS] = ACTIONS(3951), + [anon_sym_DASH] = ACTIONS(3951), + [anon_sym_STAR] = ACTIONS(3953), + [anon_sym_SLASH] = ACTIONS(3951), + [anon_sym_PERCENT] = ACTIONS(3953), + [anon_sym_CARET] = ACTIONS(3953), + [anon_sym_PIPE] = ACTIONS(3951), + [anon_sym_AMP] = ACTIONS(3951), + [anon_sym_LT_LT] = ACTIONS(3953), + [anon_sym_GT_GT] = ACTIONS(3951), + [anon_sym_GT_GT_GT] = ACTIONS(3953), + [anon_sym_EQ_EQ] = ACTIONS(3953), + [anon_sym_BANG_EQ] = ACTIONS(3953), + [anon_sym_GT_EQ] = ACTIONS(3953), + [anon_sym_LT_EQ] = ACTIONS(3953), + [anon_sym_DOT] = ACTIONS(3951), + [anon_sym_EQ_GT] = ACTIONS(3953), + [anon_sym_switch] = ACTIONS(3953), + [anon_sym_when] = ACTIONS(3953), + [anon_sym_DOT_DOT] = ACTIONS(3953), + [anon_sym_and] = ACTIONS(3953), + [anon_sym_or] = ACTIONS(3953), + [anon_sym_AMP_AMP] = ACTIONS(3953), + [anon_sym_PIPE_PIPE] = ACTIONS(3953), + [anon_sym_QMARK_QMARK] = ACTIONS(3953), + [anon_sym_on] = ACTIONS(3953), + [anon_sym_equals] = ACTIONS(3953), + [anon_sym_by] = ACTIONS(3953), + [anon_sym_as] = ACTIONS(3953), + [anon_sym_is] = ACTIONS(3953), + [anon_sym_DASH_GT] = ACTIONS(3953), + [anon_sym_with] = ACTIONS(3953), + [aux_sym_preproc_if_token3] = ACTIONS(3953), + [aux_sym_preproc_else_token1] = ACTIONS(3953), + [aux_sym_preproc_elif_token1] = ACTIONS(3953), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -491844,57 +491326,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(5090), - [anon_sym_LBRACK] = ACTIONS(5090), - [anon_sym_COLON] = ACTIONS(5090), - [anon_sym_COMMA] = ACTIONS(5090), - [anon_sym_RBRACK] = ACTIONS(5090), - [anon_sym_LPAREN] = ACTIONS(5090), - [anon_sym_RPAREN] = ACTIONS(5090), - [anon_sym_RBRACE] = ACTIONS(5090), - [anon_sym_LT] = ACTIONS(5092), - [anon_sym_GT] = ACTIONS(5092), - [anon_sym_in] = ACTIONS(5092), - [anon_sym_QMARK] = ACTIONS(5092), - [anon_sym_BANG] = ACTIONS(5092), - [anon_sym_PLUS_PLUS] = ACTIONS(5090), - [anon_sym_DASH_DASH] = ACTIONS(5090), - [anon_sym_PLUS] = ACTIONS(5092), - [anon_sym_DASH] = ACTIONS(5092), - [anon_sym_STAR] = ACTIONS(5090), - [anon_sym_SLASH] = ACTIONS(5092), - [anon_sym_PERCENT] = ACTIONS(5090), - [anon_sym_CARET] = ACTIONS(5090), - [anon_sym_PIPE] = ACTIONS(5092), - [anon_sym_AMP] = ACTIONS(5092), - [anon_sym_LT_LT] = ACTIONS(5090), - [anon_sym_GT_GT] = ACTIONS(5092), - [anon_sym_GT_GT_GT] = ACTIONS(5090), - [anon_sym_EQ_EQ] = ACTIONS(5090), - [anon_sym_BANG_EQ] = ACTIONS(5090), - [anon_sym_GT_EQ] = ACTIONS(5090), - [anon_sym_LT_EQ] = ACTIONS(5090), - [anon_sym_DOT] = ACTIONS(5092), - [anon_sym_EQ_GT] = ACTIONS(5090), - [anon_sym_switch] = ACTIONS(5090), - [anon_sym_when] = ACTIONS(5090), - [anon_sym_DOT_DOT] = ACTIONS(5090), - [anon_sym_and] = ACTIONS(5090), - [anon_sym_or] = ACTIONS(5090), - [anon_sym_AMP_AMP] = ACTIONS(5090), - [anon_sym_PIPE_PIPE] = ACTIONS(5090), - [anon_sym_QMARK_QMARK] = ACTIONS(5090), - [anon_sym_into] = ACTIONS(5090), - [anon_sym_on] = ACTIONS(5090), - [anon_sym_equals] = ACTIONS(5090), - [anon_sym_by] = ACTIONS(5090), - [anon_sym_as] = ACTIONS(5090), - [anon_sym_is] = ACTIONS(5090), - [anon_sym_DASH_GT] = ACTIONS(5090), - [anon_sym_with] = ACTIONS(5090), - [aux_sym_preproc_if_token3] = ACTIONS(5090), - [aux_sym_preproc_else_token1] = ACTIONS(5090), - [aux_sym_preproc_elif_token1] = ACTIONS(5090), + [anon_sym_SEMI] = ACTIONS(5032), + [anon_sym_LBRACK] = ACTIONS(5032), + [anon_sym_COLON] = ACTIONS(5032), + [anon_sym_COMMA] = ACTIONS(5032), + [anon_sym_RBRACK] = ACTIONS(5032), + [anon_sym_LPAREN] = ACTIONS(5032), + [anon_sym_RPAREN] = ACTIONS(5032), + [anon_sym_RBRACE] = ACTIONS(5032), + [anon_sym_LT] = ACTIONS(5034), + [anon_sym_GT] = ACTIONS(5034), + [anon_sym_in] = ACTIONS(5034), + [anon_sym_QMARK] = ACTIONS(5034), + [anon_sym_BANG] = ACTIONS(5034), + [anon_sym_PLUS_PLUS] = ACTIONS(5032), + [anon_sym_DASH_DASH] = ACTIONS(5032), + [anon_sym_PLUS] = ACTIONS(5034), + [anon_sym_DASH] = ACTIONS(5034), + [anon_sym_STAR] = ACTIONS(5032), + [anon_sym_SLASH] = ACTIONS(5034), + [anon_sym_PERCENT] = ACTIONS(5032), + [anon_sym_CARET] = ACTIONS(5032), + [anon_sym_PIPE] = ACTIONS(5034), + [anon_sym_AMP] = ACTIONS(5034), + [anon_sym_LT_LT] = ACTIONS(5032), + [anon_sym_GT_GT] = ACTIONS(5034), + [anon_sym_GT_GT_GT] = ACTIONS(5032), + [anon_sym_EQ_EQ] = ACTIONS(5032), + [anon_sym_BANG_EQ] = ACTIONS(5032), + [anon_sym_GT_EQ] = ACTIONS(5032), + [anon_sym_LT_EQ] = ACTIONS(5032), + [anon_sym_DOT] = ACTIONS(5034), + [anon_sym_EQ_GT] = ACTIONS(5032), + [anon_sym_switch] = ACTIONS(5032), + [anon_sym_when] = ACTIONS(5032), + [anon_sym_DOT_DOT] = ACTIONS(5032), + [anon_sym_and] = ACTIONS(5032), + [anon_sym_or] = ACTIONS(5032), + [anon_sym_AMP_AMP] = ACTIONS(5032), + [anon_sym_PIPE_PIPE] = ACTIONS(5032), + [anon_sym_QMARK_QMARK] = ACTIONS(5032), + [anon_sym_into] = ACTIONS(5032), + [anon_sym_on] = ACTIONS(5032), + [anon_sym_equals] = ACTIONS(5032), + [anon_sym_by] = ACTIONS(5032), + [anon_sym_as] = ACTIONS(5032), + [anon_sym_is] = ACTIONS(5032), + [anon_sym_DASH_GT] = ACTIONS(5032), + [anon_sym_with] = ACTIONS(5032), + [aux_sym_preproc_if_token3] = ACTIONS(5032), + [aux_sym_preproc_else_token1] = ACTIONS(5032), + [aux_sym_preproc_elif_token1] = ACTIONS(5032), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -491916,57 +491398,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(4892), - [anon_sym_LBRACK] = ACTIONS(4892), - [anon_sym_COLON] = ACTIONS(4892), - [anon_sym_COMMA] = ACTIONS(4892), - [anon_sym_RBRACK] = ACTIONS(4892), - [anon_sym_LPAREN] = ACTIONS(4892), - [anon_sym_RPAREN] = ACTIONS(4892), - [anon_sym_RBRACE] = ACTIONS(4892), - [anon_sym_LT] = ACTIONS(4894), - [anon_sym_GT] = ACTIONS(4894), - [anon_sym_in] = ACTIONS(4892), - [anon_sym_QMARK] = ACTIONS(4894), - [anon_sym_BANG] = ACTIONS(4894), - [anon_sym_PLUS_PLUS] = ACTIONS(4892), - [anon_sym_DASH_DASH] = ACTIONS(4892), - [anon_sym_PLUS] = ACTIONS(4894), - [anon_sym_DASH] = ACTIONS(4894), - [anon_sym_STAR] = ACTIONS(4892), - [anon_sym_SLASH] = ACTIONS(4894), - [anon_sym_PERCENT] = ACTIONS(4892), - [anon_sym_CARET] = ACTIONS(4892), - [anon_sym_PIPE] = ACTIONS(4894), - [anon_sym_AMP] = ACTIONS(4894), - [anon_sym_LT_LT] = ACTIONS(4892), - [anon_sym_GT_GT] = ACTIONS(4894), - [anon_sym_GT_GT_GT] = ACTIONS(4892), - [anon_sym_EQ_EQ] = ACTIONS(4892), - [anon_sym_BANG_EQ] = ACTIONS(4892), - [anon_sym_GT_EQ] = ACTIONS(4892), - [anon_sym_LT_EQ] = ACTIONS(4892), - [anon_sym_DOT] = ACTIONS(4894), - [anon_sym_EQ_GT] = ACTIONS(4892), - [anon_sym_switch] = ACTIONS(4892), - [anon_sym_when] = ACTIONS(4892), - [anon_sym_DOT_DOT] = ACTIONS(4892), - [anon_sym_and] = ACTIONS(4892), - [anon_sym_or] = ACTIONS(4892), - [anon_sym_AMP_AMP] = ACTIONS(4892), - [anon_sym_PIPE_PIPE] = ACTIONS(4892), - [anon_sym_QMARK_QMARK] = ACTIONS(4892), - [anon_sym_on] = ACTIONS(4892), - [anon_sym_equals] = ACTIONS(4892), - [anon_sym_by] = ACTIONS(4892), - [anon_sym_as] = ACTIONS(4892), - [anon_sym_is] = ACTIONS(4892), - [anon_sym_DASH_GT] = ACTIONS(4892), - [anon_sym_with] = ACTIONS(4892), - [anon_sym_DQUOTE] = ACTIONS(4892), - [aux_sym_preproc_if_token3] = ACTIONS(4892), - [aux_sym_preproc_else_token1] = ACTIONS(4892), - [aux_sym_preproc_elif_token1] = ACTIONS(4892), + [anon_sym_SEMI] = ACTIONS(5036), + [anon_sym_LBRACK] = ACTIONS(5036), + [anon_sym_COLON] = ACTIONS(5036), + [anon_sym_COMMA] = ACTIONS(5036), + [anon_sym_RBRACK] = ACTIONS(5036), + [anon_sym_LPAREN] = ACTIONS(5036), + [anon_sym_RPAREN] = ACTIONS(5036), + [anon_sym_RBRACE] = ACTIONS(5036), + [anon_sym_LT] = ACTIONS(5038), + [anon_sym_GT] = ACTIONS(5038), + [anon_sym_in] = ACTIONS(5038), + [anon_sym_QMARK] = ACTIONS(5038), + [anon_sym_BANG] = ACTIONS(5038), + [anon_sym_PLUS_PLUS] = ACTIONS(5036), + [anon_sym_DASH_DASH] = ACTIONS(5036), + [anon_sym_PLUS] = ACTIONS(5038), + [anon_sym_DASH] = ACTIONS(5038), + [anon_sym_STAR] = ACTIONS(5036), + [anon_sym_SLASH] = ACTIONS(5038), + [anon_sym_PERCENT] = ACTIONS(5036), + [anon_sym_CARET] = ACTIONS(5036), + [anon_sym_PIPE] = ACTIONS(5038), + [anon_sym_AMP] = ACTIONS(5038), + [anon_sym_LT_LT] = ACTIONS(5036), + [anon_sym_GT_GT] = ACTIONS(5038), + [anon_sym_GT_GT_GT] = ACTIONS(5036), + [anon_sym_EQ_EQ] = ACTIONS(5036), + [anon_sym_BANG_EQ] = ACTIONS(5036), + [anon_sym_GT_EQ] = ACTIONS(5036), + [anon_sym_LT_EQ] = ACTIONS(5036), + [anon_sym_DOT] = ACTIONS(5038), + [anon_sym_EQ_GT] = ACTIONS(5036), + [anon_sym_switch] = ACTIONS(5036), + [anon_sym_when] = ACTIONS(5036), + [anon_sym_DOT_DOT] = ACTIONS(5036), + [anon_sym_and] = ACTIONS(5036), + [anon_sym_or] = ACTIONS(5036), + [anon_sym_AMP_AMP] = ACTIONS(5036), + [anon_sym_PIPE_PIPE] = ACTIONS(5036), + [anon_sym_QMARK_QMARK] = ACTIONS(5036), + [anon_sym_into] = ACTIONS(5036), + [anon_sym_on] = ACTIONS(5036), + [anon_sym_equals] = ACTIONS(5036), + [anon_sym_by] = ACTIONS(5036), + [anon_sym_as] = ACTIONS(5036), + [anon_sym_is] = ACTIONS(5036), + [anon_sym_DASH_GT] = ACTIONS(5036), + [anon_sym_with] = ACTIONS(5036), + [aux_sym_preproc_if_token3] = ACTIONS(5036), + [aux_sym_preproc_else_token1] = ACTIONS(5036), + [aux_sym_preproc_elif_token1] = ACTIONS(5036), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -491988,57 +491470,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(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(5044), + [anon_sym_LBRACK] = ACTIONS(5044), + [anon_sym_COLON] = ACTIONS(5044), + [anon_sym_COMMA] = ACTIONS(5044), + [anon_sym_RBRACK] = ACTIONS(5044), + [anon_sym_LPAREN] = ACTIONS(5044), + [anon_sym_RPAREN] = ACTIONS(5044), + [anon_sym_RBRACE] = ACTIONS(5044), + [anon_sym_LT] = ACTIONS(5046), + [anon_sym_GT] = ACTIONS(5046), + [anon_sym_in] = ACTIONS(5046), + [anon_sym_QMARK] = ACTIONS(5046), + [anon_sym_BANG] = ACTIONS(5046), + [anon_sym_PLUS_PLUS] = ACTIONS(5044), + [anon_sym_DASH_DASH] = ACTIONS(5044), + [anon_sym_PLUS] = ACTIONS(5046), + [anon_sym_DASH] = ACTIONS(5046), + [anon_sym_STAR] = ACTIONS(5044), + [anon_sym_SLASH] = ACTIONS(5046), + [anon_sym_PERCENT] = ACTIONS(5044), + [anon_sym_CARET] = ACTIONS(5044), + [anon_sym_PIPE] = ACTIONS(5046), + [anon_sym_AMP] = ACTIONS(5046), + [anon_sym_LT_LT] = ACTIONS(5044), + [anon_sym_GT_GT] = ACTIONS(5046), + [anon_sym_GT_GT_GT] = ACTIONS(5044), + [anon_sym_EQ_EQ] = ACTIONS(5044), + [anon_sym_BANG_EQ] = ACTIONS(5044), + [anon_sym_GT_EQ] = ACTIONS(5044), + [anon_sym_LT_EQ] = ACTIONS(5044), + [anon_sym_DOT] = ACTIONS(5046), + [anon_sym_EQ_GT] = ACTIONS(5044), + [anon_sym_switch] = ACTIONS(5044), + [anon_sym_when] = ACTIONS(5044), + [anon_sym_DOT_DOT] = ACTIONS(5044), + [anon_sym_and] = ACTIONS(5044), + [anon_sym_or] = ACTIONS(5044), + [anon_sym_AMP_AMP] = ACTIONS(5044), + [anon_sym_PIPE_PIPE] = ACTIONS(5044), + [anon_sym_QMARK_QMARK] = ACTIONS(5044), + [anon_sym_into] = ACTIONS(5044), + [anon_sym_on] = ACTIONS(5044), + [anon_sym_equals] = ACTIONS(5044), + [anon_sym_by] = ACTIONS(5044), + [anon_sym_as] = ACTIONS(5044), + [anon_sym_is] = ACTIONS(5044), + [anon_sym_DASH_GT] = ACTIONS(5044), + [anon_sym_with] = ACTIONS(5044), + [aux_sym_preproc_if_token3] = ACTIONS(5044), + [aux_sym_preproc_else_token1] = ACTIONS(5044), + [aux_sym_preproc_elif_token1] = ACTIONS(5044), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -492060,57 +491542,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(5016), - [anon_sym_LBRACK] = ACTIONS(5016), - [anon_sym_COLON] = ACTIONS(5016), - [anon_sym_COMMA] = ACTIONS(5016), - [anon_sym_RBRACK] = ACTIONS(5016), - [anon_sym_LPAREN] = ACTIONS(5016), - [anon_sym_RPAREN] = ACTIONS(5016), - [anon_sym_RBRACE] = ACTIONS(5016), - [anon_sym_LT] = ACTIONS(5018), - [anon_sym_GT] = ACTIONS(5018), - [anon_sym_in] = ACTIONS(5018), - [anon_sym_QMARK] = ACTIONS(5018), - [anon_sym_BANG] = ACTIONS(5018), - [anon_sym_PLUS_PLUS] = ACTIONS(5016), - [anon_sym_DASH_DASH] = ACTIONS(5016), - [anon_sym_PLUS] = ACTIONS(5018), - [anon_sym_DASH] = ACTIONS(5018), - [anon_sym_STAR] = ACTIONS(5016), - [anon_sym_SLASH] = ACTIONS(5018), - [anon_sym_PERCENT] = ACTIONS(5016), - [anon_sym_CARET] = ACTIONS(5016), - [anon_sym_PIPE] = ACTIONS(5018), - [anon_sym_AMP] = ACTIONS(5018), - [anon_sym_LT_LT] = ACTIONS(5016), - [anon_sym_GT_GT] = ACTIONS(5018), - [anon_sym_GT_GT_GT] = ACTIONS(5016), - [anon_sym_EQ_EQ] = ACTIONS(5016), - [anon_sym_BANG_EQ] = ACTIONS(5016), - [anon_sym_GT_EQ] = ACTIONS(5016), - [anon_sym_LT_EQ] = ACTIONS(5016), - [anon_sym_DOT] = ACTIONS(5018), - [anon_sym_EQ_GT] = ACTIONS(5016), - [anon_sym_switch] = ACTIONS(5016), - [anon_sym_when] = ACTIONS(5016), - [anon_sym_DOT_DOT] = ACTIONS(5016), - [anon_sym_and] = ACTIONS(5016), - [anon_sym_or] = ACTIONS(5016), - [anon_sym_AMP_AMP] = ACTIONS(5016), - [anon_sym_PIPE_PIPE] = ACTIONS(5016), - [anon_sym_QMARK_QMARK] = ACTIONS(5016), - [anon_sym_into] = ACTIONS(5016), - [anon_sym_on] = ACTIONS(5016), - [anon_sym_equals] = ACTIONS(5016), - [anon_sym_by] = ACTIONS(5016), - [anon_sym_as] = ACTIONS(5016), - [anon_sym_is] = ACTIONS(5016), - [anon_sym_DASH_GT] = ACTIONS(5016), - [anon_sym_with] = ACTIONS(5016), - [aux_sym_preproc_if_token3] = ACTIONS(5016), - [aux_sym_preproc_else_token1] = ACTIONS(5016), - [aux_sym_preproc_elif_token1] = ACTIONS(5016), + [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_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), @@ -492132,57 +491614,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(4892), - [anon_sym_LBRACK] = ACTIONS(4892), - [anon_sym_COLON] = ACTIONS(4892), - [anon_sym_COMMA] = ACTIONS(4892), - [anon_sym_RBRACK] = ACTIONS(4892), - [anon_sym_LPAREN] = ACTIONS(4892), - [anon_sym_RPAREN] = ACTIONS(4892), - [anon_sym_RBRACE] = ACTIONS(4892), - [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(4892), - [anon_sym_DASH_DASH] = ACTIONS(4892), - [anon_sym_PLUS] = ACTIONS(4894), - [anon_sym_DASH] = ACTIONS(4894), - [anon_sym_STAR] = ACTIONS(4892), - [anon_sym_SLASH] = ACTIONS(4894), - [anon_sym_PERCENT] = ACTIONS(4892), - [anon_sym_CARET] = ACTIONS(4892), - [anon_sym_PIPE] = ACTIONS(4894), - [anon_sym_AMP] = ACTIONS(4894), - [anon_sym_LT_LT] = ACTIONS(4892), - [anon_sym_GT_GT] = ACTIONS(4894), - [anon_sym_GT_GT_GT] = ACTIONS(4892), - [anon_sym_EQ_EQ] = ACTIONS(4892), - [anon_sym_BANG_EQ] = ACTIONS(4892), - [anon_sym_GT_EQ] = ACTIONS(4892), - [anon_sym_LT_EQ] = ACTIONS(4892), - [anon_sym_DOT] = ACTIONS(4894), - [anon_sym_EQ_GT] = ACTIONS(4892), - [anon_sym_switch] = ACTIONS(4892), - [anon_sym_when] = ACTIONS(4892), - [anon_sym_DOT_DOT] = ACTIONS(4892), - [anon_sym_and] = ACTIONS(4892), - [anon_sym_or] = ACTIONS(4892), - [anon_sym_AMP_AMP] = ACTIONS(4892), - [anon_sym_PIPE_PIPE] = ACTIONS(4892), - [anon_sym_QMARK_QMARK] = ACTIONS(4892), - [anon_sym_into] = ACTIONS(4892), - [anon_sym_on] = ACTIONS(4892), - [anon_sym_equals] = ACTIONS(4892), - [anon_sym_by] = ACTIONS(4892), - [anon_sym_as] = ACTIONS(4892), - [anon_sym_is] = ACTIONS(4892), - [anon_sym_DASH_GT] = ACTIONS(4892), - [anon_sym_with] = ACTIONS(4892), - [aux_sym_preproc_if_token3] = ACTIONS(4892), - [aux_sym_preproc_else_token1] = ACTIONS(4892), - [aux_sym_preproc_elif_token1] = ACTIONS(4892), + [anon_sym_SEMI] = ACTIONS(4941), + [anon_sym_LBRACK] = ACTIONS(4941), + [anon_sym_COLON] = ACTIONS(4941), + [anon_sym_COMMA] = ACTIONS(4941), + [anon_sym_RBRACK] = ACTIONS(4941), + [anon_sym_LPAREN] = ACTIONS(4941), + [anon_sym_RPAREN] = ACTIONS(4941), + [anon_sym_RBRACE] = ACTIONS(4941), + [anon_sym_LT] = ACTIONS(4943), + [anon_sym_GT] = ACTIONS(4943), + [anon_sym_in] = ACTIONS(4943), + [anon_sym_QMARK] = ACTIONS(4943), + [anon_sym_BANG] = ACTIONS(4943), + [anon_sym_PLUS_PLUS] = ACTIONS(4941), + [anon_sym_DASH_DASH] = ACTIONS(4941), + [anon_sym_PLUS] = ACTIONS(4943), + [anon_sym_DASH] = ACTIONS(4943), + [anon_sym_STAR] = ACTIONS(4941), + [anon_sym_SLASH] = ACTIONS(4943), + [anon_sym_PERCENT] = ACTIONS(4941), + [anon_sym_CARET] = ACTIONS(4941), + [anon_sym_PIPE] = ACTIONS(4943), + [anon_sym_AMP] = ACTIONS(4943), + [anon_sym_LT_LT] = ACTIONS(4941), + [anon_sym_GT_GT] = ACTIONS(4943), + [anon_sym_GT_GT_GT] = ACTIONS(4941), + [anon_sym_EQ_EQ] = ACTIONS(4941), + [anon_sym_BANG_EQ] = ACTIONS(4941), + [anon_sym_GT_EQ] = ACTIONS(4941), + [anon_sym_LT_EQ] = ACTIONS(4941), + [anon_sym_DOT] = ACTIONS(4943), + [anon_sym_EQ_GT] = ACTIONS(4941), + [anon_sym_switch] = ACTIONS(4941), + [anon_sym_when] = ACTIONS(4941), + [anon_sym_DOT_DOT] = ACTIONS(4941), + [anon_sym_and] = ACTIONS(4941), + [anon_sym_or] = ACTIONS(4941), + [anon_sym_AMP_AMP] = ACTIONS(4941), + [anon_sym_PIPE_PIPE] = ACTIONS(4941), + [anon_sym_QMARK_QMARK] = ACTIONS(4941), + [anon_sym_into] = ACTIONS(4941), + [anon_sym_on] = ACTIONS(4941), + [anon_sym_equals] = ACTIONS(4941), + [anon_sym_by] = ACTIONS(4941), + [anon_sym_as] = ACTIONS(4941), + [anon_sym_is] = ACTIONS(4941), + [anon_sym_DASH_GT] = ACTIONS(4941), + [anon_sym_with] = ACTIONS(4941), + [aux_sym_preproc_if_token3] = ACTIONS(4941), + [aux_sym_preproc_else_token1] = ACTIONS(4941), + [aux_sym_preproc_elif_token1] = ACTIONS(4941), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -492204,57 +491686,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), - [sym__identifier_token] = ACTIONS(3482), - [anon_sym_extern] = ACTIONS(3482), - [anon_sym_alias] = ACTIONS(5371), - [anon_sym_global] = ACTIONS(3482), - [anon_sym_unsafe] = ACTIONS(3482), - [anon_sym_static] = ACTIONS(3482), - [anon_sym_LPAREN] = ACTIONS(5084), - [anon_sym_class] = ACTIONS(3482), - [anon_sym_ref] = ACTIONS(3482), - [anon_sym_struct] = ACTIONS(3482), - [anon_sym_enum] = ACTIONS(3482), - [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_scoped] = ACTIONS(3482), - [anon_sym_var] = ACTIONS(3482), - [sym_predefined_type] = ACTIONS(3482), - [anon_sym_yield] = ACTIONS(3482), - [anon_sym_when] = ACTIONS(3482), - [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_SEMI] = ACTIONS(4102), + [anon_sym_LBRACK] = ACTIONS(4102), + [anon_sym_COLON] = ACTIONS(4102), + [anon_sym_COMMA] = ACTIONS(4102), + [anon_sym_RBRACK] = ACTIONS(4102), + [anon_sym_LPAREN] = ACTIONS(4102), + [anon_sym_RPAREN] = ACTIONS(4102), + [anon_sym_LBRACE] = ACTIONS(4102), + [anon_sym_RBRACE] = ACTIONS(4102), + [anon_sym_LT] = ACTIONS(4100), + [anon_sym_GT] = ACTIONS(4100), + [anon_sym_in] = ACTIONS(4102), + [anon_sym_QMARK] = ACTIONS(4100), + [anon_sym_BANG] = ACTIONS(4100), + [anon_sym_PLUS_PLUS] = ACTIONS(4102), + [anon_sym_DASH_DASH] = ACTIONS(4102), + [anon_sym_PLUS] = ACTIONS(4100), + [anon_sym_DASH] = ACTIONS(4100), + [anon_sym_STAR] = ACTIONS(4102), + [anon_sym_SLASH] = ACTIONS(4100), + [anon_sym_PERCENT] = ACTIONS(4102), + [anon_sym_CARET] = ACTIONS(4102), + [anon_sym_PIPE] = ACTIONS(4100), + [anon_sym_AMP] = ACTIONS(4100), + [anon_sym_LT_LT] = ACTIONS(4102), + [anon_sym_GT_GT] = ACTIONS(4100), + [anon_sym_GT_GT_GT] = ACTIONS(4102), + [anon_sym_EQ_EQ] = ACTIONS(4102), + [anon_sym_BANG_EQ] = ACTIONS(4102), + [anon_sym_GT_EQ] = ACTIONS(4102), + [anon_sym_LT_EQ] = ACTIONS(4102), + [anon_sym_DOT] = ACTIONS(4100), + [anon_sym_EQ_GT] = ACTIONS(4102), + [anon_sym_switch] = ACTIONS(4102), + [anon_sym_when] = ACTIONS(4102), + [anon_sym_DOT_DOT] = ACTIONS(4102), + [anon_sym_and] = ACTIONS(4102), + [anon_sym_or] = ACTIONS(4102), + [anon_sym_AMP_AMP] = ACTIONS(4102), + [anon_sym_PIPE_PIPE] = ACTIONS(4102), + [anon_sym_QMARK_QMARK] = ACTIONS(4102), + [anon_sym_on] = ACTIONS(4102), + [anon_sym_equals] = ACTIONS(4102), + [anon_sym_by] = ACTIONS(4102), + [anon_sym_as] = ACTIONS(4102), + [anon_sym_is] = ACTIONS(4102), + [anon_sym_DASH_GT] = ACTIONS(4102), + [anon_sym_with] = ACTIONS(4102), + [aux_sym_preproc_if_token3] = ACTIONS(4102), + [aux_sym_preproc_else_token1] = ACTIONS(4102), + [aux_sym_preproc_elif_token1] = ACTIONS(4102), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -492276,57 +491758,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(5373), - [anon_sym_LBRACK] = ACTIONS(5373), - [anon_sym_COLON] = ACTIONS(5373), - [anon_sym_COMMA] = ACTIONS(5373), - [anon_sym_RBRACK] = ACTIONS(5373), - [anon_sym_LPAREN] = ACTIONS(5373), - [anon_sym_RPAREN] = ACTIONS(5373), - [anon_sym_RBRACE] = ACTIONS(5373), - [anon_sym_LT] = ACTIONS(5375), - [anon_sym_GT] = ACTIONS(5375), - [anon_sym_in] = ACTIONS(5375), - [anon_sym_QMARK] = ACTIONS(5375), - [anon_sym_BANG] = ACTIONS(5375), - [anon_sym_PLUS_PLUS] = ACTIONS(5373), - [anon_sym_DASH_DASH] = ACTIONS(5373), - [anon_sym_PLUS] = ACTIONS(5375), - [anon_sym_DASH] = ACTIONS(5375), - [anon_sym_STAR] = ACTIONS(5373), - [anon_sym_SLASH] = ACTIONS(5375), - [anon_sym_PERCENT] = ACTIONS(5373), - [anon_sym_CARET] = ACTIONS(5373), - [anon_sym_PIPE] = ACTIONS(5375), - [anon_sym_AMP] = ACTIONS(5375), - [anon_sym_LT_LT] = ACTIONS(5373), - [anon_sym_GT_GT] = ACTIONS(5375), - [anon_sym_GT_GT_GT] = ACTIONS(5373), - [anon_sym_EQ_EQ] = ACTIONS(5373), - [anon_sym_BANG_EQ] = ACTIONS(5373), - [anon_sym_GT_EQ] = ACTIONS(5373), - [anon_sym_LT_EQ] = ACTIONS(5373), - [anon_sym_DOT] = ACTIONS(5375), - [anon_sym_EQ_GT] = ACTIONS(5373), - [anon_sym_switch] = ACTIONS(5373), - [anon_sym_when] = ACTIONS(5373), - [anon_sym_DOT_DOT] = ACTIONS(5373), - [anon_sym_and] = ACTIONS(5373), - [anon_sym_or] = ACTIONS(5373), - [anon_sym_AMP_AMP] = ACTIONS(5373), - [anon_sym_PIPE_PIPE] = ACTIONS(5373), - [anon_sym_QMARK_QMARK] = ACTIONS(5373), - [anon_sym_into] = ACTIONS(5373), - [anon_sym_on] = ACTIONS(5373), - [anon_sym_equals] = ACTIONS(5373), - [anon_sym_by] = ACTIONS(5373), - [anon_sym_as] = ACTIONS(5373), - [anon_sym_is] = ACTIONS(5373), - [anon_sym_DASH_GT] = ACTIONS(5373), - [anon_sym_with] = ACTIONS(5373), - [aux_sym_preproc_if_token3] = ACTIONS(5373), - [aux_sym_preproc_else_token1] = ACTIONS(5373), - [aux_sym_preproc_elif_token1] = ACTIONS(5373), + [anon_sym_SEMI] = ACTIONS(5056), + [anon_sym_LBRACK] = ACTIONS(5056), + [anon_sym_COLON] = ACTIONS(5056), + [anon_sym_COMMA] = ACTIONS(5056), + [anon_sym_RBRACK] = ACTIONS(5056), + [anon_sym_LPAREN] = ACTIONS(5056), + [anon_sym_RPAREN] = ACTIONS(5056), + [anon_sym_RBRACE] = ACTIONS(5056), + [anon_sym_LT] = ACTIONS(5058), + [anon_sym_GT] = ACTIONS(5058), + [anon_sym_in] = ACTIONS(5058), + [anon_sym_QMARK] = ACTIONS(5058), + [anon_sym_BANG] = ACTIONS(5058), + [anon_sym_PLUS_PLUS] = ACTIONS(5056), + [anon_sym_DASH_DASH] = ACTIONS(5056), + [anon_sym_PLUS] = ACTIONS(5058), + [anon_sym_DASH] = ACTIONS(5058), + [anon_sym_STAR] = ACTIONS(5056), + [anon_sym_SLASH] = ACTIONS(5058), + [anon_sym_PERCENT] = ACTIONS(5056), + [anon_sym_CARET] = ACTIONS(5056), + [anon_sym_PIPE] = ACTIONS(5058), + [anon_sym_AMP] = ACTIONS(5058), + [anon_sym_LT_LT] = ACTIONS(5056), + [anon_sym_GT_GT] = ACTIONS(5058), + [anon_sym_GT_GT_GT] = ACTIONS(5056), + [anon_sym_EQ_EQ] = ACTIONS(5056), + [anon_sym_BANG_EQ] = ACTIONS(5056), + [anon_sym_GT_EQ] = ACTIONS(5056), + [anon_sym_LT_EQ] = ACTIONS(5056), + [anon_sym_DOT] = ACTIONS(5058), + [anon_sym_EQ_GT] = ACTIONS(5056), + [anon_sym_switch] = ACTIONS(5056), + [anon_sym_when] = ACTIONS(5056), + [anon_sym_DOT_DOT] = ACTIONS(5056), + [anon_sym_and] = ACTIONS(5056), + [anon_sym_or] = ACTIONS(5056), + [anon_sym_AMP_AMP] = ACTIONS(5056), + [anon_sym_PIPE_PIPE] = ACTIONS(5056), + [anon_sym_QMARK_QMARK] = ACTIONS(5056), + [anon_sym_into] = ACTIONS(5056), + [anon_sym_on] = ACTIONS(5056), + [anon_sym_equals] = ACTIONS(5056), + [anon_sym_by] = ACTIONS(5056), + [anon_sym_as] = ACTIONS(5056), + [anon_sym_is] = ACTIONS(5056), + [anon_sym_DASH_GT] = ACTIONS(5056), + [anon_sym_with] = ACTIONS(5056), + [aux_sym_preproc_if_token3] = ACTIONS(5056), + [aux_sym_preproc_else_token1] = ACTIONS(5056), + [aux_sym_preproc_elif_token1] = ACTIONS(5056), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -492348,67 +491830,67 @@ 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(3996), - [anon_sym_LBRACK] = ACTIONS(3996), - [anon_sym_COLON] = ACTIONS(3996), - [anon_sym_COMMA] = ACTIONS(3996), - [anon_sym_RBRACK] = ACTIONS(3996), - [anon_sym_LPAREN] = ACTIONS(3996), - [anon_sym_RPAREN] = ACTIONS(3996), - [anon_sym_LBRACE] = ACTIONS(3996), - [anon_sym_RBRACE] = ACTIONS(3996), - [anon_sym_LT] = ACTIONS(3994), - [anon_sym_GT] = ACTIONS(3994), - [anon_sym_in] = ACTIONS(3996), - [anon_sym_QMARK] = ACTIONS(3994), - [anon_sym_BANG] = ACTIONS(3994), - [anon_sym_PLUS_PLUS] = ACTIONS(3996), - [anon_sym_DASH_DASH] = ACTIONS(3996), - [anon_sym_PLUS] = ACTIONS(3994), - [anon_sym_DASH] = ACTIONS(3994), - [anon_sym_STAR] = ACTIONS(3996), - [anon_sym_SLASH] = ACTIONS(3994), - [anon_sym_PERCENT] = ACTIONS(3996), - [anon_sym_CARET] = ACTIONS(3996), - [anon_sym_PIPE] = ACTIONS(3994), - [anon_sym_AMP] = ACTIONS(3994), - [anon_sym_LT_LT] = ACTIONS(3996), - [anon_sym_GT_GT] = ACTIONS(3994), - [anon_sym_GT_GT_GT] = ACTIONS(3996), - [anon_sym_EQ_EQ] = ACTIONS(3996), - [anon_sym_BANG_EQ] = ACTIONS(3996), - [anon_sym_GT_EQ] = ACTIONS(3996), - [anon_sym_LT_EQ] = ACTIONS(3996), - [anon_sym_DOT] = ACTIONS(3994), - [anon_sym_EQ_GT] = ACTIONS(3996), - [anon_sym_switch] = ACTIONS(3996), - [anon_sym_when] = ACTIONS(3996), - [anon_sym_DOT_DOT] = ACTIONS(3996), - [anon_sym_and] = ACTIONS(3996), - [anon_sym_or] = ACTIONS(3996), - [anon_sym_AMP_AMP] = ACTIONS(3996), - [anon_sym_PIPE_PIPE] = ACTIONS(3996), - [anon_sym_QMARK_QMARK] = ACTIONS(3996), - [anon_sym_on] = ACTIONS(3996), - [anon_sym_equals] = ACTIONS(3996), - [anon_sym_by] = ACTIONS(3996), - [anon_sym_as] = ACTIONS(3996), - [anon_sym_is] = ACTIONS(3996), - [anon_sym_DASH_GT] = ACTIONS(3996), - [anon_sym_with] = ACTIONS(3996), - [aux_sym_preproc_if_token3] = ACTIONS(3996), - [aux_sym_preproc_else_token1] = ACTIONS(3996), - [aux_sym_preproc_elif_token1] = ACTIONS(3996), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_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_SEMI] = ACTIONS(4945), + [anon_sym_LBRACK] = ACTIONS(4945), + [anon_sym_COLON] = ACTIONS(4945), + [anon_sym_COMMA] = ACTIONS(4945), + [anon_sym_RBRACK] = ACTIONS(4945), + [anon_sym_LPAREN] = ACTIONS(4945), + [anon_sym_RPAREN] = ACTIONS(4945), + [anon_sym_RBRACE] = ACTIONS(4945), + [anon_sym_LT] = ACTIONS(4947), + [anon_sym_GT] = ACTIONS(4947), + [anon_sym_in] = ACTIONS(4947), + [anon_sym_QMARK] = ACTIONS(4947), + [anon_sym_BANG] = ACTIONS(4947), + [anon_sym_PLUS_PLUS] = ACTIONS(4945), + [anon_sym_DASH_DASH] = ACTIONS(4945), + [anon_sym_PLUS] = ACTIONS(4947), + [anon_sym_DASH] = ACTIONS(4947), + [anon_sym_STAR] = ACTIONS(4945), + [anon_sym_SLASH] = ACTIONS(4947), + [anon_sym_PERCENT] = ACTIONS(4945), + [anon_sym_CARET] = ACTIONS(4945), + [anon_sym_PIPE] = ACTIONS(4947), + [anon_sym_AMP] = ACTIONS(4947), + [anon_sym_LT_LT] = ACTIONS(4945), + [anon_sym_GT_GT] = ACTIONS(4947), + [anon_sym_GT_GT_GT] = ACTIONS(4945), + [anon_sym_EQ_EQ] = ACTIONS(4945), + [anon_sym_BANG_EQ] = ACTIONS(4945), + [anon_sym_GT_EQ] = ACTIONS(4945), + [anon_sym_LT_EQ] = ACTIONS(4945), + [anon_sym_DOT] = ACTIONS(4947), + [anon_sym_EQ_GT] = ACTIONS(4945), + [anon_sym_switch] = ACTIONS(4945), + [anon_sym_when] = ACTIONS(4945), + [anon_sym_DOT_DOT] = ACTIONS(4945), + [anon_sym_and] = ACTIONS(4945), + [anon_sym_or] = ACTIONS(4945), + [anon_sym_AMP_AMP] = ACTIONS(4945), + [anon_sym_PIPE_PIPE] = ACTIONS(4945), + [anon_sym_QMARK_QMARK] = ACTIONS(4945), + [anon_sym_into] = ACTIONS(4945), + [anon_sym_on] = ACTIONS(4945), + [anon_sym_equals] = ACTIONS(4945), + [anon_sym_by] = ACTIONS(4945), + [anon_sym_as] = ACTIONS(4945), + [anon_sym_is] = ACTIONS(4945), + [anon_sym_DASH_GT] = ACTIONS(4945), + [anon_sym_with] = ACTIONS(4945), + [aux_sym_preproc_if_token3] = ACTIONS(4945), + [aux_sym_preproc_else_token1] = ACTIONS(4945), + [aux_sym_preproc_elif_token1] = ACTIONS(4945), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), }, [3297] = { [sym_preproc_region] = STATE(3297), @@ -492420,57 +491902,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(4110), - [anon_sym_LBRACK] = ACTIONS(4110), - [anon_sym_COLON] = ACTIONS(4110), - [anon_sym_COMMA] = ACTIONS(4110), - [anon_sym_RBRACK] = ACTIONS(4110), - [anon_sym_LPAREN] = ACTIONS(4110), - [anon_sym_RPAREN] = ACTIONS(4110), - [anon_sym_LBRACE] = ACTIONS(4110), - [anon_sym_RBRACE] = ACTIONS(4110), - [anon_sym_LT] = ACTIONS(4108), - [anon_sym_GT] = ACTIONS(4108), - [anon_sym_in] = ACTIONS(4110), - [anon_sym_QMARK] = ACTIONS(4108), - [anon_sym_BANG] = ACTIONS(4108), - [anon_sym_PLUS_PLUS] = ACTIONS(4110), - [anon_sym_DASH_DASH] = ACTIONS(4110), - [anon_sym_PLUS] = ACTIONS(4108), - [anon_sym_DASH] = ACTIONS(4108), - [anon_sym_STAR] = ACTIONS(4110), - [anon_sym_SLASH] = ACTIONS(4108), - [anon_sym_PERCENT] = ACTIONS(4110), - [anon_sym_CARET] = ACTIONS(4110), - [anon_sym_PIPE] = ACTIONS(4108), - [anon_sym_AMP] = ACTIONS(4108), - [anon_sym_LT_LT] = ACTIONS(4110), - [anon_sym_GT_GT] = ACTIONS(4108), - [anon_sym_GT_GT_GT] = ACTIONS(4110), - [anon_sym_EQ_EQ] = ACTIONS(4110), - [anon_sym_BANG_EQ] = ACTIONS(4110), - [anon_sym_GT_EQ] = ACTIONS(4110), - [anon_sym_LT_EQ] = ACTIONS(4110), - [anon_sym_DOT] = ACTIONS(4108), - [anon_sym_EQ_GT] = ACTIONS(4110), - [anon_sym_switch] = ACTIONS(4110), - [anon_sym_when] = ACTIONS(4110), - [anon_sym_DOT_DOT] = ACTIONS(4110), - [anon_sym_and] = ACTIONS(4110), - [anon_sym_or] = ACTIONS(4110), - [anon_sym_AMP_AMP] = ACTIONS(4110), - [anon_sym_PIPE_PIPE] = ACTIONS(4110), - [anon_sym_QMARK_QMARK] = ACTIONS(4110), - [anon_sym_on] = ACTIONS(4110), - [anon_sym_equals] = ACTIONS(4110), - [anon_sym_by] = ACTIONS(4110), - [anon_sym_as] = ACTIONS(4110), - [anon_sym_is] = ACTIONS(4110), - [anon_sym_DASH_GT] = ACTIONS(4110), - [anon_sym_with] = ACTIONS(4110), - [aux_sym_preproc_if_token3] = ACTIONS(4110), - [aux_sym_preproc_else_token1] = ACTIONS(4110), - [aux_sym_preproc_elif_token1] = ACTIONS(4110), + [anon_sym_SEMI] = ACTIONS(3990), + [anon_sym_LBRACK] = ACTIONS(3990), + [anon_sym_COLON] = ACTIONS(3990), + [anon_sym_COMMA] = ACTIONS(3990), + [anon_sym_RBRACK] = ACTIONS(3990), + [anon_sym_LPAREN] = ACTIONS(3990), + [anon_sym_RPAREN] = ACTIONS(3990), + [anon_sym_LBRACE] = ACTIONS(3990), + [anon_sym_RBRACE] = ACTIONS(3990), + [anon_sym_LT] = ACTIONS(3988), + [anon_sym_GT] = ACTIONS(3988), + [anon_sym_in] = ACTIONS(3990), + [anon_sym_QMARK] = ACTIONS(3988), + [anon_sym_BANG] = ACTIONS(3988), + [anon_sym_PLUS_PLUS] = ACTIONS(3990), + [anon_sym_DASH_DASH] = ACTIONS(3990), + [anon_sym_PLUS] = ACTIONS(3988), + [anon_sym_DASH] = ACTIONS(3988), + [anon_sym_STAR] = ACTIONS(3990), + [anon_sym_SLASH] = ACTIONS(3988), + [anon_sym_PERCENT] = ACTIONS(3990), + [anon_sym_CARET] = ACTIONS(3990), + [anon_sym_PIPE] = ACTIONS(3988), + [anon_sym_AMP] = ACTIONS(3988), + [anon_sym_LT_LT] = ACTIONS(3990), + [anon_sym_GT_GT] = ACTIONS(3988), + [anon_sym_GT_GT_GT] = ACTIONS(3990), + [anon_sym_EQ_EQ] = ACTIONS(3990), + [anon_sym_BANG_EQ] = ACTIONS(3990), + [anon_sym_GT_EQ] = ACTIONS(3990), + [anon_sym_LT_EQ] = ACTIONS(3990), + [anon_sym_DOT] = ACTIONS(3988), + [anon_sym_EQ_GT] = ACTIONS(3990), + [anon_sym_switch] = ACTIONS(3990), + [anon_sym_when] = ACTIONS(3990), + [anon_sym_DOT_DOT] = ACTIONS(3990), + [anon_sym_and] = ACTIONS(3990), + [anon_sym_or] = ACTIONS(3990), + [anon_sym_AMP_AMP] = ACTIONS(3990), + [anon_sym_PIPE_PIPE] = ACTIONS(3990), + [anon_sym_QMARK_QMARK] = ACTIONS(3990), + [anon_sym_on] = ACTIONS(3990), + [anon_sym_equals] = ACTIONS(3990), + [anon_sym_by] = ACTIONS(3990), + [anon_sym_as] = ACTIONS(3990), + [anon_sym_is] = ACTIONS(3990), + [anon_sym_DASH_GT] = ACTIONS(3990), + [anon_sym_with] = ACTIONS(3990), + [aux_sym_preproc_if_token3] = ACTIONS(3990), + [aux_sym_preproc_else_token1] = ACTIONS(3990), + [aux_sym_preproc_elif_token1] = ACTIONS(3990), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -492492,57 +491974,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(3981), - [anon_sym_LBRACK] = ACTIONS(3981), - [anon_sym_COLON] = ACTIONS(3981), - [anon_sym_COMMA] = ACTIONS(3981), - [anon_sym_RBRACK] = ACTIONS(3981), - [anon_sym_LPAREN] = ACTIONS(3981), - [anon_sym_RPAREN] = ACTIONS(3981), - [anon_sym_LBRACE] = ACTIONS(3981), - [anon_sym_RBRACE] = ACTIONS(3981), - [anon_sym_LT] = ACTIONS(3979), - [anon_sym_GT] = ACTIONS(3979), - [anon_sym_in] = ACTIONS(3981), - [anon_sym_QMARK] = ACTIONS(3979), - [anon_sym_BANG] = ACTIONS(3979), - [anon_sym_PLUS_PLUS] = ACTIONS(3981), - [anon_sym_DASH_DASH] = ACTIONS(3981), - [anon_sym_PLUS] = ACTIONS(3979), - [anon_sym_DASH] = ACTIONS(3979), - [anon_sym_STAR] = ACTIONS(3981), - [anon_sym_SLASH] = ACTIONS(3979), - [anon_sym_PERCENT] = ACTIONS(3981), - [anon_sym_CARET] = ACTIONS(3981), - [anon_sym_PIPE] = ACTIONS(3979), - [anon_sym_AMP] = ACTIONS(3979), - [anon_sym_LT_LT] = ACTIONS(3981), - [anon_sym_GT_GT] = ACTIONS(3979), - [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(3979), - [anon_sym_EQ_GT] = ACTIONS(3981), - [anon_sym_switch] = ACTIONS(3981), - [anon_sym_when] = ACTIONS(3981), - [anon_sym_DOT_DOT] = ACTIONS(3981), - [anon_sym_and] = ACTIONS(3981), - [anon_sym_or] = ACTIONS(3981), - [anon_sym_AMP_AMP] = ACTIONS(3981), - [anon_sym_PIPE_PIPE] = ACTIONS(3981), - [anon_sym_QMARK_QMARK] = ACTIONS(3981), - [anon_sym_on] = ACTIONS(3981), - [anon_sym_equals] = ACTIONS(3981), - [anon_sym_by] = ACTIONS(3981), - [anon_sym_as] = ACTIONS(3981), - [anon_sym_is] = ACTIONS(3981), - [anon_sym_DASH_GT] = ACTIONS(3981), - [anon_sym_with] = ACTIONS(3981), - [aux_sym_preproc_if_token3] = ACTIONS(3981), - [aux_sym_preproc_else_token1] = ACTIONS(3981), - [aux_sym_preproc_elif_token1] = ACTIONS(3981), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -492564,57 +492046,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(5377), - [anon_sym_LBRACK] = ACTIONS(5377), - [anon_sym_COLON] = ACTIONS(5377), - [anon_sym_COMMA] = ACTIONS(5377), - [anon_sym_RBRACK] = ACTIONS(5377), - [anon_sym_LPAREN] = ACTIONS(5377), - [anon_sym_RPAREN] = ACTIONS(5377), - [anon_sym_RBRACE] = ACTIONS(5377), - [anon_sym_LT] = ACTIONS(5379), - [anon_sym_GT] = ACTIONS(5379), - [anon_sym_in] = ACTIONS(5379), - [anon_sym_QMARK] = ACTIONS(5379), - [anon_sym_BANG] = ACTIONS(5379), - [anon_sym_PLUS_PLUS] = ACTIONS(5377), - [anon_sym_DASH_DASH] = ACTIONS(5377), - [anon_sym_PLUS] = ACTIONS(5379), - [anon_sym_DASH] = ACTIONS(5379), - [anon_sym_STAR] = ACTIONS(5377), - [anon_sym_SLASH] = ACTIONS(5379), - [anon_sym_PERCENT] = ACTIONS(5377), - [anon_sym_CARET] = ACTIONS(5377), - [anon_sym_PIPE] = ACTIONS(5379), - [anon_sym_AMP] = ACTIONS(5379), - [anon_sym_LT_LT] = ACTIONS(5377), - [anon_sym_GT_GT] = ACTIONS(5379), - [anon_sym_GT_GT_GT] = ACTIONS(5377), - [anon_sym_EQ_EQ] = ACTIONS(5377), - [anon_sym_BANG_EQ] = ACTIONS(5377), - [anon_sym_GT_EQ] = ACTIONS(5377), - [anon_sym_LT_EQ] = ACTIONS(5377), - [anon_sym_DOT] = ACTIONS(5379), - [anon_sym_EQ_GT] = ACTIONS(5377), - [anon_sym_switch] = ACTIONS(5377), - [anon_sym_when] = ACTIONS(5377), - [anon_sym_DOT_DOT] = ACTIONS(5377), - [anon_sym_and] = ACTIONS(5377), - [anon_sym_or] = ACTIONS(5377), - [anon_sym_AMP_AMP] = ACTIONS(5377), - [anon_sym_PIPE_PIPE] = ACTIONS(5377), - [anon_sym_QMARK_QMARK] = ACTIONS(5377), - [anon_sym_into] = ACTIONS(5377), - [anon_sym_on] = ACTIONS(5377), - [anon_sym_equals] = ACTIONS(5377), - [anon_sym_by] = ACTIONS(5377), - [anon_sym_as] = ACTIONS(5377), - [anon_sym_is] = ACTIONS(5377), - [anon_sym_DASH_GT] = ACTIONS(5377), - [anon_sym_with] = ACTIONS(5377), - [aux_sym_preproc_if_token3] = ACTIONS(5377), - [aux_sym_preproc_else_token1] = ACTIONS(5377), - [aux_sym_preproc_elif_token1] = ACTIONS(5377), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -492636,57 +492118,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), - [sym__identifier_token] = ACTIONS(3482), - [anon_sym_extern] = ACTIONS(3482), - [anon_sym_alias] = ACTIONS(3482), - [anon_sym_global] = ACTIONS(3482), - [anon_sym_unsafe] = ACTIONS(3482), - [anon_sym_static] = ACTIONS(3482), - [anon_sym_LPAREN] = ACTIONS(5381), - [anon_sym_class] = ACTIONS(3482), - [anon_sym_ref] = ACTIONS(3482), - [anon_sym_struct] = ACTIONS(3482), - [anon_sym_enum] = ACTIONS(3482), - [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_scoped] = ACTIONS(3482), - [anon_sym_var] = ACTIONS(3482), - [sym_predefined_type] = ACTIONS(3482), - [anon_sym_yield] = ACTIONS(3482), - [anon_sym_when] = ACTIONS(3482), - [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_SEMI] = ACTIONS(3986), + [anon_sym_LBRACK] = ACTIONS(3986), + [anon_sym_COLON] = ACTIONS(3986), + [anon_sym_COMMA] = ACTIONS(3986), + [anon_sym_RBRACK] = ACTIONS(3986), + [anon_sym_LPAREN] = ACTIONS(3986), + [anon_sym_RPAREN] = ACTIONS(3986), + [anon_sym_LBRACE] = ACTIONS(3986), + [anon_sym_RBRACE] = ACTIONS(3986), + [anon_sym_LT] = ACTIONS(3984), + [anon_sym_GT] = ACTIONS(3984), + [anon_sym_in] = ACTIONS(3986), + [anon_sym_QMARK] = ACTIONS(3984), + [anon_sym_BANG] = ACTIONS(3984), + [anon_sym_PLUS_PLUS] = ACTIONS(3986), + [anon_sym_DASH_DASH] = ACTIONS(3986), + [anon_sym_PLUS] = ACTIONS(3984), + [anon_sym_DASH] = ACTIONS(3984), + [anon_sym_STAR] = ACTIONS(3986), + [anon_sym_SLASH] = ACTIONS(3984), + [anon_sym_PERCENT] = ACTIONS(3986), + [anon_sym_CARET] = ACTIONS(3986), + [anon_sym_PIPE] = ACTIONS(3984), + [anon_sym_AMP] = ACTIONS(3984), + [anon_sym_LT_LT] = ACTIONS(3986), + [anon_sym_GT_GT] = ACTIONS(3984), + [anon_sym_GT_GT_GT] = ACTIONS(3986), + [anon_sym_EQ_EQ] = ACTIONS(3986), + [anon_sym_BANG_EQ] = ACTIONS(3986), + [anon_sym_GT_EQ] = ACTIONS(3986), + [anon_sym_LT_EQ] = ACTIONS(3986), + [anon_sym_DOT] = ACTIONS(3984), + [anon_sym_EQ_GT] = ACTIONS(3986), + [anon_sym_switch] = ACTIONS(3986), + [anon_sym_when] = ACTIONS(3986), + [anon_sym_DOT_DOT] = ACTIONS(3986), + [anon_sym_and] = ACTIONS(3986), + [anon_sym_or] = ACTIONS(3986), + [anon_sym_AMP_AMP] = ACTIONS(3986), + [anon_sym_PIPE_PIPE] = ACTIONS(3986), + [anon_sym_QMARK_QMARK] = ACTIONS(3986), + [anon_sym_on] = ACTIONS(3986), + [anon_sym_equals] = ACTIONS(3986), + [anon_sym_by] = ACTIONS(3986), + [anon_sym_as] = ACTIONS(3986), + [anon_sym_is] = ACTIONS(3986), + [anon_sym_DASH_GT] = ACTIONS(3986), + [anon_sym_with] = ACTIONS(3986), + [aux_sym_preproc_if_token3] = ACTIONS(3986), + [aux_sym_preproc_else_token1] = ACTIONS(3986), + [aux_sym_preproc_elif_token1] = ACTIONS(3986), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -492708,57 +492190,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(4014), - [anon_sym_LBRACK] = ACTIONS(4014), - [anon_sym_COLON] = ACTIONS(4014), - [anon_sym_COMMA] = ACTIONS(4014), - [anon_sym_RBRACK] = ACTIONS(4014), - [anon_sym_LPAREN] = ACTIONS(4014), - [anon_sym_RPAREN] = ACTIONS(4014), - [anon_sym_LBRACE] = ACTIONS(4014), - [anon_sym_RBRACE] = ACTIONS(4014), - [anon_sym_LT] = ACTIONS(4012), - [anon_sym_GT] = ACTIONS(4012), - [anon_sym_in] = ACTIONS(4014), - [anon_sym_QMARK] = ACTIONS(4012), - [anon_sym_BANG] = ACTIONS(4012), - [anon_sym_PLUS_PLUS] = ACTIONS(4014), - [anon_sym_DASH_DASH] = ACTIONS(4014), - [anon_sym_PLUS] = ACTIONS(4012), - [anon_sym_DASH] = ACTIONS(4012), - [anon_sym_STAR] = ACTIONS(4014), - [anon_sym_SLASH] = ACTIONS(4012), - [anon_sym_PERCENT] = ACTIONS(4014), - [anon_sym_CARET] = ACTIONS(4014), - [anon_sym_PIPE] = ACTIONS(4012), - [anon_sym_AMP] = ACTIONS(4012), - [anon_sym_LT_LT] = ACTIONS(4014), - [anon_sym_GT_GT] = ACTIONS(4012), - [anon_sym_GT_GT_GT] = ACTIONS(4014), - [anon_sym_EQ_EQ] = ACTIONS(4014), - [anon_sym_BANG_EQ] = ACTIONS(4014), - [anon_sym_GT_EQ] = ACTIONS(4014), - [anon_sym_LT_EQ] = ACTIONS(4014), - [anon_sym_DOT] = ACTIONS(4012), - [anon_sym_EQ_GT] = ACTIONS(4014), - [anon_sym_switch] = ACTIONS(4014), - [anon_sym_when] = ACTIONS(4014), - [anon_sym_DOT_DOT] = ACTIONS(4014), - [anon_sym_and] = ACTIONS(4014), - [anon_sym_or] = ACTIONS(4014), - [anon_sym_AMP_AMP] = ACTIONS(4014), - [anon_sym_PIPE_PIPE] = ACTIONS(4014), - [anon_sym_QMARK_QMARK] = ACTIONS(4014), - [anon_sym_on] = ACTIONS(4014), - [anon_sym_equals] = ACTIONS(4014), - [anon_sym_by] = ACTIONS(4014), - [anon_sym_as] = ACTIONS(4014), - [anon_sym_is] = ACTIONS(4014), - [anon_sym_DASH_GT] = ACTIONS(4014), - [anon_sym_with] = ACTIONS(4014), - [aux_sym_preproc_if_token3] = ACTIONS(4014), - [aux_sym_preproc_else_token1] = ACTIONS(4014), - [aux_sym_preproc_elif_token1] = ACTIONS(4014), + [anon_sym_SEMI] = ACTIONS(5060), + [anon_sym_LBRACK] = ACTIONS(5060), + [anon_sym_COLON] = ACTIONS(5060), + [anon_sym_COMMA] = ACTIONS(5060), + [anon_sym_RBRACK] = ACTIONS(5060), + [anon_sym_LPAREN] = ACTIONS(5060), + [anon_sym_RPAREN] = ACTIONS(5060), + [anon_sym_RBRACE] = ACTIONS(5060), + [anon_sym_LT] = ACTIONS(5062), + [anon_sym_GT] = ACTIONS(5062), + [anon_sym_in] = ACTIONS(5062), + [anon_sym_QMARK] = ACTIONS(5062), + [anon_sym_BANG] = ACTIONS(5062), + [anon_sym_PLUS_PLUS] = ACTIONS(5060), + [anon_sym_DASH_DASH] = ACTIONS(5060), + [anon_sym_PLUS] = ACTIONS(5062), + [anon_sym_DASH] = ACTIONS(5062), + [anon_sym_STAR] = ACTIONS(5060), + [anon_sym_SLASH] = ACTIONS(5062), + [anon_sym_PERCENT] = ACTIONS(5060), + [anon_sym_CARET] = ACTIONS(5060), + [anon_sym_PIPE] = ACTIONS(5062), + [anon_sym_AMP] = ACTIONS(5062), + [anon_sym_LT_LT] = ACTIONS(5060), + [anon_sym_GT_GT] = ACTIONS(5062), + [anon_sym_GT_GT_GT] = ACTIONS(5060), + [anon_sym_EQ_EQ] = ACTIONS(5060), + [anon_sym_BANG_EQ] = ACTIONS(5060), + [anon_sym_GT_EQ] = ACTIONS(5060), + [anon_sym_LT_EQ] = ACTIONS(5060), + [anon_sym_DOT] = ACTIONS(5062), + [anon_sym_EQ_GT] = ACTIONS(5060), + [anon_sym_switch] = ACTIONS(5060), + [anon_sym_when] = ACTIONS(5060), + [anon_sym_DOT_DOT] = ACTIONS(5060), + [anon_sym_and] = ACTIONS(5060), + [anon_sym_or] = ACTIONS(5060), + [anon_sym_AMP_AMP] = ACTIONS(5060), + [anon_sym_PIPE_PIPE] = ACTIONS(5060), + [anon_sym_QMARK_QMARK] = ACTIONS(5060), + [anon_sym_into] = ACTIONS(5060), + [anon_sym_on] = ACTIONS(5060), + [anon_sym_equals] = ACTIONS(5060), + [anon_sym_by] = ACTIONS(5060), + [anon_sym_as] = ACTIONS(5060), + [anon_sym_is] = ACTIONS(5060), + [anon_sym_DASH_GT] = ACTIONS(5060), + [anon_sym_with] = ACTIONS(5060), + [aux_sym_preproc_if_token3] = ACTIONS(5060), + [aux_sym_preproc_else_token1] = ACTIONS(5060), + [aux_sym_preproc_elif_token1] = ACTIONS(5060), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -492780,57 +492262,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(4985), - [anon_sym_LBRACK] = ACTIONS(4985), - [anon_sym_COLON] = ACTIONS(4985), - [anon_sym_COMMA] = ACTIONS(4985), - [anon_sym_RBRACK] = ACTIONS(4985), - [anon_sym_LPAREN] = ACTIONS(4985), - [anon_sym_RPAREN] = ACTIONS(4985), - [anon_sym_RBRACE] = ACTIONS(4985), - [anon_sym_LT] = ACTIONS(4987), - [anon_sym_GT] = ACTIONS(4987), - [anon_sym_in] = ACTIONS(4987), - [anon_sym_QMARK] = ACTIONS(4987), - [anon_sym_BANG] = ACTIONS(4987), - [anon_sym_PLUS_PLUS] = ACTIONS(4985), - [anon_sym_DASH_DASH] = ACTIONS(4985), - [anon_sym_PLUS] = ACTIONS(4987), - [anon_sym_DASH] = ACTIONS(4987), - [anon_sym_STAR] = ACTIONS(4985), - [anon_sym_SLASH] = ACTIONS(4987), - [anon_sym_PERCENT] = ACTIONS(4985), - [anon_sym_CARET] = ACTIONS(4985), - [anon_sym_PIPE] = ACTIONS(4987), - [anon_sym_AMP] = ACTIONS(4987), - [anon_sym_LT_LT] = ACTIONS(4985), - [anon_sym_GT_GT] = ACTIONS(4987), - [anon_sym_GT_GT_GT] = ACTIONS(4985), - [anon_sym_EQ_EQ] = ACTIONS(4985), - [anon_sym_BANG_EQ] = ACTIONS(4985), - [anon_sym_GT_EQ] = ACTIONS(4985), - [anon_sym_LT_EQ] = ACTIONS(4985), - [anon_sym_DOT] = ACTIONS(4987), - [anon_sym_EQ_GT] = ACTIONS(4985), - [anon_sym_switch] = ACTIONS(4985), - [anon_sym_when] = ACTIONS(4985), - [anon_sym_DOT_DOT] = ACTIONS(4985), - [anon_sym_and] = ACTIONS(4985), - [anon_sym_or] = ACTIONS(4985), - [anon_sym_AMP_AMP] = ACTIONS(4985), - [anon_sym_PIPE_PIPE] = ACTIONS(4985), - [anon_sym_QMARK_QMARK] = ACTIONS(4985), - [anon_sym_into] = ACTIONS(4985), - [anon_sym_on] = ACTIONS(4985), - [anon_sym_equals] = ACTIONS(4985), - [anon_sym_by] = ACTIONS(4985), - [anon_sym_as] = ACTIONS(4985), - [anon_sym_is] = ACTIONS(4985), - [anon_sym_DASH_GT] = ACTIONS(4985), - [anon_sym_with] = ACTIONS(4985), - [aux_sym_preproc_if_token3] = ACTIONS(4985), - [aux_sym_preproc_else_token1] = ACTIONS(4985), - [aux_sym_preproc_elif_token1] = ACTIONS(4985), + [sym__identifier_token] = ACTIONS(3466), + [anon_sym_extern] = ACTIONS(3466), + [anon_sym_alias] = ACTIONS(5394), + [anon_sym_global] = ACTIONS(3466), + [anon_sym_unsafe] = ACTIONS(3466), + [anon_sym_static] = ACTIONS(3466), + [anon_sym_LPAREN] = ACTIONS(5128), + [anon_sym_class] = ACTIONS(3466), + [anon_sym_ref] = ACTIONS(3466), + [anon_sym_struct] = ACTIONS(3466), + [anon_sym_enum] = ACTIONS(3466), + [anon_sym_interface] = ACTIONS(3466), + [anon_sym_delegate] = ACTIONS(3466), + [anon_sym_record] = ACTIONS(3466), + [anon_sym_abstract] = ACTIONS(3466), + [anon_sym_async] = ACTIONS(3466), + [anon_sym_const] = ACTIONS(3466), + [anon_sym_file] = ACTIONS(3466), + [anon_sym_fixed] = ACTIONS(3466), + [anon_sym_internal] = ACTIONS(3466), + [anon_sym_new] = ACTIONS(3466), + [anon_sym_override] = ACTIONS(3466), + [anon_sym_partial] = ACTIONS(3466), + [anon_sym_private] = ACTIONS(3466), + [anon_sym_protected] = ACTIONS(3466), + [anon_sym_public] = ACTIONS(3466), + [anon_sym_readonly] = ACTIONS(3466), + [anon_sym_required] = ACTIONS(3466), + [anon_sym_sealed] = ACTIONS(3466), + [anon_sym_virtual] = ACTIONS(3466), + [anon_sym_volatile] = ACTIONS(3466), + [anon_sym_where] = ACTIONS(3466), + [anon_sym_notnull] = ACTIONS(3466), + [anon_sym_unmanaged] = ACTIONS(3466), + [anon_sym_scoped] = ACTIONS(3466), + [anon_sym_var] = ACTIONS(3466), + [sym_predefined_type] = ACTIONS(3466), + [anon_sym_yield] = ACTIONS(3466), + [anon_sym_when] = ACTIONS(3466), + [anon_sym_from] = ACTIONS(3466), + [anon_sym_into] = ACTIONS(3466), + [anon_sym_join] = ACTIONS(3466), + [anon_sym_on] = ACTIONS(3466), + [anon_sym_equals] = ACTIONS(3466), + [anon_sym_let] = ACTIONS(3466), + [anon_sym_orderby] = ACTIONS(3466), + [anon_sym_ascending] = ACTIONS(3466), + [anon_sym_descending] = ACTIONS(3466), + [anon_sym_group] = ACTIONS(3466), + [anon_sym_by] = ACTIONS(3466), + [anon_sym_select] = ACTIONS(3466), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -492852,57 +492334,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(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(5396), + [anon_sym_LBRACK] = ACTIONS(5396), + [anon_sym_COLON] = ACTIONS(5396), + [anon_sym_COMMA] = ACTIONS(5396), + [anon_sym_RBRACK] = ACTIONS(5396), + [anon_sym_LPAREN] = ACTIONS(5396), + [anon_sym_RPAREN] = ACTIONS(5396), + [anon_sym_RBRACE] = ACTIONS(5396), + [anon_sym_LT] = ACTIONS(5398), + [anon_sym_GT] = ACTIONS(5398), + [anon_sym_in] = ACTIONS(5398), + [anon_sym_QMARK] = ACTIONS(5398), + [anon_sym_BANG] = ACTIONS(5398), + [anon_sym_PLUS_PLUS] = ACTIONS(5396), + [anon_sym_DASH_DASH] = ACTIONS(5396), + [anon_sym_PLUS] = ACTIONS(5398), + [anon_sym_DASH] = ACTIONS(5398), + [anon_sym_STAR] = ACTIONS(5396), + [anon_sym_SLASH] = ACTIONS(5398), + [anon_sym_PERCENT] = ACTIONS(5396), + [anon_sym_CARET] = ACTIONS(5396), + [anon_sym_PIPE] = ACTIONS(5398), + [anon_sym_AMP] = ACTIONS(5398), + [anon_sym_LT_LT] = ACTIONS(5396), + [anon_sym_GT_GT] = ACTIONS(5398), + [anon_sym_GT_GT_GT] = ACTIONS(5396), + [anon_sym_EQ_EQ] = ACTIONS(5396), + [anon_sym_BANG_EQ] = ACTIONS(5396), + [anon_sym_GT_EQ] = ACTIONS(5396), + [anon_sym_LT_EQ] = ACTIONS(5396), + [anon_sym_DOT] = ACTIONS(5398), + [anon_sym_EQ_GT] = ACTIONS(5396), + [anon_sym_switch] = ACTIONS(5396), + [anon_sym_when] = ACTIONS(5396), + [anon_sym_DOT_DOT] = ACTIONS(5396), + [anon_sym_and] = ACTIONS(5396), + [anon_sym_or] = ACTIONS(5396), + [anon_sym_AMP_AMP] = ACTIONS(5396), + [anon_sym_PIPE_PIPE] = ACTIONS(5396), + [anon_sym_QMARK_QMARK] = ACTIONS(5396), + [anon_sym_into] = ACTIONS(5396), + [anon_sym_on] = ACTIONS(5396), + [anon_sym_equals] = ACTIONS(5396), + [anon_sym_by] = ACTIONS(5396), + [anon_sym_as] = ACTIONS(5396), + [anon_sym_is] = ACTIONS(5396), + [anon_sym_DASH_GT] = ACTIONS(5396), + [anon_sym_with] = ACTIONS(5396), + [aux_sym_preproc_if_token3] = ACTIONS(5396), + [aux_sym_preproc_else_token1] = ACTIONS(5396), + [aux_sym_preproc_elif_token1] = ACTIONS(5396), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -492924,57 +492406,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(5012), - [anon_sym_LBRACK] = ACTIONS(5012), - [anon_sym_COLON] = ACTIONS(5012), - [anon_sym_COMMA] = ACTIONS(5012), - [anon_sym_RBRACK] = ACTIONS(5012), - [anon_sym_LPAREN] = ACTIONS(5012), - [anon_sym_RPAREN] = ACTIONS(5012), - [anon_sym_RBRACE] = ACTIONS(5012), - [anon_sym_LT] = ACTIONS(5014), - [anon_sym_GT] = ACTIONS(5014), - [anon_sym_in] = ACTIONS(5014), - [anon_sym_QMARK] = ACTIONS(5014), - [anon_sym_BANG] = ACTIONS(5014), - [anon_sym_PLUS_PLUS] = ACTIONS(5012), - [anon_sym_DASH_DASH] = ACTIONS(5012), - [anon_sym_PLUS] = ACTIONS(5014), - [anon_sym_DASH] = ACTIONS(5014), - [anon_sym_STAR] = ACTIONS(5012), - [anon_sym_SLASH] = ACTIONS(5014), - [anon_sym_PERCENT] = ACTIONS(5012), - [anon_sym_CARET] = ACTIONS(5012), - [anon_sym_PIPE] = ACTIONS(5014), - [anon_sym_AMP] = ACTIONS(5014), - [anon_sym_LT_LT] = ACTIONS(5012), - [anon_sym_GT_GT] = ACTIONS(5014), - [anon_sym_GT_GT_GT] = ACTIONS(5012), - [anon_sym_EQ_EQ] = ACTIONS(5012), - [anon_sym_BANG_EQ] = ACTIONS(5012), - [anon_sym_GT_EQ] = ACTIONS(5012), - [anon_sym_LT_EQ] = ACTIONS(5012), - [anon_sym_DOT] = ACTIONS(5014), - [anon_sym_EQ_GT] = ACTIONS(5012), - [anon_sym_switch] = ACTIONS(5012), - [anon_sym_when] = ACTIONS(5012), - [anon_sym_DOT_DOT] = ACTIONS(5012), - [anon_sym_and] = ACTIONS(5012), - [anon_sym_or] = ACTIONS(5012), - [anon_sym_AMP_AMP] = ACTIONS(5012), - [anon_sym_PIPE_PIPE] = ACTIONS(5012), - [anon_sym_QMARK_QMARK] = ACTIONS(5012), - [anon_sym_into] = ACTIONS(5012), - [anon_sym_on] = ACTIONS(5012), - [anon_sym_equals] = ACTIONS(5012), - [anon_sym_by] = ACTIONS(5012), - [anon_sym_as] = ACTIONS(5012), - [anon_sym_is] = ACTIONS(5012), - [anon_sym_DASH_GT] = ACTIONS(5012), - [anon_sym_with] = ACTIONS(5012), - [aux_sym_preproc_if_token3] = ACTIONS(5012), - [aux_sym_preproc_else_token1] = ACTIONS(5012), - [aux_sym_preproc_elif_token1] = ACTIONS(5012), + [anon_sym_SEMI] = ACTIONS(3702), + [anon_sym_LBRACK] = ACTIONS(3702), + [anon_sym_COLON] = ACTIONS(3702), + [anon_sym_COMMA] = ACTIONS(3702), + [anon_sym_RBRACK] = ACTIONS(3702), + [anon_sym_LPAREN] = ACTIONS(3702), + [anon_sym_RPAREN] = ACTIONS(3702), + [anon_sym_LBRACE] = ACTIONS(3702), + [anon_sym_RBRACE] = ACTIONS(3702), + [anon_sym_LT] = ACTIONS(3691), + [anon_sym_GT] = ACTIONS(3691), + [anon_sym_in] = ACTIONS(3702), + [anon_sym_QMARK] = ACTIONS(3691), + [anon_sym_BANG] = ACTIONS(3691), + [anon_sym_PLUS_PLUS] = ACTIONS(3702), + [anon_sym_DASH_DASH] = ACTIONS(3702), + [anon_sym_PLUS] = ACTIONS(3691), + [anon_sym_DASH] = ACTIONS(3691), + [anon_sym_STAR] = ACTIONS(3702), + [anon_sym_SLASH] = ACTIONS(3691), + [anon_sym_PERCENT] = ACTIONS(3702), + [anon_sym_CARET] = ACTIONS(3702), + [anon_sym_PIPE] = ACTIONS(3691), + [anon_sym_AMP] = ACTIONS(3691), + [anon_sym_LT_LT] = ACTIONS(3702), + [anon_sym_GT_GT] = ACTIONS(3691), + [anon_sym_GT_GT_GT] = ACTIONS(3702), + [anon_sym_EQ_EQ] = ACTIONS(3702), + [anon_sym_BANG_EQ] = ACTIONS(3702), + [anon_sym_GT_EQ] = ACTIONS(3702), + [anon_sym_LT_EQ] = ACTIONS(3702), + [anon_sym_DOT] = ACTIONS(3691), + [anon_sym_EQ_GT] = ACTIONS(3702), + [anon_sym_switch] = ACTIONS(3702), + [anon_sym_when] = ACTIONS(3702), + [anon_sym_DOT_DOT] = ACTIONS(3702), + [anon_sym_and] = ACTIONS(3702), + [anon_sym_or] = ACTIONS(3702), + [anon_sym_AMP_AMP] = ACTIONS(3702), + [anon_sym_PIPE_PIPE] = ACTIONS(3702), + [anon_sym_QMARK_QMARK] = ACTIONS(3702), + [anon_sym_on] = ACTIONS(3702), + [anon_sym_equals] = ACTIONS(3702), + [anon_sym_by] = ACTIONS(3702), + [anon_sym_as] = ACTIONS(3702), + [anon_sym_is] = ACTIONS(3702), + [anon_sym_DASH_GT] = ACTIONS(3702), + [anon_sym_with] = ACTIONS(3702), + [aux_sym_preproc_if_token3] = ACTIONS(3702), + [aux_sym_preproc_else_token1] = ACTIONS(3702), + [aux_sym_preproc_elif_token1] = ACTIONS(3702), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -492996,57 +492478,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(5058), - [anon_sym_LBRACK] = ACTIONS(5058), - [anon_sym_COLON] = ACTIONS(5058), - [anon_sym_COMMA] = ACTIONS(5058), - [anon_sym_RBRACK] = ACTIONS(5058), - [anon_sym_LPAREN] = ACTIONS(5058), - [anon_sym_RPAREN] = ACTIONS(5058), - [anon_sym_RBRACE] = ACTIONS(5058), - [anon_sym_LT] = ACTIONS(5060), - [anon_sym_GT] = ACTIONS(5060), - [anon_sym_in] = ACTIONS(5060), - [anon_sym_QMARK] = ACTIONS(5060), - [anon_sym_BANG] = ACTIONS(5060), - [anon_sym_PLUS_PLUS] = ACTIONS(5058), - [anon_sym_DASH_DASH] = ACTIONS(5058), - [anon_sym_PLUS] = ACTIONS(5060), - [anon_sym_DASH] = ACTIONS(5060), - [anon_sym_STAR] = ACTIONS(5058), - [anon_sym_SLASH] = ACTIONS(5060), - [anon_sym_PERCENT] = ACTIONS(5058), - [anon_sym_CARET] = ACTIONS(5058), - [anon_sym_PIPE] = ACTIONS(5060), - [anon_sym_AMP] = ACTIONS(5060), - [anon_sym_LT_LT] = ACTIONS(5058), - [anon_sym_GT_GT] = ACTIONS(5060), - [anon_sym_GT_GT_GT] = ACTIONS(5058), - [anon_sym_EQ_EQ] = ACTIONS(5058), - [anon_sym_BANG_EQ] = ACTIONS(5058), - [anon_sym_GT_EQ] = ACTIONS(5058), - [anon_sym_LT_EQ] = ACTIONS(5058), - [anon_sym_DOT] = ACTIONS(5060), - [anon_sym_EQ_GT] = ACTIONS(5058), - [anon_sym_switch] = ACTIONS(5058), - [anon_sym_when] = ACTIONS(5058), - [anon_sym_DOT_DOT] = ACTIONS(5058), - [anon_sym_and] = ACTIONS(5058), - [anon_sym_or] = ACTIONS(5058), - [anon_sym_AMP_AMP] = ACTIONS(5058), - [anon_sym_PIPE_PIPE] = ACTIONS(5058), - [anon_sym_QMARK_QMARK] = ACTIONS(5058), - [anon_sym_into] = ACTIONS(5058), - [anon_sym_on] = ACTIONS(5058), - [anon_sym_equals] = ACTIONS(5058), - [anon_sym_by] = ACTIONS(5058), - [anon_sym_as] = ACTIONS(5058), - [anon_sym_is] = ACTIONS(5058), - [anon_sym_DASH_GT] = ACTIONS(5058), - [anon_sym_with] = ACTIONS(5058), - [aux_sym_preproc_if_token3] = ACTIONS(5058), - [aux_sym_preproc_else_token1] = ACTIONS(5058), - [aux_sym_preproc_elif_token1] = ACTIONS(5058), + [sym__identifier_token] = ACTIONS(3466), + [anon_sym_extern] = ACTIONS(3466), + [anon_sym_alias] = ACTIONS(3466), + [anon_sym_global] = ACTIONS(3466), + [anon_sym_unsafe] = ACTIONS(3466), + [anon_sym_static] = ACTIONS(3466), + [anon_sym_LPAREN] = ACTIONS(5400), + [anon_sym_class] = ACTIONS(3466), + [anon_sym_ref] = ACTIONS(3466), + [anon_sym_struct] = ACTIONS(3466), + [anon_sym_enum] = ACTIONS(3466), + [anon_sym_interface] = ACTIONS(3466), + [anon_sym_delegate] = ACTIONS(3466), + [anon_sym_record] = ACTIONS(3466), + [anon_sym_abstract] = ACTIONS(3466), + [anon_sym_async] = ACTIONS(3466), + [anon_sym_const] = ACTIONS(3466), + [anon_sym_file] = ACTIONS(3466), + [anon_sym_fixed] = ACTIONS(3466), + [anon_sym_internal] = ACTIONS(3466), + [anon_sym_new] = ACTIONS(3466), + [anon_sym_override] = ACTIONS(3466), + [anon_sym_partial] = ACTIONS(3466), + [anon_sym_private] = ACTIONS(3466), + [anon_sym_protected] = ACTIONS(3466), + [anon_sym_public] = ACTIONS(3466), + [anon_sym_readonly] = ACTIONS(3466), + [anon_sym_required] = ACTIONS(3466), + [anon_sym_sealed] = ACTIONS(3466), + [anon_sym_virtual] = ACTIONS(3466), + [anon_sym_volatile] = ACTIONS(3466), + [anon_sym_where] = ACTIONS(3466), + [anon_sym_notnull] = ACTIONS(3466), + [anon_sym_unmanaged] = ACTIONS(3466), + [anon_sym_scoped] = ACTIONS(3466), + [anon_sym_var] = ACTIONS(3466), + [sym_predefined_type] = ACTIONS(3466), + [anon_sym_yield] = ACTIONS(3466), + [anon_sym_when] = ACTIONS(3466), + [anon_sym_from] = ACTIONS(3466), + [anon_sym_into] = ACTIONS(3466), + [anon_sym_join] = ACTIONS(3466), + [anon_sym_on] = ACTIONS(3466), + [anon_sym_equals] = ACTIONS(3466), + [anon_sym_let] = ACTIONS(3466), + [anon_sym_orderby] = ACTIONS(3466), + [anon_sym_ascending] = ACTIONS(3466), + [anon_sym_descending] = ACTIONS(3466), + [anon_sym_group] = ACTIONS(3466), + [anon_sym_by] = ACTIONS(3466), + [anon_sym_select] = ACTIONS(3466), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -493068,57 +492550,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), - [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_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), + [anon_sym_SEMI] = ACTIONS(5064), + [anon_sym_LBRACK] = ACTIONS(5064), + [anon_sym_COLON] = ACTIONS(5064), + [anon_sym_COMMA] = ACTIONS(5064), + [anon_sym_RBRACK] = ACTIONS(5064), + [anon_sym_LPAREN] = ACTIONS(5064), + [anon_sym_RPAREN] = ACTIONS(5064), + [anon_sym_RBRACE] = ACTIONS(5064), + [anon_sym_LT] = ACTIONS(5066), + [anon_sym_GT] = ACTIONS(5066), + [anon_sym_in] = ACTIONS(5066), + [anon_sym_QMARK] = ACTIONS(5066), + [anon_sym_BANG] = ACTIONS(5066), + [anon_sym_PLUS_PLUS] = ACTIONS(5064), + [anon_sym_DASH_DASH] = ACTIONS(5064), + [anon_sym_PLUS] = ACTIONS(5066), + [anon_sym_DASH] = ACTIONS(5066), + [anon_sym_STAR] = ACTIONS(5064), + [anon_sym_SLASH] = ACTIONS(5066), + [anon_sym_PERCENT] = ACTIONS(5064), + [anon_sym_CARET] = ACTIONS(5064), + [anon_sym_PIPE] = ACTIONS(5066), + [anon_sym_AMP] = ACTIONS(5066), + [anon_sym_LT_LT] = ACTIONS(5064), + [anon_sym_GT_GT] = ACTIONS(5066), + [anon_sym_GT_GT_GT] = ACTIONS(5064), + [anon_sym_EQ_EQ] = ACTIONS(5064), + [anon_sym_BANG_EQ] = ACTIONS(5064), + [anon_sym_GT_EQ] = ACTIONS(5064), + [anon_sym_LT_EQ] = ACTIONS(5064), + [anon_sym_DOT] = ACTIONS(5066), + [anon_sym_EQ_GT] = ACTIONS(5064), + [anon_sym_switch] = ACTIONS(5064), + [anon_sym_when] = ACTIONS(5064), + [anon_sym_DOT_DOT] = ACTIONS(5064), + [anon_sym_and] = ACTIONS(5064), + [anon_sym_or] = ACTIONS(5064), + [anon_sym_AMP_AMP] = ACTIONS(5064), + [anon_sym_PIPE_PIPE] = ACTIONS(5064), + [anon_sym_QMARK_QMARK] = ACTIONS(5064), + [anon_sym_into] = ACTIONS(5064), + [anon_sym_on] = ACTIONS(5064), + [anon_sym_equals] = ACTIONS(5064), + [anon_sym_by] = ACTIONS(5064), + [anon_sym_as] = ACTIONS(5064), + [anon_sym_is] = ACTIONS(5064), + [anon_sym_DASH_GT] = ACTIONS(5064), + [anon_sym_with] = ACTIONS(5064), + [aux_sym_preproc_if_token3] = ACTIONS(5064), + [aux_sym_preproc_else_token1] = ACTIONS(5064), + [aux_sym_preproc_elif_token1] = ACTIONS(5064), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -493140,57 +492622,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(5094), - [anon_sym_LBRACK] = ACTIONS(5094), - [anon_sym_COLON] = ACTIONS(5094), - [anon_sym_COMMA] = ACTIONS(5094), - [anon_sym_RBRACK] = ACTIONS(5094), - [anon_sym_LPAREN] = ACTIONS(5094), - [anon_sym_RPAREN] = ACTIONS(5094), - [anon_sym_RBRACE] = ACTIONS(5094), - [anon_sym_LT] = ACTIONS(5096), - [anon_sym_GT] = ACTIONS(5096), - [anon_sym_in] = ACTIONS(5096), - [anon_sym_QMARK] = ACTIONS(5096), - [anon_sym_BANG] = ACTIONS(5096), - [anon_sym_PLUS_PLUS] = ACTIONS(5094), - [anon_sym_DASH_DASH] = ACTIONS(5094), - [anon_sym_PLUS] = ACTIONS(5096), - [anon_sym_DASH] = ACTIONS(5096), - [anon_sym_STAR] = ACTIONS(5094), - [anon_sym_SLASH] = ACTIONS(5096), - [anon_sym_PERCENT] = ACTIONS(5094), - [anon_sym_CARET] = ACTIONS(5094), - [anon_sym_PIPE] = ACTIONS(5096), - [anon_sym_AMP] = ACTIONS(5096), - [anon_sym_LT_LT] = ACTIONS(5094), - [anon_sym_GT_GT] = ACTIONS(5096), - [anon_sym_GT_GT_GT] = ACTIONS(5094), - [anon_sym_EQ_EQ] = ACTIONS(5094), - [anon_sym_BANG_EQ] = ACTIONS(5094), - [anon_sym_GT_EQ] = ACTIONS(5094), - [anon_sym_LT_EQ] = ACTIONS(5094), - [anon_sym_DOT] = ACTIONS(5096), - [anon_sym_EQ_GT] = ACTIONS(5094), - [anon_sym_switch] = ACTIONS(5094), - [anon_sym_when] = ACTIONS(5094), - [anon_sym_DOT_DOT] = ACTIONS(5094), - [anon_sym_and] = ACTIONS(5094), - [anon_sym_or] = ACTIONS(5094), - [anon_sym_AMP_AMP] = ACTIONS(5094), - [anon_sym_PIPE_PIPE] = ACTIONS(5094), - [anon_sym_QMARK_QMARK] = ACTIONS(5094), - [anon_sym_into] = ACTIONS(5094), - [anon_sym_on] = ACTIONS(5094), - [anon_sym_equals] = ACTIONS(5094), - [anon_sym_by] = ACTIONS(5094), - [anon_sym_as] = ACTIONS(5094), - [anon_sym_is] = ACTIONS(5094), - [anon_sym_DASH_GT] = ACTIONS(5094), - [anon_sym_with] = ACTIONS(5094), - [aux_sym_preproc_if_token3] = ACTIONS(5094), - [aux_sym_preproc_else_token1] = ACTIONS(5094), - [aux_sym_preproc_elif_token1] = ACTIONS(5094), + [anon_sym_SEMI] = ACTIONS(5402), + [anon_sym_LBRACK] = ACTIONS(5402), + [anon_sym_COLON] = ACTIONS(5402), + [anon_sym_COMMA] = ACTIONS(5402), + [anon_sym_RBRACK] = ACTIONS(5402), + [anon_sym_LPAREN] = ACTIONS(5402), + [anon_sym_RPAREN] = ACTIONS(5402), + [anon_sym_RBRACE] = ACTIONS(5402), + [anon_sym_LT] = ACTIONS(5404), + [anon_sym_GT] = ACTIONS(5404), + [anon_sym_in] = ACTIONS(5404), + [anon_sym_QMARK] = ACTIONS(5404), + [anon_sym_BANG] = ACTIONS(5404), + [anon_sym_PLUS_PLUS] = ACTIONS(5402), + [anon_sym_DASH_DASH] = ACTIONS(5402), + [anon_sym_PLUS] = ACTIONS(5404), + [anon_sym_DASH] = ACTIONS(5404), + [anon_sym_STAR] = ACTIONS(5402), + [anon_sym_SLASH] = ACTIONS(5404), + [anon_sym_PERCENT] = ACTIONS(5402), + [anon_sym_CARET] = ACTIONS(5402), + [anon_sym_PIPE] = ACTIONS(5404), + [anon_sym_AMP] = ACTIONS(5404), + [anon_sym_LT_LT] = ACTIONS(5402), + [anon_sym_GT_GT] = ACTIONS(5404), + [anon_sym_GT_GT_GT] = ACTIONS(5402), + [anon_sym_EQ_EQ] = ACTIONS(5402), + [anon_sym_BANG_EQ] = ACTIONS(5402), + [anon_sym_GT_EQ] = ACTIONS(5402), + [anon_sym_LT_EQ] = ACTIONS(5402), + [anon_sym_DOT] = ACTIONS(5404), + [anon_sym_EQ_GT] = ACTIONS(5402), + [anon_sym_switch] = ACTIONS(5402), + [anon_sym_when] = ACTIONS(5402), + [anon_sym_DOT_DOT] = ACTIONS(5402), + [anon_sym_and] = ACTIONS(5402), + [anon_sym_or] = ACTIONS(5402), + [anon_sym_AMP_AMP] = ACTIONS(5402), + [anon_sym_PIPE_PIPE] = ACTIONS(5402), + [anon_sym_QMARK_QMARK] = ACTIONS(5402), + [anon_sym_into] = ACTIONS(5402), + [anon_sym_on] = ACTIONS(5402), + [anon_sym_equals] = ACTIONS(5402), + [anon_sym_by] = ACTIONS(5402), + [anon_sym_as] = ACTIONS(5402), + [anon_sym_is] = ACTIONS(5402), + [anon_sym_DASH_GT] = ACTIONS(5402), + [anon_sym_with] = ACTIONS(5402), + [aux_sym_preproc_if_token3] = ACTIONS(5402), + [aux_sym_preproc_else_token1] = ACTIONS(5402), + [aux_sym_preproc_elif_token1] = ACTIONS(5402), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -493212,57 +492694,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(5383), - [anon_sym_LBRACK] = ACTIONS(5383), - [anon_sym_COLON] = ACTIONS(5383), - [anon_sym_COMMA] = ACTIONS(5383), - [anon_sym_RBRACK] = ACTIONS(5383), - [anon_sym_LPAREN] = ACTIONS(5383), - [anon_sym_RPAREN] = ACTIONS(5383), - [anon_sym_RBRACE] = ACTIONS(5383), - [anon_sym_LT] = ACTIONS(5385), - [anon_sym_GT] = ACTIONS(5385), - [anon_sym_in] = ACTIONS(5385), - [anon_sym_QMARK] = ACTIONS(5385), - [anon_sym_BANG] = ACTIONS(5385), - [anon_sym_PLUS_PLUS] = ACTIONS(5383), - [anon_sym_DASH_DASH] = ACTIONS(5383), - [anon_sym_PLUS] = ACTIONS(5385), - [anon_sym_DASH] = ACTIONS(5385), - [anon_sym_STAR] = ACTIONS(5383), - [anon_sym_SLASH] = ACTIONS(5385), - [anon_sym_PERCENT] = ACTIONS(5383), - [anon_sym_CARET] = ACTIONS(5383), - [anon_sym_PIPE] = ACTIONS(5385), - [anon_sym_AMP] = ACTIONS(5385), - [anon_sym_LT_LT] = ACTIONS(5383), - [anon_sym_GT_GT] = ACTIONS(5385), - [anon_sym_GT_GT_GT] = ACTIONS(5383), - [anon_sym_EQ_EQ] = ACTIONS(5383), - [anon_sym_BANG_EQ] = ACTIONS(5383), - [anon_sym_GT_EQ] = ACTIONS(5383), - [anon_sym_LT_EQ] = ACTIONS(5383), - [anon_sym_DOT] = ACTIONS(5385), - [anon_sym_EQ_GT] = ACTIONS(5383), - [anon_sym_switch] = ACTIONS(5383), - [anon_sym_when] = ACTIONS(5383), - [anon_sym_DOT_DOT] = ACTIONS(5383), - [anon_sym_and] = ACTIONS(5383), - [anon_sym_or] = ACTIONS(5383), - [anon_sym_AMP_AMP] = ACTIONS(5383), - [anon_sym_PIPE_PIPE] = ACTIONS(5383), - [anon_sym_QMARK_QMARK] = ACTIONS(5383), - [anon_sym_into] = ACTIONS(5383), - [anon_sym_on] = ACTIONS(5383), - [anon_sym_equals] = ACTIONS(5383), - [anon_sym_by] = ACTIONS(5383), - [anon_sym_as] = ACTIONS(5383), - [anon_sym_is] = ACTIONS(5383), - [anon_sym_DASH_GT] = ACTIONS(5383), - [anon_sym_with] = ACTIONS(5383), - [aux_sym_preproc_if_token3] = ACTIONS(5383), - [aux_sym_preproc_else_token1] = ACTIONS(5383), - [aux_sym_preproc_elif_token1] = ACTIONS(5383), + [anon_sym_SEMI] = ACTIONS(3963), + [anon_sym_LBRACK] = ACTIONS(4033), + [anon_sym_COLON] = ACTIONS(3963), + [anon_sym_COMMA] = ACTIONS(3963), + [anon_sym_RBRACK] = ACTIONS(3963), + [anon_sym_LPAREN] = ACTIONS(3963), + [anon_sym_RPAREN] = ACTIONS(3963), + [anon_sym_LBRACE] = ACTIONS(3963), + [anon_sym_RBRACE] = ACTIONS(3963), + [anon_sym_LT] = ACTIONS(3961), + [anon_sym_GT] = ACTIONS(3961), + [anon_sym_in] = ACTIONS(3963), + [anon_sym_QMARK] = ACTIONS(5326), + [anon_sym_BANG] = ACTIONS(3961), + [anon_sym_PLUS_PLUS] = ACTIONS(3963), + [anon_sym_DASH_DASH] = ACTIONS(3963), + [anon_sym_PLUS] = ACTIONS(3961), + [anon_sym_DASH] = ACTIONS(3961), + [anon_sym_STAR] = ACTIONS(4039), + [anon_sym_SLASH] = ACTIONS(3961), + [anon_sym_PERCENT] = ACTIONS(3963), + [anon_sym_CARET] = ACTIONS(3963), + [anon_sym_PIPE] = ACTIONS(3961), + [anon_sym_AMP] = ACTIONS(3961), + [anon_sym_LT_LT] = ACTIONS(3963), + [anon_sym_GT_GT] = ACTIONS(3961), + [anon_sym_GT_GT_GT] = ACTIONS(3963), + [anon_sym_EQ_EQ] = ACTIONS(3963), + [anon_sym_BANG_EQ] = ACTIONS(3963), + [anon_sym_GT_EQ] = ACTIONS(3963), + [anon_sym_LT_EQ] = ACTIONS(3963), + [anon_sym_DOT] = ACTIONS(3961), + [anon_sym_EQ_GT] = ACTIONS(3963), + [anon_sym_switch] = ACTIONS(3963), + [anon_sym_when] = ACTIONS(3963), + [anon_sym_DOT_DOT] = ACTIONS(3963), + [anon_sym_and] = ACTIONS(3963), + [anon_sym_or] = ACTIONS(3963), + [anon_sym_AMP_AMP] = ACTIONS(3963), + [anon_sym_PIPE_PIPE] = ACTIONS(3963), + [anon_sym_QMARK_QMARK] = ACTIONS(3963), + [anon_sym_on] = ACTIONS(3963), + [anon_sym_equals] = ACTIONS(3963), + [anon_sym_by] = ACTIONS(3963), + [anon_sym_as] = ACTIONS(3963), + [anon_sym_is] = ACTIONS(3963), + [anon_sym_DASH_GT] = ACTIONS(3963), + [anon_sym_with] = ACTIONS(3963), + [aux_sym_preproc_if_token3] = ACTIONS(3963), + [aux_sym_preproc_else_token1] = ACTIONS(3963), + [aux_sym_preproc_elif_token1] = ACTIONS(3963), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -493284,57 +492766,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(5387), - [anon_sym_LBRACK] = ACTIONS(5387), - [anon_sym_COLON] = ACTIONS(5387), - [anon_sym_COMMA] = ACTIONS(5387), - [anon_sym_RBRACK] = ACTIONS(5387), - [anon_sym_LPAREN] = ACTIONS(5387), - [anon_sym_RPAREN] = ACTIONS(5387), - [anon_sym_RBRACE] = ACTIONS(5387), - [anon_sym_LT] = ACTIONS(5389), - [anon_sym_GT] = ACTIONS(5389), - [anon_sym_in] = ACTIONS(5389), - [anon_sym_QMARK] = ACTIONS(5389), - [anon_sym_BANG] = ACTIONS(5389), - [anon_sym_PLUS_PLUS] = ACTIONS(5387), - [anon_sym_DASH_DASH] = ACTIONS(5387), - [anon_sym_PLUS] = ACTIONS(5389), - [anon_sym_DASH] = ACTIONS(5389), - [anon_sym_STAR] = ACTIONS(5387), - [anon_sym_SLASH] = ACTIONS(5389), - [anon_sym_PERCENT] = ACTIONS(5387), - [anon_sym_CARET] = ACTIONS(5387), - [anon_sym_PIPE] = ACTIONS(5389), - [anon_sym_AMP] = ACTIONS(5389), - [anon_sym_LT_LT] = ACTIONS(5387), - [anon_sym_GT_GT] = ACTIONS(5389), - [anon_sym_GT_GT_GT] = ACTIONS(5387), - [anon_sym_EQ_EQ] = ACTIONS(5387), - [anon_sym_BANG_EQ] = ACTIONS(5387), - [anon_sym_GT_EQ] = ACTIONS(5387), - [anon_sym_LT_EQ] = ACTIONS(5387), - [anon_sym_DOT] = ACTIONS(5389), - [anon_sym_EQ_GT] = ACTIONS(5387), - [anon_sym_switch] = ACTIONS(5387), - [anon_sym_when] = ACTIONS(5387), - [anon_sym_DOT_DOT] = ACTIONS(5387), - [anon_sym_and] = ACTIONS(5387), - [anon_sym_or] = ACTIONS(5387), - [anon_sym_AMP_AMP] = ACTIONS(5387), - [anon_sym_PIPE_PIPE] = ACTIONS(5387), - [anon_sym_QMARK_QMARK] = ACTIONS(5387), - [anon_sym_into] = ACTIONS(5387), - [anon_sym_on] = ACTIONS(5387), - [anon_sym_equals] = ACTIONS(5387), - [anon_sym_by] = ACTIONS(5387), - [anon_sym_as] = ACTIONS(5387), - [anon_sym_is] = ACTIONS(5387), - [anon_sym_DASH_GT] = ACTIONS(5387), - [anon_sym_with] = ACTIONS(5387), - [aux_sym_preproc_if_token3] = ACTIONS(5387), - [aux_sym_preproc_else_token1] = ACTIONS(5387), - [aux_sym_preproc_elif_token1] = ACTIONS(5387), + [anon_sym_SEMI] = ACTIONS(3809), + [anon_sym_LBRACK] = ACTIONS(3809), + [anon_sym_COLON] = ACTIONS(3809), + [anon_sym_COMMA] = ACTIONS(3809), + [anon_sym_RBRACK] = ACTIONS(3809), + [anon_sym_LPAREN] = ACTIONS(3809), + [anon_sym_RPAREN] = ACTIONS(3809), + [anon_sym_RBRACE] = ACTIONS(3809), + [anon_sym_LT] = ACTIONS(5406), + [anon_sym_GT] = ACTIONS(5406), + [anon_sym_in] = ACTIONS(5406), + [anon_sym_QMARK] = ACTIONS(5406), + [anon_sym_BANG] = ACTIONS(5406), + [anon_sym_PLUS_PLUS] = ACTIONS(3809), + [anon_sym_DASH_DASH] = ACTIONS(3809), + [anon_sym_PLUS] = ACTIONS(5406), + [anon_sym_DASH] = ACTIONS(5406), + [anon_sym_STAR] = ACTIONS(3809), + [anon_sym_SLASH] = ACTIONS(5406), + [anon_sym_PERCENT] = ACTIONS(3809), + [anon_sym_CARET] = ACTIONS(3809), + [anon_sym_PIPE] = ACTIONS(5406), + [anon_sym_AMP] = ACTIONS(5406), + [anon_sym_LT_LT] = ACTIONS(3809), + [anon_sym_GT_GT] = ACTIONS(5406), + [anon_sym_GT_GT_GT] = ACTIONS(3809), + [anon_sym_EQ_EQ] = ACTIONS(3809), + [anon_sym_BANG_EQ] = ACTIONS(3809), + [anon_sym_GT_EQ] = ACTIONS(3809), + [anon_sym_LT_EQ] = ACTIONS(3809), + [anon_sym_DOT] = ACTIONS(5406), + [anon_sym_EQ_GT] = ACTIONS(3651), + [anon_sym_switch] = ACTIONS(3809), + [anon_sym_when] = ACTIONS(3809), + [anon_sym_DOT_DOT] = ACTIONS(3809), + [anon_sym_and] = ACTIONS(3809), + [anon_sym_or] = ACTIONS(3809), + [anon_sym_AMP_AMP] = ACTIONS(3809), + [anon_sym_PIPE_PIPE] = ACTIONS(3809), + [anon_sym_QMARK_QMARK] = ACTIONS(3809), + [anon_sym_into] = ACTIONS(3809), + [anon_sym_on] = ACTIONS(3809), + [anon_sym_equals] = ACTIONS(3809), + [anon_sym_by] = ACTIONS(3809), + [anon_sym_as] = ACTIONS(3809), + [anon_sym_is] = ACTIONS(3809), + [anon_sym_DASH_GT] = ACTIONS(3809), + [anon_sym_with] = ACTIONS(3809), + [aux_sym_preproc_if_token3] = ACTIONS(3809), + [aux_sym_preproc_else_token1] = ACTIONS(3809), + [aux_sym_preproc_elif_token1] = ACTIONS(3809), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -493356,57 +492838,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(4271), - [anon_sym_LBRACK] = ACTIONS(5391), - [anon_sym_COLON] = ACTIONS(4271), - [anon_sym_COMMA] = ACTIONS(4271), - [anon_sym_RBRACK] = ACTIONS(4271), - [anon_sym_LPAREN] = ACTIONS(5391), - [anon_sym_RPAREN] = ACTIONS(4271), - [anon_sym_RBRACE] = ACTIONS(4271), - [anon_sym_LT] = ACTIONS(5394), - [anon_sym_GT] = ACTIONS(5394), - [anon_sym_in] = ACTIONS(4279), - [anon_sym_QMARK] = ACTIONS(5394), - [anon_sym_BANG] = ACTIONS(5394), - [anon_sym_PLUS_PLUS] = ACTIONS(5391), - [anon_sym_DASH_DASH] = ACTIONS(5391), - [anon_sym_PLUS] = ACTIONS(5394), - [anon_sym_DASH] = ACTIONS(5394), - [anon_sym_STAR] = ACTIONS(5391), - [anon_sym_SLASH] = ACTIONS(5394), - [anon_sym_PERCENT] = ACTIONS(5391), - [anon_sym_CARET] = ACTIONS(5391), - [anon_sym_PIPE] = ACTIONS(5394), - [anon_sym_AMP] = ACTIONS(5394), - [anon_sym_LT_LT] = ACTIONS(5391), - [anon_sym_GT_GT] = ACTIONS(5394), - [anon_sym_GT_GT_GT] = ACTIONS(5391), - [anon_sym_EQ_EQ] = ACTIONS(5391), - [anon_sym_BANG_EQ] = ACTIONS(5391), - [anon_sym_GT_EQ] = ACTIONS(5391), - [anon_sym_LT_EQ] = ACTIONS(5391), - [anon_sym_DOT] = ACTIONS(5394), - [anon_sym_EQ_GT] = ACTIONS(4271), - [anon_sym_switch] = ACTIONS(5391), - [anon_sym_when] = ACTIONS(4271), - [anon_sym_DOT_DOT] = ACTIONS(5391), - [anon_sym_and] = ACTIONS(4271), - [anon_sym_or] = ACTIONS(4271), - [anon_sym_AMP_AMP] = ACTIONS(5391), - [anon_sym_PIPE_PIPE] = ACTIONS(5391), - [anon_sym_QMARK_QMARK] = ACTIONS(5391), - [anon_sym_into] = ACTIONS(4271), - [anon_sym_on] = ACTIONS(4271), - [anon_sym_equals] = ACTIONS(4271), - [anon_sym_by] = ACTIONS(4271), - [anon_sym_as] = ACTIONS(5391), - [anon_sym_is] = ACTIONS(5391), - [anon_sym_DASH_GT] = ACTIONS(5391), - [anon_sym_with] = ACTIONS(5391), - [aux_sym_preproc_if_token3] = ACTIONS(4271), - [aux_sym_preproc_else_token1] = ACTIONS(4271), - [aux_sym_preproc_elif_token1] = ACTIONS(4271), + [anon_sym_SEMI] = ACTIONS(5068), + [anon_sym_LBRACK] = ACTIONS(5068), + [anon_sym_COLON] = ACTIONS(5068), + [anon_sym_COMMA] = ACTIONS(5068), + [anon_sym_RBRACK] = ACTIONS(5068), + [anon_sym_LPAREN] = ACTIONS(5068), + [anon_sym_RPAREN] = ACTIONS(5068), + [anon_sym_RBRACE] = ACTIONS(5068), + [anon_sym_LT] = ACTIONS(5070), + [anon_sym_GT] = ACTIONS(5070), + [anon_sym_in] = ACTIONS(5070), + [anon_sym_QMARK] = ACTIONS(5070), + [anon_sym_BANG] = ACTIONS(5070), + [anon_sym_PLUS_PLUS] = ACTIONS(5068), + [anon_sym_DASH_DASH] = ACTIONS(5068), + [anon_sym_PLUS] = ACTIONS(5070), + [anon_sym_DASH] = ACTIONS(5070), + [anon_sym_STAR] = ACTIONS(5068), + [anon_sym_SLASH] = ACTIONS(5070), + [anon_sym_PERCENT] = ACTIONS(5068), + [anon_sym_CARET] = ACTIONS(5068), + [anon_sym_PIPE] = ACTIONS(5070), + [anon_sym_AMP] = ACTIONS(5070), + [anon_sym_LT_LT] = ACTIONS(5068), + [anon_sym_GT_GT] = ACTIONS(5070), + [anon_sym_GT_GT_GT] = ACTIONS(5068), + [anon_sym_EQ_EQ] = ACTIONS(5068), + [anon_sym_BANG_EQ] = ACTIONS(5068), + [anon_sym_GT_EQ] = ACTIONS(5068), + [anon_sym_LT_EQ] = ACTIONS(5068), + [anon_sym_DOT] = ACTIONS(5070), + [anon_sym_EQ_GT] = ACTIONS(5068), + [anon_sym_switch] = ACTIONS(5068), + [anon_sym_when] = ACTIONS(5068), + [anon_sym_DOT_DOT] = ACTIONS(5068), + [anon_sym_and] = ACTIONS(5068), + [anon_sym_or] = ACTIONS(5068), + [anon_sym_AMP_AMP] = ACTIONS(5068), + [anon_sym_PIPE_PIPE] = ACTIONS(5068), + [anon_sym_QMARK_QMARK] = ACTIONS(5068), + [anon_sym_into] = ACTIONS(5068), + [anon_sym_on] = ACTIONS(5068), + [anon_sym_equals] = ACTIONS(5068), + [anon_sym_by] = ACTIONS(5068), + [anon_sym_as] = ACTIONS(5068), + [anon_sym_is] = ACTIONS(5068), + [anon_sym_DASH_GT] = ACTIONS(5068), + [anon_sym_with] = ACTIONS(5068), + [aux_sym_preproc_if_token3] = ACTIONS(5068), + [aux_sym_preproc_else_token1] = ACTIONS(5068), + [aux_sym_preproc_elif_token1] = ACTIONS(5068), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -493428,57 +492910,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(5076), - [anon_sym_LBRACK] = ACTIONS(5076), - [anon_sym_COLON] = ACTIONS(5076), - [anon_sym_COMMA] = ACTIONS(5076), - [anon_sym_RBRACK] = ACTIONS(5076), - [anon_sym_LPAREN] = ACTIONS(5076), - [anon_sym_RPAREN] = ACTIONS(5076), - [anon_sym_RBRACE] = ACTIONS(5076), - [anon_sym_LT] = ACTIONS(5078), - [anon_sym_GT] = ACTIONS(5078), - [anon_sym_in] = ACTIONS(5078), - [anon_sym_QMARK] = ACTIONS(5078), - [anon_sym_BANG] = ACTIONS(5078), - [anon_sym_PLUS_PLUS] = ACTIONS(5076), - [anon_sym_DASH_DASH] = ACTIONS(5076), - [anon_sym_PLUS] = ACTIONS(5078), - [anon_sym_DASH] = ACTIONS(5078), - [anon_sym_STAR] = ACTIONS(5076), - [anon_sym_SLASH] = ACTIONS(5078), - [anon_sym_PERCENT] = ACTIONS(5076), - [anon_sym_CARET] = ACTIONS(5076), - [anon_sym_PIPE] = ACTIONS(5078), - [anon_sym_AMP] = ACTIONS(5078), - [anon_sym_LT_LT] = ACTIONS(5076), - [anon_sym_GT_GT] = ACTIONS(5078), - [anon_sym_GT_GT_GT] = ACTIONS(5076), - [anon_sym_EQ_EQ] = ACTIONS(5076), - [anon_sym_BANG_EQ] = ACTIONS(5076), - [anon_sym_GT_EQ] = ACTIONS(5076), - [anon_sym_LT_EQ] = ACTIONS(5076), - [anon_sym_DOT] = ACTIONS(5078), - [anon_sym_EQ_GT] = ACTIONS(5076), - [anon_sym_switch] = ACTIONS(5076), - [anon_sym_when] = ACTIONS(5076), - [anon_sym_DOT_DOT] = ACTIONS(5076), - [anon_sym_and] = ACTIONS(5076), - [anon_sym_or] = ACTIONS(5076), - [anon_sym_AMP_AMP] = ACTIONS(5076), - [anon_sym_PIPE_PIPE] = ACTIONS(5076), - [anon_sym_QMARK_QMARK] = ACTIONS(5076), - [anon_sym_into] = ACTIONS(5076), - [anon_sym_on] = ACTIONS(5076), - [anon_sym_equals] = ACTIONS(5076), - [anon_sym_by] = ACTIONS(5076), - [anon_sym_as] = ACTIONS(5076), - [anon_sym_is] = ACTIONS(5076), - [anon_sym_DASH_GT] = ACTIONS(5076), - [anon_sym_with] = ACTIONS(5076), - [aux_sym_preproc_if_token3] = ACTIONS(5076), - [aux_sym_preproc_else_token1] = ACTIONS(5076), - [aux_sym_preproc_elif_token1] = ACTIONS(5076), + [anon_sym_SEMI] = ACTIONS(5408), + [anon_sym_LBRACK] = ACTIONS(5408), + [anon_sym_COLON] = ACTIONS(5408), + [anon_sym_COMMA] = ACTIONS(5408), + [anon_sym_RBRACK] = ACTIONS(5408), + [anon_sym_LPAREN] = ACTIONS(5408), + [anon_sym_RPAREN] = ACTIONS(5408), + [anon_sym_RBRACE] = ACTIONS(5408), + [anon_sym_LT] = ACTIONS(5410), + [anon_sym_GT] = ACTIONS(5410), + [anon_sym_in] = ACTIONS(5410), + [anon_sym_QMARK] = ACTIONS(5410), + [anon_sym_BANG] = ACTIONS(5410), + [anon_sym_PLUS_PLUS] = ACTIONS(5408), + [anon_sym_DASH_DASH] = ACTIONS(5408), + [anon_sym_PLUS] = ACTIONS(5410), + [anon_sym_DASH] = ACTIONS(5410), + [anon_sym_STAR] = ACTIONS(5408), + [anon_sym_SLASH] = ACTIONS(5410), + [anon_sym_PERCENT] = ACTIONS(5408), + [anon_sym_CARET] = ACTIONS(5408), + [anon_sym_PIPE] = ACTIONS(5410), + [anon_sym_AMP] = ACTIONS(5410), + [anon_sym_LT_LT] = ACTIONS(5408), + [anon_sym_GT_GT] = ACTIONS(5410), + [anon_sym_GT_GT_GT] = ACTIONS(5408), + [anon_sym_EQ_EQ] = ACTIONS(5408), + [anon_sym_BANG_EQ] = ACTIONS(5408), + [anon_sym_GT_EQ] = ACTIONS(5408), + [anon_sym_LT_EQ] = ACTIONS(5408), + [anon_sym_DOT] = ACTIONS(5410), + [anon_sym_EQ_GT] = ACTIONS(5408), + [anon_sym_switch] = ACTIONS(5408), + [anon_sym_when] = ACTIONS(5408), + [anon_sym_DOT_DOT] = ACTIONS(5408), + [anon_sym_and] = ACTIONS(5408), + [anon_sym_or] = ACTIONS(5408), + [anon_sym_AMP_AMP] = ACTIONS(5408), + [anon_sym_PIPE_PIPE] = ACTIONS(5408), + [anon_sym_QMARK_QMARK] = ACTIONS(5408), + [anon_sym_into] = ACTIONS(5408), + [anon_sym_on] = ACTIONS(5408), + [anon_sym_equals] = ACTIONS(5408), + [anon_sym_by] = ACTIONS(5408), + [anon_sym_as] = ACTIONS(5408), + [anon_sym_is] = ACTIONS(5408), + [anon_sym_DASH_GT] = ACTIONS(5408), + [anon_sym_with] = ACTIONS(5408), + [aux_sym_preproc_if_token3] = ACTIONS(5408), + [aux_sym_preproc_else_token1] = ACTIONS(5408), + [aux_sym_preproc_elif_token1] = ACTIONS(5408), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -493500,67 +492982,67 @@ 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(4271), - [anon_sym_LBRACK] = ACTIONS(5397), - [anon_sym_COLON] = ACTIONS(4271), - [anon_sym_COMMA] = ACTIONS(4271), - [anon_sym_RBRACK] = ACTIONS(4271), - [anon_sym_LPAREN] = ACTIONS(5397), - [anon_sym_RPAREN] = ACTIONS(4271), - [anon_sym_RBRACE] = ACTIONS(4271), - [anon_sym_LT] = ACTIONS(5400), - [anon_sym_GT] = ACTIONS(5400), - [anon_sym_in] = ACTIONS(4279), - [anon_sym_QMARK] = ACTIONS(5400), - [anon_sym_BANG] = ACTIONS(5400), - [anon_sym_PLUS_PLUS] = ACTIONS(5397), - [anon_sym_DASH_DASH] = ACTIONS(5397), - [anon_sym_PLUS] = ACTIONS(5400), - [anon_sym_DASH] = ACTIONS(5400), - [anon_sym_STAR] = ACTIONS(5397), - [anon_sym_SLASH] = ACTIONS(5400), - [anon_sym_PERCENT] = ACTIONS(5397), - [anon_sym_CARET] = ACTIONS(5397), - [anon_sym_PIPE] = ACTIONS(5400), - [anon_sym_AMP] = ACTIONS(5400), - [anon_sym_LT_LT] = ACTIONS(5397), - [anon_sym_GT_GT] = ACTIONS(5400), - [anon_sym_GT_GT_GT] = ACTIONS(5397), - [anon_sym_EQ_EQ] = ACTIONS(5397), - [anon_sym_BANG_EQ] = ACTIONS(5397), - [anon_sym_GT_EQ] = ACTIONS(5397), - [anon_sym_LT_EQ] = ACTIONS(5397), - [anon_sym_DOT] = ACTIONS(5400), - [anon_sym_EQ_GT] = ACTIONS(4271), - [anon_sym_switch] = ACTIONS(5397), - [anon_sym_when] = ACTIONS(4271), - [anon_sym_DOT_DOT] = ACTIONS(5397), - [anon_sym_and] = ACTIONS(4271), - [anon_sym_or] = ACTIONS(4271), - [anon_sym_AMP_AMP] = ACTIONS(5397), - [anon_sym_PIPE_PIPE] = ACTIONS(5397), - [anon_sym_QMARK_QMARK] = ACTIONS(5397), - [anon_sym_into] = ACTIONS(4271), - [anon_sym_on] = ACTIONS(4271), - [anon_sym_equals] = ACTIONS(4271), - [anon_sym_by] = ACTIONS(4271), - [anon_sym_as] = ACTIONS(5397), - [anon_sym_is] = ACTIONS(5397), - [anon_sym_DASH_GT] = ACTIONS(5397), - [anon_sym_with] = ACTIONS(5397), - [aux_sym_preproc_if_token3] = ACTIONS(4271), - [aux_sym_preproc_else_token1] = ACTIONS(4271), - [aux_sym_preproc_elif_token1] = ACTIONS(4271), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_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(5412), + [anon_sym_LBRACK] = ACTIONS(4811), + [anon_sym_COLON] = ACTIONS(4811), + [anon_sym_COMMA] = ACTIONS(4811), + [anon_sym_LPAREN] = ACTIONS(4811), + [anon_sym_LT] = ACTIONS(4813), + [anon_sym_GT] = ACTIONS(4813), + [anon_sym_QMARK] = ACTIONS(4813), + [anon_sym_BANG] = ACTIONS(4813), + [anon_sym_PLUS_PLUS] = ACTIONS(4811), + [anon_sym_DASH_DASH] = ACTIONS(4811), + [anon_sym_PLUS] = ACTIONS(4813), + [anon_sym_DASH] = ACTIONS(4813), + [anon_sym_STAR] = ACTIONS(4813), + [anon_sym_SLASH] = ACTIONS(4813), + [anon_sym_PERCENT] = ACTIONS(4813), + [anon_sym_CARET] = ACTIONS(4813), + [anon_sym_PIPE] = ACTIONS(4813), + [anon_sym_AMP] = ACTIONS(4813), + [anon_sym_LT_LT] = ACTIONS(4813), + [anon_sym_GT_GT] = ACTIONS(4813), + [anon_sym_GT_GT_GT] = ACTIONS(4813), + [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(4813), + [anon_sym_switch] = ACTIONS(4811), + [anon_sym_DOT_DOT] = ACTIONS(4811), + [anon_sym_and] = ACTIONS(4811), + [anon_sym_or] = ACTIONS(4811), + [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(4811), + [anon_sym_PIPE_PIPE] = ACTIONS(4811), + [anon_sym_QMARK_QMARK] = ACTIONS(4813), + [anon_sym_as] = ACTIONS(4811), + [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), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_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(4811), }, [3313] = { [sym_preproc_region] = STATE(3313), @@ -493572,57 +493054,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(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), + [anon_sym_SEMI] = ACTIONS(5072), + [anon_sym_LBRACK] = ACTIONS(5072), + [anon_sym_COLON] = ACTIONS(5072), + [anon_sym_COMMA] = ACTIONS(5072), + [anon_sym_RBRACK] = ACTIONS(5072), + [anon_sym_LPAREN] = ACTIONS(5072), + [anon_sym_RPAREN] = ACTIONS(5072), + [anon_sym_RBRACE] = ACTIONS(5072), + [anon_sym_LT] = ACTIONS(5074), + [anon_sym_GT] = ACTIONS(5074), + [anon_sym_in] = ACTIONS(5074), + [anon_sym_QMARK] = ACTIONS(5074), + [anon_sym_BANG] = ACTIONS(5074), + [anon_sym_PLUS_PLUS] = ACTIONS(5072), + [anon_sym_DASH_DASH] = ACTIONS(5072), + [anon_sym_PLUS] = ACTIONS(5074), + [anon_sym_DASH] = ACTIONS(5074), + [anon_sym_STAR] = ACTIONS(5072), + [anon_sym_SLASH] = ACTIONS(5074), + [anon_sym_PERCENT] = ACTIONS(5072), + [anon_sym_CARET] = ACTIONS(5072), + [anon_sym_PIPE] = ACTIONS(5074), + [anon_sym_AMP] = ACTIONS(5074), + [anon_sym_LT_LT] = ACTIONS(5072), + [anon_sym_GT_GT] = ACTIONS(5074), + [anon_sym_GT_GT_GT] = ACTIONS(5072), + [anon_sym_EQ_EQ] = ACTIONS(5072), + [anon_sym_BANG_EQ] = ACTIONS(5072), + [anon_sym_GT_EQ] = ACTIONS(5072), + [anon_sym_LT_EQ] = ACTIONS(5072), + [anon_sym_DOT] = ACTIONS(5074), + [anon_sym_EQ_GT] = ACTIONS(5072), + [anon_sym_switch] = ACTIONS(5072), + [anon_sym_when] = ACTIONS(5072), + [anon_sym_DOT_DOT] = ACTIONS(5072), + [anon_sym_and] = ACTIONS(5072), + [anon_sym_or] = ACTIONS(5072), + [anon_sym_AMP_AMP] = ACTIONS(5072), + [anon_sym_PIPE_PIPE] = ACTIONS(5072), + [anon_sym_QMARK_QMARK] = ACTIONS(5072), + [anon_sym_into] = ACTIONS(5072), + [anon_sym_on] = ACTIONS(5072), + [anon_sym_equals] = ACTIONS(5072), + [anon_sym_by] = ACTIONS(5072), + [anon_sym_as] = ACTIONS(5072), + [anon_sym_is] = ACTIONS(5072), + [anon_sym_DASH_GT] = ACTIONS(5072), + [anon_sym_with] = ACTIONS(5072), + [aux_sym_preproc_if_token3] = ACTIONS(5072), + [aux_sym_preproc_else_token1] = ACTIONS(5072), + [aux_sym_preproc_elif_token1] = ACTIONS(5072), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -493644,67 +493126,67 @@ 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), - [anon_sym_EQ] = ACTIONS(5403), - [anon_sym_LBRACK] = ACTIONS(4860), - [anon_sym_COLON] = ACTIONS(4860), - [anon_sym_COMMA] = ACTIONS(4860), - [anon_sym_LPAREN] = ACTIONS(4860), - [anon_sym_LT] = ACTIONS(4862), - [anon_sym_GT] = ACTIONS(4862), - [anon_sym_QMARK] = ACTIONS(4862), - [anon_sym_BANG] = ACTIONS(4862), - [anon_sym_PLUS_PLUS] = ACTIONS(4860), - [anon_sym_DASH_DASH] = ACTIONS(4860), - [anon_sym_PLUS] = ACTIONS(4862), - [anon_sym_DASH] = ACTIONS(4862), - [anon_sym_STAR] = ACTIONS(4862), - [anon_sym_SLASH] = ACTIONS(4862), - [anon_sym_PERCENT] = ACTIONS(4862), - [anon_sym_CARET] = ACTIONS(4862), - [anon_sym_PIPE] = ACTIONS(4862), - [anon_sym_AMP] = ACTIONS(4862), - [anon_sym_LT_LT] = ACTIONS(4862), - [anon_sym_GT_GT] = ACTIONS(4862), - [anon_sym_GT_GT_GT] = ACTIONS(4862), - [anon_sym_EQ_EQ] = ACTIONS(4860), - [anon_sym_BANG_EQ] = ACTIONS(4860), - [anon_sym_GT_EQ] = ACTIONS(4860), - [anon_sym_LT_EQ] = ACTIONS(4860), - [anon_sym_DOT] = ACTIONS(4862), - [anon_sym_switch] = ACTIONS(4860), - [anon_sym_DOT_DOT] = ACTIONS(4860), - [anon_sym_and] = ACTIONS(4860), - [anon_sym_or] = ACTIONS(4860), - [anon_sym_PLUS_EQ] = ACTIONS(5405), - [anon_sym_DASH_EQ] = ACTIONS(5405), - [anon_sym_STAR_EQ] = ACTIONS(5405), - [anon_sym_SLASH_EQ] = ACTIONS(5405), - [anon_sym_PERCENT_EQ] = ACTIONS(5405), - [anon_sym_AMP_EQ] = ACTIONS(5405), - [anon_sym_CARET_EQ] = ACTIONS(5405), - [anon_sym_PIPE_EQ] = ACTIONS(5405), - [anon_sym_LT_LT_EQ] = ACTIONS(5405), - [anon_sym_GT_GT_EQ] = ACTIONS(5405), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(5405), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(5405), - [anon_sym_AMP_AMP] = ACTIONS(4860), - [anon_sym_PIPE_PIPE] = ACTIONS(4860), - [anon_sym_QMARK_QMARK] = ACTIONS(4862), - [anon_sym_as] = ACTIONS(4860), - [anon_sym_is] = ACTIONS(4860), - [anon_sym_DASH_GT] = ACTIONS(4860), - [anon_sym_with] = ACTIONS(4860), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_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(4860), + [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), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), }, [3315] = { [sym_preproc_region] = STATE(3315), @@ -493716,57 +493198,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(5020), - [anon_sym_LBRACK] = ACTIONS(5020), - [anon_sym_COLON] = ACTIONS(5020), - [anon_sym_COMMA] = ACTIONS(5020), - [anon_sym_RBRACK] = ACTIONS(5020), - [anon_sym_LPAREN] = ACTIONS(5020), - [anon_sym_RPAREN] = ACTIONS(5020), - [anon_sym_RBRACE] = ACTIONS(5020), - [anon_sym_LT] = ACTIONS(5022), - [anon_sym_GT] = ACTIONS(5022), - [anon_sym_in] = ACTIONS(5022), - [anon_sym_QMARK] = ACTIONS(5022), - [anon_sym_BANG] = ACTIONS(5022), - [anon_sym_PLUS_PLUS] = ACTIONS(5020), - [anon_sym_DASH_DASH] = ACTIONS(5020), - [anon_sym_PLUS] = ACTIONS(5022), - [anon_sym_DASH] = ACTIONS(5022), - [anon_sym_STAR] = ACTIONS(5020), - [anon_sym_SLASH] = ACTIONS(5022), - [anon_sym_PERCENT] = ACTIONS(5020), - [anon_sym_CARET] = ACTIONS(5020), - [anon_sym_PIPE] = ACTIONS(5022), - [anon_sym_AMP] = ACTIONS(5022), - [anon_sym_LT_LT] = ACTIONS(5020), - [anon_sym_GT_GT] = ACTIONS(5022), - [anon_sym_GT_GT_GT] = ACTIONS(5020), - [anon_sym_EQ_EQ] = ACTIONS(5020), - [anon_sym_BANG_EQ] = ACTIONS(5020), - [anon_sym_GT_EQ] = ACTIONS(5020), - [anon_sym_LT_EQ] = ACTIONS(5020), - [anon_sym_DOT] = ACTIONS(5022), - [anon_sym_EQ_GT] = ACTIONS(5020), - [anon_sym_switch] = ACTIONS(5020), - [anon_sym_when] = ACTIONS(5020), - [anon_sym_DOT_DOT] = ACTIONS(5020), - [anon_sym_and] = ACTIONS(5020), - [anon_sym_or] = ACTIONS(5020), - [anon_sym_AMP_AMP] = ACTIONS(5020), - [anon_sym_PIPE_PIPE] = ACTIONS(5020), - [anon_sym_QMARK_QMARK] = ACTIONS(5020), - [anon_sym_into] = ACTIONS(5020), - [anon_sym_on] = ACTIONS(5020), - [anon_sym_equals] = ACTIONS(5020), - [anon_sym_by] = ACTIONS(5020), - [anon_sym_as] = ACTIONS(5020), - [anon_sym_is] = ACTIONS(5020), - [anon_sym_DASH_GT] = ACTIONS(5020), - [anon_sym_with] = ACTIONS(5020), - [aux_sym_preproc_if_token3] = ACTIONS(5020), - [aux_sym_preproc_else_token1] = ACTIONS(5020), - [aux_sym_preproc_elif_token1] = ACTIONS(5020), + [anon_sym_SEMI] = ACTIONS(5076), + [anon_sym_LBRACK] = ACTIONS(5076), + [anon_sym_COLON] = ACTIONS(5076), + [anon_sym_COMMA] = ACTIONS(5076), + [anon_sym_RBRACK] = ACTIONS(5076), + [anon_sym_LPAREN] = ACTIONS(5076), + [anon_sym_RPAREN] = ACTIONS(5076), + [anon_sym_RBRACE] = ACTIONS(5076), + [anon_sym_LT] = ACTIONS(5078), + [anon_sym_GT] = ACTIONS(5078), + [anon_sym_in] = ACTIONS(5078), + [anon_sym_QMARK] = ACTIONS(5078), + [anon_sym_BANG] = ACTIONS(5078), + [anon_sym_PLUS_PLUS] = ACTIONS(5076), + [anon_sym_DASH_DASH] = ACTIONS(5076), + [anon_sym_PLUS] = ACTIONS(5078), + [anon_sym_DASH] = ACTIONS(5078), + [anon_sym_STAR] = ACTIONS(5076), + [anon_sym_SLASH] = ACTIONS(5078), + [anon_sym_PERCENT] = ACTIONS(5076), + [anon_sym_CARET] = ACTIONS(5076), + [anon_sym_PIPE] = ACTIONS(5078), + [anon_sym_AMP] = ACTIONS(5078), + [anon_sym_LT_LT] = ACTIONS(5076), + [anon_sym_GT_GT] = ACTIONS(5078), + [anon_sym_GT_GT_GT] = ACTIONS(5076), + [anon_sym_EQ_EQ] = ACTIONS(5076), + [anon_sym_BANG_EQ] = ACTIONS(5076), + [anon_sym_GT_EQ] = ACTIONS(5076), + [anon_sym_LT_EQ] = ACTIONS(5076), + [anon_sym_DOT] = ACTIONS(5078), + [anon_sym_EQ_GT] = ACTIONS(5076), + [anon_sym_switch] = ACTIONS(5076), + [anon_sym_when] = ACTIONS(5076), + [anon_sym_DOT_DOT] = ACTIONS(5076), + [anon_sym_and] = ACTIONS(5076), + [anon_sym_or] = ACTIONS(5076), + [anon_sym_AMP_AMP] = ACTIONS(5076), + [anon_sym_PIPE_PIPE] = ACTIONS(5076), + [anon_sym_QMARK_QMARK] = ACTIONS(5076), + [anon_sym_into] = ACTIONS(5076), + [anon_sym_on] = ACTIONS(5076), + [anon_sym_equals] = ACTIONS(5076), + [anon_sym_by] = ACTIONS(5076), + [anon_sym_as] = ACTIONS(5076), + [anon_sym_is] = ACTIONS(5076), + [anon_sym_DASH_GT] = ACTIONS(5076), + [anon_sym_with] = ACTIONS(5076), + [aux_sym_preproc_if_token3] = ACTIONS(5076), + [aux_sym_preproc_else_token1] = ACTIONS(5076), + [aux_sym_preproc_elif_token1] = ACTIONS(5076), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -493788,57 +493270,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(5072), - [anon_sym_LBRACK] = ACTIONS(5072), - [anon_sym_COLON] = ACTIONS(5072), - [anon_sym_COMMA] = ACTIONS(5072), - [anon_sym_RBRACK] = ACTIONS(5072), - [anon_sym_LPAREN] = ACTIONS(5072), - [anon_sym_RPAREN] = ACTIONS(5072), - [anon_sym_RBRACE] = ACTIONS(5072), - [anon_sym_LT] = ACTIONS(5074), - [anon_sym_GT] = ACTIONS(5074), - [anon_sym_in] = ACTIONS(5074), - [anon_sym_QMARK] = ACTIONS(5074), - [anon_sym_BANG] = ACTIONS(5074), - [anon_sym_PLUS_PLUS] = ACTIONS(5072), - [anon_sym_DASH_DASH] = ACTIONS(5072), - [anon_sym_PLUS] = ACTIONS(5074), - [anon_sym_DASH] = ACTIONS(5074), - [anon_sym_STAR] = ACTIONS(5072), - [anon_sym_SLASH] = ACTIONS(5074), - [anon_sym_PERCENT] = ACTIONS(5072), - [anon_sym_CARET] = ACTIONS(5072), - [anon_sym_PIPE] = ACTIONS(5074), - [anon_sym_AMP] = ACTIONS(5074), - [anon_sym_LT_LT] = ACTIONS(5072), - [anon_sym_GT_GT] = ACTIONS(5074), - [anon_sym_GT_GT_GT] = ACTIONS(5072), - [anon_sym_EQ_EQ] = ACTIONS(5072), - [anon_sym_BANG_EQ] = ACTIONS(5072), - [anon_sym_GT_EQ] = ACTIONS(5072), - [anon_sym_LT_EQ] = ACTIONS(5072), - [anon_sym_DOT] = ACTIONS(5074), - [anon_sym_EQ_GT] = ACTIONS(5072), - [anon_sym_switch] = ACTIONS(5072), - [anon_sym_when] = ACTIONS(5072), - [anon_sym_DOT_DOT] = ACTIONS(5072), - [anon_sym_and] = ACTIONS(5072), - [anon_sym_or] = ACTIONS(5072), - [anon_sym_AMP_AMP] = ACTIONS(5072), - [anon_sym_PIPE_PIPE] = ACTIONS(5072), - [anon_sym_QMARK_QMARK] = ACTIONS(5072), - [anon_sym_into] = ACTIONS(5072), - [anon_sym_on] = ACTIONS(5072), - [anon_sym_equals] = ACTIONS(5072), - [anon_sym_by] = ACTIONS(5072), - [anon_sym_as] = ACTIONS(5072), - [anon_sym_is] = ACTIONS(5072), - [anon_sym_DASH_GT] = ACTIONS(5072), - [anon_sym_with] = ACTIONS(5072), - [aux_sym_preproc_if_token3] = ACTIONS(5072), - [aux_sym_preproc_else_token1] = ACTIONS(5072), - [aux_sym_preproc_elif_token1] = ACTIONS(5072), + [anon_sym_SEMI] = ACTIONS(5420), + [anon_sym_LBRACK] = ACTIONS(5420), + [anon_sym_COLON] = ACTIONS(5420), + [anon_sym_COMMA] = ACTIONS(5420), + [anon_sym_RBRACK] = ACTIONS(5420), + [anon_sym_LPAREN] = ACTIONS(5420), + [anon_sym_RPAREN] = ACTIONS(5420), + [anon_sym_RBRACE] = ACTIONS(5420), + [anon_sym_LT] = ACTIONS(5422), + [anon_sym_GT] = ACTIONS(5422), + [anon_sym_in] = ACTIONS(5422), + [anon_sym_QMARK] = ACTIONS(5422), + [anon_sym_BANG] = ACTIONS(5422), + [anon_sym_PLUS_PLUS] = ACTIONS(5420), + [anon_sym_DASH_DASH] = ACTIONS(5420), + [anon_sym_PLUS] = ACTIONS(5422), + [anon_sym_DASH] = ACTIONS(5422), + [anon_sym_STAR] = ACTIONS(5420), + [anon_sym_SLASH] = ACTIONS(5422), + [anon_sym_PERCENT] = ACTIONS(5420), + [anon_sym_CARET] = ACTIONS(5420), + [anon_sym_PIPE] = ACTIONS(5422), + [anon_sym_AMP] = ACTIONS(5422), + [anon_sym_LT_LT] = ACTIONS(5420), + [anon_sym_GT_GT] = ACTIONS(5422), + [anon_sym_GT_GT_GT] = ACTIONS(5420), + [anon_sym_EQ_EQ] = ACTIONS(5420), + [anon_sym_BANG_EQ] = ACTIONS(5420), + [anon_sym_GT_EQ] = ACTIONS(5420), + [anon_sym_LT_EQ] = ACTIONS(5420), + [anon_sym_DOT] = ACTIONS(5422), + [anon_sym_EQ_GT] = ACTIONS(5420), + [anon_sym_switch] = ACTIONS(5420), + [anon_sym_when] = ACTIONS(5420), + [anon_sym_DOT_DOT] = ACTIONS(5420), + [anon_sym_and] = ACTIONS(5420), + [anon_sym_or] = ACTIONS(5420), + [anon_sym_AMP_AMP] = ACTIONS(5420), + [anon_sym_PIPE_PIPE] = ACTIONS(5420), + [anon_sym_QMARK_QMARK] = ACTIONS(5420), + [anon_sym_into] = ACTIONS(5420), + [anon_sym_on] = ACTIONS(5420), + [anon_sym_equals] = ACTIONS(5420), + [anon_sym_by] = ACTIONS(5420), + [anon_sym_as] = ACTIONS(5420), + [anon_sym_is] = ACTIONS(5420), + [anon_sym_DASH_GT] = ACTIONS(5420), + [anon_sym_with] = ACTIONS(5420), + [aux_sym_preproc_if_token3] = ACTIONS(5420), + [aux_sym_preproc_else_token1] = ACTIONS(5420), + [aux_sym_preproc_elif_token1] = ACTIONS(5420), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -493851,6 +493333,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3317] = { + [sym_type_argument_list] = STATE(2933), [sym_preproc_region] = STATE(3317), [sym_preproc_endregion] = STATE(3317), [sym_preproc_line] = STATE(3317), @@ -493860,57 +493343,56 @@ 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(5046), - [anon_sym_LBRACK] = ACTIONS(5046), - [anon_sym_COLON] = ACTIONS(5046), - [anon_sym_COMMA] = ACTIONS(5046), - [anon_sym_RBRACK] = ACTIONS(5046), - [anon_sym_LPAREN] = ACTIONS(5046), - [anon_sym_RPAREN] = ACTIONS(5046), - [anon_sym_RBRACE] = ACTIONS(5046), - [anon_sym_LT] = ACTIONS(5048), - [anon_sym_GT] = ACTIONS(5048), - [anon_sym_in] = ACTIONS(5048), - [anon_sym_QMARK] = ACTIONS(5048), - [anon_sym_BANG] = ACTIONS(5048), - [anon_sym_PLUS_PLUS] = ACTIONS(5046), - [anon_sym_DASH_DASH] = ACTIONS(5046), - [anon_sym_PLUS] = ACTIONS(5048), - [anon_sym_DASH] = ACTIONS(5048), - [anon_sym_STAR] = ACTIONS(5046), - [anon_sym_SLASH] = ACTIONS(5048), - [anon_sym_PERCENT] = ACTIONS(5046), - [anon_sym_CARET] = ACTIONS(5046), - [anon_sym_PIPE] = ACTIONS(5048), - [anon_sym_AMP] = ACTIONS(5048), - [anon_sym_LT_LT] = ACTIONS(5046), - [anon_sym_GT_GT] = ACTIONS(5048), - [anon_sym_GT_GT_GT] = ACTIONS(5046), - [anon_sym_EQ_EQ] = ACTIONS(5046), - [anon_sym_BANG_EQ] = ACTIONS(5046), - [anon_sym_GT_EQ] = ACTIONS(5046), - [anon_sym_LT_EQ] = ACTIONS(5046), - [anon_sym_DOT] = ACTIONS(5048), - [anon_sym_EQ_GT] = ACTIONS(5046), - [anon_sym_switch] = ACTIONS(5046), - [anon_sym_when] = ACTIONS(5046), - [anon_sym_DOT_DOT] = ACTIONS(5046), - [anon_sym_and] = ACTIONS(5046), - [anon_sym_or] = ACTIONS(5046), - [anon_sym_AMP_AMP] = ACTIONS(5046), - [anon_sym_PIPE_PIPE] = ACTIONS(5046), - [anon_sym_QMARK_QMARK] = ACTIONS(5046), - [anon_sym_into] = ACTIONS(5046), - [anon_sym_on] = ACTIONS(5046), - [anon_sym_equals] = ACTIONS(5046), - [anon_sym_by] = ACTIONS(5046), - [anon_sym_as] = ACTIONS(5046), - [anon_sym_is] = ACTIONS(5046), - [anon_sym_DASH_GT] = ACTIONS(5046), - [anon_sym_with] = ACTIONS(5046), - [aux_sym_preproc_if_token3] = ACTIONS(5046), - [aux_sym_preproc_else_token1] = ACTIONS(5046), - [aux_sym_preproc_elif_token1] = ACTIONS(5046), + [anon_sym_SEMI] = ACTIONS(3640), + [anon_sym_LBRACK] = ACTIONS(3640), + [anon_sym_COLON] = ACTIONS(3638), + [anon_sym_COMMA] = ACTIONS(3640), + [anon_sym_RBRACK] = ACTIONS(3640), + [anon_sym_LPAREN] = ACTIONS(3640), + [anon_sym_RPAREN] = ACTIONS(3640), + [anon_sym_LBRACE] = ACTIONS(3640), + [anon_sym_RBRACE] = ACTIONS(3640), + [anon_sym_LT] = ACTIONS(4835), + [anon_sym_GT] = ACTIONS(3638), + [anon_sym_in] = ACTIONS(3638), + [anon_sym_QMARK] = ACTIONS(3638), + [anon_sym_BANG] = ACTIONS(3638), + [anon_sym_PLUS_PLUS] = ACTIONS(3640), + [anon_sym_DASH_DASH] = ACTIONS(3640), + [anon_sym_PLUS] = ACTIONS(3638), + [anon_sym_DASH] = ACTIONS(3638), + [anon_sym_STAR] = ACTIONS(3640), + [anon_sym_SLASH] = ACTIONS(3638), + [anon_sym_PERCENT] = ACTIONS(3640), + [anon_sym_CARET] = ACTIONS(3640), + [anon_sym_PIPE] = ACTIONS(3638), + [anon_sym_AMP] = ACTIONS(3638), + [anon_sym_LT_LT] = ACTIONS(3640), + [anon_sym_GT_GT] = ACTIONS(3638), + [anon_sym_GT_GT_GT] = ACTIONS(3640), + [anon_sym_EQ_EQ] = ACTIONS(3640), + [anon_sym_BANG_EQ] = ACTIONS(3640), + [anon_sym_GT_EQ] = ACTIONS(3640), + [anon_sym_LT_EQ] = ACTIONS(3640), + [anon_sym_DOT] = ACTIONS(3638), + [anon_sym_EQ_GT] = ACTIONS(3640), + [anon_sym_COLON_COLON] = ACTIONS(5424), + [anon_sym_switch] = ACTIONS(3640), + [anon_sym_DOT_DOT] = ACTIONS(3640), + [anon_sym_AMP_AMP] = ACTIONS(3640), + [anon_sym_PIPE_PIPE] = ACTIONS(3640), + [anon_sym_QMARK_QMARK] = ACTIONS(3640), + [anon_sym_into] = ACTIONS(3640), + [anon_sym_on] = ACTIONS(3640), + [anon_sym_equals] = ACTIONS(3640), + [anon_sym_by] = ACTIONS(3640), + [anon_sym_as] = ACTIONS(3640), + [anon_sym_is] = ACTIONS(3640), + [anon_sym_DASH_GT] = ACTIONS(3640), + [anon_sym_with] = ACTIONS(3640), + [aux_sym_preproc_if_token3] = ACTIONS(3640), + [aux_sym_preproc_else_token1] = ACTIONS(3640), + [aux_sym_preproc_elif_token1] = ACTIONS(3640), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -493932,57 +493414,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(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), + [anon_sym_SEMI] = ACTIONS(4874), + [anon_sym_LBRACK] = ACTIONS(4874), + [anon_sym_COLON] = ACTIONS(4874), + [anon_sym_COMMA] = ACTIONS(4874), + [anon_sym_RBRACK] = ACTIONS(4874), + [anon_sym_LPAREN] = ACTIONS(4874), + [anon_sym_RPAREN] = ACTIONS(4874), + [anon_sym_RBRACE] = ACTIONS(4874), + [anon_sym_LT] = ACTIONS(4876), + [anon_sym_GT] = ACTIONS(4876), + [anon_sym_in] = ACTIONS(4874), + [anon_sym_QMARK] = ACTIONS(4876), + [anon_sym_BANG] = ACTIONS(4876), + [anon_sym_PLUS_PLUS] = ACTIONS(4874), + [anon_sym_DASH_DASH] = ACTIONS(4874), + [anon_sym_PLUS] = ACTIONS(4876), + [anon_sym_DASH] = ACTIONS(4876), + [anon_sym_STAR] = ACTIONS(4874), + [anon_sym_SLASH] = ACTIONS(4876), + [anon_sym_PERCENT] = ACTIONS(4874), + [anon_sym_CARET] = ACTIONS(4874), + [anon_sym_PIPE] = ACTIONS(4876), + [anon_sym_AMP] = ACTIONS(4876), + [anon_sym_LT_LT] = ACTIONS(4874), + [anon_sym_GT_GT] = ACTIONS(4876), + [anon_sym_GT_GT_GT] = ACTIONS(4874), + [anon_sym_EQ_EQ] = ACTIONS(4874), + [anon_sym_BANG_EQ] = ACTIONS(4874), + [anon_sym_GT_EQ] = ACTIONS(4874), + [anon_sym_LT_EQ] = ACTIONS(4874), + [anon_sym_DOT] = ACTIONS(4876), + [anon_sym_EQ_GT] = ACTIONS(4874), + [anon_sym_switch] = ACTIONS(4874), + [anon_sym_when] = ACTIONS(4874), + [anon_sym_DOT_DOT] = ACTIONS(4874), + [anon_sym_and] = ACTIONS(4874), + [anon_sym_or] = ACTIONS(4874), + [anon_sym_AMP_AMP] = ACTIONS(4874), + [anon_sym_PIPE_PIPE] = ACTIONS(4874), + [anon_sym_QMARK_QMARK] = ACTIONS(4874), + [anon_sym_on] = ACTIONS(4874), + [anon_sym_equals] = ACTIONS(4874), + [anon_sym_by] = ACTIONS(4874), + [anon_sym_as] = ACTIONS(4874), + [anon_sym_is] = ACTIONS(4874), + [anon_sym_DASH_GT] = ACTIONS(4874), + [anon_sym_with] = ACTIONS(4874), + [anon_sym_DQUOTE] = ACTIONS(4874), + [aux_sym_preproc_if_token3] = ACTIONS(4874), + [aux_sym_preproc_else_token1] = ACTIONS(4874), + [aux_sym_preproc_elif_token1] = ACTIONS(4874), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -494004,57 +493486,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(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), - [anon_sym_DQUOTE] = 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(5080), + [anon_sym_LBRACK] = ACTIONS(5080), + [anon_sym_COLON] = ACTIONS(5080), + [anon_sym_COMMA] = ACTIONS(5080), + [anon_sym_RBRACK] = ACTIONS(5080), + [anon_sym_LPAREN] = ACTIONS(5080), + [anon_sym_RPAREN] = ACTIONS(5080), + [anon_sym_RBRACE] = ACTIONS(5080), + [anon_sym_LT] = ACTIONS(5082), + [anon_sym_GT] = ACTIONS(5082), + [anon_sym_in] = ACTIONS(5082), + [anon_sym_QMARK] = ACTIONS(5082), + [anon_sym_BANG] = ACTIONS(5082), + [anon_sym_PLUS_PLUS] = ACTIONS(5080), + [anon_sym_DASH_DASH] = ACTIONS(5080), + [anon_sym_PLUS] = ACTIONS(5082), + [anon_sym_DASH] = ACTIONS(5082), + [anon_sym_STAR] = ACTIONS(5080), + [anon_sym_SLASH] = ACTIONS(5082), + [anon_sym_PERCENT] = ACTIONS(5080), + [anon_sym_CARET] = ACTIONS(5080), + [anon_sym_PIPE] = ACTIONS(5082), + [anon_sym_AMP] = ACTIONS(5082), + [anon_sym_LT_LT] = ACTIONS(5080), + [anon_sym_GT_GT] = ACTIONS(5082), + [anon_sym_GT_GT_GT] = ACTIONS(5080), + [anon_sym_EQ_EQ] = ACTIONS(5080), + [anon_sym_BANG_EQ] = ACTIONS(5080), + [anon_sym_GT_EQ] = ACTIONS(5080), + [anon_sym_LT_EQ] = ACTIONS(5080), + [anon_sym_DOT] = ACTIONS(5082), + [anon_sym_EQ_GT] = ACTIONS(5080), + [anon_sym_switch] = ACTIONS(5080), + [anon_sym_when] = ACTIONS(5080), + [anon_sym_DOT_DOT] = ACTIONS(5080), + [anon_sym_and] = ACTIONS(5080), + [anon_sym_or] = ACTIONS(5080), + [anon_sym_AMP_AMP] = ACTIONS(5080), + [anon_sym_PIPE_PIPE] = ACTIONS(5080), + [anon_sym_QMARK_QMARK] = ACTIONS(5080), + [anon_sym_into] = ACTIONS(5080), + [anon_sym_on] = ACTIONS(5080), + [anon_sym_equals] = ACTIONS(5080), + [anon_sym_by] = ACTIONS(5080), + [anon_sym_as] = ACTIONS(5080), + [anon_sym_is] = ACTIONS(5080), + [anon_sym_DASH_GT] = ACTIONS(5080), + [anon_sym_with] = ACTIONS(5080), + [aux_sym_preproc_if_token3] = ACTIONS(5080), + [aux_sym_preproc_else_token1] = ACTIONS(5080), + [aux_sym_preproc_elif_token1] = ACTIONS(5080), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -494076,57 +493558,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(5050), - [anon_sym_LBRACK] = ACTIONS(5050), - [anon_sym_COLON] = ACTIONS(5050), - [anon_sym_COMMA] = ACTIONS(5050), - [anon_sym_RBRACK] = ACTIONS(5050), - [anon_sym_LPAREN] = ACTIONS(5050), - [anon_sym_RPAREN] = ACTIONS(5050), - [anon_sym_RBRACE] = ACTIONS(5050), - [anon_sym_LT] = ACTIONS(5052), - [anon_sym_GT] = ACTIONS(5052), - [anon_sym_in] = ACTIONS(5052), - [anon_sym_QMARK] = ACTIONS(5052), - [anon_sym_BANG] = ACTIONS(5052), - [anon_sym_PLUS_PLUS] = ACTIONS(5050), - [anon_sym_DASH_DASH] = ACTIONS(5050), - [anon_sym_PLUS] = ACTIONS(5052), - [anon_sym_DASH] = ACTIONS(5052), - [anon_sym_STAR] = ACTIONS(5050), - [anon_sym_SLASH] = ACTIONS(5052), - [anon_sym_PERCENT] = ACTIONS(5050), - [anon_sym_CARET] = ACTIONS(5050), - [anon_sym_PIPE] = ACTIONS(5052), - [anon_sym_AMP] = ACTIONS(5052), - [anon_sym_LT_LT] = ACTIONS(5050), - [anon_sym_GT_GT] = ACTIONS(5052), - [anon_sym_GT_GT_GT] = ACTIONS(5050), - [anon_sym_EQ_EQ] = ACTIONS(5050), - [anon_sym_BANG_EQ] = ACTIONS(5050), - [anon_sym_GT_EQ] = ACTIONS(5050), - [anon_sym_LT_EQ] = ACTIONS(5050), - [anon_sym_DOT] = ACTIONS(5052), - [anon_sym_EQ_GT] = ACTIONS(5050), - [anon_sym_switch] = ACTIONS(5050), - [anon_sym_when] = ACTIONS(5050), - [anon_sym_DOT_DOT] = ACTIONS(5050), - [anon_sym_and] = ACTIONS(5050), - [anon_sym_or] = ACTIONS(5050), - [anon_sym_AMP_AMP] = ACTIONS(5050), - [anon_sym_PIPE_PIPE] = ACTIONS(5050), - [anon_sym_QMARK_QMARK] = ACTIONS(5050), - [anon_sym_into] = ACTIONS(5050), - [anon_sym_on] = ACTIONS(5050), - [anon_sym_equals] = ACTIONS(5050), - [anon_sym_by] = ACTIONS(5050), - [anon_sym_as] = ACTIONS(5050), - [anon_sym_is] = ACTIONS(5050), - [anon_sym_DASH_GT] = ACTIONS(5050), - [anon_sym_with] = ACTIONS(5050), - [aux_sym_preproc_if_token3] = ACTIONS(5050), - [aux_sym_preproc_else_token1] = ACTIONS(5050), - [aux_sym_preproc_elif_token1] = ACTIONS(5050), + [anon_sym_SEMI] = ACTIONS(5008), + [anon_sym_LBRACK] = ACTIONS(5008), + [anon_sym_COLON] = ACTIONS(5008), + [anon_sym_COMMA] = ACTIONS(5008), + [anon_sym_RBRACK] = ACTIONS(5008), + [anon_sym_LPAREN] = ACTIONS(5008), + [anon_sym_RPAREN] = ACTIONS(5008), + [anon_sym_RBRACE] = ACTIONS(5008), + [anon_sym_LT] = ACTIONS(5010), + [anon_sym_GT] = ACTIONS(5010), + [anon_sym_in] = ACTIONS(5010), + [anon_sym_QMARK] = ACTIONS(5010), + [anon_sym_BANG] = ACTIONS(5010), + [anon_sym_PLUS_PLUS] = ACTIONS(5008), + [anon_sym_DASH_DASH] = ACTIONS(5008), + [anon_sym_PLUS] = ACTIONS(5010), + [anon_sym_DASH] = ACTIONS(5010), + [anon_sym_STAR] = ACTIONS(5008), + [anon_sym_SLASH] = ACTIONS(5010), + [anon_sym_PERCENT] = ACTIONS(5008), + [anon_sym_CARET] = ACTIONS(5008), + [anon_sym_PIPE] = ACTIONS(5010), + [anon_sym_AMP] = ACTIONS(5010), + [anon_sym_LT_LT] = ACTIONS(5008), + [anon_sym_GT_GT] = ACTIONS(5010), + [anon_sym_GT_GT_GT] = ACTIONS(5008), + [anon_sym_EQ_EQ] = ACTIONS(5008), + [anon_sym_BANG_EQ] = ACTIONS(5008), + [anon_sym_GT_EQ] = ACTIONS(5008), + [anon_sym_LT_EQ] = ACTIONS(5008), + [anon_sym_DOT] = ACTIONS(5010), + [anon_sym_EQ_GT] = ACTIONS(5008), + [anon_sym_switch] = ACTIONS(5008), + [anon_sym_when] = ACTIONS(5008), + [anon_sym_DOT_DOT] = ACTIONS(5008), + [anon_sym_and] = ACTIONS(5008), + [anon_sym_or] = ACTIONS(5008), + [anon_sym_AMP_AMP] = ACTIONS(5008), + [anon_sym_PIPE_PIPE] = ACTIONS(5008), + [anon_sym_QMARK_QMARK] = ACTIONS(5008), + [anon_sym_into] = ACTIONS(5008), + [anon_sym_on] = ACTIONS(5008), + [anon_sym_equals] = ACTIONS(5008), + [anon_sym_by] = ACTIONS(5008), + [anon_sym_as] = ACTIONS(5008), + [anon_sym_is] = ACTIONS(5008), + [anon_sym_DASH_GT] = ACTIONS(5008), + [anon_sym_with] = ACTIONS(5008), + [aux_sym_preproc_if_token3] = ACTIONS(5008), + [aux_sym_preproc_else_token1] = ACTIONS(5008), + [aux_sym_preproc_elif_token1] = ACTIONS(5008), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -494148,57 +493630,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(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(5012), + [anon_sym_LBRACK] = ACTIONS(5012), + [anon_sym_COLON] = ACTIONS(5012), + [anon_sym_COMMA] = ACTIONS(5012), + [anon_sym_RBRACK] = ACTIONS(5012), + [anon_sym_LPAREN] = ACTIONS(5012), + [anon_sym_RPAREN] = ACTIONS(5012), + [anon_sym_RBRACE] = ACTIONS(5012), + [anon_sym_LT] = ACTIONS(5014), + [anon_sym_GT] = ACTIONS(5014), + [anon_sym_in] = ACTIONS(5014), + [anon_sym_QMARK] = ACTIONS(5014), + [anon_sym_BANG] = ACTIONS(5014), + [anon_sym_PLUS_PLUS] = ACTIONS(5012), + [anon_sym_DASH_DASH] = ACTIONS(5012), + [anon_sym_PLUS] = ACTIONS(5014), + [anon_sym_DASH] = ACTIONS(5014), + [anon_sym_STAR] = ACTIONS(5012), + [anon_sym_SLASH] = ACTIONS(5014), + [anon_sym_PERCENT] = ACTIONS(5012), + [anon_sym_CARET] = ACTIONS(5012), + [anon_sym_PIPE] = ACTIONS(5014), + [anon_sym_AMP] = ACTIONS(5014), + [anon_sym_LT_LT] = ACTIONS(5012), + [anon_sym_GT_GT] = ACTIONS(5014), + [anon_sym_GT_GT_GT] = ACTIONS(5012), + [anon_sym_EQ_EQ] = ACTIONS(5012), + [anon_sym_BANG_EQ] = ACTIONS(5012), + [anon_sym_GT_EQ] = ACTIONS(5012), + [anon_sym_LT_EQ] = ACTIONS(5012), + [anon_sym_DOT] = ACTIONS(5014), + [anon_sym_EQ_GT] = ACTIONS(5012), + [anon_sym_switch] = ACTIONS(5012), + [anon_sym_when] = ACTIONS(5012), + [anon_sym_DOT_DOT] = ACTIONS(5012), + [anon_sym_and] = ACTIONS(5012), + [anon_sym_or] = ACTIONS(5012), + [anon_sym_AMP_AMP] = ACTIONS(5012), + [anon_sym_PIPE_PIPE] = ACTIONS(5012), + [anon_sym_QMARK_QMARK] = ACTIONS(5012), + [anon_sym_into] = ACTIONS(5012), + [anon_sym_on] = ACTIONS(5012), + [anon_sym_equals] = ACTIONS(5012), + [anon_sym_by] = ACTIONS(5012), + [anon_sym_as] = ACTIONS(5012), + [anon_sym_is] = ACTIONS(5012), + [anon_sym_DASH_GT] = ACTIONS(5012), + [anon_sym_with] = ACTIONS(5012), + [aux_sym_preproc_if_token3] = ACTIONS(5012), + [aux_sym_preproc_else_token1] = ACTIONS(5012), + [aux_sym_preproc_elif_token1] = ACTIONS(5012), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -494220,201 +493702,201 @@ 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(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), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - }, - [3323] = { - [sym_preproc_region] = STATE(3323), - [sym_preproc_endregion] = STATE(3323), - [sym_preproc_line] = STATE(3323), - [sym_preproc_pragma] = STATE(3323), - [sym_preproc_nullable] = STATE(3323), - [sym_preproc_error] = STATE(3323), - [sym_preproc_warning] = STATE(3323), - [sym_preproc_define] = STATE(3323), - [sym_preproc_undef] = STATE(3323), - [anon_sym_SEMI] = ACTIONS(1957), - [anon_sym_LBRACK] = ACTIONS(1957), - [anon_sym_COLON] = ACTIONS(1957), - [anon_sym_COMMA] = ACTIONS(1957), - [anon_sym_RBRACK] = ACTIONS(1957), - [anon_sym_LPAREN] = ACTIONS(1957), - [anon_sym_RPAREN] = ACTIONS(1957), - [anon_sym_RBRACE] = ACTIONS(1957), - [anon_sym_LT] = ACTIONS(1959), - [anon_sym_GT] = ACTIONS(1959), - [anon_sym_in] = ACTIONS(1959), - [anon_sym_QMARK] = ACTIONS(1959), - [anon_sym_BANG] = ACTIONS(1959), - [anon_sym_PLUS_PLUS] = ACTIONS(1957), - [anon_sym_DASH_DASH] = ACTIONS(1957), - [anon_sym_PLUS] = ACTIONS(1959), - [anon_sym_DASH] = ACTIONS(1959), - [anon_sym_STAR] = ACTIONS(1957), - [anon_sym_SLASH] = ACTIONS(1959), - [anon_sym_PERCENT] = ACTIONS(1957), - [anon_sym_CARET] = ACTIONS(1957), - [anon_sym_PIPE] = ACTIONS(1959), - [anon_sym_AMP] = ACTIONS(1959), - [anon_sym_LT_LT] = ACTIONS(1957), - [anon_sym_GT_GT] = ACTIONS(1959), - [anon_sym_GT_GT_GT] = ACTIONS(1957), - [anon_sym_EQ_EQ] = ACTIONS(1957), - [anon_sym_BANG_EQ] = ACTIONS(1957), - [anon_sym_GT_EQ] = ACTIONS(1957), - [anon_sym_LT_EQ] = ACTIONS(1957), - [anon_sym_DOT] = ACTIONS(1959), - [anon_sym_EQ_GT] = ACTIONS(1957), - [anon_sym_switch] = ACTIONS(1957), - [anon_sym_when] = ACTIONS(1957), - [anon_sym_DOT_DOT] = ACTIONS(1957), - [anon_sym_and] = ACTIONS(1957), - [anon_sym_or] = ACTIONS(1957), - [anon_sym_AMP_AMP] = ACTIONS(1957), - [anon_sym_PIPE_PIPE] = ACTIONS(1957), - [anon_sym_QMARK_QMARK] = ACTIONS(1957), - [anon_sym_into] = ACTIONS(1957), - [anon_sym_on] = ACTIONS(1957), - [anon_sym_equals] = ACTIONS(1957), - [anon_sym_by] = ACTIONS(1957), - [anon_sym_as] = ACTIONS(1957), - [anon_sym_is] = ACTIONS(1957), - [anon_sym_DASH_GT] = ACTIONS(1957), - [anon_sym_with] = ACTIONS(1957), - [aux_sym_preproc_if_token3] = ACTIONS(1957), - [aux_sym_preproc_else_token1] = ACTIONS(1957), - [aux_sym_preproc_elif_token1] = ACTIONS(1957), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - }, - [3324] = { - [sym_preproc_region] = STATE(3324), - [sym_preproc_endregion] = STATE(3324), - [sym_preproc_line] = STATE(3324), - [sym_preproc_pragma] = STATE(3324), - [sym_preproc_nullable] = STATE(3324), - [sym_preproc_error] = STATE(3324), - [sym_preproc_warning] = STATE(3324), + [anon_sym_SEMI] = ACTIONS(5016), + [anon_sym_LBRACK] = ACTIONS(5016), + [anon_sym_COLON] = ACTIONS(5016), + [anon_sym_COMMA] = ACTIONS(5016), + [anon_sym_RBRACK] = ACTIONS(5016), + [anon_sym_LPAREN] = ACTIONS(5016), + [anon_sym_RPAREN] = ACTIONS(5016), + [anon_sym_RBRACE] = ACTIONS(5016), + [anon_sym_LT] = ACTIONS(5018), + [anon_sym_GT] = ACTIONS(5018), + [anon_sym_in] = ACTIONS(5018), + [anon_sym_QMARK] = ACTIONS(5018), + [anon_sym_BANG] = ACTIONS(5018), + [anon_sym_PLUS_PLUS] = ACTIONS(5016), + [anon_sym_DASH_DASH] = ACTIONS(5016), + [anon_sym_PLUS] = ACTIONS(5018), + [anon_sym_DASH] = ACTIONS(5018), + [anon_sym_STAR] = ACTIONS(5016), + [anon_sym_SLASH] = ACTIONS(5018), + [anon_sym_PERCENT] = ACTIONS(5016), + [anon_sym_CARET] = ACTIONS(5016), + [anon_sym_PIPE] = ACTIONS(5018), + [anon_sym_AMP] = ACTIONS(5018), + [anon_sym_LT_LT] = ACTIONS(5016), + [anon_sym_GT_GT] = ACTIONS(5018), + [anon_sym_GT_GT_GT] = ACTIONS(5016), + [anon_sym_EQ_EQ] = ACTIONS(5016), + [anon_sym_BANG_EQ] = ACTIONS(5016), + [anon_sym_GT_EQ] = ACTIONS(5016), + [anon_sym_LT_EQ] = ACTIONS(5016), + [anon_sym_DOT] = ACTIONS(5018), + [anon_sym_EQ_GT] = ACTIONS(5016), + [anon_sym_switch] = ACTIONS(5016), + [anon_sym_when] = ACTIONS(5016), + [anon_sym_DOT_DOT] = ACTIONS(5016), + [anon_sym_and] = ACTIONS(5016), + [anon_sym_or] = ACTIONS(5016), + [anon_sym_AMP_AMP] = ACTIONS(5016), + [anon_sym_PIPE_PIPE] = ACTIONS(5016), + [anon_sym_QMARK_QMARK] = ACTIONS(5016), + [anon_sym_into] = ACTIONS(5016), + [anon_sym_on] = ACTIONS(5016), + [anon_sym_equals] = ACTIONS(5016), + [anon_sym_by] = ACTIONS(5016), + [anon_sym_as] = ACTIONS(5016), + [anon_sym_is] = ACTIONS(5016), + [anon_sym_DASH_GT] = ACTIONS(5016), + [anon_sym_with] = ACTIONS(5016), + [aux_sym_preproc_if_token3] = ACTIONS(5016), + [aux_sym_preproc_else_token1] = ACTIONS(5016), + [aux_sym_preproc_elif_token1] = ACTIONS(5016), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + }, + [3323] = { + [sym_modifier] = STATE(3655), + [sym_identifier] = STATE(6427), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_region] = STATE(3323), + [sym_preproc_endregion] = STATE(3323), + [sym_preproc_line] = STATE(3323), + [sym_preproc_pragma] = STATE(3323), + [sym_preproc_nullable] = STATE(3323), + [sym_preproc_error] = STATE(3323), + [sym_preproc_warning] = STATE(3323), + [sym_preproc_define] = STATE(3323), + [sym_preproc_undef] = STATE(3323), + [aux_sym__class_declaration_initializer_repeat2] = STATE(3532), + [sym__identifier_token] = ACTIONS(25), + [anon_sym_extern] = ACTIONS(4731), + [anon_sym_alias] = ACTIONS(29), + [anon_sym_global] = ACTIONS(29), + [anon_sym_unsafe] = ACTIONS(4731), + [anon_sym_static] = ACTIONS(4731), + [anon_sym_abstract] = ACTIONS(4731), + [anon_sym_async] = ACTIONS(4731), + [anon_sym_const] = ACTIONS(4731), + [anon_sym_file] = ACTIONS(4737), + [anon_sym_fixed] = ACTIONS(4731), + [anon_sym_internal] = ACTIONS(4731), + [anon_sym_new] = ACTIONS(4731), + [anon_sym_override] = ACTIONS(4731), + [anon_sym_partial] = ACTIONS(4731), + [anon_sym_private] = ACTIONS(4731), + [anon_sym_protected] = ACTIONS(4731), + [anon_sym_public] = ACTIONS(4731), + [anon_sym_readonly] = ACTIONS(4731), + [anon_sym_required] = ACTIONS(4731), + [anon_sym_sealed] = ACTIONS(4731), + [anon_sym_virtual] = ACTIONS(4731), + [anon_sym_volatile] = ACTIONS(4731), + [anon_sym_where] = ACTIONS(29), + [anon_sym_notnull] = ACTIONS(29), + [anon_sym_unmanaged] = ACTIONS(29), + [anon_sym_get] = ACTIONS(5160), + [anon_sym_set] = ACTIONS(5160), + [anon_sym_add] = ACTIONS(5160), + [anon_sym_remove] = ACTIONS(5160), + [anon_sym_init] = ACTIONS(5160), + [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), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + }, + [3324] = { + [sym_preproc_region] = STATE(3324), + [sym_preproc_endregion] = STATE(3324), + [sym_preproc_line] = STATE(3324), + [sym_preproc_pragma] = STATE(3324), + [sym_preproc_nullable] = STATE(3324), + [sym_preproc_error] = STATE(3324), + [sym_preproc_warning] = STATE(3324), [sym_preproc_define] = STATE(3324), [sym_preproc_undef] = STATE(3324), - [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_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), + [anon_sym_SEMI] = ACTIONS(5084), + [anon_sym_LBRACK] = ACTIONS(5084), + [anon_sym_COLON] = ACTIONS(5084), + [anon_sym_COMMA] = ACTIONS(5084), + [anon_sym_RBRACK] = ACTIONS(5084), + [anon_sym_LPAREN] = ACTIONS(5084), + [anon_sym_RPAREN] = ACTIONS(5084), + [anon_sym_RBRACE] = ACTIONS(5084), + [anon_sym_LT] = ACTIONS(5086), + [anon_sym_GT] = ACTIONS(5086), + [anon_sym_in] = ACTIONS(5086), + [anon_sym_QMARK] = ACTIONS(5086), + [anon_sym_BANG] = ACTIONS(5086), + [anon_sym_PLUS_PLUS] = ACTIONS(5084), + [anon_sym_DASH_DASH] = ACTIONS(5084), + [anon_sym_PLUS] = ACTIONS(5086), + [anon_sym_DASH] = ACTIONS(5086), + [anon_sym_STAR] = ACTIONS(5084), + [anon_sym_SLASH] = ACTIONS(5086), + [anon_sym_PERCENT] = ACTIONS(5084), + [anon_sym_CARET] = ACTIONS(5084), + [anon_sym_PIPE] = ACTIONS(5086), + [anon_sym_AMP] = ACTIONS(5086), + [anon_sym_LT_LT] = ACTIONS(5084), + [anon_sym_GT_GT] = ACTIONS(5086), + [anon_sym_GT_GT_GT] = ACTIONS(5084), + [anon_sym_EQ_EQ] = ACTIONS(5084), + [anon_sym_BANG_EQ] = ACTIONS(5084), + [anon_sym_GT_EQ] = ACTIONS(5084), + [anon_sym_LT_EQ] = ACTIONS(5084), + [anon_sym_DOT] = ACTIONS(5086), + [anon_sym_EQ_GT] = ACTIONS(5084), + [anon_sym_switch] = ACTIONS(5084), + [anon_sym_when] = ACTIONS(5084), + [anon_sym_DOT_DOT] = ACTIONS(5084), + [anon_sym_and] = ACTIONS(5084), + [anon_sym_or] = ACTIONS(5084), + [anon_sym_AMP_AMP] = ACTIONS(5084), + [anon_sym_PIPE_PIPE] = ACTIONS(5084), + [anon_sym_QMARK_QMARK] = ACTIONS(5084), + [anon_sym_into] = ACTIONS(5084), + [anon_sym_on] = ACTIONS(5084), + [anon_sym_equals] = ACTIONS(5084), + [anon_sym_by] = ACTIONS(5084), + [anon_sym_as] = ACTIONS(5084), + [anon_sym_is] = ACTIONS(5084), + [anon_sym_DASH_GT] = ACTIONS(5084), + [anon_sym_with] = ACTIONS(5084), + [aux_sym_preproc_if_token3] = ACTIONS(5084), + [aux_sym_preproc_else_token1] = ACTIONS(5084), + [aux_sym_preproc_elif_token1] = ACTIONS(5084), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -494436,57 +493918,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(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_preproc_if_token3] = ACTIONS(4949), - [aux_sym_preproc_else_token1] = ACTIONS(4949), - [aux_sym_preproc_elif_token1] = ACTIONS(4949), + [anon_sym_SEMI] = ACTIONS(5088), + [anon_sym_LBRACK] = ACTIONS(5088), + [anon_sym_COLON] = ACTIONS(5088), + [anon_sym_COMMA] = ACTIONS(5088), + [anon_sym_RBRACK] = ACTIONS(5088), + [anon_sym_LPAREN] = ACTIONS(5088), + [anon_sym_RPAREN] = ACTIONS(5088), + [anon_sym_RBRACE] = ACTIONS(5088), + [anon_sym_LT] = ACTIONS(5090), + [anon_sym_GT] = ACTIONS(5090), + [anon_sym_in] = ACTIONS(5090), + [anon_sym_QMARK] = ACTIONS(5090), + [anon_sym_BANG] = ACTIONS(5090), + [anon_sym_PLUS_PLUS] = ACTIONS(5088), + [anon_sym_DASH_DASH] = ACTIONS(5088), + [anon_sym_PLUS] = ACTIONS(5090), + [anon_sym_DASH] = ACTIONS(5090), + [anon_sym_STAR] = ACTIONS(5088), + [anon_sym_SLASH] = ACTIONS(5090), + [anon_sym_PERCENT] = ACTIONS(5088), + [anon_sym_CARET] = ACTIONS(5088), + [anon_sym_PIPE] = ACTIONS(5090), + [anon_sym_AMP] = ACTIONS(5090), + [anon_sym_LT_LT] = ACTIONS(5088), + [anon_sym_GT_GT] = ACTIONS(5090), + [anon_sym_GT_GT_GT] = ACTIONS(5088), + [anon_sym_EQ_EQ] = ACTIONS(5088), + [anon_sym_BANG_EQ] = ACTIONS(5088), + [anon_sym_GT_EQ] = ACTIONS(5088), + [anon_sym_LT_EQ] = ACTIONS(5088), + [anon_sym_DOT] = ACTIONS(5090), + [anon_sym_EQ_GT] = ACTIONS(5088), + [anon_sym_switch] = ACTIONS(5088), + [anon_sym_when] = ACTIONS(5088), + [anon_sym_DOT_DOT] = ACTIONS(5088), + [anon_sym_and] = ACTIONS(5088), + [anon_sym_or] = ACTIONS(5088), + [anon_sym_AMP_AMP] = ACTIONS(5088), + [anon_sym_PIPE_PIPE] = ACTIONS(5088), + [anon_sym_QMARK_QMARK] = ACTIONS(5088), + [anon_sym_into] = ACTIONS(5088), + [anon_sym_on] = ACTIONS(5088), + [anon_sym_equals] = ACTIONS(5088), + [anon_sym_by] = ACTIONS(5088), + [anon_sym_as] = ACTIONS(5088), + [anon_sym_is] = ACTIONS(5088), + [anon_sym_DASH_GT] = ACTIONS(5088), + [anon_sym_with] = ACTIONS(5088), + [aux_sym_preproc_if_token3] = ACTIONS(5088), + [aux_sym_preproc_else_token1] = ACTIONS(5088), + [aux_sym_preproc_elif_token1] = ACTIONS(5088), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -494508,57 +493990,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), - [anon_sym_SEMI] = ACTIONS(4941), - [anon_sym_LBRACK] = ACTIONS(4941), - [anon_sym_COLON] = ACTIONS(4941), - [anon_sym_COMMA] = ACTIONS(4941), - [anon_sym_RBRACK] = ACTIONS(4941), - [anon_sym_LPAREN] = ACTIONS(4941), - [anon_sym_RPAREN] = ACTIONS(4941), - [anon_sym_RBRACE] = ACTIONS(4941), - [anon_sym_LT] = ACTIONS(4943), - [anon_sym_GT] = ACTIONS(4943), - [anon_sym_in] = ACTIONS(4943), - [anon_sym_QMARK] = ACTIONS(4943), - [anon_sym_BANG] = ACTIONS(4943), - [anon_sym_PLUS_PLUS] = ACTIONS(4941), - [anon_sym_DASH_DASH] = ACTIONS(4941), - [anon_sym_PLUS] = ACTIONS(4943), - [anon_sym_DASH] = ACTIONS(4943), - [anon_sym_STAR] = ACTIONS(4941), - [anon_sym_SLASH] = ACTIONS(4943), - [anon_sym_PERCENT] = ACTIONS(4941), - [anon_sym_CARET] = ACTIONS(4941), - [anon_sym_PIPE] = ACTIONS(4943), - [anon_sym_AMP] = ACTIONS(4943), - [anon_sym_LT_LT] = ACTIONS(4941), - [anon_sym_GT_GT] = ACTIONS(4943), - [anon_sym_GT_GT_GT] = ACTIONS(4941), - [anon_sym_EQ_EQ] = ACTIONS(4941), - [anon_sym_BANG_EQ] = ACTIONS(4941), - [anon_sym_GT_EQ] = ACTIONS(4941), - [anon_sym_LT_EQ] = ACTIONS(4941), - [anon_sym_DOT] = ACTIONS(4943), - [anon_sym_EQ_GT] = ACTIONS(4941), - [anon_sym_switch] = ACTIONS(4941), - [anon_sym_when] = ACTIONS(4941), - [anon_sym_DOT_DOT] = ACTIONS(4941), - [anon_sym_and] = ACTIONS(4941), - [anon_sym_or] = ACTIONS(4941), - [anon_sym_AMP_AMP] = ACTIONS(4941), - [anon_sym_PIPE_PIPE] = ACTIONS(4941), - [anon_sym_QMARK_QMARK] = ACTIONS(4941), - [anon_sym_into] = ACTIONS(4941), - [anon_sym_on] = ACTIONS(4941), - [anon_sym_equals] = ACTIONS(4941), - [anon_sym_by] = ACTIONS(4941), - [anon_sym_as] = ACTIONS(4941), - [anon_sym_is] = ACTIONS(4941), - [anon_sym_DASH_GT] = ACTIONS(4941), - [anon_sym_with] = ACTIONS(4941), - [aux_sym_preproc_if_token3] = ACTIONS(4941), - [aux_sym_preproc_else_token1] = ACTIONS(4941), - [aux_sym_preproc_elif_token1] = ACTIONS(4941), + [anon_sym_SEMI] = ACTIONS(5092), + [anon_sym_LBRACK] = ACTIONS(5092), + [anon_sym_COLON] = ACTIONS(5092), + [anon_sym_COMMA] = ACTIONS(5092), + [anon_sym_RBRACK] = ACTIONS(5092), + [anon_sym_LPAREN] = ACTIONS(5092), + [anon_sym_RPAREN] = ACTIONS(5092), + [anon_sym_RBRACE] = ACTIONS(5092), + [anon_sym_LT] = ACTIONS(5094), + [anon_sym_GT] = ACTIONS(5094), + [anon_sym_in] = ACTIONS(5094), + [anon_sym_QMARK] = ACTIONS(5094), + [anon_sym_BANG] = ACTIONS(5094), + [anon_sym_PLUS_PLUS] = ACTIONS(5092), + [anon_sym_DASH_DASH] = ACTIONS(5092), + [anon_sym_PLUS] = ACTIONS(5094), + [anon_sym_DASH] = ACTIONS(5094), + [anon_sym_STAR] = ACTIONS(5092), + [anon_sym_SLASH] = ACTIONS(5094), + [anon_sym_PERCENT] = ACTIONS(5092), + [anon_sym_CARET] = ACTIONS(5092), + [anon_sym_PIPE] = ACTIONS(5094), + [anon_sym_AMP] = ACTIONS(5094), + [anon_sym_LT_LT] = ACTIONS(5092), + [anon_sym_GT_GT] = ACTIONS(5094), + [anon_sym_GT_GT_GT] = ACTIONS(5092), + [anon_sym_EQ_EQ] = ACTIONS(5092), + [anon_sym_BANG_EQ] = ACTIONS(5092), + [anon_sym_GT_EQ] = ACTIONS(5092), + [anon_sym_LT_EQ] = ACTIONS(5092), + [anon_sym_DOT] = ACTIONS(5094), + [anon_sym_EQ_GT] = ACTIONS(5092), + [anon_sym_switch] = ACTIONS(5092), + [anon_sym_when] = ACTIONS(5092), + [anon_sym_DOT_DOT] = ACTIONS(5092), + [anon_sym_and] = ACTIONS(5092), + [anon_sym_or] = ACTIONS(5092), + [anon_sym_AMP_AMP] = ACTIONS(5092), + [anon_sym_PIPE_PIPE] = ACTIONS(5092), + [anon_sym_QMARK_QMARK] = ACTIONS(5092), + [anon_sym_into] = ACTIONS(5092), + [anon_sym_on] = ACTIONS(5092), + [anon_sym_equals] = ACTIONS(5092), + [anon_sym_by] = ACTIONS(5092), + [anon_sym_as] = ACTIONS(5092), + [anon_sym_is] = ACTIONS(5092), + [anon_sym_DASH_GT] = ACTIONS(5092), + [anon_sym_with] = ACTIONS(5092), + [aux_sym_preproc_if_token3] = ACTIONS(5092), + [aux_sym_preproc_else_token1] = ACTIONS(5092), + [aux_sym_preproc_elif_token1] = ACTIONS(5092), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -494580,57 +494062,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_EQ] = ACTIONS(5411), - [anon_sym_LBRACK] = ACTIONS(4860), - [anon_sym_COLON] = ACTIONS(4860), - [anon_sym_COMMA] = ACTIONS(4860), - [anon_sym_LPAREN] = ACTIONS(4860), - [anon_sym_RPAREN] = ACTIONS(4860), - [anon_sym_RBRACE] = ACTIONS(4860), - [anon_sym_LT] = ACTIONS(4862), - [anon_sym_GT] = ACTIONS(4862), - [anon_sym_QMARK] = ACTIONS(4862), - [anon_sym_BANG] = ACTIONS(4862), - [anon_sym_PLUS_PLUS] = ACTIONS(4860), - [anon_sym_DASH_DASH] = ACTIONS(4860), - [anon_sym_PLUS] = ACTIONS(4862), - [anon_sym_DASH] = ACTIONS(4862), - [anon_sym_STAR] = ACTIONS(4862), - [anon_sym_SLASH] = ACTIONS(4862), - [anon_sym_PERCENT] = ACTIONS(4862), - [anon_sym_CARET] = ACTIONS(4862), - [anon_sym_PIPE] = ACTIONS(4862), - [anon_sym_AMP] = ACTIONS(4862), - [anon_sym_LT_LT] = ACTIONS(4862), - [anon_sym_GT_GT] = ACTIONS(4862), - [anon_sym_GT_GT_GT] = ACTIONS(4862), - [anon_sym_EQ_EQ] = ACTIONS(4860), - [anon_sym_BANG_EQ] = ACTIONS(4860), - [anon_sym_GT_EQ] = ACTIONS(4860), - [anon_sym_LT_EQ] = ACTIONS(4860), - [anon_sym_DOT] = ACTIONS(4862), - [anon_sym_switch] = ACTIONS(4860), - [anon_sym_DOT_DOT] = ACTIONS(4860), - [anon_sym_PLUS_EQ] = ACTIONS(5413), - [anon_sym_DASH_EQ] = ACTIONS(5413), - [anon_sym_STAR_EQ] = ACTIONS(5413), - [anon_sym_SLASH_EQ] = ACTIONS(5413), - [anon_sym_PERCENT_EQ] = ACTIONS(5413), - [anon_sym_AMP_EQ] = ACTIONS(5413), - [anon_sym_CARET_EQ] = ACTIONS(5413), - [anon_sym_PIPE_EQ] = ACTIONS(5413), - [anon_sym_LT_LT_EQ] = ACTIONS(5413), - [anon_sym_GT_GT_EQ] = ACTIONS(5413), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(5413), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(5413), - [anon_sym_AMP_AMP] = ACTIONS(4860), - [anon_sym_PIPE_PIPE] = ACTIONS(4860), - [anon_sym_QMARK_QMARK] = ACTIONS(4862), - [anon_sym_into] = ACTIONS(4860), - [anon_sym_as] = ACTIONS(4860), - [anon_sym_is] = ACTIONS(4860), - [anon_sym_DASH_GT] = ACTIONS(4860), - [anon_sym_with] = ACTIONS(4860), + [anon_sym_SEMI] = ACTIONS(3978), + [anon_sym_LBRACK] = ACTIONS(3978), + [anon_sym_COLON] = ACTIONS(3978), + [anon_sym_COMMA] = ACTIONS(3978), + [anon_sym_RBRACK] = ACTIONS(3978), + [anon_sym_LPAREN] = ACTIONS(3978), + [anon_sym_RPAREN] = ACTIONS(3978), + [anon_sym_LBRACE] = ACTIONS(3978), + [anon_sym_RBRACE] = ACTIONS(3978), + [anon_sym_LT] = ACTIONS(3976), + [anon_sym_GT] = ACTIONS(3976), + [anon_sym_in] = ACTIONS(3978), + [anon_sym_QMARK] = ACTIONS(3976), + [anon_sym_BANG] = ACTIONS(3976), + [anon_sym_PLUS_PLUS] = ACTIONS(3978), + [anon_sym_DASH_DASH] = ACTIONS(3978), + [anon_sym_PLUS] = ACTIONS(3976), + [anon_sym_DASH] = ACTIONS(3976), + [anon_sym_STAR] = ACTIONS(3978), + [anon_sym_SLASH] = ACTIONS(3976), + [anon_sym_PERCENT] = ACTIONS(3978), + [anon_sym_CARET] = ACTIONS(3978), + [anon_sym_PIPE] = ACTIONS(3976), + [anon_sym_AMP] = ACTIONS(3976), + [anon_sym_LT_LT] = ACTIONS(3978), + [anon_sym_GT_GT] = ACTIONS(3976), + [anon_sym_GT_GT_GT] = ACTIONS(3978), + [anon_sym_EQ_EQ] = ACTIONS(3978), + [anon_sym_BANG_EQ] = ACTIONS(3978), + [anon_sym_GT_EQ] = ACTIONS(3978), + [anon_sym_LT_EQ] = ACTIONS(3978), + [anon_sym_DOT] = ACTIONS(3976), + [anon_sym_EQ_GT] = ACTIONS(3978), + [anon_sym_switch] = ACTIONS(3978), + [anon_sym_when] = ACTIONS(3978), + [anon_sym_DOT_DOT] = ACTIONS(3978), + [anon_sym_and] = ACTIONS(3978), + [anon_sym_or] = ACTIONS(3978), + [anon_sym_AMP_AMP] = ACTIONS(3978), + [anon_sym_PIPE_PIPE] = ACTIONS(3978), + [anon_sym_QMARK_QMARK] = ACTIONS(3978), + [anon_sym_on] = ACTIONS(3978), + [anon_sym_equals] = ACTIONS(3978), + [anon_sym_by] = ACTIONS(3978), + [anon_sym_as] = ACTIONS(3978), + [anon_sym_is] = ACTIONS(3978), + [anon_sym_DASH_GT] = ACTIONS(3978), + [anon_sym_with] = ACTIONS(3978), + [aux_sym_preproc_if_token3] = ACTIONS(3978), + [aux_sym_preproc_else_token1] = ACTIONS(3978), + [aux_sym_preproc_elif_token1] = ACTIONS(3978), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -494652,57 +494134,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), - [anon_sym_SEMI] = ACTIONS(4961), - [anon_sym_LBRACK] = ACTIONS(4961), - [anon_sym_COLON] = ACTIONS(4961), - [anon_sym_COMMA] = ACTIONS(4961), - [anon_sym_RBRACK] = ACTIONS(4961), - [anon_sym_LPAREN] = ACTIONS(4961), - [anon_sym_RPAREN] = ACTIONS(4961), - [anon_sym_RBRACE] = ACTIONS(4961), - [anon_sym_LT] = ACTIONS(4963), - [anon_sym_GT] = ACTIONS(4963), - [anon_sym_in] = ACTIONS(4963), - [anon_sym_QMARK] = ACTIONS(4963), - [anon_sym_BANG] = ACTIONS(4963), - [anon_sym_PLUS_PLUS] = ACTIONS(4961), - [anon_sym_DASH_DASH] = ACTIONS(4961), - [anon_sym_PLUS] = ACTIONS(4963), - [anon_sym_DASH] = ACTIONS(4963), - [anon_sym_STAR] = ACTIONS(4961), - [anon_sym_SLASH] = ACTIONS(4963), - [anon_sym_PERCENT] = ACTIONS(4961), - [anon_sym_CARET] = ACTIONS(4961), - [anon_sym_PIPE] = ACTIONS(4963), - [anon_sym_AMP] = ACTIONS(4963), - [anon_sym_LT_LT] = ACTIONS(4961), - [anon_sym_GT_GT] = ACTIONS(4963), - [anon_sym_GT_GT_GT] = ACTIONS(4961), - [anon_sym_EQ_EQ] = ACTIONS(4961), - [anon_sym_BANG_EQ] = ACTIONS(4961), - [anon_sym_GT_EQ] = ACTIONS(4961), - [anon_sym_LT_EQ] = ACTIONS(4961), - [anon_sym_DOT] = ACTIONS(4963), - [anon_sym_EQ_GT] = ACTIONS(4961), - [anon_sym_switch] = ACTIONS(4961), - [anon_sym_when] = ACTIONS(4961), - [anon_sym_DOT_DOT] = ACTIONS(4961), - [anon_sym_and] = ACTIONS(4961), - [anon_sym_or] = ACTIONS(4961), - [anon_sym_AMP_AMP] = ACTIONS(4961), - [anon_sym_PIPE_PIPE] = ACTIONS(4961), - [anon_sym_QMARK_QMARK] = ACTIONS(4961), - [anon_sym_into] = ACTIONS(4961), - [anon_sym_on] = ACTIONS(4961), - [anon_sym_equals] = ACTIONS(4961), - [anon_sym_by] = ACTIONS(4961), - [anon_sym_as] = ACTIONS(4961), - [anon_sym_is] = ACTIONS(4961), - [anon_sym_DASH_GT] = ACTIONS(4961), - [anon_sym_with] = ACTIONS(4961), - [aux_sym_preproc_if_token3] = ACTIONS(4961), - [aux_sym_preproc_else_token1] = ACTIONS(4961), - [aux_sym_preproc_elif_token1] = ACTIONS(4961), + [anon_sym_SEMI] = ACTIONS(5096), + [anon_sym_LBRACK] = ACTIONS(5096), + [anon_sym_COLON] = ACTIONS(5096), + [anon_sym_COMMA] = ACTIONS(5096), + [anon_sym_RBRACK] = ACTIONS(5096), + [anon_sym_LPAREN] = ACTIONS(5096), + [anon_sym_RPAREN] = ACTIONS(5096), + [anon_sym_RBRACE] = ACTIONS(5096), + [anon_sym_LT] = ACTIONS(5098), + [anon_sym_GT] = ACTIONS(5098), + [anon_sym_in] = ACTIONS(5098), + [anon_sym_QMARK] = ACTIONS(5098), + [anon_sym_BANG] = ACTIONS(5098), + [anon_sym_PLUS_PLUS] = ACTIONS(5096), + [anon_sym_DASH_DASH] = ACTIONS(5096), + [anon_sym_PLUS] = ACTIONS(5098), + [anon_sym_DASH] = ACTIONS(5098), + [anon_sym_STAR] = ACTIONS(5096), + [anon_sym_SLASH] = ACTIONS(5098), + [anon_sym_PERCENT] = ACTIONS(5096), + [anon_sym_CARET] = ACTIONS(5096), + [anon_sym_PIPE] = ACTIONS(5098), + [anon_sym_AMP] = ACTIONS(5098), + [anon_sym_LT_LT] = ACTIONS(5096), + [anon_sym_GT_GT] = ACTIONS(5098), + [anon_sym_GT_GT_GT] = ACTIONS(5096), + [anon_sym_EQ_EQ] = ACTIONS(5096), + [anon_sym_BANG_EQ] = ACTIONS(5096), + [anon_sym_GT_EQ] = ACTIONS(5096), + [anon_sym_LT_EQ] = ACTIONS(5096), + [anon_sym_DOT] = ACTIONS(5098), + [anon_sym_EQ_GT] = ACTIONS(5096), + [anon_sym_switch] = ACTIONS(5096), + [anon_sym_when] = ACTIONS(5096), + [anon_sym_DOT_DOT] = ACTIONS(5096), + [anon_sym_and] = ACTIONS(5096), + [anon_sym_or] = ACTIONS(5096), + [anon_sym_AMP_AMP] = ACTIONS(5096), + [anon_sym_PIPE_PIPE] = ACTIONS(5096), + [anon_sym_QMARK_QMARK] = ACTIONS(5096), + [anon_sym_into] = ACTIONS(5096), + [anon_sym_on] = ACTIONS(5096), + [anon_sym_equals] = ACTIONS(5096), + [anon_sym_by] = ACTIONS(5096), + [anon_sym_as] = ACTIONS(5096), + [anon_sym_is] = ACTIONS(5096), + [anon_sym_DASH_GT] = ACTIONS(5096), + [anon_sym_with] = ACTIONS(5096), + [aux_sym_preproc_if_token3] = ACTIONS(5096), + [aux_sym_preproc_else_token1] = ACTIONS(5096), + [aux_sym_preproc_elif_token1] = ACTIONS(5096), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -494724,57 +494206,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(4969), - [anon_sym_LBRACK] = ACTIONS(4969), - [anon_sym_COLON] = ACTIONS(4969), - [anon_sym_COMMA] = ACTIONS(4969), - [anon_sym_RBRACK] = ACTIONS(4969), - [anon_sym_LPAREN] = ACTIONS(4969), - [anon_sym_RPAREN] = ACTIONS(4969), - [anon_sym_RBRACE] = ACTIONS(4969), - [anon_sym_LT] = ACTIONS(4971), - [anon_sym_GT] = ACTIONS(4971), - [anon_sym_in] = ACTIONS(4971), - [anon_sym_QMARK] = ACTIONS(4971), - [anon_sym_BANG] = ACTIONS(4971), - [anon_sym_PLUS_PLUS] = ACTIONS(4969), - [anon_sym_DASH_DASH] = ACTIONS(4969), - [anon_sym_PLUS] = ACTIONS(4971), - [anon_sym_DASH] = ACTIONS(4971), - [anon_sym_STAR] = ACTIONS(4969), - [anon_sym_SLASH] = ACTIONS(4971), - [anon_sym_PERCENT] = ACTIONS(4969), - [anon_sym_CARET] = ACTIONS(4969), - [anon_sym_PIPE] = ACTIONS(4971), - [anon_sym_AMP] = ACTIONS(4971), - [anon_sym_LT_LT] = ACTIONS(4969), - [anon_sym_GT_GT] = ACTIONS(4971), - [anon_sym_GT_GT_GT] = ACTIONS(4969), - [anon_sym_EQ_EQ] = ACTIONS(4969), - [anon_sym_BANG_EQ] = ACTIONS(4969), - [anon_sym_GT_EQ] = ACTIONS(4969), - [anon_sym_LT_EQ] = ACTIONS(4969), - [anon_sym_DOT] = ACTIONS(4971), - [anon_sym_EQ_GT] = ACTIONS(4969), - [anon_sym_switch] = ACTIONS(4969), - [anon_sym_when] = ACTIONS(4969), - [anon_sym_DOT_DOT] = ACTIONS(4969), - [anon_sym_and] = ACTIONS(4969), - [anon_sym_or] = ACTIONS(4969), - [anon_sym_AMP_AMP] = ACTIONS(4969), - [anon_sym_PIPE_PIPE] = ACTIONS(4969), - [anon_sym_QMARK_QMARK] = ACTIONS(4969), - [anon_sym_into] = ACTIONS(4969), - [anon_sym_on] = ACTIONS(4969), - [anon_sym_equals] = ACTIONS(4969), - [anon_sym_by] = ACTIONS(4969), - [anon_sym_as] = ACTIONS(4969), - [anon_sym_is] = ACTIONS(4969), - [anon_sym_DASH_GT] = ACTIONS(4969), - [anon_sym_with] = ACTIONS(4969), - [aux_sym_preproc_if_token3] = ACTIONS(4969), - [aux_sym_preproc_else_token1] = ACTIONS(4969), - [aux_sym_preproc_elif_token1] = ACTIONS(4969), + [anon_sym_SEMI] = ACTIONS(5100), + [anon_sym_LBRACK] = ACTIONS(5100), + [anon_sym_COLON] = ACTIONS(5100), + [anon_sym_COMMA] = ACTIONS(5100), + [anon_sym_RBRACK] = ACTIONS(5100), + [anon_sym_LPAREN] = ACTIONS(5100), + [anon_sym_RPAREN] = ACTIONS(5100), + [anon_sym_RBRACE] = ACTIONS(5100), + [anon_sym_LT] = ACTIONS(5102), + [anon_sym_GT] = ACTIONS(5102), + [anon_sym_in] = ACTIONS(5102), + [anon_sym_QMARK] = ACTIONS(5102), + [anon_sym_BANG] = ACTIONS(5102), + [anon_sym_PLUS_PLUS] = ACTIONS(5100), + [anon_sym_DASH_DASH] = ACTIONS(5100), + [anon_sym_PLUS] = ACTIONS(5102), + [anon_sym_DASH] = ACTIONS(5102), + [anon_sym_STAR] = ACTIONS(5100), + [anon_sym_SLASH] = ACTIONS(5102), + [anon_sym_PERCENT] = ACTIONS(5100), + [anon_sym_CARET] = ACTIONS(5100), + [anon_sym_PIPE] = ACTIONS(5102), + [anon_sym_AMP] = ACTIONS(5102), + [anon_sym_LT_LT] = ACTIONS(5100), + [anon_sym_GT_GT] = ACTIONS(5102), + [anon_sym_GT_GT_GT] = ACTIONS(5100), + [anon_sym_EQ_EQ] = ACTIONS(5100), + [anon_sym_BANG_EQ] = ACTIONS(5100), + [anon_sym_GT_EQ] = ACTIONS(5100), + [anon_sym_LT_EQ] = ACTIONS(5100), + [anon_sym_DOT] = ACTIONS(5102), + [anon_sym_EQ_GT] = ACTIONS(5100), + [anon_sym_switch] = ACTIONS(5100), + [anon_sym_when] = ACTIONS(5100), + [anon_sym_DOT_DOT] = ACTIONS(5100), + [anon_sym_and] = ACTIONS(5100), + [anon_sym_or] = ACTIONS(5100), + [anon_sym_AMP_AMP] = ACTIONS(5100), + [anon_sym_PIPE_PIPE] = ACTIONS(5100), + [anon_sym_QMARK_QMARK] = ACTIONS(5100), + [anon_sym_into] = ACTIONS(5100), + [anon_sym_on] = ACTIONS(5100), + [anon_sym_equals] = ACTIONS(5100), + [anon_sym_by] = ACTIONS(5100), + [anon_sym_as] = ACTIONS(5100), + [anon_sym_is] = ACTIONS(5100), + [anon_sym_DASH_GT] = ACTIONS(5100), + [anon_sym_with] = ACTIONS(5100), + [aux_sym_preproc_if_token3] = ACTIONS(5100), + [aux_sym_preproc_else_token1] = ACTIONS(5100), + [aux_sym_preproc_elif_token1] = ACTIONS(5100), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -494796,57 +494278,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(4957), - [anon_sym_LBRACK] = ACTIONS(4957), - [anon_sym_COLON] = ACTIONS(4957), - [anon_sym_COMMA] = ACTIONS(4957), - [anon_sym_RBRACK] = ACTIONS(4957), - [anon_sym_LPAREN] = ACTIONS(4957), - [anon_sym_RPAREN] = ACTIONS(4957), - [anon_sym_RBRACE] = ACTIONS(4957), - [anon_sym_LT] = ACTIONS(4959), - [anon_sym_GT] = ACTIONS(4959), - [anon_sym_in] = ACTIONS(4959), - [anon_sym_QMARK] = ACTIONS(4959), - [anon_sym_BANG] = ACTIONS(4959), - [anon_sym_PLUS_PLUS] = ACTIONS(4957), - [anon_sym_DASH_DASH] = ACTIONS(4957), - [anon_sym_PLUS] = ACTIONS(4959), - [anon_sym_DASH] = ACTIONS(4959), - [anon_sym_STAR] = ACTIONS(4957), - [anon_sym_SLASH] = ACTIONS(4959), - [anon_sym_PERCENT] = ACTIONS(4957), - [anon_sym_CARET] = ACTIONS(4957), - [anon_sym_PIPE] = ACTIONS(4959), - [anon_sym_AMP] = ACTIONS(4959), - [anon_sym_LT_LT] = ACTIONS(4957), - [anon_sym_GT_GT] = ACTIONS(4959), - [anon_sym_GT_GT_GT] = ACTIONS(4957), - [anon_sym_EQ_EQ] = ACTIONS(4957), - [anon_sym_BANG_EQ] = ACTIONS(4957), - [anon_sym_GT_EQ] = ACTIONS(4957), - [anon_sym_LT_EQ] = ACTIONS(4957), - [anon_sym_DOT] = ACTIONS(4959), - [anon_sym_EQ_GT] = ACTIONS(4957), - [anon_sym_switch] = ACTIONS(4957), - [anon_sym_when] = ACTIONS(4957), - [anon_sym_DOT_DOT] = ACTIONS(4957), - [anon_sym_and] = ACTIONS(4957), - [anon_sym_or] = ACTIONS(4957), - [anon_sym_AMP_AMP] = ACTIONS(4957), - [anon_sym_PIPE_PIPE] = ACTIONS(4957), - [anon_sym_QMARK_QMARK] = ACTIONS(4957), - [anon_sym_into] = ACTIONS(4957), - [anon_sym_on] = ACTIONS(4957), - [anon_sym_equals] = ACTIONS(4957), - [anon_sym_by] = ACTIONS(4957), - [anon_sym_as] = ACTIONS(4957), - [anon_sym_is] = ACTIONS(4957), - [anon_sym_DASH_GT] = ACTIONS(4957), - [anon_sym_with] = ACTIONS(4957), - [aux_sym_preproc_if_token3] = ACTIONS(4957), - [aux_sym_preproc_else_token1] = ACTIONS(4957), - [aux_sym_preproc_elif_token1] = ACTIONS(4957), + [sym__identifier_token] = ACTIONS(3466), + [anon_sym_extern] = ACTIONS(3466), + [anon_sym_alias] = ACTIONS(5426), + [anon_sym_global] = ACTIONS(3466), + [anon_sym_unsafe] = ACTIONS(3466), + [anon_sym_static] = ACTIONS(3466), + [anon_sym_LPAREN] = ACTIONS(5128), + [anon_sym_class] = ACTIONS(3466), + [anon_sym_ref] = ACTIONS(3466), + [anon_sym_struct] = ACTIONS(3466), + [anon_sym_enum] = ACTIONS(3466), + [anon_sym_interface] = ACTIONS(3466), + [anon_sym_delegate] = ACTIONS(3466), + [anon_sym_record] = ACTIONS(3466), + [anon_sym_abstract] = ACTIONS(3466), + [anon_sym_async] = ACTIONS(3466), + [anon_sym_const] = ACTIONS(3466), + [anon_sym_file] = ACTIONS(3466), + [anon_sym_fixed] = ACTIONS(3466), + [anon_sym_internal] = ACTIONS(3466), + [anon_sym_new] = ACTIONS(3466), + [anon_sym_override] = ACTIONS(3466), + [anon_sym_partial] = ACTIONS(3466), + [anon_sym_private] = ACTIONS(3466), + [anon_sym_protected] = ACTIONS(3466), + [anon_sym_public] = ACTIONS(3466), + [anon_sym_readonly] = ACTIONS(3466), + [anon_sym_required] = ACTIONS(3466), + [anon_sym_sealed] = ACTIONS(3466), + [anon_sym_virtual] = ACTIONS(3466), + [anon_sym_volatile] = ACTIONS(3466), + [anon_sym_where] = ACTIONS(3466), + [anon_sym_notnull] = ACTIONS(3466), + [anon_sym_unmanaged] = ACTIONS(3466), + [anon_sym_scoped] = ACTIONS(3466), + [anon_sym_var] = ACTIONS(3466), + [sym_predefined_type] = ACTIONS(3466), + [anon_sym_yield] = ACTIONS(3466), + [anon_sym_when] = ACTIONS(3466), + [anon_sym_from] = ACTIONS(3466), + [anon_sym_into] = ACTIONS(3466), + [anon_sym_join] = ACTIONS(3466), + [anon_sym_on] = ACTIONS(3466), + [anon_sym_equals] = ACTIONS(3466), + [anon_sym_let] = ACTIONS(3466), + [anon_sym_orderby] = ACTIONS(3466), + [anon_sym_ascending] = ACTIONS(3466), + [anon_sym_descending] = ACTIONS(3466), + [anon_sym_group] = ACTIONS(3466), + [anon_sym_by] = ACTIONS(3466), + [anon_sym_select] = ACTIONS(3466), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -494859,9 +494341,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3331] = { - [sym_modifier] = STATE(3652), - [sym_identifier] = STATE(6424), - [sym__reserved_identifier] = STATE(2175), [sym_preproc_region] = STATE(3331), [sym_preproc_endregion] = STATE(3331), [sym_preproc_line] = STATE(3331), @@ -494871,54 +494350,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), - [aux_sym__class_declaration_initializer_repeat2] = STATE(3541), - [sym__identifier_token] = ACTIONS(25), - [anon_sym_extern] = ACTIONS(4810), - [anon_sym_alias] = ACTIONS(29), - [anon_sym_global] = ACTIONS(29), - [anon_sym_unsafe] = ACTIONS(4810), - [anon_sym_static] = ACTIONS(4810), - [anon_sym_abstract] = ACTIONS(4810), - [anon_sym_async] = ACTIONS(4810), - [anon_sym_const] = ACTIONS(4810), - [anon_sym_file] = ACTIONS(4816), - [anon_sym_fixed] = ACTIONS(4810), - [anon_sym_internal] = ACTIONS(4810), - [anon_sym_new] = ACTIONS(4810), - [anon_sym_override] = ACTIONS(4810), - [anon_sym_partial] = ACTIONS(4810), - [anon_sym_private] = ACTIONS(4810), - [anon_sym_protected] = ACTIONS(4810), - [anon_sym_public] = ACTIONS(4810), - [anon_sym_readonly] = ACTIONS(4810), - [anon_sym_required] = ACTIONS(4810), - [anon_sym_sealed] = ACTIONS(4810), - [anon_sym_virtual] = ACTIONS(4810), - [anon_sym_volatile] = ACTIONS(4810), - [anon_sym_where] = ACTIONS(29), - [anon_sym_notnull] = ACTIONS(29), - [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_get] = ACTIONS(5150), - [anon_sym_set] = ACTIONS(5150), - [anon_sym_add] = ACTIONS(5150), - [anon_sym_remove] = ACTIONS(5150), - [anon_sym_init] = ACTIONS(5150), - [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(5104), + [anon_sym_LBRACK] = ACTIONS(5104), + [anon_sym_COLON] = ACTIONS(5104), + [anon_sym_COMMA] = ACTIONS(5104), + [anon_sym_RBRACK] = ACTIONS(5104), + [anon_sym_LPAREN] = ACTIONS(5104), + [anon_sym_RPAREN] = ACTIONS(5104), + [anon_sym_RBRACE] = ACTIONS(5104), + [anon_sym_LT] = ACTIONS(5106), + [anon_sym_GT] = ACTIONS(5106), + [anon_sym_in] = ACTIONS(5106), + [anon_sym_QMARK] = ACTIONS(5106), + [anon_sym_BANG] = ACTIONS(5106), + [anon_sym_PLUS_PLUS] = ACTIONS(5104), + [anon_sym_DASH_DASH] = ACTIONS(5104), + [anon_sym_PLUS] = ACTIONS(5106), + [anon_sym_DASH] = ACTIONS(5106), + [anon_sym_STAR] = ACTIONS(5104), + [anon_sym_SLASH] = ACTIONS(5106), + [anon_sym_PERCENT] = ACTIONS(5104), + [anon_sym_CARET] = ACTIONS(5104), + [anon_sym_PIPE] = ACTIONS(5106), + [anon_sym_AMP] = ACTIONS(5106), + [anon_sym_LT_LT] = ACTIONS(5104), + [anon_sym_GT_GT] = ACTIONS(5106), + [anon_sym_GT_GT_GT] = ACTIONS(5104), + [anon_sym_EQ_EQ] = ACTIONS(5104), + [anon_sym_BANG_EQ] = ACTIONS(5104), + [anon_sym_GT_EQ] = ACTIONS(5104), + [anon_sym_LT_EQ] = ACTIONS(5104), + [anon_sym_DOT] = ACTIONS(5106), + [anon_sym_EQ_GT] = ACTIONS(5104), + [anon_sym_switch] = ACTIONS(5104), + [anon_sym_when] = ACTIONS(5104), + [anon_sym_DOT_DOT] = ACTIONS(5104), + [anon_sym_and] = ACTIONS(5104), + [anon_sym_or] = ACTIONS(5104), + [anon_sym_AMP_AMP] = ACTIONS(5104), + [anon_sym_PIPE_PIPE] = ACTIONS(5104), + [anon_sym_QMARK_QMARK] = ACTIONS(5104), + [anon_sym_into] = ACTIONS(5104), + [anon_sym_on] = ACTIONS(5104), + [anon_sym_equals] = ACTIONS(5104), + [anon_sym_by] = ACTIONS(5104), + [anon_sym_as] = ACTIONS(5104), + [anon_sym_is] = ACTIONS(5104), + [anon_sym_DASH_GT] = ACTIONS(5104), + [anon_sym_with] = ACTIONS(5104), + [aux_sym_preproc_if_token3] = ACTIONS(5104), + [aux_sym_preproc_else_token1] = ACTIONS(5104), + [aux_sym_preproc_elif_token1] = ACTIONS(5104), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -494940,57 +494422,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(4977), - [anon_sym_LBRACK] = ACTIONS(4977), - [anon_sym_COLON] = ACTIONS(4977), - [anon_sym_COMMA] = ACTIONS(4977), - [anon_sym_RBRACK] = ACTIONS(4977), - [anon_sym_LPAREN] = ACTIONS(4977), - [anon_sym_RPAREN] = ACTIONS(4977), - [anon_sym_RBRACE] = ACTIONS(4977), - [anon_sym_LT] = ACTIONS(4979), - [anon_sym_GT] = ACTIONS(4979), - [anon_sym_in] = ACTIONS(4979), - [anon_sym_QMARK] = ACTIONS(4979), - [anon_sym_BANG] = ACTIONS(4979), - [anon_sym_PLUS_PLUS] = ACTIONS(4977), - [anon_sym_DASH_DASH] = ACTIONS(4977), - [anon_sym_PLUS] = ACTIONS(4979), - [anon_sym_DASH] = ACTIONS(4979), - [anon_sym_STAR] = ACTIONS(4977), - [anon_sym_SLASH] = ACTIONS(4979), - [anon_sym_PERCENT] = ACTIONS(4977), - [anon_sym_CARET] = ACTIONS(4977), - [anon_sym_PIPE] = ACTIONS(4979), - [anon_sym_AMP] = ACTIONS(4979), - [anon_sym_LT_LT] = ACTIONS(4977), - [anon_sym_GT_GT] = ACTIONS(4979), - [anon_sym_GT_GT_GT] = ACTIONS(4977), - [anon_sym_EQ_EQ] = ACTIONS(4977), - [anon_sym_BANG_EQ] = ACTIONS(4977), - [anon_sym_GT_EQ] = ACTIONS(4977), - [anon_sym_LT_EQ] = ACTIONS(4977), - [anon_sym_DOT] = ACTIONS(4979), - [anon_sym_EQ_GT] = ACTIONS(4977), - [anon_sym_switch] = ACTIONS(4977), - [anon_sym_when] = ACTIONS(4977), - [anon_sym_DOT_DOT] = ACTIONS(4977), - [anon_sym_and] = ACTIONS(4977), - [anon_sym_or] = ACTIONS(4977), - [anon_sym_AMP_AMP] = ACTIONS(4977), - [anon_sym_PIPE_PIPE] = ACTIONS(4977), - [anon_sym_QMARK_QMARK] = ACTIONS(4977), - [anon_sym_into] = ACTIONS(4977), - [anon_sym_on] = ACTIONS(4977), - [anon_sym_equals] = ACTIONS(4977), - [anon_sym_by] = ACTIONS(4977), - [anon_sym_as] = ACTIONS(4977), - [anon_sym_is] = ACTIONS(4977), - [anon_sym_DASH_GT] = ACTIONS(4977), - [anon_sym_with] = ACTIONS(4977), - [aux_sym_preproc_if_token3] = ACTIONS(4977), - [aux_sym_preproc_else_token1] = ACTIONS(4977), - [aux_sym_preproc_elif_token1] = ACTIONS(4977), + [anon_sym_SEMI] = ACTIONS(5108), + [anon_sym_LBRACK] = ACTIONS(5108), + [anon_sym_COLON] = ACTIONS(5108), + [anon_sym_COMMA] = ACTIONS(5108), + [anon_sym_RBRACK] = ACTIONS(5108), + [anon_sym_LPAREN] = ACTIONS(5108), + [anon_sym_RPAREN] = ACTIONS(5108), + [anon_sym_RBRACE] = ACTIONS(5108), + [anon_sym_LT] = ACTIONS(5110), + [anon_sym_GT] = ACTIONS(5110), + [anon_sym_in] = ACTIONS(5110), + [anon_sym_QMARK] = ACTIONS(5110), + [anon_sym_BANG] = ACTIONS(5110), + [anon_sym_PLUS_PLUS] = ACTIONS(5108), + [anon_sym_DASH_DASH] = ACTIONS(5108), + [anon_sym_PLUS] = ACTIONS(5110), + [anon_sym_DASH] = ACTIONS(5110), + [anon_sym_STAR] = ACTIONS(5108), + [anon_sym_SLASH] = ACTIONS(5110), + [anon_sym_PERCENT] = ACTIONS(5108), + [anon_sym_CARET] = ACTIONS(5108), + [anon_sym_PIPE] = ACTIONS(5110), + [anon_sym_AMP] = ACTIONS(5110), + [anon_sym_LT_LT] = ACTIONS(5108), + [anon_sym_GT_GT] = ACTIONS(5110), + [anon_sym_GT_GT_GT] = ACTIONS(5108), + [anon_sym_EQ_EQ] = ACTIONS(5108), + [anon_sym_BANG_EQ] = ACTIONS(5108), + [anon_sym_GT_EQ] = ACTIONS(5108), + [anon_sym_LT_EQ] = ACTIONS(5108), + [anon_sym_DOT] = ACTIONS(5110), + [anon_sym_EQ_GT] = ACTIONS(5108), + [anon_sym_switch] = ACTIONS(5108), + [anon_sym_when] = ACTIONS(5108), + [anon_sym_DOT_DOT] = ACTIONS(5108), + [anon_sym_and] = ACTIONS(5108), + [anon_sym_or] = ACTIONS(5108), + [anon_sym_AMP_AMP] = ACTIONS(5108), + [anon_sym_PIPE_PIPE] = ACTIONS(5108), + [anon_sym_QMARK_QMARK] = ACTIONS(5108), + [anon_sym_into] = ACTIONS(5108), + [anon_sym_on] = ACTIONS(5108), + [anon_sym_equals] = ACTIONS(5108), + [anon_sym_by] = ACTIONS(5108), + [anon_sym_as] = ACTIONS(5108), + [anon_sym_is] = ACTIONS(5108), + [anon_sym_DASH_GT] = ACTIONS(5108), + [anon_sym_with] = ACTIONS(5108), + [aux_sym_preproc_if_token3] = ACTIONS(5108), + [aux_sym_preproc_else_token1] = ACTIONS(5108), + [aux_sym_preproc_elif_token1] = ACTIONS(5108), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -495012,57 +494494,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(4981), - [anon_sym_LBRACK] = ACTIONS(4981), - [anon_sym_COLON] = ACTIONS(4981), - [anon_sym_COMMA] = ACTIONS(4981), - [anon_sym_RBRACK] = ACTIONS(4981), - [anon_sym_LPAREN] = ACTIONS(4981), - [anon_sym_RPAREN] = ACTIONS(4981), - [anon_sym_RBRACE] = ACTIONS(4981), - [anon_sym_LT] = ACTIONS(4983), - [anon_sym_GT] = ACTIONS(4983), - [anon_sym_in] = ACTIONS(4983), - [anon_sym_QMARK] = ACTIONS(4983), - [anon_sym_BANG] = ACTIONS(4983), - [anon_sym_PLUS_PLUS] = ACTIONS(4981), - [anon_sym_DASH_DASH] = ACTIONS(4981), - [anon_sym_PLUS] = ACTIONS(4983), - [anon_sym_DASH] = ACTIONS(4983), - [anon_sym_STAR] = ACTIONS(4981), - [anon_sym_SLASH] = ACTIONS(4983), - [anon_sym_PERCENT] = ACTIONS(4981), - [anon_sym_CARET] = ACTIONS(4981), - [anon_sym_PIPE] = ACTIONS(4983), - [anon_sym_AMP] = ACTIONS(4983), - [anon_sym_LT_LT] = ACTIONS(4981), - [anon_sym_GT_GT] = ACTIONS(4983), - [anon_sym_GT_GT_GT] = ACTIONS(4981), - [anon_sym_EQ_EQ] = ACTIONS(4981), - [anon_sym_BANG_EQ] = ACTIONS(4981), - [anon_sym_GT_EQ] = ACTIONS(4981), - [anon_sym_LT_EQ] = ACTIONS(4981), - [anon_sym_DOT] = ACTIONS(4983), - [anon_sym_EQ_GT] = ACTIONS(4981), - [anon_sym_switch] = ACTIONS(4981), - [anon_sym_when] = ACTIONS(4981), - [anon_sym_DOT_DOT] = ACTIONS(4981), - [anon_sym_and] = ACTIONS(4981), - [anon_sym_or] = ACTIONS(4981), - [anon_sym_AMP_AMP] = ACTIONS(4981), - [anon_sym_PIPE_PIPE] = ACTIONS(4981), - [anon_sym_QMARK_QMARK] = ACTIONS(4981), - [anon_sym_into] = ACTIONS(4981), - [anon_sym_on] = ACTIONS(4981), - [anon_sym_equals] = ACTIONS(4981), - [anon_sym_by] = ACTIONS(4981), - [anon_sym_as] = ACTIONS(4981), - [anon_sym_is] = ACTIONS(4981), - [anon_sym_DASH_GT] = ACTIONS(4981), - [anon_sym_with] = ACTIONS(4981), - [aux_sym_preproc_if_token3] = ACTIONS(4981), - [aux_sym_preproc_else_token1] = ACTIONS(4981), - [aux_sym_preproc_elif_token1] = ACTIONS(4981), + [anon_sym_SEMI] = ACTIONS(5112), + [anon_sym_LBRACK] = ACTIONS(5112), + [anon_sym_COLON] = ACTIONS(5112), + [anon_sym_COMMA] = ACTIONS(5112), + [anon_sym_RBRACK] = ACTIONS(5112), + [anon_sym_LPAREN] = ACTIONS(5112), + [anon_sym_RPAREN] = ACTIONS(5112), + [anon_sym_RBRACE] = ACTIONS(5112), + [anon_sym_LT] = ACTIONS(5114), + [anon_sym_GT] = ACTIONS(5114), + [anon_sym_in] = ACTIONS(5114), + [anon_sym_QMARK] = ACTIONS(5114), + [anon_sym_BANG] = ACTIONS(5114), + [anon_sym_PLUS_PLUS] = ACTIONS(5112), + [anon_sym_DASH_DASH] = ACTIONS(5112), + [anon_sym_PLUS] = ACTIONS(5114), + [anon_sym_DASH] = ACTIONS(5114), + [anon_sym_STAR] = ACTIONS(5112), + [anon_sym_SLASH] = ACTIONS(5114), + [anon_sym_PERCENT] = ACTIONS(5112), + [anon_sym_CARET] = ACTIONS(5112), + [anon_sym_PIPE] = ACTIONS(5114), + [anon_sym_AMP] = ACTIONS(5114), + [anon_sym_LT_LT] = ACTIONS(5112), + [anon_sym_GT_GT] = ACTIONS(5114), + [anon_sym_GT_GT_GT] = ACTIONS(5112), + [anon_sym_EQ_EQ] = ACTIONS(5112), + [anon_sym_BANG_EQ] = ACTIONS(5112), + [anon_sym_GT_EQ] = ACTIONS(5112), + [anon_sym_LT_EQ] = ACTIONS(5112), + [anon_sym_DOT] = ACTIONS(5114), + [anon_sym_EQ_GT] = ACTIONS(5112), + [anon_sym_switch] = ACTIONS(5112), + [anon_sym_when] = ACTIONS(5112), + [anon_sym_DOT_DOT] = ACTIONS(5112), + [anon_sym_and] = ACTIONS(5112), + [anon_sym_or] = ACTIONS(5112), + [anon_sym_AMP_AMP] = ACTIONS(5112), + [anon_sym_PIPE_PIPE] = ACTIONS(5112), + [anon_sym_QMARK_QMARK] = ACTIONS(5112), + [anon_sym_into] = ACTIONS(5112), + [anon_sym_on] = ACTIONS(5112), + [anon_sym_equals] = ACTIONS(5112), + [anon_sym_by] = ACTIONS(5112), + [anon_sym_as] = ACTIONS(5112), + [anon_sym_is] = ACTIONS(5112), + [anon_sym_DASH_GT] = ACTIONS(5112), + [anon_sym_with] = ACTIONS(5112), + [aux_sym_preproc_if_token3] = ACTIONS(5112), + [aux_sym_preproc_else_token1] = ACTIONS(5112), + [aux_sym_preproc_elif_token1] = ACTIONS(5112), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -495084,57 +494566,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_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(5116), + [anon_sym_LBRACK] = ACTIONS(5116), + [anon_sym_COLON] = ACTIONS(5116), + [anon_sym_COMMA] = ACTIONS(5116), + [anon_sym_RBRACK] = ACTIONS(5116), + [anon_sym_LPAREN] = ACTIONS(5116), + [anon_sym_RPAREN] = ACTIONS(5116), + [anon_sym_RBRACE] = ACTIONS(5116), + [anon_sym_LT] = ACTIONS(5118), + [anon_sym_GT] = ACTIONS(5118), + [anon_sym_in] = ACTIONS(5118), + [anon_sym_QMARK] = ACTIONS(5118), + [anon_sym_BANG] = ACTIONS(5118), + [anon_sym_PLUS_PLUS] = ACTIONS(5116), + [anon_sym_DASH_DASH] = ACTIONS(5116), + [anon_sym_PLUS] = ACTIONS(5118), + [anon_sym_DASH] = ACTIONS(5118), + [anon_sym_STAR] = ACTIONS(5116), + [anon_sym_SLASH] = ACTIONS(5118), + [anon_sym_PERCENT] = ACTIONS(5116), + [anon_sym_CARET] = ACTIONS(5116), + [anon_sym_PIPE] = ACTIONS(5118), + [anon_sym_AMP] = ACTIONS(5118), + [anon_sym_LT_LT] = ACTIONS(5116), + [anon_sym_GT_GT] = ACTIONS(5118), + [anon_sym_GT_GT_GT] = ACTIONS(5116), + [anon_sym_EQ_EQ] = ACTIONS(5116), + [anon_sym_BANG_EQ] = ACTIONS(5116), + [anon_sym_GT_EQ] = ACTIONS(5116), + [anon_sym_LT_EQ] = ACTIONS(5116), + [anon_sym_DOT] = ACTIONS(5118), + [anon_sym_EQ_GT] = ACTIONS(5116), + [anon_sym_switch] = ACTIONS(5116), + [anon_sym_when] = ACTIONS(5116), + [anon_sym_DOT_DOT] = ACTIONS(5116), + [anon_sym_and] = ACTIONS(5116), + [anon_sym_or] = ACTIONS(5116), + [anon_sym_AMP_AMP] = ACTIONS(5116), + [anon_sym_PIPE_PIPE] = ACTIONS(5116), + [anon_sym_QMARK_QMARK] = ACTIONS(5116), + [anon_sym_into] = ACTIONS(5116), + [anon_sym_on] = ACTIONS(5116), + [anon_sym_equals] = ACTIONS(5116), + [anon_sym_by] = ACTIONS(5116), + [anon_sym_as] = ACTIONS(5116), + [anon_sym_is] = ACTIONS(5116), + [anon_sym_DASH_GT] = ACTIONS(5116), + [anon_sym_with] = ACTIONS(5116), + [aux_sym_preproc_if_token3] = ACTIONS(5116), + [aux_sym_preproc_else_token1] = ACTIONS(5116), + [aux_sym_preproc_elif_token1] = ACTIONS(5116), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -495156,57 +494638,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(5415), - [anon_sym_LBRACK] = ACTIONS(5415), - [anon_sym_COLON] = ACTIONS(5415), - [anon_sym_COMMA] = ACTIONS(5415), - [anon_sym_RBRACK] = ACTIONS(5415), - [anon_sym_LPAREN] = ACTIONS(5415), - [anon_sym_RPAREN] = ACTIONS(5415), - [anon_sym_RBRACE] = ACTIONS(5415), - [anon_sym_LT] = ACTIONS(5417), - [anon_sym_GT] = ACTIONS(5417), - [anon_sym_in] = ACTIONS(5417), - [anon_sym_QMARK] = ACTIONS(5417), - [anon_sym_BANG] = ACTIONS(5417), - [anon_sym_PLUS_PLUS] = ACTIONS(5415), - [anon_sym_DASH_DASH] = ACTIONS(5415), - [anon_sym_PLUS] = ACTIONS(5417), - [anon_sym_DASH] = ACTIONS(5417), - [anon_sym_STAR] = ACTIONS(5415), - [anon_sym_SLASH] = ACTIONS(5417), - [anon_sym_PERCENT] = ACTIONS(5415), - [anon_sym_CARET] = ACTIONS(5415), - [anon_sym_PIPE] = ACTIONS(5417), - [anon_sym_AMP] = ACTIONS(5417), - [anon_sym_LT_LT] = ACTIONS(5415), - [anon_sym_GT_GT] = ACTIONS(5417), - [anon_sym_GT_GT_GT] = ACTIONS(5415), - [anon_sym_EQ_EQ] = ACTIONS(5415), - [anon_sym_BANG_EQ] = ACTIONS(5415), - [anon_sym_GT_EQ] = ACTIONS(5415), - [anon_sym_LT_EQ] = ACTIONS(5415), - [anon_sym_DOT] = ACTIONS(5417), - [anon_sym_EQ_GT] = ACTIONS(5415), - [anon_sym_switch] = ACTIONS(5415), - [anon_sym_when] = ACTIONS(5415), - [anon_sym_DOT_DOT] = ACTIONS(5415), - [anon_sym_and] = ACTIONS(5415), - [anon_sym_or] = ACTIONS(5415), - [anon_sym_AMP_AMP] = ACTIONS(5415), - [anon_sym_PIPE_PIPE] = ACTIONS(5415), - [anon_sym_QMARK_QMARK] = ACTIONS(5415), - [anon_sym_into] = ACTIONS(5415), - [anon_sym_on] = ACTIONS(5415), - [anon_sym_equals] = ACTIONS(5415), - [anon_sym_by] = ACTIONS(5415), - [anon_sym_as] = ACTIONS(5415), - [anon_sym_is] = ACTIONS(5415), - [anon_sym_DASH_GT] = ACTIONS(5415), - [anon_sym_with] = ACTIONS(5415), - [aux_sym_preproc_if_token3] = ACTIONS(5415), - [aux_sym_preproc_else_token1] = ACTIONS(5415), - [aux_sym_preproc_elif_token1] = ACTIONS(5415), + [anon_sym_SEMI] = ACTIONS(5120), + [anon_sym_LBRACK] = ACTIONS(5120), + [anon_sym_COLON] = ACTIONS(5120), + [anon_sym_COMMA] = ACTIONS(5120), + [anon_sym_RBRACK] = ACTIONS(5120), + [anon_sym_LPAREN] = ACTIONS(5120), + [anon_sym_RPAREN] = ACTIONS(5120), + [anon_sym_RBRACE] = ACTIONS(5120), + [anon_sym_LT] = ACTIONS(5122), + [anon_sym_GT] = ACTIONS(5122), + [anon_sym_in] = ACTIONS(5122), + [anon_sym_QMARK] = ACTIONS(5122), + [anon_sym_BANG] = ACTIONS(5122), + [anon_sym_PLUS_PLUS] = ACTIONS(5120), + [anon_sym_DASH_DASH] = ACTIONS(5120), + [anon_sym_PLUS] = ACTIONS(5122), + [anon_sym_DASH] = ACTIONS(5122), + [anon_sym_STAR] = ACTIONS(5120), + [anon_sym_SLASH] = ACTIONS(5122), + [anon_sym_PERCENT] = ACTIONS(5120), + [anon_sym_CARET] = ACTIONS(5120), + [anon_sym_PIPE] = ACTIONS(5122), + [anon_sym_AMP] = ACTIONS(5122), + [anon_sym_LT_LT] = ACTIONS(5120), + [anon_sym_GT_GT] = ACTIONS(5122), + [anon_sym_GT_GT_GT] = ACTIONS(5120), + [anon_sym_EQ_EQ] = ACTIONS(5120), + [anon_sym_BANG_EQ] = ACTIONS(5120), + [anon_sym_GT_EQ] = ACTIONS(5120), + [anon_sym_LT_EQ] = ACTIONS(5120), + [anon_sym_DOT] = ACTIONS(5122), + [anon_sym_EQ_GT] = ACTIONS(5120), + [anon_sym_switch] = ACTIONS(5120), + [anon_sym_when] = ACTIONS(5120), + [anon_sym_DOT_DOT] = ACTIONS(5120), + [anon_sym_and] = ACTIONS(5120), + [anon_sym_or] = ACTIONS(5120), + [anon_sym_AMP_AMP] = ACTIONS(5120), + [anon_sym_PIPE_PIPE] = ACTIONS(5120), + [anon_sym_QMARK_QMARK] = ACTIONS(5120), + [anon_sym_into] = ACTIONS(5120), + [anon_sym_on] = ACTIONS(5120), + [anon_sym_equals] = ACTIONS(5120), + [anon_sym_by] = ACTIONS(5120), + [anon_sym_as] = ACTIONS(5120), + [anon_sym_is] = ACTIONS(5120), + [anon_sym_DASH_GT] = ACTIONS(5120), + [anon_sym_with] = ACTIONS(5120), + [aux_sym_preproc_if_token3] = ACTIONS(5120), + [aux_sym_preproc_else_token1] = ACTIONS(5120), + [aux_sym_preproc_elif_token1] = ACTIONS(5120), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -495228,57 +494710,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(4989), - [anon_sym_LBRACK] = ACTIONS(4989), - [anon_sym_COLON] = ACTIONS(4989), - [anon_sym_COMMA] = ACTIONS(4989), - [anon_sym_RBRACK] = ACTIONS(4989), - [anon_sym_LPAREN] = ACTIONS(4989), - [anon_sym_RPAREN] = ACTIONS(4989), - [anon_sym_RBRACE] = ACTIONS(4989), - [anon_sym_LT] = ACTIONS(4991), - [anon_sym_GT] = ACTIONS(4991), - [anon_sym_in] = ACTIONS(4991), - [anon_sym_QMARK] = ACTIONS(4991), - [anon_sym_BANG] = ACTIONS(4991), - [anon_sym_PLUS_PLUS] = ACTIONS(4989), - [anon_sym_DASH_DASH] = ACTIONS(4989), - [anon_sym_PLUS] = ACTIONS(4991), - [anon_sym_DASH] = ACTIONS(4991), - [anon_sym_STAR] = ACTIONS(4989), - [anon_sym_SLASH] = ACTIONS(4991), - [anon_sym_PERCENT] = ACTIONS(4989), - [anon_sym_CARET] = ACTIONS(4989), - [anon_sym_PIPE] = ACTIONS(4991), - [anon_sym_AMP] = ACTIONS(4991), - [anon_sym_LT_LT] = ACTIONS(4989), - [anon_sym_GT_GT] = ACTIONS(4991), - [anon_sym_GT_GT_GT] = ACTIONS(4989), - [anon_sym_EQ_EQ] = ACTIONS(4989), - [anon_sym_BANG_EQ] = ACTIONS(4989), - [anon_sym_GT_EQ] = ACTIONS(4989), - [anon_sym_LT_EQ] = ACTIONS(4989), - [anon_sym_DOT] = ACTIONS(4991), - [anon_sym_EQ_GT] = ACTIONS(4989), - [anon_sym_switch] = ACTIONS(4989), - [anon_sym_when] = ACTIONS(4989), - [anon_sym_DOT_DOT] = ACTIONS(4989), - [anon_sym_and] = ACTIONS(4989), - [anon_sym_or] = ACTIONS(4989), - [anon_sym_AMP_AMP] = ACTIONS(4989), - [anon_sym_PIPE_PIPE] = ACTIONS(4989), - [anon_sym_QMARK_QMARK] = ACTIONS(4989), - [anon_sym_into] = ACTIONS(4989), - [anon_sym_on] = ACTIONS(4989), - [anon_sym_equals] = ACTIONS(4989), - [anon_sym_by] = ACTIONS(4989), - [anon_sym_as] = ACTIONS(4989), - [anon_sym_is] = ACTIONS(4989), - [anon_sym_DASH_GT] = ACTIONS(4989), - [anon_sym_with] = ACTIONS(4989), - [aux_sym_preproc_if_token3] = ACTIONS(4989), - [aux_sym_preproc_else_token1] = ACTIONS(4989), - [aux_sym_preproc_elif_token1] = ACTIONS(4989), + [anon_sym_SEMI] = ACTIONS(2127), + [anon_sym_LBRACK] = ACTIONS(2127), + [anon_sym_COLON] = ACTIONS(2127), + [anon_sym_COMMA] = ACTIONS(2127), + [anon_sym_RBRACK] = ACTIONS(2127), + [anon_sym_LPAREN] = ACTIONS(2127), + [anon_sym_RPAREN] = ACTIONS(2127), + [anon_sym_RBRACE] = ACTIONS(2127), + [anon_sym_LT] = ACTIONS(2129), + [anon_sym_GT] = ACTIONS(2129), + [anon_sym_in] = ACTIONS(2129), + [anon_sym_QMARK] = ACTIONS(2129), + [anon_sym_BANG] = ACTIONS(2129), + [anon_sym_PLUS_PLUS] = ACTIONS(2127), + [anon_sym_DASH_DASH] = ACTIONS(2127), + [anon_sym_PLUS] = ACTIONS(2129), + [anon_sym_DASH] = ACTIONS(2129), + [anon_sym_STAR] = ACTIONS(2127), + [anon_sym_SLASH] = ACTIONS(2129), + [anon_sym_PERCENT] = ACTIONS(2127), + [anon_sym_CARET] = ACTIONS(2127), + [anon_sym_PIPE] = ACTIONS(2129), + [anon_sym_AMP] = ACTIONS(2129), + [anon_sym_LT_LT] = ACTIONS(2127), + [anon_sym_GT_GT] = ACTIONS(2129), + [anon_sym_GT_GT_GT] = ACTIONS(2127), + [anon_sym_EQ_EQ] = ACTIONS(2127), + [anon_sym_BANG_EQ] = ACTIONS(2127), + [anon_sym_GT_EQ] = ACTIONS(2127), + [anon_sym_LT_EQ] = ACTIONS(2127), + [anon_sym_DOT] = ACTIONS(2129), + [anon_sym_EQ_GT] = ACTIONS(2127), + [anon_sym_switch] = ACTIONS(2127), + [anon_sym_when] = ACTIONS(2127), + [anon_sym_DOT_DOT] = ACTIONS(2127), + [anon_sym_and] = ACTIONS(2127), + [anon_sym_or] = ACTIONS(2127), + [anon_sym_AMP_AMP] = ACTIONS(2127), + [anon_sym_PIPE_PIPE] = ACTIONS(2127), + [anon_sym_QMARK_QMARK] = ACTIONS(2127), + [anon_sym_into] = ACTIONS(2127), + [anon_sym_on] = ACTIONS(2127), + [anon_sym_equals] = ACTIONS(2127), + [anon_sym_by] = ACTIONS(2127), + [anon_sym_as] = ACTIONS(2127), + [anon_sym_is] = ACTIONS(2127), + [anon_sym_DASH_GT] = ACTIONS(2127), + [anon_sym_with] = ACTIONS(2127), + [aux_sym_preproc_if_token3] = ACTIONS(2127), + [aux_sym_preproc_else_token1] = ACTIONS(2127), + [aux_sym_preproc_elif_token1] = ACTIONS(2127), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -495300,57 +494782,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(5419), - [anon_sym_LBRACK] = ACTIONS(5419), - [anon_sym_COLON] = ACTIONS(5419), - [anon_sym_COMMA] = ACTIONS(5419), - [anon_sym_RBRACK] = ACTIONS(5419), - [anon_sym_LPAREN] = ACTIONS(5419), - [anon_sym_RPAREN] = ACTIONS(5419), - [anon_sym_RBRACE] = ACTIONS(5419), - [anon_sym_LT] = ACTIONS(5421), - [anon_sym_GT] = ACTIONS(5421), - [anon_sym_in] = ACTIONS(5421), - [anon_sym_QMARK] = ACTIONS(5421), - [anon_sym_BANG] = ACTIONS(5421), - [anon_sym_PLUS_PLUS] = ACTIONS(5419), - [anon_sym_DASH_DASH] = ACTIONS(5419), - [anon_sym_PLUS] = ACTIONS(5421), - [anon_sym_DASH] = ACTIONS(5421), - [anon_sym_STAR] = ACTIONS(5419), - [anon_sym_SLASH] = ACTIONS(5421), - [anon_sym_PERCENT] = ACTIONS(5419), - [anon_sym_CARET] = ACTIONS(5419), - [anon_sym_PIPE] = ACTIONS(5421), - [anon_sym_AMP] = ACTIONS(5421), - [anon_sym_LT_LT] = ACTIONS(5419), - [anon_sym_GT_GT] = ACTIONS(5421), - [anon_sym_GT_GT_GT] = ACTIONS(5419), - [anon_sym_EQ_EQ] = ACTIONS(5419), - [anon_sym_BANG_EQ] = ACTIONS(5419), - [anon_sym_GT_EQ] = ACTIONS(5419), - [anon_sym_LT_EQ] = ACTIONS(5419), - [anon_sym_DOT] = ACTIONS(5421), - [anon_sym_EQ_GT] = ACTIONS(5419), - [anon_sym_switch] = ACTIONS(5419), - [anon_sym_when] = ACTIONS(5419), - [anon_sym_DOT_DOT] = ACTIONS(5419), - [anon_sym_and] = ACTIONS(5419), - [anon_sym_or] = ACTIONS(5419), - [anon_sym_AMP_AMP] = ACTIONS(5419), - [anon_sym_PIPE_PIPE] = ACTIONS(5419), - [anon_sym_QMARK_QMARK] = ACTIONS(5419), - [anon_sym_into] = ACTIONS(5419), - [anon_sym_on] = ACTIONS(5419), - [anon_sym_equals] = ACTIONS(5419), - [anon_sym_by] = ACTIONS(5419), - [anon_sym_as] = ACTIONS(5419), - [anon_sym_is] = ACTIONS(5419), - [anon_sym_DASH_GT] = ACTIONS(5419), - [anon_sym_with] = ACTIONS(5419), - [aux_sym_preproc_if_token3] = ACTIONS(5419), - [aux_sym_preproc_else_token1] = ACTIONS(5419), - [aux_sym_preproc_elif_token1] = ACTIONS(5419), + [sym__identifier_token] = ACTIONS(3466), + [anon_sym_extern] = ACTIONS(3466), + [anon_sym_alias] = ACTIONS(3466), + [anon_sym_global] = ACTIONS(3466), + [anon_sym_unsafe] = ACTIONS(3466), + [anon_sym_static] = ACTIONS(3466), + [anon_sym_LPAREN] = ACTIONS(5128), + [anon_sym_class] = ACTIONS(3466), + [anon_sym_ref] = ACTIONS(3466), + [anon_sym_struct] = ACTIONS(3466), + [anon_sym_enum] = ACTIONS(3466), + [anon_sym_interface] = ACTIONS(3466), + [anon_sym_delegate] = ACTIONS(3466), + [anon_sym_record] = ACTIONS(3466), + [anon_sym_abstract] = ACTIONS(3466), + [anon_sym_async] = ACTIONS(3466), + [anon_sym_const] = ACTIONS(3466), + [anon_sym_file] = ACTIONS(3466), + [anon_sym_fixed] = ACTIONS(3466), + [anon_sym_internal] = ACTIONS(3466), + [anon_sym_new] = ACTIONS(3466), + [anon_sym_override] = ACTIONS(3466), + [anon_sym_partial] = ACTIONS(3466), + [anon_sym_private] = ACTIONS(3466), + [anon_sym_protected] = ACTIONS(3466), + [anon_sym_public] = ACTIONS(3466), + [anon_sym_readonly] = ACTIONS(3466), + [anon_sym_required] = ACTIONS(3466), + [anon_sym_sealed] = ACTIONS(3466), + [anon_sym_virtual] = ACTIONS(3466), + [anon_sym_volatile] = ACTIONS(3466), + [anon_sym_where] = ACTIONS(3466), + [anon_sym_notnull] = ACTIONS(3466), + [anon_sym_unmanaged] = ACTIONS(3466), + [anon_sym_scoped] = ACTIONS(3466), + [anon_sym_var] = ACTIONS(3466), + [sym_predefined_type] = ACTIONS(3466), + [anon_sym_yield] = ACTIONS(3466), + [anon_sym_when] = ACTIONS(3466), + [anon_sym_from] = ACTIONS(3466), + [anon_sym_into] = ACTIONS(3466), + [anon_sym_join] = ACTIONS(3466), + [anon_sym_on] = ACTIONS(3466), + [anon_sym_equals] = ACTIONS(3466), + [anon_sym_let] = ACTIONS(3466), + [anon_sym_orderby] = ACTIONS(3466), + [anon_sym_ascending] = ACTIONS(3466), + [anon_sym_descending] = ACTIONS(3466), + [anon_sym_group] = ACTIONS(3466), + [anon_sym_by] = ACTIONS(3466), + [anon_sym_select] = ACTIONS(3466), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -495372,57 +494854,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(5423), - [anon_sym_LBRACK] = ACTIONS(5423), - [anon_sym_COLON] = ACTIONS(5423), - [anon_sym_COMMA] = ACTIONS(5423), - [anon_sym_RBRACK] = ACTIONS(5423), - [anon_sym_LPAREN] = ACTIONS(5423), - [anon_sym_RPAREN] = ACTIONS(5423), - [anon_sym_RBRACE] = ACTIONS(5423), - [anon_sym_LT] = ACTIONS(5425), - [anon_sym_GT] = ACTIONS(5425), - [anon_sym_in] = ACTIONS(5425), - [anon_sym_QMARK] = ACTIONS(5425), - [anon_sym_BANG] = ACTIONS(5425), - [anon_sym_PLUS_PLUS] = ACTIONS(5423), - [anon_sym_DASH_DASH] = ACTIONS(5423), - [anon_sym_PLUS] = ACTIONS(5425), - [anon_sym_DASH] = ACTIONS(5425), - [anon_sym_STAR] = ACTIONS(5423), - [anon_sym_SLASH] = ACTIONS(5425), - [anon_sym_PERCENT] = ACTIONS(5423), - [anon_sym_CARET] = ACTIONS(5423), - [anon_sym_PIPE] = ACTIONS(5425), - [anon_sym_AMP] = ACTIONS(5425), - [anon_sym_LT_LT] = ACTIONS(5423), - [anon_sym_GT_GT] = ACTIONS(5425), - [anon_sym_GT_GT_GT] = ACTIONS(5423), - [anon_sym_EQ_EQ] = ACTIONS(5423), - [anon_sym_BANG_EQ] = ACTIONS(5423), - [anon_sym_GT_EQ] = ACTIONS(5423), - [anon_sym_LT_EQ] = ACTIONS(5423), - [anon_sym_DOT] = ACTIONS(5425), - [anon_sym_EQ_GT] = ACTIONS(5423), - [anon_sym_switch] = ACTIONS(5423), - [anon_sym_when] = ACTIONS(5423), - [anon_sym_DOT_DOT] = ACTIONS(5423), - [anon_sym_and] = ACTIONS(5423), - [anon_sym_or] = ACTIONS(5423), - [anon_sym_AMP_AMP] = ACTIONS(5423), - [anon_sym_PIPE_PIPE] = ACTIONS(5423), - [anon_sym_QMARK_QMARK] = ACTIONS(5423), - [anon_sym_into] = ACTIONS(5423), - [anon_sym_on] = ACTIONS(5423), - [anon_sym_equals] = ACTIONS(5423), - [anon_sym_by] = ACTIONS(5423), - [anon_sym_as] = ACTIONS(5423), - [anon_sym_is] = ACTIONS(5423), - [anon_sym_DASH_GT] = ACTIONS(5423), - [anon_sym_with] = ACTIONS(5423), - [aux_sym_preproc_if_token3] = ACTIONS(5423), - [aux_sym_preproc_else_token1] = ACTIONS(5423), - [aux_sym_preproc_elif_token1] = ACTIONS(5423), + [anon_sym_SEMI] = ACTIONS(5048), + [anon_sym_LBRACK] = ACTIONS(5048), + [anon_sym_COLON] = ACTIONS(5048), + [anon_sym_COMMA] = ACTIONS(5048), + [anon_sym_RBRACK] = ACTIONS(5048), + [anon_sym_LPAREN] = ACTIONS(5048), + [anon_sym_RPAREN] = ACTIONS(5048), + [anon_sym_RBRACE] = ACTIONS(5048), + [anon_sym_LT] = ACTIONS(5050), + [anon_sym_GT] = ACTIONS(5050), + [anon_sym_in] = ACTIONS(5050), + [anon_sym_QMARK] = ACTIONS(5050), + [anon_sym_BANG] = ACTIONS(5050), + [anon_sym_PLUS_PLUS] = ACTIONS(5048), + [anon_sym_DASH_DASH] = ACTIONS(5048), + [anon_sym_PLUS] = ACTIONS(5050), + [anon_sym_DASH] = ACTIONS(5050), + [anon_sym_STAR] = ACTIONS(5048), + [anon_sym_SLASH] = ACTIONS(5050), + [anon_sym_PERCENT] = ACTIONS(5048), + [anon_sym_CARET] = ACTIONS(5048), + [anon_sym_PIPE] = ACTIONS(5050), + [anon_sym_AMP] = ACTIONS(5050), + [anon_sym_LT_LT] = ACTIONS(5048), + [anon_sym_GT_GT] = ACTIONS(5050), + [anon_sym_GT_GT_GT] = ACTIONS(5048), + [anon_sym_EQ_EQ] = ACTIONS(5048), + [anon_sym_BANG_EQ] = ACTIONS(5048), + [anon_sym_GT_EQ] = ACTIONS(5048), + [anon_sym_LT_EQ] = ACTIONS(5048), + [anon_sym_DOT] = ACTIONS(5050), + [anon_sym_EQ_GT] = ACTIONS(5048), + [anon_sym_switch] = ACTIONS(5048), + [anon_sym_when] = ACTIONS(5048), + [anon_sym_DOT_DOT] = ACTIONS(5048), + [anon_sym_and] = ACTIONS(5048), + [anon_sym_or] = ACTIONS(5048), + [anon_sym_AMP_AMP] = ACTIONS(5048), + [anon_sym_PIPE_PIPE] = ACTIONS(5048), + [anon_sym_QMARK_QMARK] = ACTIONS(5048), + [anon_sym_into] = ACTIONS(5048), + [anon_sym_on] = ACTIONS(5048), + [anon_sym_equals] = ACTIONS(5048), + [anon_sym_by] = ACTIONS(5048), + [anon_sym_as] = ACTIONS(5048), + [anon_sym_is] = ACTIONS(5048), + [anon_sym_DASH_GT] = ACTIONS(5048), + [anon_sym_with] = ACTIONS(5048), + [aux_sym_preproc_if_token3] = ACTIONS(5048), + [aux_sym_preproc_else_token1] = ACTIONS(5048), + [aux_sym_preproc_elif_token1] = ACTIONS(5048), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -495444,57 +494926,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(4997), - [anon_sym_LBRACK] = ACTIONS(4997), - [anon_sym_COLON] = ACTIONS(4997), - [anon_sym_COMMA] = ACTIONS(4997), - [anon_sym_RBRACK] = ACTIONS(4997), - [anon_sym_LPAREN] = ACTIONS(4997), - [anon_sym_RPAREN] = ACTIONS(4997), - [anon_sym_RBRACE] = ACTIONS(4997), - [anon_sym_LT] = ACTIONS(4999), - [anon_sym_GT] = ACTIONS(4999), - [anon_sym_in] = ACTIONS(4999), - [anon_sym_QMARK] = ACTIONS(4999), - [anon_sym_BANG] = ACTIONS(4999), - [anon_sym_PLUS_PLUS] = ACTIONS(4997), - [anon_sym_DASH_DASH] = ACTIONS(4997), - [anon_sym_PLUS] = ACTIONS(4999), - [anon_sym_DASH] = ACTIONS(4999), - [anon_sym_STAR] = ACTIONS(4997), - [anon_sym_SLASH] = ACTIONS(4999), - [anon_sym_PERCENT] = ACTIONS(4997), - [anon_sym_CARET] = ACTIONS(4997), - [anon_sym_PIPE] = ACTIONS(4999), - [anon_sym_AMP] = ACTIONS(4999), - [anon_sym_LT_LT] = ACTIONS(4997), - [anon_sym_GT_GT] = ACTIONS(4999), - [anon_sym_GT_GT_GT] = ACTIONS(4997), - [anon_sym_EQ_EQ] = ACTIONS(4997), - [anon_sym_BANG_EQ] = ACTIONS(4997), - [anon_sym_GT_EQ] = ACTIONS(4997), - [anon_sym_LT_EQ] = ACTIONS(4997), - [anon_sym_DOT] = ACTIONS(4999), - [anon_sym_EQ_GT] = ACTIONS(4997), - [anon_sym_switch] = ACTIONS(4997), - [anon_sym_when] = ACTIONS(4997), - [anon_sym_DOT_DOT] = ACTIONS(4997), - [anon_sym_and] = ACTIONS(4997), - [anon_sym_or] = ACTIONS(4997), - [anon_sym_AMP_AMP] = ACTIONS(4997), - [anon_sym_PIPE_PIPE] = ACTIONS(4997), - [anon_sym_QMARK_QMARK] = ACTIONS(4997), - [anon_sym_into] = ACTIONS(4997), - [anon_sym_on] = ACTIONS(4997), - [anon_sym_equals] = ACTIONS(4997), - [anon_sym_by] = ACTIONS(4997), - [anon_sym_as] = ACTIONS(4997), - [anon_sym_is] = ACTIONS(4997), - [anon_sym_DASH_GT] = ACTIONS(4997), - [anon_sym_with] = ACTIONS(4997), - [aux_sym_preproc_if_token3] = ACTIONS(4997), - [aux_sym_preproc_else_token1] = ACTIONS(4997), - [aux_sym_preproc_elif_token1] = ACTIONS(4997), + [anon_sym_SEMI] = ACTIONS(5052), + [anon_sym_LBRACK] = ACTIONS(5052), + [anon_sym_COLON] = ACTIONS(5052), + [anon_sym_COMMA] = ACTIONS(5052), + [anon_sym_RBRACK] = ACTIONS(5052), + [anon_sym_LPAREN] = ACTIONS(5052), + [anon_sym_RPAREN] = ACTIONS(5052), + [anon_sym_RBRACE] = ACTIONS(5052), + [anon_sym_LT] = ACTIONS(5054), + [anon_sym_GT] = ACTIONS(5054), + [anon_sym_in] = ACTIONS(5054), + [anon_sym_QMARK] = ACTIONS(5054), + [anon_sym_BANG] = ACTIONS(5054), + [anon_sym_PLUS_PLUS] = ACTIONS(5052), + [anon_sym_DASH_DASH] = ACTIONS(5052), + [anon_sym_PLUS] = ACTIONS(5054), + [anon_sym_DASH] = ACTIONS(5054), + [anon_sym_STAR] = ACTIONS(5052), + [anon_sym_SLASH] = ACTIONS(5054), + [anon_sym_PERCENT] = ACTIONS(5052), + [anon_sym_CARET] = ACTIONS(5052), + [anon_sym_PIPE] = ACTIONS(5054), + [anon_sym_AMP] = ACTIONS(5054), + [anon_sym_LT_LT] = ACTIONS(5052), + [anon_sym_GT_GT] = ACTIONS(5054), + [anon_sym_GT_GT_GT] = ACTIONS(5052), + [anon_sym_EQ_EQ] = ACTIONS(5052), + [anon_sym_BANG_EQ] = ACTIONS(5052), + [anon_sym_GT_EQ] = ACTIONS(5052), + [anon_sym_LT_EQ] = ACTIONS(5052), + [anon_sym_DOT] = ACTIONS(5054), + [anon_sym_EQ_GT] = ACTIONS(5052), + [anon_sym_switch] = ACTIONS(5052), + [anon_sym_when] = ACTIONS(5052), + [anon_sym_DOT_DOT] = ACTIONS(5052), + [anon_sym_and] = ACTIONS(5052), + [anon_sym_or] = ACTIONS(5052), + [anon_sym_AMP_AMP] = ACTIONS(5052), + [anon_sym_PIPE_PIPE] = ACTIONS(5052), + [anon_sym_QMARK_QMARK] = ACTIONS(5052), + [anon_sym_into] = ACTIONS(5052), + [anon_sym_on] = ACTIONS(5052), + [anon_sym_equals] = ACTIONS(5052), + [anon_sym_by] = ACTIONS(5052), + [anon_sym_as] = ACTIONS(5052), + [anon_sym_is] = ACTIONS(5052), + [anon_sym_DASH_GT] = ACTIONS(5052), + [anon_sym_with] = ACTIONS(5052), + [aux_sym_preproc_if_token3] = ACTIONS(5052), + [aux_sym_preproc_else_token1] = ACTIONS(5052), + [aux_sym_preproc_elif_token1] = ACTIONS(5052), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -495516,57 +494998,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(5427), - [anon_sym_LBRACK] = ACTIONS(5427), - [anon_sym_COLON] = ACTIONS(5427), - [anon_sym_COMMA] = ACTIONS(5427), - [anon_sym_RBRACK] = ACTIONS(5427), - [anon_sym_LPAREN] = ACTIONS(5427), - [anon_sym_RPAREN] = ACTIONS(5427), - [anon_sym_RBRACE] = ACTIONS(5427), - [anon_sym_LT] = ACTIONS(5429), - [anon_sym_GT] = ACTIONS(5429), - [anon_sym_in] = ACTIONS(5429), - [anon_sym_QMARK] = ACTIONS(5429), - [anon_sym_BANG] = ACTIONS(5429), - [anon_sym_PLUS_PLUS] = ACTIONS(5427), - [anon_sym_DASH_DASH] = ACTIONS(5427), - [anon_sym_PLUS] = ACTIONS(5429), - [anon_sym_DASH] = ACTIONS(5429), - [anon_sym_STAR] = ACTIONS(5427), - [anon_sym_SLASH] = ACTIONS(5429), - [anon_sym_PERCENT] = ACTIONS(5427), - [anon_sym_CARET] = ACTIONS(5427), - [anon_sym_PIPE] = ACTIONS(5429), - [anon_sym_AMP] = ACTIONS(5429), - [anon_sym_LT_LT] = ACTIONS(5427), - [anon_sym_GT_GT] = ACTIONS(5429), - [anon_sym_GT_GT_GT] = ACTIONS(5427), - [anon_sym_EQ_EQ] = ACTIONS(5427), - [anon_sym_BANG_EQ] = ACTIONS(5427), - [anon_sym_GT_EQ] = ACTIONS(5427), - [anon_sym_LT_EQ] = ACTIONS(5427), - [anon_sym_DOT] = ACTIONS(5429), - [anon_sym_EQ_GT] = ACTIONS(5427), - [anon_sym_switch] = ACTIONS(5427), - [anon_sym_when] = ACTIONS(5427), - [anon_sym_DOT_DOT] = ACTIONS(5427), - [anon_sym_and] = ACTIONS(5427), - [anon_sym_or] = ACTIONS(5427), - [anon_sym_AMP_AMP] = ACTIONS(5427), - [anon_sym_PIPE_PIPE] = ACTIONS(5427), - [anon_sym_QMARK_QMARK] = ACTIONS(5427), - [anon_sym_into] = ACTIONS(5427), - [anon_sym_on] = ACTIONS(5427), - [anon_sym_equals] = ACTIONS(5427), - [anon_sym_by] = ACTIONS(5427), - [anon_sym_as] = ACTIONS(5427), - [anon_sym_is] = ACTIONS(5427), - [anon_sym_DASH_GT] = ACTIONS(5427), - [anon_sym_with] = ACTIONS(5427), - [aux_sym_preproc_if_token3] = ACTIONS(5427), - [aux_sym_preproc_else_token1] = ACTIONS(5427), - [aux_sym_preproc_elif_token1] = ACTIONS(5427), + [anon_sym_SEMI] = ACTIONS(3994), + [anon_sym_LBRACK] = ACTIONS(3994), + [anon_sym_COLON] = ACTIONS(3994), + [anon_sym_COMMA] = ACTIONS(3994), + [anon_sym_RBRACK] = ACTIONS(3994), + [anon_sym_LPAREN] = ACTIONS(3994), + [anon_sym_RPAREN] = ACTIONS(3994), + [anon_sym_LBRACE] = ACTIONS(3994), + [anon_sym_RBRACE] = ACTIONS(3994), + [anon_sym_LT] = ACTIONS(3992), + [anon_sym_GT] = ACTIONS(3992), + [anon_sym_in] = ACTIONS(3994), + [anon_sym_QMARK] = ACTIONS(3992), + [anon_sym_BANG] = ACTIONS(3992), + [anon_sym_PLUS_PLUS] = ACTIONS(3994), + [anon_sym_DASH_DASH] = ACTIONS(3994), + [anon_sym_PLUS] = ACTIONS(3992), + [anon_sym_DASH] = ACTIONS(3992), + [anon_sym_STAR] = ACTIONS(3994), + [anon_sym_SLASH] = ACTIONS(3992), + [anon_sym_PERCENT] = ACTIONS(3994), + [anon_sym_CARET] = ACTIONS(3994), + [anon_sym_PIPE] = ACTIONS(3992), + [anon_sym_AMP] = ACTIONS(3992), + [anon_sym_LT_LT] = ACTIONS(3994), + [anon_sym_GT_GT] = ACTIONS(3992), + [anon_sym_GT_GT_GT] = ACTIONS(3994), + [anon_sym_EQ_EQ] = ACTIONS(3994), + [anon_sym_BANG_EQ] = ACTIONS(3994), + [anon_sym_GT_EQ] = ACTIONS(3994), + [anon_sym_LT_EQ] = ACTIONS(3994), + [anon_sym_DOT] = ACTIONS(3992), + [anon_sym_EQ_GT] = ACTIONS(3994), + [anon_sym_switch] = ACTIONS(3994), + [anon_sym_when] = ACTIONS(3994), + [anon_sym_DOT_DOT] = ACTIONS(3994), + [anon_sym_and] = ACTIONS(3994), + [anon_sym_or] = ACTIONS(3994), + [anon_sym_AMP_AMP] = ACTIONS(3994), + [anon_sym_PIPE_PIPE] = ACTIONS(3994), + [anon_sym_QMARK_QMARK] = ACTIONS(3994), + [anon_sym_on] = ACTIONS(3994), + [anon_sym_equals] = ACTIONS(3994), + [anon_sym_by] = ACTIONS(3994), + [anon_sym_as] = ACTIONS(3994), + [anon_sym_is] = ACTIONS(3994), + [anon_sym_DASH_GT] = ACTIONS(3994), + [anon_sym_with] = ACTIONS(3994), + [aux_sym_preproc_if_token3] = ACTIONS(3994), + [aux_sym_preproc_else_token1] = ACTIONS(3994), + [aux_sym_preproc_elif_token1] = ACTIONS(3994), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -495588,57 +495070,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_SEMI] = ACTIONS(5342), - [anon_sym_LBRACK] = ACTIONS(5342), - [anon_sym_COLON] = ACTIONS(5342), - [anon_sym_COMMA] = ACTIONS(5342), - [anon_sym_RBRACK] = ACTIONS(5342), - [anon_sym_LPAREN] = ACTIONS(5342), - [anon_sym_RPAREN] = ACTIONS(5342), - [anon_sym_RBRACE] = ACTIONS(5342), - [anon_sym_LT] = ACTIONS(5344), - [anon_sym_GT] = ACTIONS(5344), - [anon_sym_in] = ACTIONS(5344), - [anon_sym_QMARK] = ACTIONS(5344), - [anon_sym_BANG] = ACTIONS(5344), - [anon_sym_PLUS_PLUS] = ACTIONS(5342), - [anon_sym_DASH_DASH] = ACTIONS(5342), - [anon_sym_PLUS] = ACTIONS(5344), - [anon_sym_DASH] = ACTIONS(5344), - [anon_sym_STAR] = ACTIONS(5342), - [anon_sym_SLASH] = ACTIONS(5344), - [anon_sym_PERCENT] = ACTIONS(5342), - [anon_sym_CARET] = ACTIONS(5342), - [anon_sym_PIPE] = ACTIONS(5344), - [anon_sym_AMP] = ACTIONS(5344), - [anon_sym_LT_LT] = ACTIONS(5342), - [anon_sym_GT_GT] = ACTIONS(5344), - [anon_sym_GT_GT_GT] = ACTIONS(5342), - [anon_sym_EQ_EQ] = ACTIONS(5342), - [anon_sym_BANG_EQ] = ACTIONS(5342), - [anon_sym_GT_EQ] = ACTIONS(5342), - [anon_sym_LT_EQ] = ACTIONS(5342), - [anon_sym_DOT] = ACTIONS(5344), - [anon_sym_EQ_GT] = ACTIONS(5342), - [anon_sym_switch] = ACTIONS(5342), - [anon_sym_when] = ACTIONS(5342), - [anon_sym_DOT_DOT] = ACTIONS(5342), - [anon_sym_and] = ACTIONS(5342), - [anon_sym_or] = ACTIONS(5342), - [anon_sym_AMP_AMP] = ACTIONS(5342), - [anon_sym_PIPE_PIPE] = ACTIONS(5342), - [anon_sym_QMARK_QMARK] = ACTIONS(5342), - [anon_sym_into] = ACTIONS(5342), - [anon_sym_on] = ACTIONS(5342), - [anon_sym_equals] = ACTIONS(5342), - [anon_sym_by] = ACTIONS(5342), - [anon_sym_as] = ACTIONS(5342), - [anon_sym_is] = ACTIONS(5342), - [anon_sym_DASH_GT] = ACTIONS(5342), - [anon_sym_with] = ACTIONS(5342), - [aux_sym_preproc_if_token3] = ACTIONS(5342), - [aux_sym_preproc_else_token1] = ACTIONS(5342), - [aux_sym_preproc_elif_token1] = ACTIONS(5342), + [sym__identifier_token] = ACTIONS(3466), + [anon_sym_extern] = ACTIONS(3466), + [anon_sym_alias] = ACTIONS(3466), + [anon_sym_global] = ACTIONS(3466), + [anon_sym_unsafe] = ACTIONS(3466), + [anon_sym_static] = ACTIONS(3466), + [anon_sym_LPAREN] = ACTIONS(5428), + [anon_sym_class] = ACTIONS(3466), + [anon_sym_ref] = ACTIONS(3466), + [anon_sym_struct] = ACTIONS(3466), + [anon_sym_enum] = ACTIONS(3466), + [anon_sym_interface] = ACTIONS(3466), + [anon_sym_delegate] = ACTIONS(3466), + [anon_sym_record] = ACTIONS(3466), + [anon_sym_abstract] = ACTIONS(3466), + [anon_sym_async] = ACTIONS(3466), + [anon_sym_const] = ACTIONS(3466), + [anon_sym_file] = ACTIONS(3466), + [anon_sym_fixed] = ACTIONS(3466), + [anon_sym_internal] = ACTIONS(3466), + [anon_sym_new] = ACTIONS(3466), + [anon_sym_override] = ACTIONS(3466), + [anon_sym_partial] = ACTIONS(3466), + [anon_sym_private] = ACTIONS(3466), + [anon_sym_protected] = ACTIONS(3466), + [anon_sym_public] = ACTIONS(3466), + [anon_sym_readonly] = ACTIONS(3466), + [anon_sym_required] = ACTIONS(3466), + [anon_sym_sealed] = ACTIONS(3466), + [anon_sym_virtual] = ACTIONS(3466), + [anon_sym_volatile] = ACTIONS(3466), + [anon_sym_where] = ACTIONS(3466), + [anon_sym_notnull] = ACTIONS(3466), + [anon_sym_unmanaged] = ACTIONS(3466), + [anon_sym_scoped] = ACTIONS(3466), + [anon_sym_var] = ACTIONS(3466), + [sym_predefined_type] = ACTIONS(3466), + [anon_sym_yield] = ACTIONS(3466), + [anon_sym_when] = ACTIONS(3466), + [anon_sym_from] = ACTIONS(3466), + [anon_sym_into] = ACTIONS(3466), + [anon_sym_join] = ACTIONS(3466), + [anon_sym_on] = ACTIONS(3466), + [anon_sym_equals] = ACTIONS(3466), + [anon_sym_let] = ACTIONS(3466), + [anon_sym_orderby] = ACTIONS(3466), + [anon_sym_ascending] = ACTIONS(3466), + [anon_sym_descending] = ACTIONS(3466), + [anon_sym_group] = ACTIONS(3466), + [anon_sym_by] = ACTIONS(3466), + [anon_sym_select] = ACTIONS(3466), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -495660,57 +495142,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(3829), - [anon_sym_LBRACK] = ACTIONS(3829), - [anon_sym_COLON] = ACTIONS(3829), - [anon_sym_COMMA] = ACTIONS(3829), - [anon_sym_RBRACK] = ACTIONS(3829), - [anon_sym_LPAREN] = ACTIONS(3829), - [anon_sym_RPAREN] = ACTIONS(3829), - [anon_sym_RBRACE] = ACTIONS(3829), - [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(3829), - [anon_sym_DASH_DASH] = ACTIONS(3829), - [anon_sym_PLUS] = ACTIONS(5431), - [anon_sym_DASH] = ACTIONS(5431), - [anon_sym_STAR] = ACTIONS(3829), - [anon_sym_SLASH] = ACTIONS(5431), - [anon_sym_PERCENT] = ACTIONS(3829), - [anon_sym_CARET] = ACTIONS(3829), - [anon_sym_PIPE] = ACTIONS(5431), - [anon_sym_AMP] = ACTIONS(5431), - [anon_sym_LT_LT] = ACTIONS(3829), - [anon_sym_GT_GT] = ACTIONS(5431), - [anon_sym_GT_GT_GT] = ACTIONS(3829), - [anon_sym_EQ_EQ] = ACTIONS(3829), - [anon_sym_BANG_EQ] = ACTIONS(3829), - [anon_sym_GT_EQ] = ACTIONS(3829), - [anon_sym_LT_EQ] = ACTIONS(3829), - [anon_sym_DOT] = ACTIONS(5431), - [anon_sym_EQ_GT] = ACTIONS(3667), - [anon_sym_switch] = ACTIONS(3829), - [anon_sym_when] = ACTIONS(3829), - [anon_sym_DOT_DOT] = ACTIONS(3829), - [anon_sym_and] = ACTIONS(3829), - [anon_sym_or] = ACTIONS(3829), - [anon_sym_AMP_AMP] = ACTIONS(3829), - [anon_sym_PIPE_PIPE] = ACTIONS(3829), - [anon_sym_QMARK_QMARK] = ACTIONS(3829), - [anon_sym_into] = ACTIONS(3829), - [anon_sym_on] = ACTIONS(3829), - [anon_sym_equals] = ACTIONS(3829), - [anon_sym_by] = ACTIONS(3829), - [anon_sym_as] = ACTIONS(3829), - [anon_sym_is] = ACTIONS(3829), - [anon_sym_DASH_GT] = ACTIONS(3829), - [anon_sym_with] = ACTIONS(3829), - [aux_sym_preproc_if_token3] = ACTIONS(3829), - [aux_sym_preproc_else_token1] = ACTIONS(3829), - [aux_sym_preproc_elif_token1] = ACTIONS(3829), + [anon_sym_SEMI] = ACTIONS(5124), + [anon_sym_LBRACK] = ACTIONS(5124), + [anon_sym_COLON] = ACTIONS(5124), + [anon_sym_COMMA] = ACTIONS(5124), + [anon_sym_RBRACK] = ACTIONS(5124), + [anon_sym_LPAREN] = ACTIONS(5124), + [anon_sym_RPAREN] = ACTIONS(5124), + [anon_sym_RBRACE] = ACTIONS(5124), + [anon_sym_LT] = ACTIONS(5126), + [anon_sym_GT] = ACTIONS(5126), + [anon_sym_in] = ACTIONS(5126), + [anon_sym_QMARK] = ACTIONS(5126), + [anon_sym_BANG] = ACTIONS(5126), + [anon_sym_PLUS_PLUS] = ACTIONS(5124), + [anon_sym_DASH_DASH] = ACTIONS(5124), + [anon_sym_PLUS] = ACTIONS(5126), + [anon_sym_DASH] = ACTIONS(5126), + [anon_sym_STAR] = ACTIONS(5124), + [anon_sym_SLASH] = ACTIONS(5126), + [anon_sym_PERCENT] = ACTIONS(5124), + [anon_sym_CARET] = ACTIONS(5124), + [anon_sym_PIPE] = ACTIONS(5126), + [anon_sym_AMP] = ACTIONS(5126), + [anon_sym_LT_LT] = ACTIONS(5124), + [anon_sym_GT_GT] = ACTIONS(5126), + [anon_sym_GT_GT_GT] = ACTIONS(5124), + [anon_sym_EQ_EQ] = ACTIONS(5124), + [anon_sym_BANG_EQ] = ACTIONS(5124), + [anon_sym_GT_EQ] = ACTIONS(5124), + [anon_sym_LT_EQ] = ACTIONS(5124), + [anon_sym_DOT] = ACTIONS(5126), + [anon_sym_EQ_GT] = ACTIONS(5124), + [anon_sym_switch] = ACTIONS(5124), + [anon_sym_when] = ACTIONS(5124), + [anon_sym_DOT_DOT] = ACTIONS(5124), + [anon_sym_and] = ACTIONS(5124), + [anon_sym_or] = ACTIONS(5124), + [anon_sym_AMP_AMP] = ACTIONS(5124), + [anon_sym_PIPE_PIPE] = ACTIONS(5124), + [anon_sym_QMARK_QMARK] = ACTIONS(5124), + [anon_sym_into] = ACTIONS(5124), + [anon_sym_on] = ACTIONS(5124), + [anon_sym_equals] = ACTIONS(5124), + [anon_sym_by] = ACTIONS(5124), + [anon_sym_as] = ACTIONS(5124), + [anon_sym_is] = ACTIONS(5124), + [anon_sym_DASH_GT] = ACTIONS(5124), + [anon_sym_with] = ACTIONS(5124), + [aux_sym_preproc_if_token3] = ACTIONS(5124), + [aux_sym_preproc_else_token1] = ACTIONS(5124), + [aux_sym_preproc_elif_token1] = ACTIONS(5124), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -495732,57 +495214,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(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), + [anon_sym_SEMI] = ACTIONS(5430), + [anon_sym_LBRACK] = ACTIONS(5430), + [anon_sym_COLON] = ACTIONS(5430), + [anon_sym_COMMA] = ACTIONS(5430), + [anon_sym_RBRACK] = ACTIONS(5430), + [anon_sym_LPAREN] = ACTIONS(5430), + [anon_sym_RPAREN] = ACTIONS(5430), + [anon_sym_RBRACE] = ACTIONS(5430), + [anon_sym_LT] = ACTIONS(5432), + [anon_sym_GT] = ACTIONS(5432), + [anon_sym_in] = ACTIONS(5432), + [anon_sym_QMARK] = ACTIONS(5432), + [anon_sym_BANG] = ACTIONS(5432), + [anon_sym_PLUS_PLUS] = ACTIONS(5430), + [anon_sym_DASH_DASH] = ACTIONS(5430), + [anon_sym_PLUS] = ACTIONS(5432), + [anon_sym_DASH] = ACTIONS(5432), + [anon_sym_STAR] = ACTIONS(5430), + [anon_sym_SLASH] = ACTIONS(5432), + [anon_sym_PERCENT] = ACTIONS(5430), + [anon_sym_CARET] = ACTIONS(5430), + [anon_sym_PIPE] = ACTIONS(5432), + [anon_sym_AMP] = ACTIONS(5432), + [anon_sym_LT_LT] = ACTIONS(5430), + [anon_sym_GT_GT] = ACTIONS(5432), + [anon_sym_GT_GT_GT] = ACTIONS(5430), + [anon_sym_EQ_EQ] = ACTIONS(5430), + [anon_sym_BANG_EQ] = ACTIONS(5430), + [anon_sym_GT_EQ] = ACTIONS(5430), + [anon_sym_LT_EQ] = ACTIONS(5430), + [anon_sym_DOT] = ACTIONS(5432), + [anon_sym_EQ_GT] = ACTIONS(5430), + [anon_sym_switch] = ACTIONS(5430), + [anon_sym_when] = ACTIONS(5430), + [anon_sym_DOT_DOT] = ACTIONS(5430), + [anon_sym_and] = ACTIONS(5430), + [anon_sym_or] = ACTIONS(5430), + [anon_sym_AMP_AMP] = ACTIONS(5430), + [anon_sym_PIPE_PIPE] = ACTIONS(5430), + [anon_sym_QMARK_QMARK] = ACTIONS(5430), + [anon_sym_into] = ACTIONS(5430), + [anon_sym_on] = ACTIONS(5430), + [anon_sym_equals] = ACTIONS(5430), + [anon_sym_by] = ACTIONS(5430), + [anon_sym_as] = ACTIONS(5430), + [anon_sym_is] = ACTIONS(5430), + [anon_sym_DASH_GT] = ACTIONS(5430), + [anon_sym_with] = ACTIONS(5430), + [aux_sym_preproc_if_token3] = ACTIONS(5430), + [aux_sym_preproc_else_token1] = ACTIONS(5430), + [aux_sym_preproc_elif_token1] = ACTIONS(5430), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -495804,57 +495286,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(5102), - [anon_sym_LBRACK] = ACTIONS(5102), - [anon_sym_COLON] = ACTIONS(5102), - [anon_sym_COMMA] = ACTIONS(5102), - [anon_sym_RBRACK] = ACTIONS(5102), - [anon_sym_LPAREN] = ACTIONS(5102), - [anon_sym_RPAREN] = ACTIONS(5102), - [anon_sym_RBRACE] = ACTIONS(5102), - [anon_sym_LT] = ACTIONS(5104), - [anon_sym_GT] = ACTIONS(5104), - [anon_sym_in] = ACTIONS(5104), - [anon_sym_QMARK] = ACTIONS(5104), - [anon_sym_BANG] = ACTIONS(5104), - [anon_sym_PLUS_PLUS] = ACTIONS(5102), - [anon_sym_DASH_DASH] = ACTIONS(5102), - [anon_sym_PLUS] = ACTIONS(5104), - [anon_sym_DASH] = ACTIONS(5104), - [anon_sym_STAR] = ACTIONS(5102), - [anon_sym_SLASH] = ACTIONS(5104), - [anon_sym_PERCENT] = ACTIONS(5102), - [anon_sym_CARET] = ACTIONS(5102), - [anon_sym_PIPE] = ACTIONS(5104), - [anon_sym_AMP] = ACTIONS(5104), - [anon_sym_LT_LT] = ACTIONS(5102), - [anon_sym_GT_GT] = ACTIONS(5104), - [anon_sym_GT_GT_GT] = ACTIONS(5102), - [anon_sym_EQ_EQ] = ACTIONS(5102), - [anon_sym_BANG_EQ] = ACTIONS(5102), - [anon_sym_GT_EQ] = ACTIONS(5102), - [anon_sym_LT_EQ] = ACTIONS(5102), - [anon_sym_DOT] = ACTIONS(5104), - [anon_sym_EQ_GT] = ACTIONS(5102), - [anon_sym_switch] = ACTIONS(5102), - [anon_sym_when] = ACTIONS(5102), - [anon_sym_DOT_DOT] = ACTIONS(5102), - [anon_sym_and] = ACTIONS(5102), - [anon_sym_or] = ACTIONS(5102), - [anon_sym_AMP_AMP] = ACTIONS(5102), - [anon_sym_PIPE_PIPE] = ACTIONS(5102), - [anon_sym_QMARK_QMARK] = ACTIONS(5102), - [anon_sym_into] = ACTIONS(5102), - [anon_sym_on] = ACTIONS(5102), - [anon_sym_equals] = ACTIONS(5102), - [anon_sym_by] = ACTIONS(5102), - [anon_sym_as] = ACTIONS(5102), - [anon_sym_is] = ACTIONS(5102), - [anon_sym_DASH_GT] = ACTIONS(5102), - [anon_sym_with] = ACTIONS(5102), - [aux_sym_preproc_if_token3] = ACTIONS(5102), - [aux_sym_preproc_else_token1] = ACTIONS(5102), - [aux_sym_preproc_elif_token1] = ACTIONS(5102), + [anon_sym_SEMI] = ACTIONS(5434), + [anon_sym_LBRACK] = ACTIONS(5434), + [anon_sym_COLON] = ACTIONS(5434), + [anon_sym_COMMA] = ACTIONS(5434), + [anon_sym_RBRACK] = ACTIONS(5434), + [anon_sym_LPAREN] = ACTIONS(5434), + [anon_sym_RPAREN] = ACTIONS(5434), + [anon_sym_RBRACE] = ACTIONS(5434), + [anon_sym_LT] = ACTIONS(5436), + [anon_sym_GT] = ACTIONS(5436), + [anon_sym_in] = ACTIONS(5436), + [anon_sym_QMARK] = ACTIONS(5436), + [anon_sym_BANG] = ACTIONS(5436), + [anon_sym_PLUS_PLUS] = ACTIONS(5434), + [anon_sym_DASH_DASH] = ACTIONS(5434), + [anon_sym_PLUS] = ACTIONS(5436), + [anon_sym_DASH] = ACTIONS(5436), + [anon_sym_STAR] = ACTIONS(5434), + [anon_sym_SLASH] = ACTIONS(5436), + [anon_sym_PERCENT] = ACTIONS(5434), + [anon_sym_CARET] = ACTIONS(5434), + [anon_sym_PIPE] = ACTIONS(5436), + [anon_sym_AMP] = ACTIONS(5436), + [anon_sym_LT_LT] = ACTIONS(5434), + [anon_sym_GT_GT] = ACTIONS(5436), + [anon_sym_GT_GT_GT] = ACTIONS(5434), + [anon_sym_EQ_EQ] = ACTIONS(5434), + [anon_sym_BANG_EQ] = ACTIONS(5434), + [anon_sym_GT_EQ] = ACTIONS(5434), + [anon_sym_LT_EQ] = ACTIONS(5434), + [anon_sym_DOT] = ACTIONS(5436), + [anon_sym_EQ_GT] = ACTIONS(5434), + [anon_sym_switch] = ACTIONS(5434), + [anon_sym_when] = ACTIONS(5434), + [anon_sym_DOT_DOT] = ACTIONS(5434), + [anon_sym_and] = ACTIONS(5434), + [anon_sym_or] = ACTIONS(5434), + [anon_sym_AMP_AMP] = ACTIONS(5434), + [anon_sym_PIPE_PIPE] = ACTIONS(5434), + [anon_sym_QMARK_QMARK] = ACTIONS(5434), + [anon_sym_into] = ACTIONS(5434), + [anon_sym_on] = ACTIONS(5434), + [anon_sym_equals] = ACTIONS(5434), + [anon_sym_by] = ACTIONS(5434), + [anon_sym_as] = ACTIONS(5434), + [anon_sym_is] = ACTIONS(5434), + [anon_sym_DASH_GT] = ACTIONS(5434), + [anon_sym_with] = ACTIONS(5434), + [aux_sym_preproc_if_token3] = ACTIONS(5434), + [aux_sym_preproc_else_token1] = ACTIONS(5434), + [aux_sym_preproc_elif_token1] = ACTIONS(5434), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -495876,57 +495358,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(3829), - [anon_sym_LBRACK] = ACTIONS(3829), - [anon_sym_COLON] = ACTIONS(3829), - [anon_sym_COMMA] = ACTIONS(3829), - [anon_sym_RBRACK] = ACTIONS(3829), - [anon_sym_LPAREN] = ACTIONS(3829), - [anon_sym_RPAREN] = ACTIONS(3829), - [anon_sym_RBRACE] = ACTIONS(3829), - [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(3829), - [anon_sym_DASH_DASH] = ACTIONS(3829), - [anon_sym_PLUS] = ACTIONS(5431), - [anon_sym_DASH] = ACTIONS(5431), - [anon_sym_STAR] = ACTIONS(3829), - [anon_sym_SLASH] = ACTIONS(5431), - [anon_sym_PERCENT] = ACTIONS(3829), - [anon_sym_CARET] = ACTIONS(3829), - [anon_sym_PIPE] = ACTIONS(5431), - [anon_sym_AMP] = ACTIONS(5431), - [anon_sym_LT_LT] = ACTIONS(3829), - [anon_sym_GT_GT] = ACTIONS(5431), - [anon_sym_GT_GT_GT] = ACTIONS(3829), - [anon_sym_EQ_EQ] = ACTIONS(3829), - [anon_sym_BANG_EQ] = ACTIONS(3829), - [anon_sym_GT_EQ] = ACTIONS(3829), - [anon_sym_LT_EQ] = ACTIONS(3829), - [anon_sym_DOT] = ACTIONS(5431), - [anon_sym_EQ_GT] = ACTIONS(3829), - [anon_sym_switch] = ACTIONS(3829), - [anon_sym_when] = ACTIONS(3829), - [anon_sym_DOT_DOT] = ACTIONS(3829), - [anon_sym_and] = ACTIONS(3829), - [anon_sym_or] = ACTIONS(3829), - [anon_sym_AMP_AMP] = ACTIONS(3829), - [anon_sym_PIPE_PIPE] = ACTIONS(3829), - [anon_sym_QMARK_QMARK] = ACTIONS(3829), - [anon_sym_into] = ACTIONS(3829), - [anon_sym_on] = ACTIONS(3829), - [anon_sym_equals] = ACTIONS(3829), - [anon_sym_by] = ACTIONS(3829), - [anon_sym_as] = ACTIONS(3829), - [anon_sym_is] = ACTIONS(3829), - [anon_sym_DASH_GT] = ACTIONS(3829), - [anon_sym_with] = ACTIONS(3829), - [aux_sym_preproc_if_token3] = ACTIONS(3829), - [aux_sym_preproc_else_token1] = ACTIONS(3829), - [aux_sym_preproc_elif_token1] = ACTIONS(3829), + [anon_sym_SEMI] = ACTIONS(5438), + [anon_sym_LBRACK] = ACTIONS(5438), + [anon_sym_COLON] = ACTIONS(5438), + [anon_sym_COMMA] = ACTIONS(5438), + [anon_sym_RBRACK] = ACTIONS(5438), + [anon_sym_LPAREN] = ACTIONS(5438), + [anon_sym_RPAREN] = ACTIONS(5438), + [anon_sym_RBRACE] = ACTIONS(5438), + [anon_sym_LT] = ACTIONS(5440), + [anon_sym_GT] = ACTIONS(5440), + [anon_sym_in] = ACTIONS(5440), + [anon_sym_QMARK] = ACTIONS(5440), + [anon_sym_BANG] = ACTIONS(5440), + [anon_sym_PLUS_PLUS] = ACTIONS(5438), + [anon_sym_DASH_DASH] = ACTIONS(5438), + [anon_sym_PLUS] = ACTIONS(5440), + [anon_sym_DASH] = ACTIONS(5440), + [anon_sym_STAR] = ACTIONS(5438), + [anon_sym_SLASH] = ACTIONS(5440), + [anon_sym_PERCENT] = ACTIONS(5438), + [anon_sym_CARET] = ACTIONS(5438), + [anon_sym_PIPE] = ACTIONS(5440), + [anon_sym_AMP] = ACTIONS(5440), + [anon_sym_LT_LT] = ACTIONS(5438), + [anon_sym_GT_GT] = ACTIONS(5440), + [anon_sym_GT_GT_GT] = ACTIONS(5438), + [anon_sym_EQ_EQ] = ACTIONS(5438), + [anon_sym_BANG_EQ] = ACTIONS(5438), + [anon_sym_GT_EQ] = ACTIONS(5438), + [anon_sym_LT_EQ] = ACTIONS(5438), + [anon_sym_DOT] = ACTIONS(5440), + [anon_sym_EQ_GT] = ACTIONS(5438), + [anon_sym_switch] = ACTIONS(5438), + [anon_sym_when] = ACTIONS(5438), + [anon_sym_DOT_DOT] = ACTIONS(5438), + [anon_sym_and] = ACTIONS(5438), + [anon_sym_or] = ACTIONS(5438), + [anon_sym_AMP_AMP] = ACTIONS(5438), + [anon_sym_PIPE_PIPE] = ACTIONS(5438), + [anon_sym_QMARK_QMARK] = ACTIONS(5438), + [anon_sym_into] = ACTIONS(5438), + [anon_sym_on] = ACTIONS(5438), + [anon_sym_equals] = ACTIONS(5438), + [anon_sym_by] = ACTIONS(5438), + [anon_sym_as] = ACTIONS(5438), + [anon_sym_is] = ACTIONS(5438), + [anon_sym_DASH_GT] = ACTIONS(5438), + [anon_sym_with] = ACTIONS(5438), + [aux_sym_preproc_if_token3] = ACTIONS(5438), + [aux_sym_preproc_else_token1] = ACTIONS(5438), + [aux_sym_preproc_elif_token1] = ACTIONS(5438), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -495948,57 +495430,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(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), + [anon_sym_SEMI] = ACTIONS(3809), + [anon_sym_LBRACK] = ACTIONS(3809), + [anon_sym_COLON] = ACTIONS(3809), + [anon_sym_COMMA] = ACTIONS(3809), + [anon_sym_RBRACK] = ACTIONS(3809), + [anon_sym_LPAREN] = ACTIONS(3809), + [anon_sym_RPAREN] = ACTIONS(3809), + [anon_sym_RBRACE] = ACTIONS(3809), + [anon_sym_LT] = ACTIONS(5406), + [anon_sym_GT] = ACTIONS(5406), + [anon_sym_in] = ACTIONS(5406), + [anon_sym_QMARK] = ACTIONS(5406), + [anon_sym_BANG] = ACTIONS(5406), + [anon_sym_PLUS_PLUS] = ACTIONS(3809), + [anon_sym_DASH_DASH] = ACTIONS(3809), + [anon_sym_PLUS] = ACTIONS(5406), + [anon_sym_DASH] = ACTIONS(5406), + [anon_sym_STAR] = ACTIONS(3809), + [anon_sym_SLASH] = ACTIONS(5406), + [anon_sym_PERCENT] = ACTIONS(3809), + [anon_sym_CARET] = ACTIONS(3809), + [anon_sym_PIPE] = ACTIONS(5406), + [anon_sym_AMP] = ACTIONS(5406), + [anon_sym_LT_LT] = ACTIONS(3809), + [anon_sym_GT_GT] = ACTIONS(5406), + [anon_sym_GT_GT_GT] = ACTIONS(3809), + [anon_sym_EQ_EQ] = ACTIONS(3809), + [anon_sym_BANG_EQ] = ACTIONS(3809), + [anon_sym_GT_EQ] = ACTIONS(3809), + [anon_sym_LT_EQ] = ACTIONS(3809), + [anon_sym_DOT] = ACTIONS(5406), + [anon_sym_EQ_GT] = ACTIONS(3809), + [anon_sym_switch] = ACTIONS(3809), + [anon_sym_when] = ACTIONS(3809), + [anon_sym_DOT_DOT] = ACTIONS(3809), + [anon_sym_and] = ACTIONS(3809), + [anon_sym_or] = ACTIONS(3809), + [anon_sym_AMP_AMP] = ACTIONS(3809), + [anon_sym_PIPE_PIPE] = ACTIONS(3809), + [anon_sym_QMARK_QMARK] = ACTIONS(3809), + [anon_sym_into] = ACTIONS(3809), + [anon_sym_on] = ACTIONS(3809), + [anon_sym_equals] = ACTIONS(3809), + [anon_sym_by] = ACTIONS(3809), + [anon_sym_as] = ACTIONS(3809), + [anon_sym_is] = ACTIONS(3809), + [anon_sym_DASH_GT] = ACTIONS(3809), + [anon_sym_with] = ACTIONS(3809), + [aux_sym_preproc_if_token3] = ACTIONS(3809), + [aux_sym_preproc_else_token1] = ACTIONS(3809), + [aux_sym_preproc_elif_token1] = ACTIONS(3809), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -496020,57 +495502,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_EQ] = ACTIONS(5441), - [anon_sym_LBRACK] = ACTIONS(4860), - [anon_sym_LPAREN] = ACTIONS(4860), - [anon_sym_LT] = ACTIONS(4862), - [anon_sym_GT] = ACTIONS(4862), - [anon_sym_QMARK] = ACTIONS(4862), - [anon_sym_BANG] = ACTIONS(4862), - [anon_sym_PLUS_PLUS] = ACTIONS(4860), - [anon_sym_DASH_DASH] = ACTIONS(4860), - [anon_sym_PLUS] = ACTIONS(4862), - [anon_sym_DASH] = ACTIONS(4862), - [anon_sym_STAR] = ACTIONS(4862), - [anon_sym_SLASH] = ACTIONS(4862), - [anon_sym_PERCENT] = ACTIONS(4862), - [anon_sym_CARET] = ACTIONS(4862), - [anon_sym_PIPE] = ACTIONS(4862), - [anon_sym_AMP] = ACTIONS(4862), - [anon_sym_LT_LT] = ACTIONS(4862), - [anon_sym_GT_GT] = ACTIONS(4862), - [anon_sym_GT_GT_GT] = ACTIONS(4862), - [anon_sym_EQ_EQ] = ACTIONS(4860), - [anon_sym_BANG_EQ] = ACTIONS(4860), - [anon_sym_GT_EQ] = ACTIONS(4860), - [anon_sym_LT_EQ] = ACTIONS(4860), - [anon_sym_DOT] = ACTIONS(4862), - [anon_sym_EQ_GT] = ACTIONS(4860), - [anon_sym_switch] = ACTIONS(4860), - [anon_sym_when] = ACTIONS(4860), - [anon_sym_DOT_DOT] = ACTIONS(4860), - [anon_sym_and] = ACTIONS(4860), - [anon_sym_or] = ACTIONS(4860), - [anon_sym_PLUS_EQ] = ACTIONS(5443), - [anon_sym_DASH_EQ] = ACTIONS(5443), - [anon_sym_STAR_EQ] = ACTIONS(5443), - [anon_sym_SLASH_EQ] = ACTIONS(5443), - [anon_sym_PERCENT_EQ] = ACTIONS(5443), - [anon_sym_AMP_EQ] = ACTIONS(5443), - [anon_sym_CARET_EQ] = ACTIONS(5443), - [anon_sym_PIPE_EQ] = ACTIONS(5443), - [anon_sym_LT_LT_EQ] = ACTIONS(5443), - [anon_sym_GT_GT_EQ] = ACTIONS(5443), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(5443), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(5443), - [anon_sym_AMP_AMP] = ACTIONS(4860), - [anon_sym_PIPE_PIPE] = ACTIONS(4860), - [anon_sym_QMARK_QMARK] = ACTIONS(4862), - [anon_sym_into] = ACTIONS(4860), - [anon_sym_as] = ACTIONS(4860), - [anon_sym_is] = ACTIONS(4860), - [anon_sym_DASH_GT] = ACTIONS(4860), - [anon_sym_with] = ACTIONS(4860), + [anon_sym_SEMI] = ACTIONS(5442), + [anon_sym_LBRACK] = ACTIONS(5442), + [anon_sym_COLON] = ACTIONS(5442), + [anon_sym_COMMA] = ACTIONS(5442), + [anon_sym_RBRACK] = ACTIONS(5442), + [anon_sym_LPAREN] = ACTIONS(5442), + [anon_sym_RPAREN] = ACTIONS(5442), + [anon_sym_RBRACE] = ACTIONS(5442), + [anon_sym_LT] = ACTIONS(5444), + [anon_sym_GT] = ACTIONS(5444), + [anon_sym_in] = ACTIONS(5444), + [anon_sym_QMARK] = ACTIONS(5444), + [anon_sym_BANG] = ACTIONS(5444), + [anon_sym_PLUS_PLUS] = ACTIONS(5442), + [anon_sym_DASH_DASH] = ACTIONS(5442), + [anon_sym_PLUS] = ACTIONS(5444), + [anon_sym_DASH] = ACTIONS(5444), + [anon_sym_STAR] = ACTIONS(5442), + [anon_sym_SLASH] = ACTIONS(5444), + [anon_sym_PERCENT] = ACTIONS(5442), + [anon_sym_CARET] = ACTIONS(5442), + [anon_sym_PIPE] = ACTIONS(5444), + [anon_sym_AMP] = ACTIONS(5444), + [anon_sym_LT_LT] = ACTIONS(5442), + [anon_sym_GT_GT] = ACTIONS(5444), + [anon_sym_GT_GT_GT] = ACTIONS(5442), + [anon_sym_EQ_EQ] = ACTIONS(5442), + [anon_sym_BANG_EQ] = ACTIONS(5442), + [anon_sym_GT_EQ] = ACTIONS(5442), + [anon_sym_LT_EQ] = ACTIONS(5442), + [anon_sym_DOT] = ACTIONS(5444), + [anon_sym_EQ_GT] = ACTIONS(5442), + [anon_sym_switch] = ACTIONS(5442), + [anon_sym_when] = ACTIONS(5442), + [anon_sym_DOT_DOT] = ACTIONS(5442), + [anon_sym_and] = ACTIONS(5442), + [anon_sym_or] = ACTIONS(5442), + [anon_sym_AMP_AMP] = ACTIONS(5442), + [anon_sym_PIPE_PIPE] = ACTIONS(5442), + [anon_sym_QMARK_QMARK] = ACTIONS(5442), + [anon_sym_into] = ACTIONS(5442), + [anon_sym_on] = ACTIONS(5442), + [anon_sym_equals] = ACTIONS(5442), + [anon_sym_by] = ACTIONS(5442), + [anon_sym_as] = ACTIONS(5442), + [anon_sym_is] = ACTIONS(5442), + [anon_sym_DASH_GT] = ACTIONS(5442), + [anon_sym_with] = ACTIONS(5442), + [aux_sym_preproc_if_token3] = ACTIONS(5442), + [aux_sym_preproc_else_token1] = ACTIONS(5442), + [aux_sym_preproc_elif_token1] = ACTIONS(5442), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -496092,57 +495574,57 @@ 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(5064), - [anon_sym_LBRACK] = ACTIONS(5064), - [anon_sym_COLON] = ACTIONS(5064), - [anon_sym_COMMA] = ACTIONS(5064), - [anon_sym_RBRACK] = ACTIONS(5064), - [anon_sym_LPAREN] = ACTIONS(5064), - [anon_sym_RPAREN] = ACTIONS(5064), - [anon_sym_RBRACE] = ACTIONS(5064), - [anon_sym_LT] = ACTIONS(5066), - [anon_sym_GT] = ACTIONS(5066), - [anon_sym_in] = ACTIONS(5066), - [anon_sym_QMARK] = ACTIONS(5066), - [anon_sym_BANG] = ACTIONS(5066), - [anon_sym_PLUS_PLUS] = ACTIONS(5064), - [anon_sym_DASH_DASH] = ACTIONS(5064), - [anon_sym_PLUS] = ACTIONS(5066), - [anon_sym_DASH] = ACTIONS(5066), - [anon_sym_STAR] = ACTIONS(5064), - [anon_sym_SLASH] = ACTIONS(5066), - [anon_sym_PERCENT] = ACTIONS(5064), - [anon_sym_CARET] = ACTIONS(5064), - [anon_sym_PIPE] = ACTIONS(5066), - [anon_sym_AMP] = ACTIONS(5066), - [anon_sym_LT_LT] = ACTIONS(5064), - [anon_sym_GT_GT] = ACTIONS(5066), - [anon_sym_GT_GT_GT] = ACTIONS(5064), - [anon_sym_EQ_EQ] = ACTIONS(5064), - [anon_sym_BANG_EQ] = ACTIONS(5064), - [anon_sym_GT_EQ] = ACTIONS(5064), - [anon_sym_LT_EQ] = ACTIONS(5064), - [anon_sym_DOT] = ACTIONS(5066), - [anon_sym_EQ_GT] = ACTIONS(5064), - [anon_sym_switch] = ACTIONS(5064), - [anon_sym_when] = ACTIONS(5064), - [anon_sym_DOT_DOT] = ACTIONS(5064), - [anon_sym_and] = ACTIONS(5064), - [anon_sym_or] = ACTIONS(5064), - [anon_sym_AMP_AMP] = ACTIONS(5064), - [anon_sym_PIPE_PIPE] = ACTIONS(5064), - [anon_sym_QMARK_QMARK] = ACTIONS(5064), - [anon_sym_into] = ACTIONS(5064), - [anon_sym_on] = ACTIONS(5064), - [anon_sym_equals] = ACTIONS(5064), - [anon_sym_by] = ACTIONS(5064), - [anon_sym_as] = ACTIONS(5064), - [anon_sym_is] = ACTIONS(5064), - [anon_sym_DASH_GT] = ACTIONS(5064), - [anon_sym_with] = ACTIONS(5064), - [aux_sym_preproc_if_token3] = ACTIONS(5064), - [aux_sym_preproc_else_token1] = ACTIONS(5064), - [aux_sym_preproc_elif_token1] = ACTIONS(5064), + [anon_sym_SEMI] = ACTIONS(4925), + [anon_sym_LBRACK] = ACTIONS(4925), + [anon_sym_COLON] = ACTIONS(4925), + [anon_sym_COMMA] = ACTIONS(4925), + [anon_sym_RBRACK] = ACTIONS(4925), + [anon_sym_LPAREN] = ACTIONS(4925), + [anon_sym_RPAREN] = ACTIONS(4925), + [anon_sym_RBRACE] = ACTIONS(4925), + [anon_sym_LT] = ACTIONS(4927), + [anon_sym_GT] = ACTIONS(4927), + [anon_sym_in] = ACTIONS(4927), + [anon_sym_QMARK] = ACTIONS(4927), + [anon_sym_BANG] = ACTIONS(4927), + [anon_sym_PLUS_PLUS] = ACTIONS(4925), + [anon_sym_DASH_DASH] = ACTIONS(4925), + [anon_sym_PLUS] = ACTIONS(4927), + [anon_sym_DASH] = ACTIONS(4927), + [anon_sym_STAR] = ACTIONS(4925), + [anon_sym_SLASH] = ACTIONS(4927), + [anon_sym_PERCENT] = ACTIONS(4925), + [anon_sym_CARET] = ACTIONS(4925), + [anon_sym_PIPE] = ACTIONS(4927), + [anon_sym_AMP] = ACTIONS(4927), + [anon_sym_LT_LT] = ACTIONS(4925), + [anon_sym_GT_GT] = ACTIONS(4927), + [anon_sym_GT_GT_GT] = ACTIONS(4925), + [anon_sym_EQ_EQ] = ACTIONS(4925), + [anon_sym_BANG_EQ] = ACTIONS(4925), + [anon_sym_GT_EQ] = ACTIONS(4925), + [anon_sym_LT_EQ] = ACTIONS(4925), + [anon_sym_DOT] = ACTIONS(4927), + [anon_sym_EQ_GT] = ACTIONS(4925), + [anon_sym_switch] = ACTIONS(4925), + [anon_sym_when] = ACTIONS(4925), + [anon_sym_DOT_DOT] = ACTIONS(4925), + [anon_sym_and] = ACTIONS(4925), + [anon_sym_or] = ACTIONS(4925), + [anon_sym_AMP_AMP] = ACTIONS(4925), + [anon_sym_PIPE_PIPE] = ACTIONS(4925), + [anon_sym_QMARK_QMARK] = ACTIONS(4925), + [anon_sym_into] = ACTIONS(4925), + [anon_sym_on] = ACTIONS(4925), + [anon_sym_equals] = ACTIONS(4925), + [anon_sym_by] = ACTIONS(4925), + [anon_sym_as] = ACTIONS(4925), + [anon_sym_is] = ACTIONS(4925), + [anon_sym_DASH_GT] = ACTIONS(4925), + [anon_sym_with] = ACTIONS(4925), + [aux_sym_preproc_if_token3] = ACTIONS(4925), + [aux_sym_preproc_else_token1] = ACTIONS(4925), + [aux_sym_preproc_elif_token1] = ACTIONS(4925), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -496164,57 +495646,56 @@ 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(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), + [anon_sym_EQ] = ACTIONS(5446), + [anon_sym_LBRACK] = ACTIONS(4811), + [anon_sym_COLON] = ACTIONS(4811), + [anon_sym_LPAREN] = ACTIONS(4811), + [anon_sym_LT] = ACTIONS(4813), + [anon_sym_GT] = ACTIONS(4813), + [anon_sym_QMARK] = ACTIONS(4813), + [anon_sym_BANG] = ACTIONS(4813), + [anon_sym_PLUS_PLUS] = ACTIONS(4811), + [anon_sym_DASH_DASH] = ACTIONS(4811), + [anon_sym_PLUS] = ACTIONS(4813), + [anon_sym_DASH] = ACTIONS(4813), + [anon_sym_STAR] = ACTIONS(4813), + [anon_sym_SLASH] = ACTIONS(4813), + [anon_sym_PERCENT] = ACTIONS(4813), + [anon_sym_CARET] = ACTIONS(4813), + [anon_sym_PIPE] = ACTIONS(4813), + [anon_sym_AMP] = ACTIONS(4813), + [anon_sym_LT_LT] = ACTIONS(4813), + [anon_sym_GT_GT] = ACTIONS(4813), + [anon_sym_GT_GT_GT] = ACTIONS(4813), + [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(4813), + [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_PLUS_EQ] = ACTIONS(5448), + [anon_sym_DASH_EQ] = ACTIONS(5448), + [anon_sym_STAR_EQ] = ACTIONS(5448), + [anon_sym_SLASH_EQ] = ACTIONS(5448), + [anon_sym_PERCENT_EQ] = ACTIONS(5448), + [anon_sym_AMP_EQ] = ACTIONS(5448), + [anon_sym_CARET_EQ] = ACTIONS(5448), + [anon_sym_PIPE_EQ] = ACTIONS(5448), + [anon_sym_LT_LT_EQ] = ACTIONS(5448), + [anon_sym_GT_GT_EQ] = ACTIONS(5448), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(5448), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(5448), + [anon_sym_AMP_AMP] = ACTIONS(4811), + [anon_sym_PIPE_PIPE] = ACTIONS(4811), + [anon_sym_QMARK_QMARK] = ACTIONS(4813), + [anon_sym_as] = ACTIONS(4811), + [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), @@ -496236,57 +495717,56 @@ 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(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), + [sym__identifier_token] = ACTIONS(3137), + [anon_sym_extern] = ACTIONS(3137), + [anon_sym_alias] = ACTIONS(3137), + [anon_sym_global] = ACTIONS(3137), + [anon_sym_unsafe] = ACTIONS(3137), + [anon_sym_static] = ACTIONS(3137), + [anon_sym_LBRACK] = ACTIONS(3139), + [anon_sym_RBRACE] = ACTIONS(3139), + [anon_sym_abstract] = ACTIONS(3137), + [anon_sym_async] = ACTIONS(3137), + [anon_sym_const] = ACTIONS(3137), + [anon_sym_file] = ACTIONS(3137), + [anon_sym_fixed] = ACTIONS(3137), + [anon_sym_internal] = ACTIONS(3137), + [anon_sym_new] = ACTIONS(3137), + [anon_sym_override] = ACTIONS(3137), + [anon_sym_partial] = ACTIONS(3137), + [anon_sym_private] = ACTIONS(3137), + [anon_sym_protected] = ACTIONS(3137), + [anon_sym_public] = ACTIONS(3137), + [anon_sym_readonly] = ACTIONS(3137), + [anon_sym_required] = ACTIONS(3137), + [anon_sym_sealed] = ACTIONS(3137), + [anon_sym_virtual] = ACTIONS(3137), + [anon_sym_volatile] = ACTIONS(3137), + [anon_sym_where] = ACTIONS(3137), + [anon_sym_notnull] = ACTIONS(3137), + [anon_sym_unmanaged] = ACTIONS(3137), + [anon_sym_get] = ACTIONS(3137), + [anon_sym_set] = ACTIONS(3137), + [anon_sym_add] = ACTIONS(3137), + [anon_sym_remove] = ACTIONS(3137), + [anon_sym_init] = ACTIONS(3137), + [anon_sym_scoped] = ACTIONS(3137), + [anon_sym_var] = ACTIONS(3137), + [anon_sym_yield] = ACTIONS(3137), + [anon_sym_when] = ACTIONS(3137), + [anon_sym_from] = ACTIONS(3137), + [anon_sym_into] = ACTIONS(3137), + [anon_sym_join] = ACTIONS(3137), + [anon_sym_on] = ACTIONS(3137), + [anon_sym_equals] = ACTIONS(3137), + [anon_sym_let] = ACTIONS(3137), + [anon_sym_orderby] = ACTIONS(3137), + [anon_sym_ascending] = ACTIONS(3137), + [anon_sym_descending] = ACTIONS(3137), + [anon_sym_group] = ACTIONS(3137), + [anon_sym_by] = ACTIONS(3137), + [anon_sym_select] = ACTIONS(3137), + [aux_sym_preproc_if_token1] = ACTIONS(3139), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -496308,57 +495788,56 @@ 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(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(5008), + [anon_sym_LBRACK] = ACTIONS(5008), + [anon_sym_COLON] = ACTIONS(5008), + [anon_sym_COMMA] = ACTIONS(5008), + [anon_sym_RBRACK] = ACTIONS(5008), + [anon_sym_LPAREN] = ACTIONS(5008), + [anon_sym_RPAREN] = ACTIONS(5008), + [anon_sym_RBRACE] = ACTIONS(5008), + [anon_sym_LT] = ACTIONS(5010), + [anon_sym_GT] = ACTIONS(5010), + [anon_sym_in] = ACTIONS(5008), + [anon_sym_QMARK] = ACTIONS(5010), + [anon_sym_BANG] = ACTIONS(5010), + [anon_sym_PLUS_PLUS] = ACTIONS(5008), + [anon_sym_DASH_DASH] = ACTIONS(5008), + [anon_sym_PLUS] = ACTIONS(5010), + [anon_sym_DASH] = ACTIONS(5010), + [anon_sym_STAR] = ACTIONS(5008), + [anon_sym_SLASH] = ACTIONS(5010), + [anon_sym_PERCENT] = ACTIONS(5008), + [anon_sym_CARET] = ACTIONS(5008), + [anon_sym_PIPE] = ACTIONS(5010), + [anon_sym_AMP] = ACTIONS(5010), + [anon_sym_LT_LT] = ACTIONS(5008), + [anon_sym_GT_GT] = ACTIONS(5010), + [anon_sym_GT_GT_GT] = ACTIONS(5008), + [anon_sym_EQ_EQ] = ACTIONS(5008), + [anon_sym_BANG_EQ] = ACTIONS(5008), + [anon_sym_GT_EQ] = ACTIONS(5008), + [anon_sym_LT_EQ] = ACTIONS(5008), + [anon_sym_DOT] = ACTIONS(5010), + [anon_sym_EQ_GT] = ACTIONS(5008), + [anon_sym_switch] = ACTIONS(5008), + [anon_sym_when] = ACTIONS(5008), + [anon_sym_DOT_DOT] = ACTIONS(5008), + [anon_sym_and] = ACTIONS(5008), + [anon_sym_or] = ACTIONS(5008), + [anon_sym_AMP_AMP] = ACTIONS(5008), + [anon_sym_PIPE_PIPE] = ACTIONS(5008), + [anon_sym_QMARK_QMARK] = ACTIONS(5008), + [anon_sym_on] = ACTIONS(5008), + [anon_sym_equals] = ACTIONS(5008), + [anon_sym_by] = ACTIONS(5008), + [anon_sym_as] = ACTIONS(5008), + [anon_sym_is] = ACTIONS(5008), + [anon_sym_DASH_GT] = ACTIONS(5008), + [anon_sym_with] = ACTIONS(5008), + [aux_sym_preproc_if_token3] = ACTIONS(5008), + [aux_sym_preproc_else_token1] = ACTIONS(5008), + [aux_sym_preproc_elif_token1] = ACTIONS(5008), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -496380,57 +495859,56 @@ 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(5080), - [anon_sym_LBRACK] = ACTIONS(5080), - [anon_sym_COLON] = ACTIONS(5080), - [anon_sym_COMMA] = ACTIONS(5080), - [anon_sym_RBRACK] = ACTIONS(5080), - [anon_sym_LPAREN] = ACTIONS(5080), - [anon_sym_RPAREN] = ACTIONS(5080), - [anon_sym_RBRACE] = ACTIONS(5080), - [anon_sym_LT] = ACTIONS(5082), - [anon_sym_GT] = ACTIONS(5082), - [anon_sym_in] = ACTIONS(5082), - [anon_sym_QMARK] = ACTIONS(5082), - [anon_sym_BANG] = ACTIONS(5082), - [anon_sym_PLUS_PLUS] = ACTIONS(5080), - [anon_sym_DASH_DASH] = ACTIONS(5080), - [anon_sym_PLUS] = ACTIONS(5082), - [anon_sym_DASH] = ACTIONS(5082), - [anon_sym_STAR] = ACTIONS(5080), - [anon_sym_SLASH] = ACTIONS(5082), - [anon_sym_PERCENT] = ACTIONS(5080), - [anon_sym_CARET] = ACTIONS(5080), - [anon_sym_PIPE] = ACTIONS(5082), - [anon_sym_AMP] = ACTIONS(5082), - [anon_sym_LT_LT] = ACTIONS(5080), - [anon_sym_GT_GT] = ACTIONS(5082), - [anon_sym_GT_GT_GT] = ACTIONS(5080), - [anon_sym_EQ_EQ] = ACTIONS(5080), - [anon_sym_BANG_EQ] = ACTIONS(5080), - [anon_sym_GT_EQ] = ACTIONS(5080), - [anon_sym_LT_EQ] = ACTIONS(5080), - [anon_sym_DOT] = ACTIONS(5082), - [anon_sym_EQ_GT] = ACTIONS(5080), - [anon_sym_switch] = ACTIONS(5080), - [anon_sym_when] = ACTIONS(5080), - [anon_sym_DOT_DOT] = ACTIONS(5080), - [anon_sym_and] = ACTIONS(5080), - [anon_sym_or] = ACTIONS(5080), - [anon_sym_AMP_AMP] = ACTIONS(5080), - [anon_sym_PIPE_PIPE] = ACTIONS(5080), - [anon_sym_QMARK_QMARK] = ACTIONS(5080), - [anon_sym_into] = ACTIONS(5080), - [anon_sym_on] = ACTIONS(5080), - [anon_sym_equals] = ACTIONS(5080), - [anon_sym_by] = ACTIONS(5080), - [anon_sym_as] = ACTIONS(5080), - [anon_sym_is] = ACTIONS(5080), - [anon_sym_DASH_GT] = ACTIONS(5080), - [anon_sym_with] = ACTIONS(5080), - [aux_sym_preproc_if_token3] = ACTIONS(5080), - [aux_sym_preproc_else_token1] = ACTIONS(5080), - [aux_sym_preproc_elif_token1] = ACTIONS(5080), + [anon_sym_SEMI] = ACTIONS(5434), + [anon_sym_LBRACK] = ACTIONS(5434), + [anon_sym_COLON] = ACTIONS(5434), + [anon_sym_COMMA] = ACTIONS(5434), + [anon_sym_RBRACK] = ACTIONS(5434), + [anon_sym_LPAREN] = ACTIONS(5434), + [anon_sym_RPAREN] = ACTIONS(5434), + [anon_sym_RBRACE] = ACTIONS(5434), + [anon_sym_LT] = ACTIONS(5436), + [anon_sym_GT] = ACTIONS(5436), + [anon_sym_in] = ACTIONS(5434), + [anon_sym_QMARK] = ACTIONS(5436), + [anon_sym_BANG] = ACTIONS(5436), + [anon_sym_PLUS_PLUS] = ACTIONS(5434), + [anon_sym_DASH_DASH] = ACTIONS(5434), + [anon_sym_PLUS] = ACTIONS(5436), + [anon_sym_DASH] = ACTIONS(5436), + [anon_sym_STAR] = ACTIONS(5434), + [anon_sym_SLASH] = ACTIONS(5436), + [anon_sym_PERCENT] = ACTIONS(5434), + [anon_sym_CARET] = ACTIONS(5434), + [anon_sym_PIPE] = ACTIONS(5436), + [anon_sym_AMP] = ACTIONS(5436), + [anon_sym_LT_LT] = ACTIONS(5434), + [anon_sym_GT_GT] = ACTIONS(5436), + [anon_sym_GT_GT_GT] = ACTIONS(5434), + [anon_sym_EQ_EQ] = ACTIONS(5434), + [anon_sym_BANG_EQ] = ACTIONS(5434), + [anon_sym_GT_EQ] = ACTIONS(5434), + [anon_sym_LT_EQ] = ACTIONS(5434), + [anon_sym_DOT] = ACTIONS(5436), + [anon_sym_EQ_GT] = ACTIONS(5434), + [anon_sym_switch] = ACTIONS(5434), + [anon_sym_when] = ACTIONS(5434), + [anon_sym_DOT_DOT] = ACTIONS(5434), + [anon_sym_and] = ACTIONS(5434), + [anon_sym_or] = ACTIONS(5434), + [anon_sym_AMP_AMP] = ACTIONS(5434), + [anon_sym_PIPE_PIPE] = ACTIONS(5434), + [anon_sym_QMARK_QMARK] = ACTIONS(5434), + [anon_sym_on] = ACTIONS(5434), + [anon_sym_equals] = ACTIONS(5434), + [anon_sym_by] = ACTIONS(5434), + [anon_sym_as] = ACTIONS(5434), + [anon_sym_is] = ACTIONS(5434), + [anon_sym_DASH_GT] = ACTIONS(5434), + [anon_sym_with] = ACTIONS(5434), + [aux_sym_preproc_if_token3] = ACTIONS(5434), + [aux_sym_preproc_else_token1] = ACTIONS(5434), + [aux_sym_preproc_elif_token1] = ACTIONS(5434), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -496452,57 +495930,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), - [sym__identifier_token] = ACTIONS(3482), - [anon_sym_extern] = ACTIONS(3482), - [anon_sym_alias] = ACTIONS(3482), - [anon_sym_global] = ACTIONS(3482), - [anon_sym_unsafe] = ACTIONS(3482), - [anon_sym_static] = ACTIONS(3482), - [anon_sym_LPAREN] = ACTIONS(5449), - [anon_sym_class] = ACTIONS(3482), - [anon_sym_ref] = ACTIONS(3482), - [anon_sym_struct] = ACTIONS(3482), - [anon_sym_enum] = ACTIONS(3482), - [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_scoped] = ACTIONS(3482), - [anon_sym_var] = ACTIONS(3482), - [sym_predefined_type] = ACTIONS(3482), - [anon_sym_yield] = ACTIONS(3482), - [anon_sym_when] = ACTIONS(3482), - [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_SEMI] = ACTIONS(5438), + [anon_sym_LBRACK] = ACTIONS(5438), + [anon_sym_COLON] = ACTIONS(5438), + [anon_sym_COMMA] = ACTIONS(5438), + [anon_sym_RBRACK] = ACTIONS(5438), + [anon_sym_LPAREN] = ACTIONS(5438), + [anon_sym_RPAREN] = ACTIONS(5438), + [anon_sym_RBRACE] = ACTIONS(5438), + [anon_sym_LT] = ACTIONS(5440), + [anon_sym_GT] = ACTIONS(5440), + [anon_sym_in] = ACTIONS(5438), + [anon_sym_QMARK] = ACTIONS(5440), + [anon_sym_BANG] = ACTIONS(5440), + [anon_sym_PLUS_PLUS] = ACTIONS(5438), + [anon_sym_DASH_DASH] = ACTIONS(5438), + [anon_sym_PLUS] = ACTIONS(5440), + [anon_sym_DASH] = ACTIONS(5440), + [anon_sym_STAR] = ACTIONS(5438), + [anon_sym_SLASH] = ACTIONS(5440), + [anon_sym_PERCENT] = ACTIONS(5438), + [anon_sym_CARET] = ACTIONS(5438), + [anon_sym_PIPE] = ACTIONS(5440), + [anon_sym_AMP] = ACTIONS(5440), + [anon_sym_LT_LT] = ACTIONS(5438), + [anon_sym_GT_GT] = ACTIONS(5440), + [anon_sym_GT_GT_GT] = ACTIONS(5438), + [anon_sym_EQ_EQ] = ACTIONS(5438), + [anon_sym_BANG_EQ] = ACTIONS(5438), + [anon_sym_GT_EQ] = ACTIONS(5438), + [anon_sym_LT_EQ] = ACTIONS(5438), + [anon_sym_DOT] = ACTIONS(5440), + [anon_sym_EQ_GT] = ACTIONS(5438), + [anon_sym_switch] = ACTIONS(5438), + [anon_sym_when] = ACTIONS(5438), + [anon_sym_DOT_DOT] = ACTIONS(5438), + [anon_sym_and] = ACTIONS(5438), + [anon_sym_or] = ACTIONS(5438), + [anon_sym_AMP_AMP] = ACTIONS(5438), + [anon_sym_PIPE_PIPE] = ACTIONS(5438), + [anon_sym_QMARK_QMARK] = ACTIONS(5438), + [anon_sym_on] = ACTIONS(5438), + [anon_sym_equals] = ACTIONS(5438), + [anon_sym_by] = ACTIONS(5438), + [anon_sym_as] = ACTIONS(5438), + [anon_sym_is] = ACTIONS(5438), + [anon_sym_DASH_GT] = ACTIONS(5438), + [anon_sym_with] = ACTIONS(5438), + [aux_sym_preproc_if_token3] = ACTIONS(5438), + [aux_sym_preproc_else_token1] = ACTIONS(5438), + [aux_sym_preproc_elif_token1] = ACTIONS(5438), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -496515,6 +495992,26 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3354] = { + [sym__name] = STATE(6381), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(4068), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(4073), + [sym_type] = STATE(7335), + [sym_implicit_type] = STATE(7156), + [sym_array_type] = STATE(6671), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(6672), + [sym_pointer_type] = STATE(6672), + [sym__pointer_base_type] = STATE(7421), + [sym_function_pointer_type] = STATE(6672), + [sym_function_pointer_parameter] = STATE(7377), + [sym_ref_type] = STATE(7035), + [sym__ref_base_type] = STATE(7387), + [sym_scoped_type] = STATE(7035), + [sym_tuple_type] = STATE(6553), + [sym_identifier] = STATE(4081), + [sym__reserved_identifier] = STATE(3654), [sym_preproc_region] = STATE(3354), [sym_preproc_endregion] = STATE(3354), [sym_preproc_line] = STATE(3354), @@ -496524,57 +496021,36 @@ 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(5110), - [anon_sym_LBRACK] = ACTIONS(5110), - [anon_sym_COLON] = ACTIONS(5110), - [anon_sym_COMMA] = ACTIONS(5110), - [anon_sym_RBRACK] = ACTIONS(5110), - [anon_sym_LPAREN] = ACTIONS(5110), - [anon_sym_RPAREN] = ACTIONS(5110), - [anon_sym_RBRACE] = ACTIONS(5110), - [anon_sym_LT] = ACTIONS(5112), - [anon_sym_GT] = ACTIONS(5112), - [anon_sym_in] = ACTIONS(5112), - [anon_sym_QMARK] = ACTIONS(5112), - [anon_sym_BANG] = ACTIONS(5112), - [anon_sym_PLUS_PLUS] = ACTIONS(5110), - [anon_sym_DASH_DASH] = ACTIONS(5110), - [anon_sym_PLUS] = ACTIONS(5112), - [anon_sym_DASH] = ACTIONS(5112), - [anon_sym_STAR] = ACTIONS(5110), - [anon_sym_SLASH] = ACTIONS(5112), - [anon_sym_PERCENT] = ACTIONS(5110), - [anon_sym_CARET] = ACTIONS(5110), - [anon_sym_PIPE] = ACTIONS(5112), - [anon_sym_AMP] = ACTIONS(5112), - [anon_sym_LT_LT] = ACTIONS(5110), - [anon_sym_GT_GT] = ACTIONS(5112), - [anon_sym_GT_GT_GT] = ACTIONS(5110), - [anon_sym_EQ_EQ] = ACTIONS(5110), - [anon_sym_BANG_EQ] = ACTIONS(5110), - [anon_sym_GT_EQ] = ACTIONS(5110), - [anon_sym_LT_EQ] = ACTIONS(5110), - [anon_sym_DOT] = ACTIONS(5112), - [anon_sym_EQ_GT] = ACTIONS(5110), - [anon_sym_switch] = ACTIONS(5110), - [anon_sym_when] = ACTIONS(5110), - [anon_sym_DOT_DOT] = ACTIONS(5110), - [anon_sym_and] = ACTIONS(5110), - [anon_sym_or] = ACTIONS(5110), - [anon_sym_AMP_AMP] = ACTIONS(5110), - [anon_sym_PIPE_PIPE] = ACTIONS(5110), - [anon_sym_QMARK_QMARK] = ACTIONS(5110), - [anon_sym_into] = ACTIONS(5110), - [anon_sym_on] = ACTIONS(5110), - [anon_sym_equals] = ACTIONS(5110), - [anon_sym_by] = ACTIONS(5110), - [anon_sym_as] = ACTIONS(5110), - [anon_sym_is] = ACTIONS(5110), - [anon_sym_DASH_GT] = ACTIONS(5110), - [anon_sym_with] = ACTIONS(5110), - [aux_sym_preproc_if_token3] = ACTIONS(5110), - [aux_sym_preproc_else_token1] = ACTIONS(5110), - [aux_sym_preproc_elif_token1] = ACTIONS(5110), + [aux_sym_function_pointer_type_repeat1] = STATE(3357), + [sym__identifier_token] = ACTIONS(2965), + [anon_sym_alias] = ACTIONS(2969), + [anon_sym_global] = ACTIONS(2969), + [anon_sym_LPAREN] = ACTIONS(2977), + [anon_sym_ref] = ACTIONS(5450), + [anon_sym_delegate] = ACTIONS(5172), + [anon_sym_file] = ACTIONS(2969), + [anon_sym_in] = ACTIONS(5452), + [anon_sym_out] = ACTIONS(5452), + [anon_sym_where] = ACTIONS(2969), + [anon_sym_notnull] = ACTIONS(2969), + [anon_sym_unmanaged] = ACTIONS(2969), + [anon_sym_scoped] = ACTIONS(5454), + [anon_sym_var] = ACTIONS(4705), + [sym_predefined_type] = ACTIONS(5456), + [anon_sym_yield] = ACTIONS(2969), + [anon_sym_when] = ACTIONS(2969), + [anon_sym_from] = ACTIONS(2969), + [anon_sym_into] = ACTIONS(2969), + [anon_sym_join] = ACTIONS(2969), + [anon_sym_on] = ACTIONS(2969), + [anon_sym_equals] = ACTIONS(2969), + [anon_sym_let] = ACTIONS(2969), + [anon_sym_orderby] = ACTIONS(2969), + [anon_sym_ascending] = ACTIONS(2969), + [anon_sym_descending] = ACTIONS(2969), + [anon_sym_group] = ACTIONS(2969), + [anon_sym_by] = ACTIONS(2969), + [anon_sym_select] = ACTIONS(2969), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -496587,9 +496063,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3355] = { - [sym_modifier] = STATE(3652), - [sym_identifier] = STATE(6389), - [sym__reserved_identifier] = STATE(2175), [sym_preproc_region] = STATE(3355), [sym_preproc_endregion] = STATE(3355), [sym_preproc_line] = STATE(3355), @@ -496599,54 +496072,56 @@ 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), - [aux_sym__class_declaration_initializer_repeat2] = STATE(3541), - [sym__identifier_token] = ACTIONS(25), - [anon_sym_extern] = ACTIONS(4810), - [anon_sym_alias] = ACTIONS(29), - [anon_sym_global] = ACTIONS(29), - [anon_sym_unsafe] = ACTIONS(4810), - [anon_sym_static] = ACTIONS(4810), - [anon_sym_abstract] = ACTIONS(4810), - [anon_sym_async] = ACTIONS(4810), - [anon_sym_const] = ACTIONS(4810), - [anon_sym_file] = ACTIONS(4816), - [anon_sym_fixed] = ACTIONS(4810), - [anon_sym_internal] = ACTIONS(4810), - [anon_sym_new] = ACTIONS(4810), - [anon_sym_override] = ACTIONS(4810), - [anon_sym_partial] = ACTIONS(4810), - [anon_sym_private] = ACTIONS(4810), - [anon_sym_protected] = ACTIONS(4810), - [anon_sym_public] = ACTIONS(4810), - [anon_sym_readonly] = ACTIONS(4810), - [anon_sym_required] = ACTIONS(4810), - [anon_sym_sealed] = ACTIONS(4810), - [anon_sym_virtual] = ACTIONS(4810), - [anon_sym_volatile] = ACTIONS(4810), - [anon_sym_where] = ACTIONS(29), - [anon_sym_notnull] = ACTIONS(29), - [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_get] = ACTIONS(5451), - [anon_sym_set] = ACTIONS(5451), - [anon_sym_add] = ACTIONS(5451), - [anon_sym_remove] = ACTIONS(5451), - [anon_sym_init] = ACTIONS(5451), - [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(3809), + [anon_sym_LBRACK] = ACTIONS(3809), + [anon_sym_COLON] = ACTIONS(3809), + [anon_sym_COMMA] = ACTIONS(3809), + [anon_sym_RBRACK] = ACTIONS(3809), + [anon_sym_LPAREN] = ACTIONS(3809), + [anon_sym_RPAREN] = ACTIONS(3809), + [anon_sym_RBRACE] = ACTIONS(3809), + [anon_sym_LT] = ACTIONS(5406), + [anon_sym_GT] = ACTIONS(5406), + [anon_sym_in] = ACTIONS(3809), + [anon_sym_QMARK] = ACTIONS(5406), + [anon_sym_BANG] = ACTIONS(5406), + [anon_sym_PLUS_PLUS] = ACTIONS(3809), + [anon_sym_DASH_DASH] = ACTIONS(3809), + [anon_sym_PLUS] = ACTIONS(5406), + [anon_sym_DASH] = ACTIONS(5406), + [anon_sym_STAR] = ACTIONS(3809), + [anon_sym_SLASH] = ACTIONS(5406), + [anon_sym_PERCENT] = ACTIONS(3809), + [anon_sym_CARET] = ACTIONS(3809), + [anon_sym_PIPE] = ACTIONS(5406), + [anon_sym_AMP] = ACTIONS(5406), + [anon_sym_LT_LT] = ACTIONS(3809), + [anon_sym_GT_GT] = ACTIONS(5406), + [anon_sym_GT_GT_GT] = ACTIONS(3809), + [anon_sym_EQ_EQ] = ACTIONS(3809), + [anon_sym_BANG_EQ] = ACTIONS(3809), + [anon_sym_GT_EQ] = ACTIONS(3809), + [anon_sym_LT_EQ] = ACTIONS(3809), + [anon_sym_DOT] = ACTIONS(5406), + [anon_sym_EQ_GT] = ACTIONS(3809), + [anon_sym_switch] = ACTIONS(3809), + [anon_sym_when] = ACTIONS(3809), + [anon_sym_DOT_DOT] = ACTIONS(3809), + [anon_sym_and] = ACTIONS(3809), + [anon_sym_or] = ACTIONS(3809), + [anon_sym_AMP_AMP] = ACTIONS(3809), + [anon_sym_PIPE_PIPE] = ACTIONS(3809), + [anon_sym_QMARK_QMARK] = ACTIONS(3809), + [anon_sym_on] = ACTIONS(3809), + [anon_sym_equals] = ACTIONS(3809), + [anon_sym_by] = ACTIONS(3809), + [anon_sym_as] = ACTIONS(3809), + [anon_sym_is] = ACTIONS(3809), + [anon_sym_DASH_GT] = ACTIONS(3809), + [anon_sym_with] = ACTIONS(3809), + [aux_sym_preproc_if_token3] = ACTIONS(3809), + [aux_sym_preproc_else_token1] = ACTIONS(3809), + [aux_sym_preproc_elif_token1] = ACTIONS(3809), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -496659,7 +496134,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3356] = { - [sym_initializer_expression] = STATE(3378), [sym_preproc_region] = STATE(3356), [sym_preproc_endregion] = STATE(3356), [sym_preproc_line] = STATE(3356), @@ -496669,56 +496143,56 @@ 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_SEMI] = ACTIONS(4916), - [anon_sym_LBRACK] = ACTIONS(4912), - [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(5453), - [anon_sym_RBRACE] = ACTIONS(4916), - [anon_sym_LT] = ACTIONS(4922), - [anon_sym_GT] = ACTIONS(4922), - [anon_sym_QMARK] = ACTIONS(5456), - [anon_sym_BANG] = ACTIONS(4922), - [anon_sym_PLUS_PLUS] = ACTIONS(4916), - [anon_sym_DASH_DASH] = ACTIONS(4916), - [anon_sym_PLUS] = ACTIONS(4922), - [anon_sym_DASH] = ACTIONS(4922), - [anon_sym_STAR] = ACTIONS(4916), - [anon_sym_SLASH] = ACTIONS(4922), - [anon_sym_PERCENT] = ACTIONS(4916), - [anon_sym_CARET] = ACTIONS(4916), - [anon_sym_PIPE] = ACTIONS(4922), - [anon_sym_AMP] = ACTIONS(4922), - [anon_sym_LT_LT] = ACTIONS(4916), - [anon_sym_GT_GT] = ACTIONS(4922), - [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(4922), - [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(4811), + [anon_sym_EQ] = ACTIONS(5458), + [anon_sym_LBRACK] = ACTIONS(4811), + [anon_sym_LPAREN] = ACTIONS(4811), + [anon_sym_LT] = ACTIONS(4813), + [anon_sym_GT] = ACTIONS(4813), + [anon_sym_QMARK] = ACTIONS(4813), + [anon_sym_BANG] = ACTIONS(4813), + [anon_sym_PLUS_PLUS] = ACTIONS(4811), + [anon_sym_DASH_DASH] = ACTIONS(4811), + [anon_sym_PLUS] = ACTIONS(4813), + [anon_sym_DASH] = ACTIONS(4813), + [anon_sym_STAR] = ACTIONS(4813), + [anon_sym_SLASH] = ACTIONS(4813), + [anon_sym_PERCENT] = ACTIONS(4813), + [anon_sym_CARET] = ACTIONS(4813), + [anon_sym_PIPE] = ACTIONS(4813), + [anon_sym_AMP] = ACTIONS(4813), + [anon_sym_LT_LT] = ACTIONS(4813), + [anon_sym_GT_GT] = ACTIONS(4813), + [anon_sym_GT_GT_GT] = ACTIONS(4813), + [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(4813), + [anon_sym_switch] = ACTIONS(4811), + [anon_sym_DOT_DOT] = ACTIONS(4811), + [anon_sym_PLUS_EQ] = ACTIONS(5460), + [anon_sym_DASH_EQ] = ACTIONS(5460), + [anon_sym_STAR_EQ] = ACTIONS(5460), + [anon_sym_SLASH_EQ] = ACTIONS(5460), + [anon_sym_PERCENT_EQ] = ACTIONS(5460), + [anon_sym_AMP_EQ] = ACTIONS(5460), + [anon_sym_CARET_EQ] = ACTIONS(5460), + [anon_sym_PIPE_EQ] = ACTIONS(5460), + [anon_sym_LT_LT_EQ] = ACTIONS(5460), + [anon_sym_GT_GT_EQ] = ACTIONS(5460), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(5460), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(5460), + [anon_sym_AMP_AMP] = ACTIONS(4811), + [anon_sym_PIPE_PIPE] = ACTIONS(4811), + [anon_sym_QMARK_QMARK] = ACTIONS(4813), + [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), @@ -496731,6 +496205,26 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3357] = { + [sym__name] = STATE(6381), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(4068), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(4073), + [sym_type] = STATE(7629), + [sym_implicit_type] = STATE(7156), + [sym_array_type] = STATE(6671), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(6672), + [sym_pointer_type] = STATE(6672), + [sym__pointer_base_type] = STATE(7421), + [sym_function_pointer_type] = STATE(6672), + [sym_function_pointer_parameter] = STATE(7377), + [sym_ref_type] = STATE(7035), + [sym__ref_base_type] = STATE(7387), + [sym_scoped_type] = STATE(7035), + [sym_tuple_type] = STATE(6553), + [sym_identifier] = STATE(4081), + [sym__reserved_identifier] = STATE(3654), [sym_preproc_region] = STATE(3357), [sym_preproc_endregion] = STATE(3357), [sym_preproc_line] = STATE(3357), @@ -496740,57 +496234,36 @@ 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(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), + [aux_sym_function_pointer_type_repeat1] = STATE(3667), + [sym__identifier_token] = ACTIONS(2965), + [anon_sym_alias] = ACTIONS(2969), + [anon_sym_global] = ACTIONS(2969), + [anon_sym_LPAREN] = ACTIONS(2977), + [anon_sym_ref] = ACTIONS(5450), + [anon_sym_delegate] = ACTIONS(5172), + [anon_sym_file] = ACTIONS(2969), + [anon_sym_in] = ACTIONS(5452), + [anon_sym_out] = ACTIONS(5452), + [anon_sym_where] = ACTIONS(2969), + [anon_sym_notnull] = ACTIONS(2969), + [anon_sym_unmanaged] = ACTIONS(2969), + [anon_sym_scoped] = ACTIONS(5454), + [anon_sym_var] = ACTIONS(4705), + [sym_predefined_type] = ACTIONS(5456), + [anon_sym_yield] = ACTIONS(2969), + [anon_sym_when] = ACTIONS(2969), + [anon_sym_from] = ACTIONS(2969), + [anon_sym_into] = ACTIONS(2969), + [anon_sym_join] = ACTIONS(2969), + [anon_sym_on] = ACTIONS(2969), + [anon_sym_equals] = ACTIONS(2969), + [anon_sym_let] = ACTIONS(2969), + [anon_sym_orderby] = ACTIONS(2969), + [anon_sym_ascending] = ACTIONS(2969), + [anon_sym_descending] = ACTIONS(2969), + [anon_sym_group] = ACTIONS(2969), + [anon_sym_by] = ACTIONS(2969), + [anon_sym_select] = ACTIONS(2969), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -496803,6 +496276,26 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3358] = { + [sym__name] = STATE(6381), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(4068), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(4073), + [sym_type] = STATE(7629), + [sym_implicit_type] = STATE(7156), + [sym_array_type] = STATE(6671), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(6672), + [sym_pointer_type] = STATE(6672), + [sym__pointer_base_type] = STATE(7421), + [sym_function_pointer_type] = STATE(6672), + [sym_function_pointer_parameter] = STATE(7377), + [sym_ref_type] = STATE(7035), + [sym__ref_base_type] = STATE(7387), + [sym_scoped_type] = STATE(7035), + [sym_tuple_type] = STATE(6553), + [sym_identifier] = STATE(4081), + [sym__reserved_identifier] = STATE(3654), [sym_preproc_region] = STATE(3358), [sym_preproc_endregion] = STATE(3358), [sym_preproc_line] = STATE(3358), @@ -496812,57 +496305,36 @@ 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(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), + [aux_sym_function_pointer_type_repeat1] = STATE(3360), + [sym__identifier_token] = ACTIONS(2965), + [anon_sym_alias] = ACTIONS(2969), + [anon_sym_global] = ACTIONS(2969), + [anon_sym_LPAREN] = ACTIONS(2977), + [anon_sym_ref] = ACTIONS(5450), + [anon_sym_delegate] = ACTIONS(5172), + [anon_sym_file] = ACTIONS(2969), + [anon_sym_in] = ACTIONS(5452), + [anon_sym_out] = ACTIONS(5452), + [anon_sym_where] = ACTIONS(2969), + [anon_sym_notnull] = ACTIONS(2969), + [anon_sym_unmanaged] = ACTIONS(2969), + [anon_sym_scoped] = ACTIONS(5454), + [anon_sym_var] = ACTIONS(4705), + [sym_predefined_type] = ACTIONS(5456), + [anon_sym_yield] = ACTIONS(2969), + [anon_sym_when] = ACTIONS(2969), + [anon_sym_from] = ACTIONS(2969), + [anon_sym_into] = ACTIONS(2969), + [anon_sym_join] = ACTIONS(2969), + [anon_sym_on] = ACTIONS(2969), + [anon_sym_equals] = ACTIONS(2969), + [anon_sym_let] = ACTIONS(2969), + [anon_sym_orderby] = ACTIONS(2969), + [anon_sym_ascending] = ACTIONS(2969), + [anon_sym_descending] = ACTIONS(2969), + [anon_sym_group] = ACTIONS(2969), + [anon_sym_by] = ACTIONS(2969), + [anon_sym_select] = ACTIONS(2969), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -496884,57 +496356,56 @@ 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), - [sym__identifier_token] = ACTIONS(3482), - [anon_sym_extern] = ACTIONS(3482), - [anon_sym_alias] = ACTIONS(5468), - [anon_sym_global] = ACTIONS(3482), - [anon_sym_unsafe] = ACTIONS(3482), - [anon_sym_static] = ACTIONS(3482), - [anon_sym_LPAREN] = ACTIONS(5084), - [anon_sym_class] = ACTIONS(3482), - [anon_sym_ref] = ACTIONS(3482), - [anon_sym_struct] = ACTIONS(3482), - [anon_sym_enum] = ACTIONS(3482), - [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_scoped] = ACTIONS(3482), - [anon_sym_var] = ACTIONS(3482), - [sym_predefined_type] = ACTIONS(3482), - [anon_sym_yield] = ACTIONS(3482), - [anon_sym_when] = ACTIONS(3482), - [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), + [sym__identifier_token] = ACTIONS(5462), + [anon_sym_extern] = ACTIONS(5462), + [anon_sym_alias] = ACTIONS(5462), + [anon_sym_global] = ACTIONS(5462), + [anon_sym_unsafe] = ACTIONS(5462), + [anon_sym_static] = ACTIONS(5462), + [anon_sym_LBRACK] = ACTIONS(5464), + [anon_sym_RBRACE] = ACTIONS(5464), + [anon_sym_abstract] = ACTIONS(5462), + [anon_sym_async] = ACTIONS(5462), + [anon_sym_const] = ACTIONS(5462), + [anon_sym_file] = ACTIONS(5462), + [anon_sym_fixed] = ACTIONS(5462), + [anon_sym_internal] = ACTIONS(5462), + [anon_sym_new] = ACTIONS(5462), + [anon_sym_override] = ACTIONS(5462), + [anon_sym_partial] = ACTIONS(5462), + [anon_sym_private] = ACTIONS(5462), + [anon_sym_protected] = ACTIONS(5462), + [anon_sym_public] = ACTIONS(5462), + [anon_sym_readonly] = ACTIONS(5462), + [anon_sym_required] = ACTIONS(5462), + [anon_sym_sealed] = ACTIONS(5462), + [anon_sym_virtual] = ACTIONS(5462), + [anon_sym_volatile] = ACTIONS(5462), + [anon_sym_where] = ACTIONS(5462), + [anon_sym_notnull] = ACTIONS(5462), + [anon_sym_unmanaged] = ACTIONS(5462), + [anon_sym_get] = ACTIONS(5462), + [anon_sym_set] = ACTIONS(5462), + [anon_sym_add] = ACTIONS(5462), + [anon_sym_remove] = ACTIONS(5462), + [anon_sym_init] = ACTIONS(5462), + [anon_sym_scoped] = ACTIONS(5462), + [anon_sym_var] = ACTIONS(5462), + [anon_sym_yield] = ACTIONS(5462), + [anon_sym_when] = ACTIONS(5462), + [anon_sym_from] = ACTIONS(5462), + [anon_sym_into] = ACTIONS(5462), + [anon_sym_join] = ACTIONS(5462), + [anon_sym_on] = ACTIONS(5462), + [anon_sym_equals] = ACTIONS(5462), + [anon_sym_let] = ACTIONS(5462), + [anon_sym_orderby] = ACTIONS(5462), + [anon_sym_ascending] = ACTIONS(5462), + [anon_sym_descending] = ACTIONS(5462), + [anon_sym_group] = ACTIONS(5462), + [anon_sym_by] = ACTIONS(5462), + [anon_sym_select] = ACTIONS(5462), + [aux_sym_preproc_if_token1] = ACTIONS(5464), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -496947,6 +496418,26 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3360] = { + [sym__name] = STATE(6381), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(4068), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(4073), + [sym_type] = STATE(7702), + [sym_implicit_type] = STATE(7156), + [sym_array_type] = STATE(6671), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(6672), + [sym_pointer_type] = STATE(6672), + [sym__pointer_base_type] = STATE(7421), + [sym_function_pointer_type] = STATE(6672), + [sym_function_pointer_parameter] = STATE(7377), + [sym_ref_type] = STATE(7035), + [sym__ref_base_type] = STATE(7387), + [sym_scoped_type] = STATE(7035), + [sym_tuple_type] = STATE(6553), + [sym_identifier] = STATE(4081), + [sym__reserved_identifier] = STATE(3654), [sym_preproc_region] = STATE(3360), [sym_preproc_endregion] = STATE(3360), [sym_preproc_line] = STATE(3360), @@ -496956,56 +496447,36 @@ 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(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_RBRACE] = ACTIONS(4933), - [anon_sym_LT] = ACTIONS(4935), - [anon_sym_GT] = ACTIONS(4935), - [anon_sym_in] = 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_function_pointer_type_repeat1] = STATE(3667), + [sym__identifier_token] = ACTIONS(2965), + [anon_sym_alias] = ACTIONS(2969), + [anon_sym_global] = ACTIONS(2969), + [anon_sym_LPAREN] = ACTIONS(2977), + [anon_sym_ref] = ACTIONS(5450), + [anon_sym_delegate] = ACTIONS(5172), + [anon_sym_file] = ACTIONS(2969), + [anon_sym_in] = ACTIONS(5452), + [anon_sym_out] = ACTIONS(5452), + [anon_sym_where] = ACTIONS(2969), + [anon_sym_notnull] = ACTIONS(2969), + [anon_sym_unmanaged] = ACTIONS(2969), + [anon_sym_scoped] = ACTIONS(5454), + [anon_sym_var] = ACTIONS(4705), + [sym_predefined_type] = ACTIONS(5456), + [anon_sym_yield] = ACTIONS(2969), + [anon_sym_when] = ACTIONS(2969), + [anon_sym_from] = ACTIONS(2969), + [anon_sym_into] = ACTIONS(2969), + [anon_sym_join] = ACTIONS(2969), + [anon_sym_on] = ACTIONS(2969), + [anon_sym_equals] = ACTIONS(2969), + [anon_sym_let] = ACTIONS(2969), + [anon_sym_orderby] = ACTIONS(2969), + [anon_sym_ascending] = ACTIONS(2969), + [anon_sym_descending] = ACTIONS(2969), + [anon_sym_group] = ACTIONS(2969), + [anon_sym_by] = ACTIONS(2969), + [anon_sym_select] = ACTIONS(2969), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -497027,56 +496498,56 @@ 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(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(5068), + [anon_sym_LBRACK] = ACTIONS(5068), + [anon_sym_COLON] = ACTIONS(5068), + [anon_sym_COMMA] = ACTIONS(5068), + [anon_sym_RBRACK] = ACTIONS(5068), + [anon_sym_LPAREN] = ACTIONS(5068), + [anon_sym_RPAREN] = ACTIONS(5068), + [anon_sym_RBRACE] = ACTIONS(5068), + [anon_sym_LT] = ACTIONS(5070), + [anon_sym_GT] = ACTIONS(5070), + [anon_sym_in] = ACTIONS(5068), + [anon_sym_QMARK] = ACTIONS(5070), + [anon_sym_BANG] = ACTIONS(5070), + [anon_sym_PLUS_PLUS] = ACTIONS(5068), + [anon_sym_DASH_DASH] = ACTIONS(5068), + [anon_sym_PLUS] = ACTIONS(5070), + [anon_sym_DASH] = ACTIONS(5070), + [anon_sym_STAR] = ACTIONS(5068), + [anon_sym_SLASH] = ACTIONS(5070), + [anon_sym_PERCENT] = ACTIONS(5068), + [anon_sym_CARET] = ACTIONS(5068), + [anon_sym_PIPE] = ACTIONS(5070), + [anon_sym_AMP] = ACTIONS(5070), + [anon_sym_LT_LT] = ACTIONS(5068), + [anon_sym_GT_GT] = ACTIONS(5070), + [anon_sym_GT_GT_GT] = ACTIONS(5068), + [anon_sym_EQ_EQ] = ACTIONS(5068), + [anon_sym_BANG_EQ] = ACTIONS(5068), + [anon_sym_GT_EQ] = ACTIONS(5068), + [anon_sym_LT_EQ] = ACTIONS(5068), + [anon_sym_DOT] = ACTIONS(5070), + [anon_sym_EQ_GT] = ACTIONS(5068), + [anon_sym_switch] = ACTIONS(5068), + [anon_sym_when] = ACTIONS(5068), + [anon_sym_DOT_DOT] = ACTIONS(5068), + [anon_sym_and] = ACTIONS(5068), + [anon_sym_or] = ACTIONS(5068), + [anon_sym_AMP_AMP] = ACTIONS(5068), + [anon_sym_PIPE_PIPE] = ACTIONS(5068), + [anon_sym_QMARK_QMARK] = ACTIONS(5068), + [anon_sym_on] = ACTIONS(5068), + [anon_sym_equals] = ACTIONS(5068), + [anon_sym_by] = ACTIONS(5068), + [anon_sym_as] = ACTIONS(5068), + [anon_sym_is] = ACTIONS(5068), + [anon_sym_DASH_GT] = ACTIONS(5068), + [anon_sym_with] = ACTIONS(5068), + [aux_sym_preproc_if_token3] = ACTIONS(5068), + [aux_sym_preproc_else_token1] = ACTIONS(5068), + [aux_sym_preproc_elif_token1] = ACTIONS(5068), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -497098,89 +496569,69 @@ 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(5054), - [anon_sym_LBRACK] = ACTIONS(5054), - [anon_sym_COLON] = ACTIONS(5054), - [anon_sym_COMMA] = ACTIONS(5054), - [anon_sym_RBRACK] = ACTIONS(5054), - [anon_sym_LPAREN] = ACTIONS(5054), - [anon_sym_RPAREN] = ACTIONS(5054), - [anon_sym_RBRACE] = ACTIONS(5054), - [anon_sym_LT] = ACTIONS(5056), - [anon_sym_GT] = ACTIONS(5056), - [anon_sym_in] = ACTIONS(5054), - [anon_sym_QMARK] = ACTIONS(5056), - [anon_sym_BANG] = ACTIONS(5056), - [anon_sym_PLUS_PLUS] = ACTIONS(5054), - [anon_sym_DASH_DASH] = ACTIONS(5054), - [anon_sym_PLUS] = ACTIONS(5056), - [anon_sym_DASH] = ACTIONS(5056), - [anon_sym_STAR] = ACTIONS(5054), - [anon_sym_SLASH] = ACTIONS(5056), - [anon_sym_PERCENT] = ACTIONS(5054), - [anon_sym_CARET] = ACTIONS(5054), - [anon_sym_PIPE] = ACTIONS(5056), - [anon_sym_AMP] = ACTIONS(5056), - [anon_sym_LT_LT] = ACTIONS(5054), - [anon_sym_GT_GT] = ACTIONS(5056), - [anon_sym_GT_GT_GT] = ACTIONS(5054), - [anon_sym_EQ_EQ] = ACTIONS(5054), - [anon_sym_BANG_EQ] = ACTIONS(5054), - [anon_sym_GT_EQ] = ACTIONS(5054), - [anon_sym_LT_EQ] = ACTIONS(5054), - [anon_sym_DOT] = ACTIONS(5056), - [anon_sym_EQ_GT] = ACTIONS(5054), - [anon_sym_switch] = ACTIONS(5054), - [anon_sym_when] = ACTIONS(5054), - [anon_sym_DOT_DOT] = ACTIONS(5054), - [anon_sym_and] = ACTIONS(5054), - [anon_sym_or] = ACTIONS(5054), - [anon_sym_AMP_AMP] = ACTIONS(5054), - [anon_sym_PIPE_PIPE] = ACTIONS(5054), - [anon_sym_QMARK_QMARK] = ACTIONS(5054), - [anon_sym_on] = ACTIONS(5054), - [anon_sym_equals] = ACTIONS(5054), - [anon_sym_by] = ACTIONS(5054), - [anon_sym_as] = ACTIONS(5054), - [anon_sym_is] = ACTIONS(5054), - [anon_sym_DASH_GT] = ACTIONS(5054), - [anon_sym_with] = ACTIONS(5054), - [aux_sym_preproc_if_token3] = ACTIONS(5054), - [aux_sym_preproc_else_token1] = ACTIONS(5054), - [aux_sym_preproc_elif_token1] = ACTIONS(5054), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - }, - [3363] = { - [sym_parameter_list] = STATE(7311), - [sym__name] = STATE(4390), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(4096), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(4109), - [sym_type] = STATE(5915), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym__lambda_parameters] = STATE(7489), - [sym_identifier] = STATE(5763), - [sym__reserved_identifier] = STATE(3691), - [sym_preproc_region] = STATE(3363), + [anon_sym_SEMI] = ACTIONS(5346), + [anon_sym_LBRACK] = ACTIONS(5346), + [anon_sym_COLON] = ACTIONS(5346), + [anon_sym_COMMA] = ACTIONS(5346), + [anon_sym_RBRACK] = ACTIONS(5346), + [anon_sym_LPAREN] = ACTIONS(5346), + [anon_sym_RPAREN] = ACTIONS(5346), + [anon_sym_RBRACE] = ACTIONS(5346), + [anon_sym_LT] = ACTIONS(5348), + [anon_sym_GT] = ACTIONS(5348), + [anon_sym_in] = ACTIONS(5346), + [anon_sym_QMARK] = ACTIONS(5348), + [anon_sym_BANG] = ACTIONS(5348), + [anon_sym_PLUS_PLUS] = ACTIONS(5346), + [anon_sym_DASH_DASH] = ACTIONS(5346), + [anon_sym_PLUS] = ACTIONS(5348), + [anon_sym_DASH] = ACTIONS(5348), + [anon_sym_STAR] = ACTIONS(5346), + [anon_sym_SLASH] = ACTIONS(5348), + [anon_sym_PERCENT] = ACTIONS(5346), + [anon_sym_CARET] = ACTIONS(5346), + [anon_sym_PIPE] = ACTIONS(5348), + [anon_sym_AMP] = ACTIONS(5348), + [anon_sym_LT_LT] = ACTIONS(5346), + [anon_sym_GT_GT] = ACTIONS(5348), + [anon_sym_GT_GT_GT] = ACTIONS(5346), + [anon_sym_EQ_EQ] = ACTIONS(5346), + [anon_sym_BANG_EQ] = ACTIONS(5346), + [anon_sym_GT_EQ] = ACTIONS(5346), + [anon_sym_LT_EQ] = ACTIONS(5346), + [anon_sym_DOT] = ACTIONS(5348), + [anon_sym_EQ_GT] = ACTIONS(5346), + [anon_sym_switch] = ACTIONS(5346), + [anon_sym_when] = ACTIONS(5346), + [anon_sym_DOT_DOT] = ACTIONS(5346), + [anon_sym_and] = ACTIONS(5346), + [anon_sym_or] = ACTIONS(5346), + [anon_sym_AMP_AMP] = ACTIONS(5346), + [anon_sym_PIPE_PIPE] = ACTIONS(5346), + [anon_sym_QMARK_QMARK] = ACTIONS(5346), + [anon_sym_on] = ACTIONS(5346), + [anon_sym_equals] = ACTIONS(5346), + [anon_sym_by] = ACTIONS(5346), + [anon_sym_as] = ACTIONS(5346), + [anon_sym_is] = ACTIONS(5346), + [anon_sym_DASH_GT] = ACTIONS(5346), + [anon_sym_with] = ACTIONS(5346), + [aux_sym_preproc_if_token3] = ACTIONS(5346), + [aux_sym_preproc_else_token1] = ACTIONS(5346), + [aux_sym_preproc_elif_token1] = ACTIONS(5346), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + }, + [3363] = { + [sym_preproc_region] = STATE(3363), [sym_preproc_endregion] = STATE(3363), [sym_preproc_line] = STATE(3363), [sym_preproc_pragma] = STATE(3363), @@ -497189,36 +496640,56 @@ 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), - [aux_sym__lambda_expression_init_repeat1] = STATE(5863), - [sym__identifier_token] = ACTIONS(2967), - [anon_sym_alias] = ACTIONS(2971), - [anon_sym_global] = ACTIONS(2971), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LPAREN] = ACTIONS(3794), - [anon_sym_ref] = ACTIONS(3452), - [anon_sym_delegate] = ACTIONS(5470), - [anon_sym_async] = ACTIONS(1047), - [anon_sym_file] = ACTIONS(2971), - [anon_sym_where] = ACTIONS(2971), - [anon_sym_notnull] = ACTIONS(2971), - [anon_sym_unmanaged] = ACTIONS(2971), - [anon_sym_scoped] = ACTIONS(2997), - [anon_sym_var] = ACTIONS(2999), - [sym_predefined_type] = ACTIONS(3001), - [anon_sym_yield] = ACTIONS(2971), - [anon_sym_when] = ACTIONS(2971), - [anon_sym_from] = ACTIONS(2971), - [anon_sym_into] = ACTIONS(2971), - [anon_sym_join] = ACTIONS(2971), - [anon_sym_on] = ACTIONS(2971), - [anon_sym_equals] = ACTIONS(2971), - [anon_sym_let] = ACTIONS(2971), - [anon_sym_orderby] = ACTIONS(2971), - [anon_sym_ascending] = ACTIONS(2971), - [anon_sym_descending] = ACTIONS(2971), - [anon_sym_group] = ACTIONS(2971), - [anon_sym_by] = ACTIONS(2971), - [anon_sym_select] = ACTIONS(2971), + [sym__identifier_token] = ACTIONS(3149), + [anon_sym_extern] = ACTIONS(3149), + [anon_sym_alias] = ACTIONS(3149), + [anon_sym_global] = ACTIONS(3149), + [anon_sym_unsafe] = ACTIONS(3149), + [anon_sym_static] = ACTIONS(3149), + [anon_sym_LBRACK] = ACTIONS(3151), + [anon_sym_RBRACE] = ACTIONS(3151), + [anon_sym_abstract] = ACTIONS(3149), + [anon_sym_async] = ACTIONS(3149), + [anon_sym_const] = ACTIONS(3149), + [anon_sym_file] = ACTIONS(3149), + [anon_sym_fixed] = ACTIONS(3149), + [anon_sym_internal] = ACTIONS(3149), + [anon_sym_new] = ACTIONS(3149), + [anon_sym_override] = ACTIONS(3149), + [anon_sym_partial] = ACTIONS(3149), + [anon_sym_private] = ACTIONS(3149), + [anon_sym_protected] = ACTIONS(3149), + [anon_sym_public] = ACTIONS(3149), + [anon_sym_readonly] = ACTIONS(3149), + [anon_sym_required] = ACTIONS(3149), + [anon_sym_sealed] = ACTIONS(3149), + [anon_sym_virtual] = ACTIONS(3149), + [anon_sym_volatile] = ACTIONS(3149), + [anon_sym_where] = ACTIONS(3149), + [anon_sym_notnull] = ACTIONS(3149), + [anon_sym_unmanaged] = ACTIONS(3149), + [anon_sym_get] = ACTIONS(3149), + [anon_sym_set] = ACTIONS(3149), + [anon_sym_add] = ACTIONS(3149), + [anon_sym_remove] = ACTIONS(3149), + [anon_sym_init] = ACTIONS(3149), + [anon_sym_scoped] = ACTIONS(3149), + [anon_sym_var] = ACTIONS(3149), + [anon_sym_yield] = ACTIONS(3149), + [anon_sym_when] = ACTIONS(3149), + [anon_sym_from] = ACTIONS(3149), + [anon_sym_into] = ACTIONS(3149), + [anon_sym_join] = ACTIONS(3149), + [anon_sym_on] = ACTIONS(3149), + [anon_sym_equals] = ACTIONS(3149), + [anon_sym_let] = ACTIONS(3149), + [anon_sym_orderby] = ACTIONS(3149), + [anon_sym_ascending] = ACTIONS(3149), + [anon_sym_descending] = ACTIONS(3149), + [anon_sym_group] = ACTIONS(3149), + [anon_sym_by] = ACTIONS(3149), + [anon_sym_select] = ACTIONS(3149), + [aux_sym_preproc_if_token1] = ACTIONS(3151), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -497240,56 +496711,56 @@ 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(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), + [sym__identifier_token] = ACTIONS(3153), + [anon_sym_extern] = ACTIONS(3153), + [anon_sym_alias] = ACTIONS(3153), + [anon_sym_global] = ACTIONS(3153), + [anon_sym_unsafe] = ACTIONS(3153), + [anon_sym_static] = ACTIONS(3153), + [anon_sym_LBRACK] = ACTIONS(3155), + [anon_sym_RBRACE] = ACTIONS(3155), + [anon_sym_abstract] = ACTIONS(3153), + [anon_sym_async] = ACTIONS(3153), + [anon_sym_const] = ACTIONS(3153), + [anon_sym_file] = ACTIONS(3153), + [anon_sym_fixed] = ACTIONS(3153), + [anon_sym_internal] = ACTIONS(3153), + [anon_sym_new] = ACTIONS(3153), + [anon_sym_override] = ACTIONS(3153), + [anon_sym_partial] = ACTIONS(3153), + [anon_sym_private] = ACTIONS(3153), + [anon_sym_protected] = ACTIONS(3153), + [anon_sym_public] = ACTIONS(3153), + [anon_sym_readonly] = ACTIONS(3153), + [anon_sym_required] = ACTIONS(3153), + [anon_sym_sealed] = ACTIONS(3153), + [anon_sym_virtual] = ACTIONS(3153), + [anon_sym_volatile] = ACTIONS(3153), + [anon_sym_where] = ACTIONS(3153), + [anon_sym_notnull] = ACTIONS(3153), + [anon_sym_unmanaged] = ACTIONS(3153), + [anon_sym_get] = ACTIONS(3153), + [anon_sym_set] = ACTIONS(3153), + [anon_sym_add] = ACTIONS(3153), + [anon_sym_remove] = ACTIONS(3153), + [anon_sym_init] = ACTIONS(3153), + [anon_sym_scoped] = ACTIONS(3153), + [anon_sym_var] = ACTIONS(3153), + [anon_sym_yield] = ACTIONS(3153), + [anon_sym_when] = ACTIONS(3153), + [anon_sym_from] = ACTIONS(3153), + [anon_sym_into] = ACTIONS(3153), + [anon_sym_join] = ACTIONS(3153), + [anon_sym_on] = ACTIONS(3153), + [anon_sym_equals] = ACTIONS(3153), + [anon_sym_let] = ACTIONS(3153), + [anon_sym_orderby] = ACTIONS(3153), + [anon_sym_ascending] = ACTIONS(3153), + [anon_sym_descending] = ACTIONS(3153), + [anon_sym_group] = ACTIONS(3153), + [anon_sym_by] = ACTIONS(3153), + [anon_sym_select] = ACTIONS(3153), + [aux_sym_preproc_if_token1] = ACTIONS(3155), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -497311,56 +496782,56 @@ 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(5342), - [anon_sym_LBRACK] = ACTIONS(5342), - [anon_sym_COLON] = ACTIONS(5342), - [anon_sym_COMMA] = ACTIONS(5342), - [anon_sym_RBRACK] = ACTIONS(5342), - [anon_sym_LPAREN] = ACTIONS(5342), - [anon_sym_RPAREN] = ACTIONS(5342), - [anon_sym_RBRACE] = ACTIONS(5342), - [anon_sym_LT] = ACTIONS(5344), - [anon_sym_GT] = ACTIONS(5344), - [anon_sym_in] = ACTIONS(5342), - [anon_sym_QMARK] = ACTIONS(5344), - [anon_sym_BANG] = ACTIONS(5344), - [anon_sym_PLUS_PLUS] = ACTIONS(5342), - [anon_sym_DASH_DASH] = ACTIONS(5342), - [anon_sym_PLUS] = ACTIONS(5344), - [anon_sym_DASH] = ACTIONS(5344), - [anon_sym_STAR] = ACTIONS(5342), - [anon_sym_SLASH] = ACTIONS(5344), - [anon_sym_PERCENT] = ACTIONS(5342), - [anon_sym_CARET] = ACTIONS(5342), - [anon_sym_PIPE] = ACTIONS(5344), - [anon_sym_AMP] = ACTIONS(5344), - [anon_sym_LT_LT] = ACTIONS(5342), - [anon_sym_GT_GT] = ACTIONS(5344), - [anon_sym_GT_GT_GT] = ACTIONS(5342), - [anon_sym_EQ_EQ] = ACTIONS(5342), - [anon_sym_BANG_EQ] = ACTIONS(5342), - [anon_sym_GT_EQ] = ACTIONS(5342), - [anon_sym_LT_EQ] = ACTIONS(5342), - [anon_sym_DOT] = ACTIONS(5344), - [anon_sym_EQ_GT] = ACTIONS(5342), - [anon_sym_switch] = ACTIONS(5342), - [anon_sym_when] = ACTIONS(5342), - [anon_sym_DOT_DOT] = ACTIONS(5342), - [anon_sym_and] = ACTIONS(5342), - [anon_sym_or] = ACTIONS(5342), - [anon_sym_AMP_AMP] = ACTIONS(5342), - [anon_sym_PIPE_PIPE] = ACTIONS(5342), - [anon_sym_QMARK_QMARK] = ACTIONS(5342), - [anon_sym_on] = ACTIONS(5342), - [anon_sym_equals] = ACTIONS(5342), - [anon_sym_by] = ACTIONS(5342), - [anon_sym_as] = ACTIONS(5342), - [anon_sym_is] = ACTIONS(5342), - [anon_sym_DASH_GT] = ACTIONS(5342), - [anon_sym_with] = ACTIONS(5342), - [aux_sym_preproc_if_token3] = ACTIONS(5342), - [aux_sym_preproc_else_token1] = ACTIONS(5342), - [aux_sym_preproc_elif_token1] = ACTIONS(5342), + [anon_sym_SEMI] = ACTIONS(5012), + [anon_sym_LBRACK] = ACTIONS(5012), + [anon_sym_COLON] = ACTIONS(5012), + [anon_sym_COMMA] = ACTIONS(5012), + [anon_sym_RBRACK] = ACTIONS(5012), + [anon_sym_LPAREN] = ACTIONS(5012), + [anon_sym_RPAREN] = ACTIONS(5012), + [anon_sym_RBRACE] = ACTIONS(5012), + [anon_sym_LT] = ACTIONS(5014), + [anon_sym_GT] = ACTIONS(5014), + [anon_sym_in] = ACTIONS(5012), + [anon_sym_QMARK] = ACTIONS(5014), + [anon_sym_BANG] = ACTIONS(5014), + [anon_sym_PLUS_PLUS] = ACTIONS(5012), + [anon_sym_DASH_DASH] = ACTIONS(5012), + [anon_sym_PLUS] = ACTIONS(5014), + [anon_sym_DASH] = ACTIONS(5014), + [anon_sym_STAR] = ACTIONS(5012), + [anon_sym_SLASH] = ACTIONS(5014), + [anon_sym_PERCENT] = ACTIONS(5012), + [anon_sym_CARET] = ACTIONS(5012), + [anon_sym_PIPE] = ACTIONS(5014), + [anon_sym_AMP] = ACTIONS(5014), + [anon_sym_LT_LT] = ACTIONS(5012), + [anon_sym_GT_GT] = ACTIONS(5014), + [anon_sym_GT_GT_GT] = ACTIONS(5012), + [anon_sym_EQ_EQ] = ACTIONS(5012), + [anon_sym_BANG_EQ] = ACTIONS(5012), + [anon_sym_GT_EQ] = ACTIONS(5012), + [anon_sym_LT_EQ] = ACTIONS(5012), + [anon_sym_DOT] = ACTIONS(5014), + [anon_sym_EQ_GT] = ACTIONS(5012), + [anon_sym_switch] = ACTIONS(5012), + [anon_sym_when] = ACTIONS(5012), + [anon_sym_DOT_DOT] = ACTIONS(5012), + [anon_sym_and] = ACTIONS(5012), + [anon_sym_or] = ACTIONS(5012), + [anon_sym_AMP_AMP] = ACTIONS(5012), + [anon_sym_PIPE_PIPE] = ACTIONS(5012), + [anon_sym_QMARK_QMARK] = ACTIONS(5012), + [anon_sym_on] = ACTIONS(5012), + [anon_sym_equals] = ACTIONS(5012), + [anon_sym_by] = ACTIONS(5012), + [anon_sym_as] = ACTIONS(5012), + [anon_sym_is] = ACTIONS(5012), + [anon_sym_DASH_GT] = ACTIONS(5012), + [anon_sym_with] = ACTIONS(5012), + [aux_sym_preproc_if_token3] = ACTIONS(5012), + [aux_sym_preproc_else_token1] = ACTIONS(5012), + [aux_sym_preproc_elif_token1] = ACTIONS(5012), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -497373,26 +496844,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3366] = { - [sym__name] = STATE(6430), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(4096), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(4109), - [sym_type] = STATE(7318), - [sym_implicit_type] = STATE(7201), - [sym_array_type] = STATE(6648), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(6650), - [sym_pointer_type] = STATE(6650), - [sym__pointer_base_type] = STATE(7446), - [sym_function_pointer_type] = STATE(6650), - [sym_function_pointer_parameter] = STATE(7574), - [sym_ref_type] = STATE(7266), - [sym__ref_base_type] = STATE(7583), - [sym_scoped_type] = STATE(7266), - [sym_tuple_type] = STATE(6474), - [sym_identifier] = STATE(4087), - [sym__reserved_identifier] = STATE(3691), [sym_preproc_region] = STATE(3366), [sym_preproc_endregion] = STATE(3366), [sym_preproc_line] = STATE(3366), @@ -497402,36 +496853,56 @@ 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), - [aux_sym_function_pointer_type_repeat1] = STATE(3670), - [sym__identifier_token] = ACTIONS(2967), - [anon_sym_alias] = ACTIONS(2971), - [anon_sym_global] = ACTIONS(2971), - [anon_sym_LPAREN] = ACTIONS(2979), - [anon_sym_ref] = ACTIONS(5472), - [anon_sym_delegate] = ACTIONS(5030), - [anon_sym_file] = ACTIONS(2971), - [anon_sym_in] = ACTIONS(5474), - [anon_sym_out] = ACTIONS(5474), - [anon_sym_where] = ACTIONS(2971), - [anon_sym_notnull] = ACTIONS(2971), - [anon_sym_unmanaged] = ACTIONS(2971), - [anon_sym_scoped] = ACTIONS(5476), - [anon_sym_var] = ACTIONS(4737), - [sym_predefined_type] = ACTIONS(5478), - [anon_sym_yield] = ACTIONS(2971), - [anon_sym_when] = ACTIONS(2971), - [anon_sym_from] = ACTIONS(2971), - [anon_sym_into] = ACTIONS(2971), - [anon_sym_join] = ACTIONS(2971), - [anon_sym_on] = ACTIONS(2971), - [anon_sym_equals] = ACTIONS(2971), - [anon_sym_let] = ACTIONS(2971), - [anon_sym_orderby] = ACTIONS(2971), - [anon_sym_ascending] = ACTIONS(2971), - [anon_sym_descending] = ACTIONS(2971), - [anon_sym_group] = ACTIONS(2971), - [anon_sym_by] = ACTIONS(2971), - [anon_sym_select] = ACTIONS(2971), + [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), + [aux_sym_preproc_if_token3] = ACTIONS(5130), + [aux_sym_preproc_else_token1] = ACTIONS(5130), + [aux_sym_preproc_elif_token1] = ACTIONS(5130), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -497444,26 +496915,26 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3367] = { - [sym_parameter_list] = STATE(7311), - [sym__name] = STATE(4390), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(4096), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(4109), - [sym_type] = STATE(5915), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym__lambda_parameters] = STATE(7489), - [sym_identifier] = STATE(5763), - [sym__reserved_identifier] = STATE(3691), + [sym_parameter_list] = STATE(7531), + [sym__name] = STATE(4369), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(4068), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(4073), + [sym_type] = STATE(5906), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym__lambda_parameters] = STATE(7609), + [sym_identifier] = STATE(5764), + [sym__reserved_identifier] = STATE(3654), [sym_preproc_region] = STATE(3367), [sym_preproc_endregion] = STATE(3367), [sym_preproc_line] = STATE(3367), @@ -497473,36 +496944,36 @@ 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), - [aux_sym__lambda_expression_init_repeat1] = STATE(5863), - [sym__identifier_token] = ACTIONS(2967), - [anon_sym_alias] = ACTIONS(2971), - [anon_sym_global] = ACTIONS(2971), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LPAREN] = ACTIONS(3794), - [anon_sym_ref] = ACTIONS(3452), - [anon_sym_delegate] = ACTIONS(5480), - [anon_sym_async] = ACTIONS(1047), - [anon_sym_file] = ACTIONS(2971), - [anon_sym_where] = ACTIONS(2971), - [anon_sym_notnull] = ACTIONS(2971), - [anon_sym_unmanaged] = ACTIONS(2971), - [anon_sym_scoped] = ACTIONS(2997), - [anon_sym_var] = ACTIONS(2999), - [sym_predefined_type] = ACTIONS(3001), - [anon_sym_yield] = ACTIONS(2971), - [anon_sym_when] = ACTIONS(2971), - [anon_sym_from] = ACTIONS(2971), - [anon_sym_into] = ACTIONS(2971), - [anon_sym_join] = ACTIONS(2971), - [anon_sym_on] = ACTIONS(2971), - [anon_sym_equals] = ACTIONS(2971), - [anon_sym_let] = ACTIONS(2971), - [anon_sym_orderby] = ACTIONS(2971), - [anon_sym_ascending] = ACTIONS(2971), - [anon_sym_descending] = ACTIONS(2971), - [anon_sym_group] = ACTIONS(2971), - [anon_sym_by] = ACTIONS(2971), - [anon_sym_select] = ACTIONS(2971), + [aux_sym__lambda_expression_init_repeat1] = STATE(5828), + [sym__identifier_token] = ACTIONS(2965), + [anon_sym_alias] = ACTIONS(2969), + [anon_sym_global] = ACTIONS(2969), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LPAREN] = ACTIONS(3786), + [anon_sym_ref] = ACTIONS(3436), + [anon_sym_delegate] = ACTIONS(5466), + [anon_sym_async] = ACTIONS(1045), + [anon_sym_file] = ACTIONS(2969), + [anon_sym_where] = ACTIONS(2969), + [anon_sym_notnull] = ACTIONS(2969), + [anon_sym_unmanaged] = ACTIONS(2969), + [anon_sym_scoped] = ACTIONS(2993), + [anon_sym_var] = ACTIONS(2995), + [sym_predefined_type] = ACTIONS(2997), + [anon_sym_yield] = ACTIONS(2969), + [anon_sym_when] = ACTIONS(2969), + [anon_sym_from] = ACTIONS(2969), + [anon_sym_into] = ACTIONS(2969), + [anon_sym_join] = ACTIONS(2969), + [anon_sym_on] = ACTIONS(2969), + [anon_sym_equals] = ACTIONS(2969), + [anon_sym_let] = ACTIONS(2969), + [anon_sym_orderby] = ACTIONS(2969), + [anon_sym_ascending] = ACTIONS(2969), + [anon_sym_descending] = ACTIONS(2969), + [anon_sym_group] = ACTIONS(2969), + [anon_sym_by] = ACTIONS(2969), + [anon_sym_select] = ACTIONS(2969), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -497524,56 +496995,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3368), [sym_preproc_define] = STATE(3368), [sym_preproc_undef] = STATE(3368), - [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(5112), + [anon_sym_LBRACK] = ACTIONS(5112), + [anon_sym_COLON] = ACTIONS(5112), + [anon_sym_COMMA] = ACTIONS(5112), + [anon_sym_RBRACK] = ACTIONS(5112), + [anon_sym_LPAREN] = ACTIONS(5112), + [anon_sym_RPAREN] = ACTIONS(5112), + [anon_sym_RBRACE] = ACTIONS(5112), + [anon_sym_LT] = ACTIONS(5114), + [anon_sym_GT] = ACTIONS(5114), + [anon_sym_in] = ACTIONS(5112), + [anon_sym_QMARK] = ACTIONS(5114), + [anon_sym_BANG] = ACTIONS(5114), + [anon_sym_PLUS_PLUS] = ACTIONS(5112), + [anon_sym_DASH_DASH] = ACTIONS(5112), + [anon_sym_PLUS] = ACTIONS(5114), + [anon_sym_DASH] = ACTIONS(5114), + [anon_sym_STAR] = ACTIONS(5112), + [anon_sym_SLASH] = ACTIONS(5114), + [anon_sym_PERCENT] = ACTIONS(5112), + [anon_sym_CARET] = ACTIONS(5112), + [anon_sym_PIPE] = ACTIONS(5114), + [anon_sym_AMP] = ACTIONS(5114), + [anon_sym_LT_LT] = ACTIONS(5112), + [anon_sym_GT_GT] = ACTIONS(5114), + [anon_sym_GT_GT_GT] = ACTIONS(5112), + [anon_sym_EQ_EQ] = ACTIONS(5112), + [anon_sym_BANG_EQ] = ACTIONS(5112), + [anon_sym_GT_EQ] = ACTIONS(5112), + [anon_sym_LT_EQ] = ACTIONS(5112), + [anon_sym_DOT] = ACTIONS(5114), + [anon_sym_EQ_GT] = ACTIONS(5112), + [anon_sym_switch] = ACTIONS(5112), + [anon_sym_when] = ACTIONS(5112), + [anon_sym_DOT_DOT] = ACTIONS(5112), + [anon_sym_and] = ACTIONS(5112), + [anon_sym_or] = ACTIONS(5112), + [anon_sym_AMP_AMP] = ACTIONS(5112), + [anon_sym_PIPE_PIPE] = ACTIONS(5112), + [anon_sym_QMARK_QMARK] = ACTIONS(5112), + [anon_sym_on] = ACTIONS(5112), + [anon_sym_equals] = ACTIONS(5112), + [anon_sym_by] = ACTIONS(5112), + [anon_sym_as] = ACTIONS(5112), + [anon_sym_is] = ACTIONS(5112), + [anon_sym_DASH_GT] = ACTIONS(5112), + [anon_sym_with] = ACTIONS(5112), + [aux_sym_preproc_if_token3] = ACTIONS(5112), + [aux_sym_preproc_else_token1] = ACTIONS(5112), + [aux_sym_preproc_elif_token1] = ACTIONS(5112), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -497586,6 +497057,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3369] = { + [sym__name] = STATE(5130), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(4068), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_ref_type] = STATE(2331), + [sym__scoped_base_type] = STATE(2339), + [sym_identifier] = STATE(4370), + [sym__reserved_identifier] = STATE(2168), [sym_preproc_region] = STATE(3369), [sym_preproc_endregion] = STATE(3369), [sym_preproc_line] = STATE(3369), @@ -497595,56 +497075,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3369), [sym_preproc_define] = STATE(3369), [sym_preproc_undef] = STATE(3369), - [anon_sym_SEMI] = ACTIONS(5086), - [anon_sym_LBRACK] = ACTIONS(5086), - [anon_sym_COLON] = ACTIONS(5086), - [anon_sym_COMMA] = ACTIONS(5086), - [anon_sym_RBRACK] = ACTIONS(5086), - [anon_sym_LPAREN] = ACTIONS(5086), - [anon_sym_RPAREN] = ACTIONS(5086), - [anon_sym_RBRACE] = ACTIONS(5086), - [anon_sym_LT] = ACTIONS(5088), - [anon_sym_GT] = ACTIONS(5088), - [anon_sym_in] = ACTIONS(5086), - [anon_sym_QMARK] = ACTIONS(5088), - [anon_sym_BANG] = ACTIONS(5088), - [anon_sym_PLUS_PLUS] = ACTIONS(5086), - [anon_sym_DASH_DASH] = ACTIONS(5086), - [anon_sym_PLUS] = ACTIONS(5088), - [anon_sym_DASH] = ACTIONS(5088), - [anon_sym_STAR] = ACTIONS(5086), - [anon_sym_SLASH] = ACTIONS(5088), - [anon_sym_PERCENT] = ACTIONS(5086), - [anon_sym_CARET] = ACTIONS(5086), - [anon_sym_PIPE] = ACTIONS(5088), - [anon_sym_AMP] = ACTIONS(5088), - [anon_sym_LT_LT] = ACTIONS(5086), - [anon_sym_GT_GT] = ACTIONS(5088), - [anon_sym_GT_GT_GT] = ACTIONS(5086), - [anon_sym_EQ_EQ] = ACTIONS(5086), - [anon_sym_BANG_EQ] = ACTIONS(5086), - [anon_sym_GT_EQ] = ACTIONS(5086), - [anon_sym_LT_EQ] = ACTIONS(5086), - [anon_sym_DOT] = ACTIONS(5088), - [anon_sym_EQ_GT] = ACTIONS(5086), - [anon_sym_switch] = ACTIONS(5086), - [anon_sym_when] = ACTIONS(5086), - [anon_sym_DOT_DOT] = ACTIONS(5086), - [anon_sym_and] = ACTIONS(5086), - [anon_sym_or] = ACTIONS(5086), - [anon_sym_AMP_AMP] = ACTIONS(5086), - [anon_sym_PIPE_PIPE] = ACTIONS(5086), - [anon_sym_QMARK_QMARK] = ACTIONS(5086), - [anon_sym_on] = ACTIONS(5086), - [anon_sym_equals] = ACTIONS(5086), - [anon_sym_by] = ACTIONS(5086), - [anon_sym_as] = ACTIONS(5086), - [anon_sym_is] = ACTIONS(5086), - [anon_sym_DASH_GT] = ACTIONS(5086), - [anon_sym_with] = ACTIONS(5086), - [aux_sym_preproc_if_token3] = ACTIONS(5086), - [aux_sym_preproc_else_token1] = ACTIONS(5086), - [aux_sym_preproc_elif_token1] = ACTIONS(5086), + [sym__identifier_token] = ACTIONS(3565), + [anon_sym_alias] = ACTIONS(3569), + [anon_sym_global] = ACTIONS(3569), + [anon_sym_EQ] = ACTIONS(3431), + [anon_sym_LBRACK] = ACTIONS(3429), + [anon_sym_COMMA] = ACTIONS(3429), + [anon_sym_LPAREN] = ACTIONS(3573), + [anon_sym_RPAREN] = ACTIONS(3429), + [anon_sym_ref] = ACTIONS(2689), + [anon_sym_delegate] = ACTIONS(2689), + [anon_sym_file] = ACTIONS(3569), + [anon_sym_readonly] = ACTIONS(2689), + [anon_sym_LT] = ACTIONS(3429), + [anon_sym_in] = ACTIONS(2689), + [anon_sym_out] = ACTIONS(2689), + [anon_sym_where] = ACTIONS(3569), + [anon_sym_QMARK] = ACTIONS(3429), + [anon_sym_notnull] = ACTIONS(3569), + [anon_sym_unmanaged] = ACTIONS(3569), + [anon_sym_STAR] = ACTIONS(3429), + [anon_sym_this] = ACTIONS(2689), + [anon_sym_DOT] = ACTIONS(3429), + [anon_sym_scoped] = ACTIONS(3569), + [anon_sym_EQ_GT] = ACTIONS(3429), + [anon_sym_COLON_COLON] = ACTIONS(3429), + [anon_sym_var] = ACTIONS(3569), + [sym_predefined_type] = ACTIONS(2689), + [anon_sym_yield] = ACTIONS(3569), + [anon_sym_when] = ACTIONS(3569), + [anon_sym_from] = ACTIONS(3569), + [anon_sym_into] = ACTIONS(3569), + [anon_sym_join] = ACTIONS(3569), + [anon_sym_on] = ACTIONS(3569), + [anon_sym_equals] = ACTIONS(3569), + [anon_sym_let] = ACTIONS(3569), + [anon_sym_orderby] = ACTIONS(3569), + [anon_sym_ascending] = ACTIONS(3569), + [anon_sym_descending] = ACTIONS(3569), + [anon_sym_group] = ACTIONS(3569), + [anon_sym_by] = ACTIONS(3569), + [anon_sym_select] = ACTIONS(3569), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -497657,26 +497128,26 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3370] = { - [sym__name] = STATE(6430), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(4096), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(4109), - [sym_type] = STATE(7318), - [sym_implicit_type] = STATE(7201), - [sym_array_type] = STATE(6648), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(6650), - [sym_pointer_type] = STATE(6650), - [sym__pointer_base_type] = STATE(7446), - [sym_function_pointer_type] = STATE(6650), - [sym_function_pointer_parameter] = STATE(7574), - [sym_ref_type] = STATE(7266), - [sym__ref_base_type] = STATE(7583), - [sym_scoped_type] = STATE(7266), - [sym_tuple_type] = STATE(6474), - [sym_identifier] = STATE(4087), - [sym__reserved_identifier] = STATE(3691), + [sym__name] = STATE(6381), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(4068), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(4073), + [sym_type] = STATE(7394), + [sym_implicit_type] = STATE(7156), + [sym_array_type] = STATE(6671), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(6672), + [sym_pointer_type] = STATE(6672), + [sym__pointer_base_type] = STATE(7421), + [sym_function_pointer_type] = STATE(6672), + [sym_function_pointer_parameter] = STATE(7377), + [sym_ref_type] = STATE(7035), + [sym__ref_base_type] = STATE(7387), + [sym_scoped_type] = STATE(7035), + [sym_tuple_type] = STATE(6553), + [sym_identifier] = STATE(4081), + [sym__reserved_identifier] = STATE(3654), [sym_preproc_region] = STATE(3370), [sym_preproc_endregion] = STATE(3370), [sym_preproc_line] = STATE(3370), @@ -497686,36 +497157,36 @@ 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), - [aux_sym_function_pointer_type_repeat1] = STATE(3499), - [sym__identifier_token] = ACTIONS(2967), - [anon_sym_alias] = ACTIONS(2971), - [anon_sym_global] = ACTIONS(2971), - [anon_sym_LPAREN] = ACTIONS(2979), - [anon_sym_ref] = ACTIONS(5472), - [anon_sym_delegate] = ACTIONS(5030), - [anon_sym_file] = ACTIONS(2971), - [anon_sym_in] = ACTIONS(5474), - [anon_sym_out] = ACTIONS(5474), - [anon_sym_where] = ACTIONS(2971), - [anon_sym_notnull] = ACTIONS(2971), - [anon_sym_unmanaged] = ACTIONS(2971), - [anon_sym_scoped] = ACTIONS(5476), - [anon_sym_var] = ACTIONS(4737), - [sym_predefined_type] = ACTIONS(5478), - [anon_sym_yield] = ACTIONS(2971), - [anon_sym_when] = ACTIONS(2971), - [anon_sym_from] = ACTIONS(2971), - [anon_sym_into] = ACTIONS(2971), - [anon_sym_join] = ACTIONS(2971), - [anon_sym_on] = ACTIONS(2971), - [anon_sym_equals] = ACTIONS(2971), - [anon_sym_let] = ACTIONS(2971), - [anon_sym_orderby] = ACTIONS(2971), - [anon_sym_ascending] = ACTIONS(2971), - [anon_sym_descending] = ACTIONS(2971), - [anon_sym_group] = ACTIONS(2971), - [anon_sym_by] = ACTIONS(2971), - [anon_sym_select] = ACTIONS(2971), + [aux_sym_function_pointer_type_repeat1] = STATE(3371), + [sym__identifier_token] = ACTIONS(2965), + [anon_sym_alias] = ACTIONS(2969), + [anon_sym_global] = ACTIONS(2969), + [anon_sym_LPAREN] = ACTIONS(2977), + [anon_sym_ref] = ACTIONS(5450), + [anon_sym_delegate] = ACTIONS(5172), + [anon_sym_file] = ACTIONS(2969), + [anon_sym_in] = ACTIONS(5452), + [anon_sym_out] = ACTIONS(5452), + [anon_sym_where] = ACTIONS(2969), + [anon_sym_notnull] = ACTIONS(2969), + [anon_sym_unmanaged] = ACTIONS(2969), + [anon_sym_scoped] = ACTIONS(5454), + [anon_sym_var] = ACTIONS(4705), + [sym_predefined_type] = ACTIONS(5456), + [anon_sym_yield] = ACTIONS(2969), + [anon_sym_when] = ACTIONS(2969), + [anon_sym_from] = ACTIONS(2969), + [anon_sym_into] = ACTIONS(2969), + [anon_sym_join] = ACTIONS(2969), + [anon_sym_on] = ACTIONS(2969), + [anon_sym_equals] = ACTIONS(2969), + [anon_sym_let] = ACTIONS(2969), + [anon_sym_orderby] = ACTIONS(2969), + [anon_sym_ascending] = ACTIONS(2969), + [anon_sym_descending] = ACTIONS(2969), + [anon_sym_group] = ACTIONS(2969), + [anon_sym_by] = ACTIONS(2969), + [anon_sym_select] = ACTIONS(2969), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -497728,6 +497199,26 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3371] = { + [sym__name] = STATE(6381), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(4068), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(4073), + [sym_type] = STATE(7315), + [sym_implicit_type] = STATE(7156), + [sym_array_type] = STATE(6671), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(6672), + [sym_pointer_type] = STATE(6672), + [sym__pointer_base_type] = STATE(7421), + [sym_function_pointer_type] = STATE(6672), + [sym_function_pointer_parameter] = STATE(7377), + [sym_ref_type] = STATE(7035), + [sym__ref_base_type] = STATE(7387), + [sym_scoped_type] = STATE(7035), + [sym_tuple_type] = STATE(6553), + [sym_identifier] = STATE(4081), + [sym__reserved_identifier] = STATE(3654), [sym_preproc_region] = STATE(3371), [sym_preproc_endregion] = STATE(3371), [sym_preproc_line] = STATE(3371), @@ -497737,56 +497228,36 @@ 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(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(3667), + [sym__identifier_token] = ACTIONS(2965), + [anon_sym_alias] = ACTIONS(2969), + [anon_sym_global] = ACTIONS(2969), + [anon_sym_LPAREN] = ACTIONS(2977), + [anon_sym_ref] = ACTIONS(5450), + [anon_sym_delegate] = ACTIONS(5172), + [anon_sym_file] = ACTIONS(2969), + [anon_sym_in] = ACTIONS(5452), + [anon_sym_out] = ACTIONS(5452), + [anon_sym_where] = ACTIONS(2969), + [anon_sym_notnull] = ACTIONS(2969), + [anon_sym_unmanaged] = ACTIONS(2969), + [anon_sym_scoped] = ACTIONS(5454), + [anon_sym_var] = ACTIONS(4705), + [sym_predefined_type] = ACTIONS(5456), + [anon_sym_yield] = ACTIONS(2969), + [anon_sym_when] = ACTIONS(2969), + [anon_sym_from] = ACTIONS(2969), + [anon_sym_into] = ACTIONS(2969), + [anon_sym_join] = ACTIONS(2969), + [anon_sym_on] = ACTIONS(2969), + [anon_sym_equals] = ACTIONS(2969), + [anon_sym_let] = ACTIONS(2969), + [anon_sym_orderby] = ACTIONS(2969), + [anon_sym_ascending] = ACTIONS(2969), + [anon_sym_descending] = ACTIONS(2969), + [anon_sym_group] = ACTIONS(2969), + [anon_sym_by] = ACTIONS(2969), + [anon_sym_select] = ACTIONS(2969), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -497799,26 +497270,26 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3372] = { - [sym__name] = STATE(6430), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(4096), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(4109), - [sym_type] = STATE(7609), - [sym_implicit_type] = STATE(7201), - [sym_array_type] = STATE(6648), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(6650), - [sym_pointer_type] = STATE(6650), - [sym__pointer_base_type] = STATE(7446), - [sym_function_pointer_type] = STATE(6650), - [sym_function_pointer_parameter] = STATE(7574), - [sym_ref_type] = STATE(7266), - [sym__ref_base_type] = STATE(7583), - [sym_scoped_type] = STATE(7266), - [sym_tuple_type] = STATE(6474), - [sym_identifier] = STATE(4087), - [sym__reserved_identifier] = STATE(3691), + [sym__name] = STATE(6381), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(4068), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(4073), + [sym_type] = STATE(7315), + [sym_implicit_type] = STATE(7156), + [sym_array_type] = STATE(6671), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(6672), + [sym_pointer_type] = STATE(6672), + [sym__pointer_base_type] = STATE(7421), + [sym_function_pointer_type] = STATE(6672), + [sym_function_pointer_parameter] = STATE(7377), + [sym_ref_type] = STATE(7035), + [sym__ref_base_type] = STATE(7387), + [sym_scoped_type] = STATE(7035), + [sym_tuple_type] = STATE(6553), + [sym_identifier] = STATE(4081), + [sym__reserved_identifier] = STATE(3654), [sym_preproc_region] = STATE(3372), [sym_preproc_endregion] = STATE(3372), [sym_preproc_line] = STATE(3372), @@ -497829,35 +497300,35 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_define] = STATE(3372), [sym_preproc_undef] = STATE(3372), [aux_sym_function_pointer_type_repeat1] = STATE(3374), - [sym__identifier_token] = ACTIONS(2967), - [anon_sym_alias] = ACTIONS(2971), - [anon_sym_global] = ACTIONS(2971), - [anon_sym_LPAREN] = ACTIONS(2979), - [anon_sym_ref] = ACTIONS(5472), - [anon_sym_delegate] = ACTIONS(5030), - [anon_sym_file] = ACTIONS(2971), - [anon_sym_in] = ACTIONS(5474), - [anon_sym_out] = ACTIONS(5474), - [anon_sym_where] = ACTIONS(2971), - [anon_sym_notnull] = ACTIONS(2971), - [anon_sym_unmanaged] = ACTIONS(2971), - [anon_sym_scoped] = ACTIONS(5476), - [anon_sym_var] = ACTIONS(4737), - [sym_predefined_type] = ACTIONS(5478), - [anon_sym_yield] = ACTIONS(2971), - [anon_sym_when] = ACTIONS(2971), - [anon_sym_from] = ACTIONS(2971), - [anon_sym_into] = ACTIONS(2971), - [anon_sym_join] = ACTIONS(2971), - [anon_sym_on] = ACTIONS(2971), - [anon_sym_equals] = ACTIONS(2971), - [anon_sym_let] = ACTIONS(2971), - [anon_sym_orderby] = ACTIONS(2971), - [anon_sym_ascending] = ACTIONS(2971), - [anon_sym_descending] = ACTIONS(2971), - [anon_sym_group] = ACTIONS(2971), - [anon_sym_by] = ACTIONS(2971), - [anon_sym_select] = ACTIONS(2971), + [sym__identifier_token] = ACTIONS(2965), + [anon_sym_alias] = ACTIONS(2969), + [anon_sym_global] = ACTIONS(2969), + [anon_sym_LPAREN] = ACTIONS(2977), + [anon_sym_ref] = ACTIONS(5450), + [anon_sym_delegate] = ACTIONS(5172), + [anon_sym_file] = ACTIONS(2969), + [anon_sym_in] = ACTIONS(5452), + [anon_sym_out] = ACTIONS(5452), + [anon_sym_where] = ACTIONS(2969), + [anon_sym_notnull] = ACTIONS(2969), + [anon_sym_unmanaged] = ACTIONS(2969), + [anon_sym_scoped] = ACTIONS(5454), + [anon_sym_var] = ACTIONS(4705), + [sym_predefined_type] = ACTIONS(5456), + [anon_sym_yield] = ACTIONS(2969), + [anon_sym_when] = ACTIONS(2969), + [anon_sym_from] = ACTIONS(2969), + [anon_sym_into] = ACTIONS(2969), + [anon_sym_join] = ACTIONS(2969), + [anon_sym_on] = ACTIONS(2969), + [anon_sym_equals] = ACTIONS(2969), + [anon_sym_let] = ACTIONS(2969), + [anon_sym_orderby] = ACTIONS(2969), + [anon_sym_ascending] = ACTIONS(2969), + [anon_sym_descending] = ACTIONS(2969), + [anon_sym_group] = ACTIONS(2969), + [anon_sym_by] = ACTIONS(2969), + [anon_sym_select] = ACTIONS(2969), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -497879,88 +497350,88 @@ 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(5058), - [anon_sym_LBRACK] = ACTIONS(5058), - [anon_sym_COLON] = ACTIONS(5058), - [anon_sym_COMMA] = ACTIONS(5058), - [anon_sym_RBRACK] = ACTIONS(5058), - [anon_sym_LPAREN] = ACTIONS(5058), - [anon_sym_RPAREN] = ACTIONS(5058), - [anon_sym_RBRACE] = ACTIONS(5058), - [anon_sym_LT] = ACTIONS(5060), - [anon_sym_GT] = ACTIONS(5060), - [anon_sym_in] = ACTIONS(5058), - [anon_sym_QMARK] = ACTIONS(5060), - [anon_sym_BANG] = ACTIONS(5060), - [anon_sym_PLUS_PLUS] = ACTIONS(5058), - [anon_sym_DASH_DASH] = ACTIONS(5058), - [anon_sym_PLUS] = ACTIONS(5060), - [anon_sym_DASH] = ACTIONS(5060), - [anon_sym_STAR] = ACTIONS(5058), - [anon_sym_SLASH] = ACTIONS(5060), - [anon_sym_PERCENT] = ACTIONS(5058), - [anon_sym_CARET] = ACTIONS(5058), - [anon_sym_PIPE] = ACTIONS(5060), - [anon_sym_AMP] = ACTIONS(5060), - [anon_sym_LT_LT] = ACTIONS(5058), - [anon_sym_GT_GT] = ACTIONS(5060), - [anon_sym_GT_GT_GT] = ACTIONS(5058), - [anon_sym_EQ_EQ] = ACTIONS(5058), - [anon_sym_BANG_EQ] = ACTIONS(5058), - [anon_sym_GT_EQ] = ACTIONS(5058), - [anon_sym_LT_EQ] = ACTIONS(5058), - [anon_sym_DOT] = ACTIONS(5060), - [anon_sym_EQ_GT] = ACTIONS(5058), - [anon_sym_switch] = ACTIONS(5058), - [anon_sym_when] = ACTIONS(5058), - [anon_sym_DOT_DOT] = ACTIONS(5058), - [anon_sym_and] = ACTIONS(5058), - [anon_sym_or] = ACTIONS(5058), - [anon_sym_AMP_AMP] = ACTIONS(5058), - [anon_sym_PIPE_PIPE] = ACTIONS(5058), - [anon_sym_QMARK_QMARK] = ACTIONS(5058), - [anon_sym_on] = ACTIONS(5058), - [anon_sym_equals] = ACTIONS(5058), - [anon_sym_by] = ACTIONS(5058), - [anon_sym_as] = ACTIONS(5058), - [anon_sym_is] = ACTIONS(5058), - [anon_sym_DASH_GT] = ACTIONS(5058), - [anon_sym_with] = ACTIONS(5058), - [aux_sym_preproc_if_token3] = ACTIONS(5058), - [aux_sym_preproc_else_token1] = ACTIONS(5058), - [aux_sym_preproc_elif_token1] = ACTIONS(5058), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_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(5468), + [anon_sym_LBRACK] = ACTIONS(4811), + [anon_sym_COLON] = ACTIONS(4811), + [anon_sym_COMMA] = ACTIONS(4811), + [anon_sym_LPAREN] = ACTIONS(4811), + [anon_sym_LT] = ACTIONS(4813), + [anon_sym_GT] = ACTIONS(4813), + [anon_sym_QMARK] = ACTIONS(4813), + [anon_sym_BANG] = ACTIONS(4813), + [anon_sym_PLUS_PLUS] = ACTIONS(4811), + [anon_sym_DASH_DASH] = ACTIONS(4811), + [anon_sym_PLUS] = ACTIONS(4813), + [anon_sym_DASH] = ACTIONS(4813), + [anon_sym_STAR] = ACTIONS(4813), + [anon_sym_SLASH] = ACTIONS(4813), + [anon_sym_PERCENT] = ACTIONS(4813), + [anon_sym_CARET] = ACTIONS(4813), + [anon_sym_PIPE] = ACTIONS(4813), + [anon_sym_AMP] = ACTIONS(4813), + [anon_sym_LT_LT] = ACTIONS(4813), + [anon_sym_GT_GT] = ACTIONS(4813), + [anon_sym_GT_GT_GT] = ACTIONS(4813), + [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(4813), + [anon_sym_switch] = ACTIONS(4811), + [anon_sym_DOT_DOT] = ACTIONS(4811), + [anon_sym_PLUS_EQ] = ACTIONS(5470), + [anon_sym_DASH_EQ] = ACTIONS(5470), + [anon_sym_STAR_EQ] = ACTIONS(5470), + [anon_sym_SLASH_EQ] = ACTIONS(5470), + [anon_sym_PERCENT_EQ] = ACTIONS(5470), + [anon_sym_AMP_EQ] = ACTIONS(5470), + [anon_sym_CARET_EQ] = ACTIONS(5470), + [anon_sym_PIPE_EQ] = ACTIONS(5470), + [anon_sym_LT_LT_EQ] = ACTIONS(5470), + [anon_sym_GT_GT_EQ] = ACTIONS(5470), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(5470), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(5470), + [anon_sym_AMP_AMP] = ACTIONS(4811), + [anon_sym_PIPE_PIPE] = ACTIONS(4811), + [anon_sym_QMARK_QMARK] = ACTIONS(4813), + [anon_sym_into] = 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_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_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(4811), }, [3374] = { - [sym__name] = STATE(6430), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(4096), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(4109), - [sym_type] = STATE(7372), - [sym_implicit_type] = STATE(7201), - [sym_array_type] = STATE(6648), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(6650), - [sym_pointer_type] = STATE(6650), - [sym__pointer_base_type] = STATE(7446), - [sym_function_pointer_type] = STATE(6650), - [sym_function_pointer_parameter] = STATE(7574), - [sym_ref_type] = STATE(7266), - [sym__ref_base_type] = STATE(7583), - [sym_scoped_type] = STATE(7266), - [sym_tuple_type] = STATE(6474), - [sym_identifier] = STATE(4087), - [sym__reserved_identifier] = STATE(3691), + [sym__name] = STATE(6381), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(4068), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(4073), + [sym_type] = STATE(7373), + [sym_implicit_type] = STATE(7156), + [sym_array_type] = STATE(6671), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(6672), + [sym_pointer_type] = STATE(6672), + [sym__pointer_base_type] = STATE(7421), + [sym_function_pointer_type] = STATE(6672), + [sym_function_pointer_parameter] = STATE(7377), + [sym_ref_type] = STATE(7035), + [sym__ref_base_type] = STATE(7387), + [sym_scoped_type] = STATE(7035), + [sym_tuple_type] = STATE(6553), + [sym_identifier] = STATE(4081), + [sym__reserved_identifier] = STATE(3654), [sym_preproc_region] = STATE(3374), [sym_preproc_endregion] = STATE(3374), [sym_preproc_line] = STATE(3374), @@ -497970,36 +497441,36 @@ 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), - [aux_sym_function_pointer_type_repeat1] = STATE(3670), - [sym__identifier_token] = ACTIONS(2967), - [anon_sym_alias] = ACTIONS(2971), - [anon_sym_global] = ACTIONS(2971), - [anon_sym_LPAREN] = ACTIONS(2979), - [anon_sym_ref] = ACTIONS(5472), - [anon_sym_delegate] = ACTIONS(5030), - [anon_sym_file] = ACTIONS(2971), - [anon_sym_in] = ACTIONS(5474), - [anon_sym_out] = ACTIONS(5474), - [anon_sym_where] = ACTIONS(2971), - [anon_sym_notnull] = ACTIONS(2971), - [anon_sym_unmanaged] = ACTIONS(2971), - [anon_sym_scoped] = ACTIONS(5476), - [anon_sym_var] = ACTIONS(4737), - [sym_predefined_type] = ACTIONS(5478), - [anon_sym_yield] = ACTIONS(2971), - [anon_sym_when] = ACTIONS(2971), - [anon_sym_from] = ACTIONS(2971), - [anon_sym_into] = ACTIONS(2971), - [anon_sym_join] = ACTIONS(2971), - [anon_sym_on] = ACTIONS(2971), - [anon_sym_equals] = ACTIONS(2971), - [anon_sym_let] = ACTIONS(2971), - [anon_sym_orderby] = ACTIONS(2971), - [anon_sym_ascending] = ACTIONS(2971), - [anon_sym_descending] = ACTIONS(2971), - [anon_sym_group] = ACTIONS(2971), - [anon_sym_by] = ACTIONS(2971), - [anon_sym_select] = ACTIONS(2971), + [aux_sym_function_pointer_type_repeat1] = STATE(3667), + [sym__identifier_token] = ACTIONS(2965), + [anon_sym_alias] = ACTIONS(2969), + [anon_sym_global] = ACTIONS(2969), + [anon_sym_LPAREN] = ACTIONS(2977), + [anon_sym_ref] = ACTIONS(5450), + [anon_sym_delegate] = ACTIONS(5172), + [anon_sym_file] = ACTIONS(2969), + [anon_sym_in] = ACTIONS(5452), + [anon_sym_out] = ACTIONS(5452), + [anon_sym_where] = ACTIONS(2969), + [anon_sym_notnull] = ACTIONS(2969), + [anon_sym_unmanaged] = ACTIONS(2969), + [anon_sym_scoped] = ACTIONS(5454), + [anon_sym_var] = ACTIONS(4705), + [sym_predefined_type] = ACTIONS(5456), + [anon_sym_yield] = ACTIONS(2969), + [anon_sym_when] = ACTIONS(2969), + [anon_sym_from] = ACTIONS(2969), + [anon_sym_into] = ACTIONS(2969), + [anon_sym_join] = ACTIONS(2969), + [anon_sym_on] = ACTIONS(2969), + [anon_sym_equals] = ACTIONS(2969), + [anon_sym_let] = ACTIONS(2969), + [anon_sym_orderby] = ACTIONS(2969), + [anon_sym_ascending] = ACTIONS(2969), + [anon_sym_descending] = ACTIONS(2969), + [anon_sym_group] = ACTIONS(2969), + [anon_sym_by] = ACTIONS(2969), + [anon_sym_select] = ACTIONS(2969), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -498012,26 +497483,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3375] = { - [sym__name] = STATE(6430), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(4096), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(4109), - [sym_type] = STATE(7372), - [sym_implicit_type] = STATE(7201), - [sym_array_type] = STATE(6648), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(6650), - [sym_pointer_type] = STATE(6650), - [sym__pointer_base_type] = STATE(7446), - [sym_function_pointer_type] = STATE(6650), - [sym_function_pointer_parameter] = STATE(7574), - [sym_ref_type] = STATE(7266), - [sym__ref_base_type] = STATE(7583), - [sym_scoped_type] = STATE(7266), - [sym_tuple_type] = STATE(6474), - [sym_identifier] = STATE(4087), - [sym__reserved_identifier] = STATE(3691), [sym_preproc_region] = STATE(3375), [sym_preproc_endregion] = STATE(3375), [sym_preproc_line] = STATE(3375), @@ -498041,36 +497492,56 @@ 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), - [aux_sym_function_pointer_type_repeat1] = STATE(3377), - [sym__identifier_token] = ACTIONS(2967), - [anon_sym_alias] = ACTIONS(2971), - [anon_sym_global] = ACTIONS(2971), - [anon_sym_LPAREN] = ACTIONS(2979), - [anon_sym_ref] = ACTIONS(5472), - [anon_sym_delegate] = ACTIONS(5030), - [anon_sym_file] = ACTIONS(2971), - [anon_sym_in] = ACTIONS(5474), - [anon_sym_out] = ACTIONS(5474), - [anon_sym_where] = ACTIONS(2971), - [anon_sym_notnull] = ACTIONS(2971), - [anon_sym_unmanaged] = ACTIONS(2971), - [anon_sym_scoped] = ACTIONS(5476), - [anon_sym_var] = ACTIONS(4737), - [sym_predefined_type] = ACTIONS(5478), - [anon_sym_yield] = ACTIONS(2971), - [anon_sym_when] = ACTIONS(2971), - [anon_sym_from] = ACTIONS(2971), - [anon_sym_into] = ACTIONS(2971), - [anon_sym_join] = ACTIONS(2971), - [anon_sym_on] = ACTIONS(2971), - [anon_sym_equals] = ACTIONS(2971), - [anon_sym_let] = ACTIONS(2971), - [anon_sym_orderby] = ACTIONS(2971), - [anon_sym_ascending] = ACTIONS(2971), - [anon_sym_descending] = ACTIONS(2971), - [anon_sym_group] = ACTIONS(2971), - [anon_sym_by] = ACTIONS(2971), - [anon_sym_select] = ACTIONS(2971), + [sym__identifier_token] = ACTIONS(5472), + [anon_sym_extern] = ACTIONS(5472), + [anon_sym_alias] = ACTIONS(5472), + [anon_sym_global] = ACTIONS(5472), + [anon_sym_unsafe] = ACTIONS(5472), + [anon_sym_static] = ACTIONS(5472), + [anon_sym_LBRACK] = ACTIONS(5474), + [anon_sym_RBRACE] = ACTIONS(5474), + [anon_sym_abstract] = ACTIONS(5472), + [anon_sym_async] = ACTIONS(5472), + [anon_sym_const] = ACTIONS(5472), + [anon_sym_file] = ACTIONS(5472), + [anon_sym_fixed] = ACTIONS(5472), + [anon_sym_internal] = ACTIONS(5472), + [anon_sym_new] = ACTIONS(5472), + [anon_sym_override] = ACTIONS(5472), + [anon_sym_partial] = ACTIONS(5472), + [anon_sym_private] = ACTIONS(5472), + [anon_sym_protected] = ACTIONS(5472), + [anon_sym_public] = ACTIONS(5472), + [anon_sym_readonly] = ACTIONS(5472), + [anon_sym_required] = ACTIONS(5472), + [anon_sym_sealed] = ACTIONS(5472), + [anon_sym_virtual] = ACTIONS(5472), + [anon_sym_volatile] = ACTIONS(5472), + [anon_sym_where] = ACTIONS(5472), + [anon_sym_notnull] = ACTIONS(5472), + [anon_sym_unmanaged] = ACTIONS(5472), + [anon_sym_get] = ACTIONS(5472), + [anon_sym_set] = ACTIONS(5472), + [anon_sym_add] = ACTIONS(5472), + [anon_sym_remove] = ACTIONS(5472), + [anon_sym_init] = ACTIONS(5472), + [anon_sym_scoped] = ACTIONS(5472), + [anon_sym_var] = ACTIONS(5472), + [anon_sym_yield] = ACTIONS(5472), + [anon_sym_when] = ACTIONS(5472), + [anon_sym_from] = ACTIONS(5472), + [anon_sym_into] = ACTIONS(5472), + [anon_sym_join] = ACTIONS(5472), + [anon_sym_on] = ACTIONS(5472), + [anon_sym_equals] = ACTIONS(5472), + [anon_sym_let] = ACTIONS(5472), + [anon_sym_orderby] = ACTIONS(5472), + [anon_sym_ascending] = ACTIONS(5472), + [anon_sym_descending] = ACTIONS(5472), + [anon_sym_group] = ACTIONS(5472), + [anon_sym_by] = ACTIONS(5472), + [anon_sym_select] = ACTIONS(5472), + [aux_sym_preproc_if_token1] = ACTIONS(5474), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -498092,56 +497563,56 @@ 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_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(2127), + [anon_sym_LBRACK] = ACTIONS(2127), + [anon_sym_COLON] = ACTIONS(2127), + [anon_sym_COMMA] = ACTIONS(2127), + [anon_sym_RBRACK] = ACTIONS(2127), + [anon_sym_LPAREN] = ACTIONS(2127), + [anon_sym_RPAREN] = ACTIONS(2127), + [anon_sym_RBRACE] = ACTIONS(2127), + [anon_sym_LT] = ACTIONS(2129), + [anon_sym_GT] = ACTIONS(2129), + [anon_sym_in] = ACTIONS(2127), + [anon_sym_QMARK] = ACTIONS(2129), + [anon_sym_BANG] = ACTIONS(2129), + [anon_sym_PLUS_PLUS] = ACTIONS(2127), + [anon_sym_DASH_DASH] = ACTIONS(2127), + [anon_sym_PLUS] = ACTIONS(2129), + [anon_sym_DASH] = ACTIONS(2129), + [anon_sym_STAR] = ACTIONS(2127), + [anon_sym_SLASH] = ACTIONS(2129), + [anon_sym_PERCENT] = ACTIONS(2127), + [anon_sym_CARET] = ACTIONS(2127), + [anon_sym_PIPE] = ACTIONS(2129), + [anon_sym_AMP] = ACTIONS(2129), + [anon_sym_LT_LT] = ACTIONS(2127), + [anon_sym_GT_GT] = ACTIONS(2129), + [anon_sym_GT_GT_GT] = ACTIONS(2127), + [anon_sym_EQ_EQ] = ACTIONS(2127), + [anon_sym_BANG_EQ] = ACTIONS(2127), + [anon_sym_GT_EQ] = ACTIONS(2127), + [anon_sym_LT_EQ] = ACTIONS(2127), + [anon_sym_DOT] = ACTIONS(2129), + [anon_sym_EQ_GT] = ACTIONS(2127), + [anon_sym_switch] = ACTIONS(2127), + [anon_sym_when] = ACTIONS(2127), + [anon_sym_DOT_DOT] = ACTIONS(2127), + [anon_sym_and] = ACTIONS(2127), + [anon_sym_or] = ACTIONS(2127), + [anon_sym_AMP_AMP] = ACTIONS(2127), + [anon_sym_PIPE_PIPE] = ACTIONS(2127), + [anon_sym_QMARK_QMARK] = ACTIONS(2127), + [anon_sym_on] = ACTIONS(2127), + [anon_sym_equals] = ACTIONS(2127), + [anon_sym_by] = ACTIONS(2127), + [anon_sym_as] = ACTIONS(2127), + [anon_sym_is] = ACTIONS(2127), + [anon_sym_DASH_GT] = ACTIONS(2127), + [anon_sym_with] = ACTIONS(2127), + [aux_sym_preproc_if_token3] = ACTIONS(2127), + [aux_sym_preproc_else_token1] = ACTIONS(2127), + [aux_sym_preproc_elif_token1] = ACTIONS(2127), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -498154,26 +497625,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3377] = { - [sym__name] = STATE(6430), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(4096), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(4109), - [sym_type] = STATE(7500), - [sym_implicit_type] = STATE(7201), - [sym_array_type] = STATE(6648), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(6650), - [sym_pointer_type] = STATE(6650), - [sym__pointer_base_type] = STATE(7446), - [sym_function_pointer_type] = STATE(6650), - [sym_function_pointer_parameter] = STATE(7574), - [sym_ref_type] = STATE(7266), - [sym__ref_base_type] = STATE(7583), - [sym_scoped_type] = STATE(7266), - [sym_tuple_type] = STATE(6474), - [sym_identifier] = STATE(4087), - [sym__reserved_identifier] = STATE(3691), [sym_preproc_region] = STATE(3377), [sym_preproc_endregion] = STATE(3377), [sym_preproc_line] = STATE(3377), @@ -498183,36 +497634,56 @@ 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), - [aux_sym_function_pointer_type_repeat1] = STATE(3670), - [sym__identifier_token] = ACTIONS(2967), - [anon_sym_alias] = ACTIONS(2971), - [anon_sym_global] = ACTIONS(2971), - [anon_sym_LPAREN] = ACTIONS(2979), - [anon_sym_ref] = ACTIONS(5472), - [anon_sym_delegate] = ACTIONS(5030), - [anon_sym_file] = ACTIONS(2971), - [anon_sym_in] = ACTIONS(5474), - [anon_sym_out] = ACTIONS(5474), - [anon_sym_where] = ACTIONS(2971), - [anon_sym_notnull] = ACTIONS(2971), - [anon_sym_unmanaged] = ACTIONS(2971), - [anon_sym_scoped] = ACTIONS(5476), - [anon_sym_var] = ACTIONS(4737), - [sym_predefined_type] = ACTIONS(5478), - [anon_sym_yield] = ACTIONS(2971), - [anon_sym_when] = ACTIONS(2971), - [anon_sym_from] = ACTIONS(2971), - [anon_sym_into] = ACTIONS(2971), - [anon_sym_join] = ACTIONS(2971), - [anon_sym_on] = ACTIONS(2971), - [anon_sym_equals] = ACTIONS(2971), - [anon_sym_let] = ACTIONS(2971), - [anon_sym_orderby] = ACTIONS(2971), - [anon_sym_ascending] = ACTIONS(2971), - [anon_sym_descending] = ACTIONS(2971), - [anon_sym_group] = ACTIONS(2971), - [anon_sym_by] = ACTIONS(2971), - [anon_sym_select] = ACTIONS(2971), + [anon_sym_EQ] = ACTIONS(5476), + [anon_sym_LBRACK] = ACTIONS(4811), + [anon_sym_LPAREN] = ACTIONS(4811), + [anon_sym_LT] = ACTIONS(4813), + [anon_sym_GT] = ACTIONS(4813), + [anon_sym_QMARK] = ACTIONS(4813), + [anon_sym_BANG] = ACTIONS(4813), + [anon_sym_PLUS_PLUS] = ACTIONS(4811), + [anon_sym_DASH_DASH] = ACTIONS(4811), + [anon_sym_PLUS] = ACTIONS(4813), + [anon_sym_DASH] = ACTIONS(4813), + [anon_sym_STAR] = ACTIONS(4813), + [anon_sym_SLASH] = ACTIONS(4813), + [anon_sym_PERCENT] = ACTIONS(4813), + [anon_sym_CARET] = ACTIONS(4813), + [anon_sym_PIPE] = ACTIONS(4813), + [anon_sym_AMP] = ACTIONS(4813), + [anon_sym_LT_LT] = ACTIONS(4813), + [anon_sym_GT_GT] = ACTIONS(4813), + [anon_sym_GT_GT_GT] = ACTIONS(4813), + [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(4813), + [anon_sym_switch] = ACTIONS(4811), + [anon_sym_DOT_DOT] = ACTIONS(4811), + [anon_sym_and] = ACTIONS(4811), + [anon_sym_or] = ACTIONS(4811), + [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(4811), + [anon_sym_PIPE_PIPE] = ACTIONS(4811), + [anon_sym_QMARK_QMARK] = ACTIONS(4813), + [anon_sym_into] = 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_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -498234,56 +497705,56 @@ 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(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(5116), + [anon_sym_LBRACK] = ACTIONS(5116), + [anon_sym_COLON] = ACTIONS(5116), + [anon_sym_COMMA] = ACTIONS(5116), + [anon_sym_RBRACK] = ACTIONS(5116), + [anon_sym_LPAREN] = ACTIONS(5116), + [anon_sym_RPAREN] = ACTIONS(5116), + [anon_sym_RBRACE] = ACTIONS(5116), + [anon_sym_LT] = ACTIONS(5118), + [anon_sym_GT] = ACTIONS(5118), + [anon_sym_in] = ACTIONS(5116), + [anon_sym_QMARK] = ACTIONS(5118), + [anon_sym_BANG] = ACTIONS(5118), + [anon_sym_PLUS_PLUS] = ACTIONS(5116), + [anon_sym_DASH_DASH] = ACTIONS(5116), + [anon_sym_PLUS] = ACTIONS(5118), + [anon_sym_DASH] = ACTIONS(5118), + [anon_sym_STAR] = ACTIONS(5116), + [anon_sym_SLASH] = ACTIONS(5118), + [anon_sym_PERCENT] = ACTIONS(5116), + [anon_sym_CARET] = ACTIONS(5116), + [anon_sym_PIPE] = ACTIONS(5118), + [anon_sym_AMP] = ACTIONS(5118), + [anon_sym_LT_LT] = ACTIONS(5116), + [anon_sym_GT_GT] = ACTIONS(5118), + [anon_sym_GT_GT_GT] = ACTIONS(5116), + [anon_sym_EQ_EQ] = ACTIONS(5116), + [anon_sym_BANG_EQ] = ACTIONS(5116), + [anon_sym_GT_EQ] = ACTIONS(5116), + [anon_sym_LT_EQ] = ACTIONS(5116), + [anon_sym_DOT] = ACTIONS(5118), + [anon_sym_EQ_GT] = ACTIONS(5116), + [anon_sym_switch] = ACTIONS(5116), + [anon_sym_when] = ACTIONS(5116), + [anon_sym_DOT_DOT] = ACTIONS(5116), + [anon_sym_and] = ACTIONS(5116), + [anon_sym_or] = ACTIONS(5116), + [anon_sym_AMP_AMP] = ACTIONS(5116), + [anon_sym_PIPE_PIPE] = ACTIONS(5116), + [anon_sym_QMARK_QMARK] = ACTIONS(5116), + [anon_sym_on] = ACTIONS(5116), + [anon_sym_equals] = ACTIONS(5116), + [anon_sym_by] = ACTIONS(5116), + [anon_sym_as] = ACTIONS(5116), + [anon_sym_is] = ACTIONS(5116), + [anon_sym_DASH_GT] = ACTIONS(5116), + [anon_sym_with] = ACTIONS(5116), + [aux_sym_preproc_if_token3] = ACTIONS(5116), + [aux_sym_preproc_else_token1] = ACTIONS(5116), + [aux_sym_preproc_elif_token1] = ACTIONS(5116), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -498296,6 +497767,26 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3379] = { + [sym_parameter_list] = STATE(7531), + [sym__name] = STATE(4369), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(4068), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(4073), + [sym_type] = STATE(5906), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym__lambda_parameters] = STATE(7609), + [sym_identifier] = STATE(5764), + [sym__reserved_identifier] = STATE(3654), [sym_preproc_region] = STATE(3379), [sym_preproc_endregion] = STATE(3379), [sym_preproc_line] = STATE(3379), @@ -498305,56 +497796,36 @@ 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_EQ] = ACTIONS(5482), - [anon_sym_LBRACK] = ACTIONS(4860), - [anon_sym_COMMA] = ACTIONS(4860), - [anon_sym_RBRACK] = ACTIONS(4860), - [anon_sym_LPAREN] = ACTIONS(4860), - [anon_sym_RPAREN] = ACTIONS(4860), - [anon_sym_RBRACE] = ACTIONS(4860), - [anon_sym_LT] = ACTIONS(4862), - [anon_sym_GT] = ACTIONS(4862), - [anon_sym_QMARK] = ACTIONS(4862), - [anon_sym_BANG] = ACTIONS(4862), - [anon_sym_PLUS_PLUS] = ACTIONS(4860), - [anon_sym_DASH_DASH] = ACTIONS(4860), - [anon_sym_PLUS] = ACTIONS(4862), - [anon_sym_DASH] = ACTIONS(4862), - [anon_sym_STAR] = ACTIONS(4862), - [anon_sym_SLASH] = ACTIONS(4862), - [anon_sym_PERCENT] = ACTIONS(4862), - [anon_sym_CARET] = ACTIONS(4862), - [anon_sym_PIPE] = ACTIONS(4862), - [anon_sym_AMP] = ACTIONS(4862), - [anon_sym_LT_LT] = ACTIONS(4862), - [anon_sym_GT_GT] = ACTIONS(4862), - [anon_sym_GT_GT_GT] = ACTIONS(4862), - [anon_sym_EQ_EQ] = ACTIONS(4860), - [anon_sym_BANG_EQ] = ACTIONS(4860), - [anon_sym_GT_EQ] = ACTIONS(4860), - [anon_sym_LT_EQ] = ACTIONS(4860), - [anon_sym_DOT] = ACTIONS(4862), - [anon_sym_switch] = ACTIONS(4860), - [anon_sym_DOT_DOT] = ACTIONS(4860), - [anon_sym_PLUS_EQ] = ACTIONS(5484), - [anon_sym_DASH_EQ] = ACTIONS(5484), - [anon_sym_STAR_EQ] = ACTIONS(5484), - [anon_sym_SLASH_EQ] = ACTIONS(5484), - [anon_sym_PERCENT_EQ] = ACTIONS(5484), - [anon_sym_AMP_EQ] = ACTIONS(5484), - [anon_sym_CARET_EQ] = ACTIONS(5484), - [anon_sym_PIPE_EQ] = ACTIONS(5484), - [anon_sym_LT_LT_EQ] = ACTIONS(5484), - [anon_sym_GT_GT_EQ] = ACTIONS(5484), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(5484), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(5484), - [anon_sym_AMP_AMP] = ACTIONS(4860), - [anon_sym_PIPE_PIPE] = ACTIONS(4860), - [anon_sym_QMARK_QMARK] = ACTIONS(4862), - [anon_sym_as] = ACTIONS(4860), - [anon_sym_is] = ACTIONS(4860), - [anon_sym_DASH_GT] = ACTIONS(4860), - [anon_sym_with] = ACTIONS(4860), + [aux_sym__lambda_expression_init_repeat1] = STATE(5828), + [sym__identifier_token] = ACTIONS(2965), + [anon_sym_alias] = ACTIONS(2969), + [anon_sym_global] = ACTIONS(2969), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LPAREN] = ACTIONS(3786), + [anon_sym_ref] = ACTIONS(3436), + [anon_sym_delegate] = ACTIONS(5480), + [anon_sym_async] = ACTIONS(1045), + [anon_sym_file] = ACTIONS(2969), + [anon_sym_where] = ACTIONS(2969), + [anon_sym_notnull] = ACTIONS(2969), + [anon_sym_unmanaged] = ACTIONS(2969), + [anon_sym_scoped] = ACTIONS(2993), + [anon_sym_var] = ACTIONS(2995), + [sym_predefined_type] = ACTIONS(2997), + [anon_sym_yield] = ACTIONS(2969), + [anon_sym_when] = ACTIONS(2969), + [anon_sym_from] = ACTIONS(2969), + [anon_sym_into] = ACTIONS(2969), + [anon_sym_join] = ACTIONS(2969), + [anon_sym_on] = ACTIONS(2969), + [anon_sym_equals] = ACTIONS(2969), + [anon_sym_let] = ACTIONS(2969), + [anon_sym_orderby] = ACTIONS(2969), + [anon_sym_ascending] = ACTIONS(2969), + [anon_sym_descending] = ACTIONS(2969), + [anon_sym_group] = ACTIONS(2969), + [anon_sym_by] = ACTIONS(2969), + [anon_sym_select] = ACTIONS(2969), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -498367,6 +497838,26 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3380] = { + [sym__name] = STATE(6381), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(4068), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(4073), + [sym_type] = STATE(7616), + [sym_implicit_type] = STATE(7156), + [sym_array_type] = STATE(6671), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(6672), + [sym_pointer_type] = STATE(6672), + [sym__pointer_base_type] = STATE(7421), + [sym_function_pointer_type] = STATE(6672), + [sym_function_pointer_parameter] = STATE(7377), + [sym_ref_type] = STATE(7035), + [sym__ref_base_type] = STATE(7387), + [sym_scoped_type] = STATE(7035), + [sym_tuple_type] = STATE(6553), + [sym_identifier] = STATE(4081), + [sym__reserved_identifier] = STATE(3654), [sym_preproc_region] = STATE(3380), [sym_preproc_endregion] = STATE(3380), [sym_preproc_line] = STATE(3380), @@ -498376,56 +497867,36 @@ 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(5076), - [anon_sym_LBRACK] = ACTIONS(5076), - [anon_sym_COLON] = ACTIONS(5076), - [anon_sym_COMMA] = ACTIONS(5076), - [anon_sym_RBRACK] = ACTIONS(5076), - [anon_sym_LPAREN] = ACTIONS(5076), - [anon_sym_RPAREN] = ACTIONS(5076), - [anon_sym_RBRACE] = ACTIONS(5076), - [anon_sym_LT] = ACTIONS(5078), - [anon_sym_GT] = ACTIONS(5078), - [anon_sym_in] = ACTIONS(5076), - [anon_sym_QMARK] = ACTIONS(5078), - [anon_sym_BANG] = ACTIONS(5078), - [anon_sym_PLUS_PLUS] = ACTIONS(5076), - [anon_sym_DASH_DASH] = ACTIONS(5076), - [anon_sym_PLUS] = ACTIONS(5078), - [anon_sym_DASH] = ACTIONS(5078), - [anon_sym_STAR] = ACTIONS(5076), - [anon_sym_SLASH] = ACTIONS(5078), - [anon_sym_PERCENT] = ACTIONS(5076), - [anon_sym_CARET] = ACTIONS(5076), - [anon_sym_PIPE] = ACTIONS(5078), - [anon_sym_AMP] = ACTIONS(5078), - [anon_sym_LT_LT] = ACTIONS(5076), - [anon_sym_GT_GT] = ACTIONS(5078), - [anon_sym_GT_GT_GT] = ACTIONS(5076), - [anon_sym_EQ_EQ] = ACTIONS(5076), - [anon_sym_BANG_EQ] = ACTIONS(5076), - [anon_sym_GT_EQ] = ACTIONS(5076), - [anon_sym_LT_EQ] = ACTIONS(5076), - [anon_sym_DOT] = ACTIONS(5078), - [anon_sym_EQ_GT] = ACTIONS(5076), - [anon_sym_switch] = ACTIONS(5076), - [anon_sym_when] = ACTIONS(5076), - [anon_sym_DOT_DOT] = ACTIONS(5076), - [anon_sym_and] = ACTIONS(5076), - [anon_sym_or] = ACTIONS(5076), - [anon_sym_AMP_AMP] = ACTIONS(5076), - [anon_sym_PIPE_PIPE] = ACTIONS(5076), - [anon_sym_QMARK_QMARK] = ACTIONS(5076), - [anon_sym_on] = ACTIONS(5076), - [anon_sym_equals] = ACTIONS(5076), - [anon_sym_by] = ACTIONS(5076), - [anon_sym_as] = ACTIONS(5076), - [anon_sym_is] = ACTIONS(5076), - [anon_sym_DASH_GT] = ACTIONS(5076), - [anon_sym_with] = ACTIONS(5076), - [aux_sym_preproc_if_token3] = ACTIONS(5076), - [aux_sym_preproc_else_token1] = ACTIONS(5076), - [aux_sym_preproc_elif_token1] = ACTIONS(5076), + [aux_sym_function_pointer_type_repeat1] = STATE(3499), + [sym__identifier_token] = ACTIONS(2965), + [anon_sym_alias] = ACTIONS(2969), + [anon_sym_global] = ACTIONS(2969), + [anon_sym_LPAREN] = ACTIONS(2977), + [anon_sym_ref] = ACTIONS(5450), + [anon_sym_delegate] = ACTIONS(5172), + [anon_sym_file] = ACTIONS(2969), + [anon_sym_in] = ACTIONS(5452), + [anon_sym_out] = ACTIONS(5452), + [anon_sym_where] = ACTIONS(2969), + [anon_sym_notnull] = ACTIONS(2969), + [anon_sym_unmanaged] = ACTIONS(2969), + [anon_sym_scoped] = ACTIONS(5454), + [anon_sym_var] = ACTIONS(4705), + [sym_predefined_type] = ACTIONS(5456), + [anon_sym_yield] = ACTIONS(2969), + [anon_sym_when] = ACTIONS(2969), + [anon_sym_from] = ACTIONS(2969), + [anon_sym_into] = ACTIONS(2969), + [anon_sym_join] = ACTIONS(2969), + [anon_sym_on] = ACTIONS(2969), + [anon_sym_equals] = ACTIONS(2969), + [anon_sym_let] = ACTIONS(2969), + [anon_sym_orderby] = ACTIONS(2969), + [anon_sym_ascending] = ACTIONS(2969), + [anon_sym_descending] = ACTIONS(2969), + [anon_sym_group] = ACTIONS(2969), + [anon_sym_by] = ACTIONS(2969), + [anon_sym_select] = ACTIONS(2969), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -498447,56 +497918,56 @@ 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), - [sym__identifier_token] = ACTIONS(5486), - [anon_sym_extern] = ACTIONS(5486), - [anon_sym_alias] = ACTIONS(5486), - [anon_sym_global] = ACTIONS(5486), - [anon_sym_unsafe] = ACTIONS(5486), - [anon_sym_static] = ACTIONS(5486), - [anon_sym_LBRACK] = ACTIONS(5488), - [anon_sym_RBRACE] = ACTIONS(5488), - [anon_sym_abstract] = ACTIONS(5486), - [anon_sym_async] = ACTIONS(5486), - [anon_sym_const] = ACTIONS(5486), - [anon_sym_file] = ACTIONS(5486), - [anon_sym_fixed] = ACTIONS(5486), - [anon_sym_internal] = ACTIONS(5486), - [anon_sym_new] = ACTIONS(5486), - [anon_sym_override] = ACTIONS(5486), - [anon_sym_partial] = ACTIONS(5486), - [anon_sym_private] = ACTIONS(5486), - [anon_sym_protected] = ACTIONS(5486), - [anon_sym_public] = ACTIONS(5486), - [anon_sym_readonly] = ACTIONS(5486), - [anon_sym_required] = ACTIONS(5486), - [anon_sym_sealed] = ACTIONS(5486), - [anon_sym_virtual] = ACTIONS(5486), - [anon_sym_volatile] = ACTIONS(5486), - [anon_sym_where] = ACTIONS(5486), - [anon_sym_notnull] = ACTIONS(5486), - [anon_sym_unmanaged] = ACTIONS(5486), - [anon_sym_get] = ACTIONS(5486), - [anon_sym_set] = ACTIONS(5486), - [anon_sym_add] = ACTIONS(5486), - [anon_sym_remove] = ACTIONS(5486), - [anon_sym_init] = ACTIONS(5486), - [anon_sym_scoped] = ACTIONS(5486), - [anon_sym_var] = ACTIONS(5486), - [anon_sym_yield] = ACTIONS(5486), - [anon_sym_when] = ACTIONS(5486), - [anon_sym_from] = ACTIONS(5486), - [anon_sym_into] = ACTIONS(5486), - [anon_sym_join] = ACTIONS(5486), - [anon_sym_on] = ACTIONS(5486), - [anon_sym_equals] = ACTIONS(5486), - [anon_sym_let] = ACTIONS(5486), - [anon_sym_orderby] = ACTIONS(5486), - [anon_sym_ascending] = ACTIONS(5486), - [anon_sym_descending] = ACTIONS(5486), - [anon_sym_group] = ACTIONS(5486), - [anon_sym_by] = ACTIONS(5486), - [anon_sym_select] = ACTIONS(5486), - [aux_sym_preproc_if_token1] = ACTIONS(5488), + [anon_sym_SEMI] = ACTIONS(4925), + [anon_sym_LBRACK] = ACTIONS(4925), + [anon_sym_COLON] = ACTIONS(4925), + [anon_sym_COMMA] = ACTIONS(4925), + [anon_sym_RBRACK] = ACTIONS(4925), + [anon_sym_LPAREN] = ACTIONS(4925), + [anon_sym_RPAREN] = ACTIONS(4925), + [anon_sym_RBRACE] = ACTIONS(4925), + [anon_sym_LT] = ACTIONS(4927), + [anon_sym_GT] = ACTIONS(4927), + [anon_sym_in] = ACTIONS(4925), + [anon_sym_QMARK] = ACTIONS(4927), + [anon_sym_BANG] = ACTIONS(4927), + [anon_sym_PLUS_PLUS] = ACTIONS(4925), + [anon_sym_DASH_DASH] = ACTIONS(4925), + [anon_sym_PLUS] = ACTIONS(4927), + [anon_sym_DASH] = ACTIONS(4927), + [anon_sym_STAR] = ACTIONS(4925), + [anon_sym_SLASH] = ACTIONS(4927), + [anon_sym_PERCENT] = ACTIONS(4925), + [anon_sym_CARET] = ACTIONS(4925), + [anon_sym_PIPE] = ACTIONS(4927), + [anon_sym_AMP] = ACTIONS(4927), + [anon_sym_LT_LT] = ACTIONS(4925), + [anon_sym_GT_GT] = ACTIONS(4927), + [anon_sym_GT_GT_GT] = ACTIONS(4925), + [anon_sym_EQ_EQ] = ACTIONS(4925), + [anon_sym_BANG_EQ] = ACTIONS(4925), + [anon_sym_GT_EQ] = ACTIONS(4925), + [anon_sym_LT_EQ] = ACTIONS(4925), + [anon_sym_DOT] = ACTIONS(4927), + [anon_sym_EQ_GT] = ACTIONS(4925), + [anon_sym_switch] = ACTIONS(4925), + [anon_sym_when] = ACTIONS(4925), + [anon_sym_DOT_DOT] = ACTIONS(4925), + [anon_sym_and] = ACTIONS(4925), + [anon_sym_or] = ACTIONS(4925), + [anon_sym_AMP_AMP] = ACTIONS(4925), + [anon_sym_PIPE_PIPE] = ACTIONS(4925), + [anon_sym_QMARK_QMARK] = ACTIONS(4925), + [anon_sym_on] = ACTIONS(4925), + [anon_sym_equals] = ACTIONS(4925), + [anon_sym_by] = ACTIONS(4925), + [anon_sym_as] = ACTIONS(4925), + [anon_sym_is] = ACTIONS(4925), + [anon_sym_DASH_GT] = ACTIONS(4925), + [anon_sym_with] = ACTIONS(4925), + [aux_sym_preproc_if_token3] = ACTIONS(4925), + [aux_sym_preproc_else_token1] = ACTIONS(4925), + [aux_sym_preproc_elif_token1] = ACTIONS(4925), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -498509,26 +497980,26 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3382] = { - [sym_parameter_list] = STATE(7311), - [sym__name] = STATE(4390), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(4096), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(4109), - [sym_type] = STATE(5915), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym__lambda_parameters] = STATE(7489), - [sym_identifier] = STATE(5763), - [sym__reserved_identifier] = STATE(3691), + [sym__name] = STATE(6381), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(4068), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(4073), + [sym_type] = STATE(7288), + [sym_implicit_type] = STATE(7156), + [sym_array_type] = STATE(6671), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(6672), + [sym_pointer_type] = STATE(6672), + [sym__pointer_base_type] = STATE(7421), + [sym_function_pointer_type] = STATE(6672), + [sym_function_pointer_parameter] = STATE(7377), + [sym_ref_type] = STATE(7035), + [sym__ref_base_type] = STATE(7387), + [sym_scoped_type] = STATE(7035), + [sym_tuple_type] = STATE(6553), + [sym_identifier] = STATE(4081), + [sym__reserved_identifier] = STATE(3654), [sym_preproc_region] = STATE(3382), [sym_preproc_endregion] = STATE(3382), [sym_preproc_line] = STATE(3382), @@ -498538,36 +498009,36 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3382), [sym_preproc_define] = STATE(3382), [sym_preproc_undef] = STATE(3382), - [aux_sym__lambda_expression_init_repeat1] = STATE(5863), - [sym__identifier_token] = ACTIONS(2967), - [anon_sym_alias] = ACTIONS(2971), - [anon_sym_global] = ACTIONS(2971), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LPAREN] = ACTIONS(3794), - [anon_sym_ref] = ACTIONS(3452), - [anon_sym_delegate] = ACTIONS(5490), - [anon_sym_async] = ACTIONS(1047), - [anon_sym_file] = ACTIONS(2971), - [anon_sym_where] = ACTIONS(2971), - [anon_sym_notnull] = ACTIONS(2971), - [anon_sym_unmanaged] = ACTIONS(2971), - [anon_sym_scoped] = ACTIONS(2997), - [anon_sym_var] = ACTIONS(2999), - [sym_predefined_type] = ACTIONS(3001), - [anon_sym_yield] = ACTIONS(2971), - [anon_sym_when] = ACTIONS(2971), - [anon_sym_from] = ACTIONS(2971), - [anon_sym_into] = ACTIONS(2971), - [anon_sym_join] = ACTIONS(2971), - [anon_sym_on] = ACTIONS(2971), - [anon_sym_equals] = ACTIONS(2971), - [anon_sym_let] = ACTIONS(2971), - [anon_sym_orderby] = ACTIONS(2971), - [anon_sym_ascending] = ACTIONS(2971), - [anon_sym_descending] = ACTIONS(2971), - [anon_sym_group] = ACTIONS(2971), - [anon_sym_by] = ACTIONS(2971), - [anon_sym_select] = ACTIONS(2971), + [aux_sym_function_pointer_type_repeat1] = STATE(3383), + [sym__identifier_token] = ACTIONS(2965), + [anon_sym_alias] = ACTIONS(2969), + [anon_sym_global] = ACTIONS(2969), + [anon_sym_LPAREN] = ACTIONS(2977), + [anon_sym_ref] = ACTIONS(5450), + [anon_sym_delegate] = ACTIONS(5172), + [anon_sym_file] = ACTIONS(2969), + [anon_sym_in] = ACTIONS(5452), + [anon_sym_out] = ACTIONS(5452), + [anon_sym_where] = ACTIONS(2969), + [anon_sym_notnull] = ACTIONS(2969), + [anon_sym_unmanaged] = ACTIONS(2969), + [anon_sym_scoped] = ACTIONS(5454), + [anon_sym_var] = ACTIONS(4705), + [sym_predefined_type] = ACTIONS(5456), + [anon_sym_yield] = ACTIONS(2969), + [anon_sym_when] = ACTIONS(2969), + [anon_sym_from] = ACTIONS(2969), + [anon_sym_into] = ACTIONS(2969), + [anon_sym_join] = ACTIONS(2969), + [anon_sym_on] = ACTIONS(2969), + [anon_sym_equals] = ACTIONS(2969), + [anon_sym_let] = ACTIONS(2969), + [anon_sym_orderby] = ACTIONS(2969), + [anon_sym_ascending] = ACTIONS(2969), + [anon_sym_descending] = ACTIONS(2969), + [anon_sym_group] = ACTIONS(2969), + [anon_sym_by] = ACTIONS(2969), + [anon_sym_select] = ACTIONS(2969), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -498580,8 +498051,26 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3383] = { - [sym_argument_list] = STATE(2933), - [sym_initializer_expression] = STATE(3090), + [sym__name] = STATE(6381), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(4068), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(4073), + [sym_type] = STATE(7454), + [sym_implicit_type] = STATE(7156), + [sym_array_type] = STATE(6671), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(6672), + [sym_pointer_type] = STATE(6672), + [sym__pointer_base_type] = STATE(7421), + [sym_function_pointer_type] = STATE(6672), + [sym_function_pointer_parameter] = STATE(7377), + [sym_ref_type] = STATE(7035), + [sym__ref_base_type] = STATE(7387), + [sym_scoped_type] = STATE(7035), + [sym_tuple_type] = STATE(6553), + [sym_identifier] = STATE(4081), + [sym__reserved_identifier] = STATE(3654), [sym_preproc_region] = STATE(3383), [sym_preproc_endregion] = STATE(3383), [sym_preproc_line] = STATE(3383), @@ -498591,54 +498080,36 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3383), [sym_preproc_define] = STATE(3383), [sym_preproc_undef] = STATE(3383), - [anon_sym_SEMI] = ACTIONS(4802), - [anon_sym_LBRACK] = ACTIONS(4802), - [anon_sym_COLON] = ACTIONS(4802), - [anon_sym_COMMA] = ACTIONS(4802), - [anon_sym_RBRACK] = ACTIONS(4802), - [anon_sym_LPAREN] = ACTIONS(5264), - [anon_sym_RPAREN] = ACTIONS(4802), - [anon_sym_LBRACE] = ACTIONS(1487), - [anon_sym_RBRACE] = ACTIONS(4802), - [anon_sym_LT] = ACTIONS(4806), - [anon_sym_GT] = ACTIONS(4806), - [anon_sym_in] = ACTIONS(4802), - [anon_sym_QMARK] = ACTIONS(4806), - [anon_sym_BANG] = ACTIONS(4806), - [anon_sym_PLUS_PLUS] = ACTIONS(4802), - [anon_sym_DASH_DASH] = ACTIONS(4802), - [anon_sym_PLUS] = ACTIONS(4806), - [anon_sym_DASH] = ACTIONS(4806), - [anon_sym_STAR] = ACTIONS(4802), - [anon_sym_SLASH] = ACTIONS(4806), - [anon_sym_PERCENT] = ACTIONS(4802), - [anon_sym_CARET] = ACTIONS(4802), - [anon_sym_PIPE] = ACTIONS(4806), - [anon_sym_AMP] = ACTIONS(4806), - [anon_sym_LT_LT] = ACTIONS(4802), - [anon_sym_GT_GT] = ACTIONS(4806), - [anon_sym_GT_GT_GT] = ACTIONS(4802), - [anon_sym_EQ_EQ] = ACTIONS(4802), - [anon_sym_BANG_EQ] = ACTIONS(4802), - [anon_sym_GT_EQ] = ACTIONS(4802), - [anon_sym_LT_EQ] = ACTIONS(4802), - [anon_sym_DOT] = ACTIONS(4806), - [anon_sym_EQ_GT] = ACTIONS(4802), - [anon_sym_switch] = ACTIONS(4802), - [anon_sym_DOT_DOT] = ACTIONS(4802), - [anon_sym_AMP_AMP] = ACTIONS(4802), - [anon_sym_PIPE_PIPE] = ACTIONS(4802), - [anon_sym_QMARK_QMARK] = ACTIONS(4802), - [anon_sym_on] = ACTIONS(4802), - [anon_sym_equals] = ACTIONS(4802), - [anon_sym_by] = ACTIONS(4802), - [anon_sym_as] = ACTIONS(4802), - [anon_sym_is] = ACTIONS(4802), - [anon_sym_DASH_GT] = ACTIONS(4802), - [anon_sym_with] = ACTIONS(4802), - [aux_sym_preproc_if_token3] = ACTIONS(4802), - [aux_sym_preproc_else_token1] = ACTIONS(4802), - [aux_sym_preproc_elif_token1] = ACTIONS(4802), + [aux_sym_function_pointer_type_repeat1] = STATE(3667), + [sym__identifier_token] = ACTIONS(2965), + [anon_sym_alias] = ACTIONS(2969), + [anon_sym_global] = ACTIONS(2969), + [anon_sym_LPAREN] = ACTIONS(2977), + [anon_sym_ref] = ACTIONS(5450), + [anon_sym_delegate] = ACTIONS(5172), + [anon_sym_file] = ACTIONS(2969), + [anon_sym_in] = ACTIONS(5452), + [anon_sym_out] = ACTIONS(5452), + [anon_sym_where] = ACTIONS(2969), + [anon_sym_notnull] = ACTIONS(2969), + [anon_sym_unmanaged] = ACTIONS(2969), + [anon_sym_scoped] = ACTIONS(5454), + [anon_sym_var] = ACTIONS(4705), + [sym_predefined_type] = ACTIONS(5456), + [anon_sym_yield] = ACTIONS(2969), + [anon_sym_when] = ACTIONS(2969), + [anon_sym_from] = ACTIONS(2969), + [anon_sym_into] = ACTIONS(2969), + [anon_sym_join] = ACTIONS(2969), + [anon_sym_on] = ACTIONS(2969), + [anon_sym_equals] = ACTIONS(2969), + [anon_sym_let] = ACTIONS(2969), + [anon_sym_orderby] = ACTIONS(2969), + [anon_sym_ascending] = ACTIONS(2969), + [anon_sym_descending] = ACTIONS(2969), + [anon_sym_group] = ACTIONS(2969), + [anon_sym_by] = ACTIONS(2969), + [anon_sym_select] = ACTIONS(2969), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -498651,6 +498122,26 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3384] = { + [sym__name] = STATE(6381), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(4068), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(4073), + [sym_type] = STATE(7454), + [sym_implicit_type] = STATE(7156), + [sym_array_type] = STATE(6671), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(6672), + [sym_pointer_type] = STATE(6672), + [sym__pointer_base_type] = STATE(7421), + [sym_function_pointer_type] = STATE(6672), + [sym_function_pointer_parameter] = STATE(7377), + [sym_ref_type] = STATE(7035), + [sym__ref_base_type] = STATE(7387), + [sym_scoped_type] = STATE(7035), + [sym_tuple_type] = STATE(6553), + [sym_identifier] = STATE(4081), + [sym__reserved_identifier] = STATE(3654), [sym_preproc_region] = STATE(3384), [sym_preproc_endregion] = STATE(3384), [sym_preproc_line] = STATE(3384), @@ -498660,56 +498151,36 @@ 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(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), + [aux_sym_function_pointer_type_repeat1] = STATE(3385), + [sym__identifier_token] = ACTIONS(2965), + [anon_sym_alias] = ACTIONS(2969), + [anon_sym_global] = ACTIONS(2969), + [anon_sym_LPAREN] = ACTIONS(2977), + [anon_sym_ref] = ACTIONS(5450), + [anon_sym_delegate] = ACTIONS(5172), + [anon_sym_file] = ACTIONS(2969), + [anon_sym_in] = ACTIONS(5452), + [anon_sym_out] = ACTIONS(5452), + [anon_sym_where] = ACTIONS(2969), + [anon_sym_notnull] = ACTIONS(2969), + [anon_sym_unmanaged] = ACTIONS(2969), + [anon_sym_scoped] = ACTIONS(5454), + [anon_sym_var] = ACTIONS(4705), + [sym_predefined_type] = ACTIONS(5456), + [anon_sym_yield] = ACTIONS(2969), + [anon_sym_when] = ACTIONS(2969), + [anon_sym_from] = ACTIONS(2969), + [anon_sym_into] = ACTIONS(2969), + [anon_sym_join] = ACTIONS(2969), + [anon_sym_on] = ACTIONS(2969), + [anon_sym_equals] = ACTIONS(2969), + [anon_sym_let] = ACTIONS(2969), + [anon_sym_orderby] = ACTIONS(2969), + [anon_sym_ascending] = ACTIONS(2969), + [anon_sym_descending] = ACTIONS(2969), + [anon_sym_group] = ACTIONS(2969), + [anon_sym_by] = ACTIONS(2969), + [anon_sym_select] = ACTIONS(2969), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -498722,26 +498193,26 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3385] = { - [sym_parameter_list] = STATE(7311), - [sym__name] = STATE(4390), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(4096), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(4109), - [sym_type] = STATE(5915), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym__lambda_parameters] = STATE(7489), - [sym_identifier] = STATE(5763), - [sym__reserved_identifier] = STATE(3691), + [sym__name] = STATE(6381), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(4068), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(4073), + [sym_type] = STATE(7597), + [sym_implicit_type] = STATE(7156), + [sym_array_type] = STATE(6671), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(6672), + [sym_pointer_type] = STATE(6672), + [sym__pointer_base_type] = STATE(7421), + [sym_function_pointer_type] = STATE(6672), + [sym_function_pointer_parameter] = STATE(7377), + [sym_ref_type] = STATE(7035), + [sym__ref_base_type] = STATE(7387), + [sym_scoped_type] = STATE(7035), + [sym_tuple_type] = STATE(6553), + [sym_identifier] = STATE(4081), + [sym__reserved_identifier] = STATE(3654), [sym_preproc_region] = STATE(3385), [sym_preproc_endregion] = STATE(3385), [sym_preproc_line] = STATE(3385), @@ -498751,36 +498222,36 @@ 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), - [aux_sym__lambda_expression_init_repeat1] = STATE(5863), - [sym__identifier_token] = ACTIONS(2967), - [anon_sym_alias] = ACTIONS(2971), - [anon_sym_global] = ACTIONS(2971), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LPAREN] = ACTIONS(3794), - [anon_sym_ref] = ACTIONS(3452), - [anon_sym_delegate] = ACTIONS(5492), - [anon_sym_async] = ACTIONS(1047), - [anon_sym_file] = ACTIONS(2971), - [anon_sym_where] = ACTIONS(2971), - [anon_sym_notnull] = ACTIONS(2971), - [anon_sym_unmanaged] = ACTIONS(2971), - [anon_sym_scoped] = ACTIONS(2997), - [anon_sym_var] = ACTIONS(2999), - [sym_predefined_type] = ACTIONS(3001), - [anon_sym_yield] = ACTIONS(2971), - [anon_sym_when] = ACTIONS(2971), - [anon_sym_from] = ACTIONS(2971), - [anon_sym_into] = ACTIONS(2971), - [anon_sym_join] = ACTIONS(2971), - [anon_sym_on] = ACTIONS(2971), - [anon_sym_equals] = ACTIONS(2971), - [anon_sym_let] = ACTIONS(2971), - [anon_sym_orderby] = ACTIONS(2971), - [anon_sym_ascending] = ACTIONS(2971), - [anon_sym_descending] = ACTIONS(2971), - [anon_sym_group] = ACTIONS(2971), - [anon_sym_by] = ACTIONS(2971), - [anon_sym_select] = ACTIONS(2971), + [aux_sym_function_pointer_type_repeat1] = STATE(3667), + [sym__identifier_token] = ACTIONS(2965), + [anon_sym_alias] = ACTIONS(2969), + [anon_sym_global] = ACTIONS(2969), + [anon_sym_LPAREN] = ACTIONS(2977), + [anon_sym_ref] = ACTIONS(5450), + [anon_sym_delegate] = ACTIONS(5172), + [anon_sym_file] = ACTIONS(2969), + [anon_sym_in] = ACTIONS(5452), + [anon_sym_out] = ACTIONS(5452), + [anon_sym_where] = ACTIONS(2969), + [anon_sym_notnull] = ACTIONS(2969), + [anon_sym_unmanaged] = ACTIONS(2969), + [anon_sym_scoped] = ACTIONS(5454), + [anon_sym_var] = ACTIONS(4705), + [sym_predefined_type] = ACTIONS(5456), + [anon_sym_yield] = ACTIONS(2969), + [anon_sym_when] = ACTIONS(2969), + [anon_sym_from] = ACTIONS(2969), + [anon_sym_into] = ACTIONS(2969), + [anon_sym_join] = ACTIONS(2969), + [anon_sym_on] = ACTIONS(2969), + [anon_sym_equals] = ACTIONS(2969), + [anon_sym_let] = ACTIONS(2969), + [anon_sym_orderby] = ACTIONS(2969), + [anon_sym_ascending] = ACTIONS(2969), + [anon_sym_descending] = ACTIONS(2969), + [anon_sym_group] = ACTIONS(2969), + [anon_sym_by] = ACTIONS(2969), + [anon_sym_select] = ACTIONS(2969), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -498802,56 +498273,56 @@ 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(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), + [anon_sym_EQ] = ACTIONS(5482), + [anon_sym_LBRACK] = ACTIONS(4811), + [anon_sym_LPAREN] = ACTIONS(4811), + [anon_sym_LT] = ACTIONS(4813), + [anon_sym_GT] = ACTIONS(4813), + [anon_sym_QMARK] = ACTIONS(4813), + [anon_sym_BANG] = ACTIONS(4813), + [anon_sym_PLUS_PLUS] = ACTIONS(4811), + [anon_sym_DASH_DASH] = ACTIONS(4811), + [anon_sym_PLUS] = ACTIONS(4813), + [anon_sym_DASH] = ACTIONS(4813), + [anon_sym_STAR] = ACTIONS(4813), + [anon_sym_SLASH] = ACTIONS(4813), + [anon_sym_PERCENT] = ACTIONS(4813), + [anon_sym_CARET] = ACTIONS(4813), + [anon_sym_PIPE] = ACTIONS(4813), + [anon_sym_AMP] = ACTIONS(4813), + [anon_sym_LT_LT] = ACTIONS(4813), + [anon_sym_GT_GT] = ACTIONS(4813), + [anon_sym_GT_GT_GT] = ACTIONS(4813), + [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(4813), + [anon_sym_switch] = ACTIONS(4811), + [anon_sym_DOT_DOT] = ACTIONS(4811), + [anon_sym_and] = ACTIONS(4811), + [anon_sym_or] = ACTIONS(4811), + [anon_sym_PLUS_EQ] = ACTIONS(5484), + [anon_sym_DASH_EQ] = ACTIONS(5484), + [anon_sym_STAR_EQ] = ACTIONS(5484), + [anon_sym_SLASH_EQ] = ACTIONS(5484), + [anon_sym_PERCENT_EQ] = ACTIONS(5484), + [anon_sym_AMP_EQ] = ACTIONS(5484), + [anon_sym_CARET_EQ] = ACTIONS(5484), + [anon_sym_PIPE_EQ] = ACTIONS(5484), + [anon_sym_LT_LT_EQ] = ACTIONS(5484), + [anon_sym_GT_GT_EQ] = ACTIONS(5484), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(5484), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(5484), + [anon_sym_AMP_AMP] = ACTIONS(4811), + [anon_sym_PIPE_PIPE] = ACTIONS(4811), + [anon_sym_QMARK_QMARK] = ACTIONS(4813), + [anon_sym_into] = ACTIONS(4811), + [anon_sym_equals] = 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_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -498864,26 +498335,26 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3387] = { - [sym__name] = STATE(6430), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(4096), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(4109), - [sym_type] = STATE(7666), - [sym_implicit_type] = STATE(7201), - [sym_array_type] = STATE(6648), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(6650), - [sym_pointer_type] = STATE(6650), - [sym__pointer_base_type] = STATE(7446), - [sym_function_pointer_type] = STATE(6650), - [sym_function_pointer_parameter] = STATE(7574), - [sym_ref_type] = STATE(7266), - [sym__ref_base_type] = STATE(7583), - [sym_scoped_type] = STATE(7266), - [sym_tuple_type] = STATE(6474), - [sym_identifier] = STATE(4087), - [sym__reserved_identifier] = STATE(3691), + [sym__name] = STATE(6381), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(4068), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(4073), + [sym_type] = STATE(7466), + [sym_implicit_type] = STATE(7156), + [sym_array_type] = STATE(6671), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(6672), + [sym_pointer_type] = STATE(6672), + [sym__pointer_base_type] = STATE(7421), + [sym_function_pointer_type] = STATE(6672), + [sym_function_pointer_parameter] = STATE(7377), + [sym_ref_type] = STATE(7035), + [sym__ref_base_type] = STATE(7387), + [sym_scoped_type] = STATE(7035), + [sym_tuple_type] = STATE(6553), + [sym_identifier] = STATE(4081), + [sym__reserved_identifier] = STATE(3654), [sym_preproc_region] = STATE(3387), [sym_preproc_endregion] = STATE(3387), [sym_preproc_line] = STATE(3387), @@ -498893,36 +498364,36 @@ 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), - [aux_sym_function_pointer_type_repeat1] = STATE(3388), - [sym__identifier_token] = ACTIONS(2967), - [anon_sym_alias] = ACTIONS(2971), - [anon_sym_global] = ACTIONS(2971), - [anon_sym_LPAREN] = ACTIONS(2979), - [anon_sym_ref] = ACTIONS(5472), - [anon_sym_delegate] = ACTIONS(5030), - [anon_sym_file] = ACTIONS(2971), - [anon_sym_in] = ACTIONS(5474), - [anon_sym_out] = ACTIONS(5474), - [anon_sym_where] = ACTIONS(2971), - [anon_sym_notnull] = ACTIONS(2971), - [anon_sym_unmanaged] = ACTIONS(2971), - [anon_sym_scoped] = ACTIONS(5476), - [anon_sym_var] = ACTIONS(4737), - [sym_predefined_type] = ACTIONS(5478), - [anon_sym_yield] = ACTIONS(2971), - [anon_sym_when] = ACTIONS(2971), - [anon_sym_from] = ACTIONS(2971), - [anon_sym_into] = ACTIONS(2971), - [anon_sym_join] = ACTIONS(2971), - [anon_sym_on] = ACTIONS(2971), - [anon_sym_equals] = ACTIONS(2971), - [anon_sym_let] = ACTIONS(2971), - [anon_sym_orderby] = ACTIONS(2971), - [anon_sym_ascending] = ACTIONS(2971), - [anon_sym_descending] = ACTIONS(2971), - [anon_sym_group] = ACTIONS(2971), - [anon_sym_by] = ACTIONS(2971), - [anon_sym_select] = ACTIONS(2971), + [aux_sym_function_pointer_type_repeat1] = STATE(3667), + [sym__identifier_token] = ACTIONS(2965), + [anon_sym_alias] = ACTIONS(2969), + [anon_sym_global] = ACTIONS(2969), + [anon_sym_LPAREN] = ACTIONS(2977), + [anon_sym_ref] = ACTIONS(5450), + [anon_sym_delegate] = ACTIONS(5172), + [anon_sym_file] = ACTIONS(2969), + [anon_sym_in] = ACTIONS(5452), + [anon_sym_out] = ACTIONS(5452), + [anon_sym_where] = ACTIONS(2969), + [anon_sym_notnull] = ACTIONS(2969), + [anon_sym_unmanaged] = ACTIONS(2969), + [anon_sym_scoped] = ACTIONS(5454), + [anon_sym_var] = ACTIONS(4705), + [sym_predefined_type] = ACTIONS(5456), + [anon_sym_yield] = ACTIONS(2969), + [anon_sym_when] = ACTIONS(2969), + [anon_sym_from] = ACTIONS(2969), + [anon_sym_into] = ACTIONS(2969), + [anon_sym_join] = ACTIONS(2969), + [anon_sym_on] = ACTIONS(2969), + [anon_sym_equals] = ACTIONS(2969), + [anon_sym_let] = ACTIONS(2969), + [anon_sym_orderby] = ACTIONS(2969), + [anon_sym_ascending] = ACTIONS(2969), + [anon_sym_descending] = ACTIONS(2969), + [anon_sym_group] = ACTIONS(2969), + [anon_sym_by] = ACTIONS(2969), + [anon_sym_select] = ACTIONS(2969), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -498935,26 +498406,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3388] = { - [sym__name] = STATE(6430), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(4096), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(4109), - [sym_type] = STATE(7737), - [sym_implicit_type] = STATE(7201), - [sym_array_type] = STATE(6648), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(6650), - [sym_pointer_type] = STATE(6650), - [sym__pointer_base_type] = STATE(7446), - [sym_function_pointer_type] = STATE(6650), - [sym_function_pointer_parameter] = STATE(7574), - [sym_ref_type] = STATE(7266), - [sym__ref_base_type] = STATE(7583), - [sym_scoped_type] = STATE(7266), - [sym_tuple_type] = STATE(6474), - [sym_identifier] = STATE(4087), - [sym__reserved_identifier] = STATE(3691), [sym_preproc_region] = STATE(3388), [sym_preproc_endregion] = STATE(3388), [sym_preproc_line] = STATE(3388), @@ -498964,36 +498415,56 @@ 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), - [aux_sym_function_pointer_type_repeat1] = STATE(3670), - [sym__identifier_token] = ACTIONS(2967), - [anon_sym_alias] = ACTIONS(2971), - [anon_sym_global] = ACTIONS(2971), - [anon_sym_LPAREN] = ACTIONS(2979), - [anon_sym_ref] = ACTIONS(5472), - [anon_sym_delegate] = ACTIONS(5030), - [anon_sym_file] = ACTIONS(2971), - [anon_sym_in] = ACTIONS(5474), - [anon_sym_out] = ACTIONS(5474), - [anon_sym_where] = ACTIONS(2971), - [anon_sym_notnull] = ACTIONS(2971), - [anon_sym_unmanaged] = ACTIONS(2971), - [anon_sym_scoped] = ACTIONS(5476), - [anon_sym_var] = ACTIONS(4737), - [sym_predefined_type] = ACTIONS(5478), - [anon_sym_yield] = ACTIONS(2971), - [anon_sym_when] = ACTIONS(2971), - [anon_sym_from] = ACTIONS(2971), - [anon_sym_into] = ACTIONS(2971), - [anon_sym_join] = ACTIONS(2971), - [anon_sym_on] = ACTIONS(2971), - [anon_sym_equals] = ACTIONS(2971), - [anon_sym_let] = ACTIONS(2971), - [anon_sym_orderby] = ACTIONS(2971), - [anon_sym_ascending] = ACTIONS(2971), - [anon_sym_descending] = ACTIONS(2971), - [anon_sym_group] = ACTIONS(2971), - [anon_sym_by] = ACTIONS(2971), - [anon_sym_select] = ACTIONS(2971), + [anon_sym_SEMI] = ACTIONS(5052), + [anon_sym_LBRACK] = ACTIONS(5052), + [anon_sym_COLON] = ACTIONS(5052), + [anon_sym_COMMA] = ACTIONS(5052), + [anon_sym_RBRACK] = ACTIONS(5052), + [anon_sym_LPAREN] = ACTIONS(5052), + [anon_sym_RPAREN] = ACTIONS(5052), + [anon_sym_RBRACE] = ACTIONS(5052), + [anon_sym_LT] = ACTIONS(5054), + [anon_sym_GT] = ACTIONS(5054), + [anon_sym_in] = ACTIONS(5052), + [anon_sym_QMARK] = ACTIONS(5054), + [anon_sym_BANG] = ACTIONS(5054), + [anon_sym_PLUS_PLUS] = ACTIONS(5052), + [anon_sym_DASH_DASH] = ACTIONS(5052), + [anon_sym_PLUS] = ACTIONS(5054), + [anon_sym_DASH] = ACTIONS(5054), + [anon_sym_STAR] = ACTIONS(5052), + [anon_sym_SLASH] = ACTIONS(5054), + [anon_sym_PERCENT] = ACTIONS(5052), + [anon_sym_CARET] = ACTIONS(5052), + [anon_sym_PIPE] = ACTIONS(5054), + [anon_sym_AMP] = ACTIONS(5054), + [anon_sym_LT_LT] = ACTIONS(5052), + [anon_sym_GT_GT] = ACTIONS(5054), + [anon_sym_GT_GT_GT] = ACTIONS(5052), + [anon_sym_EQ_EQ] = ACTIONS(5052), + [anon_sym_BANG_EQ] = ACTIONS(5052), + [anon_sym_GT_EQ] = ACTIONS(5052), + [anon_sym_LT_EQ] = ACTIONS(5052), + [anon_sym_DOT] = ACTIONS(5054), + [anon_sym_EQ_GT] = ACTIONS(5052), + [anon_sym_switch] = ACTIONS(5052), + [anon_sym_when] = ACTIONS(5052), + [anon_sym_DOT_DOT] = ACTIONS(5052), + [anon_sym_and] = ACTIONS(5052), + [anon_sym_or] = ACTIONS(5052), + [anon_sym_AMP_AMP] = ACTIONS(5052), + [anon_sym_PIPE_PIPE] = ACTIONS(5052), + [anon_sym_QMARK_QMARK] = ACTIONS(5052), + [anon_sym_on] = ACTIONS(5052), + [anon_sym_equals] = ACTIONS(5052), + [anon_sym_by] = ACTIONS(5052), + [anon_sym_as] = ACTIONS(5052), + [anon_sym_is] = ACTIONS(5052), + [anon_sym_DASH_GT] = ACTIONS(5052), + [anon_sym_with] = ACTIONS(5052), + [aux_sym_preproc_if_token3] = ACTIONS(5052), + [aux_sym_preproc_else_token1] = ACTIONS(5052), + [aux_sym_preproc_elif_token1] = ACTIONS(5052), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -499006,26 +498477,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3389] = { - [sym__name] = STATE(6430), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(4096), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(4109), - [sym_type] = STATE(7737), - [sym_implicit_type] = STATE(7201), - [sym_array_type] = STATE(6648), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(6650), - [sym_pointer_type] = STATE(6650), - [sym__pointer_base_type] = STATE(7446), - [sym_function_pointer_type] = STATE(6650), - [sym_function_pointer_parameter] = STATE(7574), - [sym_ref_type] = STATE(7266), - [sym__ref_base_type] = STATE(7583), - [sym_scoped_type] = STATE(7266), - [sym_tuple_type] = STATE(6474), - [sym_identifier] = STATE(4087), - [sym__reserved_identifier] = STATE(3691), + [sym__name] = STATE(5130), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(4068), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_ref_type] = STATE(2331), + [sym__scoped_base_type] = STATE(2339), + [sym_identifier] = STATE(4370), + [sym__reserved_identifier] = STATE(2168), [sym_preproc_region] = STATE(3389), [sym_preproc_endregion] = STATE(3389), [sym_preproc_line] = STATE(3389), @@ -499035,36 +498495,47 @@ 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), - [aux_sym_function_pointer_type_repeat1] = STATE(3390), - [sym__identifier_token] = ACTIONS(2967), - [anon_sym_alias] = ACTIONS(2971), - [anon_sym_global] = ACTIONS(2971), - [anon_sym_LPAREN] = ACTIONS(2979), - [anon_sym_ref] = ACTIONS(5472), - [anon_sym_delegate] = ACTIONS(5030), - [anon_sym_file] = ACTIONS(2971), - [anon_sym_in] = ACTIONS(5474), - [anon_sym_out] = ACTIONS(5474), - [anon_sym_where] = ACTIONS(2971), - [anon_sym_notnull] = ACTIONS(2971), - [anon_sym_unmanaged] = ACTIONS(2971), - [anon_sym_scoped] = ACTIONS(5476), - [anon_sym_var] = ACTIONS(4737), - [sym_predefined_type] = ACTIONS(5478), - [anon_sym_yield] = ACTIONS(2971), - [anon_sym_when] = ACTIONS(2971), - [anon_sym_from] = ACTIONS(2971), - [anon_sym_into] = ACTIONS(2971), - [anon_sym_join] = ACTIONS(2971), - [anon_sym_on] = ACTIONS(2971), - [anon_sym_equals] = ACTIONS(2971), - [anon_sym_let] = ACTIONS(2971), - [anon_sym_orderby] = ACTIONS(2971), - [anon_sym_ascending] = ACTIONS(2971), - [anon_sym_descending] = ACTIONS(2971), - [anon_sym_group] = ACTIONS(2971), - [anon_sym_by] = ACTIONS(2971), - [anon_sym_select] = ACTIONS(2971), + [sym__identifier_token] = ACTIONS(3565), + [anon_sym_alias] = ACTIONS(3569), + [anon_sym_global] = ACTIONS(3569), + [anon_sym_EQ] = ACTIONS(3429), + [anon_sym_LBRACK] = ACTIONS(3429), + [anon_sym_COMMA] = ACTIONS(3429), + [anon_sym_RBRACK] = ACTIONS(3429), + [anon_sym_LPAREN] = ACTIONS(2733), + [anon_sym_RPAREN] = ACTIONS(3429), + [anon_sym_ref] = ACTIONS(2689), + [anon_sym_delegate] = ACTIONS(2689), + [anon_sym_file] = ACTIONS(3569), + [anon_sym_readonly] = ACTIONS(2689), + [anon_sym_LT] = ACTIONS(3429), + [anon_sym_in] = ACTIONS(2689), + [anon_sym_out] = ACTIONS(2689), + [anon_sym_where] = ACTIONS(3569), + [anon_sym_QMARK] = ACTIONS(3429), + [anon_sym_notnull] = ACTIONS(3569), + [anon_sym_unmanaged] = ACTIONS(3569), + [anon_sym_STAR] = ACTIONS(3429), + [anon_sym_this] = ACTIONS(2689), + [anon_sym_DOT] = ACTIONS(3429), + [anon_sym_scoped] = ACTIONS(3569), + [anon_sym_COLON_COLON] = ACTIONS(3429), + [anon_sym_var] = ACTIONS(3569), + [sym_predefined_type] = ACTIONS(2689), + [anon_sym_yield] = ACTIONS(3569), + [anon_sym_when] = ACTIONS(3569), + [anon_sym_from] = ACTIONS(3569), + [anon_sym_into] = ACTIONS(3569), + [anon_sym_join] = ACTIONS(3569), + [anon_sym_on] = ACTIONS(3569), + [anon_sym_equals] = ACTIONS(3569), + [anon_sym_let] = ACTIONS(3569), + [anon_sym_orderby] = ACTIONS(3569), + [anon_sym_ascending] = ACTIONS(3569), + [anon_sym_descending] = ACTIONS(3569), + [anon_sym_group] = ACTIONS(3569), + [anon_sym_by] = ACTIONS(3569), + [anon_sym_select] = ACTIONS(3569), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -499077,26 +498548,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3390] = { - [sym__name] = STATE(6430), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(4096), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(4109), - [sym_type] = STATE(7590), - [sym_implicit_type] = STATE(7201), - [sym_array_type] = STATE(6648), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(6650), - [sym_pointer_type] = STATE(6650), - [sym__pointer_base_type] = STATE(7446), - [sym_function_pointer_type] = STATE(6650), - [sym_function_pointer_parameter] = STATE(7574), - [sym_ref_type] = STATE(7266), - [sym__ref_base_type] = STATE(7583), - [sym_scoped_type] = STATE(7266), - [sym_tuple_type] = STATE(6474), - [sym_identifier] = STATE(4087), - [sym__reserved_identifier] = STATE(3691), [sym_preproc_region] = STATE(3390), [sym_preproc_endregion] = STATE(3390), [sym_preproc_line] = STATE(3390), @@ -499106,36 +498557,56 @@ 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), - [aux_sym_function_pointer_type_repeat1] = STATE(3670), - [sym__identifier_token] = ACTIONS(2967), - [anon_sym_alias] = ACTIONS(2971), - [anon_sym_global] = ACTIONS(2971), - [anon_sym_LPAREN] = ACTIONS(2979), - [anon_sym_ref] = ACTIONS(5472), - [anon_sym_delegate] = ACTIONS(5030), - [anon_sym_file] = ACTIONS(2971), - [anon_sym_in] = ACTIONS(5474), - [anon_sym_out] = ACTIONS(5474), - [anon_sym_where] = ACTIONS(2971), - [anon_sym_notnull] = ACTIONS(2971), - [anon_sym_unmanaged] = ACTIONS(2971), - [anon_sym_scoped] = ACTIONS(5476), - [anon_sym_var] = ACTIONS(4737), - [sym_predefined_type] = ACTIONS(5478), - [anon_sym_yield] = ACTIONS(2971), - [anon_sym_when] = ACTIONS(2971), - [anon_sym_from] = ACTIONS(2971), - [anon_sym_into] = ACTIONS(2971), - [anon_sym_join] = ACTIONS(2971), - [anon_sym_on] = ACTIONS(2971), - [anon_sym_equals] = ACTIONS(2971), - [anon_sym_let] = ACTIONS(2971), - [anon_sym_orderby] = ACTIONS(2971), - [anon_sym_ascending] = ACTIONS(2971), - [anon_sym_descending] = ACTIONS(2971), - [anon_sym_group] = ACTIONS(2971), - [anon_sym_by] = ACTIONS(2971), - [anon_sym_select] = ACTIONS(2971), + [anon_sym_SEMI] = ACTIONS(5076), + [anon_sym_LBRACK] = ACTIONS(5076), + [anon_sym_COLON] = ACTIONS(5076), + [anon_sym_COMMA] = ACTIONS(5076), + [anon_sym_RBRACK] = ACTIONS(5076), + [anon_sym_LPAREN] = ACTIONS(5076), + [anon_sym_RPAREN] = ACTIONS(5076), + [anon_sym_RBRACE] = ACTIONS(5076), + [anon_sym_LT] = ACTIONS(5078), + [anon_sym_GT] = ACTIONS(5078), + [anon_sym_in] = ACTIONS(5076), + [anon_sym_QMARK] = ACTIONS(5078), + [anon_sym_BANG] = ACTIONS(5078), + [anon_sym_PLUS_PLUS] = ACTIONS(5076), + [anon_sym_DASH_DASH] = ACTIONS(5076), + [anon_sym_PLUS] = ACTIONS(5078), + [anon_sym_DASH] = ACTIONS(5078), + [anon_sym_STAR] = ACTIONS(5076), + [anon_sym_SLASH] = ACTIONS(5078), + [anon_sym_PERCENT] = ACTIONS(5076), + [anon_sym_CARET] = ACTIONS(5076), + [anon_sym_PIPE] = ACTIONS(5078), + [anon_sym_AMP] = ACTIONS(5078), + [anon_sym_LT_LT] = ACTIONS(5076), + [anon_sym_GT_GT] = ACTIONS(5078), + [anon_sym_GT_GT_GT] = ACTIONS(5076), + [anon_sym_EQ_EQ] = ACTIONS(5076), + [anon_sym_BANG_EQ] = ACTIONS(5076), + [anon_sym_GT_EQ] = ACTIONS(5076), + [anon_sym_LT_EQ] = ACTIONS(5076), + [anon_sym_DOT] = ACTIONS(5078), + [anon_sym_EQ_GT] = ACTIONS(5076), + [anon_sym_switch] = ACTIONS(5076), + [anon_sym_when] = ACTIONS(5076), + [anon_sym_DOT_DOT] = ACTIONS(5076), + [anon_sym_and] = ACTIONS(5076), + [anon_sym_or] = ACTIONS(5076), + [anon_sym_AMP_AMP] = ACTIONS(5076), + [anon_sym_PIPE_PIPE] = ACTIONS(5076), + [anon_sym_QMARK_QMARK] = ACTIONS(5076), + [anon_sym_on] = ACTIONS(5076), + [anon_sym_equals] = ACTIONS(5076), + [anon_sym_by] = ACTIONS(5076), + [anon_sym_as] = ACTIONS(5076), + [anon_sym_is] = ACTIONS(5076), + [anon_sym_DASH_GT] = ACTIONS(5076), + [anon_sym_with] = ACTIONS(5076), + [aux_sym_preproc_if_token3] = ACTIONS(5076), + [aux_sym_preproc_else_token1] = ACTIONS(5076), + [aux_sym_preproc_elif_token1] = ACTIONS(5076), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -499148,6 +498619,26 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3391] = { + [sym__name] = STATE(6381), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(4068), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(4073), + [sym_type] = STATE(7586), + [sym_implicit_type] = STATE(7156), + [sym_array_type] = STATE(6671), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(6672), + [sym_pointer_type] = STATE(6672), + [sym__pointer_base_type] = STATE(7421), + [sym_function_pointer_type] = STATE(6672), + [sym_function_pointer_parameter] = STATE(7377), + [sym_ref_type] = STATE(7035), + [sym__ref_base_type] = STATE(7387), + [sym_scoped_type] = STATE(7035), + [sym_tuple_type] = STATE(6553), + [sym_identifier] = STATE(4081), + [sym__reserved_identifier] = STATE(3654), [sym_preproc_region] = STATE(3391), [sym_preproc_endregion] = STATE(3391), [sym_preproc_line] = STATE(3391), @@ -499157,56 +498648,36 @@ 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_EQ] = ACTIONS(5494), - [anon_sym_LBRACK] = ACTIONS(4860), - [anon_sym_COLON] = ACTIONS(4860), - [anon_sym_LPAREN] = ACTIONS(4860), - [anon_sym_LT] = ACTIONS(4862), - [anon_sym_GT] = ACTIONS(4862), - [anon_sym_QMARK] = ACTIONS(4862), - [anon_sym_BANG] = ACTIONS(4862), - [anon_sym_PLUS_PLUS] = ACTIONS(4860), - [anon_sym_DASH_DASH] = ACTIONS(4860), - [anon_sym_PLUS] = ACTIONS(4862), - [anon_sym_DASH] = ACTIONS(4862), - [anon_sym_STAR] = ACTIONS(4862), - [anon_sym_SLASH] = ACTIONS(4862), - [anon_sym_PERCENT] = ACTIONS(4862), - [anon_sym_CARET] = ACTIONS(4862), - [anon_sym_PIPE] = ACTIONS(4862), - [anon_sym_AMP] = ACTIONS(4862), - [anon_sym_LT_LT] = ACTIONS(4862), - [anon_sym_GT_GT] = ACTIONS(4862), - [anon_sym_GT_GT_GT] = ACTIONS(4862), - [anon_sym_EQ_EQ] = ACTIONS(4860), - [anon_sym_BANG_EQ] = ACTIONS(4860), - [anon_sym_GT_EQ] = ACTIONS(4860), - [anon_sym_LT_EQ] = ACTIONS(4860), - [anon_sym_DOT] = ACTIONS(4862), - [anon_sym_switch] = ACTIONS(4860), - [anon_sym_when] = ACTIONS(4860), - [anon_sym_DOT_DOT] = ACTIONS(4860), - [anon_sym_and] = ACTIONS(4860), - [anon_sym_or] = ACTIONS(4860), - [anon_sym_PLUS_EQ] = ACTIONS(5496), - [anon_sym_DASH_EQ] = ACTIONS(5496), - [anon_sym_STAR_EQ] = ACTIONS(5496), - [anon_sym_SLASH_EQ] = ACTIONS(5496), - [anon_sym_PERCENT_EQ] = ACTIONS(5496), - [anon_sym_AMP_EQ] = ACTIONS(5496), - [anon_sym_CARET_EQ] = ACTIONS(5496), - [anon_sym_PIPE_EQ] = ACTIONS(5496), - [anon_sym_LT_LT_EQ] = ACTIONS(5496), - [anon_sym_GT_GT_EQ] = ACTIONS(5496), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(5496), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(5496), - [anon_sym_AMP_AMP] = ACTIONS(4860), - [anon_sym_PIPE_PIPE] = ACTIONS(4860), - [anon_sym_QMARK_QMARK] = ACTIONS(4862), - [anon_sym_as] = ACTIONS(4860), - [anon_sym_is] = ACTIONS(4860), - [anon_sym_DASH_GT] = ACTIONS(4860), - [anon_sym_with] = ACTIONS(4860), + [aux_sym_function_pointer_type_repeat1] = STATE(3392), + [sym__identifier_token] = ACTIONS(2965), + [anon_sym_alias] = ACTIONS(2969), + [anon_sym_global] = ACTIONS(2969), + [anon_sym_LPAREN] = ACTIONS(2977), + [anon_sym_ref] = ACTIONS(5450), + [anon_sym_delegate] = ACTIONS(5172), + [anon_sym_file] = ACTIONS(2969), + [anon_sym_in] = ACTIONS(5452), + [anon_sym_out] = ACTIONS(5452), + [anon_sym_where] = ACTIONS(2969), + [anon_sym_notnull] = ACTIONS(2969), + [anon_sym_unmanaged] = ACTIONS(2969), + [anon_sym_scoped] = ACTIONS(5454), + [anon_sym_var] = ACTIONS(4705), + [sym_predefined_type] = ACTIONS(5456), + [anon_sym_yield] = ACTIONS(2969), + [anon_sym_when] = ACTIONS(2969), + [anon_sym_from] = ACTIONS(2969), + [anon_sym_into] = ACTIONS(2969), + [anon_sym_join] = ACTIONS(2969), + [anon_sym_on] = ACTIONS(2969), + [anon_sym_equals] = ACTIONS(2969), + [anon_sym_let] = ACTIONS(2969), + [anon_sym_orderby] = ACTIONS(2969), + [anon_sym_ascending] = ACTIONS(2969), + [anon_sym_descending] = ACTIONS(2969), + [anon_sym_group] = ACTIONS(2969), + [anon_sym_by] = ACTIONS(2969), + [anon_sym_select] = ACTIONS(2969), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -499219,6 +498690,26 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3392] = { + [sym__name] = STATE(6381), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(4068), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(4073), + [sym_type] = STATE(7670), + [sym_implicit_type] = STATE(7156), + [sym_array_type] = STATE(6671), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(6672), + [sym_pointer_type] = STATE(6672), + [sym__pointer_base_type] = STATE(7421), + [sym_function_pointer_type] = STATE(6672), + [sym_function_pointer_parameter] = STATE(7377), + [sym_ref_type] = STATE(7035), + [sym__ref_base_type] = STATE(7387), + [sym_scoped_type] = STATE(7035), + [sym_tuple_type] = STATE(6553), + [sym_identifier] = STATE(4081), + [sym__reserved_identifier] = STATE(3654), [sym_preproc_region] = STATE(3392), [sym_preproc_endregion] = STATE(3392), [sym_preproc_line] = STATE(3392), @@ -499228,56 +498719,36 @@ 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_EQ] = ACTIONS(5498), - [anon_sym_LBRACK] = ACTIONS(4860), - [anon_sym_LPAREN] = ACTIONS(4860), - [anon_sym_LT] = ACTIONS(4862), - [anon_sym_GT] = ACTIONS(4862), - [anon_sym_QMARK] = ACTIONS(4862), - [anon_sym_BANG] = ACTIONS(4862), - [anon_sym_PLUS_PLUS] = ACTIONS(4860), - [anon_sym_DASH_DASH] = ACTIONS(4860), - [anon_sym_PLUS] = ACTIONS(4862), - [anon_sym_DASH] = ACTIONS(4862), - [anon_sym_STAR] = ACTIONS(4862), - [anon_sym_SLASH] = ACTIONS(4862), - [anon_sym_PERCENT] = ACTIONS(4862), - [anon_sym_CARET] = ACTIONS(4862), - [anon_sym_PIPE] = ACTIONS(4862), - [anon_sym_AMP] = ACTIONS(4862), - [anon_sym_LT_LT] = ACTIONS(4862), - [anon_sym_GT_GT] = ACTIONS(4862), - [anon_sym_GT_GT_GT] = ACTIONS(4862), - [anon_sym_EQ_EQ] = ACTIONS(4860), - [anon_sym_BANG_EQ] = ACTIONS(4860), - [anon_sym_GT_EQ] = ACTIONS(4860), - [anon_sym_LT_EQ] = ACTIONS(4860), - [anon_sym_DOT] = ACTIONS(4862), - [anon_sym_switch] = ACTIONS(4860), - [anon_sym_DOT_DOT] = ACTIONS(4860), - [anon_sym_and] = ACTIONS(4860), - [anon_sym_or] = ACTIONS(4860), - [anon_sym_PLUS_EQ] = ACTIONS(5500), - [anon_sym_DASH_EQ] = ACTIONS(5500), - [anon_sym_STAR_EQ] = ACTIONS(5500), - [anon_sym_SLASH_EQ] = ACTIONS(5500), - [anon_sym_PERCENT_EQ] = ACTIONS(5500), - [anon_sym_AMP_EQ] = ACTIONS(5500), - [anon_sym_CARET_EQ] = ACTIONS(5500), - [anon_sym_PIPE_EQ] = ACTIONS(5500), - [anon_sym_LT_LT_EQ] = ACTIONS(5500), - [anon_sym_GT_GT_EQ] = ACTIONS(5500), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(5500), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(5500), - [anon_sym_AMP_AMP] = ACTIONS(4860), - [anon_sym_PIPE_PIPE] = ACTIONS(4860), - [anon_sym_QMARK_QMARK] = ACTIONS(4862), - [anon_sym_into] = ACTIONS(4860), - [anon_sym_by] = ACTIONS(4860), - [anon_sym_as] = ACTIONS(4860), - [anon_sym_is] = ACTIONS(4860), - [anon_sym_DASH_GT] = ACTIONS(4860), - [anon_sym_with] = ACTIONS(4860), + [aux_sym_function_pointer_type_repeat1] = STATE(3667), + [sym__identifier_token] = ACTIONS(2965), + [anon_sym_alias] = ACTIONS(2969), + [anon_sym_global] = ACTIONS(2969), + [anon_sym_LPAREN] = ACTIONS(2977), + [anon_sym_ref] = ACTIONS(5450), + [anon_sym_delegate] = ACTIONS(5172), + [anon_sym_file] = ACTIONS(2969), + [anon_sym_in] = ACTIONS(5452), + [anon_sym_out] = ACTIONS(5452), + [anon_sym_where] = ACTIONS(2969), + [anon_sym_notnull] = ACTIONS(2969), + [anon_sym_unmanaged] = ACTIONS(2969), + [anon_sym_scoped] = ACTIONS(5454), + [anon_sym_var] = ACTIONS(4705), + [sym_predefined_type] = ACTIONS(5456), + [anon_sym_yield] = ACTIONS(2969), + [anon_sym_when] = ACTIONS(2969), + [anon_sym_from] = ACTIONS(2969), + [anon_sym_into] = ACTIONS(2969), + [anon_sym_join] = ACTIONS(2969), + [anon_sym_on] = ACTIONS(2969), + [anon_sym_equals] = ACTIONS(2969), + [anon_sym_let] = ACTIONS(2969), + [anon_sym_orderby] = ACTIONS(2969), + [anon_sym_ascending] = ACTIONS(2969), + [anon_sym_descending] = ACTIONS(2969), + [anon_sym_group] = ACTIONS(2969), + [anon_sym_by] = ACTIONS(2969), + [anon_sym_select] = ACTIONS(2969), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -499290,6 +498761,26 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3393] = { + [sym__name] = STATE(6381), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(4068), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(4073), + [sym_type] = STATE(7670), + [sym_implicit_type] = STATE(7156), + [sym_array_type] = STATE(6671), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(6672), + [sym_pointer_type] = STATE(6672), + [sym__pointer_base_type] = STATE(7421), + [sym_function_pointer_type] = STATE(6672), + [sym_function_pointer_parameter] = STATE(7377), + [sym_ref_type] = STATE(7035), + [sym__ref_base_type] = STATE(7387), + [sym_scoped_type] = STATE(7035), + [sym_tuple_type] = STATE(6553), + [sym_identifier] = STATE(4081), + [sym__reserved_identifier] = STATE(3654), [sym_preproc_region] = STATE(3393), [sym_preproc_endregion] = STATE(3393), [sym_preproc_line] = STATE(3393), @@ -499299,56 +498790,36 @@ 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), - [sym__identifier_token] = ACTIONS(3193), - [anon_sym_extern] = ACTIONS(3193), - [anon_sym_alias] = ACTIONS(3193), - [anon_sym_global] = ACTIONS(3193), - [anon_sym_unsafe] = ACTIONS(3193), - [anon_sym_static] = ACTIONS(3193), - [anon_sym_LBRACK] = ACTIONS(3195), - [anon_sym_RBRACE] = ACTIONS(3195), - [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_get] = ACTIONS(3193), - [anon_sym_set] = ACTIONS(3193), - [anon_sym_add] = ACTIONS(3193), - [anon_sym_remove] = ACTIONS(3193), - [anon_sym_init] = ACTIONS(3193), - [anon_sym_scoped] = ACTIONS(3193), - [anon_sym_var] = ACTIONS(3193), - [anon_sym_yield] = ACTIONS(3193), - [anon_sym_when] = ACTIONS(3193), - [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), - [aux_sym_preproc_if_token1] = ACTIONS(3195), + [aux_sym_function_pointer_type_repeat1] = STATE(3394), + [sym__identifier_token] = ACTIONS(2965), + [anon_sym_alias] = ACTIONS(2969), + [anon_sym_global] = ACTIONS(2969), + [anon_sym_LPAREN] = ACTIONS(2977), + [anon_sym_ref] = ACTIONS(5450), + [anon_sym_delegate] = ACTIONS(5172), + [anon_sym_file] = ACTIONS(2969), + [anon_sym_in] = ACTIONS(5452), + [anon_sym_out] = ACTIONS(5452), + [anon_sym_where] = ACTIONS(2969), + [anon_sym_notnull] = ACTIONS(2969), + [anon_sym_unmanaged] = ACTIONS(2969), + [anon_sym_scoped] = ACTIONS(5454), + [anon_sym_var] = ACTIONS(4705), + [sym_predefined_type] = ACTIONS(5456), + [anon_sym_yield] = ACTIONS(2969), + [anon_sym_when] = ACTIONS(2969), + [anon_sym_from] = ACTIONS(2969), + [anon_sym_into] = ACTIONS(2969), + [anon_sym_join] = ACTIONS(2969), + [anon_sym_on] = ACTIONS(2969), + [anon_sym_equals] = ACTIONS(2969), + [anon_sym_let] = ACTIONS(2969), + [anon_sym_orderby] = ACTIONS(2969), + [anon_sym_ascending] = ACTIONS(2969), + [anon_sym_descending] = ACTIONS(2969), + [anon_sym_group] = ACTIONS(2969), + [anon_sym_by] = ACTIONS(2969), + [anon_sym_select] = ACTIONS(2969), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -499361,6 +498832,26 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3394] = { + [sym__name] = STATE(6381), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(4068), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(4073), + [sym_type] = STATE(7678), + [sym_implicit_type] = STATE(7156), + [sym_array_type] = STATE(6671), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(6672), + [sym_pointer_type] = STATE(6672), + [sym__pointer_base_type] = STATE(7421), + [sym_function_pointer_type] = STATE(6672), + [sym_function_pointer_parameter] = STATE(7377), + [sym_ref_type] = STATE(7035), + [sym__ref_base_type] = STATE(7387), + [sym_scoped_type] = STATE(7035), + [sym_tuple_type] = STATE(6553), + [sym_identifier] = STATE(4081), + [sym__reserved_identifier] = STATE(3654), [sym_preproc_region] = STATE(3394), [sym_preproc_endregion] = STATE(3394), [sym_preproc_line] = STATE(3394), @@ -499370,56 +498861,36 @@ 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(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), + [aux_sym_function_pointer_type_repeat1] = STATE(3667), + [sym__identifier_token] = ACTIONS(2965), + [anon_sym_alias] = ACTIONS(2969), + [anon_sym_global] = ACTIONS(2969), + [anon_sym_LPAREN] = ACTIONS(2977), + [anon_sym_ref] = ACTIONS(5450), + [anon_sym_delegate] = ACTIONS(5172), + [anon_sym_file] = ACTIONS(2969), + [anon_sym_in] = ACTIONS(5452), + [anon_sym_out] = ACTIONS(5452), + [anon_sym_where] = ACTIONS(2969), + [anon_sym_notnull] = ACTIONS(2969), + [anon_sym_unmanaged] = ACTIONS(2969), + [anon_sym_scoped] = ACTIONS(5454), + [anon_sym_var] = ACTIONS(4705), + [sym_predefined_type] = ACTIONS(5456), + [anon_sym_yield] = ACTIONS(2969), + [anon_sym_when] = ACTIONS(2969), + [anon_sym_from] = ACTIONS(2969), + [anon_sym_into] = ACTIONS(2969), + [anon_sym_join] = ACTIONS(2969), + [anon_sym_on] = ACTIONS(2969), + [anon_sym_equals] = ACTIONS(2969), + [anon_sym_let] = ACTIONS(2969), + [anon_sym_orderby] = ACTIONS(2969), + [anon_sym_ascending] = ACTIONS(2969), + [anon_sym_descending] = ACTIONS(2969), + [anon_sym_group] = ACTIONS(2969), + [anon_sym_by] = ACTIONS(2969), + [anon_sym_select] = ACTIONS(2969), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -499441,56 +498912,56 @@ 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(5012), - [anon_sym_LBRACK] = ACTIONS(5012), - [anon_sym_COLON] = ACTIONS(5012), - [anon_sym_COMMA] = ACTIONS(5012), - [anon_sym_RBRACK] = ACTIONS(5012), - [anon_sym_LPAREN] = ACTIONS(5012), - [anon_sym_RPAREN] = ACTIONS(5012), - [anon_sym_RBRACE] = ACTIONS(5012), - [anon_sym_LT] = ACTIONS(5014), - [anon_sym_GT] = ACTIONS(5014), - [anon_sym_in] = ACTIONS(5012), - [anon_sym_QMARK] = ACTIONS(5014), - [anon_sym_BANG] = ACTIONS(5014), - [anon_sym_PLUS_PLUS] = ACTIONS(5012), - [anon_sym_DASH_DASH] = ACTIONS(5012), - [anon_sym_PLUS] = ACTIONS(5014), - [anon_sym_DASH] = ACTIONS(5014), - [anon_sym_STAR] = ACTIONS(5012), - [anon_sym_SLASH] = ACTIONS(5014), - [anon_sym_PERCENT] = ACTIONS(5012), - [anon_sym_CARET] = ACTIONS(5012), - [anon_sym_PIPE] = ACTIONS(5014), - [anon_sym_AMP] = ACTIONS(5014), - [anon_sym_LT_LT] = ACTIONS(5012), - [anon_sym_GT_GT] = ACTIONS(5014), - [anon_sym_GT_GT_GT] = ACTIONS(5012), - [anon_sym_EQ_EQ] = ACTIONS(5012), - [anon_sym_BANG_EQ] = ACTIONS(5012), - [anon_sym_GT_EQ] = ACTIONS(5012), - [anon_sym_LT_EQ] = ACTIONS(5012), - [anon_sym_DOT] = ACTIONS(5014), - [anon_sym_EQ_GT] = ACTIONS(5012), - [anon_sym_switch] = ACTIONS(5012), - [anon_sym_when] = ACTIONS(5012), - [anon_sym_DOT_DOT] = ACTIONS(5012), - [anon_sym_and] = ACTIONS(5012), - [anon_sym_or] = ACTIONS(5012), - [anon_sym_AMP_AMP] = ACTIONS(5012), - [anon_sym_PIPE_PIPE] = ACTIONS(5012), - [anon_sym_QMARK_QMARK] = ACTIONS(5012), - [anon_sym_on] = ACTIONS(5012), - [anon_sym_equals] = ACTIONS(5012), - [anon_sym_by] = ACTIONS(5012), - [anon_sym_as] = ACTIONS(5012), - [anon_sym_is] = ACTIONS(5012), - [anon_sym_DASH_GT] = ACTIONS(5012), - [anon_sym_with] = ACTIONS(5012), - [aux_sym_preproc_if_token3] = ACTIONS(5012), - [aux_sym_preproc_else_token1] = ACTIONS(5012), - [aux_sym_preproc_elif_token1] = ACTIONS(5012), + [anon_sym_EQ] = ACTIONS(5486), + [anon_sym_LBRACK] = ACTIONS(4811), + [anon_sym_LPAREN] = ACTIONS(4811), + [anon_sym_LT] = ACTIONS(4813), + [anon_sym_GT] = ACTIONS(4813), + [anon_sym_QMARK] = ACTIONS(4813), + [anon_sym_BANG] = ACTIONS(4813), + [anon_sym_PLUS_PLUS] = ACTIONS(4811), + [anon_sym_DASH_DASH] = ACTIONS(4811), + [anon_sym_PLUS] = ACTIONS(4813), + [anon_sym_DASH] = ACTIONS(4813), + [anon_sym_STAR] = ACTIONS(4813), + [anon_sym_SLASH] = ACTIONS(4813), + [anon_sym_PERCENT] = ACTIONS(4813), + [anon_sym_CARET] = ACTIONS(4813), + [anon_sym_PIPE] = ACTIONS(4813), + [anon_sym_AMP] = ACTIONS(4813), + [anon_sym_LT_LT] = ACTIONS(4813), + [anon_sym_GT_GT] = ACTIONS(4813), + [anon_sym_GT_GT_GT] = ACTIONS(4813), + [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(4813), + [anon_sym_switch] = ACTIONS(4811), + [anon_sym_DOT_DOT] = ACTIONS(4811), + [anon_sym_and] = ACTIONS(4811), + [anon_sym_or] = ACTIONS(4811), + [anon_sym_PLUS_EQ] = ACTIONS(5488), + [anon_sym_DASH_EQ] = ACTIONS(5488), + [anon_sym_STAR_EQ] = ACTIONS(5488), + [anon_sym_SLASH_EQ] = ACTIONS(5488), + [anon_sym_PERCENT_EQ] = ACTIONS(5488), + [anon_sym_AMP_EQ] = ACTIONS(5488), + [anon_sym_CARET_EQ] = ACTIONS(5488), + [anon_sym_PIPE_EQ] = ACTIONS(5488), + [anon_sym_LT_LT_EQ] = ACTIONS(5488), + [anon_sym_GT_GT_EQ] = ACTIONS(5488), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(5488), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(5488), + [anon_sym_AMP_AMP] = ACTIONS(4811), + [anon_sym_PIPE_PIPE] = ACTIONS(4811), + [anon_sym_QMARK_QMARK] = ACTIONS(4813), + [anon_sym_into] = ACTIONS(4811), + [anon_sym_on] = 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_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -499503,26 +498974,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3396] = { - [sym_parameter_list] = STATE(7311), - [sym__name] = STATE(4390), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(4096), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(4109), - [sym_type] = STATE(5915), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym__lambda_parameters] = STATE(7489), - [sym_identifier] = STATE(5763), - [sym__reserved_identifier] = STATE(3691), [sym_preproc_region] = STATE(3396), [sym_preproc_endregion] = STATE(3396), [sym_preproc_line] = STATE(3396), @@ -499532,36 +498983,56 @@ 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), - [aux_sym__lambda_expression_init_repeat1] = STATE(5863), - [sym__identifier_token] = ACTIONS(2967), - [anon_sym_alias] = ACTIONS(2971), - [anon_sym_global] = ACTIONS(2971), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LPAREN] = ACTIONS(3794), - [anon_sym_ref] = ACTIONS(3452), - [anon_sym_delegate] = ACTIONS(5502), - [anon_sym_async] = ACTIONS(1047), - [anon_sym_file] = ACTIONS(2971), - [anon_sym_where] = ACTIONS(2971), - [anon_sym_notnull] = ACTIONS(2971), - [anon_sym_unmanaged] = ACTIONS(2971), - [anon_sym_scoped] = ACTIONS(2997), - [anon_sym_var] = ACTIONS(2999), - [sym_predefined_type] = ACTIONS(3001), - [anon_sym_yield] = ACTIONS(2971), - [anon_sym_when] = ACTIONS(2971), - [anon_sym_from] = ACTIONS(2971), - [anon_sym_into] = ACTIONS(2971), - [anon_sym_join] = ACTIONS(2971), - [anon_sym_on] = ACTIONS(2971), - [anon_sym_equals] = ACTIONS(2971), - [anon_sym_let] = ACTIONS(2971), - [anon_sym_orderby] = ACTIONS(2971), - [anon_sym_ascending] = ACTIONS(2971), - [anon_sym_descending] = ACTIONS(2971), - [anon_sym_group] = ACTIONS(2971), - [anon_sym_by] = ACTIONS(2971), - [anon_sym_select] = ACTIONS(2971), + [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_RBRACE] = ACTIONS(4933), + [anon_sym_LT] = ACTIONS(4935), + [anon_sym_GT] = ACTIONS(4935), + [anon_sym_in] = 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), @@ -499583,56 +499054,56 @@ 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(5415), - [anon_sym_LBRACK] = ACTIONS(5415), - [anon_sym_COLON] = ACTIONS(5415), - [anon_sym_COMMA] = ACTIONS(5415), - [anon_sym_RBRACK] = ACTIONS(5415), - [anon_sym_LPAREN] = ACTIONS(5415), - [anon_sym_RPAREN] = ACTIONS(5415), - [anon_sym_RBRACE] = ACTIONS(5415), - [anon_sym_LT] = ACTIONS(5417), - [anon_sym_GT] = ACTIONS(5417), - [anon_sym_in] = ACTIONS(5415), - [anon_sym_QMARK] = ACTIONS(5417), - [anon_sym_BANG] = ACTIONS(5417), - [anon_sym_PLUS_PLUS] = ACTIONS(5415), - [anon_sym_DASH_DASH] = ACTIONS(5415), - [anon_sym_PLUS] = ACTIONS(5417), - [anon_sym_DASH] = ACTIONS(5417), - [anon_sym_STAR] = ACTIONS(5415), - [anon_sym_SLASH] = ACTIONS(5417), - [anon_sym_PERCENT] = ACTIONS(5415), - [anon_sym_CARET] = ACTIONS(5415), - [anon_sym_PIPE] = ACTIONS(5417), - [anon_sym_AMP] = ACTIONS(5417), - [anon_sym_LT_LT] = ACTIONS(5415), - [anon_sym_GT_GT] = ACTIONS(5417), - [anon_sym_GT_GT_GT] = ACTIONS(5415), - [anon_sym_EQ_EQ] = ACTIONS(5415), - [anon_sym_BANG_EQ] = ACTIONS(5415), - [anon_sym_GT_EQ] = ACTIONS(5415), - [anon_sym_LT_EQ] = ACTIONS(5415), - [anon_sym_DOT] = ACTIONS(5417), - [anon_sym_EQ_GT] = ACTIONS(5415), - [anon_sym_switch] = ACTIONS(5415), - [anon_sym_when] = ACTIONS(5415), - [anon_sym_DOT_DOT] = ACTIONS(5415), - [anon_sym_and] = ACTIONS(5415), - [anon_sym_or] = ACTIONS(5415), - [anon_sym_AMP_AMP] = ACTIONS(5415), - [anon_sym_PIPE_PIPE] = ACTIONS(5415), - [anon_sym_QMARK_QMARK] = ACTIONS(5415), - [anon_sym_on] = ACTIONS(5415), - [anon_sym_equals] = ACTIONS(5415), - [anon_sym_by] = ACTIONS(5415), - [anon_sym_as] = ACTIONS(5415), - [anon_sym_is] = ACTIONS(5415), - [anon_sym_DASH_GT] = ACTIONS(5415), - [anon_sym_with] = ACTIONS(5415), - [aux_sym_preproc_if_token3] = ACTIONS(5415), - [aux_sym_preproc_else_token1] = ACTIONS(5415), - [aux_sym_preproc_elif_token1] = ACTIONS(5415), + [anon_sym_SEMI] = ACTIONS(4241), + [anon_sym_LBRACK] = ACTIONS(5376), + [anon_sym_COLON] = ACTIONS(4241), + [anon_sym_COMMA] = ACTIONS(4241), + [anon_sym_RBRACK] = ACTIONS(4241), + [anon_sym_LPAREN] = ACTIONS(5376), + [anon_sym_RPAREN] = ACTIONS(4241), + [anon_sym_RBRACE] = ACTIONS(4241), + [anon_sym_LT] = ACTIONS(5379), + [anon_sym_GT] = ACTIONS(5379), + [anon_sym_in] = ACTIONS(4241), + [anon_sym_QMARK] = ACTIONS(5379), + [anon_sym_BANG] = ACTIONS(5379), + [anon_sym_PLUS_PLUS] = ACTIONS(5376), + [anon_sym_DASH_DASH] = ACTIONS(5376), + [anon_sym_PLUS] = ACTIONS(5379), + [anon_sym_DASH] = ACTIONS(5379), + [anon_sym_STAR] = ACTIONS(5376), + [anon_sym_SLASH] = ACTIONS(5379), + [anon_sym_PERCENT] = ACTIONS(5376), + [anon_sym_CARET] = ACTIONS(5376), + [anon_sym_PIPE] = ACTIONS(5379), + [anon_sym_AMP] = ACTIONS(5379), + [anon_sym_LT_LT] = ACTIONS(5376), + [anon_sym_GT_GT] = ACTIONS(5379), + [anon_sym_GT_GT_GT] = ACTIONS(5376), + [anon_sym_EQ_EQ] = ACTIONS(5376), + [anon_sym_BANG_EQ] = ACTIONS(5376), + [anon_sym_GT_EQ] = ACTIONS(5376), + [anon_sym_LT_EQ] = ACTIONS(5376), + [anon_sym_DOT] = ACTIONS(5379), + [anon_sym_EQ_GT] = ACTIONS(4241), + [anon_sym_switch] = ACTIONS(5376), + [anon_sym_when] = ACTIONS(4241), + [anon_sym_DOT_DOT] = ACTIONS(5376), + [anon_sym_and] = ACTIONS(4241), + [anon_sym_or] = ACTIONS(4241), + [anon_sym_AMP_AMP] = ACTIONS(5376), + [anon_sym_PIPE_PIPE] = ACTIONS(5376), + [anon_sym_QMARK_QMARK] = ACTIONS(5376), + [anon_sym_on] = ACTIONS(4241), + [anon_sym_equals] = ACTIONS(4241), + [anon_sym_by] = ACTIONS(4241), + [anon_sym_as] = ACTIONS(5376), + [anon_sym_is] = ACTIONS(5376), + [anon_sym_DASH_GT] = ACTIONS(5376), + [anon_sym_with] = ACTIONS(5376), + [aux_sym_preproc_if_token3] = ACTIONS(4241), + [aux_sym_preproc_else_token1] = ACTIONS(4241), + [aux_sym_preproc_elif_token1] = ACTIONS(4241), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -499645,26 +499116,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3398] = { - [sym__name] = STATE(6430), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(4096), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(4109), - [sym_type] = STATE(7723), - [sym_implicit_type] = STATE(7201), - [sym_array_type] = STATE(6648), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(6650), - [sym_pointer_type] = STATE(6650), - [sym__pointer_base_type] = STATE(7446), - [sym_function_pointer_type] = STATE(6650), - [sym_function_pointer_parameter] = STATE(7574), - [sym_ref_type] = STATE(7266), - [sym__ref_base_type] = STATE(7583), - [sym_scoped_type] = STATE(7266), - [sym_tuple_type] = STATE(6474), - [sym_identifier] = STATE(4087), - [sym__reserved_identifier] = STATE(3691), [sym_preproc_region] = STATE(3398), [sym_preproc_endregion] = STATE(3398), [sym_preproc_line] = STATE(3398), @@ -499674,36 +499125,56 @@ 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), - [aux_sym_function_pointer_type_repeat1] = STATE(3399), - [sym__identifier_token] = ACTIONS(2967), - [anon_sym_alias] = ACTIONS(2971), - [anon_sym_global] = ACTIONS(2971), - [anon_sym_LPAREN] = ACTIONS(2979), - [anon_sym_ref] = ACTIONS(5472), - [anon_sym_delegate] = ACTIONS(5030), - [anon_sym_file] = ACTIONS(2971), - [anon_sym_in] = ACTIONS(5474), - [anon_sym_out] = ACTIONS(5474), - [anon_sym_where] = ACTIONS(2971), - [anon_sym_notnull] = ACTIONS(2971), - [anon_sym_unmanaged] = ACTIONS(2971), - [anon_sym_scoped] = ACTIONS(5476), - [anon_sym_var] = ACTIONS(4737), - [sym_predefined_type] = ACTIONS(5478), - [anon_sym_yield] = ACTIONS(2971), - [anon_sym_when] = ACTIONS(2971), - [anon_sym_from] = ACTIONS(2971), - [anon_sym_into] = ACTIONS(2971), - [anon_sym_join] = ACTIONS(2971), - [anon_sym_on] = ACTIONS(2971), - [anon_sym_equals] = ACTIONS(2971), - [anon_sym_let] = ACTIONS(2971), - [anon_sym_orderby] = ACTIONS(2971), - [anon_sym_ascending] = ACTIONS(2971), - [anon_sym_descending] = ACTIONS(2971), - [anon_sym_group] = ACTIONS(2971), - [anon_sym_by] = ACTIONS(2971), - [anon_sym_select] = ACTIONS(2971), + [anon_sym_EQ] = ACTIONS(5490), + [anon_sym_LBRACK] = ACTIONS(4811), + [anon_sym_COLON] = ACTIONS(4811), + [anon_sym_COMMA] = ACTIONS(4811), + [anon_sym_LPAREN] = ACTIONS(4811), + [anon_sym_RPAREN] = ACTIONS(4811), + [anon_sym_RBRACE] = ACTIONS(4811), + [anon_sym_LT] = ACTIONS(4813), + [anon_sym_GT] = ACTIONS(4813), + [anon_sym_QMARK] = ACTIONS(4813), + [anon_sym_BANG] = ACTIONS(4813), + [anon_sym_PLUS_PLUS] = ACTIONS(4811), + [anon_sym_DASH_DASH] = ACTIONS(4811), + [anon_sym_PLUS] = ACTIONS(4813), + [anon_sym_DASH] = ACTIONS(4813), + [anon_sym_STAR] = ACTIONS(4813), + [anon_sym_SLASH] = ACTIONS(4813), + [anon_sym_PERCENT] = ACTIONS(4813), + [anon_sym_CARET] = ACTIONS(4813), + [anon_sym_PIPE] = ACTIONS(4813), + [anon_sym_AMP] = ACTIONS(4813), + [anon_sym_LT_LT] = ACTIONS(4813), + [anon_sym_GT_GT] = ACTIONS(4813), + [anon_sym_GT_GT_GT] = ACTIONS(4813), + [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(4813), + [anon_sym_switch] = ACTIONS(4811), + [anon_sym_DOT_DOT] = ACTIONS(4811), + [anon_sym_PLUS_EQ] = ACTIONS(5492), + [anon_sym_DASH_EQ] = ACTIONS(5492), + [anon_sym_STAR_EQ] = ACTIONS(5492), + [anon_sym_SLASH_EQ] = ACTIONS(5492), + [anon_sym_PERCENT_EQ] = ACTIONS(5492), + [anon_sym_AMP_EQ] = ACTIONS(5492), + [anon_sym_CARET_EQ] = ACTIONS(5492), + [anon_sym_PIPE_EQ] = ACTIONS(5492), + [anon_sym_LT_LT_EQ] = ACTIONS(5492), + [anon_sym_GT_GT_EQ] = ACTIONS(5492), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(5492), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(5492), + [anon_sym_AMP_AMP] = ACTIONS(4811), + [anon_sym_PIPE_PIPE] = ACTIONS(4811), + [anon_sym_QMARK_QMARK] = ACTIONS(4813), + [anon_sym_as] = ACTIONS(4811), + [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), @@ -499716,26 +499187,26 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3399] = { - [sym__name] = STATE(6430), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(4096), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(4109), - [sym_type] = STATE(7354), - [sym_implicit_type] = STATE(7201), - [sym_array_type] = STATE(6648), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(6650), - [sym_pointer_type] = STATE(6650), - [sym__pointer_base_type] = STATE(7446), - [sym_function_pointer_type] = STATE(6650), - [sym_function_pointer_parameter] = STATE(7574), - [sym_ref_type] = STATE(7266), - [sym__ref_base_type] = STATE(7583), - [sym_scoped_type] = STATE(7266), - [sym_tuple_type] = STATE(6474), - [sym_identifier] = STATE(4087), - [sym__reserved_identifier] = STATE(3691), + [sym__name] = STATE(6381), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(4068), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(4073), + [sym_type] = STATE(7575), + [sym_implicit_type] = STATE(7156), + [sym_array_type] = STATE(6671), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(6672), + [sym_pointer_type] = STATE(6672), + [sym__pointer_base_type] = STATE(7421), + [sym_function_pointer_type] = STATE(6672), + [sym_function_pointer_parameter] = STATE(7377), + [sym_ref_type] = STATE(7035), + [sym__ref_base_type] = STATE(7387), + [sym_scoped_type] = STATE(7035), + [sym_tuple_type] = STATE(6553), + [sym_identifier] = STATE(4081), + [sym__reserved_identifier] = STATE(3654), [sym_preproc_region] = STATE(3399), [sym_preproc_endregion] = STATE(3399), [sym_preproc_line] = STATE(3399), @@ -499745,36 +499216,36 @@ 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), - [aux_sym_function_pointer_type_repeat1] = STATE(3670), - [sym__identifier_token] = ACTIONS(2967), - [anon_sym_alias] = ACTIONS(2971), - [anon_sym_global] = ACTIONS(2971), - [anon_sym_LPAREN] = ACTIONS(2979), - [anon_sym_ref] = ACTIONS(5472), - [anon_sym_delegate] = ACTIONS(5030), - [anon_sym_file] = ACTIONS(2971), - [anon_sym_in] = ACTIONS(5474), - [anon_sym_out] = ACTIONS(5474), - [anon_sym_where] = ACTIONS(2971), - [anon_sym_notnull] = ACTIONS(2971), - [anon_sym_unmanaged] = ACTIONS(2971), - [anon_sym_scoped] = ACTIONS(5476), - [anon_sym_var] = ACTIONS(4737), - [sym_predefined_type] = ACTIONS(5478), - [anon_sym_yield] = ACTIONS(2971), - [anon_sym_when] = ACTIONS(2971), - [anon_sym_from] = ACTIONS(2971), - [anon_sym_into] = ACTIONS(2971), - [anon_sym_join] = ACTIONS(2971), - [anon_sym_on] = ACTIONS(2971), - [anon_sym_equals] = ACTIONS(2971), - [anon_sym_let] = ACTIONS(2971), - [anon_sym_orderby] = ACTIONS(2971), - [anon_sym_ascending] = ACTIONS(2971), - [anon_sym_descending] = ACTIONS(2971), - [anon_sym_group] = ACTIONS(2971), - [anon_sym_by] = ACTIONS(2971), - [anon_sym_select] = ACTIONS(2971), + [aux_sym_function_pointer_type_repeat1] = STATE(3400), + [sym__identifier_token] = ACTIONS(2965), + [anon_sym_alias] = ACTIONS(2969), + [anon_sym_global] = ACTIONS(2969), + [anon_sym_LPAREN] = ACTIONS(2977), + [anon_sym_ref] = ACTIONS(5450), + [anon_sym_delegate] = ACTIONS(5172), + [anon_sym_file] = ACTIONS(2969), + [anon_sym_in] = ACTIONS(5452), + [anon_sym_out] = ACTIONS(5452), + [anon_sym_where] = ACTIONS(2969), + [anon_sym_notnull] = ACTIONS(2969), + [anon_sym_unmanaged] = ACTIONS(2969), + [anon_sym_scoped] = ACTIONS(5454), + [anon_sym_var] = ACTIONS(4705), + [sym_predefined_type] = ACTIONS(5456), + [anon_sym_yield] = ACTIONS(2969), + [anon_sym_when] = ACTIONS(2969), + [anon_sym_from] = ACTIONS(2969), + [anon_sym_into] = ACTIONS(2969), + [anon_sym_join] = ACTIONS(2969), + [anon_sym_on] = ACTIONS(2969), + [anon_sym_equals] = ACTIONS(2969), + [anon_sym_let] = ACTIONS(2969), + [anon_sym_orderby] = ACTIONS(2969), + [anon_sym_ascending] = ACTIONS(2969), + [anon_sym_descending] = ACTIONS(2969), + [anon_sym_group] = ACTIONS(2969), + [anon_sym_by] = ACTIONS(2969), + [anon_sym_select] = ACTIONS(2969), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -499787,26 +499258,26 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3400] = { - [sym__name] = STATE(6430), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(4096), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(4109), - [sym_type] = STATE(7354), - [sym_implicit_type] = STATE(7201), - [sym_array_type] = STATE(6648), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(6650), - [sym_pointer_type] = STATE(6650), - [sym__pointer_base_type] = STATE(7446), - [sym_function_pointer_type] = STATE(6650), - [sym_function_pointer_parameter] = STATE(7574), - [sym_ref_type] = STATE(7266), - [sym__ref_base_type] = STATE(7583), - [sym_scoped_type] = STATE(7266), - [sym_tuple_type] = STATE(6474), - [sym_identifier] = STATE(4087), - [sym__reserved_identifier] = STATE(3691), + [sym__name] = STATE(6381), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(4068), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(4073), + [sym_type] = STATE(7596), + [sym_implicit_type] = STATE(7156), + [sym_array_type] = STATE(6671), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(6672), + [sym_pointer_type] = STATE(6672), + [sym__pointer_base_type] = STATE(7421), + [sym_function_pointer_type] = STATE(6672), + [sym_function_pointer_parameter] = STATE(7377), + [sym_ref_type] = STATE(7035), + [sym__ref_base_type] = STATE(7387), + [sym_scoped_type] = STATE(7035), + [sym_tuple_type] = STATE(6553), + [sym_identifier] = STATE(4081), + [sym__reserved_identifier] = STATE(3654), [sym_preproc_region] = STATE(3400), [sym_preproc_endregion] = STATE(3400), [sym_preproc_line] = STATE(3400), @@ -499816,36 +499287,36 @@ 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(3401), - [sym__identifier_token] = ACTIONS(2967), - [anon_sym_alias] = ACTIONS(2971), - [anon_sym_global] = ACTIONS(2971), - [anon_sym_LPAREN] = ACTIONS(2979), - [anon_sym_ref] = ACTIONS(5472), - [anon_sym_delegate] = ACTIONS(5030), - [anon_sym_file] = ACTIONS(2971), - [anon_sym_in] = ACTIONS(5474), - [anon_sym_out] = ACTIONS(5474), - [anon_sym_where] = ACTIONS(2971), - [anon_sym_notnull] = ACTIONS(2971), - [anon_sym_unmanaged] = ACTIONS(2971), - [anon_sym_scoped] = ACTIONS(5476), - [anon_sym_var] = ACTIONS(4737), - [sym_predefined_type] = ACTIONS(5478), - [anon_sym_yield] = ACTIONS(2971), - [anon_sym_when] = ACTIONS(2971), - [anon_sym_from] = ACTIONS(2971), - [anon_sym_into] = ACTIONS(2971), - [anon_sym_join] = ACTIONS(2971), - [anon_sym_on] = ACTIONS(2971), - [anon_sym_equals] = ACTIONS(2971), - [anon_sym_let] = ACTIONS(2971), - [anon_sym_orderby] = ACTIONS(2971), - [anon_sym_ascending] = ACTIONS(2971), - [anon_sym_descending] = ACTIONS(2971), - [anon_sym_group] = ACTIONS(2971), - [anon_sym_by] = ACTIONS(2971), - [anon_sym_select] = ACTIONS(2971), + [aux_sym_function_pointer_type_repeat1] = STATE(3667), + [sym__identifier_token] = ACTIONS(2965), + [anon_sym_alias] = ACTIONS(2969), + [anon_sym_global] = ACTIONS(2969), + [anon_sym_LPAREN] = ACTIONS(2977), + [anon_sym_ref] = ACTIONS(5450), + [anon_sym_delegate] = ACTIONS(5172), + [anon_sym_file] = ACTIONS(2969), + [anon_sym_in] = ACTIONS(5452), + [anon_sym_out] = ACTIONS(5452), + [anon_sym_where] = ACTIONS(2969), + [anon_sym_notnull] = ACTIONS(2969), + [anon_sym_unmanaged] = ACTIONS(2969), + [anon_sym_scoped] = ACTIONS(5454), + [anon_sym_var] = ACTIONS(4705), + [sym_predefined_type] = ACTIONS(5456), + [anon_sym_yield] = ACTIONS(2969), + [anon_sym_when] = ACTIONS(2969), + [anon_sym_from] = ACTIONS(2969), + [anon_sym_into] = ACTIONS(2969), + [anon_sym_join] = ACTIONS(2969), + [anon_sym_on] = ACTIONS(2969), + [anon_sym_equals] = ACTIONS(2969), + [anon_sym_let] = ACTIONS(2969), + [anon_sym_orderby] = ACTIONS(2969), + [anon_sym_ascending] = ACTIONS(2969), + [anon_sym_descending] = ACTIONS(2969), + [anon_sym_group] = ACTIONS(2969), + [anon_sym_by] = ACTIONS(2969), + [anon_sym_select] = ACTIONS(2969), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -499858,26 +499329,26 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3401] = { - [sym__name] = STATE(6430), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(4096), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(4109), - [sym_type] = STATE(7386), - [sym_implicit_type] = STATE(7201), - [sym_array_type] = STATE(6648), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(6650), - [sym_pointer_type] = STATE(6650), - [sym__pointer_base_type] = STATE(7446), - [sym_function_pointer_type] = STATE(6650), - [sym_function_pointer_parameter] = STATE(7574), - [sym_ref_type] = STATE(7266), - [sym__ref_base_type] = STATE(7583), - [sym_scoped_type] = STATE(7266), - [sym_tuple_type] = STATE(6474), - [sym_identifier] = STATE(4087), - [sym__reserved_identifier] = STATE(3691), + [sym__name] = STATE(6381), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(4068), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(4073), + [sym_type] = STATE(7596), + [sym_implicit_type] = STATE(7156), + [sym_array_type] = STATE(6671), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(6672), + [sym_pointer_type] = STATE(6672), + [sym__pointer_base_type] = STATE(7421), + [sym_function_pointer_type] = STATE(6672), + [sym_function_pointer_parameter] = STATE(7377), + [sym_ref_type] = STATE(7035), + [sym__ref_base_type] = STATE(7387), + [sym_scoped_type] = STATE(7035), + [sym_tuple_type] = STATE(6553), + [sym_identifier] = STATE(4081), + [sym__reserved_identifier] = STATE(3654), [sym_preproc_region] = STATE(3401), [sym_preproc_endregion] = STATE(3401), [sym_preproc_line] = STATE(3401), @@ -499887,36 +499358,36 @@ 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_function_pointer_type_repeat1] = STATE(3670), - [sym__identifier_token] = ACTIONS(2967), - [anon_sym_alias] = ACTIONS(2971), - [anon_sym_global] = ACTIONS(2971), - [anon_sym_LPAREN] = ACTIONS(2979), - [anon_sym_ref] = ACTIONS(5472), - [anon_sym_delegate] = ACTIONS(5030), - [anon_sym_file] = ACTIONS(2971), - [anon_sym_in] = ACTIONS(5474), - [anon_sym_out] = ACTIONS(5474), - [anon_sym_where] = ACTIONS(2971), - [anon_sym_notnull] = ACTIONS(2971), - [anon_sym_unmanaged] = ACTIONS(2971), - [anon_sym_scoped] = ACTIONS(5476), - [anon_sym_var] = ACTIONS(4737), - [sym_predefined_type] = ACTIONS(5478), - [anon_sym_yield] = ACTIONS(2971), - [anon_sym_when] = ACTIONS(2971), - [anon_sym_from] = ACTIONS(2971), - [anon_sym_into] = ACTIONS(2971), - [anon_sym_join] = ACTIONS(2971), - [anon_sym_on] = ACTIONS(2971), - [anon_sym_equals] = ACTIONS(2971), - [anon_sym_let] = ACTIONS(2971), - [anon_sym_orderby] = ACTIONS(2971), - [anon_sym_ascending] = ACTIONS(2971), - [anon_sym_descending] = ACTIONS(2971), - [anon_sym_group] = ACTIONS(2971), - [anon_sym_by] = ACTIONS(2971), - [anon_sym_select] = ACTIONS(2971), + [aux_sym_function_pointer_type_repeat1] = STATE(3402), + [sym__identifier_token] = ACTIONS(2965), + [anon_sym_alias] = ACTIONS(2969), + [anon_sym_global] = ACTIONS(2969), + [anon_sym_LPAREN] = ACTIONS(2977), + [anon_sym_ref] = ACTIONS(5450), + [anon_sym_delegate] = ACTIONS(5172), + [anon_sym_file] = ACTIONS(2969), + [anon_sym_in] = ACTIONS(5452), + [anon_sym_out] = ACTIONS(5452), + [anon_sym_where] = ACTIONS(2969), + [anon_sym_notnull] = ACTIONS(2969), + [anon_sym_unmanaged] = ACTIONS(2969), + [anon_sym_scoped] = ACTIONS(5454), + [anon_sym_var] = ACTIONS(4705), + [sym_predefined_type] = ACTIONS(5456), + [anon_sym_yield] = ACTIONS(2969), + [anon_sym_when] = ACTIONS(2969), + [anon_sym_from] = ACTIONS(2969), + [anon_sym_into] = ACTIONS(2969), + [anon_sym_join] = ACTIONS(2969), + [anon_sym_on] = ACTIONS(2969), + [anon_sym_equals] = ACTIONS(2969), + [anon_sym_let] = ACTIONS(2969), + [anon_sym_orderby] = ACTIONS(2969), + [anon_sym_ascending] = ACTIONS(2969), + [anon_sym_descending] = ACTIONS(2969), + [anon_sym_group] = ACTIONS(2969), + [anon_sym_by] = ACTIONS(2969), + [anon_sym_select] = ACTIONS(2969), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -499929,6 +499400,26 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3402] = { + [sym__name] = STATE(6381), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(4068), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(4073), + [sym_type] = STATE(7600), + [sym_implicit_type] = STATE(7156), + [sym_array_type] = STATE(6671), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(6672), + [sym_pointer_type] = STATE(6672), + [sym__pointer_base_type] = STATE(7421), + [sym_function_pointer_type] = STATE(6672), + [sym_function_pointer_parameter] = STATE(7377), + [sym_ref_type] = STATE(7035), + [sym__ref_base_type] = STATE(7387), + [sym_scoped_type] = STATE(7035), + [sym_tuple_type] = STATE(6553), + [sym_identifier] = STATE(4081), + [sym__reserved_identifier] = STATE(3654), [sym_preproc_region] = STATE(3402), [sym_preproc_endregion] = STATE(3402), [sym_preproc_line] = STATE(3402), @@ -499938,56 +499429,36 @@ 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_EQ] = ACTIONS(5504), - [anon_sym_LBRACK] = ACTIONS(4860), - [anon_sym_LPAREN] = ACTIONS(4860), - [anon_sym_LT] = ACTIONS(4862), - [anon_sym_GT] = ACTIONS(4862), - [anon_sym_QMARK] = ACTIONS(4862), - [anon_sym_BANG] = ACTIONS(4862), - [anon_sym_PLUS_PLUS] = ACTIONS(4860), - [anon_sym_DASH_DASH] = ACTIONS(4860), - [anon_sym_PLUS] = ACTIONS(4862), - [anon_sym_DASH] = ACTIONS(4862), - [anon_sym_STAR] = ACTIONS(4862), - [anon_sym_SLASH] = ACTIONS(4862), - [anon_sym_PERCENT] = ACTIONS(4862), - [anon_sym_CARET] = ACTIONS(4862), - [anon_sym_PIPE] = ACTIONS(4862), - [anon_sym_AMP] = ACTIONS(4862), - [anon_sym_LT_LT] = ACTIONS(4862), - [anon_sym_GT_GT] = ACTIONS(4862), - [anon_sym_GT_GT_GT] = ACTIONS(4862), - [anon_sym_EQ_EQ] = ACTIONS(4860), - [anon_sym_BANG_EQ] = ACTIONS(4860), - [anon_sym_GT_EQ] = ACTIONS(4860), - [anon_sym_LT_EQ] = ACTIONS(4860), - [anon_sym_DOT] = ACTIONS(4862), - [anon_sym_switch] = ACTIONS(4860), - [anon_sym_DOT_DOT] = ACTIONS(4860), - [anon_sym_and] = ACTIONS(4860), - [anon_sym_or] = ACTIONS(4860), - [anon_sym_PLUS_EQ] = ACTIONS(5506), - [anon_sym_DASH_EQ] = ACTIONS(5506), - [anon_sym_STAR_EQ] = ACTIONS(5506), - [anon_sym_SLASH_EQ] = ACTIONS(5506), - [anon_sym_PERCENT_EQ] = ACTIONS(5506), - [anon_sym_AMP_EQ] = ACTIONS(5506), - [anon_sym_CARET_EQ] = ACTIONS(5506), - [anon_sym_PIPE_EQ] = ACTIONS(5506), - [anon_sym_LT_LT_EQ] = ACTIONS(5506), - [anon_sym_GT_GT_EQ] = ACTIONS(5506), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(5506), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(5506), - [anon_sym_AMP_AMP] = ACTIONS(4860), - [anon_sym_PIPE_PIPE] = ACTIONS(4860), - [anon_sym_QMARK_QMARK] = ACTIONS(4862), - [anon_sym_into] = ACTIONS(4860), - [anon_sym_equals] = ACTIONS(4860), - [anon_sym_as] = ACTIONS(4860), - [anon_sym_is] = ACTIONS(4860), - [anon_sym_DASH_GT] = ACTIONS(4860), - [anon_sym_with] = ACTIONS(4860), + [aux_sym_function_pointer_type_repeat1] = STATE(3667), + [sym__identifier_token] = ACTIONS(2965), + [anon_sym_alias] = ACTIONS(2969), + [anon_sym_global] = ACTIONS(2969), + [anon_sym_LPAREN] = ACTIONS(2977), + [anon_sym_ref] = ACTIONS(5450), + [anon_sym_delegate] = ACTIONS(5172), + [anon_sym_file] = ACTIONS(2969), + [anon_sym_in] = ACTIONS(5452), + [anon_sym_out] = ACTIONS(5452), + [anon_sym_where] = ACTIONS(2969), + [anon_sym_notnull] = ACTIONS(2969), + [anon_sym_unmanaged] = ACTIONS(2969), + [anon_sym_scoped] = ACTIONS(5454), + [anon_sym_var] = ACTIONS(4705), + [sym_predefined_type] = ACTIONS(5456), + [anon_sym_yield] = ACTIONS(2969), + [anon_sym_when] = ACTIONS(2969), + [anon_sym_from] = ACTIONS(2969), + [anon_sym_into] = ACTIONS(2969), + [anon_sym_join] = ACTIONS(2969), + [anon_sym_on] = ACTIONS(2969), + [anon_sym_equals] = ACTIONS(2969), + [anon_sym_let] = ACTIONS(2969), + [anon_sym_orderby] = ACTIONS(2969), + [anon_sym_ascending] = ACTIONS(2969), + [anon_sym_descending] = ACTIONS(2969), + [anon_sym_group] = ACTIONS(2969), + [anon_sym_by] = ACTIONS(2969), + [anon_sym_select] = ACTIONS(2969), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -500000,26 +499471,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3403] = { - [sym__name] = STATE(6430), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(4096), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(4109), - [sym_type] = STATE(7508), - [sym_implicit_type] = STATE(7201), - [sym_array_type] = STATE(6648), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(6650), - [sym_pointer_type] = STATE(6650), - [sym__pointer_base_type] = STATE(7446), - [sym_function_pointer_type] = STATE(6650), - [sym_function_pointer_parameter] = STATE(7574), - [sym_ref_type] = STATE(7266), - [sym__ref_base_type] = STATE(7583), - [sym_scoped_type] = STATE(7266), - [sym_tuple_type] = STATE(6474), - [sym_identifier] = STATE(4087), - [sym__reserved_identifier] = STATE(3691), [sym_preproc_region] = STATE(3403), [sym_preproc_endregion] = STATE(3403), [sym_preproc_line] = STATE(3403), @@ -500029,36 +499480,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), - [aux_sym_function_pointer_type_repeat1] = STATE(3404), - [sym__identifier_token] = ACTIONS(2967), - [anon_sym_alias] = ACTIONS(2971), - [anon_sym_global] = ACTIONS(2971), - [anon_sym_LPAREN] = ACTIONS(2979), - [anon_sym_ref] = ACTIONS(5472), - [anon_sym_delegate] = ACTIONS(5030), - [anon_sym_file] = ACTIONS(2971), - [anon_sym_in] = ACTIONS(5474), - [anon_sym_out] = ACTIONS(5474), - [anon_sym_where] = ACTIONS(2971), - [anon_sym_notnull] = ACTIONS(2971), - [anon_sym_unmanaged] = ACTIONS(2971), - [anon_sym_scoped] = ACTIONS(5476), - [anon_sym_var] = ACTIONS(4737), - [sym_predefined_type] = ACTIONS(5478), - [anon_sym_yield] = ACTIONS(2971), - [anon_sym_when] = ACTIONS(2971), - [anon_sym_from] = ACTIONS(2971), - [anon_sym_into] = ACTIONS(2971), - [anon_sym_join] = ACTIONS(2971), - [anon_sym_on] = ACTIONS(2971), - [anon_sym_equals] = ACTIONS(2971), - [anon_sym_let] = ACTIONS(2971), - [anon_sym_orderby] = ACTIONS(2971), - [anon_sym_ascending] = ACTIONS(2971), - [anon_sym_descending] = ACTIONS(2971), - [anon_sym_group] = ACTIONS(2971), - [anon_sym_by] = ACTIONS(2971), - [anon_sym_select] = ACTIONS(2971), + [anon_sym_EQ] = ACTIONS(5494), + [anon_sym_LBRACK] = ACTIONS(4811), + [anon_sym_LPAREN] = ACTIONS(4811), + [anon_sym_LT] = ACTIONS(4813), + [anon_sym_GT] = ACTIONS(4813), + [anon_sym_QMARK] = ACTIONS(4813), + [anon_sym_BANG] = ACTIONS(4813), + [anon_sym_PLUS_PLUS] = ACTIONS(4811), + [anon_sym_DASH_DASH] = ACTIONS(4811), + [anon_sym_PLUS] = ACTIONS(4813), + [anon_sym_DASH] = ACTIONS(4813), + [anon_sym_STAR] = ACTIONS(4813), + [anon_sym_SLASH] = ACTIONS(4813), + [anon_sym_PERCENT] = ACTIONS(4813), + [anon_sym_CARET] = ACTIONS(4813), + [anon_sym_PIPE] = ACTIONS(4813), + [anon_sym_AMP] = ACTIONS(4813), + [anon_sym_LT_LT] = ACTIONS(4813), + [anon_sym_GT_GT] = ACTIONS(4813), + [anon_sym_GT_GT_GT] = ACTIONS(4813), + [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(4813), + [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(4811), + [anon_sym_PLUS_EQ] = ACTIONS(5496), + [anon_sym_DASH_EQ] = ACTIONS(5496), + [anon_sym_STAR_EQ] = ACTIONS(5496), + [anon_sym_SLASH_EQ] = ACTIONS(5496), + [anon_sym_PERCENT_EQ] = ACTIONS(5496), + [anon_sym_AMP_EQ] = ACTIONS(5496), + [anon_sym_CARET_EQ] = ACTIONS(5496), + [anon_sym_PIPE_EQ] = ACTIONS(5496), + [anon_sym_LT_LT_EQ] = ACTIONS(5496), + [anon_sym_GT_GT_EQ] = ACTIONS(5496), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(5496), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(5496), + [anon_sym_AMP_AMP] = ACTIONS(4811), + [anon_sym_PIPE_PIPE] = ACTIONS(4811), + [anon_sym_QMARK_QMARK] = ACTIONS(4813), + [anon_sym_into] = 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_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -500071,26 +499542,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3404] = { - [sym__name] = STATE(6430), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(4096), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(4109), - [sym_type] = STATE(7353), - [sym_implicit_type] = STATE(7201), - [sym_array_type] = STATE(6648), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(6650), - [sym_pointer_type] = STATE(6650), - [sym__pointer_base_type] = STATE(7446), - [sym_function_pointer_type] = STATE(6650), - [sym_function_pointer_parameter] = STATE(7574), - [sym_ref_type] = STATE(7266), - [sym__ref_base_type] = STATE(7583), - [sym_scoped_type] = STATE(7266), - [sym_tuple_type] = STATE(6474), - [sym_identifier] = STATE(4087), - [sym__reserved_identifier] = STATE(3691), [sym_preproc_region] = STATE(3404), [sym_preproc_endregion] = STATE(3404), [sym_preproc_line] = STATE(3404), @@ -500100,36 +499551,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), - [aux_sym_function_pointer_type_repeat1] = STATE(3670), - [sym__identifier_token] = ACTIONS(2967), - [anon_sym_alias] = ACTIONS(2971), - [anon_sym_global] = ACTIONS(2971), - [anon_sym_LPAREN] = ACTIONS(2979), - [anon_sym_ref] = ACTIONS(5472), - [anon_sym_delegate] = ACTIONS(5030), - [anon_sym_file] = ACTIONS(2971), - [anon_sym_in] = ACTIONS(5474), - [anon_sym_out] = ACTIONS(5474), - [anon_sym_where] = ACTIONS(2971), - [anon_sym_notnull] = ACTIONS(2971), - [anon_sym_unmanaged] = ACTIONS(2971), - [anon_sym_scoped] = ACTIONS(5476), - [anon_sym_var] = ACTIONS(4737), - [sym_predefined_type] = ACTIONS(5478), - [anon_sym_yield] = ACTIONS(2971), - [anon_sym_when] = ACTIONS(2971), - [anon_sym_from] = ACTIONS(2971), - [anon_sym_into] = ACTIONS(2971), - [anon_sym_join] = ACTIONS(2971), - [anon_sym_on] = ACTIONS(2971), - [anon_sym_equals] = ACTIONS(2971), - [anon_sym_let] = ACTIONS(2971), - [anon_sym_orderby] = ACTIONS(2971), - [anon_sym_ascending] = ACTIONS(2971), - [anon_sym_descending] = ACTIONS(2971), - [anon_sym_group] = ACTIONS(2971), - [anon_sym_by] = ACTIONS(2971), - [anon_sym_select] = ACTIONS(2971), + [anon_sym_SEMI] = ACTIONS(4241), + [anon_sym_LBRACK] = ACTIONS(5382), + [anon_sym_COLON] = ACTIONS(4241), + [anon_sym_COMMA] = ACTIONS(4241), + [anon_sym_RBRACK] = ACTIONS(4241), + [anon_sym_LPAREN] = ACTIONS(5382), + [anon_sym_RPAREN] = ACTIONS(4241), + [anon_sym_RBRACE] = ACTIONS(4241), + [anon_sym_LT] = ACTIONS(5385), + [anon_sym_GT] = ACTIONS(5385), + [anon_sym_in] = ACTIONS(4241), + [anon_sym_QMARK] = ACTIONS(5385), + [anon_sym_BANG] = ACTIONS(5385), + [anon_sym_PLUS_PLUS] = ACTIONS(5382), + [anon_sym_DASH_DASH] = ACTIONS(5382), + [anon_sym_PLUS] = ACTIONS(5385), + [anon_sym_DASH] = ACTIONS(5385), + [anon_sym_STAR] = ACTIONS(5382), + [anon_sym_SLASH] = ACTIONS(5385), + [anon_sym_PERCENT] = ACTIONS(5382), + [anon_sym_CARET] = ACTIONS(5382), + [anon_sym_PIPE] = ACTIONS(5385), + [anon_sym_AMP] = ACTIONS(5385), + [anon_sym_LT_LT] = ACTIONS(5382), + [anon_sym_GT_GT] = ACTIONS(5385), + [anon_sym_GT_GT_GT] = ACTIONS(5382), + [anon_sym_EQ_EQ] = ACTIONS(5382), + [anon_sym_BANG_EQ] = ACTIONS(5382), + [anon_sym_GT_EQ] = ACTIONS(5382), + [anon_sym_LT_EQ] = ACTIONS(5382), + [anon_sym_DOT] = ACTIONS(5385), + [anon_sym_EQ_GT] = ACTIONS(4241), + [anon_sym_switch] = ACTIONS(5382), + [anon_sym_when] = ACTIONS(4241), + [anon_sym_DOT_DOT] = ACTIONS(5382), + [anon_sym_and] = ACTIONS(4241), + [anon_sym_or] = ACTIONS(4241), + [anon_sym_AMP_AMP] = ACTIONS(5382), + [anon_sym_PIPE_PIPE] = ACTIONS(5382), + [anon_sym_QMARK_QMARK] = ACTIONS(5382), + [anon_sym_on] = ACTIONS(4241), + [anon_sym_equals] = ACTIONS(4241), + [anon_sym_by] = ACTIONS(4241), + [anon_sym_as] = ACTIONS(5382), + [anon_sym_is] = ACTIONS(5382), + [anon_sym_DASH_GT] = ACTIONS(5382), + [anon_sym_with] = ACTIONS(5382), + [aux_sym_preproc_if_token3] = ACTIONS(4241), + [aux_sym_preproc_else_token1] = ACTIONS(4241), + [aux_sym_preproc_elif_token1] = ACTIONS(4241), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -500142,26 +499613,26 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3405] = { - [sym__name] = STATE(6430), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(4096), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(4109), - [sym_type] = STATE(7353), - [sym_implicit_type] = STATE(7201), - [sym_array_type] = STATE(6648), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(6650), - [sym_pointer_type] = STATE(6650), - [sym__pointer_base_type] = STATE(7446), - [sym_function_pointer_type] = STATE(6650), - [sym_function_pointer_parameter] = STATE(7574), - [sym_ref_type] = STATE(7266), - [sym__ref_base_type] = STATE(7583), - [sym_scoped_type] = STATE(7266), - [sym_tuple_type] = STATE(6474), - [sym_identifier] = STATE(4087), - [sym__reserved_identifier] = STATE(3691), + [sym__name] = STATE(6381), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(4068), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(4073), + [sym_type] = STATE(7466), + [sym_implicit_type] = STATE(7156), + [sym_array_type] = STATE(6671), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(6672), + [sym_pointer_type] = STATE(6672), + [sym__pointer_base_type] = STATE(7421), + [sym_function_pointer_type] = STATE(6672), + [sym_function_pointer_parameter] = STATE(7377), + [sym_ref_type] = STATE(7035), + [sym__ref_base_type] = STATE(7387), + [sym_scoped_type] = STATE(7035), + [sym_tuple_type] = STATE(6553), + [sym_identifier] = STATE(4081), + [sym__reserved_identifier] = STATE(3654), [sym_preproc_region] = STATE(3405), [sym_preproc_endregion] = STATE(3405), [sym_preproc_line] = STATE(3405), @@ -500172,35 +499643,35 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_define] = STATE(3405), [sym_preproc_undef] = STATE(3405), [aux_sym_function_pointer_type_repeat1] = STATE(3406), - [sym__identifier_token] = ACTIONS(2967), - [anon_sym_alias] = ACTIONS(2971), - [anon_sym_global] = ACTIONS(2971), - [anon_sym_LPAREN] = ACTIONS(2979), - [anon_sym_ref] = ACTIONS(5472), - [anon_sym_delegate] = ACTIONS(5030), - [anon_sym_file] = ACTIONS(2971), - [anon_sym_in] = ACTIONS(5474), - [anon_sym_out] = ACTIONS(5474), - [anon_sym_where] = ACTIONS(2971), - [anon_sym_notnull] = ACTIONS(2971), - [anon_sym_unmanaged] = ACTIONS(2971), - [anon_sym_scoped] = ACTIONS(5476), - [anon_sym_var] = ACTIONS(4737), - [sym_predefined_type] = ACTIONS(5478), - [anon_sym_yield] = ACTIONS(2971), - [anon_sym_when] = ACTIONS(2971), - [anon_sym_from] = ACTIONS(2971), - [anon_sym_into] = ACTIONS(2971), - [anon_sym_join] = ACTIONS(2971), - [anon_sym_on] = ACTIONS(2971), - [anon_sym_equals] = ACTIONS(2971), - [anon_sym_let] = ACTIONS(2971), - [anon_sym_orderby] = ACTIONS(2971), - [anon_sym_ascending] = ACTIONS(2971), - [anon_sym_descending] = ACTIONS(2971), - [anon_sym_group] = ACTIONS(2971), - [anon_sym_by] = ACTIONS(2971), - [anon_sym_select] = ACTIONS(2971), + [sym__identifier_token] = ACTIONS(2965), + [anon_sym_alias] = ACTIONS(2969), + [anon_sym_global] = ACTIONS(2969), + [anon_sym_LPAREN] = ACTIONS(2977), + [anon_sym_ref] = ACTIONS(5450), + [anon_sym_delegate] = ACTIONS(5172), + [anon_sym_file] = ACTIONS(2969), + [anon_sym_in] = ACTIONS(5452), + [anon_sym_out] = ACTIONS(5452), + [anon_sym_where] = ACTIONS(2969), + [anon_sym_notnull] = ACTIONS(2969), + [anon_sym_unmanaged] = ACTIONS(2969), + [anon_sym_scoped] = ACTIONS(5454), + [anon_sym_var] = ACTIONS(4705), + [sym_predefined_type] = ACTIONS(5456), + [anon_sym_yield] = ACTIONS(2969), + [anon_sym_when] = ACTIONS(2969), + [anon_sym_from] = ACTIONS(2969), + [anon_sym_into] = ACTIONS(2969), + [anon_sym_join] = ACTIONS(2969), + [anon_sym_on] = ACTIONS(2969), + [anon_sym_equals] = ACTIONS(2969), + [anon_sym_let] = ACTIONS(2969), + [anon_sym_orderby] = ACTIONS(2969), + [anon_sym_ascending] = ACTIONS(2969), + [anon_sym_descending] = ACTIONS(2969), + [anon_sym_group] = ACTIONS(2969), + [anon_sym_by] = ACTIONS(2969), + [anon_sym_select] = ACTIONS(2969), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -500213,26 +499684,26 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3406] = { - [sym__name] = STATE(6430), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(4096), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(4109), - [sym_type] = STATE(7404), - [sym_implicit_type] = STATE(7201), - [sym_array_type] = STATE(6648), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(6650), - [sym_pointer_type] = STATE(6650), - [sym__pointer_base_type] = STATE(7446), - [sym_function_pointer_type] = STATE(6650), - [sym_function_pointer_parameter] = STATE(7574), - [sym_ref_type] = STATE(7266), - [sym__ref_base_type] = STATE(7583), - [sym_scoped_type] = STATE(7266), - [sym_tuple_type] = STATE(6474), - [sym_identifier] = STATE(4087), - [sym__reserved_identifier] = STATE(3691), + [sym__name] = STATE(6381), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(4068), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(4073), + [sym_type] = STATE(7534), + [sym_implicit_type] = STATE(7156), + [sym_array_type] = STATE(6671), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(6672), + [sym_pointer_type] = STATE(6672), + [sym__pointer_base_type] = STATE(7421), + [sym_function_pointer_type] = STATE(6672), + [sym_function_pointer_parameter] = STATE(7377), + [sym_ref_type] = STATE(7035), + [sym__ref_base_type] = STATE(7387), + [sym_scoped_type] = STATE(7035), + [sym_tuple_type] = STATE(6553), + [sym_identifier] = STATE(4081), + [sym__reserved_identifier] = STATE(3654), [sym_preproc_region] = STATE(3406), [sym_preproc_endregion] = STATE(3406), [sym_preproc_line] = STATE(3406), @@ -500242,36 +499713,36 @@ 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), - [aux_sym_function_pointer_type_repeat1] = STATE(3670), - [sym__identifier_token] = ACTIONS(2967), - [anon_sym_alias] = ACTIONS(2971), - [anon_sym_global] = ACTIONS(2971), - [anon_sym_LPAREN] = ACTIONS(2979), - [anon_sym_ref] = ACTIONS(5472), - [anon_sym_delegate] = ACTIONS(5030), - [anon_sym_file] = ACTIONS(2971), - [anon_sym_in] = ACTIONS(5474), - [anon_sym_out] = ACTIONS(5474), - [anon_sym_where] = ACTIONS(2971), - [anon_sym_notnull] = ACTIONS(2971), - [anon_sym_unmanaged] = ACTIONS(2971), - [anon_sym_scoped] = ACTIONS(5476), - [anon_sym_var] = ACTIONS(4737), - [sym_predefined_type] = ACTIONS(5478), - [anon_sym_yield] = ACTIONS(2971), - [anon_sym_when] = ACTIONS(2971), - [anon_sym_from] = ACTIONS(2971), - [anon_sym_into] = ACTIONS(2971), - [anon_sym_join] = ACTIONS(2971), - [anon_sym_on] = ACTIONS(2971), - [anon_sym_equals] = ACTIONS(2971), - [anon_sym_let] = ACTIONS(2971), - [anon_sym_orderby] = ACTIONS(2971), - [anon_sym_ascending] = ACTIONS(2971), - [anon_sym_descending] = ACTIONS(2971), - [anon_sym_group] = ACTIONS(2971), - [anon_sym_by] = ACTIONS(2971), - [anon_sym_select] = ACTIONS(2971), + [aux_sym_function_pointer_type_repeat1] = STATE(3667), + [sym__identifier_token] = ACTIONS(2965), + [anon_sym_alias] = ACTIONS(2969), + [anon_sym_global] = ACTIONS(2969), + [anon_sym_LPAREN] = ACTIONS(2977), + [anon_sym_ref] = ACTIONS(5450), + [anon_sym_delegate] = ACTIONS(5172), + [anon_sym_file] = ACTIONS(2969), + [anon_sym_in] = ACTIONS(5452), + [anon_sym_out] = ACTIONS(5452), + [anon_sym_where] = ACTIONS(2969), + [anon_sym_notnull] = ACTIONS(2969), + [anon_sym_unmanaged] = ACTIONS(2969), + [anon_sym_scoped] = ACTIONS(5454), + [anon_sym_var] = ACTIONS(4705), + [sym_predefined_type] = ACTIONS(5456), + [anon_sym_yield] = ACTIONS(2969), + [anon_sym_when] = ACTIONS(2969), + [anon_sym_from] = ACTIONS(2969), + [anon_sym_into] = ACTIONS(2969), + [anon_sym_join] = ACTIONS(2969), + [anon_sym_on] = ACTIONS(2969), + [anon_sym_equals] = ACTIONS(2969), + [anon_sym_let] = ACTIONS(2969), + [anon_sym_orderby] = ACTIONS(2969), + [anon_sym_ascending] = ACTIONS(2969), + [anon_sym_descending] = ACTIONS(2969), + [anon_sym_group] = ACTIONS(2969), + [anon_sym_by] = ACTIONS(2969), + [anon_sym_select] = ACTIONS(2969), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -500293,56 +499764,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_EQ] = ACTIONS(5508), - [anon_sym_LBRACK] = ACTIONS(4860), - [anon_sym_LPAREN] = ACTIONS(4860), - [anon_sym_LT] = ACTIONS(4862), - [anon_sym_GT] = ACTIONS(4862), - [anon_sym_QMARK] = ACTIONS(4862), - [anon_sym_BANG] = ACTIONS(4862), - [anon_sym_PLUS_PLUS] = ACTIONS(4860), - [anon_sym_DASH_DASH] = ACTIONS(4860), - [anon_sym_PLUS] = ACTIONS(4862), - [anon_sym_DASH] = ACTIONS(4862), - [anon_sym_STAR] = ACTIONS(4862), - [anon_sym_SLASH] = ACTIONS(4862), - [anon_sym_PERCENT] = ACTIONS(4862), - [anon_sym_CARET] = ACTIONS(4862), - [anon_sym_PIPE] = ACTIONS(4862), - [anon_sym_AMP] = ACTIONS(4862), - [anon_sym_LT_LT] = ACTIONS(4862), - [anon_sym_GT_GT] = ACTIONS(4862), - [anon_sym_GT_GT_GT] = ACTIONS(4862), - [anon_sym_EQ_EQ] = ACTIONS(4860), - [anon_sym_BANG_EQ] = ACTIONS(4860), - [anon_sym_GT_EQ] = ACTIONS(4860), - [anon_sym_LT_EQ] = ACTIONS(4860), - [anon_sym_DOT] = ACTIONS(4862), - [anon_sym_switch] = ACTIONS(4860), - [anon_sym_DOT_DOT] = ACTIONS(4860), - [anon_sym_and] = ACTIONS(4860), - [anon_sym_or] = ACTIONS(4860), - [anon_sym_PLUS_EQ] = ACTIONS(5510), - [anon_sym_DASH_EQ] = ACTIONS(5510), - [anon_sym_STAR_EQ] = ACTIONS(5510), - [anon_sym_SLASH_EQ] = ACTIONS(5510), - [anon_sym_PERCENT_EQ] = ACTIONS(5510), - [anon_sym_AMP_EQ] = ACTIONS(5510), - [anon_sym_CARET_EQ] = ACTIONS(5510), - [anon_sym_PIPE_EQ] = ACTIONS(5510), - [anon_sym_LT_LT_EQ] = ACTIONS(5510), - [anon_sym_GT_GT_EQ] = ACTIONS(5510), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(5510), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(5510), - [anon_sym_AMP_AMP] = ACTIONS(4860), - [anon_sym_PIPE_PIPE] = ACTIONS(4860), - [anon_sym_QMARK_QMARK] = ACTIONS(4862), - [anon_sym_into] = ACTIONS(4860), - [anon_sym_on] = ACTIONS(4860), - [anon_sym_as] = ACTIONS(4860), - [anon_sym_is] = ACTIONS(4860), - [anon_sym_DASH_GT] = ACTIONS(4860), - [anon_sym_with] = ACTIONS(4860), + [anon_sym_SEMI] = ACTIONS(5366), + [anon_sym_LBRACK] = ACTIONS(5366), + [anon_sym_COLON] = ACTIONS(5366), + [anon_sym_COMMA] = ACTIONS(5366), + [anon_sym_RBRACK] = ACTIONS(5366), + [anon_sym_LPAREN] = ACTIONS(5366), + [anon_sym_RPAREN] = ACTIONS(5366), + [anon_sym_RBRACE] = ACTIONS(5366), + [anon_sym_LT] = ACTIONS(5368), + [anon_sym_GT] = ACTIONS(5368), + [anon_sym_in] = ACTIONS(5366), + [anon_sym_QMARK] = ACTIONS(5368), + [anon_sym_BANG] = ACTIONS(5368), + [anon_sym_PLUS_PLUS] = ACTIONS(5366), + [anon_sym_DASH_DASH] = ACTIONS(5366), + [anon_sym_PLUS] = ACTIONS(5368), + [anon_sym_DASH] = ACTIONS(5368), + [anon_sym_STAR] = ACTIONS(5366), + [anon_sym_SLASH] = ACTIONS(5368), + [anon_sym_PERCENT] = ACTIONS(5366), + [anon_sym_CARET] = ACTIONS(5366), + [anon_sym_PIPE] = ACTIONS(5368), + [anon_sym_AMP] = ACTIONS(5368), + [anon_sym_LT_LT] = ACTIONS(5366), + [anon_sym_GT_GT] = ACTIONS(5368), + [anon_sym_GT_GT_GT] = ACTIONS(5366), + [anon_sym_EQ_EQ] = ACTIONS(5366), + [anon_sym_BANG_EQ] = ACTIONS(5366), + [anon_sym_GT_EQ] = ACTIONS(5366), + [anon_sym_LT_EQ] = ACTIONS(5366), + [anon_sym_DOT] = ACTIONS(5368), + [anon_sym_EQ_GT] = ACTIONS(5366), + [anon_sym_switch] = ACTIONS(5366), + [anon_sym_when] = ACTIONS(5366), + [anon_sym_DOT_DOT] = ACTIONS(5366), + [anon_sym_and] = ACTIONS(5366), + [anon_sym_or] = ACTIONS(5366), + [anon_sym_AMP_AMP] = ACTIONS(5366), + [anon_sym_PIPE_PIPE] = ACTIONS(5366), + [anon_sym_QMARK_QMARK] = ACTIONS(5366), + [anon_sym_on] = ACTIONS(5366), + [anon_sym_equals] = ACTIONS(5366), + [anon_sym_by] = ACTIONS(5366), + [anon_sym_as] = ACTIONS(5366), + [anon_sym_is] = ACTIONS(5366), + [anon_sym_DASH_GT] = ACTIONS(5366), + [anon_sym_with] = ACTIONS(5366), + [aux_sym_preproc_if_token3] = ACTIONS(5366), + [aux_sym_preproc_else_token1] = ACTIONS(5366), + [aux_sym_preproc_elif_token1] = ACTIONS(5366), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -500364,56 +499835,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_EQ] = ACTIONS(5512), - [anon_sym_LBRACK] = ACTIONS(4860), - [anon_sym_COLON] = ACTIONS(4860), - [anon_sym_COMMA] = ACTIONS(4860), - [anon_sym_LPAREN] = ACTIONS(4860), - [anon_sym_RPAREN] = ACTIONS(4860), - [anon_sym_RBRACE] = ACTIONS(4860), - [anon_sym_LT] = ACTIONS(4862), - [anon_sym_GT] = ACTIONS(4862), - [anon_sym_QMARK] = ACTIONS(4862), - [anon_sym_BANG] = ACTIONS(4862), - [anon_sym_PLUS_PLUS] = ACTIONS(4860), - [anon_sym_DASH_DASH] = ACTIONS(4860), - [anon_sym_PLUS] = ACTIONS(4862), - [anon_sym_DASH] = ACTIONS(4862), - [anon_sym_STAR] = ACTIONS(4862), - [anon_sym_SLASH] = ACTIONS(4862), - [anon_sym_PERCENT] = ACTIONS(4862), - [anon_sym_CARET] = ACTIONS(4862), - [anon_sym_PIPE] = ACTIONS(4862), - [anon_sym_AMP] = ACTIONS(4862), - [anon_sym_LT_LT] = ACTIONS(4862), - [anon_sym_GT_GT] = ACTIONS(4862), - [anon_sym_GT_GT_GT] = ACTIONS(4862), - [anon_sym_EQ_EQ] = ACTIONS(4860), - [anon_sym_BANG_EQ] = ACTIONS(4860), - [anon_sym_GT_EQ] = ACTIONS(4860), - [anon_sym_LT_EQ] = ACTIONS(4860), - [anon_sym_DOT] = ACTIONS(4862), - [anon_sym_switch] = ACTIONS(4860), - [anon_sym_DOT_DOT] = ACTIONS(4860), - [anon_sym_PLUS_EQ] = ACTIONS(5514), - [anon_sym_DASH_EQ] = ACTIONS(5514), - [anon_sym_STAR_EQ] = ACTIONS(5514), - [anon_sym_SLASH_EQ] = ACTIONS(5514), - [anon_sym_PERCENT_EQ] = ACTIONS(5514), - [anon_sym_AMP_EQ] = ACTIONS(5514), - [anon_sym_CARET_EQ] = ACTIONS(5514), - [anon_sym_PIPE_EQ] = ACTIONS(5514), - [anon_sym_LT_LT_EQ] = ACTIONS(5514), - [anon_sym_GT_GT_EQ] = ACTIONS(5514), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(5514), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(5514), - [anon_sym_AMP_AMP] = ACTIONS(4860), - [anon_sym_PIPE_PIPE] = ACTIONS(4860), - [anon_sym_QMARK_QMARK] = ACTIONS(4862), - [anon_sym_as] = ACTIONS(4860), - [anon_sym_is] = ACTIONS(4860), - [anon_sym_DASH_GT] = ACTIONS(4860), - [anon_sym_with] = ACTIONS(4860), + [anon_sym_SEMI] = ACTIONS(2955), + [anon_sym_LBRACK] = ACTIONS(2955), + [anon_sym_COLON] = ACTIONS(2955), + [anon_sym_COMMA] = ACTIONS(2955), + [anon_sym_RBRACK] = ACTIONS(2955), + [anon_sym_LPAREN] = ACTIONS(2955), + [anon_sym_RPAREN] = ACTIONS(2955), + [anon_sym_RBRACE] = ACTIONS(2955), + [anon_sym_LT] = ACTIONS(2953), + [anon_sym_GT] = ACTIONS(2953), + [anon_sym_in] = ACTIONS(2955), + [anon_sym_QMARK] = ACTIONS(2953), + [anon_sym_BANG] = ACTIONS(2953), + [anon_sym_PLUS_PLUS] = ACTIONS(2955), + [anon_sym_DASH_DASH] = ACTIONS(2955), + [anon_sym_PLUS] = ACTIONS(2953), + [anon_sym_DASH] = ACTIONS(2953), + [anon_sym_STAR] = ACTIONS(2955), + [anon_sym_SLASH] = ACTIONS(2953), + [anon_sym_PERCENT] = ACTIONS(2955), + [anon_sym_CARET] = ACTIONS(2955), + [anon_sym_PIPE] = ACTIONS(2953), + [anon_sym_AMP] = ACTIONS(2953), + [anon_sym_LT_LT] = ACTIONS(2955), + [anon_sym_GT_GT] = ACTIONS(2953), + [anon_sym_GT_GT_GT] = ACTIONS(2955), + [anon_sym_EQ_EQ] = ACTIONS(2955), + [anon_sym_BANG_EQ] = ACTIONS(2955), + [anon_sym_GT_EQ] = ACTIONS(2955), + [anon_sym_LT_EQ] = ACTIONS(2955), + [anon_sym_DOT] = ACTIONS(2953), + [anon_sym_EQ_GT] = ACTIONS(2955), + [anon_sym_switch] = ACTIONS(2955), + [anon_sym_when] = ACTIONS(2955), + [anon_sym_DOT_DOT] = ACTIONS(2955), + [anon_sym_and] = ACTIONS(2955), + [anon_sym_or] = ACTIONS(2955), + [anon_sym_AMP_AMP] = ACTIONS(2955), + [anon_sym_PIPE_PIPE] = ACTIONS(2955), + [anon_sym_QMARK_QMARK] = ACTIONS(2955), + [anon_sym_on] = ACTIONS(2955), + [anon_sym_equals] = ACTIONS(2955), + [anon_sym_by] = ACTIONS(2955), + [anon_sym_as] = ACTIONS(2955), + [anon_sym_is] = ACTIONS(2955), + [anon_sym_DASH_GT] = ACTIONS(2955), + [anon_sym_with] = ACTIONS(2955), + [aux_sym_preproc_if_token3] = ACTIONS(2955), + [aux_sym_preproc_else_token1] = ACTIONS(2955), + [aux_sym_preproc_elif_token1] = ACTIONS(2955), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -500426,26 +499897,26 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3409] = { - [sym__name] = STATE(6430), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(4096), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(4109), - [sym_type] = STATE(7430), - [sym_implicit_type] = STATE(7201), - [sym_array_type] = STATE(6648), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(6650), - [sym_pointer_type] = STATE(6650), - [sym__pointer_base_type] = STATE(7446), - [sym_function_pointer_type] = STATE(6650), - [sym_function_pointer_parameter] = STATE(7574), - [sym_ref_type] = STATE(7266), - [sym__ref_base_type] = STATE(7583), - [sym_scoped_type] = STATE(7266), - [sym_tuple_type] = STATE(6474), - [sym_identifier] = STATE(4087), - [sym__reserved_identifier] = STATE(3691), + [sym_type_parameter_constraint] = STATE(6590), + [sym_constructor_constraint] = STATE(6519), + [sym__name] = STATE(4369), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(4068), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(4073), + [sym_type] = STATE(6527), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_identifier] = STATE(4081), + [sym__reserved_identifier] = STATE(3654), [sym_preproc_region] = STATE(3409), [sym_preproc_endregion] = STATE(3409), [sym_preproc_line] = STATE(3409), @@ -500455,36 +499926,36 @@ 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), - [aux_sym_function_pointer_type_repeat1] = STATE(3410), - [sym__identifier_token] = ACTIONS(2967), - [anon_sym_alias] = ACTIONS(2971), - [anon_sym_global] = ACTIONS(2971), - [anon_sym_LPAREN] = ACTIONS(2979), - [anon_sym_ref] = ACTIONS(5472), - [anon_sym_delegate] = ACTIONS(5030), - [anon_sym_file] = ACTIONS(2971), - [anon_sym_in] = ACTIONS(5474), - [anon_sym_out] = ACTIONS(5474), - [anon_sym_where] = ACTIONS(2971), - [anon_sym_notnull] = ACTIONS(2971), - [anon_sym_unmanaged] = ACTIONS(2971), - [anon_sym_scoped] = ACTIONS(5476), - [anon_sym_var] = ACTIONS(4737), - [sym_predefined_type] = ACTIONS(5478), - [anon_sym_yield] = ACTIONS(2971), - [anon_sym_when] = ACTIONS(2971), - [anon_sym_from] = ACTIONS(2971), - [anon_sym_into] = ACTIONS(2971), - [anon_sym_join] = ACTIONS(2971), - [anon_sym_on] = ACTIONS(2971), - [anon_sym_equals] = ACTIONS(2971), - [anon_sym_let] = ACTIONS(2971), - [anon_sym_orderby] = ACTIONS(2971), - [anon_sym_ascending] = ACTIONS(2971), - [anon_sym_descending] = ACTIONS(2971), - [anon_sym_group] = ACTIONS(2971), - [anon_sym_by] = ACTIONS(2971), - [anon_sym_select] = ACTIONS(2971), + [sym__identifier_token] = ACTIONS(2965), + [anon_sym_alias] = ACTIONS(2969), + [anon_sym_global] = ACTIONS(2969), + [anon_sym_LPAREN] = ACTIONS(2977), + [anon_sym_class] = ACTIONS(5498), + [anon_sym_ref] = ACTIONS(5500), + [anon_sym_struct] = ACTIONS(5502), + [anon_sym_delegate] = ACTIONS(3438), + [anon_sym_file] = ACTIONS(2969), + [anon_sym_new] = ACTIONS(5504), + [anon_sym_where] = ACTIONS(2969), + [anon_sym_notnull] = ACTIONS(5506), + [anon_sym_unmanaged] = ACTIONS(5506), + [anon_sym_scoped] = ACTIONS(5508), + [anon_sym_var] = ACTIONS(4705), + [sym_predefined_type] = ACTIONS(2997), + [anon_sym_yield] = ACTIONS(2969), + [anon_sym_when] = ACTIONS(2969), + [anon_sym_from] = ACTIONS(2969), + [anon_sym_into] = ACTIONS(2969), + [anon_sym_join] = ACTIONS(2969), + [anon_sym_on] = ACTIONS(2969), + [anon_sym_equals] = ACTIONS(2969), + [anon_sym_let] = ACTIONS(2969), + [anon_sym_orderby] = ACTIONS(2969), + [anon_sym_ascending] = ACTIONS(2969), + [anon_sym_descending] = ACTIONS(2969), + [anon_sym_group] = ACTIONS(2969), + [anon_sym_by] = ACTIONS(2969), + [anon_sym_select] = ACTIONS(2969), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -500497,26 +499968,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3410] = { - [sym__name] = STATE(6430), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(4096), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(4109), - [sym_type] = STATE(7514), - [sym_implicit_type] = STATE(7201), - [sym_array_type] = STATE(6648), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(6650), - [sym_pointer_type] = STATE(6650), - [sym__pointer_base_type] = STATE(7446), - [sym_function_pointer_type] = STATE(6650), - [sym_function_pointer_parameter] = STATE(7574), - [sym_ref_type] = STATE(7266), - [sym__ref_base_type] = STATE(7583), - [sym_scoped_type] = STATE(7266), - [sym_tuple_type] = STATE(6474), - [sym_identifier] = STATE(4087), - [sym__reserved_identifier] = STATE(3691), [sym_preproc_region] = STATE(3410), [sym_preproc_endregion] = STATE(3410), [sym_preproc_line] = STATE(3410), @@ -500526,36 +499977,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), - [aux_sym_function_pointer_type_repeat1] = STATE(3670), - [sym__identifier_token] = ACTIONS(2967), - [anon_sym_alias] = ACTIONS(2971), - [anon_sym_global] = ACTIONS(2971), - [anon_sym_LPAREN] = ACTIONS(2979), - [anon_sym_ref] = ACTIONS(5472), - [anon_sym_delegate] = ACTIONS(5030), - [anon_sym_file] = ACTIONS(2971), - [anon_sym_in] = ACTIONS(5474), - [anon_sym_out] = ACTIONS(5474), - [anon_sym_where] = ACTIONS(2971), - [anon_sym_notnull] = ACTIONS(2971), - [anon_sym_unmanaged] = ACTIONS(2971), - [anon_sym_scoped] = ACTIONS(5476), - [anon_sym_var] = ACTIONS(4737), - [sym_predefined_type] = ACTIONS(5478), - [anon_sym_yield] = ACTIONS(2971), - [anon_sym_when] = ACTIONS(2971), - [anon_sym_from] = ACTIONS(2971), - [anon_sym_into] = ACTIONS(2971), - [anon_sym_join] = ACTIONS(2971), - [anon_sym_on] = ACTIONS(2971), - [anon_sym_equals] = ACTIONS(2971), - [anon_sym_let] = ACTIONS(2971), - [anon_sym_orderby] = ACTIONS(2971), - [anon_sym_ascending] = ACTIONS(2971), - [anon_sym_descending] = ACTIONS(2971), - [anon_sym_group] = ACTIONS(2971), - [anon_sym_by] = ACTIONS(2971), - [anon_sym_select] = ACTIONS(2971), + [anon_sym_SEMI] = ACTIONS(5354), + [anon_sym_LBRACK] = ACTIONS(5354), + [anon_sym_COLON] = ACTIONS(5354), + [anon_sym_COMMA] = ACTIONS(5354), + [anon_sym_RBRACK] = ACTIONS(5354), + [anon_sym_LPAREN] = ACTIONS(5354), + [anon_sym_RPAREN] = ACTIONS(5354), + [anon_sym_RBRACE] = ACTIONS(5354), + [anon_sym_LT] = ACTIONS(5356), + [anon_sym_GT] = ACTIONS(5356), + [anon_sym_in] = ACTIONS(5354), + [anon_sym_QMARK] = ACTIONS(5356), + [anon_sym_BANG] = ACTIONS(5356), + [anon_sym_PLUS_PLUS] = ACTIONS(5354), + [anon_sym_DASH_DASH] = ACTIONS(5354), + [anon_sym_PLUS] = ACTIONS(5356), + [anon_sym_DASH] = ACTIONS(5356), + [anon_sym_STAR] = ACTIONS(5354), + [anon_sym_SLASH] = ACTIONS(5356), + [anon_sym_PERCENT] = ACTIONS(5354), + [anon_sym_CARET] = ACTIONS(5354), + [anon_sym_PIPE] = ACTIONS(5356), + [anon_sym_AMP] = ACTIONS(5356), + [anon_sym_LT_LT] = ACTIONS(5354), + [anon_sym_GT_GT] = ACTIONS(5356), + [anon_sym_GT_GT_GT] = ACTIONS(5354), + [anon_sym_EQ_EQ] = ACTIONS(5354), + [anon_sym_BANG_EQ] = ACTIONS(5354), + [anon_sym_GT_EQ] = ACTIONS(5354), + [anon_sym_LT_EQ] = ACTIONS(5354), + [anon_sym_DOT] = ACTIONS(5356), + [anon_sym_EQ_GT] = ACTIONS(5354), + [anon_sym_switch] = ACTIONS(5354), + [anon_sym_when] = ACTIONS(5354), + [anon_sym_DOT_DOT] = ACTIONS(5354), + [anon_sym_and] = ACTIONS(5354), + [anon_sym_or] = ACTIONS(5354), + [anon_sym_AMP_AMP] = ACTIONS(5354), + [anon_sym_PIPE_PIPE] = ACTIONS(5354), + [anon_sym_QMARK_QMARK] = ACTIONS(5354), + [anon_sym_on] = ACTIONS(5354), + [anon_sym_equals] = ACTIONS(5354), + [anon_sym_by] = ACTIONS(5354), + [anon_sym_as] = ACTIONS(5354), + [anon_sym_is] = ACTIONS(5354), + [anon_sym_DASH_GT] = ACTIONS(5354), + [anon_sym_with] = ACTIONS(5354), + [aux_sym_preproc_if_token3] = ACTIONS(5354), + [aux_sym_preproc_else_token1] = ACTIONS(5354), + [aux_sym_preproc_elif_token1] = ACTIONS(5354), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -500568,26 +500039,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3411] = { - [sym__name] = STATE(6430), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(4096), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(4109), - [sym_type] = STATE(7514), - [sym_implicit_type] = STATE(7201), - [sym_array_type] = STATE(6648), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(6650), - [sym_pointer_type] = STATE(6650), - [sym__pointer_base_type] = STATE(7446), - [sym_function_pointer_type] = STATE(6650), - [sym_function_pointer_parameter] = STATE(7574), - [sym_ref_type] = STATE(7266), - [sym__ref_base_type] = STATE(7583), - [sym_scoped_type] = STATE(7266), - [sym_tuple_type] = STATE(6474), - [sym_identifier] = STATE(4087), - [sym__reserved_identifier] = STATE(3691), [sym_preproc_region] = STATE(3411), [sym_preproc_endregion] = STATE(3411), [sym_preproc_line] = STATE(3411), @@ -500597,36 +500048,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(3412), - [sym__identifier_token] = ACTIONS(2967), - [anon_sym_alias] = ACTIONS(2971), - [anon_sym_global] = ACTIONS(2971), - [anon_sym_LPAREN] = ACTIONS(2979), - [anon_sym_ref] = ACTIONS(5472), - [anon_sym_delegate] = ACTIONS(5030), - [anon_sym_file] = ACTIONS(2971), - [anon_sym_in] = ACTIONS(5474), - [anon_sym_out] = ACTIONS(5474), - [anon_sym_where] = ACTIONS(2971), - [anon_sym_notnull] = ACTIONS(2971), - [anon_sym_unmanaged] = ACTIONS(2971), - [anon_sym_scoped] = ACTIONS(5476), - [anon_sym_var] = ACTIONS(4737), - [sym_predefined_type] = ACTIONS(5478), - [anon_sym_yield] = ACTIONS(2971), - [anon_sym_when] = ACTIONS(2971), - [anon_sym_from] = ACTIONS(2971), - [anon_sym_into] = ACTIONS(2971), - [anon_sym_join] = ACTIONS(2971), - [anon_sym_on] = ACTIONS(2971), - [anon_sym_equals] = ACTIONS(2971), - [anon_sym_let] = ACTIONS(2971), - [anon_sym_orderby] = ACTIONS(2971), - [anon_sym_ascending] = ACTIONS(2971), - [anon_sym_descending] = ACTIONS(2971), - [anon_sym_group] = ACTIONS(2971), - [anon_sym_by] = ACTIONS(2971), - [anon_sym_select] = ACTIONS(2971), + [anon_sym_SEMI] = ACTIONS(5370), + [anon_sym_LBRACK] = ACTIONS(5370), + [anon_sym_COLON] = ACTIONS(5370), + [anon_sym_COMMA] = ACTIONS(5370), + [anon_sym_RBRACK] = ACTIONS(5370), + [anon_sym_LPAREN] = ACTIONS(5370), + [anon_sym_RPAREN] = ACTIONS(5370), + [anon_sym_RBRACE] = ACTIONS(5370), + [anon_sym_LT] = ACTIONS(5372), + [anon_sym_GT] = ACTIONS(5372), + [anon_sym_in] = ACTIONS(5370), + [anon_sym_QMARK] = ACTIONS(5372), + [anon_sym_BANG] = ACTIONS(5372), + [anon_sym_PLUS_PLUS] = ACTIONS(5370), + [anon_sym_DASH_DASH] = ACTIONS(5370), + [anon_sym_PLUS] = ACTIONS(5372), + [anon_sym_DASH] = ACTIONS(5372), + [anon_sym_STAR] = ACTIONS(5370), + [anon_sym_SLASH] = ACTIONS(5372), + [anon_sym_PERCENT] = ACTIONS(5370), + [anon_sym_CARET] = ACTIONS(5370), + [anon_sym_PIPE] = ACTIONS(5372), + [anon_sym_AMP] = ACTIONS(5372), + [anon_sym_LT_LT] = ACTIONS(5370), + [anon_sym_GT_GT] = ACTIONS(5372), + [anon_sym_GT_GT_GT] = ACTIONS(5370), + [anon_sym_EQ_EQ] = ACTIONS(5370), + [anon_sym_BANG_EQ] = ACTIONS(5370), + [anon_sym_GT_EQ] = ACTIONS(5370), + [anon_sym_LT_EQ] = ACTIONS(5370), + [anon_sym_DOT] = ACTIONS(5372), + [anon_sym_EQ_GT] = ACTIONS(5370), + [anon_sym_switch] = ACTIONS(5370), + [anon_sym_when] = ACTIONS(5370), + [anon_sym_DOT_DOT] = ACTIONS(5370), + [anon_sym_and] = ACTIONS(5370), + [anon_sym_or] = ACTIONS(5370), + [anon_sym_AMP_AMP] = ACTIONS(5370), + [anon_sym_PIPE_PIPE] = ACTIONS(5370), + [anon_sym_QMARK_QMARK] = ACTIONS(5370), + [anon_sym_on] = ACTIONS(5370), + [anon_sym_equals] = ACTIONS(5370), + [anon_sym_by] = ACTIONS(5370), + [anon_sym_as] = ACTIONS(5370), + [anon_sym_is] = ACTIONS(5370), + [anon_sym_DASH_GT] = ACTIONS(5370), + [anon_sym_with] = ACTIONS(5370), + [aux_sym_preproc_if_token3] = ACTIONS(5370), + [aux_sym_preproc_else_token1] = ACTIONS(5370), + [aux_sym_preproc_elif_token1] = ACTIONS(5370), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -500639,26 +500110,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3412] = { - [sym__name] = STATE(6430), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(4096), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(4109), - [sym_type] = STATE(7544), - [sym_implicit_type] = STATE(7201), - [sym_array_type] = STATE(6648), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(6650), - [sym_pointer_type] = STATE(6650), - [sym__pointer_base_type] = STATE(7446), - [sym_function_pointer_type] = STATE(6650), - [sym_function_pointer_parameter] = STATE(7574), - [sym_ref_type] = STATE(7266), - [sym__ref_base_type] = STATE(7583), - [sym_scoped_type] = STATE(7266), - [sym_tuple_type] = STATE(6474), - [sym_identifier] = STATE(4087), - [sym__reserved_identifier] = STATE(3691), [sym_preproc_region] = STATE(3412), [sym_preproc_endregion] = STATE(3412), [sym_preproc_line] = STATE(3412), @@ -500668,36 +500119,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), - [aux_sym_function_pointer_type_repeat1] = STATE(3670), - [sym__identifier_token] = ACTIONS(2967), - [anon_sym_alias] = ACTIONS(2971), - [anon_sym_global] = ACTIONS(2971), - [anon_sym_LPAREN] = ACTIONS(2979), - [anon_sym_ref] = ACTIONS(5472), - [anon_sym_delegate] = ACTIONS(5030), - [anon_sym_file] = ACTIONS(2971), - [anon_sym_in] = ACTIONS(5474), - [anon_sym_out] = ACTIONS(5474), - [anon_sym_where] = ACTIONS(2971), - [anon_sym_notnull] = ACTIONS(2971), - [anon_sym_unmanaged] = ACTIONS(2971), - [anon_sym_scoped] = ACTIONS(5476), - [anon_sym_var] = ACTIONS(4737), - [sym_predefined_type] = ACTIONS(5478), - [anon_sym_yield] = ACTIONS(2971), - [anon_sym_when] = ACTIONS(2971), - [anon_sym_from] = ACTIONS(2971), - [anon_sym_into] = ACTIONS(2971), - [anon_sym_join] = ACTIONS(2971), - [anon_sym_on] = ACTIONS(2971), - [anon_sym_equals] = ACTIONS(2971), - [anon_sym_let] = ACTIONS(2971), - [anon_sym_orderby] = ACTIONS(2971), - [anon_sym_ascending] = ACTIONS(2971), - [anon_sym_descending] = ACTIONS(2971), - [anon_sym_group] = ACTIONS(2971), - [anon_sym_by] = ACTIONS(2971), - [anon_sym_select] = ACTIONS(2971), + [anon_sym_SEMI] = ACTIONS(2951), + [anon_sym_LBRACK] = ACTIONS(2951), + [anon_sym_COLON] = ACTIONS(2951), + [anon_sym_COMMA] = ACTIONS(2951), + [anon_sym_RBRACK] = ACTIONS(2951), + [anon_sym_LPAREN] = ACTIONS(2951), + [anon_sym_RPAREN] = ACTIONS(2951), + [anon_sym_RBRACE] = ACTIONS(2951), + [anon_sym_LT] = ACTIONS(2949), + [anon_sym_GT] = ACTIONS(2949), + [anon_sym_in] = ACTIONS(2951), + [anon_sym_QMARK] = ACTIONS(2949), + [anon_sym_BANG] = ACTIONS(2949), + [anon_sym_PLUS_PLUS] = ACTIONS(2951), + [anon_sym_DASH_DASH] = ACTIONS(2951), + [anon_sym_PLUS] = ACTIONS(2949), + [anon_sym_DASH] = ACTIONS(2949), + [anon_sym_STAR] = ACTIONS(2951), + [anon_sym_SLASH] = ACTIONS(2949), + [anon_sym_PERCENT] = ACTIONS(2951), + [anon_sym_CARET] = ACTIONS(2951), + [anon_sym_PIPE] = ACTIONS(2949), + [anon_sym_AMP] = ACTIONS(2949), + [anon_sym_LT_LT] = ACTIONS(2951), + [anon_sym_GT_GT] = ACTIONS(2949), + [anon_sym_GT_GT_GT] = ACTIONS(2951), + [anon_sym_EQ_EQ] = ACTIONS(2951), + [anon_sym_BANG_EQ] = ACTIONS(2951), + [anon_sym_GT_EQ] = ACTIONS(2951), + [anon_sym_LT_EQ] = ACTIONS(2951), + [anon_sym_DOT] = ACTIONS(2949), + [anon_sym_EQ_GT] = ACTIONS(2951), + [anon_sym_switch] = ACTIONS(2951), + [anon_sym_when] = ACTIONS(2951), + [anon_sym_DOT_DOT] = ACTIONS(2951), + [anon_sym_and] = ACTIONS(2951), + [anon_sym_or] = ACTIONS(2951), + [anon_sym_AMP_AMP] = ACTIONS(2951), + [anon_sym_PIPE_PIPE] = ACTIONS(2951), + [anon_sym_QMARK_QMARK] = ACTIONS(2951), + [anon_sym_on] = ACTIONS(2951), + [anon_sym_equals] = ACTIONS(2951), + [anon_sym_by] = ACTIONS(2951), + [anon_sym_as] = ACTIONS(2951), + [anon_sym_is] = ACTIONS(2951), + [anon_sym_DASH_GT] = ACTIONS(2951), + [anon_sym_with] = ACTIONS(2951), + [aux_sym_preproc_if_token3] = ACTIONS(2951), + [aux_sym_preproc_else_token1] = ACTIONS(2951), + [aux_sym_preproc_elif_token1] = ACTIONS(2951), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -500719,56 +500190,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), - [anon_sym_EQ] = ACTIONS(5516), - [anon_sym_LBRACK] = ACTIONS(4860), - [anon_sym_LPAREN] = ACTIONS(4860), - [anon_sym_LT] = ACTIONS(4862), - [anon_sym_GT] = ACTIONS(4862), - [anon_sym_QMARK] = ACTIONS(4862), - [anon_sym_BANG] = ACTIONS(4862), - [anon_sym_PLUS_PLUS] = ACTIONS(4860), - [anon_sym_DASH_DASH] = ACTIONS(4860), - [anon_sym_PLUS] = ACTIONS(4862), - [anon_sym_DASH] = ACTIONS(4862), - [anon_sym_STAR] = ACTIONS(4862), - [anon_sym_SLASH] = ACTIONS(4862), - [anon_sym_PERCENT] = ACTIONS(4862), - [anon_sym_CARET] = ACTIONS(4862), - [anon_sym_PIPE] = ACTIONS(4862), - [anon_sym_AMP] = ACTIONS(4862), - [anon_sym_LT_LT] = ACTIONS(4862), - [anon_sym_GT_GT] = ACTIONS(4862), - [anon_sym_GT_GT_GT] = ACTIONS(4862), - [anon_sym_EQ_EQ] = ACTIONS(4860), - [anon_sym_BANG_EQ] = ACTIONS(4860), - [anon_sym_GT_EQ] = ACTIONS(4860), - [anon_sym_LT_EQ] = ACTIONS(4860), - [anon_sym_DOT] = ACTIONS(4862), - [anon_sym_EQ_GT] = ACTIONS(4860), - [anon_sym_switch] = ACTIONS(4860), - [anon_sym_DOT_DOT] = ACTIONS(4860), - [anon_sym_and] = ACTIONS(4860), - [anon_sym_or] = ACTIONS(4860), - [anon_sym_PLUS_EQ] = ACTIONS(5518), - [anon_sym_DASH_EQ] = ACTIONS(5518), - [anon_sym_STAR_EQ] = ACTIONS(5518), - [anon_sym_SLASH_EQ] = ACTIONS(5518), - [anon_sym_PERCENT_EQ] = ACTIONS(5518), - [anon_sym_AMP_EQ] = ACTIONS(5518), - [anon_sym_CARET_EQ] = ACTIONS(5518), - [anon_sym_PIPE_EQ] = ACTIONS(5518), - [anon_sym_LT_LT_EQ] = ACTIONS(5518), - [anon_sym_GT_GT_EQ] = ACTIONS(5518), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(5518), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(5518), - [anon_sym_AMP_AMP] = ACTIONS(4860), - [anon_sym_PIPE_PIPE] = ACTIONS(4860), - [anon_sym_QMARK_QMARK] = ACTIONS(4862), - [anon_sym_into] = ACTIONS(4860), - [anon_sym_as] = ACTIONS(4860), - [anon_sym_is] = ACTIONS(4860), - [anon_sym_DASH_GT] = ACTIONS(4860), - [anon_sym_with] = ACTIONS(4860), + [anon_sym_SEMI] = ACTIONS(5362), + [anon_sym_LBRACK] = ACTIONS(5362), + [anon_sym_COLON] = ACTIONS(5362), + [anon_sym_COMMA] = ACTIONS(5362), + [anon_sym_RBRACK] = ACTIONS(5362), + [anon_sym_LPAREN] = ACTIONS(5362), + [anon_sym_RPAREN] = ACTIONS(5362), + [anon_sym_RBRACE] = ACTIONS(5362), + [anon_sym_LT] = ACTIONS(5364), + [anon_sym_GT] = ACTIONS(5364), + [anon_sym_in] = ACTIONS(5362), + [anon_sym_QMARK] = ACTIONS(5364), + [anon_sym_BANG] = ACTIONS(5364), + [anon_sym_PLUS_PLUS] = ACTIONS(5362), + [anon_sym_DASH_DASH] = ACTIONS(5362), + [anon_sym_PLUS] = ACTIONS(5364), + [anon_sym_DASH] = ACTIONS(5364), + [anon_sym_STAR] = ACTIONS(5362), + [anon_sym_SLASH] = ACTIONS(5364), + [anon_sym_PERCENT] = ACTIONS(5362), + [anon_sym_CARET] = ACTIONS(5362), + [anon_sym_PIPE] = ACTIONS(5364), + [anon_sym_AMP] = ACTIONS(5364), + [anon_sym_LT_LT] = ACTIONS(5362), + [anon_sym_GT_GT] = ACTIONS(5364), + [anon_sym_GT_GT_GT] = ACTIONS(5362), + [anon_sym_EQ_EQ] = ACTIONS(5362), + [anon_sym_BANG_EQ] = ACTIONS(5362), + [anon_sym_GT_EQ] = ACTIONS(5362), + [anon_sym_LT_EQ] = ACTIONS(5362), + [anon_sym_DOT] = ACTIONS(5364), + [anon_sym_EQ_GT] = ACTIONS(5362), + [anon_sym_switch] = ACTIONS(5362), + [anon_sym_when] = ACTIONS(5362), + [anon_sym_DOT_DOT] = ACTIONS(5362), + [anon_sym_and] = ACTIONS(5362), + [anon_sym_or] = ACTIONS(5362), + [anon_sym_AMP_AMP] = ACTIONS(5362), + [anon_sym_PIPE_PIPE] = ACTIONS(5362), + [anon_sym_QMARK_QMARK] = ACTIONS(5362), + [anon_sym_on] = ACTIONS(5362), + [anon_sym_equals] = ACTIONS(5362), + [anon_sym_by] = ACTIONS(5362), + [anon_sym_as] = ACTIONS(5362), + [anon_sym_is] = ACTIONS(5362), + [anon_sym_DASH_GT] = ACTIONS(5362), + [anon_sym_with] = ACTIONS(5362), + [aux_sym_preproc_if_token3] = ACTIONS(5362), + [aux_sym_preproc_else_token1] = ACTIONS(5362), + [aux_sym_preproc_elif_token1] = ACTIONS(5362), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -500790,56 +500261,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_SEMI] = ACTIONS(5016), - [anon_sym_LBRACK] = ACTIONS(5016), - [anon_sym_COLON] = ACTIONS(5016), - [anon_sym_COMMA] = ACTIONS(5016), - [anon_sym_RBRACK] = ACTIONS(5016), - [anon_sym_LPAREN] = ACTIONS(5016), - [anon_sym_RPAREN] = ACTIONS(5016), - [anon_sym_RBRACE] = ACTIONS(5016), - [anon_sym_LT] = ACTIONS(5018), - [anon_sym_GT] = ACTIONS(5018), - [anon_sym_in] = ACTIONS(5016), - [anon_sym_QMARK] = ACTIONS(5018), - [anon_sym_BANG] = ACTIONS(5018), - [anon_sym_PLUS_PLUS] = ACTIONS(5016), - [anon_sym_DASH_DASH] = ACTIONS(5016), - [anon_sym_PLUS] = ACTIONS(5018), - [anon_sym_DASH] = ACTIONS(5018), - [anon_sym_STAR] = ACTIONS(5016), - [anon_sym_SLASH] = ACTIONS(5018), - [anon_sym_PERCENT] = ACTIONS(5016), - [anon_sym_CARET] = ACTIONS(5016), - [anon_sym_PIPE] = ACTIONS(5018), - [anon_sym_AMP] = ACTIONS(5018), - [anon_sym_LT_LT] = ACTIONS(5016), - [anon_sym_GT_GT] = ACTIONS(5018), - [anon_sym_GT_GT_GT] = ACTIONS(5016), - [anon_sym_EQ_EQ] = ACTIONS(5016), - [anon_sym_BANG_EQ] = ACTIONS(5016), - [anon_sym_GT_EQ] = ACTIONS(5016), - [anon_sym_LT_EQ] = ACTIONS(5016), - [anon_sym_DOT] = ACTIONS(5018), - [anon_sym_EQ_GT] = ACTIONS(5016), - [anon_sym_switch] = ACTIONS(5016), - [anon_sym_when] = ACTIONS(5016), - [anon_sym_DOT_DOT] = ACTIONS(5016), - [anon_sym_and] = ACTIONS(5016), - [anon_sym_or] = ACTIONS(5016), - [anon_sym_AMP_AMP] = ACTIONS(5016), - [anon_sym_PIPE_PIPE] = ACTIONS(5016), - [anon_sym_QMARK_QMARK] = ACTIONS(5016), - [anon_sym_on] = ACTIONS(5016), - [anon_sym_equals] = ACTIONS(5016), - [anon_sym_by] = ACTIONS(5016), - [anon_sym_as] = ACTIONS(5016), - [anon_sym_is] = ACTIONS(5016), - [anon_sym_DASH_GT] = ACTIONS(5016), - [anon_sym_with] = ACTIONS(5016), - [aux_sym_preproc_if_token3] = ACTIONS(5016), - [aux_sym_preproc_else_token1] = ACTIONS(5016), - [aux_sym_preproc_elif_token1] = ACTIONS(5016), + [anon_sym_SEMI] = ACTIONS(4226), + [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_LT] = ACTIONS(4228), + [anon_sym_GT] = ACTIONS(4228), + [anon_sym_in] = ACTIONS(4226), + [anon_sym_QMARK] = ACTIONS(4228), + [anon_sym_BANG] = ACTIONS(4228), + [anon_sym_PLUS_PLUS] = ACTIONS(4226), + [anon_sym_DASH_DASH] = ACTIONS(4226), + [anon_sym_PLUS] = ACTIONS(4228), + [anon_sym_DASH] = ACTIONS(4228), + [anon_sym_STAR] = ACTIONS(4226), + [anon_sym_SLASH] = ACTIONS(4228), + [anon_sym_PERCENT] = ACTIONS(4226), + [anon_sym_CARET] = ACTIONS(4226), + [anon_sym_PIPE] = ACTIONS(4228), + [anon_sym_AMP] = ACTIONS(4228), + [anon_sym_LT_LT] = ACTIONS(4226), + [anon_sym_GT_GT] = ACTIONS(4228), + [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(4228), + [anon_sym_EQ_GT] = ACTIONS(4226), + [anon_sym_switch] = ACTIONS(4226), + [anon_sym_when] = ACTIONS(4226), + [anon_sym_DOT_DOT] = ACTIONS(4226), + [anon_sym_and] = ACTIONS(4226), + [anon_sym_or] = ACTIONS(4226), + [anon_sym_AMP_AMP] = ACTIONS(4226), + [anon_sym_PIPE_PIPE] = ACTIONS(4226), + [anon_sym_QMARK_QMARK] = ACTIONS(4226), + [anon_sym_on] = ACTIONS(4226), + [anon_sym_equals] = ACTIONS(4226), + [anon_sym_by] = ACTIONS(4226), + [anon_sym_as] = ACTIONS(4226), + [anon_sym_is] = ACTIONS(4226), + [anon_sym_DASH_GT] = ACTIONS(4226), + [anon_sym_with] = ACTIONS(4226), + [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), @@ -500861,56 +500332,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), - [anon_sym_SEMI] = ACTIONS(2953), - [anon_sym_LBRACK] = ACTIONS(2953), - [anon_sym_COLON] = ACTIONS(2953), - [anon_sym_COMMA] = ACTIONS(2953), - [anon_sym_RBRACK] = ACTIONS(2953), - [anon_sym_LPAREN] = ACTIONS(2953), - [anon_sym_RPAREN] = ACTIONS(2953), - [anon_sym_RBRACE] = ACTIONS(2953), - [anon_sym_LT] = ACTIONS(2951), - [anon_sym_GT] = ACTIONS(2951), - [anon_sym_in] = ACTIONS(2953), - [anon_sym_QMARK] = ACTIONS(2951), - [anon_sym_BANG] = ACTIONS(2951), - [anon_sym_PLUS_PLUS] = ACTIONS(2953), - [anon_sym_DASH_DASH] = ACTIONS(2953), - [anon_sym_PLUS] = ACTIONS(2951), - [anon_sym_DASH] = ACTIONS(2951), - [anon_sym_STAR] = ACTIONS(2953), - [anon_sym_SLASH] = ACTIONS(2951), - [anon_sym_PERCENT] = ACTIONS(2953), - [anon_sym_CARET] = ACTIONS(2953), - [anon_sym_PIPE] = ACTIONS(2951), - [anon_sym_AMP] = ACTIONS(2951), - [anon_sym_LT_LT] = ACTIONS(2953), - [anon_sym_GT_GT] = ACTIONS(2951), - [anon_sym_GT_GT_GT] = ACTIONS(2953), - [anon_sym_EQ_EQ] = ACTIONS(2953), - [anon_sym_BANG_EQ] = ACTIONS(2953), - [anon_sym_GT_EQ] = ACTIONS(2953), - [anon_sym_LT_EQ] = ACTIONS(2953), - [anon_sym_DOT] = ACTIONS(2951), - [anon_sym_EQ_GT] = ACTIONS(2953), - [anon_sym_switch] = ACTIONS(2953), - [anon_sym_when] = ACTIONS(2953), - [anon_sym_DOT_DOT] = ACTIONS(2953), - [anon_sym_and] = ACTIONS(2953), - [anon_sym_or] = ACTIONS(2953), - [anon_sym_AMP_AMP] = ACTIONS(2953), - [anon_sym_PIPE_PIPE] = ACTIONS(2953), - [anon_sym_QMARK_QMARK] = ACTIONS(2953), - [anon_sym_on] = ACTIONS(2953), - [anon_sym_equals] = ACTIONS(2953), - [anon_sym_by] = ACTIONS(2953), - [anon_sym_as] = ACTIONS(2953), - [anon_sym_is] = ACTIONS(2953), - [anon_sym_DASH_GT] = ACTIONS(2953), - [anon_sym_with] = ACTIONS(2953), - [aux_sym_preproc_if_token3] = ACTIONS(2953), - [aux_sym_preproc_else_token1] = ACTIONS(2953), - [aux_sym_preproc_elif_token1] = ACTIONS(2953), + [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_preproc_if_token3] = ACTIONS(4949), + [aux_sym_preproc_else_token1] = ACTIONS(4949), + [aux_sym_preproc_elif_token1] = ACTIONS(4949), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -500923,26 +500394,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3416] = { - [sym__name] = STATE(6430), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(4096), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(4109), - [sym_type] = STATE(7688), - [sym_implicit_type] = STATE(7201), - [sym_array_type] = STATE(6648), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(6650), - [sym_pointer_type] = STATE(6650), - [sym__pointer_base_type] = STATE(7446), - [sym_function_pointer_type] = STATE(6650), - [sym_function_pointer_parameter] = STATE(7574), - [sym_ref_type] = STATE(7266), - [sym__ref_base_type] = STATE(7583), - [sym_scoped_type] = STATE(7266), - [sym_tuple_type] = STATE(6474), - [sym_identifier] = STATE(4087), - [sym__reserved_identifier] = STATE(3691), [sym_preproc_region] = STATE(3416), [sym_preproc_endregion] = STATE(3416), [sym_preproc_line] = STATE(3416), @@ -500952,36 +500403,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), - [aux_sym_function_pointer_type_repeat1] = STATE(3422), - [sym__identifier_token] = ACTIONS(2967), - [anon_sym_alias] = ACTIONS(2971), - [anon_sym_global] = ACTIONS(2971), - [anon_sym_LPAREN] = ACTIONS(2979), - [anon_sym_ref] = ACTIONS(5472), - [anon_sym_delegate] = ACTIONS(5030), - [anon_sym_file] = ACTIONS(2971), - [anon_sym_in] = ACTIONS(5474), - [anon_sym_out] = ACTIONS(5474), - [anon_sym_where] = ACTIONS(2971), - [anon_sym_notnull] = ACTIONS(2971), - [anon_sym_unmanaged] = ACTIONS(2971), - [anon_sym_scoped] = ACTIONS(5476), - [anon_sym_var] = ACTIONS(4737), - [sym_predefined_type] = ACTIONS(5478), - [anon_sym_yield] = ACTIONS(2971), - [anon_sym_when] = ACTIONS(2971), - [anon_sym_from] = ACTIONS(2971), - [anon_sym_into] = ACTIONS(2971), - [anon_sym_join] = ACTIONS(2971), - [anon_sym_on] = ACTIONS(2971), - [anon_sym_equals] = ACTIONS(2971), - [anon_sym_let] = ACTIONS(2971), - [anon_sym_orderby] = ACTIONS(2971), - [anon_sym_ascending] = ACTIONS(2971), - [anon_sym_descending] = ACTIONS(2971), - [anon_sym_group] = ACTIONS(2971), - [anon_sym_by] = ACTIONS(2971), - [anon_sym_select] = ACTIONS(2971), + [anon_sym_SEMI] = ACTIONS(5420), + [anon_sym_LBRACK] = ACTIONS(5420), + [anon_sym_COLON] = ACTIONS(5420), + [anon_sym_COMMA] = ACTIONS(5420), + [anon_sym_RBRACK] = ACTIONS(5420), + [anon_sym_LPAREN] = ACTIONS(5420), + [anon_sym_RPAREN] = ACTIONS(5420), + [anon_sym_RBRACE] = ACTIONS(5420), + [anon_sym_LT] = ACTIONS(5422), + [anon_sym_GT] = ACTIONS(5422), + [anon_sym_in] = ACTIONS(5420), + [anon_sym_QMARK] = ACTIONS(5422), + [anon_sym_BANG] = ACTIONS(5422), + [anon_sym_PLUS_PLUS] = ACTIONS(5420), + [anon_sym_DASH_DASH] = ACTIONS(5420), + [anon_sym_PLUS] = ACTIONS(5422), + [anon_sym_DASH] = ACTIONS(5422), + [anon_sym_STAR] = ACTIONS(5420), + [anon_sym_SLASH] = ACTIONS(5422), + [anon_sym_PERCENT] = ACTIONS(5420), + [anon_sym_CARET] = ACTIONS(5420), + [anon_sym_PIPE] = ACTIONS(5422), + [anon_sym_AMP] = ACTIONS(5422), + [anon_sym_LT_LT] = ACTIONS(5420), + [anon_sym_GT_GT] = ACTIONS(5422), + [anon_sym_GT_GT_GT] = ACTIONS(5420), + [anon_sym_EQ_EQ] = ACTIONS(5420), + [anon_sym_BANG_EQ] = ACTIONS(5420), + [anon_sym_GT_EQ] = ACTIONS(5420), + [anon_sym_LT_EQ] = ACTIONS(5420), + [anon_sym_DOT] = ACTIONS(5422), + [anon_sym_EQ_GT] = ACTIONS(5420), + [anon_sym_switch] = ACTIONS(5420), + [anon_sym_when] = ACTIONS(5420), + [anon_sym_DOT_DOT] = ACTIONS(5420), + [anon_sym_and] = ACTIONS(5420), + [anon_sym_or] = ACTIONS(5420), + [anon_sym_AMP_AMP] = ACTIONS(5420), + [anon_sym_PIPE_PIPE] = ACTIONS(5420), + [anon_sym_QMARK_QMARK] = ACTIONS(5420), + [anon_sym_on] = ACTIONS(5420), + [anon_sym_equals] = ACTIONS(5420), + [anon_sym_by] = ACTIONS(5420), + [anon_sym_as] = ACTIONS(5420), + [anon_sym_is] = ACTIONS(5420), + [anon_sym_DASH_GT] = ACTIONS(5420), + [anon_sym_with] = ACTIONS(5420), + [aux_sym_preproc_if_token3] = ACTIONS(5420), + [aux_sym_preproc_else_token1] = ACTIONS(5420), + [aux_sym_preproc_elif_token1] = ACTIONS(5420), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -501003,56 +500474,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(5001), - [anon_sym_LBRACK] = ACTIONS(5001), - [anon_sym_COLON] = ACTIONS(5001), - [anon_sym_COMMA] = ACTIONS(5001), - [anon_sym_RBRACK] = ACTIONS(5001), - [anon_sym_LPAREN] = ACTIONS(5001), - [anon_sym_RPAREN] = ACTIONS(5001), - [anon_sym_RBRACE] = ACTIONS(5001), - [anon_sym_LT] = ACTIONS(5003), - [anon_sym_GT] = ACTIONS(5003), - [anon_sym_in] = ACTIONS(5001), - [anon_sym_QMARK] = ACTIONS(5003), - [anon_sym_BANG] = ACTIONS(5003), - [anon_sym_PLUS_PLUS] = ACTIONS(5001), - [anon_sym_DASH_DASH] = ACTIONS(5001), - [anon_sym_PLUS] = ACTIONS(5003), - [anon_sym_DASH] = ACTIONS(5003), - [anon_sym_STAR] = ACTIONS(5001), - [anon_sym_SLASH] = ACTIONS(5003), - [anon_sym_PERCENT] = ACTIONS(5001), - [anon_sym_CARET] = ACTIONS(5001), - [anon_sym_PIPE] = ACTIONS(5003), - [anon_sym_AMP] = ACTIONS(5003), - [anon_sym_LT_LT] = ACTIONS(5001), - [anon_sym_GT_GT] = ACTIONS(5003), - [anon_sym_GT_GT_GT] = ACTIONS(5001), - [anon_sym_EQ_EQ] = ACTIONS(5001), - [anon_sym_BANG_EQ] = ACTIONS(5001), - [anon_sym_GT_EQ] = ACTIONS(5001), - [anon_sym_LT_EQ] = ACTIONS(5001), - [anon_sym_DOT] = ACTIONS(5003), - [anon_sym_EQ_GT] = ACTIONS(5001), - [anon_sym_switch] = ACTIONS(5001), - [anon_sym_when] = ACTIONS(5001), - [anon_sym_DOT_DOT] = ACTIONS(5001), - [anon_sym_and] = ACTIONS(5001), - [anon_sym_or] = ACTIONS(5001), - [anon_sym_AMP_AMP] = ACTIONS(5001), - [anon_sym_PIPE_PIPE] = ACTIONS(5001), - [anon_sym_QMARK_QMARK] = ACTIONS(5001), - [anon_sym_on] = ACTIONS(5001), - [anon_sym_equals] = ACTIONS(5001), - [anon_sym_by] = ACTIONS(5001), - [anon_sym_as] = ACTIONS(5001), - [anon_sym_is] = ACTIONS(5001), - [anon_sym_DASH_GT] = ACTIONS(5001), - [anon_sym_with] = ACTIONS(5001), - [aux_sym_preproc_if_token3] = ACTIONS(5001), - [aux_sym_preproc_else_token1] = ACTIONS(5001), - [aux_sym_preproc_elif_token1] = ACTIONS(5001), + [anon_sym_SEMI] = ACTIONS(4953), + [anon_sym_LBRACK] = ACTIONS(4953), + [anon_sym_COLON] = ACTIONS(4953), + [anon_sym_COMMA] = ACTIONS(4953), + [anon_sym_RBRACK] = ACTIONS(4953), + [anon_sym_LPAREN] = ACTIONS(4953), + [anon_sym_RPAREN] = ACTIONS(4953), + [anon_sym_RBRACE] = ACTIONS(4953), + [anon_sym_LT] = ACTIONS(4955), + [anon_sym_GT] = ACTIONS(4955), + [anon_sym_in] = ACTIONS(4953), + [anon_sym_QMARK] = ACTIONS(4955), + [anon_sym_BANG] = ACTIONS(4955), + [anon_sym_PLUS_PLUS] = ACTIONS(4953), + [anon_sym_DASH_DASH] = ACTIONS(4953), + [anon_sym_PLUS] = ACTIONS(4955), + [anon_sym_DASH] = ACTIONS(4955), + [anon_sym_STAR] = ACTIONS(4953), + [anon_sym_SLASH] = ACTIONS(4955), + [anon_sym_PERCENT] = ACTIONS(4953), + [anon_sym_CARET] = ACTIONS(4953), + [anon_sym_PIPE] = ACTIONS(4955), + [anon_sym_AMP] = ACTIONS(4955), + [anon_sym_LT_LT] = ACTIONS(4953), + [anon_sym_GT_GT] = ACTIONS(4955), + [anon_sym_GT_GT_GT] = ACTIONS(4953), + [anon_sym_EQ_EQ] = ACTIONS(4953), + [anon_sym_BANG_EQ] = ACTIONS(4953), + [anon_sym_GT_EQ] = ACTIONS(4953), + [anon_sym_LT_EQ] = ACTIONS(4953), + [anon_sym_DOT] = ACTIONS(4955), + [anon_sym_EQ_GT] = ACTIONS(4953), + [anon_sym_switch] = ACTIONS(4953), + [anon_sym_when] = ACTIONS(4953), + [anon_sym_DOT_DOT] = ACTIONS(4953), + [anon_sym_and] = ACTIONS(4953), + [anon_sym_or] = ACTIONS(4953), + [anon_sym_AMP_AMP] = ACTIONS(4953), + [anon_sym_PIPE_PIPE] = ACTIONS(4953), + [anon_sym_QMARK_QMARK] = ACTIONS(4953), + [anon_sym_on] = ACTIONS(4953), + [anon_sym_equals] = ACTIONS(4953), + [anon_sym_by] = ACTIONS(4953), + [anon_sym_as] = ACTIONS(4953), + [anon_sym_is] = ACTIONS(4953), + [anon_sym_DASH_GT] = ACTIONS(4953), + [anon_sym_with] = ACTIONS(4953), + [aux_sym_preproc_if_token3] = ACTIONS(4953), + [aux_sym_preproc_else_token1] = ACTIONS(4953), + [aux_sym_preproc_elif_token1] = ACTIONS(4953), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -501074,56 +500545,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(1957), - [anon_sym_LBRACK] = ACTIONS(1957), - [anon_sym_COLON] = ACTIONS(1957), - [anon_sym_COMMA] = ACTIONS(1957), - [anon_sym_RBRACK] = ACTIONS(1957), - [anon_sym_LPAREN] = ACTIONS(1957), - [anon_sym_RPAREN] = ACTIONS(1957), - [anon_sym_RBRACE] = ACTIONS(1957), - [anon_sym_LT] = ACTIONS(1959), - [anon_sym_GT] = ACTIONS(1959), - [anon_sym_in] = ACTIONS(1957), - [anon_sym_QMARK] = ACTIONS(1959), - [anon_sym_BANG] = ACTIONS(1959), - [anon_sym_PLUS_PLUS] = ACTIONS(1957), - [anon_sym_DASH_DASH] = ACTIONS(1957), - [anon_sym_PLUS] = ACTIONS(1959), - [anon_sym_DASH] = ACTIONS(1959), - [anon_sym_STAR] = ACTIONS(1957), - [anon_sym_SLASH] = ACTIONS(1959), - [anon_sym_PERCENT] = ACTIONS(1957), - [anon_sym_CARET] = ACTIONS(1957), - [anon_sym_PIPE] = ACTIONS(1959), - [anon_sym_AMP] = ACTIONS(1959), - [anon_sym_LT_LT] = ACTIONS(1957), - [anon_sym_GT_GT] = ACTIONS(1959), - [anon_sym_GT_GT_GT] = ACTIONS(1957), - [anon_sym_EQ_EQ] = ACTIONS(1957), - [anon_sym_BANG_EQ] = ACTIONS(1957), - [anon_sym_GT_EQ] = ACTIONS(1957), - [anon_sym_LT_EQ] = ACTIONS(1957), - [anon_sym_DOT] = ACTIONS(1959), - [anon_sym_EQ_GT] = ACTIONS(1957), - [anon_sym_switch] = ACTIONS(1957), - [anon_sym_when] = ACTIONS(1957), - [anon_sym_DOT_DOT] = ACTIONS(1957), - [anon_sym_and] = ACTIONS(1957), - [anon_sym_or] = ACTIONS(1957), - [anon_sym_AMP_AMP] = ACTIONS(1957), - [anon_sym_PIPE_PIPE] = ACTIONS(1957), - [anon_sym_QMARK_QMARK] = ACTIONS(1957), - [anon_sym_on] = ACTIONS(1957), - [anon_sym_equals] = ACTIONS(1957), - [anon_sym_by] = ACTIONS(1957), - [anon_sym_as] = ACTIONS(1957), - [anon_sym_is] = ACTIONS(1957), - [anon_sym_DASH_GT] = ACTIONS(1957), - [anon_sym_with] = ACTIONS(1957), - [aux_sym_preproc_if_token3] = ACTIONS(1957), - [aux_sym_preproc_else_token1] = ACTIONS(1957), - [aux_sym_preproc_elif_token1] = ACTIONS(1957), + [anon_sym_SEMI] = ACTIONS(4957), + [anon_sym_LBRACK] = ACTIONS(4957), + [anon_sym_COLON] = ACTIONS(4957), + [anon_sym_COMMA] = ACTIONS(4957), + [anon_sym_RBRACK] = ACTIONS(4957), + [anon_sym_LPAREN] = ACTIONS(4957), + [anon_sym_RPAREN] = ACTIONS(4957), + [anon_sym_RBRACE] = ACTIONS(4957), + [anon_sym_LT] = ACTIONS(4959), + [anon_sym_GT] = ACTIONS(4959), + [anon_sym_in] = ACTIONS(4957), + [anon_sym_QMARK] = ACTIONS(4959), + [anon_sym_BANG] = ACTIONS(4959), + [anon_sym_PLUS_PLUS] = ACTIONS(4957), + [anon_sym_DASH_DASH] = ACTIONS(4957), + [anon_sym_PLUS] = ACTIONS(4959), + [anon_sym_DASH] = ACTIONS(4959), + [anon_sym_STAR] = ACTIONS(4957), + [anon_sym_SLASH] = ACTIONS(4959), + [anon_sym_PERCENT] = ACTIONS(4957), + [anon_sym_CARET] = ACTIONS(4957), + [anon_sym_PIPE] = ACTIONS(4959), + [anon_sym_AMP] = ACTIONS(4959), + [anon_sym_LT_LT] = ACTIONS(4957), + [anon_sym_GT_GT] = ACTIONS(4959), + [anon_sym_GT_GT_GT] = ACTIONS(4957), + [anon_sym_EQ_EQ] = ACTIONS(4957), + [anon_sym_BANG_EQ] = ACTIONS(4957), + [anon_sym_GT_EQ] = ACTIONS(4957), + [anon_sym_LT_EQ] = ACTIONS(4957), + [anon_sym_DOT] = ACTIONS(4959), + [anon_sym_EQ_GT] = ACTIONS(4957), + [anon_sym_switch] = ACTIONS(4957), + [anon_sym_when] = ACTIONS(4957), + [anon_sym_DOT_DOT] = ACTIONS(4957), + [anon_sym_and] = ACTIONS(4957), + [anon_sym_or] = ACTIONS(4957), + [anon_sym_AMP_AMP] = ACTIONS(4957), + [anon_sym_PIPE_PIPE] = ACTIONS(4957), + [anon_sym_QMARK_QMARK] = ACTIONS(4957), + [anon_sym_on] = ACTIONS(4957), + [anon_sym_equals] = ACTIONS(4957), + [anon_sym_by] = ACTIONS(4957), + [anon_sym_as] = ACTIONS(4957), + [anon_sym_is] = ACTIONS(4957), + [anon_sym_DASH_GT] = ACTIONS(4957), + [anon_sym_with] = ACTIONS(4957), + [aux_sym_preproc_if_token3] = ACTIONS(4957), + [aux_sym_preproc_else_token1] = ACTIONS(4957), + [aux_sym_preproc_elif_token1] = ACTIONS(4957), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -501136,15 +500607,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3419] = { - [sym__name] = STATE(5302), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(4096), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_ref_type] = STATE(2317), - [sym__scoped_base_type] = STATE(2340), - [sym_identifier] = STATE(4373), - [sym__reserved_identifier] = STATE(2175), [sym_preproc_region] = STATE(3419), [sym_preproc_endregion] = STATE(3419), [sym_preproc_line] = STATE(3419), @@ -501154,118 +500616,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(3589), - [anon_sym_alias] = ACTIONS(3593), - [anon_sym_global] = ACTIONS(3593), - [anon_sym_EQ] = ACTIONS(3447), - [anon_sym_LBRACK] = ACTIONS(3445), - [anon_sym_COMMA] = ACTIONS(3445), - [anon_sym_LPAREN] = ACTIONS(3597), - [anon_sym_RPAREN] = ACTIONS(3445), - [anon_sym_ref] = ACTIONS(2693), - [anon_sym_delegate] = ACTIONS(2693), - [anon_sym_file] = ACTIONS(3593), - [anon_sym_readonly] = ACTIONS(2693), - [anon_sym_LT] = ACTIONS(3445), - [anon_sym_in] = ACTIONS(2693), - [anon_sym_out] = ACTIONS(2693), - [anon_sym_where] = ACTIONS(3593), - [anon_sym_QMARK] = ACTIONS(3445), - [anon_sym_notnull] = ACTIONS(3593), - [anon_sym_unmanaged] = ACTIONS(3593), - [anon_sym_STAR] = ACTIONS(3445), - [anon_sym_this] = ACTIONS(2693), - [anon_sym_DOT] = ACTIONS(3445), - [anon_sym_scoped] = ACTIONS(3593), - [anon_sym_EQ_GT] = ACTIONS(3445), - [anon_sym_COLON_COLON] = ACTIONS(3445), - [anon_sym_var] = ACTIONS(3593), - [sym_predefined_type] = ACTIONS(2693), - [anon_sym_yield] = ACTIONS(3593), - [anon_sym_when] = ACTIONS(3593), - [anon_sym_from] = ACTIONS(3593), - [anon_sym_into] = ACTIONS(3593), - [anon_sym_join] = ACTIONS(3593), - [anon_sym_on] = ACTIONS(3593), - [anon_sym_equals] = ACTIONS(3593), - [anon_sym_let] = ACTIONS(3593), - [anon_sym_orderby] = ACTIONS(3593), - [anon_sym_ascending] = ACTIONS(3593), - [anon_sym_descending] = ACTIONS(3593), - [anon_sym_group] = ACTIONS(3593), - [anon_sym_by] = ACTIONS(3593), - [anon_sym_select] = ACTIONS(3593), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_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), + [anon_sym_SEMI] = ACTIONS(4945), + [anon_sym_LBRACK] = ACTIONS(4945), + [anon_sym_COLON] = ACTIONS(4945), + [anon_sym_COMMA] = ACTIONS(4945), + [anon_sym_RBRACK] = ACTIONS(4945), + [anon_sym_LPAREN] = ACTIONS(4945), + [anon_sym_RPAREN] = ACTIONS(4945), + [anon_sym_RBRACE] = ACTIONS(4945), + [anon_sym_LT] = ACTIONS(4947), + [anon_sym_GT] = ACTIONS(4947), + [anon_sym_in] = ACTIONS(4945), + [anon_sym_QMARK] = ACTIONS(4947), + [anon_sym_BANG] = ACTIONS(4947), + [anon_sym_PLUS_PLUS] = ACTIONS(4945), + [anon_sym_DASH_DASH] = ACTIONS(4945), + [anon_sym_PLUS] = ACTIONS(4947), + [anon_sym_DASH] = ACTIONS(4947), + [anon_sym_STAR] = ACTIONS(4945), + [anon_sym_SLASH] = ACTIONS(4947), + [anon_sym_PERCENT] = ACTIONS(4945), + [anon_sym_CARET] = ACTIONS(4945), + [anon_sym_PIPE] = ACTIONS(4947), + [anon_sym_AMP] = ACTIONS(4947), + [anon_sym_LT_LT] = ACTIONS(4945), + [anon_sym_GT_GT] = ACTIONS(4947), + [anon_sym_GT_GT_GT] = ACTIONS(4945), + [anon_sym_EQ_EQ] = ACTIONS(4945), + [anon_sym_BANG_EQ] = ACTIONS(4945), + [anon_sym_GT_EQ] = ACTIONS(4945), + [anon_sym_LT_EQ] = ACTIONS(4945), + [anon_sym_DOT] = ACTIONS(4947), + [anon_sym_EQ_GT] = ACTIONS(4945), + [anon_sym_switch] = ACTIONS(4945), + [anon_sym_when] = ACTIONS(4945), + [anon_sym_DOT_DOT] = ACTIONS(4945), + [anon_sym_and] = ACTIONS(4945), + [anon_sym_or] = ACTIONS(4945), + [anon_sym_AMP_AMP] = ACTIONS(4945), + [anon_sym_PIPE_PIPE] = ACTIONS(4945), + [anon_sym_QMARK_QMARK] = ACTIONS(4945), + [anon_sym_on] = ACTIONS(4945), + [anon_sym_equals] = ACTIONS(4945), + [anon_sym_by] = ACTIONS(4945), + [anon_sym_as] = ACTIONS(4945), + [anon_sym_is] = ACTIONS(4945), + [anon_sym_DASH_GT] = ACTIONS(4945), + [anon_sym_with] = ACTIONS(4945), + [aux_sym_preproc_if_token3] = ACTIONS(4945), + [aux_sym_preproc_else_token1] = ACTIONS(4945), + [aux_sym_preproc_elif_token1] = ACTIONS(4945), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_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(3143), - [anon_sym_LBRACK] = ACTIONS(3143), - [anon_sym_COLON] = ACTIONS(3143), - [anon_sym_COMMA] = ACTIONS(3143), - [anon_sym_RBRACK] = ACTIONS(3143), - [anon_sym_LPAREN] = ACTIONS(3143), - [anon_sym_RPAREN] = ACTIONS(3143), - [anon_sym_RBRACE] = ACTIONS(3143), - [anon_sym_LT] = ACTIONS(3141), - [anon_sym_GT] = ACTIONS(3141), - [anon_sym_in] = ACTIONS(3143), - [anon_sym_QMARK] = ACTIONS(3141), - [anon_sym_BANG] = ACTIONS(3141), - [anon_sym_PLUS_PLUS] = ACTIONS(3143), - [anon_sym_DASH_DASH] = ACTIONS(3143), - [anon_sym_PLUS] = ACTIONS(3141), - [anon_sym_DASH] = ACTIONS(3141), - [anon_sym_STAR] = ACTIONS(3143), - [anon_sym_SLASH] = ACTIONS(3141), - [anon_sym_PERCENT] = ACTIONS(3143), - [anon_sym_CARET] = ACTIONS(3143), - [anon_sym_PIPE] = ACTIONS(3141), - [anon_sym_AMP] = ACTIONS(3141), - [anon_sym_LT_LT] = ACTIONS(3143), - [anon_sym_GT_GT] = ACTIONS(3141), - [anon_sym_GT_GT_GT] = ACTIONS(3143), - [anon_sym_EQ_EQ] = ACTIONS(3143), - [anon_sym_BANG_EQ] = ACTIONS(3143), - [anon_sym_GT_EQ] = ACTIONS(3143), - [anon_sym_LT_EQ] = ACTIONS(3143), - [anon_sym_DOT] = ACTIONS(3141), - [anon_sym_EQ_GT] = ACTIONS(3143), - [anon_sym_switch] = ACTIONS(3143), - [anon_sym_when] = ACTIONS(3143), - [anon_sym_DOT_DOT] = ACTIONS(3143), - [anon_sym_and] = ACTIONS(3143), - [anon_sym_or] = ACTIONS(3143), - [anon_sym_AMP_AMP] = ACTIONS(3143), - [anon_sym_PIPE_PIPE] = ACTIONS(3143), - [anon_sym_QMARK_QMARK] = ACTIONS(3143), - [anon_sym_on] = ACTIONS(3143), - [anon_sym_equals] = ACTIONS(3143), - [anon_sym_by] = ACTIONS(3143), - [anon_sym_as] = ACTIONS(3143), - [anon_sym_is] = ACTIONS(3143), - [anon_sym_DASH_GT] = ACTIONS(3143), - [anon_sym_with] = ACTIONS(3143), - [aux_sym_preproc_if_token3] = ACTIONS(3143), - [aux_sym_preproc_else_token1] = ACTIONS(3143), - [aux_sym_preproc_elif_token1] = ACTIONS(3143), + [anon_sym_SEMI] = ACTIONS(4961), + [anon_sym_LBRACK] = ACTIONS(4961), + [anon_sym_COLON] = ACTIONS(4961), + [anon_sym_COMMA] = ACTIONS(4961), + [anon_sym_RBRACK] = ACTIONS(4961), + [anon_sym_LPAREN] = ACTIONS(4961), + [anon_sym_RPAREN] = ACTIONS(4961), + [anon_sym_RBRACE] = ACTIONS(4961), + [anon_sym_LT] = ACTIONS(4963), + [anon_sym_GT] = ACTIONS(4963), + [anon_sym_in] = ACTIONS(4961), + [anon_sym_QMARK] = ACTIONS(4963), + [anon_sym_BANG] = ACTIONS(4963), + [anon_sym_PLUS_PLUS] = ACTIONS(4961), + [anon_sym_DASH_DASH] = ACTIONS(4961), + [anon_sym_PLUS] = ACTIONS(4963), + [anon_sym_DASH] = ACTIONS(4963), + [anon_sym_STAR] = ACTIONS(4961), + [anon_sym_SLASH] = ACTIONS(4963), + [anon_sym_PERCENT] = ACTIONS(4961), + [anon_sym_CARET] = ACTIONS(4961), + [anon_sym_PIPE] = ACTIONS(4963), + [anon_sym_AMP] = ACTIONS(4963), + [anon_sym_LT_LT] = ACTIONS(4961), + [anon_sym_GT_GT] = ACTIONS(4963), + [anon_sym_GT_GT_GT] = ACTIONS(4961), + [anon_sym_EQ_EQ] = ACTIONS(4961), + [anon_sym_BANG_EQ] = ACTIONS(4961), + [anon_sym_GT_EQ] = ACTIONS(4961), + [anon_sym_LT_EQ] = ACTIONS(4961), + [anon_sym_DOT] = ACTIONS(4963), + [anon_sym_EQ_GT] = ACTIONS(4961), + [anon_sym_switch] = ACTIONS(4961), + [anon_sym_when] = ACTIONS(4961), + [anon_sym_DOT_DOT] = ACTIONS(4961), + [anon_sym_and] = ACTIONS(4961), + [anon_sym_or] = ACTIONS(4961), + [anon_sym_AMP_AMP] = ACTIONS(4961), + [anon_sym_PIPE_PIPE] = ACTIONS(4961), + [anon_sym_QMARK_QMARK] = ACTIONS(4961), + [anon_sym_on] = ACTIONS(4961), + [anon_sym_equals] = ACTIONS(4961), + [anon_sym_by] = ACTIONS(4961), + [anon_sym_as] = ACTIONS(4961), + [anon_sym_is] = ACTIONS(4961), + [anon_sym_DASH_GT] = ACTIONS(4961), + [anon_sym_with] = ACTIONS(4961), + [aux_sym_preproc_if_token3] = ACTIONS(4961), + [aux_sym_preproc_else_token1] = ACTIONS(4961), + [aux_sym_preproc_elif_token1] = ACTIONS(4961), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -501287,56 +500758,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(5102), - [anon_sym_LBRACK] = ACTIONS(5102), - [anon_sym_COLON] = ACTIONS(5102), - [anon_sym_COMMA] = ACTIONS(5102), - [anon_sym_RBRACK] = ACTIONS(5102), - [anon_sym_LPAREN] = ACTIONS(5102), - [anon_sym_RPAREN] = ACTIONS(5102), - [anon_sym_RBRACE] = ACTIONS(5102), - [anon_sym_LT] = ACTIONS(5104), - [anon_sym_GT] = ACTIONS(5104), - [anon_sym_in] = ACTIONS(5102), - [anon_sym_QMARK] = ACTIONS(5104), - [anon_sym_BANG] = ACTIONS(5104), - [anon_sym_PLUS_PLUS] = ACTIONS(5102), - [anon_sym_DASH_DASH] = ACTIONS(5102), - [anon_sym_PLUS] = ACTIONS(5104), - [anon_sym_DASH] = ACTIONS(5104), - [anon_sym_STAR] = ACTIONS(5102), - [anon_sym_SLASH] = ACTIONS(5104), - [anon_sym_PERCENT] = ACTIONS(5102), - [anon_sym_CARET] = ACTIONS(5102), - [anon_sym_PIPE] = ACTIONS(5104), - [anon_sym_AMP] = ACTIONS(5104), - [anon_sym_LT_LT] = ACTIONS(5102), - [anon_sym_GT_GT] = ACTIONS(5104), - [anon_sym_GT_GT_GT] = ACTIONS(5102), - [anon_sym_EQ_EQ] = ACTIONS(5102), - [anon_sym_BANG_EQ] = ACTIONS(5102), - [anon_sym_GT_EQ] = ACTIONS(5102), - [anon_sym_LT_EQ] = ACTIONS(5102), - [anon_sym_DOT] = ACTIONS(5104), - [anon_sym_EQ_GT] = ACTIONS(5102), - [anon_sym_switch] = ACTIONS(5102), - [anon_sym_when] = ACTIONS(5102), - [anon_sym_DOT_DOT] = ACTIONS(5102), - [anon_sym_and] = ACTIONS(5102), - [anon_sym_or] = ACTIONS(5102), - [anon_sym_AMP_AMP] = ACTIONS(5102), - [anon_sym_PIPE_PIPE] = ACTIONS(5102), - [anon_sym_QMARK_QMARK] = ACTIONS(5102), - [anon_sym_on] = ACTIONS(5102), - [anon_sym_equals] = ACTIONS(5102), - [anon_sym_by] = ACTIONS(5102), - [anon_sym_as] = ACTIONS(5102), - [anon_sym_is] = ACTIONS(5102), - [anon_sym_DASH_GT] = ACTIONS(5102), - [anon_sym_with] = ACTIONS(5102), - [aux_sym_preproc_if_token3] = ACTIONS(5102), - [aux_sym_preproc_else_token1] = ACTIONS(5102), - [aux_sym_preproc_elif_token1] = ACTIONS(5102), + [anon_sym_SEMI] = ACTIONS(4965), + [anon_sym_LBRACK] = ACTIONS(4965), + [anon_sym_COLON] = ACTIONS(4965), + [anon_sym_COMMA] = ACTIONS(4965), + [anon_sym_RBRACK] = ACTIONS(4965), + [anon_sym_LPAREN] = ACTIONS(4965), + [anon_sym_RPAREN] = ACTIONS(4965), + [anon_sym_RBRACE] = ACTIONS(4965), + [anon_sym_LT] = ACTIONS(4967), + [anon_sym_GT] = ACTIONS(4967), + [anon_sym_in] = ACTIONS(4965), + [anon_sym_QMARK] = ACTIONS(4967), + [anon_sym_BANG] = ACTIONS(4967), + [anon_sym_PLUS_PLUS] = ACTIONS(4965), + [anon_sym_DASH_DASH] = ACTIONS(4965), + [anon_sym_PLUS] = ACTIONS(4967), + [anon_sym_DASH] = ACTIONS(4967), + [anon_sym_STAR] = ACTIONS(4965), + [anon_sym_SLASH] = ACTIONS(4967), + [anon_sym_PERCENT] = ACTIONS(4965), + [anon_sym_CARET] = ACTIONS(4965), + [anon_sym_PIPE] = ACTIONS(4967), + [anon_sym_AMP] = ACTIONS(4967), + [anon_sym_LT_LT] = ACTIONS(4965), + [anon_sym_GT_GT] = ACTIONS(4967), + [anon_sym_GT_GT_GT] = ACTIONS(4965), + [anon_sym_EQ_EQ] = ACTIONS(4965), + [anon_sym_BANG_EQ] = ACTIONS(4965), + [anon_sym_GT_EQ] = ACTIONS(4965), + [anon_sym_LT_EQ] = ACTIONS(4965), + [anon_sym_DOT] = ACTIONS(4967), + [anon_sym_EQ_GT] = ACTIONS(4965), + [anon_sym_switch] = ACTIONS(4965), + [anon_sym_when] = ACTIONS(4965), + [anon_sym_DOT_DOT] = ACTIONS(4965), + [anon_sym_and] = ACTIONS(4965), + [anon_sym_or] = ACTIONS(4965), + [anon_sym_AMP_AMP] = ACTIONS(4965), + [anon_sym_PIPE_PIPE] = ACTIONS(4965), + [anon_sym_QMARK_QMARK] = ACTIONS(4965), + [anon_sym_on] = ACTIONS(4965), + [anon_sym_equals] = ACTIONS(4965), + [anon_sym_by] = ACTIONS(4965), + [anon_sym_as] = ACTIONS(4965), + [anon_sym_is] = ACTIONS(4965), + [anon_sym_DASH_GT] = ACTIONS(4965), + [anon_sym_with] = ACTIONS(4965), + [aux_sym_preproc_if_token3] = ACTIONS(4965), + [aux_sym_preproc_else_token1] = ACTIONS(4965), + [aux_sym_preproc_elif_token1] = ACTIONS(4965), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -501349,26 +500820,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3422] = { - [sym__name] = STATE(6430), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(4096), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(4109), - [sym_type] = STATE(7713), - [sym_implicit_type] = STATE(7201), - [sym_array_type] = STATE(6648), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(6650), - [sym_pointer_type] = STATE(6650), - [sym__pointer_base_type] = STATE(7446), - [sym_function_pointer_type] = STATE(6650), - [sym_function_pointer_parameter] = STATE(7574), - [sym_ref_type] = STATE(7266), - [sym__ref_base_type] = STATE(7583), - [sym_scoped_type] = STATE(7266), - [sym_tuple_type] = STATE(6474), - [sym_identifier] = STATE(4087), - [sym__reserved_identifier] = STATE(3691), [sym_preproc_region] = STATE(3422), [sym_preproc_endregion] = STATE(3422), [sym_preproc_line] = STATE(3422), @@ -501378,36 +500829,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(3670), - [sym__identifier_token] = ACTIONS(2967), - [anon_sym_alias] = ACTIONS(2971), - [anon_sym_global] = ACTIONS(2971), - [anon_sym_LPAREN] = ACTIONS(2979), - [anon_sym_ref] = ACTIONS(5472), - [anon_sym_delegate] = ACTIONS(5030), - [anon_sym_file] = ACTIONS(2971), - [anon_sym_in] = ACTIONS(5474), - [anon_sym_out] = ACTIONS(5474), - [anon_sym_where] = ACTIONS(2971), - [anon_sym_notnull] = ACTIONS(2971), - [anon_sym_unmanaged] = ACTIONS(2971), - [anon_sym_scoped] = ACTIONS(5476), - [anon_sym_var] = ACTIONS(4737), - [sym_predefined_type] = ACTIONS(5478), - [anon_sym_yield] = ACTIONS(2971), - [anon_sym_when] = ACTIONS(2971), - [anon_sym_from] = ACTIONS(2971), - [anon_sym_into] = ACTIONS(2971), - [anon_sym_join] = ACTIONS(2971), - [anon_sym_on] = ACTIONS(2971), - [anon_sym_equals] = ACTIONS(2971), - [anon_sym_let] = ACTIONS(2971), - [anon_sym_orderby] = ACTIONS(2971), - [anon_sym_ascending] = ACTIONS(2971), - [anon_sym_descending] = ACTIONS(2971), - [anon_sym_group] = ACTIONS(2971), - [anon_sym_by] = ACTIONS(2971), - [anon_sym_select] = ACTIONS(2971), + [anon_sym_SEMI] = ACTIONS(5442), + [anon_sym_LBRACK] = ACTIONS(5442), + [anon_sym_COLON] = ACTIONS(5442), + [anon_sym_COMMA] = ACTIONS(5442), + [anon_sym_RBRACK] = ACTIONS(5442), + [anon_sym_LPAREN] = ACTIONS(5442), + [anon_sym_RPAREN] = ACTIONS(5442), + [anon_sym_RBRACE] = ACTIONS(5442), + [anon_sym_LT] = ACTIONS(5444), + [anon_sym_GT] = ACTIONS(5444), + [anon_sym_in] = ACTIONS(5442), + [anon_sym_QMARK] = ACTIONS(5444), + [anon_sym_BANG] = ACTIONS(5444), + [anon_sym_PLUS_PLUS] = ACTIONS(5442), + [anon_sym_DASH_DASH] = ACTIONS(5442), + [anon_sym_PLUS] = ACTIONS(5444), + [anon_sym_DASH] = ACTIONS(5444), + [anon_sym_STAR] = ACTIONS(5442), + [anon_sym_SLASH] = ACTIONS(5444), + [anon_sym_PERCENT] = ACTIONS(5442), + [anon_sym_CARET] = ACTIONS(5442), + [anon_sym_PIPE] = ACTIONS(5444), + [anon_sym_AMP] = ACTIONS(5444), + [anon_sym_LT_LT] = ACTIONS(5442), + [anon_sym_GT_GT] = ACTIONS(5444), + [anon_sym_GT_GT_GT] = ACTIONS(5442), + [anon_sym_EQ_EQ] = ACTIONS(5442), + [anon_sym_BANG_EQ] = ACTIONS(5442), + [anon_sym_GT_EQ] = ACTIONS(5442), + [anon_sym_LT_EQ] = ACTIONS(5442), + [anon_sym_DOT] = ACTIONS(5444), + [anon_sym_EQ_GT] = ACTIONS(5442), + [anon_sym_switch] = ACTIONS(5442), + [anon_sym_when] = ACTIONS(5442), + [anon_sym_DOT_DOT] = ACTIONS(5442), + [anon_sym_and] = ACTIONS(5442), + [anon_sym_or] = ACTIONS(5442), + [anon_sym_AMP_AMP] = ACTIONS(5442), + [anon_sym_PIPE_PIPE] = ACTIONS(5442), + [anon_sym_QMARK_QMARK] = ACTIONS(5442), + [anon_sym_on] = ACTIONS(5442), + [anon_sym_equals] = ACTIONS(5442), + [anon_sym_by] = ACTIONS(5442), + [anon_sym_as] = ACTIONS(5442), + [anon_sym_is] = ACTIONS(5442), + [anon_sym_DASH_GT] = ACTIONS(5442), + [anon_sym_with] = ACTIONS(5442), + [aux_sym_preproc_if_token3] = ACTIONS(5442), + [aux_sym_preproc_else_token1] = ACTIONS(5442), + [aux_sym_preproc_elif_token1] = ACTIONS(5442), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -501420,26 +500891,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3423] = { - [sym__name] = STATE(6430), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(4096), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(4109), - [sym_type] = STATE(7713), - [sym_implicit_type] = STATE(7201), - [sym_array_type] = STATE(6648), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(6650), - [sym_pointer_type] = STATE(6650), - [sym__pointer_base_type] = STATE(7446), - [sym_function_pointer_type] = STATE(6650), - [sym_function_pointer_parameter] = STATE(7574), - [sym_ref_type] = STATE(7266), - [sym__ref_base_type] = STATE(7583), - [sym_scoped_type] = STATE(7266), - [sym_tuple_type] = STATE(6474), - [sym_identifier] = STATE(4087), - [sym__reserved_identifier] = STATE(3691), [sym_preproc_region] = STATE(3423), [sym_preproc_endregion] = STATE(3423), [sym_preproc_line] = STATE(3423), @@ -501449,36 +500900,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(3425), - [sym__identifier_token] = ACTIONS(2967), - [anon_sym_alias] = ACTIONS(2971), - [anon_sym_global] = ACTIONS(2971), - [anon_sym_LPAREN] = ACTIONS(2979), - [anon_sym_ref] = ACTIONS(5472), - [anon_sym_delegate] = ACTIONS(5030), - [anon_sym_file] = ACTIONS(2971), - [anon_sym_in] = ACTIONS(5474), - [anon_sym_out] = ACTIONS(5474), - [anon_sym_where] = ACTIONS(2971), - [anon_sym_notnull] = ACTIONS(2971), - [anon_sym_unmanaged] = ACTIONS(2971), - [anon_sym_scoped] = ACTIONS(5476), - [anon_sym_var] = ACTIONS(4737), - [sym_predefined_type] = ACTIONS(5478), - [anon_sym_yield] = ACTIONS(2971), - [anon_sym_when] = ACTIONS(2971), - [anon_sym_from] = ACTIONS(2971), - [anon_sym_into] = ACTIONS(2971), - [anon_sym_join] = ACTIONS(2971), - [anon_sym_on] = ACTIONS(2971), - [anon_sym_equals] = ACTIONS(2971), - [anon_sym_let] = ACTIONS(2971), - [anon_sym_orderby] = ACTIONS(2971), - [anon_sym_ascending] = ACTIONS(2971), - [anon_sym_descending] = ACTIONS(2971), - [anon_sym_group] = ACTIONS(2971), - [anon_sym_by] = ACTIONS(2971), - [anon_sym_select] = ACTIONS(2971), + [anon_sym_SEMI] = ACTIONS(4969), + [anon_sym_LBRACK] = ACTIONS(4969), + [anon_sym_COLON] = ACTIONS(4969), + [anon_sym_COMMA] = ACTIONS(4969), + [anon_sym_RBRACK] = ACTIONS(4969), + [anon_sym_LPAREN] = ACTIONS(4969), + [anon_sym_RPAREN] = ACTIONS(4969), + [anon_sym_RBRACE] = ACTIONS(4969), + [anon_sym_LT] = ACTIONS(4971), + [anon_sym_GT] = ACTIONS(4971), + [anon_sym_in] = ACTIONS(4969), + [anon_sym_QMARK] = ACTIONS(4971), + [anon_sym_BANG] = ACTIONS(4971), + [anon_sym_PLUS_PLUS] = ACTIONS(4969), + [anon_sym_DASH_DASH] = ACTIONS(4969), + [anon_sym_PLUS] = ACTIONS(4971), + [anon_sym_DASH] = ACTIONS(4971), + [anon_sym_STAR] = ACTIONS(4969), + [anon_sym_SLASH] = ACTIONS(4971), + [anon_sym_PERCENT] = ACTIONS(4969), + [anon_sym_CARET] = ACTIONS(4969), + [anon_sym_PIPE] = ACTIONS(4971), + [anon_sym_AMP] = ACTIONS(4971), + [anon_sym_LT_LT] = ACTIONS(4969), + [anon_sym_GT_GT] = ACTIONS(4971), + [anon_sym_GT_GT_GT] = ACTIONS(4969), + [anon_sym_EQ_EQ] = ACTIONS(4969), + [anon_sym_BANG_EQ] = ACTIONS(4969), + [anon_sym_GT_EQ] = ACTIONS(4969), + [anon_sym_LT_EQ] = ACTIONS(4969), + [anon_sym_DOT] = ACTIONS(4971), + [anon_sym_EQ_GT] = ACTIONS(4969), + [anon_sym_switch] = ACTIONS(4969), + [anon_sym_when] = ACTIONS(4969), + [anon_sym_DOT_DOT] = ACTIONS(4969), + [anon_sym_and] = ACTIONS(4969), + [anon_sym_or] = ACTIONS(4969), + [anon_sym_AMP_AMP] = ACTIONS(4969), + [anon_sym_PIPE_PIPE] = ACTIONS(4969), + [anon_sym_QMARK_QMARK] = ACTIONS(4969), + [anon_sym_on] = ACTIONS(4969), + [anon_sym_equals] = ACTIONS(4969), + [anon_sym_by] = ACTIONS(4969), + [anon_sym_as] = ACTIONS(4969), + [anon_sym_is] = ACTIONS(4969), + [anon_sym_DASH_GT] = ACTIONS(4969), + [anon_sym_with] = ACTIONS(4969), + [aux_sym_preproc_if_token3] = ACTIONS(4969), + [aux_sym_preproc_else_token1] = ACTIONS(4969), + [aux_sym_preproc_elif_token1] = ACTIONS(4969), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -501500,56 +500971,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), - [anon_sym_SEMI] = ACTIONS(5354), - [anon_sym_LBRACK] = ACTIONS(5354), - [anon_sym_COLON] = ACTIONS(5354), - [anon_sym_COMMA] = ACTIONS(5354), - [anon_sym_RBRACK] = ACTIONS(5354), - [anon_sym_LPAREN] = ACTIONS(5354), - [anon_sym_RPAREN] = ACTIONS(5354), - [anon_sym_RBRACE] = ACTIONS(5354), - [anon_sym_LT] = ACTIONS(5356), - [anon_sym_GT] = ACTIONS(5356), - [anon_sym_in] = ACTIONS(5354), - [anon_sym_QMARK] = ACTIONS(5356), - [anon_sym_BANG] = ACTIONS(5356), - [anon_sym_PLUS_PLUS] = ACTIONS(5354), - [anon_sym_DASH_DASH] = ACTIONS(5354), - [anon_sym_PLUS] = ACTIONS(5356), - [anon_sym_DASH] = ACTIONS(5356), - [anon_sym_STAR] = ACTIONS(5354), - [anon_sym_SLASH] = ACTIONS(5356), - [anon_sym_PERCENT] = ACTIONS(5354), - [anon_sym_CARET] = ACTIONS(5354), - [anon_sym_PIPE] = ACTIONS(5356), - [anon_sym_AMP] = ACTIONS(5356), - [anon_sym_LT_LT] = ACTIONS(5354), - [anon_sym_GT_GT] = ACTIONS(5356), - [anon_sym_GT_GT_GT] = ACTIONS(5354), - [anon_sym_EQ_EQ] = ACTIONS(5354), - [anon_sym_BANG_EQ] = ACTIONS(5354), - [anon_sym_GT_EQ] = ACTIONS(5354), - [anon_sym_LT_EQ] = ACTIONS(5354), - [anon_sym_DOT] = ACTIONS(5356), - [anon_sym_EQ_GT] = ACTIONS(5354), - [anon_sym_switch] = ACTIONS(5354), - [anon_sym_when] = ACTIONS(5354), - [anon_sym_DOT_DOT] = ACTIONS(5354), - [anon_sym_and] = ACTIONS(5354), - [anon_sym_or] = ACTIONS(5354), - [anon_sym_AMP_AMP] = ACTIONS(5354), - [anon_sym_PIPE_PIPE] = ACTIONS(5354), - [anon_sym_QMARK_QMARK] = ACTIONS(5354), - [anon_sym_on] = ACTIONS(5354), - [anon_sym_equals] = ACTIONS(5354), - [anon_sym_by] = ACTIONS(5354), - [anon_sym_as] = ACTIONS(5354), - [anon_sym_is] = ACTIONS(5354), - [anon_sym_DASH_GT] = ACTIONS(5354), - [anon_sym_with] = ACTIONS(5354), - [aux_sym_preproc_if_token3] = ACTIONS(5354), - [aux_sym_preproc_else_token1] = ACTIONS(5354), - [aux_sym_preproc_elif_token1] = ACTIONS(5354), + [anon_sym_SEMI] = ACTIONS(5080), + [anon_sym_LBRACK] = ACTIONS(5080), + [anon_sym_COLON] = ACTIONS(5080), + [anon_sym_COMMA] = ACTIONS(5080), + [anon_sym_RBRACK] = ACTIONS(5080), + [anon_sym_LPAREN] = ACTIONS(5080), + [anon_sym_RPAREN] = ACTIONS(5080), + [anon_sym_RBRACE] = ACTIONS(5080), + [anon_sym_LT] = ACTIONS(5082), + [anon_sym_GT] = ACTIONS(5082), + [anon_sym_in] = ACTIONS(5080), + [anon_sym_QMARK] = ACTIONS(5082), + [anon_sym_BANG] = ACTIONS(5082), + [anon_sym_PLUS_PLUS] = ACTIONS(5080), + [anon_sym_DASH_DASH] = ACTIONS(5080), + [anon_sym_PLUS] = ACTIONS(5082), + [anon_sym_DASH] = ACTIONS(5082), + [anon_sym_STAR] = ACTIONS(5080), + [anon_sym_SLASH] = ACTIONS(5082), + [anon_sym_PERCENT] = ACTIONS(5080), + [anon_sym_CARET] = ACTIONS(5080), + [anon_sym_PIPE] = ACTIONS(5082), + [anon_sym_AMP] = ACTIONS(5082), + [anon_sym_LT_LT] = ACTIONS(5080), + [anon_sym_GT_GT] = ACTIONS(5082), + [anon_sym_GT_GT_GT] = ACTIONS(5080), + [anon_sym_EQ_EQ] = ACTIONS(5080), + [anon_sym_BANG_EQ] = ACTIONS(5080), + [anon_sym_GT_EQ] = ACTIONS(5080), + [anon_sym_LT_EQ] = ACTIONS(5080), + [anon_sym_DOT] = ACTIONS(5082), + [anon_sym_EQ_GT] = ACTIONS(5080), + [anon_sym_switch] = ACTIONS(5080), + [anon_sym_when] = ACTIONS(5080), + [anon_sym_DOT_DOT] = ACTIONS(5080), + [anon_sym_and] = ACTIONS(5080), + [anon_sym_or] = ACTIONS(5080), + [anon_sym_AMP_AMP] = ACTIONS(5080), + [anon_sym_PIPE_PIPE] = ACTIONS(5080), + [anon_sym_QMARK_QMARK] = ACTIONS(5080), + [anon_sym_on] = ACTIONS(5080), + [anon_sym_equals] = ACTIONS(5080), + [anon_sym_by] = ACTIONS(5080), + [anon_sym_as] = ACTIONS(5080), + [anon_sym_is] = ACTIONS(5080), + [anon_sym_DASH_GT] = ACTIONS(5080), + [anon_sym_with] = ACTIONS(5080), + [aux_sym_preproc_if_token3] = ACTIONS(5080), + [aux_sym_preproc_else_token1] = ACTIONS(5080), + [aux_sym_preproc_elif_token1] = ACTIONS(5080), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -501562,26 +501033,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3425] = { - [sym__name] = STATE(6430), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(4096), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(4109), - [sym_type] = STATE(7424), - [sym_implicit_type] = STATE(7201), - [sym_array_type] = STATE(6648), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(6650), - [sym_pointer_type] = STATE(6650), - [sym__pointer_base_type] = STATE(7446), - [sym_function_pointer_type] = STATE(6650), - [sym_function_pointer_parameter] = STATE(7574), - [sym_ref_type] = STATE(7266), - [sym__ref_base_type] = STATE(7583), - [sym_scoped_type] = STATE(7266), - [sym_tuple_type] = STATE(6474), - [sym_identifier] = STATE(4087), - [sym__reserved_identifier] = STATE(3691), [sym_preproc_region] = STATE(3425), [sym_preproc_endregion] = STATE(3425), [sym_preproc_line] = STATE(3425), @@ -501591,36 +501042,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), - [aux_sym_function_pointer_type_repeat1] = STATE(3670), - [sym__identifier_token] = ACTIONS(2967), - [anon_sym_alias] = ACTIONS(2971), - [anon_sym_global] = ACTIONS(2971), - [anon_sym_LPAREN] = ACTIONS(2979), - [anon_sym_ref] = ACTIONS(5472), - [anon_sym_delegate] = ACTIONS(5030), - [anon_sym_file] = ACTIONS(2971), - [anon_sym_in] = ACTIONS(5474), - [anon_sym_out] = ACTIONS(5474), - [anon_sym_where] = ACTIONS(2971), - [anon_sym_notnull] = ACTIONS(2971), - [anon_sym_unmanaged] = ACTIONS(2971), - [anon_sym_scoped] = ACTIONS(5476), - [anon_sym_var] = ACTIONS(4737), - [sym_predefined_type] = ACTIONS(5478), - [anon_sym_yield] = ACTIONS(2971), - [anon_sym_when] = ACTIONS(2971), - [anon_sym_from] = ACTIONS(2971), - [anon_sym_into] = ACTIONS(2971), - [anon_sym_join] = ACTIONS(2971), - [anon_sym_on] = ACTIONS(2971), - [anon_sym_equals] = ACTIONS(2971), - [anon_sym_let] = ACTIONS(2971), - [anon_sym_orderby] = ACTIONS(2971), - [anon_sym_ascending] = ACTIONS(2971), - [anon_sym_descending] = ACTIONS(2971), - [anon_sym_group] = ACTIONS(2971), - [anon_sym_by] = ACTIONS(2971), - [anon_sym_select] = ACTIONS(2971), + [anon_sym_SEMI] = ACTIONS(5396), + [anon_sym_LBRACK] = ACTIONS(5396), + [anon_sym_COLON] = ACTIONS(5396), + [anon_sym_COMMA] = ACTIONS(5396), + [anon_sym_RBRACK] = ACTIONS(5396), + [anon_sym_LPAREN] = ACTIONS(5396), + [anon_sym_RPAREN] = ACTIONS(5396), + [anon_sym_RBRACE] = ACTIONS(5396), + [anon_sym_LT] = ACTIONS(5398), + [anon_sym_GT] = ACTIONS(5398), + [anon_sym_in] = ACTIONS(5396), + [anon_sym_QMARK] = ACTIONS(5398), + [anon_sym_BANG] = ACTIONS(5398), + [anon_sym_PLUS_PLUS] = ACTIONS(5396), + [anon_sym_DASH_DASH] = ACTIONS(5396), + [anon_sym_PLUS] = ACTIONS(5398), + [anon_sym_DASH] = ACTIONS(5398), + [anon_sym_STAR] = ACTIONS(5396), + [anon_sym_SLASH] = ACTIONS(5398), + [anon_sym_PERCENT] = ACTIONS(5396), + [anon_sym_CARET] = ACTIONS(5396), + [anon_sym_PIPE] = ACTIONS(5398), + [anon_sym_AMP] = ACTIONS(5398), + [anon_sym_LT_LT] = ACTIONS(5396), + [anon_sym_GT_GT] = ACTIONS(5398), + [anon_sym_GT_GT_GT] = ACTIONS(5396), + [anon_sym_EQ_EQ] = ACTIONS(5396), + [anon_sym_BANG_EQ] = ACTIONS(5396), + [anon_sym_GT_EQ] = ACTIONS(5396), + [anon_sym_LT_EQ] = ACTIONS(5396), + [anon_sym_DOT] = ACTIONS(5398), + [anon_sym_EQ_GT] = ACTIONS(5396), + [anon_sym_switch] = ACTIONS(5396), + [anon_sym_when] = ACTIONS(5396), + [anon_sym_DOT_DOT] = ACTIONS(5396), + [anon_sym_and] = ACTIONS(5396), + [anon_sym_or] = ACTIONS(5396), + [anon_sym_AMP_AMP] = ACTIONS(5396), + [anon_sym_PIPE_PIPE] = ACTIONS(5396), + [anon_sym_QMARK_QMARK] = ACTIONS(5396), + [anon_sym_on] = ACTIONS(5396), + [anon_sym_equals] = ACTIONS(5396), + [anon_sym_by] = ACTIONS(5396), + [anon_sym_as] = ACTIONS(5396), + [anon_sym_is] = ACTIONS(5396), + [anon_sym_DASH_GT] = ACTIONS(5396), + [anon_sym_with] = ACTIONS(5396), + [aux_sym_preproc_if_token3] = ACTIONS(5396), + [aux_sym_preproc_else_token1] = ACTIONS(5396), + [aux_sym_preproc_elif_token1] = ACTIONS(5396), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -501633,6 +501104,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3426] = { + [sym__name] = STATE(4369), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(4068), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(4073), + [sym_type] = STATE(6114), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_identifier] = STATE(4081), + [sym__reserved_identifier] = STATE(3654), [sym_preproc_region] = STATE(3426), [sym_preproc_endregion] = STATE(3426), [sym_preproc_line] = STATE(3426), @@ -501642,56 +501131,38 @@ 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(3311), - [anon_sym_extern] = ACTIONS(3311), - [anon_sym_alias] = ACTIONS(3311), - [anon_sym_global] = ACTIONS(3311), - [anon_sym_unsafe] = ACTIONS(3311), - [anon_sym_static] = ACTIONS(3311), - [anon_sym_LBRACK] = ACTIONS(3313), - [anon_sym_RBRACE] = ACTIONS(3313), - [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_get] = ACTIONS(3311), - [anon_sym_set] = ACTIONS(3311), - [anon_sym_add] = ACTIONS(3311), - [anon_sym_remove] = ACTIONS(3311), - [anon_sym_init] = ACTIONS(3311), - [anon_sym_scoped] = ACTIONS(3311), - [anon_sym_var] = ACTIONS(3311), - [anon_sym_yield] = ACTIONS(3311), - [anon_sym_when] = ACTIONS(3311), - [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), - [aux_sym_preproc_if_token1] = ACTIONS(3313), + [aux_sym__parameter_type_with_modifiers_repeat1] = STATE(5753), + [sym__identifier_token] = ACTIONS(2965), + [anon_sym_alias] = ACTIONS(2969), + [anon_sym_global] = ACTIONS(2969), + [anon_sym_LPAREN] = ACTIONS(2977), + [anon_sym_ref] = ACTIONS(4677), + [anon_sym_delegate] = ACTIONS(3438), + [anon_sym_file] = ACTIONS(2969), + [anon_sym_readonly] = ACTIONS(1097), + [anon_sym_in] = ACTIONS(1097), + [anon_sym_out] = ACTIONS(1097), + [anon_sym_where] = ACTIONS(2969), + [anon_sym_notnull] = ACTIONS(2969), + [anon_sym_unmanaged] = ACTIONS(2969), + [anon_sym_this] = ACTIONS(1097), + [anon_sym_scoped] = ACTIONS(4687), + [anon_sym_var] = ACTIONS(2995), + [sym_predefined_type] = ACTIONS(2997), + [anon_sym_yield] = ACTIONS(2969), + [anon_sym_when] = ACTIONS(2969), + [anon_sym_from] = ACTIONS(2969), + [anon_sym_into] = ACTIONS(2969), + [anon_sym_join] = ACTIONS(2969), + [anon_sym_on] = ACTIONS(2969), + [anon_sym_equals] = ACTIONS(2969), + [anon_sym_let] = ACTIONS(2969), + [anon_sym_orderby] = ACTIONS(2969), + [anon_sym_ascending] = ACTIONS(2969), + [anon_sym_descending] = ACTIONS(2969), + [anon_sym_group] = ACTIONS(2969), + [anon_sym_by] = ACTIONS(2969), + [anon_sym_select] = ACTIONS(2969), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -501704,6 +501175,26 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3427] = { + [sym_type_parameter_constraint] = STATE(6442), + [sym_constructor_constraint] = STATE(6519), + [sym__name] = STATE(4369), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(4068), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(4073), + [sym_type] = STATE(6527), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_identifier] = STATE(4081), + [sym__reserved_identifier] = STATE(3654), [sym_preproc_region] = STATE(3427), [sym_preproc_endregion] = STATE(3427), [sym_preproc_line] = STATE(3427), @@ -501713,56 +501204,36 @@ 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), - [anon_sym_SEMI] = ACTIONS(5106), - [anon_sym_LBRACK] = ACTIONS(5106), - [anon_sym_COLON] = ACTIONS(5106), - [anon_sym_COMMA] = ACTIONS(5106), - [anon_sym_RBRACK] = ACTIONS(5106), - [anon_sym_LPAREN] = ACTIONS(5106), - [anon_sym_RPAREN] = ACTIONS(5106), - [anon_sym_RBRACE] = ACTIONS(5106), - [anon_sym_LT] = ACTIONS(5108), - [anon_sym_GT] = ACTIONS(5108), - [anon_sym_in] = ACTIONS(5106), - [anon_sym_QMARK] = ACTIONS(5108), - [anon_sym_BANG] = ACTIONS(5108), - [anon_sym_PLUS_PLUS] = ACTIONS(5106), - [anon_sym_DASH_DASH] = ACTIONS(5106), - [anon_sym_PLUS] = ACTIONS(5108), - [anon_sym_DASH] = ACTIONS(5108), - [anon_sym_STAR] = ACTIONS(5106), - [anon_sym_SLASH] = ACTIONS(5108), - [anon_sym_PERCENT] = ACTIONS(5106), - [anon_sym_CARET] = ACTIONS(5106), - [anon_sym_PIPE] = ACTIONS(5108), - [anon_sym_AMP] = ACTIONS(5108), - [anon_sym_LT_LT] = ACTIONS(5106), - [anon_sym_GT_GT] = ACTIONS(5108), - [anon_sym_GT_GT_GT] = ACTIONS(5106), - [anon_sym_EQ_EQ] = ACTIONS(5106), - [anon_sym_BANG_EQ] = ACTIONS(5106), - [anon_sym_GT_EQ] = ACTIONS(5106), - [anon_sym_LT_EQ] = ACTIONS(5106), - [anon_sym_DOT] = ACTIONS(5108), - [anon_sym_EQ_GT] = ACTIONS(5106), - [anon_sym_switch] = ACTIONS(5106), - [anon_sym_when] = ACTIONS(5106), - [anon_sym_DOT_DOT] = ACTIONS(5106), - [anon_sym_and] = ACTIONS(5106), - [anon_sym_or] = ACTIONS(5106), - [anon_sym_AMP_AMP] = ACTIONS(5106), - [anon_sym_PIPE_PIPE] = ACTIONS(5106), - [anon_sym_QMARK_QMARK] = ACTIONS(5106), - [anon_sym_on] = ACTIONS(5106), - [anon_sym_equals] = ACTIONS(5106), - [anon_sym_by] = ACTIONS(5106), - [anon_sym_as] = ACTIONS(5106), - [anon_sym_is] = ACTIONS(5106), - [anon_sym_DASH_GT] = ACTIONS(5106), - [anon_sym_with] = ACTIONS(5106), - [aux_sym_preproc_if_token3] = ACTIONS(5106), - [aux_sym_preproc_else_token1] = ACTIONS(5106), - [aux_sym_preproc_elif_token1] = ACTIONS(5106), + [sym__identifier_token] = ACTIONS(2965), + [anon_sym_alias] = ACTIONS(2969), + [anon_sym_global] = ACTIONS(2969), + [anon_sym_LPAREN] = ACTIONS(2977), + [anon_sym_class] = ACTIONS(5498), + [anon_sym_ref] = ACTIONS(5500), + [anon_sym_struct] = ACTIONS(5502), + [anon_sym_delegate] = ACTIONS(3438), + [anon_sym_file] = ACTIONS(2969), + [anon_sym_new] = ACTIONS(5504), + [anon_sym_where] = ACTIONS(2969), + [anon_sym_notnull] = ACTIONS(5506), + [anon_sym_unmanaged] = ACTIONS(5506), + [anon_sym_scoped] = ACTIONS(5508), + [anon_sym_var] = ACTIONS(4705), + [sym_predefined_type] = ACTIONS(2997), + [anon_sym_yield] = ACTIONS(2969), + [anon_sym_when] = ACTIONS(2969), + [anon_sym_from] = ACTIONS(2969), + [anon_sym_into] = ACTIONS(2969), + [anon_sym_join] = ACTIONS(2969), + [anon_sym_on] = ACTIONS(2969), + [anon_sym_equals] = ACTIONS(2969), + [anon_sym_let] = ACTIONS(2969), + [anon_sym_orderby] = ACTIONS(2969), + [anon_sym_ascending] = ACTIONS(2969), + [anon_sym_descending] = ACTIONS(2969), + [anon_sym_group] = ACTIONS(2969), + [anon_sym_by] = ACTIONS(2969), + [anon_sym_select] = ACTIONS(2969), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -501784,56 +501255,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_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), + [sym__identifier_token] = ACTIONS(2949), + [anon_sym_extern] = ACTIONS(2949), + [anon_sym_alias] = ACTIONS(2949), + [anon_sym_global] = ACTIONS(2949), + [anon_sym_unsafe] = ACTIONS(2949), + [anon_sym_static] = ACTIONS(2949), + [anon_sym_LBRACK] = ACTIONS(2951), + [anon_sym_RBRACE] = ACTIONS(2951), + [anon_sym_abstract] = ACTIONS(2949), + [anon_sym_async] = ACTIONS(2949), + [anon_sym_const] = ACTIONS(2949), + [anon_sym_file] = ACTIONS(2949), + [anon_sym_fixed] = ACTIONS(2949), + [anon_sym_internal] = ACTIONS(2949), + [anon_sym_new] = ACTIONS(2949), + [anon_sym_override] = ACTIONS(2949), + [anon_sym_partial] = ACTIONS(2949), + [anon_sym_private] = ACTIONS(2949), + [anon_sym_protected] = ACTIONS(2949), + [anon_sym_public] = ACTIONS(2949), + [anon_sym_readonly] = ACTIONS(2949), + [anon_sym_required] = ACTIONS(2949), + [anon_sym_sealed] = ACTIONS(2949), + [anon_sym_virtual] = ACTIONS(2949), + [anon_sym_volatile] = ACTIONS(2949), + [anon_sym_where] = ACTIONS(2949), + [anon_sym_notnull] = ACTIONS(2949), + [anon_sym_unmanaged] = ACTIONS(2949), + [anon_sym_get] = ACTIONS(2949), + [anon_sym_set] = ACTIONS(2949), + [anon_sym_add] = ACTIONS(2949), + [anon_sym_remove] = ACTIONS(2949), + [anon_sym_init] = ACTIONS(2949), + [anon_sym_scoped] = ACTIONS(2949), + [anon_sym_var] = ACTIONS(2949), + [anon_sym_yield] = ACTIONS(2949), + [anon_sym_when] = ACTIONS(2949), + [anon_sym_from] = ACTIONS(2949), + [anon_sym_into] = ACTIONS(2949), + [anon_sym_join] = ACTIONS(2949), + [anon_sym_on] = ACTIONS(2949), + [anon_sym_equals] = ACTIONS(2949), + [anon_sym_let] = ACTIONS(2949), + [anon_sym_orderby] = ACTIONS(2949), + [anon_sym_ascending] = ACTIONS(2949), + [anon_sym_descending] = ACTIONS(2949), + [anon_sym_group] = ACTIONS(2949), + [anon_sym_by] = ACTIONS(2949), + [anon_sym_select] = ACTIONS(2949), + [aux_sym_preproc_if_token1] = ACTIONS(2951), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -501855,56 +501326,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(5020), - [anon_sym_LBRACK] = ACTIONS(5020), - [anon_sym_COLON] = ACTIONS(5020), - [anon_sym_COMMA] = ACTIONS(5020), - [anon_sym_RBRACK] = ACTIONS(5020), - [anon_sym_LPAREN] = ACTIONS(5020), - [anon_sym_RPAREN] = ACTIONS(5020), - [anon_sym_RBRACE] = ACTIONS(5020), - [anon_sym_LT] = ACTIONS(5022), - [anon_sym_GT] = ACTIONS(5022), - [anon_sym_in] = ACTIONS(5020), - [anon_sym_QMARK] = ACTIONS(5022), - [anon_sym_BANG] = ACTIONS(5022), - [anon_sym_PLUS_PLUS] = ACTIONS(5020), - [anon_sym_DASH_DASH] = ACTIONS(5020), - [anon_sym_PLUS] = ACTIONS(5022), - [anon_sym_DASH] = ACTIONS(5022), - [anon_sym_STAR] = ACTIONS(5020), - [anon_sym_SLASH] = ACTIONS(5022), - [anon_sym_PERCENT] = ACTIONS(5020), - [anon_sym_CARET] = ACTIONS(5020), - [anon_sym_PIPE] = ACTIONS(5022), - [anon_sym_AMP] = ACTIONS(5022), - [anon_sym_LT_LT] = ACTIONS(5020), - [anon_sym_GT_GT] = ACTIONS(5022), - [anon_sym_GT_GT_GT] = ACTIONS(5020), - [anon_sym_EQ_EQ] = ACTIONS(5020), - [anon_sym_BANG_EQ] = ACTIONS(5020), - [anon_sym_GT_EQ] = ACTIONS(5020), - [anon_sym_LT_EQ] = ACTIONS(5020), - [anon_sym_DOT] = ACTIONS(5022), - [anon_sym_EQ_GT] = ACTIONS(5020), - [anon_sym_switch] = ACTIONS(5020), - [anon_sym_when] = ACTIONS(5020), - [anon_sym_DOT_DOT] = ACTIONS(5020), - [anon_sym_and] = ACTIONS(5020), - [anon_sym_or] = ACTIONS(5020), - [anon_sym_AMP_AMP] = ACTIONS(5020), - [anon_sym_PIPE_PIPE] = ACTIONS(5020), - [anon_sym_QMARK_QMARK] = ACTIONS(5020), - [anon_sym_on] = ACTIONS(5020), - [anon_sym_equals] = ACTIONS(5020), - [anon_sym_by] = ACTIONS(5020), - [anon_sym_as] = ACTIONS(5020), - [anon_sym_is] = ACTIONS(5020), - [anon_sym_DASH_GT] = ACTIONS(5020), - [anon_sym_with] = ACTIONS(5020), - [aux_sym_preproc_if_token3] = ACTIONS(5020), - [aux_sym_preproc_else_token1] = ACTIONS(5020), - [aux_sym_preproc_elif_token1] = ACTIONS(5020), + [anon_sym_SEMI] = ACTIONS(5408), + [anon_sym_LBRACK] = ACTIONS(5408), + [anon_sym_COLON] = ACTIONS(5408), + [anon_sym_COMMA] = ACTIONS(5408), + [anon_sym_RBRACK] = ACTIONS(5408), + [anon_sym_LPAREN] = ACTIONS(5408), + [anon_sym_RPAREN] = ACTIONS(5408), + [anon_sym_RBRACE] = ACTIONS(5408), + [anon_sym_LT] = ACTIONS(5410), + [anon_sym_GT] = ACTIONS(5410), + [anon_sym_in] = ACTIONS(5408), + [anon_sym_QMARK] = ACTIONS(5410), + [anon_sym_BANG] = ACTIONS(5410), + [anon_sym_PLUS_PLUS] = ACTIONS(5408), + [anon_sym_DASH_DASH] = ACTIONS(5408), + [anon_sym_PLUS] = ACTIONS(5410), + [anon_sym_DASH] = ACTIONS(5410), + [anon_sym_STAR] = ACTIONS(5408), + [anon_sym_SLASH] = ACTIONS(5410), + [anon_sym_PERCENT] = ACTIONS(5408), + [anon_sym_CARET] = ACTIONS(5408), + [anon_sym_PIPE] = ACTIONS(5410), + [anon_sym_AMP] = ACTIONS(5410), + [anon_sym_LT_LT] = ACTIONS(5408), + [anon_sym_GT_GT] = ACTIONS(5410), + [anon_sym_GT_GT_GT] = ACTIONS(5408), + [anon_sym_EQ_EQ] = ACTIONS(5408), + [anon_sym_BANG_EQ] = ACTIONS(5408), + [anon_sym_GT_EQ] = ACTIONS(5408), + [anon_sym_LT_EQ] = ACTIONS(5408), + [anon_sym_DOT] = ACTIONS(5410), + [anon_sym_EQ_GT] = ACTIONS(5408), + [anon_sym_switch] = ACTIONS(5408), + [anon_sym_when] = ACTIONS(5408), + [anon_sym_DOT_DOT] = ACTIONS(5408), + [anon_sym_and] = ACTIONS(5408), + [anon_sym_or] = ACTIONS(5408), + [anon_sym_AMP_AMP] = ACTIONS(5408), + [anon_sym_PIPE_PIPE] = ACTIONS(5408), + [anon_sym_QMARK_QMARK] = ACTIONS(5408), + [anon_sym_on] = ACTIONS(5408), + [anon_sym_equals] = ACTIONS(5408), + [anon_sym_by] = ACTIONS(5408), + [anon_sym_as] = ACTIONS(5408), + [anon_sym_is] = ACTIONS(5408), + [anon_sym_DASH_GT] = ACTIONS(5408), + [anon_sym_with] = ACTIONS(5408), + [aux_sym_preproc_if_token3] = ACTIONS(5408), + [aux_sym_preproc_else_token1] = ACTIONS(5408), + [aux_sym_preproc_elif_token1] = ACTIONS(5408), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -501926,56 +501397,56 @@ 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(5072), - [anon_sym_LBRACK] = ACTIONS(5072), - [anon_sym_COLON] = ACTIONS(5072), - [anon_sym_COMMA] = ACTIONS(5072), - [anon_sym_RBRACK] = ACTIONS(5072), - [anon_sym_LPAREN] = ACTIONS(5072), - [anon_sym_RPAREN] = ACTIONS(5072), - [anon_sym_RBRACE] = ACTIONS(5072), - [anon_sym_LT] = ACTIONS(5074), - [anon_sym_GT] = ACTIONS(5074), - [anon_sym_in] = ACTIONS(5072), - [anon_sym_QMARK] = ACTIONS(5074), - [anon_sym_BANG] = ACTIONS(5074), - [anon_sym_PLUS_PLUS] = ACTIONS(5072), - [anon_sym_DASH_DASH] = ACTIONS(5072), - [anon_sym_PLUS] = ACTIONS(5074), - [anon_sym_DASH] = ACTIONS(5074), - [anon_sym_STAR] = ACTIONS(5072), - [anon_sym_SLASH] = ACTIONS(5074), - [anon_sym_PERCENT] = ACTIONS(5072), - [anon_sym_CARET] = ACTIONS(5072), - [anon_sym_PIPE] = ACTIONS(5074), - [anon_sym_AMP] = ACTIONS(5074), - [anon_sym_LT_LT] = ACTIONS(5072), - [anon_sym_GT_GT] = ACTIONS(5074), - [anon_sym_GT_GT_GT] = ACTIONS(5072), - [anon_sym_EQ_EQ] = ACTIONS(5072), - [anon_sym_BANG_EQ] = ACTIONS(5072), - [anon_sym_GT_EQ] = ACTIONS(5072), - [anon_sym_LT_EQ] = ACTIONS(5072), - [anon_sym_DOT] = ACTIONS(5074), - [anon_sym_EQ_GT] = ACTIONS(5072), - [anon_sym_switch] = ACTIONS(5072), - [anon_sym_when] = ACTIONS(5072), - [anon_sym_DOT_DOT] = ACTIONS(5072), - [anon_sym_and] = ACTIONS(5072), - [anon_sym_or] = ACTIONS(5072), - [anon_sym_AMP_AMP] = ACTIONS(5072), - [anon_sym_PIPE_PIPE] = ACTIONS(5072), - [anon_sym_QMARK_QMARK] = ACTIONS(5072), - [anon_sym_on] = ACTIONS(5072), - [anon_sym_equals] = ACTIONS(5072), - [anon_sym_by] = ACTIONS(5072), - [anon_sym_as] = ACTIONS(5072), - [anon_sym_is] = ACTIONS(5072), - [anon_sym_DASH_GT] = ACTIONS(5072), - [anon_sym_with] = ACTIONS(5072), - [aux_sym_preproc_if_token3] = ACTIONS(5072), - [aux_sym_preproc_else_token1] = ACTIONS(5072), - [aux_sym_preproc_elif_token1] = ACTIONS(5072), + [anon_sym_SEMI] = ACTIONS(3809), + [anon_sym_LBRACK] = ACTIONS(3809), + [anon_sym_COLON] = ACTIONS(3809), + [anon_sym_COMMA] = ACTIONS(3809), + [anon_sym_RBRACK] = ACTIONS(3809), + [anon_sym_LPAREN] = ACTIONS(3809), + [anon_sym_RPAREN] = ACTIONS(3809), + [anon_sym_RBRACE] = ACTIONS(3809), + [anon_sym_LT] = ACTIONS(5406), + [anon_sym_GT] = ACTIONS(5406), + [anon_sym_in] = ACTIONS(3809), + [anon_sym_QMARK] = ACTIONS(5406), + [anon_sym_BANG] = ACTIONS(5406), + [anon_sym_PLUS_PLUS] = ACTIONS(3809), + [anon_sym_DASH_DASH] = ACTIONS(3809), + [anon_sym_PLUS] = ACTIONS(5406), + [anon_sym_DASH] = ACTIONS(5406), + [anon_sym_STAR] = ACTIONS(3809), + [anon_sym_SLASH] = ACTIONS(5406), + [anon_sym_PERCENT] = ACTIONS(3809), + [anon_sym_CARET] = ACTIONS(3809), + [anon_sym_PIPE] = ACTIONS(5406), + [anon_sym_AMP] = ACTIONS(5406), + [anon_sym_LT_LT] = ACTIONS(3809), + [anon_sym_GT_GT] = ACTIONS(5406), + [anon_sym_GT_GT_GT] = ACTIONS(3809), + [anon_sym_EQ_EQ] = ACTIONS(3809), + [anon_sym_BANG_EQ] = ACTIONS(3809), + [anon_sym_GT_EQ] = ACTIONS(3809), + [anon_sym_LT_EQ] = ACTIONS(3809), + [anon_sym_DOT] = ACTIONS(5406), + [anon_sym_EQ_GT] = ACTIONS(3651), + [anon_sym_switch] = ACTIONS(3809), + [anon_sym_when] = ACTIONS(3809), + [anon_sym_DOT_DOT] = ACTIONS(3809), + [anon_sym_and] = ACTIONS(3809), + [anon_sym_or] = ACTIONS(3809), + [anon_sym_AMP_AMP] = ACTIONS(3809), + [anon_sym_PIPE_PIPE] = ACTIONS(3809), + [anon_sym_QMARK_QMARK] = ACTIONS(3809), + [anon_sym_on] = ACTIONS(3809), + [anon_sym_equals] = ACTIONS(3809), + [anon_sym_by] = ACTIONS(3809), + [anon_sym_as] = ACTIONS(3809), + [anon_sym_is] = ACTIONS(3809), + [anon_sym_DASH_GT] = ACTIONS(3809), + [anon_sym_with] = ACTIONS(3809), + [aux_sym_preproc_if_token3] = ACTIONS(3809), + [aux_sym_preproc_else_token1] = ACTIONS(3809), + [aux_sym_preproc_elif_token1] = ACTIONS(3809), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -501997,56 +501468,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(5046), - [anon_sym_LBRACK] = ACTIONS(5046), - [anon_sym_COLON] = ACTIONS(5046), - [anon_sym_COMMA] = ACTIONS(5046), - [anon_sym_RBRACK] = ACTIONS(5046), - [anon_sym_LPAREN] = ACTIONS(5046), - [anon_sym_RPAREN] = ACTIONS(5046), - [anon_sym_RBRACE] = ACTIONS(5046), - [anon_sym_LT] = ACTIONS(5048), - [anon_sym_GT] = ACTIONS(5048), - [anon_sym_in] = ACTIONS(5046), - [anon_sym_QMARK] = ACTIONS(5048), - [anon_sym_BANG] = ACTIONS(5048), - [anon_sym_PLUS_PLUS] = ACTIONS(5046), - [anon_sym_DASH_DASH] = ACTIONS(5046), - [anon_sym_PLUS] = ACTIONS(5048), - [anon_sym_DASH] = ACTIONS(5048), - [anon_sym_STAR] = ACTIONS(5046), - [anon_sym_SLASH] = ACTIONS(5048), - [anon_sym_PERCENT] = ACTIONS(5046), - [anon_sym_CARET] = ACTIONS(5046), - [anon_sym_PIPE] = ACTIONS(5048), - [anon_sym_AMP] = ACTIONS(5048), - [anon_sym_LT_LT] = ACTIONS(5046), - [anon_sym_GT_GT] = ACTIONS(5048), - [anon_sym_GT_GT_GT] = ACTIONS(5046), - [anon_sym_EQ_EQ] = ACTIONS(5046), - [anon_sym_BANG_EQ] = ACTIONS(5046), - [anon_sym_GT_EQ] = ACTIONS(5046), - [anon_sym_LT_EQ] = ACTIONS(5046), - [anon_sym_DOT] = ACTIONS(5048), - [anon_sym_EQ_GT] = ACTIONS(5046), - [anon_sym_switch] = ACTIONS(5046), - [anon_sym_when] = ACTIONS(5046), - [anon_sym_DOT_DOT] = ACTIONS(5046), - [anon_sym_and] = ACTIONS(5046), - [anon_sym_or] = ACTIONS(5046), - [anon_sym_AMP_AMP] = ACTIONS(5046), - [anon_sym_PIPE_PIPE] = ACTIONS(5046), - [anon_sym_QMARK_QMARK] = ACTIONS(5046), - [anon_sym_on] = ACTIONS(5046), - [anon_sym_equals] = ACTIONS(5046), - [anon_sym_by] = ACTIONS(5046), - [anon_sym_as] = ACTIONS(5046), - [anon_sym_is] = ACTIONS(5046), - [anon_sym_DASH_GT] = ACTIONS(5046), - [anon_sym_with] = ACTIONS(5046), - [aux_sym_preproc_if_token3] = ACTIONS(5046), - [aux_sym_preproc_else_token1] = ACTIONS(5046), - [aux_sym_preproc_elif_token1] = ACTIONS(5046), + [anon_sym_EQ] = ACTIONS(3696), + [anon_sym_LBRACK] = ACTIONS(3711), + [anon_sym_COLON] = ACTIONS(4241), + [anon_sym_LPAREN] = ACTIONS(3711), + [anon_sym_LT] = ACTIONS(3696), + [anon_sym_GT] = ACTIONS(3696), + [anon_sym_QMARK] = ACTIONS(3696), + [anon_sym_BANG] = ACTIONS(3696), + [anon_sym_PLUS_PLUS] = ACTIONS(3711), + [anon_sym_DASH_DASH] = ACTIONS(3711), + [anon_sym_PLUS] = ACTIONS(3696), + [anon_sym_DASH] = ACTIONS(3696), + [anon_sym_STAR] = ACTIONS(3696), + [anon_sym_SLASH] = ACTIONS(3696), + [anon_sym_PERCENT] = ACTIONS(3696), + [anon_sym_CARET] = ACTIONS(3696), + [anon_sym_PIPE] = ACTIONS(3696), + [anon_sym_AMP] = ACTIONS(3696), + [anon_sym_LT_LT] = ACTIONS(3696), + [anon_sym_GT_GT] = ACTIONS(3696), + [anon_sym_GT_GT_GT] = ACTIONS(3696), + [anon_sym_EQ_EQ] = ACTIONS(3711), + [anon_sym_BANG_EQ] = ACTIONS(3711), + [anon_sym_GT_EQ] = ACTIONS(3711), + [anon_sym_LT_EQ] = ACTIONS(3711), + [anon_sym_DOT] = ACTIONS(3696), + [anon_sym_switch] = ACTIONS(3711), + [anon_sym_when] = ACTIONS(4241), + [anon_sym_DOT_DOT] = ACTIONS(3711), + [anon_sym_and] = ACTIONS(4241), + [anon_sym_or] = ACTIONS(4241), + [anon_sym_PLUS_EQ] = ACTIONS(3711), + [anon_sym_DASH_EQ] = ACTIONS(3711), + [anon_sym_STAR_EQ] = ACTIONS(3711), + [anon_sym_SLASH_EQ] = ACTIONS(3711), + [anon_sym_PERCENT_EQ] = ACTIONS(3711), + [anon_sym_AMP_EQ] = ACTIONS(3711), + [anon_sym_CARET_EQ] = ACTIONS(3711), + [anon_sym_PIPE_EQ] = ACTIONS(3711), + [anon_sym_LT_LT_EQ] = ACTIONS(3711), + [anon_sym_GT_GT_EQ] = ACTIONS(3711), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3711), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3711), + [anon_sym_AMP_AMP] = ACTIONS(3711), + [anon_sym_PIPE_PIPE] = ACTIONS(3711), + [anon_sym_QMARK_QMARK] = ACTIONS(3696), + [anon_sym_as] = ACTIONS(3711), + [anon_sym_is] = ACTIONS(3711), + [anon_sym_DASH_GT] = ACTIONS(3711), + [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), @@ -502068,56 +501539,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(5346), - [anon_sym_LBRACK] = ACTIONS(5346), - [anon_sym_COLON] = ACTIONS(5346), - [anon_sym_COMMA] = ACTIONS(5346), - [anon_sym_RBRACK] = ACTIONS(5346), - [anon_sym_LPAREN] = ACTIONS(5346), - [anon_sym_RPAREN] = ACTIONS(5346), - [anon_sym_RBRACE] = ACTIONS(5346), - [anon_sym_LT] = ACTIONS(5348), - [anon_sym_GT] = ACTIONS(5348), - [anon_sym_in] = ACTIONS(5346), - [anon_sym_QMARK] = ACTIONS(5348), - [anon_sym_BANG] = ACTIONS(5348), - [anon_sym_PLUS_PLUS] = ACTIONS(5346), - [anon_sym_DASH_DASH] = ACTIONS(5346), - [anon_sym_PLUS] = ACTIONS(5348), - [anon_sym_DASH] = ACTIONS(5348), - [anon_sym_STAR] = ACTIONS(5346), - [anon_sym_SLASH] = ACTIONS(5348), - [anon_sym_PERCENT] = ACTIONS(5346), - [anon_sym_CARET] = ACTIONS(5346), - [anon_sym_PIPE] = ACTIONS(5348), - [anon_sym_AMP] = ACTIONS(5348), - [anon_sym_LT_LT] = ACTIONS(5346), - [anon_sym_GT_GT] = ACTIONS(5348), - [anon_sym_GT_GT_GT] = ACTIONS(5346), - [anon_sym_EQ_EQ] = ACTIONS(5346), - [anon_sym_BANG_EQ] = ACTIONS(5346), - [anon_sym_GT_EQ] = ACTIONS(5346), - [anon_sym_LT_EQ] = ACTIONS(5346), - [anon_sym_DOT] = ACTIONS(5348), - [anon_sym_EQ_GT] = ACTIONS(5346), - [anon_sym_switch] = ACTIONS(5346), - [anon_sym_when] = ACTIONS(5346), - [anon_sym_DOT_DOT] = ACTIONS(5346), - [anon_sym_and] = ACTIONS(5346), - [anon_sym_or] = ACTIONS(5346), - [anon_sym_AMP_AMP] = ACTIONS(5346), - [anon_sym_PIPE_PIPE] = ACTIONS(5346), - [anon_sym_QMARK_QMARK] = ACTIONS(5346), - [anon_sym_on] = ACTIONS(5346), - [anon_sym_equals] = ACTIONS(5346), - [anon_sym_by] = ACTIONS(5346), - [anon_sym_as] = ACTIONS(5346), - [anon_sym_is] = ACTIONS(5346), - [anon_sym_DASH_GT] = ACTIONS(5346), - [anon_sym_with] = ACTIONS(5346), - [aux_sym_preproc_if_token3] = ACTIONS(5346), - [aux_sym_preproc_else_token1] = ACTIONS(5346), - [aux_sym_preproc_elif_token1] = ACTIONS(5346), + [anon_sym_SEMI] = ACTIONS(4917), + [anon_sym_LBRACK] = ACTIONS(4917), + [anon_sym_COLON] = ACTIONS(4917), + [anon_sym_COMMA] = ACTIONS(4917), + [anon_sym_RBRACK] = ACTIONS(4917), + [anon_sym_LPAREN] = ACTIONS(4917), + [anon_sym_RPAREN] = ACTIONS(4917), + [anon_sym_RBRACE] = ACTIONS(4917), + [anon_sym_LT] = ACTIONS(4919), + [anon_sym_GT] = ACTIONS(4919), + [anon_sym_in] = ACTIONS(4917), + [anon_sym_QMARK] = ACTIONS(4919), + [anon_sym_BANG] = ACTIONS(4919), + [anon_sym_PLUS_PLUS] = ACTIONS(4917), + [anon_sym_DASH_DASH] = ACTIONS(4917), + [anon_sym_PLUS] = ACTIONS(4919), + [anon_sym_DASH] = ACTIONS(4919), + [anon_sym_STAR] = ACTIONS(4917), + [anon_sym_SLASH] = ACTIONS(4919), + [anon_sym_PERCENT] = ACTIONS(4917), + [anon_sym_CARET] = ACTIONS(4917), + [anon_sym_PIPE] = ACTIONS(4919), + [anon_sym_AMP] = ACTIONS(4919), + [anon_sym_LT_LT] = ACTIONS(4917), + [anon_sym_GT_GT] = ACTIONS(4919), + [anon_sym_GT_GT_GT] = ACTIONS(4917), + [anon_sym_EQ_EQ] = ACTIONS(4917), + [anon_sym_BANG_EQ] = ACTIONS(4917), + [anon_sym_GT_EQ] = ACTIONS(4917), + [anon_sym_LT_EQ] = ACTIONS(4917), + [anon_sym_DOT] = ACTIONS(4919), + [anon_sym_EQ_GT] = ACTIONS(4917), + [anon_sym_switch] = ACTIONS(4917), + [anon_sym_when] = ACTIONS(4917), + [anon_sym_DOT_DOT] = ACTIONS(4917), + [anon_sym_and] = ACTIONS(4917), + [anon_sym_or] = ACTIONS(4917), + [anon_sym_AMP_AMP] = ACTIONS(4917), + [anon_sym_PIPE_PIPE] = ACTIONS(4917), + [anon_sym_QMARK_QMARK] = ACTIONS(4917), + [anon_sym_on] = ACTIONS(4917), + [anon_sym_equals] = ACTIONS(4917), + [anon_sym_by] = ACTIONS(4917), + [anon_sym_as] = ACTIONS(4917), + [anon_sym_is] = ACTIONS(4917), + [anon_sym_DASH_GT] = ACTIONS(4917), + [anon_sym_with] = ACTIONS(4917), + [aux_sym_preproc_if_token3] = ACTIONS(4917), + [aux_sym_preproc_else_token1] = ACTIONS(4917), + [aux_sym_preproc_elif_token1] = ACTIONS(4917), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -502139,56 +501610,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(5146), - [anon_sym_LBRACK] = ACTIONS(5146), - [anon_sym_COLON] = ACTIONS(5146), - [anon_sym_COMMA] = ACTIONS(5146), - [anon_sym_RBRACK] = ACTIONS(5146), - [anon_sym_LPAREN] = ACTIONS(5146), - [anon_sym_RPAREN] = ACTIONS(5146), - [anon_sym_RBRACE] = ACTIONS(5146), - [anon_sym_LT] = ACTIONS(5148), - [anon_sym_GT] = ACTIONS(5148), - [anon_sym_in] = ACTIONS(5146), - [anon_sym_QMARK] = ACTIONS(5148), - [anon_sym_BANG] = ACTIONS(5148), - [anon_sym_PLUS_PLUS] = ACTIONS(5146), - [anon_sym_DASH_DASH] = ACTIONS(5146), - [anon_sym_PLUS] = ACTIONS(5148), - [anon_sym_DASH] = ACTIONS(5148), - [anon_sym_STAR] = ACTIONS(5146), - [anon_sym_SLASH] = ACTIONS(5148), - [anon_sym_PERCENT] = ACTIONS(5146), - [anon_sym_CARET] = ACTIONS(5146), - [anon_sym_PIPE] = ACTIONS(5148), - [anon_sym_AMP] = ACTIONS(5148), - [anon_sym_LT_LT] = ACTIONS(5146), - [anon_sym_GT_GT] = ACTIONS(5148), - [anon_sym_GT_GT_GT] = ACTIONS(5146), - [anon_sym_EQ_EQ] = ACTIONS(5146), - [anon_sym_BANG_EQ] = ACTIONS(5146), - [anon_sym_GT_EQ] = ACTIONS(5146), - [anon_sym_LT_EQ] = ACTIONS(5146), - [anon_sym_DOT] = ACTIONS(5148), - [anon_sym_EQ_GT] = ACTIONS(5146), - [anon_sym_switch] = ACTIONS(5146), - [anon_sym_when] = ACTIONS(5146), - [anon_sym_DOT_DOT] = ACTIONS(5146), - [anon_sym_and] = ACTIONS(5146), - [anon_sym_or] = ACTIONS(5146), - [anon_sym_AMP_AMP] = ACTIONS(5146), - [anon_sym_PIPE_PIPE] = ACTIONS(5146), - [anon_sym_QMARK_QMARK] = ACTIONS(5146), - [anon_sym_on] = ACTIONS(5146), - [anon_sym_equals] = ACTIONS(5146), - [anon_sym_by] = ACTIONS(5146), - [anon_sym_as] = ACTIONS(5146), - [anon_sym_is] = ACTIONS(5146), - [anon_sym_DASH_GT] = ACTIONS(5146), - [anon_sym_with] = ACTIONS(5146), - [aux_sym_preproc_if_token3] = ACTIONS(5146), - [aux_sym_preproc_else_token1] = ACTIONS(5146), - [aux_sym_preproc_elif_token1] = ACTIONS(5146), + [anon_sym_SEMI] = ACTIONS(5162), + [anon_sym_LBRACK] = ACTIONS(5162), + [anon_sym_COLON] = ACTIONS(5162), + [anon_sym_COMMA] = ACTIONS(5162), + [anon_sym_RBRACK] = ACTIONS(5162), + [anon_sym_LPAREN] = ACTIONS(5162), + [anon_sym_RPAREN] = ACTIONS(5162), + [anon_sym_RBRACE] = ACTIONS(5162), + [anon_sym_LT] = ACTIONS(5164), + [anon_sym_GT] = ACTIONS(5164), + [anon_sym_in] = ACTIONS(5162), + [anon_sym_QMARK] = ACTIONS(5164), + [anon_sym_BANG] = ACTIONS(5164), + [anon_sym_PLUS_PLUS] = ACTIONS(5162), + [anon_sym_DASH_DASH] = ACTIONS(5162), + [anon_sym_PLUS] = ACTIONS(5164), + [anon_sym_DASH] = ACTIONS(5164), + [anon_sym_STAR] = ACTIONS(5162), + [anon_sym_SLASH] = ACTIONS(5164), + [anon_sym_PERCENT] = ACTIONS(5162), + [anon_sym_CARET] = ACTIONS(5162), + [anon_sym_PIPE] = ACTIONS(5164), + [anon_sym_AMP] = ACTIONS(5164), + [anon_sym_LT_LT] = ACTIONS(5162), + [anon_sym_GT_GT] = ACTIONS(5164), + [anon_sym_GT_GT_GT] = ACTIONS(5162), + [anon_sym_EQ_EQ] = ACTIONS(5162), + [anon_sym_BANG_EQ] = ACTIONS(5162), + [anon_sym_GT_EQ] = ACTIONS(5162), + [anon_sym_LT_EQ] = ACTIONS(5162), + [anon_sym_DOT] = ACTIONS(5164), + [anon_sym_EQ_GT] = ACTIONS(5162), + [anon_sym_switch] = ACTIONS(5162), + [anon_sym_when] = ACTIONS(5162), + [anon_sym_DOT_DOT] = ACTIONS(5162), + [anon_sym_and] = ACTIONS(5162), + [anon_sym_or] = ACTIONS(5162), + [anon_sym_AMP_AMP] = ACTIONS(5162), + [anon_sym_PIPE_PIPE] = ACTIONS(5162), + [anon_sym_QMARK_QMARK] = ACTIONS(5162), + [anon_sym_on] = ACTIONS(5162), + [anon_sym_equals] = ACTIONS(5162), + [anon_sym_by] = ACTIONS(5162), + [anon_sym_as] = ACTIONS(5162), + [anon_sym_is] = ACTIONS(5162), + [anon_sym_DASH_GT] = ACTIONS(5162), + [anon_sym_with] = ACTIONS(5162), + [aux_sym_preproc_if_token3] = ACTIONS(5162), + [aux_sym_preproc_else_token1] = ACTIONS(5162), + [aux_sym_preproc_elif_token1] = ACTIONS(5162), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -502210,56 +501681,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(5350), - [anon_sym_LBRACK] = ACTIONS(5350), - [anon_sym_COLON] = ACTIONS(5350), - [anon_sym_COMMA] = ACTIONS(5350), - [anon_sym_RBRACK] = ACTIONS(5350), - [anon_sym_LPAREN] = ACTIONS(5350), - [anon_sym_RPAREN] = ACTIONS(5350), - [anon_sym_RBRACE] = ACTIONS(5350), - [anon_sym_LT] = ACTIONS(5352), - [anon_sym_GT] = ACTIONS(5352), - [anon_sym_in] = ACTIONS(5350), - [anon_sym_QMARK] = ACTIONS(5352), - [anon_sym_BANG] = ACTIONS(5352), - [anon_sym_PLUS_PLUS] = ACTIONS(5350), - [anon_sym_DASH_DASH] = ACTIONS(5350), - [anon_sym_PLUS] = ACTIONS(5352), - [anon_sym_DASH] = ACTIONS(5352), - [anon_sym_STAR] = ACTIONS(5350), - [anon_sym_SLASH] = ACTIONS(5352), - [anon_sym_PERCENT] = ACTIONS(5350), - [anon_sym_CARET] = ACTIONS(5350), - [anon_sym_PIPE] = ACTIONS(5352), - [anon_sym_AMP] = ACTIONS(5352), - [anon_sym_LT_LT] = ACTIONS(5350), - [anon_sym_GT_GT] = ACTIONS(5352), - [anon_sym_GT_GT_GT] = ACTIONS(5350), - [anon_sym_EQ_EQ] = ACTIONS(5350), - [anon_sym_BANG_EQ] = ACTIONS(5350), - [anon_sym_GT_EQ] = ACTIONS(5350), - [anon_sym_LT_EQ] = ACTIONS(5350), - [anon_sym_DOT] = ACTIONS(5352), - [anon_sym_EQ_GT] = ACTIONS(5350), - [anon_sym_switch] = ACTIONS(5350), - [anon_sym_when] = ACTIONS(5350), - [anon_sym_DOT_DOT] = ACTIONS(5350), - [anon_sym_and] = ACTIONS(5350), - [anon_sym_or] = ACTIONS(5350), - [anon_sym_AMP_AMP] = ACTIONS(5350), - [anon_sym_PIPE_PIPE] = ACTIONS(5350), - [anon_sym_QMARK_QMARK] = ACTIONS(5350), - [anon_sym_on] = ACTIONS(5350), - [anon_sym_equals] = ACTIONS(5350), - [anon_sym_by] = ACTIONS(5350), - [anon_sym_as] = ACTIONS(5350), - [anon_sym_is] = ACTIONS(5350), - [anon_sym_DASH_GT] = ACTIONS(5350), - [anon_sym_with] = ACTIONS(5350), - [aux_sym_preproc_if_token3] = ACTIONS(5350), - [aux_sym_preproc_else_token1] = ACTIONS(5350), - [aux_sym_preproc_elif_token1] = ACTIONS(5350), + [anon_sym_SEMI] = ACTIONS(5084), + [anon_sym_LBRACK] = ACTIONS(5084), + [anon_sym_COLON] = ACTIONS(5084), + [anon_sym_COMMA] = ACTIONS(5084), + [anon_sym_RBRACK] = ACTIONS(5084), + [anon_sym_LPAREN] = ACTIONS(5084), + [anon_sym_RPAREN] = ACTIONS(5084), + [anon_sym_RBRACE] = ACTIONS(5084), + [anon_sym_LT] = ACTIONS(5086), + [anon_sym_GT] = ACTIONS(5086), + [anon_sym_in] = ACTIONS(5084), + [anon_sym_QMARK] = ACTIONS(5086), + [anon_sym_BANG] = ACTIONS(5086), + [anon_sym_PLUS_PLUS] = ACTIONS(5084), + [anon_sym_DASH_DASH] = ACTIONS(5084), + [anon_sym_PLUS] = ACTIONS(5086), + [anon_sym_DASH] = ACTIONS(5086), + [anon_sym_STAR] = ACTIONS(5084), + [anon_sym_SLASH] = ACTIONS(5086), + [anon_sym_PERCENT] = ACTIONS(5084), + [anon_sym_CARET] = ACTIONS(5084), + [anon_sym_PIPE] = ACTIONS(5086), + [anon_sym_AMP] = ACTIONS(5086), + [anon_sym_LT_LT] = ACTIONS(5084), + [anon_sym_GT_GT] = ACTIONS(5086), + [anon_sym_GT_GT_GT] = ACTIONS(5084), + [anon_sym_EQ_EQ] = ACTIONS(5084), + [anon_sym_BANG_EQ] = ACTIONS(5084), + [anon_sym_GT_EQ] = ACTIONS(5084), + [anon_sym_LT_EQ] = ACTIONS(5084), + [anon_sym_DOT] = ACTIONS(5086), + [anon_sym_EQ_GT] = ACTIONS(5084), + [anon_sym_switch] = ACTIONS(5084), + [anon_sym_when] = ACTIONS(5084), + [anon_sym_DOT_DOT] = ACTIONS(5084), + [anon_sym_and] = ACTIONS(5084), + [anon_sym_or] = ACTIONS(5084), + [anon_sym_AMP_AMP] = ACTIONS(5084), + [anon_sym_PIPE_PIPE] = ACTIONS(5084), + [anon_sym_QMARK_QMARK] = ACTIONS(5084), + [anon_sym_on] = ACTIONS(5084), + [anon_sym_equals] = ACTIONS(5084), + [anon_sym_by] = ACTIONS(5084), + [anon_sym_as] = ACTIONS(5084), + [anon_sym_is] = ACTIONS(5084), + [anon_sym_DASH_GT] = ACTIONS(5084), + [anon_sym_with] = ACTIONS(5084), + [aux_sym_preproc_if_token3] = ACTIONS(5084), + [aux_sym_preproc_else_token1] = ACTIONS(5084), + [aux_sym_preproc_elif_token1] = ACTIONS(5084), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -502272,6 +501743,26 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3435] = { + [sym_parameter_list] = STATE(7531), + [sym__name] = STATE(4369), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(4068), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(4073), + [sym_type] = STATE(5909), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym__lambda_parameters] = STATE(7296), + [sym_identifier] = STATE(5764), + [sym__reserved_identifier] = STATE(3654), [sym_preproc_region] = STATE(3435), [sym_preproc_endregion] = STATE(3435), [sym_preproc_line] = STATE(3435), @@ -502281,56 +501772,36 @@ 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(5142), - [anon_sym_LBRACK] = ACTIONS(5142), - [anon_sym_COLON] = ACTIONS(5142), - [anon_sym_COMMA] = ACTIONS(5142), - [anon_sym_RBRACK] = ACTIONS(5142), - [anon_sym_LPAREN] = ACTIONS(5142), - [anon_sym_RPAREN] = ACTIONS(5142), - [anon_sym_RBRACE] = ACTIONS(5142), - [anon_sym_LT] = ACTIONS(5144), - [anon_sym_GT] = ACTIONS(5144), - [anon_sym_in] = ACTIONS(5142), - [anon_sym_QMARK] = ACTIONS(5144), - [anon_sym_BANG] = ACTIONS(5144), - [anon_sym_PLUS_PLUS] = ACTIONS(5142), - [anon_sym_DASH_DASH] = ACTIONS(5142), - [anon_sym_PLUS] = ACTIONS(5144), - [anon_sym_DASH] = ACTIONS(5144), - [anon_sym_STAR] = ACTIONS(5142), - [anon_sym_SLASH] = ACTIONS(5144), - [anon_sym_PERCENT] = ACTIONS(5142), - [anon_sym_CARET] = ACTIONS(5142), - [anon_sym_PIPE] = ACTIONS(5144), - [anon_sym_AMP] = ACTIONS(5144), - [anon_sym_LT_LT] = ACTIONS(5142), - [anon_sym_GT_GT] = ACTIONS(5144), - [anon_sym_GT_GT_GT] = ACTIONS(5142), - [anon_sym_EQ_EQ] = ACTIONS(5142), - [anon_sym_BANG_EQ] = ACTIONS(5142), - [anon_sym_GT_EQ] = ACTIONS(5142), - [anon_sym_LT_EQ] = ACTIONS(5142), - [anon_sym_DOT] = ACTIONS(5144), - [anon_sym_EQ_GT] = ACTIONS(5142), - [anon_sym_switch] = ACTIONS(5142), - [anon_sym_when] = ACTIONS(5142), - [anon_sym_DOT_DOT] = ACTIONS(5142), - [anon_sym_and] = ACTIONS(5142), - [anon_sym_or] = ACTIONS(5142), - [anon_sym_AMP_AMP] = ACTIONS(5142), - [anon_sym_PIPE_PIPE] = ACTIONS(5142), - [anon_sym_QMARK_QMARK] = ACTIONS(5142), - [anon_sym_on] = ACTIONS(5142), - [anon_sym_equals] = ACTIONS(5142), - [anon_sym_by] = ACTIONS(5142), - [anon_sym_as] = ACTIONS(5142), - [anon_sym_is] = ACTIONS(5142), - [anon_sym_DASH_GT] = ACTIONS(5142), - [anon_sym_with] = ACTIONS(5142), - [aux_sym_preproc_if_token3] = ACTIONS(5142), - [aux_sym_preproc_else_token1] = ACTIONS(5142), - [aux_sym_preproc_elif_token1] = ACTIONS(5142), + [aux_sym__lambda_expression_init_repeat1] = STATE(5828), + [sym__identifier_token] = ACTIONS(2965), + [anon_sym_alias] = ACTIONS(2969), + [anon_sym_global] = ACTIONS(2969), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LPAREN] = ACTIONS(3786), + [anon_sym_ref] = ACTIONS(3436), + [anon_sym_delegate] = ACTIONS(3438), + [anon_sym_async] = ACTIONS(1045), + [anon_sym_file] = ACTIONS(2969), + [anon_sym_where] = ACTIONS(2969), + [anon_sym_notnull] = ACTIONS(2969), + [anon_sym_unmanaged] = ACTIONS(2969), + [anon_sym_scoped] = ACTIONS(2993), + [anon_sym_var] = ACTIONS(2995), + [sym_predefined_type] = ACTIONS(2997), + [anon_sym_yield] = ACTIONS(2969), + [anon_sym_when] = ACTIONS(2969), + [anon_sym_from] = ACTIONS(2969), + [anon_sym_into] = ACTIONS(2969), + [anon_sym_join] = ACTIONS(2969), + [anon_sym_on] = ACTIONS(2969), + [anon_sym_equals] = ACTIONS(2969), + [anon_sym_let] = ACTIONS(2969), + [anon_sym_orderby] = ACTIONS(2969), + [anon_sym_ascending] = ACTIONS(2969), + [anon_sym_descending] = ACTIONS(2969), + [anon_sym_group] = ACTIONS(2969), + [anon_sym_by] = ACTIONS(2969), + [anon_sym_select] = ACTIONS(2969), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -502352,56 +501823,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), - [sym__identifier_token] = ACTIONS(3315), - [anon_sym_extern] = ACTIONS(3315), - [anon_sym_alias] = ACTIONS(3315), - [anon_sym_global] = ACTIONS(3315), - [anon_sym_unsafe] = ACTIONS(3315), - [anon_sym_static] = ACTIONS(3315), - [anon_sym_LBRACK] = ACTIONS(3317), - [anon_sym_RBRACE] = ACTIONS(3317), - [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_get] = ACTIONS(3315), - [anon_sym_set] = ACTIONS(3315), - [anon_sym_add] = ACTIONS(3315), - [anon_sym_remove] = ACTIONS(3315), - [anon_sym_init] = ACTIONS(3315), - [anon_sym_scoped] = ACTIONS(3315), - [anon_sym_var] = ACTIONS(3315), - [anon_sym_yield] = ACTIONS(3315), - [anon_sym_when] = ACTIONS(3315), - [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), - [aux_sym_preproc_if_token1] = ACTIONS(3317), + [anon_sym_SEMI] = ACTIONS(4973), + [anon_sym_LBRACK] = ACTIONS(4973), + [anon_sym_COLON] = ACTIONS(4973), + [anon_sym_COMMA] = ACTIONS(4973), + [anon_sym_RBRACK] = ACTIONS(4973), + [anon_sym_LPAREN] = ACTIONS(4973), + [anon_sym_RPAREN] = ACTIONS(4973), + [anon_sym_RBRACE] = ACTIONS(4973), + [anon_sym_LT] = ACTIONS(4975), + [anon_sym_GT] = ACTIONS(4975), + [anon_sym_in] = ACTIONS(4973), + [anon_sym_QMARK] = ACTIONS(4975), + [anon_sym_BANG] = ACTIONS(4975), + [anon_sym_PLUS_PLUS] = ACTIONS(4973), + [anon_sym_DASH_DASH] = ACTIONS(4973), + [anon_sym_PLUS] = ACTIONS(4975), + [anon_sym_DASH] = ACTIONS(4975), + [anon_sym_STAR] = ACTIONS(4973), + [anon_sym_SLASH] = ACTIONS(4975), + [anon_sym_PERCENT] = ACTIONS(4973), + [anon_sym_CARET] = ACTIONS(4973), + [anon_sym_PIPE] = ACTIONS(4975), + [anon_sym_AMP] = ACTIONS(4975), + [anon_sym_LT_LT] = ACTIONS(4973), + [anon_sym_GT_GT] = ACTIONS(4975), + [anon_sym_GT_GT_GT] = ACTIONS(4973), + [anon_sym_EQ_EQ] = ACTIONS(4973), + [anon_sym_BANG_EQ] = ACTIONS(4973), + [anon_sym_GT_EQ] = ACTIONS(4973), + [anon_sym_LT_EQ] = ACTIONS(4973), + [anon_sym_DOT] = ACTIONS(4975), + [anon_sym_EQ_GT] = ACTIONS(4973), + [anon_sym_switch] = ACTIONS(4973), + [anon_sym_when] = ACTIONS(4973), + [anon_sym_DOT_DOT] = ACTIONS(4973), + [anon_sym_and] = ACTIONS(4973), + [anon_sym_or] = ACTIONS(4973), + [anon_sym_AMP_AMP] = ACTIONS(4973), + [anon_sym_PIPE_PIPE] = ACTIONS(4973), + [anon_sym_QMARK_QMARK] = ACTIONS(4973), + [anon_sym_on] = ACTIONS(4973), + [anon_sym_equals] = ACTIONS(4973), + [anon_sym_by] = ACTIONS(4973), + [anon_sym_as] = ACTIONS(4973), + [anon_sym_is] = ACTIONS(4973), + [anon_sym_DASH_GT] = ACTIONS(4973), + [anon_sym_with] = ACTIONS(4973), + [aux_sym_preproc_if_token3] = ACTIONS(4973), + [aux_sym_preproc_else_token1] = ACTIONS(4973), + [aux_sym_preproc_elif_token1] = ACTIONS(4973), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -502414,6 +501885,26 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3437] = { + [sym__name] = STATE(6381), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(4068), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(4073), + [sym_type] = STATE(7364), + [sym_implicit_type] = STATE(7156), + [sym_array_type] = STATE(6671), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(6672), + [sym_pointer_type] = STATE(6672), + [sym__pointer_base_type] = STATE(7421), + [sym_function_pointer_type] = STATE(6672), + [sym_function_pointer_parameter] = STATE(7377), + [sym_ref_type] = STATE(7035), + [sym__ref_base_type] = STATE(7387), + [sym_scoped_type] = STATE(7035), + [sym_tuple_type] = STATE(6553), + [sym_identifier] = STATE(4081), + [sym__reserved_identifier] = STATE(3654), [sym_preproc_region] = STATE(3437), [sym_preproc_endregion] = STATE(3437), [sym_preproc_line] = STATE(3437), @@ -502423,56 +501914,36 @@ 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(5068), - [anon_sym_LBRACK] = ACTIONS(5068), - [anon_sym_COLON] = ACTIONS(5068), - [anon_sym_COMMA] = ACTIONS(5068), - [anon_sym_RBRACK] = ACTIONS(5068), - [anon_sym_LPAREN] = ACTIONS(5068), - [anon_sym_RPAREN] = ACTIONS(5068), - [anon_sym_RBRACE] = ACTIONS(5068), - [anon_sym_LT] = ACTIONS(5070), - [anon_sym_GT] = ACTIONS(5070), - [anon_sym_in] = ACTIONS(5068), - [anon_sym_QMARK] = ACTIONS(5070), - [anon_sym_BANG] = ACTIONS(5070), - [anon_sym_PLUS_PLUS] = ACTIONS(5068), - [anon_sym_DASH_DASH] = ACTIONS(5068), - [anon_sym_PLUS] = ACTIONS(5070), - [anon_sym_DASH] = ACTIONS(5070), - [anon_sym_STAR] = ACTIONS(5068), - [anon_sym_SLASH] = ACTIONS(5070), - [anon_sym_PERCENT] = ACTIONS(5068), - [anon_sym_CARET] = ACTIONS(5068), - [anon_sym_PIPE] = ACTIONS(5070), - [anon_sym_AMP] = ACTIONS(5070), - [anon_sym_LT_LT] = ACTIONS(5068), - [anon_sym_GT_GT] = ACTIONS(5070), - [anon_sym_GT_GT_GT] = ACTIONS(5068), - [anon_sym_EQ_EQ] = ACTIONS(5068), - [anon_sym_BANG_EQ] = ACTIONS(5068), - [anon_sym_GT_EQ] = ACTIONS(5068), - [anon_sym_LT_EQ] = ACTIONS(5068), - [anon_sym_DOT] = ACTIONS(5070), - [anon_sym_EQ_GT] = ACTIONS(5068), - [anon_sym_switch] = ACTIONS(5068), - [anon_sym_when] = ACTIONS(5068), - [anon_sym_DOT_DOT] = ACTIONS(5068), - [anon_sym_and] = ACTIONS(5068), - [anon_sym_or] = ACTIONS(5068), - [anon_sym_AMP_AMP] = ACTIONS(5068), - [anon_sym_PIPE_PIPE] = ACTIONS(5068), - [anon_sym_QMARK_QMARK] = ACTIONS(5068), - [anon_sym_on] = ACTIONS(5068), - [anon_sym_equals] = ACTIONS(5068), - [anon_sym_by] = ACTIONS(5068), - [anon_sym_as] = ACTIONS(5068), - [anon_sym_is] = ACTIONS(5068), - [anon_sym_DASH_GT] = ACTIONS(5068), - [anon_sym_with] = ACTIONS(5068), - [aux_sym_preproc_if_token3] = ACTIONS(5068), - [aux_sym_preproc_else_token1] = ACTIONS(5068), - [aux_sym_preproc_elif_token1] = ACTIONS(5068), + [aux_sym_function_pointer_type_repeat1] = STATE(3493), + [sym__identifier_token] = ACTIONS(2965), + [anon_sym_alias] = ACTIONS(2969), + [anon_sym_global] = ACTIONS(2969), + [anon_sym_LPAREN] = ACTIONS(2977), + [anon_sym_ref] = ACTIONS(5450), + [anon_sym_delegate] = ACTIONS(5172), + [anon_sym_file] = ACTIONS(2969), + [anon_sym_in] = ACTIONS(5452), + [anon_sym_out] = ACTIONS(5452), + [anon_sym_where] = ACTIONS(2969), + [anon_sym_notnull] = ACTIONS(2969), + [anon_sym_unmanaged] = ACTIONS(2969), + [anon_sym_scoped] = ACTIONS(5454), + [anon_sym_var] = ACTIONS(4705), + [sym_predefined_type] = ACTIONS(5456), + [anon_sym_yield] = ACTIONS(2969), + [anon_sym_when] = ACTIONS(2969), + [anon_sym_from] = ACTIONS(2969), + [anon_sym_into] = ACTIONS(2969), + [anon_sym_join] = ACTIONS(2969), + [anon_sym_on] = ACTIONS(2969), + [anon_sym_equals] = ACTIONS(2969), + [anon_sym_let] = ACTIONS(2969), + [anon_sym_orderby] = ACTIONS(2969), + [anon_sym_ascending] = ACTIONS(2969), + [anon_sym_descending] = ACTIONS(2969), + [anon_sym_group] = ACTIONS(2969), + [anon_sym_by] = ACTIONS(2969), + [anon_sym_select] = ACTIONS(2969), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -502494,56 +501965,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(4860), - [anon_sym_LBRACK] = ACTIONS(4860), - [anon_sym_COLON] = ACTIONS(4860), - [anon_sym_COMMA] = ACTIONS(4860), - [anon_sym_RBRACK] = ACTIONS(4860), - [anon_sym_LPAREN] = ACTIONS(4860), - [anon_sym_RPAREN] = ACTIONS(4860), - [anon_sym_RBRACE] = ACTIONS(4860), - [anon_sym_LT] = ACTIONS(4862), - [anon_sym_GT] = ACTIONS(4862), - [anon_sym_in] = ACTIONS(4860), - [anon_sym_QMARK] = ACTIONS(4862), - [anon_sym_BANG] = ACTIONS(4862), - [anon_sym_PLUS_PLUS] = ACTIONS(4860), - [anon_sym_DASH_DASH] = ACTIONS(4860), - [anon_sym_PLUS] = ACTIONS(4862), - [anon_sym_DASH] = ACTIONS(4862), - [anon_sym_STAR] = ACTIONS(4860), - [anon_sym_SLASH] = ACTIONS(4862), - [anon_sym_PERCENT] = ACTIONS(4860), - [anon_sym_CARET] = ACTIONS(4860), - [anon_sym_PIPE] = ACTIONS(4862), - [anon_sym_AMP] = ACTIONS(4862), - [anon_sym_LT_LT] = ACTIONS(4860), - [anon_sym_GT_GT] = ACTIONS(4862), - [anon_sym_GT_GT_GT] = ACTIONS(4860), - [anon_sym_EQ_EQ] = ACTIONS(4860), - [anon_sym_BANG_EQ] = ACTIONS(4860), - [anon_sym_GT_EQ] = ACTIONS(4860), - [anon_sym_LT_EQ] = ACTIONS(4860), - [anon_sym_DOT] = ACTIONS(4862), - [anon_sym_EQ_GT] = ACTIONS(4860), - [anon_sym_switch] = ACTIONS(4860), - [anon_sym_when] = ACTIONS(4860), - [anon_sym_DOT_DOT] = ACTIONS(4860), - [anon_sym_and] = ACTIONS(4860), - [anon_sym_or] = ACTIONS(4860), - [anon_sym_AMP_AMP] = ACTIONS(4860), - [anon_sym_PIPE_PIPE] = ACTIONS(4860), - [anon_sym_QMARK_QMARK] = ACTIONS(4860), - [anon_sym_on] = ACTIONS(4860), - [anon_sym_equals] = ACTIONS(4860), - [anon_sym_by] = ACTIONS(4860), - [anon_sym_as] = ACTIONS(4860), - [anon_sym_is] = ACTIONS(4860), - [anon_sym_DASH_GT] = ACTIONS(4860), - [anon_sym_with] = ACTIONS(4860), - [aux_sym_preproc_if_token3] = ACTIONS(4860), - [aux_sym_preproc_else_token1] = ACTIONS(4860), - [aux_sym_preproc_elif_token1] = ACTIONS(4860), + [anon_sym_SEMI] = ACTIONS(4977), + [anon_sym_LBRACK] = ACTIONS(4977), + [anon_sym_COLON] = ACTIONS(4977), + [anon_sym_COMMA] = ACTIONS(4977), + [anon_sym_RBRACK] = ACTIONS(4977), + [anon_sym_LPAREN] = ACTIONS(4977), + [anon_sym_RPAREN] = ACTIONS(4977), + [anon_sym_RBRACE] = ACTIONS(4977), + [anon_sym_LT] = ACTIONS(4979), + [anon_sym_GT] = ACTIONS(4979), + [anon_sym_in] = ACTIONS(4977), + [anon_sym_QMARK] = ACTIONS(4979), + [anon_sym_BANG] = ACTIONS(4979), + [anon_sym_PLUS_PLUS] = ACTIONS(4977), + [anon_sym_DASH_DASH] = ACTIONS(4977), + [anon_sym_PLUS] = ACTIONS(4979), + [anon_sym_DASH] = ACTIONS(4979), + [anon_sym_STAR] = ACTIONS(4977), + [anon_sym_SLASH] = ACTIONS(4979), + [anon_sym_PERCENT] = ACTIONS(4977), + [anon_sym_CARET] = ACTIONS(4977), + [anon_sym_PIPE] = ACTIONS(4979), + [anon_sym_AMP] = ACTIONS(4979), + [anon_sym_LT_LT] = ACTIONS(4977), + [anon_sym_GT_GT] = ACTIONS(4979), + [anon_sym_GT_GT_GT] = ACTIONS(4977), + [anon_sym_EQ_EQ] = ACTIONS(4977), + [anon_sym_BANG_EQ] = ACTIONS(4977), + [anon_sym_GT_EQ] = ACTIONS(4977), + [anon_sym_LT_EQ] = ACTIONS(4977), + [anon_sym_DOT] = ACTIONS(4979), + [anon_sym_EQ_GT] = ACTIONS(4977), + [anon_sym_switch] = ACTIONS(4977), + [anon_sym_when] = ACTIONS(4977), + [anon_sym_DOT_DOT] = ACTIONS(4977), + [anon_sym_and] = ACTIONS(4977), + [anon_sym_or] = ACTIONS(4977), + [anon_sym_AMP_AMP] = ACTIONS(4977), + [anon_sym_PIPE_PIPE] = ACTIONS(4977), + [anon_sym_QMARK_QMARK] = ACTIONS(4977), + [anon_sym_on] = ACTIONS(4977), + [anon_sym_equals] = ACTIONS(4977), + [anon_sym_by] = ACTIONS(4977), + [anon_sym_as] = ACTIONS(4977), + [anon_sym_is] = ACTIONS(4977), + [anon_sym_DASH_GT] = ACTIONS(4977), + [anon_sym_with] = ACTIONS(4977), + [aux_sym_preproc_if_token3] = ACTIONS(4977), + [aux_sym_preproc_else_token1] = ACTIONS(4977), + [aux_sym_preproc_elif_token1] = ACTIONS(4977), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -502565,55 +502036,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), - [anon_sym_EQ] = ACTIONS(5520), - [anon_sym_LBRACK] = ACTIONS(4860), - [anon_sym_COLON] = ACTIONS(4860), - [anon_sym_COMMA] = ACTIONS(4860), - [anon_sym_LPAREN] = ACTIONS(4860), - [anon_sym_LT] = ACTIONS(4862), - [anon_sym_GT] = ACTIONS(4862), - [anon_sym_QMARK] = ACTIONS(4862), - [anon_sym_BANG] = ACTIONS(4862), - [anon_sym_PLUS_PLUS] = ACTIONS(4860), - [anon_sym_DASH_DASH] = ACTIONS(4860), - [anon_sym_PLUS] = ACTIONS(4862), - [anon_sym_DASH] = ACTIONS(4862), - [anon_sym_STAR] = ACTIONS(4862), - [anon_sym_SLASH] = ACTIONS(4862), - [anon_sym_PERCENT] = ACTIONS(4862), - [anon_sym_CARET] = ACTIONS(4862), - [anon_sym_PIPE] = ACTIONS(4862), - [anon_sym_AMP] = ACTIONS(4862), - [anon_sym_LT_LT] = ACTIONS(4862), - [anon_sym_GT_GT] = ACTIONS(4862), - [anon_sym_GT_GT_GT] = ACTIONS(4862), - [anon_sym_EQ_EQ] = ACTIONS(4860), - [anon_sym_BANG_EQ] = ACTIONS(4860), - [anon_sym_GT_EQ] = ACTIONS(4860), - [anon_sym_LT_EQ] = ACTIONS(4860), - [anon_sym_DOT] = ACTIONS(4862), - [anon_sym_switch] = ACTIONS(4860), - [anon_sym_DOT_DOT] = ACTIONS(4860), - [anon_sym_PLUS_EQ] = ACTIONS(5522), - [anon_sym_DASH_EQ] = ACTIONS(5522), - [anon_sym_STAR_EQ] = ACTIONS(5522), - [anon_sym_SLASH_EQ] = ACTIONS(5522), - [anon_sym_PERCENT_EQ] = ACTIONS(5522), - [anon_sym_AMP_EQ] = ACTIONS(5522), - [anon_sym_CARET_EQ] = ACTIONS(5522), - [anon_sym_PIPE_EQ] = ACTIONS(5522), - [anon_sym_LT_LT_EQ] = ACTIONS(5522), - [anon_sym_GT_GT_EQ] = ACTIONS(5522), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(5522), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(5522), - [anon_sym_AMP_AMP] = ACTIONS(4860), - [anon_sym_PIPE_PIPE] = ACTIONS(4860), - [anon_sym_QMARK_QMARK] = ACTIONS(4862), - [anon_sym_into] = ACTIONS(4860), - [anon_sym_as] = ACTIONS(4860), - [anon_sym_is] = ACTIONS(4860), - [anon_sym_DASH_GT] = ACTIONS(4860), - [anon_sym_with] = ACTIONS(4860), + [anon_sym_SEMI] = ACTIONS(4981), + [anon_sym_LBRACK] = ACTIONS(4981), + [anon_sym_COLON] = ACTIONS(4981), + [anon_sym_COMMA] = ACTIONS(4981), + [anon_sym_RBRACK] = ACTIONS(4981), + [anon_sym_LPAREN] = ACTIONS(4981), + [anon_sym_RPAREN] = ACTIONS(4981), + [anon_sym_RBRACE] = ACTIONS(4981), + [anon_sym_LT] = ACTIONS(4983), + [anon_sym_GT] = ACTIONS(4983), + [anon_sym_in] = ACTIONS(4981), + [anon_sym_QMARK] = ACTIONS(4983), + [anon_sym_BANG] = ACTIONS(4983), + [anon_sym_PLUS_PLUS] = ACTIONS(4981), + [anon_sym_DASH_DASH] = ACTIONS(4981), + [anon_sym_PLUS] = ACTIONS(4983), + [anon_sym_DASH] = ACTIONS(4983), + [anon_sym_STAR] = ACTIONS(4981), + [anon_sym_SLASH] = ACTIONS(4983), + [anon_sym_PERCENT] = ACTIONS(4981), + [anon_sym_CARET] = ACTIONS(4981), + [anon_sym_PIPE] = ACTIONS(4983), + [anon_sym_AMP] = ACTIONS(4983), + [anon_sym_LT_LT] = ACTIONS(4981), + [anon_sym_GT_GT] = ACTIONS(4983), + [anon_sym_GT_GT_GT] = ACTIONS(4981), + [anon_sym_EQ_EQ] = ACTIONS(4981), + [anon_sym_BANG_EQ] = ACTIONS(4981), + [anon_sym_GT_EQ] = ACTIONS(4981), + [anon_sym_LT_EQ] = ACTIONS(4981), + [anon_sym_DOT] = ACTIONS(4983), + [anon_sym_EQ_GT] = ACTIONS(4981), + [anon_sym_switch] = ACTIONS(4981), + [anon_sym_when] = ACTIONS(4981), + [anon_sym_DOT_DOT] = ACTIONS(4981), + [anon_sym_and] = ACTIONS(4981), + [anon_sym_or] = ACTIONS(4981), + [anon_sym_AMP_AMP] = ACTIONS(4981), + [anon_sym_PIPE_PIPE] = ACTIONS(4981), + [anon_sym_QMARK_QMARK] = ACTIONS(4981), + [anon_sym_on] = ACTIONS(4981), + [anon_sym_equals] = ACTIONS(4981), + [anon_sym_by] = ACTIONS(4981), + [anon_sym_as] = ACTIONS(4981), + [anon_sym_is] = ACTIONS(4981), + [anon_sym_DASH_GT] = ACTIONS(4981), + [anon_sym_with] = ACTIONS(4981), + [aux_sym_preproc_if_token3] = ACTIONS(4981), + [aux_sym_preproc_else_token1] = ACTIONS(4981), + [aux_sym_preproc_elif_token1] = ACTIONS(4981), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -502624,29 +502096,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(4860), }, [3440] = { - [sym_parameter_list] = STATE(7311), - [sym__name] = STATE(4390), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(4096), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(4109), - [sym_type] = STATE(5915), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym__lambda_parameters] = STATE(7489), - [sym_identifier] = STATE(5763), - [sym__reserved_identifier] = STATE(3691), [sym_preproc_region] = STATE(3440), [sym_preproc_endregion] = STATE(3440), [sym_preproc_line] = STATE(3440), @@ -502656,36 +502107,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), - [aux_sym__lambda_expression_init_repeat1] = STATE(5863), - [sym__identifier_token] = ACTIONS(2967), - [anon_sym_alias] = ACTIONS(2971), - [anon_sym_global] = ACTIONS(2971), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LPAREN] = ACTIONS(3794), - [anon_sym_ref] = ACTIONS(3452), - [anon_sym_delegate] = ACTIONS(5524), - [anon_sym_async] = ACTIONS(1047), - [anon_sym_file] = ACTIONS(2971), - [anon_sym_where] = ACTIONS(2971), - [anon_sym_notnull] = ACTIONS(2971), - [anon_sym_unmanaged] = ACTIONS(2971), - [anon_sym_scoped] = ACTIONS(2997), - [anon_sym_var] = ACTIONS(2999), - [sym_predefined_type] = ACTIONS(3001), - [anon_sym_yield] = ACTIONS(2971), - [anon_sym_when] = ACTIONS(2971), - [anon_sym_from] = ACTIONS(2971), - [anon_sym_into] = ACTIONS(2971), - [anon_sym_join] = ACTIONS(2971), - [anon_sym_on] = ACTIONS(2971), - [anon_sym_equals] = ACTIONS(2971), - [anon_sym_let] = ACTIONS(2971), - [anon_sym_orderby] = ACTIONS(2971), - [anon_sym_ascending] = ACTIONS(2971), - [anon_sym_descending] = ACTIONS(2971), - [anon_sym_group] = ACTIONS(2971), - [anon_sym_by] = ACTIONS(2971), - [anon_sym_select] = ACTIONS(2971), + [anon_sym_SEMI] = ACTIONS(5016), + [anon_sym_LBRACK] = ACTIONS(5016), + [anon_sym_COLON] = ACTIONS(5016), + [anon_sym_COMMA] = ACTIONS(5016), + [anon_sym_RBRACK] = ACTIONS(5016), + [anon_sym_LPAREN] = ACTIONS(5016), + [anon_sym_RPAREN] = ACTIONS(5016), + [anon_sym_RBRACE] = ACTIONS(5016), + [anon_sym_LT] = ACTIONS(5018), + [anon_sym_GT] = ACTIONS(5018), + [anon_sym_in] = ACTIONS(5016), + [anon_sym_QMARK] = ACTIONS(5018), + [anon_sym_BANG] = ACTIONS(5018), + [anon_sym_PLUS_PLUS] = ACTIONS(5016), + [anon_sym_DASH_DASH] = ACTIONS(5016), + [anon_sym_PLUS] = ACTIONS(5018), + [anon_sym_DASH] = ACTIONS(5018), + [anon_sym_STAR] = ACTIONS(5016), + [anon_sym_SLASH] = ACTIONS(5018), + [anon_sym_PERCENT] = ACTIONS(5016), + [anon_sym_CARET] = ACTIONS(5016), + [anon_sym_PIPE] = ACTIONS(5018), + [anon_sym_AMP] = ACTIONS(5018), + [anon_sym_LT_LT] = ACTIONS(5016), + [anon_sym_GT_GT] = ACTIONS(5018), + [anon_sym_GT_GT_GT] = ACTIONS(5016), + [anon_sym_EQ_EQ] = ACTIONS(5016), + [anon_sym_BANG_EQ] = ACTIONS(5016), + [anon_sym_GT_EQ] = ACTIONS(5016), + [anon_sym_LT_EQ] = ACTIONS(5016), + [anon_sym_DOT] = ACTIONS(5018), + [anon_sym_EQ_GT] = ACTIONS(5016), + [anon_sym_switch] = ACTIONS(5016), + [anon_sym_when] = ACTIONS(5016), + [anon_sym_DOT_DOT] = ACTIONS(5016), + [anon_sym_and] = ACTIONS(5016), + [anon_sym_or] = ACTIONS(5016), + [anon_sym_AMP_AMP] = ACTIONS(5016), + [anon_sym_PIPE_PIPE] = ACTIONS(5016), + [anon_sym_QMARK_QMARK] = ACTIONS(5016), + [anon_sym_on] = ACTIONS(5016), + [anon_sym_equals] = ACTIONS(5016), + [anon_sym_by] = ACTIONS(5016), + [anon_sym_as] = ACTIONS(5016), + [anon_sym_is] = ACTIONS(5016), + [anon_sym_DASH_GT] = ACTIONS(5016), + [anon_sym_with] = ACTIONS(5016), + [aux_sym_preproc_if_token3] = ACTIONS(5016), + [aux_sym_preproc_else_token1] = ACTIONS(5016), + [aux_sym_preproc_elif_token1] = ACTIONS(5016), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -502707,56 +502178,56 @@ 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), - [sym__identifier_token] = ACTIONS(2951), - [anon_sym_extern] = ACTIONS(2951), - [anon_sym_alias] = ACTIONS(2951), - [anon_sym_global] = ACTIONS(2951), - [anon_sym_unsafe] = ACTIONS(2951), - [anon_sym_static] = ACTIONS(2951), - [anon_sym_LBRACK] = ACTIONS(2953), - [anon_sym_RBRACE] = ACTIONS(2953), - [anon_sym_abstract] = ACTIONS(2951), - [anon_sym_async] = ACTIONS(2951), - [anon_sym_const] = ACTIONS(2951), - [anon_sym_file] = ACTIONS(2951), - [anon_sym_fixed] = ACTIONS(2951), - [anon_sym_internal] = ACTIONS(2951), - [anon_sym_new] = ACTIONS(2951), - [anon_sym_override] = ACTIONS(2951), - [anon_sym_partial] = ACTIONS(2951), - [anon_sym_private] = ACTIONS(2951), - [anon_sym_protected] = ACTIONS(2951), - [anon_sym_public] = ACTIONS(2951), - [anon_sym_readonly] = ACTIONS(2951), - [anon_sym_required] = ACTIONS(2951), - [anon_sym_sealed] = ACTIONS(2951), - [anon_sym_virtual] = ACTIONS(2951), - [anon_sym_volatile] = ACTIONS(2951), - [anon_sym_where] = ACTIONS(2951), - [anon_sym_notnull] = ACTIONS(2951), - [anon_sym_unmanaged] = ACTIONS(2951), - [anon_sym_get] = ACTIONS(2951), - [anon_sym_set] = ACTIONS(2951), - [anon_sym_add] = ACTIONS(2951), - [anon_sym_remove] = ACTIONS(2951), - [anon_sym_init] = ACTIONS(2951), - [anon_sym_scoped] = ACTIONS(2951), - [anon_sym_var] = ACTIONS(2951), - [anon_sym_yield] = ACTIONS(2951), - [anon_sym_when] = ACTIONS(2951), - [anon_sym_from] = ACTIONS(2951), - [anon_sym_into] = ACTIONS(2951), - [anon_sym_join] = ACTIONS(2951), - [anon_sym_on] = ACTIONS(2951), - [anon_sym_equals] = ACTIONS(2951), - [anon_sym_let] = ACTIONS(2951), - [anon_sym_orderby] = ACTIONS(2951), - [anon_sym_ascending] = ACTIONS(2951), - [anon_sym_descending] = ACTIONS(2951), - [anon_sym_group] = ACTIONS(2951), - [anon_sym_by] = ACTIONS(2951), - [anon_sym_select] = ACTIONS(2951), - [aux_sym_preproc_if_token1] = ACTIONS(2953), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -502778,56 +502249,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3442), [sym_preproc_define] = STATE(3442), [sym_preproc_undef] = STATE(3442), - [anon_sym_SEMI] = ACTIONS(4961), - [anon_sym_LBRACK] = ACTIONS(4961), - [anon_sym_COLON] = ACTIONS(4961), - [anon_sym_COMMA] = ACTIONS(4961), - [anon_sym_RBRACK] = ACTIONS(4961), - [anon_sym_LPAREN] = ACTIONS(4961), - [anon_sym_RPAREN] = ACTIONS(4961), - [anon_sym_RBRACE] = ACTIONS(4961), - [anon_sym_LT] = ACTIONS(4963), - [anon_sym_GT] = ACTIONS(4963), - [anon_sym_in] = ACTIONS(4961), - [anon_sym_QMARK] = ACTIONS(4963), - [anon_sym_BANG] = ACTIONS(4963), - [anon_sym_PLUS_PLUS] = ACTIONS(4961), - [anon_sym_DASH_DASH] = ACTIONS(4961), - [anon_sym_PLUS] = ACTIONS(4963), - [anon_sym_DASH] = ACTIONS(4963), - [anon_sym_STAR] = ACTIONS(4961), - [anon_sym_SLASH] = ACTIONS(4963), - [anon_sym_PERCENT] = ACTIONS(4961), - [anon_sym_CARET] = ACTIONS(4961), - [anon_sym_PIPE] = ACTIONS(4963), - [anon_sym_AMP] = ACTIONS(4963), - [anon_sym_LT_LT] = ACTIONS(4961), - [anon_sym_GT_GT] = ACTIONS(4963), - [anon_sym_GT_GT_GT] = ACTIONS(4961), - [anon_sym_EQ_EQ] = ACTIONS(4961), - [anon_sym_BANG_EQ] = ACTIONS(4961), - [anon_sym_GT_EQ] = ACTIONS(4961), - [anon_sym_LT_EQ] = ACTIONS(4961), - [anon_sym_DOT] = ACTIONS(4963), - [anon_sym_EQ_GT] = ACTIONS(4961), - [anon_sym_switch] = ACTIONS(4961), - [anon_sym_when] = ACTIONS(4961), - [anon_sym_DOT_DOT] = ACTIONS(4961), - [anon_sym_and] = ACTIONS(4961), - [anon_sym_or] = ACTIONS(4961), - [anon_sym_AMP_AMP] = ACTIONS(4961), - [anon_sym_PIPE_PIPE] = ACTIONS(4961), - [anon_sym_QMARK_QMARK] = ACTIONS(4961), - [anon_sym_on] = ACTIONS(4961), - [anon_sym_equals] = ACTIONS(4961), - [anon_sym_by] = ACTIONS(4961), - [anon_sym_as] = ACTIONS(4961), - [anon_sym_is] = ACTIONS(4961), - [anon_sym_DASH_GT] = ACTIONS(4961), - [anon_sym_with] = ACTIONS(4961), - [aux_sym_preproc_if_token3] = ACTIONS(4961), - [aux_sym_preproc_else_token1] = ACTIONS(4961), - [aux_sym_preproc_elif_token1] = ACTIONS(4961), + [sym__identifier_token] = ACTIONS(5510), + [anon_sym_extern] = ACTIONS(5510), + [anon_sym_alias] = ACTIONS(5510), + [anon_sym_global] = ACTIONS(5510), + [anon_sym_unsafe] = ACTIONS(5510), + [anon_sym_static] = ACTIONS(5510), + [anon_sym_LBRACK] = ACTIONS(5512), + [anon_sym_RBRACE] = ACTIONS(5512), + [anon_sym_abstract] = ACTIONS(5510), + [anon_sym_async] = ACTIONS(5510), + [anon_sym_const] = ACTIONS(5510), + [anon_sym_file] = ACTIONS(5510), + [anon_sym_fixed] = ACTIONS(5510), + [anon_sym_internal] = ACTIONS(5510), + [anon_sym_new] = ACTIONS(5510), + [anon_sym_override] = ACTIONS(5510), + [anon_sym_partial] = ACTIONS(5510), + [anon_sym_private] = ACTIONS(5510), + [anon_sym_protected] = ACTIONS(5510), + [anon_sym_public] = ACTIONS(5510), + [anon_sym_readonly] = ACTIONS(5510), + [anon_sym_required] = ACTIONS(5510), + [anon_sym_sealed] = ACTIONS(5510), + [anon_sym_virtual] = ACTIONS(5510), + [anon_sym_volatile] = ACTIONS(5510), + [anon_sym_where] = ACTIONS(5510), + [anon_sym_notnull] = ACTIONS(5510), + [anon_sym_unmanaged] = ACTIONS(5510), + [anon_sym_get] = ACTIONS(5510), + [anon_sym_set] = ACTIONS(5510), + [anon_sym_add] = ACTIONS(5510), + [anon_sym_remove] = ACTIONS(5510), + [anon_sym_init] = ACTIONS(5510), + [anon_sym_scoped] = ACTIONS(5510), + [anon_sym_var] = ACTIONS(5510), + [anon_sym_yield] = ACTIONS(5510), + [anon_sym_when] = ACTIONS(5510), + [anon_sym_from] = ACTIONS(5510), + [anon_sym_into] = ACTIONS(5510), + [anon_sym_join] = ACTIONS(5510), + [anon_sym_on] = ACTIONS(5510), + [anon_sym_equals] = ACTIONS(5510), + [anon_sym_let] = ACTIONS(5510), + [anon_sym_orderby] = ACTIONS(5510), + [anon_sym_ascending] = ACTIONS(5510), + [anon_sym_descending] = ACTIONS(5510), + [anon_sym_group] = ACTIONS(5510), + [anon_sym_by] = ACTIONS(5510), + [anon_sym_select] = ACTIONS(5510), + [aux_sym_preproc_if_token1] = ACTIONS(5512), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -502849,56 +502320,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(4969), - [anon_sym_LBRACK] = ACTIONS(4969), - [anon_sym_COLON] = ACTIONS(4969), - [anon_sym_COMMA] = ACTIONS(4969), - [anon_sym_RBRACK] = ACTIONS(4969), - [anon_sym_LPAREN] = ACTIONS(4969), - [anon_sym_RPAREN] = ACTIONS(4969), - [anon_sym_RBRACE] = ACTIONS(4969), - [anon_sym_LT] = ACTIONS(4971), - [anon_sym_GT] = ACTIONS(4971), - [anon_sym_in] = ACTIONS(4969), - [anon_sym_QMARK] = ACTIONS(4971), - [anon_sym_BANG] = ACTIONS(4971), - [anon_sym_PLUS_PLUS] = ACTIONS(4969), - [anon_sym_DASH_DASH] = ACTIONS(4969), - [anon_sym_PLUS] = ACTIONS(4971), - [anon_sym_DASH] = ACTIONS(4971), - [anon_sym_STAR] = ACTIONS(4969), - [anon_sym_SLASH] = ACTIONS(4971), - [anon_sym_PERCENT] = ACTIONS(4969), - [anon_sym_CARET] = ACTIONS(4969), - [anon_sym_PIPE] = ACTIONS(4971), - [anon_sym_AMP] = ACTIONS(4971), - [anon_sym_LT_LT] = ACTIONS(4969), - [anon_sym_GT_GT] = ACTIONS(4971), - [anon_sym_GT_GT_GT] = ACTIONS(4969), - [anon_sym_EQ_EQ] = ACTIONS(4969), - [anon_sym_BANG_EQ] = ACTIONS(4969), - [anon_sym_GT_EQ] = ACTIONS(4969), - [anon_sym_LT_EQ] = ACTIONS(4969), - [anon_sym_DOT] = ACTIONS(4971), - [anon_sym_EQ_GT] = ACTIONS(4969), - [anon_sym_switch] = ACTIONS(4969), - [anon_sym_when] = ACTIONS(4969), - [anon_sym_DOT_DOT] = ACTIONS(4969), - [anon_sym_and] = ACTIONS(4969), - [anon_sym_or] = ACTIONS(4969), - [anon_sym_AMP_AMP] = ACTIONS(4969), - [anon_sym_PIPE_PIPE] = ACTIONS(4969), - [anon_sym_QMARK_QMARK] = ACTIONS(4969), - [anon_sym_on] = ACTIONS(4969), - [anon_sym_equals] = ACTIONS(4969), - [anon_sym_by] = ACTIONS(4969), - [anon_sym_as] = ACTIONS(4969), - [anon_sym_is] = ACTIONS(4969), - [anon_sym_DASH_GT] = ACTIONS(4969), - [anon_sym_with] = ACTIONS(4969), - [aux_sym_preproc_if_token3] = ACTIONS(4969), - [aux_sym_preproc_else_token1] = ACTIONS(4969), - [aux_sym_preproc_elif_token1] = ACTIONS(4969), + [sym__identifier_token] = ACTIONS(5514), + [anon_sym_extern] = ACTIONS(5514), + [anon_sym_alias] = ACTIONS(5514), + [anon_sym_global] = ACTIONS(5514), + [anon_sym_unsafe] = ACTIONS(5514), + [anon_sym_static] = ACTIONS(5514), + [anon_sym_LBRACK] = ACTIONS(5516), + [anon_sym_RBRACE] = ACTIONS(5516), + [anon_sym_abstract] = ACTIONS(5514), + [anon_sym_async] = ACTIONS(5514), + [anon_sym_const] = ACTIONS(5514), + [anon_sym_file] = ACTIONS(5514), + [anon_sym_fixed] = ACTIONS(5514), + [anon_sym_internal] = ACTIONS(5514), + [anon_sym_new] = ACTIONS(5514), + [anon_sym_override] = ACTIONS(5514), + [anon_sym_partial] = ACTIONS(5514), + [anon_sym_private] = ACTIONS(5514), + [anon_sym_protected] = ACTIONS(5514), + [anon_sym_public] = ACTIONS(5514), + [anon_sym_readonly] = ACTIONS(5514), + [anon_sym_required] = ACTIONS(5514), + [anon_sym_sealed] = ACTIONS(5514), + [anon_sym_virtual] = ACTIONS(5514), + [anon_sym_volatile] = ACTIONS(5514), + [anon_sym_where] = ACTIONS(5514), + [anon_sym_notnull] = ACTIONS(5514), + [anon_sym_unmanaged] = ACTIONS(5514), + [anon_sym_get] = ACTIONS(5514), + [anon_sym_set] = ACTIONS(5514), + [anon_sym_add] = ACTIONS(5514), + [anon_sym_remove] = ACTIONS(5514), + [anon_sym_init] = ACTIONS(5514), + [anon_sym_scoped] = ACTIONS(5514), + [anon_sym_var] = ACTIONS(5514), + [anon_sym_yield] = ACTIONS(5514), + [anon_sym_when] = ACTIONS(5514), + [anon_sym_from] = ACTIONS(5514), + [anon_sym_into] = ACTIONS(5514), + [anon_sym_join] = ACTIONS(5514), + [anon_sym_on] = ACTIONS(5514), + [anon_sym_equals] = ACTIONS(5514), + [anon_sym_let] = ACTIONS(5514), + [anon_sym_orderby] = ACTIONS(5514), + [anon_sym_ascending] = ACTIONS(5514), + [anon_sym_descending] = ACTIONS(5514), + [anon_sym_group] = ACTIONS(5514), + [anon_sym_by] = ACTIONS(5514), + [anon_sym_select] = ACTIONS(5514), + [aux_sym_preproc_if_token1] = ACTIONS(5516), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -502920,56 +502391,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(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(5318), + [anon_sym_LBRACK] = ACTIONS(5318), + [anon_sym_COLON] = ACTIONS(5318), + [anon_sym_COMMA] = ACTIONS(5318), + [anon_sym_RBRACK] = ACTIONS(5318), + [anon_sym_LPAREN] = ACTIONS(5318), + [anon_sym_RPAREN] = ACTIONS(5318), + [anon_sym_RBRACE] = ACTIONS(5318), + [anon_sym_LT] = ACTIONS(5320), + [anon_sym_GT] = ACTIONS(5320), + [anon_sym_in] = ACTIONS(5318), + [anon_sym_QMARK] = ACTIONS(5320), + [anon_sym_BANG] = ACTIONS(5320), + [anon_sym_PLUS_PLUS] = ACTIONS(5318), + [anon_sym_DASH_DASH] = ACTIONS(5318), + [anon_sym_PLUS] = ACTIONS(5320), + [anon_sym_DASH] = ACTIONS(5320), + [anon_sym_STAR] = ACTIONS(5318), + [anon_sym_SLASH] = ACTIONS(5320), + [anon_sym_PERCENT] = ACTIONS(5318), + [anon_sym_CARET] = ACTIONS(5318), + [anon_sym_PIPE] = ACTIONS(5320), + [anon_sym_AMP] = ACTIONS(5320), + [anon_sym_LT_LT] = ACTIONS(5318), + [anon_sym_GT_GT] = ACTIONS(5320), + [anon_sym_GT_GT_GT] = ACTIONS(5318), + [anon_sym_EQ_EQ] = ACTIONS(5318), + [anon_sym_BANG_EQ] = ACTIONS(5318), + [anon_sym_GT_EQ] = ACTIONS(5318), + [anon_sym_LT_EQ] = ACTIONS(5318), + [anon_sym_DOT] = ACTIONS(5320), + [anon_sym_EQ_GT] = ACTIONS(5318), + [anon_sym_switch] = ACTIONS(5318), + [anon_sym_when] = ACTIONS(5318), + [anon_sym_DOT_DOT] = ACTIONS(5318), + [anon_sym_and] = ACTIONS(5318), + [anon_sym_or] = ACTIONS(5318), + [anon_sym_AMP_AMP] = ACTIONS(5318), + [anon_sym_PIPE_PIPE] = ACTIONS(5318), + [anon_sym_QMARK_QMARK] = ACTIONS(5318), + [anon_sym_on] = ACTIONS(5318), + [anon_sym_equals] = ACTIONS(5318), + [anon_sym_by] = ACTIONS(5318), + [anon_sym_as] = ACTIONS(5318), + [anon_sym_is] = ACTIONS(5318), + [anon_sym_DASH_GT] = ACTIONS(5318), + [anon_sym_with] = ACTIONS(5318), + [aux_sym_preproc_if_token3] = ACTIONS(5318), + [aux_sym_preproc_else_token1] = ACTIONS(5318), + [aux_sym_preproc_elif_token1] = ACTIONS(5318), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -502991,56 +502462,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), - [sym__identifier_token] = ACTIONS(3141), - [anon_sym_extern] = ACTIONS(3141), - [anon_sym_alias] = ACTIONS(3141), - [anon_sym_global] = ACTIONS(3141), - [anon_sym_unsafe] = ACTIONS(3141), - [anon_sym_static] = ACTIONS(3141), - [anon_sym_LBRACK] = ACTIONS(3143), - [anon_sym_RBRACE] = ACTIONS(3143), - [anon_sym_abstract] = ACTIONS(3141), - [anon_sym_async] = ACTIONS(3141), - [anon_sym_const] = ACTIONS(3141), - [anon_sym_file] = ACTIONS(3141), - [anon_sym_fixed] = ACTIONS(3141), - [anon_sym_internal] = ACTIONS(3141), - [anon_sym_new] = ACTIONS(3141), - [anon_sym_override] = ACTIONS(3141), - [anon_sym_partial] = ACTIONS(3141), - [anon_sym_private] = ACTIONS(3141), - [anon_sym_protected] = ACTIONS(3141), - [anon_sym_public] = ACTIONS(3141), - [anon_sym_readonly] = ACTIONS(3141), - [anon_sym_required] = ACTIONS(3141), - [anon_sym_sealed] = ACTIONS(3141), - [anon_sym_virtual] = ACTIONS(3141), - [anon_sym_volatile] = ACTIONS(3141), - [anon_sym_where] = ACTIONS(3141), - [anon_sym_notnull] = ACTIONS(3141), - [anon_sym_unmanaged] = ACTIONS(3141), - [anon_sym_get] = ACTIONS(3141), - [anon_sym_set] = ACTIONS(3141), - [anon_sym_add] = ACTIONS(3141), - [anon_sym_remove] = ACTIONS(3141), - [anon_sym_init] = ACTIONS(3141), - [anon_sym_scoped] = ACTIONS(3141), - [anon_sym_var] = ACTIONS(3141), - [anon_sym_yield] = ACTIONS(3141), - [anon_sym_when] = ACTIONS(3141), - [anon_sym_from] = ACTIONS(3141), - [anon_sym_into] = ACTIONS(3141), - [anon_sym_join] = ACTIONS(3141), - [anon_sym_on] = ACTIONS(3141), - [anon_sym_equals] = ACTIONS(3141), - [anon_sym_let] = ACTIONS(3141), - [anon_sym_orderby] = ACTIONS(3141), - [anon_sym_ascending] = ACTIONS(3141), - [anon_sym_descending] = ACTIONS(3141), - [anon_sym_group] = ACTIONS(3141), - [anon_sym_by] = ACTIONS(3141), - [anon_sym_select] = ACTIONS(3141), - [aux_sym_preproc_if_token1] = ACTIONS(3143), + [anon_sym_SEMI] = ACTIONS(5358), + [anon_sym_LBRACK] = ACTIONS(5358), + [anon_sym_COLON] = ACTIONS(5358), + [anon_sym_COMMA] = ACTIONS(5358), + [anon_sym_RBRACK] = ACTIONS(5358), + [anon_sym_LPAREN] = ACTIONS(5358), + [anon_sym_RPAREN] = ACTIONS(5358), + [anon_sym_RBRACE] = ACTIONS(5358), + [anon_sym_LT] = ACTIONS(5360), + [anon_sym_GT] = ACTIONS(5360), + [anon_sym_in] = ACTIONS(5358), + [anon_sym_QMARK] = ACTIONS(5360), + [anon_sym_BANG] = ACTIONS(5360), + [anon_sym_PLUS_PLUS] = ACTIONS(5358), + [anon_sym_DASH_DASH] = ACTIONS(5358), + [anon_sym_PLUS] = ACTIONS(5360), + [anon_sym_DASH] = ACTIONS(5360), + [anon_sym_STAR] = ACTIONS(5358), + [anon_sym_SLASH] = ACTIONS(5360), + [anon_sym_PERCENT] = ACTIONS(5358), + [anon_sym_CARET] = ACTIONS(5358), + [anon_sym_PIPE] = ACTIONS(5360), + [anon_sym_AMP] = ACTIONS(5360), + [anon_sym_LT_LT] = ACTIONS(5358), + [anon_sym_GT_GT] = ACTIONS(5360), + [anon_sym_GT_GT_GT] = ACTIONS(5358), + [anon_sym_EQ_EQ] = ACTIONS(5358), + [anon_sym_BANG_EQ] = ACTIONS(5358), + [anon_sym_GT_EQ] = ACTIONS(5358), + [anon_sym_LT_EQ] = ACTIONS(5358), + [anon_sym_DOT] = ACTIONS(5360), + [anon_sym_EQ_GT] = ACTIONS(5358), + [anon_sym_switch] = ACTIONS(5358), + [anon_sym_when] = ACTIONS(5358), + [anon_sym_DOT_DOT] = ACTIONS(5358), + [anon_sym_and] = ACTIONS(5358), + [anon_sym_or] = ACTIONS(5358), + [anon_sym_AMP_AMP] = ACTIONS(5358), + [anon_sym_PIPE_PIPE] = ACTIONS(5358), + [anon_sym_QMARK_QMARK] = ACTIONS(5358), + [anon_sym_on] = ACTIONS(5358), + [anon_sym_equals] = ACTIONS(5358), + [anon_sym_by] = ACTIONS(5358), + [anon_sym_as] = ACTIONS(5358), + [anon_sym_is] = ACTIONS(5358), + [anon_sym_DASH_GT] = ACTIONS(5358), + [anon_sym_with] = ACTIONS(5358), + [aux_sym_preproc_if_token3] = ACTIONS(5358), + [aux_sym_preproc_else_token1] = ACTIONS(5358), + [aux_sym_preproc_elif_token1] = ACTIONS(5358), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -503062,56 +502533,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(5138), - [anon_sym_LBRACK] = ACTIONS(5138), - [anon_sym_COLON] = ACTIONS(5138), - [anon_sym_COMMA] = ACTIONS(5138), - [anon_sym_RBRACK] = ACTIONS(5138), - [anon_sym_LPAREN] = ACTIONS(5138), - [anon_sym_RPAREN] = ACTIONS(5138), - [anon_sym_RBRACE] = ACTIONS(5138), - [anon_sym_LT] = ACTIONS(5140), - [anon_sym_GT] = ACTIONS(5140), - [anon_sym_in] = ACTIONS(5138), - [anon_sym_QMARK] = ACTIONS(5140), - [anon_sym_BANG] = ACTIONS(5140), - [anon_sym_PLUS_PLUS] = ACTIONS(5138), - [anon_sym_DASH_DASH] = ACTIONS(5138), - [anon_sym_PLUS] = ACTIONS(5140), - [anon_sym_DASH] = ACTIONS(5140), - [anon_sym_STAR] = ACTIONS(5138), - [anon_sym_SLASH] = ACTIONS(5140), - [anon_sym_PERCENT] = ACTIONS(5138), - [anon_sym_CARET] = ACTIONS(5138), - [anon_sym_PIPE] = ACTIONS(5140), - [anon_sym_AMP] = ACTIONS(5140), - [anon_sym_LT_LT] = ACTIONS(5138), - [anon_sym_GT_GT] = ACTIONS(5140), - [anon_sym_GT_GT_GT] = ACTIONS(5138), - [anon_sym_EQ_EQ] = ACTIONS(5138), - [anon_sym_BANG_EQ] = ACTIONS(5138), - [anon_sym_GT_EQ] = ACTIONS(5138), - [anon_sym_LT_EQ] = ACTIONS(5138), - [anon_sym_DOT] = ACTIONS(5140), - [anon_sym_EQ_GT] = ACTIONS(5138), - [anon_sym_switch] = ACTIONS(5138), - [anon_sym_when] = ACTIONS(5138), - [anon_sym_DOT_DOT] = ACTIONS(5138), - [anon_sym_and] = ACTIONS(5138), - [anon_sym_or] = ACTIONS(5138), - [anon_sym_AMP_AMP] = ACTIONS(5138), - [anon_sym_PIPE_PIPE] = ACTIONS(5138), - [anon_sym_QMARK_QMARK] = ACTIONS(5138), - [anon_sym_on] = ACTIONS(5138), - [anon_sym_equals] = ACTIONS(5138), - [anon_sym_by] = ACTIONS(5138), - [anon_sym_as] = ACTIONS(5138), - [anon_sym_is] = ACTIONS(5138), - [anon_sym_DASH_GT] = ACTIONS(5138), - [anon_sym_with] = ACTIONS(5138), - [aux_sym_preproc_if_token3] = ACTIONS(5138), - [aux_sym_preproc_else_token1] = ACTIONS(5138), - [aux_sym_preproc_elif_token1] = ACTIONS(5138), + [anon_sym_EQ] = ACTIONS(3696), + [anon_sym_LBRACK] = ACTIONS(3711), + [anon_sym_COLON] = ACTIONS(4243), + [anon_sym_LPAREN] = ACTIONS(3711), + [anon_sym_LT] = ACTIONS(3696), + [anon_sym_GT] = ACTIONS(3696), + [anon_sym_QMARK] = ACTIONS(3696), + [anon_sym_BANG] = ACTIONS(3696), + [anon_sym_PLUS_PLUS] = ACTIONS(3711), + [anon_sym_DASH_DASH] = ACTIONS(3711), + [anon_sym_PLUS] = ACTIONS(3696), + [anon_sym_DASH] = ACTIONS(3696), + [anon_sym_STAR] = ACTIONS(3696), + [anon_sym_SLASH] = ACTIONS(3696), + [anon_sym_PERCENT] = ACTIONS(3696), + [anon_sym_CARET] = ACTIONS(3696), + [anon_sym_PIPE] = ACTIONS(3696), + [anon_sym_AMP] = ACTIONS(3696), + [anon_sym_LT_LT] = ACTIONS(3696), + [anon_sym_GT_GT] = ACTIONS(3696), + [anon_sym_GT_GT_GT] = ACTIONS(3696), + [anon_sym_EQ_EQ] = ACTIONS(3711), + [anon_sym_BANG_EQ] = ACTIONS(3711), + [anon_sym_GT_EQ] = ACTIONS(3711), + [anon_sym_LT_EQ] = ACTIONS(3711), + [anon_sym_DOT] = ACTIONS(3696), + [anon_sym_switch] = ACTIONS(3711), + [anon_sym_when] = ACTIONS(4241), + [anon_sym_DOT_DOT] = ACTIONS(3711), + [anon_sym_and] = ACTIONS(4241), + [anon_sym_or] = ACTIONS(4241), + [anon_sym_PLUS_EQ] = ACTIONS(3711), + [anon_sym_DASH_EQ] = ACTIONS(3711), + [anon_sym_STAR_EQ] = ACTIONS(3711), + [anon_sym_SLASH_EQ] = ACTIONS(3711), + [anon_sym_PERCENT_EQ] = ACTIONS(3711), + [anon_sym_AMP_EQ] = ACTIONS(3711), + [anon_sym_CARET_EQ] = ACTIONS(3711), + [anon_sym_PIPE_EQ] = ACTIONS(3711), + [anon_sym_LT_LT_EQ] = ACTIONS(3711), + [anon_sym_GT_GT_EQ] = ACTIONS(3711), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3711), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3711), + [anon_sym_AMP_AMP] = ACTIONS(3711), + [anon_sym_PIPE_PIPE] = ACTIONS(3711), + [anon_sym_QMARK_QMARK] = ACTIONS(3696), + [anon_sym_as] = ACTIONS(3711), + [anon_sym_is] = ACTIONS(3711), + [anon_sym_DASH_GT] = ACTIONS(3711), + [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), @@ -503133,56 +502604,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(5423), - [anon_sym_LBRACK] = ACTIONS(5423), - [anon_sym_COLON] = ACTIONS(5423), - [anon_sym_COMMA] = ACTIONS(5423), - [anon_sym_RBRACK] = ACTIONS(5423), - [anon_sym_LPAREN] = ACTIONS(5423), - [anon_sym_RPAREN] = ACTIONS(5423), - [anon_sym_RBRACE] = ACTIONS(5423), - [anon_sym_LT] = ACTIONS(5425), - [anon_sym_GT] = ACTIONS(5425), - [anon_sym_in] = ACTIONS(5423), - [anon_sym_QMARK] = ACTIONS(5425), - [anon_sym_BANG] = ACTIONS(5425), - [anon_sym_PLUS_PLUS] = ACTIONS(5423), - [anon_sym_DASH_DASH] = ACTIONS(5423), - [anon_sym_PLUS] = ACTIONS(5425), - [anon_sym_DASH] = ACTIONS(5425), - [anon_sym_STAR] = ACTIONS(5423), - [anon_sym_SLASH] = ACTIONS(5425), - [anon_sym_PERCENT] = ACTIONS(5423), - [anon_sym_CARET] = ACTIONS(5423), - [anon_sym_PIPE] = ACTIONS(5425), - [anon_sym_AMP] = ACTIONS(5425), - [anon_sym_LT_LT] = ACTIONS(5423), - [anon_sym_GT_GT] = ACTIONS(5425), - [anon_sym_GT_GT_GT] = ACTIONS(5423), - [anon_sym_EQ_EQ] = ACTIONS(5423), - [anon_sym_BANG_EQ] = ACTIONS(5423), - [anon_sym_GT_EQ] = ACTIONS(5423), - [anon_sym_LT_EQ] = ACTIONS(5423), - [anon_sym_DOT] = ACTIONS(5425), - [anon_sym_EQ_GT] = ACTIONS(5423), - [anon_sym_switch] = ACTIONS(5423), - [anon_sym_when] = ACTIONS(5423), - [anon_sym_DOT_DOT] = ACTIONS(5423), - [anon_sym_and] = ACTIONS(5423), - [anon_sym_or] = ACTIONS(5423), - [anon_sym_AMP_AMP] = ACTIONS(5423), - [anon_sym_PIPE_PIPE] = ACTIONS(5423), - [anon_sym_QMARK_QMARK] = ACTIONS(5423), - [anon_sym_on] = ACTIONS(5423), - [anon_sym_equals] = ACTIONS(5423), - [anon_sym_by] = ACTIONS(5423), - [anon_sym_as] = ACTIONS(5423), - [anon_sym_is] = ACTIONS(5423), - [anon_sym_DASH_GT] = ACTIONS(5423), - [anon_sym_with] = ACTIONS(5423), - [aux_sym_preproc_if_token3] = ACTIONS(5423), - [aux_sym_preproc_else_token1] = ACTIONS(5423), - [aux_sym_preproc_elif_token1] = ACTIONS(5423), + [anon_sym_SEMI] = ACTIONS(5322), + [anon_sym_LBRACK] = ACTIONS(5322), + [anon_sym_COLON] = ACTIONS(5322), + [anon_sym_COMMA] = ACTIONS(5322), + [anon_sym_RBRACK] = ACTIONS(5322), + [anon_sym_LPAREN] = ACTIONS(5322), + [anon_sym_RPAREN] = ACTIONS(5322), + [anon_sym_RBRACE] = ACTIONS(5322), + [anon_sym_LT] = ACTIONS(5324), + [anon_sym_GT] = ACTIONS(5324), + [anon_sym_in] = ACTIONS(5322), + [anon_sym_QMARK] = ACTIONS(5324), + [anon_sym_BANG] = ACTIONS(5324), + [anon_sym_PLUS_PLUS] = ACTIONS(5322), + [anon_sym_DASH_DASH] = ACTIONS(5322), + [anon_sym_PLUS] = ACTIONS(5324), + [anon_sym_DASH] = ACTIONS(5324), + [anon_sym_STAR] = ACTIONS(5322), + [anon_sym_SLASH] = ACTIONS(5324), + [anon_sym_PERCENT] = ACTIONS(5322), + [anon_sym_CARET] = ACTIONS(5322), + [anon_sym_PIPE] = ACTIONS(5324), + [anon_sym_AMP] = ACTIONS(5324), + [anon_sym_LT_LT] = ACTIONS(5322), + [anon_sym_GT_GT] = ACTIONS(5324), + [anon_sym_GT_GT_GT] = ACTIONS(5322), + [anon_sym_EQ_EQ] = ACTIONS(5322), + [anon_sym_BANG_EQ] = ACTIONS(5322), + [anon_sym_GT_EQ] = ACTIONS(5322), + [anon_sym_LT_EQ] = ACTIONS(5322), + [anon_sym_DOT] = ACTIONS(5324), + [anon_sym_EQ_GT] = ACTIONS(5322), + [anon_sym_switch] = ACTIONS(5322), + [anon_sym_when] = ACTIONS(5322), + [anon_sym_DOT_DOT] = ACTIONS(5322), + [anon_sym_and] = ACTIONS(5322), + [anon_sym_or] = ACTIONS(5322), + [anon_sym_AMP_AMP] = ACTIONS(5322), + [anon_sym_PIPE_PIPE] = ACTIONS(5322), + [anon_sym_QMARK_QMARK] = ACTIONS(5322), + [anon_sym_on] = ACTIONS(5322), + [anon_sym_equals] = ACTIONS(5322), + [anon_sym_by] = ACTIONS(5322), + [anon_sym_as] = ACTIONS(5322), + [anon_sym_is] = ACTIONS(5322), + [anon_sym_DASH_GT] = ACTIONS(5322), + [anon_sym_with] = ACTIONS(5322), + [aux_sym_preproc_if_token3] = ACTIONS(5322), + [aux_sym_preproc_else_token1] = ACTIONS(5322), + [aux_sym_preproc_elif_token1] = ACTIONS(5322), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -503204,56 +502675,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(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(5072), + [anon_sym_LBRACK] = ACTIONS(5072), + [anon_sym_COLON] = ACTIONS(5072), + [anon_sym_COMMA] = ACTIONS(5072), + [anon_sym_RBRACK] = ACTIONS(5072), + [anon_sym_LPAREN] = ACTIONS(5072), + [anon_sym_RPAREN] = ACTIONS(5072), + [anon_sym_RBRACE] = ACTIONS(5072), + [anon_sym_LT] = ACTIONS(5074), + [anon_sym_GT] = ACTIONS(5074), + [anon_sym_in] = ACTIONS(5072), + [anon_sym_QMARK] = ACTIONS(5074), + [anon_sym_BANG] = ACTIONS(5074), + [anon_sym_PLUS_PLUS] = ACTIONS(5072), + [anon_sym_DASH_DASH] = ACTIONS(5072), + [anon_sym_PLUS] = ACTIONS(5074), + [anon_sym_DASH] = ACTIONS(5074), + [anon_sym_STAR] = ACTIONS(5072), + [anon_sym_SLASH] = ACTIONS(5074), + [anon_sym_PERCENT] = ACTIONS(5072), + [anon_sym_CARET] = ACTIONS(5072), + [anon_sym_PIPE] = ACTIONS(5074), + [anon_sym_AMP] = ACTIONS(5074), + [anon_sym_LT_LT] = ACTIONS(5072), + [anon_sym_GT_GT] = ACTIONS(5074), + [anon_sym_GT_GT_GT] = ACTIONS(5072), + [anon_sym_EQ_EQ] = ACTIONS(5072), + [anon_sym_BANG_EQ] = ACTIONS(5072), + [anon_sym_GT_EQ] = ACTIONS(5072), + [anon_sym_LT_EQ] = ACTIONS(5072), + [anon_sym_DOT] = ACTIONS(5074), + [anon_sym_EQ_GT] = ACTIONS(5072), + [anon_sym_switch] = ACTIONS(5072), + [anon_sym_when] = ACTIONS(5072), + [anon_sym_DOT_DOT] = ACTIONS(5072), + [anon_sym_and] = ACTIONS(5072), + [anon_sym_or] = ACTIONS(5072), + [anon_sym_AMP_AMP] = ACTIONS(5072), + [anon_sym_PIPE_PIPE] = ACTIONS(5072), + [anon_sym_QMARK_QMARK] = ACTIONS(5072), + [anon_sym_on] = ACTIONS(5072), + [anon_sym_equals] = ACTIONS(5072), + [anon_sym_by] = ACTIONS(5072), + [anon_sym_as] = ACTIONS(5072), + [anon_sym_is] = ACTIONS(5072), + [anon_sym_DASH_GT] = ACTIONS(5072), + [anon_sym_with] = ACTIONS(5072), + [aux_sym_preproc_if_token3] = ACTIONS(5072), + [aux_sym_preproc_else_token1] = ACTIONS(5072), + [aux_sym_preproc_elif_token1] = ACTIONS(5072), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -503275,56 +502746,56 @@ 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(5090), - [anon_sym_LBRACK] = ACTIONS(5090), - [anon_sym_COLON] = ACTIONS(5090), - [anon_sym_COMMA] = ACTIONS(5090), - [anon_sym_RBRACK] = ACTIONS(5090), - [anon_sym_LPAREN] = ACTIONS(5090), - [anon_sym_RPAREN] = ACTIONS(5090), - [anon_sym_RBRACE] = ACTIONS(5090), - [anon_sym_LT] = ACTIONS(5092), - [anon_sym_GT] = ACTIONS(5092), - [anon_sym_in] = ACTIONS(5090), - [anon_sym_QMARK] = ACTIONS(5092), - [anon_sym_BANG] = ACTIONS(5092), - [anon_sym_PLUS_PLUS] = ACTIONS(5090), - [anon_sym_DASH_DASH] = ACTIONS(5090), - [anon_sym_PLUS] = ACTIONS(5092), - [anon_sym_DASH] = ACTIONS(5092), - [anon_sym_STAR] = ACTIONS(5090), - [anon_sym_SLASH] = ACTIONS(5092), - [anon_sym_PERCENT] = ACTIONS(5090), - [anon_sym_CARET] = ACTIONS(5090), - [anon_sym_PIPE] = ACTIONS(5092), - [anon_sym_AMP] = ACTIONS(5092), - [anon_sym_LT_LT] = ACTIONS(5090), - [anon_sym_GT_GT] = ACTIONS(5092), - [anon_sym_GT_GT_GT] = ACTIONS(5090), - [anon_sym_EQ_EQ] = ACTIONS(5090), - [anon_sym_BANG_EQ] = ACTIONS(5090), - [anon_sym_GT_EQ] = ACTIONS(5090), - [anon_sym_LT_EQ] = ACTIONS(5090), - [anon_sym_DOT] = ACTIONS(5092), - [anon_sym_EQ_GT] = ACTIONS(5090), - [anon_sym_switch] = ACTIONS(5090), - [anon_sym_when] = ACTIONS(5090), - [anon_sym_DOT_DOT] = ACTIONS(5090), - [anon_sym_and] = ACTIONS(5090), - [anon_sym_or] = ACTIONS(5090), - [anon_sym_AMP_AMP] = ACTIONS(5090), - [anon_sym_PIPE_PIPE] = ACTIONS(5090), - [anon_sym_QMARK_QMARK] = ACTIONS(5090), - [anon_sym_on] = ACTIONS(5090), - [anon_sym_equals] = ACTIONS(5090), - [anon_sym_by] = ACTIONS(5090), - [anon_sym_as] = ACTIONS(5090), - [anon_sym_is] = ACTIONS(5090), - [anon_sym_DASH_GT] = ACTIONS(5090), - [anon_sym_with] = ACTIONS(5090), - [aux_sym_preproc_if_token3] = ACTIONS(5090), - [aux_sym_preproc_else_token1] = ACTIONS(5090), - [aux_sym_preproc_elif_token1] = ACTIONS(5090), + [anon_sym_SEMI] = ACTIONS(5322), + [anon_sym_LBRACK] = ACTIONS(5322), + [anon_sym_COLON] = ACTIONS(5322), + [anon_sym_COMMA] = ACTIONS(5322), + [anon_sym_RBRACK] = ACTIONS(5322), + [anon_sym_LPAREN] = ACTIONS(5322), + [anon_sym_RPAREN] = ACTIONS(5322), + [anon_sym_RBRACE] = ACTIONS(5322), + [anon_sym_LT] = ACTIONS(5324), + [anon_sym_GT] = ACTIONS(5324), + [anon_sym_in] = ACTIONS(5322), + [anon_sym_QMARK] = ACTIONS(5324), + [anon_sym_BANG] = ACTIONS(5324), + [anon_sym_PLUS_PLUS] = ACTIONS(5322), + [anon_sym_DASH_DASH] = ACTIONS(5322), + [anon_sym_PLUS] = ACTIONS(5324), + [anon_sym_DASH] = ACTIONS(5324), + [anon_sym_STAR] = ACTIONS(5322), + [anon_sym_SLASH] = ACTIONS(5324), + [anon_sym_PERCENT] = ACTIONS(5322), + [anon_sym_CARET] = ACTIONS(5322), + [anon_sym_PIPE] = ACTIONS(5324), + [anon_sym_AMP] = ACTIONS(5324), + [anon_sym_LT_LT] = ACTIONS(5322), + [anon_sym_GT_GT] = ACTIONS(5324), + [anon_sym_GT_GT_GT] = ACTIONS(5322), + [anon_sym_EQ_EQ] = ACTIONS(5322), + [anon_sym_BANG_EQ] = ACTIONS(5322), + [anon_sym_GT_EQ] = ACTIONS(5322), + [anon_sym_LT_EQ] = ACTIONS(5322), + [anon_sym_DOT] = ACTIONS(5324), + [anon_sym_EQ_GT] = ACTIONS(5322), + [anon_sym_switch] = ACTIONS(5322), + [anon_sym_when] = ACTIONS(5322), + [anon_sym_DOT_DOT] = ACTIONS(5322), + [anon_sym_and] = ACTIONS(5322), + [anon_sym_or] = ACTIONS(5322), + [anon_sym_AMP_AMP] = ACTIONS(5322), + [anon_sym_PIPE_PIPE] = ACTIONS(5322), + [anon_sym_QMARK_QMARK] = ACTIONS(5322), + [anon_sym_on] = ACTIONS(5322), + [anon_sym_equals] = ACTIONS(5322), + [anon_sym_by] = ACTIONS(5322), + [anon_sym_as] = ACTIONS(5322), + [anon_sym_is] = ACTIONS(5322), + [anon_sym_DASH_GT] = ACTIONS(5322), + [anon_sym_with] = ACTIONS(5322), + [aux_sym_preproc_if_token3] = ACTIONS(5322), + [aux_sym_preproc_else_token1] = ACTIONS(5322), + [aux_sym_preproc_elif_token1] = ACTIONS(5322), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -503346,56 +502817,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3450), [sym_preproc_define] = STATE(3450), [sym_preproc_undef] = STATE(3450), - [anon_sym_SEMI] = ACTIONS(5050), - [anon_sym_LBRACK] = ACTIONS(5050), - [anon_sym_COLON] = ACTIONS(5050), - [anon_sym_COMMA] = ACTIONS(5050), - [anon_sym_RBRACK] = ACTIONS(5050), - [anon_sym_LPAREN] = ACTIONS(5050), - [anon_sym_RPAREN] = ACTIONS(5050), - [anon_sym_RBRACE] = ACTIONS(5050), - [anon_sym_LT] = ACTIONS(5052), - [anon_sym_GT] = ACTIONS(5052), - [anon_sym_in] = ACTIONS(5050), - [anon_sym_QMARK] = ACTIONS(5052), - [anon_sym_BANG] = ACTIONS(5052), - [anon_sym_PLUS_PLUS] = ACTIONS(5050), - [anon_sym_DASH_DASH] = ACTIONS(5050), - [anon_sym_PLUS] = ACTIONS(5052), - [anon_sym_DASH] = ACTIONS(5052), - [anon_sym_STAR] = ACTIONS(5050), - [anon_sym_SLASH] = ACTIONS(5052), - [anon_sym_PERCENT] = ACTIONS(5050), - [anon_sym_CARET] = ACTIONS(5050), - [anon_sym_PIPE] = ACTIONS(5052), - [anon_sym_AMP] = ACTIONS(5052), - [anon_sym_LT_LT] = ACTIONS(5050), - [anon_sym_GT_GT] = ACTIONS(5052), - [anon_sym_GT_GT_GT] = ACTIONS(5050), - [anon_sym_EQ_EQ] = ACTIONS(5050), - [anon_sym_BANG_EQ] = ACTIONS(5050), - [anon_sym_GT_EQ] = ACTIONS(5050), - [anon_sym_LT_EQ] = ACTIONS(5050), - [anon_sym_DOT] = ACTIONS(5052), - [anon_sym_EQ_GT] = ACTIONS(5050), - [anon_sym_switch] = ACTIONS(5050), - [anon_sym_when] = ACTIONS(5050), - [anon_sym_DOT_DOT] = ACTIONS(5050), - [anon_sym_and] = ACTIONS(5050), - [anon_sym_or] = ACTIONS(5050), - [anon_sym_AMP_AMP] = ACTIONS(5050), - [anon_sym_PIPE_PIPE] = ACTIONS(5050), - [anon_sym_QMARK_QMARK] = ACTIONS(5050), - [anon_sym_on] = ACTIONS(5050), - [anon_sym_equals] = ACTIONS(5050), - [anon_sym_by] = ACTIONS(5050), - [anon_sym_as] = ACTIONS(5050), - [anon_sym_is] = ACTIONS(5050), - [anon_sym_DASH_GT] = ACTIONS(5050), - [anon_sym_with] = ACTIONS(5050), - [aux_sym_preproc_if_token3] = ACTIONS(5050), - [aux_sym_preproc_else_token1] = ACTIONS(5050), - [aux_sym_preproc_elif_token1] = ACTIONS(5050), + [anon_sym_SEMI] = ACTIONS(5350), + [anon_sym_LBRACK] = ACTIONS(5350), + [anon_sym_COLON] = ACTIONS(5350), + [anon_sym_COMMA] = ACTIONS(5350), + [anon_sym_RBRACK] = ACTIONS(5350), + [anon_sym_LPAREN] = ACTIONS(5350), + [anon_sym_RPAREN] = ACTIONS(5350), + [anon_sym_RBRACE] = ACTIONS(5350), + [anon_sym_LT] = ACTIONS(5352), + [anon_sym_GT] = ACTIONS(5352), + [anon_sym_in] = ACTIONS(5350), + [anon_sym_QMARK] = ACTIONS(5352), + [anon_sym_BANG] = ACTIONS(5352), + [anon_sym_PLUS_PLUS] = ACTIONS(5350), + [anon_sym_DASH_DASH] = ACTIONS(5350), + [anon_sym_PLUS] = ACTIONS(5352), + [anon_sym_DASH] = ACTIONS(5352), + [anon_sym_STAR] = ACTIONS(5350), + [anon_sym_SLASH] = ACTIONS(5352), + [anon_sym_PERCENT] = ACTIONS(5350), + [anon_sym_CARET] = ACTIONS(5350), + [anon_sym_PIPE] = ACTIONS(5352), + [anon_sym_AMP] = ACTIONS(5352), + [anon_sym_LT_LT] = ACTIONS(5350), + [anon_sym_GT_GT] = ACTIONS(5352), + [anon_sym_GT_GT_GT] = ACTIONS(5350), + [anon_sym_EQ_EQ] = ACTIONS(5350), + [anon_sym_BANG_EQ] = ACTIONS(5350), + [anon_sym_GT_EQ] = ACTIONS(5350), + [anon_sym_LT_EQ] = ACTIONS(5350), + [anon_sym_DOT] = ACTIONS(5352), + [anon_sym_EQ_GT] = ACTIONS(5350), + [anon_sym_switch] = ACTIONS(5350), + [anon_sym_when] = ACTIONS(5350), + [anon_sym_DOT_DOT] = ACTIONS(5350), + [anon_sym_and] = ACTIONS(5350), + [anon_sym_or] = ACTIONS(5350), + [anon_sym_AMP_AMP] = ACTIONS(5350), + [anon_sym_PIPE_PIPE] = ACTIONS(5350), + [anon_sym_QMARK_QMARK] = ACTIONS(5350), + [anon_sym_on] = ACTIONS(5350), + [anon_sym_equals] = ACTIONS(5350), + [anon_sym_by] = ACTIONS(5350), + [anon_sym_as] = ACTIONS(5350), + [anon_sym_is] = ACTIONS(5350), + [anon_sym_DASH_GT] = ACTIONS(5350), + [anon_sym_with] = ACTIONS(5350), + [aux_sym_preproc_if_token3] = ACTIONS(5350), + [aux_sym_preproc_else_token1] = ACTIONS(5350), + [aux_sym_preproc_elif_token1] = ACTIONS(5350), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -503417,56 +502888,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), - [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(5088), + [anon_sym_LBRACK] = ACTIONS(5088), + [anon_sym_COLON] = ACTIONS(5088), + [anon_sym_COMMA] = ACTIONS(5088), + [anon_sym_RBRACK] = ACTIONS(5088), + [anon_sym_LPAREN] = ACTIONS(5088), + [anon_sym_RPAREN] = ACTIONS(5088), + [anon_sym_RBRACE] = ACTIONS(5088), + [anon_sym_LT] = ACTIONS(5090), + [anon_sym_GT] = ACTIONS(5090), + [anon_sym_in] = ACTIONS(5088), + [anon_sym_QMARK] = ACTIONS(5090), + [anon_sym_BANG] = ACTIONS(5090), + [anon_sym_PLUS_PLUS] = ACTIONS(5088), + [anon_sym_DASH_DASH] = ACTIONS(5088), + [anon_sym_PLUS] = ACTIONS(5090), + [anon_sym_DASH] = ACTIONS(5090), + [anon_sym_STAR] = ACTIONS(5088), + [anon_sym_SLASH] = ACTIONS(5090), + [anon_sym_PERCENT] = ACTIONS(5088), + [anon_sym_CARET] = ACTIONS(5088), + [anon_sym_PIPE] = ACTIONS(5090), + [anon_sym_AMP] = ACTIONS(5090), + [anon_sym_LT_LT] = ACTIONS(5088), + [anon_sym_GT_GT] = ACTIONS(5090), + [anon_sym_GT_GT_GT] = ACTIONS(5088), + [anon_sym_EQ_EQ] = ACTIONS(5088), + [anon_sym_BANG_EQ] = ACTIONS(5088), + [anon_sym_GT_EQ] = ACTIONS(5088), + [anon_sym_LT_EQ] = ACTIONS(5088), + [anon_sym_DOT] = ACTIONS(5090), + [anon_sym_EQ_GT] = ACTIONS(5088), + [anon_sym_switch] = ACTIONS(5088), + [anon_sym_when] = ACTIONS(5088), + [anon_sym_DOT_DOT] = ACTIONS(5088), + [anon_sym_and] = ACTIONS(5088), + [anon_sym_or] = ACTIONS(5088), + [anon_sym_AMP_AMP] = ACTIONS(5088), + [anon_sym_PIPE_PIPE] = ACTIONS(5088), + [anon_sym_QMARK_QMARK] = ACTIONS(5088), + [anon_sym_on] = ACTIONS(5088), + [anon_sym_equals] = ACTIONS(5088), + [anon_sym_by] = ACTIONS(5088), + [anon_sym_as] = ACTIONS(5088), + [anon_sym_is] = ACTIONS(5088), + [anon_sym_DASH_GT] = ACTIONS(5088), + [anon_sym_with] = ACTIONS(5088), + [aux_sym_preproc_if_token3] = ACTIONS(5088), + [aux_sym_preproc_else_token1] = ACTIONS(5088), + [aux_sym_preproc_elif_token1] = ACTIONS(5088), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -503479,6 +502950,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3452] = { + [sym__name] = STATE(4369), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(4068), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(4073), + [sym_type] = STATE(6075), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_identifier] = STATE(4081), + [sym__reserved_identifier] = STATE(3654), [sym_preproc_region] = STATE(3452), [sym_preproc_endregion] = STATE(3452), [sym_preproc_line] = STATE(3452), @@ -503488,56 +502977,38 @@ 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(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), + [aux_sym__parameter_type_with_modifiers_repeat1] = STATE(5753), + [sym__identifier_token] = ACTIONS(2965), + [anon_sym_alias] = ACTIONS(2969), + [anon_sym_global] = ACTIONS(2969), + [anon_sym_LPAREN] = ACTIONS(2977), + [anon_sym_ref] = ACTIONS(4677), + [anon_sym_delegate] = ACTIONS(3438), + [anon_sym_file] = ACTIONS(2969), + [anon_sym_readonly] = ACTIONS(1097), + [anon_sym_in] = ACTIONS(1097), + [anon_sym_out] = ACTIONS(1097), + [anon_sym_where] = ACTIONS(2969), + [anon_sym_notnull] = ACTIONS(2969), + [anon_sym_unmanaged] = ACTIONS(2969), + [anon_sym_this] = ACTIONS(1097), + [anon_sym_scoped] = ACTIONS(4687), + [anon_sym_var] = ACTIONS(2995), + [sym_predefined_type] = ACTIONS(2997), + [anon_sym_yield] = ACTIONS(2969), + [anon_sym_when] = ACTIONS(2969), + [anon_sym_from] = ACTIONS(2969), + [anon_sym_into] = ACTIONS(2969), + [anon_sym_join] = ACTIONS(2969), + [anon_sym_on] = ACTIONS(2969), + [anon_sym_equals] = ACTIONS(2969), + [anon_sym_let] = ACTIONS(2969), + [anon_sym_orderby] = ACTIONS(2969), + [anon_sym_ascending] = ACTIONS(2969), + [anon_sym_descending] = ACTIONS(2969), + [anon_sym_group] = ACTIONS(2969), + [anon_sym_by] = ACTIONS(2969), + [anon_sym_select] = ACTIONS(2969), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -503559,56 +503030,56 @@ 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(4018), - [anon_sym_LBRACK] = ACTIONS(4066), - [anon_sym_COLON] = ACTIONS(4018), - [anon_sym_COMMA] = ACTIONS(4018), - [anon_sym_RBRACK] = ACTIONS(4018), - [anon_sym_LPAREN] = ACTIONS(4018), - [anon_sym_RPAREN] = ACTIONS(4018), - [anon_sym_LBRACE] = ACTIONS(4018), - [anon_sym_RBRACE] = ACTIONS(4018), - [anon_sym_LT] = ACTIONS(4016), - [anon_sym_GT] = ACTIONS(4016), - [anon_sym_QMARK] = ACTIONS(5358), - [anon_sym_BANG] = ACTIONS(4016), - [anon_sym_PLUS_PLUS] = ACTIONS(4018), - [anon_sym_DASH_DASH] = ACTIONS(4018), - [anon_sym_PLUS] = ACTIONS(4016), - [anon_sym_DASH] = ACTIONS(4016), - [anon_sym_STAR] = ACTIONS(4072), - [anon_sym_SLASH] = ACTIONS(4016), - [anon_sym_PERCENT] = ACTIONS(4018), - [anon_sym_CARET] = ACTIONS(4018), - [anon_sym_PIPE] = ACTIONS(4016), - [anon_sym_AMP] = ACTIONS(4016), - [anon_sym_LT_LT] = ACTIONS(4018), - [anon_sym_GT_GT] = ACTIONS(4016), - [anon_sym_GT_GT_GT] = ACTIONS(4018), - [anon_sym_EQ_EQ] = ACTIONS(4018), - [anon_sym_BANG_EQ] = ACTIONS(4018), - [anon_sym_GT_EQ] = ACTIONS(4018), - [anon_sym_LT_EQ] = ACTIONS(4018), - [anon_sym_DOT] = ACTIONS(5526), - [anon_sym_EQ_GT] = ACTIONS(4018), - [anon_sym_switch] = ACTIONS(4018), - [anon_sym_when] = ACTIONS(4018), - [anon_sym_DOT_DOT] = ACTIONS(4018), - [anon_sym_and] = ACTIONS(4018), - [anon_sym_or] = ACTIONS(4018), - [anon_sym_AMP_AMP] = ACTIONS(4018), - [anon_sym_PIPE_PIPE] = ACTIONS(4018), - [anon_sym_QMARK_QMARK] = ACTIONS(4018), - [anon_sym_on] = ACTIONS(4018), - [anon_sym_equals] = ACTIONS(4018), - [anon_sym_by] = ACTIONS(4018), - [anon_sym_as] = ACTIONS(4018), - [anon_sym_is] = ACTIONS(4018), - [anon_sym_DASH_GT] = ACTIONS(4018), - [anon_sym_with] = ACTIONS(4018), - [aux_sym_preproc_if_token3] = ACTIONS(4018), - [aux_sym_preproc_else_token1] = ACTIONS(4018), - [aux_sym_preproc_elif_token1] = ACTIONS(4018), + [anon_sym_SEMI] = ACTIONS(4992), + [anon_sym_LBRACK] = ACTIONS(4992), + [anon_sym_COLON] = ACTIONS(4992), + [anon_sym_COMMA] = ACTIONS(4992), + [anon_sym_RBRACK] = ACTIONS(4992), + [anon_sym_LPAREN] = ACTIONS(4992), + [anon_sym_RPAREN] = ACTIONS(4992), + [anon_sym_RBRACE] = ACTIONS(4992), + [anon_sym_LT] = ACTIONS(4994), + [anon_sym_GT] = ACTIONS(4994), + [anon_sym_in] = ACTIONS(4992), + [anon_sym_QMARK] = ACTIONS(4994), + [anon_sym_BANG] = ACTIONS(4994), + [anon_sym_PLUS_PLUS] = ACTIONS(4992), + [anon_sym_DASH_DASH] = ACTIONS(4992), + [anon_sym_PLUS] = ACTIONS(4994), + [anon_sym_DASH] = ACTIONS(4994), + [anon_sym_STAR] = ACTIONS(4992), + [anon_sym_SLASH] = ACTIONS(4994), + [anon_sym_PERCENT] = ACTIONS(4992), + [anon_sym_CARET] = ACTIONS(4992), + [anon_sym_PIPE] = ACTIONS(4994), + [anon_sym_AMP] = ACTIONS(4994), + [anon_sym_LT_LT] = ACTIONS(4992), + [anon_sym_GT_GT] = ACTIONS(4994), + [anon_sym_GT_GT_GT] = ACTIONS(4992), + [anon_sym_EQ_EQ] = ACTIONS(4992), + [anon_sym_BANG_EQ] = ACTIONS(4992), + [anon_sym_GT_EQ] = ACTIONS(4992), + [anon_sym_LT_EQ] = ACTIONS(4992), + [anon_sym_DOT] = ACTIONS(4994), + [anon_sym_EQ_GT] = ACTIONS(4992), + [anon_sym_switch] = ACTIONS(4992), + [anon_sym_when] = ACTIONS(4992), + [anon_sym_DOT_DOT] = ACTIONS(4992), + [anon_sym_and] = ACTIONS(4992), + [anon_sym_or] = ACTIONS(4992), + [anon_sym_AMP_AMP] = ACTIONS(4992), + [anon_sym_PIPE_PIPE] = ACTIONS(4992), + [anon_sym_QMARK_QMARK] = ACTIONS(4992), + [anon_sym_on] = ACTIONS(4992), + [anon_sym_equals] = ACTIONS(4992), + [anon_sym_by] = ACTIONS(4992), + [anon_sym_as] = ACTIONS(4992), + [anon_sym_is] = ACTIONS(4992), + [anon_sym_DASH_GT] = ACTIONS(4992), + [anon_sym_with] = ACTIONS(4992), + [aux_sym_preproc_if_token3] = ACTIONS(4992), + [aux_sym_preproc_else_token1] = ACTIONS(4992), + [aux_sym_preproc_elif_token1] = ACTIONS(4992), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -503621,15 +503092,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3454] = { - [sym__name] = STATE(5302), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(4096), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_ref_type] = STATE(2317), - [sym__scoped_base_type] = STATE(2340), - [sym_identifier] = STATE(4373), - [sym__reserved_identifier] = STATE(2175), [sym_preproc_region] = STATE(3454), [sym_preproc_endregion] = STATE(3454), [sym_preproc_line] = STATE(3454), @@ -503639,47 +503101,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(3589), - [anon_sym_alias] = ACTIONS(3593), - [anon_sym_global] = ACTIONS(3593), - [anon_sym_EQ] = ACTIONS(3445), - [anon_sym_LBRACK] = ACTIONS(3445), - [anon_sym_COMMA] = ACTIONS(3445), - [anon_sym_RBRACK] = ACTIONS(3445), - [anon_sym_LPAREN] = ACTIONS(2733), - [anon_sym_RPAREN] = ACTIONS(3445), - [anon_sym_ref] = ACTIONS(2693), - [anon_sym_delegate] = ACTIONS(2693), - [anon_sym_file] = ACTIONS(3593), - [anon_sym_readonly] = ACTIONS(2693), - [anon_sym_LT] = ACTIONS(3445), - [anon_sym_in] = ACTIONS(2693), - [anon_sym_out] = ACTIONS(2693), - [anon_sym_where] = ACTIONS(3593), - [anon_sym_QMARK] = ACTIONS(3445), - [anon_sym_notnull] = ACTIONS(3593), - [anon_sym_unmanaged] = ACTIONS(3593), - [anon_sym_STAR] = ACTIONS(3445), - [anon_sym_this] = ACTIONS(2693), - [anon_sym_DOT] = ACTIONS(3445), - [anon_sym_scoped] = ACTIONS(3593), - [anon_sym_COLON_COLON] = ACTIONS(3445), - [anon_sym_var] = ACTIONS(3593), - [sym_predefined_type] = ACTIONS(2693), - [anon_sym_yield] = ACTIONS(3593), - [anon_sym_when] = ACTIONS(3593), - [anon_sym_from] = ACTIONS(3593), - [anon_sym_into] = ACTIONS(3593), - [anon_sym_join] = ACTIONS(3593), - [anon_sym_on] = ACTIONS(3593), - [anon_sym_equals] = ACTIONS(3593), - [anon_sym_let] = ACTIONS(3593), - [anon_sym_orderby] = ACTIONS(3593), - [anon_sym_ascending] = ACTIONS(3593), - [anon_sym_descending] = ACTIONS(3593), - [anon_sym_group] = ACTIONS(3593), - [anon_sym_by] = ACTIONS(3593), - [anon_sym_select] = ACTIONS(3593), + [anon_sym_SEMI] = ACTIONS(4996), + [anon_sym_LBRACK] = ACTIONS(4996), + [anon_sym_COLON] = ACTIONS(4996), + [anon_sym_COMMA] = ACTIONS(4996), + [anon_sym_RBRACK] = ACTIONS(4996), + [anon_sym_LPAREN] = ACTIONS(4996), + [anon_sym_RPAREN] = ACTIONS(4996), + [anon_sym_RBRACE] = ACTIONS(4996), + [anon_sym_LT] = ACTIONS(4998), + [anon_sym_GT] = ACTIONS(4998), + [anon_sym_in] = ACTIONS(4996), + [anon_sym_QMARK] = ACTIONS(4998), + [anon_sym_BANG] = ACTIONS(4998), + [anon_sym_PLUS_PLUS] = ACTIONS(4996), + [anon_sym_DASH_DASH] = ACTIONS(4996), + [anon_sym_PLUS] = ACTIONS(4998), + [anon_sym_DASH] = ACTIONS(4998), + [anon_sym_STAR] = ACTIONS(4996), + [anon_sym_SLASH] = ACTIONS(4998), + [anon_sym_PERCENT] = ACTIONS(4996), + [anon_sym_CARET] = ACTIONS(4996), + [anon_sym_PIPE] = ACTIONS(4998), + [anon_sym_AMP] = ACTIONS(4998), + [anon_sym_LT_LT] = ACTIONS(4996), + [anon_sym_GT_GT] = ACTIONS(4998), + [anon_sym_GT_GT_GT] = ACTIONS(4996), + [anon_sym_EQ_EQ] = ACTIONS(4996), + [anon_sym_BANG_EQ] = ACTIONS(4996), + [anon_sym_GT_EQ] = ACTIONS(4996), + [anon_sym_LT_EQ] = ACTIONS(4996), + [anon_sym_DOT] = ACTIONS(4998), + [anon_sym_EQ_GT] = ACTIONS(4996), + [anon_sym_switch] = ACTIONS(4996), + [anon_sym_when] = ACTIONS(4996), + [anon_sym_DOT_DOT] = ACTIONS(4996), + [anon_sym_and] = ACTIONS(4996), + [anon_sym_or] = ACTIONS(4996), + [anon_sym_AMP_AMP] = ACTIONS(4996), + [anon_sym_PIPE_PIPE] = ACTIONS(4996), + [anon_sym_QMARK_QMARK] = ACTIONS(4996), + [anon_sym_on] = ACTIONS(4996), + [anon_sym_equals] = ACTIONS(4996), + [anon_sym_by] = ACTIONS(4996), + [anon_sym_as] = ACTIONS(4996), + [anon_sym_is] = ACTIONS(4996), + [anon_sym_DASH_GT] = ACTIONS(4996), + [anon_sym_with] = ACTIONS(4996), + [aux_sym_preproc_if_token3] = ACTIONS(4996), + [aux_sym_preproc_else_token1] = ACTIONS(4996), + [aux_sym_preproc_elif_token1] = ACTIONS(4996), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -503692,6 +503163,26 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3455] = { + [sym_parameter_list] = STATE(7531), + [sym__name] = STATE(4369), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(4068), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(4073), + [sym_type] = STATE(5906), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym__lambda_parameters] = STATE(7609), + [sym_identifier] = STATE(5764), + [sym__reserved_identifier] = STATE(3654), [sym_preproc_region] = STATE(3455), [sym_preproc_endregion] = STATE(3455), [sym_preproc_line] = STATE(3455), @@ -503701,56 +503192,36 @@ 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(4271), - [anon_sym_LBRACK] = ACTIONS(5391), - [anon_sym_COLON] = ACTIONS(4271), - [anon_sym_COMMA] = ACTIONS(4271), - [anon_sym_RBRACK] = ACTIONS(4271), - [anon_sym_LPAREN] = ACTIONS(5391), - [anon_sym_RPAREN] = ACTIONS(4271), - [anon_sym_RBRACE] = ACTIONS(4271), - [anon_sym_LT] = ACTIONS(5394), - [anon_sym_GT] = ACTIONS(5394), - [anon_sym_in] = ACTIONS(4271), - [anon_sym_QMARK] = ACTIONS(5394), - [anon_sym_BANG] = ACTIONS(5394), - [anon_sym_PLUS_PLUS] = ACTIONS(5391), - [anon_sym_DASH_DASH] = ACTIONS(5391), - [anon_sym_PLUS] = ACTIONS(5394), - [anon_sym_DASH] = ACTIONS(5394), - [anon_sym_STAR] = ACTIONS(5391), - [anon_sym_SLASH] = ACTIONS(5394), - [anon_sym_PERCENT] = ACTIONS(5391), - [anon_sym_CARET] = ACTIONS(5391), - [anon_sym_PIPE] = ACTIONS(5394), - [anon_sym_AMP] = ACTIONS(5394), - [anon_sym_LT_LT] = ACTIONS(5391), - [anon_sym_GT_GT] = ACTIONS(5394), - [anon_sym_GT_GT_GT] = ACTIONS(5391), - [anon_sym_EQ_EQ] = ACTIONS(5391), - [anon_sym_BANG_EQ] = ACTIONS(5391), - [anon_sym_GT_EQ] = ACTIONS(5391), - [anon_sym_LT_EQ] = ACTIONS(5391), - [anon_sym_DOT] = ACTIONS(5394), - [anon_sym_EQ_GT] = ACTIONS(4271), - [anon_sym_switch] = ACTIONS(5391), - [anon_sym_when] = ACTIONS(4271), - [anon_sym_DOT_DOT] = ACTIONS(5391), - [anon_sym_and] = ACTIONS(4271), - [anon_sym_or] = ACTIONS(4271), - [anon_sym_AMP_AMP] = ACTIONS(5391), - [anon_sym_PIPE_PIPE] = ACTIONS(5391), - [anon_sym_QMARK_QMARK] = ACTIONS(5391), - [anon_sym_on] = ACTIONS(4271), - [anon_sym_equals] = ACTIONS(4271), - [anon_sym_by] = ACTIONS(4271), - [anon_sym_as] = ACTIONS(5391), - [anon_sym_is] = ACTIONS(5391), - [anon_sym_DASH_GT] = ACTIONS(5391), - [anon_sym_with] = ACTIONS(5391), - [aux_sym_preproc_if_token3] = ACTIONS(4271), - [aux_sym_preproc_else_token1] = ACTIONS(4271), - [aux_sym_preproc_elif_token1] = ACTIONS(4271), + [aux_sym__lambda_expression_init_repeat1] = STATE(5828), + [sym__identifier_token] = ACTIONS(2965), + [anon_sym_alias] = ACTIONS(2969), + [anon_sym_global] = ACTIONS(2969), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LPAREN] = ACTIONS(3786), + [anon_sym_ref] = ACTIONS(3436), + [anon_sym_delegate] = ACTIONS(5518), + [anon_sym_async] = ACTIONS(1045), + [anon_sym_file] = ACTIONS(2969), + [anon_sym_where] = ACTIONS(2969), + [anon_sym_notnull] = ACTIONS(2969), + [anon_sym_unmanaged] = ACTIONS(2969), + [anon_sym_scoped] = ACTIONS(2993), + [anon_sym_var] = ACTIONS(2995), + [sym_predefined_type] = ACTIONS(2997), + [anon_sym_yield] = ACTIONS(2969), + [anon_sym_when] = ACTIONS(2969), + [anon_sym_from] = ACTIONS(2969), + [anon_sym_into] = ACTIONS(2969), + [anon_sym_join] = ACTIONS(2969), + [anon_sym_on] = ACTIONS(2969), + [anon_sym_equals] = ACTIONS(2969), + [anon_sym_let] = ACTIONS(2969), + [anon_sym_orderby] = ACTIONS(2969), + [anon_sym_ascending] = ACTIONS(2969), + [anon_sym_descending] = ACTIONS(2969), + [anon_sym_group] = ACTIONS(2969), + [anon_sym_by] = ACTIONS(2969), + [anon_sym_select] = ACTIONS(2969), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -503772,56 +503243,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(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(5004), + [anon_sym_LBRACK] = ACTIONS(5004), + [anon_sym_COLON] = ACTIONS(5004), + [anon_sym_COMMA] = ACTIONS(5004), + [anon_sym_RBRACK] = ACTIONS(5004), + [anon_sym_LPAREN] = ACTIONS(5004), + [anon_sym_RPAREN] = ACTIONS(5004), + [anon_sym_RBRACE] = ACTIONS(5004), + [anon_sym_LT] = ACTIONS(5006), + [anon_sym_GT] = ACTIONS(5006), + [anon_sym_in] = ACTIONS(5004), + [anon_sym_QMARK] = ACTIONS(5006), + [anon_sym_BANG] = ACTIONS(5006), + [anon_sym_PLUS_PLUS] = ACTIONS(5004), + [anon_sym_DASH_DASH] = ACTIONS(5004), + [anon_sym_PLUS] = ACTIONS(5006), + [anon_sym_DASH] = ACTIONS(5006), + [anon_sym_STAR] = ACTIONS(5004), + [anon_sym_SLASH] = ACTIONS(5006), + [anon_sym_PERCENT] = ACTIONS(5004), + [anon_sym_CARET] = ACTIONS(5004), + [anon_sym_PIPE] = ACTIONS(5006), + [anon_sym_AMP] = ACTIONS(5006), + [anon_sym_LT_LT] = ACTIONS(5004), + [anon_sym_GT_GT] = ACTIONS(5006), + [anon_sym_GT_GT_GT] = ACTIONS(5004), + [anon_sym_EQ_EQ] = ACTIONS(5004), + [anon_sym_BANG_EQ] = ACTIONS(5004), + [anon_sym_GT_EQ] = ACTIONS(5004), + [anon_sym_LT_EQ] = ACTIONS(5004), + [anon_sym_DOT] = ACTIONS(5006), + [anon_sym_EQ_GT] = ACTIONS(5004), + [anon_sym_switch] = ACTIONS(5004), + [anon_sym_when] = ACTIONS(5004), + [anon_sym_DOT_DOT] = ACTIONS(5004), + [anon_sym_and] = ACTIONS(5004), + [anon_sym_or] = ACTIONS(5004), + [anon_sym_AMP_AMP] = ACTIONS(5004), + [anon_sym_PIPE_PIPE] = ACTIONS(5004), + [anon_sym_QMARK_QMARK] = ACTIONS(5004), + [anon_sym_on] = ACTIONS(5004), + [anon_sym_equals] = ACTIONS(5004), + [anon_sym_by] = ACTIONS(5004), + [anon_sym_as] = ACTIONS(5004), + [anon_sym_is] = ACTIONS(5004), + [anon_sym_DASH_GT] = ACTIONS(5004), + [anon_sym_with] = ACTIONS(5004), + [aux_sym_preproc_if_token3] = ACTIONS(5004), + [aux_sym_preproc_else_token1] = ACTIONS(5004), + [aux_sym_preproc_elif_token1] = ACTIONS(5004), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -503843,56 +503314,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(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_RBRACE] = ACTIONS(4937), - [anon_sym_LT] = ACTIONS(4939), - [anon_sym_GT] = ACTIONS(4939), - [anon_sym_in] = 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(5048), + [anon_sym_LBRACK] = ACTIONS(5048), + [anon_sym_COLON] = ACTIONS(5048), + [anon_sym_COMMA] = ACTIONS(5048), + [anon_sym_RBRACK] = ACTIONS(5048), + [anon_sym_LPAREN] = ACTIONS(5048), + [anon_sym_RPAREN] = ACTIONS(5048), + [anon_sym_RBRACE] = ACTIONS(5048), + [anon_sym_LT] = ACTIONS(5050), + [anon_sym_GT] = ACTIONS(5050), + [anon_sym_in] = ACTIONS(5048), + [anon_sym_QMARK] = ACTIONS(5050), + [anon_sym_BANG] = ACTIONS(5050), + [anon_sym_PLUS_PLUS] = ACTIONS(5048), + [anon_sym_DASH_DASH] = ACTIONS(5048), + [anon_sym_PLUS] = ACTIONS(5050), + [anon_sym_DASH] = ACTIONS(5050), + [anon_sym_STAR] = ACTIONS(5048), + [anon_sym_SLASH] = ACTIONS(5050), + [anon_sym_PERCENT] = ACTIONS(5048), + [anon_sym_CARET] = ACTIONS(5048), + [anon_sym_PIPE] = ACTIONS(5050), + [anon_sym_AMP] = ACTIONS(5050), + [anon_sym_LT_LT] = ACTIONS(5048), + [anon_sym_GT_GT] = ACTIONS(5050), + [anon_sym_GT_GT_GT] = ACTIONS(5048), + [anon_sym_EQ_EQ] = ACTIONS(5048), + [anon_sym_BANG_EQ] = ACTIONS(5048), + [anon_sym_GT_EQ] = ACTIONS(5048), + [anon_sym_LT_EQ] = ACTIONS(5048), + [anon_sym_DOT] = ACTIONS(5050), + [anon_sym_EQ_GT] = ACTIONS(5048), + [anon_sym_switch] = ACTIONS(5048), + [anon_sym_when] = ACTIONS(5048), + [anon_sym_DOT_DOT] = ACTIONS(5048), + [anon_sym_and] = ACTIONS(5048), + [anon_sym_or] = ACTIONS(5048), + [anon_sym_AMP_AMP] = ACTIONS(5048), + [anon_sym_PIPE_PIPE] = ACTIONS(5048), + [anon_sym_QMARK_QMARK] = ACTIONS(5048), + [anon_sym_on] = ACTIONS(5048), + [anon_sym_equals] = ACTIONS(5048), + [anon_sym_by] = ACTIONS(5048), + [anon_sym_as] = ACTIONS(5048), + [anon_sym_is] = ACTIONS(5048), + [anon_sym_DASH_GT] = ACTIONS(5048), + [anon_sym_with] = ACTIONS(5048), + [aux_sym_preproc_if_token3] = ACTIONS(5048), + [aux_sym_preproc_else_token1] = ACTIONS(5048), + [aux_sym_preproc_elif_token1] = ACTIONS(5048), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -503914,56 +503385,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_EQ] = ACTIONS(3704), - [anon_sym_LBRACK] = ACTIONS(3719), - [anon_sym_COLON] = ACTIONS(4273), - [anon_sym_LPAREN] = ACTIONS(3719), - [anon_sym_LT] = ACTIONS(3704), - [anon_sym_GT] = ACTIONS(3704), - [anon_sym_QMARK] = ACTIONS(3704), - [anon_sym_BANG] = ACTIONS(3704), - [anon_sym_PLUS_PLUS] = ACTIONS(3719), - [anon_sym_DASH_DASH] = ACTIONS(3719), - [anon_sym_PLUS] = ACTIONS(3704), - [anon_sym_DASH] = ACTIONS(3704), - [anon_sym_STAR] = ACTIONS(3704), - [anon_sym_SLASH] = ACTIONS(3704), - [anon_sym_PERCENT] = ACTIONS(3704), - [anon_sym_CARET] = ACTIONS(3704), - [anon_sym_PIPE] = ACTIONS(3704), - [anon_sym_AMP] = ACTIONS(3704), - [anon_sym_LT_LT] = ACTIONS(3704), - [anon_sym_GT_GT] = ACTIONS(3704), - [anon_sym_GT_GT_GT] = ACTIONS(3704), - [anon_sym_EQ_EQ] = ACTIONS(3719), - [anon_sym_BANG_EQ] = ACTIONS(3719), - [anon_sym_GT_EQ] = ACTIONS(3719), - [anon_sym_LT_EQ] = ACTIONS(3719), - [anon_sym_DOT] = ACTIONS(3704), - [anon_sym_switch] = ACTIONS(3719), - [anon_sym_when] = ACTIONS(4271), - [anon_sym_DOT_DOT] = ACTIONS(3719), - [anon_sym_and] = ACTIONS(4271), - [anon_sym_or] = ACTIONS(4271), - [anon_sym_PLUS_EQ] = ACTIONS(3719), - [anon_sym_DASH_EQ] = ACTIONS(3719), - [anon_sym_STAR_EQ] = ACTIONS(3719), - [anon_sym_SLASH_EQ] = ACTIONS(3719), - [anon_sym_PERCENT_EQ] = ACTIONS(3719), - [anon_sym_AMP_EQ] = ACTIONS(3719), - [anon_sym_CARET_EQ] = ACTIONS(3719), - [anon_sym_PIPE_EQ] = ACTIONS(3719), - [anon_sym_LT_LT_EQ] = ACTIONS(3719), - [anon_sym_GT_GT_EQ] = ACTIONS(3719), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3719), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3719), - [anon_sym_AMP_AMP] = ACTIONS(3719), - [anon_sym_PIPE_PIPE] = ACTIONS(3719), - [anon_sym_QMARK_QMARK] = ACTIONS(3704), - [anon_sym_as] = ACTIONS(3719), - [anon_sym_is] = ACTIONS(3719), - [anon_sym_DASH_GT] = ACTIONS(3719), - [anon_sym_with] = ACTIONS(3719), + [anon_sym_SEMI] = ACTIONS(5100), + [anon_sym_LBRACK] = ACTIONS(5100), + [anon_sym_COLON] = ACTIONS(5100), + [anon_sym_COMMA] = ACTIONS(5100), + [anon_sym_RBRACK] = ACTIONS(5100), + [anon_sym_LPAREN] = ACTIONS(5100), + [anon_sym_RPAREN] = ACTIONS(5100), + [anon_sym_RBRACE] = ACTIONS(5100), + [anon_sym_LT] = ACTIONS(5102), + [anon_sym_GT] = ACTIONS(5102), + [anon_sym_in] = ACTIONS(5100), + [anon_sym_QMARK] = ACTIONS(5102), + [anon_sym_BANG] = ACTIONS(5102), + [anon_sym_PLUS_PLUS] = ACTIONS(5100), + [anon_sym_DASH_DASH] = ACTIONS(5100), + [anon_sym_PLUS] = ACTIONS(5102), + [anon_sym_DASH] = ACTIONS(5102), + [anon_sym_STAR] = ACTIONS(5100), + [anon_sym_SLASH] = ACTIONS(5102), + [anon_sym_PERCENT] = ACTIONS(5100), + [anon_sym_CARET] = ACTIONS(5100), + [anon_sym_PIPE] = ACTIONS(5102), + [anon_sym_AMP] = ACTIONS(5102), + [anon_sym_LT_LT] = ACTIONS(5100), + [anon_sym_GT_GT] = ACTIONS(5102), + [anon_sym_GT_GT_GT] = ACTIONS(5100), + [anon_sym_EQ_EQ] = ACTIONS(5100), + [anon_sym_BANG_EQ] = ACTIONS(5100), + [anon_sym_GT_EQ] = ACTIONS(5100), + [anon_sym_LT_EQ] = ACTIONS(5100), + [anon_sym_DOT] = ACTIONS(5102), + [anon_sym_EQ_GT] = ACTIONS(5100), + [anon_sym_switch] = ACTIONS(5100), + [anon_sym_when] = ACTIONS(5100), + [anon_sym_DOT_DOT] = ACTIONS(5100), + [anon_sym_and] = ACTIONS(5100), + [anon_sym_or] = ACTIONS(5100), + [anon_sym_AMP_AMP] = ACTIONS(5100), + [anon_sym_PIPE_PIPE] = ACTIONS(5100), + [anon_sym_QMARK_QMARK] = ACTIONS(5100), + [anon_sym_on] = ACTIONS(5100), + [anon_sym_equals] = ACTIONS(5100), + [anon_sym_by] = ACTIONS(5100), + [anon_sym_as] = ACTIONS(5100), + [anon_sym_is] = ACTIONS(5100), + [anon_sym_DASH_GT] = ACTIONS(5100), + [anon_sym_with] = ACTIONS(5100), + [aux_sym_preproc_if_token3] = ACTIONS(5100), + [aux_sym_preproc_else_token1] = ACTIONS(5100), + [aux_sym_preproc_elif_token1] = ACTIONS(5100), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -503976,26 +503447,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3459] = { - [sym_type_parameter_constraint] = STATE(6441), - [sym_constructor_constraint] = STATE(6568), - [sym__name] = STATE(4390), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(4096), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(4109), - [sym_type] = STATE(6570), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_identifier] = STATE(4087), - [sym__reserved_identifier] = STATE(3691), [sym_preproc_region] = STATE(3459), [sym_preproc_endregion] = STATE(3459), [sym_preproc_line] = STATE(3459), @@ -504005,36 +503456,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), - [sym__identifier_token] = ACTIONS(2967), - [anon_sym_alias] = ACTIONS(2971), - [anon_sym_global] = ACTIONS(2971), - [anon_sym_LPAREN] = ACTIONS(2979), - [anon_sym_class] = ACTIONS(5528), - [anon_sym_ref] = ACTIONS(5530), - [anon_sym_struct] = ACTIONS(5532), - [anon_sym_delegate] = ACTIONS(3454), - [anon_sym_file] = ACTIONS(2971), - [anon_sym_new] = ACTIONS(5534), - [anon_sym_where] = ACTIONS(2971), - [anon_sym_notnull] = ACTIONS(5536), - [anon_sym_unmanaged] = ACTIONS(5536), - [anon_sym_scoped] = ACTIONS(5538), - [anon_sym_var] = ACTIONS(4737), - [sym_predefined_type] = ACTIONS(3001), - [anon_sym_yield] = ACTIONS(2971), - [anon_sym_when] = ACTIONS(2971), - [anon_sym_from] = ACTIONS(2971), - [anon_sym_into] = ACTIONS(2971), - [anon_sym_join] = ACTIONS(2971), - [anon_sym_on] = ACTIONS(2971), - [anon_sym_equals] = ACTIONS(2971), - [anon_sym_let] = ACTIONS(2971), - [anon_sym_orderby] = ACTIONS(2971), - [anon_sym_ascending] = ACTIONS(2971), - [anon_sym_descending] = ACTIONS(2971), - [anon_sym_group] = ACTIONS(2971), - [anon_sym_by] = ACTIONS(2971), - [anon_sym_select] = ACTIONS(2971), + [anon_sym_SEMI] = ACTIONS(5402), + [anon_sym_LBRACK] = ACTIONS(5402), + [anon_sym_COLON] = ACTIONS(5402), + [anon_sym_COMMA] = ACTIONS(5402), + [anon_sym_RBRACK] = ACTIONS(5402), + [anon_sym_LPAREN] = ACTIONS(5402), + [anon_sym_RPAREN] = ACTIONS(5402), + [anon_sym_RBRACE] = ACTIONS(5402), + [anon_sym_LT] = ACTIONS(5404), + [anon_sym_GT] = ACTIONS(5404), + [anon_sym_in] = ACTIONS(5402), + [anon_sym_QMARK] = ACTIONS(5404), + [anon_sym_BANG] = ACTIONS(5404), + [anon_sym_PLUS_PLUS] = ACTIONS(5402), + [anon_sym_DASH_DASH] = ACTIONS(5402), + [anon_sym_PLUS] = ACTIONS(5404), + [anon_sym_DASH] = ACTIONS(5404), + [anon_sym_STAR] = ACTIONS(5402), + [anon_sym_SLASH] = ACTIONS(5404), + [anon_sym_PERCENT] = ACTIONS(5402), + [anon_sym_CARET] = ACTIONS(5402), + [anon_sym_PIPE] = ACTIONS(5404), + [anon_sym_AMP] = ACTIONS(5404), + [anon_sym_LT_LT] = ACTIONS(5402), + [anon_sym_GT_GT] = ACTIONS(5404), + [anon_sym_GT_GT_GT] = ACTIONS(5402), + [anon_sym_EQ_EQ] = ACTIONS(5402), + [anon_sym_BANG_EQ] = ACTIONS(5402), + [anon_sym_GT_EQ] = ACTIONS(5402), + [anon_sym_LT_EQ] = ACTIONS(5402), + [anon_sym_DOT] = ACTIONS(5404), + [anon_sym_EQ_GT] = ACTIONS(5402), + [anon_sym_switch] = ACTIONS(5402), + [anon_sym_when] = ACTIONS(5402), + [anon_sym_DOT_DOT] = ACTIONS(5402), + [anon_sym_and] = ACTIONS(5402), + [anon_sym_or] = ACTIONS(5402), + [anon_sym_AMP_AMP] = ACTIONS(5402), + [anon_sym_PIPE_PIPE] = ACTIONS(5402), + [anon_sym_QMARK_QMARK] = ACTIONS(5402), + [anon_sym_on] = ACTIONS(5402), + [anon_sym_equals] = ACTIONS(5402), + [anon_sym_by] = ACTIONS(5402), + [anon_sym_as] = ACTIONS(5402), + [anon_sym_is] = ACTIONS(5402), + [anon_sym_DASH_GT] = ACTIONS(5402), + [anon_sym_with] = ACTIONS(5402), + [aux_sym_preproc_if_token3] = ACTIONS(5402), + [aux_sym_preproc_else_token1] = ACTIONS(5402), + [aux_sym_preproc_elif_token1] = ACTIONS(5402), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -504056,56 +503527,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(4941), - [anon_sym_LBRACK] = ACTIONS(4941), - [anon_sym_COLON] = ACTIONS(4941), - [anon_sym_COMMA] = ACTIONS(4941), - [anon_sym_RBRACK] = ACTIONS(4941), - [anon_sym_LPAREN] = ACTIONS(4941), - [anon_sym_RPAREN] = ACTIONS(4941), - [anon_sym_RBRACE] = ACTIONS(4941), - [anon_sym_LT] = ACTIONS(4943), - [anon_sym_GT] = ACTIONS(4943), - [anon_sym_in] = ACTIONS(4941), - [anon_sym_QMARK] = ACTIONS(4943), - [anon_sym_BANG] = ACTIONS(4943), - [anon_sym_PLUS_PLUS] = ACTIONS(4941), - [anon_sym_DASH_DASH] = ACTIONS(4941), - [anon_sym_PLUS] = ACTIONS(4943), - [anon_sym_DASH] = ACTIONS(4943), - [anon_sym_STAR] = ACTIONS(4941), - [anon_sym_SLASH] = ACTIONS(4943), - [anon_sym_PERCENT] = ACTIONS(4941), - [anon_sym_CARET] = ACTIONS(4941), - [anon_sym_PIPE] = ACTIONS(4943), - [anon_sym_AMP] = ACTIONS(4943), - [anon_sym_LT_LT] = ACTIONS(4941), - [anon_sym_GT_GT] = ACTIONS(4943), - [anon_sym_GT_GT_GT] = ACTIONS(4941), - [anon_sym_EQ_EQ] = ACTIONS(4941), - [anon_sym_BANG_EQ] = ACTIONS(4941), - [anon_sym_GT_EQ] = ACTIONS(4941), - [anon_sym_LT_EQ] = ACTIONS(4941), - [anon_sym_DOT] = ACTIONS(4943), - [anon_sym_EQ_GT] = ACTIONS(4941), - [anon_sym_switch] = ACTIONS(4941), - [anon_sym_when] = ACTIONS(4941), - [anon_sym_DOT_DOT] = ACTIONS(4941), - [anon_sym_and] = ACTIONS(4941), - [anon_sym_or] = ACTIONS(4941), - [anon_sym_AMP_AMP] = ACTIONS(4941), - [anon_sym_PIPE_PIPE] = ACTIONS(4941), - [anon_sym_QMARK_QMARK] = ACTIONS(4941), - [anon_sym_on] = ACTIONS(4941), - [anon_sym_equals] = ACTIONS(4941), - [anon_sym_by] = ACTIONS(4941), - [anon_sym_as] = ACTIONS(4941), - [anon_sym_is] = ACTIONS(4941), - [anon_sym_DASH_GT] = ACTIONS(4941), - [anon_sym_with] = ACTIONS(4941), - [aux_sym_preproc_if_token3] = ACTIONS(4941), - [aux_sym_preproc_else_token1] = ACTIONS(4941), - [aux_sym_preproc_elif_token1] = ACTIONS(4941), + [anon_sym_SEMI] = ACTIONS(5092), + [anon_sym_LBRACK] = ACTIONS(5092), + [anon_sym_COLON] = ACTIONS(5092), + [anon_sym_COMMA] = ACTIONS(5092), + [anon_sym_RBRACK] = ACTIONS(5092), + [anon_sym_LPAREN] = ACTIONS(5092), + [anon_sym_RPAREN] = ACTIONS(5092), + [anon_sym_RBRACE] = ACTIONS(5092), + [anon_sym_LT] = ACTIONS(5094), + [anon_sym_GT] = ACTIONS(5094), + [anon_sym_in] = ACTIONS(5092), + [anon_sym_QMARK] = ACTIONS(5094), + [anon_sym_BANG] = ACTIONS(5094), + [anon_sym_PLUS_PLUS] = ACTIONS(5092), + [anon_sym_DASH_DASH] = ACTIONS(5092), + [anon_sym_PLUS] = ACTIONS(5094), + [anon_sym_DASH] = ACTIONS(5094), + [anon_sym_STAR] = ACTIONS(5092), + [anon_sym_SLASH] = ACTIONS(5094), + [anon_sym_PERCENT] = ACTIONS(5092), + [anon_sym_CARET] = ACTIONS(5092), + [anon_sym_PIPE] = ACTIONS(5094), + [anon_sym_AMP] = ACTIONS(5094), + [anon_sym_LT_LT] = ACTIONS(5092), + [anon_sym_GT_GT] = ACTIONS(5094), + [anon_sym_GT_GT_GT] = ACTIONS(5092), + [anon_sym_EQ_EQ] = ACTIONS(5092), + [anon_sym_BANG_EQ] = ACTIONS(5092), + [anon_sym_GT_EQ] = ACTIONS(5092), + [anon_sym_LT_EQ] = ACTIONS(5092), + [anon_sym_DOT] = ACTIONS(5094), + [anon_sym_EQ_GT] = ACTIONS(5092), + [anon_sym_switch] = ACTIONS(5092), + [anon_sym_when] = ACTIONS(5092), + [anon_sym_DOT_DOT] = ACTIONS(5092), + [anon_sym_and] = ACTIONS(5092), + [anon_sym_or] = ACTIONS(5092), + [anon_sym_AMP_AMP] = ACTIONS(5092), + [anon_sym_PIPE_PIPE] = ACTIONS(5092), + [anon_sym_QMARK_QMARK] = ACTIONS(5092), + [anon_sym_on] = ACTIONS(5092), + [anon_sym_equals] = ACTIONS(5092), + [anon_sym_by] = ACTIONS(5092), + [anon_sym_as] = ACTIONS(5092), + [anon_sym_is] = ACTIONS(5092), + [anon_sym_DASH_GT] = ACTIONS(5092), + [anon_sym_with] = ACTIONS(5092), + [aux_sym_preproc_if_token3] = ACTIONS(5092), + [aux_sym_preproc_else_token1] = ACTIONS(5092), + [aux_sym_preproc_elif_token1] = ACTIONS(5092), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -504127,56 +503598,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), - [anon_sym_SEMI] = ACTIONS(4860), - [anon_sym_EQ] = ACTIONS(5540), - [anon_sym_LBRACK] = ACTIONS(4860), - [anon_sym_LPAREN] = ACTIONS(4860), - [anon_sym_LT] = ACTIONS(4862), - [anon_sym_GT] = ACTIONS(4862), - [anon_sym_QMARK] = ACTIONS(4862), - [anon_sym_BANG] = ACTIONS(4862), - [anon_sym_PLUS_PLUS] = ACTIONS(4860), - [anon_sym_DASH_DASH] = ACTIONS(4860), - [anon_sym_PLUS] = ACTIONS(4862), - [anon_sym_DASH] = ACTIONS(4862), - [anon_sym_STAR] = ACTIONS(4862), - [anon_sym_SLASH] = ACTIONS(4862), - [anon_sym_PERCENT] = ACTIONS(4862), - [anon_sym_CARET] = ACTIONS(4862), - [anon_sym_PIPE] = ACTIONS(4862), - [anon_sym_AMP] = ACTIONS(4862), - [anon_sym_LT_LT] = ACTIONS(4862), - [anon_sym_GT_GT] = ACTIONS(4862), - [anon_sym_GT_GT_GT] = ACTIONS(4862), - [anon_sym_EQ_EQ] = ACTIONS(4860), - [anon_sym_BANG_EQ] = ACTIONS(4860), - [anon_sym_GT_EQ] = ACTIONS(4860), - [anon_sym_LT_EQ] = ACTIONS(4860), - [anon_sym_DOT] = ACTIONS(4862), - [anon_sym_switch] = ACTIONS(4860), - [anon_sym_DOT_DOT] = ACTIONS(4860), - [anon_sym_PLUS_EQ] = ACTIONS(5542), - [anon_sym_DASH_EQ] = ACTIONS(5542), - [anon_sym_STAR_EQ] = ACTIONS(5542), - [anon_sym_SLASH_EQ] = ACTIONS(5542), - [anon_sym_PERCENT_EQ] = ACTIONS(5542), - [anon_sym_AMP_EQ] = ACTIONS(5542), - [anon_sym_CARET_EQ] = ACTIONS(5542), - [anon_sym_PIPE_EQ] = ACTIONS(5542), - [anon_sym_LT_LT_EQ] = ACTIONS(5542), - [anon_sym_GT_GT_EQ] = ACTIONS(5542), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(5542), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(5542), - [anon_sym_AMP_AMP] = ACTIONS(4860), - [anon_sym_PIPE_PIPE] = ACTIONS(4860), - [anon_sym_QMARK_QMARK] = ACTIONS(4862), - [anon_sym_as] = ACTIONS(4860), - [anon_sym_is] = ACTIONS(4860), - [anon_sym_DASH_GT] = ACTIONS(4860), - [anon_sym_with] = ACTIONS(4860), - [aux_sym_preproc_if_token3] = ACTIONS(4860), - [aux_sym_preproc_else_token1] = ACTIONS(4860), - [aux_sym_preproc_elif_token1] = ACTIONS(4860), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -504198,56 +503669,56 @@ 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), - [anon_sym_SEMI] = ACTIONS(5419), - [anon_sym_LBRACK] = ACTIONS(5419), - [anon_sym_COLON] = ACTIONS(5419), - [anon_sym_COMMA] = ACTIONS(5419), - [anon_sym_RBRACK] = ACTIONS(5419), - [anon_sym_LPAREN] = ACTIONS(5419), - [anon_sym_RPAREN] = ACTIONS(5419), - [anon_sym_RBRACE] = ACTIONS(5419), - [anon_sym_LT] = ACTIONS(5421), - [anon_sym_GT] = ACTIONS(5421), - [anon_sym_in] = ACTIONS(5419), - [anon_sym_QMARK] = ACTIONS(5421), - [anon_sym_BANG] = ACTIONS(5421), - [anon_sym_PLUS_PLUS] = ACTIONS(5419), - [anon_sym_DASH_DASH] = ACTIONS(5419), - [anon_sym_PLUS] = ACTIONS(5421), - [anon_sym_DASH] = ACTIONS(5421), - [anon_sym_STAR] = ACTIONS(5419), - [anon_sym_SLASH] = ACTIONS(5421), - [anon_sym_PERCENT] = ACTIONS(5419), - [anon_sym_CARET] = ACTIONS(5419), - [anon_sym_PIPE] = ACTIONS(5421), - [anon_sym_AMP] = ACTIONS(5421), - [anon_sym_LT_LT] = ACTIONS(5419), - [anon_sym_GT_GT] = ACTIONS(5421), - [anon_sym_GT_GT_GT] = ACTIONS(5419), - [anon_sym_EQ_EQ] = ACTIONS(5419), - [anon_sym_BANG_EQ] = ACTIONS(5419), - [anon_sym_GT_EQ] = ACTIONS(5419), - [anon_sym_LT_EQ] = ACTIONS(5419), - [anon_sym_DOT] = ACTIONS(5421), - [anon_sym_EQ_GT] = ACTIONS(5419), - [anon_sym_switch] = ACTIONS(5419), - [anon_sym_when] = ACTIONS(5419), - [anon_sym_DOT_DOT] = ACTIONS(5419), - [anon_sym_and] = ACTIONS(5419), - [anon_sym_or] = ACTIONS(5419), - [anon_sym_AMP_AMP] = ACTIONS(5419), - [anon_sym_PIPE_PIPE] = ACTIONS(5419), - [anon_sym_QMARK_QMARK] = ACTIONS(5419), - [anon_sym_on] = ACTIONS(5419), - [anon_sym_equals] = ACTIONS(5419), - [anon_sym_by] = ACTIONS(5419), - [anon_sym_as] = ACTIONS(5419), - [anon_sym_is] = ACTIONS(5419), - [anon_sym_DASH_GT] = ACTIONS(5419), - [anon_sym_with] = ACTIONS(5419), - [aux_sym_preproc_if_token3] = ACTIONS(5419), - [aux_sym_preproc_else_token1] = ACTIONS(5419), - [aux_sym_preproc_elif_token1] = ACTIONS(5419), + [anon_sym_SEMI] = ACTIONS(5142), + [anon_sym_LBRACK] = ACTIONS(5142), + [anon_sym_COLON] = ACTIONS(5142), + [anon_sym_COMMA] = ACTIONS(5142), + [anon_sym_RBRACK] = ACTIONS(5142), + [anon_sym_LPAREN] = ACTIONS(5142), + [anon_sym_RPAREN] = ACTIONS(5142), + [anon_sym_RBRACE] = ACTIONS(5142), + [anon_sym_LT] = ACTIONS(5144), + [anon_sym_GT] = ACTIONS(5144), + [anon_sym_in] = ACTIONS(5142), + [anon_sym_QMARK] = ACTIONS(5144), + [anon_sym_BANG] = ACTIONS(5144), + [anon_sym_PLUS_PLUS] = ACTIONS(5142), + [anon_sym_DASH_DASH] = ACTIONS(5142), + [anon_sym_PLUS] = ACTIONS(5144), + [anon_sym_DASH] = ACTIONS(5144), + [anon_sym_STAR] = ACTIONS(5142), + [anon_sym_SLASH] = ACTIONS(5144), + [anon_sym_PERCENT] = ACTIONS(5142), + [anon_sym_CARET] = ACTIONS(5142), + [anon_sym_PIPE] = ACTIONS(5144), + [anon_sym_AMP] = ACTIONS(5144), + [anon_sym_LT_LT] = ACTIONS(5142), + [anon_sym_GT_GT] = ACTIONS(5144), + [anon_sym_GT_GT_GT] = ACTIONS(5142), + [anon_sym_EQ_EQ] = ACTIONS(5142), + [anon_sym_BANG_EQ] = ACTIONS(5142), + [anon_sym_GT_EQ] = ACTIONS(5142), + [anon_sym_LT_EQ] = ACTIONS(5142), + [anon_sym_DOT] = ACTIONS(5144), + [anon_sym_EQ_GT] = ACTIONS(5142), + [anon_sym_switch] = ACTIONS(5142), + [anon_sym_when] = ACTIONS(5142), + [anon_sym_DOT_DOT] = ACTIONS(5142), + [anon_sym_and] = ACTIONS(5142), + [anon_sym_or] = ACTIONS(5142), + [anon_sym_AMP_AMP] = ACTIONS(5142), + [anon_sym_PIPE_PIPE] = ACTIONS(5142), + [anon_sym_QMARK_QMARK] = ACTIONS(5142), + [anon_sym_on] = ACTIONS(5142), + [anon_sym_equals] = ACTIONS(5142), + [anon_sym_by] = ACTIONS(5142), + [anon_sym_as] = ACTIONS(5142), + [anon_sym_is] = ACTIONS(5142), + [anon_sym_DASH_GT] = ACTIONS(5142), + [anon_sym_with] = ACTIONS(5142), + [aux_sym_preproc_if_token3] = ACTIONS(5142), + [aux_sym_preproc_else_token1] = ACTIONS(5142), + [aux_sym_preproc_elif_token1] = ACTIONS(5142), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -504260,6 +503731,26 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3463] = { + [sym__name] = STATE(6381), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(4068), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(4073), + [sym_type] = STATE(7314), + [sym_implicit_type] = STATE(7156), + [sym_array_type] = STATE(6671), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(6672), + [sym_pointer_type] = STATE(6672), + [sym__pointer_base_type] = STATE(7421), + [sym_function_pointer_type] = STATE(6672), + [sym_function_pointer_parameter] = STATE(7377), + [sym_ref_type] = STATE(7035), + [sym__ref_base_type] = STATE(7387), + [sym_scoped_type] = STATE(7035), + [sym_tuple_type] = STATE(6553), + [sym_identifier] = STATE(4081), + [sym__reserved_identifier] = STATE(3654), [sym_preproc_region] = STATE(3463), [sym_preproc_endregion] = STATE(3463), [sym_preproc_line] = STATE(3463), @@ -504269,56 +503760,36 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3463), [sym_preproc_define] = STATE(3463), [sym_preproc_undef] = STATE(3463), - [anon_sym_SEMI] = ACTIONS(5427), - [anon_sym_LBRACK] = ACTIONS(5427), - [anon_sym_COLON] = ACTIONS(5427), - [anon_sym_COMMA] = ACTIONS(5427), - [anon_sym_RBRACK] = ACTIONS(5427), - [anon_sym_LPAREN] = ACTIONS(5427), - [anon_sym_RPAREN] = ACTIONS(5427), - [anon_sym_RBRACE] = ACTIONS(5427), - [anon_sym_LT] = ACTIONS(5429), - [anon_sym_GT] = ACTIONS(5429), - [anon_sym_in] = ACTIONS(5427), - [anon_sym_QMARK] = ACTIONS(5429), - [anon_sym_BANG] = ACTIONS(5429), - [anon_sym_PLUS_PLUS] = ACTIONS(5427), - [anon_sym_DASH_DASH] = ACTIONS(5427), - [anon_sym_PLUS] = ACTIONS(5429), - [anon_sym_DASH] = ACTIONS(5429), - [anon_sym_STAR] = ACTIONS(5427), - [anon_sym_SLASH] = ACTIONS(5429), - [anon_sym_PERCENT] = ACTIONS(5427), - [anon_sym_CARET] = ACTIONS(5427), - [anon_sym_PIPE] = ACTIONS(5429), - [anon_sym_AMP] = ACTIONS(5429), - [anon_sym_LT_LT] = ACTIONS(5427), - [anon_sym_GT_GT] = ACTIONS(5429), - [anon_sym_GT_GT_GT] = ACTIONS(5427), - [anon_sym_EQ_EQ] = ACTIONS(5427), - [anon_sym_BANG_EQ] = ACTIONS(5427), - [anon_sym_GT_EQ] = ACTIONS(5427), - [anon_sym_LT_EQ] = ACTIONS(5427), - [anon_sym_DOT] = ACTIONS(5429), - [anon_sym_EQ_GT] = ACTIONS(5427), - [anon_sym_switch] = ACTIONS(5427), - [anon_sym_when] = ACTIONS(5427), - [anon_sym_DOT_DOT] = ACTIONS(5427), - [anon_sym_and] = ACTIONS(5427), - [anon_sym_or] = ACTIONS(5427), - [anon_sym_AMP_AMP] = ACTIONS(5427), - [anon_sym_PIPE_PIPE] = ACTIONS(5427), - [anon_sym_QMARK_QMARK] = ACTIONS(5427), - [anon_sym_on] = ACTIONS(5427), - [anon_sym_equals] = ACTIONS(5427), - [anon_sym_by] = ACTIONS(5427), - [anon_sym_as] = ACTIONS(5427), - [anon_sym_is] = ACTIONS(5427), - [anon_sym_DASH_GT] = ACTIONS(5427), - [anon_sym_with] = ACTIONS(5427), - [aux_sym_preproc_if_token3] = ACTIONS(5427), - [aux_sym_preproc_else_token1] = ACTIONS(5427), - [aux_sym_preproc_elif_token1] = ACTIONS(5427), + [aux_sym_function_pointer_type_repeat1] = STATE(3387), + [sym__identifier_token] = ACTIONS(2965), + [anon_sym_alias] = ACTIONS(2969), + [anon_sym_global] = ACTIONS(2969), + [anon_sym_LPAREN] = ACTIONS(2977), + [anon_sym_ref] = ACTIONS(5450), + [anon_sym_delegate] = ACTIONS(5172), + [anon_sym_file] = ACTIONS(2969), + [anon_sym_in] = ACTIONS(5452), + [anon_sym_out] = ACTIONS(5452), + [anon_sym_where] = ACTIONS(2969), + [anon_sym_notnull] = ACTIONS(2969), + [anon_sym_unmanaged] = ACTIONS(2969), + [anon_sym_scoped] = ACTIONS(5454), + [anon_sym_var] = ACTIONS(4705), + [sym_predefined_type] = ACTIONS(5456), + [anon_sym_yield] = ACTIONS(2969), + [anon_sym_when] = ACTIONS(2969), + [anon_sym_from] = ACTIONS(2969), + [anon_sym_into] = ACTIONS(2969), + [anon_sym_join] = ACTIONS(2969), + [anon_sym_on] = ACTIONS(2969), + [anon_sym_equals] = ACTIONS(2969), + [anon_sym_let] = ACTIONS(2969), + [anon_sym_orderby] = ACTIONS(2969), + [anon_sym_ascending] = ACTIONS(2969), + [anon_sym_descending] = ACTIONS(2969), + [anon_sym_group] = ACTIONS(2969), + [anon_sym_by] = ACTIONS(2969), + [anon_sym_select] = ACTIONS(2969), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -504340,56 +503811,56 @@ 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(4957), - [anon_sym_LBRACK] = ACTIONS(4957), - [anon_sym_COLON] = ACTIONS(4957), - [anon_sym_COMMA] = ACTIONS(4957), - [anon_sym_RBRACK] = ACTIONS(4957), - [anon_sym_LPAREN] = ACTIONS(4957), - [anon_sym_RPAREN] = ACTIONS(4957), - [anon_sym_RBRACE] = ACTIONS(4957), - [anon_sym_LT] = ACTIONS(4959), - [anon_sym_GT] = ACTIONS(4959), - [anon_sym_in] = ACTIONS(4957), - [anon_sym_QMARK] = ACTIONS(4959), - [anon_sym_BANG] = ACTIONS(4959), - [anon_sym_PLUS_PLUS] = ACTIONS(4957), - [anon_sym_DASH_DASH] = ACTIONS(4957), - [anon_sym_PLUS] = ACTIONS(4959), - [anon_sym_DASH] = ACTIONS(4959), - [anon_sym_STAR] = ACTIONS(4957), - [anon_sym_SLASH] = ACTIONS(4959), - [anon_sym_PERCENT] = ACTIONS(4957), - [anon_sym_CARET] = ACTIONS(4957), - [anon_sym_PIPE] = ACTIONS(4959), - [anon_sym_AMP] = ACTIONS(4959), - [anon_sym_LT_LT] = ACTIONS(4957), - [anon_sym_GT_GT] = ACTIONS(4959), - [anon_sym_GT_GT_GT] = ACTIONS(4957), - [anon_sym_EQ_EQ] = ACTIONS(4957), - [anon_sym_BANG_EQ] = ACTIONS(4957), - [anon_sym_GT_EQ] = ACTIONS(4957), - [anon_sym_LT_EQ] = ACTIONS(4957), - [anon_sym_DOT] = ACTIONS(4959), - [anon_sym_EQ_GT] = ACTIONS(4957), - [anon_sym_switch] = ACTIONS(4957), - [anon_sym_when] = ACTIONS(4957), - [anon_sym_DOT_DOT] = ACTIONS(4957), - [anon_sym_and] = ACTIONS(4957), - [anon_sym_or] = ACTIONS(4957), - [anon_sym_AMP_AMP] = ACTIONS(4957), - [anon_sym_PIPE_PIPE] = ACTIONS(4957), - [anon_sym_QMARK_QMARK] = ACTIONS(4957), - [anon_sym_on] = ACTIONS(4957), - [anon_sym_equals] = ACTIONS(4957), - [anon_sym_by] = ACTIONS(4957), - [anon_sym_as] = ACTIONS(4957), - [anon_sym_is] = ACTIONS(4957), - [anon_sym_DASH_GT] = ACTIONS(4957), - [anon_sym_with] = ACTIONS(4957), - [aux_sym_preproc_if_token3] = ACTIONS(4957), - [aux_sym_preproc_else_token1] = ACTIONS(4957), - [aux_sym_preproc_elif_token1] = ACTIONS(4957), + [anon_sym_SEMI] = ACTIONS(2951), + [anon_sym_LBRACK] = ACTIONS(2951), + [anon_sym_COLON] = ACTIONS(2951), + [anon_sym_COMMA] = ACTIONS(2951), + [anon_sym_RBRACK] = ACTIONS(2951), + [anon_sym_LPAREN] = ACTIONS(2951), + [anon_sym_RPAREN] = ACTIONS(2951), + [anon_sym_RBRACE] = ACTIONS(2951), + [anon_sym_LT] = ACTIONS(2949), + [anon_sym_GT] = ACTIONS(2949), + [anon_sym_in] = ACTIONS(2951), + [anon_sym_QMARK] = ACTIONS(2949), + [anon_sym_BANG] = ACTIONS(2949), + [anon_sym_PLUS_PLUS] = ACTIONS(2951), + [anon_sym_DASH_DASH] = ACTIONS(2951), + [anon_sym_PLUS] = ACTIONS(2949), + [anon_sym_DASH] = ACTIONS(2949), + [anon_sym_STAR] = ACTIONS(2951), + [anon_sym_SLASH] = ACTIONS(2949), + [anon_sym_PERCENT] = ACTIONS(2951), + [anon_sym_CARET] = ACTIONS(2951), + [anon_sym_PIPE] = ACTIONS(2949), + [anon_sym_AMP] = ACTIONS(2949), + [anon_sym_LT_LT] = ACTIONS(2951), + [anon_sym_GT_GT] = ACTIONS(2949), + [anon_sym_GT_GT_GT] = ACTIONS(2951), + [anon_sym_EQ_EQ] = ACTIONS(2951), + [anon_sym_BANG_EQ] = ACTIONS(2951), + [anon_sym_GT_EQ] = ACTIONS(2951), + [anon_sym_LT_EQ] = ACTIONS(2951), + [anon_sym_DOT] = ACTIONS(2949), + [anon_sym_EQ_GT] = ACTIONS(2951), + [anon_sym_switch] = ACTIONS(2951), + [anon_sym_when] = ACTIONS(2951), + [anon_sym_DOT_DOT] = ACTIONS(2951), + [anon_sym_and] = ACTIONS(2951), + [anon_sym_or] = ACTIONS(2951), + [anon_sym_AMP_AMP] = ACTIONS(2951), + [anon_sym_PIPE_PIPE] = ACTIONS(2951), + [anon_sym_QMARK_QMARK] = ACTIONS(2951), + [anon_sym_on] = ACTIONS(2951), + [anon_sym_equals] = ACTIONS(2951), + [anon_sym_by] = ACTIONS(2951), + [anon_sym_as] = ACTIONS(2951), + [anon_sym_is] = ACTIONS(2951), + [anon_sym_DASH_GT] = ACTIONS(2951), + [anon_sym_with] = ACTIONS(2951), + [aux_sym_preproc_if_token3] = ACTIONS(2951), + [aux_sym_preproc_else_token1] = ACTIONS(2951), + [aux_sym_preproc_elif_token1] = ACTIONS(2951), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -504411,56 +503882,56 @@ 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(1981), - [anon_sym_LBRACK] = ACTIONS(1981), - [anon_sym_COLON] = ACTIONS(1981), - [anon_sym_COMMA] = ACTIONS(1981), - [anon_sym_RBRACK] = ACTIONS(1981), - [anon_sym_LPAREN] = ACTIONS(5544), - [anon_sym_RPAREN] = ACTIONS(1981), - [anon_sym_RBRACE] = ACTIONS(1981), - [anon_sym_LT] = ACTIONS(1979), - [anon_sym_GT] = ACTIONS(1979), - [anon_sym_in] = ACTIONS(1981), - [anon_sym_QMARK] = ACTIONS(1979), - [anon_sym_BANG] = ACTIONS(1979), - [anon_sym_PLUS_PLUS] = ACTIONS(1981), - [anon_sym_DASH_DASH] = ACTIONS(1981), - [anon_sym_PLUS] = ACTIONS(1979), - [anon_sym_DASH] = ACTIONS(1979), - [anon_sym_STAR] = ACTIONS(1981), - [anon_sym_SLASH] = ACTIONS(1979), - [anon_sym_PERCENT] = ACTIONS(1981), - [anon_sym_CARET] = ACTIONS(1981), - [anon_sym_PIPE] = ACTIONS(1979), - [anon_sym_AMP] = ACTIONS(1979), - [anon_sym_LT_LT] = ACTIONS(1981), - [anon_sym_GT_GT] = ACTIONS(1979), - [anon_sym_GT_GT_GT] = ACTIONS(1981), - [anon_sym_EQ_EQ] = ACTIONS(1981), - [anon_sym_BANG_EQ] = ACTIONS(1981), - [anon_sym_GT_EQ] = ACTIONS(1981), - [anon_sym_LT_EQ] = ACTIONS(1981), - [anon_sym_DOT] = ACTIONS(1979), - [anon_sym_EQ_GT] = ACTIONS(1981), - [anon_sym_switch] = ACTIONS(1981), - [anon_sym_when] = ACTIONS(1981), - [anon_sym_DOT_DOT] = ACTIONS(1981), - [anon_sym_and] = ACTIONS(1981), - [anon_sym_or] = ACTIONS(1981), - [anon_sym_AMP_AMP] = ACTIONS(1981), - [anon_sym_PIPE_PIPE] = ACTIONS(1981), - [anon_sym_QMARK_QMARK] = ACTIONS(1981), - [anon_sym_on] = ACTIONS(1981), - [anon_sym_equals] = ACTIONS(1981), - [anon_sym_by] = ACTIONS(1981), - [anon_sym_as] = ACTIONS(1981), - [anon_sym_is] = ACTIONS(1981), - [anon_sym_DASH_GT] = ACTIONS(1981), - [anon_sym_with] = ACTIONS(1981), - [aux_sym_preproc_if_token3] = ACTIONS(1981), - [aux_sym_preproc_else_token1] = ACTIONS(1981), - [aux_sym_preproc_elif_token1] = ACTIONS(1981), + [anon_sym_SEMI] = ACTIONS(3139), + [anon_sym_LBRACK] = ACTIONS(3139), + [anon_sym_COLON] = ACTIONS(3139), + [anon_sym_COMMA] = ACTIONS(3139), + [anon_sym_RBRACK] = ACTIONS(3139), + [anon_sym_LPAREN] = ACTIONS(3139), + [anon_sym_RPAREN] = ACTIONS(3139), + [anon_sym_RBRACE] = ACTIONS(3139), + [anon_sym_LT] = ACTIONS(3137), + [anon_sym_GT] = ACTIONS(3137), + [anon_sym_in] = ACTIONS(3139), + [anon_sym_QMARK] = ACTIONS(3137), + [anon_sym_BANG] = ACTIONS(3137), + [anon_sym_PLUS_PLUS] = ACTIONS(3139), + [anon_sym_DASH_DASH] = ACTIONS(3139), + [anon_sym_PLUS] = ACTIONS(3137), + [anon_sym_DASH] = ACTIONS(3137), + [anon_sym_STAR] = ACTIONS(3139), + [anon_sym_SLASH] = ACTIONS(3137), + [anon_sym_PERCENT] = ACTIONS(3139), + [anon_sym_CARET] = ACTIONS(3139), + [anon_sym_PIPE] = ACTIONS(3137), + [anon_sym_AMP] = ACTIONS(3137), + [anon_sym_LT_LT] = ACTIONS(3139), + [anon_sym_GT_GT] = ACTIONS(3137), + [anon_sym_GT_GT_GT] = ACTIONS(3139), + [anon_sym_EQ_EQ] = ACTIONS(3139), + [anon_sym_BANG_EQ] = ACTIONS(3139), + [anon_sym_GT_EQ] = ACTIONS(3139), + [anon_sym_LT_EQ] = ACTIONS(3139), + [anon_sym_DOT] = ACTIONS(3137), + [anon_sym_EQ_GT] = ACTIONS(3139), + [anon_sym_switch] = ACTIONS(3139), + [anon_sym_when] = ACTIONS(3139), + [anon_sym_DOT_DOT] = ACTIONS(3139), + [anon_sym_and] = ACTIONS(3139), + [anon_sym_or] = ACTIONS(3139), + [anon_sym_AMP_AMP] = ACTIONS(3139), + [anon_sym_PIPE_PIPE] = ACTIONS(3139), + [anon_sym_QMARK_QMARK] = ACTIONS(3139), + [anon_sym_on] = ACTIONS(3139), + [anon_sym_equals] = ACTIONS(3139), + [anon_sym_by] = ACTIONS(3139), + [anon_sym_as] = ACTIONS(3139), + [anon_sym_is] = ACTIONS(3139), + [anon_sym_DASH_GT] = ACTIONS(3139), + [anon_sym_with] = ACTIONS(3139), + [aux_sym_preproc_if_token3] = ACTIONS(3139), + [aux_sym_preproc_else_token1] = ACTIONS(3139), + [aux_sym_preproc_elif_token1] = ACTIONS(3139), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -504482,56 +503953,56 @@ 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(4977), - [anon_sym_LBRACK] = ACTIONS(4977), - [anon_sym_COLON] = ACTIONS(4977), - [anon_sym_COMMA] = ACTIONS(4977), - [anon_sym_RBRACK] = ACTIONS(4977), - [anon_sym_LPAREN] = ACTIONS(4977), - [anon_sym_RPAREN] = ACTIONS(4977), - [anon_sym_RBRACE] = ACTIONS(4977), - [anon_sym_LT] = ACTIONS(4979), - [anon_sym_GT] = ACTIONS(4979), - [anon_sym_in] = ACTIONS(4977), - [anon_sym_QMARK] = ACTIONS(4979), - [anon_sym_BANG] = ACTIONS(4979), - [anon_sym_PLUS_PLUS] = ACTIONS(4977), - [anon_sym_DASH_DASH] = ACTIONS(4977), - [anon_sym_PLUS] = ACTIONS(4979), - [anon_sym_DASH] = ACTIONS(4979), - [anon_sym_STAR] = ACTIONS(4977), - [anon_sym_SLASH] = ACTIONS(4979), - [anon_sym_PERCENT] = ACTIONS(4977), - [anon_sym_CARET] = ACTIONS(4977), - [anon_sym_PIPE] = ACTIONS(4979), - [anon_sym_AMP] = ACTIONS(4979), - [anon_sym_LT_LT] = ACTIONS(4977), - [anon_sym_GT_GT] = ACTIONS(4979), - [anon_sym_GT_GT_GT] = ACTIONS(4977), - [anon_sym_EQ_EQ] = ACTIONS(4977), - [anon_sym_BANG_EQ] = ACTIONS(4977), - [anon_sym_GT_EQ] = ACTIONS(4977), - [anon_sym_LT_EQ] = ACTIONS(4977), - [anon_sym_DOT] = ACTIONS(4979), - [anon_sym_EQ_GT] = ACTIONS(4977), - [anon_sym_switch] = ACTIONS(4977), - [anon_sym_when] = ACTIONS(4977), - [anon_sym_DOT_DOT] = ACTIONS(4977), - [anon_sym_and] = ACTIONS(4977), - [anon_sym_or] = ACTIONS(4977), - [anon_sym_AMP_AMP] = ACTIONS(4977), - [anon_sym_PIPE_PIPE] = ACTIONS(4977), - [anon_sym_QMARK_QMARK] = ACTIONS(4977), - [anon_sym_on] = ACTIONS(4977), - [anon_sym_equals] = ACTIONS(4977), - [anon_sym_by] = ACTIONS(4977), - [anon_sym_as] = ACTIONS(4977), - [anon_sym_is] = ACTIONS(4977), - [anon_sym_DASH_GT] = ACTIONS(4977), - [anon_sym_with] = ACTIONS(4977), - [aux_sym_preproc_if_token3] = ACTIONS(4977), - [aux_sym_preproc_else_token1] = ACTIONS(4977), - [aux_sym_preproc_elif_token1] = ACTIONS(4977), + [anon_sym_SEMI] = ACTIONS(5096), + [anon_sym_LBRACK] = ACTIONS(5096), + [anon_sym_COLON] = ACTIONS(5096), + [anon_sym_COMMA] = ACTIONS(5096), + [anon_sym_RBRACK] = ACTIONS(5096), + [anon_sym_LPAREN] = ACTIONS(5096), + [anon_sym_RPAREN] = ACTIONS(5096), + [anon_sym_RBRACE] = ACTIONS(5096), + [anon_sym_LT] = ACTIONS(5098), + [anon_sym_GT] = ACTIONS(5098), + [anon_sym_in] = ACTIONS(5096), + [anon_sym_QMARK] = ACTIONS(5098), + [anon_sym_BANG] = ACTIONS(5098), + [anon_sym_PLUS_PLUS] = ACTIONS(5096), + [anon_sym_DASH_DASH] = ACTIONS(5096), + [anon_sym_PLUS] = ACTIONS(5098), + [anon_sym_DASH] = ACTIONS(5098), + [anon_sym_STAR] = ACTIONS(5096), + [anon_sym_SLASH] = ACTIONS(5098), + [anon_sym_PERCENT] = ACTIONS(5096), + [anon_sym_CARET] = ACTIONS(5096), + [anon_sym_PIPE] = ACTIONS(5098), + [anon_sym_AMP] = ACTIONS(5098), + [anon_sym_LT_LT] = ACTIONS(5096), + [anon_sym_GT_GT] = ACTIONS(5098), + [anon_sym_GT_GT_GT] = ACTIONS(5096), + [anon_sym_EQ_EQ] = ACTIONS(5096), + [anon_sym_BANG_EQ] = ACTIONS(5096), + [anon_sym_GT_EQ] = ACTIONS(5096), + [anon_sym_LT_EQ] = ACTIONS(5096), + [anon_sym_DOT] = ACTIONS(5098), + [anon_sym_EQ_GT] = ACTIONS(5096), + [anon_sym_switch] = ACTIONS(5096), + [anon_sym_when] = ACTIONS(5096), + [anon_sym_DOT_DOT] = ACTIONS(5096), + [anon_sym_and] = ACTIONS(5096), + [anon_sym_or] = ACTIONS(5096), + [anon_sym_AMP_AMP] = ACTIONS(5096), + [anon_sym_PIPE_PIPE] = ACTIONS(5096), + [anon_sym_QMARK_QMARK] = ACTIONS(5096), + [anon_sym_on] = ACTIONS(5096), + [anon_sym_equals] = ACTIONS(5096), + [anon_sym_by] = ACTIONS(5096), + [anon_sym_as] = ACTIONS(5096), + [anon_sym_is] = ACTIONS(5096), + [anon_sym_DASH_GT] = ACTIONS(5096), + [anon_sym_with] = ACTIONS(5096), + [aux_sym_preproc_if_token3] = ACTIONS(5096), + [aux_sym_preproc_else_token1] = ACTIONS(5096), + [aux_sym_preproc_elif_token1] = ACTIONS(5096), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -504553,56 +504024,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), - [sym__identifier_token] = ACTIONS(5546), - [anon_sym_extern] = ACTIONS(5546), - [anon_sym_alias] = ACTIONS(5546), - [anon_sym_global] = ACTIONS(5546), - [anon_sym_unsafe] = ACTIONS(5546), - [anon_sym_static] = ACTIONS(5546), - [anon_sym_LBRACK] = ACTIONS(5548), - [anon_sym_RBRACE] = ACTIONS(5548), - [anon_sym_abstract] = ACTIONS(5546), - [anon_sym_async] = ACTIONS(5546), - [anon_sym_const] = ACTIONS(5546), - [anon_sym_file] = ACTIONS(5546), - [anon_sym_fixed] = ACTIONS(5546), - [anon_sym_internal] = ACTIONS(5546), - [anon_sym_new] = ACTIONS(5546), - [anon_sym_override] = ACTIONS(5546), - [anon_sym_partial] = ACTIONS(5546), - [anon_sym_private] = ACTIONS(5546), - [anon_sym_protected] = ACTIONS(5546), - [anon_sym_public] = ACTIONS(5546), - [anon_sym_readonly] = ACTIONS(5546), - [anon_sym_required] = ACTIONS(5546), - [anon_sym_sealed] = ACTIONS(5546), - [anon_sym_virtual] = ACTIONS(5546), - [anon_sym_volatile] = ACTIONS(5546), - [anon_sym_where] = ACTIONS(5546), - [anon_sym_notnull] = ACTIONS(5546), - [anon_sym_unmanaged] = ACTIONS(5546), - [anon_sym_get] = ACTIONS(5546), - [anon_sym_set] = ACTIONS(5546), - [anon_sym_add] = ACTIONS(5546), - [anon_sym_remove] = ACTIONS(5546), - [anon_sym_init] = ACTIONS(5546), - [anon_sym_scoped] = ACTIONS(5546), - [anon_sym_var] = ACTIONS(5546), - [anon_sym_yield] = ACTIONS(5546), - [anon_sym_when] = ACTIONS(5546), - [anon_sym_from] = ACTIONS(5546), - [anon_sym_into] = ACTIONS(5546), - [anon_sym_join] = ACTIONS(5546), - [anon_sym_on] = ACTIONS(5546), - [anon_sym_equals] = ACTIONS(5546), - [anon_sym_let] = ACTIONS(5546), - [anon_sym_orderby] = ACTIONS(5546), - [anon_sym_ascending] = ACTIONS(5546), - [anon_sym_descending] = ACTIONS(5546), - [anon_sym_group] = ACTIONS(5546), - [anon_sym_by] = ACTIONS(5546), - [anon_sym_select] = ACTIONS(5546), - [aux_sym_preproc_if_token1] = ACTIONS(5548), + [anon_sym_SEMI] = ACTIONS(5120), + [anon_sym_LBRACK] = ACTIONS(5120), + [anon_sym_COLON] = ACTIONS(5120), + [anon_sym_COMMA] = ACTIONS(5120), + [anon_sym_RBRACK] = ACTIONS(5120), + [anon_sym_LPAREN] = ACTIONS(5120), + [anon_sym_RPAREN] = ACTIONS(5120), + [anon_sym_RBRACE] = ACTIONS(5120), + [anon_sym_LT] = ACTIONS(5122), + [anon_sym_GT] = ACTIONS(5122), + [anon_sym_in] = ACTIONS(5120), + [anon_sym_QMARK] = ACTIONS(5122), + [anon_sym_BANG] = ACTIONS(5122), + [anon_sym_PLUS_PLUS] = ACTIONS(5120), + [anon_sym_DASH_DASH] = ACTIONS(5120), + [anon_sym_PLUS] = ACTIONS(5122), + [anon_sym_DASH] = ACTIONS(5122), + [anon_sym_STAR] = ACTIONS(5120), + [anon_sym_SLASH] = ACTIONS(5122), + [anon_sym_PERCENT] = ACTIONS(5120), + [anon_sym_CARET] = ACTIONS(5120), + [anon_sym_PIPE] = ACTIONS(5122), + [anon_sym_AMP] = ACTIONS(5122), + [anon_sym_LT_LT] = ACTIONS(5120), + [anon_sym_GT_GT] = ACTIONS(5122), + [anon_sym_GT_GT_GT] = ACTIONS(5120), + [anon_sym_EQ_EQ] = ACTIONS(5120), + [anon_sym_BANG_EQ] = ACTIONS(5120), + [anon_sym_GT_EQ] = ACTIONS(5120), + [anon_sym_LT_EQ] = ACTIONS(5120), + [anon_sym_DOT] = ACTIONS(5122), + [anon_sym_EQ_GT] = ACTIONS(5120), + [anon_sym_switch] = ACTIONS(5120), + [anon_sym_when] = ACTIONS(5120), + [anon_sym_DOT_DOT] = ACTIONS(5120), + [anon_sym_and] = ACTIONS(5120), + [anon_sym_or] = ACTIONS(5120), + [anon_sym_AMP_AMP] = ACTIONS(5120), + [anon_sym_PIPE_PIPE] = ACTIONS(5120), + [anon_sym_QMARK_QMARK] = ACTIONS(5120), + [anon_sym_on] = ACTIONS(5120), + [anon_sym_equals] = ACTIONS(5120), + [anon_sym_by] = ACTIONS(5120), + [anon_sym_as] = ACTIONS(5120), + [anon_sym_is] = ACTIONS(5120), + [anon_sym_DASH_GT] = ACTIONS(5120), + [anon_sym_with] = ACTIONS(5120), + [aux_sym_preproc_if_token3] = ACTIONS(5120), + [aux_sym_preproc_else_token1] = ACTIONS(5120), + [aux_sym_preproc_elif_token1] = ACTIONS(5120), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -504624,56 +504095,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), - [anon_sym_SEMI] = ACTIONS(2957), - [anon_sym_LBRACK] = ACTIONS(2957), - [anon_sym_COLON] = ACTIONS(2957), - [anon_sym_COMMA] = ACTIONS(2957), - [anon_sym_RBRACK] = ACTIONS(2957), - [anon_sym_LPAREN] = ACTIONS(2957), - [anon_sym_RPAREN] = ACTIONS(2957), - [anon_sym_RBRACE] = ACTIONS(2957), - [anon_sym_LT] = ACTIONS(2955), - [anon_sym_GT] = ACTIONS(2955), - [anon_sym_in] = ACTIONS(2957), - [anon_sym_QMARK] = ACTIONS(2955), - [anon_sym_BANG] = ACTIONS(2955), - [anon_sym_PLUS_PLUS] = ACTIONS(2957), - [anon_sym_DASH_DASH] = ACTIONS(2957), - [anon_sym_PLUS] = ACTIONS(2955), - [anon_sym_DASH] = ACTIONS(2955), - [anon_sym_STAR] = ACTIONS(2957), - [anon_sym_SLASH] = ACTIONS(2955), - [anon_sym_PERCENT] = ACTIONS(2957), - [anon_sym_CARET] = ACTIONS(2957), - [anon_sym_PIPE] = ACTIONS(2955), - [anon_sym_AMP] = ACTIONS(2955), - [anon_sym_LT_LT] = ACTIONS(2957), - [anon_sym_GT_GT] = ACTIONS(2955), - [anon_sym_GT_GT_GT] = ACTIONS(2957), - [anon_sym_EQ_EQ] = ACTIONS(2957), - [anon_sym_BANG_EQ] = ACTIONS(2957), - [anon_sym_GT_EQ] = ACTIONS(2957), - [anon_sym_LT_EQ] = ACTIONS(2957), - [anon_sym_DOT] = ACTIONS(2955), - [anon_sym_EQ_GT] = ACTIONS(2957), - [anon_sym_switch] = ACTIONS(2957), - [anon_sym_when] = ACTIONS(2957), - [anon_sym_DOT_DOT] = ACTIONS(2957), - [anon_sym_and] = ACTIONS(2957), - [anon_sym_or] = ACTIONS(2957), - [anon_sym_AMP_AMP] = ACTIONS(2957), - [anon_sym_PIPE_PIPE] = ACTIONS(2957), - [anon_sym_QMARK_QMARK] = ACTIONS(2957), - [anon_sym_on] = ACTIONS(2957), - [anon_sym_equals] = ACTIONS(2957), - [anon_sym_by] = ACTIONS(2957), - [anon_sym_as] = ACTIONS(2957), - [anon_sym_is] = ACTIONS(2957), - [anon_sym_DASH_GT] = ACTIONS(2957), - [anon_sym_with] = ACTIONS(2957), - [aux_sym_preproc_if_token3] = ACTIONS(2957), - [aux_sym_preproc_else_token1] = ACTIONS(2957), - [aux_sym_preproc_elif_token1] = ACTIONS(2957), + [anon_sym_EQ] = ACTIONS(5520), + [anon_sym_LBRACK] = ACTIONS(4811), + [anon_sym_COMMA] = ACTIONS(4811), + [anon_sym_RBRACK] = ACTIONS(4811), + [anon_sym_LPAREN] = ACTIONS(4811), + [anon_sym_RPAREN] = ACTIONS(4811), + [anon_sym_RBRACE] = ACTIONS(4811), + [anon_sym_LT] = ACTIONS(4813), + [anon_sym_GT] = ACTIONS(4813), + [anon_sym_QMARK] = ACTIONS(4813), + [anon_sym_BANG] = ACTIONS(4813), + [anon_sym_PLUS_PLUS] = ACTIONS(4811), + [anon_sym_DASH_DASH] = ACTIONS(4811), + [anon_sym_PLUS] = ACTIONS(4813), + [anon_sym_DASH] = ACTIONS(4813), + [anon_sym_STAR] = ACTIONS(4813), + [anon_sym_SLASH] = ACTIONS(4813), + [anon_sym_PERCENT] = ACTIONS(4813), + [anon_sym_CARET] = ACTIONS(4813), + [anon_sym_PIPE] = ACTIONS(4813), + [anon_sym_AMP] = ACTIONS(4813), + [anon_sym_LT_LT] = ACTIONS(4813), + [anon_sym_GT_GT] = ACTIONS(4813), + [anon_sym_GT_GT_GT] = ACTIONS(4813), + [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(4813), + [anon_sym_switch] = ACTIONS(4811), + [anon_sym_DOT_DOT] = ACTIONS(4811), + [anon_sym_PLUS_EQ] = ACTIONS(5522), + [anon_sym_DASH_EQ] = ACTIONS(5522), + [anon_sym_STAR_EQ] = ACTIONS(5522), + [anon_sym_SLASH_EQ] = ACTIONS(5522), + [anon_sym_PERCENT_EQ] = ACTIONS(5522), + [anon_sym_AMP_EQ] = ACTIONS(5522), + [anon_sym_CARET_EQ] = ACTIONS(5522), + [anon_sym_PIPE_EQ] = ACTIONS(5522), + [anon_sym_LT_LT_EQ] = ACTIONS(5522), + [anon_sym_GT_GT_EQ] = ACTIONS(5522), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(5522), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(5522), + [anon_sym_AMP_AMP] = ACTIONS(4811), + [anon_sym_PIPE_PIPE] = ACTIONS(4811), + [anon_sym_QMARK_QMARK] = ACTIONS(4813), + [anon_sym_as] = ACTIONS(4811), + [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), @@ -504686,6 +504157,26 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3469] = { + [sym__name] = STATE(6381), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(4068), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(4073), + [sym_type] = STATE(7451), + [sym_implicit_type] = STATE(7156), + [sym_array_type] = STATE(6671), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(6672), + [sym_pointer_type] = STATE(6672), + [sym__pointer_base_type] = STATE(7421), + [sym_function_pointer_type] = STATE(6672), + [sym_function_pointer_parameter] = STATE(7377), + [sym_ref_type] = STATE(7035), + [sym__ref_base_type] = STATE(7387), + [sym_scoped_type] = STATE(7035), + [sym_tuple_type] = STATE(6553), + [sym_identifier] = STATE(4081), + [sym__reserved_identifier] = STATE(3654), [sym_preproc_region] = STATE(3469), [sym_preproc_endregion] = STATE(3469), [sym_preproc_line] = STATE(3469), @@ -504695,56 +504186,36 @@ 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), - [anon_sym_SEMI] = ACTIONS(4271), - [anon_sym_LBRACK] = ACTIONS(5397), - [anon_sym_COLON] = ACTIONS(4271), - [anon_sym_COMMA] = ACTIONS(4271), - [anon_sym_RBRACK] = ACTIONS(4271), - [anon_sym_LPAREN] = ACTIONS(5397), - [anon_sym_RPAREN] = ACTIONS(4271), - [anon_sym_RBRACE] = ACTIONS(4271), - [anon_sym_LT] = ACTIONS(5400), - [anon_sym_GT] = ACTIONS(5400), - [anon_sym_in] = ACTIONS(4271), - [anon_sym_QMARK] = ACTIONS(5400), - [anon_sym_BANG] = ACTIONS(5400), - [anon_sym_PLUS_PLUS] = ACTIONS(5397), - [anon_sym_DASH_DASH] = ACTIONS(5397), - [anon_sym_PLUS] = ACTIONS(5400), - [anon_sym_DASH] = ACTIONS(5400), - [anon_sym_STAR] = ACTIONS(5397), - [anon_sym_SLASH] = ACTIONS(5400), - [anon_sym_PERCENT] = ACTIONS(5397), - [anon_sym_CARET] = ACTIONS(5397), - [anon_sym_PIPE] = ACTIONS(5400), - [anon_sym_AMP] = ACTIONS(5400), - [anon_sym_LT_LT] = ACTIONS(5397), - [anon_sym_GT_GT] = ACTIONS(5400), - [anon_sym_GT_GT_GT] = ACTIONS(5397), - [anon_sym_EQ_EQ] = ACTIONS(5397), - [anon_sym_BANG_EQ] = ACTIONS(5397), - [anon_sym_GT_EQ] = ACTIONS(5397), - [anon_sym_LT_EQ] = ACTIONS(5397), - [anon_sym_DOT] = ACTIONS(5400), - [anon_sym_EQ_GT] = ACTIONS(4271), - [anon_sym_switch] = ACTIONS(5397), - [anon_sym_when] = ACTIONS(4271), - [anon_sym_DOT_DOT] = ACTIONS(5397), - [anon_sym_and] = ACTIONS(4271), - [anon_sym_or] = ACTIONS(4271), - [anon_sym_AMP_AMP] = ACTIONS(5397), - [anon_sym_PIPE_PIPE] = ACTIONS(5397), - [anon_sym_QMARK_QMARK] = ACTIONS(5397), - [anon_sym_on] = ACTIONS(4271), - [anon_sym_equals] = ACTIONS(4271), - [anon_sym_by] = ACTIONS(4271), - [anon_sym_as] = ACTIONS(5397), - [anon_sym_is] = ACTIONS(5397), - [anon_sym_DASH_GT] = ACTIONS(5397), - [anon_sym_with] = ACTIONS(5397), - [aux_sym_preproc_if_token3] = ACTIONS(4271), - [aux_sym_preproc_else_token1] = ACTIONS(4271), - [aux_sym_preproc_elif_token1] = ACTIONS(4271), + [aux_sym_function_pointer_type_repeat1] = STATE(3476), + [sym__identifier_token] = ACTIONS(2965), + [anon_sym_alias] = ACTIONS(2969), + [anon_sym_global] = ACTIONS(2969), + [anon_sym_LPAREN] = ACTIONS(2977), + [anon_sym_ref] = ACTIONS(5450), + [anon_sym_delegate] = ACTIONS(5172), + [anon_sym_file] = ACTIONS(2969), + [anon_sym_in] = ACTIONS(5452), + [anon_sym_out] = ACTIONS(5452), + [anon_sym_where] = ACTIONS(2969), + [anon_sym_notnull] = ACTIONS(2969), + [anon_sym_unmanaged] = ACTIONS(2969), + [anon_sym_scoped] = ACTIONS(5454), + [anon_sym_var] = ACTIONS(4705), + [sym_predefined_type] = ACTIONS(5456), + [anon_sym_yield] = ACTIONS(2969), + [anon_sym_when] = ACTIONS(2969), + [anon_sym_from] = ACTIONS(2969), + [anon_sym_into] = ACTIONS(2969), + [anon_sym_join] = ACTIONS(2969), + [anon_sym_on] = ACTIONS(2969), + [anon_sym_equals] = ACTIONS(2969), + [anon_sym_let] = ACTIONS(2969), + [anon_sym_orderby] = ACTIONS(2969), + [anon_sym_ascending] = ACTIONS(2969), + [anon_sym_descending] = ACTIONS(2969), + [anon_sym_group] = ACTIONS(2969), + [anon_sym_by] = ACTIONS(2969), + [anon_sym_select] = ACTIONS(2969), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -504766,56 +504237,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(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(5020), + [anon_sym_LBRACK] = ACTIONS(5020), + [anon_sym_COLON] = ACTIONS(5020), + [anon_sym_COMMA] = ACTIONS(5020), + [anon_sym_RBRACK] = ACTIONS(5020), + [anon_sym_LPAREN] = ACTIONS(5020), + [anon_sym_RPAREN] = ACTIONS(5020), + [anon_sym_RBRACE] = ACTIONS(5020), + [anon_sym_LT] = ACTIONS(5022), + [anon_sym_GT] = ACTIONS(5022), + [anon_sym_in] = ACTIONS(5020), + [anon_sym_QMARK] = ACTIONS(5022), + [anon_sym_BANG] = ACTIONS(5022), + [anon_sym_PLUS_PLUS] = ACTIONS(5020), + [anon_sym_DASH_DASH] = ACTIONS(5020), + [anon_sym_PLUS] = ACTIONS(5022), + [anon_sym_DASH] = ACTIONS(5022), + [anon_sym_STAR] = ACTIONS(5020), + [anon_sym_SLASH] = ACTIONS(5022), + [anon_sym_PERCENT] = ACTIONS(5020), + [anon_sym_CARET] = ACTIONS(5020), + [anon_sym_PIPE] = ACTIONS(5022), + [anon_sym_AMP] = ACTIONS(5022), + [anon_sym_LT_LT] = ACTIONS(5020), + [anon_sym_GT_GT] = ACTIONS(5022), + [anon_sym_GT_GT_GT] = ACTIONS(5020), + [anon_sym_EQ_EQ] = ACTIONS(5020), + [anon_sym_BANG_EQ] = ACTIONS(5020), + [anon_sym_GT_EQ] = ACTIONS(5020), + [anon_sym_LT_EQ] = ACTIONS(5020), + [anon_sym_DOT] = ACTIONS(5022), + [anon_sym_EQ_GT] = ACTIONS(5020), + [anon_sym_switch] = ACTIONS(5020), + [anon_sym_when] = ACTIONS(5020), + [anon_sym_DOT_DOT] = ACTIONS(5020), + [anon_sym_and] = ACTIONS(5020), + [anon_sym_or] = ACTIONS(5020), + [anon_sym_AMP_AMP] = ACTIONS(5020), + [anon_sym_PIPE_PIPE] = ACTIONS(5020), + [anon_sym_QMARK_QMARK] = ACTIONS(5020), + [anon_sym_on] = ACTIONS(5020), + [anon_sym_equals] = ACTIONS(5020), + [anon_sym_by] = ACTIONS(5020), + [anon_sym_as] = ACTIONS(5020), + [anon_sym_is] = ACTIONS(5020), + [anon_sym_DASH_GT] = ACTIONS(5020), + [anon_sym_with] = ACTIONS(5020), + [aux_sym_preproc_if_token3] = ACTIONS(5020), + [aux_sym_preproc_else_token1] = ACTIONS(5020), + [aux_sym_preproc_elif_token1] = ACTIONS(5020), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -504837,56 +504308,56 @@ 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), - [anon_sym_SEMI] = ACTIONS(4981), - [anon_sym_LBRACK] = ACTIONS(4981), - [anon_sym_COLON] = ACTIONS(4981), - [anon_sym_COMMA] = ACTIONS(4981), - [anon_sym_RBRACK] = ACTIONS(4981), - [anon_sym_LPAREN] = ACTIONS(4981), - [anon_sym_RPAREN] = ACTIONS(4981), - [anon_sym_RBRACE] = ACTIONS(4981), - [anon_sym_LT] = ACTIONS(4983), - [anon_sym_GT] = ACTIONS(4983), - [anon_sym_in] = ACTIONS(4981), - [anon_sym_QMARK] = ACTIONS(4983), - [anon_sym_BANG] = ACTIONS(4983), - [anon_sym_PLUS_PLUS] = ACTIONS(4981), - [anon_sym_DASH_DASH] = ACTIONS(4981), - [anon_sym_PLUS] = ACTIONS(4983), - [anon_sym_DASH] = ACTIONS(4983), - [anon_sym_STAR] = ACTIONS(4981), - [anon_sym_SLASH] = ACTIONS(4983), - [anon_sym_PERCENT] = ACTIONS(4981), - [anon_sym_CARET] = ACTIONS(4981), - [anon_sym_PIPE] = ACTIONS(4983), - [anon_sym_AMP] = ACTIONS(4983), - [anon_sym_LT_LT] = ACTIONS(4981), - [anon_sym_GT_GT] = ACTIONS(4983), - [anon_sym_GT_GT_GT] = ACTIONS(4981), - [anon_sym_EQ_EQ] = ACTIONS(4981), - [anon_sym_BANG_EQ] = ACTIONS(4981), - [anon_sym_GT_EQ] = ACTIONS(4981), - [anon_sym_LT_EQ] = ACTIONS(4981), - [anon_sym_DOT] = ACTIONS(4983), - [anon_sym_EQ_GT] = ACTIONS(4981), - [anon_sym_switch] = ACTIONS(4981), - [anon_sym_when] = ACTIONS(4981), - [anon_sym_DOT_DOT] = ACTIONS(4981), - [anon_sym_and] = ACTIONS(4981), - [anon_sym_or] = ACTIONS(4981), - [anon_sym_AMP_AMP] = ACTIONS(4981), - [anon_sym_PIPE_PIPE] = ACTIONS(4981), - [anon_sym_QMARK_QMARK] = ACTIONS(4981), - [anon_sym_on] = ACTIONS(4981), - [anon_sym_equals] = ACTIONS(4981), - [anon_sym_by] = ACTIONS(4981), - [anon_sym_as] = ACTIONS(4981), - [anon_sym_is] = ACTIONS(4981), - [anon_sym_DASH_GT] = ACTIONS(4981), - [anon_sym_with] = ACTIONS(4981), - [aux_sym_preproc_if_token3] = ACTIONS(4981), - [aux_sym_preproc_else_token1] = ACTIONS(4981), - [aux_sym_preproc_elif_token1] = ACTIONS(4981), + [anon_sym_SEMI] = ACTIONS(5362), + [anon_sym_LBRACK] = ACTIONS(5362), + [anon_sym_COLON] = ACTIONS(5362), + [anon_sym_COMMA] = ACTIONS(5362), + [anon_sym_RBRACK] = ACTIONS(5362), + [anon_sym_LPAREN] = ACTIONS(5362), + [anon_sym_RPAREN] = ACTIONS(5362), + [anon_sym_RBRACE] = ACTIONS(5362), + [anon_sym_LT] = ACTIONS(5364), + [anon_sym_GT] = ACTIONS(5364), + [anon_sym_in] = ACTIONS(5362), + [anon_sym_QMARK] = ACTIONS(5364), + [anon_sym_BANG] = ACTIONS(5364), + [anon_sym_PLUS_PLUS] = ACTIONS(5362), + [anon_sym_DASH_DASH] = ACTIONS(5362), + [anon_sym_PLUS] = ACTIONS(5364), + [anon_sym_DASH] = ACTIONS(5364), + [anon_sym_STAR] = ACTIONS(5362), + [anon_sym_SLASH] = ACTIONS(5364), + [anon_sym_PERCENT] = ACTIONS(5362), + [anon_sym_CARET] = ACTIONS(5362), + [anon_sym_PIPE] = ACTIONS(5364), + [anon_sym_AMP] = ACTIONS(5364), + [anon_sym_LT_LT] = ACTIONS(5362), + [anon_sym_GT_GT] = ACTIONS(5364), + [anon_sym_GT_GT_GT] = ACTIONS(5362), + [anon_sym_EQ_EQ] = ACTIONS(5362), + [anon_sym_BANG_EQ] = ACTIONS(5362), + [anon_sym_GT_EQ] = ACTIONS(5362), + [anon_sym_LT_EQ] = ACTIONS(5362), + [anon_sym_DOT] = ACTIONS(5364), + [anon_sym_EQ_GT] = ACTIONS(5362), + [anon_sym_switch] = ACTIONS(5362), + [anon_sym_when] = ACTIONS(5362), + [anon_sym_DOT_DOT] = ACTIONS(5362), + [anon_sym_and] = ACTIONS(5362), + [anon_sym_or] = ACTIONS(5362), + [anon_sym_AMP_AMP] = ACTIONS(5362), + [anon_sym_PIPE_PIPE] = ACTIONS(5362), + [anon_sym_QMARK_QMARK] = ACTIONS(5362), + [anon_sym_on] = ACTIONS(5362), + [anon_sym_equals] = ACTIONS(5362), + [anon_sym_by] = ACTIONS(5362), + [anon_sym_as] = ACTIONS(5362), + [anon_sym_is] = ACTIONS(5362), + [anon_sym_DASH_GT] = ACTIONS(5362), + [anon_sym_with] = ACTIONS(5362), + [aux_sym_preproc_if_token3] = ACTIONS(5362), + [aux_sym_preproc_else_token1] = ACTIONS(5362), + [aux_sym_preproc_elif_token1] = ACTIONS(5362), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -504899,6 +504370,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3472] = { + [sym_argument_list] = STATE(2917), + [sym_initializer_expression] = STATE(3056), [sym_preproc_region] = STATE(3472), [sym_preproc_endregion] = STATE(3472), [sym_preproc_line] = STATE(3472), @@ -504908,56 +504381,54 @@ 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(4989), - [anon_sym_LBRACK] = ACTIONS(4989), - [anon_sym_COLON] = ACTIONS(4989), - [anon_sym_COMMA] = ACTIONS(4989), - [anon_sym_RBRACK] = ACTIONS(4989), - [anon_sym_LPAREN] = ACTIONS(4989), - [anon_sym_RPAREN] = ACTIONS(4989), - [anon_sym_RBRACE] = ACTIONS(4989), - [anon_sym_LT] = ACTIONS(4991), - [anon_sym_GT] = ACTIONS(4991), - [anon_sym_in] = ACTIONS(4989), - [anon_sym_QMARK] = ACTIONS(4991), - [anon_sym_BANG] = ACTIONS(4991), - [anon_sym_PLUS_PLUS] = ACTIONS(4989), - [anon_sym_DASH_DASH] = ACTIONS(4989), - [anon_sym_PLUS] = ACTIONS(4991), - [anon_sym_DASH] = ACTIONS(4991), - [anon_sym_STAR] = ACTIONS(4989), - [anon_sym_SLASH] = ACTIONS(4991), - [anon_sym_PERCENT] = ACTIONS(4989), - [anon_sym_CARET] = ACTIONS(4989), - [anon_sym_PIPE] = ACTIONS(4991), - [anon_sym_AMP] = ACTIONS(4991), - [anon_sym_LT_LT] = ACTIONS(4989), - [anon_sym_GT_GT] = ACTIONS(4991), - [anon_sym_GT_GT_GT] = ACTIONS(4989), - [anon_sym_EQ_EQ] = ACTIONS(4989), - [anon_sym_BANG_EQ] = ACTIONS(4989), - [anon_sym_GT_EQ] = ACTIONS(4989), - [anon_sym_LT_EQ] = ACTIONS(4989), - [anon_sym_DOT] = ACTIONS(4991), - [anon_sym_EQ_GT] = ACTIONS(4989), - [anon_sym_switch] = ACTIONS(4989), - [anon_sym_when] = ACTIONS(4989), - [anon_sym_DOT_DOT] = ACTIONS(4989), - [anon_sym_and] = ACTIONS(4989), - [anon_sym_or] = ACTIONS(4989), - [anon_sym_AMP_AMP] = ACTIONS(4989), - [anon_sym_PIPE_PIPE] = ACTIONS(4989), - [anon_sym_QMARK_QMARK] = ACTIONS(4989), - [anon_sym_on] = ACTIONS(4989), - [anon_sym_equals] = ACTIONS(4989), - [anon_sym_by] = ACTIONS(4989), - [anon_sym_as] = ACTIONS(4989), - [anon_sym_is] = ACTIONS(4989), - [anon_sym_DASH_GT] = ACTIONS(4989), - [anon_sym_with] = ACTIONS(4989), - [aux_sym_preproc_if_token3] = ACTIONS(4989), - [aux_sym_preproc_else_token1] = ACTIONS(4989), - [aux_sym_preproc_elif_token1] = ACTIONS(4989), + [anon_sym_SEMI] = ACTIONS(4751), + [anon_sym_LBRACK] = ACTIONS(4751), + [anon_sym_COLON] = ACTIONS(4751), + [anon_sym_COMMA] = ACTIONS(4751), + [anon_sym_RBRACK] = ACTIONS(4751), + [anon_sym_LPAREN] = ACTIONS(5257), + [anon_sym_RPAREN] = ACTIONS(4751), + [anon_sym_LBRACE] = ACTIONS(1481), + [anon_sym_RBRACE] = ACTIONS(4751), + [anon_sym_LT] = ACTIONS(4755), + [anon_sym_GT] = ACTIONS(4755), + [anon_sym_in] = ACTIONS(4751), + [anon_sym_QMARK] = ACTIONS(4755), + [anon_sym_BANG] = ACTIONS(4755), + [anon_sym_PLUS_PLUS] = ACTIONS(4751), + [anon_sym_DASH_DASH] = ACTIONS(4751), + [anon_sym_PLUS] = ACTIONS(4755), + [anon_sym_DASH] = ACTIONS(4755), + [anon_sym_STAR] = ACTIONS(4751), + [anon_sym_SLASH] = ACTIONS(4755), + [anon_sym_PERCENT] = ACTIONS(4751), + [anon_sym_CARET] = ACTIONS(4751), + [anon_sym_PIPE] = ACTIONS(4755), + [anon_sym_AMP] = ACTIONS(4755), + [anon_sym_LT_LT] = ACTIONS(4751), + [anon_sym_GT_GT] = ACTIONS(4755), + [anon_sym_GT_GT_GT] = ACTIONS(4751), + [anon_sym_EQ_EQ] = ACTIONS(4751), + [anon_sym_BANG_EQ] = ACTIONS(4751), + [anon_sym_GT_EQ] = ACTIONS(4751), + [anon_sym_LT_EQ] = ACTIONS(4751), + [anon_sym_DOT] = ACTIONS(4755), + [anon_sym_EQ_GT] = ACTIONS(4751), + [anon_sym_switch] = ACTIONS(4751), + [anon_sym_DOT_DOT] = ACTIONS(4751), + [anon_sym_AMP_AMP] = ACTIONS(4751), + [anon_sym_PIPE_PIPE] = ACTIONS(4751), + [anon_sym_QMARK_QMARK] = ACTIONS(4751), + [anon_sym_on] = ACTIONS(4751), + [anon_sym_equals] = ACTIONS(4751), + [anon_sym_by] = ACTIONS(4751), + [anon_sym_as] = ACTIONS(4751), + [anon_sym_is] = ACTIONS(4751), + [anon_sym_DASH_GT] = ACTIONS(4751), + [anon_sym_with] = ACTIONS(4751), + [aux_sym_preproc_if_token3] = ACTIONS(4751), + [aux_sym_preproc_else_token1] = ACTIONS(4751), + [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), @@ -504979,56 +504450,56 @@ 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(4997), - [anon_sym_LBRACK] = ACTIONS(4997), - [anon_sym_COLON] = ACTIONS(4997), - [anon_sym_COMMA] = ACTIONS(4997), - [anon_sym_RBRACK] = ACTIONS(4997), - [anon_sym_LPAREN] = ACTIONS(4997), - [anon_sym_RPAREN] = ACTIONS(4997), - [anon_sym_RBRACE] = ACTIONS(4997), - [anon_sym_LT] = ACTIONS(4999), - [anon_sym_GT] = ACTIONS(4999), - [anon_sym_in] = ACTIONS(4997), - [anon_sym_QMARK] = ACTIONS(4999), - [anon_sym_BANG] = ACTIONS(4999), - [anon_sym_PLUS_PLUS] = ACTIONS(4997), - [anon_sym_DASH_DASH] = ACTIONS(4997), - [anon_sym_PLUS] = ACTIONS(4999), - [anon_sym_DASH] = ACTIONS(4999), - [anon_sym_STAR] = ACTIONS(4997), - [anon_sym_SLASH] = ACTIONS(4999), - [anon_sym_PERCENT] = ACTIONS(4997), - [anon_sym_CARET] = ACTIONS(4997), - [anon_sym_PIPE] = ACTIONS(4999), - [anon_sym_AMP] = ACTIONS(4999), - [anon_sym_LT_LT] = ACTIONS(4997), - [anon_sym_GT_GT] = ACTIONS(4999), - [anon_sym_GT_GT_GT] = ACTIONS(4997), - [anon_sym_EQ_EQ] = ACTIONS(4997), - [anon_sym_BANG_EQ] = ACTIONS(4997), - [anon_sym_GT_EQ] = ACTIONS(4997), - [anon_sym_LT_EQ] = ACTIONS(4997), - [anon_sym_DOT] = ACTIONS(4999), - [anon_sym_EQ_GT] = ACTIONS(4997), - [anon_sym_switch] = ACTIONS(4997), - [anon_sym_when] = ACTIONS(4997), - [anon_sym_DOT_DOT] = ACTIONS(4997), - [anon_sym_and] = ACTIONS(4997), - [anon_sym_or] = ACTIONS(4997), - [anon_sym_AMP_AMP] = ACTIONS(4997), - [anon_sym_PIPE_PIPE] = ACTIONS(4997), - [anon_sym_QMARK_QMARK] = ACTIONS(4997), - [anon_sym_on] = ACTIONS(4997), - [anon_sym_equals] = ACTIONS(4997), - [anon_sym_by] = ACTIONS(4997), - [anon_sym_as] = ACTIONS(4997), - [anon_sym_is] = ACTIONS(4997), - [anon_sym_DASH_GT] = ACTIONS(4997), - [anon_sym_with] = ACTIONS(4997), - [aux_sym_preproc_if_token3] = ACTIONS(4997), - [aux_sym_preproc_else_token1] = ACTIONS(4997), - [aux_sym_preproc_elif_token1] = ACTIONS(4997), + [anon_sym_SEMI] = ACTIONS(5024), + [anon_sym_LBRACK] = ACTIONS(5024), + [anon_sym_COLON] = ACTIONS(5024), + [anon_sym_COMMA] = ACTIONS(5024), + [anon_sym_RBRACK] = ACTIONS(5024), + [anon_sym_LPAREN] = ACTIONS(5024), + [anon_sym_RPAREN] = ACTIONS(5024), + [anon_sym_RBRACE] = ACTIONS(5024), + [anon_sym_LT] = ACTIONS(5026), + [anon_sym_GT] = ACTIONS(5026), + [anon_sym_in] = ACTIONS(5024), + [anon_sym_QMARK] = ACTIONS(5026), + [anon_sym_BANG] = ACTIONS(5026), + [anon_sym_PLUS_PLUS] = ACTIONS(5024), + [anon_sym_DASH_DASH] = ACTIONS(5024), + [anon_sym_PLUS] = ACTIONS(5026), + [anon_sym_DASH] = ACTIONS(5026), + [anon_sym_STAR] = ACTIONS(5024), + [anon_sym_SLASH] = ACTIONS(5026), + [anon_sym_PERCENT] = ACTIONS(5024), + [anon_sym_CARET] = ACTIONS(5024), + [anon_sym_PIPE] = ACTIONS(5026), + [anon_sym_AMP] = ACTIONS(5026), + [anon_sym_LT_LT] = ACTIONS(5024), + [anon_sym_GT_GT] = ACTIONS(5026), + [anon_sym_GT_GT_GT] = ACTIONS(5024), + [anon_sym_EQ_EQ] = ACTIONS(5024), + [anon_sym_BANG_EQ] = ACTIONS(5024), + [anon_sym_GT_EQ] = ACTIONS(5024), + [anon_sym_LT_EQ] = ACTIONS(5024), + [anon_sym_DOT] = ACTIONS(5026), + [anon_sym_EQ_GT] = ACTIONS(5024), + [anon_sym_switch] = ACTIONS(5024), + [anon_sym_when] = ACTIONS(5024), + [anon_sym_DOT_DOT] = ACTIONS(5024), + [anon_sym_and] = ACTIONS(5024), + [anon_sym_or] = ACTIONS(5024), + [anon_sym_AMP_AMP] = ACTIONS(5024), + [anon_sym_PIPE_PIPE] = ACTIONS(5024), + [anon_sym_QMARK_QMARK] = ACTIONS(5024), + [anon_sym_on] = ACTIONS(5024), + [anon_sym_equals] = ACTIONS(5024), + [anon_sym_by] = ACTIONS(5024), + [anon_sym_as] = ACTIONS(5024), + [anon_sym_is] = ACTIONS(5024), + [anon_sym_DASH_GT] = ACTIONS(5024), + [anon_sym_with] = ACTIONS(5024), + [aux_sym_preproc_if_token3] = ACTIONS(5024), + [aux_sym_preproc_else_token1] = ACTIONS(5024), + [aux_sym_preproc_elif_token1] = ACTIONS(5024), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -505050,56 +504521,56 @@ 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(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), + [anon_sym_SEMI] = ACTIONS(5430), + [anon_sym_LBRACK] = ACTIONS(5430), + [anon_sym_COLON] = ACTIONS(5430), + [anon_sym_COMMA] = ACTIONS(5430), + [anon_sym_RBRACK] = ACTIONS(5430), + [anon_sym_LPAREN] = ACTIONS(5430), + [anon_sym_RPAREN] = ACTIONS(5430), + [anon_sym_RBRACE] = ACTIONS(5430), + [anon_sym_LT] = ACTIONS(5432), + [anon_sym_GT] = ACTIONS(5432), + [anon_sym_in] = ACTIONS(5430), + [anon_sym_QMARK] = ACTIONS(5432), + [anon_sym_BANG] = ACTIONS(5432), + [anon_sym_PLUS_PLUS] = ACTIONS(5430), + [anon_sym_DASH_DASH] = ACTIONS(5430), + [anon_sym_PLUS] = ACTIONS(5432), + [anon_sym_DASH] = ACTIONS(5432), + [anon_sym_STAR] = ACTIONS(5430), + [anon_sym_SLASH] = ACTIONS(5432), + [anon_sym_PERCENT] = ACTIONS(5430), + [anon_sym_CARET] = ACTIONS(5430), + [anon_sym_PIPE] = ACTIONS(5432), + [anon_sym_AMP] = ACTIONS(5432), + [anon_sym_LT_LT] = ACTIONS(5430), + [anon_sym_GT_GT] = ACTIONS(5432), + [anon_sym_GT_GT_GT] = ACTIONS(5430), + [anon_sym_EQ_EQ] = ACTIONS(5430), + [anon_sym_BANG_EQ] = ACTIONS(5430), + [anon_sym_GT_EQ] = ACTIONS(5430), + [anon_sym_LT_EQ] = ACTIONS(5430), + [anon_sym_DOT] = ACTIONS(5432), + [anon_sym_EQ_GT] = ACTIONS(5430), + [anon_sym_switch] = ACTIONS(5430), + [anon_sym_when] = ACTIONS(5430), + [anon_sym_DOT_DOT] = ACTIONS(5430), + [anon_sym_and] = ACTIONS(5430), + [anon_sym_or] = ACTIONS(5430), + [anon_sym_AMP_AMP] = ACTIONS(5430), + [anon_sym_PIPE_PIPE] = ACTIONS(5430), + [anon_sym_QMARK_QMARK] = ACTIONS(5430), + [anon_sym_on] = ACTIONS(5430), + [anon_sym_equals] = ACTIONS(5430), + [anon_sym_by] = ACTIONS(5430), + [anon_sym_as] = ACTIONS(5430), + [anon_sym_is] = ACTIONS(5430), + [anon_sym_DASH_GT] = ACTIONS(5430), + [anon_sym_with] = ACTIONS(5430), + [aux_sym_preproc_if_token3] = ACTIONS(5430), + [aux_sym_preproc_else_token1] = ACTIONS(5430), + [aux_sym_preproc_elif_token1] = ACTIONS(5430), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -505112,26 +504583,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3475] = { - [sym_type_parameter_constraint] = STATE(6514), - [sym_constructor_constraint] = STATE(6568), - [sym__name] = STATE(4390), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(4096), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(4109), - [sym_type] = STATE(6570), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_identifier] = STATE(4087), - [sym__reserved_identifier] = STATE(3691), [sym_preproc_region] = STATE(3475), [sym_preproc_endregion] = STATE(3475), [sym_preproc_line] = STATE(3475), @@ -505141,36 +504592,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), - [sym__identifier_token] = ACTIONS(2967), - [anon_sym_alias] = ACTIONS(2971), - [anon_sym_global] = ACTIONS(2971), - [anon_sym_LPAREN] = ACTIONS(2979), - [anon_sym_class] = ACTIONS(5528), - [anon_sym_ref] = ACTIONS(5530), - [anon_sym_struct] = ACTIONS(5532), - [anon_sym_delegate] = ACTIONS(3454), - [anon_sym_file] = ACTIONS(2971), - [anon_sym_new] = ACTIONS(5534), - [anon_sym_where] = ACTIONS(2971), - [anon_sym_notnull] = ACTIONS(5536), - [anon_sym_unmanaged] = ACTIONS(5536), - [anon_sym_scoped] = ACTIONS(5538), - [anon_sym_var] = ACTIONS(4737), - [sym_predefined_type] = ACTIONS(3001), - [anon_sym_yield] = ACTIONS(2971), - [anon_sym_when] = ACTIONS(2971), - [anon_sym_from] = ACTIONS(2971), - [anon_sym_into] = ACTIONS(2971), - [anon_sym_join] = ACTIONS(2971), - [anon_sym_on] = ACTIONS(2971), - [anon_sym_equals] = ACTIONS(2971), - [anon_sym_let] = ACTIONS(2971), - [anon_sym_orderby] = ACTIONS(2971), - [anon_sym_ascending] = ACTIONS(2971), - [anon_sym_descending] = ACTIONS(2971), - [anon_sym_group] = ACTIONS(2971), - [anon_sym_by] = ACTIONS(2971), - [anon_sym_select] = ACTIONS(2971), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -505183,26 +504654,26 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3476] = { - [sym__name] = STATE(6430), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(4096), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(4109), - [sym_type] = STATE(7331), - [sym_implicit_type] = STATE(7201), - [sym_array_type] = STATE(6648), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(6650), - [sym_pointer_type] = STATE(6650), - [sym__pointer_base_type] = STATE(7446), - [sym_function_pointer_type] = STATE(6650), - [sym_function_pointer_parameter] = STATE(7574), - [sym_ref_type] = STATE(7266), - [sym__ref_base_type] = STATE(7583), - [sym_scoped_type] = STATE(7266), - [sym_tuple_type] = STATE(6474), - [sym_identifier] = STATE(4087), - [sym__reserved_identifier] = STATE(3691), + [sym__name] = STATE(6381), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(4068), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(4073), + [sym_type] = STATE(7528), + [sym_implicit_type] = STATE(7156), + [sym_array_type] = STATE(6671), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(6672), + [sym_pointer_type] = STATE(6672), + [sym__pointer_base_type] = STATE(7421), + [sym_function_pointer_type] = STATE(6672), + [sym_function_pointer_parameter] = STATE(7377), + [sym_ref_type] = STATE(7035), + [sym__ref_base_type] = STATE(7387), + [sym_scoped_type] = STATE(7035), + [sym_tuple_type] = STATE(6553), + [sym_identifier] = STATE(4081), + [sym__reserved_identifier] = STATE(3654), [sym_preproc_region] = STATE(3476), [sym_preproc_endregion] = STATE(3476), [sym_preproc_line] = STATE(3476), @@ -505212,36 +504683,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), - [aux_sym_function_pointer_type_repeat1] = STATE(3482), - [sym__identifier_token] = ACTIONS(2967), - [anon_sym_alias] = ACTIONS(2971), - [anon_sym_global] = ACTIONS(2971), - [anon_sym_LPAREN] = ACTIONS(2979), - [anon_sym_ref] = ACTIONS(5472), - [anon_sym_delegate] = ACTIONS(5030), - [anon_sym_file] = ACTIONS(2971), - [anon_sym_in] = ACTIONS(5474), - [anon_sym_out] = ACTIONS(5474), - [anon_sym_where] = ACTIONS(2971), - [anon_sym_notnull] = ACTIONS(2971), - [anon_sym_unmanaged] = ACTIONS(2971), - [anon_sym_scoped] = ACTIONS(5476), - [anon_sym_var] = ACTIONS(4737), - [sym_predefined_type] = ACTIONS(5478), - [anon_sym_yield] = ACTIONS(2971), - [anon_sym_when] = ACTIONS(2971), - [anon_sym_from] = ACTIONS(2971), - [anon_sym_into] = ACTIONS(2971), - [anon_sym_join] = ACTIONS(2971), - [anon_sym_on] = ACTIONS(2971), - [anon_sym_equals] = ACTIONS(2971), - [anon_sym_let] = ACTIONS(2971), - [anon_sym_orderby] = ACTIONS(2971), - [anon_sym_ascending] = ACTIONS(2971), - [anon_sym_descending] = ACTIONS(2971), - [anon_sym_group] = ACTIONS(2971), - [anon_sym_by] = ACTIONS(2971), - [anon_sym_select] = ACTIONS(2971), + [aux_sym_function_pointer_type_repeat1] = STATE(3667), + [sym__identifier_token] = ACTIONS(2965), + [anon_sym_alias] = ACTIONS(2969), + [anon_sym_global] = ACTIONS(2969), + [anon_sym_LPAREN] = ACTIONS(2977), + [anon_sym_ref] = ACTIONS(5450), + [anon_sym_delegate] = ACTIONS(5172), + [anon_sym_file] = ACTIONS(2969), + [anon_sym_in] = ACTIONS(5452), + [anon_sym_out] = ACTIONS(5452), + [anon_sym_where] = ACTIONS(2969), + [anon_sym_notnull] = ACTIONS(2969), + [anon_sym_unmanaged] = ACTIONS(2969), + [anon_sym_scoped] = ACTIONS(5454), + [anon_sym_var] = ACTIONS(4705), + [sym_predefined_type] = ACTIONS(5456), + [anon_sym_yield] = ACTIONS(2969), + [anon_sym_when] = ACTIONS(2969), + [anon_sym_from] = ACTIONS(2969), + [anon_sym_into] = ACTIONS(2969), + [anon_sym_join] = ACTIONS(2969), + [anon_sym_on] = ACTIONS(2969), + [anon_sym_equals] = ACTIONS(2969), + [anon_sym_let] = ACTIONS(2969), + [anon_sym_orderby] = ACTIONS(2969), + [anon_sym_ascending] = ACTIONS(2969), + [anon_sym_descending] = ACTIONS(2969), + [anon_sym_group] = ACTIONS(2969), + [anon_sym_by] = ACTIONS(2969), + [anon_sym_select] = ACTIONS(2969), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -505254,6 +504725,26 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3477] = { + [sym_parameter_list] = STATE(7531), + [sym__name] = STATE(4369), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(4068), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(4073), + [sym_type] = STATE(5906), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym__lambda_parameters] = STATE(7609), + [sym_identifier] = STATE(5764), + [sym__reserved_identifier] = STATE(3654), [sym_preproc_region] = STATE(3477), [sym_preproc_endregion] = STATE(3477), [sym_preproc_line] = STATE(3477), @@ -505263,56 +504754,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(5383), - [anon_sym_LBRACK] = ACTIONS(5383), - [anon_sym_COLON] = ACTIONS(5383), - [anon_sym_COMMA] = ACTIONS(5383), - [anon_sym_RBRACK] = ACTIONS(5383), - [anon_sym_LPAREN] = ACTIONS(5383), - [anon_sym_RPAREN] = ACTIONS(5383), - [anon_sym_RBRACE] = ACTIONS(5383), - [anon_sym_LT] = ACTIONS(5385), - [anon_sym_GT] = ACTIONS(5385), - [anon_sym_in] = ACTIONS(5383), - [anon_sym_QMARK] = ACTIONS(5385), - [anon_sym_BANG] = ACTIONS(5385), - [anon_sym_PLUS_PLUS] = ACTIONS(5383), - [anon_sym_DASH_DASH] = ACTIONS(5383), - [anon_sym_PLUS] = ACTIONS(5385), - [anon_sym_DASH] = ACTIONS(5385), - [anon_sym_STAR] = ACTIONS(5383), - [anon_sym_SLASH] = ACTIONS(5385), - [anon_sym_PERCENT] = ACTIONS(5383), - [anon_sym_CARET] = ACTIONS(5383), - [anon_sym_PIPE] = ACTIONS(5385), - [anon_sym_AMP] = ACTIONS(5385), - [anon_sym_LT_LT] = ACTIONS(5383), - [anon_sym_GT_GT] = ACTIONS(5385), - [anon_sym_GT_GT_GT] = ACTIONS(5383), - [anon_sym_EQ_EQ] = ACTIONS(5383), - [anon_sym_BANG_EQ] = ACTIONS(5383), - [anon_sym_GT_EQ] = ACTIONS(5383), - [anon_sym_LT_EQ] = ACTIONS(5383), - [anon_sym_DOT] = ACTIONS(5385), - [anon_sym_EQ_GT] = ACTIONS(5383), - [anon_sym_switch] = ACTIONS(5383), - [anon_sym_when] = ACTIONS(5383), - [anon_sym_DOT_DOT] = ACTIONS(5383), - [anon_sym_and] = ACTIONS(5383), - [anon_sym_or] = ACTIONS(5383), - [anon_sym_AMP_AMP] = ACTIONS(5383), - [anon_sym_PIPE_PIPE] = ACTIONS(5383), - [anon_sym_QMARK_QMARK] = ACTIONS(5383), - [anon_sym_on] = ACTIONS(5383), - [anon_sym_equals] = ACTIONS(5383), - [anon_sym_by] = ACTIONS(5383), - [anon_sym_as] = ACTIONS(5383), - [anon_sym_is] = ACTIONS(5383), - [anon_sym_DASH_GT] = ACTIONS(5383), - [anon_sym_with] = ACTIONS(5383), - [aux_sym_preproc_if_token3] = ACTIONS(5383), - [aux_sym_preproc_else_token1] = ACTIONS(5383), - [aux_sym_preproc_elif_token1] = ACTIONS(5383), + [aux_sym__lambda_expression_init_repeat1] = STATE(5828), + [sym__identifier_token] = ACTIONS(2965), + [anon_sym_alias] = ACTIONS(2969), + [anon_sym_global] = ACTIONS(2969), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LPAREN] = ACTIONS(3786), + [anon_sym_ref] = ACTIONS(3436), + [anon_sym_delegate] = ACTIONS(5524), + [anon_sym_async] = ACTIONS(1045), + [anon_sym_file] = ACTIONS(2969), + [anon_sym_where] = ACTIONS(2969), + [anon_sym_notnull] = ACTIONS(2969), + [anon_sym_unmanaged] = ACTIONS(2969), + [anon_sym_scoped] = ACTIONS(2993), + [anon_sym_var] = ACTIONS(2995), + [sym_predefined_type] = ACTIONS(2997), + [anon_sym_yield] = ACTIONS(2969), + [anon_sym_when] = ACTIONS(2969), + [anon_sym_from] = ACTIONS(2969), + [anon_sym_into] = ACTIONS(2969), + [anon_sym_join] = ACTIONS(2969), + [anon_sym_on] = ACTIONS(2969), + [anon_sym_equals] = ACTIONS(2969), + [anon_sym_let] = ACTIONS(2969), + [anon_sym_orderby] = ACTIONS(2969), + [anon_sym_ascending] = ACTIONS(2969), + [anon_sym_descending] = ACTIONS(2969), + [anon_sym_group] = ACTIONS(2969), + [anon_sym_by] = ACTIONS(2969), + [anon_sym_select] = ACTIONS(2969), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -505325,24 +504796,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3478] = { - [sym__name] = STATE(4390), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(4096), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(4109), - [sym_type] = STATE(6109), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_identifier] = STATE(4087), - [sym__reserved_identifier] = STATE(3691), [sym_preproc_region] = STATE(3478), [sym_preproc_endregion] = STATE(3478), [sym_preproc_line] = STATE(3478), @@ -505352,38 +504805,56 @@ 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), - [aux_sym__parameter_type_with_modifiers_repeat1] = STATE(5781), - [sym__identifier_token] = ACTIONS(2967), - [anon_sym_alias] = ACTIONS(2971), - [anon_sym_global] = ACTIONS(2971), - [anon_sym_LPAREN] = ACTIONS(2979), - [anon_sym_ref] = ACTIONS(4691), - [anon_sym_delegate] = ACTIONS(3454), - [anon_sym_file] = ACTIONS(2971), - [anon_sym_readonly] = ACTIONS(1103), - [anon_sym_in] = ACTIONS(1103), - [anon_sym_out] = ACTIONS(1103), - [anon_sym_where] = ACTIONS(2971), - [anon_sym_notnull] = ACTIONS(2971), - [anon_sym_unmanaged] = ACTIONS(2971), - [anon_sym_this] = ACTIONS(1103), - [anon_sym_scoped] = ACTIONS(4711), - [anon_sym_var] = ACTIONS(2999), - [sym_predefined_type] = ACTIONS(3001), - [anon_sym_yield] = ACTIONS(2971), - [anon_sym_when] = ACTIONS(2971), - [anon_sym_from] = ACTIONS(2971), - [anon_sym_into] = ACTIONS(2971), - [anon_sym_join] = ACTIONS(2971), - [anon_sym_on] = ACTIONS(2971), - [anon_sym_equals] = ACTIONS(2971), - [anon_sym_let] = ACTIONS(2971), - [anon_sym_orderby] = ACTIONS(2971), - [anon_sym_ascending] = ACTIONS(2971), - [anon_sym_descending] = ACTIONS(2971), - [anon_sym_group] = ACTIONS(2971), - [anon_sym_by] = ACTIONS(2971), - [anon_sym_select] = ACTIONS(2971), + [anon_sym_SEMI] = ACTIONS(5028), + [anon_sym_LBRACK] = ACTIONS(5028), + [anon_sym_COLON] = ACTIONS(5028), + [anon_sym_COMMA] = ACTIONS(5028), + [anon_sym_RBRACK] = ACTIONS(5028), + [anon_sym_LPAREN] = ACTIONS(5028), + [anon_sym_RPAREN] = ACTIONS(5028), + [anon_sym_RBRACE] = ACTIONS(5028), + [anon_sym_LT] = ACTIONS(5030), + [anon_sym_GT] = ACTIONS(5030), + [anon_sym_in] = ACTIONS(5028), + [anon_sym_QMARK] = ACTIONS(5030), + [anon_sym_BANG] = ACTIONS(5030), + [anon_sym_PLUS_PLUS] = ACTIONS(5028), + [anon_sym_DASH_DASH] = ACTIONS(5028), + [anon_sym_PLUS] = ACTIONS(5030), + [anon_sym_DASH] = ACTIONS(5030), + [anon_sym_STAR] = ACTIONS(5028), + [anon_sym_SLASH] = ACTIONS(5030), + [anon_sym_PERCENT] = ACTIONS(5028), + [anon_sym_CARET] = ACTIONS(5028), + [anon_sym_PIPE] = ACTIONS(5030), + [anon_sym_AMP] = ACTIONS(5030), + [anon_sym_LT_LT] = ACTIONS(5028), + [anon_sym_GT_GT] = ACTIONS(5030), + [anon_sym_GT_GT_GT] = ACTIONS(5028), + [anon_sym_EQ_EQ] = ACTIONS(5028), + [anon_sym_BANG_EQ] = ACTIONS(5028), + [anon_sym_GT_EQ] = ACTIONS(5028), + [anon_sym_LT_EQ] = ACTIONS(5028), + [anon_sym_DOT] = ACTIONS(5030), + [anon_sym_EQ_GT] = ACTIONS(5028), + [anon_sym_switch] = ACTIONS(5028), + [anon_sym_when] = ACTIONS(5028), + [anon_sym_DOT_DOT] = ACTIONS(5028), + [anon_sym_and] = ACTIONS(5028), + [anon_sym_or] = ACTIONS(5028), + [anon_sym_AMP_AMP] = ACTIONS(5028), + [anon_sym_PIPE_PIPE] = ACTIONS(5028), + [anon_sym_QMARK_QMARK] = ACTIONS(5028), + [anon_sym_on] = ACTIONS(5028), + [anon_sym_equals] = ACTIONS(5028), + [anon_sym_by] = ACTIONS(5028), + [anon_sym_as] = ACTIONS(5028), + [anon_sym_is] = ACTIONS(5028), + [anon_sym_DASH_GT] = ACTIONS(5028), + [anon_sym_with] = ACTIONS(5028), + [aux_sym_preproc_if_token3] = ACTIONS(5028), + [aux_sym_preproc_else_token1] = ACTIONS(5028), + [aux_sym_preproc_elif_token1] = ACTIONS(5028), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -505396,6 +504867,26 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3479] = { + [sym__name] = STATE(6381), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(4068), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(4073), + [sym_type] = STATE(7528), + [sym_implicit_type] = STATE(7156), + [sym_array_type] = STATE(6671), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(6672), + [sym_pointer_type] = STATE(6672), + [sym__pointer_base_type] = STATE(7421), + [sym_function_pointer_type] = STATE(6672), + [sym_function_pointer_parameter] = STATE(7377), + [sym_ref_type] = STATE(7035), + [sym__ref_base_type] = STATE(7387), + [sym_scoped_type] = STATE(7035), + [sym_tuple_type] = STATE(6553), + [sym_identifier] = STATE(4081), + [sym__reserved_identifier] = STATE(3654), [sym_preproc_region] = STATE(3479), [sym_preproc_endregion] = STATE(3479), [sym_preproc_line] = STATE(3479), @@ -505405,56 +504896,36 @@ 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(3829), - [anon_sym_LBRACK] = ACTIONS(3829), - [anon_sym_COLON] = ACTIONS(3829), - [anon_sym_COMMA] = ACTIONS(3829), - [anon_sym_RBRACK] = ACTIONS(3829), - [anon_sym_LPAREN] = ACTIONS(3829), - [anon_sym_RPAREN] = ACTIONS(3829), - [anon_sym_RBRACE] = ACTIONS(3829), - [anon_sym_LT] = ACTIONS(5431), - [anon_sym_GT] = ACTIONS(5431), - [anon_sym_in] = ACTIONS(3829), - [anon_sym_QMARK] = ACTIONS(5431), - [anon_sym_BANG] = ACTIONS(5431), - [anon_sym_PLUS_PLUS] = ACTIONS(3829), - [anon_sym_DASH_DASH] = ACTIONS(3829), - [anon_sym_PLUS] = ACTIONS(5431), - [anon_sym_DASH] = ACTIONS(5431), - [anon_sym_STAR] = ACTIONS(3829), - [anon_sym_SLASH] = ACTIONS(5431), - [anon_sym_PERCENT] = ACTIONS(3829), - [anon_sym_CARET] = ACTIONS(3829), - [anon_sym_PIPE] = ACTIONS(5431), - [anon_sym_AMP] = ACTIONS(5431), - [anon_sym_LT_LT] = ACTIONS(3829), - [anon_sym_GT_GT] = ACTIONS(5431), - [anon_sym_GT_GT_GT] = ACTIONS(3829), - [anon_sym_EQ_EQ] = ACTIONS(3829), - [anon_sym_BANG_EQ] = ACTIONS(3829), - [anon_sym_GT_EQ] = ACTIONS(3829), - [anon_sym_LT_EQ] = ACTIONS(3829), - [anon_sym_DOT] = ACTIONS(5431), - [anon_sym_EQ_GT] = ACTIONS(3829), - [anon_sym_switch] = ACTIONS(3829), - [anon_sym_when] = ACTIONS(3829), - [anon_sym_DOT_DOT] = ACTIONS(3829), - [anon_sym_and] = ACTIONS(3829), - [anon_sym_or] = ACTIONS(3829), - [anon_sym_AMP_AMP] = ACTIONS(3829), - [anon_sym_PIPE_PIPE] = ACTIONS(3829), - [anon_sym_QMARK_QMARK] = ACTIONS(3829), - [anon_sym_on] = ACTIONS(3829), - [anon_sym_equals] = ACTIONS(3829), - [anon_sym_by] = ACTIONS(3829), - [anon_sym_as] = ACTIONS(3829), - [anon_sym_is] = ACTIONS(3829), - [anon_sym_DASH_GT] = ACTIONS(3829), - [anon_sym_with] = ACTIONS(3829), - [aux_sym_preproc_if_token3] = ACTIONS(3829), - [aux_sym_preproc_else_token1] = ACTIONS(3829), - [aux_sym_preproc_elif_token1] = ACTIONS(3829), + [aux_sym_function_pointer_type_repeat1] = STATE(3480), + [sym__identifier_token] = ACTIONS(2965), + [anon_sym_alias] = ACTIONS(2969), + [anon_sym_global] = ACTIONS(2969), + [anon_sym_LPAREN] = ACTIONS(2977), + [anon_sym_ref] = ACTIONS(5450), + [anon_sym_delegate] = ACTIONS(5172), + [anon_sym_file] = ACTIONS(2969), + [anon_sym_in] = ACTIONS(5452), + [anon_sym_out] = ACTIONS(5452), + [anon_sym_where] = ACTIONS(2969), + [anon_sym_notnull] = ACTIONS(2969), + [anon_sym_unmanaged] = ACTIONS(2969), + [anon_sym_scoped] = ACTIONS(5454), + [anon_sym_var] = ACTIONS(4705), + [sym_predefined_type] = ACTIONS(5456), + [anon_sym_yield] = ACTIONS(2969), + [anon_sym_when] = ACTIONS(2969), + [anon_sym_from] = ACTIONS(2969), + [anon_sym_into] = ACTIONS(2969), + [anon_sym_join] = ACTIONS(2969), + [anon_sym_on] = ACTIONS(2969), + [anon_sym_equals] = ACTIONS(2969), + [anon_sym_let] = ACTIONS(2969), + [anon_sym_orderby] = ACTIONS(2969), + [anon_sym_ascending] = ACTIONS(2969), + [anon_sym_descending] = ACTIONS(2969), + [anon_sym_group] = ACTIONS(2969), + [anon_sym_by] = ACTIONS(2969), + [anon_sym_select] = ACTIONS(2969), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -505467,6 +504938,26 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3480] = { + [sym__name] = STATE(6381), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(4068), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(4073), + [sym_type] = STATE(7605), + [sym_implicit_type] = STATE(7156), + [sym_array_type] = STATE(6671), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(6672), + [sym_pointer_type] = STATE(6672), + [sym__pointer_base_type] = STATE(7421), + [sym_function_pointer_type] = STATE(6672), + [sym_function_pointer_parameter] = STATE(7377), + [sym_ref_type] = STATE(7035), + [sym__ref_base_type] = STATE(7387), + [sym_scoped_type] = STATE(7035), + [sym_tuple_type] = STATE(6553), + [sym_identifier] = STATE(4081), + [sym__reserved_identifier] = STATE(3654), [sym_preproc_region] = STATE(3480), [sym_preproc_endregion] = STATE(3480), [sym_preproc_line] = STATE(3480), @@ -505476,56 +504967,36 @@ 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(5387), - [anon_sym_LBRACK] = ACTIONS(5387), - [anon_sym_COLON] = ACTIONS(5387), - [anon_sym_COMMA] = ACTIONS(5387), - [anon_sym_RBRACK] = ACTIONS(5387), - [anon_sym_LPAREN] = ACTIONS(5387), - [anon_sym_RPAREN] = ACTIONS(5387), - [anon_sym_RBRACE] = ACTIONS(5387), - [anon_sym_LT] = ACTIONS(5389), - [anon_sym_GT] = ACTIONS(5389), - [anon_sym_in] = ACTIONS(5387), - [anon_sym_QMARK] = ACTIONS(5389), - [anon_sym_BANG] = ACTIONS(5389), - [anon_sym_PLUS_PLUS] = ACTIONS(5387), - [anon_sym_DASH_DASH] = ACTIONS(5387), - [anon_sym_PLUS] = ACTIONS(5389), - [anon_sym_DASH] = ACTIONS(5389), - [anon_sym_STAR] = ACTIONS(5387), - [anon_sym_SLASH] = ACTIONS(5389), - [anon_sym_PERCENT] = ACTIONS(5387), - [anon_sym_CARET] = ACTIONS(5387), - [anon_sym_PIPE] = ACTIONS(5389), - [anon_sym_AMP] = ACTIONS(5389), - [anon_sym_LT_LT] = ACTIONS(5387), - [anon_sym_GT_GT] = ACTIONS(5389), - [anon_sym_GT_GT_GT] = ACTIONS(5387), - [anon_sym_EQ_EQ] = ACTIONS(5387), - [anon_sym_BANG_EQ] = ACTIONS(5387), - [anon_sym_GT_EQ] = ACTIONS(5387), - [anon_sym_LT_EQ] = ACTIONS(5387), - [anon_sym_DOT] = ACTIONS(5389), - [anon_sym_EQ_GT] = ACTIONS(5387), - [anon_sym_switch] = ACTIONS(5387), - [anon_sym_when] = ACTIONS(5387), - [anon_sym_DOT_DOT] = ACTIONS(5387), - [anon_sym_and] = ACTIONS(5387), - [anon_sym_or] = ACTIONS(5387), - [anon_sym_AMP_AMP] = ACTIONS(5387), - [anon_sym_PIPE_PIPE] = ACTIONS(5387), - [anon_sym_QMARK_QMARK] = ACTIONS(5387), - [anon_sym_on] = ACTIONS(5387), - [anon_sym_equals] = ACTIONS(5387), - [anon_sym_by] = ACTIONS(5387), - [anon_sym_as] = ACTIONS(5387), - [anon_sym_is] = ACTIONS(5387), - [anon_sym_DASH_GT] = ACTIONS(5387), - [anon_sym_with] = ACTIONS(5387), - [aux_sym_preproc_if_token3] = ACTIONS(5387), - [aux_sym_preproc_else_token1] = ACTIONS(5387), - [aux_sym_preproc_elif_token1] = ACTIONS(5387), + [aux_sym_function_pointer_type_repeat1] = STATE(3667), + [sym__identifier_token] = ACTIONS(2965), + [anon_sym_alias] = ACTIONS(2969), + [anon_sym_global] = ACTIONS(2969), + [anon_sym_LPAREN] = ACTIONS(2977), + [anon_sym_ref] = ACTIONS(5450), + [anon_sym_delegate] = ACTIONS(5172), + [anon_sym_file] = ACTIONS(2969), + [anon_sym_in] = ACTIONS(5452), + [anon_sym_out] = ACTIONS(5452), + [anon_sym_where] = ACTIONS(2969), + [anon_sym_notnull] = ACTIONS(2969), + [anon_sym_unmanaged] = ACTIONS(2969), + [anon_sym_scoped] = ACTIONS(5454), + [anon_sym_var] = ACTIONS(4705), + [sym_predefined_type] = ACTIONS(5456), + [anon_sym_yield] = ACTIONS(2969), + [anon_sym_when] = ACTIONS(2969), + [anon_sym_from] = ACTIONS(2969), + [anon_sym_into] = ACTIONS(2969), + [anon_sym_join] = ACTIONS(2969), + [anon_sym_on] = ACTIONS(2969), + [anon_sym_equals] = ACTIONS(2969), + [anon_sym_let] = ACTIONS(2969), + [anon_sym_orderby] = ACTIONS(2969), + [anon_sym_ascending] = ACTIONS(2969), + [anon_sym_descending] = ACTIONS(2969), + [anon_sym_group] = ACTIONS(2969), + [anon_sym_by] = ACTIONS(2969), + [anon_sym_select] = ACTIONS(2969), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -505547,56 +505018,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(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), + [anon_sym_SEMI] = ACTIONS(5032), + [anon_sym_LBRACK] = ACTIONS(5032), + [anon_sym_COLON] = ACTIONS(5032), + [anon_sym_COMMA] = ACTIONS(5032), + [anon_sym_RBRACK] = ACTIONS(5032), + [anon_sym_LPAREN] = ACTIONS(5032), + [anon_sym_RPAREN] = ACTIONS(5032), + [anon_sym_RBRACE] = ACTIONS(5032), + [anon_sym_LT] = ACTIONS(5034), + [anon_sym_GT] = ACTIONS(5034), + [anon_sym_in] = ACTIONS(5032), + [anon_sym_QMARK] = ACTIONS(5034), + [anon_sym_BANG] = ACTIONS(5034), + [anon_sym_PLUS_PLUS] = ACTIONS(5032), + [anon_sym_DASH_DASH] = ACTIONS(5032), + [anon_sym_PLUS] = ACTIONS(5034), + [anon_sym_DASH] = ACTIONS(5034), + [anon_sym_STAR] = ACTIONS(5032), + [anon_sym_SLASH] = ACTIONS(5034), + [anon_sym_PERCENT] = ACTIONS(5032), + [anon_sym_CARET] = ACTIONS(5032), + [anon_sym_PIPE] = ACTIONS(5034), + [anon_sym_AMP] = ACTIONS(5034), + [anon_sym_LT_LT] = ACTIONS(5032), + [anon_sym_GT_GT] = ACTIONS(5034), + [anon_sym_GT_GT_GT] = ACTIONS(5032), + [anon_sym_EQ_EQ] = ACTIONS(5032), + [anon_sym_BANG_EQ] = ACTIONS(5032), + [anon_sym_GT_EQ] = ACTIONS(5032), + [anon_sym_LT_EQ] = ACTIONS(5032), + [anon_sym_DOT] = ACTIONS(5034), + [anon_sym_EQ_GT] = ACTIONS(5032), + [anon_sym_switch] = ACTIONS(5032), + [anon_sym_when] = ACTIONS(5032), + [anon_sym_DOT_DOT] = ACTIONS(5032), + [anon_sym_and] = ACTIONS(5032), + [anon_sym_or] = ACTIONS(5032), + [anon_sym_AMP_AMP] = ACTIONS(5032), + [anon_sym_PIPE_PIPE] = ACTIONS(5032), + [anon_sym_QMARK_QMARK] = ACTIONS(5032), + [anon_sym_on] = ACTIONS(5032), + [anon_sym_equals] = ACTIONS(5032), + [anon_sym_by] = ACTIONS(5032), + [anon_sym_as] = ACTIONS(5032), + [anon_sym_is] = ACTIONS(5032), + [anon_sym_DASH_GT] = ACTIONS(5032), + [anon_sym_with] = ACTIONS(5032), + [aux_sym_preproc_if_token3] = ACTIONS(5032), + [aux_sym_preproc_else_token1] = ACTIONS(5032), + [aux_sym_preproc_elif_token1] = ACTIONS(5032), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -505609,26 +505080,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3482] = { - [sym__name] = STATE(6430), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(4096), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(4109), - [sym_type] = STATE(7658), - [sym_implicit_type] = STATE(7201), - [sym_array_type] = STATE(6648), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(6650), - [sym_pointer_type] = STATE(6650), - [sym__pointer_base_type] = STATE(7446), - [sym_function_pointer_type] = STATE(6650), - [sym_function_pointer_parameter] = STATE(7574), - [sym_ref_type] = STATE(7266), - [sym__ref_base_type] = STATE(7583), - [sym_scoped_type] = STATE(7266), - [sym_tuple_type] = STATE(6474), - [sym_identifier] = STATE(4087), - [sym__reserved_identifier] = STATE(3691), [sym_preproc_region] = STATE(3482), [sym_preproc_endregion] = STATE(3482), [sym_preproc_line] = STATE(3482), @@ -505638,36 +505089,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_function_pointer_type_repeat1] = STATE(3670), - [sym__identifier_token] = ACTIONS(2967), - [anon_sym_alias] = ACTIONS(2971), - [anon_sym_global] = ACTIONS(2971), - [anon_sym_LPAREN] = ACTIONS(2979), - [anon_sym_ref] = ACTIONS(5472), - [anon_sym_delegate] = ACTIONS(5030), - [anon_sym_file] = ACTIONS(2971), - [anon_sym_in] = ACTIONS(5474), - [anon_sym_out] = ACTIONS(5474), - [anon_sym_where] = ACTIONS(2971), - [anon_sym_notnull] = ACTIONS(2971), - [anon_sym_unmanaged] = ACTIONS(2971), - [anon_sym_scoped] = ACTIONS(5476), - [anon_sym_var] = ACTIONS(4737), - [sym_predefined_type] = ACTIONS(5478), - [anon_sym_yield] = ACTIONS(2971), - [anon_sym_when] = ACTIONS(2971), - [anon_sym_from] = ACTIONS(2971), - [anon_sym_into] = ACTIONS(2971), - [anon_sym_join] = ACTIONS(2971), - [anon_sym_on] = ACTIONS(2971), - [anon_sym_equals] = ACTIONS(2971), - [anon_sym_let] = ACTIONS(2971), - [anon_sym_orderby] = ACTIONS(2971), - [anon_sym_ascending] = ACTIONS(2971), - [anon_sym_descending] = ACTIONS(2971), - [anon_sym_group] = ACTIONS(2971), - [anon_sym_by] = ACTIONS(2971), - [anon_sym_select] = ACTIONS(2971), + [anon_sym_SEMI] = ACTIONS(5036), + [anon_sym_LBRACK] = ACTIONS(5036), + [anon_sym_COLON] = ACTIONS(5036), + [anon_sym_COMMA] = ACTIONS(5036), + [anon_sym_RBRACK] = ACTIONS(5036), + [anon_sym_LPAREN] = ACTIONS(5036), + [anon_sym_RPAREN] = ACTIONS(5036), + [anon_sym_RBRACE] = ACTIONS(5036), + [anon_sym_LT] = ACTIONS(5038), + [anon_sym_GT] = ACTIONS(5038), + [anon_sym_in] = ACTIONS(5036), + [anon_sym_QMARK] = ACTIONS(5038), + [anon_sym_BANG] = ACTIONS(5038), + [anon_sym_PLUS_PLUS] = ACTIONS(5036), + [anon_sym_DASH_DASH] = ACTIONS(5036), + [anon_sym_PLUS] = ACTIONS(5038), + [anon_sym_DASH] = ACTIONS(5038), + [anon_sym_STAR] = ACTIONS(5036), + [anon_sym_SLASH] = ACTIONS(5038), + [anon_sym_PERCENT] = ACTIONS(5036), + [anon_sym_CARET] = ACTIONS(5036), + [anon_sym_PIPE] = ACTIONS(5038), + [anon_sym_AMP] = ACTIONS(5038), + [anon_sym_LT_LT] = ACTIONS(5036), + [anon_sym_GT_GT] = ACTIONS(5038), + [anon_sym_GT_GT_GT] = ACTIONS(5036), + [anon_sym_EQ_EQ] = ACTIONS(5036), + [anon_sym_BANG_EQ] = ACTIONS(5036), + [anon_sym_GT_EQ] = ACTIONS(5036), + [anon_sym_LT_EQ] = ACTIONS(5036), + [anon_sym_DOT] = ACTIONS(5038), + [anon_sym_EQ_GT] = ACTIONS(5036), + [anon_sym_switch] = ACTIONS(5036), + [anon_sym_when] = ACTIONS(5036), + [anon_sym_DOT_DOT] = ACTIONS(5036), + [anon_sym_and] = ACTIONS(5036), + [anon_sym_or] = ACTIONS(5036), + [anon_sym_AMP_AMP] = ACTIONS(5036), + [anon_sym_PIPE_PIPE] = ACTIONS(5036), + [anon_sym_QMARK_QMARK] = ACTIONS(5036), + [anon_sym_on] = ACTIONS(5036), + [anon_sym_equals] = ACTIONS(5036), + [anon_sym_by] = ACTIONS(5036), + [anon_sym_as] = ACTIONS(5036), + [anon_sym_is] = ACTIONS(5036), + [anon_sym_DASH_GT] = ACTIONS(5036), + [anon_sym_with] = ACTIONS(5036), + [aux_sym_preproc_if_token3] = ACTIONS(5036), + [aux_sym_preproc_else_token1] = ACTIONS(5036), + [aux_sym_preproc_elif_token1] = ACTIONS(5036), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -505680,26 +505151,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3483] = { - [sym__name] = STATE(6430), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(4096), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(4109), - [sym_type] = STATE(7658), - [sym_implicit_type] = STATE(7201), - [sym_array_type] = STATE(6648), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(6650), - [sym_pointer_type] = STATE(6650), - [sym__pointer_base_type] = STATE(7446), - [sym_function_pointer_type] = STATE(6650), - [sym_function_pointer_parameter] = STATE(7574), - [sym_ref_type] = STATE(7266), - [sym__ref_base_type] = STATE(7583), - [sym_scoped_type] = STATE(7266), - [sym_tuple_type] = STATE(6474), - [sym_identifier] = STATE(4087), - [sym__reserved_identifier] = STATE(3691), [sym_preproc_region] = STATE(3483), [sym_preproc_endregion] = STATE(3483), [sym_preproc_line] = STATE(3483), @@ -505709,36 +505160,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), - [aux_sym_function_pointer_type_repeat1] = STATE(3488), - [sym__identifier_token] = ACTIONS(2967), - [anon_sym_alias] = ACTIONS(2971), - [anon_sym_global] = ACTIONS(2971), - [anon_sym_LPAREN] = ACTIONS(2979), - [anon_sym_ref] = ACTIONS(5472), - [anon_sym_delegate] = ACTIONS(5030), - [anon_sym_file] = ACTIONS(2971), - [anon_sym_in] = ACTIONS(5474), - [anon_sym_out] = ACTIONS(5474), - [anon_sym_where] = ACTIONS(2971), - [anon_sym_notnull] = ACTIONS(2971), - [anon_sym_unmanaged] = ACTIONS(2971), - [anon_sym_scoped] = ACTIONS(5476), - [anon_sym_var] = ACTIONS(4737), - [sym_predefined_type] = ACTIONS(5478), - [anon_sym_yield] = ACTIONS(2971), - [anon_sym_when] = ACTIONS(2971), - [anon_sym_from] = ACTIONS(2971), - [anon_sym_into] = ACTIONS(2971), - [anon_sym_join] = ACTIONS(2971), - [anon_sym_on] = ACTIONS(2971), - [anon_sym_equals] = ACTIONS(2971), - [anon_sym_let] = ACTIONS(2971), - [anon_sym_orderby] = ACTIONS(2971), - [anon_sym_ascending] = ACTIONS(2971), - [anon_sym_descending] = ACTIONS(2971), - [anon_sym_group] = ACTIONS(2971), - [anon_sym_by] = ACTIONS(2971), - [anon_sym_select] = ACTIONS(2971), + [anon_sym_SEMI] = ACTIONS(2031), + [anon_sym_LBRACK] = ACTIONS(2031), + [anon_sym_COLON] = ACTIONS(2031), + [anon_sym_COMMA] = ACTIONS(2031), + [anon_sym_RBRACK] = ACTIONS(2031), + [anon_sym_LPAREN] = ACTIONS(5526), + [anon_sym_RPAREN] = ACTIONS(2031), + [anon_sym_RBRACE] = ACTIONS(2031), + [anon_sym_LT] = ACTIONS(2029), + [anon_sym_GT] = ACTIONS(2029), + [anon_sym_in] = ACTIONS(2031), + [anon_sym_QMARK] = ACTIONS(2029), + [anon_sym_BANG] = ACTIONS(2029), + [anon_sym_PLUS_PLUS] = ACTIONS(2031), + [anon_sym_DASH_DASH] = ACTIONS(2031), + [anon_sym_PLUS] = ACTIONS(2029), + [anon_sym_DASH] = ACTIONS(2029), + [anon_sym_STAR] = ACTIONS(2031), + [anon_sym_SLASH] = ACTIONS(2029), + [anon_sym_PERCENT] = ACTIONS(2031), + [anon_sym_CARET] = ACTIONS(2031), + [anon_sym_PIPE] = ACTIONS(2029), + [anon_sym_AMP] = ACTIONS(2029), + [anon_sym_LT_LT] = ACTIONS(2031), + [anon_sym_GT_GT] = ACTIONS(2029), + [anon_sym_GT_GT_GT] = ACTIONS(2031), + [anon_sym_EQ_EQ] = ACTIONS(2031), + [anon_sym_BANG_EQ] = ACTIONS(2031), + [anon_sym_GT_EQ] = ACTIONS(2031), + [anon_sym_LT_EQ] = ACTIONS(2031), + [anon_sym_DOT] = ACTIONS(2029), + [anon_sym_EQ_GT] = ACTIONS(2031), + [anon_sym_switch] = ACTIONS(2031), + [anon_sym_when] = ACTIONS(2031), + [anon_sym_DOT_DOT] = ACTIONS(2031), + [anon_sym_and] = ACTIONS(2031), + [anon_sym_or] = ACTIONS(2031), + [anon_sym_AMP_AMP] = ACTIONS(2031), + [anon_sym_PIPE_PIPE] = ACTIONS(2031), + [anon_sym_QMARK_QMARK] = ACTIONS(2031), + [anon_sym_on] = ACTIONS(2031), + [anon_sym_equals] = ACTIONS(2031), + [anon_sym_by] = ACTIONS(2031), + [anon_sym_as] = ACTIONS(2031), + [anon_sym_is] = ACTIONS(2031), + [anon_sym_DASH_GT] = ACTIONS(2031), + [anon_sym_with] = ACTIONS(2031), + [aux_sym_preproc_if_token3] = ACTIONS(2031), + [aux_sym_preproc_else_token1] = ACTIONS(2031), + [aux_sym_preproc_elif_token1] = ACTIONS(2031), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -505751,7 +505222,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3484] = { - [sym_initializer_expression] = STATE(3056), [sym_preproc_region] = STATE(3484), [sym_preproc_endregion] = STATE(3484), [sym_preproc_line] = STATE(3484), @@ -505761,55 +505231,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), - [anon_sym_SEMI] = ACTIONS(4916), - [anon_sym_LBRACK] = ACTIONS(4912), - [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(5550), - [anon_sym_RBRACE] = ACTIONS(4916), - [anon_sym_LT] = ACTIONS(4922), - [anon_sym_GT] = ACTIONS(4922), - [anon_sym_in] = ACTIONS(4922), - [anon_sym_QMARK] = ACTIONS(5553), - [anon_sym_BANG] = ACTIONS(4922), - [anon_sym_PLUS_PLUS] = ACTIONS(4916), - [anon_sym_DASH_DASH] = ACTIONS(4916), - [anon_sym_PLUS] = ACTIONS(4922), - [anon_sym_DASH] = ACTIONS(4922), - [anon_sym_STAR] = ACTIONS(4916), - [anon_sym_SLASH] = ACTIONS(4922), - [anon_sym_PERCENT] = ACTIONS(4916), - [anon_sym_CARET] = ACTIONS(4916), - [anon_sym_PIPE] = ACTIONS(4922), - [anon_sym_AMP] = ACTIONS(4922), - [anon_sym_LT_LT] = ACTIONS(4916), - [anon_sym_GT_GT] = ACTIONS(4922), - [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(4922), - [anon_sym_EQ_GT] = ACTIONS(4916), - [anon_sym_switch] = ACTIONS(4916), - [anon_sym_DOT_DOT] = 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(5528), + [anon_sym_LBRACK] = ACTIONS(4811), + [anon_sym_LPAREN] = ACTIONS(4811), + [anon_sym_LT] = ACTIONS(4813), + [anon_sym_GT] = ACTIONS(4813), + [anon_sym_QMARK] = ACTIONS(4813), + [anon_sym_BANG] = ACTIONS(4813), + [anon_sym_PLUS_PLUS] = ACTIONS(4811), + [anon_sym_DASH_DASH] = ACTIONS(4811), + [anon_sym_PLUS] = ACTIONS(4813), + [anon_sym_DASH] = ACTIONS(4813), + [anon_sym_STAR] = ACTIONS(4813), + [anon_sym_SLASH] = ACTIONS(4813), + [anon_sym_PERCENT] = ACTIONS(4813), + [anon_sym_CARET] = ACTIONS(4813), + [anon_sym_PIPE] = ACTIONS(4813), + [anon_sym_AMP] = ACTIONS(4813), + [anon_sym_LT_LT] = ACTIONS(4813), + [anon_sym_GT_GT] = ACTIONS(4813), + [anon_sym_GT_GT_GT] = ACTIONS(4813), + [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(4813), + [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_PLUS_EQ] = ACTIONS(5530), + [anon_sym_DASH_EQ] = ACTIONS(5530), + [anon_sym_STAR_EQ] = ACTIONS(5530), + [anon_sym_SLASH_EQ] = ACTIONS(5530), + [anon_sym_PERCENT_EQ] = ACTIONS(5530), + [anon_sym_AMP_EQ] = ACTIONS(5530), + [anon_sym_CARET_EQ] = ACTIONS(5530), + [anon_sym_PIPE_EQ] = ACTIONS(5530), + [anon_sym_LT_LT_EQ] = ACTIONS(5530), + [anon_sym_GT_GT_EQ] = ACTIONS(5530), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(5530), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(5530), + [anon_sym_AMP_AMP] = ACTIONS(4811), + [anon_sym_PIPE_PIPE] = ACTIONS(4811), + [anon_sym_QMARK_QMARK] = ACTIONS(4813), + [anon_sym_as] = ACTIONS(4811), + [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), @@ -505831,56 +505302,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), - [anon_sym_SEMI] = ACTIONS(5094), - [anon_sym_LBRACK] = ACTIONS(5094), - [anon_sym_COLON] = ACTIONS(5094), - [anon_sym_COMMA] = ACTIONS(5094), - [anon_sym_RBRACK] = ACTIONS(5094), - [anon_sym_LPAREN] = ACTIONS(5094), - [anon_sym_RPAREN] = ACTIONS(5094), - [anon_sym_RBRACE] = ACTIONS(5094), - [anon_sym_LT] = ACTIONS(5096), - [anon_sym_GT] = ACTIONS(5096), - [anon_sym_in] = ACTIONS(5094), - [anon_sym_QMARK] = ACTIONS(5096), - [anon_sym_BANG] = ACTIONS(5096), - [anon_sym_PLUS_PLUS] = ACTIONS(5094), - [anon_sym_DASH_DASH] = ACTIONS(5094), - [anon_sym_PLUS] = ACTIONS(5096), - [anon_sym_DASH] = ACTIONS(5096), - [anon_sym_STAR] = ACTIONS(5094), - [anon_sym_SLASH] = ACTIONS(5096), - [anon_sym_PERCENT] = ACTIONS(5094), - [anon_sym_CARET] = ACTIONS(5094), - [anon_sym_PIPE] = ACTIONS(5096), - [anon_sym_AMP] = ACTIONS(5096), - [anon_sym_LT_LT] = ACTIONS(5094), - [anon_sym_GT_GT] = ACTIONS(5096), - [anon_sym_GT_GT_GT] = ACTIONS(5094), - [anon_sym_EQ_EQ] = ACTIONS(5094), - [anon_sym_BANG_EQ] = ACTIONS(5094), - [anon_sym_GT_EQ] = ACTIONS(5094), - [anon_sym_LT_EQ] = ACTIONS(5094), - [anon_sym_DOT] = ACTIONS(5096), - [anon_sym_EQ_GT] = ACTIONS(5094), - [anon_sym_switch] = ACTIONS(5094), - [anon_sym_when] = ACTIONS(5094), - [anon_sym_DOT_DOT] = ACTIONS(5094), - [anon_sym_and] = ACTIONS(5094), - [anon_sym_or] = ACTIONS(5094), - [anon_sym_AMP_AMP] = ACTIONS(5094), - [anon_sym_PIPE_PIPE] = ACTIONS(5094), - [anon_sym_QMARK_QMARK] = ACTIONS(5094), - [anon_sym_on] = ACTIONS(5094), - [anon_sym_equals] = ACTIONS(5094), - [anon_sym_by] = ACTIONS(5094), - [anon_sym_as] = ACTIONS(5094), - [anon_sym_is] = ACTIONS(5094), - [anon_sym_DASH_GT] = ACTIONS(5094), - [anon_sym_with] = ACTIONS(5094), - [aux_sym_preproc_if_token3] = ACTIONS(5094), - [aux_sym_preproc_else_token1] = ACTIONS(5094), - [aux_sym_preproc_elif_token1] = ACTIONS(5094), + [anon_sym_SEMI] = ACTIONS(5104), + [anon_sym_LBRACK] = ACTIONS(5104), + [anon_sym_COLON] = ACTIONS(5104), + [anon_sym_COMMA] = ACTIONS(5104), + [anon_sym_RBRACK] = ACTIONS(5104), + [anon_sym_LPAREN] = ACTIONS(5104), + [anon_sym_RPAREN] = ACTIONS(5104), + [anon_sym_RBRACE] = ACTIONS(5104), + [anon_sym_LT] = ACTIONS(5106), + [anon_sym_GT] = ACTIONS(5106), + [anon_sym_in] = ACTIONS(5104), + [anon_sym_QMARK] = ACTIONS(5106), + [anon_sym_BANG] = ACTIONS(5106), + [anon_sym_PLUS_PLUS] = ACTIONS(5104), + [anon_sym_DASH_DASH] = ACTIONS(5104), + [anon_sym_PLUS] = ACTIONS(5106), + [anon_sym_DASH] = ACTIONS(5106), + [anon_sym_STAR] = ACTIONS(5104), + [anon_sym_SLASH] = ACTIONS(5106), + [anon_sym_PERCENT] = ACTIONS(5104), + [anon_sym_CARET] = ACTIONS(5104), + [anon_sym_PIPE] = ACTIONS(5106), + [anon_sym_AMP] = ACTIONS(5106), + [anon_sym_LT_LT] = ACTIONS(5104), + [anon_sym_GT_GT] = ACTIONS(5106), + [anon_sym_GT_GT_GT] = ACTIONS(5104), + [anon_sym_EQ_EQ] = ACTIONS(5104), + [anon_sym_BANG_EQ] = ACTIONS(5104), + [anon_sym_GT_EQ] = ACTIONS(5104), + [anon_sym_LT_EQ] = ACTIONS(5104), + [anon_sym_DOT] = ACTIONS(5106), + [anon_sym_EQ_GT] = ACTIONS(5104), + [anon_sym_switch] = ACTIONS(5104), + [anon_sym_when] = ACTIONS(5104), + [anon_sym_DOT_DOT] = ACTIONS(5104), + [anon_sym_and] = ACTIONS(5104), + [anon_sym_or] = ACTIONS(5104), + [anon_sym_AMP_AMP] = ACTIONS(5104), + [anon_sym_PIPE_PIPE] = ACTIONS(5104), + [anon_sym_QMARK_QMARK] = ACTIONS(5104), + [anon_sym_on] = ACTIONS(5104), + [anon_sym_equals] = ACTIONS(5104), + [anon_sym_by] = ACTIONS(5104), + [anon_sym_as] = ACTIONS(5104), + [anon_sym_is] = ACTIONS(5104), + [anon_sym_DASH_GT] = ACTIONS(5104), + [anon_sym_with] = ACTIONS(5104), + [aux_sym_preproc_if_token3] = ACTIONS(5104), + [aux_sym_preproc_else_token1] = ACTIONS(5104), + [aux_sym_preproc_elif_token1] = ACTIONS(5104), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -505902,56 +505373,56 @@ 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), - [anon_sym_SEMI] = ACTIONS(5373), - [anon_sym_LBRACK] = ACTIONS(5373), - [anon_sym_COLON] = ACTIONS(5373), - [anon_sym_COMMA] = ACTIONS(5373), - [anon_sym_RBRACK] = ACTIONS(5373), - [anon_sym_LPAREN] = ACTIONS(5373), - [anon_sym_RPAREN] = ACTIONS(5373), - [anon_sym_RBRACE] = ACTIONS(5373), - [anon_sym_LT] = ACTIONS(5375), - [anon_sym_GT] = ACTIONS(5375), - [anon_sym_in] = ACTIONS(5373), - [anon_sym_QMARK] = ACTIONS(5375), - [anon_sym_BANG] = ACTIONS(5375), - [anon_sym_PLUS_PLUS] = ACTIONS(5373), - [anon_sym_DASH_DASH] = ACTIONS(5373), - [anon_sym_PLUS] = ACTIONS(5375), - [anon_sym_DASH] = ACTIONS(5375), - [anon_sym_STAR] = ACTIONS(5373), - [anon_sym_SLASH] = ACTIONS(5375), - [anon_sym_PERCENT] = ACTIONS(5373), - [anon_sym_CARET] = ACTIONS(5373), - [anon_sym_PIPE] = ACTIONS(5375), - [anon_sym_AMP] = ACTIONS(5375), - [anon_sym_LT_LT] = ACTIONS(5373), - [anon_sym_GT_GT] = ACTIONS(5375), - [anon_sym_GT_GT_GT] = ACTIONS(5373), - [anon_sym_EQ_EQ] = ACTIONS(5373), - [anon_sym_BANG_EQ] = ACTIONS(5373), - [anon_sym_GT_EQ] = ACTIONS(5373), - [anon_sym_LT_EQ] = ACTIONS(5373), - [anon_sym_DOT] = ACTIONS(5375), - [anon_sym_EQ_GT] = ACTIONS(5373), - [anon_sym_switch] = ACTIONS(5373), - [anon_sym_when] = ACTIONS(5373), - [anon_sym_DOT_DOT] = ACTIONS(5373), - [anon_sym_and] = ACTIONS(5373), - [anon_sym_or] = ACTIONS(5373), - [anon_sym_AMP_AMP] = ACTIONS(5373), - [anon_sym_PIPE_PIPE] = ACTIONS(5373), - [anon_sym_QMARK_QMARK] = ACTIONS(5373), - [anon_sym_on] = ACTIONS(5373), - [anon_sym_equals] = ACTIONS(5373), - [anon_sym_by] = ACTIONS(5373), - [anon_sym_as] = ACTIONS(5373), - [anon_sym_is] = ACTIONS(5373), - [anon_sym_DASH_GT] = ACTIONS(5373), - [anon_sym_with] = ACTIONS(5373), - [aux_sym_preproc_if_token3] = ACTIONS(5373), - [aux_sym_preproc_else_token1] = ACTIONS(5373), - [aux_sym_preproc_elif_token1] = ACTIONS(5373), + [anon_sym_SEMI] = ACTIONS(5044), + [anon_sym_LBRACK] = ACTIONS(5044), + [anon_sym_COLON] = ACTIONS(5044), + [anon_sym_COMMA] = ACTIONS(5044), + [anon_sym_RBRACK] = ACTIONS(5044), + [anon_sym_LPAREN] = ACTIONS(5044), + [anon_sym_RPAREN] = ACTIONS(5044), + [anon_sym_RBRACE] = ACTIONS(5044), + [anon_sym_LT] = ACTIONS(5046), + [anon_sym_GT] = ACTIONS(5046), + [anon_sym_in] = ACTIONS(5044), + [anon_sym_QMARK] = ACTIONS(5046), + [anon_sym_BANG] = ACTIONS(5046), + [anon_sym_PLUS_PLUS] = ACTIONS(5044), + [anon_sym_DASH_DASH] = ACTIONS(5044), + [anon_sym_PLUS] = ACTIONS(5046), + [anon_sym_DASH] = ACTIONS(5046), + [anon_sym_STAR] = ACTIONS(5044), + [anon_sym_SLASH] = ACTIONS(5046), + [anon_sym_PERCENT] = ACTIONS(5044), + [anon_sym_CARET] = ACTIONS(5044), + [anon_sym_PIPE] = ACTIONS(5046), + [anon_sym_AMP] = ACTIONS(5046), + [anon_sym_LT_LT] = ACTIONS(5044), + [anon_sym_GT_GT] = ACTIONS(5046), + [anon_sym_GT_GT_GT] = ACTIONS(5044), + [anon_sym_EQ_EQ] = ACTIONS(5044), + [anon_sym_BANG_EQ] = ACTIONS(5044), + [anon_sym_GT_EQ] = ACTIONS(5044), + [anon_sym_LT_EQ] = ACTIONS(5044), + [anon_sym_DOT] = ACTIONS(5046), + [anon_sym_EQ_GT] = ACTIONS(5044), + [anon_sym_switch] = ACTIONS(5044), + [anon_sym_when] = ACTIONS(5044), + [anon_sym_DOT_DOT] = ACTIONS(5044), + [anon_sym_and] = ACTIONS(5044), + [anon_sym_or] = ACTIONS(5044), + [anon_sym_AMP_AMP] = ACTIONS(5044), + [anon_sym_PIPE_PIPE] = ACTIONS(5044), + [anon_sym_QMARK_QMARK] = ACTIONS(5044), + [anon_sym_on] = ACTIONS(5044), + [anon_sym_equals] = ACTIONS(5044), + [anon_sym_by] = ACTIONS(5044), + [anon_sym_as] = ACTIONS(5044), + [anon_sym_is] = ACTIONS(5044), + [anon_sym_DASH_GT] = ACTIONS(5044), + [anon_sym_with] = ACTIONS(5044), + [aux_sym_preproc_if_token3] = ACTIONS(5044), + [aux_sym_preproc_else_token1] = ACTIONS(5044), + [aux_sym_preproc_elif_token1] = ACTIONS(5044), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -505973,56 +505444,56 @@ 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), - [anon_sym_SEMI] = ACTIONS(5134), - [anon_sym_LBRACK] = ACTIONS(5134), - [anon_sym_COLON] = ACTIONS(5134), - [anon_sym_COMMA] = ACTIONS(5134), - [anon_sym_RBRACK] = ACTIONS(5134), - [anon_sym_LPAREN] = ACTIONS(5134), - [anon_sym_RPAREN] = ACTIONS(5134), - [anon_sym_RBRACE] = ACTIONS(5134), - [anon_sym_LT] = ACTIONS(5136), - [anon_sym_GT] = ACTIONS(5136), - [anon_sym_in] = ACTIONS(5134), - [anon_sym_QMARK] = ACTIONS(5136), - [anon_sym_BANG] = ACTIONS(5136), - [anon_sym_PLUS_PLUS] = ACTIONS(5134), - [anon_sym_DASH_DASH] = ACTIONS(5134), - [anon_sym_PLUS] = ACTIONS(5136), - [anon_sym_DASH] = ACTIONS(5136), - [anon_sym_STAR] = ACTIONS(5134), - [anon_sym_SLASH] = ACTIONS(5136), - [anon_sym_PERCENT] = ACTIONS(5134), - [anon_sym_CARET] = ACTIONS(5134), - [anon_sym_PIPE] = ACTIONS(5136), - [anon_sym_AMP] = ACTIONS(5136), - [anon_sym_LT_LT] = ACTIONS(5134), - [anon_sym_GT_GT] = ACTIONS(5136), - [anon_sym_GT_GT_GT] = ACTIONS(5134), - [anon_sym_EQ_EQ] = ACTIONS(5134), - [anon_sym_BANG_EQ] = ACTIONS(5134), - [anon_sym_GT_EQ] = ACTIONS(5134), - [anon_sym_LT_EQ] = ACTIONS(5134), - [anon_sym_DOT] = ACTIONS(5136), - [anon_sym_EQ_GT] = ACTIONS(5134), - [anon_sym_switch] = ACTIONS(5134), - [anon_sym_when] = ACTIONS(5134), - [anon_sym_DOT_DOT] = ACTIONS(5134), - [anon_sym_and] = ACTIONS(5134), - [anon_sym_or] = ACTIONS(5134), - [anon_sym_AMP_AMP] = ACTIONS(5134), - [anon_sym_PIPE_PIPE] = ACTIONS(5134), - [anon_sym_QMARK_QMARK] = ACTIONS(5134), - [anon_sym_on] = ACTIONS(5134), - [anon_sym_equals] = ACTIONS(5134), - [anon_sym_by] = ACTIONS(5134), - [anon_sym_as] = ACTIONS(5134), - [anon_sym_is] = ACTIONS(5134), - [anon_sym_DASH_GT] = ACTIONS(5134), - [anon_sym_with] = ACTIONS(5134), - [aux_sym_preproc_if_token3] = ACTIONS(5134), - [aux_sym_preproc_else_token1] = ACTIONS(5134), - [aux_sym_preproc_elif_token1] = ACTIONS(5134), + [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_RBRACE] = ACTIONS(4937), + [anon_sym_LT] = ACTIONS(4939), + [anon_sym_GT] = ACTIONS(4939), + [anon_sym_in] = 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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -506035,26 +505506,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3488] = { - [sym__name] = STATE(6430), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(4096), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(4109), - [sym_type] = STATE(7365), - [sym_implicit_type] = STATE(7201), - [sym_array_type] = STATE(6648), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(6650), - [sym_pointer_type] = STATE(6650), - [sym__pointer_base_type] = STATE(7446), - [sym_function_pointer_type] = STATE(6650), - [sym_function_pointer_parameter] = STATE(7574), - [sym_ref_type] = STATE(7266), - [sym__ref_base_type] = STATE(7583), - [sym_scoped_type] = STATE(7266), - [sym_tuple_type] = STATE(6474), - [sym_identifier] = STATE(4087), - [sym__reserved_identifier] = STATE(3691), [sym_preproc_region] = STATE(3488), [sym_preproc_endregion] = STATE(3488), [sym_preproc_line] = STATE(3488), @@ -506064,36 +505515,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), - [aux_sym_function_pointer_type_repeat1] = STATE(3670), - [sym__identifier_token] = ACTIONS(2967), - [anon_sym_alias] = ACTIONS(2971), - [anon_sym_global] = ACTIONS(2971), - [anon_sym_LPAREN] = ACTIONS(2979), - [anon_sym_ref] = ACTIONS(5472), - [anon_sym_delegate] = ACTIONS(5030), - [anon_sym_file] = ACTIONS(2971), - [anon_sym_in] = ACTIONS(5474), - [anon_sym_out] = ACTIONS(5474), - [anon_sym_where] = ACTIONS(2971), - [anon_sym_notnull] = ACTIONS(2971), - [anon_sym_unmanaged] = ACTIONS(2971), - [anon_sym_scoped] = ACTIONS(5476), - [anon_sym_var] = ACTIONS(4737), - [sym_predefined_type] = ACTIONS(5478), - [anon_sym_yield] = ACTIONS(2971), - [anon_sym_when] = ACTIONS(2971), - [anon_sym_from] = ACTIONS(2971), - [anon_sym_into] = ACTIONS(2971), - [anon_sym_join] = ACTIONS(2971), - [anon_sym_on] = ACTIONS(2971), - [anon_sym_equals] = ACTIONS(2971), - [anon_sym_let] = ACTIONS(2971), - [anon_sym_orderby] = ACTIONS(2971), - [anon_sym_ascending] = ACTIONS(2971), - [anon_sym_descending] = ACTIONS(2971), - [anon_sym_group] = ACTIONS(2971), - [anon_sym_by] = ACTIONS(2971), - [anon_sym_select] = ACTIONS(2971), + [anon_sym_SEMI] = ACTIONS(3963), + [anon_sym_LBRACK] = ACTIONS(4033), + [anon_sym_COLON] = ACTIONS(3963), + [anon_sym_COMMA] = ACTIONS(3963), + [anon_sym_RBRACK] = ACTIONS(3963), + [anon_sym_LPAREN] = ACTIONS(3963), + [anon_sym_RPAREN] = ACTIONS(3963), + [anon_sym_LBRACE] = ACTIONS(3963), + [anon_sym_RBRACE] = ACTIONS(3963), + [anon_sym_LT] = ACTIONS(3961), + [anon_sym_GT] = ACTIONS(3961), + [anon_sym_QMARK] = ACTIONS(5326), + [anon_sym_BANG] = ACTIONS(3961), + [anon_sym_PLUS_PLUS] = ACTIONS(3963), + [anon_sym_DASH_DASH] = ACTIONS(3963), + [anon_sym_PLUS] = ACTIONS(3961), + [anon_sym_DASH] = ACTIONS(3961), + [anon_sym_STAR] = ACTIONS(4039), + [anon_sym_SLASH] = ACTIONS(3961), + [anon_sym_PERCENT] = ACTIONS(3963), + [anon_sym_CARET] = ACTIONS(3963), + [anon_sym_PIPE] = ACTIONS(3961), + [anon_sym_AMP] = ACTIONS(3961), + [anon_sym_LT_LT] = ACTIONS(3963), + [anon_sym_GT_GT] = ACTIONS(3961), + [anon_sym_GT_GT_GT] = ACTIONS(3963), + [anon_sym_EQ_EQ] = ACTIONS(3963), + [anon_sym_BANG_EQ] = ACTIONS(3963), + [anon_sym_GT_EQ] = ACTIONS(3963), + [anon_sym_LT_EQ] = ACTIONS(3963), + [anon_sym_DOT] = ACTIONS(5532), + [anon_sym_EQ_GT] = ACTIONS(3963), + [anon_sym_switch] = ACTIONS(3963), + [anon_sym_when] = ACTIONS(3963), + [anon_sym_DOT_DOT] = ACTIONS(3963), + [anon_sym_and] = ACTIONS(3963), + [anon_sym_or] = ACTIONS(3963), + [anon_sym_AMP_AMP] = ACTIONS(3963), + [anon_sym_PIPE_PIPE] = ACTIONS(3963), + [anon_sym_QMARK_QMARK] = ACTIONS(3963), + [anon_sym_on] = ACTIONS(3963), + [anon_sym_equals] = ACTIONS(3963), + [anon_sym_by] = ACTIONS(3963), + [anon_sym_as] = ACTIONS(3963), + [anon_sym_is] = ACTIONS(3963), + [anon_sym_DASH_GT] = ACTIONS(3963), + [anon_sym_with] = ACTIONS(3963), + [aux_sym_preproc_if_token3] = ACTIONS(3963), + [aux_sym_preproc_else_token1] = ACTIONS(3963), + [aux_sym_preproc_elif_token1] = ACTIONS(3963), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -506106,24 +505577,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3489] = { - [sym__name] = STATE(4390), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(4096), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(4109), - [sym_type] = STATE(6072), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_identifier] = STATE(4087), - [sym__reserved_identifier] = STATE(3691), [sym_preproc_region] = STATE(3489), [sym_preproc_endregion] = STATE(3489), [sym_preproc_line] = STATE(3489), @@ -506133,38 +505586,56 @@ 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), - [aux_sym__parameter_type_with_modifiers_repeat1] = STATE(5781), - [sym__identifier_token] = ACTIONS(2967), - [anon_sym_alias] = ACTIONS(2971), - [anon_sym_global] = ACTIONS(2971), - [anon_sym_LPAREN] = ACTIONS(2979), - [anon_sym_ref] = ACTIONS(4691), - [anon_sym_delegate] = ACTIONS(3454), - [anon_sym_file] = ACTIONS(2971), - [anon_sym_readonly] = ACTIONS(1103), - [anon_sym_in] = ACTIONS(1103), - [anon_sym_out] = ACTIONS(1103), - [anon_sym_where] = ACTIONS(2971), - [anon_sym_notnull] = ACTIONS(2971), - [anon_sym_unmanaged] = ACTIONS(2971), - [anon_sym_this] = ACTIONS(1103), - [anon_sym_scoped] = ACTIONS(4711), - [anon_sym_var] = ACTIONS(2999), - [sym_predefined_type] = ACTIONS(3001), - [anon_sym_yield] = ACTIONS(2971), - [anon_sym_when] = ACTIONS(2971), - [anon_sym_from] = ACTIONS(2971), - [anon_sym_into] = ACTIONS(2971), - [anon_sym_join] = ACTIONS(2971), - [anon_sym_on] = ACTIONS(2971), - [anon_sym_equals] = ACTIONS(2971), - [anon_sym_let] = ACTIONS(2971), - [anon_sym_orderby] = ACTIONS(2971), - [anon_sym_ascending] = ACTIONS(2971), - [anon_sym_descending] = ACTIONS(2971), - [anon_sym_group] = ACTIONS(2971), - [anon_sym_by] = ACTIONS(2971), - [anon_sym_select] = ACTIONS(2971), + [anon_sym_SEMI] = ACTIONS(3978), + [anon_sym_LBRACK] = ACTIONS(3978), + [anon_sym_COLON] = ACTIONS(3978), + [anon_sym_COMMA] = ACTIONS(3978), + [anon_sym_RBRACK] = ACTIONS(3978), + [anon_sym_LPAREN] = ACTIONS(3978), + [anon_sym_RPAREN] = ACTIONS(3978), + [anon_sym_LBRACE] = ACTIONS(3978), + [anon_sym_RBRACE] = ACTIONS(3978), + [anon_sym_LT] = ACTIONS(3976), + [anon_sym_GT] = ACTIONS(3976), + [anon_sym_QMARK] = ACTIONS(3976), + [anon_sym_BANG] = ACTIONS(3976), + [anon_sym_PLUS_PLUS] = ACTIONS(3978), + [anon_sym_DASH_DASH] = ACTIONS(3978), + [anon_sym_PLUS] = ACTIONS(3976), + [anon_sym_DASH] = ACTIONS(3976), + [anon_sym_STAR] = ACTIONS(3978), + [anon_sym_SLASH] = ACTIONS(3976), + [anon_sym_PERCENT] = ACTIONS(3978), + [anon_sym_CARET] = ACTIONS(3978), + [anon_sym_PIPE] = ACTIONS(3976), + [anon_sym_AMP] = ACTIONS(3976), + [anon_sym_LT_LT] = ACTIONS(3978), + [anon_sym_GT_GT] = ACTIONS(3976), + [anon_sym_GT_GT_GT] = ACTIONS(3978), + [anon_sym_EQ_EQ] = ACTIONS(3978), + [anon_sym_BANG_EQ] = ACTIONS(3978), + [anon_sym_GT_EQ] = ACTIONS(3978), + [anon_sym_LT_EQ] = ACTIONS(3978), + [anon_sym_DOT] = ACTIONS(5532), + [anon_sym_EQ_GT] = ACTIONS(3978), + [anon_sym_switch] = ACTIONS(3978), + [anon_sym_when] = ACTIONS(3978), + [anon_sym_DOT_DOT] = ACTIONS(3978), + [anon_sym_and] = ACTIONS(3978), + [anon_sym_or] = ACTIONS(3978), + [anon_sym_AMP_AMP] = ACTIONS(3978), + [anon_sym_PIPE_PIPE] = ACTIONS(3978), + [anon_sym_QMARK_QMARK] = ACTIONS(3978), + [anon_sym_on] = ACTIONS(3978), + [anon_sym_equals] = ACTIONS(3978), + [anon_sym_by] = ACTIONS(3978), + [anon_sym_as] = ACTIONS(3978), + [anon_sym_is] = ACTIONS(3978), + [anon_sym_DASH_GT] = ACTIONS(3978), + [anon_sym_with] = ACTIONS(3978), + [aux_sym_preproc_if_token3] = ACTIONS(3978), + [aux_sym_preproc_else_token1] = ACTIONS(3978), + [aux_sym_preproc_elif_token1] = ACTIONS(3978), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -506186,56 +505657,56 @@ 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), - [anon_sym_SEMI] = ACTIONS(5377), - [anon_sym_LBRACK] = ACTIONS(5377), - [anon_sym_COLON] = ACTIONS(5377), - [anon_sym_COMMA] = ACTIONS(5377), - [anon_sym_RBRACK] = ACTIONS(5377), - [anon_sym_LPAREN] = ACTIONS(5377), - [anon_sym_RPAREN] = ACTIONS(5377), - [anon_sym_RBRACE] = ACTIONS(5377), - [anon_sym_LT] = ACTIONS(5379), - [anon_sym_GT] = ACTIONS(5379), - [anon_sym_in] = ACTIONS(5377), - [anon_sym_QMARK] = ACTIONS(5379), - [anon_sym_BANG] = ACTIONS(5379), - [anon_sym_PLUS_PLUS] = ACTIONS(5377), - [anon_sym_DASH_DASH] = ACTIONS(5377), - [anon_sym_PLUS] = ACTIONS(5379), - [anon_sym_DASH] = ACTIONS(5379), - [anon_sym_STAR] = ACTIONS(5377), - [anon_sym_SLASH] = ACTIONS(5379), - [anon_sym_PERCENT] = ACTIONS(5377), - [anon_sym_CARET] = ACTIONS(5377), - [anon_sym_PIPE] = ACTIONS(5379), - [anon_sym_AMP] = ACTIONS(5379), - [anon_sym_LT_LT] = ACTIONS(5377), - [anon_sym_GT_GT] = ACTIONS(5379), - [anon_sym_GT_GT_GT] = ACTIONS(5377), - [anon_sym_EQ_EQ] = ACTIONS(5377), - [anon_sym_BANG_EQ] = ACTIONS(5377), - [anon_sym_GT_EQ] = ACTIONS(5377), - [anon_sym_LT_EQ] = ACTIONS(5377), - [anon_sym_DOT] = ACTIONS(5379), - [anon_sym_EQ_GT] = ACTIONS(5377), - [anon_sym_switch] = ACTIONS(5377), - [anon_sym_when] = ACTIONS(5377), - [anon_sym_DOT_DOT] = ACTIONS(5377), - [anon_sym_and] = ACTIONS(5377), - [anon_sym_or] = ACTIONS(5377), - [anon_sym_AMP_AMP] = ACTIONS(5377), - [anon_sym_PIPE_PIPE] = ACTIONS(5377), - [anon_sym_QMARK_QMARK] = ACTIONS(5377), - [anon_sym_on] = ACTIONS(5377), - [anon_sym_equals] = ACTIONS(5377), - [anon_sym_by] = ACTIONS(5377), - [anon_sym_as] = ACTIONS(5377), - [anon_sym_is] = ACTIONS(5377), - [anon_sym_DASH_GT] = ACTIONS(5377), - [anon_sym_with] = ACTIONS(5377), - [aux_sym_preproc_if_token3] = ACTIONS(5377), - [aux_sym_preproc_else_token1] = ACTIONS(5377), - [aux_sym_preproc_elif_token1] = ACTIONS(5377), + [anon_sym_SEMI] = ACTIONS(5056), + [anon_sym_LBRACK] = ACTIONS(5056), + [anon_sym_COLON] = ACTIONS(5056), + [anon_sym_COMMA] = ACTIONS(5056), + [anon_sym_RBRACK] = ACTIONS(5056), + [anon_sym_LPAREN] = ACTIONS(5056), + [anon_sym_RPAREN] = ACTIONS(5056), + [anon_sym_RBRACE] = ACTIONS(5056), + [anon_sym_LT] = ACTIONS(5058), + [anon_sym_GT] = ACTIONS(5058), + [anon_sym_in] = ACTIONS(5056), + [anon_sym_QMARK] = ACTIONS(5058), + [anon_sym_BANG] = ACTIONS(5058), + [anon_sym_PLUS_PLUS] = ACTIONS(5056), + [anon_sym_DASH_DASH] = ACTIONS(5056), + [anon_sym_PLUS] = ACTIONS(5058), + [anon_sym_DASH] = ACTIONS(5058), + [anon_sym_STAR] = ACTIONS(5056), + [anon_sym_SLASH] = ACTIONS(5058), + [anon_sym_PERCENT] = ACTIONS(5056), + [anon_sym_CARET] = ACTIONS(5056), + [anon_sym_PIPE] = ACTIONS(5058), + [anon_sym_AMP] = ACTIONS(5058), + [anon_sym_LT_LT] = ACTIONS(5056), + [anon_sym_GT_GT] = ACTIONS(5058), + [anon_sym_GT_GT_GT] = ACTIONS(5056), + [anon_sym_EQ_EQ] = ACTIONS(5056), + [anon_sym_BANG_EQ] = ACTIONS(5056), + [anon_sym_GT_EQ] = ACTIONS(5056), + [anon_sym_LT_EQ] = ACTIONS(5056), + [anon_sym_DOT] = ACTIONS(5058), + [anon_sym_EQ_GT] = ACTIONS(5056), + [anon_sym_switch] = ACTIONS(5056), + [anon_sym_when] = ACTIONS(5056), + [anon_sym_DOT_DOT] = ACTIONS(5056), + [anon_sym_and] = ACTIONS(5056), + [anon_sym_or] = ACTIONS(5056), + [anon_sym_AMP_AMP] = ACTIONS(5056), + [anon_sym_PIPE_PIPE] = ACTIONS(5056), + [anon_sym_QMARK_QMARK] = ACTIONS(5056), + [anon_sym_on] = ACTIONS(5056), + [anon_sym_equals] = ACTIONS(5056), + [anon_sym_by] = ACTIONS(5056), + [anon_sym_as] = ACTIONS(5056), + [anon_sym_is] = ACTIONS(5056), + [anon_sym_DASH_GT] = ACTIONS(5056), + [anon_sym_with] = ACTIONS(5056), + [aux_sym_preproc_if_token3] = ACTIONS(5056), + [aux_sym_preproc_else_token1] = ACTIONS(5056), + [aux_sym_preproc_elif_token1] = ACTIONS(5056), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -506257,56 +505728,56 @@ 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), - [sym__identifier_token] = ACTIONS(5557), - [anon_sym_extern] = ACTIONS(5557), - [anon_sym_alias] = ACTIONS(5557), - [anon_sym_global] = ACTIONS(5557), - [anon_sym_unsafe] = ACTIONS(5557), - [anon_sym_static] = ACTIONS(5557), - [anon_sym_LBRACK] = ACTIONS(5559), - [anon_sym_RBRACE] = ACTIONS(5559), - [anon_sym_abstract] = ACTIONS(5557), - [anon_sym_async] = ACTIONS(5557), - [anon_sym_const] = ACTIONS(5557), - [anon_sym_file] = ACTIONS(5557), - [anon_sym_fixed] = ACTIONS(5557), - [anon_sym_internal] = ACTIONS(5557), - [anon_sym_new] = ACTIONS(5557), - [anon_sym_override] = ACTIONS(5557), - [anon_sym_partial] = ACTIONS(5557), - [anon_sym_private] = ACTIONS(5557), - [anon_sym_protected] = ACTIONS(5557), - [anon_sym_public] = ACTIONS(5557), - [anon_sym_readonly] = ACTIONS(5557), - [anon_sym_required] = ACTIONS(5557), - [anon_sym_sealed] = ACTIONS(5557), - [anon_sym_virtual] = ACTIONS(5557), - [anon_sym_volatile] = ACTIONS(5557), - [anon_sym_where] = ACTIONS(5557), - [anon_sym_notnull] = ACTIONS(5557), - [anon_sym_unmanaged] = ACTIONS(5557), - [anon_sym_get] = ACTIONS(5557), - [anon_sym_set] = ACTIONS(5557), - [anon_sym_add] = ACTIONS(5557), - [anon_sym_remove] = ACTIONS(5557), - [anon_sym_init] = ACTIONS(5557), - [anon_sym_scoped] = ACTIONS(5557), - [anon_sym_var] = ACTIONS(5557), - [anon_sym_yield] = ACTIONS(5557), - [anon_sym_when] = ACTIONS(5557), - [anon_sym_from] = ACTIONS(5557), - [anon_sym_into] = ACTIONS(5557), - [anon_sym_join] = ACTIONS(5557), - [anon_sym_on] = ACTIONS(5557), - [anon_sym_equals] = ACTIONS(5557), - [anon_sym_let] = ACTIONS(5557), - [anon_sym_orderby] = ACTIONS(5557), - [anon_sym_ascending] = ACTIONS(5557), - [anon_sym_descending] = ACTIONS(5557), - [anon_sym_group] = ACTIONS(5557), - [anon_sym_by] = ACTIONS(5557), - [anon_sym_select] = ACTIONS(5557), - [aux_sym_preproc_if_token1] = ACTIONS(5559), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -506319,6 +505790,26 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3492] = { + [sym_parameter_list] = STATE(7531), + [sym__name] = STATE(4369), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(4068), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(4073), + [sym_type] = STATE(5906), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym__lambda_parameters] = STATE(7609), + [sym_identifier] = STATE(5764), + [sym__reserved_identifier] = STATE(3654), [sym_preproc_region] = STATE(3492), [sym_preproc_endregion] = STATE(3492), [sym_preproc_line] = STATE(3492), @@ -506328,56 +505819,36 @@ 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(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__lambda_expression_init_repeat1] = STATE(5828), + [sym__identifier_token] = ACTIONS(2965), + [anon_sym_alias] = ACTIONS(2969), + [anon_sym_global] = ACTIONS(2969), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LPAREN] = ACTIONS(3786), + [anon_sym_ref] = ACTIONS(3436), + [anon_sym_delegate] = ACTIONS(5534), + [anon_sym_async] = ACTIONS(1045), + [anon_sym_file] = ACTIONS(2969), + [anon_sym_where] = ACTIONS(2969), + [anon_sym_notnull] = ACTIONS(2969), + [anon_sym_unmanaged] = ACTIONS(2969), + [anon_sym_scoped] = ACTIONS(2993), + [anon_sym_var] = ACTIONS(2995), + [sym_predefined_type] = ACTIONS(2997), + [anon_sym_yield] = ACTIONS(2969), + [anon_sym_when] = ACTIONS(2969), + [anon_sym_from] = ACTIONS(2969), + [anon_sym_into] = ACTIONS(2969), + [anon_sym_join] = ACTIONS(2969), + [anon_sym_on] = ACTIONS(2969), + [anon_sym_equals] = ACTIONS(2969), + [anon_sym_let] = ACTIONS(2969), + [anon_sym_orderby] = ACTIONS(2969), + [anon_sym_ascending] = ACTIONS(2969), + [anon_sym_descending] = ACTIONS(2969), + [anon_sym_group] = ACTIONS(2969), + [anon_sym_by] = ACTIONS(2969), + [anon_sym_select] = ACTIONS(2969), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -506390,6 +505861,26 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3493] = { + [sym__name] = STATE(6381), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(4068), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(4073), + [sym_type] = STATE(7616), + [sym_implicit_type] = STATE(7156), + [sym_array_type] = STATE(6671), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(6672), + [sym_pointer_type] = STATE(6672), + [sym__pointer_base_type] = STATE(7421), + [sym_function_pointer_type] = STATE(6672), + [sym_function_pointer_parameter] = STATE(7377), + [sym_ref_type] = STATE(7035), + [sym__ref_base_type] = STATE(7387), + [sym_scoped_type] = STATE(7035), + [sym_tuple_type] = STATE(6553), + [sym_identifier] = STATE(4081), + [sym__reserved_identifier] = STATE(3654), [sym_preproc_region] = STATE(3493), [sym_preproc_endregion] = STATE(3493), [sym_preproc_line] = STATE(3493), @@ -506399,56 +505890,36 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3493), [sym_preproc_define] = STATE(3493), [sym_preproc_undef] = STATE(3493), - [anon_sym_SEMI] = ACTIONS(3829), - [anon_sym_LBRACK] = ACTIONS(3829), - [anon_sym_COLON] = ACTIONS(3829), - [anon_sym_COMMA] = ACTIONS(3829), - [anon_sym_RBRACK] = ACTIONS(3829), - [anon_sym_LPAREN] = ACTIONS(3829), - [anon_sym_RPAREN] = ACTIONS(3829), - [anon_sym_RBRACE] = ACTIONS(3829), - [anon_sym_LT] = ACTIONS(5431), - [anon_sym_GT] = ACTIONS(5431), - [anon_sym_in] = ACTIONS(3829), - [anon_sym_QMARK] = ACTIONS(5431), - [anon_sym_BANG] = ACTIONS(5431), - [anon_sym_PLUS_PLUS] = ACTIONS(3829), - [anon_sym_DASH_DASH] = ACTIONS(3829), - [anon_sym_PLUS] = ACTIONS(5431), - [anon_sym_DASH] = ACTIONS(5431), - [anon_sym_STAR] = ACTIONS(3829), - [anon_sym_SLASH] = ACTIONS(5431), - [anon_sym_PERCENT] = ACTIONS(3829), - [anon_sym_CARET] = ACTIONS(3829), - [anon_sym_PIPE] = ACTIONS(5431), - [anon_sym_AMP] = ACTIONS(5431), - [anon_sym_LT_LT] = ACTIONS(3829), - [anon_sym_GT_GT] = ACTIONS(5431), - [anon_sym_GT_GT_GT] = ACTIONS(3829), - [anon_sym_EQ_EQ] = ACTIONS(3829), - [anon_sym_BANG_EQ] = ACTIONS(3829), - [anon_sym_GT_EQ] = ACTIONS(3829), - [anon_sym_LT_EQ] = ACTIONS(3829), - [anon_sym_DOT] = ACTIONS(5431), - [anon_sym_EQ_GT] = ACTIONS(3667), - [anon_sym_switch] = ACTIONS(3829), - [anon_sym_when] = ACTIONS(3829), - [anon_sym_DOT_DOT] = ACTIONS(3829), - [anon_sym_and] = ACTIONS(3829), - [anon_sym_or] = ACTIONS(3829), - [anon_sym_AMP_AMP] = ACTIONS(3829), - [anon_sym_PIPE_PIPE] = ACTIONS(3829), - [anon_sym_QMARK_QMARK] = ACTIONS(3829), - [anon_sym_on] = ACTIONS(3829), - [anon_sym_equals] = ACTIONS(3829), - [anon_sym_by] = ACTIONS(3829), - [anon_sym_as] = ACTIONS(3829), - [anon_sym_is] = ACTIONS(3829), - [anon_sym_DASH_GT] = ACTIONS(3829), - [anon_sym_with] = ACTIONS(3829), - [aux_sym_preproc_if_token3] = ACTIONS(3829), - [aux_sym_preproc_else_token1] = ACTIONS(3829), - [aux_sym_preproc_elif_token1] = ACTIONS(3829), + [aux_sym_function_pointer_type_repeat1] = STATE(3667), + [sym__identifier_token] = ACTIONS(2965), + [anon_sym_alias] = ACTIONS(2969), + [anon_sym_global] = ACTIONS(2969), + [anon_sym_LPAREN] = ACTIONS(2977), + [anon_sym_ref] = ACTIONS(5450), + [anon_sym_delegate] = ACTIONS(5172), + [anon_sym_file] = ACTIONS(2969), + [anon_sym_in] = ACTIONS(5452), + [anon_sym_out] = ACTIONS(5452), + [anon_sym_where] = ACTIONS(2969), + [anon_sym_notnull] = ACTIONS(2969), + [anon_sym_unmanaged] = ACTIONS(2969), + [anon_sym_scoped] = ACTIONS(5454), + [anon_sym_var] = ACTIONS(4705), + [sym_predefined_type] = ACTIONS(5456), + [anon_sym_yield] = ACTIONS(2969), + [anon_sym_when] = ACTIONS(2969), + [anon_sym_from] = ACTIONS(2969), + [anon_sym_into] = ACTIONS(2969), + [anon_sym_join] = ACTIONS(2969), + [anon_sym_on] = ACTIONS(2969), + [anon_sym_equals] = ACTIONS(2969), + [anon_sym_let] = ACTIONS(2969), + [anon_sym_orderby] = ACTIONS(2969), + [anon_sym_ascending] = ACTIONS(2969), + [anon_sym_descending] = ACTIONS(2969), + [anon_sym_group] = ACTIONS(2969), + [anon_sym_by] = ACTIONS(2969), + [anon_sym_select] = ACTIONS(2969), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -506470,56 +505941,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), - [anon_sym_SEMI] = ACTIONS(2953), - [anon_sym_LBRACK] = ACTIONS(2953), - [anon_sym_COLON] = ACTIONS(2953), - [anon_sym_COMMA] = ACTIONS(2953), - [anon_sym_RBRACK] = ACTIONS(2953), - [anon_sym_LPAREN] = ACTIONS(2953), - [anon_sym_RPAREN] = ACTIONS(2953), - [anon_sym_RBRACE] = ACTIONS(2953), - [anon_sym_LT] = ACTIONS(2951), - [anon_sym_GT] = ACTIONS(2951), - [anon_sym_in] = ACTIONS(2953), - [anon_sym_QMARK] = ACTIONS(2951), - [anon_sym_BANG] = ACTIONS(2951), - [anon_sym_PLUS_PLUS] = ACTIONS(2953), - [anon_sym_DASH_DASH] = ACTIONS(2953), - [anon_sym_PLUS] = ACTIONS(2951), - [anon_sym_DASH] = ACTIONS(2951), - [anon_sym_STAR] = ACTIONS(2953), - [anon_sym_SLASH] = ACTIONS(2951), - [anon_sym_PERCENT] = ACTIONS(2953), - [anon_sym_CARET] = ACTIONS(2953), - [anon_sym_PIPE] = ACTIONS(2951), - [anon_sym_AMP] = ACTIONS(2951), - [anon_sym_LT_LT] = ACTIONS(2953), - [anon_sym_GT_GT] = ACTIONS(2951), - [anon_sym_GT_GT_GT] = ACTIONS(2953), - [anon_sym_EQ_EQ] = ACTIONS(2953), - [anon_sym_BANG_EQ] = ACTIONS(2953), - [anon_sym_GT_EQ] = ACTIONS(2953), - [anon_sym_LT_EQ] = ACTIONS(2953), - [anon_sym_DOT] = ACTIONS(2951), - [anon_sym_EQ_GT] = ACTIONS(2953), - [anon_sym_switch] = ACTIONS(2953), - [anon_sym_when] = ACTIONS(2953), - [anon_sym_DOT_DOT] = ACTIONS(2953), - [anon_sym_and] = ACTIONS(2953), - [anon_sym_or] = ACTIONS(2953), - [anon_sym_AMP_AMP] = ACTIONS(2953), - [anon_sym_PIPE_PIPE] = ACTIONS(2953), - [anon_sym_QMARK_QMARK] = ACTIONS(2953), - [anon_sym_on] = ACTIONS(2953), - [anon_sym_equals] = ACTIONS(2953), - [anon_sym_by] = ACTIONS(2953), - [anon_sym_as] = ACTIONS(2953), - [anon_sym_is] = ACTIONS(2953), - [anon_sym_DASH_GT] = ACTIONS(2953), - [anon_sym_with] = ACTIONS(2953), - [aux_sym_preproc_if_token3] = ACTIONS(2953), - [aux_sym_preproc_else_token1] = ACTIONS(2953), - [aux_sym_preproc_elif_token1] = ACTIONS(2953), + [anon_sym_SEMI] = ACTIONS(5060), + [anon_sym_LBRACK] = ACTIONS(5060), + [anon_sym_COLON] = ACTIONS(5060), + [anon_sym_COMMA] = ACTIONS(5060), + [anon_sym_RBRACK] = ACTIONS(5060), + [anon_sym_LPAREN] = ACTIONS(5060), + [anon_sym_RPAREN] = ACTIONS(5060), + [anon_sym_RBRACE] = ACTIONS(5060), + [anon_sym_LT] = ACTIONS(5062), + [anon_sym_GT] = ACTIONS(5062), + [anon_sym_in] = ACTIONS(5060), + [anon_sym_QMARK] = ACTIONS(5062), + [anon_sym_BANG] = ACTIONS(5062), + [anon_sym_PLUS_PLUS] = ACTIONS(5060), + [anon_sym_DASH_DASH] = ACTIONS(5060), + [anon_sym_PLUS] = ACTIONS(5062), + [anon_sym_DASH] = ACTIONS(5062), + [anon_sym_STAR] = ACTIONS(5060), + [anon_sym_SLASH] = ACTIONS(5062), + [anon_sym_PERCENT] = ACTIONS(5060), + [anon_sym_CARET] = ACTIONS(5060), + [anon_sym_PIPE] = ACTIONS(5062), + [anon_sym_AMP] = ACTIONS(5062), + [anon_sym_LT_LT] = ACTIONS(5060), + [anon_sym_GT_GT] = ACTIONS(5062), + [anon_sym_GT_GT_GT] = ACTIONS(5060), + [anon_sym_EQ_EQ] = ACTIONS(5060), + [anon_sym_BANG_EQ] = ACTIONS(5060), + [anon_sym_GT_EQ] = ACTIONS(5060), + [anon_sym_LT_EQ] = ACTIONS(5060), + [anon_sym_DOT] = ACTIONS(5062), + [anon_sym_EQ_GT] = ACTIONS(5060), + [anon_sym_switch] = ACTIONS(5060), + [anon_sym_when] = ACTIONS(5060), + [anon_sym_DOT_DOT] = ACTIONS(5060), + [anon_sym_and] = ACTIONS(5060), + [anon_sym_or] = ACTIONS(5060), + [anon_sym_AMP_AMP] = ACTIONS(5060), + [anon_sym_PIPE_PIPE] = ACTIONS(5060), + [anon_sym_QMARK_QMARK] = ACTIONS(5060), + [anon_sym_on] = ACTIONS(5060), + [anon_sym_equals] = ACTIONS(5060), + [anon_sym_by] = ACTIONS(5060), + [anon_sym_as] = ACTIONS(5060), + [anon_sym_is] = ACTIONS(5060), + [anon_sym_DASH_GT] = ACTIONS(5060), + [anon_sym_with] = ACTIONS(5060), + [aux_sym_preproc_if_token3] = ACTIONS(5060), + [aux_sym_preproc_else_token1] = ACTIONS(5060), + [aux_sym_preproc_elif_token1] = ACTIONS(5060), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -506541,56 +506012,56 @@ 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), - [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), + [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(4811), + [anon_sym_RPAREN] = ACTIONS(4811), + [anon_sym_RBRACE] = ACTIONS(4811), + [anon_sym_LT] = ACTIONS(4813), + [anon_sym_GT] = ACTIONS(4813), + [anon_sym_in] = ACTIONS(4811), + [anon_sym_QMARK] = ACTIONS(4813), + [anon_sym_BANG] = ACTIONS(4813), + [anon_sym_PLUS_PLUS] = ACTIONS(4811), + [anon_sym_DASH_DASH] = ACTIONS(4811), + [anon_sym_PLUS] = ACTIONS(4813), + [anon_sym_DASH] = ACTIONS(4813), + [anon_sym_STAR] = ACTIONS(4811), + [anon_sym_SLASH] = ACTIONS(4813), + [anon_sym_PERCENT] = ACTIONS(4811), + [anon_sym_CARET] = ACTIONS(4811), + [anon_sym_PIPE] = ACTIONS(4813), + [anon_sym_AMP] = ACTIONS(4813), + [anon_sym_LT_LT] = ACTIONS(4811), + [anon_sym_GT_GT] = ACTIONS(4813), + [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(4813), + [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), @@ -506612,56 +506083,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(5342), - [anon_sym_LBRACK] = ACTIONS(5342), - [anon_sym_COLON] = ACTIONS(5342), - [anon_sym_COMMA] = ACTIONS(5342), - [anon_sym_RBRACK] = ACTIONS(5342), - [anon_sym_LPAREN] = ACTIONS(5342), - [anon_sym_RPAREN] = ACTIONS(5342), - [anon_sym_RBRACE] = ACTIONS(5342), - [anon_sym_LT] = ACTIONS(5344), - [anon_sym_GT] = ACTIONS(5344), - [anon_sym_in] = ACTIONS(5342), - [anon_sym_QMARK] = ACTIONS(5344), - [anon_sym_BANG] = ACTIONS(5344), - [anon_sym_PLUS_PLUS] = ACTIONS(5342), - [anon_sym_DASH_DASH] = ACTIONS(5342), - [anon_sym_PLUS] = ACTIONS(5344), - [anon_sym_DASH] = ACTIONS(5344), - [anon_sym_STAR] = ACTIONS(5342), - [anon_sym_SLASH] = ACTIONS(5344), - [anon_sym_PERCENT] = ACTIONS(5342), - [anon_sym_CARET] = ACTIONS(5342), - [anon_sym_PIPE] = ACTIONS(5344), - [anon_sym_AMP] = ACTIONS(5344), - [anon_sym_LT_LT] = ACTIONS(5342), - [anon_sym_GT_GT] = ACTIONS(5344), - [anon_sym_GT_GT_GT] = ACTIONS(5342), - [anon_sym_EQ_EQ] = ACTIONS(5342), - [anon_sym_BANG_EQ] = ACTIONS(5342), - [anon_sym_GT_EQ] = ACTIONS(5342), - [anon_sym_LT_EQ] = ACTIONS(5342), - [anon_sym_DOT] = ACTIONS(5344), - [anon_sym_EQ_GT] = ACTIONS(5342), - [anon_sym_switch] = ACTIONS(5342), - [anon_sym_when] = ACTIONS(5342), - [anon_sym_DOT_DOT] = ACTIONS(5342), - [anon_sym_and] = ACTIONS(5342), - [anon_sym_or] = ACTIONS(5342), - [anon_sym_AMP_AMP] = ACTIONS(5342), - [anon_sym_PIPE_PIPE] = ACTIONS(5342), - [anon_sym_QMARK_QMARK] = ACTIONS(5342), - [anon_sym_on] = ACTIONS(5342), - [anon_sym_equals] = ACTIONS(5342), - [anon_sym_by] = ACTIONS(5342), - [anon_sym_as] = ACTIONS(5342), - [anon_sym_is] = ACTIONS(5342), - [anon_sym_DASH_GT] = ACTIONS(5342), - [anon_sym_with] = ACTIONS(5342), - [aux_sym_preproc_if_token3] = ACTIONS(5342), - [aux_sym_preproc_else_token1] = ACTIONS(5342), - [aux_sym_preproc_elif_token1] = ACTIONS(5342), + [anon_sym_SEMI] = ACTIONS(5064), + [anon_sym_LBRACK] = ACTIONS(5064), + [anon_sym_COLON] = ACTIONS(5064), + [anon_sym_COMMA] = ACTIONS(5064), + [anon_sym_RBRACK] = ACTIONS(5064), + [anon_sym_LPAREN] = ACTIONS(5064), + [anon_sym_RPAREN] = ACTIONS(5064), + [anon_sym_RBRACE] = ACTIONS(5064), + [anon_sym_LT] = ACTIONS(5066), + [anon_sym_GT] = ACTIONS(5066), + [anon_sym_in] = ACTIONS(5064), + [anon_sym_QMARK] = ACTIONS(5066), + [anon_sym_BANG] = ACTIONS(5066), + [anon_sym_PLUS_PLUS] = ACTIONS(5064), + [anon_sym_DASH_DASH] = ACTIONS(5064), + [anon_sym_PLUS] = ACTIONS(5066), + [anon_sym_DASH] = ACTIONS(5066), + [anon_sym_STAR] = ACTIONS(5064), + [anon_sym_SLASH] = ACTIONS(5066), + [anon_sym_PERCENT] = ACTIONS(5064), + [anon_sym_CARET] = ACTIONS(5064), + [anon_sym_PIPE] = ACTIONS(5066), + [anon_sym_AMP] = ACTIONS(5066), + [anon_sym_LT_LT] = ACTIONS(5064), + [anon_sym_GT_GT] = ACTIONS(5066), + [anon_sym_GT_GT_GT] = ACTIONS(5064), + [anon_sym_EQ_EQ] = ACTIONS(5064), + [anon_sym_BANG_EQ] = ACTIONS(5064), + [anon_sym_GT_EQ] = ACTIONS(5064), + [anon_sym_LT_EQ] = ACTIONS(5064), + [anon_sym_DOT] = ACTIONS(5066), + [anon_sym_EQ_GT] = ACTIONS(5064), + [anon_sym_switch] = ACTIONS(5064), + [anon_sym_when] = ACTIONS(5064), + [anon_sym_DOT_DOT] = ACTIONS(5064), + [anon_sym_and] = ACTIONS(5064), + [anon_sym_or] = ACTIONS(5064), + [anon_sym_AMP_AMP] = ACTIONS(5064), + [anon_sym_PIPE_PIPE] = ACTIONS(5064), + [anon_sym_QMARK_QMARK] = ACTIONS(5064), + [anon_sym_on] = ACTIONS(5064), + [anon_sym_equals] = ACTIONS(5064), + [anon_sym_by] = ACTIONS(5064), + [anon_sym_as] = ACTIONS(5064), + [anon_sym_is] = ACTIONS(5064), + [anon_sym_DASH_GT] = ACTIONS(5064), + [anon_sym_with] = ACTIONS(5064), + [aux_sym_preproc_if_token3] = ACTIONS(5064), + [aux_sym_preproc_else_token1] = ACTIONS(5064), + [aux_sym_preproc_elif_token1] = ACTIONS(5064), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -506683,56 +506154,56 @@ 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), - [anon_sym_SEMI] = ACTIONS(3977), - [anon_sym_LBRACK] = ACTIONS(3977), - [anon_sym_COLON] = ACTIONS(3977), - [anon_sym_COMMA] = ACTIONS(3977), - [anon_sym_RBRACK] = ACTIONS(3977), - [anon_sym_LPAREN] = ACTIONS(3977), - [anon_sym_RPAREN] = ACTIONS(3977), - [anon_sym_LBRACE] = ACTIONS(3977), - [anon_sym_RBRACE] = ACTIONS(3977), - [anon_sym_LT] = ACTIONS(3975), - [anon_sym_GT] = ACTIONS(3975), - [anon_sym_QMARK] = ACTIONS(3975), - [anon_sym_BANG] = ACTIONS(3975), - [anon_sym_PLUS_PLUS] = ACTIONS(3977), - [anon_sym_DASH_DASH] = ACTIONS(3977), - [anon_sym_PLUS] = ACTIONS(3975), - [anon_sym_DASH] = ACTIONS(3975), - [anon_sym_STAR] = ACTIONS(3977), - [anon_sym_SLASH] = ACTIONS(3975), - [anon_sym_PERCENT] = ACTIONS(3977), - [anon_sym_CARET] = ACTIONS(3977), - [anon_sym_PIPE] = ACTIONS(3975), - [anon_sym_AMP] = ACTIONS(3975), - [anon_sym_LT_LT] = ACTIONS(3977), - [anon_sym_GT_GT] = ACTIONS(3975), - [anon_sym_GT_GT_GT] = ACTIONS(3977), - [anon_sym_EQ_EQ] = ACTIONS(3977), - [anon_sym_BANG_EQ] = ACTIONS(3977), - [anon_sym_GT_EQ] = ACTIONS(3977), - [anon_sym_LT_EQ] = ACTIONS(3977), - [anon_sym_DOT] = ACTIONS(5526), - [anon_sym_EQ_GT] = ACTIONS(3977), - [anon_sym_switch] = ACTIONS(3977), - [anon_sym_when] = ACTIONS(3977), - [anon_sym_DOT_DOT] = ACTIONS(3977), - [anon_sym_and] = ACTIONS(3977), - [anon_sym_or] = ACTIONS(3977), - [anon_sym_AMP_AMP] = ACTIONS(3977), - [anon_sym_PIPE_PIPE] = ACTIONS(3977), - [anon_sym_QMARK_QMARK] = ACTIONS(3977), - [anon_sym_on] = ACTIONS(3977), - [anon_sym_equals] = ACTIONS(3977), - [anon_sym_by] = ACTIONS(3977), - [anon_sym_as] = ACTIONS(3977), - [anon_sym_is] = ACTIONS(3977), - [anon_sym_DASH_GT] = ACTIONS(3977), - [anon_sym_with] = ACTIONS(3977), - [aux_sym_preproc_if_token3] = ACTIONS(3977), - [aux_sym_preproc_else_token1] = ACTIONS(3977), - [aux_sym_preproc_elif_token1] = ACTIONS(3977), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -506745,26 +506216,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3498] = { - [sym_parameter_list] = STATE(7311), - [sym__name] = STATE(4390), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(4096), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(4109), - [sym_type] = STATE(5912), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym__lambda_parameters] = STATE(7428), - [sym_identifier] = STATE(5763), - [sym__reserved_identifier] = STATE(3691), [sym_preproc_region] = STATE(3498), [sym_preproc_endregion] = STATE(3498), [sym_preproc_line] = STATE(3498), @@ -506774,36 +506225,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3498), [sym_preproc_define] = STATE(3498), [sym_preproc_undef] = STATE(3498), - [aux_sym__lambda_expression_init_repeat1] = STATE(5863), - [sym__identifier_token] = ACTIONS(2967), - [anon_sym_alias] = ACTIONS(2971), - [anon_sym_global] = ACTIONS(2971), - [anon_sym_static] = ACTIONS(1047), - [anon_sym_LPAREN] = ACTIONS(3794), - [anon_sym_ref] = ACTIONS(3452), - [anon_sym_delegate] = ACTIONS(3454), - [anon_sym_async] = ACTIONS(1047), - [anon_sym_file] = ACTIONS(2971), - [anon_sym_where] = ACTIONS(2971), - [anon_sym_notnull] = ACTIONS(2971), - [anon_sym_unmanaged] = ACTIONS(2971), - [anon_sym_scoped] = ACTIONS(2997), - [anon_sym_var] = ACTIONS(2999), - [sym_predefined_type] = ACTIONS(3001), - [anon_sym_yield] = ACTIONS(2971), - [anon_sym_when] = ACTIONS(2971), - [anon_sym_from] = ACTIONS(2971), - [anon_sym_into] = ACTIONS(2971), - [anon_sym_join] = ACTIONS(2971), - [anon_sym_on] = ACTIONS(2971), - [anon_sym_equals] = ACTIONS(2971), - [anon_sym_let] = ACTIONS(2971), - [anon_sym_orderby] = ACTIONS(2971), - [anon_sym_ascending] = ACTIONS(2971), - [anon_sym_descending] = ACTIONS(2971), - [anon_sym_group] = ACTIONS(2971), - [anon_sym_by] = ACTIONS(2971), - [anon_sym_select] = ACTIONS(2971), + [anon_sym_SEMI] = ACTIONS(4941), + [anon_sym_LBRACK] = ACTIONS(4941), + [anon_sym_COLON] = ACTIONS(4941), + [anon_sym_COMMA] = ACTIONS(4941), + [anon_sym_RBRACK] = ACTIONS(4941), + [anon_sym_LPAREN] = ACTIONS(4941), + [anon_sym_RPAREN] = ACTIONS(4941), + [anon_sym_RBRACE] = ACTIONS(4941), + [anon_sym_LT] = ACTIONS(4943), + [anon_sym_GT] = ACTIONS(4943), + [anon_sym_in] = ACTIONS(4941), + [anon_sym_QMARK] = ACTIONS(4943), + [anon_sym_BANG] = ACTIONS(4943), + [anon_sym_PLUS_PLUS] = ACTIONS(4941), + [anon_sym_DASH_DASH] = ACTIONS(4941), + [anon_sym_PLUS] = ACTIONS(4943), + [anon_sym_DASH] = ACTIONS(4943), + [anon_sym_STAR] = ACTIONS(4941), + [anon_sym_SLASH] = ACTIONS(4943), + [anon_sym_PERCENT] = ACTIONS(4941), + [anon_sym_CARET] = ACTIONS(4941), + [anon_sym_PIPE] = ACTIONS(4943), + [anon_sym_AMP] = ACTIONS(4943), + [anon_sym_LT_LT] = ACTIONS(4941), + [anon_sym_GT_GT] = ACTIONS(4943), + [anon_sym_GT_GT_GT] = ACTIONS(4941), + [anon_sym_EQ_EQ] = ACTIONS(4941), + [anon_sym_BANG_EQ] = ACTIONS(4941), + [anon_sym_GT_EQ] = ACTIONS(4941), + [anon_sym_LT_EQ] = ACTIONS(4941), + [anon_sym_DOT] = ACTIONS(4943), + [anon_sym_EQ_GT] = ACTIONS(4941), + [anon_sym_switch] = ACTIONS(4941), + [anon_sym_when] = ACTIONS(4941), + [anon_sym_DOT_DOT] = ACTIONS(4941), + [anon_sym_and] = ACTIONS(4941), + [anon_sym_or] = ACTIONS(4941), + [anon_sym_AMP_AMP] = ACTIONS(4941), + [anon_sym_PIPE_PIPE] = ACTIONS(4941), + [anon_sym_QMARK_QMARK] = ACTIONS(4941), + [anon_sym_on] = ACTIONS(4941), + [anon_sym_equals] = ACTIONS(4941), + [anon_sym_by] = ACTIONS(4941), + [anon_sym_as] = ACTIONS(4941), + [anon_sym_is] = ACTIONS(4941), + [anon_sym_DASH_GT] = ACTIONS(4941), + [anon_sym_with] = ACTIONS(4941), + [aux_sym_preproc_if_token3] = ACTIONS(4941), + [aux_sym_preproc_else_token1] = ACTIONS(4941), + [aux_sym_preproc_elif_token1] = ACTIONS(4941), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -506816,26 +506287,26 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3499] = { - [sym__name] = STATE(6430), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(4096), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(4109), - [sym_type] = STATE(7400), - [sym_implicit_type] = STATE(7201), - [sym_array_type] = STATE(6648), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(6650), - [sym_pointer_type] = STATE(6650), - [sym__pointer_base_type] = STATE(7446), - [sym_function_pointer_type] = STATE(6650), - [sym_function_pointer_parameter] = STATE(7574), - [sym_ref_type] = STATE(7266), - [sym__ref_base_type] = STATE(7583), - [sym_scoped_type] = STATE(7266), - [sym_tuple_type] = STATE(6474), - [sym_identifier] = STATE(4087), - [sym__reserved_identifier] = STATE(3691), + [sym__name] = STATE(6381), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(4068), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(4073), + [sym_type] = STATE(7351), + [sym_implicit_type] = STATE(7156), + [sym_array_type] = STATE(6671), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(6672), + [sym_pointer_type] = STATE(6672), + [sym__pointer_base_type] = STATE(7421), + [sym_function_pointer_type] = STATE(6672), + [sym_function_pointer_parameter] = STATE(7377), + [sym_ref_type] = STATE(7035), + [sym__ref_base_type] = STATE(7387), + [sym_scoped_type] = STATE(7035), + [sym_tuple_type] = STATE(6553), + [sym_identifier] = STATE(4081), + [sym__reserved_identifier] = STATE(3654), [sym_preproc_region] = STATE(3499), [sym_preproc_endregion] = STATE(3499), [sym_preproc_line] = STATE(3499), @@ -506845,36 +506316,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), - [aux_sym_function_pointer_type_repeat1] = STATE(3670), - [sym__identifier_token] = ACTIONS(2967), - [anon_sym_alias] = ACTIONS(2971), - [anon_sym_global] = ACTIONS(2971), - [anon_sym_LPAREN] = ACTIONS(2979), - [anon_sym_ref] = ACTIONS(5472), - [anon_sym_delegate] = ACTIONS(5030), - [anon_sym_file] = ACTIONS(2971), - [anon_sym_in] = ACTIONS(5474), - [anon_sym_out] = ACTIONS(5474), - [anon_sym_where] = ACTIONS(2971), - [anon_sym_notnull] = ACTIONS(2971), - [anon_sym_unmanaged] = ACTIONS(2971), - [anon_sym_scoped] = ACTIONS(5476), - [anon_sym_var] = ACTIONS(4737), - [sym_predefined_type] = ACTIONS(5478), - [anon_sym_yield] = ACTIONS(2971), - [anon_sym_when] = ACTIONS(2971), - [anon_sym_from] = ACTIONS(2971), - [anon_sym_into] = ACTIONS(2971), - [anon_sym_join] = ACTIONS(2971), - [anon_sym_on] = ACTIONS(2971), - [anon_sym_equals] = ACTIONS(2971), - [anon_sym_let] = ACTIONS(2971), - [anon_sym_orderby] = ACTIONS(2971), - [anon_sym_ascending] = ACTIONS(2971), - [anon_sym_descending] = ACTIONS(2971), - [anon_sym_group] = ACTIONS(2971), - [anon_sym_by] = ACTIONS(2971), - [anon_sym_select] = ACTIONS(2971), + [aux_sym_function_pointer_type_repeat1] = STATE(3667), + [sym__identifier_token] = ACTIONS(2965), + [anon_sym_alias] = ACTIONS(2969), + [anon_sym_global] = ACTIONS(2969), + [anon_sym_LPAREN] = ACTIONS(2977), + [anon_sym_ref] = ACTIONS(5450), + [anon_sym_delegate] = ACTIONS(5172), + [anon_sym_file] = ACTIONS(2969), + [anon_sym_in] = ACTIONS(5452), + [anon_sym_out] = ACTIONS(5452), + [anon_sym_where] = ACTIONS(2969), + [anon_sym_notnull] = ACTIONS(2969), + [anon_sym_unmanaged] = ACTIONS(2969), + [anon_sym_scoped] = ACTIONS(5454), + [anon_sym_var] = ACTIONS(4705), + [sym_predefined_type] = ACTIONS(5456), + [anon_sym_yield] = ACTIONS(2969), + [anon_sym_when] = ACTIONS(2969), + [anon_sym_from] = ACTIONS(2969), + [anon_sym_into] = ACTIONS(2969), + [anon_sym_join] = ACTIONS(2969), + [anon_sym_on] = ACTIONS(2969), + [anon_sym_equals] = ACTIONS(2969), + [anon_sym_let] = ACTIONS(2969), + [anon_sym_orderby] = ACTIONS(2969), + [anon_sym_ascending] = ACTIONS(2969), + [anon_sym_descending] = ACTIONS(2969), + [anon_sym_group] = ACTIONS(2969), + [anon_sym_by] = ACTIONS(2969), + [anon_sym_select] = ACTIONS(2969), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -506887,6 +506358,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3500] = { + [sym_initializer_expression] = STATE(2971), [sym_preproc_region] = STATE(3500), [sym_preproc_endregion] = STATE(3500), [sym_preproc_line] = STATE(3500), @@ -506896,56 +506368,55 @@ 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(5561), - [anon_sym_LBRACK] = ACTIONS(4860), - [anon_sym_LPAREN] = ACTIONS(4860), - [anon_sym_LT] = ACTIONS(4862), - [anon_sym_GT] = ACTIONS(4862), - [anon_sym_QMARK] = ACTIONS(4862), - [anon_sym_BANG] = ACTIONS(4862), - [anon_sym_PLUS_PLUS] = ACTIONS(4860), - [anon_sym_DASH_DASH] = ACTIONS(4860), - [anon_sym_PLUS] = ACTIONS(4862), - [anon_sym_DASH] = ACTIONS(4862), - [anon_sym_STAR] = ACTIONS(4862), - [anon_sym_SLASH] = ACTIONS(4862), - [anon_sym_PERCENT] = ACTIONS(4862), - [anon_sym_CARET] = ACTIONS(4862), - [anon_sym_PIPE] = ACTIONS(4862), - [anon_sym_AMP] = ACTIONS(4862), - [anon_sym_LT_LT] = ACTIONS(4862), - [anon_sym_GT_GT] = ACTIONS(4862), - [anon_sym_GT_GT_GT] = ACTIONS(4862), - [anon_sym_EQ_EQ] = ACTIONS(4860), - [anon_sym_BANG_EQ] = ACTIONS(4860), - [anon_sym_GT_EQ] = ACTIONS(4860), - [anon_sym_LT_EQ] = ACTIONS(4860), - [anon_sym_DOT] = ACTIONS(4862), - [anon_sym_EQ_GT] = ACTIONS(4860), - [anon_sym_switch] = ACTIONS(4860), - [anon_sym_when] = ACTIONS(4860), - [anon_sym_DOT_DOT] = ACTIONS(4860), - [anon_sym_and] = ACTIONS(4860), - [anon_sym_or] = ACTIONS(4860), - [anon_sym_PLUS_EQ] = ACTIONS(5563), - [anon_sym_DASH_EQ] = ACTIONS(5563), - [anon_sym_STAR_EQ] = ACTIONS(5563), - [anon_sym_SLASH_EQ] = ACTIONS(5563), - [anon_sym_PERCENT_EQ] = ACTIONS(5563), - [anon_sym_AMP_EQ] = ACTIONS(5563), - [anon_sym_CARET_EQ] = ACTIONS(5563), - [anon_sym_PIPE_EQ] = ACTIONS(5563), - [anon_sym_LT_LT_EQ] = ACTIONS(5563), - [anon_sym_GT_GT_EQ] = ACTIONS(5563), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(5563), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(5563), - [anon_sym_AMP_AMP] = ACTIONS(4860), - [anon_sym_PIPE_PIPE] = ACTIONS(4860), - [anon_sym_QMARK_QMARK] = ACTIONS(4862), - [anon_sym_as] = ACTIONS(4860), - [anon_sym_is] = ACTIONS(4860), - [anon_sym_DASH_GT] = ACTIONS(4860), - [anon_sym_with] = ACTIONS(4860), + [anon_sym_SEMI] = ACTIONS(4850), + [anon_sym_LBRACK] = ACTIONS(4846), + [anon_sym_COLON] = ACTIONS(4850), + [anon_sym_COMMA] = ACTIONS(4850), + [anon_sym_RBRACK] = ACTIONS(4850), + [anon_sym_LPAREN] = ACTIONS(4850), + [anon_sym_RPAREN] = ACTIONS(4850), + [anon_sym_LBRACE] = ACTIONS(5536), + [anon_sym_RBRACE] = ACTIONS(4850), + [anon_sym_LT] = ACTIONS(4856), + [anon_sym_GT] = ACTIONS(4856), + [anon_sym_in] = ACTIONS(4856), + [anon_sym_QMARK] = ACTIONS(5539), + [anon_sym_BANG] = ACTIONS(4856), + [anon_sym_PLUS_PLUS] = ACTIONS(4850), + [anon_sym_DASH_DASH] = ACTIONS(4850), + [anon_sym_PLUS] = ACTIONS(4856), + [anon_sym_DASH] = ACTIONS(4856), + [anon_sym_STAR] = ACTIONS(4850), + [anon_sym_SLASH] = ACTIONS(4856), + [anon_sym_PERCENT] = ACTIONS(4850), + [anon_sym_CARET] = ACTIONS(4850), + [anon_sym_PIPE] = ACTIONS(4856), + [anon_sym_AMP] = ACTIONS(4856), + [anon_sym_LT_LT] = ACTIONS(4850), + [anon_sym_GT_GT] = ACTIONS(4856), + [anon_sym_GT_GT_GT] = ACTIONS(4850), + [anon_sym_EQ_EQ] = ACTIONS(4850), + [anon_sym_BANG_EQ] = ACTIONS(4850), + [anon_sym_GT_EQ] = ACTIONS(4850), + [anon_sym_LT_EQ] = ACTIONS(4850), + [anon_sym_DOT] = ACTIONS(4856), + [anon_sym_EQ_GT] = ACTIONS(4850), + [anon_sym_switch] = ACTIONS(4850), + [anon_sym_DOT_DOT] = ACTIONS(4850), + [anon_sym_AMP_AMP] = ACTIONS(4850), + [anon_sym_PIPE_PIPE] = ACTIONS(4850), + [anon_sym_QMARK_QMARK] = ACTIONS(4850), + [anon_sym_into] = ACTIONS(4850), + [anon_sym_on] = ACTIONS(4850), + [anon_sym_equals] = ACTIONS(4850), + [anon_sym_by] = ACTIONS(4850), + [anon_sym_as] = ACTIONS(4850), + [anon_sym_is] = ACTIONS(4850), + [anon_sym_DASH_GT] = ACTIONS(4850), + [anon_sym_with] = ACTIONS(4850), + [aux_sym_preproc_if_token3] = ACTIONS(4850), + [aux_sym_preproc_else_token1] = ACTIONS(4850), + [aux_sym_preproc_elif_token1] = ACTIONS(4850), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -506958,26 +506429,26 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3501] = { - [sym__name] = STATE(6430), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(4096), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(4109), - [sym_type] = STATE(7469), - [sym_implicit_type] = STATE(7201), - [sym_array_type] = STATE(6648), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(6650), - [sym_pointer_type] = STATE(6650), - [sym__pointer_base_type] = STATE(7446), - [sym_function_pointer_type] = STATE(6650), - [sym_function_pointer_parameter] = STATE(7574), - [sym_ref_type] = STATE(7266), - [sym__ref_base_type] = STATE(7583), - [sym_scoped_type] = STATE(7266), - [sym_tuple_type] = STATE(6474), - [sym_identifier] = STATE(4087), - [sym__reserved_identifier] = STATE(3691), + [sym_parameter_list] = STATE(7531), + [sym__name] = STATE(4369), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(4068), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(4073), + [sym_type] = STATE(5906), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym__lambda_parameters] = STATE(7609), + [sym_identifier] = STATE(5764), + [sym__reserved_identifier] = STATE(3654), [sym_preproc_region] = STATE(3501), [sym_preproc_endregion] = STATE(3501), [sym_preproc_line] = STATE(3501), @@ -506987,36 +506458,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), - [aux_sym_function_pointer_type_repeat1] = STATE(3366), - [sym__identifier_token] = ACTIONS(2967), - [anon_sym_alias] = ACTIONS(2971), - [anon_sym_global] = ACTIONS(2971), - [anon_sym_LPAREN] = ACTIONS(2979), - [anon_sym_ref] = ACTIONS(5472), - [anon_sym_delegate] = ACTIONS(5030), - [anon_sym_file] = ACTIONS(2971), - [anon_sym_in] = ACTIONS(5474), - [anon_sym_out] = ACTIONS(5474), - [anon_sym_where] = ACTIONS(2971), - [anon_sym_notnull] = ACTIONS(2971), - [anon_sym_unmanaged] = ACTIONS(2971), - [anon_sym_scoped] = ACTIONS(5476), - [anon_sym_var] = ACTIONS(4737), - [sym_predefined_type] = ACTIONS(5478), - [anon_sym_yield] = ACTIONS(2971), - [anon_sym_when] = ACTIONS(2971), - [anon_sym_from] = ACTIONS(2971), - [anon_sym_into] = ACTIONS(2971), - [anon_sym_join] = ACTIONS(2971), - [anon_sym_on] = ACTIONS(2971), - [anon_sym_equals] = ACTIONS(2971), - [anon_sym_let] = ACTIONS(2971), - [anon_sym_orderby] = ACTIONS(2971), - [anon_sym_ascending] = ACTIONS(2971), - [anon_sym_descending] = ACTIONS(2971), - [anon_sym_group] = ACTIONS(2971), - [anon_sym_by] = ACTIONS(2971), - [anon_sym_select] = ACTIONS(2971), + [aux_sym__lambda_expression_init_repeat1] = STATE(5828), + [sym__identifier_token] = ACTIONS(2965), + [anon_sym_alias] = ACTIONS(2969), + [anon_sym_global] = ACTIONS(2969), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_LPAREN] = ACTIONS(3786), + [anon_sym_ref] = ACTIONS(3436), + [anon_sym_delegate] = ACTIONS(5543), + [anon_sym_async] = ACTIONS(1045), + [anon_sym_file] = ACTIONS(2969), + [anon_sym_where] = ACTIONS(2969), + [anon_sym_notnull] = ACTIONS(2969), + [anon_sym_unmanaged] = ACTIONS(2969), + [anon_sym_scoped] = ACTIONS(2993), + [anon_sym_var] = ACTIONS(2995), + [sym_predefined_type] = ACTIONS(2997), + [anon_sym_yield] = ACTIONS(2969), + [anon_sym_when] = ACTIONS(2969), + [anon_sym_from] = ACTIONS(2969), + [anon_sym_into] = ACTIONS(2969), + [anon_sym_join] = ACTIONS(2969), + [anon_sym_on] = ACTIONS(2969), + [anon_sym_equals] = ACTIONS(2969), + [anon_sym_let] = ACTIONS(2969), + [anon_sym_orderby] = ACTIONS(2969), + [anon_sym_ascending] = ACTIONS(2969), + [anon_sym_descending] = ACTIONS(2969), + [anon_sym_group] = ACTIONS(2969), + [anon_sym_by] = ACTIONS(2969), + [anon_sym_select] = ACTIONS(2969), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -507038,56 +506509,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(5064), - [anon_sym_LBRACK] = ACTIONS(5064), - [anon_sym_COLON] = ACTIONS(5064), - [anon_sym_COMMA] = ACTIONS(5064), - [anon_sym_RBRACK] = ACTIONS(5064), - [anon_sym_LPAREN] = ACTIONS(5064), - [anon_sym_RPAREN] = ACTIONS(5064), - [anon_sym_RBRACE] = ACTIONS(5064), - [anon_sym_LT] = ACTIONS(5066), - [anon_sym_GT] = ACTIONS(5066), - [anon_sym_in] = ACTIONS(5064), - [anon_sym_QMARK] = ACTIONS(5066), - [anon_sym_BANG] = ACTIONS(5066), - [anon_sym_PLUS_PLUS] = ACTIONS(5064), - [anon_sym_DASH_DASH] = ACTIONS(5064), - [anon_sym_PLUS] = ACTIONS(5066), - [anon_sym_DASH] = ACTIONS(5066), - [anon_sym_STAR] = ACTIONS(5064), - [anon_sym_SLASH] = ACTIONS(5066), - [anon_sym_PERCENT] = ACTIONS(5064), - [anon_sym_CARET] = ACTIONS(5064), - [anon_sym_PIPE] = ACTIONS(5066), - [anon_sym_AMP] = ACTIONS(5066), - [anon_sym_LT_LT] = ACTIONS(5064), - [anon_sym_GT_GT] = ACTIONS(5066), - [anon_sym_GT_GT_GT] = ACTIONS(5064), - [anon_sym_EQ_EQ] = ACTIONS(5064), - [anon_sym_BANG_EQ] = ACTIONS(5064), - [anon_sym_GT_EQ] = ACTIONS(5064), - [anon_sym_LT_EQ] = ACTIONS(5064), - [anon_sym_DOT] = ACTIONS(5066), - [anon_sym_EQ_GT] = ACTIONS(5064), - [anon_sym_switch] = ACTIONS(5064), - [anon_sym_when] = ACTIONS(5064), - [anon_sym_DOT_DOT] = ACTIONS(5064), - [anon_sym_and] = ACTIONS(5064), - [anon_sym_or] = ACTIONS(5064), - [anon_sym_AMP_AMP] = ACTIONS(5064), - [anon_sym_PIPE_PIPE] = ACTIONS(5064), - [anon_sym_QMARK_QMARK] = ACTIONS(5064), - [anon_sym_on] = ACTIONS(5064), - [anon_sym_equals] = ACTIONS(5064), - [anon_sym_by] = ACTIONS(5064), - [anon_sym_as] = ACTIONS(5064), - [anon_sym_is] = ACTIONS(5064), - [anon_sym_DASH_GT] = ACTIONS(5064), - [anon_sym_with] = ACTIONS(5064), - [aux_sym_preproc_if_token3] = ACTIONS(5064), - [aux_sym_preproc_else_token1] = ACTIONS(5064), - [aux_sym_preproc_elif_token1] = ACTIONS(5064), + [anon_sym_EQ] = ACTIONS(5545), + [anon_sym_LBRACK] = ACTIONS(4811), + [anon_sym_LPAREN] = ACTIONS(4811), + [anon_sym_LT] = ACTIONS(4813), + [anon_sym_GT] = ACTIONS(4813), + [anon_sym_in] = ACTIONS(4813), + [anon_sym_QMARK] = ACTIONS(4813), + [anon_sym_BANG] = ACTIONS(4813), + [anon_sym_PLUS_PLUS] = ACTIONS(4811), + [anon_sym_DASH_DASH] = ACTIONS(4811), + [anon_sym_PLUS] = ACTIONS(4813), + [anon_sym_DASH] = ACTIONS(4813), + [anon_sym_STAR] = ACTIONS(4813), + [anon_sym_SLASH] = ACTIONS(4813), + [anon_sym_PERCENT] = ACTIONS(4813), + [anon_sym_CARET] = ACTIONS(4813), + [anon_sym_PIPE] = ACTIONS(4813), + [anon_sym_AMP] = ACTIONS(4813), + [anon_sym_LT_LT] = ACTIONS(4813), + [anon_sym_GT_GT] = ACTIONS(4813), + [anon_sym_GT_GT_GT] = ACTIONS(4813), + [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(4813), + [anon_sym_switch] = ACTIONS(4811), + [anon_sym_DOT_DOT] = ACTIONS(4811), + [anon_sym_and] = ACTIONS(4811), + [anon_sym_or] = ACTIONS(4811), + [anon_sym_PLUS_EQ] = ACTIONS(5547), + [anon_sym_DASH_EQ] = ACTIONS(5547), + [anon_sym_STAR_EQ] = ACTIONS(5547), + [anon_sym_SLASH_EQ] = ACTIONS(5547), + [anon_sym_PERCENT_EQ] = ACTIONS(5547), + [anon_sym_AMP_EQ] = ACTIONS(5547), + [anon_sym_CARET_EQ] = ACTIONS(5547), + [anon_sym_PIPE_EQ] = ACTIONS(5547), + [anon_sym_LT_LT_EQ] = ACTIONS(5547), + [anon_sym_GT_GT_EQ] = ACTIONS(5547), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(5547), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(5547), + [anon_sym_AMP_AMP] = ACTIONS(4811), + [anon_sym_PIPE_PIPE] = ACTIONS(4811), + [anon_sym_QMARK_QMARK] = ACTIONS(4813), + [anon_sym_into] = 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_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -507109,130 +506580,130 @@ 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(5080), - [anon_sym_LBRACK] = ACTIONS(5080), - [anon_sym_COLON] = ACTIONS(5080), - [anon_sym_COMMA] = ACTIONS(5080), - [anon_sym_RBRACK] = ACTIONS(5080), - [anon_sym_LPAREN] = ACTIONS(5080), - [anon_sym_RPAREN] = ACTIONS(5080), - [anon_sym_RBRACE] = ACTIONS(5080), - [anon_sym_LT] = ACTIONS(5082), - [anon_sym_GT] = ACTIONS(5082), - [anon_sym_in] = ACTIONS(5080), - [anon_sym_QMARK] = ACTIONS(5082), - [anon_sym_BANG] = ACTIONS(5082), - [anon_sym_PLUS_PLUS] = ACTIONS(5080), - [anon_sym_DASH_DASH] = ACTIONS(5080), - [anon_sym_PLUS] = ACTIONS(5082), - [anon_sym_DASH] = ACTIONS(5082), - [anon_sym_STAR] = ACTIONS(5080), - [anon_sym_SLASH] = ACTIONS(5082), - [anon_sym_PERCENT] = ACTIONS(5080), - [anon_sym_CARET] = ACTIONS(5080), - [anon_sym_PIPE] = ACTIONS(5082), - [anon_sym_AMP] = ACTIONS(5082), - [anon_sym_LT_LT] = ACTIONS(5080), - [anon_sym_GT_GT] = ACTIONS(5082), - [anon_sym_GT_GT_GT] = ACTIONS(5080), - [anon_sym_EQ_EQ] = ACTIONS(5080), - [anon_sym_BANG_EQ] = ACTIONS(5080), - [anon_sym_GT_EQ] = ACTIONS(5080), - [anon_sym_LT_EQ] = ACTIONS(5080), - [anon_sym_DOT] = ACTIONS(5082), - [anon_sym_EQ_GT] = ACTIONS(5080), - [anon_sym_switch] = ACTIONS(5080), - [anon_sym_when] = ACTIONS(5080), - [anon_sym_DOT_DOT] = ACTIONS(5080), - [anon_sym_and] = ACTIONS(5080), - [anon_sym_or] = ACTIONS(5080), - [anon_sym_AMP_AMP] = ACTIONS(5080), - [anon_sym_PIPE_PIPE] = ACTIONS(5080), - [anon_sym_QMARK_QMARK] = ACTIONS(5080), - [anon_sym_on] = ACTIONS(5080), - [anon_sym_equals] = ACTIONS(5080), - [anon_sym_by] = ACTIONS(5080), - [anon_sym_as] = ACTIONS(5080), - [anon_sym_is] = ACTIONS(5080), - [anon_sym_DASH_GT] = ACTIONS(5080), - [anon_sym_with] = ACTIONS(5080), - [aux_sym_preproc_if_token3] = ACTIONS(5080), - [aux_sym_preproc_else_token1] = ACTIONS(5080), - [aux_sym_preproc_elif_token1] = ACTIONS(5080), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - }, - [3504] = { - [sym_preproc_region] = STATE(3504), - [sym_preproc_endregion] = STATE(3504), - [sym_preproc_line] = STATE(3504), - [sym_preproc_pragma] = STATE(3504), - [sym_preproc_nullable] = STATE(3504), - [sym_preproc_error] = STATE(3504), - [sym_preproc_warning] = STATE(3504), - [sym_preproc_define] = STATE(3504), - [sym_preproc_undef] = STATE(3504), - [anon_sym_SEMI] = ACTIONS(5110), - [anon_sym_LBRACK] = ACTIONS(5110), - [anon_sym_COLON] = ACTIONS(5110), - [anon_sym_COMMA] = ACTIONS(5110), - [anon_sym_RBRACK] = ACTIONS(5110), - [anon_sym_LPAREN] = ACTIONS(5110), - [anon_sym_RPAREN] = ACTIONS(5110), - [anon_sym_RBRACE] = ACTIONS(5110), - [anon_sym_LT] = ACTIONS(5112), - [anon_sym_GT] = ACTIONS(5112), - [anon_sym_in] = ACTIONS(5110), - [anon_sym_QMARK] = ACTIONS(5112), - [anon_sym_BANG] = ACTIONS(5112), - [anon_sym_PLUS_PLUS] = ACTIONS(5110), - [anon_sym_DASH_DASH] = ACTIONS(5110), - [anon_sym_PLUS] = ACTIONS(5112), - [anon_sym_DASH] = ACTIONS(5112), - [anon_sym_STAR] = ACTIONS(5110), - [anon_sym_SLASH] = ACTIONS(5112), - [anon_sym_PERCENT] = ACTIONS(5110), - [anon_sym_CARET] = ACTIONS(5110), - [anon_sym_PIPE] = ACTIONS(5112), - [anon_sym_AMP] = ACTIONS(5112), - [anon_sym_LT_LT] = ACTIONS(5110), - [anon_sym_GT_GT] = ACTIONS(5112), - [anon_sym_GT_GT_GT] = ACTIONS(5110), - [anon_sym_EQ_EQ] = ACTIONS(5110), - [anon_sym_BANG_EQ] = ACTIONS(5110), - [anon_sym_GT_EQ] = ACTIONS(5110), - [anon_sym_LT_EQ] = ACTIONS(5110), - [anon_sym_DOT] = ACTIONS(5112), - [anon_sym_EQ_GT] = ACTIONS(5110), - [anon_sym_switch] = ACTIONS(5110), - [anon_sym_when] = ACTIONS(5110), - [anon_sym_DOT_DOT] = ACTIONS(5110), - [anon_sym_and] = ACTIONS(5110), - [anon_sym_or] = ACTIONS(5110), - [anon_sym_AMP_AMP] = ACTIONS(5110), - [anon_sym_PIPE_PIPE] = ACTIONS(5110), - [anon_sym_QMARK_QMARK] = ACTIONS(5110), - [anon_sym_on] = ACTIONS(5110), - [anon_sym_equals] = ACTIONS(5110), - [anon_sym_by] = ACTIONS(5110), - [anon_sym_as] = ACTIONS(5110), - [anon_sym_is] = ACTIONS(5110), - [anon_sym_DASH_GT] = ACTIONS(5110), - [anon_sym_with] = ACTIONS(5110), - [aux_sym_preproc_if_token3] = ACTIONS(5110), - [aux_sym_preproc_else_token1] = ACTIONS(5110), - [aux_sym_preproc_elif_token1] = ACTIONS(5110), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), + [sym__identifier_token] = ACTIONS(3466), + [anon_sym_extern] = ACTIONS(3466), + [anon_sym_alias] = ACTIONS(3466), + [anon_sym_SEMI] = ACTIONS(3429), + [anon_sym_global] = ACTIONS(3466), + [anon_sym_unsafe] = ACTIONS(3466), + [anon_sym_static] = ACTIONS(3466), + [anon_sym_LBRACE] = ACTIONS(3429), + [anon_sym_abstract] = ACTIONS(3466), + [anon_sym_async] = ACTIONS(3466), + [anon_sym_const] = ACTIONS(3466), + [anon_sym_file] = ACTIONS(3466), + [anon_sym_fixed] = ACTIONS(3466), + [anon_sym_internal] = ACTIONS(3466), + [anon_sym_new] = ACTIONS(3466), + [anon_sym_override] = ACTIONS(3466), + [anon_sym_partial] = ACTIONS(3466), + [anon_sym_private] = ACTIONS(3466), + [anon_sym_protected] = ACTIONS(3466), + [anon_sym_public] = ACTIONS(3466), + [anon_sym_readonly] = ACTIONS(3466), + [anon_sym_required] = ACTIONS(3466), + [anon_sym_sealed] = ACTIONS(3466), + [anon_sym_virtual] = ACTIONS(3466), + [anon_sym_volatile] = ACTIONS(3466), + [anon_sym_where] = ACTIONS(3466), + [anon_sym_notnull] = ACTIONS(3466), + [anon_sym_unmanaged] = ACTIONS(3466), + [anon_sym_get] = ACTIONS(3466), + [anon_sym_set] = ACTIONS(3466), + [anon_sym_add] = ACTIONS(3466), + [anon_sym_remove] = ACTIONS(3466), + [anon_sym_init] = ACTIONS(3466), + [anon_sym_scoped] = ACTIONS(3466), + [anon_sym_EQ_GT] = ACTIONS(3429), + [anon_sym_var] = ACTIONS(3466), + [anon_sym_yield] = ACTIONS(3466), + [anon_sym_when] = ACTIONS(3466), + [anon_sym_from] = ACTIONS(3466), + [anon_sym_into] = ACTIONS(3466), + [anon_sym_join] = ACTIONS(3466), + [anon_sym_on] = ACTIONS(3466), + [anon_sym_equals] = ACTIONS(3466), + [anon_sym_let] = ACTIONS(3466), + [anon_sym_orderby] = ACTIONS(3466), + [anon_sym_ascending] = ACTIONS(3466), + [anon_sym_descending] = ACTIONS(3466), + [anon_sym_group] = ACTIONS(3466), + [anon_sym_by] = ACTIONS(3466), + [anon_sym_select] = ACTIONS(3466), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + }, + [3504] = { + [sym_preproc_region] = STATE(3504), + [sym_preproc_endregion] = STATE(3504), + [sym_preproc_line] = STATE(3504), + [sym_preproc_pragma] = STATE(3504), + [sym_preproc_nullable] = STATE(3504), + [sym_preproc_error] = STATE(3504), + [sym_preproc_warning] = STATE(3504), + [sym_preproc_define] = STATE(3504), + [sym_preproc_undef] = STATE(3504), + [anon_sym_SEMI] = ACTIONS(5108), + [anon_sym_LBRACK] = ACTIONS(5108), + [anon_sym_COLON] = ACTIONS(5108), + [anon_sym_COMMA] = ACTIONS(5108), + [anon_sym_RBRACK] = ACTIONS(5108), + [anon_sym_LPAREN] = ACTIONS(5108), + [anon_sym_RPAREN] = ACTIONS(5108), + [anon_sym_RBRACE] = ACTIONS(5108), + [anon_sym_LT] = ACTIONS(5110), + [anon_sym_GT] = ACTIONS(5110), + [anon_sym_in] = ACTIONS(5108), + [anon_sym_QMARK] = ACTIONS(5110), + [anon_sym_BANG] = ACTIONS(5110), + [anon_sym_PLUS_PLUS] = ACTIONS(5108), + [anon_sym_DASH_DASH] = ACTIONS(5108), + [anon_sym_PLUS] = ACTIONS(5110), + [anon_sym_DASH] = ACTIONS(5110), + [anon_sym_STAR] = ACTIONS(5108), + [anon_sym_SLASH] = ACTIONS(5110), + [anon_sym_PERCENT] = ACTIONS(5108), + [anon_sym_CARET] = ACTIONS(5108), + [anon_sym_PIPE] = ACTIONS(5110), + [anon_sym_AMP] = ACTIONS(5110), + [anon_sym_LT_LT] = ACTIONS(5108), + [anon_sym_GT_GT] = ACTIONS(5110), + [anon_sym_GT_GT_GT] = ACTIONS(5108), + [anon_sym_EQ_EQ] = ACTIONS(5108), + [anon_sym_BANG_EQ] = ACTIONS(5108), + [anon_sym_GT_EQ] = ACTIONS(5108), + [anon_sym_LT_EQ] = ACTIONS(5108), + [anon_sym_DOT] = ACTIONS(5110), + [anon_sym_EQ_GT] = ACTIONS(5108), + [anon_sym_switch] = ACTIONS(5108), + [anon_sym_when] = ACTIONS(5108), + [anon_sym_DOT_DOT] = ACTIONS(5108), + [anon_sym_and] = ACTIONS(5108), + [anon_sym_or] = ACTIONS(5108), + [anon_sym_AMP_AMP] = ACTIONS(5108), + [anon_sym_PIPE_PIPE] = ACTIONS(5108), + [anon_sym_QMARK_QMARK] = ACTIONS(5108), + [anon_sym_on] = ACTIONS(5108), + [anon_sym_equals] = ACTIONS(5108), + [anon_sym_by] = ACTIONS(5108), + [anon_sym_as] = ACTIONS(5108), + [anon_sym_is] = ACTIONS(5108), + [anon_sym_DASH_GT] = ACTIONS(5108), + [anon_sym_with] = ACTIONS(5108), + [aux_sym_preproc_if_token3] = ACTIONS(5108), + [aux_sym_preproc_else_token1] = ACTIONS(5108), + [aux_sym_preproc_elif_token1] = ACTIONS(5108), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), [aux_sym_preproc_pragma_token1] = ACTIONS(9), [aux_sym_preproc_nullable_token1] = ACTIONS(11), [aux_sym_preproc_error_token1] = ACTIONS(13), @@ -507251,56 +506722,56 @@ 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), - [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(5124), + [anon_sym_LBRACK] = ACTIONS(5124), + [anon_sym_COLON] = ACTIONS(5124), + [anon_sym_COMMA] = ACTIONS(5124), + [anon_sym_RBRACK] = ACTIONS(5124), + [anon_sym_LPAREN] = ACTIONS(5124), + [anon_sym_RPAREN] = ACTIONS(5124), + [anon_sym_RBRACE] = ACTIONS(5124), + [anon_sym_LT] = ACTIONS(5126), + [anon_sym_GT] = ACTIONS(5126), + [anon_sym_in] = ACTIONS(5124), + [anon_sym_QMARK] = ACTIONS(5126), + [anon_sym_BANG] = ACTIONS(5126), + [anon_sym_PLUS_PLUS] = ACTIONS(5124), + [anon_sym_DASH_DASH] = ACTIONS(5124), + [anon_sym_PLUS] = ACTIONS(5126), + [anon_sym_DASH] = ACTIONS(5126), + [anon_sym_STAR] = ACTIONS(5124), + [anon_sym_SLASH] = ACTIONS(5126), + [anon_sym_PERCENT] = ACTIONS(5124), + [anon_sym_CARET] = ACTIONS(5124), + [anon_sym_PIPE] = ACTIONS(5126), + [anon_sym_AMP] = ACTIONS(5126), + [anon_sym_LT_LT] = ACTIONS(5124), + [anon_sym_GT_GT] = ACTIONS(5126), + [anon_sym_GT_GT_GT] = ACTIONS(5124), + [anon_sym_EQ_EQ] = ACTIONS(5124), + [anon_sym_BANG_EQ] = ACTIONS(5124), + [anon_sym_GT_EQ] = ACTIONS(5124), + [anon_sym_LT_EQ] = ACTIONS(5124), + [anon_sym_DOT] = ACTIONS(5126), + [anon_sym_EQ_GT] = ACTIONS(5124), + [anon_sym_switch] = ACTIONS(5124), + [anon_sym_when] = ACTIONS(5124), + [anon_sym_DOT_DOT] = ACTIONS(5124), + [anon_sym_and] = ACTIONS(5124), + [anon_sym_or] = ACTIONS(5124), + [anon_sym_AMP_AMP] = ACTIONS(5124), + [anon_sym_PIPE_PIPE] = ACTIONS(5124), + [anon_sym_QMARK_QMARK] = ACTIONS(5124), + [anon_sym_on] = ACTIONS(5124), + [anon_sym_equals] = ACTIONS(5124), + [anon_sym_by] = ACTIONS(5124), + [anon_sym_as] = ACTIONS(5124), + [anon_sym_is] = ACTIONS(5124), + [anon_sym_DASH_GT] = ACTIONS(5124), + [anon_sym_with] = ACTIONS(5124), + [aux_sym_preproc_if_token3] = ACTIONS(5124), + [aux_sym_preproc_else_token1] = ACTIONS(5124), + [aux_sym_preproc_elif_token1] = ACTIONS(5124), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -507322,56 +506793,56 @@ 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), - [sym__identifier_token] = ACTIONS(3482), - [anon_sym_extern] = ACTIONS(3482), - [anon_sym_alias] = ACTIONS(3482), - [anon_sym_SEMI] = ACTIONS(3445), - [anon_sym_global] = ACTIONS(3482), - [anon_sym_unsafe] = ACTIONS(3482), - [anon_sym_static] = ACTIONS(3482), - [anon_sym_LBRACE] = ACTIONS(3445), - [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_get] = ACTIONS(3482), - [anon_sym_set] = ACTIONS(3482), - [anon_sym_add] = ACTIONS(3482), - [anon_sym_remove] = ACTIONS(3482), - [anon_sym_init] = ACTIONS(3482), - [anon_sym_scoped] = ACTIONS(3482), - [anon_sym_EQ_GT] = ACTIONS(3445), - [anon_sym_var] = ACTIONS(3482), - [anon_sym_yield] = ACTIONS(3482), - [anon_sym_when] = ACTIONS(3482), - [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), + [sym__identifier_token] = ACTIONS(3309), + [anon_sym_extern] = ACTIONS(3309), + [anon_sym_alias] = ACTIONS(3309), + [anon_sym_global] = ACTIONS(3309), + [anon_sym_unsafe] = ACTIONS(3309), + [anon_sym_static] = ACTIONS(3309), + [anon_sym_LBRACK] = ACTIONS(3311), + [anon_sym_RBRACE] = ACTIONS(3311), + [anon_sym_abstract] = ACTIONS(3309), + [anon_sym_async] = ACTIONS(3309), + [anon_sym_const] = ACTIONS(3309), + [anon_sym_file] = ACTIONS(3309), + [anon_sym_fixed] = ACTIONS(3309), + [anon_sym_internal] = ACTIONS(3309), + [anon_sym_new] = ACTIONS(3309), + [anon_sym_override] = ACTIONS(3309), + [anon_sym_partial] = ACTIONS(3309), + [anon_sym_private] = ACTIONS(3309), + [anon_sym_protected] = ACTIONS(3309), + [anon_sym_public] = ACTIONS(3309), + [anon_sym_readonly] = ACTIONS(3309), + [anon_sym_required] = ACTIONS(3309), + [anon_sym_sealed] = ACTIONS(3309), + [anon_sym_virtual] = ACTIONS(3309), + [anon_sym_volatile] = ACTIONS(3309), + [anon_sym_where] = ACTIONS(3309), + [anon_sym_notnull] = ACTIONS(3309), + [anon_sym_unmanaged] = ACTIONS(3309), + [anon_sym_get] = ACTIONS(3309), + [anon_sym_set] = ACTIONS(3309), + [anon_sym_add] = ACTIONS(3309), + [anon_sym_remove] = ACTIONS(3309), + [anon_sym_init] = ACTIONS(3309), + [anon_sym_scoped] = ACTIONS(3309), + [anon_sym_var] = ACTIONS(3309), + [anon_sym_yield] = ACTIONS(3309), + [anon_sym_when] = ACTIONS(3309), + [anon_sym_from] = ACTIONS(3309), + [anon_sym_into] = ACTIONS(3309), + [anon_sym_join] = ACTIONS(3309), + [anon_sym_on] = ACTIONS(3309), + [anon_sym_equals] = ACTIONS(3309), + [anon_sym_let] = ACTIONS(3309), + [anon_sym_orderby] = ACTIONS(3309), + [anon_sym_ascending] = ACTIONS(3309), + [anon_sym_descending] = ACTIONS(3309), + [anon_sym_group] = ACTIONS(3309), + [anon_sym_by] = ACTIONS(3309), + [anon_sym_select] = ACTIONS(3309), + [aux_sym_preproc_if_token1] = ACTIONS(3311), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -507384,6 +506855,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3507] = { + [sym_argument_list] = STATE(3381), + [sym_bracketed_argument_list] = STATE(2467), [sym_preproc_region] = STATE(3507), [sym_preproc_endregion] = STATE(3507), [sym_preproc_line] = STATE(3507), @@ -507393,56 +506866,53 @@ 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(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), + [anon_sym_SEMI] = ACTIONS(4838), + [anon_sym_LBRACK] = ACTIONS(5549), + [anon_sym_COLON] = ACTIONS(4838), + [anon_sym_COMMA] = ACTIONS(4838), + [anon_sym_RBRACK] = ACTIONS(4838), + [anon_sym_LPAREN] = ACTIONS(5257), + [anon_sym_RPAREN] = ACTIONS(4838), + [anon_sym_RBRACE] = ACTIONS(4838), + [anon_sym_LT] = ACTIONS(4840), + [anon_sym_GT] = ACTIONS(4840), + [anon_sym_in] = ACTIONS(4838), + [anon_sym_QMARK] = ACTIONS(4840), + [anon_sym_BANG] = ACTIONS(5302), + [anon_sym_PLUS_PLUS] = ACTIONS(5304), + [anon_sym_DASH_DASH] = ACTIONS(5304), + [anon_sym_PLUS] = ACTIONS(4840), + [anon_sym_DASH] = ACTIONS(4840), + [anon_sym_STAR] = ACTIONS(4838), + [anon_sym_SLASH] = ACTIONS(4840), + [anon_sym_PERCENT] = ACTIONS(4838), + [anon_sym_CARET] = ACTIONS(4838), + [anon_sym_PIPE] = ACTIONS(4840), + [anon_sym_AMP] = ACTIONS(4840), + [anon_sym_LT_LT] = ACTIONS(4838), + [anon_sym_GT_GT] = ACTIONS(4840), + [anon_sym_GT_GT_GT] = ACTIONS(4838), + [anon_sym_EQ_EQ] = ACTIONS(4838), + [anon_sym_BANG_EQ] = ACTIONS(4838), + [anon_sym_GT_EQ] = ACTIONS(4838), + [anon_sym_LT_EQ] = ACTIONS(4838), + [anon_sym_DOT] = ACTIONS(4042), + [anon_sym_EQ_GT] = ACTIONS(4838), + [anon_sym_switch] = ACTIONS(4838), + [anon_sym_DOT_DOT] = ACTIONS(4838), + [anon_sym_AMP_AMP] = ACTIONS(4838), + [anon_sym_PIPE_PIPE] = ACTIONS(4838), + [anon_sym_QMARK_QMARK] = ACTIONS(4838), + [anon_sym_on] = ACTIONS(4838), + [anon_sym_equals] = ACTIONS(4838), + [anon_sym_by] = ACTIONS(4838), + [anon_sym_as] = ACTIONS(4838), + [anon_sym_is] = ACTIONS(4838), + [anon_sym_DASH_GT] = ACTIONS(4044), + [anon_sym_with] = ACTIONS(4838), + [aux_sym_preproc_if_token3] = ACTIONS(4838), + [aux_sym_preproc_else_token1] = ACTIONS(4838), + [aux_sym_preproc_elif_token1] = ACTIONS(4838), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -507455,6 +506925,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3508] = { + [sym__name] = STATE(5130), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(4068), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_ref_type] = STATE(2331), + [sym__scoped_base_type] = STATE(2339), + [sym_identifier] = STATE(4370), + [sym__reserved_identifier] = STATE(2168), [sym_preproc_region] = STATE(3508), [sym_preproc_endregion] = STATE(3508), [sym_preproc_line] = STATE(3508), @@ -507464,56 +506943,46 @@ 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_EQ] = ACTIONS(3704), - [anon_sym_LBRACK] = ACTIONS(3719), - [anon_sym_COLON] = ACTIONS(4271), - [anon_sym_LPAREN] = ACTIONS(3719), - [anon_sym_LT] = ACTIONS(3704), - [anon_sym_GT] = ACTIONS(3704), - [anon_sym_QMARK] = ACTIONS(3704), - [anon_sym_BANG] = ACTIONS(3704), - [anon_sym_PLUS_PLUS] = ACTIONS(3719), - [anon_sym_DASH_DASH] = ACTIONS(3719), - [anon_sym_PLUS] = ACTIONS(3704), - [anon_sym_DASH] = ACTIONS(3704), - [anon_sym_STAR] = ACTIONS(3704), - [anon_sym_SLASH] = ACTIONS(3704), - [anon_sym_PERCENT] = ACTIONS(3704), - [anon_sym_CARET] = ACTIONS(3704), - [anon_sym_PIPE] = ACTIONS(3704), - [anon_sym_AMP] = ACTIONS(3704), - [anon_sym_LT_LT] = ACTIONS(3704), - [anon_sym_GT_GT] = ACTIONS(3704), - [anon_sym_GT_GT_GT] = ACTIONS(3704), - [anon_sym_EQ_EQ] = ACTIONS(3719), - [anon_sym_BANG_EQ] = ACTIONS(3719), - [anon_sym_GT_EQ] = ACTIONS(3719), - [anon_sym_LT_EQ] = ACTIONS(3719), - [anon_sym_DOT] = ACTIONS(3704), - [anon_sym_switch] = ACTIONS(3719), - [anon_sym_when] = ACTIONS(4271), - [anon_sym_DOT_DOT] = ACTIONS(3719), - [anon_sym_and] = ACTIONS(4271), - [anon_sym_or] = ACTIONS(4271), - [anon_sym_PLUS_EQ] = ACTIONS(3719), - [anon_sym_DASH_EQ] = ACTIONS(3719), - [anon_sym_STAR_EQ] = ACTIONS(3719), - [anon_sym_SLASH_EQ] = ACTIONS(3719), - [anon_sym_PERCENT_EQ] = ACTIONS(3719), - [anon_sym_AMP_EQ] = ACTIONS(3719), - [anon_sym_CARET_EQ] = ACTIONS(3719), - [anon_sym_PIPE_EQ] = ACTIONS(3719), - [anon_sym_LT_LT_EQ] = ACTIONS(3719), - [anon_sym_GT_GT_EQ] = ACTIONS(3719), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3719), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3719), - [anon_sym_AMP_AMP] = ACTIONS(3719), - [anon_sym_PIPE_PIPE] = ACTIONS(3719), - [anon_sym_QMARK_QMARK] = ACTIONS(3704), - [anon_sym_as] = ACTIONS(3719), - [anon_sym_is] = ACTIONS(3719), - [anon_sym_DASH_GT] = ACTIONS(3719), - [anon_sym_with] = ACTIONS(3719), + [sym__identifier_token] = ACTIONS(3584), + [anon_sym_alias] = ACTIONS(3587), + [anon_sym_global] = ACTIONS(3587), + [anon_sym_LBRACK] = ACTIONS(3429), + [anon_sym_COMMA] = ACTIONS(3429), + [anon_sym_RBRACK] = ACTIONS(3429), + [anon_sym_LPAREN] = ACTIONS(3429), + [anon_sym_RPAREN] = ACTIONS(3429), + [anon_sym_ref] = ACTIONS(3590), + [anon_sym_LBRACE] = ACTIONS(3429), + [anon_sym_RBRACE] = ACTIONS(3429), + [anon_sym_file] = ACTIONS(3587), + [anon_sym_LT] = ACTIONS(3429), + [anon_sym_where] = ACTIONS(3587), + [anon_sym_QMARK] = ACTIONS(3429), + [anon_sym_notnull] = ACTIONS(3587), + [anon_sym_unmanaged] = ACTIONS(3587), + [anon_sym_STAR] = ACTIONS(3429), + [anon_sym_DOT] = ACTIONS(3429), + [anon_sym_scoped] = ACTIONS(3587), + [anon_sym_EQ_GT] = ACTIONS(3429), + [anon_sym_COLON_COLON] = ACTIONS(3429), + [anon_sym_var] = ACTIONS(3587), + [anon_sym_yield] = ACTIONS(3587), + [anon_sym_when] = ACTIONS(3587), + [sym_discard] = ACTIONS(3431), + [anon_sym_and] = ACTIONS(3431), + [anon_sym_or] = ACTIONS(3431), + [anon_sym_from] = ACTIONS(3587), + [anon_sym_into] = ACTIONS(3587), + [anon_sym_join] = ACTIONS(3587), + [anon_sym_on] = ACTIONS(3587), + [anon_sym_equals] = ACTIONS(3587), + [anon_sym_let] = ACTIONS(3587), + [anon_sym_orderby] = ACTIONS(3587), + [anon_sym_ascending] = ACTIONS(3587), + [anon_sym_descending] = ACTIONS(3587), + [anon_sym_group] = ACTIONS(3587), + [anon_sym_by] = ACTIONS(3587), + [anon_sym_select] = ACTIONS(3587), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -507535,56 +507004,55 @@ 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), - [anon_sym_SEMI] = ACTIONS(5208), - [anon_sym_LBRACK] = ACTIONS(5208), - [anon_sym_COLON] = ACTIONS(5208), - [anon_sym_COMMA] = ACTIONS(5208), - [anon_sym_RBRACK] = ACTIONS(5208), - [anon_sym_LPAREN] = ACTIONS(5208), - [anon_sym_RPAREN] = ACTIONS(5208), - [anon_sym_RBRACE] = ACTIONS(5208), - [anon_sym_LT] = ACTIONS(5210), - [anon_sym_GT] = ACTIONS(5210), - [anon_sym_in] = ACTIONS(5208), - [anon_sym_QMARK] = ACTIONS(5210), - [anon_sym_BANG] = ACTIONS(5210), - [anon_sym_PLUS_PLUS] = ACTIONS(5208), - [anon_sym_DASH_DASH] = ACTIONS(5208), - [anon_sym_PLUS] = ACTIONS(5210), - [anon_sym_DASH] = ACTIONS(5210), - [anon_sym_STAR] = ACTIONS(5208), - [anon_sym_SLASH] = ACTIONS(5210), - [anon_sym_PERCENT] = ACTIONS(5208), - [anon_sym_CARET] = ACTIONS(5208), - [anon_sym_PIPE] = ACTIONS(5210), - [anon_sym_AMP] = ACTIONS(5210), - [anon_sym_LT_LT] = ACTIONS(5208), - [anon_sym_GT_GT] = ACTIONS(5210), - [anon_sym_GT_GT_GT] = ACTIONS(5208), - [anon_sym_EQ_EQ] = ACTIONS(5208), - [anon_sym_BANG_EQ] = ACTIONS(5208), - [anon_sym_GT_EQ] = ACTIONS(5208), - [anon_sym_LT_EQ] = ACTIONS(5208), - [anon_sym_DOT] = ACTIONS(5210), - [anon_sym_EQ_GT] = ACTIONS(5208), - [anon_sym_switch] = ACTIONS(5208), - [anon_sym_when] = ACTIONS(5208), - [anon_sym_DOT_DOT] = ACTIONS(5208), - [anon_sym_and] = ACTIONS(5208), - [anon_sym_or] = ACTIONS(5208), - [anon_sym_AMP_AMP] = ACTIONS(5208), - [anon_sym_PIPE_PIPE] = ACTIONS(5208), - [anon_sym_QMARK_QMARK] = ACTIONS(5208), - [anon_sym_on] = ACTIONS(5208), - [anon_sym_equals] = ACTIONS(5208), - [anon_sym_by] = ACTIONS(5208), - [anon_sym_as] = ACTIONS(5208), - [anon_sym_is] = ACTIONS(5208), - [anon_sym_DASH_GT] = ACTIONS(5208), - [anon_sym_with] = ACTIONS(5208), - [aux_sym_preproc_if_token3] = ACTIONS(5208), - [aux_sym_preproc_else_token1] = ACTIONS(5208), - [aux_sym_preproc_elif_token1] = ACTIONS(5208), + [anon_sym_EQ] = ACTIONS(5551), + [anon_sym_LBRACK] = ACTIONS(4811), + [anon_sym_LPAREN] = ACTIONS(4811), + [anon_sym_LT] = ACTIONS(4813), + [anon_sym_GT] = ACTIONS(4813), + [anon_sym_QMARK] = ACTIONS(4813), + [anon_sym_BANG] = ACTIONS(4813), + [anon_sym_PLUS_PLUS] = ACTIONS(4811), + [anon_sym_DASH_DASH] = ACTIONS(4811), + [anon_sym_PLUS] = ACTIONS(4813), + [anon_sym_DASH] = ACTIONS(4813), + [anon_sym_STAR] = ACTIONS(4813), + [anon_sym_SLASH] = ACTIONS(4813), + [anon_sym_PERCENT] = ACTIONS(4813), + [anon_sym_CARET] = ACTIONS(4813), + [anon_sym_PIPE] = ACTIONS(4813), + [anon_sym_AMP] = ACTIONS(4813), + [anon_sym_LT_LT] = ACTIONS(4813), + [anon_sym_GT_GT] = ACTIONS(4813), + [anon_sym_GT_GT_GT] = ACTIONS(4813), + [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(4813), + [anon_sym_switch] = ACTIONS(4811), + [anon_sym_DOT_DOT] = ACTIONS(4811), + [anon_sym_and] = ACTIONS(4811), + [anon_sym_or] = ACTIONS(4811), + [anon_sym_PLUS_EQ] = ACTIONS(5553), + [anon_sym_DASH_EQ] = ACTIONS(5553), + [anon_sym_STAR_EQ] = ACTIONS(5553), + [anon_sym_SLASH_EQ] = ACTIONS(5553), + [anon_sym_PERCENT_EQ] = ACTIONS(5553), + [anon_sym_AMP_EQ] = ACTIONS(5553), + [anon_sym_CARET_EQ] = ACTIONS(5553), + [anon_sym_PIPE_EQ] = ACTIONS(5553), + [anon_sym_LT_LT_EQ] = ACTIONS(5553), + [anon_sym_GT_GT_EQ] = ACTIONS(5553), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(5553), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(5553), + [anon_sym_AMP_AMP] = ACTIONS(4811), + [anon_sym_PIPE_PIPE] = ACTIONS(4811), + [anon_sym_QMARK_QMARK] = ACTIONS(4813), + [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_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -507606,56 +507074,55 @@ 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), - [anon_sym_EQ] = ACTIONS(5565), - [anon_sym_LBRACK] = ACTIONS(4860), - [anon_sym_LPAREN] = ACTIONS(4860), - [anon_sym_LT] = ACTIONS(4862), - [anon_sym_GT] = ACTIONS(4862), - [anon_sym_in] = ACTIONS(4862), - [anon_sym_QMARK] = ACTIONS(4862), - [anon_sym_BANG] = ACTIONS(4862), - [anon_sym_PLUS_PLUS] = ACTIONS(4860), - [anon_sym_DASH_DASH] = ACTIONS(4860), - [anon_sym_PLUS] = ACTIONS(4862), - [anon_sym_DASH] = ACTIONS(4862), - [anon_sym_STAR] = ACTIONS(4862), - [anon_sym_SLASH] = ACTIONS(4862), - [anon_sym_PERCENT] = ACTIONS(4862), - [anon_sym_CARET] = ACTIONS(4862), - [anon_sym_PIPE] = ACTIONS(4862), - [anon_sym_AMP] = ACTIONS(4862), - [anon_sym_LT_LT] = ACTIONS(4862), - [anon_sym_GT_GT] = ACTIONS(4862), - [anon_sym_GT_GT_GT] = ACTIONS(4862), - [anon_sym_EQ_EQ] = ACTIONS(4860), - [anon_sym_BANG_EQ] = ACTIONS(4860), - [anon_sym_GT_EQ] = ACTIONS(4860), - [anon_sym_LT_EQ] = ACTIONS(4860), - [anon_sym_DOT] = ACTIONS(4862), - [anon_sym_switch] = ACTIONS(4860), - [anon_sym_DOT_DOT] = ACTIONS(4860), - [anon_sym_and] = ACTIONS(4860), - [anon_sym_or] = ACTIONS(4860), - [anon_sym_PLUS_EQ] = ACTIONS(5567), - [anon_sym_DASH_EQ] = ACTIONS(5567), - [anon_sym_STAR_EQ] = ACTIONS(5567), - [anon_sym_SLASH_EQ] = ACTIONS(5567), - [anon_sym_PERCENT_EQ] = ACTIONS(5567), - [anon_sym_AMP_EQ] = ACTIONS(5567), - [anon_sym_CARET_EQ] = ACTIONS(5567), - [anon_sym_PIPE_EQ] = ACTIONS(5567), - [anon_sym_LT_LT_EQ] = ACTIONS(5567), - [anon_sym_GT_GT_EQ] = ACTIONS(5567), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(5567), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(5567), - [anon_sym_AMP_AMP] = ACTIONS(4860), - [anon_sym_PIPE_PIPE] = ACTIONS(4860), - [anon_sym_QMARK_QMARK] = ACTIONS(4862), - [anon_sym_into] = ACTIONS(4860), - [anon_sym_as] = ACTIONS(4860), - [anon_sym_is] = ACTIONS(4860), - [anon_sym_DASH_GT] = ACTIONS(4860), - [anon_sym_with] = ACTIONS(4860), + [anon_sym_EQ] = ACTIONS(5555), + [anon_sym_LBRACK] = ACTIONS(4811), + [anon_sym_LPAREN] = ACTIONS(4811), + [anon_sym_LT] = ACTIONS(4813), + [anon_sym_GT] = ACTIONS(4813), + [anon_sym_QMARK] = ACTIONS(4813), + [anon_sym_BANG] = ACTIONS(4813), + [anon_sym_PLUS_PLUS] = ACTIONS(4811), + [anon_sym_DASH_DASH] = ACTIONS(4811), + [anon_sym_PLUS] = ACTIONS(4813), + [anon_sym_DASH] = ACTIONS(4813), + [anon_sym_STAR] = ACTIONS(4813), + [anon_sym_SLASH] = ACTIONS(4813), + [anon_sym_PERCENT] = ACTIONS(4813), + [anon_sym_CARET] = ACTIONS(4813), + [anon_sym_PIPE] = ACTIONS(4813), + [anon_sym_AMP] = ACTIONS(4813), + [anon_sym_LT_LT] = ACTIONS(4813), + [anon_sym_GT_GT] = ACTIONS(4813), + [anon_sym_GT_GT_GT] = ACTIONS(4813), + [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(4813), + [anon_sym_switch] = ACTIONS(4811), + [anon_sym_DOT_DOT] = ACTIONS(4811), + [anon_sym_PLUS_EQ] = ACTIONS(5557), + [anon_sym_DASH_EQ] = ACTIONS(5557), + [anon_sym_STAR_EQ] = ACTIONS(5557), + [anon_sym_SLASH_EQ] = ACTIONS(5557), + [anon_sym_PERCENT_EQ] = ACTIONS(5557), + [anon_sym_AMP_EQ] = ACTIONS(5557), + [anon_sym_CARET_EQ] = ACTIONS(5557), + [anon_sym_PIPE_EQ] = ACTIONS(5557), + [anon_sym_LT_LT_EQ] = ACTIONS(5557), + [anon_sym_GT_GT_EQ] = ACTIONS(5557), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(5557), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(5557), + [anon_sym_AMP_AMP] = ACTIONS(4811), + [anon_sym_PIPE_PIPE] = ACTIONS(4811), + [anon_sym_QMARK_QMARK] = ACTIONS(4813), + [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), @@ -507677,56 +507144,55 @@ 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), - [sym__identifier_token] = ACTIONS(5569), - [anon_sym_extern] = ACTIONS(5569), - [anon_sym_alias] = ACTIONS(5569), - [anon_sym_global] = ACTIONS(5569), - [anon_sym_unsafe] = ACTIONS(5569), - [anon_sym_static] = ACTIONS(5569), - [anon_sym_LBRACK] = ACTIONS(5571), - [anon_sym_RBRACE] = ACTIONS(5571), - [anon_sym_abstract] = ACTIONS(5569), - [anon_sym_async] = ACTIONS(5569), - [anon_sym_const] = ACTIONS(5569), - [anon_sym_file] = ACTIONS(5569), - [anon_sym_fixed] = ACTIONS(5569), - [anon_sym_internal] = ACTIONS(5569), - [anon_sym_new] = ACTIONS(5569), - [anon_sym_override] = ACTIONS(5569), - [anon_sym_partial] = ACTIONS(5569), - [anon_sym_private] = ACTIONS(5569), - [anon_sym_protected] = ACTIONS(5569), - [anon_sym_public] = ACTIONS(5569), - [anon_sym_readonly] = ACTIONS(5569), - [anon_sym_required] = ACTIONS(5569), - [anon_sym_sealed] = ACTIONS(5569), - [anon_sym_virtual] = ACTIONS(5569), - [anon_sym_volatile] = ACTIONS(5569), - [anon_sym_where] = ACTIONS(5569), - [anon_sym_notnull] = ACTIONS(5569), - [anon_sym_unmanaged] = ACTIONS(5569), - [anon_sym_get] = ACTIONS(5569), - [anon_sym_set] = ACTIONS(5569), - [anon_sym_add] = ACTIONS(5569), - [anon_sym_remove] = ACTIONS(5569), - [anon_sym_init] = ACTIONS(5569), - [anon_sym_scoped] = ACTIONS(5569), - [anon_sym_var] = ACTIONS(5569), - [anon_sym_yield] = ACTIONS(5569), - [anon_sym_when] = ACTIONS(5569), - [anon_sym_from] = ACTIONS(5569), - [anon_sym_into] = ACTIONS(5569), - [anon_sym_join] = ACTIONS(5569), - [anon_sym_on] = ACTIONS(5569), - [anon_sym_equals] = ACTIONS(5569), - [anon_sym_let] = ACTIONS(5569), - [anon_sym_orderby] = ACTIONS(5569), - [anon_sym_ascending] = ACTIONS(5569), - [anon_sym_descending] = ACTIONS(5569), - [anon_sym_group] = ACTIONS(5569), - [anon_sym_by] = ACTIONS(5569), - [anon_sym_select] = ACTIONS(5569), - [aux_sym_preproc_if_token1] = ACTIONS(5571), + [anon_sym_SEMI] = ACTIONS(3963), + [anon_sym_LBRACK] = ACTIONS(4033), + [anon_sym_COLON] = ACTIONS(3963), + [anon_sym_COMMA] = ACTIONS(3963), + [anon_sym_RBRACK] = ACTIONS(3963), + [anon_sym_LPAREN] = ACTIONS(3963), + [anon_sym_RPAREN] = ACTIONS(3963), + [anon_sym_LBRACE] = ACTIONS(3963), + [anon_sym_RBRACE] = ACTIONS(3963), + [anon_sym_LT] = ACTIONS(3961), + [anon_sym_GT] = ACTIONS(3961), + [anon_sym_in] = ACTIONS(3961), + [anon_sym_QMARK] = ACTIONS(4884), + [anon_sym_BANG] = ACTIONS(3961), + [anon_sym_PLUS_PLUS] = ACTIONS(3963), + [anon_sym_DASH_DASH] = ACTIONS(3963), + [anon_sym_PLUS] = ACTIONS(3961), + [anon_sym_DASH] = ACTIONS(3961), + [anon_sym_STAR] = ACTIONS(4039), + [anon_sym_SLASH] = ACTIONS(3961), + [anon_sym_PERCENT] = ACTIONS(3963), + [anon_sym_CARET] = ACTIONS(3963), + [anon_sym_PIPE] = ACTIONS(3961), + [anon_sym_AMP] = ACTIONS(3961), + [anon_sym_LT_LT] = ACTIONS(3963), + [anon_sym_GT_GT] = ACTIONS(3961), + [anon_sym_GT_GT_GT] = ACTIONS(3963), + [anon_sym_EQ_EQ] = ACTIONS(3963), + [anon_sym_BANG_EQ] = ACTIONS(3963), + [anon_sym_GT_EQ] = ACTIONS(3963), + [anon_sym_LT_EQ] = ACTIONS(3963), + [anon_sym_DOT] = ACTIONS(5559), + [anon_sym_EQ_GT] = ACTIONS(3963), + [anon_sym_switch] = ACTIONS(3963), + [anon_sym_DOT_DOT] = ACTIONS(3963), + [anon_sym_AMP_AMP] = ACTIONS(3963), + [anon_sym_PIPE_PIPE] = ACTIONS(3963), + [anon_sym_QMARK_QMARK] = ACTIONS(3963), + [anon_sym_into] = ACTIONS(3963), + [anon_sym_on] = ACTIONS(3963), + [anon_sym_equals] = ACTIONS(3963), + [anon_sym_by] = ACTIONS(3963), + [anon_sym_as] = ACTIONS(3963), + [anon_sym_is] = ACTIONS(3963), + [anon_sym_DASH_GT] = ACTIONS(3963), + [anon_sym_with] = ACTIONS(3963), + [aux_sym_preproc_if_token3] = ACTIONS(3963), + [aux_sym_preproc_else_token1] = ACTIONS(3963), + [aux_sym_preproc_elif_token1] = ACTIONS(3963), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -507748,56 +507214,55 @@ 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), - [anon_sym_SEMI] = ACTIONS(4965), - [anon_sym_LBRACK] = ACTIONS(4965), - [anon_sym_COLON] = ACTIONS(4965), - [anon_sym_COMMA] = ACTIONS(4965), - [anon_sym_RBRACK] = ACTIONS(4965), - [anon_sym_LPAREN] = ACTIONS(4965), - [anon_sym_RPAREN] = ACTIONS(4965), - [anon_sym_RBRACE] = ACTIONS(4965), - [anon_sym_LT] = ACTIONS(4967), - [anon_sym_GT] = ACTIONS(4967), - [anon_sym_in] = ACTIONS(4965), - [anon_sym_QMARK] = ACTIONS(4967), - [anon_sym_BANG] = ACTIONS(4967), - [anon_sym_PLUS_PLUS] = ACTIONS(4965), - [anon_sym_DASH_DASH] = ACTIONS(4965), - [anon_sym_PLUS] = ACTIONS(4967), - [anon_sym_DASH] = ACTIONS(4967), - [anon_sym_STAR] = ACTIONS(4965), - [anon_sym_SLASH] = ACTIONS(4967), - [anon_sym_PERCENT] = ACTIONS(4965), - [anon_sym_CARET] = ACTIONS(4965), - [anon_sym_PIPE] = ACTIONS(4967), - [anon_sym_AMP] = ACTIONS(4967), - [anon_sym_LT_LT] = ACTIONS(4965), - [anon_sym_GT_GT] = ACTIONS(4967), - [anon_sym_GT_GT_GT] = ACTIONS(4965), - [anon_sym_EQ_EQ] = ACTIONS(4965), - [anon_sym_BANG_EQ] = ACTIONS(4965), - [anon_sym_GT_EQ] = ACTIONS(4965), - [anon_sym_LT_EQ] = ACTIONS(4965), - [anon_sym_DOT] = ACTIONS(4967), - [anon_sym_EQ_GT] = ACTIONS(4965), - [anon_sym_switch] = ACTIONS(4965), - [anon_sym_when] = ACTIONS(4965), - [anon_sym_DOT_DOT] = ACTIONS(4965), - [anon_sym_and] = ACTIONS(4965), - [anon_sym_or] = ACTIONS(4965), - [anon_sym_AMP_AMP] = ACTIONS(4965), - [anon_sym_PIPE_PIPE] = ACTIONS(4965), - [anon_sym_QMARK_QMARK] = ACTIONS(4965), - [anon_sym_on] = ACTIONS(4965), - [anon_sym_equals] = ACTIONS(4965), - [anon_sym_by] = ACTIONS(4965), - [anon_sym_as] = ACTIONS(4965), - [anon_sym_is] = ACTIONS(4965), - [anon_sym_DASH_GT] = ACTIONS(4965), - [anon_sym_with] = ACTIONS(4965), - [aux_sym_preproc_if_token3] = ACTIONS(4965), - [aux_sym_preproc_else_token1] = ACTIONS(4965), - [aux_sym_preproc_elif_token1] = ACTIONS(4965), + [anon_sym_EQ] = ACTIONS(5561), + [anon_sym_LBRACK] = ACTIONS(4811), + [anon_sym_LPAREN] = ACTIONS(4811), + [anon_sym_LT] = ACTIONS(4813), + [anon_sym_GT] = ACTIONS(4813), + [anon_sym_QMARK] = ACTIONS(4813), + [anon_sym_BANG] = ACTIONS(4813), + [anon_sym_PLUS_PLUS] = ACTIONS(4811), + [anon_sym_DASH_DASH] = ACTIONS(4811), + [anon_sym_PLUS] = ACTIONS(4813), + [anon_sym_DASH] = ACTIONS(4813), + [anon_sym_STAR] = ACTIONS(4813), + [anon_sym_SLASH] = ACTIONS(4813), + [anon_sym_PERCENT] = ACTIONS(4813), + [anon_sym_CARET] = ACTIONS(4813), + [anon_sym_PIPE] = ACTIONS(4813), + [anon_sym_AMP] = ACTIONS(4813), + [anon_sym_LT_LT] = ACTIONS(4813), + [anon_sym_GT_GT] = ACTIONS(4813), + [anon_sym_GT_GT_GT] = ACTIONS(4813), + [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(4813), + [anon_sym_switch] = ACTIONS(4811), + [anon_sym_DOT_DOT] = ACTIONS(4811), + [anon_sym_and] = ACTIONS(4811), + [anon_sym_or] = ACTIONS(4811), + [anon_sym_PLUS_EQ] = ACTIONS(5563), + [anon_sym_DASH_EQ] = ACTIONS(5563), + [anon_sym_STAR_EQ] = ACTIONS(5563), + [anon_sym_SLASH_EQ] = ACTIONS(5563), + [anon_sym_PERCENT_EQ] = ACTIONS(5563), + [anon_sym_AMP_EQ] = ACTIONS(5563), + [anon_sym_CARET_EQ] = ACTIONS(5563), + [anon_sym_PIPE_EQ] = ACTIONS(5563), + [anon_sym_LT_LT_EQ] = ACTIONS(5563), + [anon_sym_GT_GT_EQ] = ACTIONS(5563), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(5563), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(5563), + [anon_sym_AMP_AMP] = ACTIONS(4811), + [anon_sym_PIPE_PIPE] = ACTIONS(4811), + [anon_sym_QMARK_QMARK] = ACTIONS(4813), + [anon_sym_equals] = 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_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -507819,56 +507284,55 @@ 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_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_EQ] = ACTIONS(5565), + [anon_sym_LBRACK] = ACTIONS(4811), + [anon_sym_LPAREN] = ACTIONS(4811), + [anon_sym_LT] = ACTIONS(4813), + [anon_sym_GT] = ACTIONS(4813), + [anon_sym_QMARK] = ACTIONS(4813), + [anon_sym_BANG] = ACTIONS(4813), + [anon_sym_PLUS_PLUS] = ACTIONS(4811), + [anon_sym_DASH_DASH] = ACTIONS(4811), + [anon_sym_PLUS] = ACTIONS(4813), + [anon_sym_DASH] = ACTIONS(4813), + [anon_sym_STAR] = ACTIONS(4813), + [anon_sym_SLASH] = ACTIONS(4813), + [anon_sym_PERCENT] = ACTIONS(4813), + [anon_sym_CARET] = ACTIONS(4813), + [anon_sym_PIPE] = ACTIONS(4813), + [anon_sym_AMP] = ACTIONS(4813), + [anon_sym_LT_LT] = ACTIONS(4813), + [anon_sym_GT_GT] = ACTIONS(4813), + [anon_sym_GT_GT_GT] = ACTIONS(4813), + [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(4813), + [anon_sym_switch] = ACTIONS(4811), + [anon_sym_DOT_DOT] = ACTIONS(4811), + [anon_sym_and] = ACTIONS(4811), + [anon_sym_or] = ACTIONS(4811), + [anon_sym_PLUS_EQ] = ACTIONS(5567), + [anon_sym_DASH_EQ] = ACTIONS(5567), + [anon_sym_STAR_EQ] = ACTIONS(5567), + [anon_sym_SLASH_EQ] = ACTIONS(5567), + [anon_sym_PERCENT_EQ] = ACTIONS(5567), + [anon_sym_AMP_EQ] = ACTIONS(5567), + [anon_sym_CARET_EQ] = ACTIONS(5567), + [anon_sym_PIPE_EQ] = ACTIONS(5567), + [anon_sym_LT_LT_EQ] = ACTIONS(5567), + [anon_sym_GT_GT_EQ] = ACTIONS(5567), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(5567), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(5567), + [anon_sym_AMP_AMP] = ACTIONS(4811), + [anon_sym_PIPE_PIPE] = ACTIONS(4811), + [anon_sym_QMARK_QMARK] = ACTIONS(4813), + [anon_sym_on] = 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_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -507890,56 +507354,55 @@ 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(4253), - [anon_sym_LBRACK] = ACTIONS(4253), - [anon_sym_COLON] = ACTIONS(4253), - [anon_sym_COMMA] = ACTIONS(4253), - [anon_sym_RBRACK] = ACTIONS(4253), - [anon_sym_LPAREN] = ACTIONS(4253), - [anon_sym_RPAREN] = ACTIONS(4253), - [anon_sym_RBRACE] = ACTIONS(4253), - [anon_sym_LT] = ACTIONS(4255), - [anon_sym_GT] = ACTIONS(4255), - [anon_sym_in] = ACTIONS(4253), - [anon_sym_QMARK] = ACTIONS(4255), - [anon_sym_BANG] = ACTIONS(4255), - [anon_sym_PLUS_PLUS] = ACTIONS(4253), - [anon_sym_DASH_DASH] = ACTIONS(4253), - [anon_sym_PLUS] = ACTIONS(4255), - [anon_sym_DASH] = ACTIONS(4255), - [anon_sym_STAR] = ACTIONS(4253), - [anon_sym_SLASH] = ACTIONS(4255), - [anon_sym_PERCENT] = ACTIONS(4253), - [anon_sym_CARET] = ACTIONS(4253), - [anon_sym_PIPE] = ACTIONS(4255), - [anon_sym_AMP] = ACTIONS(4255), - [anon_sym_LT_LT] = ACTIONS(4253), - [anon_sym_GT_GT] = ACTIONS(4255), - [anon_sym_GT_GT_GT] = ACTIONS(4253), - [anon_sym_EQ_EQ] = ACTIONS(4253), - [anon_sym_BANG_EQ] = ACTIONS(4253), - [anon_sym_GT_EQ] = ACTIONS(4253), - [anon_sym_LT_EQ] = ACTIONS(4253), - [anon_sym_DOT] = ACTIONS(4255), - [anon_sym_EQ_GT] = ACTIONS(4253), - [anon_sym_switch] = ACTIONS(4253), - [anon_sym_when] = ACTIONS(4253), - [anon_sym_DOT_DOT] = ACTIONS(4253), - [anon_sym_and] = ACTIONS(4253), - [anon_sym_or] = ACTIONS(4253), - [anon_sym_AMP_AMP] = ACTIONS(4253), - [anon_sym_PIPE_PIPE] = ACTIONS(4253), - [anon_sym_QMARK_QMARK] = ACTIONS(4253), - [anon_sym_on] = ACTIONS(4253), - [anon_sym_equals] = ACTIONS(4253), - [anon_sym_by] = ACTIONS(4253), - [anon_sym_as] = ACTIONS(4253), - [anon_sym_is] = ACTIONS(4253), - [anon_sym_DASH_GT] = ACTIONS(4253), - [anon_sym_with] = ACTIONS(4253), - [aux_sym_preproc_if_token3] = ACTIONS(4253), - [aux_sym_preproc_else_token1] = ACTIONS(4253), - [aux_sym_preproc_elif_token1] = ACTIONS(4253), + [anon_sym_EQ] = ACTIONS(5569), + [anon_sym_LBRACK] = ACTIONS(4811), + [anon_sym_LPAREN] = ACTIONS(4811), + [anon_sym_LT] = ACTIONS(4813), + [anon_sym_GT] = ACTIONS(4813), + [anon_sym_QMARK] = ACTIONS(4813), + [anon_sym_BANG] = ACTIONS(4813), + [anon_sym_PLUS_PLUS] = ACTIONS(4811), + [anon_sym_DASH_DASH] = ACTIONS(4811), + [anon_sym_PLUS] = ACTIONS(4813), + [anon_sym_DASH] = ACTIONS(4813), + [anon_sym_STAR] = ACTIONS(4813), + [anon_sym_SLASH] = ACTIONS(4813), + [anon_sym_PERCENT] = ACTIONS(4813), + [anon_sym_CARET] = ACTIONS(4813), + [anon_sym_PIPE] = ACTIONS(4813), + [anon_sym_AMP] = ACTIONS(4813), + [anon_sym_LT_LT] = ACTIONS(4813), + [anon_sym_GT_GT] = ACTIONS(4813), + [anon_sym_GT_GT_GT] = ACTIONS(4813), + [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(4813), + [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(4811), + [anon_sym_PLUS_EQ] = ACTIONS(5571), + [anon_sym_DASH_EQ] = ACTIONS(5571), + [anon_sym_STAR_EQ] = ACTIONS(5571), + [anon_sym_SLASH_EQ] = ACTIONS(5571), + [anon_sym_PERCENT_EQ] = ACTIONS(5571), + [anon_sym_AMP_EQ] = ACTIONS(5571), + [anon_sym_CARET_EQ] = ACTIONS(5571), + [anon_sym_PIPE_EQ] = ACTIONS(5571), + [anon_sym_LT_LT_EQ] = ACTIONS(5571), + [anon_sym_GT_GT_EQ] = ACTIONS(5571), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(5571), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(5571), + [anon_sym_AMP_AMP] = ACTIONS(4811), + [anon_sym_PIPE_PIPE] = ACTIONS(4811), + [anon_sym_QMARK_QMARK] = ACTIONS(4813), + [anon_sym_as] = ACTIONS(4811), + [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), @@ -507961,56 +507424,55 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3515), [sym_preproc_define] = STATE(3515), [sym_preproc_undef] = STATE(3515), - [anon_sym_SEMI] = ACTIONS(4945), - [anon_sym_LBRACK] = ACTIONS(4945), - [anon_sym_COLON] = ACTIONS(4945), - [anon_sym_COMMA] = ACTIONS(4945), - [anon_sym_RBRACK] = ACTIONS(4945), - [anon_sym_LPAREN] = ACTIONS(4945), - [anon_sym_RPAREN] = ACTIONS(4945), - [anon_sym_RBRACE] = ACTIONS(4945), - [anon_sym_LT] = ACTIONS(4947), - [anon_sym_GT] = ACTIONS(4947), - [anon_sym_in] = ACTIONS(4945), - [anon_sym_QMARK] = ACTIONS(4947), - [anon_sym_BANG] = ACTIONS(4947), - [anon_sym_PLUS_PLUS] = ACTIONS(4945), - [anon_sym_DASH_DASH] = ACTIONS(4945), - [anon_sym_PLUS] = ACTIONS(4947), - [anon_sym_DASH] = ACTIONS(4947), - [anon_sym_STAR] = ACTIONS(4945), - [anon_sym_SLASH] = ACTIONS(4947), - [anon_sym_PERCENT] = ACTIONS(4945), - [anon_sym_CARET] = ACTIONS(4945), - [anon_sym_PIPE] = ACTIONS(4947), - [anon_sym_AMP] = ACTIONS(4947), - [anon_sym_LT_LT] = ACTIONS(4945), - [anon_sym_GT_GT] = ACTIONS(4947), - [anon_sym_GT_GT_GT] = ACTIONS(4945), - [anon_sym_EQ_EQ] = ACTIONS(4945), - [anon_sym_BANG_EQ] = ACTIONS(4945), - [anon_sym_GT_EQ] = ACTIONS(4945), - [anon_sym_LT_EQ] = ACTIONS(4945), - [anon_sym_DOT] = ACTIONS(4947), - [anon_sym_EQ_GT] = ACTIONS(4945), - [anon_sym_switch] = ACTIONS(4945), - [anon_sym_when] = ACTIONS(4945), - [anon_sym_DOT_DOT] = ACTIONS(4945), - [anon_sym_and] = ACTIONS(4945), - [anon_sym_or] = ACTIONS(4945), - [anon_sym_AMP_AMP] = ACTIONS(4945), - [anon_sym_PIPE_PIPE] = ACTIONS(4945), - [anon_sym_QMARK_QMARK] = ACTIONS(4945), - [anon_sym_on] = ACTIONS(4945), - [anon_sym_equals] = ACTIONS(4945), - [anon_sym_by] = ACTIONS(4945), - [anon_sym_as] = ACTIONS(4945), - [anon_sym_is] = ACTIONS(4945), - [anon_sym_DASH_GT] = ACTIONS(4945), - [anon_sym_with] = ACTIONS(4945), - [aux_sym_preproc_if_token3] = ACTIONS(4945), - [aux_sym_preproc_else_token1] = ACTIONS(4945), - [aux_sym_preproc_elif_token1] = ACTIONS(4945), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -508032,56 +507494,55 @@ 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), - [anon_sym_SEMI] = ACTIONS(5042), - [anon_sym_LBRACK] = ACTIONS(5042), - [anon_sym_COLON] = ACTIONS(5042), - [anon_sym_COMMA] = ACTIONS(5042), - [anon_sym_RBRACK] = ACTIONS(5042), - [anon_sym_LPAREN] = ACTIONS(5042), - [anon_sym_RPAREN] = ACTIONS(5042), - [anon_sym_RBRACE] = ACTIONS(5042), - [anon_sym_LT] = ACTIONS(5044), - [anon_sym_GT] = ACTIONS(5044), - [anon_sym_in] = ACTIONS(5042), - [anon_sym_QMARK] = ACTIONS(5044), - [anon_sym_BANG] = ACTIONS(5044), - [anon_sym_PLUS_PLUS] = ACTIONS(5042), - [anon_sym_DASH_DASH] = ACTIONS(5042), - [anon_sym_PLUS] = ACTIONS(5044), - [anon_sym_DASH] = ACTIONS(5044), - [anon_sym_STAR] = ACTIONS(5042), - [anon_sym_SLASH] = ACTIONS(5044), - [anon_sym_PERCENT] = ACTIONS(5042), - [anon_sym_CARET] = ACTIONS(5042), - [anon_sym_PIPE] = ACTIONS(5044), - [anon_sym_AMP] = ACTIONS(5044), - [anon_sym_LT_LT] = ACTIONS(5042), - [anon_sym_GT_GT] = ACTIONS(5044), - [anon_sym_GT_GT_GT] = ACTIONS(5042), - [anon_sym_EQ_EQ] = ACTIONS(5042), - [anon_sym_BANG_EQ] = ACTIONS(5042), - [anon_sym_GT_EQ] = ACTIONS(5042), - [anon_sym_LT_EQ] = ACTIONS(5042), - [anon_sym_DOT] = ACTIONS(5044), - [anon_sym_EQ_GT] = ACTIONS(5042), - [anon_sym_switch] = ACTIONS(5042), - [anon_sym_when] = ACTIONS(5042), - [anon_sym_DOT_DOT] = ACTIONS(5042), - [anon_sym_and] = ACTIONS(5042), - [anon_sym_or] = ACTIONS(5042), - [anon_sym_AMP_AMP] = ACTIONS(5042), - [anon_sym_PIPE_PIPE] = ACTIONS(5042), - [anon_sym_QMARK_QMARK] = ACTIONS(5042), - [anon_sym_on] = ACTIONS(5042), - [anon_sym_equals] = ACTIONS(5042), - [anon_sym_by] = ACTIONS(5042), - [anon_sym_as] = ACTIONS(5042), - [anon_sym_is] = ACTIONS(5042), - [anon_sym_DASH_GT] = ACTIONS(5042), - [anon_sym_with] = ACTIONS(5042), - [aux_sym_preproc_if_token3] = ACTIONS(5042), - [aux_sym_preproc_else_token1] = ACTIONS(5042), - [aux_sym_preproc_elif_token1] = ACTIONS(5042), + [sym__identifier_token] = ACTIONS(4665), + [anon_sym_extern] = ACTIONS(4665), + [anon_sym_alias] = ACTIONS(4665), + [anon_sym_global] = ACTIONS(4665), + [anon_sym_unsafe] = ACTIONS(4665), + [anon_sym_static] = ACTIONS(4665), + [anon_sym_LBRACK] = ACTIONS(4667), + [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_get] = ACTIONS(4665), + [anon_sym_set] = ACTIONS(4665), + [anon_sym_add] = ACTIONS(4665), + [anon_sym_remove] = ACTIONS(4665), + [anon_sym_init] = ACTIONS(4665), + [anon_sym_scoped] = ACTIONS(4665), + [anon_sym_var] = 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_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -508103,56 +507564,55 @@ 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), - [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(3978), + [anon_sym_LBRACK] = ACTIONS(3978), + [anon_sym_COLON] = ACTIONS(3978), + [anon_sym_COMMA] = ACTIONS(3978), + [anon_sym_RBRACK] = ACTIONS(3978), + [anon_sym_LPAREN] = ACTIONS(3978), + [anon_sym_RPAREN] = ACTIONS(3978), + [anon_sym_LBRACE] = ACTIONS(3978), + [anon_sym_RBRACE] = ACTIONS(3978), + [anon_sym_LT] = ACTIONS(3976), + [anon_sym_GT] = ACTIONS(3976), + [anon_sym_in] = ACTIONS(3976), + [anon_sym_QMARK] = ACTIONS(3976), + [anon_sym_BANG] = ACTIONS(3976), + [anon_sym_PLUS_PLUS] = ACTIONS(3978), + [anon_sym_DASH_DASH] = ACTIONS(3978), + [anon_sym_PLUS] = ACTIONS(3976), + [anon_sym_DASH] = ACTIONS(3976), + [anon_sym_STAR] = ACTIONS(3978), + [anon_sym_SLASH] = ACTIONS(3976), + [anon_sym_PERCENT] = ACTIONS(3978), + [anon_sym_CARET] = ACTIONS(3978), + [anon_sym_PIPE] = ACTIONS(3976), + [anon_sym_AMP] = ACTIONS(3976), + [anon_sym_LT_LT] = ACTIONS(3978), + [anon_sym_GT_GT] = ACTIONS(3976), + [anon_sym_GT_GT_GT] = ACTIONS(3978), + [anon_sym_EQ_EQ] = ACTIONS(3978), + [anon_sym_BANG_EQ] = ACTIONS(3978), + [anon_sym_GT_EQ] = ACTIONS(3978), + [anon_sym_LT_EQ] = ACTIONS(3978), + [anon_sym_DOT] = ACTIONS(5559), + [anon_sym_EQ_GT] = ACTIONS(3978), + [anon_sym_switch] = ACTIONS(3978), + [anon_sym_DOT_DOT] = ACTIONS(3978), + [anon_sym_AMP_AMP] = ACTIONS(3978), + [anon_sym_PIPE_PIPE] = ACTIONS(3978), + [anon_sym_QMARK_QMARK] = ACTIONS(3978), + [anon_sym_into] = ACTIONS(3978), + [anon_sym_on] = ACTIONS(3978), + [anon_sym_equals] = ACTIONS(3978), + [anon_sym_by] = ACTIONS(3978), + [anon_sym_as] = ACTIONS(3978), + [anon_sym_is] = ACTIONS(3978), + [anon_sym_DASH_GT] = ACTIONS(3978), + [anon_sym_with] = ACTIONS(3978), + [aux_sym_preproc_if_token3] = ACTIONS(3978), + [aux_sym_preproc_else_token1] = ACTIONS(3978), + [aux_sym_preproc_elif_token1] = ACTIONS(3978), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -508165,15 +507625,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3518] = { - [sym__name] = STATE(5302), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(4096), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_ref_type] = STATE(2317), - [sym__scoped_base_type] = STATE(2340), - [sym_identifier] = STATE(4373), - [sym__reserved_identifier] = STATE(2175), [sym_preproc_region] = STATE(3518), [sym_preproc_endregion] = STATE(3518), [sym_preproc_line] = STATE(3518), @@ -508183,46 +507634,55 @@ 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), - [sym__identifier_token] = ACTIONS(3600), - [anon_sym_alias] = ACTIONS(3603), - [anon_sym_global] = ACTIONS(3603), - [anon_sym_LBRACK] = ACTIONS(3445), - [anon_sym_COMMA] = ACTIONS(3445), - [anon_sym_RBRACK] = ACTIONS(3445), - [anon_sym_LPAREN] = ACTIONS(3445), - [anon_sym_RPAREN] = ACTIONS(3445), - [anon_sym_ref] = ACTIONS(3606), - [anon_sym_LBRACE] = ACTIONS(3445), - [anon_sym_RBRACE] = ACTIONS(3445), - [anon_sym_file] = ACTIONS(3603), - [anon_sym_LT] = ACTIONS(3445), - [anon_sym_where] = ACTIONS(3603), - [anon_sym_QMARK] = ACTIONS(3445), - [anon_sym_notnull] = ACTIONS(3603), - [anon_sym_unmanaged] = ACTIONS(3603), - [anon_sym_STAR] = ACTIONS(3445), - [anon_sym_DOT] = ACTIONS(3445), - [anon_sym_scoped] = ACTIONS(3603), - [anon_sym_EQ_GT] = ACTIONS(3445), - [anon_sym_COLON_COLON] = ACTIONS(3445), - [anon_sym_var] = ACTIONS(3603), - [anon_sym_yield] = ACTIONS(3603), - [anon_sym_when] = ACTIONS(3603), - [sym_discard] = ACTIONS(3447), - [anon_sym_and] = ACTIONS(3447), - [anon_sym_or] = ACTIONS(3447), - [anon_sym_from] = ACTIONS(3603), - [anon_sym_into] = ACTIONS(3603), - [anon_sym_join] = ACTIONS(3603), - [anon_sym_on] = ACTIONS(3603), - [anon_sym_equals] = ACTIONS(3603), - [anon_sym_let] = ACTIONS(3603), - [anon_sym_orderby] = ACTIONS(3603), - [anon_sym_ascending] = ACTIONS(3603), - [anon_sym_descending] = ACTIONS(3603), - [anon_sym_group] = ACTIONS(3603), - [anon_sym_by] = ACTIONS(3603), - [anon_sym_select] = ACTIONS(3603), + [sym__identifier_token] = ACTIONS(4909), + [anon_sym_extern] = ACTIONS(4909), + [anon_sym_alias] = ACTIONS(4909), + [anon_sym_global] = ACTIONS(4909), + [anon_sym_unsafe] = ACTIONS(4909), + [anon_sym_static] = ACTIONS(4909), + [anon_sym_LBRACK] = ACTIONS(4911), + [anon_sym_abstract] = ACTIONS(4909), + [anon_sym_async] = ACTIONS(4909), + [anon_sym_const] = ACTIONS(4909), + [anon_sym_file] = ACTIONS(4909), + [anon_sym_fixed] = ACTIONS(4909), + [anon_sym_internal] = ACTIONS(4909), + [anon_sym_new] = ACTIONS(4909), + [anon_sym_override] = ACTIONS(4909), + [anon_sym_partial] = ACTIONS(4909), + [anon_sym_private] = ACTIONS(4909), + [anon_sym_protected] = ACTIONS(4909), + [anon_sym_public] = ACTIONS(4909), + [anon_sym_readonly] = ACTIONS(4909), + [anon_sym_required] = ACTIONS(4909), + [anon_sym_sealed] = ACTIONS(4909), + [anon_sym_virtual] = ACTIONS(4909), + [anon_sym_volatile] = ACTIONS(4909), + [anon_sym_where] = ACTIONS(4909), + [anon_sym_notnull] = ACTIONS(4909), + [anon_sym_unmanaged] = ACTIONS(4909), + [anon_sym_get] = ACTIONS(4909), + [anon_sym_set] = ACTIONS(4909), + [anon_sym_add] = ACTIONS(4909), + [anon_sym_remove] = ACTIONS(4909), + [anon_sym_init] = ACTIONS(4909), + [anon_sym_scoped] = ACTIONS(4909), + [anon_sym_var] = ACTIONS(4909), + [anon_sym_yield] = ACTIONS(4909), + [anon_sym_when] = ACTIONS(4909), + [anon_sym_from] = ACTIONS(4909), + [anon_sym_into] = ACTIONS(4909), + [anon_sym_join] = ACTIONS(4909), + [anon_sym_on] = ACTIONS(4909), + [anon_sym_equals] = ACTIONS(4909), + [anon_sym_let] = ACTIONS(4909), + [anon_sym_orderby] = ACTIONS(4909), + [anon_sym_ascending] = ACTIONS(4909), + [anon_sym_descending] = ACTIONS(4909), + [anon_sym_group] = ACTIONS(4909), + [anon_sym_by] = ACTIONS(4909), + [anon_sym_select] = ACTIONS(4909), + [aux_sym_preproc_if_token1] = ACTIONS(4911), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -508235,8 +507695,26 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3519] = { - [sym_argument_list] = STATE(3487), - [sym_bracketed_argument_list] = STATE(2485), + [sym_parameter_list] = STATE(7029), + [sym_block] = STATE(3082), + [sym__name] = STATE(4369), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(4068), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(4073), + [sym_type] = STATE(6057), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_identifier] = STATE(4081), + [sym__reserved_identifier] = STATE(3654), [sym_preproc_region] = STATE(3519), [sym_preproc_endregion] = STATE(3519), [sym_preproc_line] = STATE(3519), @@ -508246,53 +507724,35 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3519), [sym_preproc_define] = STATE(3519), [sym_preproc_undef] = STATE(3519), - [anon_sym_SEMI] = ACTIONS(4854), - [anon_sym_LBRACK] = ACTIONS(5573), - [anon_sym_COLON] = ACTIONS(4854), - [anon_sym_COMMA] = ACTIONS(4854), - [anon_sym_RBRACK] = ACTIONS(4854), - [anon_sym_LPAREN] = ACTIONS(5264), - [anon_sym_RPAREN] = ACTIONS(4854), - [anon_sym_RBRACE] = ACTIONS(4854), - [anon_sym_LT] = ACTIONS(4856), - [anon_sym_GT] = ACTIONS(4856), - [anon_sym_in] = ACTIONS(4854), - [anon_sym_QMARK] = ACTIONS(4856), - [anon_sym_BANG] = ACTIONS(5304), - [anon_sym_PLUS_PLUS] = ACTIONS(5306), - [anon_sym_DASH_DASH] = ACTIONS(5306), - [anon_sym_PLUS] = ACTIONS(4856), - [anon_sym_DASH] = ACTIONS(4856), - [anon_sym_STAR] = ACTIONS(4854), - [anon_sym_SLASH] = ACTIONS(4856), - [anon_sym_PERCENT] = ACTIONS(4854), - [anon_sym_CARET] = ACTIONS(4854), - [anon_sym_PIPE] = ACTIONS(4856), - [anon_sym_AMP] = ACTIONS(4856), - [anon_sym_LT_LT] = ACTIONS(4854), - [anon_sym_GT_GT] = ACTIONS(4856), - [anon_sym_GT_GT_GT] = ACTIONS(4854), - [anon_sym_EQ_EQ] = ACTIONS(4854), - [anon_sym_BANG_EQ] = ACTIONS(4854), - [anon_sym_GT_EQ] = ACTIONS(4854), - [anon_sym_LT_EQ] = ACTIONS(4854), - [anon_sym_DOT] = ACTIONS(4100), - [anon_sym_EQ_GT] = ACTIONS(4854), - [anon_sym_switch] = ACTIONS(4854), - [anon_sym_DOT_DOT] = ACTIONS(4854), - [anon_sym_AMP_AMP] = ACTIONS(4854), - [anon_sym_PIPE_PIPE] = ACTIONS(4854), - [anon_sym_QMARK_QMARK] = ACTIONS(4854), - [anon_sym_on] = ACTIONS(4854), - [anon_sym_equals] = ACTIONS(4854), - [anon_sym_by] = ACTIONS(4854), - [anon_sym_as] = ACTIONS(4854), - [anon_sym_is] = ACTIONS(4854), - [anon_sym_DASH_GT] = ACTIONS(4102), - [anon_sym_with] = 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(2965), + [anon_sym_alias] = ACTIONS(2969), + [anon_sym_global] = ACTIONS(2969), + [anon_sym_LPAREN] = ACTIONS(3786), + [anon_sym_ref] = ACTIONS(3436), + [anon_sym_LBRACE] = ACTIONS(5573), + [anon_sym_delegate] = ACTIONS(3438), + [anon_sym_file] = ACTIONS(2969), + [anon_sym_where] = ACTIONS(2969), + [anon_sym_notnull] = ACTIONS(2969), + [anon_sym_unmanaged] = ACTIONS(2969), + [anon_sym_STAR] = ACTIONS(5575), + [anon_sym_scoped] = ACTIONS(2993), + [anon_sym_var] = ACTIONS(2995), + [sym_predefined_type] = ACTIONS(2997), + [anon_sym_yield] = ACTIONS(2969), + [anon_sym_when] = ACTIONS(2969), + [anon_sym_from] = ACTIONS(2969), + [anon_sym_into] = ACTIONS(2969), + [anon_sym_join] = ACTIONS(2969), + [anon_sym_on] = ACTIONS(2969), + [anon_sym_equals] = ACTIONS(2969), + [anon_sym_let] = ACTIONS(2969), + [anon_sym_orderby] = ACTIONS(2969), + [anon_sym_ascending] = ACTIONS(2969), + [anon_sym_descending] = ACTIONS(2969), + [anon_sym_group] = ACTIONS(2969), + [anon_sym_by] = ACTIONS(2969), + [anon_sym_select] = ACTIONS(2969), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -508305,6 +507765,25 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3520] = { + [sym_explicit_interface_specifier] = STATE(5886), + [sym__name] = STATE(6580), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(4068), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(4073), + [sym_type] = STATE(7240), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_identifier] = STATE(4081), + [sym__reserved_identifier] = STATE(3654), [sym_preproc_region] = STATE(3520), [sym_preproc_endregion] = STATE(3520), [sym_preproc_line] = STATE(3520), @@ -508314,55 +507793,36 @@ 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), - [anon_sym_EQ] = ACTIONS(5575), - [anon_sym_LBRACK] = ACTIONS(4860), - [anon_sym_LPAREN] = ACTIONS(4860), - [anon_sym_LT] = ACTIONS(4862), - [anon_sym_GT] = ACTIONS(4862), - [anon_sym_QMARK] = ACTIONS(4862), - [anon_sym_BANG] = ACTIONS(4862), - [anon_sym_PLUS_PLUS] = ACTIONS(4860), - [anon_sym_DASH_DASH] = ACTIONS(4860), - [anon_sym_PLUS] = ACTIONS(4862), - [anon_sym_DASH] = ACTIONS(4862), - [anon_sym_STAR] = ACTIONS(4862), - [anon_sym_SLASH] = ACTIONS(4862), - [anon_sym_PERCENT] = ACTIONS(4862), - [anon_sym_CARET] = ACTIONS(4862), - [anon_sym_PIPE] = ACTIONS(4862), - [anon_sym_AMP] = ACTIONS(4862), - [anon_sym_LT_LT] = ACTIONS(4862), - [anon_sym_GT_GT] = ACTIONS(4862), - [anon_sym_GT_GT_GT] = ACTIONS(4862), - [anon_sym_EQ_EQ] = ACTIONS(4860), - [anon_sym_BANG_EQ] = ACTIONS(4860), - [anon_sym_GT_EQ] = ACTIONS(4860), - [anon_sym_LT_EQ] = ACTIONS(4860), - [anon_sym_DOT] = ACTIONS(4862), - [anon_sym_switch] = ACTIONS(4860), - [anon_sym_DOT_DOT] = ACTIONS(4860), - [anon_sym_PLUS_EQ] = ACTIONS(5577), - [anon_sym_DASH_EQ] = ACTIONS(5577), - [anon_sym_STAR_EQ] = ACTIONS(5577), - [anon_sym_SLASH_EQ] = ACTIONS(5577), - [anon_sym_PERCENT_EQ] = ACTIONS(5577), - [anon_sym_AMP_EQ] = ACTIONS(5577), - [anon_sym_CARET_EQ] = ACTIONS(5577), - [anon_sym_PIPE_EQ] = ACTIONS(5577), - [anon_sym_LT_LT_EQ] = ACTIONS(5577), - [anon_sym_GT_GT_EQ] = ACTIONS(5577), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(5577), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(5577), - [anon_sym_AMP_AMP] = ACTIONS(4860), - [anon_sym_PIPE_PIPE] = ACTIONS(4860), - [anon_sym_QMARK_QMARK] = ACTIONS(4862), - [anon_sym_as] = ACTIONS(4860), - [anon_sym_is] = ACTIONS(4860), - [anon_sym_DASH_GT] = ACTIONS(4860), - [anon_sym_with] = ACTIONS(4860), - [aux_sym_preproc_if_token3] = ACTIONS(4860), - [aux_sym_preproc_else_token1] = ACTIONS(4860), - [aux_sym_preproc_elif_token1] = ACTIONS(4860), + [aux_sym_conversion_operator_declaration_repeat1] = STATE(5011), + [sym__identifier_token] = ACTIONS(2965), + [anon_sym_alias] = ACTIONS(2969), + [anon_sym_global] = ACTIONS(2969), + [anon_sym_LPAREN] = ACTIONS(2977), + [anon_sym_ref] = ACTIONS(5577), + [anon_sym_delegate] = ACTIONS(3438), + [anon_sym_file] = ACTIONS(2969), + [anon_sym_where] = ACTIONS(2969), + [anon_sym_notnull] = ACTIONS(2969), + [anon_sym_unmanaged] = ACTIONS(2969), + [anon_sym_operator] = ACTIONS(5579), + [anon_sym_checked] = ACTIONS(5579), + [anon_sym_scoped] = ACTIONS(5581), + [anon_sym_var] = ACTIONS(2995), + [sym_predefined_type] = ACTIONS(2997), + [anon_sym_yield] = ACTIONS(2969), + [anon_sym_when] = ACTIONS(2969), + [anon_sym_from] = ACTIONS(2969), + [anon_sym_into] = ACTIONS(2969), + [anon_sym_join] = ACTIONS(2969), + [anon_sym_on] = ACTIONS(2969), + [anon_sym_equals] = ACTIONS(2969), + [anon_sym_let] = ACTIONS(2969), + [anon_sym_orderby] = ACTIONS(2969), + [anon_sym_ascending] = ACTIONS(2969), + [anon_sym_descending] = ACTIONS(2969), + [anon_sym_group] = ACTIONS(2969), + [anon_sym_by] = ACTIONS(2969), + [anon_sym_select] = ACTIONS(2969), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -508375,8 +507835,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3521] = { - [sym_argument_list] = STATE(3487), - [sym_bracketed_argument_list] = STATE(2485), [sym_preproc_region] = STATE(3521), [sym_preproc_endregion] = STATE(3521), [sym_preproc_line] = STATE(3521), @@ -508386,53 +507844,55 @@ 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_SEMI] = ACTIONS(4843), - [anon_sym_LBRACK] = ACTIONS(5573), - [anon_sym_COLON] = ACTIONS(4843), - [anon_sym_COMMA] = ACTIONS(4843), - [anon_sym_RBRACK] = ACTIONS(4843), - [anon_sym_LPAREN] = ACTIONS(5264), - [anon_sym_RPAREN] = ACTIONS(4843), - [anon_sym_RBRACE] = ACTIONS(4843), - [anon_sym_LT] = ACTIONS(4845), - [anon_sym_GT] = ACTIONS(4845), - [anon_sym_in] = ACTIONS(4843), - [anon_sym_QMARK] = ACTIONS(4845), - [anon_sym_BANG] = ACTIONS(5304), - [anon_sym_PLUS_PLUS] = ACTIONS(5306), - [anon_sym_DASH_DASH] = ACTIONS(5306), - [anon_sym_PLUS] = ACTIONS(4845), - [anon_sym_DASH] = ACTIONS(4845), - [anon_sym_STAR] = ACTIONS(4843), - [anon_sym_SLASH] = ACTIONS(4845), - [anon_sym_PERCENT] = ACTIONS(4843), - [anon_sym_CARET] = ACTIONS(4843), - [anon_sym_PIPE] = ACTIONS(4845), - [anon_sym_AMP] = ACTIONS(4845), - [anon_sym_LT_LT] = ACTIONS(4843), - [anon_sym_GT_GT] = ACTIONS(4845), - [anon_sym_GT_GT_GT] = ACTIONS(4843), - [anon_sym_EQ_EQ] = ACTIONS(4843), - [anon_sym_BANG_EQ] = ACTIONS(4843), - [anon_sym_GT_EQ] = ACTIONS(4843), - [anon_sym_LT_EQ] = ACTIONS(4843), - [anon_sym_DOT] = ACTIONS(4100), - [anon_sym_EQ_GT] = ACTIONS(4843), - [anon_sym_switch] = ACTIONS(4843), - [anon_sym_DOT_DOT] = ACTIONS(4843), - [anon_sym_AMP_AMP] = ACTIONS(4843), - [anon_sym_PIPE_PIPE] = ACTIONS(4843), - [anon_sym_QMARK_QMARK] = ACTIONS(4843), - [anon_sym_on] = ACTIONS(4843), - [anon_sym_equals] = ACTIONS(4843), - [anon_sym_by] = ACTIONS(4843), - [anon_sym_as] = ACTIONS(4843), - [anon_sym_is] = ACTIONS(4843), - [anon_sym_DASH_GT] = ACTIONS(4102), - [anon_sym_with] = ACTIONS(4843), - [aux_sym_preproc_if_token3] = ACTIONS(4843), - [aux_sym_preproc_else_token1] = ACTIONS(4843), - [aux_sym_preproc_elif_token1] = ACTIONS(4843), + [sym__identifier_token] = ACTIONS(3757), + [anon_sym_extern] = ACTIONS(3757), + [anon_sym_alias] = ACTIONS(3757), + [anon_sym_global] = ACTIONS(3757), + [anon_sym_unsafe] = ACTIONS(3757), + [anon_sym_static] = ACTIONS(3757), + [anon_sym_LBRACK] = ACTIONS(3759), + [anon_sym_abstract] = ACTIONS(3757), + [anon_sym_async] = ACTIONS(3757), + [anon_sym_const] = ACTIONS(3757), + [anon_sym_file] = ACTIONS(3757), + [anon_sym_fixed] = ACTIONS(3757), + [anon_sym_internal] = ACTIONS(3757), + [anon_sym_new] = ACTIONS(3757), + [anon_sym_override] = ACTIONS(3757), + [anon_sym_partial] = ACTIONS(3757), + [anon_sym_private] = ACTIONS(3757), + [anon_sym_protected] = ACTIONS(3757), + [anon_sym_public] = ACTIONS(3757), + [anon_sym_readonly] = ACTIONS(3757), + [anon_sym_required] = ACTIONS(3757), + [anon_sym_sealed] = ACTIONS(3757), + [anon_sym_virtual] = ACTIONS(3757), + [anon_sym_volatile] = ACTIONS(3757), + [anon_sym_where] = ACTIONS(3757), + [anon_sym_notnull] = ACTIONS(3757), + [anon_sym_unmanaged] = ACTIONS(3757), + [anon_sym_get] = ACTIONS(3757), + [anon_sym_set] = ACTIONS(3757), + [anon_sym_add] = ACTIONS(3757), + [anon_sym_remove] = ACTIONS(3757), + [anon_sym_init] = ACTIONS(3757), + [anon_sym_scoped] = ACTIONS(3757), + [anon_sym_var] = ACTIONS(3757), + [anon_sym_yield] = ACTIONS(3757), + [anon_sym_when] = ACTIONS(3757), + [anon_sym_from] = ACTIONS(3757), + [anon_sym_into] = ACTIONS(3757), + [anon_sym_join] = ACTIONS(3757), + [anon_sym_on] = ACTIONS(3757), + [anon_sym_equals] = ACTIONS(3757), + [anon_sym_let] = ACTIONS(3757), + [anon_sym_orderby] = ACTIONS(3757), + [anon_sym_ascending] = ACTIONS(3757), + [anon_sym_descending] = ACTIONS(3757), + [anon_sym_group] = ACTIONS(3757), + [anon_sym_by] = ACTIONS(3757), + [anon_sym_select] = ACTIONS(3757), + [aux_sym_preproc_if_token1] = ACTIONS(3759), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -508454,55 +507914,55 @@ 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), - [anon_sym_SEMI] = ACTIONS(3977), - [anon_sym_LBRACK] = ACTIONS(3977), - [anon_sym_COLON] = ACTIONS(3977), - [anon_sym_COMMA] = ACTIONS(3977), - [anon_sym_RBRACK] = ACTIONS(3977), - [anon_sym_LPAREN] = ACTIONS(3977), - [anon_sym_RPAREN] = ACTIONS(3977), - [anon_sym_LBRACE] = ACTIONS(3977), - [anon_sym_RBRACE] = ACTIONS(3977), - [anon_sym_LT] = ACTIONS(3975), - [anon_sym_GT] = ACTIONS(3975), - [anon_sym_in] = ACTIONS(3975), - [anon_sym_QMARK] = ACTIONS(3975), - [anon_sym_BANG] = ACTIONS(3975), - [anon_sym_PLUS_PLUS] = ACTIONS(3977), - [anon_sym_DASH_DASH] = ACTIONS(3977), - [anon_sym_PLUS] = ACTIONS(3975), - [anon_sym_DASH] = ACTIONS(3975), - [anon_sym_STAR] = ACTIONS(3977), - [anon_sym_SLASH] = ACTIONS(3975), - [anon_sym_PERCENT] = ACTIONS(3977), - [anon_sym_CARET] = ACTIONS(3977), - [anon_sym_PIPE] = ACTIONS(3975), - [anon_sym_AMP] = ACTIONS(3975), - [anon_sym_LT_LT] = ACTIONS(3977), - [anon_sym_GT_GT] = ACTIONS(3975), - [anon_sym_GT_GT_GT] = ACTIONS(3977), - [anon_sym_EQ_EQ] = ACTIONS(3977), - [anon_sym_BANG_EQ] = ACTIONS(3977), - [anon_sym_GT_EQ] = ACTIONS(3977), - [anon_sym_LT_EQ] = ACTIONS(3977), - [anon_sym_DOT] = ACTIONS(5579), - [anon_sym_EQ_GT] = ACTIONS(3977), - [anon_sym_switch] = ACTIONS(3977), - [anon_sym_DOT_DOT] = ACTIONS(3977), - [anon_sym_AMP_AMP] = ACTIONS(3977), - [anon_sym_PIPE_PIPE] = ACTIONS(3977), - [anon_sym_QMARK_QMARK] = ACTIONS(3977), - [anon_sym_into] = ACTIONS(3977), - [anon_sym_on] = ACTIONS(3977), - [anon_sym_equals] = ACTIONS(3977), - [anon_sym_by] = ACTIONS(3977), - [anon_sym_as] = ACTIONS(3977), - [anon_sym_is] = ACTIONS(3977), - [anon_sym_DASH_GT] = ACTIONS(3977), - [anon_sym_with] = ACTIONS(3977), - [aux_sym_preproc_if_token3] = ACTIONS(3977), - [aux_sym_preproc_else_token1] = ACTIONS(3977), - [aux_sym_preproc_elif_token1] = ACTIONS(3977), + [sym__identifier_token] = ACTIONS(4761), + [anon_sym_extern] = ACTIONS(4761), + [anon_sym_alias] = ACTIONS(4761), + [anon_sym_global] = ACTIONS(4761), + [anon_sym_unsafe] = ACTIONS(4761), + [anon_sym_static] = ACTIONS(4761), + [anon_sym_LBRACK] = ACTIONS(4763), + [anon_sym_abstract] = ACTIONS(4761), + [anon_sym_async] = ACTIONS(4761), + [anon_sym_const] = ACTIONS(4761), + [anon_sym_file] = ACTIONS(4761), + [anon_sym_fixed] = ACTIONS(4761), + [anon_sym_internal] = ACTIONS(4761), + [anon_sym_new] = ACTIONS(4761), + [anon_sym_override] = ACTIONS(4761), + [anon_sym_partial] = ACTIONS(4761), + [anon_sym_private] = ACTIONS(4761), + [anon_sym_protected] = ACTIONS(4761), + [anon_sym_public] = ACTIONS(4761), + [anon_sym_readonly] = ACTIONS(4761), + [anon_sym_required] = ACTIONS(4761), + [anon_sym_sealed] = ACTIONS(4761), + [anon_sym_virtual] = ACTIONS(4761), + [anon_sym_volatile] = ACTIONS(4761), + [anon_sym_where] = ACTIONS(4761), + [anon_sym_notnull] = ACTIONS(4761), + [anon_sym_unmanaged] = ACTIONS(4761), + [anon_sym_get] = ACTIONS(4761), + [anon_sym_set] = ACTIONS(4761), + [anon_sym_add] = ACTIONS(4761), + [anon_sym_remove] = ACTIONS(4761), + [anon_sym_init] = ACTIONS(4761), + [anon_sym_scoped] = ACTIONS(4761), + [anon_sym_var] = ACTIONS(4761), + [anon_sym_yield] = ACTIONS(4761), + [anon_sym_when] = ACTIONS(4761), + [anon_sym_from] = ACTIONS(4761), + [anon_sym_into] = ACTIONS(4761), + [anon_sym_join] = ACTIONS(4761), + [anon_sym_on] = ACTIONS(4761), + [anon_sym_equals] = ACTIONS(4761), + [anon_sym_let] = ACTIONS(4761), + [anon_sym_orderby] = ACTIONS(4761), + [anon_sym_ascending] = ACTIONS(4761), + [anon_sym_descending] = ACTIONS(4761), + [anon_sym_group] = ACTIONS(4761), + [anon_sym_by] = ACTIONS(4761), + [anon_sym_select] = ACTIONS(4761), + [aux_sym_preproc_if_token1] = ACTIONS(4763), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -508515,6 +507975,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3523] = { + [sym_argument_list] = STATE(3381), + [sym_bracketed_argument_list] = STATE(2467), [sym_preproc_region] = STATE(3523), [sym_preproc_endregion] = STATE(3523), [sym_preproc_line] = STATE(3523), @@ -508524,55 +507986,53 @@ 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), - [sym__identifier_token] = ACTIONS(4757), - [anon_sym_extern] = ACTIONS(4757), - [anon_sym_alias] = ACTIONS(4757), - [anon_sym_global] = ACTIONS(4757), - [anon_sym_unsafe] = ACTIONS(4757), - [anon_sym_static] = ACTIONS(4757), - [anon_sym_LBRACK] = ACTIONS(4759), - [anon_sym_abstract] = ACTIONS(4757), - [anon_sym_async] = ACTIONS(4757), - [anon_sym_const] = ACTIONS(4757), - [anon_sym_file] = ACTIONS(4757), - [anon_sym_fixed] = ACTIONS(4757), - [anon_sym_internal] = ACTIONS(4757), - [anon_sym_new] = ACTIONS(4757), - [anon_sym_override] = ACTIONS(4757), - [anon_sym_partial] = ACTIONS(4757), - [anon_sym_private] = ACTIONS(4757), - [anon_sym_protected] = ACTIONS(4757), - [anon_sym_public] = ACTIONS(4757), - [anon_sym_readonly] = ACTIONS(4757), - [anon_sym_required] = ACTIONS(4757), - [anon_sym_sealed] = ACTIONS(4757), - [anon_sym_virtual] = ACTIONS(4757), - [anon_sym_volatile] = ACTIONS(4757), - [anon_sym_where] = ACTIONS(4757), - [anon_sym_notnull] = ACTIONS(4757), - [anon_sym_unmanaged] = ACTIONS(4757), - [anon_sym_get] = ACTIONS(4757), - [anon_sym_set] = ACTIONS(4757), - [anon_sym_add] = ACTIONS(4757), - [anon_sym_remove] = ACTIONS(4757), - [anon_sym_init] = ACTIONS(4757), - [anon_sym_scoped] = ACTIONS(4757), - [anon_sym_var] = ACTIONS(4757), - [anon_sym_yield] = ACTIONS(4757), - [anon_sym_when] = ACTIONS(4757), - [anon_sym_from] = ACTIONS(4757), - [anon_sym_into] = ACTIONS(4757), - [anon_sym_join] = ACTIONS(4757), - [anon_sym_on] = ACTIONS(4757), - [anon_sym_equals] = ACTIONS(4757), - [anon_sym_let] = ACTIONS(4757), - [anon_sym_orderby] = ACTIONS(4757), - [anon_sym_ascending] = ACTIONS(4757), - [anon_sym_descending] = ACTIONS(4757), - [anon_sym_group] = ACTIONS(4757), - [anon_sym_by] = ACTIONS(4757), - [anon_sym_select] = ACTIONS(4757), - [aux_sym_preproc_if_token1] = ACTIONS(4759), + [anon_sym_SEMI] = ACTIONS(4842), + [anon_sym_LBRACK] = ACTIONS(5549), + [anon_sym_COLON] = ACTIONS(4842), + [anon_sym_COMMA] = ACTIONS(4842), + [anon_sym_RBRACK] = ACTIONS(4842), + [anon_sym_LPAREN] = ACTIONS(5257), + [anon_sym_RPAREN] = ACTIONS(4842), + [anon_sym_RBRACE] = ACTIONS(4842), + [anon_sym_LT] = ACTIONS(4844), + [anon_sym_GT] = ACTIONS(4844), + [anon_sym_in] = ACTIONS(4842), + [anon_sym_QMARK] = ACTIONS(4844), + [anon_sym_BANG] = ACTIONS(5302), + [anon_sym_PLUS_PLUS] = ACTIONS(5304), + [anon_sym_DASH_DASH] = ACTIONS(5304), + [anon_sym_PLUS] = ACTIONS(4844), + [anon_sym_DASH] = ACTIONS(4844), + [anon_sym_STAR] = ACTIONS(4842), + [anon_sym_SLASH] = ACTIONS(4844), + [anon_sym_PERCENT] = ACTIONS(4842), + [anon_sym_CARET] = ACTIONS(4842), + [anon_sym_PIPE] = ACTIONS(4844), + [anon_sym_AMP] = ACTIONS(4844), + [anon_sym_LT_LT] = ACTIONS(4842), + [anon_sym_GT_GT] = ACTIONS(4844), + [anon_sym_GT_GT_GT] = ACTIONS(4842), + [anon_sym_EQ_EQ] = ACTIONS(4842), + [anon_sym_BANG_EQ] = ACTIONS(4842), + [anon_sym_GT_EQ] = ACTIONS(4842), + [anon_sym_LT_EQ] = ACTIONS(4842), + [anon_sym_DOT] = ACTIONS(4042), + [anon_sym_EQ_GT] = ACTIONS(4842), + [anon_sym_switch] = ACTIONS(4842), + [anon_sym_DOT_DOT] = ACTIONS(4842), + [anon_sym_AMP_AMP] = ACTIONS(4842), + [anon_sym_PIPE_PIPE] = ACTIONS(4842), + [anon_sym_QMARK_QMARK] = ACTIONS(4842), + [anon_sym_on] = ACTIONS(4842), + [anon_sym_equals] = ACTIONS(4842), + [anon_sym_by] = ACTIONS(4842), + [anon_sym_as] = ACTIONS(4842), + [anon_sym_is] = ACTIONS(4842), + [anon_sym_DASH_GT] = ACTIONS(4044), + [anon_sym_with] = ACTIONS(4842), + [aux_sym_preproc_if_token3] = ACTIONS(4842), + [aux_sym_preproc_else_token1] = ACTIONS(4842), + [aux_sym_preproc_elif_token1] = ACTIONS(4842), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -508594,55 +508054,55 @@ 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), - [anon_sym_EQ] = ACTIONS(5581), - [anon_sym_LBRACK] = ACTIONS(4860), - [anon_sym_LPAREN] = ACTIONS(4860), - [anon_sym_LT] = ACTIONS(4862), - [anon_sym_GT] = ACTIONS(4862), - [anon_sym_in] = ACTIONS(4860), - [anon_sym_QMARK] = ACTIONS(4862), - [anon_sym_BANG] = ACTIONS(4862), - [anon_sym_PLUS_PLUS] = ACTIONS(4860), - [anon_sym_DASH_DASH] = ACTIONS(4860), - [anon_sym_PLUS] = ACTIONS(4862), - [anon_sym_DASH] = ACTIONS(4862), - [anon_sym_STAR] = ACTIONS(4862), - [anon_sym_SLASH] = ACTIONS(4862), - [anon_sym_PERCENT] = ACTIONS(4862), - [anon_sym_CARET] = ACTIONS(4862), - [anon_sym_PIPE] = ACTIONS(4862), - [anon_sym_AMP] = ACTIONS(4862), - [anon_sym_LT_LT] = ACTIONS(4862), - [anon_sym_GT_GT] = ACTIONS(4862), - [anon_sym_GT_GT_GT] = ACTIONS(4862), - [anon_sym_EQ_EQ] = ACTIONS(4860), - [anon_sym_BANG_EQ] = ACTIONS(4860), - [anon_sym_GT_EQ] = ACTIONS(4860), - [anon_sym_LT_EQ] = ACTIONS(4860), - [anon_sym_DOT] = ACTIONS(4862), - [anon_sym_switch] = ACTIONS(4860), - [anon_sym_DOT_DOT] = ACTIONS(4860), - [anon_sym_and] = ACTIONS(4860), - [anon_sym_or] = ACTIONS(4860), - [anon_sym_PLUS_EQ] = ACTIONS(5583), - [anon_sym_DASH_EQ] = ACTIONS(5583), - [anon_sym_STAR_EQ] = ACTIONS(5583), - [anon_sym_SLASH_EQ] = ACTIONS(5583), - [anon_sym_PERCENT_EQ] = ACTIONS(5583), - [anon_sym_AMP_EQ] = ACTIONS(5583), - [anon_sym_CARET_EQ] = ACTIONS(5583), - [anon_sym_PIPE_EQ] = ACTIONS(5583), - [anon_sym_LT_LT_EQ] = ACTIONS(5583), - [anon_sym_GT_GT_EQ] = ACTIONS(5583), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(5583), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(5583), - [anon_sym_AMP_AMP] = ACTIONS(4860), - [anon_sym_PIPE_PIPE] = ACTIONS(4860), - [anon_sym_QMARK_QMARK] = ACTIONS(4862), - [anon_sym_as] = ACTIONS(4860), - [anon_sym_is] = ACTIONS(4860), - [anon_sym_DASH_GT] = ACTIONS(4860), - [anon_sym_with] = ACTIONS(4860), + [sym__identifier_token] = ACTIONS(4721), + [anon_sym_extern] = ACTIONS(4721), + [anon_sym_alias] = ACTIONS(4721), + [anon_sym_global] = ACTIONS(4721), + [anon_sym_unsafe] = ACTIONS(4721), + [anon_sym_static] = ACTIONS(4721), + [anon_sym_LBRACK] = ACTIONS(4723), + [anon_sym_abstract] = ACTIONS(4721), + [anon_sym_async] = ACTIONS(4721), + [anon_sym_const] = ACTIONS(4721), + [anon_sym_file] = ACTIONS(4721), + [anon_sym_fixed] = ACTIONS(4721), + [anon_sym_internal] = ACTIONS(4721), + [anon_sym_new] = ACTIONS(4721), + [anon_sym_override] = ACTIONS(4721), + [anon_sym_partial] = ACTIONS(4721), + [anon_sym_private] = ACTIONS(4721), + [anon_sym_protected] = ACTIONS(4721), + [anon_sym_public] = ACTIONS(4721), + [anon_sym_readonly] = ACTIONS(4721), + [anon_sym_required] = ACTIONS(4721), + [anon_sym_sealed] = ACTIONS(4721), + [anon_sym_virtual] = ACTIONS(4721), + [anon_sym_volatile] = ACTIONS(4721), + [anon_sym_where] = ACTIONS(4721), + [anon_sym_notnull] = ACTIONS(4721), + [anon_sym_unmanaged] = ACTIONS(4721), + [anon_sym_get] = ACTIONS(4721), + [anon_sym_set] = ACTIONS(4721), + [anon_sym_add] = ACTIONS(4721), + [anon_sym_remove] = ACTIONS(4721), + [anon_sym_init] = ACTIONS(4721), + [anon_sym_scoped] = ACTIONS(4721), + [anon_sym_var] = ACTIONS(4721), + [anon_sym_yield] = ACTIONS(4721), + [anon_sym_when] = ACTIONS(4721), + [anon_sym_from] = ACTIONS(4721), + [anon_sym_into] = ACTIONS(4721), + [anon_sym_join] = ACTIONS(4721), + [anon_sym_on] = ACTIONS(4721), + [anon_sym_equals] = ACTIONS(4721), + [anon_sym_let] = ACTIONS(4721), + [anon_sym_orderby] = ACTIONS(4721), + [anon_sym_ascending] = ACTIONS(4721), + [anon_sym_descending] = ACTIONS(4721), + [anon_sym_group] = ACTIONS(4721), + [anon_sym_by] = ACTIONS(4721), + [anon_sym_select] = ACTIONS(4721), + [aux_sym_preproc_if_token1] = ACTIONS(4723), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -508664,55 +508124,55 @@ 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), - [anon_sym_EQ] = ACTIONS(5512), - [anon_sym_LBRACK] = ACTIONS(4860), - [anon_sym_COLON] = ACTIONS(4860), - [anon_sym_COMMA] = ACTIONS(4860), - [anon_sym_LPAREN] = ACTIONS(4860), - [anon_sym_RPAREN] = ACTIONS(5585), - [anon_sym_LT] = ACTIONS(4862), - [anon_sym_GT] = ACTIONS(4862), - [anon_sym_QMARK] = ACTIONS(4862), - [anon_sym_BANG] = ACTIONS(4862), - [anon_sym_PLUS_PLUS] = ACTIONS(4860), - [anon_sym_DASH_DASH] = ACTIONS(4860), - [anon_sym_PLUS] = ACTIONS(4862), - [anon_sym_DASH] = ACTIONS(4862), - [anon_sym_STAR] = ACTIONS(4862), - [anon_sym_SLASH] = ACTIONS(4862), - [anon_sym_PERCENT] = ACTIONS(4862), - [anon_sym_CARET] = ACTIONS(4862), - [anon_sym_PIPE] = ACTIONS(4862), - [anon_sym_AMP] = ACTIONS(4862), - [anon_sym_LT_LT] = ACTIONS(4862), - [anon_sym_GT_GT] = ACTIONS(4862), - [anon_sym_GT_GT_GT] = ACTIONS(4862), - [anon_sym_EQ_EQ] = ACTIONS(4860), - [anon_sym_BANG_EQ] = ACTIONS(4860), - [anon_sym_GT_EQ] = ACTIONS(4860), - [anon_sym_LT_EQ] = ACTIONS(4860), - [anon_sym_DOT] = ACTIONS(4862), - [anon_sym_switch] = ACTIONS(4860), - [anon_sym_DOT_DOT] = ACTIONS(4860), - [anon_sym_PLUS_EQ] = ACTIONS(5514), - [anon_sym_DASH_EQ] = ACTIONS(5514), - [anon_sym_STAR_EQ] = ACTIONS(5514), - [anon_sym_SLASH_EQ] = ACTIONS(5514), - [anon_sym_PERCENT_EQ] = ACTIONS(5514), - [anon_sym_AMP_EQ] = ACTIONS(5514), - [anon_sym_CARET_EQ] = ACTIONS(5514), - [anon_sym_PIPE_EQ] = ACTIONS(5514), - [anon_sym_LT_LT_EQ] = ACTIONS(5514), - [anon_sym_GT_GT_EQ] = ACTIONS(5514), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(5514), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(5514), - [anon_sym_AMP_AMP] = ACTIONS(4860), - [anon_sym_PIPE_PIPE] = ACTIONS(4860), - [anon_sym_QMARK_QMARK] = ACTIONS(4862), - [anon_sym_as] = ACTIONS(4860), - [anon_sym_is] = ACTIONS(4860), - [anon_sym_DASH_GT] = ACTIONS(4860), - [anon_sym_with] = ACTIONS(4860), + [anon_sym_EQ] = ACTIONS(5583), + [anon_sym_LBRACK] = ACTIONS(4811), + [anon_sym_LPAREN] = ACTIONS(4811), + [anon_sym_LT] = ACTIONS(4813), + [anon_sym_GT] = ACTIONS(4813), + [anon_sym_in] = ACTIONS(4811), + [anon_sym_QMARK] = ACTIONS(4813), + [anon_sym_BANG] = ACTIONS(4813), + [anon_sym_PLUS_PLUS] = ACTIONS(4811), + [anon_sym_DASH_DASH] = ACTIONS(4811), + [anon_sym_PLUS] = ACTIONS(4813), + [anon_sym_DASH] = ACTIONS(4813), + [anon_sym_STAR] = ACTIONS(4813), + [anon_sym_SLASH] = ACTIONS(4813), + [anon_sym_PERCENT] = ACTIONS(4813), + [anon_sym_CARET] = ACTIONS(4813), + [anon_sym_PIPE] = ACTIONS(4813), + [anon_sym_AMP] = ACTIONS(4813), + [anon_sym_LT_LT] = ACTIONS(4813), + [anon_sym_GT_GT] = ACTIONS(4813), + [anon_sym_GT_GT_GT] = ACTIONS(4813), + [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(4813), + [anon_sym_switch] = ACTIONS(4811), + [anon_sym_DOT_DOT] = ACTIONS(4811), + [anon_sym_and] = ACTIONS(4811), + [anon_sym_or] = ACTIONS(4811), + [anon_sym_PLUS_EQ] = ACTIONS(5585), + [anon_sym_DASH_EQ] = ACTIONS(5585), + [anon_sym_STAR_EQ] = ACTIONS(5585), + [anon_sym_SLASH_EQ] = ACTIONS(5585), + [anon_sym_PERCENT_EQ] = ACTIONS(5585), + [anon_sym_AMP_EQ] = ACTIONS(5585), + [anon_sym_CARET_EQ] = ACTIONS(5585), + [anon_sym_PIPE_EQ] = ACTIONS(5585), + [anon_sym_LT_LT_EQ] = ACTIONS(5585), + [anon_sym_GT_GT_EQ] = ACTIONS(5585), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(5585), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(5585), + [anon_sym_AMP_AMP] = ACTIONS(4811), + [anon_sym_PIPE_PIPE] = ACTIONS(4811), + [anon_sym_QMARK_QMARK] = ACTIONS(4813), + [anon_sym_as] = ACTIONS(4811), + [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), @@ -508734,35 +508194,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_SEMI] = ACTIONS(4811), [anon_sym_EQ] = ACTIONS(5587), - [anon_sym_LBRACK] = ACTIONS(4860), - [anon_sym_LPAREN] = ACTIONS(4860), - [anon_sym_LT] = ACTIONS(4862), - [anon_sym_GT] = ACTIONS(4862), - [anon_sym_QMARK] = ACTIONS(4862), - [anon_sym_BANG] = ACTIONS(4862), - [anon_sym_PLUS_PLUS] = ACTIONS(4860), - [anon_sym_DASH_DASH] = ACTIONS(4860), - [anon_sym_PLUS] = ACTIONS(4862), - [anon_sym_DASH] = ACTIONS(4862), - [anon_sym_STAR] = ACTIONS(4862), - [anon_sym_SLASH] = ACTIONS(4862), - [anon_sym_PERCENT] = ACTIONS(4862), - [anon_sym_CARET] = ACTIONS(4862), - [anon_sym_PIPE] = ACTIONS(4862), - [anon_sym_AMP] = ACTIONS(4862), - [anon_sym_LT_LT] = ACTIONS(4862), - [anon_sym_GT_GT] = ACTIONS(4862), - [anon_sym_GT_GT_GT] = ACTIONS(4862), - [anon_sym_EQ_EQ] = ACTIONS(4860), - [anon_sym_BANG_EQ] = ACTIONS(4860), - [anon_sym_GT_EQ] = ACTIONS(4860), - [anon_sym_LT_EQ] = ACTIONS(4860), - [anon_sym_DOT] = ACTIONS(4862), - [anon_sym_switch] = ACTIONS(4860), - [anon_sym_DOT_DOT] = ACTIONS(4860), - [anon_sym_and] = ACTIONS(4860), - [anon_sym_or] = ACTIONS(4860), + [anon_sym_LBRACK] = ACTIONS(4811), + [anon_sym_COMMA] = ACTIONS(4811), + [anon_sym_LPAREN] = ACTIONS(4811), + [anon_sym_RBRACE] = ACTIONS(4811), + [anon_sym_LT] = ACTIONS(4813), + [anon_sym_GT] = ACTIONS(4813), + [anon_sym_QMARK] = ACTIONS(4813), + [anon_sym_BANG] = ACTIONS(4813), + [anon_sym_PLUS_PLUS] = ACTIONS(4811), + [anon_sym_DASH_DASH] = ACTIONS(4811), + [anon_sym_PLUS] = ACTIONS(4813), + [anon_sym_DASH] = ACTIONS(4813), + [anon_sym_STAR] = ACTIONS(4813), + [anon_sym_SLASH] = ACTIONS(4813), + [anon_sym_PERCENT] = ACTIONS(4813), + [anon_sym_CARET] = ACTIONS(4813), + [anon_sym_PIPE] = ACTIONS(4813), + [anon_sym_AMP] = ACTIONS(4813), + [anon_sym_LT_LT] = ACTIONS(4813), + [anon_sym_GT_GT] = ACTIONS(4813), + [anon_sym_GT_GT_GT] = ACTIONS(4813), + [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(4813), + [anon_sym_switch] = ACTIONS(4811), + [anon_sym_DOT_DOT] = ACTIONS(4811), [anon_sym_PLUS_EQ] = ACTIONS(5589), [anon_sym_DASH_EQ] = ACTIONS(5589), [anon_sym_STAR_EQ] = ACTIONS(5589), @@ -508775,14 +508236,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_GT_EQ] = ACTIONS(5589), [anon_sym_GT_GT_GT_EQ] = ACTIONS(5589), [anon_sym_QMARK_QMARK_EQ] = ACTIONS(5589), - [anon_sym_AMP_AMP] = ACTIONS(4860), - [anon_sym_PIPE_PIPE] = ACTIONS(4860), - [anon_sym_QMARK_QMARK] = ACTIONS(4862), - [anon_sym_by] = ACTIONS(4860), - [anon_sym_as] = ACTIONS(4860), - [anon_sym_is] = ACTIONS(4860), - [anon_sym_DASH_GT] = ACTIONS(4860), - [anon_sym_with] = ACTIONS(4860), + [anon_sym_AMP_AMP] = ACTIONS(4811), + [anon_sym_PIPE_PIPE] = ACTIONS(4811), + [anon_sym_QMARK_QMARK] = ACTIONS(4813), + [anon_sym_as] = ACTIONS(4811), + [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), @@ -508795,6 +508255,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3527] = { + [sym_argument_list] = STATE(3577), + [sym_initializer_expression] = STATE(3819), [sym_preproc_region] = STATE(3527), [sym_preproc_endregion] = STATE(3527), [sym_preproc_line] = STATE(3527), @@ -508804,67 +508266,67 @@ 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_EQ] = ACTIONS(5591), - [anon_sym_LBRACK] = ACTIONS(4860), - [anon_sym_COLON] = ACTIONS(4860), - [anon_sym_COMMA] = ACTIONS(4860), - [anon_sym_LPAREN] = ACTIONS(4860), - [anon_sym_LT] = ACTIONS(4862), - [anon_sym_GT] = ACTIONS(4862), - [anon_sym_QMARK] = ACTIONS(4862), - [anon_sym_BANG] = ACTIONS(4862), - [anon_sym_PLUS_PLUS] = ACTIONS(4860), - [anon_sym_DASH_DASH] = ACTIONS(4860), - [anon_sym_PLUS] = ACTIONS(4862), - [anon_sym_DASH] = ACTIONS(4862), - [anon_sym_STAR] = ACTIONS(4862), - [anon_sym_SLASH] = ACTIONS(4862), - [anon_sym_PERCENT] = ACTIONS(4862), - [anon_sym_CARET] = ACTIONS(4862), - [anon_sym_PIPE] = ACTIONS(4862), - [anon_sym_AMP] = ACTIONS(4862), - [anon_sym_LT_LT] = ACTIONS(4862), - [anon_sym_GT_GT] = ACTIONS(4862), - [anon_sym_GT_GT_GT] = ACTIONS(4862), - [anon_sym_EQ_EQ] = ACTIONS(4860), - [anon_sym_BANG_EQ] = ACTIONS(4860), - [anon_sym_GT_EQ] = ACTIONS(4860), - [anon_sym_LT_EQ] = ACTIONS(4860), - [anon_sym_DOT] = ACTIONS(4862), - [anon_sym_switch] = ACTIONS(4860), - [anon_sym_DOT_DOT] = ACTIONS(4860), - [anon_sym_PLUS_EQ] = ACTIONS(5593), - [anon_sym_DASH_EQ] = ACTIONS(5593), - [anon_sym_STAR_EQ] = ACTIONS(5593), - [anon_sym_SLASH_EQ] = ACTIONS(5593), - [anon_sym_PERCENT_EQ] = ACTIONS(5593), - [anon_sym_AMP_EQ] = ACTIONS(5593), - [anon_sym_CARET_EQ] = ACTIONS(5593), - [anon_sym_PIPE_EQ] = ACTIONS(5593), - [anon_sym_LT_LT_EQ] = ACTIONS(5593), - [anon_sym_GT_GT_EQ] = ACTIONS(5593), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(5593), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(5593), - [anon_sym_AMP_AMP] = ACTIONS(4860), - [anon_sym_PIPE_PIPE] = ACTIONS(4860), - [anon_sym_QMARK_QMARK] = ACTIONS(4862), - [anon_sym_as] = ACTIONS(4860), - [anon_sym_is] = ACTIONS(4860), - [anon_sym_DASH_GT] = ACTIONS(4860), - [anon_sym_with] = ACTIONS(4860), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_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(4860), + [anon_sym_LBRACK] = ACTIONS(4751), + [anon_sym_COMMA] = ACTIONS(4751), + [anon_sym_LPAREN] = ACTIONS(5591), + [anon_sym_LBRACE] = ACTIONS(1661), + [anon_sym_LT] = ACTIONS(4755), + [anon_sym_GT] = ACTIONS(4755), + [anon_sym_where] = ACTIONS(4751), + [anon_sym_QMARK] = ACTIONS(4755), + [anon_sym_BANG] = ACTIONS(4755), + [anon_sym_PLUS_PLUS] = ACTIONS(4751), + [anon_sym_DASH_DASH] = ACTIONS(4751), + [anon_sym_PLUS] = ACTIONS(4755), + [anon_sym_DASH] = ACTIONS(4755), + [anon_sym_STAR] = ACTIONS(4751), + [anon_sym_SLASH] = ACTIONS(4755), + [anon_sym_PERCENT] = ACTIONS(4751), + [anon_sym_CARET] = ACTIONS(4751), + [anon_sym_PIPE] = ACTIONS(4755), + [anon_sym_AMP] = ACTIONS(4755), + [anon_sym_LT_LT] = ACTIONS(4751), + [anon_sym_GT_GT] = ACTIONS(4755), + [anon_sym_GT_GT_GT] = ACTIONS(4751), + [anon_sym_EQ_EQ] = ACTIONS(4751), + [anon_sym_BANG_EQ] = ACTIONS(4751), + [anon_sym_GT_EQ] = ACTIONS(4751), + [anon_sym_LT_EQ] = ACTIONS(4751), + [anon_sym_DOT] = ACTIONS(4755), + [anon_sym_switch] = ACTIONS(4751), + [anon_sym_DOT_DOT] = ACTIONS(4751), + [anon_sym_and] = ACTIONS(4751), + [anon_sym_or] = ACTIONS(4755), + [anon_sym_AMP_AMP] = ACTIONS(4751), + [anon_sym_PIPE_PIPE] = ACTIONS(4751), + [anon_sym_QMARK_QMARK] = ACTIONS(4751), + [anon_sym_from] = ACTIONS(4751), + [anon_sym_into] = ACTIONS(4751), + [anon_sym_join] = ACTIONS(4751), + [anon_sym_let] = ACTIONS(4751), + [anon_sym_orderby] = ACTIONS(4751), + [anon_sym_ascending] = ACTIONS(4751), + [anon_sym_descending] = ACTIONS(4751), + [anon_sym_group] = ACTIONS(4751), + [anon_sym_select] = ACTIONS(4751), + [anon_sym_as] = ACTIONS(4755), + [anon_sym_is] = ACTIONS(4751), + [anon_sym_DASH_GT] = ACTIONS(4751), + [anon_sym_with] = 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), }, [3528] = { + [sym_argument_list] = STATE(3381), + [sym_bracketed_argument_list] = STATE(2467), [sym_preproc_region] = STATE(3528), [sym_preproc_endregion] = STATE(3528), [sym_preproc_line] = STATE(3528), @@ -508874,55 +508336,53 @@ 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), - [sym__identifier_token] = ACTIONS(5130), - [anon_sym_extern] = ACTIONS(5130), - [anon_sym_alias] = ACTIONS(5130), - [anon_sym_global] = ACTIONS(5130), - [anon_sym_unsafe] = ACTIONS(5130), - [anon_sym_static] = ACTIONS(5130), - [anon_sym_LBRACK] = ACTIONS(5132), - [anon_sym_abstract] = ACTIONS(5130), - [anon_sym_async] = ACTIONS(5130), - [anon_sym_const] = ACTIONS(5130), - [anon_sym_file] = ACTIONS(5130), - [anon_sym_fixed] = ACTIONS(5130), - [anon_sym_internal] = ACTIONS(5130), - [anon_sym_new] = ACTIONS(5130), - [anon_sym_override] = ACTIONS(5130), - [anon_sym_partial] = ACTIONS(5130), - [anon_sym_private] = ACTIONS(5130), - [anon_sym_protected] = ACTIONS(5130), - [anon_sym_public] = ACTIONS(5130), - [anon_sym_readonly] = ACTIONS(5130), - [anon_sym_required] = ACTIONS(5130), - [anon_sym_sealed] = ACTIONS(5130), - [anon_sym_virtual] = ACTIONS(5130), - [anon_sym_volatile] = ACTIONS(5130), - [anon_sym_where] = ACTIONS(5130), - [anon_sym_notnull] = ACTIONS(5130), - [anon_sym_unmanaged] = ACTIONS(5130), - [anon_sym_get] = ACTIONS(5130), - [anon_sym_set] = ACTIONS(5130), - [anon_sym_add] = ACTIONS(5130), - [anon_sym_remove] = ACTIONS(5130), - [anon_sym_init] = ACTIONS(5130), - [anon_sym_scoped] = ACTIONS(5130), - [anon_sym_var] = ACTIONS(5130), - [anon_sym_yield] = ACTIONS(5130), - [anon_sym_when] = 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_ascending] = ACTIONS(5130), - [anon_sym_descending] = ACTIONS(5130), - [anon_sym_group] = ACTIONS(5130), - [anon_sym_by] = ACTIONS(5130), - [anon_sym_select] = ACTIONS(5130), - [aux_sym_preproc_if_token1] = ACTIONS(5132), + [anon_sym_SEMI] = ACTIONS(4817), + [anon_sym_LBRACK] = ACTIONS(5549), + [anon_sym_COLON] = ACTIONS(4817), + [anon_sym_COMMA] = ACTIONS(4817), + [anon_sym_RBRACK] = ACTIONS(4817), + [anon_sym_LPAREN] = ACTIONS(5257), + [anon_sym_RPAREN] = ACTIONS(4817), + [anon_sym_RBRACE] = ACTIONS(4817), + [anon_sym_LT] = ACTIONS(4821), + [anon_sym_GT] = ACTIONS(4821), + [anon_sym_in] = ACTIONS(4817), + [anon_sym_QMARK] = ACTIONS(4821), + [anon_sym_BANG] = ACTIONS(5302), + [anon_sym_PLUS_PLUS] = ACTIONS(5304), + [anon_sym_DASH_DASH] = ACTIONS(5304), + [anon_sym_PLUS] = ACTIONS(4821), + [anon_sym_DASH] = ACTIONS(4821), + [anon_sym_STAR] = ACTIONS(4817), + [anon_sym_SLASH] = ACTIONS(4821), + [anon_sym_PERCENT] = ACTIONS(4817), + [anon_sym_CARET] = ACTIONS(4817), + [anon_sym_PIPE] = ACTIONS(4821), + [anon_sym_AMP] = ACTIONS(4821), + [anon_sym_LT_LT] = ACTIONS(4817), + [anon_sym_GT_GT] = ACTIONS(4821), + [anon_sym_GT_GT_GT] = ACTIONS(4817), + [anon_sym_EQ_EQ] = ACTIONS(4817), + [anon_sym_BANG_EQ] = ACTIONS(4817), + [anon_sym_GT_EQ] = ACTIONS(4817), + [anon_sym_LT_EQ] = ACTIONS(4817), + [anon_sym_DOT] = ACTIONS(4042), + [anon_sym_EQ_GT] = ACTIONS(4817), + [anon_sym_switch] = ACTIONS(4817), + [anon_sym_DOT_DOT] = ACTIONS(4817), + [anon_sym_AMP_AMP] = ACTIONS(4817), + [anon_sym_PIPE_PIPE] = ACTIONS(4817), + [anon_sym_QMARK_QMARK] = ACTIONS(4817), + [anon_sym_on] = ACTIONS(4817), + [anon_sym_equals] = ACTIONS(4817), + [anon_sym_by] = ACTIONS(4817), + [anon_sym_as] = ACTIONS(4817), + [anon_sym_is] = ACTIONS(4817), + [anon_sym_DASH_GT] = ACTIONS(4044), + [anon_sym_with] = ACTIONS(4817), + [aux_sym_preproc_if_token3] = ACTIONS(4817), + [aux_sym_preproc_else_token1] = ACTIONS(4817), + [aux_sym_preproc_elif_token1] = ACTIONS(4817), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -508944,55 +508404,55 @@ 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(4860), - [anon_sym_EQ] = ACTIONS(5595), - [anon_sym_LBRACK] = ACTIONS(4860), - [anon_sym_COMMA] = ACTIONS(4860), - [anon_sym_LPAREN] = ACTIONS(4860), - [anon_sym_RBRACE] = ACTIONS(4860), - [anon_sym_LT] = ACTIONS(4862), - [anon_sym_GT] = ACTIONS(4862), - [anon_sym_QMARK] = ACTIONS(4862), - [anon_sym_BANG] = ACTIONS(4862), - [anon_sym_PLUS_PLUS] = ACTIONS(4860), - [anon_sym_DASH_DASH] = ACTIONS(4860), - [anon_sym_PLUS] = ACTIONS(4862), - [anon_sym_DASH] = ACTIONS(4862), - [anon_sym_STAR] = ACTIONS(4862), - [anon_sym_SLASH] = ACTIONS(4862), - [anon_sym_PERCENT] = ACTIONS(4862), - [anon_sym_CARET] = ACTIONS(4862), - [anon_sym_PIPE] = ACTIONS(4862), - [anon_sym_AMP] = ACTIONS(4862), - [anon_sym_LT_LT] = ACTIONS(4862), - [anon_sym_GT_GT] = ACTIONS(4862), - [anon_sym_GT_GT_GT] = ACTIONS(4862), - [anon_sym_EQ_EQ] = ACTIONS(4860), - [anon_sym_BANG_EQ] = ACTIONS(4860), - [anon_sym_GT_EQ] = ACTIONS(4860), - [anon_sym_LT_EQ] = ACTIONS(4860), - [anon_sym_DOT] = ACTIONS(4862), - [anon_sym_switch] = ACTIONS(4860), - [anon_sym_DOT_DOT] = ACTIONS(4860), - [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(4860), - [anon_sym_PIPE_PIPE] = ACTIONS(4860), - [anon_sym_QMARK_QMARK] = ACTIONS(4862), - [anon_sym_as] = ACTIONS(4860), - [anon_sym_is] = ACTIONS(4860), - [anon_sym_DASH_GT] = ACTIONS(4860), - [anon_sym_with] = ACTIONS(4860), + [sym__identifier_token] = ACTIONS(5138), + [anon_sym_extern] = ACTIONS(5138), + [anon_sym_alias] = ACTIONS(5138), + [anon_sym_global] = ACTIONS(5138), + [anon_sym_unsafe] = ACTIONS(5138), + [anon_sym_static] = ACTIONS(5138), + [anon_sym_LBRACK] = ACTIONS(5140), + [anon_sym_abstract] = ACTIONS(5138), + [anon_sym_async] = ACTIONS(5138), + [anon_sym_const] = ACTIONS(5138), + [anon_sym_file] = ACTIONS(5138), + [anon_sym_fixed] = ACTIONS(5138), + [anon_sym_internal] = ACTIONS(5138), + [anon_sym_new] = ACTIONS(5138), + [anon_sym_override] = ACTIONS(5138), + [anon_sym_partial] = ACTIONS(5138), + [anon_sym_private] = ACTIONS(5138), + [anon_sym_protected] = ACTIONS(5138), + [anon_sym_public] = ACTIONS(5138), + [anon_sym_readonly] = ACTIONS(5138), + [anon_sym_required] = ACTIONS(5138), + [anon_sym_sealed] = ACTIONS(5138), + [anon_sym_virtual] = ACTIONS(5138), + [anon_sym_volatile] = ACTIONS(5138), + [anon_sym_where] = ACTIONS(5138), + [anon_sym_notnull] = ACTIONS(5138), + [anon_sym_unmanaged] = ACTIONS(5138), + [anon_sym_get] = ACTIONS(5138), + [anon_sym_set] = ACTIONS(5138), + [anon_sym_add] = ACTIONS(5138), + [anon_sym_remove] = ACTIONS(5138), + [anon_sym_init] = ACTIONS(5138), + [anon_sym_scoped] = ACTIONS(5138), + [anon_sym_var] = ACTIONS(5138), + [anon_sym_yield] = ACTIONS(5138), + [anon_sym_when] = ACTIONS(5138), + [anon_sym_from] = ACTIONS(5138), + [anon_sym_into] = ACTIONS(5138), + [anon_sym_join] = ACTIONS(5138), + [anon_sym_on] = ACTIONS(5138), + [anon_sym_equals] = ACTIONS(5138), + [anon_sym_let] = ACTIONS(5138), + [anon_sym_orderby] = ACTIONS(5138), + [anon_sym_ascending] = ACTIONS(5138), + [anon_sym_descending] = ACTIONS(5138), + [anon_sym_group] = ACTIONS(5138), + [anon_sym_by] = ACTIONS(5138), + [anon_sym_select] = ACTIONS(5138), + [aux_sym_preproc_if_token1] = ACTIONS(5140), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -509014,55 +508474,55 @@ 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_EQ] = ACTIONS(5599), - [anon_sym_LBRACK] = ACTIONS(4860), - [anon_sym_LPAREN] = ACTIONS(4860), - [anon_sym_LT] = ACTIONS(4862), - [anon_sym_GT] = ACTIONS(4862), - [anon_sym_QMARK] = ACTIONS(4862), - [anon_sym_BANG] = ACTIONS(4862), - [anon_sym_PLUS_PLUS] = ACTIONS(4860), - [anon_sym_DASH_DASH] = ACTIONS(4860), - [anon_sym_PLUS] = ACTIONS(4862), - [anon_sym_DASH] = ACTIONS(4862), - [anon_sym_STAR] = ACTIONS(4862), - [anon_sym_SLASH] = ACTIONS(4862), - [anon_sym_PERCENT] = ACTIONS(4862), - [anon_sym_CARET] = ACTIONS(4862), - [anon_sym_PIPE] = ACTIONS(4862), - [anon_sym_AMP] = ACTIONS(4862), - [anon_sym_LT_LT] = ACTIONS(4862), - [anon_sym_GT_GT] = ACTIONS(4862), - [anon_sym_GT_GT_GT] = ACTIONS(4862), - [anon_sym_EQ_EQ] = ACTIONS(4860), - [anon_sym_BANG_EQ] = ACTIONS(4860), - [anon_sym_GT_EQ] = ACTIONS(4860), - [anon_sym_LT_EQ] = ACTIONS(4860), - [anon_sym_DOT] = ACTIONS(4862), - [anon_sym_switch] = ACTIONS(4860), - [anon_sym_DOT_DOT] = ACTIONS(4860), - [anon_sym_and] = ACTIONS(4860), - [anon_sym_or] = ACTIONS(4860), - [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(4860), - [anon_sym_PIPE_PIPE] = ACTIONS(4860), - [anon_sym_QMARK_QMARK] = ACTIONS(4862), - [anon_sym_equals] = ACTIONS(4860), - [anon_sym_as] = ACTIONS(4860), - [anon_sym_is] = ACTIONS(4860), - [anon_sym_DASH_GT] = ACTIONS(4860), - [anon_sym_with] = ACTIONS(4860), + [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), @@ -509084,55 +508544,55 @@ 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), - [sym__identifier_token] = ACTIONS(4699), - [anon_sym_extern] = ACTIONS(4699), - [anon_sym_alias] = ACTIONS(4699), - [anon_sym_global] = ACTIONS(4699), - [anon_sym_unsafe] = ACTIONS(4699), - [anon_sym_static] = ACTIONS(4699), - [anon_sym_LBRACK] = ACTIONS(4701), - [anon_sym_abstract] = ACTIONS(4699), - [anon_sym_async] = ACTIONS(4699), - [anon_sym_const] = ACTIONS(4699), - [anon_sym_file] = ACTIONS(4699), - [anon_sym_fixed] = ACTIONS(4699), - [anon_sym_internal] = ACTIONS(4699), - [anon_sym_new] = ACTIONS(4699), - [anon_sym_override] = ACTIONS(4699), - [anon_sym_partial] = ACTIONS(4699), - [anon_sym_private] = ACTIONS(4699), - [anon_sym_protected] = ACTIONS(4699), - [anon_sym_public] = ACTIONS(4699), - [anon_sym_readonly] = ACTIONS(4699), - [anon_sym_required] = ACTIONS(4699), - [anon_sym_sealed] = ACTIONS(4699), - [anon_sym_virtual] = ACTIONS(4699), - [anon_sym_volatile] = ACTIONS(4699), - [anon_sym_where] = ACTIONS(4699), - [anon_sym_notnull] = ACTIONS(4699), - [anon_sym_unmanaged] = ACTIONS(4699), - [anon_sym_get] = ACTIONS(4699), - [anon_sym_set] = ACTIONS(4699), - [anon_sym_add] = ACTIONS(4699), - [anon_sym_remove] = ACTIONS(4699), - [anon_sym_init] = ACTIONS(4699), - [anon_sym_scoped] = ACTIONS(4699), - [anon_sym_var] = ACTIONS(4699), - [anon_sym_yield] = ACTIONS(4699), - [anon_sym_when] = ACTIONS(4699), - [anon_sym_from] = ACTIONS(4699), - [anon_sym_into] = ACTIONS(4699), - [anon_sym_join] = ACTIONS(4699), - [anon_sym_on] = ACTIONS(4699), - [anon_sym_equals] = ACTIONS(4699), - [anon_sym_let] = ACTIONS(4699), - [anon_sym_orderby] = ACTIONS(4699), - [anon_sym_ascending] = ACTIONS(4699), - [anon_sym_descending] = ACTIONS(4699), - [anon_sym_group] = ACTIONS(4699), - [anon_sym_by] = ACTIONS(4699), - [anon_sym_select] = ACTIONS(4699), - [aux_sym_preproc_if_token1] = ACTIONS(4701), + [sym__identifier_token] = ACTIONS(4988), + [anon_sym_extern] = ACTIONS(4988), + [anon_sym_alias] = ACTIONS(4988), + [anon_sym_global] = ACTIONS(4988), + [anon_sym_unsafe] = ACTIONS(4988), + [anon_sym_static] = ACTIONS(4988), + [anon_sym_LBRACK] = ACTIONS(4990), + [anon_sym_abstract] = ACTIONS(4988), + [anon_sym_async] = ACTIONS(4988), + [anon_sym_const] = ACTIONS(4988), + [anon_sym_file] = ACTIONS(4988), + [anon_sym_fixed] = ACTIONS(4988), + [anon_sym_internal] = ACTIONS(4988), + [anon_sym_new] = ACTIONS(4988), + [anon_sym_override] = ACTIONS(4988), + [anon_sym_partial] = ACTIONS(4988), + [anon_sym_private] = ACTIONS(4988), + [anon_sym_protected] = ACTIONS(4988), + [anon_sym_public] = ACTIONS(4988), + [anon_sym_readonly] = ACTIONS(4988), + [anon_sym_required] = ACTIONS(4988), + [anon_sym_sealed] = ACTIONS(4988), + [anon_sym_virtual] = ACTIONS(4988), + [anon_sym_volatile] = ACTIONS(4988), + [anon_sym_where] = ACTIONS(4988), + [anon_sym_notnull] = ACTIONS(4988), + [anon_sym_unmanaged] = ACTIONS(4988), + [anon_sym_get] = ACTIONS(4988), + [anon_sym_set] = ACTIONS(4988), + [anon_sym_add] = ACTIONS(4988), + [anon_sym_remove] = ACTIONS(4988), + [anon_sym_init] = ACTIONS(4988), + [anon_sym_scoped] = ACTIONS(4988), + [anon_sym_var] = ACTIONS(4988), + [anon_sym_yield] = ACTIONS(4988), + [anon_sym_when] = ACTIONS(4988), + [anon_sym_from] = ACTIONS(4988), + [anon_sym_into] = ACTIONS(4988), + [anon_sym_join] = ACTIONS(4988), + [anon_sym_on] = ACTIONS(4988), + [anon_sym_equals] = ACTIONS(4988), + [anon_sym_let] = ACTIONS(4988), + [anon_sym_orderby] = ACTIONS(4988), + [anon_sym_ascending] = ACTIONS(4988), + [anon_sym_descending] = ACTIONS(4988), + [anon_sym_group] = ACTIONS(4988), + [anon_sym_by] = ACTIONS(4988), + [anon_sym_select] = ACTIONS(4988), + [aux_sym_preproc_if_token1] = ACTIONS(4990), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -509145,25 +508605,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3532] = { - [sym_explicit_interface_specifier] = STATE(5884), - [sym__name] = STATE(6517), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(4096), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(4109), - [sym_type] = STATE(7075), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_identifier] = STATE(4087), - [sym__reserved_identifier] = STATE(3691), + [sym_modifier] = STATE(3655), [sym_preproc_region] = STATE(3532), [sym_preproc_endregion] = STATE(3532), [sym_preproc_line] = STATE(3532), @@ -509173,36 +508615,54 @@ 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), - [aux_sym_conversion_operator_declaration_repeat1] = STATE(5030), - [sym__identifier_token] = ACTIONS(2967), - [anon_sym_alias] = ACTIONS(2971), - [anon_sym_global] = ACTIONS(2971), - [anon_sym_LPAREN] = ACTIONS(2979), - [anon_sym_ref] = ACTIONS(5603), - [anon_sym_delegate] = ACTIONS(3454), - [anon_sym_file] = ACTIONS(2971), - [anon_sym_where] = ACTIONS(2971), - [anon_sym_notnull] = ACTIONS(2971), - [anon_sym_unmanaged] = ACTIONS(2971), - [anon_sym_operator] = ACTIONS(5605), - [anon_sym_checked] = ACTIONS(5605), - [anon_sym_scoped] = ACTIONS(5607), - [anon_sym_var] = ACTIONS(2999), - [sym_predefined_type] = ACTIONS(3001), - [anon_sym_yield] = ACTIONS(2971), - [anon_sym_when] = ACTIONS(2971), - [anon_sym_from] = ACTIONS(2971), - [anon_sym_into] = ACTIONS(2971), - [anon_sym_join] = ACTIONS(2971), - [anon_sym_on] = ACTIONS(2971), - [anon_sym_equals] = ACTIONS(2971), - [anon_sym_let] = ACTIONS(2971), - [anon_sym_orderby] = ACTIONS(2971), - [anon_sym_ascending] = ACTIONS(2971), - [anon_sym_descending] = ACTIONS(2971), - [anon_sym_group] = ACTIONS(2971), - [anon_sym_by] = ACTIONS(2971), - [anon_sym_select] = ACTIONS(2971), + [aux_sym__class_declaration_initializer_repeat2] = STATE(3532), + [sym__identifier_token] = ACTIONS(5192), + [anon_sym_extern] = ACTIONS(5593), + [anon_sym_alias] = ACTIONS(5192), + [anon_sym_global] = ACTIONS(5192), + [anon_sym_unsafe] = ACTIONS(5593), + [anon_sym_static] = ACTIONS(5593), + [anon_sym_abstract] = ACTIONS(5593), + [anon_sym_async] = ACTIONS(5593), + [anon_sym_const] = ACTIONS(5593), + [anon_sym_file] = ACTIONS(5593), + [anon_sym_fixed] = ACTIONS(5593), + [anon_sym_internal] = ACTIONS(5593), + [anon_sym_new] = ACTIONS(5593), + [anon_sym_override] = ACTIONS(5593), + [anon_sym_partial] = ACTIONS(5593), + [anon_sym_private] = ACTIONS(5593), + [anon_sym_protected] = ACTIONS(5593), + [anon_sym_public] = ACTIONS(5593), + [anon_sym_readonly] = ACTIONS(5593), + [anon_sym_required] = ACTIONS(5593), + [anon_sym_sealed] = ACTIONS(5593), + [anon_sym_virtual] = ACTIONS(5593), + [anon_sym_volatile] = ACTIONS(5593), + [anon_sym_where] = ACTIONS(5192), + [anon_sym_notnull] = ACTIONS(5192), + [anon_sym_unmanaged] = ACTIONS(5192), + [anon_sym_get] = ACTIONS(5192), + [anon_sym_set] = ACTIONS(5192), + [anon_sym_add] = ACTIONS(5192), + [anon_sym_remove] = ACTIONS(5192), + [anon_sym_init] = ACTIONS(5192), + [anon_sym_scoped] = ACTIONS(5192), + [anon_sym_var] = ACTIONS(5192), + [anon_sym_yield] = ACTIONS(5192), + [anon_sym_when] = 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_ascending] = ACTIONS(5192), + [anon_sym_descending] = ACTIONS(5192), + [anon_sym_group] = ACTIONS(5192), + [anon_sym_by] = ACTIONS(5192), + [anon_sym_select] = ACTIONS(5192), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -509215,6 +508675,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3533] = { + [sym__name] = STATE(4369), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(4068), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(4073), + [sym_type] = STATE(4565), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_identifier] = STATE(4081), + [sym__reserved_identifier] = STATE(3654), [sym_preproc_region] = STATE(3533), [sym_preproc_endregion] = STATE(3533), [sym_preproc_line] = STATE(3533), @@ -509224,55 +508702,37 @@ 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_EQ] = ACTIONS(5609), - [anon_sym_LBRACK] = ACTIONS(4860), - [anon_sym_LPAREN] = ACTIONS(4860), - [anon_sym_LT] = ACTIONS(4862), - [anon_sym_GT] = ACTIONS(4862), - [anon_sym_QMARK] = ACTIONS(4862), - [anon_sym_BANG] = ACTIONS(4862), - [anon_sym_PLUS_PLUS] = ACTIONS(4860), - [anon_sym_DASH_DASH] = ACTIONS(4860), - [anon_sym_PLUS] = ACTIONS(4862), - [anon_sym_DASH] = ACTIONS(4862), - [anon_sym_STAR] = ACTIONS(4862), - [anon_sym_SLASH] = ACTIONS(4862), - [anon_sym_PERCENT] = ACTIONS(4862), - [anon_sym_CARET] = ACTIONS(4862), - [anon_sym_PIPE] = ACTIONS(4862), - [anon_sym_AMP] = ACTIONS(4862), - [anon_sym_LT_LT] = ACTIONS(4862), - [anon_sym_GT_GT] = ACTIONS(4862), - [anon_sym_GT_GT_GT] = ACTIONS(4862), - [anon_sym_EQ_EQ] = ACTIONS(4860), - [anon_sym_BANG_EQ] = ACTIONS(4860), - [anon_sym_GT_EQ] = ACTIONS(4860), - [anon_sym_LT_EQ] = ACTIONS(4860), - [anon_sym_DOT] = ACTIONS(4862), - [anon_sym_switch] = ACTIONS(4860), - [anon_sym_DOT_DOT] = ACTIONS(4860), - [anon_sym_and] = ACTIONS(4860), - [anon_sym_or] = ACTIONS(4860), - [anon_sym_PLUS_EQ] = ACTIONS(5611), - [anon_sym_DASH_EQ] = ACTIONS(5611), - [anon_sym_STAR_EQ] = ACTIONS(5611), - [anon_sym_SLASH_EQ] = ACTIONS(5611), - [anon_sym_PERCENT_EQ] = ACTIONS(5611), - [anon_sym_AMP_EQ] = ACTIONS(5611), - [anon_sym_CARET_EQ] = ACTIONS(5611), - [anon_sym_PIPE_EQ] = ACTIONS(5611), - [anon_sym_LT_LT_EQ] = ACTIONS(5611), - [anon_sym_GT_GT_EQ] = ACTIONS(5611), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(5611), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(5611), - [anon_sym_AMP_AMP] = ACTIONS(4860), - [anon_sym_PIPE_PIPE] = ACTIONS(4860), - [anon_sym_QMARK_QMARK] = ACTIONS(4862), - [anon_sym_on] = ACTIONS(4860), - [anon_sym_as] = ACTIONS(4860), - [anon_sym_is] = ACTIONS(4860), - [anon_sym_DASH_GT] = ACTIONS(4860), - [anon_sym_with] = ACTIONS(4860), + [sym__identifier_token] = ACTIONS(2689), + [anon_sym_alias] = ACTIONS(2689), + [anon_sym_global] = ACTIONS(2689), + [anon_sym_LPAREN] = ACTIONS(2733), + [anon_sym_ref] = ACTIONS(2689), + [anon_sym_delegate] = ACTIONS(2689), + [anon_sym_file] = ACTIONS(2689), + [anon_sym_readonly] = ACTIONS(2689), + [anon_sym_in] = ACTIONS(2689), + [anon_sym_out] = ACTIONS(2689), + [anon_sym_where] = ACTIONS(2689), + [anon_sym_notnull] = ACTIONS(2689), + [anon_sym_unmanaged] = ACTIONS(2689), + [anon_sym_this] = ACTIONS(2689), + [anon_sym_scoped] = ACTIONS(2689), + [anon_sym_var] = ACTIONS(2689), + [sym_predefined_type] = ACTIONS(2689), + [anon_sym_yield] = ACTIONS(2689), + [anon_sym_when] = ACTIONS(2689), + [anon_sym_from] = ACTIONS(2689), + [anon_sym_into] = ACTIONS(2689), + [anon_sym_join] = ACTIONS(2689), + [anon_sym_on] = ACTIONS(2689), + [anon_sym_equals] = ACTIONS(2689), + [anon_sym_let] = ACTIONS(2689), + [anon_sym_orderby] = ACTIONS(2689), + [anon_sym_ascending] = ACTIONS(2689), + [anon_sym_descending] = ACTIONS(2689), + [anon_sym_group] = ACTIONS(2689), + [anon_sym_by] = ACTIONS(2689), + [anon_sym_select] = ACTIONS(2689), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -509294,65 +508754,65 @@ 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(4018), - [anon_sym_LBRACK] = ACTIONS(4066), - [anon_sym_COLON] = ACTIONS(4018), - [anon_sym_COMMA] = ACTIONS(4018), - [anon_sym_RBRACK] = ACTIONS(4018), - [anon_sym_LPAREN] = ACTIONS(4018), - [anon_sym_RPAREN] = ACTIONS(4018), - [anon_sym_LBRACE] = ACTIONS(4018), - [anon_sym_RBRACE] = ACTIONS(4018), - [anon_sym_LT] = ACTIONS(4016), - [anon_sym_GT] = ACTIONS(4016), - [anon_sym_in] = ACTIONS(4016), - [anon_sym_QMARK] = ACTIONS(4887), - [anon_sym_BANG] = ACTIONS(4016), - [anon_sym_PLUS_PLUS] = ACTIONS(4018), - [anon_sym_DASH_DASH] = ACTIONS(4018), - [anon_sym_PLUS] = ACTIONS(4016), - [anon_sym_DASH] = ACTIONS(4016), - [anon_sym_STAR] = ACTIONS(4072), - [anon_sym_SLASH] = ACTIONS(4016), - [anon_sym_PERCENT] = ACTIONS(4018), - [anon_sym_CARET] = ACTIONS(4018), - [anon_sym_PIPE] = ACTIONS(4016), - [anon_sym_AMP] = ACTIONS(4016), - [anon_sym_LT_LT] = ACTIONS(4018), - [anon_sym_GT_GT] = ACTIONS(4016), - [anon_sym_GT_GT_GT] = ACTIONS(4018), - [anon_sym_EQ_EQ] = ACTIONS(4018), - [anon_sym_BANG_EQ] = ACTIONS(4018), - [anon_sym_GT_EQ] = ACTIONS(4018), - [anon_sym_LT_EQ] = ACTIONS(4018), - [anon_sym_DOT] = ACTIONS(5579), - [anon_sym_EQ_GT] = ACTIONS(4018), - [anon_sym_switch] = ACTIONS(4018), - [anon_sym_DOT_DOT] = ACTIONS(4018), - [anon_sym_AMP_AMP] = ACTIONS(4018), - [anon_sym_PIPE_PIPE] = ACTIONS(4018), - [anon_sym_QMARK_QMARK] = ACTIONS(4018), - [anon_sym_into] = ACTIONS(4018), - [anon_sym_on] = ACTIONS(4018), - [anon_sym_equals] = ACTIONS(4018), - [anon_sym_by] = ACTIONS(4018), - [anon_sym_as] = ACTIONS(4018), - [anon_sym_is] = ACTIONS(4018), - [anon_sym_DASH_GT] = ACTIONS(4018), - [anon_sym_with] = ACTIONS(4018), - [aux_sym_preproc_if_token3] = ACTIONS(4018), - [aux_sym_preproc_else_token1] = ACTIONS(4018), - [aux_sym_preproc_elif_token1] = 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), + [anon_sym_EQ] = ACTIONS(5596), + [anon_sym_LBRACK] = ACTIONS(4811), + [anon_sym_COLON] = ACTIONS(4811), + [anon_sym_COMMA] = ACTIONS(4811), + [anon_sym_LPAREN] = ACTIONS(4811), + [anon_sym_LT] = ACTIONS(4813), + [anon_sym_GT] = ACTIONS(4813), + [anon_sym_QMARK] = ACTIONS(4813), + [anon_sym_BANG] = ACTIONS(4813), + [anon_sym_PLUS_PLUS] = ACTIONS(4811), + [anon_sym_DASH_DASH] = ACTIONS(4811), + [anon_sym_PLUS] = ACTIONS(4813), + [anon_sym_DASH] = ACTIONS(4813), + [anon_sym_STAR] = ACTIONS(4813), + [anon_sym_SLASH] = ACTIONS(4813), + [anon_sym_PERCENT] = ACTIONS(4813), + [anon_sym_CARET] = ACTIONS(4813), + [anon_sym_PIPE] = ACTIONS(4813), + [anon_sym_AMP] = ACTIONS(4813), + [anon_sym_LT_LT] = ACTIONS(4813), + [anon_sym_GT_GT] = ACTIONS(4813), + [anon_sym_GT_GT_GT] = ACTIONS(4813), + [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(4813), + [anon_sym_switch] = ACTIONS(4811), + [anon_sym_DOT_DOT] = ACTIONS(4811), + [anon_sym_PLUS_EQ] = ACTIONS(5598), + [anon_sym_DASH_EQ] = ACTIONS(5598), + [anon_sym_STAR_EQ] = ACTIONS(5598), + [anon_sym_SLASH_EQ] = ACTIONS(5598), + [anon_sym_PERCENT_EQ] = ACTIONS(5598), + [anon_sym_AMP_EQ] = ACTIONS(5598), + [anon_sym_CARET_EQ] = ACTIONS(5598), + [anon_sym_PIPE_EQ] = ACTIONS(5598), + [anon_sym_LT_LT_EQ] = ACTIONS(5598), + [anon_sym_GT_GT_EQ] = ACTIONS(5598), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(5598), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(5598), + [anon_sym_AMP_AMP] = ACTIONS(4811), + [anon_sym_PIPE_PIPE] = ACTIONS(4811), + [anon_sym_QMARK_QMARK] = ACTIONS(4813), + [anon_sym_as] = ACTIONS(4811), + [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), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_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(4811), }, [3535] = { [sym_preproc_region] = STATE(3535), @@ -509364,55 +508824,55 @@ 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_EQ] = ACTIONS(5613), - [anon_sym_LBRACK] = ACTIONS(4860), - [anon_sym_LPAREN] = ACTIONS(4860), - [anon_sym_LT] = ACTIONS(4862), - [anon_sym_GT] = ACTIONS(4862), - [anon_sym_QMARK] = ACTIONS(4862), - [anon_sym_BANG] = ACTIONS(4862), - [anon_sym_PLUS_PLUS] = ACTIONS(4860), - [anon_sym_DASH_DASH] = ACTIONS(4860), - [anon_sym_PLUS] = ACTIONS(4862), - [anon_sym_DASH] = ACTIONS(4862), - [anon_sym_STAR] = ACTIONS(4862), - [anon_sym_SLASH] = ACTIONS(4862), - [anon_sym_PERCENT] = ACTIONS(4862), - [anon_sym_CARET] = ACTIONS(4862), - [anon_sym_PIPE] = ACTIONS(4862), - [anon_sym_AMP] = ACTIONS(4862), - [anon_sym_LT_LT] = ACTIONS(4862), - [anon_sym_GT_GT] = ACTIONS(4862), - [anon_sym_GT_GT_GT] = ACTIONS(4862), - [anon_sym_EQ_EQ] = ACTIONS(4860), - [anon_sym_BANG_EQ] = ACTIONS(4860), - [anon_sym_GT_EQ] = ACTIONS(4860), - [anon_sym_LT_EQ] = ACTIONS(4860), - [anon_sym_DOT] = ACTIONS(4862), - [anon_sym_EQ_GT] = ACTIONS(4860), - [anon_sym_switch] = ACTIONS(4860), - [anon_sym_DOT_DOT] = ACTIONS(4860), - [anon_sym_and] = ACTIONS(4860), - [anon_sym_or] = ACTIONS(4860), - [anon_sym_PLUS_EQ] = ACTIONS(5615), - [anon_sym_DASH_EQ] = ACTIONS(5615), - [anon_sym_STAR_EQ] = ACTIONS(5615), - [anon_sym_SLASH_EQ] = ACTIONS(5615), - [anon_sym_PERCENT_EQ] = ACTIONS(5615), - [anon_sym_AMP_EQ] = ACTIONS(5615), - [anon_sym_CARET_EQ] = ACTIONS(5615), - [anon_sym_PIPE_EQ] = ACTIONS(5615), - [anon_sym_LT_LT_EQ] = ACTIONS(5615), - [anon_sym_GT_GT_EQ] = ACTIONS(5615), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(5615), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(5615), - [anon_sym_AMP_AMP] = ACTIONS(4860), - [anon_sym_PIPE_PIPE] = ACTIONS(4860), - [anon_sym_QMARK_QMARK] = ACTIONS(4862), - [anon_sym_as] = ACTIONS(4860), - [anon_sym_is] = ACTIONS(4860), - [anon_sym_DASH_GT] = ACTIONS(4860), - [anon_sym_with] = ACTIONS(4860), + [anon_sym_EQ] = ACTIONS(5490), + [anon_sym_LBRACK] = ACTIONS(4811), + [anon_sym_COLON] = ACTIONS(4811), + [anon_sym_COMMA] = ACTIONS(4811), + [anon_sym_LPAREN] = ACTIONS(4811), + [anon_sym_RPAREN] = ACTIONS(5600), + [anon_sym_LT] = ACTIONS(4813), + [anon_sym_GT] = ACTIONS(4813), + [anon_sym_QMARK] = ACTIONS(4813), + [anon_sym_BANG] = ACTIONS(4813), + [anon_sym_PLUS_PLUS] = ACTIONS(4811), + [anon_sym_DASH_DASH] = ACTIONS(4811), + [anon_sym_PLUS] = ACTIONS(4813), + [anon_sym_DASH] = ACTIONS(4813), + [anon_sym_STAR] = ACTIONS(4813), + [anon_sym_SLASH] = ACTIONS(4813), + [anon_sym_PERCENT] = ACTIONS(4813), + [anon_sym_CARET] = ACTIONS(4813), + [anon_sym_PIPE] = ACTIONS(4813), + [anon_sym_AMP] = ACTIONS(4813), + [anon_sym_LT_LT] = ACTIONS(4813), + [anon_sym_GT_GT] = ACTIONS(4813), + [anon_sym_GT_GT_GT] = ACTIONS(4813), + [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(4813), + [anon_sym_switch] = ACTIONS(4811), + [anon_sym_DOT_DOT] = ACTIONS(4811), + [anon_sym_PLUS_EQ] = ACTIONS(5492), + [anon_sym_DASH_EQ] = ACTIONS(5492), + [anon_sym_STAR_EQ] = ACTIONS(5492), + [anon_sym_SLASH_EQ] = ACTIONS(5492), + [anon_sym_PERCENT_EQ] = ACTIONS(5492), + [anon_sym_AMP_EQ] = ACTIONS(5492), + [anon_sym_CARET_EQ] = ACTIONS(5492), + [anon_sym_PIPE_EQ] = ACTIONS(5492), + [anon_sym_LT_LT_EQ] = ACTIONS(5492), + [anon_sym_GT_GT_EQ] = ACTIONS(5492), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(5492), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(5492), + [anon_sym_AMP_AMP] = ACTIONS(4811), + [anon_sym_PIPE_PIPE] = ACTIONS(4811), + [anon_sym_QMARK_QMARK] = ACTIONS(4813), + [anon_sym_as] = ACTIONS(4811), + [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), @@ -509425,6 +508885,25 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3536] = { + [sym_explicit_interface_specifier] = STATE(5886), + [sym__name] = STATE(6580), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(4068), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(4073), + [sym_type] = STATE(7215), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_identifier] = STATE(4081), + [sym__reserved_identifier] = STATE(3654), [sym_preproc_region] = STATE(3536), [sym_preproc_endregion] = STATE(3536), [sym_preproc_line] = STATE(3536), @@ -509434,55 +508913,36 @@ 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), - [sym__identifier_token] = ACTIONS(5005), - [anon_sym_extern] = ACTIONS(5005), - [anon_sym_alias] = ACTIONS(5005), - [anon_sym_global] = ACTIONS(5005), - [anon_sym_unsafe] = ACTIONS(5005), - [anon_sym_static] = ACTIONS(5005), - [anon_sym_LBRACK] = ACTIONS(5007), - [anon_sym_abstract] = ACTIONS(5005), - [anon_sym_async] = ACTIONS(5005), - [anon_sym_const] = ACTIONS(5005), - [anon_sym_file] = ACTIONS(5005), - [anon_sym_fixed] = ACTIONS(5005), - [anon_sym_internal] = ACTIONS(5005), - [anon_sym_new] = ACTIONS(5005), - [anon_sym_override] = ACTIONS(5005), - [anon_sym_partial] = ACTIONS(5005), - [anon_sym_private] = ACTIONS(5005), - [anon_sym_protected] = ACTIONS(5005), - [anon_sym_public] = ACTIONS(5005), - [anon_sym_readonly] = ACTIONS(5005), - [anon_sym_required] = ACTIONS(5005), - [anon_sym_sealed] = ACTIONS(5005), - [anon_sym_virtual] = ACTIONS(5005), - [anon_sym_volatile] = ACTIONS(5005), - [anon_sym_where] = ACTIONS(5005), - [anon_sym_notnull] = ACTIONS(5005), - [anon_sym_unmanaged] = ACTIONS(5005), - [anon_sym_get] = ACTIONS(5005), - [anon_sym_set] = ACTIONS(5005), - [anon_sym_add] = ACTIONS(5005), - [anon_sym_remove] = ACTIONS(5005), - [anon_sym_init] = ACTIONS(5005), - [anon_sym_scoped] = ACTIONS(5005), - [anon_sym_var] = ACTIONS(5005), - [anon_sym_yield] = ACTIONS(5005), - [anon_sym_when] = ACTIONS(5005), - [anon_sym_from] = ACTIONS(5005), - [anon_sym_into] = ACTIONS(5005), - [anon_sym_join] = ACTIONS(5005), - [anon_sym_on] = ACTIONS(5005), - [anon_sym_equals] = ACTIONS(5005), - [anon_sym_let] = ACTIONS(5005), - [anon_sym_orderby] = ACTIONS(5005), - [anon_sym_ascending] = ACTIONS(5005), - [anon_sym_descending] = ACTIONS(5005), - [anon_sym_group] = ACTIONS(5005), - [anon_sym_by] = ACTIONS(5005), - [anon_sym_select] = ACTIONS(5005), - [aux_sym_preproc_if_token1] = ACTIONS(5007), + [aux_sym_conversion_operator_declaration_repeat1] = STATE(5011), + [sym__identifier_token] = ACTIONS(2965), + [anon_sym_alias] = ACTIONS(2969), + [anon_sym_global] = ACTIONS(2969), + [anon_sym_LPAREN] = ACTIONS(2977), + [anon_sym_ref] = ACTIONS(5577), + [anon_sym_delegate] = ACTIONS(3438), + [anon_sym_file] = ACTIONS(2969), + [anon_sym_where] = ACTIONS(2969), + [anon_sym_notnull] = ACTIONS(2969), + [anon_sym_unmanaged] = ACTIONS(2969), + [anon_sym_operator] = ACTIONS(5579), + [anon_sym_checked] = ACTIONS(5579), + [anon_sym_scoped] = ACTIONS(5581), + [anon_sym_var] = ACTIONS(2995), + [sym_predefined_type] = ACTIONS(2997), + [anon_sym_yield] = ACTIONS(2969), + [anon_sym_when] = ACTIONS(2969), + [anon_sym_from] = ACTIONS(2969), + [anon_sym_into] = ACTIONS(2969), + [anon_sym_join] = ACTIONS(2969), + [anon_sym_on] = ACTIONS(2969), + [anon_sym_equals] = ACTIONS(2969), + [anon_sym_let] = ACTIONS(2969), + [anon_sym_orderby] = ACTIONS(2969), + [anon_sym_ascending] = ACTIONS(2969), + [anon_sym_descending] = ACTIONS(2969), + [anon_sym_group] = ACTIONS(2969), + [anon_sym_by] = ACTIONS(2969), + [anon_sym_select] = ACTIONS(2969), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -509495,25 +508955,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3537] = { - [sym_explicit_interface_specifier] = STATE(5884), - [sym__name] = STATE(6517), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(4096), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(4109), - [sym_type] = STATE(7271), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_identifier] = STATE(4087), - [sym__reserved_identifier] = STATE(3691), [sym_preproc_region] = STATE(3537), [sym_preproc_endregion] = STATE(3537), [sym_preproc_line] = STATE(3537), @@ -509523,36 +508964,55 @@ 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), - [aux_sym_conversion_operator_declaration_repeat1] = STATE(5030), - [sym__identifier_token] = ACTIONS(2967), - [anon_sym_alias] = ACTIONS(2971), - [anon_sym_global] = ACTIONS(2971), - [anon_sym_LPAREN] = ACTIONS(2979), - [anon_sym_ref] = ACTIONS(5603), - [anon_sym_delegate] = ACTIONS(3454), - [anon_sym_file] = ACTIONS(2971), - [anon_sym_where] = ACTIONS(2971), - [anon_sym_notnull] = ACTIONS(2971), - [anon_sym_unmanaged] = ACTIONS(2971), - [anon_sym_operator] = ACTIONS(5605), - [anon_sym_checked] = ACTIONS(5605), - [anon_sym_scoped] = ACTIONS(5607), - [anon_sym_var] = ACTIONS(2999), - [sym_predefined_type] = ACTIONS(3001), - [anon_sym_yield] = ACTIONS(2971), - [anon_sym_when] = ACTIONS(2971), - [anon_sym_from] = ACTIONS(2971), - [anon_sym_into] = ACTIONS(2971), - [anon_sym_join] = ACTIONS(2971), - [anon_sym_on] = ACTIONS(2971), - [anon_sym_equals] = ACTIONS(2971), - [anon_sym_let] = ACTIONS(2971), - [anon_sym_orderby] = ACTIONS(2971), - [anon_sym_ascending] = ACTIONS(2971), - [anon_sym_descending] = ACTIONS(2971), - [anon_sym_group] = ACTIONS(2971), - [anon_sym_by] = ACTIONS(2971), - [anon_sym_select] = ACTIONS(2971), + [sym__identifier_token] = ACTIONS(5134), + [anon_sym_extern] = ACTIONS(5134), + [anon_sym_alias] = ACTIONS(5134), + [anon_sym_global] = ACTIONS(5134), + [anon_sym_unsafe] = ACTIONS(5134), + [anon_sym_static] = ACTIONS(5134), + [anon_sym_LBRACK] = ACTIONS(5136), + [anon_sym_abstract] = ACTIONS(5134), + [anon_sym_async] = ACTIONS(5134), + [anon_sym_const] = ACTIONS(5134), + [anon_sym_file] = ACTIONS(5134), + [anon_sym_fixed] = ACTIONS(5134), + [anon_sym_internal] = ACTIONS(5134), + [anon_sym_new] = ACTIONS(5134), + [anon_sym_override] = ACTIONS(5134), + [anon_sym_partial] = ACTIONS(5134), + [anon_sym_private] = ACTIONS(5134), + [anon_sym_protected] = ACTIONS(5134), + [anon_sym_public] = ACTIONS(5134), + [anon_sym_readonly] = ACTIONS(5134), + [anon_sym_required] = ACTIONS(5134), + [anon_sym_sealed] = ACTIONS(5134), + [anon_sym_virtual] = ACTIONS(5134), + [anon_sym_volatile] = ACTIONS(5134), + [anon_sym_where] = ACTIONS(5134), + [anon_sym_notnull] = ACTIONS(5134), + [anon_sym_unmanaged] = ACTIONS(5134), + [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(5134), + [anon_sym_var] = ACTIONS(5134), + [anon_sym_yield] = ACTIONS(5134), + [anon_sym_when] = ACTIONS(5134), + [anon_sym_from] = ACTIONS(5134), + [anon_sym_into] = ACTIONS(5134), + [anon_sym_join] = ACTIONS(5134), + [anon_sym_on] = ACTIONS(5134), + [anon_sym_equals] = ACTIONS(5134), + [anon_sym_let] = ACTIONS(5134), + [anon_sym_orderby] = ACTIONS(5134), + [anon_sym_ascending] = ACTIONS(5134), + [anon_sym_descending] = ACTIONS(5134), + [anon_sym_group] = ACTIONS(5134), + [anon_sym_by] = ACTIONS(5134), + [anon_sym_select] = ACTIONS(5134), + [aux_sym_preproc_if_token1] = ACTIONS(5136), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -509565,6 +509025,25 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3538] = { + [sym_explicit_interface_specifier] = STATE(5886), + [sym__name] = STATE(6580), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(4068), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(4073), + [sym_type] = STATE(7030), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_identifier] = STATE(4081), + [sym__reserved_identifier] = STATE(3654), [sym_preproc_region] = STATE(3538), [sym_preproc_endregion] = STATE(3538), [sym_preproc_line] = STATE(3538), @@ -509574,55 +509053,36 @@ 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), - [sym__identifier_token] = ACTIONS(4749), - [anon_sym_extern] = ACTIONS(4749), - [anon_sym_alias] = ACTIONS(4749), - [anon_sym_global] = ACTIONS(4749), - [anon_sym_unsafe] = ACTIONS(4749), - [anon_sym_static] = ACTIONS(4749), - [anon_sym_LBRACK] = ACTIONS(4751), - [anon_sym_abstract] = ACTIONS(4749), - [anon_sym_async] = ACTIONS(4749), - [anon_sym_const] = ACTIONS(4749), - [anon_sym_file] = ACTIONS(4749), - [anon_sym_fixed] = ACTIONS(4749), - [anon_sym_internal] = ACTIONS(4749), - [anon_sym_new] = ACTIONS(4749), - [anon_sym_override] = ACTIONS(4749), - [anon_sym_partial] = ACTIONS(4749), - [anon_sym_private] = ACTIONS(4749), - [anon_sym_protected] = ACTIONS(4749), - [anon_sym_public] = ACTIONS(4749), - [anon_sym_readonly] = ACTIONS(4749), - [anon_sym_required] = ACTIONS(4749), - [anon_sym_sealed] = ACTIONS(4749), - [anon_sym_virtual] = ACTIONS(4749), - [anon_sym_volatile] = ACTIONS(4749), - [anon_sym_where] = ACTIONS(4749), - [anon_sym_notnull] = ACTIONS(4749), - [anon_sym_unmanaged] = ACTIONS(4749), - [anon_sym_get] = ACTIONS(4749), - [anon_sym_set] = ACTIONS(4749), - [anon_sym_add] = ACTIONS(4749), - [anon_sym_remove] = ACTIONS(4749), - [anon_sym_init] = ACTIONS(4749), - [anon_sym_scoped] = ACTIONS(4749), - [anon_sym_var] = ACTIONS(4749), - [anon_sym_yield] = ACTIONS(4749), - [anon_sym_when] = ACTIONS(4749), - [anon_sym_from] = ACTIONS(4749), - [anon_sym_into] = ACTIONS(4749), - [anon_sym_join] = ACTIONS(4749), - [anon_sym_on] = ACTIONS(4749), - [anon_sym_equals] = ACTIONS(4749), - [anon_sym_let] = ACTIONS(4749), - [anon_sym_orderby] = ACTIONS(4749), - [anon_sym_ascending] = ACTIONS(4749), - [anon_sym_descending] = ACTIONS(4749), - [anon_sym_group] = ACTIONS(4749), - [anon_sym_by] = ACTIONS(4749), - [anon_sym_select] = ACTIONS(4749), - [aux_sym_preproc_if_token1] = ACTIONS(4751), + [aux_sym_conversion_operator_declaration_repeat1] = STATE(5011), + [sym__identifier_token] = ACTIONS(2965), + [anon_sym_alias] = ACTIONS(2969), + [anon_sym_global] = ACTIONS(2969), + [anon_sym_LPAREN] = ACTIONS(2977), + [anon_sym_ref] = ACTIONS(5577), + [anon_sym_delegate] = ACTIONS(3438), + [anon_sym_file] = ACTIONS(2969), + [anon_sym_where] = ACTIONS(2969), + [anon_sym_notnull] = ACTIONS(2969), + [anon_sym_unmanaged] = ACTIONS(2969), + [anon_sym_operator] = ACTIONS(5579), + [anon_sym_checked] = ACTIONS(5579), + [anon_sym_scoped] = ACTIONS(5581), + [anon_sym_var] = ACTIONS(2995), + [sym_predefined_type] = ACTIONS(2997), + [anon_sym_yield] = ACTIONS(2969), + [anon_sym_when] = ACTIONS(2969), + [anon_sym_from] = ACTIONS(2969), + [anon_sym_into] = ACTIONS(2969), + [anon_sym_join] = ACTIONS(2969), + [anon_sym_on] = ACTIONS(2969), + [anon_sym_equals] = ACTIONS(2969), + [anon_sym_let] = ACTIONS(2969), + [anon_sym_orderby] = ACTIONS(2969), + [anon_sym_ascending] = ACTIONS(2969), + [anon_sym_descending] = ACTIONS(2969), + [anon_sym_group] = ACTIONS(2969), + [anon_sym_by] = ACTIONS(2969), + [anon_sym_select] = ACTIONS(2969), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -509635,26 +509095,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3539] = { - [sym_parameter_list] = STATE(7238), - [sym_block] = STATE(3118), - [sym__name] = STATE(4390), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(4096), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(4109), - [sym_type] = STATE(6100), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_identifier] = STATE(4087), - [sym__reserved_identifier] = STATE(3691), [sym_preproc_region] = STATE(3539), [sym_preproc_endregion] = STATE(3539), [sym_preproc_line] = STATE(3539), @@ -509664,35 +509104,55 @@ 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), - [sym__identifier_token] = ACTIONS(2967), - [anon_sym_alias] = ACTIONS(2971), - [anon_sym_global] = ACTIONS(2971), - [anon_sym_LPAREN] = ACTIONS(3794), - [anon_sym_ref] = ACTIONS(3452), - [anon_sym_LBRACE] = ACTIONS(5617), - [anon_sym_delegate] = ACTIONS(3454), - [anon_sym_file] = ACTIONS(2971), - [anon_sym_where] = ACTIONS(2971), - [anon_sym_notnull] = ACTIONS(2971), - [anon_sym_unmanaged] = ACTIONS(2971), - [anon_sym_STAR] = ACTIONS(5619), - [anon_sym_scoped] = ACTIONS(2997), - [anon_sym_var] = ACTIONS(2999), - [sym_predefined_type] = ACTIONS(3001), - [anon_sym_yield] = ACTIONS(2971), - [anon_sym_when] = ACTIONS(2971), - [anon_sym_from] = ACTIONS(2971), - [anon_sym_into] = ACTIONS(2971), - [anon_sym_join] = ACTIONS(2971), - [anon_sym_on] = ACTIONS(2971), - [anon_sym_equals] = ACTIONS(2971), - [anon_sym_let] = ACTIONS(2971), - [anon_sym_orderby] = ACTIONS(2971), - [anon_sym_ascending] = ACTIONS(2971), - [anon_sym_descending] = ACTIONS(2971), - [anon_sym_group] = ACTIONS(2971), - [anon_sym_by] = ACTIONS(2971), - [anon_sym_select] = ACTIONS(2971), + [anon_sym_EQ] = ACTIONS(5602), + [anon_sym_LBRACK] = ACTIONS(4811), + [anon_sym_COLON] = ACTIONS(4811), + [anon_sym_LPAREN] = ACTIONS(4811), + [anon_sym_LT] = ACTIONS(4813), + [anon_sym_GT] = ACTIONS(4813), + [anon_sym_QMARK] = ACTIONS(4813), + [anon_sym_BANG] = ACTIONS(4813), + [anon_sym_PLUS_PLUS] = ACTIONS(4811), + [anon_sym_DASH_DASH] = ACTIONS(4811), + [anon_sym_PLUS] = ACTIONS(4813), + [anon_sym_DASH] = ACTIONS(4813), + [anon_sym_STAR] = ACTIONS(4813), + [anon_sym_SLASH] = ACTIONS(4813), + [anon_sym_PERCENT] = ACTIONS(4813), + [anon_sym_CARET] = ACTIONS(4813), + [anon_sym_PIPE] = ACTIONS(4813), + [anon_sym_AMP] = ACTIONS(4813), + [anon_sym_LT_LT] = ACTIONS(4813), + [anon_sym_GT_GT] = ACTIONS(4813), + [anon_sym_GT_GT_GT] = ACTIONS(4813), + [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(4813), + [anon_sym_switch] = ACTIONS(4811), + [anon_sym_DOT_DOT] = ACTIONS(4811), + [anon_sym_and] = ACTIONS(4811), + [anon_sym_or] = ACTIONS(4811), + [anon_sym_PLUS_EQ] = ACTIONS(5604), + [anon_sym_DASH_EQ] = ACTIONS(5604), + [anon_sym_STAR_EQ] = ACTIONS(5604), + [anon_sym_SLASH_EQ] = ACTIONS(5604), + [anon_sym_PERCENT_EQ] = ACTIONS(5604), + [anon_sym_AMP_EQ] = ACTIONS(5604), + [anon_sym_CARET_EQ] = ACTIONS(5604), + [anon_sym_PIPE_EQ] = ACTIONS(5604), + [anon_sym_LT_LT_EQ] = ACTIONS(5604), + [anon_sym_GT_GT_EQ] = ACTIONS(5604), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(5604), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(5604), + [anon_sym_AMP_AMP] = ACTIONS(4811), + [anon_sym_PIPE_PIPE] = ACTIONS(4811), + [anon_sym_QMARK_QMARK] = ACTIONS(4813), + [anon_sym_as] = ACTIONS(4811), + [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), @@ -509705,24 +509165,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3540] = { - [sym__name] = STATE(4390), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(4096), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(4109), - [sym_type] = STATE(4632), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_identifier] = STATE(4087), - [sym__reserved_identifier] = STATE(3691), [sym_preproc_region] = STATE(3540), [sym_preproc_endregion] = STATE(3540), [sym_preproc_line] = STATE(3540), @@ -509732,37 +509174,54 @@ 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), - [sym__identifier_token] = ACTIONS(2693), - [anon_sym_alias] = ACTIONS(2693), - [anon_sym_global] = ACTIONS(2693), - [anon_sym_LPAREN] = ACTIONS(2733), - [anon_sym_ref] = ACTIONS(2693), - [anon_sym_delegate] = ACTIONS(2693), - [anon_sym_file] = ACTIONS(2693), - [anon_sym_readonly] = ACTIONS(2693), - [anon_sym_in] = ACTIONS(2693), - [anon_sym_out] = ACTIONS(2693), - [anon_sym_where] = ACTIONS(2693), - [anon_sym_notnull] = ACTIONS(2693), - [anon_sym_unmanaged] = ACTIONS(2693), - [anon_sym_this] = ACTIONS(2693), - [anon_sym_scoped] = ACTIONS(2693), - [anon_sym_var] = ACTIONS(2693), - [sym_predefined_type] = ACTIONS(2693), - [anon_sym_yield] = ACTIONS(2693), - [anon_sym_when] = ACTIONS(2693), - [anon_sym_from] = ACTIONS(2693), - [anon_sym_into] = ACTIONS(2693), - [anon_sym_join] = ACTIONS(2693), - [anon_sym_on] = ACTIONS(2693), - [anon_sym_equals] = ACTIONS(2693), - [anon_sym_let] = ACTIONS(2693), - [anon_sym_orderby] = ACTIONS(2693), - [anon_sym_ascending] = ACTIONS(2693), - [anon_sym_descending] = ACTIONS(2693), - [anon_sym_group] = ACTIONS(2693), - [anon_sym_by] = ACTIONS(2693), - [anon_sym_select] = ACTIONS(2693), + [anon_sym_EQ] = ACTIONS(5520), + [anon_sym_LBRACK] = ACTIONS(4811), + [anon_sym_COMMA] = ACTIONS(4811), + [anon_sym_LPAREN] = ACTIONS(4811), + [anon_sym_RPAREN] = ACTIONS(5606), + [anon_sym_LT] = ACTIONS(4813), + [anon_sym_GT] = ACTIONS(4813), + [anon_sym_QMARK] = ACTIONS(4813), + [anon_sym_BANG] = ACTIONS(4813), + [anon_sym_PLUS_PLUS] = ACTIONS(4811), + [anon_sym_DASH_DASH] = ACTIONS(4811), + [anon_sym_PLUS] = ACTIONS(4813), + [anon_sym_DASH] = ACTIONS(4813), + [anon_sym_STAR] = ACTIONS(4813), + [anon_sym_SLASH] = ACTIONS(4813), + [anon_sym_PERCENT] = ACTIONS(4813), + [anon_sym_CARET] = ACTIONS(4813), + [anon_sym_PIPE] = ACTIONS(4813), + [anon_sym_AMP] = ACTIONS(4813), + [anon_sym_LT_LT] = ACTIONS(4813), + [anon_sym_GT_GT] = ACTIONS(4813), + [anon_sym_GT_GT_GT] = ACTIONS(4813), + [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(4813), + [anon_sym_switch] = ACTIONS(4811), + [anon_sym_DOT_DOT] = ACTIONS(4811), + [anon_sym_PLUS_EQ] = ACTIONS(5522), + [anon_sym_DASH_EQ] = ACTIONS(5522), + [anon_sym_STAR_EQ] = ACTIONS(5522), + [anon_sym_SLASH_EQ] = ACTIONS(5522), + [anon_sym_PERCENT_EQ] = ACTIONS(5522), + [anon_sym_AMP_EQ] = ACTIONS(5522), + [anon_sym_CARET_EQ] = ACTIONS(5522), + [anon_sym_PIPE_EQ] = ACTIONS(5522), + [anon_sym_LT_LT_EQ] = ACTIONS(5522), + [anon_sym_GT_GT_EQ] = ACTIONS(5522), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(5522), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(5522), + [anon_sym_AMP_AMP] = ACTIONS(4811), + [anon_sym_PIPE_PIPE] = ACTIONS(4811), + [anon_sym_QMARK_QMARK] = ACTIONS(4813), + [anon_sym_as] = ACTIONS(4811), + [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), @@ -509775,7 +509234,25 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3541] = { - [sym_modifier] = STATE(3652), + [sym_argument_list] = STATE(2922), + [sym__name] = STATE(3086), + [sym_alias_qualified_name] = STATE(2976), + [sym__simple_name] = STATE(2976), + [sym_qualified_name] = STATE(2976), + [sym_generic_name] = STATE(3030), + [sym_type] = STATE(3982), + [sym_implicit_type] = STATE(2977), + [sym_array_type] = STATE(2908), + [sym__array_base_type] = STATE(7236), + [sym_nullable_type] = STATE(2979), + [sym_pointer_type] = STATE(2979), + [sym__pointer_base_type] = STATE(7622), + [sym_function_pointer_type] = STATE(2979), + [sym_ref_type] = STATE(2977), + [sym_scoped_type] = STATE(2977), + [sym_tuple_type] = STATE(2980), + [sym_identifier] = STATE(2927), + [sym__reserved_identifier] = STATE(2916), [sym_preproc_region] = STATE(3541), [sym_preproc_endregion] = STATE(3541), [sym_preproc_line] = STATE(3541), @@ -509785,54 +509262,35 @@ 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), - [aux_sym__class_declaration_initializer_repeat2] = STATE(3541), - [sym__identifier_token] = ACTIONS(5222), - [anon_sym_extern] = ACTIONS(5621), - [anon_sym_alias] = ACTIONS(5222), - [anon_sym_global] = ACTIONS(5222), - [anon_sym_unsafe] = ACTIONS(5621), - [anon_sym_static] = ACTIONS(5621), - [anon_sym_abstract] = ACTIONS(5621), - [anon_sym_async] = ACTIONS(5621), - [anon_sym_const] = ACTIONS(5621), - [anon_sym_file] = ACTIONS(5621), - [anon_sym_fixed] = ACTIONS(5621), - [anon_sym_internal] = ACTIONS(5621), - [anon_sym_new] = ACTIONS(5621), - [anon_sym_override] = ACTIONS(5621), - [anon_sym_partial] = ACTIONS(5621), - [anon_sym_private] = ACTIONS(5621), - [anon_sym_protected] = ACTIONS(5621), - [anon_sym_public] = ACTIONS(5621), - [anon_sym_readonly] = ACTIONS(5621), - [anon_sym_required] = ACTIONS(5621), - [anon_sym_sealed] = ACTIONS(5621), - [anon_sym_virtual] = ACTIONS(5621), - [anon_sym_volatile] = ACTIONS(5621), - [anon_sym_where] = ACTIONS(5222), - [anon_sym_notnull] = ACTIONS(5222), - [anon_sym_unmanaged] = ACTIONS(5222), - [anon_sym_get] = ACTIONS(5222), - [anon_sym_set] = ACTIONS(5222), - [anon_sym_add] = ACTIONS(5222), - [anon_sym_remove] = ACTIONS(5222), - [anon_sym_init] = ACTIONS(5222), - [anon_sym_scoped] = ACTIONS(5222), - [anon_sym_var] = ACTIONS(5222), - [anon_sym_yield] = ACTIONS(5222), - [anon_sym_when] = 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_ascending] = ACTIONS(5222), - [anon_sym_descending] = ACTIONS(5222), - [anon_sym_group] = ACTIONS(5222), - [anon_sym_by] = ACTIONS(5222), - [anon_sym_select] = ACTIONS(5222), + [sym__identifier_token] = ACTIONS(3871), + [anon_sym_alias] = ACTIONS(3873), + [anon_sym_global] = ACTIONS(3873), + [anon_sym_LBRACK] = ACTIONS(4009), + [anon_sym_LPAREN] = ACTIONS(5608), + [anon_sym_ref] = ACTIONS(4160), + [anon_sym_LBRACE] = ACTIONS(4013), + [anon_sym_delegate] = ACTIONS(4015), + [anon_sym_file] = ACTIONS(3873), + [anon_sym_where] = ACTIONS(3873), + [anon_sym_notnull] = ACTIONS(3873), + [anon_sym_unmanaged] = ACTIONS(3873), + [anon_sym_scoped] = ACTIONS(5610), + [anon_sym_var] = ACTIONS(4019), + [sym_predefined_type] = ACTIONS(4021), + [anon_sym_yield] = ACTIONS(3873), + [anon_sym_when] = ACTIONS(3873), + [anon_sym_from] = ACTIONS(3873), + [anon_sym_into] = ACTIONS(3873), + [anon_sym_join] = ACTIONS(3873), + [anon_sym_on] = ACTIONS(3873), + [anon_sym_equals] = ACTIONS(3873), + [anon_sym_let] = ACTIONS(3873), + [anon_sym_orderby] = ACTIONS(3873), + [anon_sym_ascending] = ACTIONS(3873), + [anon_sym_descending] = ACTIONS(3873), + [anon_sym_group] = ACTIONS(3873), + [anon_sym_by] = ACTIONS(3873), + [anon_sym_select] = ACTIONS(3873), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -509845,8 +509303,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3542] = { - [sym_argument_list] = STATE(3602), - [sym_initializer_expression] = STATE(3807), + [sym__name] = STATE(6400), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(4068), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(4073), + [sym_type] = STATE(6926), + [sym_implicit_type] = STATE(7035), + [sym_array_type] = STATE(6706), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7421), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(7035), + [sym_scoped_type] = STATE(7035), + [sym_tuple_type] = STATE(6601), + [sym_identifier] = STATE(4081), + [sym__reserved_identifier] = STATE(3654), [sym_preproc_region] = STATE(3542), [sym_preproc_endregion] = STATE(3542), [sym_preproc_line] = STATE(3542), @@ -509856,53 +509330,36 @@ 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_LBRACK] = ACTIONS(4802), - [anon_sym_COMMA] = ACTIONS(4802), - [anon_sym_LPAREN] = ACTIONS(5624), - [anon_sym_LBRACE] = ACTIONS(1633), - [anon_sym_LT] = ACTIONS(4806), - [anon_sym_GT] = ACTIONS(4806), - [anon_sym_where] = ACTIONS(4802), - [anon_sym_QMARK] = ACTIONS(4806), - [anon_sym_BANG] = ACTIONS(4806), - [anon_sym_PLUS_PLUS] = ACTIONS(4802), - [anon_sym_DASH_DASH] = ACTIONS(4802), - [anon_sym_PLUS] = ACTIONS(4806), - [anon_sym_DASH] = ACTIONS(4806), - [anon_sym_STAR] = ACTIONS(4802), - [anon_sym_SLASH] = ACTIONS(4806), - [anon_sym_PERCENT] = ACTIONS(4802), - [anon_sym_CARET] = ACTIONS(4802), - [anon_sym_PIPE] = ACTIONS(4806), - [anon_sym_AMP] = ACTIONS(4806), - [anon_sym_LT_LT] = ACTIONS(4802), - [anon_sym_GT_GT] = ACTIONS(4806), - [anon_sym_GT_GT_GT] = ACTIONS(4802), - [anon_sym_EQ_EQ] = ACTIONS(4802), - [anon_sym_BANG_EQ] = ACTIONS(4802), - [anon_sym_GT_EQ] = ACTIONS(4802), - [anon_sym_LT_EQ] = ACTIONS(4802), - [anon_sym_DOT] = ACTIONS(4806), - [anon_sym_switch] = ACTIONS(4802), - [anon_sym_DOT_DOT] = ACTIONS(4802), - [anon_sym_and] = ACTIONS(4802), - [anon_sym_or] = ACTIONS(4806), - [anon_sym_AMP_AMP] = ACTIONS(4802), - [anon_sym_PIPE_PIPE] = ACTIONS(4802), - [anon_sym_QMARK_QMARK] = ACTIONS(4802), - [anon_sym_from] = ACTIONS(4802), - [anon_sym_into] = ACTIONS(4802), - [anon_sym_join] = ACTIONS(4802), - [anon_sym_let] = ACTIONS(4802), - [anon_sym_orderby] = ACTIONS(4802), - [anon_sym_ascending] = ACTIONS(4802), - [anon_sym_descending] = ACTIONS(4802), - [anon_sym_group] = ACTIONS(4802), - [anon_sym_select] = ACTIONS(4802), - [anon_sym_as] = ACTIONS(4806), - [anon_sym_is] = ACTIONS(4802), - [anon_sym_DASH_GT] = ACTIONS(4802), - [anon_sym_with] = ACTIONS(4802), + [aux_sym_type_argument_list_repeat1] = STATE(6927), + [sym__identifier_token] = ACTIONS(2965), + [anon_sym_alias] = ACTIONS(2969), + [anon_sym_global] = ACTIONS(2969), + [anon_sym_COMMA] = ACTIONS(5168), + [anon_sym_LPAREN] = ACTIONS(2977), + [anon_sym_ref] = ACTIONS(5170), + [anon_sym_delegate] = ACTIONS(5172), + [anon_sym_file] = ACTIONS(2969), + [anon_sym_GT] = ACTIONS(5612), + [anon_sym_where] = ACTIONS(2969), + [anon_sym_notnull] = ACTIONS(2969), + [anon_sym_unmanaged] = ACTIONS(2969), + [anon_sym_scoped] = ACTIONS(5178), + [anon_sym_var] = ACTIONS(4705), + [sym_predefined_type] = ACTIONS(5180), + [anon_sym_yield] = ACTIONS(2969), + [anon_sym_when] = ACTIONS(2969), + [anon_sym_from] = ACTIONS(2969), + [anon_sym_into] = ACTIONS(2969), + [anon_sym_join] = ACTIONS(2969), + [anon_sym_on] = ACTIONS(2969), + [anon_sym_equals] = ACTIONS(2969), + [anon_sym_let] = ACTIONS(2969), + [anon_sym_orderby] = ACTIONS(2969), + [anon_sym_ascending] = ACTIONS(2969), + [anon_sym_descending] = ACTIONS(2969), + [anon_sym_group] = ACTIONS(2969), + [anon_sym_by] = ACTIONS(2969), + [anon_sym_select] = ACTIONS(2969), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -509915,8 +509372,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3543] = { - [sym_argument_list] = STATE(3487), - [sym_bracketed_argument_list] = STATE(2485), [sym_preproc_region] = STATE(3543), [sym_preproc_endregion] = STATE(3543), [sym_preproc_line] = STATE(3543), @@ -509926,53 +509381,54 @@ 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), - [anon_sym_SEMI] = ACTIONS(4833), - [anon_sym_LBRACK] = ACTIONS(5573), - [anon_sym_COLON] = ACTIONS(4833), - [anon_sym_COMMA] = ACTIONS(4833), - [anon_sym_RBRACK] = ACTIONS(4833), - [anon_sym_LPAREN] = ACTIONS(5264), - [anon_sym_RPAREN] = ACTIONS(4833), - [anon_sym_RBRACE] = ACTIONS(4833), - [anon_sym_LT] = ACTIONS(4837), - [anon_sym_GT] = ACTIONS(4837), - [anon_sym_in] = ACTIONS(4833), - [anon_sym_QMARK] = ACTIONS(4837), - [anon_sym_BANG] = ACTIONS(5304), - [anon_sym_PLUS_PLUS] = ACTIONS(5306), - [anon_sym_DASH_DASH] = ACTIONS(5306), - [anon_sym_PLUS] = ACTIONS(4837), - [anon_sym_DASH] = ACTIONS(4837), - [anon_sym_STAR] = ACTIONS(4833), - [anon_sym_SLASH] = ACTIONS(4837), - [anon_sym_PERCENT] = ACTIONS(4833), - [anon_sym_CARET] = ACTIONS(4833), - [anon_sym_PIPE] = ACTIONS(4837), - [anon_sym_AMP] = ACTIONS(4837), - [anon_sym_LT_LT] = ACTIONS(4833), - [anon_sym_GT_GT] = ACTIONS(4837), - [anon_sym_GT_GT_GT] = ACTIONS(4833), - [anon_sym_EQ_EQ] = ACTIONS(4833), - [anon_sym_BANG_EQ] = ACTIONS(4833), - [anon_sym_GT_EQ] = ACTIONS(4833), - [anon_sym_LT_EQ] = ACTIONS(4833), - [anon_sym_DOT] = ACTIONS(4100), - [anon_sym_EQ_GT] = ACTIONS(4833), - [anon_sym_switch] = ACTIONS(4833), - [anon_sym_DOT_DOT] = ACTIONS(4833), - [anon_sym_AMP_AMP] = ACTIONS(4833), - [anon_sym_PIPE_PIPE] = ACTIONS(4833), - [anon_sym_QMARK_QMARK] = ACTIONS(4833), - [anon_sym_on] = ACTIONS(4833), - [anon_sym_equals] = ACTIONS(4833), - [anon_sym_by] = ACTIONS(4833), - [anon_sym_as] = ACTIONS(4833), - [anon_sym_is] = ACTIONS(4833), - [anon_sym_DASH_GT] = ACTIONS(4102), - [anon_sym_with] = ACTIONS(4833), - [aux_sym_preproc_if_token3] = ACTIONS(4833), - [aux_sym_preproc_else_token1] = ACTIONS(4833), - [aux_sym_preproc_elif_token1] = ACTIONS(4833), + [anon_sym_EQ] = ACTIONS(5520), + [anon_sym_LBRACK] = ACTIONS(4811), + [anon_sym_COMMA] = ACTIONS(4811), + [anon_sym_LPAREN] = ACTIONS(4811), + [anon_sym_RPAREN] = ACTIONS(5614), + [anon_sym_LT] = ACTIONS(4813), + [anon_sym_GT] = ACTIONS(4813), + [anon_sym_QMARK] = ACTIONS(4813), + [anon_sym_BANG] = ACTIONS(4813), + [anon_sym_PLUS_PLUS] = ACTIONS(4811), + [anon_sym_DASH_DASH] = ACTIONS(4811), + [anon_sym_PLUS] = ACTIONS(4813), + [anon_sym_DASH] = ACTIONS(4813), + [anon_sym_STAR] = ACTIONS(4813), + [anon_sym_SLASH] = ACTIONS(4813), + [anon_sym_PERCENT] = ACTIONS(4813), + [anon_sym_CARET] = ACTIONS(4813), + [anon_sym_PIPE] = ACTIONS(4813), + [anon_sym_AMP] = ACTIONS(4813), + [anon_sym_LT_LT] = ACTIONS(4813), + [anon_sym_GT_GT] = ACTIONS(4813), + [anon_sym_GT_GT_GT] = ACTIONS(4813), + [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(4813), + [anon_sym_switch] = ACTIONS(4811), + [anon_sym_DOT_DOT] = ACTIONS(4811), + [anon_sym_PLUS_EQ] = ACTIONS(5522), + [anon_sym_DASH_EQ] = ACTIONS(5522), + [anon_sym_STAR_EQ] = ACTIONS(5522), + [anon_sym_SLASH_EQ] = ACTIONS(5522), + [anon_sym_PERCENT_EQ] = ACTIONS(5522), + [anon_sym_AMP_EQ] = ACTIONS(5522), + [anon_sym_CARET_EQ] = ACTIONS(5522), + [anon_sym_PIPE_EQ] = ACTIONS(5522), + [anon_sym_LT_LT_EQ] = ACTIONS(5522), + [anon_sym_GT_GT_EQ] = ACTIONS(5522), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(5522), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(5522), + [anon_sym_AMP_AMP] = ACTIONS(4811), + [anon_sym_PIPE_PIPE] = ACTIONS(4811), + [anon_sym_QMARK_QMARK] = ACTIONS(4813), + [anon_sym_as] = ACTIONS(4811), + [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), @@ -509985,25 +509441,25 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3544] = { - [sym_explicit_interface_specifier] = STATE(5884), - [sym__name] = STATE(6517), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(4096), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(4109), - [sym_type] = STATE(7245), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_identifier] = STATE(4087), - [sym__reserved_identifier] = STATE(3691), + [sym_argument_list] = STATE(2922), + [sym__name] = STATE(3086), + [sym_alias_qualified_name] = STATE(2976), + [sym__simple_name] = STATE(2976), + [sym_qualified_name] = STATE(2976), + [sym_generic_name] = STATE(3030), + [sym_type] = STATE(3472), + [sym_implicit_type] = STATE(2977), + [sym_array_type] = STATE(2908), + [sym__array_base_type] = STATE(7236), + [sym_nullable_type] = STATE(2979), + [sym_pointer_type] = STATE(2979), + [sym__pointer_base_type] = STATE(7622), + [sym_function_pointer_type] = STATE(2979), + [sym_ref_type] = STATE(2977), + [sym_scoped_type] = STATE(2977), + [sym_tuple_type] = STATE(2980), + [sym_identifier] = STATE(2927), + [sym__reserved_identifier] = STATE(2916), [sym_preproc_region] = STATE(3544), [sym_preproc_endregion] = STATE(3544), [sym_preproc_line] = STATE(3544), @@ -510013,36 +509469,35 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3544), [sym_preproc_define] = STATE(3544), [sym_preproc_undef] = STATE(3544), - [aux_sym_conversion_operator_declaration_repeat1] = STATE(5030), - [sym__identifier_token] = ACTIONS(2967), - [anon_sym_alias] = ACTIONS(2971), - [anon_sym_global] = ACTIONS(2971), - [anon_sym_LPAREN] = ACTIONS(2979), - [anon_sym_ref] = ACTIONS(5603), - [anon_sym_delegate] = ACTIONS(3454), - [anon_sym_file] = ACTIONS(2971), - [anon_sym_where] = ACTIONS(2971), - [anon_sym_notnull] = ACTIONS(2971), - [anon_sym_unmanaged] = ACTIONS(2971), - [anon_sym_operator] = ACTIONS(5605), - [anon_sym_checked] = ACTIONS(5605), - [anon_sym_scoped] = ACTIONS(5607), - [anon_sym_var] = ACTIONS(2999), - [sym_predefined_type] = ACTIONS(3001), - [anon_sym_yield] = ACTIONS(2971), - [anon_sym_when] = ACTIONS(2971), - [anon_sym_from] = ACTIONS(2971), - [anon_sym_into] = ACTIONS(2971), - [anon_sym_join] = ACTIONS(2971), - [anon_sym_on] = ACTIONS(2971), - [anon_sym_equals] = ACTIONS(2971), - [anon_sym_let] = ACTIONS(2971), - [anon_sym_orderby] = ACTIONS(2971), - [anon_sym_ascending] = ACTIONS(2971), - [anon_sym_descending] = ACTIONS(2971), - [anon_sym_group] = ACTIONS(2971), - [anon_sym_by] = ACTIONS(2971), - [anon_sym_select] = ACTIONS(2971), + [sym__identifier_token] = ACTIONS(3871), + [anon_sym_alias] = ACTIONS(3873), + [anon_sym_global] = ACTIONS(3873), + [anon_sym_LBRACK] = ACTIONS(4009), + [anon_sym_LPAREN] = ACTIONS(4011), + [anon_sym_ref] = ACTIONS(3875), + [anon_sym_LBRACE] = ACTIONS(4013), + [anon_sym_delegate] = ACTIONS(4015), + [anon_sym_file] = ACTIONS(3873), + [anon_sym_where] = ACTIONS(3873), + [anon_sym_notnull] = ACTIONS(3873), + [anon_sym_unmanaged] = ACTIONS(3873), + [anon_sym_scoped] = ACTIONS(4017), + [anon_sym_var] = ACTIONS(4019), + [sym_predefined_type] = ACTIONS(4021), + [anon_sym_yield] = ACTIONS(3873), + [anon_sym_when] = ACTIONS(3873), + [anon_sym_from] = ACTIONS(3873), + [anon_sym_into] = ACTIONS(3873), + [anon_sym_join] = ACTIONS(3873), + [anon_sym_on] = ACTIONS(3873), + [anon_sym_equals] = ACTIONS(3873), + [anon_sym_let] = ACTIONS(3873), + [anon_sym_orderby] = ACTIONS(3873), + [anon_sym_ascending] = ACTIONS(3873), + [anon_sym_descending] = ACTIONS(3873), + [anon_sym_group] = ACTIONS(3873), + [anon_sym_by] = ACTIONS(3873), + [anon_sym_select] = ACTIONS(3873), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -510055,6 +509510,25 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3545] = { + [sym_argument_list] = STATE(3138), + [sym__name] = STATE(3151), + [sym_alias_qualified_name] = STATE(3143), + [sym__simple_name] = STATE(3143), + [sym_qualified_name] = STATE(3143), + [sym_generic_name] = STATE(3184), + [sym_type] = STATE(3116), + [sym_implicit_type] = STATE(3146), + [sym_array_type] = STATE(3139), + [sym__array_base_type] = STATE(7165), + [sym_nullable_type] = STATE(3148), + [sym_pointer_type] = STATE(3148), + [sym__pointer_base_type] = STATE(7401), + [sym_function_pointer_type] = STATE(3148), + [sym_ref_type] = STATE(3146), + [sym_scoped_type] = STATE(3146), + [sym_tuple_type] = STATE(3149), + [sym_identifier] = STATE(3119), + [sym__reserved_identifier] = STATE(3120), [sym_preproc_region] = STATE(3545), [sym_preproc_endregion] = STATE(3545), [sym_preproc_line] = STATE(3545), @@ -510064,55 +509538,35 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3545), [sym_preproc_define] = STATE(3545), [sym_preproc_undef] = STATE(3545), - [sym__identifier_token] = ACTIONS(3782), - [anon_sym_extern] = ACTIONS(3782), - [anon_sym_alias] = ACTIONS(3782), - [anon_sym_global] = ACTIONS(3782), - [anon_sym_unsafe] = ACTIONS(3782), - [anon_sym_static] = ACTIONS(3782), - [anon_sym_LBRACK] = ACTIONS(3784), - [anon_sym_abstract] = ACTIONS(3782), - [anon_sym_async] = ACTIONS(3782), - [anon_sym_const] = ACTIONS(3782), - [anon_sym_file] = ACTIONS(3782), - [anon_sym_fixed] = ACTIONS(3782), - [anon_sym_internal] = ACTIONS(3782), - [anon_sym_new] = ACTIONS(3782), - [anon_sym_override] = ACTIONS(3782), - [anon_sym_partial] = ACTIONS(3782), - [anon_sym_private] = ACTIONS(3782), - [anon_sym_protected] = ACTIONS(3782), - [anon_sym_public] = ACTIONS(3782), - [anon_sym_readonly] = ACTIONS(3782), - [anon_sym_required] = ACTIONS(3782), - [anon_sym_sealed] = ACTIONS(3782), - [anon_sym_virtual] = ACTIONS(3782), - [anon_sym_volatile] = ACTIONS(3782), - [anon_sym_where] = ACTIONS(3782), - [anon_sym_notnull] = ACTIONS(3782), - [anon_sym_unmanaged] = ACTIONS(3782), - [anon_sym_get] = ACTIONS(3782), - [anon_sym_set] = ACTIONS(3782), - [anon_sym_add] = ACTIONS(3782), - [anon_sym_remove] = ACTIONS(3782), - [anon_sym_init] = ACTIONS(3782), - [anon_sym_scoped] = ACTIONS(3782), - [anon_sym_var] = ACTIONS(3782), - [anon_sym_yield] = ACTIONS(3782), - [anon_sym_when] = ACTIONS(3782), - [anon_sym_from] = ACTIONS(3782), - [anon_sym_into] = ACTIONS(3782), - [anon_sym_join] = ACTIONS(3782), - [anon_sym_on] = ACTIONS(3782), - [anon_sym_equals] = ACTIONS(3782), - [anon_sym_let] = ACTIONS(3782), - [anon_sym_orderby] = ACTIONS(3782), - [anon_sym_ascending] = ACTIONS(3782), - [anon_sym_descending] = ACTIONS(3782), - [anon_sym_group] = ACTIONS(3782), - [anon_sym_by] = ACTIONS(3782), - [anon_sym_select] = ACTIONS(3782), - [aux_sym_preproc_if_token1] = ACTIONS(3784), + [sym__identifier_token] = ACTIONS(3761), + [anon_sym_alias] = ACTIONS(3763), + [anon_sym_global] = ACTIONS(3763), + [anon_sym_LBRACK] = ACTIONS(5616), + [anon_sym_LPAREN] = ACTIONS(5618), + [anon_sym_ref] = ACTIONS(4173), + [anon_sym_LBRACE] = ACTIONS(5620), + [anon_sym_delegate] = ACTIONS(5622), + [anon_sym_file] = ACTIONS(3763), + [anon_sym_where] = ACTIONS(3763), + [anon_sym_notnull] = ACTIONS(3763), + [anon_sym_unmanaged] = ACTIONS(3763), + [anon_sym_scoped] = ACTIONS(5624), + [anon_sym_var] = ACTIONS(5626), + [sym_predefined_type] = ACTIONS(5628), + [anon_sym_yield] = ACTIONS(3763), + [anon_sym_when] = ACTIONS(3763), + [anon_sym_from] = ACTIONS(3763), + [anon_sym_into] = ACTIONS(3763), + [anon_sym_join] = ACTIONS(3763), + [anon_sym_on] = ACTIONS(3763), + [anon_sym_equals] = ACTIONS(3763), + [anon_sym_let] = ACTIONS(3763), + [anon_sym_orderby] = ACTIONS(3763), + [anon_sym_ascending] = ACTIONS(3763), + [anon_sym_descending] = ACTIONS(3763), + [anon_sym_group] = ACTIONS(3763), + [anon_sym_by] = ACTIONS(3763), + [anon_sym_select] = ACTIONS(3763), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -510125,6 +509579,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3546] = { + [sym__name] = STATE(6400), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(4068), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(4073), + [sym_type] = STATE(6793), + [sym_implicit_type] = STATE(7035), + [sym_array_type] = STATE(6706), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7421), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(7035), + [sym_scoped_type] = STATE(7035), + [sym_tuple_type] = STATE(6601), + [sym_identifier] = STATE(4081), + [sym__reserved_identifier] = STATE(3654), [sym_preproc_region] = STATE(3546), [sym_preproc_endregion] = STATE(3546), [sym_preproc_line] = STATE(3546), @@ -510134,55 +509606,36 @@ 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(4761), - [anon_sym_extern] = ACTIONS(4761), - [anon_sym_alias] = ACTIONS(4761), - [anon_sym_global] = ACTIONS(4761), - [anon_sym_unsafe] = ACTIONS(4761), - [anon_sym_static] = ACTIONS(4761), - [anon_sym_LBRACK] = ACTIONS(4763), - [anon_sym_abstract] = ACTIONS(4761), - [anon_sym_async] = ACTIONS(4761), - [anon_sym_const] = ACTIONS(4761), - [anon_sym_file] = ACTIONS(4761), - [anon_sym_fixed] = ACTIONS(4761), - [anon_sym_internal] = ACTIONS(4761), - [anon_sym_new] = ACTIONS(4761), - [anon_sym_override] = ACTIONS(4761), - [anon_sym_partial] = ACTIONS(4761), - [anon_sym_private] = ACTIONS(4761), - [anon_sym_protected] = ACTIONS(4761), - [anon_sym_public] = ACTIONS(4761), - [anon_sym_readonly] = ACTIONS(4761), - [anon_sym_required] = ACTIONS(4761), - [anon_sym_sealed] = ACTIONS(4761), - [anon_sym_virtual] = ACTIONS(4761), - [anon_sym_volatile] = ACTIONS(4761), - [anon_sym_where] = ACTIONS(4761), - [anon_sym_notnull] = ACTIONS(4761), - [anon_sym_unmanaged] = ACTIONS(4761), - [anon_sym_get] = ACTIONS(4761), - [anon_sym_set] = ACTIONS(4761), - [anon_sym_add] = ACTIONS(4761), - [anon_sym_remove] = ACTIONS(4761), - [anon_sym_init] = ACTIONS(4761), - [anon_sym_scoped] = ACTIONS(4761), - [anon_sym_var] = ACTIONS(4761), - [anon_sym_yield] = ACTIONS(4761), - [anon_sym_when] = ACTIONS(4761), - [anon_sym_from] = ACTIONS(4761), - [anon_sym_into] = ACTIONS(4761), - [anon_sym_join] = ACTIONS(4761), - [anon_sym_on] = ACTIONS(4761), - [anon_sym_equals] = ACTIONS(4761), - [anon_sym_let] = ACTIONS(4761), - [anon_sym_orderby] = ACTIONS(4761), - [anon_sym_ascending] = ACTIONS(4761), - [anon_sym_descending] = ACTIONS(4761), - [anon_sym_group] = ACTIONS(4761), - [anon_sym_by] = ACTIONS(4761), - [anon_sym_select] = ACTIONS(4761), - [aux_sym_preproc_if_token1] = ACTIONS(4763), + [aux_sym_type_argument_list_repeat1] = STATE(6800), + [sym__identifier_token] = ACTIONS(2965), + [anon_sym_alias] = ACTIONS(2969), + [anon_sym_global] = ACTIONS(2969), + [anon_sym_COMMA] = ACTIONS(5168), + [anon_sym_LPAREN] = ACTIONS(2977), + [anon_sym_ref] = ACTIONS(5170), + [anon_sym_delegate] = ACTIONS(5172), + [anon_sym_file] = ACTIONS(2969), + [anon_sym_GT] = ACTIONS(5630), + [anon_sym_where] = ACTIONS(2969), + [anon_sym_notnull] = ACTIONS(2969), + [anon_sym_unmanaged] = ACTIONS(2969), + [anon_sym_scoped] = ACTIONS(5178), + [anon_sym_var] = ACTIONS(4705), + [sym_predefined_type] = ACTIONS(5180), + [anon_sym_yield] = ACTIONS(2969), + [anon_sym_when] = ACTIONS(2969), + [anon_sym_from] = ACTIONS(2969), + [anon_sym_into] = ACTIONS(2969), + [anon_sym_join] = ACTIONS(2969), + [anon_sym_on] = ACTIONS(2969), + [anon_sym_equals] = ACTIONS(2969), + [anon_sym_let] = ACTIONS(2969), + [anon_sym_orderby] = ACTIONS(2969), + [anon_sym_ascending] = ACTIONS(2969), + [anon_sym_descending] = ACTIONS(2969), + [anon_sym_group] = ACTIONS(2969), + [anon_sym_by] = ACTIONS(2969), + [anon_sym_select] = ACTIONS(2969), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -510195,6 +509648,25 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3547] = { + [sym_argument_list] = STATE(3194), + [sym__name] = STATE(5140), + [sym_alias_qualified_name] = STATE(3304), + [sym__simple_name] = STATE(3304), + [sym_qualified_name] = STATE(3304), + [sym_generic_name] = STATE(3241), + [sym_type] = STATE(3130), + [sym_implicit_type] = STATE(3222), + [sym_array_type] = STATE(5080), + [sym__array_base_type] = STATE(7208), + [sym_nullable_type] = STATE(3216), + [sym_pointer_type] = STATE(3216), + [sym__pointer_base_type] = STATE(7508), + [sym_function_pointer_type] = STATE(3216), + [sym_ref_type] = STATE(3222), + [sym_scoped_type] = STATE(3222), + [sym_tuple_type] = STATE(3308), + [sym_identifier] = STATE(4542), + [sym__reserved_identifier] = STATE(3205), [sym_preproc_region] = STATE(3547), [sym_preproc_endregion] = STATE(3547), [sym_preproc_line] = STATE(3547), @@ -510204,55 +509676,35 @@ 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), - [sym__identifier_token] = ACTIONS(4745), - [anon_sym_extern] = ACTIONS(4745), - [anon_sym_alias] = ACTIONS(4745), - [anon_sym_global] = ACTIONS(4745), - [anon_sym_unsafe] = ACTIONS(4745), - [anon_sym_static] = ACTIONS(4745), - [anon_sym_LBRACK] = ACTIONS(4747), - [anon_sym_abstract] = ACTIONS(4745), - [anon_sym_async] = ACTIONS(4745), - [anon_sym_const] = ACTIONS(4745), - [anon_sym_file] = ACTIONS(4745), - [anon_sym_fixed] = ACTIONS(4745), - [anon_sym_internal] = ACTIONS(4745), - [anon_sym_new] = ACTIONS(4745), - [anon_sym_override] = ACTIONS(4745), - [anon_sym_partial] = ACTIONS(4745), - [anon_sym_private] = ACTIONS(4745), - [anon_sym_protected] = ACTIONS(4745), - [anon_sym_public] = ACTIONS(4745), - [anon_sym_readonly] = ACTIONS(4745), - [anon_sym_required] = ACTIONS(4745), - [anon_sym_sealed] = ACTIONS(4745), - [anon_sym_virtual] = ACTIONS(4745), - [anon_sym_volatile] = ACTIONS(4745), - [anon_sym_where] = ACTIONS(4745), - [anon_sym_notnull] = ACTIONS(4745), - [anon_sym_unmanaged] = ACTIONS(4745), - [anon_sym_get] = ACTIONS(4745), - [anon_sym_set] = ACTIONS(4745), - [anon_sym_add] = ACTIONS(4745), - [anon_sym_remove] = ACTIONS(4745), - [anon_sym_init] = ACTIONS(4745), - [anon_sym_scoped] = ACTIONS(4745), - [anon_sym_var] = ACTIONS(4745), - [anon_sym_yield] = ACTIONS(4745), - [anon_sym_when] = ACTIONS(4745), - [anon_sym_from] = ACTIONS(4745), - [anon_sym_into] = ACTIONS(4745), - [anon_sym_join] = ACTIONS(4745), - [anon_sym_on] = ACTIONS(4745), - [anon_sym_equals] = ACTIONS(4745), - [anon_sym_let] = ACTIONS(4745), - [anon_sym_orderby] = ACTIONS(4745), - [anon_sym_ascending] = ACTIONS(4745), - [anon_sym_descending] = ACTIONS(4745), - [anon_sym_group] = ACTIONS(4745), - [anon_sym_by] = ACTIONS(4745), - [anon_sym_select] = ACTIONS(4745), - [aux_sym_preproc_if_token1] = ACTIONS(4747), + [sym__identifier_token] = ACTIONS(3798), + [anon_sym_alias] = ACTIONS(3800), + [anon_sym_global] = ACTIONS(3800), + [anon_sym_LBRACK] = ACTIONS(5632), + [anon_sym_LPAREN] = ACTIONS(5634), + [anon_sym_ref] = ACTIONS(4078), + [anon_sym_LBRACE] = ACTIONS(5636), + [anon_sym_delegate] = ACTIONS(5638), + [anon_sym_file] = ACTIONS(3800), + [anon_sym_where] = ACTIONS(3800), + [anon_sym_notnull] = ACTIONS(3800), + [anon_sym_unmanaged] = ACTIONS(3800), + [anon_sym_scoped] = ACTIONS(5640), + [anon_sym_var] = ACTIONS(5642), + [sym_predefined_type] = ACTIONS(5644), + [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), @@ -510265,6 +509717,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3548] = { + [sym_initializer_expression] = STATE(3834), [sym_preproc_region] = STATE(3548), [sym_preproc_endregion] = STATE(3548), [sym_preproc_line] = STATE(3548), @@ -510274,55 +509727,53 @@ 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), - [anon_sym_EQ] = ACTIONS(5626), - [anon_sym_LBRACK] = ACTIONS(4860), - [anon_sym_COLON] = ACTIONS(4860), - [anon_sym_LPAREN] = ACTIONS(4860), - [anon_sym_LT] = ACTIONS(4862), - [anon_sym_GT] = ACTIONS(4862), - [anon_sym_QMARK] = ACTIONS(4862), - [anon_sym_BANG] = ACTIONS(4862), - [anon_sym_PLUS_PLUS] = ACTIONS(4860), - [anon_sym_DASH_DASH] = ACTIONS(4860), - [anon_sym_PLUS] = ACTIONS(4862), - [anon_sym_DASH] = ACTIONS(4862), - [anon_sym_STAR] = ACTIONS(4862), - [anon_sym_SLASH] = ACTIONS(4862), - [anon_sym_PERCENT] = ACTIONS(4862), - [anon_sym_CARET] = ACTIONS(4862), - [anon_sym_PIPE] = ACTIONS(4862), - [anon_sym_AMP] = ACTIONS(4862), - [anon_sym_LT_LT] = ACTIONS(4862), - [anon_sym_GT_GT] = ACTIONS(4862), - [anon_sym_GT_GT_GT] = ACTIONS(4862), - [anon_sym_EQ_EQ] = ACTIONS(4860), - [anon_sym_BANG_EQ] = ACTIONS(4860), - [anon_sym_GT_EQ] = ACTIONS(4860), - [anon_sym_LT_EQ] = ACTIONS(4860), - [anon_sym_DOT] = ACTIONS(4862), - [anon_sym_switch] = ACTIONS(4860), - [anon_sym_DOT_DOT] = ACTIONS(4860), - [anon_sym_and] = ACTIONS(4860), - [anon_sym_or] = ACTIONS(4860), - [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(4860), - [anon_sym_PIPE_PIPE] = ACTIONS(4860), - [anon_sym_QMARK_QMARK] = ACTIONS(4862), - [anon_sym_as] = ACTIONS(4860), - [anon_sym_is] = ACTIONS(4860), - [anon_sym_DASH_GT] = ACTIONS(4860), - [anon_sym_with] = ACTIONS(4860), + [anon_sym_LBRACK] = ACTIONS(4804), + [anon_sym_COMMA] = ACTIONS(4802), + [anon_sym_LPAREN] = ACTIONS(4802), + [anon_sym_LBRACE] = ACTIONS(1661), + [anon_sym_LT] = ACTIONS(4807), + [anon_sym_GT] = ACTIONS(4807), + [anon_sym_where] = ACTIONS(4802), + [anon_sym_QMARK] = ACTIONS(4807), + [anon_sym_BANG] = ACTIONS(4807), + [anon_sym_PLUS_PLUS] = ACTIONS(4802), + [anon_sym_DASH_DASH] = ACTIONS(4802), + [anon_sym_PLUS] = ACTIONS(4807), + [anon_sym_DASH] = ACTIONS(4807), + [anon_sym_STAR] = ACTIONS(4802), + [anon_sym_SLASH] = ACTIONS(4807), + [anon_sym_PERCENT] = ACTIONS(4802), + [anon_sym_CARET] = ACTIONS(4802), + [anon_sym_PIPE] = ACTIONS(4807), + [anon_sym_AMP] = ACTIONS(4807), + [anon_sym_LT_LT] = ACTIONS(4802), + [anon_sym_GT_GT] = ACTIONS(4807), + [anon_sym_GT_GT_GT] = ACTIONS(4802), + [anon_sym_EQ_EQ] = ACTIONS(4802), + [anon_sym_BANG_EQ] = ACTIONS(4802), + [anon_sym_GT_EQ] = ACTIONS(4802), + [anon_sym_LT_EQ] = ACTIONS(4802), + [anon_sym_DOT] = ACTIONS(4807), + [anon_sym_switch] = ACTIONS(4802), + [anon_sym_DOT_DOT] = ACTIONS(4802), + [anon_sym_and] = ACTIONS(4802), + [anon_sym_or] = ACTIONS(4807), + [anon_sym_AMP_AMP] = ACTIONS(4802), + [anon_sym_PIPE_PIPE] = ACTIONS(4802), + [anon_sym_QMARK_QMARK] = ACTIONS(4802), + [anon_sym_from] = ACTIONS(4802), + [anon_sym_into] = ACTIONS(4802), + [anon_sym_join] = ACTIONS(4802), + [anon_sym_let] = ACTIONS(4802), + [anon_sym_orderby] = ACTIONS(4802), + [anon_sym_ascending] = ACTIONS(4802), + [anon_sym_descending] = ACTIONS(4802), + [anon_sym_group] = ACTIONS(4802), + [anon_sym_select] = ACTIONS(4802), + [anon_sym_as] = ACTIONS(4807), + [anon_sym_is] = ACTIONS(4802), + [anon_sym_DASH_GT] = ACTIONS(4802), + [anon_sym_with] = ACTIONS(4802), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -510344,55 +509795,54 @@ 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), - [sym__identifier_token] = ACTIONS(4953), - [anon_sym_extern] = ACTIONS(4953), - [anon_sym_alias] = ACTIONS(4953), - [anon_sym_global] = ACTIONS(4953), - [anon_sym_unsafe] = ACTIONS(4953), - [anon_sym_static] = ACTIONS(4953), - [anon_sym_LBRACK] = ACTIONS(4955), - [anon_sym_abstract] = ACTIONS(4953), - [anon_sym_async] = ACTIONS(4953), - [anon_sym_const] = ACTIONS(4953), - [anon_sym_file] = ACTIONS(4953), - [anon_sym_fixed] = ACTIONS(4953), - [anon_sym_internal] = ACTIONS(4953), - [anon_sym_new] = ACTIONS(4953), - [anon_sym_override] = ACTIONS(4953), - [anon_sym_partial] = ACTIONS(4953), - [anon_sym_private] = ACTIONS(4953), - [anon_sym_protected] = ACTIONS(4953), - [anon_sym_public] = ACTIONS(4953), - [anon_sym_readonly] = ACTIONS(4953), - [anon_sym_required] = ACTIONS(4953), - [anon_sym_sealed] = ACTIONS(4953), - [anon_sym_virtual] = ACTIONS(4953), - [anon_sym_volatile] = ACTIONS(4953), - [anon_sym_where] = ACTIONS(4953), - [anon_sym_notnull] = ACTIONS(4953), - [anon_sym_unmanaged] = ACTIONS(4953), - [anon_sym_get] = ACTIONS(4953), - [anon_sym_set] = ACTIONS(4953), - [anon_sym_add] = ACTIONS(4953), - [anon_sym_remove] = ACTIONS(4953), - [anon_sym_init] = ACTIONS(4953), - [anon_sym_scoped] = ACTIONS(4953), - [anon_sym_var] = ACTIONS(4953), - [anon_sym_yield] = ACTIONS(4953), - [anon_sym_when] = ACTIONS(4953), - [anon_sym_from] = ACTIONS(4953), - [anon_sym_into] = ACTIONS(4953), - [anon_sym_join] = ACTIONS(4953), - [anon_sym_on] = ACTIONS(4953), - [anon_sym_equals] = ACTIONS(4953), - [anon_sym_let] = ACTIONS(4953), - [anon_sym_orderby] = ACTIONS(4953), - [anon_sym_ascending] = ACTIONS(4953), - [anon_sym_descending] = ACTIONS(4953), - [anon_sym_group] = ACTIONS(4953), - [anon_sym_by] = ACTIONS(4953), - [anon_sym_select] = ACTIONS(4953), - [aux_sym_preproc_if_token1] = ACTIONS(4955), + [anon_sym_EQ] = ACTIONS(5646), + [anon_sym_LBRACK] = ACTIONS(4811), + [anon_sym_LPAREN] = ACTIONS(4811), + [anon_sym_LT] = ACTIONS(4813), + [anon_sym_GT] = ACTIONS(4813), + [anon_sym_QMARK] = ACTIONS(4813), + [anon_sym_BANG] = ACTIONS(4813), + [anon_sym_PLUS_PLUS] = ACTIONS(4811), + [anon_sym_DASH_DASH] = ACTIONS(4811), + [anon_sym_PLUS] = ACTIONS(4813), + [anon_sym_DASH] = ACTIONS(4813), + [anon_sym_STAR] = ACTIONS(4813), + [anon_sym_SLASH] = ACTIONS(4813), + [anon_sym_PERCENT] = ACTIONS(4813), + [anon_sym_CARET] = ACTIONS(4813), + [anon_sym_PIPE] = ACTIONS(4813), + [anon_sym_AMP] = ACTIONS(4813), + [anon_sym_LT_LT] = ACTIONS(4813), + [anon_sym_GT_GT] = ACTIONS(4813), + [anon_sym_GT_GT_GT] = ACTIONS(4813), + [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(4813), + [anon_sym_EQ_GT] = ACTIONS(4811), + [anon_sym_switch] = ACTIONS(4811), + [anon_sym_DOT_DOT] = ACTIONS(4811), + [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(4811), + [anon_sym_PIPE_PIPE] = ACTIONS(4811), + [anon_sym_QMARK_QMARK] = ACTIONS(4813), + [anon_sym_into] = 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_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -510414,55 +509864,54 @@ 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), - [sym__identifier_token] = ACTIONS(4973), - [anon_sym_extern] = ACTIONS(4973), - [anon_sym_alias] = ACTIONS(4973), - [anon_sym_global] = ACTIONS(4973), - [anon_sym_unsafe] = ACTIONS(4973), - [anon_sym_static] = ACTIONS(4973), - [anon_sym_LBRACK] = ACTIONS(4975), - [anon_sym_abstract] = ACTIONS(4973), - [anon_sym_async] = ACTIONS(4973), - [anon_sym_const] = ACTIONS(4973), - [anon_sym_file] = ACTIONS(4973), - [anon_sym_fixed] = ACTIONS(4973), - [anon_sym_internal] = ACTIONS(4973), - [anon_sym_new] = ACTIONS(4973), - [anon_sym_override] = ACTIONS(4973), - [anon_sym_partial] = ACTIONS(4973), - [anon_sym_private] = ACTIONS(4973), - [anon_sym_protected] = ACTIONS(4973), - [anon_sym_public] = ACTIONS(4973), - [anon_sym_readonly] = ACTIONS(4973), - [anon_sym_required] = ACTIONS(4973), - [anon_sym_sealed] = ACTIONS(4973), - [anon_sym_virtual] = ACTIONS(4973), - [anon_sym_volatile] = ACTIONS(4973), - [anon_sym_where] = ACTIONS(4973), - [anon_sym_notnull] = ACTIONS(4973), - [anon_sym_unmanaged] = ACTIONS(4973), - [anon_sym_get] = ACTIONS(4973), - [anon_sym_set] = ACTIONS(4973), - [anon_sym_add] = ACTIONS(4973), - [anon_sym_remove] = ACTIONS(4973), - [anon_sym_init] = ACTIONS(4973), - [anon_sym_scoped] = ACTIONS(4973), - [anon_sym_var] = ACTIONS(4973), - [anon_sym_yield] = ACTIONS(4973), - [anon_sym_when] = ACTIONS(4973), - [anon_sym_from] = ACTIONS(4973), - [anon_sym_into] = ACTIONS(4973), - [anon_sym_join] = ACTIONS(4973), - [anon_sym_on] = ACTIONS(4973), - [anon_sym_equals] = ACTIONS(4973), - [anon_sym_let] = ACTIONS(4973), - [anon_sym_orderby] = ACTIONS(4973), - [anon_sym_ascending] = ACTIONS(4973), - [anon_sym_descending] = ACTIONS(4973), - [anon_sym_group] = ACTIONS(4973), - [anon_sym_by] = ACTIONS(4973), - [anon_sym_select] = ACTIONS(4973), - [aux_sym_preproc_if_token1] = ACTIONS(4975), + [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), @@ -510475,25 +509924,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3551] = { - [sym_argument_list] = STATE(3561), - [sym__name] = STATE(2419), - [sym_alias_qualified_name] = STATE(2373), - [sym__simple_name] = STATE(2373), - [sym_qualified_name] = STATE(2373), - [sym_generic_name] = STATE(2389), - [sym_type] = STATE(3542), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(3574), - [sym__array_base_type] = STATE(7103), - [sym_nullable_type] = STATE(2379), - [sym_pointer_type] = STATE(2379), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(2379), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(2380), - [sym_identifier] = STATE(2359), - [sym__reserved_identifier] = STATE(2361), + [sym_argument_list] = STATE(3771), + [sym_bracketed_argument_list] = STATE(2892), [sym_preproc_region] = STATE(3551), [sym_preproc_endregion] = STATE(3551), [sym_preproc_line] = STATE(3551), @@ -510503,35 +509935,52 @@ 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), - [sym__identifier_token] = ACTIONS(4058), - [anon_sym_alias] = ACTIONS(4060), - [anon_sym_global] = ACTIONS(4060), - [anon_sym_LBRACK] = ACTIONS(5630), - [anon_sym_LPAREN] = ACTIONS(5632), - [anon_sym_ref] = ACTIONS(4062), - [anon_sym_LBRACE] = ACTIONS(5634), - [anon_sym_delegate] = ACTIONS(3454), - [anon_sym_file] = ACTIONS(4060), - [anon_sym_where] = ACTIONS(4060), - [anon_sym_notnull] = ACTIONS(4060), - [anon_sym_unmanaged] = ACTIONS(4060), - [anon_sym_scoped] = ACTIONS(5636), - [anon_sym_var] = ACTIONS(5638), - [sym_predefined_type] = ACTIONS(5640), - [anon_sym_yield] = ACTIONS(4060), - [anon_sym_when] = ACTIONS(4060), - [anon_sym_from] = ACTIONS(4060), - [anon_sym_into] = ACTIONS(4060), - [anon_sym_join] = ACTIONS(4060), - [anon_sym_on] = ACTIONS(4060), - [anon_sym_equals] = ACTIONS(4060), - [anon_sym_let] = ACTIONS(4060), - [anon_sym_orderby] = ACTIONS(4060), - [anon_sym_ascending] = ACTIONS(4060), - [anon_sym_descending] = ACTIONS(4060), - [anon_sym_group] = ACTIONS(4060), - [anon_sym_by] = ACTIONS(4060), - [anon_sym_select] = ACTIONS(4060), + [anon_sym_LBRACK] = ACTIONS(5650), + [anon_sym_COMMA] = ACTIONS(5652), + [anon_sym_LPAREN] = ACTIONS(5591), + [anon_sym_LT] = ACTIONS(5654), + [anon_sym_GT] = ACTIONS(5654), + [anon_sym_where] = ACTIONS(5652), + [anon_sym_QMARK] = ACTIONS(5656), + [anon_sym_BANG] = ACTIONS(5658), + [anon_sym_PLUS_PLUS] = ACTIONS(5660), + [anon_sym_DASH_DASH] = ACTIONS(5660), + [anon_sym_PLUS] = ACTIONS(5662), + [anon_sym_DASH] = ACTIONS(5662), + [anon_sym_STAR] = ACTIONS(5664), + [anon_sym_SLASH] = ACTIONS(5666), + [anon_sym_PERCENT] = ACTIONS(5664), + [anon_sym_CARET] = ACTIONS(5668), + [anon_sym_PIPE] = ACTIONS(5670), + [anon_sym_AMP] = ACTIONS(5672), + [anon_sym_LT_LT] = ACTIONS(5674), + [anon_sym_GT_GT] = ACTIONS(5676), + [anon_sym_GT_GT_GT] = ACTIONS(5674), + [anon_sym_EQ_EQ] = ACTIONS(5678), + [anon_sym_BANG_EQ] = ACTIONS(5678), + [anon_sym_GT_EQ] = ACTIONS(5680), + [anon_sym_LT_EQ] = ACTIONS(5680), + [anon_sym_DOT] = ACTIONS(4697), + [anon_sym_switch] = ACTIONS(5682), + [anon_sym_DOT_DOT] = ACTIONS(5684), + [anon_sym_and] = ACTIONS(5652), + [anon_sym_or] = ACTIONS(5686), + [anon_sym_AMP_AMP] = ACTIONS(5688), + [anon_sym_PIPE_PIPE] = ACTIONS(5690), + [anon_sym_QMARK_QMARK] = ACTIONS(5692), + [anon_sym_from] = ACTIONS(5652), + [anon_sym_into] = ACTIONS(5652), + [anon_sym_join] = ACTIONS(5652), + [anon_sym_let] = ACTIONS(5652), + [anon_sym_orderby] = ACTIONS(5652), + [anon_sym_ascending] = ACTIONS(5652), + [anon_sym_descending] = ACTIONS(5652), + [anon_sym_group] = ACTIONS(5652), + [anon_sym_select] = ACTIONS(5652), + [anon_sym_as] = ACTIONS(5694), + [anon_sym_is] = ACTIONS(5696), + [anon_sym_DASH_GT] = ACTIONS(4699), + [anon_sym_with] = ACTIONS(5698), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -510544,6 +509993,25 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3552] = { + [sym_argument_list] = STATE(3194), + [sym__name] = STATE(3488), + [sym_alias_qualified_name] = STATE(3304), + [sym__simple_name] = STATE(3304), + [sym_qualified_name] = STATE(3304), + [sym_generic_name] = STATE(3241), + [sym_type] = STATE(3130), + [sym_implicit_type] = STATE(3222), + [sym_array_type] = STATE(3232), + [sym__array_base_type] = STATE(7208), + [sym_nullable_type] = STATE(3216), + [sym_pointer_type] = STATE(3216), + [sym__pointer_base_type] = STATE(7508), + [sym_function_pointer_type] = STATE(3216), + [sym_ref_type] = STATE(3222), + [sym_scoped_type] = STATE(3222), + [sym_tuple_type] = STATE(3308), + [sym_identifier] = STATE(3177), + [sym__reserved_identifier] = STATE(3205), [sym_preproc_region] = STATE(3552), [sym_preproc_endregion] = STATE(3552), [sym_preproc_line] = STATE(3552), @@ -510553,54 +510021,35 @@ 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_EQ] = ACTIONS(5642), - [anon_sym_LBRACK] = ACTIONS(4860), - [anon_sym_LPAREN] = ACTIONS(4860), - [anon_sym_LT] = ACTIONS(4862), - [anon_sym_GT] = ACTIONS(4862), - [anon_sym_QMARK] = ACTIONS(4862), - [anon_sym_BANG] = ACTIONS(4862), - [anon_sym_PLUS_PLUS] = ACTIONS(4860), - [anon_sym_DASH_DASH] = ACTIONS(4860), - [anon_sym_PLUS] = ACTIONS(4862), - [anon_sym_DASH] = ACTIONS(4862), - [anon_sym_STAR] = ACTIONS(4862), - [anon_sym_SLASH] = ACTIONS(4862), - [anon_sym_PERCENT] = ACTIONS(4862), - [anon_sym_CARET] = ACTIONS(4862), - [anon_sym_PIPE] = ACTIONS(4862), - [anon_sym_AMP] = ACTIONS(4862), - [anon_sym_LT_LT] = ACTIONS(4862), - [anon_sym_GT_GT] = ACTIONS(4862), - [anon_sym_GT_GT_GT] = ACTIONS(4862), - [anon_sym_EQ_EQ] = ACTIONS(4860), - [anon_sym_BANG_EQ] = ACTIONS(4860), - [anon_sym_GT_EQ] = ACTIONS(4860), - [anon_sym_LT_EQ] = ACTIONS(4860), - [anon_sym_DOT] = ACTIONS(4862), - [anon_sym_EQ_GT] = ACTIONS(4860), - [anon_sym_switch] = ACTIONS(4860), - [anon_sym_DOT_DOT] = ACTIONS(4860), - [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(4860), - [anon_sym_PIPE_PIPE] = ACTIONS(4860), - [anon_sym_QMARK_QMARK] = ACTIONS(4862), - [anon_sym_into] = ACTIONS(4860), - [anon_sym_as] = ACTIONS(4860), - [anon_sym_is] = ACTIONS(4860), - [anon_sym_DASH_GT] = ACTIONS(4860), - [anon_sym_with] = ACTIONS(4860), + [sym__identifier_token] = ACTIONS(3798), + [anon_sym_alias] = ACTIONS(3800), + [anon_sym_global] = ACTIONS(3800), + [anon_sym_LBRACK] = ACTIONS(5632), + [anon_sym_LPAREN] = ACTIONS(5634), + [anon_sym_ref] = ACTIONS(3802), + [anon_sym_LBRACE] = ACTIONS(5636), + [anon_sym_delegate] = ACTIONS(5638), + [anon_sym_file] = ACTIONS(3800), + [anon_sym_where] = ACTIONS(3800), + [anon_sym_notnull] = ACTIONS(3800), + [anon_sym_unmanaged] = ACTIONS(3800), + [anon_sym_scoped] = ACTIONS(5700), + [anon_sym_var] = ACTIONS(5642), + [sym_predefined_type] = ACTIONS(5644), + [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), @@ -510613,25 +510062,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3553] = { - [sym_argument_list] = STATE(2946), - [sym__name] = STATE(3072), - [sym_alias_qualified_name] = STATE(3029), - [sym__simple_name] = STATE(3029), - [sym_qualified_name] = STATE(3029), - [sym_generic_name] = STATE(2985), - [sym_type] = STATE(3383), - [sym_implicit_type] = STATE(3054), - [sym_array_type] = STATE(2956), - [sym__array_base_type] = STATE(7267), - [sym_nullable_type] = STATE(3012), - [sym_pointer_type] = STATE(3012), - [sym__pointer_base_type] = STATE(7693), - [sym_function_pointer_type] = STATE(3012), - [sym_ref_type] = STATE(3054), - [sym_scoped_type] = STATE(3054), - [sym_tuple_type] = STATE(3058), - [sym_identifier] = STATE(2923), - [sym__reserved_identifier] = STATE(2945), + [sym_initializer_expression] = STATE(3824), [sym_preproc_region] = STATE(3553), [sym_preproc_endregion] = STATE(3553), [sym_preproc_line] = STATE(3553), @@ -510641,35 +510072,53 @@ 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), - [sym__identifier_token] = ACTIONS(3887), - [anon_sym_alias] = ACTIONS(3889), - [anon_sym_global] = ACTIONS(3889), - [anon_sym_LBRACK] = ACTIONS(4036), - [anon_sym_LPAREN] = ACTIONS(4038), - [anon_sym_ref] = ACTIONS(4217), - [anon_sym_LBRACE] = ACTIONS(4040), - [anon_sym_delegate] = ACTIONS(4042), - [anon_sym_file] = ACTIONS(3889), - [anon_sym_where] = ACTIONS(3889), - [anon_sym_notnull] = ACTIONS(3889), - [anon_sym_unmanaged] = ACTIONS(3889), - [anon_sym_scoped] = ACTIONS(5646), - [anon_sym_var] = ACTIONS(4046), - [sym_predefined_type] = ACTIONS(4048), - [anon_sym_yield] = ACTIONS(3889), - [anon_sym_when] = ACTIONS(3889), - [anon_sym_from] = ACTIONS(3889), - [anon_sym_into] = ACTIONS(3889), - [anon_sym_join] = ACTIONS(3889), - [anon_sym_on] = ACTIONS(3889), - [anon_sym_equals] = ACTIONS(3889), - [anon_sym_let] = ACTIONS(3889), - [anon_sym_orderby] = ACTIONS(3889), - [anon_sym_ascending] = ACTIONS(3889), - [anon_sym_descending] = ACTIONS(3889), - [anon_sym_group] = ACTIONS(3889), - [anon_sym_by] = ACTIONS(3889), - [anon_sym_select] = ACTIONS(3889), + [anon_sym_LBRACK] = ACTIONS(4846), + [anon_sym_COMMA] = ACTIONS(4850), + [anon_sym_LPAREN] = ACTIONS(4850), + [anon_sym_LBRACE] = ACTIONS(5702), + [anon_sym_LT] = ACTIONS(4856), + [anon_sym_GT] = ACTIONS(4856), + [anon_sym_where] = ACTIONS(4850), + [anon_sym_QMARK] = ACTIONS(5705), + [anon_sym_BANG] = ACTIONS(4856), + [anon_sym_PLUS_PLUS] = ACTIONS(4850), + [anon_sym_DASH_DASH] = ACTIONS(4850), + [anon_sym_PLUS] = ACTIONS(4856), + [anon_sym_DASH] = ACTIONS(4856), + [anon_sym_STAR] = ACTIONS(4850), + [anon_sym_SLASH] = ACTIONS(4856), + [anon_sym_PERCENT] = ACTIONS(4850), + [anon_sym_CARET] = ACTIONS(4850), + [anon_sym_PIPE] = ACTIONS(4856), + [anon_sym_AMP] = ACTIONS(4856), + [anon_sym_LT_LT] = ACTIONS(4850), + [anon_sym_GT_GT] = ACTIONS(4856), + [anon_sym_GT_GT_GT] = ACTIONS(4850), + [anon_sym_EQ_EQ] = ACTIONS(4850), + [anon_sym_BANG_EQ] = ACTIONS(4850), + [anon_sym_GT_EQ] = ACTIONS(4850), + [anon_sym_LT_EQ] = ACTIONS(4850), + [anon_sym_DOT] = ACTIONS(4856), + [anon_sym_switch] = ACTIONS(4850), + [anon_sym_DOT_DOT] = ACTIONS(4850), + [anon_sym_and] = ACTIONS(4850), + [anon_sym_or] = ACTIONS(4856), + [anon_sym_AMP_AMP] = ACTIONS(4850), + [anon_sym_PIPE_PIPE] = ACTIONS(4850), + [anon_sym_QMARK_QMARK] = ACTIONS(4850), + [anon_sym_from] = ACTIONS(4850), + [anon_sym_into] = ACTIONS(4850), + [anon_sym_join] = ACTIONS(4850), + [anon_sym_let] = ACTIONS(4850), + [anon_sym_orderby] = ACTIONS(4850), + [anon_sym_ascending] = ACTIONS(4850), + [anon_sym_descending] = ACTIONS(4850), + [anon_sym_group] = ACTIONS(4850), + [anon_sym_select] = ACTIONS(4850), + [anon_sym_as] = ACTIONS(4856), + [anon_sym_is] = ACTIONS(4850), + [anon_sym_DASH_GT] = ACTIONS(4850), + [anon_sym_with] = ACTIONS(4850), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -510682,6 +510131,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3554] = { + [sym_argument_list] = STATE(3771), + [sym_bracketed_argument_list] = STATE(2892), [sym_preproc_region] = STATE(3554), [sym_preproc_endregion] = STATE(3554), [sym_preproc_line] = STATE(3554), @@ -510691,54 +510142,52 @@ 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), - [anon_sym_EQ] = ACTIONS(5648), - [anon_sym_LBRACK] = ACTIONS(4860), - [anon_sym_LPAREN] = ACTIONS(4860), - [anon_sym_LT] = ACTIONS(4862), - [anon_sym_GT] = ACTIONS(4862), - [anon_sym_QMARK] = ACTIONS(4862), - [anon_sym_BANG] = ACTIONS(4862), - [anon_sym_PLUS_PLUS] = ACTIONS(4860), - [anon_sym_DASH_DASH] = ACTIONS(4860), - [anon_sym_PLUS] = ACTIONS(4862), - [anon_sym_DASH] = ACTIONS(4862), - [anon_sym_STAR] = ACTIONS(4862), - [anon_sym_SLASH] = ACTIONS(4862), - [anon_sym_PERCENT] = ACTIONS(4862), - [anon_sym_CARET] = ACTIONS(4862), - [anon_sym_PIPE] = ACTIONS(4862), - [anon_sym_AMP] = ACTIONS(4862), - [anon_sym_LT_LT] = ACTIONS(4862), - [anon_sym_GT_GT] = ACTIONS(4862), - [anon_sym_GT_GT_GT] = ACTIONS(4862), - [anon_sym_EQ_EQ] = ACTIONS(4860), - [anon_sym_BANG_EQ] = ACTIONS(4860), - [anon_sym_GT_EQ] = ACTIONS(4860), - [anon_sym_LT_EQ] = ACTIONS(4860), - [anon_sym_DOT] = ACTIONS(4862), - [anon_sym_switch] = ACTIONS(4860), - [anon_sym_DOT_DOT] = ACTIONS(4860), - [anon_sym_PLUS_EQ] = ACTIONS(5650), - [anon_sym_DASH_EQ] = ACTIONS(5650), - [anon_sym_STAR_EQ] = ACTIONS(5650), - [anon_sym_SLASH_EQ] = ACTIONS(5650), - [anon_sym_PERCENT_EQ] = ACTIONS(5650), - [anon_sym_AMP_EQ] = ACTIONS(5650), - [anon_sym_CARET_EQ] = ACTIONS(5650), - [anon_sym_PIPE_EQ] = ACTIONS(5650), - [anon_sym_LT_LT_EQ] = ACTIONS(5650), - [anon_sym_GT_GT_EQ] = ACTIONS(5650), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(5650), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(5650), - [anon_sym_AMP_AMP] = ACTIONS(4860), - [anon_sym_PIPE_PIPE] = ACTIONS(4860), - [anon_sym_QMARK_QMARK] = ACTIONS(4862), - [anon_sym_into] = ACTIONS(4860), - [anon_sym_by] = ACTIONS(4860), - [anon_sym_as] = ACTIONS(4860), - [anon_sym_is] = ACTIONS(4860), - [anon_sym_DASH_GT] = ACTIONS(4860), - [anon_sym_with] = ACTIONS(4860), + [anon_sym_LBRACK] = ACTIONS(5650), + [anon_sym_COMMA] = ACTIONS(4838), + [anon_sym_LPAREN] = ACTIONS(5591), + [anon_sym_LT] = ACTIONS(4840), + [anon_sym_GT] = ACTIONS(4840), + [anon_sym_where] = ACTIONS(4838), + [anon_sym_QMARK] = ACTIONS(4840), + [anon_sym_BANG] = ACTIONS(5658), + [anon_sym_PLUS_PLUS] = ACTIONS(5660), + [anon_sym_DASH_DASH] = ACTIONS(5660), + [anon_sym_PLUS] = ACTIONS(4840), + [anon_sym_DASH] = ACTIONS(4840), + [anon_sym_STAR] = ACTIONS(4838), + [anon_sym_SLASH] = ACTIONS(4840), + [anon_sym_PERCENT] = ACTIONS(4838), + [anon_sym_CARET] = ACTIONS(4838), + [anon_sym_PIPE] = ACTIONS(4840), + [anon_sym_AMP] = ACTIONS(4840), + [anon_sym_LT_LT] = ACTIONS(4838), + [anon_sym_GT_GT] = ACTIONS(4840), + [anon_sym_GT_GT_GT] = ACTIONS(4838), + [anon_sym_EQ_EQ] = ACTIONS(4838), + [anon_sym_BANG_EQ] = ACTIONS(4838), + [anon_sym_GT_EQ] = ACTIONS(4838), + [anon_sym_LT_EQ] = ACTIONS(4838), + [anon_sym_DOT] = ACTIONS(4697), + [anon_sym_switch] = ACTIONS(4838), + [anon_sym_DOT_DOT] = ACTIONS(4838), + [anon_sym_and] = ACTIONS(4838), + [anon_sym_or] = ACTIONS(4840), + [anon_sym_AMP_AMP] = ACTIONS(4838), + [anon_sym_PIPE_PIPE] = ACTIONS(4838), + [anon_sym_QMARK_QMARK] = ACTIONS(4838), + [anon_sym_from] = ACTIONS(4838), + [anon_sym_into] = ACTIONS(4838), + [anon_sym_join] = ACTIONS(4838), + [anon_sym_let] = ACTIONS(4838), + [anon_sym_orderby] = ACTIONS(4838), + [anon_sym_ascending] = ACTIONS(4838), + [anon_sym_descending] = ACTIONS(4838), + [anon_sym_group] = ACTIONS(4838), + [anon_sym_select] = ACTIONS(4838), + [anon_sym_as] = ACTIONS(4840), + [anon_sym_is] = ACTIONS(4838), + [anon_sym_DASH_GT] = ACTIONS(4699), + [anon_sym_with] = ACTIONS(4838), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -510751,6 +510200,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3555] = { + [sym_argument_list] = STATE(3771), + [sym_bracketed_argument_list] = STATE(2892), [sym_preproc_region] = STATE(3555), [sym_preproc_endregion] = STATE(3555), [sym_preproc_line] = STATE(3555), @@ -510760,54 +510211,52 @@ 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), - [sym__identifier_token] = ACTIONS(4953), - [anon_sym_extern] = ACTIONS(4953), - [anon_sym_alias] = ACTIONS(4953), - [anon_sym_global] = ACTIONS(4953), - [anon_sym_unsafe] = ACTIONS(4953), - [anon_sym_static] = ACTIONS(4953), - [anon_sym_LBRACK] = ACTIONS(4955), - [anon_sym_LPAREN] = ACTIONS(4955), - [anon_sym_ref] = ACTIONS(4953), - [anon_sym_delegate] = ACTIONS(4953), - [anon_sym_abstract] = ACTIONS(4953), - [anon_sym_async] = ACTIONS(4953), - [anon_sym_const] = ACTIONS(4953), - [anon_sym_file] = ACTIONS(4953), - [anon_sym_fixed] = ACTIONS(4953), - [anon_sym_internal] = ACTIONS(4953), - [anon_sym_new] = ACTIONS(4953), - [anon_sym_override] = ACTIONS(4953), - [anon_sym_partial] = ACTIONS(4953), - [anon_sym_private] = ACTIONS(4953), - [anon_sym_protected] = ACTIONS(4953), - [anon_sym_public] = ACTIONS(4953), - [anon_sym_readonly] = ACTIONS(4953), - [anon_sym_required] = ACTIONS(4953), - [anon_sym_sealed] = ACTIONS(4953), - [anon_sym_virtual] = ACTIONS(4953), - [anon_sym_volatile] = ACTIONS(4953), - [anon_sym_where] = ACTIONS(4953), - [anon_sym_notnull] = ACTIONS(4953), - [anon_sym_unmanaged] = ACTIONS(4953), - [anon_sym_scoped] = ACTIONS(4953), - [anon_sym_var] = ACTIONS(4953), - [sym_predefined_type] = ACTIONS(4953), - [anon_sym_yield] = ACTIONS(4953), - [anon_sym_when] = ACTIONS(4953), - [anon_sym_from] = ACTIONS(4953), - [anon_sym_into] = ACTIONS(4953), - [anon_sym_join] = ACTIONS(4953), - [anon_sym_on] = ACTIONS(4953), - [anon_sym_equals] = ACTIONS(4953), - [anon_sym_let] = ACTIONS(4953), - [anon_sym_orderby] = ACTIONS(4953), - [anon_sym_ascending] = ACTIONS(4953), - [anon_sym_descending] = ACTIONS(4953), - [anon_sym_group] = ACTIONS(4953), - [anon_sym_by] = ACTIONS(4953), - [anon_sym_select] = ACTIONS(4953), - [aux_sym_preproc_if_token1] = ACTIONS(4955), + [anon_sym_LBRACK] = ACTIONS(5650), + [anon_sym_COMMA] = ACTIONS(5709), + [anon_sym_LPAREN] = ACTIONS(5591), + [anon_sym_LT] = ACTIONS(5654), + [anon_sym_GT] = ACTIONS(5654), + [anon_sym_where] = ACTIONS(5709), + [anon_sym_QMARK] = ACTIONS(5656), + [anon_sym_BANG] = ACTIONS(5658), + [anon_sym_PLUS_PLUS] = ACTIONS(5660), + [anon_sym_DASH_DASH] = ACTIONS(5660), + [anon_sym_PLUS] = ACTIONS(5662), + [anon_sym_DASH] = ACTIONS(5662), + [anon_sym_STAR] = ACTIONS(5664), + [anon_sym_SLASH] = ACTIONS(5666), + [anon_sym_PERCENT] = ACTIONS(5664), + [anon_sym_CARET] = ACTIONS(5668), + [anon_sym_PIPE] = ACTIONS(5670), + [anon_sym_AMP] = ACTIONS(5672), + [anon_sym_LT_LT] = ACTIONS(5674), + [anon_sym_GT_GT] = ACTIONS(5676), + [anon_sym_GT_GT_GT] = ACTIONS(5674), + [anon_sym_EQ_EQ] = ACTIONS(5678), + [anon_sym_BANG_EQ] = ACTIONS(5678), + [anon_sym_GT_EQ] = ACTIONS(5680), + [anon_sym_LT_EQ] = ACTIONS(5680), + [anon_sym_DOT] = ACTIONS(4697), + [anon_sym_switch] = ACTIONS(5682), + [anon_sym_DOT_DOT] = ACTIONS(5684), + [anon_sym_and] = ACTIONS(5709), + [anon_sym_or] = ACTIONS(5711), + [anon_sym_AMP_AMP] = ACTIONS(5688), + [anon_sym_PIPE_PIPE] = ACTIONS(5690), + [anon_sym_QMARK_QMARK] = ACTIONS(5692), + [anon_sym_from] = ACTIONS(5709), + [anon_sym_into] = ACTIONS(5709), + [anon_sym_join] = ACTIONS(5709), + [anon_sym_let] = ACTIONS(5709), + [anon_sym_orderby] = ACTIONS(5709), + [anon_sym_ascending] = ACTIONS(5709), + [anon_sym_descending] = ACTIONS(5709), + [anon_sym_group] = ACTIONS(5709), + [anon_sym_select] = ACTIONS(5709), + [anon_sym_as] = ACTIONS(5694), + [anon_sym_is] = ACTIONS(5696), + [anon_sym_DASH_GT] = ACTIONS(4699), + [anon_sym_with] = ACTIONS(5698), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -510820,6 +510269,25 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3556] = { + [sym_argument_list] = STATE(2895), + [sym__name] = STATE(4060), + [sym_alias_qualified_name] = STATE(2907), + [sym__simple_name] = STATE(2907), + [sym_qualified_name] = STATE(2907), + [sym_generic_name] = STATE(2950), + [sym_type] = STATE(2871), + [sym_implicit_type] = STATE(2926), + [sym_array_type] = STATE(4037), + [sym__array_base_type] = STATE(7061), + [sym_nullable_type] = STATE(2942), + [sym_pointer_type] = STATE(2942), + [sym__pointer_base_type] = STATE(7640), + [sym_function_pointer_type] = STATE(2942), + [sym_ref_type] = STATE(2926), + [sym_scoped_type] = STATE(2926), + [sym_tuple_type] = STATE(2943), + [sym_identifier] = STATE(3741), + [sym__reserved_identifier] = STATE(2900), [sym_preproc_region] = STATE(3556), [sym_preproc_endregion] = STATE(3556), [sym_preproc_line] = STATE(3556), @@ -510829,54 +510297,35 @@ 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(5482), - [anon_sym_LBRACK] = ACTIONS(4860), - [anon_sym_COMMA] = ACTIONS(4860), - [anon_sym_LPAREN] = ACTIONS(4860), - [anon_sym_RPAREN] = ACTIONS(5652), - [anon_sym_LT] = ACTIONS(4862), - [anon_sym_GT] = ACTIONS(4862), - [anon_sym_QMARK] = ACTIONS(4862), - [anon_sym_BANG] = ACTIONS(4862), - [anon_sym_PLUS_PLUS] = ACTIONS(4860), - [anon_sym_DASH_DASH] = ACTIONS(4860), - [anon_sym_PLUS] = ACTIONS(4862), - [anon_sym_DASH] = ACTIONS(4862), - [anon_sym_STAR] = ACTIONS(4862), - [anon_sym_SLASH] = ACTIONS(4862), - [anon_sym_PERCENT] = ACTIONS(4862), - [anon_sym_CARET] = ACTIONS(4862), - [anon_sym_PIPE] = ACTIONS(4862), - [anon_sym_AMP] = ACTIONS(4862), - [anon_sym_LT_LT] = ACTIONS(4862), - [anon_sym_GT_GT] = ACTIONS(4862), - [anon_sym_GT_GT_GT] = ACTIONS(4862), - [anon_sym_EQ_EQ] = ACTIONS(4860), - [anon_sym_BANG_EQ] = ACTIONS(4860), - [anon_sym_GT_EQ] = ACTIONS(4860), - [anon_sym_LT_EQ] = ACTIONS(4860), - [anon_sym_DOT] = ACTIONS(4862), - [anon_sym_switch] = ACTIONS(4860), - [anon_sym_DOT_DOT] = ACTIONS(4860), - [anon_sym_PLUS_EQ] = ACTIONS(5484), - [anon_sym_DASH_EQ] = ACTIONS(5484), - [anon_sym_STAR_EQ] = ACTIONS(5484), - [anon_sym_SLASH_EQ] = ACTIONS(5484), - [anon_sym_PERCENT_EQ] = ACTIONS(5484), - [anon_sym_AMP_EQ] = ACTIONS(5484), - [anon_sym_CARET_EQ] = ACTIONS(5484), - [anon_sym_PIPE_EQ] = ACTIONS(5484), - [anon_sym_LT_LT_EQ] = ACTIONS(5484), - [anon_sym_GT_GT_EQ] = ACTIONS(5484), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(5484), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(5484), - [anon_sym_AMP_AMP] = ACTIONS(4860), - [anon_sym_PIPE_PIPE] = ACTIONS(4860), - [anon_sym_QMARK_QMARK] = ACTIONS(4862), - [anon_sym_as] = ACTIONS(4860), - [anon_sym_is] = ACTIONS(4860), - [anon_sym_DASH_GT] = ACTIONS(4860), - [anon_sym_with] = ACTIONS(4860), + [sym__identifier_token] = ACTIONS(3814), + [anon_sym_alias] = ACTIONS(3816), + [anon_sym_global] = ACTIONS(3816), + [anon_sym_LBRACK] = ACTIONS(5713), + [anon_sym_LPAREN] = ACTIONS(5715), + [anon_sym_ref] = ACTIONS(4165), + [anon_sym_LBRACE] = ACTIONS(5717), + [anon_sym_delegate] = ACTIONS(5719), + [anon_sym_file] = ACTIONS(3816), + [anon_sym_where] = ACTIONS(3816), + [anon_sym_notnull] = ACTIONS(3816), + [anon_sym_unmanaged] = ACTIONS(3816), + [anon_sym_scoped] = ACTIONS(5721), + [anon_sym_var] = ACTIONS(5723), + [sym_predefined_type] = ACTIONS(5725), + [anon_sym_yield] = ACTIONS(3816), + [anon_sym_when] = ACTIONS(3816), + [anon_sym_from] = ACTIONS(3816), + [anon_sym_into] = ACTIONS(3816), + [anon_sym_join] = ACTIONS(3816), + [anon_sym_on] = ACTIONS(3816), + [anon_sym_equals] = ACTIONS(3816), + [anon_sym_let] = ACTIONS(3816), + [anon_sym_orderby] = ACTIONS(3816), + [anon_sym_ascending] = ACTIONS(3816), + [anon_sym_descending] = ACTIONS(3816), + [anon_sym_group] = ACTIONS(3816), + [anon_sym_by] = ACTIONS(3816), + [anon_sym_select] = ACTIONS(3816), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -510889,6 +510338,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3557] = { + [sym__name] = STATE(6400), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(4068), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(4073), + [sym_type] = STATE(6999), + [sym_implicit_type] = STATE(7035), + [sym_array_type] = STATE(6706), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7421), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(7035), + [sym_scoped_type] = STATE(7035), + [sym_tuple_type] = STATE(6601), + [sym_identifier] = STATE(4081), + [sym__reserved_identifier] = STATE(3654), [sym_preproc_region] = STATE(3557), [sym_preproc_endregion] = STATE(3557), [sym_preproc_line] = STATE(3557), @@ -510898,54 +510365,36 @@ 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), - [anon_sym_EQ] = ACTIONS(5654), - [anon_sym_LBRACK] = ACTIONS(4860), - [anon_sym_LPAREN] = ACTIONS(4860), - [anon_sym_LT] = ACTIONS(4862), - [anon_sym_GT] = ACTIONS(4862), - [anon_sym_QMARK] = ACTIONS(4862), - [anon_sym_BANG] = ACTIONS(4862), - [anon_sym_PLUS_PLUS] = ACTIONS(4860), - [anon_sym_DASH_DASH] = ACTIONS(4860), - [anon_sym_PLUS] = ACTIONS(4862), - [anon_sym_DASH] = ACTIONS(4862), - [anon_sym_STAR] = ACTIONS(4862), - [anon_sym_SLASH] = ACTIONS(4862), - [anon_sym_PERCENT] = ACTIONS(4862), - [anon_sym_CARET] = ACTIONS(4862), - [anon_sym_PIPE] = ACTIONS(4862), - [anon_sym_AMP] = ACTIONS(4862), - [anon_sym_LT_LT] = ACTIONS(4862), - [anon_sym_GT_GT] = ACTIONS(4862), - [anon_sym_GT_GT_GT] = ACTIONS(4862), - [anon_sym_EQ_EQ] = ACTIONS(4860), - [anon_sym_BANG_EQ] = ACTIONS(4860), - [anon_sym_GT_EQ] = ACTIONS(4860), - [anon_sym_LT_EQ] = ACTIONS(4860), - [anon_sym_DOT] = ACTIONS(4862), - [anon_sym_switch] = ACTIONS(4860), - [anon_sym_DOT_DOT] = ACTIONS(4860), - [anon_sym_PLUS_EQ] = ACTIONS(5656), - [anon_sym_DASH_EQ] = ACTIONS(5656), - [anon_sym_STAR_EQ] = ACTIONS(5656), - [anon_sym_SLASH_EQ] = ACTIONS(5656), - [anon_sym_PERCENT_EQ] = ACTIONS(5656), - [anon_sym_AMP_EQ] = ACTIONS(5656), - [anon_sym_CARET_EQ] = ACTIONS(5656), - [anon_sym_PIPE_EQ] = ACTIONS(5656), - [anon_sym_LT_LT_EQ] = ACTIONS(5656), - [anon_sym_GT_GT_EQ] = ACTIONS(5656), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(5656), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(5656), - [anon_sym_AMP_AMP] = ACTIONS(4860), - [anon_sym_PIPE_PIPE] = ACTIONS(4860), - [anon_sym_QMARK_QMARK] = ACTIONS(4862), - [anon_sym_into] = ACTIONS(4860), - [anon_sym_equals] = ACTIONS(4860), - [anon_sym_as] = ACTIONS(4860), - [anon_sym_is] = ACTIONS(4860), - [anon_sym_DASH_GT] = ACTIONS(4860), - [anon_sym_with] = ACTIONS(4860), + [aux_sym_type_argument_list_repeat1] = STATE(7004), + [sym__identifier_token] = ACTIONS(2965), + [anon_sym_alias] = ACTIONS(2969), + [anon_sym_global] = ACTIONS(2969), + [anon_sym_COMMA] = ACTIONS(5168), + [anon_sym_LPAREN] = ACTIONS(2977), + [anon_sym_ref] = ACTIONS(5170), + [anon_sym_delegate] = ACTIONS(5172), + [anon_sym_file] = ACTIONS(2969), + [anon_sym_GT] = ACTIONS(5727), + [anon_sym_where] = ACTIONS(2969), + [anon_sym_notnull] = ACTIONS(2969), + [anon_sym_unmanaged] = ACTIONS(2969), + [anon_sym_scoped] = ACTIONS(5178), + [anon_sym_var] = ACTIONS(4705), + [sym_predefined_type] = ACTIONS(5180), + [anon_sym_yield] = ACTIONS(2969), + [anon_sym_when] = ACTIONS(2969), + [anon_sym_from] = ACTIONS(2969), + [anon_sym_into] = ACTIONS(2969), + [anon_sym_join] = ACTIONS(2969), + [anon_sym_on] = ACTIONS(2969), + [anon_sym_equals] = ACTIONS(2969), + [anon_sym_let] = ACTIONS(2969), + [anon_sym_orderby] = ACTIONS(2969), + [anon_sym_ascending] = ACTIONS(2969), + [anon_sym_descending] = ACTIONS(2969), + [anon_sym_group] = ACTIONS(2969), + [anon_sym_by] = ACTIONS(2969), + [anon_sym_select] = ACTIONS(2969), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -510958,8 +510407,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3558] = { - [sym_argument_list] = STATE(3886), - [sym_bracketed_argument_list] = STATE(2902), [sym_preproc_region] = STATE(3558), [sym_preproc_endregion] = STATE(3558), [sym_preproc_line] = STATE(3558), @@ -510969,52 +510416,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_LBRACK] = ACTIONS(5658), - [anon_sym_COMMA] = ACTIONS(5660), - [anon_sym_LPAREN] = ACTIONS(5624), - [anon_sym_LT] = ACTIONS(5662), - [anon_sym_GT] = ACTIONS(5662), - [anon_sym_where] = ACTIONS(5660), - [anon_sym_QMARK] = ACTIONS(5664), - [anon_sym_BANG] = ACTIONS(5666), - [anon_sym_PLUS_PLUS] = ACTIONS(5668), - [anon_sym_DASH_DASH] = ACTIONS(5668), - [anon_sym_PLUS] = ACTIONS(5670), - [anon_sym_DASH] = ACTIONS(5670), - [anon_sym_STAR] = ACTIONS(5672), - [anon_sym_SLASH] = ACTIONS(5674), - [anon_sym_PERCENT] = ACTIONS(5672), - [anon_sym_CARET] = ACTIONS(5676), - [anon_sym_PIPE] = ACTIONS(5664), - [anon_sym_AMP] = ACTIONS(5678), - [anon_sym_LT_LT] = ACTIONS(5680), - [anon_sym_GT_GT] = ACTIONS(5682), - [anon_sym_GT_GT_GT] = ACTIONS(5680), - [anon_sym_EQ_EQ] = ACTIONS(5684), - [anon_sym_BANG_EQ] = ACTIONS(5684), - [anon_sym_GT_EQ] = ACTIONS(5686), - [anon_sym_LT_EQ] = ACTIONS(5686), - [anon_sym_DOT] = ACTIONS(4733), - [anon_sym_switch] = ACTIONS(5688), - [anon_sym_DOT_DOT] = ACTIONS(5690), - [anon_sym_and] = ACTIONS(5660), - [anon_sym_or] = ACTIONS(5664), - [anon_sym_AMP_AMP] = ACTIONS(5660), - [anon_sym_PIPE_PIPE] = ACTIONS(5660), - [anon_sym_QMARK_QMARK] = ACTIONS(5660), - [anon_sym_from] = ACTIONS(5660), - [anon_sym_into] = ACTIONS(5660), - [anon_sym_join] = ACTIONS(5660), - [anon_sym_let] = ACTIONS(5660), - [anon_sym_orderby] = ACTIONS(5660), - [anon_sym_ascending] = ACTIONS(5660), - [anon_sym_descending] = ACTIONS(5660), - [anon_sym_group] = ACTIONS(5660), - [anon_sym_select] = ACTIONS(5660), - [anon_sym_as] = ACTIONS(5692), - [anon_sym_is] = ACTIONS(5694), - [anon_sym_DASH_GT] = ACTIONS(4719), - [anon_sym_with] = ACTIONS(5696), + [sym__identifier_token] = ACTIONS(5134), + [anon_sym_extern] = ACTIONS(5134), + [anon_sym_alias] = ACTIONS(5134), + [anon_sym_global] = ACTIONS(5134), + [anon_sym_unsafe] = ACTIONS(5134), + [anon_sym_static] = ACTIONS(5134), + [anon_sym_LBRACK] = ACTIONS(5136), + [anon_sym_LPAREN] = ACTIONS(5136), + [anon_sym_ref] = ACTIONS(5134), + [anon_sym_delegate] = ACTIONS(5134), + [anon_sym_abstract] = ACTIONS(5134), + [anon_sym_async] = ACTIONS(5134), + [anon_sym_const] = ACTIONS(5134), + [anon_sym_file] = ACTIONS(5134), + [anon_sym_fixed] = ACTIONS(5134), + [anon_sym_internal] = ACTIONS(5134), + [anon_sym_new] = ACTIONS(5134), + [anon_sym_override] = ACTIONS(5134), + [anon_sym_partial] = ACTIONS(5134), + [anon_sym_private] = ACTIONS(5134), + [anon_sym_protected] = ACTIONS(5134), + [anon_sym_public] = ACTIONS(5134), + [anon_sym_readonly] = ACTIONS(5134), + [anon_sym_required] = ACTIONS(5134), + [anon_sym_sealed] = ACTIONS(5134), + [anon_sym_virtual] = ACTIONS(5134), + [anon_sym_volatile] = ACTIONS(5134), + [anon_sym_where] = ACTIONS(5134), + [anon_sym_notnull] = ACTIONS(5134), + [anon_sym_unmanaged] = ACTIONS(5134), + [anon_sym_scoped] = ACTIONS(5134), + [anon_sym_var] = ACTIONS(5134), + [sym_predefined_type] = ACTIONS(5134), + [anon_sym_yield] = ACTIONS(5134), + [anon_sym_when] = ACTIONS(5134), + [anon_sym_from] = ACTIONS(5134), + [anon_sym_into] = ACTIONS(5134), + [anon_sym_join] = ACTIONS(5134), + [anon_sym_on] = ACTIONS(5134), + [anon_sym_equals] = ACTIONS(5134), + [anon_sym_let] = ACTIONS(5134), + [anon_sym_orderby] = ACTIONS(5134), + [anon_sym_ascending] = ACTIONS(5134), + [anon_sym_descending] = ACTIONS(5134), + [anon_sym_group] = ACTIONS(5134), + [anon_sym_by] = ACTIONS(5134), + [anon_sym_select] = ACTIONS(5134), + [aux_sym_preproc_if_token1] = ACTIONS(5136), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -511027,6 +510476,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3559] = { + [sym_argument_list] = STATE(3771), + [sym_bracketed_argument_list] = STATE(2892), [sym_preproc_region] = STATE(3559), [sym_preproc_endregion] = STATE(3559), [sym_preproc_line] = STATE(3559), @@ -511036,54 +510487,52 @@ 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(4973), - [anon_sym_extern] = ACTIONS(4973), - [anon_sym_alias] = ACTIONS(4973), - [anon_sym_global] = ACTIONS(4973), - [anon_sym_unsafe] = ACTIONS(4973), - [anon_sym_static] = ACTIONS(4973), - [anon_sym_LBRACK] = ACTIONS(4975), - [anon_sym_LPAREN] = ACTIONS(4975), - [anon_sym_ref] = ACTIONS(4973), - [anon_sym_delegate] = ACTIONS(4973), - [anon_sym_abstract] = ACTIONS(4973), - [anon_sym_async] = ACTIONS(4973), - [anon_sym_const] = ACTIONS(4973), - [anon_sym_file] = ACTIONS(4973), - [anon_sym_fixed] = ACTIONS(4973), - [anon_sym_internal] = ACTIONS(4973), - [anon_sym_new] = ACTIONS(4973), - [anon_sym_override] = ACTIONS(4973), - [anon_sym_partial] = ACTIONS(4973), - [anon_sym_private] = ACTIONS(4973), - [anon_sym_protected] = ACTIONS(4973), - [anon_sym_public] = ACTIONS(4973), - [anon_sym_readonly] = ACTIONS(4973), - [anon_sym_required] = ACTIONS(4973), - [anon_sym_sealed] = ACTIONS(4973), - [anon_sym_virtual] = ACTIONS(4973), - [anon_sym_volatile] = ACTIONS(4973), - [anon_sym_where] = ACTIONS(4973), - [anon_sym_notnull] = ACTIONS(4973), - [anon_sym_unmanaged] = ACTIONS(4973), - [anon_sym_scoped] = ACTIONS(4973), - [anon_sym_var] = ACTIONS(4973), - [sym_predefined_type] = ACTIONS(4973), - [anon_sym_yield] = ACTIONS(4973), - [anon_sym_when] = ACTIONS(4973), - [anon_sym_from] = ACTIONS(4973), - [anon_sym_into] = ACTIONS(4973), - [anon_sym_join] = ACTIONS(4973), - [anon_sym_on] = ACTIONS(4973), - [anon_sym_equals] = ACTIONS(4973), - [anon_sym_let] = ACTIONS(4973), - [anon_sym_orderby] = ACTIONS(4973), - [anon_sym_ascending] = ACTIONS(4973), - [anon_sym_descending] = ACTIONS(4973), - [anon_sym_group] = ACTIONS(4973), - [anon_sym_by] = ACTIONS(4973), - [anon_sym_select] = ACTIONS(4973), - [aux_sym_preproc_if_token1] = ACTIONS(4975), + [anon_sym_LBRACK] = ACTIONS(5650), + [anon_sym_COMMA] = ACTIONS(1147), + [anon_sym_LPAREN] = ACTIONS(5591), + [anon_sym_LT] = ACTIONS(1161), + [anon_sym_GT] = ACTIONS(1161), + [anon_sym_where] = ACTIONS(1147), + [anon_sym_QMARK] = ACTIONS(1161), + [anon_sym_BANG] = ACTIONS(5658), + [anon_sym_PLUS_PLUS] = ACTIONS(5660), + [anon_sym_DASH_DASH] = ACTIONS(5660), + [anon_sym_PLUS] = ACTIONS(1161), + [anon_sym_DASH] = ACTIONS(1161), + [anon_sym_STAR] = ACTIONS(1147), + [anon_sym_SLASH] = ACTIONS(1161), + [anon_sym_PERCENT] = ACTIONS(1147), + [anon_sym_CARET] = ACTIONS(1147), + [anon_sym_PIPE] = ACTIONS(1161), + [anon_sym_AMP] = ACTIONS(1161), + [anon_sym_LT_LT] = ACTIONS(1147), + [anon_sym_GT_GT] = ACTIONS(1161), + [anon_sym_GT_GT_GT] = ACTIONS(1147), + [anon_sym_EQ_EQ] = ACTIONS(1147), + [anon_sym_BANG_EQ] = ACTIONS(1147), + [anon_sym_GT_EQ] = ACTIONS(1147), + [anon_sym_LT_EQ] = ACTIONS(1147), + [anon_sym_DOT] = ACTIONS(4697), + [anon_sym_switch] = ACTIONS(1147), + [anon_sym_DOT_DOT] = ACTIONS(5684), + [anon_sym_and] = ACTIONS(1147), + [anon_sym_or] = ACTIONS(1161), + [anon_sym_AMP_AMP] = ACTIONS(1147), + [anon_sym_PIPE_PIPE] = ACTIONS(1147), + [anon_sym_QMARK_QMARK] = ACTIONS(1147), + [anon_sym_from] = ACTIONS(1147), + [anon_sym_into] = ACTIONS(1147), + [anon_sym_join] = ACTIONS(1147), + [anon_sym_let] = ACTIONS(1147), + [anon_sym_orderby] = ACTIONS(1147), + [anon_sym_ascending] = ACTIONS(1147), + [anon_sym_descending] = ACTIONS(1147), + [anon_sym_group] = ACTIONS(1147), + [anon_sym_select] = ACTIONS(1147), + [anon_sym_as] = ACTIONS(1161), + [anon_sym_is] = ACTIONS(1147), + [anon_sym_DASH_GT] = ACTIONS(4699), + [anon_sym_with] = ACTIONS(1147), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -511096,6 +510545,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3560] = { + [sym_argument_list] = STATE(3771), + [sym_bracketed_argument_list] = STATE(2892), [sym_preproc_region] = STATE(3560), [sym_preproc_endregion] = STATE(3560), [sym_preproc_line] = STATE(3560), @@ -511105,54 +510556,52 @@ 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), - [sym__identifier_token] = ACTIONS(4749), - [anon_sym_extern] = ACTIONS(4749), - [anon_sym_alias] = ACTIONS(4749), - [anon_sym_global] = ACTIONS(4749), - [anon_sym_unsafe] = ACTIONS(4749), - [anon_sym_static] = ACTIONS(4749), - [anon_sym_LBRACK] = ACTIONS(4751), - [anon_sym_LPAREN] = ACTIONS(4751), - [anon_sym_ref] = ACTIONS(4749), - [anon_sym_delegate] = ACTIONS(4749), - [anon_sym_abstract] = ACTIONS(4749), - [anon_sym_async] = ACTIONS(4749), - [anon_sym_const] = ACTIONS(4749), - [anon_sym_file] = ACTIONS(4749), - [anon_sym_fixed] = ACTIONS(4749), - [anon_sym_internal] = ACTIONS(4749), - [anon_sym_new] = ACTIONS(4749), - [anon_sym_override] = ACTIONS(4749), - [anon_sym_partial] = ACTIONS(4749), - [anon_sym_private] = ACTIONS(4749), - [anon_sym_protected] = ACTIONS(4749), - [anon_sym_public] = ACTIONS(4749), - [anon_sym_readonly] = ACTIONS(4749), - [anon_sym_required] = ACTIONS(4749), - [anon_sym_sealed] = ACTIONS(4749), - [anon_sym_virtual] = ACTIONS(4749), - [anon_sym_volatile] = ACTIONS(4749), - [anon_sym_where] = ACTIONS(4749), - [anon_sym_notnull] = ACTIONS(4749), - [anon_sym_unmanaged] = ACTIONS(4749), - [anon_sym_scoped] = ACTIONS(4749), - [anon_sym_var] = ACTIONS(4749), - [sym_predefined_type] = ACTIONS(4749), - [anon_sym_yield] = ACTIONS(4749), - [anon_sym_when] = ACTIONS(4749), - [anon_sym_from] = ACTIONS(4749), - [anon_sym_into] = ACTIONS(4749), - [anon_sym_join] = ACTIONS(4749), - [anon_sym_on] = ACTIONS(4749), - [anon_sym_equals] = ACTIONS(4749), - [anon_sym_let] = ACTIONS(4749), - [anon_sym_orderby] = ACTIONS(4749), - [anon_sym_ascending] = ACTIONS(4749), - [anon_sym_descending] = ACTIONS(4749), - [anon_sym_group] = ACTIONS(4749), - [anon_sym_by] = ACTIONS(4749), - [anon_sym_select] = ACTIONS(4749), - [aux_sym_preproc_if_token1] = ACTIONS(4751), + [anon_sym_LBRACK] = ACTIONS(5650), + [anon_sym_COMMA] = ACTIONS(4817), + [anon_sym_LPAREN] = ACTIONS(5591), + [anon_sym_LT] = ACTIONS(4821), + [anon_sym_GT] = ACTIONS(4821), + [anon_sym_where] = ACTIONS(4817), + [anon_sym_QMARK] = ACTIONS(4821), + [anon_sym_BANG] = ACTIONS(5658), + [anon_sym_PLUS_PLUS] = ACTIONS(5660), + [anon_sym_DASH_DASH] = ACTIONS(5660), + [anon_sym_PLUS] = ACTIONS(4821), + [anon_sym_DASH] = ACTIONS(4821), + [anon_sym_STAR] = ACTIONS(4817), + [anon_sym_SLASH] = ACTIONS(4821), + [anon_sym_PERCENT] = ACTIONS(4817), + [anon_sym_CARET] = ACTIONS(4817), + [anon_sym_PIPE] = ACTIONS(4821), + [anon_sym_AMP] = ACTIONS(4821), + [anon_sym_LT_LT] = ACTIONS(4817), + [anon_sym_GT_GT] = ACTIONS(4821), + [anon_sym_GT_GT_GT] = ACTIONS(4817), + [anon_sym_EQ_EQ] = ACTIONS(4817), + [anon_sym_BANG_EQ] = ACTIONS(4817), + [anon_sym_GT_EQ] = ACTIONS(4817), + [anon_sym_LT_EQ] = ACTIONS(4817), + [anon_sym_DOT] = ACTIONS(4697), + [anon_sym_switch] = ACTIONS(4817), + [anon_sym_DOT_DOT] = ACTIONS(4817), + [anon_sym_and] = ACTIONS(4817), + [anon_sym_or] = ACTIONS(4821), + [anon_sym_AMP_AMP] = ACTIONS(4817), + [anon_sym_PIPE_PIPE] = ACTIONS(4817), + [anon_sym_QMARK_QMARK] = ACTIONS(4817), + [anon_sym_from] = ACTIONS(4817), + [anon_sym_into] = ACTIONS(4817), + [anon_sym_join] = 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_select] = ACTIONS(4817), + [anon_sym_as] = ACTIONS(4821), + [anon_sym_is] = ACTIONS(4817), + [anon_sym_DASH_GT] = ACTIONS(4699), + [anon_sym_with] = ACTIONS(4817), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -511165,7 +510614,25 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3561] = { - [sym_initializer_expression] = STATE(3897), + [sym_argument_list] = STATE(3194), + [sym__name] = STATE(3488), + [sym_alias_qualified_name] = STATE(3304), + [sym__simple_name] = STATE(3304), + [sym_qualified_name] = STATE(3304), + [sym_generic_name] = STATE(3241), + [sym_type] = STATE(3130), + [sym_implicit_type] = STATE(3222), + [sym_array_type] = STATE(3232), + [sym__array_base_type] = STATE(7208), + [sym_nullable_type] = STATE(3216), + [sym_pointer_type] = STATE(3216), + [sym__pointer_base_type] = STATE(7508), + [sym_function_pointer_type] = STATE(3216), + [sym_ref_type] = STATE(3222), + [sym_scoped_type] = STATE(3222), + [sym_tuple_type] = STATE(3308), + [sym_identifier] = STATE(3177), + [sym__reserved_identifier] = STATE(3205), [sym_preproc_region] = STATE(3561), [sym_preproc_endregion] = STATE(3561), [sym_preproc_line] = STATE(3561), @@ -511175,53 +510642,35 @@ 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_LBRACK] = ACTIONS(4829), - [anon_sym_COMMA] = ACTIONS(4829), - [anon_sym_LPAREN] = ACTIONS(4829), - [anon_sym_LBRACE] = ACTIONS(1633), - [anon_sym_LT] = ACTIONS(4831), - [anon_sym_GT] = ACTIONS(4831), - [anon_sym_where] = ACTIONS(4829), - [anon_sym_QMARK] = ACTIONS(4831), - [anon_sym_BANG] = ACTIONS(4831), - [anon_sym_PLUS_PLUS] = ACTIONS(4829), - [anon_sym_DASH_DASH] = ACTIONS(4829), - [anon_sym_PLUS] = ACTIONS(4831), - [anon_sym_DASH] = ACTIONS(4831), - [anon_sym_STAR] = ACTIONS(4829), - [anon_sym_SLASH] = ACTIONS(4831), - [anon_sym_PERCENT] = ACTIONS(4829), - [anon_sym_CARET] = ACTIONS(4829), - [anon_sym_PIPE] = ACTIONS(4831), - [anon_sym_AMP] = ACTIONS(4831), - [anon_sym_LT_LT] = ACTIONS(4829), - [anon_sym_GT_GT] = ACTIONS(4831), - [anon_sym_GT_GT_GT] = ACTIONS(4829), - [anon_sym_EQ_EQ] = ACTIONS(4829), - [anon_sym_BANG_EQ] = ACTIONS(4829), - [anon_sym_GT_EQ] = ACTIONS(4829), - [anon_sym_LT_EQ] = ACTIONS(4829), - [anon_sym_DOT] = ACTIONS(4831), - [anon_sym_switch] = ACTIONS(4829), - [anon_sym_DOT_DOT] = ACTIONS(4829), - [anon_sym_and] = ACTIONS(4829), - [anon_sym_or] = ACTIONS(4831), - [anon_sym_AMP_AMP] = ACTIONS(4829), - [anon_sym_PIPE_PIPE] = ACTIONS(4829), - [anon_sym_QMARK_QMARK] = ACTIONS(4829), - [anon_sym_from] = ACTIONS(4829), - [anon_sym_into] = ACTIONS(4829), - [anon_sym_join] = ACTIONS(4829), - [anon_sym_let] = ACTIONS(4829), - [anon_sym_orderby] = ACTIONS(4829), - [anon_sym_ascending] = ACTIONS(4829), - [anon_sym_descending] = ACTIONS(4829), - [anon_sym_group] = ACTIONS(4829), - [anon_sym_select] = ACTIONS(4829), - [anon_sym_as] = ACTIONS(4831), - [anon_sym_is] = ACTIONS(4829), - [anon_sym_DASH_GT] = ACTIONS(4829), - [anon_sym_with] = ACTIONS(4829), + [sym__identifier_token] = ACTIONS(3798), + [anon_sym_alias] = ACTIONS(3800), + [anon_sym_global] = ACTIONS(3800), + [anon_sym_LBRACK] = ACTIONS(5632), + [anon_sym_LPAREN] = ACTIONS(5634), + [anon_sym_ref] = ACTIONS(4169), + [anon_sym_LBRACE] = ACTIONS(5636), + [anon_sym_delegate] = ACTIONS(5638), + [anon_sym_file] = ACTIONS(3800), + [anon_sym_where] = ACTIONS(3800), + [anon_sym_notnull] = ACTIONS(3800), + [anon_sym_unmanaged] = ACTIONS(3800), + [anon_sym_scoped] = ACTIONS(5729), + [anon_sym_var] = ACTIONS(5642), + [sym_predefined_type] = ACTIONS(5644), + [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), @@ -511234,25 +510683,25 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3562] = { - [sym_argument_list] = STATE(2946), - [sym__name] = STATE(3072), - [sym_alias_qualified_name] = STATE(3029), - [sym__simple_name] = STATE(3029), - [sym_qualified_name] = STATE(3029), - [sym_generic_name] = STATE(2985), - [sym_type] = STATE(3383), - [sym_implicit_type] = STATE(3054), - [sym_array_type] = STATE(2956), - [sym__array_base_type] = STATE(7267), - [sym_nullable_type] = STATE(3012), - [sym_pointer_type] = STATE(3012), - [sym__pointer_base_type] = STATE(7693), - [sym_function_pointer_type] = STATE(3012), - [sym_ref_type] = STATE(3054), - [sym_scoped_type] = STATE(3054), - [sym_tuple_type] = STATE(3058), - [sym_identifier] = STATE(2923), - [sym__reserved_identifier] = STATE(2945), + [sym_argument_list] = STATE(2922), + [sym__name] = STATE(5082), + [sym_alias_qualified_name] = STATE(2976), + [sym__simple_name] = STATE(2976), + [sym_qualified_name] = STATE(2976), + [sym_generic_name] = STATE(3030), + [sym_type] = STATE(3472), + [sym_implicit_type] = STATE(2977), + [sym_array_type] = STATE(2908), + [sym__array_base_type] = STATE(7236), + [sym_nullable_type] = STATE(2979), + [sym_pointer_type] = STATE(2979), + [sym__pointer_base_type] = STATE(7622), + [sym_function_pointer_type] = STATE(2979), + [sym_ref_type] = STATE(2977), + [sym_scoped_type] = STATE(2977), + [sym_tuple_type] = STATE(2980), + [sym_identifier] = STATE(4356), + [sym__reserved_identifier] = STATE(2916), [sym_preproc_region] = STATE(3562), [sym_preproc_endregion] = STATE(3562), [sym_preproc_line] = STATE(3562), @@ -511262,35 +510711,35 @@ 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(3887), - [anon_sym_alias] = ACTIONS(3889), - [anon_sym_global] = ACTIONS(3889), - [anon_sym_LBRACK] = ACTIONS(4036), - [anon_sym_LPAREN] = ACTIONS(4038), - [anon_sym_ref] = ACTIONS(4227), - [anon_sym_LBRACE] = ACTIONS(4040), - [anon_sym_delegate] = ACTIONS(4042), - [anon_sym_file] = ACTIONS(3889), - [anon_sym_where] = ACTIONS(3889), - [anon_sym_notnull] = ACTIONS(3889), - [anon_sym_unmanaged] = ACTIONS(3889), - [anon_sym_scoped] = ACTIONS(5698), - [anon_sym_var] = ACTIONS(4046), - [sym_predefined_type] = ACTIONS(4048), - [anon_sym_yield] = ACTIONS(3889), - [anon_sym_when] = ACTIONS(3889), - [anon_sym_from] = ACTIONS(3889), - [anon_sym_into] = ACTIONS(3889), - [anon_sym_join] = ACTIONS(3889), - [anon_sym_on] = ACTIONS(3889), - [anon_sym_equals] = ACTIONS(3889), - [anon_sym_let] = ACTIONS(3889), - [anon_sym_orderby] = ACTIONS(3889), - [anon_sym_ascending] = ACTIONS(3889), - [anon_sym_descending] = ACTIONS(3889), - [anon_sym_group] = ACTIONS(3889), - [anon_sym_by] = ACTIONS(3889), - [anon_sym_select] = ACTIONS(3889), + [sym__identifier_token] = ACTIONS(3871), + [anon_sym_alias] = ACTIONS(3873), + [anon_sym_global] = ACTIONS(3873), + [anon_sym_LBRACK] = ACTIONS(4009), + [anon_sym_LPAREN] = ACTIONS(4011), + [anon_sym_ref] = ACTIONS(4007), + [anon_sym_LBRACE] = ACTIONS(4013), + [anon_sym_delegate] = ACTIONS(4015), + [anon_sym_file] = ACTIONS(3873), + [anon_sym_where] = ACTIONS(3873), + [anon_sym_notnull] = ACTIONS(3873), + [anon_sym_unmanaged] = ACTIONS(3873), + [anon_sym_scoped] = ACTIONS(5731), + [anon_sym_var] = ACTIONS(4019), + [sym_predefined_type] = ACTIONS(4021), + [anon_sym_yield] = ACTIONS(3873), + [anon_sym_when] = ACTIONS(3873), + [anon_sym_from] = ACTIONS(3873), + [anon_sym_into] = ACTIONS(3873), + [anon_sym_join] = ACTIONS(3873), + [anon_sym_on] = ACTIONS(3873), + [anon_sym_equals] = ACTIONS(3873), + [anon_sym_let] = ACTIONS(3873), + [anon_sym_orderby] = ACTIONS(3873), + [anon_sym_ascending] = ACTIONS(3873), + [anon_sym_descending] = ACTIONS(3873), + [anon_sym_group] = ACTIONS(3873), + [anon_sym_by] = ACTIONS(3873), + [anon_sym_select] = ACTIONS(3873), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -511303,25 +510752,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3563] = { - [sym_argument_list] = STATE(3150), - [sym__name] = STATE(3219), - [sym_alias_qualified_name] = STATE(3200), - [sym__simple_name] = STATE(3200), - [sym_qualified_name] = STATE(3200), - [sym_generic_name] = STATE(3156), - [sym_type] = STATE(3127), - [sym_implicit_type] = STATE(3205), - [sym_array_type] = STATE(3138), - [sym__array_base_type] = STATE(7259), - [sym_nullable_type] = STATE(3151), - [sym_pointer_type] = STATE(3151), - [sym__pointer_base_type] = STATE(7662), - [sym_function_pointer_type] = STATE(3151), - [sym_ref_type] = STATE(3205), - [sym_scoped_type] = STATE(3205), - [sym_tuple_type] = STATE(3209), - [sym_identifier] = STATE(3129), - [sym__reserved_identifier] = STATE(3149), + [sym_argument_list] = STATE(3771), + [sym_bracketed_argument_list] = STATE(2892), [sym_preproc_region] = STATE(3563), [sym_preproc_endregion] = STATE(3563), [sym_preproc_line] = STATE(3563), @@ -511331,35 +510763,52 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3563), [sym_preproc_define] = STATE(3563), [sym_preproc_undef] = STATE(3563), - [sym__identifier_token] = ACTIONS(3773), - [anon_sym_alias] = ACTIONS(3775), - [anon_sym_global] = ACTIONS(3775), - [anon_sym_LBRACK] = ACTIONS(5700), - [anon_sym_LPAREN] = ACTIONS(5702), - [anon_sym_ref] = ACTIONS(4183), - [anon_sym_LBRACE] = ACTIONS(5704), - [anon_sym_delegate] = ACTIONS(5706), - [anon_sym_file] = ACTIONS(3775), - [anon_sym_where] = ACTIONS(3775), - [anon_sym_notnull] = ACTIONS(3775), - [anon_sym_unmanaged] = ACTIONS(3775), - [anon_sym_scoped] = ACTIONS(5708), - [anon_sym_var] = ACTIONS(5710), - [sym_predefined_type] = ACTIONS(5712), - [anon_sym_yield] = ACTIONS(3775), - [anon_sym_when] = ACTIONS(3775), - [anon_sym_from] = ACTIONS(3775), - [anon_sym_into] = ACTIONS(3775), - [anon_sym_join] = ACTIONS(3775), - [anon_sym_on] = ACTIONS(3775), - [anon_sym_equals] = ACTIONS(3775), - [anon_sym_let] = ACTIONS(3775), - [anon_sym_orderby] = ACTIONS(3775), - [anon_sym_ascending] = ACTIONS(3775), - [anon_sym_descending] = ACTIONS(3775), - [anon_sym_group] = ACTIONS(3775), - [anon_sym_by] = ACTIONS(3775), - [anon_sym_select] = ACTIONS(3775), + [anon_sym_LBRACK] = ACTIONS(5650), + [anon_sym_COMMA] = ACTIONS(5733), + [anon_sym_LPAREN] = ACTIONS(5591), + [anon_sym_LT] = ACTIONS(5654), + [anon_sym_GT] = ACTIONS(5654), + [anon_sym_where] = ACTIONS(5733), + [anon_sym_QMARK] = ACTIONS(5656), + [anon_sym_BANG] = ACTIONS(5658), + [anon_sym_PLUS_PLUS] = ACTIONS(5660), + [anon_sym_DASH_DASH] = ACTIONS(5660), + [anon_sym_PLUS] = ACTIONS(5662), + [anon_sym_DASH] = ACTIONS(5662), + [anon_sym_STAR] = ACTIONS(5664), + [anon_sym_SLASH] = ACTIONS(5666), + [anon_sym_PERCENT] = ACTIONS(5664), + [anon_sym_CARET] = ACTIONS(5668), + [anon_sym_PIPE] = ACTIONS(5670), + [anon_sym_AMP] = ACTIONS(5672), + [anon_sym_LT_LT] = ACTIONS(5674), + [anon_sym_GT_GT] = ACTIONS(5676), + [anon_sym_GT_GT_GT] = ACTIONS(5674), + [anon_sym_EQ_EQ] = ACTIONS(5678), + [anon_sym_BANG_EQ] = ACTIONS(5678), + [anon_sym_GT_EQ] = ACTIONS(5680), + [anon_sym_LT_EQ] = ACTIONS(5680), + [anon_sym_DOT] = ACTIONS(4697), + [anon_sym_switch] = ACTIONS(5682), + [anon_sym_DOT_DOT] = ACTIONS(5684), + [anon_sym_and] = ACTIONS(5733), + [anon_sym_or] = ACTIONS(5735), + [anon_sym_AMP_AMP] = ACTIONS(5688), + [anon_sym_PIPE_PIPE] = ACTIONS(5690), + [anon_sym_QMARK_QMARK] = ACTIONS(5692), + [anon_sym_from] = ACTIONS(5733), + [anon_sym_into] = ACTIONS(5733), + [anon_sym_join] = ACTIONS(5733), + [anon_sym_let] = ACTIONS(5733), + [anon_sym_orderby] = ACTIONS(5733), + [anon_sym_ascending] = ACTIONS(5733), + [anon_sym_descending] = ACTIONS(5733), + [anon_sym_group] = ACTIONS(5733), + [anon_sym_select] = ACTIONS(5733), + [anon_sym_as] = ACTIONS(5694), + [anon_sym_is] = ACTIONS(5696), + [anon_sym_DASH_GT] = ACTIONS(4699), + [anon_sym_with] = ACTIONS(5698), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -511372,25 +510821,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3564] = { - [sym_argument_list] = STATE(2946), - [sym__name] = STATE(3072), - [sym_alias_qualified_name] = STATE(3029), - [sym__simple_name] = STATE(3029), - [sym_qualified_name] = STATE(3029), - [sym_generic_name] = STATE(2985), - [sym_type] = STATE(3383), - [sym_implicit_type] = STATE(3054), - [sym_array_type] = STATE(2956), - [sym__array_base_type] = STATE(7267), - [sym_nullable_type] = STATE(3012), - [sym_pointer_type] = STATE(3012), - [sym__pointer_base_type] = STATE(7693), - [sym_function_pointer_type] = STATE(3012), - [sym_ref_type] = STATE(3054), - [sym_scoped_type] = STATE(3054), - [sym_tuple_type] = STATE(3058), - [sym_identifier] = STATE(2923), - [sym__reserved_identifier] = STATE(2945), + [sym_argument_list] = STATE(3771), + [sym_bracketed_argument_list] = STATE(2892), [sym_preproc_region] = STATE(3564), [sym_preproc_endregion] = STATE(3564), [sym_preproc_line] = STATE(3564), @@ -511400,35 +510832,52 @@ 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(3887), - [anon_sym_alias] = ACTIONS(3889), - [anon_sym_global] = ACTIONS(3889), - [anon_sym_LBRACK] = ACTIONS(4036), - [anon_sym_LPAREN] = ACTIONS(4038), - [anon_sym_ref] = ACTIONS(3891), - [anon_sym_LBRACE] = ACTIONS(4040), - [anon_sym_delegate] = ACTIONS(4042), - [anon_sym_file] = ACTIONS(3889), - [anon_sym_where] = ACTIONS(3889), - [anon_sym_notnull] = ACTIONS(3889), - [anon_sym_unmanaged] = ACTIONS(3889), - [anon_sym_scoped] = ACTIONS(4044), - [anon_sym_var] = ACTIONS(4046), - [sym_predefined_type] = ACTIONS(4048), - [anon_sym_yield] = ACTIONS(3889), - [anon_sym_when] = ACTIONS(3889), - [anon_sym_from] = ACTIONS(3889), - [anon_sym_into] = ACTIONS(3889), - [anon_sym_join] = ACTIONS(3889), - [anon_sym_on] = ACTIONS(3889), - [anon_sym_equals] = ACTIONS(3889), - [anon_sym_let] = ACTIONS(3889), - [anon_sym_orderby] = ACTIONS(3889), - [anon_sym_ascending] = ACTIONS(3889), - [anon_sym_descending] = ACTIONS(3889), - [anon_sym_group] = ACTIONS(3889), - [anon_sym_by] = ACTIONS(3889), - [anon_sym_select] = ACTIONS(3889), + [anon_sym_LBRACK] = ACTIONS(5650), + [anon_sym_COMMA] = ACTIONS(4842), + [anon_sym_LPAREN] = ACTIONS(5591), + [anon_sym_LT] = ACTIONS(4844), + [anon_sym_GT] = ACTIONS(4844), + [anon_sym_where] = ACTIONS(4842), + [anon_sym_QMARK] = ACTIONS(4844), + [anon_sym_BANG] = ACTIONS(5658), + [anon_sym_PLUS_PLUS] = ACTIONS(5660), + [anon_sym_DASH_DASH] = ACTIONS(5660), + [anon_sym_PLUS] = ACTIONS(4844), + [anon_sym_DASH] = ACTIONS(4844), + [anon_sym_STAR] = ACTIONS(4842), + [anon_sym_SLASH] = ACTIONS(4844), + [anon_sym_PERCENT] = ACTIONS(4842), + [anon_sym_CARET] = ACTIONS(4842), + [anon_sym_PIPE] = ACTIONS(4844), + [anon_sym_AMP] = ACTIONS(4844), + [anon_sym_LT_LT] = ACTIONS(4842), + [anon_sym_GT_GT] = ACTIONS(4844), + [anon_sym_GT_GT_GT] = ACTIONS(4842), + [anon_sym_EQ_EQ] = ACTIONS(4842), + [anon_sym_BANG_EQ] = ACTIONS(4842), + [anon_sym_GT_EQ] = ACTIONS(4842), + [anon_sym_LT_EQ] = ACTIONS(4842), + [anon_sym_DOT] = ACTIONS(4697), + [anon_sym_switch] = ACTIONS(4842), + [anon_sym_DOT_DOT] = ACTIONS(4842), + [anon_sym_and] = ACTIONS(4842), + [anon_sym_or] = ACTIONS(4844), + [anon_sym_AMP_AMP] = ACTIONS(4842), + [anon_sym_PIPE_PIPE] = ACTIONS(4842), + [anon_sym_QMARK_QMARK] = ACTIONS(4842), + [anon_sym_from] = ACTIONS(4842), + [anon_sym_into] = ACTIONS(4842), + [anon_sym_join] = ACTIONS(4842), + [anon_sym_let] = ACTIONS(4842), + [anon_sym_orderby] = ACTIONS(4842), + [anon_sym_ascending] = ACTIONS(4842), + [anon_sym_descending] = ACTIONS(4842), + [anon_sym_group] = ACTIONS(4842), + [anon_sym_select] = ACTIONS(4842), + [anon_sym_as] = ACTIONS(4844), + [anon_sym_is] = ACTIONS(4842), + [anon_sym_DASH_GT] = ACTIONS(4699), + [anon_sym_with] = ACTIONS(4842), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -511441,24 +510890,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3565] = { - [sym__name] = STATE(6450), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(4096), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(4109), - [sym_type] = STATE(6876), - [sym_implicit_type] = STATE(7266), - [sym_array_type] = STATE(6694), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7446), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(7266), - [sym_scoped_type] = STATE(7266), - [sym_tuple_type] = STATE(6579), - [sym_identifier] = STATE(4087), - [sym__reserved_identifier] = STATE(3691), + [sym_argument_list] = STATE(3771), + [sym_bracketed_argument_list] = STATE(2892), [sym_preproc_region] = STATE(3565), [sym_preproc_endregion] = STATE(3565), [sym_preproc_line] = STATE(3565), @@ -511468,36 +510901,52 @@ 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), - [aux_sym_type_argument_list_repeat1] = STATE(6878), - [sym__identifier_token] = ACTIONS(2967), - [anon_sym_alias] = ACTIONS(2971), - [anon_sym_global] = ACTIONS(2971), - [anon_sym_COMMA] = ACTIONS(5026), - [anon_sym_LPAREN] = ACTIONS(2979), - [anon_sym_ref] = ACTIONS(5028), - [anon_sym_delegate] = ACTIONS(5030), - [anon_sym_file] = ACTIONS(2971), - [anon_sym_GT] = ACTIONS(5714), - [anon_sym_where] = ACTIONS(2971), - [anon_sym_notnull] = ACTIONS(2971), - [anon_sym_unmanaged] = ACTIONS(2971), - [anon_sym_scoped] = ACTIONS(5036), - [anon_sym_var] = ACTIONS(4737), - [sym_predefined_type] = ACTIONS(5038), - [anon_sym_yield] = ACTIONS(2971), - [anon_sym_when] = ACTIONS(2971), - [anon_sym_from] = ACTIONS(2971), - [anon_sym_into] = ACTIONS(2971), - [anon_sym_join] = ACTIONS(2971), - [anon_sym_on] = ACTIONS(2971), - [anon_sym_equals] = ACTIONS(2971), - [anon_sym_let] = ACTIONS(2971), - [anon_sym_orderby] = ACTIONS(2971), - [anon_sym_ascending] = ACTIONS(2971), - [anon_sym_descending] = ACTIONS(2971), - [anon_sym_group] = ACTIONS(2971), - [anon_sym_by] = ACTIONS(2971), - [anon_sym_select] = ACTIONS(2971), + [anon_sym_LBRACK] = ACTIONS(5650), + [anon_sym_COMMA] = ACTIONS(5737), + [anon_sym_LPAREN] = ACTIONS(5591), + [anon_sym_LT] = ACTIONS(5654), + [anon_sym_GT] = ACTIONS(5654), + [anon_sym_where] = ACTIONS(5737), + [anon_sym_QMARK] = ACTIONS(5739), + [anon_sym_BANG] = ACTIONS(5658), + [anon_sym_PLUS_PLUS] = ACTIONS(5660), + [anon_sym_DASH_DASH] = ACTIONS(5660), + [anon_sym_PLUS] = ACTIONS(5662), + [anon_sym_DASH] = ACTIONS(5662), + [anon_sym_STAR] = ACTIONS(5664), + [anon_sym_SLASH] = ACTIONS(5666), + [anon_sym_PERCENT] = ACTIONS(5664), + [anon_sym_CARET] = ACTIONS(5737), + [anon_sym_PIPE] = ACTIONS(5739), + [anon_sym_AMP] = ACTIONS(5672), + [anon_sym_LT_LT] = ACTIONS(5674), + [anon_sym_GT_GT] = ACTIONS(5676), + [anon_sym_GT_GT_GT] = ACTIONS(5674), + [anon_sym_EQ_EQ] = ACTIONS(5678), + [anon_sym_BANG_EQ] = ACTIONS(5678), + [anon_sym_GT_EQ] = ACTIONS(5680), + [anon_sym_LT_EQ] = ACTIONS(5680), + [anon_sym_DOT] = ACTIONS(4697), + [anon_sym_switch] = ACTIONS(5682), + [anon_sym_DOT_DOT] = ACTIONS(5684), + [anon_sym_and] = ACTIONS(5737), + [anon_sym_or] = ACTIONS(5739), + [anon_sym_AMP_AMP] = ACTIONS(5737), + [anon_sym_PIPE_PIPE] = ACTIONS(5737), + [anon_sym_QMARK_QMARK] = ACTIONS(5737), + [anon_sym_from] = ACTIONS(5737), + [anon_sym_into] = ACTIONS(5737), + [anon_sym_join] = ACTIONS(5737), + [anon_sym_let] = ACTIONS(5737), + [anon_sym_orderby] = ACTIONS(5737), + [anon_sym_ascending] = ACTIONS(5737), + [anon_sym_descending] = ACTIONS(5737), + [anon_sym_group] = ACTIONS(5737), + [anon_sym_select] = ACTIONS(5737), + [anon_sym_as] = ACTIONS(5694), + [anon_sym_is] = ACTIONS(5696), + [anon_sym_DASH_GT] = ACTIONS(4699), + [anon_sym_with] = ACTIONS(5698), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -511510,8 +510959,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3566] = { - [sym_argument_list] = STATE(3886), - [sym_bracketed_argument_list] = STATE(2902), + [sym_argument_list] = STATE(3771), + [sym_bracketed_argument_list] = STATE(2892), [sym_preproc_region] = STATE(3566), [sym_preproc_endregion] = STATE(3566), [sym_preproc_line] = STATE(3566), @@ -511521,52 +510970,52 @@ 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_LBRACK] = ACTIONS(5658), - [anon_sym_COMMA] = ACTIONS(5660), - [anon_sym_LPAREN] = ACTIONS(5624), - [anon_sym_LT] = ACTIONS(5662), - [anon_sym_GT] = ACTIONS(5662), - [anon_sym_where] = ACTIONS(5660), - [anon_sym_QMARK] = ACTIONS(5664), - [anon_sym_BANG] = ACTIONS(5666), - [anon_sym_PLUS_PLUS] = ACTIONS(5668), - [anon_sym_DASH_DASH] = ACTIONS(5668), - [anon_sym_PLUS] = ACTIONS(5670), - [anon_sym_DASH] = ACTIONS(5670), - [anon_sym_STAR] = ACTIONS(5672), - [anon_sym_SLASH] = ACTIONS(5674), - [anon_sym_PERCENT] = ACTIONS(5672), - [anon_sym_CARET] = ACTIONS(5660), - [anon_sym_PIPE] = ACTIONS(5664), - [anon_sym_AMP] = ACTIONS(5664), - [anon_sym_LT_LT] = ACTIONS(5680), - [anon_sym_GT_GT] = ACTIONS(5682), - [anon_sym_GT_GT_GT] = ACTIONS(5680), - [anon_sym_EQ_EQ] = ACTIONS(5684), - [anon_sym_BANG_EQ] = ACTIONS(5684), - [anon_sym_GT_EQ] = ACTIONS(5686), - [anon_sym_LT_EQ] = ACTIONS(5686), - [anon_sym_DOT] = ACTIONS(4733), - [anon_sym_switch] = ACTIONS(5688), - [anon_sym_DOT_DOT] = ACTIONS(5690), - [anon_sym_and] = ACTIONS(5660), - [anon_sym_or] = ACTIONS(5664), - [anon_sym_AMP_AMP] = ACTIONS(5660), - [anon_sym_PIPE_PIPE] = ACTIONS(5660), - [anon_sym_QMARK_QMARK] = ACTIONS(5660), - [anon_sym_from] = ACTIONS(5660), - [anon_sym_into] = ACTIONS(5660), - [anon_sym_join] = ACTIONS(5660), - [anon_sym_let] = ACTIONS(5660), - [anon_sym_orderby] = ACTIONS(5660), - [anon_sym_ascending] = ACTIONS(5660), - [anon_sym_descending] = ACTIONS(5660), - [anon_sym_group] = ACTIONS(5660), - [anon_sym_select] = ACTIONS(5660), - [anon_sym_as] = ACTIONS(5692), - [anon_sym_is] = ACTIONS(5694), - [anon_sym_DASH_GT] = ACTIONS(4719), - [anon_sym_with] = ACTIONS(5696), + [anon_sym_LBRACK] = ACTIONS(5650), + [anon_sym_COMMA] = ACTIONS(5741), + [anon_sym_LPAREN] = ACTIONS(5591), + [anon_sym_LT] = ACTIONS(5743), + [anon_sym_GT] = ACTIONS(5743), + [anon_sym_where] = ACTIONS(5741), + [anon_sym_QMARK] = ACTIONS(5743), + [anon_sym_BANG] = ACTIONS(5658), + [anon_sym_PLUS_PLUS] = ACTIONS(5660), + [anon_sym_DASH_DASH] = ACTIONS(5660), + [anon_sym_PLUS] = ACTIONS(5743), + [anon_sym_DASH] = ACTIONS(5743), + [anon_sym_STAR] = ACTIONS(5741), + [anon_sym_SLASH] = ACTIONS(5743), + [anon_sym_PERCENT] = ACTIONS(5741), + [anon_sym_CARET] = ACTIONS(5741), + [anon_sym_PIPE] = ACTIONS(5743), + [anon_sym_AMP] = ACTIONS(5743), + [anon_sym_LT_LT] = ACTIONS(5741), + [anon_sym_GT_GT] = ACTIONS(5743), + [anon_sym_GT_GT_GT] = ACTIONS(5741), + [anon_sym_EQ_EQ] = ACTIONS(5741), + [anon_sym_BANG_EQ] = ACTIONS(5741), + [anon_sym_GT_EQ] = ACTIONS(5741), + [anon_sym_LT_EQ] = ACTIONS(5741), + [anon_sym_DOT] = ACTIONS(4697), + [anon_sym_switch] = ACTIONS(5741), + [anon_sym_DOT_DOT] = ACTIONS(5684), + [anon_sym_and] = ACTIONS(5741), + [anon_sym_or] = ACTIONS(5743), + [anon_sym_AMP_AMP] = ACTIONS(5741), + [anon_sym_PIPE_PIPE] = ACTIONS(5741), + [anon_sym_QMARK_QMARK] = ACTIONS(5741), + [anon_sym_from] = ACTIONS(5741), + [anon_sym_into] = ACTIONS(5741), + [anon_sym_join] = ACTIONS(5741), + [anon_sym_let] = ACTIONS(5741), + [anon_sym_orderby] = ACTIONS(5741), + [anon_sym_ascending] = ACTIONS(5741), + [anon_sym_descending] = ACTIONS(5741), + [anon_sym_group] = ACTIONS(5741), + [anon_sym_select] = ACTIONS(5741), + [anon_sym_as] = ACTIONS(5743), + [anon_sym_is] = ACTIONS(5741), + [anon_sym_DASH_GT] = ACTIONS(4699), + [anon_sym_with] = ACTIONS(5741), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -511579,8 +511028,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3567] = { - [sym_argument_list] = STATE(3886), - [sym_bracketed_argument_list] = STATE(2902), + [sym__name] = STATE(6400), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(4068), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(4073), + [sym_type] = STATE(6987), + [sym_implicit_type] = STATE(7035), + [sym_array_type] = STATE(6706), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7421), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(7035), + [sym_scoped_type] = STATE(7035), + [sym_tuple_type] = STATE(6601), + [sym_identifier] = STATE(4081), + [sym__reserved_identifier] = STATE(3654), [sym_preproc_region] = STATE(3567), [sym_preproc_endregion] = STATE(3567), [sym_preproc_line] = STATE(3567), @@ -511590,52 +511055,36 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3567), [sym_preproc_define] = STATE(3567), [sym_preproc_undef] = STATE(3567), - [anon_sym_LBRACK] = ACTIONS(5658), - [anon_sym_COMMA] = ACTIONS(4843), - [anon_sym_LPAREN] = ACTIONS(5624), - [anon_sym_LT] = ACTIONS(4845), - [anon_sym_GT] = ACTIONS(4845), - [anon_sym_where] = ACTIONS(4843), - [anon_sym_QMARK] = ACTIONS(4845), - [anon_sym_BANG] = ACTIONS(5666), - [anon_sym_PLUS_PLUS] = ACTIONS(5668), - [anon_sym_DASH_DASH] = ACTIONS(5668), - [anon_sym_PLUS] = ACTIONS(4845), - [anon_sym_DASH] = ACTIONS(4845), - [anon_sym_STAR] = ACTIONS(4843), - [anon_sym_SLASH] = ACTIONS(4845), - [anon_sym_PERCENT] = ACTIONS(4843), - [anon_sym_CARET] = ACTIONS(4843), - [anon_sym_PIPE] = ACTIONS(4845), - [anon_sym_AMP] = ACTIONS(4845), - [anon_sym_LT_LT] = ACTIONS(4843), - [anon_sym_GT_GT] = ACTIONS(4845), - [anon_sym_GT_GT_GT] = ACTIONS(4843), - [anon_sym_EQ_EQ] = ACTIONS(4843), - [anon_sym_BANG_EQ] = ACTIONS(4843), - [anon_sym_GT_EQ] = ACTIONS(4843), - [anon_sym_LT_EQ] = ACTIONS(4843), - [anon_sym_DOT] = ACTIONS(4733), - [anon_sym_switch] = ACTIONS(4843), - [anon_sym_DOT_DOT] = ACTIONS(4843), - [anon_sym_and] = ACTIONS(4843), - [anon_sym_or] = ACTIONS(4845), - [anon_sym_AMP_AMP] = ACTIONS(4843), - [anon_sym_PIPE_PIPE] = ACTIONS(4843), - [anon_sym_QMARK_QMARK] = ACTIONS(4843), - [anon_sym_from] = ACTIONS(4843), - [anon_sym_into] = ACTIONS(4843), - [anon_sym_join] = ACTIONS(4843), - [anon_sym_let] = ACTIONS(4843), - [anon_sym_orderby] = ACTIONS(4843), - [anon_sym_ascending] = ACTIONS(4843), - [anon_sym_descending] = ACTIONS(4843), - [anon_sym_group] = ACTIONS(4843), - [anon_sym_select] = ACTIONS(4843), - [anon_sym_as] = ACTIONS(4845), - [anon_sym_is] = ACTIONS(4843), - [anon_sym_DASH_GT] = ACTIONS(4719), - [anon_sym_with] = ACTIONS(4843), + [aux_sym_type_argument_list_repeat1] = STATE(7000), + [sym__identifier_token] = ACTIONS(2965), + [anon_sym_alias] = ACTIONS(2969), + [anon_sym_global] = ACTIONS(2969), + [anon_sym_COMMA] = ACTIONS(5168), + [anon_sym_LPAREN] = ACTIONS(2977), + [anon_sym_ref] = ACTIONS(5170), + [anon_sym_delegate] = ACTIONS(5172), + [anon_sym_file] = ACTIONS(2969), + [anon_sym_GT] = ACTIONS(5174), + [anon_sym_where] = ACTIONS(2969), + [anon_sym_notnull] = ACTIONS(2969), + [anon_sym_unmanaged] = ACTIONS(2969), + [anon_sym_scoped] = ACTIONS(5178), + [anon_sym_var] = ACTIONS(4705), + [sym_predefined_type] = ACTIONS(5180), + [anon_sym_yield] = ACTIONS(2969), + [anon_sym_when] = ACTIONS(2969), + [anon_sym_from] = ACTIONS(2969), + [anon_sym_into] = ACTIONS(2969), + [anon_sym_join] = ACTIONS(2969), + [anon_sym_on] = ACTIONS(2969), + [anon_sym_equals] = ACTIONS(2969), + [anon_sym_let] = ACTIONS(2969), + [anon_sym_orderby] = ACTIONS(2969), + [anon_sym_ascending] = ACTIONS(2969), + [anon_sym_descending] = ACTIONS(2969), + [anon_sym_group] = ACTIONS(2969), + [anon_sym_by] = ACTIONS(2969), + [anon_sym_select] = ACTIONS(2969), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -511648,8 +511097,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3568] = { - [sym_argument_list] = STATE(3886), - [sym_bracketed_argument_list] = STATE(2902), [sym_preproc_region] = STATE(3568), [sym_preproc_endregion] = STATE(3568), [sym_preproc_line] = STATE(3568), @@ -511659,52 +511106,54 @@ 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), - [anon_sym_LBRACK] = ACTIONS(5658), - [anon_sym_COMMA] = ACTIONS(5660), - [anon_sym_LPAREN] = ACTIONS(5624), - [anon_sym_LT] = ACTIONS(5664), - [anon_sym_GT] = ACTIONS(5664), - [anon_sym_where] = ACTIONS(5660), - [anon_sym_QMARK] = ACTIONS(5664), - [anon_sym_BANG] = ACTIONS(5666), - [anon_sym_PLUS_PLUS] = ACTIONS(5668), - [anon_sym_DASH_DASH] = ACTIONS(5668), - [anon_sym_PLUS] = ACTIONS(5670), - [anon_sym_DASH] = ACTIONS(5670), - [anon_sym_STAR] = ACTIONS(5672), - [anon_sym_SLASH] = ACTIONS(5674), - [anon_sym_PERCENT] = ACTIONS(5672), - [anon_sym_CARET] = ACTIONS(5660), - [anon_sym_PIPE] = ACTIONS(5664), - [anon_sym_AMP] = ACTIONS(5664), - [anon_sym_LT_LT] = ACTIONS(5680), - [anon_sym_GT_GT] = ACTIONS(5682), - [anon_sym_GT_GT_GT] = ACTIONS(5680), - [anon_sym_EQ_EQ] = ACTIONS(5660), - [anon_sym_BANG_EQ] = ACTIONS(5660), - [anon_sym_GT_EQ] = ACTIONS(5660), - [anon_sym_LT_EQ] = ACTIONS(5660), - [anon_sym_DOT] = ACTIONS(4733), - [anon_sym_switch] = ACTIONS(5688), - [anon_sym_DOT_DOT] = ACTIONS(5690), - [anon_sym_and] = ACTIONS(5660), - [anon_sym_or] = ACTIONS(5664), - [anon_sym_AMP_AMP] = ACTIONS(5660), - [anon_sym_PIPE_PIPE] = ACTIONS(5660), - [anon_sym_QMARK_QMARK] = ACTIONS(5660), - [anon_sym_from] = ACTIONS(5660), - [anon_sym_into] = ACTIONS(5660), - [anon_sym_join] = ACTIONS(5660), - [anon_sym_let] = ACTIONS(5660), - [anon_sym_orderby] = ACTIONS(5660), - [anon_sym_ascending] = ACTIONS(5660), - [anon_sym_descending] = ACTIONS(5660), - [anon_sym_group] = ACTIONS(5660), - [anon_sym_select] = ACTIONS(5660), - [anon_sym_as] = ACTIONS(5664), - [anon_sym_is] = ACTIONS(5660), - [anon_sym_DASH_GT] = ACTIONS(4719), - [anon_sym_with] = ACTIONS(5696), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -511717,24 +511166,25 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3569] = { - [sym__name] = STATE(6450), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(4096), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(4109), - [sym_type] = STATE(6842), - [sym_implicit_type] = STATE(7266), - [sym_array_type] = STATE(6694), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7446), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(7266), - [sym_scoped_type] = STATE(7266), - [sym_tuple_type] = STATE(6579), - [sym_identifier] = STATE(4087), - [sym__reserved_identifier] = STATE(3691), + [sym_argument_list] = STATE(4305), + [sym__name] = STATE(4451), + [sym_alias_qualified_name] = STATE(4462), + [sym__simple_name] = STATE(4462), + [sym_qualified_name] = STATE(4462), + [sym_generic_name] = STATE(4410), + [sym_type] = STATE(4229), + [sym_implicit_type] = STATE(4385), + [sym_array_type] = STATE(4291), + [sym__array_base_type] = STATE(7056), + [sym_nullable_type] = STATE(4481), + [sym_pointer_type] = STATE(4481), + [sym__pointer_base_type] = STATE(7551), + [sym_function_pointer_type] = STATE(4481), + [sym_ref_type] = STATE(4385), + [sym_scoped_type] = STATE(4385), + [sym_tuple_type] = STATE(4484), + [sym_identifier] = STATE(4194), + [sym__reserved_identifier] = STATE(4314), [sym_preproc_region] = STATE(3569), [sym_preproc_endregion] = STATE(3569), [sym_preproc_line] = STATE(3569), @@ -511744,36 +511194,35 @@ 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), - [aux_sym_type_argument_list_repeat1] = STATE(6843), - [sym__identifier_token] = ACTIONS(2967), - [anon_sym_alias] = ACTIONS(2971), - [anon_sym_global] = ACTIONS(2971), - [anon_sym_COMMA] = ACTIONS(5026), - [anon_sym_LPAREN] = ACTIONS(2979), - [anon_sym_ref] = ACTIONS(5028), - [anon_sym_delegate] = ACTIONS(5030), - [anon_sym_file] = ACTIONS(2971), - [anon_sym_GT] = ACTIONS(5716), - [anon_sym_where] = ACTIONS(2971), - [anon_sym_notnull] = ACTIONS(2971), - [anon_sym_unmanaged] = ACTIONS(2971), - [anon_sym_scoped] = ACTIONS(5036), - [anon_sym_var] = ACTIONS(4737), - [sym_predefined_type] = ACTIONS(5038), - [anon_sym_yield] = ACTIONS(2971), - [anon_sym_when] = ACTIONS(2971), - [anon_sym_from] = ACTIONS(2971), - [anon_sym_into] = ACTIONS(2971), - [anon_sym_join] = ACTIONS(2971), - [anon_sym_on] = ACTIONS(2971), - [anon_sym_equals] = ACTIONS(2971), - [anon_sym_let] = ACTIONS(2971), - [anon_sym_orderby] = ACTIONS(2971), - [anon_sym_ascending] = ACTIONS(2971), - [anon_sym_descending] = ACTIONS(2971), - [anon_sym_group] = ACTIONS(2971), - [anon_sym_by] = ACTIONS(2971), - [anon_sym_select] = ACTIONS(2971), + [sym__identifier_token] = ACTIONS(3965), + [anon_sym_alias] = ACTIONS(3967), + [anon_sym_global] = ACTIONS(3967), + [anon_sym_LBRACK] = ACTIONS(5745), + [anon_sym_LPAREN] = ACTIONS(5747), + [anon_sym_ref] = ACTIONS(3974), + [anon_sym_LBRACE] = ACTIONS(5749), + [anon_sym_delegate] = ACTIONS(5751), + [anon_sym_file] = ACTIONS(3967), + [anon_sym_where] = ACTIONS(3967), + [anon_sym_notnull] = ACTIONS(3967), + [anon_sym_unmanaged] = ACTIONS(3967), + [anon_sym_scoped] = ACTIONS(5753), + [anon_sym_var] = ACTIONS(5755), + [sym_predefined_type] = ACTIONS(5757), + [anon_sym_yield] = ACTIONS(3967), + [anon_sym_when] = ACTIONS(3967), + [anon_sym_from] = ACTIONS(3967), + [anon_sym_into] = ACTIONS(3967), + [anon_sym_join] = ACTIONS(3967), + [anon_sym_on] = ACTIONS(3967), + [anon_sym_equals] = ACTIONS(3967), + [anon_sym_let] = ACTIONS(3967), + [anon_sym_orderby] = ACTIONS(3967), + [anon_sym_ascending] = ACTIONS(3967), + [anon_sym_descending] = ACTIONS(3967), + [anon_sym_group] = ACTIONS(3967), + [anon_sym_by] = ACTIONS(3967), + [anon_sym_select] = ACTIONS(3967), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -511786,24 +511235,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3570] = { - [sym__name] = STATE(6450), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(4096), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(4109), - [sym_type] = STATE(6981), - [sym_implicit_type] = STATE(7266), - [sym_array_type] = STATE(6694), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7446), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(7266), - [sym_scoped_type] = STATE(7266), - [sym_tuple_type] = STATE(6579), - [sym_identifier] = STATE(4087), - [sym__reserved_identifier] = STATE(3691), [sym_preproc_region] = STATE(3570), [sym_preproc_endregion] = STATE(3570), [sym_preproc_line] = STATE(3570), @@ -511813,36 +511244,54 @@ 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), - [aux_sym_type_argument_list_repeat1] = STATE(6982), - [sym__identifier_token] = ACTIONS(2967), - [anon_sym_alias] = ACTIONS(2971), - [anon_sym_global] = ACTIONS(2971), - [anon_sym_COMMA] = ACTIONS(5026), - [anon_sym_LPAREN] = ACTIONS(2979), - [anon_sym_ref] = ACTIONS(5028), - [anon_sym_delegate] = ACTIONS(5030), - [anon_sym_file] = ACTIONS(2971), - [anon_sym_GT] = ACTIONS(5718), - [anon_sym_where] = ACTIONS(2971), - [anon_sym_notnull] = ACTIONS(2971), - [anon_sym_unmanaged] = ACTIONS(2971), - [anon_sym_scoped] = ACTIONS(5036), - [anon_sym_var] = ACTIONS(4737), - [sym_predefined_type] = ACTIONS(5038), - [anon_sym_yield] = ACTIONS(2971), - [anon_sym_when] = ACTIONS(2971), - [anon_sym_from] = ACTIONS(2971), - [anon_sym_into] = ACTIONS(2971), - [anon_sym_join] = ACTIONS(2971), - [anon_sym_on] = ACTIONS(2971), - [anon_sym_equals] = ACTIONS(2971), - [anon_sym_let] = ACTIONS(2971), - [anon_sym_orderby] = ACTIONS(2971), - [anon_sym_ascending] = ACTIONS(2971), - [anon_sym_descending] = ACTIONS(2971), - [anon_sym_group] = ACTIONS(2971), - [anon_sym_by] = ACTIONS(2971), - [anon_sym_select] = ACTIONS(2971), + [sym__identifier_token] = ACTIONS(4909), + [anon_sym_extern] = ACTIONS(4909), + [anon_sym_alias] = ACTIONS(4909), + [anon_sym_global] = ACTIONS(4909), + [anon_sym_unsafe] = ACTIONS(4909), + [anon_sym_static] = ACTIONS(4909), + [anon_sym_LBRACK] = ACTIONS(4911), + [anon_sym_LPAREN] = ACTIONS(4911), + [anon_sym_ref] = ACTIONS(4909), + [anon_sym_delegate] = ACTIONS(4909), + [anon_sym_abstract] = ACTIONS(4909), + [anon_sym_async] = ACTIONS(4909), + [anon_sym_const] = ACTIONS(4909), + [anon_sym_file] = ACTIONS(4909), + [anon_sym_fixed] = ACTIONS(4909), + [anon_sym_internal] = ACTIONS(4909), + [anon_sym_new] = ACTIONS(4909), + [anon_sym_override] = ACTIONS(4909), + [anon_sym_partial] = ACTIONS(4909), + [anon_sym_private] = ACTIONS(4909), + [anon_sym_protected] = ACTIONS(4909), + [anon_sym_public] = ACTIONS(4909), + [anon_sym_readonly] = ACTIONS(4909), + [anon_sym_required] = ACTIONS(4909), + [anon_sym_sealed] = ACTIONS(4909), + [anon_sym_virtual] = ACTIONS(4909), + [anon_sym_volatile] = ACTIONS(4909), + [anon_sym_where] = ACTIONS(4909), + [anon_sym_notnull] = ACTIONS(4909), + [anon_sym_unmanaged] = ACTIONS(4909), + [anon_sym_scoped] = ACTIONS(4909), + [anon_sym_var] = ACTIONS(4909), + [sym_predefined_type] = ACTIONS(4909), + [anon_sym_yield] = ACTIONS(4909), + [anon_sym_when] = ACTIONS(4909), + [anon_sym_from] = ACTIONS(4909), + [anon_sym_into] = ACTIONS(4909), + [anon_sym_join] = ACTIONS(4909), + [anon_sym_on] = ACTIONS(4909), + [anon_sym_equals] = ACTIONS(4909), + [anon_sym_let] = ACTIONS(4909), + [anon_sym_orderby] = ACTIONS(4909), + [anon_sym_ascending] = ACTIONS(4909), + [anon_sym_descending] = ACTIONS(4909), + [anon_sym_group] = ACTIONS(4909), + [anon_sym_by] = ACTIONS(4909), + [anon_sym_select] = ACTIONS(4909), + [aux_sym_preproc_if_token1] = ACTIONS(4911), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -511855,8 +511304,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3571] = { - [sym_argument_list] = STATE(3886), - [sym_bracketed_argument_list] = STATE(2902), + [sym_argument_list] = STATE(3771), + [sym_bracketed_argument_list] = STATE(2892), [sym_preproc_region] = STATE(3571), [sym_preproc_endregion] = STATE(3571), [sym_preproc_line] = STATE(3571), @@ -511866,52 +511315,52 @@ 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), - [anon_sym_LBRACK] = ACTIONS(5658), - [anon_sym_COMMA] = ACTIONS(5660), - [anon_sym_LPAREN] = ACTIONS(5624), - [anon_sym_LT] = ACTIONS(5664), - [anon_sym_GT] = ACTIONS(5664), - [anon_sym_where] = ACTIONS(5660), - [anon_sym_QMARK] = ACTIONS(5664), - [anon_sym_BANG] = ACTIONS(5666), - [anon_sym_PLUS_PLUS] = ACTIONS(5668), - [anon_sym_DASH_DASH] = ACTIONS(5668), - [anon_sym_PLUS] = ACTIONS(5664), - [anon_sym_DASH] = ACTIONS(5664), - [anon_sym_STAR] = ACTIONS(5672), - [anon_sym_SLASH] = ACTIONS(5674), - [anon_sym_PERCENT] = ACTIONS(5672), - [anon_sym_CARET] = ACTIONS(5660), - [anon_sym_PIPE] = ACTIONS(5664), - [anon_sym_AMP] = ACTIONS(5664), - [anon_sym_LT_LT] = ACTIONS(5660), - [anon_sym_GT_GT] = ACTIONS(5664), - [anon_sym_GT_GT_GT] = ACTIONS(5660), - [anon_sym_EQ_EQ] = ACTIONS(5660), - [anon_sym_BANG_EQ] = ACTIONS(5660), - [anon_sym_GT_EQ] = ACTIONS(5660), - [anon_sym_LT_EQ] = ACTIONS(5660), - [anon_sym_DOT] = ACTIONS(4733), - [anon_sym_switch] = ACTIONS(5688), - [anon_sym_DOT_DOT] = ACTIONS(5690), - [anon_sym_and] = ACTIONS(5660), - [anon_sym_or] = ACTIONS(5664), - [anon_sym_AMP_AMP] = ACTIONS(5660), - [anon_sym_PIPE_PIPE] = ACTIONS(5660), - [anon_sym_QMARK_QMARK] = ACTIONS(5660), - [anon_sym_from] = ACTIONS(5660), - [anon_sym_into] = ACTIONS(5660), - [anon_sym_join] = ACTIONS(5660), - [anon_sym_let] = ACTIONS(5660), - [anon_sym_orderby] = ACTIONS(5660), - [anon_sym_ascending] = ACTIONS(5660), - [anon_sym_descending] = ACTIONS(5660), - [anon_sym_group] = ACTIONS(5660), - [anon_sym_select] = ACTIONS(5660), - [anon_sym_as] = ACTIONS(5664), - [anon_sym_is] = ACTIONS(5660), - [anon_sym_DASH_GT] = ACTIONS(4719), - [anon_sym_with] = ACTIONS(5696), + [anon_sym_LBRACK] = ACTIONS(5650), + [anon_sym_COMMA] = ACTIONS(5737), + [anon_sym_LPAREN] = ACTIONS(5591), + [anon_sym_LT] = ACTIONS(5654), + [anon_sym_GT] = ACTIONS(5654), + [anon_sym_where] = ACTIONS(5737), + [anon_sym_QMARK] = ACTIONS(5739), + [anon_sym_BANG] = ACTIONS(5658), + [anon_sym_PLUS_PLUS] = ACTIONS(5660), + [anon_sym_DASH_DASH] = ACTIONS(5660), + [anon_sym_PLUS] = ACTIONS(5662), + [anon_sym_DASH] = ACTIONS(5662), + [anon_sym_STAR] = ACTIONS(5664), + [anon_sym_SLASH] = ACTIONS(5666), + [anon_sym_PERCENT] = ACTIONS(5664), + [anon_sym_CARET] = ACTIONS(5668), + [anon_sym_PIPE] = ACTIONS(5739), + [anon_sym_AMP] = ACTIONS(5672), + [anon_sym_LT_LT] = ACTIONS(5674), + [anon_sym_GT_GT] = ACTIONS(5676), + [anon_sym_GT_GT_GT] = ACTIONS(5674), + [anon_sym_EQ_EQ] = ACTIONS(5678), + [anon_sym_BANG_EQ] = ACTIONS(5678), + [anon_sym_GT_EQ] = ACTIONS(5680), + [anon_sym_LT_EQ] = ACTIONS(5680), + [anon_sym_DOT] = ACTIONS(4697), + [anon_sym_switch] = ACTIONS(5682), + [anon_sym_DOT_DOT] = ACTIONS(5684), + [anon_sym_and] = ACTIONS(5737), + [anon_sym_or] = ACTIONS(5739), + [anon_sym_AMP_AMP] = ACTIONS(5737), + [anon_sym_PIPE_PIPE] = ACTIONS(5737), + [anon_sym_QMARK_QMARK] = ACTIONS(5737), + [anon_sym_from] = ACTIONS(5737), + [anon_sym_into] = ACTIONS(5737), + [anon_sym_join] = ACTIONS(5737), + [anon_sym_let] = ACTIONS(5737), + [anon_sym_orderby] = ACTIONS(5737), + [anon_sym_ascending] = ACTIONS(5737), + [anon_sym_descending] = ACTIONS(5737), + [anon_sym_group] = ACTIONS(5737), + [anon_sym_select] = ACTIONS(5737), + [anon_sym_as] = ACTIONS(5694), + [anon_sym_is] = ACTIONS(5696), + [anon_sym_DASH_GT] = ACTIONS(4699), + [anon_sym_with] = ACTIONS(5698), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -511924,7 +511373,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3572] = { - [sym_block] = STATE(7258), + [sym__name] = STATE(6400), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(4068), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(4073), + [sym_type] = STATE(6877), + [sym_implicit_type] = STATE(7035), + [sym_array_type] = STATE(6706), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7421), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(7035), + [sym_scoped_type] = STATE(7035), + [sym_tuple_type] = STATE(6601), + [sym_identifier] = STATE(4081), + [sym__reserved_identifier] = STATE(3654), [sym_preproc_region] = STATE(3572), [sym_preproc_endregion] = STATE(3572), [sym_preproc_line] = STATE(3572), @@ -511934,53 +511400,36 @@ 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), - [sym__identifier_token] = ACTIONS(3482), - [anon_sym_extern] = ACTIONS(3482), - [anon_sym_alias] = ACTIONS(3482), - [anon_sym_global] = ACTIONS(3482), - [anon_sym_unsafe] = ACTIONS(3482), - [anon_sym_static] = ACTIONS(3482), - [anon_sym_LPAREN] = ACTIONS(5084), - [anon_sym_ref] = ACTIONS(3482), - [anon_sym_LBRACE] = ACTIONS(5617), - [anon_sym_delegate] = 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_scoped] = ACTIONS(3482), - [anon_sym_var] = ACTIONS(3482), - [sym_predefined_type] = ACTIONS(3482), - [anon_sym_yield] = ACTIONS(3482), - [anon_sym_when] = ACTIONS(3482), - [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), + [aux_sym_type_argument_list_repeat1] = STATE(6878), + [sym__identifier_token] = ACTIONS(2965), + [anon_sym_alias] = ACTIONS(2969), + [anon_sym_global] = ACTIONS(2969), + [anon_sym_COMMA] = ACTIONS(5168), + [anon_sym_LPAREN] = ACTIONS(2977), + [anon_sym_ref] = ACTIONS(5170), + [anon_sym_delegate] = ACTIONS(5172), + [anon_sym_file] = ACTIONS(2969), + [anon_sym_GT] = ACTIONS(5759), + [anon_sym_where] = ACTIONS(2969), + [anon_sym_notnull] = ACTIONS(2969), + [anon_sym_unmanaged] = ACTIONS(2969), + [anon_sym_scoped] = ACTIONS(5178), + [anon_sym_var] = ACTIONS(4705), + [sym_predefined_type] = ACTIONS(5180), + [anon_sym_yield] = ACTIONS(2969), + [anon_sym_when] = ACTIONS(2969), + [anon_sym_from] = ACTIONS(2969), + [anon_sym_into] = ACTIONS(2969), + [anon_sym_join] = ACTIONS(2969), + [anon_sym_on] = ACTIONS(2969), + [anon_sym_equals] = ACTIONS(2969), + [anon_sym_let] = ACTIONS(2969), + [anon_sym_orderby] = ACTIONS(2969), + [anon_sym_ascending] = ACTIONS(2969), + [anon_sym_descending] = ACTIONS(2969), + [anon_sym_group] = ACTIONS(2969), + [anon_sym_by] = ACTIONS(2969), + [anon_sym_select] = ACTIONS(2969), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -511993,24 +511442,25 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3573] = { - [sym__name] = STATE(6450), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(4096), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(4109), - [sym_type] = STATE(6915), - [sym_implicit_type] = STATE(7266), - [sym_array_type] = STATE(6694), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7446), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(7266), - [sym_scoped_type] = STATE(7266), - [sym_tuple_type] = STATE(6579), - [sym_identifier] = STATE(4087), - [sym__reserved_identifier] = STATE(3691), + [sym_argument_list] = STATE(3194), + [sym__name] = STATE(3488), + [sym_alias_qualified_name] = STATE(3304), + [sym__simple_name] = STATE(3304), + [sym_qualified_name] = STATE(3304), + [sym_generic_name] = STATE(3241), + [sym_type] = STATE(3130), + [sym_implicit_type] = STATE(3222), + [sym_array_type] = STATE(3232), + [sym__array_base_type] = STATE(7208), + [sym_nullable_type] = STATE(3216), + [sym_pointer_type] = STATE(3216), + [sym__pointer_base_type] = STATE(7508), + [sym_function_pointer_type] = STATE(3216), + [sym_ref_type] = STATE(3222), + [sym_scoped_type] = STATE(3222), + [sym_tuple_type] = STATE(3308), + [sym_identifier] = STATE(3177), + [sym__reserved_identifier] = STATE(3205), [sym_preproc_region] = STATE(3573), [sym_preproc_endregion] = STATE(3573), [sym_preproc_line] = STATE(3573), @@ -512020,36 +511470,35 @@ 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), - [aux_sym_type_argument_list_repeat1] = STATE(6917), - [sym__identifier_token] = ACTIONS(2967), - [anon_sym_alias] = ACTIONS(2971), - [anon_sym_global] = ACTIONS(2971), - [anon_sym_COMMA] = ACTIONS(5026), - [anon_sym_LPAREN] = ACTIONS(2979), - [anon_sym_ref] = ACTIONS(5028), - [anon_sym_delegate] = ACTIONS(5030), - [anon_sym_file] = ACTIONS(2971), - [anon_sym_GT] = ACTIONS(5032), - [anon_sym_where] = ACTIONS(2971), - [anon_sym_notnull] = ACTIONS(2971), - [anon_sym_unmanaged] = ACTIONS(2971), - [anon_sym_scoped] = ACTIONS(5036), - [anon_sym_var] = ACTIONS(4737), - [sym_predefined_type] = ACTIONS(5038), - [anon_sym_yield] = ACTIONS(2971), - [anon_sym_when] = ACTIONS(2971), - [anon_sym_from] = ACTIONS(2971), - [anon_sym_into] = ACTIONS(2971), - [anon_sym_join] = ACTIONS(2971), - [anon_sym_on] = ACTIONS(2971), - [anon_sym_equals] = ACTIONS(2971), - [anon_sym_let] = ACTIONS(2971), - [anon_sym_orderby] = ACTIONS(2971), - [anon_sym_ascending] = ACTIONS(2971), - [anon_sym_descending] = ACTIONS(2971), - [anon_sym_group] = ACTIONS(2971), - [anon_sym_by] = ACTIONS(2971), - [anon_sym_select] = ACTIONS(2971), + [sym__identifier_token] = ACTIONS(3798), + [anon_sym_alias] = ACTIONS(3800), + [anon_sym_global] = ACTIONS(3800), + [anon_sym_LBRACK] = ACTIONS(5632), + [anon_sym_LPAREN] = ACTIONS(5634), + [anon_sym_ref] = ACTIONS(4167), + [anon_sym_LBRACE] = ACTIONS(5636), + [anon_sym_delegate] = ACTIONS(5638), + [anon_sym_file] = ACTIONS(3800), + [anon_sym_where] = ACTIONS(3800), + [anon_sym_notnull] = ACTIONS(3800), + [anon_sym_unmanaged] = ACTIONS(3800), + [anon_sym_scoped] = ACTIONS(5761), + [anon_sym_var] = ACTIONS(5642), + [sym_predefined_type] = ACTIONS(5644), + [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), @@ -512062,7 +511511,25 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3574] = { - [sym_initializer_expression] = STATE(3746), + [sym_argument_list] = STATE(3194), + [sym__name] = STATE(3488), + [sym_alias_qualified_name] = STATE(3304), + [sym__simple_name] = STATE(3304), + [sym_qualified_name] = STATE(3304), + [sym_generic_name] = STATE(3241), + [sym_type] = STATE(3130), + [sym_implicit_type] = STATE(3222), + [sym_array_type] = STATE(3232), + [sym__array_base_type] = STATE(7208), + [sym_nullable_type] = STATE(3216), + [sym_pointer_type] = STATE(3216), + [sym__pointer_base_type] = STATE(7508), + [sym_function_pointer_type] = STATE(3216), + [sym_ref_type] = STATE(3222), + [sym_scoped_type] = STATE(3222), + [sym_tuple_type] = STATE(3308), + [sym_identifier] = STATE(3177), + [sym__reserved_identifier] = STATE(3205), [sym_preproc_region] = STATE(3574), [sym_preproc_endregion] = STATE(3574), [sym_preproc_line] = STATE(3574), @@ -512072,53 +511539,35 @@ 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), - [anon_sym_LBRACK] = ACTIONS(4912), - [anon_sym_COMMA] = ACTIONS(4916), - [anon_sym_LPAREN] = ACTIONS(4916), - [anon_sym_LBRACE] = ACTIONS(5720), - [anon_sym_LT] = ACTIONS(4922), - [anon_sym_GT] = ACTIONS(4922), - [anon_sym_where] = ACTIONS(4916), - [anon_sym_QMARK] = ACTIONS(5723), - [anon_sym_BANG] = ACTIONS(4922), - [anon_sym_PLUS_PLUS] = ACTIONS(4916), - [anon_sym_DASH_DASH] = ACTIONS(4916), - [anon_sym_PLUS] = ACTIONS(4922), - [anon_sym_DASH] = ACTIONS(4922), - [anon_sym_STAR] = ACTIONS(4916), - [anon_sym_SLASH] = ACTIONS(4922), - [anon_sym_PERCENT] = ACTIONS(4916), - [anon_sym_CARET] = ACTIONS(4916), - [anon_sym_PIPE] = ACTIONS(4922), - [anon_sym_AMP] = ACTIONS(4922), - [anon_sym_LT_LT] = ACTIONS(4916), - [anon_sym_GT_GT] = ACTIONS(4922), - [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(4922), - [anon_sym_switch] = ACTIONS(4916), - [anon_sym_DOT_DOT] = ACTIONS(4916), - [anon_sym_and] = ACTIONS(4916), - [anon_sym_or] = ACTIONS(4922), - [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(4922), - [anon_sym_is] = ACTIONS(4916), - [anon_sym_DASH_GT] = ACTIONS(4916), - [anon_sym_with] = ACTIONS(4916), + [sym__identifier_token] = ACTIONS(3798), + [anon_sym_alias] = ACTIONS(3800), + [anon_sym_global] = ACTIONS(3800), + [anon_sym_LBRACK] = ACTIONS(5632), + [anon_sym_LPAREN] = ACTIONS(5634), + [anon_sym_ref] = ACTIONS(4171), + [anon_sym_LBRACE] = ACTIONS(5636), + [anon_sym_delegate] = ACTIONS(5638), + [anon_sym_file] = ACTIONS(3800), + [anon_sym_where] = ACTIONS(3800), + [anon_sym_notnull] = ACTIONS(3800), + [anon_sym_unmanaged] = ACTIONS(3800), + [anon_sym_scoped] = ACTIONS(5763), + [anon_sym_var] = ACTIONS(5642), + [sym_predefined_type] = ACTIONS(5644), + [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), @@ -512131,8 +511580,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3575] = { - [sym_argument_list] = STATE(3886), - [sym_bracketed_argument_list] = STATE(2902), + [sym_initializer_expression] = STATE(3814), [sym_preproc_region] = STATE(3575), [sym_preproc_endregion] = STATE(3575), [sym_preproc_line] = STATE(3575), @@ -512142,52 +511590,53 @@ 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_LBRACK] = ACTIONS(5658), - [anon_sym_COMMA] = ACTIONS(5660), - [anon_sym_LPAREN] = ACTIONS(5624), - [anon_sym_LT] = ACTIONS(5664), - [anon_sym_GT] = ACTIONS(5664), - [anon_sym_where] = ACTIONS(5660), - [anon_sym_QMARK] = ACTIONS(5664), - [anon_sym_BANG] = ACTIONS(5666), - [anon_sym_PLUS_PLUS] = ACTIONS(5668), - [anon_sym_DASH_DASH] = ACTIONS(5668), - [anon_sym_PLUS] = ACTIONS(5664), - [anon_sym_DASH] = ACTIONS(5664), - [anon_sym_STAR] = ACTIONS(5660), - [anon_sym_SLASH] = ACTIONS(5664), - [anon_sym_PERCENT] = ACTIONS(5660), - [anon_sym_CARET] = ACTIONS(5660), - [anon_sym_PIPE] = ACTIONS(5664), - [anon_sym_AMP] = ACTIONS(5664), - [anon_sym_LT_LT] = ACTIONS(5660), - [anon_sym_GT_GT] = ACTIONS(5664), - [anon_sym_GT_GT_GT] = ACTIONS(5660), - [anon_sym_EQ_EQ] = ACTIONS(5660), - [anon_sym_BANG_EQ] = ACTIONS(5660), - [anon_sym_GT_EQ] = ACTIONS(5660), - [anon_sym_LT_EQ] = ACTIONS(5660), - [anon_sym_DOT] = ACTIONS(4733), - [anon_sym_switch] = ACTIONS(5688), - [anon_sym_DOT_DOT] = ACTIONS(5690), - [anon_sym_and] = ACTIONS(5660), - [anon_sym_or] = ACTIONS(5664), - [anon_sym_AMP_AMP] = ACTIONS(5660), - [anon_sym_PIPE_PIPE] = ACTIONS(5660), - [anon_sym_QMARK_QMARK] = ACTIONS(5660), - [anon_sym_from] = ACTIONS(5660), - [anon_sym_into] = ACTIONS(5660), - [anon_sym_join] = ACTIONS(5660), - [anon_sym_let] = ACTIONS(5660), - [anon_sym_orderby] = ACTIONS(5660), - [anon_sym_ascending] = ACTIONS(5660), - [anon_sym_descending] = ACTIONS(5660), - [anon_sym_group] = ACTIONS(5660), - [anon_sym_select] = ACTIONS(5660), - [anon_sym_as] = ACTIONS(5664), - [anon_sym_is] = ACTIONS(5660), - [anon_sym_DASH_GT] = ACTIONS(4719), - [anon_sym_with] = ACTIONS(5696), + [anon_sym_LBRACK] = ACTIONS(4831), + [anon_sym_COMMA] = ACTIONS(4831), + [anon_sym_LPAREN] = ACTIONS(4831), + [anon_sym_LBRACE] = ACTIONS(1661), + [anon_sym_LT] = ACTIONS(4833), + [anon_sym_GT] = ACTIONS(4833), + [anon_sym_where] = ACTIONS(4831), + [anon_sym_QMARK] = ACTIONS(4833), + [anon_sym_BANG] = ACTIONS(4833), + [anon_sym_PLUS_PLUS] = ACTIONS(4831), + [anon_sym_DASH_DASH] = ACTIONS(4831), + [anon_sym_PLUS] = ACTIONS(4833), + [anon_sym_DASH] = ACTIONS(4833), + [anon_sym_STAR] = ACTIONS(4831), + [anon_sym_SLASH] = ACTIONS(4833), + [anon_sym_PERCENT] = ACTIONS(4831), + [anon_sym_CARET] = ACTIONS(4831), + [anon_sym_PIPE] = ACTIONS(4833), + [anon_sym_AMP] = ACTIONS(4833), + [anon_sym_LT_LT] = ACTIONS(4831), + [anon_sym_GT_GT] = ACTIONS(4833), + [anon_sym_GT_GT_GT] = ACTIONS(4831), + [anon_sym_EQ_EQ] = ACTIONS(4831), + [anon_sym_BANG_EQ] = ACTIONS(4831), + [anon_sym_GT_EQ] = ACTIONS(4831), + [anon_sym_LT_EQ] = ACTIONS(4831), + [anon_sym_DOT] = ACTIONS(4833), + [anon_sym_switch] = ACTIONS(4831), + [anon_sym_DOT_DOT] = ACTIONS(4831), + [anon_sym_and] = ACTIONS(4831), + [anon_sym_or] = ACTIONS(4833), + [anon_sym_AMP_AMP] = ACTIONS(4831), + [anon_sym_PIPE_PIPE] = ACTIONS(4831), + [anon_sym_QMARK_QMARK] = ACTIONS(4831), + [anon_sym_from] = ACTIONS(4831), + [anon_sym_into] = ACTIONS(4831), + [anon_sym_join] = ACTIONS(4831), + [anon_sym_let] = ACTIONS(4831), + [anon_sym_orderby] = ACTIONS(4831), + [anon_sym_ascending] = ACTIONS(4831), + [anon_sym_descending] = ACTIONS(4831), + [anon_sym_group] = ACTIONS(4831), + [anon_sym_select] = ACTIONS(4831), + [anon_sym_as] = ACTIONS(4833), + [anon_sym_is] = ACTIONS(4831), + [anon_sym_DASH_GT] = ACTIONS(4831), + [anon_sym_with] = ACTIONS(4831), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -512200,25 +511649,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3576] = { - [sym_argument_list] = STATE(2946), - [sym__name] = STATE(3072), - [sym_alias_qualified_name] = STATE(3029), - [sym__simple_name] = STATE(3029), - [sym_qualified_name] = STATE(3029), - [sym_generic_name] = STATE(2985), - [sym_type] = STATE(3979), - [sym_implicit_type] = STATE(3054), - [sym_array_type] = STATE(2956), - [sym__array_base_type] = STATE(7267), - [sym_nullable_type] = STATE(3012), - [sym_pointer_type] = STATE(3012), - [sym__pointer_base_type] = STATE(7693), - [sym_function_pointer_type] = STATE(3012), - [sym_ref_type] = STATE(3054), - [sym_scoped_type] = STATE(3054), - [sym_tuple_type] = STATE(3058), - [sym_identifier] = STATE(2923), - [sym__reserved_identifier] = STATE(2945), + [sym_argument_list] = STATE(3771), + [sym_bracketed_argument_list] = STATE(2892), [sym_preproc_region] = STATE(3576), [sym_preproc_endregion] = STATE(3576), [sym_preproc_line] = STATE(3576), @@ -512228,35 +511660,52 @@ 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), - [sym__identifier_token] = ACTIONS(3887), - [anon_sym_alias] = ACTIONS(3889), - [anon_sym_global] = ACTIONS(3889), - [anon_sym_LBRACK] = ACTIONS(4036), - [anon_sym_LPAREN] = ACTIONS(5727), - [anon_sym_ref] = ACTIONS(4168), - [anon_sym_LBRACE] = ACTIONS(4040), - [anon_sym_delegate] = ACTIONS(4042), - [anon_sym_file] = ACTIONS(3889), - [anon_sym_where] = ACTIONS(3889), - [anon_sym_notnull] = ACTIONS(3889), - [anon_sym_unmanaged] = ACTIONS(3889), - [anon_sym_scoped] = ACTIONS(5729), - [anon_sym_var] = ACTIONS(4046), - [sym_predefined_type] = ACTIONS(4048), - [anon_sym_yield] = ACTIONS(3889), - [anon_sym_when] = ACTIONS(3889), - [anon_sym_from] = ACTIONS(3889), - [anon_sym_into] = ACTIONS(3889), - [anon_sym_join] = ACTIONS(3889), - [anon_sym_on] = ACTIONS(3889), - [anon_sym_equals] = ACTIONS(3889), - [anon_sym_let] = ACTIONS(3889), - [anon_sym_orderby] = ACTIONS(3889), - [anon_sym_ascending] = ACTIONS(3889), - [anon_sym_descending] = ACTIONS(3889), - [anon_sym_group] = ACTIONS(3889), - [anon_sym_by] = ACTIONS(3889), - [anon_sym_select] = ACTIONS(3889), + [anon_sym_LBRACK] = ACTIONS(5650), + [anon_sym_COMMA] = ACTIONS(5737), + [anon_sym_LPAREN] = ACTIONS(5591), + [anon_sym_LT] = ACTIONS(5654), + [anon_sym_GT] = ACTIONS(5654), + [anon_sym_where] = ACTIONS(5737), + [anon_sym_QMARK] = ACTIONS(5739), + [anon_sym_BANG] = ACTIONS(5658), + [anon_sym_PLUS_PLUS] = ACTIONS(5660), + [anon_sym_DASH_DASH] = ACTIONS(5660), + [anon_sym_PLUS] = ACTIONS(5662), + [anon_sym_DASH] = ACTIONS(5662), + [anon_sym_STAR] = ACTIONS(5664), + [anon_sym_SLASH] = ACTIONS(5666), + [anon_sym_PERCENT] = ACTIONS(5664), + [anon_sym_CARET] = ACTIONS(5737), + [anon_sym_PIPE] = ACTIONS(5739), + [anon_sym_AMP] = ACTIONS(5739), + [anon_sym_LT_LT] = ACTIONS(5674), + [anon_sym_GT_GT] = ACTIONS(5676), + [anon_sym_GT_GT_GT] = ACTIONS(5674), + [anon_sym_EQ_EQ] = ACTIONS(5678), + [anon_sym_BANG_EQ] = ACTIONS(5678), + [anon_sym_GT_EQ] = ACTIONS(5680), + [anon_sym_LT_EQ] = ACTIONS(5680), + [anon_sym_DOT] = ACTIONS(4697), + [anon_sym_switch] = ACTIONS(5682), + [anon_sym_DOT_DOT] = ACTIONS(5684), + [anon_sym_and] = ACTIONS(5737), + [anon_sym_or] = ACTIONS(5739), + [anon_sym_AMP_AMP] = ACTIONS(5737), + [anon_sym_PIPE_PIPE] = ACTIONS(5737), + [anon_sym_QMARK_QMARK] = ACTIONS(5737), + [anon_sym_from] = ACTIONS(5737), + [anon_sym_into] = ACTIONS(5737), + [anon_sym_join] = ACTIONS(5737), + [anon_sym_let] = ACTIONS(5737), + [anon_sym_orderby] = ACTIONS(5737), + [anon_sym_ascending] = ACTIONS(5737), + [anon_sym_descending] = ACTIONS(5737), + [anon_sym_group] = ACTIONS(5737), + [anon_sym_select] = ACTIONS(5737), + [anon_sym_as] = ACTIONS(5694), + [anon_sym_is] = ACTIONS(5696), + [anon_sym_DASH_GT] = ACTIONS(4699), + [anon_sym_with] = ACTIONS(5698), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -512269,8 +511718,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3577] = { - [sym_argument_list] = STATE(3886), - [sym_bracketed_argument_list] = STATE(2902), + [sym_initializer_expression] = STATE(3862), [sym_preproc_region] = STATE(3577), [sym_preproc_endregion] = STATE(3577), [sym_preproc_line] = STATE(3577), @@ -512280,52 +511728,53 @@ 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(5658), - [anon_sym_COMMA] = ACTIONS(5731), - [anon_sym_LPAREN] = ACTIONS(5624), - [anon_sym_LT] = ACTIONS(5733), - [anon_sym_GT] = ACTIONS(5733), - [anon_sym_where] = ACTIONS(5731), - [anon_sym_QMARK] = ACTIONS(5733), - [anon_sym_BANG] = ACTIONS(5666), - [anon_sym_PLUS_PLUS] = ACTIONS(5668), - [anon_sym_DASH_DASH] = ACTIONS(5668), - [anon_sym_PLUS] = ACTIONS(5733), - [anon_sym_DASH] = ACTIONS(5733), - [anon_sym_STAR] = ACTIONS(5731), - [anon_sym_SLASH] = ACTIONS(5733), - [anon_sym_PERCENT] = ACTIONS(5731), - [anon_sym_CARET] = ACTIONS(5731), - [anon_sym_PIPE] = ACTIONS(5733), - [anon_sym_AMP] = ACTIONS(5733), - [anon_sym_LT_LT] = ACTIONS(5731), - [anon_sym_GT_GT] = ACTIONS(5733), - [anon_sym_GT_GT_GT] = ACTIONS(5731), - [anon_sym_EQ_EQ] = ACTIONS(5731), - [anon_sym_BANG_EQ] = ACTIONS(5731), - [anon_sym_GT_EQ] = ACTIONS(5731), - [anon_sym_LT_EQ] = ACTIONS(5731), - [anon_sym_DOT] = ACTIONS(4733), - [anon_sym_switch] = ACTIONS(5731), - [anon_sym_DOT_DOT] = ACTIONS(5690), - [anon_sym_and] = ACTIONS(5731), - [anon_sym_or] = ACTIONS(5733), - [anon_sym_AMP_AMP] = ACTIONS(5731), - [anon_sym_PIPE_PIPE] = ACTIONS(5731), - [anon_sym_QMARK_QMARK] = ACTIONS(5731), - [anon_sym_from] = ACTIONS(5731), - [anon_sym_into] = ACTIONS(5731), - [anon_sym_join] = ACTIONS(5731), - [anon_sym_let] = ACTIONS(5731), - [anon_sym_orderby] = ACTIONS(5731), - [anon_sym_ascending] = ACTIONS(5731), - [anon_sym_descending] = ACTIONS(5731), - [anon_sym_group] = ACTIONS(5731), - [anon_sym_select] = ACTIONS(5731), - [anon_sym_as] = ACTIONS(5733), - [anon_sym_is] = ACTIONS(5731), - [anon_sym_DASH_GT] = ACTIONS(4719), - [anon_sym_with] = ACTIONS(5731), + [anon_sym_LBRACK] = ACTIONS(4827), + [anon_sym_COMMA] = ACTIONS(4827), + [anon_sym_LPAREN] = ACTIONS(4827), + [anon_sym_LBRACE] = ACTIONS(1661), + [anon_sym_LT] = ACTIONS(4829), + [anon_sym_GT] = ACTIONS(4829), + [anon_sym_where] = ACTIONS(4827), + [anon_sym_QMARK] = ACTIONS(4829), + [anon_sym_BANG] = ACTIONS(4829), + [anon_sym_PLUS_PLUS] = ACTIONS(4827), + [anon_sym_DASH_DASH] = ACTIONS(4827), + [anon_sym_PLUS] = ACTIONS(4829), + [anon_sym_DASH] = ACTIONS(4829), + [anon_sym_STAR] = ACTIONS(4827), + [anon_sym_SLASH] = ACTIONS(4829), + [anon_sym_PERCENT] = ACTIONS(4827), + [anon_sym_CARET] = ACTIONS(4827), + [anon_sym_PIPE] = ACTIONS(4829), + [anon_sym_AMP] = ACTIONS(4829), + [anon_sym_LT_LT] = ACTIONS(4827), + [anon_sym_GT_GT] = ACTIONS(4829), + [anon_sym_GT_GT_GT] = ACTIONS(4827), + [anon_sym_EQ_EQ] = ACTIONS(4827), + [anon_sym_BANG_EQ] = ACTIONS(4827), + [anon_sym_GT_EQ] = ACTIONS(4827), + [anon_sym_LT_EQ] = ACTIONS(4827), + [anon_sym_DOT] = ACTIONS(4829), + [anon_sym_switch] = ACTIONS(4827), + [anon_sym_DOT_DOT] = ACTIONS(4827), + [anon_sym_and] = ACTIONS(4827), + [anon_sym_or] = ACTIONS(4829), + [anon_sym_AMP_AMP] = ACTIONS(4827), + [anon_sym_PIPE_PIPE] = ACTIONS(4827), + [anon_sym_QMARK_QMARK] = ACTIONS(4827), + [anon_sym_from] = ACTIONS(4827), + [anon_sym_into] = ACTIONS(4827), + [anon_sym_join] = ACTIONS(4827), + [anon_sym_let] = ACTIONS(4827), + [anon_sym_orderby] = ACTIONS(4827), + [anon_sym_ascending] = ACTIONS(4827), + [anon_sym_descending] = ACTIONS(4827), + [anon_sym_group] = ACTIONS(4827), + [anon_sym_select] = ACTIONS(4827), + [anon_sym_as] = ACTIONS(4829), + [anon_sym_is] = ACTIONS(4827), + [anon_sym_DASH_GT] = ACTIONS(4827), + [anon_sym_with] = ACTIONS(4827), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -512338,25 +511787,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3578] = { - [sym_argument_list] = STATE(3150), - [sym__name] = STATE(3219), - [sym_alias_qualified_name] = STATE(3200), - [sym__simple_name] = STATE(3200), - [sym_qualified_name] = STATE(3200), - [sym_generic_name] = STATE(3156), - [sym_type] = STATE(3127), - [sym_implicit_type] = STATE(3205), - [sym_array_type] = STATE(3138), - [sym__array_base_type] = STATE(7259), - [sym_nullable_type] = STATE(3151), - [sym_pointer_type] = STATE(3151), - [sym__pointer_base_type] = STATE(7662), - [sym_function_pointer_type] = STATE(3151), - [sym_ref_type] = STATE(3205), - [sym_scoped_type] = STATE(3205), - [sym_tuple_type] = STATE(3209), - [sym_identifier] = STATE(3129), - [sym__reserved_identifier] = STATE(3149), [sym_preproc_region] = STATE(3578), [sym_preproc_endregion] = STATE(3578), [sym_preproc_line] = STATE(3578), @@ -512366,35 +511796,54 @@ 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), - [sym__identifier_token] = ACTIONS(3773), - [anon_sym_alias] = ACTIONS(3775), - [anon_sym_global] = ACTIONS(3775), - [anon_sym_LBRACK] = ACTIONS(5700), - [anon_sym_LPAREN] = ACTIONS(5702), - [anon_sym_ref] = ACTIONS(4185), - [anon_sym_LBRACE] = ACTIONS(5704), - [anon_sym_delegate] = ACTIONS(5706), - [anon_sym_file] = ACTIONS(3775), - [anon_sym_where] = ACTIONS(3775), - [anon_sym_notnull] = ACTIONS(3775), - [anon_sym_unmanaged] = ACTIONS(3775), - [anon_sym_scoped] = ACTIONS(5735), - [anon_sym_var] = ACTIONS(5710), - [sym_predefined_type] = ACTIONS(5712), - [anon_sym_yield] = ACTIONS(3775), - [anon_sym_when] = ACTIONS(3775), - [anon_sym_from] = ACTIONS(3775), - [anon_sym_into] = ACTIONS(3775), - [anon_sym_join] = ACTIONS(3775), - [anon_sym_on] = ACTIONS(3775), - [anon_sym_equals] = ACTIONS(3775), - [anon_sym_let] = ACTIONS(3775), - [anon_sym_orderby] = ACTIONS(3775), - [anon_sym_ascending] = ACTIONS(3775), - [anon_sym_descending] = ACTIONS(3775), - [anon_sym_group] = ACTIONS(3775), - [anon_sym_by] = ACTIONS(3775), - [anon_sym_select] = ACTIONS(3775), + [sym__identifier_token] = ACTIONS(3757), + [anon_sym_extern] = ACTIONS(3757), + [anon_sym_alias] = ACTIONS(3757), + [anon_sym_global] = ACTIONS(3757), + [anon_sym_unsafe] = ACTIONS(3757), + [anon_sym_static] = ACTIONS(3757), + [anon_sym_LBRACK] = ACTIONS(3759), + [anon_sym_LPAREN] = ACTIONS(3759), + [anon_sym_ref] = ACTIONS(3757), + [anon_sym_delegate] = ACTIONS(3757), + [anon_sym_abstract] = ACTIONS(3757), + [anon_sym_async] = ACTIONS(3757), + [anon_sym_const] = ACTIONS(3757), + [anon_sym_file] = ACTIONS(3757), + [anon_sym_fixed] = ACTIONS(3757), + [anon_sym_internal] = ACTIONS(3757), + [anon_sym_new] = ACTIONS(3757), + [anon_sym_override] = ACTIONS(3757), + [anon_sym_partial] = ACTIONS(3757), + [anon_sym_private] = ACTIONS(3757), + [anon_sym_protected] = ACTIONS(3757), + [anon_sym_public] = ACTIONS(3757), + [anon_sym_readonly] = ACTIONS(3757), + [anon_sym_required] = ACTIONS(3757), + [anon_sym_sealed] = ACTIONS(3757), + [anon_sym_virtual] = ACTIONS(3757), + [anon_sym_volatile] = ACTIONS(3757), + [anon_sym_where] = ACTIONS(3757), + [anon_sym_notnull] = ACTIONS(3757), + [anon_sym_unmanaged] = ACTIONS(3757), + [anon_sym_scoped] = ACTIONS(3757), + [anon_sym_var] = ACTIONS(3757), + [sym_predefined_type] = ACTIONS(3757), + [anon_sym_yield] = ACTIONS(3757), + [anon_sym_when] = ACTIONS(3757), + [anon_sym_from] = ACTIONS(3757), + [anon_sym_into] = ACTIONS(3757), + [anon_sym_join] = ACTIONS(3757), + [anon_sym_on] = ACTIONS(3757), + [anon_sym_equals] = ACTIONS(3757), + [anon_sym_let] = ACTIONS(3757), + [anon_sym_orderby] = ACTIONS(3757), + [anon_sym_ascending] = ACTIONS(3757), + [anon_sym_descending] = ACTIONS(3757), + [anon_sym_group] = ACTIONS(3757), + [anon_sym_by] = ACTIONS(3757), + [anon_sym_select] = ACTIONS(3757), + [aux_sym_preproc_if_token1] = ACTIONS(3759), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -512407,7 +511856,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3579] = { - [sym_initializer_expression] = STATE(3696), + [sym__name] = STATE(6400), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(4068), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(4073), + [sym_type] = STATE(6848), + [sym_implicit_type] = STATE(7035), + [sym_array_type] = STATE(6706), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7421), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(7035), + [sym_scoped_type] = STATE(7035), + [sym_tuple_type] = STATE(6601), + [sym_identifier] = STATE(4081), + [sym__reserved_identifier] = STATE(3654), [sym_preproc_region] = STATE(3579), [sym_preproc_endregion] = STATE(3579), [sym_preproc_line] = STATE(3579), @@ -512417,53 +511883,36 @@ 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_LBRACK] = ACTIONS(4849), - [anon_sym_COMMA] = ACTIONS(4847), - [anon_sym_LPAREN] = ACTIONS(4847), - [anon_sym_LBRACE] = ACTIONS(1633), - [anon_sym_LT] = ACTIONS(4852), - [anon_sym_GT] = ACTIONS(4852), - [anon_sym_where] = ACTIONS(4847), - [anon_sym_QMARK] = ACTIONS(4852), - [anon_sym_BANG] = ACTIONS(4852), - [anon_sym_PLUS_PLUS] = ACTIONS(4847), - [anon_sym_DASH_DASH] = ACTIONS(4847), - [anon_sym_PLUS] = ACTIONS(4852), - [anon_sym_DASH] = ACTIONS(4852), - [anon_sym_STAR] = ACTIONS(4847), - [anon_sym_SLASH] = ACTIONS(4852), - [anon_sym_PERCENT] = ACTIONS(4847), - [anon_sym_CARET] = ACTIONS(4847), - [anon_sym_PIPE] = ACTIONS(4852), - [anon_sym_AMP] = ACTIONS(4852), - [anon_sym_LT_LT] = ACTIONS(4847), - [anon_sym_GT_GT] = ACTIONS(4852), - [anon_sym_GT_GT_GT] = ACTIONS(4847), - [anon_sym_EQ_EQ] = ACTIONS(4847), - [anon_sym_BANG_EQ] = ACTIONS(4847), - [anon_sym_GT_EQ] = ACTIONS(4847), - [anon_sym_LT_EQ] = ACTIONS(4847), - [anon_sym_DOT] = ACTIONS(4852), - [anon_sym_switch] = ACTIONS(4847), - [anon_sym_DOT_DOT] = ACTIONS(4847), - [anon_sym_and] = ACTIONS(4847), - [anon_sym_or] = ACTIONS(4852), - [anon_sym_AMP_AMP] = ACTIONS(4847), - [anon_sym_PIPE_PIPE] = ACTIONS(4847), - [anon_sym_QMARK_QMARK] = ACTIONS(4847), - [anon_sym_from] = ACTIONS(4847), - [anon_sym_into] = ACTIONS(4847), - [anon_sym_join] = 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_select] = ACTIONS(4847), - [anon_sym_as] = ACTIONS(4852), - [anon_sym_is] = ACTIONS(4847), - [anon_sym_DASH_GT] = ACTIONS(4847), - [anon_sym_with] = ACTIONS(4847), + [aux_sym_type_argument_list_repeat1] = STATE(6849), + [sym__identifier_token] = ACTIONS(2965), + [anon_sym_alias] = ACTIONS(2969), + [anon_sym_global] = ACTIONS(2969), + [anon_sym_COMMA] = ACTIONS(5168), + [anon_sym_LPAREN] = ACTIONS(2977), + [anon_sym_ref] = ACTIONS(5170), + [anon_sym_delegate] = ACTIONS(5172), + [anon_sym_file] = ACTIONS(2969), + [anon_sym_GT] = ACTIONS(5765), + [anon_sym_where] = ACTIONS(2969), + [anon_sym_notnull] = ACTIONS(2969), + [anon_sym_unmanaged] = ACTIONS(2969), + [anon_sym_scoped] = ACTIONS(5178), + [anon_sym_var] = ACTIONS(4705), + [sym_predefined_type] = ACTIONS(5180), + [anon_sym_yield] = ACTIONS(2969), + [anon_sym_when] = ACTIONS(2969), + [anon_sym_from] = ACTIONS(2969), + [anon_sym_into] = ACTIONS(2969), + [anon_sym_join] = ACTIONS(2969), + [anon_sym_on] = ACTIONS(2969), + [anon_sym_equals] = ACTIONS(2969), + [anon_sym_let] = ACTIONS(2969), + [anon_sym_orderby] = ACTIONS(2969), + [anon_sym_ascending] = ACTIONS(2969), + [anon_sym_descending] = ACTIONS(2969), + [anon_sym_group] = ACTIONS(2969), + [anon_sym_by] = ACTIONS(2969), + [anon_sym_select] = ACTIONS(2969), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -512476,6 +511925,25 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3580] = { + [sym_argument_list] = STATE(3138), + [sym__name] = STATE(3151), + [sym_alias_qualified_name] = STATE(3143), + [sym__simple_name] = STATE(3143), + [sym_qualified_name] = STATE(3143), + [sym_generic_name] = STATE(3184), + [sym_type] = STATE(3116), + [sym_implicit_type] = STATE(3146), + [sym_array_type] = STATE(3139), + [sym__array_base_type] = STATE(7165), + [sym_nullable_type] = STATE(3148), + [sym_pointer_type] = STATE(3148), + [sym__pointer_base_type] = STATE(7401), + [sym_function_pointer_type] = STATE(3148), + [sym_ref_type] = STATE(3146), + [sym_scoped_type] = STATE(3146), + [sym_tuple_type] = STATE(3149), + [sym_identifier] = STATE(3119), + [sym__reserved_identifier] = STATE(3120), [sym_preproc_region] = STATE(3580), [sym_preproc_endregion] = STATE(3580), [sym_preproc_line] = STATE(3580), @@ -512485,54 +511953,35 @@ 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(5005), - [anon_sym_extern] = ACTIONS(5005), - [anon_sym_alias] = ACTIONS(5005), - [anon_sym_global] = ACTIONS(5005), - [anon_sym_unsafe] = ACTIONS(5005), - [anon_sym_static] = ACTIONS(5005), - [anon_sym_LBRACK] = ACTIONS(5007), - [anon_sym_LPAREN] = ACTIONS(5007), - [anon_sym_ref] = ACTIONS(5005), - [anon_sym_delegate] = ACTIONS(5005), - [anon_sym_abstract] = ACTIONS(5005), - [anon_sym_async] = ACTIONS(5005), - [anon_sym_const] = ACTIONS(5005), - [anon_sym_file] = ACTIONS(5005), - [anon_sym_fixed] = ACTIONS(5005), - [anon_sym_internal] = ACTIONS(5005), - [anon_sym_new] = ACTIONS(5005), - [anon_sym_override] = ACTIONS(5005), - [anon_sym_partial] = ACTIONS(5005), - [anon_sym_private] = ACTIONS(5005), - [anon_sym_protected] = ACTIONS(5005), - [anon_sym_public] = ACTIONS(5005), - [anon_sym_readonly] = ACTIONS(5005), - [anon_sym_required] = ACTIONS(5005), - [anon_sym_sealed] = ACTIONS(5005), - [anon_sym_virtual] = ACTIONS(5005), - [anon_sym_volatile] = ACTIONS(5005), - [anon_sym_where] = ACTIONS(5005), - [anon_sym_notnull] = ACTIONS(5005), - [anon_sym_unmanaged] = ACTIONS(5005), - [anon_sym_scoped] = ACTIONS(5005), - [anon_sym_var] = ACTIONS(5005), - [sym_predefined_type] = ACTIONS(5005), - [anon_sym_yield] = ACTIONS(5005), - [anon_sym_when] = ACTIONS(5005), - [anon_sym_from] = ACTIONS(5005), - [anon_sym_into] = ACTIONS(5005), - [anon_sym_join] = ACTIONS(5005), - [anon_sym_on] = ACTIONS(5005), - [anon_sym_equals] = ACTIONS(5005), - [anon_sym_let] = ACTIONS(5005), - [anon_sym_orderby] = ACTIONS(5005), - [anon_sym_ascending] = ACTIONS(5005), - [anon_sym_descending] = ACTIONS(5005), - [anon_sym_group] = ACTIONS(5005), - [anon_sym_by] = ACTIONS(5005), - [anon_sym_select] = ACTIONS(5005), - [aux_sym_preproc_if_token1] = ACTIONS(5007), + [sym__identifier_token] = ACTIONS(3761), + [anon_sym_alias] = ACTIONS(3763), + [anon_sym_global] = ACTIONS(3763), + [anon_sym_LBRACK] = ACTIONS(5616), + [anon_sym_LPAREN] = ACTIONS(5618), + [anon_sym_ref] = ACTIONS(4175), + [anon_sym_LBRACE] = ACTIONS(5620), + [anon_sym_delegate] = ACTIONS(5622), + [anon_sym_file] = ACTIONS(3763), + [anon_sym_where] = ACTIONS(3763), + [anon_sym_notnull] = ACTIONS(3763), + [anon_sym_unmanaged] = ACTIONS(3763), + [anon_sym_scoped] = ACTIONS(5767), + [anon_sym_var] = ACTIONS(5626), + [sym_predefined_type] = ACTIONS(5628), + [anon_sym_yield] = ACTIONS(3763), + [anon_sym_when] = ACTIONS(3763), + [anon_sym_from] = ACTIONS(3763), + [anon_sym_into] = ACTIONS(3763), + [anon_sym_join] = ACTIONS(3763), + [anon_sym_on] = ACTIONS(3763), + [anon_sym_equals] = ACTIONS(3763), + [anon_sym_let] = ACTIONS(3763), + [anon_sym_orderby] = ACTIONS(3763), + [anon_sym_ascending] = ACTIONS(3763), + [anon_sym_descending] = ACTIONS(3763), + [anon_sym_group] = ACTIONS(3763), + [anon_sym_by] = ACTIONS(3763), + [anon_sym_select] = ACTIONS(3763), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -512545,26 +511994,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3581] = { - [sym_tuple_pattern] = STATE(6810), - [sym__name] = STATE(4390), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(4096), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(4109), - [sym_type] = STATE(5950), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_tuple_element] = STATE(7283), - [sym_identifier] = STATE(5747), - [sym__reserved_identifier] = STATE(3691), + [sym_argument_list] = STATE(3771), + [sym_bracketed_argument_list] = STATE(2892), [sym_preproc_region] = STATE(3581), [sym_preproc_endregion] = STATE(3581), [sym_preproc_line] = STATE(3581), @@ -512574,34 +512005,52 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3581), [sym_preproc_define] = STATE(3581), [sym_preproc_undef] = STATE(3581), - [sym__identifier_token] = ACTIONS(2967), - [anon_sym_alias] = ACTIONS(2971), - [anon_sym_global] = ACTIONS(2971), - [anon_sym_LPAREN] = ACTIONS(4709), - [anon_sym_ref] = ACTIONS(3606), - [anon_sym_delegate] = ACTIONS(3454), - [anon_sym_file] = ACTIONS(2971), - [anon_sym_where] = ACTIONS(2971), - [anon_sym_notnull] = ACTIONS(2971), - [anon_sym_unmanaged] = ACTIONS(2971), - [anon_sym_scoped] = ACTIONS(5737), - [anon_sym_var] = ACTIONS(4737), - [sym_predefined_type] = ACTIONS(3001), - [anon_sym_yield] = ACTIONS(2971), - [anon_sym_when] = ACTIONS(2971), - [sym_discard] = ACTIONS(4713), - [anon_sym_from] = ACTIONS(2971), - [anon_sym_into] = ACTIONS(2971), - [anon_sym_join] = ACTIONS(2971), - [anon_sym_on] = ACTIONS(2971), - [anon_sym_equals] = ACTIONS(2971), - [anon_sym_let] = ACTIONS(2971), - [anon_sym_orderby] = ACTIONS(2971), - [anon_sym_ascending] = ACTIONS(2971), - [anon_sym_descending] = ACTIONS(2971), - [anon_sym_group] = ACTIONS(2971), - [anon_sym_by] = ACTIONS(2971), - [anon_sym_select] = ACTIONS(2971), + [anon_sym_LBRACK] = ACTIONS(5650), + [anon_sym_COMMA] = ACTIONS(5737), + [anon_sym_LPAREN] = ACTIONS(5591), + [anon_sym_LT] = ACTIONS(5739), + [anon_sym_GT] = ACTIONS(5739), + [anon_sym_where] = ACTIONS(5737), + [anon_sym_QMARK] = ACTIONS(5739), + [anon_sym_BANG] = ACTIONS(5658), + [anon_sym_PLUS_PLUS] = ACTIONS(5660), + [anon_sym_DASH_DASH] = ACTIONS(5660), + [anon_sym_PLUS] = ACTIONS(5662), + [anon_sym_DASH] = ACTIONS(5662), + [anon_sym_STAR] = ACTIONS(5664), + [anon_sym_SLASH] = ACTIONS(5666), + [anon_sym_PERCENT] = ACTIONS(5664), + [anon_sym_CARET] = ACTIONS(5737), + [anon_sym_PIPE] = ACTIONS(5739), + [anon_sym_AMP] = ACTIONS(5739), + [anon_sym_LT_LT] = ACTIONS(5674), + [anon_sym_GT_GT] = ACTIONS(5676), + [anon_sym_GT_GT_GT] = ACTIONS(5674), + [anon_sym_EQ_EQ] = ACTIONS(5737), + [anon_sym_BANG_EQ] = ACTIONS(5737), + [anon_sym_GT_EQ] = ACTIONS(5737), + [anon_sym_LT_EQ] = ACTIONS(5737), + [anon_sym_DOT] = ACTIONS(4697), + [anon_sym_switch] = ACTIONS(5682), + [anon_sym_DOT_DOT] = ACTIONS(5684), + [anon_sym_and] = ACTIONS(5737), + [anon_sym_or] = ACTIONS(5739), + [anon_sym_AMP_AMP] = ACTIONS(5737), + [anon_sym_PIPE_PIPE] = ACTIONS(5737), + [anon_sym_QMARK_QMARK] = ACTIONS(5737), + [anon_sym_from] = ACTIONS(5737), + [anon_sym_into] = ACTIONS(5737), + [anon_sym_join] = ACTIONS(5737), + [anon_sym_let] = ACTIONS(5737), + [anon_sym_orderby] = ACTIONS(5737), + [anon_sym_ascending] = ACTIONS(5737), + [anon_sym_descending] = ACTIONS(5737), + [anon_sym_group] = ACTIONS(5737), + [anon_sym_select] = ACTIONS(5737), + [anon_sym_as] = ACTIONS(5739), + [anon_sym_is] = ACTIONS(5737), + [anon_sym_DASH_GT] = ACTIONS(4699), + [anon_sym_with] = ACTIONS(5698), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -512614,6 +512063,25 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3582] = { + [sym_argument_list] = STATE(2922), + [sym__name] = STATE(3086), + [sym_alias_qualified_name] = STATE(2976), + [sym__simple_name] = STATE(2976), + [sym_qualified_name] = STATE(2976), + [sym_generic_name] = STATE(3030), + [sym_type] = STATE(3472), + [sym_implicit_type] = STATE(2977), + [sym_array_type] = STATE(2908), + [sym__array_base_type] = STATE(7236), + [sym_nullable_type] = STATE(2979), + [sym_pointer_type] = STATE(2979), + [sym__pointer_base_type] = STATE(7622), + [sym_function_pointer_type] = STATE(2979), + [sym_ref_type] = STATE(2977), + [sym_scoped_type] = STATE(2977), + [sym_tuple_type] = STATE(2980), + [sym_identifier] = STATE(2927), + [sym__reserved_identifier] = STATE(2916), [sym_preproc_region] = STATE(3582), [sym_preproc_endregion] = STATE(3582), [sym_preproc_line] = STATE(3582), @@ -512623,54 +512091,35 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3582), [sym_preproc_define] = STATE(3582), [sym_preproc_undef] = STATE(3582), - [sym__identifier_token] = ACTIONS(3782), - [anon_sym_extern] = ACTIONS(3782), - [anon_sym_alias] = ACTIONS(3782), - [anon_sym_global] = ACTIONS(3782), - [anon_sym_unsafe] = ACTIONS(3782), - [anon_sym_static] = ACTIONS(3782), - [anon_sym_LBRACK] = ACTIONS(3784), - [anon_sym_LPAREN] = ACTIONS(3784), - [anon_sym_ref] = ACTIONS(3782), - [anon_sym_delegate] = ACTIONS(3782), - [anon_sym_abstract] = ACTIONS(3782), - [anon_sym_async] = ACTIONS(3782), - [anon_sym_const] = ACTIONS(3782), - [anon_sym_file] = ACTIONS(3782), - [anon_sym_fixed] = ACTIONS(3782), - [anon_sym_internal] = ACTIONS(3782), - [anon_sym_new] = ACTIONS(3782), - [anon_sym_override] = ACTIONS(3782), - [anon_sym_partial] = ACTIONS(3782), - [anon_sym_private] = ACTIONS(3782), - [anon_sym_protected] = ACTIONS(3782), - [anon_sym_public] = ACTIONS(3782), - [anon_sym_readonly] = ACTIONS(3782), - [anon_sym_required] = ACTIONS(3782), - [anon_sym_sealed] = ACTIONS(3782), - [anon_sym_virtual] = ACTIONS(3782), - [anon_sym_volatile] = ACTIONS(3782), - [anon_sym_where] = ACTIONS(3782), - [anon_sym_notnull] = ACTIONS(3782), - [anon_sym_unmanaged] = ACTIONS(3782), - [anon_sym_scoped] = ACTIONS(3782), - [anon_sym_var] = ACTIONS(3782), - [sym_predefined_type] = ACTIONS(3782), - [anon_sym_yield] = ACTIONS(3782), - [anon_sym_when] = ACTIONS(3782), - [anon_sym_from] = ACTIONS(3782), - [anon_sym_into] = ACTIONS(3782), - [anon_sym_join] = ACTIONS(3782), - [anon_sym_on] = ACTIONS(3782), - [anon_sym_equals] = ACTIONS(3782), - [anon_sym_let] = ACTIONS(3782), - [anon_sym_orderby] = ACTIONS(3782), - [anon_sym_ascending] = ACTIONS(3782), - [anon_sym_descending] = ACTIONS(3782), - [anon_sym_group] = ACTIONS(3782), - [anon_sym_by] = ACTIONS(3782), - [anon_sym_select] = ACTIONS(3782), - [aux_sym_preproc_if_token1] = ACTIONS(3784), + [sym__identifier_token] = ACTIONS(3871), + [anon_sym_alias] = ACTIONS(3873), + [anon_sym_global] = ACTIONS(3873), + [anon_sym_LBRACK] = ACTIONS(4009), + [anon_sym_LPAREN] = ACTIONS(4011), + [anon_sym_ref] = ACTIONS(4197), + [anon_sym_LBRACE] = ACTIONS(4013), + [anon_sym_delegate] = ACTIONS(4015), + [anon_sym_file] = ACTIONS(3873), + [anon_sym_where] = ACTIONS(3873), + [anon_sym_notnull] = ACTIONS(3873), + [anon_sym_unmanaged] = ACTIONS(3873), + [anon_sym_scoped] = ACTIONS(5769), + [anon_sym_var] = ACTIONS(4019), + [sym_predefined_type] = ACTIONS(4021), + [anon_sym_yield] = ACTIONS(3873), + [anon_sym_when] = ACTIONS(3873), + [anon_sym_from] = ACTIONS(3873), + [anon_sym_into] = ACTIONS(3873), + [anon_sym_join] = ACTIONS(3873), + [anon_sym_on] = ACTIONS(3873), + [anon_sym_equals] = ACTIONS(3873), + [anon_sym_let] = ACTIONS(3873), + [anon_sym_orderby] = ACTIONS(3873), + [anon_sym_ascending] = ACTIONS(3873), + [anon_sym_descending] = ACTIONS(3873), + [anon_sym_group] = ACTIONS(3873), + [anon_sym_by] = ACTIONS(3873), + [anon_sym_select] = ACTIONS(3873), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -512683,24 +512132,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3583] = { - [sym__name] = STATE(6450), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(4096), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(4109), - [sym_type] = STATE(6762), - [sym_implicit_type] = STATE(7266), - [sym_array_type] = STATE(6694), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7446), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(7266), - [sym_scoped_type] = STATE(7266), - [sym_tuple_type] = STATE(6579), - [sym_identifier] = STATE(4087), - [sym__reserved_identifier] = STATE(3691), + [sym_argument_list] = STATE(3771), + [sym_bracketed_argument_list] = STATE(2892), [sym_preproc_region] = STATE(3583), [sym_preproc_endregion] = STATE(3583), [sym_preproc_line] = STATE(3583), @@ -512710,36 +512143,52 @@ 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), - [aux_sym_type_argument_list_repeat1] = STATE(6764), - [sym__identifier_token] = ACTIONS(2967), - [anon_sym_alias] = ACTIONS(2971), - [anon_sym_global] = ACTIONS(2971), - [anon_sym_COMMA] = ACTIONS(5026), - [anon_sym_LPAREN] = ACTIONS(2979), - [anon_sym_ref] = ACTIONS(5028), - [anon_sym_delegate] = ACTIONS(5030), - [anon_sym_file] = ACTIONS(2971), + [anon_sym_LBRACK] = ACTIONS(5650), + [anon_sym_COMMA] = ACTIONS(5737), + [anon_sym_LPAREN] = ACTIONS(5591), + [anon_sym_LT] = ACTIONS(5739), [anon_sym_GT] = ACTIONS(5739), - [anon_sym_where] = ACTIONS(2971), - [anon_sym_notnull] = ACTIONS(2971), - [anon_sym_unmanaged] = ACTIONS(2971), - [anon_sym_scoped] = ACTIONS(5036), - [anon_sym_var] = ACTIONS(4737), - [sym_predefined_type] = ACTIONS(5038), - [anon_sym_yield] = ACTIONS(2971), - [anon_sym_when] = ACTIONS(2971), - [anon_sym_from] = ACTIONS(2971), - [anon_sym_into] = ACTIONS(2971), - [anon_sym_join] = ACTIONS(2971), - [anon_sym_on] = ACTIONS(2971), - [anon_sym_equals] = ACTIONS(2971), - [anon_sym_let] = ACTIONS(2971), - [anon_sym_orderby] = ACTIONS(2971), - [anon_sym_ascending] = ACTIONS(2971), - [anon_sym_descending] = ACTIONS(2971), - [anon_sym_group] = ACTIONS(2971), - [anon_sym_by] = ACTIONS(2971), - [anon_sym_select] = ACTIONS(2971), + [anon_sym_where] = ACTIONS(5737), + [anon_sym_QMARK] = ACTIONS(5739), + [anon_sym_BANG] = ACTIONS(5658), + [anon_sym_PLUS_PLUS] = ACTIONS(5660), + [anon_sym_DASH_DASH] = ACTIONS(5660), + [anon_sym_PLUS] = ACTIONS(5739), + [anon_sym_DASH] = ACTIONS(5739), + [anon_sym_STAR] = ACTIONS(5664), + [anon_sym_SLASH] = ACTIONS(5666), + [anon_sym_PERCENT] = ACTIONS(5664), + [anon_sym_CARET] = ACTIONS(5737), + [anon_sym_PIPE] = ACTIONS(5739), + [anon_sym_AMP] = ACTIONS(5739), + [anon_sym_LT_LT] = ACTIONS(5737), + [anon_sym_GT_GT] = ACTIONS(5739), + [anon_sym_GT_GT_GT] = ACTIONS(5737), + [anon_sym_EQ_EQ] = ACTIONS(5737), + [anon_sym_BANG_EQ] = ACTIONS(5737), + [anon_sym_GT_EQ] = ACTIONS(5737), + [anon_sym_LT_EQ] = ACTIONS(5737), + [anon_sym_DOT] = ACTIONS(4697), + [anon_sym_switch] = ACTIONS(5682), + [anon_sym_DOT_DOT] = ACTIONS(5684), + [anon_sym_and] = ACTIONS(5737), + [anon_sym_or] = ACTIONS(5739), + [anon_sym_AMP_AMP] = ACTIONS(5737), + [anon_sym_PIPE_PIPE] = ACTIONS(5737), + [anon_sym_QMARK_QMARK] = ACTIONS(5737), + [anon_sym_from] = ACTIONS(5737), + [anon_sym_into] = ACTIONS(5737), + [anon_sym_join] = ACTIONS(5737), + [anon_sym_let] = ACTIONS(5737), + [anon_sym_orderby] = ACTIONS(5737), + [anon_sym_ascending] = ACTIONS(5737), + [anon_sym_descending] = ACTIONS(5737), + [anon_sym_group] = ACTIONS(5737), + [anon_sym_select] = ACTIONS(5737), + [anon_sym_as] = ACTIONS(5739), + [anon_sym_is] = ACTIONS(5737), + [anon_sym_DASH_GT] = ACTIONS(4699), + [anon_sym_with] = ACTIONS(5698), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -512752,6 +512201,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3584] = { + [sym_argument_list] = STATE(3771), + [sym_bracketed_argument_list] = STATE(2892), [sym_preproc_region] = STATE(3584), [sym_preproc_endregion] = STATE(3584), [sym_preproc_line] = STATE(3584), @@ -512761,54 +512212,52 @@ 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(4745), - [anon_sym_extern] = ACTIONS(4745), - [anon_sym_alias] = ACTIONS(4745), - [anon_sym_global] = ACTIONS(4745), - [anon_sym_unsafe] = ACTIONS(4745), - [anon_sym_static] = ACTIONS(4745), - [anon_sym_LBRACK] = ACTIONS(4747), - [anon_sym_LPAREN] = ACTIONS(4747), - [anon_sym_ref] = ACTIONS(4745), - [anon_sym_delegate] = ACTIONS(4745), - [anon_sym_abstract] = ACTIONS(4745), - [anon_sym_async] = ACTIONS(4745), - [anon_sym_const] = ACTIONS(4745), - [anon_sym_file] = ACTIONS(4745), - [anon_sym_fixed] = ACTIONS(4745), - [anon_sym_internal] = ACTIONS(4745), - [anon_sym_new] = ACTIONS(4745), - [anon_sym_override] = ACTIONS(4745), - [anon_sym_partial] = ACTIONS(4745), - [anon_sym_private] = ACTIONS(4745), - [anon_sym_protected] = ACTIONS(4745), - [anon_sym_public] = ACTIONS(4745), - [anon_sym_readonly] = ACTIONS(4745), - [anon_sym_required] = ACTIONS(4745), - [anon_sym_sealed] = ACTIONS(4745), - [anon_sym_virtual] = ACTIONS(4745), - [anon_sym_volatile] = ACTIONS(4745), - [anon_sym_where] = ACTIONS(4745), - [anon_sym_notnull] = ACTIONS(4745), - [anon_sym_unmanaged] = ACTIONS(4745), - [anon_sym_scoped] = ACTIONS(4745), - [anon_sym_var] = ACTIONS(4745), - [sym_predefined_type] = ACTIONS(4745), - [anon_sym_yield] = ACTIONS(4745), - [anon_sym_when] = ACTIONS(4745), - [anon_sym_from] = ACTIONS(4745), - [anon_sym_into] = ACTIONS(4745), - [anon_sym_join] = ACTIONS(4745), - [anon_sym_on] = ACTIONS(4745), - [anon_sym_equals] = ACTIONS(4745), - [anon_sym_let] = ACTIONS(4745), - [anon_sym_orderby] = ACTIONS(4745), - [anon_sym_ascending] = ACTIONS(4745), - [anon_sym_descending] = ACTIONS(4745), - [anon_sym_group] = ACTIONS(4745), - [anon_sym_by] = ACTIONS(4745), - [anon_sym_select] = ACTIONS(4745), - [aux_sym_preproc_if_token1] = ACTIONS(4747), + [anon_sym_LBRACK] = ACTIONS(5650), + [anon_sym_COMMA] = ACTIONS(5737), + [anon_sym_LPAREN] = ACTIONS(5591), + [anon_sym_LT] = ACTIONS(5739), + [anon_sym_GT] = ACTIONS(5739), + [anon_sym_where] = ACTIONS(5737), + [anon_sym_QMARK] = ACTIONS(5739), + [anon_sym_BANG] = ACTIONS(5658), + [anon_sym_PLUS_PLUS] = ACTIONS(5660), + [anon_sym_DASH_DASH] = ACTIONS(5660), + [anon_sym_PLUS] = ACTIONS(5739), + [anon_sym_DASH] = ACTIONS(5739), + [anon_sym_STAR] = ACTIONS(5737), + [anon_sym_SLASH] = ACTIONS(5739), + [anon_sym_PERCENT] = ACTIONS(5737), + [anon_sym_CARET] = ACTIONS(5737), + [anon_sym_PIPE] = ACTIONS(5739), + [anon_sym_AMP] = ACTIONS(5739), + [anon_sym_LT_LT] = ACTIONS(5737), + [anon_sym_GT_GT] = ACTIONS(5739), + [anon_sym_GT_GT_GT] = ACTIONS(5737), + [anon_sym_EQ_EQ] = ACTIONS(5737), + [anon_sym_BANG_EQ] = ACTIONS(5737), + [anon_sym_GT_EQ] = ACTIONS(5737), + [anon_sym_LT_EQ] = ACTIONS(5737), + [anon_sym_DOT] = ACTIONS(4697), + [anon_sym_switch] = ACTIONS(5682), + [anon_sym_DOT_DOT] = ACTIONS(5684), + [anon_sym_and] = ACTIONS(5737), + [anon_sym_or] = ACTIONS(5739), + [anon_sym_AMP_AMP] = ACTIONS(5737), + [anon_sym_PIPE_PIPE] = ACTIONS(5737), + [anon_sym_QMARK_QMARK] = ACTIONS(5737), + [anon_sym_from] = ACTIONS(5737), + [anon_sym_into] = ACTIONS(5737), + [anon_sym_join] = ACTIONS(5737), + [anon_sym_let] = ACTIONS(5737), + [anon_sym_orderby] = ACTIONS(5737), + [anon_sym_ascending] = ACTIONS(5737), + [anon_sym_descending] = ACTIONS(5737), + [anon_sym_group] = ACTIONS(5737), + [anon_sym_select] = ACTIONS(5737), + [anon_sym_as] = ACTIONS(5739), + [anon_sym_is] = ACTIONS(5737), + [anon_sym_DASH_GT] = ACTIONS(4699), + [anon_sym_with] = ACTIONS(5698), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -512821,8 +512270,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3585] = { - [sym_argument_list] = STATE(3886), - [sym_bracketed_argument_list] = STATE(2902), + [sym_modifier] = STATE(3845), [sym_preproc_region] = STATE(3585), [sym_preproc_endregion] = STATE(3585), [sym_preproc_line] = STATE(3585), @@ -512832,52 +512280,53 @@ 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_LBRACK] = ACTIONS(5658), - [anon_sym_COMMA] = ACTIONS(5660), - [anon_sym_LPAREN] = ACTIONS(5624), - [anon_sym_LT] = ACTIONS(5664), - [anon_sym_GT] = ACTIONS(5664), - [anon_sym_where] = ACTIONS(5660), - [anon_sym_QMARK] = ACTIONS(5664), - [anon_sym_BANG] = ACTIONS(5666), - [anon_sym_PLUS_PLUS] = ACTIONS(5668), - [anon_sym_DASH_DASH] = ACTIONS(5668), - [anon_sym_PLUS] = ACTIONS(5670), - [anon_sym_DASH] = ACTIONS(5670), - [anon_sym_STAR] = ACTIONS(5672), - [anon_sym_SLASH] = ACTIONS(5674), - [anon_sym_PERCENT] = ACTIONS(5672), - [anon_sym_CARET] = ACTIONS(5660), - [anon_sym_PIPE] = ACTIONS(5664), - [anon_sym_AMP] = ACTIONS(5664), - [anon_sym_LT_LT] = ACTIONS(5660), - [anon_sym_GT_GT] = ACTIONS(5664), - [anon_sym_GT_GT_GT] = ACTIONS(5660), - [anon_sym_EQ_EQ] = ACTIONS(5660), - [anon_sym_BANG_EQ] = ACTIONS(5660), - [anon_sym_GT_EQ] = ACTIONS(5660), - [anon_sym_LT_EQ] = ACTIONS(5660), - [anon_sym_DOT] = ACTIONS(4733), - [anon_sym_switch] = ACTIONS(5688), - [anon_sym_DOT_DOT] = ACTIONS(5690), - [anon_sym_and] = ACTIONS(5660), - [anon_sym_or] = ACTIONS(5664), - [anon_sym_AMP_AMP] = ACTIONS(5660), - [anon_sym_PIPE_PIPE] = ACTIONS(5660), - [anon_sym_QMARK_QMARK] = ACTIONS(5660), - [anon_sym_from] = ACTIONS(5660), - [anon_sym_into] = ACTIONS(5660), - [anon_sym_join] = ACTIONS(5660), - [anon_sym_let] = ACTIONS(5660), - [anon_sym_orderby] = ACTIONS(5660), - [anon_sym_ascending] = ACTIONS(5660), - [anon_sym_descending] = ACTIONS(5660), - [anon_sym_group] = ACTIONS(5660), - [anon_sym_select] = ACTIONS(5660), - [anon_sym_as] = ACTIONS(5664), - [anon_sym_is] = ACTIONS(5660), - [anon_sym_DASH_GT] = ACTIONS(4719), - [anon_sym_with] = ACTIONS(5696), + [aux_sym__class_declaration_initializer_repeat2] = STATE(3585), + [sym__identifier_token] = ACTIONS(5192), + [anon_sym_extern] = ACTIONS(5771), + [anon_sym_alias] = ACTIONS(5192), + [anon_sym_global] = ACTIONS(5192), + [anon_sym_unsafe] = ACTIONS(5771), + [anon_sym_static] = ACTIONS(5771), + [anon_sym_LPAREN] = ACTIONS(5197), + [anon_sym_ref] = ACTIONS(5192), + [anon_sym_delegate] = ACTIONS(5192), + [anon_sym_abstract] = ACTIONS(5771), + [anon_sym_async] = ACTIONS(5771), + [anon_sym_const] = ACTIONS(5771), + [anon_sym_file] = ACTIONS(5771), + [anon_sym_fixed] = ACTIONS(5771), + [anon_sym_internal] = ACTIONS(5771), + [anon_sym_new] = ACTIONS(5771), + [anon_sym_override] = ACTIONS(5771), + [anon_sym_partial] = ACTIONS(5771), + [anon_sym_private] = ACTIONS(5771), + [anon_sym_protected] = ACTIONS(5771), + [anon_sym_public] = ACTIONS(5771), + [anon_sym_readonly] = ACTIONS(5771), + [anon_sym_required] = ACTIONS(5771), + [anon_sym_sealed] = ACTIONS(5771), + [anon_sym_virtual] = ACTIONS(5771), + [anon_sym_volatile] = ACTIONS(5771), + [anon_sym_where] = ACTIONS(5192), + [anon_sym_notnull] = ACTIONS(5192), + [anon_sym_unmanaged] = ACTIONS(5192), + [anon_sym_scoped] = ACTIONS(5192), + [anon_sym_var] = ACTIONS(5192), + [sym_predefined_type] = ACTIONS(5192), + [anon_sym_yield] = ACTIONS(5192), + [anon_sym_when] = 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_ascending] = ACTIONS(5192), + [anon_sym_descending] = ACTIONS(5192), + [anon_sym_group] = ACTIONS(5192), + [anon_sym_by] = ACTIONS(5192), + [anon_sym_select] = ACTIONS(5192), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -512890,25 +512339,25 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3586] = { - [sym_argument_list] = STATE(2946), - [sym__name] = STATE(3072), - [sym_alias_qualified_name] = STATE(3029), - [sym__simple_name] = STATE(3029), - [sym_qualified_name] = STATE(3029), - [sym_generic_name] = STATE(2985), - [sym_type] = STATE(3383), - [sym_implicit_type] = STATE(3054), - [sym_array_type] = STATE(4339), - [sym__array_base_type] = STATE(7267), - [sym_nullable_type] = STATE(3012), - [sym_pointer_type] = STATE(3012), - [sym__pointer_base_type] = STATE(7693), - [sym_function_pointer_type] = STATE(3012), - [sym_ref_type] = STATE(3054), - [sym_scoped_type] = STATE(3054), - [sym_tuple_type] = STATE(3058), - [sym_identifier] = STATE(2923), - [sym__reserved_identifier] = STATE(2945), + [sym_argument_list] = STATE(2922), + [sym__name] = STATE(3086), + [sym_alias_qualified_name] = STATE(2976), + [sym__simple_name] = STATE(2976), + [sym_qualified_name] = STATE(2976), + [sym_generic_name] = STATE(3030), + [sym_type] = STATE(3472), + [sym_implicit_type] = STATE(2977), + [sym_array_type] = STATE(2908), + [sym__array_base_type] = STATE(7236), + [sym_nullable_type] = STATE(2979), + [sym_pointer_type] = STATE(2979), + [sym__pointer_base_type] = STATE(7622), + [sym_function_pointer_type] = STATE(2979), + [sym_ref_type] = STATE(2977), + [sym_scoped_type] = STATE(2977), + [sym_tuple_type] = STATE(2980), + [sym_identifier] = STATE(2927), + [sym__reserved_identifier] = STATE(2916), [sym_preproc_region] = STATE(3586), [sym_preproc_endregion] = STATE(3586), [sym_preproc_line] = STATE(3586), @@ -512918,35 +512367,35 @@ 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), - [sym__identifier_token] = ACTIONS(3887), - [anon_sym_alias] = ACTIONS(3889), - [anon_sym_global] = ACTIONS(3889), - [anon_sym_LBRACK] = ACTIONS(4036), - [anon_sym_LPAREN] = ACTIONS(4038), - [anon_sym_ref] = ACTIONS(3891), - [anon_sym_LBRACE] = ACTIONS(4040), - [anon_sym_delegate] = ACTIONS(4042), - [anon_sym_file] = ACTIONS(3889), - [anon_sym_where] = ACTIONS(3889), - [anon_sym_notnull] = ACTIONS(3889), - [anon_sym_unmanaged] = ACTIONS(3889), - [anon_sym_scoped] = ACTIONS(4044), - [anon_sym_var] = ACTIONS(4046), - [sym_predefined_type] = ACTIONS(4048), - [anon_sym_yield] = ACTIONS(3889), - [anon_sym_when] = ACTIONS(3889), - [anon_sym_from] = ACTIONS(3889), - [anon_sym_into] = ACTIONS(3889), - [anon_sym_join] = ACTIONS(3889), - [anon_sym_on] = ACTIONS(3889), - [anon_sym_equals] = ACTIONS(3889), - [anon_sym_let] = ACTIONS(3889), - [anon_sym_orderby] = ACTIONS(3889), - [anon_sym_ascending] = ACTIONS(3889), - [anon_sym_descending] = ACTIONS(3889), - [anon_sym_group] = ACTIONS(3889), - [anon_sym_by] = ACTIONS(3889), - [anon_sym_select] = ACTIONS(3889), + [sym__identifier_token] = ACTIONS(3871), + [anon_sym_alias] = ACTIONS(3873), + [anon_sym_global] = ACTIONS(3873), + [anon_sym_LBRACK] = ACTIONS(4009), + [anon_sym_LPAREN] = ACTIONS(4011), + [anon_sym_ref] = ACTIONS(4195), + [anon_sym_LBRACE] = ACTIONS(4013), + [anon_sym_delegate] = ACTIONS(4015), + [anon_sym_file] = ACTIONS(3873), + [anon_sym_where] = ACTIONS(3873), + [anon_sym_notnull] = ACTIONS(3873), + [anon_sym_unmanaged] = ACTIONS(3873), + [anon_sym_scoped] = ACTIONS(5774), + [anon_sym_var] = ACTIONS(4019), + [sym_predefined_type] = ACTIONS(4021), + [anon_sym_yield] = ACTIONS(3873), + [anon_sym_when] = ACTIONS(3873), + [anon_sym_from] = ACTIONS(3873), + [anon_sym_into] = ACTIONS(3873), + [anon_sym_join] = ACTIONS(3873), + [anon_sym_on] = ACTIONS(3873), + [anon_sym_equals] = ACTIONS(3873), + [anon_sym_let] = ACTIONS(3873), + [anon_sym_orderby] = ACTIONS(3873), + [anon_sym_ascending] = ACTIONS(3873), + [anon_sym_descending] = ACTIONS(3873), + [anon_sym_group] = ACTIONS(3873), + [anon_sym_by] = ACTIONS(3873), + [anon_sym_select] = ACTIONS(3873), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -512959,6 +512408,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3587] = { + [sym_identifier] = STATE(7343), + [sym__reserved_identifier] = STATE(2168), [sym_preproc_region] = STATE(3587), [sym_preproc_endregion] = STATE(3587), [sym_preproc_line] = STATE(3587), @@ -512968,54 +512419,52 @@ 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(5130), - [anon_sym_extern] = ACTIONS(5130), - [anon_sym_alias] = ACTIONS(5130), - [anon_sym_global] = ACTIONS(5130), - [anon_sym_unsafe] = ACTIONS(5130), - [anon_sym_static] = ACTIONS(5130), - [anon_sym_LBRACK] = ACTIONS(5132), - [anon_sym_LPAREN] = ACTIONS(5132), - [anon_sym_ref] = ACTIONS(5130), - [anon_sym_delegate] = ACTIONS(5130), - [anon_sym_abstract] = ACTIONS(5130), - [anon_sym_async] = ACTIONS(5130), - [anon_sym_const] = ACTIONS(5130), - [anon_sym_file] = ACTIONS(5130), - [anon_sym_fixed] = ACTIONS(5130), - [anon_sym_internal] = ACTIONS(5130), - [anon_sym_new] = ACTIONS(5130), - [anon_sym_override] = ACTIONS(5130), - [anon_sym_partial] = ACTIONS(5130), - [anon_sym_private] = ACTIONS(5130), - [anon_sym_protected] = ACTIONS(5130), - [anon_sym_public] = ACTIONS(5130), - [anon_sym_readonly] = ACTIONS(5130), - [anon_sym_required] = ACTIONS(5130), - [anon_sym_sealed] = ACTIONS(5130), - [anon_sym_virtual] = ACTIONS(5130), - [anon_sym_volatile] = ACTIONS(5130), - [anon_sym_where] = ACTIONS(5130), - [anon_sym_notnull] = ACTIONS(5130), - [anon_sym_unmanaged] = ACTIONS(5130), - [anon_sym_scoped] = ACTIONS(5130), - [anon_sym_var] = ACTIONS(5130), - [sym_predefined_type] = ACTIONS(5130), - [anon_sym_yield] = ACTIONS(5130), - [anon_sym_when] = 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_ascending] = ACTIONS(5130), - [anon_sym_descending] = ACTIONS(5130), - [anon_sym_group] = ACTIONS(5130), - [anon_sym_by] = ACTIONS(5130), - [anon_sym_select] = ACTIONS(5130), - [aux_sym_preproc_if_token1] = ACTIONS(5132), + [sym__identifier_token] = ACTIONS(5776), + [anon_sym_extern] = ACTIONS(3466), + [anon_sym_alias] = ACTIONS(5780), + [anon_sym_global] = ACTIONS(5780), + [anon_sym_unsafe] = ACTIONS(5784), + [anon_sym_static] = ACTIONS(5784), + [anon_sym_LPAREN] = ACTIONS(5128), + [anon_sym_ref] = ACTIONS(3466), + [anon_sym_delegate] = ACTIONS(3466), + [anon_sym_abstract] = ACTIONS(3466), + [anon_sym_async] = ACTIONS(3466), + [anon_sym_const] = ACTIONS(3466), + [anon_sym_file] = ACTIONS(5780), + [anon_sym_fixed] = ACTIONS(3466), + [anon_sym_internal] = ACTIONS(3466), + [anon_sym_new] = ACTIONS(3466), + [anon_sym_override] = ACTIONS(3466), + [anon_sym_partial] = ACTIONS(3466), + [anon_sym_private] = ACTIONS(3466), + [anon_sym_protected] = ACTIONS(3466), + [anon_sym_public] = ACTIONS(3466), + [anon_sym_readonly] = ACTIONS(3466), + [anon_sym_required] = ACTIONS(3466), + [anon_sym_sealed] = ACTIONS(3466), + [anon_sym_virtual] = ACTIONS(3466), + [anon_sym_volatile] = ACTIONS(3466), + [anon_sym_where] = ACTIONS(5780), + [anon_sym_notnull] = ACTIONS(5780), + [anon_sym_unmanaged] = ACTIONS(5780), + [anon_sym_scoped] = ACTIONS(5780), + [anon_sym_var] = ACTIONS(5780), + [sym_predefined_type] = ACTIONS(3466), + [anon_sym_yield] = ACTIONS(5780), + [anon_sym_when] = ACTIONS(5780), + [anon_sym_from] = ACTIONS(5780), + [anon_sym_into] = ACTIONS(5780), + [anon_sym_join] = ACTIONS(5780), + [anon_sym_on] = ACTIONS(5780), + [anon_sym_equals] = ACTIONS(5780), + [anon_sym_let] = ACTIONS(5780), + [anon_sym_orderby] = ACTIONS(5780), + [anon_sym_ascending] = ACTIONS(5780), + [anon_sym_descending] = ACTIONS(5780), + [anon_sym_group] = ACTIONS(5780), + [anon_sym_by] = ACTIONS(5780), + [anon_sym_select] = ACTIONS(5780), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -513037,54 +512486,54 @@ 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), - [anon_sym_EQ] = ACTIONS(5482), - [anon_sym_LBRACK] = ACTIONS(4860), - [anon_sym_COMMA] = ACTIONS(4860), - [anon_sym_LPAREN] = ACTIONS(4860), - [anon_sym_RPAREN] = ACTIONS(5741), - [anon_sym_LT] = ACTIONS(4862), - [anon_sym_GT] = ACTIONS(4862), - [anon_sym_QMARK] = ACTIONS(4862), - [anon_sym_BANG] = ACTIONS(4862), - [anon_sym_PLUS_PLUS] = ACTIONS(4860), - [anon_sym_DASH_DASH] = ACTIONS(4860), - [anon_sym_PLUS] = ACTIONS(4862), - [anon_sym_DASH] = ACTIONS(4862), - [anon_sym_STAR] = ACTIONS(4862), - [anon_sym_SLASH] = ACTIONS(4862), - [anon_sym_PERCENT] = ACTIONS(4862), - [anon_sym_CARET] = ACTIONS(4862), - [anon_sym_PIPE] = ACTIONS(4862), - [anon_sym_AMP] = ACTIONS(4862), - [anon_sym_LT_LT] = ACTIONS(4862), - [anon_sym_GT_GT] = ACTIONS(4862), - [anon_sym_GT_GT_GT] = ACTIONS(4862), - [anon_sym_EQ_EQ] = ACTIONS(4860), - [anon_sym_BANG_EQ] = ACTIONS(4860), - [anon_sym_GT_EQ] = ACTIONS(4860), - [anon_sym_LT_EQ] = ACTIONS(4860), - [anon_sym_DOT] = ACTIONS(4862), - [anon_sym_switch] = ACTIONS(4860), - [anon_sym_DOT_DOT] = ACTIONS(4860), - [anon_sym_PLUS_EQ] = ACTIONS(5484), - [anon_sym_DASH_EQ] = ACTIONS(5484), - [anon_sym_STAR_EQ] = ACTIONS(5484), - [anon_sym_SLASH_EQ] = ACTIONS(5484), - [anon_sym_PERCENT_EQ] = ACTIONS(5484), - [anon_sym_AMP_EQ] = ACTIONS(5484), - [anon_sym_CARET_EQ] = ACTIONS(5484), - [anon_sym_PIPE_EQ] = ACTIONS(5484), - [anon_sym_LT_LT_EQ] = ACTIONS(5484), - [anon_sym_GT_GT_EQ] = ACTIONS(5484), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(5484), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(5484), - [anon_sym_AMP_AMP] = ACTIONS(4860), - [anon_sym_PIPE_PIPE] = ACTIONS(4860), - [anon_sym_QMARK_QMARK] = ACTIONS(4862), - [anon_sym_as] = ACTIONS(4860), - [anon_sym_is] = ACTIONS(4860), - [anon_sym_DASH_GT] = ACTIONS(4860), - [anon_sym_with] = ACTIONS(4860), + [sym__identifier_token] = ACTIONS(4761), + [anon_sym_extern] = ACTIONS(4761), + [anon_sym_alias] = ACTIONS(4761), + [anon_sym_global] = ACTIONS(4761), + [anon_sym_unsafe] = ACTIONS(4761), + [anon_sym_static] = ACTIONS(4761), + [anon_sym_LBRACK] = ACTIONS(4763), + [anon_sym_LPAREN] = ACTIONS(4763), + [anon_sym_ref] = ACTIONS(4761), + [anon_sym_delegate] = ACTIONS(4761), + [anon_sym_abstract] = ACTIONS(4761), + [anon_sym_async] = ACTIONS(4761), + [anon_sym_const] = ACTIONS(4761), + [anon_sym_file] = ACTIONS(4761), + [anon_sym_fixed] = ACTIONS(4761), + [anon_sym_internal] = ACTIONS(4761), + [anon_sym_new] = ACTIONS(4761), + [anon_sym_override] = ACTIONS(4761), + [anon_sym_partial] = ACTIONS(4761), + [anon_sym_private] = ACTIONS(4761), + [anon_sym_protected] = ACTIONS(4761), + [anon_sym_public] = ACTIONS(4761), + [anon_sym_readonly] = ACTIONS(4761), + [anon_sym_required] = ACTIONS(4761), + [anon_sym_sealed] = ACTIONS(4761), + [anon_sym_virtual] = ACTIONS(4761), + [anon_sym_volatile] = ACTIONS(4761), + [anon_sym_where] = ACTIONS(4761), + [anon_sym_notnull] = ACTIONS(4761), + [anon_sym_unmanaged] = ACTIONS(4761), + [anon_sym_scoped] = ACTIONS(4761), + [anon_sym_var] = ACTIONS(4761), + [sym_predefined_type] = ACTIONS(4761), + [anon_sym_yield] = ACTIONS(4761), + [anon_sym_when] = ACTIONS(4761), + [anon_sym_from] = ACTIONS(4761), + [anon_sym_into] = ACTIONS(4761), + [anon_sym_join] = ACTIONS(4761), + [anon_sym_on] = ACTIONS(4761), + [anon_sym_equals] = ACTIONS(4761), + [anon_sym_let] = ACTIONS(4761), + [anon_sym_orderby] = ACTIONS(4761), + [anon_sym_ascending] = ACTIONS(4761), + [anon_sym_descending] = ACTIONS(4761), + [anon_sym_group] = ACTIONS(4761), + [anon_sym_by] = ACTIONS(4761), + [anon_sym_select] = ACTIONS(4761), + [aux_sym_preproc_if_token1] = ACTIONS(4763), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -513097,25 +512546,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3589] = { - [sym_argument_list] = STATE(3150), - [sym__name] = STATE(3219), - [sym_alias_qualified_name] = STATE(3200), - [sym__simple_name] = STATE(3200), - [sym_qualified_name] = STATE(3200), - [sym_generic_name] = STATE(3156), - [sym_type] = STATE(3127), - [sym_implicit_type] = STATE(3205), - [sym_array_type] = STATE(3138), - [sym__array_base_type] = STATE(7259), - [sym_nullable_type] = STATE(3151), - [sym_pointer_type] = STATE(3151), - [sym__pointer_base_type] = STATE(7662), - [sym_function_pointer_type] = STATE(3151), - [sym_ref_type] = STATE(3205), - [sym_scoped_type] = STATE(3205), - [sym_tuple_type] = STATE(3209), - [sym_identifier] = STATE(3129), - [sym__reserved_identifier] = STATE(3149), + [sym_argument_list] = STATE(3771), + [sym_bracketed_argument_list] = STATE(2892), [sym_preproc_region] = STATE(3589), [sym_preproc_endregion] = STATE(3589), [sym_preproc_line] = STATE(3589), @@ -513125,35 +512557,52 @@ 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), - [sym__identifier_token] = ACTIONS(3773), - [anon_sym_alias] = ACTIONS(3775), - [anon_sym_global] = ACTIONS(3775), - [anon_sym_LBRACK] = ACTIONS(5700), - [anon_sym_LPAREN] = ACTIONS(5702), - [anon_sym_ref] = ACTIONS(4177), - [anon_sym_LBRACE] = ACTIONS(5704), - [anon_sym_delegate] = ACTIONS(5706), - [anon_sym_file] = ACTIONS(3775), - [anon_sym_where] = ACTIONS(3775), - [anon_sym_notnull] = ACTIONS(3775), - [anon_sym_unmanaged] = ACTIONS(3775), - [anon_sym_scoped] = ACTIONS(5743), - [anon_sym_var] = ACTIONS(5710), - [sym_predefined_type] = ACTIONS(5712), - [anon_sym_yield] = ACTIONS(3775), - [anon_sym_when] = ACTIONS(3775), - [anon_sym_from] = ACTIONS(3775), - [anon_sym_into] = ACTIONS(3775), - [anon_sym_join] = ACTIONS(3775), - [anon_sym_on] = ACTIONS(3775), - [anon_sym_equals] = ACTIONS(3775), - [anon_sym_let] = ACTIONS(3775), - [anon_sym_orderby] = ACTIONS(3775), - [anon_sym_ascending] = ACTIONS(3775), - [anon_sym_descending] = ACTIONS(3775), - [anon_sym_group] = ACTIONS(3775), - [anon_sym_by] = ACTIONS(3775), - [anon_sym_select] = ACTIONS(3775), + [anon_sym_LBRACK] = ACTIONS(5650), + [anon_sym_COMMA] = ACTIONS(5737), + [anon_sym_LPAREN] = ACTIONS(5591), + [anon_sym_LT] = ACTIONS(5739), + [anon_sym_GT] = ACTIONS(5739), + [anon_sym_where] = ACTIONS(5737), + [anon_sym_QMARK] = ACTIONS(5739), + [anon_sym_BANG] = ACTIONS(5658), + [anon_sym_PLUS_PLUS] = ACTIONS(5660), + [anon_sym_DASH_DASH] = ACTIONS(5660), + [anon_sym_PLUS] = ACTIONS(5662), + [anon_sym_DASH] = ACTIONS(5662), + [anon_sym_STAR] = ACTIONS(5664), + [anon_sym_SLASH] = ACTIONS(5666), + [anon_sym_PERCENT] = ACTIONS(5664), + [anon_sym_CARET] = ACTIONS(5737), + [anon_sym_PIPE] = ACTIONS(5739), + [anon_sym_AMP] = ACTIONS(5739), + [anon_sym_LT_LT] = ACTIONS(5737), + [anon_sym_GT_GT] = ACTIONS(5739), + [anon_sym_GT_GT_GT] = ACTIONS(5737), + [anon_sym_EQ_EQ] = ACTIONS(5737), + [anon_sym_BANG_EQ] = ACTIONS(5737), + [anon_sym_GT_EQ] = ACTIONS(5737), + [anon_sym_LT_EQ] = ACTIONS(5737), + [anon_sym_DOT] = ACTIONS(4697), + [anon_sym_switch] = ACTIONS(5682), + [anon_sym_DOT_DOT] = ACTIONS(5684), + [anon_sym_and] = ACTIONS(5737), + [anon_sym_or] = ACTIONS(5739), + [anon_sym_AMP_AMP] = ACTIONS(5737), + [anon_sym_PIPE_PIPE] = ACTIONS(5737), + [anon_sym_QMARK_QMARK] = ACTIONS(5737), + [anon_sym_from] = ACTIONS(5737), + [anon_sym_into] = ACTIONS(5737), + [anon_sym_join] = ACTIONS(5737), + [anon_sym_let] = ACTIONS(5737), + [anon_sym_orderby] = ACTIONS(5737), + [anon_sym_ascending] = ACTIONS(5737), + [anon_sym_descending] = ACTIONS(5737), + [anon_sym_group] = ACTIONS(5737), + [anon_sym_select] = ACTIONS(5737), + [anon_sym_as] = ACTIONS(5739), + [anon_sym_is] = ACTIONS(5737), + [anon_sym_DASH_GT] = ACTIONS(4699), + [anon_sym_with] = ACTIONS(5698), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -513166,8 +512615,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3590] = { - [sym_argument_list] = STATE(3886), - [sym_bracketed_argument_list] = STATE(2902), + [sym__name] = STATE(6400), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(4068), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(4073), + [sym_type] = STATE(6928), + [sym_implicit_type] = STATE(7035), + [sym_array_type] = STATE(6706), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7421), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(7035), + [sym_scoped_type] = STATE(7035), + [sym_tuple_type] = STATE(6601), + [sym_identifier] = STATE(4081), + [sym__reserved_identifier] = STATE(3654), [sym_preproc_region] = STATE(3590), [sym_preproc_endregion] = STATE(3590), [sym_preproc_line] = STATE(3590), @@ -513177,52 +512642,36 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3590), [sym_preproc_define] = STATE(3590), [sym_preproc_undef] = STATE(3590), - [anon_sym_LBRACK] = ACTIONS(5658), - [anon_sym_COMMA] = ACTIONS(5660), - [anon_sym_LPAREN] = ACTIONS(5624), - [anon_sym_LT] = ACTIONS(5662), - [anon_sym_GT] = ACTIONS(5662), - [anon_sym_where] = ACTIONS(5660), - [anon_sym_QMARK] = ACTIONS(5664), - [anon_sym_BANG] = ACTIONS(5666), - [anon_sym_PLUS_PLUS] = ACTIONS(5668), - [anon_sym_DASH_DASH] = ACTIONS(5668), - [anon_sym_PLUS] = ACTIONS(5670), - [anon_sym_DASH] = ACTIONS(5670), - [anon_sym_STAR] = ACTIONS(5672), - [anon_sym_SLASH] = ACTIONS(5674), - [anon_sym_PERCENT] = ACTIONS(5672), - [anon_sym_CARET] = ACTIONS(5660), - [anon_sym_PIPE] = ACTIONS(5664), - [anon_sym_AMP] = ACTIONS(5664), - [anon_sym_LT_LT] = ACTIONS(5680), - [anon_sym_GT_GT] = ACTIONS(5682), - [anon_sym_GT_GT_GT] = ACTIONS(5680), - [anon_sym_EQ_EQ] = ACTIONS(5660), - [anon_sym_BANG_EQ] = ACTIONS(5660), - [anon_sym_GT_EQ] = ACTIONS(5686), - [anon_sym_LT_EQ] = ACTIONS(5686), - [anon_sym_DOT] = ACTIONS(4733), - [anon_sym_switch] = ACTIONS(5688), - [anon_sym_DOT_DOT] = ACTIONS(5690), - [anon_sym_and] = ACTIONS(5660), - [anon_sym_or] = ACTIONS(5664), - [anon_sym_AMP_AMP] = ACTIONS(5660), - [anon_sym_PIPE_PIPE] = ACTIONS(5660), - [anon_sym_QMARK_QMARK] = ACTIONS(5660), - [anon_sym_from] = ACTIONS(5660), - [anon_sym_into] = ACTIONS(5660), - [anon_sym_join] = ACTIONS(5660), - [anon_sym_let] = ACTIONS(5660), - [anon_sym_orderby] = ACTIONS(5660), - [anon_sym_ascending] = ACTIONS(5660), - [anon_sym_descending] = ACTIONS(5660), - [anon_sym_group] = ACTIONS(5660), - [anon_sym_select] = ACTIONS(5660), - [anon_sym_as] = ACTIONS(5692), - [anon_sym_is] = ACTIONS(5694), - [anon_sym_DASH_GT] = ACTIONS(4719), - [anon_sym_with] = ACTIONS(5696), + [aux_sym_type_argument_list_repeat1] = STATE(6929), + [sym__identifier_token] = ACTIONS(2965), + [anon_sym_alias] = ACTIONS(2969), + [anon_sym_global] = ACTIONS(2969), + [anon_sym_COMMA] = ACTIONS(5168), + [anon_sym_LPAREN] = ACTIONS(2977), + [anon_sym_ref] = ACTIONS(5170), + [anon_sym_delegate] = ACTIONS(5172), + [anon_sym_file] = ACTIONS(2969), + [anon_sym_GT] = ACTIONS(5787), + [anon_sym_where] = ACTIONS(2969), + [anon_sym_notnull] = ACTIONS(2969), + [anon_sym_unmanaged] = ACTIONS(2969), + [anon_sym_scoped] = ACTIONS(5178), + [anon_sym_var] = ACTIONS(4705), + [sym_predefined_type] = ACTIONS(5180), + [anon_sym_yield] = ACTIONS(2969), + [anon_sym_when] = ACTIONS(2969), + [anon_sym_from] = ACTIONS(2969), + [anon_sym_into] = ACTIONS(2969), + [anon_sym_join] = ACTIONS(2969), + [anon_sym_on] = ACTIONS(2969), + [anon_sym_equals] = ACTIONS(2969), + [anon_sym_let] = ACTIONS(2969), + [anon_sym_orderby] = ACTIONS(2969), + [anon_sym_ascending] = ACTIONS(2969), + [anon_sym_descending] = ACTIONS(2969), + [anon_sym_group] = ACTIONS(2969), + [anon_sym_by] = ACTIONS(2969), + [anon_sym_select] = ACTIONS(2969), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -513235,8 +512684,25 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3591] = { - [sym_argument_list] = STATE(3886), - [sym_bracketed_argument_list] = STATE(2902), + [sym_argument_list] = STATE(3138), + [sym__name] = STATE(3151), + [sym_alias_qualified_name] = STATE(3143), + [sym__simple_name] = STATE(3143), + [sym_qualified_name] = STATE(3143), + [sym_generic_name] = STATE(3184), + [sym_type] = STATE(3116), + [sym_implicit_type] = STATE(3146), + [sym_array_type] = STATE(3139), + [sym__array_base_type] = STATE(7165), + [sym_nullable_type] = STATE(3148), + [sym_pointer_type] = STATE(3148), + [sym__pointer_base_type] = STATE(7401), + [sym_function_pointer_type] = STATE(3148), + [sym_ref_type] = STATE(3146), + [sym_scoped_type] = STATE(3146), + [sym_tuple_type] = STATE(3149), + [sym_identifier] = STATE(3119), + [sym__reserved_identifier] = STATE(3120), [sym_preproc_region] = STATE(3591), [sym_preproc_endregion] = STATE(3591), [sym_preproc_line] = STATE(3591), @@ -513246,52 +512712,35 @@ 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_LBRACK] = ACTIONS(5658), - [anon_sym_COMMA] = ACTIONS(5745), - [anon_sym_LPAREN] = ACTIONS(5624), - [anon_sym_LT] = ACTIONS(5662), - [anon_sym_GT] = ACTIONS(5662), - [anon_sym_where] = ACTIONS(5745), - [anon_sym_QMARK] = ACTIONS(5747), - [anon_sym_BANG] = ACTIONS(5666), - [anon_sym_PLUS_PLUS] = ACTIONS(5668), - [anon_sym_DASH_DASH] = ACTIONS(5668), - [anon_sym_PLUS] = ACTIONS(5670), - [anon_sym_DASH] = ACTIONS(5670), - [anon_sym_STAR] = ACTIONS(5672), - [anon_sym_SLASH] = ACTIONS(5674), - [anon_sym_PERCENT] = ACTIONS(5672), - [anon_sym_CARET] = ACTIONS(5676), - [anon_sym_PIPE] = ACTIONS(5749), - [anon_sym_AMP] = ACTIONS(5678), - [anon_sym_LT_LT] = ACTIONS(5680), - [anon_sym_GT_GT] = ACTIONS(5682), - [anon_sym_GT_GT_GT] = ACTIONS(5680), - [anon_sym_EQ_EQ] = ACTIONS(5684), - [anon_sym_BANG_EQ] = ACTIONS(5684), - [anon_sym_GT_EQ] = ACTIONS(5686), - [anon_sym_LT_EQ] = ACTIONS(5686), - [anon_sym_DOT] = ACTIONS(4733), - [anon_sym_switch] = ACTIONS(5688), - [anon_sym_DOT_DOT] = ACTIONS(5690), - [anon_sym_and] = ACTIONS(5745), - [anon_sym_or] = ACTIONS(5751), - [anon_sym_AMP_AMP] = ACTIONS(5753), - [anon_sym_PIPE_PIPE] = ACTIONS(5755), - [anon_sym_QMARK_QMARK] = ACTIONS(5757), - [anon_sym_from] = ACTIONS(5745), - [anon_sym_into] = ACTIONS(5745), - [anon_sym_join] = ACTIONS(5745), - [anon_sym_let] = ACTIONS(5745), - [anon_sym_orderby] = ACTIONS(5745), - [anon_sym_ascending] = ACTIONS(5745), - [anon_sym_descending] = ACTIONS(5745), - [anon_sym_group] = ACTIONS(5745), - [anon_sym_select] = ACTIONS(5745), - [anon_sym_as] = ACTIONS(5692), - [anon_sym_is] = ACTIONS(5694), - [anon_sym_DASH_GT] = ACTIONS(4719), - [anon_sym_with] = ACTIONS(5696), + [sym__identifier_token] = ACTIONS(3761), + [anon_sym_alias] = ACTIONS(3763), + [anon_sym_global] = ACTIONS(3763), + [anon_sym_LBRACK] = ACTIONS(5616), + [anon_sym_LPAREN] = ACTIONS(5618), + [anon_sym_ref] = ACTIONS(4177), + [anon_sym_LBRACE] = ACTIONS(5620), + [anon_sym_delegate] = ACTIONS(5622), + [anon_sym_file] = ACTIONS(3763), + [anon_sym_where] = ACTIONS(3763), + [anon_sym_notnull] = ACTIONS(3763), + [anon_sym_unmanaged] = ACTIONS(3763), + [anon_sym_scoped] = ACTIONS(5789), + [anon_sym_var] = ACTIONS(5626), + [sym_predefined_type] = ACTIONS(5628), + [anon_sym_yield] = ACTIONS(3763), + [anon_sym_when] = ACTIONS(3763), + [anon_sym_from] = ACTIONS(3763), + [anon_sym_into] = ACTIONS(3763), + [anon_sym_join] = ACTIONS(3763), + [anon_sym_on] = ACTIONS(3763), + [anon_sym_equals] = ACTIONS(3763), + [anon_sym_let] = ACTIONS(3763), + [anon_sym_orderby] = ACTIONS(3763), + [anon_sym_ascending] = ACTIONS(3763), + [anon_sym_descending] = ACTIONS(3763), + [anon_sym_group] = ACTIONS(3763), + [anon_sym_by] = ACTIONS(3763), + [anon_sym_select] = ACTIONS(3763), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -513304,8 +512753,25 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3592] = { - [sym_argument_list] = STATE(3886), - [sym_bracketed_argument_list] = STATE(2902), + [sym_argument_list] = STATE(2922), + [sym__name] = STATE(3086), + [sym_alias_qualified_name] = STATE(2976), + [sym__simple_name] = STATE(2976), + [sym_qualified_name] = STATE(2976), + [sym_generic_name] = STATE(3030), + [sym_type] = STATE(3472), + [sym_implicit_type] = STATE(2977), + [sym_array_type] = STATE(2908), + [sym__array_base_type] = STATE(7236), + [sym_nullable_type] = STATE(2979), + [sym_pointer_type] = STATE(2979), + [sym__pointer_base_type] = STATE(7622), + [sym_function_pointer_type] = STATE(2979), + [sym_ref_type] = STATE(2977), + [sym_scoped_type] = STATE(2977), + [sym_tuple_type] = STATE(2980), + [sym_identifier] = STATE(2927), + [sym__reserved_identifier] = STATE(2916), [sym_preproc_region] = STATE(3592), [sym_preproc_endregion] = STATE(3592), [sym_preproc_line] = STATE(3592), @@ -513315,52 +512781,35 @@ 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), - [anon_sym_LBRACK] = ACTIONS(5658), - [anon_sym_COMMA] = ACTIONS(5660), - [anon_sym_LPAREN] = ACTIONS(5624), - [anon_sym_LT] = ACTIONS(5662), - [anon_sym_GT] = ACTIONS(5662), - [anon_sym_where] = ACTIONS(5660), - [anon_sym_QMARK] = ACTIONS(5664), - [anon_sym_BANG] = ACTIONS(5666), - [anon_sym_PLUS_PLUS] = ACTIONS(5668), - [anon_sym_DASH_DASH] = ACTIONS(5668), - [anon_sym_PLUS] = ACTIONS(5670), - [anon_sym_DASH] = ACTIONS(5670), - [anon_sym_STAR] = ACTIONS(5672), - [anon_sym_SLASH] = ACTIONS(5674), - [anon_sym_PERCENT] = ACTIONS(5672), - [anon_sym_CARET] = ACTIONS(5676), - [anon_sym_PIPE] = ACTIONS(5749), - [anon_sym_AMP] = ACTIONS(5678), - [anon_sym_LT_LT] = ACTIONS(5680), - [anon_sym_GT_GT] = ACTIONS(5682), - [anon_sym_GT_GT_GT] = ACTIONS(5680), - [anon_sym_EQ_EQ] = ACTIONS(5684), - [anon_sym_BANG_EQ] = ACTIONS(5684), - [anon_sym_GT_EQ] = ACTIONS(5686), - [anon_sym_LT_EQ] = ACTIONS(5686), - [anon_sym_DOT] = ACTIONS(4733), - [anon_sym_switch] = ACTIONS(5688), - [anon_sym_DOT_DOT] = ACTIONS(5690), - [anon_sym_and] = ACTIONS(5660), - [anon_sym_or] = ACTIONS(5664), - [anon_sym_AMP_AMP] = ACTIONS(5660), - [anon_sym_PIPE_PIPE] = ACTIONS(5660), - [anon_sym_QMARK_QMARK] = ACTIONS(5660), - [anon_sym_from] = ACTIONS(5660), - [anon_sym_into] = ACTIONS(5660), - [anon_sym_join] = ACTIONS(5660), - [anon_sym_let] = ACTIONS(5660), - [anon_sym_orderby] = ACTIONS(5660), - [anon_sym_ascending] = ACTIONS(5660), - [anon_sym_descending] = ACTIONS(5660), - [anon_sym_group] = ACTIONS(5660), - [anon_sym_select] = ACTIONS(5660), - [anon_sym_as] = ACTIONS(5692), - [anon_sym_is] = ACTIONS(5694), - [anon_sym_DASH_GT] = ACTIONS(4719), - [anon_sym_with] = ACTIONS(5696), + [sym__identifier_token] = ACTIONS(3871), + [anon_sym_alias] = ACTIONS(3873), + [anon_sym_global] = ACTIONS(3873), + [anon_sym_LBRACK] = ACTIONS(4009), + [anon_sym_LPAREN] = ACTIONS(4011), + [anon_sym_ref] = ACTIONS(4199), + [anon_sym_LBRACE] = ACTIONS(4013), + [anon_sym_delegate] = ACTIONS(4015), + [anon_sym_file] = ACTIONS(3873), + [anon_sym_where] = ACTIONS(3873), + [anon_sym_notnull] = ACTIONS(3873), + [anon_sym_unmanaged] = ACTIONS(3873), + [anon_sym_scoped] = ACTIONS(5791), + [anon_sym_var] = ACTIONS(4019), + [sym_predefined_type] = ACTIONS(4021), + [anon_sym_yield] = ACTIONS(3873), + [anon_sym_when] = ACTIONS(3873), + [anon_sym_from] = ACTIONS(3873), + [anon_sym_into] = ACTIONS(3873), + [anon_sym_join] = ACTIONS(3873), + [anon_sym_on] = ACTIONS(3873), + [anon_sym_equals] = ACTIONS(3873), + [anon_sym_let] = ACTIONS(3873), + [anon_sym_orderby] = ACTIONS(3873), + [anon_sym_ascending] = ACTIONS(3873), + [anon_sym_descending] = ACTIONS(3873), + [anon_sym_group] = ACTIONS(3873), + [anon_sym_by] = ACTIONS(3873), + [anon_sym_select] = ACTIONS(3873), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -513373,24 +512822,25 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3593] = { - [sym__name] = STATE(6450), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(4096), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(4109), - [sym_type] = STATE(6884), - [sym_implicit_type] = STATE(7266), - [sym_array_type] = STATE(6694), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7446), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(7266), - [sym_scoped_type] = STATE(7266), - [sym_tuple_type] = STATE(6579), - [sym_identifier] = STATE(4087), - [sym__reserved_identifier] = STATE(3691), + [sym_argument_list] = STATE(3138), + [sym__name] = STATE(3151), + [sym_alias_qualified_name] = STATE(3143), + [sym__simple_name] = STATE(3143), + [sym_qualified_name] = STATE(3143), + [sym_generic_name] = STATE(3184), + [sym_type] = STATE(3116), + [sym_implicit_type] = STATE(3146), + [sym_array_type] = STATE(3139), + [sym__array_base_type] = STATE(7165), + [sym_nullable_type] = STATE(3148), + [sym_pointer_type] = STATE(3148), + [sym__pointer_base_type] = STATE(7401), + [sym_function_pointer_type] = STATE(3148), + [sym_ref_type] = STATE(3146), + [sym_scoped_type] = STATE(3146), + [sym_tuple_type] = STATE(3149), + [sym_identifier] = STATE(3119), + [sym__reserved_identifier] = STATE(3120), [sym_preproc_region] = STATE(3593), [sym_preproc_endregion] = STATE(3593), [sym_preproc_line] = STATE(3593), @@ -513400,36 +512850,35 @@ 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), - [aux_sym_type_argument_list_repeat1] = STATE(6885), - [sym__identifier_token] = ACTIONS(2967), - [anon_sym_alias] = ACTIONS(2971), - [anon_sym_global] = ACTIONS(2971), - [anon_sym_COMMA] = ACTIONS(5026), - [anon_sym_LPAREN] = ACTIONS(2979), - [anon_sym_ref] = ACTIONS(5028), - [anon_sym_delegate] = ACTIONS(5030), - [anon_sym_file] = ACTIONS(2971), - [anon_sym_GT] = ACTIONS(5759), - [anon_sym_where] = ACTIONS(2971), - [anon_sym_notnull] = ACTIONS(2971), - [anon_sym_unmanaged] = ACTIONS(2971), - [anon_sym_scoped] = ACTIONS(5036), - [anon_sym_var] = ACTIONS(4737), - [sym_predefined_type] = ACTIONS(5038), - [anon_sym_yield] = ACTIONS(2971), - [anon_sym_when] = ACTIONS(2971), - [anon_sym_from] = ACTIONS(2971), - [anon_sym_into] = ACTIONS(2971), - [anon_sym_join] = ACTIONS(2971), - [anon_sym_on] = ACTIONS(2971), - [anon_sym_equals] = ACTIONS(2971), - [anon_sym_let] = ACTIONS(2971), - [anon_sym_orderby] = ACTIONS(2971), - [anon_sym_ascending] = ACTIONS(2971), - [anon_sym_descending] = ACTIONS(2971), - [anon_sym_group] = ACTIONS(2971), - [anon_sym_by] = ACTIONS(2971), - [anon_sym_select] = ACTIONS(2971), + [sym__identifier_token] = ACTIONS(3761), + [anon_sym_alias] = ACTIONS(3763), + [anon_sym_global] = ACTIONS(3763), + [anon_sym_LBRACK] = ACTIONS(5616), + [anon_sym_LPAREN] = ACTIONS(5618), + [anon_sym_ref] = ACTIONS(4023), + [anon_sym_LBRACE] = ACTIONS(5620), + [anon_sym_delegate] = ACTIONS(5622), + [anon_sym_file] = ACTIONS(3763), + [anon_sym_where] = ACTIONS(3763), + [anon_sym_notnull] = ACTIONS(3763), + [anon_sym_unmanaged] = ACTIONS(3763), + [anon_sym_scoped] = ACTIONS(5793), + [anon_sym_var] = ACTIONS(5626), + [sym_predefined_type] = ACTIONS(5628), + [anon_sym_yield] = ACTIONS(3763), + [anon_sym_when] = ACTIONS(3763), + [anon_sym_from] = ACTIONS(3763), + [anon_sym_into] = ACTIONS(3763), + [anon_sym_join] = ACTIONS(3763), + [anon_sym_on] = ACTIONS(3763), + [anon_sym_equals] = ACTIONS(3763), + [anon_sym_let] = ACTIONS(3763), + [anon_sym_orderby] = ACTIONS(3763), + [anon_sym_ascending] = ACTIONS(3763), + [anon_sym_descending] = ACTIONS(3763), + [anon_sym_group] = ACTIONS(3763), + [anon_sym_by] = ACTIONS(3763), + [anon_sym_select] = ACTIONS(3763), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -513442,25 +512891,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3594] = { - [sym_argument_list] = STATE(2946), - [sym__name] = STATE(3072), - [sym_alias_qualified_name] = STATE(3029), - [sym__simple_name] = STATE(3029), - [sym_qualified_name] = STATE(3029), - [sym_generic_name] = STATE(2985), - [sym_type] = STATE(3383), - [sym_implicit_type] = STATE(3054), - [sym_array_type] = STATE(2956), - [sym__array_base_type] = STATE(7267), - [sym_nullable_type] = STATE(3012), - [sym_pointer_type] = STATE(3012), - [sym__pointer_base_type] = STATE(7693), - [sym_function_pointer_type] = STATE(3012), - [sym_ref_type] = STATE(3054), - [sym_scoped_type] = STATE(3054), - [sym_tuple_type] = STATE(3058), - [sym_identifier] = STATE(2923), - [sym__reserved_identifier] = STATE(2945), [sym_preproc_region] = STATE(3594), [sym_preproc_endregion] = STATE(3594), [sym_preproc_line] = STATE(3594), @@ -513470,35 +512900,54 @@ 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), - [sym__identifier_token] = ACTIONS(3887), - [anon_sym_alias] = ACTIONS(3889), - [anon_sym_global] = ACTIONS(3889), - [anon_sym_LBRACK] = ACTIONS(4036), - [anon_sym_LPAREN] = ACTIONS(4038), - [anon_sym_ref] = ACTIONS(4223), - [anon_sym_LBRACE] = ACTIONS(4040), - [anon_sym_delegate] = ACTIONS(4042), - [anon_sym_file] = ACTIONS(3889), - [anon_sym_where] = ACTIONS(3889), - [anon_sym_notnull] = ACTIONS(3889), - [anon_sym_unmanaged] = ACTIONS(3889), - [anon_sym_scoped] = ACTIONS(5761), - [anon_sym_var] = ACTIONS(4046), - [sym_predefined_type] = ACTIONS(4048), - [anon_sym_yield] = ACTIONS(3889), - [anon_sym_when] = ACTIONS(3889), - [anon_sym_from] = ACTIONS(3889), - [anon_sym_into] = ACTIONS(3889), - [anon_sym_join] = ACTIONS(3889), - [anon_sym_on] = ACTIONS(3889), - [anon_sym_equals] = ACTIONS(3889), - [anon_sym_let] = ACTIONS(3889), - [anon_sym_orderby] = ACTIONS(3889), - [anon_sym_ascending] = ACTIONS(3889), - [anon_sym_descending] = ACTIONS(3889), - [anon_sym_group] = ACTIONS(3889), - [anon_sym_by] = ACTIONS(3889), - [anon_sym_select] = ACTIONS(3889), + [sym__identifier_token] = ACTIONS(5138), + [anon_sym_extern] = ACTIONS(5138), + [anon_sym_alias] = ACTIONS(5138), + [anon_sym_global] = ACTIONS(5138), + [anon_sym_unsafe] = ACTIONS(5138), + [anon_sym_static] = ACTIONS(5138), + [anon_sym_LBRACK] = ACTIONS(5140), + [anon_sym_LPAREN] = ACTIONS(5140), + [anon_sym_ref] = ACTIONS(5138), + [anon_sym_delegate] = ACTIONS(5138), + [anon_sym_abstract] = ACTIONS(5138), + [anon_sym_async] = ACTIONS(5138), + [anon_sym_const] = ACTIONS(5138), + [anon_sym_file] = ACTIONS(5138), + [anon_sym_fixed] = ACTIONS(5138), + [anon_sym_internal] = ACTIONS(5138), + [anon_sym_new] = ACTIONS(5138), + [anon_sym_override] = ACTIONS(5138), + [anon_sym_partial] = ACTIONS(5138), + [anon_sym_private] = ACTIONS(5138), + [anon_sym_protected] = ACTIONS(5138), + [anon_sym_public] = ACTIONS(5138), + [anon_sym_readonly] = ACTIONS(5138), + [anon_sym_required] = ACTIONS(5138), + [anon_sym_sealed] = ACTIONS(5138), + [anon_sym_virtual] = ACTIONS(5138), + [anon_sym_volatile] = ACTIONS(5138), + [anon_sym_where] = ACTIONS(5138), + [anon_sym_notnull] = ACTIONS(5138), + [anon_sym_unmanaged] = ACTIONS(5138), + [anon_sym_scoped] = ACTIONS(5138), + [anon_sym_var] = ACTIONS(5138), + [sym_predefined_type] = ACTIONS(5138), + [anon_sym_yield] = ACTIONS(5138), + [anon_sym_when] = ACTIONS(5138), + [anon_sym_from] = ACTIONS(5138), + [anon_sym_into] = ACTIONS(5138), + [anon_sym_join] = ACTIONS(5138), + [anon_sym_on] = ACTIONS(5138), + [anon_sym_equals] = ACTIONS(5138), + [anon_sym_let] = ACTIONS(5138), + [anon_sym_orderby] = ACTIONS(5138), + [anon_sym_ascending] = ACTIONS(5138), + [anon_sym_descending] = ACTIONS(5138), + [anon_sym_group] = ACTIONS(5138), + [anon_sym_by] = ACTIONS(5138), + [anon_sym_select] = ACTIONS(5138), + [aux_sym_preproc_if_token1] = ACTIONS(5140), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -513511,6 +512960,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3595] = { + [sym__name] = STATE(6400), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(4068), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(4073), + [sym_type] = STATE(6818), + [sym_implicit_type] = STATE(7035), + [sym_array_type] = STATE(6706), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7421), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(7035), + [sym_scoped_type] = STATE(7035), + [sym_tuple_type] = STATE(6601), + [sym_identifier] = STATE(4081), + [sym__reserved_identifier] = STATE(3654), [sym_preproc_region] = STATE(3595), [sym_preproc_endregion] = STATE(3595), [sym_preproc_line] = STATE(3595), @@ -513520,54 +512987,36 @@ 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_EQ] = ACTIONS(5482), - [anon_sym_LBRACK] = ACTIONS(4860), - [anon_sym_COMMA] = ACTIONS(4860), - [anon_sym_LPAREN] = ACTIONS(4860), - [anon_sym_RPAREN] = ACTIONS(5763), - [anon_sym_LT] = ACTIONS(4862), - [anon_sym_GT] = ACTIONS(4862), - [anon_sym_QMARK] = ACTIONS(4862), - [anon_sym_BANG] = ACTIONS(4862), - [anon_sym_PLUS_PLUS] = ACTIONS(4860), - [anon_sym_DASH_DASH] = ACTIONS(4860), - [anon_sym_PLUS] = ACTIONS(4862), - [anon_sym_DASH] = ACTIONS(4862), - [anon_sym_STAR] = ACTIONS(4862), - [anon_sym_SLASH] = ACTIONS(4862), - [anon_sym_PERCENT] = ACTIONS(4862), - [anon_sym_CARET] = ACTIONS(4862), - [anon_sym_PIPE] = ACTIONS(4862), - [anon_sym_AMP] = ACTIONS(4862), - [anon_sym_LT_LT] = ACTIONS(4862), - [anon_sym_GT_GT] = ACTIONS(4862), - [anon_sym_GT_GT_GT] = ACTIONS(4862), - [anon_sym_EQ_EQ] = ACTIONS(4860), - [anon_sym_BANG_EQ] = ACTIONS(4860), - [anon_sym_GT_EQ] = ACTIONS(4860), - [anon_sym_LT_EQ] = ACTIONS(4860), - [anon_sym_DOT] = ACTIONS(4862), - [anon_sym_switch] = ACTIONS(4860), - [anon_sym_DOT_DOT] = ACTIONS(4860), - [anon_sym_PLUS_EQ] = ACTIONS(5484), - [anon_sym_DASH_EQ] = ACTIONS(5484), - [anon_sym_STAR_EQ] = ACTIONS(5484), - [anon_sym_SLASH_EQ] = ACTIONS(5484), - [anon_sym_PERCENT_EQ] = ACTIONS(5484), - [anon_sym_AMP_EQ] = ACTIONS(5484), - [anon_sym_CARET_EQ] = ACTIONS(5484), - [anon_sym_PIPE_EQ] = ACTIONS(5484), - [anon_sym_LT_LT_EQ] = ACTIONS(5484), - [anon_sym_GT_GT_EQ] = ACTIONS(5484), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(5484), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(5484), - [anon_sym_AMP_AMP] = ACTIONS(4860), - [anon_sym_PIPE_PIPE] = ACTIONS(4860), - [anon_sym_QMARK_QMARK] = ACTIONS(4862), - [anon_sym_as] = ACTIONS(4860), - [anon_sym_is] = ACTIONS(4860), - [anon_sym_DASH_GT] = ACTIONS(4860), - [anon_sym_with] = ACTIONS(4860), + [aux_sym_type_argument_list_repeat1] = STATE(6819), + [sym__identifier_token] = ACTIONS(2965), + [anon_sym_alias] = ACTIONS(2969), + [anon_sym_global] = ACTIONS(2969), + [anon_sym_COMMA] = ACTIONS(5168), + [anon_sym_LPAREN] = ACTIONS(2977), + [anon_sym_ref] = ACTIONS(5170), + [anon_sym_delegate] = ACTIONS(5172), + [anon_sym_file] = ACTIONS(2969), + [anon_sym_GT] = ACTIONS(5795), + [anon_sym_where] = ACTIONS(2969), + [anon_sym_notnull] = ACTIONS(2969), + [anon_sym_unmanaged] = ACTIONS(2969), + [anon_sym_scoped] = ACTIONS(5178), + [anon_sym_var] = ACTIONS(4705), + [sym_predefined_type] = ACTIONS(5180), + [anon_sym_yield] = ACTIONS(2969), + [anon_sym_when] = ACTIONS(2969), + [anon_sym_from] = ACTIONS(2969), + [anon_sym_into] = ACTIONS(2969), + [anon_sym_join] = ACTIONS(2969), + [anon_sym_on] = ACTIONS(2969), + [anon_sym_equals] = ACTIONS(2969), + [anon_sym_let] = ACTIONS(2969), + [anon_sym_orderby] = ACTIONS(2969), + [anon_sym_ascending] = ACTIONS(2969), + [anon_sym_descending] = ACTIONS(2969), + [anon_sym_group] = ACTIONS(2969), + [anon_sym_by] = ACTIONS(2969), + [anon_sym_select] = ACTIONS(2969), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -513580,25 +513029,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3596] = { - [sym_argument_list] = STATE(3150), - [sym__name] = STATE(3219), - [sym_alias_qualified_name] = STATE(3200), - [sym__simple_name] = STATE(3200), - [sym_qualified_name] = STATE(3200), - [sym_generic_name] = STATE(3156), - [sym_type] = STATE(3127), - [sym_implicit_type] = STATE(3205), - [sym_array_type] = STATE(3138), - [sym__array_base_type] = STATE(7259), - [sym_nullable_type] = STATE(3151), - [sym_pointer_type] = STATE(3151), - [sym__pointer_base_type] = STATE(7662), - [sym_function_pointer_type] = STATE(3151), - [sym_ref_type] = STATE(3205), - [sym_scoped_type] = STATE(3205), - [sym_tuple_type] = STATE(3209), - [sym_identifier] = STATE(3129), - [sym__reserved_identifier] = STATE(3149), + [sym__name] = STATE(6400), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(4068), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(4073), + [sym_type] = STATE(6876), + [sym_implicit_type] = STATE(7035), + [sym_array_type] = STATE(6706), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7421), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(7035), + [sym_scoped_type] = STATE(7035), + [sym_tuple_type] = STATE(6601), + [sym_identifier] = STATE(4081), + [sym__reserved_identifier] = STATE(3654), [sym_preproc_region] = STATE(3596), [sym_preproc_endregion] = STATE(3596), [sym_preproc_line] = STATE(3596), @@ -513608,35 +513056,36 @@ 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(3773), - [anon_sym_alias] = ACTIONS(3775), - [anon_sym_global] = ACTIONS(3775), - [anon_sym_LBRACK] = ACTIONS(5700), - [anon_sym_LPAREN] = ACTIONS(5702), - [anon_sym_ref] = ACTIONS(4026), - [anon_sym_LBRACE] = ACTIONS(5704), - [anon_sym_delegate] = ACTIONS(5706), - [anon_sym_file] = ACTIONS(3775), - [anon_sym_where] = ACTIONS(3775), - [anon_sym_notnull] = ACTIONS(3775), - [anon_sym_unmanaged] = ACTIONS(3775), - [anon_sym_scoped] = ACTIONS(5765), - [anon_sym_var] = ACTIONS(5710), - [sym_predefined_type] = ACTIONS(5712), - [anon_sym_yield] = ACTIONS(3775), - [anon_sym_when] = ACTIONS(3775), - [anon_sym_from] = ACTIONS(3775), - [anon_sym_into] = ACTIONS(3775), - [anon_sym_join] = ACTIONS(3775), - [anon_sym_on] = ACTIONS(3775), - [anon_sym_equals] = ACTIONS(3775), - [anon_sym_let] = ACTIONS(3775), - [anon_sym_orderby] = ACTIONS(3775), - [anon_sym_ascending] = ACTIONS(3775), - [anon_sym_descending] = ACTIONS(3775), - [anon_sym_group] = ACTIONS(3775), - [anon_sym_by] = ACTIONS(3775), - [anon_sym_select] = ACTIONS(3775), + [aux_sym_type_argument_list_repeat1] = STATE(6879), + [sym__identifier_token] = ACTIONS(2965), + [anon_sym_alias] = ACTIONS(2969), + [anon_sym_global] = ACTIONS(2969), + [anon_sym_COMMA] = ACTIONS(5168), + [anon_sym_LPAREN] = ACTIONS(2977), + [anon_sym_ref] = ACTIONS(5170), + [anon_sym_delegate] = ACTIONS(5172), + [anon_sym_file] = ACTIONS(2969), + [anon_sym_GT] = ACTIONS(5797), + [anon_sym_where] = ACTIONS(2969), + [anon_sym_notnull] = ACTIONS(2969), + [anon_sym_unmanaged] = ACTIONS(2969), + [anon_sym_scoped] = ACTIONS(5178), + [anon_sym_var] = ACTIONS(4705), + [sym_predefined_type] = ACTIONS(5180), + [anon_sym_yield] = ACTIONS(2969), + [anon_sym_when] = ACTIONS(2969), + [anon_sym_from] = ACTIONS(2969), + [anon_sym_into] = ACTIONS(2969), + [anon_sym_join] = ACTIONS(2969), + [anon_sym_on] = ACTIONS(2969), + [anon_sym_equals] = ACTIONS(2969), + [anon_sym_let] = ACTIONS(2969), + [anon_sym_orderby] = ACTIONS(2969), + [anon_sym_ascending] = ACTIONS(2969), + [anon_sym_descending] = ACTIONS(2969), + [anon_sym_group] = ACTIONS(2969), + [anon_sym_by] = ACTIONS(2969), + [anon_sym_select] = ACTIONS(2969), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -513649,8 +513098,25 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3597] = { - [sym_argument_list] = STATE(3886), - [sym_bracketed_argument_list] = STATE(2902), + [sym_argument_list] = STATE(2922), + [sym__name] = STATE(3086), + [sym_alias_qualified_name] = STATE(2976), + [sym__simple_name] = STATE(2976), + [sym_qualified_name] = STATE(2976), + [sym_generic_name] = STATE(3030), + [sym_type] = STATE(3472), + [sym_implicit_type] = STATE(2977), + [sym_array_type] = STATE(4278), + [sym__array_base_type] = STATE(7236), + [sym_nullable_type] = STATE(2979), + [sym_pointer_type] = STATE(2979), + [sym__pointer_base_type] = STATE(7622), + [sym_function_pointer_type] = STATE(2979), + [sym_ref_type] = STATE(2977), + [sym_scoped_type] = STATE(2977), + [sym_tuple_type] = STATE(2980), + [sym_identifier] = STATE(2927), + [sym__reserved_identifier] = STATE(2916), [sym_preproc_region] = STATE(3597), [sym_preproc_endregion] = STATE(3597), [sym_preproc_line] = STATE(3597), @@ -513660,52 +513126,35 @@ 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(5658), - [anon_sym_COMMA] = ACTIONS(4854), - [anon_sym_LPAREN] = ACTIONS(5624), - [anon_sym_LT] = ACTIONS(4856), - [anon_sym_GT] = ACTIONS(4856), - [anon_sym_where] = ACTIONS(4854), - [anon_sym_QMARK] = ACTIONS(4856), - [anon_sym_BANG] = ACTIONS(5666), - [anon_sym_PLUS_PLUS] = ACTIONS(5668), - [anon_sym_DASH_DASH] = ACTIONS(5668), - [anon_sym_PLUS] = ACTIONS(4856), - [anon_sym_DASH] = ACTIONS(4856), - [anon_sym_STAR] = ACTIONS(4854), - [anon_sym_SLASH] = ACTIONS(4856), - [anon_sym_PERCENT] = ACTIONS(4854), - [anon_sym_CARET] = ACTIONS(4854), - [anon_sym_PIPE] = ACTIONS(4856), - [anon_sym_AMP] = ACTIONS(4856), - [anon_sym_LT_LT] = ACTIONS(4854), - [anon_sym_GT_GT] = ACTIONS(4856), - [anon_sym_GT_GT_GT] = ACTIONS(4854), - [anon_sym_EQ_EQ] = ACTIONS(4854), - [anon_sym_BANG_EQ] = ACTIONS(4854), - [anon_sym_GT_EQ] = ACTIONS(4854), - [anon_sym_LT_EQ] = ACTIONS(4854), - [anon_sym_DOT] = ACTIONS(4733), - [anon_sym_switch] = ACTIONS(4854), - [anon_sym_DOT_DOT] = ACTIONS(4854), - [anon_sym_and] = ACTIONS(4854), - [anon_sym_or] = ACTIONS(4856), - [anon_sym_AMP_AMP] = ACTIONS(4854), - [anon_sym_PIPE_PIPE] = ACTIONS(4854), - [anon_sym_QMARK_QMARK] = ACTIONS(4854), - [anon_sym_from] = ACTIONS(4854), - [anon_sym_into] = ACTIONS(4854), - [anon_sym_join] = ACTIONS(4854), - [anon_sym_let] = ACTIONS(4854), - [anon_sym_orderby] = ACTIONS(4854), - [anon_sym_ascending] = ACTIONS(4854), - [anon_sym_descending] = ACTIONS(4854), - [anon_sym_group] = ACTIONS(4854), - [anon_sym_select] = ACTIONS(4854), - [anon_sym_as] = ACTIONS(4856), - [anon_sym_is] = ACTIONS(4854), - [anon_sym_DASH_GT] = ACTIONS(4719), - [anon_sym_with] = ACTIONS(4854), + [sym__identifier_token] = ACTIONS(3871), + [anon_sym_alias] = ACTIONS(3873), + [anon_sym_global] = ACTIONS(3873), + [anon_sym_LBRACK] = ACTIONS(4009), + [anon_sym_LPAREN] = ACTIONS(4011), + [anon_sym_ref] = ACTIONS(3875), + [anon_sym_LBRACE] = ACTIONS(4013), + [anon_sym_delegate] = ACTIONS(4015), + [anon_sym_file] = ACTIONS(3873), + [anon_sym_where] = ACTIONS(3873), + [anon_sym_notnull] = ACTIONS(3873), + [anon_sym_unmanaged] = ACTIONS(3873), + [anon_sym_scoped] = ACTIONS(4017), + [anon_sym_var] = ACTIONS(4019), + [sym_predefined_type] = ACTIONS(4021), + [anon_sym_yield] = ACTIONS(3873), + [anon_sym_when] = ACTIONS(3873), + [anon_sym_from] = ACTIONS(3873), + [anon_sym_into] = ACTIONS(3873), + [anon_sym_join] = ACTIONS(3873), + [anon_sym_on] = ACTIONS(3873), + [anon_sym_equals] = ACTIONS(3873), + [anon_sym_let] = ACTIONS(3873), + [anon_sym_orderby] = ACTIONS(3873), + [anon_sym_ascending] = ACTIONS(3873), + [anon_sym_descending] = ACTIONS(3873), + [anon_sym_group] = ACTIONS(3873), + [anon_sym_by] = ACTIONS(3873), + [anon_sym_select] = ACTIONS(3873), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -513718,8 +513167,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3598] = { - [sym_argument_list] = STATE(3886), - [sym_bracketed_argument_list] = STATE(2902), [sym_preproc_region] = STATE(3598), [sym_preproc_endregion] = STATE(3598), [sym_preproc_line] = STATE(3598), @@ -513729,52 +513176,54 @@ 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(5658), - [anon_sym_COMMA] = ACTIONS(5767), - [anon_sym_LPAREN] = ACTIONS(5624), - [anon_sym_LT] = ACTIONS(5662), - [anon_sym_GT] = ACTIONS(5662), - [anon_sym_where] = ACTIONS(5767), - [anon_sym_QMARK] = ACTIONS(5747), - [anon_sym_BANG] = ACTIONS(5666), - [anon_sym_PLUS_PLUS] = ACTIONS(5668), - [anon_sym_DASH_DASH] = ACTIONS(5668), - [anon_sym_PLUS] = ACTIONS(5670), - [anon_sym_DASH] = ACTIONS(5670), - [anon_sym_STAR] = ACTIONS(5672), - [anon_sym_SLASH] = ACTIONS(5674), - [anon_sym_PERCENT] = ACTIONS(5672), - [anon_sym_CARET] = ACTIONS(5676), - [anon_sym_PIPE] = ACTIONS(5749), - [anon_sym_AMP] = ACTIONS(5678), - [anon_sym_LT_LT] = ACTIONS(5680), - [anon_sym_GT_GT] = ACTIONS(5682), - [anon_sym_GT_GT_GT] = ACTIONS(5680), - [anon_sym_EQ_EQ] = ACTIONS(5684), - [anon_sym_BANG_EQ] = ACTIONS(5684), - [anon_sym_GT_EQ] = ACTIONS(5686), - [anon_sym_LT_EQ] = ACTIONS(5686), - [anon_sym_DOT] = ACTIONS(4733), - [anon_sym_switch] = ACTIONS(5688), - [anon_sym_DOT_DOT] = ACTIONS(5690), - [anon_sym_and] = ACTIONS(5767), - [anon_sym_or] = ACTIONS(5769), - [anon_sym_AMP_AMP] = ACTIONS(5753), - [anon_sym_PIPE_PIPE] = ACTIONS(5755), - [anon_sym_QMARK_QMARK] = ACTIONS(5757), - [anon_sym_from] = ACTIONS(5767), - [anon_sym_into] = ACTIONS(5767), - [anon_sym_join] = ACTIONS(5767), - [anon_sym_let] = ACTIONS(5767), - [anon_sym_orderby] = ACTIONS(5767), - [anon_sym_ascending] = ACTIONS(5767), - [anon_sym_descending] = ACTIONS(5767), - [anon_sym_group] = ACTIONS(5767), - [anon_sym_select] = ACTIONS(5767), - [anon_sym_as] = ACTIONS(5692), - [anon_sym_is] = ACTIONS(5694), - [anon_sym_DASH_GT] = ACTIONS(4719), - [anon_sym_with] = ACTIONS(5696), + [anon_sym_EQ] = ACTIONS(5520), + [anon_sym_LBRACK] = ACTIONS(4811), + [anon_sym_COMMA] = ACTIONS(4811), + [anon_sym_LPAREN] = ACTIONS(4811), + [anon_sym_RPAREN] = ACTIONS(5799), + [anon_sym_LT] = ACTIONS(4813), + [anon_sym_GT] = ACTIONS(4813), + [anon_sym_QMARK] = ACTIONS(4813), + [anon_sym_BANG] = ACTIONS(4813), + [anon_sym_PLUS_PLUS] = ACTIONS(4811), + [anon_sym_DASH_DASH] = ACTIONS(4811), + [anon_sym_PLUS] = ACTIONS(4813), + [anon_sym_DASH] = ACTIONS(4813), + [anon_sym_STAR] = ACTIONS(4813), + [anon_sym_SLASH] = ACTIONS(4813), + [anon_sym_PERCENT] = ACTIONS(4813), + [anon_sym_CARET] = ACTIONS(4813), + [anon_sym_PIPE] = ACTIONS(4813), + [anon_sym_AMP] = ACTIONS(4813), + [anon_sym_LT_LT] = ACTIONS(4813), + [anon_sym_GT_GT] = ACTIONS(4813), + [anon_sym_GT_GT_GT] = ACTIONS(4813), + [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(4813), + [anon_sym_switch] = ACTIONS(4811), + [anon_sym_DOT_DOT] = ACTIONS(4811), + [anon_sym_PLUS_EQ] = ACTIONS(5522), + [anon_sym_DASH_EQ] = ACTIONS(5522), + [anon_sym_STAR_EQ] = ACTIONS(5522), + [anon_sym_SLASH_EQ] = ACTIONS(5522), + [anon_sym_PERCENT_EQ] = ACTIONS(5522), + [anon_sym_AMP_EQ] = ACTIONS(5522), + [anon_sym_CARET_EQ] = ACTIONS(5522), + [anon_sym_PIPE_EQ] = ACTIONS(5522), + [anon_sym_LT_LT_EQ] = ACTIONS(5522), + [anon_sym_GT_GT_EQ] = ACTIONS(5522), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(5522), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(5522), + [anon_sym_AMP_AMP] = ACTIONS(4811), + [anon_sym_PIPE_PIPE] = ACTIONS(4811), + [anon_sym_QMARK_QMARK] = ACTIONS(4813), + [anon_sym_as] = ACTIONS(4811), + [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), @@ -513787,7 +513236,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3599] = { - [sym_block] = STATE(2094), + [sym_argument_list] = STATE(3771), + [sym_bracketed_argument_list] = STATE(2892), [sym_preproc_region] = STATE(3599), [sym_preproc_endregion] = STATE(3599), [sym_preproc_line] = STATE(3599), @@ -513797,53 +513247,52 @@ 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(3482), - [anon_sym_extern] = ACTIONS(3482), - [anon_sym_alias] = ACTIONS(3482), - [anon_sym_global] = ACTIONS(3482), - [anon_sym_unsafe] = ACTIONS(3482), - [anon_sym_static] = ACTIONS(3482), - [anon_sym_LPAREN] = ACTIONS(5084), - [anon_sym_ref] = ACTIONS(3482), - [anon_sym_LBRACE] = ACTIONS(5771), - [anon_sym_delegate] = 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_scoped] = ACTIONS(3482), - [anon_sym_var] = ACTIONS(3482), - [sym_predefined_type] = ACTIONS(3482), - [anon_sym_yield] = ACTIONS(3482), - [anon_sym_when] = ACTIONS(3482), - [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_LBRACK] = ACTIONS(5650), + [anon_sym_COMMA] = ACTIONS(5801), + [anon_sym_LPAREN] = ACTIONS(5591), + [anon_sym_LT] = ACTIONS(5654), + [anon_sym_GT] = ACTIONS(5654), + [anon_sym_where] = ACTIONS(5801), + [anon_sym_QMARK] = ACTIONS(5656), + [anon_sym_BANG] = ACTIONS(5658), + [anon_sym_PLUS_PLUS] = ACTIONS(5660), + [anon_sym_DASH_DASH] = ACTIONS(5660), + [anon_sym_PLUS] = ACTIONS(5662), + [anon_sym_DASH] = ACTIONS(5662), + [anon_sym_STAR] = ACTIONS(5664), + [anon_sym_SLASH] = ACTIONS(5666), + [anon_sym_PERCENT] = ACTIONS(5664), + [anon_sym_CARET] = ACTIONS(5668), + [anon_sym_PIPE] = ACTIONS(5670), + [anon_sym_AMP] = ACTIONS(5672), + [anon_sym_LT_LT] = ACTIONS(5674), + [anon_sym_GT_GT] = ACTIONS(5676), + [anon_sym_GT_GT_GT] = ACTIONS(5674), + [anon_sym_EQ_EQ] = ACTIONS(5678), + [anon_sym_BANG_EQ] = ACTIONS(5678), + [anon_sym_GT_EQ] = ACTIONS(5680), + [anon_sym_LT_EQ] = ACTIONS(5680), + [anon_sym_DOT] = ACTIONS(4697), + [anon_sym_switch] = ACTIONS(5682), + [anon_sym_DOT_DOT] = ACTIONS(5684), + [anon_sym_and] = ACTIONS(5801), + [anon_sym_or] = ACTIONS(5803), + [anon_sym_AMP_AMP] = ACTIONS(5688), + [anon_sym_PIPE_PIPE] = ACTIONS(5690), + [anon_sym_QMARK_QMARK] = ACTIONS(5692), + [anon_sym_from] = ACTIONS(5801), + [anon_sym_into] = ACTIONS(5801), + [anon_sym_join] = ACTIONS(5801), + [anon_sym_let] = ACTIONS(5801), + [anon_sym_orderby] = ACTIONS(5801), + [anon_sym_ascending] = ACTIONS(5801), + [anon_sym_descending] = ACTIONS(5801), + [anon_sym_group] = ACTIONS(5801), + [anon_sym_select] = ACTIONS(5801), + [anon_sym_as] = ACTIONS(5694), + [anon_sym_is] = ACTIONS(5696), + [anon_sym_DASH_GT] = ACTIONS(4699), + [anon_sym_with] = ACTIONS(5698), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -513856,24 +513305,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3600] = { - [sym__name] = STATE(6450), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(4096), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(4109), - [sym_type] = STATE(6992), - [sym_implicit_type] = STATE(7266), - [sym_array_type] = STATE(6694), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7446), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(7266), - [sym_scoped_type] = STATE(7266), - [sym_tuple_type] = STATE(6579), - [sym_identifier] = STATE(4087), - [sym__reserved_identifier] = STATE(3691), [sym_preproc_region] = STATE(3600), [sym_preproc_endregion] = STATE(3600), [sym_preproc_line] = STATE(3600), @@ -513883,36 +513314,54 @@ 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), - [aux_sym_type_argument_list_repeat1] = STATE(6993), - [sym__identifier_token] = ACTIONS(2967), - [anon_sym_alias] = ACTIONS(2971), - [anon_sym_global] = ACTIONS(2971), - [anon_sym_COMMA] = ACTIONS(5026), - [anon_sym_LPAREN] = ACTIONS(2979), - [anon_sym_ref] = ACTIONS(5028), - [anon_sym_delegate] = ACTIONS(5030), - [anon_sym_file] = ACTIONS(2971), - [anon_sym_GT] = ACTIONS(5773), - [anon_sym_where] = ACTIONS(2971), - [anon_sym_notnull] = ACTIONS(2971), - [anon_sym_unmanaged] = ACTIONS(2971), - [anon_sym_scoped] = ACTIONS(5036), - [anon_sym_var] = ACTIONS(4737), - [sym_predefined_type] = ACTIONS(5038), - [anon_sym_yield] = ACTIONS(2971), - [anon_sym_when] = ACTIONS(2971), - [anon_sym_from] = ACTIONS(2971), - [anon_sym_into] = ACTIONS(2971), - [anon_sym_join] = ACTIONS(2971), - [anon_sym_on] = ACTIONS(2971), - [anon_sym_equals] = ACTIONS(2971), - [anon_sym_let] = ACTIONS(2971), - [anon_sym_orderby] = ACTIONS(2971), - [anon_sym_ascending] = ACTIONS(2971), - [anon_sym_descending] = ACTIONS(2971), - [anon_sym_group] = ACTIONS(2971), - [anon_sym_by] = ACTIONS(2971), - [anon_sym_select] = ACTIONS(2971), + [anon_sym_EQ] = ACTIONS(5805), + [anon_sym_LBRACK] = ACTIONS(4811), + [anon_sym_LPAREN] = ACTIONS(4811), + [anon_sym_LT] = ACTIONS(4813), + [anon_sym_GT] = ACTIONS(4813), + [anon_sym_QMARK] = ACTIONS(4813), + [anon_sym_BANG] = ACTIONS(4813), + [anon_sym_PLUS_PLUS] = ACTIONS(4811), + [anon_sym_DASH_DASH] = ACTIONS(4811), + [anon_sym_PLUS] = ACTIONS(4813), + [anon_sym_DASH] = ACTIONS(4813), + [anon_sym_STAR] = ACTIONS(4813), + [anon_sym_SLASH] = ACTIONS(4813), + [anon_sym_PERCENT] = ACTIONS(4813), + [anon_sym_CARET] = ACTIONS(4813), + [anon_sym_PIPE] = ACTIONS(4813), + [anon_sym_AMP] = ACTIONS(4813), + [anon_sym_LT_LT] = ACTIONS(4813), + [anon_sym_GT_GT] = ACTIONS(4813), + [anon_sym_GT_GT_GT] = ACTIONS(4813), + [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(4813), + [anon_sym_switch] = ACTIONS(4811), + [anon_sym_DOT_DOT] = ACTIONS(4811), + [anon_sym_PLUS_EQ] = ACTIONS(5807), + [anon_sym_DASH_EQ] = ACTIONS(5807), + [anon_sym_STAR_EQ] = ACTIONS(5807), + [anon_sym_SLASH_EQ] = ACTIONS(5807), + [anon_sym_PERCENT_EQ] = ACTIONS(5807), + [anon_sym_AMP_EQ] = ACTIONS(5807), + [anon_sym_CARET_EQ] = ACTIONS(5807), + [anon_sym_PIPE_EQ] = ACTIONS(5807), + [anon_sym_LT_LT_EQ] = ACTIONS(5807), + [anon_sym_GT_GT_EQ] = ACTIONS(5807), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(5807), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(5807), + [anon_sym_AMP_AMP] = ACTIONS(4811), + [anon_sym_PIPE_PIPE] = ACTIONS(4811), + [anon_sym_QMARK_QMARK] = ACTIONS(4813), + [anon_sym_into] = 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_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -513925,24 +513374,25 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3601] = { - [sym__name] = STATE(6450), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(4096), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(4109), - [sym_type] = STATE(6756), - [sym_implicit_type] = STATE(7266), - [sym_array_type] = STATE(6694), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7446), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(7266), - [sym_scoped_type] = STATE(7266), - [sym_tuple_type] = STATE(6579), - [sym_identifier] = STATE(4087), - [sym__reserved_identifier] = STATE(3691), + [sym_argument_list] = STATE(3575), + [sym__name] = STATE(2411), + [sym_alias_qualified_name] = STATE(2402), + [sym__simple_name] = STATE(2402), + [sym_qualified_name] = STATE(2402), + [sym_generic_name] = STATE(2384), + [sym_type] = STATE(3527), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(3553), + [sym__array_base_type] = STATE(7083), + [sym_nullable_type] = STATE(2375), + [sym_pointer_type] = STATE(2375), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(2375), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(2377), + [sym_identifier] = STATE(2351), + [sym__reserved_identifier] = STATE(2354), [sym_preproc_region] = STATE(3601), [sym_preproc_endregion] = STATE(3601), [sym_preproc_line] = STATE(3601), @@ -513952,36 +513402,35 @@ 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), - [aux_sym_type_argument_list_repeat1] = STATE(6758), - [sym__identifier_token] = ACTIONS(2967), - [anon_sym_alias] = ACTIONS(2971), - [anon_sym_global] = ACTIONS(2971), - [anon_sym_COMMA] = ACTIONS(5026), - [anon_sym_LPAREN] = ACTIONS(2979), - [anon_sym_ref] = ACTIONS(5028), - [anon_sym_delegate] = ACTIONS(5030), - [anon_sym_file] = ACTIONS(2971), - [anon_sym_GT] = ACTIONS(5775), - [anon_sym_where] = ACTIONS(2971), - [anon_sym_notnull] = ACTIONS(2971), - [anon_sym_unmanaged] = ACTIONS(2971), - [anon_sym_scoped] = ACTIONS(5036), - [anon_sym_var] = ACTIONS(4737), - [sym_predefined_type] = ACTIONS(5038), - [anon_sym_yield] = ACTIONS(2971), - [anon_sym_when] = ACTIONS(2971), - [anon_sym_from] = ACTIONS(2971), - [anon_sym_into] = ACTIONS(2971), - [anon_sym_join] = ACTIONS(2971), - [anon_sym_on] = ACTIONS(2971), - [anon_sym_equals] = ACTIONS(2971), - [anon_sym_let] = ACTIONS(2971), - [anon_sym_orderby] = ACTIONS(2971), - [anon_sym_ascending] = ACTIONS(2971), - [anon_sym_descending] = ACTIONS(2971), - [anon_sym_group] = ACTIONS(2971), - [anon_sym_by] = ACTIONS(2971), - [anon_sym_select] = ACTIONS(2971), + [sym__identifier_token] = ACTIONS(4080), + [anon_sym_alias] = ACTIONS(4082), + [anon_sym_global] = ACTIONS(4082), + [anon_sym_LBRACK] = ACTIONS(5809), + [anon_sym_LPAREN] = ACTIONS(5811), + [anon_sym_ref] = ACTIONS(4084), + [anon_sym_LBRACE] = ACTIONS(5813), + [anon_sym_delegate] = ACTIONS(3438), + [anon_sym_file] = ACTIONS(4082), + [anon_sym_where] = ACTIONS(4082), + [anon_sym_notnull] = ACTIONS(4082), + [anon_sym_unmanaged] = ACTIONS(4082), + [anon_sym_scoped] = ACTIONS(5815), + [anon_sym_var] = ACTIONS(5817), + [sym_predefined_type] = ACTIONS(5819), + [anon_sym_yield] = ACTIONS(4082), + [anon_sym_when] = ACTIONS(4082), + [anon_sym_from] = ACTIONS(4082), + [anon_sym_into] = ACTIONS(4082), + [anon_sym_join] = ACTIONS(4082), + [anon_sym_on] = ACTIONS(4082), + [anon_sym_equals] = ACTIONS(4082), + [anon_sym_let] = ACTIONS(4082), + [anon_sym_orderby] = ACTIONS(4082), + [anon_sym_ascending] = ACTIONS(4082), + [anon_sym_descending] = ACTIONS(4082), + [anon_sym_group] = ACTIONS(4082), + [anon_sym_by] = ACTIONS(4082), + [anon_sym_select] = ACTIONS(4082), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -513994,7 +513443,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3602] = { - [sym_initializer_expression] = STATE(3710), [sym_preproc_region] = STATE(3602), [sym_preproc_endregion] = STATE(3602), [sym_preproc_line] = STATE(3602), @@ -514004,53 +513452,54 @@ 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(4866), - [anon_sym_COMMA] = ACTIONS(4866), - [anon_sym_LPAREN] = ACTIONS(4866), - [anon_sym_LBRACE] = ACTIONS(1633), - [anon_sym_LT] = ACTIONS(4868), - [anon_sym_GT] = ACTIONS(4868), - [anon_sym_where] = ACTIONS(4866), - [anon_sym_QMARK] = ACTIONS(4868), - [anon_sym_BANG] = ACTIONS(4868), - [anon_sym_PLUS_PLUS] = ACTIONS(4866), - [anon_sym_DASH_DASH] = ACTIONS(4866), - [anon_sym_PLUS] = ACTIONS(4868), - [anon_sym_DASH] = ACTIONS(4868), - [anon_sym_STAR] = ACTIONS(4866), - [anon_sym_SLASH] = ACTIONS(4868), - [anon_sym_PERCENT] = ACTIONS(4866), - [anon_sym_CARET] = ACTIONS(4866), - [anon_sym_PIPE] = ACTIONS(4868), - [anon_sym_AMP] = ACTIONS(4868), - [anon_sym_LT_LT] = ACTIONS(4866), - [anon_sym_GT_GT] = ACTIONS(4868), - [anon_sym_GT_GT_GT] = ACTIONS(4866), - [anon_sym_EQ_EQ] = ACTIONS(4866), - [anon_sym_BANG_EQ] = ACTIONS(4866), - [anon_sym_GT_EQ] = ACTIONS(4866), - [anon_sym_LT_EQ] = ACTIONS(4866), - [anon_sym_DOT] = ACTIONS(4868), - [anon_sym_switch] = ACTIONS(4866), - [anon_sym_DOT_DOT] = ACTIONS(4866), - [anon_sym_and] = ACTIONS(4866), - [anon_sym_or] = ACTIONS(4868), - [anon_sym_AMP_AMP] = ACTIONS(4866), - [anon_sym_PIPE_PIPE] = ACTIONS(4866), - [anon_sym_QMARK_QMARK] = ACTIONS(4866), - [anon_sym_from] = ACTIONS(4866), - [anon_sym_into] = ACTIONS(4866), - [anon_sym_join] = ACTIONS(4866), - [anon_sym_let] = ACTIONS(4866), - [anon_sym_orderby] = ACTIONS(4866), - [anon_sym_ascending] = ACTIONS(4866), - [anon_sym_descending] = ACTIONS(4866), - [anon_sym_group] = ACTIONS(4866), - [anon_sym_select] = ACTIONS(4866), - [anon_sym_as] = ACTIONS(4868), - [anon_sym_is] = ACTIONS(4866), - [anon_sym_DASH_GT] = ACTIONS(4866), - [anon_sym_with] = ACTIONS(4866), + [anon_sym_EQ] = ACTIONS(5520), + [anon_sym_LBRACK] = ACTIONS(4811), + [anon_sym_COMMA] = ACTIONS(4811), + [anon_sym_LPAREN] = ACTIONS(4811), + [anon_sym_RPAREN] = ACTIONS(5821), + [anon_sym_LT] = ACTIONS(4813), + [anon_sym_GT] = ACTIONS(4813), + [anon_sym_QMARK] = ACTIONS(4813), + [anon_sym_BANG] = ACTIONS(4813), + [anon_sym_PLUS_PLUS] = ACTIONS(4811), + [anon_sym_DASH_DASH] = ACTIONS(4811), + [anon_sym_PLUS] = ACTIONS(4813), + [anon_sym_DASH] = ACTIONS(4813), + [anon_sym_STAR] = ACTIONS(4813), + [anon_sym_SLASH] = ACTIONS(4813), + [anon_sym_PERCENT] = ACTIONS(4813), + [anon_sym_CARET] = ACTIONS(4813), + [anon_sym_PIPE] = ACTIONS(4813), + [anon_sym_AMP] = ACTIONS(4813), + [anon_sym_LT_LT] = ACTIONS(4813), + [anon_sym_GT_GT] = ACTIONS(4813), + [anon_sym_GT_GT_GT] = ACTIONS(4813), + [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(4813), + [anon_sym_switch] = ACTIONS(4811), + [anon_sym_DOT_DOT] = ACTIONS(4811), + [anon_sym_PLUS_EQ] = ACTIONS(5522), + [anon_sym_DASH_EQ] = ACTIONS(5522), + [anon_sym_STAR_EQ] = ACTIONS(5522), + [anon_sym_SLASH_EQ] = ACTIONS(5522), + [anon_sym_PERCENT_EQ] = ACTIONS(5522), + [anon_sym_AMP_EQ] = ACTIONS(5522), + [anon_sym_CARET_EQ] = ACTIONS(5522), + [anon_sym_PIPE_EQ] = ACTIONS(5522), + [anon_sym_LT_LT_EQ] = ACTIONS(5522), + [anon_sym_GT_GT_EQ] = ACTIONS(5522), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(5522), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(5522), + [anon_sym_AMP_AMP] = ACTIONS(4811), + [anon_sym_PIPE_PIPE] = ACTIONS(4811), + [anon_sym_QMARK_QMARK] = ACTIONS(4813), + [anon_sym_as] = ACTIONS(4811), + [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), @@ -514063,7 +513512,25 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3603] = { - [sym_block] = STATE(2037), + [sym_argument_list] = STATE(3138), + [sym__name] = STATE(3151), + [sym_alias_qualified_name] = STATE(3143), + [sym__simple_name] = STATE(3143), + [sym_qualified_name] = STATE(3143), + [sym_generic_name] = STATE(3184), + [sym_type] = STATE(3116), + [sym_implicit_type] = STATE(3146), + [sym_array_type] = STATE(3139), + [sym__array_base_type] = STATE(7165), + [sym_nullable_type] = STATE(3148), + [sym_pointer_type] = STATE(3148), + [sym__pointer_base_type] = STATE(7401), + [sym_function_pointer_type] = STATE(3148), + [sym_ref_type] = STATE(3146), + [sym_scoped_type] = STATE(3146), + [sym_tuple_type] = STATE(3149), + [sym_identifier] = STATE(3119), + [sym__reserved_identifier] = STATE(3120), [sym_preproc_region] = STATE(3603), [sym_preproc_endregion] = STATE(3603), [sym_preproc_line] = STATE(3603), @@ -514073,53 +513540,35 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3603), [sym_preproc_define] = STATE(3603), [sym_preproc_undef] = STATE(3603), - [sym__identifier_token] = ACTIONS(3482), - [anon_sym_extern] = ACTIONS(3482), - [anon_sym_alias] = ACTIONS(3482), - [anon_sym_global] = ACTIONS(3482), - [anon_sym_unsafe] = ACTIONS(3482), - [anon_sym_static] = ACTIONS(3482), - [anon_sym_LPAREN] = ACTIONS(5084), - [anon_sym_ref] = ACTIONS(3482), - [anon_sym_LBRACE] = ACTIONS(5293), - [anon_sym_delegate] = 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_scoped] = ACTIONS(3482), - [anon_sym_var] = ACTIONS(3482), - [sym_predefined_type] = ACTIONS(3482), - [anon_sym_yield] = ACTIONS(3482), - [anon_sym_when] = ACTIONS(3482), - [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), + [sym__identifier_token] = ACTIONS(3761), + [anon_sym_alias] = ACTIONS(3763), + [anon_sym_global] = ACTIONS(3763), + [anon_sym_LBRACK] = ACTIONS(5616), + [anon_sym_LPAREN] = ACTIONS(5618), + [anon_sym_ref] = ACTIONS(3765), + [anon_sym_LBRACE] = ACTIONS(5620), + [anon_sym_delegate] = ACTIONS(5622), + [anon_sym_file] = ACTIONS(3763), + [anon_sym_where] = ACTIONS(3763), + [anon_sym_notnull] = ACTIONS(3763), + [anon_sym_unmanaged] = ACTIONS(3763), + [anon_sym_scoped] = ACTIONS(5823), + [anon_sym_var] = ACTIONS(5626), + [sym_predefined_type] = ACTIONS(5628), + [anon_sym_yield] = ACTIONS(3763), + [anon_sym_when] = ACTIONS(3763), + [anon_sym_from] = ACTIONS(3763), + [anon_sym_into] = ACTIONS(3763), + [anon_sym_join] = ACTIONS(3763), + [anon_sym_on] = ACTIONS(3763), + [anon_sym_equals] = ACTIONS(3763), + [anon_sym_let] = ACTIONS(3763), + [anon_sym_orderby] = ACTIONS(3763), + [anon_sym_ascending] = ACTIONS(3763), + [anon_sym_descending] = ACTIONS(3763), + [anon_sym_group] = ACTIONS(3763), + [anon_sym_by] = ACTIONS(3763), + [anon_sym_select] = ACTIONS(3763), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -514132,8 +513581,25 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3604] = { - [sym_argument_list] = STATE(3886), - [sym_bracketed_argument_list] = STATE(2902), + [sym_argument_list] = STATE(3194), + [sym__name] = STATE(3488), + [sym_alias_qualified_name] = STATE(3304), + [sym__simple_name] = STATE(3304), + [sym_qualified_name] = STATE(3304), + [sym_generic_name] = STATE(3241), + [sym_type] = STATE(3130), + [sym_implicit_type] = STATE(3222), + [sym_array_type] = STATE(3232), + [sym__array_base_type] = STATE(7208), + [sym_nullable_type] = STATE(3216), + [sym_pointer_type] = STATE(3216), + [sym__pointer_base_type] = STATE(7508), + [sym_function_pointer_type] = STATE(3216), + [sym_ref_type] = STATE(3222), + [sym_scoped_type] = STATE(3222), + [sym_tuple_type] = STATE(3308), + [sym_identifier] = STATE(3177), + [sym__reserved_identifier] = STATE(3205), [sym_preproc_region] = STATE(3604), [sym_preproc_endregion] = STATE(3604), [sym_preproc_line] = STATE(3604), @@ -514143,52 +513609,35 @@ 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), - [anon_sym_LBRACK] = ACTIONS(5658), - [anon_sym_COMMA] = ACTIONS(5660), - [anon_sym_LPAREN] = ACTIONS(5624), - [anon_sym_LT] = ACTIONS(5662), - [anon_sym_GT] = ACTIONS(5662), - [anon_sym_where] = ACTIONS(5660), - [anon_sym_QMARK] = ACTIONS(5664), - [anon_sym_BANG] = ACTIONS(5666), - [anon_sym_PLUS_PLUS] = ACTIONS(5668), - [anon_sym_DASH_DASH] = ACTIONS(5668), - [anon_sym_PLUS] = ACTIONS(5670), - [anon_sym_DASH] = ACTIONS(5670), - [anon_sym_STAR] = ACTIONS(5672), - [anon_sym_SLASH] = ACTIONS(5674), - [anon_sym_PERCENT] = ACTIONS(5672), - [anon_sym_CARET] = ACTIONS(5676), - [anon_sym_PIPE] = ACTIONS(5749), - [anon_sym_AMP] = ACTIONS(5678), - [anon_sym_LT_LT] = ACTIONS(5680), - [anon_sym_GT_GT] = ACTIONS(5682), - [anon_sym_GT_GT_GT] = ACTIONS(5680), - [anon_sym_EQ_EQ] = ACTIONS(5684), - [anon_sym_BANG_EQ] = ACTIONS(5684), - [anon_sym_GT_EQ] = ACTIONS(5686), - [anon_sym_LT_EQ] = ACTIONS(5686), - [anon_sym_DOT] = ACTIONS(4733), - [anon_sym_switch] = ACTIONS(5688), - [anon_sym_DOT_DOT] = ACTIONS(5690), - [anon_sym_and] = ACTIONS(5660), - [anon_sym_or] = ACTIONS(5664), - [anon_sym_AMP_AMP] = ACTIONS(5753), - [anon_sym_PIPE_PIPE] = ACTIONS(5660), - [anon_sym_QMARK_QMARK] = ACTIONS(5660), - [anon_sym_from] = ACTIONS(5660), - [anon_sym_into] = ACTIONS(5660), - [anon_sym_join] = ACTIONS(5660), - [anon_sym_let] = ACTIONS(5660), - [anon_sym_orderby] = ACTIONS(5660), - [anon_sym_ascending] = ACTIONS(5660), - [anon_sym_descending] = ACTIONS(5660), - [anon_sym_group] = ACTIONS(5660), - [anon_sym_select] = ACTIONS(5660), - [anon_sym_as] = ACTIONS(5692), - [anon_sym_is] = ACTIONS(5694), - [anon_sym_DASH_GT] = ACTIONS(4719), - [anon_sym_with] = ACTIONS(5696), + [sym__identifier_token] = ACTIONS(3798), + [anon_sym_alias] = ACTIONS(3800), + [anon_sym_global] = ACTIONS(3800), + [anon_sym_LBRACK] = ACTIONS(5632), + [anon_sym_LPAREN] = ACTIONS(5634), + [anon_sym_ref] = ACTIONS(4025), + [anon_sym_LBRACE] = ACTIONS(5636), + [anon_sym_delegate] = ACTIONS(5638), + [anon_sym_file] = ACTIONS(3800), + [anon_sym_where] = ACTIONS(3800), + [anon_sym_notnull] = ACTIONS(3800), + [anon_sym_unmanaged] = ACTIONS(3800), + [anon_sym_scoped] = ACTIONS(5825), + [anon_sym_var] = ACTIONS(5642), + [sym_predefined_type] = ACTIONS(5644), + [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), @@ -514201,8 +513650,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3605] = { - [sym_argument_list] = STATE(3886), - [sym_bracketed_argument_list] = STATE(2902), [sym_preproc_region] = STATE(3605), [sym_preproc_endregion] = STATE(3605), [sym_preproc_line] = STATE(3605), @@ -514212,52 +513659,54 @@ 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), - [anon_sym_LBRACK] = ACTIONS(5658), - [anon_sym_COMMA] = ACTIONS(5777), - [anon_sym_LPAREN] = ACTIONS(5624), - [anon_sym_LT] = ACTIONS(5662), - [anon_sym_GT] = ACTIONS(5662), - [anon_sym_where] = ACTIONS(5777), - [anon_sym_QMARK] = ACTIONS(5747), - [anon_sym_BANG] = ACTIONS(5666), - [anon_sym_PLUS_PLUS] = ACTIONS(5668), - [anon_sym_DASH_DASH] = ACTIONS(5668), - [anon_sym_PLUS] = ACTIONS(5670), - [anon_sym_DASH] = ACTIONS(5670), - [anon_sym_STAR] = ACTIONS(5672), - [anon_sym_SLASH] = ACTIONS(5674), - [anon_sym_PERCENT] = ACTIONS(5672), - [anon_sym_CARET] = ACTIONS(5676), - [anon_sym_PIPE] = ACTIONS(5749), - [anon_sym_AMP] = ACTIONS(5678), - [anon_sym_LT_LT] = ACTIONS(5680), - [anon_sym_GT_GT] = ACTIONS(5682), - [anon_sym_GT_GT_GT] = ACTIONS(5680), - [anon_sym_EQ_EQ] = ACTIONS(5684), - [anon_sym_BANG_EQ] = ACTIONS(5684), - [anon_sym_GT_EQ] = ACTIONS(5686), - [anon_sym_LT_EQ] = ACTIONS(5686), - [anon_sym_DOT] = ACTIONS(4733), - [anon_sym_switch] = ACTIONS(5688), - [anon_sym_DOT_DOT] = ACTIONS(5690), - [anon_sym_and] = ACTIONS(5777), - [anon_sym_or] = ACTIONS(5779), - [anon_sym_AMP_AMP] = ACTIONS(5753), - [anon_sym_PIPE_PIPE] = ACTIONS(5755), - [anon_sym_QMARK_QMARK] = ACTIONS(5757), - [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(5692), - [anon_sym_is] = ACTIONS(5694), - [anon_sym_DASH_GT] = ACTIONS(4719), - [anon_sym_with] = ACTIONS(5696), + [anon_sym_EQ] = ACTIONS(5520), + [anon_sym_LBRACK] = ACTIONS(4811), + [anon_sym_COMMA] = ACTIONS(4811), + [anon_sym_LPAREN] = ACTIONS(4811), + [anon_sym_RPAREN] = ACTIONS(5827), + [anon_sym_LT] = ACTIONS(4813), + [anon_sym_GT] = ACTIONS(4813), + [anon_sym_QMARK] = ACTIONS(4813), + [anon_sym_BANG] = ACTIONS(4813), + [anon_sym_PLUS_PLUS] = ACTIONS(4811), + [anon_sym_DASH_DASH] = ACTIONS(4811), + [anon_sym_PLUS] = ACTIONS(4813), + [anon_sym_DASH] = ACTIONS(4813), + [anon_sym_STAR] = ACTIONS(4813), + [anon_sym_SLASH] = ACTIONS(4813), + [anon_sym_PERCENT] = ACTIONS(4813), + [anon_sym_CARET] = ACTIONS(4813), + [anon_sym_PIPE] = ACTIONS(4813), + [anon_sym_AMP] = ACTIONS(4813), + [anon_sym_LT_LT] = ACTIONS(4813), + [anon_sym_GT_GT] = ACTIONS(4813), + [anon_sym_GT_GT_GT] = ACTIONS(4813), + [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(4813), + [anon_sym_switch] = ACTIONS(4811), + [anon_sym_DOT_DOT] = ACTIONS(4811), + [anon_sym_PLUS_EQ] = ACTIONS(5522), + [anon_sym_DASH_EQ] = ACTIONS(5522), + [anon_sym_STAR_EQ] = ACTIONS(5522), + [anon_sym_SLASH_EQ] = ACTIONS(5522), + [anon_sym_PERCENT_EQ] = ACTIONS(5522), + [anon_sym_AMP_EQ] = ACTIONS(5522), + [anon_sym_CARET_EQ] = ACTIONS(5522), + [anon_sym_PIPE_EQ] = ACTIONS(5522), + [anon_sym_LT_LT_EQ] = ACTIONS(5522), + [anon_sym_GT_GT_EQ] = ACTIONS(5522), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(5522), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(5522), + [anon_sym_AMP_AMP] = ACTIONS(4811), + [anon_sym_PIPE_PIPE] = ACTIONS(4811), + [anon_sym_QMARK_QMARK] = ACTIONS(4813), + [anon_sym_as] = ACTIONS(4811), + [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), @@ -514270,24 +513719,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3606] = { - [sym__name] = STATE(6450), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(4096), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(4109), - [sym_type] = STATE(6937), - [sym_implicit_type] = STATE(7266), - [sym_array_type] = STATE(6694), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7446), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(7266), - [sym_scoped_type] = STATE(7266), - [sym_tuple_type] = STATE(6579), - [sym_identifier] = STATE(4087), - [sym__reserved_identifier] = STATE(3691), + [sym_argument_list] = STATE(3771), + [sym_bracketed_argument_list] = STATE(2892), [sym_preproc_region] = STATE(3606), [sym_preproc_endregion] = STATE(3606), [sym_preproc_line] = STATE(3606), @@ -514297,36 +513730,52 @@ 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(6938), - [sym__identifier_token] = ACTIONS(2967), - [anon_sym_alias] = ACTIONS(2971), - [anon_sym_global] = ACTIONS(2971), - [anon_sym_COMMA] = ACTIONS(5026), - [anon_sym_LPAREN] = ACTIONS(2979), - [anon_sym_ref] = ACTIONS(5028), - [anon_sym_delegate] = ACTIONS(5030), - [anon_sym_file] = ACTIONS(2971), - [anon_sym_GT] = ACTIONS(5781), - [anon_sym_where] = ACTIONS(2971), - [anon_sym_notnull] = ACTIONS(2971), - [anon_sym_unmanaged] = ACTIONS(2971), - [anon_sym_scoped] = ACTIONS(5036), - [anon_sym_var] = ACTIONS(4737), - [sym_predefined_type] = ACTIONS(5038), - [anon_sym_yield] = ACTIONS(2971), - [anon_sym_when] = ACTIONS(2971), - [anon_sym_from] = ACTIONS(2971), - [anon_sym_into] = ACTIONS(2971), - [anon_sym_join] = ACTIONS(2971), - [anon_sym_on] = ACTIONS(2971), - [anon_sym_equals] = ACTIONS(2971), - [anon_sym_let] = ACTIONS(2971), - [anon_sym_orderby] = ACTIONS(2971), - [anon_sym_ascending] = ACTIONS(2971), - [anon_sym_descending] = ACTIONS(2971), - [anon_sym_group] = ACTIONS(2971), - [anon_sym_by] = ACTIONS(2971), - [anon_sym_select] = ACTIONS(2971), + [anon_sym_LBRACK] = ACTIONS(5650), + [anon_sym_COMMA] = ACTIONS(5737), + [anon_sym_LPAREN] = ACTIONS(5591), + [anon_sym_LT] = ACTIONS(5654), + [anon_sym_GT] = ACTIONS(5654), + [anon_sym_where] = ACTIONS(5737), + [anon_sym_QMARK] = ACTIONS(5739), + [anon_sym_BANG] = ACTIONS(5658), + [anon_sym_PLUS_PLUS] = ACTIONS(5660), + [anon_sym_DASH_DASH] = ACTIONS(5660), + [anon_sym_PLUS] = ACTIONS(5662), + [anon_sym_DASH] = ACTIONS(5662), + [anon_sym_STAR] = ACTIONS(5664), + [anon_sym_SLASH] = ACTIONS(5666), + [anon_sym_PERCENT] = ACTIONS(5664), + [anon_sym_CARET] = ACTIONS(5737), + [anon_sym_PIPE] = ACTIONS(5739), + [anon_sym_AMP] = ACTIONS(5739), + [anon_sym_LT_LT] = ACTIONS(5674), + [anon_sym_GT_GT] = ACTIONS(5676), + [anon_sym_GT_GT_GT] = ACTIONS(5674), + [anon_sym_EQ_EQ] = ACTIONS(5737), + [anon_sym_BANG_EQ] = ACTIONS(5737), + [anon_sym_GT_EQ] = ACTIONS(5680), + [anon_sym_LT_EQ] = ACTIONS(5680), + [anon_sym_DOT] = ACTIONS(4697), + [anon_sym_switch] = ACTIONS(5682), + [anon_sym_DOT_DOT] = ACTIONS(5684), + [anon_sym_and] = ACTIONS(5737), + [anon_sym_or] = ACTIONS(5739), + [anon_sym_AMP_AMP] = ACTIONS(5737), + [anon_sym_PIPE_PIPE] = ACTIONS(5737), + [anon_sym_QMARK_QMARK] = ACTIONS(5737), + [anon_sym_from] = ACTIONS(5737), + [anon_sym_into] = ACTIONS(5737), + [anon_sym_join] = ACTIONS(5737), + [anon_sym_let] = ACTIONS(5737), + [anon_sym_orderby] = ACTIONS(5737), + [anon_sym_ascending] = ACTIONS(5737), + [anon_sym_descending] = ACTIONS(5737), + [anon_sym_group] = ACTIONS(5737), + [anon_sym_select] = ACTIONS(5737), + [anon_sym_as] = ACTIONS(5694), + [anon_sym_is] = ACTIONS(5696), + [anon_sym_DASH_GT] = ACTIONS(4699), + [anon_sym_with] = ACTIONS(5698), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -514339,8 +513788,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3607] = { - [sym_argument_list] = STATE(3886), - [sym_bracketed_argument_list] = STATE(2902), + [sym_argument_list] = STATE(3771), + [sym_bracketed_argument_list] = STATE(2892), [sym_preproc_region] = STATE(3607), [sym_preproc_endregion] = STATE(3607), [sym_preproc_line] = STATE(3607), @@ -514350,52 +513799,52 @@ 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(5658), - [anon_sym_COMMA] = ACTIONS(4833), - [anon_sym_LPAREN] = ACTIONS(5624), - [anon_sym_LT] = ACTIONS(4837), - [anon_sym_GT] = ACTIONS(4837), - [anon_sym_where] = ACTIONS(4833), - [anon_sym_QMARK] = ACTIONS(4837), - [anon_sym_BANG] = ACTIONS(5666), - [anon_sym_PLUS_PLUS] = ACTIONS(5668), - [anon_sym_DASH_DASH] = ACTIONS(5668), - [anon_sym_PLUS] = ACTIONS(4837), - [anon_sym_DASH] = ACTIONS(4837), - [anon_sym_STAR] = ACTIONS(4833), - [anon_sym_SLASH] = ACTIONS(4837), - [anon_sym_PERCENT] = ACTIONS(4833), - [anon_sym_CARET] = ACTIONS(4833), - [anon_sym_PIPE] = ACTIONS(4837), - [anon_sym_AMP] = ACTIONS(4837), - [anon_sym_LT_LT] = ACTIONS(4833), - [anon_sym_GT_GT] = ACTIONS(4837), - [anon_sym_GT_GT_GT] = ACTIONS(4833), - [anon_sym_EQ_EQ] = ACTIONS(4833), - [anon_sym_BANG_EQ] = ACTIONS(4833), - [anon_sym_GT_EQ] = ACTIONS(4833), - [anon_sym_LT_EQ] = ACTIONS(4833), - [anon_sym_DOT] = ACTIONS(4733), - [anon_sym_switch] = ACTIONS(4833), - [anon_sym_DOT_DOT] = ACTIONS(4833), - [anon_sym_and] = ACTIONS(4833), - [anon_sym_or] = ACTIONS(4837), - [anon_sym_AMP_AMP] = ACTIONS(4833), - [anon_sym_PIPE_PIPE] = ACTIONS(4833), - [anon_sym_QMARK_QMARK] = ACTIONS(4833), - [anon_sym_from] = ACTIONS(4833), - [anon_sym_into] = ACTIONS(4833), - [anon_sym_join] = 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_select] = ACTIONS(4833), - [anon_sym_as] = ACTIONS(4837), - [anon_sym_is] = ACTIONS(4833), - [anon_sym_DASH_GT] = ACTIONS(4719), - [anon_sym_with] = ACTIONS(4833), + [anon_sym_LBRACK] = ACTIONS(5650), + [anon_sym_COMMA] = ACTIONS(5737), + [anon_sym_LPAREN] = ACTIONS(5591), + [anon_sym_LT] = ACTIONS(5654), + [anon_sym_GT] = ACTIONS(5654), + [anon_sym_where] = ACTIONS(5737), + [anon_sym_QMARK] = ACTIONS(5739), + [anon_sym_BANG] = ACTIONS(5658), + [anon_sym_PLUS_PLUS] = ACTIONS(5660), + [anon_sym_DASH_DASH] = ACTIONS(5660), + [anon_sym_PLUS] = ACTIONS(5662), + [anon_sym_DASH] = ACTIONS(5662), + [anon_sym_STAR] = ACTIONS(5664), + [anon_sym_SLASH] = ACTIONS(5666), + [anon_sym_PERCENT] = ACTIONS(5664), + [anon_sym_CARET] = ACTIONS(5668), + [anon_sym_PIPE] = ACTIONS(5670), + [anon_sym_AMP] = ACTIONS(5672), + [anon_sym_LT_LT] = ACTIONS(5674), + [anon_sym_GT_GT] = ACTIONS(5676), + [anon_sym_GT_GT_GT] = ACTIONS(5674), + [anon_sym_EQ_EQ] = ACTIONS(5678), + [anon_sym_BANG_EQ] = ACTIONS(5678), + [anon_sym_GT_EQ] = ACTIONS(5680), + [anon_sym_LT_EQ] = ACTIONS(5680), + [anon_sym_DOT] = ACTIONS(4697), + [anon_sym_switch] = ACTIONS(5682), + [anon_sym_DOT_DOT] = ACTIONS(5684), + [anon_sym_and] = ACTIONS(5737), + [anon_sym_or] = ACTIONS(5739), + [anon_sym_AMP_AMP] = ACTIONS(5737), + [anon_sym_PIPE_PIPE] = ACTIONS(5737), + [anon_sym_QMARK_QMARK] = ACTIONS(5737), + [anon_sym_from] = ACTIONS(5737), + [anon_sym_into] = ACTIONS(5737), + [anon_sym_join] = ACTIONS(5737), + [anon_sym_let] = ACTIONS(5737), + [anon_sym_orderby] = ACTIONS(5737), + [anon_sym_ascending] = ACTIONS(5737), + [anon_sym_descending] = ACTIONS(5737), + [anon_sym_group] = ACTIONS(5737), + [anon_sym_select] = ACTIONS(5737), + [anon_sym_as] = ACTIONS(5694), + [anon_sym_is] = ACTIONS(5696), + [anon_sym_DASH_GT] = ACTIONS(4699), + [anon_sym_with] = ACTIONS(5698), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -514408,24 +513857,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3608] = { - [sym__name] = STATE(6450), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(4096), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(4109), - [sym_type] = STATE(6858), - [sym_implicit_type] = STATE(7266), - [sym_array_type] = STATE(6694), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7446), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(7266), - [sym_scoped_type] = STATE(7266), - [sym_tuple_type] = STATE(6579), - [sym_identifier] = STATE(4087), - [sym__reserved_identifier] = STATE(3691), + [sym_argument_list] = STATE(3771), + [sym_bracketed_argument_list] = STATE(2892), [sym_preproc_region] = STATE(3608), [sym_preproc_endregion] = STATE(3608), [sym_preproc_line] = STATE(3608), @@ -514435,36 +513868,52 @@ 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), - [aux_sym_type_argument_list_repeat1] = STATE(6868), - [sym__identifier_token] = ACTIONS(2967), - [anon_sym_alias] = ACTIONS(2971), - [anon_sym_global] = ACTIONS(2971), - [anon_sym_COMMA] = ACTIONS(5026), - [anon_sym_LPAREN] = ACTIONS(2979), - [anon_sym_ref] = ACTIONS(5028), - [anon_sym_delegate] = ACTIONS(5030), - [anon_sym_file] = ACTIONS(2971), - [anon_sym_GT] = ACTIONS(5783), - [anon_sym_where] = ACTIONS(2971), - [anon_sym_notnull] = ACTIONS(2971), - [anon_sym_unmanaged] = ACTIONS(2971), - [anon_sym_scoped] = ACTIONS(5036), - [anon_sym_var] = ACTIONS(4737), - [sym_predefined_type] = ACTIONS(5038), - [anon_sym_yield] = ACTIONS(2971), - [anon_sym_when] = ACTIONS(2971), - [anon_sym_from] = ACTIONS(2971), - [anon_sym_into] = ACTIONS(2971), - [anon_sym_join] = ACTIONS(2971), - [anon_sym_on] = ACTIONS(2971), - [anon_sym_equals] = ACTIONS(2971), - [anon_sym_let] = ACTIONS(2971), - [anon_sym_orderby] = ACTIONS(2971), - [anon_sym_ascending] = ACTIONS(2971), - [anon_sym_descending] = ACTIONS(2971), - [anon_sym_group] = ACTIONS(2971), - [anon_sym_by] = ACTIONS(2971), - [anon_sym_select] = ACTIONS(2971), + [anon_sym_LBRACK] = ACTIONS(5650), + [anon_sym_COMMA] = ACTIONS(5737), + [anon_sym_LPAREN] = ACTIONS(5591), + [anon_sym_LT] = ACTIONS(5654), + [anon_sym_GT] = ACTIONS(5654), + [anon_sym_where] = ACTIONS(5737), + [anon_sym_QMARK] = ACTIONS(5739), + [anon_sym_BANG] = ACTIONS(5658), + [anon_sym_PLUS_PLUS] = ACTIONS(5660), + [anon_sym_DASH_DASH] = ACTIONS(5660), + [anon_sym_PLUS] = ACTIONS(5662), + [anon_sym_DASH] = ACTIONS(5662), + [anon_sym_STAR] = ACTIONS(5664), + [anon_sym_SLASH] = ACTIONS(5666), + [anon_sym_PERCENT] = ACTIONS(5664), + [anon_sym_CARET] = ACTIONS(5668), + [anon_sym_PIPE] = ACTIONS(5670), + [anon_sym_AMP] = ACTIONS(5672), + [anon_sym_LT_LT] = ACTIONS(5674), + [anon_sym_GT_GT] = ACTIONS(5676), + [anon_sym_GT_GT_GT] = ACTIONS(5674), + [anon_sym_EQ_EQ] = ACTIONS(5678), + [anon_sym_BANG_EQ] = ACTIONS(5678), + [anon_sym_GT_EQ] = ACTIONS(5680), + [anon_sym_LT_EQ] = ACTIONS(5680), + [anon_sym_DOT] = ACTIONS(4697), + [anon_sym_switch] = ACTIONS(5682), + [anon_sym_DOT_DOT] = ACTIONS(5684), + [anon_sym_and] = ACTIONS(5737), + [anon_sym_or] = ACTIONS(5739), + [anon_sym_AMP_AMP] = ACTIONS(5688), + [anon_sym_PIPE_PIPE] = ACTIONS(5737), + [anon_sym_QMARK_QMARK] = ACTIONS(5737), + [anon_sym_from] = ACTIONS(5737), + [anon_sym_into] = ACTIONS(5737), + [anon_sym_join] = ACTIONS(5737), + [anon_sym_let] = ACTIONS(5737), + [anon_sym_orderby] = ACTIONS(5737), + [anon_sym_ascending] = ACTIONS(5737), + [anon_sym_descending] = ACTIONS(5737), + [anon_sym_group] = ACTIONS(5737), + [anon_sym_select] = ACTIONS(5737), + [anon_sym_as] = ACTIONS(5694), + [anon_sym_is] = ACTIONS(5696), + [anon_sym_DASH_GT] = ACTIONS(4699), + [anon_sym_with] = ACTIONS(5698), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -514477,25 +513926,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3609] = { - [sym_argument_list] = STATE(2905), - [sym__name] = STATE(3534), - [sym_alias_qualified_name] = STATE(2921), - [sym__simple_name] = STATE(2921), - [sym_qualified_name] = STATE(2921), - [sym_generic_name] = STATE(2929), - [sym_type] = STATE(2891), - [sym_implicit_type] = STATE(2935), - [sym_array_type] = STATE(3484), - [sym__array_base_type] = STATE(7122), - [sym_nullable_type] = STATE(2961), - [sym_pointer_type] = STATE(2961), - [sym__pointer_base_type] = STATE(7545), - [sym_function_pointer_type] = STATE(2961), - [sym_ref_type] = STATE(2935), - [sym_scoped_type] = STATE(2935), - [sym_tuple_type] = STATE(2944), - [sym_identifier] = STATE(3260), - [sym__reserved_identifier] = STATE(2904), + [sym__name] = STATE(6400), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(4068), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(4073), + [sym_type] = STATE(6992), + [sym_implicit_type] = STATE(7035), + [sym_array_type] = STATE(6706), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7421), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(7035), + [sym_scoped_type] = STATE(7035), + [sym_tuple_type] = STATE(6601), + [sym_identifier] = STATE(4081), + [sym__reserved_identifier] = STATE(3654), [sym_preproc_region] = STATE(3609), [sym_preproc_endregion] = STATE(3609), [sym_preproc_line] = STATE(3609), @@ -514505,35 +513953,36 @@ 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), - [sym__identifier_token] = ACTIONS(3861), - [anon_sym_alias] = ACTIONS(3863), - [anon_sym_global] = ACTIONS(3863), - [anon_sym_LBRACK] = ACTIONS(5785), - [anon_sym_LPAREN] = ACTIONS(5787), - [anon_sym_ref] = ACTIONS(4229), - [anon_sym_LBRACE] = ACTIONS(5789), - [anon_sym_delegate] = ACTIONS(5791), - [anon_sym_file] = ACTIONS(3863), - [anon_sym_where] = ACTIONS(3863), - [anon_sym_notnull] = ACTIONS(3863), - [anon_sym_unmanaged] = ACTIONS(3863), - [anon_sym_scoped] = ACTIONS(5793), - [anon_sym_var] = ACTIONS(5795), - [sym_predefined_type] = ACTIONS(5797), - [anon_sym_yield] = ACTIONS(3863), - [anon_sym_when] = ACTIONS(3863), - [anon_sym_from] = ACTIONS(3863), - [anon_sym_into] = ACTIONS(3863), - [anon_sym_join] = ACTIONS(3863), - [anon_sym_on] = ACTIONS(3863), - [anon_sym_equals] = ACTIONS(3863), - [anon_sym_let] = ACTIONS(3863), - [anon_sym_orderby] = ACTIONS(3863), - [anon_sym_ascending] = ACTIONS(3863), - [anon_sym_descending] = ACTIONS(3863), - [anon_sym_group] = ACTIONS(3863), - [anon_sym_by] = ACTIONS(3863), - [anon_sym_select] = ACTIONS(3863), + [aux_sym_type_argument_list_repeat1] = STATE(6732), + [sym__identifier_token] = ACTIONS(2965), + [anon_sym_alias] = ACTIONS(2969), + [anon_sym_global] = ACTIONS(2969), + [anon_sym_COMMA] = ACTIONS(5168), + [anon_sym_LPAREN] = ACTIONS(2977), + [anon_sym_ref] = ACTIONS(5170), + [anon_sym_delegate] = ACTIONS(5172), + [anon_sym_file] = ACTIONS(2969), + [anon_sym_GT] = ACTIONS(5829), + [anon_sym_where] = ACTIONS(2969), + [anon_sym_notnull] = ACTIONS(2969), + [anon_sym_unmanaged] = ACTIONS(2969), + [anon_sym_scoped] = ACTIONS(5178), + [anon_sym_var] = ACTIONS(4705), + [sym_predefined_type] = ACTIONS(5180), + [anon_sym_yield] = ACTIONS(2969), + [anon_sym_when] = ACTIONS(2969), + [anon_sym_from] = ACTIONS(2969), + [anon_sym_into] = ACTIONS(2969), + [anon_sym_join] = ACTIONS(2969), + [anon_sym_on] = ACTIONS(2969), + [anon_sym_equals] = ACTIONS(2969), + [anon_sym_let] = ACTIONS(2969), + [anon_sym_orderby] = ACTIONS(2969), + [anon_sym_ascending] = ACTIONS(2969), + [anon_sym_descending] = ACTIONS(2969), + [anon_sym_group] = ACTIONS(2969), + [anon_sym_by] = ACTIONS(2969), + [anon_sym_select] = ACTIONS(2969), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -514546,6 +513995,25 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3610] = { + [sym_argument_list] = STATE(2895), + [sym__name] = STATE(3511), + [sym_alias_qualified_name] = STATE(2907), + [sym__simple_name] = STATE(2907), + [sym_qualified_name] = STATE(2907), + [sym_generic_name] = STATE(2950), + [sym_type] = STATE(2871), + [sym_implicit_type] = STATE(2926), + [sym_array_type] = STATE(3500), + [sym__array_base_type] = STATE(7061), + [sym_nullable_type] = STATE(2942), + [sym_pointer_type] = STATE(2942), + [sym__pointer_base_type] = STATE(7640), + [sym_function_pointer_type] = STATE(2942), + [sym_ref_type] = STATE(2926), + [sym_scoped_type] = STATE(2926), + [sym_tuple_type] = STATE(2943), + [sym_identifier] = STATE(3317), + [sym__reserved_identifier] = STATE(2900), [sym_preproc_region] = STATE(3610), [sym_preproc_endregion] = STATE(3610), [sym_preproc_line] = STATE(3610), @@ -514555,54 +514023,35 @@ 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_EQ] = ACTIONS(5482), - [anon_sym_LBRACK] = ACTIONS(4860), - [anon_sym_COMMA] = ACTIONS(4860), - [anon_sym_LPAREN] = ACTIONS(4860), - [anon_sym_RPAREN] = ACTIONS(5799), - [anon_sym_LT] = ACTIONS(4862), - [anon_sym_GT] = ACTIONS(4862), - [anon_sym_QMARK] = ACTIONS(4862), - [anon_sym_BANG] = ACTIONS(4862), - [anon_sym_PLUS_PLUS] = ACTIONS(4860), - [anon_sym_DASH_DASH] = ACTIONS(4860), - [anon_sym_PLUS] = ACTIONS(4862), - [anon_sym_DASH] = ACTIONS(4862), - [anon_sym_STAR] = ACTIONS(4862), - [anon_sym_SLASH] = ACTIONS(4862), - [anon_sym_PERCENT] = ACTIONS(4862), - [anon_sym_CARET] = ACTIONS(4862), - [anon_sym_PIPE] = ACTIONS(4862), - [anon_sym_AMP] = ACTIONS(4862), - [anon_sym_LT_LT] = ACTIONS(4862), - [anon_sym_GT_GT] = ACTIONS(4862), - [anon_sym_GT_GT_GT] = ACTIONS(4862), - [anon_sym_EQ_EQ] = ACTIONS(4860), - [anon_sym_BANG_EQ] = ACTIONS(4860), - [anon_sym_GT_EQ] = ACTIONS(4860), - [anon_sym_LT_EQ] = ACTIONS(4860), - [anon_sym_DOT] = ACTIONS(4862), - [anon_sym_switch] = ACTIONS(4860), - [anon_sym_DOT_DOT] = ACTIONS(4860), - [anon_sym_PLUS_EQ] = ACTIONS(5484), - [anon_sym_DASH_EQ] = ACTIONS(5484), - [anon_sym_STAR_EQ] = ACTIONS(5484), - [anon_sym_SLASH_EQ] = ACTIONS(5484), - [anon_sym_PERCENT_EQ] = ACTIONS(5484), - [anon_sym_AMP_EQ] = ACTIONS(5484), - [anon_sym_CARET_EQ] = ACTIONS(5484), - [anon_sym_PIPE_EQ] = ACTIONS(5484), - [anon_sym_LT_LT_EQ] = ACTIONS(5484), - [anon_sym_GT_GT_EQ] = ACTIONS(5484), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(5484), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(5484), - [anon_sym_AMP_AMP] = ACTIONS(4860), - [anon_sym_PIPE_PIPE] = ACTIONS(4860), - [anon_sym_QMARK_QMARK] = ACTIONS(4862), - [anon_sym_as] = ACTIONS(4860), - [anon_sym_is] = ACTIONS(4860), - [anon_sym_DASH_GT] = ACTIONS(4860), - [anon_sym_with] = ACTIONS(4860), + [sym__identifier_token] = ACTIONS(3814), + [anon_sym_alias] = ACTIONS(3816), + [anon_sym_global] = ACTIONS(3816), + [anon_sym_LBRACK] = ACTIONS(5713), + [anon_sym_LPAREN] = ACTIONS(5715), + [anon_sym_ref] = ACTIONS(4201), + [anon_sym_LBRACE] = ACTIONS(5717), + [anon_sym_delegate] = ACTIONS(5719), + [anon_sym_file] = ACTIONS(3816), + [anon_sym_where] = ACTIONS(3816), + [anon_sym_notnull] = ACTIONS(3816), + [anon_sym_unmanaged] = ACTIONS(3816), + [anon_sym_scoped] = ACTIONS(5831), + [anon_sym_var] = ACTIONS(5723), + [sym_predefined_type] = ACTIONS(5725), + [anon_sym_yield] = ACTIONS(3816), + [anon_sym_when] = ACTIONS(3816), + [anon_sym_from] = ACTIONS(3816), + [anon_sym_into] = ACTIONS(3816), + [anon_sym_join] = ACTIONS(3816), + [anon_sym_on] = ACTIONS(3816), + [anon_sym_equals] = ACTIONS(3816), + [anon_sym_let] = ACTIONS(3816), + [anon_sym_orderby] = ACTIONS(3816), + [anon_sym_ascending] = ACTIONS(3816), + [anon_sym_descending] = ACTIONS(3816), + [anon_sym_group] = ACTIONS(3816), + [anon_sym_by] = ACTIONS(3816), + [anon_sym_select] = ACTIONS(3816), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -514615,8 +514064,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3611] = { - [sym_identifier] = STATE(7355), - [sym__reserved_identifier] = STATE(2175), + [sym_argument_list] = STATE(3771), + [sym_bracketed_argument_list] = STATE(2892), [sym_preproc_region] = STATE(3611), [sym_preproc_endregion] = STATE(3611), [sym_preproc_line] = STATE(3611), @@ -514626,52 +514075,52 @@ 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(5801), - [anon_sym_extern] = ACTIONS(3482), - [anon_sym_alias] = ACTIONS(5805), - [anon_sym_global] = ACTIONS(5805), - [anon_sym_unsafe] = ACTIONS(5809), - [anon_sym_static] = ACTIONS(5809), - [anon_sym_LPAREN] = ACTIONS(5084), - [anon_sym_ref] = ACTIONS(3482), - [anon_sym_delegate] = ACTIONS(3482), - [anon_sym_abstract] = ACTIONS(3482), - [anon_sym_async] = ACTIONS(3482), - [anon_sym_const] = ACTIONS(3482), - [anon_sym_file] = ACTIONS(5805), - [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(5805), - [anon_sym_notnull] = ACTIONS(5805), - [anon_sym_unmanaged] = ACTIONS(5805), - [anon_sym_scoped] = ACTIONS(5805), - [anon_sym_var] = ACTIONS(5805), - [sym_predefined_type] = ACTIONS(3482), - [anon_sym_yield] = ACTIONS(5805), - [anon_sym_when] = ACTIONS(5805), - [anon_sym_from] = ACTIONS(5805), - [anon_sym_into] = ACTIONS(5805), - [anon_sym_join] = ACTIONS(5805), - [anon_sym_on] = ACTIONS(5805), - [anon_sym_equals] = ACTIONS(5805), - [anon_sym_let] = ACTIONS(5805), - [anon_sym_orderby] = ACTIONS(5805), - [anon_sym_ascending] = ACTIONS(5805), - [anon_sym_descending] = ACTIONS(5805), - [anon_sym_group] = ACTIONS(5805), - [anon_sym_by] = ACTIONS(5805), - [anon_sym_select] = ACTIONS(5805), + [anon_sym_LBRACK] = ACTIONS(5650), + [anon_sym_COMMA] = ACTIONS(5737), + [anon_sym_LPAREN] = ACTIONS(5591), + [anon_sym_LT] = ACTIONS(5654), + [anon_sym_GT] = ACTIONS(5654), + [anon_sym_where] = ACTIONS(5737), + [anon_sym_QMARK] = ACTIONS(5739), + [anon_sym_BANG] = ACTIONS(5658), + [anon_sym_PLUS_PLUS] = ACTIONS(5660), + [anon_sym_DASH_DASH] = ACTIONS(5660), + [anon_sym_PLUS] = ACTIONS(5662), + [anon_sym_DASH] = ACTIONS(5662), + [anon_sym_STAR] = ACTIONS(5664), + [anon_sym_SLASH] = ACTIONS(5666), + [anon_sym_PERCENT] = ACTIONS(5664), + [anon_sym_CARET] = ACTIONS(5668), + [anon_sym_PIPE] = ACTIONS(5670), + [anon_sym_AMP] = ACTIONS(5672), + [anon_sym_LT_LT] = ACTIONS(5674), + [anon_sym_GT_GT] = ACTIONS(5676), + [anon_sym_GT_GT_GT] = ACTIONS(5674), + [anon_sym_EQ_EQ] = ACTIONS(5678), + [anon_sym_BANG_EQ] = ACTIONS(5678), + [anon_sym_GT_EQ] = ACTIONS(5680), + [anon_sym_LT_EQ] = ACTIONS(5680), + [anon_sym_DOT] = ACTIONS(4697), + [anon_sym_switch] = ACTIONS(5682), + [anon_sym_DOT_DOT] = ACTIONS(5684), + [anon_sym_and] = ACTIONS(5737), + [anon_sym_or] = ACTIONS(5739), + [anon_sym_AMP_AMP] = ACTIONS(5688), + [anon_sym_PIPE_PIPE] = ACTIONS(5690), + [anon_sym_QMARK_QMARK] = ACTIONS(5692), + [anon_sym_from] = ACTIONS(5737), + [anon_sym_into] = ACTIONS(5737), + [anon_sym_join] = ACTIONS(5737), + [anon_sym_let] = ACTIONS(5737), + [anon_sym_orderby] = ACTIONS(5737), + [anon_sym_ascending] = ACTIONS(5737), + [anon_sym_descending] = ACTIONS(5737), + [anon_sym_group] = ACTIONS(5737), + [anon_sym_select] = ACTIONS(5737), + [anon_sym_as] = ACTIONS(5694), + [anon_sym_is] = ACTIONS(5696), + [anon_sym_DASH_GT] = ACTIONS(4699), + [anon_sym_with] = ACTIONS(5698), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -514684,25 +514133,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3612] = { - [sym_argument_list] = STATE(3193), - [sym__name] = STATE(3453), - [sym_alias_qualified_name] = STATE(3251), - [sym__simple_name] = STATE(3251), - [sym_qualified_name] = STATE(3251), - [sym_generic_name] = STATE(3246), - [sym_type] = STATE(3132), - [sym_implicit_type] = STATE(3253), - [sym_array_type] = STATE(3356), - [sym__array_base_type] = STATE(7101), - [sym_nullable_type] = STATE(3257), - [sym_pointer_type] = STATE(3257), - [sym__pointer_base_type] = STATE(7546), - [sym_function_pointer_type] = STATE(3257), - [sym_ref_type] = STATE(3253), - [sym_scoped_type] = STATE(3253), - [sym_tuple_type] = STATE(3258), - [sym_identifier] = STATE(3167), - [sym__reserved_identifier] = STATE(3225), [sym_preproc_region] = STATE(3612), [sym_preproc_endregion] = STATE(3612), [sym_preproc_line] = STATE(3612), @@ -514712,35 +514142,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), - [sym__identifier_token] = ACTIONS(3788), - [anon_sym_alias] = ACTIONS(3790), - [anon_sym_global] = ACTIONS(3790), - [anon_sym_LBRACK] = ACTIONS(5812), - [anon_sym_LPAREN] = ACTIONS(5814), - [anon_sym_ref] = ACTIONS(3792), - [anon_sym_LBRACE] = ACTIONS(5816), - [anon_sym_delegate] = ACTIONS(5818), - [anon_sym_file] = ACTIONS(3790), - [anon_sym_where] = ACTIONS(3790), - [anon_sym_notnull] = ACTIONS(3790), - [anon_sym_unmanaged] = ACTIONS(3790), - [anon_sym_scoped] = ACTIONS(5820), - [anon_sym_var] = ACTIONS(5822), - [sym_predefined_type] = ACTIONS(5824), - [anon_sym_yield] = ACTIONS(3790), - [anon_sym_when] = ACTIONS(3790), - [anon_sym_from] = ACTIONS(3790), - [anon_sym_into] = ACTIONS(3790), - [anon_sym_join] = ACTIONS(3790), - [anon_sym_on] = ACTIONS(3790), - [anon_sym_equals] = ACTIONS(3790), - [anon_sym_let] = ACTIONS(3790), - [anon_sym_orderby] = ACTIONS(3790), - [anon_sym_ascending] = ACTIONS(3790), - [anon_sym_descending] = ACTIONS(3790), - [anon_sym_group] = ACTIONS(3790), - [anon_sym_by] = ACTIONS(3790), - [anon_sym_select] = ACTIONS(3790), + [sym__identifier_token] = ACTIONS(4665), + [anon_sym_extern] = ACTIONS(4665), + [anon_sym_alias] = ACTIONS(4665), + [anon_sym_global] = ACTIONS(4665), + [anon_sym_unsafe] = ACTIONS(4665), + [anon_sym_static] = ACTIONS(4665), + [anon_sym_LBRACK] = ACTIONS(4667), + [anon_sym_LPAREN] = ACTIONS(4667), + [anon_sym_ref] = ACTIONS(4665), + [anon_sym_delegate] = 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_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_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -514753,25 +514202,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3613] = { - [sym_argument_list] = STATE(2905), - [sym__name] = STATE(3534), - [sym_alias_qualified_name] = STATE(2921), - [sym__simple_name] = STATE(2921), - [sym_qualified_name] = STATE(2921), - [sym_generic_name] = STATE(2929), - [sym_type] = STATE(2891), - [sym_implicit_type] = STATE(2935), - [sym_array_type] = STATE(3484), - [sym__array_base_type] = STATE(7122), - [sym_nullable_type] = STATE(2961), - [sym_pointer_type] = STATE(2961), - [sym__pointer_base_type] = STATE(7545), - [sym_function_pointer_type] = STATE(2961), - [sym_ref_type] = STATE(2935), - [sym_scoped_type] = STATE(2935), - [sym_tuple_type] = STATE(2944), - [sym_identifier] = STATE(3260), - [sym__reserved_identifier] = STATE(2904), + [sym_argument_list] = STATE(3771), + [sym_bracketed_argument_list] = STATE(2892), [sym_preproc_region] = STATE(3613), [sym_preproc_endregion] = STATE(3613), [sym_preproc_line] = STATE(3613), @@ -514781,35 +514213,52 @@ 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), - [sym__identifier_token] = ACTIONS(3861), - [anon_sym_alias] = ACTIONS(3863), - [anon_sym_global] = ACTIONS(3863), - [anon_sym_LBRACK] = ACTIONS(5785), - [anon_sym_LPAREN] = ACTIONS(5787), - [anon_sym_ref] = ACTIONS(3865), - [anon_sym_LBRACE] = ACTIONS(5789), - [anon_sym_delegate] = ACTIONS(5791), - [anon_sym_file] = ACTIONS(3863), - [anon_sym_where] = ACTIONS(3863), - [anon_sym_notnull] = ACTIONS(3863), - [anon_sym_unmanaged] = ACTIONS(3863), - [anon_sym_scoped] = ACTIONS(5826), - [anon_sym_var] = ACTIONS(5795), - [sym_predefined_type] = ACTIONS(5797), - [anon_sym_yield] = ACTIONS(3863), - [anon_sym_when] = ACTIONS(3863), - [anon_sym_from] = ACTIONS(3863), - [anon_sym_into] = ACTIONS(3863), - [anon_sym_join] = ACTIONS(3863), - [anon_sym_on] = ACTIONS(3863), - [anon_sym_equals] = ACTIONS(3863), - [anon_sym_let] = ACTIONS(3863), - [anon_sym_orderby] = ACTIONS(3863), - [anon_sym_ascending] = ACTIONS(3863), - [anon_sym_descending] = ACTIONS(3863), - [anon_sym_group] = ACTIONS(3863), - [anon_sym_by] = ACTIONS(3863), - [anon_sym_select] = ACTIONS(3863), + [anon_sym_LBRACK] = ACTIONS(5650), + [anon_sym_COMMA] = ACTIONS(4996), + [anon_sym_LPAREN] = ACTIONS(5591), + [anon_sym_LT] = ACTIONS(5654), + [anon_sym_GT] = ACTIONS(5654), + [anon_sym_where] = ACTIONS(4996), + [anon_sym_QMARK] = ACTIONS(5656), + [anon_sym_BANG] = ACTIONS(5658), + [anon_sym_PLUS_PLUS] = ACTIONS(5660), + [anon_sym_DASH_DASH] = ACTIONS(5660), + [anon_sym_PLUS] = ACTIONS(5662), + [anon_sym_DASH] = ACTIONS(5662), + [anon_sym_STAR] = ACTIONS(5664), + [anon_sym_SLASH] = ACTIONS(5666), + [anon_sym_PERCENT] = ACTIONS(5664), + [anon_sym_CARET] = ACTIONS(5668), + [anon_sym_PIPE] = ACTIONS(5670), + [anon_sym_AMP] = ACTIONS(5672), + [anon_sym_LT_LT] = ACTIONS(5674), + [anon_sym_GT_GT] = ACTIONS(5676), + [anon_sym_GT_GT_GT] = ACTIONS(5674), + [anon_sym_EQ_EQ] = ACTIONS(5678), + [anon_sym_BANG_EQ] = ACTIONS(5678), + [anon_sym_GT_EQ] = ACTIONS(5680), + [anon_sym_LT_EQ] = ACTIONS(5680), + [anon_sym_DOT] = ACTIONS(4697), + [anon_sym_switch] = ACTIONS(5682), + [anon_sym_DOT_DOT] = ACTIONS(5684), + [anon_sym_and] = ACTIONS(4996), + [anon_sym_or] = ACTIONS(4998), + [anon_sym_AMP_AMP] = ACTIONS(5688), + [anon_sym_PIPE_PIPE] = ACTIONS(5690), + [anon_sym_QMARK_QMARK] = ACTIONS(5692), + [anon_sym_from] = ACTIONS(4996), + [anon_sym_into] = ACTIONS(4996), + [anon_sym_join] = ACTIONS(4996), + [anon_sym_let] = ACTIONS(4996), + [anon_sym_orderby] = ACTIONS(4996), + [anon_sym_ascending] = ACTIONS(4996), + [anon_sym_descending] = ACTIONS(4996), + [anon_sym_group] = ACTIONS(4996), + [anon_sym_select] = ACTIONS(4996), + [anon_sym_as] = ACTIONS(5694), + [anon_sym_is] = ACTIONS(5696), + [anon_sym_DASH_GT] = ACTIONS(4699), + [anon_sym_with] = ACTIONS(5698), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -514822,24 +514271,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3614] = { - [sym__name] = STATE(6450), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(4096), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(4109), - [sym_type] = STATE(6999), - [sym_implicit_type] = STATE(7266), - [sym_array_type] = STATE(6694), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7446), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(7266), - [sym_scoped_type] = STATE(7266), - [sym_tuple_type] = STATE(6579), - [sym_identifier] = STATE(4087), - [sym__reserved_identifier] = STATE(3691), + [sym__name] = STATE(6400), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(4068), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(4073), + [sym_type] = STATE(6983), + [sym_implicit_type] = STATE(7035), + [sym_array_type] = STATE(6706), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7421), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(7035), + [sym_scoped_type] = STATE(7035), + [sym_tuple_type] = STATE(6601), + [sym_identifier] = STATE(4081), + [sym__reserved_identifier] = STATE(3654), [sym_preproc_region] = STATE(3614), [sym_preproc_endregion] = STATE(3614), [sym_preproc_line] = STATE(3614), @@ -514849,36 +514298,36 @@ 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), - [aux_sym_type_argument_list_repeat1] = STATE(7000), - [sym__identifier_token] = ACTIONS(2967), - [anon_sym_alias] = ACTIONS(2971), - [anon_sym_global] = ACTIONS(2971), - [anon_sym_COMMA] = ACTIONS(5026), - [anon_sym_LPAREN] = ACTIONS(2979), - [anon_sym_ref] = ACTIONS(5028), - [anon_sym_delegate] = ACTIONS(5030), - [anon_sym_file] = ACTIONS(2971), - [anon_sym_GT] = ACTIONS(5828), - [anon_sym_where] = ACTIONS(2971), - [anon_sym_notnull] = ACTIONS(2971), - [anon_sym_unmanaged] = ACTIONS(2971), - [anon_sym_scoped] = ACTIONS(5036), - [anon_sym_var] = ACTIONS(4737), - [sym_predefined_type] = ACTIONS(5038), - [anon_sym_yield] = ACTIONS(2971), - [anon_sym_when] = ACTIONS(2971), - [anon_sym_from] = ACTIONS(2971), - [anon_sym_into] = ACTIONS(2971), - [anon_sym_join] = ACTIONS(2971), - [anon_sym_on] = ACTIONS(2971), - [anon_sym_equals] = ACTIONS(2971), - [anon_sym_let] = ACTIONS(2971), - [anon_sym_orderby] = ACTIONS(2971), - [anon_sym_ascending] = ACTIONS(2971), - [anon_sym_descending] = ACTIONS(2971), - [anon_sym_group] = ACTIONS(2971), - [anon_sym_by] = ACTIONS(2971), - [anon_sym_select] = ACTIONS(2971), + [aux_sym_type_argument_list_repeat1] = STATE(6985), + [sym__identifier_token] = ACTIONS(2965), + [anon_sym_alias] = ACTIONS(2969), + [anon_sym_global] = ACTIONS(2969), + [anon_sym_COMMA] = ACTIONS(5168), + [anon_sym_LPAREN] = ACTIONS(2977), + [anon_sym_ref] = ACTIONS(5170), + [anon_sym_delegate] = ACTIONS(5172), + [anon_sym_file] = ACTIONS(2969), + [anon_sym_GT] = ACTIONS(5833), + [anon_sym_where] = ACTIONS(2969), + [anon_sym_notnull] = ACTIONS(2969), + [anon_sym_unmanaged] = ACTIONS(2969), + [anon_sym_scoped] = ACTIONS(5178), + [anon_sym_var] = ACTIONS(4705), + [sym_predefined_type] = ACTIONS(5180), + [anon_sym_yield] = ACTIONS(2969), + [anon_sym_when] = ACTIONS(2969), + [anon_sym_from] = ACTIONS(2969), + [anon_sym_into] = ACTIONS(2969), + [anon_sym_join] = ACTIONS(2969), + [anon_sym_on] = ACTIONS(2969), + [anon_sym_equals] = ACTIONS(2969), + [anon_sym_let] = ACTIONS(2969), + [anon_sym_orderby] = ACTIONS(2969), + [anon_sym_ascending] = ACTIONS(2969), + [anon_sym_descending] = ACTIONS(2969), + [anon_sym_group] = ACTIONS(2969), + [anon_sym_by] = ACTIONS(2969), + [anon_sym_select] = ACTIONS(2969), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -514891,25 +514340,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3615] = { - [sym_argument_list] = STATE(3193), - [sym__name] = STATE(5231), - [sym_alias_qualified_name] = STATE(3251), - [sym__simple_name] = STATE(3251), - [sym_qualified_name] = STATE(3251), - [sym_generic_name] = STATE(3246), - [sym_type] = STATE(3132), - [sym_implicit_type] = STATE(3253), - [sym_array_type] = STATE(4914), - [sym__array_base_type] = STATE(7101), - [sym_nullable_type] = STATE(3257), - [sym_pointer_type] = STATE(3257), - [sym__pointer_base_type] = STATE(7546), - [sym_function_pointer_type] = STATE(3257), - [sym_ref_type] = STATE(3253), - [sym_scoped_type] = STATE(3253), - [sym_tuple_type] = STATE(3258), - [sym_identifier] = STATE(4654), - [sym__reserved_identifier] = STATE(3225), + [sym__name] = STATE(6400), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(4068), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(4073), + [sym_type] = STATE(6956), + [sym_implicit_type] = STATE(7035), + [sym_array_type] = STATE(6706), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7421), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(7035), + [sym_scoped_type] = STATE(7035), + [sym_tuple_type] = STATE(6601), + [sym_identifier] = STATE(4081), + [sym__reserved_identifier] = STATE(3654), [sym_preproc_region] = STATE(3615), [sym_preproc_endregion] = STATE(3615), [sym_preproc_line] = STATE(3615), @@ -514919,35 +514367,36 @@ 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), - [sym__identifier_token] = ACTIONS(3788), - [anon_sym_alias] = ACTIONS(3790), - [anon_sym_global] = ACTIONS(3790), - [anon_sym_LBRACK] = ACTIONS(5812), - [anon_sym_LPAREN] = ACTIONS(5814), - [anon_sym_ref] = ACTIONS(4064), - [anon_sym_LBRACE] = ACTIONS(5816), - [anon_sym_delegate] = ACTIONS(5818), - [anon_sym_file] = ACTIONS(3790), - [anon_sym_where] = ACTIONS(3790), - [anon_sym_notnull] = ACTIONS(3790), - [anon_sym_unmanaged] = ACTIONS(3790), - [anon_sym_scoped] = ACTIONS(5830), - [anon_sym_var] = ACTIONS(5822), - [sym_predefined_type] = ACTIONS(5824), - [anon_sym_yield] = ACTIONS(3790), - [anon_sym_when] = ACTIONS(3790), - [anon_sym_from] = ACTIONS(3790), - [anon_sym_into] = ACTIONS(3790), - [anon_sym_join] = ACTIONS(3790), - [anon_sym_on] = ACTIONS(3790), - [anon_sym_equals] = ACTIONS(3790), - [anon_sym_let] = ACTIONS(3790), - [anon_sym_orderby] = ACTIONS(3790), - [anon_sym_ascending] = ACTIONS(3790), - [anon_sym_descending] = ACTIONS(3790), - [anon_sym_group] = ACTIONS(3790), - [anon_sym_by] = ACTIONS(3790), - [anon_sym_select] = ACTIONS(3790), + [aux_sym_type_argument_list_repeat1] = STATE(6957), + [sym__identifier_token] = ACTIONS(2965), + [anon_sym_alias] = ACTIONS(2969), + [anon_sym_global] = ACTIONS(2969), + [anon_sym_COMMA] = ACTIONS(5168), + [anon_sym_LPAREN] = ACTIONS(2977), + [anon_sym_ref] = ACTIONS(5170), + [anon_sym_delegate] = ACTIONS(5172), + [anon_sym_file] = ACTIONS(2969), + [anon_sym_GT] = ACTIONS(5835), + [anon_sym_where] = ACTIONS(2969), + [anon_sym_notnull] = ACTIONS(2969), + [anon_sym_unmanaged] = ACTIONS(2969), + [anon_sym_scoped] = ACTIONS(5178), + [anon_sym_var] = ACTIONS(4705), + [sym_predefined_type] = ACTIONS(5180), + [anon_sym_yield] = ACTIONS(2969), + [anon_sym_when] = ACTIONS(2969), + [anon_sym_from] = ACTIONS(2969), + [anon_sym_into] = ACTIONS(2969), + [anon_sym_join] = ACTIONS(2969), + [anon_sym_on] = ACTIONS(2969), + [anon_sym_equals] = ACTIONS(2969), + [anon_sym_let] = ACTIONS(2969), + [anon_sym_orderby] = ACTIONS(2969), + [anon_sym_ascending] = ACTIONS(2969), + [anon_sym_descending] = ACTIONS(2969), + [anon_sym_group] = ACTIONS(2969), + [anon_sym_by] = ACTIONS(2969), + [anon_sym_select] = ACTIONS(2969), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -514969,54 +514418,54 @@ 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(5482), - [anon_sym_LBRACK] = ACTIONS(4860), - [anon_sym_COMMA] = ACTIONS(4860), - [anon_sym_LPAREN] = ACTIONS(4860), - [anon_sym_RPAREN] = ACTIONS(5832), - [anon_sym_LT] = ACTIONS(4862), - [anon_sym_GT] = ACTIONS(4862), - [anon_sym_QMARK] = ACTIONS(4862), - [anon_sym_BANG] = ACTIONS(4862), - [anon_sym_PLUS_PLUS] = ACTIONS(4860), - [anon_sym_DASH_DASH] = ACTIONS(4860), - [anon_sym_PLUS] = ACTIONS(4862), - [anon_sym_DASH] = ACTIONS(4862), - [anon_sym_STAR] = ACTIONS(4862), - [anon_sym_SLASH] = ACTIONS(4862), - [anon_sym_PERCENT] = ACTIONS(4862), - [anon_sym_CARET] = ACTIONS(4862), - [anon_sym_PIPE] = ACTIONS(4862), - [anon_sym_AMP] = ACTIONS(4862), - [anon_sym_LT_LT] = ACTIONS(4862), - [anon_sym_GT_GT] = ACTIONS(4862), - [anon_sym_GT_GT_GT] = ACTIONS(4862), - [anon_sym_EQ_EQ] = ACTIONS(4860), - [anon_sym_BANG_EQ] = ACTIONS(4860), - [anon_sym_GT_EQ] = ACTIONS(4860), - [anon_sym_LT_EQ] = ACTIONS(4860), - [anon_sym_DOT] = ACTIONS(4862), - [anon_sym_switch] = ACTIONS(4860), - [anon_sym_DOT_DOT] = ACTIONS(4860), - [anon_sym_PLUS_EQ] = ACTIONS(5484), - [anon_sym_DASH_EQ] = ACTIONS(5484), - [anon_sym_STAR_EQ] = ACTIONS(5484), - [anon_sym_SLASH_EQ] = ACTIONS(5484), - [anon_sym_PERCENT_EQ] = ACTIONS(5484), - [anon_sym_AMP_EQ] = ACTIONS(5484), - [anon_sym_CARET_EQ] = ACTIONS(5484), - [anon_sym_PIPE_EQ] = ACTIONS(5484), - [anon_sym_LT_LT_EQ] = ACTIONS(5484), - [anon_sym_GT_GT_EQ] = ACTIONS(5484), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(5484), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(5484), - [anon_sym_AMP_AMP] = ACTIONS(4860), - [anon_sym_PIPE_PIPE] = ACTIONS(4860), - [anon_sym_QMARK_QMARK] = ACTIONS(4862), - [anon_sym_as] = ACTIONS(4860), - [anon_sym_is] = ACTIONS(4860), - [anon_sym_DASH_GT] = ACTIONS(4860), - [anon_sym_with] = ACTIONS(4860), + [anon_sym_EQ] = ACTIONS(5520), + [anon_sym_LBRACK] = ACTIONS(4811), + [anon_sym_COMMA] = ACTIONS(4811), + [anon_sym_LPAREN] = ACTIONS(4811), + [anon_sym_RPAREN] = ACTIONS(5600), + [anon_sym_LT] = ACTIONS(4813), + [anon_sym_GT] = ACTIONS(4813), + [anon_sym_QMARK] = ACTIONS(4813), + [anon_sym_BANG] = ACTIONS(4813), + [anon_sym_PLUS_PLUS] = ACTIONS(4811), + [anon_sym_DASH_DASH] = ACTIONS(4811), + [anon_sym_PLUS] = ACTIONS(4813), + [anon_sym_DASH] = ACTIONS(4813), + [anon_sym_STAR] = ACTIONS(4813), + [anon_sym_SLASH] = ACTIONS(4813), + [anon_sym_PERCENT] = ACTIONS(4813), + [anon_sym_CARET] = ACTIONS(4813), + [anon_sym_PIPE] = ACTIONS(4813), + [anon_sym_AMP] = ACTIONS(4813), + [anon_sym_LT_LT] = ACTIONS(4813), + [anon_sym_GT_GT] = ACTIONS(4813), + [anon_sym_GT_GT_GT] = ACTIONS(4813), + [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(4813), + [anon_sym_switch] = ACTIONS(4811), + [anon_sym_DOT_DOT] = ACTIONS(4811), + [anon_sym_PLUS_EQ] = ACTIONS(5522), + [anon_sym_DASH_EQ] = ACTIONS(5522), + [anon_sym_STAR_EQ] = ACTIONS(5522), + [anon_sym_SLASH_EQ] = ACTIONS(5522), + [anon_sym_PERCENT_EQ] = ACTIONS(5522), + [anon_sym_AMP_EQ] = ACTIONS(5522), + [anon_sym_CARET_EQ] = ACTIONS(5522), + [anon_sym_PIPE_EQ] = ACTIONS(5522), + [anon_sym_LT_LT_EQ] = ACTIONS(5522), + [anon_sym_GT_GT_EQ] = ACTIONS(5522), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(5522), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(5522), + [anon_sym_AMP_AMP] = ACTIONS(4811), + [anon_sym_PIPE_PIPE] = ACTIONS(4811), + [anon_sym_QMARK_QMARK] = ACTIONS(4813), + [anon_sym_as] = ACTIONS(4811), + [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), @@ -515029,24 +514478,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3617] = { - [sym__name] = STATE(6450), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(4096), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(4109), - [sym_type] = STATE(7020), - [sym_implicit_type] = STATE(7266), - [sym_array_type] = STATE(6694), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7446), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(7266), - [sym_scoped_type] = STATE(7266), - [sym_tuple_type] = STATE(6579), - [sym_identifier] = STATE(4087), - [sym__reserved_identifier] = STATE(3691), [sym_preproc_region] = STATE(3617), [sym_preproc_endregion] = STATE(3617), [sym_preproc_line] = STATE(3617), @@ -515056,36 +514487,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), - [aux_sym_type_argument_list_repeat1] = STATE(7022), - [sym__identifier_token] = ACTIONS(2967), - [anon_sym_alias] = ACTIONS(2971), - [anon_sym_global] = ACTIONS(2971), - [anon_sym_COMMA] = ACTIONS(5026), - [anon_sym_LPAREN] = ACTIONS(2979), - [anon_sym_ref] = ACTIONS(5028), - [anon_sym_delegate] = ACTIONS(5030), - [anon_sym_file] = ACTIONS(2971), - [anon_sym_GT] = ACTIONS(5834), - [anon_sym_where] = ACTIONS(2971), - [anon_sym_notnull] = ACTIONS(2971), - [anon_sym_unmanaged] = ACTIONS(2971), - [anon_sym_scoped] = ACTIONS(5036), - [anon_sym_var] = ACTIONS(4737), - [sym_predefined_type] = ACTIONS(5038), - [anon_sym_yield] = ACTIONS(2971), - [anon_sym_when] = ACTIONS(2971), - [anon_sym_from] = ACTIONS(2971), - [anon_sym_into] = ACTIONS(2971), - [anon_sym_join] = ACTIONS(2971), - [anon_sym_on] = ACTIONS(2971), - [anon_sym_equals] = ACTIONS(2971), - [anon_sym_let] = ACTIONS(2971), - [anon_sym_orderby] = ACTIONS(2971), - [anon_sym_ascending] = ACTIONS(2971), - [anon_sym_descending] = ACTIONS(2971), - [anon_sym_group] = ACTIONS(2971), - [anon_sym_by] = ACTIONS(2971), - [anon_sym_select] = ACTIONS(2971), + [anon_sym_EQ] = ACTIONS(5837), + [anon_sym_LBRACK] = ACTIONS(4811), + [anon_sym_LPAREN] = ACTIONS(4811), + [anon_sym_LT] = ACTIONS(4813), + [anon_sym_GT] = ACTIONS(4813), + [anon_sym_QMARK] = ACTIONS(4813), + [anon_sym_BANG] = ACTIONS(4813), + [anon_sym_PLUS_PLUS] = ACTIONS(4811), + [anon_sym_DASH_DASH] = ACTIONS(4811), + [anon_sym_PLUS] = ACTIONS(4813), + [anon_sym_DASH] = ACTIONS(4813), + [anon_sym_STAR] = ACTIONS(4813), + [anon_sym_SLASH] = ACTIONS(4813), + [anon_sym_PERCENT] = ACTIONS(4813), + [anon_sym_CARET] = ACTIONS(4813), + [anon_sym_PIPE] = ACTIONS(4813), + [anon_sym_AMP] = ACTIONS(4813), + [anon_sym_LT_LT] = ACTIONS(4813), + [anon_sym_GT_GT] = ACTIONS(4813), + [anon_sym_GT_GT_GT] = ACTIONS(4813), + [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(4813), + [anon_sym_switch] = ACTIONS(4811), + [anon_sym_DOT_DOT] = ACTIONS(4811), + [anon_sym_PLUS_EQ] = ACTIONS(5839), + [anon_sym_DASH_EQ] = ACTIONS(5839), + [anon_sym_STAR_EQ] = ACTIONS(5839), + [anon_sym_SLASH_EQ] = ACTIONS(5839), + [anon_sym_PERCENT_EQ] = ACTIONS(5839), + [anon_sym_AMP_EQ] = ACTIONS(5839), + [anon_sym_CARET_EQ] = ACTIONS(5839), + [anon_sym_PIPE_EQ] = ACTIONS(5839), + [anon_sym_LT_LT_EQ] = ACTIONS(5839), + [anon_sym_GT_GT_EQ] = ACTIONS(5839), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(5839), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(5839), + [anon_sym_AMP_AMP] = ACTIONS(4811), + [anon_sym_PIPE_PIPE] = ACTIONS(4811), + [anon_sym_QMARK_QMARK] = ACTIONS(4813), + [anon_sym_into] = ACTIONS(4811), + [anon_sym_equals] = 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_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -515098,8 +514547,25 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3618] = { - [sym_argument_list] = STATE(3886), - [sym_bracketed_argument_list] = STATE(2902), + [sym_argument_list] = STATE(2895), + [sym__name] = STATE(3511), + [sym_alias_qualified_name] = STATE(2907), + [sym__simple_name] = STATE(2907), + [sym_qualified_name] = STATE(2907), + [sym_generic_name] = STATE(2950), + [sym_type] = STATE(2871), + [sym_implicit_type] = STATE(2926), + [sym_array_type] = STATE(3500), + [sym__array_base_type] = STATE(7061), + [sym_nullable_type] = STATE(2942), + [sym_pointer_type] = STATE(2942), + [sym__pointer_base_type] = STATE(7640), + [sym_function_pointer_type] = STATE(2942), + [sym_ref_type] = STATE(2926), + [sym_scoped_type] = STATE(2926), + [sym_tuple_type] = STATE(2943), + [sym_identifier] = STATE(3317), + [sym__reserved_identifier] = STATE(2900), [sym_preproc_region] = STATE(3618), [sym_preproc_endregion] = STATE(3618), [sym_preproc_line] = STATE(3618), @@ -515109,52 +514575,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(5658), - [anon_sym_COMMA] = ACTIONS(1221), - [anon_sym_LPAREN] = ACTIONS(5624), - [anon_sym_LT] = ACTIONS(1223), - [anon_sym_GT] = ACTIONS(1223), - [anon_sym_where] = ACTIONS(1221), - [anon_sym_QMARK] = ACTIONS(1223), - [anon_sym_BANG] = ACTIONS(5666), - [anon_sym_PLUS_PLUS] = ACTIONS(5668), - [anon_sym_DASH_DASH] = ACTIONS(5668), - [anon_sym_PLUS] = ACTIONS(1223), - [anon_sym_DASH] = ACTIONS(1223), - [anon_sym_STAR] = ACTIONS(1221), - [anon_sym_SLASH] = ACTIONS(1223), - [anon_sym_PERCENT] = ACTIONS(1221), - [anon_sym_CARET] = ACTIONS(1221), - [anon_sym_PIPE] = ACTIONS(1223), - [anon_sym_AMP] = ACTIONS(1223), - [anon_sym_LT_LT] = ACTIONS(1221), - [anon_sym_GT_GT] = ACTIONS(1223), - [anon_sym_GT_GT_GT] = ACTIONS(1221), - [anon_sym_EQ_EQ] = ACTIONS(1221), - [anon_sym_BANG_EQ] = ACTIONS(1221), - [anon_sym_GT_EQ] = ACTIONS(1221), - [anon_sym_LT_EQ] = ACTIONS(1221), - [anon_sym_DOT] = ACTIONS(4733), - [anon_sym_switch] = ACTIONS(1221), - [anon_sym_DOT_DOT] = ACTIONS(5690), - [anon_sym_and] = ACTIONS(1221), - [anon_sym_or] = ACTIONS(1223), - [anon_sym_AMP_AMP] = ACTIONS(1221), - [anon_sym_PIPE_PIPE] = ACTIONS(1221), - [anon_sym_QMARK_QMARK] = ACTIONS(1221), - [anon_sym_from] = ACTIONS(1221), - [anon_sym_into] = ACTIONS(1221), - [anon_sym_join] = ACTIONS(1221), - [anon_sym_let] = ACTIONS(1221), - [anon_sym_orderby] = ACTIONS(1221), - [anon_sym_ascending] = ACTIONS(1221), - [anon_sym_descending] = ACTIONS(1221), - [anon_sym_group] = ACTIONS(1221), - [anon_sym_select] = ACTIONS(1221), - [anon_sym_as] = ACTIONS(1223), - [anon_sym_is] = ACTIONS(1221), - [anon_sym_DASH_GT] = ACTIONS(4719), - [anon_sym_with] = ACTIONS(1221), + [sym__identifier_token] = ACTIONS(3814), + [anon_sym_alias] = ACTIONS(3816), + [anon_sym_global] = ACTIONS(3816), + [anon_sym_LBRACK] = ACTIONS(5713), + [anon_sym_LPAREN] = ACTIONS(5715), + [anon_sym_ref] = ACTIONS(3818), + [anon_sym_LBRACE] = ACTIONS(5717), + [anon_sym_delegate] = ACTIONS(5719), + [anon_sym_file] = ACTIONS(3816), + [anon_sym_where] = ACTIONS(3816), + [anon_sym_notnull] = ACTIONS(3816), + [anon_sym_unmanaged] = ACTIONS(3816), + [anon_sym_scoped] = ACTIONS(5841), + [anon_sym_var] = ACTIONS(5723), + [sym_predefined_type] = ACTIONS(5725), + [anon_sym_yield] = ACTIONS(3816), + [anon_sym_when] = ACTIONS(3816), + [anon_sym_from] = ACTIONS(3816), + [anon_sym_into] = ACTIONS(3816), + [anon_sym_join] = ACTIONS(3816), + [anon_sym_on] = ACTIONS(3816), + [anon_sym_equals] = ACTIONS(3816), + [anon_sym_let] = ACTIONS(3816), + [anon_sym_orderby] = ACTIONS(3816), + [anon_sym_ascending] = ACTIONS(3816), + [anon_sym_descending] = ACTIONS(3816), + [anon_sym_group] = ACTIONS(3816), + [anon_sym_by] = ACTIONS(3816), + [anon_sym_select] = ACTIONS(3816), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -515167,25 +514616,26 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3619] = { - [sym_argument_list] = STATE(3561), - [sym__name] = STATE(2419), - [sym_alias_qualified_name] = STATE(2373), - [sym__simple_name] = STATE(2373), - [sym_qualified_name] = STATE(2373), - [sym_generic_name] = STATE(2389), - [sym_type] = STATE(3542), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(3574), - [sym__array_base_type] = STATE(7103), - [sym_nullable_type] = STATE(2379), - [sym_pointer_type] = STATE(2379), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(2379), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(2380), - [sym_identifier] = STATE(2359), - [sym__reserved_identifier] = STATE(2361), + [sym_tuple_pattern] = STATE(6980), + [sym__name] = STATE(4369), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(4068), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(4073), + [sym_type] = STATE(5960), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_tuple_element] = STATE(7166), + [sym_identifier] = STATE(5745), + [sym__reserved_identifier] = STATE(3654), [sym_preproc_region] = STATE(3619), [sym_preproc_endregion] = STATE(3619), [sym_preproc_line] = STATE(3619), @@ -515195,35 +514645,34 @@ 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), - [sym__identifier_token] = ACTIONS(4058), - [anon_sym_alias] = ACTIONS(4060), - [anon_sym_global] = ACTIONS(4060), - [anon_sym_LBRACK] = ACTIONS(5630), - [anon_sym_LPAREN] = ACTIONS(5632), - [anon_sym_ref] = ACTIONS(4098), - [anon_sym_LBRACE] = ACTIONS(5634), - [anon_sym_delegate] = ACTIONS(3454), - [anon_sym_file] = ACTIONS(4060), - [anon_sym_where] = ACTIONS(4060), - [anon_sym_notnull] = ACTIONS(4060), - [anon_sym_unmanaged] = ACTIONS(4060), - [anon_sym_scoped] = ACTIONS(5836), - [anon_sym_var] = ACTIONS(5638), - [sym_predefined_type] = ACTIONS(5640), - [anon_sym_yield] = ACTIONS(4060), - [anon_sym_when] = ACTIONS(4060), - [anon_sym_from] = ACTIONS(4060), - [anon_sym_into] = ACTIONS(4060), - [anon_sym_join] = ACTIONS(4060), - [anon_sym_on] = ACTIONS(4060), - [anon_sym_equals] = ACTIONS(4060), - [anon_sym_let] = ACTIONS(4060), - [anon_sym_orderby] = ACTIONS(4060), - [anon_sym_ascending] = ACTIONS(4060), - [anon_sym_descending] = ACTIONS(4060), - [anon_sym_group] = ACTIONS(4060), - [anon_sym_by] = ACTIONS(4060), - [anon_sym_select] = ACTIONS(4060), + [sym__identifier_token] = ACTIONS(2965), + [anon_sym_alias] = ACTIONS(2969), + [anon_sym_global] = ACTIONS(2969), + [anon_sym_LPAREN] = ACTIONS(4685), + [anon_sym_ref] = ACTIONS(3590), + [anon_sym_delegate] = ACTIONS(3438), + [anon_sym_file] = ACTIONS(2969), + [anon_sym_where] = ACTIONS(2969), + [anon_sym_notnull] = ACTIONS(2969), + [anon_sym_unmanaged] = ACTIONS(2969), + [anon_sym_scoped] = ACTIONS(5843), + [anon_sym_var] = ACTIONS(4705), + [sym_predefined_type] = ACTIONS(2997), + [anon_sym_yield] = ACTIONS(2969), + [anon_sym_when] = ACTIONS(2969), + [sym_discard] = ACTIONS(4689), + [anon_sym_from] = ACTIONS(2969), + [anon_sym_into] = ACTIONS(2969), + [anon_sym_join] = ACTIONS(2969), + [anon_sym_on] = ACTIONS(2969), + [anon_sym_equals] = ACTIONS(2969), + [anon_sym_let] = ACTIONS(2969), + [anon_sym_orderby] = ACTIONS(2969), + [anon_sym_ascending] = ACTIONS(2969), + [anon_sym_descending] = ACTIONS(2969), + [anon_sym_group] = ACTIONS(2969), + [anon_sym_by] = ACTIONS(2969), + [anon_sym_select] = ACTIONS(2969), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -515236,25 +514685,25 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3620] = { - [sym_argument_list] = STATE(3193), - [sym__name] = STATE(3453), - [sym_alias_qualified_name] = STATE(3251), - [sym__simple_name] = STATE(3251), - [sym_qualified_name] = STATE(3251), - [sym_generic_name] = STATE(3246), - [sym_type] = STATE(3132), - [sym_implicit_type] = STATE(3253), - [sym_array_type] = STATE(3356), - [sym__array_base_type] = STATE(7101), - [sym_nullable_type] = STATE(3257), - [sym_pointer_type] = STATE(3257), - [sym__pointer_base_type] = STATE(7546), - [sym_function_pointer_type] = STATE(3257), - [sym_ref_type] = STATE(3253), - [sym_scoped_type] = STATE(3253), - [sym_tuple_type] = STATE(3258), - [sym_identifier] = STATE(3167), - [sym__reserved_identifier] = STATE(3225), + [sym_argument_list] = STATE(3575), + [sym__name] = STATE(2411), + [sym_alias_qualified_name] = STATE(2402), + [sym__simple_name] = STATE(2402), + [sym_qualified_name] = STATE(2402), + [sym_generic_name] = STATE(2384), + [sym_type] = STATE(3527), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(3553), + [sym__array_base_type] = STATE(7083), + [sym_nullable_type] = STATE(2375), + [sym_pointer_type] = STATE(2375), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(2375), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(2377), + [sym_identifier] = STATE(2351), + [sym__reserved_identifier] = STATE(2354), [sym_preproc_region] = STATE(3620), [sym_preproc_endregion] = STATE(3620), [sym_preproc_line] = STATE(3620), @@ -515264,35 +514713,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), - [sym__identifier_token] = ACTIONS(3788), - [anon_sym_alias] = ACTIONS(3790), - [anon_sym_global] = ACTIONS(3790), - [anon_sym_LBRACK] = ACTIONS(5812), - [anon_sym_LPAREN] = ACTIONS(5814), - [anon_sym_ref] = ACTIONS(4158), - [anon_sym_LBRACE] = ACTIONS(5816), - [anon_sym_delegate] = ACTIONS(5818), - [anon_sym_file] = ACTIONS(3790), - [anon_sym_where] = ACTIONS(3790), - [anon_sym_notnull] = ACTIONS(3790), - [anon_sym_unmanaged] = ACTIONS(3790), - [anon_sym_scoped] = ACTIONS(5838), - [anon_sym_var] = ACTIONS(5822), - [sym_predefined_type] = ACTIONS(5824), - [anon_sym_yield] = ACTIONS(3790), - [anon_sym_when] = ACTIONS(3790), - [anon_sym_from] = ACTIONS(3790), - [anon_sym_into] = ACTIONS(3790), - [anon_sym_join] = ACTIONS(3790), - [anon_sym_on] = ACTIONS(3790), - [anon_sym_equals] = ACTIONS(3790), - [anon_sym_let] = ACTIONS(3790), - [anon_sym_orderby] = ACTIONS(3790), - [anon_sym_ascending] = ACTIONS(3790), - [anon_sym_descending] = ACTIONS(3790), - [anon_sym_group] = ACTIONS(3790), - [anon_sym_by] = ACTIONS(3790), - [anon_sym_select] = ACTIONS(3790), + [sym__identifier_token] = ACTIONS(4080), + [anon_sym_alias] = ACTIONS(4082), + [anon_sym_global] = ACTIONS(4082), + [anon_sym_LBRACK] = ACTIONS(5809), + [anon_sym_LPAREN] = ACTIONS(5811), + [anon_sym_ref] = ACTIONS(4086), + [anon_sym_LBRACE] = ACTIONS(5813), + [anon_sym_delegate] = ACTIONS(3438), + [anon_sym_file] = ACTIONS(4082), + [anon_sym_where] = ACTIONS(4082), + [anon_sym_notnull] = ACTIONS(4082), + [anon_sym_unmanaged] = ACTIONS(4082), + [anon_sym_scoped] = ACTIONS(5845), + [anon_sym_var] = ACTIONS(5817), + [sym_predefined_type] = ACTIONS(5819), + [anon_sym_yield] = ACTIONS(4082), + [anon_sym_when] = ACTIONS(4082), + [anon_sym_from] = ACTIONS(4082), + [anon_sym_into] = ACTIONS(4082), + [anon_sym_join] = ACTIONS(4082), + [anon_sym_on] = ACTIONS(4082), + [anon_sym_equals] = ACTIONS(4082), + [anon_sym_let] = ACTIONS(4082), + [anon_sym_orderby] = ACTIONS(4082), + [anon_sym_ascending] = ACTIONS(4082), + [anon_sym_descending] = ACTIONS(4082), + [anon_sym_group] = ACTIONS(4082), + [anon_sym_by] = ACTIONS(4082), + [anon_sym_select] = ACTIONS(4082), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -515305,25 +514754,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3621] = { - [sym_argument_list] = STATE(4259), - [sym__name] = STATE(4478), - [sym_alias_qualified_name] = STATE(4464), - [sym__simple_name] = STATE(4464), - [sym_qualified_name] = STATE(4464), - [sym_generic_name] = STATE(4403), - [sym_type] = STATE(4221), - [sym_implicit_type] = STATE(4374), - [sym_array_type] = STATE(4263), - [sym__array_base_type] = STATE(7155), - [sym_nullable_type] = STATE(4467), - [sym_pointer_type] = STATE(4467), - [sym__pointer_base_type] = STATE(7333), - [sym_function_pointer_type] = STATE(4467), - [sym_ref_type] = STATE(4374), - [sym_scoped_type] = STATE(4374), - [sym_tuple_type] = STATE(4469), - [sym_identifier] = STATE(4215), - [sym__reserved_identifier] = STATE(4297), [sym_preproc_region] = STATE(3621), [sym_preproc_endregion] = STATE(3621), [sym_preproc_line] = STATE(3621), @@ -515333,35 +514763,54 @@ 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), - [sym__identifier_token] = ACTIONS(3983), - [anon_sym_alias] = ACTIONS(3985), - [anon_sym_global] = ACTIONS(3985), - [anon_sym_LBRACK] = ACTIONS(5840), - [anon_sym_LPAREN] = ACTIONS(5842), - [anon_sym_ref] = ACTIONS(3987), - [anon_sym_LBRACE] = ACTIONS(5844), - [anon_sym_delegate] = ACTIONS(5846), - [anon_sym_file] = ACTIONS(3985), - [anon_sym_where] = ACTIONS(3985), - [anon_sym_notnull] = ACTIONS(3985), - [anon_sym_unmanaged] = ACTIONS(3985), - [anon_sym_scoped] = ACTIONS(5848), - [anon_sym_var] = ACTIONS(5850), - [sym_predefined_type] = ACTIONS(5852), - [anon_sym_yield] = ACTIONS(3985), - [anon_sym_when] = ACTIONS(3985), - [anon_sym_from] = ACTIONS(3985), - [anon_sym_into] = ACTIONS(3985), - [anon_sym_join] = ACTIONS(3985), - [anon_sym_on] = ACTIONS(3985), - [anon_sym_equals] = ACTIONS(3985), - [anon_sym_let] = ACTIONS(3985), - [anon_sym_orderby] = ACTIONS(3985), - [anon_sym_ascending] = ACTIONS(3985), - [anon_sym_descending] = ACTIONS(3985), - [anon_sym_group] = ACTIONS(3985), - [anon_sym_by] = ACTIONS(3985), - [anon_sym_select] = ACTIONS(3985), + [sym__identifier_token] = ACTIONS(4988), + [anon_sym_extern] = ACTIONS(4988), + [anon_sym_alias] = ACTIONS(4988), + [anon_sym_global] = ACTIONS(4988), + [anon_sym_unsafe] = ACTIONS(4988), + [anon_sym_static] = ACTIONS(4988), + [anon_sym_LBRACK] = ACTIONS(4990), + [anon_sym_LPAREN] = ACTIONS(4990), + [anon_sym_ref] = ACTIONS(4988), + [anon_sym_delegate] = ACTIONS(4988), + [anon_sym_abstract] = ACTIONS(4988), + [anon_sym_async] = ACTIONS(4988), + [anon_sym_const] = ACTIONS(4988), + [anon_sym_file] = ACTIONS(4988), + [anon_sym_fixed] = ACTIONS(4988), + [anon_sym_internal] = ACTIONS(4988), + [anon_sym_new] = ACTIONS(4988), + [anon_sym_override] = ACTIONS(4988), + [anon_sym_partial] = ACTIONS(4988), + [anon_sym_private] = ACTIONS(4988), + [anon_sym_protected] = ACTIONS(4988), + [anon_sym_public] = ACTIONS(4988), + [anon_sym_readonly] = ACTIONS(4988), + [anon_sym_required] = ACTIONS(4988), + [anon_sym_sealed] = ACTIONS(4988), + [anon_sym_virtual] = ACTIONS(4988), + [anon_sym_volatile] = ACTIONS(4988), + [anon_sym_where] = ACTIONS(4988), + [anon_sym_notnull] = ACTIONS(4988), + [anon_sym_unmanaged] = ACTIONS(4988), + [anon_sym_scoped] = ACTIONS(4988), + [anon_sym_var] = ACTIONS(4988), + [sym_predefined_type] = ACTIONS(4988), + [anon_sym_yield] = ACTIONS(4988), + [anon_sym_when] = ACTIONS(4988), + [anon_sym_from] = ACTIONS(4988), + [anon_sym_into] = ACTIONS(4988), + [anon_sym_join] = ACTIONS(4988), + [anon_sym_on] = ACTIONS(4988), + [anon_sym_equals] = ACTIONS(4988), + [anon_sym_let] = ACTIONS(4988), + [anon_sym_orderby] = ACTIONS(4988), + [anon_sym_ascending] = ACTIONS(4988), + [anon_sym_descending] = ACTIONS(4988), + [anon_sym_group] = ACTIONS(4988), + [anon_sym_by] = ACTIONS(4988), + [anon_sym_select] = ACTIONS(4988), + [aux_sym_preproc_if_token1] = ACTIONS(4990), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -515374,25 +514823,25 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3622] = { - [sym_argument_list] = STATE(3193), - [sym__name] = STATE(3453), - [sym_alias_qualified_name] = STATE(3251), - [sym__simple_name] = STATE(3251), - [sym_qualified_name] = STATE(3251), - [sym_generic_name] = STATE(3246), - [sym_type] = STATE(3132), - [sym_implicit_type] = STATE(3253), - [sym_array_type] = STATE(3356), - [sym__array_base_type] = STATE(7101), - [sym_nullable_type] = STATE(3257), - [sym_pointer_type] = STATE(3257), - [sym__pointer_base_type] = STATE(7546), - [sym_function_pointer_type] = STATE(3257), - [sym_ref_type] = STATE(3253), - [sym_scoped_type] = STATE(3253), - [sym_tuple_type] = STATE(3258), - [sym_identifier] = STATE(3167), - [sym__reserved_identifier] = STATE(3225), + [sym_argument_list] = STATE(2895), + [sym__name] = STATE(3511), + [sym_alias_qualified_name] = STATE(2907), + [sym__simple_name] = STATE(2907), + [sym_qualified_name] = STATE(2907), + [sym_generic_name] = STATE(2950), + [sym_type] = STATE(2871), + [sym_implicit_type] = STATE(2926), + [sym_array_type] = STATE(3500), + [sym__array_base_type] = STATE(7061), + [sym_nullable_type] = STATE(2942), + [sym_pointer_type] = STATE(2942), + [sym__pointer_base_type] = STATE(7640), + [sym_function_pointer_type] = STATE(2942), + [sym_ref_type] = STATE(2926), + [sym_scoped_type] = STATE(2926), + [sym_tuple_type] = STATE(2943), + [sym_identifier] = STATE(3317), + [sym__reserved_identifier] = STATE(2900), [sym_preproc_region] = STATE(3622), [sym_preproc_endregion] = STATE(3622), [sym_preproc_line] = STATE(3622), @@ -515402,35 +514851,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), - [sym__identifier_token] = ACTIONS(3788), - [anon_sym_alias] = ACTIONS(3790), - [anon_sym_global] = ACTIONS(3790), - [anon_sym_LBRACK] = ACTIONS(5812), - [anon_sym_LPAREN] = ACTIONS(5814), - [anon_sym_ref] = ACTIONS(4175), - [anon_sym_LBRACE] = ACTIONS(5816), - [anon_sym_delegate] = ACTIONS(5818), - [anon_sym_file] = ACTIONS(3790), - [anon_sym_where] = ACTIONS(3790), - [anon_sym_notnull] = ACTIONS(3790), - [anon_sym_unmanaged] = ACTIONS(3790), - [anon_sym_scoped] = ACTIONS(5854), - [anon_sym_var] = ACTIONS(5822), - [sym_predefined_type] = ACTIONS(5824), - [anon_sym_yield] = ACTIONS(3790), - [anon_sym_when] = ACTIONS(3790), - [anon_sym_from] = ACTIONS(3790), - [anon_sym_into] = ACTIONS(3790), - [anon_sym_join] = ACTIONS(3790), - [anon_sym_on] = ACTIONS(3790), - [anon_sym_equals] = ACTIONS(3790), - [anon_sym_let] = ACTIONS(3790), - [anon_sym_orderby] = ACTIONS(3790), - [anon_sym_ascending] = ACTIONS(3790), - [anon_sym_descending] = ACTIONS(3790), - [anon_sym_group] = ACTIONS(3790), - [anon_sym_by] = ACTIONS(3790), - [anon_sym_select] = ACTIONS(3790), + [sym__identifier_token] = ACTIONS(3814), + [anon_sym_alias] = ACTIONS(3816), + [anon_sym_global] = ACTIONS(3816), + [anon_sym_LBRACK] = ACTIONS(5713), + [anon_sym_LPAREN] = ACTIONS(5715), + [anon_sym_ref] = ACTIONS(4185), + [anon_sym_LBRACE] = ACTIONS(5717), + [anon_sym_delegate] = ACTIONS(5719), + [anon_sym_file] = ACTIONS(3816), + [anon_sym_where] = ACTIONS(3816), + [anon_sym_notnull] = ACTIONS(3816), + [anon_sym_unmanaged] = ACTIONS(3816), + [anon_sym_scoped] = ACTIONS(5847), + [anon_sym_var] = ACTIONS(5723), + [sym_predefined_type] = ACTIONS(5725), + [anon_sym_yield] = ACTIONS(3816), + [anon_sym_when] = ACTIONS(3816), + [anon_sym_from] = ACTIONS(3816), + [anon_sym_into] = ACTIONS(3816), + [anon_sym_join] = ACTIONS(3816), + [anon_sym_on] = ACTIONS(3816), + [anon_sym_equals] = ACTIONS(3816), + [anon_sym_let] = ACTIONS(3816), + [anon_sym_orderby] = ACTIONS(3816), + [anon_sym_ascending] = ACTIONS(3816), + [anon_sym_descending] = ACTIONS(3816), + [anon_sym_group] = ACTIONS(3816), + [anon_sym_by] = ACTIONS(3816), + [anon_sym_select] = ACTIONS(3816), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -515443,24 +514892,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3623] = { - [sym__name] = STATE(6450), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(4096), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(4109), - [sym_type] = STATE(7005), - [sym_implicit_type] = STATE(7266), - [sym_array_type] = STATE(6694), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7446), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(7266), - [sym_scoped_type] = STATE(7266), - [sym_tuple_type] = STATE(6579), - [sym_identifier] = STATE(4087), - [sym__reserved_identifier] = STATE(3691), + [sym_argument_list] = STATE(3771), + [sym_bracketed_argument_list] = STATE(2892), [sym_preproc_region] = STATE(3623), [sym_preproc_endregion] = STATE(3623), [sym_preproc_line] = STATE(3623), @@ -515470,36 +514903,52 @@ 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_type_argument_list_repeat1] = STATE(7006), - [sym__identifier_token] = ACTIONS(2967), - [anon_sym_alias] = ACTIONS(2971), - [anon_sym_global] = ACTIONS(2971), - [anon_sym_COMMA] = ACTIONS(5026), - [anon_sym_LPAREN] = ACTIONS(2979), - [anon_sym_ref] = ACTIONS(5028), - [anon_sym_delegate] = ACTIONS(5030), - [anon_sym_file] = ACTIONS(2971), - [anon_sym_GT] = ACTIONS(5856), - [anon_sym_where] = ACTIONS(2971), - [anon_sym_notnull] = ACTIONS(2971), - [anon_sym_unmanaged] = ACTIONS(2971), - [anon_sym_scoped] = ACTIONS(5036), - [anon_sym_var] = ACTIONS(4737), - [sym_predefined_type] = ACTIONS(5038), - [anon_sym_yield] = ACTIONS(2971), - [anon_sym_when] = ACTIONS(2971), - [anon_sym_from] = ACTIONS(2971), - [anon_sym_into] = ACTIONS(2971), - [anon_sym_join] = ACTIONS(2971), - [anon_sym_on] = ACTIONS(2971), - [anon_sym_equals] = ACTIONS(2971), - [anon_sym_let] = ACTIONS(2971), - [anon_sym_orderby] = ACTIONS(2971), - [anon_sym_ascending] = ACTIONS(2971), - [anon_sym_descending] = ACTIONS(2971), - [anon_sym_group] = ACTIONS(2971), - [anon_sym_by] = ACTIONS(2971), - [anon_sym_select] = ACTIONS(2971), + [anon_sym_LBRACK] = ACTIONS(5650), + [anon_sym_COMMA] = ACTIONS(5849), + [anon_sym_LPAREN] = ACTIONS(5591), + [anon_sym_LT] = ACTIONS(5654), + [anon_sym_GT] = ACTIONS(5654), + [anon_sym_where] = ACTIONS(5849), + [anon_sym_QMARK] = ACTIONS(5656), + [anon_sym_BANG] = ACTIONS(5658), + [anon_sym_PLUS_PLUS] = ACTIONS(5660), + [anon_sym_DASH_DASH] = ACTIONS(5660), + [anon_sym_PLUS] = ACTIONS(5662), + [anon_sym_DASH] = ACTIONS(5662), + [anon_sym_STAR] = ACTIONS(5664), + [anon_sym_SLASH] = ACTIONS(5666), + [anon_sym_PERCENT] = ACTIONS(5664), + [anon_sym_CARET] = ACTIONS(5668), + [anon_sym_PIPE] = ACTIONS(5670), + [anon_sym_AMP] = ACTIONS(5672), + [anon_sym_LT_LT] = ACTIONS(5674), + [anon_sym_GT_GT] = ACTIONS(5676), + [anon_sym_GT_GT_GT] = ACTIONS(5674), + [anon_sym_EQ_EQ] = ACTIONS(5678), + [anon_sym_BANG_EQ] = ACTIONS(5678), + [anon_sym_GT_EQ] = ACTIONS(5680), + [anon_sym_LT_EQ] = ACTIONS(5680), + [anon_sym_DOT] = ACTIONS(4697), + [anon_sym_switch] = ACTIONS(5682), + [anon_sym_DOT_DOT] = ACTIONS(5684), + [anon_sym_and] = ACTIONS(5849), + [anon_sym_or] = ACTIONS(5851), + [anon_sym_AMP_AMP] = ACTIONS(5688), + [anon_sym_PIPE_PIPE] = ACTIONS(5690), + [anon_sym_QMARK_QMARK] = ACTIONS(5692), + [anon_sym_from] = ACTIONS(5849), + [anon_sym_into] = ACTIONS(5849), + [anon_sym_join] = ACTIONS(5849), + [anon_sym_let] = ACTIONS(5849), + [anon_sym_orderby] = ACTIONS(5849), + [anon_sym_ascending] = ACTIONS(5849), + [anon_sym_descending] = ACTIONS(5849), + [anon_sym_group] = ACTIONS(5849), + [anon_sym_select] = ACTIONS(5849), + [anon_sym_as] = ACTIONS(5694), + [anon_sym_is] = ACTIONS(5696), + [anon_sym_DASH_GT] = ACTIONS(4699), + [anon_sym_with] = ACTIONS(5698), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -515512,8 +514961,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3624] = { - [sym_argument_list] = STATE(3886), - [sym_bracketed_argument_list] = STATE(2902), + [sym_block] = STATE(1952), [sym_preproc_region] = STATE(3624), [sym_preproc_endregion] = STATE(3624), [sym_preproc_line] = STATE(3624), @@ -515523,52 +514971,53 @@ 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), - [anon_sym_LBRACK] = ACTIONS(5658), - [anon_sym_COMMA] = ACTIONS(5858), - [anon_sym_LPAREN] = ACTIONS(5624), - [anon_sym_LT] = ACTIONS(5662), - [anon_sym_GT] = ACTIONS(5662), - [anon_sym_where] = ACTIONS(5858), - [anon_sym_QMARK] = ACTIONS(5747), - [anon_sym_BANG] = ACTIONS(5666), - [anon_sym_PLUS_PLUS] = ACTIONS(5668), - [anon_sym_DASH_DASH] = ACTIONS(5668), - [anon_sym_PLUS] = ACTIONS(5670), - [anon_sym_DASH] = ACTIONS(5670), - [anon_sym_STAR] = ACTIONS(5672), - [anon_sym_SLASH] = ACTIONS(5674), - [anon_sym_PERCENT] = ACTIONS(5672), - [anon_sym_CARET] = ACTIONS(5676), - [anon_sym_PIPE] = ACTIONS(5749), - [anon_sym_AMP] = ACTIONS(5678), - [anon_sym_LT_LT] = ACTIONS(5680), - [anon_sym_GT_GT] = ACTIONS(5682), - [anon_sym_GT_GT_GT] = ACTIONS(5680), - [anon_sym_EQ_EQ] = ACTIONS(5684), - [anon_sym_BANG_EQ] = ACTIONS(5684), - [anon_sym_GT_EQ] = ACTIONS(5686), - [anon_sym_LT_EQ] = ACTIONS(5686), - [anon_sym_DOT] = ACTIONS(4733), - [anon_sym_switch] = ACTIONS(5688), - [anon_sym_DOT_DOT] = ACTIONS(5690), - [anon_sym_and] = ACTIONS(5858), - [anon_sym_or] = ACTIONS(5860), - [anon_sym_AMP_AMP] = ACTIONS(5753), - [anon_sym_PIPE_PIPE] = ACTIONS(5755), - [anon_sym_QMARK_QMARK] = ACTIONS(5757), - [anon_sym_from] = ACTIONS(5858), - [anon_sym_into] = ACTIONS(5858), - [anon_sym_join] = ACTIONS(5858), - [anon_sym_let] = ACTIONS(5858), - [anon_sym_orderby] = ACTIONS(5858), - [anon_sym_ascending] = ACTIONS(5858), - [anon_sym_descending] = ACTIONS(5858), - [anon_sym_group] = ACTIONS(5858), - [anon_sym_select] = ACTIONS(5858), - [anon_sym_as] = ACTIONS(5692), - [anon_sym_is] = ACTIONS(5694), - [anon_sym_DASH_GT] = ACTIONS(4719), - [anon_sym_with] = ACTIONS(5696), + [sym__identifier_token] = ACTIONS(3466), + [anon_sym_extern] = ACTIONS(3466), + [anon_sym_alias] = ACTIONS(3466), + [anon_sym_global] = ACTIONS(3466), + [anon_sym_unsafe] = ACTIONS(3466), + [anon_sym_static] = ACTIONS(3466), + [anon_sym_LPAREN] = ACTIONS(5128), + [anon_sym_ref] = ACTIONS(3466), + [anon_sym_LBRACE] = ACTIONS(5255), + [anon_sym_delegate] = ACTIONS(3466), + [anon_sym_abstract] = ACTIONS(3466), + [anon_sym_async] = ACTIONS(3466), + [anon_sym_const] = ACTIONS(3466), + [anon_sym_file] = ACTIONS(3466), + [anon_sym_fixed] = ACTIONS(3466), + [anon_sym_internal] = ACTIONS(3466), + [anon_sym_new] = ACTIONS(3466), + [anon_sym_override] = ACTIONS(3466), + [anon_sym_partial] = ACTIONS(3466), + [anon_sym_private] = ACTIONS(3466), + [anon_sym_protected] = ACTIONS(3466), + [anon_sym_public] = ACTIONS(3466), + [anon_sym_readonly] = ACTIONS(3466), + [anon_sym_required] = ACTIONS(3466), + [anon_sym_sealed] = ACTIONS(3466), + [anon_sym_virtual] = ACTIONS(3466), + [anon_sym_volatile] = ACTIONS(3466), + [anon_sym_where] = ACTIONS(3466), + [anon_sym_notnull] = ACTIONS(3466), + [anon_sym_unmanaged] = ACTIONS(3466), + [anon_sym_scoped] = ACTIONS(3466), + [anon_sym_var] = ACTIONS(3466), + [sym_predefined_type] = ACTIONS(3466), + [anon_sym_yield] = ACTIONS(3466), + [anon_sym_when] = ACTIONS(3466), + [anon_sym_from] = ACTIONS(3466), + [anon_sym_into] = ACTIONS(3466), + [anon_sym_join] = ACTIONS(3466), + [anon_sym_on] = ACTIONS(3466), + [anon_sym_equals] = ACTIONS(3466), + [anon_sym_let] = ACTIONS(3466), + [anon_sym_orderby] = ACTIONS(3466), + [anon_sym_ascending] = ACTIONS(3466), + [anon_sym_descending] = ACTIONS(3466), + [anon_sym_group] = ACTIONS(3466), + [anon_sym_by] = ACTIONS(3466), + [anon_sym_select] = ACTIONS(3466), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -515581,25 +515030,25 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3625] = { - [sym_argument_list] = STATE(2946), - [sym__name] = STATE(5023), - [sym_alias_qualified_name] = STATE(3029), - [sym__simple_name] = STATE(3029), - [sym_qualified_name] = STATE(3029), - [sym_generic_name] = STATE(2985), - [sym_type] = STATE(3383), - [sym_implicit_type] = STATE(3054), - [sym_array_type] = STATE(2956), - [sym__array_base_type] = STATE(7267), - [sym_nullable_type] = STATE(3012), - [sym_pointer_type] = STATE(3012), - [sym__pointer_base_type] = STATE(7693), - [sym_function_pointer_type] = STATE(3012), - [sym_ref_type] = STATE(3054), - [sym_scoped_type] = STATE(3054), - [sym_tuple_type] = STATE(3058), - [sym_identifier] = STATE(4395), - [sym__reserved_identifier] = STATE(2945), + [sym_argument_list] = STATE(4305), + [sym__name] = STATE(4451), + [sym_alias_qualified_name] = STATE(4462), + [sym__simple_name] = STATE(4462), + [sym_qualified_name] = STATE(4462), + [sym_generic_name] = STATE(4410), + [sym_type] = STATE(4229), + [sym_implicit_type] = STATE(4385), + [sym_array_type] = STATE(4291), + [sym__array_base_type] = STATE(7056), + [sym_nullable_type] = STATE(4481), + [sym_pointer_type] = STATE(4481), + [sym__pointer_base_type] = STATE(7551), + [sym_function_pointer_type] = STATE(4481), + [sym_ref_type] = STATE(4385), + [sym_scoped_type] = STATE(4385), + [sym_tuple_type] = STATE(4484), + [sym_identifier] = STATE(4194), + [sym__reserved_identifier] = STATE(4314), [sym_preproc_region] = STATE(3625), [sym_preproc_endregion] = STATE(3625), [sym_preproc_line] = STATE(3625), @@ -515609,35 +515058,35 @@ 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), - [sym__identifier_token] = ACTIONS(3887), - [anon_sym_alias] = ACTIONS(3889), - [anon_sym_global] = ACTIONS(3889), - [anon_sym_LBRACK] = ACTIONS(4036), - [anon_sym_LPAREN] = ACTIONS(4038), - [anon_sym_ref] = ACTIONS(4024), - [anon_sym_LBRACE] = ACTIONS(4040), - [anon_sym_delegate] = ACTIONS(4042), - [anon_sym_file] = ACTIONS(3889), - [anon_sym_where] = ACTIONS(3889), - [anon_sym_notnull] = ACTIONS(3889), - [anon_sym_unmanaged] = ACTIONS(3889), - [anon_sym_scoped] = ACTIONS(5862), - [anon_sym_var] = ACTIONS(4046), - [sym_predefined_type] = ACTIONS(4048), - [anon_sym_yield] = ACTIONS(3889), - [anon_sym_when] = ACTIONS(3889), - [anon_sym_from] = ACTIONS(3889), - [anon_sym_into] = ACTIONS(3889), - [anon_sym_join] = ACTIONS(3889), - [anon_sym_on] = ACTIONS(3889), - [anon_sym_equals] = ACTIONS(3889), - [anon_sym_let] = ACTIONS(3889), - [anon_sym_orderby] = ACTIONS(3889), - [anon_sym_ascending] = ACTIONS(3889), - [anon_sym_descending] = ACTIONS(3889), - [anon_sym_group] = ACTIONS(3889), - [anon_sym_by] = ACTIONS(3889), - [anon_sym_select] = ACTIONS(3889), + [sym__identifier_token] = ACTIONS(3965), + [anon_sym_alias] = ACTIONS(3967), + [anon_sym_global] = ACTIONS(3967), + [anon_sym_LBRACK] = ACTIONS(5745), + [anon_sym_LPAREN] = ACTIONS(5747), + [anon_sym_ref] = ACTIONS(3969), + [anon_sym_LBRACE] = ACTIONS(5749), + [anon_sym_delegate] = ACTIONS(5751), + [anon_sym_file] = ACTIONS(3967), + [anon_sym_where] = ACTIONS(3967), + [anon_sym_notnull] = ACTIONS(3967), + [anon_sym_unmanaged] = ACTIONS(3967), + [anon_sym_scoped] = ACTIONS(5853), + [anon_sym_var] = ACTIONS(5755), + [sym_predefined_type] = ACTIONS(5757), + [anon_sym_yield] = ACTIONS(3967), + [anon_sym_when] = ACTIONS(3967), + [anon_sym_from] = ACTIONS(3967), + [anon_sym_into] = ACTIONS(3967), + [anon_sym_join] = ACTIONS(3967), + [anon_sym_on] = ACTIONS(3967), + [anon_sym_equals] = ACTIONS(3967), + [anon_sym_let] = ACTIONS(3967), + [anon_sym_orderby] = ACTIONS(3967), + [anon_sym_ascending] = ACTIONS(3967), + [anon_sym_descending] = ACTIONS(3967), + [anon_sym_group] = ACTIONS(3967), + [anon_sym_by] = ACTIONS(3967), + [anon_sym_select] = ACTIONS(3967), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -515650,8 +515099,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3626] = { - [sym_argument_list] = STATE(3886), - [sym_bracketed_argument_list] = STATE(2902), + [sym_argument_list] = STATE(3771), + [sym_bracketed_argument_list] = STATE(2892), [sym_preproc_region] = STATE(3626), [sym_preproc_endregion] = STATE(3626), [sym_preproc_line] = STATE(3626), @@ -515661,52 +515110,52 @@ 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), - [anon_sym_LBRACK] = ACTIONS(5658), - [anon_sym_COMMA] = ACTIONS(5864), - [anon_sym_LPAREN] = ACTIONS(5624), - [anon_sym_LT] = ACTIONS(5662), - [anon_sym_GT] = ACTIONS(5662), - [anon_sym_where] = ACTIONS(5864), - [anon_sym_QMARK] = ACTIONS(5747), - [anon_sym_BANG] = ACTIONS(5666), - [anon_sym_PLUS_PLUS] = ACTIONS(5668), - [anon_sym_DASH_DASH] = ACTIONS(5668), - [anon_sym_PLUS] = ACTIONS(5670), - [anon_sym_DASH] = ACTIONS(5670), - [anon_sym_STAR] = ACTIONS(5672), - [anon_sym_SLASH] = ACTIONS(5674), - [anon_sym_PERCENT] = ACTIONS(5672), - [anon_sym_CARET] = ACTIONS(5676), - [anon_sym_PIPE] = ACTIONS(5749), - [anon_sym_AMP] = ACTIONS(5678), - [anon_sym_LT_LT] = ACTIONS(5680), - [anon_sym_GT_GT] = ACTIONS(5682), - [anon_sym_GT_GT_GT] = ACTIONS(5680), - [anon_sym_EQ_EQ] = ACTIONS(5684), - [anon_sym_BANG_EQ] = ACTIONS(5684), - [anon_sym_GT_EQ] = ACTIONS(5686), - [anon_sym_LT_EQ] = ACTIONS(5686), - [anon_sym_DOT] = ACTIONS(4733), - [anon_sym_switch] = ACTIONS(5688), - [anon_sym_DOT_DOT] = ACTIONS(5690), - [anon_sym_and] = ACTIONS(5864), - [anon_sym_or] = ACTIONS(5866), - [anon_sym_AMP_AMP] = ACTIONS(5753), - [anon_sym_PIPE_PIPE] = ACTIONS(5755), - [anon_sym_QMARK_QMARK] = ACTIONS(5757), - [anon_sym_from] = ACTIONS(5864), - [anon_sym_into] = ACTIONS(5864), - [anon_sym_join] = ACTIONS(5864), - [anon_sym_let] = ACTIONS(5864), - [anon_sym_orderby] = ACTIONS(5864), - [anon_sym_ascending] = ACTIONS(5864), - [anon_sym_descending] = ACTIONS(5864), - [anon_sym_group] = ACTIONS(5864), - [anon_sym_select] = ACTIONS(5864), - [anon_sym_as] = ACTIONS(5692), - [anon_sym_is] = ACTIONS(5694), - [anon_sym_DASH_GT] = ACTIONS(4719), - [anon_sym_with] = ACTIONS(5696), + [anon_sym_LBRACK] = ACTIONS(5650), + [anon_sym_COMMA] = ACTIONS(5855), + [anon_sym_LPAREN] = ACTIONS(5591), + [anon_sym_LT] = ACTIONS(5654), + [anon_sym_GT] = ACTIONS(5654), + [anon_sym_where] = ACTIONS(5855), + [anon_sym_QMARK] = ACTIONS(5656), + [anon_sym_BANG] = ACTIONS(5658), + [anon_sym_PLUS_PLUS] = ACTIONS(5660), + [anon_sym_DASH_DASH] = ACTIONS(5660), + [anon_sym_PLUS] = ACTIONS(5662), + [anon_sym_DASH] = ACTIONS(5662), + [anon_sym_STAR] = ACTIONS(5664), + [anon_sym_SLASH] = ACTIONS(5666), + [anon_sym_PERCENT] = ACTIONS(5664), + [anon_sym_CARET] = ACTIONS(5668), + [anon_sym_PIPE] = ACTIONS(5670), + [anon_sym_AMP] = ACTIONS(5672), + [anon_sym_LT_LT] = ACTIONS(5674), + [anon_sym_GT_GT] = ACTIONS(5676), + [anon_sym_GT_GT_GT] = ACTIONS(5674), + [anon_sym_EQ_EQ] = ACTIONS(5678), + [anon_sym_BANG_EQ] = ACTIONS(5678), + [anon_sym_GT_EQ] = ACTIONS(5680), + [anon_sym_LT_EQ] = ACTIONS(5680), + [anon_sym_DOT] = ACTIONS(4697), + [anon_sym_switch] = ACTIONS(5682), + [anon_sym_DOT_DOT] = ACTIONS(5684), + [anon_sym_and] = ACTIONS(5855), + [anon_sym_or] = ACTIONS(5857), + [anon_sym_AMP_AMP] = ACTIONS(5688), + [anon_sym_PIPE_PIPE] = ACTIONS(5690), + [anon_sym_QMARK_QMARK] = ACTIONS(5692), + [anon_sym_from] = ACTIONS(5855), + [anon_sym_into] = ACTIONS(5855), + [anon_sym_join] = ACTIONS(5855), + [anon_sym_let] = ACTIONS(5855), + [anon_sym_orderby] = ACTIONS(5855), + [anon_sym_ascending] = ACTIONS(5855), + [anon_sym_descending] = ACTIONS(5855), + [anon_sym_group] = ACTIONS(5855), + [anon_sym_select] = ACTIONS(5855), + [anon_sym_as] = ACTIONS(5694), + [anon_sym_is] = ACTIONS(5696), + [anon_sym_DASH_GT] = ACTIONS(4699), + [anon_sym_with] = ACTIONS(5698), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -515719,7 +515168,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3627] = { - [sym_block] = STATE(1970), + [sym_block] = STATE(2131), [sym_preproc_region] = STATE(3627), [sym_preproc_endregion] = STATE(3627), [sym_preproc_line] = STATE(3627), @@ -515729,53 +515178,53 @@ 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), - [sym__identifier_token] = ACTIONS(3482), - [anon_sym_extern] = ACTIONS(3482), - [anon_sym_alias] = ACTIONS(3482), - [anon_sym_global] = ACTIONS(3482), - [anon_sym_unsafe] = ACTIONS(3482), - [anon_sym_static] = ACTIONS(3482), - [anon_sym_LPAREN] = ACTIONS(5084), - [anon_sym_ref] = ACTIONS(3482), - [anon_sym_LBRACE] = ACTIONS(5274), - [anon_sym_delegate] = 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_scoped] = ACTIONS(3482), - [anon_sym_var] = ACTIONS(3482), - [sym_predefined_type] = ACTIONS(3482), - [anon_sym_yield] = ACTIONS(3482), - [anon_sym_when] = ACTIONS(3482), - [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), + [sym__identifier_token] = ACTIONS(3466), + [anon_sym_extern] = ACTIONS(3466), + [anon_sym_alias] = ACTIONS(3466), + [anon_sym_global] = ACTIONS(3466), + [anon_sym_unsafe] = ACTIONS(3466), + [anon_sym_static] = ACTIONS(3466), + [anon_sym_LPAREN] = ACTIONS(5128), + [anon_sym_ref] = ACTIONS(3466), + [anon_sym_LBRACE] = ACTIONS(5859), + [anon_sym_delegate] = ACTIONS(3466), + [anon_sym_abstract] = ACTIONS(3466), + [anon_sym_async] = ACTIONS(3466), + [anon_sym_const] = ACTIONS(3466), + [anon_sym_file] = ACTIONS(3466), + [anon_sym_fixed] = ACTIONS(3466), + [anon_sym_internal] = ACTIONS(3466), + [anon_sym_new] = ACTIONS(3466), + [anon_sym_override] = ACTIONS(3466), + [anon_sym_partial] = ACTIONS(3466), + [anon_sym_private] = ACTIONS(3466), + [anon_sym_protected] = ACTIONS(3466), + [anon_sym_public] = ACTIONS(3466), + [anon_sym_readonly] = ACTIONS(3466), + [anon_sym_required] = ACTIONS(3466), + [anon_sym_sealed] = ACTIONS(3466), + [anon_sym_virtual] = ACTIONS(3466), + [anon_sym_volatile] = ACTIONS(3466), + [anon_sym_where] = ACTIONS(3466), + [anon_sym_notnull] = ACTIONS(3466), + [anon_sym_unmanaged] = ACTIONS(3466), + [anon_sym_scoped] = ACTIONS(3466), + [anon_sym_var] = ACTIONS(3466), + [sym_predefined_type] = ACTIONS(3466), + [anon_sym_yield] = ACTIONS(3466), + [anon_sym_when] = ACTIONS(3466), + [anon_sym_from] = ACTIONS(3466), + [anon_sym_into] = ACTIONS(3466), + [anon_sym_join] = ACTIONS(3466), + [anon_sym_on] = ACTIONS(3466), + [anon_sym_equals] = ACTIONS(3466), + [anon_sym_let] = ACTIONS(3466), + [anon_sym_orderby] = ACTIONS(3466), + [anon_sym_ascending] = ACTIONS(3466), + [anon_sym_descending] = ACTIONS(3466), + [anon_sym_group] = ACTIONS(3466), + [anon_sym_by] = ACTIONS(3466), + [anon_sym_select] = ACTIONS(3466), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -515788,25 +515237,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3628] = { - [sym_argument_list] = STATE(2905), - [sym__name] = STATE(4108), - [sym_alias_qualified_name] = STATE(2921), - [sym__simple_name] = STATE(2921), - [sym_qualified_name] = STATE(2921), - [sym_generic_name] = STATE(2929), - [sym_type] = STATE(2891), - [sym_implicit_type] = STATE(2935), - [sym_array_type] = STATE(3966), - [sym__array_base_type] = STATE(7122), - [sym_nullable_type] = STATE(2961), - [sym_pointer_type] = STATE(2961), - [sym__pointer_base_type] = STATE(7545), - [sym_function_pointer_type] = STATE(2961), - [sym_ref_type] = STATE(2935), - [sym_scoped_type] = STATE(2935), - [sym_tuple_type] = STATE(2944), - [sym_identifier] = STATE(3844), - [sym__reserved_identifier] = STATE(2904), + [sym_block] = STATE(2032), [sym_preproc_region] = STATE(3628), [sym_preproc_endregion] = STATE(3628), [sym_preproc_line] = STATE(3628), @@ -515816,35 +515247,53 @@ 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(3861), - [anon_sym_alias] = ACTIONS(3863), - [anon_sym_global] = ACTIONS(3863), - [anon_sym_LBRACK] = ACTIONS(5785), - [anon_sym_LPAREN] = ACTIONS(5787), - [anon_sym_ref] = ACTIONS(4203), - [anon_sym_LBRACE] = ACTIONS(5789), - [anon_sym_delegate] = ACTIONS(5791), - [anon_sym_file] = ACTIONS(3863), - [anon_sym_where] = ACTIONS(3863), - [anon_sym_notnull] = ACTIONS(3863), - [anon_sym_unmanaged] = ACTIONS(3863), - [anon_sym_scoped] = ACTIONS(5868), - [anon_sym_var] = ACTIONS(5795), - [sym_predefined_type] = ACTIONS(5797), - [anon_sym_yield] = ACTIONS(3863), - [anon_sym_when] = ACTIONS(3863), - [anon_sym_from] = ACTIONS(3863), - [anon_sym_into] = ACTIONS(3863), - [anon_sym_join] = ACTIONS(3863), - [anon_sym_on] = ACTIONS(3863), - [anon_sym_equals] = ACTIONS(3863), - [anon_sym_let] = ACTIONS(3863), - [anon_sym_orderby] = ACTIONS(3863), - [anon_sym_ascending] = ACTIONS(3863), - [anon_sym_descending] = ACTIONS(3863), - [anon_sym_group] = ACTIONS(3863), - [anon_sym_by] = ACTIONS(3863), - [anon_sym_select] = ACTIONS(3863), + [sym__identifier_token] = ACTIONS(3466), + [anon_sym_extern] = ACTIONS(3466), + [anon_sym_alias] = ACTIONS(3466), + [anon_sym_global] = ACTIONS(3466), + [anon_sym_unsafe] = ACTIONS(3466), + [anon_sym_static] = ACTIONS(3466), + [anon_sym_LPAREN] = ACTIONS(5128), + [anon_sym_ref] = ACTIONS(3466), + [anon_sym_LBRACE] = ACTIONS(5234), + [anon_sym_delegate] = ACTIONS(3466), + [anon_sym_abstract] = ACTIONS(3466), + [anon_sym_async] = ACTIONS(3466), + [anon_sym_const] = ACTIONS(3466), + [anon_sym_file] = ACTIONS(3466), + [anon_sym_fixed] = ACTIONS(3466), + [anon_sym_internal] = ACTIONS(3466), + [anon_sym_new] = ACTIONS(3466), + [anon_sym_override] = ACTIONS(3466), + [anon_sym_partial] = ACTIONS(3466), + [anon_sym_private] = ACTIONS(3466), + [anon_sym_protected] = ACTIONS(3466), + [anon_sym_public] = ACTIONS(3466), + [anon_sym_readonly] = ACTIONS(3466), + [anon_sym_required] = ACTIONS(3466), + [anon_sym_sealed] = ACTIONS(3466), + [anon_sym_virtual] = ACTIONS(3466), + [anon_sym_volatile] = ACTIONS(3466), + [anon_sym_where] = ACTIONS(3466), + [anon_sym_notnull] = ACTIONS(3466), + [anon_sym_unmanaged] = ACTIONS(3466), + [anon_sym_scoped] = ACTIONS(3466), + [anon_sym_var] = ACTIONS(3466), + [sym_predefined_type] = ACTIONS(3466), + [anon_sym_yield] = ACTIONS(3466), + [anon_sym_when] = ACTIONS(3466), + [anon_sym_from] = ACTIONS(3466), + [anon_sym_into] = ACTIONS(3466), + [anon_sym_join] = ACTIONS(3466), + [anon_sym_on] = ACTIONS(3466), + [anon_sym_equals] = ACTIONS(3466), + [anon_sym_let] = ACTIONS(3466), + [anon_sym_orderby] = ACTIONS(3466), + [anon_sym_ascending] = ACTIONS(3466), + [anon_sym_descending] = ACTIONS(3466), + [anon_sym_group] = ACTIONS(3466), + [anon_sym_by] = ACTIONS(3466), + [anon_sym_select] = ACTIONS(3466), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -515857,8 +515306,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3629] = { - [sym_argument_list] = STATE(3886), - [sym_bracketed_argument_list] = STATE(2902), [sym_preproc_region] = STATE(3629), [sym_preproc_endregion] = STATE(3629), [sym_preproc_line] = STATE(3629), @@ -515868,52 +515315,54 @@ 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), - [anon_sym_LBRACK] = ACTIONS(5658), - [anon_sym_COMMA] = ACTIONS(5660), - [anon_sym_LPAREN] = ACTIONS(5624), - [anon_sym_LT] = ACTIONS(5662), - [anon_sym_GT] = ACTIONS(5662), - [anon_sym_where] = ACTIONS(5660), - [anon_sym_QMARK] = ACTIONS(5664), - [anon_sym_BANG] = ACTIONS(5666), - [anon_sym_PLUS_PLUS] = ACTIONS(5668), - [anon_sym_DASH_DASH] = ACTIONS(5668), - [anon_sym_PLUS] = ACTIONS(5670), - [anon_sym_DASH] = ACTIONS(5670), - [anon_sym_STAR] = ACTIONS(5672), - [anon_sym_SLASH] = ACTIONS(5674), - [anon_sym_PERCENT] = ACTIONS(5672), - [anon_sym_CARET] = ACTIONS(5676), - [anon_sym_PIPE] = ACTIONS(5749), - [anon_sym_AMP] = ACTIONS(5678), - [anon_sym_LT_LT] = ACTIONS(5680), - [anon_sym_GT_GT] = ACTIONS(5682), - [anon_sym_GT_GT_GT] = ACTIONS(5680), - [anon_sym_EQ_EQ] = ACTIONS(5684), - [anon_sym_BANG_EQ] = ACTIONS(5684), - [anon_sym_GT_EQ] = ACTIONS(5686), - [anon_sym_LT_EQ] = ACTIONS(5686), - [anon_sym_DOT] = ACTIONS(4733), - [anon_sym_switch] = ACTIONS(5688), - [anon_sym_DOT_DOT] = ACTIONS(5690), - [anon_sym_and] = ACTIONS(5660), - [anon_sym_or] = ACTIONS(5664), - [anon_sym_AMP_AMP] = ACTIONS(5753), - [anon_sym_PIPE_PIPE] = ACTIONS(5755), - [anon_sym_QMARK_QMARK] = ACTIONS(5757), - [anon_sym_from] = ACTIONS(5660), - [anon_sym_into] = ACTIONS(5660), - [anon_sym_join] = ACTIONS(5660), - [anon_sym_let] = ACTIONS(5660), - [anon_sym_orderby] = ACTIONS(5660), - [anon_sym_ascending] = ACTIONS(5660), - [anon_sym_descending] = ACTIONS(5660), - [anon_sym_group] = ACTIONS(5660), - [anon_sym_select] = ACTIONS(5660), - [anon_sym_as] = ACTIONS(5692), - [anon_sym_is] = ACTIONS(5694), - [anon_sym_DASH_GT] = ACTIONS(4719), - [anon_sym_with] = ACTIONS(5696), + [sym__identifier_token] = ACTIONS(4721), + [anon_sym_extern] = ACTIONS(4721), + [anon_sym_alias] = ACTIONS(4721), + [anon_sym_global] = ACTIONS(4721), + [anon_sym_unsafe] = ACTIONS(4721), + [anon_sym_static] = ACTIONS(4721), + [anon_sym_LBRACK] = ACTIONS(4723), + [anon_sym_LPAREN] = ACTIONS(4723), + [anon_sym_ref] = ACTIONS(4721), + [anon_sym_delegate] = ACTIONS(4721), + [anon_sym_abstract] = ACTIONS(4721), + [anon_sym_async] = ACTIONS(4721), + [anon_sym_const] = ACTIONS(4721), + [anon_sym_file] = ACTIONS(4721), + [anon_sym_fixed] = ACTIONS(4721), + [anon_sym_internal] = ACTIONS(4721), + [anon_sym_new] = ACTIONS(4721), + [anon_sym_override] = ACTIONS(4721), + [anon_sym_partial] = ACTIONS(4721), + [anon_sym_private] = ACTIONS(4721), + [anon_sym_protected] = ACTIONS(4721), + [anon_sym_public] = ACTIONS(4721), + [anon_sym_readonly] = ACTIONS(4721), + [anon_sym_required] = ACTIONS(4721), + [anon_sym_sealed] = ACTIONS(4721), + [anon_sym_virtual] = ACTIONS(4721), + [anon_sym_volatile] = ACTIONS(4721), + [anon_sym_where] = ACTIONS(4721), + [anon_sym_notnull] = ACTIONS(4721), + [anon_sym_unmanaged] = ACTIONS(4721), + [anon_sym_scoped] = ACTIONS(4721), + [anon_sym_var] = ACTIONS(4721), + [sym_predefined_type] = ACTIONS(4721), + [anon_sym_yield] = ACTIONS(4721), + [anon_sym_when] = ACTIONS(4721), + [anon_sym_from] = ACTIONS(4721), + [anon_sym_into] = ACTIONS(4721), + [anon_sym_join] = ACTIONS(4721), + [anon_sym_on] = ACTIONS(4721), + [anon_sym_equals] = ACTIONS(4721), + [anon_sym_let] = ACTIONS(4721), + [anon_sym_orderby] = ACTIONS(4721), + [anon_sym_ascending] = ACTIONS(4721), + [anon_sym_descending] = ACTIONS(4721), + [anon_sym_group] = ACTIONS(4721), + [anon_sym_by] = ACTIONS(4721), + [anon_sym_select] = ACTIONS(4721), + [aux_sym_preproc_if_token1] = ACTIONS(4723), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -515926,6 +515375,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3630] = { + [sym_identifier] = STATE(7517), + [sym__reserved_identifier] = STATE(2168), [sym_preproc_region] = STATE(3630), [sym_preproc_endregion] = STATE(3630), [sym_preproc_line] = STATE(3630), @@ -515935,54 +515386,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), - [anon_sym_EQ] = ACTIONS(5482), - [anon_sym_LBRACK] = ACTIONS(4860), - [anon_sym_COMMA] = ACTIONS(4860), - [anon_sym_LPAREN] = ACTIONS(4860), - [anon_sym_RPAREN] = ACTIONS(5585), - [anon_sym_LT] = ACTIONS(4862), - [anon_sym_GT] = ACTIONS(4862), - [anon_sym_QMARK] = ACTIONS(4862), - [anon_sym_BANG] = ACTIONS(4862), - [anon_sym_PLUS_PLUS] = ACTIONS(4860), - [anon_sym_DASH_DASH] = ACTIONS(4860), - [anon_sym_PLUS] = ACTIONS(4862), - [anon_sym_DASH] = ACTIONS(4862), - [anon_sym_STAR] = ACTIONS(4862), - [anon_sym_SLASH] = ACTIONS(4862), - [anon_sym_PERCENT] = ACTIONS(4862), - [anon_sym_CARET] = ACTIONS(4862), - [anon_sym_PIPE] = ACTIONS(4862), - [anon_sym_AMP] = ACTIONS(4862), - [anon_sym_LT_LT] = ACTIONS(4862), - [anon_sym_GT_GT] = ACTIONS(4862), - [anon_sym_GT_GT_GT] = ACTIONS(4862), - [anon_sym_EQ_EQ] = ACTIONS(4860), - [anon_sym_BANG_EQ] = ACTIONS(4860), - [anon_sym_GT_EQ] = ACTIONS(4860), - [anon_sym_LT_EQ] = ACTIONS(4860), - [anon_sym_DOT] = ACTIONS(4862), - [anon_sym_switch] = ACTIONS(4860), - [anon_sym_DOT_DOT] = ACTIONS(4860), - [anon_sym_PLUS_EQ] = ACTIONS(5484), - [anon_sym_DASH_EQ] = ACTIONS(5484), - [anon_sym_STAR_EQ] = ACTIONS(5484), - [anon_sym_SLASH_EQ] = ACTIONS(5484), - [anon_sym_PERCENT_EQ] = ACTIONS(5484), - [anon_sym_AMP_EQ] = ACTIONS(5484), - [anon_sym_CARET_EQ] = ACTIONS(5484), - [anon_sym_PIPE_EQ] = ACTIONS(5484), - [anon_sym_LT_LT_EQ] = ACTIONS(5484), - [anon_sym_GT_GT_EQ] = ACTIONS(5484), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(5484), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(5484), - [anon_sym_AMP_AMP] = ACTIONS(4860), - [anon_sym_PIPE_PIPE] = ACTIONS(4860), - [anon_sym_QMARK_QMARK] = ACTIONS(4862), - [anon_sym_as] = ACTIONS(4860), - [anon_sym_is] = ACTIONS(4860), - [anon_sym_DASH_GT] = ACTIONS(4860), - [anon_sym_with] = ACTIONS(4860), + [sym__identifier_token] = ACTIONS(5776), + [anon_sym_extern] = ACTIONS(3466), + [anon_sym_alias] = ACTIONS(5780), + [anon_sym_global] = ACTIONS(5780), + [anon_sym_unsafe] = ACTIONS(5784), + [anon_sym_static] = ACTIONS(5784), + [anon_sym_LPAREN] = ACTIONS(5128), + [anon_sym_ref] = ACTIONS(3466), + [anon_sym_delegate] = ACTIONS(3466), + [anon_sym_abstract] = ACTIONS(3466), + [anon_sym_async] = ACTIONS(3466), + [anon_sym_const] = ACTIONS(3466), + [anon_sym_file] = ACTIONS(5780), + [anon_sym_fixed] = ACTIONS(3466), + [anon_sym_internal] = ACTIONS(3466), + [anon_sym_new] = ACTIONS(3466), + [anon_sym_override] = ACTIONS(3466), + [anon_sym_partial] = ACTIONS(3466), + [anon_sym_private] = ACTIONS(3466), + [anon_sym_protected] = ACTIONS(3466), + [anon_sym_public] = ACTIONS(3466), + [anon_sym_readonly] = ACTIONS(3466), + [anon_sym_required] = ACTIONS(3466), + [anon_sym_sealed] = ACTIONS(3466), + [anon_sym_virtual] = ACTIONS(3466), + [anon_sym_volatile] = ACTIONS(3466), + [anon_sym_where] = ACTIONS(5780), + [anon_sym_notnull] = ACTIONS(5780), + [anon_sym_unmanaged] = ACTIONS(5780), + [anon_sym_scoped] = ACTIONS(5780), + [anon_sym_var] = ACTIONS(5780), + [sym_predefined_type] = ACTIONS(3466), + [anon_sym_yield] = ACTIONS(5780), + [anon_sym_when] = ACTIONS(5780), + [anon_sym_from] = ACTIONS(5780), + [anon_sym_into] = ACTIONS(5780), + [anon_sym_join] = ACTIONS(5780), + [anon_sym_on] = ACTIONS(5780), + [anon_sym_equals] = ACTIONS(5780), + [anon_sym_let] = ACTIONS(5780), + [anon_sym_orderby] = ACTIONS(5780), + [anon_sym_ascending] = ACTIONS(5780), + [anon_sym_descending] = ACTIONS(5780), + [anon_sym_group] = ACTIONS(5780), + [anon_sym_by] = ACTIONS(5780), + [anon_sym_select] = ACTIONS(5780), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -515995,8 +515444,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3631] = { - [sym_argument_list] = STATE(3886), - [sym_bracketed_argument_list] = STATE(2902), [sym_preproc_region] = STATE(3631), [sym_preproc_endregion] = STATE(3631), [sym_preproc_line] = STATE(3631), @@ -516006,52 +515453,54 @@ 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), - [anon_sym_LBRACK] = ACTIONS(5658), - [anon_sym_COMMA] = ACTIONS(5660), - [anon_sym_LPAREN] = ACTIONS(5624), - [anon_sym_LT] = ACTIONS(5662), - [anon_sym_GT] = ACTIONS(5662), - [anon_sym_where] = ACTIONS(5660), - [anon_sym_QMARK] = ACTIONS(5664), - [anon_sym_BANG] = ACTIONS(5666), - [anon_sym_PLUS_PLUS] = ACTIONS(5668), - [anon_sym_DASH_DASH] = ACTIONS(5668), - [anon_sym_PLUS] = ACTIONS(5670), - [anon_sym_DASH] = ACTIONS(5670), - [anon_sym_STAR] = ACTIONS(5672), - [anon_sym_SLASH] = ACTIONS(5674), - [anon_sym_PERCENT] = ACTIONS(5672), - [anon_sym_CARET] = ACTIONS(5660), - [anon_sym_PIPE] = ACTIONS(5664), - [anon_sym_AMP] = ACTIONS(5678), - [anon_sym_LT_LT] = ACTIONS(5680), - [anon_sym_GT_GT] = ACTIONS(5682), - [anon_sym_GT_GT_GT] = ACTIONS(5680), - [anon_sym_EQ_EQ] = ACTIONS(5684), - [anon_sym_BANG_EQ] = ACTIONS(5684), - [anon_sym_GT_EQ] = ACTIONS(5686), - [anon_sym_LT_EQ] = ACTIONS(5686), - [anon_sym_DOT] = ACTIONS(4733), - [anon_sym_switch] = ACTIONS(5688), - [anon_sym_DOT_DOT] = ACTIONS(5690), - [anon_sym_and] = ACTIONS(5660), - [anon_sym_or] = ACTIONS(5664), - [anon_sym_AMP_AMP] = ACTIONS(5660), - [anon_sym_PIPE_PIPE] = ACTIONS(5660), - [anon_sym_QMARK_QMARK] = ACTIONS(5660), - [anon_sym_from] = ACTIONS(5660), - [anon_sym_into] = ACTIONS(5660), - [anon_sym_join] = ACTIONS(5660), - [anon_sym_let] = ACTIONS(5660), - [anon_sym_orderby] = ACTIONS(5660), - [anon_sym_ascending] = ACTIONS(5660), - [anon_sym_descending] = ACTIONS(5660), - [anon_sym_group] = ACTIONS(5660), - [anon_sym_select] = ACTIONS(5660), - [anon_sym_as] = ACTIONS(5692), - [anon_sym_is] = ACTIONS(5694), - [anon_sym_DASH_GT] = ACTIONS(4719), - [anon_sym_with] = ACTIONS(5696), + [anon_sym_EQ] = ACTIONS(5861), + [anon_sym_LBRACK] = ACTIONS(4811), + [anon_sym_LPAREN] = ACTIONS(4811), + [anon_sym_LT] = ACTIONS(4813), + [anon_sym_GT] = ACTIONS(4813), + [anon_sym_in] = ACTIONS(4813), + [anon_sym_QMARK] = ACTIONS(4813), + [anon_sym_BANG] = ACTIONS(4813), + [anon_sym_PLUS_PLUS] = ACTIONS(4811), + [anon_sym_DASH_DASH] = ACTIONS(4811), + [anon_sym_PLUS] = ACTIONS(4813), + [anon_sym_DASH] = ACTIONS(4813), + [anon_sym_STAR] = ACTIONS(4813), + [anon_sym_SLASH] = ACTIONS(4813), + [anon_sym_PERCENT] = ACTIONS(4813), + [anon_sym_CARET] = ACTIONS(4813), + [anon_sym_PIPE] = ACTIONS(4813), + [anon_sym_AMP] = ACTIONS(4813), + [anon_sym_LT_LT] = ACTIONS(4813), + [anon_sym_GT_GT] = ACTIONS(4813), + [anon_sym_GT_GT_GT] = ACTIONS(4813), + [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(4813), + [anon_sym_switch] = ACTIONS(4811), + [anon_sym_DOT_DOT] = ACTIONS(4811), + [anon_sym_PLUS_EQ] = ACTIONS(5863), + [anon_sym_DASH_EQ] = ACTIONS(5863), + [anon_sym_STAR_EQ] = ACTIONS(5863), + [anon_sym_SLASH_EQ] = ACTIONS(5863), + [anon_sym_PERCENT_EQ] = ACTIONS(5863), + [anon_sym_AMP_EQ] = ACTIONS(5863), + [anon_sym_CARET_EQ] = ACTIONS(5863), + [anon_sym_PIPE_EQ] = ACTIONS(5863), + [anon_sym_LT_LT_EQ] = ACTIONS(5863), + [anon_sym_GT_GT_EQ] = ACTIONS(5863), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(5863), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(5863), + [anon_sym_AMP_AMP] = ACTIONS(4811), + [anon_sym_PIPE_PIPE] = ACTIONS(4811), + [anon_sym_QMARK_QMARK] = ACTIONS(4813), + [anon_sym_into] = 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_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -516064,6 +515513,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3632] = { + [sym_block] = STATE(7054), [sym_preproc_region] = STATE(3632), [sym_preproc_endregion] = STATE(3632), [sym_preproc_line] = STATE(3632), @@ -516073,54 +515523,53 @@ 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), - [anon_sym_EQ] = ACTIONS(5870), - [anon_sym_LBRACK] = ACTIONS(4860), - [anon_sym_LPAREN] = ACTIONS(4860), - [anon_sym_LT] = ACTIONS(4862), - [anon_sym_GT] = ACTIONS(4862), - [anon_sym_QMARK] = ACTIONS(4862), - [anon_sym_BANG] = ACTIONS(4862), - [anon_sym_PLUS_PLUS] = ACTIONS(4860), - [anon_sym_DASH_DASH] = ACTIONS(4860), - [anon_sym_PLUS] = ACTIONS(4862), - [anon_sym_DASH] = ACTIONS(4862), - [anon_sym_STAR] = ACTIONS(4862), - [anon_sym_SLASH] = ACTIONS(4862), - [anon_sym_PERCENT] = ACTIONS(4862), - [anon_sym_CARET] = ACTIONS(4862), - [anon_sym_PIPE] = ACTIONS(4862), - [anon_sym_AMP] = ACTIONS(4862), - [anon_sym_LT_LT] = ACTIONS(4862), - [anon_sym_GT_GT] = ACTIONS(4862), - [anon_sym_GT_GT_GT] = ACTIONS(4862), - [anon_sym_EQ_EQ] = ACTIONS(4860), - [anon_sym_BANG_EQ] = ACTIONS(4860), - [anon_sym_GT_EQ] = ACTIONS(4860), - [anon_sym_LT_EQ] = ACTIONS(4860), - [anon_sym_DOT] = ACTIONS(4862), - [anon_sym_switch] = ACTIONS(4860), - [anon_sym_DOT_DOT] = ACTIONS(4860), - [anon_sym_PLUS_EQ] = ACTIONS(5872), - [anon_sym_DASH_EQ] = ACTIONS(5872), - [anon_sym_STAR_EQ] = ACTIONS(5872), - [anon_sym_SLASH_EQ] = ACTIONS(5872), - [anon_sym_PERCENT_EQ] = ACTIONS(5872), - [anon_sym_AMP_EQ] = ACTIONS(5872), - [anon_sym_CARET_EQ] = ACTIONS(5872), - [anon_sym_PIPE_EQ] = ACTIONS(5872), - [anon_sym_LT_LT_EQ] = ACTIONS(5872), - [anon_sym_GT_GT_EQ] = ACTIONS(5872), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(5872), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(5872), - [anon_sym_AMP_AMP] = ACTIONS(4860), - [anon_sym_PIPE_PIPE] = ACTIONS(4860), - [anon_sym_QMARK_QMARK] = ACTIONS(4862), - [anon_sym_into] = ACTIONS(4860), - [anon_sym_on] = ACTIONS(4860), - [anon_sym_as] = ACTIONS(4860), - [anon_sym_is] = ACTIONS(4860), - [anon_sym_DASH_GT] = ACTIONS(4860), - [anon_sym_with] = ACTIONS(4860), + [sym__identifier_token] = ACTIONS(3466), + [anon_sym_extern] = ACTIONS(3466), + [anon_sym_alias] = ACTIONS(3466), + [anon_sym_global] = ACTIONS(3466), + [anon_sym_unsafe] = ACTIONS(3466), + [anon_sym_static] = ACTIONS(3466), + [anon_sym_LPAREN] = ACTIONS(5128), + [anon_sym_ref] = ACTIONS(3466), + [anon_sym_LBRACE] = ACTIONS(5573), + [anon_sym_delegate] = ACTIONS(3466), + [anon_sym_abstract] = ACTIONS(3466), + [anon_sym_async] = ACTIONS(3466), + [anon_sym_const] = ACTIONS(3466), + [anon_sym_file] = ACTIONS(3466), + [anon_sym_fixed] = ACTIONS(3466), + [anon_sym_internal] = ACTIONS(3466), + [anon_sym_new] = ACTIONS(3466), + [anon_sym_override] = ACTIONS(3466), + [anon_sym_partial] = ACTIONS(3466), + [anon_sym_private] = ACTIONS(3466), + [anon_sym_protected] = ACTIONS(3466), + [anon_sym_public] = ACTIONS(3466), + [anon_sym_readonly] = ACTIONS(3466), + [anon_sym_required] = ACTIONS(3466), + [anon_sym_sealed] = ACTIONS(3466), + [anon_sym_virtual] = ACTIONS(3466), + [anon_sym_volatile] = ACTIONS(3466), + [anon_sym_where] = ACTIONS(3466), + [anon_sym_notnull] = ACTIONS(3466), + [anon_sym_unmanaged] = ACTIONS(3466), + [anon_sym_scoped] = ACTIONS(3466), + [anon_sym_var] = ACTIONS(3466), + [sym_predefined_type] = ACTIONS(3466), + [anon_sym_yield] = ACTIONS(3466), + [anon_sym_when] = ACTIONS(3466), + [anon_sym_from] = ACTIONS(3466), + [anon_sym_into] = ACTIONS(3466), + [anon_sym_join] = ACTIONS(3466), + [anon_sym_on] = ACTIONS(3466), + [anon_sym_equals] = ACTIONS(3466), + [anon_sym_let] = ACTIONS(3466), + [anon_sym_orderby] = ACTIONS(3466), + [anon_sym_ascending] = ACTIONS(3466), + [anon_sym_descending] = ACTIONS(3466), + [anon_sym_group] = ACTIONS(3466), + [anon_sym_by] = ACTIONS(3466), + [anon_sym_select] = ACTIONS(3466), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -516133,25 +515582,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3633] = { - [sym_argument_list] = STATE(2905), - [sym__name] = STATE(3534), - [sym_alias_qualified_name] = STATE(2921), - [sym__simple_name] = STATE(2921), - [sym_qualified_name] = STATE(2921), - [sym_generic_name] = STATE(2929), - [sym_type] = STATE(2891), - [sym_implicit_type] = STATE(2935), - [sym_array_type] = STATE(3484), - [sym__array_base_type] = STATE(7122), - [sym_nullable_type] = STATE(2961), - [sym_pointer_type] = STATE(2961), - [sym__pointer_base_type] = STATE(7545), - [sym_function_pointer_type] = STATE(2961), - [sym_ref_type] = STATE(2935), - [sym_scoped_type] = STATE(2935), - [sym_tuple_type] = STATE(2944), - [sym_identifier] = STATE(3260), - [sym__reserved_identifier] = STATE(2904), + [sym_argument_list] = STATE(3771), + [sym_bracketed_argument_list] = STATE(2892), [sym_preproc_region] = STATE(3633), [sym_preproc_endregion] = STATE(3633), [sym_preproc_line] = STATE(3633), @@ -516161,35 +515593,52 @@ 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), - [sym__identifier_token] = ACTIONS(3861), - [anon_sym_alias] = ACTIONS(3863), - [anon_sym_global] = ACTIONS(3863), - [anon_sym_LBRACK] = ACTIONS(5785), - [anon_sym_LPAREN] = ACTIONS(5787), - [anon_sym_ref] = ACTIONS(4231), - [anon_sym_LBRACE] = ACTIONS(5789), - [anon_sym_delegate] = ACTIONS(5791), - [anon_sym_file] = ACTIONS(3863), - [anon_sym_where] = ACTIONS(3863), - [anon_sym_notnull] = ACTIONS(3863), - [anon_sym_unmanaged] = ACTIONS(3863), - [anon_sym_scoped] = ACTIONS(5874), - [anon_sym_var] = ACTIONS(5795), - [sym_predefined_type] = ACTIONS(5797), - [anon_sym_yield] = ACTIONS(3863), - [anon_sym_when] = ACTIONS(3863), - [anon_sym_from] = ACTIONS(3863), - [anon_sym_into] = ACTIONS(3863), - [anon_sym_join] = ACTIONS(3863), - [anon_sym_on] = ACTIONS(3863), - [anon_sym_equals] = ACTIONS(3863), - [anon_sym_let] = ACTIONS(3863), - [anon_sym_orderby] = ACTIONS(3863), - [anon_sym_ascending] = ACTIONS(3863), - [anon_sym_descending] = ACTIONS(3863), - [anon_sym_group] = ACTIONS(3863), - [anon_sym_by] = ACTIONS(3863), - [anon_sym_select] = ACTIONS(3863), + [anon_sym_LBRACK] = ACTIONS(5650), + [anon_sym_COMMA] = ACTIONS(5865), + [anon_sym_LPAREN] = ACTIONS(5591), + [anon_sym_LT] = ACTIONS(5654), + [anon_sym_GT] = ACTIONS(5654), + [anon_sym_where] = ACTIONS(5865), + [anon_sym_QMARK] = ACTIONS(5656), + [anon_sym_BANG] = ACTIONS(5658), + [anon_sym_PLUS_PLUS] = ACTIONS(5660), + [anon_sym_DASH_DASH] = ACTIONS(5660), + [anon_sym_PLUS] = ACTIONS(5662), + [anon_sym_DASH] = ACTIONS(5662), + [anon_sym_STAR] = ACTIONS(5664), + [anon_sym_SLASH] = ACTIONS(5666), + [anon_sym_PERCENT] = ACTIONS(5664), + [anon_sym_CARET] = ACTIONS(5668), + [anon_sym_PIPE] = ACTIONS(5670), + [anon_sym_AMP] = ACTIONS(5672), + [anon_sym_LT_LT] = ACTIONS(5674), + [anon_sym_GT_GT] = ACTIONS(5676), + [anon_sym_GT_GT_GT] = ACTIONS(5674), + [anon_sym_EQ_EQ] = ACTIONS(5678), + [anon_sym_BANG_EQ] = ACTIONS(5678), + [anon_sym_GT_EQ] = ACTIONS(5680), + [anon_sym_LT_EQ] = ACTIONS(5680), + [anon_sym_DOT] = ACTIONS(4697), + [anon_sym_switch] = ACTIONS(5682), + [anon_sym_DOT_DOT] = ACTIONS(5684), + [anon_sym_and] = ACTIONS(5865), + [anon_sym_or] = ACTIONS(5867), + [anon_sym_AMP_AMP] = ACTIONS(5688), + [anon_sym_PIPE_PIPE] = ACTIONS(5690), + [anon_sym_QMARK_QMARK] = ACTIONS(5692), + [anon_sym_from] = ACTIONS(5865), + [anon_sym_into] = ACTIONS(5865), + [anon_sym_join] = ACTIONS(5865), + [anon_sym_let] = ACTIONS(5865), + [anon_sym_orderby] = ACTIONS(5865), + [anon_sym_ascending] = ACTIONS(5865), + [anon_sym_descending] = ACTIONS(5865), + [anon_sym_group] = ACTIONS(5865), + [anon_sym_select] = ACTIONS(5865), + [anon_sym_as] = ACTIONS(5694), + [anon_sym_is] = ACTIONS(5696), + [anon_sym_DASH_GT] = ACTIONS(4699), + [anon_sym_with] = ACTIONS(5698), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -516202,8 +515651,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3634] = { - [sym_identifier] = STATE(7571), - [sym__reserved_identifier] = STATE(2175), [sym_preproc_region] = STATE(3634), [sym_preproc_endregion] = STATE(3634), [sym_preproc_line] = STATE(3634), @@ -516213,52 +515660,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(5801), - [anon_sym_extern] = ACTIONS(3482), - [anon_sym_alias] = ACTIONS(5805), - [anon_sym_global] = ACTIONS(5805), - [anon_sym_unsafe] = ACTIONS(5809), - [anon_sym_static] = ACTIONS(5809), - [anon_sym_LPAREN] = ACTIONS(5084), - [anon_sym_ref] = ACTIONS(3482), - [anon_sym_delegate] = ACTIONS(3482), - [anon_sym_abstract] = ACTIONS(3482), - [anon_sym_async] = ACTIONS(3482), - [anon_sym_const] = ACTIONS(3482), - [anon_sym_file] = ACTIONS(5805), - [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(5805), - [anon_sym_notnull] = ACTIONS(5805), - [anon_sym_unmanaged] = ACTIONS(5805), - [anon_sym_scoped] = ACTIONS(5805), - [anon_sym_var] = ACTIONS(5805), - [sym_predefined_type] = ACTIONS(3482), - [anon_sym_yield] = ACTIONS(5805), - [anon_sym_when] = ACTIONS(5805), - [anon_sym_from] = ACTIONS(5805), - [anon_sym_into] = ACTIONS(5805), - [anon_sym_join] = ACTIONS(5805), - [anon_sym_on] = ACTIONS(5805), - [anon_sym_equals] = ACTIONS(5805), - [anon_sym_let] = ACTIONS(5805), - [anon_sym_orderby] = ACTIONS(5805), - [anon_sym_ascending] = ACTIONS(5805), - [anon_sym_descending] = ACTIONS(5805), - [anon_sym_group] = ACTIONS(5805), - [anon_sym_by] = ACTIONS(5805), - [anon_sym_select] = ACTIONS(5805), + [anon_sym_EQ] = ACTIONS(5869), + [anon_sym_LBRACK] = ACTIONS(4811), + [anon_sym_LPAREN] = ACTIONS(4811), + [anon_sym_LT] = ACTIONS(4813), + [anon_sym_GT] = ACTIONS(4813), + [anon_sym_QMARK] = ACTIONS(4813), + [anon_sym_BANG] = ACTIONS(4813), + [anon_sym_PLUS_PLUS] = ACTIONS(4811), + [anon_sym_DASH_DASH] = ACTIONS(4811), + [anon_sym_PLUS] = ACTIONS(4813), + [anon_sym_DASH] = ACTIONS(4813), + [anon_sym_STAR] = ACTIONS(4813), + [anon_sym_SLASH] = ACTIONS(4813), + [anon_sym_PERCENT] = ACTIONS(4813), + [anon_sym_CARET] = ACTIONS(4813), + [anon_sym_PIPE] = ACTIONS(4813), + [anon_sym_AMP] = ACTIONS(4813), + [anon_sym_LT_LT] = ACTIONS(4813), + [anon_sym_GT_GT] = ACTIONS(4813), + [anon_sym_GT_GT_GT] = ACTIONS(4813), + [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(4813), + [anon_sym_switch] = ACTIONS(4811), + [anon_sym_DOT_DOT] = ACTIONS(4811), + [anon_sym_PLUS_EQ] = ACTIONS(5871), + [anon_sym_DASH_EQ] = ACTIONS(5871), + [anon_sym_STAR_EQ] = ACTIONS(5871), + [anon_sym_SLASH_EQ] = ACTIONS(5871), + [anon_sym_PERCENT_EQ] = ACTIONS(5871), + [anon_sym_AMP_EQ] = ACTIONS(5871), + [anon_sym_CARET_EQ] = ACTIONS(5871), + [anon_sym_PIPE_EQ] = ACTIONS(5871), + [anon_sym_LT_LT_EQ] = ACTIONS(5871), + [anon_sym_GT_GT_EQ] = ACTIONS(5871), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(5871), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(5871), + [anon_sym_AMP_AMP] = ACTIONS(4811), + [anon_sym_PIPE_PIPE] = ACTIONS(4811), + [anon_sym_QMARK_QMARK] = ACTIONS(4813), + [anon_sym_into] = ACTIONS(4811), + [anon_sym_on] = 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_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -516271,24 +515720,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3635] = { - [sym__name] = STATE(6450), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(4096), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(4109), - [sym_type] = STATE(6852), - [sym_implicit_type] = STATE(7266), - [sym_array_type] = STATE(6694), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7446), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(7266), - [sym_scoped_type] = STATE(7266), - [sym_tuple_type] = STATE(6579), - [sym_identifier] = STATE(4087), - [sym__reserved_identifier] = STATE(3691), + [sym__name] = STATE(6400), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(4068), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(4073), + [sym_type] = STATE(6784), + [sym_implicit_type] = STATE(7035), + [sym_array_type] = STATE(6706), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7421), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(7035), + [sym_scoped_type] = STATE(7035), + [sym_tuple_type] = STATE(6601), + [sym_identifier] = STATE(4081), + [sym__reserved_identifier] = STATE(3654), [sym_preproc_region] = STATE(3635), [sym_preproc_endregion] = STATE(3635), [sym_preproc_line] = STATE(3635), @@ -516298,36 +515747,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), - [aux_sym_type_argument_list_repeat1] = STATE(6853), - [sym__identifier_token] = ACTIONS(2967), - [anon_sym_alias] = ACTIONS(2971), - [anon_sym_global] = ACTIONS(2971), - [anon_sym_COMMA] = ACTIONS(5026), - [anon_sym_LPAREN] = ACTIONS(2979), - [anon_sym_ref] = ACTIONS(5028), - [anon_sym_delegate] = ACTIONS(5030), - [anon_sym_file] = ACTIONS(2971), - [anon_sym_GT] = ACTIONS(5876), - [anon_sym_where] = ACTIONS(2971), - [anon_sym_notnull] = ACTIONS(2971), - [anon_sym_unmanaged] = ACTIONS(2971), - [anon_sym_scoped] = ACTIONS(5036), - [anon_sym_var] = ACTIONS(4737), - [sym_predefined_type] = ACTIONS(5038), - [anon_sym_yield] = ACTIONS(2971), - [anon_sym_when] = ACTIONS(2971), - [anon_sym_from] = ACTIONS(2971), - [anon_sym_into] = ACTIONS(2971), - [anon_sym_join] = ACTIONS(2971), - [anon_sym_on] = ACTIONS(2971), - [anon_sym_equals] = ACTIONS(2971), - [anon_sym_let] = ACTIONS(2971), - [anon_sym_orderby] = ACTIONS(2971), - [anon_sym_ascending] = ACTIONS(2971), - [anon_sym_descending] = ACTIONS(2971), - [anon_sym_group] = ACTIONS(2971), - [anon_sym_by] = ACTIONS(2971), - [anon_sym_select] = ACTIONS(2971), + [aux_sym_type_argument_list_repeat1] = STATE(6837), + [sym__identifier_token] = ACTIONS(2965), + [anon_sym_alias] = ACTIONS(2969), + [anon_sym_global] = ACTIONS(2969), + [anon_sym_COMMA] = ACTIONS(5168), + [anon_sym_LPAREN] = ACTIONS(2977), + [anon_sym_ref] = ACTIONS(5170), + [anon_sym_delegate] = ACTIONS(5172), + [anon_sym_file] = ACTIONS(2969), + [anon_sym_GT] = ACTIONS(5873), + [anon_sym_where] = ACTIONS(2969), + [anon_sym_notnull] = ACTIONS(2969), + [anon_sym_unmanaged] = ACTIONS(2969), + [anon_sym_scoped] = ACTIONS(5178), + [anon_sym_var] = ACTIONS(4705), + [sym_predefined_type] = ACTIONS(5180), + [anon_sym_yield] = ACTIONS(2969), + [anon_sym_when] = ACTIONS(2969), + [anon_sym_from] = ACTIONS(2969), + [anon_sym_into] = ACTIONS(2969), + [anon_sym_join] = ACTIONS(2969), + [anon_sym_on] = ACTIONS(2969), + [anon_sym_equals] = ACTIONS(2969), + [anon_sym_let] = ACTIONS(2969), + [anon_sym_orderby] = ACTIONS(2969), + [anon_sym_ascending] = ACTIONS(2969), + [anon_sym_descending] = ACTIONS(2969), + [anon_sym_group] = ACTIONS(2969), + [anon_sym_by] = ACTIONS(2969), + [anon_sym_select] = ACTIONS(2969), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -516340,8 +515789,25 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3636] = { - [sym_argument_list] = STATE(3886), - [sym_bracketed_argument_list] = STATE(2902), + [sym_argument_list] = STATE(2895), + [sym__name] = STATE(3511), + [sym_alias_qualified_name] = STATE(2907), + [sym__simple_name] = STATE(2907), + [sym_qualified_name] = STATE(2907), + [sym_generic_name] = STATE(2950), + [sym_type] = STATE(2871), + [sym_implicit_type] = STATE(2926), + [sym_array_type] = STATE(3500), + [sym__array_base_type] = STATE(7061), + [sym_nullable_type] = STATE(2942), + [sym_pointer_type] = STATE(2942), + [sym__pointer_base_type] = STATE(7640), + [sym_function_pointer_type] = STATE(2942), + [sym_ref_type] = STATE(2926), + [sym_scoped_type] = STATE(2926), + [sym_tuple_type] = STATE(2943), + [sym_identifier] = STATE(3317), + [sym__reserved_identifier] = STATE(2900), [sym_preproc_region] = STATE(3636), [sym_preproc_endregion] = STATE(3636), [sym_preproc_line] = STATE(3636), @@ -516351,52 +515817,35 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3636), [sym_preproc_define] = STATE(3636), [sym_preproc_undef] = STATE(3636), - [anon_sym_LBRACK] = ACTIONS(5658), - [anon_sym_COMMA] = ACTIONS(5072), - [anon_sym_LPAREN] = ACTIONS(5624), - [anon_sym_LT] = ACTIONS(5662), - [anon_sym_GT] = ACTIONS(5662), - [anon_sym_where] = ACTIONS(5072), - [anon_sym_QMARK] = ACTIONS(5747), - [anon_sym_BANG] = ACTIONS(5666), - [anon_sym_PLUS_PLUS] = ACTIONS(5668), - [anon_sym_DASH_DASH] = ACTIONS(5668), - [anon_sym_PLUS] = ACTIONS(5670), - [anon_sym_DASH] = ACTIONS(5670), - [anon_sym_STAR] = ACTIONS(5672), - [anon_sym_SLASH] = ACTIONS(5674), - [anon_sym_PERCENT] = ACTIONS(5672), - [anon_sym_CARET] = ACTIONS(5676), - [anon_sym_PIPE] = ACTIONS(5749), - [anon_sym_AMP] = ACTIONS(5678), - [anon_sym_LT_LT] = ACTIONS(5680), - [anon_sym_GT_GT] = ACTIONS(5682), - [anon_sym_GT_GT_GT] = ACTIONS(5680), - [anon_sym_EQ_EQ] = ACTIONS(5684), - [anon_sym_BANG_EQ] = ACTIONS(5684), - [anon_sym_GT_EQ] = ACTIONS(5686), - [anon_sym_LT_EQ] = ACTIONS(5686), - [anon_sym_DOT] = ACTIONS(4733), - [anon_sym_switch] = ACTIONS(5688), - [anon_sym_DOT_DOT] = ACTIONS(5690), - [anon_sym_and] = ACTIONS(5072), - [anon_sym_or] = ACTIONS(5074), - [anon_sym_AMP_AMP] = ACTIONS(5753), - [anon_sym_PIPE_PIPE] = ACTIONS(5755), - [anon_sym_QMARK_QMARK] = ACTIONS(5757), - [anon_sym_from] = ACTIONS(5072), - [anon_sym_into] = ACTIONS(5072), - [anon_sym_join] = ACTIONS(5072), - [anon_sym_let] = ACTIONS(5072), - [anon_sym_orderby] = ACTIONS(5072), - [anon_sym_ascending] = ACTIONS(5072), - [anon_sym_descending] = ACTIONS(5072), - [anon_sym_group] = ACTIONS(5072), - [anon_sym_select] = ACTIONS(5072), - [anon_sym_as] = ACTIONS(5692), - [anon_sym_is] = ACTIONS(5694), - [anon_sym_DASH_GT] = ACTIONS(4719), - [anon_sym_with] = ACTIONS(5696), + [sym__identifier_token] = ACTIONS(3814), + [anon_sym_alias] = ACTIONS(3816), + [anon_sym_global] = ACTIONS(3816), + [anon_sym_LBRACK] = ACTIONS(5713), + [anon_sym_LPAREN] = ACTIONS(5715), + [anon_sym_ref] = ACTIONS(4203), + [anon_sym_LBRACE] = ACTIONS(5717), + [anon_sym_delegate] = ACTIONS(5719), + [anon_sym_file] = ACTIONS(3816), + [anon_sym_where] = ACTIONS(3816), + [anon_sym_notnull] = ACTIONS(3816), + [anon_sym_unmanaged] = ACTIONS(3816), + [anon_sym_scoped] = ACTIONS(5875), + [anon_sym_var] = ACTIONS(5723), + [sym_predefined_type] = ACTIONS(5725), + [anon_sym_yield] = ACTIONS(3816), + [anon_sym_when] = ACTIONS(3816), + [anon_sym_from] = ACTIONS(3816), + [anon_sym_into] = ACTIONS(3816), + [anon_sym_join] = ACTIONS(3816), + [anon_sym_on] = ACTIONS(3816), + [anon_sym_equals] = ACTIONS(3816), + [anon_sym_let] = ACTIONS(3816), + [anon_sym_orderby] = ACTIONS(3816), + [anon_sym_ascending] = ACTIONS(3816), + [anon_sym_descending] = ACTIONS(3816), + [anon_sym_group] = ACTIONS(3816), + [anon_sym_by] = ACTIONS(3816), + [anon_sym_select] = ACTIONS(3816), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -516409,6 +515858,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3637] = { + [sym__name] = STATE(6400), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(4068), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(4073), + [sym_type] = STATE(6984), + [sym_implicit_type] = STATE(7035), + [sym_array_type] = STATE(6706), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7421), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(7035), + [sym_scoped_type] = STATE(7035), + [sym_tuple_type] = STATE(6601), + [sym_identifier] = STATE(4081), + [sym__reserved_identifier] = STATE(3654), [sym_preproc_region] = STATE(3637), [sym_preproc_endregion] = STATE(3637), [sym_preproc_line] = STATE(3637), @@ -516418,54 +515885,36 @@ 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), - [anon_sym_EQ] = ACTIONS(5878), - [anon_sym_LBRACK] = ACTIONS(4860), - [anon_sym_LPAREN] = ACTIONS(4860), - [anon_sym_LT] = ACTIONS(4862), - [anon_sym_GT] = ACTIONS(4862), - [anon_sym_in] = ACTIONS(4862), - [anon_sym_QMARK] = ACTIONS(4862), - [anon_sym_BANG] = ACTIONS(4862), - [anon_sym_PLUS_PLUS] = ACTIONS(4860), - [anon_sym_DASH_DASH] = ACTIONS(4860), - [anon_sym_PLUS] = ACTIONS(4862), - [anon_sym_DASH] = ACTIONS(4862), - [anon_sym_STAR] = ACTIONS(4862), - [anon_sym_SLASH] = ACTIONS(4862), - [anon_sym_PERCENT] = ACTIONS(4862), - [anon_sym_CARET] = ACTIONS(4862), - [anon_sym_PIPE] = ACTIONS(4862), - [anon_sym_AMP] = ACTIONS(4862), - [anon_sym_LT_LT] = ACTIONS(4862), - [anon_sym_GT_GT] = ACTIONS(4862), - [anon_sym_GT_GT_GT] = ACTIONS(4862), - [anon_sym_EQ_EQ] = ACTIONS(4860), - [anon_sym_BANG_EQ] = ACTIONS(4860), - [anon_sym_GT_EQ] = ACTIONS(4860), - [anon_sym_LT_EQ] = ACTIONS(4860), - [anon_sym_DOT] = ACTIONS(4862), - [anon_sym_switch] = ACTIONS(4860), - [anon_sym_DOT_DOT] = ACTIONS(4860), - [anon_sym_PLUS_EQ] = ACTIONS(5880), - [anon_sym_DASH_EQ] = ACTIONS(5880), - [anon_sym_STAR_EQ] = ACTIONS(5880), - [anon_sym_SLASH_EQ] = ACTIONS(5880), - [anon_sym_PERCENT_EQ] = ACTIONS(5880), - [anon_sym_AMP_EQ] = ACTIONS(5880), - [anon_sym_CARET_EQ] = ACTIONS(5880), - [anon_sym_PIPE_EQ] = ACTIONS(5880), - [anon_sym_LT_LT_EQ] = ACTIONS(5880), - [anon_sym_GT_GT_EQ] = ACTIONS(5880), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(5880), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(5880), - [anon_sym_AMP_AMP] = ACTIONS(4860), - [anon_sym_PIPE_PIPE] = ACTIONS(4860), - [anon_sym_QMARK_QMARK] = ACTIONS(4862), - [anon_sym_into] = ACTIONS(4860), - [anon_sym_as] = ACTIONS(4860), - [anon_sym_is] = ACTIONS(4860), - [anon_sym_DASH_GT] = ACTIONS(4860), - [anon_sym_with] = ACTIONS(4860), + [aux_sym_type_argument_list_repeat1] = STATE(6986), + [sym__identifier_token] = ACTIONS(2965), + [anon_sym_alias] = ACTIONS(2969), + [anon_sym_global] = ACTIONS(2969), + [anon_sym_COMMA] = ACTIONS(5168), + [anon_sym_LPAREN] = ACTIONS(2977), + [anon_sym_ref] = ACTIONS(5170), + [anon_sym_delegate] = ACTIONS(5172), + [anon_sym_file] = ACTIONS(2969), + [anon_sym_GT] = ACTIONS(5877), + [anon_sym_where] = ACTIONS(2969), + [anon_sym_notnull] = ACTIONS(2969), + [anon_sym_unmanaged] = ACTIONS(2969), + [anon_sym_scoped] = ACTIONS(5178), + [anon_sym_var] = ACTIONS(4705), + [sym_predefined_type] = ACTIONS(5180), + [anon_sym_yield] = ACTIONS(2969), + [anon_sym_when] = ACTIONS(2969), + [anon_sym_from] = ACTIONS(2969), + [anon_sym_into] = ACTIONS(2969), + [anon_sym_join] = ACTIONS(2969), + [anon_sym_on] = ACTIONS(2969), + [anon_sym_equals] = ACTIONS(2969), + [anon_sym_let] = ACTIONS(2969), + [anon_sym_orderby] = ACTIONS(2969), + [anon_sym_ascending] = ACTIONS(2969), + [anon_sym_descending] = ACTIONS(2969), + [anon_sym_group] = ACTIONS(2969), + [anon_sym_by] = ACTIONS(2969), + [anon_sym_select] = ACTIONS(2969), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -516478,8 +515927,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3638] = { - [sym_argument_list] = STATE(3886), - [sym_bracketed_argument_list] = STATE(2902), [sym_preproc_region] = STATE(3638), [sym_preproc_endregion] = STATE(3638), [sym_preproc_line] = STATE(3638), @@ -516489,52 +515936,53 @@ 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), - [anon_sym_LBRACK] = ACTIONS(5658), - [anon_sym_COMMA] = ACTIONS(5882), - [anon_sym_LPAREN] = ACTIONS(5624), - [anon_sym_LT] = ACTIONS(5662), - [anon_sym_GT] = ACTIONS(5662), - [anon_sym_where] = ACTIONS(5882), - [anon_sym_QMARK] = ACTIONS(5747), - [anon_sym_BANG] = ACTIONS(5666), - [anon_sym_PLUS_PLUS] = ACTIONS(5668), - [anon_sym_DASH_DASH] = ACTIONS(5668), - [anon_sym_PLUS] = ACTIONS(5670), - [anon_sym_DASH] = ACTIONS(5670), - [anon_sym_STAR] = ACTIONS(5672), - [anon_sym_SLASH] = ACTIONS(5674), - [anon_sym_PERCENT] = ACTIONS(5672), - [anon_sym_CARET] = ACTIONS(5676), - [anon_sym_PIPE] = ACTIONS(5749), - [anon_sym_AMP] = ACTIONS(5678), - [anon_sym_LT_LT] = ACTIONS(5680), - [anon_sym_GT_GT] = ACTIONS(5682), - [anon_sym_GT_GT_GT] = ACTIONS(5680), - [anon_sym_EQ_EQ] = ACTIONS(5684), - [anon_sym_BANG_EQ] = ACTIONS(5684), - [anon_sym_GT_EQ] = ACTIONS(5686), - [anon_sym_LT_EQ] = ACTIONS(5686), - [anon_sym_DOT] = ACTIONS(4733), - [anon_sym_switch] = ACTIONS(5688), - [anon_sym_DOT_DOT] = ACTIONS(5690), - [anon_sym_and] = ACTIONS(5882), - [anon_sym_or] = ACTIONS(5884), - [anon_sym_AMP_AMP] = ACTIONS(5753), - [anon_sym_PIPE_PIPE] = ACTIONS(5755), - [anon_sym_QMARK_QMARK] = ACTIONS(5757), - [anon_sym_from] = ACTIONS(5882), - [anon_sym_into] = ACTIONS(5882), - [anon_sym_join] = ACTIONS(5882), - [anon_sym_let] = ACTIONS(5882), - [anon_sym_orderby] = ACTIONS(5882), - [anon_sym_ascending] = ACTIONS(5882), - [anon_sym_descending] = ACTIONS(5882), - [anon_sym_group] = ACTIONS(5882), - [anon_sym_select] = ACTIONS(5882), - [anon_sym_as] = ACTIONS(5692), - [anon_sym_is] = ACTIONS(5694), - [anon_sym_DASH_GT] = ACTIONS(4719), - [anon_sym_with] = ACTIONS(5696), + [aux_sym__query_body_repeat2] = STATE(3665), + [anon_sym_LBRACK] = ACTIONS(5879), + [anon_sym_COMMA] = ACTIONS(5879), + [anon_sym_LPAREN] = ACTIONS(5879), + [anon_sym_LT] = ACTIONS(5881), + [anon_sym_GT] = ACTIONS(5881), + [anon_sym_where] = ACTIONS(5879), + [anon_sym_QMARK] = ACTIONS(5881), + [anon_sym_BANG] = ACTIONS(5881), + [anon_sym_PLUS_PLUS] = ACTIONS(5879), + [anon_sym_DASH_DASH] = ACTIONS(5879), + [anon_sym_PLUS] = ACTIONS(5881), + [anon_sym_DASH] = ACTIONS(5881), + [anon_sym_STAR] = ACTIONS(5879), + [anon_sym_SLASH] = ACTIONS(5881), + [anon_sym_PERCENT] = ACTIONS(5879), + [anon_sym_CARET] = ACTIONS(5879), + [anon_sym_PIPE] = ACTIONS(5881), + [anon_sym_AMP] = ACTIONS(5881), + [anon_sym_LT_LT] = ACTIONS(5879), + [anon_sym_GT_GT] = ACTIONS(5881), + [anon_sym_GT_GT_GT] = ACTIONS(5879), + [anon_sym_EQ_EQ] = ACTIONS(5879), + [anon_sym_BANG_EQ] = ACTIONS(5879), + [anon_sym_GT_EQ] = ACTIONS(5879), + [anon_sym_LT_EQ] = ACTIONS(5879), + [anon_sym_DOT] = ACTIONS(5881), + [anon_sym_switch] = ACTIONS(5879), + [anon_sym_DOT_DOT] = ACTIONS(5879), + [anon_sym_and] = ACTIONS(5879), + [anon_sym_or] = ACTIONS(5881), + [anon_sym_AMP_AMP] = ACTIONS(5879), + [anon_sym_PIPE_PIPE] = ACTIONS(5879), + [anon_sym_QMARK_QMARK] = ACTIONS(5879), + [anon_sym_from] = ACTIONS(5879), + [anon_sym_into] = ACTIONS(5883), + [anon_sym_join] = ACTIONS(5879), + [anon_sym_let] = ACTIONS(5879), + [anon_sym_orderby] = ACTIONS(5879), + [anon_sym_ascending] = ACTIONS(5879), + [anon_sym_descending] = ACTIONS(5879), + [anon_sym_group] = ACTIONS(5879), + [anon_sym_select] = ACTIONS(5879), + [anon_sym_as] = ACTIONS(5881), + [anon_sym_is] = ACTIONS(5879), + [anon_sym_DASH_GT] = ACTIONS(5879), + [anon_sym_with] = ACTIONS(5879), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -516547,25 +515995,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3639] = { - [sym_argument_list] = STATE(4259), - [sym__name] = STATE(4478), - [sym_alias_qualified_name] = STATE(4464), - [sym__simple_name] = STATE(4464), - [sym_qualified_name] = STATE(4464), - [sym_generic_name] = STATE(4403), - [sym_type] = STATE(4221), - [sym_implicit_type] = STATE(4374), - [sym_array_type] = STATE(4263), - [sym__array_base_type] = STATE(7155), - [sym_nullable_type] = STATE(4467), - [sym_pointer_type] = STATE(4467), - [sym__pointer_base_type] = STATE(7333), - [sym_function_pointer_type] = STATE(4467), - [sym_ref_type] = STATE(4374), - [sym_scoped_type] = STATE(4374), - [sym_tuple_type] = STATE(4469), - [sym_identifier] = STATE(4215), - [sym__reserved_identifier] = STATE(4297), + [sym__name] = STATE(4369), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(4068), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(4073), + [sym_type] = STATE(4565), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_identifier] = STATE(4081), + [sym__reserved_identifier] = STATE(3654), [sym_preproc_region] = STATE(3639), [sym_preproc_endregion] = STATE(3639), [sym_preproc_line] = STATE(3639), @@ -516575,35 +516022,35 @@ 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(3983), - [anon_sym_alias] = ACTIONS(3985), - [anon_sym_global] = ACTIONS(3985), - [anon_sym_LBRACK] = ACTIONS(5840), - [anon_sym_LPAREN] = ACTIONS(5842), - [anon_sym_ref] = ACTIONS(3998), - [anon_sym_LBRACE] = ACTIONS(5844), - [anon_sym_delegate] = ACTIONS(5846), - [anon_sym_file] = ACTIONS(3985), - [anon_sym_where] = ACTIONS(3985), - [anon_sym_notnull] = ACTIONS(3985), - [anon_sym_unmanaged] = ACTIONS(3985), - [anon_sym_scoped] = ACTIONS(5886), - [anon_sym_var] = ACTIONS(5850), - [sym_predefined_type] = ACTIONS(5852), - [anon_sym_yield] = ACTIONS(3985), - [anon_sym_when] = ACTIONS(3985), - [anon_sym_from] = ACTIONS(3985), - [anon_sym_into] = ACTIONS(3985), - [anon_sym_join] = ACTIONS(3985), - [anon_sym_on] = ACTIONS(3985), - [anon_sym_equals] = ACTIONS(3985), - [anon_sym_let] = ACTIONS(3985), - [anon_sym_orderby] = ACTIONS(3985), - [anon_sym_ascending] = ACTIONS(3985), - [anon_sym_descending] = ACTIONS(3985), - [anon_sym_group] = ACTIONS(3985), - [anon_sym_by] = ACTIONS(3985), - [anon_sym_select] = ACTIONS(3985), + [sym__identifier_token] = ACTIONS(2965), + [anon_sym_alias] = ACTIONS(2969), + [anon_sym_global] = ACTIONS(2969), + [anon_sym_LPAREN] = ACTIONS(2977), + [anon_sym_ref] = ACTIONS(3436), + [anon_sym_struct] = ACTIONS(3921), + [anon_sym_delegate] = ACTIONS(3438), + [anon_sym_file] = ACTIONS(2969), + [anon_sym_readonly] = ACTIONS(2767), + [anon_sym_where] = ACTIONS(2969), + [anon_sym_notnull] = ACTIONS(2969), + [anon_sym_unmanaged] = ACTIONS(2969), + [anon_sym_scoped] = ACTIONS(2993), + [anon_sym_var] = ACTIONS(2995), + [sym_predefined_type] = ACTIONS(2997), + [anon_sym_yield] = ACTIONS(2969), + [anon_sym_when] = ACTIONS(2969), + [anon_sym_from] = ACTIONS(2969), + [anon_sym_into] = ACTIONS(2969), + [anon_sym_join] = ACTIONS(2969), + [anon_sym_on] = ACTIONS(2969), + [anon_sym_equals] = ACTIONS(2969), + [anon_sym_let] = ACTIONS(2969), + [anon_sym_orderby] = ACTIONS(2969), + [anon_sym_ascending] = ACTIONS(2969), + [anon_sym_descending] = ACTIONS(2969), + [anon_sym_group] = ACTIONS(2969), + [anon_sym_by] = ACTIONS(2969), + [anon_sym_select] = ACTIONS(2969), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -516616,25 +516063,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3640] = { - [sym_argument_list] = STATE(3150), - [sym__name] = STATE(3219), - [sym_alias_qualified_name] = STATE(3200), - [sym__simple_name] = STATE(3200), - [sym_qualified_name] = STATE(3200), - [sym_generic_name] = STATE(3156), - [sym_type] = STATE(3127), - [sym_implicit_type] = STATE(3205), - [sym_array_type] = STATE(3138), - [sym__array_base_type] = STATE(7259), - [sym_nullable_type] = STATE(3151), - [sym_pointer_type] = STATE(3151), - [sym__pointer_base_type] = STATE(7662), - [sym_function_pointer_type] = STATE(3151), - [sym_ref_type] = STATE(3205), - [sym_scoped_type] = STATE(3205), - [sym_tuple_type] = STATE(3209), - [sym_identifier] = STATE(3129), - [sym__reserved_identifier] = STATE(3149), [sym_preproc_region] = STATE(3640), [sym_preproc_endregion] = STATE(3640), [sym_preproc_line] = STATE(3640), @@ -516644,35 +516072,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), - [sym__identifier_token] = ACTIONS(3773), - [anon_sym_alias] = ACTIONS(3775), - [anon_sym_global] = ACTIONS(3775), - [anon_sym_LBRACK] = ACTIONS(5700), - [anon_sym_LPAREN] = ACTIONS(5702), - [anon_sym_ref] = ACTIONS(3777), - [anon_sym_LBRACE] = ACTIONS(5704), - [anon_sym_delegate] = ACTIONS(5706), - [anon_sym_file] = ACTIONS(3775), - [anon_sym_where] = ACTIONS(3775), - [anon_sym_notnull] = ACTIONS(3775), - [anon_sym_unmanaged] = ACTIONS(3775), - [anon_sym_scoped] = ACTIONS(5888), - [anon_sym_var] = ACTIONS(5710), - [sym_predefined_type] = ACTIONS(5712), - [anon_sym_yield] = ACTIONS(3775), - [anon_sym_when] = ACTIONS(3775), - [anon_sym_from] = ACTIONS(3775), - [anon_sym_into] = ACTIONS(3775), - [anon_sym_join] = ACTIONS(3775), - [anon_sym_on] = ACTIONS(3775), - [anon_sym_equals] = ACTIONS(3775), - [anon_sym_let] = ACTIONS(3775), - [anon_sym_orderby] = ACTIONS(3775), - [anon_sym_ascending] = ACTIONS(3775), - [anon_sym_descending] = ACTIONS(3775), - [anon_sym_group] = ACTIONS(3775), - [anon_sym_by] = ACTIONS(3775), - [anon_sym_select] = ACTIONS(3775), + [anon_sym_EQ] = ACTIONS(5885), + [anon_sym_LBRACK] = ACTIONS(4811), + [anon_sym_LPAREN] = ACTIONS(4811), + [anon_sym_LT] = ACTIONS(4813), + [anon_sym_GT] = ACTIONS(4813), + [anon_sym_in] = ACTIONS(4811), + [anon_sym_QMARK] = ACTIONS(4813), + [anon_sym_BANG] = ACTIONS(4813), + [anon_sym_PLUS_PLUS] = ACTIONS(4811), + [anon_sym_DASH_DASH] = ACTIONS(4811), + [anon_sym_PLUS] = ACTIONS(4813), + [anon_sym_DASH] = ACTIONS(4813), + [anon_sym_STAR] = ACTIONS(4813), + [anon_sym_SLASH] = ACTIONS(4813), + [anon_sym_PERCENT] = ACTIONS(4813), + [anon_sym_CARET] = ACTIONS(4813), + [anon_sym_PIPE] = ACTIONS(4813), + [anon_sym_AMP] = ACTIONS(4813), + [anon_sym_LT_LT] = ACTIONS(4813), + [anon_sym_GT_GT] = ACTIONS(4813), + [anon_sym_GT_GT_GT] = ACTIONS(4813), + [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(4813), + [anon_sym_switch] = ACTIONS(4811), + [anon_sym_DOT_DOT] = ACTIONS(4811), + [anon_sym_PLUS_EQ] = ACTIONS(5887), + [anon_sym_DASH_EQ] = ACTIONS(5887), + [anon_sym_STAR_EQ] = ACTIONS(5887), + [anon_sym_SLASH_EQ] = ACTIONS(5887), + [anon_sym_PERCENT_EQ] = ACTIONS(5887), + [anon_sym_AMP_EQ] = ACTIONS(5887), + [anon_sym_CARET_EQ] = ACTIONS(5887), + [anon_sym_PIPE_EQ] = ACTIONS(5887), + [anon_sym_LT_LT_EQ] = ACTIONS(5887), + [anon_sym_GT_GT_EQ] = ACTIONS(5887), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(5887), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(5887), + [anon_sym_AMP_AMP] = ACTIONS(4811), + [anon_sym_PIPE_PIPE] = ACTIONS(4811), + [anon_sym_QMARK_QMARK] = ACTIONS(4813), + [anon_sym_as] = ACTIONS(4811), + [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), @@ -516685,25 +516131,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3641] = { - [sym_argument_list] = STATE(3193), - [sym__name] = STATE(3453), - [sym_alias_qualified_name] = STATE(3251), - [sym__simple_name] = STATE(3251), - [sym_qualified_name] = STATE(3251), - [sym_generic_name] = STATE(3246), - [sym_type] = STATE(3132), - [sym_implicit_type] = STATE(3253), - [sym_array_type] = STATE(3356), - [sym__array_base_type] = STATE(7101), - [sym_nullable_type] = STATE(3257), - [sym_pointer_type] = STATE(3257), - [sym__pointer_base_type] = STATE(7546), - [sym_function_pointer_type] = STATE(3257), - [sym_ref_type] = STATE(3253), - [sym_scoped_type] = STATE(3253), - [sym_tuple_type] = STATE(3258), - [sym_identifier] = STATE(3167), - [sym__reserved_identifier] = STATE(3225), [sym_preproc_region] = STATE(3641), [sym_preproc_endregion] = STATE(3641), [sym_preproc_line] = STATE(3641), @@ -516713,35 +516140,53 @@ 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), - [sym__identifier_token] = ACTIONS(3788), - [anon_sym_alias] = ACTIONS(3790), - [anon_sym_global] = ACTIONS(3790), - [anon_sym_LBRACK] = ACTIONS(5812), - [anon_sym_LPAREN] = ACTIONS(5814), - [anon_sym_ref] = ACTIONS(4173), - [anon_sym_LBRACE] = ACTIONS(5816), - [anon_sym_delegate] = ACTIONS(5818), - [anon_sym_file] = ACTIONS(3790), - [anon_sym_where] = ACTIONS(3790), - [anon_sym_notnull] = ACTIONS(3790), - [anon_sym_unmanaged] = ACTIONS(3790), - [anon_sym_scoped] = ACTIONS(5890), - [anon_sym_var] = ACTIONS(5822), - [sym_predefined_type] = ACTIONS(5824), - [anon_sym_yield] = ACTIONS(3790), - [anon_sym_when] = ACTIONS(3790), - [anon_sym_from] = ACTIONS(3790), - [anon_sym_into] = ACTIONS(3790), - [anon_sym_join] = ACTIONS(3790), - [anon_sym_on] = ACTIONS(3790), - [anon_sym_equals] = ACTIONS(3790), - [anon_sym_let] = ACTIONS(3790), - [anon_sym_orderby] = ACTIONS(3790), - [anon_sym_ascending] = ACTIONS(3790), - [anon_sym_descending] = ACTIONS(3790), - [anon_sym_group] = ACTIONS(3790), - [anon_sym_by] = ACTIONS(3790), - [anon_sym_select] = ACTIONS(3790), + [anon_sym_LBRACK] = ACTIONS(4903), + [anon_sym_COMMA] = ACTIONS(4903), + [anon_sym_LPAREN] = ACTIONS(4903), + [anon_sym_LT] = ACTIONS(4905), + [anon_sym_GT] = ACTIONS(4905), + [anon_sym_where] = ACTIONS(4903), + [anon_sym_QMARK] = ACTIONS(4905), + [anon_sym_BANG] = ACTIONS(4905), + [anon_sym_PLUS_PLUS] = ACTIONS(4903), + [anon_sym_DASH_DASH] = ACTIONS(4903), + [anon_sym_PLUS] = ACTIONS(4905), + [anon_sym_DASH] = ACTIONS(4905), + [anon_sym_STAR] = ACTIONS(4903), + [anon_sym_SLASH] = ACTIONS(4905), + [anon_sym_PERCENT] = ACTIONS(4903), + [anon_sym_CARET] = ACTIONS(4903), + [anon_sym_PIPE] = ACTIONS(4905), + [anon_sym_AMP] = ACTIONS(4905), + [anon_sym_LT_LT] = ACTIONS(4903), + [anon_sym_GT_GT] = ACTIONS(4905), + [anon_sym_GT_GT_GT] = ACTIONS(4903), + [anon_sym_EQ_EQ] = ACTIONS(4903), + [anon_sym_BANG_EQ] = ACTIONS(4903), + [anon_sym_GT_EQ] = ACTIONS(4903), + [anon_sym_LT_EQ] = ACTIONS(4903), + [anon_sym_DOT] = ACTIONS(4905), + [anon_sym_switch] = ACTIONS(4903), + [anon_sym_DOT_DOT] = ACTIONS(4903), + [anon_sym_and] = ACTIONS(4903), + [anon_sym_or] = ACTIONS(4905), + [anon_sym_AMP_AMP] = ACTIONS(4903), + [anon_sym_PIPE_PIPE] = ACTIONS(4903), + [anon_sym_QMARK_QMARK] = ACTIONS(4903), + [anon_sym_from] = ACTIONS(4903), + [anon_sym_into] = ACTIONS(4903), + [anon_sym_join] = ACTIONS(4903), + [anon_sym_let] = ACTIONS(4903), + [anon_sym_orderby] = ACTIONS(4903), + [anon_sym_ascending] = ACTIONS(4903), + [anon_sym_descending] = ACTIONS(4903), + [anon_sym_group] = ACTIONS(4903), + [anon_sym_select] = ACTIONS(4903), + [anon_sym_as] = ACTIONS(4905), + [anon_sym_is] = ACTIONS(4903), + [anon_sym_DASH_GT] = ACTIONS(4903), + [anon_sym_with] = ACTIONS(4903), + [aux_sym_raw_string_literal_token1] = ACTIONS(5889), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -516763,54 +516208,53 @@ 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(4761), - [anon_sym_extern] = ACTIONS(4761), - [anon_sym_alias] = ACTIONS(4761), - [anon_sym_global] = ACTIONS(4761), - [anon_sym_unsafe] = ACTIONS(4761), - [anon_sym_static] = ACTIONS(4761), - [anon_sym_LBRACK] = ACTIONS(4763), - [anon_sym_LPAREN] = ACTIONS(4763), - [anon_sym_ref] = ACTIONS(4761), - [anon_sym_delegate] = ACTIONS(4761), - [anon_sym_abstract] = ACTIONS(4761), - [anon_sym_async] = ACTIONS(4761), - [anon_sym_const] = ACTIONS(4761), - [anon_sym_file] = ACTIONS(4761), - [anon_sym_fixed] = ACTIONS(4761), - [anon_sym_internal] = ACTIONS(4761), - [anon_sym_new] = ACTIONS(4761), - [anon_sym_override] = ACTIONS(4761), - [anon_sym_partial] = ACTIONS(4761), - [anon_sym_private] = ACTIONS(4761), - [anon_sym_protected] = ACTIONS(4761), - [anon_sym_public] = ACTIONS(4761), - [anon_sym_readonly] = ACTIONS(4761), - [anon_sym_required] = ACTIONS(4761), - [anon_sym_sealed] = ACTIONS(4761), - [anon_sym_virtual] = ACTIONS(4761), - [anon_sym_volatile] = ACTIONS(4761), - [anon_sym_where] = ACTIONS(4761), - [anon_sym_notnull] = ACTIONS(4761), - [anon_sym_unmanaged] = ACTIONS(4761), - [anon_sym_scoped] = ACTIONS(4761), - [anon_sym_var] = ACTIONS(4761), - [sym_predefined_type] = ACTIONS(4761), - [anon_sym_yield] = ACTIONS(4761), - [anon_sym_when] = ACTIONS(4761), - [anon_sym_from] = ACTIONS(4761), - [anon_sym_into] = ACTIONS(4761), - [anon_sym_join] = ACTIONS(4761), - [anon_sym_on] = ACTIONS(4761), - [anon_sym_equals] = ACTIONS(4761), - [anon_sym_let] = ACTIONS(4761), - [anon_sym_orderby] = ACTIONS(4761), - [anon_sym_ascending] = ACTIONS(4761), - [anon_sym_descending] = ACTIONS(4761), - [anon_sym_group] = ACTIONS(4761), - [anon_sym_by] = ACTIONS(4761), - [anon_sym_select] = ACTIONS(4761), - [aux_sym_preproc_if_token1] = ACTIONS(4763), + [anon_sym_LBRACK] = ACTIONS(4887), + [anon_sym_COMMA] = ACTIONS(4887), + [anon_sym_LPAREN] = ACTIONS(4887), + [anon_sym_LBRACE] = ACTIONS(4887), + [anon_sym_LT] = ACTIONS(4889), + [anon_sym_GT] = ACTIONS(4889), + [anon_sym_where] = ACTIONS(4887), + [anon_sym_QMARK] = ACTIONS(4889), + [anon_sym_BANG] = ACTIONS(4889), + [anon_sym_PLUS_PLUS] = ACTIONS(4887), + [anon_sym_DASH_DASH] = ACTIONS(4887), + [anon_sym_PLUS] = ACTIONS(4889), + [anon_sym_DASH] = ACTIONS(4889), + [anon_sym_STAR] = ACTIONS(4887), + [anon_sym_SLASH] = ACTIONS(4889), + [anon_sym_PERCENT] = ACTIONS(4887), + [anon_sym_CARET] = ACTIONS(4887), + [anon_sym_PIPE] = ACTIONS(4889), + [anon_sym_AMP] = ACTIONS(4889), + [anon_sym_LT_LT] = ACTIONS(4887), + [anon_sym_GT_GT] = ACTIONS(4889), + [anon_sym_GT_GT_GT] = ACTIONS(4887), + [anon_sym_EQ_EQ] = ACTIONS(4887), + [anon_sym_BANG_EQ] = ACTIONS(4887), + [anon_sym_GT_EQ] = ACTIONS(4887), + [anon_sym_LT_EQ] = ACTIONS(4887), + [anon_sym_DOT] = ACTIONS(4889), + [anon_sym_switch] = ACTIONS(4887), + [anon_sym_DOT_DOT] = ACTIONS(4887), + [anon_sym_and] = ACTIONS(4887), + [anon_sym_or] = ACTIONS(4889), + [anon_sym_AMP_AMP] = ACTIONS(4887), + [anon_sym_PIPE_PIPE] = ACTIONS(4887), + [anon_sym_QMARK_QMARK] = ACTIONS(4887), + [anon_sym_from] = ACTIONS(4887), + [anon_sym_into] = ACTIONS(4887), + [anon_sym_join] = ACTIONS(4887), + [anon_sym_let] = ACTIONS(4887), + [anon_sym_orderby] = ACTIONS(4887), + [anon_sym_ascending] = ACTIONS(4887), + [anon_sym_descending] = ACTIONS(4887), + [anon_sym_group] = ACTIONS(4887), + [anon_sym_select] = ACTIONS(4887), + [anon_sym_as] = ACTIONS(4889), + [anon_sym_is] = ACTIONS(4887), + [anon_sym_DASH_GT] = ACTIONS(4887), + [anon_sym_with] = ACTIONS(4887), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -516823,7 +516267,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3643] = { - [sym_modifier] = STATE(3878), [sym_preproc_region] = STATE(3643), [sym_preproc_endregion] = STATE(3643), [sym_preproc_line] = STATE(3643), @@ -516833,53 +516276,53 @@ 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), - [aux_sym__class_declaration_initializer_repeat2] = STATE(3643), - [sym__identifier_token] = ACTIONS(5222), - [anon_sym_extern] = ACTIONS(5892), - [anon_sym_alias] = ACTIONS(5222), - [anon_sym_global] = ACTIONS(5222), - [anon_sym_unsafe] = ACTIONS(5892), - [anon_sym_static] = ACTIONS(5892), - [anon_sym_LPAREN] = ACTIONS(5227), - [anon_sym_ref] = ACTIONS(5222), - [anon_sym_delegate] = ACTIONS(5222), - [anon_sym_abstract] = ACTIONS(5892), - [anon_sym_async] = ACTIONS(5892), - [anon_sym_const] = ACTIONS(5892), - [anon_sym_file] = ACTIONS(5892), - [anon_sym_fixed] = ACTIONS(5892), - [anon_sym_internal] = ACTIONS(5892), - [anon_sym_new] = ACTIONS(5892), - [anon_sym_override] = ACTIONS(5892), - [anon_sym_partial] = ACTIONS(5892), - [anon_sym_private] = ACTIONS(5892), - [anon_sym_protected] = ACTIONS(5892), - [anon_sym_public] = ACTIONS(5892), - [anon_sym_readonly] = ACTIONS(5892), - [anon_sym_required] = ACTIONS(5892), - [anon_sym_sealed] = ACTIONS(5892), - [anon_sym_virtual] = ACTIONS(5892), - [anon_sym_volatile] = ACTIONS(5892), - [anon_sym_where] = ACTIONS(5222), - [anon_sym_notnull] = ACTIONS(5222), - [anon_sym_unmanaged] = ACTIONS(5222), - [anon_sym_scoped] = ACTIONS(5222), - [anon_sym_var] = ACTIONS(5222), - [sym_predefined_type] = ACTIONS(5222), - [anon_sym_yield] = ACTIONS(5222), - [anon_sym_when] = 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_ascending] = ACTIONS(5222), - [anon_sym_descending] = ACTIONS(5222), - [anon_sym_group] = ACTIONS(5222), - [anon_sym_by] = ACTIONS(5222), - [anon_sym_select] = ACTIONS(5222), + [anon_sym_EQ] = ACTIONS(5891), + [anon_sym_LBRACK] = ACTIONS(4811), + [anon_sym_LPAREN] = ACTIONS(4811), + [anon_sym_LT] = ACTIONS(4813), + [anon_sym_GT] = ACTIONS(4813), + [anon_sym_QMARK] = ACTIONS(4813), + [anon_sym_BANG] = ACTIONS(4813), + [anon_sym_PLUS_PLUS] = ACTIONS(4811), + [anon_sym_DASH_DASH] = ACTIONS(4811), + [anon_sym_PLUS] = ACTIONS(4813), + [anon_sym_DASH] = ACTIONS(4813), + [anon_sym_STAR] = ACTIONS(4813), + [anon_sym_SLASH] = ACTIONS(4813), + [anon_sym_PERCENT] = ACTIONS(4813), + [anon_sym_CARET] = ACTIONS(4813), + [anon_sym_PIPE] = ACTIONS(4813), + [anon_sym_AMP] = ACTIONS(4813), + [anon_sym_LT_LT] = ACTIONS(4813), + [anon_sym_GT_GT] = ACTIONS(4813), + [anon_sym_GT_GT_GT] = ACTIONS(4813), + [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(4813), + [anon_sym_switch] = ACTIONS(4811), + [anon_sym_DOT_DOT] = ACTIONS(4811), + [anon_sym_PLUS_EQ] = ACTIONS(5893), + [anon_sym_DASH_EQ] = ACTIONS(5893), + [anon_sym_STAR_EQ] = ACTIONS(5893), + [anon_sym_SLASH_EQ] = ACTIONS(5893), + [anon_sym_PERCENT_EQ] = ACTIONS(5893), + [anon_sym_AMP_EQ] = ACTIONS(5893), + [anon_sym_CARET_EQ] = ACTIONS(5893), + [anon_sym_PIPE_EQ] = ACTIONS(5893), + [anon_sym_LT_LT_EQ] = ACTIONS(5893), + [anon_sym_GT_GT_EQ] = ACTIONS(5893), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(5893), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(5893), + [anon_sym_AMP_AMP] = ACTIONS(4811), + [anon_sym_PIPE_PIPE] = ACTIONS(4811), + [anon_sym_QMARK_QMARK] = ACTIONS(4813), + [anon_sym_equals] = 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_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -516892,25 +516335,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3644] = { - [sym_argument_list] = STATE(3193), - [sym__name] = STATE(3453), - [sym_alias_qualified_name] = STATE(3251), - [sym__simple_name] = STATE(3251), - [sym_qualified_name] = STATE(3251), - [sym_generic_name] = STATE(3246), - [sym_type] = STATE(3132), - [sym_implicit_type] = STATE(3253), - [sym_array_type] = STATE(3356), - [sym__array_base_type] = STATE(7101), - [sym_nullable_type] = STATE(3257), - [sym_pointer_type] = STATE(3257), - [sym__pointer_base_type] = STATE(7546), - [sym_function_pointer_type] = STATE(3257), - [sym_ref_type] = STATE(3253), - [sym_scoped_type] = STATE(3253), - [sym_tuple_type] = STATE(3258), - [sym_identifier] = STATE(3167), - [sym__reserved_identifier] = STATE(3225), [sym_preproc_region] = STATE(3644), [sym_preproc_endregion] = STATE(3644), [sym_preproc_line] = STATE(3644), @@ -516920,35 +516344,53 @@ 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(3788), - [anon_sym_alias] = ACTIONS(3790), - [anon_sym_global] = ACTIONS(3790), - [anon_sym_LBRACK] = ACTIONS(5812), - [anon_sym_LPAREN] = ACTIONS(5814), - [anon_sym_ref] = ACTIONS(4028), - [anon_sym_LBRACE] = ACTIONS(5816), - [anon_sym_delegate] = ACTIONS(5818), - [anon_sym_file] = ACTIONS(3790), - [anon_sym_where] = ACTIONS(3790), - [anon_sym_notnull] = ACTIONS(3790), - [anon_sym_unmanaged] = ACTIONS(3790), - [anon_sym_scoped] = ACTIONS(5895), - [anon_sym_var] = ACTIONS(5822), - [sym_predefined_type] = ACTIONS(5824), - [anon_sym_yield] = ACTIONS(3790), - [anon_sym_when] = ACTIONS(3790), - [anon_sym_from] = ACTIONS(3790), - [anon_sym_into] = ACTIONS(3790), - [anon_sym_join] = ACTIONS(3790), - [anon_sym_on] = ACTIONS(3790), - [anon_sym_equals] = ACTIONS(3790), - [anon_sym_let] = ACTIONS(3790), - [anon_sym_orderby] = ACTIONS(3790), - [anon_sym_ascending] = ACTIONS(3790), - [anon_sym_descending] = ACTIONS(3790), - [anon_sym_group] = ACTIONS(3790), - [anon_sym_by] = ACTIONS(3790), - [anon_sym_select] = ACTIONS(3790), + [anon_sym_LBRACK] = ACTIONS(4863), + [anon_sym_COMMA] = ACTIONS(4863), + [anon_sym_LPAREN] = ACTIONS(4863), + [anon_sym_LBRACE] = ACTIONS(4863), + [anon_sym_LT] = ACTIONS(4865), + [anon_sym_GT] = ACTIONS(4865), + [anon_sym_where] = ACTIONS(4863), + [anon_sym_QMARK] = ACTIONS(4865), + [anon_sym_BANG] = ACTIONS(4865), + [anon_sym_PLUS_PLUS] = ACTIONS(4863), + [anon_sym_DASH_DASH] = ACTIONS(4863), + [anon_sym_PLUS] = ACTIONS(4865), + [anon_sym_DASH] = ACTIONS(4865), + [anon_sym_STAR] = ACTIONS(4863), + [anon_sym_SLASH] = ACTIONS(4865), + [anon_sym_PERCENT] = ACTIONS(4863), + [anon_sym_CARET] = ACTIONS(4863), + [anon_sym_PIPE] = ACTIONS(4865), + [anon_sym_AMP] = ACTIONS(4865), + [anon_sym_LT_LT] = ACTIONS(4863), + [anon_sym_GT_GT] = ACTIONS(4865), + [anon_sym_GT_GT_GT] = ACTIONS(4863), + [anon_sym_EQ_EQ] = ACTIONS(4863), + [anon_sym_BANG_EQ] = ACTIONS(4863), + [anon_sym_GT_EQ] = ACTIONS(4863), + [anon_sym_LT_EQ] = ACTIONS(4863), + [anon_sym_DOT] = ACTIONS(4865), + [anon_sym_switch] = ACTIONS(4863), + [anon_sym_DOT_DOT] = ACTIONS(4863), + [anon_sym_and] = ACTIONS(4863), + [anon_sym_or] = ACTIONS(4865), + [anon_sym_AMP_AMP] = ACTIONS(4863), + [anon_sym_PIPE_PIPE] = ACTIONS(4863), + [anon_sym_QMARK_QMARK] = ACTIONS(4863), + [anon_sym_from] = ACTIONS(4863), + [anon_sym_into] = ACTIONS(4863), + [anon_sym_join] = ACTIONS(4863), + [anon_sym_let] = ACTIONS(4863), + [anon_sym_orderby] = ACTIONS(4863), + [anon_sym_ascending] = ACTIONS(4863), + [anon_sym_descending] = ACTIONS(4863), + [anon_sym_group] = ACTIONS(4863), + [anon_sym_select] = ACTIONS(4863), + [anon_sym_as] = ACTIONS(4865), + [anon_sym_is] = ACTIONS(4863), + [anon_sym_DASH_GT] = ACTIONS(4863), + [anon_sym_with] = ACTIONS(4863), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -516961,6 +516403,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3645] = { + [sym_argument_list] = STATE(3771), + [sym_bracketed_argument_list] = STATE(2892), [sym_preproc_region] = STATE(3645), [sym_preproc_endregion] = STATE(3645), [sym_preproc_line] = STATE(3645), @@ -516970,54 +516414,51 @@ 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(4699), - [anon_sym_extern] = ACTIONS(4699), - [anon_sym_alias] = ACTIONS(4699), - [anon_sym_global] = ACTIONS(4699), - [anon_sym_unsafe] = ACTIONS(4699), - [anon_sym_static] = ACTIONS(4699), - [anon_sym_LBRACK] = ACTIONS(4701), - [anon_sym_LPAREN] = ACTIONS(4701), - [anon_sym_ref] = ACTIONS(4699), - [anon_sym_delegate] = ACTIONS(4699), - [anon_sym_abstract] = ACTIONS(4699), - [anon_sym_async] = ACTIONS(4699), - [anon_sym_const] = ACTIONS(4699), - [anon_sym_file] = ACTIONS(4699), - [anon_sym_fixed] = ACTIONS(4699), - [anon_sym_internal] = ACTIONS(4699), - [anon_sym_new] = ACTIONS(4699), - [anon_sym_override] = ACTIONS(4699), - [anon_sym_partial] = ACTIONS(4699), - [anon_sym_private] = ACTIONS(4699), - [anon_sym_protected] = ACTIONS(4699), - [anon_sym_public] = ACTIONS(4699), - [anon_sym_readonly] = ACTIONS(4699), - [anon_sym_required] = ACTIONS(4699), - [anon_sym_sealed] = ACTIONS(4699), - [anon_sym_virtual] = ACTIONS(4699), - [anon_sym_volatile] = ACTIONS(4699), - [anon_sym_where] = ACTIONS(4699), - [anon_sym_notnull] = ACTIONS(4699), - [anon_sym_unmanaged] = ACTIONS(4699), - [anon_sym_scoped] = ACTIONS(4699), - [anon_sym_var] = ACTIONS(4699), - [sym_predefined_type] = ACTIONS(4699), - [anon_sym_yield] = ACTIONS(4699), - [anon_sym_when] = ACTIONS(4699), - [anon_sym_from] = ACTIONS(4699), - [anon_sym_into] = ACTIONS(4699), - [anon_sym_join] = ACTIONS(4699), - [anon_sym_on] = ACTIONS(4699), - [anon_sym_equals] = ACTIONS(4699), - [anon_sym_let] = ACTIONS(4699), - [anon_sym_orderby] = ACTIONS(4699), - [anon_sym_ascending] = ACTIONS(4699), - [anon_sym_descending] = ACTIONS(4699), - [anon_sym_group] = ACTIONS(4699), - [anon_sym_by] = ACTIONS(4699), - [anon_sym_select] = ACTIONS(4699), - [aux_sym_preproc_if_token1] = ACTIONS(4701), + [anon_sym_LBRACK] = ACTIONS(5650), + [anon_sym_COMMA] = ACTIONS(5737), + [anon_sym_LPAREN] = ACTIONS(5591), + [anon_sym_LT] = ACTIONS(5895), + [anon_sym_GT] = ACTIONS(5895), + [anon_sym_where] = ACTIONS(5737), + [anon_sym_QMARK] = ACTIONS(5739), + [anon_sym_BANG] = ACTIONS(5658), + [anon_sym_PLUS_PLUS] = ACTIONS(5660), + [anon_sym_DASH_DASH] = ACTIONS(5660), + [anon_sym_PLUS] = ACTIONS(5897), + [anon_sym_DASH] = ACTIONS(5897), + [anon_sym_STAR] = ACTIONS(5899), + [anon_sym_SLASH] = ACTIONS(5901), + [anon_sym_PERCENT] = ACTIONS(5899), + [anon_sym_CARET] = ACTIONS(5903), + [anon_sym_PIPE] = ACTIONS(5739), + [anon_sym_AMP] = ACTIONS(5905), + [anon_sym_LT_LT] = ACTIONS(5907), + [anon_sym_GT_GT] = ACTIONS(5909), + [anon_sym_GT_GT_GT] = ACTIONS(5907), + [anon_sym_EQ_EQ] = ACTIONS(5911), + [anon_sym_BANG_EQ] = ACTIONS(5911), + [anon_sym_GT_EQ] = ACTIONS(5913), + [anon_sym_LT_EQ] = ACTIONS(5913), + [anon_sym_DOT] = ACTIONS(4697), + [anon_sym_switch] = ACTIONS(5682), + [anon_sym_DOT_DOT] = ACTIONS(5915), + [anon_sym_and] = ACTIONS(5737), + [anon_sym_or] = ACTIONS(5739), + [anon_sym_AMP_AMP] = ACTIONS(5737), + [anon_sym_PIPE_PIPE] = ACTIONS(5737), + [anon_sym_QMARK_QMARK] = ACTIONS(5737), + [anon_sym_from] = ACTIONS(5737), + [anon_sym_join] = ACTIONS(5737), + [anon_sym_let] = ACTIONS(5737), + [anon_sym_orderby] = ACTIONS(5737), + [anon_sym_ascending] = ACTIONS(5737), + [anon_sym_descending] = ACTIONS(5737), + [anon_sym_group] = ACTIONS(5737), + [anon_sym_select] = ACTIONS(5737), + [anon_sym_as] = ACTIONS(5917), + [anon_sym_is] = ACTIONS(5919), + [anon_sym_DASH_GT] = ACTIONS(4699), + [anon_sym_with] = ACTIONS(5698), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -517039,54 +516480,53 @@ 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(4757), - [anon_sym_extern] = ACTIONS(4757), - [anon_sym_alias] = ACTIONS(4757), - [anon_sym_global] = ACTIONS(4757), - [anon_sym_unsafe] = ACTIONS(4757), - [anon_sym_static] = ACTIONS(4757), - [anon_sym_LBRACK] = ACTIONS(4759), - [anon_sym_LPAREN] = ACTIONS(4759), - [anon_sym_ref] = ACTIONS(4757), - [anon_sym_delegate] = ACTIONS(4757), - [anon_sym_abstract] = ACTIONS(4757), - [anon_sym_async] = ACTIONS(4757), - [anon_sym_const] = ACTIONS(4757), - [anon_sym_file] = ACTIONS(4757), - [anon_sym_fixed] = ACTIONS(4757), - [anon_sym_internal] = ACTIONS(4757), - [anon_sym_new] = ACTIONS(4757), - [anon_sym_override] = ACTIONS(4757), - [anon_sym_partial] = ACTIONS(4757), - [anon_sym_private] = ACTIONS(4757), - [anon_sym_protected] = ACTIONS(4757), - [anon_sym_public] = ACTIONS(4757), - [anon_sym_readonly] = ACTIONS(4757), - [anon_sym_required] = ACTIONS(4757), - [anon_sym_sealed] = ACTIONS(4757), - [anon_sym_virtual] = ACTIONS(4757), - [anon_sym_volatile] = ACTIONS(4757), - [anon_sym_where] = ACTIONS(4757), - [anon_sym_notnull] = ACTIONS(4757), - [anon_sym_unmanaged] = ACTIONS(4757), - [anon_sym_scoped] = ACTIONS(4757), - [anon_sym_var] = ACTIONS(4757), - [sym_predefined_type] = ACTIONS(4757), - [anon_sym_yield] = ACTIONS(4757), - [anon_sym_when] = ACTIONS(4757), - [anon_sym_from] = ACTIONS(4757), - [anon_sym_into] = ACTIONS(4757), - [anon_sym_join] = ACTIONS(4757), - [anon_sym_on] = ACTIONS(4757), - [anon_sym_equals] = ACTIONS(4757), - [anon_sym_let] = ACTIONS(4757), - [anon_sym_orderby] = ACTIONS(4757), - [anon_sym_ascending] = ACTIONS(4757), - [anon_sym_descending] = ACTIONS(4757), - [anon_sym_group] = ACTIONS(4757), - [anon_sym_by] = ACTIONS(4757), - [anon_sym_select] = ACTIONS(4757), - [aux_sym_preproc_if_token1] = ACTIONS(4759), + [sym__identifier_token] = ACTIONS(3466), + [anon_sym_extern] = ACTIONS(3466), + [anon_sym_alias] = ACTIONS(3466), + [anon_sym_global] = ACTIONS(3466), + [anon_sym_unsafe] = ACTIONS(3466), + [anon_sym_static] = ACTIONS(3466), + [anon_sym_abstract] = ACTIONS(3466), + [anon_sym_async] = ACTIONS(3466), + [anon_sym_const] = ACTIONS(3466), + [anon_sym_file] = ACTIONS(3466), + [anon_sym_fixed] = ACTIONS(3466), + [anon_sym_internal] = ACTIONS(3466), + [anon_sym_new] = ACTIONS(3466), + [anon_sym_override] = ACTIONS(3466), + [anon_sym_partial] = ACTIONS(3466), + [anon_sym_private] = ACTIONS(3466), + [anon_sym_protected] = ACTIONS(3466), + [anon_sym_public] = ACTIONS(3466), + [anon_sym_readonly] = ACTIONS(3466), + [anon_sym_required] = ACTIONS(3466), + [anon_sym_sealed] = ACTIONS(3466), + [anon_sym_virtual] = ACTIONS(3466), + [anon_sym_volatile] = ACTIONS(3466), + [anon_sym_where] = ACTIONS(3466), + [anon_sym_notnull] = ACTIONS(3466), + [anon_sym_unmanaged] = ACTIONS(3466), + [anon_sym_get] = ACTIONS(3466), + [anon_sym_set] = ACTIONS(3466), + [anon_sym_add] = ACTIONS(3466), + [anon_sym_remove] = ACTIONS(3466), + [anon_sym_init] = ACTIONS(3466), + [anon_sym_scoped] = ACTIONS(3466), + [anon_sym_var] = ACTIONS(3466), + [anon_sym_yield] = ACTIONS(3466), + [anon_sym_when] = ACTIONS(3466), + [anon_sym_from] = ACTIONS(3466), + [anon_sym_into] = ACTIONS(3466), + [anon_sym_join] = ACTIONS(3466), + [anon_sym_on] = ACTIONS(3466), + [anon_sym_equals] = ACTIONS(3466), + [anon_sym_let] = ACTIONS(3466), + [anon_sym_orderby] = ACTIONS(3466), + [anon_sym_ascending] = ACTIONS(3466), + [anon_sym_descending] = ACTIONS(3466), + [anon_sym_group] = ACTIONS(3466), + [anon_sym_by] = ACTIONS(3466), + [anon_sym_select] = ACTIONS(3466), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -517099,25 +516539,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3647] = { - [sym_argument_list] = STATE(2905), - [sym__name] = STATE(3534), - [sym_alias_qualified_name] = STATE(2921), - [sym__simple_name] = STATE(2921), - [sym_qualified_name] = STATE(2921), - [sym_generic_name] = STATE(2929), - [sym_type] = STATE(2891), - [sym_implicit_type] = STATE(2935), - [sym_array_type] = STATE(3484), - [sym__array_base_type] = STATE(7122), - [sym_nullable_type] = STATE(2961), - [sym_pointer_type] = STATE(2961), - [sym__pointer_base_type] = STATE(7545), - [sym_function_pointer_type] = STATE(2961), - [sym_ref_type] = STATE(2935), - [sym_scoped_type] = STATE(2935), - [sym_tuple_type] = STATE(2944), - [sym_identifier] = STATE(3260), - [sym__reserved_identifier] = STATE(2904), + [sym_argument_list] = STATE(3771), + [sym_bracketed_argument_list] = STATE(2892), [sym_preproc_region] = STATE(3647), [sym_preproc_endregion] = STATE(3647), [sym_preproc_line] = STATE(3647), @@ -517127,35 +516550,51 @@ 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(3861), - [anon_sym_alias] = ACTIONS(3863), - [anon_sym_global] = ACTIONS(3863), - [anon_sym_LBRACK] = ACTIONS(5785), - [anon_sym_LPAREN] = ACTIONS(5787), - [anon_sym_ref] = ACTIONS(4225), - [anon_sym_LBRACE] = ACTIONS(5789), - [anon_sym_delegate] = ACTIONS(5791), - [anon_sym_file] = ACTIONS(3863), - [anon_sym_where] = ACTIONS(3863), - [anon_sym_notnull] = ACTIONS(3863), - [anon_sym_unmanaged] = ACTIONS(3863), - [anon_sym_scoped] = ACTIONS(5897), - [anon_sym_var] = ACTIONS(5795), - [sym_predefined_type] = ACTIONS(5797), - [anon_sym_yield] = ACTIONS(3863), - [anon_sym_when] = ACTIONS(3863), - [anon_sym_from] = ACTIONS(3863), - [anon_sym_into] = ACTIONS(3863), - [anon_sym_join] = ACTIONS(3863), - [anon_sym_on] = ACTIONS(3863), - [anon_sym_equals] = ACTIONS(3863), - [anon_sym_let] = ACTIONS(3863), - [anon_sym_orderby] = ACTIONS(3863), - [anon_sym_ascending] = ACTIONS(3863), - [anon_sym_descending] = ACTIONS(3863), - [anon_sym_group] = ACTIONS(3863), - [anon_sym_by] = ACTIONS(3863), - [anon_sym_select] = ACTIONS(3863), + [anon_sym_LBRACK] = ACTIONS(5650), + [anon_sym_COMMA] = ACTIONS(5801), + [anon_sym_LPAREN] = ACTIONS(5591), + [anon_sym_LT] = ACTIONS(5895), + [anon_sym_GT] = ACTIONS(5895), + [anon_sym_where] = ACTIONS(5801), + [anon_sym_QMARK] = ACTIONS(5921), + [anon_sym_BANG] = ACTIONS(5658), + [anon_sym_PLUS_PLUS] = ACTIONS(5660), + [anon_sym_DASH_DASH] = ACTIONS(5660), + [anon_sym_PLUS] = ACTIONS(5897), + [anon_sym_DASH] = ACTIONS(5897), + [anon_sym_STAR] = ACTIONS(5899), + [anon_sym_SLASH] = ACTIONS(5901), + [anon_sym_PERCENT] = ACTIONS(5899), + [anon_sym_CARET] = ACTIONS(5903), + [anon_sym_PIPE] = ACTIONS(5923), + [anon_sym_AMP] = ACTIONS(5905), + [anon_sym_LT_LT] = ACTIONS(5907), + [anon_sym_GT_GT] = ACTIONS(5909), + [anon_sym_GT_GT_GT] = ACTIONS(5907), + [anon_sym_EQ_EQ] = ACTIONS(5911), + [anon_sym_BANG_EQ] = ACTIONS(5911), + [anon_sym_GT_EQ] = ACTIONS(5913), + [anon_sym_LT_EQ] = ACTIONS(5913), + [anon_sym_DOT] = ACTIONS(4697), + [anon_sym_switch] = ACTIONS(5682), + [anon_sym_DOT_DOT] = ACTIONS(5915), + [anon_sym_and] = ACTIONS(5801), + [anon_sym_or] = ACTIONS(5803), + [anon_sym_AMP_AMP] = ACTIONS(5925), + [anon_sym_PIPE_PIPE] = ACTIONS(5927), + [anon_sym_QMARK_QMARK] = ACTIONS(5929), + [anon_sym_from] = ACTIONS(5801), + [anon_sym_join] = ACTIONS(5801), + [anon_sym_let] = ACTIONS(5801), + [anon_sym_orderby] = ACTIONS(5801), + [anon_sym_ascending] = ACTIONS(5801), + [anon_sym_descending] = ACTIONS(5801), + [anon_sym_group] = ACTIONS(5801), + [anon_sym_select] = ACTIONS(5801), + [anon_sym_as] = ACTIONS(5917), + [anon_sym_is] = ACTIONS(5919), + [anon_sym_DASH_GT] = ACTIONS(4699), + [anon_sym_with] = ACTIONS(5698), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -517168,8 +516607,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3648] = { - [sym_argument_list] = STATE(3886), - [sym_bracketed_argument_list] = STATE(2902), [sym_preproc_region] = STATE(3648), [sym_preproc_endregion] = STATE(3648), [sym_preproc_line] = STATE(3648), @@ -517179,52 +516616,53 @@ 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), - [anon_sym_LBRACK] = ACTIONS(5658), - [anon_sym_COMMA] = ACTIONS(5899), - [anon_sym_LPAREN] = ACTIONS(5624), - [anon_sym_LT] = ACTIONS(5662), - [anon_sym_GT] = ACTIONS(5662), - [anon_sym_where] = ACTIONS(5899), - [anon_sym_QMARK] = ACTIONS(5747), - [anon_sym_BANG] = ACTIONS(5666), - [anon_sym_PLUS_PLUS] = ACTIONS(5668), - [anon_sym_DASH_DASH] = ACTIONS(5668), - [anon_sym_PLUS] = ACTIONS(5670), - [anon_sym_DASH] = ACTIONS(5670), - [anon_sym_STAR] = ACTIONS(5672), - [anon_sym_SLASH] = ACTIONS(5674), - [anon_sym_PERCENT] = ACTIONS(5672), - [anon_sym_CARET] = ACTIONS(5676), - [anon_sym_PIPE] = ACTIONS(5749), - [anon_sym_AMP] = ACTIONS(5678), - [anon_sym_LT_LT] = ACTIONS(5680), - [anon_sym_GT_GT] = ACTIONS(5682), - [anon_sym_GT_GT_GT] = ACTIONS(5680), - [anon_sym_EQ_EQ] = ACTIONS(5684), - [anon_sym_BANG_EQ] = ACTIONS(5684), - [anon_sym_GT_EQ] = ACTIONS(5686), - [anon_sym_LT_EQ] = ACTIONS(5686), - [anon_sym_DOT] = ACTIONS(4733), - [anon_sym_switch] = ACTIONS(5688), - [anon_sym_DOT_DOT] = ACTIONS(5690), - [anon_sym_and] = ACTIONS(5899), - [anon_sym_or] = ACTIONS(5901), - [anon_sym_AMP_AMP] = ACTIONS(5753), - [anon_sym_PIPE_PIPE] = ACTIONS(5755), - [anon_sym_QMARK_QMARK] = ACTIONS(5757), - [anon_sym_from] = ACTIONS(5899), - [anon_sym_into] = ACTIONS(5899), - [anon_sym_join] = ACTIONS(5899), - [anon_sym_let] = ACTIONS(5899), - [anon_sym_orderby] = ACTIONS(5899), - [anon_sym_ascending] = ACTIONS(5899), - [anon_sym_descending] = ACTIONS(5899), - [anon_sym_group] = ACTIONS(5899), - [anon_sym_select] = ACTIONS(5899), - [anon_sym_as] = ACTIONS(5692), - [anon_sym_is] = ACTIONS(5694), - [anon_sym_DASH_GT] = ACTIONS(4719), - [anon_sym_with] = ACTIONS(5696), + [anon_sym_LBRACK] = ACTIONS(4874), + [anon_sym_COMMA] = ACTIONS(4874), + [anon_sym_LPAREN] = ACTIONS(4874), + [anon_sym_LT] = ACTIONS(4876), + [anon_sym_GT] = ACTIONS(4876), + [anon_sym_where] = ACTIONS(4874), + [anon_sym_QMARK] = ACTIONS(4876), + [anon_sym_BANG] = ACTIONS(4876), + [anon_sym_PLUS_PLUS] = ACTIONS(4874), + [anon_sym_DASH_DASH] = ACTIONS(4874), + [anon_sym_PLUS] = ACTIONS(4876), + [anon_sym_DASH] = ACTIONS(4876), + [anon_sym_STAR] = ACTIONS(4874), + [anon_sym_SLASH] = ACTIONS(4876), + [anon_sym_PERCENT] = ACTIONS(4874), + [anon_sym_CARET] = ACTIONS(4874), + [anon_sym_PIPE] = ACTIONS(4876), + [anon_sym_AMP] = ACTIONS(4876), + [anon_sym_LT_LT] = ACTIONS(4874), + [anon_sym_GT_GT] = ACTIONS(4876), + [anon_sym_GT_GT_GT] = ACTIONS(4874), + [anon_sym_EQ_EQ] = ACTIONS(4874), + [anon_sym_BANG_EQ] = ACTIONS(4874), + [anon_sym_GT_EQ] = ACTIONS(4874), + [anon_sym_LT_EQ] = ACTIONS(4874), + [anon_sym_DOT] = ACTIONS(4876), + [anon_sym_switch] = ACTIONS(4874), + [anon_sym_DOT_DOT] = ACTIONS(4874), + [anon_sym_and] = ACTIONS(4874), + [anon_sym_or] = ACTIONS(4876), + [anon_sym_AMP_AMP] = ACTIONS(4874), + [anon_sym_PIPE_PIPE] = ACTIONS(4874), + [anon_sym_QMARK_QMARK] = ACTIONS(4874), + [anon_sym_from] = ACTIONS(4874), + [anon_sym_into] = ACTIONS(4874), + [anon_sym_join] = ACTIONS(4874), + [anon_sym_let] = ACTIONS(4874), + [anon_sym_orderby] = ACTIONS(4874), + [anon_sym_ascending] = ACTIONS(4874), + [anon_sym_descending] = ACTIONS(4874), + [anon_sym_group] = ACTIONS(4874), + [anon_sym_select] = ACTIONS(4874), + [anon_sym_as] = ACTIONS(4876), + [anon_sym_is] = ACTIONS(4874), + [anon_sym_DASH_GT] = ACTIONS(4874), + [anon_sym_with] = ACTIONS(4874), + [sym_string_literal_encoding] = ACTIONS(5931), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -517237,8 +516675,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3649] = { - [sym_argument_list] = STATE(3886), - [sym_bracketed_argument_list] = STATE(2902), + [sym_argument_list] = STATE(3771), + [sym_bracketed_argument_list] = STATE(2892), [sym_preproc_region] = STATE(3649), [sym_preproc_endregion] = STATE(3649), [sym_preproc_line] = STATE(3649), @@ -517248,51 +516686,51 @@ 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), - [anon_sym_LBRACK] = ACTIONS(5658), - [anon_sym_COMMA] = ACTIONS(5777), - [anon_sym_LPAREN] = ACTIONS(5624), - [anon_sym_LT] = ACTIONS(5903), - [anon_sym_GT] = ACTIONS(5903), - [anon_sym_where] = ACTIONS(5777), - [anon_sym_QMARK] = ACTIONS(5905), - [anon_sym_BANG] = ACTIONS(5666), - [anon_sym_PLUS_PLUS] = ACTIONS(5668), - [anon_sym_DASH_DASH] = ACTIONS(5668), - [anon_sym_PLUS] = ACTIONS(5907), - [anon_sym_DASH] = ACTIONS(5907), - [anon_sym_STAR] = ACTIONS(5909), - [anon_sym_SLASH] = ACTIONS(5911), - [anon_sym_PERCENT] = ACTIONS(5909), - [anon_sym_CARET] = ACTIONS(5913), - [anon_sym_PIPE] = ACTIONS(5915), - [anon_sym_AMP] = ACTIONS(5917), - [anon_sym_LT_LT] = ACTIONS(5919), - [anon_sym_GT_GT] = ACTIONS(5921), - [anon_sym_GT_GT_GT] = ACTIONS(5919), - [anon_sym_EQ_EQ] = ACTIONS(5923), - [anon_sym_BANG_EQ] = ACTIONS(5923), - [anon_sym_GT_EQ] = ACTIONS(5925), - [anon_sym_LT_EQ] = ACTIONS(5925), - [anon_sym_DOT] = ACTIONS(4733), - [anon_sym_switch] = ACTIONS(5688), - [anon_sym_DOT_DOT] = ACTIONS(5927), - [anon_sym_and] = ACTIONS(5777), - [anon_sym_or] = ACTIONS(5779), - [anon_sym_AMP_AMP] = ACTIONS(5929), - [anon_sym_PIPE_PIPE] = ACTIONS(5931), - [anon_sym_QMARK_QMARK] = ACTIONS(5933), - [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(5935), - [anon_sym_is] = ACTIONS(5937), - [anon_sym_DASH_GT] = ACTIONS(4719), - [anon_sym_with] = ACTIONS(5696), + [anon_sym_LBRACK] = ACTIONS(5650), + [anon_sym_COMMA] = ACTIONS(5865), + [anon_sym_LPAREN] = ACTIONS(5591), + [anon_sym_LT] = ACTIONS(5895), + [anon_sym_GT] = ACTIONS(5895), + [anon_sym_where] = ACTIONS(5865), + [anon_sym_QMARK] = ACTIONS(5921), + [anon_sym_BANG] = ACTIONS(5658), + [anon_sym_PLUS_PLUS] = ACTIONS(5660), + [anon_sym_DASH_DASH] = ACTIONS(5660), + [anon_sym_PLUS] = ACTIONS(5897), + [anon_sym_DASH] = ACTIONS(5897), + [anon_sym_STAR] = ACTIONS(5899), + [anon_sym_SLASH] = ACTIONS(5901), + [anon_sym_PERCENT] = ACTIONS(5899), + [anon_sym_CARET] = ACTIONS(5903), + [anon_sym_PIPE] = ACTIONS(5923), + [anon_sym_AMP] = ACTIONS(5905), + [anon_sym_LT_LT] = ACTIONS(5907), + [anon_sym_GT_GT] = ACTIONS(5909), + [anon_sym_GT_GT_GT] = ACTIONS(5907), + [anon_sym_EQ_EQ] = ACTIONS(5911), + [anon_sym_BANG_EQ] = ACTIONS(5911), + [anon_sym_GT_EQ] = ACTIONS(5913), + [anon_sym_LT_EQ] = ACTIONS(5913), + [anon_sym_DOT] = ACTIONS(4697), + [anon_sym_switch] = ACTIONS(5682), + [anon_sym_DOT_DOT] = ACTIONS(5915), + [anon_sym_and] = ACTIONS(5865), + [anon_sym_or] = ACTIONS(5867), + [anon_sym_AMP_AMP] = ACTIONS(5925), + [anon_sym_PIPE_PIPE] = ACTIONS(5927), + [anon_sym_QMARK_QMARK] = ACTIONS(5929), + [anon_sym_from] = ACTIONS(5865), + [anon_sym_join] = ACTIONS(5865), + [anon_sym_let] = ACTIONS(5865), + [anon_sym_orderby] = ACTIONS(5865), + [anon_sym_ascending] = ACTIONS(5865), + [anon_sym_descending] = ACTIONS(5865), + [anon_sym_group] = ACTIONS(5865), + [anon_sym_select] = ACTIONS(5865), + [anon_sym_as] = ACTIONS(5917), + [anon_sym_is] = ACTIONS(5919), + [anon_sym_DASH_GT] = ACTIONS(4699), + [anon_sym_with] = ACTIONS(5698), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -517305,6 +516743,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3650] = { + [sym_argument_list] = STATE(3771), + [sym_bracketed_argument_list] = STATE(2892), [sym_preproc_region] = STATE(3650), [sym_preproc_endregion] = STATE(3650), [sym_preproc_line] = STATE(3650), @@ -517314,53 +516754,51 @@ 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), - [anon_sym_LBRACK] = ACTIONS(4902), - [anon_sym_COMMA] = ACTIONS(4902), - [anon_sym_LPAREN] = ACTIONS(4902), - [anon_sym_LT] = ACTIONS(4904), - [anon_sym_GT] = ACTIONS(4904), - [anon_sym_where] = ACTIONS(4902), - [anon_sym_QMARK] = ACTIONS(4904), - [anon_sym_BANG] = ACTIONS(4904), - [anon_sym_PLUS_PLUS] = ACTIONS(4902), - [anon_sym_DASH_DASH] = ACTIONS(4902), - [anon_sym_PLUS] = ACTIONS(4904), - [anon_sym_DASH] = ACTIONS(4904), - [anon_sym_STAR] = ACTIONS(4902), - [anon_sym_SLASH] = ACTIONS(4904), - [anon_sym_PERCENT] = ACTIONS(4902), - [anon_sym_CARET] = ACTIONS(4902), - [anon_sym_PIPE] = ACTIONS(4904), - [anon_sym_AMP] = ACTIONS(4904), - [anon_sym_LT_LT] = ACTIONS(4902), - [anon_sym_GT_GT] = ACTIONS(4904), - [anon_sym_GT_GT_GT] = ACTIONS(4902), - [anon_sym_EQ_EQ] = ACTIONS(4902), - [anon_sym_BANG_EQ] = ACTIONS(4902), - [anon_sym_GT_EQ] = ACTIONS(4902), - [anon_sym_LT_EQ] = ACTIONS(4902), - [anon_sym_DOT] = ACTIONS(4904), - [anon_sym_switch] = ACTIONS(4902), - [anon_sym_DOT_DOT] = ACTIONS(4902), - [anon_sym_and] = ACTIONS(4902), - [anon_sym_or] = ACTIONS(4904), - [anon_sym_AMP_AMP] = ACTIONS(4902), - [anon_sym_PIPE_PIPE] = ACTIONS(4902), - [anon_sym_QMARK_QMARK] = ACTIONS(4902), - [anon_sym_from] = ACTIONS(4902), - [anon_sym_into] = ACTIONS(4902), - [anon_sym_join] = ACTIONS(4902), - [anon_sym_let] = ACTIONS(4902), - [anon_sym_orderby] = ACTIONS(4902), - [anon_sym_ascending] = ACTIONS(4902), - [anon_sym_descending] = ACTIONS(4902), - [anon_sym_group] = ACTIONS(4902), - [anon_sym_select] = ACTIONS(4902), - [anon_sym_as] = ACTIONS(4904), - [anon_sym_is] = ACTIONS(4902), - [anon_sym_DASH_GT] = ACTIONS(4902), - [anon_sym_with] = ACTIONS(4902), - [aux_sym_raw_string_literal_token1] = ACTIONS(5939), + [anon_sym_LBRACK] = ACTIONS(5650), + [anon_sym_COMMA] = ACTIONS(1147), + [anon_sym_LPAREN] = ACTIONS(5591), + [anon_sym_LT] = ACTIONS(1161), + [anon_sym_GT] = ACTIONS(1161), + [anon_sym_where] = ACTIONS(1147), + [anon_sym_QMARK] = ACTIONS(1161), + [anon_sym_BANG] = ACTIONS(5658), + [anon_sym_PLUS_PLUS] = ACTIONS(5660), + [anon_sym_DASH_DASH] = ACTIONS(5660), + [anon_sym_PLUS] = ACTIONS(1161), + [anon_sym_DASH] = ACTIONS(1161), + [anon_sym_STAR] = ACTIONS(1147), + [anon_sym_SLASH] = ACTIONS(1161), + [anon_sym_PERCENT] = ACTIONS(1147), + [anon_sym_CARET] = ACTIONS(1147), + [anon_sym_PIPE] = ACTIONS(1161), + [anon_sym_AMP] = ACTIONS(1161), + [anon_sym_LT_LT] = ACTIONS(1147), + [anon_sym_GT_GT] = ACTIONS(1161), + [anon_sym_GT_GT_GT] = ACTIONS(1147), + [anon_sym_EQ_EQ] = ACTIONS(1147), + [anon_sym_BANG_EQ] = ACTIONS(1147), + [anon_sym_GT_EQ] = ACTIONS(1147), + [anon_sym_LT_EQ] = ACTIONS(1147), + [anon_sym_DOT] = ACTIONS(4697), + [anon_sym_switch] = ACTIONS(1147), + [anon_sym_DOT_DOT] = ACTIONS(5915), + [anon_sym_and] = ACTIONS(1147), + [anon_sym_or] = ACTIONS(1161), + [anon_sym_AMP_AMP] = ACTIONS(1147), + [anon_sym_PIPE_PIPE] = ACTIONS(1147), + [anon_sym_QMARK_QMARK] = ACTIONS(1147), + [anon_sym_from] = ACTIONS(1147), + [anon_sym_join] = ACTIONS(1147), + [anon_sym_let] = ACTIONS(1147), + [anon_sym_orderby] = ACTIONS(1147), + [anon_sym_ascending] = ACTIONS(1147), + [anon_sym_descending] = ACTIONS(1147), + [anon_sym_group] = ACTIONS(1147), + [anon_sym_select] = ACTIONS(1147), + [anon_sym_as] = ACTIONS(1161), + [anon_sym_is] = ACTIONS(1147), + [anon_sym_DASH_GT] = ACTIONS(4699), + [anon_sym_with] = ACTIONS(1147), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -517382,53 +516820,53 @@ 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), - [anon_sym_LBRACK] = ACTIONS(4929), - [anon_sym_COMMA] = ACTIONS(4929), - [anon_sym_LPAREN] = ACTIONS(4929), - [anon_sym_LBRACE] = ACTIONS(4929), - [anon_sym_LT] = ACTIONS(4931), - [anon_sym_GT] = ACTIONS(4931), - [anon_sym_where] = ACTIONS(4929), - [anon_sym_QMARK] = ACTIONS(4931), - [anon_sym_BANG] = ACTIONS(4931), - [anon_sym_PLUS_PLUS] = ACTIONS(4929), - [anon_sym_DASH_DASH] = ACTIONS(4929), - [anon_sym_PLUS] = ACTIONS(4931), - [anon_sym_DASH] = ACTIONS(4931), - [anon_sym_STAR] = ACTIONS(4929), - [anon_sym_SLASH] = ACTIONS(4931), - [anon_sym_PERCENT] = ACTIONS(4929), - [anon_sym_CARET] = ACTIONS(4929), - [anon_sym_PIPE] = ACTIONS(4931), - [anon_sym_AMP] = ACTIONS(4931), - [anon_sym_LT_LT] = ACTIONS(4929), - [anon_sym_GT_GT] = ACTIONS(4931), - [anon_sym_GT_GT_GT] = ACTIONS(4929), - [anon_sym_EQ_EQ] = ACTIONS(4929), - [anon_sym_BANG_EQ] = ACTIONS(4929), - [anon_sym_GT_EQ] = ACTIONS(4929), - [anon_sym_LT_EQ] = ACTIONS(4929), - [anon_sym_DOT] = ACTIONS(4931), - [anon_sym_switch] = ACTIONS(4929), - [anon_sym_DOT_DOT] = ACTIONS(4929), - [anon_sym_and] = ACTIONS(4929), - [anon_sym_or] = ACTIONS(4931), - [anon_sym_AMP_AMP] = ACTIONS(4929), - [anon_sym_PIPE_PIPE] = ACTIONS(4929), - [anon_sym_QMARK_QMARK] = ACTIONS(4929), - [anon_sym_from] = ACTIONS(4929), - [anon_sym_into] = ACTIONS(4929), - [anon_sym_join] = ACTIONS(4929), - [anon_sym_let] = ACTIONS(4929), - [anon_sym_orderby] = ACTIONS(4929), - [anon_sym_ascending] = ACTIONS(4929), - [anon_sym_descending] = ACTIONS(4929), - [anon_sym_group] = ACTIONS(4929), - [anon_sym_select] = ACTIONS(4929), - [anon_sym_as] = ACTIONS(4931), - [anon_sym_is] = ACTIONS(4929), - [anon_sym_DASH_GT] = ACTIONS(4929), - [anon_sym_with] = ACTIONS(4929), + [aux_sym__query_body_repeat2] = STATE(3638), + [anon_sym_LBRACK] = ACTIONS(5933), + [anon_sym_COMMA] = ACTIONS(5933), + [anon_sym_LPAREN] = ACTIONS(5933), + [anon_sym_LT] = ACTIONS(5935), + [anon_sym_GT] = ACTIONS(5935), + [anon_sym_where] = ACTIONS(5933), + [anon_sym_QMARK] = ACTIONS(5935), + [anon_sym_BANG] = ACTIONS(5935), + [anon_sym_PLUS_PLUS] = ACTIONS(5933), + [anon_sym_DASH_DASH] = ACTIONS(5933), + [anon_sym_PLUS] = ACTIONS(5935), + [anon_sym_DASH] = ACTIONS(5935), + [anon_sym_STAR] = ACTIONS(5933), + [anon_sym_SLASH] = ACTIONS(5935), + [anon_sym_PERCENT] = ACTIONS(5933), + [anon_sym_CARET] = ACTIONS(5933), + [anon_sym_PIPE] = ACTIONS(5935), + [anon_sym_AMP] = ACTIONS(5935), + [anon_sym_LT_LT] = ACTIONS(5933), + [anon_sym_GT_GT] = ACTIONS(5935), + [anon_sym_GT_GT_GT] = ACTIONS(5933), + [anon_sym_EQ_EQ] = ACTIONS(5933), + [anon_sym_BANG_EQ] = ACTIONS(5933), + [anon_sym_GT_EQ] = ACTIONS(5933), + [anon_sym_LT_EQ] = ACTIONS(5933), + [anon_sym_DOT] = ACTIONS(5935), + [anon_sym_switch] = ACTIONS(5933), + [anon_sym_DOT_DOT] = ACTIONS(5933), + [anon_sym_and] = ACTIONS(5933), + [anon_sym_or] = ACTIONS(5935), + [anon_sym_AMP_AMP] = ACTIONS(5933), + [anon_sym_PIPE_PIPE] = ACTIONS(5933), + [anon_sym_QMARK_QMARK] = ACTIONS(5933), + [anon_sym_from] = ACTIONS(5933), + [anon_sym_into] = ACTIONS(5883), + [anon_sym_join] = ACTIONS(5933), + [anon_sym_let] = ACTIONS(5933), + [anon_sym_orderby] = ACTIONS(5933), + [anon_sym_ascending] = ACTIONS(5933), + [anon_sym_descending] = ACTIONS(5933), + [anon_sym_group] = ACTIONS(5933), + [anon_sym_select] = ACTIONS(5933), + [anon_sym_as] = ACTIONS(5935), + [anon_sym_is] = ACTIONS(5933), + [anon_sym_DASH_GT] = ACTIONS(5933), + [anon_sym_with] = ACTIONS(5933), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -517450,53 +516888,53 @@ 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), - [sym__identifier_token] = ACTIONS(5254), - [anon_sym_extern] = ACTIONS(5254), - [anon_sym_alias] = ACTIONS(5254), - [anon_sym_global] = ACTIONS(5254), - [anon_sym_unsafe] = ACTIONS(5254), - [anon_sym_static] = ACTIONS(5254), - [anon_sym_abstract] = ACTIONS(5254), - [anon_sym_async] = ACTIONS(5254), - [anon_sym_const] = ACTIONS(5254), - [anon_sym_file] = ACTIONS(5254), - [anon_sym_fixed] = ACTIONS(5254), - [anon_sym_internal] = ACTIONS(5254), - [anon_sym_new] = ACTIONS(5254), - [anon_sym_override] = ACTIONS(5254), - [anon_sym_partial] = ACTIONS(5254), - [anon_sym_private] = ACTIONS(5254), - [anon_sym_protected] = ACTIONS(5254), - [anon_sym_public] = ACTIONS(5254), - [anon_sym_readonly] = ACTIONS(5254), - [anon_sym_required] = ACTIONS(5254), - [anon_sym_sealed] = ACTIONS(5254), - [anon_sym_virtual] = ACTIONS(5254), - [anon_sym_volatile] = ACTIONS(5254), - [anon_sym_where] = ACTIONS(5254), - [anon_sym_notnull] = ACTIONS(5254), - [anon_sym_unmanaged] = ACTIONS(5254), - [anon_sym_get] = ACTIONS(5254), - [anon_sym_set] = ACTIONS(5254), - [anon_sym_add] = ACTIONS(5254), - [anon_sym_remove] = ACTIONS(5254), - [anon_sym_init] = ACTIONS(5254), - [anon_sym_scoped] = ACTIONS(5254), - [anon_sym_var] = ACTIONS(5254), - [anon_sym_yield] = ACTIONS(5254), - [anon_sym_when] = ACTIONS(5254), - [anon_sym_from] = ACTIONS(5254), - [anon_sym_into] = 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_ascending] = ACTIONS(5254), - [anon_sym_descending] = ACTIONS(5254), - [anon_sym_group] = ACTIONS(5254), - [anon_sym_by] = ACTIONS(5254), - [anon_sym_select] = ACTIONS(5254), + [anon_sym_LBRACK] = ACTIONS(4880), + [anon_sym_COMMA] = ACTIONS(4880), + [anon_sym_LPAREN] = ACTIONS(4880), + [anon_sym_LBRACE] = ACTIONS(4880), + [anon_sym_LT] = ACTIONS(4882), + [anon_sym_GT] = ACTIONS(4882), + [anon_sym_where] = ACTIONS(4880), + [anon_sym_QMARK] = ACTIONS(4882), + [anon_sym_BANG] = ACTIONS(4882), + [anon_sym_PLUS_PLUS] = ACTIONS(4880), + [anon_sym_DASH_DASH] = ACTIONS(4880), + [anon_sym_PLUS] = ACTIONS(4882), + [anon_sym_DASH] = ACTIONS(4882), + [anon_sym_STAR] = ACTIONS(4880), + [anon_sym_SLASH] = ACTIONS(4882), + [anon_sym_PERCENT] = ACTIONS(4880), + [anon_sym_CARET] = ACTIONS(4880), + [anon_sym_PIPE] = ACTIONS(4882), + [anon_sym_AMP] = ACTIONS(4882), + [anon_sym_LT_LT] = ACTIONS(4880), + [anon_sym_GT_GT] = ACTIONS(4882), + [anon_sym_GT_GT_GT] = ACTIONS(4880), + [anon_sym_EQ_EQ] = ACTIONS(4880), + [anon_sym_BANG_EQ] = ACTIONS(4880), + [anon_sym_GT_EQ] = ACTIONS(4880), + [anon_sym_LT_EQ] = ACTIONS(4880), + [anon_sym_DOT] = ACTIONS(4882), + [anon_sym_switch] = ACTIONS(4880), + [anon_sym_DOT_DOT] = ACTIONS(4880), + [anon_sym_and] = ACTIONS(4880), + [anon_sym_or] = ACTIONS(4882), + [anon_sym_AMP_AMP] = ACTIONS(4880), + [anon_sym_PIPE_PIPE] = ACTIONS(4880), + [anon_sym_QMARK_QMARK] = ACTIONS(4880), + [anon_sym_from] = ACTIONS(4880), + [anon_sym_into] = ACTIONS(4880), + [anon_sym_join] = ACTIONS(4880), + [anon_sym_let] = ACTIONS(4880), + [anon_sym_orderby] = ACTIONS(4880), + [anon_sym_ascending] = ACTIONS(4880), + [anon_sym_descending] = ACTIONS(4880), + [anon_sym_group] = ACTIONS(4880), + [anon_sym_select] = ACTIONS(4880), + [anon_sym_as] = ACTIONS(4882), + [anon_sym_is] = ACTIONS(4880), + [anon_sym_DASH_GT] = ACTIONS(4880), + [anon_sym_with] = ACTIONS(4880), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -517509,6 +516947,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3653] = { + [sym_argument_list] = STATE(3771), + [sym_bracketed_argument_list] = STATE(2892), [sym_preproc_region] = STATE(3653), [sym_preproc_endregion] = STATE(3653), [sym_preproc_line] = STATE(3653), @@ -517518,53 +516958,51 @@ 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), - [anon_sym_EQ] = ACTIONS(5941), - [anon_sym_LBRACK] = ACTIONS(4860), - [anon_sym_LPAREN] = ACTIONS(4860), - [anon_sym_LT] = ACTIONS(4862), - [anon_sym_GT] = ACTIONS(4862), - [anon_sym_QMARK] = ACTIONS(4862), - [anon_sym_BANG] = ACTIONS(4862), - [anon_sym_PLUS_PLUS] = ACTIONS(4860), - [anon_sym_DASH_DASH] = ACTIONS(4860), - [anon_sym_PLUS] = ACTIONS(4862), - [anon_sym_DASH] = ACTIONS(4862), - [anon_sym_STAR] = ACTIONS(4862), - [anon_sym_SLASH] = ACTIONS(4862), - [anon_sym_PERCENT] = ACTIONS(4862), - [anon_sym_CARET] = ACTIONS(4862), - [anon_sym_PIPE] = ACTIONS(4862), - [anon_sym_AMP] = ACTIONS(4862), - [anon_sym_LT_LT] = ACTIONS(4862), - [anon_sym_GT_GT] = ACTIONS(4862), - [anon_sym_GT_GT_GT] = ACTIONS(4862), - [anon_sym_EQ_EQ] = ACTIONS(4860), - [anon_sym_BANG_EQ] = ACTIONS(4860), - [anon_sym_GT_EQ] = ACTIONS(4860), - [anon_sym_LT_EQ] = ACTIONS(4860), - [anon_sym_DOT] = ACTIONS(4862), - [anon_sym_switch] = ACTIONS(4860), - [anon_sym_DOT_DOT] = ACTIONS(4860), - [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(4860), - [anon_sym_PIPE_PIPE] = ACTIONS(4860), - [anon_sym_QMARK_QMARK] = ACTIONS(4862), - [anon_sym_equals] = ACTIONS(4860), - [anon_sym_as] = ACTIONS(4860), - [anon_sym_is] = ACTIONS(4860), - [anon_sym_DASH_GT] = ACTIONS(4860), - [anon_sym_with] = ACTIONS(4860), + [anon_sym_LBRACK] = ACTIONS(5650), + [anon_sym_COMMA] = ACTIONS(5737), + [anon_sym_LPAREN] = ACTIONS(5591), + [anon_sym_LT] = ACTIONS(5739), + [anon_sym_GT] = ACTIONS(5739), + [anon_sym_where] = ACTIONS(5737), + [anon_sym_QMARK] = ACTIONS(5739), + [anon_sym_BANG] = ACTIONS(5658), + [anon_sym_PLUS_PLUS] = ACTIONS(5660), + [anon_sym_DASH_DASH] = ACTIONS(5660), + [anon_sym_PLUS] = ACTIONS(5897), + [anon_sym_DASH] = ACTIONS(5897), + [anon_sym_STAR] = ACTIONS(5899), + [anon_sym_SLASH] = ACTIONS(5901), + [anon_sym_PERCENT] = ACTIONS(5899), + [anon_sym_CARET] = ACTIONS(5737), + [anon_sym_PIPE] = ACTIONS(5739), + [anon_sym_AMP] = ACTIONS(5739), + [anon_sym_LT_LT] = ACTIONS(5737), + [anon_sym_GT_GT] = ACTIONS(5739), + [anon_sym_GT_GT_GT] = ACTIONS(5737), + [anon_sym_EQ_EQ] = ACTIONS(5737), + [anon_sym_BANG_EQ] = ACTIONS(5737), + [anon_sym_GT_EQ] = ACTIONS(5737), + [anon_sym_LT_EQ] = ACTIONS(5737), + [anon_sym_DOT] = ACTIONS(4697), + [anon_sym_switch] = ACTIONS(5682), + [anon_sym_DOT_DOT] = ACTIONS(5915), + [anon_sym_and] = ACTIONS(5737), + [anon_sym_or] = ACTIONS(5739), + [anon_sym_AMP_AMP] = ACTIONS(5737), + [anon_sym_PIPE_PIPE] = ACTIONS(5737), + [anon_sym_QMARK_QMARK] = ACTIONS(5737), + [anon_sym_from] = ACTIONS(5737), + [anon_sym_join] = ACTIONS(5737), + [anon_sym_let] = ACTIONS(5737), + [anon_sym_orderby] = ACTIONS(5737), + [anon_sym_ascending] = ACTIONS(5737), + [anon_sym_descending] = ACTIONS(5737), + [anon_sym_group] = ACTIONS(5737), + [anon_sym_select] = ACTIONS(5737), + [anon_sym_as] = ACTIONS(5739), + [anon_sym_is] = ACTIONS(5737), + [anon_sym_DASH_GT] = ACTIONS(4699), + [anon_sym_with] = ACTIONS(5698), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -517577,8 +517015,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3654] = { - [sym_argument_list] = STATE(3886), - [sym_bracketed_argument_list] = STATE(2902), [sym_preproc_region] = STATE(3654), [sym_preproc_endregion] = STATE(3654), [sym_preproc_line] = STATE(3654), @@ -517588,51 +517024,53 @@ 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), - [anon_sym_LBRACK] = ACTIONS(5658), - [anon_sym_COMMA] = ACTIONS(5660), - [anon_sym_LPAREN] = ACTIONS(5624), - [anon_sym_LT] = ACTIONS(5903), - [anon_sym_GT] = ACTIONS(5903), - [anon_sym_where] = ACTIONS(5660), - [anon_sym_QMARK] = ACTIONS(5664), - [anon_sym_BANG] = ACTIONS(5666), - [anon_sym_PLUS_PLUS] = ACTIONS(5668), - [anon_sym_DASH_DASH] = ACTIONS(5668), - [anon_sym_PLUS] = ACTIONS(5907), - [anon_sym_DASH] = ACTIONS(5907), - [anon_sym_STAR] = ACTIONS(5909), - [anon_sym_SLASH] = ACTIONS(5911), - [anon_sym_PERCENT] = ACTIONS(5909), - [anon_sym_CARET] = ACTIONS(5913), - [anon_sym_PIPE] = ACTIONS(5915), - [anon_sym_AMP] = ACTIONS(5917), - [anon_sym_LT_LT] = ACTIONS(5919), - [anon_sym_GT_GT] = ACTIONS(5921), - [anon_sym_GT_GT_GT] = ACTIONS(5919), - [anon_sym_EQ_EQ] = ACTIONS(5923), - [anon_sym_BANG_EQ] = ACTIONS(5923), - [anon_sym_GT_EQ] = ACTIONS(5925), - [anon_sym_LT_EQ] = ACTIONS(5925), - [anon_sym_DOT] = ACTIONS(4733), - [anon_sym_switch] = ACTIONS(5688), - [anon_sym_DOT_DOT] = ACTIONS(5927), - [anon_sym_and] = ACTIONS(5660), - [anon_sym_or] = ACTIONS(5664), - [anon_sym_AMP_AMP] = ACTIONS(5929), - [anon_sym_PIPE_PIPE] = ACTIONS(5931), - [anon_sym_QMARK_QMARK] = ACTIONS(5933), - [anon_sym_from] = ACTIONS(5660), - [anon_sym_join] = ACTIONS(5660), - [anon_sym_let] = ACTIONS(5660), - [anon_sym_orderby] = ACTIONS(5660), - [anon_sym_ascending] = ACTIONS(5660), - [anon_sym_descending] = ACTIONS(5660), - [anon_sym_group] = ACTIONS(5660), - [anon_sym_select] = ACTIONS(5660), - [anon_sym_as] = ACTIONS(5935), - [anon_sym_is] = ACTIONS(5937), - [anon_sym_DASH_GT] = ACTIONS(4719), - [anon_sym_with] = ACTIONS(5696), + [sym__identifier_token] = ACTIONS(3634), + [anon_sym_alias] = ACTIONS(3634), + [anon_sym_SEMI] = ACTIONS(3636), + [anon_sym_global] = ACTIONS(3634), + [anon_sym_EQ] = ACTIONS(3634), + [anon_sym_LBRACK] = ACTIONS(3636), + [anon_sym_COLON] = ACTIONS(3634), + [anon_sym_COMMA] = ACTIONS(3636), + [anon_sym_RBRACK] = ACTIONS(3636), + [anon_sym_LPAREN] = ACTIONS(3636), + [anon_sym_RPAREN] = ACTIONS(3636), + [anon_sym_LBRACE] = ACTIONS(3636), + [anon_sym_RBRACE] = ACTIONS(3636), + [anon_sym_file] = ACTIONS(3634), + [anon_sym_LT] = ACTIONS(3636), + [anon_sym_GT] = ACTIONS(3636), + [anon_sym_in] = ACTIONS(3634), + [anon_sym_where] = ACTIONS(3634), + [anon_sym_QMARK] = ACTIONS(3636), + [anon_sym_notnull] = ACTIONS(3634), + [anon_sym_unmanaged] = ACTIONS(3634), + [anon_sym_operator] = ACTIONS(3634), + [anon_sym_STAR] = ACTIONS(3636), + [anon_sym_this] = ACTIONS(3634), + [anon_sym_DOT] = ACTIONS(3636), + [anon_sym_scoped] = ACTIONS(3634), + [anon_sym_EQ_GT] = ACTIONS(3636), + [anon_sym_COLON_COLON] = ACTIONS(3636), + [anon_sym_var] = ACTIONS(3634), + [anon_sym_yield] = ACTIONS(3634), + [anon_sym_when] = ACTIONS(3634), + [sym_discard] = ACTIONS(3634), + [anon_sym_and] = ACTIONS(3634), + [anon_sym_or] = ACTIONS(3634), + [anon_sym_from] = ACTIONS(3634), + [anon_sym_into] = ACTIONS(3634), + [anon_sym_join] = ACTIONS(3634), + [anon_sym_on] = ACTIONS(3634), + [anon_sym_equals] = ACTIONS(3634), + [anon_sym_let] = ACTIONS(3634), + [anon_sym_orderby] = ACTIONS(3634), + [anon_sym_ascending] = ACTIONS(3634), + [anon_sym_descending] = ACTIONS(3634), + [anon_sym_group] = ACTIONS(3634), + [anon_sym_by] = ACTIONS(3634), + [anon_sym_select] = ACTIONS(3634), + [anon_sym_DASH_GT] = ACTIONS(3636), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -517645,8 +517083,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3655] = { - [sym_argument_list] = STATE(3886), - [sym_bracketed_argument_list] = STATE(2902), [sym_preproc_region] = STATE(3655), [sym_preproc_endregion] = STATE(3655), [sym_preproc_line] = STATE(3655), @@ -517656,51 +517092,53 @@ 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), - [anon_sym_LBRACK] = ACTIONS(5658), - [anon_sym_COMMA] = ACTIONS(1221), - [anon_sym_LPAREN] = ACTIONS(5624), - [anon_sym_LT] = ACTIONS(1223), - [anon_sym_GT] = ACTIONS(1223), - [anon_sym_where] = ACTIONS(1221), - [anon_sym_QMARK] = ACTIONS(1223), - [anon_sym_BANG] = ACTIONS(5666), - [anon_sym_PLUS_PLUS] = ACTIONS(5668), - [anon_sym_DASH_DASH] = ACTIONS(5668), - [anon_sym_PLUS] = ACTIONS(1223), - [anon_sym_DASH] = ACTIONS(1223), - [anon_sym_STAR] = ACTIONS(1221), - [anon_sym_SLASH] = ACTIONS(1223), - [anon_sym_PERCENT] = ACTIONS(1221), - [anon_sym_CARET] = ACTIONS(1221), - [anon_sym_PIPE] = ACTIONS(1223), - [anon_sym_AMP] = ACTIONS(1223), - [anon_sym_LT_LT] = ACTIONS(1221), - [anon_sym_GT_GT] = ACTIONS(1223), - [anon_sym_GT_GT_GT] = ACTIONS(1221), - [anon_sym_EQ_EQ] = ACTIONS(1221), - [anon_sym_BANG_EQ] = ACTIONS(1221), - [anon_sym_GT_EQ] = ACTIONS(1221), - [anon_sym_LT_EQ] = ACTIONS(1221), - [anon_sym_DOT] = ACTIONS(4733), - [anon_sym_switch] = ACTIONS(1221), - [anon_sym_DOT_DOT] = ACTIONS(5927), - [anon_sym_and] = ACTIONS(1221), - [anon_sym_or] = ACTIONS(1223), - [anon_sym_AMP_AMP] = ACTIONS(1221), - [anon_sym_PIPE_PIPE] = ACTIONS(1221), - [anon_sym_QMARK_QMARK] = ACTIONS(1221), - [anon_sym_from] = ACTIONS(1221), - [anon_sym_join] = ACTIONS(1221), - [anon_sym_let] = ACTIONS(1221), - [anon_sym_orderby] = ACTIONS(1221), - [anon_sym_ascending] = ACTIONS(1221), - [anon_sym_descending] = ACTIONS(1221), - [anon_sym_group] = ACTIONS(1221), - [anon_sym_select] = ACTIONS(1221), - [anon_sym_as] = ACTIONS(1223), - [anon_sym_is] = ACTIONS(1221), - [anon_sym_DASH_GT] = ACTIONS(4719), - [anon_sym_with] = ACTIONS(1221), + [sym__identifier_token] = ACTIONS(5219), + [anon_sym_extern] = ACTIONS(5219), + [anon_sym_alias] = ACTIONS(5219), + [anon_sym_global] = ACTIONS(5219), + [anon_sym_unsafe] = ACTIONS(5219), + [anon_sym_static] = ACTIONS(5219), + [anon_sym_abstract] = ACTIONS(5219), + [anon_sym_async] = ACTIONS(5219), + [anon_sym_const] = ACTIONS(5219), + [anon_sym_file] = ACTIONS(5219), + [anon_sym_fixed] = ACTIONS(5219), + [anon_sym_internal] = ACTIONS(5219), + [anon_sym_new] = ACTIONS(5219), + [anon_sym_override] = ACTIONS(5219), + [anon_sym_partial] = ACTIONS(5219), + [anon_sym_private] = ACTIONS(5219), + [anon_sym_protected] = ACTIONS(5219), + [anon_sym_public] = ACTIONS(5219), + [anon_sym_readonly] = ACTIONS(5219), + [anon_sym_required] = ACTIONS(5219), + [anon_sym_sealed] = ACTIONS(5219), + [anon_sym_virtual] = ACTIONS(5219), + [anon_sym_volatile] = ACTIONS(5219), + [anon_sym_where] = ACTIONS(5219), + [anon_sym_notnull] = ACTIONS(5219), + [anon_sym_unmanaged] = ACTIONS(5219), + [anon_sym_get] = ACTIONS(5219), + [anon_sym_set] = ACTIONS(5219), + [anon_sym_add] = ACTIONS(5219), + [anon_sym_remove] = ACTIONS(5219), + [anon_sym_init] = ACTIONS(5219), + [anon_sym_scoped] = ACTIONS(5219), + [anon_sym_var] = ACTIONS(5219), + [anon_sym_yield] = ACTIONS(5219), + [anon_sym_when] = ACTIONS(5219), + [anon_sym_from] = ACTIONS(5219), + [anon_sym_into] = ACTIONS(5219), + [anon_sym_join] = ACTIONS(5219), + [anon_sym_on] = ACTIONS(5219), + [anon_sym_equals] = ACTIONS(5219), + [anon_sym_let] = ACTIONS(5219), + [anon_sym_orderby] = ACTIONS(5219), + [anon_sym_ascending] = ACTIONS(5219), + [anon_sym_descending] = ACTIONS(5219), + [anon_sym_group] = ACTIONS(5219), + [anon_sym_by] = ACTIONS(5219), + [anon_sym_select] = ACTIONS(5219), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -517713,6 +517151,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3656] = { + [sym_argument_list] = STATE(3771), + [sym_bracketed_argument_list] = STATE(2892), [sym_preproc_region] = STATE(3656), [sym_preproc_endregion] = STATE(3656), [sym_preproc_line] = STATE(3656), @@ -517722,53 +517162,51 @@ 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_EQ] = ACTIONS(5945), - [anon_sym_LBRACK] = ACTIONS(4860), - [anon_sym_LPAREN] = ACTIONS(4860), - [anon_sym_LT] = ACTIONS(4862), - [anon_sym_GT] = ACTIONS(4862), - [anon_sym_QMARK] = ACTIONS(4862), - [anon_sym_BANG] = ACTIONS(4862), - [anon_sym_PLUS_PLUS] = ACTIONS(4860), - [anon_sym_DASH_DASH] = ACTIONS(4860), - [anon_sym_PLUS] = ACTIONS(4862), - [anon_sym_DASH] = ACTIONS(4862), - [anon_sym_STAR] = ACTIONS(4862), - [anon_sym_SLASH] = ACTIONS(4862), - [anon_sym_PERCENT] = ACTIONS(4862), - [anon_sym_CARET] = ACTIONS(4862), - [anon_sym_PIPE] = ACTIONS(4862), - [anon_sym_AMP] = ACTIONS(4862), - [anon_sym_LT_LT] = ACTIONS(4862), - [anon_sym_GT_GT] = ACTIONS(4862), - [anon_sym_GT_GT_GT] = ACTIONS(4862), - [anon_sym_EQ_EQ] = ACTIONS(4860), - [anon_sym_BANG_EQ] = ACTIONS(4860), - [anon_sym_GT_EQ] = ACTIONS(4860), - [anon_sym_LT_EQ] = ACTIONS(4860), - [anon_sym_DOT] = ACTIONS(4862), - [anon_sym_switch] = ACTIONS(4860), - [anon_sym_DOT_DOT] = ACTIONS(4860), - [anon_sym_PLUS_EQ] = ACTIONS(5947), - [anon_sym_DASH_EQ] = ACTIONS(5947), - [anon_sym_STAR_EQ] = ACTIONS(5947), - [anon_sym_SLASH_EQ] = ACTIONS(5947), - [anon_sym_PERCENT_EQ] = ACTIONS(5947), - [anon_sym_AMP_EQ] = ACTIONS(5947), - [anon_sym_CARET_EQ] = ACTIONS(5947), - [anon_sym_PIPE_EQ] = ACTIONS(5947), - [anon_sym_LT_LT_EQ] = ACTIONS(5947), - [anon_sym_GT_GT_EQ] = ACTIONS(5947), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(5947), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(5947), - [anon_sym_AMP_AMP] = ACTIONS(4860), - [anon_sym_PIPE_PIPE] = ACTIONS(4860), - [anon_sym_QMARK_QMARK] = ACTIONS(4862), - [anon_sym_by] = ACTIONS(4860), - [anon_sym_as] = ACTIONS(4860), - [anon_sym_is] = ACTIONS(4860), - [anon_sym_DASH_GT] = ACTIONS(4860), - [anon_sym_with] = ACTIONS(4860), + [anon_sym_LBRACK] = ACTIONS(5650), + [anon_sym_COMMA] = ACTIONS(5737), + [anon_sym_LPAREN] = ACTIONS(5591), + [anon_sym_LT] = ACTIONS(5895), + [anon_sym_GT] = ACTIONS(5895), + [anon_sym_where] = ACTIONS(5737), + [anon_sym_QMARK] = ACTIONS(5739), + [anon_sym_BANG] = ACTIONS(5658), + [anon_sym_PLUS_PLUS] = ACTIONS(5660), + [anon_sym_DASH_DASH] = ACTIONS(5660), + [anon_sym_PLUS] = ACTIONS(5897), + [anon_sym_DASH] = ACTIONS(5897), + [anon_sym_STAR] = ACTIONS(5899), + [anon_sym_SLASH] = ACTIONS(5901), + [anon_sym_PERCENT] = ACTIONS(5899), + [anon_sym_CARET] = ACTIONS(5737), + [anon_sym_PIPE] = ACTIONS(5739), + [anon_sym_AMP] = ACTIONS(5905), + [anon_sym_LT_LT] = ACTIONS(5907), + [anon_sym_GT_GT] = ACTIONS(5909), + [anon_sym_GT_GT_GT] = ACTIONS(5907), + [anon_sym_EQ_EQ] = ACTIONS(5911), + [anon_sym_BANG_EQ] = ACTIONS(5911), + [anon_sym_GT_EQ] = ACTIONS(5913), + [anon_sym_LT_EQ] = ACTIONS(5913), + [anon_sym_DOT] = ACTIONS(4697), + [anon_sym_switch] = ACTIONS(5682), + [anon_sym_DOT_DOT] = ACTIONS(5915), + [anon_sym_and] = ACTIONS(5737), + [anon_sym_or] = ACTIONS(5739), + [anon_sym_AMP_AMP] = ACTIONS(5737), + [anon_sym_PIPE_PIPE] = ACTIONS(5737), + [anon_sym_QMARK_QMARK] = ACTIONS(5737), + [anon_sym_from] = ACTIONS(5737), + [anon_sym_join] = ACTIONS(5737), + [anon_sym_let] = ACTIONS(5737), + [anon_sym_orderby] = ACTIONS(5737), + [anon_sym_ascending] = ACTIONS(5737), + [anon_sym_descending] = ACTIONS(5737), + [anon_sym_group] = ACTIONS(5737), + [anon_sym_select] = ACTIONS(5737), + [anon_sym_as] = ACTIONS(5917), + [anon_sym_is] = ACTIONS(5919), + [anon_sym_DASH_GT] = ACTIONS(4699), + [anon_sym_with] = ACTIONS(5698), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -517790,53 +517228,53 @@ 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), - [aux_sym__query_body_repeat2] = STATE(3657), - [anon_sym_LBRACK] = ACTIONS(5949), - [anon_sym_COMMA] = ACTIONS(5949), - [anon_sym_LPAREN] = ACTIONS(5949), - [anon_sym_LT] = ACTIONS(5951), - [anon_sym_GT] = ACTIONS(5951), - [anon_sym_where] = ACTIONS(5949), - [anon_sym_QMARK] = ACTIONS(5951), - [anon_sym_BANG] = ACTIONS(5951), - [anon_sym_PLUS_PLUS] = ACTIONS(5949), - [anon_sym_DASH_DASH] = ACTIONS(5949), - [anon_sym_PLUS] = ACTIONS(5951), - [anon_sym_DASH] = ACTIONS(5951), - [anon_sym_STAR] = ACTIONS(5949), - [anon_sym_SLASH] = ACTIONS(5951), - [anon_sym_PERCENT] = ACTIONS(5949), - [anon_sym_CARET] = ACTIONS(5949), - [anon_sym_PIPE] = ACTIONS(5951), - [anon_sym_AMP] = ACTIONS(5951), - [anon_sym_LT_LT] = ACTIONS(5949), - [anon_sym_GT_GT] = ACTIONS(5951), - [anon_sym_GT_GT_GT] = ACTIONS(5949), - [anon_sym_EQ_EQ] = ACTIONS(5949), - [anon_sym_BANG_EQ] = ACTIONS(5949), - [anon_sym_GT_EQ] = ACTIONS(5949), - [anon_sym_LT_EQ] = ACTIONS(5949), - [anon_sym_DOT] = ACTIONS(5951), - [anon_sym_switch] = ACTIONS(5949), - [anon_sym_DOT_DOT] = ACTIONS(5949), - [anon_sym_and] = ACTIONS(5949), - [anon_sym_or] = ACTIONS(5951), - [anon_sym_AMP_AMP] = ACTIONS(5949), - [anon_sym_PIPE_PIPE] = ACTIONS(5949), - [anon_sym_QMARK_QMARK] = ACTIONS(5949), - [anon_sym_from] = ACTIONS(5949), - [anon_sym_into] = ACTIONS(5953), - [anon_sym_join] = ACTIONS(5949), - [anon_sym_let] = ACTIONS(5949), - [anon_sym_orderby] = ACTIONS(5949), - [anon_sym_ascending] = ACTIONS(5949), - [anon_sym_descending] = ACTIONS(5949), - [anon_sym_group] = ACTIONS(5949), - [anon_sym_select] = ACTIONS(5949), - [anon_sym_as] = ACTIONS(5951), - [anon_sym_is] = ACTIONS(5949), - [anon_sym_DASH_GT] = ACTIONS(5949), - [anon_sym_with] = ACTIONS(5949), + [anon_sym_LBRACK] = ACTIONS(3809), + [anon_sym_COMMA] = ACTIONS(3809), + [anon_sym_LPAREN] = ACTIONS(3809), + [anon_sym_LT] = ACTIONS(5406), + [anon_sym_GT] = ACTIONS(5406), + [anon_sym_where] = ACTIONS(3809), + [anon_sym_QMARK] = ACTIONS(5406), + [anon_sym_BANG] = ACTIONS(5406), + [anon_sym_PLUS_PLUS] = ACTIONS(3809), + [anon_sym_DASH_DASH] = ACTIONS(3809), + [anon_sym_PLUS] = ACTIONS(5406), + [anon_sym_DASH] = ACTIONS(5406), + [anon_sym_STAR] = ACTIONS(3809), + [anon_sym_SLASH] = ACTIONS(5406), + [anon_sym_PERCENT] = ACTIONS(3809), + [anon_sym_CARET] = ACTIONS(3809), + [anon_sym_PIPE] = ACTIONS(5406), + [anon_sym_AMP] = ACTIONS(5406), + [anon_sym_LT_LT] = ACTIONS(3809), + [anon_sym_GT_GT] = ACTIONS(5406), + [anon_sym_GT_GT_GT] = ACTIONS(3809), + [anon_sym_EQ_EQ] = ACTIONS(3809), + [anon_sym_BANG_EQ] = ACTIONS(3809), + [anon_sym_GT_EQ] = ACTIONS(3809), + [anon_sym_LT_EQ] = ACTIONS(3809), + [anon_sym_DOT] = ACTIONS(5406), + [anon_sym_EQ_GT] = ACTIONS(3651), + [anon_sym_switch] = ACTIONS(3809), + [anon_sym_DOT_DOT] = ACTIONS(3809), + [anon_sym_and] = ACTIONS(3809), + [anon_sym_or] = ACTIONS(5406), + [anon_sym_AMP_AMP] = ACTIONS(3809), + [anon_sym_PIPE_PIPE] = ACTIONS(3809), + [anon_sym_QMARK_QMARK] = ACTIONS(3809), + [anon_sym_from] = ACTIONS(3809), + [anon_sym_into] = ACTIONS(3809), + [anon_sym_join] = ACTIONS(3809), + [anon_sym_let] = ACTIONS(3809), + [anon_sym_orderby] = ACTIONS(3809), + [anon_sym_ascending] = ACTIONS(3809), + [anon_sym_descending] = ACTIONS(3809), + [anon_sym_group] = ACTIONS(3809), + [anon_sym_select] = ACTIONS(3809), + [anon_sym_as] = ACTIONS(5406), + [anon_sym_is] = ACTIONS(3809), + [anon_sym_DASH_GT] = ACTIONS(3809), + [anon_sym_with] = ACTIONS(3809), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -517849,8 +517287,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3658] = { - [sym_argument_list] = STATE(3886), - [sym_bracketed_argument_list] = STATE(2902), + [sym_argument_list] = STATE(3771), + [sym_bracketed_argument_list] = STATE(2892), [sym_preproc_region] = STATE(3658), [sym_preproc_endregion] = STATE(3658), [sym_preproc_line] = STATE(3658), @@ -517860,51 +517298,51 @@ 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_LBRACK] = ACTIONS(5658), - [anon_sym_COMMA] = ACTIONS(5882), - [anon_sym_LPAREN] = ACTIONS(5624), - [anon_sym_LT] = ACTIONS(5903), - [anon_sym_GT] = ACTIONS(5903), - [anon_sym_where] = ACTIONS(5882), - [anon_sym_QMARK] = ACTIONS(5905), - [anon_sym_BANG] = ACTIONS(5666), - [anon_sym_PLUS_PLUS] = ACTIONS(5668), - [anon_sym_DASH_DASH] = ACTIONS(5668), - [anon_sym_PLUS] = ACTIONS(5907), - [anon_sym_DASH] = ACTIONS(5907), - [anon_sym_STAR] = ACTIONS(5909), - [anon_sym_SLASH] = ACTIONS(5911), - [anon_sym_PERCENT] = ACTIONS(5909), - [anon_sym_CARET] = ACTIONS(5913), - [anon_sym_PIPE] = ACTIONS(5915), - [anon_sym_AMP] = ACTIONS(5917), - [anon_sym_LT_LT] = ACTIONS(5919), - [anon_sym_GT_GT] = ACTIONS(5921), - [anon_sym_GT_GT_GT] = ACTIONS(5919), - [anon_sym_EQ_EQ] = ACTIONS(5923), - [anon_sym_BANG_EQ] = ACTIONS(5923), - [anon_sym_GT_EQ] = ACTIONS(5925), - [anon_sym_LT_EQ] = ACTIONS(5925), - [anon_sym_DOT] = ACTIONS(4733), - [anon_sym_switch] = ACTIONS(5688), - [anon_sym_DOT_DOT] = ACTIONS(5927), - [anon_sym_and] = ACTIONS(5882), - [anon_sym_or] = ACTIONS(5884), - [anon_sym_AMP_AMP] = ACTIONS(5929), - [anon_sym_PIPE_PIPE] = ACTIONS(5931), - [anon_sym_QMARK_QMARK] = ACTIONS(5933), - [anon_sym_from] = ACTIONS(5882), - [anon_sym_join] = ACTIONS(5882), - [anon_sym_let] = ACTIONS(5882), - [anon_sym_orderby] = ACTIONS(5882), - [anon_sym_ascending] = ACTIONS(5882), - [anon_sym_descending] = ACTIONS(5882), - [anon_sym_group] = ACTIONS(5882), - [anon_sym_select] = ACTIONS(5882), - [anon_sym_as] = ACTIONS(5935), - [anon_sym_is] = ACTIONS(5937), - [anon_sym_DASH_GT] = ACTIONS(4719), - [anon_sym_with] = ACTIONS(5696), + [anon_sym_LBRACK] = ACTIONS(5650), + [anon_sym_COMMA] = ACTIONS(5737), + [anon_sym_LPAREN] = ACTIONS(5591), + [anon_sym_LT] = ACTIONS(5895), + [anon_sym_GT] = ACTIONS(5895), + [anon_sym_where] = ACTIONS(5737), + [anon_sym_QMARK] = ACTIONS(5739), + [anon_sym_BANG] = ACTIONS(5658), + [anon_sym_PLUS_PLUS] = ACTIONS(5660), + [anon_sym_DASH_DASH] = ACTIONS(5660), + [anon_sym_PLUS] = ACTIONS(5897), + [anon_sym_DASH] = ACTIONS(5897), + [anon_sym_STAR] = ACTIONS(5899), + [anon_sym_SLASH] = ACTIONS(5901), + [anon_sym_PERCENT] = ACTIONS(5899), + [anon_sym_CARET] = ACTIONS(5737), + [anon_sym_PIPE] = ACTIONS(5739), + [anon_sym_AMP] = ACTIONS(5739), + [anon_sym_LT_LT] = ACTIONS(5907), + [anon_sym_GT_GT] = ACTIONS(5909), + [anon_sym_GT_GT_GT] = ACTIONS(5907), + [anon_sym_EQ_EQ] = ACTIONS(5737), + [anon_sym_BANG_EQ] = ACTIONS(5737), + [anon_sym_GT_EQ] = ACTIONS(5913), + [anon_sym_LT_EQ] = ACTIONS(5913), + [anon_sym_DOT] = ACTIONS(4697), + [anon_sym_switch] = ACTIONS(5682), + [anon_sym_DOT_DOT] = ACTIONS(5915), + [anon_sym_and] = ACTIONS(5737), + [anon_sym_or] = ACTIONS(5739), + [anon_sym_AMP_AMP] = ACTIONS(5737), + [anon_sym_PIPE_PIPE] = ACTIONS(5737), + [anon_sym_QMARK_QMARK] = ACTIONS(5737), + [anon_sym_from] = ACTIONS(5737), + [anon_sym_join] = ACTIONS(5737), + [anon_sym_let] = ACTIONS(5737), + [anon_sym_orderby] = ACTIONS(5737), + [anon_sym_ascending] = ACTIONS(5737), + [anon_sym_descending] = ACTIONS(5737), + [anon_sym_group] = ACTIONS(5737), + [anon_sym_select] = ACTIONS(5737), + [anon_sym_as] = ACTIONS(5917), + [anon_sym_is] = ACTIONS(5919), + [anon_sym_DASH_GT] = ACTIONS(4699), + [anon_sym_with] = ACTIONS(5698), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -517917,6 +517355,25 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3659] = { + [sym__name] = STATE(6381), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(4068), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(4073), + [sym_type] = STATE(4565), + [sym_implicit_type] = STATE(7156), + [sym_array_type] = STATE(6671), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(6672), + [sym_pointer_type] = STATE(6672), + [sym__pointer_base_type] = STATE(7421), + [sym_function_pointer_type] = STATE(6672), + [sym_ref_type] = STATE(7035), + [sym__ref_base_type] = STATE(7408), + [sym_scoped_type] = STATE(7035), + [sym_tuple_type] = STATE(6553), + [sym_identifier] = STATE(4081), + [sym__reserved_identifier] = STATE(3654), [sym_preproc_region] = STATE(3659), [sym_preproc_endregion] = STATE(3659), [sym_preproc_line] = STATE(3659), @@ -517926,53 +517383,34 @@ 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(4908), - [anon_sym_COMMA] = ACTIONS(4908), - [anon_sym_LPAREN] = ACTIONS(4908), - [anon_sym_LBRACE] = ACTIONS(4908), - [anon_sym_LT] = ACTIONS(4910), - [anon_sym_GT] = ACTIONS(4910), - [anon_sym_where] = ACTIONS(4908), - [anon_sym_QMARK] = ACTIONS(4910), - [anon_sym_BANG] = ACTIONS(4910), - [anon_sym_PLUS_PLUS] = ACTIONS(4908), - [anon_sym_DASH_DASH] = ACTIONS(4908), - [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(4910), - [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(4908), - [anon_sym_with] = ACTIONS(4908), + [sym__identifier_token] = ACTIONS(2965), + [anon_sym_alias] = ACTIONS(2969), + [anon_sym_global] = ACTIONS(2969), + [anon_sym_LPAREN] = ACTIONS(2977), + [anon_sym_ref] = ACTIONS(5937), + [anon_sym_delegate] = ACTIONS(5172), + [anon_sym_file] = ACTIONS(2969), + [anon_sym_readonly] = ACTIONS(5939), + [anon_sym_where] = ACTIONS(2969), + [anon_sym_notnull] = ACTIONS(2969), + [anon_sym_unmanaged] = ACTIONS(2969), + [anon_sym_scoped] = ACTIONS(5454), + [anon_sym_var] = ACTIONS(4705), + [sym_predefined_type] = ACTIONS(5456), + [anon_sym_yield] = ACTIONS(2969), + [anon_sym_when] = ACTIONS(2969), + [anon_sym_from] = ACTIONS(2969), + [anon_sym_into] = ACTIONS(2969), + [anon_sym_join] = ACTIONS(2969), + [anon_sym_on] = ACTIONS(2969), + [anon_sym_equals] = ACTIONS(2969), + [anon_sym_let] = ACTIONS(2969), + [anon_sym_orderby] = ACTIONS(2969), + [anon_sym_ascending] = ACTIONS(2969), + [anon_sym_descending] = ACTIONS(2969), + [anon_sym_group] = ACTIONS(2969), + [anon_sym_by] = ACTIONS(2969), + [anon_sym_select] = ACTIONS(2969), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -517994,53 +517432,53 @@ 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_LBRACK] = ACTIONS(4879), - [anon_sym_COMMA] = ACTIONS(4879), - [anon_sym_LPAREN] = ACTIONS(4879), - [anon_sym_LT] = ACTIONS(4881), - [anon_sym_GT] = ACTIONS(4881), - [anon_sym_where] = ACTIONS(4879), - [anon_sym_QMARK] = ACTIONS(4881), - [anon_sym_BANG] = ACTIONS(4881), - [anon_sym_PLUS_PLUS] = ACTIONS(4879), - [anon_sym_DASH_DASH] = ACTIONS(4879), - [anon_sym_PLUS] = ACTIONS(4881), - [anon_sym_DASH] = ACTIONS(4881), - [anon_sym_STAR] = ACTIONS(4879), - [anon_sym_SLASH] = ACTIONS(4881), - [anon_sym_PERCENT] = ACTIONS(4879), - [anon_sym_CARET] = ACTIONS(4879), - [anon_sym_PIPE] = ACTIONS(4881), - [anon_sym_AMP] = ACTIONS(4881), - [anon_sym_LT_LT] = ACTIONS(4879), - [anon_sym_GT_GT] = ACTIONS(4881), - [anon_sym_GT_GT_GT] = ACTIONS(4879), - [anon_sym_EQ_EQ] = ACTIONS(4879), - [anon_sym_BANG_EQ] = ACTIONS(4879), - [anon_sym_GT_EQ] = ACTIONS(4879), - [anon_sym_LT_EQ] = ACTIONS(4879), - [anon_sym_DOT] = ACTIONS(4881), - [anon_sym_switch] = ACTIONS(4879), - [anon_sym_DOT_DOT] = ACTIONS(4879), - [anon_sym_and] = ACTIONS(4879), - [anon_sym_or] = ACTIONS(4881), - [anon_sym_AMP_AMP] = ACTIONS(4879), - [anon_sym_PIPE_PIPE] = ACTIONS(4879), - [anon_sym_QMARK_QMARK] = ACTIONS(4879), - [anon_sym_from] = ACTIONS(4879), - [anon_sym_into] = ACTIONS(4879), - [anon_sym_join] = ACTIONS(4879), - [anon_sym_let] = ACTIONS(4879), - [anon_sym_orderby] = ACTIONS(4879), - [anon_sym_ascending] = ACTIONS(4879), - [anon_sym_descending] = ACTIONS(4879), - [anon_sym_group] = ACTIONS(4879), - [anon_sym_select] = ACTIONS(4879), - [anon_sym_as] = ACTIONS(4881), - [anon_sym_is] = ACTIONS(4879), - [anon_sym_DASH_GT] = ACTIONS(4879), - [anon_sym_with] = ACTIONS(4879), - [sym_string_literal_encoding] = ACTIONS(5956), + [anon_sym_EQ] = ACTIONS(5941), + [anon_sym_LBRACK] = ACTIONS(4811), + [anon_sym_COLON] = ACTIONS(4811), + [anon_sym_LPAREN] = ACTIONS(4811), + [anon_sym_LT] = ACTIONS(4813), + [anon_sym_GT] = ACTIONS(4813), + [anon_sym_QMARK] = ACTIONS(4813), + [anon_sym_BANG] = ACTIONS(4813), + [anon_sym_PLUS_PLUS] = ACTIONS(4811), + [anon_sym_DASH_DASH] = ACTIONS(4811), + [anon_sym_PLUS] = ACTIONS(4813), + [anon_sym_DASH] = ACTIONS(4813), + [anon_sym_STAR] = ACTIONS(4813), + [anon_sym_SLASH] = ACTIONS(4813), + [anon_sym_PERCENT] = ACTIONS(4813), + [anon_sym_CARET] = ACTIONS(4813), + [anon_sym_PIPE] = ACTIONS(4813), + [anon_sym_AMP] = ACTIONS(4813), + [anon_sym_LT_LT] = ACTIONS(4813), + [anon_sym_GT_GT] = ACTIONS(4813), + [anon_sym_GT_GT_GT] = ACTIONS(4813), + [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(4813), + [anon_sym_switch] = ACTIONS(4811), + [anon_sym_DOT_DOT] = ACTIONS(4811), + [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(4811), + [anon_sym_PIPE_PIPE] = ACTIONS(4811), + [anon_sym_QMARK_QMARK] = ACTIONS(4813), + [anon_sym_as] = ACTIONS(4811), + [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), @@ -518053,8 +517491,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3661] = { - [sym_argument_list] = STATE(3886), - [sym_bracketed_argument_list] = STATE(2902), [sym_preproc_region] = STATE(3661), [sym_preproc_endregion] = STATE(3661), [sym_preproc_line] = STATE(3661), @@ -518064,51 +517500,53 @@ 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(5658), - [anon_sym_COMMA] = ACTIONS(5660), - [anon_sym_LPAREN] = ACTIONS(5624), - [anon_sym_LT] = ACTIONS(5903), - [anon_sym_GT] = ACTIONS(5903), - [anon_sym_where] = ACTIONS(5660), - [anon_sym_QMARK] = ACTIONS(5664), - [anon_sym_BANG] = ACTIONS(5666), - [anon_sym_PLUS_PLUS] = ACTIONS(5668), - [anon_sym_DASH_DASH] = ACTIONS(5668), - [anon_sym_PLUS] = ACTIONS(5907), - [anon_sym_DASH] = ACTIONS(5907), - [anon_sym_STAR] = ACTIONS(5909), - [anon_sym_SLASH] = ACTIONS(5911), - [anon_sym_PERCENT] = ACTIONS(5909), - [anon_sym_CARET] = ACTIONS(5660), - [anon_sym_PIPE] = ACTIONS(5664), - [anon_sym_AMP] = ACTIONS(5664), - [anon_sym_LT_LT] = ACTIONS(5919), - [anon_sym_GT_GT] = ACTIONS(5921), - [anon_sym_GT_GT_GT] = ACTIONS(5919), - [anon_sym_EQ_EQ] = ACTIONS(5923), - [anon_sym_BANG_EQ] = ACTIONS(5923), - [anon_sym_GT_EQ] = ACTIONS(5925), - [anon_sym_LT_EQ] = ACTIONS(5925), - [anon_sym_DOT] = ACTIONS(4733), - [anon_sym_switch] = ACTIONS(5688), - [anon_sym_DOT_DOT] = ACTIONS(5927), - [anon_sym_and] = ACTIONS(5660), - [anon_sym_or] = ACTIONS(5664), - [anon_sym_AMP_AMP] = ACTIONS(5660), - [anon_sym_PIPE_PIPE] = ACTIONS(5660), - [anon_sym_QMARK_QMARK] = ACTIONS(5660), - [anon_sym_from] = ACTIONS(5660), - [anon_sym_join] = ACTIONS(5660), - [anon_sym_let] = ACTIONS(5660), - [anon_sym_orderby] = ACTIONS(5660), - [anon_sym_ascending] = ACTIONS(5660), - [anon_sym_descending] = ACTIONS(5660), - [anon_sym_group] = ACTIONS(5660), - [anon_sym_select] = ACTIONS(5660), - [anon_sym_as] = ACTIONS(5935), - [anon_sym_is] = ACTIONS(5937), - [anon_sym_DASH_GT] = ACTIONS(4719), - [anon_sym_with] = ACTIONS(5696), + [anon_sym_EQ] = ACTIONS(5945), + [anon_sym_LBRACK] = ACTIONS(4811), + [anon_sym_LPAREN] = ACTIONS(4811), + [anon_sym_LT] = ACTIONS(4813), + [anon_sym_GT] = ACTIONS(4813), + [anon_sym_QMARK] = ACTIONS(4813), + [anon_sym_BANG] = ACTIONS(4813), + [anon_sym_PLUS_PLUS] = ACTIONS(4811), + [anon_sym_DASH_DASH] = ACTIONS(4811), + [anon_sym_PLUS] = ACTIONS(4813), + [anon_sym_DASH] = ACTIONS(4813), + [anon_sym_STAR] = ACTIONS(4813), + [anon_sym_SLASH] = ACTIONS(4813), + [anon_sym_PERCENT] = ACTIONS(4813), + [anon_sym_CARET] = ACTIONS(4813), + [anon_sym_PIPE] = ACTIONS(4813), + [anon_sym_AMP] = ACTIONS(4813), + [anon_sym_LT_LT] = ACTIONS(4813), + [anon_sym_GT_GT] = ACTIONS(4813), + [anon_sym_GT_GT_GT] = ACTIONS(4813), + [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(4813), + [anon_sym_switch] = ACTIONS(4811), + [anon_sym_DOT_DOT] = ACTIONS(4811), + [anon_sym_PLUS_EQ] = ACTIONS(5947), + [anon_sym_DASH_EQ] = ACTIONS(5947), + [anon_sym_STAR_EQ] = ACTIONS(5947), + [anon_sym_SLASH_EQ] = ACTIONS(5947), + [anon_sym_PERCENT_EQ] = ACTIONS(5947), + [anon_sym_AMP_EQ] = ACTIONS(5947), + [anon_sym_CARET_EQ] = ACTIONS(5947), + [anon_sym_PIPE_EQ] = ACTIONS(5947), + [anon_sym_LT_LT_EQ] = ACTIONS(5947), + [anon_sym_GT_GT_EQ] = ACTIONS(5947), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(5947), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(5947), + [anon_sym_AMP_AMP] = ACTIONS(4811), + [anon_sym_PIPE_PIPE] = ACTIONS(4811), + [anon_sym_QMARK_QMARK] = ACTIONS(4813), + [anon_sym_on] = 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_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -518130,53 +517568,53 @@ 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), - [aux_sym__query_body_repeat2] = STATE(3657), - [anon_sym_LBRACK] = ACTIONS(5958), - [anon_sym_COMMA] = ACTIONS(5958), - [anon_sym_LPAREN] = ACTIONS(5958), - [anon_sym_LT] = ACTIONS(5960), - [anon_sym_GT] = ACTIONS(5960), - [anon_sym_where] = ACTIONS(5958), - [anon_sym_QMARK] = ACTIONS(5960), - [anon_sym_BANG] = ACTIONS(5960), - [anon_sym_PLUS_PLUS] = ACTIONS(5958), - [anon_sym_DASH_DASH] = ACTIONS(5958), - [anon_sym_PLUS] = ACTIONS(5960), - [anon_sym_DASH] = ACTIONS(5960), - [anon_sym_STAR] = ACTIONS(5958), - [anon_sym_SLASH] = ACTIONS(5960), - [anon_sym_PERCENT] = ACTIONS(5958), - [anon_sym_CARET] = ACTIONS(5958), - [anon_sym_PIPE] = ACTIONS(5960), - [anon_sym_AMP] = ACTIONS(5960), - [anon_sym_LT_LT] = ACTIONS(5958), - [anon_sym_GT_GT] = ACTIONS(5960), - [anon_sym_GT_GT_GT] = ACTIONS(5958), - [anon_sym_EQ_EQ] = ACTIONS(5958), - [anon_sym_BANG_EQ] = ACTIONS(5958), - [anon_sym_GT_EQ] = ACTIONS(5958), - [anon_sym_LT_EQ] = ACTIONS(5958), - [anon_sym_DOT] = ACTIONS(5960), - [anon_sym_switch] = ACTIONS(5958), - [anon_sym_DOT_DOT] = ACTIONS(5958), - [anon_sym_and] = ACTIONS(5958), - [anon_sym_or] = ACTIONS(5960), - [anon_sym_AMP_AMP] = ACTIONS(5958), - [anon_sym_PIPE_PIPE] = ACTIONS(5958), - [anon_sym_QMARK_QMARK] = ACTIONS(5958), - [anon_sym_from] = ACTIONS(5958), - [anon_sym_into] = ACTIONS(5962), - [anon_sym_join] = ACTIONS(5958), - [anon_sym_let] = ACTIONS(5958), - [anon_sym_orderby] = ACTIONS(5958), - [anon_sym_ascending] = ACTIONS(5958), - [anon_sym_descending] = ACTIONS(5958), - [anon_sym_group] = ACTIONS(5958), - [anon_sym_select] = ACTIONS(5958), - [anon_sym_as] = ACTIONS(5960), - [anon_sym_is] = ACTIONS(5958), - [anon_sym_DASH_GT] = ACTIONS(5958), - [anon_sym_with] = ACTIONS(5958), + [aux_sym__query_body_repeat2] = STATE(3666), + [anon_sym_LBRACK] = ACTIONS(5879), + [anon_sym_COMMA] = ACTIONS(5879), + [anon_sym_LPAREN] = ACTIONS(5879), + [anon_sym_LT] = ACTIONS(5881), + [anon_sym_GT] = ACTIONS(5881), + [anon_sym_where] = ACTIONS(5879), + [anon_sym_QMARK] = ACTIONS(5881), + [anon_sym_BANG] = ACTIONS(5881), + [anon_sym_PLUS_PLUS] = ACTIONS(5879), + [anon_sym_DASH_DASH] = ACTIONS(5879), + [anon_sym_PLUS] = ACTIONS(5881), + [anon_sym_DASH] = ACTIONS(5881), + [anon_sym_STAR] = ACTIONS(5879), + [anon_sym_SLASH] = ACTIONS(5881), + [anon_sym_PERCENT] = ACTIONS(5879), + [anon_sym_CARET] = ACTIONS(5879), + [anon_sym_PIPE] = ACTIONS(5881), + [anon_sym_AMP] = ACTIONS(5881), + [anon_sym_LT_LT] = ACTIONS(5879), + [anon_sym_GT_GT] = ACTIONS(5881), + [anon_sym_GT_GT_GT] = ACTIONS(5879), + [anon_sym_EQ_EQ] = ACTIONS(5879), + [anon_sym_BANG_EQ] = ACTIONS(5879), + [anon_sym_GT_EQ] = ACTIONS(5879), + [anon_sym_LT_EQ] = ACTIONS(5879), + [anon_sym_DOT] = ACTIONS(5881), + [anon_sym_switch] = ACTIONS(5879), + [anon_sym_DOT_DOT] = ACTIONS(5879), + [anon_sym_and] = ACTIONS(5879), + [anon_sym_or] = ACTIONS(5881), + [anon_sym_AMP_AMP] = ACTIONS(5879), + [anon_sym_PIPE_PIPE] = ACTIONS(5879), + [anon_sym_QMARK_QMARK] = ACTIONS(5879), + [anon_sym_from] = ACTIONS(5879), + [anon_sym_into] = ACTIONS(5883), + [anon_sym_join] = ACTIONS(5879), + [anon_sym_let] = ACTIONS(5879), + [anon_sym_orderby] = ACTIONS(5879), + [anon_sym_ascending] = ACTIONS(5879), + [anon_sym_descending] = ACTIONS(5879), + [anon_sym_group] = ACTIONS(5879), + [anon_sym_select] = ACTIONS(5879), + [anon_sym_as] = ACTIONS(5881), + [anon_sym_is] = ACTIONS(5879), + [anon_sym_DASH_GT] = ACTIONS(5879), + [anon_sym_with] = ACTIONS(5879), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -518189,6 +517627,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3663] = { + [sym__name] = STATE(4369), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(4068), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(4073), + [sym_type] = STATE(4565), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_identifier] = STATE(4081), + [sym__reserved_identifier] = STATE(3654), [sym_preproc_region] = STATE(3663), [sym_preproc_endregion] = STATE(3663), [sym_preproc_line] = STATE(3663), @@ -518198,53 +517654,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), - [anon_sym_LBRACK] = ACTIONS(4870), - [anon_sym_COMMA] = ACTIONS(4870), - [anon_sym_LPAREN] = ACTIONS(4870), - [anon_sym_LBRACE] = ACTIONS(4870), - [anon_sym_LT] = ACTIONS(4872), - [anon_sym_GT] = ACTIONS(4872), - [anon_sym_where] = ACTIONS(4870), - [anon_sym_QMARK] = ACTIONS(4872), - [anon_sym_BANG] = ACTIONS(4872), - [anon_sym_PLUS_PLUS] = ACTIONS(4870), - [anon_sym_DASH_DASH] = ACTIONS(4870), - [anon_sym_PLUS] = ACTIONS(4872), - [anon_sym_DASH] = ACTIONS(4872), - [anon_sym_STAR] = ACTIONS(4870), - [anon_sym_SLASH] = ACTIONS(4872), - [anon_sym_PERCENT] = ACTIONS(4870), - [anon_sym_CARET] = ACTIONS(4870), - [anon_sym_PIPE] = ACTIONS(4872), - [anon_sym_AMP] = ACTIONS(4872), - [anon_sym_LT_LT] = ACTIONS(4870), - [anon_sym_GT_GT] = ACTIONS(4872), - [anon_sym_GT_GT_GT] = ACTIONS(4870), - [anon_sym_EQ_EQ] = ACTIONS(4870), - [anon_sym_BANG_EQ] = ACTIONS(4870), - [anon_sym_GT_EQ] = ACTIONS(4870), - [anon_sym_LT_EQ] = ACTIONS(4870), - [anon_sym_DOT] = ACTIONS(4872), - [anon_sym_switch] = ACTIONS(4870), - [anon_sym_DOT_DOT] = ACTIONS(4870), - [anon_sym_and] = ACTIONS(4870), - [anon_sym_or] = ACTIONS(4872), - [anon_sym_AMP_AMP] = ACTIONS(4870), - [anon_sym_PIPE_PIPE] = ACTIONS(4870), - [anon_sym_QMARK_QMARK] = ACTIONS(4870), - [anon_sym_from] = ACTIONS(4870), - [anon_sym_into] = ACTIONS(4870), - [anon_sym_join] = ACTIONS(4870), - [anon_sym_let] = ACTIONS(4870), - [anon_sym_orderby] = ACTIONS(4870), - [anon_sym_ascending] = ACTIONS(4870), - [anon_sym_descending] = ACTIONS(4870), - [anon_sym_group] = ACTIONS(4870), - [anon_sym_select] = ACTIONS(4870), - [anon_sym_as] = ACTIONS(4872), - [anon_sym_is] = ACTIONS(4870), - [anon_sym_DASH_GT] = ACTIONS(4870), - [anon_sym_with] = ACTIONS(4870), + [sym__identifier_token] = ACTIONS(2965), + [anon_sym_alias] = ACTIONS(2969), + [anon_sym_global] = ACTIONS(2969), + [anon_sym_LPAREN] = ACTIONS(2977), + [anon_sym_ref] = ACTIONS(3436), + [anon_sym_struct] = ACTIONS(5949), + [anon_sym_delegate] = ACTIONS(3438), + [anon_sym_file] = ACTIONS(2969), + [anon_sym_readonly] = ACTIONS(2767), + [anon_sym_where] = ACTIONS(2969), + [anon_sym_notnull] = ACTIONS(2969), + [anon_sym_unmanaged] = ACTIONS(2969), + [anon_sym_scoped] = ACTIONS(2993), + [anon_sym_var] = ACTIONS(2995), + [sym_predefined_type] = ACTIONS(2997), + [anon_sym_yield] = ACTIONS(2969), + [anon_sym_when] = ACTIONS(2969), + [anon_sym_from] = ACTIONS(2969), + [anon_sym_into] = ACTIONS(2969), + [anon_sym_join] = ACTIONS(2969), + [anon_sym_on] = ACTIONS(2969), + [anon_sym_equals] = ACTIONS(2969), + [anon_sym_let] = ACTIONS(2969), + [anon_sym_orderby] = ACTIONS(2969), + [anon_sym_ascending] = ACTIONS(2969), + [anon_sym_descending] = ACTIONS(2969), + [anon_sym_group] = ACTIONS(2969), + [anon_sym_by] = ACTIONS(2969), + [anon_sym_select] = ACTIONS(2969), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -518257,6 +517695,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3664] = { + [sym_argument_list] = STATE(3771), + [sym_bracketed_argument_list] = STATE(2892), [sym_preproc_region] = STATE(3664), [sym_preproc_endregion] = STATE(3664), [sym_preproc_line] = STATE(3664), @@ -518266,53 +517706,51 @@ 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_EQ] = ACTIONS(5964), - [anon_sym_LBRACK] = ACTIONS(4860), - [anon_sym_COLON] = ACTIONS(4860), - [anon_sym_LPAREN] = ACTIONS(4860), - [anon_sym_LT] = ACTIONS(4862), - [anon_sym_GT] = ACTIONS(4862), - [anon_sym_QMARK] = ACTIONS(4862), - [anon_sym_BANG] = ACTIONS(4862), - [anon_sym_PLUS_PLUS] = ACTIONS(4860), - [anon_sym_DASH_DASH] = ACTIONS(4860), - [anon_sym_PLUS] = ACTIONS(4862), - [anon_sym_DASH] = ACTIONS(4862), - [anon_sym_STAR] = ACTIONS(4862), - [anon_sym_SLASH] = ACTIONS(4862), - [anon_sym_PERCENT] = ACTIONS(4862), - [anon_sym_CARET] = ACTIONS(4862), - [anon_sym_PIPE] = ACTIONS(4862), - [anon_sym_AMP] = ACTIONS(4862), - [anon_sym_LT_LT] = ACTIONS(4862), - [anon_sym_GT_GT] = ACTIONS(4862), - [anon_sym_GT_GT_GT] = ACTIONS(4862), - [anon_sym_EQ_EQ] = ACTIONS(4860), - [anon_sym_BANG_EQ] = ACTIONS(4860), - [anon_sym_GT_EQ] = ACTIONS(4860), - [anon_sym_LT_EQ] = ACTIONS(4860), - [anon_sym_DOT] = ACTIONS(4862), - [anon_sym_switch] = ACTIONS(4860), - [anon_sym_DOT_DOT] = ACTIONS(4860), - [anon_sym_PLUS_EQ] = ACTIONS(5966), - [anon_sym_DASH_EQ] = ACTIONS(5966), - [anon_sym_STAR_EQ] = ACTIONS(5966), - [anon_sym_SLASH_EQ] = ACTIONS(5966), - [anon_sym_PERCENT_EQ] = ACTIONS(5966), - [anon_sym_AMP_EQ] = ACTIONS(5966), - [anon_sym_CARET_EQ] = ACTIONS(5966), - [anon_sym_PIPE_EQ] = ACTIONS(5966), - [anon_sym_LT_LT_EQ] = ACTIONS(5966), - [anon_sym_GT_GT_EQ] = ACTIONS(5966), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(5966), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(5966), - [anon_sym_AMP_AMP] = ACTIONS(4860), - [anon_sym_PIPE_PIPE] = ACTIONS(4860), - [anon_sym_QMARK_QMARK] = ACTIONS(4862), - [anon_sym_as] = ACTIONS(4860), - [anon_sym_is] = ACTIONS(4860), - [anon_sym_DASH_GT] = ACTIONS(4860), - [anon_sym_with] = ACTIONS(4860), + [anon_sym_LBRACK] = ACTIONS(5650), + [anon_sym_COMMA] = ACTIONS(5741), + [anon_sym_LPAREN] = ACTIONS(5591), + [anon_sym_LT] = ACTIONS(5743), + [anon_sym_GT] = ACTIONS(5743), + [anon_sym_where] = ACTIONS(5741), + [anon_sym_QMARK] = ACTIONS(5743), + [anon_sym_BANG] = ACTIONS(5658), + [anon_sym_PLUS_PLUS] = ACTIONS(5660), + [anon_sym_DASH_DASH] = ACTIONS(5660), + [anon_sym_PLUS] = ACTIONS(5743), + [anon_sym_DASH] = ACTIONS(5743), + [anon_sym_STAR] = ACTIONS(5741), + [anon_sym_SLASH] = ACTIONS(5743), + [anon_sym_PERCENT] = ACTIONS(5741), + [anon_sym_CARET] = ACTIONS(5741), + [anon_sym_PIPE] = ACTIONS(5743), + [anon_sym_AMP] = ACTIONS(5743), + [anon_sym_LT_LT] = ACTIONS(5741), + [anon_sym_GT_GT] = ACTIONS(5743), + [anon_sym_GT_GT_GT] = ACTIONS(5741), + [anon_sym_EQ_EQ] = ACTIONS(5741), + [anon_sym_BANG_EQ] = ACTIONS(5741), + [anon_sym_GT_EQ] = ACTIONS(5741), + [anon_sym_LT_EQ] = ACTIONS(5741), + [anon_sym_DOT] = ACTIONS(4697), + [anon_sym_switch] = ACTIONS(5741), + [anon_sym_DOT_DOT] = ACTIONS(5915), + [anon_sym_and] = ACTIONS(5741), + [anon_sym_or] = ACTIONS(5743), + [anon_sym_AMP_AMP] = ACTIONS(5741), + [anon_sym_PIPE_PIPE] = ACTIONS(5741), + [anon_sym_QMARK_QMARK] = ACTIONS(5741), + [anon_sym_from] = ACTIONS(5741), + [anon_sym_join] = ACTIONS(5741), + [anon_sym_let] = ACTIONS(5741), + [anon_sym_orderby] = ACTIONS(5741), + [anon_sym_ascending] = ACTIONS(5741), + [anon_sym_descending] = ACTIONS(5741), + [anon_sym_group] = ACTIONS(5741), + [anon_sym_select] = ACTIONS(5741), + [anon_sym_as] = ACTIONS(5743), + [anon_sym_is] = ACTIONS(5741), + [anon_sym_DASH_GT] = ACTIONS(4699), + [anon_sym_with] = ACTIONS(5741), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -518334,53 +517772,53 @@ 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), - [sym__identifier_token] = ACTIONS(3482), - [anon_sym_extern] = ACTIONS(3482), - [anon_sym_alias] = ACTIONS(3482), - [anon_sym_global] = ACTIONS(3482), - [anon_sym_unsafe] = ACTIONS(3482), - [anon_sym_static] = 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_get] = ACTIONS(3482), - [anon_sym_set] = ACTIONS(3482), - [anon_sym_add] = ACTIONS(3482), - [anon_sym_remove] = ACTIONS(3482), - [anon_sym_init] = ACTIONS(3482), - [anon_sym_scoped] = ACTIONS(3482), - [anon_sym_var] = ACTIONS(3482), - [anon_sym_yield] = ACTIONS(3482), - [anon_sym_when] = ACTIONS(3482), - [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), + [aux_sym__query_body_repeat2] = STATE(3665), + [anon_sym_LBRACK] = ACTIONS(5951), + [anon_sym_COMMA] = ACTIONS(5951), + [anon_sym_LPAREN] = ACTIONS(5951), + [anon_sym_LT] = ACTIONS(5953), + [anon_sym_GT] = ACTIONS(5953), + [anon_sym_where] = ACTIONS(5951), + [anon_sym_QMARK] = ACTIONS(5953), + [anon_sym_BANG] = ACTIONS(5953), + [anon_sym_PLUS_PLUS] = ACTIONS(5951), + [anon_sym_DASH_DASH] = ACTIONS(5951), + [anon_sym_PLUS] = ACTIONS(5953), + [anon_sym_DASH] = ACTIONS(5953), + [anon_sym_STAR] = ACTIONS(5951), + [anon_sym_SLASH] = ACTIONS(5953), + [anon_sym_PERCENT] = ACTIONS(5951), + [anon_sym_CARET] = ACTIONS(5951), + [anon_sym_PIPE] = ACTIONS(5953), + [anon_sym_AMP] = ACTIONS(5953), + [anon_sym_LT_LT] = ACTIONS(5951), + [anon_sym_GT_GT] = ACTIONS(5953), + [anon_sym_GT_GT_GT] = ACTIONS(5951), + [anon_sym_EQ_EQ] = ACTIONS(5951), + [anon_sym_BANG_EQ] = ACTIONS(5951), + [anon_sym_GT_EQ] = ACTIONS(5951), + [anon_sym_LT_EQ] = ACTIONS(5951), + [anon_sym_DOT] = ACTIONS(5953), + [anon_sym_switch] = ACTIONS(5951), + [anon_sym_DOT_DOT] = ACTIONS(5951), + [anon_sym_and] = ACTIONS(5951), + [anon_sym_or] = ACTIONS(5953), + [anon_sym_AMP_AMP] = ACTIONS(5951), + [anon_sym_PIPE_PIPE] = ACTIONS(5951), + [anon_sym_QMARK_QMARK] = ACTIONS(5951), + [anon_sym_from] = ACTIONS(5951), + [anon_sym_into] = ACTIONS(5955), + [anon_sym_join] = ACTIONS(5951), + [anon_sym_let] = ACTIONS(5951), + [anon_sym_orderby] = ACTIONS(5951), + [anon_sym_ascending] = ACTIONS(5951), + [anon_sym_descending] = ACTIONS(5951), + [anon_sym_group] = ACTIONS(5951), + [anon_sym_select] = ACTIONS(5951), + [anon_sym_as] = ACTIONS(5953), + [anon_sym_is] = ACTIONS(5951), + [anon_sym_DASH_GT] = ACTIONS(5951), + [anon_sym_with] = ACTIONS(5951), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -518402,53 +517840,53 @@ 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), - [sym__identifier_token] = ACTIONS(3447), - [anon_sym_alias] = ACTIONS(3447), - [anon_sym_SEMI] = ACTIONS(3445), - [anon_sym_global] = ACTIONS(3447), - [anon_sym_EQ] = ACTIONS(3447), - [anon_sym_LBRACK] = ACTIONS(3445), - [anon_sym_COLON] = ACTIONS(3447), - [anon_sym_COMMA] = ACTIONS(3445), - [anon_sym_RBRACK] = ACTIONS(3445), - [anon_sym_LPAREN] = ACTIONS(3445), - [anon_sym_RPAREN] = ACTIONS(3445), - [anon_sym_LBRACE] = ACTIONS(3445), - [anon_sym_RBRACE] = ACTIONS(3445), - [anon_sym_file] = ACTIONS(3447), - [anon_sym_LT] = ACTIONS(3445), - [anon_sym_GT] = ACTIONS(3445), - [anon_sym_in] = ACTIONS(3447), - [anon_sym_where] = ACTIONS(3447), - [anon_sym_QMARK] = ACTIONS(3445), - [anon_sym_notnull] = ACTIONS(3447), - [anon_sym_unmanaged] = ACTIONS(3447), - [anon_sym_operator] = ACTIONS(3447), - [anon_sym_STAR] = ACTIONS(3445), - [anon_sym_this] = ACTIONS(3447), - [anon_sym_DOT] = ACTIONS(3445), - [anon_sym_scoped] = ACTIONS(3447), - [anon_sym_EQ_GT] = ACTIONS(3445), - [anon_sym_COLON_COLON] = ACTIONS(3445), - [anon_sym_var] = ACTIONS(3447), - [anon_sym_yield] = ACTIONS(3447), - [anon_sym_when] = ACTIONS(3447), - [sym_discard] = ACTIONS(3447), - [anon_sym_and] = ACTIONS(3447), - [anon_sym_or] = ACTIONS(3447), - [anon_sym_from] = ACTIONS(3447), - [anon_sym_into] = ACTIONS(3447), - [anon_sym_join] = ACTIONS(3447), - [anon_sym_on] = ACTIONS(3447), - [anon_sym_equals] = ACTIONS(3447), - [anon_sym_let] = ACTIONS(3447), - [anon_sym_orderby] = ACTIONS(3447), - [anon_sym_ascending] = ACTIONS(3447), - [anon_sym_descending] = ACTIONS(3447), - [anon_sym_group] = ACTIONS(3447), - [anon_sym_by] = ACTIONS(3447), - [anon_sym_select] = ACTIONS(3447), - [anon_sym_DASH_GT] = ACTIONS(3445), + [aux_sym__query_body_repeat2] = STATE(3665), + [anon_sym_LBRACK] = ACTIONS(5958), + [anon_sym_COMMA] = ACTIONS(5958), + [anon_sym_LPAREN] = ACTIONS(5958), + [anon_sym_LT] = ACTIONS(5960), + [anon_sym_GT] = ACTIONS(5960), + [anon_sym_where] = ACTIONS(5958), + [anon_sym_QMARK] = ACTIONS(5960), + [anon_sym_BANG] = ACTIONS(5960), + [anon_sym_PLUS_PLUS] = ACTIONS(5958), + [anon_sym_DASH_DASH] = ACTIONS(5958), + [anon_sym_PLUS] = ACTIONS(5960), + [anon_sym_DASH] = ACTIONS(5960), + [anon_sym_STAR] = ACTIONS(5958), + [anon_sym_SLASH] = ACTIONS(5960), + [anon_sym_PERCENT] = ACTIONS(5958), + [anon_sym_CARET] = ACTIONS(5958), + [anon_sym_PIPE] = ACTIONS(5960), + [anon_sym_AMP] = ACTIONS(5960), + [anon_sym_LT_LT] = ACTIONS(5958), + [anon_sym_GT_GT] = ACTIONS(5960), + [anon_sym_GT_GT_GT] = ACTIONS(5958), + [anon_sym_EQ_EQ] = ACTIONS(5958), + [anon_sym_BANG_EQ] = ACTIONS(5958), + [anon_sym_GT_EQ] = ACTIONS(5958), + [anon_sym_LT_EQ] = ACTIONS(5958), + [anon_sym_DOT] = ACTIONS(5960), + [anon_sym_switch] = ACTIONS(5958), + [anon_sym_DOT_DOT] = ACTIONS(5958), + [anon_sym_and] = ACTIONS(5958), + [anon_sym_or] = ACTIONS(5960), + [anon_sym_AMP_AMP] = ACTIONS(5958), + [anon_sym_PIPE_PIPE] = ACTIONS(5958), + [anon_sym_QMARK_QMARK] = ACTIONS(5958), + [anon_sym_from] = ACTIONS(5958), + [anon_sym_into] = ACTIONS(5883), + [anon_sym_join] = ACTIONS(5958), + [anon_sym_let] = ACTIONS(5958), + [anon_sym_orderby] = ACTIONS(5958), + [anon_sym_ascending] = ACTIONS(5958), + [anon_sym_descending] = ACTIONS(5958), + [anon_sym_group] = ACTIONS(5958), + [anon_sym_select] = ACTIONS(5958), + [anon_sym_as] = ACTIONS(5960), + [anon_sym_is] = ACTIONS(5958), + [anon_sym_DASH_GT] = ACTIONS(5958), + [anon_sym_with] = ACTIONS(5958), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -518461,6 +517899,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3667] = { + [sym__name] = STATE(6516), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(4068), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(4073), + [sym_implicit_type] = STATE(7448), + [sym_array_type] = STATE(6834), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(6836), + [sym_pointer_type] = STATE(6836), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(6836), + [sym_function_pointer_parameter] = STATE(7377), + [sym__ref_base_type] = STATE(7387), + [sym_tuple_type] = STATE(6624), + [sym_identifier] = STATE(4081), + [sym__reserved_identifier] = STATE(3654), [sym_preproc_region] = STATE(3667), [sym_preproc_endregion] = STATE(3667), [sym_preproc_line] = STATE(3667), @@ -518470,53 +517925,36 @@ 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_LBRACK] = ACTIONS(4892), - [anon_sym_COMMA] = ACTIONS(4892), - [anon_sym_LPAREN] = ACTIONS(4892), - [anon_sym_LT] = ACTIONS(4894), - [anon_sym_GT] = ACTIONS(4894), - [anon_sym_where] = ACTIONS(4892), - [anon_sym_QMARK] = ACTIONS(4894), - [anon_sym_BANG] = ACTIONS(4894), - [anon_sym_PLUS_PLUS] = ACTIONS(4892), - [anon_sym_DASH_DASH] = ACTIONS(4892), - [anon_sym_PLUS] = ACTIONS(4894), - [anon_sym_DASH] = ACTIONS(4894), - [anon_sym_STAR] = ACTIONS(4892), - [anon_sym_SLASH] = ACTIONS(4894), - [anon_sym_PERCENT] = ACTIONS(4892), - [anon_sym_CARET] = ACTIONS(4892), - [anon_sym_PIPE] = ACTIONS(4894), - [anon_sym_AMP] = ACTIONS(4894), - [anon_sym_LT_LT] = ACTIONS(4892), - [anon_sym_GT_GT] = ACTIONS(4894), - [anon_sym_GT_GT_GT] = ACTIONS(4892), - [anon_sym_EQ_EQ] = ACTIONS(4892), - [anon_sym_BANG_EQ] = ACTIONS(4892), - [anon_sym_GT_EQ] = ACTIONS(4892), - [anon_sym_LT_EQ] = ACTIONS(4892), - [anon_sym_DOT] = ACTIONS(4894), - [anon_sym_switch] = ACTIONS(4892), - [anon_sym_DOT_DOT] = ACTIONS(4892), - [anon_sym_and] = ACTIONS(4892), - [anon_sym_or] = ACTIONS(4894), - [anon_sym_AMP_AMP] = ACTIONS(4892), - [anon_sym_PIPE_PIPE] = ACTIONS(4892), - [anon_sym_QMARK_QMARK] = ACTIONS(4892), - [anon_sym_from] = ACTIONS(4892), - [anon_sym_into] = ACTIONS(4892), - [anon_sym_join] = ACTIONS(4892), - [anon_sym_let] = ACTIONS(4892), - [anon_sym_orderby] = ACTIONS(4892), - [anon_sym_ascending] = ACTIONS(4892), - [anon_sym_descending] = ACTIONS(4892), - [anon_sym_group] = ACTIONS(4892), - [anon_sym_select] = ACTIONS(4892), - [anon_sym_as] = ACTIONS(4894), - [anon_sym_is] = ACTIONS(4892), - [anon_sym_DASH_GT] = ACTIONS(4892), - [anon_sym_with] = ACTIONS(4892), - [sym_string_literal_encoding] = ACTIONS(5968), + [aux_sym_function_pointer_type_repeat1] = STATE(3667), + [sym__identifier_token] = ACTIONS(5962), + [anon_sym_alias] = ACTIONS(5965), + [anon_sym_global] = ACTIONS(5965), + [anon_sym_LPAREN] = ACTIONS(5968), + [anon_sym_ref] = ACTIONS(5971), + [anon_sym_delegate] = ACTIONS(5974), + [anon_sym_file] = ACTIONS(5965), + [anon_sym_in] = ACTIONS(5971), + [anon_sym_out] = ACTIONS(5971), + [anon_sym_where] = ACTIONS(5965), + [anon_sym_notnull] = ACTIONS(5965), + [anon_sym_unmanaged] = ACTIONS(5965), + [anon_sym_scoped] = ACTIONS(5965), + [anon_sym_var] = ACTIONS(5977), + [sym_predefined_type] = ACTIONS(5980), + [anon_sym_yield] = ACTIONS(5965), + [anon_sym_when] = ACTIONS(5965), + [anon_sym_from] = ACTIONS(5965), + [anon_sym_into] = ACTIONS(5965), + [anon_sym_join] = ACTIONS(5965), + [anon_sym_on] = ACTIONS(5965), + [anon_sym_equals] = ACTIONS(5965), + [anon_sym_let] = ACTIONS(5965), + [anon_sym_orderby] = ACTIONS(5965), + [anon_sym_ascending] = ACTIONS(5965), + [anon_sym_descending] = ACTIONS(5965), + [anon_sym_group] = ACTIONS(5965), + [anon_sym_by] = ACTIONS(5965), + [anon_sym_select] = ACTIONS(5965), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -518529,24 +517967,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3668] = { - [sym__name] = STATE(4390), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(4096), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(4109), - [sym_type] = STATE(4632), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_identifier] = STATE(4087), - [sym__reserved_identifier] = STATE(3691), + [sym_argument_list] = STATE(3771), + [sym_bracketed_argument_list] = STATE(2892), [sym_preproc_region] = STATE(3668), [sym_preproc_endregion] = STATE(3668), [sym_preproc_line] = STATE(3668), @@ -518556,35 +517978,51 @@ 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), - [sym__identifier_token] = ACTIONS(2967), - [anon_sym_alias] = ACTIONS(2971), - [anon_sym_global] = ACTIONS(2971), - [anon_sym_LPAREN] = ACTIONS(2979), - [anon_sym_ref] = ACTIONS(3452), - [anon_sym_struct] = ACTIONS(2747), - [anon_sym_delegate] = ACTIONS(3454), - [anon_sym_file] = ACTIONS(2971), - [anon_sym_readonly] = ACTIONS(2749), - [anon_sym_where] = ACTIONS(2971), - [anon_sym_notnull] = ACTIONS(2971), - [anon_sym_unmanaged] = ACTIONS(2971), - [anon_sym_scoped] = ACTIONS(2997), - [anon_sym_var] = ACTIONS(2999), - [sym_predefined_type] = ACTIONS(3001), - [anon_sym_yield] = ACTIONS(2971), - [anon_sym_when] = ACTIONS(2971), - [anon_sym_from] = ACTIONS(2971), - [anon_sym_into] = ACTIONS(2971), - [anon_sym_join] = ACTIONS(2971), - [anon_sym_on] = ACTIONS(2971), - [anon_sym_equals] = ACTIONS(2971), - [anon_sym_let] = ACTIONS(2971), - [anon_sym_orderby] = ACTIONS(2971), - [anon_sym_ascending] = ACTIONS(2971), - [anon_sym_descending] = ACTIONS(2971), - [anon_sym_group] = ACTIONS(2971), - [anon_sym_by] = ACTIONS(2971), - [anon_sym_select] = ACTIONS(2971), + [anon_sym_LBRACK] = ACTIONS(5650), + [anon_sym_COMMA] = ACTIONS(5737), + [anon_sym_LPAREN] = ACTIONS(5591), + [anon_sym_LT] = ACTIONS(5895), + [anon_sym_GT] = ACTIONS(5895), + [anon_sym_where] = ACTIONS(5737), + [anon_sym_QMARK] = ACTIONS(5739), + [anon_sym_BANG] = ACTIONS(5658), + [anon_sym_PLUS_PLUS] = ACTIONS(5660), + [anon_sym_DASH_DASH] = ACTIONS(5660), + [anon_sym_PLUS] = ACTIONS(5897), + [anon_sym_DASH] = ACTIONS(5897), + [anon_sym_STAR] = ACTIONS(5899), + [anon_sym_SLASH] = ACTIONS(5901), + [anon_sym_PERCENT] = ACTIONS(5899), + [anon_sym_CARET] = ACTIONS(5903), + [anon_sym_PIPE] = ACTIONS(5923), + [anon_sym_AMP] = ACTIONS(5905), + [anon_sym_LT_LT] = ACTIONS(5907), + [anon_sym_GT_GT] = ACTIONS(5909), + [anon_sym_GT_GT_GT] = ACTIONS(5907), + [anon_sym_EQ_EQ] = ACTIONS(5911), + [anon_sym_BANG_EQ] = ACTIONS(5911), + [anon_sym_GT_EQ] = ACTIONS(5913), + [anon_sym_LT_EQ] = ACTIONS(5913), + [anon_sym_DOT] = ACTIONS(4697), + [anon_sym_switch] = ACTIONS(5682), + [anon_sym_DOT_DOT] = ACTIONS(5915), + [anon_sym_and] = ACTIONS(5737), + [anon_sym_or] = ACTIONS(5739), + [anon_sym_AMP_AMP] = ACTIONS(5925), + [anon_sym_PIPE_PIPE] = ACTIONS(5737), + [anon_sym_QMARK_QMARK] = ACTIONS(5737), + [anon_sym_from] = ACTIONS(5737), + [anon_sym_join] = ACTIONS(5737), + [anon_sym_let] = ACTIONS(5737), + [anon_sym_orderby] = ACTIONS(5737), + [anon_sym_ascending] = ACTIONS(5737), + [anon_sym_descending] = ACTIONS(5737), + [anon_sym_group] = ACTIONS(5737), + [anon_sym_select] = ACTIONS(5737), + [anon_sym_as] = ACTIONS(5917), + [anon_sym_is] = ACTIONS(5919), + [anon_sym_DASH_GT] = ACTIONS(4699), + [anon_sym_with] = ACTIONS(5698), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -518597,8 +518035,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3669] = { - [sym_argument_list] = STATE(3886), - [sym_bracketed_argument_list] = STATE(2902), + [sym_argument_list] = STATE(3771), + [sym_bracketed_argument_list] = STATE(2892), [sym_preproc_region] = STATE(3669), [sym_preproc_endregion] = STATE(3669), [sym_preproc_line] = STATE(3669), @@ -518608,51 +518046,51 @@ 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(5658), - [anon_sym_COMMA] = ACTIONS(5899), - [anon_sym_LPAREN] = ACTIONS(5624), - [anon_sym_LT] = ACTIONS(5903), - [anon_sym_GT] = ACTIONS(5903), - [anon_sym_where] = ACTIONS(5899), - [anon_sym_QMARK] = ACTIONS(5905), - [anon_sym_BANG] = ACTIONS(5666), - [anon_sym_PLUS_PLUS] = ACTIONS(5668), - [anon_sym_DASH_DASH] = ACTIONS(5668), - [anon_sym_PLUS] = ACTIONS(5907), - [anon_sym_DASH] = ACTIONS(5907), - [anon_sym_STAR] = ACTIONS(5909), - [anon_sym_SLASH] = ACTIONS(5911), - [anon_sym_PERCENT] = ACTIONS(5909), - [anon_sym_CARET] = ACTIONS(5913), - [anon_sym_PIPE] = ACTIONS(5915), - [anon_sym_AMP] = ACTIONS(5917), - [anon_sym_LT_LT] = ACTIONS(5919), - [anon_sym_GT_GT] = ACTIONS(5921), - [anon_sym_GT_GT_GT] = ACTIONS(5919), - [anon_sym_EQ_EQ] = ACTIONS(5923), - [anon_sym_BANG_EQ] = ACTIONS(5923), - [anon_sym_GT_EQ] = ACTIONS(5925), - [anon_sym_LT_EQ] = ACTIONS(5925), - [anon_sym_DOT] = ACTIONS(4733), - [anon_sym_switch] = ACTIONS(5688), - [anon_sym_DOT_DOT] = ACTIONS(5927), - [anon_sym_and] = ACTIONS(5899), - [anon_sym_or] = ACTIONS(5901), - [anon_sym_AMP_AMP] = ACTIONS(5929), - [anon_sym_PIPE_PIPE] = ACTIONS(5931), - [anon_sym_QMARK_QMARK] = ACTIONS(5933), - [anon_sym_from] = ACTIONS(5899), - [anon_sym_join] = ACTIONS(5899), - [anon_sym_let] = ACTIONS(5899), - [anon_sym_orderby] = ACTIONS(5899), - [anon_sym_ascending] = ACTIONS(5899), - [anon_sym_descending] = ACTIONS(5899), - [anon_sym_group] = ACTIONS(5899), - [anon_sym_select] = ACTIONS(5899), - [anon_sym_as] = ACTIONS(5935), - [anon_sym_is] = ACTIONS(5937), - [anon_sym_DASH_GT] = ACTIONS(4719), - [anon_sym_with] = ACTIONS(5696), + [anon_sym_LBRACK] = ACTIONS(5650), + [anon_sym_COMMA] = ACTIONS(5652), + [anon_sym_LPAREN] = ACTIONS(5591), + [anon_sym_LT] = ACTIONS(5895), + [anon_sym_GT] = ACTIONS(5895), + [anon_sym_where] = ACTIONS(5652), + [anon_sym_QMARK] = ACTIONS(5921), + [anon_sym_BANG] = ACTIONS(5658), + [anon_sym_PLUS_PLUS] = ACTIONS(5660), + [anon_sym_DASH_DASH] = ACTIONS(5660), + [anon_sym_PLUS] = ACTIONS(5897), + [anon_sym_DASH] = ACTIONS(5897), + [anon_sym_STAR] = ACTIONS(5899), + [anon_sym_SLASH] = ACTIONS(5901), + [anon_sym_PERCENT] = ACTIONS(5899), + [anon_sym_CARET] = ACTIONS(5903), + [anon_sym_PIPE] = ACTIONS(5923), + [anon_sym_AMP] = ACTIONS(5905), + [anon_sym_LT_LT] = ACTIONS(5907), + [anon_sym_GT_GT] = ACTIONS(5909), + [anon_sym_GT_GT_GT] = ACTIONS(5907), + [anon_sym_EQ_EQ] = ACTIONS(5911), + [anon_sym_BANG_EQ] = ACTIONS(5911), + [anon_sym_GT_EQ] = ACTIONS(5913), + [anon_sym_LT_EQ] = ACTIONS(5913), + [anon_sym_DOT] = ACTIONS(4697), + [anon_sym_switch] = ACTIONS(5682), + [anon_sym_DOT_DOT] = ACTIONS(5915), + [anon_sym_and] = ACTIONS(5652), + [anon_sym_or] = ACTIONS(5686), + [anon_sym_AMP_AMP] = ACTIONS(5925), + [anon_sym_PIPE_PIPE] = ACTIONS(5927), + [anon_sym_QMARK_QMARK] = ACTIONS(5929), + [anon_sym_from] = ACTIONS(5652), + [anon_sym_join] = ACTIONS(5652), + [anon_sym_let] = ACTIONS(5652), + [anon_sym_orderby] = ACTIONS(5652), + [anon_sym_ascending] = ACTIONS(5652), + [anon_sym_descending] = ACTIONS(5652), + [anon_sym_group] = ACTIONS(5652), + [anon_sym_select] = ACTIONS(5652), + [anon_sym_as] = ACTIONS(5917), + [anon_sym_is] = ACTIONS(5919), + [anon_sym_DASH_GT] = ACTIONS(4699), + [anon_sym_with] = ACTIONS(5698), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -518665,23 +518103,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3670] = { - [sym__name] = STATE(6467), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(4096), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(4109), - [sym_implicit_type] = STATE(7560), - [sym_array_type] = STATE(6752), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(6759), - [sym_pointer_type] = STATE(6759), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(6759), - [sym_function_pointer_parameter] = STATE(7574), - [sym__ref_base_type] = STATE(7583), - [sym_tuple_type] = STATE(6611), - [sym_identifier] = STATE(4087), - [sym__reserved_identifier] = STATE(3691), [sym_preproc_region] = STATE(3670), [sym_preproc_endregion] = STATE(3670), [sym_preproc_line] = STATE(3670), @@ -518691,36 +518112,53 @@ 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), - [aux_sym_function_pointer_type_repeat1] = STATE(3670), - [sym__identifier_token] = ACTIONS(5970), - [anon_sym_alias] = ACTIONS(5973), - [anon_sym_global] = ACTIONS(5973), - [anon_sym_LPAREN] = ACTIONS(5976), - [anon_sym_ref] = ACTIONS(5979), - [anon_sym_delegate] = ACTIONS(5982), - [anon_sym_file] = ACTIONS(5973), - [anon_sym_in] = ACTIONS(5979), - [anon_sym_out] = ACTIONS(5979), - [anon_sym_where] = ACTIONS(5973), - [anon_sym_notnull] = ACTIONS(5973), - [anon_sym_unmanaged] = ACTIONS(5973), - [anon_sym_scoped] = ACTIONS(5973), - [anon_sym_var] = ACTIONS(5985), - [sym_predefined_type] = ACTIONS(5988), - [anon_sym_yield] = ACTIONS(5973), - [anon_sym_when] = ACTIONS(5973), - [anon_sym_from] = ACTIONS(5973), - [anon_sym_into] = ACTIONS(5973), - [anon_sym_join] = ACTIONS(5973), - [anon_sym_on] = ACTIONS(5973), - [anon_sym_equals] = ACTIONS(5973), - [anon_sym_let] = ACTIONS(5973), - [anon_sym_orderby] = ACTIONS(5973), - [anon_sym_ascending] = ACTIONS(5973), - [anon_sym_descending] = ACTIONS(5973), - [anon_sym_group] = ACTIONS(5973), - [anon_sym_by] = ACTIONS(5973), - [anon_sym_select] = ACTIONS(5973), + [sym__identifier_token] = ACTIONS(3431), + [anon_sym_alias] = ACTIONS(3431), + [anon_sym_SEMI] = ACTIONS(3429), + [anon_sym_global] = ACTIONS(3431), + [anon_sym_EQ] = ACTIONS(3431), + [anon_sym_LBRACK] = ACTIONS(3429), + [anon_sym_COLON] = ACTIONS(3431), + [anon_sym_COMMA] = ACTIONS(3429), + [anon_sym_RBRACK] = ACTIONS(3429), + [anon_sym_LPAREN] = ACTIONS(3429), + [anon_sym_RPAREN] = ACTIONS(3429), + [anon_sym_LBRACE] = ACTIONS(3429), + [anon_sym_RBRACE] = ACTIONS(3429), + [anon_sym_file] = ACTIONS(3431), + [anon_sym_LT] = ACTIONS(3429), + [anon_sym_GT] = ACTIONS(3429), + [anon_sym_in] = ACTIONS(3431), + [anon_sym_where] = ACTIONS(3431), + [anon_sym_QMARK] = ACTIONS(3429), + [anon_sym_notnull] = ACTIONS(3431), + [anon_sym_unmanaged] = ACTIONS(3431), + [anon_sym_operator] = ACTIONS(3431), + [anon_sym_STAR] = ACTIONS(3429), + [anon_sym_this] = ACTIONS(3431), + [anon_sym_DOT] = ACTIONS(3429), + [anon_sym_scoped] = ACTIONS(3431), + [anon_sym_EQ_GT] = ACTIONS(3429), + [anon_sym_COLON_COLON] = ACTIONS(3429), + [anon_sym_var] = ACTIONS(3431), + [anon_sym_yield] = ACTIONS(3431), + [anon_sym_when] = ACTIONS(3431), + [sym_discard] = ACTIONS(3431), + [anon_sym_and] = ACTIONS(3431), + [anon_sym_or] = 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), + [anon_sym_DASH_GT] = ACTIONS(3429), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -518733,8 +518171,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3671] = { - [sym_argument_list] = STATE(3886), - [sym_bracketed_argument_list] = STATE(2902), + [sym_argument_list] = STATE(3771), + [sym_bracketed_argument_list] = STATE(2892), [sym_preproc_region] = STATE(3671), [sym_preproc_endregion] = STATE(3671), [sym_preproc_line] = STATE(3671), @@ -518744,51 +518182,51 @@ 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_LBRACK] = ACTIONS(5658), - [anon_sym_COMMA] = ACTIONS(5660), - [anon_sym_LPAREN] = ACTIONS(5624), - [anon_sym_LT] = ACTIONS(5664), - [anon_sym_GT] = ACTIONS(5664), - [anon_sym_where] = ACTIONS(5660), - [anon_sym_QMARK] = ACTIONS(5664), - [anon_sym_BANG] = ACTIONS(5666), - [anon_sym_PLUS_PLUS] = ACTIONS(5668), - [anon_sym_DASH_DASH] = ACTIONS(5668), - [anon_sym_PLUS] = ACTIONS(5907), - [anon_sym_DASH] = ACTIONS(5907), - [anon_sym_STAR] = ACTIONS(5909), - [anon_sym_SLASH] = ACTIONS(5911), - [anon_sym_PERCENT] = ACTIONS(5909), - [anon_sym_CARET] = ACTIONS(5660), - [anon_sym_PIPE] = ACTIONS(5664), - [anon_sym_AMP] = ACTIONS(5664), - [anon_sym_LT_LT] = ACTIONS(5919), - [anon_sym_GT_GT] = ACTIONS(5921), - [anon_sym_GT_GT_GT] = ACTIONS(5919), - [anon_sym_EQ_EQ] = ACTIONS(5660), - [anon_sym_BANG_EQ] = ACTIONS(5660), - [anon_sym_GT_EQ] = ACTIONS(5660), - [anon_sym_LT_EQ] = ACTIONS(5660), - [anon_sym_DOT] = ACTIONS(4733), - [anon_sym_switch] = ACTIONS(5688), - [anon_sym_DOT_DOT] = ACTIONS(5927), - [anon_sym_and] = ACTIONS(5660), - [anon_sym_or] = ACTIONS(5664), - [anon_sym_AMP_AMP] = ACTIONS(5660), - [anon_sym_PIPE_PIPE] = ACTIONS(5660), - [anon_sym_QMARK_QMARK] = ACTIONS(5660), - [anon_sym_from] = ACTIONS(5660), - [anon_sym_join] = ACTIONS(5660), - [anon_sym_let] = ACTIONS(5660), - [anon_sym_orderby] = ACTIONS(5660), - [anon_sym_ascending] = ACTIONS(5660), - [anon_sym_descending] = ACTIONS(5660), - [anon_sym_group] = ACTIONS(5660), - [anon_sym_select] = ACTIONS(5660), - [anon_sym_as] = ACTIONS(5664), - [anon_sym_is] = ACTIONS(5660), - [anon_sym_DASH_GT] = ACTIONS(4719), - [anon_sym_with] = ACTIONS(5696), + [anon_sym_LBRACK] = ACTIONS(5650), + [anon_sym_COMMA] = ACTIONS(5737), + [anon_sym_LPAREN] = ACTIONS(5591), + [anon_sym_LT] = ACTIONS(5739), + [anon_sym_GT] = ACTIONS(5739), + [anon_sym_where] = ACTIONS(5737), + [anon_sym_QMARK] = ACTIONS(5739), + [anon_sym_BANG] = ACTIONS(5658), + [anon_sym_PLUS_PLUS] = ACTIONS(5660), + [anon_sym_DASH_DASH] = ACTIONS(5660), + [anon_sym_PLUS] = ACTIONS(5897), + [anon_sym_DASH] = ACTIONS(5897), + [anon_sym_STAR] = ACTIONS(5899), + [anon_sym_SLASH] = ACTIONS(5901), + [anon_sym_PERCENT] = ACTIONS(5899), + [anon_sym_CARET] = ACTIONS(5737), + [anon_sym_PIPE] = ACTIONS(5739), + [anon_sym_AMP] = ACTIONS(5739), + [anon_sym_LT_LT] = ACTIONS(5907), + [anon_sym_GT_GT] = ACTIONS(5909), + [anon_sym_GT_GT_GT] = ACTIONS(5907), + [anon_sym_EQ_EQ] = ACTIONS(5737), + [anon_sym_BANG_EQ] = ACTIONS(5737), + [anon_sym_GT_EQ] = ACTIONS(5737), + [anon_sym_LT_EQ] = ACTIONS(5737), + [anon_sym_DOT] = ACTIONS(4697), + [anon_sym_switch] = ACTIONS(5682), + [anon_sym_DOT_DOT] = ACTIONS(5915), + [anon_sym_and] = ACTIONS(5737), + [anon_sym_or] = ACTIONS(5739), + [anon_sym_AMP_AMP] = ACTIONS(5737), + [anon_sym_PIPE_PIPE] = ACTIONS(5737), + [anon_sym_QMARK_QMARK] = ACTIONS(5737), + [anon_sym_from] = ACTIONS(5737), + [anon_sym_join] = ACTIONS(5737), + [anon_sym_let] = ACTIONS(5737), + [anon_sym_orderby] = ACTIONS(5737), + [anon_sym_ascending] = ACTIONS(5737), + [anon_sym_descending] = ACTIONS(5737), + [anon_sym_group] = ACTIONS(5737), + [anon_sym_select] = ACTIONS(5737), + [anon_sym_as] = ACTIONS(5739), + [anon_sym_is] = ACTIONS(5737), + [anon_sym_DASH_GT] = ACTIONS(4699), + [anon_sym_with] = ACTIONS(5698), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -518801,8 +518239,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3672] = { - [sym_argument_list] = STATE(3886), - [sym_bracketed_argument_list] = STATE(2902), [sym_preproc_region] = STATE(3672), [sym_preproc_endregion] = STATE(3672), [sym_preproc_line] = STATE(3672), @@ -518812,51 +518248,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3672), [sym_preproc_define] = STATE(3672), [sym_preproc_undef] = STATE(3672), - [anon_sym_LBRACK] = ACTIONS(5658), - [anon_sym_COMMA] = ACTIONS(5660), - [anon_sym_LPAREN] = ACTIONS(5624), - [anon_sym_LT] = ACTIONS(5664), - [anon_sym_GT] = ACTIONS(5664), - [anon_sym_where] = ACTIONS(5660), - [anon_sym_QMARK] = ACTIONS(5664), - [anon_sym_BANG] = ACTIONS(5666), - [anon_sym_PLUS_PLUS] = ACTIONS(5668), - [anon_sym_DASH_DASH] = ACTIONS(5668), - [anon_sym_PLUS] = ACTIONS(5664), - [anon_sym_DASH] = ACTIONS(5664), - [anon_sym_STAR] = ACTIONS(5909), - [anon_sym_SLASH] = ACTIONS(5911), - [anon_sym_PERCENT] = ACTIONS(5909), - [anon_sym_CARET] = ACTIONS(5660), - [anon_sym_PIPE] = ACTIONS(5664), - [anon_sym_AMP] = ACTIONS(5664), - [anon_sym_LT_LT] = ACTIONS(5660), - [anon_sym_GT_GT] = ACTIONS(5664), - [anon_sym_GT_GT_GT] = ACTIONS(5660), - [anon_sym_EQ_EQ] = ACTIONS(5660), - [anon_sym_BANG_EQ] = ACTIONS(5660), - [anon_sym_GT_EQ] = ACTIONS(5660), - [anon_sym_LT_EQ] = ACTIONS(5660), - [anon_sym_DOT] = ACTIONS(4733), - [anon_sym_switch] = ACTIONS(5688), - [anon_sym_DOT_DOT] = ACTIONS(5927), - [anon_sym_and] = ACTIONS(5660), - [anon_sym_or] = ACTIONS(5664), - [anon_sym_AMP_AMP] = ACTIONS(5660), - [anon_sym_PIPE_PIPE] = ACTIONS(5660), - [anon_sym_QMARK_QMARK] = ACTIONS(5660), - [anon_sym_from] = ACTIONS(5660), - [anon_sym_join] = ACTIONS(5660), - [anon_sym_let] = ACTIONS(5660), - [anon_sym_orderby] = ACTIONS(5660), - [anon_sym_ascending] = ACTIONS(5660), - [anon_sym_descending] = ACTIONS(5660), - [anon_sym_group] = ACTIONS(5660), - [anon_sym_select] = ACTIONS(5660), - [anon_sym_as] = ACTIONS(5664), - [anon_sym_is] = ACTIONS(5660), - [anon_sym_DASH_GT] = ACTIONS(4719), - [anon_sym_with] = ACTIONS(5696), + [anon_sym_LBRACK] = ACTIONS(4891), + [anon_sym_COMMA] = ACTIONS(4891), + [anon_sym_LPAREN] = ACTIONS(4891), + [anon_sym_LT] = ACTIONS(4893), + [anon_sym_GT] = ACTIONS(4893), + [anon_sym_where] = ACTIONS(4891), + [anon_sym_QMARK] = ACTIONS(4893), + [anon_sym_BANG] = ACTIONS(4893), + [anon_sym_PLUS_PLUS] = ACTIONS(4891), + [anon_sym_DASH_DASH] = ACTIONS(4891), + [anon_sym_PLUS] = ACTIONS(4893), + [anon_sym_DASH] = ACTIONS(4893), + [anon_sym_STAR] = ACTIONS(4891), + [anon_sym_SLASH] = ACTIONS(4893), + [anon_sym_PERCENT] = ACTIONS(4891), + [anon_sym_CARET] = ACTIONS(4891), + [anon_sym_PIPE] = ACTIONS(4893), + [anon_sym_AMP] = ACTIONS(4893), + [anon_sym_LT_LT] = ACTIONS(4891), + [anon_sym_GT_GT] = ACTIONS(4893), + [anon_sym_GT_GT_GT] = ACTIONS(4891), + [anon_sym_EQ_EQ] = ACTIONS(4891), + [anon_sym_BANG_EQ] = ACTIONS(4891), + [anon_sym_GT_EQ] = ACTIONS(4891), + [anon_sym_LT_EQ] = ACTIONS(4891), + [anon_sym_DOT] = ACTIONS(4893), + [anon_sym_switch] = ACTIONS(4891), + [anon_sym_DOT_DOT] = ACTIONS(4891), + [anon_sym_and] = ACTIONS(4891), + [anon_sym_or] = ACTIONS(4893), + [anon_sym_AMP_AMP] = ACTIONS(4891), + [anon_sym_PIPE_PIPE] = ACTIONS(4891), + [anon_sym_QMARK_QMARK] = ACTIONS(4891), + [anon_sym_from] = ACTIONS(4891), + [anon_sym_into] = ACTIONS(4891), + [anon_sym_join] = ACTIONS(4891), + [anon_sym_let] = ACTIONS(4891), + [anon_sym_orderby] = ACTIONS(4891), + [anon_sym_ascending] = ACTIONS(4891), + [anon_sym_descending] = ACTIONS(4891), + [anon_sym_group] = ACTIONS(4891), + [anon_sym_select] = ACTIONS(4891), + [anon_sym_as] = ACTIONS(4893), + [anon_sym_is] = ACTIONS(4891), + [anon_sym_DASH_GT] = ACTIONS(4891), + [anon_sym_with] = ACTIONS(4891), + [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), @@ -518869,8 +518307,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3673] = { - [sym_argument_list] = STATE(3886), - [sym_bracketed_argument_list] = STATE(2902), [sym_preproc_region] = STATE(3673), [sym_preproc_endregion] = STATE(3673), [sym_preproc_line] = STATE(3673), @@ -518880,51 +518316,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), - [anon_sym_LBRACK] = ACTIONS(5658), - [anon_sym_COMMA] = ACTIONS(5660), - [anon_sym_LPAREN] = ACTIONS(5624), - [anon_sym_LT] = ACTIONS(5664), - [anon_sym_GT] = ACTIONS(5664), - [anon_sym_where] = ACTIONS(5660), - [anon_sym_QMARK] = ACTIONS(5664), - [anon_sym_BANG] = ACTIONS(5666), - [anon_sym_PLUS_PLUS] = ACTIONS(5668), - [anon_sym_DASH_DASH] = ACTIONS(5668), - [anon_sym_PLUS] = ACTIONS(5664), - [anon_sym_DASH] = ACTIONS(5664), - [anon_sym_STAR] = ACTIONS(5660), - [anon_sym_SLASH] = ACTIONS(5664), - [anon_sym_PERCENT] = ACTIONS(5660), - [anon_sym_CARET] = ACTIONS(5660), - [anon_sym_PIPE] = ACTIONS(5664), - [anon_sym_AMP] = ACTIONS(5664), - [anon_sym_LT_LT] = ACTIONS(5660), - [anon_sym_GT_GT] = ACTIONS(5664), - [anon_sym_GT_GT_GT] = ACTIONS(5660), - [anon_sym_EQ_EQ] = ACTIONS(5660), - [anon_sym_BANG_EQ] = ACTIONS(5660), - [anon_sym_GT_EQ] = ACTIONS(5660), - [anon_sym_LT_EQ] = ACTIONS(5660), - [anon_sym_DOT] = ACTIONS(4733), - [anon_sym_switch] = ACTIONS(5688), - [anon_sym_DOT_DOT] = ACTIONS(5927), - [anon_sym_and] = ACTIONS(5660), - [anon_sym_or] = ACTIONS(5664), - [anon_sym_AMP_AMP] = ACTIONS(5660), - [anon_sym_PIPE_PIPE] = ACTIONS(5660), - [anon_sym_QMARK_QMARK] = ACTIONS(5660), - [anon_sym_from] = ACTIONS(5660), - [anon_sym_join] = ACTIONS(5660), - [anon_sym_let] = ACTIONS(5660), - [anon_sym_orderby] = ACTIONS(5660), - [anon_sym_ascending] = ACTIONS(5660), - [anon_sym_descending] = ACTIONS(5660), - [anon_sym_group] = ACTIONS(5660), - [anon_sym_select] = ACTIONS(5660), - [anon_sym_as] = ACTIONS(5664), - [anon_sym_is] = ACTIONS(5660), - [anon_sym_DASH_GT] = ACTIONS(4719), - [anon_sym_with] = ACTIONS(5696), + [anon_sym_EQ] = ACTIONS(5985), + [anon_sym_LBRACK] = ACTIONS(4811), + [anon_sym_LPAREN] = ACTIONS(4811), + [anon_sym_LT] = ACTIONS(4813), + [anon_sym_GT] = ACTIONS(4813), + [anon_sym_QMARK] = ACTIONS(4813), + [anon_sym_BANG] = ACTIONS(4813), + [anon_sym_PLUS_PLUS] = ACTIONS(4811), + [anon_sym_DASH_DASH] = ACTIONS(4811), + [anon_sym_PLUS] = ACTIONS(4813), + [anon_sym_DASH] = ACTIONS(4813), + [anon_sym_STAR] = ACTIONS(4813), + [anon_sym_SLASH] = ACTIONS(4813), + [anon_sym_PERCENT] = ACTIONS(4813), + [anon_sym_CARET] = ACTIONS(4813), + [anon_sym_PIPE] = ACTIONS(4813), + [anon_sym_AMP] = ACTIONS(4813), + [anon_sym_LT_LT] = ACTIONS(4813), + [anon_sym_GT_GT] = ACTIONS(4813), + [anon_sym_GT_GT_GT] = ACTIONS(4813), + [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(4813), + [anon_sym_switch] = ACTIONS(4811), + [anon_sym_DOT_DOT] = ACTIONS(4811), + [anon_sym_PLUS_EQ] = ACTIONS(5987), + [anon_sym_DASH_EQ] = ACTIONS(5987), + [anon_sym_STAR_EQ] = ACTIONS(5987), + [anon_sym_SLASH_EQ] = ACTIONS(5987), + [anon_sym_PERCENT_EQ] = ACTIONS(5987), + [anon_sym_AMP_EQ] = ACTIONS(5987), + [anon_sym_CARET_EQ] = ACTIONS(5987), + [anon_sym_PIPE_EQ] = ACTIONS(5987), + [anon_sym_LT_LT_EQ] = ACTIONS(5987), + [anon_sym_GT_GT_EQ] = ACTIONS(5987), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(5987), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(5987), + [anon_sym_AMP_AMP] = ACTIONS(4811), + [anon_sym_PIPE_PIPE] = ACTIONS(4811), + [anon_sym_QMARK_QMARK] = ACTIONS(4813), + [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_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -518937,8 +518375,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3674] = { - [sym_argument_list] = STATE(3886), - [sym_bracketed_argument_list] = STATE(2902), + [sym_argument_list] = STATE(3771), + [sym_bracketed_argument_list] = STATE(2892), [sym_preproc_region] = STATE(3674), [sym_preproc_endregion] = STATE(3674), [sym_preproc_line] = STATE(3674), @@ -518948,51 +518386,51 @@ 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), - [anon_sym_LBRACK] = ACTIONS(5658), - [anon_sym_COMMA] = ACTIONS(5660), - [anon_sym_LPAREN] = ACTIONS(5624), - [anon_sym_LT] = ACTIONS(5903), - [anon_sym_GT] = ACTIONS(5903), - [anon_sym_where] = ACTIONS(5660), - [anon_sym_QMARK] = ACTIONS(5664), - [anon_sym_BANG] = ACTIONS(5666), - [anon_sym_PLUS_PLUS] = ACTIONS(5668), - [anon_sym_DASH_DASH] = ACTIONS(5668), - [anon_sym_PLUS] = ACTIONS(5907), - [anon_sym_DASH] = ACTIONS(5907), - [anon_sym_STAR] = ACTIONS(5909), - [anon_sym_SLASH] = ACTIONS(5911), - [anon_sym_PERCENT] = ACTIONS(5909), - [anon_sym_CARET] = ACTIONS(5660), - [anon_sym_PIPE] = ACTIONS(5664), - [anon_sym_AMP] = ACTIONS(5664), - [anon_sym_LT_LT] = ACTIONS(5919), - [anon_sym_GT_GT] = ACTIONS(5921), - [anon_sym_GT_GT_GT] = ACTIONS(5919), - [anon_sym_EQ_EQ] = ACTIONS(5660), - [anon_sym_BANG_EQ] = ACTIONS(5660), - [anon_sym_GT_EQ] = ACTIONS(5925), - [anon_sym_LT_EQ] = ACTIONS(5925), - [anon_sym_DOT] = ACTIONS(4733), - [anon_sym_switch] = ACTIONS(5688), - [anon_sym_DOT_DOT] = ACTIONS(5927), - [anon_sym_and] = ACTIONS(5660), - [anon_sym_or] = ACTIONS(5664), - [anon_sym_AMP_AMP] = ACTIONS(5660), - [anon_sym_PIPE_PIPE] = ACTIONS(5660), - [anon_sym_QMARK_QMARK] = ACTIONS(5660), - [anon_sym_from] = ACTIONS(5660), - [anon_sym_join] = ACTIONS(5660), - [anon_sym_let] = ACTIONS(5660), - [anon_sym_orderby] = ACTIONS(5660), - [anon_sym_ascending] = ACTIONS(5660), - [anon_sym_descending] = ACTIONS(5660), - [anon_sym_group] = ACTIONS(5660), - [anon_sym_select] = ACTIONS(5660), - [anon_sym_as] = ACTIONS(5935), - [anon_sym_is] = ACTIONS(5937), - [anon_sym_DASH_GT] = ACTIONS(4719), - [anon_sym_with] = ACTIONS(5696), + [anon_sym_LBRACK] = ACTIONS(5650), + [anon_sym_COMMA] = ACTIONS(5737), + [anon_sym_LPAREN] = ACTIONS(5591), + [anon_sym_LT] = ACTIONS(5895), + [anon_sym_GT] = ACTIONS(5895), + [anon_sym_where] = ACTIONS(5737), + [anon_sym_QMARK] = ACTIONS(5739), + [anon_sym_BANG] = ACTIONS(5658), + [anon_sym_PLUS_PLUS] = ACTIONS(5660), + [anon_sym_DASH_DASH] = ACTIONS(5660), + [anon_sym_PLUS] = ACTIONS(5897), + [anon_sym_DASH] = ACTIONS(5897), + [anon_sym_STAR] = ACTIONS(5899), + [anon_sym_SLASH] = ACTIONS(5901), + [anon_sym_PERCENT] = ACTIONS(5899), + [anon_sym_CARET] = ACTIONS(5903), + [anon_sym_PIPE] = ACTIONS(5923), + [anon_sym_AMP] = ACTIONS(5905), + [anon_sym_LT_LT] = ACTIONS(5907), + [anon_sym_GT_GT] = ACTIONS(5909), + [anon_sym_GT_GT_GT] = ACTIONS(5907), + [anon_sym_EQ_EQ] = ACTIONS(5911), + [anon_sym_BANG_EQ] = ACTIONS(5911), + [anon_sym_GT_EQ] = ACTIONS(5913), + [anon_sym_LT_EQ] = ACTIONS(5913), + [anon_sym_DOT] = ACTIONS(4697), + [anon_sym_switch] = ACTIONS(5682), + [anon_sym_DOT_DOT] = ACTIONS(5915), + [anon_sym_and] = ACTIONS(5737), + [anon_sym_or] = ACTIONS(5739), + [anon_sym_AMP_AMP] = ACTIONS(5737), + [anon_sym_PIPE_PIPE] = ACTIONS(5737), + [anon_sym_QMARK_QMARK] = ACTIONS(5737), + [anon_sym_from] = ACTIONS(5737), + [anon_sym_join] = ACTIONS(5737), + [anon_sym_let] = ACTIONS(5737), + [anon_sym_orderby] = ACTIONS(5737), + [anon_sym_ascending] = ACTIONS(5737), + [anon_sym_descending] = ACTIONS(5737), + [anon_sym_group] = ACTIONS(5737), + [anon_sym_select] = ACTIONS(5737), + [anon_sym_as] = ACTIONS(5917), + [anon_sym_is] = ACTIONS(5919), + [anon_sym_DASH_GT] = ACTIONS(4699), + [anon_sym_with] = ACTIONS(5698), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -519005,8 +518443,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3675] = { - [sym_argument_list] = STATE(3886), - [sym_bracketed_argument_list] = STATE(2902), + [sym_argument_list] = STATE(3771), + [sym_bracketed_argument_list] = STATE(2892), [sym_preproc_region] = STATE(3675), [sym_preproc_endregion] = STATE(3675), [sym_preproc_line] = STATE(3675), @@ -519016,51 +518454,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3675), [sym_preproc_define] = STATE(3675), [sym_preproc_undef] = STATE(3675), - [anon_sym_LBRACK] = ACTIONS(5658), - [anon_sym_COMMA] = ACTIONS(5660), - [anon_sym_LPAREN] = ACTIONS(5624), - [anon_sym_LT] = ACTIONS(5664), - [anon_sym_GT] = ACTIONS(5664), - [anon_sym_where] = ACTIONS(5660), - [anon_sym_QMARK] = ACTIONS(5664), - [anon_sym_BANG] = ACTIONS(5666), - [anon_sym_PLUS_PLUS] = ACTIONS(5668), - [anon_sym_DASH_DASH] = ACTIONS(5668), - [anon_sym_PLUS] = ACTIONS(5907), - [anon_sym_DASH] = ACTIONS(5907), - [anon_sym_STAR] = ACTIONS(5909), - [anon_sym_SLASH] = ACTIONS(5911), - [anon_sym_PERCENT] = ACTIONS(5909), - [anon_sym_CARET] = ACTIONS(5660), - [anon_sym_PIPE] = ACTIONS(5664), - [anon_sym_AMP] = ACTIONS(5664), - [anon_sym_LT_LT] = ACTIONS(5660), - [anon_sym_GT_GT] = ACTIONS(5664), - [anon_sym_GT_GT_GT] = ACTIONS(5660), - [anon_sym_EQ_EQ] = ACTIONS(5660), - [anon_sym_BANG_EQ] = ACTIONS(5660), - [anon_sym_GT_EQ] = ACTIONS(5660), - [anon_sym_LT_EQ] = ACTIONS(5660), - [anon_sym_DOT] = ACTIONS(4733), - [anon_sym_switch] = ACTIONS(5688), - [anon_sym_DOT_DOT] = ACTIONS(5927), - [anon_sym_and] = ACTIONS(5660), - [anon_sym_or] = ACTIONS(5664), - [anon_sym_AMP_AMP] = ACTIONS(5660), - [anon_sym_PIPE_PIPE] = ACTIONS(5660), - [anon_sym_QMARK_QMARK] = ACTIONS(5660), - [anon_sym_from] = ACTIONS(5660), - [anon_sym_join] = ACTIONS(5660), - [anon_sym_let] = ACTIONS(5660), - [anon_sym_orderby] = ACTIONS(5660), - [anon_sym_ascending] = ACTIONS(5660), - [anon_sym_descending] = ACTIONS(5660), - [anon_sym_group] = ACTIONS(5660), - [anon_sym_select] = ACTIONS(5660), - [anon_sym_as] = ACTIONS(5664), - [anon_sym_is] = ACTIONS(5660), - [anon_sym_DASH_GT] = ACTIONS(4719), - [anon_sym_with] = ACTIONS(5696), + [anon_sym_LBRACK] = ACTIONS(5650), + [anon_sym_COMMA] = ACTIONS(5737), + [anon_sym_LPAREN] = ACTIONS(5591), + [anon_sym_LT] = ACTIONS(5895), + [anon_sym_GT] = ACTIONS(5895), + [anon_sym_where] = ACTIONS(5737), + [anon_sym_QMARK] = ACTIONS(5739), + [anon_sym_BANG] = ACTIONS(5658), + [anon_sym_PLUS_PLUS] = ACTIONS(5660), + [anon_sym_DASH_DASH] = ACTIONS(5660), + [anon_sym_PLUS] = ACTIONS(5897), + [anon_sym_DASH] = ACTIONS(5897), + [anon_sym_STAR] = ACTIONS(5899), + [anon_sym_SLASH] = ACTIONS(5901), + [anon_sym_PERCENT] = ACTIONS(5899), + [anon_sym_CARET] = ACTIONS(5903), + [anon_sym_PIPE] = ACTIONS(5923), + [anon_sym_AMP] = ACTIONS(5905), + [anon_sym_LT_LT] = ACTIONS(5907), + [anon_sym_GT_GT] = ACTIONS(5909), + [anon_sym_GT_GT_GT] = ACTIONS(5907), + [anon_sym_EQ_EQ] = ACTIONS(5911), + [anon_sym_BANG_EQ] = ACTIONS(5911), + [anon_sym_GT_EQ] = ACTIONS(5913), + [anon_sym_LT_EQ] = ACTIONS(5913), + [anon_sym_DOT] = ACTIONS(4697), + [anon_sym_switch] = ACTIONS(5682), + [anon_sym_DOT_DOT] = ACTIONS(5915), + [anon_sym_and] = ACTIONS(5737), + [anon_sym_or] = ACTIONS(5739), + [anon_sym_AMP_AMP] = ACTIONS(5925), + [anon_sym_PIPE_PIPE] = ACTIONS(5927), + [anon_sym_QMARK_QMARK] = ACTIONS(5929), + [anon_sym_from] = ACTIONS(5737), + [anon_sym_join] = ACTIONS(5737), + [anon_sym_let] = ACTIONS(5737), + [anon_sym_orderby] = ACTIONS(5737), + [anon_sym_ascending] = ACTIONS(5737), + [anon_sym_descending] = ACTIONS(5737), + [anon_sym_group] = ACTIONS(5737), + [anon_sym_select] = ACTIONS(5737), + [anon_sym_as] = ACTIONS(5917), + [anon_sym_is] = ACTIONS(5919), + [anon_sym_DASH_GT] = ACTIONS(4699), + [anon_sym_with] = ACTIONS(5698), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -519073,8 +518511,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3676] = { - [sym_argument_list] = STATE(3886), - [sym_bracketed_argument_list] = STATE(2902), + [sym__name] = STATE(4369), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(4068), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(4073), + [sym_type] = STATE(4565), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_identifier] = STATE(4081), + [sym__reserved_identifier] = STATE(3654), [sym_preproc_region] = STATE(3676), [sym_preproc_endregion] = STATE(3676), [sym_preproc_line] = STATE(3676), @@ -519084,51 +518538,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), - [anon_sym_LBRACK] = ACTIONS(5658), - [anon_sym_COMMA] = ACTIONS(5660), - [anon_sym_LPAREN] = ACTIONS(5624), - [anon_sym_LT] = ACTIONS(5903), - [anon_sym_GT] = ACTIONS(5903), - [anon_sym_where] = ACTIONS(5660), - [anon_sym_QMARK] = ACTIONS(5664), - [anon_sym_BANG] = ACTIONS(5666), - [anon_sym_PLUS_PLUS] = ACTIONS(5668), - [anon_sym_DASH_DASH] = ACTIONS(5668), - [anon_sym_PLUS] = ACTIONS(5907), - [anon_sym_DASH] = ACTIONS(5907), - [anon_sym_STAR] = ACTIONS(5909), - [anon_sym_SLASH] = ACTIONS(5911), - [anon_sym_PERCENT] = ACTIONS(5909), - [anon_sym_CARET] = ACTIONS(5913), - [anon_sym_PIPE] = ACTIONS(5915), - [anon_sym_AMP] = ACTIONS(5917), - [anon_sym_LT_LT] = ACTIONS(5919), - [anon_sym_GT_GT] = ACTIONS(5921), - [anon_sym_GT_GT_GT] = ACTIONS(5919), - [anon_sym_EQ_EQ] = ACTIONS(5923), - [anon_sym_BANG_EQ] = ACTIONS(5923), - [anon_sym_GT_EQ] = ACTIONS(5925), - [anon_sym_LT_EQ] = ACTIONS(5925), - [anon_sym_DOT] = ACTIONS(4733), - [anon_sym_switch] = ACTIONS(5688), - [anon_sym_DOT_DOT] = ACTIONS(5927), - [anon_sym_and] = ACTIONS(5660), - [anon_sym_or] = ACTIONS(5664), - [anon_sym_AMP_AMP] = ACTIONS(5660), - [anon_sym_PIPE_PIPE] = ACTIONS(5660), - [anon_sym_QMARK_QMARK] = ACTIONS(5660), - [anon_sym_from] = ACTIONS(5660), - [anon_sym_join] = ACTIONS(5660), - [anon_sym_let] = ACTIONS(5660), - [anon_sym_orderby] = ACTIONS(5660), - [anon_sym_ascending] = ACTIONS(5660), - [anon_sym_descending] = ACTIONS(5660), - [anon_sym_group] = ACTIONS(5660), - [anon_sym_select] = ACTIONS(5660), - [anon_sym_as] = ACTIONS(5935), - [anon_sym_is] = ACTIONS(5937), - [anon_sym_DASH_GT] = ACTIONS(4719), - [anon_sym_with] = ACTIONS(5696), + [sym__identifier_token] = ACTIONS(2965), + [anon_sym_alias] = ACTIONS(2969), + [anon_sym_global] = ACTIONS(2969), + [anon_sym_LPAREN] = ACTIONS(2977), + [anon_sym_ref] = ACTIONS(3436), + [anon_sym_struct] = ACTIONS(2823), + [anon_sym_delegate] = ACTIONS(3438), + [anon_sym_file] = ACTIONS(2969), + [anon_sym_readonly] = ACTIONS(2767), + [anon_sym_where] = ACTIONS(2969), + [anon_sym_notnull] = ACTIONS(2969), + [anon_sym_unmanaged] = ACTIONS(2969), + [anon_sym_scoped] = ACTIONS(2993), + [anon_sym_var] = ACTIONS(2995), + [sym_predefined_type] = ACTIONS(2997), + [anon_sym_yield] = ACTIONS(2969), + [anon_sym_when] = ACTIONS(2969), + [anon_sym_from] = ACTIONS(2969), + [anon_sym_into] = ACTIONS(2969), + [anon_sym_join] = ACTIONS(2969), + [anon_sym_on] = ACTIONS(2969), + [anon_sym_equals] = ACTIONS(2969), + [anon_sym_let] = ACTIONS(2969), + [anon_sym_orderby] = ACTIONS(2969), + [anon_sym_ascending] = ACTIONS(2969), + [anon_sym_descending] = ACTIONS(2969), + [anon_sym_group] = ACTIONS(2969), + [anon_sym_by] = ACTIONS(2969), + [anon_sym_select] = ACTIONS(2969), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -519141,6 +518579,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3677] = { + [sym_argument_list] = STATE(3771), + [sym_bracketed_argument_list] = STATE(2892), [sym_preproc_region] = STATE(3677), [sym_preproc_endregion] = STATE(3677), [sym_preproc_line] = STATE(3677), @@ -519150,53 +518590,51 @@ 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), - [anon_sym_EQ] = ACTIONS(5991), - [anon_sym_LBRACK] = ACTIONS(4860), - [anon_sym_LPAREN] = ACTIONS(4860), - [anon_sym_LT] = ACTIONS(4862), - [anon_sym_GT] = ACTIONS(4862), - [anon_sym_QMARK] = ACTIONS(4862), - [anon_sym_BANG] = ACTIONS(4862), - [anon_sym_PLUS_PLUS] = ACTIONS(4860), - [anon_sym_DASH_DASH] = ACTIONS(4860), - [anon_sym_PLUS] = ACTIONS(4862), - [anon_sym_DASH] = ACTIONS(4862), - [anon_sym_STAR] = ACTIONS(4862), - [anon_sym_SLASH] = ACTIONS(4862), - [anon_sym_PERCENT] = ACTIONS(4862), - [anon_sym_CARET] = ACTIONS(4862), - [anon_sym_PIPE] = ACTIONS(4862), - [anon_sym_AMP] = ACTIONS(4862), - [anon_sym_LT_LT] = ACTIONS(4862), - [anon_sym_GT_GT] = ACTIONS(4862), - [anon_sym_GT_GT_GT] = ACTIONS(4862), - [anon_sym_EQ_EQ] = ACTIONS(4860), - [anon_sym_BANG_EQ] = ACTIONS(4860), - [anon_sym_GT_EQ] = ACTIONS(4860), - [anon_sym_LT_EQ] = ACTIONS(4860), - [anon_sym_DOT] = ACTIONS(4862), - [anon_sym_EQ_GT] = ACTIONS(4860), - [anon_sym_switch] = ACTIONS(4860), - [anon_sym_DOT_DOT] = ACTIONS(4860), - [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(4860), - [anon_sym_PIPE_PIPE] = ACTIONS(4860), - [anon_sym_QMARK_QMARK] = ACTIONS(4862), - [anon_sym_as] = ACTIONS(4860), - [anon_sym_is] = ACTIONS(4860), - [anon_sym_DASH_GT] = ACTIONS(4860), - [anon_sym_with] = ACTIONS(4860), + [anon_sym_LBRACK] = ACTIONS(5650), + [anon_sym_COMMA] = ACTIONS(5737), + [anon_sym_LPAREN] = ACTIONS(5591), + [anon_sym_LT] = ACTIONS(5739), + [anon_sym_GT] = ACTIONS(5739), + [anon_sym_where] = ACTIONS(5737), + [anon_sym_QMARK] = ACTIONS(5739), + [anon_sym_BANG] = ACTIONS(5658), + [anon_sym_PLUS_PLUS] = ACTIONS(5660), + [anon_sym_DASH_DASH] = ACTIONS(5660), + [anon_sym_PLUS] = ACTIONS(5739), + [anon_sym_DASH] = ACTIONS(5739), + [anon_sym_STAR] = ACTIONS(5899), + [anon_sym_SLASH] = ACTIONS(5901), + [anon_sym_PERCENT] = ACTIONS(5899), + [anon_sym_CARET] = ACTIONS(5737), + [anon_sym_PIPE] = ACTIONS(5739), + [anon_sym_AMP] = ACTIONS(5739), + [anon_sym_LT_LT] = ACTIONS(5737), + [anon_sym_GT_GT] = ACTIONS(5739), + [anon_sym_GT_GT_GT] = ACTIONS(5737), + [anon_sym_EQ_EQ] = ACTIONS(5737), + [anon_sym_BANG_EQ] = ACTIONS(5737), + [anon_sym_GT_EQ] = ACTIONS(5737), + [anon_sym_LT_EQ] = ACTIONS(5737), + [anon_sym_DOT] = ACTIONS(4697), + [anon_sym_switch] = ACTIONS(5682), + [anon_sym_DOT_DOT] = ACTIONS(5915), + [anon_sym_and] = ACTIONS(5737), + [anon_sym_or] = ACTIONS(5739), + [anon_sym_AMP_AMP] = ACTIONS(5737), + [anon_sym_PIPE_PIPE] = ACTIONS(5737), + [anon_sym_QMARK_QMARK] = ACTIONS(5737), + [anon_sym_from] = ACTIONS(5737), + [anon_sym_join] = ACTIONS(5737), + [anon_sym_let] = ACTIONS(5737), + [anon_sym_orderby] = ACTIONS(5737), + [anon_sym_ascending] = ACTIONS(5737), + [anon_sym_descending] = ACTIONS(5737), + [anon_sym_group] = ACTIONS(5737), + [anon_sym_select] = ACTIONS(5737), + [anon_sym_as] = ACTIONS(5739), + [anon_sym_is] = ACTIONS(5737), + [anon_sym_DASH_GT] = ACTIONS(4699), + [anon_sym_with] = ACTIONS(5698), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -519209,8 +518647,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3678] = { - [sym_argument_list] = STATE(3886), - [sym_bracketed_argument_list] = STATE(2902), + [sym_argument_list] = STATE(3771), + [sym_bracketed_argument_list] = STATE(2892), [sym_preproc_region] = STATE(3678), [sym_preproc_endregion] = STATE(3678), [sym_preproc_line] = STATE(3678), @@ -519220,51 +518658,51 @@ 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), - [anon_sym_LBRACK] = ACTIONS(5658), - [anon_sym_COMMA] = ACTIONS(5072), - [anon_sym_LPAREN] = ACTIONS(5624), - [anon_sym_LT] = ACTIONS(5903), - [anon_sym_GT] = ACTIONS(5903), - [anon_sym_where] = ACTIONS(5072), - [anon_sym_QMARK] = ACTIONS(5905), - [anon_sym_BANG] = ACTIONS(5666), - [anon_sym_PLUS_PLUS] = ACTIONS(5668), - [anon_sym_DASH_DASH] = ACTIONS(5668), - [anon_sym_PLUS] = ACTIONS(5907), - [anon_sym_DASH] = ACTIONS(5907), - [anon_sym_STAR] = ACTIONS(5909), - [anon_sym_SLASH] = ACTIONS(5911), - [anon_sym_PERCENT] = ACTIONS(5909), - [anon_sym_CARET] = ACTIONS(5913), - [anon_sym_PIPE] = ACTIONS(5915), - [anon_sym_AMP] = ACTIONS(5917), - [anon_sym_LT_LT] = ACTIONS(5919), - [anon_sym_GT_GT] = ACTIONS(5921), - [anon_sym_GT_GT_GT] = ACTIONS(5919), - [anon_sym_EQ_EQ] = ACTIONS(5923), - [anon_sym_BANG_EQ] = ACTIONS(5923), - [anon_sym_GT_EQ] = ACTIONS(5925), - [anon_sym_LT_EQ] = ACTIONS(5925), - [anon_sym_DOT] = ACTIONS(4733), - [anon_sym_switch] = ACTIONS(5688), - [anon_sym_DOT_DOT] = ACTIONS(5927), - [anon_sym_and] = ACTIONS(5072), - [anon_sym_or] = ACTIONS(5074), - [anon_sym_AMP_AMP] = ACTIONS(5929), - [anon_sym_PIPE_PIPE] = ACTIONS(5931), - [anon_sym_QMARK_QMARK] = ACTIONS(5933), - [anon_sym_from] = ACTIONS(5072), - [anon_sym_join] = ACTIONS(5072), - [anon_sym_let] = ACTIONS(5072), - [anon_sym_orderby] = ACTIONS(5072), - [anon_sym_ascending] = ACTIONS(5072), - [anon_sym_descending] = ACTIONS(5072), - [anon_sym_group] = ACTIONS(5072), - [anon_sym_select] = ACTIONS(5072), - [anon_sym_as] = ACTIONS(5935), - [anon_sym_is] = ACTIONS(5937), - [anon_sym_DASH_GT] = ACTIONS(4719), - [anon_sym_with] = ACTIONS(5696), + [anon_sym_LBRACK] = ACTIONS(5650), + [anon_sym_COMMA] = ACTIONS(5737), + [anon_sym_LPAREN] = ACTIONS(5591), + [anon_sym_LT] = ACTIONS(5739), + [anon_sym_GT] = ACTIONS(5739), + [anon_sym_where] = ACTIONS(5737), + [anon_sym_QMARK] = ACTIONS(5739), + [anon_sym_BANG] = ACTIONS(5658), + [anon_sym_PLUS_PLUS] = ACTIONS(5660), + [anon_sym_DASH_DASH] = ACTIONS(5660), + [anon_sym_PLUS] = ACTIONS(5739), + [anon_sym_DASH] = ACTIONS(5739), + [anon_sym_STAR] = ACTIONS(5737), + [anon_sym_SLASH] = ACTIONS(5739), + [anon_sym_PERCENT] = ACTIONS(5737), + [anon_sym_CARET] = ACTIONS(5737), + [anon_sym_PIPE] = ACTIONS(5739), + [anon_sym_AMP] = ACTIONS(5739), + [anon_sym_LT_LT] = ACTIONS(5737), + [anon_sym_GT_GT] = ACTIONS(5739), + [anon_sym_GT_GT_GT] = ACTIONS(5737), + [anon_sym_EQ_EQ] = ACTIONS(5737), + [anon_sym_BANG_EQ] = ACTIONS(5737), + [anon_sym_GT_EQ] = ACTIONS(5737), + [anon_sym_LT_EQ] = ACTIONS(5737), + [anon_sym_DOT] = ACTIONS(4697), + [anon_sym_switch] = ACTIONS(5682), + [anon_sym_DOT_DOT] = ACTIONS(5915), + [anon_sym_and] = ACTIONS(5737), + [anon_sym_or] = ACTIONS(5739), + [anon_sym_AMP_AMP] = ACTIONS(5737), + [anon_sym_PIPE_PIPE] = ACTIONS(5737), + [anon_sym_QMARK_QMARK] = ACTIONS(5737), + [anon_sym_from] = ACTIONS(5737), + [anon_sym_join] = ACTIONS(5737), + [anon_sym_let] = ACTIONS(5737), + [anon_sym_orderby] = ACTIONS(5737), + [anon_sym_ascending] = ACTIONS(5737), + [anon_sym_descending] = ACTIONS(5737), + [anon_sym_group] = ACTIONS(5737), + [anon_sym_select] = ACTIONS(5737), + [anon_sym_as] = ACTIONS(5739), + [anon_sym_is] = ACTIONS(5737), + [anon_sym_DASH_GT] = ACTIONS(4699), + [anon_sym_with] = ACTIONS(5698), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -519277,8 +518715,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3679] = { - [sym_argument_list] = STATE(3886), - [sym_bracketed_argument_list] = STATE(2902), + [sym_argument_list] = STATE(3771), + [sym_bracketed_argument_list] = STATE(2892), [sym_preproc_region] = STATE(3679), [sym_preproc_endregion] = STATE(3679), [sym_preproc_line] = STATE(3679), @@ -519288,51 +518726,51 @@ 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), - [anon_sym_LBRACK] = ACTIONS(5658), - [anon_sym_COMMA] = ACTIONS(5660), - [anon_sym_LPAREN] = ACTIONS(5624), - [anon_sym_LT] = ACTIONS(5903), - [anon_sym_GT] = ACTIONS(5903), - [anon_sym_where] = ACTIONS(5660), - [anon_sym_QMARK] = ACTIONS(5664), - [anon_sym_BANG] = ACTIONS(5666), - [anon_sym_PLUS_PLUS] = ACTIONS(5668), - [anon_sym_DASH_DASH] = ACTIONS(5668), - [anon_sym_PLUS] = ACTIONS(5907), - [anon_sym_DASH] = ACTIONS(5907), - [anon_sym_STAR] = ACTIONS(5909), - [anon_sym_SLASH] = ACTIONS(5911), - [anon_sym_PERCENT] = ACTIONS(5909), - [anon_sym_CARET] = ACTIONS(5660), - [anon_sym_PIPE] = ACTIONS(5664), - [anon_sym_AMP] = ACTIONS(5917), - [anon_sym_LT_LT] = ACTIONS(5919), - [anon_sym_GT_GT] = ACTIONS(5921), - [anon_sym_GT_GT_GT] = ACTIONS(5919), - [anon_sym_EQ_EQ] = ACTIONS(5923), - [anon_sym_BANG_EQ] = ACTIONS(5923), - [anon_sym_GT_EQ] = ACTIONS(5925), - [anon_sym_LT_EQ] = ACTIONS(5925), - [anon_sym_DOT] = ACTIONS(4733), - [anon_sym_switch] = ACTIONS(5688), - [anon_sym_DOT_DOT] = ACTIONS(5927), - [anon_sym_and] = ACTIONS(5660), - [anon_sym_or] = ACTIONS(5664), - [anon_sym_AMP_AMP] = ACTIONS(5660), - [anon_sym_PIPE_PIPE] = ACTIONS(5660), - [anon_sym_QMARK_QMARK] = ACTIONS(5660), - [anon_sym_from] = ACTIONS(5660), - [anon_sym_join] = ACTIONS(5660), - [anon_sym_let] = ACTIONS(5660), - [anon_sym_orderby] = ACTIONS(5660), - [anon_sym_ascending] = ACTIONS(5660), - [anon_sym_descending] = ACTIONS(5660), - [anon_sym_group] = ACTIONS(5660), - [anon_sym_select] = ACTIONS(5660), - [anon_sym_as] = ACTIONS(5935), - [anon_sym_is] = ACTIONS(5937), - [anon_sym_DASH_GT] = ACTIONS(4719), - [anon_sym_with] = ACTIONS(5696), + [anon_sym_LBRACK] = ACTIONS(5650), + [anon_sym_COMMA] = ACTIONS(5737), + [anon_sym_LPAREN] = ACTIONS(5591), + [anon_sym_LT] = ACTIONS(5895), + [anon_sym_GT] = ACTIONS(5895), + [anon_sym_where] = ACTIONS(5737), + [anon_sym_QMARK] = ACTIONS(5739), + [anon_sym_BANG] = ACTIONS(5658), + [anon_sym_PLUS_PLUS] = ACTIONS(5660), + [anon_sym_DASH_DASH] = ACTIONS(5660), + [anon_sym_PLUS] = ACTIONS(5897), + [anon_sym_DASH] = ACTIONS(5897), + [anon_sym_STAR] = ACTIONS(5899), + [anon_sym_SLASH] = ACTIONS(5901), + [anon_sym_PERCENT] = ACTIONS(5899), + [anon_sym_CARET] = ACTIONS(5737), + [anon_sym_PIPE] = ACTIONS(5739), + [anon_sym_AMP] = ACTIONS(5739), + [anon_sym_LT_LT] = ACTIONS(5907), + [anon_sym_GT_GT] = ACTIONS(5909), + [anon_sym_GT_GT_GT] = ACTIONS(5907), + [anon_sym_EQ_EQ] = ACTIONS(5911), + [anon_sym_BANG_EQ] = ACTIONS(5911), + [anon_sym_GT_EQ] = ACTIONS(5913), + [anon_sym_LT_EQ] = ACTIONS(5913), + [anon_sym_DOT] = ACTIONS(4697), + [anon_sym_switch] = ACTIONS(5682), + [anon_sym_DOT_DOT] = ACTIONS(5915), + [anon_sym_and] = ACTIONS(5737), + [anon_sym_or] = ACTIONS(5739), + [anon_sym_AMP_AMP] = ACTIONS(5737), + [anon_sym_PIPE_PIPE] = ACTIONS(5737), + [anon_sym_QMARK_QMARK] = ACTIONS(5737), + [anon_sym_from] = ACTIONS(5737), + [anon_sym_join] = ACTIONS(5737), + [anon_sym_let] = ACTIONS(5737), + [anon_sym_orderby] = ACTIONS(5737), + [anon_sym_ascending] = ACTIONS(5737), + [anon_sym_descending] = ACTIONS(5737), + [anon_sym_group] = ACTIONS(5737), + [anon_sym_select] = ACTIONS(5737), + [anon_sym_as] = ACTIONS(5917), + [anon_sym_is] = ACTIONS(5919), + [anon_sym_DASH_GT] = ACTIONS(4699), + [anon_sym_with] = ACTIONS(5698), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -519345,8 +518783,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3680] = { - [sym_argument_list] = STATE(3886), - [sym_bracketed_argument_list] = STATE(2902), + [sym_argument_list] = STATE(3771), + [sym_bracketed_argument_list] = STATE(2892), [sym_preproc_region] = STATE(3680), [sym_preproc_endregion] = STATE(3680), [sym_preproc_line] = STATE(3680), @@ -519356,51 +518794,51 @@ 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), - [anon_sym_LBRACK] = ACTIONS(5658), - [anon_sym_COMMA] = ACTIONS(5864), - [anon_sym_LPAREN] = ACTIONS(5624), - [anon_sym_LT] = ACTIONS(5903), - [anon_sym_GT] = ACTIONS(5903), - [anon_sym_where] = ACTIONS(5864), - [anon_sym_QMARK] = ACTIONS(5905), - [anon_sym_BANG] = ACTIONS(5666), - [anon_sym_PLUS_PLUS] = ACTIONS(5668), - [anon_sym_DASH_DASH] = ACTIONS(5668), - [anon_sym_PLUS] = ACTIONS(5907), - [anon_sym_DASH] = ACTIONS(5907), - [anon_sym_STAR] = ACTIONS(5909), - [anon_sym_SLASH] = ACTIONS(5911), - [anon_sym_PERCENT] = ACTIONS(5909), - [anon_sym_CARET] = ACTIONS(5913), - [anon_sym_PIPE] = ACTIONS(5915), - [anon_sym_AMP] = ACTIONS(5917), - [anon_sym_LT_LT] = ACTIONS(5919), - [anon_sym_GT_GT] = ACTIONS(5921), - [anon_sym_GT_GT_GT] = ACTIONS(5919), - [anon_sym_EQ_EQ] = ACTIONS(5923), - [anon_sym_BANG_EQ] = ACTIONS(5923), - [anon_sym_GT_EQ] = ACTIONS(5925), - [anon_sym_LT_EQ] = ACTIONS(5925), - [anon_sym_DOT] = ACTIONS(4733), - [anon_sym_switch] = ACTIONS(5688), - [anon_sym_DOT_DOT] = ACTIONS(5927), - [anon_sym_and] = ACTIONS(5864), - [anon_sym_or] = ACTIONS(5866), - [anon_sym_AMP_AMP] = ACTIONS(5929), - [anon_sym_PIPE_PIPE] = ACTIONS(5931), - [anon_sym_QMARK_QMARK] = ACTIONS(5933), - [anon_sym_from] = ACTIONS(5864), - [anon_sym_join] = ACTIONS(5864), - [anon_sym_let] = ACTIONS(5864), - [anon_sym_orderby] = ACTIONS(5864), - [anon_sym_ascending] = ACTIONS(5864), - [anon_sym_descending] = ACTIONS(5864), - [anon_sym_group] = ACTIONS(5864), - [anon_sym_select] = ACTIONS(5864), - [anon_sym_as] = ACTIONS(5935), - [anon_sym_is] = ACTIONS(5937), - [anon_sym_DASH_GT] = ACTIONS(4719), - [anon_sym_with] = ACTIONS(5696), + [anon_sym_LBRACK] = ACTIONS(5650), + [anon_sym_COMMA] = ACTIONS(5849), + [anon_sym_LPAREN] = ACTIONS(5591), + [anon_sym_LT] = ACTIONS(5895), + [anon_sym_GT] = ACTIONS(5895), + [anon_sym_where] = ACTIONS(5849), + [anon_sym_QMARK] = ACTIONS(5921), + [anon_sym_BANG] = ACTIONS(5658), + [anon_sym_PLUS_PLUS] = ACTIONS(5660), + [anon_sym_DASH_DASH] = ACTIONS(5660), + [anon_sym_PLUS] = ACTIONS(5897), + [anon_sym_DASH] = ACTIONS(5897), + [anon_sym_STAR] = ACTIONS(5899), + [anon_sym_SLASH] = ACTIONS(5901), + [anon_sym_PERCENT] = ACTIONS(5899), + [anon_sym_CARET] = ACTIONS(5903), + [anon_sym_PIPE] = ACTIONS(5923), + [anon_sym_AMP] = ACTIONS(5905), + [anon_sym_LT_LT] = ACTIONS(5907), + [anon_sym_GT_GT] = ACTIONS(5909), + [anon_sym_GT_GT_GT] = ACTIONS(5907), + [anon_sym_EQ_EQ] = ACTIONS(5911), + [anon_sym_BANG_EQ] = ACTIONS(5911), + [anon_sym_GT_EQ] = ACTIONS(5913), + [anon_sym_LT_EQ] = ACTIONS(5913), + [anon_sym_DOT] = ACTIONS(4697), + [anon_sym_switch] = ACTIONS(5682), + [anon_sym_DOT_DOT] = ACTIONS(5915), + [anon_sym_and] = ACTIONS(5849), + [anon_sym_or] = ACTIONS(5851), + [anon_sym_AMP_AMP] = ACTIONS(5925), + [anon_sym_PIPE_PIPE] = ACTIONS(5927), + [anon_sym_QMARK_QMARK] = ACTIONS(5929), + [anon_sym_from] = ACTIONS(5849), + [anon_sym_join] = ACTIONS(5849), + [anon_sym_let] = ACTIONS(5849), + [anon_sym_orderby] = ACTIONS(5849), + [anon_sym_ascending] = ACTIONS(5849), + [anon_sym_descending] = ACTIONS(5849), + [anon_sym_group] = ACTIONS(5849), + [anon_sym_select] = ACTIONS(5849), + [anon_sym_as] = ACTIONS(5917), + [anon_sym_is] = ACTIONS(5919), + [anon_sym_DASH_GT] = ACTIONS(4699), + [anon_sym_with] = ACTIONS(5698), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -519413,6 +518851,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3681] = { + [sym_argument_list] = STATE(3771), + [sym_bracketed_argument_list] = STATE(2892), [sym_preproc_region] = STATE(3681), [sym_preproc_endregion] = STATE(3681), [sym_preproc_line] = STATE(3681), @@ -519422,53 +518862,51 @@ 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), - [anon_sym_EQ] = ACTIONS(5995), - [anon_sym_LBRACK] = ACTIONS(4860), - [anon_sym_LPAREN] = ACTIONS(4860), - [anon_sym_LT] = ACTIONS(4862), - [anon_sym_GT] = ACTIONS(4862), - [anon_sym_QMARK] = ACTIONS(4862), - [anon_sym_BANG] = ACTIONS(4862), - [anon_sym_PLUS_PLUS] = ACTIONS(4860), - [anon_sym_DASH_DASH] = ACTIONS(4860), - [anon_sym_PLUS] = ACTIONS(4862), - [anon_sym_DASH] = ACTIONS(4862), - [anon_sym_STAR] = ACTIONS(4862), - [anon_sym_SLASH] = ACTIONS(4862), - [anon_sym_PERCENT] = ACTIONS(4862), - [anon_sym_CARET] = ACTIONS(4862), - [anon_sym_PIPE] = ACTIONS(4862), - [anon_sym_AMP] = ACTIONS(4862), - [anon_sym_LT_LT] = ACTIONS(4862), - [anon_sym_GT_GT] = ACTIONS(4862), - [anon_sym_GT_GT_GT] = ACTIONS(4862), - [anon_sym_EQ_EQ] = ACTIONS(4860), - [anon_sym_BANG_EQ] = ACTIONS(4860), - [anon_sym_GT_EQ] = ACTIONS(4860), - [anon_sym_LT_EQ] = ACTIONS(4860), - [anon_sym_DOT] = ACTIONS(4862), - [anon_sym_switch] = ACTIONS(4860), - [anon_sym_DOT_DOT] = ACTIONS(4860), - [anon_sym_PLUS_EQ] = ACTIONS(5997), - [anon_sym_DASH_EQ] = ACTIONS(5997), - [anon_sym_STAR_EQ] = ACTIONS(5997), - [anon_sym_SLASH_EQ] = ACTIONS(5997), - [anon_sym_PERCENT_EQ] = ACTIONS(5997), - [anon_sym_AMP_EQ] = ACTIONS(5997), - [anon_sym_CARET_EQ] = ACTIONS(5997), - [anon_sym_PIPE_EQ] = ACTIONS(5997), - [anon_sym_LT_LT_EQ] = ACTIONS(5997), - [anon_sym_GT_GT_EQ] = ACTIONS(5997), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(5997), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(5997), - [anon_sym_AMP_AMP] = ACTIONS(4860), - [anon_sym_PIPE_PIPE] = ACTIONS(4860), - [anon_sym_QMARK_QMARK] = ACTIONS(4862), - [anon_sym_on] = ACTIONS(4860), - [anon_sym_as] = ACTIONS(4860), - [anon_sym_is] = ACTIONS(4860), - [anon_sym_DASH_GT] = ACTIONS(4860), - [anon_sym_with] = ACTIONS(4860), + [anon_sym_LBRACK] = ACTIONS(5650), + [anon_sym_COMMA] = ACTIONS(5709), + [anon_sym_LPAREN] = ACTIONS(5591), + [anon_sym_LT] = ACTIONS(5895), + [anon_sym_GT] = ACTIONS(5895), + [anon_sym_where] = ACTIONS(5709), + [anon_sym_QMARK] = ACTIONS(5921), + [anon_sym_BANG] = ACTIONS(5658), + [anon_sym_PLUS_PLUS] = ACTIONS(5660), + [anon_sym_DASH_DASH] = ACTIONS(5660), + [anon_sym_PLUS] = ACTIONS(5897), + [anon_sym_DASH] = ACTIONS(5897), + [anon_sym_STAR] = ACTIONS(5899), + [anon_sym_SLASH] = ACTIONS(5901), + [anon_sym_PERCENT] = ACTIONS(5899), + [anon_sym_CARET] = ACTIONS(5903), + [anon_sym_PIPE] = ACTIONS(5923), + [anon_sym_AMP] = ACTIONS(5905), + [anon_sym_LT_LT] = ACTIONS(5907), + [anon_sym_GT_GT] = ACTIONS(5909), + [anon_sym_GT_GT_GT] = ACTIONS(5907), + [anon_sym_EQ_EQ] = ACTIONS(5911), + [anon_sym_BANG_EQ] = ACTIONS(5911), + [anon_sym_GT_EQ] = ACTIONS(5913), + [anon_sym_LT_EQ] = ACTIONS(5913), + [anon_sym_DOT] = ACTIONS(4697), + [anon_sym_switch] = ACTIONS(5682), + [anon_sym_DOT_DOT] = ACTIONS(5915), + [anon_sym_and] = ACTIONS(5709), + [anon_sym_or] = ACTIONS(5711), + [anon_sym_AMP_AMP] = ACTIONS(5925), + [anon_sym_PIPE_PIPE] = ACTIONS(5927), + [anon_sym_QMARK_QMARK] = ACTIONS(5929), + [anon_sym_from] = ACTIONS(5709), + [anon_sym_join] = ACTIONS(5709), + [anon_sym_let] = ACTIONS(5709), + [anon_sym_orderby] = ACTIONS(5709), + [anon_sym_ascending] = ACTIONS(5709), + [anon_sym_descending] = ACTIONS(5709), + [anon_sym_group] = ACTIONS(5709), + [anon_sym_select] = ACTIONS(5709), + [anon_sym_as] = ACTIONS(5917), + [anon_sym_is] = ACTIONS(5919), + [anon_sym_DASH_GT] = ACTIONS(4699), + [anon_sym_with] = ACTIONS(5698), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -519481,8 +518919,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3682] = { - [sym_argument_list] = STATE(3886), - [sym_bracketed_argument_list] = STATE(2902), + [sym_argument_list] = STATE(3771), + [sym_bracketed_argument_list] = STATE(2892), [sym_preproc_region] = STATE(3682), [sym_preproc_endregion] = STATE(3682), [sym_preproc_line] = STATE(3682), @@ -519492,51 +518930,51 @@ 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), - [anon_sym_LBRACK] = ACTIONS(5658), - [anon_sym_COMMA] = ACTIONS(5858), - [anon_sym_LPAREN] = ACTIONS(5624), - [anon_sym_LT] = ACTIONS(5903), - [anon_sym_GT] = ACTIONS(5903), - [anon_sym_where] = ACTIONS(5858), - [anon_sym_QMARK] = ACTIONS(5905), - [anon_sym_BANG] = ACTIONS(5666), - [anon_sym_PLUS_PLUS] = ACTIONS(5668), - [anon_sym_DASH_DASH] = ACTIONS(5668), - [anon_sym_PLUS] = ACTIONS(5907), - [anon_sym_DASH] = ACTIONS(5907), - [anon_sym_STAR] = ACTIONS(5909), - [anon_sym_SLASH] = ACTIONS(5911), - [anon_sym_PERCENT] = ACTIONS(5909), - [anon_sym_CARET] = ACTIONS(5913), - [anon_sym_PIPE] = ACTIONS(5915), - [anon_sym_AMP] = ACTIONS(5917), - [anon_sym_LT_LT] = ACTIONS(5919), - [anon_sym_GT_GT] = ACTIONS(5921), - [anon_sym_GT_GT_GT] = ACTIONS(5919), - [anon_sym_EQ_EQ] = ACTIONS(5923), - [anon_sym_BANG_EQ] = ACTIONS(5923), - [anon_sym_GT_EQ] = ACTIONS(5925), - [anon_sym_LT_EQ] = ACTIONS(5925), - [anon_sym_DOT] = ACTIONS(4733), - [anon_sym_switch] = ACTIONS(5688), - [anon_sym_DOT_DOT] = ACTIONS(5927), - [anon_sym_and] = ACTIONS(5858), - [anon_sym_or] = ACTIONS(5860), - [anon_sym_AMP_AMP] = ACTIONS(5929), - [anon_sym_PIPE_PIPE] = ACTIONS(5931), - [anon_sym_QMARK_QMARK] = ACTIONS(5933), - [anon_sym_from] = ACTIONS(5858), - [anon_sym_join] = ACTIONS(5858), - [anon_sym_let] = ACTIONS(5858), - [anon_sym_orderby] = ACTIONS(5858), - [anon_sym_ascending] = ACTIONS(5858), - [anon_sym_descending] = ACTIONS(5858), - [anon_sym_group] = ACTIONS(5858), - [anon_sym_select] = ACTIONS(5858), - [anon_sym_as] = ACTIONS(5935), - [anon_sym_is] = ACTIONS(5937), - [anon_sym_DASH_GT] = ACTIONS(4719), - [anon_sym_with] = ACTIONS(5696), + [anon_sym_LBRACK] = ACTIONS(5650), + [anon_sym_COMMA] = ACTIONS(4996), + [anon_sym_LPAREN] = ACTIONS(5591), + [anon_sym_LT] = ACTIONS(5895), + [anon_sym_GT] = ACTIONS(5895), + [anon_sym_where] = ACTIONS(4996), + [anon_sym_QMARK] = ACTIONS(5921), + [anon_sym_BANG] = ACTIONS(5658), + [anon_sym_PLUS_PLUS] = ACTIONS(5660), + [anon_sym_DASH_DASH] = ACTIONS(5660), + [anon_sym_PLUS] = ACTIONS(5897), + [anon_sym_DASH] = ACTIONS(5897), + [anon_sym_STAR] = ACTIONS(5899), + [anon_sym_SLASH] = ACTIONS(5901), + [anon_sym_PERCENT] = ACTIONS(5899), + [anon_sym_CARET] = ACTIONS(5903), + [anon_sym_PIPE] = ACTIONS(5923), + [anon_sym_AMP] = ACTIONS(5905), + [anon_sym_LT_LT] = ACTIONS(5907), + [anon_sym_GT_GT] = ACTIONS(5909), + [anon_sym_GT_GT_GT] = ACTIONS(5907), + [anon_sym_EQ_EQ] = ACTIONS(5911), + [anon_sym_BANG_EQ] = ACTIONS(5911), + [anon_sym_GT_EQ] = ACTIONS(5913), + [anon_sym_LT_EQ] = ACTIONS(5913), + [anon_sym_DOT] = ACTIONS(4697), + [anon_sym_switch] = ACTIONS(5682), + [anon_sym_DOT_DOT] = ACTIONS(5915), + [anon_sym_and] = ACTIONS(4996), + [anon_sym_or] = ACTIONS(4998), + [anon_sym_AMP_AMP] = ACTIONS(5925), + [anon_sym_PIPE_PIPE] = ACTIONS(5927), + [anon_sym_QMARK_QMARK] = ACTIONS(5929), + [anon_sym_from] = ACTIONS(4996), + [anon_sym_join] = ACTIONS(4996), + [anon_sym_let] = ACTIONS(4996), + [anon_sym_orderby] = ACTIONS(4996), + [anon_sym_ascending] = ACTIONS(4996), + [anon_sym_descending] = ACTIONS(4996), + [anon_sym_group] = ACTIONS(4996), + [anon_sym_select] = ACTIONS(4996), + [anon_sym_as] = ACTIONS(5917), + [anon_sym_is] = ACTIONS(5919), + [anon_sym_DASH_GT] = ACTIONS(4699), + [anon_sym_with] = ACTIONS(5698), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -519558,53 +518996,53 @@ 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), - [aux_sym__query_body_repeat2] = STATE(3684), - [anon_sym_LBRACK] = ACTIONS(5999), - [anon_sym_COMMA] = ACTIONS(5999), - [anon_sym_LPAREN] = ACTIONS(5999), - [anon_sym_LT] = ACTIONS(6001), - [anon_sym_GT] = ACTIONS(6001), - [anon_sym_where] = ACTIONS(5999), - [anon_sym_QMARK] = ACTIONS(6001), - [anon_sym_BANG] = ACTIONS(6001), - [anon_sym_PLUS_PLUS] = ACTIONS(5999), - [anon_sym_DASH_DASH] = ACTIONS(5999), - [anon_sym_PLUS] = ACTIONS(6001), - [anon_sym_DASH] = ACTIONS(6001), - [anon_sym_STAR] = ACTIONS(5999), - [anon_sym_SLASH] = ACTIONS(6001), - [anon_sym_PERCENT] = ACTIONS(5999), - [anon_sym_CARET] = ACTIONS(5999), - [anon_sym_PIPE] = ACTIONS(6001), - [anon_sym_AMP] = ACTIONS(6001), - [anon_sym_LT_LT] = ACTIONS(5999), - [anon_sym_GT_GT] = ACTIONS(6001), - [anon_sym_GT_GT_GT] = ACTIONS(5999), - [anon_sym_EQ_EQ] = ACTIONS(5999), - [anon_sym_BANG_EQ] = ACTIONS(5999), - [anon_sym_GT_EQ] = ACTIONS(5999), - [anon_sym_LT_EQ] = ACTIONS(5999), - [anon_sym_DOT] = ACTIONS(6001), - [anon_sym_switch] = ACTIONS(5999), - [anon_sym_DOT_DOT] = ACTIONS(5999), - [anon_sym_and] = ACTIONS(5999), - [anon_sym_or] = ACTIONS(6001), - [anon_sym_AMP_AMP] = ACTIONS(5999), - [anon_sym_PIPE_PIPE] = ACTIONS(5999), - [anon_sym_QMARK_QMARK] = ACTIONS(5999), - [anon_sym_from] = ACTIONS(5999), - [anon_sym_into] = ACTIONS(5962), - [anon_sym_join] = ACTIONS(5999), - [anon_sym_let] = ACTIONS(5999), - [anon_sym_orderby] = ACTIONS(5999), - [anon_sym_ascending] = ACTIONS(5999), - [anon_sym_descending] = ACTIONS(5999), - [anon_sym_group] = ACTIONS(5999), - [anon_sym_select] = ACTIONS(5999), - [anon_sym_as] = ACTIONS(6001), - [anon_sym_is] = ACTIONS(5999), - [anon_sym_DASH_GT] = ACTIONS(5999), - [anon_sym_with] = ACTIONS(5999), + [anon_sym_EQ] = ACTIONS(5989), + [anon_sym_LBRACK] = ACTIONS(4811), + [anon_sym_LPAREN] = ACTIONS(4811), + [anon_sym_LT] = ACTIONS(4813), + [anon_sym_GT] = ACTIONS(4813), + [anon_sym_QMARK] = ACTIONS(4813), + [anon_sym_BANG] = ACTIONS(4813), + [anon_sym_PLUS_PLUS] = ACTIONS(4811), + [anon_sym_DASH_DASH] = ACTIONS(4811), + [anon_sym_PLUS] = ACTIONS(4813), + [anon_sym_DASH] = ACTIONS(4813), + [anon_sym_STAR] = ACTIONS(4813), + [anon_sym_SLASH] = ACTIONS(4813), + [anon_sym_PERCENT] = ACTIONS(4813), + [anon_sym_CARET] = ACTIONS(4813), + [anon_sym_PIPE] = ACTIONS(4813), + [anon_sym_AMP] = ACTIONS(4813), + [anon_sym_LT_LT] = ACTIONS(4813), + [anon_sym_GT_GT] = ACTIONS(4813), + [anon_sym_GT_GT_GT] = ACTIONS(4813), + [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(4813), + [anon_sym_EQ_GT] = ACTIONS(4811), + [anon_sym_switch] = ACTIONS(4811), + [anon_sym_DOT_DOT] = ACTIONS(4811), + [anon_sym_PLUS_EQ] = ACTIONS(5991), + [anon_sym_DASH_EQ] = ACTIONS(5991), + [anon_sym_STAR_EQ] = ACTIONS(5991), + [anon_sym_SLASH_EQ] = ACTIONS(5991), + [anon_sym_PERCENT_EQ] = ACTIONS(5991), + [anon_sym_AMP_EQ] = ACTIONS(5991), + [anon_sym_CARET_EQ] = ACTIONS(5991), + [anon_sym_PIPE_EQ] = ACTIONS(5991), + [anon_sym_LT_LT_EQ] = ACTIONS(5991), + [anon_sym_GT_GT_EQ] = ACTIONS(5991), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(5991), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(5991), + [anon_sym_AMP_AMP] = ACTIONS(4811), + [anon_sym_PIPE_PIPE] = ACTIONS(4811), + [anon_sym_QMARK_QMARK] = ACTIONS(4813), + [anon_sym_as] = ACTIONS(4811), + [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), @@ -519626,53 +519064,52 @@ 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), - [aux_sym__query_body_repeat2] = STATE(3657), - [anon_sym_LBRACK] = ACTIONS(6003), - [anon_sym_COMMA] = ACTIONS(6003), - [anon_sym_LPAREN] = ACTIONS(6003), - [anon_sym_LT] = ACTIONS(6005), - [anon_sym_GT] = ACTIONS(6005), - [anon_sym_where] = ACTIONS(6003), - [anon_sym_QMARK] = ACTIONS(6005), - [anon_sym_BANG] = ACTIONS(6005), - [anon_sym_PLUS_PLUS] = ACTIONS(6003), - [anon_sym_DASH_DASH] = ACTIONS(6003), - [anon_sym_PLUS] = ACTIONS(6005), - [anon_sym_DASH] = ACTIONS(6005), - [anon_sym_STAR] = ACTIONS(6003), - [anon_sym_SLASH] = ACTIONS(6005), - [anon_sym_PERCENT] = ACTIONS(6003), - [anon_sym_CARET] = ACTIONS(6003), - [anon_sym_PIPE] = ACTIONS(6005), - [anon_sym_AMP] = ACTIONS(6005), - [anon_sym_LT_LT] = ACTIONS(6003), - [anon_sym_GT_GT] = ACTIONS(6005), - [anon_sym_GT_GT_GT] = ACTIONS(6003), - [anon_sym_EQ_EQ] = ACTIONS(6003), - [anon_sym_BANG_EQ] = ACTIONS(6003), - [anon_sym_GT_EQ] = ACTIONS(6003), - [anon_sym_LT_EQ] = ACTIONS(6003), - [anon_sym_DOT] = ACTIONS(6005), - [anon_sym_switch] = ACTIONS(6003), - [anon_sym_DOT_DOT] = ACTIONS(6003), - [anon_sym_and] = ACTIONS(6003), - [anon_sym_or] = ACTIONS(6005), - [anon_sym_AMP_AMP] = ACTIONS(6003), - [anon_sym_PIPE_PIPE] = ACTIONS(6003), - [anon_sym_QMARK_QMARK] = ACTIONS(6003), - [anon_sym_from] = ACTIONS(6003), - [anon_sym_into] = ACTIONS(5962), - [anon_sym_join] = ACTIONS(6003), - [anon_sym_let] = ACTIONS(6003), - [anon_sym_orderby] = ACTIONS(6003), - [anon_sym_ascending] = ACTIONS(6003), - [anon_sym_descending] = ACTIONS(6003), - [anon_sym_group] = ACTIONS(6003), - [anon_sym_select] = ACTIONS(6003), - [anon_sym_as] = ACTIONS(6005), - [anon_sym_is] = ACTIONS(6003), - [anon_sym_DASH_GT] = ACTIONS(6003), - [anon_sym_with] = ACTIONS(6003), + [anon_sym_LBRACK] = ACTIONS(4992), + [anon_sym_COMMA] = ACTIONS(4992), + [anon_sym_LPAREN] = ACTIONS(4992), + [anon_sym_LT] = ACTIONS(4994), + [anon_sym_GT] = ACTIONS(4994), + [anon_sym_where] = ACTIONS(4992), + [anon_sym_QMARK] = ACTIONS(4994), + [anon_sym_BANG] = ACTIONS(4994), + [anon_sym_PLUS_PLUS] = ACTIONS(4992), + [anon_sym_DASH_DASH] = ACTIONS(4992), + [anon_sym_PLUS] = ACTIONS(4994), + [anon_sym_DASH] = ACTIONS(4994), + [anon_sym_STAR] = ACTIONS(4992), + [anon_sym_SLASH] = ACTIONS(4994), + [anon_sym_PERCENT] = ACTIONS(4992), + [anon_sym_CARET] = ACTIONS(4992), + [anon_sym_PIPE] = ACTIONS(4994), + [anon_sym_AMP] = ACTIONS(4994), + [anon_sym_LT_LT] = ACTIONS(4992), + [anon_sym_GT_GT] = ACTIONS(4994), + [anon_sym_GT_GT_GT] = ACTIONS(4992), + [anon_sym_EQ_EQ] = ACTIONS(4992), + [anon_sym_BANG_EQ] = ACTIONS(4992), + [anon_sym_GT_EQ] = ACTIONS(4992), + [anon_sym_LT_EQ] = ACTIONS(4992), + [anon_sym_DOT] = ACTIONS(4994), + [anon_sym_switch] = ACTIONS(4992), + [anon_sym_DOT_DOT] = ACTIONS(4992), + [anon_sym_and] = ACTIONS(4992), + [anon_sym_or] = ACTIONS(4994), + [anon_sym_AMP_AMP] = ACTIONS(4992), + [anon_sym_PIPE_PIPE] = ACTIONS(4992), + [anon_sym_QMARK_QMARK] = ACTIONS(4992), + [anon_sym_from] = ACTIONS(4992), + [anon_sym_into] = ACTIONS(4992), + [anon_sym_join] = ACTIONS(4992), + [anon_sym_let] = ACTIONS(4992), + [anon_sym_orderby] = ACTIONS(4992), + [anon_sym_ascending] = ACTIONS(4992), + [anon_sym_descending] = ACTIONS(4992), + [anon_sym_group] = ACTIONS(4992), + [anon_sym_select] = ACTIONS(4992), + [anon_sym_as] = ACTIONS(4994), + [anon_sym_is] = ACTIONS(4992), + [anon_sym_DASH_GT] = ACTIONS(4992), + [anon_sym_with] = ACTIONS(4992), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -519685,24 +519122,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3685] = { - [sym__name] = STATE(4390), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(4096), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(4109), - [sym_type] = STATE(4632), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_identifier] = STATE(4087), - [sym__reserved_identifier] = STATE(3691), [sym_preproc_region] = STATE(3685), [sym_preproc_endregion] = STATE(3685), [sym_preproc_line] = STATE(3685), @@ -519712,35 +519131,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), - [sym__identifier_token] = ACTIONS(2967), - [anon_sym_alias] = ACTIONS(2971), - [anon_sym_global] = ACTIONS(2971), - [anon_sym_LPAREN] = ACTIONS(2979), - [anon_sym_ref] = ACTIONS(3452), - [anon_sym_struct] = ACTIONS(6007), - [anon_sym_delegate] = ACTIONS(3454), - [anon_sym_file] = ACTIONS(2971), - [anon_sym_readonly] = ACTIONS(2749), - [anon_sym_where] = ACTIONS(2971), - [anon_sym_notnull] = ACTIONS(2971), - [anon_sym_unmanaged] = ACTIONS(2971), - [anon_sym_scoped] = ACTIONS(2997), - [anon_sym_var] = ACTIONS(2999), - [sym_predefined_type] = ACTIONS(3001), - [anon_sym_yield] = ACTIONS(2971), - [anon_sym_when] = ACTIONS(2971), - [anon_sym_from] = ACTIONS(2971), - [anon_sym_into] = ACTIONS(2971), - [anon_sym_join] = ACTIONS(2971), - [anon_sym_on] = ACTIONS(2971), - [anon_sym_equals] = ACTIONS(2971), - [anon_sym_let] = ACTIONS(2971), - [anon_sym_orderby] = ACTIONS(2971), - [anon_sym_ascending] = ACTIONS(2971), - [anon_sym_descending] = ACTIONS(2971), - [anon_sym_group] = ACTIONS(2971), - [anon_sym_by] = ACTIONS(2971), - [anon_sym_select] = ACTIONS(2971), + [anon_sym_LBRACK] = ACTIONS(4811), + [anon_sym_COMMA] = ACTIONS(4811), + [anon_sym_LPAREN] = ACTIONS(4811), + [anon_sym_LT] = ACTIONS(4813), + [anon_sym_GT] = ACTIONS(4813), + [anon_sym_where] = ACTIONS(4811), + [anon_sym_QMARK] = ACTIONS(4813), + [anon_sym_BANG] = ACTIONS(4813), + [anon_sym_PLUS_PLUS] = ACTIONS(4811), + [anon_sym_DASH_DASH] = ACTIONS(4811), + [anon_sym_PLUS] = ACTIONS(4813), + [anon_sym_DASH] = ACTIONS(4813), + [anon_sym_STAR] = ACTIONS(4811), + [anon_sym_SLASH] = ACTIONS(4813), + [anon_sym_PERCENT] = ACTIONS(4811), + [anon_sym_CARET] = ACTIONS(4811), + [anon_sym_PIPE] = ACTIONS(4813), + [anon_sym_AMP] = ACTIONS(4813), + [anon_sym_LT_LT] = ACTIONS(4811), + [anon_sym_GT_GT] = ACTIONS(4813), + [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(4813), + [anon_sym_switch] = ACTIONS(4811), + [anon_sym_DOT_DOT] = ACTIONS(4811), + [anon_sym_and] = ACTIONS(4811), + [anon_sym_or] = ACTIONS(4813), + [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(4813), + [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), @@ -519753,8 +519189,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3686] = { - [sym_argument_list] = STATE(3886), - [sym_bracketed_argument_list] = STATE(2902), + [sym_argument_list] = STATE(3348), + [sym_bracketed_argument_list] = STATE(2605), [sym_preproc_region] = STATE(3686), [sym_preproc_endregion] = STATE(3686), [sym_preproc_line] = STATE(3686), @@ -519764,51 +519200,50 @@ 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), - [anon_sym_LBRACK] = ACTIONS(5658), - [anon_sym_COMMA] = ACTIONS(5660), - [anon_sym_LPAREN] = ACTIONS(5624), - [anon_sym_LT] = ACTIONS(5903), - [anon_sym_GT] = ACTIONS(5903), - [anon_sym_where] = ACTIONS(5660), - [anon_sym_QMARK] = ACTIONS(5664), - [anon_sym_BANG] = ACTIONS(5666), - [anon_sym_PLUS_PLUS] = ACTIONS(5668), - [anon_sym_DASH_DASH] = ACTIONS(5668), - [anon_sym_PLUS] = ACTIONS(5907), - [anon_sym_DASH] = ACTIONS(5907), - [anon_sym_STAR] = ACTIONS(5909), - [anon_sym_SLASH] = ACTIONS(5911), - [anon_sym_PERCENT] = ACTIONS(5909), - [anon_sym_CARET] = ACTIONS(5913), - [anon_sym_PIPE] = ACTIONS(5664), - [anon_sym_AMP] = ACTIONS(5917), - [anon_sym_LT_LT] = ACTIONS(5919), - [anon_sym_GT_GT] = ACTIONS(5921), - [anon_sym_GT_GT_GT] = ACTIONS(5919), - [anon_sym_EQ_EQ] = ACTIONS(5923), - [anon_sym_BANG_EQ] = ACTIONS(5923), - [anon_sym_GT_EQ] = ACTIONS(5925), - [anon_sym_LT_EQ] = ACTIONS(5925), - [anon_sym_DOT] = ACTIONS(4733), - [anon_sym_switch] = ACTIONS(5688), - [anon_sym_DOT_DOT] = ACTIONS(5927), - [anon_sym_and] = ACTIONS(5660), - [anon_sym_or] = ACTIONS(5664), - [anon_sym_AMP_AMP] = ACTIONS(5660), - [anon_sym_PIPE_PIPE] = ACTIONS(5660), - [anon_sym_QMARK_QMARK] = ACTIONS(5660), - [anon_sym_from] = ACTIONS(5660), - [anon_sym_join] = ACTIONS(5660), - [anon_sym_let] = ACTIONS(5660), - [anon_sym_orderby] = ACTIONS(5660), - [anon_sym_ascending] = ACTIONS(5660), - [anon_sym_descending] = ACTIONS(5660), - [anon_sym_group] = ACTIONS(5660), - [anon_sym_select] = ACTIONS(5660), - [anon_sym_as] = ACTIONS(5935), - [anon_sym_is] = ACTIONS(5937), - [anon_sym_DASH_GT] = ACTIONS(4719), - [anon_sym_with] = ACTIONS(5696), + [anon_sym_SEMI] = ACTIONS(5849), + [anon_sym_LBRACK] = ACTIONS(5236), + [anon_sym_COMMA] = ACTIONS(5849), + [anon_sym_RBRACK] = ACTIONS(5849), + [anon_sym_LPAREN] = ACTIONS(5227), + [anon_sym_RPAREN] = ACTIONS(5849), + [anon_sym_RBRACE] = ACTIONS(5849), + [anon_sym_LT] = ACTIONS(5993), + [anon_sym_GT] = ACTIONS(5993), + [anon_sym_QMARK] = ACTIONS(5995), + [anon_sym_BANG] = ACTIONS(5238), + [anon_sym_PLUS_PLUS] = ACTIONS(5240), + [anon_sym_DASH_DASH] = ACTIONS(5240), + [anon_sym_PLUS] = ACTIONS(5997), + [anon_sym_DASH] = ACTIONS(5997), + [anon_sym_STAR] = ACTIONS(5999), + [anon_sym_SLASH] = ACTIONS(6001), + [anon_sym_PERCENT] = ACTIONS(5999), + [anon_sym_CARET] = ACTIONS(6003), + [anon_sym_PIPE] = ACTIONS(6005), + [anon_sym_AMP] = ACTIONS(6007), + [anon_sym_LT_LT] = ACTIONS(6009), + [anon_sym_GT_GT] = ACTIONS(6011), + [anon_sym_GT_GT_GT] = ACTIONS(6009), + [anon_sym_EQ_EQ] = ACTIONS(6013), + [anon_sym_BANG_EQ] = ACTIONS(6013), + [anon_sym_GT_EQ] = ACTIONS(6015), + [anon_sym_LT_EQ] = ACTIONS(6015), + [anon_sym_DOT] = ACTIONS(4092), + [anon_sym_switch] = ACTIONS(6017), + [anon_sym_DOT_DOT] = ACTIONS(6019), + [anon_sym_and] = ACTIONS(5849), + [anon_sym_or] = ACTIONS(5849), + [anon_sym_AMP_AMP] = ACTIONS(6021), + [anon_sym_PIPE_PIPE] = ACTIONS(6023), + [anon_sym_QMARK_QMARK] = ACTIONS(6025), + [anon_sym_into] = ACTIONS(5849), + [anon_sym_as] = ACTIONS(6027), + [anon_sym_is] = ACTIONS(6029), + [anon_sym_DASH_GT] = ACTIONS(4094), + [anon_sym_with] = ACTIONS(6031), + [aux_sym_preproc_if_token3] = ACTIONS(5849), + [aux_sym_preproc_else_token1] = ACTIONS(5849), + [aux_sym_preproc_elif_token1] = ACTIONS(5849), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -519821,6 +519256,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3687] = { + [sym_argument_list] = STATE(3348), + [sym_bracketed_argument_list] = STATE(2605), [sym_preproc_region] = STATE(3687), [sym_preproc_endregion] = STATE(3687), [sym_preproc_line] = STATE(3687), @@ -519830,53 +519267,50 @@ 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), - [anon_sym_EQ] = ACTIONS(6009), - [anon_sym_LBRACK] = ACTIONS(4860), - [anon_sym_LPAREN] = ACTIONS(4860), - [anon_sym_LT] = ACTIONS(4862), - [anon_sym_GT] = ACTIONS(4862), - [anon_sym_in] = ACTIONS(4860), - [anon_sym_QMARK] = ACTIONS(4862), - [anon_sym_BANG] = ACTIONS(4862), - [anon_sym_PLUS_PLUS] = ACTIONS(4860), - [anon_sym_DASH_DASH] = ACTIONS(4860), - [anon_sym_PLUS] = ACTIONS(4862), - [anon_sym_DASH] = ACTIONS(4862), - [anon_sym_STAR] = ACTIONS(4862), - [anon_sym_SLASH] = ACTIONS(4862), - [anon_sym_PERCENT] = ACTIONS(4862), - [anon_sym_CARET] = ACTIONS(4862), - [anon_sym_PIPE] = ACTIONS(4862), - [anon_sym_AMP] = ACTIONS(4862), - [anon_sym_LT_LT] = ACTIONS(4862), - [anon_sym_GT_GT] = ACTIONS(4862), - [anon_sym_GT_GT_GT] = ACTIONS(4862), - [anon_sym_EQ_EQ] = ACTIONS(4860), - [anon_sym_BANG_EQ] = ACTIONS(4860), - [anon_sym_GT_EQ] = ACTIONS(4860), - [anon_sym_LT_EQ] = ACTIONS(4860), - [anon_sym_DOT] = ACTIONS(4862), - [anon_sym_switch] = ACTIONS(4860), - [anon_sym_DOT_DOT] = ACTIONS(4860), - [anon_sym_PLUS_EQ] = ACTIONS(6011), - [anon_sym_DASH_EQ] = ACTIONS(6011), - [anon_sym_STAR_EQ] = ACTIONS(6011), - [anon_sym_SLASH_EQ] = ACTIONS(6011), - [anon_sym_PERCENT_EQ] = ACTIONS(6011), - [anon_sym_AMP_EQ] = ACTIONS(6011), - [anon_sym_CARET_EQ] = ACTIONS(6011), - [anon_sym_PIPE_EQ] = ACTIONS(6011), - [anon_sym_LT_LT_EQ] = ACTIONS(6011), - [anon_sym_GT_GT_EQ] = ACTIONS(6011), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(6011), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(6011), - [anon_sym_AMP_AMP] = ACTIONS(4860), - [anon_sym_PIPE_PIPE] = ACTIONS(4860), - [anon_sym_QMARK_QMARK] = ACTIONS(4862), - [anon_sym_as] = ACTIONS(4860), - [anon_sym_is] = ACTIONS(4860), - [anon_sym_DASH_GT] = ACTIONS(4860), - [anon_sym_with] = ACTIONS(4860), + [anon_sym_SEMI] = ACTIONS(4996), + [anon_sym_LBRACK] = ACTIONS(5236), + [anon_sym_COMMA] = ACTIONS(4996), + [anon_sym_RBRACK] = ACTIONS(4996), + [anon_sym_LPAREN] = ACTIONS(5227), + [anon_sym_RPAREN] = ACTIONS(4996), + [anon_sym_RBRACE] = ACTIONS(4996), + [anon_sym_LT] = ACTIONS(5993), + [anon_sym_GT] = ACTIONS(5993), + [anon_sym_QMARK] = ACTIONS(5995), + [anon_sym_BANG] = ACTIONS(5238), + [anon_sym_PLUS_PLUS] = ACTIONS(5240), + [anon_sym_DASH_DASH] = ACTIONS(5240), + [anon_sym_PLUS] = ACTIONS(5997), + [anon_sym_DASH] = ACTIONS(5997), + [anon_sym_STAR] = ACTIONS(5999), + [anon_sym_SLASH] = ACTIONS(6001), + [anon_sym_PERCENT] = ACTIONS(5999), + [anon_sym_CARET] = ACTIONS(6003), + [anon_sym_PIPE] = ACTIONS(6005), + [anon_sym_AMP] = ACTIONS(6007), + [anon_sym_LT_LT] = ACTIONS(6009), + [anon_sym_GT_GT] = ACTIONS(6011), + [anon_sym_GT_GT_GT] = ACTIONS(6009), + [anon_sym_EQ_EQ] = ACTIONS(6013), + [anon_sym_BANG_EQ] = ACTIONS(6013), + [anon_sym_GT_EQ] = ACTIONS(6015), + [anon_sym_LT_EQ] = ACTIONS(6015), + [anon_sym_DOT] = ACTIONS(4092), + [anon_sym_switch] = ACTIONS(6017), + [anon_sym_DOT_DOT] = ACTIONS(6019), + [anon_sym_and] = ACTIONS(4996), + [anon_sym_or] = ACTIONS(4996), + [anon_sym_AMP_AMP] = ACTIONS(6021), + [anon_sym_PIPE_PIPE] = ACTIONS(6023), + [anon_sym_QMARK_QMARK] = ACTIONS(6025), + [anon_sym_into] = ACTIONS(4996), + [anon_sym_as] = ACTIONS(6027), + [anon_sym_is] = ACTIONS(6029), + [anon_sym_DASH_GT] = ACTIONS(4094), + [anon_sym_with] = ACTIONS(6031), + [aux_sym_preproc_if_token3] = ACTIONS(4996), + [aux_sym_preproc_else_token1] = ACTIONS(4996), + [aux_sym_preproc_elif_token1] = ACTIONS(4996), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -519898,53 +519332,52 @@ 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), - [aux_sym__query_body_repeat2] = STATE(3662), - [anon_sym_LBRACK] = ACTIONS(6003), - [anon_sym_COMMA] = ACTIONS(6003), - [anon_sym_LPAREN] = ACTIONS(6003), - [anon_sym_LT] = ACTIONS(6005), - [anon_sym_GT] = ACTIONS(6005), - [anon_sym_where] = ACTIONS(6003), - [anon_sym_QMARK] = ACTIONS(6005), - [anon_sym_BANG] = ACTIONS(6005), - [anon_sym_PLUS_PLUS] = ACTIONS(6003), - [anon_sym_DASH_DASH] = ACTIONS(6003), - [anon_sym_PLUS] = ACTIONS(6005), - [anon_sym_DASH] = ACTIONS(6005), - [anon_sym_STAR] = ACTIONS(6003), - [anon_sym_SLASH] = ACTIONS(6005), - [anon_sym_PERCENT] = ACTIONS(6003), - [anon_sym_CARET] = ACTIONS(6003), - [anon_sym_PIPE] = ACTIONS(6005), - [anon_sym_AMP] = ACTIONS(6005), - [anon_sym_LT_LT] = ACTIONS(6003), - [anon_sym_GT_GT] = ACTIONS(6005), - [anon_sym_GT_GT_GT] = ACTIONS(6003), - [anon_sym_EQ_EQ] = ACTIONS(6003), - [anon_sym_BANG_EQ] = ACTIONS(6003), - [anon_sym_GT_EQ] = ACTIONS(6003), - [anon_sym_LT_EQ] = ACTIONS(6003), - [anon_sym_DOT] = ACTIONS(6005), - [anon_sym_switch] = ACTIONS(6003), - [anon_sym_DOT_DOT] = ACTIONS(6003), - [anon_sym_and] = ACTIONS(6003), - [anon_sym_or] = ACTIONS(6005), - [anon_sym_AMP_AMP] = ACTIONS(6003), - [anon_sym_PIPE_PIPE] = ACTIONS(6003), - [anon_sym_QMARK_QMARK] = ACTIONS(6003), - [anon_sym_from] = ACTIONS(6003), - [anon_sym_into] = ACTIONS(5962), - [anon_sym_join] = ACTIONS(6003), - [anon_sym_let] = ACTIONS(6003), - [anon_sym_orderby] = ACTIONS(6003), - [anon_sym_ascending] = ACTIONS(6003), - [anon_sym_descending] = ACTIONS(6003), - [anon_sym_group] = ACTIONS(6003), - [anon_sym_select] = ACTIONS(6003), - [anon_sym_as] = ACTIONS(6005), - [anon_sym_is] = ACTIONS(6003), - [anon_sym_DASH_GT] = ACTIONS(6003), - [anon_sym_with] = ACTIONS(6003), + [anon_sym_LBRACK] = ACTIONS(5434), + [anon_sym_COMMA] = ACTIONS(5434), + [anon_sym_LPAREN] = ACTIONS(5434), + [anon_sym_LT] = ACTIONS(5436), + [anon_sym_GT] = ACTIONS(5436), + [anon_sym_where] = ACTIONS(5434), + [anon_sym_QMARK] = ACTIONS(5436), + [anon_sym_BANG] = ACTIONS(5436), + [anon_sym_PLUS_PLUS] = ACTIONS(5434), + [anon_sym_DASH_DASH] = ACTIONS(5434), + [anon_sym_PLUS] = ACTIONS(5436), + [anon_sym_DASH] = ACTIONS(5436), + [anon_sym_STAR] = ACTIONS(5434), + [anon_sym_SLASH] = ACTIONS(5436), + [anon_sym_PERCENT] = ACTIONS(5434), + [anon_sym_CARET] = ACTIONS(5434), + [anon_sym_PIPE] = ACTIONS(5436), + [anon_sym_AMP] = ACTIONS(5436), + [anon_sym_LT_LT] = ACTIONS(5434), + [anon_sym_GT_GT] = ACTIONS(5436), + [anon_sym_GT_GT_GT] = ACTIONS(5434), + [anon_sym_EQ_EQ] = ACTIONS(5434), + [anon_sym_BANG_EQ] = ACTIONS(5434), + [anon_sym_GT_EQ] = ACTIONS(5434), + [anon_sym_LT_EQ] = ACTIONS(5434), + [anon_sym_DOT] = ACTIONS(5436), + [anon_sym_switch] = ACTIONS(5434), + [anon_sym_DOT_DOT] = ACTIONS(5434), + [anon_sym_and] = ACTIONS(5434), + [anon_sym_or] = ACTIONS(5436), + [anon_sym_AMP_AMP] = ACTIONS(5434), + [anon_sym_PIPE_PIPE] = ACTIONS(5434), + [anon_sym_QMARK_QMARK] = ACTIONS(5434), + [anon_sym_from] = ACTIONS(5434), + [anon_sym_into] = ACTIONS(5434), + [anon_sym_join] = ACTIONS(5434), + [anon_sym_let] = ACTIONS(5434), + [anon_sym_orderby] = ACTIONS(5434), + [anon_sym_ascending] = ACTIONS(5434), + [anon_sym_descending] = ACTIONS(5434), + [anon_sym_group] = ACTIONS(5434), + [anon_sym_select] = ACTIONS(5434), + [anon_sym_as] = ACTIONS(5436), + [anon_sym_is] = ACTIONS(5434), + [anon_sym_DASH_GT] = ACTIONS(5434), + [anon_sym_with] = ACTIONS(5434), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -519966,53 +519399,52 @@ 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), - [anon_sym_LBRACK] = ACTIONS(3829), - [anon_sym_COMMA] = ACTIONS(3829), - [anon_sym_LPAREN] = ACTIONS(3829), - [anon_sym_LT] = ACTIONS(5431), - [anon_sym_GT] = ACTIONS(5431), - [anon_sym_where] = ACTIONS(3829), - [anon_sym_QMARK] = ACTIONS(5431), - [anon_sym_BANG] = ACTIONS(5431), - [anon_sym_PLUS_PLUS] = ACTIONS(3829), - [anon_sym_DASH_DASH] = ACTIONS(3829), - [anon_sym_PLUS] = ACTIONS(5431), - [anon_sym_DASH] = ACTIONS(5431), - [anon_sym_STAR] = ACTIONS(3829), - [anon_sym_SLASH] = ACTIONS(5431), - [anon_sym_PERCENT] = ACTIONS(3829), - [anon_sym_CARET] = ACTIONS(3829), - [anon_sym_PIPE] = ACTIONS(5431), - [anon_sym_AMP] = ACTIONS(5431), - [anon_sym_LT_LT] = ACTIONS(3829), - [anon_sym_GT_GT] = ACTIONS(5431), - [anon_sym_GT_GT_GT] = ACTIONS(3829), - [anon_sym_EQ_EQ] = ACTIONS(3829), - [anon_sym_BANG_EQ] = ACTIONS(3829), - [anon_sym_GT_EQ] = ACTIONS(3829), - [anon_sym_LT_EQ] = ACTIONS(3829), - [anon_sym_DOT] = ACTIONS(5431), - [anon_sym_EQ_GT] = ACTIONS(3667), - [anon_sym_switch] = ACTIONS(3829), - [anon_sym_DOT_DOT] = ACTIONS(3829), - [anon_sym_and] = ACTIONS(3829), - [anon_sym_or] = ACTIONS(5431), - [anon_sym_AMP_AMP] = ACTIONS(3829), - [anon_sym_PIPE_PIPE] = ACTIONS(3829), - [anon_sym_QMARK_QMARK] = ACTIONS(3829), - [anon_sym_from] = ACTIONS(3829), - [anon_sym_into] = ACTIONS(3829), - [anon_sym_join] = ACTIONS(3829), - [anon_sym_let] = ACTIONS(3829), - [anon_sym_orderby] = ACTIONS(3829), - [anon_sym_ascending] = ACTIONS(3829), - [anon_sym_descending] = ACTIONS(3829), - [anon_sym_group] = ACTIONS(3829), - [anon_sym_select] = ACTIONS(3829), - [anon_sym_as] = ACTIONS(5431), - [anon_sym_is] = ACTIONS(3829), - [anon_sym_DASH_GT] = ACTIONS(3829), - [anon_sym_with] = ACTIONS(3829), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -520025,25 +519457,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3690] = { - [sym__name] = STATE(6430), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(4096), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(4109), - [sym_type] = STATE(4632), - [sym_implicit_type] = STATE(7201), - [sym_array_type] = STATE(6648), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(6650), - [sym_pointer_type] = STATE(6650), - [sym__pointer_base_type] = STATE(7446), - [sym_function_pointer_type] = STATE(6650), - [sym_ref_type] = STATE(7266), - [sym__ref_base_type] = STATE(7710), - [sym_scoped_type] = STATE(7266), - [sym_tuple_type] = STATE(6474), - [sym_identifier] = STATE(4087), - [sym__reserved_identifier] = STATE(3691), + [sym__name] = STATE(3086), + [sym_alias_qualified_name] = STATE(2976), + [sym__simple_name] = STATE(2976), + [sym_qualified_name] = STATE(2976), + [sym_generic_name] = STATE(3030), + [sym_type] = STATE(3039), + [sym_implicit_type] = STATE(2977), + [sym_array_type] = STATE(2978), + [sym__array_base_type] = STATE(7236), + [sym_nullable_type] = STATE(2979), + [sym_pointer_type] = STATE(2979), + [sym__pointer_base_type] = STATE(7622), + [sym_function_pointer_type] = STATE(2979), + [sym_ref_type] = STATE(2977), + [sym_scoped_type] = STATE(2977), + [sym_tuple_type] = STATE(2980), + [sym_identifier] = STATE(2927), + [sym__reserved_identifier] = STATE(2916), [sym_preproc_region] = STATE(3690), [sym_preproc_endregion] = STATE(3690), [sym_preproc_line] = STATE(3690), @@ -520053,34 +519484,34 @@ 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), - [sym__identifier_token] = ACTIONS(2967), - [anon_sym_alias] = ACTIONS(2971), - [anon_sym_global] = ACTIONS(2971), - [anon_sym_LPAREN] = ACTIONS(2979), - [anon_sym_ref] = ACTIONS(6013), - [anon_sym_delegate] = ACTIONS(5030), - [anon_sym_file] = ACTIONS(2971), - [anon_sym_readonly] = ACTIONS(6015), - [anon_sym_where] = ACTIONS(2971), - [anon_sym_notnull] = ACTIONS(2971), - [anon_sym_unmanaged] = ACTIONS(2971), - [anon_sym_scoped] = ACTIONS(5476), - [anon_sym_var] = ACTIONS(4737), - [sym_predefined_type] = ACTIONS(5478), - [anon_sym_yield] = ACTIONS(2971), - [anon_sym_when] = ACTIONS(2971), - [anon_sym_from] = ACTIONS(2971), - [anon_sym_into] = ACTIONS(2971), - [anon_sym_join] = ACTIONS(2971), - [anon_sym_on] = ACTIONS(2971), - [anon_sym_equals] = ACTIONS(2971), - [anon_sym_let] = ACTIONS(2971), - [anon_sym_orderby] = ACTIONS(2971), - [anon_sym_ascending] = ACTIONS(2971), - [anon_sym_descending] = ACTIONS(2971), - [anon_sym_group] = ACTIONS(2971), - [anon_sym_by] = ACTIONS(2971), - [anon_sym_select] = ACTIONS(2971), + [sym__identifier_token] = ACTIONS(3871), + [anon_sym_alias] = ACTIONS(3873), + [anon_sym_global] = ACTIONS(3873), + [anon_sym_LPAREN] = ACTIONS(6033), + [anon_sym_ref] = ACTIONS(3875), + [anon_sym_delegate] = ACTIONS(4015), + [anon_sym_file] = ACTIONS(3873), + [anon_sym_readonly] = ACTIONS(6035), + [anon_sym_where] = ACTIONS(3873), + [anon_sym_notnull] = ACTIONS(3873), + [anon_sym_unmanaged] = ACTIONS(3873), + [anon_sym_scoped] = ACTIONS(4017), + [anon_sym_var] = ACTIONS(4019), + [sym_predefined_type] = ACTIONS(4021), + [anon_sym_yield] = ACTIONS(3873), + [anon_sym_when] = ACTIONS(3873), + [anon_sym_from] = ACTIONS(3873), + [anon_sym_into] = ACTIONS(3873), + [anon_sym_join] = ACTIONS(3873), + [anon_sym_on] = ACTIONS(3873), + [anon_sym_equals] = ACTIONS(3873), + [anon_sym_let] = ACTIONS(3873), + [anon_sym_orderby] = ACTIONS(3873), + [anon_sym_ascending] = ACTIONS(3873), + [anon_sym_descending] = ACTIONS(3873), + [anon_sym_group] = ACTIONS(3873), + [anon_sym_by] = ACTIONS(3873), + [anon_sym_select] = ACTIONS(3873), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -520102,53 +519533,52 @@ 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(3650), - [anon_sym_alias] = ACTIONS(3650), - [anon_sym_SEMI] = ACTIONS(3652), - [anon_sym_global] = ACTIONS(3650), - [anon_sym_EQ] = ACTIONS(3650), - [anon_sym_LBRACK] = ACTIONS(3652), - [anon_sym_COLON] = ACTIONS(3650), - [anon_sym_COMMA] = ACTIONS(3652), - [anon_sym_RBRACK] = ACTIONS(3652), - [anon_sym_LPAREN] = ACTIONS(3652), - [anon_sym_RPAREN] = ACTIONS(3652), - [anon_sym_LBRACE] = ACTIONS(3652), - [anon_sym_RBRACE] = ACTIONS(3652), - [anon_sym_file] = ACTIONS(3650), - [anon_sym_LT] = ACTIONS(3652), - [anon_sym_GT] = ACTIONS(3652), - [anon_sym_in] = ACTIONS(3650), - [anon_sym_where] = ACTIONS(3650), - [anon_sym_QMARK] = ACTIONS(3652), - [anon_sym_notnull] = ACTIONS(3650), - [anon_sym_unmanaged] = ACTIONS(3650), - [anon_sym_operator] = ACTIONS(3650), - [anon_sym_STAR] = ACTIONS(3652), - [anon_sym_this] = ACTIONS(3650), - [anon_sym_DOT] = ACTIONS(3652), - [anon_sym_scoped] = ACTIONS(3650), - [anon_sym_EQ_GT] = ACTIONS(3652), - [anon_sym_COLON_COLON] = ACTIONS(3652), - [anon_sym_var] = ACTIONS(3650), - [anon_sym_yield] = ACTIONS(3650), - [anon_sym_when] = ACTIONS(3650), - [sym_discard] = ACTIONS(3650), - [anon_sym_and] = ACTIONS(3650), - [anon_sym_or] = ACTIONS(3650), - [anon_sym_from] = ACTIONS(3650), - [anon_sym_into] = ACTIONS(3650), - [anon_sym_join] = ACTIONS(3650), - [anon_sym_on] = ACTIONS(3650), - [anon_sym_equals] = ACTIONS(3650), - [anon_sym_let] = ACTIONS(3650), - [anon_sym_orderby] = ACTIONS(3650), - [anon_sym_ascending] = ACTIONS(3650), - [anon_sym_descending] = ACTIONS(3650), - [anon_sym_group] = ACTIONS(3650), - [anon_sym_by] = ACTIONS(3650), - [anon_sym_select] = ACTIONS(3650), - [anon_sym_DASH_GT] = ACTIONS(3652), + [anon_sym_LBRACK] = ACTIONS(5438), + [anon_sym_COMMA] = ACTIONS(5438), + [anon_sym_LPAREN] = ACTIONS(5438), + [anon_sym_LT] = ACTIONS(5440), + [anon_sym_GT] = ACTIONS(5440), + [anon_sym_where] = ACTIONS(5438), + [anon_sym_QMARK] = ACTIONS(5440), + [anon_sym_BANG] = ACTIONS(5440), + [anon_sym_PLUS_PLUS] = ACTIONS(5438), + [anon_sym_DASH_DASH] = ACTIONS(5438), + [anon_sym_PLUS] = ACTIONS(5440), + [anon_sym_DASH] = ACTIONS(5440), + [anon_sym_STAR] = ACTIONS(5438), + [anon_sym_SLASH] = ACTIONS(5440), + [anon_sym_PERCENT] = ACTIONS(5438), + [anon_sym_CARET] = ACTIONS(5438), + [anon_sym_PIPE] = ACTIONS(5440), + [anon_sym_AMP] = ACTIONS(5440), + [anon_sym_LT_LT] = ACTIONS(5438), + [anon_sym_GT_GT] = ACTIONS(5440), + [anon_sym_GT_GT_GT] = ACTIONS(5438), + [anon_sym_EQ_EQ] = ACTIONS(5438), + [anon_sym_BANG_EQ] = ACTIONS(5438), + [anon_sym_GT_EQ] = ACTIONS(5438), + [anon_sym_LT_EQ] = ACTIONS(5438), + [anon_sym_DOT] = ACTIONS(5440), + [anon_sym_switch] = ACTIONS(5438), + [anon_sym_DOT_DOT] = ACTIONS(5438), + [anon_sym_and] = ACTIONS(5438), + [anon_sym_or] = ACTIONS(5440), + [anon_sym_AMP_AMP] = ACTIONS(5438), + [anon_sym_PIPE_PIPE] = ACTIONS(5438), + [anon_sym_QMARK_QMARK] = ACTIONS(5438), + [anon_sym_from] = ACTIONS(5438), + [anon_sym_into] = ACTIONS(5438), + [anon_sym_join] = ACTIONS(5438), + [anon_sym_let] = ACTIONS(5438), + [anon_sym_orderby] = ACTIONS(5438), + [anon_sym_ascending] = ACTIONS(5438), + [anon_sym_descending] = ACTIONS(5438), + [anon_sym_group] = ACTIONS(5438), + [anon_sym_select] = ACTIONS(5438), + [anon_sym_as] = ACTIONS(5440), + [anon_sym_is] = ACTIONS(5438), + [anon_sym_DASH_GT] = ACTIONS(5438), + [anon_sym_with] = ACTIONS(5438), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -520161,8 +519591,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3692] = { - [sym_argument_list] = STATE(3886), - [sym_bracketed_argument_list] = STATE(2902), [sym_preproc_region] = STATE(3692), [sym_preproc_endregion] = STATE(3692), [sym_preproc_line] = STATE(3692), @@ -520172,51 +519600,52 @@ 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(5658), - [anon_sym_COMMA] = ACTIONS(5660), - [anon_sym_LPAREN] = ACTIONS(5624), - [anon_sym_LT] = ACTIONS(5903), - [anon_sym_GT] = ACTIONS(5903), - [anon_sym_where] = ACTIONS(5660), - [anon_sym_QMARK] = ACTIONS(5664), - [anon_sym_BANG] = ACTIONS(5666), - [anon_sym_PLUS_PLUS] = ACTIONS(5668), - [anon_sym_DASH_DASH] = ACTIONS(5668), - [anon_sym_PLUS] = ACTIONS(5907), - [anon_sym_DASH] = ACTIONS(5907), - [anon_sym_STAR] = ACTIONS(5909), - [anon_sym_SLASH] = ACTIONS(5911), - [anon_sym_PERCENT] = ACTIONS(5909), - [anon_sym_CARET] = ACTIONS(5913), - [anon_sym_PIPE] = ACTIONS(5915), - [anon_sym_AMP] = ACTIONS(5917), - [anon_sym_LT_LT] = ACTIONS(5919), - [anon_sym_GT_GT] = ACTIONS(5921), - [anon_sym_GT_GT_GT] = ACTIONS(5919), - [anon_sym_EQ_EQ] = ACTIONS(5923), - [anon_sym_BANG_EQ] = ACTIONS(5923), - [anon_sym_GT_EQ] = ACTIONS(5925), - [anon_sym_LT_EQ] = ACTIONS(5925), - [anon_sym_DOT] = ACTIONS(4733), - [anon_sym_switch] = ACTIONS(5688), - [anon_sym_DOT_DOT] = ACTIONS(5927), - [anon_sym_and] = ACTIONS(5660), - [anon_sym_or] = ACTIONS(5664), - [anon_sym_AMP_AMP] = ACTIONS(5929), - [anon_sym_PIPE_PIPE] = ACTIONS(5660), - [anon_sym_QMARK_QMARK] = ACTIONS(5660), - [anon_sym_from] = ACTIONS(5660), - [anon_sym_join] = ACTIONS(5660), - [anon_sym_let] = ACTIONS(5660), - [anon_sym_orderby] = ACTIONS(5660), - [anon_sym_ascending] = ACTIONS(5660), - [anon_sym_descending] = ACTIONS(5660), - [anon_sym_group] = ACTIONS(5660), - [anon_sym_select] = ACTIONS(5660), - [anon_sym_as] = ACTIONS(5935), - [anon_sym_is] = ACTIONS(5937), - [anon_sym_DASH_GT] = ACTIONS(4719), - [anon_sym_with] = ACTIONS(5696), + [anon_sym_LBRACK] = ACTIONS(3809), + [anon_sym_COMMA] = ACTIONS(3809), + [anon_sym_LPAREN] = ACTIONS(3809), + [anon_sym_LT] = ACTIONS(5406), + [anon_sym_GT] = ACTIONS(5406), + [anon_sym_where] = ACTIONS(3809), + [anon_sym_QMARK] = ACTIONS(5406), + [anon_sym_BANG] = ACTIONS(5406), + [anon_sym_PLUS_PLUS] = ACTIONS(3809), + [anon_sym_DASH_DASH] = ACTIONS(3809), + [anon_sym_PLUS] = ACTIONS(5406), + [anon_sym_DASH] = ACTIONS(5406), + [anon_sym_STAR] = ACTIONS(3809), + [anon_sym_SLASH] = ACTIONS(5406), + [anon_sym_PERCENT] = ACTIONS(3809), + [anon_sym_CARET] = ACTIONS(3809), + [anon_sym_PIPE] = ACTIONS(5406), + [anon_sym_AMP] = ACTIONS(5406), + [anon_sym_LT_LT] = ACTIONS(3809), + [anon_sym_GT_GT] = ACTIONS(5406), + [anon_sym_GT_GT_GT] = ACTIONS(3809), + [anon_sym_EQ_EQ] = ACTIONS(3809), + [anon_sym_BANG_EQ] = ACTIONS(3809), + [anon_sym_GT_EQ] = ACTIONS(3809), + [anon_sym_LT_EQ] = ACTIONS(3809), + [anon_sym_DOT] = ACTIONS(5406), + [anon_sym_switch] = ACTIONS(3809), + [anon_sym_DOT_DOT] = ACTIONS(3809), + [anon_sym_and] = ACTIONS(3809), + [anon_sym_or] = ACTIONS(5406), + [anon_sym_AMP_AMP] = ACTIONS(3809), + [anon_sym_PIPE_PIPE] = ACTIONS(3809), + [anon_sym_QMARK_QMARK] = ACTIONS(3809), + [anon_sym_from] = ACTIONS(3809), + [anon_sym_into] = ACTIONS(3809), + [anon_sym_join] = ACTIONS(3809), + [anon_sym_let] = ACTIONS(3809), + [anon_sym_orderby] = ACTIONS(3809), + [anon_sym_ascending] = ACTIONS(3809), + [anon_sym_descending] = ACTIONS(3809), + [anon_sym_group] = ACTIONS(3809), + [anon_sym_select] = ACTIONS(3809), + [anon_sym_as] = ACTIONS(5406), + [anon_sym_is] = ACTIONS(3809), + [anon_sym_DASH_GT] = ACTIONS(3809), + [anon_sym_with] = ACTIONS(3809), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -520229,8 +519658,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3693] = { - [sym_argument_list] = STATE(3886), - [sym_bracketed_argument_list] = STATE(2902), [sym_preproc_region] = STATE(3693), [sym_preproc_endregion] = STATE(3693), [sym_preproc_line] = STATE(3693), @@ -520240,51 +519667,52 @@ 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(5658), - [anon_sym_COMMA] = ACTIONS(5731), - [anon_sym_LPAREN] = ACTIONS(5624), - [anon_sym_LT] = ACTIONS(5733), - [anon_sym_GT] = ACTIONS(5733), - [anon_sym_where] = ACTIONS(5731), - [anon_sym_QMARK] = ACTIONS(5733), - [anon_sym_BANG] = ACTIONS(5666), - [anon_sym_PLUS_PLUS] = ACTIONS(5668), - [anon_sym_DASH_DASH] = ACTIONS(5668), - [anon_sym_PLUS] = ACTIONS(5733), - [anon_sym_DASH] = ACTIONS(5733), - [anon_sym_STAR] = ACTIONS(5731), - [anon_sym_SLASH] = ACTIONS(5733), - [anon_sym_PERCENT] = ACTIONS(5731), - [anon_sym_CARET] = ACTIONS(5731), - [anon_sym_PIPE] = ACTIONS(5733), - [anon_sym_AMP] = ACTIONS(5733), - [anon_sym_LT_LT] = ACTIONS(5731), - [anon_sym_GT_GT] = ACTIONS(5733), - [anon_sym_GT_GT_GT] = ACTIONS(5731), - [anon_sym_EQ_EQ] = ACTIONS(5731), - [anon_sym_BANG_EQ] = ACTIONS(5731), - [anon_sym_GT_EQ] = ACTIONS(5731), - [anon_sym_LT_EQ] = ACTIONS(5731), - [anon_sym_DOT] = ACTIONS(4733), - [anon_sym_switch] = ACTIONS(5731), - [anon_sym_DOT_DOT] = ACTIONS(5927), - [anon_sym_and] = ACTIONS(5731), - [anon_sym_or] = ACTIONS(5733), - [anon_sym_AMP_AMP] = ACTIONS(5731), - [anon_sym_PIPE_PIPE] = ACTIONS(5731), - [anon_sym_QMARK_QMARK] = ACTIONS(5731), - [anon_sym_from] = ACTIONS(5731), - [anon_sym_join] = ACTIONS(5731), - [anon_sym_let] = ACTIONS(5731), - [anon_sym_orderby] = ACTIONS(5731), - [anon_sym_ascending] = ACTIONS(5731), - [anon_sym_descending] = ACTIONS(5731), - [anon_sym_group] = ACTIONS(5731), - [anon_sym_select] = ACTIONS(5731), - [anon_sym_as] = ACTIONS(5733), - [anon_sym_is] = ACTIONS(5731), - [anon_sym_DASH_GT] = ACTIONS(4719), - [anon_sym_with] = ACTIONS(5731), + [anon_sym_LBRACK] = ACTIONS(5442), + [anon_sym_COMMA] = ACTIONS(5442), + [anon_sym_LPAREN] = ACTIONS(5442), + [anon_sym_LT] = ACTIONS(5444), + [anon_sym_GT] = ACTIONS(5444), + [anon_sym_where] = ACTIONS(5442), + [anon_sym_QMARK] = ACTIONS(5444), + [anon_sym_BANG] = ACTIONS(5444), + [anon_sym_PLUS_PLUS] = ACTIONS(5442), + [anon_sym_DASH_DASH] = ACTIONS(5442), + [anon_sym_PLUS] = ACTIONS(5444), + [anon_sym_DASH] = ACTIONS(5444), + [anon_sym_STAR] = ACTIONS(5442), + [anon_sym_SLASH] = ACTIONS(5444), + [anon_sym_PERCENT] = ACTIONS(5442), + [anon_sym_CARET] = ACTIONS(5442), + [anon_sym_PIPE] = ACTIONS(5444), + [anon_sym_AMP] = ACTIONS(5444), + [anon_sym_LT_LT] = ACTIONS(5442), + [anon_sym_GT_GT] = ACTIONS(5444), + [anon_sym_GT_GT_GT] = ACTIONS(5442), + [anon_sym_EQ_EQ] = ACTIONS(5442), + [anon_sym_BANG_EQ] = ACTIONS(5442), + [anon_sym_GT_EQ] = ACTIONS(5442), + [anon_sym_LT_EQ] = ACTIONS(5442), + [anon_sym_DOT] = ACTIONS(5444), + [anon_sym_switch] = ACTIONS(5442), + [anon_sym_DOT_DOT] = ACTIONS(5442), + [anon_sym_and] = ACTIONS(5442), + [anon_sym_or] = ACTIONS(5444), + [anon_sym_AMP_AMP] = ACTIONS(5442), + [anon_sym_PIPE_PIPE] = ACTIONS(5442), + [anon_sym_QMARK_QMARK] = ACTIONS(5442), + [anon_sym_from] = ACTIONS(5442), + [anon_sym_into] = ACTIONS(5442), + [anon_sym_join] = ACTIONS(5442), + [anon_sym_let] = ACTIONS(5442), + [anon_sym_orderby] = ACTIONS(5442), + [anon_sym_ascending] = ACTIONS(5442), + [anon_sym_descending] = ACTIONS(5442), + [anon_sym_group] = ACTIONS(5442), + [anon_sym_select] = ACTIONS(5442), + [anon_sym_as] = ACTIONS(5444), + [anon_sym_is] = ACTIONS(5442), + [anon_sym_DASH_GT] = ACTIONS(5442), + [anon_sym_with] = ACTIONS(5442), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -520297,24 +519725,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3694] = { - [sym__name] = STATE(4390), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(4096), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(4109), - [sym_type] = STATE(4632), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_identifier] = STATE(4087), - [sym__reserved_identifier] = STATE(3691), + [sym_argument_list] = STATE(3348), + [sym_bracketed_argument_list] = STATE(2605), [sym_preproc_region] = STATE(3694), [sym_preproc_endregion] = STATE(3694), [sym_preproc_line] = STATE(3694), @@ -520324,35 +519736,50 @@ 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), - [sym__identifier_token] = ACTIONS(2967), - [anon_sym_alias] = ACTIONS(2971), - [anon_sym_global] = ACTIONS(2971), - [anon_sym_LPAREN] = ACTIONS(2979), - [anon_sym_ref] = ACTIONS(3452), - [anon_sym_struct] = ACTIONS(3937), - [anon_sym_delegate] = ACTIONS(3454), - [anon_sym_file] = ACTIONS(2971), - [anon_sym_readonly] = ACTIONS(2749), - [anon_sym_where] = ACTIONS(2971), - [anon_sym_notnull] = ACTIONS(2971), - [anon_sym_unmanaged] = ACTIONS(2971), - [anon_sym_scoped] = ACTIONS(2997), - [anon_sym_var] = ACTIONS(2999), - [sym_predefined_type] = ACTIONS(3001), - [anon_sym_yield] = ACTIONS(2971), - [anon_sym_when] = ACTIONS(2971), - [anon_sym_from] = ACTIONS(2971), - [anon_sym_into] = ACTIONS(2971), - [anon_sym_join] = ACTIONS(2971), - [anon_sym_on] = ACTIONS(2971), - [anon_sym_equals] = ACTIONS(2971), - [anon_sym_let] = ACTIONS(2971), - [anon_sym_orderby] = ACTIONS(2971), - [anon_sym_ascending] = ACTIONS(2971), - [anon_sym_descending] = ACTIONS(2971), - [anon_sym_group] = ACTIONS(2971), - [anon_sym_by] = ACTIONS(2971), - [anon_sym_select] = ACTIONS(2971), + [anon_sym_SEMI] = ACTIONS(5652), + [anon_sym_LBRACK] = ACTIONS(5236), + [anon_sym_COMMA] = ACTIONS(5652), + [anon_sym_RBRACK] = ACTIONS(5652), + [anon_sym_LPAREN] = ACTIONS(5227), + [anon_sym_RPAREN] = ACTIONS(5652), + [anon_sym_RBRACE] = ACTIONS(5652), + [anon_sym_LT] = ACTIONS(5993), + [anon_sym_GT] = ACTIONS(5993), + [anon_sym_QMARK] = ACTIONS(5995), + [anon_sym_BANG] = ACTIONS(5238), + [anon_sym_PLUS_PLUS] = ACTIONS(5240), + [anon_sym_DASH_DASH] = ACTIONS(5240), + [anon_sym_PLUS] = ACTIONS(5997), + [anon_sym_DASH] = ACTIONS(5997), + [anon_sym_STAR] = ACTIONS(5999), + [anon_sym_SLASH] = ACTIONS(6001), + [anon_sym_PERCENT] = ACTIONS(5999), + [anon_sym_CARET] = ACTIONS(6003), + [anon_sym_PIPE] = ACTIONS(6005), + [anon_sym_AMP] = ACTIONS(6007), + [anon_sym_LT_LT] = ACTIONS(6009), + [anon_sym_GT_GT] = ACTIONS(6011), + [anon_sym_GT_GT_GT] = ACTIONS(6009), + [anon_sym_EQ_EQ] = ACTIONS(6013), + [anon_sym_BANG_EQ] = ACTIONS(6013), + [anon_sym_GT_EQ] = ACTIONS(6015), + [anon_sym_LT_EQ] = ACTIONS(6015), + [anon_sym_DOT] = ACTIONS(4092), + [anon_sym_switch] = ACTIONS(6017), + [anon_sym_DOT_DOT] = ACTIONS(6019), + [anon_sym_and] = ACTIONS(5652), + [anon_sym_or] = ACTIONS(5652), + [anon_sym_AMP_AMP] = ACTIONS(6021), + [anon_sym_PIPE_PIPE] = ACTIONS(6023), + [anon_sym_QMARK_QMARK] = ACTIONS(6025), + [anon_sym_into] = ACTIONS(5652), + [anon_sym_as] = ACTIONS(6027), + [anon_sym_is] = ACTIONS(6029), + [anon_sym_DASH_GT] = ACTIONS(4094), + [anon_sym_with] = ACTIONS(6031), + [aux_sym_preproc_if_token3] = ACTIONS(5652), + [aux_sym_preproc_else_token1] = ACTIONS(5652), + [aux_sym_preproc_elif_token1] = ACTIONS(5652), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -520365,25 +519792,25 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3695] = { - [sym_variable_declaration] = STATE(7526), - [sym__name] = STATE(4390), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(4096), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(4109), - [sym_type] = STATE(5922), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_identifier] = STATE(4087), - [sym__reserved_identifier] = STATE(3691), + [sym__name] = STATE(4369), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(4068), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(4073), + [sym_type] = STATE(5960), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_tuple_element] = STATE(7087), + [sym_identifier] = STATE(4081), + [sym__reserved_identifier] = STATE(3654), [sym_preproc_region] = STATE(3695), [sym_preproc_endregion] = STATE(3695), [sym_preproc_line] = STATE(3695), @@ -520393,33 +519820,33 @@ 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), - [sym__identifier_token] = ACTIONS(2967), - [anon_sym_alias] = ACTIONS(2971), - [anon_sym_global] = ACTIONS(2971), - [anon_sym_LPAREN] = ACTIONS(2979), - [anon_sym_ref] = ACTIONS(3452), - [anon_sym_delegate] = ACTIONS(3454), - [anon_sym_file] = ACTIONS(2971), - [anon_sym_where] = ACTIONS(2971), - [anon_sym_notnull] = ACTIONS(2971), - [anon_sym_unmanaged] = ACTIONS(2971), - [anon_sym_scoped] = ACTIONS(2997), - [anon_sym_var] = ACTIONS(2999), - [sym_predefined_type] = ACTIONS(3001), - [anon_sym_yield] = ACTIONS(2971), - [anon_sym_when] = ACTIONS(2971), - [anon_sym_from] = ACTIONS(2971), - [anon_sym_into] = ACTIONS(2971), - [anon_sym_join] = ACTIONS(2971), - [anon_sym_on] = ACTIONS(2971), - [anon_sym_equals] = ACTIONS(2971), - [anon_sym_let] = ACTIONS(2971), - [anon_sym_orderby] = ACTIONS(2971), - [anon_sym_ascending] = ACTIONS(2971), - [anon_sym_descending] = ACTIONS(2971), - [anon_sym_group] = ACTIONS(2971), - [anon_sym_by] = ACTIONS(2971), - [anon_sym_select] = ACTIONS(2971), + [sym__identifier_token] = ACTIONS(2965), + [anon_sym_alias] = ACTIONS(2969), + [anon_sym_global] = ACTIONS(2969), + [anon_sym_LPAREN] = ACTIONS(2977), + [anon_sym_ref] = ACTIONS(3624), + [anon_sym_delegate] = ACTIONS(3438), + [anon_sym_file] = ACTIONS(2969), + [anon_sym_where] = ACTIONS(2969), + [anon_sym_notnull] = ACTIONS(2969), + [anon_sym_unmanaged] = ACTIONS(2969), + [anon_sym_scoped] = ACTIONS(6037), + [anon_sym_var] = ACTIONS(6039), + [sym_predefined_type] = ACTIONS(2997), + [anon_sym_yield] = ACTIONS(2969), + [anon_sym_when] = ACTIONS(2969), + [anon_sym_from] = ACTIONS(2969), + [anon_sym_into] = ACTIONS(2969), + [anon_sym_join] = ACTIONS(2969), + [anon_sym_on] = ACTIONS(2969), + [anon_sym_equals] = ACTIONS(2969), + [anon_sym_let] = ACTIONS(2969), + [anon_sym_orderby] = ACTIONS(2969), + [anon_sym_ascending] = ACTIONS(2969), + [anon_sym_descending] = ACTIONS(2969), + [anon_sym_group] = ACTIONS(2969), + [anon_sym_by] = ACTIONS(2969), + [anon_sym_select] = ACTIONS(2969), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -520441,52 +519868,52 @@ 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(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(5322), + [anon_sym_COMMA] = ACTIONS(5322), + [anon_sym_LPAREN] = ACTIONS(5322), + [anon_sym_LT] = ACTIONS(5324), + [anon_sym_GT] = ACTIONS(5324), + [anon_sym_where] = ACTIONS(5322), + [anon_sym_QMARK] = ACTIONS(5324), + [anon_sym_BANG] = ACTIONS(5324), + [anon_sym_PLUS_PLUS] = ACTIONS(5322), + [anon_sym_DASH_DASH] = ACTIONS(5322), + [anon_sym_PLUS] = ACTIONS(5324), + [anon_sym_DASH] = ACTIONS(5324), + [anon_sym_STAR] = ACTIONS(5322), + [anon_sym_SLASH] = ACTIONS(5324), + [anon_sym_PERCENT] = ACTIONS(5322), + [anon_sym_CARET] = ACTIONS(5322), + [anon_sym_PIPE] = ACTIONS(5324), + [anon_sym_AMP] = ACTIONS(5324), + [anon_sym_LT_LT] = ACTIONS(5322), + [anon_sym_GT_GT] = ACTIONS(5324), + [anon_sym_GT_GT_GT] = ACTIONS(5322), + [anon_sym_EQ_EQ] = ACTIONS(5322), + [anon_sym_BANG_EQ] = ACTIONS(5322), + [anon_sym_GT_EQ] = ACTIONS(5322), + [anon_sym_LT_EQ] = ACTIONS(5322), + [anon_sym_DOT] = ACTIONS(5324), + [anon_sym_switch] = ACTIONS(5322), + [anon_sym_DOT_DOT] = ACTIONS(5322), + [anon_sym_and] = ACTIONS(5322), + [anon_sym_or] = ACTIONS(5324), + [anon_sym_AMP_AMP] = ACTIONS(5322), + [anon_sym_PIPE_PIPE] = ACTIONS(5322), + [anon_sym_QMARK_QMARK] = ACTIONS(5322), + [anon_sym_from] = ACTIONS(5322), + [anon_sym_into] = ACTIONS(5322), + [anon_sym_join] = ACTIONS(5322), + [anon_sym_let] = ACTIONS(5322), + [anon_sym_orderby] = ACTIONS(5322), + [anon_sym_ascending] = ACTIONS(5322), + [anon_sym_descending] = ACTIONS(5322), + [anon_sym_group] = ACTIONS(5322), + [anon_sym_select] = ACTIONS(5322), + [anon_sym_as] = ACTIONS(5324), + [anon_sym_is] = ACTIONS(5322), + [anon_sym_DASH_GT] = ACTIONS(5322), + [anon_sym_with] = ACTIONS(5322), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -520508,52 +519935,52 @@ 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(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), + [anon_sym_LBRACK] = ACTIONS(5322), + [anon_sym_COMMA] = ACTIONS(5322), + [anon_sym_LPAREN] = ACTIONS(5322), + [anon_sym_LT] = ACTIONS(5324), + [anon_sym_GT] = ACTIONS(5324), + [anon_sym_where] = ACTIONS(5322), + [anon_sym_QMARK] = ACTIONS(5324), + [anon_sym_BANG] = ACTIONS(5324), + [anon_sym_PLUS_PLUS] = ACTIONS(5322), + [anon_sym_DASH_DASH] = ACTIONS(5322), + [anon_sym_PLUS] = ACTIONS(5324), + [anon_sym_DASH] = ACTIONS(5324), + [anon_sym_STAR] = ACTIONS(5322), + [anon_sym_SLASH] = ACTIONS(5324), + [anon_sym_PERCENT] = ACTIONS(5322), + [anon_sym_CARET] = ACTIONS(5322), + [anon_sym_PIPE] = ACTIONS(5324), + [anon_sym_AMP] = ACTIONS(5324), + [anon_sym_LT_LT] = ACTIONS(5322), + [anon_sym_GT_GT] = ACTIONS(5324), + [anon_sym_GT_GT_GT] = ACTIONS(5322), + [anon_sym_EQ_EQ] = ACTIONS(5322), + [anon_sym_BANG_EQ] = ACTIONS(5322), + [anon_sym_GT_EQ] = ACTIONS(5322), + [anon_sym_LT_EQ] = ACTIONS(5322), + [anon_sym_DOT] = ACTIONS(5324), + [anon_sym_switch] = ACTIONS(5322), + [anon_sym_DOT_DOT] = ACTIONS(5322), + [anon_sym_and] = ACTIONS(5322), + [anon_sym_or] = ACTIONS(5324), + [anon_sym_AMP_AMP] = ACTIONS(5322), + [anon_sym_PIPE_PIPE] = ACTIONS(5322), + [anon_sym_QMARK_QMARK] = ACTIONS(5322), + [anon_sym_from] = ACTIONS(5322), + [anon_sym_into] = ACTIONS(5322), + [anon_sym_join] = ACTIONS(5322), + [anon_sym_let] = ACTIONS(5322), + [anon_sym_orderby] = ACTIONS(5322), + [anon_sym_ascending] = ACTIONS(5322), + [anon_sym_descending] = ACTIONS(5322), + [anon_sym_group] = ACTIONS(5322), + [anon_sym_select] = ACTIONS(5322), + [anon_sym_as] = ACTIONS(5324), + [anon_sym_is] = ACTIONS(5322), + [anon_sym_DASH_GT] = ACTIONS(5322), + [anon_sym_with] = ACTIONS(5322), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -520566,6 +519993,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3698] = { + [sym_argument_list] = STATE(3348), + [sym_bracketed_argument_list] = STATE(2605), [sym_preproc_region] = STATE(3698), [sym_preproc_endregion] = STATE(3698), [sym_preproc_line] = STATE(3698), @@ -520575,52 +520004,50 @@ 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), - [anon_sym_LBRACK] = ACTIONS(5012), - [anon_sym_COMMA] = ACTIONS(5012), - [anon_sym_LPAREN] = ACTIONS(5012), - [anon_sym_LT] = ACTIONS(5014), - [anon_sym_GT] = ACTIONS(5014), - [anon_sym_where] = ACTIONS(5012), - [anon_sym_QMARK] = ACTIONS(5014), - [anon_sym_BANG] = ACTIONS(5014), - [anon_sym_PLUS_PLUS] = ACTIONS(5012), - [anon_sym_DASH_DASH] = ACTIONS(5012), - [anon_sym_PLUS] = ACTIONS(5014), - [anon_sym_DASH] = ACTIONS(5014), - [anon_sym_STAR] = ACTIONS(5012), - [anon_sym_SLASH] = ACTIONS(5014), - [anon_sym_PERCENT] = ACTIONS(5012), - [anon_sym_CARET] = ACTIONS(5012), - [anon_sym_PIPE] = ACTIONS(5014), - [anon_sym_AMP] = ACTIONS(5014), - [anon_sym_LT_LT] = ACTIONS(5012), - [anon_sym_GT_GT] = ACTIONS(5014), - [anon_sym_GT_GT_GT] = ACTIONS(5012), - [anon_sym_EQ_EQ] = ACTIONS(5012), - [anon_sym_BANG_EQ] = ACTIONS(5012), - [anon_sym_GT_EQ] = ACTIONS(5012), - [anon_sym_LT_EQ] = ACTIONS(5012), - [anon_sym_DOT] = ACTIONS(5014), - [anon_sym_switch] = ACTIONS(5012), - [anon_sym_DOT_DOT] = ACTIONS(5012), - [anon_sym_and] = ACTIONS(5012), - [anon_sym_or] = ACTIONS(5014), - [anon_sym_AMP_AMP] = ACTIONS(5012), - [anon_sym_PIPE_PIPE] = ACTIONS(5012), - [anon_sym_QMARK_QMARK] = ACTIONS(5012), - [anon_sym_from] = ACTIONS(5012), - [anon_sym_into] = ACTIONS(5012), - [anon_sym_join] = ACTIONS(5012), - [anon_sym_let] = ACTIONS(5012), - [anon_sym_orderby] = ACTIONS(5012), - [anon_sym_ascending] = ACTIONS(5012), - [anon_sym_descending] = ACTIONS(5012), - [anon_sym_group] = ACTIONS(5012), - [anon_sym_select] = ACTIONS(5012), - [anon_sym_as] = ACTIONS(5014), - [anon_sym_is] = ACTIONS(5012), - [anon_sym_DASH_GT] = ACTIONS(5012), - [anon_sym_with] = ACTIONS(5012), + [anon_sym_SEMI] = ACTIONS(5855), + [anon_sym_LBRACK] = ACTIONS(5236), + [anon_sym_COMMA] = ACTIONS(5855), + [anon_sym_RBRACK] = ACTIONS(5855), + [anon_sym_LPAREN] = ACTIONS(5227), + [anon_sym_RPAREN] = ACTIONS(5855), + [anon_sym_RBRACE] = ACTIONS(5855), + [anon_sym_LT] = ACTIONS(5993), + [anon_sym_GT] = ACTIONS(5993), + [anon_sym_QMARK] = ACTIONS(5995), + [anon_sym_BANG] = ACTIONS(5238), + [anon_sym_PLUS_PLUS] = ACTIONS(5240), + [anon_sym_DASH_DASH] = ACTIONS(5240), + [anon_sym_PLUS] = ACTIONS(5997), + [anon_sym_DASH] = ACTIONS(5997), + [anon_sym_STAR] = ACTIONS(5999), + [anon_sym_SLASH] = ACTIONS(6001), + [anon_sym_PERCENT] = ACTIONS(5999), + [anon_sym_CARET] = ACTIONS(6003), + [anon_sym_PIPE] = ACTIONS(6005), + [anon_sym_AMP] = ACTIONS(6007), + [anon_sym_LT_LT] = ACTIONS(6009), + [anon_sym_GT_GT] = ACTIONS(6011), + [anon_sym_GT_GT_GT] = ACTIONS(6009), + [anon_sym_EQ_EQ] = ACTIONS(6013), + [anon_sym_BANG_EQ] = ACTIONS(6013), + [anon_sym_GT_EQ] = ACTIONS(6015), + [anon_sym_LT_EQ] = ACTIONS(6015), + [anon_sym_DOT] = ACTIONS(4092), + [anon_sym_switch] = ACTIONS(6017), + [anon_sym_DOT_DOT] = ACTIONS(6019), + [anon_sym_and] = ACTIONS(5855), + [anon_sym_or] = ACTIONS(5855), + [anon_sym_AMP_AMP] = ACTIONS(6021), + [anon_sym_PIPE_PIPE] = ACTIONS(6023), + [anon_sym_QMARK_QMARK] = ACTIONS(6025), + [anon_sym_into] = ACTIONS(5855), + [anon_sym_as] = ACTIONS(6027), + [anon_sym_is] = ACTIONS(6029), + [anon_sym_DASH_GT] = ACTIONS(4094), + [anon_sym_with] = ACTIONS(6031), + [aux_sym_preproc_if_token3] = ACTIONS(5855), + [aux_sym_preproc_else_token1] = ACTIONS(5855), + [aux_sym_preproc_elif_token1] = ACTIONS(5855), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -520633,6 +520060,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3699] = { + [sym_argument_list] = STATE(3348), + [sym_bracketed_argument_list] = STATE(2605), [sym_preproc_region] = STATE(3699), [sym_preproc_endregion] = STATE(3699), [sym_preproc_line] = STATE(3699), @@ -520642,52 +520071,50 @@ 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(4933), - [anon_sym_COMMA] = ACTIONS(4933), - [anon_sym_LPAREN] = 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), + [anon_sym_SEMI] = ACTIONS(5801), + [anon_sym_LBRACK] = ACTIONS(5236), + [anon_sym_COMMA] = ACTIONS(5801), + [anon_sym_RBRACK] = ACTIONS(5801), + [anon_sym_LPAREN] = ACTIONS(5227), + [anon_sym_RPAREN] = ACTIONS(5801), + [anon_sym_RBRACE] = ACTIONS(5801), + [anon_sym_LT] = ACTIONS(5993), + [anon_sym_GT] = ACTIONS(5993), + [anon_sym_QMARK] = ACTIONS(5995), + [anon_sym_BANG] = ACTIONS(5238), + [anon_sym_PLUS_PLUS] = ACTIONS(5240), + [anon_sym_DASH_DASH] = ACTIONS(5240), + [anon_sym_PLUS] = ACTIONS(5997), + [anon_sym_DASH] = ACTIONS(5997), + [anon_sym_STAR] = ACTIONS(5999), + [anon_sym_SLASH] = ACTIONS(6001), + [anon_sym_PERCENT] = ACTIONS(5999), + [anon_sym_CARET] = ACTIONS(6003), + [anon_sym_PIPE] = ACTIONS(6005), + [anon_sym_AMP] = ACTIONS(6007), + [anon_sym_LT_LT] = ACTIONS(6009), + [anon_sym_GT_GT] = ACTIONS(6011), + [anon_sym_GT_GT_GT] = ACTIONS(6009), + [anon_sym_EQ_EQ] = ACTIONS(6013), + [anon_sym_BANG_EQ] = ACTIONS(6013), + [anon_sym_GT_EQ] = ACTIONS(6015), + [anon_sym_LT_EQ] = ACTIONS(6015), + [anon_sym_DOT] = ACTIONS(4092), + [anon_sym_switch] = ACTIONS(6017), + [anon_sym_DOT_DOT] = ACTIONS(6019), + [anon_sym_and] = ACTIONS(5801), + [anon_sym_or] = ACTIONS(5801), + [anon_sym_AMP_AMP] = ACTIONS(6021), + [anon_sym_PIPE_PIPE] = ACTIONS(6023), + [anon_sym_QMARK_QMARK] = ACTIONS(6025), + [anon_sym_into] = ACTIONS(5801), + [anon_sym_as] = ACTIONS(6027), + [anon_sym_is] = ACTIONS(6029), + [anon_sym_DASH_GT] = ACTIONS(4094), + [anon_sym_with] = ACTIONS(6031), + [aux_sym_preproc_if_token3] = ACTIONS(5801), + [aux_sym_preproc_else_token1] = ACTIONS(5801), + [aux_sym_preproc_elif_token1] = ACTIONS(5801), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -520700,6 +520127,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3700] = { + [sym__name] = STATE(5736), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(4068), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(4073), + [sym_type] = STATE(4565), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_identifier] = STATE(5397), + [sym__reserved_identifier] = STATE(3654), [sym_preproc_region] = STATE(3700), [sym_preproc_endregion] = STATE(3700), [sym_preproc_line] = STATE(3700), @@ -520709,52 +520154,34 @@ 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(5020), - [anon_sym_COMMA] = ACTIONS(5020), - [anon_sym_LPAREN] = ACTIONS(5020), - [anon_sym_LT] = ACTIONS(5022), - [anon_sym_GT] = ACTIONS(5022), - [anon_sym_where] = ACTIONS(5020), - [anon_sym_QMARK] = ACTIONS(5022), - [anon_sym_BANG] = ACTIONS(5022), - [anon_sym_PLUS_PLUS] = ACTIONS(5020), - [anon_sym_DASH_DASH] = ACTIONS(5020), - [anon_sym_PLUS] = ACTIONS(5022), - [anon_sym_DASH] = ACTIONS(5022), - [anon_sym_STAR] = ACTIONS(5020), - [anon_sym_SLASH] = ACTIONS(5022), - [anon_sym_PERCENT] = ACTIONS(5020), - [anon_sym_CARET] = ACTIONS(5020), - [anon_sym_PIPE] = ACTIONS(5022), - [anon_sym_AMP] = ACTIONS(5022), - [anon_sym_LT_LT] = ACTIONS(5020), - [anon_sym_GT_GT] = ACTIONS(5022), - [anon_sym_GT_GT_GT] = ACTIONS(5020), - [anon_sym_EQ_EQ] = ACTIONS(5020), - [anon_sym_BANG_EQ] = ACTIONS(5020), - [anon_sym_GT_EQ] = ACTIONS(5020), - [anon_sym_LT_EQ] = ACTIONS(5020), - [anon_sym_DOT] = ACTIONS(5022), - [anon_sym_switch] = ACTIONS(5020), - [anon_sym_DOT_DOT] = ACTIONS(5020), - [anon_sym_and] = ACTIONS(5020), - [anon_sym_or] = ACTIONS(5022), - [anon_sym_AMP_AMP] = ACTIONS(5020), - [anon_sym_PIPE_PIPE] = ACTIONS(5020), - [anon_sym_QMARK_QMARK] = ACTIONS(5020), - [anon_sym_from] = ACTIONS(5020), - [anon_sym_into] = ACTIONS(5020), - [anon_sym_join] = ACTIONS(5020), - [anon_sym_let] = ACTIONS(5020), - [anon_sym_orderby] = ACTIONS(5020), - [anon_sym_ascending] = ACTIONS(5020), - [anon_sym_descending] = ACTIONS(5020), - [anon_sym_group] = ACTIONS(5020), - [anon_sym_select] = ACTIONS(5020), - [anon_sym_as] = ACTIONS(5022), - [anon_sym_is] = ACTIONS(5020), - [anon_sym_DASH_GT] = ACTIONS(5020), - [anon_sym_with] = ACTIONS(5020), + [sym__identifier_token] = ACTIONS(2965), + [anon_sym_alias] = ACTIONS(2969), + [anon_sym_global] = ACTIONS(2969), + [anon_sym_LPAREN] = ACTIONS(2977), + [anon_sym_ref] = ACTIONS(3646), + [anon_sym_delegate] = ACTIONS(3438), + [anon_sym_file] = ACTIONS(2969), + [anon_sym_readonly] = ACTIONS(2891), + [anon_sym_where] = ACTIONS(2969), + [anon_sym_notnull] = ACTIONS(2969), + [anon_sym_unmanaged] = ACTIONS(2969), + [anon_sym_scoped] = ACTIONS(6041), + [anon_sym_var] = ACTIONS(2995), + [sym_predefined_type] = ACTIONS(2997), + [anon_sym_yield] = ACTIONS(2969), + [anon_sym_when] = ACTIONS(2969), + [anon_sym_from] = ACTIONS(2969), + [anon_sym_into] = ACTIONS(2969), + [anon_sym_join] = ACTIONS(2969), + [anon_sym_on] = ACTIONS(2969), + [anon_sym_equals] = ACTIONS(2969), + [anon_sym_let] = ACTIONS(2969), + [anon_sym_orderby] = ACTIONS(2969), + [anon_sym_ascending] = ACTIONS(2969), + [anon_sym_descending] = ACTIONS(2969), + [anon_sym_group] = ACTIONS(2969), + [anon_sym_by] = ACTIONS(2969), + [anon_sym_select] = ACTIONS(2969), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -520767,8 +520194,25 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3701] = { - [sym_argument_list] = STATE(3886), - [sym_bracketed_argument_list] = STATE(2902), + [sym__name] = STATE(4369), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(4068), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(4073), + [sym_type] = STATE(6068), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym__join_header] = STATE(7183), + [sym_identifier] = STATE(5773), + [sym__reserved_identifier] = STATE(3654), [sym_preproc_region] = STATE(3701), [sym_preproc_endregion] = STATE(3701), [sym_preproc_line] = STATE(3701), @@ -520778,50 +520222,33 @@ 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(5658), - [anon_sym_COMMA] = ACTIONS(5745), - [anon_sym_LPAREN] = ACTIONS(5624), - [anon_sym_LT] = ACTIONS(6017), - [anon_sym_GT] = ACTIONS(6017), - [anon_sym_where] = ACTIONS(5745), - [anon_sym_QMARK] = ACTIONS(6019), - [anon_sym_BANG] = ACTIONS(5666), - [anon_sym_PLUS_PLUS] = ACTIONS(5668), - [anon_sym_DASH_DASH] = ACTIONS(5668), - [anon_sym_PLUS] = ACTIONS(6021), - [anon_sym_DASH] = ACTIONS(6021), - [anon_sym_STAR] = ACTIONS(6023), - [anon_sym_SLASH] = ACTIONS(6025), - [anon_sym_PERCENT] = ACTIONS(6023), - [anon_sym_CARET] = ACTIONS(6027), - [anon_sym_PIPE] = ACTIONS(6029), - [anon_sym_AMP] = ACTIONS(6031), - [anon_sym_LT_LT] = ACTIONS(6033), - [anon_sym_GT_GT] = ACTIONS(6035), - [anon_sym_GT_GT_GT] = ACTIONS(6033), - [anon_sym_EQ_EQ] = ACTIONS(6037), - [anon_sym_BANG_EQ] = ACTIONS(6037), - [anon_sym_GT_EQ] = ACTIONS(6039), - [anon_sym_LT_EQ] = ACTIONS(6039), - [anon_sym_DOT] = ACTIONS(4733), - [anon_sym_switch] = ACTIONS(5688), - [anon_sym_DOT_DOT] = ACTIONS(6041), - [anon_sym_AMP_AMP] = ACTIONS(6043), - [anon_sym_PIPE_PIPE] = ACTIONS(6045), - [anon_sym_QMARK_QMARK] = ACTIONS(6047), - [anon_sym_from] = ACTIONS(5745), - [anon_sym_into] = ACTIONS(5745), - [anon_sym_join] = ACTIONS(5745), - [anon_sym_let] = ACTIONS(5745), - [anon_sym_orderby] = ACTIONS(5745), - [anon_sym_ascending] = ACTIONS(5745), - [anon_sym_descending] = ACTIONS(5745), - [anon_sym_group] = ACTIONS(5745), - [anon_sym_select] = ACTIONS(5745), - [anon_sym_as] = ACTIONS(5692), - [anon_sym_is] = ACTIONS(6049), - [anon_sym_DASH_GT] = ACTIONS(4719), - [anon_sym_with] = ACTIONS(5696), + [sym__identifier_token] = ACTIONS(2965), + [anon_sym_alias] = ACTIONS(2969), + [anon_sym_global] = ACTIONS(2969), + [anon_sym_LPAREN] = ACTIONS(2977), + [anon_sym_ref] = ACTIONS(3436), + [anon_sym_delegate] = ACTIONS(3438), + [anon_sym_file] = ACTIONS(2969), + [anon_sym_where] = ACTIONS(2969), + [anon_sym_notnull] = ACTIONS(2969), + [anon_sym_unmanaged] = ACTIONS(2969), + [anon_sym_scoped] = ACTIONS(2993), + [anon_sym_var] = ACTIONS(2995), + [sym_predefined_type] = ACTIONS(2997), + [anon_sym_yield] = ACTIONS(2969), + [anon_sym_when] = ACTIONS(2969), + [anon_sym_from] = ACTIONS(2969), + [anon_sym_into] = ACTIONS(2969), + [anon_sym_join] = ACTIONS(2969), + [anon_sym_on] = ACTIONS(2969), + [anon_sym_equals] = ACTIONS(2969), + [anon_sym_let] = ACTIONS(2969), + [anon_sym_orderby] = ACTIONS(2969), + [anon_sym_ascending] = ACTIONS(2969), + [anon_sym_descending] = ACTIONS(2969), + [anon_sym_group] = ACTIONS(2969), + [anon_sym_by] = ACTIONS(2969), + [anon_sym_select] = ACTIONS(2969), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -520834,6 +520261,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3702] = { + [sym_argument_list] = STATE(3771), + [sym_bracketed_argument_list] = STATE(2892), [sym_preproc_region] = STATE(3702), [sym_preproc_endregion] = STATE(3702), [sym_preproc_line] = STATE(3702), @@ -520843,52 +520272,50 @@ 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), - [anon_sym_LBRACK] = ACTIONS(5072), - [anon_sym_COMMA] = ACTIONS(5072), - [anon_sym_LPAREN] = ACTIONS(5072), - [anon_sym_LT] = ACTIONS(5074), - [anon_sym_GT] = ACTIONS(5074), - [anon_sym_where] = ACTIONS(5072), - [anon_sym_QMARK] = ACTIONS(5074), - [anon_sym_BANG] = ACTIONS(5074), - [anon_sym_PLUS_PLUS] = ACTIONS(5072), - [anon_sym_DASH_DASH] = ACTIONS(5072), - [anon_sym_PLUS] = ACTIONS(5074), - [anon_sym_DASH] = ACTIONS(5074), - [anon_sym_STAR] = ACTIONS(5072), - [anon_sym_SLASH] = ACTIONS(5074), - [anon_sym_PERCENT] = ACTIONS(5072), - [anon_sym_CARET] = ACTIONS(5072), - [anon_sym_PIPE] = ACTIONS(5074), - [anon_sym_AMP] = ACTIONS(5074), - [anon_sym_LT_LT] = ACTIONS(5072), - [anon_sym_GT_GT] = ACTIONS(5074), - [anon_sym_GT_GT_GT] = ACTIONS(5072), - [anon_sym_EQ_EQ] = ACTIONS(5072), - [anon_sym_BANG_EQ] = ACTIONS(5072), - [anon_sym_GT_EQ] = ACTIONS(5072), - [anon_sym_LT_EQ] = ACTIONS(5072), - [anon_sym_DOT] = ACTIONS(5074), - [anon_sym_switch] = ACTIONS(5072), - [anon_sym_DOT_DOT] = ACTIONS(5072), - [anon_sym_and] = ACTIONS(5072), - [anon_sym_or] = ACTIONS(5074), - [anon_sym_AMP_AMP] = ACTIONS(5072), - [anon_sym_PIPE_PIPE] = ACTIONS(5072), - [anon_sym_QMARK_QMARK] = ACTIONS(5072), - [anon_sym_from] = ACTIONS(5072), - [anon_sym_into] = ACTIONS(5072), - [anon_sym_join] = ACTIONS(5072), - [anon_sym_let] = ACTIONS(5072), - [anon_sym_orderby] = ACTIONS(5072), - [anon_sym_ascending] = ACTIONS(5072), - [anon_sym_descending] = ACTIONS(5072), - [anon_sym_group] = ACTIONS(5072), - [anon_sym_select] = ACTIONS(5072), - [anon_sym_as] = ACTIONS(5074), - [anon_sym_is] = ACTIONS(5072), - [anon_sym_DASH_GT] = ACTIONS(5072), - [anon_sym_with] = ACTIONS(5072), + [anon_sym_LBRACK] = ACTIONS(5650), + [anon_sym_COMMA] = ACTIONS(4996), + [anon_sym_LPAREN] = ACTIONS(5591), + [anon_sym_LT] = ACTIONS(6043), + [anon_sym_GT] = ACTIONS(6043), + [anon_sym_where] = ACTIONS(4996), + [anon_sym_QMARK] = ACTIONS(6045), + [anon_sym_BANG] = ACTIONS(5658), + [anon_sym_PLUS_PLUS] = ACTIONS(5660), + [anon_sym_DASH_DASH] = ACTIONS(5660), + [anon_sym_PLUS] = ACTIONS(6047), + [anon_sym_DASH] = ACTIONS(6047), + [anon_sym_STAR] = ACTIONS(6049), + [anon_sym_SLASH] = ACTIONS(6051), + [anon_sym_PERCENT] = ACTIONS(6049), + [anon_sym_CARET] = ACTIONS(6053), + [anon_sym_PIPE] = ACTIONS(6055), + [anon_sym_AMP] = ACTIONS(6057), + [anon_sym_LT_LT] = ACTIONS(6059), + [anon_sym_GT_GT] = ACTIONS(6061), + [anon_sym_GT_GT_GT] = ACTIONS(6059), + [anon_sym_EQ_EQ] = ACTIONS(6063), + [anon_sym_BANG_EQ] = ACTIONS(6063), + [anon_sym_GT_EQ] = ACTIONS(6065), + [anon_sym_LT_EQ] = ACTIONS(6065), + [anon_sym_DOT] = ACTIONS(4697), + [anon_sym_switch] = ACTIONS(5682), + [anon_sym_DOT_DOT] = ACTIONS(6067), + [anon_sym_AMP_AMP] = ACTIONS(6069), + [anon_sym_PIPE_PIPE] = ACTIONS(6071), + [anon_sym_QMARK_QMARK] = ACTIONS(6073), + [anon_sym_from] = ACTIONS(4996), + [anon_sym_into] = ACTIONS(4996), + [anon_sym_join] = ACTIONS(4996), + [anon_sym_let] = ACTIONS(4996), + [anon_sym_orderby] = ACTIONS(4996), + [anon_sym_ascending] = ACTIONS(4996), + [anon_sym_descending] = ACTIONS(4996), + [anon_sym_group] = ACTIONS(4996), + [anon_sym_select] = ACTIONS(4996), + [anon_sym_as] = ACTIONS(5694), + [anon_sym_is] = ACTIONS(6075), + [anon_sym_DASH_GT] = ACTIONS(4699), + [anon_sym_with] = ACTIONS(5698), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -520901,6 +520328,25 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3703] = { + [sym_variable_declaration] = STATE(7429), + [sym__name] = STATE(4369), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(4068), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(4073), + [sym_type] = STATE(5901), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_identifier] = STATE(4081), + [sym__reserved_identifier] = STATE(3654), [sym_preproc_region] = STATE(3703), [sym_preproc_endregion] = STATE(3703), [sym_preproc_line] = STATE(3703), @@ -520910,52 +520356,33 @@ 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_LBRACK] = ACTIONS(5046), - [anon_sym_COMMA] = ACTIONS(5046), - [anon_sym_LPAREN] = ACTIONS(5046), - [anon_sym_LT] = ACTIONS(5048), - [anon_sym_GT] = ACTIONS(5048), - [anon_sym_where] = ACTIONS(5046), - [anon_sym_QMARK] = ACTIONS(5048), - [anon_sym_BANG] = ACTIONS(5048), - [anon_sym_PLUS_PLUS] = ACTIONS(5046), - [anon_sym_DASH_DASH] = ACTIONS(5046), - [anon_sym_PLUS] = ACTIONS(5048), - [anon_sym_DASH] = ACTIONS(5048), - [anon_sym_STAR] = ACTIONS(5046), - [anon_sym_SLASH] = ACTIONS(5048), - [anon_sym_PERCENT] = ACTIONS(5046), - [anon_sym_CARET] = ACTIONS(5046), - [anon_sym_PIPE] = ACTIONS(5048), - [anon_sym_AMP] = ACTIONS(5048), - [anon_sym_LT_LT] = ACTIONS(5046), - [anon_sym_GT_GT] = ACTIONS(5048), - [anon_sym_GT_GT_GT] = ACTIONS(5046), - [anon_sym_EQ_EQ] = ACTIONS(5046), - [anon_sym_BANG_EQ] = ACTIONS(5046), - [anon_sym_GT_EQ] = ACTIONS(5046), - [anon_sym_LT_EQ] = ACTIONS(5046), - [anon_sym_DOT] = ACTIONS(5048), - [anon_sym_switch] = ACTIONS(5046), - [anon_sym_DOT_DOT] = ACTIONS(5046), - [anon_sym_and] = ACTIONS(5046), - [anon_sym_or] = ACTIONS(5048), - [anon_sym_AMP_AMP] = ACTIONS(5046), - [anon_sym_PIPE_PIPE] = ACTIONS(5046), - [anon_sym_QMARK_QMARK] = ACTIONS(5046), - [anon_sym_from] = ACTIONS(5046), - [anon_sym_into] = ACTIONS(5046), - [anon_sym_join] = ACTIONS(5046), - [anon_sym_let] = ACTIONS(5046), - [anon_sym_orderby] = ACTIONS(5046), - [anon_sym_ascending] = ACTIONS(5046), - [anon_sym_descending] = ACTIONS(5046), - [anon_sym_group] = ACTIONS(5046), - [anon_sym_select] = ACTIONS(5046), - [anon_sym_as] = ACTIONS(5048), - [anon_sym_is] = ACTIONS(5046), - [anon_sym_DASH_GT] = ACTIONS(5046), - [anon_sym_with] = ACTIONS(5046), + [sym__identifier_token] = ACTIONS(2965), + [anon_sym_alias] = ACTIONS(2969), + [anon_sym_global] = ACTIONS(2969), + [anon_sym_LPAREN] = ACTIONS(2977), + [anon_sym_ref] = ACTIONS(3436), + [anon_sym_delegate] = ACTIONS(3438), + [anon_sym_file] = ACTIONS(2969), + [anon_sym_where] = ACTIONS(2969), + [anon_sym_notnull] = ACTIONS(2969), + [anon_sym_unmanaged] = ACTIONS(2969), + [anon_sym_scoped] = ACTIONS(2993), + [anon_sym_var] = ACTIONS(2995), + [sym_predefined_type] = ACTIONS(2997), + [anon_sym_yield] = ACTIONS(2969), + [anon_sym_when] = ACTIONS(2969), + [anon_sym_from] = ACTIONS(2969), + [anon_sym_into] = ACTIONS(2969), + [anon_sym_join] = ACTIONS(2969), + [anon_sym_on] = ACTIONS(2969), + [anon_sym_equals] = ACTIONS(2969), + [anon_sym_let] = ACTIONS(2969), + [anon_sym_orderby] = ACTIONS(2969), + [anon_sym_ascending] = ACTIONS(2969), + [anon_sym_descending] = ACTIONS(2969), + [anon_sym_group] = ACTIONS(2969), + [anon_sym_by] = ACTIONS(2969), + [anon_sym_select] = ACTIONS(2969), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -520977,52 +520404,52 @@ 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(5058), - [anon_sym_COMMA] = ACTIONS(5058), - [anon_sym_LPAREN] = ACTIONS(5058), - [anon_sym_LT] = ACTIONS(5060), - [anon_sym_GT] = ACTIONS(5060), - [anon_sym_where] = ACTIONS(5058), - [anon_sym_QMARK] = ACTIONS(5060), - [anon_sym_BANG] = ACTIONS(5060), - [anon_sym_PLUS_PLUS] = ACTIONS(5058), - [anon_sym_DASH_DASH] = ACTIONS(5058), - [anon_sym_PLUS] = ACTIONS(5060), - [anon_sym_DASH] = ACTIONS(5060), - [anon_sym_STAR] = ACTIONS(5058), - [anon_sym_SLASH] = ACTIONS(5060), - [anon_sym_PERCENT] = ACTIONS(5058), - [anon_sym_CARET] = ACTIONS(5058), - [anon_sym_PIPE] = ACTIONS(5060), - [anon_sym_AMP] = ACTIONS(5060), - [anon_sym_LT_LT] = ACTIONS(5058), - [anon_sym_GT_GT] = ACTIONS(5060), - [anon_sym_GT_GT_GT] = ACTIONS(5058), - [anon_sym_EQ_EQ] = ACTIONS(5058), - [anon_sym_BANG_EQ] = ACTIONS(5058), - [anon_sym_GT_EQ] = ACTIONS(5058), - [anon_sym_LT_EQ] = ACTIONS(5058), - [anon_sym_DOT] = ACTIONS(5060), - [anon_sym_switch] = ACTIONS(5058), - [anon_sym_DOT_DOT] = ACTIONS(5058), - [anon_sym_and] = ACTIONS(5058), - [anon_sym_or] = ACTIONS(5060), - [anon_sym_AMP_AMP] = ACTIONS(5058), - [anon_sym_PIPE_PIPE] = ACTIONS(5058), - [anon_sym_QMARK_QMARK] = ACTIONS(5058), - [anon_sym_from] = ACTIONS(5058), - [anon_sym_into] = ACTIONS(5058), - [anon_sym_join] = ACTIONS(5058), - [anon_sym_let] = ACTIONS(5058), - [anon_sym_orderby] = ACTIONS(5058), - [anon_sym_ascending] = ACTIONS(5058), - [anon_sym_descending] = ACTIONS(5058), - [anon_sym_group] = ACTIONS(5058), - [anon_sym_select] = ACTIONS(5058), - [anon_sym_as] = ACTIONS(5060), - [anon_sym_is] = ACTIONS(5058), - [anon_sym_DASH_GT] = ACTIONS(5058), - [anon_sym_with] = ACTIONS(5058), + [anon_sym_LBRACK] = ACTIONS(5346), + [anon_sym_COMMA] = ACTIONS(5346), + [anon_sym_LPAREN] = ACTIONS(5346), + [anon_sym_LT] = ACTIONS(5348), + [anon_sym_GT] = ACTIONS(5348), + [anon_sym_where] = ACTIONS(5346), + [anon_sym_QMARK] = ACTIONS(5348), + [anon_sym_BANG] = ACTIONS(5348), + [anon_sym_PLUS_PLUS] = ACTIONS(5346), + [anon_sym_DASH_DASH] = ACTIONS(5346), + [anon_sym_PLUS] = ACTIONS(5348), + [anon_sym_DASH] = ACTIONS(5348), + [anon_sym_STAR] = ACTIONS(5346), + [anon_sym_SLASH] = ACTIONS(5348), + [anon_sym_PERCENT] = ACTIONS(5346), + [anon_sym_CARET] = ACTIONS(5346), + [anon_sym_PIPE] = ACTIONS(5348), + [anon_sym_AMP] = ACTIONS(5348), + [anon_sym_LT_LT] = ACTIONS(5346), + [anon_sym_GT_GT] = ACTIONS(5348), + [anon_sym_GT_GT_GT] = ACTIONS(5346), + [anon_sym_EQ_EQ] = ACTIONS(5346), + [anon_sym_BANG_EQ] = ACTIONS(5346), + [anon_sym_GT_EQ] = ACTIONS(5346), + [anon_sym_LT_EQ] = ACTIONS(5346), + [anon_sym_DOT] = ACTIONS(5348), + [anon_sym_switch] = ACTIONS(5346), + [anon_sym_DOT_DOT] = ACTIONS(5346), + [anon_sym_and] = ACTIONS(5346), + [anon_sym_or] = ACTIONS(5348), + [anon_sym_AMP_AMP] = ACTIONS(5346), + [anon_sym_PIPE_PIPE] = ACTIONS(5346), + [anon_sym_QMARK_QMARK] = ACTIONS(5346), + [anon_sym_from] = ACTIONS(5346), + [anon_sym_into] = ACTIONS(5346), + [anon_sym_join] = ACTIONS(5346), + [anon_sym_let] = ACTIONS(5346), + [anon_sym_orderby] = ACTIONS(5346), + [anon_sym_ascending] = ACTIONS(5346), + [anon_sym_descending] = ACTIONS(5346), + [anon_sym_group] = ACTIONS(5346), + [anon_sym_select] = ACTIONS(5346), + [anon_sym_as] = ACTIONS(5348), + [anon_sym_is] = ACTIONS(5346), + [anon_sym_DASH_GT] = ACTIONS(5346), + [anon_sym_with] = ACTIONS(5346), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -521035,6 +520462,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3705] = { + [sym__name] = STATE(4451), + [sym_alias_qualified_name] = STATE(4462), + [sym__simple_name] = STATE(4462), + [sym_qualified_name] = STATE(4462), + [sym_generic_name] = STATE(4410), + [sym_type] = STATE(4437), + [sym_implicit_type] = STATE(4385), + [sym_array_type] = STATE(4477), + [sym__array_base_type] = STATE(7056), + [sym_nullable_type] = STATE(4481), + [sym_pointer_type] = STATE(4481), + [sym__pointer_base_type] = STATE(7551), + [sym_function_pointer_type] = STATE(4481), + [sym_ref_type] = STATE(4385), + [sym_scoped_type] = STATE(4385), + [sym_tuple_type] = STATE(4484), + [sym_identifier] = STATE(4194), + [sym__reserved_identifier] = STATE(4314), [sym_preproc_region] = STATE(3705), [sym_preproc_endregion] = STATE(3705), [sym_preproc_line] = STATE(3705), @@ -521044,52 +520489,34 @@ 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), - [anon_sym_LBRACK] = ACTIONS(5076), - [anon_sym_COMMA] = ACTIONS(5076), - [anon_sym_LPAREN] = ACTIONS(5076), - [anon_sym_LT] = ACTIONS(5078), - [anon_sym_GT] = ACTIONS(5078), - [anon_sym_where] = ACTIONS(5076), - [anon_sym_QMARK] = ACTIONS(5078), - [anon_sym_BANG] = ACTIONS(5078), - [anon_sym_PLUS_PLUS] = ACTIONS(5076), - [anon_sym_DASH_DASH] = ACTIONS(5076), - [anon_sym_PLUS] = ACTIONS(5078), - [anon_sym_DASH] = ACTIONS(5078), - [anon_sym_STAR] = ACTIONS(5076), - [anon_sym_SLASH] = ACTIONS(5078), - [anon_sym_PERCENT] = ACTIONS(5076), - [anon_sym_CARET] = ACTIONS(5076), - [anon_sym_PIPE] = ACTIONS(5078), - [anon_sym_AMP] = ACTIONS(5078), - [anon_sym_LT_LT] = ACTIONS(5076), - [anon_sym_GT_GT] = ACTIONS(5078), - [anon_sym_GT_GT_GT] = ACTIONS(5076), - [anon_sym_EQ_EQ] = ACTIONS(5076), - [anon_sym_BANG_EQ] = ACTIONS(5076), - [anon_sym_GT_EQ] = ACTIONS(5076), - [anon_sym_LT_EQ] = ACTIONS(5076), - [anon_sym_DOT] = ACTIONS(5078), - [anon_sym_switch] = ACTIONS(5076), - [anon_sym_DOT_DOT] = ACTIONS(5076), - [anon_sym_and] = ACTIONS(5076), - [anon_sym_or] = ACTIONS(5078), - [anon_sym_AMP_AMP] = ACTIONS(5076), - [anon_sym_PIPE_PIPE] = ACTIONS(5076), - [anon_sym_QMARK_QMARK] = ACTIONS(5076), - [anon_sym_from] = ACTIONS(5076), - [anon_sym_into] = ACTIONS(5076), - [anon_sym_join] = ACTIONS(5076), - [anon_sym_let] = ACTIONS(5076), - [anon_sym_orderby] = ACTIONS(5076), - [anon_sym_ascending] = ACTIONS(5076), - [anon_sym_descending] = ACTIONS(5076), - [anon_sym_group] = ACTIONS(5076), - [anon_sym_select] = ACTIONS(5076), - [anon_sym_as] = ACTIONS(5078), - [anon_sym_is] = ACTIONS(5076), - [anon_sym_DASH_GT] = ACTIONS(5076), - [anon_sym_with] = ACTIONS(5076), + [sym__identifier_token] = ACTIONS(3965), + [anon_sym_alias] = ACTIONS(3967), + [anon_sym_global] = ACTIONS(3967), + [anon_sym_LPAREN] = ACTIONS(6077), + [anon_sym_ref] = ACTIONS(3974), + [anon_sym_delegate] = ACTIONS(5751), + [anon_sym_file] = ACTIONS(3967), + [anon_sym_readonly] = ACTIONS(6079), + [anon_sym_where] = ACTIONS(3967), + [anon_sym_notnull] = ACTIONS(3967), + [anon_sym_unmanaged] = ACTIONS(3967), + [anon_sym_scoped] = ACTIONS(5753), + [anon_sym_var] = ACTIONS(5755), + [sym_predefined_type] = ACTIONS(5757), + [anon_sym_yield] = ACTIONS(3967), + [anon_sym_when] = ACTIONS(3967), + [anon_sym_from] = ACTIONS(3967), + [anon_sym_into] = ACTIONS(3967), + [anon_sym_join] = ACTIONS(3967), + [anon_sym_on] = ACTIONS(3967), + [anon_sym_equals] = ACTIONS(3967), + [anon_sym_let] = ACTIONS(3967), + [anon_sym_orderby] = ACTIONS(3967), + [anon_sym_ascending] = ACTIONS(3967), + [anon_sym_descending] = ACTIONS(3967), + [anon_sym_group] = ACTIONS(3967), + [anon_sym_by] = ACTIONS(3967), + [anon_sym_select] = ACTIONS(3967), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -521102,6 +520529,25 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3706] = { + [sym__name] = STATE(4369), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(4068), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(4073), + [sym_type] = STATE(5960), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_tuple_element] = STATE(7266), + [sym_identifier] = STATE(4081), + [sym__reserved_identifier] = STATE(3654), [sym_preproc_region] = STATE(3706), [sym_preproc_endregion] = STATE(3706), [sym_preproc_line] = STATE(3706), @@ -521111,52 +520557,33 @@ 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_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), + [sym__identifier_token] = ACTIONS(2965), + [anon_sym_alias] = ACTIONS(2969), + [anon_sym_global] = ACTIONS(2969), + [anon_sym_LPAREN] = ACTIONS(2977), + [anon_sym_ref] = ACTIONS(3590), + [anon_sym_delegate] = ACTIONS(3438), + [anon_sym_file] = ACTIONS(2969), + [anon_sym_where] = ACTIONS(2969), + [anon_sym_notnull] = ACTIONS(2969), + [anon_sym_unmanaged] = ACTIONS(2969), + [anon_sym_scoped] = ACTIONS(5843), + [anon_sym_var] = ACTIONS(4705), + [sym_predefined_type] = ACTIONS(2997), + [anon_sym_yield] = ACTIONS(2969), + [anon_sym_when] = ACTIONS(2969), + [anon_sym_from] = ACTIONS(2969), + [anon_sym_into] = ACTIONS(2969), + [anon_sym_join] = ACTIONS(2969), + [anon_sym_on] = ACTIONS(2969), + [anon_sym_equals] = ACTIONS(2969), + [anon_sym_let] = ACTIONS(2969), + [anon_sym_orderby] = ACTIONS(2969), + [anon_sym_ascending] = ACTIONS(2969), + [anon_sym_descending] = ACTIONS(2969), + [anon_sym_group] = ACTIONS(2969), + [anon_sym_by] = ACTIONS(2969), + [anon_sym_select] = ACTIONS(2969), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -521178,52 +520605,52 @@ 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(5050), - [anon_sym_COMMA] = ACTIONS(5050), - [anon_sym_LPAREN] = ACTIONS(5050), - [anon_sym_LT] = ACTIONS(5052), - [anon_sym_GT] = ACTIONS(5052), - [anon_sym_where] = ACTIONS(5050), - [anon_sym_QMARK] = ACTIONS(5052), - [anon_sym_BANG] = ACTIONS(5052), - [anon_sym_PLUS_PLUS] = ACTIONS(5050), - [anon_sym_DASH_DASH] = ACTIONS(5050), - [anon_sym_PLUS] = ACTIONS(5052), - [anon_sym_DASH] = ACTIONS(5052), - [anon_sym_STAR] = ACTIONS(5050), - [anon_sym_SLASH] = ACTIONS(5052), - [anon_sym_PERCENT] = ACTIONS(5050), - [anon_sym_CARET] = ACTIONS(5050), - [anon_sym_PIPE] = ACTIONS(5052), - [anon_sym_AMP] = ACTIONS(5052), - [anon_sym_LT_LT] = ACTIONS(5050), - [anon_sym_GT_GT] = ACTIONS(5052), - [anon_sym_GT_GT_GT] = ACTIONS(5050), - [anon_sym_EQ_EQ] = ACTIONS(5050), - [anon_sym_BANG_EQ] = ACTIONS(5050), - [anon_sym_GT_EQ] = ACTIONS(5050), - [anon_sym_LT_EQ] = ACTIONS(5050), - [anon_sym_DOT] = ACTIONS(5052), - [anon_sym_switch] = ACTIONS(5050), - [anon_sym_DOT_DOT] = ACTIONS(5050), - [anon_sym_and] = ACTIONS(5050), - [anon_sym_or] = ACTIONS(5052), - [anon_sym_AMP_AMP] = ACTIONS(5050), - [anon_sym_PIPE_PIPE] = ACTIONS(5050), - [anon_sym_QMARK_QMARK] = ACTIONS(5050), - [anon_sym_from] = ACTIONS(5050), - [anon_sym_into] = ACTIONS(5050), - [anon_sym_join] = ACTIONS(5050), - [anon_sym_let] = ACTIONS(5050), - [anon_sym_orderby] = ACTIONS(5050), - [anon_sym_ascending] = ACTIONS(5050), - [anon_sym_descending] = ACTIONS(5050), - [anon_sym_group] = ACTIONS(5050), - [anon_sym_select] = ACTIONS(5050), - [anon_sym_as] = ACTIONS(5052), - [anon_sym_is] = ACTIONS(5050), - [anon_sym_DASH_GT] = ACTIONS(5050), - [anon_sym_with] = ACTIONS(5050), + [anon_sym_LBRACK] = ACTIONS(5350), + [anon_sym_COMMA] = ACTIONS(5350), + [anon_sym_LPAREN] = ACTIONS(5350), + [anon_sym_LT] = ACTIONS(5352), + [anon_sym_GT] = ACTIONS(5352), + [anon_sym_where] = ACTIONS(5350), + [anon_sym_QMARK] = ACTIONS(5352), + [anon_sym_BANG] = ACTIONS(5352), + [anon_sym_PLUS_PLUS] = ACTIONS(5350), + [anon_sym_DASH_DASH] = ACTIONS(5350), + [anon_sym_PLUS] = ACTIONS(5352), + [anon_sym_DASH] = ACTIONS(5352), + [anon_sym_STAR] = ACTIONS(5350), + [anon_sym_SLASH] = ACTIONS(5352), + [anon_sym_PERCENT] = ACTIONS(5350), + [anon_sym_CARET] = ACTIONS(5350), + [anon_sym_PIPE] = ACTIONS(5352), + [anon_sym_AMP] = ACTIONS(5352), + [anon_sym_LT_LT] = ACTIONS(5350), + [anon_sym_GT_GT] = ACTIONS(5352), + [anon_sym_GT_GT_GT] = ACTIONS(5350), + [anon_sym_EQ_EQ] = ACTIONS(5350), + [anon_sym_BANG_EQ] = ACTIONS(5350), + [anon_sym_GT_EQ] = ACTIONS(5350), + [anon_sym_LT_EQ] = ACTIONS(5350), + [anon_sym_DOT] = ACTIONS(5352), + [anon_sym_switch] = ACTIONS(5350), + [anon_sym_DOT_DOT] = ACTIONS(5350), + [anon_sym_and] = ACTIONS(5350), + [anon_sym_or] = ACTIONS(5352), + [anon_sym_AMP_AMP] = ACTIONS(5350), + [anon_sym_PIPE_PIPE] = ACTIONS(5350), + [anon_sym_QMARK_QMARK] = ACTIONS(5350), + [anon_sym_from] = ACTIONS(5350), + [anon_sym_into] = ACTIONS(5350), + [anon_sym_join] = ACTIONS(5350), + [anon_sym_let] = ACTIONS(5350), + [anon_sym_orderby] = ACTIONS(5350), + [anon_sym_ascending] = ACTIONS(5350), + [anon_sym_descending] = ACTIONS(5350), + [anon_sym_group] = ACTIONS(5350), + [anon_sym_select] = ACTIONS(5350), + [anon_sym_as] = ACTIONS(5352), + [anon_sym_is] = ACTIONS(5350), + [anon_sym_DASH_GT] = ACTIONS(5350), + [anon_sym_with] = ACTIONS(5350), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -521245,52 +520672,52 @@ 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(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_LBRACK] = ACTIONS(5080), + [anon_sym_COMMA] = ACTIONS(5080), + [anon_sym_LPAREN] = ACTIONS(5080), + [anon_sym_LT] = ACTIONS(5082), + [anon_sym_GT] = ACTIONS(5082), + [anon_sym_where] = ACTIONS(5080), + [anon_sym_QMARK] = ACTIONS(5082), + [anon_sym_BANG] = ACTIONS(5082), + [anon_sym_PLUS_PLUS] = ACTIONS(5080), + [anon_sym_DASH_DASH] = ACTIONS(5080), + [anon_sym_PLUS] = ACTIONS(5082), + [anon_sym_DASH] = ACTIONS(5082), + [anon_sym_STAR] = ACTIONS(5080), + [anon_sym_SLASH] = ACTIONS(5082), + [anon_sym_PERCENT] = ACTIONS(5080), + [anon_sym_CARET] = ACTIONS(5080), + [anon_sym_PIPE] = ACTIONS(5082), + [anon_sym_AMP] = ACTIONS(5082), + [anon_sym_LT_LT] = ACTIONS(5080), + [anon_sym_GT_GT] = ACTIONS(5082), + [anon_sym_GT_GT_GT] = ACTIONS(5080), + [anon_sym_EQ_EQ] = ACTIONS(5080), + [anon_sym_BANG_EQ] = ACTIONS(5080), + [anon_sym_GT_EQ] = ACTIONS(5080), + [anon_sym_LT_EQ] = ACTIONS(5080), + [anon_sym_DOT] = ACTIONS(5082), + [anon_sym_switch] = ACTIONS(5080), + [anon_sym_DOT_DOT] = ACTIONS(5080), + [anon_sym_and] = ACTIONS(5080), + [anon_sym_or] = ACTIONS(5082), + [anon_sym_AMP_AMP] = ACTIONS(5080), + [anon_sym_PIPE_PIPE] = ACTIONS(5080), + [anon_sym_QMARK_QMARK] = ACTIONS(5080), + [anon_sym_from] = ACTIONS(5080), + [anon_sym_into] = ACTIONS(5080), + [anon_sym_join] = ACTIONS(5080), + [anon_sym_let] = ACTIONS(5080), + [anon_sym_orderby] = ACTIONS(5080), + [anon_sym_ascending] = ACTIONS(5080), + [anon_sym_descending] = ACTIONS(5080), + [anon_sym_group] = ACTIONS(5080), + [anon_sym_select] = ACTIONS(5080), + [anon_sym_as] = ACTIONS(5082), + [anon_sym_is] = ACTIONS(5080), + [anon_sym_DASH_GT] = ACTIONS(5080), + [anon_sym_with] = ACTIONS(5080), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -521312,52 +520739,52 @@ 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), - [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(5354), + [anon_sym_COMMA] = ACTIONS(5354), + [anon_sym_LPAREN] = ACTIONS(5354), + [anon_sym_LT] = ACTIONS(5356), + [anon_sym_GT] = ACTIONS(5356), + [anon_sym_where] = ACTIONS(5354), + [anon_sym_QMARK] = ACTIONS(5356), + [anon_sym_BANG] = ACTIONS(5356), + [anon_sym_PLUS_PLUS] = ACTIONS(5354), + [anon_sym_DASH_DASH] = ACTIONS(5354), + [anon_sym_PLUS] = ACTIONS(5356), + [anon_sym_DASH] = ACTIONS(5356), + [anon_sym_STAR] = ACTIONS(5354), + [anon_sym_SLASH] = ACTIONS(5356), + [anon_sym_PERCENT] = ACTIONS(5354), + [anon_sym_CARET] = ACTIONS(5354), + [anon_sym_PIPE] = ACTIONS(5356), + [anon_sym_AMP] = ACTIONS(5356), + [anon_sym_LT_LT] = ACTIONS(5354), + [anon_sym_GT_GT] = ACTIONS(5356), + [anon_sym_GT_GT_GT] = ACTIONS(5354), + [anon_sym_EQ_EQ] = ACTIONS(5354), + [anon_sym_BANG_EQ] = ACTIONS(5354), + [anon_sym_GT_EQ] = ACTIONS(5354), + [anon_sym_LT_EQ] = ACTIONS(5354), + [anon_sym_DOT] = ACTIONS(5356), + [anon_sym_switch] = ACTIONS(5354), + [anon_sym_DOT_DOT] = ACTIONS(5354), + [anon_sym_and] = ACTIONS(5354), + [anon_sym_or] = ACTIONS(5356), + [anon_sym_AMP_AMP] = ACTIONS(5354), + [anon_sym_PIPE_PIPE] = ACTIONS(5354), + [anon_sym_QMARK_QMARK] = ACTIONS(5354), + [anon_sym_from] = ACTIONS(5354), + [anon_sym_into] = ACTIONS(5354), + [anon_sym_join] = ACTIONS(5354), + [anon_sym_let] = ACTIONS(5354), + [anon_sym_orderby] = ACTIONS(5354), + [anon_sym_ascending] = ACTIONS(5354), + [anon_sym_descending] = ACTIONS(5354), + [anon_sym_group] = ACTIONS(5354), + [anon_sym_select] = ACTIONS(5354), + [anon_sym_as] = ACTIONS(5356), + [anon_sym_is] = ACTIONS(5354), + [anon_sym_DASH_GT] = ACTIONS(5354), + [anon_sym_with] = ACTIONS(5354), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -521379,52 +520806,52 @@ 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(4937), - [anon_sym_COMMA] = ACTIONS(4937), - [anon_sym_LPAREN] = 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(3466), + [anon_sym_extern] = ACTIONS(3466), + [anon_sym_alias] = ACTIONS(3466), + [anon_sym_global] = ACTIONS(3466), + [anon_sym_unsafe] = ACTIONS(3466), + [anon_sym_static] = ACTIONS(3466), + [anon_sym_LPAREN] = ACTIONS(5428), + [anon_sym_ref] = ACTIONS(3466), + [anon_sym_delegate] = ACTIONS(3466), + [anon_sym_abstract] = ACTIONS(3466), + [anon_sym_async] = ACTIONS(3466), + [anon_sym_const] = ACTIONS(3466), + [anon_sym_file] = ACTIONS(3466), + [anon_sym_fixed] = ACTIONS(3466), + [anon_sym_internal] = ACTIONS(3466), + [anon_sym_new] = ACTIONS(3466), + [anon_sym_override] = ACTIONS(3466), + [anon_sym_partial] = ACTIONS(3466), + [anon_sym_private] = ACTIONS(3466), + [anon_sym_protected] = ACTIONS(3466), + [anon_sym_public] = ACTIONS(3466), + [anon_sym_readonly] = ACTIONS(3466), + [anon_sym_required] = ACTIONS(3466), + [anon_sym_sealed] = ACTIONS(3466), + [anon_sym_virtual] = ACTIONS(3466), + [anon_sym_volatile] = ACTIONS(3466), + [anon_sym_where] = ACTIONS(3466), + [anon_sym_notnull] = ACTIONS(3466), + [anon_sym_unmanaged] = ACTIONS(3466), + [anon_sym_scoped] = ACTIONS(3466), + [anon_sym_var] = ACTIONS(3466), + [sym_predefined_type] = ACTIONS(3466), + [anon_sym_yield] = ACTIONS(3466), + [anon_sym_when] = ACTIONS(3466), + [anon_sym_from] = ACTIONS(3466), + [anon_sym_into] = ACTIONS(3466), + [anon_sym_join] = ACTIONS(3466), + [anon_sym_on] = ACTIONS(3466), + [anon_sym_equals] = ACTIONS(3466), + [anon_sym_let] = ACTIONS(3466), + [anon_sym_orderby] = ACTIONS(3466), + [anon_sym_ascending] = ACTIONS(3466), + [anon_sym_descending] = ACTIONS(3466), + [anon_sym_group] = ACTIONS(3466), + [anon_sym_by] = ACTIONS(3466), + [anon_sym_select] = ACTIONS(3466), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -521437,6 +520864,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3711] = { + [sym_argument_list] = STATE(3771), + [sym_bracketed_argument_list] = STATE(2892), [sym_preproc_region] = STATE(3711), [sym_preproc_endregion] = STATE(3711), [sym_preproc_line] = STATE(3711), @@ -521446,52 +520875,50 @@ 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_LBRACK] = ACTIONS(4941), - [anon_sym_COMMA] = ACTIONS(4941), - [anon_sym_LPAREN] = ACTIONS(4941), - [anon_sym_LT] = ACTIONS(4943), - [anon_sym_GT] = ACTIONS(4943), - [anon_sym_where] = ACTIONS(4941), - [anon_sym_QMARK] = ACTIONS(4943), - [anon_sym_BANG] = ACTIONS(4943), - [anon_sym_PLUS_PLUS] = ACTIONS(4941), - [anon_sym_DASH_DASH] = ACTIONS(4941), - [anon_sym_PLUS] = ACTIONS(4943), - [anon_sym_DASH] = ACTIONS(4943), - [anon_sym_STAR] = ACTIONS(4941), - [anon_sym_SLASH] = ACTIONS(4943), - [anon_sym_PERCENT] = ACTIONS(4941), - [anon_sym_CARET] = ACTIONS(4941), - [anon_sym_PIPE] = ACTIONS(4943), - [anon_sym_AMP] = ACTIONS(4943), - [anon_sym_LT_LT] = ACTIONS(4941), - [anon_sym_GT_GT] = ACTIONS(4943), - [anon_sym_GT_GT_GT] = ACTIONS(4941), - [anon_sym_EQ_EQ] = ACTIONS(4941), - [anon_sym_BANG_EQ] = ACTIONS(4941), - [anon_sym_GT_EQ] = ACTIONS(4941), - [anon_sym_LT_EQ] = ACTIONS(4941), - [anon_sym_DOT] = ACTIONS(4943), - [anon_sym_switch] = ACTIONS(4941), - [anon_sym_DOT_DOT] = ACTIONS(4941), - [anon_sym_and] = ACTIONS(4941), - [anon_sym_or] = ACTIONS(4943), - [anon_sym_AMP_AMP] = ACTIONS(4941), - [anon_sym_PIPE_PIPE] = ACTIONS(4941), - [anon_sym_QMARK_QMARK] = ACTIONS(4941), - [anon_sym_from] = ACTIONS(4941), - [anon_sym_into] = ACTIONS(4941), - [anon_sym_join] = ACTIONS(4941), - [anon_sym_let] = ACTIONS(4941), - [anon_sym_orderby] = ACTIONS(4941), - [anon_sym_ascending] = ACTIONS(4941), - [anon_sym_descending] = ACTIONS(4941), - [anon_sym_group] = ACTIONS(4941), - [anon_sym_select] = ACTIONS(4941), - [anon_sym_as] = ACTIONS(4943), - [anon_sym_is] = ACTIONS(4941), - [anon_sym_DASH_GT] = ACTIONS(4941), - [anon_sym_with] = ACTIONS(4941), + [anon_sym_LBRACK] = ACTIONS(5650), + [anon_sym_COMMA] = ACTIONS(5801), + [anon_sym_LPAREN] = ACTIONS(5591), + [anon_sym_LT] = ACTIONS(6043), + [anon_sym_GT] = ACTIONS(6043), + [anon_sym_where] = ACTIONS(5801), + [anon_sym_QMARK] = ACTIONS(6045), + [anon_sym_BANG] = ACTIONS(5658), + [anon_sym_PLUS_PLUS] = ACTIONS(5660), + [anon_sym_DASH_DASH] = ACTIONS(5660), + [anon_sym_PLUS] = ACTIONS(6047), + [anon_sym_DASH] = ACTIONS(6047), + [anon_sym_STAR] = ACTIONS(6049), + [anon_sym_SLASH] = ACTIONS(6051), + [anon_sym_PERCENT] = ACTIONS(6049), + [anon_sym_CARET] = ACTIONS(6053), + [anon_sym_PIPE] = ACTIONS(6055), + [anon_sym_AMP] = ACTIONS(6057), + [anon_sym_LT_LT] = ACTIONS(6059), + [anon_sym_GT_GT] = ACTIONS(6061), + [anon_sym_GT_GT_GT] = ACTIONS(6059), + [anon_sym_EQ_EQ] = ACTIONS(6063), + [anon_sym_BANG_EQ] = ACTIONS(6063), + [anon_sym_GT_EQ] = ACTIONS(6065), + [anon_sym_LT_EQ] = ACTIONS(6065), + [anon_sym_DOT] = ACTIONS(4697), + [anon_sym_switch] = ACTIONS(5682), + [anon_sym_DOT_DOT] = ACTIONS(6067), + [anon_sym_AMP_AMP] = ACTIONS(6069), + [anon_sym_PIPE_PIPE] = ACTIONS(6071), + [anon_sym_QMARK_QMARK] = ACTIONS(6073), + [anon_sym_from] = ACTIONS(5801), + [anon_sym_into] = ACTIONS(5801), + [anon_sym_join] = ACTIONS(5801), + [anon_sym_let] = ACTIONS(5801), + [anon_sym_orderby] = ACTIONS(5801), + [anon_sym_ascending] = ACTIONS(5801), + [anon_sym_descending] = ACTIONS(5801), + [anon_sym_group] = ACTIONS(5801), + [anon_sym_select] = ACTIONS(5801), + [anon_sym_as] = ACTIONS(5694), + [anon_sym_is] = ACTIONS(6075), + [anon_sym_DASH_GT] = ACTIONS(4699), + [anon_sym_with] = ACTIONS(5698), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -521504,24 +520931,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3712] = { - [sym__name] = STATE(3072), - [sym_alias_qualified_name] = STATE(3029), - [sym__simple_name] = STATE(3029), - [sym_qualified_name] = STATE(3029), - [sym_generic_name] = STATE(2985), - [sym_type] = STATE(3026), - [sym_implicit_type] = STATE(3054), - [sym_array_type] = STATE(2992), - [sym__array_base_type] = STATE(7267), - [sym_nullable_type] = STATE(3012), - [sym_pointer_type] = STATE(3012), - [sym__pointer_base_type] = STATE(7693), - [sym_function_pointer_type] = STATE(3012), - [sym_ref_type] = STATE(3054), - [sym_scoped_type] = STATE(3054), - [sym_tuple_type] = STATE(3058), - [sym_identifier] = STATE(2923), - [sym__reserved_identifier] = STATE(2945), + [sym_argument_list] = STATE(3771), + [sym_bracketed_argument_list] = STATE(2892), [sym_preproc_region] = STATE(3712), [sym_preproc_endregion] = STATE(3712), [sym_preproc_line] = STATE(3712), @@ -521531,34 +520942,50 @@ 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), - [sym__identifier_token] = ACTIONS(3887), - [anon_sym_alias] = ACTIONS(3889), - [anon_sym_global] = ACTIONS(3889), - [anon_sym_LPAREN] = ACTIONS(6051), - [anon_sym_ref] = ACTIONS(4168), - [anon_sym_delegate] = ACTIONS(4042), - [anon_sym_file] = ACTIONS(3889), - [anon_sym_readonly] = ACTIONS(6053), - [anon_sym_where] = ACTIONS(3889), - [anon_sym_notnull] = ACTIONS(3889), - [anon_sym_unmanaged] = ACTIONS(3889), - [anon_sym_scoped] = ACTIONS(5729), - [anon_sym_var] = ACTIONS(4046), - [sym_predefined_type] = ACTIONS(4048), - [anon_sym_yield] = ACTIONS(3889), - [anon_sym_when] = ACTIONS(3889), - [anon_sym_from] = ACTIONS(3889), - [anon_sym_into] = ACTIONS(3889), - [anon_sym_join] = ACTIONS(3889), - [anon_sym_on] = ACTIONS(3889), - [anon_sym_equals] = ACTIONS(3889), - [anon_sym_let] = ACTIONS(3889), - [anon_sym_orderby] = ACTIONS(3889), - [anon_sym_ascending] = ACTIONS(3889), - [anon_sym_descending] = ACTIONS(3889), - [anon_sym_group] = ACTIONS(3889), - [anon_sym_by] = ACTIONS(3889), - [anon_sym_select] = ACTIONS(3889), + [anon_sym_LBRACK] = ACTIONS(5650), + [anon_sym_COMMA] = ACTIONS(1147), + [anon_sym_LPAREN] = ACTIONS(5591), + [anon_sym_LT] = ACTIONS(1161), + [anon_sym_GT] = ACTIONS(1161), + [anon_sym_where] = ACTIONS(1147), + [anon_sym_QMARK] = ACTIONS(1161), + [anon_sym_BANG] = ACTIONS(5658), + [anon_sym_PLUS_PLUS] = ACTIONS(5660), + [anon_sym_DASH_DASH] = ACTIONS(5660), + [anon_sym_PLUS] = ACTIONS(1161), + [anon_sym_DASH] = ACTIONS(1161), + [anon_sym_STAR] = ACTIONS(1147), + [anon_sym_SLASH] = ACTIONS(1161), + [anon_sym_PERCENT] = ACTIONS(1147), + [anon_sym_CARET] = ACTIONS(1147), + [anon_sym_PIPE] = ACTIONS(1161), + [anon_sym_AMP] = ACTIONS(1161), + [anon_sym_LT_LT] = ACTIONS(1147), + [anon_sym_GT_GT] = ACTIONS(1161), + [anon_sym_GT_GT_GT] = ACTIONS(1147), + [anon_sym_EQ_EQ] = ACTIONS(1147), + [anon_sym_BANG_EQ] = ACTIONS(1147), + [anon_sym_GT_EQ] = ACTIONS(1147), + [anon_sym_LT_EQ] = ACTIONS(1147), + [anon_sym_DOT] = ACTIONS(4697), + [anon_sym_switch] = ACTIONS(1147), + [anon_sym_DOT_DOT] = ACTIONS(6067), + [anon_sym_AMP_AMP] = ACTIONS(1147), + [anon_sym_PIPE_PIPE] = ACTIONS(1147), + [anon_sym_QMARK_QMARK] = ACTIONS(1147), + [anon_sym_from] = ACTIONS(1147), + [anon_sym_into] = ACTIONS(1147), + [anon_sym_join] = ACTIONS(1147), + [anon_sym_let] = ACTIONS(1147), + [anon_sym_orderby] = ACTIONS(1147), + [anon_sym_ascending] = ACTIONS(1147), + [anon_sym_descending] = ACTIONS(1147), + [anon_sym_group] = ACTIONS(1147), + [anon_sym_select] = ACTIONS(1147), + [anon_sym_as] = ACTIONS(1161), + [anon_sym_is] = ACTIONS(1147), + [anon_sym_DASH_GT] = ACTIONS(4699), + [anon_sym_with] = ACTIONS(1147), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -521571,6 +520998,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3713] = { + [sym__name] = STATE(2829), + [sym_alias_qualified_name] = STATE(2821), + [sym__simple_name] = STATE(2821), + [sym_qualified_name] = STATE(2821), + [sym_generic_name] = STATE(2698), + [sym_type] = STATE(2747), + [sym_implicit_type] = STATE(2701), + [sym_array_type] = STATE(2822), + [sym__array_base_type] = STATE(7081), + [sym_nullable_type] = STATE(2823), + [sym_pointer_type] = STATE(2823), + [sym__pointer_base_type] = STATE(7400), + [sym_function_pointer_type] = STATE(2823), + [sym_ref_type] = STATE(2701), + [sym_scoped_type] = STATE(2701), + [sym_tuple_type] = STATE(2825), + [sym_identifier] = STATE(2582), + [sym__reserved_identifier] = STATE(2620), [sym_preproc_region] = STATE(3713), [sym_preproc_endregion] = STATE(3713), [sym_preproc_line] = STATE(3713), @@ -521580,52 +521025,34 @@ 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(1957), - [anon_sym_COMMA] = ACTIONS(1957), - [anon_sym_LPAREN] = ACTIONS(1957), - [anon_sym_LT] = ACTIONS(1959), - [anon_sym_GT] = ACTIONS(1959), - [anon_sym_where] = ACTIONS(1957), - [anon_sym_QMARK] = ACTIONS(1959), - [anon_sym_BANG] = ACTIONS(1959), - [anon_sym_PLUS_PLUS] = ACTIONS(1957), - [anon_sym_DASH_DASH] = ACTIONS(1957), - [anon_sym_PLUS] = ACTIONS(1959), - [anon_sym_DASH] = ACTIONS(1959), - [anon_sym_STAR] = ACTIONS(1957), - [anon_sym_SLASH] = ACTIONS(1959), - [anon_sym_PERCENT] = ACTIONS(1957), - [anon_sym_CARET] = ACTIONS(1957), - [anon_sym_PIPE] = ACTIONS(1959), - [anon_sym_AMP] = ACTIONS(1959), - [anon_sym_LT_LT] = ACTIONS(1957), - [anon_sym_GT_GT] = ACTIONS(1959), - [anon_sym_GT_GT_GT] = ACTIONS(1957), - [anon_sym_EQ_EQ] = ACTIONS(1957), - [anon_sym_BANG_EQ] = ACTIONS(1957), - [anon_sym_GT_EQ] = ACTIONS(1957), - [anon_sym_LT_EQ] = ACTIONS(1957), - [anon_sym_DOT] = ACTIONS(1959), - [anon_sym_switch] = ACTIONS(1957), - [anon_sym_DOT_DOT] = ACTIONS(1957), - [anon_sym_and] = ACTIONS(1957), - [anon_sym_or] = ACTIONS(1959), - [anon_sym_AMP_AMP] = ACTIONS(1957), - [anon_sym_PIPE_PIPE] = ACTIONS(1957), - [anon_sym_QMARK_QMARK] = ACTIONS(1957), - [anon_sym_from] = ACTIONS(1957), - [anon_sym_into] = ACTIONS(1957), - [anon_sym_join] = ACTIONS(1957), - [anon_sym_let] = ACTIONS(1957), - [anon_sym_orderby] = ACTIONS(1957), - [anon_sym_ascending] = ACTIONS(1957), - [anon_sym_descending] = ACTIONS(1957), - [anon_sym_group] = ACTIONS(1957), - [anon_sym_select] = ACTIONS(1957), - [anon_sym_as] = ACTIONS(1959), - [anon_sym_is] = ACTIONS(1957), - [anon_sym_DASH_GT] = ACTIONS(1957), - [anon_sym_with] = ACTIONS(1957), + [sym__identifier_token] = ACTIONS(6081), + [anon_sym_alias] = ACTIONS(6083), + [anon_sym_global] = ACTIONS(6083), + [anon_sym_LPAREN] = ACTIONS(6085), + [anon_sym_ref] = ACTIONS(3632), + [anon_sym_delegate] = ACTIONS(6087), + [anon_sym_file] = ACTIONS(6083), + [anon_sym_readonly] = ACTIONS(2901), + [anon_sym_where] = ACTIONS(6083), + [anon_sym_notnull] = ACTIONS(6083), + [anon_sym_unmanaged] = ACTIONS(6083), + [anon_sym_scoped] = ACTIONS(6089), + [anon_sym_var] = ACTIONS(6091), + [sym_predefined_type] = ACTIONS(6093), + [anon_sym_yield] = ACTIONS(6083), + [anon_sym_when] = ACTIONS(6083), + [anon_sym_from] = ACTIONS(6083), + [anon_sym_into] = ACTIONS(6083), + [anon_sym_join] = ACTIONS(6083), + [anon_sym_on] = ACTIONS(6083), + [anon_sym_equals] = ACTIONS(6083), + [anon_sym_let] = ACTIONS(6083), + [anon_sym_orderby] = ACTIONS(6083), + [anon_sym_ascending] = ACTIONS(6083), + [anon_sym_descending] = ACTIONS(6083), + [anon_sym_group] = ACTIONS(6083), + [anon_sym_by] = ACTIONS(6083), + [anon_sym_select] = ACTIONS(6083), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -521647,52 +521074,52 @@ 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), - [anon_sym_LBRACK] = ACTIONS(4957), - [anon_sym_COMMA] = ACTIONS(4957), - [anon_sym_LPAREN] = ACTIONS(4957), - [anon_sym_LT] = ACTIONS(4959), - [anon_sym_GT] = ACTIONS(4959), - [anon_sym_where] = ACTIONS(4957), - [anon_sym_QMARK] = ACTIONS(4959), - [anon_sym_BANG] = ACTIONS(4959), - [anon_sym_PLUS_PLUS] = ACTIONS(4957), - [anon_sym_DASH_DASH] = ACTIONS(4957), - [anon_sym_PLUS] = ACTIONS(4959), - [anon_sym_DASH] = ACTIONS(4959), - [anon_sym_STAR] = ACTIONS(4957), - [anon_sym_SLASH] = ACTIONS(4959), - [anon_sym_PERCENT] = ACTIONS(4957), - [anon_sym_CARET] = ACTIONS(4957), - [anon_sym_PIPE] = ACTIONS(4959), - [anon_sym_AMP] = ACTIONS(4959), - [anon_sym_LT_LT] = ACTIONS(4957), - [anon_sym_GT_GT] = ACTIONS(4959), - [anon_sym_GT_GT_GT] = ACTIONS(4957), - [anon_sym_EQ_EQ] = ACTIONS(4957), - [anon_sym_BANG_EQ] = ACTIONS(4957), - [anon_sym_GT_EQ] = ACTIONS(4957), - [anon_sym_LT_EQ] = ACTIONS(4957), - [anon_sym_DOT] = ACTIONS(4959), - [anon_sym_switch] = ACTIONS(4957), - [anon_sym_DOT_DOT] = ACTIONS(4957), - [anon_sym_and] = ACTIONS(4957), - [anon_sym_or] = ACTIONS(4959), - [anon_sym_AMP_AMP] = ACTIONS(4957), - [anon_sym_PIPE_PIPE] = ACTIONS(4957), - [anon_sym_QMARK_QMARK] = ACTIONS(4957), - [anon_sym_from] = ACTIONS(4957), - [anon_sym_into] = ACTIONS(4957), - [anon_sym_join] = ACTIONS(4957), - [anon_sym_let] = ACTIONS(4957), - [anon_sym_orderby] = ACTIONS(4957), - [anon_sym_ascending] = ACTIONS(4957), - [anon_sym_descending] = ACTIONS(4957), - [anon_sym_group] = ACTIONS(4957), - [anon_sym_select] = ACTIONS(4957), - [anon_sym_as] = ACTIONS(4959), - [anon_sym_is] = ACTIONS(4957), - [anon_sym_DASH_GT] = ACTIONS(4957), - [anon_sym_with] = ACTIONS(4957), + [anon_sym_LBRACK] = ACTIONS(5162), + [anon_sym_COMMA] = ACTIONS(5162), + [anon_sym_LPAREN] = ACTIONS(5162), + [anon_sym_LT] = ACTIONS(5164), + [anon_sym_GT] = ACTIONS(5164), + [anon_sym_where] = ACTIONS(5162), + [anon_sym_QMARK] = ACTIONS(5164), + [anon_sym_BANG] = ACTIONS(5164), + [anon_sym_PLUS_PLUS] = ACTIONS(5162), + [anon_sym_DASH_DASH] = ACTIONS(5162), + [anon_sym_PLUS] = ACTIONS(5164), + [anon_sym_DASH] = ACTIONS(5164), + [anon_sym_STAR] = ACTIONS(5162), + [anon_sym_SLASH] = ACTIONS(5164), + [anon_sym_PERCENT] = ACTIONS(5162), + [anon_sym_CARET] = ACTIONS(5162), + [anon_sym_PIPE] = ACTIONS(5164), + [anon_sym_AMP] = ACTIONS(5164), + [anon_sym_LT_LT] = ACTIONS(5162), + [anon_sym_GT_GT] = ACTIONS(5164), + [anon_sym_GT_GT_GT] = ACTIONS(5162), + [anon_sym_EQ_EQ] = ACTIONS(5162), + [anon_sym_BANG_EQ] = ACTIONS(5162), + [anon_sym_GT_EQ] = ACTIONS(5162), + [anon_sym_LT_EQ] = ACTIONS(5162), + [anon_sym_DOT] = ACTIONS(5164), + [anon_sym_switch] = ACTIONS(5162), + [anon_sym_DOT_DOT] = ACTIONS(5162), + [anon_sym_and] = ACTIONS(5162), + [anon_sym_or] = ACTIONS(5164), + [anon_sym_AMP_AMP] = ACTIONS(5162), + [anon_sym_PIPE_PIPE] = ACTIONS(5162), + [anon_sym_QMARK_QMARK] = ACTIONS(5162), + [anon_sym_from] = ACTIONS(5162), + [anon_sym_into] = ACTIONS(5162), + [anon_sym_join] = ACTIONS(5162), + [anon_sym_let] = ACTIONS(5162), + [anon_sym_orderby] = ACTIONS(5162), + [anon_sym_ascending] = ACTIONS(5162), + [anon_sym_descending] = ACTIONS(5162), + [anon_sym_group] = ACTIONS(5162), + [anon_sym_select] = ACTIONS(5162), + [anon_sym_as] = ACTIONS(5164), + [anon_sym_is] = ACTIONS(5162), + [anon_sym_DASH_GT] = ACTIONS(5162), + [anon_sym_with] = ACTIONS(5162), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -521714,52 +521141,52 @@ 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(4961), - [anon_sym_COMMA] = ACTIONS(4961), - [anon_sym_LPAREN] = ACTIONS(4961), - [anon_sym_LT] = ACTIONS(4963), - [anon_sym_GT] = ACTIONS(4963), - [anon_sym_where] = ACTIONS(4961), - [anon_sym_QMARK] = ACTIONS(4963), - [anon_sym_BANG] = ACTIONS(4963), - [anon_sym_PLUS_PLUS] = ACTIONS(4961), - [anon_sym_DASH_DASH] = ACTIONS(4961), - [anon_sym_PLUS] = ACTIONS(4963), - [anon_sym_DASH] = ACTIONS(4963), - [anon_sym_STAR] = ACTIONS(4961), - [anon_sym_SLASH] = ACTIONS(4963), - [anon_sym_PERCENT] = ACTIONS(4961), - [anon_sym_CARET] = ACTIONS(4961), - [anon_sym_PIPE] = ACTIONS(4963), - [anon_sym_AMP] = ACTIONS(4963), - [anon_sym_LT_LT] = ACTIONS(4961), - [anon_sym_GT_GT] = ACTIONS(4963), - [anon_sym_GT_GT_GT] = ACTIONS(4961), - [anon_sym_EQ_EQ] = ACTIONS(4961), - [anon_sym_BANG_EQ] = ACTIONS(4961), - [anon_sym_GT_EQ] = ACTIONS(4961), - [anon_sym_LT_EQ] = ACTIONS(4961), - [anon_sym_DOT] = ACTIONS(4963), - [anon_sym_switch] = ACTIONS(4961), - [anon_sym_DOT_DOT] = ACTIONS(4961), - [anon_sym_and] = ACTIONS(4961), - [anon_sym_or] = ACTIONS(4963), - [anon_sym_AMP_AMP] = ACTIONS(4961), - [anon_sym_PIPE_PIPE] = ACTIONS(4961), - [anon_sym_QMARK_QMARK] = ACTIONS(4961), - [anon_sym_from] = ACTIONS(4961), - [anon_sym_into] = ACTIONS(4961), - [anon_sym_join] = ACTIONS(4961), - [anon_sym_let] = ACTIONS(4961), - [anon_sym_orderby] = ACTIONS(4961), - [anon_sym_ascending] = ACTIONS(4961), - [anon_sym_descending] = ACTIONS(4961), - [anon_sym_group] = ACTIONS(4961), - [anon_sym_select] = ACTIONS(4961), - [anon_sym_as] = ACTIONS(4963), - [anon_sym_is] = ACTIONS(4961), - [anon_sym_DASH_GT] = ACTIONS(4961), - [anon_sym_with] = ACTIONS(4961), + [anon_sym_LBRACK] = ACTIONS(5362), + [anon_sym_COMMA] = ACTIONS(5362), + [anon_sym_LPAREN] = ACTIONS(5362), + [anon_sym_LT] = ACTIONS(5364), + [anon_sym_GT] = ACTIONS(5364), + [anon_sym_where] = ACTIONS(5362), + [anon_sym_QMARK] = ACTIONS(5364), + [anon_sym_BANG] = ACTIONS(5364), + [anon_sym_PLUS_PLUS] = ACTIONS(5362), + [anon_sym_DASH_DASH] = ACTIONS(5362), + [anon_sym_PLUS] = ACTIONS(5364), + [anon_sym_DASH] = ACTIONS(5364), + [anon_sym_STAR] = ACTIONS(5362), + [anon_sym_SLASH] = ACTIONS(5364), + [anon_sym_PERCENT] = ACTIONS(5362), + [anon_sym_CARET] = ACTIONS(5362), + [anon_sym_PIPE] = ACTIONS(5364), + [anon_sym_AMP] = ACTIONS(5364), + [anon_sym_LT_LT] = ACTIONS(5362), + [anon_sym_GT_GT] = ACTIONS(5364), + [anon_sym_GT_GT_GT] = ACTIONS(5362), + [anon_sym_EQ_EQ] = ACTIONS(5362), + [anon_sym_BANG_EQ] = ACTIONS(5362), + [anon_sym_GT_EQ] = ACTIONS(5362), + [anon_sym_LT_EQ] = ACTIONS(5362), + [anon_sym_DOT] = ACTIONS(5364), + [anon_sym_switch] = ACTIONS(5362), + [anon_sym_DOT_DOT] = ACTIONS(5362), + [anon_sym_and] = ACTIONS(5362), + [anon_sym_or] = ACTIONS(5364), + [anon_sym_AMP_AMP] = ACTIONS(5362), + [anon_sym_PIPE_PIPE] = ACTIONS(5362), + [anon_sym_QMARK_QMARK] = ACTIONS(5362), + [anon_sym_from] = ACTIONS(5362), + [anon_sym_into] = ACTIONS(5362), + [anon_sym_join] = ACTIONS(5362), + [anon_sym_let] = ACTIONS(5362), + [anon_sym_orderby] = ACTIONS(5362), + [anon_sym_ascending] = ACTIONS(5362), + [anon_sym_descending] = ACTIONS(5362), + [anon_sym_group] = ACTIONS(5362), + [anon_sym_select] = ACTIONS(5362), + [anon_sym_as] = ACTIONS(5364), + [anon_sym_is] = ACTIONS(5362), + [anon_sym_DASH_GT] = ACTIONS(5362), + [anon_sym_with] = ACTIONS(5362), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -521781,52 +521208,52 @@ 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_LBRACK] = ACTIONS(4969), - [anon_sym_COMMA] = ACTIONS(4969), - [anon_sym_LPAREN] = ACTIONS(4969), - [anon_sym_LT] = ACTIONS(4971), - [anon_sym_GT] = ACTIONS(4971), - [anon_sym_where] = ACTIONS(4969), - [anon_sym_QMARK] = ACTIONS(4971), - [anon_sym_BANG] = ACTIONS(4971), - [anon_sym_PLUS_PLUS] = ACTIONS(4969), - [anon_sym_DASH_DASH] = ACTIONS(4969), - [anon_sym_PLUS] = ACTIONS(4971), - [anon_sym_DASH] = ACTIONS(4971), - [anon_sym_STAR] = ACTIONS(4969), - [anon_sym_SLASH] = ACTIONS(4971), - [anon_sym_PERCENT] = ACTIONS(4969), - [anon_sym_CARET] = ACTIONS(4969), - [anon_sym_PIPE] = ACTIONS(4971), - [anon_sym_AMP] = ACTIONS(4971), - [anon_sym_LT_LT] = ACTIONS(4969), - [anon_sym_GT_GT] = ACTIONS(4971), - [anon_sym_GT_GT_GT] = ACTIONS(4969), - [anon_sym_EQ_EQ] = ACTIONS(4969), - [anon_sym_BANG_EQ] = ACTIONS(4969), - [anon_sym_GT_EQ] = ACTIONS(4969), - [anon_sym_LT_EQ] = ACTIONS(4969), - [anon_sym_DOT] = ACTIONS(4971), - [anon_sym_switch] = ACTIONS(4969), - [anon_sym_DOT_DOT] = ACTIONS(4969), - [anon_sym_and] = ACTIONS(4969), - [anon_sym_or] = ACTIONS(4971), - [anon_sym_AMP_AMP] = ACTIONS(4969), - [anon_sym_PIPE_PIPE] = ACTIONS(4969), - [anon_sym_QMARK_QMARK] = ACTIONS(4969), - [anon_sym_from] = ACTIONS(4969), - [anon_sym_into] = ACTIONS(4969), - [anon_sym_join] = ACTIONS(4969), - [anon_sym_let] = ACTIONS(4969), - [anon_sym_orderby] = ACTIONS(4969), - [anon_sym_ascending] = ACTIONS(4969), - [anon_sym_descending] = ACTIONS(4969), - [anon_sym_group] = ACTIONS(4969), - [anon_sym_select] = ACTIONS(4969), - [anon_sym_as] = ACTIONS(4971), - [anon_sym_is] = ACTIONS(4969), - [anon_sym_DASH_GT] = ACTIONS(4969), - [anon_sym_with] = ACTIONS(4969), + [anon_sym_LBRACK] = ACTIONS(5362), + [anon_sym_COMMA] = ACTIONS(5362), + [anon_sym_LPAREN] = ACTIONS(5362), + [anon_sym_LT] = ACTIONS(5364), + [anon_sym_GT] = ACTIONS(5364), + [anon_sym_where] = ACTIONS(5362), + [anon_sym_QMARK] = ACTIONS(5364), + [anon_sym_BANG] = ACTIONS(5364), + [anon_sym_PLUS_PLUS] = ACTIONS(5362), + [anon_sym_DASH_DASH] = ACTIONS(5362), + [anon_sym_PLUS] = ACTIONS(5364), + [anon_sym_DASH] = ACTIONS(5364), + [anon_sym_STAR] = ACTIONS(5362), + [anon_sym_SLASH] = ACTIONS(5364), + [anon_sym_PERCENT] = ACTIONS(5362), + [anon_sym_CARET] = ACTIONS(5362), + [anon_sym_PIPE] = ACTIONS(5364), + [anon_sym_AMP] = ACTIONS(5364), + [anon_sym_LT_LT] = ACTIONS(5362), + [anon_sym_GT_GT] = ACTIONS(5364), + [anon_sym_GT_GT_GT] = ACTIONS(5362), + [anon_sym_EQ_EQ] = ACTIONS(5362), + [anon_sym_BANG_EQ] = ACTIONS(5362), + [anon_sym_GT_EQ] = ACTIONS(5362), + [anon_sym_LT_EQ] = ACTIONS(5362), + [anon_sym_DOT] = ACTIONS(5364), + [anon_sym_switch] = ACTIONS(5362), + [anon_sym_DOT_DOT] = ACTIONS(5362), + [anon_sym_and] = ACTIONS(5362), + [anon_sym_or] = ACTIONS(5364), + [anon_sym_AMP_AMP] = ACTIONS(5362), + [anon_sym_PIPE_PIPE] = ACTIONS(5362), + [anon_sym_QMARK_QMARK] = ACTIONS(5362), + [anon_sym_from] = ACTIONS(5362), + [anon_sym_into] = ACTIONS(5362), + [anon_sym_join] = ACTIONS(5362), + [anon_sym_let] = ACTIONS(5362), + [anon_sym_orderby] = ACTIONS(5362), + [anon_sym_ascending] = ACTIONS(5362), + [anon_sym_descending] = ACTIONS(5362), + [anon_sym_group] = ACTIONS(5362), + [anon_sym_select] = ACTIONS(5362), + [anon_sym_as] = ACTIONS(5364), + [anon_sym_is] = ACTIONS(5362), + [anon_sym_DASH_GT] = ACTIONS(5362), + [anon_sym_with] = ACTIONS(5362), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -521848,52 +521275,52 @@ 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(4977), - [anon_sym_COMMA] = ACTIONS(4977), - [anon_sym_LPAREN] = ACTIONS(4977), - [anon_sym_LT] = ACTIONS(4979), - [anon_sym_GT] = ACTIONS(4979), - [anon_sym_where] = ACTIONS(4977), - [anon_sym_QMARK] = ACTIONS(4979), - [anon_sym_BANG] = ACTIONS(4979), - [anon_sym_PLUS_PLUS] = ACTIONS(4977), - [anon_sym_DASH_DASH] = ACTIONS(4977), - [anon_sym_PLUS] = ACTIONS(4979), - [anon_sym_DASH] = ACTIONS(4979), - [anon_sym_STAR] = ACTIONS(4977), - [anon_sym_SLASH] = ACTIONS(4979), - [anon_sym_PERCENT] = ACTIONS(4977), - [anon_sym_CARET] = ACTIONS(4977), - [anon_sym_PIPE] = ACTIONS(4979), - [anon_sym_AMP] = ACTIONS(4979), - [anon_sym_LT_LT] = ACTIONS(4977), - [anon_sym_GT_GT] = ACTIONS(4979), - [anon_sym_GT_GT_GT] = ACTIONS(4977), - [anon_sym_EQ_EQ] = ACTIONS(4977), - [anon_sym_BANG_EQ] = ACTIONS(4977), - [anon_sym_GT_EQ] = ACTIONS(4977), - [anon_sym_LT_EQ] = ACTIONS(4977), - [anon_sym_DOT] = ACTIONS(4979), - [anon_sym_switch] = ACTIONS(4977), - [anon_sym_DOT_DOT] = ACTIONS(4977), - [anon_sym_and] = ACTIONS(4977), - [anon_sym_or] = ACTIONS(4979), - [anon_sym_AMP_AMP] = ACTIONS(4977), - [anon_sym_PIPE_PIPE] = ACTIONS(4977), - [anon_sym_QMARK_QMARK] = ACTIONS(4977), - [anon_sym_from] = ACTIONS(4977), - [anon_sym_into] = ACTIONS(4977), - [anon_sym_join] = ACTIONS(4977), - [anon_sym_let] = ACTIONS(4977), - [anon_sym_orderby] = ACTIONS(4977), - [anon_sym_ascending] = ACTIONS(4977), - [anon_sym_descending] = ACTIONS(4977), - [anon_sym_group] = ACTIONS(4977), - [anon_sym_select] = ACTIONS(4977), - [anon_sym_as] = ACTIONS(4979), - [anon_sym_is] = ACTIONS(4977), - [anon_sym_DASH_GT] = ACTIONS(4977), - [anon_sym_with] = ACTIONS(4977), + [anon_sym_LBRACK] = ACTIONS(5366), + [anon_sym_COMMA] = ACTIONS(5366), + [anon_sym_LPAREN] = ACTIONS(5366), + [anon_sym_LT] = ACTIONS(5368), + [anon_sym_GT] = ACTIONS(5368), + [anon_sym_where] = ACTIONS(5366), + [anon_sym_QMARK] = ACTIONS(5368), + [anon_sym_BANG] = ACTIONS(5368), + [anon_sym_PLUS_PLUS] = ACTIONS(5366), + [anon_sym_DASH_DASH] = ACTIONS(5366), + [anon_sym_PLUS] = ACTIONS(5368), + [anon_sym_DASH] = ACTIONS(5368), + [anon_sym_STAR] = ACTIONS(5366), + [anon_sym_SLASH] = ACTIONS(5368), + [anon_sym_PERCENT] = ACTIONS(5366), + [anon_sym_CARET] = ACTIONS(5366), + [anon_sym_PIPE] = ACTIONS(5368), + [anon_sym_AMP] = ACTIONS(5368), + [anon_sym_LT_LT] = ACTIONS(5366), + [anon_sym_GT_GT] = ACTIONS(5368), + [anon_sym_GT_GT_GT] = ACTIONS(5366), + [anon_sym_EQ_EQ] = ACTIONS(5366), + [anon_sym_BANG_EQ] = ACTIONS(5366), + [anon_sym_GT_EQ] = ACTIONS(5366), + [anon_sym_LT_EQ] = ACTIONS(5366), + [anon_sym_DOT] = ACTIONS(5368), + [anon_sym_switch] = ACTIONS(5366), + [anon_sym_DOT_DOT] = ACTIONS(5366), + [anon_sym_and] = ACTIONS(5366), + [anon_sym_or] = ACTIONS(5368), + [anon_sym_AMP_AMP] = ACTIONS(5366), + [anon_sym_PIPE_PIPE] = ACTIONS(5366), + [anon_sym_QMARK_QMARK] = ACTIONS(5366), + [anon_sym_from] = ACTIONS(5366), + [anon_sym_into] = ACTIONS(5366), + [anon_sym_join] = ACTIONS(5366), + [anon_sym_let] = ACTIONS(5366), + [anon_sym_orderby] = ACTIONS(5366), + [anon_sym_ascending] = ACTIONS(5366), + [anon_sym_descending] = ACTIONS(5366), + [anon_sym_group] = ACTIONS(5366), + [anon_sym_select] = ACTIONS(5366), + [anon_sym_as] = ACTIONS(5368), + [anon_sym_is] = ACTIONS(5366), + [anon_sym_DASH_GT] = ACTIONS(5366), + [anon_sym_with] = ACTIONS(5366), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -521915,52 +521342,52 @@ 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(4981), - [anon_sym_COMMA] = ACTIONS(4981), - [anon_sym_LPAREN] = ACTIONS(4981), - [anon_sym_LT] = ACTIONS(4983), - [anon_sym_GT] = ACTIONS(4983), - [anon_sym_where] = ACTIONS(4981), - [anon_sym_QMARK] = ACTIONS(4983), - [anon_sym_BANG] = ACTIONS(4983), - [anon_sym_PLUS_PLUS] = ACTIONS(4981), - [anon_sym_DASH_DASH] = ACTIONS(4981), - [anon_sym_PLUS] = ACTIONS(4983), - [anon_sym_DASH] = ACTIONS(4983), - [anon_sym_STAR] = ACTIONS(4981), - [anon_sym_SLASH] = ACTIONS(4983), - [anon_sym_PERCENT] = ACTIONS(4981), - [anon_sym_CARET] = ACTIONS(4981), - [anon_sym_PIPE] = ACTIONS(4983), - [anon_sym_AMP] = ACTIONS(4983), - [anon_sym_LT_LT] = ACTIONS(4981), - [anon_sym_GT_GT] = ACTIONS(4983), - [anon_sym_GT_GT_GT] = ACTIONS(4981), - [anon_sym_EQ_EQ] = ACTIONS(4981), - [anon_sym_BANG_EQ] = ACTIONS(4981), - [anon_sym_GT_EQ] = ACTIONS(4981), - [anon_sym_LT_EQ] = ACTIONS(4981), - [anon_sym_DOT] = ACTIONS(4983), - [anon_sym_switch] = ACTIONS(4981), - [anon_sym_DOT_DOT] = ACTIONS(4981), - [anon_sym_and] = ACTIONS(4981), - [anon_sym_or] = ACTIONS(4983), - [anon_sym_AMP_AMP] = ACTIONS(4981), - [anon_sym_PIPE_PIPE] = ACTIONS(4981), - [anon_sym_QMARK_QMARK] = ACTIONS(4981), - [anon_sym_from] = ACTIONS(4981), - [anon_sym_into] = ACTIONS(4981), - [anon_sym_join] = ACTIONS(4981), - [anon_sym_let] = ACTIONS(4981), - [anon_sym_orderby] = ACTIONS(4981), - [anon_sym_ascending] = ACTIONS(4981), - [anon_sym_descending] = ACTIONS(4981), - [anon_sym_group] = ACTIONS(4981), - [anon_sym_select] = ACTIONS(4981), - [anon_sym_as] = ACTIONS(4983), - [anon_sym_is] = ACTIONS(4981), - [anon_sym_DASH_GT] = ACTIONS(4981), - [anon_sym_with] = ACTIONS(4981), + [anon_sym_LBRACK] = ACTIONS(5370), + [anon_sym_COMMA] = ACTIONS(5370), + [anon_sym_LPAREN] = ACTIONS(5370), + [anon_sym_LT] = ACTIONS(5372), + [anon_sym_GT] = ACTIONS(5372), + [anon_sym_where] = ACTIONS(5370), + [anon_sym_QMARK] = ACTIONS(5372), + [anon_sym_BANG] = ACTIONS(5372), + [anon_sym_PLUS_PLUS] = ACTIONS(5370), + [anon_sym_DASH_DASH] = ACTIONS(5370), + [anon_sym_PLUS] = ACTIONS(5372), + [anon_sym_DASH] = ACTIONS(5372), + [anon_sym_STAR] = ACTIONS(5370), + [anon_sym_SLASH] = ACTIONS(5372), + [anon_sym_PERCENT] = ACTIONS(5370), + [anon_sym_CARET] = ACTIONS(5370), + [anon_sym_PIPE] = ACTIONS(5372), + [anon_sym_AMP] = ACTIONS(5372), + [anon_sym_LT_LT] = ACTIONS(5370), + [anon_sym_GT_GT] = ACTIONS(5372), + [anon_sym_GT_GT_GT] = ACTIONS(5370), + [anon_sym_EQ_EQ] = ACTIONS(5370), + [anon_sym_BANG_EQ] = ACTIONS(5370), + [anon_sym_GT_EQ] = ACTIONS(5370), + [anon_sym_LT_EQ] = ACTIONS(5370), + [anon_sym_DOT] = ACTIONS(5372), + [anon_sym_switch] = ACTIONS(5370), + [anon_sym_DOT_DOT] = ACTIONS(5370), + [anon_sym_and] = ACTIONS(5370), + [anon_sym_or] = ACTIONS(5372), + [anon_sym_AMP_AMP] = ACTIONS(5370), + [anon_sym_PIPE_PIPE] = ACTIONS(5370), + [anon_sym_QMARK_QMARK] = ACTIONS(5370), + [anon_sym_from] = ACTIONS(5370), + [anon_sym_into] = ACTIONS(5370), + [anon_sym_join] = ACTIONS(5370), + [anon_sym_let] = ACTIONS(5370), + [anon_sym_orderby] = ACTIONS(5370), + [anon_sym_ascending] = ACTIONS(5370), + [anon_sym_descending] = ACTIONS(5370), + [anon_sym_group] = ACTIONS(5370), + [anon_sym_select] = ACTIONS(5370), + [anon_sym_as] = ACTIONS(5372), + [anon_sym_is] = ACTIONS(5370), + [anon_sym_DASH_GT] = ACTIONS(5370), + [anon_sym_with] = ACTIONS(5370), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -521973,24 +521400,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3719] = { - [sym__name] = STATE(2419), - [sym_alias_qualified_name] = STATE(2373), - [sym__simple_name] = STATE(2373), - [sym_qualified_name] = STATE(2373), - [sym_generic_name] = STATE(2389), - [sym_type] = STATE(2381), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(2378), - [sym__array_base_type] = STATE(7103), - [sym_nullable_type] = STATE(2379), - [sym_pointer_type] = STATE(2379), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(2379), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(2380), - [sym_identifier] = STATE(2359), - [sym__reserved_identifier] = STATE(2361), [sym_preproc_region] = STATE(3719), [sym_preproc_endregion] = STATE(3719), [sym_preproc_line] = STATE(3719), @@ -522000,34 +521409,52 @@ 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), - [sym__identifier_token] = ACTIONS(4058), - [anon_sym_alias] = ACTIONS(4060), - [anon_sym_global] = ACTIONS(4060), - [anon_sym_LPAREN] = ACTIONS(6055), - [anon_sym_ref] = ACTIONS(4062), - [anon_sym_delegate] = ACTIONS(3454), - [anon_sym_file] = ACTIONS(4060), - [anon_sym_readonly] = ACTIONS(6057), - [anon_sym_where] = ACTIONS(4060), - [anon_sym_notnull] = ACTIONS(4060), - [anon_sym_unmanaged] = ACTIONS(4060), - [anon_sym_scoped] = ACTIONS(5636), - [anon_sym_var] = ACTIONS(5638), - [sym_predefined_type] = ACTIONS(5640), - [anon_sym_yield] = ACTIONS(4060), - [anon_sym_when] = ACTIONS(4060), - [anon_sym_from] = ACTIONS(4060), - [anon_sym_into] = ACTIONS(4060), - [anon_sym_join] = ACTIONS(4060), - [anon_sym_on] = ACTIONS(4060), - [anon_sym_equals] = ACTIONS(4060), - [anon_sym_let] = ACTIONS(4060), - [anon_sym_orderby] = ACTIONS(4060), - [anon_sym_ascending] = ACTIONS(4060), - [anon_sym_descending] = ACTIONS(4060), - [anon_sym_group] = ACTIONS(4060), - [anon_sym_by] = ACTIONS(4060), - [anon_sym_select] = ACTIONS(4060), + [anon_sym_LBRACK] = ACTIONS(6095), + [anon_sym_COMMA] = ACTIONS(6095), + [anon_sym_LPAREN] = ACTIONS(6095), + [anon_sym_LT] = ACTIONS(6097), + [anon_sym_GT] = ACTIONS(6097), + [anon_sym_where] = ACTIONS(6095), + [anon_sym_QMARK] = ACTIONS(6097), + [anon_sym_BANG] = ACTIONS(6097), + [anon_sym_PLUS_PLUS] = ACTIONS(6095), + [anon_sym_DASH_DASH] = ACTIONS(6095), + [anon_sym_PLUS] = ACTIONS(6097), + [anon_sym_DASH] = ACTIONS(6097), + [anon_sym_STAR] = ACTIONS(6095), + [anon_sym_SLASH] = ACTIONS(6097), + [anon_sym_PERCENT] = ACTIONS(6095), + [anon_sym_CARET] = ACTIONS(6095), + [anon_sym_PIPE] = ACTIONS(6097), + [anon_sym_AMP] = ACTIONS(6097), + [anon_sym_LT_LT] = ACTIONS(6095), + [anon_sym_GT_GT] = ACTIONS(6097), + [anon_sym_GT_GT_GT] = ACTIONS(6095), + [anon_sym_EQ_EQ] = ACTIONS(6095), + [anon_sym_BANG_EQ] = ACTIONS(6095), + [anon_sym_GT_EQ] = ACTIONS(6095), + [anon_sym_LT_EQ] = ACTIONS(6095), + [anon_sym_DOT] = ACTIONS(6097), + [anon_sym_switch] = ACTIONS(6095), + [anon_sym_DOT_DOT] = ACTIONS(6095), + [anon_sym_and] = ACTIONS(6099), + [anon_sym_or] = ACTIONS(6097), + [anon_sym_AMP_AMP] = ACTIONS(6095), + [anon_sym_PIPE_PIPE] = ACTIONS(6095), + [anon_sym_QMARK_QMARK] = ACTIONS(6095), + [anon_sym_from] = ACTIONS(6095), + [anon_sym_into] = ACTIONS(6095), + [anon_sym_join] = ACTIONS(6095), + [anon_sym_let] = ACTIONS(6095), + [anon_sym_orderby] = ACTIONS(6095), + [anon_sym_ascending] = ACTIONS(6095), + [anon_sym_descending] = ACTIONS(6095), + [anon_sym_group] = ACTIONS(6095), + [anon_sym_select] = ACTIONS(6095), + [anon_sym_as] = ACTIONS(6097), + [anon_sym_is] = ACTIONS(6095), + [anon_sym_DASH_GT] = ACTIONS(6095), + [anon_sym_with] = ACTIONS(6095), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -522040,6 +521467,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3720] = { + [sym_argument_list] = STATE(3771), + [sym_bracketed_argument_list] = STATE(2892), [sym_preproc_region] = STATE(3720), [sym_preproc_endregion] = STATE(3720), [sym_preproc_line] = STATE(3720), @@ -522049,52 +521478,50 @@ 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), - [anon_sym_LBRACK] = ACTIONS(4989), - [anon_sym_COMMA] = ACTIONS(4989), - [anon_sym_LPAREN] = ACTIONS(4989), - [anon_sym_LT] = ACTIONS(4991), - [anon_sym_GT] = ACTIONS(4991), - [anon_sym_where] = ACTIONS(4989), - [anon_sym_QMARK] = ACTIONS(4991), - [anon_sym_BANG] = ACTIONS(4991), - [anon_sym_PLUS_PLUS] = ACTIONS(4989), - [anon_sym_DASH_DASH] = ACTIONS(4989), - [anon_sym_PLUS] = ACTIONS(4991), - [anon_sym_DASH] = ACTIONS(4991), - [anon_sym_STAR] = ACTIONS(4989), - [anon_sym_SLASH] = ACTIONS(4991), - [anon_sym_PERCENT] = ACTIONS(4989), - [anon_sym_CARET] = ACTIONS(4989), - [anon_sym_PIPE] = ACTIONS(4991), - [anon_sym_AMP] = ACTIONS(4991), - [anon_sym_LT_LT] = ACTIONS(4989), - [anon_sym_GT_GT] = ACTIONS(4991), - [anon_sym_GT_GT_GT] = ACTIONS(4989), - [anon_sym_EQ_EQ] = ACTIONS(4989), - [anon_sym_BANG_EQ] = ACTIONS(4989), - [anon_sym_GT_EQ] = ACTIONS(4989), - [anon_sym_LT_EQ] = ACTIONS(4989), - [anon_sym_DOT] = ACTIONS(4991), - [anon_sym_switch] = ACTIONS(4989), - [anon_sym_DOT_DOT] = ACTIONS(4989), - [anon_sym_and] = ACTIONS(4989), - [anon_sym_or] = ACTIONS(4991), - [anon_sym_AMP_AMP] = ACTIONS(4989), - [anon_sym_PIPE_PIPE] = ACTIONS(4989), - [anon_sym_QMARK_QMARK] = ACTIONS(4989), - [anon_sym_from] = ACTIONS(4989), - [anon_sym_into] = ACTIONS(4989), - [anon_sym_join] = ACTIONS(4989), - [anon_sym_let] = ACTIONS(4989), - [anon_sym_orderby] = ACTIONS(4989), - [anon_sym_ascending] = ACTIONS(4989), - [anon_sym_descending] = ACTIONS(4989), - [anon_sym_group] = ACTIONS(4989), - [anon_sym_select] = ACTIONS(4989), - [anon_sym_as] = ACTIONS(4991), - [anon_sym_is] = ACTIONS(4989), - [anon_sym_DASH_GT] = ACTIONS(4989), - [anon_sym_with] = ACTIONS(4989), + [anon_sym_LBRACK] = ACTIONS(5650), + [anon_sym_COMMA] = ACTIONS(5652), + [anon_sym_LPAREN] = ACTIONS(5591), + [anon_sym_LT] = ACTIONS(6043), + [anon_sym_GT] = ACTIONS(6043), + [anon_sym_where] = ACTIONS(5652), + [anon_sym_QMARK] = ACTIONS(6045), + [anon_sym_BANG] = ACTIONS(5658), + [anon_sym_PLUS_PLUS] = ACTIONS(5660), + [anon_sym_DASH_DASH] = ACTIONS(5660), + [anon_sym_PLUS] = ACTIONS(6047), + [anon_sym_DASH] = ACTIONS(6047), + [anon_sym_STAR] = ACTIONS(6049), + [anon_sym_SLASH] = ACTIONS(6051), + [anon_sym_PERCENT] = ACTIONS(6049), + [anon_sym_CARET] = ACTIONS(6053), + [anon_sym_PIPE] = ACTIONS(6055), + [anon_sym_AMP] = ACTIONS(6057), + [anon_sym_LT_LT] = ACTIONS(6059), + [anon_sym_GT_GT] = ACTIONS(6061), + [anon_sym_GT_GT_GT] = ACTIONS(6059), + [anon_sym_EQ_EQ] = ACTIONS(6063), + [anon_sym_BANG_EQ] = ACTIONS(6063), + [anon_sym_GT_EQ] = ACTIONS(6065), + [anon_sym_LT_EQ] = ACTIONS(6065), + [anon_sym_DOT] = ACTIONS(4697), + [anon_sym_switch] = ACTIONS(5682), + [anon_sym_DOT_DOT] = ACTIONS(6067), + [anon_sym_AMP_AMP] = ACTIONS(6069), + [anon_sym_PIPE_PIPE] = ACTIONS(6071), + [anon_sym_QMARK_QMARK] = ACTIONS(6073), + [anon_sym_from] = ACTIONS(5652), + [anon_sym_into] = ACTIONS(5652), + [anon_sym_join] = ACTIONS(5652), + [anon_sym_let] = ACTIONS(5652), + [anon_sym_orderby] = ACTIONS(5652), + [anon_sym_ascending] = ACTIONS(5652), + [anon_sym_descending] = ACTIONS(5652), + [anon_sym_group] = ACTIONS(5652), + [anon_sym_select] = ACTIONS(5652), + [anon_sym_as] = ACTIONS(5694), + [anon_sym_is] = ACTIONS(6075), + [anon_sym_DASH_GT] = ACTIONS(4699), + [anon_sym_with] = ACTIONS(5698), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -522107,6 +521534,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3721] = { + [sym__name] = STATE(4369), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(4068), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(4073), + [sym_type] = STATE(4565), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_identifier] = STATE(4081), + [sym__reserved_identifier] = STATE(3654), [sym_preproc_region] = STATE(3721), [sym_preproc_endregion] = STATE(3721), [sym_preproc_line] = STATE(3721), @@ -522116,52 +521561,34 @@ 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(4997), - [anon_sym_COMMA] = ACTIONS(4997), - [anon_sym_LPAREN] = ACTIONS(4997), - [anon_sym_LT] = ACTIONS(4999), - [anon_sym_GT] = ACTIONS(4999), - [anon_sym_where] = ACTIONS(4997), - [anon_sym_QMARK] = ACTIONS(4999), - [anon_sym_BANG] = ACTIONS(4999), - [anon_sym_PLUS_PLUS] = ACTIONS(4997), - [anon_sym_DASH_DASH] = ACTIONS(4997), - [anon_sym_PLUS] = ACTIONS(4999), - [anon_sym_DASH] = ACTIONS(4999), - [anon_sym_STAR] = ACTIONS(4997), - [anon_sym_SLASH] = ACTIONS(4999), - [anon_sym_PERCENT] = ACTIONS(4997), - [anon_sym_CARET] = ACTIONS(4997), - [anon_sym_PIPE] = ACTIONS(4999), - [anon_sym_AMP] = ACTIONS(4999), - [anon_sym_LT_LT] = ACTIONS(4997), - [anon_sym_GT_GT] = ACTIONS(4999), - [anon_sym_GT_GT_GT] = ACTIONS(4997), - [anon_sym_EQ_EQ] = ACTIONS(4997), - [anon_sym_BANG_EQ] = ACTIONS(4997), - [anon_sym_GT_EQ] = ACTIONS(4997), - [anon_sym_LT_EQ] = ACTIONS(4997), - [anon_sym_DOT] = ACTIONS(4999), - [anon_sym_switch] = ACTIONS(4997), - [anon_sym_DOT_DOT] = ACTIONS(4997), - [anon_sym_and] = ACTIONS(4997), - [anon_sym_or] = ACTIONS(4999), - [anon_sym_AMP_AMP] = ACTIONS(4997), - [anon_sym_PIPE_PIPE] = ACTIONS(4997), - [anon_sym_QMARK_QMARK] = ACTIONS(4997), - [anon_sym_from] = ACTIONS(4997), - [anon_sym_into] = ACTIONS(4997), - [anon_sym_join] = ACTIONS(4997), - [anon_sym_let] = ACTIONS(4997), - [anon_sym_orderby] = ACTIONS(4997), - [anon_sym_ascending] = ACTIONS(4997), - [anon_sym_descending] = ACTIONS(4997), - [anon_sym_group] = ACTIONS(4997), - [anon_sym_select] = ACTIONS(4997), - [anon_sym_as] = ACTIONS(4999), - [anon_sym_is] = ACTIONS(4997), - [anon_sym_DASH_GT] = ACTIONS(4997), - [anon_sym_with] = ACTIONS(4997), + [sym__identifier_token] = ACTIONS(2965), + [anon_sym_alias] = ACTIONS(2969), + [anon_sym_global] = ACTIONS(2969), + [anon_sym_LPAREN] = ACTIONS(2977), + [anon_sym_ref] = ACTIONS(3590), + [anon_sym_delegate] = ACTIONS(3438), + [anon_sym_file] = ACTIONS(2969), + [anon_sym_readonly] = ACTIONS(2747), + [anon_sym_where] = ACTIONS(2969), + [anon_sym_notnull] = ACTIONS(2969), + [anon_sym_unmanaged] = ACTIONS(2969), + [anon_sym_scoped] = ACTIONS(5843), + [anon_sym_var] = ACTIONS(4705), + [sym_predefined_type] = ACTIONS(2997), + [anon_sym_yield] = ACTIONS(2969), + [anon_sym_when] = ACTIONS(2969), + [anon_sym_from] = ACTIONS(2969), + [anon_sym_into] = ACTIONS(2969), + [anon_sym_join] = ACTIONS(2969), + [anon_sym_on] = ACTIONS(2969), + [anon_sym_equals] = ACTIONS(2969), + [anon_sym_let] = ACTIONS(2969), + [anon_sym_orderby] = ACTIONS(2969), + [anon_sym_ascending] = ACTIONS(2969), + [anon_sym_descending] = ACTIONS(2969), + [anon_sym_group] = ACTIONS(2969), + [anon_sym_by] = ACTIONS(2969), + [anon_sym_select] = ACTIONS(2969), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -522174,8 +521601,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3722] = { - [sym_argument_list] = STATE(3886), - [sym_bracketed_argument_list] = STATE(2902), [sym_preproc_region] = STATE(3722), [sym_preproc_endregion] = STATE(3722), [sym_preproc_line] = STATE(3722), @@ -522185,50 +521610,52 @@ 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(5658), - [anon_sym_COMMA] = ACTIONS(5858), - [anon_sym_LPAREN] = ACTIONS(5624), - [anon_sym_LT] = ACTIONS(6017), - [anon_sym_GT] = ACTIONS(6017), - [anon_sym_where] = ACTIONS(5858), - [anon_sym_QMARK] = ACTIONS(6019), - [anon_sym_BANG] = ACTIONS(5666), - [anon_sym_PLUS_PLUS] = ACTIONS(5668), - [anon_sym_DASH_DASH] = ACTIONS(5668), - [anon_sym_PLUS] = ACTIONS(6021), - [anon_sym_DASH] = ACTIONS(6021), - [anon_sym_STAR] = ACTIONS(6023), - [anon_sym_SLASH] = ACTIONS(6025), - [anon_sym_PERCENT] = ACTIONS(6023), - [anon_sym_CARET] = ACTIONS(6027), - [anon_sym_PIPE] = ACTIONS(6029), - [anon_sym_AMP] = ACTIONS(6031), - [anon_sym_LT_LT] = ACTIONS(6033), - [anon_sym_GT_GT] = ACTIONS(6035), - [anon_sym_GT_GT_GT] = ACTIONS(6033), - [anon_sym_EQ_EQ] = ACTIONS(6037), - [anon_sym_BANG_EQ] = ACTIONS(6037), - [anon_sym_GT_EQ] = ACTIONS(6039), - [anon_sym_LT_EQ] = ACTIONS(6039), - [anon_sym_DOT] = ACTIONS(4733), - [anon_sym_switch] = ACTIONS(5688), - [anon_sym_DOT_DOT] = ACTIONS(6041), - [anon_sym_AMP_AMP] = ACTIONS(6043), - [anon_sym_PIPE_PIPE] = ACTIONS(6045), - [anon_sym_QMARK_QMARK] = ACTIONS(6047), - [anon_sym_from] = ACTIONS(5858), - [anon_sym_into] = ACTIONS(5858), - [anon_sym_join] = ACTIONS(5858), - [anon_sym_let] = ACTIONS(5858), - [anon_sym_orderby] = ACTIONS(5858), - [anon_sym_ascending] = ACTIONS(5858), - [anon_sym_descending] = ACTIONS(5858), - [anon_sym_group] = ACTIONS(5858), - [anon_sym_select] = ACTIONS(5858), - [anon_sym_as] = ACTIONS(5692), - [anon_sym_is] = ACTIONS(6049), - [anon_sym_DASH_GT] = ACTIONS(4719), - [anon_sym_with] = ACTIONS(5696), + [anon_sym_LBRACK] = ACTIONS(5396), + [anon_sym_COMMA] = ACTIONS(5396), + [anon_sym_LPAREN] = ACTIONS(5396), + [anon_sym_LT] = ACTIONS(5398), + [anon_sym_GT] = ACTIONS(5398), + [anon_sym_where] = ACTIONS(5396), + [anon_sym_QMARK] = ACTIONS(5398), + [anon_sym_BANG] = ACTIONS(5398), + [anon_sym_PLUS_PLUS] = ACTIONS(5396), + [anon_sym_DASH_DASH] = ACTIONS(5396), + [anon_sym_PLUS] = ACTIONS(5398), + [anon_sym_DASH] = ACTIONS(5398), + [anon_sym_STAR] = ACTIONS(5396), + [anon_sym_SLASH] = ACTIONS(5398), + [anon_sym_PERCENT] = ACTIONS(5396), + [anon_sym_CARET] = ACTIONS(5396), + [anon_sym_PIPE] = ACTIONS(5398), + [anon_sym_AMP] = ACTIONS(5398), + [anon_sym_LT_LT] = ACTIONS(5396), + [anon_sym_GT_GT] = ACTIONS(5398), + [anon_sym_GT_GT_GT] = ACTIONS(5396), + [anon_sym_EQ_EQ] = ACTIONS(5396), + [anon_sym_BANG_EQ] = ACTIONS(5396), + [anon_sym_GT_EQ] = ACTIONS(5396), + [anon_sym_LT_EQ] = ACTIONS(5396), + [anon_sym_DOT] = ACTIONS(5398), + [anon_sym_switch] = ACTIONS(5396), + [anon_sym_DOT_DOT] = ACTIONS(5396), + [anon_sym_and] = ACTIONS(5396), + [anon_sym_or] = ACTIONS(5398), + [anon_sym_AMP_AMP] = ACTIONS(5396), + [anon_sym_PIPE_PIPE] = ACTIONS(5396), + [anon_sym_QMARK_QMARK] = ACTIONS(5396), + [anon_sym_from] = ACTIONS(5396), + [anon_sym_into] = ACTIONS(5396), + [anon_sym_join] = ACTIONS(5396), + [anon_sym_let] = ACTIONS(5396), + [anon_sym_orderby] = ACTIONS(5396), + [anon_sym_ascending] = ACTIONS(5396), + [anon_sym_descending] = ACTIONS(5396), + [anon_sym_group] = ACTIONS(5396), + [anon_sym_select] = ACTIONS(5396), + [anon_sym_as] = ACTIONS(5398), + [anon_sym_is] = ACTIONS(5396), + [anon_sym_DASH_GT] = ACTIONS(5396), + [anon_sym_with] = ACTIONS(5396), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -522241,8 +521668,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3723] = { - [sym_argument_list] = STATE(3886), - [sym_bracketed_argument_list] = STATE(2902), + [sym__name] = STATE(3488), + [sym_alias_qualified_name] = STATE(3304), + [sym__simple_name] = STATE(3304), + [sym_qualified_name] = STATE(3304), + [sym_generic_name] = STATE(3241), + [sym_type] = STATE(3223), + [sym_implicit_type] = STATE(3222), + [sym_array_type] = STATE(3229), + [sym__array_base_type] = STATE(7208), + [sym_nullable_type] = STATE(3216), + [sym_pointer_type] = STATE(3216), + [sym__pointer_base_type] = STATE(7508), + [sym_function_pointer_type] = STATE(3216), + [sym_ref_type] = STATE(3222), + [sym_scoped_type] = STATE(3222), + [sym_tuple_type] = STATE(3308), + [sym_identifier] = STATE(3177), + [sym__reserved_identifier] = STATE(3205), [sym_preproc_region] = STATE(3723), [sym_preproc_endregion] = STATE(3723), [sym_preproc_line] = STATE(3723), @@ -522252,50 +521695,34 @@ 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_LBRACK] = ACTIONS(5658), - [anon_sym_COMMA] = ACTIONS(5731), - [anon_sym_LPAREN] = ACTIONS(5624), - [anon_sym_LT] = ACTIONS(5733), - [anon_sym_GT] = ACTIONS(5733), - [anon_sym_where] = ACTIONS(5731), - [anon_sym_QMARK] = ACTIONS(5733), - [anon_sym_BANG] = ACTIONS(5666), - [anon_sym_PLUS_PLUS] = ACTIONS(5668), - [anon_sym_DASH_DASH] = ACTIONS(5668), - [anon_sym_PLUS] = ACTIONS(5733), - [anon_sym_DASH] = ACTIONS(5733), - [anon_sym_STAR] = ACTIONS(5731), - [anon_sym_SLASH] = ACTIONS(5733), - [anon_sym_PERCENT] = ACTIONS(5731), - [anon_sym_CARET] = ACTIONS(5731), - [anon_sym_PIPE] = ACTIONS(5733), - [anon_sym_AMP] = ACTIONS(5733), - [anon_sym_LT_LT] = ACTIONS(5731), - [anon_sym_GT_GT] = ACTIONS(5733), - [anon_sym_GT_GT_GT] = ACTIONS(5731), - [anon_sym_EQ_EQ] = ACTIONS(5731), - [anon_sym_BANG_EQ] = ACTIONS(5731), - [anon_sym_GT_EQ] = ACTIONS(5731), - [anon_sym_LT_EQ] = ACTIONS(5731), - [anon_sym_DOT] = ACTIONS(4733), - [anon_sym_switch] = ACTIONS(5731), - [anon_sym_DOT_DOT] = ACTIONS(6041), - [anon_sym_AMP_AMP] = ACTIONS(5731), - [anon_sym_PIPE_PIPE] = ACTIONS(5731), - [anon_sym_QMARK_QMARK] = ACTIONS(5731), - [anon_sym_from] = ACTIONS(5731), - [anon_sym_into] = ACTIONS(5731), - [anon_sym_join] = ACTIONS(5731), - [anon_sym_let] = ACTIONS(5731), - [anon_sym_orderby] = ACTIONS(5731), - [anon_sym_ascending] = ACTIONS(5731), - [anon_sym_descending] = ACTIONS(5731), - [anon_sym_group] = ACTIONS(5731), - [anon_sym_select] = ACTIONS(5731), - [anon_sym_as] = ACTIONS(5733), - [anon_sym_is] = ACTIONS(5731), - [anon_sym_DASH_GT] = ACTIONS(4719), - [anon_sym_with] = ACTIONS(5731), + [sym__identifier_token] = ACTIONS(3798), + [anon_sym_alias] = ACTIONS(3800), + [anon_sym_global] = ACTIONS(3800), + [anon_sym_LPAREN] = ACTIONS(6101), + [anon_sym_ref] = ACTIONS(3802), + [anon_sym_delegate] = ACTIONS(5638), + [anon_sym_file] = ACTIONS(3800), + [anon_sym_readonly] = ACTIONS(6103), + [anon_sym_where] = ACTIONS(3800), + [anon_sym_notnull] = ACTIONS(3800), + [anon_sym_unmanaged] = ACTIONS(3800), + [anon_sym_scoped] = ACTIONS(5700), + [anon_sym_var] = ACTIONS(5642), + [sym_predefined_type] = ACTIONS(5644), + [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), @@ -522308,8 +521735,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3724] = { - [sym_argument_list] = STATE(3886), - [sym_bracketed_argument_list] = STATE(2902), [sym_preproc_region] = STATE(3724), [sym_preproc_endregion] = STATE(3724), [sym_preproc_line] = STATE(3724), @@ -522319,50 +521744,52 @@ 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(5658), - [anon_sym_COMMA] = ACTIONS(5864), - [anon_sym_LPAREN] = ACTIONS(5624), - [anon_sym_LT] = ACTIONS(6017), - [anon_sym_GT] = ACTIONS(6017), - [anon_sym_where] = ACTIONS(5864), - [anon_sym_QMARK] = ACTIONS(6019), - [anon_sym_BANG] = ACTIONS(5666), - [anon_sym_PLUS_PLUS] = ACTIONS(5668), - [anon_sym_DASH_DASH] = ACTIONS(5668), - [anon_sym_PLUS] = ACTIONS(6021), - [anon_sym_DASH] = ACTIONS(6021), - [anon_sym_STAR] = ACTIONS(6023), - [anon_sym_SLASH] = ACTIONS(6025), - [anon_sym_PERCENT] = ACTIONS(6023), - [anon_sym_CARET] = ACTIONS(6027), - [anon_sym_PIPE] = ACTIONS(6029), - [anon_sym_AMP] = ACTIONS(6031), - [anon_sym_LT_LT] = ACTIONS(6033), - [anon_sym_GT_GT] = ACTIONS(6035), - [anon_sym_GT_GT_GT] = ACTIONS(6033), - [anon_sym_EQ_EQ] = ACTIONS(6037), - [anon_sym_BANG_EQ] = ACTIONS(6037), - [anon_sym_GT_EQ] = ACTIONS(6039), - [anon_sym_LT_EQ] = ACTIONS(6039), - [anon_sym_DOT] = ACTIONS(4733), - [anon_sym_switch] = ACTIONS(5688), - [anon_sym_DOT_DOT] = ACTIONS(6041), - [anon_sym_AMP_AMP] = ACTIONS(6043), - [anon_sym_PIPE_PIPE] = ACTIONS(6045), - [anon_sym_QMARK_QMARK] = ACTIONS(6047), - [anon_sym_from] = ACTIONS(5864), - [anon_sym_into] = ACTIONS(5864), - [anon_sym_join] = ACTIONS(5864), - [anon_sym_let] = ACTIONS(5864), - [anon_sym_orderby] = ACTIONS(5864), - [anon_sym_ascending] = ACTIONS(5864), - [anon_sym_descending] = ACTIONS(5864), - [anon_sym_group] = ACTIONS(5864), - [anon_sym_select] = ACTIONS(5864), - [anon_sym_as] = ACTIONS(5692), - [anon_sym_is] = ACTIONS(6049), - [anon_sym_DASH_GT] = ACTIONS(4719), - [anon_sym_with] = ACTIONS(5696), + [anon_sym_LBRACK] = ACTIONS(5402), + [anon_sym_COMMA] = ACTIONS(5402), + [anon_sym_LPAREN] = ACTIONS(5402), + [anon_sym_LT] = ACTIONS(5404), + [anon_sym_GT] = ACTIONS(5404), + [anon_sym_where] = ACTIONS(5402), + [anon_sym_QMARK] = ACTIONS(5404), + [anon_sym_BANG] = ACTIONS(5404), + [anon_sym_PLUS_PLUS] = ACTIONS(5402), + [anon_sym_DASH_DASH] = ACTIONS(5402), + [anon_sym_PLUS] = ACTIONS(5404), + [anon_sym_DASH] = ACTIONS(5404), + [anon_sym_STAR] = ACTIONS(5402), + [anon_sym_SLASH] = ACTIONS(5404), + [anon_sym_PERCENT] = ACTIONS(5402), + [anon_sym_CARET] = ACTIONS(5402), + [anon_sym_PIPE] = ACTIONS(5404), + [anon_sym_AMP] = ACTIONS(5404), + [anon_sym_LT_LT] = ACTIONS(5402), + [anon_sym_GT_GT] = ACTIONS(5404), + [anon_sym_GT_GT_GT] = ACTIONS(5402), + [anon_sym_EQ_EQ] = ACTIONS(5402), + [anon_sym_BANG_EQ] = ACTIONS(5402), + [anon_sym_GT_EQ] = ACTIONS(5402), + [anon_sym_LT_EQ] = ACTIONS(5402), + [anon_sym_DOT] = ACTIONS(5404), + [anon_sym_switch] = ACTIONS(5402), + [anon_sym_DOT_DOT] = ACTIONS(5402), + [anon_sym_and] = ACTIONS(5402), + [anon_sym_or] = ACTIONS(5404), + [anon_sym_AMP_AMP] = ACTIONS(5402), + [anon_sym_PIPE_PIPE] = ACTIONS(5402), + [anon_sym_QMARK_QMARK] = ACTIONS(5402), + [anon_sym_from] = ACTIONS(5402), + [anon_sym_into] = ACTIONS(5402), + [anon_sym_join] = ACTIONS(5402), + [anon_sym_let] = ACTIONS(5402), + [anon_sym_orderby] = ACTIONS(5402), + [anon_sym_ascending] = ACTIONS(5402), + [anon_sym_descending] = ACTIONS(5402), + [anon_sym_group] = ACTIONS(5402), + [anon_sym_select] = ACTIONS(5402), + [anon_sym_as] = ACTIONS(5404), + [anon_sym_is] = ACTIONS(5402), + [anon_sym_DASH_GT] = ACTIONS(5402), + [anon_sym_with] = ACTIONS(5402), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -522375,8 +521802,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3725] = { - [sym_argument_list] = STATE(3886), - [sym_bracketed_argument_list] = STATE(2902), [sym_preproc_region] = STATE(3725), [sym_preproc_endregion] = STATE(3725), [sym_preproc_line] = STATE(3725), @@ -522386,50 +521811,52 @@ 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(5658), - [anon_sym_COMMA] = ACTIONS(5072), - [anon_sym_LPAREN] = ACTIONS(5624), - [anon_sym_LT] = ACTIONS(6017), - [anon_sym_GT] = ACTIONS(6017), - [anon_sym_where] = ACTIONS(5072), - [anon_sym_QMARK] = ACTIONS(6019), - [anon_sym_BANG] = ACTIONS(5666), - [anon_sym_PLUS_PLUS] = ACTIONS(5668), - [anon_sym_DASH_DASH] = ACTIONS(5668), - [anon_sym_PLUS] = ACTIONS(6021), - [anon_sym_DASH] = ACTIONS(6021), - [anon_sym_STAR] = ACTIONS(6023), - [anon_sym_SLASH] = ACTIONS(6025), - [anon_sym_PERCENT] = ACTIONS(6023), - [anon_sym_CARET] = ACTIONS(6027), - [anon_sym_PIPE] = ACTIONS(6029), - [anon_sym_AMP] = ACTIONS(6031), - [anon_sym_LT_LT] = ACTIONS(6033), - [anon_sym_GT_GT] = ACTIONS(6035), - [anon_sym_GT_GT_GT] = ACTIONS(6033), - [anon_sym_EQ_EQ] = ACTIONS(6037), - [anon_sym_BANG_EQ] = ACTIONS(6037), - [anon_sym_GT_EQ] = ACTIONS(6039), - [anon_sym_LT_EQ] = ACTIONS(6039), - [anon_sym_DOT] = ACTIONS(4733), - [anon_sym_switch] = ACTIONS(5688), - [anon_sym_DOT_DOT] = ACTIONS(6041), - [anon_sym_AMP_AMP] = ACTIONS(6043), - [anon_sym_PIPE_PIPE] = ACTIONS(6045), - [anon_sym_QMARK_QMARK] = ACTIONS(6047), - [anon_sym_from] = ACTIONS(5072), - [anon_sym_into] = ACTIONS(5072), - [anon_sym_join] = ACTIONS(5072), - [anon_sym_let] = ACTIONS(5072), - [anon_sym_orderby] = ACTIONS(5072), - [anon_sym_ascending] = ACTIONS(5072), - [anon_sym_descending] = ACTIONS(5072), - [anon_sym_group] = ACTIONS(5072), - [anon_sym_select] = ACTIONS(5072), - [anon_sym_as] = ACTIONS(5692), - [anon_sym_is] = ACTIONS(6049), - [anon_sym_DASH_GT] = ACTIONS(4719), - [anon_sym_with] = ACTIONS(5696), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -522442,8 +521869,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3726] = { - [sym_argument_list] = STATE(3886), - [sym_bracketed_argument_list] = STATE(2902), [sym_preproc_region] = STATE(3726), [sym_preproc_endregion] = STATE(3726), [sym_preproc_line] = STATE(3726), @@ -522453,50 +521878,52 @@ 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), - [anon_sym_LBRACK] = ACTIONS(5658), - [anon_sym_COMMA] = ACTIONS(5882), - [anon_sym_LPAREN] = ACTIONS(5624), - [anon_sym_LT] = ACTIONS(6017), - [anon_sym_GT] = ACTIONS(6017), - [anon_sym_where] = ACTIONS(5882), - [anon_sym_QMARK] = ACTIONS(6019), - [anon_sym_BANG] = ACTIONS(5666), - [anon_sym_PLUS_PLUS] = ACTIONS(5668), - [anon_sym_DASH_DASH] = ACTIONS(5668), - [anon_sym_PLUS] = ACTIONS(6021), - [anon_sym_DASH] = ACTIONS(6021), - [anon_sym_STAR] = ACTIONS(6023), - [anon_sym_SLASH] = ACTIONS(6025), - [anon_sym_PERCENT] = ACTIONS(6023), - [anon_sym_CARET] = ACTIONS(6027), - [anon_sym_PIPE] = ACTIONS(6029), - [anon_sym_AMP] = ACTIONS(6031), - [anon_sym_LT_LT] = ACTIONS(6033), - [anon_sym_GT_GT] = ACTIONS(6035), - [anon_sym_GT_GT_GT] = ACTIONS(6033), - [anon_sym_EQ_EQ] = ACTIONS(6037), - [anon_sym_BANG_EQ] = ACTIONS(6037), - [anon_sym_GT_EQ] = ACTIONS(6039), - [anon_sym_LT_EQ] = ACTIONS(6039), - [anon_sym_DOT] = ACTIONS(4733), - [anon_sym_switch] = ACTIONS(5688), - [anon_sym_DOT_DOT] = ACTIONS(6041), - [anon_sym_AMP_AMP] = ACTIONS(6043), - [anon_sym_PIPE_PIPE] = ACTIONS(6045), - [anon_sym_QMARK_QMARK] = ACTIONS(6047), - [anon_sym_from] = ACTIONS(5882), - [anon_sym_into] = ACTIONS(5882), - [anon_sym_join] = ACTIONS(5882), - [anon_sym_let] = ACTIONS(5882), - [anon_sym_orderby] = ACTIONS(5882), - [anon_sym_ascending] = ACTIONS(5882), - [anon_sym_descending] = ACTIONS(5882), - [anon_sym_group] = ACTIONS(5882), - [anon_sym_select] = ACTIONS(5882), - [anon_sym_as] = ACTIONS(5692), - [anon_sym_is] = ACTIONS(6049), - [anon_sym_DASH_GT] = ACTIONS(4719), - [anon_sym_with] = ACTIONS(5696), + [anon_sym_LBRACK] = ACTIONS(5084), + [anon_sym_COMMA] = ACTIONS(5084), + [anon_sym_LPAREN] = ACTIONS(5084), + [anon_sym_LT] = ACTIONS(5086), + [anon_sym_GT] = ACTIONS(5086), + [anon_sym_where] = ACTIONS(5084), + [anon_sym_QMARK] = ACTIONS(5086), + [anon_sym_BANG] = ACTIONS(5086), + [anon_sym_PLUS_PLUS] = ACTIONS(5084), + [anon_sym_DASH_DASH] = ACTIONS(5084), + [anon_sym_PLUS] = ACTIONS(5086), + [anon_sym_DASH] = ACTIONS(5086), + [anon_sym_STAR] = ACTIONS(5084), + [anon_sym_SLASH] = ACTIONS(5086), + [anon_sym_PERCENT] = ACTIONS(5084), + [anon_sym_CARET] = ACTIONS(5084), + [anon_sym_PIPE] = ACTIONS(5086), + [anon_sym_AMP] = ACTIONS(5086), + [anon_sym_LT_LT] = ACTIONS(5084), + [anon_sym_GT_GT] = ACTIONS(5086), + [anon_sym_GT_GT_GT] = ACTIONS(5084), + [anon_sym_EQ_EQ] = ACTIONS(5084), + [anon_sym_BANG_EQ] = ACTIONS(5084), + [anon_sym_GT_EQ] = ACTIONS(5084), + [anon_sym_LT_EQ] = ACTIONS(5084), + [anon_sym_DOT] = ACTIONS(5086), + [anon_sym_switch] = ACTIONS(5084), + [anon_sym_DOT_DOT] = ACTIONS(5084), + [anon_sym_and] = ACTIONS(5084), + [anon_sym_or] = ACTIONS(5086), + [anon_sym_AMP_AMP] = ACTIONS(5084), + [anon_sym_PIPE_PIPE] = ACTIONS(5084), + [anon_sym_QMARK_QMARK] = ACTIONS(5084), + [anon_sym_from] = ACTIONS(5084), + [anon_sym_into] = ACTIONS(5084), + [anon_sym_join] = ACTIONS(5084), + [anon_sym_let] = ACTIONS(5084), + [anon_sym_orderby] = ACTIONS(5084), + [anon_sym_ascending] = ACTIONS(5084), + [anon_sym_descending] = ACTIONS(5084), + [anon_sym_group] = ACTIONS(5084), + [anon_sym_select] = ACTIONS(5084), + [anon_sym_as] = ACTIONS(5086), + [anon_sym_is] = ACTIONS(5084), + [anon_sym_DASH_GT] = ACTIONS(5084), + [anon_sym_with] = ACTIONS(5084), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -522509,24 +521936,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3727] = { - [sym__name] = STATE(3453), - [sym_alias_qualified_name] = STATE(3251), - [sym__simple_name] = STATE(3251), - [sym_qualified_name] = STATE(3251), - [sym_generic_name] = STATE(3246), - [sym_type] = STATE(3273), - [sym_implicit_type] = STATE(3253), - [sym_array_type] = STATE(3255), - [sym__array_base_type] = STATE(7101), - [sym_nullable_type] = STATE(3257), - [sym_pointer_type] = STATE(3257), - [sym__pointer_base_type] = STATE(7546), - [sym_function_pointer_type] = STATE(3257), - [sym_ref_type] = STATE(3253), - [sym_scoped_type] = STATE(3253), - [sym_tuple_type] = STATE(3258), - [sym_identifier] = STATE(3167), - [sym__reserved_identifier] = STATE(3225), [sym_preproc_region] = STATE(3727), [sym_preproc_endregion] = STATE(3727), [sym_preproc_line] = STATE(3727), @@ -522536,34 +521945,52 @@ 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), - [sym__identifier_token] = ACTIONS(3788), - [anon_sym_alias] = ACTIONS(3790), - [anon_sym_global] = ACTIONS(3790), - [anon_sym_LPAREN] = ACTIONS(6059), - [anon_sym_ref] = ACTIONS(3792), - [anon_sym_delegate] = ACTIONS(5818), - [anon_sym_file] = ACTIONS(3790), - [anon_sym_readonly] = ACTIONS(6061), - [anon_sym_where] = ACTIONS(3790), - [anon_sym_notnull] = ACTIONS(3790), - [anon_sym_unmanaged] = ACTIONS(3790), - [anon_sym_scoped] = ACTIONS(5820), - [anon_sym_var] = ACTIONS(5822), - [sym_predefined_type] = ACTIONS(5824), - [anon_sym_yield] = ACTIONS(3790), - [anon_sym_when] = ACTIONS(3790), - [anon_sym_from] = ACTIONS(3790), - [anon_sym_into] = ACTIONS(3790), - [anon_sym_join] = ACTIONS(3790), - [anon_sym_on] = ACTIONS(3790), - [anon_sym_equals] = ACTIONS(3790), - [anon_sym_let] = ACTIONS(3790), - [anon_sym_orderby] = ACTIONS(3790), - [anon_sym_ascending] = ACTIONS(3790), - [anon_sym_descending] = ACTIONS(3790), - [anon_sym_group] = ACTIONS(3790), - [anon_sym_by] = ACTIONS(3790), - [anon_sym_select] = ACTIONS(3790), + [anon_sym_LBRACK] = ACTIONS(5420), + [anon_sym_COMMA] = ACTIONS(5420), + [anon_sym_LPAREN] = ACTIONS(5420), + [anon_sym_LT] = ACTIONS(5422), + [anon_sym_GT] = ACTIONS(5422), + [anon_sym_where] = ACTIONS(5420), + [anon_sym_QMARK] = ACTIONS(5422), + [anon_sym_BANG] = ACTIONS(5422), + [anon_sym_PLUS_PLUS] = ACTIONS(5420), + [anon_sym_DASH_DASH] = ACTIONS(5420), + [anon_sym_PLUS] = ACTIONS(5422), + [anon_sym_DASH] = ACTIONS(5422), + [anon_sym_STAR] = ACTIONS(5420), + [anon_sym_SLASH] = ACTIONS(5422), + [anon_sym_PERCENT] = ACTIONS(5420), + [anon_sym_CARET] = ACTIONS(5420), + [anon_sym_PIPE] = ACTIONS(5422), + [anon_sym_AMP] = ACTIONS(5422), + [anon_sym_LT_LT] = ACTIONS(5420), + [anon_sym_GT_GT] = ACTIONS(5422), + [anon_sym_GT_GT_GT] = ACTIONS(5420), + [anon_sym_EQ_EQ] = ACTIONS(5420), + [anon_sym_BANG_EQ] = ACTIONS(5420), + [anon_sym_GT_EQ] = ACTIONS(5420), + [anon_sym_LT_EQ] = ACTIONS(5420), + [anon_sym_DOT] = ACTIONS(5422), + [anon_sym_switch] = ACTIONS(5420), + [anon_sym_DOT_DOT] = ACTIONS(5420), + [anon_sym_and] = ACTIONS(5420), + [anon_sym_or] = ACTIONS(5422), + [anon_sym_AMP_AMP] = ACTIONS(5420), + [anon_sym_PIPE_PIPE] = ACTIONS(5420), + [anon_sym_QMARK_QMARK] = ACTIONS(5420), + [anon_sym_from] = ACTIONS(5420), + [anon_sym_into] = ACTIONS(5420), + [anon_sym_join] = ACTIONS(5420), + [anon_sym_let] = ACTIONS(5420), + [anon_sym_orderby] = ACTIONS(5420), + [anon_sym_ascending] = ACTIONS(5420), + [anon_sym_descending] = ACTIONS(5420), + [anon_sym_group] = ACTIONS(5420), + [anon_sym_select] = ACTIONS(5420), + [anon_sym_as] = ACTIONS(5422), + [anon_sym_is] = ACTIONS(5420), + [anon_sym_DASH_GT] = ACTIONS(5420), + [anon_sym_with] = ACTIONS(5420), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -522585,52 +522012,52 @@ 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), - [anon_sym_LBRACK] = ACTIONS(5064), - [anon_sym_COMMA] = ACTIONS(5064), - [anon_sym_LPAREN] = ACTIONS(5064), - [anon_sym_LT] = ACTIONS(5066), - [anon_sym_GT] = ACTIONS(5066), - [anon_sym_where] = ACTIONS(5064), - [anon_sym_QMARK] = ACTIONS(5066), - [anon_sym_BANG] = ACTIONS(5066), - [anon_sym_PLUS_PLUS] = ACTIONS(5064), - [anon_sym_DASH_DASH] = ACTIONS(5064), - [anon_sym_PLUS] = ACTIONS(5066), - [anon_sym_DASH] = ACTIONS(5066), - [anon_sym_STAR] = ACTIONS(5064), - [anon_sym_SLASH] = ACTIONS(5066), - [anon_sym_PERCENT] = ACTIONS(5064), - [anon_sym_CARET] = ACTIONS(5064), - [anon_sym_PIPE] = ACTIONS(5066), - [anon_sym_AMP] = ACTIONS(5066), - [anon_sym_LT_LT] = ACTIONS(5064), - [anon_sym_GT_GT] = ACTIONS(5066), - [anon_sym_GT_GT_GT] = ACTIONS(5064), - [anon_sym_EQ_EQ] = ACTIONS(5064), - [anon_sym_BANG_EQ] = ACTIONS(5064), - [anon_sym_GT_EQ] = ACTIONS(5064), - [anon_sym_LT_EQ] = ACTIONS(5064), - [anon_sym_DOT] = ACTIONS(5066), - [anon_sym_switch] = ACTIONS(5064), - [anon_sym_DOT_DOT] = ACTIONS(5064), - [anon_sym_and] = ACTIONS(5064), - [anon_sym_or] = ACTIONS(5066), - [anon_sym_AMP_AMP] = ACTIONS(5064), - [anon_sym_PIPE_PIPE] = ACTIONS(5064), - [anon_sym_QMARK_QMARK] = ACTIONS(5064), - [anon_sym_from] = ACTIONS(5064), - [anon_sym_into] = ACTIONS(5064), - [anon_sym_join] = ACTIONS(5064), - [anon_sym_let] = ACTIONS(5064), - [anon_sym_orderby] = ACTIONS(5064), - [anon_sym_ascending] = ACTIONS(5064), - [anon_sym_descending] = ACTIONS(5064), - [anon_sym_group] = ACTIONS(5064), - [anon_sym_select] = ACTIONS(5064), - [anon_sym_as] = ACTIONS(5066), - [anon_sym_is] = ACTIONS(5064), - [anon_sym_DASH_GT] = ACTIONS(5064), - [anon_sym_with] = ACTIONS(5064), + [anon_sym_LBRACK] = ACTIONS(5318), + [anon_sym_COMMA] = ACTIONS(5318), + [anon_sym_LPAREN] = ACTIONS(5318), + [anon_sym_LT] = ACTIONS(5320), + [anon_sym_GT] = ACTIONS(5320), + [anon_sym_where] = ACTIONS(5318), + [anon_sym_QMARK] = ACTIONS(5320), + [anon_sym_BANG] = ACTIONS(5320), + [anon_sym_PLUS_PLUS] = ACTIONS(5318), + [anon_sym_DASH_DASH] = ACTIONS(5318), + [anon_sym_PLUS] = ACTIONS(5320), + [anon_sym_DASH] = ACTIONS(5320), + [anon_sym_STAR] = ACTIONS(5318), + [anon_sym_SLASH] = ACTIONS(5320), + [anon_sym_PERCENT] = ACTIONS(5318), + [anon_sym_CARET] = ACTIONS(5318), + [anon_sym_PIPE] = ACTIONS(5320), + [anon_sym_AMP] = ACTIONS(5320), + [anon_sym_LT_LT] = ACTIONS(5318), + [anon_sym_GT_GT] = ACTIONS(5320), + [anon_sym_GT_GT_GT] = ACTIONS(5318), + [anon_sym_EQ_EQ] = ACTIONS(5318), + [anon_sym_BANG_EQ] = ACTIONS(5318), + [anon_sym_GT_EQ] = ACTIONS(5318), + [anon_sym_LT_EQ] = ACTIONS(5318), + [anon_sym_DOT] = ACTIONS(5320), + [anon_sym_switch] = ACTIONS(5318), + [anon_sym_DOT_DOT] = ACTIONS(5318), + [anon_sym_and] = ACTIONS(5318), + [anon_sym_or] = ACTIONS(5320), + [anon_sym_AMP_AMP] = ACTIONS(5318), + [anon_sym_PIPE_PIPE] = ACTIONS(5318), + [anon_sym_QMARK_QMARK] = ACTIONS(5318), + [anon_sym_from] = ACTIONS(5318), + [anon_sym_into] = ACTIONS(5318), + [anon_sym_join] = ACTIONS(5318), + [anon_sym_let] = ACTIONS(5318), + [anon_sym_orderby] = ACTIONS(5318), + [anon_sym_ascending] = ACTIONS(5318), + [anon_sym_descending] = ACTIONS(5318), + [anon_sym_group] = ACTIONS(5318), + [anon_sym_select] = ACTIONS(5318), + [anon_sym_as] = ACTIONS(5320), + [anon_sym_is] = ACTIONS(5318), + [anon_sym_DASH_GT] = ACTIONS(5318), + [anon_sym_with] = ACTIONS(5318), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -522643,6 +522070,25 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3729] = { + [sym_variable_declaration] = STATE(7307), + [sym__name] = STATE(4369), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(4068), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(4073), + [sym_type] = STATE(5901), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_identifier] = STATE(4081), + [sym__reserved_identifier] = STATE(3654), [sym_preproc_region] = STATE(3729), [sym_preproc_endregion] = STATE(3729), [sym_preproc_line] = STATE(3729), @@ -522652,52 +522098,33 @@ 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), - [anon_sym_LBRACK] = ACTIONS(5080), - [anon_sym_COMMA] = ACTIONS(5080), - [anon_sym_LPAREN] = ACTIONS(5080), - [anon_sym_LT] = ACTIONS(5082), - [anon_sym_GT] = ACTIONS(5082), - [anon_sym_where] = ACTIONS(5080), - [anon_sym_QMARK] = ACTIONS(5082), - [anon_sym_BANG] = ACTIONS(5082), - [anon_sym_PLUS_PLUS] = ACTIONS(5080), - [anon_sym_DASH_DASH] = ACTIONS(5080), - [anon_sym_PLUS] = ACTIONS(5082), - [anon_sym_DASH] = ACTIONS(5082), - [anon_sym_STAR] = ACTIONS(5080), - [anon_sym_SLASH] = ACTIONS(5082), - [anon_sym_PERCENT] = ACTIONS(5080), - [anon_sym_CARET] = ACTIONS(5080), - [anon_sym_PIPE] = ACTIONS(5082), - [anon_sym_AMP] = ACTIONS(5082), - [anon_sym_LT_LT] = ACTIONS(5080), - [anon_sym_GT_GT] = ACTIONS(5082), - [anon_sym_GT_GT_GT] = ACTIONS(5080), - [anon_sym_EQ_EQ] = ACTIONS(5080), - [anon_sym_BANG_EQ] = ACTIONS(5080), - [anon_sym_GT_EQ] = ACTIONS(5080), - [anon_sym_LT_EQ] = ACTIONS(5080), - [anon_sym_DOT] = ACTIONS(5082), - [anon_sym_switch] = ACTIONS(5080), - [anon_sym_DOT_DOT] = ACTIONS(5080), - [anon_sym_and] = ACTIONS(5080), - [anon_sym_or] = ACTIONS(5082), - [anon_sym_AMP_AMP] = ACTIONS(5080), - [anon_sym_PIPE_PIPE] = ACTIONS(5080), - [anon_sym_QMARK_QMARK] = ACTIONS(5080), - [anon_sym_from] = ACTIONS(5080), - [anon_sym_into] = ACTIONS(5080), - [anon_sym_join] = ACTIONS(5080), - [anon_sym_let] = ACTIONS(5080), - [anon_sym_orderby] = ACTIONS(5080), - [anon_sym_ascending] = ACTIONS(5080), - [anon_sym_descending] = ACTIONS(5080), - [anon_sym_group] = ACTIONS(5080), - [anon_sym_select] = ACTIONS(5080), - [anon_sym_as] = ACTIONS(5082), - [anon_sym_is] = ACTIONS(5080), - [anon_sym_DASH_GT] = ACTIONS(5080), - [anon_sym_with] = ACTIONS(5080), + [sym__identifier_token] = ACTIONS(2965), + [anon_sym_alias] = ACTIONS(2969), + [anon_sym_global] = ACTIONS(2969), + [anon_sym_LPAREN] = ACTIONS(2977), + [anon_sym_ref] = ACTIONS(3436), + [anon_sym_delegate] = ACTIONS(3438), + [anon_sym_file] = ACTIONS(2969), + [anon_sym_where] = ACTIONS(2969), + [anon_sym_notnull] = ACTIONS(2969), + [anon_sym_unmanaged] = ACTIONS(2969), + [anon_sym_scoped] = ACTIONS(2993), + [anon_sym_var] = ACTIONS(2995), + [sym_predefined_type] = ACTIONS(2997), + [anon_sym_yield] = ACTIONS(2969), + [anon_sym_when] = ACTIONS(2969), + [anon_sym_from] = ACTIONS(2969), + [anon_sym_into] = ACTIONS(2969), + [anon_sym_join] = ACTIONS(2969), + [anon_sym_on] = ACTIONS(2969), + [anon_sym_equals] = ACTIONS(2969), + [anon_sym_let] = ACTIONS(2969), + [anon_sym_orderby] = ACTIONS(2969), + [anon_sym_ascending] = ACTIONS(2969), + [anon_sym_descending] = ACTIONS(2969), + [anon_sym_group] = ACTIONS(2969), + [anon_sym_by] = ACTIONS(2969), + [anon_sym_select] = ACTIONS(2969), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -522710,8 +522137,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3730] = { - [sym_argument_list] = STATE(3886), - [sym_bracketed_argument_list] = STATE(2902), [sym_preproc_region] = STATE(3730), [sym_preproc_endregion] = STATE(3730), [sym_preproc_line] = STATE(3730), @@ -522721,50 +522146,52 @@ 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), - [anon_sym_LBRACK] = ACTIONS(5658), - [anon_sym_COMMA] = ACTIONS(5660), - [anon_sym_LPAREN] = ACTIONS(5624), - [anon_sym_LT] = ACTIONS(5664), - [anon_sym_GT] = ACTIONS(5664), - [anon_sym_where] = ACTIONS(5660), - [anon_sym_QMARK] = ACTIONS(5664), - [anon_sym_BANG] = ACTIONS(5666), - [anon_sym_PLUS_PLUS] = ACTIONS(5668), - [anon_sym_DASH_DASH] = ACTIONS(5668), - [anon_sym_PLUS] = ACTIONS(6021), - [anon_sym_DASH] = ACTIONS(6021), - [anon_sym_STAR] = ACTIONS(6023), - [anon_sym_SLASH] = ACTIONS(6025), - [anon_sym_PERCENT] = ACTIONS(6023), - [anon_sym_CARET] = ACTIONS(5660), - [anon_sym_PIPE] = ACTIONS(5664), - [anon_sym_AMP] = ACTIONS(5664), - [anon_sym_LT_LT] = ACTIONS(6033), - [anon_sym_GT_GT] = ACTIONS(6035), - [anon_sym_GT_GT_GT] = ACTIONS(6033), - [anon_sym_EQ_EQ] = ACTIONS(5660), - [anon_sym_BANG_EQ] = ACTIONS(5660), - [anon_sym_GT_EQ] = ACTIONS(5660), - [anon_sym_LT_EQ] = ACTIONS(5660), - [anon_sym_DOT] = ACTIONS(4733), - [anon_sym_switch] = ACTIONS(5688), - [anon_sym_DOT_DOT] = ACTIONS(6041), - [anon_sym_AMP_AMP] = ACTIONS(5660), - [anon_sym_PIPE_PIPE] = ACTIONS(5660), - [anon_sym_QMARK_QMARK] = ACTIONS(5660), - [anon_sym_from] = ACTIONS(5660), - [anon_sym_into] = ACTIONS(5660), - [anon_sym_join] = ACTIONS(5660), - [anon_sym_let] = ACTIONS(5660), - [anon_sym_orderby] = ACTIONS(5660), - [anon_sym_ascending] = ACTIONS(5660), - [anon_sym_descending] = ACTIONS(5660), - [anon_sym_group] = ACTIONS(5660), - [anon_sym_select] = ACTIONS(5660), - [anon_sym_as] = ACTIONS(5664), - [anon_sym_is] = ACTIONS(5660), - [anon_sym_DASH_GT] = ACTIONS(4719), - [anon_sym_with] = ACTIONS(5696), + [sym__identifier_token] = ACTIONS(5784), + [anon_sym_extern] = ACTIONS(3466), + [anon_sym_alias] = ACTIONS(5784), + [anon_sym_global] = ACTIONS(5784), + [anon_sym_unsafe] = ACTIONS(5784), + [anon_sym_static] = ACTIONS(5784), + [anon_sym_LPAREN] = ACTIONS(5128), + [anon_sym_ref] = ACTIONS(3466), + [anon_sym_delegate] = ACTIONS(3466), + [anon_sym_abstract] = ACTIONS(3466), + [anon_sym_async] = ACTIONS(3466), + [anon_sym_const] = ACTIONS(3466), + [anon_sym_file] = ACTIONS(5784), + [anon_sym_fixed] = ACTIONS(3466), + [anon_sym_internal] = ACTIONS(3466), + [anon_sym_new] = ACTIONS(3466), + [anon_sym_override] = ACTIONS(3466), + [anon_sym_partial] = ACTIONS(3466), + [anon_sym_private] = ACTIONS(3466), + [anon_sym_protected] = ACTIONS(3466), + [anon_sym_public] = ACTIONS(3466), + [anon_sym_readonly] = ACTIONS(3466), + [anon_sym_required] = ACTIONS(3466), + [anon_sym_sealed] = ACTIONS(3466), + [anon_sym_virtual] = ACTIONS(3466), + [anon_sym_volatile] = ACTIONS(3466), + [anon_sym_where] = ACTIONS(5784), + [anon_sym_notnull] = ACTIONS(5784), + [anon_sym_unmanaged] = ACTIONS(5784), + [anon_sym_scoped] = ACTIONS(5784), + [anon_sym_var] = ACTIONS(5784), + [sym_predefined_type] = ACTIONS(3466), + [anon_sym_yield] = ACTIONS(5784), + [anon_sym_when] = ACTIONS(5784), + [anon_sym_from] = ACTIONS(5784), + [anon_sym_into] = ACTIONS(5784), + [anon_sym_join] = ACTIONS(5784), + [anon_sym_on] = ACTIONS(5784), + [anon_sym_equals] = ACTIONS(5784), + [anon_sym_let] = ACTIONS(5784), + [anon_sym_orderby] = ACTIONS(5784), + [anon_sym_ascending] = ACTIONS(5784), + [anon_sym_descending] = ACTIONS(5784), + [anon_sym_group] = ACTIONS(5784), + [anon_sym_by] = ACTIONS(5784), + [anon_sym_select] = ACTIONS(5784), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -522777,8 +522204,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3731] = { - [sym_argument_list] = STATE(3886), - [sym_bracketed_argument_list] = STATE(2902), [sym_preproc_region] = STATE(3731), [sym_preproc_endregion] = STATE(3731), [sym_preproc_line] = STATE(3731), @@ -522788,50 +522213,52 @@ 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(5658), - [anon_sym_COMMA] = ACTIONS(5660), - [anon_sym_LPAREN] = ACTIONS(5624), - [anon_sym_LT] = ACTIONS(5664), - [anon_sym_GT] = ACTIONS(5664), - [anon_sym_where] = ACTIONS(5660), - [anon_sym_QMARK] = ACTIONS(5664), - [anon_sym_BANG] = ACTIONS(5666), - [anon_sym_PLUS_PLUS] = ACTIONS(5668), - [anon_sym_DASH_DASH] = ACTIONS(5668), - [anon_sym_PLUS] = ACTIONS(5664), - [anon_sym_DASH] = ACTIONS(5664), - [anon_sym_STAR] = ACTIONS(6023), - [anon_sym_SLASH] = ACTIONS(6025), - [anon_sym_PERCENT] = ACTIONS(6023), - [anon_sym_CARET] = ACTIONS(5660), - [anon_sym_PIPE] = ACTIONS(5664), - [anon_sym_AMP] = ACTIONS(5664), - [anon_sym_LT_LT] = ACTIONS(5660), - [anon_sym_GT_GT] = ACTIONS(5664), - [anon_sym_GT_GT_GT] = ACTIONS(5660), - [anon_sym_EQ_EQ] = ACTIONS(5660), - [anon_sym_BANG_EQ] = ACTIONS(5660), - [anon_sym_GT_EQ] = ACTIONS(5660), - [anon_sym_LT_EQ] = ACTIONS(5660), - [anon_sym_DOT] = ACTIONS(4733), - [anon_sym_switch] = ACTIONS(5688), - [anon_sym_DOT_DOT] = ACTIONS(6041), - [anon_sym_AMP_AMP] = ACTIONS(5660), - [anon_sym_PIPE_PIPE] = ACTIONS(5660), - [anon_sym_QMARK_QMARK] = ACTIONS(5660), - [anon_sym_from] = ACTIONS(5660), - [anon_sym_into] = ACTIONS(5660), - [anon_sym_join] = ACTIONS(5660), - [anon_sym_let] = ACTIONS(5660), - [anon_sym_orderby] = ACTIONS(5660), - [anon_sym_ascending] = ACTIONS(5660), - [anon_sym_descending] = ACTIONS(5660), - [anon_sym_group] = ACTIONS(5660), - [anon_sym_select] = ACTIONS(5660), - [anon_sym_as] = ACTIONS(5664), - [anon_sym_is] = ACTIONS(5660), - [anon_sym_DASH_GT] = ACTIONS(4719), - [anon_sym_with] = ACTIONS(5696), + [anon_sym_LBRACK] = ACTIONS(2951), + [anon_sym_COMMA] = ACTIONS(2951), + [anon_sym_LPAREN] = ACTIONS(2951), + [anon_sym_LT] = ACTIONS(2949), + [anon_sym_GT] = ACTIONS(2949), + [anon_sym_where] = ACTIONS(2951), + [anon_sym_QMARK] = ACTIONS(2949), + [anon_sym_BANG] = ACTIONS(2949), + [anon_sym_PLUS_PLUS] = ACTIONS(2951), + [anon_sym_DASH_DASH] = ACTIONS(2951), + [anon_sym_PLUS] = ACTIONS(2949), + [anon_sym_DASH] = ACTIONS(2949), + [anon_sym_STAR] = ACTIONS(2951), + [anon_sym_SLASH] = ACTIONS(2949), + [anon_sym_PERCENT] = ACTIONS(2951), + [anon_sym_CARET] = ACTIONS(2951), + [anon_sym_PIPE] = ACTIONS(2949), + [anon_sym_AMP] = ACTIONS(2949), + [anon_sym_LT_LT] = ACTIONS(2951), + [anon_sym_GT_GT] = ACTIONS(2949), + [anon_sym_GT_GT_GT] = ACTIONS(2951), + [anon_sym_EQ_EQ] = ACTIONS(2951), + [anon_sym_BANG_EQ] = ACTIONS(2951), + [anon_sym_GT_EQ] = ACTIONS(2951), + [anon_sym_LT_EQ] = ACTIONS(2951), + [anon_sym_DOT] = ACTIONS(2949), + [anon_sym_switch] = ACTIONS(2951), + [anon_sym_DOT_DOT] = ACTIONS(2951), + [anon_sym_and] = ACTIONS(2951), + [anon_sym_or] = ACTIONS(2949), + [anon_sym_AMP_AMP] = ACTIONS(2951), + [anon_sym_PIPE_PIPE] = ACTIONS(2951), + [anon_sym_QMARK_QMARK] = ACTIONS(2951), + [anon_sym_from] = ACTIONS(2951), + [anon_sym_into] = ACTIONS(2951), + [anon_sym_join] = ACTIONS(2951), + [anon_sym_let] = ACTIONS(2951), + [anon_sym_orderby] = ACTIONS(2951), + [anon_sym_ascending] = ACTIONS(2951), + [anon_sym_descending] = ACTIONS(2951), + [anon_sym_group] = ACTIONS(2951), + [anon_sym_select] = ACTIONS(2951), + [anon_sym_as] = ACTIONS(2949), + [anon_sym_is] = ACTIONS(2951), + [anon_sym_DASH_GT] = ACTIONS(2951), + [anon_sym_with] = ACTIONS(2951), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -522844,8 +522271,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3732] = { - [sym_argument_list] = STATE(3886), - [sym_bracketed_argument_list] = STATE(2902), [sym_preproc_region] = STATE(3732), [sym_preproc_endregion] = STATE(3732), [sym_preproc_line] = STATE(3732), @@ -522855,50 +522280,52 @@ 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(5658), - [anon_sym_COMMA] = ACTIONS(5660), - [anon_sym_LPAREN] = ACTIONS(5624), - [anon_sym_LT] = ACTIONS(5664), - [anon_sym_GT] = ACTIONS(5664), - [anon_sym_where] = ACTIONS(5660), - [anon_sym_QMARK] = ACTIONS(5664), - [anon_sym_BANG] = ACTIONS(5666), - [anon_sym_PLUS_PLUS] = ACTIONS(5668), - [anon_sym_DASH_DASH] = ACTIONS(5668), - [anon_sym_PLUS] = ACTIONS(5664), - [anon_sym_DASH] = ACTIONS(5664), - [anon_sym_STAR] = ACTIONS(5660), - [anon_sym_SLASH] = ACTIONS(5664), - [anon_sym_PERCENT] = ACTIONS(5660), - [anon_sym_CARET] = ACTIONS(5660), - [anon_sym_PIPE] = ACTIONS(5664), - [anon_sym_AMP] = ACTIONS(5664), - [anon_sym_LT_LT] = ACTIONS(5660), - [anon_sym_GT_GT] = ACTIONS(5664), - [anon_sym_GT_GT_GT] = ACTIONS(5660), - [anon_sym_EQ_EQ] = ACTIONS(5660), - [anon_sym_BANG_EQ] = ACTIONS(5660), - [anon_sym_GT_EQ] = ACTIONS(5660), - [anon_sym_LT_EQ] = ACTIONS(5660), - [anon_sym_DOT] = ACTIONS(4733), - [anon_sym_switch] = ACTIONS(5688), - [anon_sym_DOT_DOT] = ACTIONS(6041), - [anon_sym_AMP_AMP] = ACTIONS(5660), - [anon_sym_PIPE_PIPE] = ACTIONS(5660), - [anon_sym_QMARK_QMARK] = ACTIONS(5660), - [anon_sym_from] = ACTIONS(5660), - [anon_sym_into] = ACTIONS(5660), - [anon_sym_join] = ACTIONS(5660), - [anon_sym_let] = ACTIONS(5660), - [anon_sym_orderby] = ACTIONS(5660), - [anon_sym_ascending] = ACTIONS(5660), - [anon_sym_descending] = ACTIONS(5660), - [anon_sym_group] = ACTIONS(5660), - [anon_sym_select] = ACTIONS(5660), - [anon_sym_as] = ACTIONS(5664), - [anon_sym_is] = ACTIONS(5660), - [anon_sym_DASH_GT] = ACTIONS(4719), - [anon_sym_with] = ACTIONS(5696), + [anon_sym_LBRACK] = ACTIONS(5358), + [anon_sym_COMMA] = ACTIONS(5358), + [anon_sym_LPAREN] = ACTIONS(5358), + [anon_sym_LT] = ACTIONS(5360), + [anon_sym_GT] = ACTIONS(5360), + [anon_sym_where] = ACTIONS(5358), + [anon_sym_QMARK] = ACTIONS(5360), + [anon_sym_BANG] = ACTIONS(5360), + [anon_sym_PLUS_PLUS] = ACTIONS(5358), + [anon_sym_DASH_DASH] = ACTIONS(5358), + [anon_sym_PLUS] = ACTIONS(5360), + [anon_sym_DASH] = ACTIONS(5360), + [anon_sym_STAR] = ACTIONS(5358), + [anon_sym_SLASH] = ACTIONS(5360), + [anon_sym_PERCENT] = ACTIONS(5358), + [anon_sym_CARET] = ACTIONS(5358), + [anon_sym_PIPE] = ACTIONS(5360), + [anon_sym_AMP] = ACTIONS(5360), + [anon_sym_LT_LT] = ACTIONS(5358), + [anon_sym_GT_GT] = ACTIONS(5360), + [anon_sym_GT_GT_GT] = ACTIONS(5358), + [anon_sym_EQ_EQ] = ACTIONS(5358), + [anon_sym_BANG_EQ] = ACTIONS(5358), + [anon_sym_GT_EQ] = ACTIONS(5358), + [anon_sym_LT_EQ] = ACTIONS(5358), + [anon_sym_DOT] = ACTIONS(5360), + [anon_sym_switch] = ACTIONS(5358), + [anon_sym_DOT_DOT] = ACTIONS(5358), + [anon_sym_and] = ACTIONS(6099), + [anon_sym_or] = ACTIONS(6105), + [anon_sym_AMP_AMP] = ACTIONS(5358), + [anon_sym_PIPE_PIPE] = ACTIONS(5358), + [anon_sym_QMARK_QMARK] = ACTIONS(5358), + [anon_sym_from] = ACTIONS(5358), + [anon_sym_into] = ACTIONS(5358), + [anon_sym_join] = ACTIONS(5358), + [anon_sym_let] = ACTIONS(5358), + [anon_sym_orderby] = ACTIONS(5358), + [anon_sym_ascending] = ACTIONS(5358), + [anon_sym_descending] = ACTIONS(5358), + [anon_sym_group] = ACTIONS(5358), + [anon_sym_select] = ACTIONS(5358), + [anon_sym_as] = ACTIONS(5360), + [anon_sym_is] = ACTIONS(5358), + [anon_sym_DASH_GT] = ACTIONS(5358), + [anon_sym_with] = ACTIONS(5358), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -522911,8 +522338,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3733] = { - [sym_argument_list] = STATE(3886), - [sym_bracketed_argument_list] = STATE(2902), [sym_preproc_region] = STATE(3733), [sym_preproc_endregion] = STATE(3733), [sym_preproc_line] = STATE(3733), @@ -522922,50 +522347,52 @@ 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(5658), - [anon_sym_COMMA] = ACTIONS(5660), - [anon_sym_LPAREN] = ACTIONS(5624), - [anon_sym_LT] = ACTIONS(5664), - [anon_sym_GT] = ACTIONS(5664), - [anon_sym_where] = ACTIONS(5660), - [anon_sym_QMARK] = ACTIONS(5664), - [anon_sym_BANG] = ACTIONS(5666), - [anon_sym_PLUS_PLUS] = ACTIONS(5668), - [anon_sym_DASH_DASH] = ACTIONS(5668), - [anon_sym_PLUS] = ACTIONS(6021), - [anon_sym_DASH] = ACTIONS(6021), - [anon_sym_STAR] = ACTIONS(6023), - [anon_sym_SLASH] = ACTIONS(6025), - [anon_sym_PERCENT] = ACTIONS(6023), - [anon_sym_CARET] = ACTIONS(5660), - [anon_sym_PIPE] = ACTIONS(5664), - [anon_sym_AMP] = ACTIONS(5664), - [anon_sym_LT_LT] = ACTIONS(5660), - [anon_sym_GT_GT] = ACTIONS(5664), - [anon_sym_GT_GT_GT] = ACTIONS(5660), - [anon_sym_EQ_EQ] = ACTIONS(5660), - [anon_sym_BANG_EQ] = ACTIONS(5660), - [anon_sym_GT_EQ] = ACTIONS(5660), - [anon_sym_LT_EQ] = ACTIONS(5660), - [anon_sym_DOT] = ACTIONS(4733), - [anon_sym_switch] = ACTIONS(5688), - [anon_sym_DOT_DOT] = ACTIONS(6041), - [anon_sym_AMP_AMP] = ACTIONS(5660), - [anon_sym_PIPE_PIPE] = ACTIONS(5660), - [anon_sym_QMARK_QMARK] = ACTIONS(5660), - [anon_sym_from] = ACTIONS(5660), - [anon_sym_into] = ACTIONS(5660), - [anon_sym_join] = ACTIONS(5660), - [anon_sym_let] = ACTIONS(5660), - [anon_sym_orderby] = ACTIONS(5660), - [anon_sym_ascending] = ACTIONS(5660), - [anon_sym_descending] = ACTIONS(5660), - [anon_sym_group] = ACTIONS(5660), - [anon_sym_select] = ACTIONS(5660), - [anon_sym_as] = ACTIONS(5664), - [anon_sym_is] = ACTIONS(5660), - [anon_sym_DASH_GT] = ACTIONS(4719), - [anon_sym_with] = ACTIONS(5696), + [anon_sym_LBRACK] = ACTIONS(6107), + [anon_sym_COMMA] = ACTIONS(6107), + [anon_sym_LPAREN] = ACTIONS(6107), + [anon_sym_LT] = ACTIONS(6109), + [anon_sym_GT] = ACTIONS(6109), + [anon_sym_where] = ACTIONS(6107), + [anon_sym_QMARK] = ACTIONS(6109), + [anon_sym_BANG] = ACTIONS(6109), + [anon_sym_PLUS_PLUS] = ACTIONS(6107), + [anon_sym_DASH_DASH] = ACTIONS(6107), + [anon_sym_PLUS] = ACTIONS(6109), + [anon_sym_DASH] = ACTIONS(6109), + [anon_sym_STAR] = ACTIONS(6107), + [anon_sym_SLASH] = ACTIONS(6109), + [anon_sym_PERCENT] = ACTIONS(6107), + [anon_sym_CARET] = ACTIONS(6107), + [anon_sym_PIPE] = ACTIONS(6109), + [anon_sym_AMP] = ACTIONS(6109), + [anon_sym_LT_LT] = ACTIONS(6107), + [anon_sym_GT_GT] = ACTIONS(6109), + [anon_sym_GT_GT_GT] = ACTIONS(6107), + [anon_sym_EQ_EQ] = ACTIONS(6107), + [anon_sym_BANG_EQ] = ACTIONS(6107), + [anon_sym_GT_EQ] = ACTIONS(6107), + [anon_sym_LT_EQ] = ACTIONS(6107), + [anon_sym_DOT] = ACTIONS(6109), + [anon_sym_switch] = ACTIONS(6107), + [anon_sym_DOT_DOT] = ACTIONS(6107), + [anon_sym_and] = ACTIONS(6099), + [anon_sym_or] = ACTIONS(6105), + [anon_sym_AMP_AMP] = ACTIONS(6107), + [anon_sym_PIPE_PIPE] = ACTIONS(6107), + [anon_sym_QMARK_QMARK] = ACTIONS(6107), + [anon_sym_from] = ACTIONS(6107), + [anon_sym_into] = ACTIONS(6107), + [anon_sym_join] = ACTIONS(6107), + [anon_sym_let] = ACTIONS(6107), + [anon_sym_orderby] = ACTIONS(6107), + [anon_sym_ascending] = ACTIONS(6107), + [anon_sym_descending] = ACTIONS(6107), + [anon_sym_group] = ACTIONS(6107), + [anon_sym_select] = ACTIONS(6107), + [anon_sym_as] = ACTIONS(6109), + [anon_sym_is] = ACTIONS(6107), + [anon_sym_DASH_GT] = ACTIONS(6107), + [anon_sym_with] = ACTIONS(6107), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -522978,6 +522405,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3734] = { + [sym__name] = STATE(2411), + [sym_alias_qualified_name] = STATE(2402), + [sym__simple_name] = STATE(2402), + [sym_qualified_name] = STATE(2402), + [sym_generic_name] = STATE(2384), + [sym_type] = STATE(2397), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(2373), + [sym__array_base_type] = STATE(7083), + [sym_nullable_type] = STATE(2375), + [sym_pointer_type] = STATE(2375), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(2375), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(2377), + [sym_identifier] = STATE(2351), + [sym__reserved_identifier] = STATE(2354), [sym_preproc_region] = STATE(3734), [sym_preproc_endregion] = STATE(3734), [sym_preproc_line] = STATE(3734), @@ -522987,52 +522432,34 @@ 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), - [anon_sym_LBRACK] = ACTIONS(5110), - [anon_sym_COMMA] = ACTIONS(5110), - [anon_sym_LPAREN] = ACTIONS(5110), - [anon_sym_LT] = ACTIONS(5112), - [anon_sym_GT] = ACTIONS(5112), - [anon_sym_where] = ACTIONS(5110), - [anon_sym_QMARK] = ACTIONS(5112), - [anon_sym_BANG] = ACTIONS(5112), - [anon_sym_PLUS_PLUS] = ACTIONS(5110), - [anon_sym_DASH_DASH] = ACTIONS(5110), - [anon_sym_PLUS] = ACTIONS(5112), - [anon_sym_DASH] = ACTIONS(5112), - [anon_sym_STAR] = ACTIONS(5110), - [anon_sym_SLASH] = ACTIONS(5112), - [anon_sym_PERCENT] = ACTIONS(5110), - [anon_sym_CARET] = ACTIONS(5110), - [anon_sym_PIPE] = ACTIONS(5112), - [anon_sym_AMP] = ACTIONS(5112), - [anon_sym_LT_LT] = ACTIONS(5110), - [anon_sym_GT_GT] = ACTIONS(5112), - [anon_sym_GT_GT_GT] = ACTIONS(5110), - [anon_sym_EQ_EQ] = ACTIONS(5110), - [anon_sym_BANG_EQ] = ACTIONS(5110), - [anon_sym_GT_EQ] = ACTIONS(5110), - [anon_sym_LT_EQ] = ACTIONS(5110), - [anon_sym_DOT] = ACTIONS(5112), - [anon_sym_switch] = ACTIONS(5110), - [anon_sym_DOT_DOT] = ACTIONS(5110), - [anon_sym_and] = ACTIONS(5110), - [anon_sym_or] = ACTIONS(5112), - [anon_sym_AMP_AMP] = ACTIONS(5110), - [anon_sym_PIPE_PIPE] = ACTIONS(5110), - [anon_sym_QMARK_QMARK] = ACTIONS(5110), - [anon_sym_from] = ACTIONS(5110), - [anon_sym_into] = ACTIONS(5110), - [anon_sym_join] = ACTIONS(5110), - [anon_sym_let] = ACTIONS(5110), - [anon_sym_orderby] = ACTIONS(5110), - [anon_sym_ascending] = ACTIONS(5110), - [anon_sym_descending] = ACTIONS(5110), - [anon_sym_group] = ACTIONS(5110), - [anon_sym_select] = ACTIONS(5110), - [anon_sym_as] = ACTIONS(5112), - [anon_sym_is] = ACTIONS(5110), - [anon_sym_DASH_GT] = ACTIONS(5110), - [anon_sym_with] = ACTIONS(5110), + [sym__identifier_token] = ACTIONS(4080), + [anon_sym_alias] = ACTIONS(4082), + [anon_sym_global] = ACTIONS(4082), + [anon_sym_LPAREN] = ACTIONS(6111), + [anon_sym_ref] = ACTIONS(3582), + [anon_sym_delegate] = ACTIONS(3438), + [anon_sym_file] = ACTIONS(4082), + [anon_sym_readonly] = ACTIONS(2851), + [anon_sym_where] = ACTIONS(4082), + [anon_sym_notnull] = ACTIONS(4082), + [anon_sym_unmanaged] = ACTIONS(4082), + [anon_sym_scoped] = ACTIONS(6113), + [anon_sym_var] = ACTIONS(5817), + [sym_predefined_type] = ACTIONS(5819), + [anon_sym_yield] = ACTIONS(4082), + [anon_sym_when] = ACTIONS(4082), + [anon_sym_from] = ACTIONS(4082), + [anon_sym_into] = ACTIONS(4082), + [anon_sym_join] = ACTIONS(4082), + [anon_sym_on] = ACTIONS(4082), + [anon_sym_equals] = ACTIONS(4082), + [anon_sym_let] = ACTIONS(4082), + [anon_sym_orderby] = ACTIONS(4082), + [anon_sym_ascending] = ACTIONS(4082), + [anon_sym_descending] = ACTIONS(4082), + [anon_sym_group] = ACTIONS(4082), + [anon_sym_by] = ACTIONS(4082), + [anon_sym_select] = ACTIONS(4082), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -523045,6 +522472,25 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3735] = { + [sym_variable_declaration] = STATE(7329), + [sym__name] = STATE(4369), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(4068), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(4073), + [sym_type] = STATE(5707), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_identifier] = STATE(4081), + [sym__reserved_identifier] = STATE(3654), [sym_preproc_region] = STATE(3735), [sym_preproc_endregion] = STATE(3735), [sym_preproc_line] = STATE(3735), @@ -523054,52 +522500,33 @@ 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(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(2965), + [anon_sym_alias] = ACTIONS(2969), + [anon_sym_global] = ACTIONS(2969), + [anon_sym_LPAREN] = ACTIONS(2977), + [anon_sym_ref] = ACTIONS(3436), + [anon_sym_delegate] = ACTIONS(3438), + [anon_sym_file] = ACTIONS(2969), + [anon_sym_where] = ACTIONS(2969), + [anon_sym_notnull] = ACTIONS(2969), + [anon_sym_unmanaged] = ACTIONS(2969), + [anon_sym_scoped] = ACTIONS(2993), + [anon_sym_var] = ACTIONS(2995), + [sym_predefined_type] = ACTIONS(2997), + [anon_sym_yield] = ACTIONS(2969), + [anon_sym_when] = ACTIONS(2969), + [anon_sym_from] = ACTIONS(2969), + [anon_sym_into] = ACTIONS(2969), + [anon_sym_join] = ACTIONS(2969), + [anon_sym_on] = ACTIONS(2969), + [anon_sym_equals] = ACTIONS(2969), + [anon_sym_let] = ACTIONS(2969), + [anon_sym_orderby] = ACTIONS(2969), + [anon_sym_ascending] = ACTIONS(2969), + [anon_sym_descending] = ACTIONS(2969), + [anon_sym_group] = ACTIONS(2969), + [anon_sym_by] = ACTIONS(2969), + [anon_sym_select] = ACTIONS(2969), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -523112,24 +522539,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3736] = { - [sym__name] = STATE(4478), - [sym_alias_qualified_name] = STATE(4464), - [sym__simple_name] = STATE(4464), - [sym_qualified_name] = STATE(4464), - [sym_generic_name] = STATE(4403), - [sym_type] = STATE(4398), - [sym_implicit_type] = STATE(4374), - [sym_array_type] = STATE(4465), - [sym__array_base_type] = STATE(7155), - [sym_nullable_type] = STATE(4467), - [sym_pointer_type] = STATE(4467), - [sym__pointer_base_type] = STATE(7333), - [sym_function_pointer_type] = STATE(4467), - [sym_ref_type] = STATE(4374), - [sym_scoped_type] = STATE(4374), - [sym_tuple_type] = STATE(4469), - [sym_identifier] = STATE(4215), - [sym__reserved_identifier] = STATE(4297), [sym_preproc_region] = STATE(3736), [sym_preproc_endregion] = STATE(3736), [sym_preproc_line] = STATE(3736), @@ -523139,34 +522548,52 @@ 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(3983), - [anon_sym_alias] = ACTIONS(3985), - [anon_sym_global] = ACTIONS(3985), - [anon_sym_LPAREN] = ACTIONS(6063), - [anon_sym_ref] = ACTIONS(3987), - [anon_sym_delegate] = ACTIONS(5846), - [anon_sym_file] = ACTIONS(3985), - [anon_sym_readonly] = ACTIONS(6065), - [anon_sym_where] = ACTIONS(3985), - [anon_sym_notnull] = ACTIONS(3985), - [anon_sym_unmanaged] = ACTIONS(3985), - [anon_sym_scoped] = ACTIONS(5848), - [anon_sym_var] = ACTIONS(5850), - [sym_predefined_type] = ACTIONS(5852), - [anon_sym_yield] = ACTIONS(3985), - [anon_sym_when] = ACTIONS(3985), - [anon_sym_from] = ACTIONS(3985), - [anon_sym_into] = ACTIONS(3985), - [anon_sym_join] = ACTIONS(3985), - [anon_sym_on] = ACTIONS(3985), - [anon_sym_equals] = ACTIONS(3985), - [anon_sym_let] = ACTIONS(3985), - [anon_sym_orderby] = ACTIONS(3985), - [anon_sym_ascending] = ACTIONS(3985), - [anon_sym_descending] = ACTIONS(3985), - [anon_sym_group] = ACTIONS(3985), - [anon_sym_by] = ACTIONS(3985), - [anon_sym_select] = ACTIONS(3985), + [anon_sym_LBRACK] = ACTIONS(5088), + [anon_sym_COMMA] = ACTIONS(5088), + [anon_sym_LPAREN] = ACTIONS(5088), + [anon_sym_LT] = ACTIONS(5090), + [anon_sym_GT] = ACTIONS(5090), + [anon_sym_where] = ACTIONS(5088), + [anon_sym_QMARK] = ACTIONS(5090), + [anon_sym_BANG] = ACTIONS(5090), + [anon_sym_PLUS_PLUS] = ACTIONS(5088), + [anon_sym_DASH_DASH] = ACTIONS(5088), + [anon_sym_PLUS] = ACTIONS(5090), + [anon_sym_DASH] = ACTIONS(5090), + [anon_sym_STAR] = ACTIONS(5088), + [anon_sym_SLASH] = ACTIONS(5090), + [anon_sym_PERCENT] = ACTIONS(5088), + [anon_sym_CARET] = ACTIONS(5088), + [anon_sym_PIPE] = ACTIONS(5090), + [anon_sym_AMP] = ACTIONS(5090), + [anon_sym_LT_LT] = ACTIONS(5088), + [anon_sym_GT_GT] = ACTIONS(5090), + [anon_sym_GT_GT_GT] = ACTIONS(5088), + [anon_sym_EQ_EQ] = ACTIONS(5088), + [anon_sym_BANG_EQ] = ACTIONS(5088), + [anon_sym_GT_EQ] = ACTIONS(5088), + [anon_sym_LT_EQ] = ACTIONS(5088), + [anon_sym_DOT] = ACTIONS(5090), + [anon_sym_switch] = ACTIONS(5088), + [anon_sym_DOT_DOT] = ACTIONS(5088), + [anon_sym_and] = ACTIONS(5088), + [anon_sym_or] = ACTIONS(5090), + [anon_sym_AMP_AMP] = ACTIONS(5088), + [anon_sym_PIPE_PIPE] = ACTIONS(5088), + [anon_sym_QMARK_QMARK] = ACTIONS(5088), + [anon_sym_from] = ACTIONS(5088), + [anon_sym_into] = ACTIONS(5088), + [anon_sym_join] = ACTIONS(5088), + [anon_sym_let] = ACTIONS(5088), + [anon_sym_orderby] = ACTIONS(5088), + [anon_sym_ascending] = ACTIONS(5088), + [anon_sym_descending] = ACTIONS(5088), + [anon_sym_group] = ACTIONS(5088), + [anon_sym_select] = ACTIONS(5088), + [anon_sym_as] = ACTIONS(5090), + [anon_sym_is] = ACTIONS(5088), + [anon_sym_DASH_GT] = ACTIONS(5088), + [anon_sym_with] = ACTIONS(5088), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -523179,6 +522606,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3737] = { + [sym__name] = STATE(6264), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(4068), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(4073), + [sym_type] = STATE(4565), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_identifier] = STATE(6238), + [sym__reserved_identifier] = STATE(3654), [sym_preproc_region] = STATE(3737), [sym_preproc_endregion] = STATE(3737), [sym_preproc_line] = STATE(3737), @@ -523188,52 +522633,34 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3737), [sym_preproc_define] = STATE(3737), [sym_preproc_undef] = STATE(3737), - [anon_sym_LBRACK] = ACTIONS(5208), - [anon_sym_COMMA] = ACTIONS(5208), - [anon_sym_LPAREN] = ACTIONS(5208), - [anon_sym_LT] = ACTIONS(5210), - [anon_sym_GT] = ACTIONS(5210), - [anon_sym_where] = ACTIONS(5208), - [anon_sym_QMARK] = ACTIONS(5210), - [anon_sym_BANG] = ACTIONS(5210), - [anon_sym_PLUS_PLUS] = ACTIONS(5208), - [anon_sym_DASH_DASH] = ACTIONS(5208), - [anon_sym_PLUS] = ACTIONS(5210), - [anon_sym_DASH] = ACTIONS(5210), - [anon_sym_STAR] = ACTIONS(5208), - [anon_sym_SLASH] = ACTIONS(5210), - [anon_sym_PERCENT] = ACTIONS(5208), - [anon_sym_CARET] = ACTIONS(5208), - [anon_sym_PIPE] = ACTIONS(5210), - [anon_sym_AMP] = ACTIONS(5210), - [anon_sym_LT_LT] = ACTIONS(5208), - [anon_sym_GT_GT] = ACTIONS(5210), - [anon_sym_GT_GT_GT] = ACTIONS(5208), - [anon_sym_EQ_EQ] = ACTIONS(5208), - [anon_sym_BANG_EQ] = ACTIONS(5208), - [anon_sym_GT_EQ] = ACTIONS(5208), - [anon_sym_LT_EQ] = ACTIONS(5208), - [anon_sym_DOT] = ACTIONS(5210), - [anon_sym_switch] = ACTIONS(5208), - [anon_sym_DOT_DOT] = ACTIONS(5208), - [anon_sym_and] = ACTIONS(5208), - [anon_sym_or] = ACTIONS(5210), - [anon_sym_AMP_AMP] = ACTIONS(5208), - [anon_sym_PIPE_PIPE] = ACTIONS(5208), - [anon_sym_QMARK_QMARK] = ACTIONS(5208), - [anon_sym_from] = ACTIONS(5208), - [anon_sym_into] = ACTIONS(5208), - [anon_sym_join] = ACTIONS(5208), - [anon_sym_let] = ACTIONS(5208), - [anon_sym_orderby] = ACTIONS(5208), - [anon_sym_ascending] = ACTIONS(5208), - [anon_sym_descending] = ACTIONS(5208), - [anon_sym_group] = ACTIONS(5208), - [anon_sym_select] = ACTIONS(5208), - [anon_sym_as] = ACTIONS(5210), - [anon_sym_is] = ACTIONS(5208), - [anon_sym_DASH_GT] = ACTIONS(5208), - [anon_sym_with] = ACTIONS(5208), + [sym__identifier_token] = ACTIONS(2965), + [anon_sym_alias] = ACTIONS(2969), + [anon_sym_global] = ACTIONS(2969), + [anon_sym_LPAREN] = ACTIONS(2977), + [anon_sym_ref] = ACTIONS(6115), + [anon_sym_delegate] = ACTIONS(3438), + [anon_sym_file] = ACTIONS(2969), + [anon_sym_readonly] = ACTIONS(6117), + [anon_sym_where] = ACTIONS(2969), + [anon_sym_notnull] = ACTIONS(2969), + [anon_sym_unmanaged] = ACTIONS(2969), + [anon_sym_scoped] = ACTIONS(6119), + [anon_sym_var] = ACTIONS(6121), + [sym_predefined_type] = ACTIONS(2997), + [anon_sym_yield] = ACTIONS(2969), + [anon_sym_when] = ACTIONS(2969), + [anon_sym_from] = ACTIONS(2969), + [anon_sym_into] = ACTIONS(2969), + [anon_sym_join] = ACTIONS(2969), + [anon_sym_on] = ACTIONS(2969), + [anon_sym_equals] = ACTIONS(2969), + [anon_sym_let] = ACTIONS(2969), + [anon_sym_orderby] = ACTIONS(2969), + [anon_sym_ascending] = ACTIONS(2969), + [anon_sym_descending] = ACTIONS(2969), + [anon_sym_group] = ACTIONS(2969), + [anon_sym_by] = ACTIONS(2969), + [anon_sym_select] = ACTIONS(2969), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -523246,6 +522673,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3738] = { + [sym__name] = STATE(3511), + [sym_alias_qualified_name] = STATE(2907), + [sym__simple_name] = STATE(2907), + [sym_qualified_name] = STATE(2907), + [sym_generic_name] = STATE(2950), + [sym_type] = STATE(2941), + [sym_implicit_type] = STATE(2926), + [sym_array_type] = STATE(2934), + [sym__array_base_type] = STATE(7061), + [sym_nullable_type] = STATE(2942), + [sym_pointer_type] = STATE(2942), + [sym__pointer_base_type] = STATE(7640), + [sym_function_pointer_type] = STATE(2942), + [sym_ref_type] = STATE(2926), + [sym_scoped_type] = STATE(2926), + [sym_tuple_type] = STATE(2943), + [sym_identifier] = STATE(3317), + [sym__reserved_identifier] = STATE(2900), [sym_preproc_region] = STATE(3738), [sym_preproc_endregion] = STATE(3738), [sym_preproc_line] = STATE(3738), @@ -523255,52 +522700,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), - [sym__identifier_token] = ACTIONS(5809), - [anon_sym_extern] = ACTIONS(3482), - [anon_sym_alias] = ACTIONS(5809), - [anon_sym_global] = ACTIONS(5809), - [anon_sym_unsafe] = ACTIONS(5809), - [anon_sym_static] = ACTIONS(5809), - [anon_sym_LPAREN] = ACTIONS(5084), - [anon_sym_ref] = ACTIONS(3482), - [anon_sym_delegate] = ACTIONS(3482), - [anon_sym_abstract] = ACTIONS(3482), - [anon_sym_async] = ACTIONS(3482), - [anon_sym_const] = ACTIONS(3482), - [anon_sym_file] = ACTIONS(5809), - [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(5809), - [anon_sym_notnull] = ACTIONS(5809), - [anon_sym_unmanaged] = ACTIONS(5809), - [anon_sym_scoped] = ACTIONS(5809), - [anon_sym_var] = ACTIONS(5809), - [sym_predefined_type] = ACTIONS(3482), - [anon_sym_yield] = ACTIONS(5809), - [anon_sym_when] = ACTIONS(5809), - [anon_sym_from] = ACTIONS(5809), - [anon_sym_into] = ACTIONS(5809), - [anon_sym_join] = ACTIONS(5809), - [anon_sym_on] = ACTIONS(5809), - [anon_sym_equals] = ACTIONS(5809), - [anon_sym_let] = ACTIONS(5809), - [anon_sym_orderby] = ACTIONS(5809), - [anon_sym_ascending] = ACTIONS(5809), - [anon_sym_descending] = ACTIONS(5809), - [anon_sym_group] = ACTIONS(5809), - [anon_sym_by] = ACTIONS(5809), - [anon_sym_select] = ACTIONS(5809), + [sym__identifier_token] = ACTIONS(3814), + [anon_sym_alias] = ACTIONS(3816), + [anon_sym_global] = ACTIONS(3816), + [anon_sym_LPAREN] = ACTIONS(6123), + [anon_sym_ref] = ACTIONS(3818), + [anon_sym_delegate] = ACTIONS(5719), + [anon_sym_file] = ACTIONS(3816), + [anon_sym_readonly] = ACTIONS(6125), + [anon_sym_where] = ACTIONS(3816), + [anon_sym_notnull] = ACTIONS(3816), + [anon_sym_unmanaged] = ACTIONS(3816), + [anon_sym_scoped] = ACTIONS(5841), + [anon_sym_var] = ACTIONS(5723), + [sym_predefined_type] = ACTIONS(5725), + [anon_sym_yield] = ACTIONS(3816), + [anon_sym_when] = ACTIONS(3816), + [anon_sym_from] = ACTIONS(3816), + [anon_sym_into] = ACTIONS(3816), + [anon_sym_join] = ACTIONS(3816), + [anon_sym_on] = ACTIONS(3816), + [anon_sym_equals] = ACTIONS(3816), + [anon_sym_let] = ACTIONS(3816), + [anon_sym_orderby] = ACTIONS(3816), + [anon_sym_ascending] = ACTIONS(3816), + [anon_sym_descending] = ACTIONS(3816), + [anon_sym_group] = ACTIONS(3816), + [anon_sym_by] = ACTIONS(3816), + [anon_sym_select] = ACTIONS(3816), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -523313,24 +522740,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3739] = { - [sym__name] = STATE(4390), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(4096), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(4109), - [sym_type] = STATE(4632), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_identifier] = STATE(4087), - [sym__reserved_identifier] = STATE(3691), + [sym__name] = STATE(4369), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(4068), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(4073), + [sym_type] = STATE(6063), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_identifier] = STATE(4081), + [sym__reserved_identifier] = STATE(3654), [sym_preproc_region] = STATE(3739), [sym_preproc_endregion] = STATE(3739), [sym_preproc_line] = STATE(3739), @@ -523340,34 +522767,34 @@ 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), - [sym__identifier_token] = ACTIONS(2967), - [anon_sym_alias] = ACTIONS(2971), - [anon_sym_global] = ACTIONS(2971), - [anon_sym_LPAREN] = ACTIONS(2979), - [anon_sym_ref] = ACTIONS(3452), - [anon_sym_delegate] = ACTIONS(3454), - [anon_sym_file] = ACTIONS(2971), - [anon_sym_readonly] = ACTIONS(2749), - [anon_sym_where] = ACTIONS(2971), - [anon_sym_notnull] = ACTIONS(2971), - [anon_sym_unmanaged] = ACTIONS(2971), - [anon_sym_scoped] = ACTIONS(2997), - [anon_sym_var] = ACTIONS(2999), - [sym_predefined_type] = ACTIONS(3001), - [anon_sym_yield] = ACTIONS(2971), - [anon_sym_when] = ACTIONS(2971), - [anon_sym_from] = ACTIONS(2971), - [anon_sym_into] = ACTIONS(2971), - [anon_sym_join] = ACTIONS(2971), - [anon_sym_on] = ACTIONS(2971), - [anon_sym_equals] = ACTIONS(2971), - [anon_sym_let] = ACTIONS(2971), - [anon_sym_orderby] = ACTIONS(2971), - [anon_sym_ascending] = ACTIONS(2971), - [anon_sym_descending] = ACTIONS(2971), - [anon_sym_group] = ACTIONS(2971), - [anon_sym_by] = ACTIONS(2971), - [anon_sym_select] = ACTIONS(2971), + [sym__identifier_token] = ACTIONS(2965), + [anon_sym_alias] = ACTIONS(2969), + [anon_sym_global] = ACTIONS(2969), + [anon_sym_LPAREN] = ACTIONS(2977), + [anon_sym_ref] = ACTIONS(3436), + [anon_sym_delegate] = ACTIONS(3438), + [anon_sym_file] = ACTIONS(2969), + [anon_sym_where] = ACTIONS(2969), + [anon_sym_notnull] = ACTIONS(2969), + [anon_sym_unmanaged] = ACTIONS(2969), + [anon_sym_STAR] = ACTIONS(5575), + [anon_sym_scoped] = ACTIONS(2993), + [anon_sym_var] = ACTIONS(2995), + [sym_predefined_type] = ACTIONS(2997), + [anon_sym_yield] = ACTIONS(2969), + [anon_sym_when] = ACTIONS(2969), + [anon_sym_from] = ACTIONS(2969), + [anon_sym_into] = ACTIONS(2969), + [anon_sym_join] = ACTIONS(2969), + [anon_sym_on] = ACTIONS(2969), + [anon_sym_equals] = ACTIONS(2969), + [anon_sym_let] = ACTIONS(2969), + [anon_sym_orderby] = ACTIONS(2969), + [anon_sym_ascending] = ACTIONS(2969), + [anon_sym_descending] = ACTIONS(2969), + [anon_sym_group] = ACTIONS(2969), + [anon_sym_by] = ACTIONS(2969), + [anon_sym_select] = ACTIONS(2969), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -523389,52 +522816,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), - [anon_sym_LBRACK] = ACTIONS(4965), - [anon_sym_COMMA] = ACTIONS(4965), - [anon_sym_LPAREN] = ACTIONS(4965), - [anon_sym_LT] = ACTIONS(4967), - [anon_sym_GT] = ACTIONS(4967), - [anon_sym_where] = ACTIONS(4965), - [anon_sym_QMARK] = ACTIONS(4967), - [anon_sym_BANG] = ACTIONS(4967), - [anon_sym_PLUS_PLUS] = ACTIONS(4965), - [anon_sym_DASH_DASH] = ACTIONS(4965), - [anon_sym_PLUS] = ACTIONS(4967), - [anon_sym_DASH] = ACTIONS(4967), - [anon_sym_STAR] = ACTIONS(4965), - [anon_sym_SLASH] = ACTIONS(4967), - [anon_sym_PERCENT] = ACTIONS(4965), - [anon_sym_CARET] = ACTIONS(4965), - [anon_sym_PIPE] = ACTIONS(4967), - [anon_sym_AMP] = ACTIONS(4967), - [anon_sym_LT_LT] = ACTIONS(4965), - [anon_sym_GT_GT] = ACTIONS(4967), - [anon_sym_GT_GT_GT] = ACTIONS(4965), - [anon_sym_EQ_EQ] = ACTIONS(4965), - [anon_sym_BANG_EQ] = ACTIONS(4965), - [anon_sym_GT_EQ] = ACTIONS(4965), - [anon_sym_LT_EQ] = ACTIONS(4965), - [anon_sym_DOT] = ACTIONS(4967), - [anon_sym_switch] = ACTIONS(4965), - [anon_sym_DOT_DOT] = ACTIONS(4965), - [anon_sym_and] = ACTIONS(4965), - [anon_sym_or] = ACTIONS(4967), - [anon_sym_AMP_AMP] = ACTIONS(4965), - [anon_sym_PIPE_PIPE] = ACTIONS(4965), - [anon_sym_QMARK_QMARK] = ACTIONS(4965), - [anon_sym_from] = ACTIONS(4965), - [anon_sym_into] = ACTIONS(4965), - [anon_sym_join] = ACTIONS(4965), - [anon_sym_let] = ACTIONS(4965), - [anon_sym_orderby] = ACTIONS(4965), - [anon_sym_ascending] = ACTIONS(4965), - [anon_sym_descending] = ACTIONS(4965), - [anon_sym_group] = ACTIONS(4965), - [anon_sym_select] = ACTIONS(4965), - [anon_sym_as] = ACTIONS(4967), - [anon_sym_is] = ACTIONS(4965), - [anon_sym_DASH_GT] = ACTIONS(4965), - [anon_sym_with] = ACTIONS(4965), + [anon_sym_LBRACK] = ACTIONS(5092), + [anon_sym_COMMA] = ACTIONS(5092), + [anon_sym_LPAREN] = ACTIONS(5092), + [anon_sym_LT] = ACTIONS(5094), + [anon_sym_GT] = ACTIONS(5094), + [anon_sym_where] = ACTIONS(5092), + [anon_sym_QMARK] = ACTIONS(5094), + [anon_sym_BANG] = ACTIONS(5094), + [anon_sym_PLUS_PLUS] = ACTIONS(5092), + [anon_sym_DASH_DASH] = ACTIONS(5092), + [anon_sym_PLUS] = ACTIONS(5094), + [anon_sym_DASH] = ACTIONS(5094), + [anon_sym_STAR] = ACTIONS(5092), + [anon_sym_SLASH] = ACTIONS(5094), + [anon_sym_PERCENT] = ACTIONS(5092), + [anon_sym_CARET] = ACTIONS(5092), + [anon_sym_PIPE] = ACTIONS(5094), + [anon_sym_AMP] = ACTIONS(5094), + [anon_sym_LT_LT] = ACTIONS(5092), + [anon_sym_GT_GT] = ACTIONS(5094), + [anon_sym_GT_GT_GT] = ACTIONS(5092), + [anon_sym_EQ_EQ] = ACTIONS(5092), + [anon_sym_BANG_EQ] = ACTIONS(5092), + [anon_sym_GT_EQ] = ACTIONS(5092), + [anon_sym_LT_EQ] = ACTIONS(5092), + [anon_sym_DOT] = ACTIONS(5094), + [anon_sym_switch] = ACTIONS(5092), + [anon_sym_DOT_DOT] = ACTIONS(5092), + [anon_sym_and] = ACTIONS(5092), + [anon_sym_or] = ACTIONS(5094), + [anon_sym_AMP_AMP] = ACTIONS(5092), + [anon_sym_PIPE_PIPE] = ACTIONS(5092), + [anon_sym_QMARK_QMARK] = ACTIONS(5092), + [anon_sym_from] = ACTIONS(5092), + [anon_sym_into] = ACTIONS(5092), + [anon_sym_join] = ACTIONS(5092), + [anon_sym_let] = ACTIONS(5092), + [anon_sym_orderby] = ACTIONS(5092), + [anon_sym_ascending] = ACTIONS(5092), + [anon_sym_descending] = ACTIONS(5092), + [anon_sym_group] = ACTIONS(5092), + [anon_sym_select] = ACTIONS(5092), + [anon_sym_as] = ACTIONS(5094), + [anon_sym_is] = ACTIONS(5092), + [anon_sym_DASH_GT] = ACTIONS(5092), + [anon_sym_with] = ACTIONS(5092), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -523447,6 +522874,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3741] = { + [sym_type_argument_list] = STATE(2933), [sym_preproc_region] = STATE(3741), [sym_preproc_endregion] = STATE(3741), [sym_preproc_line] = STATE(3741), @@ -523456,52 +522884,51 @@ 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), - [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(3640), + [anon_sym_LPAREN] = ACTIONS(3640), + [anon_sym_LBRACE] = ACTIONS(3640), + [anon_sym_LT] = ACTIONS(4835), + [anon_sym_GT] = ACTIONS(3638), + [anon_sym_where] = ACTIONS(3640), + [anon_sym_QMARK] = ACTIONS(3638), + [anon_sym_BANG] = ACTIONS(3638), + [anon_sym_PLUS_PLUS] = ACTIONS(3640), + [anon_sym_DASH_DASH] = ACTIONS(3640), + [anon_sym_PLUS] = ACTIONS(3638), + [anon_sym_DASH] = ACTIONS(3638), + [anon_sym_STAR] = ACTIONS(3640), + [anon_sym_SLASH] = ACTIONS(3638), + [anon_sym_PERCENT] = ACTIONS(3640), + [anon_sym_CARET] = ACTIONS(3640), + [anon_sym_PIPE] = ACTIONS(3638), + [anon_sym_AMP] = ACTIONS(3638), + [anon_sym_LT_LT] = ACTIONS(3640), + [anon_sym_GT_GT] = ACTIONS(3638), + [anon_sym_GT_GT_GT] = ACTIONS(3640), + [anon_sym_EQ_EQ] = ACTIONS(3640), + [anon_sym_BANG_EQ] = ACTIONS(3640), + [anon_sym_GT_EQ] = ACTIONS(3640), + [anon_sym_LT_EQ] = ACTIONS(3640), + [anon_sym_DOT] = ACTIONS(3638), + [anon_sym_COLON_COLON] = ACTIONS(6127), + [anon_sym_switch] = ACTIONS(3640), + [anon_sym_DOT_DOT] = ACTIONS(3640), + [anon_sym_and] = ACTIONS(3640), + [anon_sym_or] = ACTIONS(3638), + [anon_sym_AMP_AMP] = ACTIONS(3640), + [anon_sym_PIPE_PIPE] = ACTIONS(3640), + [anon_sym_QMARK_QMARK] = ACTIONS(3640), + [anon_sym_from] = ACTIONS(3640), + [anon_sym_into] = ACTIONS(3640), + [anon_sym_join] = ACTIONS(3640), + [anon_sym_let] = ACTIONS(3640), + [anon_sym_orderby] = ACTIONS(3640), + [anon_sym_group] = ACTIONS(3640), + [anon_sym_select] = ACTIONS(3640), + [anon_sym_as] = ACTIONS(3640), + [anon_sym_is] = ACTIONS(3640), + [anon_sym_DASH_GT] = ACTIONS(3640), + [anon_sym_with] = ACTIONS(3640), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -523514,6 +522941,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3742] = { + [sym__name] = STATE(4369), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(4068), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(4073), + [sym_type] = STATE(6057), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_identifier] = STATE(4081), + [sym__reserved_identifier] = STATE(3654), [sym_preproc_region] = STATE(3742), [sym_preproc_endregion] = STATE(3742), [sym_preproc_line] = STATE(3742), @@ -523523,52 +522968,34 @@ 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), - [anon_sym_LBRACK] = ACTIONS(4945), - [anon_sym_COMMA] = ACTIONS(4945), - [anon_sym_LPAREN] = ACTIONS(4945), - [anon_sym_LT] = ACTIONS(4947), - [anon_sym_GT] = ACTIONS(4947), - [anon_sym_where] = ACTIONS(4945), - [anon_sym_QMARK] = ACTIONS(4947), - [anon_sym_BANG] = ACTIONS(4947), - [anon_sym_PLUS_PLUS] = ACTIONS(4945), - [anon_sym_DASH_DASH] = ACTIONS(4945), - [anon_sym_PLUS] = ACTIONS(4947), - [anon_sym_DASH] = ACTIONS(4947), - [anon_sym_STAR] = ACTIONS(4945), - [anon_sym_SLASH] = ACTIONS(4947), - [anon_sym_PERCENT] = ACTIONS(4945), - [anon_sym_CARET] = ACTIONS(4945), - [anon_sym_PIPE] = ACTIONS(4947), - [anon_sym_AMP] = ACTIONS(4947), - [anon_sym_LT_LT] = ACTIONS(4945), - [anon_sym_GT_GT] = ACTIONS(4947), - [anon_sym_GT_GT_GT] = ACTIONS(4945), - [anon_sym_EQ_EQ] = ACTIONS(4945), - [anon_sym_BANG_EQ] = ACTIONS(4945), - [anon_sym_GT_EQ] = ACTIONS(4945), - [anon_sym_LT_EQ] = ACTIONS(4945), - [anon_sym_DOT] = ACTIONS(4947), - [anon_sym_switch] = ACTIONS(4945), - [anon_sym_DOT_DOT] = ACTIONS(4945), - [anon_sym_and] = ACTIONS(4945), - [anon_sym_or] = ACTIONS(4947), - [anon_sym_AMP_AMP] = ACTIONS(4945), - [anon_sym_PIPE_PIPE] = ACTIONS(4945), - [anon_sym_QMARK_QMARK] = ACTIONS(4945), - [anon_sym_from] = ACTIONS(4945), - [anon_sym_into] = ACTIONS(4945), - [anon_sym_join] = ACTIONS(4945), - [anon_sym_let] = ACTIONS(4945), - [anon_sym_orderby] = ACTIONS(4945), - [anon_sym_ascending] = ACTIONS(4945), - [anon_sym_descending] = ACTIONS(4945), - [anon_sym_group] = ACTIONS(4945), - [anon_sym_select] = ACTIONS(4945), - [anon_sym_as] = ACTIONS(4947), - [anon_sym_is] = ACTIONS(4945), - [anon_sym_DASH_GT] = ACTIONS(4945), - [anon_sym_with] = ACTIONS(4945), + [sym__identifier_token] = ACTIONS(2965), + [anon_sym_alias] = ACTIONS(2969), + [anon_sym_global] = ACTIONS(2969), + [anon_sym_LPAREN] = ACTIONS(2977), + [anon_sym_ref] = ACTIONS(3436), + [anon_sym_delegate] = ACTIONS(3438), + [anon_sym_file] = ACTIONS(2969), + [anon_sym_where] = ACTIONS(2969), + [anon_sym_notnull] = ACTIONS(2969), + [anon_sym_unmanaged] = ACTIONS(2969), + [anon_sym_STAR] = ACTIONS(5575), + [anon_sym_scoped] = ACTIONS(2993), + [anon_sym_var] = ACTIONS(2995), + [sym_predefined_type] = ACTIONS(2997), + [anon_sym_yield] = ACTIONS(2969), + [anon_sym_when] = ACTIONS(2969), + [anon_sym_from] = ACTIONS(2969), + [anon_sym_into] = ACTIONS(2969), + [anon_sym_join] = ACTIONS(2969), + [anon_sym_on] = ACTIONS(2969), + [anon_sym_equals] = ACTIONS(2969), + [anon_sym_let] = ACTIONS(2969), + [anon_sym_orderby] = ACTIONS(2969), + [anon_sym_ascending] = ACTIONS(2969), + [anon_sym_descending] = ACTIONS(2969), + [anon_sym_group] = ACTIONS(2969), + [anon_sym_by] = ACTIONS(2969), + [anon_sym_select] = ACTIONS(2969), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -523581,6 +523008,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3743] = { + [sym__name] = STATE(3086), + [sym_alias_qualified_name] = STATE(2976), + [sym__simple_name] = STATE(2976), + [sym_qualified_name] = STATE(2976), + [sym_generic_name] = STATE(3030), + [sym_type] = STATE(3039), + [sym_implicit_type] = STATE(2977), + [sym_array_type] = STATE(2978), + [sym__array_base_type] = STATE(7236), + [sym_nullable_type] = STATE(2979), + [sym_pointer_type] = STATE(2979), + [sym__pointer_base_type] = STATE(7622), + [sym_function_pointer_type] = STATE(2979), + [sym_ref_type] = STATE(2977), + [sym_scoped_type] = STATE(2977), + [sym_tuple_type] = STATE(2980), + [sym_identifier] = STATE(2927), + [sym__reserved_identifier] = STATE(2916), [sym_preproc_region] = STATE(3743), [sym_preproc_endregion] = STATE(3743), [sym_preproc_line] = STATE(3743), @@ -523590,52 +523035,34 @@ 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), - [anon_sym_LBRACK] = ACTIONS(5001), - [anon_sym_COMMA] = ACTIONS(5001), - [anon_sym_LPAREN] = ACTIONS(5001), - [anon_sym_LT] = ACTIONS(5003), - [anon_sym_GT] = ACTIONS(5003), - [anon_sym_where] = ACTIONS(5001), - [anon_sym_QMARK] = ACTIONS(5003), - [anon_sym_BANG] = ACTIONS(5003), - [anon_sym_PLUS_PLUS] = ACTIONS(5001), - [anon_sym_DASH_DASH] = ACTIONS(5001), - [anon_sym_PLUS] = ACTIONS(5003), - [anon_sym_DASH] = ACTIONS(5003), - [anon_sym_STAR] = ACTIONS(5001), - [anon_sym_SLASH] = ACTIONS(5003), - [anon_sym_PERCENT] = ACTIONS(5001), - [anon_sym_CARET] = ACTIONS(5001), - [anon_sym_PIPE] = ACTIONS(5003), - [anon_sym_AMP] = ACTIONS(5003), - [anon_sym_LT_LT] = ACTIONS(5001), - [anon_sym_GT_GT] = ACTIONS(5003), - [anon_sym_GT_GT_GT] = ACTIONS(5001), - [anon_sym_EQ_EQ] = ACTIONS(5001), - [anon_sym_BANG_EQ] = ACTIONS(5001), - [anon_sym_GT_EQ] = ACTIONS(5001), - [anon_sym_LT_EQ] = ACTIONS(5001), - [anon_sym_DOT] = ACTIONS(5003), - [anon_sym_switch] = ACTIONS(5001), - [anon_sym_DOT_DOT] = ACTIONS(5001), - [anon_sym_and] = ACTIONS(5001), - [anon_sym_or] = ACTIONS(5003), - [anon_sym_AMP_AMP] = ACTIONS(5001), - [anon_sym_PIPE_PIPE] = ACTIONS(5001), - [anon_sym_QMARK_QMARK] = ACTIONS(5001), - [anon_sym_from] = ACTIONS(5001), - [anon_sym_into] = ACTIONS(5001), - [anon_sym_join] = ACTIONS(5001), - [anon_sym_let] = ACTIONS(5001), - [anon_sym_orderby] = ACTIONS(5001), - [anon_sym_ascending] = ACTIONS(5001), - [anon_sym_descending] = ACTIONS(5001), - [anon_sym_group] = ACTIONS(5001), - [anon_sym_select] = ACTIONS(5001), - [anon_sym_as] = ACTIONS(5003), - [anon_sym_is] = ACTIONS(5001), - [anon_sym_DASH_GT] = ACTIONS(5001), - [anon_sym_with] = ACTIONS(5001), + [sym__identifier_token] = ACTIONS(3871), + [anon_sym_alias] = ACTIONS(3873), + [anon_sym_global] = ACTIONS(3873), + [anon_sym_LPAREN] = ACTIONS(6033), + [anon_sym_ref] = ACTIONS(4197), + [anon_sym_delegate] = ACTIONS(4015), + [anon_sym_file] = ACTIONS(3873), + [anon_sym_readonly] = ACTIONS(6129), + [anon_sym_where] = ACTIONS(3873), + [anon_sym_notnull] = ACTIONS(3873), + [anon_sym_unmanaged] = ACTIONS(3873), + [anon_sym_scoped] = ACTIONS(5769), + [anon_sym_var] = ACTIONS(4019), + [sym_predefined_type] = ACTIONS(4021), + [anon_sym_yield] = ACTIONS(3873), + [anon_sym_when] = ACTIONS(3873), + [anon_sym_from] = ACTIONS(3873), + [anon_sym_into] = ACTIONS(3873), + [anon_sym_join] = ACTIONS(3873), + [anon_sym_on] = ACTIONS(3873), + [anon_sym_equals] = ACTIONS(3873), + [anon_sym_let] = ACTIONS(3873), + [anon_sym_orderby] = ACTIONS(3873), + [anon_sym_ascending] = ACTIONS(3873), + [anon_sym_descending] = ACTIONS(3873), + [anon_sym_group] = ACTIONS(3873), + [anon_sym_by] = ACTIONS(3873), + [anon_sym_select] = ACTIONS(3873), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -523648,8 +523075,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3744] = { - [sym_argument_list] = STATE(3886), - [sym_bracketed_argument_list] = STATE(2902), + [sym__name] = STATE(5140), + [sym_alias_qualified_name] = STATE(3304), + [sym__simple_name] = STATE(3304), + [sym_qualified_name] = STATE(3304), + [sym_generic_name] = STATE(3241), + [sym_type] = STATE(3223), + [sym_implicit_type] = STATE(3222), + [sym_array_type] = STATE(3229), + [sym__array_base_type] = STATE(7208), + [sym_nullable_type] = STATE(3216), + [sym_pointer_type] = STATE(3216), + [sym__pointer_base_type] = STATE(7508), + [sym_function_pointer_type] = STATE(3216), + [sym_ref_type] = STATE(3222), + [sym_scoped_type] = STATE(3222), + [sym_tuple_type] = STATE(3308), + [sym_identifier] = STATE(4542), + [sym__reserved_identifier] = STATE(3205), [sym_preproc_region] = STATE(3744), [sym_preproc_endregion] = STATE(3744), [sym_preproc_line] = STATE(3744), @@ -523659,50 +523102,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_LBRACK] = ACTIONS(5658), - [anon_sym_COMMA] = ACTIONS(5767), - [anon_sym_LPAREN] = ACTIONS(5624), - [anon_sym_LT] = ACTIONS(6017), - [anon_sym_GT] = ACTIONS(6017), - [anon_sym_where] = ACTIONS(5767), - [anon_sym_QMARK] = ACTIONS(6019), - [anon_sym_BANG] = ACTIONS(5666), - [anon_sym_PLUS_PLUS] = ACTIONS(5668), - [anon_sym_DASH_DASH] = ACTIONS(5668), - [anon_sym_PLUS] = ACTIONS(6021), - [anon_sym_DASH] = ACTIONS(6021), - [anon_sym_STAR] = ACTIONS(6023), - [anon_sym_SLASH] = ACTIONS(6025), - [anon_sym_PERCENT] = ACTIONS(6023), - [anon_sym_CARET] = ACTIONS(6027), - [anon_sym_PIPE] = ACTIONS(6029), - [anon_sym_AMP] = ACTIONS(6031), - [anon_sym_LT_LT] = ACTIONS(6033), - [anon_sym_GT_GT] = ACTIONS(6035), - [anon_sym_GT_GT_GT] = ACTIONS(6033), - [anon_sym_EQ_EQ] = ACTIONS(6037), - [anon_sym_BANG_EQ] = ACTIONS(6037), - [anon_sym_GT_EQ] = ACTIONS(6039), - [anon_sym_LT_EQ] = ACTIONS(6039), - [anon_sym_DOT] = ACTIONS(4733), - [anon_sym_switch] = ACTIONS(5688), - [anon_sym_DOT_DOT] = ACTIONS(6041), - [anon_sym_AMP_AMP] = ACTIONS(6043), - [anon_sym_PIPE_PIPE] = ACTIONS(6045), - [anon_sym_QMARK_QMARK] = ACTIONS(6047), - [anon_sym_from] = ACTIONS(5767), - [anon_sym_into] = ACTIONS(5767), - [anon_sym_join] = ACTIONS(5767), - [anon_sym_let] = ACTIONS(5767), - [anon_sym_orderby] = ACTIONS(5767), - [anon_sym_ascending] = ACTIONS(5767), - [anon_sym_descending] = ACTIONS(5767), - [anon_sym_group] = ACTIONS(5767), - [anon_sym_select] = ACTIONS(5767), - [anon_sym_as] = ACTIONS(5692), - [anon_sym_is] = ACTIONS(6049), - [anon_sym_DASH_GT] = ACTIONS(4719), - [anon_sym_with] = ACTIONS(5696), + [sym__identifier_token] = ACTIONS(3798), + [anon_sym_alias] = ACTIONS(3800), + [anon_sym_global] = ACTIONS(3800), + [anon_sym_LPAREN] = ACTIONS(6101), + [anon_sym_ref] = ACTIONS(4078), + [anon_sym_delegate] = ACTIONS(5638), + [anon_sym_file] = ACTIONS(3800), + [anon_sym_readonly] = ACTIONS(6131), + [anon_sym_where] = ACTIONS(3800), + [anon_sym_notnull] = ACTIONS(3800), + [anon_sym_unmanaged] = ACTIONS(3800), + [anon_sym_scoped] = ACTIONS(5640), + [anon_sym_var] = ACTIONS(5642), + [sym_predefined_type] = ACTIONS(5644), + [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), @@ -523724,52 +523151,52 @@ 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(4985), - [anon_sym_COMMA] = ACTIONS(4985), - [anon_sym_LPAREN] = ACTIONS(4985), - [anon_sym_LT] = ACTIONS(4987), - [anon_sym_GT] = ACTIONS(4987), - [anon_sym_where] = ACTIONS(4985), - [anon_sym_QMARK] = ACTIONS(4987), - [anon_sym_BANG] = ACTIONS(4987), - [anon_sym_PLUS_PLUS] = ACTIONS(4985), - [anon_sym_DASH_DASH] = ACTIONS(4985), - [anon_sym_PLUS] = ACTIONS(4987), - [anon_sym_DASH] = ACTIONS(4987), - [anon_sym_STAR] = ACTIONS(4985), - [anon_sym_SLASH] = ACTIONS(4987), - [anon_sym_PERCENT] = ACTIONS(4985), - [anon_sym_CARET] = ACTIONS(4985), - [anon_sym_PIPE] = ACTIONS(4987), - [anon_sym_AMP] = ACTIONS(4987), - [anon_sym_LT_LT] = ACTIONS(4985), - [anon_sym_GT_GT] = ACTIONS(4987), - [anon_sym_GT_GT_GT] = ACTIONS(4985), - [anon_sym_EQ_EQ] = ACTIONS(4985), - [anon_sym_BANG_EQ] = ACTIONS(4985), - [anon_sym_GT_EQ] = ACTIONS(4985), - [anon_sym_LT_EQ] = ACTIONS(4985), - [anon_sym_DOT] = ACTIONS(4987), - [anon_sym_switch] = ACTIONS(4985), - [anon_sym_DOT_DOT] = ACTIONS(4985), - [anon_sym_and] = ACTIONS(4985), - [anon_sym_or] = ACTIONS(4987), - [anon_sym_AMP_AMP] = ACTIONS(4985), - [anon_sym_PIPE_PIPE] = ACTIONS(4985), - [anon_sym_QMARK_QMARK] = ACTIONS(4985), - [anon_sym_from] = ACTIONS(4985), - [anon_sym_into] = ACTIONS(4985), - [anon_sym_join] = ACTIONS(4985), - [anon_sym_let] = ACTIONS(4985), - [anon_sym_orderby] = ACTIONS(4985), - [anon_sym_ascending] = ACTIONS(4985), - [anon_sym_descending] = ACTIONS(4985), - [anon_sym_group] = ACTIONS(4985), - [anon_sym_select] = ACTIONS(4985), - [anon_sym_as] = ACTIONS(4987), - [anon_sym_is] = ACTIONS(4985), - [anon_sym_DASH_GT] = ACTIONS(4985), - [anon_sym_with] = ACTIONS(4985), + [anon_sym_LBRACK] = ACTIONS(5096), + [anon_sym_COMMA] = ACTIONS(5096), + [anon_sym_LPAREN] = ACTIONS(5096), + [anon_sym_LT] = ACTIONS(5098), + [anon_sym_GT] = ACTIONS(5098), + [anon_sym_where] = ACTIONS(5096), + [anon_sym_QMARK] = ACTIONS(5098), + [anon_sym_BANG] = ACTIONS(5098), + [anon_sym_PLUS_PLUS] = ACTIONS(5096), + [anon_sym_DASH_DASH] = ACTIONS(5096), + [anon_sym_PLUS] = ACTIONS(5098), + [anon_sym_DASH] = ACTIONS(5098), + [anon_sym_STAR] = ACTIONS(5096), + [anon_sym_SLASH] = ACTIONS(5098), + [anon_sym_PERCENT] = ACTIONS(5096), + [anon_sym_CARET] = ACTIONS(5096), + [anon_sym_PIPE] = ACTIONS(5098), + [anon_sym_AMP] = ACTIONS(5098), + [anon_sym_LT_LT] = ACTIONS(5096), + [anon_sym_GT_GT] = ACTIONS(5098), + [anon_sym_GT_GT_GT] = ACTIONS(5096), + [anon_sym_EQ_EQ] = ACTIONS(5096), + [anon_sym_BANG_EQ] = ACTIONS(5096), + [anon_sym_GT_EQ] = ACTIONS(5096), + [anon_sym_LT_EQ] = ACTIONS(5096), + [anon_sym_DOT] = ACTIONS(5098), + [anon_sym_switch] = ACTIONS(5096), + [anon_sym_DOT_DOT] = ACTIONS(5096), + [anon_sym_and] = ACTIONS(5096), + [anon_sym_or] = ACTIONS(5098), + [anon_sym_AMP_AMP] = ACTIONS(5096), + [anon_sym_PIPE_PIPE] = ACTIONS(5096), + [anon_sym_QMARK_QMARK] = ACTIONS(5096), + [anon_sym_from] = ACTIONS(5096), + [anon_sym_into] = ACTIONS(5096), + [anon_sym_join] = ACTIONS(5096), + [anon_sym_let] = ACTIONS(5096), + [anon_sym_orderby] = ACTIONS(5096), + [anon_sym_ascending] = ACTIONS(5096), + [anon_sym_descending] = ACTIONS(5096), + [anon_sym_group] = ACTIONS(5096), + [anon_sym_select] = ACTIONS(5096), + [anon_sym_as] = ACTIONS(5098), + [anon_sym_is] = ACTIONS(5096), + [anon_sym_DASH_GT] = ACTIONS(5096), + [anon_sym_with] = ACTIONS(5096), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -523782,6 +523209,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3746] = { + [sym__name] = STATE(3151), + [sym_alias_qualified_name] = STATE(3143), + [sym__simple_name] = STATE(3143), + [sym_qualified_name] = STATE(3143), + [sym_generic_name] = STATE(3184), + [sym_type] = STATE(3159), + [sym_implicit_type] = STATE(3146), + [sym_array_type] = STATE(3147), + [sym__array_base_type] = STATE(7165), + [sym_nullable_type] = STATE(3148), + [sym_pointer_type] = STATE(3148), + [sym__pointer_base_type] = STATE(7401), + [sym_function_pointer_type] = STATE(3148), + [sym_ref_type] = STATE(3146), + [sym_scoped_type] = STATE(3146), + [sym_tuple_type] = STATE(3149), + [sym_identifier] = STATE(3119), + [sym__reserved_identifier] = STATE(3120), [sym_preproc_region] = STATE(3746), [sym_preproc_endregion] = STATE(3746), [sym_preproc_line] = STATE(3746), @@ -523791,52 +523236,34 @@ 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(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), + [sym__identifier_token] = ACTIONS(3761), + [anon_sym_alias] = ACTIONS(3763), + [anon_sym_global] = ACTIONS(3763), + [anon_sym_LPAREN] = ACTIONS(6133), + [anon_sym_ref] = ACTIONS(3765), + [anon_sym_delegate] = ACTIONS(5622), + [anon_sym_file] = ACTIONS(3763), + [anon_sym_readonly] = ACTIONS(6135), + [anon_sym_where] = ACTIONS(3763), + [anon_sym_notnull] = ACTIONS(3763), + [anon_sym_unmanaged] = ACTIONS(3763), + [anon_sym_scoped] = ACTIONS(5823), + [anon_sym_var] = ACTIONS(5626), + [sym_predefined_type] = ACTIONS(5628), + [anon_sym_yield] = ACTIONS(3763), + [anon_sym_when] = ACTIONS(3763), + [anon_sym_from] = ACTIONS(3763), + [anon_sym_into] = ACTIONS(3763), + [anon_sym_join] = ACTIONS(3763), + [anon_sym_on] = ACTIONS(3763), + [anon_sym_equals] = ACTIONS(3763), + [anon_sym_let] = ACTIONS(3763), + [anon_sym_orderby] = ACTIONS(3763), + [anon_sym_ascending] = ACTIONS(3763), + [anon_sym_descending] = ACTIONS(3763), + [anon_sym_group] = ACTIONS(3763), + [anon_sym_by] = ACTIONS(3763), + [anon_sym_select] = ACTIONS(3763), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -523849,6 +523276,25 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3747] = { + [sym__name] = STATE(4369), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(4068), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(4073), + [sym_type] = STATE(5960), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_tuple_element] = STATE(7166), + [sym_identifier] = STATE(4081), + [sym__reserved_identifier] = STATE(3654), [sym_preproc_region] = STATE(3747), [sym_preproc_endregion] = STATE(3747), [sym_preproc_line] = STATE(3747), @@ -523858,52 +523304,33 @@ 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), - [anon_sym_LBRACK] = ACTIONS(6067), - [anon_sym_COMMA] = ACTIONS(6067), - [anon_sym_LPAREN] = ACTIONS(6067), - [anon_sym_LT] = ACTIONS(6069), - [anon_sym_GT] = ACTIONS(6069), - [anon_sym_where] = ACTIONS(6067), - [anon_sym_QMARK] = ACTIONS(6069), - [anon_sym_BANG] = ACTIONS(6069), - [anon_sym_PLUS_PLUS] = ACTIONS(6067), - [anon_sym_DASH_DASH] = ACTIONS(6067), - [anon_sym_PLUS] = ACTIONS(6069), - [anon_sym_DASH] = ACTIONS(6069), - [anon_sym_STAR] = ACTIONS(6067), - [anon_sym_SLASH] = ACTIONS(6069), - [anon_sym_PERCENT] = ACTIONS(6067), - [anon_sym_CARET] = ACTIONS(6067), - [anon_sym_PIPE] = ACTIONS(6069), - [anon_sym_AMP] = ACTIONS(6069), - [anon_sym_LT_LT] = ACTIONS(6067), - [anon_sym_GT_GT] = ACTIONS(6069), - [anon_sym_GT_GT_GT] = ACTIONS(6067), - [anon_sym_EQ_EQ] = ACTIONS(6067), - [anon_sym_BANG_EQ] = ACTIONS(6067), - [anon_sym_GT_EQ] = ACTIONS(6067), - [anon_sym_LT_EQ] = ACTIONS(6067), - [anon_sym_DOT] = ACTIONS(6069), - [anon_sym_switch] = ACTIONS(6067), - [anon_sym_DOT_DOT] = ACTIONS(6067), - [anon_sym_and] = ACTIONS(6071), - [anon_sym_or] = ACTIONS(6069), - [anon_sym_AMP_AMP] = ACTIONS(6067), - [anon_sym_PIPE_PIPE] = ACTIONS(6067), - [anon_sym_QMARK_QMARK] = ACTIONS(6067), - [anon_sym_from] = ACTIONS(6067), - [anon_sym_into] = ACTIONS(6067), - [anon_sym_join] = ACTIONS(6067), - [anon_sym_let] = ACTIONS(6067), - [anon_sym_orderby] = ACTIONS(6067), - [anon_sym_ascending] = ACTIONS(6067), - [anon_sym_descending] = ACTIONS(6067), - [anon_sym_group] = ACTIONS(6067), - [anon_sym_select] = ACTIONS(6067), - [anon_sym_as] = ACTIONS(6069), - [anon_sym_is] = ACTIONS(6067), - [anon_sym_DASH_GT] = ACTIONS(6067), - [anon_sym_with] = ACTIONS(6067), + [sym__identifier_token] = ACTIONS(2965), + [anon_sym_alias] = ACTIONS(2969), + [anon_sym_global] = ACTIONS(2969), + [anon_sym_LPAREN] = ACTIONS(2977), + [anon_sym_ref] = ACTIONS(3590), + [anon_sym_delegate] = ACTIONS(3438), + [anon_sym_file] = ACTIONS(2969), + [anon_sym_where] = ACTIONS(2969), + [anon_sym_notnull] = ACTIONS(2969), + [anon_sym_unmanaged] = ACTIONS(2969), + [anon_sym_scoped] = ACTIONS(5843), + [anon_sym_var] = ACTIONS(4705), + [sym_predefined_type] = ACTIONS(2997), + [anon_sym_yield] = ACTIONS(2969), + [anon_sym_when] = ACTIONS(2969), + [anon_sym_from] = ACTIONS(2969), + [anon_sym_into] = ACTIONS(2969), + [anon_sym_join] = ACTIONS(2969), + [anon_sym_on] = ACTIONS(2969), + [anon_sym_equals] = ACTIONS(2969), + [anon_sym_let] = ACTIONS(2969), + [anon_sym_orderby] = ACTIONS(2969), + [anon_sym_ascending] = ACTIONS(2969), + [anon_sym_descending] = ACTIONS(2969), + [anon_sym_group] = ACTIONS(2969), + [anon_sym_by] = ACTIONS(2969), + [anon_sym_select] = ACTIONS(2969), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -523916,6 +523343,25 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3748] = { + [sym_variable_declaration] = STATE(7493), + [sym__name] = STATE(4369), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(4068), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(4073), + [sym_type] = STATE(5712), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_identifier] = STATE(4081), + [sym__reserved_identifier] = STATE(3654), [sym_preproc_region] = STATE(3748), [sym_preproc_endregion] = STATE(3748), [sym_preproc_line] = STATE(3748), @@ -523925,52 +523371,33 @@ 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), - [anon_sym_LBRACK] = ACTIONS(5042), - [anon_sym_COMMA] = ACTIONS(5042), - [anon_sym_LPAREN] = ACTIONS(5042), - [anon_sym_LT] = ACTIONS(5044), - [anon_sym_GT] = ACTIONS(5044), - [anon_sym_where] = ACTIONS(5042), - [anon_sym_QMARK] = ACTIONS(5044), - [anon_sym_BANG] = ACTIONS(5044), - [anon_sym_PLUS_PLUS] = ACTIONS(5042), - [anon_sym_DASH_DASH] = ACTIONS(5042), - [anon_sym_PLUS] = ACTIONS(5044), - [anon_sym_DASH] = ACTIONS(5044), - [anon_sym_STAR] = ACTIONS(5042), - [anon_sym_SLASH] = ACTIONS(5044), - [anon_sym_PERCENT] = ACTIONS(5042), - [anon_sym_CARET] = ACTIONS(5042), - [anon_sym_PIPE] = ACTIONS(5044), - [anon_sym_AMP] = ACTIONS(5044), - [anon_sym_LT_LT] = ACTIONS(5042), - [anon_sym_GT_GT] = ACTIONS(5044), - [anon_sym_GT_GT_GT] = ACTIONS(5042), - [anon_sym_EQ_EQ] = ACTIONS(5042), - [anon_sym_BANG_EQ] = ACTIONS(5042), - [anon_sym_GT_EQ] = ACTIONS(5042), - [anon_sym_LT_EQ] = ACTIONS(5042), - [anon_sym_DOT] = ACTIONS(5044), - [anon_sym_switch] = ACTIONS(5042), - [anon_sym_DOT_DOT] = ACTIONS(5042), - [anon_sym_and] = ACTIONS(5042), - [anon_sym_or] = ACTIONS(5044), - [anon_sym_AMP_AMP] = ACTIONS(5042), - [anon_sym_PIPE_PIPE] = ACTIONS(5042), - [anon_sym_QMARK_QMARK] = ACTIONS(5042), - [anon_sym_from] = ACTIONS(5042), - [anon_sym_into] = ACTIONS(5042), - [anon_sym_join] = ACTIONS(5042), - [anon_sym_let] = ACTIONS(5042), - [anon_sym_orderby] = ACTIONS(5042), - [anon_sym_ascending] = ACTIONS(5042), - [anon_sym_descending] = ACTIONS(5042), - [anon_sym_group] = ACTIONS(5042), - [anon_sym_select] = ACTIONS(5042), - [anon_sym_as] = ACTIONS(5044), - [anon_sym_is] = ACTIONS(5042), - [anon_sym_DASH_GT] = ACTIONS(5042), - [anon_sym_with] = ACTIONS(5042), + [sym__identifier_token] = ACTIONS(2965), + [anon_sym_alias] = ACTIONS(2969), + [anon_sym_global] = ACTIONS(2969), + [anon_sym_LPAREN] = ACTIONS(2977), + [anon_sym_ref] = ACTIONS(3436), + [anon_sym_delegate] = ACTIONS(3438), + [anon_sym_file] = ACTIONS(2969), + [anon_sym_where] = ACTIONS(2969), + [anon_sym_notnull] = ACTIONS(2969), + [anon_sym_unmanaged] = ACTIONS(2969), + [anon_sym_scoped] = ACTIONS(2993), + [anon_sym_var] = ACTIONS(2995), + [sym_predefined_type] = ACTIONS(2997), + [anon_sym_yield] = ACTIONS(2969), + [anon_sym_when] = ACTIONS(2969), + [anon_sym_from] = ACTIONS(2969), + [anon_sym_into] = ACTIONS(2969), + [anon_sym_join] = ACTIONS(2969), + [anon_sym_on] = ACTIONS(2969), + [anon_sym_equals] = ACTIONS(2969), + [anon_sym_let] = ACTIONS(2969), + [anon_sym_orderby] = ACTIONS(2969), + [anon_sym_ascending] = ACTIONS(2969), + [anon_sym_descending] = ACTIONS(2969), + [anon_sym_group] = ACTIONS(2969), + [anon_sym_by] = ACTIONS(2969), + [anon_sym_select] = ACTIONS(2969), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -523983,6 +523410,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3749] = { + [sym_argument_list] = STATE(3771), + [sym_bracketed_argument_list] = STATE(2892), [sym_preproc_region] = STATE(3749), [sym_preproc_endregion] = STATE(3749), [sym_preproc_line] = STATE(3749), @@ -523992,52 +523421,50 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3749), [sym_preproc_define] = STATE(3749), [sym_preproc_undef] = STATE(3749), - [anon_sym_LBRACK] = ACTIONS(5086), - [anon_sym_COMMA] = ACTIONS(5086), - [anon_sym_LPAREN] = ACTIONS(5086), - [anon_sym_LT] = ACTIONS(5088), - [anon_sym_GT] = ACTIONS(5088), - [anon_sym_where] = ACTIONS(5086), - [anon_sym_QMARK] = ACTIONS(5088), - [anon_sym_BANG] = ACTIONS(5088), - [anon_sym_PLUS_PLUS] = ACTIONS(5086), - [anon_sym_DASH_DASH] = ACTIONS(5086), - [anon_sym_PLUS] = ACTIONS(5088), - [anon_sym_DASH] = ACTIONS(5088), - [anon_sym_STAR] = ACTIONS(5086), - [anon_sym_SLASH] = ACTIONS(5088), - [anon_sym_PERCENT] = ACTIONS(5086), - [anon_sym_CARET] = ACTIONS(5086), - [anon_sym_PIPE] = ACTIONS(5088), - [anon_sym_AMP] = ACTIONS(5088), - [anon_sym_LT_LT] = ACTIONS(5086), - [anon_sym_GT_GT] = ACTIONS(5088), - [anon_sym_GT_GT_GT] = ACTIONS(5086), - [anon_sym_EQ_EQ] = ACTIONS(5086), - [anon_sym_BANG_EQ] = ACTIONS(5086), - [anon_sym_GT_EQ] = ACTIONS(5086), - [anon_sym_LT_EQ] = ACTIONS(5086), - [anon_sym_DOT] = ACTIONS(5088), - [anon_sym_switch] = ACTIONS(5086), - [anon_sym_DOT_DOT] = ACTIONS(5086), - [anon_sym_and] = ACTIONS(5086), - [anon_sym_or] = ACTIONS(5088), - [anon_sym_AMP_AMP] = ACTIONS(5086), - [anon_sym_PIPE_PIPE] = ACTIONS(5086), - [anon_sym_QMARK_QMARK] = ACTIONS(5086), - [anon_sym_from] = ACTIONS(5086), - [anon_sym_into] = ACTIONS(5086), - [anon_sym_join] = ACTIONS(5086), - [anon_sym_let] = ACTIONS(5086), - [anon_sym_orderby] = ACTIONS(5086), - [anon_sym_ascending] = ACTIONS(5086), - [anon_sym_descending] = ACTIONS(5086), - [anon_sym_group] = ACTIONS(5086), - [anon_sym_select] = ACTIONS(5086), - [anon_sym_as] = ACTIONS(5088), - [anon_sym_is] = ACTIONS(5086), - [anon_sym_DASH_GT] = ACTIONS(5086), - [anon_sym_with] = ACTIONS(5086), + [anon_sym_LBRACK] = ACTIONS(5650), + [anon_sym_COMMA] = ACTIONS(5737), + [anon_sym_LPAREN] = ACTIONS(5591), + [anon_sym_LT] = ACTIONS(5739), + [anon_sym_GT] = ACTIONS(5739), + [anon_sym_where] = ACTIONS(5737), + [anon_sym_QMARK] = ACTIONS(5739), + [anon_sym_BANG] = ACTIONS(5658), + [anon_sym_PLUS_PLUS] = ACTIONS(5660), + [anon_sym_DASH_DASH] = ACTIONS(5660), + [anon_sym_PLUS] = ACTIONS(6047), + [anon_sym_DASH] = ACTIONS(6047), + [anon_sym_STAR] = ACTIONS(6049), + [anon_sym_SLASH] = ACTIONS(6051), + [anon_sym_PERCENT] = ACTIONS(6049), + [anon_sym_CARET] = ACTIONS(5737), + [anon_sym_PIPE] = ACTIONS(5739), + [anon_sym_AMP] = ACTIONS(5739), + [anon_sym_LT_LT] = ACTIONS(6059), + [anon_sym_GT_GT] = ACTIONS(6061), + [anon_sym_GT_GT_GT] = ACTIONS(6059), + [anon_sym_EQ_EQ] = ACTIONS(5737), + [anon_sym_BANG_EQ] = ACTIONS(5737), + [anon_sym_GT_EQ] = ACTIONS(5737), + [anon_sym_LT_EQ] = ACTIONS(5737), + [anon_sym_DOT] = ACTIONS(4697), + [anon_sym_switch] = ACTIONS(5682), + [anon_sym_DOT_DOT] = ACTIONS(6067), + [anon_sym_AMP_AMP] = ACTIONS(5737), + [anon_sym_PIPE_PIPE] = ACTIONS(5737), + [anon_sym_QMARK_QMARK] = ACTIONS(5737), + [anon_sym_from] = ACTIONS(5737), + [anon_sym_into] = ACTIONS(5737), + [anon_sym_join] = ACTIONS(5737), + [anon_sym_let] = ACTIONS(5737), + [anon_sym_orderby] = ACTIONS(5737), + [anon_sym_ascending] = ACTIONS(5737), + [anon_sym_descending] = ACTIONS(5737), + [anon_sym_group] = ACTIONS(5737), + [anon_sym_select] = ACTIONS(5737), + [anon_sym_as] = ACTIONS(5739), + [anon_sym_is] = ACTIONS(5737), + [anon_sym_DASH_GT] = ACTIONS(4699), + [anon_sym_with] = ACTIONS(5698), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -524050,6 +523477,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3750] = { + [sym__name] = STATE(4060), + [sym_alias_qualified_name] = STATE(2907), + [sym__simple_name] = STATE(2907), + [sym_qualified_name] = STATE(2907), + [sym_generic_name] = STATE(2950), + [sym_type] = STATE(2941), + [sym_implicit_type] = STATE(2926), + [sym_array_type] = STATE(2934), + [sym__array_base_type] = STATE(7061), + [sym_nullable_type] = STATE(2942), + [sym_pointer_type] = STATE(2942), + [sym__pointer_base_type] = STATE(7640), + [sym_function_pointer_type] = STATE(2942), + [sym_ref_type] = STATE(2926), + [sym_scoped_type] = STATE(2926), + [sym_tuple_type] = STATE(2943), + [sym_identifier] = STATE(3741), + [sym__reserved_identifier] = STATE(2900), [sym_preproc_region] = STATE(3750), [sym_preproc_endregion] = STATE(3750), [sym_preproc_line] = STATE(3750), @@ -524059,52 +523504,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(5106), - [anon_sym_COMMA] = ACTIONS(5106), - [anon_sym_LPAREN] = ACTIONS(5106), - [anon_sym_LT] = ACTIONS(5108), - [anon_sym_GT] = ACTIONS(5108), - [anon_sym_where] = ACTIONS(5106), - [anon_sym_QMARK] = ACTIONS(5108), - [anon_sym_BANG] = ACTIONS(5108), - [anon_sym_PLUS_PLUS] = ACTIONS(5106), - [anon_sym_DASH_DASH] = ACTIONS(5106), - [anon_sym_PLUS] = ACTIONS(5108), - [anon_sym_DASH] = ACTIONS(5108), - [anon_sym_STAR] = ACTIONS(5106), - [anon_sym_SLASH] = ACTIONS(5108), - [anon_sym_PERCENT] = ACTIONS(5106), - [anon_sym_CARET] = ACTIONS(5106), - [anon_sym_PIPE] = ACTIONS(5108), - [anon_sym_AMP] = ACTIONS(5108), - [anon_sym_LT_LT] = ACTIONS(5106), - [anon_sym_GT_GT] = ACTIONS(5108), - [anon_sym_GT_GT_GT] = ACTIONS(5106), - [anon_sym_EQ_EQ] = ACTIONS(5106), - [anon_sym_BANG_EQ] = ACTIONS(5106), - [anon_sym_GT_EQ] = ACTIONS(5106), - [anon_sym_LT_EQ] = ACTIONS(5106), - [anon_sym_DOT] = ACTIONS(5108), - [anon_sym_switch] = ACTIONS(5106), - [anon_sym_DOT_DOT] = ACTIONS(5106), - [anon_sym_and] = ACTIONS(5106), - [anon_sym_or] = ACTIONS(5108), - [anon_sym_AMP_AMP] = ACTIONS(5106), - [anon_sym_PIPE_PIPE] = ACTIONS(5106), - [anon_sym_QMARK_QMARK] = ACTIONS(5106), - [anon_sym_from] = ACTIONS(5106), - [anon_sym_into] = ACTIONS(5106), - [anon_sym_join] = ACTIONS(5106), - [anon_sym_let] = ACTIONS(5106), - [anon_sym_orderby] = ACTIONS(5106), - [anon_sym_ascending] = ACTIONS(5106), - [anon_sym_descending] = ACTIONS(5106), - [anon_sym_group] = ACTIONS(5106), - [anon_sym_select] = ACTIONS(5106), - [anon_sym_as] = ACTIONS(5108), - [anon_sym_is] = ACTIONS(5106), - [anon_sym_DASH_GT] = ACTIONS(5106), - [anon_sym_with] = ACTIONS(5106), + [sym__identifier_token] = ACTIONS(3814), + [anon_sym_alias] = ACTIONS(3816), + [anon_sym_global] = ACTIONS(3816), + [anon_sym_LPAREN] = ACTIONS(6123), + [anon_sym_ref] = ACTIONS(4165), + [anon_sym_delegate] = ACTIONS(5719), + [anon_sym_file] = ACTIONS(3816), + [anon_sym_readonly] = ACTIONS(6137), + [anon_sym_where] = ACTIONS(3816), + [anon_sym_notnull] = ACTIONS(3816), + [anon_sym_unmanaged] = ACTIONS(3816), + [anon_sym_scoped] = ACTIONS(5721), + [anon_sym_var] = ACTIONS(5723), + [sym_predefined_type] = ACTIONS(5725), + [anon_sym_yield] = ACTIONS(3816), + [anon_sym_when] = ACTIONS(3816), + [anon_sym_from] = ACTIONS(3816), + [anon_sym_into] = ACTIONS(3816), + [anon_sym_join] = ACTIONS(3816), + [anon_sym_on] = ACTIONS(3816), + [anon_sym_equals] = ACTIONS(3816), + [anon_sym_let] = ACTIONS(3816), + [anon_sym_orderby] = ACTIONS(3816), + [anon_sym_ascending] = ACTIONS(3816), + [anon_sym_descending] = ACTIONS(3816), + [anon_sym_group] = ACTIONS(3816), + [anon_sym_by] = ACTIONS(3816), + [anon_sym_select] = ACTIONS(3816), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -524117,6 +523544,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3751] = { + [sym_argument_list] = STATE(3771), + [sym_bracketed_argument_list] = STATE(2892), [sym_preproc_region] = STATE(3751), [sym_preproc_endregion] = STATE(3751), [sym_preproc_line] = STATE(3751), @@ -524126,52 +523555,50 @@ 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(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(5650), + [anon_sym_COMMA] = ACTIONS(5737), + [anon_sym_LPAREN] = ACTIONS(5591), + [anon_sym_LT] = ACTIONS(5739), + [anon_sym_GT] = ACTIONS(5739), + [anon_sym_where] = ACTIONS(5737), + [anon_sym_QMARK] = ACTIONS(5739), + [anon_sym_BANG] = ACTIONS(5658), + [anon_sym_PLUS_PLUS] = ACTIONS(5660), + [anon_sym_DASH_DASH] = ACTIONS(5660), + [anon_sym_PLUS] = ACTIONS(5739), + [anon_sym_DASH] = ACTIONS(5739), + [anon_sym_STAR] = ACTIONS(6049), + [anon_sym_SLASH] = ACTIONS(6051), + [anon_sym_PERCENT] = ACTIONS(6049), + [anon_sym_CARET] = ACTIONS(5737), + [anon_sym_PIPE] = ACTIONS(5739), + [anon_sym_AMP] = ACTIONS(5739), + [anon_sym_LT_LT] = ACTIONS(5737), + [anon_sym_GT_GT] = ACTIONS(5739), + [anon_sym_GT_GT_GT] = ACTIONS(5737), + [anon_sym_EQ_EQ] = ACTIONS(5737), + [anon_sym_BANG_EQ] = ACTIONS(5737), + [anon_sym_GT_EQ] = ACTIONS(5737), + [anon_sym_LT_EQ] = ACTIONS(5737), + [anon_sym_DOT] = ACTIONS(4697), + [anon_sym_switch] = ACTIONS(5682), + [anon_sym_DOT_DOT] = ACTIONS(6067), + [anon_sym_AMP_AMP] = ACTIONS(5737), + [anon_sym_PIPE_PIPE] = ACTIONS(5737), + [anon_sym_QMARK_QMARK] = ACTIONS(5737), + [anon_sym_from] = ACTIONS(5737), + [anon_sym_into] = ACTIONS(5737), + [anon_sym_join] = ACTIONS(5737), + [anon_sym_let] = ACTIONS(5737), + [anon_sym_orderby] = ACTIONS(5737), + [anon_sym_ascending] = ACTIONS(5737), + [anon_sym_descending] = ACTIONS(5737), + [anon_sym_group] = ACTIONS(5737), + [anon_sym_select] = ACTIONS(5737), + [anon_sym_as] = ACTIONS(5739), + [anon_sym_is] = ACTIONS(5737), + [anon_sym_DASH_GT] = ACTIONS(4699), + [anon_sym_with] = ACTIONS(5698), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -524184,6 +523611,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3752] = { + [sym_argument_list] = STATE(3771), + [sym_bracketed_argument_list] = STATE(2892), [sym_preproc_region] = STATE(3752), [sym_preproc_endregion] = STATE(3752), [sym_preproc_line] = STATE(3752), @@ -524193,52 +523622,50 @@ 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(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), + [anon_sym_LBRACK] = ACTIONS(5650), + [anon_sym_COMMA] = ACTIONS(5737), + [anon_sym_LPAREN] = ACTIONS(5591), + [anon_sym_LT] = ACTIONS(5739), + [anon_sym_GT] = ACTIONS(5739), + [anon_sym_where] = ACTIONS(5737), + [anon_sym_QMARK] = ACTIONS(5739), + [anon_sym_BANG] = ACTIONS(5658), + [anon_sym_PLUS_PLUS] = ACTIONS(5660), + [anon_sym_DASH_DASH] = ACTIONS(5660), + [anon_sym_PLUS] = ACTIONS(5739), + [anon_sym_DASH] = ACTIONS(5739), + [anon_sym_STAR] = ACTIONS(5737), + [anon_sym_SLASH] = ACTIONS(5739), + [anon_sym_PERCENT] = ACTIONS(5737), + [anon_sym_CARET] = ACTIONS(5737), + [anon_sym_PIPE] = ACTIONS(5739), + [anon_sym_AMP] = ACTIONS(5739), + [anon_sym_LT_LT] = ACTIONS(5737), + [anon_sym_GT_GT] = ACTIONS(5739), + [anon_sym_GT_GT_GT] = ACTIONS(5737), + [anon_sym_EQ_EQ] = ACTIONS(5737), + [anon_sym_BANG_EQ] = ACTIONS(5737), + [anon_sym_GT_EQ] = ACTIONS(5737), + [anon_sym_LT_EQ] = ACTIONS(5737), + [anon_sym_DOT] = ACTIONS(4697), + [anon_sym_switch] = ACTIONS(5682), + [anon_sym_DOT_DOT] = ACTIONS(6067), + [anon_sym_AMP_AMP] = ACTIONS(5737), + [anon_sym_PIPE_PIPE] = ACTIONS(5737), + [anon_sym_QMARK_QMARK] = ACTIONS(5737), + [anon_sym_from] = ACTIONS(5737), + [anon_sym_into] = ACTIONS(5737), + [anon_sym_join] = ACTIONS(5737), + [anon_sym_let] = ACTIONS(5737), + [anon_sym_orderby] = ACTIONS(5737), + [anon_sym_ascending] = ACTIONS(5737), + [anon_sym_descending] = ACTIONS(5737), + [anon_sym_group] = ACTIONS(5737), + [anon_sym_select] = ACTIONS(5737), + [anon_sym_as] = ACTIONS(5739), + [anon_sym_is] = ACTIONS(5737), + [anon_sym_DASH_GT] = ACTIONS(4699), + [anon_sym_with] = ACTIONS(5698), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -524251,6 +523678,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3753] = { + [sym_argument_list] = STATE(3771), + [sym_bracketed_argument_list] = STATE(2892), [sym_preproc_region] = STATE(3753), [sym_preproc_endregion] = STATE(3753), [sym_preproc_line] = STATE(3753), @@ -524260,52 +523689,50 @@ 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(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_LBRACK] = ACTIONS(5650), + [anon_sym_COMMA] = ACTIONS(5737), + [anon_sym_LPAREN] = ACTIONS(5591), + [anon_sym_LT] = ACTIONS(5739), + [anon_sym_GT] = ACTIONS(5739), + [anon_sym_where] = ACTIONS(5737), + [anon_sym_QMARK] = ACTIONS(5739), + [anon_sym_BANG] = ACTIONS(5658), + [anon_sym_PLUS_PLUS] = ACTIONS(5660), + [anon_sym_DASH_DASH] = ACTIONS(5660), + [anon_sym_PLUS] = ACTIONS(6047), + [anon_sym_DASH] = ACTIONS(6047), + [anon_sym_STAR] = ACTIONS(6049), + [anon_sym_SLASH] = ACTIONS(6051), + [anon_sym_PERCENT] = ACTIONS(6049), + [anon_sym_CARET] = ACTIONS(5737), + [anon_sym_PIPE] = ACTIONS(5739), + [anon_sym_AMP] = ACTIONS(5739), + [anon_sym_LT_LT] = ACTIONS(5737), + [anon_sym_GT_GT] = ACTIONS(5739), + [anon_sym_GT_GT_GT] = ACTIONS(5737), + [anon_sym_EQ_EQ] = ACTIONS(5737), + [anon_sym_BANG_EQ] = ACTIONS(5737), + [anon_sym_GT_EQ] = ACTIONS(5737), + [anon_sym_LT_EQ] = ACTIONS(5737), + [anon_sym_DOT] = ACTIONS(4697), + [anon_sym_switch] = ACTIONS(5682), + [anon_sym_DOT_DOT] = ACTIONS(6067), + [anon_sym_AMP_AMP] = ACTIONS(5737), + [anon_sym_PIPE_PIPE] = ACTIONS(5737), + [anon_sym_QMARK_QMARK] = ACTIONS(5737), + [anon_sym_from] = ACTIONS(5737), + [anon_sym_into] = ACTIONS(5737), + [anon_sym_join] = ACTIONS(5737), + [anon_sym_let] = ACTIONS(5737), + [anon_sym_orderby] = ACTIONS(5737), + [anon_sym_ascending] = ACTIONS(5737), + [anon_sym_descending] = ACTIONS(5737), + [anon_sym_group] = ACTIONS(5737), + [anon_sym_select] = ACTIONS(5737), + [anon_sym_as] = ACTIONS(5739), + [anon_sym_is] = ACTIONS(5737), + [anon_sym_DASH_GT] = ACTIONS(4699), + [anon_sym_with] = ACTIONS(5698), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -524318,6 +523745,25 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3754] = { + [sym_variable_declaration] = STATE(7497), + [sym__name] = STATE(4369), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(4068), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(4073), + [sym_type] = STATE(5703), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_identifier] = STATE(4081), + [sym__reserved_identifier] = STATE(3654), [sym_preproc_region] = STATE(3754), [sym_preproc_endregion] = STATE(3754), [sym_preproc_line] = STATE(3754), @@ -524327,52 +523773,33 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3754), [sym_preproc_define] = STATE(3754), [sym_preproc_undef] = STATE(3754), - [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), + [sym__identifier_token] = ACTIONS(2965), + [anon_sym_alias] = ACTIONS(2969), + [anon_sym_global] = ACTIONS(2969), + [anon_sym_LPAREN] = ACTIONS(2977), + [anon_sym_ref] = ACTIONS(3436), + [anon_sym_delegate] = ACTIONS(3438), + [anon_sym_file] = ACTIONS(2969), + [anon_sym_where] = ACTIONS(2969), + [anon_sym_notnull] = ACTIONS(2969), + [anon_sym_unmanaged] = ACTIONS(2969), + [anon_sym_scoped] = ACTIONS(2993), + [anon_sym_var] = ACTIONS(2995), + [sym_predefined_type] = ACTIONS(2997), + [anon_sym_yield] = ACTIONS(2969), + [anon_sym_when] = ACTIONS(2969), + [anon_sym_from] = ACTIONS(2969), + [anon_sym_into] = ACTIONS(2969), + [anon_sym_join] = ACTIONS(2969), + [anon_sym_on] = ACTIONS(2969), + [anon_sym_equals] = ACTIONS(2969), + [anon_sym_let] = ACTIONS(2969), + [anon_sym_orderby] = ACTIONS(2969), + [anon_sym_ascending] = ACTIONS(2969), + [anon_sym_descending] = ACTIONS(2969), + [anon_sym_group] = ACTIONS(2969), + [anon_sym_by] = ACTIONS(2969), + [anon_sym_select] = ACTIONS(2969), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -524385,6 +523812,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3755] = { + [sym__name] = STATE(4369), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(4068), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(4073), + [sym_type] = STATE(4565), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_identifier] = STATE(4081), + [sym__reserved_identifier] = STATE(3654), [sym_preproc_region] = STATE(3755), [sym_preproc_endregion] = STATE(3755), [sym_preproc_line] = STATE(3755), @@ -524394,52 +523839,34 @@ 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(5102), - [anon_sym_COMMA] = ACTIONS(5102), - [anon_sym_LPAREN] = ACTIONS(5102), - [anon_sym_LT] = ACTIONS(5104), - [anon_sym_GT] = ACTIONS(5104), - [anon_sym_where] = ACTIONS(5102), - [anon_sym_QMARK] = ACTIONS(5104), - [anon_sym_BANG] = ACTIONS(5104), - [anon_sym_PLUS_PLUS] = ACTIONS(5102), - [anon_sym_DASH_DASH] = ACTIONS(5102), - [anon_sym_PLUS] = ACTIONS(5104), - [anon_sym_DASH] = ACTIONS(5104), - [anon_sym_STAR] = ACTIONS(5102), - [anon_sym_SLASH] = ACTIONS(5104), - [anon_sym_PERCENT] = ACTIONS(5102), - [anon_sym_CARET] = ACTIONS(5102), - [anon_sym_PIPE] = ACTIONS(5104), - [anon_sym_AMP] = ACTIONS(5104), - [anon_sym_LT_LT] = ACTIONS(5102), - [anon_sym_GT_GT] = ACTIONS(5104), - [anon_sym_GT_GT_GT] = ACTIONS(5102), - [anon_sym_EQ_EQ] = ACTIONS(5102), - [anon_sym_BANG_EQ] = ACTIONS(5102), - [anon_sym_GT_EQ] = ACTIONS(5102), - [anon_sym_LT_EQ] = ACTIONS(5102), - [anon_sym_DOT] = ACTIONS(5104), - [anon_sym_switch] = ACTIONS(5102), - [anon_sym_DOT_DOT] = ACTIONS(5102), - [anon_sym_and] = ACTIONS(5102), - [anon_sym_or] = ACTIONS(5104), - [anon_sym_AMP_AMP] = ACTIONS(5102), - [anon_sym_PIPE_PIPE] = ACTIONS(5102), - [anon_sym_QMARK_QMARK] = ACTIONS(5102), - [anon_sym_from] = ACTIONS(5102), - [anon_sym_into] = ACTIONS(5102), - [anon_sym_join] = ACTIONS(5102), - [anon_sym_let] = ACTIONS(5102), - [anon_sym_orderby] = ACTIONS(5102), - [anon_sym_ascending] = ACTIONS(5102), - [anon_sym_descending] = ACTIONS(5102), - [anon_sym_group] = ACTIONS(5102), - [anon_sym_select] = ACTIONS(5102), - [anon_sym_as] = ACTIONS(5104), - [anon_sym_is] = ACTIONS(5102), - [anon_sym_DASH_GT] = ACTIONS(5102), - [anon_sym_with] = ACTIONS(5102), + [sym__identifier_token] = ACTIONS(2965), + [anon_sym_alias] = ACTIONS(2969), + [anon_sym_global] = ACTIONS(2969), + [anon_sym_LPAREN] = ACTIONS(2977), + [anon_sym_ref] = ACTIONS(3436), + [anon_sym_delegate] = ACTIONS(3438), + [anon_sym_file] = ACTIONS(2969), + [anon_sym_readonly] = ACTIONS(2767), + [anon_sym_where] = ACTIONS(2969), + [anon_sym_notnull] = ACTIONS(2969), + [anon_sym_unmanaged] = ACTIONS(2969), + [anon_sym_scoped] = ACTIONS(2993), + [anon_sym_var] = ACTIONS(2995), + [sym_predefined_type] = ACTIONS(2997), + [anon_sym_yield] = ACTIONS(2969), + [anon_sym_when] = ACTIONS(2969), + [anon_sym_from] = ACTIONS(2969), + [anon_sym_into] = ACTIONS(2969), + [anon_sym_join] = ACTIONS(2969), + [anon_sym_on] = ACTIONS(2969), + [anon_sym_equals] = ACTIONS(2969), + [anon_sym_let] = ACTIONS(2969), + [anon_sym_orderby] = ACTIONS(2969), + [anon_sym_ascending] = ACTIONS(2969), + [anon_sym_descending] = ACTIONS(2969), + [anon_sym_group] = ACTIONS(2969), + [anon_sym_by] = ACTIONS(2969), + [anon_sym_select] = ACTIONS(2969), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -524452,24 +523879,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3756] = { - [sym__name] = STATE(4390), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(4096), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(4109), - [sym_type] = STATE(4632), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_identifier] = STATE(4087), - [sym__reserved_identifier] = STATE(3691), + [sym__name] = STATE(4369), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(4068), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(4073), + [sym_type] = STATE(4565), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_identifier] = STATE(4081), + [sym__reserved_identifier] = STATE(3654), [sym_preproc_region] = STATE(3756), [sym_preproc_endregion] = STATE(3756), [sym_preproc_line] = STATE(3756), @@ -524479,34 +523906,34 @@ 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), - [sym__identifier_token] = ACTIONS(2967), - [anon_sym_alias] = ACTIONS(2971), - [anon_sym_global] = ACTIONS(2971), - [anon_sym_LPAREN] = ACTIONS(2979), - [anon_sym_ref] = ACTIONS(6073), - [anon_sym_delegate] = ACTIONS(3454), - [anon_sym_file] = ACTIONS(2971), - [anon_sym_readonly] = ACTIONS(6075), - [anon_sym_where] = ACTIONS(2971), - [anon_sym_notnull] = ACTIONS(2971), - [anon_sym_unmanaged] = ACTIONS(2971), - [anon_sym_scoped] = ACTIONS(6077), - [anon_sym_var] = ACTIONS(6079), - [sym_predefined_type] = ACTIONS(3001), - [anon_sym_yield] = ACTIONS(2971), - [anon_sym_when] = ACTIONS(2971), - [anon_sym_from] = ACTIONS(2971), - [anon_sym_into] = ACTIONS(2971), - [anon_sym_join] = ACTIONS(2971), - [anon_sym_on] = ACTIONS(2971), - [anon_sym_equals] = ACTIONS(2971), - [anon_sym_let] = ACTIONS(2971), - [anon_sym_orderby] = ACTIONS(2971), - [anon_sym_ascending] = ACTIONS(2971), - [anon_sym_descending] = ACTIONS(2971), - [anon_sym_group] = ACTIONS(2971), - [anon_sym_by] = ACTIONS(2971), - [anon_sym_select] = ACTIONS(2971), + [sym__identifier_token] = ACTIONS(2965), + [anon_sym_alias] = ACTIONS(2969), + [anon_sym_global] = ACTIONS(2969), + [anon_sym_LPAREN] = ACTIONS(2977), + [anon_sym_ref] = ACTIONS(6139), + [anon_sym_delegate] = ACTIONS(3438), + [anon_sym_file] = ACTIONS(2969), + [anon_sym_readonly] = ACTIONS(6141), + [anon_sym_where] = ACTIONS(2969), + [anon_sym_notnull] = ACTIONS(2969), + [anon_sym_unmanaged] = ACTIONS(2969), + [anon_sym_scoped] = ACTIONS(6143), + [anon_sym_var] = ACTIONS(6039), + [sym_predefined_type] = ACTIONS(2997), + [anon_sym_yield] = ACTIONS(2969), + [anon_sym_when] = ACTIONS(2969), + [anon_sym_from] = ACTIONS(2969), + [anon_sym_into] = ACTIONS(2969), + [anon_sym_join] = ACTIONS(2969), + [anon_sym_on] = ACTIONS(2969), + [anon_sym_equals] = ACTIONS(2969), + [anon_sym_let] = ACTIONS(2969), + [anon_sym_orderby] = ACTIONS(2969), + [anon_sym_ascending] = ACTIONS(2969), + [anon_sym_descending] = ACTIONS(2969), + [anon_sym_group] = ACTIONS(2969), + [anon_sym_by] = ACTIONS(2969), + [anon_sym_select] = ACTIONS(2969), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -524519,25 +523946,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3757] = { - [sym__name] = STATE(4390), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(4096), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(4109), - [sym_type] = STATE(6097), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym__join_header] = STATE(7145), - [sym_identifier] = STATE(5785), - [sym__reserved_identifier] = STATE(3691), [sym_preproc_region] = STATE(3757), [sym_preproc_endregion] = STATE(3757), [sym_preproc_line] = STATE(3757), @@ -524547,33 +523955,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(2967), - [anon_sym_alias] = ACTIONS(2971), - [anon_sym_global] = ACTIONS(2971), - [anon_sym_LPAREN] = ACTIONS(2979), - [anon_sym_ref] = ACTIONS(3452), - [anon_sym_delegate] = ACTIONS(3454), - [anon_sym_file] = ACTIONS(2971), - [anon_sym_where] = ACTIONS(2971), - [anon_sym_notnull] = ACTIONS(2971), - [anon_sym_unmanaged] = ACTIONS(2971), - [anon_sym_scoped] = ACTIONS(2997), - [anon_sym_var] = ACTIONS(2999), - [sym_predefined_type] = ACTIONS(3001), - [anon_sym_yield] = ACTIONS(2971), - [anon_sym_when] = ACTIONS(2971), - [anon_sym_from] = ACTIONS(2971), - [anon_sym_into] = ACTIONS(2971), - [anon_sym_join] = ACTIONS(2971), - [anon_sym_on] = ACTIONS(2971), - [anon_sym_equals] = ACTIONS(2971), - [anon_sym_let] = ACTIONS(2971), - [anon_sym_orderby] = ACTIONS(2971), - [anon_sym_ascending] = ACTIONS(2971), - [anon_sym_descending] = ACTIONS(2971), - [anon_sym_group] = ACTIONS(2971), - [anon_sym_by] = ACTIONS(2971), - [anon_sym_select] = ACTIONS(2971), + [anon_sym_LBRACK] = ACTIONS(4917), + [anon_sym_COMMA] = ACTIONS(4917), + [anon_sym_LPAREN] = ACTIONS(4917), + [anon_sym_LT] = ACTIONS(4919), + [anon_sym_GT] = ACTIONS(4919), + [anon_sym_where] = ACTIONS(4917), + [anon_sym_QMARK] = ACTIONS(4919), + [anon_sym_BANG] = ACTIONS(4919), + [anon_sym_PLUS_PLUS] = ACTIONS(4917), + [anon_sym_DASH_DASH] = ACTIONS(4917), + [anon_sym_PLUS] = ACTIONS(4919), + [anon_sym_DASH] = ACTIONS(4919), + [anon_sym_STAR] = ACTIONS(4917), + [anon_sym_SLASH] = ACTIONS(4919), + [anon_sym_PERCENT] = ACTIONS(4917), + [anon_sym_CARET] = ACTIONS(4917), + [anon_sym_PIPE] = ACTIONS(4919), + [anon_sym_AMP] = ACTIONS(4919), + [anon_sym_LT_LT] = ACTIONS(4917), + [anon_sym_GT_GT] = ACTIONS(4919), + [anon_sym_GT_GT_GT] = ACTIONS(4917), + [anon_sym_EQ_EQ] = ACTIONS(4917), + [anon_sym_BANG_EQ] = ACTIONS(4917), + [anon_sym_GT_EQ] = ACTIONS(4917), + [anon_sym_LT_EQ] = ACTIONS(4917), + [anon_sym_DOT] = ACTIONS(4919), + [anon_sym_switch] = ACTIONS(4917), + [anon_sym_DOT_DOT] = ACTIONS(4917), + [anon_sym_and] = ACTIONS(4917), + [anon_sym_or] = ACTIONS(4919), + [anon_sym_AMP_AMP] = ACTIONS(4917), + [anon_sym_PIPE_PIPE] = ACTIONS(4917), + [anon_sym_QMARK_QMARK] = ACTIONS(4917), + [anon_sym_from] = ACTIONS(4917), + [anon_sym_into] = ACTIONS(4917), + [anon_sym_join] = ACTIONS(4917), + [anon_sym_let] = ACTIONS(4917), + [anon_sym_orderby] = ACTIONS(4917), + [anon_sym_ascending] = ACTIONS(4917), + [anon_sym_descending] = ACTIONS(4917), + [anon_sym_group] = ACTIONS(4917), + [anon_sym_select] = ACTIONS(4917), + [anon_sym_as] = ACTIONS(4919), + [anon_sym_is] = ACTIONS(4917), + [anon_sym_DASH_GT] = ACTIONS(4917), + [anon_sym_with] = ACTIONS(4917), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -524586,24 +524013,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3758] = { - [sym__name] = STATE(2419), - [sym_alias_qualified_name] = STATE(2373), - [sym__simple_name] = STATE(2373), - [sym_qualified_name] = STATE(2373), - [sym_generic_name] = STATE(2389), - [sym_type] = STATE(2381), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(2378), - [sym__array_base_type] = STATE(7103), - [sym_nullable_type] = STATE(2379), - [sym_pointer_type] = STATE(2379), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(2379), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(2380), - [sym_identifier] = STATE(2359), - [sym__reserved_identifier] = STATE(2361), [sym_preproc_region] = STATE(3758), [sym_preproc_endregion] = STATE(3758), [sym_preproc_line] = STATE(3758), @@ -524613,34 +524022,52 @@ 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), - [sym__identifier_token] = ACTIONS(4058), - [anon_sym_alias] = ACTIONS(4060), - [anon_sym_global] = ACTIONS(4060), - [anon_sym_LPAREN] = ACTIONS(6055), - [anon_sym_ref] = ACTIONS(3587), - [anon_sym_delegate] = ACTIONS(3454), - [anon_sym_file] = ACTIONS(4060), - [anon_sym_readonly] = ACTIONS(2865), - [anon_sym_where] = ACTIONS(4060), - [anon_sym_notnull] = ACTIONS(4060), - [anon_sym_unmanaged] = ACTIONS(4060), - [anon_sym_scoped] = ACTIONS(6081), - [anon_sym_var] = ACTIONS(5638), - [sym_predefined_type] = ACTIONS(5640), - [anon_sym_yield] = ACTIONS(4060), - [anon_sym_when] = ACTIONS(4060), - [anon_sym_from] = ACTIONS(4060), - [anon_sym_into] = ACTIONS(4060), - [anon_sym_join] = ACTIONS(4060), - [anon_sym_on] = ACTIONS(4060), - [anon_sym_equals] = ACTIONS(4060), - [anon_sym_let] = ACTIONS(4060), - [anon_sym_orderby] = ACTIONS(4060), - [anon_sym_ascending] = ACTIONS(4060), - [anon_sym_descending] = ACTIONS(4060), - [anon_sym_group] = ACTIONS(4060), - [anon_sym_by] = ACTIONS(4060), - [anon_sym_select] = ACTIONS(4060), + [anon_sym_LBRACK] = ACTIONS(5072), + [anon_sym_COMMA] = ACTIONS(5072), + [anon_sym_LPAREN] = ACTIONS(5072), + [anon_sym_LT] = ACTIONS(5074), + [anon_sym_GT] = ACTIONS(5074), + [anon_sym_where] = ACTIONS(5072), + [anon_sym_QMARK] = ACTIONS(5074), + [anon_sym_BANG] = ACTIONS(5074), + [anon_sym_PLUS_PLUS] = ACTIONS(5072), + [anon_sym_DASH_DASH] = ACTIONS(5072), + [anon_sym_PLUS] = ACTIONS(5074), + [anon_sym_DASH] = ACTIONS(5074), + [anon_sym_STAR] = ACTIONS(5072), + [anon_sym_SLASH] = ACTIONS(5074), + [anon_sym_PERCENT] = ACTIONS(5072), + [anon_sym_CARET] = ACTIONS(5072), + [anon_sym_PIPE] = ACTIONS(5074), + [anon_sym_AMP] = ACTIONS(5074), + [anon_sym_LT_LT] = ACTIONS(5072), + [anon_sym_GT_GT] = ACTIONS(5074), + [anon_sym_GT_GT_GT] = ACTIONS(5072), + [anon_sym_EQ_EQ] = ACTIONS(5072), + [anon_sym_BANG_EQ] = ACTIONS(5072), + [anon_sym_GT_EQ] = ACTIONS(5072), + [anon_sym_LT_EQ] = ACTIONS(5072), + [anon_sym_DOT] = ACTIONS(5074), + [anon_sym_switch] = ACTIONS(5072), + [anon_sym_DOT_DOT] = ACTIONS(5072), + [anon_sym_and] = ACTIONS(5072), + [anon_sym_or] = ACTIONS(5074), + [anon_sym_AMP_AMP] = ACTIONS(5072), + [anon_sym_PIPE_PIPE] = ACTIONS(5072), + [anon_sym_QMARK_QMARK] = ACTIONS(5072), + [anon_sym_from] = ACTIONS(5072), + [anon_sym_into] = ACTIONS(5072), + [anon_sym_join] = ACTIONS(5072), + [anon_sym_let] = ACTIONS(5072), + [anon_sym_orderby] = ACTIONS(5072), + [anon_sym_ascending] = ACTIONS(5072), + [anon_sym_descending] = ACTIONS(5072), + [anon_sym_group] = ACTIONS(5072), + [anon_sym_select] = ACTIONS(5072), + [anon_sym_as] = ACTIONS(5074), + [anon_sym_is] = ACTIONS(5072), + [anon_sym_DASH_GT] = ACTIONS(5072), + [anon_sym_with] = ACTIONS(5072), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -524653,15 +524080,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3759] = { - [sym__name] = STATE(5302), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(4096), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_ref_type] = STATE(2317), - [sym__scoped_base_type] = STATE(2340), - [sym_identifier] = STATE(4373), - [sym__reserved_identifier] = STATE(2175), + [sym__name] = STATE(2411), + [sym_alias_qualified_name] = STATE(2402), + [sym__simple_name] = STATE(2402), + [sym_qualified_name] = STATE(2402), + [sym_generic_name] = STATE(2384), + [sym_type] = STATE(2397), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(2373), + [sym__array_base_type] = STATE(7083), + [sym_nullable_type] = STATE(2375), + [sym_pointer_type] = STATE(2375), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(2375), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(2377), + [sym_identifier] = STATE(2351), + [sym__reserved_identifier] = STATE(2354), [sym_preproc_region] = STATE(3759), [sym_preproc_endregion] = STATE(3759), [sym_preproc_line] = STATE(3759), @@ -524671,43 +524107,34 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3759), [sym_preproc_define] = STATE(3759), [sym_preproc_undef] = STATE(3759), - [sym__identifier_token] = ACTIONS(3600), - [anon_sym_alias] = ACTIONS(3603), - [anon_sym_global] = ACTIONS(3603), - [anon_sym_LBRACK] = ACTIONS(3445), - [anon_sym_COMMA] = ACTIONS(3445), - [anon_sym_LPAREN] = ACTIONS(3445), - [anon_sym_RPAREN] = ACTIONS(3445), - [anon_sym_ref] = ACTIONS(3640), - [anon_sym_LBRACE] = ACTIONS(3445), - [anon_sym_file] = ACTIONS(3603), - [anon_sym_LT] = ACTIONS(3445), - [anon_sym_where] = ACTIONS(3603), - [anon_sym_QMARK] = ACTIONS(3445), - [anon_sym_notnull] = ACTIONS(3603), - [anon_sym_unmanaged] = ACTIONS(3603), - [anon_sym_STAR] = ACTIONS(3445), - [anon_sym_DOT] = ACTIONS(3445), - [anon_sym_scoped] = ACTIONS(3603), - [anon_sym_COLON_COLON] = ACTIONS(3445), - [anon_sym_var] = ACTIONS(3603), - [anon_sym_yield] = ACTIONS(3603), - [anon_sym_when] = ACTIONS(3603), - [sym_discard] = ACTIONS(3447), - [anon_sym_and] = ACTIONS(3447), - [anon_sym_or] = ACTIONS(3447), - [anon_sym_from] = ACTIONS(3603), - [anon_sym_into] = ACTIONS(3603), - [anon_sym_join] = ACTIONS(3603), - [anon_sym_on] = ACTIONS(3603), - [anon_sym_equals] = ACTIONS(3603), - [anon_sym_let] = ACTIONS(3603), - [anon_sym_orderby] = ACTIONS(3603), - [anon_sym_ascending] = ACTIONS(3603), - [anon_sym_descending] = ACTIONS(3603), - [anon_sym_group] = ACTIONS(3603), - [anon_sym_by] = ACTIONS(3603), - [anon_sym_select] = ACTIONS(3603), + [sym__identifier_token] = ACTIONS(4080), + [anon_sym_alias] = ACTIONS(4082), + [anon_sym_global] = ACTIONS(4082), + [anon_sym_LPAREN] = ACTIONS(6111), + [anon_sym_ref] = ACTIONS(4084), + [anon_sym_delegate] = ACTIONS(3438), + [anon_sym_file] = ACTIONS(4082), + [anon_sym_readonly] = ACTIONS(6145), + [anon_sym_where] = ACTIONS(4082), + [anon_sym_notnull] = ACTIONS(4082), + [anon_sym_unmanaged] = ACTIONS(4082), + [anon_sym_scoped] = ACTIONS(5815), + [anon_sym_var] = ACTIONS(5817), + [sym_predefined_type] = ACTIONS(5819), + [anon_sym_yield] = ACTIONS(4082), + [anon_sym_when] = ACTIONS(4082), + [anon_sym_from] = ACTIONS(4082), + [anon_sym_into] = ACTIONS(4082), + [anon_sym_join] = ACTIONS(4082), + [anon_sym_on] = ACTIONS(4082), + [anon_sym_equals] = ACTIONS(4082), + [anon_sym_let] = ACTIONS(4082), + [anon_sym_orderby] = ACTIONS(4082), + [anon_sym_ascending] = ACTIONS(4082), + [anon_sym_descending] = ACTIONS(4082), + [anon_sym_group] = ACTIONS(4082), + [anon_sym_by] = ACTIONS(4082), + [anon_sym_select] = ACTIONS(4082), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -524720,24 +524147,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3760] = { - [sym__name] = STATE(3072), - [sym_alias_qualified_name] = STATE(3029), - [sym__simple_name] = STATE(3029), - [sym_qualified_name] = STATE(3029), - [sym_generic_name] = STATE(2985), - [sym_type] = STATE(3026), - [sym_implicit_type] = STATE(3054), - [sym_array_type] = STATE(2992), - [sym__array_base_type] = STATE(7267), - [sym_nullable_type] = STATE(3012), - [sym_pointer_type] = STATE(3012), - [sym__pointer_base_type] = STATE(7693), - [sym_function_pointer_type] = STATE(3012), - [sym_ref_type] = STATE(3054), - [sym_scoped_type] = STATE(3054), - [sym_tuple_type] = STATE(3058), - [sym_identifier] = STATE(2923), - [sym__reserved_identifier] = STATE(2945), + [sym__name] = STATE(4369), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(4068), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(4073), + [sym_type] = STATE(4565), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_identifier] = STATE(4081), + [sym__reserved_identifier] = STATE(3654), [sym_preproc_region] = STATE(3760), [sym_preproc_endregion] = STATE(3760), [sym_preproc_line] = STATE(3760), @@ -524747,34 +524174,34 @@ 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), - [sym__identifier_token] = ACTIONS(3887), - [anon_sym_alias] = ACTIONS(3889), - [anon_sym_global] = ACTIONS(3889), - [anon_sym_LPAREN] = ACTIONS(6051), - [anon_sym_ref] = ACTIONS(4217), - [anon_sym_delegate] = ACTIONS(4042), - [anon_sym_file] = ACTIONS(3889), - [anon_sym_readonly] = ACTIONS(6083), - [anon_sym_where] = ACTIONS(3889), - [anon_sym_notnull] = ACTIONS(3889), - [anon_sym_unmanaged] = ACTIONS(3889), - [anon_sym_scoped] = ACTIONS(5646), - [anon_sym_var] = ACTIONS(4046), - [sym_predefined_type] = ACTIONS(4048), - [anon_sym_yield] = ACTIONS(3889), - [anon_sym_when] = ACTIONS(3889), - [anon_sym_from] = ACTIONS(3889), - [anon_sym_into] = ACTIONS(3889), - [anon_sym_join] = ACTIONS(3889), - [anon_sym_on] = ACTIONS(3889), - [anon_sym_equals] = ACTIONS(3889), - [anon_sym_let] = ACTIONS(3889), - [anon_sym_orderby] = ACTIONS(3889), - [anon_sym_ascending] = ACTIONS(3889), - [anon_sym_descending] = ACTIONS(3889), - [anon_sym_group] = ACTIONS(3889), - [anon_sym_by] = ACTIONS(3889), - [anon_sym_select] = ACTIONS(3889), + [sym__identifier_token] = ACTIONS(2965), + [anon_sym_alias] = ACTIONS(2969), + [anon_sym_global] = ACTIONS(2969), + [anon_sym_LPAREN] = ACTIONS(2977), + [anon_sym_ref] = ACTIONS(5500), + [anon_sym_delegate] = ACTIONS(3438), + [anon_sym_file] = ACTIONS(2969), + [anon_sym_readonly] = ACTIONS(6147), + [anon_sym_where] = ACTIONS(2969), + [anon_sym_notnull] = ACTIONS(2969), + [anon_sym_unmanaged] = ACTIONS(2969), + [anon_sym_scoped] = ACTIONS(5508), + [anon_sym_var] = ACTIONS(4705), + [sym_predefined_type] = ACTIONS(2997), + [anon_sym_yield] = ACTIONS(2969), + [anon_sym_when] = ACTIONS(2969), + [anon_sym_from] = ACTIONS(2969), + [anon_sym_into] = ACTIONS(2969), + [anon_sym_join] = ACTIONS(2969), + [anon_sym_on] = ACTIONS(2969), + [anon_sym_equals] = ACTIONS(2969), + [anon_sym_let] = ACTIONS(2969), + [anon_sym_orderby] = ACTIONS(2969), + [anon_sym_ascending] = ACTIONS(2969), + [anon_sym_descending] = ACTIONS(2969), + [anon_sym_group] = ACTIONS(2969), + [anon_sym_by] = ACTIONS(2969), + [anon_sym_select] = ACTIONS(2969), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -524787,25 +524214,25 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3761] = { - [sym_variable_declaration] = STATE(7647), - [sym__name] = STATE(4390), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(4096), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(4109), - [sym_type] = STATE(5712), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_identifier] = STATE(4087), - [sym__reserved_identifier] = STATE(3691), + [sym_variable_declaration] = STATE(7359), + [sym__name] = STATE(4369), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(4068), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(4073), + [sym_type] = STATE(5901), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_identifier] = STATE(4081), + [sym__reserved_identifier] = STATE(3654), [sym_preproc_region] = STATE(3761), [sym_preproc_endregion] = STATE(3761), [sym_preproc_line] = STATE(3761), @@ -524815,33 +524242,33 @@ 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), - [sym__identifier_token] = ACTIONS(2967), - [anon_sym_alias] = ACTIONS(2971), - [anon_sym_global] = ACTIONS(2971), - [anon_sym_LPAREN] = ACTIONS(2979), - [anon_sym_ref] = ACTIONS(3452), - [anon_sym_delegate] = ACTIONS(3454), - [anon_sym_file] = ACTIONS(2971), - [anon_sym_where] = ACTIONS(2971), - [anon_sym_notnull] = ACTIONS(2971), - [anon_sym_unmanaged] = ACTIONS(2971), - [anon_sym_scoped] = ACTIONS(2997), - [anon_sym_var] = ACTIONS(2999), - [sym_predefined_type] = ACTIONS(3001), - [anon_sym_yield] = ACTIONS(2971), - [anon_sym_when] = ACTIONS(2971), - [anon_sym_from] = ACTIONS(2971), - [anon_sym_into] = ACTIONS(2971), - [anon_sym_join] = ACTIONS(2971), - [anon_sym_on] = ACTIONS(2971), - [anon_sym_equals] = ACTIONS(2971), - [anon_sym_let] = ACTIONS(2971), - [anon_sym_orderby] = ACTIONS(2971), - [anon_sym_ascending] = ACTIONS(2971), - [anon_sym_descending] = ACTIONS(2971), - [anon_sym_group] = ACTIONS(2971), - [anon_sym_by] = ACTIONS(2971), - [anon_sym_select] = ACTIONS(2971), + [sym__identifier_token] = ACTIONS(2965), + [anon_sym_alias] = ACTIONS(2969), + [anon_sym_global] = ACTIONS(2969), + [anon_sym_LPAREN] = ACTIONS(2977), + [anon_sym_ref] = ACTIONS(3436), + [anon_sym_delegate] = ACTIONS(3438), + [anon_sym_file] = ACTIONS(2969), + [anon_sym_where] = ACTIONS(2969), + [anon_sym_notnull] = ACTIONS(2969), + [anon_sym_unmanaged] = ACTIONS(2969), + [anon_sym_scoped] = ACTIONS(2993), + [anon_sym_var] = ACTIONS(2995), + [sym_predefined_type] = ACTIONS(2997), + [anon_sym_yield] = ACTIONS(2969), + [anon_sym_when] = ACTIONS(2969), + [anon_sym_from] = ACTIONS(2969), + [anon_sym_into] = ACTIONS(2969), + [anon_sym_join] = ACTIONS(2969), + [anon_sym_on] = ACTIONS(2969), + [anon_sym_equals] = ACTIONS(2969), + [anon_sym_let] = ACTIONS(2969), + [anon_sym_orderby] = ACTIONS(2969), + [anon_sym_ascending] = ACTIONS(2969), + [anon_sym_descending] = ACTIONS(2969), + [anon_sym_group] = ACTIONS(2969), + [anon_sym_by] = ACTIONS(2969), + [anon_sym_select] = ACTIONS(2969), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -524854,24 +524281,25 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3762] = { - [sym__name] = STATE(2419), - [sym_alias_qualified_name] = STATE(2373), - [sym__simple_name] = STATE(2373), - [sym_qualified_name] = STATE(2373), - [sym_generic_name] = STATE(2389), - [sym_type] = STATE(2381), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(2378), - [sym__array_base_type] = STATE(7103), - [sym_nullable_type] = STATE(2379), - [sym_pointer_type] = STATE(2379), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(2379), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(2380), - [sym_identifier] = STATE(2359), - [sym__reserved_identifier] = STATE(2361), + [sym__name] = STATE(4369), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(4068), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(4073), + [sym_type] = STATE(5960), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_tuple_element] = STATE(7118), + [sym_identifier] = STATE(4081), + [sym__reserved_identifier] = STATE(3654), [sym_preproc_region] = STATE(3762), [sym_preproc_endregion] = STATE(3762), [sym_preproc_line] = STATE(3762), @@ -524881,34 +524309,33 @@ 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(4058), - [anon_sym_alias] = ACTIONS(4060), - [anon_sym_global] = ACTIONS(4060), - [anon_sym_LPAREN] = ACTIONS(6055), - [anon_sym_ref] = ACTIONS(4098), - [anon_sym_delegate] = ACTIONS(3454), - [anon_sym_file] = ACTIONS(4060), - [anon_sym_readonly] = ACTIONS(6085), - [anon_sym_where] = ACTIONS(4060), - [anon_sym_notnull] = ACTIONS(4060), - [anon_sym_unmanaged] = ACTIONS(4060), - [anon_sym_scoped] = ACTIONS(5836), - [anon_sym_var] = ACTIONS(5638), - [sym_predefined_type] = ACTIONS(5640), - [anon_sym_yield] = ACTIONS(4060), - [anon_sym_when] = ACTIONS(4060), - [anon_sym_from] = ACTIONS(4060), - [anon_sym_into] = ACTIONS(4060), - [anon_sym_join] = ACTIONS(4060), - [anon_sym_on] = ACTIONS(4060), - [anon_sym_equals] = ACTIONS(4060), - [anon_sym_let] = ACTIONS(4060), - [anon_sym_orderby] = ACTIONS(4060), - [anon_sym_ascending] = ACTIONS(4060), - [anon_sym_descending] = ACTIONS(4060), - [anon_sym_group] = ACTIONS(4060), - [anon_sym_by] = ACTIONS(4060), - [anon_sym_select] = ACTIONS(4060), + [sym__identifier_token] = ACTIONS(2965), + [anon_sym_alias] = ACTIONS(2969), + [anon_sym_global] = ACTIONS(2969), + [anon_sym_LPAREN] = ACTIONS(2977), + [anon_sym_ref] = ACTIONS(3590), + [anon_sym_delegate] = ACTIONS(3438), + [anon_sym_file] = ACTIONS(2969), + [anon_sym_where] = ACTIONS(2969), + [anon_sym_notnull] = ACTIONS(2969), + [anon_sym_unmanaged] = ACTIONS(2969), + [anon_sym_scoped] = ACTIONS(5843), + [anon_sym_var] = ACTIONS(4705), + [sym_predefined_type] = ACTIONS(2997), + [anon_sym_yield] = ACTIONS(2969), + [anon_sym_when] = ACTIONS(2969), + [anon_sym_from] = ACTIONS(2969), + [anon_sym_into] = ACTIONS(2969), + [anon_sym_join] = ACTIONS(2969), + [anon_sym_on] = ACTIONS(2969), + [anon_sym_equals] = ACTIONS(2969), + [anon_sym_let] = ACTIONS(2969), + [anon_sym_orderby] = ACTIONS(2969), + [anon_sym_ascending] = ACTIONS(2969), + [anon_sym_descending] = ACTIONS(2969), + [anon_sym_group] = ACTIONS(2969), + [anon_sym_by] = ACTIONS(2969), + [anon_sym_select] = ACTIONS(2969), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -524921,24 +524348,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3763] = { - [sym__name] = STATE(3453), - [sym_alias_qualified_name] = STATE(3251), - [sym__simple_name] = STATE(3251), - [sym_qualified_name] = STATE(3251), - [sym_generic_name] = STATE(3246), - [sym_type] = STATE(3273), - [sym_implicit_type] = STATE(3253), - [sym_array_type] = STATE(3255), - [sym__array_base_type] = STATE(7101), - [sym_nullable_type] = STATE(3257), - [sym_pointer_type] = STATE(3257), - [sym__pointer_base_type] = STATE(7546), - [sym_function_pointer_type] = STATE(3257), - [sym_ref_type] = STATE(3253), - [sym_scoped_type] = STATE(3253), - [sym_tuple_type] = STATE(3258), - [sym_identifier] = STATE(3167), - [sym__reserved_identifier] = STATE(3225), + [sym__name] = STATE(4451), + [sym_alias_qualified_name] = STATE(4462), + [sym__simple_name] = STATE(4462), + [sym_qualified_name] = STATE(4462), + [sym_generic_name] = STATE(4410), + [sym_type] = STATE(4437), + [sym_implicit_type] = STATE(4385), + [sym_array_type] = STATE(4477), + [sym__array_base_type] = STATE(7056), + [sym_nullable_type] = STATE(4481), + [sym_pointer_type] = STATE(4481), + [sym__pointer_base_type] = STATE(7551), + [sym_function_pointer_type] = STATE(4481), + [sym_ref_type] = STATE(4385), + [sym_scoped_type] = STATE(4385), + [sym_tuple_type] = STATE(4484), + [sym_identifier] = STATE(4194), + [sym__reserved_identifier] = STATE(4314), [sym_preproc_region] = STATE(3763), [sym_preproc_endregion] = STATE(3763), [sym_preproc_line] = STATE(3763), @@ -524948,34 +524375,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(3788), - [anon_sym_alias] = ACTIONS(3790), - [anon_sym_global] = ACTIONS(3790), - [anon_sym_LPAREN] = ACTIONS(6059), - [anon_sym_ref] = ACTIONS(4028), - [anon_sym_delegate] = ACTIONS(5818), - [anon_sym_file] = ACTIONS(3790), - [anon_sym_readonly] = ACTIONS(6087), - [anon_sym_where] = ACTIONS(3790), - [anon_sym_notnull] = ACTIONS(3790), - [anon_sym_unmanaged] = ACTIONS(3790), - [anon_sym_scoped] = ACTIONS(5895), - [anon_sym_var] = ACTIONS(5822), - [sym_predefined_type] = ACTIONS(5824), - [anon_sym_yield] = ACTIONS(3790), - [anon_sym_when] = ACTIONS(3790), - [anon_sym_from] = ACTIONS(3790), - [anon_sym_into] = ACTIONS(3790), - [anon_sym_join] = ACTIONS(3790), - [anon_sym_on] = ACTIONS(3790), - [anon_sym_equals] = ACTIONS(3790), - [anon_sym_let] = ACTIONS(3790), - [anon_sym_orderby] = ACTIONS(3790), - [anon_sym_ascending] = ACTIONS(3790), - [anon_sym_descending] = ACTIONS(3790), - [anon_sym_group] = ACTIONS(3790), - [anon_sym_by] = ACTIONS(3790), - [anon_sym_select] = ACTIONS(3790), + [sym__identifier_token] = ACTIONS(3965), + [anon_sym_alias] = ACTIONS(3967), + [anon_sym_global] = ACTIONS(3967), + [anon_sym_LPAREN] = ACTIONS(6077), + [anon_sym_ref] = ACTIONS(3969), + [anon_sym_delegate] = ACTIONS(5751), + [anon_sym_file] = ACTIONS(3967), + [anon_sym_readonly] = ACTIONS(6149), + [anon_sym_where] = ACTIONS(3967), + [anon_sym_notnull] = ACTIONS(3967), + [anon_sym_unmanaged] = ACTIONS(3967), + [anon_sym_scoped] = ACTIONS(5853), + [anon_sym_var] = ACTIONS(5755), + [sym_predefined_type] = ACTIONS(5757), + [anon_sym_yield] = ACTIONS(3967), + [anon_sym_when] = ACTIONS(3967), + [anon_sym_from] = ACTIONS(3967), + [anon_sym_into] = ACTIONS(3967), + [anon_sym_join] = ACTIONS(3967), + [anon_sym_on] = ACTIONS(3967), + [anon_sym_equals] = ACTIONS(3967), + [anon_sym_let] = ACTIONS(3967), + [anon_sym_orderby] = ACTIONS(3967), + [anon_sym_ascending] = ACTIONS(3967), + [anon_sym_descending] = ACTIONS(3967), + [anon_sym_group] = ACTIONS(3967), + [anon_sym_by] = ACTIONS(3967), + [anon_sym_select] = ACTIONS(3967), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -524988,8 +524415,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3764] = { - [sym_argument_list] = STATE(3886), - [sym_bracketed_argument_list] = STATE(2902), [sym_preproc_region] = STATE(3764), [sym_preproc_endregion] = STATE(3764), [sym_preproc_line] = STATE(3764), @@ -524999,50 +524424,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_LBRACK] = ACTIONS(5658), - [anon_sym_COMMA] = ACTIONS(5660), - [anon_sym_LPAREN] = ACTIONS(5624), - [anon_sym_LT] = ACTIONS(6017), - [anon_sym_GT] = ACTIONS(6017), - [anon_sym_where] = ACTIONS(5660), - [anon_sym_QMARK] = ACTIONS(5664), - [anon_sym_BANG] = ACTIONS(5666), - [anon_sym_PLUS_PLUS] = ACTIONS(5668), - [anon_sym_DASH_DASH] = ACTIONS(5668), - [anon_sym_PLUS] = ACTIONS(6021), - [anon_sym_DASH] = ACTIONS(6021), - [anon_sym_STAR] = ACTIONS(6023), - [anon_sym_SLASH] = ACTIONS(6025), - [anon_sym_PERCENT] = ACTIONS(6023), - [anon_sym_CARET] = ACTIONS(5660), - [anon_sym_PIPE] = ACTIONS(5664), - [anon_sym_AMP] = ACTIONS(6031), - [anon_sym_LT_LT] = ACTIONS(6033), - [anon_sym_GT_GT] = ACTIONS(6035), - [anon_sym_GT_GT_GT] = ACTIONS(6033), - [anon_sym_EQ_EQ] = ACTIONS(6037), - [anon_sym_BANG_EQ] = ACTIONS(6037), - [anon_sym_GT_EQ] = ACTIONS(6039), - [anon_sym_LT_EQ] = ACTIONS(6039), - [anon_sym_DOT] = ACTIONS(4733), - [anon_sym_switch] = ACTIONS(5688), - [anon_sym_DOT_DOT] = ACTIONS(6041), - [anon_sym_AMP_AMP] = ACTIONS(5660), - [anon_sym_PIPE_PIPE] = ACTIONS(5660), - [anon_sym_QMARK_QMARK] = ACTIONS(5660), - [anon_sym_from] = ACTIONS(5660), - [anon_sym_into] = ACTIONS(5660), - [anon_sym_join] = ACTIONS(5660), - [anon_sym_let] = ACTIONS(5660), - [anon_sym_orderby] = ACTIONS(5660), - [anon_sym_ascending] = ACTIONS(5660), - [anon_sym_descending] = ACTIONS(5660), - [anon_sym_group] = ACTIONS(5660), - [anon_sym_select] = ACTIONS(5660), - [anon_sym_as] = ACTIONS(5692), - [anon_sym_is] = ACTIONS(6049), - [anon_sym_DASH_GT] = ACTIONS(4719), - [anon_sym_with] = ACTIONS(5696), + [anon_sym_LBRACK] = ACTIONS(5100), + [anon_sym_COMMA] = ACTIONS(5100), + [anon_sym_LPAREN] = ACTIONS(5100), + [anon_sym_LT] = ACTIONS(5102), + [anon_sym_GT] = ACTIONS(5102), + [anon_sym_where] = ACTIONS(5100), + [anon_sym_QMARK] = ACTIONS(5102), + [anon_sym_BANG] = ACTIONS(5102), + [anon_sym_PLUS_PLUS] = ACTIONS(5100), + [anon_sym_DASH_DASH] = ACTIONS(5100), + [anon_sym_PLUS] = ACTIONS(5102), + [anon_sym_DASH] = ACTIONS(5102), + [anon_sym_STAR] = ACTIONS(5100), + [anon_sym_SLASH] = ACTIONS(5102), + [anon_sym_PERCENT] = ACTIONS(5100), + [anon_sym_CARET] = ACTIONS(5100), + [anon_sym_PIPE] = ACTIONS(5102), + [anon_sym_AMP] = ACTIONS(5102), + [anon_sym_LT_LT] = ACTIONS(5100), + [anon_sym_GT_GT] = ACTIONS(5102), + [anon_sym_GT_GT_GT] = ACTIONS(5100), + [anon_sym_EQ_EQ] = ACTIONS(5100), + [anon_sym_BANG_EQ] = ACTIONS(5100), + [anon_sym_GT_EQ] = ACTIONS(5100), + [anon_sym_LT_EQ] = ACTIONS(5100), + [anon_sym_DOT] = ACTIONS(5102), + [anon_sym_switch] = ACTIONS(5100), + [anon_sym_DOT_DOT] = ACTIONS(5100), + [anon_sym_and] = ACTIONS(5100), + [anon_sym_or] = ACTIONS(5102), + [anon_sym_AMP_AMP] = ACTIONS(5100), + [anon_sym_PIPE_PIPE] = ACTIONS(5100), + [anon_sym_QMARK_QMARK] = ACTIONS(5100), + [anon_sym_from] = ACTIONS(5100), + [anon_sym_into] = ACTIONS(5100), + [anon_sym_join] = ACTIONS(5100), + [anon_sym_let] = ACTIONS(5100), + [anon_sym_orderby] = ACTIONS(5100), + [anon_sym_ascending] = ACTIONS(5100), + [anon_sym_descending] = ACTIONS(5100), + [anon_sym_group] = ACTIONS(5100), + [anon_sym_select] = ACTIONS(5100), + [anon_sym_as] = ACTIONS(5102), + [anon_sym_is] = ACTIONS(5100), + [anon_sym_DASH_GT] = ACTIONS(5100), + [anon_sym_with] = ACTIONS(5100), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -525055,8 +524482,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3765] = { - [sym_argument_list] = STATE(3886), - [sym_bracketed_argument_list] = STATE(2902), + [sym_argument_list] = STATE(3771), + [sym_bracketed_argument_list] = STATE(2892), [sym_preproc_region] = STATE(3765), [sym_preproc_endregion] = STATE(3765), [sym_preproc_line] = STATE(3765), @@ -525066,50 +524493,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), - [anon_sym_LBRACK] = ACTIONS(5658), - [anon_sym_COMMA] = ACTIONS(5660), - [anon_sym_LPAREN] = ACTIONS(5624), - [anon_sym_LT] = ACTIONS(6017), - [anon_sym_GT] = ACTIONS(6017), - [anon_sym_where] = ACTIONS(5660), - [anon_sym_QMARK] = ACTIONS(5664), - [anon_sym_BANG] = ACTIONS(5666), - [anon_sym_PLUS_PLUS] = ACTIONS(5668), - [anon_sym_DASH_DASH] = ACTIONS(5668), - [anon_sym_PLUS] = ACTIONS(6021), - [anon_sym_DASH] = ACTIONS(6021), - [anon_sym_STAR] = ACTIONS(6023), - [anon_sym_SLASH] = ACTIONS(6025), - [anon_sym_PERCENT] = ACTIONS(6023), - [anon_sym_CARET] = ACTIONS(6027), - [anon_sym_PIPE] = ACTIONS(5664), - [anon_sym_AMP] = ACTIONS(6031), - [anon_sym_LT_LT] = ACTIONS(6033), - [anon_sym_GT_GT] = ACTIONS(6035), - [anon_sym_GT_GT_GT] = ACTIONS(6033), - [anon_sym_EQ_EQ] = ACTIONS(6037), - [anon_sym_BANG_EQ] = ACTIONS(6037), - [anon_sym_GT_EQ] = ACTIONS(6039), - [anon_sym_LT_EQ] = ACTIONS(6039), - [anon_sym_DOT] = ACTIONS(4733), - [anon_sym_switch] = ACTIONS(5688), - [anon_sym_DOT_DOT] = ACTIONS(6041), - [anon_sym_AMP_AMP] = ACTIONS(5660), - [anon_sym_PIPE_PIPE] = ACTIONS(5660), - [anon_sym_QMARK_QMARK] = ACTIONS(5660), - [anon_sym_from] = ACTIONS(5660), - [anon_sym_into] = ACTIONS(5660), - [anon_sym_join] = ACTIONS(5660), - [anon_sym_let] = ACTIONS(5660), - [anon_sym_orderby] = ACTIONS(5660), - [anon_sym_ascending] = ACTIONS(5660), - [anon_sym_descending] = ACTIONS(5660), - [anon_sym_group] = ACTIONS(5660), - [anon_sym_select] = ACTIONS(5660), - [anon_sym_as] = ACTIONS(5692), - [anon_sym_is] = ACTIONS(6049), - [anon_sym_DASH_GT] = ACTIONS(4719), - [anon_sym_with] = ACTIONS(5696), + [anon_sym_LBRACK] = ACTIONS(5650), + [anon_sym_COMMA] = ACTIONS(5855), + [anon_sym_LPAREN] = ACTIONS(5591), + [anon_sym_LT] = ACTIONS(6043), + [anon_sym_GT] = ACTIONS(6043), + [anon_sym_where] = ACTIONS(5855), + [anon_sym_QMARK] = ACTIONS(6045), + [anon_sym_BANG] = ACTIONS(5658), + [anon_sym_PLUS_PLUS] = ACTIONS(5660), + [anon_sym_DASH_DASH] = ACTIONS(5660), + [anon_sym_PLUS] = ACTIONS(6047), + [anon_sym_DASH] = ACTIONS(6047), + [anon_sym_STAR] = ACTIONS(6049), + [anon_sym_SLASH] = ACTIONS(6051), + [anon_sym_PERCENT] = ACTIONS(6049), + [anon_sym_CARET] = ACTIONS(6053), + [anon_sym_PIPE] = ACTIONS(6055), + [anon_sym_AMP] = ACTIONS(6057), + [anon_sym_LT_LT] = ACTIONS(6059), + [anon_sym_GT_GT] = ACTIONS(6061), + [anon_sym_GT_GT_GT] = ACTIONS(6059), + [anon_sym_EQ_EQ] = ACTIONS(6063), + [anon_sym_BANG_EQ] = ACTIONS(6063), + [anon_sym_GT_EQ] = ACTIONS(6065), + [anon_sym_LT_EQ] = ACTIONS(6065), + [anon_sym_DOT] = ACTIONS(4697), + [anon_sym_switch] = ACTIONS(5682), + [anon_sym_DOT_DOT] = ACTIONS(6067), + [anon_sym_AMP_AMP] = ACTIONS(6069), + [anon_sym_PIPE_PIPE] = ACTIONS(6071), + [anon_sym_QMARK_QMARK] = ACTIONS(6073), + [anon_sym_from] = ACTIONS(5855), + [anon_sym_into] = ACTIONS(5855), + [anon_sym_join] = ACTIONS(5855), + [anon_sym_let] = ACTIONS(5855), + [anon_sym_orderby] = ACTIONS(5855), + [anon_sym_ascending] = ACTIONS(5855), + [anon_sym_descending] = ACTIONS(5855), + [anon_sym_group] = ACTIONS(5855), + [anon_sym_select] = ACTIONS(5855), + [anon_sym_as] = ACTIONS(5694), + [anon_sym_is] = ACTIONS(6075), + [anon_sym_DASH_GT] = ACTIONS(4699), + [anon_sym_with] = ACTIONS(5698), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -525122,8 +524549,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3766] = { - [sym_argument_list] = STATE(3886), - [sym_bracketed_argument_list] = STATE(2902), [sym_preproc_region] = STATE(3766), [sym_preproc_endregion] = STATE(3766), [sym_preproc_line] = STATE(3766), @@ -525133,50 +524558,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(5658), - [anon_sym_COMMA] = ACTIONS(5660), - [anon_sym_LPAREN] = ACTIONS(5624), - [anon_sym_LT] = ACTIONS(6017), - [anon_sym_GT] = ACTIONS(6017), - [anon_sym_where] = ACTIONS(5660), - [anon_sym_QMARK] = ACTIONS(5664), - [anon_sym_BANG] = ACTIONS(5666), - [anon_sym_PLUS_PLUS] = ACTIONS(5668), - [anon_sym_DASH_DASH] = ACTIONS(5668), - [anon_sym_PLUS] = ACTIONS(6021), - [anon_sym_DASH] = ACTIONS(6021), - [anon_sym_STAR] = ACTIONS(6023), - [anon_sym_SLASH] = ACTIONS(6025), - [anon_sym_PERCENT] = ACTIONS(6023), - [anon_sym_CARET] = ACTIONS(5660), - [anon_sym_PIPE] = ACTIONS(5664), - [anon_sym_AMP] = ACTIONS(5664), - [anon_sym_LT_LT] = ACTIONS(6033), - [anon_sym_GT_GT] = ACTIONS(6035), - [anon_sym_GT_GT_GT] = ACTIONS(6033), - [anon_sym_EQ_EQ] = ACTIONS(6037), - [anon_sym_BANG_EQ] = ACTIONS(6037), - [anon_sym_GT_EQ] = ACTIONS(6039), - [anon_sym_LT_EQ] = ACTIONS(6039), - [anon_sym_DOT] = ACTIONS(4733), - [anon_sym_switch] = ACTIONS(5688), - [anon_sym_DOT_DOT] = ACTIONS(6041), - [anon_sym_AMP_AMP] = ACTIONS(5660), - [anon_sym_PIPE_PIPE] = ACTIONS(5660), - [anon_sym_QMARK_QMARK] = ACTIONS(5660), - [anon_sym_from] = ACTIONS(5660), - [anon_sym_into] = ACTIONS(5660), - [anon_sym_join] = ACTIONS(5660), - [anon_sym_let] = ACTIONS(5660), - [anon_sym_orderby] = ACTIONS(5660), - [anon_sym_ascending] = ACTIONS(5660), - [anon_sym_descending] = ACTIONS(5660), - [anon_sym_group] = ACTIONS(5660), - [anon_sym_select] = ACTIONS(5660), - [anon_sym_as] = ACTIONS(5692), - [anon_sym_is] = ACTIONS(6049), - [anon_sym_DASH_GT] = ACTIONS(4719), - [anon_sym_with] = ACTIONS(5696), + [anon_sym_LBRACK] = ACTIONS(2951), + [anon_sym_COMMA] = ACTIONS(2951), + [anon_sym_LPAREN] = ACTIONS(2951), + [anon_sym_LT] = ACTIONS(2949), + [anon_sym_GT] = ACTIONS(2949), + [anon_sym_where] = ACTIONS(2951), + [anon_sym_QMARK] = ACTIONS(2949), + [anon_sym_BANG] = ACTIONS(2949), + [anon_sym_PLUS_PLUS] = ACTIONS(2951), + [anon_sym_DASH_DASH] = ACTIONS(2951), + [anon_sym_PLUS] = ACTIONS(2949), + [anon_sym_DASH] = ACTIONS(2949), + [anon_sym_STAR] = ACTIONS(2951), + [anon_sym_SLASH] = ACTIONS(2949), + [anon_sym_PERCENT] = ACTIONS(2951), + [anon_sym_CARET] = ACTIONS(2951), + [anon_sym_PIPE] = ACTIONS(2949), + [anon_sym_AMP] = ACTIONS(2949), + [anon_sym_LT_LT] = ACTIONS(2951), + [anon_sym_GT_GT] = ACTIONS(2949), + [anon_sym_GT_GT_GT] = ACTIONS(2951), + [anon_sym_EQ_EQ] = ACTIONS(2951), + [anon_sym_BANG_EQ] = ACTIONS(2951), + [anon_sym_GT_EQ] = ACTIONS(2951), + [anon_sym_LT_EQ] = ACTIONS(2951), + [anon_sym_DOT] = ACTIONS(2949), + [anon_sym_switch] = ACTIONS(2951), + [anon_sym_DOT_DOT] = ACTIONS(2951), + [anon_sym_and] = ACTIONS(2951), + [anon_sym_or] = ACTIONS(2949), + [anon_sym_AMP_AMP] = ACTIONS(2951), + [anon_sym_PIPE_PIPE] = ACTIONS(2951), + [anon_sym_QMARK_QMARK] = ACTIONS(2951), + [anon_sym_from] = ACTIONS(2951), + [anon_sym_into] = ACTIONS(2951), + [anon_sym_join] = ACTIONS(2951), + [anon_sym_let] = ACTIONS(2951), + [anon_sym_orderby] = ACTIONS(2951), + [anon_sym_ascending] = ACTIONS(2951), + [anon_sym_descending] = ACTIONS(2951), + [anon_sym_group] = ACTIONS(2951), + [anon_sym_select] = ACTIONS(2951), + [anon_sym_as] = ACTIONS(2949), + [anon_sym_is] = ACTIONS(2951), + [anon_sym_DASH_GT] = ACTIONS(2951), + [anon_sym_with] = ACTIONS(2951), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -525189,8 +524616,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3767] = { - [sym_argument_list] = STATE(3886), - [sym_bracketed_argument_list] = STATE(2902), [sym_preproc_region] = STATE(3767), [sym_preproc_endregion] = STATE(3767), [sym_preproc_line] = STATE(3767), @@ -525200,50 +524625,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(5658), - [anon_sym_COMMA] = ACTIONS(5660), - [anon_sym_LPAREN] = ACTIONS(5624), - [anon_sym_LT] = ACTIONS(6017), - [anon_sym_GT] = ACTIONS(6017), - [anon_sym_where] = ACTIONS(5660), - [anon_sym_QMARK] = ACTIONS(5664), - [anon_sym_BANG] = ACTIONS(5666), - [anon_sym_PLUS_PLUS] = ACTIONS(5668), - [anon_sym_DASH_DASH] = ACTIONS(5668), - [anon_sym_PLUS] = ACTIONS(6021), - [anon_sym_DASH] = ACTIONS(6021), - [anon_sym_STAR] = ACTIONS(6023), - [anon_sym_SLASH] = ACTIONS(6025), - [anon_sym_PERCENT] = ACTIONS(6023), - [anon_sym_CARET] = ACTIONS(5660), - [anon_sym_PIPE] = ACTIONS(5664), - [anon_sym_AMP] = ACTIONS(5664), - [anon_sym_LT_LT] = ACTIONS(6033), - [anon_sym_GT_GT] = ACTIONS(6035), - [anon_sym_GT_GT_GT] = ACTIONS(6033), - [anon_sym_EQ_EQ] = ACTIONS(5660), - [anon_sym_BANG_EQ] = ACTIONS(5660), - [anon_sym_GT_EQ] = ACTIONS(6039), - [anon_sym_LT_EQ] = ACTIONS(6039), - [anon_sym_DOT] = ACTIONS(4733), - [anon_sym_switch] = ACTIONS(5688), - [anon_sym_DOT_DOT] = ACTIONS(6041), - [anon_sym_AMP_AMP] = ACTIONS(5660), - [anon_sym_PIPE_PIPE] = ACTIONS(5660), - [anon_sym_QMARK_QMARK] = ACTIONS(5660), - [anon_sym_from] = ACTIONS(5660), - [anon_sym_into] = ACTIONS(5660), - [anon_sym_join] = ACTIONS(5660), - [anon_sym_let] = ACTIONS(5660), - [anon_sym_orderby] = ACTIONS(5660), - [anon_sym_ascending] = ACTIONS(5660), - [anon_sym_descending] = ACTIONS(5660), - [anon_sym_group] = ACTIONS(5660), - [anon_sym_select] = ACTIONS(5660), - [anon_sym_as] = ACTIONS(5692), - [anon_sym_is] = ACTIONS(6049), - [anon_sym_DASH_GT] = ACTIONS(4719), - [anon_sym_with] = ACTIONS(5696), + [anon_sym_LBRACK] = ACTIONS(5040), + [anon_sym_COMMA] = ACTIONS(5040), + [anon_sym_LPAREN] = ACTIONS(5040), + [anon_sym_LT] = ACTIONS(5042), + [anon_sym_GT] = ACTIONS(5042), + [anon_sym_where] = ACTIONS(5040), + [anon_sym_QMARK] = ACTIONS(5042), + [anon_sym_BANG] = ACTIONS(5042), + [anon_sym_PLUS_PLUS] = ACTIONS(5040), + [anon_sym_DASH_DASH] = ACTIONS(5040), + [anon_sym_PLUS] = ACTIONS(5042), + [anon_sym_DASH] = ACTIONS(5042), + [anon_sym_STAR] = ACTIONS(5040), + [anon_sym_SLASH] = ACTIONS(5042), + [anon_sym_PERCENT] = ACTIONS(5040), + [anon_sym_CARET] = ACTIONS(5040), + [anon_sym_PIPE] = ACTIONS(5042), + [anon_sym_AMP] = ACTIONS(5042), + [anon_sym_LT_LT] = ACTIONS(5040), + [anon_sym_GT_GT] = ACTIONS(5042), + [anon_sym_GT_GT_GT] = ACTIONS(5040), + [anon_sym_EQ_EQ] = ACTIONS(5040), + [anon_sym_BANG_EQ] = ACTIONS(5040), + [anon_sym_GT_EQ] = ACTIONS(5040), + [anon_sym_LT_EQ] = ACTIONS(5040), + [anon_sym_DOT] = ACTIONS(5042), + [anon_sym_switch] = ACTIONS(5040), + [anon_sym_DOT_DOT] = ACTIONS(5040), + [anon_sym_and] = ACTIONS(5040), + [anon_sym_or] = ACTIONS(5042), + [anon_sym_AMP_AMP] = ACTIONS(5040), + [anon_sym_PIPE_PIPE] = ACTIONS(5040), + [anon_sym_QMARK_QMARK] = ACTIONS(5040), + [anon_sym_from] = ACTIONS(5040), + [anon_sym_into] = ACTIONS(5040), + [anon_sym_join] = ACTIONS(5040), + [anon_sym_let] = ACTIONS(5040), + [anon_sym_orderby] = ACTIONS(5040), + [anon_sym_ascending] = ACTIONS(5040), + [anon_sym_descending] = ACTIONS(5040), + [anon_sym_group] = ACTIONS(5040), + [anon_sym_select] = ACTIONS(5040), + [anon_sym_as] = ACTIONS(5042), + [anon_sym_is] = ACTIONS(5040), + [anon_sym_DASH_GT] = ACTIONS(5040), + [anon_sym_with] = ACTIONS(5040), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -525256,8 +524683,25 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3768] = { - [sym_argument_list] = STATE(3886), - [sym_bracketed_argument_list] = STATE(2902), + [sym_variable_declaration] = STATE(7688), + [sym__name] = STATE(4369), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(4068), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(4073), + [sym_type] = STATE(5901), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_identifier] = STATE(4081), + [sym__reserved_identifier] = STATE(3654), [sym_preproc_region] = STATE(3768), [sym_preproc_endregion] = STATE(3768), [sym_preproc_line] = STATE(3768), @@ -525267,50 +524711,33 @@ 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), - [anon_sym_LBRACK] = ACTIONS(5658), - [anon_sym_COMMA] = ACTIONS(5660), - [anon_sym_LPAREN] = ACTIONS(5624), - [anon_sym_LT] = ACTIONS(6017), - [anon_sym_GT] = ACTIONS(6017), - [anon_sym_where] = ACTIONS(5660), - [anon_sym_QMARK] = ACTIONS(5664), - [anon_sym_BANG] = ACTIONS(5666), - [anon_sym_PLUS_PLUS] = ACTIONS(5668), - [anon_sym_DASH_DASH] = ACTIONS(5668), - [anon_sym_PLUS] = ACTIONS(6021), - [anon_sym_DASH] = ACTIONS(6021), - [anon_sym_STAR] = ACTIONS(6023), - [anon_sym_SLASH] = ACTIONS(6025), - [anon_sym_PERCENT] = ACTIONS(6023), - [anon_sym_CARET] = ACTIONS(6027), - [anon_sym_PIPE] = ACTIONS(6029), - [anon_sym_AMP] = ACTIONS(6031), - [anon_sym_LT_LT] = ACTIONS(6033), - [anon_sym_GT_GT] = ACTIONS(6035), - [anon_sym_GT_GT_GT] = ACTIONS(6033), - [anon_sym_EQ_EQ] = ACTIONS(6037), - [anon_sym_BANG_EQ] = ACTIONS(6037), - [anon_sym_GT_EQ] = ACTIONS(6039), - [anon_sym_LT_EQ] = ACTIONS(6039), - [anon_sym_DOT] = ACTIONS(4733), - [anon_sym_switch] = ACTIONS(5688), - [anon_sym_DOT_DOT] = ACTIONS(6041), - [anon_sym_AMP_AMP] = ACTIONS(5660), - [anon_sym_PIPE_PIPE] = ACTIONS(5660), - [anon_sym_QMARK_QMARK] = ACTIONS(5660), - [anon_sym_from] = ACTIONS(5660), - [anon_sym_into] = ACTIONS(5660), - [anon_sym_join] = ACTIONS(5660), - [anon_sym_let] = ACTIONS(5660), - [anon_sym_orderby] = ACTIONS(5660), - [anon_sym_ascending] = ACTIONS(5660), - [anon_sym_descending] = ACTIONS(5660), - [anon_sym_group] = ACTIONS(5660), - [anon_sym_select] = ACTIONS(5660), - [anon_sym_as] = ACTIONS(5692), - [anon_sym_is] = ACTIONS(6049), - [anon_sym_DASH_GT] = ACTIONS(4719), - [anon_sym_with] = ACTIONS(5696), + [sym__identifier_token] = ACTIONS(2965), + [anon_sym_alias] = ACTIONS(2969), + [anon_sym_global] = ACTIONS(2969), + [anon_sym_LPAREN] = ACTIONS(2977), + [anon_sym_ref] = ACTIONS(3436), + [anon_sym_delegate] = ACTIONS(3438), + [anon_sym_file] = ACTIONS(2969), + [anon_sym_where] = ACTIONS(2969), + [anon_sym_notnull] = ACTIONS(2969), + [anon_sym_unmanaged] = ACTIONS(2969), + [anon_sym_scoped] = ACTIONS(2993), + [anon_sym_var] = ACTIONS(2995), + [sym_predefined_type] = ACTIONS(2997), + [anon_sym_yield] = ACTIONS(2969), + [anon_sym_when] = ACTIONS(2969), + [anon_sym_from] = ACTIONS(2969), + [anon_sym_into] = ACTIONS(2969), + [anon_sym_join] = ACTIONS(2969), + [anon_sym_on] = ACTIONS(2969), + [anon_sym_equals] = ACTIONS(2969), + [anon_sym_let] = ACTIONS(2969), + [anon_sym_orderby] = ACTIONS(2969), + [anon_sym_ascending] = ACTIONS(2969), + [anon_sym_descending] = ACTIONS(2969), + [anon_sym_group] = ACTIONS(2969), + [anon_sym_by] = ACTIONS(2969), + [anon_sym_select] = ACTIONS(2969), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -525323,8 +524750,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3769] = { - [sym_argument_list] = STATE(3886), - [sym_bracketed_argument_list] = STATE(2902), [sym_preproc_region] = STATE(3769), [sym_preproc_endregion] = STATE(3769), [sym_preproc_line] = STATE(3769), @@ -525334,50 +524759,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(5658), - [anon_sym_COMMA] = ACTIONS(5660), - [anon_sym_LPAREN] = ACTIONS(5624), - [anon_sym_LT] = ACTIONS(6017), - [anon_sym_GT] = ACTIONS(6017), - [anon_sym_where] = ACTIONS(5660), - [anon_sym_QMARK] = ACTIONS(5664), - [anon_sym_BANG] = ACTIONS(5666), - [anon_sym_PLUS_PLUS] = ACTIONS(5668), - [anon_sym_DASH_DASH] = ACTIONS(5668), - [anon_sym_PLUS] = ACTIONS(6021), - [anon_sym_DASH] = ACTIONS(6021), - [anon_sym_STAR] = ACTIONS(6023), - [anon_sym_SLASH] = ACTIONS(6025), - [anon_sym_PERCENT] = ACTIONS(6023), - [anon_sym_CARET] = ACTIONS(6027), - [anon_sym_PIPE] = ACTIONS(6029), - [anon_sym_AMP] = ACTIONS(6031), - [anon_sym_LT_LT] = ACTIONS(6033), - [anon_sym_GT_GT] = ACTIONS(6035), - [anon_sym_GT_GT_GT] = ACTIONS(6033), - [anon_sym_EQ_EQ] = ACTIONS(6037), - [anon_sym_BANG_EQ] = ACTIONS(6037), - [anon_sym_GT_EQ] = ACTIONS(6039), - [anon_sym_LT_EQ] = ACTIONS(6039), - [anon_sym_DOT] = ACTIONS(4733), - [anon_sym_switch] = ACTIONS(5688), - [anon_sym_DOT_DOT] = ACTIONS(6041), - [anon_sym_AMP_AMP] = ACTIONS(6043), - [anon_sym_PIPE_PIPE] = ACTIONS(5660), - [anon_sym_QMARK_QMARK] = ACTIONS(5660), - [anon_sym_from] = ACTIONS(5660), - [anon_sym_into] = ACTIONS(5660), - [anon_sym_join] = ACTIONS(5660), - [anon_sym_let] = ACTIONS(5660), - [anon_sym_orderby] = ACTIONS(5660), - [anon_sym_ascending] = ACTIONS(5660), - [anon_sym_descending] = ACTIONS(5660), - [anon_sym_group] = ACTIONS(5660), - [anon_sym_select] = ACTIONS(5660), - [anon_sym_as] = ACTIONS(5692), - [anon_sym_is] = ACTIONS(6049), - [anon_sym_DASH_GT] = ACTIONS(4719), - [anon_sym_with] = ACTIONS(5696), + [anon_sym_LBRACK] = ACTIONS(5068), + [anon_sym_COMMA] = ACTIONS(5068), + [anon_sym_LPAREN] = ACTIONS(5068), + [anon_sym_LT] = ACTIONS(5070), + [anon_sym_GT] = ACTIONS(5070), + [anon_sym_where] = ACTIONS(5068), + [anon_sym_QMARK] = ACTIONS(5070), + [anon_sym_BANG] = ACTIONS(5070), + [anon_sym_PLUS_PLUS] = ACTIONS(5068), + [anon_sym_DASH_DASH] = ACTIONS(5068), + [anon_sym_PLUS] = ACTIONS(5070), + [anon_sym_DASH] = ACTIONS(5070), + [anon_sym_STAR] = ACTIONS(5068), + [anon_sym_SLASH] = ACTIONS(5070), + [anon_sym_PERCENT] = ACTIONS(5068), + [anon_sym_CARET] = ACTIONS(5068), + [anon_sym_PIPE] = ACTIONS(5070), + [anon_sym_AMP] = ACTIONS(5070), + [anon_sym_LT_LT] = ACTIONS(5068), + [anon_sym_GT_GT] = ACTIONS(5070), + [anon_sym_GT_GT_GT] = ACTIONS(5068), + [anon_sym_EQ_EQ] = ACTIONS(5068), + [anon_sym_BANG_EQ] = ACTIONS(5068), + [anon_sym_GT_EQ] = ACTIONS(5068), + [anon_sym_LT_EQ] = ACTIONS(5068), + [anon_sym_DOT] = ACTIONS(5070), + [anon_sym_switch] = ACTIONS(5068), + [anon_sym_DOT_DOT] = ACTIONS(5068), + [anon_sym_and] = ACTIONS(5068), + [anon_sym_or] = ACTIONS(5070), + [anon_sym_AMP_AMP] = ACTIONS(5068), + [anon_sym_PIPE_PIPE] = ACTIONS(5068), + [anon_sym_QMARK_QMARK] = ACTIONS(5068), + [anon_sym_from] = ACTIONS(5068), + [anon_sym_into] = ACTIONS(5068), + [anon_sym_join] = ACTIONS(5068), + [anon_sym_let] = ACTIONS(5068), + [anon_sym_orderby] = ACTIONS(5068), + [anon_sym_ascending] = ACTIONS(5068), + [anon_sym_descending] = ACTIONS(5068), + [anon_sym_group] = ACTIONS(5068), + [anon_sym_select] = ACTIONS(5068), + [anon_sym_as] = ACTIONS(5070), + [anon_sym_is] = ACTIONS(5068), + [anon_sym_DASH_GT] = ACTIONS(5068), + [anon_sym_with] = ACTIONS(5068), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -525390,8 +524817,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3770] = { - [sym_argument_list] = STATE(3886), - [sym_bracketed_argument_list] = STATE(2902), + [sym__name] = STATE(3488), + [sym_alias_qualified_name] = STATE(3304), + [sym__simple_name] = STATE(3304), + [sym_qualified_name] = STATE(3304), + [sym_generic_name] = STATE(3241), + [sym_type] = STATE(3223), + [sym_implicit_type] = STATE(3222), + [sym_array_type] = STATE(3229), + [sym__array_base_type] = STATE(7208), + [sym_nullable_type] = STATE(3216), + [sym_pointer_type] = STATE(3216), + [sym__pointer_base_type] = STATE(7508), + [sym_function_pointer_type] = STATE(3216), + [sym_ref_type] = STATE(3222), + [sym_scoped_type] = STATE(3222), + [sym_tuple_type] = STATE(3308), + [sym_identifier] = STATE(3177), + [sym__reserved_identifier] = STATE(3205), [sym_preproc_region] = STATE(3770), [sym_preproc_endregion] = STATE(3770), [sym_preproc_line] = STATE(3770), @@ -525401,50 +524844,34 @@ 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(5658), - [anon_sym_COMMA] = ACTIONS(5660), - [anon_sym_LPAREN] = ACTIONS(5624), - [anon_sym_LT] = ACTIONS(6017), - [anon_sym_GT] = ACTIONS(6017), - [anon_sym_where] = ACTIONS(5660), - [anon_sym_QMARK] = ACTIONS(5664), - [anon_sym_BANG] = ACTIONS(5666), - [anon_sym_PLUS_PLUS] = ACTIONS(5668), - [anon_sym_DASH_DASH] = ACTIONS(5668), - [anon_sym_PLUS] = ACTIONS(6021), - [anon_sym_DASH] = ACTIONS(6021), - [anon_sym_STAR] = ACTIONS(6023), - [anon_sym_SLASH] = ACTIONS(6025), - [anon_sym_PERCENT] = ACTIONS(6023), - [anon_sym_CARET] = ACTIONS(6027), - [anon_sym_PIPE] = ACTIONS(6029), - [anon_sym_AMP] = ACTIONS(6031), - [anon_sym_LT_LT] = ACTIONS(6033), - [anon_sym_GT_GT] = ACTIONS(6035), - [anon_sym_GT_GT_GT] = ACTIONS(6033), - [anon_sym_EQ_EQ] = ACTIONS(6037), - [anon_sym_BANG_EQ] = ACTIONS(6037), - [anon_sym_GT_EQ] = ACTIONS(6039), - [anon_sym_LT_EQ] = ACTIONS(6039), - [anon_sym_DOT] = ACTIONS(4733), - [anon_sym_switch] = ACTIONS(5688), - [anon_sym_DOT_DOT] = ACTIONS(6041), - [anon_sym_AMP_AMP] = ACTIONS(6043), - [anon_sym_PIPE_PIPE] = ACTIONS(6045), - [anon_sym_QMARK_QMARK] = ACTIONS(6047), - [anon_sym_from] = ACTIONS(5660), - [anon_sym_into] = ACTIONS(5660), - [anon_sym_join] = ACTIONS(5660), - [anon_sym_let] = ACTIONS(5660), - [anon_sym_orderby] = ACTIONS(5660), - [anon_sym_ascending] = ACTIONS(5660), - [anon_sym_descending] = ACTIONS(5660), - [anon_sym_group] = ACTIONS(5660), - [anon_sym_select] = ACTIONS(5660), - [anon_sym_as] = ACTIONS(5692), - [anon_sym_is] = ACTIONS(6049), - [anon_sym_DASH_GT] = ACTIONS(4719), - [anon_sym_with] = ACTIONS(5696), + [sym__identifier_token] = ACTIONS(3798), + [anon_sym_alias] = ACTIONS(3800), + [anon_sym_global] = ACTIONS(3800), + [anon_sym_LPAREN] = ACTIONS(6101), + [anon_sym_ref] = ACTIONS(4167), + [anon_sym_delegate] = ACTIONS(5638), + [anon_sym_file] = ACTIONS(3800), + [anon_sym_readonly] = ACTIONS(6151), + [anon_sym_where] = ACTIONS(3800), + [anon_sym_notnull] = ACTIONS(3800), + [anon_sym_unmanaged] = ACTIONS(3800), + [anon_sym_scoped] = ACTIONS(5761), + [anon_sym_var] = ACTIONS(5642), + [sym_predefined_type] = ACTIONS(5644), + [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), @@ -525466,52 +524893,52 @@ 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_LBRACK] = ACTIONS(5016), - [anon_sym_COMMA] = ACTIONS(5016), - [anon_sym_LPAREN] = ACTIONS(5016), - [anon_sym_LT] = ACTIONS(5018), - [anon_sym_GT] = ACTIONS(5018), - [anon_sym_where] = ACTIONS(5016), - [anon_sym_QMARK] = ACTIONS(5018), - [anon_sym_BANG] = ACTIONS(5018), - [anon_sym_PLUS_PLUS] = ACTIONS(5016), - [anon_sym_DASH_DASH] = ACTIONS(5016), - [anon_sym_PLUS] = ACTIONS(5018), - [anon_sym_DASH] = ACTIONS(5018), - [anon_sym_STAR] = ACTIONS(5016), - [anon_sym_SLASH] = ACTIONS(5018), - [anon_sym_PERCENT] = ACTIONS(5016), - [anon_sym_CARET] = ACTIONS(5016), - [anon_sym_PIPE] = ACTIONS(5018), - [anon_sym_AMP] = ACTIONS(5018), - [anon_sym_LT_LT] = ACTIONS(5016), - [anon_sym_GT_GT] = ACTIONS(5018), - [anon_sym_GT_GT_GT] = ACTIONS(5016), - [anon_sym_EQ_EQ] = ACTIONS(5016), - [anon_sym_BANG_EQ] = ACTIONS(5016), - [anon_sym_GT_EQ] = ACTIONS(5016), - [anon_sym_LT_EQ] = ACTIONS(5016), - [anon_sym_DOT] = ACTIONS(5018), - [anon_sym_switch] = ACTIONS(5016), - [anon_sym_DOT_DOT] = ACTIONS(5016), - [anon_sym_and] = ACTIONS(5016), - [anon_sym_or] = ACTIONS(5018), - [anon_sym_AMP_AMP] = ACTIONS(5016), - [anon_sym_PIPE_PIPE] = ACTIONS(5016), - [anon_sym_QMARK_QMARK] = ACTIONS(5016), - [anon_sym_from] = ACTIONS(5016), - [anon_sym_into] = ACTIONS(5016), - [anon_sym_join] = ACTIONS(5016), - [anon_sym_let] = ACTIONS(5016), - [anon_sym_orderby] = ACTIONS(5016), - [anon_sym_ascending] = ACTIONS(5016), - [anon_sym_descending] = ACTIONS(5016), - [anon_sym_group] = ACTIONS(5016), - [anon_sym_select] = ACTIONS(5016), - [anon_sym_as] = ACTIONS(5018), - [anon_sym_is] = ACTIONS(5016), - [anon_sym_DASH_GT] = ACTIONS(5016), - [anon_sym_with] = ACTIONS(5016), + [anon_sym_LBRACK] = ACTIONS(4925), + [anon_sym_COMMA] = ACTIONS(4925), + [anon_sym_LPAREN] = ACTIONS(4925), + [anon_sym_LT] = ACTIONS(4927), + [anon_sym_GT] = ACTIONS(4927), + [anon_sym_where] = ACTIONS(4925), + [anon_sym_QMARK] = ACTIONS(4927), + [anon_sym_BANG] = ACTIONS(4927), + [anon_sym_PLUS_PLUS] = ACTIONS(4925), + [anon_sym_DASH_DASH] = ACTIONS(4925), + [anon_sym_PLUS] = ACTIONS(4927), + [anon_sym_DASH] = ACTIONS(4927), + [anon_sym_STAR] = ACTIONS(4925), + [anon_sym_SLASH] = ACTIONS(4927), + [anon_sym_PERCENT] = ACTIONS(4925), + [anon_sym_CARET] = ACTIONS(4925), + [anon_sym_PIPE] = ACTIONS(4927), + [anon_sym_AMP] = ACTIONS(4927), + [anon_sym_LT_LT] = ACTIONS(4925), + [anon_sym_GT_GT] = ACTIONS(4927), + [anon_sym_GT_GT_GT] = ACTIONS(4925), + [anon_sym_EQ_EQ] = ACTIONS(4925), + [anon_sym_BANG_EQ] = ACTIONS(4925), + [anon_sym_GT_EQ] = ACTIONS(4925), + [anon_sym_LT_EQ] = ACTIONS(4925), + [anon_sym_DOT] = ACTIONS(4927), + [anon_sym_switch] = ACTIONS(4925), + [anon_sym_DOT_DOT] = ACTIONS(4925), + [anon_sym_and] = ACTIONS(4925), + [anon_sym_or] = ACTIONS(4927), + [anon_sym_AMP_AMP] = ACTIONS(4925), + [anon_sym_PIPE_PIPE] = ACTIONS(4925), + [anon_sym_QMARK_QMARK] = ACTIONS(4925), + [anon_sym_from] = ACTIONS(4925), + [anon_sym_into] = ACTIONS(4925), + [anon_sym_join] = ACTIONS(4925), + [anon_sym_let] = ACTIONS(4925), + [anon_sym_orderby] = ACTIONS(4925), + [anon_sym_ascending] = ACTIONS(4925), + [anon_sym_descending] = ACTIONS(4925), + [anon_sym_group] = ACTIONS(4925), + [anon_sym_select] = ACTIONS(4925), + [anon_sym_as] = ACTIONS(4927), + [anon_sym_is] = ACTIONS(4925), + [anon_sym_DASH_GT] = ACTIONS(4925), + [anon_sym_with] = ACTIONS(4925), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -525524,6 +524951,25 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3772] = { + [sym__name] = STATE(4369), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(4068), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(4073), + [sym_type] = STATE(5960), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_tuple_element] = STATE(7202), + [sym_identifier] = STATE(4081), + [sym__reserved_identifier] = STATE(3654), [sym_preproc_region] = STATE(3772), [sym_preproc_endregion] = STATE(3772), [sym_preproc_line] = STATE(3772), @@ -525533,52 +524979,33 @@ 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(4892), - [anon_sym_COMMA] = ACTIONS(4892), - [anon_sym_LPAREN] = ACTIONS(4892), - [anon_sym_LT] = ACTIONS(4894), - [anon_sym_GT] = ACTIONS(4894), - [anon_sym_where] = ACTIONS(4892), - [anon_sym_QMARK] = ACTIONS(4894), - [anon_sym_BANG] = ACTIONS(4894), - [anon_sym_PLUS_PLUS] = ACTIONS(4892), - [anon_sym_DASH_DASH] = ACTIONS(4892), - [anon_sym_PLUS] = ACTIONS(4894), - [anon_sym_DASH] = ACTIONS(4894), - [anon_sym_STAR] = ACTIONS(4892), - [anon_sym_SLASH] = ACTIONS(4894), - [anon_sym_PERCENT] = ACTIONS(4892), - [anon_sym_CARET] = ACTIONS(4892), - [anon_sym_PIPE] = ACTIONS(4894), - [anon_sym_AMP] = ACTIONS(4894), - [anon_sym_LT_LT] = ACTIONS(4892), - [anon_sym_GT_GT] = ACTIONS(4894), - [anon_sym_GT_GT_GT] = ACTIONS(4892), - [anon_sym_EQ_EQ] = ACTIONS(4892), - [anon_sym_BANG_EQ] = ACTIONS(4892), - [anon_sym_GT_EQ] = ACTIONS(4892), - [anon_sym_LT_EQ] = ACTIONS(4892), - [anon_sym_DOT] = ACTIONS(4894), - [anon_sym_switch] = ACTIONS(4892), - [anon_sym_DOT_DOT] = ACTIONS(4892), - [anon_sym_and] = ACTIONS(4892), - [anon_sym_or] = ACTIONS(4894), - [anon_sym_AMP_AMP] = ACTIONS(4892), - [anon_sym_PIPE_PIPE] = ACTIONS(4892), - [anon_sym_QMARK_QMARK] = ACTIONS(4892), - [anon_sym_from] = ACTIONS(4892), - [anon_sym_into] = ACTIONS(4892), - [anon_sym_join] = ACTIONS(4892), - [anon_sym_let] = ACTIONS(4892), - [anon_sym_orderby] = ACTIONS(4892), - [anon_sym_ascending] = ACTIONS(4892), - [anon_sym_descending] = ACTIONS(4892), - [anon_sym_group] = ACTIONS(4892), - [anon_sym_select] = ACTIONS(4892), - [anon_sym_as] = ACTIONS(4894), - [anon_sym_is] = ACTIONS(4892), - [anon_sym_DASH_GT] = ACTIONS(4892), - [anon_sym_with] = ACTIONS(4892), + [sym__identifier_token] = ACTIONS(2965), + [anon_sym_alias] = ACTIONS(2969), + [anon_sym_global] = ACTIONS(2969), + [anon_sym_LPAREN] = ACTIONS(2977), + [anon_sym_ref] = ACTIONS(3590), + [anon_sym_delegate] = ACTIONS(3438), + [anon_sym_file] = ACTIONS(2969), + [anon_sym_where] = ACTIONS(2969), + [anon_sym_notnull] = ACTIONS(2969), + [anon_sym_unmanaged] = ACTIONS(2969), + [anon_sym_scoped] = ACTIONS(5843), + [anon_sym_var] = ACTIONS(4705), + [sym_predefined_type] = ACTIONS(2997), + [anon_sym_yield] = ACTIONS(2969), + [anon_sym_when] = ACTIONS(2969), + [anon_sym_from] = ACTIONS(2969), + [anon_sym_into] = ACTIONS(2969), + [anon_sym_join] = ACTIONS(2969), + [anon_sym_on] = ACTIONS(2969), + [anon_sym_equals] = ACTIONS(2969), + [anon_sym_let] = ACTIONS(2969), + [anon_sym_orderby] = ACTIONS(2969), + [anon_sym_ascending] = ACTIONS(2969), + [anon_sym_descending] = ACTIONS(2969), + [anon_sym_group] = ACTIONS(2969), + [anon_sym_by] = ACTIONS(2969), + [anon_sym_select] = ACTIONS(2969), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -525591,24 +525018,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3773] = { - [sym__name] = STATE(4390), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(4096), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(4109), - [sym_type] = STATE(4632), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_identifier] = STATE(4087), - [sym__reserved_identifier] = STATE(3691), [sym_preproc_region] = STATE(3773), [sym_preproc_endregion] = STATE(3773), [sym_preproc_line] = STATE(3773), @@ -525618,34 +525027,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), - [sym__identifier_token] = ACTIONS(2967), - [anon_sym_alias] = ACTIONS(2971), - [anon_sym_global] = ACTIONS(2971), - [anon_sym_LPAREN] = ACTIONS(2979), - [anon_sym_ref] = ACTIONS(3606), - [anon_sym_delegate] = ACTIONS(3454), - [anon_sym_file] = ACTIONS(2971), - [anon_sym_readonly] = ACTIONS(2759), - [anon_sym_where] = ACTIONS(2971), - [anon_sym_notnull] = ACTIONS(2971), - [anon_sym_unmanaged] = ACTIONS(2971), - [anon_sym_scoped] = ACTIONS(5737), - [anon_sym_var] = ACTIONS(4737), - [sym_predefined_type] = ACTIONS(3001), - [anon_sym_yield] = ACTIONS(2971), - [anon_sym_when] = ACTIONS(2971), - [anon_sym_from] = ACTIONS(2971), - [anon_sym_into] = ACTIONS(2971), - [anon_sym_join] = ACTIONS(2971), - [anon_sym_on] = ACTIONS(2971), - [anon_sym_equals] = ACTIONS(2971), - [anon_sym_let] = ACTIONS(2971), - [anon_sym_orderby] = ACTIONS(2971), - [anon_sym_ascending] = ACTIONS(2971), - [anon_sym_descending] = ACTIONS(2971), - [anon_sym_group] = ACTIONS(2971), - [anon_sym_by] = ACTIONS(2971), - [anon_sym_select] = ACTIONS(2971), + [anon_sym_LBRACK] = ACTIONS(5104), + [anon_sym_COMMA] = ACTIONS(5104), + [anon_sym_LPAREN] = ACTIONS(5104), + [anon_sym_LT] = ACTIONS(5106), + [anon_sym_GT] = ACTIONS(5106), + [anon_sym_where] = ACTIONS(5104), + [anon_sym_QMARK] = ACTIONS(5106), + [anon_sym_BANG] = ACTIONS(5106), + [anon_sym_PLUS_PLUS] = ACTIONS(5104), + [anon_sym_DASH_DASH] = ACTIONS(5104), + [anon_sym_PLUS] = ACTIONS(5106), + [anon_sym_DASH] = ACTIONS(5106), + [anon_sym_STAR] = ACTIONS(5104), + [anon_sym_SLASH] = ACTIONS(5106), + [anon_sym_PERCENT] = ACTIONS(5104), + [anon_sym_CARET] = ACTIONS(5104), + [anon_sym_PIPE] = ACTIONS(5106), + [anon_sym_AMP] = ACTIONS(5106), + [anon_sym_LT_LT] = ACTIONS(5104), + [anon_sym_GT_GT] = ACTIONS(5106), + [anon_sym_GT_GT_GT] = ACTIONS(5104), + [anon_sym_EQ_EQ] = ACTIONS(5104), + [anon_sym_BANG_EQ] = ACTIONS(5104), + [anon_sym_GT_EQ] = ACTIONS(5104), + [anon_sym_LT_EQ] = ACTIONS(5104), + [anon_sym_DOT] = ACTIONS(5106), + [anon_sym_switch] = ACTIONS(5104), + [anon_sym_DOT_DOT] = ACTIONS(5104), + [anon_sym_and] = ACTIONS(5104), + [anon_sym_or] = ACTIONS(5106), + [anon_sym_AMP_AMP] = ACTIONS(5104), + [anon_sym_PIPE_PIPE] = ACTIONS(5104), + [anon_sym_QMARK_QMARK] = ACTIONS(5104), + [anon_sym_from] = ACTIONS(5104), + [anon_sym_into] = ACTIONS(5104), + [anon_sym_join] = ACTIONS(5104), + [anon_sym_let] = ACTIONS(5104), + [anon_sym_orderby] = ACTIONS(5104), + [anon_sym_ascending] = ACTIONS(5104), + [anon_sym_descending] = ACTIONS(5104), + [anon_sym_group] = ACTIONS(5104), + [anon_sym_select] = ACTIONS(5104), + [anon_sym_as] = ACTIONS(5106), + [anon_sym_is] = ACTIONS(5104), + [anon_sym_DASH_GT] = ACTIONS(5104), + [anon_sym_with] = ACTIONS(5104), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -525658,6 +525085,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3774] = { + [sym_argument_list] = STATE(3348), + [sym_bracketed_argument_list] = STATE(2605), [sym_preproc_region] = STATE(3774), [sym_preproc_endregion] = STATE(3774), [sym_preproc_line] = STATE(3774), @@ -525667,52 +525096,50 @@ 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_LBRACK] = ACTIONS(5373), - [anon_sym_COMMA] = ACTIONS(5373), - [anon_sym_LPAREN] = ACTIONS(5373), - [anon_sym_LT] = ACTIONS(5375), - [anon_sym_GT] = ACTIONS(5375), - [anon_sym_where] = ACTIONS(5373), - [anon_sym_QMARK] = ACTIONS(5375), - [anon_sym_BANG] = ACTIONS(5375), - [anon_sym_PLUS_PLUS] = ACTIONS(5373), - [anon_sym_DASH_DASH] = ACTIONS(5373), - [anon_sym_PLUS] = ACTIONS(5375), - [anon_sym_DASH] = ACTIONS(5375), - [anon_sym_STAR] = ACTIONS(5373), - [anon_sym_SLASH] = ACTIONS(5375), - [anon_sym_PERCENT] = ACTIONS(5373), - [anon_sym_CARET] = ACTIONS(5373), - [anon_sym_PIPE] = ACTIONS(5375), - [anon_sym_AMP] = ACTIONS(5375), - [anon_sym_LT_LT] = ACTIONS(5373), - [anon_sym_GT_GT] = ACTIONS(5375), - [anon_sym_GT_GT_GT] = ACTIONS(5373), - [anon_sym_EQ_EQ] = ACTIONS(5373), - [anon_sym_BANG_EQ] = ACTIONS(5373), - [anon_sym_GT_EQ] = ACTIONS(5373), - [anon_sym_LT_EQ] = ACTIONS(5373), - [anon_sym_DOT] = ACTIONS(5375), - [anon_sym_switch] = ACTIONS(5373), - [anon_sym_DOT_DOT] = ACTIONS(5373), - [anon_sym_and] = ACTIONS(5373), - [anon_sym_or] = ACTIONS(5375), - [anon_sym_AMP_AMP] = ACTIONS(5373), - [anon_sym_PIPE_PIPE] = ACTIONS(5373), - [anon_sym_QMARK_QMARK] = ACTIONS(5373), - [anon_sym_from] = ACTIONS(5373), - [anon_sym_into] = ACTIONS(5373), - [anon_sym_join] = ACTIONS(5373), - [anon_sym_let] = ACTIONS(5373), - [anon_sym_orderby] = ACTIONS(5373), - [anon_sym_ascending] = ACTIONS(5373), - [anon_sym_descending] = ACTIONS(5373), - [anon_sym_group] = ACTIONS(5373), - [anon_sym_select] = ACTIONS(5373), - [anon_sym_as] = ACTIONS(5375), - [anon_sym_is] = ACTIONS(5373), - [anon_sym_DASH_GT] = ACTIONS(5373), - [anon_sym_with] = ACTIONS(5373), + [anon_sym_SEMI] = ACTIONS(1147), + [anon_sym_LBRACK] = ACTIONS(5236), + [anon_sym_COMMA] = ACTIONS(1147), + [anon_sym_RBRACK] = ACTIONS(1147), + [anon_sym_LPAREN] = ACTIONS(5227), + [anon_sym_RPAREN] = ACTIONS(1147), + [anon_sym_RBRACE] = ACTIONS(1147), + [anon_sym_LT] = ACTIONS(1161), + [anon_sym_GT] = ACTIONS(1161), + [anon_sym_QMARK] = ACTIONS(1161), + [anon_sym_BANG] = ACTIONS(5238), + [anon_sym_PLUS_PLUS] = ACTIONS(5240), + [anon_sym_DASH_DASH] = ACTIONS(5240), + [anon_sym_PLUS] = ACTIONS(1161), + [anon_sym_DASH] = ACTIONS(1161), + [anon_sym_STAR] = ACTIONS(1147), + [anon_sym_SLASH] = ACTIONS(1161), + [anon_sym_PERCENT] = ACTIONS(1147), + [anon_sym_CARET] = ACTIONS(1147), + [anon_sym_PIPE] = ACTIONS(1161), + [anon_sym_AMP] = ACTIONS(1161), + [anon_sym_LT_LT] = ACTIONS(1147), + [anon_sym_GT_GT] = ACTIONS(1161), + [anon_sym_GT_GT_GT] = ACTIONS(1147), + [anon_sym_EQ_EQ] = ACTIONS(1147), + [anon_sym_BANG_EQ] = ACTIONS(1147), + [anon_sym_GT_EQ] = ACTIONS(1147), + [anon_sym_LT_EQ] = ACTIONS(1147), + [anon_sym_DOT] = ACTIONS(4092), + [anon_sym_switch] = ACTIONS(1147), + [anon_sym_DOT_DOT] = ACTIONS(6019), + [anon_sym_and] = ACTIONS(1147), + [anon_sym_or] = ACTIONS(1147), + [anon_sym_AMP_AMP] = ACTIONS(1147), + [anon_sym_PIPE_PIPE] = ACTIONS(1147), + [anon_sym_QMARK_QMARK] = ACTIONS(1147), + [anon_sym_into] = ACTIONS(1147), + [anon_sym_as] = ACTIONS(1147), + [anon_sym_is] = ACTIONS(1147), + [anon_sym_DASH_GT] = ACTIONS(4094), + [anon_sym_with] = ACTIONS(1147), + [aux_sym_preproc_if_token3] = ACTIONS(1147), + [aux_sym_preproc_else_token1] = ACTIONS(1147), + [aux_sym_preproc_elif_token1] = ACTIONS(1147), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -525734,52 +525161,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_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), + [anon_sym_LBRACK] = ACTIONS(5076), + [anon_sym_COMMA] = ACTIONS(5076), + [anon_sym_LPAREN] = ACTIONS(5076), + [anon_sym_LT] = ACTIONS(5078), + [anon_sym_GT] = ACTIONS(5078), + [anon_sym_where] = ACTIONS(5076), + [anon_sym_QMARK] = ACTIONS(5078), + [anon_sym_BANG] = ACTIONS(5078), + [anon_sym_PLUS_PLUS] = ACTIONS(5076), + [anon_sym_DASH_DASH] = ACTIONS(5076), + [anon_sym_PLUS] = ACTIONS(5078), + [anon_sym_DASH] = ACTIONS(5078), + [anon_sym_STAR] = ACTIONS(5076), + [anon_sym_SLASH] = ACTIONS(5078), + [anon_sym_PERCENT] = ACTIONS(5076), + [anon_sym_CARET] = ACTIONS(5076), + [anon_sym_PIPE] = ACTIONS(5078), + [anon_sym_AMP] = ACTIONS(5078), + [anon_sym_LT_LT] = ACTIONS(5076), + [anon_sym_GT_GT] = ACTIONS(5078), + [anon_sym_GT_GT_GT] = ACTIONS(5076), + [anon_sym_EQ_EQ] = ACTIONS(5076), + [anon_sym_BANG_EQ] = ACTIONS(5076), + [anon_sym_GT_EQ] = ACTIONS(5076), + [anon_sym_LT_EQ] = ACTIONS(5076), + [anon_sym_DOT] = ACTIONS(5078), + [anon_sym_switch] = ACTIONS(5076), + [anon_sym_DOT_DOT] = ACTIONS(5076), + [anon_sym_and] = ACTIONS(5076), + [anon_sym_or] = ACTIONS(5078), + [anon_sym_AMP_AMP] = ACTIONS(5076), + [anon_sym_PIPE_PIPE] = ACTIONS(5076), + [anon_sym_QMARK_QMARK] = ACTIONS(5076), + [anon_sym_from] = ACTIONS(5076), + [anon_sym_into] = ACTIONS(5076), + [anon_sym_join] = ACTIONS(5076), + [anon_sym_let] = ACTIONS(5076), + [anon_sym_orderby] = ACTIONS(5076), + [anon_sym_ascending] = ACTIONS(5076), + [anon_sym_descending] = ACTIONS(5076), + [anon_sym_group] = ACTIONS(5076), + [anon_sym_select] = ACTIONS(5076), + [anon_sym_as] = ACTIONS(5078), + [anon_sym_is] = ACTIONS(5076), + [anon_sym_DASH_GT] = ACTIONS(5076), + [anon_sym_with] = ACTIONS(5076), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -525792,24 +525219,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3776] = { - [sym__name] = STATE(3072), - [sym_alias_qualified_name] = STATE(3029), - [sym__simple_name] = STATE(3029), - [sym_qualified_name] = STATE(3029), - [sym_generic_name] = STATE(2985), - [sym_type] = STATE(3026), - [sym_implicit_type] = STATE(3054), - [sym_array_type] = STATE(2992), - [sym__array_base_type] = STATE(7267), - [sym_nullable_type] = STATE(3012), - [sym_pointer_type] = STATE(3012), - [sym__pointer_base_type] = STATE(7693), - [sym_function_pointer_type] = STATE(3012), - [sym_ref_type] = STATE(3054), - [sym_scoped_type] = STATE(3054), - [sym_tuple_type] = STATE(3058), - [sym_identifier] = STATE(2923), - [sym__reserved_identifier] = STATE(2945), [sym_preproc_region] = STATE(3776), [sym_preproc_endregion] = STATE(3776), [sym_preproc_line] = STATE(3776), @@ -525819,34 +525228,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), - [sym__identifier_token] = ACTIONS(3887), - [anon_sym_alias] = ACTIONS(3889), - [anon_sym_global] = ACTIONS(3889), - [anon_sym_LPAREN] = ACTIONS(6051), - [anon_sym_ref] = ACTIONS(4227), - [anon_sym_delegate] = ACTIONS(4042), - [anon_sym_file] = ACTIONS(3889), - [anon_sym_readonly] = ACTIONS(6089), - [anon_sym_where] = ACTIONS(3889), - [anon_sym_notnull] = ACTIONS(3889), - [anon_sym_unmanaged] = ACTIONS(3889), - [anon_sym_scoped] = ACTIONS(5698), - [anon_sym_var] = ACTIONS(4046), - [sym_predefined_type] = ACTIONS(4048), - [anon_sym_yield] = ACTIONS(3889), - [anon_sym_when] = ACTIONS(3889), - [anon_sym_from] = ACTIONS(3889), - [anon_sym_into] = ACTIONS(3889), - [anon_sym_join] = ACTIONS(3889), - [anon_sym_on] = ACTIONS(3889), - [anon_sym_equals] = ACTIONS(3889), - [anon_sym_let] = ACTIONS(3889), - [anon_sym_orderby] = ACTIONS(3889), - [anon_sym_ascending] = ACTIONS(3889), - [anon_sym_descending] = ACTIONS(3889), - [anon_sym_group] = ACTIONS(3889), - [anon_sym_by] = ACTIONS(3889), - [anon_sym_select] = ACTIONS(3889), + [anon_sym_LBRACK] = ACTIONS(5108), + [anon_sym_COMMA] = ACTIONS(5108), + [anon_sym_LPAREN] = ACTIONS(5108), + [anon_sym_LT] = ACTIONS(5110), + [anon_sym_GT] = ACTIONS(5110), + [anon_sym_where] = ACTIONS(5108), + [anon_sym_QMARK] = ACTIONS(5110), + [anon_sym_BANG] = ACTIONS(5110), + [anon_sym_PLUS_PLUS] = ACTIONS(5108), + [anon_sym_DASH_DASH] = ACTIONS(5108), + [anon_sym_PLUS] = ACTIONS(5110), + [anon_sym_DASH] = ACTIONS(5110), + [anon_sym_STAR] = ACTIONS(5108), + [anon_sym_SLASH] = ACTIONS(5110), + [anon_sym_PERCENT] = ACTIONS(5108), + [anon_sym_CARET] = ACTIONS(5108), + [anon_sym_PIPE] = ACTIONS(5110), + [anon_sym_AMP] = ACTIONS(5110), + [anon_sym_LT_LT] = ACTIONS(5108), + [anon_sym_GT_GT] = ACTIONS(5110), + [anon_sym_GT_GT_GT] = ACTIONS(5108), + [anon_sym_EQ_EQ] = ACTIONS(5108), + [anon_sym_BANG_EQ] = ACTIONS(5108), + [anon_sym_GT_EQ] = ACTIONS(5108), + [anon_sym_LT_EQ] = ACTIONS(5108), + [anon_sym_DOT] = ACTIONS(5110), + [anon_sym_switch] = ACTIONS(5108), + [anon_sym_DOT_DOT] = ACTIONS(5108), + [anon_sym_and] = ACTIONS(5108), + [anon_sym_or] = ACTIONS(5110), + [anon_sym_AMP_AMP] = ACTIONS(5108), + [anon_sym_PIPE_PIPE] = ACTIONS(5108), + [anon_sym_QMARK_QMARK] = ACTIONS(5108), + [anon_sym_from] = ACTIONS(5108), + [anon_sym_into] = ACTIONS(5108), + [anon_sym_join] = ACTIONS(5108), + [anon_sym_let] = ACTIONS(5108), + [anon_sym_orderby] = ACTIONS(5108), + [anon_sym_ascending] = ACTIONS(5108), + [anon_sym_descending] = ACTIONS(5108), + [anon_sym_group] = ACTIONS(5108), + [anon_sym_select] = ACTIONS(5108), + [anon_sym_as] = ACTIONS(5110), + [anon_sym_is] = ACTIONS(5108), + [anon_sym_DASH_GT] = ACTIONS(5108), + [anon_sym_with] = ACTIONS(5108), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -525868,52 +525295,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_LBRACK] = ACTIONS(5419), - [anon_sym_COMMA] = ACTIONS(5419), - [anon_sym_LPAREN] = ACTIONS(5419), - [anon_sym_LT] = ACTIONS(5421), - [anon_sym_GT] = ACTIONS(5421), - [anon_sym_where] = ACTIONS(5419), - [anon_sym_QMARK] = ACTIONS(5421), - [anon_sym_BANG] = ACTIONS(5421), - [anon_sym_PLUS_PLUS] = ACTIONS(5419), - [anon_sym_DASH_DASH] = ACTIONS(5419), - [anon_sym_PLUS] = ACTIONS(5421), - [anon_sym_DASH] = ACTIONS(5421), - [anon_sym_STAR] = ACTIONS(5419), - [anon_sym_SLASH] = ACTIONS(5421), - [anon_sym_PERCENT] = ACTIONS(5419), - [anon_sym_CARET] = ACTIONS(5419), - [anon_sym_PIPE] = ACTIONS(5421), - [anon_sym_AMP] = ACTIONS(5421), - [anon_sym_LT_LT] = ACTIONS(5419), - [anon_sym_GT_GT] = ACTIONS(5421), - [anon_sym_GT_GT_GT] = ACTIONS(5419), - [anon_sym_EQ_EQ] = ACTIONS(5419), - [anon_sym_BANG_EQ] = ACTIONS(5419), - [anon_sym_GT_EQ] = ACTIONS(5419), - [anon_sym_LT_EQ] = ACTIONS(5419), - [anon_sym_DOT] = ACTIONS(5421), - [anon_sym_switch] = ACTIONS(5419), - [anon_sym_DOT_DOT] = ACTIONS(5419), - [anon_sym_and] = ACTIONS(5419), - [anon_sym_or] = ACTIONS(5421), - [anon_sym_AMP_AMP] = ACTIONS(5419), - [anon_sym_PIPE_PIPE] = ACTIONS(5419), - [anon_sym_QMARK_QMARK] = ACTIONS(5419), - [anon_sym_from] = ACTIONS(5419), - [anon_sym_into] = ACTIONS(5419), - [anon_sym_join] = ACTIONS(5419), - [anon_sym_let] = ACTIONS(5419), - [anon_sym_orderby] = ACTIONS(5419), - [anon_sym_ascending] = ACTIONS(5419), - [anon_sym_descending] = ACTIONS(5419), - [anon_sym_group] = ACTIONS(5419), - [anon_sym_select] = ACTIONS(5419), - [anon_sym_as] = ACTIONS(5421), - [anon_sym_is] = ACTIONS(5419), - [anon_sym_DASH_GT] = ACTIONS(5419), - [anon_sym_with] = ACTIONS(5419), + [anon_sym_LBRACK] = ACTIONS(5112), + [anon_sym_COMMA] = ACTIONS(5112), + [anon_sym_LPAREN] = ACTIONS(5112), + [anon_sym_LT] = ACTIONS(5114), + [anon_sym_GT] = ACTIONS(5114), + [anon_sym_where] = ACTIONS(5112), + [anon_sym_QMARK] = ACTIONS(5114), + [anon_sym_BANG] = ACTIONS(5114), + [anon_sym_PLUS_PLUS] = ACTIONS(5112), + [anon_sym_DASH_DASH] = ACTIONS(5112), + [anon_sym_PLUS] = ACTIONS(5114), + [anon_sym_DASH] = ACTIONS(5114), + [anon_sym_STAR] = ACTIONS(5112), + [anon_sym_SLASH] = ACTIONS(5114), + [anon_sym_PERCENT] = ACTIONS(5112), + [anon_sym_CARET] = ACTIONS(5112), + [anon_sym_PIPE] = ACTIONS(5114), + [anon_sym_AMP] = ACTIONS(5114), + [anon_sym_LT_LT] = ACTIONS(5112), + [anon_sym_GT_GT] = ACTIONS(5114), + [anon_sym_GT_GT_GT] = ACTIONS(5112), + [anon_sym_EQ_EQ] = ACTIONS(5112), + [anon_sym_BANG_EQ] = ACTIONS(5112), + [anon_sym_GT_EQ] = ACTIONS(5112), + [anon_sym_LT_EQ] = ACTIONS(5112), + [anon_sym_DOT] = ACTIONS(5114), + [anon_sym_switch] = ACTIONS(5112), + [anon_sym_DOT_DOT] = ACTIONS(5112), + [anon_sym_and] = ACTIONS(5112), + [anon_sym_or] = ACTIONS(5114), + [anon_sym_AMP_AMP] = ACTIONS(5112), + [anon_sym_PIPE_PIPE] = ACTIONS(5112), + [anon_sym_QMARK_QMARK] = ACTIONS(5112), + [anon_sym_from] = ACTIONS(5112), + [anon_sym_into] = ACTIONS(5112), + [anon_sym_join] = ACTIONS(5112), + [anon_sym_let] = ACTIONS(5112), + [anon_sym_orderby] = ACTIONS(5112), + [anon_sym_ascending] = ACTIONS(5112), + [anon_sym_descending] = ACTIONS(5112), + [anon_sym_group] = ACTIONS(5112), + [anon_sym_select] = ACTIONS(5112), + [anon_sym_as] = ACTIONS(5114), + [anon_sym_is] = ACTIONS(5112), + [anon_sym_DASH_GT] = ACTIONS(5112), + [anon_sym_with] = ACTIONS(5112), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -525926,24 +525353,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3778] = { - [sym__name] = STATE(4390), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(4096), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(4109), - [sym_type] = STATE(6088), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_identifier] = STATE(4087), - [sym__reserved_identifier] = STATE(3691), + [sym__name] = STATE(6400), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(4068), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(4073), + [sym_type] = STATE(4565), + [sym_implicit_type] = STATE(7035), + [sym_array_type] = STATE(6706), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7421), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(7035), + [sym_scoped_type] = STATE(7035), + [sym_tuple_type] = STATE(6601), + [sym_identifier] = STATE(4081), + [sym__reserved_identifier] = STATE(3654), [sym_preproc_region] = STATE(3778), [sym_preproc_endregion] = STATE(3778), [sym_preproc_line] = STATE(3778), @@ -525953,34 +525380,34 @@ 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), - [sym__identifier_token] = ACTIONS(2967), - [anon_sym_alias] = ACTIONS(2971), - [anon_sym_global] = ACTIONS(2971), - [anon_sym_LPAREN] = ACTIONS(2979), - [anon_sym_ref] = ACTIONS(3452), - [anon_sym_delegate] = ACTIONS(3454), - [anon_sym_file] = ACTIONS(2971), - [anon_sym_where] = ACTIONS(2971), - [anon_sym_notnull] = ACTIONS(2971), - [anon_sym_unmanaged] = ACTIONS(2971), - [anon_sym_STAR] = ACTIONS(5619), - [anon_sym_scoped] = ACTIONS(2997), - [anon_sym_var] = ACTIONS(2999), - [sym_predefined_type] = ACTIONS(3001), - [anon_sym_yield] = ACTIONS(2971), - [anon_sym_when] = ACTIONS(2971), - [anon_sym_from] = ACTIONS(2971), - [anon_sym_into] = ACTIONS(2971), - [anon_sym_join] = ACTIONS(2971), - [anon_sym_on] = ACTIONS(2971), - [anon_sym_equals] = ACTIONS(2971), - [anon_sym_let] = ACTIONS(2971), - [anon_sym_orderby] = ACTIONS(2971), - [anon_sym_ascending] = ACTIONS(2971), - [anon_sym_descending] = ACTIONS(2971), - [anon_sym_group] = ACTIONS(2971), - [anon_sym_by] = ACTIONS(2971), - [anon_sym_select] = ACTIONS(2971), + [sym__identifier_token] = ACTIONS(2965), + [anon_sym_alias] = ACTIONS(2969), + [anon_sym_global] = ACTIONS(2969), + [anon_sym_LPAREN] = ACTIONS(2977), + [anon_sym_ref] = ACTIONS(5170), + [anon_sym_delegate] = ACTIONS(5172), + [anon_sym_file] = ACTIONS(2969), + [anon_sym_readonly] = ACTIONS(6153), + [anon_sym_where] = ACTIONS(2969), + [anon_sym_notnull] = ACTIONS(2969), + [anon_sym_unmanaged] = ACTIONS(2969), + [anon_sym_scoped] = ACTIONS(5178), + [anon_sym_var] = ACTIONS(4705), + [sym_predefined_type] = ACTIONS(5180), + [anon_sym_yield] = ACTIONS(2969), + [anon_sym_when] = ACTIONS(2969), + [anon_sym_from] = ACTIONS(2969), + [anon_sym_into] = ACTIONS(2969), + [anon_sym_join] = ACTIONS(2969), + [anon_sym_on] = ACTIONS(2969), + [anon_sym_equals] = ACTIONS(2969), + [anon_sym_let] = ACTIONS(2969), + [anon_sym_orderby] = ACTIONS(2969), + [anon_sym_ascending] = ACTIONS(2969), + [anon_sym_descending] = ACTIONS(2969), + [anon_sym_group] = ACTIONS(2969), + [anon_sym_by] = ACTIONS(2969), + [anon_sym_select] = ACTIONS(2969), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -525993,6 +525420,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3779] = { + [sym__name] = STATE(4369), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(4068), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(4073), + [sym_type] = STATE(6105), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_identifier] = STATE(4081), + [sym__reserved_identifier] = STATE(3654), [sym_preproc_region] = STATE(3779), [sym_preproc_endregion] = STATE(3779), [sym_preproc_line] = STATE(3779), @@ -526002,52 +525447,34 @@ 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_LBRACK] = ACTIONS(5427), - [anon_sym_COMMA] = ACTIONS(5427), - [anon_sym_LPAREN] = ACTIONS(5427), - [anon_sym_LT] = ACTIONS(5429), - [anon_sym_GT] = ACTIONS(5429), - [anon_sym_where] = ACTIONS(5427), - [anon_sym_QMARK] = ACTIONS(5429), - [anon_sym_BANG] = ACTIONS(5429), - [anon_sym_PLUS_PLUS] = ACTIONS(5427), - [anon_sym_DASH_DASH] = ACTIONS(5427), - [anon_sym_PLUS] = ACTIONS(5429), - [anon_sym_DASH] = ACTIONS(5429), - [anon_sym_STAR] = ACTIONS(5427), - [anon_sym_SLASH] = ACTIONS(5429), - [anon_sym_PERCENT] = ACTIONS(5427), - [anon_sym_CARET] = ACTIONS(5427), - [anon_sym_PIPE] = ACTIONS(5429), - [anon_sym_AMP] = ACTIONS(5429), - [anon_sym_LT_LT] = ACTIONS(5427), - [anon_sym_GT_GT] = ACTIONS(5429), - [anon_sym_GT_GT_GT] = ACTIONS(5427), - [anon_sym_EQ_EQ] = ACTIONS(5427), - [anon_sym_BANG_EQ] = ACTIONS(5427), - [anon_sym_GT_EQ] = ACTIONS(5427), - [anon_sym_LT_EQ] = ACTIONS(5427), - [anon_sym_DOT] = ACTIONS(5429), - [anon_sym_switch] = ACTIONS(5427), - [anon_sym_DOT_DOT] = ACTIONS(5427), - [anon_sym_and] = ACTIONS(5427), - [anon_sym_or] = ACTIONS(5429), - [anon_sym_AMP_AMP] = ACTIONS(5427), - [anon_sym_PIPE_PIPE] = ACTIONS(5427), - [anon_sym_QMARK_QMARK] = ACTIONS(5427), - [anon_sym_from] = ACTIONS(5427), - [anon_sym_into] = ACTIONS(5427), - [anon_sym_join] = ACTIONS(5427), - [anon_sym_let] = ACTIONS(5427), - [anon_sym_orderby] = ACTIONS(5427), - [anon_sym_ascending] = ACTIONS(5427), - [anon_sym_descending] = ACTIONS(5427), - [anon_sym_group] = ACTIONS(5427), - [anon_sym_select] = ACTIONS(5427), - [anon_sym_as] = ACTIONS(5429), - [anon_sym_is] = ACTIONS(5427), - [anon_sym_DASH_GT] = ACTIONS(5427), - [anon_sym_with] = ACTIONS(5427), + [sym__identifier_token] = ACTIONS(2965), + [anon_sym_alias] = ACTIONS(2969), + [anon_sym_global] = ACTIONS(2969), + [anon_sym_LPAREN] = ACTIONS(2977), + [anon_sym_ref] = ACTIONS(3436), + [anon_sym_delegate] = ACTIONS(3438), + [anon_sym_file] = ACTIONS(2969), + [anon_sym_where] = ACTIONS(2969), + [anon_sym_notnull] = ACTIONS(2969), + [anon_sym_unmanaged] = ACTIONS(2969), + [anon_sym_STAR] = ACTIONS(5575), + [anon_sym_scoped] = ACTIONS(2993), + [anon_sym_var] = ACTIONS(2995), + [sym_predefined_type] = ACTIONS(2997), + [anon_sym_yield] = ACTIONS(2969), + [anon_sym_when] = ACTIONS(2969), + [anon_sym_from] = ACTIONS(2969), + [anon_sym_into] = ACTIONS(2969), + [anon_sym_join] = ACTIONS(2969), + [anon_sym_on] = ACTIONS(2969), + [anon_sym_equals] = ACTIONS(2969), + [anon_sym_let] = ACTIONS(2969), + [anon_sym_orderby] = ACTIONS(2969), + [anon_sym_ascending] = ACTIONS(2969), + [anon_sym_descending] = ACTIONS(2969), + [anon_sym_group] = ACTIONS(2969), + [anon_sym_by] = ACTIONS(2969), + [anon_sym_select] = ACTIONS(2969), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -526069,52 +525496,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_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), + [anon_sym_LBRACK] = ACTIONS(5116), + [anon_sym_COMMA] = ACTIONS(5116), + [anon_sym_LPAREN] = ACTIONS(5116), + [anon_sym_LT] = ACTIONS(5118), + [anon_sym_GT] = ACTIONS(5118), + [anon_sym_where] = ACTIONS(5116), + [anon_sym_QMARK] = ACTIONS(5118), + [anon_sym_BANG] = ACTIONS(5118), + [anon_sym_PLUS_PLUS] = ACTIONS(5116), + [anon_sym_DASH_DASH] = ACTIONS(5116), + [anon_sym_PLUS] = ACTIONS(5118), + [anon_sym_DASH] = ACTIONS(5118), + [anon_sym_STAR] = ACTIONS(5116), + [anon_sym_SLASH] = ACTIONS(5118), + [anon_sym_PERCENT] = ACTIONS(5116), + [anon_sym_CARET] = ACTIONS(5116), + [anon_sym_PIPE] = ACTIONS(5118), + [anon_sym_AMP] = ACTIONS(5118), + [anon_sym_LT_LT] = ACTIONS(5116), + [anon_sym_GT_GT] = ACTIONS(5118), + [anon_sym_GT_GT_GT] = ACTIONS(5116), + [anon_sym_EQ_EQ] = ACTIONS(5116), + [anon_sym_BANG_EQ] = ACTIONS(5116), + [anon_sym_GT_EQ] = ACTIONS(5116), + [anon_sym_LT_EQ] = ACTIONS(5116), + [anon_sym_DOT] = ACTIONS(5118), + [anon_sym_switch] = ACTIONS(5116), + [anon_sym_DOT_DOT] = ACTIONS(5116), + [anon_sym_and] = ACTIONS(5116), + [anon_sym_or] = ACTIONS(5118), + [anon_sym_AMP_AMP] = ACTIONS(5116), + [anon_sym_PIPE_PIPE] = ACTIONS(5116), + [anon_sym_QMARK_QMARK] = ACTIONS(5116), + [anon_sym_from] = ACTIONS(5116), + [anon_sym_into] = ACTIONS(5116), + [anon_sym_join] = ACTIONS(5116), + [anon_sym_let] = ACTIONS(5116), + [anon_sym_orderby] = ACTIONS(5116), + [anon_sym_ascending] = ACTIONS(5116), + [anon_sym_descending] = ACTIONS(5116), + [anon_sym_group] = ACTIONS(5116), + [anon_sym_select] = ACTIONS(5116), + [anon_sym_as] = ACTIONS(5118), + [anon_sym_is] = ACTIONS(5116), + [anon_sym_DASH_GT] = ACTIONS(5116), + [anon_sym_with] = ACTIONS(5116), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -526136,52 +525563,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_LBRACK] = ACTIONS(3829), - [anon_sym_COMMA] = ACTIONS(3829), - [anon_sym_LPAREN] = ACTIONS(3829), - [anon_sym_LT] = ACTIONS(5431), - [anon_sym_GT] = ACTIONS(5431), - [anon_sym_where] = ACTIONS(3829), - [anon_sym_QMARK] = ACTIONS(5431), - [anon_sym_BANG] = ACTIONS(5431), - [anon_sym_PLUS_PLUS] = ACTIONS(3829), - [anon_sym_DASH_DASH] = ACTIONS(3829), - [anon_sym_PLUS] = ACTIONS(5431), - [anon_sym_DASH] = ACTIONS(5431), - [anon_sym_STAR] = ACTIONS(3829), - [anon_sym_SLASH] = ACTIONS(5431), - [anon_sym_PERCENT] = ACTIONS(3829), - [anon_sym_CARET] = ACTIONS(3829), - [anon_sym_PIPE] = ACTIONS(5431), - [anon_sym_AMP] = ACTIONS(5431), - [anon_sym_LT_LT] = ACTIONS(3829), - [anon_sym_GT_GT] = ACTIONS(5431), - [anon_sym_GT_GT_GT] = ACTIONS(3829), - [anon_sym_EQ_EQ] = ACTIONS(3829), - [anon_sym_BANG_EQ] = ACTIONS(3829), - [anon_sym_GT_EQ] = ACTIONS(3829), - [anon_sym_LT_EQ] = ACTIONS(3829), - [anon_sym_DOT] = ACTIONS(5431), - [anon_sym_switch] = ACTIONS(3829), - [anon_sym_DOT_DOT] = ACTIONS(3829), - [anon_sym_and] = ACTIONS(3829), - [anon_sym_or] = ACTIONS(5431), - [anon_sym_AMP_AMP] = ACTIONS(3829), - [anon_sym_PIPE_PIPE] = ACTIONS(3829), - [anon_sym_QMARK_QMARK] = ACTIONS(3829), - [anon_sym_from] = ACTIONS(3829), - [anon_sym_into] = ACTIONS(3829), - [anon_sym_join] = ACTIONS(3829), - [anon_sym_let] = ACTIONS(3829), - [anon_sym_orderby] = ACTIONS(3829), - [anon_sym_ascending] = ACTIONS(3829), - [anon_sym_descending] = ACTIONS(3829), - [anon_sym_group] = ACTIONS(3829), - [anon_sym_select] = ACTIONS(3829), - [anon_sym_as] = ACTIONS(5431), - [anon_sym_is] = ACTIONS(3829), - [anon_sym_DASH_GT] = ACTIONS(3829), - [anon_sym_with] = ACTIONS(3829), + [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), @@ -526194,6 +525621,25 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3782] = { + [sym__name] = STATE(4369), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(4068), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(4073), + [sym_type] = STATE(5960), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_tuple_element] = STATE(7246), + [sym_identifier] = STATE(4081), + [sym__reserved_identifier] = STATE(3654), [sym_preproc_region] = STATE(3782), [sym_preproc_endregion] = STATE(3782), [sym_preproc_line] = STATE(3782), @@ -526203,52 +525649,33 @@ 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_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), + [sym__identifier_token] = ACTIONS(2965), + [anon_sym_alias] = ACTIONS(2969), + [anon_sym_global] = ACTIONS(2969), + [anon_sym_LPAREN] = ACTIONS(2977), + [anon_sym_ref] = ACTIONS(3590), + [anon_sym_delegate] = ACTIONS(3438), + [anon_sym_file] = ACTIONS(2969), + [anon_sym_where] = ACTIONS(2969), + [anon_sym_notnull] = ACTIONS(2969), + [anon_sym_unmanaged] = ACTIONS(2969), + [anon_sym_scoped] = ACTIONS(5843), + [anon_sym_var] = ACTIONS(4705), + [sym_predefined_type] = ACTIONS(2997), + [anon_sym_yield] = ACTIONS(2969), + [anon_sym_when] = ACTIONS(2969), + [anon_sym_from] = ACTIONS(2969), + [anon_sym_into] = ACTIONS(2969), + [anon_sym_join] = ACTIONS(2969), + [anon_sym_on] = ACTIONS(2969), + [anon_sym_equals] = ACTIONS(2969), + [anon_sym_let] = ACTIONS(2969), + [anon_sym_orderby] = ACTIONS(2969), + [anon_sym_ascending] = ACTIONS(2969), + [anon_sym_descending] = ACTIONS(2969), + [anon_sym_group] = ACTIONS(2969), + [anon_sym_by] = ACTIONS(2969), + [anon_sym_select] = ACTIONS(2969), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -526261,24 +525688,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3783] = { - [sym__name] = STATE(4108), - [sym_alias_qualified_name] = STATE(2921), - [sym__simple_name] = STATE(2921), - [sym_qualified_name] = STATE(2921), - [sym_generic_name] = STATE(2929), - [sym_type] = STATE(2936), - [sym_implicit_type] = STATE(2935), - [sym_array_type] = STATE(2937), - [sym__array_base_type] = STATE(7122), - [sym_nullable_type] = STATE(2961), - [sym_pointer_type] = STATE(2961), - [sym__pointer_base_type] = STATE(7545), - [sym_function_pointer_type] = STATE(2961), - [sym_ref_type] = STATE(2935), - [sym_scoped_type] = STATE(2935), - [sym_tuple_type] = STATE(2944), - [sym_identifier] = STATE(3844), - [sym__reserved_identifier] = STATE(2904), [sym_preproc_region] = STATE(3783), [sym_preproc_endregion] = STATE(3783), [sym_preproc_line] = STATE(3783), @@ -526288,34 +525697,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), - [sym__identifier_token] = ACTIONS(3861), - [anon_sym_alias] = ACTIONS(3863), - [anon_sym_global] = ACTIONS(3863), - [anon_sym_LPAREN] = ACTIONS(6091), - [anon_sym_ref] = ACTIONS(4203), - [anon_sym_delegate] = ACTIONS(5791), - [anon_sym_file] = ACTIONS(3863), - [anon_sym_readonly] = ACTIONS(6093), - [anon_sym_where] = ACTIONS(3863), - [anon_sym_notnull] = ACTIONS(3863), - [anon_sym_unmanaged] = ACTIONS(3863), - [anon_sym_scoped] = ACTIONS(5868), - [anon_sym_var] = ACTIONS(5795), - [sym_predefined_type] = ACTIONS(5797), - [anon_sym_yield] = ACTIONS(3863), - [anon_sym_when] = ACTIONS(3863), - [anon_sym_from] = ACTIONS(3863), - [anon_sym_into] = ACTIONS(3863), - [anon_sym_join] = ACTIONS(3863), - [anon_sym_on] = ACTIONS(3863), - [anon_sym_equals] = ACTIONS(3863), - [anon_sym_let] = ACTIONS(3863), - [anon_sym_orderby] = ACTIONS(3863), - [anon_sym_ascending] = ACTIONS(3863), - [anon_sym_descending] = ACTIONS(3863), - [anon_sym_group] = ACTIONS(3863), - [anon_sym_by] = ACTIONS(3863), - [anon_sym_select] = ACTIONS(3863), + [anon_sym_LBRACK] = ACTIONS(4874), + [anon_sym_COMMA] = ACTIONS(4874), + [anon_sym_LPAREN] = ACTIONS(4874), + [anon_sym_LT] = ACTIONS(4876), + [anon_sym_GT] = ACTIONS(4876), + [anon_sym_where] = ACTIONS(4874), + [anon_sym_QMARK] = ACTIONS(4876), + [anon_sym_BANG] = ACTIONS(4876), + [anon_sym_PLUS_PLUS] = ACTIONS(4874), + [anon_sym_DASH_DASH] = ACTIONS(4874), + [anon_sym_PLUS] = ACTIONS(4876), + [anon_sym_DASH] = ACTIONS(4876), + [anon_sym_STAR] = ACTIONS(4874), + [anon_sym_SLASH] = ACTIONS(4876), + [anon_sym_PERCENT] = ACTIONS(4874), + [anon_sym_CARET] = ACTIONS(4874), + [anon_sym_PIPE] = ACTIONS(4876), + [anon_sym_AMP] = ACTIONS(4876), + [anon_sym_LT_LT] = ACTIONS(4874), + [anon_sym_GT_GT] = ACTIONS(4876), + [anon_sym_GT_GT_GT] = ACTIONS(4874), + [anon_sym_EQ_EQ] = ACTIONS(4874), + [anon_sym_BANG_EQ] = ACTIONS(4874), + [anon_sym_GT_EQ] = ACTIONS(4874), + [anon_sym_LT_EQ] = ACTIONS(4874), + [anon_sym_DOT] = ACTIONS(4876), + [anon_sym_switch] = ACTIONS(4874), + [anon_sym_DOT_DOT] = ACTIONS(4874), + [anon_sym_and] = ACTIONS(4874), + [anon_sym_or] = ACTIONS(4876), + [anon_sym_AMP_AMP] = ACTIONS(4874), + [anon_sym_PIPE_PIPE] = ACTIONS(4874), + [anon_sym_QMARK_QMARK] = ACTIONS(4874), + [anon_sym_from] = ACTIONS(4874), + [anon_sym_into] = ACTIONS(4874), + [anon_sym_join] = ACTIONS(4874), + [anon_sym_let] = ACTIONS(4874), + [anon_sym_orderby] = ACTIONS(4874), + [anon_sym_ascending] = ACTIONS(4874), + [anon_sym_descending] = ACTIONS(4874), + [anon_sym_group] = ACTIONS(4874), + [anon_sym_select] = ACTIONS(4874), + [anon_sym_as] = ACTIONS(4876), + [anon_sym_is] = ACTIONS(4874), + [anon_sym_DASH_GT] = ACTIONS(4874), + [anon_sym_with] = ACTIONS(4874), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -526337,52 +525764,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(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), + [anon_sym_LBRACK] = ACTIONS(4933), + [anon_sym_COMMA] = ACTIONS(4933), + [anon_sym_LPAREN] = 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), @@ -526395,6 +525822,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3785] = { + [sym__name] = STATE(6400), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(4068), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(4073), + [sym_type] = STATE(4565), + [sym_implicit_type] = STATE(7035), + [sym_array_type] = STATE(6706), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7421), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(7035), + [sym_scoped_type] = STATE(7035), + [sym_tuple_type] = STATE(6601), + [sym_identifier] = STATE(4081), + [sym__reserved_identifier] = STATE(3654), [sym_preproc_region] = STATE(3785), [sym_preproc_endregion] = STATE(3785), [sym_preproc_line] = STATE(3785), @@ -526404,52 +525849,34 @@ 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(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), + [sym__identifier_token] = ACTIONS(2965), + [anon_sym_alias] = ACTIONS(2969), + [anon_sym_global] = ACTIONS(2969), + [anon_sym_LPAREN] = ACTIONS(2977), + [anon_sym_ref] = ACTIONS(5937), + [anon_sym_delegate] = ACTIONS(5172), + [anon_sym_file] = ACTIONS(2969), + [anon_sym_readonly] = ACTIONS(5939), + [anon_sym_where] = ACTIONS(2969), + [anon_sym_notnull] = ACTIONS(2969), + [anon_sym_unmanaged] = ACTIONS(2969), + [anon_sym_scoped] = ACTIONS(5454), + [anon_sym_var] = ACTIONS(2995), + [sym_predefined_type] = ACTIONS(5180), + [anon_sym_yield] = ACTIONS(2969), + [anon_sym_when] = ACTIONS(2969), + [anon_sym_from] = ACTIONS(2969), + [anon_sym_into] = ACTIONS(2969), + [anon_sym_join] = ACTIONS(2969), + [anon_sym_on] = ACTIONS(2969), + [anon_sym_equals] = ACTIONS(2969), + [anon_sym_let] = ACTIONS(2969), + [anon_sym_orderby] = ACTIONS(2969), + [anon_sym_ascending] = ACTIONS(2969), + [anon_sym_descending] = ACTIONS(2969), + [anon_sym_group] = ACTIONS(2969), + [anon_sym_by] = ACTIONS(2969), + [anon_sym_select] = ACTIONS(2969), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -526471,52 +525898,52 @@ 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_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(4929), + [anon_sym_COMMA] = ACTIONS(4929), + [anon_sym_LPAREN] = ACTIONS(4929), + [anon_sym_LT] = ACTIONS(4931), + [anon_sym_GT] = ACTIONS(4931), + [anon_sym_where] = ACTIONS(4929), + [anon_sym_QMARK] = ACTIONS(4931), + [anon_sym_BANG] = ACTIONS(4931), + [anon_sym_PLUS_PLUS] = ACTIONS(4929), + [anon_sym_DASH_DASH] = ACTIONS(4929), + [anon_sym_PLUS] = ACTIONS(4931), + [anon_sym_DASH] = ACTIONS(4931), + [anon_sym_STAR] = ACTIONS(4929), + [anon_sym_SLASH] = ACTIONS(4931), + [anon_sym_PERCENT] = ACTIONS(4929), + [anon_sym_CARET] = ACTIONS(4929), + [anon_sym_PIPE] = ACTIONS(4931), + [anon_sym_AMP] = ACTIONS(4931), + [anon_sym_LT_LT] = ACTIONS(4929), + [anon_sym_GT_GT] = ACTIONS(4931), + [anon_sym_GT_GT_GT] = ACTIONS(4929), + [anon_sym_EQ_EQ] = ACTIONS(4929), + [anon_sym_BANG_EQ] = ACTIONS(4929), + [anon_sym_GT_EQ] = ACTIONS(4929), + [anon_sym_LT_EQ] = ACTIONS(4929), + [anon_sym_DOT] = ACTIONS(4931), + [anon_sym_switch] = ACTIONS(4929), + [anon_sym_DOT_DOT] = ACTIONS(4929), + [anon_sym_and] = ACTIONS(4929), + [anon_sym_or] = ACTIONS(4931), + [anon_sym_AMP_AMP] = ACTIONS(4929), + [anon_sym_PIPE_PIPE] = ACTIONS(4929), + [anon_sym_QMARK_QMARK] = ACTIONS(4929), + [anon_sym_from] = ACTIONS(4929), + [anon_sym_into] = ACTIONS(4929), + [anon_sym_join] = ACTIONS(4929), + [anon_sym_let] = ACTIONS(4929), + [anon_sym_orderby] = ACTIONS(4929), + [anon_sym_ascending] = ACTIONS(4929), + [anon_sym_descending] = ACTIONS(4929), + [anon_sym_group] = ACTIONS(4929), + [anon_sym_select] = ACTIONS(4929), + [anon_sym_as] = ACTIONS(4931), + [anon_sym_is] = ACTIONS(4929), + [anon_sym_DASH_GT] = ACTIONS(4929), + [anon_sym_with] = ACTIONS(4929), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -526538,52 +525965,52 @@ 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_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(3139), + [anon_sym_COMMA] = ACTIONS(3139), + [anon_sym_LPAREN] = ACTIONS(3139), + [anon_sym_LT] = ACTIONS(3137), + [anon_sym_GT] = ACTIONS(3137), + [anon_sym_where] = ACTIONS(3139), + [anon_sym_QMARK] = ACTIONS(3137), + [anon_sym_BANG] = ACTIONS(3137), + [anon_sym_PLUS_PLUS] = ACTIONS(3139), + [anon_sym_DASH_DASH] = ACTIONS(3139), + [anon_sym_PLUS] = ACTIONS(3137), + [anon_sym_DASH] = ACTIONS(3137), + [anon_sym_STAR] = ACTIONS(3139), + [anon_sym_SLASH] = ACTIONS(3137), + [anon_sym_PERCENT] = ACTIONS(3139), + [anon_sym_CARET] = ACTIONS(3139), + [anon_sym_PIPE] = ACTIONS(3137), + [anon_sym_AMP] = ACTIONS(3137), + [anon_sym_LT_LT] = ACTIONS(3139), + [anon_sym_GT_GT] = ACTIONS(3137), + [anon_sym_GT_GT_GT] = ACTIONS(3139), + [anon_sym_EQ_EQ] = ACTIONS(3139), + [anon_sym_BANG_EQ] = ACTIONS(3139), + [anon_sym_GT_EQ] = ACTIONS(3139), + [anon_sym_LT_EQ] = ACTIONS(3139), + [anon_sym_DOT] = ACTIONS(3137), + [anon_sym_switch] = ACTIONS(3139), + [anon_sym_DOT_DOT] = ACTIONS(3139), + [anon_sym_and] = ACTIONS(3139), + [anon_sym_or] = ACTIONS(3137), + [anon_sym_AMP_AMP] = ACTIONS(3139), + [anon_sym_PIPE_PIPE] = ACTIONS(3139), + [anon_sym_QMARK_QMARK] = ACTIONS(3139), + [anon_sym_from] = ACTIONS(3139), + [anon_sym_into] = ACTIONS(3139), + [anon_sym_join] = 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_select] = ACTIONS(3139), + [anon_sym_as] = ACTIONS(3137), + [anon_sym_is] = ACTIONS(3139), + [anon_sym_DASH_GT] = ACTIONS(3139), + [anon_sym_with] = ACTIONS(3139), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -526596,6 +526023,25 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3788] = { + [sym__name] = STATE(4369), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(4068), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(4073), + [sym_type] = STATE(5960), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_tuple_element] = STATE(7037), + [sym_identifier] = STATE(4081), + [sym__reserved_identifier] = STATE(3654), [sym_preproc_region] = STATE(3788), [sym_preproc_endregion] = STATE(3788), [sym_preproc_line] = STATE(3788), @@ -526605,52 +526051,33 @@ 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), - [anon_sym_LBRACK] = ACTIONS(5377), - [anon_sym_COMMA] = ACTIONS(5377), - [anon_sym_LPAREN] = ACTIONS(5377), - [anon_sym_LT] = ACTIONS(5379), - [anon_sym_GT] = ACTIONS(5379), - [anon_sym_where] = ACTIONS(5377), - [anon_sym_QMARK] = ACTIONS(5379), - [anon_sym_BANG] = ACTIONS(5379), - [anon_sym_PLUS_PLUS] = ACTIONS(5377), - [anon_sym_DASH_DASH] = ACTIONS(5377), - [anon_sym_PLUS] = ACTIONS(5379), - [anon_sym_DASH] = ACTIONS(5379), - [anon_sym_STAR] = ACTIONS(5377), - [anon_sym_SLASH] = ACTIONS(5379), - [anon_sym_PERCENT] = ACTIONS(5377), - [anon_sym_CARET] = ACTIONS(5377), - [anon_sym_PIPE] = ACTIONS(5379), - [anon_sym_AMP] = ACTIONS(5379), - [anon_sym_LT_LT] = ACTIONS(5377), - [anon_sym_GT_GT] = ACTIONS(5379), - [anon_sym_GT_GT_GT] = ACTIONS(5377), - [anon_sym_EQ_EQ] = ACTIONS(5377), - [anon_sym_BANG_EQ] = ACTIONS(5377), - [anon_sym_GT_EQ] = ACTIONS(5377), - [anon_sym_LT_EQ] = ACTIONS(5377), - [anon_sym_DOT] = ACTIONS(5379), - [anon_sym_switch] = ACTIONS(5377), - [anon_sym_DOT_DOT] = ACTIONS(5377), - [anon_sym_and] = ACTIONS(5377), - [anon_sym_or] = ACTIONS(5379), - [anon_sym_AMP_AMP] = ACTIONS(5377), - [anon_sym_PIPE_PIPE] = ACTIONS(5377), - [anon_sym_QMARK_QMARK] = ACTIONS(5377), - [anon_sym_from] = ACTIONS(5377), - [anon_sym_into] = ACTIONS(5377), - [anon_sym_join] = ACTIONS(5377), - [anon_sym_let] = ACTIONS(5377), - [anon_sym_orderby] = ACTIONS(5377), - [anon_sym_ascending] = ACTIONS(5377), - [anon_sym_descending] = ACTIONS(5377), - [anon_sym_group] = ACTIONS(5377), - [anon_sym_select] = ACTIONS(5377), - [anon_sym_as] = ACTIONS(5379), - [anon_sym_is] = ACTIONS(5377), - [anon_sym_DASH_GT] = ACTIONS(5377), - [anon_sym_with] = ACTIONS(5377), + [sym__identifier_token] = ACTIONS(2965), + [anon_sym_alias] = ACTIONS(2969), + [anon_sym_global] = ACTIONS(2969), + [anon_sym_LPAREN] = ACTIONS(2977), + [anon_sym_ref] = ACTIONS(3590), + [anon_sym_delegate] = ACTIONS(3438), + [anon_sym_file] = ACTIONS(2969), + [anon_sym_where] = ACTIONS(2969), + [anon_sym_notnull] = ACTIONS(2969), + [anon_sym_unmanaged] = ACTIONS(2969), + [anon_sym_scoped] = ACTIONS(5843), + [anon_sym_var] = ACTIONS(4705), + [sym_predefined_type] = ACTIONS(2997), + [anon_sym_yield] = ACTIONS(2969), + [anon_sym_when] = ACTIONS(2969), + [anon_sym_from] = ACTIONS(2969), + [anon_sym_into] = ACTIONS(2969), + [anon_sym_join] = ACTIONS(2969), + [anon_sym_on] = ACTIONS(2969), + [anon_sym_equals] = ACTIONS(2969), + [anon_sym_let] = ACTIONS(2969), + [anon_sym_orderby] = ACTIONS(2969), + [anon_sym_ascending] = ACTIONS(2969), + [anon_sym_descending] = ACTIONS(2969), + [anon_sym_group] = ACTIONS(2969), + [anon_sym_by] = ACTIONS(2969), + [anon_sym_select] = ACTIONS(2969), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -526663,6 +526090,25 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3789] = { + [sym__name] = STATE(4369), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(4068), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(4073), + [sym_type] = STATE(5960), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_tuple_element] = STATE(7058), + [sym_identifier] = STATE(4081), + [sym__reserved_identifier] = STATE(3654), [sym_preproc_region] = STATE(3789), [sym_preproc_endregion] = STATE(3789), [sym_preproc_line] = STATE(3789), @@ -526672,52 +526118,33 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3789), [sym_preproc_define] = STATE(3789), [sym_preproc_undef] = STATE(3789), - [anon_sym_LBRACK] = ACTIONS(5342), - [anon_sym_COMMA] = ACTIONS(5342), - [anon_sym_LPAREN] = ACTIONS(5342), - [anon_sym_LT] = ACTIONS(5344), - [anon_sym_GT] = ACTIONS(5344), - [anon_sym_where] = ACTIONS(5342), - [anon_sym_QMARK] = ACTIONS(5344), - [anon_sym_BANG] = ACTIONS(5344), - [anon_sym_PLUS_PLUS] = ACTIONS(5342), - [anon_sym_DASH_DASH] = ACTIONS(5342), - [anon_sym_PLUS] = ACTIONS(5344), - [anon_sym_DASH] = ACTIONS(5344), - [anon_sym_STAR] = ACTIONS(5342), - [anon_sym_SLASH] = ACTIONS(5344), - [anon_sym_PERCENT] = ACTIONS(5342), - [anon_sym_CARET] = ACTIONS(5342), - [anon_sym_PIPE] = ACTIONS(5344), - [anon_sym_AMP] = ACTIONS(5344), - [anon_sym_LT_LT] = ACTIONS(5342), - [anon_sym_GT_GT] = ACTIONS(5344), - [anon_sym_GT_GT_GT] = ACTIONS(5342), - [anon_sym_EQ_EQ] = ACTIONS(5342), - [anon_sym_BANG_EQ] = ACTIONS(5342), - [anon_sym_GT_EQ] = ACTIONS(5342), - [anon_sym_LT_EQ] = ACTIONS(5342), - [anon_sym_DOT] = ACTIONS(5344), - [anon_sym_switch] = ACTIONS(5342), - [anon_sym_DOT_DOT] = ACTIONS(5342), - [anon_sym_and] = ACTIONS(5342), - [anon_sym_or] = ACTIONS(5344), - [anon_sym_AMP_AMP] = ACTIONS(5342), - [anon_sym_PIPE_PIPE] = ACTIONS(5342), - [anon_sym_QMARK_QMARK] = ACTIONS(5342), - [anon_sym_from] = ACTIONS(5342), - [anon_sym_into] = ACTIONS(5342), - [anon_sym_join] = ACTIONS(5342), - [anon_sym_let] = ACTIONS(5342), - [anon_sym_orderby] = ACTIONS(5342), - [anon_sym_ascending] = ACTIONS(5342), - [anon_sym_descending] = ACTIONS(5342), - [anon_sym_group] = ACTIONS(5342), - [anon_sym_select] = ACTIONS(5342), - [anon_sym_as] = ACTIONS(5344), - [anon_sym_is] = ACTIONS(5342), - [anon_sym_DASH_GT] = ACTIONS(5342), - [anon_sym_with] = ACTIONS(5342), + [sym__identifier_token] = ACTIONS(2965), + [anon_sym_alias] = ACTIONS(2969), + [anon_sym_global] = ACTIONS(2969), + [anon_sym_LPAREN] = ACTIONS(2977), + [anon_sym_ref] = ACTIONS(3590), + [anon_sym_delegate] = ACTIONS(3438), + [anon_sym_file] = ACTIONS(2969), + [anon_sym_where] = ACTIONS(2969), + [anon_sym_notnull] = ACTIONS(2969), + [anon_sym_unmanaged] = ACTIONS(2969), + [anon_sym_scoped] = ACTIONS(5843), + [anon_sym_var] = ACTIONS(4705), + [sym_predefined_type] = ACTIONS(2997), + [anon_sym_yield] = ACTIONS(2969), + [anon_sym_when] = ACTIONS(2969), + [anon_sym_from] = ACTIONS(2969), + [anon_sym_into] = ACTIONS(2969), + [anon_sym_join] = ACTIONS(2969), + [anon_sym_on] = ACTIONS(2969), + [anon_sym_equals] = ACTIONS(2969), + [anon_sym_let] = ACTIONS(2969), + [anon_sym_orderby] = ACTIONS(2969), + [anon_sym_ascending] = ACTIONS(2969), + [anon_sym_descending] = ACTIONS(2969), + [anon_sym_group] = ACTIONS(2969), + [anon_sym_by] = ACTIONS(2969), + [anon_sym_select] = ACTIONS(2969), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -526739,52 +526166,52 @@ 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(5342), - [anon_sym_COMMA] = ACTIONS(5342), - [anon_sym_LPAREN] = ACTIONS(5342), - [anon_sym_LT] = ACTIONS(5344), - [anon_sym_GT] = ACTIONS(5344), - [anon_sym_where] = ACTIONS(5342), - [anon_sym_QMARK] = ACTIONS(5344), - [anon_sym_BANG] = ACTIONS(5344), - [anon_sym_PLUS_PLUS] = ACTIONS(5342), - [anon_sym_DASH_DASH] = ACTIONS(5342), - [anon_sym_PLUS] = ACTIONS(5344), - [anon_sym_DASH] = ACTIONS(5344), - [anon_sym_STAR] = ACTIONS(5342), - [anon_sym_SLASH] = ACTIONS(5344), - [anon_sym_PERCENT] = ACTIONS(5342), - [anon_sym_CARET] = ACTIONS(5342), - [anon_sym_PIPE] = ACTIONS(5344), - [anon_sym_AMP] = ACTIONS(5344), - [anon_sym_LT_LT] = ACTIONS(5342), - [anon_sym_GT_GT] = ACTIONS(5344), - [anon_sym_GT_GT_GT] = ACTIONS(5342), - [anon_sym_EQ_EQ] = ACTIONS(5342), - [anon_sym_BANG_EQ] = ACTIONS(5342), - [anon_sym_GT_EQ] = ACTIONS(5342), - [anon_sym_LT_EQ] = ACTIONS(5342), - [anon_sym_DOT] = ACTIONS(5344), - [anon_sym_switch] = ACTIONS(5342), - [anon_sym_DOT_DOT] = ACTIONS(5342), - [anon_sym_and] = ACTIONS(5342), - [anon_sym_or] = ACTIONS(5344), - [anon_sym_AMP_AMP] = ACTIONS(5342), - [anon_sym_PIPE_PIPE] = ACTIONS(5342), - [anon_sym_QMARK_QMARK] = ACTIONS(5342), - [anon_sym_from] = ACTIONS(5342), - [anon_sym_into] = ACTIONS(5342), - [anon_sym_join] = ACTIONS(5342), - [anon_sym_let] = ACTIONS(5342), - [anon_sym_orderby] = ACTIONS(5342), - [anon_sym_ascending] = ACTIONS(5342), - [anon_sym_descending] = ACTIONS(5342), - [anon_sym_group] = ACTIONS(5342), - [anon_sym_select] = ACTIONS(5342), - [anon_sym_as] = ACTIONS(5344), - [anon_sym_is] = ACTIONS(5342), - [anon_sym_DASH_GT] = ACTIONS(5342), - [anon_sym_with] = ACTIONS(5342), + [anon_sym_LBRACK] = ACTIONS(5376), + [anon_sym_COMMA] = ACTIONS(4241), + [anon_sym_LPAREN] = ACTIONS(5376), + [anon_sym_LT] = ACTIONS(5379), + [anon_sym_GT] = ACTIONS(5379), + [anon_sym_where] = ACTIONS(4241), + [anon_sym_QMARK] = ACTIONS(5379), + [anon_sym_BANG] = ACTIONS(5379), + [anon_sym_PLUS_PLUS] = ACTIONS(5376), + [anon_sym_DASH_DASH] = ACTIONS(5376), + [anon_sym_PLUS] = ACTIONS(5379), + [anon_sym_DASH] = ACTIONS(5379), + [anon_sym_STAR] = ACTIONS(5376), + [anon_sym_SLASH] = ACTIONS(5379), + [anon_sym_PERCENT] = ACTIONS(5376), + [anon_sym_CARET] = ACTIONS(5376), + [anon_sym_PIPE] = ACTIONS(5379), + [anon_sym_AMP] = ACTIONS(5379), + [anon_sym_LT_LT] = ACTIONS(5376), + [anon_sym_GT_GT] = ACTIONS(5379), + [anon_sym_GT_GT_GT] = ACTIONS(5376), + [anon_sym_EQ_EQ] = ACTIONS(5376), + [anon_sym_BANG_EQ] = ACTIONS(5376), + [anon_sym_GT_EQ] = ACTIONS(5376), + [anon_sym_LT_EQ] = ACTIONS(5376), + [anon_sym_DOT] = ACTIONS(5379), + [anon_sym_switch] = ACTIONS(5376), + [anon_sym_DOT_DOT] = ACTIONS(5376), + [anon_sym_and] = ACTIONS(4241), + [anon_sym_or] = ACTIONS(4249), + [anon_sym_AMP_AMP] = ACTIONS(5376), + [anon_sym_PIPE_PIPE] = ACTIONS(5376), + [anon_sym_QMARK_QMARK] = ACTIONS(5376), + [anon_sym_from] = ACTIONS(4241), + [anon_sym_into] = ACTIONS(4241), + [anon_sym_join] = ACTIONS(4241), + [anon_sym_let] = ACTIONS(4241), + [anon_sym_orderby] = ACTIONS(4241), + [anon_sym_ascending] = ACTIONS(4241), + [anon_sym_descending] = ACTIONS(4241), + [anon_sym_group] = ACTIONS(4241), + [anon_sym_select] = ACTIONS(4241), + [anon_sym_as] = ACTIONS(5379), + [anon_sym_is] = ACTIONS(5376), + [anon_sym_DASH_GT] = ACTIONS(5376), + [anon_sym_with] = ACTIONS(5376), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -526806,52 +526233,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), - [anon_sym_LBRACK] = ACTIONS(5346), - [anon_sym_COMMA] = ACTIONS(5346), - [anon_sym_LPAREN] = ACTIONS(5346), - [anon_sym_LT] = ACTIONS(5348), - [anon_sym_GT] = ACTIONS(5348), - [anon_sym_where] = ACTIONS(5346), - [anon_sym_QMARK] = ACTIONS(5348), - [anon_sym_BANG] = ACTIONS(5348), - [anon_sym_PLUS_PLUS] = ACTIONS(5346), - [anon_sym_DASH_DASH] = ACTIONS(5346), - [anon_sym_PLUS] = ACTIONS(5348), - [anon_sym_DASH] = ACTIONS(5348), - [anon_sym_STAR] = ACTIONS(5346), - [anon_sym_SLASH] = ACTIONS(5348), - [anon_sym_PERCENT] = ACTIONS(5346), - [anon_sym_CARET] = ACTIONS(5346), - [anon_sym_PIPE] = ACTIONS(5348), - [anon_sym_AMP] = ACTIONS(5348), - [anon_sym_LT_LT] = ACTIONS(5346), - [anon_sym_GT_GT] = ACTIONS(5348), - [anon_sym_GT_GT_GT] = ACTIONS(5346), - [anon_sym_EQ_EQ] = ACTIONS(5346), - [anon_sym_BANG_EQ] = ACTIONS(5346), - [anon_sym_GT_EQ] = ACTIONS(5346), - [anon_sym_LT_EQ] = ACTIONS(5346), - [anon_sym_DOT] = ACTIONS(5348), - [anon_sym_switch] = ACTIONS(5346), - [anon_sym_DOT_DOT] = ACTIONS(5346), - [anon_sym_and] = ACTIONS(5346), - [anon_sym_or] = ACTIONS(5348), - [anon_sym_AMP_AMP] = ACTIONS(5346), - [anon_sym_PIPE_PIPE] = ACTIONS(5346), - [anon_sym_QMARK_QMARK] = ACTIONS(5346), - [anon_sym_from] = ACTIONS(5346), - [anon_sym_into] = ACTIONS(5346), - [anon_sym_join] = ACTIONS(5346), - [anon_sym_let] = ACTIONS(5346), - [anon_sym_orderby] = ACTIONS(5346), - [anon_sym_ascending] = ACTIONS(5346), - [anon_sym_descending] = ACTIONS(5346), - [anon_sym_group] = ACTIONS(5346), - [anon_sym_select] = ACTIONS(5346), - [anon_sym_as] = ACTIONS(5348), - [anon_sym_is] = ACTIONS(5346), - [anon_sym_DASH_GT] = ACTIONS(5346), - [anon_sym_with] = ACTIONS(5346), + [anon_sym_LBRACK] = ACTIONS(5382), + [anon_sym_COMMA] = ACTIONS(4241), + [anon_sym_LPAREN] = ACTIONS(5382), + [anon_sym_LT] = ACTIONS(5385), + [anon_sym_GT] = ACTIONS(5385), + [anon_sym_where] = ACTIONS(4241), + [anon_sym_QMARK] = ACTIONS(5385), + [anon_sym_BANG] = ACTIONS(5385), + [anon_sym_PLUS_PLUS] = ACTIONS(5382), + [anon_sym_DASH_DASH] = ACTIONS(5382), + [anon_sym_PLUS] = ACTIONS(5385), + [anon_sym_DASH] = ACTIONS(5385), + [anon_sym_STAR] = ACTIONS(5382), + [anon_sym_SLASH] = ACTIONS(5385), + [anon_sym_PERCENT] = ACTIONS(5382), + [anon_sym_CARET] = ACTIONS(5382), + [anon_sym_PIPE] = ACTIONS(5385), + [anon_sym_AMP] = ACTIONS(5385), + [anon_sym_LT_LT] = ACTIONS(5382), + [anon_sym_GT_GT] = ACTIONS(5385), + [anon_sym_GT_GT_GT] = ACTIONS(5382), + [anon_sym_EQ_EQ] = ACTIONS(5382), + [anon_sym_BANG_EQ] = ACTIONS(5382), + [anon_sym_GT_EQ] = ACTIONS(5382), + [anon_sym_LT_EQ] = ACTIONS(5382), + [anon_sym_DOT] = ACTIONS(5385), + [anon_sym_switch] = ACTIONS(5382), + [anon_sym_DOT_DOT] = ACTIONS(5382), + [anon_sym_and] = ACTIONS(4241), + [anon_sym_or] = ACTIONS(4249), + [anon_sym_AMP_AMP] = ACTIONS(5382), + [anon_sym_PIPE_PIPE] = ACTIONS(5382), + [anon_sym_QMARK_QMARK] = ACTIONS(5382), + [anon_sym_from] = ACTIONS(4241), + [anon_sym_into] = ACTIONS(4241), + [anon_sym_join] = ACTIONS(4241), + [anon_sym_let] = ACTIONS(4241), + [anon_sym_orderby] = ACTIONS(4241), + [anon_sym_ascending] = ACTIONS(4241), + [anon_sym_descending] = ACTIONS(4241), + [anon_sym_group] = ACTIONS(4241), + [anon_sym_select] = ACTIONS(4241), + [anon_sym_as] = ACTIONS(5385), + [anon_sym_is] = ACTIONS(5382), + [anon_sym_DASH_GT] = ACTIONS(5382), + [anon_sym_with] = ACTIONS(5382), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -526864,6 +526291,25 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3792] = { + [sym__name] = STATE(4369), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(4068), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(4073), + [sym_type] = STATE(5960), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_tuple_element] = STATE(7069), + [sym_identifier] = STATE(4081), + [sym__reserved_identifier] = STATE(3654), [sym_preproc_region] = STATE(3792), [sym_preproc_endregion] = STATE(3792), [sym_preproc_line] = STATE(3792), @@ -526873,52 +526319,33 @@ 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(5350), - [anon_sym_COMMA] = ACTIONS(5350), - [anon_sym_LPAREN] = ACTIONS(5350), - [anon_sym_LT] = ACTIONS(5352), - [anon_sym_GT] = ACTIONS(5352), - [anon_sym_where] = ACTIONS(5350), - [anon_sym_QMARK] = ACTIONS(5352), - [anon_sym_BANG] = ACTIONS(5352), - [anon_sym_PLUS_PLUS] = ACTIONS(5350), - [anon_sym_DASH_DASH] = ACTIONS(5350), - [anon_sym_PLUS] = ACTIONS(5352), - [anon_sym_DASH] = ACTIONS(5352), - [anon_sym_STAR] = ACTIONS(5350), - [anon_sym_SLASH] = ACTIONS(5352), - [anon_sym_PERCENT] = ACTIONS(5350), - [anon_sym_CARET] = ACTIONS(5350), - [anon_sym_PIPE] = ACTIONS(5352), - [anon_sym_AMP] = ACTIONS(5352), - [anon_sym_LT_LT] = ACTIONS(5350), - [anon_sym_GT_GT] = ACTIONS(5352), - [anon_sym_GT_GT_GT] = ACTIONS(5350), - [anon_sym_EQ_EQ] = ACTIONS(5350), - [anon_sym_BANG_EQ] = ACTIONS(5350), - [anon_sym_GT_EQ] = ACTIONS(5350), - [anon_sym_LT_EQ] = ACTIONS(5350), - [anon_sym_DOT] = ACTIONS(5352), - [anon_sym_switch] = ACTIONS(5350), - [anon_sym_DOT_DOT] = ACTIONS(5350), - [anon_sym_and] = ACTIONS(5350), - [anon_sym_or] = ACTIONS(5352), - [anon_sym_AMP_AMP] = ACTIONS(5350), - [anon_sym_PIPE_PIPE] = ACTIONS(5350), - [anon_sym_QMARK_QMARK] = ACTIONS(5350), - [anon_sym_from] = ACTIONS(5350), - [anon_sym_into] = ACTIONS(5350), - [anon_sym_join] = ACTIONS(5350), - [anon_sym_let] = ACTIONS(5350), - [anon_sym_orderby] = ACTIONS(5350), - [anon_sym_ascending] = ACTIONS(5350), - [anon_sym_descending] = ACTIONS(5350), - [anon_sym_group] = ACTIONS(5350), - [anon_sym_select] = ACTIONS(5350), - [anon_sym_as] = ACTIONS(5352), - [anon_sym_is] = ACTIONS(5350), - [anon_sym_DASH_GT] = ACTIONS(5350), - [anon_sym_with] = ACTIONS(5350), + [sym__identifier_token] = ACTIONS(2965), + [anon_sym_alias] = ACTIONS(2969), + [anon_sym_global] = ACTIONS(2969), + [anon_sym_LPAREN] = ACTIONS(2977), + [anon_sym_ref] = ACTIONS(3590), + [anon_sym_delegate] = ACTIONS(3438), + [anon_sym_file] = ACTIONS(2969), + [anon_sym_where] = ACTIONS(2969), + [anon_sym_notnull] = ACTIONS(2969), + [anon_sym_unmanaged] = ACTIONS(2969), + [anon_sym_scoped] = ACTIONS(5843), + [anon_sym_var] = ACTIONS(4705), + [sym_predefined_type] = ACTIONS(2997), + [anon_sym_yield] = ACTIONS(2969), + [anon_sym_when] = ACTIONS(2969), + [anon_sym_from] = ACTIONS(2969), + [anon_sym_into] = ACTIONS(2969), + [anon_sym_join] = ACTIONS(2969), + [anon_sym_on] = ACTIONS(2969), + [anon_sym_equals] = ACTIONS(2969), + [anon_sym_let] = ACTIONS(2969), + [anon_sym_orderby] = ACTIONS(2969), + [anon_sym_ascending] = ACTIONS(2969), + [anon_sym_descending] = ACTIONS(2969), + [anon_sym_group] = ACTIONS(2969), + [anon_sym_by] = ACTIONS(2969), + [anon_sym_select] = ACTIONS(2969), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -526931,24 +526358,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3793] = { - [sym__name] = STATE(6450), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(4096), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(4109), - [sym_type] = STATE(4632), - [sym_implicit_type] = STATE(7266), - [sym_array_type] = STATE(6694), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7446), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(7266), - [sym_scoped_type] = STATE(7266), - [sym_tuple_type] = STATE(6579), - [sym_identifier] = STATE(4087), - [sym__reserved_identifier] = STATE(3691), + [sym_argument_list] = STATE(3348), + [sym_bracketed_argument_list] = STATE(2605), [sym_preproc_region] = STATE(3793), [sym_preproc_endregion] = STATE(3793), [sym_preproc_line] = STATE(3793), @@ -526958,34 +526369,50 @@ 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), - [sym__identifier_token] = ACTIONS(2967), - [anon_sym_alias] = ACTIONS(2971), - [anon_sym_global] = ACTIONS(2971), - [anon_sym_LPAREN] = ACTIONS(2979), - [anon_sym_ref] = ACTIONS(5028), - [anon_sym_delegate] = ACTIONS(5030), - [anon_sym_file] = ACTIONS(2971), - [anon_sym_readonly] = ACTIONS(6095), - [anon_sym_where] = ACTIONS(2971), - [anon_sym_notnull] = ACTIONS(2971), - [anon_sym_unmanaged] = ACTIONS(2971), - [anon_sym_scoped] = ACTIONS(5036), - [anon_sym_var] = ACTIONS(4737), - [sym_predefined_type] = ACTIONS(5038), - [anon_sym_yield] = ACTIONS(2971), - [anon_sym_when] = ACTIONS(2971), - [anon_sym_from] = ACTIONS(2971), - [anon_sym_into] = ACTIONS(2971), - [anon_sym_join] = ACTIONS(2971), - [anon_sym_on] = ACTIONS(2971), - [anon_sym_equals] = ACTIONS(2971), - [anon_sym_let] = ACTIONS(2971), - [anon_sym_orderby] = ACTIONS(2971), - [anon_sym_ascending] = ACTIONS(2971), - [anon_sym_descending] = ACTIONS(2971), - [anon_sym_group] = ACTIONS(2971), - [anon_sym_by] = ACTIONS(2971), - [anon_sym_select] = ACTIONS(2971), + [anon_sym_SEMI] = ACTIONS(5733), + [anon_sym_LBRACK] = ACTIONS(5236), + [anon_sym_COMMA] = ACTIONS(5733), + [anon_sym_RBRACK] = ACTIONS(5733), + [anon_sym_LPAREN] = ACTIONS(5227), + [anon_sym_RPAREN] = ACTIONS(5733), + [anon_sym_RBRACE] = ACTIONS(5733), + [anon_sym_LT] = ACTIONS(5993), + [anon_sym_GT] = ACTIONS(5993), + [anon_sym_QMARK] = ACTIONS(5995), + [anon_sym_BANG] = ACTIONS(5238), + [anon_sym_PLUS_PLUS] = ACTIONS(5240), + [anon_sym_DASH_DASH] = ACTIONS(5240), + [anon_sym_PLUS] = ACTIONS(5997), + [anon_sym_DASH] = ACTIONS(5997), + [anon_sym_STAR] = ACTIONS(5999), + [anon_sym_SLASH] = ACTIONS(6001), + [anon_sym_PERCENT] = ACTIONS(5999), + [anon_sym_CARET] = ACTIONS(6003), + [anon_sym_PIPE] = ACTIONS(6005), + [anon_sym_AMP] = ACTIONS(6007), + [anon_sym_LT_LT] = ACTIONS(6009), + [anon_sym_GT_GT] = ACTIONS(6011), + [anon_sym_GT_GT_GT] = ACTIONS(6009), + [anon_sym_EQ_EQ] = ACTIONS(6013), + [anon_sym_BANG_EQ] = ACTIONS(6013), + [anon_sym_GT_EQ] = ACTIONS(6015), + [anon_sym_LT_EQ] = ACTIONS(6015), + [anon_sym_DOT] = ACTIONS(4092), + [anon_sym_switch] = ACTIONS(6017), + [anon_sym_DOT_DOT] = ACTIONS(6019), + [anon_sym_and] = ACTIONS(5733), + [anon_sym_or] = ACTIONS(5733), + [anon_sym_AMP_AMP] = ACTIONS(6021), + [anon_sym_PIPE_PIPE] = ACTIONS(6023), + [anon_sym_QMARK_QMARK] = ACTIONS(6025), + [anon_sym_into] = ACTIONS(5733), + [anon_sym_as] = ACTIONS(6027), + [anon_sym_is] = ACTIONS(6029), + [anon_sym_DASH_GT] = ACTIONS(4094), + [anon_sym_with] = ACTIONS(6031), + [aux_sym_preproc_if_token3] = ACTIONS(5733), + [aux_sym_preproc_else_token1] = ACTIONS(5733), + [aux_sym_preproc_elif_token1] = ACTIONS(5733), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -527007,52 +526434,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_LBRACK] = ACTIONS(5383), - [anon_sym_COMMA] = ACTIONS(5383), - [anon_sym_LPAREN] = ACTIONS(5383), - [anon_sym_LT] = ACTIONS(5385), - [anon_sym_GT] = ACTIONS(5385), - [anon_sym_where] = ACTIONS(5383), - [anon_sym_QMARK] = ACTIONS(5385), - [anon_sym_BANG] = ACTIONS(5385), - [anon_sym_PLUS_PLUS] = ACTIONS(5383), - [anon_sym_DASH_DASH] = ACTIONS(5383), - [anon_sym_PLUS] = ACTIONS(5385), - [anon_sym_DASH] = ACTIONS(5385), - [anon_sym_STAR] = ACTIONS(5383), - [anon_sym_SLASH] = ACTIONS(5385), - [anon_sym_PERCENT] = ACTIONS(5383), - [anon_sym_CARET] = ACTIONS(5383), - [anon_sym_PIPE] = ACTIONS(5385), - [anon_sym_AMP] = ACTIONS(5385), - [anon_sym_LT_LT] = ACTIONS(5383), - [anon_sym_GT_GT] = ACTIONS(5385), - [anon_sym_GT_GT_GT] = ACTIONS(5383), - [anon_sym_EQ_EQ] = ACTIONS(5383), - [anon_sym_BANG_EQ] = ACTIONS(5383), - [anon_sym_GT_EQ] = ACTIONS(5383), - [anon_sym_LT_EQ] = ACTIONS(5383), - [anon_sym_DOT] = ACTIONS(5385), - [anon_sym_switch] = ACTIONS(5383), - [anon_sym_DOT_DOT] = ACTIONS(5383), - [anon_sym_and] = ACTIONS(5383), - [anon_sym_or] = ACTIONS(5385), - [anon_sym_AMP_AMP] = ACTIONS(5383), - [anon_sym_PIPE_PIPE] = ACTIONS(5383), - [anon_sym_QMARK_QMARK] = ACTIONS(5383), - [anon_sym_from] = ACTIONS(5383), - [anon_sym_into] = ACTIONS(5383), - [anon_sym_join] = ACTIONS(5383), - [anon_sym_let] = ACTIONS(5383), - [anon_sym_orderby] = ACTIONS(5383), - [anon_sym_ascending] = ACTIONS(5383), - [anon_sym_descending] = ACTIONS(5383), - [anon_sym_group] = ACTIONS(5383), - [anon_sym_select] = ACTIONS(5383), - [anon_sym_as] = ACTIONS(5385), - [anon_sym_is] = ACTIONS(5383), - [anon_sym_DASH_GT] = ACTIONS(5383), - [anon_sym_with] = ACTIONS(5383), + [anon_sym_LBRACK] = ACTIONS(4937), + [anon_sym_COMMA] = ACTIONS(4937), + [anon_sym_LPAREN] = 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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -527065,6 +526492,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3795] = { + [sym__name] = STATE(3151), + [sym_alias_qualified_name] = STATE(3143), + [sym__simple_name] = STATE(3143), + [sym_qualified_name] = STATE(3143), + [sym_generic_name] = STATE(3184), + [sym_type] = STATE(3159), + [sym_implicit_type] = STATE(3146), + [sym_array_type] = STATE(3147), + [sym__array_base_type] = STATE(7165), + [sym_nullable_type] = STATE(3148), + [sym_pointer_type] = STATE(3148), + [sym__pointer_base_type] = STATE(7401), + [sym_function_pointer_type] = STATE(3148), + [sym_ref_type] = STATE(3146), + [sym_scoped_type] = STATE(3146), + [sym_tuple_type] = STATE(3149), + [sym_identifier] = STATE(3119), + [sym__reserved_identifier] = STATE(3120), [sym_preproc_region] = STATE(3795), [sym_preproc_endregion] = STATE(3795), [sym_preproc_line] = STATE(3795), @@ -527074,52 +526519,34 @@ 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(5387), - [anon_sym_COMMA] = ACTIONS(5387), - [anon_sym_LPAREN] = ACTIONS(5387), - [anon_sym_LT] = ACTIONS(5389), - [anon_sym_GT] = ACTIONS(5389), - [anon_sym_where] = ACTIONS(5387), - [anon_sym_QMARK] = ACTIONS(5389), - [anon_sym_BANG] = ACTIONS(5389), - [anon_sym_PLUS_PLUS] = ACTIONS(5387), - [anon_sym_DASH_DASH] = ACTIONS(5387), - [anon_sym_PLUS] = ACTIONS(5389), - [anon_sym_DASH] = ACTIONS(5389), - [anon_sym_STAR] = ACTIONS(5387), - [anon_sym_SLASH] = ACTIONS(5389), - [anon_sym_PERCENT] = ACTIONS(5387), - [anon_sym_CARET] = ACTIONS(5387), - [anon_sym_PIPE] = ACTIONS(5389), - [anon_sym_AMP] = ACTIONS(5389), - [anon_sym_LT_LT] = ACTIONS(5387), - [anon_sym_GT_GT] = ACTIONS(5389), - [anon_sym_GT_GT_GT] = ACTIONS(5387), - [anon_sym_EQ_EQ] = ACTIONS(5387), - [anon_sym_BANG_EQ] = ACTIONS(5387), - [anon_sym_GT_EQ] = ACTIONS(5387), - [anon_sym_LT_EQ] = ACTIONS(5387), - [anon_sym_DOT] = ACTIONS(5389), - [anon_sym_switch] = ACTIONS(5387), - [anon_sym_DOT_DOT] = ACTIONS(5387), - [anon_sym_and] = ACTIONS(5387), - [anon_sym_or] = ACTIONS(5389), - [anon_sym_AMP_AMP] = ACTIONS(5387), - [anon_sym_PIPE_PIPE] = ACTIONS(5387), - [anon_sym_QMARK_QMARK] = ACTIONS(5387), - [anon_sym_from] = ACTIONS(5387), - [anon_sym_into] = ACTIONS(5387), - [anon_sym_join] = ACTIONS(5387), - [anon_sym_let] = ACTIONS(5387), - [anon_sym_orderby] = ACTIONS(5387), - [anon_sym_ascending] = ACTIONS(5387), - [anon_sym_descending] = ACTIONS(5387), - [anon_sym_group] = ACTIONS(5387), - [anon_sym_select] = ACTIONS(5387), - [anon_sym_as] = ACTIONS(5389), - [anon_sym_is] = ACTIONS(5387), - [anon_sym_DASH_GT] = ACTIONS(5387), - [anon_sym_with] = ACTIONS(5387), + [sym__identifier_token] = ACTIONS(3761), + [anon_sym_alias] = ACTIONS(3763), + [anon_sym_global] = ACTIONS(3763), + [anon_sym_LPAREN] = ACTIONS(6133), + [anon_sym_ref] = ACTIONS(4023), + [anon_sym_delegate] = ACTIONS(5622), + [anon_sym_file] = ACTIONS(3763), + [anon_sym_readonly] = ACTIONS(6155), + [anon_sym_where] = ACTIONS(3763), + [anon_sym_notnull] = ACTIONS(3763), + [anon_sym_unmanaged] = ACTIONS(3763), + [anon_sym_scoped] = ACTIONS(5793), + [anon_sym_var] = ACTIONS(5626), + [sym_predefined_type] = ACTIONS(5628), + [anon_sym_yield] = ACTIONS(3763), + [anon_sym_when] = ACTIONS(3763), + [anon_sym_from] = ACTIONS(3763), + [anon_sym_into] = ACTIONS(3763), + [anon_sym_join] = ACTIONS(3763), + [anon_sym_on] = ACTIONS(3763), + [anon_sym_equals] = ACTIONS(3763), + [anon_sym_let] = ACTIONS(3763), + [anon_sym_orderby] = ACTIONS(3763), + [anon_sym_ascending] = ACTIONS(3763), + [anon_sym_descending] = ACTIONS(3763), + [anon_sym_group] = ACTIONS(3763), + [anon_sym_by] = ACTIONS(3763), + [anon_sym_select] = ACTIONS(3763), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -527141,52 +526568,52 @@ 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(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), + [anon_sym_LBRACK] = ACTIONS(5358), + [anon_sym_COMMA] = ACTIONS(5358), + [anon_sym_LPAREN] = ACTIONS(5358), + [anon_sym_LT] = ACTIONS(5360), + [anon_sym_GT] = ACTIONS(5360), + [anon_sym_where] = ACTIONS(5358), + [anon_sym_QMARK] = ACTIONS(5360), + [anon_sym_BANG] = ACTIONS(5360), + [anon_sym_PLUS_PLUS] = ACTIONS(5358), + [anon_sym_DASH_DASH] = ACTIONS(5358), + [anon_sym_PLUS] = ACTIONS(5360), + [anon_sym_DASH] = ACTIONS(5360), + [anon_sym_STAR] = ACTIONS(5358), + [anon_sym_SLASH] = ACTIONS(5360), + [anon_sym_PERCENT] = ACTIONS(5358), + [anon_sym_CARET] = ACTIONS(5358), + [anon_sym_PIPE] = ACTIONS(5360), + [anon_sym_AMP] = ACTIONS(5360), + [anon_sym_LT_LT] = ACTIONS(5358), + [anon_sym_GT_GT] = ACTIONS(5360), + [anon_sym_GT_GT_GT] = ACTIONS(5358), + [anon_sym_EQ_EQ] = ACTIONS(5358), + [anon_sym_BANG_EQ] = ACTIONS(5358), + [anon_sym_GT_EQ] = ACTIONS(5358), + [anon_sym_LT_EQ] = ACTIONS(5358), + [anon_sym_DOT] = ACTIONS(5360), + [anon_sym_switch] = ACTIONS(5358), + [anon_sym_DOT_DOT] = ACTIONS(5358), + [anon_sym_and] = ACTIONS(5358), + [anon_sym_or] = ACTIONS(5360), + [anon_sym_AMP_AMP] = ACTIONS(5358), + [anon_sym_PIPE_PIPE] = ACTIONS(5358), + [anon_sym_QMARK_QMARK] = ACTIONS(5358), + [anon_sym_from] = ACTIONS(5358), + [anon_sym_into] = ACTIONS(5358), + [anon_sym_join] = ACTIONS(5358), + [anon_sym_let] = ACTIONS(5358), + [anon_sym_orderby] = ACTIONS(5358), + [anon_sym_ascending] = ACTIONS(5358), + [anon_sym_descending] = ACTIONS(5358), + [anon_sym_group] = ACTIONS(5358), + [anon_sym_select] = ACTIONS(5358), + [anon_sym_as] = ACTIONS(5360), + [anon_sym_is] = ACTIONS(5358), + [anon_sym_DASH_GT] = ACTIONS(5358), + [anon_sym_with] = ACTIONS(5358), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -527199,6 +526626,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3797] = { + [sym__name] = STATE(3086), + [sym_alias_qualified_name] = STATE(2976), + [sym__simple_name] = STATE(2976), + [sym_qualified_name] = STATE(2976), + [sym_generic_name] = STATE(3030), + [sym_type] = STATE(3039), + [sym_implicit_type] = STATE(2977), + [sym_array_type] = STATE(2978), + [sym__array_base_type] = STATE(7236), + [sym_nullable_type] = STATE(2979), + [sym_pointer_type] = STATE(2979), + [sym__pointer_base_type] = STATE(7622), + [sym_function_pointer_type] = STATE(2979), + [sym_ref_type] = STATE(2977), + [sym_scoped_type] = STATE(2977), + [sym_tuple_type] = STATE(2980), + [sym_identifier] = STATE(2927), + [sym__reserved_identifier] = STATE(2916), [sym_preproc_region] = STATE(3797), [sym_preproc_endregion] = STATE(3797), [sym_preproc_line] = STATE(3797), @@ -527208,52 +526653,34 @@ 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(5415), - [anon_sym_COMMA] = ACTIONS(5415), - [anon_sym_LPAREN] = ACTIONS(5415), - [anon_sym_LT] = ACTIONS(5417), - [anon_sym_GT] = ACTIONS(5417), - [anon_sym_where] = ACTIONS(5415), - [anon_sym_QMARK] = ACTIONS(5417), - [anon_sym_BANG] = ACTIONS(5417), - [anon_sym_PLUS_PLUS] = ACTIONS(5415), - [anon_sym_DASH_DASH] = ACTIONS(5415), - [anon_sym_PLUS] = ACTIONS(5417), - [anon_sym_DASH] = ACTIONS(5417), - [anon_sym_STAR] = ACTIONS(5415), - [anon_sym_SLASH] = ACTIONS(5417), - [anon_sym_PERCENT] = ACTIONS(5415), - [anon_sym_CARET] = ACTIONS(5415), - [anon_sym_PIPE] = ACTIONS(5417), - [anon_sym_AMP] = ACTIONS(5417), - [anon_sym_LT_LT] = ACTIONS(5415), - [anon_sym_GT_GT] = ACTIONS(5417), - [anon_sym_GT_GT_GT] = ACTIONS(5415), - [anon_sym_EQ_EQ] = ACTIONS(5415), - [anon_sym_BANG_EQ] = ACTIONS(5415), - [anon_sym_GT_EQ] = ACTIONS(5415), - [anon_sym_LT_EQ] = ACTIONS(5415), - [anon_sym_DOT] = ACTIONS(5417), - [anon_sym_switch] = ACTIONS(5415), - [anon_sym_DOT_DOT] = ACTIONS(5415), - [anon_sym_and] = ACTIONS(5415), - [anon_sym_or] = ACTIONS(5417), - [anon_sym_AMP_AMP] = ACTIONS(5415), - [anon_sym_PIPE_PIPE] = ACTIONS(5415), - [anon_sym_QMARK_QMARK] = ACTIONS(5415), - [anon_sym_from] = ACTIONS(5415), - [anon_sym_into] = ACTIONS(5415), - [anon_sym_join] = ACTIONS(5415), - [anon_sym_let] = ACTIONS(5415), - [anon_sym_orderby] = ACTIONS(5415), - [anon_sym_ascending] = ACTIONS(5415), - [anon_sym_descending] = ACTIONS(5415), - [anon_sym_group] = ACTIONS(5415), - [anon_sym_select] = ACTIONS(5415), - [anon_sym_as] = ACTIONS(5417), - [anon_sym_is] = ACTIONS(5415), - [anon_sym_DASH_GT] = ACTIONS(5415), - [anon_sym_with] = ACTIONS(5415), + [sym__identifier_token] = ACTIONS(3871), + [anon_sym_alias] = ACTIONS(3873), + [anon_sym_global] = ACTIONS(3873), + [anon_sym_LPAREN] = ACTIONS(6033), + [anon_sym_ref] = ACTIONS(4195), + [anon_sym_delegate] = ACTIONS(4015), + [anon_sym_file] = ACTIONS(3873), + [anon_sym_readonly] = ACTIONS(6157), + [anon_sym_where] = ACTIONS(3873), + [anon_sym_notnull] = ACTIONS(3873), + [anon_sym_unmanaged] = ACTIONS(3873), + [anon_sym_scoped] = ACTIONS(5774), + [anon_sym_var] = ACTIONS(4019), + [sym_predefined_type] = ACTIONS(4021), + [anon_sym_yield] = ACTIONS(3873), + [anon_sym_when] = ACTIONS(3873), + [anon_sym_from] = ACTIONS(3873), + [anon_sym_into] = ACTIONS(3873), + [anon_sym_join] = ACTIONS(3873), + [anon_sym_on] = ACTIONS(3873), + [anon_sym_equals] = ACTIONS(3873), + [anon_sym_let] = ACTIONS(3873), + [anon_sym_orderby] = ACTIONS(3873), + [anon_sym_ascending] = ACTIONS(3873), + [anon_sym_descending] = ACTIONS(3873), + [anon_sym_group] = ACTIONS(3873), + [anon_sym_by] = ACTIONS(3873), + [anon_sym_select] = ACTIONS(3873), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -527266,6 +526693,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3798] = { + [sym__name] = STATE(3086), + [sym_alias_qualified_name] = STATE(2976), + [sym__simple_name] = STATE(2976), + [sym_qualified_name] = STATE(2976), + [sym_generic_name] = STATE(3030), + [sym_type] = STATE(3039), + [sym_implicit_type] = STATE(2977), + [sym_array_type] = STATE(2978), + [sym__array_base_type] = STATE(7236), + [sym_nullable_type] = STATE(2979), + [sym_pointer_type] = STATE(2979), + [sym__pointer_base_type] = STATE(7622), + [sym_function_pointer_type] = STATE(2979), + [sym_ref_type] = STATE(2977), + [sym_scoped_type] = STATE(2977), + [sym_tuple_type] = STATE(2980), + [sym_identifier] = STATE(2927), + [sym__reserved_identifier] = STATE(2916), [sym_preproc_region] = STATE(3798), [sym_preproc_endregion] = STATE(3798), [sym_preproc_line] = STATE(3798), @@ -527275,52 +526720,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), - [anon_sym_LBRACK] = ACTIONS(5423), - [anon_sym_COMMA] = ACTIONS(5423), - [anon_sym_LPAREN] = ACTIONS(5423), - [anon_sym_LT] = ACTIONS(5425), - [anon_sym_GT] = ACTIONS(5425), - [anon_sym_where] = ACTIONS(5423), - [anon_sym_QMARK] = ACTIONS(5425), - [anon_sym_BANG] = ACTIONS(5425), - [anon_sym_PLUS_PLUS] = ACTIONS(5423), - [anon_sym_DASH_DASH] = ACTIONS(5423), - [anon_sym_PLUS] = ACTIONS(5425), - [anon_sym_DASH] = ACTIONS(5425), - [anon_sym_STAR] = ACTIONS(5423), - [anon_sym_SLASH] = ACTIONS(5425), - [anon_sym_PERCENT] = ACTIONS(5423), - [anon_sym_CARET] = ACTIONS(5423), - [anon_sym_PIPE] = ACTIONS(5425), - [anon_sym_AMP] = ACTIONS(5425), - [anon_sym_LT_LT] = ACTIONS(5423), - [anon_sym_GT_GT] = ACTIONS(5425), - [anon_sym_GT_GT_GT] = ACTIONS(5423), - [anon_sym_EQ_EQ] = ACTIONS(5423), - [anon_sym_BANG_EQ] = ACTIONS(5423), - [anon_sym_GT_EQ] = ACTIONS(5423), - [anon_sym_LT_EQ] = ACTIONS(5423), - [anon_sym_DOT] = ACTIONS(5425), - [anon_sym_switch] = ACTIONS(5423), - [anon_sym_DOT_DOT] = ACTIONS(5423), - [anon_sym_and] = ACTIONS(5423), - [anon_sym_or] = ACTIONS(5425), - [anon_sym_AMP_AMP] = ACTIONS(5423), - [anon_sym_PIPE_PIPE] = ACTIONS(5423), - [anon_sym_QMARK_QMARK] = ACTIONS(5423), - [anon_sym_from] = ACTIONS(5423), - [anon_sym_into] = ACTIONS(5423), - [anon_sym_join] = ACTIONS(5423), - [anon_sym_let] = ACTIONS(5423), - [anon_sym_orderby] = ACTIONS(5423), - [anon_sym_ascending] = ACTIONS(5423), - [anon_sym_descending] = ACTIONS(5423), - [anon_sym_group] = ACTIONS(5423), - [anon_sym_select] = ACTIONS(5423), - [anon_sym_as] = ACTIONS(5425), - [anon_sym_is] = ACTIONS(5423), - [anon_sym_DASH_GT] = ACTIONS(5423), - [anon_sym_with] = ACTIONS(5423), + [sym__identifier_token] = ACTIONS(3871), + [anon_sym_alias] = ACTIONS(3873), + [anon_sym_global] = ACTIONS(3873), + [anon_sym_LPAREN] = ACTIONS(6033), + [anon_sym_ref] = ACTIONS(4199), + [anon_sym_delegate] = ACTIONS(4015), + [anon_sym_file] = ACTIONS(3873), + [anon_sym_readonly] = ACTIONS(6159), + [anon_sym_where] = ACTIONS(3873), + [anon_sym_notnull] = ACTIONS(3873), + [anon_sym_unmanaged] = ACTIONS(3873), + [anon_sym_scoped] = ACTIONS(5791), + [anon_sym_var] = ACTIONS(4019), + [sym_predefined_type] = ACTIONS(4021), + [anon_sym_yield] = ACTIONS(3873), + [anon_sym_when] = ACTIONS(3873), + [anon_sym_from] = ACTIONS(3873), + [anon_sym_into] = ACTIONS(3873), + [anon_sym_join] = ACTIONS(3873), + [anon_sym_on] = ACTIONS(3873), + [anon_sym_equals] = ACTIONS(3873), + [anon_sym_let] = ACTIONS(3873), + [anon_sym_orderby] = ACTIONS(3873), + [anon_sym_ascending] = ACTIONS(3873), + [anon_sym_descending] = ACTIONS(3873), + [anon_sym_group] = ACTIONS(3873), + [anon_sym_by] = ACTIONS(3873), + [anon_sym_select] = ACTIONS(3873), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -527333,24 +526760,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3799] = { - [sym__name] = STATE(3534), - [sym_alias_qualified_name] = STATE(2921), - [sym__simple_name] = STATE(2921), - [sym_qualified_name] = STATE(2921), - [sym_generic_name] = STATE(2929), - [sym_type] = STATE(2936), - [sym_implicit_type] = STATE(2935), - [sym_array_type] = STATE(2937), - [sym__array_base_type] = STATE(7122), - [sym_nullable_type] = STATE(2961), - [sym_pointer_type] = STATE(2961), - [sym__pointer_base_type] = STATE(7545), - [sym_function_pointer_type] = STATE(2961), - [sym_ref_type] = STATE(2935), - [sym_scoped_type] = STATE(2935), - [sym_tuple_type] = STATE(2944), - [sym_identifier] = STATE(3260), - [sym__reserved_identifier] = STATE(2904), [sym_preproc_region] = STATE(3799), [sym_preproc_endregion] = STATE(3799), [sym_preproc_line] = STATE(3799), @@ -527360,34 +526769,52 @@ 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(3861), - [anon_sym_alias] = ACTIONS(3863), - [anon_sym_global] = ACTIONS(3863), - [anon_sym_LPAREN] = ACTIONS(6091), - [anon_sym_ref] = ACTIONS(3865), - [anon_sym_delegate] = ACTIONS(5791), - [anon_sym_file] = ACTIONS(3863), - [anon_sym_readonly] = ACTIONS(6097), - [anon_sym_where] = ACTIONS(3863), - [anon_sym_notnull] = ACTIONS(3863), - [anon_sym_unmanaged] = ACTIONS(3863), - [anon_sym_scoped] = ACTIONS(5826), - [anon_sym_var] = ACTIONS(5795), - [sym_predefined_type] = ACTIONS(5797), - [anon_sym_yield] = ACTIONS(3863), - [anon_sym_when] = ACTIONS(3863), - [anon_sym_from] = ACTIONS(3863), - [anon_sym_into] = ACTIONS(3863), - [anon_sym_join] = ACTIONS(3863), - [anon_sym_on] = ACTIONS(3863), - [anon_sym_equals] = ACTIONS(3863), - [anon_sym_let] = ACTIONS(3863), - [anon_sym_orderby] = ACTIONS(3863), - [anon_sym_ascending] = ACTIONS(3863), - [anon_sym_descending] = ACTIONS(3863), - [anon_sym_group] = ACTIONS(3863), - [anon_sym_by] = ACTIONS(3863), - [anon_sym_select] = ACTIONS(3863), + [anon_sym_LBRACK] = ACTIONS(4941), + [anon_sym_COMMA] = ACTIONS(4941), + [anon_sym_LPAREN] = ACTIONS(4941), + [anon_sym_LT] = ACTIONS(4943), + [anon_sym_GT] = ACTIONS(4943), + [anon_sym_where] = ACTIONS(4941), + [anon_sym_QMARK] = ACTIONS(4943), + [anon_sym_BANG] = ACTIONS(4943), + [anon_sym_PLUS_PLUS] = ACTIONS(4941), + [anon_sym_DASH_DASH] = ACTIONS(4941), + [anon_sym_PLUS] = ACTIONS(4943), + [anon_sym_DASH] = ACTIONS(4943), + [anon_sym_STAR] = ACTIONS(4941), + [anon_sym_SLASH] = ACTIONS(4943), + [anon_sym_PERCENT] = ACTIONS(4941), + [anon_sym_CARET] = ACTIONS(4941), + [anon_sym_PIPE] = ACTIONS(4943), + [anon_sym_AMP] = ACTIONS(4943), + [anon_sym_LT_LT] = ACTIONS(4941), + [anon_sym_GT_GT] = ACTIONS(4943), + [anon_sym_GT_GT_GT] = ACTIONS(4941), + [anon_sym_EQ_EQ] = ACTIONS(4941), + [anon_sym_BANG_EQ] = ACTIONS(4941), + [anon_sym_GT_EQ] = ACTIONS(4941), + [anon_sym_LT_EQ] = ACTIONS(4941), + [anon_sym_DOT] = ACTIONS(4943), + [anon_sym_switch] = ACTIONS(4941), + [anon_sym_DOT_DOT] = ACTIONS(4941), + [anon_sym_and] = ACTIONS(4941), + [anon_sym_or] = ACTIONS(4943), + [anon_sym_AMP_AMP] = ACTIONS(4941), + [anon_sym_PIPE_PIPE] = ACTIONS(4941), + [anon_sym_QMARK_QMARK] = ACTIONS(4941), + [anon_sym_from] = ACTIONS(4941), + [anon_sym_into] = ACTIONS(4941), + [anon_sym_join] = ACTIONS(4941), + [anon_sym_let] = ACTIONS(4941), + [anon_sym_orderby] = ACTIONS(4941), + [anon_sym_ascending] = ACTIONS(4941), + [anon_sym_descending] = ACTIONS(4941), + [anon_sym_group] = ACTIONS(4941), + [anon_sym_select] = ACTIONS(4941), + [anon_sym_as] = ACTIONS(4943), + [anon_sym_is] = ACTIONS(4941), + [anon_sym_DASH_GT] = ACTIONS(4941), + [anon_sym_with] = ACTIONS(4941), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -527400,24 +526827,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3800] = { - [sym__name] = STATE(3072), - [sym_alias_qualified_name] = STATE(3029), - [sym__simple_name] = STATE(3029), - [sym_qualified_name] = STATE(3029), - [sym_generic_name] = STATE(2985), - [sym_type] = STATE(3026), - [sym_implicit_type] = STATE(3054), - [sym_array_type] = STATE(2992), - [sym__array_base_type] = STATE(7267), - [sym_nullable_type] = STATE(3012), - [sym_pointer_type] = STATE(3012), - [sym__pointer_base_type] = STATE(7693), - [sym_function_pointer_type] = STATE(3012), - [sym_ref_type] = STATE(3054), - [sym_scoped_type] = STATE(3054), - [sym_tuple_type] = STATE(3058), - [sym_identifier] = STATE(2923), - [sym__reserved_identifier] = STATE(2945), + [sym__name] = STATE(4369), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(4068), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(4073), + [sym_type] = STATE(4565), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_identifier] = STATE(4081), + [sym__reserved_identifier] = STATE(3654), [sym_preproc_region] = STATE(3800), [sym_preproc_endregion] = STATE(3800), [sym_preproc_line] = STATE(3800), @@ -527427,34 +526854,34 @@ 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), - [sym__identifier_token] = ACTIONS(3887), - [anon_sym_alias] = ACTIONS(3889), - [anon_sym_global] = ACTIONS(3889), - [anon_sym_LPAREN] = ACTIONS(6051), - [anon_sym_ref] = ACTIONS(4223), - [anon_sym_delegate] = ACTIONS(4042), - [anon_sym_file] = ACTIONS(3889), - [anon_sym_readonly] = ACTIONS(6099), - [anon_sym_where] = ACTIONS(3889), - [anon_sym_notnull] = ACTIONS(3889), - [anon_sym_unmanaged] = ACTIONS(3889), - [anon_sym_scoped] = ACTIONS(5761), - [anon_sym_var] = ACTIONS(4046), - [sym_predefined_type] = ACTIONS(4048), - [anon_sym_yield] = ACTIONS(3889), - [anon_sym_when] = ACTIONS(3889), - [anon_sym_from] = ACTIONS(3889), - [anon_sym_into] = ACTIONS(3889), - [anon_sym_join] = ACTIONS(3889), - [anon_sym_on] = ACTIONS(3889), - [anon_sym_equals] = ACTIONS(3889), - [anon_sym_let] = ACTIONS(3889), - [anon_sym_orderby] = ACTIONS(3889), - [anon_sym_ascending] = ACTIONS(3889), - [anon_sym_descending] = ACTIONS(3889), - [anon_sym_group] = ACTIONS(3889), - [anon_sym_by] = ACTIONS(3889), - [anon_sym_select] = ACTIONS(3889), + [sym__identifier_token] = ACTIONS(2965), + [anon_sym_alias] = ACTIONS(2969), + [anon_sym_global] = ACTIONS(2969), + [anon_sym_LPAREN] = ACTIONS(2977), + [anon_sym_ref] = ACTIONS(5577), + [anon_sym_delegate] = ACTIONS(3438), + [anon_sym_file] = ACTIONS(2969), + [anon_sym_readonly] = ACTIONS(6161), + [anon_sym_where] = ACTIONS(2969), + [anon_sym_notnull] = ACTIONS(2969), + [anon_sym_unmanaged] = ACTIONS(2969), + [anon_sym_scoped] = ACTIONS(5581), + [anon_sym_var] = ACTIONS(2995), + [sym_predefined_type] = ACTIONS(2997), + [anon_sym_yield] = ACTIONS(2969), + [anon_sym_when] = ACTIONS(2969), + [anon_sym_from] = ACTIONS(2969), + [anon_sym_into] = ACTIONS(2969), + [anon_sym_join] = ACTIONS(2969), + [anon_sym_on] = ACTIONS(2969), + [anon_sym_equals] = ACTIONS(2969), + [anon_sym_let] = ACTIONS(2969), + [anon_sym_orderby] = ACTIONS(2969), + [anon_sym_ascending] = ACTIONS(2969), + [anon_sym_descending] = ACTIONS(2969), + [anon_sym_group] = ACTIONS(2969), + [anon_sym_by] = ACTIONS(2969), + [anon_sym_select] = ACTIONS(2969), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -527467,24 +526894,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3801] = { - [sym__name] = STATE(3534), - [sym_alias_qualified_name] = STATE(2921), - [sym__simple_name] = STATE(2921), - [sym_qualified_name] = STATE(2921), - [sym_generic_name] = STATE(2929), - [sym_type] = STATE(2936), - [sym_implicit_type] = STATE(2935), - [sym_array_type] = STATE(2937), - [sym__array_base_type] = STATE(7122), - [sym_nullable_type] = STATE(2961), - [sym_pointer_type] = STATE(2961), - [sym__pointer_base_type] = STATE(7545), - [sym_function_pointer_type] = STATE(2961), - [sym_ref_type] = STATE(2935), - [sym_scoped_type] = STATE(2935), - [sym_tuple_type] = STATE(2944), - [sym_identifier] = STATE(3260), - [sym__reserved_identifier] = STATE(2904), [sym_preproc_region] = STATE(3801), [sym_preproc_endregion] = STATE(3801), [sym_preproc_line] = STATE(3801), @@ -527494,34 +526903,52 @@ 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(3861), - [anon_sym_alias] = ACTIONS(3863), - [anon_sym_global] = ACTIONS(3863), - [anon_sym_LPAREN] = ACTIONS(6091), - [anon_sym_ref] = ACTIONS(4225), - [anon_sym_delegate] = ACTIONS(5791), - [anon_sym_file] = ACTIONS(3863), - [anon_sym_readonly] = ACTIONS(6101), - [anon_sym_where] = ACTIONS(3863), - [anon_sym_notnull] = ACTIONS(3863), - [anon_sym_unmanaged] = ACTIONS(3863), - [anon_sym_scoped] = ACTIONS(5897), - [anon_sym_var] = ACTIONS(5795), - [sym_predefined_type] = ACTIONS(5797), - [anon_sym_yield] = ACTIONS(3863), - [anon_sym_when] = ACTIONS(3863), - [anon_sym_from] = ACTIONS(3863), - [anon_sym_into] = ACTIONS(3863), - [anon_sym_join] = ACTIONS(3863), - [anon_sym_on] = ACTIONS(3863), - [anon_sym_equals] = ACTIONS(3863), - [anon_sym_let] = ACTIONS(3863), - [anon_sym_orderby] = ACTIONS(3863), - [anon_sym_ascending] = ACTIONS(3863), - [anon_sym_descending] = ACTIONS(3863), - [anon_sym_group] = ACTIONS(3863), - [anon_sym_by] = ACTIONS(3863), - [anon_sym_select] = ACTIONS(3863), + [anon_sym_LBRACK] = ACTIONS(5408), + [anon_sym_COMMA] = ACTIONS(5408), + [anon_sym_LPAREN] = ACTIONS(5408), + [anon_sym_LT] = ACTIONS(5410), + [anon_sym_GT] = ACTIONS(5410), + [anon_sym_where] = ACTIONS(5408), + [anon_sym_QMARK] = ACTIONS(5410), + [anon_sym_BANG] = ACTIONS(5410), + [anon_sym_PLUS_PLUS] = ACTIONS(5408), + [anon_sym_DASH_DASH] = ACTIONS(5408), + [anon_sym_PLUS] = ACTIONS(5410), + [anon_sym_DASH] = ACTIONS(5410), + [anon_sym_STAR] = ACTIONS(5408), + [anon_sym_SLASH] = ACTIONS(5410), + [anon_sym_PERCENT] = ACTIONS(5408), + [anon_sym_CARET] = ACTIONS(5408), + [anon_sym_PIPE] = ACTIONS(5410), + [anon_sym_AMP] = ACTIONS(5410), + [anon_sym_LT_LT] = ACTIONS(5408), + [anon_sym_GT_GT] = ACTIONS(5410), + [anon_sym_GT_GT_GT] = ACTIONS(5408), + [anon_sym_EQ_EQ] = ACTIONS(5408), + [anon_sym_BANG_EQ] = ACTIONS(5408), + [anon_sym_GT_EQ] = ACTIONS(5408), + [anon_sym_LT_EQ] = ACTIONS(5408), + [anon_sym_DOT] = ACTIONS(5410), + [anon_sym_switch] = ACTIONS(5408), + [anon_sym_DOT_DOT] = ACTIONS(5408), + [anon_sym_and] = ACTIONS(5408), + [anon_sym_or] = ACTIONS(5410), + [anon_sym_AMP_AMP] = ACTIONS(5408), + [anon_sym_PIPE_PIPE] = ACTIONS(5408), + [anon_sym_QMARK_QMARK] = ACTIONS(5408), + [anon_sym_from] = ACTIONS(5408), + [anon_sym_into] = ACTIONS(5408), + [anon_sym_join] = ACTIONS(5408), + [anon_sym_let] = ACTIONS(5408), + [anon_sym_orderby] = ACTIONS(5408), + [anon_sym_ascending] = ACTIONS(5408), + [anon_sym_descending] = ACTIONS(5408), + [anon_sym_group] = ACTIONS(5408), + [anon_sym_select] = ACTIONS(5408), + [anon_sym_as] = ACTIONS(5410), + [anon_sym_is] = ACTIONS(5408), + [anon_sym_DASH_GT] = ACTIONS(5408), + [anon_sym_with] = ACTIONS(5408), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -527534,24 +526961,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3802] = { - [sym__name] = STATE(4390), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(4096), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(4109), - [sym_type] = STATE(4632), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_identifier] = STATE(4087), - [sym__reserved_identifier] = STATE(3691), + [sym_argument_list] = STATE(3771), + [sym_bracketed_argument_list] = STATE(2892), [sym_preproc_region] = STATE(3802), [sym_preproc_endregion] = STATE(3802), [sym_preproc_line] = STATE(3802), @@ -527561,34 +526972,50 @@ 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), - [sym__identifier_token] = ACTIONS(2967), - [anon_sym_alias] = ACTIONS(2971), - [anon_sym_global] = ACTIONS(2971), - [anon_sym_LPAREN] = ACTIONS(2979), - [anon_sym_ref] = ACTIONS(6103), - [anon_sym_delegate] = ACTIONS(3454), - [anon_sym_file] = ACTIONS(2971), - [anon_sym_readonly] = ACTIONS(6105), - [anon_sym_where] = ACTIONS(2971), - [anon_sym_notnull] = ACTIONS(2971), - [anon_sym_unmanaged] = ACTIONS(2971), - [anon_sym_scoped] = ACTIONS(6107), - [anon_sym_var] = ACTIONS(4737), - [sym_predefined_type] = ACTIONS(3001), - [anon_sym_yield] = ACTIONS(2971), - [anon_sym_when] = ACTIONS(2971), - [anon_sym_from] = ACTIONS(2971), - [anon_sym_into] = ACTIONS(2971), - [anon_sym_join] = ACTIONS(2971), - [anon_sym_on] = ACTIONS(2971), - [anon_sym_equals] = ACTIONS(2971), - [anon_sym_let] = ACTIONS(2971), - [anon_sym_orderby] = ACTIONS(2971), - [anon_sym_ascending] = ACTIONS(2971), - [anon_sym_descending] = ACTIONS(2971), - [anon_sym_group] = ACTIONS(2971), - [anon_sym_by] = ACTIONS(2971), - [anon_sym_select] = ACTIONS(2971), + [anon_sym_LBRACK] = ACTIONS(5650), + [anon_sym_COMMA] = ACTIONS(5709), + [anon_sym_LPAREN] = ACTIONS(5591), + [anon_sym_LT] = ACTIONS(6043), + [anon_sym_GT] = ACTIONS(6043), + [anon_sym_where] = ACTIONS(5709), + [anon_sym_QMARK] = ACTIONS(6045), + [anon_sym_BANG] = ACTIONS(5658), + [anon_sym_PLUS_PLUS] = ACTIONS(5660), + [anon_sym_DASH_DASH] = ACTIONS(5660), + [anon_sym_PLUS] = ACTIONS(6047), + [anon_sym_DASH] = ACTIONS(6047), + [anon_sym_STAR] = ACTIONS(6049), + [anon_sym_SLASH] = ACTIONS(6051), + [anon_sym_PERCENT] = ACTIONS(6049), + [anon_sym_CARET] = ACTIONS(6053), + [anon_sym_PIPE] = ACTIONS(6055), + [anon_sym_AMP] = ACTIONS(6057), + [anon_sym_LT_LT] = ACTIONS(6059), + [anon_sym_GT_GT] = ACTIONS(6061), + [anon_sym_GT_GT_GT] = ACTIONS(6059), + [anon_sym_EQ_EQ] = ACTIONS(6063), + [anon_sym_BANG_EQ] = ACTIONS(6063), + [anon_sym_GT_EQ] = ACTIONS(6065), + [anon_sym_LT_EQ] = ACTIONS(6065), + [anon_sym_DOT] = ACTIONS(4697), + [anon_sym_switch] = ACTIONS(5682), + [anon_sym_DOT_DOT] = ACTIONS(6067), + [anon_sym_AMP_AMP] = ACTIONS(6069), + [anon_sym_PIPE_PIPE] = ACTIONS(6071), + [anon_sym_QMARK_QMARK] = ACTIONS(6073), + [anon_sym_from] = ACTIONS(5709), + [anon_sym_into] = ACTIONS(5709), + [anon_sym_join] = ACTIONS(5709), + [anon_sym_let] = ACTIONS(5709), + [anon_sym_orderby] = ACTIONS(5709), + [anon_sym_ascending] = ACTIONS(5709), + [anon_sym_descending] = ACTIONS(5709), + [anon_sym_group] = ACTIONS(5709), + [anon_sym_select] = ACTIONS(5709), + [anon_sym_as] = ACTIONS(5694), + [anon_sym_is] = ACTIONS(6075), + [anon_sym_DASH_GT] = ACTIONS(4699), + [anon_sym_with] = ACTIONS(5698), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -527610,52 +527037,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(5391), - [anon_sym_COMMA] = ACTIONS(4271), - [anon_sym_LPAREN] = ACTIONS(5391), - [anon_sym_LT] = ACTIONS(5394), - [anon_sym_GT] = ACTIONS(5394), - [anon_sym_where] = ACTIONS(4271), - [anon_sym_QMARK] = ACTIONS(5394), - [anon_sym_BANG] = ACTIONS(5394), - [anon_sym_PLUS_PLUS] = ACTIONS(5391), - [anon_sym_DASH_DASH] = ACTIONS(5391), - [anon_sym_PLUS] = ACTIONS(5394), - [anon_sym_DASH] = ACTIONS(5394), - [anon_sym_STAR] = ACTIONS(5391), - [anon_sym_SLASH] = ACTIONS(5394), - [anon_sym_PERCENT] = ACTIONS(5391), - [anon_sym_CARET] = ACTIONS(5391), - [anon_sym_PIPE] = ACTIONS(5394), - [anon_sym_AMP] = ACTIONS(5394), - [anon_sym_LT_LT] = ACTIONS(5391), - [anon_sym_GT_GT] = ACTIONS(5394), - [anon_sym_GT_GT_GT] = ACTIONS(5391), - [anon_sym_EQ_EQ] = ACTIONS(5391), - [anon_sym_BANG_EQ] = ACTIONS(5391), - [anon_sym_GT_EQ] = ACTIONS(5391), - [anon_sym_LT_EQ] = ACTIONS(5391), - [anon_sym_DOT] = ACTIONS(5394), - [anon_sym_switch] = ACTIONS(5391), - [anon_sym_DOT_DOT] = ACTIONS(5391), - [anon_sym_and] = ACTIONS(4271), - [anon_sym_or] = ACTIONS(4279), - [anon_sym_AMP_AMP] = ACTIONS(5391), - [anon_sym_PIPE_PIPE] = ACTIONS(5391), - [anon_sym_QMARK_QMARK] = ACTIONS(5391), - [anon_sym_from] = ACTIONS(4271), - [anon_sym_into] = ACTIONS(4271), - [anon_sym_join] = ACTIONS(4271), - [anon_sym_let] = ACTIONS(4271), - [anon_sym_orderby] = ACTIONS(4271), - [anon_sym_ascending] = ACTIONS(4271), - [anon_sym_descending] = ACTIONS(4271), - [anon_sym_group] = ACTIONS(4271), - [anon_sym_select] = ACTIONS(4271), - [anon_sym_as] = ACTIONS(5394), - [anon_sym_is] = ACTIONS(5391), - [anon_sym_DASH_GT] = ACTIONS(5391), - [anon_sym_with] = ACTIONS(5391), + [anon_sym_LBRACK] = ACTIONS(2955), + [anon_sym_COMMA] = ACTIONS(2955), + [anon_sym_LPAREN] = ACTIONS(2955), + [anon_sym_LT] = ACTIONS(2953), + [anon_sym_GT] = ACTIONS(2953), + [anon_sym_where] = ACTIONS(2955), + [anon_sym_QMARK] = ACTIONS(2953), + [anon_sym_BANG] = ACTIONS(2953), + [anon_sym_PLUS_PLUS] = ACTIONS(2955), + [anon_sym_DASH_DASH] = ACTIONS(2955), + [anon_sym_PLUS] = ACTIONS(2953), + [anon_sym_DASH] = ACTIONS(2953), + [anon_sym_STAR] = ACTIONS(2955), + [anon_sym_SLASH] = ACTIONS(2953), + [anon_sym_PERCENT] = ACTIONS(2955), + [anon_sym_CARET] = ACTIONS(2955), + [anon_sym_PIPE] = ACTIONS(2953), + [anon_sym_AMP] = ACTIONS(2953), + [anon_sym_LT_LT] = ACTIONS(2955), + [anon_sym_GT_GT] = ACTIONS(2953), + [anon_sym_GT_GT_GT] = ACTIONS(2955), + [anon_sym_EQ_EQ] = ACTIONS(2955), + [anon_sym_BANG_EQ] = ACTIONS(2955), + [anon_sym_GT_EQ] = ACTIONS(2955), + [anon_sym_LT_EQ] = ACTIONS(2955), + [anon_sym_DOT] = ACTIONS(2953), + [anon_sym_switch] = ACTIONS(2955), + [anon_sym_DOT_DOT] = ACTIONS(2955), + [anon_sym_and] = ACTIONS(2955), + [anon_sym_or] = ACTIONS(2953), + [anon_sym_AMP_AMP] = ACTIONS(2955), + [anon_sym_PIPE_PIPE] = ACTIONS(2955), + [anon_sym_QMARK_QMARK] = ACTIONS(2955), + [anon_sym_from] = ACTIONS(2955), + [anon_sym_into] = ACTIONS(2955), + [anon_sym_join] = ACTIONS(2955), + [anon_sym_let] = ACTIONS(2955), + [anon_sym_orderby] = ACTIONS(2955), + [anon_sym_ascending] = ACTIONS(2955), + [anon_sym_descending] = ACTIONS(2955), + [anon_sym_group] = ACTIONS(2955), + [anon_sym_select] = ACTIONS(2955), + [anon_sym_as] = ACTIONS(2953), + [anon_sym_is] = ACTIONS(2955), + [anon_sym_DASH_GT] = ACTIONS(2955), + [anon_sym_with] = ACTIONS(2955), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -527668,6 +527095,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3804] = { + [sym__name] = STATE(3511), + [sym_alias_qualified_name] = STATE(2907), + [sym__simple_name] = STATE(2907), + [sym_qualified_name] = STATE(2907), + [sym_generic_name] = STATE(2950), + [sym_type] = STATE(2941), + [sym_implicit_type] = STATE(2926), + [sym_array_type] = STATE(2934), + [sym__array_base_type] = STATE(7061), + [sym_nullable_type] = STATE(2942), + [sym_pointer_type] = STATE(2942), + [sym__pointer_base_type] = STATE(7640), + [sym_function_pointer_type] = STATE(2942), + [sym_ref_type] = STATE(2926), + [sym_scoped_type] = STATE(2926), + [sym_tuple_type] = STATE(2943), + [sym_identifier] = STATE(3317), + [sym__reserved_identifier] = STATE(2900), [sym_preproc_region] = STATE(3804), [sym_preproc_endregion] = STATE(3804), [sym_preproc_line] = STATE(3804), @@ -527677,52 +527122,34 @@ 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(5397), - [anon_sym_COMMA] = ACTIONS(4271), - [anon_sym_LPAREN] = ACTIONS(5397), - [anon_sym_LT] = ACTIONS(5400), - [anon_sym_GT] = ACTIONS(5400), - [anon_sym_where] = ACTIONS(4271), - [anon_sym_QMARK] = ACTIONS(5400), - [anon_sym_BANG] = ACTIONS(5400), - [anon_sym_PLUS_PLUS] = ACTIONS(5397), - [anon_sym_DASH_DASH] = ACTIONS(5397), - [anon_sym_PLUS] = ACTIONS(5400), - [anon_sym_DASH] = ACTIONS(5400), - [anon_sym_STAR] = ACTIONS(5397), - [anon_sym_SLASH] = ACTIONS(5400), - [anon_sym_PERCENT] = ACTIONS(5397), - [anon_sym_CARET] = ACTIONS(5397), - [anon_sym_PIPE] = ACTIONS(5400), - [anon_sym_AMP] = ACTIONS(5400), - [anon_sym_LT_LT] = ACTIONS(5397), - [anon_sym_GT_GT] = ACTIONS(5400), - [anon_sym_GT_GT_GT] = ACTIONS(5397), - [anon_sym_EQ_EQ] = ACTIONS(5397), - [anon_sym_BANG_EQ] = ACTIONS(5397), - [anon_sym_GT_EQ] = ACTIONS(5397), - [anon_sym_LT_EQ] = ACTIONS(5397), - [anon_sym_DOT] = ACTIONS(5400), - [anon_sym_switch] = ACTIONS(5397), - [anon_sym_DOT_DOT] = ACTIONS(5397), - [anon_sym_and] = ACTIONS(4271), - [anon_sym_or] = ACTIONS(4279), - [anon_sym_AMP_AMP] = ACTIONS(5397), - [anon_sym_PIPE_PIPE] = ACTIONS(5397), - [anon_sym_QMARK_QMARK] = ACTIONS(5397), - [anon_sym_from] = ACTIONS(4271), - [anon_sym_into] = ACTIONS(4271), - [anon_sym_join] = ACTIONS(4271), - [anon_sym_let] = ACTIONS(4271), - [anon_sym_orderby] = ACTIONS(4271), - [anon_sym_ascending] = ACTIONS(4271), - [anon_sym_descending] = ACTIONS(4271), - [anon_sym_group] = ACTIONS(4271), - [anon_sym_select] = ACTIONS(4271), - [anon_sym_as] = ACTIONS(5400), - [anon_sym_is] = ACTIONS(5397), - [anon_sym_DASH_GT] = ACTIONS(5397), - [anon_sym_with] = ACTIONS(5397), + [sym__identifier_token] = ACTIONS(3814), + [anon_sym_alias] = ACTIONS(3816), + [anon_sym_global] = ACTIONS(3816), + [anon_sym_LPAREN] = ACTIONS(6123), + [anon_sym_ref] = ACTIONS(4185), + [anon_sym_delegate] = ACTIONS(5719), + [anon_sym_file] = ACTIONS(3816), + [anon_sym_readonly] = ACTIONS(6163), + [anon_sym_where] = ACTIONS(3816), + [anon_sym_notnull] = ACTIONS(3816), + [anon_sym_unmanaged] = ACTIONS(3816), + [anon_sym_scoped] = ACTIONS(5847), + [anon_sym_var] = ACTIONS(5723), + [sym_predefined_type] = ACTIONS(5725), + [anon_sym_yield] = ACTIONS(3816), + [anon_sym_when] = ACTIONS(3816), + [anon_sym_from] = ACTIONS(3816), + [anon_sym_into] = ACTIONS(3816), + [anon_sym_join] = ACTIONS(3816), + [anon_sym_on] = ACTIONS(3816), + [anon_sym_equals] = ACTIONS(3816), + [anon_sym_let] = ACTIONS(3816), + [anon_sym_orderby] = ACTIONS(3816), + [anon_sym_ascending] = ACTIONS(3816), + [anon_sym_descending] = ACTIONS(3816), + [anon_sym_group] = ACTIONS(3816), + [anon_sym_by] = ACTIONS(3816), + [anon_sym_select] = ACTIONS(3816), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -527735,24 +527162,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3805] = { - [sym__name] = STATE(2771), - [sym_alias_qualified_name] = STATE(2764), - [sym__simple_name] = STATE(2764), - [sym_qualified_name] = STATE(2764), - [sym_generic_name] = STATE(2722), - [sym_type] = STATE(2819), - [sym_implicit_type] = STATE(2791), - [sym_array_type] = STATE(2767), - [sym__array_base_type] = STATE(7243), - [sym_nullable_type] = STATE(2768), - [sym_pointer_type] = STATE(2768), - [sym__pointer_base_type] = STATE(7717), - [sym_function_pointer_type] = STATE(2768), - [sym_ref_type] = STATE(2791), - [sym_scoped_type] = STATE(2791), - [sym_tuple_type] = STATE(2769), - [sym_identifier] = STATE(2581), - [sym__reserved_identifier] = STATE(2627), + [sym__name] = STATE(2411), + [sym_alias_qualified_name] = STATE(2402), + [sym__simple_name] = STATE(2402), + [sym_qualified_name] = STATE(2402), + [sym_generic_name] = STATE(2384), + [sym_type] = STATE(2397), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(2373), + [sym__array_base_type] = STATE(7083), + [sym_nullable_type] = STATE(2375), + [sym_pointer_type] = STATE(2375), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(2375), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(2377), + [sym_identifier] = STATE(2351), + [sym__reserved_identifier] = STATE(2354), [sym_preproc_region] = STATE(3805), [sym_preproc_endregion] = STATE(3805), [sym_preproc_line] = STATE(3805), @@ -527762,34 +527189,34 @@ 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(6109), - [anon_sym_alias] = ACTIONS(6111), - [anon_sym_global] = ACTIONS(6111), - [anon_sym_LPAREN] = ACTIONS(6113), - [anon_sym_ref] = ACTIONS(3648), - [anon_sym_delegate] = ACTIONS(6115), - [anon_sym_file] = ACTIONS(6111), - [anon_sym_readonly] = ACTIONS(2899), - [anon_sym_where] = ACTIONS(6111), - [anon_sym_notnull] = ACTIONS(6111), - [anon_sym_unmanaged] = ACTIONS(6111), - [anon_sym_scoped] = ACTIONS(6117), - [anon_sym_var] = ACTIONS(6119), - [sym_predefined_type] = ACTIONS(6121), - [anon_sym_yield] = ACTIONS(6111), - [anon_sym_when] = ACTIONS(6111), - [anon_sym_from] = ACTIONS(6111), - [anon_sym_into] = ACTIONS(6111), - [anon_sym_join] = ACTIONS(6111), - [anon_sym_on] = ACTIONS(6111), - [anon_sym_equals] = ACTIONS(6111), - [anon_sym_let] = ACTIONS(6111), - [anon_sym_orderby] = ACTIONS(6111), - [anon_sym_ascending] = ACTIONS(6111), - [anon_sym_descending] = ACTIONS(6111), - [anon_sym_group] = ACTIONS(6111), - [anon_sym_by] = ACTIONS(6111), - [anon_sym_select] = ACTIONS(6111), + [sym__identifier_token] = ACTIONS(4080), + [anon_sym_alias] = ACTIONS(4082), + [anon_sym_global] = ACTIONS(4082), + [anon_sym_LPAREN] = ACTIONS(6111), + [anon_sym_ref] = ACTIONS(4086), + [anon_sym_delegate] = ACTIONS(3438), + [anon_sym_file] = ACTIONS(4082), + [anon_sym_readonly] = ACTIONS(6165), + [anon_sym_where] = ACTIONS(4082), + [anon_sym_notnull] = ACTIONS(4082), + [anon_sym_unmanaged] = ACTIONS(4082), + [anon_sym_scoped] = ACTIONS(5845), + [anon_sym_var] = ACTIONS(5817), + [sym_predefined_type] = ACTIONS(5819), + [anon_sym_yield] = ACTIONS(4082), + [anon_sym_when] = ACTIONS(4082), + [anon_sym_from] = ACTIONS(4082), + [anon_sym_into] = ACTIONS(4082), + [anon_sym_join] = ACTIONS(4082), + [anon_sym_on] = ACTIONS(4082), + [anon_sym_equals] = ACTIONS(4082), + [anon_sym_let] = ACTIONS(4082), + [anon_sym_orderby] = ACTIONS(4082), + [anon_sym_ascending] = ACTIONS(4082), + [anon_sym_descending] = ACTIONS(4082), + [anon_sym_group] = ACTIONS(4082), + [anon_sym_by] = ACTIONS(4082), + [anon_sym_select] = ACTIONS(4082), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -527802,8 +527229,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3806] = { - [sym_argument_list] = STATE(3259), - [sym_bracketed_argument_list] = STATE(2613), [sym_preproc_region] = STATE(3806), [sym_preproc_endregion] = STATE(3806), [sym_preproc_line] = STATE(3806), @@ -527813,50 +527238,52 @@ 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_SEMI] = ACTIONS(5745), - [anon_sym_LBRACK] = ACTIONS(5283), - [anon_sym_COMMA] = ACTIONS(5745), - [anon_sym_RBRACK] = ACTIONS(5745), - [anon_sym_LPAREN] = ACTIONS(5247), - [anon_sym_RPAREN] = ACTIONS(5745), - [anon_sym_RBRACE] = ACTIONS(5745), - [anon_sym_LT] = ACTIONS(6123), - [anon_sym_GT] = ACTIONS(6123), - [anon_sym_QMARK] = ACTIONS(6125), - [anon_sym_BANG] = ACTIONS(5285), - [anon_sym_PLUS_PLUS] = ACTIONS(5287), - [anon_sym_DASH_DASH] = ACTIONS(5287), - [anon_sym_PLUS] = ACTIONS(6127), - [anon_sym_DASH] = ACTIONS(6127), - [anon_sym_STAR] = ACTIONS(6129), - [anon_sym_SLASH] = ACTIONS(6131), - [anon_sym_PERCENT] = ACTIONS(6129), - [anon_sym_CARET] = ACTIONS(6133), - [anon_sym_PIPE] = ACTIONS(6135), - [anon_sym_AMP] = ACTIONS(6137), - [anon_sym_LT_LT] = ACTIONS(6139), - [anon_sym_GT_GT] = ACTIONS(6141), - [anon_sym_GT_GT_GT] = ACTIONS(6139), - [anon_sym_EQ_EQ] = ACTIONS(6143), - [anon_sym_BANG_EQ] = ACTIONS(6143), - [anon_sym_GT_EQ] = ACTIONS(6145), - [anon_sym_LT_EQ] = ACTIONS(6145), - [anon_sym_DOT] = ACTIONS(4075), - [anon_sym_switch] = ACTIONS(6147), - [anon_sym_DOT_DOT] = ACTIONS(6149), - [anon_sym_and] = ACTIONS(5745), - [anon_sym_or] = ACTIONS(5745), - [anon_sym_AMP_AMP] = ACTIONS(6151), - [anon_sym_PIPE_PIPE] = ACTIONS(6153), - [anon_sym_QMARK_QMARK] = ACTIONS(6155), - [anon_sym_into] = ACTIONS(5745), - [anon_sym_as] = ACTIONS(6157), - [anon_sym_is] = ACTIONS(6159), - [anon_sym_DASH_GT] = ACTIONS(4077), - [anon_sym_with] = ACTIONS(6161), - [aux_sym_preproc_if_token3] = ACTIONS(5745), - [aux_sym_preproc_else_token1] = ACTIONS(5745), - [aux_sym_preproc_elif_token1] = ACTIONS(5745), + [anon_sym_LBRACK] = ACTIONS(4945), + [anon_sym_COMMA] = ACTIONS(4945), + [anon_sym_LPAREN] = ACTIONS(4945), + [anon_sym_LT] = ACTIONS(4947), + [anon_sym_GT] = ACTIONS(4947), + [anon_sym_where] = ACTIONS(4945), + [anon_sym_QMARK] = ACTIONS(4947), + [anon_sym_BANG] = ACTIONS(4947), + [anon_sym_PLUS_PLUS] = ACTIONS(4945), + [anon_sym_DASH_DASH] = ACTIONS(4945), + [anon_sym_PLUS] = ACTIONS(4947), + [anon_sym_DASH] = ACTIONS(4947), + [anon_sym_STAR] = ACTIONS(4945), + [anon_sym_SLASH] = ACTIONS(4947), + [anon_sym_PERCENT] = ACTIONS(4945), + [anon_sym_CARET] = ACTIONS(4945), + [anon_sym_PIPE] = ACTIONS(4947), + [anon_sym_AMP] = ACTIONS(4947), + [anon_sym_LT_LT] = ACTIONS(4945), + [anon_sym_GT_GT] = ACTIONS(4947), + [anon_sym_GT_GT_GT] = ACTIONS(4945), + [anon_sym_EQ_EQ] = ACTIONS(4945), + [anon_sym_BANG_EQ] = ACTIONS(4945), + [anon_sym_GT_EQ] = ACTIONS(4945), + [anon_sym_LT_EQ] = ACTIONS(4945), + [anon_sym_DOT] = ACTIONS(4947), + [anon_sym_switch] = ACTIONS(4945), + [anon_sym_DOT_DOT] = ACTIONS(4945), + [anon_sym_and] = ACTIONS(4945), + [anon_sym_or] = ACTIONS(4947), + [anon_sym_AMP_AMP] = ACTIONS(4945), + [anon_sym_PIPE_PIPE] = ACTIONS(4945), + [anon_sym_QMARK_QMARK] = ACTIONS(4945), + [anon_sym_from] = ACTIONS(4945), + [anon_sym_into] = ACTIONS(4945), + [anon_sym_join] = ACTIONS(4945), + [anon_sym_let] = ACTIONS(4945), + [anon_sym_orderby] = ACTIONS(4945), + [anon_sym_ascending] = ACTIONS(4945), + [anon_sym_descending] = ACTIONS(4945), + [anon_sym_group] = ACTIONS(4945), + [anon_sym_select] = ACTIONS(4945), + [anon_sym_as] = ACTIONS(4947), + [anon_sym_is] = ACTIONS(4945), + [anon_sym_DASH_GT] = ACTIONS(4945), + [anon_sym_with] = ACTIONS(4945), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -527878,52 +527305,52 @@ 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(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(5120), + [anon_sym_COMMA] = ACTIONS(5120), + [anon_sym_LPAREN] = ACTIONS(5120), + [anon_sym_LT] = ACTIONS(5122), + [anon_sym_GT] = ACTIONS(5122), + [anon_sym_where] = ACTIONS(5120), + [anon_sym_QMARK] = ACTIONS(5122), + [anon_sym_BANG] = ACTIONS(5122), + [anon_sym_PLUS_PLUS] = ACTIONS(5120), + [anon_sym_DASH_DASH] = ACTIONS(5120), + [anon_sym_PLUS] = ACTIONS(5122), + [anon_sym_DASH] = ACTIONS(5122), + [anon_sym_STAR] = ACTIONS(5120), + [anon_sym_SLASH] = ACTIONS(5122), + [anon_sym_PERCENT] = ACTIONS(5120), + [anon_sym_CARET] = ACTIONS(5120), + [anon_sym_PIPE] = ACTIONS(5122), + [anon_sym_AMP] = ACTIONS(5122), + [anon_sym_LT_LT] = ACTIONS(5120), + [anon_sym_GT_GT] = ACTIONS(5122), + [anon_sym_GT_GT_GT] = ACTIONS(5120), + [anon_sym_EQ_EQ] = ACTIONS(5120), + [anon_sym_BANG_EQ] = ACTIONS(5120), + [anon_sym_GT_EQ] = ACTIONS(5120), + [anon_sym_LT_EQ] = ACTIONS(5120), + [anon_sym_DOT] = ACTIONS(5122), + [anon_sym_switch] = ACTIONS(5120), + [anon_sym_DOT_DOT] = ACTIONS(5120), + [anon_sym_and] = ACTIONS(5120), + [anon_sym_or] = ACTIONS(5122), + [anon_sym_AMP_AMP] = ACTIONS(5120), + [anon_sym_PIPE_PIPE] = ACTIONS(5120), + [anon_sym_QMARK_QMARK] = ACTIONS(5120), + [anon_sym_from] = ACTIONS(5120), + [anon_sym_into] = ACTIONS(5120), + [anon_sym_join] = ACTIONS(5120), + [anon_sym_let] = ACTIONS(5120), + [anon_sym_orderby] = ACTIONS(5120), + [anon_sym_ascending] = ACTIONS(5120), + [anon_sym_descending] = ACTIONS(5120), + [anon_sym_group] = ACTIONS(5120), + [anon_sym_select] = ACTIONS(5120), + [anon_sym_as] = ACTIONS(5122), + [anon_sym_is] = ACTIONS(5120), + [anon_sym_DASH_GT] = ACTIONS(5120), + [anon_sym_with] = ACTIONS(5120), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -527936,24 +527363,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3808] = { - [sym__name] = STATE(6284), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(4096), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(4109), - [sym_type] = STATE(4632), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_identifier] = STATE(6260), - [sym__reserved_identifier] = STATE(3691), [sym_preproc_region] = STATE(3808), [sym_preproc_endregion] = STATE(3808), [sym_preproc_line] = STATE(3808), @@ -527963,34 +527372,52 @@ 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), - [sym__identifier_token] = ACTIONS(2967), - [anon_sym_alias] = ACTIONS(2971), - [anon_sym_global] = ACTIONS(2971), - [anon_sym_LPAREN] = ACTIONS(2979), - [anon_sym_ref] = ACTIONS(6163), - [anon_sym_delegate] = ACTIONS(3454), - [anon_sym_file] = ACTIONS(2971), - [anon_sym_readonly] = ACTIONS(6165), - [anon_sym_where] = ACTIONS(2971), - [anon_sym_notnull] = ACTIONS(2971), - [anon_sym_unmanaged] = ACTIONS(2971), - [anon_sym_scoped] = ACTIONS(6167), - [anon_sym_var] = ACTIONS(6169), - [sym_predefined_type] = ACTIONS(3001), - [anon_sym_yield] = ACTIONS(2971), - [anon_sym_when] = ACTIONS(2971), - [anon_sym_from] = ACTIONS(2971), - [anon_sym_into] = ACTIONS(2971), - [anon_sym_join] = ACTIONS(2971), - [anon_sym_on] = ACTIONS(2971), - [anon_sym_equals] = ACTIONS(2971), - [anon_sym_let] = ACTIONS(2971), - [anon_sym_orderby] = ACTIONS(2971), - [anon_sym_ascending] = ACTIONS(2971), - [anon_sym_descending] = ACTIONS(2971), - [anon_sym_group] = ACTIONS(2971), - [anon_sym_by] = ACTIONS(2971), - [anon_sym_select] = ACTIONS(2971), + [anon_sym_LBRACK] = ACTIONS(4921), + [anon_sym_COMMA] = ACTIONS(4921), + [anon_sym_LPAREN] = ACTIONS(4921), + [anon_sym_LT] = ACTIONS(4923), + [anon_sym_GT] = ACTIONS(4923), + [anon_sym_where] = ACTIONS(4921), + [anon_sym_QMARK] = ACTIONS(4923), + [anon_sym_BANG] = ACTIONS(4923), + [anon_sym_PLUS_PLUS] = ACTIONS(4921), + [anon_sym_DASH_DASH] = ACTIONS(4921), + [anon_sym_PLUS] = ACTIONS(4923), + [anon_sym_DASH] = ACTIONS(4923), + [anon_sym_STAR] = ACTIONS(4921), + [anon_sym_SLASH] = ACTIONS(4923), + [anon_sym_PERCENT] = ACTIONS(4921), + [anon_sym_CARET] = ACTIONS(4921), + [anon_sym_PIPE] = ACTIONS(4923), + [anon_sym_AMP] = ACTIONS(4923), + [anon_sym_LT_LT] = ACTIONS(4921), + [anon_sym_GT_GT] = ACTIONS(4923), + [anon_sym_GT_GT_GT] = ACTIONS(4921), + [anon_sym_EQ_EQ] = ACTIONS(4921), + [anon_sym_BANG_EQ] = ACTIONS(4921), + [anon_sym_GT_EQ] = ACTIONS(4921), + [anon_sym_LT_EQ] = ACTIONS(4921), + [anon_sym_DOT] = ACTIONS(4923), + [anon_sym_switch] = ACTIONS(4921), + [anon_sym_DOT_DOT] = ACTIONS(4921), + [anon_sym_and] = ACTIONS(4921), + [anon_sym_or] = ACTIONS(4923), + [anon_sym_AMP_AMP] = ACTIONS(4921), + [anon_sym_PIPE_PIPE] = ACTIONS(4921), + [anon_sym_QMARK_QMARK] = ACTIONS(4921), + [anon_sym_from] = ACTIONS(4921), + [anon_sym_into] = ACTIONS(4921), + [anon_sym_join] = ACTIONS(4921), + [anon_sym_let] = ACTIONS(4921), + [anon_sym_orderby] = ACTIONS(4921), + [anon_sym_ascending] = ACTIONS(4921), + [anon_sym_descending] = ACTIONS(4921), + [anon_sym_group] = ACTIONS(4921), + [anon_sym_select] = ACTIONS(4921), + [anon_sym_as] = ACTIONS(4923), + [anon_sym_is] = ACTIONS(4921), + [anon_sym_DASH_GT] = ACTIONS(4921), + [anon_sym_with] = ACTIONS(4921), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -528003,25 +527430,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3809] = { - [sym_variable_declaration] = STATE(7718), - [sym__name] = STATE(4390), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(4096), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(4109), - [sym_type] = STATE(5720), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_identifier] = STATE(4087), - [sym__reserved_identifier] = STATE(3691), + [sym__name] = STATE(3488), + [sym_alias_qualified_name] = STATE(3304), + [sym__simple_name] = STATE(3304), + [sym_qualified_name] = STATE(3304), + [sym_generic_name] = STATE(3241), + [sym_type] = STATE(3223), + [sym_implicit_type] = STATE(3222), + [sym_array_type] = STATE(3229), + [sym__array_base_type] = STATE(7208), + [sym_nullable_type] = STATE(3216), + [sym_pointer_type] = STATE(3216), + [sym__pointer_base_type] = STATE(7508), + [sym_function_pointer_type] = STATE(3216), + [sym_ref_type] = STATE(3222), + [sym_scoped_type] = STATE(3222), + [sym_tuple_type] = STATE(3308), + [sym_identifier] = STATE(3177), + [sym__reserved_identifier] = STATE(3205), [sym_preproc_region] = STATE(3809), [sym_preproc_endregion] = STATE(3809), [sym_preproc_line] = STATE(3809), @@ -528031,33 +527457,34 @@ 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), - [sym__identifier_token] = ACTIONS(2967), - [anon_sym_alias] = ACTIONS(2971), - [anon_sym_global] = ACTIONS(2971), - [anon_sym_LPAREN] = ACTIONS(2979), - [anon_sym_ref] = ACTIONS(3452), - [anon_sym_delegate] = ACTIONS(3454), - [anon_sym_file] = ACTIONS(2971), - [anon_sym_where] = ACTIONS(2971), - [anon_sym_notnull] = ACTIONS(2971), - [anon_sym_unmanaged] = ACTIONS(2971), - [anon_sym_scoped] = ACTIONS(2997), - [anon_sym_var] = ACTIONS(2999), - [sym_predefined_type] = ACTIONS(3001), - [anon_sym_yield] = ACTIONS(2971), - [anon_sym_when] = ACTIONS(2971), - [anon_sym_from] = ACTIONS(2971), - [anon_sym_into] = ACTIONS(2971), - [anon_sym_join] = ACTIONS(2971), - [anon_sym_on] = ACTIONS(2971), - [anon_sym_equals] = ACTIONS(2971), - [anon_sym_let] = ACTIONS(2971), - [anon_sym_orderby] = ACTIONS(2971), - [anon_sym_ascending] = ACTIONS(2971), - [anon_sym_descending] = ACTIONS(2971), - [anon_sym_group] = ACTIONS(2971), - [anon_sym_by] = ACTIONS(2971), - [anon_sym_select] = ACTIONS(2971), + [sym__identifier_token] = ACTIONS(3798), + [anon_sym_alias] = ACTIONS(3800), + [anon_sym_global] = ACTIONS(3800), + [anon_sym_LPAREN] = ACTIONS(6101), + [anon_sym_ref] = ACTIONS(4025), + [anon_sym_delegate] = ACTIONS(5638), + [anon_sym_file] = ACTIONS(3800), + [anon_sym_readonly] = ACTIONS(6167), + [anon_sym_where] = ACTIONS(3800), + [anon_sym_notnull] = ACTIONS(3800), + [anon_sym_unmanaged] = ACTIONS(3800), + [anon_sym_scoped] = ACTIONS(5825), + [anon_sym_var] = ACTIONS(5642), + [sym_predefined_type] = ACTIONS(5644), + [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), @@ -528070,24 +527497,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3810] = { - [sym__name] = STATE(3219), - [sym_alias_qualified_name] = STATE(3200), - [sym__simple_name] = STATE(3200), - [sym_qualified_name] = STATE(3200), - [sym_generic_name] = STATE(3156), - [sym_type] = STATE(3164), - [sym_implicit_type] = STATE(3205), - [sym_array_type] = STATE(3206), - [sym__array_base_type] = STATE(7259), - [sym_nullable_type] = STATE(3151), - [sym_pointer_type] = STATE(3151), - [sym__pointer_base_type] = STATE(7662), - [sym_function_pointer_type] = STATE(3151), - [sym_ref_type] = STATE(3205), - [sym_scoped_type] = STATE(3205), - [sym_tuple_type] = STATE(3209), - [sym_identifier] = STATE(3129), - [sym__reserved_identifier] = STATE(3149), [sym_preproc_region] = STATE(3810), [sym_preproc_endregion] = STATE(3810), [sym_preproc_line] = STATE(3810), @@ -528097,34 +527506,52 @@ 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(3773), - [anon_sym_alias] = ACTIONS(3775), - [anon_sym_global] = ACTIONS(3775), - [anon_sym_LPAREN] = ACTIONS(6171), - [anon_sym_ref] = ACTIONS(3777), - [anon_sym_delegate] = ACTIONS(5706), - [anon_sym_file] = ACTIONS(3775), - [anon_sym_readonly] = ACTIONS(6173), - [anon_sym_where] = ACTIONS(3775), - [anon_sym_notnull] = ACTIONS(3775), - [anon_sym_unmanaged] = ACTIONS(3775), - [anon_sym_scoped] = ACTIONS(5888), - [anon_sym_var] = ACTIONS(5710), - [sym_predefined_type] = ACTIONS(5712), - [anon_sym_yield] = ACTIONS(3775), - [anon_sym_when] = ACTIONS(3775), - [anon_sym_from] = ACTIONS(3775), - [anon_sym_into] = ACTIONS(3775), - [anon_sym_join] = ACTIONS(3775), - [anon_sym_on] = ACTIONS(3775), - [anon_sym_equals] = ACTIONS(3775), - [anon_sym_let] = ACTIONS(3775), - [anon_sym_orderby] = ACTIONS(3775), - [anon_sym_ascending] = ACTIONS(3775), - [anon_sym_descending] = ACTIONS(3775), - [anon_sym_group] = ACTIONS(3775), - [anon_sym_by] = ACTIONS(3775), - [anon_sym_select] = ACTIONS(3775), + [anon_sym_LBRACK] = ACTIONS(4226), + [anon_sym_COMMA] = ACTIONS(4226), + [anon_sym_LPAREN] = ACTIONS(4226), + [anon_sym_LT] = ACTIONS(4228), + [anon_sym_GT] = ACTIONS(4228), + [anon_sym_where] = ACTIONS(4226), + [anon_sym_QMARK] = ACTIONS(4228), + [anon_sym_BANG] = ACTIONS(4228), + [anon_sym_PLUS_PLUS] = ACTIONS(4226), + [anon_sym_DASH_DASH] = ACTIONS(4226), + [anon_sym_PLUS] = ACTIONS(4228), + [anon_sym_DASH] = ACTIONS(4228), + [anon_sym_STAR] = ACTIONS(4226), + [anon_sym_SLASH] = ACTIONS(4228), + [anon_sym_PERCENT] = ACTIONS(4226), + [anon_sym_CARET] = ACTIONS(4226), + [anon_sym_PIPE] = ACTIONS(4228), + [anon_sym_AMP] = ACTIONS(4228), + [anon_sym_LT_LT] = ACTIONS(4226), + [anon_sym_GT_GT] = ACTIONS(4228), + [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(4228), + [anon_sym_switch] = ACTIONS(4226), + [anon_sym_DOT_DOT] = ACTIONS(4226), + [anon_sym_and] = ACTIONS(4226), + [anon_sym_or] = ACTIONS(4228), + [anon_sym_AMP_AMP] = ACTIONS(4226), + [anon_sym_PIPE_PIPE] = ACTIONS(4226), + [anon_sym_QMARK_QMARK] = ACTIONS(4226), + [anon_sym_from] = ACTIONS(4226), + [anon_sym_into] = ACTIONS(4226), + [anon_sym_join] = ACTIONS(4226), + [anon_sym_let] = ACTIONS(4226), + [anon_sym_orderby] = ACTIONS(4226), + [anon_sym_ascending] = ACTIONS(4226), + [anon_sym_descending] = ACTIONS(4226), + [anon_sym_group] = ACTIONS(4226), + [anon_sym_select] = ACTIONS(4226), + [anon_sym_as] = ACTIONS(4228), + [anon_sym_is] = ACTIONS(4226), + [anon_sym_DASH_GT] = ACTIONS(4226), + [anon_sym_with] = ACTIONS(4226), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -528137,8 +527564,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3811] = { - [sym_argument_list] = STATE(3259), - [sym_bracketed_argument_list] = STATE(2613), [sym_preproc_region] = STATE(3811), [sym_preproc_endregion] = STATE(3811), [sym_preproc_line] = STATE(3811), @@ -528148,50 +527573,52 @@ 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(5767), - [anon_sym_LBRACK] = ACTIONS(5283), - [anon_sym_COMMA] = ACTIONS(5767), - [anon_sym_RBRACK] = ACTIONS(5767), - [anon_sym_LPAREN] = ACTIONS(5247), - [anon_sym_RPAREN] = ACTIONS(5767), - [anon_sym_RBRACE] = ACTIONS(5767), - [anon_sym_LT] = ACTIONS(6123), - [anon_sym_GT] = ACTIONS(6123), - [anon_sym_QMARK] = ACTIONS(6125), - [anon_sym_BANG] = ACTIONS(5285), - [anon_sym_PLUS_PLUS] = ACTIONS(5287), - [anon_sym_DASH_DASH] = ACTIONS(5287), - [anon_sym_PLUS] = ACTIONS(6127), - [anon_sym_DASH] = ACTIONS(6127), - [anon_sym_STAR] = ACTIONS(6129), - [anon_sym_SLASH] = ACTIONS(6131), - [anon_sym_PERCENT] = ACTIONS(6129), - [anon_sym_CARET] = ACTIONS(6133), - [anon_sym_PIPE] = ACTIONS(6135), - [anon_sym_AMP] = ACTIONS(6137), - [anon_sym_LT_LT] = ACTIONS(6139), - [anon_sym_GT_GT] = ACTIONS(6141), - [anon_sym_GT_GT_GT] = ACTIONS(6139), - [anon_sym_EQ_EQ] = ACTIONS(6143), - [anon_sym_BANG_EQ] = ACTIONS(6143), - [anon_sym_GT_EQ] = ACTIONS(6145), - [anon_sym_LT_EQ] = ACTIONS(6145), - [anon_sym_DOT] = ACTIONS(4075), - [anon_sym_switch] = ACTIONS(6147), - [anon_sym_DOT_DOT] = ACTIONS(6149), - [anon_sym_and] = ACTIONS(5767), - [anon_sym_or] = ACTIONS(5767), - [anon_sym_AMP_AMP] = ACTIONS(6151), - [anon_sym_PIPE_PIPE] = ACTIONS(6153), - [anon_sym_QMARK_QMARK] = ACTIONS(6155), - [anon_sym_into] = ACTIONS(5767), - [anon_sym_as] = ACTIONS(6157), - [anon_sym_is] = ACTIONS(6159), - [anon_sym_DASH_GT] = ACTIONS(4077), - [anon_sym_with] = ACTIONS(6161), - [aux_sym_preproc_if_token3] = ACTIONS(5767), - [aux_sym_preproc_else_token1] = ACTIONS(5767), - [aux_sym_preproc_elif_token1] = ACTIONS(5767), + [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_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -528204,24 +527631,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3812] = { - [sym__name] = STATE(4390), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(4096), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(4109), - [sym_type] = STATE(4632), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_identifier] = STATE(4087), - [sym__reserved_identifier] = STATE(3691), [sym_preproc_region] = STATE(3812), [sym_preproc_endregion] = STATE(3812), [sym_preproc_line] = STATE(3812), @@ -528231,34 +527640,52 @@ 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), - [sym__identifier_token] = ACTIONS(2967), - [anon_sym_alias] = ACTIONS(2971), - [anon_sym_global] = ACTIONS(2971), - [anon_sym_LPAREN] = ACTIONS(2979), - [anon_sym_ref] = ACTIONS(5530), - [anon_sym_delegate] = ACTIONS(3454), - [anon_sym_file] = ACTIONS(2971), - [anon_sym_readonly] = ACTIONS(6175), - [anon_sym_where] = ACTIONS(2971), - [anon_sym_notnull] = ACTIONS(2971), - [anon_sym_unmanaged] = ACTIONS(2971), - [anon_sym_scoped] = ACTIONS(5538), - [anon_sym_var] = ACTIONS(4737), - [sym_predefined_type] = ACTIONS(3001), - [anon_sym_yield] = ACTIONS(2971), - [anon_sym_when] = ACTIONS(2971), - [anon_sym_from] = ACTIONS(2971), - [anon_sym_into] = ACTIONS(2971), - [anon_sym_join] = ACTIONS(2971), - [anon_sym_on] = ACTIONS(2971), - [anon_sym_equals] = ACTIONS(2971), - [anon_sym_let] = ACTIONS(2971), - [anon_sym_orderby] = ACTIONS(2971), - [anon_sym_ascending] = ACTIONS(2971), - [anon_sym_descending] = ACTIONS(2971), - [anon_sym_group] = ACTIONS(2971), - [anon_sym_by] = ACTIONS(2971), - [anon_sym_select] = ACTIONS(2971), + [anon_sym_LBRACK] = ACTIONS(4953), + [anon_sym_COMMA] = ACTIONS(4953), + [anon_sym_LPAREN] = ACTIONS(4953), + [anon_sym_LT] = ACTIONS(4955), + [anon_sym_GT] = ACTIONS(4955), + [anon_sym_where] = ACTIONS(4953), + [anon_sym_QMARK] = ACTIONS(4955), + [anon_sym_BANG] = ACTIONS(4955), + [anon_sym_PLUS_PLUS] = ACTIONS(4953), + [anon_sym_DASH_DASH] = ACTIONS(4953), + [anon_sym_PLUS] = ACTIONS(4955), + [anon_sym_DASH] = ACTIONS(4955), + [anon_sym_STAR] = ACTIONS(4953), + [anon_sym_SLASH] = ACTIONS(4955), + [anon_sym_PERCENT] = ACTIONS(4953), + [anon_sym_CARET] = ACTIONS(4953), + [anon_sym_PIPE] = ACTIONS(4955), + [anon_sym_AMP] = ACTIONS(4955), + [anon_sym_LT_LT] = ACTIONS(4953), + [anon_sym_GT_GT] = ACTIONS(4955), + [anon_sym_GT_GT_GT] = ACTIONS(4953), + [anon_sym_EQ_EQ] = ACTIONS(4953), + [anon_sym_BANG_EQ] = ACTIONS(4953), + [anon_sym_GT_EQ] = ACTIONS(4953), + [anon_sym_LT_EQ] = ACTIONS(4953), + [anon_sym_DOT] = ACTIONS(4955), + [anon_sym_switch] = ACTIONS(4953), + [anon_sym_DOT_DOT] = ACTIONS(4953), + [anon_sym_and] = ACTIONS(4953), + [anon_sym_or] = ACTIONS(4955), + [anon_sym_AMP_AMP] = ACTIONS(4953), + [anon_sym_PIPE_PIPE] = ACTIONS(4953), + [anon_sym_QMARK_QMARK] = ACTIONS(4953), + [anon_sym_from] = ACTIONS(4953), + [anon_sym_into] = ACTIONS(4953), + [anon_sym_join] = ACTIONS(4953), + [anon_sym_let] = ACTIONS(4953), + [anon_sym_orderby] = ACTIONS(4953), + [anon_sym_ascending] = ACTIONS(4953), + [anon_sym_descending] = ACTIONS(4953), + [anon_sym_group] = ACTIONS(4953), + [anon_sym_select] = ACTIONS(4953), + [anon_sym_as] = ACTIONS(4955), + [anon_sym_is] = ACTIONS(4953), + [anon_sym_DASH_GT] = ACTIONS(4953), + [anon_sym_with] = ACTIONS(4953), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -528271,24 +527698,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3813] = { - [sym__name] = STATE(4478), - [sym_alias_qualified_name] = STATE(4464), - [sym__simple_name] = STATE(4464), - [sym_qualified_name] = STATE(4464), - [sym_generic_name] = STATE(4403), - [sym_type] = STATE(4398), - [sym_implicit_type] = STATE(4374), - [sym_array_type] = STATE(4465), - [sym__array_base_type] = STATE(7155), - [sym_nullable_type] = STATE(4467), - [sym_pointer_type] = STATE(4467), - [sym__pointer_base_type] = STATE(7333), - [sym_function_pointer_type] = STATE(4467), - [sym_ref_type] = STATE(4374), - [sym_scoped_type] = STATE(4374), - [sym_tuple_type] = STATE(4469), - [sym_identifier] = STATE(4215), - [sym__reserved_identifier] = STATE(4297), [sym_preproc_region] = STATE(3813), [sym_preproc_endregion] = STATE(3813), [sym_preproc_line] = STATE(3813), @@ -528298,34 +527707,52 @@ 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), - [sym__identifier_token] = ACTIONS(3983), - [anon_sym_alias] = ACTIONS(3985), - [anon_sym_global] = ACTIONS(3985), - [anon_sym_LPAREN] = ACTIONS(6063), - [anon_sym_ref] = ACTIONS(3998), - [anon_sym_delegate] = ACTIONS(5846), - [anon_sym_file] = ACTIONS(3985), - [anon_sym_readonly] = ACTIONS(6177), - [anon_sym_where] = ACTIONS(3985), - [anon_sym_notnull] = ACTIONS(3985), - [anon_sym_unmanaged] = ACTIONS(3985), - [anon_sym_scoped] = ACTIONS(5886), - [anon_sym_var] = ACTIONS(5850), - [sym_predefined_type] = ACTIONS(5852), - [anon_sym_yield] = ACTIONS(3985), - [anon_sym_when] = ACTIONS(3985), - [anon_sym_from] = ACTIONS(3985), - [anon_sym_into] = ACTIONS(3985), - [anon_sym_join] = ACTIONS(3985), - [anon_sym_on] = ACTIONS(3985), - [anon_sym_equals] = ACTIONS(3985), - [anon_sym_let] = ACTIONS(3985), - [anon_sym_orderby] = ACTIONS(3985), - [anon_sym_ascending] = ACTIONS(3985), - [anon_sym_descending] = ACTIONS(3985), - [anon_sym_group] = ACTIONS(3985), - [anon_sym_by] = ACTIONS(3985), - [anon_sym_select] = ACTIONS(3985), + [sym__identifier_token] = ACTIONS(3466), + [anon_sym_extern] = ACTIONS(3466), + [anon_sym_alias] = ACTIONS(3466), + [anon_sym_global] = ACTIONS(3466), + [anon_sym_unsafe] = ACTIONS(3466), + [anon_sym_static] = ACTIONS(3466), + [anon_sym_LPAREN] = ACTIONS(6169), + [anon_sym_ref] = ACTIONS(3466), + [anon_sym_delegate] = ACTIONS(3466), + [anon_sym_abstract] = ACTIONS(3466), + [anon_sym_async] = ACTIONS(3466), + [anon_sym_const] = ACTIONS(3466), + [anon_sym_file] = ACTIONS(3466), + [anon_sym_fixed] = ACTIONS(3466), + [anon_sym_internal] = ACTIONS(3466), + [anon_sym_new] = ACTIONS(3466), + [anon_sym_override] = ACTIONS(3466), + [anon_sym_partial] = ACTIONS(3466), + [anon_sym_private] = ACTIONS(3466), + [anon_sym_protected] = ACTIONS(3466), + [anon_sym_public] = ACTIONS(3466), + [anon_sym_readonly] = ACTIONS(3466), + [anon_sym_required] = ACTIONS(3466), + [anon_sym_sealed] = ACTIONS(3466), + [anon_sym_virtual] = ACTIONS(3466), + [anon_sym_volatile] = ACTIONS(3466), + [anon_sym_where] = ACTIONS(3466), + [anon_sym_notnull] = ACTIONS(3466), + [anon_sym_unmanaged] = ACTIONS(3466), + [anon_sym_scoped] = ACTIONS(3466), + [anon_sym_var] = ACTIONS(3466), + [sym_predefined_type] = ACTIONS(3466), + [anon_sym_yield] = ACTIONS(3466), + [anon_sym_when] = ACTIONS(3466), + [anon_sym_from] = ACTIONS(3466), + [anon_sym_into] = ACTIONS(3466), + [anon_sym_join] = ACTIONS(3466), + [anon_sym_on] = ACTIONS(3466), + [anon_sym_equals] = ACTIONS(3466), + [anon_sym_let] = ACTIONS(3466), + [anon_sym_orderby] = ACTIONS(3466), + [anon_sym_ascending] = ACTIONS(3466), + [anon_sym_descending] = ACTIONS(3466), + [anon_sym_group] = ACTIONS(3466), + [anon_sym_by] = ACTIONS(3466), + [anon_sym_select] = ACTIONS(3466), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -528338,25 +527765,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3814] = { - [sym__name] = STATE(4390), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(4096), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(4109), - [sym_type] = STATE(5950), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_tuple_element] = STATE(7253), - [sym_identifier] = STATE(4087), - [sym__reserved_identifier] = STATE(3691), [sym_preproc_region] = STATE(3814), [sym_preproc_endregion] = STATE(3814), [sym_preproc_line] = STATE(3814), @@ -528366,33 +527774,52 @@ 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(2967), - [anon_sym_alias] = ACTIONS(2971), - [anon_sym_global] = ACTIONS(2971), - [anon_sym_LPAREN] = ACTIONS(2979), - [anon_sym_ref] = ACTIONS(3640), - [anon_sym_delegate] = ACTIONS(3454), - [anon_sym_file] = ACTIONS(2971), - [anon_sym_where] = ACTIONS(2971), - [anon_sym_notnull] = ACTIONS(2971), - [anon_sym_unmanaged] = ACTIONS(2971), - [anon_sym_scoped] = ACTIONS(6179), - [anon_sym_var] = ACTIONS(6079), - [sym_predefined_type] = ACTIONS(3001), - [anon_sym_yield] = ACTIONS(2971), - [anon_sym_when] = ACTIONS(2971), - [anon_sym_from] = ACTIONS(2971), - [anon_sym_into] = ACTIONS(2971), - [anon_sym_join] = ACTIONS(2971), - [anon_sym_on] = ACTIONS(2971), - [anon_sym_equals] = ACTIONS(2971), - [anon_sym_let] = ACTIONS(2971), - [anon_sym_orderby] = ACTIONS(2971), - [anon_sym_ascending] = ACTIONS(2971), - [anon_sym_descending] = ACTIONS(2971), - [anon_sym_group] = ACTIONS(2971), - [anon_sym_by] = ACTIONS(2971), - [anon_sym_select] = ACTIONS(2971), + [anon_sym_LBRACK] = ACTIONS(4957), + [anon_sym_COMMA] = ACTIONS(4957), + [anon_sym_LPAREN] = ACTIONS(4957), + [anon_sym_LT] = ACTIONS(4959), + [anon_sym_GT] = ACTIONS(4959), + [anon_sym_where] = ACTIONS(4957), + [anon_sym_QMARK] = ACTIONS(4959), + [anon_sym_BANG] = ACTIONS(4959), + [anon_sym_PLUS_PLUS] = ACTIONS(4957), + [anon_sym_DASH_DASH] = ACTIONS(4957), + [anon_sym_PLUS] = ACTIONS(4959), + [anon_sym_DASH] = ACTIONS(4959), + [anon_sym_STAR] = ACTIONS(4957), + [anon_sym_SLASH] = ACTIONS(4959), + [anon_sym_PERCENT] = ACTIONS(4957), + [anon_sym_CARET] = ACTIONS(4957), + [anon_sym_PIPE] = ACTIONS(4959), + [anon_sym_AMP] = ACTIONS(4959), + [anon_sym_LT_LT] = ACTIONS(4957), + [anon_sym_GT_GT] = ACTIONS(4959), + [anon_sym_GT_GT_GT] = ACTIONS(4957), + [anon_sym_EQ_EQ] = ACTIONS(4957), + [anon_sym_BANG_EQ] = ACTIONS(4957), + [anon_sym_GT_EQ] = ACTIONS(4957), + [anon_sym_LT_EQ] = ACTIONS(4957), + [anon_sym_DOT] = ACTIONS(4959), + [anon_sym_switch] = ACTIONS(4957), + [anon_sym_DOT_DOT] = ACTIONS(4957), + [anon_sym_and] = ACTIONS(4957), + [anon_sym_or] = ACTIONS(4959), + [anon_sym_AMP_AMP] = ACTIONS(4957), + [anon_sym_PIPE_PIPE] = ACTIONS(4957), + [anon_sym_QMARK_QMARK] = ACTIONS(4957), + [anon_sym_from] = ACTIONS(4957), + [anon_sym_into] = ACTIONS(4957), + [anon_sym_join] = ACTIONS(4957), + [anon_sym_let] = ACTIONS(4957), + [anon_sym_orderby] = ACTIONS(4957), + [anon_sym_ascending] = ACTIONS(4957), + [anon_sym_descending] = ACTIONS(4957), + [anon_sym_group] = ACTIONS(4957), + [anon_sym_select] = ACTIONS(4957), + [anon_sym_as] = ACTIONS(4959), + [anon_sym_is] = ACTIONS(4957), + [anon_sym_DASH_GT] = ACTIONS(4957), + [anon_sym_with] = ACTIONS(4957), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -528405,24 +527832,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3815] = { - [sym__name] = STATE(3453), - [sym_alias_qualified_name] = STATE(3251), - [sym__simple_name] = STATE(3251), - [sym_qualified_name] = STATE(3251), - [sym_generic_name] = STATE(3246), - [sym_type] = STATE(3273), - [sym_implicit_type] = STATE(3253), - [sym_array_type] = STATE(3255), - [sym__array_base_type] = STATE(7101), - [sym_nullable_type] = STATE(3257), - [sym_pointer_type] = STATE(3257), - [sym__pointer_base_type] = STATE(7546), - [sym_function_pointer_type] = STATE(3257), - [sym_ref_type] = STATE(3253), - [sym_scoped_type] = STATE(3253), - [sym_tuple_type] = STATE(3258), - [sym_identifier] = STATE(3167), - [sym__reserved_identifier] = STATE(3225), + [sym_argument_list] = STATE(3771), + [sym_bracketed_argument_list] = STATE(2892), [sym_preproc_region] = STATE(3815), [sym_preproc_endregion] = STATE(3815), [sym_preproc_line] = STATE(3815), @@ -528432,34 +527843,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), - [sym__identifier_token] = ACTIONS(3788), - [anon_sym_alias] = ACTIONS(3790), - [anon_sym_global] = ACTIONS(3790), - [anon_sym_LPAREN] = ACTIONS(6059), - [anon_sym_ref] = ACTIONS(4158), - [anon_sym_delegate] = ACTIONS(5818), - [anon_sym_file] = ACTIONS(3790), - [anon_sym_readonly] = ACTIONS(6181), - [anon_sym_where] = ACTIONS(3790), - [anon_sym_notnull] = ACTIONS(3790), - [anon_sym_unmanaged] = ACTIONS(3790), - [anon_sym_scoped] = ACTIONS(5838), - [anon_sym_var] = ACTIONS(5822), - [sym_predefined_type] = ACTIONS(5824), - [anon_sym_yield] = ACTIONS(3790), - [anon_sym_when] = ACTIONS(3790), - [anon_sym_from] = ACTIONS(3790), - [anon_sym_into] = ACTIONS(3790), - [anon_sym_join] = ACTIONS(3790), - [anon_sym_on] = ACTIONS(3790), - [anon_sym_equals] = ACTIONS(3790), - [anon_sym_let] = ACTIONS(3790), - [anon_sym_orderby] = ACTIONS(3790), - [anon_sym_ascending] = ACTIONS(3790), - [anon_sym_descending] = ACTIONS(3790), - [anon_sym_group] = ACTIONS(3790), - [anon_sym_by] = ACTIONS(3790), - [anon_sym_select] = ACTIONS(3790), + [anon_sym_LBRACK] = ACTIONS(5650), + [anon_sym_COMMA] = ACTIONS(5741), + [anon_sym_LPAREN] = ACTIONS(5591), + [anon_sym_LT] = ACTIONS(5743), + [anon_sym_GT] = ACTIONS(5743), + [anon_sym_where] = ACTIONS(5741), + [anon_sym_QMARK] = ACTIONS(5743), + [anon_sym_BANG] = ACTIONS(5658), + [anon_sym_PLUS_PLUS] = ACTIONS(5660), + [anon_sym_DASH_DASH] = ACTIONS(5660), + [anon_sym_PLUS] = ACTIONS(5743), + [anon_sym_DASH] = ACTIONS(5743), + [anon_sym_STAR] = ACTIONS(5741), + [anon_sym_SLASH] = ACTIONS(5743), + [anon_sym_PERCENT] = ACTIONS(5741), + [anon_sym_CARET] = ACTIONS(5741), + [anon_sym_PIPE] = ACTIONS(5743), + [anon_sym_AMP] = ACTIONS(5743), + [anon_sym_LT_LT] = ACTIONS(5741), + [anon_sym_GT_GT] = ACTIONS(5743), + [anon_sym_GT_GT_GT] = ACTIONS(5741), + [anon_sym_EQ_EQ] = ACTIONS(5741), + [anon_sym_BANG_EQ] = ACTIONS(5741), + [anon_sym_GT_EQ] = ACTIONS(5741), + [anon_sym_LT_EQ] = ACTIONS(5741), + [anon_sym_DOT] = ACTIONS(4697), + [anon_sym_switch] = ACTIONS(5741), + [anon_sym_DOT_DOT] = ACTIONS(6067), + [anon_sym_AMP_AMP] = ACTIONS(5741), + [anon_sym_PIPE_PIPE] = ACTIONS(5741), + [anon_sym_QMARK_QMARK] = ACTIONS(5741), + [anon_sym_from] = ACTIONS(5741), + [anon_sym_into] = ACTIONS(5741), + [anon_sym_join] = ACTIONS(5741), + [anon_sym_let] = ACTIONS(5741), + [anon_sym_orderby] = ACTIONS(5741), + [anon_sym_ascending] = ACTIONS(5741), + [anon_sym_descending] = ACTIONS(5741), + [anon_sym_group] = ACTIONS(5741), + [anon_sym_select] = ACTIONS(5741), + [anon_sym_as] = ACTIONS(5743), + [anon_sym_is] = ACTIONS(5741), + [anon_sym_DASH_GT] = ACTIONS(4699), + [anon_sym_with] = ACTIONS(5741), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -528472,6 +527899,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3816] = { + [sym_argument_list] = STATE(3348), + [sym_bracketed_argument_list] = STATE(2605), [sym_preproc_region] = STATE(3816), [sym_preproc_endregion] = STATE(3816), [sym_preproc_line] = STATE(3816), @@ -528481,52 +527910,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), - [anon_sym_LBRACK] = ACTIONS(2953), - [anon_sym_COMMA] = ACTIONS(2953), - [anon_sym_LPAREN] = ACTIONS(2953), - [anon_sym_LT] = ACTIONS(2951), - [anon_sym_GT] = ACTIONS(2951), - [anon_sym_where] = ACTIONS(2953), - [anon_sym_QMARK] = ACTIONS(2951), - [anon_sym_BANG] = ACTIONS(2951), - [anon_sym_PLUS_PLUS] = ACTIONS(2953), - [anon_sym_DASH_DASH] = ACTIONS(2953), - [anon_sym_PLUS] = ACTIONS(2951), - [anon_sym_DASH] = ACTIONS(2951), - [anon_sym_STAR] = ACTIONS(2953), - [anon_sym_SLASH] = ACTIONS(2951), - [anon_sym_PERCENT] = ACTIONS(2953), - [anon_sym_CARET] = ACTIONS(2953), - [anon_sym_PIPE] = ACTIONS(2951), - [anon_sym_AMP] = ACTIONS(2951), - [anon_sym_LT_LT] = ACTIONS(2953), - [anon_sym_GT_GT] = ACTIONS(2951), - [anon_sym_GT_GT_GT] = ACTIONS(2953), - [anon_sym_EQ_EQ] = ACTIONS(2953), - [anon_sym_BANG_EQ] = ACTIONS(2953), - [anon_sym_GT_EQ] = ACTIONS(2953), - [anon_sym_LT_EQ] = ACTIONS(2953), - [anon_sym_DOT] = ACTIONS(2951), - [anon_sym_switch] = ACTIONS(2953), - [anon_sym_DOT_DOT] = ACTIONS(2953), - [anon_sym_and] = ACTIONS(2953), - [anon_sym_or] = ACTIONS(2951), - [anon_sym_AMP_AMP] = ACTIONS(2953), - [anon_sym_PIPE_PIPE] = ACTIONS(2953), - [anon_sym_QMARK_QMARK] = ACTIONS(2953), - [anon_sym_from] = ACTIONS(2953), - [anon_sym_into] = ACTIONS(2953), - [anon_sym_join] = ACTIONS(2953), - [anon_sym_let] = ACTIONS(2953), - [anon_sym_orderby] = ACTIONS(2953), - [anon_sym_ascending] = ACTIONS(2953), - [anon_sym_descending] = ACTIONS(2953), - [anon_sym_group] = ACTIONS(2953), - [anon_sym_select] = ACTIONS(2953), - [anon_sym_as] = ACTIONS(2951), - [anon_sym_is] = ACTIONS(2953), - [anon_sym_DASH_GT] = ACTIONS(2953), - [anon_sym_with] = ACTIONS(2953), + [anon_sym_SEMI] = ACTIONS(5865), + [anon_sym_LBRACK] = ACTIONS(5236), + [anon_sym_COMMA] = ACTIONS(5865), + [anon_sym_RBRACK] = ACTIONS(5865), + [anon_sym_LPAREN] = ACTIONS(5227), + [anon_sym_RPAREN] = ACTIONS(5865), + [anon_sym_RBRACE] = ACTIONS(5865), + [anon_sym_LT] = ACTIONS(5993), + [anon_sym_GT] = ACTIONS(5993), + [anon_sym_QMARK] = ACTIONS(5995), + [anon_sym_BANG] = ACTIONS(5238), + [anon_sym_PLUS_PLUS] = ACTIONS(5240), + [anon_sym_DASH_DASH] = ACTIONS(5240), + [anon_sym_PLUS] = ACTIONS(5997), + [anon_sym_DASH] = ACTIONS(5997), + [anon_sym_STAR] = ACTIONS(5999), + [anon_sym_SLASH] = ACTIONS(6001), + [anon_sym_PERCENT] = ACTIONS(5999), + [anon_sym_CARET] = ACTIONS(6003), + [anon_sym_PIPE] = ACTIONS(6005), + [anon_sym_AMP] = ACTIONS(6007), + [anon_sym_LT_LT] = ACTIONS(6009), + [anon_sym_GT_GT] = ACTIONS(6011), + [anon_sym_GT_GT_GT] = ACTIONS(6009), + [anon_sym_EQ_EQ] = ACTIONS(6013), + [anon_sym_BANG_EQ] = ACTIONS(6013), + [anon_sym_GT_EQ] = ACTIONS(6015), + [anon_sym_LT_EQ] = ACTIONS(6015), + [anon_sym_DOT] = ACTIONS(4092), + [anon_sym_switch] = ACTIONS(6017), + [anon_sym_DOT_DOT] = ACTIONS(6019), + [anon_sym_and] = ACTIONS(5865), + [anon_sym_or] = ACTIONS(5865), + [anon_sym_AMP_AMP] = ACTIONS(6021), + [anon_sym_PIPE_PIPE] = ACTIONS(6023), + [anon_sym_QMARK_QMARK] = ACTIONS(6025), + [anon_sym_into] = ACTIONS(5865), + [anon_sym_as] = ACTIONS(6027), + [anon_sym_is] = ACTIONS(6029), + [anon_sym_DASH_GT] = ACTIONS(4094), + [anon_sym_with] = ACTIONS(6031), + [aux_sym_preproc_if_token3] = ACTIONS(5865), + [aux_sym_preproc_else_token1] = ACTIONS(5865), + [aux_sym_preproc_elif_token1] = ACTIONS(5865), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -528539,24 +527966,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3817] = { - [sym__name] = STATE(6450), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(4096), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(4109), - [sym_type] = STATE(4632), - [sym_implicit_type] = STATE(7266), - [sym_array_type] = STATE(6694), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7446), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(7266), - [sym_scoped_type] = STATE(7266), - [sym_tuple_type] = STATE(6579), - [sym_identifier] = STATE(4087), - [sym__reserved_identifier] = STATE(3691), + [sym__name] = STATE(5082), + [sym_alias_qualified_name] = STATE(2976), + [sym__simple_name] = STATE(2976), + [sym_qualified_name] = STATE(2976), + [sym_generic_name] = STATE(3030), + [sym_type] = STATE(3039), + [sym_implicit_type] = STATE(2977), + [sym_array_type] = STATE(2978), + [sym__array_base_type] = STATE(7236), + [sym_nullable_type] = STATE(2979), + [sym_pointer_type] = STATE(2979), + [sym__pointer_base_type] = STATE(7622), + [sym_function_pointer_type] = STATE(2979), + [sym_ref_type] = STATE(2977), + [sym_scoped_type] = STATE(2977), + [sym_tuple_type] = STATE(2980), + [sym_identifier] = STATE(4356), + [sym__reserved_identifier] = STATE(2916), [sym_preproc_region] = STATE(3817), [sym_preproc_endregion] = STATE(3817), [sym_preproc_line] = STATE(3817), @@ -528566,34 +527993,34 @@ 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), - [sym__identifier_token] = ACTIONS(2967), - [anon_sym_alias] = ACTIONS(2971), - [anon_sym_global] = ACTIONS(2971), - [anon_sym_LPAREN] = ACTIONS(2979), - [anon_sym_ref] = ACTIONS(6013), - [anon_sym_delegate] = ACTIONS(5030), - [anon_sym_file] = ACTIONS(2971), - [anon_sym_readonly] = ACTIONS(6015), - [anon_sym_where] = ACTIONS(2971), - [anon_sym_notnull] = ACTIONS(2971), - [anon_sym_unmanaged] = ACTIONS(2971), - [anon_sym_scoped] = ACTIONS(5476), - [anon_sym_var] = ACTIONS(2999), - [sym_predefined_type] = ACTIONS(5038), - [anon_sym_yield] = ACTIONS(2971), - [anon_sym_when] = ACTIONS(2971), - [anon_sym_from] = ACTIONS(2971), - [anon_sym_into] = ACTIONS(2971), - [anon_sym_join] = ACTIONS(2971), - [anon_sym_on] = ACTIONS(2971), - [anon_sym_equals] = ACTIONS(2971), - [anon_sym_let] = ACTIONS(2971), - [anon_sym_orderby] = ACTIONS(2971), - [anon_sym_ascending] = ACTIONS(2971), - [anon_sym_descending] = ACTIONS(2971), - [anon_sym_group] = ACTIONS(2971), - [anon_sym_by] = ACTIONS(2971), - [anon_sym_select] = ACTIONS(2971), + [sym__identifier_token] = ACTIONS(3871), + [anon_sym_alias] = ACTIONS(3873), + [anon_sym_global] = ACTIONS(3873), + [anon_sym_LPAREN] = ACTIONS(6033), + [anon_sym_ref] = ACTIONS(4007), + [anon_sym_delegate] = ACTIONS(4015), + [anon_sym_file] = ACTIONS(3873), + [anon_sym_readonly] = ACTIONS(6171), + [anon_sym_where] = ACTIONS(3873), + [anon_sym_notnull] = ACTIONS(3873), + [anon_sym_unmanaged] = ACTIONS(3873), + [anon_sym_scoped] = ACTIONS(5731), + [anon_sym_var] = ACTIONS(4019), + [sym_predefined_type] = ACTIONS(4021), + [anon_sym_yield] = ACTIONS(3873), + [anon_sym_when] = ACTIONS(3873), + [anon_sym_from] = ACTIONS(3873), + [anon_sym_into] = ACTIONS(3873), + [anon_sym_join] = ACTIONS(3873), + [anon_sym_on] = ACTIONS(3873), + [anon_sym_equals] = ACTIONS(3873), + [anon_sym_let] = ACTIONS(3873), + [anon_sym_orderby] = ACTIONS(3873), + [anon_sym_ascending] = ACTIONS(3873), + [anon_sym_descending] = ACTIONS(3873), + [anon_sym_group] = ACTIONS(3873), + [anon_sym_by] = ACTIONS(3873), + [anon_sym_select] = ACTIONS(3873), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -528606,24 +528033,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3818] = { - [sym__name] = STATE(3219), - [sym_alias_qualified_name] = STATE(3200), - [sym__simple_name] = STATE(3200), - [sym_qualified_name] = STATE(3200), - [sym_generic_name] = STATE(3156), - [sym_type] = STATE(3164), - [sym_implicit_type] = STATE(3205), - [sym_array_type] = STATE(3206), - [sym__array_base_type] = STATE(7259), - [sym_nullable_type] = STATE(3151), - [sym_pointer_type] = STATE(3151), - [sym__pointer_base_type] = STATE(7662), - [sym_function_pointer_type] = STATE(3151), - [sym_ref_type] = STATE(3205), - [sym_scoped_type] = STATE(3205), - [sym_tuple_type] = STATE(3209), - [sym_identifier] = STATE(3129), - [sym__reserved_identifier] = STATE(3149), [sym_preproc_region] = STATE(3818), [sym_preproc_endregion] = STATE(3818), [sym_preproc_line] = STATE(3818), @@ -528633,34 +528042,52 @@ 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), - [sym__identifier_token] = ACTIONS(3773), - [anon_sym_alias] = ACTIONS(3775), - [anon_sym_global] = ACTIONS(3775), - [anon_sym_LPAREN] = ACTIONS(6171), - [anon_sym_ref] = ACTIONS(4026), - [anon_sym_delegate] = ACTIONS(5706), - [anon_sym_file] = ACTIONS(3775), - [anon_sym_readonly] = ACTIONS(6183), - [anon_sym_where] = ACTIONS(3775), - [anon_sym_notnull] = ACTIONS(3775), - [anon_sym_unmanaged] = ACTIONS(3775), - [anon_sym_scoped] = ACTIONS(5765), - [anon_sym_var] = ACTIONS(5710), - [sym_predefined_type] = ACTIONS(5712), - [anon_sym_yield] = ACTIONS(3775), - [anon_sym_when] = ACTIONS(3775), - [anon_sym_from] = ACTIONS(3775), - [anon_sym_into] = ACTIONS(3775), - [anon_sym_join] = ACTIONS(3775), - [anon_sym_on] = ACTIONS(3775), - [anon_sym_equals] = ACTIONS(3775), - [anon_sym_let] = ACTIONS(3775), - [anon_sym_orderby] = ACTIONS(3775), - [anon_sym_ascending] = ACTIONS(3775), - [anon_sym_descending] = ACTIONS(3775), - [anon_sym_group] = ACTIONS(3775), - [anon_sym_by] = ACTIONS(3775), - [anon_sym_select] = ACTIONS(3775), + [anon_sym_LBRACK] = ACTIONS(5124), + [anon_sym_COMMA] = ACTIONS(5124), + [anon_sym_LPAREN] = ACTIONS(5124), + [anon_sym_LT] = ACTIONS(5126), + [anon_sym_GT] = ACTIONS(5126), + [anon_sym_where] = ACTIONS(5124), + [anon_sym_QMARK] = ACTIONS(5126), + [anon_sym_BANG] = ACTIONS(5126), + [anon_sym_PLUS_PLUS] = ACTIONS(5124), + [anon_sym_DASH_DASH] = ACTIONS(5124), + [anon_sym_PLUS] = ACTIONS(5126), + [anon_sym_DASH] = ACTIONS(5126), + [anon_sym_STAR] = ACTIONS(5124), + [anon_sym_SLASH] = ACTIONS(5126), + [anon_sym_PERCENT] = ACTIONS(5124), + [anon_sym_CARET] = ACTIONS(5124), + [anon_sym_PIPE] = ACTIONS(5126), + [anon_sym_AMP] = ACTIONS(5126), + [anon_sym_LT_LT] = ACTIONS(5124), + [anon_sym_GT_GT] = ACTIONS(5126), + [anon_sym_GT_GT_GT] = ACTIONS(5124), + [anon_sym_EQ_EQ] = ACTIONS(5124), + [anon_sym_BANG_EQ] = ACTIONS(5124), + [anon_sym_GT_EQ] = ACTIONS(5124), + [anon_sym_LT_EQ] = ACTIONS(5124), + [anon_sym_DOT] = ACTIONS(5126), + [anon_sym_switch] = ACTIONS(5124), + [anon_sym_DOT_DOT] = ACTIONS(5124), + [anon_sym_and] = ACTIONS(5124), + [anon_sym_or] = ACTIONS(5126), + [anon_sym_AMP_AMP] = ACTIONS(5124), + [anon_sym_PIPE_PIPE] = ACTIONS(5124), + [anon_sym_QMARK_QMARK] = ACTIONS(5124), + [anon_sym_from] = ACTIONS(5124), + [anon_sym_into] = ACTIONS(5124), + [anon_sym_join] = ACTIONS(5124), + [anon_sym_let] = ACTIONS(5124), + [anon_sym_orderby] = ACTIONS(5124), + [anon_sym_ascending] = ACTIONS(5124), + [anon_sym_descending] = ACTIONS(5124), + [anon_sym_group] = ACTIONS(5124), + [anon_sym_select] = ACTIONS(5124), + [anon_sym_as] = ACTIONS(5126), + [anon_sym_is] = ACTIONS(5124), + [anon_sym_DASH_GT] = ACTIONS(5124), + [anon_sym_with] = ACTIONS(5124), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -528673,24 +528100,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3819] = { - [sym__name] = STATE(4390), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(4096), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(4109), - [sym_type] = STATE(4632), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_identifier] = STATE(4087), - [sym__reserved_identifier] = STATE(3691), [sym_preproc_region] = STATE(3819), [sym_preproc_endregion] = STATE(3819), [sym_preproc_line] = STATE(3819), @@ -528700,34 +528109,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), - [sym__identifier_token] = ACTIONS(2967), - [anon_sym_alias] = ACTIONS(2971), - [anon_sym_global] = ACTIONS(2971), - [anon_sym_LPAREN] = ACTIONS(2979), - [anon_sym_ref] = ACTIONS(5603), - [anon_sym_delegate] = ACTIONS(3454), - [anon_sym_file] = ACTIONS(2971), - [anon_sym_readonly] = ACTIONS(6185), - [anon_sym_where] = ACTIONS(2971), - [anon_sym_notnull] = ACTIONS(2971), - [anon_sym_unmanaged] = ACTIONS(2971), - [anon_sym_scoped] = ACTIONS(5607), - [anon_sym_var] = ACTIONS(2999), - [sym_predefined_type] = ACTIONS(3001), - [anon_sym_yield] = ACTIONS(2971), - [anon_sym_when] = ACTIONS(2971), - [anon_sym_from] = ACTIONS(2971), - [anon_sym_into] = ACTIONS(2971), - [anon_sym_join] = ACTIONS(2971), - [anon_sym_on] = ACTIONS(2971), - [anon_sym_equals] = ACTIONS(2971), - [anon_sym_let] = ACTIONS(2971), - [anon_sym_orderby] = ACTIONS(2971), - [anon_sym_ascending] = ACTIONS(2971), - [anon_sym_descending] = ACTIONS(2971), - [anon_sym_group] = ACTIONS(2971), - [anon_sym_by] = ACTIONS(2971), - [anon_sym_select] = ACTIONS(2971), + [anon_sym_LBRACK] = ACTIONS(4961), + [anon_sym_COMMA] = ACTIONS(4961), + [anon_sym_LPAREN] = ACTIONS(4961), + [anon_sym_LT] = ACTIONS(4963), + [anon_sym_GT] = ACTIONS(4963), + [anon_sym_where] = ACTIONS(4961), + [anon_sym_QMARK] = ACTIONS(4963), + [anon_sym_BANG] = ACTIONS(4963), + [anon_sym_PLUS_PLUS] = ACTIONS(4961), + [anon_sym_DASH_DASH] = ACTIONS(4961), + [anon_sym_PLUS] = ACTIONS(4963), + [anon_sym_DASH] = ACTIONS(4963), + [anon_sym_STAR] = ACTIONS(4961), + [anon_sym_SLASH] = ACTIONS(4963), + [anon_sym_PERCENT] = ACTIONS(4961), + [anon_sym_CARET] = ACTIONS(4961), + [anon_sym_PIPE] = ACTIONS(4963), + [anon_sym_AMP] = ACTIONS(4963), + [anon_sym_LT_LT] = ACTIONS(4961), + [anon_sym_GT_GT] = ACTIONS(4963), + [anon_sym_GT_GT_GT] = ACTIONS(4961), + [anon_sym_EQ_EQ] = ACTIONS(4961), + [anon_sym_BANG_EQ] = ACTIONS(4961), + [anon_sym_GT_EQ] = ACTIONS(4961), + [anon_sym_LT_EQ] = ACTIONS(4961), + [anon_sym_DOT] = ACTIONS(4963), + [anon_sym_switch] = ACTIONS(4961), + [anon_sym_DOT_DOT] = ACTIONS(4961), + [anon_sym_and] = ACTIONS(4961), + [anon_sym_or] = ACTIONS(4963), + [anon_sym_AMP_AMP] = ACTIONS(4961), + [anon_sym_PIPE_PIPE] = ACTIONS(4961), + [anon_sym_QMARK_QMARK] = ACTIONS(4961), + [anon_sym_from] = ACTIONS(4961), + [anon_sym_into] = ACTIONS(4961), + [anon_sym_join] = ACTIONS(4961), + [anon_sym_let] = ACTIONS(4961), + [anon_sym_orderby] = ACTIONS(4961), + [anon_sym_ascending] = ACTIONS(4961), + [anon_sym_descending] = ACTIONS(4961), + [anon_sym_group] = ACTIONS(4961), + [anon_sym_select] = ACTIONS(4961), + [anon_sym_as] = ACTIONS(4963), + [anon_sym_is] = ACTIONS(4961), + [anon_sym_DASH_GT] = ACTIONS(4961), + [anon_sym_with] = ACTIONS(4961), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -528740,24 +528167,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3820] = { - [sym__name] = STATE(3534), - [sym_alias_qualified_name] = STATE(2921), - [sym__simple_name] = STATE(2921), - [sym_qualified_name] = STATE(2921), - [sym_generic_name] = STATE(2929), - [sym_type] = STATE(2936), - [sym_implicit_type] = STATE(2935), - [sym_array_type] = STATE(2937), - [sym__array_base_type] = STATE(7122), - [sym_nullable_type] = STATE(2961), - [sym_pointer_type] = STATE(2961), - [sym__pointer_base_type] = STATE(7545), - [sym_function_pointer_type] = STATE(2961), - [sym_ref_type] = STATE(2935), - [sym_scoped_type] = STATE(2935), - [sym_tuple_type] = STATE(2944), - [sym_identifier] = STATE(3260), - [sym__reserved_identifier] = STATE(2904), [sym_preproc_region] = STATE(3820), [sym_preproc_endregion] = STATE(3820), [sym_preproc_line] = STATE(3820), @@ -528767,34 +528176,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), - [sym__identifier_token] = ACTIONS(3861), - [anon_sym_alias] = ACTIONS(3863), - [anon_sym_global] = ACTIONS(3863), - [anon_sym_LPAREN] = ACTIONS(6091), - [anon_sym_ref] = ACTIONS(4229), - [anon_sym_delegate] = ACTIONS(5791), - [anon_sym_file] = ACTIONS(3863), - [anon_sym_readonly] = ACTIONS(6187), - [anon_sym_where] = ACTIONS(3863), - [anon_sym_notnull] = ACTIONS(3863), - [anon_sym_unmanaged] = ACTIONS(3863), - [anon_sym_scoped] = ACTIONS(5793), - [anon_sym_var] = ACTIONS(5795), - [sym_predefined_type] = ACTIONS(5797), - [anon_sym_yield] = ACTIONS(3863), - [anon_sym_when] = ACTIONS(3863), - [anon_sym_from] = ACTIONS(3863), - [anon_sym_into] = ACTIONS(3863), - [anon_sym_join] = ACTIONS(3863), - [anon_sym_on] = ACTIONS(3863), - [anon_sym_equals] = ACTIONS(3863), - [anon_sym_let] = ACTIONS(3863), - [anon_sym_orderby] = ACTIONS(3863), - [anon_sym_ascending] = ACTIONS(3863), - [anon_sym_descending] = ACTIONS(3863), - [anon_sym_group] = ACTIONS(3863), - [anon_sym_by] = ACTIONS(3863), - [anon_sym_select] = ACTIONS(3863), + [sym__identifier_token] = ACTIONS(3466), + [anon_sym_extern] = ACTIONS(3466), + [anon_sym_alias] = ACTIONS(3466), + [anon_sym_global] = ACTIONS(3466), + [anon_sym_unsafe] = ACTIONS(3466), + [anon_sym_static] = ACTIONS(3466), + [anon_sym_LPAREN] = ACTIONS(5128), + [anon_sym_ref] = ACTIONS(3466), + [anon_sym_delegate] = ACTIONS(3466), + [anon_sym_abstract] = ACTIONS(3466), + [anon_sym_async] = ACTIONS(3466), + [anon_sym_const] = ACTIONS(3466), + [anon_sym_file] = ACTIONS(3466), + [anon_sym_fixed] = ACTIONS(3466), + [anon_sym_internal] = ACTIONS(3466), + [anon_sym_new] = ACTIONS(3466), + [anon_sym_override] = ACTIONS(3466), + [anon_sym_partial] = ACTIONS(3466), + [anon_sym_private] = ACTIONS(3466), + [anon_sym_protected] = ACTIONS(3466), + [anon_sym_public] = ACTIONS(3466), + [anon_sym_readonly] = ACTIONS(3466), + [anon_sym_required] = ACTIONS(3466), + [anon_sym_sealed] = ACTIONS(3466), + [anon_sym_virtual] = ACTIONS(3466), + [anon_sym_volatile] = ACTIONS(3466), + [anon_sym_where] = ACTIONS(3466), + [anon_sym_notnull] = ACTIONS(3466), + [anon_sym_unmanaged] = ACTIONS(3466), + [anon_sym_scoped] = ACTIONS(3466), + [anon_sym_var] = ACTIONS(3466), + [sym_predefined_type] = ACTIONS(3466), + [anon_sym_yield] = ACTIONS(3466), + [anon_sym_when] = ACTIONS(3466), + [anon_sym_from] = ACTIONS(3466), + [anon_sym_into] = ACTIONS(3466), + [anon_sym_join] = ACTIONS(3466), + [anon_sym_on] = ACTIONS(3466), + [anon_sym_equals] = ACTIONS(3466), + [anon_sym_let] = ACTIONS(3466), + [anon_sym_orderby] = ACTIONS(3466), + [anon_sym_ascending] = ACTIONS(3466), + [anon_sym_descending] = ACTIONS(3466), + [anon_sym_group] = ACTIONS(3466), + [anon_sym_by] = ACTIONS(3466), + [anon_sym_select] = ACTIONS(3466), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -528807,24 +528234,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3821] = { - [sym__name] = STATE(3534), - [sym_alias_qualified_name] = STATE(2921), - [sym__simple_name] = STATE(2921), - [sym_qualified_name] = STATE(2921), - [sym_generic_name] = STATE(2929), - [sym_type] = STATE(2936), - [sym_implicit_type] = STATE(2935), - [sym_array_type] = STATE(2937), - [sym__array_base_type] = STATE(7122), - [sym_nullable_type] = STATE(2961), - [sym_pointer_type] = STATE(2961), - [sym__pointer_base_type] = STATE(7545), - [sym_function_pointer_type] = STATE(2961), - [sym_ref_type] = STATE(2935), - [sym_scoped_type] = STATE(2935), - [sym_tuple_type] = STATE(2944), - [sym_identifier] = STATE(3260), - [sym__reserved_identifier] = STATE(2904), [sym_preproc_region] = STATE(3821), [sym_preproc_endregion] = STATE(3821), [sym_preproc_line] = STATE(3821), @@ -528834,34 +528243,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), - [sym__identifier_token] = ACTIONS(3861), - [anon_sym_alias] = ACTIONS(3863), - [anon_sym_global] = ACTIONS(3863), - [anon_sym_LPAREN] = ACTIONS(6091), - [anon_sym_ref] = ACTIONS(4231), - [anon_sym_delegate] = ACTIONS(5791), - [anon_sym_file] = ACTIONS(3863), - [anon_sym_readonly] = ACTIONS(6189), - [anon_sym_where] = ACTIONS(3863), - [anon_sym_notnull] = ACTIONS(3863), - [anon_sym_unmanaged] = ACTIONS(3863), - [anon_sym_scoped] = ACTIONS(5874), - [anon_sym_var] = ACTIONS(5795), - [sym_predefined_type] = ACTIONS(5797), - [anon_sym_yield] = ACTIONS(3863), - [anon_sym_when] = ACTIONS(3863), - [anon_sym_from] = ACTIONS(3863), - [anon_sym_into] = ACTIONS(3863), - [anon_sym_join] = ACTIONS(3863), - [anon_sym_on] = ACTIONS(3863), - [anon_sym_equals] = ACTIONS(3863), - [anon_sym_let] = ACTIONS(3863), - [anon_sym_orderby] = ACTIONS(3863), - [anon_sym_ascending] = ACTIONS(3863), - [anon_sym_descending] = ACTIONS(3863), - [anon_sym_group] = ACTIONS(3863), - [anon_sym_by] = ACTIONS(3863), - [anon_sym_select] = ACTIONS(3863), + [sym__identifier_token] = ACTIONS(3466), + [anon_sym_extern] = ACTIONS(3466), + [anon_sym_alias] = ACTIONS(3466), + [anon_sym_global] = ACTIONS(3466), + [anon_sym_unsafe] = ACTIONS(3466), + [anon_sym_static] = ACTIONS(3466), + [anon_sym_LPAREN] = ACTIONS(5128), + [anon_sym_ref] = ACTIONS(3466), + [anon_sym_delegate] = ACTIONS(3466), + [anon_sym_abstract] = ACTIONS(3466), + [anon_sym_async] = ACTIONS(3466), + [anon_sym_const] = ACTIONS(3466), + [anon_sym_file] = ACTIONS(3466), + [anon_sym_fixed] = ACTIONS(3466), + [anon_sym_internal] = ACTIONS(3466), + [anon_sym_new] = ACTIONS(3466), + [anon_sym_override] = ACTIONS(3466), + [anon_sym_partial] = ACTIONS(3466), + [anon_sym_private] = ACTIONS(3466), + [anon_sym_protected] = ACTIONS(3466), + [anon_sym_public] = ACTIONS(3466), + [anon_sym_readonly] = ACTIONS(3466), + [anon_sym_required] = ACTIONS(3466), + [anon_sym_sealed] = ACTIONS(3466), + [anon_sym_virtual] = ACTIONS(3466), + [anon_sym_volatile] = ACTIONS(3466), + [anon_sym_where] = ACTIONS(3466), + [anon_sym_notnull] = ACTIONS(3466), + [anon_sym_unmanaged] = ACTIONS(3466), + [anon_sym_scoped] = ACTIONS(3466), + [anon_sym_var] = ACTIONS(3466), + [sym_predefined_type] = ACTIONS(3466), + [anon_sym_yield] = ACTIONS(3466), + [anon_sym_when] = ACTIONS(3466), + [anon_sym_from] = ACTIONS(3466), + [anon_sym_into] = ACTIONS(3466), + [anon_sym_join] = ACTIONS(3466), + [anon_sym_on] = ACTIONS(3466), + [anon_sym_equals] = ACTIONS(3466), + [anon_sym_let] = ACTIONS(3466), + [anon_sym_orderby] = ACTIONS(3466), + [anon_sym_ascending] = ACTIONS(3466), + [anon_sym_descending] = ACTIONS(3466), + [anon_sym_group] = ACTIONS(3466), + [anon_sym_by] = ACTIONS(3466), + [anon_sym_select] = ACTIONS(3466), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -528874,24 +528301,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3822] = { - [sym__name] = STATE(3453), - [sym_alias_qualified_name] = STATE(3251), - [sym__simple_name] = STATE(3251), - [sym_qualified_name] = STATE(3251), - [sym_generic_name] = STATE(3246), - [sym_type] = STATE(3273), - [sym_implicit_type] = STATE(3253), - [sym_array_type] = STATE(3255), - [sym__array_base_type] = STATE(7101), - [sym_nullable_type] = STATE(3257), - [sym_pointer_type] = STATE(3257), - [sym__pointer_base_type] = STATE(7546), - [sym_function_pointer_type] = STATE(3257), - [sym_ref_type] = STATE(3253), - [sym_scoped_type] = STATE(3253), - [sym_tuple_type] = STATE(3258), - [sym_identifier] = STATE(3167), - [sym__reserved_identifier] = STATE(3225), + [sym__name] = STATE(3511), + [sym_alias_qualified_name] = STATE(2907), + [sym__simple_name] = STATE(2907), + [sym_qualified_name] = STATE(2907), + [sym_generic_name] = STATE(2950), + [sym_type] = STATE(2941), + [sym_implicit_type] = STATE(2926), + [sym_array_type] = STATE(2934), + [sym__array_base_type] = STATE(7061), + [sym_nullable_type] = STATE(2942), + [sym_pointer_type] = STATE(2942), + [sym__pointer_base_type] = STATE(7640), + [sym_function_pointer_type] = STATE(2942), + [sym_ref_type] = STATE(2926), + [sym_scoped_type] = STATE(2926), + [sym_tuple_type] = STATE(2943), + [sym_identifier] = STATE(3317), + [sym__reserved_identifier] = STATE(2900), [sym_preproc_region] = STATE(3822), [sym_preproc_endregion] = STATE(3822), [sym_preproc_line] = STATE(3822), @@ -528901,34 +528328,34 @@ 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), - [sym__identifier_token] = ACTIONS(3788), - [anon_sym_alias] = ACTIONS(3790), - [anon_sym_global] = ACTIONS(3790), - [anon_sym_LPAREN] = ACTIONS(6059), - [anon_sym_ref] = ACTIONS(4173), - [anon_sym_delegate] = ACTIONS(5818), - [anon_sym_file] = ACTIONS(3790), - [anon_sym_readonly] = ACTIONS(6191), - [anon_sym_where] = ACTIONS(3790), - [anon_sym_notnull] = ACTIONS(3790), - [anon_sym_unmanaged] = ACTIONS(3790), - [anon_sym_scoped] = ACTIONS(5890), - [anon_sym_var] = ACTIONS(5822), - [sym_predefined_type] = ACTIONS(5824), - [anon_sym_yield] = ACTIONS(3790), - [anon_sym_when] = ACTIONS(3790), - [anon_sym_from] = ACTIONS(3790), - [anon_sym_into] = ACTIONS(3790), - [anon_sym_join] = ACTIONS(3790), - [anon_sym_on] = ACTIONS(3790), - [anon_sym_equals] = ACTIONS(3790), - [anon_sym_let] = ACTIONS(3790), - [anon_sym_orderby] = ACTIONS(3790), - [anon_sym_ascending] = ACTIONS(3790), - [anon_sym_descending] = ACTIONS(3790), - [anon_sym_group] = ACTIONS(3790), - [anon_sym_by] = ACTIONS(3790), - [anon_sym_select] = ACTIONS(3790), + [sym__identifier_token] = ACTIONS(3814), + [anon_sym_alias] = ACTIONS(3816), + [anon_sym_global] = ACTIONS(3816), + [anon_sym_LPAREN] = ACTIONS(6123), + [anon_sym_ref] = ACTIONS(4201), + [anon_sym_delegate] = ACTIONS(5719), + [anon_sym_file] = ACTIONS(3816), + [anon_sym_readonly] = ACTIONS(6173), + [anon_sym_where] = ACTIONS(3816), + [anon_sym_notnull] = ACTIONS(3816), + [anon_sym_unmanaged] = ACTIONS(3816), + [anon_sym_scoped] = ACTIONS(5831), + [anon_sym_var] = ACTIONS(5723), + [sym_predefined_type] = ACTIONS(5725), + [anon_sym_yield] = ACTIONS(3816), + [anon_sym_when] = ACTIONS(3816), + [anon_sym_from] = ACTIONS(3816), + [anon_sym_into] = ACTIONS(3816), + [anon_sym_join] = ACTIONS(3816), + [anon_sym_on] = ACTIONS(3816), + [anon_sym_equals] = ACTIONS(3816), + [anon_sym_let] = ACTIONS(3816), + [anon_sym_orderby] = ACTIONS(3816), + [anon_sym_ascending] = ACTIONS(3816), + [anon_sym_descending] = ACTIONS(3816), + [anon_sym_group] = ACTIONS(3816), + [anon_sym_by] = ACTIONS(3816), + [anon_sym_select] = ACTIONS(3816), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -528941,24 +528368,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3823] = { - [sym__name] = STATE(3453), - [sym_alias_qualified_name] = STATE(3251), - [sym__simple_name] = STATE(3251), - [sym_qualified_name] = STATE(3251), - [sym_generic_name] = STATE(3246), - [sym_type] = STATE(3273), - [sym_implicit_type] = STATE(3253), - [sym_array_type] = STATE(3255), - [sym__array_base_type] = STATE(7101), - [sym_nullable_type] = STATE(3257), - [sym_pointer_type] = STATE(3257), - [sym__pointer_base_type] = STATE(7546), - [sym_function_pointer_type] = STATE(3257), - [sym_ref_type] = STATE(3253), - [sym_scoped_type] = STATE(3253), - [sym_tuple_type] = STATE(3258), - [sym_identifier] = STATE(3167), - [sym__reserved_identifier] = STATE(3225), [sym_preproc_region] = STATE(3823), [sym_preproc_endregion] = STATE(3823), [sym_preproc_line] = STATE(3823), @@ -528968,34 +528377,52 @@ 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), - [sym__identifier_token] = ACTIONS(3788), - [anon_sym_alias] = ACTIONS(3790), - [anon_sym_global] = ACTIONS(3790), - [anon_sym_LPAREN] = ACTIONS(6059), - [anon_sym_ref] = ACTIONS(4175), - [anon_sym_delegate] = ACTIONS(5818), - [anon_sym_file] = ACTIONS(3790), - [anon_sym_readonly] = ACTIONS(6193), - [anon_sym_where] = ACTIONS(3790), - [anon_sym_notnull] = ACTIONS(3790), - [anon_sym_unmanaged] = ACTIONS(3790), - [anon_sym_scoped] = ACTIONS(5854), - [anon_sym_var] = ACTIONS(5822), - [sym_predefined_type] = ACTIONS(5824), - [anon_sym_yield] = ACTIONS(3790), - [anon_sym_when] = ACTIONS(3790), - [anon_sym_from] = ACTIONS(3790), - [anon_sym_into] = ACTIONS(3790), - [anon_sym_join] = ACTIONS(3790), - [anon_sym_on] = ACTIONS(3790), - [anon_sym_equals] = ACTIONS(3790), - [anon_sym_let] = ACTIONS(3790), - [anon_sym_orderby] = ACTIONS(3790), - [anon_sym_ascending] = ACTIONS(3790), - [anon_sym_descending] = ACTIONS(3790), - [anon_sym_group] = ACTIONS(3790), - [anon_sym_by] = ACTIONS(3790), - [anon_sym_select] = ACTIONS(3790), + [sym__identifier_token] = ACTIONS(3466), + [anon_sym_extern] = ACTIONS(3466), + [anon_sym_alias] = ACTIONS(3466), + [anon_sym_global] = ACTIONS(3466), + [anon_sym_unsafe] = ACTIONS(3466), + [anon_sym_static] = ACTIONS(3466), + [anon_sym_LPAREN] = ACTIONS(6175), + [anon_sym_ref] = ACTIONS(3466), + [anon_sym_delegate] = ACTIONS(3466), + [anon_sym_abstract] = ACTIONS(3466), + [anon_sym_async] = ACTIONS(3466), + [anon_sym_const] = ACTIONS(3466), + [anon_sym_file] = ACTIONS(3466), + [anon_sym_fixed] = ACTIONS(3466), + [anon_sym_internal] = ACTIONS(3466), + [anon_sym_new] = ACTIONS(3466), + [anon_sym_override] = ACTIONS(3466), + [anon_sym_partial] = ACTIONS(3466), + [anon_sym_private] = ACTIONS(3466), + [anon_sym_protected] = ACTIONS(3466), + [anon_sym_public] = ACTIONS(3466), + [anon_sym_readonly] = ACTIONS(3466), + [anon_sym_required] = ACTIONS(3466), + [anon_sym_sealed] = ACTIONS(3466), + [anon_sym_virtual] = ACTIONS(3466), + [anon_sym_volatile] = ACTIONS(3466), + [anon_sym_where] = ACTIONS(3466), + [anon_sym_notnull] = ACTIONS(3466), + [anon_sym_unmanaged] = ACTIONS(3466), + [anon_sym_scoped] = ACTIONS(3466), + [anon_sym_var] = ACTIONS(3466), + [sym_predefined_type] = ACTIONS(3466), + [anon_sym_yield] = ACTIONS(3466), + [anon_sym_when] = ACTIONS(3466), + [anon_sym_from] = ACTIONS(3466), + [anon_sym_into] = ACTIONS(3466), + [anon_sym_join] = ACTIONS(3466), + [anon_sym_on] = ACTIONS(3466), + [anon_sym_equals] = ACTIONS(3466), + [anon_sym_let] = ACTIONS(3466), + [anon_sym_orderby] = ACTIONS(3466), + [anon_sym_ascending] = ACTIONS(3466), + [anon_sym_descending] = ACTIONS(3466), + [anon_sym_group] = ACTIONS(3466), + [anon_sym_by] = ACTIONS(3466), + [anon_sym_select] = ACTIONS(3466), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -529008,24 +528435,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3824] = { - [sym__name] = STATE(3219), - [sym_alias_qualified_name] = STATE(3200), - [sym__simple_name] = STATE(3200), - [sym_qualified_name] = STATE(3200), - [sym_generic_name] = STATE(3156), - [sym_type] = STATE(3164), - [sym_implicit_type] = STATE(3205), - [sym_array_type] = STATE(3206), - [sym__array_base_type] = STATE(7259), - [sym_nullable_type] = STATE(3151), - [sym_pointer_type] = STATE(3151), - [sym__pointer_base_type] = STATE(7662), - [sym_function_pointer_type] = STATE(3151), - [sym_ref_type] = STATE(3205), - [sym_scoped_type] = STATE(3205), - [sym_tuple_type] = STATE(3209), - [sym_identifier] = STATE(3129), - [sym__reserved_identifier] = STATE(3149), [sym_preproc_region] = STATE(3824), [sym_preproc_endregion] = STATE(3824), [sym_preproc_line] = STATE(3824), @@ -529035,34 +528444,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(3773), - [anon_sym_alias] = ACTIONS(3775), - [anon_sym_global] = ACTIONS(3775), - [anon_sym_LPAREN] = ACTIONS(6171), - [anon_sym_ref] = ACTIONS(4177), - [anon_sym_delegate] = ACTIONS(5706), - [anon_sym_file] = ACTIONS(3775), - [anon_sym_readonly] = ACTIONS(6195), - [anon_sym_where] = ACTIONS(3775), - [anon_sym_notnull] = ACTIONS(3775), - [anon_sym_unmanaged] = ACTIONS(3775), - [anon_sym_scoped] = ACTIONS(5743), - [anon_sym_var] = ACTIONS(5710), - [sym_predefined_type] = ACTIONS(5712), - [anon_sym_yield] = ACTIONS(3775), - [anon_sym_when] = ACTIONS(3775), - [anon_sym_from] = ACTIONS(3775), - [anon_sym_into] = ACTIONS(3775), - [anon_sym_join] = ACTIONS(3775), - [anon_sym_on] = ACTIONS(3775), - [anon_sym_equals] = ACTIONS(3775), - [anon_sym_let] = ACTIONS(3775), - [anon_sym_orderby] = ACTIONS(3775), - [anon_sym_ascending] = ACTIONS(3775), - [anon_sym_descending] = ACTIONS(3775), - [anon_sym_group] = ACTIONS(3775), - [anon_sym_by] = ACTIONS(3775), - [anon_sym_select] = ACTIONS(3775), + [anon_sym_LBRACK] = ACTIONS(4965), + [anon_sym_COMMA] = ACTIONS(4965), + [anon_sym_LPAREN] = ACTIONS(4965), + [anon_sym_LT] = ACTIONS(4967), + [anon_sym_GT] = ACTIONS(4967), + [anon_sym_where] = ACTIONS(4965), + [anon_sym_QMARK] = ACTIONS(4967), + [anon_sym_BANG] = ACTIONS(4967), + [anon_sym_PLUS_PLUS] = ACTIONS(4965), + [anon_sym_DASH_DASH] = ACTIONS(4965), + [anon_sym_PLUS] = ACTIONS(4967), + [anon_sym_DASH] = ACTIONS(4967), + [anon_sym_STAR] = ACTIONS(4965), + [anon_sym_SLASH] = ACTIONS(4967), + [anon_sym_PERCENT] = ACTIONS(4965), + [anon_sym_CARET] = ACTIONS(4965), + [anon_sym_PIPE] = ACTIONS(4967), + [anon_sym_AMP] = ACTIONS(4967), + [anon_sym_LT_LT] = ACTIONS(4965), + [anon_sym_GT_GT] = ACTIONS(4967), + [anon_sym_GT_GT_GT] = ACTIONS(4965), + [anon_sym_EQ_EQ] = ACTIONS(4965), + [anon_sym_BANG_EQ] = ACTIONS(4965), + [anon_sym_GT_EQ] = ACTIONS(4965), + [anon_sym_LT_EQ] = ACTIONS(4965), + [anon_sym_DOT] = ACTIONS(4967), + [anon_sym_switch] = ACTIONS(4965), + [anon_sym_DOT_DOT] = ACTIONS(4965), + [anon_sym_and] = ACTIONS(4965), + [anon_sym_or] = ACTIONS(4967), + [anon_sym_AMP_AMP] = ACTIONS(4965), + [anon_sym_PIPE_PIPE] = ACTIONS(4965), + [anon_sym_QMARK_QMARK] = ACTIONS(4965), + [anon_sym_from] = ACTIONS(4965), + [anon_sym_into] = ACTIONS(4965), + [anon_sym_join] = ACTIONS(4965), + [anon_sym_let] = ACTIONS(4965), + [anon_sym_orderby] = ACTIONS(4965), + [anon_sym_ascending] = ACTIONS(4965), + [anon_sym_descending] = ACTIONS(4965), + [anon_sym_group] = ACTIONS(4965), + [anon_sym_select] = ACTIONS(4965), + [anon_sym_as] = ACTIONS(4967), + [anon_sym_is] = ACTIONS(4965), + [anon_sym_DASH_GT] = ACTIONS(4965), + [anon_sym_with] = ACTIONS(4965), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -529075,24 +528502,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3825] = { - [sym__name] = STATE(3219), - [sym_alias_qualified_name] = STATE(3200), - [sym__simple_name] = STATE(3200), - [sym_qualified_name] = STATE(3200), - [sym_generic_name] = STATE(3156), - [sym_type] = STATE(3164), - [sym_implicit_type] = STATE(3205), - [sym_array_type] = STATE(3206), - [sym__array_base_type] = STATE(7259), - [sym_nullable_type] = STATE(3151), - [sym_pointer_type] = STATE(3151), - [sym__pointer_base_type] = STATE(7662), - [sym_function_pointer_type] = STATE(3151), - [sym_ref_type] = STATE(3205), - [sym_scoped_type] = STATE(3205), - [sym_tuple_type] = STATE(3209), - [sym_identifier] = STATE(3129), - [sym__reserved_identifier] = STATE(3149), + [sym__name] = STATE(2615), + [sym_alias_qualified_name] = STATE(2402), + [sym__simple_name] = STATE(2402), + [sym_qualified_name] = STATE(2402), + [sym_generic_name] = STATE(2384), + [sym_type] = STATE(2397), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(2373), + [sym__array_base_type] = STATE(7083), + [sym_nullable_type] = STATE(2375), + [sym_pointer_type] = STATE(2375), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(2375), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(2377), + [sym_identifier] = STATE(2547), + [sym__reserved_identifier] = STATE(2354), [sym_preproc_region] = STATE(3825), [sym_preproc_endregion] = STATE(3825), [sym_preproc_line] = STATE(3825), @@ -529102,34 +528529,34 @@ 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), - [sym__identifier_token] = ACTIONS(3773), - [anon_sym_alias] = ACTIONS(3775), - [anon_sym_global] = ACTIONS(3775), - [anon_sym_LPAREN] = ACTIONS(6171), - [anon_sym_ref] = ACTIONS(4183), - [anon_sym_delegate] = ACTIONS(5706), - [anon_sym_file] = ACTIONS(3775), - [anon_sym_readonly] = ACTIONS(6197), - [anon_sym_where] = ACTIONS(3775), - [anon_sym_notnull] = ACTIONS(3775), - [anon_sym_unmanaged] = ACTIONS(3775), - [anon_sym_scoped] = ACTIONS(5708), - [anon_sym_var] = ACTIONS(5710), - [sym_predefined_type] = ACTIONS(5712), - [anon_sym_yield] = ACTIONS(3775), - [anon_sym_when] = ACTIONS(3775), - [anon_sym_from] = ACTIONS(3775), - [anon_sym_into] = ACTIONS(3775), - [anon_sym_join] = ACTIONS(3775), - [anon_sym_on] = ACTIONS(3775), - [anon_sym_equals] = ACTIONS(3775), - [anon_sym_let] = ACTIONS(3775), - [anon_sym_orderby] = ACTIONS(3775), - [anon_sym_ascending] = ACTIONS(3775), - [anon_sym_descending] = ACTIONS(3775), - [anon_sym_group] = ACTIONS(3775), - [anon_sym_by] = ACTIONS(3775), - [anon_sym_select] = ACTIONS(3775), + [sym__identifier_token] = ACTIONS(4080), + [anon_sym_alias] = ACTIONS(4082), + [anon_sym_global] = ACTIONS(4082), + [anon_sym_LPAREN] = ACTIONS(6111), + [anon_sym_ref] = ACTIONS(3614), + [anon_sym_delegate] = ACTIONS(3438), + [anon_sym_file] = ACTIONS(4082), + [anon_sym_readonly] = ACTIONS(2893), + [anon_sym_where] = ACTIONS(4082), + [anon_sym_notnull] = ACTIONS(4082), + [anon_sym_unmanaged] = ACTIONS(4082), + [anon_sym_scoped] = ACTIONS(6177), + [anon_sym_var] = ACTIONS(5817), + [sym_predefined_type] = ACTIONS(5819), + [anon_sym_yield] = ACTIONS(4082), + [anon_sym_when] = ACTIONS(4082), + [anon_sym_from] = ACTIONS(4082), + [anon_sym_into] = ACTIONS(4082), + [anon_sym_join] = ACTIONS(4082), + [anon_sym_on] = ACTIONS(4082), + [anon_sym_equals] = ACTIONS(4082), + [anon_sym_let] = ACTIONS(4082), + [anon_sym_orderby] = ACTIONS(4082), + [anon_sym_ascending] = ACTIONS(4082), + [anon_sym_descending] = ACTIONS(4082), + [anon_sym_group] = ACTIONS(4082), + [anon_sym_by] = ACTIONS(4082), + [anon_sym_select] = ACTIONS(4082), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -529142,6 +528569,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3826] = { + [sym_argument_list] = STATE(3771), + [sym_bracketed_argument_list] = STATE(2892), [sym_preproc_region] = STATE(3826), [sym_preproc_endregion] = STATE(3826), [sym_preproc_line] = STATE(3826), @@ -529151,52 +528580,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), - [anon_sym_LBRACK] = ACTIONS(2953), - [anon_sym_COMMA] = ACTIONS(2953), - [anon_sym_LPAREN] = ACTIONS(2953), - [anon_sym_LT] = ACTIONS(2951), - [anon_sym_GT] = ACTIONS(2951), - [anon_sym_where] = ACTIONS(2953), - [anon_sym_QMARK] = ACTIONS(2951), - [anon_sym_BANG] = ACTIONS(2951), - [anon_sym_PLUS_PLUS] = ACTIONS(2953), - [anon_sym_DASH_DASH] = ACTIONS(2953), - [anon_sym_PLUS] = ACTIONS(2951), - [anon_sym_DASH] = ACTIONS(2951), - [anon_sym_STAR] = ACTIONS(2953), - [anon_sym_SLASH] = ACTIONS(2951), - [anon_sym_PERCENT] = ACTIONS(2953), - [anon_sym_CARET] = ACTIONS(2953), - [anon_sym_PIPE] = ACTIONS(2951), - [anon_sym_AMP] = ACTIONS(2951), - [anon_sym_LT_LT] = ACTIONS(2953), - [anon_sym_GT_GT] = ACTIONS(2951), - [anon_sym_GT_GT_GT] = ACTIONS(2953), - [anon_sym_EQ_EQ] = ACTIONS(2953), - [anon_sym_BANG_EQ] = ACTIONS(2953), - [anon_sym_GT_EQ] = ACTIONS(2953), - [anon_sym_LT_EQ] = ACTIONS(2953), - [anon_sym_DOT] = ACTIONS(2951), - [anon_sym_switch] = ACTIONS(2953), - [anon_sym_DOT_DOT] = ACTIONS(2953), - [anon_sym_and] = ACTIONS(2953), - [anon_sym_or] = ACTIONS(2951), - [anon_sym_AMP_AMP] = ACTIONS(2953), - [anon_sym_PIPE_PIPE] = ACTIONS(2953), - [anon_sym_QMARK_QMARK] = ACTIONS(2953), - [anon_sym_from] = ACTIONS(2953), - [anon_sym_into] = ACTIONS(2953), - [anon_sym_join] = ACTIONS(2953), - [anon_sym_let] = ACTIONS(2953), - [anon_sym_orderby] = ACTIONS(2953), - [anon_sym_ascending] = ACTIONS(2953), - [anon_sym_descending] = ACTIONS(2953), - [anon_sym_group] = ACTIONS(2953), - [anon_sym_select] = ACTIONS(2953), - [anon_sym_as] = ACTIONS(2951), - [anon_sym_is] = ACTIONS(2953), - [anon_sym_DASH_GT] = ACTIONS(2953), - [anon_sym_with] = ACTIONS(2953), + [anon_sym_LBRACK] = ACTIONS(5650), + [anon_sym_COMMA] = ACTIONS(5737), + [anon_sym_LPAREN] = ACTIONS(5591), + [anon_sym_LT] = ACTIONS(6043), + [anon_sym_GT] = ACTIONS(6043), + [anon_sym_where] = ACTIONS(5737), + [anon_sym_QMARK] = ACTIONS(5739), + [anon_sym_BANG] = ACTIONS(5658), + [anon_sym_PLUS_PLUS] = ACTIONS(5660), + [anon_sym_DASH_DASH] = ACTIONS(5660), + [anon_sym_PLUS] = ACTIONS(6047), + [anon_sym_DASH] = ACTIONS(6047), + [anon_sym_STAR] = ACTIONS(6049), + [anon_sym_SLASH] = ACTIONS(6051), + [anon_sym_PERCENT] = ACTIONS(6049), + [anon_sym_CARET] = ACTIONS(5737), + [anon_sym_PIPE] = ACTIONS(5739), + [anon_sym_AMP] = ACTIONS(6057), + [anon_sym_LT_LT] = ACTIONS(6059), + [anon_sym_GT_GT] = ACTIONS(6061), + [anon_sym_GT_GT_GT] = ACTIONS(6059), + [anon_sym_EQ_EQ] = ACTIONS(6063), + [anon_sym_BANG_EQ] = ACTIONS(6063), + [anon_sym_GT_EQ] = ACTIONS(6065), + [anon_sym_LT_EQ] = ACTIONS(6065), + [anon_sym_DOT] = ACTIONS(4697), + [anon_sym_switch] = ACTIONS(5682), + [anon_sym_DOT_DOT] = ACTIONS(6067), + [anon_sym_AMP_AMP] = ACTIONS(5737), + [anon_sym_PIPE_PIPE] = ACTIONS(5737), + [anon_sym_QMARK_QMARK] = ACTIONS(5737), + [anon_sym_from] = ACTIONS(5737), + [anon_sym_into] = ACTIONS(5737), + [anon_sym_join] = ACTIONS(5737), + [anon_sym_let] = ACTIONS(5737), + [anon_sym_orderby] = ACTIONS(5737), + [anon_sym_ascending] = ACTIONS(5737), + [anon_sym_descending] = ACTIONS(5737), + [anon_sym_group] = ACTIONS(5737), + [anon_sym_select] = ACTIONS(5737), + [anon_sym_as] = ACTIONS(5694), + [anon_sym_is] = ACTIONS(6075), + [anon_sym_DASH_GT] = ACTIONS(4699), + [anon_sym_with] = ACTIONS(5698), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -529209,24 +528636,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3827] = { - [sym__name] = STATE(3219), - [sym_alias_qualified_name] = STATE(3200), - [sym__simple_name] = STATE(3200), - [sym_qualified_name] = STATE(3200), - [sym_generic_name] = STATE(3156), - [sym_type] = STATE(3164), - [sym_implicit_type] = STATE(3205), - [sym_array_type] = STATE(3206), - [sym__array_base_type] = STATE(7259), - [sym_nullable_type] = STATE(3151), - [sym_pointer_type] = STATE(3151), - [sym__pointer_base_type] = STATE(7662), - [sym_function_pointer_type] = STATE(3151), - [sym_ref_type] = STATE(3205), - [sym_scoped_type] = STATE(3205), - [sym_tuple_type] = STATE(3209), - [sym_identifier] = STATE(3129), - [sym__reserved_identifier] = STATE(3149), + [sym_argument_list] = STATE(3771), + [sym_bracketed_argument_list] = STATE(2892), [sym_preproc_region] = STATE(3827), [sym_preproc_endregion] = STATE(3827), [sym_preproc_line] = STATE(3827), @@ -529236,34 +528647,50 @@ 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), - [sym__identifier_token] = ACTIONS(3773), - [anon_sym_alias] = ACTIONS(3775), - [anon_sym_global] = ACTIONS(3775), - [anon_sym_LPAREN] = ACTIONS(6171), - [anon_sym_ref] = ACTIONS(4185), - [anon_sym_delegate] = ACTIONS(5706), - [anon_sym_file] = ACTIONS(3775), - [anon_sym_readonly] = ACTIONS(6199), - [anon_sym_where] = ACTIONS(3775), - [anon_sym_notnull] = ACTIONS(3775), - [anon_sym_unmanaged] = ACTIONS(3775), - [anon_sym_scoped] = ACTIONS(5735), - [anon_sym_var] = ACTIONS(5710), - [sym_predefined_type] = ACTIONS(5712), - [anon_sym_yield] = ACTIONS(3775), - [anon_sym_when] = ACTIONS(3775), - [anon_sym_from] = ACTIONS(3775), - [anon_sym_into] = ACTIONS(3775), - [anon_sym_join] = ACTIONS(3775), - [anon_sym_on] = ACTIONS(3775), - [anon_sym_equals] = ACTIONS(3775), - [anon_sym_let] = ACTIONS(3775), - [anon_sym_orderby] = ACTIONS(3775), - [anon_sym_ascending] = ACTIONS(3775), - [anon_sym_descending] = ACTIONS(3775), - [anon_sym_group] = ACTIONS(3775), - [anon_sym_by] = ACTIONS(3775), - [anon_sym_select] = ACTIONS(3775), + [anon_sym_LBRACK] = ACTIONS(5650), + [anon_sym_COMMA] = ACTIONS(5737), + [anon_sym_LPAREN] = ACTIONS(5591), + [anon_sym_LT] = ACTIONS(6043), + [anon_sym_GT] = ACTIONS(6043), + [anon_sym_where] = ACTIONS(5737), + [anon_sym_QMARK] = ACTIONS(5739), + [anon_sym_BANG] = ACTIONS(5658), + [anon_sym_PLUS_PLUS] = ACTIONS(5660), + [anon_sym_DASH_DASH] = ACTIONS(5660), + [anon_sym_PLUS] = ACTIONS(6047), + [anon_sym_DASH] = ACTIONS(6047), + [anon_sym_STAR] = ACTIONS(6049), + [anon_sym_SLASH] = ACTIONS(6051), + [anon_sym_PERCENT] = ACTIONS(6049), + [anon_sym_CARET] = ACTIONS(6053), + [anon_sym_PIPE] = ACTIONS(5739), + [anon_sym_AMP] = ACTIONS(6057), + [anon_sym_LT_LT] = ACTIONS(6059), + [anon_sym_GT_GT] = ACTIONS(6061), + [anon_sym_GT_GT_GT] = ACTIONS(6059), + [anon_sym_EQ_EQ] = ACTIONS(6063), + [anon_sym_BANG_EQ] = ACTIONS(6063), + [anon_sym_GT_EQ] = ACTIONS(6065), + [anon_sym_LT_EQ] = ACTIONS(6065), + [anon_sym_DOT] = ACTIONS(4697), + [anon_sym_switch] = ACTIONS(5682), + [anon_sym_DOT_DOT] = ACTIONS(6067), + [anon_sym_AMP_AMP] = ACTIONS(5737), + [anon_sym_PIPE_PIPE] = ACTIONS(5737), + [anon_sym_QMARK_QMARK] = ACTIONS(5737), + [anon_sym_from] = ACTIONS(5737), + [anon_sym_into] = ACTIONS(5737), + [anon_sym_join] = ACTIONS(5737), + [anon_sym_let] = ACTIONS(5737), + [anon_sym_orderby] = ACTIONS(5737), + [anon_sym_ascending] = ACTIONS(5737), + [anon_sym_descending] = ACTIONS(5737), + [anon_sym_group] = ACTIONS(5737), + [anon_sym_select] = ACTIONS(5737), + [anon_sym_as] = ACTIONS(5694), + [anon_sym_is] = ACTIONS(6075), + [anon_sym_DASH_GT] = ACTIONS(4699), + [anon_sym_with] = ACTIONS(5698), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -529276,8 +528703,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3828] = { - [sym_argument_list] = STATE(3259), - [sym_bracketed_argument_list] = STATE(2613), + [sym_argument_list] = STATE(3771), + [sym_bracketed_argument_list] = STATE(2892), [sym_preproc_region] = STATE(3828), [sym_preproc_endregion] = STATE(3828), [sym_preproc_line] = STATE(3828), @@ -529287,50 +528714,50 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3828), [sym_preproc_define] = STATE(3828), [sym_preproc_undef] = STATE(3828), - [anon_sym_SEMI] = ACTIONS(1221), - [anon_sym_LBRACK] = ACTIONS(5283), - [anon_sym_COMMA] = ACTIONS(1221), - [anon_sym_RBRACK] = ACTIONS(1221), - [anon_sym_LPAREN] = ACTIONS(5247), - [anon_sym_RPAREN] = ACTIONS(1221), - [anon_sym_RBRACE] = ACTIONS(1221), - [anon_sym_LT] = ACTIONS(1223), - [anon_sym_GT] = ACTIONS(1223), - [anon_sym_QMARK] = ACTIONS(1223), - [anon_sym_BANG] = ACTIONS(5285), - [anon_sym_PLUS_PLUS] = ACTIONS(5287), - [anon_sym_DASH_DASH] = ACTIONS(5287), - [anon_sym_PLUS] = ACTIONS(1223), - [anon_sym_DASH] = ACTIONS(1223), - [anon_sym_STAR] = ACTIONS(1221), - [anon_sym_SLASH] = ACTIONS(1223), - [anon_sym_PERCENT] = ACTIONS(1221), - [anon_sym_CARET] = ACTIONS(1221), - [anon_sym_PIPE] = ACTIONS(1223), - [anon_sym_AMP] = ACTIONS(1223), - [anon_sym_LT_LT] = ACTIONS(1221), - [anon_sym_GT_GT] = ACTIONS(1223), - [anon_sym_GT_GT_GT] = ACTIONS(1221), - [anon_sym_EQ_EQ] = ACTIONS(1221), - [anon_sym_BANG_EQ] = ACTIONS(1221), - [anon_sym_GT_EQ] = ACTIONS(1221), - [anon_sym_LT_EQ] = ACTIONS(1221), - [anon_sym_DOT] = ACTIONS(4075), - [anon_sym_switch] = ACTIONS(1221), - [anon_sym_DOT_DOT] = ACTIONS(6149), - [anon_sym_and] = ACTIONS(1221), - [anon_sym_or] = ACTIONS(1221), - [anon_sym_AMP_AMP] = ACTIONS(1221), - [anon_sym_PIPE_PIPE] = ACTIONS(1221), - [anon_sym_QMARK_QMARK] = ACTIONS(1221), - [anon_sym_into] = ACTIONS(1221), - [anon_sym_as] = ACTIONS(1221), - [anon_sym_is] = ACTIONS(1221), - [anon_sym_DASH_GT] = ACTIONS(4077), - [anon_sym_with] = ACTIONS(1221), - [aux_sym_preproc_if_token3] = ACTIONS(1221), - [aux_sym_preproc_else_token1] = ACTIONS(1221), - [aux_sym_preproc_elif_token1] = ACTIONS(1221), + [anon_sym_LBRACK] = ACTIONS(5650), + [anon_sym_COMMA] = ACTIONS(5737), + [anon_sym_LPAREN] = ACTIONS(5591), + [anon_sym_LT] = ACTIONS(6043), + [anon_sym_GT] = ACTIONS(6043), + [anon_sym_where] = ACTIONS(5737), + [anon_sym_QMARK] = ACTIONS(5739), + [anon_sym_BANG] = ACTIONS(5658), + [anon_sym_PLUS_PLUS] = ACTIONS(5660), + [anon_sym_DASH_DASH] = ACTIONS(5660), + [anon_sym_PLUS] = ACTIONS(6047), + [anon_sym_DASH] = ACTIONS(6047), + [anon_sym_STAR] = ACTIONS(6049), + [anon_sym_SLASH] = ACTIONS(6051), + [anon_sym_PERCENT] = ACTIONS(6049), + [anon_sym_CARET] = ACTIONS(5737), + [anon_sym_PIPE] = ACTIONS(5739), + [anon_sym_AMP] = ACTIONS(5739), + [anon_sym_LT_LT] = ACTIONS(6059), + [anon_sym_GT_GT] = ACTIONS(6061), + [anon_sym_GT_GT_GT] = ACTIONS(6059), + [anon_sym_EQ_EQ] = ACTIONS(6063), + [anon_sym_BANG_EQ] = ACTIONS(6063), + [anon_sym_GT_EQ] = ACTIONS(6065), + [anon_sym_LT_EQ] = ACTIONS(6065), + [anon_sym_DOT] = ACTIONS(4697), + [anon_sym_switch] = ACTIONS(5682), + [anon_sym_DOT_DOT] = ACTIONS(6067), + [anon_sym_AMP_AMP] = ACTIONS(5737), + [anon_sym_PIPE_PIPE] = ACTIONS(5737), + [anon_sym_QMARK_QMARK] = ACTIONS(5737), + [anon_sym_from] = ACTIONS(5737), + [anon_sym_into] = ACTIONS(5737), + [anon_sym_join] = ACTIONS(5737), + [anon_sym_let] = ACTIONS(5737), + [anon_sym_orderby] = ACTIONS(5737), + [anon_sym_ascending] = ACTIONS(5737), + [anon_sym_descending] = ACTIONS(5737), + [anon_sym_group] = ACTIONS(5737), + [anon_sym_select] = ACTIONS(5737), + [anon_sym_as] = ACTIONS(5694), + [anon_sym_is] = ACTIONS(6075), + [anon_sym_DASH_GT] = ACTIONS(4699), + [anon_sym_with] = ACTIONS(5698), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -529343,6 +528770,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3829] = { + [sym_argument_list] = STATE(3771), + [sym_bracketed_argument_list] = STATE(2892), [sym_preproc_region] = STATE(3829), [sym_preproc_endregion] = STATE(3829), [sym_preproc_line] = STATE(3829), @@ -529352,52 +528781,50 @@ 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), - [anon_sym_LBRACK] = ACTIONS(3143), - [anon_sym_COMMA] = ACTIONS(3143), - [anon_sym_LPAREN] = ACTIONS(3143), - [anon_sym_LT] = ACTIONS(3141), - [anon_sym_GT] = ACTIONS(3141), - [anon_sym_where] = ACTIONS(3143), - [anon_sym_QMARK] = ACTIONS(3141), - [anon_sym_BANG] = ACTIONS(3141), - [anon_sym_PLUS_PLUS] = ACTIONS(3143), - [anon_sym_DASH_DASH] = ACTIONS(3143), - [anon_sym_PLUS] = ACTIONS(3141), - [anon_sym_DASH] = ACTIONS(3141), - [anon_sym_STAR] = ACTIONS(3143), - [anon_sym_SLASH] = ACTIONS(3141), - [anon_sym_PERCENT] = ACTIONS(3143), - [anon_sym_CARET] = ACTIONS(3143), - [anon_sym_PIPE] = ACTIONS(3141), - [anon_sym_AMP] = ACTIONS(3141), - [anon_sym_LT_LT] = ACTIONS(3143), - [anon_sym_GT_GT] = ACTIONS(3141), - [anon_sym_GT_GT_GT] = ACTIONS(3143), - [anon_sym_EQ_EQ] = ACTIONS(3143), - [anon_sym_BANG_EQ] = ACTIONS(3143), - [anon_sym_GT_EQ] = ACTIONS(3143), - [anon_sym_LT_EQ] = ACTIONS(3143), - [anon_sym_DOT] = ACTIONS(3141), - [anon_sym_switch] = ACTIONS(3143), - [anon_sym_DOT_DOT] = ACTIONS(3143), - [anon_sym_and] = ACTIONS(3143), - [anon_sym_or] = ACTIONS(3141), - [anon_sym_AMP_AMP] = ACTIONS(3143), - [anon_sym_PIPE_PIPE] = ACTIONS(3143), - [anon_sym_QMARK_QMARK] = ACTIONS(3143), - [anon_sym_from] = ACTIONS(3143), - [anon_sym_into] = ACTIONS(3143), - [anon_sym_join] = ACTIONS(3143), - [anon_sym_let] = ACTIONS(3143), - [anon_sym_orderby] = ACTIONS(3143), - [anon_sym_ascending] = ACTIONS(3143), - [anon_sym_descending] = ACTIONS(3143), - [anon_sym_group] = ACTIONS(3143), - [anon_sym_select] = ACTIONS(3143), - [anon_sym_as] = ACTIONS(3141), - [anon_sym_is] = ACTIONS(3143), - [anon_sym_DASH_GT] = ACTIONS(3143), - [anon_sym_with] = ACTIONS(3143), + [anon_sym_LBRACK] = ACTIONS(5650), + [anon_sym_COMMA] = ACTIONS(5737), + [anon_sym_LPAREN] = ACTIONS(5591), + [anon_sym_LT] = ACTIONS(6043), + [anon_sym_GT] = ACTIONS(6043), + [anon_sym_where] = ACTIONS(5737), + [anon_sym_QMARK] = ACTIONS(5739), + [anon_sym_BANG] = ACTIONS(5658), + [anon_sym_PLUS_PLUS] = ACTIONS(5660), + [anon_sym_DASH_DASH] = ACTIONS(5660), + [anon_sym_PLUS] = ACTIONS(6047), + [anon_sym_DASH] = ACTIONS(6047), + [anon_sym_STAR] = ACTIONS(6049), + [anon_sym_SLASH] = ACTIONS(6051), + [anon_sym_PERCENT] = ACTIONS(6049), + [anon_sym_CARET] = ACTIONS(5737), + [anon_sym_PIPE] = ACTIONS(5739), + [anon_sym_AMP] = ACTIONS(5739), + [anon_sym_LT_LT] = ACTIONS(6059), + [anon_sym_GT_GT] = ACTIONS(6061), + [anon_sym_GT_GT_GT] = ACTIONS(6059), + [anon_sym_EQ_EQ] = ACTIONS(5737), + [anon_sym_BANG_EQ] = ACTIONS(5737), + [anon_sym_GT_EQ] = ACTIONS(6065), + [anon_sym_LT_EQ] = ACTIONS(6065), + [anon_sym_DOT] = ACTIONS(4697), + [anon_sym_switch] = ACTIONS(5682), + [anon_sym_DOT_DOT] = ACTIONS(6067), + [anon_sym_AMP_AMP] = ACTIONS(5737), + [anon_sym_PIPE_PIPE] = ACTIONS(5737), + [anon_sym_QMARK_QMARK] = ACTIONS(5737), + [anon_sym_from] = ACTIONS(5737), + [anon_sym_into] = ACTIONS(5737), + [anon_sym_join] = ACTIONS(5737), + [anon_sym_let] = ACTIONS(5737), + [anon_sym_orderby] = ACTIONS(5737), + [anon_sym_ascending] = ACTIONS(5737), + [anon_sym_descending] = ACTIONS(5737), + [anon_sym_group] = ACTIONS(5737), + [anon_sym_select] = ACTIONS(5737), + [anon_sym_as] = ACTIONS(5694), + [anon_sym_is] = ACTIONS(6075), + [anon_sym_DASH_GT] = ACTIONS(4699), + [anon_sym_with] = ACTIONS(5698), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -529410,24 +528837,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3830] = { - [sym__name] = STATE(5738), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(4096), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(4109), - [sym_type] = STATE(4632), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_identifier] = STATE(5568), - [sym__reserved_identifier] = STATE(3691), + [sym_argument_list] = STATE(3771), + [sym_bracketed_argument_list] = STATE(2892), [sym_preproc_region] = STATE(3830), [sym_preproc_endregion] = STATE(3830), [sym_preproc_line] = STATE(3830), @@ -529437,34 +528848,50 @@ 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), - [sym__identifier_token] = ACTIONS(2967), - [anon_sym_alias] = ACTIONS(2971), - [anon_sym_global] = ACTIONS(2971), - [anon_sym_LPAREN] = ACTIONS(2979), - [anon_sym_ref] = ACTIONS(3658), - [anon_sym_delegate] = ACTIONS(3454), - [anon_sym_file] = ACTIONS(2971), - [anon_sym_readonly] = ACTIONS(2855), - [anon_sym_where] = ACTIONS(2971), - [anon_sym_notnull] = ACTIONS(2971), - [anon_sym_unmanaged] = ACTIONS(2971), - [anon_sym_scoped] = ACTIONS(6201), - [anon_sym_var] = ACTIONS(2999), - [sym_predefined_type] = ACTIONS(3001), - [anon_sym_yield] = ACTIONS(2971), - [anon_sym_when] = ACTIONS(2971), - [anon_sym_from] = ACTIONS(2971), - [anon_sym_into] = ACTIONS(2971), - [anon_sym_join] = ACTIONS(2971), - [anon_sym_on] = ACTIONS(2971), - [anon_sym_equals] = ACTIONS(2971), - [anon_sym_let] = ACTIONS(2971), - [anon_sym_orderby] = ACTIONS(2971), - [anon_sym_ascending] = ACTIONS(2971), - [anon_sym_descending] = ACTIONS(2971), - [anon_sym_group] = ACTIONS(2971), - [anon_sym_by] = ACTIONS(2971), - [anon_sym_select] = ACTIONS(2971), + [anon_sym_LBRACK] = ACTIONS(5650), + [anon_sym_COMMA] = ACTIONS(5737), + [anon_sym_LPAREN] = ACTIONS(5591), + [anon_sym_LT] = ACTIONS(6043), + [anon_sym_GT] = ACTIONS(6043), + [anon_sym_where] = ACTIONS(5737), + [anon_sym_QMARK] = ACTIONS(5739), + [anon_sym_BANG] = ACTIONS(5658), + [anon_sym_PLUS_PLUS] = ACTIONS(5660), + [anon_sym_DASH_DASH] = ACTIONS(5660), + [anon_sym_PLUS] = ACTIONS(6047), + [anon_sym_DASH] = ACTIONS(6047), + [anon_sym_STAR] = ACTIONS(6049), + [anon_sym_SLASH] = ACTIONS(6051), + [anon_sym_PERCENT] = ACTIONS(6049), + [anon_sym_CARET] = ACTIONS(6053), + [anon_sym_PIPE] = ACTIONS(6055), + [anon_sym_AMP] = ACTIONS(6057), + [anon_sym_LT_LT] = ACTIONS(6059), + [anon_sym_GT_GT] = ACTIONS(6061), + [anon_sym_GT_GT_GT] = ACTIONS(6059), + [anon_sym_EQ_EQ] = ACTIONS(6063), + [anon_sym_BANG_EQ] = ACTIONS(6063), + [anon_sym_GT_EQ] = ACTIONS(6065), + [anon_sym_LT_EQ] = ACTIONS(6065), + [anon_sym_DOT] = ACTIONS(4697), + [anon_sym_switch] = ACTIONS(5682), + [anon_sym_DOT_DOT] = ACTIONS(6067), + [anon_sym_AMP_AMP] = ACTIONS(5737), + [anon_sym_PIPE_PIPE] = ACTIONS(5737), + [anon_sym_QMARK_QMARK] = ACTIONS(5737), + [anon_sym_from] = ACTIONS(5737), + [anon_sym_into] = ACTIONS(5737), + [anon_sym_join] = ACTIONS(5737), + [anon_sym_let] = ACTIONS(5737), + [anon_sym_orderby] = ACTIONS(5737), + [anon_sym_ascending] = ACTIONS(5737), + [anon_sym_descending] = ACTIONS(5737), + [anon_sym_group] = ACTIONS(5737), + [anon_sym_select] = ACTIONS(5737), + [anon_sym_as] = ACTIONS(5694), + [anon_sym_is] = ACTIONS(6075), + [anon_sym_DASH_GT] = ACTIONS(4699), + [anon_sym_with] = ACTIONS(5698), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -529477,25 +528904,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3831] = { - [sym_variable_declaration] = STATE(7410), - [sym__name] = STATE(4390), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(4096), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(4109), - [sym_type] = STATE(5922), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_identifier] = STATE(4087), - [sym__reserved_identifier] = STATE(3691), + [sym_argument_list] = STATE(3771), + [sym_bracketed_argument_list] = STATE(2892), [sym_preproc_region] = STATE(3831), [sym_preproc_endregion] = STATE(3831), [sym_preproc_line] = STATE(3831), @@ -529505,33 +528915,50 @@ 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), - [sym__identifier_token] = ACTIONS(2967), - [anon_sym_alias] = ACTIONS(2971), - [anon_sym_global] = ACTIONS(2971), - [anon_sym_LPAREN] = ACTIONS(2979), - [anon_sym_ref] = ACTIONS(3452), - [anon_sym_delegate] = ACTIONS(3454), - [anon_sym_file] = ACTIONS(2971), - [anon_sym_where] = ACTIONS(2971), - [anon_sym_notnull] = ACTIONS(2971), - [anon_sym_unmanaged] = ACTIONS(2971), - [anon_sym_scoped] = ACTIONS(2997), - [anon_sym_var] = ACTIONS(2999), - [sym_predefined_type] = ACTIONS(3001), - [anon_sym_yield] = ACTIONS(2971), - [anon_sym_when] = ACTIONS(2971), - [anon_sym_from] = ACTIONS(2971), - [anon_sym_into] = ACTIONS(2971), - [anon_sym_join] = ACTIONS(2971), - [anon_sym_on] = ACTIONS(2971), - [anon_sym_equals] = ACTIONS(2971), - [anon_sym_let] = ACTIONS(2971), - [anon_sym_orderby] = ACTIONS(2971), - [anon_sym_ascending] = ACTIONS(2971), - [anon_sym_descending] = ACTIONS(2971), - [anon_sym_group] = ACTIONS(2971), - [anon_sym_by] = ACTIONS(2971), - [anon_sym_select] = ACTIONS(2971), + [anon_sym_LBRACK] = ACTIONS(5650), + [anon_sym_COMMA] = ACTIONS(5737), + [anon_sym_LPAREN] = ACTIONS(5591), + [anon_sym_LT] = ACTIONS(6043), + [anon_sym_GT] = ACTIONS(6043), + [anon_sym_where] = ACTIONS(5737), + [anon_sym_QMARK] = ACTIONS(5739), + [anon_sym_BANG] = ACTIONS(5658), + [anon_sym_PLUS_PLUS] = ACTIONS(5660), + [anon_sym_DASH_DASH] = ACTIONS(5660), + [anon_sym_PLUS] = ACTIONS(6047), + [anon_sym_DASH] = ACTIONS(6047), + [anon_sym_STAR] = ACTIONS(6049), + [anon_sym_SLASH] = ACTIONS(6051), + [anon_sym_PERCENT] = ACTIONS(6049), + [anon_sym_CARET] = ACTIONS(6053), + [anon_sym_PIPE] = ACTIONS(6055), + [anon_sym_AMP] = ACTIONS(6057), + [anon_sym_LT_LT] = ACTIONS(6059), + [anon_sym_GT_GT] = ACTIONS(6061), + [anon_sym_GT_GT_GT] = ACTIONS(6059), + [anon_sym_EQ_EQ] = ACTIONS(6063), + [anon_sym_BANG_EQ] = ACTIONS(6063), + [anon_sym_GT_EQ] = ACTIONS(6065), + [anon_sym_LT_EQ] = ACTIONS(6065), + [anon_sym_DOT] = ACTIONS(4697), + [anon_sym_switch] = ACTIONS(5682), + [anon_sym_DOT_DOT] = ACTIONS(6067), + [anon_sym_AMP_AMP] = ACTIONS(6069), + [anon_sym_PIPE_PIPE] = ACTIONS(5737), + [anon_sym_QMARK_QMARK] = ACTIONS(5737), + [anon_sym_from] = ACTIONS(5737), + [anon_sym_into] = ACTIONS(5737), + [anon_sym_join] = ACTIONS(5737), + [anon_sym_let] = ACTIONS(5737), + [anon_sym_orderby] = ACTIONS(5737), + [anon_sym_ascending] = ACTIONS(5737), + [anon_sym_descending] = ACTIONS(5737), + [anon_sym_group] = ACTIONS(5737), + [anon_sym_select] = ACTIONS(5737), + [anon_sym_as] = ACTIONS(5694), + [anon_sym_is] = ACTIONS(6075), + [anon_sym_DASH_GT] = ACTIONS(4699), + [anon_sym_with] = ACTIONS(5698), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -529544,25 +528971,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3832] = { - [sym__name] = STATE(4390), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(4096), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(4109), - [sym_type] = STATE(5950), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_tuple_element] = STATE(7146), - [sym_identifier] = STATE(4087), - [sym__reserved_identifier] = STATE(3691), + [sym_argument_list] = STATE(3771), + [sym_bracketed_argument_list] = STATE(2892), [sym_preproc_region] = STATE(3832), [sym_preproc_endregion] = STATE(3832), [sym_preproc_line] = STATE(3832), @@ -529572,33 +528982,50 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3832), [sym_preproc_define] = STATE(3832), [sym_preproc_undef] = STATE(3832), - [sym__identifier_token] = ACTIONS(2967), - [anon_sym_alias] = ACTIONS(2971), - [anon_sym_global] = ACTIONS(2971), - [anon_sym_LPAREN] = ACTIONS(2979), - [anon_sym_ref] = ACTIONS(3606), - [anon_sym_delegate] = ACTIONS(3454), - [anon_sym_file] = ACTIONS(2971), - [anon_sym_where] = ACTIONS(2971), - [anon_sym_notnull] = ACTIONS(2971), - [anon_sym_unmanaged] = ACTIONS(2971), - [anon_sym_scoped] = ACTIONS(5737), - [anon_sym_var] = ACTIONS(4737), - [sym_predefined_type] = ACTIONS(3001), - [anon_sym_yield] = ACTIONS(2971), - [anon_sym_when] = ACTIONS(2971), - [anon_sym_from] = ACTIONS(2971), - [anon_sym_into] = ACTIONS(2971), - [anon_sym_join] = ACTIONS(2971), - [anon_sym_on] = ACTIONS(2971), - [anon_sym_equals] = ACTIONS(2971), - [anon_sym_let] = ACTIONS(2971), - [anon_sym_orderby] = ACTIONS(2971), - [anon_sym_ascending] = ACTIONS(2971), - [anon_sym_descending] = ACTIONS(2971), - [anon_sym_group] = ACTIONS(2971), - [anon_sym_by] = ACTIONS(2971), - [anon_sym_select] = ACTIONS(2971), + [anon_sym_LBRACK] = ACTIONS(5650), + [anon_sym_COMMA] = ACTIONS(5737), + [anon_sym_LPAREN] = ACTIONS(5591), + [anon_sym_LT] = ACTIONS(6043), + [anon_sym_GT] = ACTIONS(6043), + [anon_sym_where] = ACTIONS(5737), + [anon_sym_QMARK] = ACTIONS(5739), + [anon_sym_BANG] = ACTIONS(5658), + [anon_sym_PLUS_PLUS] = ACTIONS(5660), + [anon_sym_DASH_DASH] = ACTIONS(5660), + [anon_sym_PLUS] = ACTIONS(6047), + [anon_sym_DASH] = ACTIONS(6047), + [anon_sym_STAR] = ACTIONS(6049), + [anon_sym_SLASH] = ACTIONS(6051), + [anon_sym_PERCENT] = ACTIONS(6049), + [anon_sym_CARET] = ACTIONS(6053), + [anon_sym_PIPE] = ACTIONS(6055), + [anon_sym_AMP] = ACTIONS(6057), + [anon_sym_LT_LT] = ACTIONS(6059), + [anon_sym_GT_GT] = ACTIONS(6061), + [anon_sym_GT_GT_GT] = ACTIONS(6059), + [anon_sym_EQ_EQ] = ACTIONS(6063), + [anon_sym_BANG_EQ] = ACTIONS(6063), + [anon_sym_GT_EQ] = ACTIONS(6065), + [anon_sym_LT_EQ] = ACTIONS(6065), + [anon_sym_DOT] = ACTIONS(4697), + [anon_sym_switch] = ACTIONS(5682), + [anon_sym_DOT_DOT] = ACTIONS(6067), + [anon_sym_AMP_AMP] = ACTIONS(6069), + [anon_sym_PIPE_PIPE] = ACTIONS(6071), + [anon_sym_QMARK_QMARK] = ACTIONS(6073), + [anon_sym_from] = ACTIONS(5737), + [anon_sym_into] = ACTIONS(5737), + [anon_sym_join] = ACTIONS(5737), + [anon_sym_let] = ACTIONS(5737), + [anon_sym_orderby] = ACTIONS(5737), + [anon_sym_ascending] = ACTIONS(5737), + [anon_sym_descending] = ACTIONS(5737), + [anon_sym_group] = ACTIONS(5737), + [anon_sym_select] = ACTIONS(5737), + [anon_sym_as] = ACTIONS(5694), + [anon_sym_is] = ACTIONS(6075), + [anon_sym_DASH_GT] = ACTIONS(4699), + [anon_sym_with] = ACTIONS(5698), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -529611,6 +529038,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3833] = { + [sym__name] = STATE(3511), + [sym_alias_qualified_name] = STATE(2907), + [sym__simple_name] = STATE(2907), + [sym_qualified_name] = STATE(2907), + [sym_generic_name] = STATE(2950), + [sym_type] = STATE(2941), + [sym_implicit_type] = STATE(2926), + [sym_array_type] = STATE(2934), + [sym__array_base_type] = STATE(7061), + [sym_nullable_type] = STATE(2942), + [sym_pointer_type] = STATE(2942), + [sym__pointer_base_type] = STATE(7640), + [sym_function_pointer_type] = STATE(2942), + [sym_ref_type] = STATE(2926), + [sym_scoped_type] = STATE(2926), + [sym_tuple_type] = STATE(2943), + [sym_identifier] = STATE(3317), + [sym__reserved_identifier] = STATE(2900), [sym_preproc_region] = STATE(3833), [sym_preproc_endregion] = STATE(3833), [sym_preproc_line] = STATE(3833), @@ -529620,52 +529065,34 @@ 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(3482), - [anon_sym_extern] = ACTIONS(3482), - [anon_sym_alias] = ACTIONS(3482), - [anon_sym_global] = ACTIONS(3482), - [anon_sym_unsafe] = ACTIONS(3482), - [anon_sym_static] = ACTIONS(3482), - [anon_sym_LPAREN] = ACTIONS(5449), - [anon_sym_ref] = ACTIONS(3482), - [anon_sym_delegate] = 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_scoped] = ACTIONS(3482), - [anon_sym_var] = ACTIONS(3482), - [sym_predefined_type] = ACTIONS(3482), - [anon_sym_yield] = ACTIONS(3482), - [anon_sym_when] = ACTIONS(3482), - [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), + [sym__identifier_token] = ACTIONS(3814), + [anon_sym_alias] = ACTIONS(3816), + [anon_sym_global] = ACTIONS(3816), + [anon_sym_LPAREN] = ACTIONS(6123), + [anon_sym_ref] = ACTIONS(4203), + [anon_sym_delegate] = ACTIONS(5719), + [anon_sym_file] = ACTIONS(3816), + [anon_sym_readonly] = ACTIONS(6179), + [anon_sym_where] = ACTIONS(3816), + [anon_sym_notnull] = ACTIONS(3816), + [anon_sym_unmanaged] = ACTIONS(3816), + [anon_sym_scoped] = ACTIONS(5875), + [anon_sym_var] = ACTIONS(5723), + [sym_predefined_type] = ACTIONS(5725), + [anon_sym_yield] = ACTIONS(3816), + [anon_sym_when] = ACTIONS(3816), + [anon_sym_from] = ACTIONS(3816), + [anon_sym_into] = ACTIONS(3816), + [anon_sym_join] = ACTIONS(3816), + [anon_sym_on] = ACTIONS(3816), + [anon_sym_equals] = ACTIONS(3816), + [anon_sym_let] = ACTIONS(3816), + [anon_sym_orderby] = ACTIONS(3816), + [anon_sym_ascending] = ACTIONS(3816), + [anon_sym_descending] = ACTIONS(3816), + [anon_sym_group] = ACTIONS(3816), + [anon_sym_by] = ACTIONS(3816), + [anon_sym_select] = ACTIONS(3816), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -529678,8 +529105,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3834] = { - [sym_argument_list] = STATE(3886), - [sym_bracketed_argument_list] = STATE(2902), [sym_preproc_region] = STATE(3834), [sym_preproc_endregion] = STATE(3834), [sym_preproc_line] = STATE(3834), @@ -529689,117 +529114,119 @@ 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(5658), - [anon_sym_COMMA] = ACTIONS(5899), - [anon_sym_LPAREN] = ACTIONS(5624), - [anon_sym_LT] = ACTIONS(6017), - [anon_sym_GT] = ACTIONS(6017), - [anon_sym_where] = ACTIONS(5899), - [anon_sym_QMARK] = ACTIONS(6019), - [anon_sym_BANG] = ACTIONS(5666), - [anon_sym_PLUS_PLUS] = ACTIONS(5668), - [anon_sym_DASH_DASH] = ACTIONS(5668), - [anon_sym_PLUS] = ACTIONS(6021), - [anon_sym_DASH] = ACTIONS(6021), - [anon_sym_STAR] = ACTIONS(6023), - [anon_sym_SLASH] = ACTIONS(6025), - [anon_sym_PERCENT] = ACTIONS(6023), - [anon_sym_CARET] = ACTIONS(6027), - [anon_sym_PIPE] = ACTIONS(6029), - [anon_sym_AMP] = ACTIONS(6031), - [anon_sym_LT_LT] = ACTIONS(6033), - [anon_sym_GT_GT] = ACTIONS(6035), - [anon_sym_GT_GT_GT] = ACTIONS(6033), - [anon_sym_EQ_EQ] = ACTIONS(6037), - [anon_sym_BANG_EQ] = ACTIONS(6037), - [anon_sym_GT_EQ] = ACTIONS(6039), - [anon_sym_LT_EQ] = ACTIONS(6039), - [anon_sym_DOT] = ACTIONS(4733), - [anon_sym_switch] = ACTIONS(5688), - [anon_sym_DOT_DOT] = ACTIONS(6041), - [anon_sym_AMP_AMP] = ACTIONS(6043), - [anon_sym_PIPE_PIPE] = ACTIONS(6045), - [anon_sym_QMARK_QMARK] = ACTIONS(6047), - [anon_sym_from] = ACTIONS(5899), - [anon_sym_into] = ACTIONS(5899), - [anon_sym_join] = ACTIONS(5899), - [anon_sym_let] = ACTIONS(5899), - [anon_sym_orderby] = ACTIONS(5899), - [anon_sym_ascending] = ACTIONS(5899), - [anon_sym_descending] = ACTIONS(5899), - [anon_sym_group] = ACTIONS(5899), - [anon_sym_select] = ACTIONS(5899), - [anon_sym_as] = ACTIONS(5692), - [anon_sym_is] = ACTIONS(6049), - [anon_sym_DASH_GT] = ACTIONS(4719), - [anon_sym_with] = ACTIONS(5696), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - }, - [3835] = { - [sym_argument_list] = STATE(3886), - [sym_bracketed_argument_list] = STATE(2902), - [sym_preproc_region] = STATE(3835), - [sym_preproc_endregion] = STATE(3835), - [sym_preproc_line] = STATE(3835), - [sym_preproc_pragma] = STATE(3835), + [anon_sym_LBRACK] = ACTIONS(4969), + [anon_sym_COMMA] = ACTIONS(4969), + [anon_sym_LPAREN] = ACTIONS(4969), + [anon_sym_LT] = ACTIONS(4971), + [anon_sym_GT] = ACTIONS(4971), + [anon_sym_where] = ACTIONS(4969), + [anon_sym_QMARK] = ACTIONS(4971), + [anon_sym_BANG] = ACTIONS(4971), + [anon_sym_PLUS_PLUS] = ACTIONS(4969), + [anon_sym_DASH_DASH] = ACTIONS(4969), + [anon_sym_PLUS] = ACTIONS(4971), + [anon_sym_DASH] = ACTIONS(4971), + [anon_sym_STAR] = ACTIONS(4969), + [anon_sym_SLASH] = ACTIONS(4971), + [anon_sym_PERCENT] = ACTIONS(4969), + [anon_sym_CARET] = ACTIONS(4969), + [anon_sym_PIPE] = ACTIONS(4971), + [anon_sym_AMP] = ACTIONS(4971), + [anon_sym_LT_LT] = ACTIONS(4969), + [anon_sym_GT_GT] = ACTIONS(4971), + [anon_sym_GT_GT_GT] = ACTIONS(4969), + [anon_sym_EQ_EQ] = ACTIONS(4969), + [anon_sym_BANG_EQ] = ACTIONS(4969), + [anon_sym_GT_EQ] = ACTIONS(4969), + [anon_sym_LT_EQ] = ACTIONS(4969), + [anon_sym_DOT] = ACTIONS(4971), + [anon_sym_switch] = ACTIONS(4969), + [anon_sym_DOT_DOT] = ACTIONS(4969), + [anon_sym_and] = ACTIONS(4969), + [anon_sym_or] = ACTIONS(4971), + [anon_sym_AMP_AMP] = ACTIONS(4969), + [anon_sym_PIPE_PIPE] = ACTIONS(4969), + [anon_sym_QMARK_QMARK] = ACTIONS(4969), + [anon_sym_from] = ACTIONS(4969), + [anon_sym_into] = ACTIONS(4969), + [anon_sym_join] = ACTIONS(4969), + [anon_sym_let] = ACTIONS(4969), + [anon_sym_orderby] = ACTIONS(4969), + [anon_sym_ascending] = ACTIONS(4969), + [anon_sym_descending] = ACTIONS(4969), + [anon_sym_group] = ACTIONS(4969), + [anon_sym_select] = ACTIONS(4969), + [anon_sym_as] = ACTIONS(4971), + [anon_sym_is] = ACTIONS(4969), + [anon_sym_DASH_GT] = ACTIONS(4969), + [anon_sym_with] = ACTIONS(4969), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + }, + [3835] = { + [sym__name] = STATE(5130), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(4068), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_ref_type] = STATE(2331), + [sym__scoped_base_type] = STATE(2339), + [sym_identifier] = STATE(4370), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_region] = STATE(3835), + [sym_preproc_endregion] = STATE(3835), + [sym_preproc_line] = STATE(3835), + [sym_preproc_pragma] = STATE(3835), [sym_preproc_nullable] = STATE(3835), [sym_preproc_error] = STATE(3835), [sym_preproc_warning] = STATE(3835), [sym_preproc_define] = STATE(3835), [sym_preproc_undef] = STATE(3835), - [anon_sym_LBRACK] = ACTIONS(5658), - [anon_sym_COMMA] = ACTIONS(1221), - [anon_sym_LPAREN] = ACTIONS(5624), - [anon_sym_LT] = ACTIONS(1223), - [anon_sym_GT] = ACTIONS(1223), - [anon_sym_where] = ACTIONS(1221), - [anon_sym_QMARK] = ACTIONS(1223), - [anon_sym_BANG] = ACTIONS(5666), - [anon_sym_PLUS_PLUS] = ACTIONS(5668), - [anon_sym_DASH_DASH] = ACTIONS(5668), - [anon_sym_PLUS] = ACTIONS(1223), - [anon_sym_DASH] = ACTIONS(1223), - [anon_sym_STAR] = ACTIONS(1221), - [anon_sym_SLASH] = ACTIONS(1223), - [anon_sym_PERCENT] = ACTIONS(1221), - [anon_sym_CARET] = ACTIONS(1221), - [anon_sym_PIPE] = ACTIONS(1223), - [anon_sym_AMP] = ACTIONS(1223), - [anon_sym_LT_LT] = ACTIONS(1221), - [anon_sym_GT_GT] = ACTIONS(1223), - [anon_sym_GT_GT_GT] = ACTIONS(1221), - [anon_sym_EQ_EQ] = ACTIONS(1221), - [anon_sym_BANG_EQ] = ACTIONS(1221), - [anon_sym_GT_EQ] = ACTIONS(1221), - [anon_sym_LT_EQ] = ACTIONS(1221), - [anon_sym_DOT] = ACTIONS(4733), - [anon_sym_switch] = ACTIONS(1221), - [anon_sym_DOT_DOT] = ACTIONS(6041), - [anon_sym_AMP_AMP] = ACTIONS(1221), - [anon_sym_PIPE_PIPE] = ACTIONS(1221), - [anon_sym_QMARK_QMARK] = ACTIONS(1221), - [anon_sym_from] = ACTIONS(1221), - [anon_sym_into] = ACTIONS(1221), - [anon_sym_join] = ACTIONS(1221), - [anon_sym_let] = ACTIONS(1221), - [anon_sym_orderby] = ACTIONS(1221), - [anon_sym_ascending] = ACTIONS(1221), - [anon_sym_descending] = ACTIONS(1221), - [anon_sym_group] = ACTIONS(1221), - [anon_sym_select] = ACTIONS(1221), - [anon_sym_as] = ACTIONS(1223), - [anon_sym_is] = ACTIONS(1221), - [anon_sym_DASH_GT] = ACTIONS(4719), - [anon_sym_with] = ACTIONS(1221), + [sym__identifier_token] = ACTIONS(3584), + [anon_sym_alias] = ACTIONS(3587), + [anon_sym_SEMI] = ACTIONS(3429), + [anon_sym_global] = ACTIONS(3587), + [anon_sym_EQ] = ACTIONS(3431), + [anon_sym_LBRACK] = ACTIONS(3429), + [anon_sym_LPAREN] = ACTIONS(3429), + [anon_sym_ref] = ACTIONS(3436), + [anon_sym_file] = ACTIONS(3587), + [anon_sym_LT] = ACTIONS(3429), + [anon_sym_in] = ACTIONS(3431), + [anon_sym_where] = ACTIONS(3587), + [anon_sym_QMARK] = ACTIONS(3429), + [anon_sym_notnull] = ACTIONS(3587), + [anon_sym_unmanaged] = ACTIONS(3587), + [anon_sym_operator] = ACTIONS(3431), + [anon_sym_STAR] = ACTIONS(3429), + [anon_sym_this] = ACTIONS(3431), + [anon_sym_DOT] = ACTIONS(3429), + [anon_sym_scoped] = ACTIONS(3587), + [anon_sym_EQ_GT] = ACTIONS(3429), + [anon_sym_COLON_COLON] = ACTIONS(3429), + [anon_sym_var] = ACTIONS(3587), + [anon_sym_yield] = ACTIONS(3587), + [anon_sym_when] = ACTIONS(3587), + [anon_sym_from] = ACTIONS(3587), + [anon_sym_into] = ACTIONS(3587), + [anon_sym_join] = ACTIONS(3587), + [anon_sym_on] = ACTIONS(3587), + [anon_sym_equals] = ACTIONS(3587), + [anon_sym_let] = ACTIONS(3587), + [anon_sym_orderby] = ACTIONS(3587), + [anon_sym_ascending] = ACTIONS(3587), + [anon_sym_descending] = ACTIONS(3587), + [anon_sym_group] = ACTIONS(3587), + [anon_sym_by] = ACTIONS(3587), + [anon_sym_select] = ACTIONS(3587), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -529812,25 +529239,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3836] = { - [sym_variable_declaration] = STATE(7719), - [sym__name] = STATE(4390), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(4096), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(4109), - [sym_type] = STATE(5922), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_identifier] = STATE(4087), - [sym__reserved_identifier] = STATE(3691), [sym_preproc_region] = STATE(3836), [sym_preproc_endregion] = STATE(3836), [sym_preproc_line] = STATE(3836), @@ -529840,33 +529248,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), - [sym__identifier_token] = ACTIONS(2967), - [anon_sym_alias] = ACTIONS(2971), - [anon_sym_global] = ACTIONS(2971), - [anon_sym_LPAREN] = ACTIONS(2979), - [anon_sym_ref] = ACTIONS(3452), - [anon_sym_delegate] = ACTIONS(3454), - [anon_sym_file] = ACTIONS(2971), - [anon_sym_where] = ACTIONS(2971), - [anon_sym_notnull] = ACTIONS(2971), - [anon_sym_unmanaged] = ACTIONS(2971), - [anon_sym_scoped] = ACTIONS(2997), - [anon_sym_var] = ACTIONS(2999), - [sym_predefined_type] = ACTIONS(3001), - [anon_sym_yield] = ACTIONS(2971), - [anon_sym_when] = ACTIONS(2971), - [anon_sym_from] = ACTIONS(2971), - [anon_sym_into] = ACTIONS(2971), - [anon_sym_join] = ACTIONS(2971), - [anon_sym_on] = ACTIONS(2971), - [anon_sym_equals] = ACTIONS(2971), - [anon_sym_let] = ACTIONS(2971), - [anon_sym_orderby] = ACTIONS(2971), - [anon_sym_ascending] = ACTIONS(2971), - [anon_sym_descending] = ACTIONS(2971), - [anon_sym_group] = ACTIONS(2971), - [anon_sym_by] = ACTIONS(2971), - [anon_sym_select] = ACTIONS(2971), + [anon_sym_LBRACK] = ACTIONS(5142), + [anon_sym_COMMA] = ACTIONS(5142), + [anon_sym_LPAREN] = ACTIONS(5142), + [anon_sym_LT] = ACTIONS(5144), + [anon_sym_GT] = ACTIONS(5144), + [anon_sym_where] = ACTIONS(5142), + [anon_sym_QMARK] = ACTIONS(5144), + [anon_sym_BANG] = ACTIONS(5144), + [anon_sym_PLUS_PLUS] = ACTIONS(5142), + [anon_sym_DASH_DASH] = ACTIONS(5142), + [anon_sym_PLUS] = ACTIONS(5144), + [anon_sym_DASH] = ACTIONS(5144), + [anon_sym_STAR] = ACTIONS(5142), + [anon_sym_SLASH] = ACTIONS(5144), + [anon_sym_PERCENT] = ACTIONS(5142), + [anon_sym_CARET] = ACTIONS(5142), + [anon_sym_PIPE] = ACTIONS(5144), + [anon_sym_AMP] = ACTIONS(5144), + [anon_sym_LT_LT] = ACTIONS(5142), + [anon_sym_GT_GT] = ACTIONS(5144), + [anon_sym_GT_GT_GT] = ACTIONS(5142), + [anon_sym_EQ_EQ] = ACTIONS(5142), + [anon_sym_BANG_EQ] = ACTIONS(5142), + [anon_sym_GT_EQ] = ACTIONS(5142), + [anon_sym_LT_EQ] = ACTIONS(5142), + [anon_sym_DOT] = ACTIONS(5144), + [anon_sym_switch] = ACTIONS(5142), + [anon_sym_DOT_DOT] = ACTIONS(5142), + [anon_sym_and] = ACTIONS(5142), + [anon_sym_or] = ACTIONS(5144), + [anon_sym_AMP_AMP] = ACTIONS(5142), + [anon_sym_PIPE_PIPE] = ACTIONS(5142), + [anon_sym_QMARK_QMARK] = ACTIONS(5142), + [anon_sym_from] = ACTIONS(5142), + [anon_sym_into] = ACTIONS(5142), + [anon_sym_join] = ACTIONS(5142), + [anon_sym_let] = ACTIONS(5142), + [anon_sym_orderby] = ACTIONS(5142), + [anon_sym_ascending] = ACTIONS(5142), + [anon_sym_descending] = ACTIONS(5142), + [anon_sym_group] = ACTIONS(5142), + [anon_sym_select] = ACTIONS(5142), + [anon_sym_as] = ACTIONS(5144), + [anon_sym_is] = ACTIONS(5142), + [anon_sym_DASH_GT] = ACTIONS(5142), + [anon_sym_with] = ACTIONS(5142), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -529888,52 +529315,52 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3837), [sym_preproc_define] = STATE(3837), [sym_preproc_undef] = STATE(3837), - [anon_sym_LBRACK] = ACTIONS(5354), - [anon_sym_COMMA] = ACTIONS(5354), - [anon_sym_LPAREN] = ACTIONS(5354), - [anon_sym_LT] = ACTIONS(5356), - [anon_sym_GT] = ACTIONS(5356), - [anon_sym_where] = ACTIONS(5354), - [anon_sym_QMARK] = ACTIONS(5356), - [anon_sym_BANG] = ACTIONS(5356), - [anon_sym_PLUS_PLUS] = ACTIONS(5354), - [anon_sym_DASH_DASH] = ACTIONS(5354), - [anon_sym_PLUS] = ACTIONS(5356), - [anon_sym_DASH] = ACTIONS(5356), - [anon_sym_STAR] = ACTIONS(5354), - [anon_sym_SLASH] = ACTIONS(5356), - [anon_sym_PERCENT] = ACTIONS(5354), - [anon_sym_CARET] = ACTIONS(5354), - [anon_sym_PIPE] = ACTIONS(5356), - [anon_sym_AMP] = ACTIONS(5356), - [anon_sym_LT_LT] = ACTIONS(5354), - [anon_sym_GT_GT] = ACTIONS(5356), - [anon_sym_GT_GT_GT] = ACTIONS(5354), - [anon_sym_EQ_EQ] = ACTIONS(5354), - [anon_sym_BANG_EQ] = ACTIONS(5354), - [anon_sym_GT_EQ] = ACTIONS(5354), - [anon_sym_LT_EQ] = ACTIONS(5354), - [anon_sym_DOT] = ACTIONS(5356), - [anon_sym_switch] = ACTIONS(5354), - [anon_sym_DOT_DOT] = ACTIONS(5354), - [anon_sym_and] = ACTIONS(6071), - [anon_sym_or] = ACTIONS(6203), - [anon_sym_AMP_AMP] = ACTIONS(5354), - [anon_sym_PIPE_PIPE] = ACTIONS(5354), - [anon_sym_QMARK_QMARK] = ACTIONS(5354), - [anon_sym_from] = ACTIONS(5354), - [anon_sym_into] = ACTIONS(5354), - [anon_sym_join] = ACTIONS(5354), - [anon_sym_let] = ACTIONS(5354), - [anon_sym_orderby] = ACTIONS(5354), - [anon_sym_ascending] = ACTIONS(5354), - [anon_sym_descending] = ACTIONS(5354), - [anon_sym_group] = ACTIONS(5354), - [anon_sym_select] = ACTIONS(5354), - [anon_sym_as] = ACTIONS(5356), - [anon_sym_is] = ACTIONS(5354), - [anon_sym_DASH_GT] = ACTIONS(5354), - [anon_sym_with] = ACTIONS(5354), + [anon_sym_LBRACK] = ACTIONS(4973), + [anon_sym_COMMA] = ACTIONS(4973), + [anon_sym_LPAREN] = ACTIONS(4973), + [anon_sym_LT] = ACTIONS(4975), + [anon_sym_GT] = ACTIONS(4975), + [anon_sym_where] = ACTIONS(4973), + [anon_sym_QMARK] = ACTIONS(4975), + [anon_sym_BANG] = ACTIONS(4975), + [anon_sym_PLUS_PLUS] = ACTIONS(4973), + [anon_sym_DASH_DASH] = ACTIONS(4973), + [anon_sym_PLUS] = ACTIONS(4975), + [anon_sym_DASH] = ACTIONS(4975), + [anon_sym_STAR] = ACTIONS(4973), + [anon_sym_SLASH] = ACTIONS(4975), + [anon_sym_PERCENT] = ACTIONS(4973), + [anon_sym_CARET] = ACTIONS(4973), + [anon_sym_PIPE] = ACTIONS(4975), + [anon_sym_AMP] = ACTIONS(4975), + [anon_sym_LT_LT] = ACTIONS(4973), + [anon_sym_GT_GT] = ACTIONS(4975), + [anon_sym_GT_GT_GT] = ACTIONS(4973), + [anon_sym_EQ_EQ] = ACTIONS(4973), + [anon_sym_BANG_EQ] = ACTIONS(4973), + [anon_sym_GT_EQ] = ACTIONS(4973), + [anon_sym_LT_EQ] = ACTIONS(4973), + [anon_sym_DOT] = ACTIONS(4975), + [anon_sym_switch] = ACTIONS(4973), + [anon_sym_DOT_DOT] = ACTIONS(4973), + [anon_sym_and] = ACTIONS(4973), + [anon_sym_or] = ACTIONS(4975), + [anon_sym_AMP_AMP] = ACTIONS(4973), + [anon_sym_PIPE_PIPE] = ACTIONS(4973), + [anon_sym_QMARK_QMARK] = ACTIONS(4973), + [anon_sym_from] = ACTIONS(4973), + [anon_sym_into] = ACTIONS(4973), + [anon_sym_join] = ACTIONS(4973), + [anon_sym_let] = ACTIONS(4973), + [anon_sym_orderby] = ACTIONS(4973), + [anon_sym_ascending] = ACTIONS(4973), + [anon_sym_descending] = ACTIONS(4973), + [anon_sym_group] = ACTIONS(4973), + [anon_sym_select] = ACTIONS(4973), + [anon_sym_as] = ACTIONS(4975), + [anon_sym_is] = ACTIONS(4973), + [anon_sym_DASH_GT] = ACTIONS(4973), + [anon_sym_with] = ACTIONS(4973), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -529946,6 +529373,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3838] = { + [sym__name] = STATE(4369), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(4068), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(4073), + [sym_type] = STATE(4565), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_identifier] = STATE(4081), + [sym__reserved_identifier] = STATE(3654), [sym_preproc_region] = STATE(3838), [sym_preproc_endregion] = STATE(3838), [sym_preproc_line] = STATE(3838), @@ -529955,52 +529400,34 @@ 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), - [anon_sym_LBRACK] = ACTIONS(6205), - [anon_sym_COMMA] = ACTIONS(6205), - [anon_sym_LPAREN] = ACTIONS(6205), - [anon_sym_LT] = ACTIONS(6207), - [anon_sym_GT] = ACTIONS(6207), - [anon_sym_where] = ACTIONS(6205), - [anon_sym_QMARK] = ACTIONS(6207), - [anon_sym_BANG] = ACTIONS(6207), - [anon_sym_PLUS_PLUS] = ACTIONS(6205), - [anon_sym_DASH_DASH] = ACTIONS(6205), - [anon_sym_PLUS] = ACTIONS(6207), - [anon_sym_DASH] = ACTIONS(6207), - [anon_sym_STAR] = ACTIONS(6205), - [anon_sym_SLASH] = ACTIONS(6207), - [anon_sym_PERCENT] = ACTIONS(6205), - [anon_sym_CARET] = ACTIONS(6205), - [anon_sym_PIPE] = ACTIONS(6207), - [anon_sym_AMP] = ACTIONS(6207), - [anon_sym_LT_LT] = ACTIONS(6205), - [anon_sym_GT_GT] = ACTIONS(6207), - [anon_sym_GT_GT_GT] = ACTIONS(6205), - [anon_sym_EQ_EQ] = ACTIONS(6205), - [anon_sym_BANG_EQ] = ACTIONS(6205), - [anon_sym_GT_EQ] = ACTIONS(6205), - [anon_sym_LT_EQ] = ACTIONS(6205), - [anon_sym_DOT] = ACTIONS(6207), - [anon_sym_switch] = ACTIONS(6205), - [anon_sym_DOT_DOT] = ACTIONS(6205), - [anon_sym_and] = ACTIONS(6071), - [anon_sym_or] = ACTIONS(6203), - [anon_sym_AMP_AMP] = ACTIONS(6205), - [anon_sym_PIPE_PIPE] = ACTIONS(6205), - [anon_sym_QMARK_QMARK] = ACTIONS(6205), - [anon_sym_from] = ACTIONS(6205), - [anon_sym_into] = ACTIONS(6205), - [anon_sym_join] = ACTIONS(6205), - [anon_sym_let] = ACTIONS(6205), - [anon_sym_orderby] = ACTIONS(6205), - [anon_sym_ascending] = ACTIONS(6205), - [anon_sym_descending] = ACTIONS(6205), - [anon_sym_group] = ACTIONS(6205), - [anon_sym_select] = ACTIONS(6205), - [anon_sym_as] = ACTIONS(6207), - [anon_sym_is] = ACTIONS(6205), - [anon_sym_DASH_GT] = ACTIONS(6205), - [anon_sym_with] = ACTIONS(6205), + [sym__identifier_token] = ACTIONS(2965), + [anon_sym_alias] = ACTIONS(2969), + [anon_sym_global] = ACTIONS(2969), + [anon_sym_LPAREN] = ACTIONS(2977), + [anon_sym_ref] = ACTIONS(3624), + [anon_sym_delegate] = ACTIONS(3438), + [anon_sym_file] = ACTIONS(2969), + [anon_sym_readonly] = ACTIONS(2841), + [anon_sym_where] = ACTIONS(2969), + [anon_sym_notnull] = ACTIONS(2969), + [anon_sym_unmanaged] = ACTIONS(2969), + [anon_sym_scoped] = ACTIONS(6037), + [anon_sym_var] = ACTIONS(6039), + [sym_predefined_type] = ACTIONS(2997), + [anon_sym_yield] = ACTIONS(2969), + [anon_sym_when] = ACTIONS(2969), + [anon_sym_from] = ACTIONS(2969), + [anon_sym_into] = ACTIONS(2969), + [anon_sym_join] = ACTIONS(2969), + [anon_sym_on] = ACTIONS(2969), + [anon_sym_equals] = ACTIONS(2969), + [anon_sym_let] = ACTIONS(2969), + [anon_sym_orderby] = ACTIONS(2969), + [anon_sym_ascending] = ACTIONS(2969), + [anon_sym_descending] = ACTIONS(2969), + [anon_sym_group] = ACTIONS(2969), + [anon_sym_by] = ACTIONS(2969), + [anon_sym_select] = ACTIONS(2969), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -530013,8 +529440,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3839] = { - [sym_argument_list] = STATE(3259), - [sym_bracketed_argument_list] = STATE(2613), [sym_preproc_region] = STATE(3839), [sym_preproc_endregion] = STATE(3839), [sym_preproc_line] = STATE(3839), @@ -530024,50 +529449,52 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3839), [sym_preproc_define] = STATE(3839), [sym_preproc_undef] = STATE(3839), - [anon_sym_SEMI] = ACTIONS(5858), - [anon_sym_LBRACK] = ACTIONS(5283), - [anon_sym_COMMA] = ACTIONS(5858), - [anon_sym_RBRACK] = ACTIONS(5858), - [anon_sym_LPAREN] = ACTIONS(5247), - [anon_sym_RPAREN] = ACTIONS(5858), - [anon_sym_RBRACE] = ACTIONS(5858), - [anon_sym_LT] = ACTIONS(6123), - [anon_sym_GT] = ACTIONS(6123), - [anon_sym_QMARK] = ACTIONS(6125), - [anon_sym_BANG] = ACTIONS(5285), - [anon_sym_PLUS_PLUS] = ACTIONS(5287), - [anon_sym_DASH_DASH] = ACTIONS(5287), - [anon_sym_PLUS] = ACTIONS(6127), - [anon_sym_DASH] = ACTIONS(6127), - [anon_sym_STAR] = ACTIONS(6129), - [anon_sym_SLASH] = ACTIONS(6131), - [anon_sym_PERCENT] = ACTIONS(6129), - [anon_sym_CARET] = ACTIONS(6133), - [anon_sym_PIPE] = ACTIONS(6135), - [anon_sym_AMP] = ACTIONS(6137), - [anon_sym_LT_LT] = ACTIONS(6139), - [anon_sym_GT_GT] = ACTIONS(6141), - [anon_sym_GT_GT_GT] = ACTIONS(6139), - [anon_sym_EQ_EQ] = ACTIONS(6143), - [anon_sym_BANG_EQ] = ACTIONS(6143), - [anon_sym_GT_EQ] = ACTIONS(6145), - [anon_sym_LT_EQ] = ACTIONS(6145), - [anon_sym_DOT] = ACTIONS(4075), - [anon_sym_switch] = ACTIONS(6147), - [anon_sym_DOT_DOT] = ACTIONS(6149), - [anon_sym_and] = ACTIONS(5858), - [anon_sym_or] = ACTIONS(5858), - [anon_sym_AMP_AMP] = ACTIONS(6151), - [anon_sym_PIPE_PIPE] = ACTIONS(6153), - [anon_sym_QMARK_QMARK] = ACTIONS(6155), - [anon_sym_into] = ACTIONS(5858), - [anon_sym_as] = ACTIONS(6157), - [anon_sym_is] = ACTIONS(6159), - [anon_sym_DASH_GT] = ACTIONS(4077), - [anon_sym_with] = ACTIONS(6161), - [aux_sym_preproc_if_token3] = ACTIONS(5858), - [aux_sym_preproc_else_token1] = ACTIONS(5858), - [aux_sym_preproc_elif_token1] = ACTIONS(5858), + [anon_sym_LBRACK] = ACTIONS(4977), + [anon_sym_COMMA] = ACTIONS(4977), + [anon_sym_LPAREN] = ACTIONS(4977), + [anon_sym_LT] = ACTIONS(4979), + [anon_sym_GT] = ACTIONS(4979), + [anon_sym_where] = ACTIONS(4977), + [anon_sym_QMARK] = ACTIONS(4979), + [anon_sym_BANG] = ACTIONS(4979), + [anon_sym_PLUS_PLUS] = ACTIONS(4977), + [anon_sym_DASH_DASH] = ACTIONS(4977), + [anon_sym_PLUS] = ACTIONS(4979), + [anon_sym_DASH] = ACTIONS(4979), + [anon_sym_STAR] = ACTIONS(4977), + [anon_sym_SLASH] = ACTIONS(4979), + [anon_sym_PERCENT] = ACTIONS(4977), + [anon_sym_CARET] = ACTIONS(4977), + [anon_sym_PIPE] = ACTIONS(4979), + [anon_sym_AMP] = ACTIONS(4979), + [anon_sym_LT_LT] = ACTIONS(4977), + [anon_sym_GT_GT] = ACTIONS(4979), + [anon_sym_GT_GT_GT] = ACTIONS(4977), + [anon_sym_EQ_EQ] = ACTIONS(4977), + [anon_sym_BANG_EQ] = ACTIONS(4977), + [anon_sym_GT_EQ] = ACTIONS(4977), + [anon_sym_LT_EQ] = ACTIONS(4977), + [anon_sym_DOT] = ACTIONS(4979), + [anon_sym_switch] = ACTIONS(4977), + [anon_sym_DOT_DOT] = ACTIONS(4977), + [anon_sym_and] = ACTIONS(4977), + [anon_sym_or] = ACTIONS(4979), + [anon_sym_AMP_AMP] = ACTIONS(4977), + [anon_sym_PIPE_PIPE] = ACTIONS(4977), + [anon_sym_QMARK_QMARK] = ACTIONS(4977), + [anon_sym_from] = ACTIONS(4977), + [anon_sym_into] = ACTIONS(4977), + [anon_sym_join] = ACTIONS(4977), + [anon_sym_let] = ACTIONS(4977), + [anon_sym_orderby] = ACTIONS(4977), + [anon_sym_ascending] = ACTIONS(4977), + [anon_sym_descending] = ACTIONS(4977), + [anon_sym_group] = ACTIONS(4977), + [anon_sym_select] = ACTIONS(4977), + [anon_sym_as] = ACTIONS(4979), + [anon_sym_is] = ACTIONS(4977), + [anon_sym_DASH_GT] = ACTIONS(4977), + [anon_sym_with] = ACTIONS(4977), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -530080,8 +529507,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3840] = { - [sym_argument_list] = STATE(3259), - [sym_bracketed_argument_list] = STATE(2613), [sym_preproc_region] = STATE(3840), [sym_preproc_endregion] = STATE(3840), [sym_preproc_line] = STATE(3840), @@ -530091,50 +529516,52 @@ 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_SEMI] = ACTIONS(5660), - [anon_sym_LBRACK] = ACTIONS(5283), - [anon_sym_COMMA] = ACTIONS(5660), - [anon_sym_RBRACK] = ACTIONS(5660), - [anon_sym_LPAREN] = ACTIONS(5247), - [anon_sym_RPAREN] = ACTIONS(5660), - [anon_sym_RBRACE] = ACTIONS(5660), - [anon_sym_LT] = ACTIONS(5664), - [anon_sym_GT] = ACTIONS(5664), - [anon_sym_QMARK] = ACTIONS(5664), - [anon_sym_BANG] = ACTIONS(5285), - [anon_sym_PLUS_PLUS] = ACTIONS(5287), - [anon_sym_DASH_DASH] = ACTIONS(5287), - [anon_sym_PLUS] = ACTIONS(6127), - [anon_sym_DASH] = ACTIONS(6127), - [anon_sym_STAR] = ACTIONS(6129), - [anon_sym_SLASH] = ACTIONS(6131), - [anon_sym_PERCENT] = ACTIONS(6129), - [anon_sym_CARET] = ACTIONS(5660), - [anon_sym_PIPE] = ACTIONS(5664), - [anon_sym_AMP] = ACTIONS(5664), - [anon_sym_LT_LT] = ACTIONS(6139), - [anon_sym_GT_GT] = ACTIONS(6141), - [anon_sym_GT_GT_GT] = ACTIONS(6139), - [anon_sym_EQ_EQ] = ACTIONS(5660), - [anon_sym_BANG_EQ] = ACTIONS(5660), - [anon_sym_GT_EQ] = ACTIONS(5660), - [anon_sym_LT_EQ] = ACTIONS(5660), - [anon_sym_DOT] = ACTIONS(4075), - [anon_sym_switch] = ACTIONS(6147), - [anon_sym_DOT_DOT] = ACTIONS(6149), - [anon_sym_and] = ACTIONS(5660), - [anon_sym_or] = ACTIONS(5660), - [anon_sym_AMP_AMP] = ACTIONS(5660), - [anon_sym_PIPE_PIPE] = ACTIONS(5660), - [anon_sym_QMARK_QMARK] = ACTIONS(5660), - [anon_sym_into] = ACTIONS(5660), - [anon_sym_as] = ACTIONS(5660), - [anon_sym_is] = ACTIONS(5660), - [anon_sym_DASH_GT] = ACTIONS(4077), - [anon_sym_with] = ACTIONS(6161), - [aux_sym_preproc_if_token3] = ACTIONS(5660), - [aux_sym_preproc_else_token1] = ACTIONS(5660), - [aux_sym_preproc_elif_token1] = ACTIONS(5660), + [anon_sym_LBRACK] = ACTIONS(2031), + [anon_sym_COMMA] = ACTIONS(2031), + [anon_sym_LPAREN] = ACTIONS(6181), + [anon_sym_LT] = ACTIONS(2029), + [anon_sym_GT] = ACTIONS(2029), + [anon_sym_where] = ACTIONS(2031), + [anon_sym_QMARK] = ACTIONS(2029), + [anon_sym_BANG] = ACTIONS(2029), + [anon_sym_PLUS_PLUS] = ACTIONS(2031), + [anon_sym_DASH_DASH] = ACTIONS(2031), + [anon_sym_PLUS] = ACTIONS(2029), + [anon_sym_DASH] = ACTIONS(2029), + [anon_sym_STAR] = ACTIONS(2031), + [anon_sym_SLASH] = ACTIONS(2029), + [anon_sym_PERCENT] = ACTIONS(2031), + [anon_sym_CARET] = ACTIONS(2031), + [anon_sym_PIPE] = ACTIONS(2029), + [anon_sym_AMP] = ACTIONS(2029), + [anon_sym_LT_LT] = ACTIONS(2031), + [anon_sym_GT_GT] = ACTIONS(2029), + [anon_sym_GT_GT_GT] = ACTIONS(2031), + [anon_sym_EQ_EQ] = ACTIONS(2031), + [anon_sym_BANG_EQ] = ACTIONS(2031), + [anon_sym_GT_EQ] = ACTIONS(2031), + [anon_sym_LT_EQ] = ACTIONS(2031), + [anon_sym_DOT] = ACTIONS(2029), + [anon_sym_switch] = ACTIONS(2031), + [anon_sym_DOT_DOT] = ACTIONS(2031), + [anon_sym_and] = ACTIONS(2031), + [anon_sym_or] = ACTIONS(2029), + [anon_sym_AMP_AMP] = ACTIONS(2031), + [anon_sym_PIPE_PIPE] = ACTIONS(2031), + [anon_sym_QMARK_QMARK] = ACTIONS(2031), + [anon_sym_from] = ACTIONS(2031), + [anon_sym_into] = ACTIONS(2031), + [anon_sym_join] = ACTIONS(2031), + [anon_sym_let] = ACTIONS(2031), + [anon_sym_orderby] = ACTIONS(2031), + [anon_sym_ascending] = ACTIONS(2031), + [anon_sym_descending] = ACTIONS(2031), + [anon_sym_group] = ACTIONS(2031), + [anon_sym_select] = ACTIONS(2031), + [anon_sym_as] = ACTIONS(2029), + [anon_sym_is] = ACTIONS(2031), + [anon_sym_DASH_GT] = ACTIONS(2031), + [anon_sym_with] = ACTIONS(2031), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -530147,8 +529574,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3841] = { - [sym_argument_list] = STATE(3259), - [sym_bracketed_argument_list] = STATE(2613), [sym_preproc_region] = STATE(3841), [sym_preproc_endregion] = STATE(3841), [sym_preproc_line] = STATE(3841), @@ -530158,50 +529583,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_SEMI] = ACTIONS(5660), - [anon_sym_LBRACK] = ACTIONS(5283), - [anon_sym_COMMA] = ACTIONS(5660), - [anon_sym_RBRACK] = ACTIONS(5660), - [anon_sym_LPAREN] = ACTIONS(5247), - [anon_sym_RPAREN] = ACTIONS(5660), - [anon_sym_RBRACE] = ACTIONS(5660), - [anon_sym_LT] = ACTIONS(5664), - [anon_sym_GT] = ACTIONS(5664), - [anon_sym_QMARK] = ACTIONS(5664), - [anon_sym_BANG] = ACTIONS(5285), - [anon_sym_PLUS_PLUS] = ACTIONS(5287), - [anon_sym_DASH_DASH] = ACTIONS(5287), - [anon_sym_PLUS] = ACTIONS(5664), - [anon_sym_DASH] = ACTIONS(5664), - [anon_sym_STAR] = ACTIONS(6129), - [anon_sym_SLASH] = ACTIONS(6131), - [anon_sym_PERCENT] = ACTIONS(6129), - [anon_sym_CARET] = ACTIONS(5660), - [anon_sym_PIPE] = ACTIONS(5664), - [anon_sym_AMP] = ACTIONS(5664), - [anon_sym_LT_LT] = ACTIONS(5660), - [anon_sym_GT_GT] = ACTIONS(5664), - [anon_sym_GT_GT_GT] = ACTIONS(5660), - [anon_sym_EQ_EQ] = ACTIONS(5660), - [anon_sym_BANG_EQ] = ACTIONS(5660), - [anon_sym_GT_EQ] = ACTIONS(5660), - [anon_sym_LT_EQ] = ACTIONS(5660), - [anon_sym_DOT] = ACTIONS(4075), - [anon_sym_switch] = ACTIONS(6147), - [anon_sym_DOT_DOT] = ACTIONS(6149), - [anon_sym_and] = ACTIONS(5660), - [anon_sym_or] = ACTIONS(5660), - [anon_sym_AMP_AMP] = ACTIONS(5660), - [anon_sym_PIPE_PIPE] = ACTIONS(5660), - [anon_sym_QMARK_QMARK] = ACTIONS(5660), - [anon_sym_into] = ACTIONS(5660), - [anon_sym_as] = ACTIONS(5660), - [anon_sym_is] = ACTIONS(5660), - [anon_sym_DASH_GT] = ACTIONS(4077), - [anon_sym_with] = ACTIONS(6161), - [aux_sym_preproc_if_token3] = ACTIONS(5660), - [aux_sym_preproc_else_token1] = ACTIONS(5660), - [aux_sym_preproc_elif_token1] = ACTIONS(5660), + [anon_sym_LBRACK] = ACTIONS(4981), + [anon_sym_COMMA] = ACTIONS(4981), + [anon_sym_LPAREN] = ACTIONS(4981), + [anon_sym_LT] = ACTIONS(4983), + [anon_sym_GT] = ACTIONS(4983), + [anon_sym_where] = ACTIONS(4981), + [anon_sym_QMARK] = ACTIONS(4983), + [anon_sym_BANG] = ACTIONS(4983), + [anon_sym_PLUS_PLUS] = ACTIONS(4981), + [anon_sym_DASH_DASH] = ACTIONS(4981), + [anon_sym_PLUS] = ACTIONS(4983), + [anon_sym_DASH] = ACTIONS(4983), + [anon_sym_STAR] = ACTIONS(4981), + [anon_sym_SLASH] = ACTIONS(4983), + [anon_sym_PERCENT] = ACTIONS(4981), + [anon_sym_CARET] = ACTIONS(4981), + [anon_sym_PIPE] = ACTIONS(4983), + [anon_sym_AMP] = ACTIONS(4983), + [anon_sym_LT_LT] = ACTIONS(4981), + [anon_sym_GT_GT] = ACTIONS(4983), + [anon_sym_GT_GT_GT] = ACTIONS(4981), + [anon_sym_EQ_EQ] = ACTIONS(4981), + [anon_sym_BANG_EQ] = ACTIONS(4981), + [anon_sym_GT_EQ] = ACTIONS(4981), + [anon_sym_LT_EQ] = ACTIONS(4981), + [anon_sym_DOT] = ACTIONS(4983), + [anon_sym_switch] = ACTIONS(4981), + [anon_sym_DOT_DOT] = ACTIONS(4981), + [anon_sym_and] = ACTIONS(4981), + [anon_sym_or] = ACTIONS(4983), + [anon_sym_AMP_AMP] = ACTIONS(4981), + [anon_sym_PIPE_PIPE] = ACTIONS(4981), + [anon_sym_QMARK_QMARK] = ACTIONS(4981), + [anon_sym_from] = ACTIONS(4981), + [anon_sym_into] = ACTIONS(4981), + [anon_sym_join] = ACTIONS(4981), + [anon_sym_let] = ACTIONS(4981), + [anon_sym_orderby] = ACTIONS(4981), + [anon_sym_ascending] = ACTIONS(4981), + [anon_sym_descending] = ACTIONS(4981), + [anon_sym_group] = ACTIONS(4981), + [anon_sym_select] = ACTIONS(4981), + [anon_sym_as] = ACTIONS(4983), + [anon_sym_is] = ACTIONS(4981), + [anon_sym_DASH_GT] = ACTIONS(4981), + [anon_sym_with] = ACTIONS(4981), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -530214,8 +529641,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3842] = { - [sym_argument_list] = STATE(3259), - [sym_bracketed_argument_list] = STATE(2613), + [sym__name] = STATE(3488), + [sym_alias_qualified_name] = STATE(3304), + [sym__simple_name] = STATE(3304), + [sym_qualified_name] = STATE(3304), + [sym_generic_name] = STATE(3241), + [sym_type] = STATE(3223), + [sym_implicit_type] = STATE(3222), + [sym_array_type] = STATE(3229), + [sym__array_base_type] = STATE(7208), + [sym_nullable_type] = STATE(3216), + [sym_pointer_type] = STATE(3216), + [sym__pointer_base_type] = STATE(7508), + [sym_function_pointer_type] = STATE(3216), + [sym_ref_type] = STATE(3222), + [sym_scoped_type] = STATE(3222), + [sym_tuple_type] = STATE(3308), + [sym_identifier] = STATE(3177), + [sym__reserved_identifier] = STATE(3205), [sym_preproc_region] = STATE(3842), [sym_preproc_endregion] = STATE(3842), [sym_preproc_line] = STATE(3842), @@ -530225,50 +529668,34 @@ 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), - [anon_sym_SEMI] = ACTIONS(5660), - [anon_sym_LBRACK] = ACTIONS(5283), - [anon_sym_COMMA] = ACTIONS(5660), - [anon_sym_RBRACK] = ACTIONS(5660), - [anon_sym_LPAREN] = ACTIONS(5247), - [anon_sym_RPAREN] = ACTIONS(5660), - [anon_sym_RBRACE] = ACTIONS(5660), - [anon_sym_LT] = ACTIONS(5664), - [anon_sym_GT] = ACTIONS(5664), - [anon_sym_QMARK] = ACTIONS(5664), - [anon_sym_BANG] = ACTIONS(5285), - [anon_sym_PLUS_PLUS] = ACTIONS(5287), - [anon_sym_DASH_DASH] = ACTIONS(5287), - [anon_sym_PLUS] = ACTIONS(5664), - [anon_sym_DASH] = ACTIONS(5664), - [anon_sym_STAR] = ACTIONS(5660), - [anon_sym_SLASH] = ACTIONS(5664), - [anon_sym_PERCENT] = ACTIONS(5660), - [anon_sym_CARET] = ACTIONS(5660), - [anon_sym_PIPE] = ACTIONS(5664), - [anon_sym_AMP] = ACTIONS(5664), - [anon_sym_LT_LT] = ACTIONS(5660), - [anon_sym_GT_GT] = ACTIONS(5664), - [anon_sym_GT_GT_GT] = ACTIONS(5660), - [anon_sym_EQ_EQ] = ACTIONS(5660), - [anon_sym_BANG_EQ] = ACTIONS(5660), - [anon_sym_GT_EQ] = ACTIONS(5660), - [anon_sym_LT_EQ] = ACTIONS(5660), - [anon_sym_DOT] = ACTIONS(4075), - [anon_sym_switch] = ACTIONS(6147), - [anon_sym_DOT_DOT] = ACTIONS(6149), - [anon_sym_and] = ACTIONS(5660), - [anon_sym_or] = ACTIONS(5660), - [anon_sym_AMP_AMP] = ACTIONS(5660), - [anon_sym_PIPE_PIPE] = ACTIONS(5660), - [anon_sym_QMARK_QMARK] = ACTIONS(5660), - [anon_sym_into] = ACTIONS(5660), - [anon_sym_as] = ACTIONS(5660), - [anon_sym_is] = ACTIONS(5660), - [anon_sym_DASH_GT] = ACTIONS(4077), - [anon_sym_with] = ACTIONS(6161), - [aux_sym_preproc_if_token3] = ACTIONS(5660), - [aux_sym_preproc_else_token1] = ACTIONS(5660), - [aux_sym_preproc_elif_token1] = ACTIONS(5660), + [sym__identifier_token] = ACTIONS(3798), + [anon_sym_alias] = ACTIONS(3800), + [anon_sym_global] = ACTIONS(3800), + [anon_sym_LPAREN] = ACTIONS(6101), + [anon_sym_ref] = ACTIONS(4169), + [anon_sym_delegate] = ACTIONS(5638), + [anon_sym_file] = ACTIONS(3800), + [anon_sym_readonly] = ACTIONS(6183), + [anon_sym_where] = ACTIONS(3800), + [anon_sym_notnull] = ACTIONS(3800), + [anon_sym_unmanaged] = ACTIONS(3800), + [anon_sym_scoped] = ACTIONS(5729), + [anon_sym_var] = ACTIONS(5642), + [sym_predefined_type] = ACTIONS(5644), + [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), @@ -530281,8 +529708,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3843] = { - [sym_argument_list] = STATE(3259), - [sym_bracketed_argument_list] = STATE(2613), [sym_preproc_region] = STATE(3843), [sym_preproc_endregion] = STATE(3843), [sym_preproc_line] = STATE(3843), @@ -530292,50 +529717,52 @@ 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_SEMI] = ACTIONS(5660), - [anon_sym_LBRACK] = ACTIONS(5283), - [anon_sym_COMMA] = ACTIONS(5660), - [anon_sym_RBRACK] = ACTIONS(5660), - [anon_sym_LPAREN] = ACTIONS(5247), - [anon_sym_RPAREN] = ACTIONS(5660), - [anon_sym_RBRACE] = ACTIONS(5660), - [anon_sym_LT] = ACTIONS(6123), - [anon_sym_GT] = ACTIONS(6123), - [anon_sym_QMARK] = ACTIONS(5664), - [anon_sym_BANG] = ACTIONS(5285), - [anon_sym_PLUS_PLUS] = ACTIONS(5287), - [anon_sym_DASH_DASH] = ACTIONS(5287), - [anon_sym_PLUS] = ACTIONS(6127), - [anon_sym_DASH] = ACTIONS(6127), - [anon_sym_STAR] = ACTIONS(6129), - [anon_sym_SLASH] = ACTIONS(6131), - [anon_sym_PERCENT] = ACTIONS(6129), - [anon_sym_CARET] = ACTIONS(5660), - [anon_sym_PIPE] = ACTIONS(5664), - [anon_sym_AMP] = ACTIONS(6137), - [anon_sym_LT_LT] = ACTIONS(6139), - [anon_sym_GT_GT] = ACTIONS(6141), - [anon_sym_GT_GT_GT] = ACTIONS(6139), - [anon_sym_EQ_EQ] = ACTIONS(6143), - [anon_sym_BANG_EQ] = ACTIONS(6143), - [anon_sym_GT_EQ] = ACTIONS(6145), - [anon_sym_LT_EQ] = ACTIONS(6145), - [anon_sym_DOT] = ACTIONS(4075), - [anon_sym_switch] = ACTIONS(6147), - [anon_sym_DOT_DOT] = ACTIONS(6149), - [anon_sym_and] = ACTIONS(5660), - [anon_sym_or] = ACTIONS(5660), - [anon_sym_AMP_AMP] = ACTIONS(5660), - [anon_sym_PIPE_PIPE] = ACTIONS(5660), - [anon_sym_QMARK_QMARK] = ACTIONS(5660), - [anon_sym_into] = ACTIONS(5660), - [anon_sym_as] = ACTIONS(6157), - [anon_sym_is] = ACTIONS(6159), - [anon_sym_DASH_GT] = ACTIONS(4077), - [anon_sym_with] = ACTIONS(6161), - [aux_sym_preproc_if_token3] = ACTIONS(5660), - [aux_sym_preproc_else_token1] = ACTIONS(5660), - [aux_sym_preproc_elif_token1] = ACTIONS(5660), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -530348,7 +529775,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3844] = { - [sym_type_argument_list] = STATE(2930), [sym_preproc_region] = STATE(3844), [sym_preproc_endregion] = STATE(3844), [sym_preproc_line] = STATE(3844), @@ -530358,51 +529784,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(3662), - [anon_sym_LPAREN] = ACTIONS(3662), - [anon_sym_LBRACE] = ACTIONS(3662), - [anon_sym_LT] = ACTIONS(4826), - [anon_sym_GT] = ACTIONS(3660), - [anon_sym_where] = ACTIONS(3662), - [anon_sym_QMARK] = ACTIONS(3660), - [anon_sym_BANG] = ACTIONS(3660), - [anon_sym_PLUS_PLUS] = ACTIONS(3662), - [anon_sym_DASH_DASH] = ACTIONS(3662), - [anon_sym_PLUS] = ACTIONS(3660), - [anon_sym_DASH] = ACTIONS(3660), - [anon_sym_STAR] = ACTIONS(3662), - [anon_sym_SLASH] = ACTIONS(3660), - [anon_sym_PERCENT] = ACTIONS(3662), - [anon_sym_CARET] = ACTIONS(3662), - [anon_sym_PIPE] = ACTIONS(3660), - [anon_sym_AMP] = ACTIONS(3660), - [anon_sym_LT_LT] = ACTIONS(3662), - [anon_sym_GT_GT] = ACTIONS(3660), - [anon_sym_GT_GT_GT] = ACTIONS(3662), - [anon_sym_EQ_EQ] = ACTIONS(3662), - [anon_sym_BANG_EQ] = ACTIONS(3662), - [anon_sym_GT_EQ] = ACTIONS(3662), - [anon_sym_LT_EQ] = ACTIONS(3662), - [anon_sym_DOT] = ACTIONS(3660), - [anon_sym_COLON_COLON] = ACTIONS(6209), - [anon_sym_switch] = ACTIONS(3662), - [anon_sym_DOT_DOT] = ACTIONS(3662), - [anon_sym_and] = ACTIONS(3662), - [anon_sym_or] = ACTIONS(3660), - [anon_sym_AMP_AMP] = ACTIONS(3662), - [anon_sym_PIPE_PIPE] = ACTIONS(3662), - [anon_sym_QMARK_QMARK] = ACTIONS(3662), - [anon_sym_from] = ACTIONS(3662), - [anon_sym_into] = ACTIONS(3662), - [anon_sym_join] = ACTIONS(3662), - [anon_sym_let] = ACTIONS(3662), - [anon_sym_orderby] = ACTIONS(3662), - [anon_sym_group] = ACTIONS(3662), - [anon_sym_select] = ACTIONS(3662), - [anon_sym_as] = ACTIONS(3662), - [anon_sym_is] = ACTIONS(3662), - [anon_sym_DASH_GT] = ACTIONS(3662), - [anon_sym_with] = ACTIONS(3662), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -530415,8 +529842,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3845] = { - [sym_argument_list] = STATE(3259), - [sym_bracketed_argument_list] = STATE(2613), [sym_preproc_region] = STATE(3845), [sym_preproc_endregion] = STATE(3845), [sym_preproc_line] = STATE(3845), @@ -530426,50 +529851,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(5660), - [anon_sym_LBRACK] = ACTIONS(5283), - [anon_sym_COMMA] = ACTIONS(5660), - [anon_sym_RBRACK] = ACTIONS(5660), - [anon_sym_LPAREN] = ACTIONS(5247), - [anon_sym_RPAREN] = ACTIONS(5660), - [anon_sym_RBRACE] = ACTIONS(5660), - [anon_sym_LT] = ACTIONS(6123), - [anon_sym_GT] = ACTIONS(6123), - [anon_sym_QMARK] = ACTIONS(5664), - [anon_sym_BANG] = ACTIONS(5285), - [anon_sym_PLUS_PLUS] = ACTIONS(5287), - [anon_sym_DASH_DASH] = ACTIONS(5287), - [anon_sym_PLUS] = ACTIONS(6127), - [anon_sym_DASH] = ACTIONS(6127), - [anon_sym_STAR] = ACTIONS(6129), - [anon_sym_SLASH] = ACTIONS(6131), - [anon_sym_PERCENT] = ACTIONS(6129), - [anon_sym_CARET] = ACTIONS(6133), - [anon_sym_PIPE] = ACTIONS(5664), - [anon_sym_AMP] = ACTIONS(6137), - [anon_sym_LT_LT] = ACTIONS(6139), - [anon_sym_GT_GT] = ACTIONS(6141), - [anon_sym_GT_GT_GT] = ACTIONS(6139), - [anon_sym_EQ_EQ] = ACTIONS(6143), - [anon_sym_BANG_EQ] = ACTIONS(6143), - [anon_sym_GT_EQ] = ACTIONS(6145), - [anon_sym_LT_EQ] = ACTIONS(6145), - [anon_sym_DOT] = ACTIONS(4075), - [anon_sym_switch] = ACTIONS(6147), - [anon_sym_DOT_DOT] = ACTIONS(6149), - [anon_sym_and] = ACTIONS(5660), - [anon_sym_or] = ACTIONS(5660), - [anon_sym_AMP_AMP] = ACTIONS(5660), - [anon_sym_PIPE_PIPE] = ACTIONS(5660), - [anon_sym_QMARK_QMARK] = ACTIONS(5660), - [anon_sym_into] = ACTIONS(5660), - [anon_sym_as] = ACTIONS(6157), - [anon_sym_is] = ACTIONS(6159), - [anon_sym_DASH_GT] = ACTIONS(4077), - [anon_sym_with] = ACTIONS(6161), - [aux_sym_preproc_if_token3] = ACTIONS(5660), - [aux_sym_preproc_else_token1] = ACTIONS(5660), - [aux_sym_preproc_elif_token1] = ACTIONS(5660), + [sym__identifier_token] = ACTIONS(5219), + [anon_sym_extern] = ACTIONS(5219), + [anon_sym_alias] = ACTIONS(5219), + [anon_sym_global] = ACTIONS(5219), + [anon_sym_unsafe] = ACTIONS(5219), + [anon_sym_static] = ACTIONS(5219), + [anon_sym_LPAREN] = ACTIONS(5221), + [anon_sym_ref] = ACTIONS(5219), + [anon_sym_delegate] = ACTIONS(5219), + [anon_sym_abstract] = ACTIONS(5219), + [anon_sym_async] = ACTIONS(5219), + [anon_sym_const] = ACTIONS(5219), + [anon_sym_file] = ACTIONS(5219), + [anon_sym_fixed] = ACTIONS(5219), + [anon_sym_internal] = ACTIONS(5219), + [anon_sym_new] = ACTIONS(5219), + [anon_sym_override] = ACTIONS(5219), + [anon_sym_partial] = ACTIONS(5219), + [anon_sym_private] = ACTIONS(5219), + [anon_sym_protected] = ACTIONS(5219), + [anon_sym_public] = ACTIONS(5219), + [anon_sym_readonly] = ACTIONS(5219), + [anon_sym_required] = ACTIONS(5219), + [anon_sym_sealed] = ACTIONS(5219), + [anon_sym_virtual] = ACTIONS(5219), + [anon_sym_volatile] = ACTIONS(5219), + [anon_sym_where] = ACTIONS(5219), + [anon_sym_notnull] = ACTIONS(5219), + [anon_sym_unmanaged] = ACTIONS(5219), + [anon_sym_scoped] = ACTIONS(5219), + [anon_sym_var] = ACTIONS(5219), + [sym_predefined_type] = ACTIONS(5219), + [anon_sym_yield] = ACTIONS(5219), + [anon_sym_when] = ACTIONS(5219), + [anon_sym_from] = ACTIONS(5219), + [anon_sym_into] = ACTIONS(5219), + [anon_sym_join] = ACTIONS(5219), + [anon_sym_on] = ACTIONS(5219), + [anon_sym_equals] = ACTIONS(5219), + [anon_sym_let] = ACTIONS(5219), + [anon_sym_orderby] = ACTIONS(5219), + [anon_sym_ascending] = ACTIONS(5219), + [anon_sym_descending] = ACTIONS(5219), + [anon_sym_group] = ACTIONS(5219), + [anon_sym_by] = ACTIONS(5219), + [anon_sym_select] = ACTIONS(5219), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -530482,8 +529909,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3846] = { - [sym_argument_list] = STATE(3259), - [sym_bracketed_argument_list] = STATE(2613), + [sym_argument_list] = STATE(3771), + [sym_bracketed_argument_list] = STATE(2892), [sym_preproc_region] = STATE(3846), [sym_preproc_endregion] = STATE(3846), [sym_preproc_line] = STATE(3846), @@ -530493,50 +529920,50 @@ 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), - [anon_sym_SEMI] = ACTIONS(5660), - [anon_sym_LBRACK] = ACTIONS(5283), - [anon_sym_COMMA] = ACTIONS(5660), - [anon_sym_RBRACK] = ACTIONS(5660), - [anon_sym_LPAREN] = ACTIONS(5247), - [anon_sym_RPAREN] = ACTIONS(5660), - [anon_sym_RBRACE] = ACTIONS(5660), - [anon_sym_LT] = ACTIONS(6123), - [anon_sym_GT] = ACTIONS(6123), - [anon_sym_QMARK] = ACTIONS(5664), - [anon_sym_BANG] = ACTIONS(5285), - [anon_sym_PLUS_PLUS] = ACTIONS(5287), - [anon_sym_DASH_DASH] = ACTIONS(5287), - [anon_sym_PLUS] = ACTIONS(6127), - [anon_sym_DASH] = ACTIONS(6127), - [anon_sym_STAR] = ACTIONS(6129), - [anon_sym_SLASH] = ACTIONS(6131), - [anon_sym_PERCENT] = ACTIONS(6129), - [anon_sym_CARET] = ACTIONS(5660), - [anon_sym_PIPE] = ACTIONS(5664), - [anon_sym_AMP] = ACTIONS(5664), - [anon_sym_LT_LT] = ACTIONS(6139), - [anon_sym_GT_GT] = ACTIONS(6141), - [anon_sym_GT_GT_GT] = ACTIONS(6139), - [anon_sym_EQ_EQ] = ACTIONS(6143), - [anon_sym_BANG_EQ] = ACTIONS(6143), - [anon_sym_GT_EQ] = ACTIONS(6145), - [anon_sym_LT_EQ] = ACTIONS(6145), - [anon_sym_DOT] = ACTIONS(4075), - [anon_sym_switch] = ACTIONS(6147), - [anon_sym_DOT_DOT] = ACTIONS(6149), - [anon_sym_and] = ACTIONS(5660), - [anon_sym_or] = ACTIONS(5660), - [anon_sym_AMP_AMP] = ACTIONS(5660), - [anon_sym_PIPE_PIPE] = ACTIONS(5660), - [anon_sym_QMARK_QMARK] = ACTIONS(5660), - [anon_sym_into] = ACTIONS(5660), - [anon_sym_as] = ACTIONS(6157), - [anon_sym_is] = ACTIONS(6159), - [anon_sym_DASH_GT] = ACTIONS(4077), - [anon_sym_with] = ACTIONS(6161), - [aux_sym_preproc_if_token3] = ACTIONS(5660), - [aux_sym_preproc_else_token1] = ACTIONS(5660), - [aux_sym_preproc_elif_token1] = ACTIONS(5660), + [anon_sym_LBRACK] = ACTIONS(5650), + [anon_sym_COMMA] = ACTIONS(5733), + [anon_sym_LPAREN] = ACTIONS(5591), + [anon_sym_LT] = ACTIONS(6043), + [anon_sym_GT] = ACTIONS(6043), + [anon_sym_where] = ACTIONS(5733), + [anon_sym_QMARK] = ACTIONS(6045), + [anon_sym_BANG] = ACTIONS(5658), + [anon_sym_PLUS_PLUS] = ACTIONS(5660), + [anon_sym_DASH_DASH] = ACTIONS(5660), + [anon_sym_PLUS] = ACTIONS(6047), + [anon_sym_DASH] = ACTIONS(6047), + [anon_sym_STAR] = ACTIONS(6049), + [anon_sym_SLASH] = ACTIONS(6051), + [anon_sym_PERCENT] = ACTIONS(6049), + [anon_sym_CARET] = ACTIONS(6053), + [anon_sym_PIPE] = ACTIONS(6055), + [anon_sym_AMP] = ACTIONS(6057), + [anon_sym_LT_LT] = ACTIONS(6059), + [anon_sym_GT_GT] = ACTIONS(6061), + [anon_sym_GT_GT_GT] = ACTIONS(6059), + [anon_sym_EQ_EQ] = ACTIONS(6063), + [anon_sym_BANG_EQ] = ACTIONS(6063), + [anon_sym_GT_EQ] = ACTIONS(6065), + [anon_sym_LT_EQ] = ACTIONS(6065), + [anon_sym_DOT] = ACTIONS(4697), + [anon_sym_switch] = ACTIONS(5682), + [anon_sym_DOT_DOT] = ACTIONS(6067), + [anon_sym_AMP_AMP] = ACTIONS(6069), + [anon_sym_PIPE_PIPE] = ACTIONS(6071), + [anon_sym_QMARK_QMARK] = ACTIONS(6073), + [anon_sym_from] = ACTIONS(5733), + [anon_sym_into] = ACTIONS(5733), + [anon_sym_join] = ACTIONS(5733), + [anon_sym_let] = ACTIONS(5733), + [anon_sym_orderby] = ACTIONS(5733), + [anon_sym_ascending] = ACTIONS(5733), + [anon_sym_descending] = ACTIONS(5733), + [anon_sym_group] = ACTIONS(5733), + [anon_sym_select] = ACTIONS(5733), + [anon_sym_as] = ACTIONS(5694), + [anon_sym_is] = ACTIONS(6075), + [anon_sym_DASH_GT] = ACTIONS(4699), + [anon_sym_with] = ACTIONS(5698), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -530549,8 +529976,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3847] = { - [sym_argument_list] = STATE(3259), - [sym_bracketed_argument_list] = STATE(2613), [sym_preproc_region] = STATE(3847), [sym_preproc_endregion] = STATE(3847), [sym_preproc_line] = STATE(3847), @@ -530560,50 +529985,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_SEMI] = ACTIONS(5660), - [anon_sym_LBRACK] = ACTIONS(5283), - [anon_sym_COMMA] = ACTIONS(5660), - [anon_sym_RBRACK] = ACTIONS(5660), - [anon_sym_LPAREN] = ACTIONS(5247), - [anon_sym_RPAREN] = ACTIONS(5660), - [anon_sym_RBRACE] = ACTIONS(5660), - [anon_sym_LT] = ACTIONS(5664), - [anon_sym_GT] = ACTIONS(5664), - [anon_sym_QMARK] = ACTIONS(5664), - [anon_sym_BANG] = ACTIONS(5285), - [anon_sym_PLUS_PLUS] = ACTIONS(5287), - [anon_sym_DASH_DASH] = ACTIONS(5287), - [anon_sym_PLUS] = ACTIONS(6127), - [anon_sym_DASH] = ACTIONS(6127), - [anon_sym_STAR] = ACTIONS(6129), - [anon_sym_SLASH] = ACTIONS(6131), - [anon_sym_PERCENT] = ACTIONS(6129), - [anon_sym_CARET] = ACTIONS(5660), - [anon_sym_PIPE] = ACTIONS(5664), - [anon_sym_AMP] = ACTIONS(5664), - [anon_sym_LT_LT] = ACTIONS(5660), - [anon_sym_GT_GT] = ACTIONS(5664), - [anon_sym_GT_GT_GT] = ACTIONS(5660), - [anon_sym_EQ_EQ] = ACTIONS(5660), - [anon_sym_BANG_EQ] = ACTIONS(5660), - [anon_sym_GT_EQ] = ACTIONS(5660), - [anon_sym_LT_EQ] = ACTIONS(5660), - [anon_sym_DOT] = ACTIONS(4075), - [anon_sym_switch] = ACTIONS(6147), - [anon_sym_DOT_DOT] = ACTIONS(6149), - [anon_sym_and] = ACTIONS(5660), - [anon_sym_or] = ACTIONS(5660), - [anon_sym_AMP_AMP] = ACTIONS(5660), - [anon_sym_PIPE_PIPE] = ACTIONS(5660), - [anon_sym_QMARK_QMARK] = ACTIONS(5660), - [anon_sym_into] = ACTIONS(5660), - [anon_sym_as] = ACTIONS(5660), - [anon_sym_is] = ACTIONS(5660), - [anon_sym_DASH_GT] = ACTIONS(4077), - [anon_sym_with] = ACTIONS(6161), - [aux_sym_preproc_if_token3] = ACTIONS(5660), - [aux_sym_preproc_else_token1] = ACTIONS(5660), - [aux_sym_preproc_elif_token1] = ACTIONS(5660), + [anon_sym_LBRACK] = ACTIONS(4996), + [anon_sym_COMMA] = ACTIONS(4996), + [anon_sym_LPAREN] = ACTIONS(4996), + [anon_sym_LT] = ACTIONS(4998), + [anon_sym_GT] = ACTIONS(4998), + [anon_sym_where] = ACTIONS(4996), + [anon_sym_QMARK] = ACTIONS(4998), + [anon_sym_BANG] = ACTIONS(4998), + [anon_sym_PLUS_PLUS] = ACTIONS(4996), + [anon_sym_DASH_DASH] = ACTIONS(4996), + [anon_sym_PLUS] = ACTIONS(4998), + [anon_sym_DASH] = ACTIONS(4998), + [anon_sym_STAR] = ACTIONS(4996), + [anon_sym_SLASH] = ACTIONS(4998), + [anon_sym_PERCENT] = ACTIONS(4996), + [anon_sym_CARET] = ACTIONS(4996), + [anon_sym_PIPE] = ACTIONS(4998), + [anon_sym_AMP] = ACTIONS(4998), + [anon_sym_LT_LT] = ACTIONS(4996), + [anon_sym_GT_GT] = ACTIONS(4998), + [anon_sym_GT_GT_GT] = ACTIONS(4996), + [anon_sym_EQ_EQ] = ACTIONS(4996), + [anon_sym_BANG_EQ] = ACTIONS(4996), + [anon_sym_GT_EQ] = ACTIONS(4996), + [anon_sym_LT_EQ] = ACTIONS(4996), + [anon_sym_DOT] = ACTIONS(4998), + [anon_sym_switch] = ACTIONS(4996), + [anon_sym_DOT_DOT] = ACTIONS(4996), + [anon_sym_and] = ACTIONS(4996), + [anon_sym_or] = ACTIONS(4998), + [anon_sym_AMP_AMP] = ACTIONS(4996), + [anon_sym_PIPE_PIPE] = ACTIONS(4996), + [anon_sym_QMARK_QMARK] = ACTIONS(4996), + [anon_sym_from] = ACTIONS(4996), + [anon_sym_into] = ACTIONS(4996), + [anon_sym_join] = ACTIONS(4996), + [anon_sym_let] = ACTIONS(4996), + [anon_sym_orderby] = ACTIONS(4996), + [anon_sym_ascending] = ACTIONS(4996), + [anon_sym_descending] = ACTIONS(4996), + [anon_sym_group] = ACTIONS(4996), + [anon_sym_select] = ACTIONS(4996), + [anon_sym_as] = ACTIONS(4998), + [anon_sym_is] = ACTIONS(4996), + [anon_sym_DASH_GT] = ACTIONS(4996), + [anon_sym_with] = ACTIONS(4996), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -530616,8 +530043,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3848] = { - [sym_argument_list] = STATE(3259), - [sym_bracketed_argument_list] = STATE(2613), [sym_preproc_region] = STATE(3848), [sym_preproc_endregion] = STATE(3848), [sym_preproc_line] = STATE(3848), @@ -530627,50 +530052,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), - [anon_sym_SEMI] = ACTIONS(5660), - [anon_sym_LBRACK] = ACTIONS(5283), - [anon_sym_COMMA] = ACTIONS(5660), - [anon_sym_RBRACK] = ACTIONS(5660), - [anon_sym_LPAREN] = ACTIONS(5247), - [anon_sym_RPAREN] = ACTIONS(5660), - [anon_sym_RBRACE] = ACTIONS(5660), - [anon_sym_LT] = ACTIONS(6123), - [anon_sym_GT] = ACTIONS(6123), - [anon_sym_QMARK] = ACTIONS(5664), - [anon_sym_BANG] = ACTIONS(5285), - [anon_sym_PLUS_PLUS] = ACTIONS(5287), - [anon_sym_DASH_DASH] = ACTIONS(5287), - [anon_sym_PLUS] = ACTIONS(6127), - [anon_sym_DASH] = ACTIONS(6127), - [anon_sym_STAR] = ACTIONS(6129), - [anon_sym_SLASH] = ACTIONS(6131), - [anon_sym_PERCENT] = ACTIONS(6129), - [anon_sym_CARET] = ACTIONS(5660), - [anon_sym_PIPE] = ACTIONS(5664), - [anon_sym_AMP] = ACTIONS(5664), - [anon_sym_LT_LT] = ACTIONS(6139), - [anon_sym_GT_GT] = ACTIONS(6141), - [anon_sym_GT_GT_GT] = ACTIONS(6139), - [anon_sym_EQ_EQ] = ACTIONS(5660), - [anon_sym_BANG_EQ] = ACTIONS(5660), - [anon_sym_GT_EQ] = ACTIONS(6145), - [anon_sym_LT_EQ] = ACTIONS(6145), - [anon_sym_DOT] = ACTIONS(4075), - [anon_sym_switch] = ACTIONS(6147), - [anon_sym_DOT_DOT] = ACTIONS(6149), - [anon_sym_and] = ACTIONS(5660), - [anon_sym_or] = ACTIONS(5660), - [anon_sym_AMP_AMP] = ACTIONS(5660), - [anon_sym_PIPE_PIPE] = ACTIONS(5660), - [anon_sym_QMARK_QMARK] = ACTIONS(5660), - [anon_sym_into] = ACTIONS(5660), - [anon_sym_as] = ACTIONS(6157), - [anon_sym_is] = ACTIONS(6159), - [anon_sym_DASH_GT] = ACTIONS(4077), - [anon_sym_with] = ACTIONS(6161), - [aux_sym_preproc_if_token3] = ACTIONS(5660), - [aux_sym_preproc_else_token1] = ACTIONS(5660), - [aux_sym_preproc_elif_token1] = ACTIONS(5660), + [anon_sym_LBRACK] = ACTIONS(5004), + [anon_sym_COMMA] = ACTIONS(5004), + [anon_sym_LPAREN] = ACTIONS(5004), + [anon_sym_LT] = ACTIONS(5006), + [anon_sym_GT] = ACTIONS(5006), + [anon_sym_where] = ACTIONS(5004), + [anon_sym_QMARK] = ACTIONS(5006), + [anon_sym_BANG] = ACTIONS(5006), + [anon_sym_PLUS_PLUS] = ACTIONS(5004), + [anon_sym_DASH_DASH] = ACTIONS(5004), + [anon_sym_PLUS] = ACTIONS(5006), + [anon_sym_DASH] = ACTIONS(5006), + [anon_sym_STAR] = ACTIONS(5004), + [anon_sym_SLASH] = ACTIONS(5006), + [anon_sym_PERCENT] = ACTIONS(5004), + [anon_sym_CARET] = ACTIONS(5004), + [anon_sym_PIPE] = ACTIONS(5006), + [anon_sym_AMP] = ACTIONS(5006), + [anon_sym_LT_LT] = ACTIONS(5004), + [anon_sym_GT_GT] = ACTIONS(5006), + [anon_sym_GT_GT_GT] = ACTIONS(5004), + [anon_sym_EQ_EQ] = ACTIONS(5004), + [anon_sym_BANG_EQ] = ACTIONS(5004), + [anon_sym_GT_EQ] = ACTIONS(5004), + [anon_sym_LT_EQ] = ACTIONS(5004), + [anon_sym_DOT] = ACTIONS(5006), + [anon_sym_switch] = ACTIONS(5004), + [anon_sym_DOT_DOT] = ACTIONS(5004), + [anon_sym_and] = ACTIONS(5004), + [anon_sym_or] = ACTIONS(5006), + [anon_sym_AMP_AMP] = ACTIONS(5004), + [anon_sym_PIPE_PIPE] = ACTIONS(5004), + [anon_sym_QMARK_QMARK] = ACTIONS(5004), + [anon_sym_from] = ACTIONS(5004), + [anon_sym_into] = ACTIONS(5004), + [anon_sym_join] = ACTIONS(5004), + [anon_sym_let] = ACTIONS(5004), + [anon_sym_orderby] = ACTIONS(5004), + [anon_sym_ascending] = ACTIONS(5004), + [anon_sym_descending] = ACTIONS(5004), + [anon_sym_group] = ACTIONS(5004), + [anon_sym_select] = ACTIONS(5004), + [anon_sym_as] = ACTIONS(5006), + [anon_sym_is] = ACTIONS(5004), + [anon_sym_DASH_GT] = ACTIONS(5004), + [anon_sym_with] = ACTIONS(5004), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -530683,8 +530110,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3849] = { - [sym_argument_list] = STATE(3259), - [sym_bracketed_argument_list] = STATE(2613), [sym_preproc_region] = STATE(3849), [sym_preproc_endregion] = STATE(3849), [sym_preproc_line] = STATE(3849), @@ -530694,50 +530119,52 @@ 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_SEMI] = ACTIONS(5731), - [anon_sym_LBRACK] = ACTIONS(5283), - [anon_sym_COMMA] = ACTIONS(5731), - [anon_sym_RBRACK] = ACTIONS(5731), - [anon_sym_LPAREN] = ACTIONS(5247), - [anon_sym_RPAREN] = ACTIONS(5731), - [anon_sym_RBRACE] = ACTIONS(5731), - [anon_sym_LT] = ACTIONS(5733), - [anon_sym_GT] = ACTIONS(5733), - [anon_sym_QMARK] = ACTIONS(5733), - [anon_sym_BANG] = ACTIONS(5285), - [anon_sym_PLUS_PLUS] = ACTIONS(5287), - [anon_sym_DASH_DASH] = ACTIONS(5287), - [anon_sym_PLUS] = ACTIONS(5733), - [anon_sym_DASH] = ACTIONS(5733), - [anon_sym_STAR] = ACTIONS(5731), - [anon_sym_SLASH] = ACTIONS(5733), - [anon_sym_PERCENT] = ACTIONS(5731), - [anon_sym_CARET] = ACTIONS(5731), - [anon_sym_PIPE] = ACTIONS(5733), - [anon_sym_AMP] = ACTIONS(5733), - [anon_sym_LT_LT] = ACTIONS(5731), - [anon_sym_GT_GT] = ACTIONS(5733), - [anon_sym_GT_GT_GT] = ACTIONS(5731), - [anon_sym_EQ_EQ] = ACTIONS(5731), - [anon_sym_BANG_EQ] = ACTIONS(5731), - [anon_sym_GT_EQ] = ACTIONS(5731), - [anon_sym_LT_EQ] = ACTIONS(5731), - [anon_sym_DOT] = ACTIONS(4075), - [anon_sym_switch] = ACTIONS(5731), - [anon_sym_DOT_DOT] = ACTIONS(6149), - [anon_sym_and] = ACTIONS(5731), - [anon_sym_or] = ACTIONS(5731), - [anon_sym_AMP_AMP] = ACTIONS(5731), - [anon_sym_PIPE_PIPE] = ACTIONS(5731), - [anon_sym_QMARK_QMARK] = ACTIONS(5731), - [anon_sym_into] = ACTIONS(5731), - [anon_sym_as] = ACTIONS(5731), - [anon_sym_is] = ACTIONS(5731), - [anon_sym_DASH_GT] = ACTIONS(4077), - [anon_sym_with] = ACTIONS(5731), - [aux_sym_preproc_if_token3] = ACTIONS(5731), - [aux_sym_preproc_else_token1] = ACTIONS(5731), - [aux_sym_preproc_elif_token1] = ACTIONS(5731), + [anon_sym_LBRACK] = ACTIONS(5008), + [anon_sym_COMMA] = ACTIONS(5008), + [anon_sym_LPAREN] = ACTIONS(5008), + [anon_sym_LT] = ACTIONS(5010), + [anon_sym_GT] = ACTIONS(5010), + [anon_sym_where] = ACTIONS(5008), + [anon_sym_QMARK] = ACTIONS(5010), + [anon_sym_BANG] = ACTIONS(5010), + [anon_sym_PLUS_PLUS] = ACTIONS(5008), + [anon_sym_DASH_DASH] = ACTIONS(5008), + [anon_sym_PLUS] = ACTIONS(5010), + [anon_sym_DASH] = ACTIONS(5010), + [anon_sym_STAR] = ACTIONS(5008), + [anon_sym_SLASH] = ACTIONS(5010), + [anon_sym_PERCENT] = ACTIONS(5008), + [anon_sym_CARET] = ACTIONS(5008), + [anon_sym_PIPE] = ACTIONS(5010), + [anon_sym_AMP] = ACTIONS(5010), + [anon_sym_LT_LT] = ACTIONS(5008), + [anon_sym_GT_GT] = ACTIONS(5010), + [anon_sym_GT_GT_GT] = ACTIONS(5008), + [anon_sym_EQ_EQ] = ACTIONS(5008), + [anon_sym_BANG_EQ] = ACTIONS(5008), + [anon_sym_GT_EQ] = ACTIONS(5008), + [anon_sym_LT_EQ] = ACTIONS(5008), + [anon_sym_DOT] = ACTIONS(5010), + [anon_sym_switch] = ACTIONS(5008), + [anon_sym_DOT_DOT] = ACTIONS(5008), + [anon_sym_and] = ACTIONS(5008), + [anon_sym_or] = ACTIONS(5010), + [anon_sym_AMP_AMP] = ACTIONS(5008), + [anon_sym_PIPE_PIPE] = ACTIONS(5008), + [anon_sym_QMARK_QMARK] = ACTIONS(5008), + [anon_sym_from] = ACTIONS(5008), + [anon_sym_into] = ACTIONS(5008), + [anon_sym_join] = ACTIONS(5008), + [anon_sym_let] = ACTIONS(5008), + [anon_sym_orderby] = ACTIONS(5008), + [anon_sym_ascending] = ACTIONS(5008), + [anon_sym_descending] = ACTIONS(5008), + [anon_sym_group] = ACTIONS(5008), + [anon_sym_select] = ACTIONS(5008), + [anon_sym_as] = ACTIONS(5010), + [anon_sym_is] = ACTIONS(5008), + [anon_sym_DASH_GT] = ACTIONS(5008), + [anon_sym_with] = ACTIONS(5008), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -530750,8 +530177,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3850] = { - [sym_argument_list] = STATE(3259), - [sym_bracketed_argument_list] = STATE(2613), [sym_preproc_region] = STATE(3850), [sym_preproc_endregion] = STATE(3850), [sym_preproc_line] = STATE(3850), @@ -530761,50 +530186,52 @@ 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), - [anon_sym_SEMI] = ACTIONS(5660), - [anon_sym_LBRACK] = ACTIONS(5283), - [anon_sym_COMMA] = ACTIONS(5660), - [anon_sym_RBRACK] = ACTIONS(5660), - [anon_sym_LPAREN] = ACTIONS(5247), - [anon_sym_RPAREN] = ACTIONS(5660), - [anon_sym_RBRACE] = ACTIONS(5660), - [anon_sym_LT] = ACTIONS(6123), - [anon_sym_GT] = ACTIONS(6123), - [anon_sym_QMARK] = ACTIONS(5664), - [anon_sym_BANG] = ACTIONS(5285), - [anon_sym_PLUS_PLUS] = ACTIONS(5287), - [anon_sym_DASH_DASH] = ACTIONS(5287), - [anon_sym_PLUS] = ACTIONS(6127), - [anon_sym_DASH] = ACTIONS(6127), - [anon_sym_STAR] = ACTIONS(6129), - [anon_sym_SLASH] = ACTIONS(6131), - [anon_sym_PERCENT] = ACTIONS(6129), - [anon_sym_CARET] = ACTIONS(6133), - [anon_sym_PIPE] = ACTIONS(6135), - [anon_sym_AMP] = ACTIONS(6137), - [anon_sym_LT_LT] = ACTIONS(6139), - [anon_sym_GT_GT] = ACTIONS(6141), - [anon_sym_GT_GT_GT] = ACTIONS(6139), - [anon_sym_EQ_EQ] = ACTIONS(6143), - [anon_sym_BANG_EQ] = ACTIONS(6143), - [anon_sym_GT_EQ] = ACTIONS(6145), - [anon_sym_LT_EQ] = ACTIONS(6145), - [anon_sym_DOT] = ACTIONS(4075), - [anon_sym_switch] = ACTIONS(6147), - [anon_sym_DOT_DOT] = ACTIONS(6149), - [anon_sym_and] = ACTIONS(5660), - [anon_sym_or] = ACTIONS(5660), - [anon_sym_AMP_AMP] = ACTIONS(5660), - [anon_sym_PIPE_PIPE] = ACTIONS(5660), - [anon_sym_QMARK_QMARK] = ACTIONS(5660), - [anon_sym_into] = ACTIONS(5660), - [anon_sym_as] = ACTIONS(6157), - [anon_sym_is] = ACTIONS(6159), - [anon_sym_DASH_GT] = ACTIONS(4077), - [anon_sym_with] = ACTIONS(6161), - [aux_sym_preproc_if_token3] = ACTIONS(5660), - [aux_sym_preproc_else_token1] = ACTIONS(5660), - [aux_sym_preproc_elif_token1] = ACTIONS(5660), + [anon_sym_LBRACK] = ACTIONS(5012), + [anon_sym_COMMA] = ACTIONS(5012), + [anon_sym_LPAREN] = ACTIONS(5012), + [anon_sym_LT] = ACTIONS(5014), + [anon_sym_GT] = ACTIONS(5014), + [anon_sym_where] = ACTIONS(5012), + [anon_sym_QMARK] = ACTIONS(5014), + [anon_sym_BANG] = ACTIONS(5014), + [anon_sym_PLUS_PLUS] = ACTIONS(5012), + [anon_sym_DASH_DASH] = ACTIONS(5012), + [anon_sym_PLUS] = ACTIONS(5014), + [anon_sym_DASH] = ACTIONS(5014), + [anon_sym_STAR] = ACTIONS(5012), + [anon_sym_SLASH] = ACTIONS(5014), + [anon_sym_PERCENT] = ACTIONS(5012), + [anon_sym_CARET] = ACTIONS(5012), + [anon_sym_PIPE] = ACTIONS(5014), + [anon_sym_AMP] = ACTIONS(5014), + [anon_sym_LT_LT] = ACTIONS(5012), + [anon_sym_GT_GT] = ACTIONS(5014), + [anon_sym_GT_GT_GT] = ACTIONS(5012), + [anon_sym_EQ_EQ] = ACTIONS(5012), + [anon_sym_BANG_EQ] = ACTIONS(5012), + [anon_sym_GT_EQ] = ACTIONS(5012), + [anon_sym_LT_EQ] = ACTIONS(5012), + [anon_sym_DOT] = ACTIONS(5014), + [anon_sym_switch] = ACTIONS(5012), + [anon_sym_DOT_DOT] = ACTIONS(5012), + [anon_sym_and] = ACTIONS(5012), + [anon_sym_or] = ACTIONS(5014), + [anon_sym_AMP_AMP] = ACTIONS(5012), + [anon_sym_PIPE_PIPE] = ACTIONS(5012), + [anon_sym_QMARK_QMARK] = ACTIONS(5012), + [anon_sym_from] = ACTIONS(5012), + [anon_sym_into] = ACTIONS(5012), + [anon_sym_join] = ACTIONS(5012), + [anon_sym_let] = ACTIONS(5012), + [anon_sym_orderby] = ACTIONS(5012), + [anon_sym_ascending] = ACTIONS(5012), + [anon_sym_descending] = ACTIONS(5012), + [anon_sym_group] = ACTIONS(5012), + [anon_sym_select] = ACTIONS(5012), + [anon_sym_as] = ACTIONS(5014), + [anon_sym_is] = ACTIONS(5012), + [anon_sym_DASH_GT] = ACTIONS(5012), + [anon_sym_with] = ACTIONS(5012), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -530817,8 +530244,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3851] = { - [sym_argument_list] = STATE(3259), - [sym_bracketed_argument_list] = STATE(2613), [sym_preproc_region] = STATE(3851), [sym_preproc_endregion] = STATE(3851), [sym_preproc_line] = STATE(3851), @@ -530828,50 +530253,52 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3851), [sym_preproc_define] = STATE(3851), [sym_preproc_undef] = STATE(3851), - [anon_sym_SEMI] = ACTIONS(5660), - [anon_sym_LBRACK] = ACTIONS(5283), - [anon_sym_COMMA] = ACTIONS(5660), - [anon_sym_RBRACK] = ACTIONS(5660), - [anon_sym_LPAREN] = ACTIONS(5247), - [anon_sym_RPAREN] = ACTIONS(5660), - [anon_sym_RBRACE] = ACTIONS(5660), - [anon_sym_LT] = ACTIONS(6123), - [anon_sym_GT] = ACTIONS(6123), - [anon_sym_QMARK] = ACTIONS(5664), - [anon_sym_BANG] = ACTIONS(5285), - [anon_sym_PLUS_PLUS] = ACTIONS(5287), - [anon_sym_DASH_DASH] = ACTIONS(5287), - [anon_sym_PLUS] = ACTIONS(6127), - [anon_sym_DASH] = ACTIONS(6127), - [anon_sym_STAR] = ACTIONS(6129), - [anon_sym_SLASH] = ACTIONS(6131), - [anon_sym_PERCENT] = ACTIONS(6129), - [anon_sym_CARET] = ACTIONS(6133), - [anon_sym_PIPE] = ACTIONS(6135), - [anon_sym_AMP] = ACTIONS(6137), - [anon_sym_LT_LT] = ACTIONS(6139), - [anon_sym_GT_GT] = ACTIONS(6141), - [anon_sym_GT_GT_GT] = ACTIONS(6139), - [anon_sym_EQ_EQ] = ACTIONS(6143), - [anon_sym_BANG_EQ] = ACTIONS(6143), - [anon_sym_GT_EQ] = ACTIONS(6145), - [anon_sym_LT_EQ] = ACTIONS(6145), - [anon_sym_DOT] = ACTIONS(4075), - [anon_sym_switch] = ACTIONS(6147), - [anon_sym_DOT_DOT] = ACTIONS(6149), - [anon_sym_and] = ACTIONS(5660), - [anon_sym_or] = ACTIONS(5660), - [anon_sym_AMP_AMP] = ACTIONS(6151), - [anon_sym_PIPE_PIPE] = ACTIONS(5660), - [anon_sym_QMARK_QMARK] = ACTIONS(5660), - [anon_sym_into] = ACTIONS(5660), - [anon_sym_as] = ACTIONS(6157), - [anon_sym_is] = ACTIONS(6159), - [anon_sym_DASH_GT] = ACTIONS(4077), - [anon_sym_with] = ACTIONS(6161), - [aux_sym_preproc_if_token3] = ACTIONS(5660), - [aux_sym_preproc_else_token1] = ACTIONS(5660), - [aux_sym_preproc_elif_token1] = ACTIONS(5660), + [anon_sym_LBRACK] = ACTIONS(5016), + [anon_sym_COMMA] = ACTIONS(5016), + [anon_sym_LPAREN] = ACTIONS(5016), + [anon_sym_LT] = ACTIONS(5018), + [anon_sym_GT] = ACTIONS(5018), + [anon_sym_where] = ACTIONS(5016), + [anon_sym_QMARK] = ACTIONS(5018), + [anon_sym_BANG] = ACTIONS(5018), + [anon_sym_PLUS_PLUS] = ACTIONS(5016), + [anon_sym_DASH_DASH] = ACTIONS(5016), + [anon_sym_PLUS] = ACTIONS(5018), + [anon_sym_DASH] = ACTIONS(5018), + [anon_sym_STAR] = ACTIONS(5016), + [anon_sym_SLASH] = ACTIONS(5018), + [anon_sym_PERCENT] = ACTIONS(5016), + [anon_sym_CARET] = ACTIONS(5016), + [anon_sym_PIPE] = ACTIONS(5018), + [anon_sym_AMP] = ACTIONS(5018), + [anon_sym_LT_LT] = ACTIONS(5016), + [anon_sym_GT_GT] = ACTIONS(5018), + [anon_sym_GT_GT_GT] = ACTIONS(5016), + [anon_sym_EQ_EQ] = ACTIONS(5016), + [anon_sym_BANG_EQ] = ACTIONS(5016), + [anon_sym_GT_EQ] = ACTIONS(5016), + [anon_sym_LT_EQ] = ACTIONS(5016), + [anon_sym_DOT] = ACTIONS(5018), + [anon_sym_switch] = ACTIONS(5016), + [anon_sym_DOT_DOT] = ACTIONS(5016), + [anon_sym_and] = ACTIONS(5016), + [anon_sym_or] = ACTIONS(5018), + [anon_sym_AMP_AMP] = ACTIONS(5016), + [anon_sym_PIPE_PIPE] = ACTIONS(5016), + [anon_sym_QMARK_QMARK] = ACTIONS(5016), + [anon_sym_from] = ACTIONS(5016), + [anon_sym_into] = ACTIONS(5016), + [anon_sym_join] = ACTIONS(5016), + [anon_sym_let] = ACTIONS(5016), + [anon_sym_orderby] = ACTIONS(5016), + [anon_sym_ascending] = ACTIONS(5016), + [anon_sym_descending] = ACTIONS(5016), + [anon_sym_group] = ACTIONS(5016), + [anon_sym_select] = ACTIONS(5016), + [anon_sym_as] = ACTIONS(5018), + [anon_sym_is] = ACTIONS(5016), + [anon_sym_DASH_GT] = ACTIONS(5016), + [anon_sym_with] = ACTIONS(5016), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -530884,8 +530311,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3852] = { - [sym_argument_list] = STATE(3259), - [sym_bracketed_argument_list] = STATE(2613), [sym_preproc_region] = STATE(3852), [sym_preproc_endregion] = STATE(3852), [sym_preproc_line] = STATE(3852), @@ -530895,50 +530320,52 @@ 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), - [anon_sym_SEMI] = ACTIONS(5660), - [anon_sym_LBRACK] = ACTIONS(5283), - [anon_sym_COMMA] = ACTIONS(5660), - [anon_sym_RBRACK] = ACTIONS(5660), - [anon_sym_LPAREN] = ACTIONS(5247), - [anon_sym_RPAREN] = ACTIONS(5660), - [anon_sym_RBRACE] = ACTIONS(5660), - [anon_sym_LT] = ACTIONS(6123), - [anon_sym_GT] = ACTIONS(6123), - [anon_sym_QMARK] = ACTIONS(5664), - [anon_sym_BANG] = ACTIONS(5285), - [anon_sym_PLUS_PLUS] = ACTIONS(5287), - [anon_sym_DASH_DASH] = ACTIONS(5287), - [anon_sym_PLUS] = ACTIONS(6127), - [anon_sym_DASH] = ACTIONS(6127), - [anon_sym_STAR] = ACTIONS(6129), - [anon_sym_SLASH] = ACTIONS(6131), - [anon_sym_PERCENT] = ACTIONS(6129), - [anon_sym_CARET] = ACTIONS(6133), - [anon_sym_PIPE] = ACTIONS(6135), - [anon_sym_AMP] = ACTIONS(6137), - [anon_sym_LT_LT] = ACTIONS(6139), - [anon_sym_GT_GT] = ACTIONS(6141), - [anon_sym_GT_GT_GT] = ACTIONS(6139), - [anon_sym_EQ_EQ] = ACTIONS(6143), - [anon_sym_BANG_EQ] = ACTIONS(6143), - [anon_sym_GT_EQ] = ACTIONS(6145), - [anon_sym_LT_EQ] = ACTIONS(6145), - [anon_sym_DOT] = ACTIONS(4075), - [anon_sym_switch] = ACTIONS(6147), - [anon_sym_DOT_DOT] = ACTIONS(6149), - [anon_sym_and] = ACTIONS(5660), - [anon_sym_or] = ACTIONS(5660), - [anon_sym_AMP_AMP] = ACTIONS(6151), - [anon_sym_PIPE_PIPE] = ACTIONS(6153), - [anon_sym_QMARK_QMARK] = ACTIONS(6155), - [anon_sym_into] = ACTIONS(5660), - [anon_sym_as] = ACTIONS(6157), - [anon_sym_is] = ACTIONS(6159), - [anon_sym_DASH_GT] = ACTIONS(4077), - [anon_sym_with] = ACTIONS(6161), - [aux_sym_preproc_if_token3] = ACTIONS(5660), - [aux_sym_preproc_else_token1] = ACTIONS(5660), - [aux_sym_preproc_elif_token1] = ACTIONS(5660), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -530951,6 +530378,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3853] = { + [sym__name] = STATE(3488), + [sym_alias_qualified_name] = STATE(3304), + [sym__simple_name] = STATE(3304), + [sym_qualified_name] = STATE(3304), + [sym_generic_name] = STATE(3241), + [sym_type] = STATE(3223), + [sym_implicit_type] = STATE(3222), + [sym_array_type] = STATE(3229), + [sym__array_base_type] = STATE(7208), + [sym_nullable_type] = STATE(3216), + [sym_pointer_type] = STATE(3216), + [sym__pointer_base_type] = STATE(7508), + [sym_function_pointer_type] = STATE(3216), + [sym_ref_type] = STATE(3222), + [sym_scoped_type] = STATE(3222), + [sym_tuple_type] = STATE(3308), + [sym_identifier] = STATE(3177), + [sym__reserved_identifier] = STATE(3205), [sym_preproc_region] = STATE(3853), [sym_preproc_endregion] = STATE(3853), [sym_preproc_line] = STATE(3853), @@ -530960,52 +530405,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(5354), - [anon_sym_COMMA] = ACTIONS(5354), - [anon_sym_LPAREN] = ACTIONS(5354), - [anon_sym_LT] = ACTIONS(5356), - [anon_sym_GT] = ACTIONS(5356), - [anon_sym_where] = ACTIONS(5354), - [anon_sym_QMARK] = ACTIONS(5356), - [anon_sym_BANG] = ACTIONS(5356), - [anon_sym_PLUS_PLUS] = ACTIONS(5354), - [anon_sym_DASH_DASH] = ACTIONS(5354), - [anon_sym_PLUS] = ACTIONS(5356), - [anon_sym_DASH] = ACTIONS(5356), - [anon_sym_STAR] = ACTIONS(5354), - [anon_sym_SLASH] = ACTIONS(5356), - [anon_sym_PERCENT] = ACTIONS(5354), - [anon_sym_CARET] = ACTIONS(5354), - [anon_sym_PIPE] = ACTIONS(5356), - [anon_sym_AMP] = ACTIONS(5356), - [anon_sym_LT_LT] = ACTIONS(5354), - [anon_sym_GT_GT] = ACTIONS(5356), - [anon_sym_GT_GT_GT] = ACTIONS(5354), - [anon_sym_EQ_EQ] = ACTIONS(5354), - [anon_sym_BANG_EQ] = ACTIONS(5354), - [anon_sym_GT_EQ] = ACTIONS(5354), - [anon_sym_LT_EQ] = ACTIONS(5354), - [anon_sym_DOT] = ACTIONS(5356), - [anon_sym_switch] = ACTIONS(5354), - [anon_sym_DOT_DOT] = ACTIONS(5354), - [anon_sym_and] = ACTIONS(5354), - [anon_sym_or] = ACTIONS(5356), - [anon_sym_AMP_AMP] = ACTIONS(5354), - [anon_sym_PIPE_PIPE] = ACTIONS(5354), - [anon_sym_QMARK_QMARK] = ACTIONS(5354), - [anon_sym_from] = ACTIONS(5354), - [anon_sym_into] = ACTIONS(5354), - [anon_sym_join] = ACTIONS(5354), - [anon_sym_let] = ACTIONS(5354), - [anon_sym_orderby] = ACTIONS(5354), - [anon_sym_ascending] = ACTIONS(5354), - [anon_sym_descending] = ACTIONS(5354), - [anon_sym_group] = ACTIONS(5354), - [anon_sym_select] = ACTIONS(5354), - [anon_sym_as] = ACTIONS(5356), - [anon_sym_is] = ACTIONS(5354), - [anon_sym_DASH_GT] = ACTIONS(5354), - [anon_sym_with] = ACTIONS(5354), + [sym__identifier_token] = ACTIONS(3798), + [anon_sym_alias] = ACTIONS(3800), + [anon_sym_global] = ACTIONS(3800), + [anon_sym_LPAREN] = ACTIONS(6101), + [anon_sym_ref] = ACTIONS(4171), + [anon_sym_delegate] = ACTIONS(5638), + [anon_sym_file] = ACTIONS(3800), + [anon_sym_readonly] = ACTIONS(6185), + [anon_sym_where] = ACTIONS(3800), + [anon_sym_notnull] = ACTIONS(3800), + [anon_sym_unmanaged] = ACTIONS(3800), + [anon_sym_scoped] = ACTIONS(5763), + [anon_sym_var] = ACTIONS(5642), + [sym_predefined_type] = ACTIONS(5644), + [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), @@ -531018,24 +530445,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3854] = { - [sym__name] = STATE(5231), - [sym_alias_qualified_name] = STATE(3251), - [sym__simple_name] = STATE(3251), - [sym_qualified_name] = STATE(3251), - [sym_generic_name] = STATE(3246), - [sym_type] = STATE(3273), - [sym_implicit_type] = STATE(3253), - [sym_array_type] = STATE(3255), - [sym__array_base_type] = STATE(7101), - [sym_nullable_type] = STATE(3257), - [sym_pointer_type] = STATE(3257), - [sym__pointer_base_type] = STATE(7546), - [sym_function_pointer_type] = STATE(3257), - [sym_ref_type] = STATE(3253), - [sym_scoped_type] = STATE(3253), - [sym_tuple_type] = STATE(3258), - [sym_identifier] = STATE(4654), - [sym__reserved_identifier] = STATE(3225), + [sym_argument_list] = STATE(3771), + [sym_bracketed_argument_list] = STATE(2892), [sym_preproc_region] = STATE(3854), [sym_preproc_endregion] = STATE(3854), [sym_preproc_line] = STATE(3854), @@ -531045,34 +530456,50 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3854), [sym_preproc_define] = STATE(3854), [sym_preproc_undef] = STATE(3854), - [sym__identifier_token] = ACTIONS(3788), - [anon_sym_alias] = ACTIONS(3790), - [anon_sym_global] = ACTIONS(3790), - [anon_sym_LPAREN] = ACTIONS(6059), - [anon_sym_ref] = ACTIONS(4064), - [anon_sym_delegate] = ACTIONS(5818), - [anon_sym_file] = ACTIONS(3790), - [anon_sym_readonly] = ACTIONS(6211), - [anon_sym_where] = ACTIONS(3790), - [anon_sym_notnull] = ACTIONS(3790), - [anon_sym_unmanaged] = ACTIONS(3790), - [anon_sym_scoped] = ACTIONS(5830), - [anon_sym_var] = ACTIONS(5822), - [sym_predefined_type] = ACTIONS(5824), - [anon_sym_yield] = ACTIONS(3790), - [anon_sym_when] = ACTIONS(3790), - [anon_sym_from] = ACTIONS(3790), - [anon_sym_into] = ACTIONS(3790), - [anon_sym_join] = ACTIONS(3790), - [anon_sym_on] = ACTIONS(3790), - [anon_sym_equals] = ACTIONS(3790), - [anon_sym_let] = ACTIONS(3790), - [anon_sym_orderby] = ACTIONS(3790), - [anon_sym_ascending] = ACTIONS(3790), - [anon_sym_descending] = ACTIONS(3790), - [anon_sym_group] = ACTIONS(3790), - [anon_sym_by] = ACTIONS(3790), - [anon_sym_select] = ACTIONS(3790), + [anon_sym_LBRACK] = ACTIONS(5650), + [anon_sym_COMMA] = ACTIONS(5849), + [anon_sym_LPAREN] = ACTIONS(5591), + [anon_sym_LT] = ACTIONS(6043), + [anon_sym_GT] = ACTIONS(6043), + [anon_sym_where] = ACTIONS(5849), + [anon_sym_QMARK] = ACTIONS(6045), + [anon_sym_BANG] = ACTIONS(5658), + [anon_sym_PLUS_PLUS] = ACTIONS(5660), + [anon_sym_DASH_DASH] = ACTIONS(5660), + [anon_sym_PLUS] = ACTIONS(6047), + [anon_sym_DASH] = ACTIONS(6047), + [anon_sym_STAR] = ACTIONS(6049), + [anon_sym_SLASH] = ACTIONS(6051), + [anon_sym_PERCENT] = ACTIONS(6049), + [anon_sym_CARET] = ACTIONS(6053), + [anon_sym_PIPE] = ACTIONS(6055), + [anon_sym_AMP] = ACTIONS(6057), + [anon_sym_LT_LT] = ACTIONS(6059), + [anon_sym_GT_GT] = ACTIONS(6061), + [anon_sym_GT_GT_GT] = ACTIONS(6059), + [anon_sym_EQ_EQ] = ACTIONS(6063), + [anon_sym_BANG_EQ] = ACTIONS(6063), + [anon_sym_GT_EQ] = ACTIONS(6065), + [anon_sym_LT_EQ] = ACTIONS(6065), + [anon_sym_DOT] = ACTIONS(4697), + [anon_sym_switch] = ACTIONS(5682), + [anon_sym_DOT_DOT] = ACTIONS(6067), + [anon_sym_AMP_AMP] = ACTIONS(6069), + [anon_sym_PIPE_PIPE] = ACTIONS(6071), + [anon_sym_QMARK_QMARK] = ACTIONS(6073), + [anon_sym_from] = ACTIONS(5849), + [anon_sym_into] = ACTIONS(5849), + [anon_sym_join] = ACTIONS(5849), + [anon_sym_let] = ACTIONS(5849), + [anon_sym_orderby] = ACTIONS(5849), + [anon_sym_ascending] = ACTIONS(5849), + [anon_sym_descending] = ACTIONS(5849), + [anon_sym_group] = ACTIONS(5849), + [anon_sym_select] = ACTIONS(5849), + [anon_sym_as] = ACTIONS(5694), + [anon_sym_is] = ACTIONS(6075), + [anon_sym_DASH_GT] = ACTIONS(4699), + [anon_sym_with] = ACTIONS(5698), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -531085,8 +530512,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3855] = { - [sym_argument_list] = STATE(3259), - [sym_bracketed_argument_list] = STATE(2613), + [sym_argument_list] = STATE(3348), + [sym_bracketed_argument_list] = STATE(2605), [sym_preproc_region] = STATE(3855), [sym_preproc_endregion] = STATE(3855), [sym_preproc_line] = STATE(3855), @@ -531096,50 +530523,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_SEMI] = ACTIONS(5864), - [anon_sym_LBRACK] = ACTIONS(5283), - [anon_sym_COMMA] = ACTIONS(5864), - [anon_sym_RBRACK] = ACTIONS(5864), - [anon_sym_LPAREN] = ACTIONS(5247), - [anon_sym_RPAREN] = ACTIONS(5864), - [anon_sym_RBRACE] = ACTIONS(5864), - [anon_sym_LT] = ACTIONS(6123), - [anon_sym_GT] = ACTIONS(6123), - [anon_sym_QMARK] = ACTIONS(6125), - [anon_sym_BANG] = ACTIONS(5285), - [anon_sym_PLUS_PLUS] = ACTIONS(5287), - [anon_sym_DASH_DASH] = ACTIONS(5287), - [anon_sym_PLUS] = ACTIONS(6127), - [anon_sym_DASH] = ACTIONS(6127), - [anon_sym_STAR] = ACTIONS(6129), - [anon_sym_SLASH] = ACTIONS(6131), - [anon_sym_PERCENT] = ACTIONS(6129), - [anon_sym_CARET] = ACTIONS(6133), - [anon_sym_PIPE] = ACTIONS(6135), - [anon_sym_AMP] = ACTIONS(6137), - [anon_sym_LT_LT] = ACTIONS(6139), - [anon_sym_GT_GT] = ACTIONS(6141), - [anon_sym_GT_GT_GT] = ACTIONS(6139), - [anon_sym_EQ_EQ] = ACTIONS(6143), - [anon_sym_BANG_EQ] = ACTIONS(6143), - [anon_sym_GT_EQ] = ACTIONS(6145), - [anon_sym_LT_EQ] = ACTIONS(6145), - [anon_sym_DOT] = ACTIONS(4075), - [anon_sym_switch] = ACTIONS(6147), - [anon_sym_DOT_DOT] = ACTIONS(6149), - [anon_sym_and] = ACTIONS(5864), - [anon_sym_or] = ACTIONS(5864), - [anon_sym_AMP_AMP] = ACTIONS(6151), - [anon_sym_PIPE_PIPE] = ACTIONS(6153), - [anon_sym_QMARK_QMARK] = ACTIONS(6155), - [anon_sym_into] = ACTIONS(5864), - [anon_sym_as] = ACTIONS(6157), - [anon_sym_is] = ACTIONS(6159), - [anon_sym_DASH_GT] = ACTIONS(4077), - [anon_sym_with] = ACTIONS(6161), - [aux_sym_preproc_if_token3] = ACTIONS(5864), - [aux_sym_preproc_else_token1] = ACTIONS(5864), - [aux_sym_preproc_elif_token1] = ACTIONS(5864), + [anon_sym_SEMI] = ACTIONS(5709), + [anon_sym_LBRACK] = ACTIONS(5236), + [anon_sym_COMMA] = ACTIONS(5709), + [anon_sym_RBRACK] = ACTIONS(5709), + [anon_sym_LPAREN] = ACTIONS(5227), + [anon_sym_RPAREN] = ACTIONS(5709), + [anon_sym_RBRACE] = ACTIONS(5709), + [anon_sym_LT] = ACTIONS(5993), + [anon_sym_GT] = ACTIONS(5993), + [anon_sym_QMARK] = ACTIONS(5995), + [anon_sym_BANG] = ACTIONS(5238), + [anon_sym_PLUS_PLUS] = ACTIONS(5240), + [anon_sym_DASH_DASH] = ACTIONS(5240), + [anon_sym_PLUS] = ACTIONS(5997), + [anon_sym_DASH] = ACTIONS(5997), + [anon_sym_STAR] = ACTIONS(5999), + [anon_sym_SLASH] = ACTIONS(6001), + [anon_sym_PERCENT] = ACTIONS(5999), + [anon_sym_CARET] = ACTIONS(6003), + [anon_sym_PIPE] = ACTIONS(6005), + [anon_sym_AMP] = ACTIONS(6007), + [anon_sym_LT_LT] = ACTIONS(6009), + [anon_sym_GT_GT] = ACTIONS(6011), + [anon_sym_GT_GT_GT] = ACTIONS(6009), + [anon_sym_EQ_EQ] = ACTIONS(6013), + [anon_sym_BANG_EQ] = ACTIONS(6013), + [anon_sym_GT_EQ] = ACTIONS(6015), + [anon_sym_LT_EQ] = ACTIONS(6015), + [anon_sym_DOT] = ACTIONS(4092), + [anon_sym_switch] = ACTIONS(6017), + [anon_sym_DOT_DOT] = ACTIONS(6019), + [anon_sym_and] = ACTIONS(5709), + [anon_sym_or] = ACTIONS(5709), + [anon_sym_AMP_AMP] = ACTIONS(6021), + [anon_sym_PIPE_PIPE] = ACTIONS(6023), + [anon_sym_QMARK_QMARK] = ACTIONS(6025), + [anon_sym_into] = ACTIONS(5709), + [anon_sym_as] = ACTIONS(6027), + [anon_sym_is] = ACTIONS(6029), + [anon_sym_DASH_GT] = ACTIONS(4094), + [anon_sym_with] = ACTIONS(6031), + [aux_sym_preproc_if_token3] = ACTIONS(5709), + [aux_sym_preproc_else_token1] = ACTIONS(5709), + [aux_sym_preproc_elif_token1] = ACTIONS(5709), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -531152,8 +530579,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3856] = { - [sym_argument_list] = STATE(3259), - [sym_bracketed_argument_list] = STATE(2613), [sym_preproc_region] = STATE(3856), [sym_preproc_endregion] = STATE(3856), [sym_preproc_line] = STATE(3856), @@ -531163,50 +530588,52 @@ 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_SEMI] = ACTIONS(5072), - [anon_sym_LBRACK] = ACTIONS(5283), - [anon_sym_COMMA] = ACTIONS(5072), - [anon_sym_RBRACK] = ACTIONS(5072), - [anon_sym_LPAREN] = ACTIONS(5247), - [anon_sym_RPAREN] = ACTIONS(5072), - [anon_sym_RBRACE] = ACTIONS(5072), - [anon_sym_LT] = ACTIONS(6123), - [anon_sym_GT] = ACTIONS(6123), - [anon_sym_QMARK] = ACTIONS(6125), - [anon_sym_BANG] = ACTIONS(5285), - [anon_sym_PLUS_PLUS] = ACTIONS(5287), - [anon_sym_DASH_DASH] = ACTIONS(5287), - [anon_sym_PLUS] = ACTIONS(6127), - [anon_sym_DASH] = ACTIONS(6127), - [anon_sym_STAR] = ACTIONS(6129), - [anon_sym_SLASH] = ACTIONS(6131), - [anon_sym_PERCENT] = ACTIONS(6129), - [anon_sym_CARET] = ACTIONS(6133), - [anon_sym_PIPE] = ACTIONS(6135), - [anon_sym_AMP] = ACTIONS(6137), - [anon_sym_LT_LT] = ACTIONS(6139), - [anon_sym_GT_GT] = ACTIONS(6141), - [anon_sym_GT_GT_GT] = ACTIONS(6139), - [anon_sym_EQ_EQ] = ACTIONS(6143), - [anon_sym_BANG_EQ] = ACTIONS(6143), - [anon_sym_GT_EQ] = ACTIONS(6145), - [anon_sym_LT_EQ] = ACTIONS(6145), - [anon_sym_DOT] = ACTIONS(4075), - [anon_sym_switch] = ACTIONS(6147), - [anon_sym_DOT_DOT] = ACTIONS(6149), - [anon_sym_and] = ACTIONS(5072), - [anon_sym_or] = ACTIONS(5072), - [anon_sym_AMP_AMP] = ACTIONS(6151), - [anon_sym_PIPE_PIPE] = ACTIONS(6153), - [anon_sym_QMARK_QMARK] = ACTIONS(6155), - [anon_sym_into] = ACTIONS(5072), - [anon_sym_as] = ACTIONS(6157), - [anon_sym_is] = ACTIONS(6159), - [anon_sym_DASH_GT] = ACTIONS(4077), - [anon_sym_with] = ACTIONS(6161), - [aux_sym_preproc_if_token3] = ACTIONS(5072), - [aux_sym_preproc_else_token1] = ACTIONS(5072), - [aux_sym_preproc_elif_token1] = ACTIONS(5072), + [sym__identifier_token] = ACTIONS(3466), + [anon_sym_extern] = ACTIONS(3466), + [anon_sym_alias] = ACTIONS(3466), + [anon_sym_global] = ACTIONS(3466), + [anon_sym_unsafe] = ACTIONS(3466), + [anon_sym_static] = ACTIONS(3466), + [anon_sym_LPAREN] = ACTIONS(5400), + [anon_sym_ref] = ACTIONS(3466), + [anon_sym_delegate] = ACTIONS(3466), + [anon_sym_abstract] = ACTIONS(3466), + [anon_sym_async] = ACTIONS(3466), + [anon_sym_const] = ACTIONS(3466), + [anon_sym_file] = ACTIONS(3466), + [anon_sym_fixed] = ACTIONS(3466), + [anon_sym_internal] = ACTIONS(3466), + [anon_sym_new] = ACTIONS(3466), + [anon_sym_override] = ACTIONS(3466), + [anon_sym_partial] = ACTIONS(3466), + [anon_sym_private] = ACTIONS(3466), + [anon_sym_protected] = ACTIONS(3466), + [anon_sym_public] = ACTIONS(3466), + [anon_sym_readonly] = ACTIONS(3466), + [anon_sym_required] = ACTIONS(3466), + [anon_sym_sealed] = ACTIONS(3466), + [anon_sym_virtual] = ACTIONS(3466), + [anon_sym_volatile] = ACTIONS(3466), + [anon_sym_where] = ACTIONS(3466), + [anon_sym_notnull] = ACTIONS(3466), + [anon_sym_unmanaged] = ACTIONS(3466), + [anon_sym_scoped] = ACTIONS(3466), + [anon_sym_var] = ACTIONS(3466), + [sym_predefined_type] = ACTIONS(3466), + [anon_sym_yield] = ACTIONS(3466), + [anon_sym_when] = ACTIONS(3466), + [anon_sym_from] = ACTIONS(3466), + [anon_sym_into] = ACTIONS(3466), + [anon_sym_join] = ACTIONS(3466), + [anon_sym_on] = ACTIONS(3466), + [anon_sym_equals] = ACTIONS(3466), + [anon_sym_let] = ACTIONS(3466), + [anon_sym_orderby] = ACTIONS(3466), + [anon_sym_ascending] = ACTIONS(3466), + [anon_sym_descending] = ACTIONS(3466), + [anon_sym_group] = ACTIONS(3466), + [anon_sym_by] = ACTIONS(3466), + [anon_sym_select] = ACTIONS(3466), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -531219,8 +530646,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3857] = { - [sym_argument_list] = STATE(3259), - [sym_bracketed_argument_list] = STATE(2613), [sym_preproc_region] = STATE(3857), [sym_preproc_endregion] = STATE(3857), [sym_preproc_line] = STATE(3857), @@ -531230,50 +530655,52 @@ 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_SEMI] = ACTIONS(5882), - [anon_sym_LBRACK] = ACTIONS(5283), - [anon_sym_COMMA] = ACTIONS(5882), - [anon_sym_RBRACK] = ACTIONS(5882), - [anon_sym_LPAREN] = ACTIONS(5247), - [anon_sym_RPAREN] = ACTIONS(5882), - [anon_sym_RBRACE] = ACTIONS(5882), - [anon_sym_LT] = ACTIONS(6123), - [anon_sym_GT] = ACTIONS(6123), - [anon_sym_QMARK] = ACTIONS(6125), - [anon_sym_BANG] = ACTIONS(5285), - [anon_sym_PLUS_PLUS] = ACTIONS(5287), - [anon_sym_DASH_DASH] = ACTIONS(5287), - [anon_sym_PLUS] = ACTIONS(6127), - [anon_sym_DASH] = ACTIONS(6127), - [anon_sym_STAR] = ACTIONS(6129), - [anon_sym_SLASH] = ACTIONS(6131), - [anon_sym_PERCENT] = ACTIONS(6129), - [anon_sym_CARET] = ACTIONS(6133), - [anon_sym_PIPE] = ACTIONS(6135), - [anon_sym_AMP] = ACTIONS(6137), - [anon_sym_LT_LT] = ACTIONS(6139), - [anon_sym_GT_GT] = ACTIONS(6141), - [anon_sym_GT_GT_GT] = ACTIONS(6139), - [anon_sym_EQ_EQ] = ACTIONS(6143), - [anon_sym_BANG_EQ] = ACTIONS(6143), - [anon_sym_GT_EQ] = ACTIONS(6145), - [anon_sym_LT_EQ] = ACTIONS(6145), - [anon_sym_DOT] = ACTIONS(4075), - [anon_sym_switch] = ACTIONS(6147), - [anon_sym_DOT_DOT] = ACTIONS(6149), - [anon_sym_and] = ACTIONS(5882), - [anon_sym_or] = ACTIONS(5882), - [anon_sym_AMP_AMP] = ACTIONS(6151), - [anon_sym_PIPE_PIPE] = ACTIONS(6153), - [anon_sym_QMARK_QMARK] = ACTIONS(6155), - [anon_sym_into] = ACTIONS(5882), - [anon_sym_as] = ACTIONS(6157), - [anon_sym_is] = ACTIONS(6159), - [anon_sym_DASH_GT] = ACTIONS(4077), - [anon_sym_with] = ACTIONS(6161), - [aux_sym_preproc_if_token3] = ACTIONS(5882), - [aux_sym_preproc_else_token1] = ACTIONS(5882), - [aux_sym_preproc_elif_token1] = ACTIONS(5882), + [anon_sym_LBRACK] = ACTIONS(5430), + [anon_sym_COMMA] = ACTIONS(5430), + [anon_sym_LPAREN] = ACTIONS(5430), + [anon_sym_LT] = ACTIONS(5432), + [anon_sym_GT] = ACTIONS(5432), + [anon_sym_where] = ACTIONS(5430), + [anon_sym_QMARK] = ACTIONS(5432), + [anon_sym_BANG] = ACTIONS(5432), + [anon_sym_PLUS_PLUS] = ACTIONS(5430), + [anon_sym_DASH_DASH] = ACTIONS(5430), + [anon_sym_PLUS] = ACTIONS(5432), + [anon_sym_DASH] = ACTIONS(5432), + [anon_sym_STAR] = ACTIONS(5430), + [anon_sym_SLASH] = ACTIONS(5432), + [anon_sym_PERCENT] = ACTIONS(5430), + [anon_sym_CARET] = ACTIONS(5430), + [anon_sym_PIPE] = ACTIONS(5432), + [anon_sym_AMP] = ACTIONS(5432), + [anon_sym_LT_LT] = ACTIONS(5430), + [anon_sym_GT_GT] = ACTIONS(5432), + [anon_sym_GT_GT_GT] = ACTIONS(5430), + [anon_sym_EQ_EQ] = ACTIONS(5430), + [anon_sym_BANG_EQ] = ACTIONS(5430), + [anon_sym_GT_EQ] = ACTIONS(5430), + [anon_sym_LT_EQ] = ACTIONS(5430), + [anon_sym_DOT] = ACTIONS(5432), + [anon_sym_switch] = ACTIONS(5430), + [anon_sym_DOT_DOT] = ACTIONS(5430), + [anon_sym_and] = ACTIONS(5430), + [anon_sym_or] = ACTIONS(5432), + [anon_sym_AMP_AMP] = ACTIONS(5430), + [anon_sym_PIPE_PIPE] = ACTIONS(5430), + [anon_sym_QMARK_QMARK] = ACTIONS(5430), + [anon_sym_from] = ACTIONS(5430), + [anon_sym_into] = ACTIONS(5430), + [anon_sym_join] = ACTIONS(5430), + [anon_sym_let] = ACTIONS(5430), + [anon_sym_orderby] = ACTIONS(5430), + [anon_sym_ascending] = ACTIONS(5430), + [anon_sym_descending] = ACTIONS(5430), + [anon_sym_group] = ACTIONS(5430), + [anon_sym_select] = ACTIONS(5430), + [anon_sym_as] = ACTIONS(5432), + [anon_sym_is] = ACTIONS(5430), + [anon_sym_DASH_GT] = ACTIONS(5430), + [anon_sym_with] = ACTIONS(5430), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -531286,25 +530713,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3858] = { - [sym_variable_declaration] = STATE(7757), - [sym__name] = STATE(4390), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(4096), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(4109), - [sym_type] = STATE(5725), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_identifier] = STATE(4087), - [sym__reserved_identifier] = STATE(3691), [sym_preproc_region] = STATE(3858), [sym_preproc_endregion] = STATE(3858), [sym_preproc_line] = STATE(3858), @@ -531314,33 +530722,52 @@ 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), - [sym__identifier_token] = ACTIONS(2967), - [anon_sym_alias] = ACTIONS(2971), - [anon_sym_global] = ACTIONS(2971), - [anon_sym_LPAREN] = ACTIONS(2979), - [anon_sym_ref] = ACTIONS(3452), - [anon_sym_delegate] = ACTIONS(3454), - [anon_sym_file] = ACTIONS(2971), - [anon_sym_where] = ACTIONS(2971), - [anon_sym_notnull] = ACTIONS(2971), - [anon_sym_unmanaged] = ACTIONS(2971), - [anon_sym_scoped] = ACTIONS(2997), - [anon_sym_var] = ACTIONS(2999), - [sym_predefined_type] = ACTIONS(3001), - [anon_sym_yield] = ACTIONS(2971), - [anon_sym_when] = ACTIONS(2971), - [anon_sym_from] = ACTIONS(2971), - [anon_sym_into] = ACTIONS(2971), - [anon_sym_join] = ACTIONS(2971), - [anon_sym_on] = ACTIONS(2971), - [anon_sym_equals] = ACTIONS(2971), - [anon_sym_let] = ACTIONS(2971), - [anon_sym_orderby] = ACTIONS(2971), - [anon_sym_ascending] = ACTIONS(2971), - [anon_sym_descending] = ACTIONS(2971), - [anon_sym_group] = ACTIONS(2971), - [anon_sym_by] = ACTIONS(2971), - [anon_sym_select] = ACTIONS(2971), + [anon_sym_LBRACK] = ACTIONS(5020), + [anon_sym_COMMA] = ACTIONS(5020), + [anon_sym_LPAREN] = ACTIONS(5020), + [anon_sym_LT] = ACTIONS(5022), + [anon_sym_GT] = ACTIONS(5022), + [anon_sym_where] = ACTIONS(5020), + [anon_sym_QMARK] = ACTIONS(5022), + [anon_sym_BANG] = ACTIONS(5022), + [anon_sym_PLUS_PLUS] = ACTIONS(5020), + [anon_sym_DASH_DASH] = ACTIONS(5020), + [anon_sym_PLUS] = ACTIONS(5022), + [anon_sym_DASH] = ACTIONS(5022), + [anon_sym_STAR] = ACTIONS(5020), + [anon_sym_SLASH] = ACTIONS(5022), + [anon_sym_PERCENT] = ACTIONS(5020), + [anon_sym_CARET] = ACTIONS(5020), + [anon_sym_PIPE] = ACTIONS(5022), + [anon_sym_AMP] = ACTIONS(5022), + [anon_sym_LT_LT] = ACTIONS(5020), + [anon_sym_GT_GT] = ACTIONS(5022), + [anon_sym_GT_GT_GT] = ACTIONS(5020), + [anon_sym_EQ_EQ] = ACTIONS(5020), + [anon_sym_BANG_EQ] = ACTIONS(5020), + [anon_sym_GT_EQ] = ACTIONS(5020), + [anon_sym_LT_EQ] = ACTIONS(5020), + [anon_sym_DOT] = ACTIONS(5022), + [anon_sym_switch] = ACTIONS(5020), + [anon_sym_DOT_DOT] = ACTIONS(5020), + [anon_sym_and] = ACTIONS(5020), + [anon_sym_or] = ACTIONS(5022), + [anon_sym_AMP_AMP] = ACTIONS(5020), + [anon_sym_PIPE_PIPE] = ACTIONS(5020), + [anon_sym_QMARK_QMARK] = ACTIONS(5020), + [anon_sym_from] = ACTIONS(5020), + [anon_sym_into] = ACTIONS(5020), + [anon_sym_join] = ACTIONS(5020), + [anon_sym_let] = ACTIONS(5020), + [anon_sym_orderby] = ACTIONS(5020), + [anon_sym_ascending] = ACTIONS(5020), + [anon_sym_descending] = ACTIONS(5020), + [anon_sym_group] = ACTIONS(5020), + [anon_sym_select] = ACTIONS(5020), + [anon_sym_as] = ACTIONS(5022), + [anon_sym_is] = ACTIONS(5020), + [anon_sym_DASH_GT] = ACTIONS(5020), + [anon_sym_with] = ACTIONS(5020), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -531353,8 +530780,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3859] = { - [sym_argument_list] = STATE(3259), - [sym_bracketed_argument_list] = STATE(2613), [sym_preproc_region] = STATE(3859), [sym_preproc_endregion] = STATE(3859), [sym_preproc_line] = STATE(3859), @@ -531364,50 +530789,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), - [anon_sym_SEMI] = ACTIONS(5899), - [anon_sym_LBRACK] = ACTIONS(5283), - [anon_sym_COMMA] = ACTIONS(5899), - [anon_sym_RBRACK] = ACTIONS(5899), - [anon_sym_LPAREN] = ACTIONS(5247), - [anon_sym_RPAREN] = ACTIONS(5899), - [anon_sym_RBRACE] = ACTIONS(5899), - [anon_sym_LT] = ACTIONS(6123), - [anon_sym_GT] = ACTIONS(6123), - [anon_sym_QMARK] = ACTIONS(6125), - [anon_sym_BANG] = ACTIONS(5285), - [anon_sym_PLUS_PLUS] = ACTIONS(5287), - [anon_sym_DASH_DASH] = ACTIONS(5287), - [anon_sym_PLUS] = ACTIONS(6127), - [anon_sym_DASH] = ACTIONS(6127), - [anon_sym_STAR] = ACTIONS(6129), - [anon_sym_SLASH] = ACTIONS(6131), - [anon_sym_PERCENT] = ACTIONS(6129), - [anon_sym_CARET] = ACTIONS(6133), - [anon_sym_PIPE] = ACTIONS(6135), - [anon_sym_AMP] = ACTIONS(6137), - [anon_sym_LT_LT] = ACTIONS(6139), - [anon_sym_GT_GT] = ACTIONS(6141), - [anon_sym_GT_GT_GT] = ACTIONS(6139), - [anon_sym_EQ_EQ] = ACTIONS(6143), - [anon_sym_BANG_EQ] = ACTIONS(6143), - [anon_sym_GT_EQ] = ACTIONS(6145), - [anon_sym_LT_EQ] = ACTIONS(6145), - [anon_sym_DOT] = ACTIONS(4075), - [anon_sym_switch] = ACTIONS(6147), - [anon_sym_DOT_DOT] = ACTIONS(6149), - [anon_sym_and] = ACTIONS(5899), - [anon_sym_or] = ACTIONS(5899), - [anon_sym_AMP_AMP] = ACTIONS(6151), - [anon_sym_PIPE_PIPE] = ACTIONS(6153), - [anon_sym_QMARK_QMARK] = ACTIONS(6155), - [anon_sym_into] = ACTIONS(5899), - [anon_sym_as] = ACTIONS(6157), - [anon_sym_is] = ACTIONS(6159), - [anon_sym_DASH_GT] = ACTIONS(4077), - [anon_sym_with] = ACTIONS(6161), - [aux_sym_preproc_if_token3] = ACTIONS(5899), - [aux_sym_preproc_else_token1] = ACTIONS(5899), - [aux_sym_preproc_elif_token1] = ACTIONS(5899), + [anon_sym_LBRACK] = ACTIONS(5024), + [anon_sym_COMMA] = ACTIONS(5024), + [anon_sym_LPAREN] = ACTIONS(5024), + [anon_sym_LT] = ACTIONS(5026), + [anon_sym_GT] = ACTIONS(5026), + [anon_sym_where] = ACTIONS(5024), + [anon_sym_QMARK] = ACTIONS(5026), + [anon_sym_BANG] = ACTIONS(5026), + [anon_sym_PLUS_PLUS] = ACTIONS(5024), + [anon_sym_DASH_DASH] = ACTIONS(5024), + [anon_sym_PLUS] = ACTIONS(5026), + [anon_sym_DASH] = ACTIONS(5026), + [anon_sym_STAR] = ACTIONS(5024), + [anon_sym_SLASH] = ACTIONS(5026), + [anon_sym_PERCENT] = ACTIONS(5024), + [anon_sym_CARET] = ACTIONS(5024), + [anon_sym_PIPE] = ACTIONS(5026), + [anon_sym_AMP] = ACTIONS(5026), + [anon_sym_LT_LT] = ACTIONS(5024), + [anon_sym_GT_GT] = ACTIONS(5026), + [anon_sym_GT_GT_GT] = ACTIONS(5024), + [anon_sym_EQ_EQ] = ACTIONS(5024), + [anon_sym_BANG_EQ] = ACTIONS(5024), + [anon_sym_GT_EQ] = ACTIONS(5024), + [anon_sym_LT_EQ] = ACTIONS(5024), + [anon_sym_DOT] = ACTIONS(5026), + [anon_sym_switch] = ACTIONS(5024), + [anon_sym_DOT_DOT] = ACTIONS(5024), + [anon_sym_and] = ACTIONS(5024), + [anon_sym_or] = ACTIONS(5026), + [anon_sym_AMP_AMP] = ACTIONS(5024), + [anon_sym_PIPE_PIPE] = ACTIONS(5024), + [anon_sym_QMARK_QMARK] = ACTIONS(5024), + [anon_sym_from] = ACTIONS(5024), + [anon_sym_into] = ACTIONS(5024), + [anon_sym_join] = ACTIONS(5024), + [anon_sym_let] = ACTIONS(5024), + [anon_sym_orderby] = ACTIONS(5024), + [anon_sym_ascending] = ACTIONS(5024), + [anon_sym_descending] = ACTIONS(5024), + [anon_sym_group] = ACTIONS(5024), + [anon_sym_select] = ACTIONS(5024), + [anon_sym_as] = ACTIONS(5026), + [anon_sym_is] = ACTIONS(5024), + [anon_sym_DASH_GT] = ACTIONS(5024), + [anon_sym_with] = ACTIONS(5024), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -531420,24 +530847,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3860] = { - [sym__name] = STATE(4390), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(4096), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(4109), - [sym_type] = STATE(6100), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_identifier] = STATE(4087), - [sym__reserved_identifier] = STATE(3691), [sym_preproc_region] = STATE(3860), [sym_preproc_endregion] = STATE(3860), [sym_preproc_line] = STATE(3860), @@ -531447,34 +530856,52 @@ 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(2967), - [anon_sym_alias] = ACTIONS(2971), - [anon_sym_global] = ACTIONS(2971), - [anon_sym_LPAREN] = ACTIONS(2979), - [anon_sym_ref] = ACTIONS(3452), - [anon_sym_delegate] = ACTIONS(3454), - [anon_sym_file] = ACTIONS(2971), - [anon_sym_where] = ACTIONS(2971), - [anon_sym_notnull] = ACTIONS(2971), - [anon_sym_unmanaged] = ACTIONS(2971), - [anon_sym_STAR] = ACTIONS(5619), - [anon_sym_scoped] = ACTIONS(2997), - [anon_sym_var] = ACTIONS(2999), - [sym_predefined_type] = ACTIONS(3001), - [anon_sym_yield] = ACTIONS(2971), - [anon_sym_when] = ACTIONS(2971), - [anon_sym_from] = ACTIONS(2971), - [anon_sym_into] = ACTIONS(2971), - [anon_sym_join] = ACTIONS(2971), - [anon_sym_on] = ACTIONS(2971), - [anon_sym_equals] = ACTIONS(2971), - [anon_sym_let] = ACTIONS(2971), - [anon_sym_orderby] = ACTIONS(2971), - [anon_sym_ascending] = ACTIONS(2971), - [anon_sym_descending] = ACTIONS(2971), - [anon_sym_group] = ACTIONS(2971), - [anon_sym_by] = ACTIONS(2971), - [anon_sym_select] = ACTIONS(2971), + [anon_sym_LBRACK] = ACTIONS(5028), + [anon_sym_COMMA] = ACTIONS(5028), + [anon_sym_LPAREN] = ACTIONS(5028), + [anon_sym_LT] = ACTIONS(5030), + [anon_sym_GT] = ACTIONS(5030), + [anon_sym_where] = ACTIONS(5028), + [anon_sym_QMARK] = ACTIONS(5030), + [anon_sym_BANG] = ACTIONS(5030), + [anon_sym_PLUS_PLUS] = ACTIONS(5028), + [anon_sym_DASH_DASH] = ACTIONS(5028), + [anon_sym_PLUS] = ACTIONS(5030), + [anon_sym_DASH] = ACTIONS(5030), + [anon_sym_STAR] = ACTIONS(5028), + [anon_sym_SLASH] = ACTIONS(5030), + [anon_sym_PERCENT] = ACTIONS(5028), + [anon_sym_CARET] = ACTIONS(5028), + [anon_sym_PIPE] = ACTIONS(5030), + [anon_sym_AMP] = ACTIONS(5030), + [anon_sym_LT_LT] = ACTIONS(5028), + [anon_sym_GT_GT] = ACTIONS(5030), + [anon_sym_GT_GT_GT] = ACTIONS(5028), + [anon_sym_EQ_EQ] = ACTIONS(5028), + [anon_sym_BANG_EQ] = ACTIONS(5028), + [anon_sym_GT_EQ] = ACTIONS(5028), + [anon_sym_LT_EQ] = ACTIONS(5028), + [anon_sym_DOT] = ACTIONS(5030), + [anon_sym_switch] = ACTIONS(5028), + [anon_sym_DOT_DOT] = ACTIONS(5028), + [anon_sym_and] = ACTIONS(5028), + [anon_sym_or] = ACTIONS(5030), + [anon_sym_AMP_AMP] = ACTIONS(5028), + [anon_sym_PIPE_PIPE] = ACTIONS(5028), + [anon_sym_QMARK_QMARK] = ACTIONS(5028), + [anon_sym_from] = ACTIONS(5028), + [anon_sym_into] = ACTIONS(5028), + [anon_sym_join] = ACTIONS(5028), + [anon_sym_let] = ACTIONS(5028), + [anon_sym_orderby] = ACTIONS(5028), + [anon_sym_ascending] = ACTIONS(5028), + [anon_sym_descending] = ACTIONS(5028), + [anon_sym_group] = ACTIONS(5028), + [anon_sym_select] = ACTIONS(5028), + [anon_sym_as] = ACTIONS(5030), + [anon_sym_is] = ACTIONS(5028), + [anon_sym_DASH_GT] = ACTIONS(5028), + [anon_sym_with] = ACTIONS(5028), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -531487,25 +530914,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3861] = { - [sym__name] = STATE(4390), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(4096), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(4109), - [sym_type] = STATE(5950), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_tuple_element] = STATE(7255), - [sym_identifier] = STATE(4087), - [sym__reserved_identifier] = STATE(3691), + [sym__name] = STATE(3151), + [sym_alias_qualified_name] = STATE(3143), + [sym__simple_name] = STATE(3143), + [sym_qualified_name] = STATE(3143), + [sym_generic_name] = STATE(3184), + [sym_type] = STATE(3159), + [sym_implicit_type] = STATE(3146), + [sym_array_type] = STATE(3147), + [sym__array_base_type] = STATE(7165), + [sym_nullable_type] = STATE(3148), + [sym_pointer_type] = STATE(3148), + [sym__pointer_base_type] = STATE(7401), + [sym_function_pointer_type] = STATE(3148), + [sym_ref_type] = STATE(3146), + [sym_scoped_type] = STATE(3146), + [sym_tuple_type] = STATE(3149), + [sym_identifier] = STATE(3119), + [sym__reserved_identifier] = STATE(3120), [sym_preproc_region] = STATE(3861), [sym_preproc_endregion] = STATE(3861), [sym_preproc_line] = STATE(3861), @@ -531515,33 +530941,34 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3861), [sym_preproc_define] = STATE(3861), [sym_preproc_undef] = STATE(3861), - [sym__identifier_token] = ACTIONS(2967), - [anon_sym_alias] = ACTIONS(2971), - [anon_sym_global] = ACTIONS(2971), - [anon_sym_LPAREN] = ACTIONS(2979), - [anon_sym_ref] = ACTIONS(3606), - [anon_sym_delegate] = ACTIONS(3454), - [anon_sym_file] = ACTIONS(2971), - [anon_sym_where] = ACTIONS(2971), - [anon_sym_notnull] = ACTIONS(2971), - [anon_sym_unmanaged] = ACTIONS(2971), - [anon_sym_scoped] = ACTIONS(5737), - [anon_sym_var] = ACTIONS(4737), - [sym_predefined_type] = ACTIONS(3001), - [anon_sym_yield] = ACTIONS(2971), - [anon_sym_when] = ACTIONS(2971), - [anon_sym_from] = ACTIONS(2971), - [anon_sym_into] = ACTIONS(2971), - [anon_sym_join] = ACTIONS(2971), - [anon_sym_on] = ACTIONS(2971), - [anon_sym_equals] = ACTIONS(2971), - [anon_sym_let] = ACTIONS(2971), - [anon_sym_orderby] = ACTIONS(2971), - [anon_sym_ascending] = ACTIONS(2971), - [anon_sym_descending] = ACTIONS(2971), - [anon_sym_group] = ACTIONS(2971), - [anon_sym_by] = ACTIONS(2971), - [anon_sym_select] = ACTIONS(2971), + [sym__identifier_token] = ACTIONS(3761), + [anon_sym_alias] = ACTIONS(3763), + [anon_sym_global] = ACTIONS(3763), + [anon_sym_LPAREN] = ACTIONS(6133), + [anon_sym_ref] = ACTIONS(4173), + [anon_sym_delegate] = ACTIONS(5622), + [anon_sym_file] = ACTIONS(3763), + [anon_sym_readonly] = ACTIONS(6187), + [anon_sym_where] = ACTIONS(3763), + [anon_sym_notnull] = ACTIONS(3763), + [anon_sym_unmanaged] = ACTIONS(3763), + [anon_sym_scoped] = ACTIONS(5624), + [anon_sym_var] = ACTIONS(5626), + [sym_predefined_type] = ACTIONS(5628), + [anon_sym_yield] = ACTIONS(3763), + [anon_sym_when] = ACTIONS(3763), + [anon_sym_from] = ACTIONS(3763), + [anon_sym_into] = ACTIONS(3763), + [anon_sym_join] = ACTIONS(3763), + [anon_sym_on] = ACTIONS(3763), + [anon_sym_equals] = ACTIONS(3763), + [anon_sym_let] = ACTIONS(3763), + [anon_sym_orderby] = ACTIONS(3763), + [anon_sym_ascending] = ACTIONS(3763), + [anon_sym_descending] = ACTIONS(3763), + [anon_sym_group] = ACTIONS(3763), + [anon_sym_by] = ACTIONS(3763), + [anon_sym_select] = ACTIONS(3763), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -531554,25 +530981,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3862] = { - [sym_variable_declaration] = STATE(7720), - [sym__name] = STATE(4390), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(4096), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(4109), - [sym_type] = STATE(5922), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_identifier] = STATE(4087), - [sym__reserved_identifier] = STATE(3691), [sym_preproc_region] = STATE(3862), [sym_preproc_endregion] = STATE(3862), [sym_preproc_line] = STATE(3862), @@ -531582,33 +530990,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(2967), - [anon_sym_alias] = ACTIONS(2971), - [anon_sym_global] = ACTIONS(2971), - [anon_sym_LPAREN] = ACTIONS(2979), - [anon_sym_ref] = ACTIONS(3452), - [anon_sym_delegate] = ACTIONS(3454), - [anon_sym_file] = ACTIONS(2971), - [anon_sym_where] = ACTIONS(2971), - [anon_sym_notnull] = ACTIONS(2971), - [anon_sym_unmanaged] = ACTIONS(2971), - [anon_sym_scoped] = ACTIONS(2997), - [anon_sym_var] = ACTIONS(2999), - [sym_predefined_type] = ACTIONS(3001), - [anon_sym_yield] = ACTIONS(2971), - [anon_sym_when] = ACTIONS(2971), - [anon_sym_from] = ACTIONS(2971), - [anon_sym_into] = ACTIONS(2971), - [anon_sym_join] = ACTIONS(2971), - [anon_sym_on] = ACTIONS(2971), - [anon_sym_equals] = ACTIONS(2971), - [anon_sym_let] = ACTIONS(2971), - [anon_sym_orderby] = ACTIONS(2971), - [anon_sym_ascending] = ACTIONS(2971), - [anon_sym_descending] = ACTIONS(2971), - [anon_sym_group] = ACTIONS(2971), - [anon_sym_by] = ACTIONS(2971), - [anon_sym_select] = ACTIONS(2971), + [anon_sym_LBRACK] = ACTIONS(5032), + [anon_sym_COMMA] = ACTIONS(5032), + [anon_sym_LPAREN] = ACTIONS(5032), + [anon_sym_LT] = ACTIONS(5034), + [anon_sym_GT] = ACTIONS(5034), + [anon_sym_where] = ACTIONS(5032), + [anon_sym_QMARK] = ACTIONS(5034), + [anon_sym_BANG] = ACTIONS(5034), + [anon_sym_PLUS_PLUS] = ACTIONS(5032), + [anon_sym_DASH_DASH] = ACTIONS(5032), + [anon_sym_PLUS] = ACTIONS(5034), + [anon_sym_DASH] = ACTIONS(5034), + [anon_sym_STAR] = ACTIONS(5032), + [anon_sym_SLASH] = ACTIONS(5034), + [anon_sym_PERCENT] = ACTIONS(5032), + [anon_sym_CARET] = ACTIONS(5032), + [anon_sym_PIPE] = ACTIONS(5034), + [anon_sym_AMP] = ACTIONS(5034), + [anon_sym_LT_LT] = ACTIONS(5032), + [anon_sym_GT_GT] = ACTIONS(5034), + [anon_sym_GT_GT_GT] = ACTIONS(5032), + [anon_sym_EQ_EQ] = ACTIONS(5032), + [anon_sym_BANG_EQ] = ACTIONS(5032), + [anon_sym_GT_EQ] = ACTIONS(5032), + [anon_sym_LT_EQ] = ACTIONS(5032), + [anon_sym_DOT] = ACTIONS(5034), + [anon_sym_switch] = ACTIONS(5032), + [anon_sym_DOT_DOT] = ACTIONS(5032), + [anon_sym_and] = ACTIONS(5032), + [anon_sym_or] = ACTIONS(5034), + [anon_sym_AMP_AMP] = ACTIONS(5032), + [anon_sym_PIPE_PIPE] = ACTIONS(5032), + [anon_sym_QMARK_QMARK] = ACTIONS(5032), + [anon_sym_from] = ACTIONS(5032), + [anon_sym_into] = ACTIONS(5032), + [anon_sym_join] = ACTIONS(5032), + [anon_sym_let] = ACTIONS(5032), + [anon_sym_orderby] = ACTIONS(5032), + [anon_sym_ascending] = ACTIONS(5032), + [anon_sym_descending] = ACTIONS(5032), + [anon_sym_group] = ACTIONS(5032), + [anon_sym_select] = ACTIONS(5032), + [anon_sym_as] = ACTIONS(5034), + [anon_sym_is] = ACTIONS(5032), + [anon_sym_DASH_GT] = ACTIONS(5032), + [anon_sym_with] = ACTIONS(5032), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -531621,25 +531048,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3863] = { - [sym__name] = STATE(4390), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(4096), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(4109), - [sym_type] = STATE(5950), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_tuple_element] = STATE(7192), - [sym_identifier] = STATE(4087), - [sym__reserved_identifier] = STATE(3691), [sym_preproc_region] = STATE(3863), [sym_preproc_endregion] = STATE(3863), [sym_preproc_line] = STATE(3863), @@ -531649,33 +531057,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), - [sym__identifier_token] = ACTIONS(2967), - [anon_sym_alias] = ACTIONS(2971), - [anon_sym_global] = ACTIONS(2971), - [anon_sym_LPAREN] = ACTIONS(2979), - [anon_sym_ref] = ACTIONS(3606), - [anon_sym_delegate] = ACTIONS(3454), - [anon_sym_file] = ACTIONS(2971), - [anon_sym_where] = ACTIONS(2971), - [anon_sym_notnull] = ACTIONS(2971), - [anon_sym_unmanaged] = ACTIONS(2971), - [anon_sym_scoped] = ACTIONS(5737), - [anon_sym_var] = ACTIONS(4737), - [sym_predefined_type] = ACTIONS(3001), - [anon_sym_yield] = ACTIONS(2971), - [anon_sym_when] = ACTIONS(2971), - [anon_sym_from] = ACTIONS(2971), - [anon_sym_into] = ACTIONS(2971), - [anon_sym_join] = ACTIONS(2971), - [anon_sym_on] = ACTIONS(2971), - [anon_sym_equals] = ACTIONS(2971), - [anon_sym_let] = ACTIONS(2971), - [anon_sym_orderby] = ACTIONS(2971), - [anon_sym_ascending] = ACTIONS(2971), - [anon_sym_descending] = ACTIONS(2971), - [anon_sym_group] = ACTIONS(2971), - [anon_sym_by] = ACTIONS(2971), - [anon_sym_select] = ACTIONS(2971), + [anon_sym_LBRACK] = ACTIONS(5036), + [anon_sym_COMMA] = ACTIONS(5036), + [anon_sym_LPAREN] = ACTIONS(5036), + [anon_sym_LT] = ACTIONS(5038), + [anon_sym_GT] = ACTIONS(5038), + [anon_sym_where] = ACTIONS(5036), + [anon_sym_QMARK] = ACTIONS(5038), + [anon_sym_BANG] = ACTIONS(5038), + [anon_sym_PLUS_PLUS] = ACTIONS(5036), + [anon_sym_DASH_DASH] = ACTIONS(5036), + [anon_sym_PLUS] = ACTIONS(5038), + [anon_sym_DASH] = ACTIONS(5038), + [anon_sym_STAR] = ACTIONS(5036), + [anon_sym_SLASH] = ACTIONS(5038), + [anon_sym_PERCENT] = ACTIONS(5036), + [anon_sym_CARET] = ACTIONS(5036), + [anon_sym_PIPE] = ACTIONS(5038), + [anon_sym_AMP] = ACTIONS(5038), + [anon_sym_LT_LT] = ACTIONS(5036), + [anon_sym_GT_GT] = ACTIONS(5038), + [anon_sym_GT_GT_GT] = ACTIONS(5036), + [anon_sym_EQ_EQ] = ACTIONS(5036), + [anon_sym_BANG_EQ] = ACTIONS(5036), + [anon_sym_GT_EQ] = ACTIONS(5036), + [anon_sym_LT_EQ] = ACTIONS(5036), + [anon_sym_DOT] = ACTIONS(5038), + [anon_sym_switch] = ACTIONS(5036), + [anon_sym_DOT_DOT] = ACTIONS(5036), + [anon_sym_and] = ACTIONS(5036), + [anon_sym_or] = ACTIONS(5038), + [anon_sym_AMP_AMP] = ACTIONS(5036), + [anon_sym_PIPE_PIPE] = ACTIONS(5036), + [anon_sym_QMARK_QMARK] = ACTIONS(5036), + [anon_sym_from] = ACTIONS(5036), + [anon_sym_into] = ACTIONS(5036), + [anon_sym_join] = ACTIONS(5036), + [anon_sym_let] = ACTIONS(5036), + [anon_sym_orderby] = ACTIONS(5036), + [anon_sym_ascending] = ACTIONS(5036), + [anon_sym_descending] = ACTIONS(5036), + [anon_sym_group] = ACTIONS(5036), + [anon_sym_select] = ACTIONS(5036), + [anon_sym_as] = ACTIONS(5038), + [anon_sym_is] = ACTIONS(5036), + [anon_sym_DASH_GT] = ACTIONS(5036), + [anon_sym_with] = ACTIONS(5036), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -531688,25 +531115,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3864] = { - [sym__name] = STATE(4390), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(4096), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(4109), - [sym_type] = STATE(5950), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_tuple_element] = STATE(7039), - [sym_identifier] = STATE(4087), - [sym__reserved_identifier] = STATE(3691), + [sym_argument_list] = STATE(3348), + [sym_bracketed_argument_list] = STATE(2605), [sym_preproc_region] = STATE(3864), [sym_preproc_endregion] = STATE(3864), [sym_preproc_line] = STATE(3864), @@ -531716,33 +531126,50 @@ 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), - [sym__identifier_token] = ACTIONS(2967), - [anon_sym_alias] = ACTIONS(2971), - [anon_sym_global] = ACTIONS(2971), - [anon_sym_LPAREN] = ACTIONS(2979), - [anon_sym_ref] = ACTIONS(3606), - [anon_sym_delegate] = ACTIONS(3454), - [anon_sym_file] = ACTIONS(2971), - [anon_sym_where] = ACTIONS(2971), - [anon_sym_notnull] = ACTIONS(2971), - [anon_sym_unmanaged] = ACTIONS(2971), - [anon_sym_scoped] = ACTIONS(5737), - [anon_sym_var] = ACTIONS(4737), - [sym_predefined_type] = ACTIONS(3001), - [anon_sym_yield] = ACTIONS(2971), - [anon_sym_when] = ACTIONS(2971), - [anon_sym_from] = ACTIONS(2971), - [anon_sym_into] = ACTIONS(2971), - [anon_sym_join] = ACTIONS(2971), - [anon_sym_on] = ACTIONS(2971), - [anon_sym_equals] = ACTIONS(2971), - [anon_sym_let] = ACTIONS(2971), - [anon_sym_orderby] = ACTIONS(2971), - [anon_sym_ascending] = ACTIONS(2971), - [anon_sym_descending] = ACTIONS(2971), - [anon_sym_group] = ACTIONS(2971), - [anon_sym_by] = ACTIONS(2971), - [anon_sym_select] = ACTIONS(2971), + [anon_sym_SEMI] = ACTIONS(5737), + [anon_sym_LBRACK] = ACTIONS(5236), + [anon_sym_COMMA] = ACTIONS(5737), + [anon_sym_RBRACK] = ACTIONS(5737), + [anon_sym_LPAREN] = ACTIONS(5227), + [anon_sym_RPAREN] = ACTIONS(5737), + [anon_sym_RBRACE] = ACTIONS(5737), + [anon_sym_LT] = ACTIONS(5739), + [anon_sym_GT] = ACTIONS(5739), + [anon_sym_QMARK] = ACTIONS(5739), + [anon_sym_BANG] = ACTIONS(5238), + [anon_sym_PLUS_PLUS] = ACTIONS(5240), + [anon_sym_DASH_DASH] = ACTIONS(5240), + [anon_sym_PLUS] = ACTIONS(5997), + [anon_sym_DASH] = ACTIONS(5997), + [anon_sym_STAR] = ACTIONS(5999), + [anon_sym_SLASH] = ACTIONS(6001), + [anon_sym_PERCENT] = ACTIONS(5999), + [anon_sym_CARET] = ACTIONS(5737), + [anon_sym_PIPE] = ACTIONS(5739), + [anon_sym_AMP] = ACTIONS(5739), + [anon_sym_LT_LT] = ACTIONS(6009), + [anon_sym_GT_GT] = ACTIONS(6011), + [anon_sym_GT_GT_GT] = ACTIONS(6009), + [anon_sym_EQ_EQ] = ACTIONS(5737), + [anon_sym_BANG_EQ] = ACTIONS(5737), + [anon_sym_GT_EQ] = ACTIONS(5737), + [anon_sym_LT_EQ] = ACTIONS(5737), + [anon_sym_DOT] = ACTIONS(4092), + [anon_sym_switch] = ACTIONS(6017), + [anon_sym_DOT_DOT] = ACTIONS(6019), + [anon_sym_and] = ACTIONS(5737), + [anon_sym_or] = ACTIONS(5737), + [anon_sym_AMP_AMP] = ACTIONS(5737), + [anon_sym_PIPE_PIPE] = ACTIONS(5737), + [anon_sym_QMARK_QMARK] = ACTIONS(5737), + [anon_sym_into] = ACTIONS(5737), + [anon_sym_as] = ACTIONS(5737), + [anon_sym_is] = ACTIONS(5737), + [anon_sym_DASH_GT] = ACTIONS(4094), + [anon_sym_with] = ACTIONS(6031), + [aux_sym_preproc_if_token3] = ACTIONS(5737), + [aux_sym_preproc_else_token1] = ACTIONS(5737), + [aux_sym_preproc_elif_token1] = ACTIONS(5737), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -531755,25 +531182,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3865] = { - [sym__name] = STATE(4390), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(4096), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(4109), - [sym_type] = STATE(5950), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_tuple_element] = STATE(7068), - [sym_identifier] = STATE(4087), - [sym__reserved_identifier] = STATE(3691), + [sym_argument_list] = STATE(3348), + [sym_bracketed_argument_list] = STATE(2605), [sym_preproc_region] = STATE(3865), [sym_preproc_endregion] = STATE(3865), [sym_preproc_line] = STATE(3865), @@ -531783,33 +531193,50 @@ 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(2967), - [anon_sym_alias] = ACTIONS(2971), - [anon_sym_global] = ACTIONS(2971), - [anon_sym_LPAREN] = ACTIONS(2979), - [anon_sym_ref] = ACTIONS(3606), - [anon_sym_delegate] = ACTIONS(3454), - [anon_sym_file] = ACTIONS(2971), - [anon_sym_where] = ACTIONS(2971), - [anon_sym_notnull] = ACTIONS(2971), - [anon_sym_unmanaged] = ACTIONS(2971), - [anon_sym_scoped] = ACTIONS(5737), - [anon_sym_var] = ACTIONS(4737), - [sym_predefined_type] = ACTIONS(3001), - [anon_sym_yield] = ACTIONS(2971), - [anon_sym_when] = ACTIONS(2971), - [anon_sym_from] = ACTIONS(2971), - [anon_sym_into] = ACTIONS(2971), - [anon_sym_join] = ACTIONS(2971), - [anon_sym_on] = ACTIONS(2971), - [anon_sym_equals] = ACTIONS(2971), - [anon_sym_let] = ACTIONS(2971), - [anon_sym_orderby] = ACTIONS(2971), - [anon_sym_ascending] = ACTIONS(2971), - [anon_sym_descending] = ACTIONS(2971), - [anon_sym_group] = ACTIONS(2971), - [anon_sym_by] = ACTIONS(2971), - [anon_sym_select] = ACTIONS(2971), + [anon_sym_SEMI] = ACTIONS(5737), + [anon_sym_LBRACK] = ACTIONS(5236), + [anon_sym_COMMA] = ACTIONS(5737), + [anon_sym_RBRACK] = ACTIONS(5737), + [anon_sym_LPAREN] = ACTIONS(5227), + [anon_sym_RPAREN] = ACTIONS(5737), + [anon_sym_RBRACE] = ACTIONS(5737), + [anon_sym_LT] = ACTIONS(5739), + [anon_sym_GT] = ACTIONS(5739), + [anon_sym_QMARK] = ACTIONS(5739), + [anon_sym_BANG] = ACTIONS(5238), + [anon_sym_PLUS_PLUS] = ACTIONS(5240), + [anon_sym_DASH_DASH] = ACTIONS(5240), + [anon_sym_PLUS] = ACTIONS(5739), + [anon_sym_DASH] = ACTIONS(5739), + [anon_sym_STAR] = ACTIONS(5999), + [anon_sym_SLASH] = ACTIONS(6001), + [anon_sym_PERCENT] = ACTIONS(5999), + [anon_sym_CARET] = ACTIONS(5737), + [anon_sym_PIPE] = ACTIONS(5739), + [anon_sym_AMP] = ACTIONS(5739), + [anon_sym_LT_LT] = ACTIONS(5737), + [anon_sym_GT_GT] = ACTIONS(5739), + [anon_sym_GT_GT_GT] = ACTIONS(5737), + [anon_sym_EQ_EQ] = ACTIONS(5737), + [anon_sym_BANG_EQ] = ACTIONS(5737), + [anon_sym_GT_EQ] = ACTIONS(5737), + [anon_sym_LT_EQ] = ACTIONS(5737), + [anon_sym_DOT] = ACTIONS(4092), + [anon_sym_switch] = ACTIONS(6017), + [anon_sym_DOT_DOT] = ACTIONS(6019), + [anon_sym_and] = ACTIONS(5737), + [anon_sym_or] = ACTIONS(5737), + [anon_sym_AMP_AMP] = ACTIONS(5737), + [anon_sym_PIPE_PIPE] = ACTIONS(5737), + [anon_sym_QMARK_QMARK] = ACTIONS(5737), + [anon_sym_into] = ACTIONS(5737), + [anon_sym_as] = ACTIONS(5737), + [anon_sym_is] = ACTIONS(5737), + [anon_sym_DASH_GT] = ACTIONS(4094), + [anon_sym_with] = ACTIONS(6031), + [aux_sym_preproc_if_token3] = ACTIONS(5737), + [aux_sym_preproc_else_token1] = ACTIONS(5737), + [aux_sym_preproc_elif_token1] = ACTIONS(5737), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -531822,25 +531249,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3866] = { - [sym__name] = STATE(4390), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(4096), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(4109), - [sym_type] = STATE(5950), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_tuple_element] = STATE(7094), - [sym_identifier] = STATE(4087), - [sym__reserved_identifier] = STATE(3691), [sym_preproc_region] = STATE(3866), [sym_preproc_endregion] = STATE(3866), [sym_preproc_line] = STATE(3866), @@ -531850,33 +531258,52 @@ 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), - [sym__identifier_token] = ACTIONS(2967), - [anon_sym_alias] = ACTIONS(2971), - [anon_sym_global] = ACTIONS(2971), - [anon_sym_LPAREN] = ACTIONS(2979), - [anon_sym_ref] = ACTIONS(3606), - [anon_sym_delegate] = ACTIONS(3454), - [anon_sym_file] = ACTIONS(2971), - [anon_sym_where] = ACTIONS(2971), - [anon_sym_notnull] = ACTIONS(2971), - [anon_sym_unmanaged] = ACTIONS(2971), - [anon_sym_scoped] = ACTIONS(5737), - [anon_sym_var] = ACTIONS(4737), - [sym_predefined_type] = ACTIONS(3001), - [anon_sym_yield] = ACTIONS(2971), - [anon_sym_when] = ACTIONS(2971), - [anon_sym_from] = ACTIONS(2971), - [anon_sym_into] = ACTIONS(2971), - [anon_sym_join] = ACTIONS(2971), - [anon_sym_on] = ACTIONS(2971), - [anon_sym_equals] = ACTIONS(2971), - [anon_sym_let] = ACTIONS(2971), - [anon_sym_orderby] = ACTIONS(2971), - [anon_sym_ascending] = ACTIONS(2971), - [anon_sym_descending] = ACTIONS(2971), - [anon_sym_group] = ACTIONS(2971), - [anon_sym_by] = ACTIONS(2971), - [anon_sym_select] = ACTIONS(2971), + [anon_sym_LBRACK] = ACTIONS(2127), + [anon_sym_COMMA] = ACTIONS(2127), + [anon_sym_LPAREN] = ACTIONS(2127), + [anon_sym_LT] = ACTIONS(2129), + [anon_sym_GT] = ACTIONS(2129), + [anon_sym_where] = ACTIONS(2127), + [anon_sym_QMARK] = ACTIONS(2129), + [anon_sym_BANG] = ACTIONS(2129), + [anon_sym_PLUS_PLUS] = ACTIONS(2127), + [anon_sym_DASH_DASH] = ACTIONS(2127), + [anon_sym_PLUS] = ACTIONS(2129), + [anon_sym_DASH] = ACTIONS(2129), + [anon_sym_STAR] = ACTIONS(2127), + [anon_sym_SLASH] = ACTIONS(2129), + [anon_sym_PERCENT] = ACTIONS(2127), + [anon_sym_CARET] = ACTIONS(2127), + [anon_sym_PIPE] = ACTIONS(2129), + [anon_sym_AMP] = ACTIONS(2129), + [anon_sym_LT_LT] = ACTIONS(2127), + [anon_sym_GT_GT] = ACTIONS(2129), + [anon_sym_GT_GT_GT] = ACTIONS(2127), + [anon_sym_EQ_EQ] = ACTIONS(2127), + [anon_sym_BANG_EQ] = ACTIONS(2127), + [anon_sym_GT_EQ] = ACTIONS(2127), + [anon_sym_LT_EQ] = ACTIONS(2127), + [anon_sym_DOT] = ACTIONS(2129), + [anon_sym_switch] = ACTIONS(2127), + [anon_sym_DOT_DOT] = ACTIONS(2127), + [anon_sym_and] = ACTIONS(2127), + [anon_sym_or] = ACTIONS(2129), + [anon_sym_AMP_AMP] = ACTIONS(2127), + [anon_sym_PIPE_PIPE] = ACTIONS(2127), + [anon_sym_QMARK_QMARK] = ACTIONS(2127), + [anon_sym_from] = ACTIONS(2127), + [anon_sym_into] = ACTIONS(2127), + [anon_sym_join] = ACTIONS(2127), + [anon_sym_let] = ACTIONS(2127), + [anon_sym_orderby] = ACTIONS(2127), + [anon_sym_ascending] = ACTIONS(2127), + [anon_sym_descending] = ACTIONS(2127), + [anon_sym_group] = ACTIONS(2127), + [anon_sym_select] = ACTIONS(2127), + [anon_sym_as] = ACTIONS(2129), + [anon_sym_is] = ACTIONS(2127), + [anon_sym_DASH_GT] = ACTIONS(2127), + [anon_sym_with] = ACTIONS(2127), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -531889,25 +531316,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3867] = { - [sym__name] = STATE(4390), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(4096), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(4109), - [sym_type] = STATE(5950), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_tuple_element] = STATE(7106), - [sym_identifier] = STATE(4087), - [sym__reserved_identifier] = STATE(3691), + [sym_argument_list] = STATE(3348), + [sym_bracketed_argument_list] = STATE(2605), [sym_preproc_region] = STATE(3867), [sym_preproc_endregion] = STATE(3867), [sym_preproc_line] = STATE(3867), @@ -531917,33 +531327,50 @@ 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), - [sym__identifier_token] = ACTIONS(2967), - [anon_sym_alias] = ACTIONS(2971), - [anon_sym_global] = ACTIONS(2971), - [anon_sym_LPAREN] = ACTIONS(2979), - [anon_sym_ref] = ACTIONS(3606), - [anon_sym_delegate] = ACTIONS(3454), - [anon_sym_file] = ACTIONS(2971), - [anon_sym_where] = ACTIONS(2971), - [anon_sym_notnull] = ACTIONS(2971), - [anon_sym_unmanaged] = ACTIONS(2971), - [anon_sym_scoped] = ACTIONS(5737), - [anon_sym_var] = ACTIONS(4737), - [sym_predefined_type] = ACTIONS(3001), - [anon_sym_yield] = ACTIONS(2971), - [anon_sym_when] = ACTIONS(2971), - [anon_sym_from] = ACTIONS(2971), - [anon_sym_into] = ACTIONS(2971), - [anon_sym_join] = ACTIONS(2971), - [anon_sym_on] = ACTIONS(2971), - [anon_sym_equals] = ACTIONS(2971), - [anon_sym_let] = ACTIONS(2971), - [anon_sym_orderby] = ACTIONS(2971), - [anon_sym_ascending] = ACTIONS(2971), - [anon_sym_descending] = ACTIONS(2971), - [anon_sym_group] = ACTIONS(2971), - [anon_sym_by] = ACTIONS(2971), - [anon_sym_select] = ACTIONS(2971), + [anon_sym_SEMI] = ACTIONS(5737), + [anon_sym_LBRACK] = ACTIONS(5236), + [anon_sym_COMMA] = ACTIONS(5737), + [anon_sym_RBRACK] = ACTIONS(5737), + [anon_sym_LPAREN] = ACTIONS(5227), + [anon_sym_RPAREN] = ACTIONS(5737), + [anon_sym_RBRACE] = ACTIONS(5737), + [anon_sym_LT] = ACTIONS(5739), + [anon_sym_GT] = ACTIONS(5739), + [anon_sym_QMARK] = ACTIONS(5739), + [anon_sym_BANG] = ACTIONS(5238), + [anon_sym_PLUS_PLUS] = ACTIONS(5240), + [anon_sym_DASH_DASH] = ACTIONS(5240), + [anon_sym_PLUS] = ACTIONS(5739), + [anon_sym_DASH] = ACTIONS(5739), + [anon_sym_STAR] = ACTIONS(5737), + [anon_sym_SLASH] = ACTIONS(5739), + [anon_sym_PERCENT] = ACTIONS(5737), + [anon_sym_CARET] = ACTIONS(5737), + [anon_sym_PIPE] = ACTIONS(5739), + [anon_sym_AMP] = ACTIONS(5739), + [anon_sym_LT_LT] = ACTIONS(5737), + [anon_sym_GT_GT] = ACTIONS(5739), + [anon_sym_GT_GT_GT] = ACTIONS(5737), + [anon_sym_EQ_EQ] = ACTIONS(5737), + [anon_sym_BANG_EQ] = ACTIONS(5737), + [anon_sym_GT_EQ] = ACTIONS(5737), + [anon_sym_LT_EQ] = ACTIONS(5737), + [anon_sym_DOT] = ACTIONS(4092), + [anon_sym_switch] = ACTIONS(6017), + [anon_sym_DOT_DOT] = ACTIONS(6019), + [anon_sym_and] = ACTIONS(5737), + [anon_sym_or] = ACTIONS(5737), + [anon_sym_AMP_AMP] = ACTIONS(5737), + [anon_sym_PIPE_PIPE] = ACTIONS(5737), + [anon_sym_QMARK_QMARK] = ACTIONS(5737), + [anon_sym_into] = ACTIONS(5737), + [anon_sym_as] = ACTIONS(5737), + [anon_sym_is] = ACTIONS(5737), + [anon_sym_DASH_GT] = ACTIONS(4094), + [anon_sym_with] = ACTIONS(6031), + [aux_sym_preproc_if_token3] = ACTIONS(5737), + [aux_sym_preproc_else_token1] = ACTIONS(5737), + [aux_sym_preproc_elif_token1] = ACTIONS(5737), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -531956,25 +531383,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3868] = { - [sym__name] = STATE(4390), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(4096), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(4109), - [sym_type] = STATE(5950), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_tuple_element] = STATE(7283), - [sym_identifier] = STATE(4087), - [sym__reserved_identifier] = STATE(3691), + [sym_argument_list] = STATE(3348), + [sym_bracketed_argument_list] = STATE(2605), [sym_preproc_region] = STATE(3868), [sym_preproc_endregion] = STATE(3868), [sym_preproc_line] = STATE(3868), @@ -531984,33 +531394,50 @@ 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(2967), - [anon_sym_alias] = ACTIONS(2971), - [anon_sym_global] = ACTIONS(2971), - [anon_sym_LPAREN] = ACTIONS(2979), - [anon_sym_ref] = ACTIONS(3606), - [anon_sym_delegate] = ACTIONS(3454), - [anon_sym_file] = ACTIONS(2971), - [anon_sym_where] = ACTIONS(2971), - [anon_sym_notnull] = ACTIONS(2971), - [anon_sym_unmanaged] = ACTIONS(2971), - [anon_sym_scoped] = ACTIONS(5737), - [anon_sym_var] = ACTIONS(4737), - [sym_predefined_type] = ACTIONS(3001), - [anon_sym_yield] = ACTIONS(2971), - [anon_sym_when] = ACTIONS(2971), - [anon_sym_from] = ACTIONS(2971), - [anon_sym_into] = ACTIONS(2971), - [anon_sym_join] = ACTIONS(2971), - [anon_sym_on] = ACTIONS(2971), - [anon_sym_equals] = ACTIONS(2971), - [anon_sym_let] = ACTIONS(2971), - [anon_sym_orderby] = ACTIONS(2971), - [anon_sym_ascending] = ACTIONS(2971), - [anon_sym_descending] = ACTIONS(2971), - [anon_sym_group] = ACTIONS(2971), - [anon_sym_by] = ACTIONS(2971), - [anon_sym_select] = ACTIONS(2971), + [anon_sym_SEMI] = ACTIONS(5737), + [anon_sym_LBRACK] = ACTIONS(5236), + [anon_sym_COMMA] = ACTIONS(5737), + [anon_sym_RBRACK] = ACTIONS(5737), + [anon_sym_LPAREN] = ACTIONS(5227), + [anon_sym_RPAREN] = ACTIONS(5737), + [anon_sym_RBRACE] = ACTIONS(5737), + [anon_sym_LT] = ACTIONS(5993), + [anon_sym_GT] = ACTIONS(5993), + [anon_sym_QMARK] = ACTIONS(5739), + [anon_sym_BANG] = ACTIONS(5238), + [anon_sym_PLUS_PLUS] = ACTIONS(5240), + [anon_sym_DASH_DASH] = ACTIONS(5240), + [anon_sym_PLUS] = ACTIONS(5997), + [anon_sym_DASH] = ACTIONS(5997), + [anon_sym_STAR] = ACTIONS(5999), + [anon_sym_SLASH] = ACTIONS(6001), + [anon_sym_PERCENT] = ACTIONS(5999), + [anon_sym_CARET] = ACTIONS(5737), + [anon_sym_PIPE] = ACTIONS(5739), + [anon_sym_AMP] = ACTIONS(6007), + [anon_sym_LT_LT] = ACTIONS(6009), + [anon_sym_GT_GT] = ACTIONS(6011), + [anon_sym_GT_GT_GT] = ACTIONS(6009), + [anon_sym_EQ_EQ] = ACTIONS(6013), + [anon_sym_BANG_EQ] = ACTIONS(6013), + [anon_sym_GT_EQ] = ACTIONS(6015), + [anon_sym_LT_EQ] = ACTIONS(6015), + [anon_sym_DOT] = ACTIONS(4092), + [anon_sym_switch] = ACTIONS(6017), + [anon_sym_DOT_DOT] = ACTIONS(6019), + [anon_sym_and] = ACTIONS(5737), + [anon_sym_or] = ACTIONS(5737), + [anon_sym_AMP_AMP] = ACTIONS(5737), + [anon_sym_PIPE_PIPE] = ACTIONS(5737), + [anon_sym_QMARK_QMARK] = ACTIONS(5737), + [anon_sym_into] = ACTIONS(5737), + [anon_sym_as] = ACTIONS(6027), + [anon_sym_is] = ACTIONS(6029), + [anon_sym_DASH_GT] = ACTIONS(4094), + [anon_sym_with] = ACTIONS(6031), + [aux_sym_preproc_if_token3] = ACTIONS(5737), + [aux_sym_preproc_else_token1] = ACTIONS(5737), + [aux_sym_preproc_elif_token1] = ACTIONS(5737), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -532023,6 +531450,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3869] = { + [sym__name] = STATE(3151), + [sym_alias_qualified_name] = STATE(3143), + [sym__simple_name] = STATE(3143), + [sym_qualified_name] = STATE(3143), + [sym_generic_name] = STATE(3184), + [sym_type] = STATE(3159), + [sym_implicit_type] = STATE(3146), + [sym_array_type] = STATE(3147), + [sym__array_base_type] = STATE(7165), + [sym_nullable_type] = STATE(3148), + [sym_pointer_type] = STATE(3148), + [sym__pointer_base_type] = STATE(7401), + [sym_function_pointer_type] = STATE(3148), + [sym_ref_type] = STATE(3146), + [sym_scoped_type] = STATE(3146), + [sym_tuple_type] = STATE(3149), + [sym_identifier] = STATE(3119), + [sym__reserved_identifier] = STATE(3120), [sym_preproc_region] = STATE(3869), [sym_preproc_endregion] = STATE(3869), [sym_preproc_line] = STATE(3869), @@ -532032,52 +531477,34 @@ 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), - [sym__identifier_token] = ACTIONS(3482), - [anon_sym_extern] = ACTIONS(3482), - [anon_sym_alias] = ACTIONS(3482), - [anon_sym_global] = ACTIONS(3482), - [anon_sym_unsafe] = ACTIONS(3482), - [anon_sym_static] = ACTIONS(3482), - [anon_sym_LPAREN] = ACTIONS(5084), - [anon_sym_ref] = ACTIONS(3482), - [anon_sym_delegate] = 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_scoped] = ACTIONS(3482), - [anon_sym_var] = ACTIONS(3482), - [sym_predefined_type] = ACTIONS(3482), - [anon_sym_yield] = ACTIONS(3482), - [anon_sym_when] = ACTIONS(3482), - [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), + [sym__identifier_token] = ACTIONS(3761), + [anon_sym_alias] = ACTIONS(3763), + [anon_sym_global] = ACTIONS(3763), + [anon_sym_LPAREN] = ACTIONS(6133), + [anon_sym_ref] = ACTIONS(4175), + [anon_sym_delegate] = ACTIONS(5622), + [anon_sym_file] = ACTIONS(3763), + [anon_sym_readonly] = ACTIONS(6189), + [anon_sym_where] = ACTIONS(3763), + [anon_sym_notnull] = ACTIONS(3763), + [anon_sym_unmanaged] = ACTIONS(3763), + [anon_sym_scoped] = ACTIONS(5767), + [anon_sym_var] = ACTIONS(5626), + [sym_predefined_type] = ACTIONS(5628), + [anon_sym_yield] = ACTIONS(3763), + [anon_sym_when] = ACTIONS(3763), + [anon_sym_from] = ACTIONS(3763), + [anon_sym_into] = ACTIONS(3763), + [anon_sym_join] = ACTIONS(3763), + [anon_sym_on] = ACTIONS(3763), + [anon_sym_equals] = ACTIONS(3763), + [anon_sym_let] = ACTIONS(3763), + [anon_sym_orderby] = ACTIONS(3763), + [anon_sym_ascending] = ACTIONS(3763), + [anon_sym_descending] = ACTIONS(3763), + [anon_sym_group] = ACTIONS(3763), + [anon_sym_by] = ACTIONS(3763), + [anon_sym_select] = ACTIONS(3763), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -532090,6 +531517,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3870] = { + [sym_argument_list] = STATE(3348), + [sym_bracketed_argument_list] = STATE(2605), [sym_preproc_region] = STATE(3870), [sym_preproc_endregion] = STATE(3870), [sym_preproc_line] = STATE(3870), @@ -532099,52 +531528,50 @@ 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(3482), - [anon_sym_extern] = ACTIONS(3482), - [anon_sym_alias] = ACTIONS(3482), - [anon_sym_global] = ACTIONS(3482), - [anon_sym_unsafe] = ACTIONS(3482), - [anon_sym_static] = ACTIONS(3482), - [anon_sym_LPAREN] = ACTIONS(5084), - [anon_sym_ref] = ACTIONS(3482), - [anon_sym_delegate] = 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_scoped] = ACTIONS(3482), - [anon_sym_var] = ACTIONS(3482), - [sym_predefined_type] = ACTIONS(3482), - [anon_sym_yield] = ACTIONS(3482), - [anon_sym_when] = ACTIONS(3482), - [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_SEMI] = ACTIONS(5737), + [anon_sym_LBRACK] = ACTIONS(5236), + [anon_sym_COMMA] = ACTIONS(5737), + [anon_sym_RBRACK] = ACTIONS(5737), + [anon_sym_LPAREN] = ACTIONS(5227), + [anon_sym_RPAREN] = ACTIONS(5737), + [anon_sym_RBRACE] = ACTIONS(5737), + [anon_sym_LT] = ACTIONS(5993), + [anon_sym_GT] = ACTIONS(5993), + [anon_sym_QMARK] = ACTIONS(5739), + [anon_sym_BANG] = ACTIONS(5238), + [anon_sym_PLUS_PLUS] = ACTIONS(5240), + [anon_sym_DASH_DASH] = ACTIONS(5240), + [anon_sym_PLUS] = ACTIONS(5997), + [anon_sym_DASH] = ACTIONS(5997), + [anon_sym_STAR] = ACTIONS(5999), + [anon_sym_SLASH] = ACTIONS(6001), + [anon_sym_PERCENT] = ACTIONS(5999), + [anon_sym_CARET] = ACTIONS(6003), + [anon_sym_PIPE] = ACTIONS(5739), + [anon_sym_AMP] = ACTIONS(6007), + [anon_sym_LT_LT] = ACTIONS(6009), + [anon_sym_GT_GT] = ACTIONS(6011), + [anon_sym_GT_GT_GT] = ACTIONS(6009), + [anon_sym_EQ_EQ] = ACTIONS(6013), + [anon_sym_BANG_EQ] = ACTIONS(6013), + [anon_sym_GT_EQ] = ACTIONS(6015), + [anon_sym_LT_EQ] = ACTIONS(6015), + [anon_sym_DOT] = ACTIONS(4092), + [anon_sym_switch] = ACTIONS(6017), + [anon_sym_DOT_DOT] = ACTIONS(6019), + [anon_sym_and] = ACTIONS(5737), + [anon_sym_or] = ACTIONS(5737), + [anon_sym_AMP_AMP] = ACTIONS(5737), + [anon_sym_PIPE_PIPE] = ACTIONS(5737), + [anon_sym_QMARK_QMARK] = ACTIONS(5737), + [anon_sym_into] = ACTIONS(5737), + [anon_sym_as] = ACTIONS(6027), + [anon_sym_is] = ACTIONS(6029), + [anon_sym_DASH_GT] = ACTIONS(4094), + [anon_sym_with] = ACTIONS(6031), + [aux_sym_preproc_if_token3] = ACTIONS(5737), + [aux_sym_preproc_else_token1] = ACTIONS(5737), + [aux_sym_preproc_elif_token1] = ACTIONS(5737), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -532157,6 +531584,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3871] = { + [sym_argument_list] = STATE(3348), + [sym_bracketed_argument_list] = STATE(2605), [sym_preproc_region] = STATE(3871), [sym_preproc_endregion] = STATE(3871), [sym_preproc_line] = STATE(3871), @@ -532166,52 +531595,50 @@ 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), - [sym__identifier_token] = ACTIONS(3482), - [anon_sym_extern] = ACTIONS(3482), - [anon_sym_alias] = ACTIONS(3482), - [anon_sym_global] = ACTIONS(3482), - [anon_sym_unsafe] = ACTIONS(3482), - [anon_sym_static] = ACTIONS(3482), - [anon_sym_LPAREN] = ACTIONS(6213), - [anon_sym_ref] = ACTIONS(3482), - [anon_sym_delegate] = 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_scoped] = ACTIONS(3482), - [anon_sym_var] = ACTIONS(3482), - [sym_predefined_type] = ACTIONS(3482), - [anon_sym_yield] = ACTIONS(3482), - [anon_sym_when] = ACTIONS(3482), - [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_SEMI] = ACTIONS(5737), + [anon_sym_LBRACK] = ACTIONS(5236), + [anon_sym_COMMA] = ACTIONS(5737), + [anon_sym_RBRACK] = ACTIONS(5737), + [anon_sym_LPAREN] = ACTIONS(5227), + [anon_sym_RPAREN] = ACTIONS(5737), + [anon_sym_RBRACE] = ACTIONS(5737), + [anon_sym_LT] = ACTIONS(5993), + [anon_sym_GT] = ACTIONS(5993), + [anon_sym_QMARK] = ACTIONS(5739), + [anon_sym_BANG] = ACTIONS(5238), + [anon_sym_PLUS_PLUS] = ACTIONS(5240), + [anon_sym_DASH_DASH] = ACTIONS(5240), + [anon_sym_PLUS] = ACTIONS(5997), + [anon_sym_DASH] = ACTIONS(5997), + [anon_sym_STAR] = ACTIONS(5999), + [anon_sym_SLASH] = ACTIONS(6001), + [anon_sym_PERCENT] = ACTIONS(5999), + [anon_sym_CARET] = ACTIONS(5737), + [anon_sym_PIPE] = ACTIONS(5739), + [anon_sym_AMP] = ACTIONS(5739), + [anon_sym_LT_LT] = ACTIONS(6009), + [anon_sym_GT_GT] = ACTIONS(6011), + [anon_sym_GT_GT_GT] = ACTIONS(6009), + [anon_sym_EQ_EQ] = ACTIONS(6013), + [anon_sym_BANG_EQ] = ACTIONS(6013), + [anon_sym_GT_EQ] = ACTIONS(6015), + [anon_sym_LT_EQ] = ACTIONS(6015), + [anon_sym_DOT] = ACTIONS(4092), + [anon_sym_switch] = ACTIONS(6017), + [anon_sym_DOT_DOT] = ACTIONS(6019), + [anon_sym_and] = ACTIONS(5737), + [anon_sym_or] = ACTIONS(5737), + [anon_sym_AMP_AMP] = ACTIONS(5737), + [anon_sym_PIPE_PIPE] = ACTIONS(5737), + [anon_sym_QMARK_QMARK] = ACTIONS(5737), + [anon_sym_into] = ACTIONS(5737), + [anon_sym_as] = ACTIONS(6027), + [anon_sym_is] = ACTIONS(6029), + [anon_sym_DASH_GT] = ACTIONS(4094), + [anon_sym_with] = ACTIONS(6031), + [aux_sym_preproc_if_token3] = ACTIONS(5737), + [aux_sym_preproc_else_token1] = ACTIONS(5737), + [aux_sym_preproc_elif_token1] = ACTIONS(5737), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -532224,15 +531651,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3872] = { - [sym__name] = STATE(5302), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(4096), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(2181), - [sym_ref_type] = STATE(2317), - [sym__scoped_base_type] = STATE(2340), - [sym_identifier] = STATE(4373), - [sym__reserved_identifier] = STATE(2175), [sym_preproc_region] = STATE(3872), [sym_preproc_endregion] = STATE(3872), [sym_preproc_line] = STATE(3872), @@ -532242,43 +531660,52 @@ 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), - [sym__identifier_token] = ACTIONS(3600), - [anon_sym_alias] = ACTIONS(3603), - [anon_sym_SEMI] = ACTIONS(3445), - [anon_sym_global] = ACTIONS(3603), - [anon_sym_EQ] = ACTIONS(3447), - [anon_sym_LBRACK] = ACTIONS(3445), - [anon_sym_LPAREN] = ACTIONS(3445), - [anon_sym_ref] = ACTIONS(3452), - [anon_sym_file] = ACTIONS(3603), - [anon_sym_LT] = ACTIONS(3445), - [anon_sym_in] = ACTIONS(3447), - [anon_sym_where] = ACTIONS(3603), - [anon_sym_QMARK] = ACTIONS(3445), - [anon_sym_notnull] = ACTIONS(3603), - [anon_sym_unmanaged] = ACTIONS(3603), - [anon_sym_operator] = ACTIONS(3447), - [anon_sym_STAR] = ACTIONS(3445), - [anon_sym_this] = ACTIONS(3447), - [anon_sym_DOT] = ACTIONS(3445), - [anon_sym_scoped] = ACTIONS(3603), - [anon_sym_EQ_GT] = ACTIONS(3445), - [anon_sym_COLON_COLON] = ACTIONS(3445), - [anon_sym_var] = ACTIONS(3603), - [anon_sym_yield] = ACTIONS(3603), - [anon_sym_when] = ACTIONS(3603), - [anon_sym_from] = ACTIONS(3603), - [anon_sym_into] = ACTIONS(3603), - [anon_sym_join] = ACTIONS(3603), - [anon_sym_on] = ACTIONS(3603), - [anon_sym_equals] = ACTIONS(3603), - [anon_sym_let] = ACTIONS(3603), - [anon_sym_orderby] = ACTIONS(3603), - [anon_sym_ascending] = ACTIONS(3603), - [anon_sym_descending] = ACTIONS(3603), - [anon_sym_group] = ACTIONS(3603), - [anon_sym_by] = ACTIONS(3603), - [anon_sym_select] = ACTIONS(3603), + [anon_sym_LBRACK] = ACTIONS(5044), + [anon_sym_COMMA] = ACTIONS(5044), + [anon_sym_LPAREN] = ACTIONS(5044), + [anon_sym_LT] = ACTIONS(5046), + [anon_sym_GT] = ACTIONS(5046), + [anon_sym_where] = ACTIONS(5044), + [anon_sym_QMARK] = ACTIONS(5046), + [anon_sym_BANG] = ACTIONS(5046), + [anon_sym_PLUS_PLUS] = ACTIONS(5044), + [anon_sym_DASH_DASH] = ACTIONS(5044), + [anon_sym_PLUS] = ACTIONS(5046), + [anon_sym_DASH] = ACTIONS(5046), + [anon_sym_STAR] = ACTIONS(5044), + [anon_sym_SLASH] = ACTIONS(5046), + [anon_sym_PERCENT] = ACTIONS(5044), + [anon_sym_CARET] = ACTIONS(5044), + [anon_sym_PIPE] = ACTIONS(5046), + [anon_sym_AMP] = ACTIONS(5046), + [anon_sym_LT_LT] = ACTIONS(5044), + [anon_sym_GT_GT] = ACTIONS(5046), + [anon_sym_GT_GT_GT] = ACTIONS(5044), + [anon_sym_EQ_EQ] = ACTIONS(5044), + [anon_sym_BANG_EQ] = ACTIONS(5044), + [anon_sym_GT_EQ] = ACTIONS(5044), + [anon_sym_LT_EQ] = ACTIONS(5044), + [anon_sym_DOT] = ACTIONS(5046), + [anon_sym_switch] = ACTIONS(5044), + [anon_sym_DOT_DOT] = ACTIONS(5044), + [anon_sym_and] = ACTIONS(5044), + [anon_sym_or] = ACTIONS(5046), + [anon_sym_AMP_AMP] = ACTIONS(5044), + [anon_sym_PIPE_PIPE] = ACTIONS(5044), + [anon_sym_QMARK_QMARK] = ACTIONS(5044), + [anon_sym_from] = ACTIONS(5044), + [anon_sym_into] = ACTIONS(5044), + [anon_sym_join] = ACTIONS(5044), + [anon_sym_let] = ACTIONS(5044), + [anon_sym_orderby] = ACTIONS(5044), + [anon_sym_ascending] = ACTIONS(5044), + [anon_sym_descending] = ACTIONS(5044), + [anon_sym_group] = ACTIONS(5044), + [anon_sym_select] = ACTIONS(5044), + [anon_sym_as] = ACTIONS(5046), + [anon_sym_is] = ACTIONS(5044), + [anon_sym_DASH_GT] = ACTIONS(5044), + [anon_sym_with] = ACTIONS(5044), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -532291,6 +531718,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3873] = { + [sym__name] = STATE(4369), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(4068), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(4073), + [sym_type] = STATE(4565), + [sym_implicit_type] = STATE(2316), + [sym_array_type] = STATE(4373), + [sym__array_base_type] = STATE(7233), + [sym_nullable_type] = STATE(4249), + [sym_pointer_type] = STATE(4249), + [sym__pointer_base_type] = STATE(7357), + [sym_function_pointer_type] = STATE(4249), + [sym_ref_type] = STATE(2316), + [sym_scoped_type] = STATE(2316), + [sym_tuple_type] = STATE(4334), + [sym_identifier] = STATE(4081), + [sym__reserved_identifier] = STATE(3654), [sym_preproc_region] = STATE(3873), [sym_preproc_endregion] = STATE(3873), [sym_preproc_line] = STATE(3873), @@ -532300,52 +531745,34 @@ 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(5054), - [anon_sym_COMMA] = ACTIONS(5054), - [anon_sym_LPAREN] = ACTIONS(5054), - [anon_sym_LT] = ACTIONS(5056), - [anon_sym_GT] = ACTIONS(5056), - [anon_sym_where] = ACTIONS(5054), - [anon_sym_QMARK] = ACTIONS(5056), - [anon_sym_BANG] = ACTIONS(5056), - [anon_sym_PLUS_PLUS] = ACTIONS(5054), - [anon_sym_DASH_DASH] = ACTIONS(5054), - [anon_sym_PLUS] = ACTIONS(5056), - [anon_sym_DASH] = ACTIONS(5056), - [anon_sym_STAR] = ACTIONS(5054), - [anon_sym_SLASH] = ACTIONS(5056), - [anon_sym_PERCENT] = ACTIONS(5054), - [anon_sym_CARET] = ACTIONS(5054), - [anon_sym_PIPE] = ACTIONS(5056), - [anon_sym_AMP] = ACTIONS(5056), - [anon_sym_LT_LT] = ACTIONS(5054), - [anon_sym_GT_GT] = ACTIONS(5056), - [anon_sym_GT_GT_GT] = ACTIONS(5054), - [anon_sym_EQ_EQ] = ACTIONS(5054), - [anon_sym_BANG_EQ] = ACTIONS(5054), - [anon_sym_GT_EQ] = ACTIONS(5054), - [anon_sym_LT_EQ] = ACTIONS(5054), - [anon_sym_DOT] = ACTIONS(5056), - [anon_sym_switch] = ACTIONS(5054), - [anon_sym_DOT_DOT] = ACTIONS(5054), - [anon_sym_and] = ACTIONS(5054), - [anon_sym_or] = ACTIONS(5056), - [anon_sym_AMP_AMP] = ACTIONS(5054), - [anon_sym_PIPE_PIPE] = ACTIONS(5054), - [anon_sym_QMARK_QMARK] = ACTIONS(5054), - [anon_sym_from] = ACTIONS(5054), - [anon_sym_into] = ACTIONS(5054), - [anon_sym_join] = ACTIONS(5054), - [anon_sym_let] = ACTIONS(5054), - [anon_sym_orderby] = ACTIONS(5054), - [anon_sym_ascending] = ACTIONS(5054), - [anon_sym_descending] = ACTIONS(5054), - [anon_sym_group] = ACTIONS(5054), - [anon_sym_select] = ACTIONS(5054), - [anon_sym_as] = ACTIONS(5056), - [anon_sym_is] = ACTIONS(5054), - [anon_sym_DASH_GT] = ACTIONS(5054), - [anon_sym_with] = ACTIONS(5054), + [sym__identifier_token] = ACTIONS(2965), + [anon_sym_alias] = ACTIONS(2969), + [anon_sym_global] = ACTIONS(2969), + [anon_sym_LPAREN] = ACTIONS(2977), + [anon_sym_ref] = ACTIONS(6191), + [anon_sym_delegate] = ACTIONS(3438), + [anon_sym_file] = ACTIONS(2969), + [anon_sym_readonly] = ACTIONS(6193), + [anon_sym_where] = ACTIONS(2969), + [anon_sym_notnull] = ACTIONS(2969), + [anon_sym_unmanaged] = ACTIONS(2969), + [anon_sym_scoped] = ACTIONS(6195), + [anon_sym_var] = ACTIONS(4705), + [sym_predefined_type] = ACTIONS(2997), + [anon_sym_yield] = ACTIONS(2969), + [anon_sym_when] = ACTIONS(2969), + [anon_sym_from] = ACTIONS(2969), + [anon_sym_into] = ACTIONS(2969), + [anon_sym_join] = ACTIONS(2969), + [anon_sym_on] = ACTIONS(2969), + [anon_sym_equals] = ACTIONS(2969), + [anon_sym_let] = ACTIONS(2969), + [anon_sym_orderby] = ACTIONS(2969), + [anon_sym_ascending] = ACTIONS(2969), + [anon_sym_descending] = ACTIONS(2969), + [anon_sym_group] = ACTIONS(2969), + [anon_sym_by] = ACTIONS(2969), + [anon_sym_select] = ACTIONS(2969), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -532367,52 +531794,52 @@ 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), - [sym__identifier_token] = ACTIONS(3482), - [anon_sym_extern] = ACTIONS(3482), - [anon_sym_alias] = ACTIONS(3482), - [anon_sym_global] = ACTIONS(3482), - [anon_sym_unsafe] = ACTIONS(3482), - [anon_sym_static] = ACTIONS(3482), - [anon_sym_LPAREN] = ACTIONS(6215), - [anon_sym_ref] = ACTIONS(3482), - [anon_sym_delegate] = 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_scoped] = ACTIONS(3482), - [anon_sym_var] = ACTIONS(3482), - [sym_predefined_type] = ACTIONS(3482), - [anon_sym_yield] = ACTIONS(3482), - [anon_sym_when] = ACTIONS(3482), - [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_LBRACK] = ACTIONS(5048), + [anon_sym_COMMA] = ACTIONS(5048), + [anon_sym_LPAREN] = ACTIONS(5048), + [anon_sym_LT] = ACTIONS(5050), + [anon_sym_GT] = ACTIONS(5050), + [anon_sym_where] = ACTIONS(5048), + [anon_sym_QMARK] = ACTIONS(5050), + [anon_sym_BANG] = ACTIONS(5050), + [anon_sym_PLUS_PLUS] = ACTIONS(5048), + [anon_sym_DASH_DASH] = ACTIONS(5048), + [anon_sym_PLUS] = ACTIONS(5050), + [anon_sym_DASH] = ACTIONS(5050), + [anon_sym_STAR] = ACTIONS(5048), + [anon_sym_SLASH] = ACTIONS(5050), + [anon_sym_PERCENT] = ACTIONS(5048), + [anon_sym_CARET] = ACTIONS(5048), + [anon_sym_PIPE] = ACTIONS(5050), + [anon_sym_AMP] = ACTIONS(5050), + [anon_sym_LT_LT] = ACTIONS(5048), + [anon_sym_GT_GT] = ACTIONS(5050), + [anon_sym_GT_GT_GT] = ACTIONS(5048), + [anon_sym_EQ_EQ] = ACTIONS(5048), + [anon_sym_BANG_EQ] = ACTIONS(5048), + [anon_sym_GT_EQ] = ACTIONS(5048), + [anon_sym_LT_EQ] = ACTIONS(5048), + [anon_sym_DOT] = ACTIONS(5050), + [anon_sym_switch] = ACTIONS(5048), + [anon_sym_DOT_DOT] = ACTIONS(5048), + [anon_sym_and] = ACTIONS(5048), + [anon_sym_or] = ACTIONS(5050), + [anon_sym_AMP_AMP] = ACTIONS(5048), + [anon_sym_PIPE_PIPE] = ACTIONS(5048), + [anon_sym_QMARK_QMARK] = ACTIONS(5048), + [anon_sym_from] = ACTIONS(5048), + [anon_sym_into] = ACTIONS(5048), + [anon_sym_join] = ACTIONS(5048), + [anon_sym_let] = ACTIONS(5048), + [anon_sym_orderby] = ACTIONS(5048), + [anon_sym_ascending] = ACTIONS(5048), + [anon_sym_descending] = ACTIONS(5048), + [anon_sym_group] = ACTIONS(5048), + [anon_sym_select] = ACTIONS(5048), + [anon_sym_as] = ACTIONS(5050), + [anon_sym_is] = ACTIONS(5048), + [anon_sym_DASH_GT] = ACTIONS(5048), + [anon_sym_with] = ACTIONS(5048), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -532434,52 +531861,52 @@ 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(1981), - [anon_sym_COMMA] = ACTIONS(1981), - [anon_sym_LPAREN] = ACTIONS(6217), - [anon_sym_LT] = ACTIONS(1979), - [anon_sym_GT] = ACTIONS(1979), - [anon_sym_where] = ACTIONS(1981), - [anon_sym_QMARK] = ACTIONS(1979), - [anon_sym_BANG] = ACTIONS(1979), - [anon_sym_PLUS_PLUS] = ACTIONS(1981), - [anon_sym_DASH_DASH] = ACTIONS(1981), - [anon_sym_PLUS] = ACTIONS(1979), - [anon_sym_DASH] = ACTIONS(1979), - [anon_sym_STAR] = ACTIONS(1981), - [anon_sym_SLASH] = ACTIONS(1979), - [anon_sym_PERCENT] = ACTIONS(1981), - [anon_sym_CARET] = ACTIONS(1981), - [anon_sym_PIPE] = ACTIONS(1979), - [anon_sym_AMP] = ACTIONS(1979), - [anon_sym_LT_LT] = ACTIONS(1981), - [anon_sym_GT_GT] = ACTIONS(1979), - [anon_sym_GT_GT_GT] = ACTIONS(1981), - [anon_sym_EQ_EQ] = ACTIONS(1981), - [anon_sym_BANG_EQ] = ACTIONS(1981), - [anon_sym_GT_EQ] = ACTIONS(1981), - [anon_sym_LT_EQ] = ACTIONS(1981), - [anon_sym_DOT] = ACTIONS(1979), - [anon_sym_switch] = ACTIONS(1981), - [anon_sym_DOT_DOT] = ACTIONS(1981), - [anon_sym_and] = ACTIONS(1981), - [anon_sym_or] = ACTIONS(1979), - [anon_sym_AMP_AMP] = ACTIONS(1981), - [anon_sym_PIPE_PIPE] = ACTIONS(1981), - [anon_sym_QMARK_QMARK] = ACTIONS(1981), - [anon_sym_from] = ACTIONS(1981), - [anon_sym_into] = ACTIONS(1981), - [anon_sym_join] = ACTIONS(1981), - [anon_sym_let] = ACTIONS(1981), - [anon_sym_orderby] = ACTIONS(1981), - [anon_sym_ascending] = ACTIONS(1981), - [anon_sym_descending] = ACTIONS(1981), - [anon_sym_group] = ACTIONS(1981), - [anon_sym_select] = ACTIONS(1981), - [anon_sym_as] = ACTIONS(1979), - [anon_sym_is] = ACTIONS(1981), - [anon_sym_DASH_GT] = ACTIONS(1981), - [anon_sym_with] = ACTIONS(1981), + [anon_sym_LBRACK] = ACTIONS(5052), + [anon_sym_COMMA] = ACTIONS(5052), + [anon_sym_LPAREN] = ACTIONS(5052), + [anon_sym_LT] = ACTIONS(5054), + [anon_sym_GT] = ACTIONS(5054), + [anon_sym_where] = ACTIONS(5052), + [anon_sym_QMARK] = ACTIONS(5054), + [anon_sym_BANG] = ACTIONS(5054), + [anon_sym_PLUS_PLUS] = ACTIONS(5052), + [anon_sym_DASH_DASH] = ACTIONS(5052), + [anon_sym_PLUS] = ACTIONS(5054), + [anon_sym_DASH] = ACTIONS(5054), + [anon_sym_STAR] = ACTIONS(5052), + [anon_sym_SLASH] = ACTIONS(5054), + [anon_sym_PERCENT] = ACTIONS(5052), + [anon_sym_CARET] = ACTIONS(5052), + [anon_sym_PIPE] = ACTIONS(5054), + [anon_sym_AMP] = ACTIONS(5054), + [anon_sym_LT_LT] = ACTIONS(5052), + [anon_sym_GT_GT] = ACTIONS(5054), + [anon_sym_GT_GT_GT] = ACTIONS(5052), + [anon_sym_EQ_EQ] = ACTIONS(5052), + [anon_sym_BANG_EQ] = ACTIONS(5052), + [anon_sym_GT_EQ] = ACTIONS(5052), + [anon_sym_LT_EQ] = ACTIONS(5052), + [anon_sym_DOT] = ACTIONS(5054), + [anon_sym_switch] = ACTIONS(5052), + [anon_sym_DOT_DOT] = ACTIONS(5052), + [anon_sym_and] = ACTIONS(5052), + [anon_sym_or] = ACTIONS(5054), + [anon_sym_AMP_AMP] = ACTIONS(5052), + [anon_sym_PIPE_PIPE] = ACTIONS(5052), + [anon_sym_QMARK_QMARK] = ACTIONS(5052), + [anon_sym_from] = ACTIONS(5052), + [anon_sym_into] = ACTIONS(5052), + [anon_sym_join] = ACTIONS(5052), + [anon_sym_let] = ACTIONS(5052), + [anon_sym_orderby] = ACTIONS(5052), + [anon_sym_ascending] = ACTIONS(5052), + [anon_sym_descending] = ACTIONS(5052), + [anon_sym_group] = ACTIONS(5052), + [anon_sym_select] = ACTIONS(5052), + [anon_sym_as] = ACTIONS(5054), + [anon_sym_is] = ACTIONS(5052), + [anon_sym_DASH_GT] = ACTIONS(5052), + [anon_sym_with] = ACTIONS(5052), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -532492,24 +531919,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3876] = { - [sym__name] = STATE(5023), - [sym_alias_qualified_name] = STATE(3029), - [sym__simple_name] = STATE(3029), - [sym_qualified_name] = STATE(3029), - [sym_generic_name] = STATE(2985), - [sym_type] = STATE(3026), - [sym_implicit_type] = STATE(3054), - [sym_array_type] = STATE(2992), - [sym__array_base_type] = STATE(7267), - [sym_nullable_type] = STATE(3012), - [sym_pointer_type] = STATE(3012), - [sym__pointer_base_type] = STATE(7693), - [sym_function_pointer_type] = STATE(3012), - [sym_ref_type] = STATE(3054), - [sym_scoped_type] = STATE(3054), - [sym_tuple_type] = STATE(3058), - [sym_identifier] = STATE(4395), - [sym__reserved_identifier] = STATE(2945), [sym_preproc_region] = STATE(3876), [sym_preproc_endregion] = STATE(3876), [sym_preproc_line] = STATE(3876), @@ -532519,34 +531928,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(3887), - [anon_sym_alias] = ACTIONS(3889), - [anon_sym_global] = ACTIONS(3889), - [anon_sym_LPAREN] = ACTIONS(6051), - [anon_sym_ref] = ACTIONS(4024), - [anon_sym_delegate] = ACTIONS(4042), - [anon_sym_file] = ACTIONS(3889), - [anon_sym_readonly] = ACTIONS(6219), - [anon_sym_where] = ACTIONS(3889), - [anon_sym_notnull] = ACTIONS(3889), - [anon_sym_unmanaged] = ACTIONS(3889), - [anon_sym_scoped] = ACTIONS(5862), - [anon_sym_var] = ACTIONS(4046), - [sym_predefined_type] = ACTIONS(4048), - [anon_sym_yield] = ACTIONS(3889), - [anon_sym_when] = ACTIONS(3889), - [anon_sym_from] = ACTIONS(3889), - [anon_sym_into] = ACTIONS(3889), - [anon_sym_join] = ACTIONS(3889), - [anon_sym_on] = ACTIONS(3889), - [anon_sym_equals] = ACTIONS(3889), - [anon_sym_let] = ACTIONS(3889), - [anon_sym_orderby] = ACTIONS(3889), - [anon_sym_ascending] = ACTIONS(3889), - [anon_sym_descending] = ACTIONS(3889), - [anon_sym_group] = ACTIONS(3889), - [anon_sym_by] = ACTIONS(3889), - [anon_sym_select] = ACTIONS(3889), + [anon_sym_LBRACK] = ACTIONS(5056), + [anon_sym_COMMA] = ACTIONS(5056), + [anon_sym_LPAREN] = ACTIONS(5056), + [anon_sym_LT] = ACTIONS(5058), + [anon_sym_GT] = ACTIONS(5058), + [anon_sym_where] = ACTIONS(5056), + [anon_sym_QMARK] = ACTIONS(5058), + [anon_sym_BANG] = ACTIONS(5058), + [anon_sym_PLUS_PLUS] = ACTIONS(5056), + [anon_sym_DASH_DASH] = ACTIONS(5056), + [anon_sym_PLUS] = ACTIONS(5058), + [anon_sym_DASH] = ACTIONS(5058), + [anon_sym_STAR] = ACTIONS(5056), + [anon_sym_SLASH] = ACTIONS(5058), + [anon_sym_PERCENT] = ACTIONS(5056), + [anon_sym_CARET] = ACTIONS(5056), + [anon_sym_PIPE] = ACTIONS(5058), + [anon_sym_AMP] = ACTIONS(5058), + [anon_sym_LT_LT] = ACTIONS(5056), + [anon_sym_GT_GT] = ACTIONS(5058), + [anon_sym_GT_GT_GT] = ACTIONS(5056), + [anon_sym_EQ_EQ] = ACTIONS(5056), + [anon_sym_BANG_EQ] = ACTIONS(5056), + [anon_sym_GT_EQ] = ACTIONS(5056), + [anon_sym_LT_EQ] = ACTIONS(5056), + [anon_sym_DOT] = ACTIONS(5058), + [anon_sym_switch] = ACTIONS(5056), + [anon_sym_DOT_DOT] = ACTIONS(5056), + [anon_sym_and] = ACTIONS(5056), + [anon_sym_or] = ACTIONS(5058), + [anon_sym_AMP_AMP] = ACTIONS(5056), + [anon_sym_PIPE_PIPE] = ACTIONS(5056), + [anon_sym_QMARK_QMARK] = ACTIONS(5056), + [anon_sym_from] = ACTIONS(5056), + [anon_sym_into] = ACTIONS(5056), + [anon_sym_join] = ACTIONS(5056), + [anon_sym_let] = ACTIONS(5056), + [anon_sym_orderby] = ACTIONS(5056), + [anon_sym_ascending] = ACTIONS(5056), + [anon_sym_descending] = ACTIONS(5056), + [anon_sym_group] = ACTIONS(5056), + [anon_sym_select] = ACTIONS(5056), + [anon_sym_as] = ACTIONS(5058), + [anon_sym_is] = ACTIONS(5056), + [anon_sym_DASH_GT] = ACTIONS(5056), + [anon_sym_with] = ACTIONS(5056), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -532568,52 +531995,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), - [anon_sym_LBRACK] = ACTIONS(5068), - [anon_sym_COMMA] = ACTIONS(5068), - [anon_sym_LPAREN] = ACTIONS(5068), - [anon_sym_LT] = ACTIONS(5070), - [anon_sym_GT] = ACTIONS(5070), - [anon_sym_where] = ACTIONS(5068), - [anon_sym_QMARK] = ACTIONS(5070), - [anon_sym_BANG] = ACTIONS(5070), - [anon_sym_PLUS_PLUS] = ACTIONS(5068), - [anon_sym_DASH_DASH] = ACTIONS(5068), - [anon_sym_PLUS] = ACTIONS(5070), - [anon_sym_DASH] = ACTIONS(5070), - [anon_sym_STAR] = ACTIONS(5068), - [anon_sym_SLASH] = ACTIONS(5070), - [anon_sym_PERCENT] = ACTIONS(5068), - [anon_sym_CARET] = ACTIONS(5068), - [anon_sym_PIPE] = ACTIONS(5070), - [anon_sym_AMP] = ACTIONS(5070), - [anon_sym_LT_LT] = ACTIONS(5068), - [anon_sym_GT_GT] = ACTIONS(5070), - [anon_sym_GT_GT_GT] = ACTIONS(5068), - [anon_sym_EQ_EQ] = ACTIONS(5068), - [anon_sym_BANG_EQ] = ACTIONS(5068), - [anon_sym_GT_EQ] = ACTIONS(5068), - [anon_sym_LT_EQ] = ACTIONS(5068), - [anon_sym_DOT] = ACTIONS(5070), - [anon_sym_switch] = ACTIONS(5068), - [anon_sym_DOT_DOT] = ACTIONS(5068), - [anon_sym_and] = ACTIONS(5068), - [anon_sym_or] = ACTIONS(5070), - [anon_sym_AMP_AMP] = ACTIONS(5068), - [anon_sym_PIPE_PIPE] = ACTIONS(5068), - [anon_sym_QMARK_QMARK] = ACTIONS(5068), - [anon_sym_from] = ACTIONS(5068), - [anon_sym_into] = ACTIONS(5068), - [anon_sym_join] = ACTIONS(5068), - [anon_sym_let] = ACTIONS(5068), - [anon_sym_orderby] = ACTIONS(5068), - [anon_sym_ascending] = ACTIONS(5068), - [anon_sym_descending] = ACTIONS(5068), - [anon_sym_group] = ACTIONS(5068), - [anon_sym_select] = ACTIONS(5068), - [anon_sym_as] = ACTIONS(5070), - [anon_sym_is] = ACTIONS(5068), - [anon_sym_DASH_GT] = ACTIONS(5068), - [anon_sym_with] = ACTIONS(5068), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -532626,6 +532053,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3878] = { + [sym_argument_list] = STATE(3348), + [sym_bracketed_argument_list] = STATE(2605), [sym_preproc_region] = STATE(3878), [sym_preproc_endregion] = STATE(3878), [sym_preproc_line] = STATE(3878), @@ -532635,52 +532064,50 @@ 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), - [sym__identifier_token] = ACTIONS(5254), - [anon_sym_extern] = ACTIONS(5254), - [anon_sym_alias] = ACTIONS(5254), - [anon_sym_global] = ACTIONS(5254), - [anon_sym_unsafe] = ACTIONS(5254), - [anon_sym_static] = ACTIONS(5254), - [anon_sym_LPAREN] = ACTIONS(5256), - [anon_sym_ref] = ACTIONS(5254), - [anon_sym_delegate] = ACTIONS(5254), - [anon_sym_abstract] = ACTIONS(5254), - [anon_sym_async] = ACTIONS(5254), - [anon_sym_const] = ACTIONS(5254), - [anon_sym_file] = ACTIONS(5254), - [anon_sym_fixed] = ACTIONS(5254), - [anon_sym_internal] = ACTIONS(5254), - [anon_sym_new] = ACTIONS(5254), - [anon_sym_override] = ACTIONS(5254), - [anon_sym_partial] = ACTIONS(5254), - [anon_sym_private] = ACTIONS(5254), - [anon_sym_protected] = ACTIONS(5254), - [anon_sym_public] = ACTIONS(5254), - [anon_sym_readonly] = ACTIONS(5254), - [anon_sym_required] = ACTIONS(5254), - [anon_sym_sealed] = ACTIONS(5254), - [anon_sym_virtual] = ACTIONS(5254), - [anon_sym_volatile] = ACTIONS(5254), - [anon_sym_where] = ACTIONS(5254), - [anon_sym_notnull] = ACTIONS(5254), - [anon_sym_unmanaged] = ACTIONS(5254), - [anon_sym_scoped] = ACTIONS(5254), - [anon_sym_var] = ACTIONS(5254), - [sym_predefined_type] = ACTIONS(5254), - [anon_sym_yield] = ACTIONS(5254), - [anon_sym_when] = ACTIONS(5254), - [anon_sym_from] = ACTIONS(5254), - [anon_sym_into] = 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_ascending] = ACTIONS(5254), - [anon_sym_descending] = ACTIONS(5254), - [anon_sym_group] = ACTIONS(5254), - [anon_sym_by] = ACTIONS(5254), - [anon_sym_select] = ACTIONS(5254), + [anon_sym_SEMI] = ACTIONS(5737), + [anon_sym_LBRACK] = ACTIONS(5236), + [anon_sym_COMMA] = ACTIONS(5737), + [anon_sym_RBRACK] = ACTIONS(5737), + [anon_sym_LPAREN] = ACTIONS(5227), + [anon_sym_RPAREN] = ACTIONS(5737), + [anon_sym_RBRACE] = ACTIONS(5737), + [anon_sym_LT] = ACTIONS(5739), + [anon_sym_GT] = ACTIONS(5739), + [anon_sym_QMARK] = ACTIONS(5739), + [anon_sym_BANG] = ACTIONS(5238), + [anon_sym_PLUS_PLUS] = ACTIONS(5240), + [anon_sym_DASH_DASH] = ACTIONS(5240), + [anon_sym_PLUS] = ACTIONS(5997), + [anon_sym_DASH] = ACTIONS(5997), + [anon_sym_STAR] = ACTIONS(5999), + [anon_sym_SLASH] = ACTIONS(6001), + [anon_sym_PERCENT] = ACTIONS(5999), + [anon_sym_CARET] = ACTIONS(5737), + [anon_sym_PIPE] = ACTIONS(5739), + [anon_sym_AMP] = ACTIONS(5739), + [anon_sym_LT_LT] = ACTIONS(5737), + [anon_sym_GT_GT] = ACTIONS(5739), + [anon_sym_GT_GT_GT] = ACTIONS(5737), + [anon_sym_EQ_EQ] = ACTIONS(5737), + [anon_sym_BANG_EQ] = ACTIONS(5737), + [anon_sym_GT_EQ] = ACTIONS(5737), + [anon_sym_LT_EQ] = ACTIONS(5737), + [anon_sym_DOT] = ACTIONS(4092), + [anon_sym_switch] = ACTIONS(6017), + [anon_sym_DOT_DOT] = ACTIONS(6019), + [anon_sym_and] = ACTIONS(5737), + [anon_sym_or] = ACTIONS(5737), + [anon_sym_AMP_AMP] = ACTIONS(5737), + [anon_sym_PIPE_PIPE] = ACTIONS(5737), + [anon_sym_QMARK_QMARK] = ACTIONS(5737), + [anon_sym_into] = ACTIONS(5737), + [anon_sym_as] = ACTIONS(5737), + [anon_sym_is] = ACTIONS(5737), + [anon_sym_DASH_GT] = ACTIONS(4094), + [anon_sym_with] = ACTIONS(6031), + [aux_sym_preproc_if_token3] = ACTIONS(5737), + [aux_sym_preproc_else_token1] = ACTIONS(5737), + [aux_sym_preproc_elif_token1] = ACTIONS(5737), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -532693,24 +532120,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3879] = { - [sym__name] = STATE(2623), - [sym_alias_qualified_name] = STATE(2373), - [sym__simple_name] = STATE(2373), - [sym_qualified_name] = STATE(2373), - [sym_generic_name] = STATE(2389), - [sym_type] = STATE(2381), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(2378), - [sym__array_base_type] = STATE(7103), - [sym_nullable_type] = STATE(2379), - [sym_pointer_type] = STATE(2379), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(2379), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(2380), - [sym_identifier] = STATE(2564), - [sym__reserved_identifier] = STATE(2361), [sym_preproc_region] = STATE(3879), [sym_preproc_endregion] = STATE(3879), [sym_preproc_line] = STATE(3879), @@ -532720,34 +532129,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), - [sym__identifier_token] = ACTIONS(4058), - [anon_sym_alias] = ACTIONS(4060), - [anon_sym_global] = ACTIONS(4060), - [anon_sym_LPAREN] = ACTIONS(6055), - [anon_sym_ref] = ACTIONS(3630), - [anon_sym_delegate] = ACTIONS(3454), - [anon_sym_file] = ACTIONS(4060), - [anon_sym_readonly] = ACTIONS(2877), - [anon_sym_where] = ACTIONS(4060), - [anon_sym_notnull] = ACTIONS(4060), - [anon_sym_unmanaged] = ACTIONS(4060), - [anon_sym_scoped] = ACTIONS(6221), - [anon_sym_var] = ACTIONS(5638), - [sym_predefined_type] = ACTIONS(5640), - [anon_sym_yield] = ACTIONS(4060), - [anon_sym_when] = ACTIONS(4060), - [anon_sym_from] = ACTIONS(4060), - [anon_sym_into] = ACTIONS(4060), - [anon_sym_join] = ACTIONS(4060), - [anon_sym_on] = ACTIONS(4060), - [anon_sym_equals] = ACTIONS(4060), - [anon_sym_let] = ACTIONS(4060), - [anon_sym_orderby] = ACTIONS(4060), - [anon_sym_ascending] = ACTIONS(4060), - [anon_sym_descending] = ACTIONS(4060), - [anon_sym_group] = ACTIONS(4060), - [anon_sym_by] = ACTIONS(4060), - [anon_sym_select] = ACTIONS(4060), + [anon_sym_LBRACK] = ACTIONS(5060), + [anon_sym_COMMA] = ACTIONS(5060), + [anon_sym_LPAREN] = ACTIONS(5060), + [anon_sym_LT] = ACTIONS(5062), + [anon_sym_GT] = ACTIONS(5062), + [anon_sym_where] = ACTIONS(5060), + [anon_sym_QMARK] = ACTIONS(5062), + [anon_sym_BANG] = ACTIONS(5062), + [anon_sym_PLUS_PLUS] = ACTIONS(5060), + [anon_sym_DASH_DASH] = ACTIONS(5060), + [anon_sym_PLUS] = ACTIONS(5062), + [anon_sym_DASH] = ACTIONS(5062), + [anon_sym_STAR] = ACTIONS(5060), + [anon_sym_SLASH] = ACTIONS(5062), + [anon_sym_PERCENT] = ACTIONS(5060), + [anon_sym_CARET] = ACTIONS(5060), + [anon_sym_PIPE] = ACTIONS(5062), + [anon_sym_AMP] = ACTIONS(5062), + [anon_sym_LT_LT] = ACTIONS(5060), + [anon_sym_GT_GT] = ACTIONS(5062), + [anon_sym_GT_GT_GT] = ACTIONS(5060), + [anon_sym_EQ_EQ] = ACTIONS(5060), + [anon_sym_BANG_EQ] = ACTIONS(5060), + [anon_sym_GT_EQ] = ACTIONS(5060), + [anon_sym_LT_EQ] = ACTIONS(5060), + [anon_sym_DOT] = ACTIONS(5062), + [anon_sym_switch] = ACTIONS(5060), + [anon_sym_DOT_DOT] = ACTIONS(5060), + [anon_sym_and] = ACTIONS(5060), + [anon_sym_or] = ACTIONS(5062), + [anon_sym_AMP_AMP] = ACTIONS(5060), + [anon_sym_PIPE_PIPE] = ACTIONS(5060), + [anon_sym_QMARK_QMARK] = ACTIONS(5060), + [anon_sym_from] = ACTIONS(5060), + [anon_sym_into] = ACTIONS(5060), + [anon_sym_join] = ACTIONS(5060), + [anon_sym_let] = ACTIONS(5060), + [anon_sym_orderby] = ACTIONS(5060), + [anon_sym_ascending] = ACTIONS(5060), + [anon_sym_descending] = ACTIONS(5060), + [anon_sym_group] = ACTIONS(5060), + [anon_sym_select] = ACTIONS(5060), + [anon_sym_as] = ACTIONS(5062), + [anon_sym_is] = ACTIONS(5060), + [anon_sym_DASH_GT] = ACTIONS(5060), + [anon_sym_with] = ACTIONS(5060), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -532760,6 +532187,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3880] = { + [sym_argument_list] = STATE(3348), + [sym_bracketed_argument_list] = STATE(2605), [sym_preproc_region] = STATE(3880), [sym_preproc_endregion] = STATE(3880), [sym_preproc_line] = STATE(3880), @@ -532769,52 +532198,50 @@ 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(4860), - [anon_sym_COMMA] = ACTIONS(4860), - [anon_sym_LPAREN] = ACTIONS(4860), - [anon_sym_LT] = ACTIONS(4862), - [anon_sym_GT] = ACTIONS(4862), - [anon_sym_where] = ACTIONS(4860), - [anon_sym_QMARK] = ACTIONS(4862), - [anon_sym_BANG] = ACTIONS(4862), - [anon_sym_PLUS_PLUS] = ACTIONS(4860), - [anon_sym_DASH_DASH] = ACTIONS(4860), - [anon_sym_PLUS] = ACTIONS(4862), - [anon_sym_DASH] = ACTIONS(4862), - [anon_sym_STAR] = ACTIONS(4860), - [anon_sym_SLASH] = ACTIONS(4862), - [anon_sym_PERCENT] = ACTIONS(4860), - [anon_sym_CARET] = ACTIONS(4860), - [anon_sym_PIPE] = ACTIONS(4862), - [anon_sym_AMP] = ACTIONS(4862), - [anon_sym_LT_LT] = ACTIONS(4860), - [anon_sym_GT_GT] = ACTIONS(4862), - [anon_sym_GT_GT_GT] = ACTIONS(4860), - [anon_sym_EQ_EQ] = ACTIONS(4860), - [anon_sym_BANG_EQ] = ACTIONS(4860), - [anon_sym_GT_EQ] = ACTIONS(4860), - [anon_sym_LT_EQ] = ACTIONS(4860), - [anon_sym_DOT] = ACTIONS(4862), - [anon_sym_switch] = ACTIONS(4860), - [anon_sym_DOT_DOT] = ACTIONS(4860), - [anon_sym_and] = ACTIONS(4860), - [anon_sym_or] = ACTIONS(4862), - [anon_sym_AMP_AMP] = ACTIONS(4860), - [anon_sym_PIPE_PIPE] = ACTIONS(4860), - [anon_sym_QMARK_QMARK] = ACTIONS(4860), - [anon_sym_from] = ACTIONS(4860), - [anon_sym_into] = ACTIONS(4860), - [anon_sym_join] = ACTIONS(4860), - [anon_sym_let] = ACTIONS(4860), - [anon_sym_orderby] = ACTIONS(4860), - [anon_sym_ascending] = ACTIONS(4860), - [anon_sym_descending] = ACTIONS(4860), - [anon_sym_group] = ACTIONS(4860), - [anon_sym_select] = ACTIONS(4860), - [anon_sym_as] = ACTIONS(4862), - [anon_sym_is] = ACTIONS(4860), - [anon_sym_DASH_GT] = ACTIONS(4860), - [anon_sym_with] = ACTIONS(4860), + [anon_sym_SEMI] = ACTIONS(5737), + [anon_sym_LBRACK] = ACTIONS(5236), + [anon_sym_COMMA] = ACTIONS(5737), + [anon_sym_RBRACK] = ACTIONS(5737), + [anon_sym_LPAREN] = ACTIONS(5227), + [anon_sym_RPAREN] = ACTIONS(5737), + [anon_sym_RBRACE] = ACTIONS(5737), + [anon_sym_LT] = ACTIONS(5993), + [anon_sym_GT] = ACTIONS(5993), + [anon_sym_QMARK] = ACTIONS(5739), + [anon_sym_BANG] = ACTIONS(5238), + [anon_sym_PLUS_PLUS] = ACTIONS(5240), + [anon_sym_DASH_DASH] = ACTIONS(5240), + [anon_sym_PLUS] = ACTIONS(5997), + [anon_sym_DASH] = ACTIONS(5997), + [anon_sym_STAR] = ACTIONS(5999), + [anon_sym_SLASH] = ACTIONS(6001), + [anon_sym_PERCENT] = ACTIONS(5999), + [anon_sym_CARET] = ACTIONS(5737), + [anon_sym_PIPE] = ACTIONS(5739), + [anon_sym_AMP] = ACTIONS(5739), + [anon_sym_LT_LT] = ACTIONS(6009), + [anon_sym_GT_GT] = ACTIONS(6011), + [anon_sym_GT_GT_GT] = ACTIONS(6009), + [anon_sym_EQ_EQ] = ACTIONS(5737), + [anon_sym_BANG_EQ] = ACTIONS(5737), + [anon_sym_GT_EQ] = ACTIONS(6015), + [anon_sym_LT_EQ] = ACTIONS(6015), + [anon_sym_DOT] = ACTIONS(4092), + [anon_sym_switch] = ACTIONS(6017), + [anon_sym_DOT_DOT] = ACTIONS(6019), + [anon_sym_and] = ACTIONS(5737), + [anon_sym_or] = ACTIONS(5737), + [anon_sym_AMP_AMP] = ACTIONS(5737), + [anon_sym_PIPE_PIPE] = ACTIONS(5737), + [anon_sym_QMARK_QMARK] = ACTIONS(5737), + [anon_sym_into] = ACTIONS(5737), + [anon_sym_as] = ACTIONS(6027), + [anon_sym_is] = ACTIONS(6029), + [anon_sym_DASH_GT] = ACTIONS(4094), + [anon_sym_with] = ACTIONS(6031), + [aux_sym_preproc_if_token3] = ACTIONS(5737), + [aux_sym_preproc_else_token1] = ACTIONS(5737), + [aux_sym_preproc_elif_token1] = ACTIONS(5737), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -532827,6 +532254,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3881] = { + [sym_argument_list] = STATE(3348), + [sym_bracketed_argument_list] = STATE(2605), [sym_preproc_region] = STATE(3881), [sym_preproc_endregion] = STATE(3881), [sym_preproc_line] = STATE(3881), @@ -532836,52 +532265,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(5090), - [anon_sym_COMMA] = ACTIONS(5090), - [anon_sym_LPAREN] = ACTIONS(5090), - [anon_sym_LT] = ACTIONS(5092), - [anon_sym_GT] = ACTIONS(5092), - [anon_sym_where] = ACTIONS(5090), - [anon_sym_QMARK] = ACTIONS(5092), - [anon_sym_BANG] = ACTIONS(5092), - [anon_sym_PLUS_PLUS] = ACTIONS(5090), - [anon_sym_DASH_DASH] = ACTIONS(5090), - [anon_sym_PLUS] = ACTIONS(5092), - [anon_sym_DASH] = ACTIONS(5092), - [anon_sym_STAR] = ACTIONS(5090), - [anon_sym_SLASH] = ACTIONS(5092), - [anon_sym_PERCENT] = ACTIONS(5090), - [anon_sym_CARET] = ACTIONS(5090), - [anon_sym_PIPE] = ACTIONS(5092), - [anon_sym_AMP] = ACTIONS(5092), - [anon_sym_LT_LT] = ACTIONS(5090), - [anon_sym_GT_GT] = ACTIONS(5092), - [anon_sym_GT_GT_GT] = ACTIONS(5090), - [anon_sym_EQ_EQ] = ACTIONS(5090), - [anon_sym_BANG_EQ] = ACTIONS(5090), - [anon_sym_GT_EQ] = ACTIONS(5090), - [anon_sym_LT_EQ] = ACTIONS(5090), - [anon_sym_DOT] = ACTIONS(5092), - [anon_sym_switch] = ACTIONS(5090), - [anon_sym_DOT_DOT] = ACTIONS(5090), - [anon_sym_and] = ACTIONS(5090), - [anon_sym_or] = ACTIONS(5092), - [anon_sym_AMP_AMP] = ACTIONS(5090), - [anon_sym_PIPE_PIPE] = ACTIONS(5090), - [anon_sym_QMARK_QMARK] = ACTIONS(5090), - [anon_sym_from] = ACTIONS(5090), - [anon_sym_into] = ACTIONS(5090), - [anon_sym_join] = ACTIONS(5090), - [anon_sym_let] = ACTIONS(5090), - [anon_sym_orderby] = ACTIONS(5090), - [anon_sym_ascending] = ACTIONS(5090), - [anon_sym_descending] = ACTIONS(5090), - [anon_sym_group] = ACTIONS(5090), - [anon_sym_select] = ACTIONS(5090), - [anon_sym_as] = ACTIONS(5092), - [anon_sym_is] = ACTIONS(5090), - [anon_sym_DASH_GT] = ACTIONS(5090), - [anon_sym_with] = ACTIONS(5090), + [anon_sym_SEMI] = ACTIONS(5741), + [anon_sym_LBRACK] = ACTIONS(5236), + [anon_sym_COMMA] = ACTIONS(5741), + [anon_sym_RBRACK] = ACTIONS(5741), + [anon_sym_LPAREN] = ACTIONS(5227), + [anon_sym_RPAREN] = ACTIONS(5741), + [anon_sym_RBRACE] = ACTIONS(5741), + [anon_sym_LT] = ACTIONS(5743), + [anon_sym_GT] = ACTIONS(5743), + [anon_sym_QMARK] = ACTIONS(5743), + [anon_sym_BANG] = ACTIONS(5238), + [anon_sym_PLUS_PLUS] = ACTIONS(5240), + [anon_sym_DASH_DASH] = ACTIONS(5240), + [anon_sym_PLUS] = ACTIONS(5743), + [anon_sym_DASH] = ACTIONS(5743), + [anon_sym_STAR] = ACTIONS(5741), + [anon_sym_SLASH] = ACTIONS(5743), + [anon_sym_PERCENT] = ACTIONS(5741), + [anon_sym_CARET] = ACTIONS(5741), + [anon_sym_PIPE] = ACTIONS(5743), + [anon_sym_AMP] = ACTIONS(5743), + [anon_sym_LT_LT] = ACTIONS(5741), + [anon_sym_GT_GT] = ACTIONS(5743), + [anon_sym_GT_GT_GT] = ACTIONS(5741), + [anon_sym_EQ_EQ] = ACTIONS(5741), + [anon_sym_BANG_EQ] = ACTIONS(5741), + [anon_sym_GT_EQ] = ACTIONS(5741), + [anon_sym_LT_EQ] = ACTIONS(5741), + [anon_sym_DOT] = ACTIONS(4092), + [anon_sym_switch] = ACTIONS(5741), + [anon_sym_DOT_DOT] = ACTIONS(6019), + [anon_sym_and] = ACTIONS(5741), + [anon_sym_or] = ACTIONS(5741), + [anon_sym_AMP_AMP] = ACTIONS(5741), + [anon_sym_PIPE_PIPE] = ACTIONS(5741), + [anon_sym_QMARK_QMARK] = ACTIONS(5741), + [anon_sym_into] = ACTIONS(5741), + [anon_sym_as] = ACTIONS(5741), + [anon_sym_is] = ACTIONS(5741), + [anon_sym_DASH_GT] = ACTIONS(4094), + [anon_sym_with] = ACTIONS(5741), + [aux_sym_preproc_if_token3] = ACTIONS(5741), + [aux_sym_preproc_else_token1] = ACTIONS(5741), + [aux_sym_preproc_elif_token1] = ACTIONS(5741), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -532894,24 +532321,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3882] = { - [sym__name] = STATE(3072), - [sym_alias_qualified_name] = STATE(3029), - [sym__simple_name] = STATE(3029), - [sym_qualified_name] = STATE(3029), - [sym_generic_name] = STATE(2985), - [sym_type] = STATE(3026), - [sym_implicit_type] = STATE(3054), - [sym_array_type] = STATE(2992), - [sym__array_base_type] = STATE(7267), - [sym_nullable_type] = STATE(3012), - [sym_pointer_type] = STATE(3012), - [sym__pointer_base_type] = STATE(7693), - [sym_function_pointer_type] = STATE(3012), - [sym_ref_type] = STATE(3054), - [sym_scoped_type] = STATE(3054), - [sym_tuple_type] = STATE(3058), - [sym_identifier] = STATE(2923), - [sym__reserved_identifier] = STATE(2945), + [sym_argument_list] = STATE(3348), + [sym_bracketed_argument_list] = STATE(2605), [sym_preproc_region] = STATE(3882), [sym_preproc_endregion] = STATE(3882), [sym_preproc_line] = STATE(3882), @@ -532921,34 +532332,50 @@ 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), - [sym__identifier_token] = ACTIONS(3887), - [anon_sym_alias] = ACTIONS(3889), - [anon_sym_global] = ACTIONS(3889), - [anon_sym_LPAREN] = ACTIONS(6051), - [anon_sym_ref] = ACTIONS(3891), - [anon_sym_delegate] = ACTIONS(4042), - [anon_sym_file] = ACTIONS(3889), - [anon_sym_readonly] = ACTIONS(6223), - [anon_sym_where] = ACTIONS(3889), - [anon_sym_notnull] = ACTIONS(3889), - [anon_sym_unmanaged] = ACTIONS(3889), - [anon_sym_scoped] = ACTIONS(4044), - [anon_sym_var] = ACTIONS(4046), - [sym_predefined_type] = ACTIONS(4048), - [anon_sym_yield] = ACTIONS(3889), - [anon_sym_when] = ACTIONS(3889), - [anon_sym_from] = ACTIONS(3889), - [anon_sym_into] = ACTIONS(3889), - [anon_sym_join] = ACTIONS(3889), - [anon_sym_on] = ACTIONS(3889), - [anon_sym_equals] = ACTIONS(3889), - [anon_sym_let] = ACTIONS(3889), - [anon_sym_orderby] = ACTIONS(3889), - [anon_sym_ascending] = ACTIONS(3889), - [anon_sym_descending] = ACTIONS(3889), - [anon_sym_group] = ACTIONS(3889), - [anon_sym_by] = ACTIONS(3889), - [anon_sym_select] = ACTIONS(3889), + [anon_sym_SEMI] = ACTIONS(5737), + [anon_sym_LBRACK] = ACTIONS(5236), + [anon_sym_COMMA] = ACTIONS(5737), + [anon_sym_RBRACK] = ACTIONS(5737), + [anon_sym_LPAREN] = ACTIONS(5227), + [anon_sym_RPAREN] = ACTIONS(5737), + [anon_sym_RBRACE] = ACTIONS(5737), + [anon_sym_LT] = ACTIONS(5993), + [anon_sym_GT] = ACTIONS(5993), + [anon_sym_QMARK] = ACTIONS(5739), + [anon_sym_BANG] = ACTIONS(5238), + [anon_sym_PLUS_PLUS] = ACTIONS(5240), + [anon_sym_DASH_DASH] = ACTIONS(5240), + [anon_sym_PLUS] = ACTIONS(5997), + [anon_sym_DASH] = ACTIONS(5997), + [anon_sym_STAR] = ACTIONS(5999), + [anon_sym_SLASH] = ACTIONS(6001), + [anon_sym_PERCENT] = ACTIONS(5999), + [anon_sym_CARET] = ACTIONS(6003), + [anon_sym_PIPE] = ACTIONS(6005), + [anon_sym_AMP] = ACTIONS(6007), + [anon_sym_LT_LT] = ACTIONS(6009), + [anon_sym_GT_GT] = ACTIONS(6011), + [anon_sym_GT_GT_GT] = ACTIONS(6009), + [anon_sym_EQ_EQ] = ACTIONS(6013), + [anon_sym_BANG_EQ] = ACTIONS(6013), + [anon_sym_GT_EQ] = ACTIONS(6015), + [anon_sym_LT_EQ] = ACTIONS(6015), + [anon_sym_DOT] = ACTIONS(4092), + [anon_sym_switch] = ACTIONS(6017), + [anon_sym_DOT_DOT] = ACTIONS(6019), + [anon_sym_and] = ACTIONS(5737), + [anon_sym_or] = ACTIONS(5737), + [anon_sym_AMP_AMP] = ACTIONS(5737), + [anon_sym_PIPE_PIPE] = ACTIONS(5737), + [anon_sym_QMARK_QMARK] = ACTIONS(5737), + [anon_sym_into] = ACTIONS(5737), + [anon_sym_as] = ACTIONS(6027), + [anon_sym_is] = ACTIONS(6029), + [anon_sym_DASH_GT] = ACTIONS(4094), + [anon_sym_with] = ACTIONS(6031), + [aux_sym_preproc_if_token3] = ACTIONS(5737), + [aux_sym_preproc_else_token1] = ACTIONS(5737), + [aux_sym_preproc_elif_token1] = ACTIONS(5737), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -532961,24 +532388,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3883] = { - [sym__name] = STATE(4390), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(4096), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(4109), - [sym_type] = STATE(6104), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_identifier] = STATE(4087), - [sym__reserved_identifier] = STATE(3691), [sym_preproc_region] = STATE(3883), [sym_preproc_endregion] = STATE(3883), [sym_preproc_line] = STATE(3883), @@ -532988,34 +532397,52 @@ 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), - [sym__identifier_token] = ACTIONS(2967), - [anon_sym_alias] = ACTIONS(2971), - [anon_sym_global] = ACTIONS(2971), - [anon_sym_LPAREN] = ACTIONS(2979), - [anon_sym_ref] = ACTIONS(3452), - [anon_sym_delegate] = ACTIONS(3454), - [anon_sym_file] = ACTIONS(2971), - [anon_sym_where] = ACTIONS(2971), - [anon_sym_notnull] = ACTIONS(2971), - [anon_sym_unmanaged] = ACTIONS(2971), - [anon_sym_STAR] = ACTIONS(5619), - [anon_sym_scoped] = ACTIONS(2997), - [anon_sym_var] = ACTIONS(2999), - [sym_predefined_type] = ACTIONS(3001), - [anon_sym_yield] = ACTIONS(2971), - [anon_sym_when] = ACTIONS(2971), - [anon_sym_from] = ACTIONS(2971), - [anon_sym_into] = ACTIONS(2971), - [anon_sym_join] = ACTIONS(2971), - [anon_sym_on] = ACTIONS(2971), - [anon_sym_equals] = ACTIONS(2971), - [anon_sym_let] = ACTIONS(2971), - [anon_sym_orderby] = ACTIONS(2971), - [anon_sym_ascending] = ACTIONS(2971), - [anon_sym_descending] = ACTIONS(2971), - [anon_sym_group] = ACTIONS(2971), - [anon_sym_by] = ACTIONS(2971), - [anon_sym_select] = ACTIONS(2971), + [anon_sym_LBRACK] = ACTIONS(5064), + [anon_sym_COMMA] = ACTIONS(5064), + [anon_sym_LPAREN] = ACTIONS(5064), + [anon_sym_LT] = ACTIONS(5066), + [anon_sym_GT] = ACTIONS(5066), + [anon_sym_where] = ACTIONS(5064), + [anon_sym_QMARK] = ACTIONS(5066), + [anon_sym_BANG] = ACTIONS(5066), + [anon_sym_PLUS_PLUS] = ACTIONS(5064), + [anon_sym_DASH_DASH] = ACTIONS(5064), + [anon_sym_PLUS] = ACTIONS(5066), + [anon_sym_DASH] = ACTIONS(5066), + [anon_sym_STAR] = ACTIONS(5064), + [anon_sym_SLASH] = ACTIONS(5066), + [anon_sym_PERCENT] = ACTIONS(5064), + [anon_sym_CARET] = ACTIONS(5064), + [anon_sym_PIPE] = ACTIONS(5066), + [anon_sym_AMP] = ACTIONS(5066), + [anon_sym_LT_LT] = ACTIONS(5064), + [anon_sym_GT_GT] = ACTIONS(5066), + [anon_sym_GT_GT_GT] = ACTIONS(5064), + [anon_sym_EQ_EQ] = ACTIONS(5064), + [anon_sym_BANG_EQ] = ACTIONS(5064), + [anon_sym_GT_EQ] = ACTIONS(5064), + [anon_sym_LT_EQ] = ACTIONS(5064), + [anon_sym_DOT] = ACTIONS(5066), + [anon_sym_switch] = ACTIONS(5064), + [anon_sym_DOT_DOT] = ACTIONS(5064), + [anon_sym_and] = ACTIONS(5064), + [anon_sym_or] = ACTIONS(5066), + [anon_sym_AMP_AMP] = ACTIONS(5064), + [anon_sym_PIPE_PIPE] = ACTIONS(5064), + [anon_sym_QMARK_QMARK] = ACTIONS(5064), + [anon_sym_from] = ACTIONS(5064), + [anon_sym_into] = ACTIONS(5064), + [anon_sym_join] = ACTIONS(5064), + [anon_sym_let] = ACTIONS(5064), + [anon_sym_orderby] = ACTIONS(5064), + [anon_sym_ascending] = ACTIONS(5064), + [anon_sym_descending] = ACTIONS(5064), + [anon_sym_group] = ACTIONS(5064), + [anon_sym_select] = ACTIONS(5064), + [anon_sym_as] = ACTIONS(5066), + [anon_sym_is] = ACTIONS(5064), + [anon_sym_DASH_GT] = ACTIONS(5064), + [anon_sym_with] = ACTIONS(5064), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -533028,6 +532455,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3884] = { + [sym__name] = STATE(3151), + [sym_alias_qualified_name] = STATE(3143), + [sym__simple_name] = STATE(3143), + [sym_qualified_name] = STATE(3143), + [sym_generic_name] = STATE(3184), + [sym_type] = STATE(3159), + [sym_implicit_type] = STATE(3146), + [sym_array_type] = STATE(3147), + [sym__array_base_type] = STATE(7165), + [sym_nullable_type] = STATE(3148), + [sym_pointer_type] = STATE(3148), + [sym__pointer_base_type] = STATE(7401), + [sym_function_pointer_type] = STATE(3148), + [sym_ref_type] = STATE(3146), + [sym_scoped_type] = STATE(3146), + [sym_tuple_type] = STATE(3149), + [sym_identifier] = STATE(3119), + [sym__reserved_identifier] = STATE(3120), [sym_preproc_region] = STATE(3884), [sym_preproc_endregion] = STATE(3884), [sym_preproc_line] = STATE(3884), @@ -533037,52 +532482,34 @@ 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(5094), - [anon_sym_COMMA] = ACTIONS(5094), - [anon_sym_LPAREN] = ACTIONS(5094), - [anon_sym_LT] = ACTIONS(5096), - [anon_sym_GT] = ACTIONS(5096), - [anon_sym_where] = ACTIONS(5094), - [anon_sym_QMARK] = ACTIONS(5096), - [anon_sym_BANG] = ACTIONS(5096), - [anon_sym_PLUS_PLUS] = ACTIONS(5094), - [anon_sym_DASH_DASH] = ACTIONS(5094), - [anon_sym_PLUS] = ACTIONS(5096), - [anon_sym_DASH] = ACTIONS(5096), - [anon_sym_STAR] = ACTIONS(5094), - [anon_sym_SLASH] = ACTIONS(5096), - [anon_sym_PERCENT] = ACTIONS(5094), - [anon_sym_CARET] = ACTIONS(5094), - [anon_sym_PIPE] = ACTIONS(5096), - [anon_sym_AMP] = ACTIONS(5096), - [anon_sym_LT_LT] = ACTIONS(5094), - [anon_sym_GT_GT] = ACTIONS(5096), - [anon_sym_GT_GT_GT] = ACTIONS(5094), - [anon_sym_EQ_EQ] = ACTIONS(5094), - [anon_sym_BANG_EQ] = ACTIONS(5094), - [anon_sym_GT_EQ] = ACTIONS(5094), - [anon_sym_LT_EQ] = ACTIONS(5094), - [anon_sym_DOT] = ACTIONS(5096), - [anon_sym_switch] = ACTIONS(5094), - [anon_sym_DOT_DOT] = ACTIONS(5094), - [anon_sym_and] = ACTIONS(5094), - [anon_sym_or] = ACTIONS(5096), - [anon_sym_AMP_AMP] = ACTIONS(5094), - [anon_sym_PIPE_PIPE] = ACTIONS(5094), - [anon_sym_QMARK_QMARK] = ACTIONS(5094), - [anon_sym_from] = ACTIONS(5094), - [anon_sym_into] = ACTIONS(5094), - [anon_sym_join] = ACTIONS(5094), - [anon_sym_let] = ACTIONS(5094), - [anon_sym_orderby] = ACTIONS(5094), - [anon_sym_ascending] = ACTIONS(5094), - [anon_sym_descending] = ACTIONS(5094), - [anon_sym_group] = ACTIONS(5094), - [anon_sym_select] = ACTIONS(5094), - [anon_sym_as] = ACTIONS(5096), - [anon_sym_is] = ACTIONS(5094), - [anon_sym_DASH_GT] = ACTIONS(5094), - [anon_sym_with] = ACTIONS(5094), + [sym__identifier_token] = ACTIONS(3761), + [anon_sym_alias] = ACTIONS(3763), + [anon_sym_global] = ACTIONS(3763), + [anon_sym_LPAREN] = ACTIONS(6133), + [anon_sym_ref] = ACTIONS(4177), + [anon_sym_delegate] = ACTIONS(5622), + [anon_sym_file] = ACTIONS(3763), + [anon_sym_readonly] = ACTIONS(6197), + [anon_sym_where] = ACTIONS(3763), + [anon_sym_notnull] = ACTIONS(3763), + [anon_sym_unmanaged] = ACTIONS(3763), + [anon_sym_scoped] = ACTIONS(5789), + [anon_sym_var] = ACTIONS(5626), + [sym_predefined_type] = ACTIONS(5628), + [anon_sym_yield] = ACTIONS(3763), + [anon_sym_when] = ACTIONS(3763), + [anon_sym_from] = ACTIONS(3763), + [anon_sym_into] = ACTIONS(3763), + [anon_sym_join] = ACTIONS(3763), + [anon_sym_on] = ACTIONS(3763), + [anon_sym_equals] = ACTIONS(3763), + [anon_sym_let] = ACTIONS(3763), + [anon_sym_orderby] = ACTIONS(3763), + [anon_sym_ascending] = ACTIONS(3763), + [anon_sym_descending] = ACTIONS(3763), + [anon_sym_group] = ACTIONS(3763), + [anon_sym_by] = ACTIONS(3763), + [anon_sym_select] = ACTIONS(3763), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -533095,6 +532522,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3885] = { + [sym_argument_list] = STATE(3348), + [sym_bracketed_argument_list] = STATE(2605), [sym_preproc_region] = STATE(3885), [sym_preproc_endregion] = STATE(3885), [sym_preproc_line] = STATE(3885), @@ -533104,52 +532533,50 @@ 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), - [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(5737), + [anon_sym_LBRACK] = ACTIONS(5236), + [anon_sym_COMMA] = ACTIONS(5737), + [anon_sym_RBRACK] = ACTIONS(5737), + [anon_sym_LPAREN] = ACTIONS(5227), + [anon_sym_RPAREN] = ACTIONS(5737), + [anon_sym_RBRACE] = ACTIONS(5737), + [anon_sym_LT] = ACTIONS(5993), + [anon_sym_GT] = ACTIONS(5993), + [anon_sym_QMARK] = ACTIONS(5739), + [anon_sym_BANG] = ACTIONS(5238), + [anon_sym_PLUS_PLUS] = ACTIONS(5240), + [anon_sym_DASH_DASH] = ACTIONS(5240), + [anon_sym_PLUS] = ACTIONS(5997), + [anon_sym_DASH] = ACTIONS(5997), + [anon_sym_STAR] = ACTIONS(5999), + [anon_sym_SLASH] = ACTIONS(6001), + [anon_sym_PERCENT] = ACTIONS(5999), + [anon_sym_CARET] = ACTIONS(6003), + [anon_sym_PIPE] = ACTIONS(6005), + [anon_sym_AMP] = ACTIONS(6007), + [anon_sym_LT_LT] = ACTIONS(6009), + [anon_sym_GT_GT] = ACTIONS(6011), + [anon_sym_GT_GT_GT] = ACTIONS(6009), + [anon_sym_EQ_EQ] = ACTIONS(6013), + [anon_sym_BANG_EQ] = ACTIONS(6013), + [anon_sym_GT_EQ] = ACTIONS(6015), + [anon_sym_LT_EQ] = ACTIONS(6015), + [anon_sym_DOT] = ACTIONS(4092), + [anon_sym_switch] = ACTIONS(6017), + [anon_sym_DOT_DOT] = ACTIONS(6019), + [anon_sym_and] = ACTIONS(5737), + [anon_sym_or] = ACTIONS(5737), + [anon_sym_AMP_AMP] = ACTIONS(6021), + [anon_sym_PIPE_PIPE] = ACTIONS(5737), + [anon_sym_QMARK_QMARK] = ACTIONS(5737), + [anon_sym_into] = ACTIONS(5737), + [anon_sym_as] = ACTIONS(6027), + [anon_sym_is] = ACTIONS(6029), + [anon_sym_DASH_GT] = ACTIONS(4094), + [anon_sym_with] = ACTIONS(6031), + [aux_sym_preproc_if_token3] = ACTIONS(5737), + [aux_sym_preproc_else_token1] = ACTIONS(5737), + [aux_sym_preproc_elif_token1] = ACTIONS(5737), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -533162,5284 +532589,210 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3886] = { + [sym_argument_list] = STATE(3348), + [sym_bracketed_argument_list] = STATE(2605), [sym_preproc_region] = STATE(3886), [sym_preproc_endregion] = STATE(3886), [sym_preproc_line] = STATE(3886), [sym_preproc_pragma] = STATE(3886), [sym_preproc_nullable] = STATE(3886), [sym_preproc_error] = STATE(3886), - [sym_preproc_warning] = STATE(3886), - [sym_preproc_define] = STATE(3886), - [sym_preproc_undef] = STATE(3886), - [anon_sym_LBRACK] = ACTIONS(5134), - [anon_sym_COMMA] = ACTIONS(5134), - [anon_sym_LPAREN] = ACTIONS(5134), - [anon_sym_LT] = ACTIONS(5136), - [anon_sym_GT] = ACTIONS(5136), - [anon_sym_where] = ACTIONS(5134), - [anon_sym_QMARK] = ACTIONS(5136), - [anon_sym_BANG] = ACTIONS(5136), - [anon_sym_PLUS_PLUS] = ACTIONS(5134), - [anon_sym_DASH_DASH] = ACTIONS(5134), - [anon_sym_PLUS] = ACTIONS(5136), - [anon_sym_DASH] = ACTIONS(5136), - [anon_sym_STAR] = ACTIONS(5134), - [anon_sym_SLASH] = ACTIONS(5136), - [anon_sym_PERCENT] = ACTIONS(5134), - [anon_sym_CARET] = ACTIONS(5134), - [anon_sym_PIPE] = ACTIONS(5136), - [anon_sym_AMP] = ACTIONS(5136), - [anon_sym_LT_LT] = ACTIONS(5134), - [anon_sym_GT_GT] = ACTIONS(5136), - [anon_sym_GT_GT_GT] = ACTIONS(5134), - [anon_sym_EQ_EQ] = ACTIONS(5134), - [anon_sym_BANG_EQ] = ACTIONS(5134), - [anon_sym_GT_EQ] = ACTIONS(5134), - [anon_sym_LT_EQ] = ACTIONS(5134), - [anon_sym_DOT] = ACTIONS(5136), - [anon_sym_switch] = ACTIONS(5134), - [anon_sym_DOT_DOT] = ACTIONS(5134), - [anon_sym_and] = ACTIONS(5134), - [anon_sym_or] = ACTIONS(5136), - [anon_sym_AMP_AMP] = ACTIONS(5134), - [anon_sym_PIPE_PIPE] = ACTIONS(5134), - [anon_sym_QMARK_QMARK] = ACTIONS(5134), - [anon_sym_from] = ACTIONS(5134), - [anon_sym_into] = ACTIONS(5134), - [anon_sym_join] = ACTIONS(5134), - [anon_sym_let] = ACTIONS(5134), - [anon_sym_orderby] = ACTIONS(5134), - [anon_sym_ascending] = ACTIONS(5134), - [anon_sym_descending] = ACTIONS(5134), - [anon_sym_group] = ACTIONS(5134), - [anon_sym_select] = ACTIONS(5134), - [anon_sym_as] = ACTIONS(5136), - [anon_sym_is] = ACTIONS(5134), - [anon_sym_DASH_GT] = ACTIONS(5134), - [anon_sym_with] = ACTIONS(5134), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - }, - [3887] = { - [sym_preproc_region] = STATE(3887), - [sym_preproc_endregion] = STATE(3887), - [sym_preproc_line] = STATE(3887), - [sym_preproc_pragma] = STATE(3887), - [sym_preproc_nullable] = STATE(3887), - [sym_preproc_error] = STATE(3887), - [sym_preproc_warning] = STATE(3887), - [sym_preproc_define] = STATE(3887), - [sym_preproc_undef] = STATE(3887), - [anon_sym_LBRACK] = ACTIONS(5138), - [anon_sym_COMMA] = ACTIONS(5138), - [anon_sym_LPAREN] = ACTIONS(5138), - [anon_sym_LT] = ACTIONS(5140), - [anon_sym_GT] = ACTIONS(5140), - [anon_sym_where] = ACTIONS(5138), - [anon_sym_QMARK] = ACTIONS(5140), - [anon_sym_BANG] = ACTIONS(5140), - [anon_sym_PLUS_PLUS] = ACTIONS(5138), - [anon_sym_DASH_DASH] = ACTIONS(5138), - [anon_sym_PLUS] = ACTIONS(5140), - [anon_sym_DASH] = ACTIONS(5140), - [anon_sym_STAR] = ACTIONS(5138), - [anon_sym_SLASH] = ACTIONS(5140), - [anon_sym_PERCENT] = ACTIONS(5138), - [anon_sym_CARET] = ACTIONS(5138), - [anon_sym_PIPE] = ACTIONS(5140), - [anon_sym_AMP] = ACTIONS(5140), - [anon_sym_LT_LT] = ACTIONS(5138), - [anon_sym_GT_GT] = ACTIONS(5140), - [anon_sym_GT_GT_GT] = ACTIONS(5138), - [anon_sym_EQ_EQ] = ACTIONS(5138), - [anon_sym_BANG_EQ] = ACTIONS(5138), - [anon_sym_GT_EQ] = ACTIONS(5138), - [anon_sym_LT_EQ] = ACTIONS(5138), - [anon_sym_DOT] = ACTIONS(5140), - [anon_sym_switch] = ACTIONS(5138), - [anon_sym_DOT_DOT] = ACTIONS(5138), - [anon_sym_and] = ACTIONS(5138), - [anon_sym_or] = ACTIONS(5140), - [anon_sym_AMP_AMP] = ACTIONS(5138), - [anon_sym_PIPE_PIPE] = ACTIONS(5138), - [anon_sym_QMARK_QMARK] = ACTIONS(5138), - [anon_sym_from] = ACTIONS(5138), - [anon_sym_into] = ACTIONS(5138), - [anon_sym_join] = ACTIONS(5138), - [anon_sym_let] = ACTIONS(5138), - [anon_sym_orderby] = ACTIONS(5138), - [anon_sym_ascending] = ACTIONS(5138), - [anon_sym_descending] = ACTIONS(5138), - [anon_sym_group] = ACTIONS(5138), - [anon_sym_select] = ACTIONS(5138), - [anon_sym_as] = ACTIONS(5140), - [anon_sym_is] = ACTIONS(5138), - [anon_sym_DASH_GT] = ACTIONS(5138), - [anon_sym_with] = ACTIONS(5138), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - }, - [3888] = { - [sym_preproc_region] = STATE(3888), - [sym_preproc_endregion] = STATE(3888), - [sym_preproc_line] = STATE(3888), - [sym_preproc_pragma] = STATE(3888), - [sym_preproc_nullable] = STATE(3888), - [sym_preproc_error] = STATE(3888), - [sym_preproc_warning] = STATE(3888), - [sym_preproc_define] = STATE(3888), - [sym_preproc_undef] = STATE(3888), - [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_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - }, - [3889] = { - [sym_preproc_region] = STATE(3889), - [sym_preproc_endregion] = STATE(3889), - [sym_preproc_line] = STATE(3889), - [sym_preproc_pragma] = STATE(3889), - [sym_preproc_nullable] = STATE(3889), - [sym_preproc_error] = STATE(3889), - [sym_preproc_warning] = STATE(3889), - [sym_preproc_define] = STATE(3889), - [sym_preproc_undef] = STATE(3889), - [anon_sym_LBRACK] = ACTIONS(5142), - [anon_sym_COMMA] = ACTIONS(5142), - [anon_sym_LPAREN] = ACTIONS(5142), - [anon_sym_LT] = ACTIONS(5144), - [anon_sym_GT] = ACTIONS(5144), - [anon_sym_where] = ACTIONS(5142), - [anon_sym_QMARK] = ACTIONS(5144), - [anon_sym_BANG] = ACTIONS(5144), - [anon_sym_PLUS_PLUS] = ACTIONS(5142), - [anon_sym_DASH_DASH] = ACTIONS(5142), - [anon_sym_PLUS] = ACTIONS(5144), - [anon_sym_DASH] = ACTIONS(5144), - [anon_sym_STAR] = ACTIONS(5142), - [anon_sym_SLASH] = ACTIONS(5144), - [anon_sym_PERCENT] = ACTIONS(5142), - [anon_sym_CARET] = ACTIONS(5142), - [anon_sym_PIPE] = ACTIONS(5144), - [anon_sym_AMP] = ACTIONS(5144), - [anon_sym_LT_LT] = ACTIONS(5142), - [anon_sym_GT_GT] = ACTIONS(5144), - [anon_sym_GT_GT_GT] = ACTIONS(5142), - [anon_sym_EQ_EQ] = ACTIONS(5142), - [anon_sym_BANG_EQ] = ACTIONS(5142), - [anon_sym_GT_EQ] = ACTIONS(5142), - [anon_sym_LT_EQ] = ACTIONS(5142), - [anon_sym_DOT] = ACTIONS(5144), - [anon_sym_switch] = ACTIONS(5142), - [anon_sym_DOT_DOT] = ACTIONS(5142), - [anon_sym_and] = ACTIONS(5142), - [anon_sym_or] = ACTIONS(5144), - [anon_sym_AMP_AMP] = ACTIONS(5142), - [anon_sym_PIPE_PIPE] = ACTIONS(5142), - [anon_sym_QMARK_QMARK] = ACTIONS(5142), - [anon_sym_from] = ACTIONS(5142), - [anon_sym_into] = ACTIONS(5142), - [anon_sym_join] = ACTIONS(5142), - [anon_sym_let] = ACTIONS(5142), - [anon_sym_orderby] = ACTIONS(5142), - [anon_sym_ascending] = ACTIONS(5142), - [anon_sym_descending] = ACTIONS(5142), - [anon_sym_group] = ACTIONS(5142), - [anon_sym_select] = ACTIONS(5142), - [anon_sym_as] = ACTIONS(5144), - [anon_sym_is] = ACTIONS(5142), - [anon_sym_DASH_GT] = ACTIONS(5142), - [anon_sym_with] = ACTIONS(5142), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - }, - [3890] = { - [sym_preproc_region] = STATE(3890), - [sym_preproc_endregion] = STATE(3890), - [sym_preproc_line] = STATE(3890), - [sym_preproc_pragma] = STATE(3890), - [sym_preproc_nullable] = STATE(3890), - [sym_preproc_error] = STATE(3890), - [sym_preproc_warning] = STATE(3890), - [sym_preproc_define] = STATE(3890), - [sym_preproc_undef] = STATE(3890), - [anon_sym_LBRACK] = ACTIONS(5146), - [anon_sym_COMMA] = ACTIONS(5146), - [anon_sym_LPAREN] = ACTIONS(5146), - [anon_sym_LT] = ACTIONS(5148), - [anon_sym_GT] = ACTIONS(5148), - [anon_sym_where] = ACTIONS(5146), - [anon_sym_QMARK] = ACTIONS(5148), - [anon_sym_BANG] = ACTIONS(5148), - [anon_sym_PLUS_PLUS] = ACTIONS(5146), - [anon_sym_DASH_DASH] = ACTIONS(5146), - [anon_sym_PLUS] = ACTIONS(5148), - [anon_sym_DASH] = ACTIONS(5148), - [anon_sym_STAR] = ACTIONS(5146), - [anon_sym_SLASH] = ACTIONS(5148), - [anon_sym_PERCENT] = ACTIONS(5146), - [anon_sym_CARET] = ACTIONS(5146), - [anon_sym_PIPE] = ACTIONS(5148), - [anon_sym_AMP] = ACTIONS(5148), - [anon_sym_LT_LT] = ACTIONS(5146), - [anon_sym_GT_GT] = ACTIONS(5148), - [anon_sym_GT_GT_GT] = ACTIONS(5146), - [anon_sym_EQ_EQ] = ACTIONS(5146), - [anon_sym_BANG_EQ] = ACTIONS(5146), - [anon_sym_GT_EQ] = ACTIONS(5146), - [anon_sym_LT_EQ] = ACTIONS(5146), - [anon_sym_DOT] = ACTIONS(5148), - [anon_sym_switch] = ACTIONS(5146), - [anon_sym_DOT_DOT] = ACTIONS(5146), - [anon_sym_and] = ACTIONS(5146), - [anon_sym_or] = ACTIONS(5148), - [anon_sym_AMP_AMP] = ACTIONS(5146), - [anon_sym_PIPE_PIPE] = ACTIONS(5146), - [anon_sym_QMARK_QMARK] = ACTIONS(5146), - [anon_sym_from] = ACTIONS(5146), - [anon_sym_into] = ACTIONS(5146), - [anon_sym_join] = ACTIONS(5146), - [anon_sym_let] = ACTIONS(5146), - [anon_sym_orderby] = ACTIONS(5146), - [anon_sym_ascending] = ACTIONS(5146), - [anon_sym_descending] = ACTIONS(5146), - [anon_sym_group] = ACTIONS(5146), - [anon_sym_select] = ACTIONS(5146), - [anon_sym_as] = ACTIONS(5148), - [anon_sym_is] = ACTIONS(5146), - [anon_sym_DASH_GT] = ACTIONS(5146), - [anon_sym_with] = ACTIONS(5146), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - }, - [3891] = { - [sym_preproc_region] = STATE(3891), - [sym_preproc_endregion] = STATE(3891), - [sym_preproc_line] = STATE(3891), - [sym_preproc_pragma] = STATE(3891), - [sym_preproc_nullable] = STATE(3891), - [sym_preproc_error] = STATE(3891), - [sym_preproc_warning] = STATE(3891), - [sym_preproc_define] = STATE(3891), - [sym_preproc_undef] = STATE(3891), - [sym__identifier_token] = ACTIONS(3482), - [anon_sym_extern] = ACTIONS(3482), - [anon_sym_alias] = ACTIONS(3482), - [anon_sym_global] = ACTIONS(3482), - [anon_sym_unsafe] = ACTIONS(3482), - [anon_sym_static] = ACTIONS(3482), - [anon_sym_LPAREN] = ACTIONS(5381), - [anon_sym_ref] = ACTIONS(3482), - [anon_sym_delegate] = 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_scoped] = ACTIONS(3482), - [anon_sym_var] = ACTIONS(3482), - [sym_predefined_type] = ACTIONS(3482), - [anon_sym_yield] = ACTIONS(3482), - [anon_sym_when] = ACTIONS(3482), - [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), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - }, - [3892] = { - [sym_preproc_region] = STATE(3892), - [sym_preproc_endregion] = STATE(3892), - [sym_preproc_line] = STATE(3892), - [sym_preproc_pragma] = STATE(3892), - [sym_preproc_nullable] = STATE(3892), - [sym_preproc_error] = STATE(3892), - [sym_preproc_warning] = STATE(3892), - [sym_preproc_define] = STATE(3892), - [sym_preproc_undef] = STATE(3892), - [anon_sym_LBRACK] = ACTIONS(2957), - [anon_sym_COMMA] = ACTIONS(2957), - [anon_sym_LPAREN] = ACTIONS(2957), - [anon_sym_LT] = ACTIONS(2955), - [anon_sym_GT] = ACTIONS(2955), - [anon_sym_where] = ACTIONS(2957), - [anon_sym_QMARK] = ACTIONS(2955), - [anon_sym_BANG] = ACTIONS(2955), - [anon_sym_PLUS_PLUS] = ACTIONS(2957), - [anon_sym_DASH_DASH] = ACTIONS(2957), - [anon_sym_PLUS] = ACTIONS(2955), - [anon_sym_DASH] = ACTIONS(2955), - [anon_sym_STAR] = ACTIONS(2957), - [anon_sym_SLASH] = ACTIONS(2955), - [anon_sym_PERCENT] = ACTIONS(2957), - [anon_sym_CARET] = ACTIONS(2957), - [anon_sym_PIPE] = ACTIONS(2955), - [anon_sym_AMP] = ACTIONS(2955), - [anon_sym_LT_LT] = ACTIONS(2957), - [anon_sym_GT_GT] = ACTIONS(2955), - [anon_sym_GT_GT_GT] = ACTIONS(2957), - [anon_sym_EQ_EQ] = ACTIONS(2957), - [anon_sym_BANG_EQ] = ACTIONS(2957), - [anon_sym_GT_EQ] = ACTIONS(2957), - [anon_sym_LT_EQ] = ACTIONS(2957), - [anon_sym_DOT] = ACTIONS(2955), - [anon_sym_switch] = ACTIONS(2957), - [anon_sym_DOT_DOT] = ACTIONS(2957), - [anon_sym_and] = ACTIONS(2957), - [anon_sym_or] = ACTIONS(2955), - [anon_sym_AMP_AMP] = ACTIONS(2957), - [anon_sym_PIPE_PIPE] = ACTIONS(2957), - [anon_sym_QMARK_QMARK] = ACTIONS(2957), - [anon_sym_from] = ACTIONS(2957), - [anon_sym_into] = ACTIONS(2957), - [anon_sym_join] = ACTIONS(2957), - [anon_sym_let] = ACTIONS(2957), - [anon_sym_orderby] = ACTIONS(2957), - [anon_sym_ascending] = ACTIONS(2957), - [anon_sym_descending] = ACTIONS(2957), - [anon_sym_group] = ACTIONS(2957), - [anon_sym_select] = ACTIONS(2957), - [anon_sym_as] = ACTIONS(2955), - [anon_sym_is] = ACTIONS(2957), - [anon_sym_DASH_GT] = ACTIONS(2957), - [anon_sym_with] = ACTIONS(2957), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - }, - [3893] = { - [sym_preproc_region] = STATE(3893), - [sym_preproc_endregion] = STATE(3893), - [sym_preproc_line] = STATE(3893), - [sym_preproc_pragma] = STATE(3893), - [sym_preproc_nullable] = STATE(3893), - [sym_preproc_error] = STATE(3893), - [sym_preproc_warning] = STATE(3893), - [sym_preproc_define] = STATE(3893), - [sym_preproc_undef] = STATE(3893), - [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), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - }, - [3894] = { - [sym_preproc_region] = STATE(3894), - [sym_preproc_endregion] = STATE(3894), - [sym_preproc_line] = STATE(3894), - [sym_preproc_pragma] = STATE(3894), - [sym_preproc_nullable] = STATE(3894), - [sym_preproc_error] = STATE(3894), - [sym_preproc_warning] = STATE(3894), - [sym_preproc_define] = STATE(3894), - [sym_preproc_undef] = STATE(3894), - [anon_sym_LBRACK] = ACTIONS(4253), - [anon_sym_COMMA] = ACTIONS(4253), - [anon_sym_LPAREN] = ACTIONS(4253), - [anon_sym_LT] = ACTIONS(4255), - [anon_sym_GT] = ACTIONS(4255), - [anon_sym_where] = ACTIONS(4253), - [anon_sym_QMARK] = ACTIONS(4255), - [anon_sym_BANG] = ACTIONS(4255), - [anon_sym_PLUS_PLUS] = ACTIONS(4253), - [anon_sym_DASH_DASH] = ACTIONS(4253), - [anon_sym_PLUS] = ACTIONS(4255), - [anon_sym_DASH] = ACTIONS(4255), - [anon_sym_STAR] = ACTIONS(4253), - [anon_sym_SLASH] = ACTIONS(4255), - [anon_sym_PERCENT] = ACTIONS(4253), - [anon_sym_CARET] = ACTIONS(4253), - [anon_sym_PIPE] = ACTIONS(4255), - [anon_sym_AMP] = ACTIONS(4255), - [anon_sym_LT_LT] = ACTIONS(4253), - [anon_sym_GT_GT] = ACTIONS(4255), - [anon_sym_GT_GT_GT] = ACTIONS(4253), - [anon_sym_EQ_EQ] = ACTIONS(4253), - [anon_sym_BANG_EQ] = ACTIONS(4253), - [anon_sym_GT_EQ] = ACTIONS(4253), - [anon_sym_LT_EQ] = ACTIONS(4253), - [anon_sym_DOT] = ACTIONS(4255), - [anon_sym_switch] = ACTIONS(4253), - [anon_sym_DOT_DOT] = ACTIONS(4253), - [anon_sym_and] = ACTIONS(4253), - [anon_sym_or] = ACTIONS(4255), - [anon_sym_AMP_AMP] = ACTIONS(4253), - [anon_sym_PIPE_PIPE] = ACTIONS(4253), - [anon_sym_QMARK_QMARK] = ACTIONS(4253), - [anon_sym_from] = ACTIONS(4253), - [anon_sym_into] = ACTIONS(4253), - [anon_sym_join] = ACTIONS(4253), - [anon_sym_let] = ACTIONS(4253), - [anon_sym_orderby] = ACTIONS(4253), - [anon_sym_ascending] = ACTIONS(4253), - [anon_sym_descending] = ACTIONS(4253), - [anon_sym_group] = ACTIONS(4253), - [anon_sym_select] = ACTIONS(4253), - [anon_sym_as] = ACTIONS(4255), - [anon_sym_is] = ACTIONS(4253), - [anon_sym_DASH_GT] = ACTIONS(4253), - [anon_sym_with] = ACTIONS(4253), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - }, - [3895] = { - [sym_preproc_region] = STATE(3895), - [sym_preproc_endregion] = STATE(3895), - [sym_preproc_line] = STATE(3895), - [sym_preproc_pragma] = STATE(3895), - [sym_preproc_nullable] = STATE(3895), - [sym_preproc_error] = STATE(3895), - [sym_preproc_warning] = STATE(3895), - [sym_preproc_define] = STATE(3895), - [sym_preproc_undef] = STATE(3895), - [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), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - }, - [3896] = { - [sym_preproc_region] = STATE(3896), - [sym_preproc_endregion] = STATE(3896), - [sym_preproc_line] = STATE(3896), - [sym_preproc_pragma] = STATE(3896), - [sym_preproc_nullable] = STATE(3896), - [sym_preproc_error] = STATE(3896), - [sym_preproc_warning] = STATE(3896), - [sym_preproc_define] = STATE(3896), - [sym_preproc_undef] = STATE(3896), - [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), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - }, - [3897] = { - [sym_preproc_region] = STATE(3897), - [sym_preproc_endregion] = STATE(3897), - [sym_preproc_line] = STATE(3897), - [sym_preproc_pragma] = STATE(3897), - [sym_preproc_nullable] = STATE(3897), - [sym_preproc_error] = STATE(3897), - [sym_preproc_warning] = STATE(3897), - [sym_preproc_define] = STATE(3897), - [sym_preproc_undef] = STATE(3897), - [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), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - }, - [3898] = { - [sym__name] = STATE(4390), - [sym_alias_qualified_name] = STATE(4096), - [sym__simple_name] = STATE(4096), - [sym_qualified_name] = STATE(4096), - [sym_generic_name] = STATE(4109), - [sym_type] = STATE(4632), - [sym_implicit_type] = STATE(2347), - [sym_array_type] = STATE(4404), - [sym__array_base_type] = STATE(7162), - [sym_nullable_type] = STATE(4285), - [sym_pointer_type] = STATE(4285), - [sym__pointer_base_type] = STATE(7413), - [sym_function_pointer_type] = STATE(4285), - [sym_ref_type] = STATE(2347), - [sym_scoped_type] = STATE(2347), - [sym_tuple_type] = STATE(4292), - [sym_identifier] = STATE(4087), - [sym__reserved_identifier] = STATE(3691), - [sym_preproc_region] = STATE(3898), - [sym_preproc_endregion] = STATE(3898), - [sym_preproc_line] = STATE(3898), - [sym_preproc_pragma] = STATE(3898), - [sym_preproc_nullable] = STATE(3898), - [sym_preproc_error] = STATE(3898), - [sym_preproc_warning] = STATE(3898), - [sym_preproc_define] = STATE(3898), - [sym_preproc_undef] = STATE(3898), - [sym__identifier_token] = ACTIONS(2967), - [anon_sym_alias] = ACTIONS(2971), - [anon_sym_global] = ACTIONS(2971), - [anon_sym_LPAREN] = ACTIONS(2979), - [anon_sym_ref] = ACTIONS(3640), - [anon_sym_delegate] = ACTIONS(3454), - [anon_sym_file] = ACTIONS(2971), - [anon_sym_readonly] = ACTIONS(2841), - [anon_sym_where] = ACTIONS(2971), - [anon_sym_notnull] = ACTIONS(2971), - [anon_sym_unmanaged] = ACTIONS(2971), - [anon_sym_scoped] = ACTIONS(6179), - [anon_sym_var] = ACTIONS(6079), - [sym_predefined_type] = ACTIONS(3001), - [anon_sym_yield] = ACTIONS(2971), - [anon_sym_when] = ACTIONS(2971), - [anon_sym_from] = ACTIONS(2971), - [anon_sym_into] = ACTIONS(2971), - [anon_sym_join] = ACTIONS(2971), - [anon_sym_on] = ACTIONS(2971), - [anon_sym_equals] = ACTIONS(2971), - [anon_sym_let] = ACTIONS(2971), - [anon_sym_orderby] = ACTIONS(2971), - [anon_sym_ascending] = ACTIONS(2971), - [anon_sym_descending] = ACTIONS(2971), - [anon_sym_group] = ACTIONS(2971), - [anon_sym_by] = ACTIONS(2971), - [anon_sym_select] = ACTIONS(2971), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - }, - [3899] = { - [sym_argument_list] = STATE(3259), - [sym_bracketed_argument_list] = STATE(2613), - [sym_preproc_region] = STATE(3899), - [sym_preproc_endregion] = STATE(3899), - [sym_preproc_line] = STATE(3899), - [sym_preproc_pragma] = STATE(3899), - [sym_preproc_nullable] = STATE(3899), - [sym_preproc_error] = STATE(3899), - [sym_preproc_warning] = STATE(3899), - [sym_preproc_define] = STATE(3899), - [sym_preproc_undef] = STATE(3899), - [anon_sym_SEMI] = ACTIONS(5777), - [anon_sym_LBRACK] = ACTIONS(5283), - [anon_sym_COMMA] = ACTIONS(5777), - [anon_sym_RBRACK] = ACTIONS(5777), - [anon_sym_LPAREN] = ACTIONS(5247), - [anon_sym_RPAREN] = ACTIONS(5777), - [anon_sym_RBRACE] = ACTIONS(5777), - [anon_sym_LT] = ACTIONS(6123), - [anon_sym_GT] = ACTIONS(6123), - [anon_sym_QMARK] = ACTIONS(6125), - [anon_sym_BANG] = ACTIONS(5285), - [anon_sym_PLUS_PLUS] = ACTIONS(5287), - [anon_sym_DASH_DASH] = ACTIONS(5287), - [anon_sym_PLUS] = ACTIONS(6127), - [anon_sym_DASH] = ACTIONS(6127), - [anon_sym_STAR] = ACTIONS(6129), - [anon_sym_SLASH] = ACTIONS(6131), - [anon_sym_PERCENT] = ACTIONS(6129), - [anon_sym_CARET] = ACTIONS(6133), - [anon_sym_PIPE] = ACTIONS(6135), - [anon_sym_AMP] = ACTIONS(6137), - [anon_sym_LT_LT] = ACTIONS(6139), - [anon_sym_GT_GT] = ACTIONS(6141), - [anon_sym_GT_GT_GT] = ACTIONS(6139), - [anon_sym_EQ_EQ] = ACTIONS(6143), - [anon_sym_BANG_EQ] = ACTIONS(6143), - [anon_sym_GT_EQ] = ACTIONS(6145), - [anon_sym_LT_EQ] = ACTIONS(6145), - [anon_sym_DOT] = ACTIONS(4075), - [anon_sym_switch] = ACTIONS(6147), - [anon_sym_DOT_DOT] = ACTIONS(6149), - [anon_sym_and] = ACTIONS(5777), - [anon_sym_or] = ACTIONS(5777), - [anon_sym_AMP_AMP] = ACTIONS(6151), - [anon_sym_PIPE_PIPE] = ACTIONS(6153), - [anon_sym_QMARK_QMARK] = ACTIONS(6155), - [anon_sym_into] = ACTIONS(5777), - [anon_sym_as] = ACTIONS(6157), - [anon_sym_is] = ACTIONS(6159), - [anon_sym_DASH_GT] = ACTIONS(4077), - [anon_sym_with] = ACTIONS(6161), - [aux_sym_preproc_if_token3] = ACTIONS(5777), - [aux_sym_preproc_else_token1] = ACTIONS(5777), - [aux_sym_preproc_elif_token1] = ACTIONS(5777), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - }, -}; - -static const uint16_t ts_small_parse_table[] = { - [0] = 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(3861), 1, - sym__identifier_token, - ACTIONS(4229), 1, - anon_sym_ref, - ACTIONS(5791), 1, - anon_sym_delegate, - ACTIONS(5793), 1, - anon_sym_scoped, - ACTIONS(5795), 1, - anon_sym_var, - ACTIONS(5797), 1, - sym_predefined_type, - ACTIONS(6091), 1, - anon_sym_LPAREN, - STATE(2904), 1, - sym__reserved_identifier, - STATE(2929), 1, - sym_generic_name, - STATE(2937), 1, - sym_array_type, - STATE(2939), 1, - sym_type, - STATE(2944), 1, - sym_tuple_type, - STATE(3260), 1, - sym_identifier, - STATE(3534), 1, - sym__name, - STATE(7122), 1, - sym__array_base_type, - STATE(7545), 1, - sym__pointer_base_type, - STATE(2921), 3, - sym_alias_qualified_name, - sym__simple_name, - sym_qualified_name, - STATE(2935), 3, - sym_implicit_type, - sym_ref_type, - sym_scoped_type, - STATE(2961), 3, - sym_nullable_type, - sym_pointer_type, - sym_function_pointer_type, - STATE(3900), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - ACTIONS(3863), 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, - [127] = 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(3861), 1, - sym__identifier_token, - ACTIONS(3865), 1, - anon_sym_ref, - ACTIONS(5791), 1, - anon_sym_delegate, - ACTIONS(5795), 1, - anon_sym_var, - ACTIONS(5797), 1, - sym_predefined_type, - ACTIONS(5826), 1, - anon_sym_scoped, - ACTIONS(6091), 1, - anon_sym_LPAREN, - STATE(2904), 1, - sym__reserved_identifier, - STATE(2929), 1, - sym_generic_name, - STATE(2937), 1, - sym_array_type, - STATE(2944), 1, - sym_tuple_type, - STATE(2962), 1, - sym_type, - STATE(3260), 1, - sym_identifier, - STATE(3534), 1, - sym__name, - STATE(7122), 1, - sym__array_base_type, - STATE(7545), 1, - sym__pointer_base_type, - STATE(2921), 3, - sym_alias_qualified_name, - sym__simple_name, - sym_qualified_name, - STATE(2935), 3, - sym_implicit_type, - sym_ref_type, - sym_scoped_type, - STATE(2961), 3, - sym_nullable_type, - sym_pointer_type, - sym_function_pointer_type, - STATE(3901), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - ACTIONS(3863), 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, - [254] = 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(3887), 1, - sym__identifier_token, - ACTIONS(4042), 1, - anon_sym_delegate, - ACTIONS(4046), 1, - anon_sym_var, - ACTIONS(4048), 1, - sym_predefined_type, - ACTIONS(4223), 1, - anon_sym_ref, - ACTIONS(5761), 1, - anon_sym_scoped, - ACTIONS(6051), 1, - anon_sym_LPAREN, - STATE(2923), 1, - sym_identifier, - STATE(2945), 1, - sym__reserved_identifier, - STATE(2985), 1, - sym_generic_name, - STATE(2992), 1, - sym_array_type, - STATE(3038), 1, - sym_type, - STATE(3058), 1, - sym_tuple_type, - STATE(3072), 1, - sym__name, - STATE(7267), 1, - sym__array_base_type, - STATE(7693), 1, - sym__pointer_base_type, - STATE(3012), 3, - sym_nullable_type, - sym_pointer_type, - sym_function_pointer_type, - STATE(3029), 3, - sym_alias_qualified_name, - sym__simple_name, - sym_qualified_name, - STATE(3054), 3, - sym_implicit_type, - sym_ref_type, - sym_scoped_type, - STATE(3902), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - ACTIONS(3889), 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, - [381] = 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(3861), 1, - sym__identifier_token, - ACTIONS(3865), 1, - anon_sym_ref, - ACTIONS(5791), 1, - anon_sym_delegate, - ACTIONS(5795), 1, - anon_sym_var, - ACTIONS(5797), 1, - sym_predefined_type, - ACTIONS(5826), 1, - anon_sym_scoped, - ACTIONS(6091), 1, - anon_sym_LPAREN, - STATE(2904), 1, - sym__reserved_identifier, - STATE(2929), 1, - sym_generic_name, - STATE(2937), 1, - sym_array_type, - STATE(2939), 1, - sym_type, - STATE(2944), 1, - sym_tuple_type, - STATE(3260), 1, - sym_identifier, - STATE(3534), 1, - sym__name, - STATE(7122), 1, - sym__array_base_type, - STATE(7545), 1, - sym__pointer_base_type, - STATE(2921), 3, - sym_alias_qualified_name, - sym__simple_name, - sym_qualified_name, - STATE(2935), 3, - sym_implicit_type, - sym_ref_type, - sym_scoped_type, - STATE(2961), 3, - sym_nullable_type, - sym_pointer_type, - sym_function_pointer_type, - STATE(3903), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - ACTIONS(3863), 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, - [508] = 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(2967), 1, - sym__identifier_token, - ACTIONS(2979), 1, - anon_sym_LPAREN, - ACTIONS(3001), 1, - sym_predefined_type, - ACTIONS(3454), 1, - anon_sym_delegate, - ACTIONS(4737), 1, - anon_sym_var, - ACTIONS(6103), 1, - anon_sym_ref, - ACTIONS(6107), 1, - anon_sym_scoped, - STATE(3691), 1, - sym__reserved_identifier, - STATE(4087), 1, - sym_identifier, - STATE(4109), 1, - sym_generic_name, - STATE(4292), 1, - sym_tuple_type, - STATE(4390), 1, - sym__name, - STATE(4404), 1, - sym_array_type, - STATE(7162), 1, - sym__array_base_type, - STATE(7413), 1, - sym__pointer_base_type, - STATE(7699), 1, - sym_type, - STATE(2347), 3, - sym_implicit_type, - sym_ref_type, - sym_scoped_type, - STATE(4096), 3, - sym_alias_qualified_name, - sym__simple_name, - sym_qualified_name, - STATE(4285), 3, - sym_nullable_type, - sym_pointer_type, - sym_function_pointer_type, - STATE(3904), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - ACTIONS(2971), 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, - [635] = 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(3861), 1, - sym__identifier_token, - ACTIONS(4203), 1, - anon_sym_ref, - ACTIONS(5791), 1, - anon_sym_delegate, - ACTIONS(5795), 1, - anon_sym_var, - ACTIONS(5797), 1, - sym_predefined_type, - ACTIONS(5868), 1, - anon_sym_scoped, - ACTIONS(6091), 1, - anon_sym_LPAREN, - STATE(2904), 1, - sym__reserved_identifier, - STATE(2929), 1, - sym_generic_name, - STATE(2937), 1, - sym_array_type, - STATE(2939), 1, - sym_type, - STATE(2944), 1, - sym_tuple_type, - STATE(3844), 1, - sym_identifier, - STATE(4108), 1, - sym__name, - STATE(7122), 1, - sym__array_base_type, - STATE(7545), 1, - sym__pointer_base_type, - STATE(2921), 3, - sym_alias_qualified_name, - sym__simple_name, - sym_qualified_name, - STATE(2935), 3, - sym_implicit_type, - sym_ref_type, - sym_scoped_type, - STATE(2961), 3, - sym_nullable_type, - sym_pointer_type, - sym_function_pointer_type, - STATE(3905), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - ACTIONS(3863), 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, - [762] = 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(2967), 1, - sym__identifier_token, - ACTIONS(2979), 1, - anon_sym_LPAREN, - ACTIONS(3001), 1, - sym_predefined_type, - ACTIONS(3454), 1, - anon_sym_delegate, - ACTIONS(6163), 1, - anon_sym_ref, - ACTIONS(6167), 1, - anon_sym_scoped, - ACTIONS(6169), 1, - anon_sym_var, - STATE(3691), 1, - sym__reserved_identifier, - STATE(4109), 1, - sym_generic_name, - STATE(4292), 1, - sym_tuple_type, - STATE(4404), 1, - sym_array_type, - STATE(6260), 1, - sym_identifier, - STATE(6284), 1, - sym__name, - STATE(6349), 1, - sym_type, - STATE(7162), 1, - sym__array_base_type, - STATE(7413), 1, - sym__pointer_base_type, - STATE(2347), 3, - sym_implicit_type, - sym_ref_type, - sym_scoped_type, - STATE(4096), 3, - sym_alias_qualified_name, - sym__simple_name, - sym_qualified_name, - STATE(4285), 3, - sym_nullable_type, - sym_pointer_type, - sym_function_pointer_type, - STATE(3906), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - ACTIONS(2971), 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, - [889] = 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(6225), 1, - anon_sym_into, - STATE(3923), 1, - aux_sym__query_body_repeat2, - STATE(3907), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - ACTIONS(6001), 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(5999), 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, - [984] = 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(2967), 1, - sym__identifier_token, - ACTIONS(2979), 1, - anon_sym_LPAREN, - ACTIONS(3001), 1, - sym_predefined_type, - ACTIONS(3454), 1, - anon_sym_delegate, - ACTIONS(4737), 1, - anon_sym_var, - ACTIONS(6103), 1, - anon_sym_ref, - ACTIONS(6107), 1, - anon_sym_scoped, - STATE(2343), 1, - sym_type, - STATE(3691), 1, - sym__reserved_identifier, - STATE(4087), 1, - sym_identifier, - STATE(4109), 1, - sym_generic_name, - STATE(4292), 1, - sym_tuple_type, - STATE(4390), 1, - sym__name, - STATE(4404), 1, - sym_array_type, - STATE(7162), 1, - sym__array_base_type, - STATE(7413), 1, - sym__pointer_base_type, - STATE(2347), 3, - sym_implicit_type, - sym_ref_type, - sym_scoped_type, - STATE(4096), 3, - sym_alias_qualified_name, - sym__simple_name, - sym_qualified_name, - STATE(4285), 3, - sym_nullable_type, - sym_pointer_type, - sym_function_pointer_type, - STATE(3908), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - ACTIONS(2971), 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, - [1111] = 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(3983), 1, - sym__identifier_token, - ACTIONS(3998), 1, - anon_sym_ref, - ACTIONS(5846), 1, - anon_sym_delegate, - ACTIONS(5850), 1, - anon_sym_var, - ACTIONS(5852), 1, - sym_predefined_type, - ACTIONS(5886), 1, - anon_sym_scoped, - ACTIONS(6063), 1, - anon_sym_LPAREN, - STATE(4215), 1, - sym_identifier, - STATE(4297), 1, - sym__reserved_identifier, - STATE(4403), 1, - sym_generic_name, - STATE(4465), 1, - sym_array_type, - STATE(4469), 1, - sym_tuple_type, - STATE(4478), 1, - sym__name, - STATE(4777), 1, - sym_type, - STATE(7155), 1, - sym__array_base_type, - STATE(7333), 1, - sym__pointer_base_type, - STATE(4374), 3, - sym_implicit_type, - sym_ref_type, - sym_scoped_type, - STATE(4464), 3, - sym_alias_qualified_name, - sym__simple_name, - sym_qualified_name, - STATE(4467), 3, - sym_nullable_type, - sym_pointer_type, - sym_function_pointer_type, - STATE(3909), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - ACTIONS(3985), 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, - [1238] = 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(4719), 1, - anon_sym_DASH_GT, - ACTIONS(4733), 1, - anon_sym_DOT, - ACTIONS(5624), 1, - anon_sym_LPAREN, - ACTIONS(5658), 1, - anon_sym_LBRACK, - ACTIONS(5666), 1, - anon_sym_BANG, - ACTIONS(5688), 1, - anon_sym_switch, - ACTIONS(5696), 1, - anon_sym_with, - ACTIONS(6231), 1, - anon_sym_SLASH, - ACTIONS(6235), 1, - anon_sym_GT_GT, - ACTIONS(6237), 1, - anon_sym_DOT_DOT, - STATE(2902), 1, - sym_bracketed_argument_list, - STATE(3886), 1, - sym_argument_list, - ACTIONS(5668), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6227), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(6229), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(6233), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - ACTIONS(5664), 6, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_as, - STATE(3910), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - ACTIONS(5660), 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, - anon_sym_orderby, - anon_sym_ascending, - anon_sym_descending, - anon_sym_group, - anon_sym_select, - anon_sym_is, - [1361] = 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(4719), 1, - anon_sym_DASH_GT, - ACTIONS(4733), 1, - anon_sym_DOT, - ACTIONS(5624), 1, - anon_sym_LPAREN, - ACTIONS(5658), 1, - anon_sym_LBRACK, - ACTIONS(5666), 1, - anon_sym_BANG, - ACTIONS(5688), 1, - anon_sym_switch, - ACTIONS(5696), 1, - anon_sym_with, - ACTIONS(6231), 1, - anon_sym_SLASH, - ACTIONS(6237), 1, - anon_sym_DOT_DOT, - STATE(2902), 1, - sym_bracketed_argument_list, - STATE(3886), 1, - sym_argument_list, - ACTIONS(5668), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6229), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(5664), 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(3911), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - ACTIONS(5660), 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, - 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, - [1478] = 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(4719), 1, - anon_sym_DASH_GT, - ACTIONS(4733), 1, - anon_sym_DOT, - ACTIONS(5624), 1, - anon_sym_LPAREN, - ACTIONS(5658), 1, - anon_sym_LBRACK, - ACTIONS(5666), 1, - anon_sym_BANG, - ACTIONS(5688), 1, - anon_sym_switch, - ACTIONS(5696), 1, - anon_sym_with, - ACTIONS(6237), 1, - anon_sym_DOT_DOT, - STATE(2902), 1, - sym_bracketed_argument_list, - STATE(3886), 1, - sym_argument_list, - ACTIONS(5668), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(3912), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - ACTIONS(5664), 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(5660), 23, - anon_sym_COMMA, - 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_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, - [1591] = 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(4719), 1, - anon_sym_DASH_GT, - ACTIONS(4733), 1, - anon_sym_DOT, - ACTIONS(5624), 1, - anon_sym_LPAREN, - ACTIONS(5658), 1, - anon_sym_LBRACK, - ACTIONS(5666), 1, - anon_sym_BANG, - ACTIONS(5688), 1, - anon_sym_switch, - ACTIONS(5696), 1, - anon_sym_with, - ACTIONS(5935), 1, - anon_sym_as, - ACTIONS(6231), 1, - anon_sym_SLASH, - ACTIONS(6235), 1, - anon_sym_GT_GT, - ACTIONS(6237), 1, - anon_sym_DOT_DOT, - ACTIONS(6241), 1, - anon_sym_AMP, - ACTIONS(6247), 1, - anon_sym_is, - STATE(2902), 1, - sym_bracketed_argument_list, - STATE(3886), 1, - sym_argument_list, - ACTIONS(5664), 2, - anon_sym_QMARK, - anon_sym_PIPE, - ACTIONS(5668), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6227), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(6229), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(6233), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - ACTIONS(6239), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(6243), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(6245), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - STATE(3913), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - ACTIONS(5660), 14, - anon_sym_COMMA, - 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_ascending, - anon_sym_descending, - anon_sym_group, - anon_sym_select, - [1726] = 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(4719), 1, - anon_sym_DASH_GT, - ACTIONS(4733), 1, - anon_sym_DOT, - ACTIONS(5624), 1, - anon_sym_LPAREN, - ACTIONS(5658), 1, - anon_sym_LBRACK, - ACTIONS(5666), 1, - anon_sym_BANG, - ACTIONS(5688), 1, - anon_sym_switch, - ACTIONS(5696), 1, - anon_sym_with, - ACTIONS(5935), 1, - anon_sym_as, - ACTIONS(6231), 1, - anon_sym_SLASH, - ACTIONS(6235), 1, - anon_sym_GT_GT, - ACTIONS(6237), 1, - anon_sym_DOT_DOT, - ACTIONS(6241), 1, - anon_sym_AMP, - ACTIONS(6247), 1, - anon_sym_is, - ACTIONS(6249), 1, - anon_sym_CARET, - STATE(2902), 1, - sym_bracketed_argument_list, - STATE(3886), 1, - sym_argument_list, - ACTIONS(5664), 2, - anon_sym_QMARK, - anon_sym_PIPE, - ACTIONS(5668), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6227), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(6229), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(6233), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - ACTIONS(6239), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(6243), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(6245), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - STATE(3914), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - ACTIONS(5660), 13, - 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, - anon_sym_orderby, - anon_sym_ascending, - anon_sym_descending, - anon_sym_group, - anon_sym_select, - [1863] = 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(4719), 1, - anon_sym_DASH_GT, - ACTIONS(4733), 1, - anon_sym_DOT, - ACTIONS(5624), 1, - anon_sym_LPAREN, - ACTIONS(5658), 1, - anon_sym_LBRACK, - ACTIONS(5666), 1, - anon_sym_BANG, - ACTIONS(5688), 1, - anon_sym_switch, - ACTIONS(5696), 1, - anon_sym_with, - ACTIONS(5935), 1, - anon_sym_as, - ACTIONS(6231), 1, - anon_sym_SLASH, - ACTIONS(6235), 1, - anon_sym_GT_GT, - ACTIONS(6237), 1, - anon_sym_DOT_DOT, - ACTIONS(6247), 1, - anon_sym_is, - STATE(2902), 1, - sym_bracketed_argument_list, - STATE(3886), 1, - sym_argument_list, - ACTIONS(5668), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6227), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(6229), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(6233), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - ACTIONS(6239), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(6243), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(6245), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(5664), 3, - anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_AMP, - STATE(3915), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - ACTIONS(5660), 14, - anon_sym_COMMA, - 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_ascending, - anon_sym_descending, - anon_sym_group, - anon_sym_select, - [1996] = 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(4719), 1, - anon_sym_DASH_GT, - ACTIONS(4733), 1, - anon_sym_DOT, - ACTIONS(5624), 1, - anon_sym_LPAREN, - ACTIONS(5658), 1, - anon_sym_LBRACK, - ACTIONS(5666), 1, - anon_sym_BANG, - ACTIONS(5688), 1, - anon_sym_switch, - ACTIONS(5696), 1, - anon_sym_with, - ACTIONS(6231), 1, - anon_sym_SLASH, - ACTIONS(6237), 1, - anon_sym_DOT_DOT, - STATE(2902), 1, - sym_bracketed_argument_list, - STATE(3886), 1, - sym_argument_list, - ACTIONS(5668), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6227), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(6229), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(5664), 7, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT_GT, - anon_sym_as, - STATE(3916), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - ACTIONS(5660), 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, - 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, - [2115] = 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(4719), 1, - anon_sym_DASH_GT, - ACTIONS(4733), 1, - anon_sym_DOT, - ACTIONS(5624), 1, - anon_sym_LPAREN, - ACTIONS(5658), 1, - anon_sym_LBRACK, - ACTIONS(5666), 1, - anon_sym_BANG, - ACTIONS(5688), 1, - anon_sym_switch, - ACTIONS(5696), 1, - anon_sym_with, - ACTIONS(5935), 1, - anon_sym_as, - ACTIONS(6231), 1, - anon_sym_SLASH, - ACTIONS(6235), 1, - anon_sym_GT_GT, - ACTIONS(6237), 1, - anon_sym_DOT_DOT, - ACTIONS(6247), 1, - anon_sym_is, - STATE(2902), 1, - sym_bracketed_argument_list, - STATE(3886), 1, - sym_argument_list, - ACTIONS(5668), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6227), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(6229), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(6233), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - ACTIONS(6239), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(6245), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(5664), 3, - anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_AMP, - STATE(3917), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - ACTIONS(5660), 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, - anon_sym_from, - anon_sym_join, - anon_sym_let, - anon_sym_orderby, - anon_sym_ascending, - anon_sym_descending, - anon_sym_group, - anon_sym_select, - [2246] = 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(4719), 1, - anon_sym_DASH_GT, - ACTIONS(4733), 1, - anon_sym_DOT, - ACTIONS(5624), 1, - anon_sym_LPAREN, - ACTIONS(5658), 1, - anon_sym_LBRACK, - ACTIONS(5664), 1, - anon_sym_QMARK, - ACTIONS(5666), 1, - anon_sym_BANG, - ACTIONS(5688), 1, - anon_sym_switch, - ACTIONS(5696), 1, - anon_sym_with, - ACTIONS(5935), 1, - anon_sym_as, - ACTIONS(6231), 1, - anon_sym_SLASH, - ACTIONS(6235), 1, - anon_sym_GT_GT, - ACTIONS(6237), 1, - anon_sym_DOT_DOT, - ACTIONS(6241), 1, - anon_sym_AMP, - ACTIONS(6247), 1, - anon_sym_is, - ACTIONS(6249), 1, - anon_sym_CARET, - ACTIONS(6251), 1, - anon_sym_PIPE, - STATE(2902), 1, - sym_bracketed_argument_list, - STATE(3886), 1, - sym_argument_list, - ACTIONS(5668), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6227), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(6229), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(6233), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - ACTIONS(6239), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(6243), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(6245), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - STATE(3918), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - ACTIONS(5660), 13, - 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, - anon_sym_orderby, - anon_sym_ascending, - anon_sym_descending, - anon_sym_group, - anon_sym_select, - [2385] = 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(4719), 1, - anon_sym_DASH_GT, - ACTIONS(4733), 1, - anon_sym_DOT, - ACTIONS(5624), 1, - anon_sym_LPAREN, - ACTIONS(5658), 1, - anon_sym_LBRACK, - ACTIONS(5664), 1, - anon_sym_QMARK, - ACTIONS(5666), 1, - anon_sym_BANG, - ACTIONS(5688), 1, - anon_sym_switch, - ACTIONS(5696), 1, - anon_sym_with, - ACTIONS(5935), 1, - anon_sym_as, - ACTIONS(6231), 1, - anon_sym_SLASH, - ACTIONS(6235), 1, - anon_sym_GT_GT, - ACTIONS(6237), 1, - anon_sym_DOT_DOT, - ACTIONS(6241), 1, - anon_sym_AMP, - ACTIONS(6247), 1, - anon_sym_is, - ACTIONS(6249), 1, - anon_sym_CARET, - ACTIONS(6251), 1, - anon_sym_PIPE, - ACTIONS(6253), 1, - anon_sym_AMP_AMP, - STATE(2902), 1, - sym_bracketed_argument_list, - STATE(3886), 1, - sym_argument_list, - ACTIONS(5668), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6227), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(6229), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(6233), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - ACTIONS(6239), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(6243), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(6245), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - STATE(3919), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - ACTIONS(5660), 12, - anon_sym_COMMA, - 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_ascending, - anon_sym_descending, - anon_sym_group, - anon_sym_select, - [2526] = 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(4719), 1, - anon_sym_DASH_GT, - ACTIONS(4733), 1, - anon_sym_DOT, - ACTIONS(5624), 1, - anon_sym_LPAREN, - ACTIONS(5658), 1, - anon_sym_LBRACK, - ACTIONS(5664), 1, - anon_sym_QMARK, - ACTIONS(5666), 1, - anon_sym_BANG, - ACTIONS(5688), 1, - anon_sym_switch, - ACTIONS(5696), 1, - anon_sym_with, - ACTIONS(5935), 1, - anon_sym_as, - ACTIONS(6231), 1, - anon_sym_SLASH, - ACTIONS(6235), 1, - anon_sym_GT_GT, - ACTIONS(6237), 1, - anon_sym_DOT_DOT, - ACTIONS(6241), 1, - anon_sym_AMP, - ACTIONS(6247), 1, - anon_sym_is, - ACTIONS(6249), 1, - anon_sym_CARET, - ACTIONS(6251), 1, - anon_sym_PIPE, - ACTIONS(6253), 1, - anon_sym_AMP_AMP, - ACTIONS(6255), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6257), 1, - anon_sym_QMARK_QMARK, - STATE(2902), 1, - sym_bracketed_argument_list, - STATE(3886), 1, - sym_argument_list, - ACTIONS(5668), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6227), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(6229), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(6233), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - ACTIONS(6239), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(6243), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(6245), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - STATE(3920), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - ACTIONS(5660), 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, - [2671] = 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(6259), 1, - anon_sym_into, - STATE(3981), 1, - aux_sym__query_body_repeat2, - STATE(3921), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - ACTIONS(6005), 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(6003), 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, - [2766] = 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(3861), 1, - sym__identifier_token, - ACTIONS(4225), 1, - anon_sym_ref, - ACTIONS(5791), 1, - anon_sym_delegate, - ACTIONS(5795), 1, - anon_sym_var, - ACTIONS(5797), 1, - sym_predefined_type, - ACTIONS(5897), 1, - anon_sym_scoped, - ACTIONS(6091), 1, - anon_sym_LPAREN, - STATE(2904), 1, - sym__reserved_identifier, - STATE(2929), 1, - sym_generic_name, - STATE(2937), 1, - sym_array_type, - STATE(2939), 1, - sym_type, - STATE(2944), 1, - sym_tuple_type, - STATE(3260), 1, - sym_identifier, - STATE(3534), 1, - sym__name, - STATE(7122), 1, - sym__array_base_type, - STATE(7545), 1, - sym__pointer_base_type, - STATE(2921), 3, - sym_alias_qualified_name, - sym__simple_name, - sym_qualified_name, - STATE(2935), 3, - sym_implicit_type, - sym_ref_type, - sym_scoped_type, - STATE(2961), 3, - sym_nullable_type, - sym_pointer_type, - sym_function_pointer_type, - STATE(3922), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - ACTIONS(3863), 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, - [2893] = 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(6225), 1, - anon_sym_into, - STATE(3927), 1, - aux_sym__query_body_repeat2, - STATE(3923), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - ACTIONS(6005), 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(6003), 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, - [2988] = 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(6225), 1, - anon_sym_into, - STATE(3928), 1, - aux_sym__query_body_repeat2, - STATE(3924), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - ACTIONS(6005), 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(6003), 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, - [3083] = 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(2967), 1, - sym__identifier_token, - ACTIONS(2979), 1, - anon_sym_LPAREN, - ACTIONS(3001), 1, - sym_predefined_type, - ACTIONS(3454), 1, - anon_sym_delegate, - ACTIONS(4737), 1, - anon_sym_var, - ACTIONS(6103), 1, - anon_sym_ref, - ACTIONS(6107), 1, - anon_sym_scoped, - STATE(3691), 1, - sym__reserved_identifier, - STATE(4087), 1, - sym_identifier, - STATE(4109), 1, - sym_generic_name, - STATE(4292), 1, - sym_tuple_type, - STATE(4390), 1, - sym__name, - STATE(4404), 1, - sym_array_type, - STATE(7162), 1, - sym__array_base_type, - STATE(7413), 1, - sym__pointer_base_type, - STATE(7488), 1, - sym_type, - STATE(2347), 3, - sym_implicit_type, - sym_ref_type, - sym_scoped_type, - STATE(4096), 3, - sym_alias_qualified_name, - sym__simple_name, - sym_qualified_name, - STATE(4285), 3, - sym_nullable_type, - sym_pointer_type, - sym_function_pointer_type, - STATE(3925), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - ACTIONS(2971), 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, - [3210] = 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(2967), 1, - sym__identifier_token, - ACTIONS(2979), 1, - anon_sym_LPAREN, - ACTIONS(3001), 1, - sym_predefined_type, - ACTIONS(3454), 1, - anon_sym_delegate, - ACTIONS(6163), 1, - anon_sym_ref, - ACTIONS(6167), 1, - anon_sym_scoped, - ACTIONS(6169), 1, - anon_sym_var, - STATE(2343), 1, - sym_type, - STATE(3691), 1, - sym__reserved_identifier, - STATE(4109), 1, - sym_generic_name, - STATE(4292), 1, - sym_tuple_type, - STATE(4404), 1, - sym_array_type, - STATE(6260), 1, - sym_identifier, - STATE(6284), 1, - sym__name, - STATE(7162), 1, - sym__array_base_type, - STATE(7413), 1, - sym__pointer_base_type, - STATE(2347), 3, - sym_implicit_type, - sym_ref_type, - sym_scoped_type, - STATE(4096), 3, - sym_alias_qualified_name, - sym__simple_name, - sym_qualified_name, - STATE(4285), 3, - sym_nullable_type, - sym_pointer_type, - sym_function_pointer_type, - STATE(3926), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - ACTIONS(2971), 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, - [3337] = 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(6261), 1, - anon_sym_into, - STATE(3927), 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(5951), 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(5949), 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, - [3430] = 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(6225), 1, - anon_sym_into, - STATE(3927), 1, - aux_sym__query_body_repeat2, - STATE(3928), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - ACTIONS(5960), 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(5958), 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, - [3525] = 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(3788), 1, - sym__identifier_token, - ACTIONS(3792), 1, - anon_sym_ref, - ACTIONS(5818), 1, - anon_sym_delegate, - ACTIONS(5820), 1, - anon_sym_scoped, - ACTIONS(5822), 1, - anon_sym_var, - ACTIONS(5824), 1, - sym_predefined_type, - ACTIONS(6059), 1, - anon_sym_LPAREN, - STATE(3167), 1, - sym_identifier, - STATE(3225), 1, - sym__reserved_identifier, - STATE(3246), 1, - sym_generic_name, - STATE(3255), 1, - sym_array_type, - STATE(3258), 1, - sym_tuple_type, - STATE(3360), 1, - sym_type, - STATE(3453), 1, - sym__name, - STATE(7101), 1, - sym__array_base_type, - STATE(7546), 1, - sym__pointer_base_type, - STATE(3251), 3, - sym_alias_qualified_name, - sym__simple_name, - sym_qualified_name, - STATE(3253), 3, - sym_implicit_type, - sym_ref_type, - sym_scoped_type, - STATE(3257), 3, - sym_nullable_type, - sym_pointer_type, - sym_function_pointer_type, - STATE(3929), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - ACTIONS(3790), 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, - [3652] = 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(3887), 1, - sym__identifier_token, - ACTIONS(3891), 1, - anon_sym_ref, - ACTIONS(4042), 1, - anon_sym_delegate, - ACTIONS(4044), 1, - anon_sym_scoped, - ACTIONS(4046), 1, - anon_sym_var, - ACTIONS(4048), 1, - sym_predefined_type, - ACTIONS(6051), 1, - anon_sym_LPAREN, - STATE(2923), 1, - sym_identifier, - STATE(2945), 1, - sym__reserved_identifier, - STATE(2985), 1, - sym_generic_name, - STATE(2992), 1, - sym_array_type, - STATE(3058), 1, - sym_tuple_type, - STATE(3072), 1, - sym__name, - STATE(3106), 1, - sym_type, - STATE(7267), 1, - sym__array_base_type, - STATE(7693), 1, - sym__pointer_base_type, - STATE(3012), 3, - sym_nullable_type, - sym_pointer_type, - sym_function_pointer_type, - STATE(3029), 3, - sym_alias_qualified_name, - sym__simple_name, - sym_qualified_name, - STATE(3054), 3, - sym_implicit_type, - sym_ref_type, - sym_scoped_type, - STATE(3930), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - ACTIONS(3889), 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, - [3779] = 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(2967), 1, - sym__identifier_token, - ACTIONS(2979), 1, - anon_sym_LPAREN, - ACTIONS(3001), 1, - sym_predefined_type, - ACTIONS(3454), 1, - anon_sym_delegate, - ACTIONS(6073), 1, - anon_sym_ref, - ACTIONS(6077), 1, - anon_sym_scoped, - ACTIONS(6079), 1, - anon_sym_var, - STATE(3691), 1, - sym__reserved_identifier, - STATE(4087), 1, - sym_identifier, - STATE(4109), 1, - sym_generic_name, - STATE(4292), 1, - sym_tuple_type, - STATE(4390), 1, - sym__name, - STATE(4404), 1, - sym_array_type, - STATE(7162), 1, - sym__array_base_type, - STATE(7413), 1, - sym__pointer_base_type, - STATE(7633), 1, - sym_type, - STATE(2347), 3, - sym_implicit_type, - sym_ref_type, - sym_scoped_type, - STATE(4096), 3, - sym_alias_qualified_name, - sym__simple_name, - sym_qualified_name, - STATE(4285), 3, - sym_nullable_type, - sym_pointer_type, - sym_function_pointer_type, - STATE(3931), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - ACTIONS(2971), 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, - [3906] = 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(3773), 1, - sym__identifier_token, - ACTIONS(3777), 1, - anon_sym_ref, - ACTIONS(5706), 1, - anon_sym_delegate, - ACTIONS(5710), 1, - anon_sym_var, - ACTIONS(5712), 1, - sym_predefined_type, - ACTIONS(5888), 1, - anon_sym_scoped, - ACTIONS(6171), 1, - anon_sym_LPAREN, - STATE(3129), 1, - sym_identifier, - STATE(3149), 1, - sym__reserved_identifier, - STATE(3156), 1, - sym_generic_name, - STATE(3181), 1, - sym_type, - STATE(3206), 1, - sym_array_type, - STATE(3209), 1, - sym_tuple_type, - STATE(3219), 1, - sym__name, - STATE(7259), 1, - sym__array_base_type, - STATE(7662), 1, - sym__pointer_base_type, - STATE(3151), 3, - sym_nullable_type, - sym_pointer_type, - sym_function_pointer_type, - STATE(3200), 3, - sym_alias_qualified_name, - sym__simple_name, - sym_qualified_name, - STATE(3205), 3, - sym_implicit_type, - sym_ref_type, - sym_scoped_type, - STATE(3932), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - ACTIONS(3775), 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, - [4033] = 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(3887), 1, - sym__identifier_token, - ACTIONS(4042), 1, - anon_sym_delegate, - ACTIONS(4046), 1, - anon_sym_var, - ACTIONS(4048), 1, - sym_predefined_type, - ACTIONS(4168), 1, - anon_sym_ref, - ACTIONS(5729), 1, - anon_sym_scoped, - ACTIONS(6051), 1, - anon_sym_LPAREN, - STATE(2923), 1, - sym_identifier, - STATE(2945), 1, - sym__reserved_identifier, - STATE(2985), 1, - sym_generic_name, - STATE(2992), 1, - sym_array_type, - STATE(3058), 1, - sym_tuple_type, - STATE(3072), 1, - sym__name, - STATE(3106), 1, - sym_type, - STATE(7267), 1, - sym__array_base_type, - STATE(7693), 1, - sym__pointer_base_type, - STATE(3012), 3, - sym_nullable_type, - sym_pointer_type, - sym_function_pointer_type, - STATE(3029), 3, - sym_alias_qualified_name, - sym__simple_name, - sym_qualified_name, - STATE(3054), 3, - sym_implicit_type, - sym_ref_type, - sym_scoped_type, - STATE(3933), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - ACTIONS(3889), 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, - [4160] = 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(2967), 1, - sym__identifier_token, - ACTIONS(2979), 1, - anon_sym_LPAREN, - ACTIONS(3001), 1, - sym_predefined_type, - ACTIONS(3454), 1, - anon_sym_delegate, - ACTIONS(3606), 1, - anon_sym_ref, - ACTIONS(4737), 1, - anon_sym_var, - ACTIONS(5737), 1, - anon_sym_scoped, - STATE(2343), 1, - sym_type, - STATE(3691), 1, - sym__reserved_identifier, - STATE(4087), 1, - sym_identifier, - STATE(4109), 1, - sym_generic_name, - STATE(4292), 1, - sym_tuple_type, - STATE(4390), 1, - sym__name, - STATE(4404), 1, - sym_array_type, - STATE(7162), 1, - sym__array_base_type, - STATE(7413), 1, - sym__pointer_base_type, - STATE(2347), 3, - sym_implicit_type, - sym_ref_type, - sym_scoped_type, - STATE(4096), 3, - sym_alias_qualified_name, - sym__simple_name, - sym_qualified_name, - STATE(4285), 3, - sym_nullable_type, - sym_pointer_type, - sym_function_pointer_type, - STATE(3934), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - ACTIONS(2971), 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, - [4287] = 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(2967), 1, - sym__identifier_token, - ACTIONS(2979), 1, - anon_sym_LPAREN, - ACTIONS(3001), 1, - sym_predefined_type, - ACTIONS(3454), 1, - anon_sym_delegate, - ACTIONS(4737), 1, - anon_sym_var, - ACTIONS(5530), 1, - anon_sym_ref, - ACTIONS(5538), 1, - anon_sym_scoped, - STATE(2343), 1, - sym_type, - STATE(3691), 1, - sym__reserved_identifier, - STATE(4087), 1, - sym_identifier, - STATE(4109), 1, - sym_generic_name, - STATE(4292), 1, - sym_tuple_type, - STATE(4390), 1, - sym__name, - STATE(4404), 1, - sym_array_type, - STATE(7162), 1, - sym__array_base_type, - STATE(7413), 1, - sym__pointer_base_type, - STATE(2347), 3, - sym_implicit_type, - sym_ref_type, - sym_scoped_type, - STATE(4096), 3, - sym_alias_qualified_name, - sym__simple_name, - sym_qualified_name, - STATE(4285), 3, - sym_nullable_type, - sym_pointer_type, - sym_function_pointer_type, - STATE(3935), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - ACTIONS(2971), 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, - [4414] = 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(2967), 1, - sym__identifier_token, - ACTIONS(2979), 1, - anon_sym_LPAREN, - ACTIONS(2997), 1, - anon_sym_scoped, - ACTIONS(2999), 1, - anon_sym_var, - ACTIONS(3001), 1, - sym_predefined_type, - ACTIONS(3452), 1, - anon_sym_ref, - ACTIONS(3454), 1, - anon_sym_delegate, - STATE(3691), 1, - sym__reserved_identifier, - STATE(4109), 1, - sym_generic_name, - STATE(4292), 1, - sym_tuple_type, - STATE(4390), 1, - sym__name, - STATE(4404), 1, - sym_array_type, - STATE(5789), 1, - sym_identifier, - STATE(6080), 1, - sym_type, - STATE(7162), 1, - sym__array_base_type, - STATE(7413), 1, - sym__pointer_base_type, - STATE(2347), 3, - sym_implicit_type, - sym_ref_type, - sym_scoped_type, - STATE(4096), 3, - sym_alias_qualified_name, - sym__simple_name, - sym_qualified_name, - STATE(4285), 3, - sym_nullable_type, - sym_pointer_type, - sym_function_pointer_type, - STATE(3936), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - ACTIONS(2971), 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, - [4541] = 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(3983), 1, - sym__identifier_token, - ACTIONS(3998), 1, - anon_sym_ref, - ACTIONS(5846), 1, - anon_sym_delegate, - ACTIONS(5850), 1, - anon_sym_var, - ACTIONS(5852), 1, - sym_predefined_type, - ACTIONS(5886), 1, - anon_sym_scoped, - ACTIONS(6063), 1, - anon_sym_LPAREN, - STATE(4215), 1, - sym_identifier, - STATE(4297), 1, - sym__reserved_identifier, - STATE(4403), 1, - sym_generic_name, - STATE(4417), 1, - sym_type, - STATE(4465), 1, - sym_array_type, - STATE(4469), 1, - sym_tuple_type, - STATE(4478), 1, - sym__name, - STATE(7155), 1, - sym__array_base_type, - STATE(7333), 1, - sym__pointer_base_type, - STATE(4374), 3, - sym_implicit_type, - sym_ref_type, - sym_scoped_type, - STATE(4464), 3, - sym_alias_qualified_name, - sym__simple_name, - sym_qualified_name, - STATE(4467), 3, - sym_nullable_type, - sym_pointer_type, - sym_function_pointer_type, - STATE(3937), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - ACTIONS(3985), 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, - [4668] = 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(3788), 1, - sym__identifier_token, - ACTIONS(4028), 1, - anon_sym_ref, - ACTIONS(5818), 1, - anon_sym_delegate, - ACTIONS(5822), 1, - anon_sym_var, - ACTIONS(5824), 1, - sym_predefined_type, - ACTIONS(5895), 1, - anon_sym_scoped, - ACTIONS(6059), 1, - anon_sym_LPAREN, - STATE(3167), 1, - sym_identifier, - STATE(3225), 1, - sym__reserved_identifier, - STATE(3246), 1, - sym_generic_name, - STATE(3255), 1, - sym_array_type, - STATE(3258), 1, - sym_tuple_type, - STATE(3360), 1, - sym_type, - STATE(3453), 1, - sym__name, - STATE(7101), 1, - sym__array_base_type, - STATE(7546), 1, - sym__pointer_base_type, - STATE(3251), 3, - sym_alias_qualified_name, - sym__simple_name, - sym_qualified_name, - STATE(3253), 3, - sym_implicit_type, - sym_ref_type, - sym_scoped_type, - STATE(3257), 3, - sym_nullable_type, - sym_pointer_type, - sym_function_pointer_type, - STATE(3938), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - ACTIONS(3790), 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, - [4795] = 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(3788), 1, - sym__identifier_token, - ACTIONS(3792), 1, - anon_sym_ref, - ACTIONS(5818), 1, - anon_sym_delegate, - ACTIONS(5820), 1, - anon_sym_scoped, - ACTIONS(5822), 1, - anon_sym_var, - ACTIONS(5824), 1, - sym_predefined_type, - ACTIONS(6059), 1, - anon_sym_LPAREN, - STATE(3167), 1, - sym_identifier, - STATE(3225), 1, - sym__reserved_identifier, - STATE(3246), 1, - sym_generic_name, - STATE(3255), 1, - sym_array_type, - STATE(3258), 1, - sym_tuple_type, - STATE(3274), 1, - sym_type, - STATE(3453), 1, - sym__name, - STATE(7101), 1, - sym__array_base_type, - STATE(7546), 1, - sym__pointer_base_type, - STATE(3251), 3, - sym_alias_qualified_name, - sym__simple_name, - sym_qualified_name, - STATE(3253), 3, - sym_implicit_type, - sym_ref_type, - sym_scoped_type, - STATE(3257), 3, - sym_nullable_type, - sym_pointer_type, - sym_function_pointer_type, - STATE(3939), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - ACTIONS(3790), 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, - [4922] = 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(3788), 1, - sym__identifier_token, - ACTIONS(4158), 1, - anon_sym_ref, - ACTIONS(5818), 1, - anon_sym_delegate, - ACTIONS(5822), 1, - anon_sym_var, - ACTIONS(5824), 1, - sym_predefined_type, - ACTIONS(5838), 1, - anon_sym_scoped, - ACTIONS(6059), 1, - anon_sym_LPAREN, - STATE(3167), 1, - sym_identifier, - STATE(3225), 1, - sym__reserved_identifier, - STATE(3246), 1, - sym_generic_name, - STATE(3255), 1, - sym_array_type, - STATE(3258), 1, - sym_tuple_type, - STATE(3274), 1, - sym_type, - STATE(3453), 1, - sym__name, - STATE(7101), 1, - sym__array_base_type, - STATE(7546), 1, - sym__pointer_base_type, - STATE(3251), 3, - sym_alias_qualified_name, - sym__simple_name, - sym_qualified_name, - STATE(3253), 3, - sym_implicit_type, - sym_ref_type, - sym_scoped_type, - STATE(3257), 3, - sym_nullable_type, - sym_pointer_type, - sym_function_pointer_type, - STATE(3940), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - ACTIONS(3790), 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, - [5049] = 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(2967), 1, - sym__identifier_token, - ACTIONS(2979), 1, - anon_sym_LPAREN, - ACTIONS(3001), 1, - sym_predefined_type, - ACTIONS(3454), 1, - anon_sym_delegate, - ACTIONS(6163), 1, - anon_sym_ref, - ACTIONS(6167), 1, - anon_sym_scoped, - ACTIONS(6169), 1, - anon_sym_var, - STATE(3691), 1, - sym__reserved_identifier, - STATE(4109), 1, - sym_generic_name, - STATE(4292), 1, - sym_tuple_type, - STATE(4404), 1, - sym_array_type, - STATE(6260), 1, - sym_identifier, - STATE(6284), 1, - sym__name, - STATE(6332), 1, - sym_type, - STATE(7162), 1, - sym__array_base_type, - STATE(7413), 1, - sym__pointer_base_type, - STATE(2347), 3, - sym_implicit_type, - sym_ref_type, - sym_scoped_type, - STATE(4096), 3, - sym_alias_qualified_name, - sym__simple_name, - sym_qualified_name, - STATE(4285), 3, - sym_nullable_type, - sym_pointer_type, - sym_function_pointer_type, - STATE(3941), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - ACTIONS(2971), 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, - [5176] = 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(3454), 1, - anon_sym_delegate, - ACTIONS(3587), 1, - anon_sym_ref, - ACTIONS(4058), 1, - sym__identifier_token, - ACTIONS(5638), 1, - anon_sym_var, - ACTIONS(5640), 1, - sym_predefined_type, - ACTIONS(6055), 1, - anon_sym_LPAREN, - ACTIONS(6081), 1, - anon_sym_scoped, - STATE(2343), 1, - sym_type, - STATE(2359), 1, - sym_identifier, - STATE(2361), 1, - sym__reserved_identifier, - STATE(2378), 1, - sym_array_type, - STATE(2380), 1, - sym_tuple_type, - STATE(2389), 1, - sym_generic_name, - STATE(2419), 1, - sym__name, - STATE(7103), 1, - sym__array_base_type, - STATE(7413), 1, - sym__pointer_base_type, - STATE(2347), 3, - sym_implicit_type, - sym_ref_type, - sym_scoped_type, - STATE(2373), 3, - sym_alias_qualified_name, - sym__simple_name, - sym_qualified_name, - STATE(2379), 3, - sym_nullable_type, - sym_pointer_type, - sym_function_pointer_type, - STATE(3942), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - ACTIONS(4060), 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, - [5303] = 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(2967), 1, - sym__identifier_token, - ACTIONS(2979), 1, - anon_sym_LPAREN, - ACTIONS(2999), 1, - anon_sym_var, - ACTIONS(5030), 1, - anon_sym_delegate, - ACTIONS(5038), 1, - sym_predefined_type, - ACTIONS(5476), 1, - anon_sym_scoped, - ACTIONS(6013), 1, - anon_sym_ref, - STATE(3691), 1, - sym__reserved_identifier, - STATE(4087), 1, - sym_identifier, - STATE(4109), 1, - sym_generic_name, - STATE(6450), 1, - sym__name, - STATE(6579), 1, - sym_tuple_type, - STATE(6694), 1, - sym_array_type, - STATE(7110), 1, - sym_type, - STATE(7162), 1, - sym__array_base_type, - STATE(7446), 1, - sym__pointer_base_type, - STATE(4096), 3, - sym_alias_qualified_name, - sym__simple_name, - sym_qualified_name, - STATE(4285), 3, - sym_nullable_type, - sym_pointer_type, - sym_function_pointer_type, - STATE(7266), 3, - sym_implicit_type, - sym_ref_type, - sym_scoped_type, - STATE(3943), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - ACTIONS(2971), 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, - [5430] = 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(3861), 1, - sym__identifier_token, - ACTIONS(4203), 1, - anon_sym_ref, - ACTIONS(5791), 1, - anon_sym_delegate, - ACTIONS(5795), 1, - anon_sym_var, - ACTIONS(5797), 1, - sym_predefined_type, - ACTIONS(5868), 1, - anon_sym_scoped, - ACTIONS(6091), 1, - anon_sym_LPAREN, - STATE(2904), 1, - sym__reserved_identifier, - STATE(2929), 1, - sym_generic_name, - STATE(2937), 1, - sym_array_type, - STATE(2944), 1, - sym_tuple_type, - STATE(2962), 1, - sym_type, - STATE(3844), 1, - sym_identifier, - STATE(4108), 1, - sym__name, - STATE(7122), 1, - sym__array_base_type, - STATE(7545), 1, - sym__pointer_base_type, - STATE(2921), 3, - sym_alias_qualified_name, - sym__simple_name, - sym_qualified_name, - STATE(2935), 3, - sym_implicit_type, - sym_ref_type, - sym_scoped_type, - STATE(2961), 3, - sym_nullable_type, - sym_pointer_type, - sym_function_pointer_type, - STATE(3944), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - ACTIONS(3863), 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, - [5557] = 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(3454), 1, - anon_sym_delegate, - ACTIONS(4058), 1, - sym__identifier_token, - ACTIONS(4062), 1, - anon_sym_ref, - ACTIONS(5636), 1, - anon_sym_scoped, - ACTIONS(5638), 1, - anon_sym_var, - ACTIONS(5640), 1, - sym_predefined_type, - ACTIONS(6055), 1, - anon_sym_LPAREN, - STATE(2359), 1, - sym_identifier, - STATE(2361), 1, - sym__reserved_identifier, - STATE(2378), 1, - sym_array_type, - STATE(2380), 1, - sym_tuple_type, - STATE(2389), 1, - sym_generic_name, - STATE(2419), 1, - sym__name, - STATE(3699), 1, - sym_type, - STATE(7103), 1, - sym__array_base_type, - STATE(7413), 1, - sym__pointer_base_type, - STATE(2347), 3, - sym_implicit_type, - sym_ref_type, - sym_scoped_type, - STATE(2373), 3, - sym_alias_qualified_name, - sym__simple_name, - sym_qualified_name, - STATE(2379), 3, - sym_nullable_type, - sym_pointer_type, - sym_function_pointer_type, - STATE(3945), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - ACTIONS(4060), 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, - [5684] = 31, + [sym_preproc_warning] = STATE(3886), + [sym_preproc_define] = STATE(3886), + [sym_preproc_undef] = STATE(3886), + [anon_sym_SEMI] = ACTIONS(5737), + [anon_sym_LBRACK] = ACTIONS(5236), + [anon_sym_COMMA] = ACTIONS(5737), + [anon_sym_RBRACK] = ACTIONS(5737), + [anon_sym_LPAREN] = ACTIONS(5227), + [anon_sym_RPAREN] = ACTIONS(5737), + [anon_sym_RBRACE] = ACTIONS(5737), + [anon_sym_LT] = ACTIONS(5993), + [anon_sym_GT] = ACTIONS(5993), + [anon_sym_QMARK] = ACTIONS(5739), + [anon_sym_BANG] = ACTIONS(5238), + [anon_sym_PLUS_PLUS] = ACTIONS(5240), + [anon_sym_DASH_DASH] = ACTIONS(5240), + [anon_sym_PLUS] = ACTIONS(5997), + [anon_sym_DASH] = ACTIONS(5997), + [anon_sym_STAR] = ACTIONS(5999), + [anon_sym_SLASH] = ACTIONS(6001), + [anon_sym_PERCENT] = ACTIONS(5999), + [anon_sym_CARET] = ACTIONS(6003), + [anon_sym_PIPE] = ACTIONS(6005), + [anon_sym_AMP] = ACTIONS(6007), + [anon_sym_LT_LT] = ACTIONS(6009), + [anon_sym_GT_GT] = ACTIONS(6011), + [anon_sym_GT_GT_GT] = ACTIONS(6009), + [anon_sym_EQ_EQ] = ACTIONS(6013), + [anon_sym_BANG_EQ] = ACTIONS(6013), + [anon_sym_GT_EQ] = ACTIONS(6015), + [anon_sym_LT_EQ] = ACTIONS(6015), + [anon_sym_DOT] = ACTIONS(4092), + [anon_sym_switch] = ACTIONS(6017), + [anon_sym_DOT_DOT] = ACTIONS(6019), + [anon_sym_and] = ACTIONS(5737), + [anon_sym_or] = ACTIONS(5737), + [anon_sym_AMP_AMP] = ACTIONS(6021), + [anon_sym_PIPE_PIPE] = ACTIONS(6023), + [anon_sym_QMARK_QMARK] = ACTIONS(6025), + [anon_sym_into] = ACTIONS(5737), + [anon_sym_as] = ACTIONS(6027), + [anon_sym_is] = ACTIONS(6029), + [anon_sym_DASH_GT] = ACTIONS(4094), + [anon_sym_with] = ACTIONS(6031), + [aux_sym_preproc_if_token3] = ACTIONS(5737), + [aux_sym_preproc_else_token1] = ACTIONS(5737), + [aux_sym_preproc_elif_token1] = ACTIONS(5737), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + }, + [3887] = { + [sym__name] = STATE(3086), + [sym_alias_qualified_name] = STATE(2976), + [sym__simple_name] = STATE(2976), + [sym_qualified_name] = STATE(2976), + [sym_generic_name] = STATE(3030), + [sym_type] = STATE(3039), + [sym_implicit_type] = STATE(2977), + [sym_array_type] = STATE(2978), + [sym__array_base_type] = STATE(7236), + [sym_nullable_type] = STATE(2979), + [sym_pointer_type] = STATE(2979), + [sym__pointer_base_type] = STATE(7622), + [sym_function_pointer_type] = STATE(2979), + [sym_ref_type] = STATE(2977), + [sym_scoped_type] = STATE(2977), + [sym_tuple_type] = STATE(2980), + [sym_identifier] = STATE(2927), + [sym__reserved_identifier] = STATE(2916), + [sym_preproc_region] = STATE(3887), + [sym_preproc_endregion] = STATE(3887), + [sym_preproc_line] = STATE(3887), + [sym_preproc_pragma] = STATE(3887), + [sym_preproc_nullable] = STATE(3887), + [sym_preproc_error] = STATE(3887), + [sym_preproc_warning] = STATE(3887), + [sym_preproc_define] = STATE(3887), + [sym_preproc_undef] = STATE(3887), + [sym__identifier_token] = ACTIONS(3871), + [anon_sym_alias] = ACTIONS(3873), + [anon_sym_global] = ACTIONS(3873), + [anon_sym_LPAREN] = ACTIONS(6033), + [anon_sym_ref] = ACTIONS(4160), + [anon_sym_delegate] = ACTIONS(4015), + [anon_sym_file] = ACTIONS(3873), + [anon_sym_readonly] = ACTIONS(6199), + [anon_sym_where] = ACTIONS(3873), + [anon_sym_notnull] = ACTIONS(3873), + [anon_sym_unmanaged] = ACTIONS(3873), + [anon_sym_scoped] = ACTIONS(5610), + [anon_sym_var] = ACTIONS(4019), + [sym_predefined_type] = ACTIONS(4021), + [anon_sym_yield] = ACTIONS(3873), + [anon_sym_when] = ACTIONS(3873), + [anon_sym_from] = ACTIONS(3873), + [anon_sym_into] = ACTIONS(3873), + [anon_sym_join] = ACTIONS(3873), + [anon_sym_on] = ACTIONS(3873), + [anon_sym_equals] = ACTIONS(3873), + [anon_sym_let] = ACTIONS(3873), + [anon_sym_orderby] = ACTIONS(3873), + [anon_sym_ascending] = ACTIONS(3873), + [anon_sym_descending] = ACTIONS(3873), + [anon_sym_group] = ACTIONS(3873), + [anon_sym_by] = ACTIONS(3873), + [anon_sym_select] = ACTIONS(3873), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + }, + [3888] = { + [sym__name] = STATE(5130), + [sym_alias_qualified_name] = STATE(4068), + [sym__simple_name] = STATE(4068), + [sym_qualified_name] = STATE(4068), + [sym_generic_name] = STATE(2170), + [sym_ref_type] = STATE(2331), + [sym__scoped_base_type] = STATE(2339), + [sym_identifier] = STATE(4370), + [sym__reserved_identifier] = STATE(2168), + [sym_preproc_region] = STATE(3888), + [sym_preproc_endregion] = STATE(3888), + [sym_preproc_line] = STATE(3888), + [sym_preproc_pragma] = STATE(3888), + [sym_preproc_nullable] = STATE(3888), + [sym_preproc_error] = STATE(3888), + [sym_preproc_warning] = STATE(3888), + [sym_preproc_define] = STATE(3888), + [sym_preproc_undef] = STATE(3888), + [sym__identifier_token] = ACTIONS(3584), + [anon_sym_alias] = ACTIONS(3587), + [anon_sym_global] = ACTIONS(3587), + [anon_sym_LBRACK] = ACTIONS(3429), + [anon_sym_COMMA] = ACTIONS(3429), + [anon_sym_LPAREN] = ACTIONS(3429), + [anon_sym_RPAREN] = ACTIONS(3429), + [anon_sym_ref] = ACTIONS(3624), + [anon_sym_LBRACE] = ACTIONS(3429), + [anon_sym_file] = ACTIONS(3587), + [anon_sym_LT] = ACTIONS(3429), + [anon_sym_where] = ACTIONS(3587), + [anon_sym_QMARK] = ACTIONS(3429), + [anon_sym_notnull] = ACTIONS(3587), + [anon_sym_unmanaged] = ACTIONS(3587), + [anon_sym_STAR] = ACTIONS(3429), + [anon_sym_DOT] = ACTIONS(3429), + [anon_sym_scoped] = ACTIONS(3587), + [anon_sym_COLON_COLON] = ACTIONS(3429), + [anon_sym_var] = ACTIONS(3587), + [anon_sym_yield] = ACTIONS(3587), + [anon_sym_when] = ACTIONS(3587), + [sym_discard] = ACTIONS(3431), + [anon_sym_and] = ACTIONS(3431), + [anon_sym_or] = ACTIONS(3431), + [anon_sym_from] = ACTIONS(3587), + [anon_sym_into] = ACTIONS(3587), + [anon_sym_join] = ACTIONS(3587), + [anon_sym_on] = ACTIONS(3587), + [anon_sym_equals] = ACTIONS(3587), + [anon_sym_let] = ACTIONS(3587), + [anon_sym_orderby] = ACTIONS(3587), + [anon_sym_ascending] = ACTIONS(3587), + [anon_sym_descending] = ACTIONS(3587), + [anon_sym_group] = ACTIONS(3587), + [anon_sym_by] = ACTIONS(3587), + [anon_sym_select] = ACTIONS(3587), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + }, +}; + +static const uint16_t ts_small_parse_table[] = { + [0] = 36, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -538460,51 +532813,63 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(3773), 1, - sym__identifier_token, - ACTIONS(4026), 1, - anon_sym_ref, - ACTIONS(5706), 1, - anon_sym_delegate, - ACTIONS(5710), 1, - anon_sym_var, - ACTIONS(5712), 1, - sym_predefined_type, - ACTIONS(5765), 1, - anon_sym_scoped, - ACTIONS(6171), 1, + ACTIONS(4697), 1, + anon_sym_DOT, + ACTIONS(4699), 1, + anon_sym_DASH_GT, + ACTIONS(5591), 1, anon_sym_LPAREN, - STATE(3129), 1, - sym_identifier, - STATE(3149), 1, - sym__reserved_identifier, - STATE(3156), 1, - sym_generic_name, - STATE(3181), 1, - sym_type, - STATE(3206), 1, - sym_array_type, - STATE(3209), 1, - sym_tuple_type, - STATE(3219), 1, - sym__name, - STATE(7259), 1, - sym__array_base_type, - STATE(7662), 1, - sym__pointer_base_type, - STATE(3151), 3, - sym_nullable_type, - sym_pointer_type, - sym_function_pointer_type, - STATE(3200), 3, - sym_alias_qualified_name, - sym__simple_name, - sym_qualified_name, - STATE(3205), 3, - sym_implicit_type, - sym_ref_type, - sym_scoped_type, - STATE(3946), 9, + ACTIONS(5650), 1, + anon_sym_LBRACK, + ACTIONS(5658), 1, + anon_sym_BANG, + ACTIONS(5682), 1, + anon_sym_switch, + ACTIONS(5698), 1, + anon_sym_with, + ACTIONS(5917), 1, + anon_sym_as, + ACTIONS(6207), 1, + anon_sym_SLASH, + ACTIONS(6209), 1, + anon_sym_CARET, + ACTIONS(6211), 1, + anon_sym_AMP, + ACTIONS(6215), 1, + anon_sym_GT_GT, + ACTIONS(6221), 1, + anon_sym_DOT_DOT, + ACTIONS(6223), 1, + anon_sym_is, + STATE(2892), 1, + sym_bracketed_argument_list, + STATE(3771), 1, + sym_argument_list, + ACTIONS(5660), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5739), 2, + anon_sym_QMARK, + anon_sym_PIPE, + ACTIONS(6201), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(6203), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6205), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(6213), 2, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + ACTIONS(6217), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6219), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + STATE(3889), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -538514,28 +532879,21 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(3775), 20, - anon_sym_alias, - anon_sym_global, - anon_sym_file, + ACTIONS(5737), 13, + anon_sym_COMMA, anon_sym_where, - anon_sym_notnull, - anon_sym_unmanaged, - anon_sym_yield, - anon_sym_when, + 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, - [5811] = 31, + [137] = 31, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -538556,51 +532914,51 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(2967), 1, + ACTIONS(2965), 1, sym__identifier_token, - ACTIONS(2979), 1, + ACTIONS(2977), 1, anon_sym_LPAREN, - ACTIONS(3001), 1, + ACTIONS(2997), 1, sym_predefined_type, - ACTIONS(3454), 1, + ACTIONS(3438), 1, anon_sym_delegate, - ACTIONS(4737), 1, + ACTIONS(6039), 1, anon_sym_var, - ACTIONS(5530), 1, + ACTIONS(6139), 1, anon_sym_ref, - ACTIONS(5538), 1, + ACTIONS(6143), 1, anon_sym_scoped, - STATE(3691), 1, + STATE(3654), 1, sym__reserved_identifier, - STATE(4087), 1, - sym_identifier, - STATE(4109), 1, + STATE(4073), 1, sym_generic_name, - STATE(4292), 1, + STATE(4081), 1, + sym_identifier, + STATE(4334), 1, sym_tuple_type, - STATE(4390), 1, + STATE(4369), 1, sym__name, - STATE(4404), 1, + STATE(4373), 1, sym_array_type, - STATE(6395), 1, - sym_type, - STATE(7162), 1, + STATE(7233), 1, sym__array_base_type, - STATE(7413), 1, + STATE(7357), 1, sym__pointer_base_type, - STATE(2347), 3, + STATE(7644), 1, + sym_type, + STATE(2316), 3, sym_implicit_type, sym_ref_type, sym_scoped_type, - STATE(4096), 3, + STATE(4068), 3, sym_alias_qualified_name, sym__simple_name, sym_qualified_name, - STATE(4285), 3, + STATE(4249), 3, sym_nullable_type, sym_pointer_type, sym_function_pointer_type, - STATE(3947), 9, + STATE(3890), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -538610,7 +532968,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(2971), 20, + ACTIONS(2969), 20, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -538631,7 +532989,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [5938] = 31, + [264] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -538652,51 +533010,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(2967), 1, - sym__identifier_token, - ACTIONS(2979), 1, - anon_sym_LPAREN, - ACTIONS(2999), 1, - anon_sym_var, - ACTIONS(3001), 1, - sym_predefined_type, - ACTIONS(3454), 1, - anon_sym_delegate, - ACTIONS(5603), 1, - anon_sym_ref, - ACTIONS(5607), 1, - anon_sym_scoped, - STATE(2343), 1, - sym_type, - STATE(3691), 1, - sym__reserved_identifier, - STATE(4087), 1, - sym_identifier, - STATE(4109), 1, - sym_generic_name, - STATE(4292), 1, - sym_tuple_type, - STATE(4390), 1, - sym__name, - STATE(4404), 1, - sym_array_type, - STATE(7162), 1, - sym__array_base_type, - STATE(7413), 1, - sym__pointer_base_type, - STATE(2347), 3, - sym_implicit_type, - sym_ref_type, - sym_scoped_type, - STATE(4096), 3, - sym_alias_qualified_name, - sym__simple_name, - sym_qualified_name, - STATE(4285), 3, - sym_nullable_type, - sym_pointer_type, - sym_function_pointer_type, - STATE(3948), 9, + ACTIONS(6225), 1, + anon_sym_into, + STATE(3891), 10, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -538706,28 +533022,53 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(2971), 20, - anon_sym_alias, - anon_sym_global, - anon_sym_file, + aux_sym__query_body_repeat2, + ACTIONS(5953), 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(5951), 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, - [6065] = 31, + anon_sym_is, + anon_sym_DASH_GT, + anon_sym_with, + [357] = 31, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -538748,51 +533089,51 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(2967), 1, + ACTIONS(2965), 1, sym__identifier_token, - ACTIONS(2979), 1, + ACTIONS(2977), 1, anon_sym_LPAREN, ACTIONS(2997), 1, - anon_sym_scoped, - ACTIONS(2999), 1, - anon_sym_var, - ACTIONS(3001), 1, sym_predefined_type, - ACTIONS(3452), 1, - anon_sym_ref, - ACTIONS(3454), 1, + ACTIONS(3438), 1, anon_sym_delegate, - STATE(2343), 1, - sym_type, - STATE(3691), 1, + ACTIONS(4705), 1, + anon_sym_var, + ACTIONS(6191), 1, + anon_sym_ref, + ACTIONS(6195), 1, + anon_sym_scoped, + STATE(3654), 1, sym__reserved_identifier, - STATE(4087), 1, - sym_identifier, - STATE(4109), 1, + STATE(4073), 1, sym_generic_name, - STATE(4292), 1, + STATE(4081), 1, + sym_identifier, + STATE(4334), 1, sym_tuple_type, - STATE(4390), 1, + STATE(4369), 1, sym__name, - STATE(4404), 1, + STATE(4373), 1, sym_array_type, - STATE(7162), 1, + STATE(7233), 1, sym__array_base_type, - STATE(7413), 1, + STATE(7357), 1, sym__pointer_base_type, - STATE(2347), 3, + STATE(7521), 1, + sym_type, + STATE(2316), 3, sym_implicit_type, sym_ref_type, sym_scoped_type, - STATE(4096), 3, + STATE(4068), 3, sym_alias_qualified_name, sym__simple_name, sym_qualified_name, - STATE(4285), 3, + STATE(4249), 3, sym_nullable_type, sym_pointer_type, sym_function_pointer_type, - STATE(3949), 9, + STATE(3892), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -538802,7 +533143,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(2971), 20, + ACTIONS(2969), 20, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -538823,7 +533164,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [6192] = 31, + [484] = 31, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -538844,51 +533185,51 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(3887), 1, + ACTIONS(2965), 1, sym__identifier_token, - ACTIONS(4042), 1, + ACTIONS(2977), 1, + anon_sym_LPAREN, + ACTIONS(2997), 1, + sym_predefined_type, + ACTIONS(3438), 1, anon_sym_delegate, - ACTIONS(4046), 1, + ACTIONS(4705), 1, anon_sym_var, - ACTIONS(4048), 1, - sym_predefined_type, - ACTIONS(4227), 1, + ACTIONS(5500), 1, anon_sym_ref, - ACTIONS(5698), 1, + ACTIONS(5508), 1, anon_sym_scoped, - ACTIONS(6051), 1, - anon_sym_LPAREN, - STATE(2923), 1, - sym_identifier, - STATE(2945), 1, + STATE(3654), 1, sym__reserved_identifier, - STATE(2985), 1, + STATE(4073), 1, sym_generic_name, - STATE(2992), 1, - sym_array_type, - STATE(3058), 1, + STATE(4081), 1, + sym_identifier, + STATE(4334), 1, sym_tuple_type, - STATE(3072), 1, + STATE(4369), 1, sym__name, - STATE(3106), 1, + STATE(4373), 1, + sym_array_type, + STATE(6359), 1, sym_type, - STATE(7267), 1, + STATE(7233), 1, sym__array_base_type, - STATE(7693), 1, + STATE(7357), 1, sym__pointer_base_type, - STATE(3012), 3, - sym_nullable_type, - sym_pointer_type, - sym_function_pointer_type, - STATE(3029), 3, - sym_alias_qualified_name, - sym__simple_name, - sym_qualified_name, - STATE(3054), 3, + STATE(2316), 3, sym_implicit_type, sym_ref_type, sym_scoped_type, - STATE(3950), 9, + STATE(4068), 3, + sym_alias_qualified_name, + sym__simple_name, + sym_qualified_name, + STATE(4249), 3, + sym_nullable_type, + sym_pointer_type, + sym_function_pointer_type, + STATE(3893), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -538898,7 +533239,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(3889), 20, + ACTIONS(2969), 20, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -538919,7 +533260,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [6319] = 31, + [611] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -538940,51 +533281,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(2967), 1, - sym__identifier_token, - ACTIONS(2979), 1, - anon_sym_LPAREN, - ACTIONS(3001), 1, - sym_predefined_type, - ACTIONS(3454), 1, - anon_sym_delegate, - ACTIONS(4737), 1, - anon_sym_var, - ACTIONS(5530), 1, - anon_sym_ref, - ACTIONS(5538), 1, - anon_sym_scoped, - STATE(3691), 1, - sym__reserved_identifier, - STATE(4087), 1, - sym_identifier, - STATE(4109), 1, - sym_generic_name, - STATE(4292), 1, - sym_tuple_type, - STATE(4390), 1, - sym__name, - STATE(4404), 1, - sym_array_type, - STATE(6572), 1, - sym_type, - STATE(7162), 1, - sym__array_base_type, - STATE(7413), 1, - sym__pointer_base_type, - STATE(2347), 3, - sym_implicit_type, - sym_ref_type, - sym_scoped_type, - STATE(4096), 3, - sym_alias_qualified_name, - sym__simple_name, - sym_qualified_name, - STATE(4285), 3, - sym_nullable_type, - sym_pointer_type, - sym_function_pointer_type, - STATE(3951), 9, + ACTIONS(6228), 1, + anon_sym_into, + STATE(3891), 1, + aux_sym__query_body_repeat2, + STATE(3894), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -538994,28 +533295,52 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(2971), 20, - anon_sym_alias, - anon_sym_global, - anon_sym_file, + ACTIONS(5960), 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(5958), 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, - [6446] = 31, + anon_sym_is, + anon_sym_DASH_GT, + anon_sym_with, + [706] = 31, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -539036,51 +533361,51 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(3887), 1, + ACTIONS(3871), 1, sym__identifier_token, - ACTIONS(4042), 1, + ACTIONS(4015), 1, anon_sym_delegate, - ACTIONS(4046), 1, + ACTIONS(4019), 1, anon_sym_var, - ACTIONS(4048), 1, + ACTIONS(4021), 1, sym_predefined_type, - ACTIONS(4223), 1, + ACTIONS(4195), 1, anon_sym_ref, - ACTIONS(5761), 1, + ACTIONS(5774), 1, anon_sym_scoped, - ACTIONS(6051), 1, + ACTIONS(6033), 1, anon_sym_LPAREN, - STATE(2923), 1, - sym_identifier, - STATE(2945), 1, + STATE(2916), 1, sym__reserved_identifier, - STATE(2985), 1, - sym_generic_name, - STATE(2992), 1, + STATE(2927), 1, + sym_identifier, + STATE(2978), 1, sym_array_type, - STATE(3058), 1, + STATE(2980), 1, sym_tuple_type, - STATE(3072), 1, + STATE(3030), 1, + sym_generic_name, + STATE(3086), 1, sym__name, - STATE(3106), 1, + STATE(3099), 1, sym_type, - STATE(7267), 1, + STATE(7236), 1, sym__array_base_type, - STATE(7693), 1, + STATE(7622), 1, sym__pointer_base_type, - STATE(3012), 3, - sym_nullable_type, - sym_pointer_type, - sym_function_pointer_type, - STATE(3029), 3, + STATE(2976), 3, sym_alias_qualified_name, sym__simple_name, sym_qualified_name, - STATE(3054), 3, + STATE(2977), 3, sym_implicit_type, sym_ref_type, sym_scoped_type, - STATE(3952), 9, + STATE(2979), 3, + sym_nullable_type, + sym_pointer_type, + sym_function_pointer_type, + STATE(3895), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -539090,7 +533415,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(3889), 20, + ACTIONS(3873), 20, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -539111,7 +533436,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [6573] = 31, + [833] = 31, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -539132,51 +533457,51 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(3861), 1, + ACTIONS(3798), 1, sym__identifier_token, - ACTIONS(4231), 1, + ACTIONS(4171), 1, anon_sym_ref, - ACTIONS(5791), 1, + ACTIONS(5638), 1, anon_sym_delegate, - ACTIONS(5795), 1, + ACTIONS(5642), 1, anon_sym_var, - ACTIONS(5797), 1, + ACTIONS(5644), 1, sym_predefined_type, - ACTIONS(5874), 1, + ACTIONS(5763), 1, anon_sym_scoped, - ACTIONS(6091), 1, + ACTIONS(6101), 1, anon_sym_LPAREN, - STATE(2904), 1, + STATE(3177), 1, + sym_identifier, + STATE(3205), 1, sym__reserved_identifier, - STATE(2929), 1, - sym_generic_name, - STATE(2937), 1, + STATE(3229), 1, sym_array_type, - STATE(2939), 1, - sym_type, - STATE(2944), 1, + STATE(3241), 1, + sym_generic_name, + STATE(3308), 1, sym_tuple_type, - STATE(3260), 1, - sym_identifier, - STATE(3534), 1, + STATE(3439), 1, + sym_type, + STATE(3488), 1, sym__name, - STATE(7122), 1, + STATE(7208), 1, sym__array_base_type, - STATE(7545), 1, + STATE(7508), 1, sym__pointer_base_type, - STATE(2921), 3, - sym_alias_qualified_name, - sym__simple_name, - sym_qualified_name, - STATE(2935), 3, - sym_implicit_type, - sym_ref_type, - sym_scoped_type, - STATE(2961), 3, + STATE(3216), 3, sym_nullable_type, sym_pointer_type, sym_function_pointer_type, - STATE(3953), 9, + STATE(3222), 3, + sym_implicit_type, + sym_ref_type, + sym_scoped_type, + STATE(3304), 3, + sym_alias_qualified_name, + sym__simple_name, + sym_qualified_name, + STATE(3896), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -539186,7 +533511,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(3863), 20, + ACTIONS(3800), 20, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -539207,7 +533532,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [6700] = 31, + [960] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -539228,51 +533553,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(3454), 1, - anon_sym_delegate, - ACTIONS(4058), 1, - sym__identifier_token, - ACTIONS(4098), 1, - anon_sym_ref, - ACTIONS(5638), 1, - anon_sym_var, - ACTIONS(5640), 1, - sym_predefined_type, - ACTIONS(5836), 1, - anon_sym_scoped, - ACTIONS(6055), 1, - anon_sym_LPAREN, - STATE(2359), 1, - sym_identifier, - STATE(2361), 1, - sym__reserved_identifier, - STATE(2378), 1, - sym_array_type, - STATE(2380), 1, - sym_tuple_type, - STATE(2389), 1, - sym_generic_name, - STATE(2419), 1, - sym__name, - STATE(3699), 1, - sym_type, - STATE(7103), 1, - sym__array_base_type, - STATE(7413), 1, - sym__pointer_base_type, - STATE(2347), 3, - sym_implicit_type, - sym_ref_type, - sym_scoped_type, - STATE(2373), 3, - sym_alias_qualified_name, - sym__simple_name, - sym_qualified_name, - STATE(2379), 3, - sym_nullable_type, - sym_pointer_type, - sym_function_pointer_type, - STATE(3954), 9, + ACTIONS(6230), 1, + anon_sym_LT, + STATE(4054), 1, + sym_type_argument_list, + STATE(3897), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -539282,15 +533567,38 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(4060), 20, + ACTIONS(3640), 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_GT, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_DOT, + anon_sym_EQ_GT, + anon_sym_DASH_GT, + ACTIONS(3638), 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, @@ -539303,7 +533611,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [6827] = 31, + sym__identifier_token, + [1055] = 31, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -539324,51 +533633,51 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(3788), 1, + ACTIONS(2965), 1, sym__identifier_token, - ACTIONS(4173), 1, - anon_sym_ref, - ACTIONS(5818), 1, + ACTIONS(2977), 1, + anon_sym_LPAREN, + ACTIONS(2997), 1, + sym_predefined_type, + ACTIONS(3438), 1, anon_sym_delegate, - ACTIONS(5822), 1, + ACTIONS(6039), 1, anon_sym_var, - ACTIONS(5824), 1, - sym_predefined_type, - ACTIONS(5890), 1, + ACTIONS(6139), 1, + anon_sym_ref, + ACTIONS(6143), 1, anon_sym_scoped, - ACTIONS(6059), 1, - anon_sym_LPAREN, - STATE(3167), 1, - sym_identifier, - STATE(3225), 1, + STATE(3654), 1, sym__reserved_identifier, - STATE(3246), 1, + STATE(4073), 1, sym_generic_name, - STATE(3255), 1, - sym_array_type, - STATE(3258), 1, + STATE(4081), 1, + sym_identifier, + STATE(4334), 1, sym_tuple_type, - STATE(3274), 1, - sym_type, - STATE(3453), 1, + STATE(4369), 1, sym__name, - STATE(7101), 1, + STATE(4373), 1, + sym_array_type, + STATE(7233), 1, sym__array_base_type, - STATE(7546), 1, + STATE(7357), 1, sym__pointer_base_type, - STATE(3251), 3, - sym_alias_qualified_name, - sym__simple_name, - sym_qualified_name, - STATE(3253), 3, + STATE(7555), 1, + sym_type, + STATE(2316), 3, sym_implicit_type, sym_ref_type, sym_scoped_type, - STATE(3257), 3, + STATE(4068), 3, + sym_alias_qualified_name, + sym__simple_name, + sym_qualified_name, + STATE(4249), 3, sym_nullable_type, sym_pointer_type, sym_function_pointer_type, - STATE(3955), 9, + STATE(3898), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -539378,7 +533687,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(3790), 20, + ACTIONS(2969), 20, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -539399,7 +533708,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [6954] = 31, + [1182] = 31, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -539420,51 +533729,51 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(3861), 1, + ACTIONS(3871), 1, sym__identifier_token, - ACTIONS(4225), 1, + ACTIONS(4007), 1, anon_sym_ref, - ACTIONS(5791), 1, + ACTIONS(4015), 1, anon_sym_delegate, - ACTIONS(5795), 1, + ACTIONS(4019), 1, anon_sym_var, - ACTIONS(5797), 1, + ACTIONS(4021), 1, sym_predefined_type, - ACTIONS(5897), 1, + ACTIONS(5731), 1, anon_sym_scoped, - ACTIONS(6091), 1, + ACTIONS(6033), 1, anon_sym_LPAREN, - STATE(2904), 1, + STATE(2916), 1, sym__reserved_identifier, - STATE(2929), 1, - sym_generic_name, - STATE(2937), 1, + STATE(2978), 1, sym_array_type, - STATE(2944), 1, + STATE(2980), 1, sym_tuple_type, - STATE(2962), 1, + STATE(3030), 1, + sym_generic_name, + STATE(3045), 1, sym_type, - STATE(3260), 1, + STATE(4356), 1, sym_identifier, - STATE(3534), 1, + STATE(5082), 1, sym__name, - STATE(7122), 1, + STATE(7236), 1, sym__array_base_type, - STATE(7545), 1, + STATE(7622), 1, sym__pointer_base_type, - STATE(2921), 3, + STATE(2976), 3, sym_alias_qualified_name, sym__simple_name, sym_qualified_name, - STATE(2935), 3, + STATE(2977), 3, sym_implicit_type, sym_ref_type, sym_scoped_type, - STATE(2961), 3, + STATE(2979), 3, sym_nullable_type, sym_pointer_type, sym_function_pointer_type, - STATE(3956), 9, + STATE(3899), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -539474,7 +533783,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(3863), 20, + ACTIONS(3873), 20, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -539495,7 +533804,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [7081] = 31, + [1309] = 31, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -539516,51 +533825,51 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(3887), 1, + ACTIONS(2965), 1, sym__identifier_token, - ACTIONS(4042), 1, + ACTIONS(2977), 1, + anon_sym_LPAREN, + ACTIONS(2997), 1, + sym_predefined_type, + ACTIONS(3438), 1, anon_sym_delegate, - ACTIONS(4046), 1, + ACTIONS(6039), 1, anon_sym_var, - ACTIONS(4048), 1, - sym_predefined_type, - ACTIONS(4217), 1, + ACTIONS(6139), 1, anon_sym_ref, - ACTIONS(5646), 1, + ACTIONS(6143), 1, anon_sym_scoped, - ACTIONS(6051), 1, - anon_sym_LPAREN, - STATE(2923), 1, - sym_identifier, - STATE(2945), 1, + STATE(3654), 1, sym__reserved_identifier, - STATE(2985), 1, + STATE(4073), 1, sym_generic_name, - STATE(2992), 1, - sym_array_type, - STATE(3038), 1, - sym_type, - STATE(3058), 1, + STATE(4081), 1, + sym_identifier, + STATE(4334), 1, sym_tuple_type, - STATE(3072), 1, + STATE(4369), 1, sym__name, - STATE(7267), 1, + STATE(4373), 1, + sym_array_type, + STATE(7233), 1, sym__array_base_type, - STATE(7693), 1, + STATE(7357), 1, sym__pointer_base_type, - STATE(3012), 3, - sym_nullable_type, - sym_pointer_type, - sym_function_pointer_type, - STATE(3029), 3, - sym_alias_qualified_name, - sym__simple_name, - sym_qualified_name, - STATE(3054), 3, + STATE(7558), 1, + sym_type, + STATE(2316), 3, sym_implicit_type, sym_ref_type, sym_scoped_type, - STATE(3957), 9, + STATE(4068), 3, + sym_alias_qualified_name, + sym__simple_name, + sym_qualified_name, + STATE(4249), 3, + sym_nullable_type, + sym_pointer_type, + sym_function_pointer_type, + STATE(3900), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -539570,7 +533879,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(3889), 20, + ACTIONS(2969), 20, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -539591,7 +533900,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [7208] = 31, + [1436] = 31, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -539612,51 +533921,51 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(3788), 1, + ACTIONS(2965), 1, sym__identifier_token, - ACTIONS(4175), 1, - anon_sym_ref, - ACTIONS(5818), 1, + ACTIONS(2977), 1, + anon_sym_LPAREN, + ACTIONS(2997), 1, + sym_predefined_type, + ACTIONS(3438), 1, anon_sym_delegate, - ACTIONS(5822), 1, + ACTIONS(6039), 1, anon_sym_var, - ACTIONS(5824), 1, - sym_predefined_type, - ACTIONS(5854), 1, + ACTIONS(6139), 1, + anon_sym_ref, + ACTIONS(6143), 1, anon_sym_scoped, - ACTIONS(6059), 1, - anon_sym_LPAREN, - STATE(3167), 1, - sym_identifier, - STATE(3225), 1, + STATE(3654), 1, sym__reserved_identifier, - STATE(3246), 1, + STATE(4073), 1, sym_generic_name, - STATE(3255), 1, - sym_array_type, - STATE(3258), 1, + STATE(4081), 1, + sym_identifier, + STATE(4334), 1, sym_tuple_type, - STATE(3274), 1, - sym_type, - STATE(3453), 1, + STATE(4369), 1, sym__name, - STATE(7101), 1, + STATE(4373), 1, + sym_array_type, + STATE(7233), 1, sym__array_base_type, - STATE(7546), 1, + STATE(7357), 1, sym__pointer_base_type, - STATE(3251), 3, - sym_alias_qualified_name, - sym__simple_name, - sym_qualified_name, - STATE(3253), 3, + STATE(7559), 1, + sym_type, + STATE(2316), 3, sym_implicit_type, sym_ref_type, sym_scoped_type, - STATE(3257), 3, + STATE(4068), 3, + sym_alias_qualified_name, + sym__simple_name, + sym_qualified_name, + STATE(4249), 3, sym_nullable_type, sym_pointer_type, sym_function_pointer_type, - STATE(3958), 9, + STATE(3901), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -539666,7 +533975,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(3790), 20, + ACTIONS(2969), 20, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -539687,7 +533996,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [7335] = 31, + [1563] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -539708,51 +534017,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(3983), 1, - sym__identifier_token, - ACTIONS(3987), 1, - anon_sym_ref, - ACTIONS(5846), 1, - anon_sym_delegate, - ACTIONS(5848), 1, - anon_sym_scoped, - ACTIONS(5850), 1, - anon_sym_var, - ACTIONS(5852), 1, - sym_predefined_type, - ACTIONS(6063), 1, - anon_sym_LPAREN, - STATE(4215), 1, - sym_identifier, - STATE(4297), 1, - sym__reserved_identifier, - STATE(4403), 1, - sym_generic_name, - STATE(4465), 1, - sym_array_type, - STATE(4469), 1, - sym_tuple_type, - STATE(4478), 1, - sym__name, - STATE(4777), 1, - sym_type, - STATE(7155), 1, - sym__array_base_type, - STATE(7333), 1, - sym__pointer_base_type, - STATE(4374), 3, - sym_implicit_type, - sym_ref_type, - sym_scoped_type, - STATE(4464), 3, - sym_alias_qualified_name, - sym__simple_name, - sym_qualified_name, - STATE(4467), 3, - sym_nullable_type, - sym_pointer_type, - sym_function_pointer_type, - STATE(3959), 9, + ACTIONS(6228), 1, + anon_sym_into, + STATE(4003), 1, + aux_sym__query_body_repeat2, + STATE(3902), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -539762,28 +534031,52 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(3985), 20, - anon_sym_alias, - anon_sym_global, - anon_sym_file, + ACTIONS(5935), 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(5933), 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, - [7462] = 31, + anon_sym_is, + anon_sym_DASH_GT, + anon_sym_with, + [1658] = 31, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -539804,51 +534097,51 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(3773), 1, + ACTIONS(2965), 1, sym__identifier_token, - ACTIONS(4177), 1, + ACTIONS(2977), 1, + anon_sym_LPAREN, + ACTIONS(4705), 1, + anon_sym_var, + ACTIONS(5170), 1, anon_sym_ref, - ACTIONS(5706), 1, + ACTIONS(5172), 1, anon_sym_delegate, - ACTIONS(5710), 1, - anon_sym_var, - ACTIONS(5712), 1, - sym_predefined_type, - ACTIONS(5743), 1, + ACTIONS(5178), 1, anon_sym_scoped, - ACTIONS(6171), 1, - anon_sym_LPAREN, - STATE(3129), 1, - sym_identifier, - STATE(3149), 1, + ACTIONS(5180), 1, + sym_predefined_type, + STATE(3654), 1, sym__reserved_identifier, - STATE(3156), 1, + STATE(4073), 1, sym_generic_name, - STATE(3181), 1, - sym_type, - STATE(3206), 1, - sym_array_type, - STATE(3209), 1, - sym_tuple_type, - STATE(3219), 1, + STATE(4081), 1, + sym_identifier, + STATE(6400), 1, sym__name, - STATE(7259), 1, + STATE(6601), 1, + sym_tuple_type, + STATE(6706), 1, + sym_array_type, + STATE(7109), 1, + sym_type, + STATE(7233), 1, sym__array_base_type, - STATE(7662), 1, + STATE(7421), 1, sym__pointer_base_type, - STATE(3151), 3, - sym_nullable_type, - sym_pointer_type, - sym_function_pointer_type, - STATE(3200), 3, + STATE(4068), 3, sym_alias_qualified_name, sym__simple_name, sym_qualified_name, - STATE(3205), 3, + STATE(4249), 3, + sym_nullable_type, + sym_pointer_type, + sym_function_pointer_type, + STATE(7035), 3, sym_implicit_type, sym_ref_type, sym_scoped_type, - STATE(3960), 9, + STATE(3903), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -539858,7 +534151,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(3775), 20, + ACTIONS(2969), 20, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -539879,7 +534172,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [7589] = 31, + [1785] = 31, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -539900,51 +534193,51 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(3773), 1, + ACTIONS(2965), 1, sym__identifier_token, - ACTIONS(3777), 1, - anon_sym_ref, - ACTIONS(5706), 1, + ACTIONS(2977), 1, + anon_sym_LPAREN, + ACTIONS(2997), 1, + sym_predefined_type, + ACTIONS(3438), 1, anon_sym_delegate, - ACTIONS(5710), 1, + ACTIONS(6039), 1, anon_sym_var, - ACTIONS(5712), 1, - sym_predefined_type, - ACTIONS(5888), 1, + ACTIONS(6139), 1, + anon_sym_ref, + ACTIONS(6143), 1, anon_sym_scoped, - ACTIONS(6171), 1, - anon_sym_LPAREN, - STATE(3129), 1, - sym_identifier, - STATE(3149), 1, + STATE(3654), 1, sym__reserved_identifier, - STATE(3156), 1, + STATE(4073), 1, sym_generic_name, - STATE(3206), 1, - sym_array_type, - STATE(3209), 1, + STATE(4081), 1, + sym_identifier, + STATE(4334), 1, sym_tuple_type, - STATE(3219), 1, + STATE(4369), 1, sym__name, - STATE(3306), 1, - sym_type, - STATE(7259), 1, + STATE(4373), 1, + sym_array_type, + STATE(7233), 1, sym__array_base_type, - STATE(7662), 1, + STATE(7317), 1, + sym_type, + STATE(7357), 1, sym__pointer_base_type, - STATE(3151), 3, - sym_nullable_type, - sym_pointer_type, - sym_function_pointer_type, - STATE(3200), 3, - sym_alias_qualified_name, - sym__simple_name, - sym_qualified_name, - STATE(3205), 3, + STATE(2316), 3, sym_implicit_type, sym_ref_type, sym_scoped_type, - STATE(3961), 9, + STATE(4068), 3, + sym_alias_qualified_name, + sym__simple_name, + sym_qualified_name, + STATE(4249), 3, + sym_nullable_type, + sym_pointer_type, + sym_function_pointer_type, + STATE(3904), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -539954,7 +534247,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(3775), 20, + ACTIONS(2969), 20, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -539975,7 +534268,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [7716] = 31, + [1912] = 31, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -539996,51 +534289,51 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(3773), 1, + ACTIONS(2965), 1, sym__identifier_token, - ACTIONS(4183), 1, - anon_sym_ref, - ACTIONS(5706), 1, + ACTIONS(2977), 1, + anon_sym_LPAREN, + ACTIONS(2997), 1, + sym_predefined_type, + ACTIONS(3438), 1, anon_sym_delegate, - ACTIONS(5708), 1, + ACTIONS(6115), 1, + anon_sym_ref, + ACTIONS(6119), 1, anon_sym_scoped, - ACTIONS(5710), 1, + ACTIONS(6121), 1, anon_sym_var, - ACTIONS(5712), 1, - sym_predefined_type, - ACTIONS(6171), 1, - anon_sym_LPAREN, - STATE(3129), 1, - sym_identifier, - STATE(3149), 1, + STATE(2345), 1, + sym_type, + STATE(3654), 1, sym__reserved_identifier, - STATE(3156), 1, + STATE(4073), 1, sym_generic_name, - STATE(3181), 1, - sym_type, - STATE(3206), 1, - sym_array_type, - STATE(3209), 1, + STATE(4334), 1, sym_tuple_type, - STATE(3219), 1, + STATE(4373), 1, + sym_array_type, + STATE(6238), 1, + sym_identifier, + STATE(6264), 1, sym__name, - STATE(7259), 1, + STATE(7233), 1, sym__array_base_type, - STATE(7662), 1, + STATE(7357), 1, sym__pointer_base_type, - STATE(3151), 3, - sym_nullable_type, - sym_pointer_type, - sym_function_pointer_type, - STATE(3200), 3, - sym_alias_qualified_name, - sym__simple_name, - sym_qualified_name, - STATE(3205), 3, + STATE(2316), 3, sym_implicit_type, sym_ref_type, sym_scoped_type, - STATE(3962), 9, + STATE(4068), 3, + sym_alias_qualified_name, + sym__simple_name, + sym_qualified_name, + STATE(4249), 3, + sym_nullable_type, + sym_pointer_type, + sym_function_pointer_type, + STATE(3905), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -540050,7 +534343,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(3775), 20, + ACTIONS(2969), 20, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -540071,7 +534364,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [7843] = 31, + [2039] = 29, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -540092,51 +534385,50 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(3788), 1, - sym__identifier_token, - ACTIONS(4158), 1, - anon_sym_ref, - ACTIONS(5818), 1, - anon_sym_delegate, - ACTIONS(5822), 1, - anon_sym_var, - ACTIONS(5824), 1, - sym_predefined_type, - ACTIONS(5838), 1, - anon_sym_scoped, - ACTIONS(6059), 1, + ACTIONS(4697), 1, + anon_sym_DOT, + ACTIONS(4699), 1, + anon_sym_DASH_GT, + ACTIONS(5591), 1, anon_sym_LPAREN, - STATE(3167), 1, - sym_identifier, - STATE(3225), 1, - sym__reserved_identifier, - STATE(3246), 1, - sym_generic_name, - STATE(3255), 1, - sym_array_type, - STATE(3258), 1, - sym_tuple_type, - STATE(3360), 1, - sym_type, - STATE(3453), 1, - sym__name, - STATE(7101), 1, - sym__array_base_type, - STATE(7546), 1, - sym__pointer_base_type, - STATE(3251), 3, - sym_alias_qualified_name, - sym__simple_name, - sym_qualified_name, - STATE(3253), 3, - sym_implicit_type, - sym_ref_type, - sym_scoped_type, - STATE(3257), 3, - sym_nullable_type, - sym_pointer_type, - sym_function_pointer_type, - STATE(3963), 9, + ACTIONS(5650), 1, + anon_sym_LBRACK, + ACTIONS(5658), 1, + anon_sym_BANG, + ACTIONS(5682), 1, + anon_sym_switch, + ACTIONS(5698), 1, + anon_sym_with, + ACTIONS(6207), 1, + anon_sym_SLASH, + ACTIONS(6215), 1, + anon_sym_GT_GT, + ACTIONS(6221), 1, + anon_sym_DOT_DOT, + STATE(2892), 1, + sym_bracketed_argument_list, + STATE(3771), 1, + sym_argument_list, + ACTIONS(5660), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6203), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6205), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(6213), 2, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + ACTIONS(5739), 6, + anon_sym_LT, + anon_sym_GT, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_as, + STATE(3906), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -540146,28 +534438,27 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(3790), 20, - anon_sym_alias, - anon_sym_global, - anon_sym_file, + ACTIONS(5737), 19, + anon_sym_COMMA, anon_sym_where, - anon_sym_notnull, - anon_sym_unmanaged, - anon_sym_yield, - anon_sym_when, + 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_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, - [7970] = 31, + anon_sym_is, + [2162] = 31, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -540188,51 +534479,51 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(3454), 1, - anon_sym_delegate, - ACTIONS(4058), 1, + ACTIONS(2965), 1, sym__identifier_token, - ACTIONS(4098), 1, - anon_sym_ref, - ACTIONS(5638), 1, + ACTIONS(2977), 1, + anon_sym_LPAREN, + ACTIONS(2995), 1, anon_sym_var, - ACTIONS(5640), 1, + ACTIONS(5172), 1, + anon_sym_delegate, + ACTIONS(5180), 1, sym_predefined_type, - ACTIONS(5836), 1, + ACTIONS(5454), 1, anon_sym_scoped, - ACTIONS(6055), 1, - anon_sym_LPAREN, - STATE(2343), 1, - sym_type, - STATE(2359), 1, - sym_identifier, - STATE(2361), 1, + ACTIONS(5937), 1, + anon_sym_ref, + STATE(3654), 1, sym__reserved_identifier, - STATE(2378), 1, - sym_array_type, - STATE(2380), 1, - sym_tuple_type, - STATE(2389), 1, + STATE(4073), 1, sym_generic_name, - STATE(2419), 1, + STATE(4081), 1, + sym_identifier, + STATE(6400), 1, sym__name, - STATE(7103), 1, + STATE(6601), 1, + sym_tuple_type, + STATE(6706), 1, + sym_array_type, + STATE(7109), 1, + sym_type, + STATE(7233), 1, sym__array_base_type, - STATE(7413), 1, + STATE(7421), 1, sym__pointer_base_type, - STATE(2347), 3, - sym_implicit_type, - sym_ref_type, - sym_scoped_type, - STATE(2373), 3, + STATE(4068), 3, sym_alias_qualified_name, sym__simple_name, sym_qualified_name, - STATE(2379), 3, + STATE(4249), 3, sym_nullable_type, sym_pointer_type, sym_function_pointer_type, - STATE(3964), 9, + STATE(7035), 3, + sym_implicit_type, + sym_ref_type, + sym_scoped_type, + STATE(3907), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -540242,7 +534533,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(4060), 20, + ACTIONS(2969), 20, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -540263,7 +534554,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [8097] = 31, + [2289] = 26, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -540284,51 +534575,45 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(3773), 1, - sym__identifier_token, - ACTIONS(4185), 1, - anon_sym_ref, - ACTIONS(5706), 1, - anon_sym_delegate, - ACTIONS(5710), 1, - anon_sym_var, - ACTIONS(5712), 1, - sym_predefined_type, - ACTIONS(5735), 1, - anon_sym_scoped, - ACTIONS(6171), 1, + ACTIONS(4697), 1, + anon_sym_DOT, + ACTIONS(4699), 1, + anon_sym_DASH_GT, + ACTIONS(5591), 1, anon_sym_LPAREN, - STATE(3129), 1, - sym_identifier, - STATE(3149), 1, - sym__reserved_identifier, - STATE(3156), 1, - sym_generic_name, - STATE(3181), 1, - sym_type, - STATE(3206), 1, - sym_array_type, - STATE(3209), 1, - sym_tuple_type, - STATE(3219), 1, - sym__name, - STATE(7259), 1, - sym__array_base_type, - STATE(7662), 1, - sym__pointer_base_type, - STATE(3151), 3, - sym_nullable_type, - sym_pointer_type, - sym_function_pointer_type, - STATE(3200), 3, - sym_alias_qualified_name, - sym__simple_name, - sym_qualified_name, - STATE(3205), 3, - sym_implicit_type, - sym_ref_type, - sym_scoped_type, - STATE(3965), 9, + ACTIONS(5650), 1, + anon_sym_LBRACK, + ACTIONS(5658), 1, + anon_sym_BANG, + ACTIONS(5682), 1, + anon_sym_switch, + ACTIONS(5698), 1, + anon_sym_with, + ACTIONS(6207), 1, + anon_sym_SLASH, + ACTIONS(6221), 1, + anon_sym_DOT_DOT, + STATE(2892), 1, + sym_bracketed_argument_list, + STATE(3771), 1, + sym_argument_list, + ACTIONS(5660), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6205), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(5739), 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(3908), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -540338,28 +534623,29 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(3775), 20, - anon_sym_alias, - anon_sym_global, - anon_sym_file, + ACTIONS(5737), 21, + anon_sym_COMMA, anon_sym_where, - anon_sym_notnull, - anon_sym_unmanaged, - anon_sym_yield, - anon_sym_when, + 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_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, - [8224] = 17, + anon_sym_is, + [2406] = 24, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -540380,15 +534666,30 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4912), 1, + ACTIONS(4697), 1, + anon_sym_DOT, + ACTIONS(4699), 1, + anon_sym_DASH_GT, + ACTIONS(5591), 1, + anon_sym_LPAREN, + ACTIONS(5650), 1, anon_sym_LBRACK, - ACTIONS(5550), 1, - anon_sym_LBRACE, - ACTIONS(5553), 1, - anon_sym_QMARK, - STATE(3056), 1, - sym_initializer_expression, - STATE(3966), 9, + ACTIONS(5658), 1, + anon_sym_BANG, + ACTIONS(5682), 1, + anon_sym_switch, + ACTIONS(5698), 1, + anon_sym_with, + ACTIONS(6221), 1, + anon_sym_DOT_DOT, + STATE(2892), 1, + sym_bracketed_argument_list, + STATE(3771), 1, + sym_argument_list, + ACTIONS(5660), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(3909), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -540398,23 +534699,20 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(4922), 11, + ACTIONS(5739), 10, anon_sym_LT, anon_sym_GT, - anon_sym_BANG, + anon_sym_QMARK, 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(4916), 30, - anon_sym_LPAREN, + anon_sym_as, + ACTIONS(5737), 23, + anon_sym_COMMA, anon_sym_where, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, anon_sym_STAR, anon_sym_PERCENT, anon_sym_CARET, @@ -540424,24 +534722,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_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_DASH_GT, - anon_sym_with, - [8323] = 31, + [2519] = 35, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -540462,51 +534755,61 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(3773), 1, - sym__identifier_token, - ACTIONS(4026), 1, - anon_sym_ref, - ACTIONS(5706), 1, - anon_sym_delegate, - ACTIONS(5710), 1, - anon_sym_var, - ACTIONS(5712), 1, - sym_predefined_type, - ACTIONS(5765), 1, - anon_sym_scoped, - ACTIONS(6171), 1, + ACTIONS(4697), 1, + anon_sym_DOT, + ACTIONS(4699), 1, + anon_sym_DASH_GT, + ACTIONS(5591), 1, anon_sym_LPAREN, - STATE(3129), 1, - sym_identifier, - STATE(3149), 1, - sym__reserved_identifier, - STATE(3156), 1, - sym_generic_name, - STATE(3206), 1, - sym_array_type, - STATE(3209), 1, - sym_tuple_type, - STATE(3219), 1, - sym__name, - STATE(3306), 1, - sym_type, - STATE(7259), 1, - sym__array_base_type, - STATE(7662), 1, - sym__pointer_base_type, - STATE(3151), 3, - sym_nullable_type, - sym_pointer_type, - sym_function_pointer_type, - STATE(3200), 3, - sym_alias_qualified_name, - sym__simple_name, - sym_qualified_name, - STATE(3205), 3, - sym_implicit_type, - sym_ref_type, - sym_scoped_type, - STATE(3967), 9, + ACTIONS(5650), 1, + anon_sym_LBRACK, + ACTIONS(5658), 1, + anon_sym_BANG, + ACTIONS(5682), 1, + anon_sym_switch, + ACTIONS(5698), 1, + anon_sym_with, + ACTIONS(5917), 1, + anon_sym_as, + ACTIONS(6207), 1, + anon_sym_SLASH, + ACTIONS(6211), 1, + anon_sym_AMP, + ACTIONS(6215), 1, + anon_sym_GT_GT, + ACTIONS(6221), 1, + anon_sym_DOT_DOT, + ACTIONS(6223), 1, + anon_sym_is, + STATE(2892), 1, + sym_bracketed_argument_list, + STATE(3771), 1, + sym_argument_list, + ACTIONS(5660), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5739), 2, + anon_sym_QMARK, + anon_sym_PIPE, + ACTIONS(6201), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(6203), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6205), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(6213), 2, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + ACTIONS(6217), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6219), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + STATE(3910), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -540516,28 +534819,22 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(3775), 20, - anon_sym_alias, - anon_sym_global, - anon_sym_file, + ACTIONS(5737), 14, + anon_sym_COMMA, anon_sym_where, - anon_sym_notnull, - anon_sym_unmanaged, - anon_sym_yield, - anon_sym_when, + 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_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, - [8450] = 31, + [2654] = 31, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -540558,51 +534855,51 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(3861), 1, + ACTIONS(3814), 1, sym__identifier_token, - ACTIONS(4229), 1, + ACTIONS(4201), 1, anon_sym_ref, - ACTIONS(5791), 1, + ACTIONS(5719), 1, anon_sym_delegate, - ACTIONS(5793), 1, - anon_sym_scoped, - ACTIONS(5795), 1, + ACTIONS(5723), 1, anon_sym_var, - ACTIONS(5797), 1, + ACTIONS(5725), 1, sym_predefined_type, - ACTIONS(6091), 1, + ACTIONS(5831), 1, + anon_sym_scoped, + ACTIONS(6123), 1, anon_sym_LPAREN, - STATE(2904), 1, + STATE(2900), 1, sym__reserved_identifier, - STATE(2929), 1, - sym_generic_name, - STATE(2937), 1, + STATE(2934), 1, sym_array_type, - STATE(2944), 1, + STATE(2943), 1, sym_tuple_type, - STATE(2962), 1, + STATE(2950), 1, + sym_generic_name, + STATE(2975), 1, sym_type, - STATE(3260), 1, + STATE(3317), 1, sym_identifier, - STATE(3534), 1, + STATE(3511), 1, sym__name, - STATE(7122), 1, + STATE(7061), 1, sym__array_base_type, - STATE(7545), 1, + STATE(7640), 1, sym__pointer_base_type, - STATE(2921), 3, + STATE(2907), 3, sym_alias_qualified_name, sym__simple_name, sym_qualified_name, - STATE(2935), 3, + STATE(2926), 3, sym_implicit_type, sym_ref_type, sym_scoped_type, - STATE(2961), 3, + STATE(2942), 3, sym_nullable_type, sym_pointer_type, sym_function_pointer_type, - STATE(3968), 9, + STATE(3911), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -540612,7 +534909,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(3863), 20, + ACTIONS(3816), 20, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -540633,7 +534930,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [8577] = 14, + [2781] = 34, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -540654,9 +534951,60 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(6264), 1, - anon_sym_into, - STATE(3969), 10, + ACTIONS(4697), 1, + anon_sym_DOT, + ACTIONS(4699), 1, + anon_sym_DASH_GT, + ACTIONS(5591), 1, + anon_sym_LPAREN, + ACTIONS(5650), 1, + anon_sym_LBRACK, + ACTIONS(5658), 1, + anon_sym_BANG, + ACTIONS(5682), 1, + anon_sym_switch, + ACTIONS(5698), 1, + anon_sym_with, + ACTIONS(5917), 1, + anon_sym_as, + ACTIONS(6207), 1, + anon_sym_SLASH, + ACTIONS(6215), 1, + anon_sym_GT_GT, + ACTIONS(6221), 1, + anon_sym_DOT_DOT, + ACTIONS(6223), 1, + anon_sym_is, + STATE(2892), 1, + sym_bracketed_argument_list, + STATE(3771), 1, + sym_argument_list, + ACTIONS(5660), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6201), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(6203), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6205), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(6213), 2, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + ACTIONS(6217), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6219), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(5739), 3, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_AMP, + STATE(3912), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -540666,29 +535014,94 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - aux_sym__query_body_repeat2, - ACTIONS(5951), 12, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, + ACTIONS(5737), 14, + anon_sym_COMMA, + 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_ascending, + anon_sym_descending, + anon_sym_group, + anon_sym_select, + [2914] = 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(4697), 1, + anon_sym_DOT, + ACTIONS(4699), 1, + anon_sym_DASH_GT, + ACTIONS(5591), 1, + anon_sym_LPAREN, + ACTIONS(5650), 1, + anon_sym_LBRACK, + ACTIONS(5658), 1, anon_sym_BANG, + ACTIONS(5682), 1, + anon_sym_switch, + ACTIONS(5698), 1, + anon_sym_with, + ACTIONS(6207), 1, + anon_sym_SLASH, + ACTIONS(6221), 1, + anon_sym_DOT_DOT, + STATE(2892), 1, + sym_bracketed_argument_list, + STATE(3771), 1, + sym_argument_list, + ACTIONS(5660), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6203), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, + ACTIONS(6205), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(5739), 7, + anon_sym_LT, + anon_sym_GT, + anon_sym_QMARK, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT_GT, - anon_sym_DOT, anon_sym_as, - ACTIONS(5949), 31, - anon_sym_LBRACK, + STATE(3913), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + ACTIONS(5737), 21, 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, @@ -540696,8 +535109,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, @@ -540710,9 +535121,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_select, anon_sym_is, - anon_sym_DASH_GT, - anon_sym_with, - [8670] = 31, + [3033] = 33, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -540733,51 +535142,57 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(3861), 1, - sym__identifier_token, - ACTIONS(4231), 1, - anon_sym_ref, - ACTIONS(5791), 1, - anon_sym_delegate, - ACTIONS(5795), 1, - anon_sym_var, - ACTIONS(5797), 1, - sym_predefined_type, - ACTIONS(5874), 1, - anon_sym_scoped, - ACTIONS(6091), 1, + ACTIONS(4697), 1, + anon_sym_DOT, + ACTIONS(4699), 1, + anon_sym_DASH_GT, + ACTIONS(5591), 1, anon_sym_LPAREN, - STATE(2904), 1, - sym__reserved_identifier, - STATE(2929), 1, - sym_generic_name, - STATE(2937), 1, - sym_array_type, - STATE(2944), 1, - sym_tuple_type, - STATE(2962), 1, - sym_type, - STATE(3260), 1, - sym_identifier, - STATE(3534), 1, - sym__name, - STATE(7122), 1, - sym__array_base_type, - STATE(7545), 1, - sym__pointer_base_type, - STATE(2921), 3, - sym_alias_qualified_name, - sym__simple_name, - sym_qualified_name, - STATE(2935), 3, - sym_implicit_type, - sym_ref_type, - sym_scoped_type, - STATE(2961), 3, - sym_nullable_type, - sym_pointer_type, - sym_function_pointer_type, - STATE(3970), 9, + ACTIONS(5650), 1, + anon_sym_LBRACK, + ACTIONS(5658), 1, + anon_sym_BANG, + ACTIONS(5682), 1, + anon_sym_switch, + ACTIONS(5698), 1, + anon_sym_with, + ACTIONS(5917), 1, + anon_sym_as, + ACTIONS(6207), 1, + anon_sym_SLASH, + ACTIONS(6215), 1, + anon_sym_GT_GT, + ACTIONS(6221), 1, + anon_sym_DOT_DOT, + ACTIONS(6223), 1, + anon_sym_is, + STATE(2892), 1, + sym_bracketed_argument_list, + STATE(3771), 1, + sym_argument_list, + ACTIONS(5660), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6201), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(6203), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6205), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(6213), 2, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + ACTIONS(6219), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(5739), 3, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_AMP, + STATE(3914), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -540787,28 +535202,24 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(3863), 20, - anon_sym_alias, - anon_sym_global, - anon_sym_file, + ACTIONS(5737), 16, + anon_sym_COMMA, anon_sym_where, - anon_sym_notnull, - anon_sym_unmanaged, - anon_sym_yield, - anon_sym_when, + 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_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, - [8797] = 31, + [3164] = 31, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -540829,51 +535240,51 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(3788), 1, + ACTIONS(2965), 1, sym__identifier_token, - ACTIONS(4173), 1, - anon_sym_ref, - ACTIONS(5818), 1, + ACTIONS(2977), 1, + anon_sym_LPAREN, + ACTIONS(2997), 1, + sym_predefined_type, + ACTIONS(3438), 1, anon_sym_delegate, - ACTIONS(5822), 1, + ACTIONS(6039), 1, anon_sym_var, - ACTIONS(5824), 1, - sym_predefined_type, - ACTIONS(5890), 1, + ACTIONS(6139), 1, + anon_sym_ref, + ACTIONS(6143), 1, anon_sym_scoped, - ACTIONS(6059), 1, - anon_sym_LPAREN, - STATE(3167), 1, - sym_identifier, - STATE(3225), 1, + STATE(3654), 1, sym__reserved_identifier, - STATE(3246), 1, + STATE(4073), 1, sym_generic_name, - STATE(3255), 1, - sym_array_type, - STATE(3258), 1, + STATE(4081), 1, + sym_identifier, + STATE(4334), 1, sym_tuple_type, - STATE(3360), 1, - sym_type, - STATE(3453), 1, + STATE(4369), 1, sym__name, - STATE(7101), 1, + STATE(4373), 1, + sym_array_type, + STATE(7233), 1, sym__array_base_type, - STATE(7546), 1, + STATE(7357), 1, sym__pointer_base_type, - STATE(3251), 3, - sym_alias_qualified_name, - sym__simple_name, - sym_qualified_name, - STATE(3253), 3, + STATE(7495), 1, + sym_type, + STATE(2316), 3, sym_implicit_type, sym_ref_type, sym_scoped_type, - STATE(3257), 3, + STATE(4068), 3, + sym_alias_qualified_name, + sym__simple_name, + sym_qualified_name, + STATE(4249), 3, sym_nullable_type, sym_pointer_type, sym_function_pointer_type, - STATE(3971), 9, + STATE(3915), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -540883,7 +535294,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(3790), 20, + ACTIONS(2969), 20, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -540904,7 +535315,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [8924] = 31, + [3291] = 37, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -540925,51 +535336,64 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(3788), 1, - sym__identifier_token, - ACTIONS(4175), 1, - anon_sym_ref, - ACTIONS(5818), 1, - anon_sym_delegate, - ACTIONS(5822), 1, - anon_sym_var, - ACTIONS(5824), 1, - sym_predefined_type, - ACTIONS(5854), 1, - anon_sym_scoped, - ACTIONS(6059), 1, + ACTIONS(4697), 1, + anon_sym_DOT, + ACTIONS(4699), 1, + anon_sym_DASH_GT, + ACTIONS(5591), 1, anon_sym_LPAREN, - STATE(3167), 1, - sym_identifier, - STATE(3225), 1, - sym__reserved_identifier, - STATE(3246), 1, - sym_generic_name, - STATE(3255), 1, - sym_array_type, - STATE(3258), 1, - sym_tuple_type, - STATE(3360), 1, - sym_type, - STATE(3453), 1, - sym__name, - STATE(7101), 1, - sym__array_base_type, - STATE(7546), 1, - sym__pointer_base_type, - STATE(3251), 3, - sym_alias_qualified_name, - sym__simple_name, - sym_qualified_name, - STATE(3253), 3, - sym_implicit_type, - sym_ref_type, - sym_scoped_type, - STATE(3257), 3, - sym_nullable_type, - sym_pointer_type, - sym_function_pointer_type, - STATE(3972), 9, + ACTIONS(5650), 1, + anon_sym_LBRACK, + ACTIONS(5658), 1, + anon_sym_BANG, + ACTIONS(5682), 1, + anon_sym_switch, + ACTIONS(5698), 1, + anon_sym_with, + ACTIONS(5739), 1, + anon_sym_QMARK, + ACTIONS(5917), 1, + anon_sym_as, + ACTIONS(6207), 1, + anon_sym_SLASH, + ACTIONS(6209), 1, + anon_sym_CARET, + ACTIONS(6211), 1, + anon_sym_AMP, + ACTIONS(6215), 1, + anon_sym_GT_GT, + ACTIONS(6221), 1, + anon_sym_DOT_DOT, + ACTIONS(6223), 1, + anon_sym_is, + ACTIONS(6232), 1, + anon_sym_PIPE, + STATE(2892), 1, + sym_bracketed_argument_list, + STATE(3771), 1, + sym_argument_list, + ACTIONS(5660), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6201), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(6203), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6205), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(6213), 2, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + ACTIONS(6217), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6219), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + STATE(3916), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -540979,28 +535403,21 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(3790), 20, - anon_sym_alias, - anon_sym_global, - anon_sym_file, + ACTIONS(5737), 13, + anon_sym_COMMA, anon_sym_where, - anon_sym_notnull, - anon_sym_unmanaged, - anon_sym_yield, - anon_sym_when, + 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, - [9051] = 31, + [3430] = 38, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -541021,51 +535438,66 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(3773), 1, - sym__identifier_token, - ACTIONS(4177), 1, - anon_sym_ref, - ACTIONS(5706), 1, - anon_sym_delegate, - ACTIONS(5710), 1, - anon_sym_var, - ACTIONS(5712), 1, - sym_predefined_type, - ACTIONS(5743), 1, - anon_sym_scoped, - ACTIONS(6171), 1, + ACTIONS(4697), 1, + anon_sym_DOT, + ACTIONS(4699), 1, + anon_sym_DASH_GT, + ACTIONS(5591), 1, anon_sym_LPAREN, - STATE(3129), 1, - sym_identifier, - STATE(3149), 1, - sym__reserved_identifier, - STATE(3156), 1, - sym_generic_name, - STATE(3206), 1, - sym_array_type, - STATE(3209), 1, - sym_tuple_type, - STATE(3219), 1, - sym__name, - STATE(3306), 1, - sym_type, - STATE(7259), 1, - sym__array_base_type, - STATE(7662), 1, - sym__pointer_base_type, - STATE(3151), 3, - sym_nullable_type, - sym_pointer_type, - sym_function_pointer_type, - STATE(3200), 3, - sym_alias_qualified_name, - sym__simple_name, - sym_qualified_name, - STATE(3205), 3, - sym_implicit_type, - sym_ref_type, - sym_scoped_type, - STATE(3973), 9, + ACTIONS(5650), 1, + anon_sym_LBRACK, + ACTIONS(5658), 1, + anon_sym_BANG, + ACTIONS(5682), 1, + anon_sym_switch, + ACTIONS(5698), 1, + anon_sym_with, + ACTIONS(5739), 1, + anon_sym_QMARK, + ACTIONS(5917), 1, + anon_sym_as, + ACTIONS(6207), 1, + anon_sym_SLASH, + ACTIONS(6209), 1, + anon_sym_CARET, + ACTIONS(6211), 1, + anon_sym_AMP, + ACTIONS(6215), 1, + anon_sym_GT_GT, + ACTIONS(6221), 1, + anon_sym_DOT_DOT, + ACTIONS(6223), 1, + anon_sym_is, + ACTIONS(6232), 1, + anon_sym_PIPE, + ACTIONS(6234), 1, + anon_sym_AMP_AMP, + STATE(2892), 1, + sym_bracketed_argument_list, + STATE(3771), 1, + sym_argument_list, + ACTIONS(5660), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6201), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(6203), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6205), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(6213), 2, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + ACTIONS(6217), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6219), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + STATE(3917), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -541075,28 +535507,20 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(3775), 20, - anon_sym_alias, - anon_sym_global, - anon_sym_file, + ACTIONS(5737), 12, + anon_sym_COMMA, anon_sym_where, - anon_sym_notnull, - anon_sym_unmanaged, - anon_sym_yield, - anon_sym_when, + 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, - [9178] = 31, + [3571] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -541117,51 +535541,70 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(3773), 1, - sym__identifier_token, - ACTIONS(4183), 1, - anon_sym_ref, - ACTIONS(5706), 1, - anon_sym_delegate, - ACTIONS(5708), 1, - anon_sym_scoped, - ACTIONS(5710), 1, - anon_sym_var, - ACTIONS(5712), 1, - sym_predefined_type, - ACTIONS(6171), 1, + ACTIONS(4697), 1, + anon_sym_DOT, + ACTIONS(4699), 1, + anon_sym_DASH_GT, + ACTIONS(5591), 1, anon_sym_LPAREN, - STATE(3129), 1, - sym_identifier, - STATE(3149), 1, - sym__reserved_identifier, - STATE(3156), 1, - sym_generic_name, - STATE(3206), 1, - sym_array_type, - STATE(3209), 1, - sym_tuple_type, - STATE(3219), 1, - sym__name, - STATE(3306), 1, - sym_type, - STATE(7259), 1, - sym__array_base_type, - STATE(7662), 1, - sym__pointer_base_type, - STATE(3151), 3, - sym_nullable_type, - sym_pointer_type, - sym_function_pointer_type, - STATE(3200), 3, - sym_alias_qualified_name, - sym__simple_name, - sym_qualified_name, - STATE(3205), 3, - sym_implicit_type, - sym_ref_type, - sym_scoped_type, - STATE(3974), 9, + ACTIONS(5650), 1, + anon_sym_LBRACK, + ACTIONS(5658), 1, + anon_sym_BANG, + ACTIONS(5682), 1, + anon_sym_switch, + ACTIONS(5698), 1, + anon_sym_with, + ACTIONS(5739), 1, + anon_sym_QMARK, + ACTIONS(5917), 1, + anon_sym_as, + ACTIONS(6207), 1, + anon_sym_SLASH, + ACTIONS(6209), 1, + anon_sym_CARET, + ACTIONS(6211), 1, + anon_sym_AMP, + ACTIONS(6215), 1, + anon_sym_GT_GT, + ACTIONS(6221), 1, + anon_sym_DOT_DOT, + ACTIONS(6223), 1, + anon_sym_is, + ACTIONS(6232), 1, + anon_sym_PIPE, + ACTIONS(6234), 1, + anon_sym_AMP_AMP, + ACTIONS(6236), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6238), 1, + anon_sym_QMARK_QMARK, + STATE(2892), 1, + sym_bracketed_argument_list, + STATE(3771), 1, + sym_argument_list, + ACTIONS(5660), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6201), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(6203), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6205), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(6213), 2, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + ACTIONS(6217), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6219), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + STATE(3918), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -541171,28 +535614,18 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(3775), 20, - anon_sym_alias, - anon_sym_global, - anon_sym_file, + ACTIONS(5737), 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, - [9305] = 31, + [3716] = 31, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -541213,51 +535646,51 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(3773), 1, + ACTIONS(3814), 1, sym__identifier_token, - ACTIONS(4185), 1, + ACTIONS(3818), 1, anon_sym_ref, - ACTIONS(5706), 1, + ACTIONS(5719), 1, anon_sym_delegate, - ACTIONS(5710), 1, + ACTIONS(5723), 1, anon_sym_var, - ACTIONS(5712), 1, + ACTIONS(5725), 1, sym_predefined_type, - ACTIONS(5735), 1, + ACTIONS(5841), 1, anon_sym_scoped, - ACTIONS(6171), 1, + ACTIONS(6123), 1, anon_sym_LPAREN, - STATE(3129), 1, - sym_identifier, - STATE(3149), 1, + STATE(2900), 1, sym__reserved_identifier, - STATE(3156), 1, - sym_generic_name, - STATE(3206), 1, + STATE(2934), 1, sym_array_type, - STATE(3209), 1, + STATE(2943), 1, sym_tuple_type, - STATE(3219), 1, - sym__name, - STATE(3306), 1, + STATE(2950), 1, + sym_generic_name, + STATE(2975), 1, sym_type, - STATE(7259), 1, + STATE(3317), 1, + sym_identifier, + STATE(3511), 1, + sym__name, + STATE(7061), 1, sym__array_base_type, - STATE(7662), 1, + STATE(7640), 1, sym__pointer_base_type, - STATE(3151), 3, - sym_nullable_type, - sym_pointer_type, - sym_function_pointer_type, - STATE(3200), 3, + STATE(2907), 3, sym_alias_qualified_name, sym__simple_name, sym_qualified_name, - STATE(3205), 3, + STATE(2926), 3, sym_implicit_type, sym_ref_type, sym_scoped_type, - STATE(3975), 9, + STATE(2942), 3, + sym_nullable_type, + sym_pointer_type, + sym_function_pointer_type, + STATE(3919), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -541267,7 +535700,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(3775), 20, + ACTIONS(3816), 20, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -541288,7 +535721,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [9432] = 31, + [3843] = 31, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -541309,51 +535742,51 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(3648), 1, - anon_sym_ref, - ACTIONS(6109), 1, + ACTIONS(3814), 1, sym__identifier_token, - ACTIONS(6113), 1, - anon_sym_LPAREN, - ACTIONS(6115), 1, + ACTIONS(4165), 1, + anon_sym_ref, + ACTIONS(5719), 1, anon_sym_delegate, - ACTIONS(6117), 1, + ACTIONS(5721), 1, anon_sym_scoped, - ACTIONS(6119), 1, + ACTIONS(5723), 1, anon_sym_var, - ACTIONS(6121), 1, + ACTIONS(5725), 1, sym_predefined_type, - STATE(2581), 1, - sym_identifier, - STATE(2627), 1, + ACTIONS(6123), 1, + anon_sym_LPAREN, + STATE(2900), 1, sym__reserved_identifier, - STATE(2722), 1, - sym_generic_name, - STATE(2767), 1, + STATE(2934), 1, sym_array_type, - STATE(2769), 1, + STATE(2943), 1, sym_tuple_type, - STATE(2771), 1, - sym__name, - STATE(2822), 1, + STATE(2950), 1, + sym_generic_name, + STATE(2975), 1, sym_type, - STATE(7243), 1, + STATE(3741), 1, + sym_identifier, + STATE(4060), 1, + sym__name, + STATE(7061), 1, sym__array_base_type, - STATE(7717), 1, + STATE(7640), 1, sym__pointer_base_type, - STATE(2764), 3, + STATE(2907), 3, sym_alias_qualified_name, sym__simple_name, sym_qualified_name, - STATE(2768), 3, - sym_nullable_type, - sym_pointer_type, - sym_function_pointer_type, - STATE(2791), 3, + STATE(2926), 3, sym_implicit_type, sym_ref_type, sym_scoped_type, - STATE(3976), 9, + STATE(2942), 3, + sym_nullable_type, + sym_pointer_type, + sym_function_pointer_type, + STATE(3920), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -541363,7 +535796,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(6111), 20, + ACTIONS(3816), 20, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -541384,7 +535817,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [9559] = 40, + [3970] = 41, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -541405,70 +535838,188 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4719), 1, - anon_sym_DASH_GT, - ACTIONS(4733), 1, - anon_sym_DOT, - ACTIONS(5624), 1, + ACTIONS(4753), 1, anon_sym_LPAREN, - ACTIONS(5658), 1, + ACTIONS(4792), 1, + anon_sym_DOT, + ACTIONS(4794), 1, + anon_sym_DASH_GT, + ACTIONS(4819), 1, anon_sym_LBRACK, - ACTIONS(5666), 1, + ACTIONS(4823), 1, anon_sym_BANG, - ACTIONS(5688), 1, - anon_sym_switch, - ACTIONS(5696), 1, - anon_sym_with, - ACTIONS(5935), 1, - anon_sym_as, - ACTIONS(6231), 1, + ACTIONS(5735), 1, + anon_sym_or, + ACTIONS(6242), 1, + anon_sym_QMARK, + ACTIONS(6248), 1, anon_sym_SLASH, - ACTIONS(6235), 1, + ACTIONS(6250), 1, + anon_sym_CARET, + ACTIONS(6252), 1, + anon_sym_PIPE, + ACTIONS(6254), 1, + anon_sym_AMP, + ACTIONS(6258), 1, anon_sym_GT_GT, - ACTIONS(6237), 1, + ACTIONS(6264), 1, + anon_sym_switch, + ACTIONS(6266), 1, anon_sym_DOT_DOT, - ACTIONS(6241), 1, - anon_sym_AMP, - ACTIONS(6247), 1, + ACTIONS(6268), 1, + anon_sym_AMP_AMP, + ACTIONS(6270), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6272), 1, + anon_sym_QMARK_QMARK, + ACTIONS(6274), 1, + anon_sym_as, + ACTIONS(6276), 1, anon_sym_is, - ACTIONS(6249), 1, + ACTIONS(6278), 1, + anon_sym_with, + STATE(2419), 1, + sym_bracketed_argument_list, + STATE(2958), 1, + sym_argument_list, + ACTIONS(4825), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6240), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(6244), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6246), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(6256), 2, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + ACTIONS(6260), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6262), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(5733), 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(3921), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + [4117] = 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(4753), 1, + anon_sym_LPAREN, + ACTIONS(4792), 1, + anon_sym_DOT, + ACTIONS(4794), 1, + anon_sym_DASH_GT, + ACTIONS(4819), 1, + anon_sym_LBRACK, + ACTIONS(4823), 1, + anon_sym_BANG, + ACTIONS(5857), 1, + anon_sym_or, + ACTIONS(6242), 1, + anon_sym_QMARK, + ACTIONS(6248), 1, + anon_sym_SLASH, + ACTIONS(6250), 1, anon_sym_CARET, - ACTIONS(6251), 1, + ACTIONS(6252), 1, anon_sym_PIPE, - ACTIONS(6253), 1, + ACTIONS(6254), 1, + anon_sym_AMP, + ACTIONS(6258), 1, + anon_sym_GT_GT, + ACTIONS(6264), 1, + anon_sym_switch, + ACTIONS(6266), 1, + anon_sym_DOT_DOT, + ACTIONS(6268), 1, anon_sym_AMP_AMP, - ACTIONS(6255), 1, + ACTIONS(6270), 1, anon_sym_PIPE_PIPE, - ACTIONS(6257), 1, + ACTIONS(6272), 1, anon_sym_QMARK_QMARK, - ACTIONS(6267), 1, - anon_sym_QMARK, - STATE(2902), 1, + ACTIONS(6274), 1, + anon_sym_as, + ACTIONS(6276), 1, + anon_sym_is, + ACTIONS(6278), 1, + anon_sym_with, + STATE(2419), 1, sym_bracketed_argument_list, - STATE(3886), 1, + STATE(2958), 1, sym_argument_list, - ACTIONS(5668), 2, + ACTIONS(4825), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6227), 2, + ACTIONS(6240), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(6244), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6229), 2, + ACTIONS(6246), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(6233), 2, + ACTIONS(6256), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(6239), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(6243), 2, + ACTIONS(6260), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6245), 2, + ACTIONS(6262), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - STATE(3977), 9, + ACTIONS(5855), 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(3922), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -541478,18 +536029,113 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5858), 10, - anon_sym_COMMA, + [4264] = 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(4753), 1, + anon_sym_LPAREN, + ACTIONS(4792), 1, + anon_sym_DOT, + ACTIONS(4794), 1, + anon_sym_DASH_GT, + ACTIONS(4819), 1, + anon_sym_LBRACK, + ACTIONS(4823), 1, + anon_sym_BANG, + ACTIONS(5803), 1, + anon_sym_or, + ACTIONS(6242), 1, + anon_sym_QMARK, + ACTIONS(6248), 1, + anon_sym_SLASH, + ACTIONS(6250), 1, + anon_sym_CARET, + ACTIONS(6252), 1, + anon_sym_PIPE, + ACTIONS(6254), 1, + anon_sym_AMP, + ACTIONS(6258), 1, + anon_sym_GT_GT, + ACTIONS(6264), 1, + anon_sym_switch, + ACTIONS(6266), 1, + anon_sym_DOT_DOT, + ACTIONS(6268), 1, + anon_sym_AMP_AMP, + ACTIONS(6270), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6272), 1, + anon_sym_QMARK_QMARK, + ACTIONS(6274), 1, + anon_sym_as, + ACTIONS(6276), 1, + anon_sym_is, + ACTIONS(6278), 1, + anon_sym_with, + STATE(2419), 1, + sym_bracketed_argument_list, + STATE(2958), 1, + sym_argument_list, + ACTIONS(4825), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6240), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(6244), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6246), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(6256), 2, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + ACTIONS(6260), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6262), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(5801), 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, - [9704] = 31, + STATE(3923), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + [4411] = 31, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -541510,51 +536156,51 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(2967), 1, + ACTIONS(2965), 1, sym__identifier_token, - ACTIONS(2979), 1, + ACTIONS(2977), 1, anon_sym_LPAREN, - ACTIONS(2999), 1, - anon_sym_var, - ACTIONS(3001), 1, + ACTIONS(2997), 1, sym_predefined_type, - ACTIONS(3454), 1, + ACTIONS(3438), 1, anon_sym_delegate, - ACTIONS(3658), 1, + ACTIONS(4705), 1, + anon_sym_var, + ACTIONS(5500), 1, anon_sym_ref, - ACTIONS(6201), 1, + ACTIONS(5508), 1, anon_sym_scoped, - STATE(2343), 1, - sym_type, - STATE(3691), 1, + STATE(3654), 1, sym__reserved_identifier, - STATE(4109), 1, + STATE(4073), 1, sym_generic_name, - STATE(4292), 1, - sym_tuple_type, - STATE(4404), 1, - sym_array_type, - STATE(5568), 1, + STATE(4081), 1, sym_identifier, - STATE(5738), 1, + STATE(4334), 1, + sym_tuple_type, + STATE(4369), 1, sym__name, - STATE(7162), 1, + STATE(4373), 1, + sym_array_type, + STATE(6388), 1, + sym_type, + STATE(7233), 1, sym__array_base_type, - STATE(7413), 1, + STATE(7357), 1, sym__pointer_base_type, - STATE(2347), 3, + STATE(2316), 3, sym_implicit_type, sym_ref_type, sym_scoped_type, - STATE(4096), 3, + STATE(4068), 3, sym_alias_qualified_name, sym__simple_name, sym_qualified_name, - STATE(4285), 3, + STATE(4249), 3, sym_nullable_type, sym_pointer_type, sym_function_pointer_type, - STATE(3978), 9, + STATE(3924), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -541564,7 +536210,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(2971), 20, + ACTIONS(2969), 20, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -541585,7 +536231,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [9831] = 17, + [4538] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -541606,15 +536252,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(1487), 1, - anon_sym_LBRACE, - ACTIONS(4804), 1, - anon_sym_LPAREN, - STATE(2933), 1, - sym_argument_list, - STATE(3090), 1, - sym_initializer_expression, - STATE(3979), 9, + ACTIONS(6280), 1, + anon_sym_into, + STATE(3972), 1, + aux_sym__query_body_repeat2, + STATE(3925), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -541624,7 +536266,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(4806), 12, + ACTIONS(5881), 11, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, @@ -541636,10 +536278,94 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT, + ACTIONS(5879), 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, - ACTIONS(4802), 29, + 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, + [4633] = 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(6280), 1, + anon_sym_into, + STATE(3975), 1, + aux_sym__query_body_repeat2, + STATE(3926), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + ACTIONS(5881), 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(5879), 32, + anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_where, + 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, @@ -541654,20 +536380,18 @@ 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, - [9930] = 31, + aux_sym_preproc_if_token3, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + [4728] = 31, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -541688,51 +536412,51 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(2967), 1, + ACTIONS(3761), 1, sym__identifier_token, - ACTIONS(2979), 1, - anon_sym_LPAREN, - ACTIONS(3001), 1, - sym_predefined_type, - ACTIONS(3454), 1, - anon_sym_delegate, - ACTIONS(6073), 1, + ACTIONS(4023), 1, anon_sym_ref, - ACTIONS(6077), 1, - anon_sym_scoped, - ACTIONS(6079), 1, + ACTIONS(5622), 1, + anon_sym_delegate, + ACTIONS(5626), 1, anon_sym_var, - STATE(3691), 1, - sym__reserved_identifier, - STATE(4087), 1, + ACTIONS(5628), 1, + sym_predefined_type, + ACTIONS(5793), 1, + anon_sym_scoped, + ACTIONS(6133), 1, + anon_sym_LPAREN, + STATE(3119), 1, sym_identifier, - STATE(4109), 1, - sym_generic_name, - STATE(4292), 1, + STATE(3120), 1, + sym__reserved_identifier, + STATE(3147), 1, + sym_array_type, + STATE(3149), 1, sym_tuple_type, - STATE(4390), 1, + STATE(3151), 1, sym__name, - STATE(4404), 1, - sym_array_type, - STATE(7162), 1, + STATE(3160), 1, + sym_type, + STATE(3184), 1, + sym_generic_name, + STATE(7165), 1, sym__array_base_type, - STATE(7413), 1, + STATE(7401), 1, sym__pointer_base_type, - STATE(7702), 1, - sym_type, - STATE(2347), 3, - sym_implicit_type, - sym_ref_type, - sym_scoped_type, - STATE(4096), 3, + STATE(3143), 3, sym_alias_qualified_name, sym__simple_name, sym_qualified_name, - STATE(4285), 3, + STATE(3146), 3, + sym_implicit_type, + sym_ref_type, + sym_scoped_type, + STATE(3148), 3, sym_nullable_type, sym_pointer_type, sym_function_pointer_type, - STATE(3980), 9, + STATE(3927), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -541742,7 +536466,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(2971), 20, + ACTIONS(3763), 20, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -541763,7 +536487,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [10057] = 15, + [4855] = 31, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -541784,11 +536508,51 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(6259), 1, - anon_sym_into, - STATE(3969), 1, - aux_sym__query_body_repeat2, - STATE(3981), 9, + ACTIONS(2965), 1, + sym__identifier_token, + ACTIONS(2977), 1, + anon_sym_LPAREN, + ACTIONS(2997), 1, + sym_predefined_type, + ACTIONS(3438), 1, + anon_sym_delegate, + ACTIONS(4705), 1, + anon_sym_var, + ACTIONS(6191), 1, + anon_sym_ref, + ACTIONS(6195), 1, + anon_sym_scoped, + STATE(3654), 1, + sym__reserved_identifier, + STATE(4073), 1, + sym_generic_name, + STATE(4081), 1, + sym_identifier, + STATE(4334), 1, + sym_tuple_type, + STATE(4369), 1, + sym__name, + STATE(4373), 1, + sym_array_type, + STATE(7233), 1, + sym__array_base_type, + STATE(7295), 1, + sym_type, + STATE(7357), 1, + sym__pointer_base_type, + STATE(2316), 3, + sym_implicit_type, + sym_ref_type, + sym_scoped_type, + STATE(4068), 3, + sym_alias_qualified_name, + sym__simple_name, + sym_qualified_name, + STATE(4249), 3, + sym_nullable_type, + sym_pointer_type, + sym_function_pointer_type, + STATE(3928), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -541798,52 +536562,28 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5960), 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(5958), 31, - anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_LPAREN, + ACTIONS(2969), 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, - [10152] = 31, + [4982] = 22, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -541864,51 +536604,26 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(2967), 1, - sym__identifier_token, - ACTIONS(2979), 1, + ACTIONS(4697), 1, + anon_sym_DOT, + ACTIONS(4699), 1, + anon_sym_DASH_GT, + ACTIONS(5591), 1, anon_sym_LPAREN, - ACTIONS(3001), 1, - sym_predefined_type, - ACTIONS(3454), 1, - anon_sym_delegate, - ACTIONS(6073), 1, - anon_sym_ref, - ACTIONS(6077), 1, - anon_sym_scoped, - ACTIONS(6079), 1, - anon_sym_var, - STATE(3691), 1, - sym__reserved_identifier, - STATE(4087), 1, - sym_identifier, - STATE(4109), 1, - sym_generic_name, - STATE(4292), 1, - sym_tuple_type, - STATE(4390), 1, - sym__name, - STATE(4404), 1, - sym_array_type, - STATE(7162), 1, - sym__array_base_type, - STATE(7351), 1, - sym_type, - STATE(7413), 1, - sym__pointer_base_type, - STATE(2347), 3, - sym_implicit_type, - sym_ref_type, - sym_scoped_type, - STATE(4096), 3, - sym_alias_qualified_name, - sym__simple_name, - sym_qualified_name, - STATE(4285), 3, - sym_nullable_type, - sym_pointer_type, - sym_function_pointer_type, - STATE(3982), 9, + ACTIONS(5650), 1, + anon_sym_LBRACK, + ACTIONS(5658), 1, + anon_sym_BANG, + ACTIONS(6221), 1, + anon_sym_DOT_DOT, + STATE(2892), 1, + sym_bracketed_argument_list, + STATE(3771), 1, + sym_argument_list, + ACTIONS(5660), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(3929), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -541916,30 +536631,46 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_nullable, sym_preproc_error, sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - ACTIONS(2971), 20, - anon_sym_alias, - anon_sym_global, - anon_sym_file, + sym_preproc_define, + sym_preproc_undef, + ACTIONS(5743), 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(5741), 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, - [10279] = 31, + anon_sym_is, + anon_sym_with, + [5091] = 22, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -541960,51 +536691,26 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(2967), 1, - sym__identifier_token, - ACTIONS(2979), 1, + ACTIONS(4697), 1, + anon_sym_DOT, + ACTIONS(4699), 1, + anon_sym_DASH_GT, + ACTIONS(5591), 1, anon_sym_LPAREN, - ACTIONS(3001), 1, - sym_predefined_type, - ACTIONS(3454), 1, - anon_sym_delegate, - ACTIONS(6073), 1, - anon_sym_ref, - ACTIONS(6077), 1, - anon_sym_scoped, - ACTIONS(6079), 1, - anon_sym_var, - STATE(3691), 1, - sym__reserved_identifier, - STATE(4087), 1, - sym_identifier, - STATE(4109), 1, - sym_generic_name, - STATE(4292), 1, - sym_tuple_type, - STATE(4390), 1, - sym__name, - STATE(4404), 1, - sym_array_type, - STATE(7162), 1, - sym__array_base_type, - STATE(7413), 1, - sym__pointer_base_type, - STATE(7423), 1, - sym_type, - STATE(2347), 3, - sym_implicit_type, - sym_ref_type, - sym_scoped_type, - STATE(4096), 3, - sym_alias_qualified_name, - sym__simple_name, - sym_qualified_name, - STATE(4285), 3, - sym_nullable_type, - sym_pointer_type, - sym_function_pointer_type, - STATE(3983), 9, + ACTIONS(5650), 1, + anon_sym_LBRACK, + ACTIONS(5658), 1, + anon_sym_BANG, + ACTIONS(6221), 1, + anon_sym_DOT_DOT, + STATE(2892), 1, + sym_bracketed_argument_list, + STATE(3771), 1, + sym_argument_list, + ACTIONS(5660), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(3930), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -542014,28 +536720,44 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(2971), 20, - anon_sym_alias, - anon_sym_global, - anon_sym_file, + ACTIONS(1161), 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(1147), 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, - [10406] = 31, + anon_sym_is, + anon_sym_with, + [5200] = 31, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -542056,51 +536778,51 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(2967), 1, + ACTIONS(3798), 1, sym__identifier_token, - ACTIONS(2979), 1, - anon_sym_LPAREN, - ACTIONS(3001), 1, - sym_predefined_type, - ACTIONS(3454), 1, + ACTIONS(3802), 1, + anon_sym_ref, + ACTIONS(5638), 1, anon_sym_delegate, - ACTIONS(4737), 1, + ACTIONS(5642), 1, anon_sym_var, - ACTIONS(6103), 1, - anon_sym_ref, - ACTIONS(6107), 1, + ACTIONS(5644), 1, + sym_predefined_type, + ACTIONS(5700), 1, anon_sym_scoped, - STATE(3691), 1, - sym__reserved_identifier, - STATE(4087), 1, + ACTIONS(6101), 1, + anon_sym_LPAREN, + STATE(3177), 1, sym_identifier, - STATE(4109), 1, + STATE(3205), 1, + sym__reserved_identifier, + STATE(3229), 1, + sym_array_type, + STATE(3241), 1, sym_generic_name, - STATE(4292), 1, + STATE(3308), 1, sym_tuple_type, - STATE(4390), 1, + STATE(3439), 1, + sym_type, + STATE(3488), 1, sym__name, - STATE(4404), 1, - sym_array_type, - STATE(7162), 1, + STATE(7208), 1, sym__array_base_type, - STATE(7413), 1, + STATE(7508), 1, sym__pointer_base_type, - STATE(7497), 1, - sym_type, - STATE(2347), 3, + STATE(3216), 3, + sym_nullable_type, + sym_pointer_type, + sym_function_pointer_type, + STATE(3222), 3, sym_implicit_type, sym_ref_type, sym_scoped_type, - STATE(4096), 3, + STATE(3304), 3, sym_alias_qualified_name, sym__simple_name, sym_qualified_name, - STATE(4285), 3, - sym_nullable_type, - sym_pointer_type, - sym_function_pointer_type, - STATE(3984), 9, + STATE(3931), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -542110,7 +536832,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(2971), 20, + ACTIONS(3800), 20, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -542131,7 +536853,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [10533] = 31, + [5327] = 31, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -542152,51 +536874,51 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(2967), 1, + ACTIONS(3871), 1, sym__identifier_token, - ACTIONS(2979), 1, - anon_sym_LPAREN, - ACTIONS(3001), 1, - sym_predefined_type, - ACTIONS(3454), 1, + ACTIONS(4015), 1, anon_sym_delegate, - ACTIONS(4737), 1, + ACTIONS(4019), 1, anon_sym_var, - ACTIONS(6103), 1, + ACTIONS(4021), 1, + sym_predefined_type, + ACTIONS(4195), 1, anon_sym_ref, - ACTIONS(6107), 1, + ACTIONS(5774), 1, anon_sym_scoped, - STATE(3691), 1, + ACTIONS(6033), 1, + anon_sym_LPAREN, + STATE(2916), 1, sym__reserved_identifier, - STATE(4087), 1, + STATE(2927), 1, sym_identifier, - STATE(4109), 1, - sym_generic_name, - STATE(4292), 1, + STATE(2978), 1, + sym_array_type, + STATE(2980), 1, sym_tuple_type, - STATE(4390), 1, + STATE(3030), 1, + sym_generic_name, + STATE(3045), 1, + sym_type, + STATE(3086), 1, sym__name, - STATE(4404), 1, - sym_array_type, - STATE(7162), 1, + STATE(7236), 1, sym__array_base_type, - STATE(7413), 1, + STATE(7622), 1, sym__pointer_base_type, - STATE(7568), 1, - sym_type, - STATE(2347), 3, - sym_implicit_type, - sym_ref_type, - sym_scoped_type, - STATE(4096), 3, + STATE(2976), 3, sym_alias_qualified_name, sym__simple_name, sym_qualified_name, - STATE(4285), 3, + STATE(2977), 3, + sym_implicit_type, + sym_ref_type, + sym_scoped_type, + STATE(2979), 3, sym_nullable_type, sym_pointer_type, sym_function_pointer_type, - STATE(3985), 9, + STATE(3932), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -542206,7 +536928,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(2971), 20, + ACTIONS(3873), 20, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -542227,7 +536949,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [10660] = 31, + [5454] = 31, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -542248,51 +536970,51 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(2967), 1, + ACTIONS(3814), 1, sym__identifier_token, - ACTIONS(2979), 1, - anon_sym_LPAREN, - ACTIONS(3001), 1, - sym_predefined_type, - ACTIONS(3454), 1, - anon_sym_delegate, - ACTIONS(6073), 1, + ACTIONS(3818), 1, anon_sym_ref, - ACTIONS(6077), 1, - anon_sym_scoped, - ACTIONS(6079), 1, + ACTIONS(5719), 1, + anon_sym_delegate, + ACTIONS(5723), 1, anon_sym_var, - STATE(3691), 1, + ACTIONS(5725), 1, + sym_predefined_type, + ACTIONS(5841), 1, + anon_sym_scoped, + ACTIONS(6123), 1, + anon_sym_LPAREN, + STATE(2900), 1, sym__reserved_identifier, - STATE(4087), 1, - sym_identifier, - STATE(4109), 1, - sym_generic_name, - STATE(4292), 1, + STATE(2934), 1, + sym_array_type, + STATE(2943), 1, sym_tuple_type, - STATE(4390), 1, + STATE(2946), 1, + sym_type, + STATE(2950), 1, + sym_generic_name, + STATE(3317), 1, + sym_identifier, + STATE(3511), 1, sym__name, - STATE(4404), 1, - sym_array_type, - STATE(7162), 1, + STATE(7061), 1, sym__array_base_type, - STATE(7294), 1, - sym_type, - STATE(7413), 1, + STATE(7640), 1, sym__pointer_base_type, - STATE(2347), 3, - sym_implicit_type, - sym_ref_type, - sym_scoped_type, - STATE(4096), 3, + STATE(2907), 3, sym_alias_qualified_name, sym__simple_name, sym_qualified_name, - STATE(4285), 3, + STATE(2926), 3, + sym_implicit_type, + sym_ref_type, + sym_scoped_type, + STATE(2942), 3, sym_nullable_type, sym_pointer_type, sym_function_pointer_type, - STATE(3986), 9, + STATE(3933), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -542302,7 +537024,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(2971), 20, + ACTIONS(3816), 20, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -542323,7 +537045,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [10787] = 31, + [5581] = 31, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -542344,51 +537066,51 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(2967), 1, + ACTIONS(3871), 1, sym__identifier_token, - ACTIONS(2979), 1, - anon_sym_LPAREN, - ACTIONS(3001), 1, - sym_predefined_type, - ACTIONS(3454), 1, + ACTIONS(4015), 1, anon_sym_delegate, - ACTIONS(4737), 1, + ACTIONS(4019), 1, anon_sym_var, - ACTIONS(6103), 1, + ACTIONS(4021), 1, + sym_predefined_type, + ACTIONS(4199), 1, anon_sym_ref, - ACTIONS(6107), 1, + ACTIONS(5791), 1, anon_sym_scoped, - STATE(3691), 1, + ACTIONS(6033), 1, + anon_sym_LPAREN, + STATE(2916), 1, sym__reserved_identifier, - STATE(4087), 1, + STATE(2927), 1, sym_identifier, - STATE(4109), 1, - sym_generic_name, - STATE(4292), 1, + STATE(2978), 1, + sym_array_type, + STATE(2980), 1, sym_tuple_type, - STATE(4390), 1, + STATE(3030), 1, + sym_generic_name, + STATE(3045), 1, + sym_type, + STATE(3086), 1, sym__name, - STATE(4404), 1, - sym_array_type, - STATE(7162), 1, + STATE(7236), 1, sym__array_base_type, - STATE(7305), 1, - sym_type, - STATE(7413), 1, + STATE(7622), 1, sym__pointer_base_type, - STATE(2347), 3, - sym_implicit_type, - sym_ref_type, - sym_scoped_type, - STATE(4096), 3, + STATE(2976), 3, sym_alias_qualified_name, sym__simple_name, sym_qualified_name, - STATE(4285), 3, + STATE(2977), 3, + sym_implicit_type, + sym_ref_type, + sym_scoped_type, + STATE(2979), 3, sym_nullable_type, sym_pointer_type, sym_function_pointer_type, - STATE(3987), 9, + STATE(3934), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -542398,7 +537120,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(2971), 20, + ACTIONS(3873), 20, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -542419,7 +537141,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [10914] = 31, + [5708] = 31, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -542440,51 +537162,51 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(2967), 1, + ACTIONS(2965), 1, sym__identifier_token, - ACTIONS(2979), 1, + ACTIONS(2977), 1, anon_sym_LPAREN, - ACTIONS(4737), 1, + ACTIONS(2995), 1, anon_sym_var, - ACTIONS(5028), 1, - anon_sym_ref, - ACTIONS(5030), 1, + ACTIONS(2997), 1, + sym_predefined_type, + ACTIONS(3438), 1, anon_sym_delegate, - ACTIONS(5036), 1, + ACTIONS(5577), 1, + anon_sym_ref, + ACTIONS(5581), 1, anon_sym_scoped, - ACTIONS(5038), 1, - sym_predefined_type, - STATE(3691), 1, + STATE(2345), 1, + sym_type, + STATE(3654), 1, sym__reserved_identifier, - STATE(4087), 1, - sym_identifier, - STATE(4109), 1, + STATE(4073), 1, sym_generic_name, - STATE(6450), 1, - sym__name, - STATE(6579), 1, + STATE(4081), 1, + sym_identifier, + STATE(4334), 1, sym_tuple_type, - STATE(6694), 1, + STATE(4369), 1, + sym__name, + STATE(4373), 1, sym_array_type, - STATE(7099), 1, - sym_type, - STATE(7162), 1, + STATE(7233), 1, sym__array_base_type, - STATE(7446), 1, + STATE(7357), 1, sym__pointer_base_type, - STATE(4096), 3, + STATE(2316), 3, + sym_implicit_type, + sym_ref_type, + sym_scoped_type, + STATE(4068), 3, sym_alias_qualified_name, sym__simple_name, sym_qualified_name, - STATE(4285), 3, + STATE(4249), 3, sym_nullable_type, sym_pointer_type, sym_function_pointer_type, - STATE(7266), 3, - sym_implicit_type, - sym_ref_type, - sym_scoped_type, - STATE(3988), 9, + STATE(3935), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -542494,7 +537216,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(2971), 20, + ACTIONS(2969), 20, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -542515,7 +537237,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [11041] = 41, + [5835] = 41, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -542536,72 +537258,72 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4755), 1, - anon_sym_DASH_GT, - ACTIONS(4804), 1, + ACTIONS(4753), 1, anon_sym_LPAREN, - ACTIONS(4808), 1, + ACTIONS(4792), 1, anon_sym_DOT, - ACTIONS(4835), 1, + ACTIONS(4794), 1, + anon_sym_DASH_GT, + ACTIONS(4819), 1, anon_sym_LBRACK, - ACTIONS(4839), 1, + ACTIONS(4823), 1, anon_sym_BANG, - ACTIONS(5779), 1, + ACTIONS(5867), 1, anon_sym_or, - ACTIONS(6271), 1, + ACTIONS(6242), 1, anon_sym_QMARK, - ACTIONS(6277), 1, + ACTIONS(6248), 1, anon_sym_SLASH, - ACTIONS(6279), 1, + ACTIONS(6250), 1, anon_sym_CARET, - ACTIONS(6281), 1, + ACTIONS(6252), 1, anon_sym_PIPE, - ACTIONS(6283), 1, + ACTIONS(6254), 1, anon_sym_AMP, - ACTIONS(6287), 1, + ACTIONS(6258), 1, anon_sym_GT_GT, - ACTIONS(6293), 1, + ACTIONS(6264), 1, anon_sym_switch, - ACTIONS(6295), 1, + ACTIONS(6266), 1, anon_sym_DOT_DOT, - ACTIONS(6297), 1, + ACTIONS(6268), 1, anon_sym_AMP_AMP, - ACTIONS(6299), 1, + ACTIONS(6270), 1, anon_sym_PIPE_PIPE, - ACTIONS(6301), 1, + ACTIONS(6272), 1, anon_sym_QMARK_QMARK, - ACTIONS(6303), 1, + ACTIONS(6274), 1, anon_sym_as, - ACTIONS(6305), 1, + ACTIONS(6276), 1, anon_sym_is, - ACTIONS(6307), 1, + ACTIONS(6278), 1, anon_sym_with, - STATE(2433), 1, + STATE(2419), 1, sym_bracketed_argument_list, - STATE(3035), 1, + STATE(2958), 1, sym_argument_list, - ACTIONS(4841), 2, + ACTIONS(4825), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6269), 2, + ACTIONS(6240), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(6273), 2, + ACTIONS(6244), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6275), 2, + ACTIONS(6246), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(6285), 2, + ACTIONS(6256), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(6289), 2, + ACTIONS(6260), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6291), 2, + ACTIONS(6262), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5777), 9, + ACTIONS(5865), 9, anon_sym_where, anon_sym_and, anon_sym_from, @@ -542611,121 +537333,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_orderby, anon_sym_group, anon_sym_select, - STATE(3989), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - [11188] = 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(6309), 1, - anon_sym_and, - 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(6069), 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(6067), 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, - [11281] = 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(6311), 1, - anon_sym_LT, - STATE(4063), 1, - sym_type_argument_list, - STATE(3991), 9, + STATE(3936), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -542735,52 +537343,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(3662), 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_GT, - anon_sym_QMARK, - anon_sym_STAR, - anon_sym_DOT, - anon_sym_EQ_GT, - anon_sym_DASH_GT, - ACTIONS(3660), 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, - [11376] = 31, + [5982] = 31, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -542801,51 +537364,51 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(3788), 1, + ACTIONS(3814), 1, sym__identifier_token, - ACTIONS(4064), 1, + ACTIONS(4203), 1, anon_sym_ref, - ACTIONS(5818), 1, + ACTIONS(5719), 1, anon_sym_delegate, - ACTIONS(5822), 1, + ACTIONS(5723), 1, anon_sym_var, - ACTIONS(5824), 1, + ACTIONS(5725), 1, sym_predefined_type, - ACTIONS(5830), 1, + ACTIONS(5875), 1, anon_sym_scoped, - ACTIONS(6059), 1, + ACTIONS(6123), 1, anon_sym_LPAREN, - STATE(3225), 1, + STATE(2900), 1, sym__reserved_identifier, - STATE(3246), 1, - sym_generic_name, - STATE(3255), 1, + STATE(2934), 1, sym_array_type, - STATE(3258), 1, + STATE(2943), 1, sym_tuple_type, - STATE(3274), 1, + STATE(2950), 1, + sym_generic_name, + STATE(2975), 1, sym_type, - STATE(4654), 1, + STATE(3317), 1, sym_identifier, - STATE(5231), 1, + STATE(3511), 1, sym__name, - STATE(7101), 1, + STATE(7061), 1, sym__array_base_type, - STATE(7546), 1, + STATE(7640), 1, sym__pointer_base_type, - STATE(3251), 3, + STATE(2907), 3, sym_alias_qualified_name, sym__simple_name, sym_qualified_name, - STATE(3253), 3, + STATE(2926), 3, sym_implicit_type, sym_ref_type, sym_scoped_type, - STATE(3257), 3, + STATE(2942), 3, sym_nullable_type, sym_pointer_type, sym_function_pointer_type, - STATE(3992), 9, + STATE(3937), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -542855,7 +537418,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(3790), 20, + ACTIONS(3816), 20, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -542876,94 +537439,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [11503] = 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(4719), 1, - anon_sym_DASH_GT, - ACTIONS(4733), 1, - anon_sym_DOT, - ACTIONS(5624), 1, - anon_sym_LPAREN, - ACTIONS(5658), 1, - anon_sym_LBRACK, - ACTIONS(5666), 1, - anon_sym_BANG, - ACTIONS(6237), 1, - anon_sym_DOT_DOT, - STATE(2902), 1, - sym_bracketed_argument_list, - STATE(3886), 1, - sym_argument_list, - ACTIONS(5668), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(3993), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - ACTIONS(5733), 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(5731), 25, - anon_sym_COMMA, - 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_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_with, - [11612] = 31, + [6109] = 31, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -542984,51 +537460,51 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(3454), 1, - anon_sym_delegate, - ACTIONS(4058), 1, + ACTIONS(3761), 1, sym__identifier_token, - ACTIONS(4062), 1, + ACTIONS(4173), 1, anon_sym_ref, - ACTIONS(5636), 1, + ACTIONS(5622), 1, + anon_sym_delegate, + ACTIONS(5624), 1, anon_sym_scoped, - ACTIONS(5638), 1, + ACTIONS(5626), 1, anon_sym_var, - ACTIONS(5640), 1, + ACTIONS(5628), 1, sym_predefined_type, - ACTIONS(6055), 1, + ACTIONS(6133), 1, anon_sym_LPAREN, - STATE(2343), 1, - sym_type, - STATE(2359), 1, + STATE(3119), 1, sym_identifier, - STATE(2361), 1, + STATE(3120), 1, sym__reserved_identifier, - STATE(2378), 1, + STATE(3147), 1, sym_array_type, - STATE(2380), 1, + STATE(3149), 1, sym_tuple_type, - STATE(2389), 1, - sym_generic_name, - STATE(2419), 1, + STATE(3151), 1, sym__name, - STATE(7103), 1, + STATE(3184), 1, + sym_generic_name, + STATE(3270), 1, + sym_type, + STATE(7165), 1, sym__array_base_type, - STATE(7413), 1, + STATE(7401), 1, sym__pointer_base_type, - STATE(2347), 3, - sym_implicit_type, - sym_ref_type, - sym_scoped_type, - STATE(2373), 3, + STATE(3143), 3, sym_alias_qualified_name, sym__simple_name, sym_qualified_name, - STATE(2379), 3, + STATE(3146), 3, + sym_implicit_type, + sym_ref_type, + sym_scoped_type, + STATE(3148), 3, sym_nullable_type, sym_pointer_type, sym_function_pointer_type, - STATE(3994), 9, + STATE(3938), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -543038,7 +537514,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(4060), 20, + ACTIONS(3763), 20, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -543059,7 +537535,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [11739] = 41, + [6236] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -543080,82 +537556,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4755), 1, - anon_sym_DASH_GT, - ACTIONS(4804), 1, - anon_sym_LPAREN, - ACTIONS(4808), 1, - anon_sym_DOT, - ACTIONS(4835), 1, - anon_sym_LBRACK, - ACTIONS(4839), 1, - anon_sym_BANG, - ACTIONS(5860), 1, - anon_sym_or, - ACTIONS(6271), 1, - anon_sym_QMARK, - ACTIONS(6277), 1, - anon_sym_SLASH, - ACTIONS(6279), 1, - anon_sym_CARET, - ACTIONS(6281), 1, - anon_sym_PIPE, - ACTIONS(6283), 1, - anon_sym_AMP, - ACTIONS(6287), 1, - anon_sym_GT_GT, - ACTIONS(6293), 1, - anon_sym_switch, - ACTIONS(6295), 1, - anon_sym_DOT_DOT, - ACTIONS(6297), 1, - anon_sym_AMP_AMP, - ACTIONS(6299), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6301), 1, - anon_sym_QMARK_QMARK, - ACTIONS(6303), 1, - anon_sym_as, - ACTIONS(6305), 1, - anon_sym_is, - ACTIONS(6307), 1, - anon_sym_with, - STATE(2433), 1, - sym_bracketed_argument_list, - STATE(3035), 1, - sym_argument_list, - ACTIONS(4841), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6269), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(6273), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(6275), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(6285), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - ACTIONS(6289), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(6291), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(5858), 9, - anon_sym_where, + ACTIONS(6282), 1, 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(3995), 9, + ACTIONS(6284), 1, + anon_sym_or, + STATE(3939), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -543165,113 +537570,52 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [11886] = 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(4755), 1, - anon_sym_DASH_GT, - ACTIONS(4804), 1, - anon_sym_LPAREN, - ACTIONS(4808), 1, - anon_sym_DOT, - ACTIONS(4835), 1, - anon_sym_LBRACK, - ACTIONS(4839), 1, - anon_sym_BANG, - ACTIONS(5866), 1, - anon_sym_or, - ACTIONS(6271), 1, + ACTIONS(5360), 12, + anon_sym_LT, + anon_sym_GT, anon_sym_QMARK, - ACTIONS(6277), 1, + anon_sym_BANG, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_SLASH, - ACTIONS(6279), 1, - anon_sym_CARET, - ACTIONS(6281), 1, anon_sym_PIPE, - ACTIONS(6283), 1, anon_sym_AMP, - ACTIONS(6287), 1, anon_sym_GT_GT, - ACTIONS(6293), 1, - anon_sym_switch, - ACTIONS(6295), 1, - anon_sym_DOT_DOT, - ACTIONS(6297), 1, - anon_sym_AMP_AMP, - ACTIONS(6299), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6301), 1, - anon_sym_QMARK_QMARK, - ACTIONS(6303), 1, + anon_sym_DOT, anon_sym_as, - ACTIONS(6305), 1, - anon_sym_is, - ACTIONS(6307), 1, - anon_sym_with, - STATE(2433), 1, - sym_bracketed_argument_list, - STATE(3035), 1, - sym_argument_list, - ACTIONS(4841), 2, + ACTIONS(5358), 31, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_where, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6269), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(6273), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(6275), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(6285), 2, + anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(6289), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6291), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5864), 9, - anon_sym_where, - anon_sym_and, + 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_ascending, + anon_sym_descending, anon_sym_group, anon_sym_select, - STATE(3996), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - [12033] = 41, + anon_sym_is, + anon_sym_DASH_GT, + anon_sym_with, + [6331] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -543292,82 +537636,70 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4755), 1, + ACTIONS(4697), 1, + anon_sym_DOT, + ACTIONS(4699), 1, anon_sym_DASH_GT, - ACTIONS(4804), 1, + ACTIONS(5591), 1, anon_sym_LPAREN, - ACTIONS(4808), 1, - anon_sym_DOT, - ACTIONS(4835), 1, + ACTIONS(5650), 1, anon_sym_LBRACK, - ACTIONS(4839), 1, + ACTIONS(5658), 1, anon_sym_BANG, - ACTIONS(5074), 1, - anon_sym_or, - ACTIONS(6271), 1, - anon_sym_QMARK, - ACTIONS(6277), 1, + ACTIONS(5682), 1, + anon_sym_switch, + ACTIONS(5698), 1, + anon_sym_with, + ACTIONS(5917), 1, + anon_sym_as, + ACTIONS(6207), 1, anon_sym_SLASH, - ACTIONS(6279), 1, + ACTIONS(6209), 1, anon_sym_CARET, - ACTIONS(6281), 1, - anon_sym_PIPE, - ACTIONS(6283), 1, + ACTIONS(6211), 1, anon_sym_AMP, - ACTIONS(6287), 1, + ACTIONS(6215), 1, anon_sym_GT_GT, - ACTIONS(6293), 1, - anon_sym_switch, - ACTIONS(6295), 1, + ACTIONS(6221), 1, anon_sym_DOT_DOT, - ACTIONS(6297), 1, + ACTIONS(6223), 1, + anon_sym_is, + ACTIONS(6232), 1, + anon_sym_PIPE, + ACTIONS(6234), 1, anon_sym_AMP_AMP, - ACTIONS(6299), 1, + ACTIONS(6236), 1, anon_sym_PIPE_PIPE, - ACTIONS(6301), 1, + ACTIONS(6238), 1, anon_sym_QMARK_QMARK, - ACTIONS(6303), 1, - anon_sym_as, - ACTIONS(6305), 1, - anon_sym_is, - ACTIONS(6307), 1, - anon_sym_with, - STATE(2433), 1, + ACTIONS(6286), 1, + anon_sym_QMARK, + STATE(2892), 1, sym_bracketed_argument_list, - STATE(3035), 1, + STATE(3771), 1, sym_argument_list, - ACTIONS(4841), 2, + ACTIONS(5660), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6269), 2, + ACTIONS(6201), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(6273), 2, + ACTIONS(6203), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6275), 2, + ACTIONS(6205), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(6285), 2, + ACTIONS(6213), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(6289), 2, + ACTIONS(6217), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6291), 2, + ACTIONS(6219), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5072), 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(3940), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -543377,113 +537709,18 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [12180] = 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(4755), 1, - anon_sym_DASH_GT, - ACTIONS(4804), 1, - anon_sym_LPAREN, - ACTIONS(4808), 1, - anon_sym_DOT, - ACTIONS(4835), 1, - anon_sym_LBRACK, - ACTIONS(4839), 1, - anon_sym_BANG, - ACTIONS(5884), 1, - anon_sym_or, - ACTIONS(6271), 1, - anon_sym_QMARK, - ACTIONS(6277), 1, - anon_sym_SLASH, - ACTIONS(6279), 1, - anon_sym_CARET, - ACTIONS(6281), 1, - anon_sym_PIPE, - ACTIONS(6283), 1, - anon_sym_AMP, - ACTIONS(6287), 1, - anon_sym_GT_GT, - ACTIONS(6293), 1, - anon_sym_switch, - ACTIONS(6295), 1, - anon_sym_DOT_DOT, - ACTIONS(6297), 1, - anon_sym_AMP_AMP, - ACTIONS(6299), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6301), 1, - anon_sym_QMARK_QMARK, - ACTIONS(6303), 1, - anon_sym_as, - ACTIONS(6305), 1, - anon_sym_is, - ACTIONS(6307), 1, - anon_sym_with, - STATE(2433), 1, - sym_bracketed_argument_list, - STATE(3035), 1, - sym_argument_list, - ACTIONS(4841), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6269), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(6273), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(6275), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(6285), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - ACTIONS(6289), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(6291), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(5882), 9, + ACTIONS(5801), 10, + anon_sym_COMMA, 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, - 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, - [12327] = 35, + [6476] = 31, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -543504,62 +537741,51 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4755), 1, - anon_sym_DASH_GT, - ACTIONS(4804), 1, + ACTIONS(3814), 1, + sym__identifier_token, + ACTIONS(4165), 1, + anon_sym_ref, + ACTIONS(5719), 1, + anon_sym_delegate, + ACTIONS(5721), 1, + anon_sym_scoped, + ACTIONS(5723), 1, + anon_sym_var, + ACTIONS(5725), 1, + sym_predefined_type, + ACTIONS(6123), 1, anon_sym_LPAREN, - ACTIONS(4808), 1, - anon_sym_DOT, - ACTIONS(4835), 1, - anon_sym_LBRACK, - ACTIONS(4839), 1, - anon_sym_BANG, - ACTIONS(6277), 1, - anon_sym_SLASH, - ACTIONS(6283), 1, - anon_sym_AMP, - ACTIONS(6287), 1, - anon_sym_GT_GT, - ACTIONS(6293), 1, - anon_sym_switch, - ACTIONS(6295), 1, - anon_sym_DOT_DOT, - ACTIONS(6303), 1, - anon_sym_as, - ACTIONS(6305), 1, - anon_sym_is, - ACTIONS(6307), 1, - anon_sym_with, - STATE(2433), 1, - sym_bracketed_argument_list, - STATE(3035), 1, - sym_argument_list, - ACTIONS(4841), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6269), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(6273), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(6275), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(6285), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - ACTIONS(6289), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(6291), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(5664), 3, - anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_or, - STATE(3999), 9, + STATE(2900), 1, + sym__reserved_identifier, + STATE(2934), 1, + sym_array_type, + STATE(2943), 1, + sym_tuple_type, + STATE(2946), 1, + sym_type, + STATE(2950), 1, + sym_generic_name, + STATE(3741), 1, + sym_identifier, + STATE(4060), 1, + sym__name, + STATE(7061), 1, + sym__array_base_type, + STATE(7640), 1, + sym__pointer_base_type, + STATE(2907), 3, + sym_alias_qualified_name, + sym__simple_name, + sym_qualified_name, + STATE(2926), 3, + sym_implicit_type, + sym_ref_type, + sym_scoped_type, + STATE(2942), 3, + sym_nullable_type, + sym_pointer_type, + sym_function_pointer_type, + STATE(3941), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -543569,21 +537795,28 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5660), 13, + ACTIONS(3816), 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, - [12462] = 36, + [6603] = 31, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -543604,64 +537837,51 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4755), 1, - anon_sym_DASH_GT, - ACTIONS(4804), 1, + ACTIONS(3871), 1, + sym__identifier_token, + ACTIONS(4015), 1, + anon_sym_delegate, + ACTIONS(4019), 1, + anon_sym_var, + ACTIONS(4021), 1, + sym_predefined_type, + ACTIONS(4197), 1, + anon_sym_ref, + ACTIONS(5769), 1, + anon_sym_scoped, + ACTIONS(6033), 1, anon_sym_LPAREN, - ACTIONS(4808), 1, - anon_sym_DOT, - ACTIONS(4835), 1, - anon_sym_LBRACK, - ACTIONS(4839), 1, - anon_sym_BANG, - ACTIONS(6277), 1, - anon_sym_SLASH, - ACTIONS(6279), 1, - anon_sym_CARET, - ACTIONS(6283), 1, - anon_sym_AMP, - ACTIONS(6287), 1, - anon_sym_GT_GT, - ACTIONS(6293), 1, - anon_sym_switch, - ACTIONS(6295), 1, - anon_sym_DOT_DOT, - ACTIONS(6303), 1, - anon_sym_as, - ACTIONS(6305), 1, - anon_sym_is, - ACTIONS(6307), 1, - anon_sym_with, - STATE(2433), 1, - sym_bracketed_argument_list, - STATE(3035), 1, - sym_argument_list, - ACTIONS(4841), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6269), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(6273), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(6275), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(6285), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - ACTIONS(6289), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(6291), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(5664), 3, - anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_or, - STATE(4000), 9, + STATE(2916), 1, + sym__reserved_identifier, + STATE(2927), 1, + sym_identifier, + STATE(2978), 1, + sym_array_type, + STATE(2980), 1, + sym_tuple_type, + STATE(3030), 1, + sym_generic_name, + STATE(3086), 1, + sym__name, + STATE(3099), 1, + sym_type, + STATE(7236), 1, + sym__array_base_type, + STATE(7622), 1, + sym__pointer_base_type, + STATE(2976), 3, + sym_alias_qualified_name, + sym__simple_name, + sym_qualified_name, + STATE(2977), 3, + sym_implicit_type, + sym_ref_type, + sym_scoped_type, + STATE(2979), 3, + sym_nullable_type, + sym_pointer_type, + sym_function_pointer_type, + STATE(3942), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -543671,20 +537891,28 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5660), 12, + ACTIONS(3873), 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, - [12599] = 34, + [6730] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -543705,61 +537933,70 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4755), 1, + ACTIONS(4697), 1, + anon_sym_DOT, + ACTIONS(4699), 1, anon_sym_DASH_GT, - ACTIONS(4804), 1, + ACTIONS(5591), 1, anon_sym_LPAREN, - ACTIONS(4808), 1, - anon_sym_DOT, - ACTIONS(4835), 1, + ACTIONS(5650), 1, anon_sym_LBRACK, - ACTIONS(4839), 1, + ACTIONS(5658), 1, anon_sym_BANG, - ACTIONS(6277), 1, + ACTIONS(5682), 1, + anon_sym_switch, + ACTIONS(5698), 1, + anon_sym_with, + ACTIONS(5917), 1, + anon_sym_as, + ACTIONS(6207), 1, anon_sym_SLASH, - ACTIONS(6287), 1, + ACTIONS(6209), 1, + anon_sym_CARET, + ACTIONS(6211), 1, + anon_sym_AMP, + ACTIONS(6215), 1, anon_sym_GT_GT, - ACTIONS(6293), 1, - anon_sym_switch, - ACTIONS(6295), 1, + ACTIONS(6221), 1, anon_sym_DOT_DOT, - ACTIONS(6303), 1, - anon_sym_as, - ACTIONS(6305), 1, + ACTIONS(6223), 1, anon_sym_is, - ACTIONS(6307), 1, - anon_sym_with, - STATE(2433), 1, + ACTIONS(6232), 1, + anon_sym_PIPE, + ACTIONS(6234), 1, + anon_sym_AMP_AMP, + ACTIONS(6236), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6238), 1, + anon_sym_QMARK_QMARK, + ACTIONS(6286), 1, + anon_sym_QMARK, + STATE(2892), 1, sym_bracketed_argument_list, - STATE(3035), 1, + STATE(3771), 1, sym_argument_list, - ACTIONS(4841), 2, + ACTIONS(5660), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6269), 2, + ACTIONS(6201), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(6273), 2, + ACTIONS(6203), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6275), 2, + ACTIONS(6205), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(6285), 2, + ACTIONS(6213), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(6289), 2, + ACTIONS(6217), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6291), 2, + ACTIONS(6219), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5664), 4, - anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_or, - STATE(4001), 9, + STATE(3943), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -543769,21 +538006,18 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5660), 13, + ACTIONS(5849), 10, + anon_sym_COMMA, 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_into, anon_sym_join, anon_sym_let, anon_sym_orderby, + anon_sym_ascending, + anon_sym_descending, anon_sym_group, anon_sym_select, - [12732] = 33, + [6875] = 31, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -543804,58 +538038,51 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4755), 1, - anon_sym_DASH_GT, - ACTIONS(4804), 1, + ACTIONS(3438), 1, + anon_sym_delegate, + ACTIONS(3582), 1, + anon_sym_ref, + ACTIONS(4080), 1, + sym__identifier_token, + ACTIONS(5817), 1, + anon_sym_var, + ACTIONS(5819), 1, + sym_predefined_type, + ACTIONS(6111), 1, anon_sym_LPAREN, - ACTIONS(4808), 1, - anon_sym_DOT, - ACTIONS(4835), 1, - anon_sym_LBRACK, - ACTIONS(4839), 1, - anon_sym_BANG, - ACTIONS(6277), 1, - anon_sym_SLASH, - ACTIONS(6287), 1, - anon_sym_GT_GT, - ACTIONS(6293), 1, - anon_sym_switch, - ACTIONS(6295), 1, - anon_sym_DOT_DOT, - ACTIONS(6303), 1, - anon_sym_as, - ACTIONS(6305), 1, - anon_sym_is, - ACTIONS(6307), 1, - anon_sym_with, - STATE(2433), 1, - sym_bracketed_argument_list, - STATE(3035), 1, - sym_argument_list, - ACTIONS(4841), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6269), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(6273), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(6275), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(6285), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - ACTIONS(6291), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(5664), 4, - anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_or, - STATE(4002), 9, + ACTIONS(6113), 1, + anon_sym_scoped, + STATE(2345), 1, + sym_type, + STATE(2351), 1, + sym_identifier, + STATE(2354), 1, + sym__reserved_identifier, + STATE(2373), 1, + sym_array_type, + STATE(2377), 1, + sym_tuple_type, + STATE(2384), 1, + sym_generic_name, + STATE(2411), 1, + sym__name, + STATE(7083), 1, + sym__array_base_type, + STATE(7357), 1, + sym__pointer_base_type, + STATE(2316), 3, + sym_implicit_type, + sym_ref_type, + sym_scoped_type, + STATE(2375), 3, + sym_nullable_type, + sym_pointer_type, + sym_function_pointer_type, + STATE(2402), 3, + sym_alias_qualified_name, + sym__simple_name, + sym_qualified_name, + STATE(3944), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -543864,24 +538091,29 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_error, sym_preproc_warning, sym_preproc_define, - sym_preproc_undef, - ACTIONS(5660), 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, + sym_preproc_undef, + ACTIONS(4082), 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, - [12863] = 37, + [7002] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -543902,65 +538134,70 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4755), 1, + ACTIONS(4697), 1, + anon_sym_DOT, + ACTIONS(4699), 1, anon_sym_DASH_GT, - ACTIONS(4804), 1, + ACTIONS(5591), 1, anon_sym_LPAREN, - ACTIONS(4808), 1, - anon_sym_DOT, - ACTIONS(4835), 1, + ACTIONS(5650), 1, anon_sym_LBRACK, - ACTIONS(4839), 1, + ACTIONS(5658), 1, anon_sym_BANG, - ACTIONS(6277), 1, + ACTIONS(5682), 1, + anon_sym_switch, + ACTIONS(5698), 1, + anon_sym_with, + ACTIONS(5917), 1, + anon_sym_as, + ACTIONS(6207), 1, anon_sym_SLASH, - ACTIONS(6279), 1, + ACTIONS(6209), 1, anon_sym_CARET, - ACTIONS(6281), 1, - anon_sym_PIPE, - ACTIONS(6283), 1, + ACTIONS(6211), 1, anon_sym_AMP, - ACTIONS(6287), 1, + ACTIONS(6215), 1, anon_sym_GT_GT, - ACTIONS(6293), 1, - anon_sym_switch, - ACTIONS(6295), 1, + ACTIONS(6221), 1, anon_sym_DOT_DOT, - ACTIONS(6303), 1, - anon_sym_as, - ACTIONS(6305), 1, + ACTIONS(6223), 1, anon_sym_is, - ACTIONS(6307), 1, - anon_sym_with, - STATE(2433), 1, + ACTIONS(6232), 1, + anon_sym_PIPE, + ACTIONS(6234), 1, + anon_sym_AMP_AMP, + ACTIONS(6236), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6238), 1, + anon_sym_QMARK_QMARK, + ACTIONS(6286), 1, + anon_sym_QMARK, + STATE(2892), 1, sym_bracketed_argument_list, - STATE(3035), 1, + STATE(3771), 1, sym_argument_list, - ACTIONS(4841), 2, + ACTIONS(5660), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5664), 2, - anon_sym_QMARK, - anon_sym_or, - ACTIONS(6269), 2, + ACTIONS(6201), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(6273), 2, + ACTIONS(6203), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6275), 2, + ACTIONS(6205), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(6285), 2, + ACTIONS(6213), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(6289), 2, + ACTIONS(6217), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6291), 2, + ACTIONS(6219), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - STATE(4003), 9, + STATE(3945), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -543970,20 +538207,18 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5660), 12, + ACTIONS(4996), 10, + anon_sym_COMMA, 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_ascending, + anon_sym_descending, anon_sym_group, anon_sym_select, - [13002] = 38, + [7147] = 31, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -544004,67 +538239,51 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4755), 1, - anon_sym_DASH_GT, - ACTIONS(4804), 1, + ACTIONS(3438), 1, + anon_sym_delegate, + ACTIONS(4080), 1, + sym__identifier_token, + ACTIONS(4086), 1, + anon_sym_ref, + ACTIONS(5817), 1, + anon_sym_var, + ACTIONS(5819), 1, + sym_predefined_type, + ACTIONS(5845), 1, + anon_sym_scoped, + ACTIONS(6111), 1, anon_sym_LPAREN, - ACTIONS(4808), 1, - anon_sym_DOT, - ACTIONS(4835), 1, - anon_sym_LBRACK, - ACTIONS(4839), 1, - anon_sym_BANG, - ACTIONS(6277), 1, - anon_sym_SLASH, - ACTIONS(6279), 1, - anon_sym_CARET, - ACTIONS(6281), 1, - anon_sym_PIPE, - ACTIONS(6283), 1, - anon_sym_AMP, - ACTIONS(6287), 1, - anon_sym_GT_GT, - ACTIONS(6293), 1, - anon_sym_switch, - ACTIONS(6295), 1, - anon_sym_DOT_DOT, - ACTIONS(6297), 1, - anon_sym_AMP_AMP, - ACTIONS(6303), 1, - anon_sym_as, - ACTIONS(6305), 1, - anon_sym_is, - ACTIONS(6307), 1, - anon_sym_with, - STATE(2433), 1, - sym_bracketed_argument_list, - STATE(3035), 1, - sym_argument_list, - ACTIONS(4841), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5664), 2, - anon_sym_QMARK, - anon_sym_or, - ACTIONS(6269), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(6273), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(6275), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(6285), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - ACTIONS(6289), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(6291), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - STATE(4004), 9, + STATE(2345), 1, + sym_type, + STATE(2351), 1, + sym_identifier, + STATE(2354), 1, + sym__reserved_identifier, + STATE(2373), 1, + sym_array_type, + STATE(2377), 1, + sym_tuple_type, + STATE(2384), 1, + sym_generic_name, + STATE(2411), 1, + sym__name, + STATE(7083), 1, + sym__array_base_type, + STATE(7357), 1, + sym__pointer_base_type, + STATE(2316), 3, + sym_implicit_type, + sym_ref_type, + sym_scoped_type, + STATE(2375), 3, + sym_nullable_type, + sym_pointer_type, + sym_function_pointer_type, + STATE(2402), 3, + sym_alias_qualified_name, + sym__simple_name, + sym_qualified_name, + STATE(3946), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -544074,19 +538293,28 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5660), 11, + ACTIONS(4082), 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, - [13143] = 40, + [7274] = 23, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -544107,81 +538335,41 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4755), 1, - anon_sym_DASH_GT, - ACTIONS(4804), 1, - anon_sym_LPAREN, - ACTIONS(4808), 1, - anon_sym_DOT, - ACTIONS(4835), 1, - anon_sym_LBRACK, - ACTIONS(4839), 1, - anon_sym_BANG, - ACTIONS(6277), 1, - anon_sym_SLASH, - ACTIONS(6279), 1, - anon_sym_CARET, - ACTIONS(6281), 1, - anon_sym_PIPE, - ACTIONS(6283), 1, - anon_sym_AMP, - ACTIONS(6287), 1, - anon_sym_GT_GT, - ACTIONS(6293), 1, - anon_sym_switch, - ACTIONS(6295), 1, - anon_sym_DOT_DOT, - ACTIONS(6297), 1, - anon_sym_AMP_AMP, - ACTIONS(6299), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6301), 1, - anon_sym_QMARK_QMARK, - ACTIONS(6303), 1, - anon_sym_as, - ACTIONS(6305), 1, - anon_sym_is, - ACTIONS(6307), 1, - anon_sym_with, - STATE(2433), 1, - sym_bracketed_argument_list, - STATE(3035), 1, - sym_argument_list, - ACTIONS(4841), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5664), 2, - anon_sym_QMARK, + ACTIONS(3584), 1, + sym__identifier_token, + ACTIONS(3646), 1, + anon_sym_ref, + STATE(2168), 1, + sym__reserved_identifier, + STATE(2170), 1, + sym_generic_name, + STATE(2331), 1, + sym_ref_type, + STATE(2339), 1, + sym__scoped_base_type, + STATE(5738), 1, + sym_identifier, + STATE(5818), 1, + sym__name, + STATE(4068), 3, + sym_alias_qualified_name, + sym__simple_name, + sym_qualified_name, + ACTIONS(3431), 4, + anon_sym_COLON, + sym_discard, + anon_sym_and, anon_sym_or, - ACTIONS(6269), 2, + ACTIONS(3429), 8, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_LBRACE, anon_sym_LT, - anon_sym_GT, - ACTIONS(6273), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(6275), 2, + anon_sym_QMARK, anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(6285), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - ACTIONS(6289), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(6291), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(5660), 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(4005), 9, + anon_sym_DOT, + anon_sym_COLON_COLON, + STATE(3947), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -544191,7 +538379,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [13288] = 15, + ACTIONS(3587), 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, + [7385] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -544212,11 +538423,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(6309), 1, + ACTIONS(6282), 1, anon_sym_and, - ACTIONS(6313), 1, - anon_sym_or, - STATE(4006), 9, + STATE(3948), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -544226,7 +538435,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5356), 12, + ACTIONS(6097), 13, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, @@ -544238,8 +538447,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(5354), 31, + ACTIONS(6095), 31, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_LPAREN, @@ -544271,7 +538481,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, anon_sym_DASH_GT, anon_sym_with, - [13383] = 31, + [7478] = 31, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -544292,51 +538502,51 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(3788), 1, + ACTIONS(3871), 1, sym__identifier_token, - ACTIONS(4064), 1, + ACTIONS(3875), 1, anon_sym_ref, - ACTIONS(5818), 1, + ACTIONS(4015), 1, anon_sym_delegate, - ACTIONS(5822), 1, + ACTIONS(4017), 1, + anon_sym_scoped, + ACTIONS(4019), 1, anon_sym_var, - ACTIONS(5824), 1, + ACTIONS(4021), 1, sym_predefined_type, - ACTIONS(5830), 1, - anon_sym_scoped, - ACTIONS(6059), 1, + ACTIONS(6033), 1, anon_sym_LPAREN, - STATE(3225), 1, + STATE(2916), 1, sym__reserved_identifier, - STATE(3246), 1, - sym_generic_name, - STATE(3255), 1, + STATE(2927), 1, + sym_identifier, + STATE(2978), 1, sym_array_type, - STATE(3258), 1, + STATE(2980), 1, sym_tuple_type, - STATE(3360), 1, + STATE(3030), 1, + sym_generic_name, + STATE(3045), 1, sym_type, - STATE(4654), 1, - sym_identifier, - STATE(5231), 1, + STATE(3086), 1, sym__name, - STATE(7101), 1, + STATE(7236), 1, sym__array_base_type, - STATE(7546), 1, + STATE(7622), 1, sym__pointer_base_type, - STATE(3251), 3, + STATE(2976), 3, sym_alias_qualified_name, sym__simple_name, sym_qualified_name, - STATE(3253), 3, + STATE(2977), 3, sym_implicit_type, sym_ref_type, sym_scoped_type, - STATE(3257), 3, + STATE(2979), 3, sym_nullable_type, sym_pointer_type, sym_function_pointer_type, - STATE(4007), 9, + STATE(3949), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -544346,7 +538556,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(3790), 20, + ACTIONS(3873), 20, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -544367,7 +538577,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [13510] = 31, + [7605] = 31, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -544388,51 +538598,51 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(2967), 1, + ACTIONS(2965), 1, sym__identifier_token, - ACTIONS(2979), 1, + ACTIONS(2977), 1, anon_sym_LPAREN, - ACTIONS(3001), 1, + ACTIONS(2997), 1, sym_predefined_type, - ACTIONS(3454), 1, + ACTIONS(3438), 1, anon_sym_delegate, - ACTIONS(6073), 1, + ACTIONS(6039), 1, + anon_sym_var, + ACTIONS(6139), 1, anon_sym_ref, - ACTIONS(6077), 1, + ACTIONS(6143), 1, anon_sym_scoped, - ACTIONS(6079), 1, - anon_sym_var, - STATE(3691), 1, + STATE(3654), 1, sym__reserved_identifier, - STATE(4087), 1, - sym_identifier, - STATE(4109), 1, + STATE(4073), 1, sym_generic_name, - STATE(4292), 1, + STATE(4081), 1, + sym_identifier, + STATE(4334), 1, sym_tuple_type, - STATE(4390), 1, + STATE(4369), 1, sym__name, - STATE(4404), 1, + STATE(4373), 1, sym_array_type, - STATE(7162), 1, + STATE(7233), 1, sym__array_base_type, - STATE(7413), 1, - sym__pointer_base_type, - STATE(7617), 1, + STATE(7342), 1, sym_type, - STATE(2347), 3, + STATE(7357), 1, + sym__pointer_base_type, + STATE(2316), 3, sym_implicit_type, sym_ref_type, sym_scoped_type, - STATE(4096), 3, + STATE(4068), 3, sym_alias_qualified_name, sym__simple_name, sym_qualified_name, - STATE(4285), 3, + STATE(4249), 3, sym_nullable_type, sym_pointer_type, sym_function_pointer_type, - STATE(4008), 9, + STATE(3950), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -544442,7 +538652,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(2971), 20, + ACTIONS(2969), 20, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -544463,7 +538673,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [13637] = 31, + [7732] = 31, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -544484,51 +538694,51 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(2967), 1, + ACTIONS(3871), 1, sym__identifier_token, - ACTIONS(2979), 1, - anon_sym_LPAREN, - ACTIONS(3001), 1, - sym_predefined_type, - ACTIONS(3454), 1, - anon_sym_delegate, - ACTIONS(6073), 1, + ACTIONS(4007), 1, anon_sym_ref, - ACTIONS(6077), 1, - anon_sym_scoped, - ACTIONS(6079), 1, + ACTIONS(4015), 1, + anon_sym_delegate, + ACTIONS(4019), 1, anon_sym_var, - STATE(2343), 1, - sym_type, - STATE(3691), 1, + ACTIONS(4021), 1, + sym_predefined_type, + ACTIONS(5731), 1, + anon_sym_scoped, + ACTIONS(6033), 1, + anon_sym_LPAREN, + STATE(2916), 1, sym__reserved_identifier, - STATE(4087), 1, - sym_identifier, - STATE(4109), 1, - sym_generic_name, - STATE(4292), 1, + STATE(2978), 1, + sym_array_type, + STATE(2980), 1, sym_tuple_type, - STATE(4390), 1, + STATE(3030), 1, + sym_generic_name, + STATE(3099), 1, + sym_type, + STATE(4356), 1, + sym_identifier, + STATE(5082), 1, sym__name, - STATE(4404), 1, - sym_array_type, - STATE(7162), 1, + STATE(7236), 1, sym__array_base_type, - STATE(7413), 1, + STATE(7622), 1, sym__pointer_base_type, - STATE(2347), 3, - sym_implicit_type, - sym_ref_type, - sym_scoped_type, - STATE(4096), 3, + STATE(2976), 3, sym_alias_qualified_name, sym__simple_name, sym_qualified_name, - STATE(4285), 3, + STATE(2977), 3, + sym_implicit_type, + sym_ref_type, + sym_scoped_type, + STATE(2979), 3, sym_nullable_type, sym_pointer_type, sym_function_pointer_type, - STATE(4009), 9, + STATE(3951), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -544538,7 +538748,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(2971), 20, + ACTIONS(3873), 20, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -544559,7 +538769,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [13764] = 31, + [7859] = 31, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -544580,51 +538790,51 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(2967), 1, + ACTIONS(3798), 1, sym__identifier_token, - ACTIONS(2979), 1, - anon_sym_LPAREN, - ACTIONS(3001), 1, - sym_predefined_type, - ACTIONS(3454), 1, - anon_sym_delegate, - ACTIONS(6073), 1, + ACTIONS(4078), 1, anon_sym_ref, - ACTIONS(6077), 1, + ACTIONS(5638), 1, + anon_sym_delegate, + ACTIONS(5640), 1, anon_sym_scoped, - ACTIONS(6079), 1, + ACTIONS(5642), 1, anon_sym_var, - STATE(3691), 1, + ACTIONS(5644), 1, + sym_predefined_type, + ACTIONS(6101), 1, + anon_sym_LPAREN, + STATE(3205), 1, sym__reserved_identifier, - STATE(4087), 1, - sym_identifier, - STATE(4109), 1, + STATE(3226), 1, + sym_type, + STATE(3229), 1, + sym_array_type, + STATE(3241), 1, sym_generic_name, - STATE(4292), 1, + STATE(3308), 1, sym_tuple_type, - STATE(4390), 1, + STATE(4542), 1, + sym_identifier, + STATE(5140), 1, sym__name, - STATE(4404), 1, - sym_array_type, - STATE(7162), 1, + STATE(7208), 1, sym__array_base_type, - STATE(7413), 1, + STATE(7508), 1, sym__pointer_base_type, - STATE(7690), 1, - sym_type, - STATE(2347), 3, + STATE(3216), 3, + sym_nullable_type, + sym_pointer_type, + sym_function_pointer_type, + STATE(3222), 3, sym_implicit_type, sym_ref_type, sym_scoped_type, - STATE(4096), 3, + STATE(3304), 3, sym_alias_qualified_name, sym__simple_name, sym_qualified_name, - STATE(4285), 3, - sym_nullable_type, - sym_pointer_type, - sym_function_pointer_type, - STATE(4010), 9, + STATE(3952), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -544634,7 +538844,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(2971), 20, + ACTIONS(3800), 20, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -544655,7 +538865,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [13891] = 31, + [7986] = 31, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -544676,51 +538886,51 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(2967), 1, + ACTIONS(3871), 1, sym__identifier_token, - ACTIONS(2979), 1, - anon_sym_LPAREN, - ACTIONS(3001), 1, - sym_predefined_type, - ACTIONS(3454), 1, + ACTIONS(4015), 1, anon_sym_delegate, - ACTIONS(6073), 1, + ACTIONS(4019), 1, + anon_sym_var, + ACTIONS(4021), 1, + sym_predefined_type, + ACTIONS(4197), 1, anon_sym_ref, - ACTIONS(6077), 1, + ACTIONS(5769), 1, anon_sym_scoped, - ACTIONS(6079), 1, - anon_sym_var, - STATE(3691), 1, + ACTIONS(6033), 1, + anon_sym_LPAREN, + STATE(2916), 1, sym__reserved_identifier, - STATE(4087), 1, + STATE(2927), 1, sym_identifier, - STATE(4109), 1, - sym_generic_name, - STATE(4292), 1, + STATE(2978), 1, + sym_array_type, + STATE(2980), 1, sym_tuple_type, - STATE(4390), 1, + STATE(3030), 1, + sym_generic_name, + STATE(3045), 1, + sym_type, + STATE(3086), 1, sym__name, - STATE(4404), 1, - sym_array_type, - STATE(7162), 1, + STATE(7236), 1, sym__array_base_type, - STATE(7413), 1, + STATE(7622), 1, sym__pointer_base_type, - STATE(7694), 1, - sym_type, - STATE(2347), 3, - sym_implicit_type, - sym_ref_type, - sym_scoped_type, - STATE(4096), 3, + STATE(2976), 3, sym_alias_qualified_name, sym__simple_name, sym_qualified_name, - STATE(4285), 3, + STATE(2977), 3, + sym_implicit_type, + sym_ref_type, + sym_scoped_type, + STATE(2979), 3, sym_nullable_type, sym_pointer_type, sym_function_pointer_type, - STATE(4011), 9, + STATE(3953), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -544730,7 +538940,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(2971), 20, + ACTIONS(3873), 20, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -544751,7 +538961,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [14018] = 31, + [8113] = 31, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -544772,51 +538982,51 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(2967), 1, + ACTIONS(3632), 1, + anon_sym_ref, + ACTIONS(6081), 1, sym__identifier_token, - ACTIONS(2979), 1, + ACTIONS(6085), 1, anon_sym_LPAREN, - ACTIONS(3001), 1, - sym_predefined_type, - ACTIONS(3454), 1, + ACTIONS(6087), 1, anon_sym_delegate, - ACTIONS(4737), 1, - anon_sym_var, - ACTIONS(6103), 1, - anon_sym_ref, - ACTIONS(6107), 1, + ACTIONS(6089), 1, anon_sym_scoped, - STATE(3691), 1, - sym__reserved_identifier, - STATE(4087), 1, + ACTIONS(6091), 1, + anon_sym_var, + ACTIONS(6093), 1, + sym_predefined_type, + STATE(2582), 1, sym_identifier, - STATE(4109), 1, + STATE(2620), 1, + sym__reserved_identifier, + STATE(2698), 1, sym_generic_name, - STATE(4292), 1, + STATE(2753), 1, + sym_type, + STATE(2822), 1, + sym_array_type, + STATE(2825), 1, sym_tuple_type, - STATE(4390), 1, + STATE(2829), 1, sym__name, - STATE(4404), 1, - sym_array_type, - STATE(7162), 1, + STATE(7081), 1, sym__array_base_type, - STATE(7413), 1, + STATE(7400), 1, sym__pointer_base_type, - STATE(7607), 1, - sym_type, - STATE(2347), 3, + STATE(2701), 3, sym_implicit_type, sym_ref_type, sym_scoped_type, - STATE(4096), 3, + STATE(2821), 3, sym_alias_qualified_name, sym__simple_name, sym_qualified_name, - STATE(4285), 3, + STATE(2823), 3, sym_nullable_type, sym_pointer_type, sym_function_pointer_type, - STATE(4012), 9, + STATE(3954), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -544826,7 +539036,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(2971), 20, + ACTIONS(6083), 20, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -544847,7 +539057,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [14145] = 31, + [8240] = 31, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -544868,51 +539078,51 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(2967), 1, + ACTIONS(2965), 1, sym__identifier_token, - ACTIONS(2979), 1, + ACTIONS(2977), 1, anon_sym_LPAREN, - ACTIONS(3001), 1, + ACTIONS(2997), 1, sym_predefined_type, - ACTIONS(3454), 1, + ACTIONS(3438), 1, anon_sym_delegate, - ACTIONS(4737), 1, + ACTIONS(4705), 1, anon_sym_var, - ACTIONS(6103), 1, + ACTIONS(6191), 1, anon_sym_ref, - ACTIONS(6107), 1, + ACTIONS(6195), 1, anon_sym_scoped, - STATE(3691), 1, + STATE(2345), 1, + sym_type, + STATE(3654), 1, sym__reserved_identifier, - STATE(4087), 1, - sym_identifier, - STATE(4109), 1, + STATE(4073), 1, sym_generic_name, - STATE(4292), 1, + STATE(4081), 1, + sym_identifier, + STATE(4334), 1, sym_tuple_type, - STATE(4390), 1, + STATE(4369), 1, sym__name, - STATE(4404), 1, + STATE(4373), 1, sym_array_type, - STATE(7162), 1, + STATE(7233), 1, sym__array_base_type, - STATE(7413), 1, + STATE(7357), 1, sym__pointer_base_type, - STATE(7638), 1, - sym_type, - STATE(2347), 3, + STATE(2316), 3, sym_implicit_type, sym_ref_type, sym_scoped_type, - STATE(4096), 3, + STATE(4068), 3, sym_alias_qualified_name, sym__simple_name, sym_qualified_name, - STATE(4285), 3, + STATE(4249), 3, sym_nullable_type, sym_pointer_type, sym_function_pointer_type, - STATE(4013), 9, + STATE(3955), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -544922,7 +539132,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(2971), 20, + ACTIONS(2969), 20, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -544943,7 +539153,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [14272] = 31, + [8367] = 31, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -544964,51 +539174,51 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(2967), 1, + ACTIONS(3814), 1, sym__identifier_token, - ACTIONS(2979), 1, - anon_sym_LPAREN, - ACTIONS(3001), 1, - sym_predefined_type, - ACTIONS(3454), 1, - anon_sym_delegate, - ACTIONS(6073), 1, + ACTIONS(4185), 1, anon_sym_ref, - ACTIONS(6077), 1, - anon_sym_scoped, - ACTIONS(6079), 1, + ACTIONS(5719), 1, + anon_sym_delegate, + ACTIONS(5723), 1, anon_sym_var, - STATE(3691), 1, + ACTIONS(5725), 1, + sym_predefined_type, + ACTIONS(5847), 1, + anon_sym_scoped, + ACTIONS(6123), 1, + anon_sym_LPAREN, + STATE(2900), 1, sym__reserved_identifier, - STATE(4087), 1, - sym_identifier, - STATE(4109), 1, - sym_generic_name, - STATE(4292), 1, + STATE(2934), 1, + sym_array_type, + STATE(2943), 1, sym_tuple_type, - STATE(4390), 1, + STATE(2946), 1, + sym_type, + STATE(2950), 1, + sym_generic_name, + STATE(3317), 1, + sym_identifier, + STATE(3511), 1, sym__name, - STATE(4404), 1, - sym_array_type, - STATE(7162), 1, + STATE(7061), 1, sym__array_base_type, - STATE(7413), 1, + STATE(7640), 1, sym__pointer_base_type, - STATE(7667), 1, - sym_type, - STATE(2347), 3, - sym_implicit_type, - sym_ref_type, - sym_scoped_type, - STATE(4096), 3, + STATE(2907), 3, sym_alias_qualified_name, sym__simple_name, sym_qualified_name, - STATE(4285), 3, + STATE(2926), 3, + sym_implicit_type, + sym_ref_type, + sym_scoped_type, + STATE(2942), 3, sym_nullable_type, sym_pointer_type, sym_function_pointer_type, - STATE(4014), 9, + STATE(3956), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -545018,7 +539228,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(2971), 20, + ACTIONS(3816), 20, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -545039,7 +539249,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [14399] = 31, + [8494] = 31, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -545060,51 +539270,51 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(2967), 1, + ACTIONS(3761), 1, sym__identifier_token, - ACTIONS(2979), 1, - anon_sym_LPAREN, - ACTIONS(3001), 1, - sym_predefined_type, - ACTIONS(3454), 1, + ACTIONS(3765), 1, + anon_sym_ref, + ACTIONS(5622), 1, anon_sym_delegate, - ACTIONS(4737), 1, + ACTIONS(5626), 1, anon_sym_var, - ACTIONS(6103), 1, - anon_sym_ref, - ACTIONS(6107), 1, + ACTIONS(5628), 1, + sym_predefined_type, + ACTIONS(5823), 1, anon_sym_scoped, - STATE(3691), 1, - sym__reserved_identifier, - STATE(4087), 1, + ACTIONS(6133), 1, + anon_sym_LPAREN, + STATE(3119), 1, sym_identifier, - STATE(4109), 1, - sym_generic_name, - STATE(4292), 1, + STATE(3120), 1, + sym__reserved_identifier, + STATE(3147), 1, + sym_array_type, + STATE(3149), 1, sym_tuple_type, - STATE(4390), 1, + STATE(3151), 1, sym__name, - STATE(4404), 1, - sym_array_type, - STATE(7162), 1, - sym__array_base_type, - STATE(7349), 1, + STATE(3160), 1, sym_type, - STATE(7413), 1, + STATE(3184), 1, + sym_generic_name, + STATE(7165), 1, + sym__array_base_type, + STATE(7401), 1, sym__pointer_base_type, - STATE(2347), 3, - sym_implicit_type, - sym_ref_type, - sym_scoped_type, - STATE(4096), 3, + STATE(3143), 3, sym_alias_qualified_name, sym__simple_name, sym_qualified_name, - STATE(4285), 3, + STATE(3146), 3, + sym_implicit_type, + sym_ref_type, + sym_scoped_type, + STATE(3148), 3, sym_nullable_type, sym_pointer_type, sym_function_pointer_type, - STATE(4015), 9, + STATE(3957), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -545114,7 +539324,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(2971), 20, + ACTIONS(3763), 20, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -545135,7 +539345,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [14526] = 31, + [8621] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -545156,51 +539366,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(2967), 1, - sym__identifier_token, - ACTIONS(2979), 1, - anon_sym_LPAREN, - ACTIONS(3001), 1, - sym_predefined_type, - ACTIONS(3454), 1, - anon_sym_delegate, - ACTIONS(6073), 1, - anon_sym_ref, - ACTIONS(6077), 1, - anon_sym_scoped, - ACTIONS(6079), 1, - anon_sym_var, - STATE(3691), 1, - sym__reserved_identifier, - STATE(4087), 1, - sym_identifier, - STATE(4109), 1, - sym_generic_name, - STATE(4292), 1, - sym_tuple_type, - STATE(4390), 1, - sym__name, - STATE(4404), 1, - sym_array_type, - STATE(7162), 1, - sym__array_base_type, - STATE(7310), 1, - sym_type, - STATE(7413), 1, - sym__pointer_base_type, - STATE(2347), 3, - sym_implicit_type, - sym_ref_type, - sym_scoped_type, - STATE(4096), 3, - sym_alias_qualified_name, - sym__simple_name, - sym_qualified_name, - STATE(4285), 3, - sym_nullable_type, - sym_pointer_type, - sym_function_pointer_type, - STATE(4016), 9, + ACTIONS(6282), 1, + anon_sym_and, + ACTIONS(6284), 1, + anon_sym_or, + STATE(3958), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -545210,28 +539380,52 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(2971), 20, - anon_sym_alias, - anon_sym_global, - anon_sym_file, + ACTIONS(6109), 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(6107), 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, - [14653] = 31, + anon_sym_is, + anon_sym_DASH_GT, + anon_sym_with, + [8716] = 31, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -545252,51 +539446,51 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(2967), 1, + ACTIONS(3761), 1, sym__identifier_token, - ACTIONS(2979), 1, - anon_sym_LPAREN, - ACTIONS(3001), 1, - sym_predefined_type, - ACTIONS(3454), 1, - anon_sym_delegate, - ACTIONS(6073), 1, + ACTIONS(4175), 1, anon_sym_ref, - ACTIONS(6077), 1, - anon_sym_scoped, - ACTIONS(6079), 1, + ACTIONS(5622), 1, + anon_sym_delegate, + ACTIONS(5626), 1, anon_sym_var, - STATE(3691), 1, - sym__reserved_identifier, - STATE(4087), 1, + ACTIONS(5628), 1, + sym_predefined_type, + ACTIONS(5767), 1, + anon_sym_scoped, + ACTIONS(6133), 1, + anon_sym_LPAREN, + STATE(3119), 1, sym_identifier, - STATE(4109), 1, - sym_generic_name, - STATE(4292), 1, + STATE(3120), 1, + sym__reserved_identifier, + STATE(3147), 1, + sym_array_type, + STATE(3149), 1, sym_tuple_type, - STATE(4390), 1, + STATE(3151), 1, sym__name, - STATE(4404), 1, - sym_array_type, - STATE(7162), 1, + STATE(3184), 1, + sym_generic_name, + STATE(3270), 1, + sym_type, + STATE(7165), 1, sym__array_base_type, - STATE(7413), 1, + STATE(7401), 1, sym__pointer_base_type, - STATE(7524), 1, - sym_type, - STATE(2347), 3, - sym_implicit_type, - sym_ref_type, - sym_scoped_type, - STATE(4096), 3, + STATE(3143), 3, sym_alias_qualified_name, sym__simple_name, sym_qualified_name, - STATE(4285), 3, + STATE(3146), 3, + sym_implicit_type, + sym_ref_type, + sym_scoped_type, + STATE(3148), 3, sym_nullable_type, sym_pointer_type, sym_function_pointer_type, - STATE(4017), 9, + STATE(3959), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -545306,7 +539500,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(2971), 20, + ACTIONS(3763), 20, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -545327,7 +539521,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [14780] = 31, + [8843] = 31, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -545348,51 +539542,51 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(2967), 1, + ACTIONS(2965), 1, sym__identifier_token, - ACTIONS(2979), 1, + ACTIONS(2977), 1, anon_sym_LPAREN, - ACTIONS(3001), 1, + ACTIONS(2995), 1, + anon_sym_var, + ACTIONS(2997), 1, sym_predefined_type, - ACTIONS(3454), 1, + ACTIONS(3438), 1, anon_sym_delegate, - ACTIONS(6073), 1, + ACTIONS(3646), 1, anon_sym_ref, - ACTIONS(6077), 1, + ACTIONS(6041), 1, anon_sym_scoped, - ACTIONS(6079), 1, - anon_sym_var, - STATE(3691), 1, + STATE(2345), 1, + sym_type, + STATE(3654), 1, sym__reserved_identifier, - STATE(4087), 1, - sym_identifier, - STATE(4109), 1, + STATE(4073), 1, sym_generic_name, - STATE(4292), 1, + STATE(4334), 1, sym_tuple_type, - STATE(4390), 1, - sym__name, - STATE(4404), 1, + STATE(4373), 1, sym_array_type, - STATE(7162), 1, + STATE(5397), 1, + sym_identifier, + STATE(5736), 1, + sym__name, + STATE(7233), 1, sym__array_base_type, - STATE(7350), 1, - sym_type, - STATE(7413), 1, + STATE(7357), 1, sym__pointer_base_type, - STATE(2347), 3, + STATE(2316), 3, sym_implicit_type, sym_ref_type, sym_scoped_type, - STATE(4096), 3, + STATE(4068), 3, sym_alias_qualified_name, sym__simple_name, sym_qualified_name, - STATE(4285), 3, + STATE(4249), 3, sym_nullable_type, sym_pointer_type, sym_function_pointer_type, - STATE(4018), 9, + STATE(3960), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -545402,7 +539596,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(2971), 20, + ACTIONS(2969), 20, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -545423,7 +539617,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [14907] = 31, + [8970] = 41, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -545444,51 +539638,82 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(2967), 1, - sym__identifier_token, - ACTIONS(2979), 1, + ACTIONS(4753), 1, anon_sym_LPAREN, - ACTIONS(3001), 1, - sym_predefined_type, - ACTIONS(3454), 1, - anon_sym_delegate, - ACTIONS(6073), 1, - anon_sym_ref, - ACTIONS(6077), 1, - anon_sym_scoped, - ACTIONS(6079), 1, - anon_sym_var, - STATE(3691), 1, - sym__reserved_identifier, - STATE(4087), 1, - sym_identifier, - STATE(4109), 1, - sym_generic_name, - STATE(4292), 1, - sym_tuple_type, - STATE(4390), 1, - sym__name, - STATE(4404), 1, - sym_array_type, - STATE(7162), 1, - sym__array_base_type, - STATE(7376), 1, - sym_type, - STATE(7413), 1, - sym__pointer_base_type, - STATE(2347), 3, - sym_implicit_type, - sym_ref_type, - sym_scoped_type, - STATE(4096), 3, - sym_alias_qualified_name, - sym__simple_name, - sym_qualified_name, - STATE(4285), 3, - sym_nullable_type, - sym_pointer_type, - sym_function_pointer_type, - STATE(4019), 9, + ACTIONS(4792), 1, + anon_sym_DOT, + ACTIONS(4794), 1, + anon_sym_DASH_GT, + ACTIONS(4819), 1, + anon_sym_LBRACK, + ACTIONS(4823), 1, + anon_sym_BANG, + ACTIONS(5711), 1, + anon_sym_or, + ACTIONS(6242), 1, + anon_sym_QMARK, + ACTIONS(6248), 1, + anon_sym_SLASH, + ACTIONS(6250), 1, + anon_sym_CARET, + ACTIONS(6252), 1, + anon_sym_PIPE, + ACTIONS(6254), 1, + anon_sym_AMP, + ACTIONS(6258), 1, + anon_sym_GT_GT, + ACTIONS(6264), 1, + anon_sym_switch, + ACTIONS(6266), 1, + anon_sym_DOT_DOT, + ACTIONS(6268), 1, + anon_sym_AMP_AMP, + ACTIONS(6270), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6272), 1, + anon_sym_QMARK_QMARK, + ACTIONS(6274), 1, + anon_sym_as, + ACTIONS(6276), 1, + anon_sym_is, + ACTIONS(6278), 1, + anon_sym_with, + STATE(2419), 1, + sym_bracketed_argument_list, + STATE(2958), 1, + sym_argument_list, + ACTIONS(4825), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6240), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(6244), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6246), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(6256), 2, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + ACTIONS(6260), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6262), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(5709), 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(3961), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -545498,28 +539723,113 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(2971), 20, - anon_sym_alias, - anon_sym_global, - anon_sym_file, + [9117] = 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(4753), 1, + anon_sym_LPAREN, + ACTIONS(4792), 1, + anon_sym_DOT, + ACTIONS(4794), 1, + anon_sym_DASH_GT, + ACTIONS(4819), 1, + anon_sym_LBRACK, + ACTIONS(4823), 1, + anon_sym_BANG, + ACTIONS(5851), 1, + anon_sym_or, + ACTIONS(6242), 1, + anon_sym_QMARK, + ACTIONS(6248), 1, + anon_sym_SLASH, + ACTIONS(6250), 1, + anon_sym_CARET, + ACTIONS(6252), 1, + anon_sym_PIPE, + ACTIONS(6254), 1, + anon_sym_AMP, + ACTIONS(6258), 1, + anon_sym_GT_GT, + ACTIONS(6264), 1, + anon_sym_switch, + ACTIONS(6266), 1, + anon_sym_DOT_DOT, + ACTIONS(6268), 1, + anon_sym_AMP_AMP, + ACTIONS(6270), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6272), 1, + anon_sym_QMARK_QMARK, + ACTIONS(6274), 1, + anon_sym_as, + ACTIONS(6276), 1, + anon_sym_is, + ACTIONS(6278), 1, + anon_sym_with, + STATE(2419), 1, + sym_bracketed_argument_list, + STATE(2958), 1, + sym_argument_list, + ACTIONS(4825), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6240), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(6244), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6246), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(6256), 2, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + ACTIONS(6260), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6262), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(5849), 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, - [15034] = 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, + [9264] = 31, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -545540,51 +539850,51 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(2967), 1, + ACTIONS(3814), 1, sym__identifier_token, - ACTIONS(2979), 1, - anon_sym_LPAREN, - ACTIONS(3001), 1, - sym_predefined_type, - ACTIONS(3454), 1, - anon_sym_delegate, - ACTIONS(6073), 1, + ACTIONS(4201), 1, anon_sym_ref, - ACTIONS(6077), 1, - anon_sym_scoped, - ACTIONS(6079), 1, + ACTIONS(5719), 1, + anon_sym_delegate, + ACTIONS(5723), 1, anon_sym_var, - STATE(3691), 1, + ACTIONS(5725), 1, + sym_predefined_type, + ACTIONS(5831), 1, + anon_sym_scoped, + ACTIONS(6123), 1, + anon_sym_LPAREN, + STATE(2900), 1, sym__reserved_identifier, - STATE(4087), 1, - sym_identifier, - STATE(4109), 1, - sym_generic_name, - STATE(4292), 1, + STATE(2934), 1, + sym_array_type, + STATE(2943), 1, sym_tuple_type, - STATE(4390), 1, + STATE(2946), 1, + sym_type, + STATE(2950), 1, + sym_generic_name, + STATE(3317), 1, + sym_identifier, + STATE(3511), 1, sym__name, - STATE(4404), 1, - sym_array_type, - STATE(7162), 1, + STATE(7061), 1, sym__array_base_type, - STATE(7413), 1, + STATE(7640), 1, sym__pointer_base_type, - STATE(7707), 1, - sym_type, - STATE(2347), 3, - sym_implicit_type, - sym_ref_type, - sym_scoped_type, - STATE(4096), 3, + STATE(2907), 3, sym_alias_qualified_name, sym__simple_name, sym_qualified_name, - STATE(4285), 3, + STATE(2926), 3, + sym_implicit_type, + sym_ref_type, + sym_scoped_type, + STATE(2942), 3, sym_nullable_type, sym_pointer_type, sym_function_pointer_type, - STATE(4020), 9, + STATE(3963), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -545594,7 +539904,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(2971), 20, + ACTIONS(3816), 20, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -545615,7 +539925,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [15161] = 31, + [9391] = 41, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -545636,51 +539946,82 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(2967), 1, - sym__identifier_token, - ACTIONS(2979), 1, + ACTIONS(4753), 1, anon_sym_LPAREN, - ACTIONS(3001), 1, - sym_predefined_type, - ACTIONS(3454), 1, - anon_sym_delegate, - ACTIONS(6073), 1, - anon_sym_ref, - ACTIONS(6077), 1, - anon_sym_scoped, - ACTIONS(6079), 1, - anon_sym_var, - STATE(3691), 1, - sym__reserved_identifier, - STATE(4087), 1, - sym_identifier, - STATE(4109), 1, - sym_generic_name, - STATE(4292), 1, - sym_tuple_type, - STATE(4390), 1, - sym__name, - STATE(4404), 1, - sym_array_type, - STATE(7162), 1, - sym__array_base_type, - STATE(7413), 1, - sym__pointer_base_type, - STATE(7535), 1, - sym_type, - STATE(2347), 3, - sym_implicit_type, - sym_ref_type, - sym_scoped_type, - STATE(4096), 3, - sym_alias_qualified_name, - sym__simple_name, - sym_qualified_name, - STATE(4285), 3, - sym_nullable_type, - sym_pointer_type, - sym_function_pointer_type, - STATE(4021), 9, + ACTIONS(4792), 1, + anon_sym_DOT, + ACTIONS(4794), 1, + anon_sym_DASH_GT, + ACTIONS(4819), 1, + anon_sym_LBRACK, + ACTIONS(4823), 1, + anon_sym_BANG, + ACTIONS(4998), 1, + anon_sym_or, + ACTIONS(6242), 1, + anon_sym_QMARK, + ACTIONS(6248), 1, + anon_sym_SLASH, + ACTIONS(6250), 1, + anon_sym_CARET, + ACTIONS(6252), 1, + anon_sym_PIPE, + ACTIONS(6254), 1, + anon_sym_AMP, + ACTIONS(6258), 1, + anon_sym_GT_GT, + ACTIONS(6264), 1, + anon_sym_switch, + ACTIONS(6266), 1, + anon_sym_DOT_DOT, + ACTIONS(6268), 1, + anon_sym_AMP_AMP, + ACTIONS(6270), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6272), 1, + anon_sym_QMARK_QMARK, + ACTIONS(6274), 1, + anon_sym_as, + ACTIONS(6276), 1, + anon_sym_is, + ACTIONS(6278), 1, + anon_sym_with, + STATE(2419), 1, + sym_bracketed_argument_list, + STATE(2958), 1, + sym_argument_list, + ACTIONS(4825), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6240), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(6244), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6246), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(6256), 2, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + ACTIONS(6260), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6262), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4996), 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, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -545690,28 +540031,113 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(2971), 20, - anon_sym_alias, - anon_sym_global, - anon_sym_file, + [9538] = 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(4753), 1, + anon_sym_LPAREN, + ACTIONS(4792), 1, + anon_sym_DOT, + ACTIONS(4794), 1, + anon_sym_DASH_GT, + ACTIONS(4819), 1, + anon_sym_LBRACK, + ACTIONS(4823), 1, + anon_sym_BANG, + ACTIONS(5686), 1, + anon_sym_or, + ACTIONS(6242), 1, + anon_sym_QMARK, + ACTIONS(6248), 1, + anon_sym_SLASH, + ACTIONS(6250), 1, + anon_sym_CARET, + ACTIONS(6252), 1, + anon_sym_PIPE, + ACTIONS(6254), 1, + anon_sym_AMP, + ACTIONS(6258), 1, + anon_sym_GT_GT, + ACTIONS(6264), 1, + anon_sym_switch, + ACTIONS(6266), 1, + anon_sym_DOT_DOT, + ACTIONS(6268), 1, + anon_sym_AMP_AMP, + ACTIONS(6270), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6272), 1, + anon_sym_QMARK_QMARK, + ACTIONS(6274), 1, + anon_sym_as, + ACTIONS(6276), 1, + anon_sym_is, + ACTIONS(6278), 1, + anon_sym_with, + STATE(2419), 1, + sym_bracketed_argument_list, + STATE(2958), 1, + sym_argument_list, + ACTIONS(4825), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6240), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(6244), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6246), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(6256), 2, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + ACTIONS(6260), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6262), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(5652), 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, - [15288] = 40, + STATE(3965), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + [9685] = 35, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -545732,70 +540158,62 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4719), 1, - anon_sym_DASH_GT, - ACTIONS(4733), 1, - anon_sym_DOT, - ACTIONS(5624), 1, + ACTIONS(4753), 1, anon_sym_LPAREN, - ACTIONS(5658), 1, + ACTIONS(4792), 1, + anon_sym_DOT, + ACTIONS(4794), 1, + anon_sym_DASH_GT, + ACTIONS(4819), 1, anon_sym_LBRACK, - ACTIONS(5666), 1, + ACTIONS(4823), 1, anon_sym_BANG, - ACTIONS(5688), 1, - anon_sym_switch, - ACTIONS(5696), 1, - anon_sym_with, - ACTIONS(5935), 1, - anon_sym_as, - ACTIONS(6231), 1, + ACTIONS(6248), 1, anon_sym_SLASH, - ACTIONS(6235), 1, + ACTIONS(6254), 1, + anon_sym_AMP, + ACTIONS(6258), 1, anon_sym_GT_GT, - ACTIONS(6237), 1, + ACTIONS(6264), 1, + anon_sym_switch, + ACTIONS(6266), 1, anon_sym_DOT_DOT, - ACTIONS(6241), 1, - anon_sym_AMP, - ACTIONS(6247), 1, + ACTIONS(6274), 1, + anon_sym_as, + ACTIONS(6276), 1, anon_sym_is, - ACTIONS(6249), 1, - anon_sym_CARET, - ACTIONS(6251), 1, - anon_sym_PIPE, - ACTIONS(6253), 1, - anon_sym_AMP_AMP, - ACTIONS(6255), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6257), 1, - anon_sym_QMARK_QMARK, - ACTIONS(6267), 1, - anon_sym_QMARK, - STATE(2902), 1, + ACTIONS(6278), 1, + anon_sym_with, + STATE(2419), 1, sym_bracketed_argument_list, - STATE(3886), 1, + STATE(2958), 1, sym_argument_list, - ACTIONS(5668), 2, + ACTIONS(4825), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6227), 2, + ACTIONS(6240), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(6244), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6229), 2, + ACTIONS(6246), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(6233), 2, + ACTIONS(6256), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(6239), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(6243), 2, + ACTIONS(6260), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6245), 2, + ACTIONS(6262), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - STATE(4022), 9, + ACTIONS(5739), 3, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_or, + STATE(3966), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -545805,18 +540223,21 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5864), 10, - anon_sym_COMMA, + ACTIONS(5737), 13, 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_into, anon_sym_join, anon_sym_let, anon_sym_orderby, - anon_sym_ascending, - anon_sym_descending, anon_sym_group, anon_sym_select, - [15433] = 31, + [9820] = 31, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -545837,51 +540258,160 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(2967), 1, - sym__identifier_token, - ACTIONS(2979), 1, - anon_sym_LPAREN, - ACTIONS(3001), 1, - sym_predefined_type, - ACTIONS(3454), 1, + ACTIONS(3438), 1, anon_sym_delegate, - ACTIONS(6073), 1, + ACTIONS(3614), 1, anon_sym_ref, - ACTIONS(6077), 1, - anon_sym_scoped, - ACTIONS(6079), 1, + ACTIONS(4080), 1, + sym__identifier_token, + ACTIONS(5817), 1, anon_sym_var, - STATE(3691), 1, + ACTIONS(5819), 1, + sym_predefined_type, + ACTIONS(6111), 1, + anon_sym_LPAREN, + ACTIONS(6177), 1, + anon_sym_scoped, + STATE(2345), 1, + sym_type, + STATE(2354), 1, sym__reserved_identifier, - STATE(4087), 1, - sym_identifier, - STATE(4109), 1, - sym_generic_name, - STATE(4292), 1, + STATE(2373), 1, + sym_array_type, + STATE(2377), 1, sym_tuple_type, - STATE(4390), 1, + STATE(2384), 1, + sym_generic_name, + STATE(2547), 1, + sym_identifier, + STATE(2615), 1, sym__name, - STATE(4404), 1, - sym_array_type, - STATE(7162), 1, + STATE(7083), 1, sym__array_base_type, - STATE(7413), 1, + STATE(7357), 1, sym__pointer_base_type, - STATE(7537), 1, - sym_type, - STATE(2347), 3, + STATE(2316), 3, sym_implicit_type, sym_ref_type, sym_scoped_type, - STATE(4096), 3, - sym_alias_qualified_name, - sym__simple_name, - sym_qualified_name, - STATE(4285), 3, + STATE(2375), 3, sym_nullable_type, sym_pointer_type, sym_function_pointer_type, - STATE(4023), 9, + STATE(2402), 3, + sym_alias_qualified_name, + sym__simple_name, + sym_qualified_name, + 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(4082), 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, + [9947] = 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(4753), 1, + anon_sym_LPAREN, + ACTIONS(4792), 1, + anon_sym_DOT, + ACTIONS(4794), 1, + anon_sym_DASH_GT, + ACTIONS(4819), 1, + anon_sym_LBRACK, + ACTIONS(4823), 1, + anon_sym_BANG, + ACTIONS(6248), 1, + anon_sym_SLASH, + ACTIONS(6250), 1, + anon_sym_CARET, + ACTIONS(6254), 1, + anon_sym_AMP, + ACTIONS(6258), 1, + anon_sym_GT_GT, + ACTIONS(6264), 1, + anon_sym_switch, + ACTIONS(6266), 1, + anon_sym_DOT_DOT, + ACTIONS(6274), 1, + anon_sym_as, + ACTIONS(6276), 1, + anon_sym_is, + ACTIONS(6278), 1, + anon_sym_with, + STATE(2419), 1, + sym_bracketed_argument_list, + STATE(2958), 1, + sym_argument_list, + ACTIONS(4825), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6240), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(6244), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6246), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(6256), 2, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + ACTIONS(6260), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6262), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(5739), 3, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_or, + STATE(3968), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -545891,28 +540421,20 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(2971), 20, - anon_sym_alias, - anon_sym_global, - anon_sym_file, + ACTIONS(5737), 12, anon_sym_where, - anon_sym_notnull, - anon_sym_unmanaged, - anon_sym_yield, - anon_sym_when, + 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, - [15560] = 31, + [10084] = 31, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -545933,51 +540455,51 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(2967), 1, + ACTIONS(2965), 1, sym__identifier_token, - ACTIONS(2979), 1, + ACTIONS(2977), 1, anon_sym_LPAREN, - ACTIONS(3001), 1, + ACTIONS(2997), 1, sym_predefined_type, - ACTIONS(3454), 1, + ACTIONS(3438), 1, anon_sym_delegate, - ACTIONS(6073), 1, + ACTIONS(6039), 1, + anon_sym_var, + ACTIONS(6139), 1, anon_sym_ref, - ACTIONS(6077), 1, + ACTIONS(6143), 1, anon_sym_scoped, - ACTIONS(6079), 1, - anon_sym_var, - STATE(3691), 1, + STATE(3654), 1, sym__reserved_identifier, - STATE(4087), 1, - sym_identifier, - STATE(4109), 1, + STATE(4073), 1, sym_generic_name, - STATE(4292), 1, + STATE(4081), 1, + sym_identifier, + STATE(4334), 1, sym_tuple_type, - STATE(4390), 1, + STATE(4369), 1, sym__name, - STATE(4404), 1, + STATE(4373), 1, sym_array_type, - STATE(7162), 1, + STATE(7233), 1, sym__array_base_type, - STATE(7413), 1, + STATE(7357), 1, sym__pointer_base_type, - STATE(7541), 1, + STATE(7473), 1, sym_type, - STATE(2347), 3, + STATE(2316), 3, sym_implicit_type, sym_ref_type, sym_scoped_type, - STATE(4096), 3, + STATE(4068), 3, sym_alias_qualified_name, sym__simple_name, sym_qualified_name, - STATE(4285), 3, + STATE(4249), 3, sym_nullable_type, sym_pointer_type, sym_function_pointer_type, - STATE(4024), 9, + STATE(3969), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -545987,7 +540509,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(2971), 20, + ACTIONS(2969), 20, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -546008,7 +540530,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [15687] = 31, + [10211] = 33, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -546029,51 +540551,58 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(2967), 1, - sym__identifier_token, - ACTIONS(2979), 1, + ACTIONS(4753), 1, anon_sym_LPAREN, - ACTIONS(3001), 1, - sym_predefined_type, - ACTIONS(3454), 1, - anon_sym_delegate, - ACTIONS(6073), 1, - anon_sym_ref, - ACTIONS(6077), 1, - anon_sym_scoped, - ACTIONS(6079), 1, - anon_sym_var, - STATE(3691), 1, - sym__reserved_identifier, - STATE(4087), 1, - sym_identifier, - STATE(4109), 1, - sym_generic_name, - STATE(4292), 1, - sym_tuple_type, - STATE(4390), 1, - sym__name, - STATE(4404), 1, - sym_array_type, - STATE(7162), 1, - sym__array_base_type, - STATE(7413), 1, - sym__pointer_base_type, - STATE(7746), 1, - sym_type, - STATE(2347), 3, - sym_implicit_type, - sym_ref_type, - sym_scoped_type, - STATE(4096), 3, - sym_alias_qualified_name, - sym__simple_name, - sym_qualified_name, - STATE(4285), 3, - sym_nullable_type, - sym_pointer_type, - sym_function_pointer_type, - STATE(4025), 9, + ACTIONS(4792), 1, + anon_sym_DOT, + ACTIONS(4794), 1, + anon_sym_DASH_GT, + ACTIONS(4819), 1, + anon_sym_LBRACK, + ACTIONS(4823), 1, + anon_sym_BANG, + ACTIONS(6248), 1, + anon_sym_SLASH, + ACTIONS(6258), 1, + anon_sym_GT_GT, + ACTIONS(6264), 1, + anon_sym_switch, + ACTIONS(6266), 1, + anon_sym_DOT_DOT, + ACTIONS(6274), 1, + anon_sym_as, + ACTIONS(6276), 1, + anon_sym_is, + ACTIONS(6278), 1, + anon_sym_with, + STATE(2419), 1, + sym_bracketed_argument_list, + STATE(2958), 1, + sym_argument_list, + ACTIONS(4825), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6240), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(6244), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6246), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(6256), 2, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + ACTIONS(6262), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(5739), 4, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_or, + STATE(3970), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -546083,28 +540612,23 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(2971), 20, - anon_sym_alias, - anon_sym_global, - anon_sym_file, + ACTIONS(5737), 15, anon_sym_where, - anon_sym_notnull, - anon_sym_unmanaged, - anon_sym_yield, - anon_sym_when, + 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_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, - [15814] = 40, + [10342] = 37, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -546125,70 +540649,65 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4719), 1, - anon_sym_DASH_GT, - ACTIONS(4733), 1, - anon_sym_DOT, - ACTIONS(5624), 1, + ACTIONS(4753), 1, anon_sym_LPAREN, - ACTIONS(5658), 1, + ACTIONS(4792), 1, + anon_sym_DOT, + ACTIONS(4794), 1, + anon_sym_DASH_GT, + ACTIONS(4819), 1, anon_sym_LBRACK, - ACTIONS(5666), 1, + ACTIONS(4823), 1, anon_sym_BANG, - ACTIONS(5688), 1, - anon_sym_switch, - ACTIONS(5696), 1, - anon_sym_with, - ACTIONS(5935), 1, - anon_sym_as, - ACTIONS(6231), 1, + ACTIONS(6248), 1, anon_sym_SLASH, - ACTIONS(6235), 1, + ACTIONS(6250), 1, + anon_sym_CARET, + ACTIONS(6252), 1, + anon_sym_PIPE, + ACTIONS(6254), 1, + anon_sym_AMP, + ACTIONS(6258), 1, anon_sym_GT_GT, - ACTIONS(6237), 1, + ACTIONS(6264), 1, + anon_sym_switch, + ACTIONS(6266), 1, anon_sym_DOT_DOT, - ACTIONS(6241), 1, - anon_sym_AMP, - ACTIONS(6247), 1, + ACTIONS(6274), 1, + anon_sym_as, + ACTIONS(6276), 1, anon_sym_is, - ACTIONS(6249), 1, - anon_sym_CARET, - ACTIONS(6251), 1, - anon_sym_PIPE, - ACTIONS(6253), 1, - anon_sym_AMP_AMP, - ACTIONS(6255), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6257), 1, - anon_sym_QMARK_QMARK, - ACTIONS(6267), 1, - anon_sym_QMARK, - STATE(2902), 1, + ACTIONS(6278), 1, + anon_sym_with, + STATE(2419), 1, sym_bracketed_argument_list, - STATE(3886), 1, + STATE(2958), 1, sym_argument_list, - ACTIONS(5668), 2, + ACTIONS(4825), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6227), 2, + ACTIONS(5739), 2, + anon_sym_QMARK, + anon_sym_or, + ACTIONS(6240), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(6244), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6229), 2, + ACTIONS(6246), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(6233), 2, + ACTIONS(6256), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(6239), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(6243), 2, + ACTIONS(6260), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6245), 2, + ACTIONS(6262), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - STATE(4026), 9, + STATE(3971), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -546198,18 +540717,99 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5072), 10, - anon_sym_COMMA, + ACTIONS(5737), 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_ascending, - anon_sym_descending, anon_sym_group, anon_sym_select, - [15959] = 31, + [10481] = 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(6288), 1, + anon_sym_into, + STATE(3972), 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(5953), 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(5951), 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, + [10574] = 31, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -546230,51 +540830,51 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(2967), 1, + ACTIONS(2965), 1, sym__identifier_token, - ACTIONS(2979), 1, + ACTIONS(2977), 1, anon_sym_LPAREN, - ACTIONS(3001), 1, + ACTIONS(2997), 1, sym_predefined_type, - ACTIONS(3454), 1, + ACTIONS(3438), 1, anon_sym_delegate, - ACTIONS(6073), 1, + ACTIONS(6039), 1, + anon_sym_var, + ACTIONS(6139), 1, anon_sym_ref, - ACTIONS(6077), 1, + ACTIONS(6143), 1, anon_sym_scoped, - ACTIONS(6079), 1, - anon_sym_var, - STATE(3691), 1, + STATE(3654), 1, sym__reserved_identifier, - STATE(4087), 1, - sym_identifier, - STATE(4109), 1, + STATE(4073), 1, sym_generic_name, - STATE(4292), 1, + STATE(4081), 1, + sym_identifier, + STATE(4334), 1, sym_tuple_type, - STATE(4390), 1, + STATE(4369), 1, sym__name, - STATE(4404), 1, + STATE(4373), 1, sym_array_type, - STATE(7162), 1, + STATE(7233), 1, sym__array_base_type, - STATE(7356), 1, - sym_type, - STATE(7413), 1, + STATE(7357), 1, sym__pointer_base_type, - STATE(2347), 3, + STATE(7648), 1, + sym_type, + STATE(2316), 3, sym_implicit_type, sym_ref_type, sym_scoped_type, - STATE(4096), 3, + STATE(4068), 3, sym_alias_qualified_name, sym__simple_name, sym_qualified_name, - STATE(4285), 3, + STATE(4249), 3, sym_nullable_type, sym_pointer_type, sym_function_pointer_type, - STATE(4027), 9, + STATE(3973), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -546284,7 +540884,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(2971), 20, + ACTIONS(2969), 20, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -546305,7 +540905,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [16086] = 31, + [10701] = 31, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -546326,51 +540926,51 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(3887), 1, + ACTIONS(2965), 1, sym__identifier_token, - ACTIONS(4042), 1, + ACTIONS(2977), 1, + anon_sym_LPAREN, + ACTIONS(2997), 1, + sym_predefined_type, + ACTIONS(3438), 1, anon_sym_delegate, - ACTIONS(4046), 1, + ACTIONS(6039), 1, anon_sym_var, - ACTIONS(4048), 1, - sym_predefined_type, - ACTIONS(4217), 1, + ACTIONS(6139), 1, anon_sym_ref, - ACTIONS(5646), 1, + ACTIONS(6143), 1, anon_sym_scoped, - ACTIONS(6051), 1, - anon_sym_LPAREN, - STATE(2923), 1, - sym_identifier, - STATE(2945), 1, + STATE(3654), 1, sym__reserved_identifier, - STATE(2985), 1, + STATE(4073), 1, sym_generic_name, - STATE(2992), 1, - sym_array_type, - STATE(3058), 1, + STATE(4081), 1, + sym_identifier, + STATE(4334), 1, sym_tuple_type, - STATE(3072), 1, + STATE(4369), 1, sym__name, - STATE(3106), 1, - sym_type, - STATE(7267), 1, + STATE(4373), 1, + sym_array_type, + STATE(7233), 1, sym__array_base_type, - STATE(7693), 1, + STATE(7357), 1, sym__pointer_base_type, - STATE(3012), 3, - sym_nullable_type, - sym_pointer_type, - sym_function_pointer_type, - STATE(3029), 3, - sym_alias_qualified_name, - sym__simple_name, - sym_qualified_name, - STATE(3054), 3, + STATE(7659), 1, + sym_type, + STATE(2316), 3, sym_implicit_type, sym_ref_type, sym_scoped_type, - STATE(4028), 9, + STATE(4068), 3, + sym_alias_qualified_name, + sym__simple_name, + sym_qualified_name, + STATE(4249), 3, + sym_nullable_type, + sym_pointer_type, + sym_function_pointer_type, + STATE(3974), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -546380,7 +540980,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(3889), 20, + ACTIONS(2969), 20, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -546401,7 +541001,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [16213] = 41, + [10828] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -546422,82 +541022,131 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4755), 1, - anon_sym_DASH_GT, - ACTIONS(4804), 1, - anon_sym_LPAREN, - ACTIONS(4808), 1, - anon_sym_DOT, - ACTIONS(4835), 1, - anon_sym_LBRACK, - ACTIONS(4839), 1, - anon_sym_BANG, - ACTIONS(5751), 1, - anon_sym_or, - ACTIONS(6271), 1, + ACTIONS(6280), 1, + anon_sym_into, + STATE(3972), 1, + aux_sym__query_body_repeat2, + 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(5960), 11, + anon_sym_LT, + anon_sym_GT, anon_sym_QMARK, - ACTIONS(6277), 1, + anon_sym_BANG, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_SLASH, - ACTIONS(6279), 1, - anon_sym_CARET, - ACTIONS(6281), 1, anon_sym_PIPE, - ACTIONS(6283), 1, anon_sym_AMP, - ACTIONS(6287), 1, anon_sym_GT_GT, - ACTIONS(6293), 1, - anon_sym_switch, - ACTIONS(6295), 1, - anon_sym_DOT_DOT, - ACTIONS(6297), 1, - anon_sym_AMP_AMP, - ACTIONS(6299), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6301), 1, - anon_sym_QMARK_QMARK, - ACTIONS(6303), 1, - anon_sym_as, - ACTIONS(6305), 1, - anon_sym_is, - ACTIONS(6307), 1, - anon_sym_with, - STATE(2433), 1, - sym_bracketed_argument_list, - STATE(3035), 1, - sym_argument_list, - ACTIONS(4841), 2, + anon_sym_DOT, + ACTIONS(5958), 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(6269), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(6273), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(6275), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(6285), 2, + anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(6289), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6291), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5745), 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(4029), 9, + 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, + [10923] = 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(3871), 1, + sym__identifier_token, + ACTIONS(4015), 1, + anon_sym_delegate, + ACTIONS(4019), 1, + anon_sym_var, + ACTIONS(4021), 1, + sym_predefined_type, + ACTIONS(4199), 1, + anon_sym_ref, + ACTIONS(5791), 1, + anon_sym_scoped, + ACTIONS(6033), 1, + anon_sym_LPAREN, + STATE(2916), 1, + sym__reserved_identifier, + STATE(2927), 1, + sym_identifier, + STATE(2978), 1, + sym_array_type, + STATE(2980), 1, + sym_tuple_type, + STATE(3030), 1, + sym_generic_name, + STATE(3086), 1, + sym__name, + STATE(3099), 1, + sym_type, + STATE(7236), 1, + sym__array_base_type, + STATE(7622), 1, + sym__pointer_base_type, + STATE(2976), 3, + sym_alias_qualified_name, + sym__simple_name, + sym_qualified_name, + STATE(2977), 3, + sym_implicit_type, + sym_ref_type, + sym_scoped_type, + STATE(2979), 3, + sym_nullable_type, + sym_pointer_type, + sym_function_pointer_type, + STATE(3976), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -546507,7 +541156,28 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [16360] = 41, + ACTIONS(3873), 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, + [11050] = 38, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -546528,82 +541198,67 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4755), 1, - anon_sym_DASH_GT, - ACTIONS(4804), 1, + ACTIONS(4753), 1, anon_sym_LPAREN, - ACTIONS(4808), 1, + ACTIONS(4792), 1, anon_sym_DOT, - ACTIONS(4835), 1, + ACTIONS(4794), 1, + anon_sym_DASH_GT, + ACTIONS(4819), 1, anon_sym_LBRACK, - ACTIONS(4839), 1, + ACTIONS(4823), 1, anon_sym_BANG, - ACTIONS(5769), 1, - anon_sym_or, - ACTIONS(6271), 1, - anon_sym_QMARK, - ACTIONS(6277), 1, + ACTIONS(6248), 1, anon_sym_SLASH, - ACTIONS(6279), 1, + ACTIONS(6250), 1, anon_sym_CARET, - ACTIONS(6281), 1, + ACTIONS(6252), 1, anon_sym_PIPE, - ACTIONS(6283), 1, + ACTIONS(6254), 1, anon_sym_AMP, - ACTIONS(6287), 1, + ACTIONS(6258), 1, anon_sym_GT_GT, - ACTIONS(6293), 1, + ACTIONS(6264), 1, anon_sym_switch, - ACTIONS(6295), 1, + ACTIONS(6266), 1, anon_sym_DOT_DOT, - ACTIONS(6297), 1, + ACTIONS(6268), 1, anon_sym_AMP_AMP, - ACTIONS(6299), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6301), 1, - anon_sym_QMARK_QMARK, - ACTIONS(6303), 1, + ACTIONS(6274), 1, anon_sym_as, - ACTIONS(6305), 1, + ACTIONS(6276), 1, anon_sym_is, - ACTIONS(6307), 1, + ACTIONS(6278), 1, anon_sym_with, - STATE(2433), 1, + STATE(2419), 1, sym_bracketed_argument_list, - STATE(3035), 1, + STATE(2958), 1, sym_argument_list, - ACTIONS(4841), 2, + ACTIONS(4825), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6269), 2, + ACTIONS(5739), 2, + anon_sym_QMARK, + anon_sym_or, + ACTIONS(6240), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(6273), 2, + ACTIONS(6244), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6275), 2, + ACTIONS(6246), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(6285), 2, + ACTIONS(6256), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(6289), 2, + ACTIONS(6260), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6291), 2, + ACTIONS(6262), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5767), 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(4030), 9, + STATE(3977), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -546613,7 +541268,19 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [16507] = 41, + ACTIONS(5737), 11, + anon_sym_where, + anon_sym_and, + 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, + [11191] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -546634,72 +541301,71 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4755), 1, - anon_sym_DASH_GT, - ACTIONS(4804), 1, + ACTIONS(4753), 1, anon_sym_LPAREN, - ACTIONS(4808), 1, + ACTIONS(4792), 1, anon_sym_DOT, - ACTIONS(4835), 1, + ACTIONS(4794), 1, + anon_sym_DASH_GT, + ACTIONS(4819), 1, anon_sym_LBRACK, - ACTIONS(4839), 1, + ACTIONS(4823), 1, anon_sym_BANG, - ACTIONS(5901), 1, - anon_sym_or, - ACTIONS(6271), 1, - anon_sym_QMARK, - ACTIONS(6277), 1, + ACTIONS(6248), 1, anon_sym_SLASH, - ACTIONS(6279), 1, + ACTIONS(6250), 1, anon_sym_CARET, - ACTIONS(6281), 1, + ACTIONS(6252), 1, anon_sym_PIPE, - ACTIONS(6283), 1, + ACTIONS(6254), 1, anon_sym_AMP, - ACTIONS(6287), 1, + ACTIONS(6258), 1, anon_sym_GT_GT, - ACTIONS(6293), 1, + ACTIONS(6264), 1, anon_sym_switch, - ACTIONS(6295), 1, + ACTIONS(6266), 1, anon_sym_DOT_DOT, - ACTIONS(6297), 1, + ACTIONS(6268), 1, anon_sym_AMP_AMP, - ACTIONS(6299), 1, + ACTIONS(6270), 1, anon_sym_PIPE_PIPE, - ACTIONS(6301), 1, + ACTIONS(6272), 1, anon_sym_QMARK_QMARK, - ACTIONS(6303), 1, + ACTIONS(6274), 1, anon_sym_as, - ACTIONS(6305), 1, + ACTIONS(6276), 1, anon_sym_is, - ACTIONS(6307), 1, + ACTIONS(6278), 1, anon_sym_with, - STATE(2433), 1, + STATE(2419), 1, sym_bracketed_argument_list, - STATE(3035), 1, + STATE(2958), 1, sym_argument_list, - ACTIONS(4841), 2, + ACTIONS(4825), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6269), 2, + ACTIONS(5739), 2, + anon_sym_QMARK, + anon_sym_or, + ACTIONS(6240), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(6273), 2, + ACTIONS(6244), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6275), 2, + ACTIONS(6246), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(6285), 2, + ACTIONS(6256), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(6289), 2, + ACTIONS(6260), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6291), 2, + ACTIONS(6262), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5899), 9, + ACTIONS(5737), 9, anon_sym_where, anon_sym_and, anon_sym_from, @@ -546709,7 +541375,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_orderby, anon_sym_group, anon_sym_select, - STATE(4031), 9, + STATE(3978), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -546719,7 +541385,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [16654] = 31, + [11336] = 31, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -546740,51 +541406,51 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(3983), 1, + ACTIONS(2965), 1, sym__identifier_token, - ACTIONS(3987), 1, - anon_sym_ref, - ACTIONS(5846), 1, + ACTIONS(2977), 1, + anon_sym_LPAREN, + ACTIONS(2997), 1, + sym_predefined_type, + ACTIONS(3438), 1, anon_sym_delegate, - ACTIONS(5848), 1, + ACTIONS(3624), 1, + anon_sym_ref, + ACTIONS(6037), 1, anon_sym_scoped, - ACTIONS(5850), 1, + ACTIONS(6039), 1, anon_sym_var, - ACTIONS(5852), 1, - sym_predefined_type, - ACTIONS(6063), 1, - anon_sym_LPAREN, - STATE(4215), 1, - sym_identifier, - STATE(4297), 1, + STATE(3654), 1, sym__reserved_identifier, - STATE(4403), 1, + STATE(4073), 1, sym_generic_name, - STATE(4417), 1, - sym_type, - STATE(4465), 1, - sym_array_type, - STATE(4469), 1, + STATE(4081), 1, + sym_identifier, + STATE(4334), 1, sym_tuple_type, - STATE(4478), 1, + STATE(4369), 1, sym__name, - STATE(7155), 1, + STATE(4373), 1, + sym_array_type, + STATE(6047), 1, + sym_type, + STATE(7233), 1, sym__array_base_type, - STATE(7333), 1, + STATE(7357), 1, sym__pointer_base_type, - STATE(4374), 3, + STATE(2316), 3, sym_implicit_type, sym_ref_type, sym_scoped_type, - STATE(4464), 3, + STATE(4068), 3, sym_alias_qualified_name, sym__simple_name, sym_qualified_name, - STATE(4467), 3, + STATE(4249), 3, sym_nullable_type, sym_pointer_type, sym_function_pointer_type, - STATE(4032), 9, + STATE(3979), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -546794,7 +541460,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(3985), 20, + ACTIONS(2969), 20, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -546815,7 +541481,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [16781] = 23, + [11463] = 31, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -546836,139 +541502,51 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(3600), 1, + ACTIONS(2965), 1, sym__identifier_token, - ACTIONS(3658), 1, - anon_sym_ref, - STATE(2175), 1, - sym__reserved_identifier, - STATE(2181), 1, - sym_generic_name, - STATE(2317), 1, - sym_ref_type, - STATE(2340), 1, - sym__scoped_base_type, - STATE(5752), 1, - sym_identifier, - STATE(5839), 1, - sym__name, - STATE(4096), 3, - sym_alias_qualified_name, - sym__simple_name, - sym_qualified_name, - ACTIONS(3447), 4, - anon_sym_COLON, - sym_discard, - anon_sym_and, - anon_sym_or, - ACTIONS(3445), 8, - anon_sym_LBRACK, + ACTIONS(2977), 1, anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_LT, - anon_sym_QMARK, - anon_sym_STAR, - anon_sym_DOT, - anon_sym_COLON_COLON, - STATE(4033), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - ACTIONS(3603), 22, - anon_sym_alias, - anon_sym_global, - anon_sym_file, - anon_sym_where, - anon_sym_notnull, - anon_sym_unmanaged, + ACTIONS(2993), 1, anon_sym_scoped, + ACTIONS(2995), 1, 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, - [16892] = 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(2967), 1, - sym__identifier_token, - ACTIONS(2979), 1, - anon_sym_LPAREN, - ACTIONS(3001), 1, + ACTIONS(2997), 1, sym_predefined_type, - ACTIONS(3454), 1, - anon_sym_delegate, - ACTIONS(6073), 1, + ACTIONS(3436), 1, anon_sym_ref, - ACTIONS(6077), 1, - anon_sym_scoped, - ACTIONS(6079), 1, - anon_sym_var, - STATE(3691), 1, + ACTIONS(3438), 1, + anon_sym_delegate, + STATE(2345), 1, + sym_type, + STATE(3654), 1, sym__reserved_identifier, - STATE(4087), 1, - sym_identifier, - STATE(4109), 1, + STATE(4073), 1, sym_generic_name, - STATE(4292), 1, + STATE(4081), 1, + sym_identifier, + STATE(4334), 1, sym_tuple_type, - STATE(4390), 1, + STATE(4369), 1, sym__name, - STATE(4404), 1, + STATE(4373), 1, sym_array_type, - STATE(7162), 1, + STATE(7233), 1, sym__array_base_type, - STATE(7413), 1, + STATE(7357), 1, sym__pointer_base_type, - STATE(7414), 1, - sym_type, - STATE(2347), 3, + STATE(2316), 3, sym_implicit_type, sym_ref_type, sym_scoped_type, - STATE(4096), 3, + STATE(4068), 3, sym_alias_qualified_name, sym__simple_name, sym_qualified_name, - STATE(4285), 3, + STATE(4249), 3, sym_nullable_type, sym_pointer_type, sym_function_pointer_type, - STATE(4034), 9, + STATE(3980), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -546978,7 +541556,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(2971), 20, + ACTIONS(2969), 20, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -546999,7 +541577,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [17019] = 31, + [11590] = 31, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -547020,51 +541598,51 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(2967), 1, + ACTIONS(3814), 1, sym__identifier_token, - ACTIONS(2979), 1, - anon_sym_LPAREN, - ACTIONS(3001), 1, - sym_predefined_type, - ACTIONS(3454), 1, - anon_sym_delegate, - ACTIONS(6073), 1, + ACTIONS(4203), 1, anon_sym_ref, - ACTIONS(6077), 1, - anon_sym_scoped, - ACTIONS(6079), 1, + ACTIONS(5719), 1, + anon_sym_delegate, + ACTIONS(5723), 1, anon_sym_var, - STATE(3691), 1, + ACTIONS(5725), 1, + sym_predefined_type, + ACTIONS(5875), 1, + anon_sym_scoped, + ACTIONS(6123), 1, + anon_sym_LPAREN, + STATE(2900), 1, sym__reserved_identifier, - STATE(4087), 1, - sym_identifier, - STATE(4109), 1, - sym_generic_name, - STATE(4292), 1, + STATE(2934), 1, + sym_array_type, + STATE(2943), 1, sym_tuple_type, - STATE(4390), 1, + STATE(2946), 1, + sym_type, + STATE(2950), 1, + sym_generic_name, + STATE(3317), 1, + sym_identifier, + STATE(3511), 1, sym__name, - STATE(4404), 1, - sym_array_type, - STATE(7162), 1, + STATE(7061), 1, sym__array_base_type, - STATE(7413), 1, + STATE(7640), 1, sym__pointer_base_type, - STATE(7419), 1, - sym_type, - STATE(2347), 3, - sym_implicit_type, - sym_ref_type, - sym_scoped_type, - STATE(4096), 3, + STATE(2907), 3, sym_alias_qualified_name, sym__simple_name, sym_qualified_name, - STATE(4285), 3, + STATE(2926), 3, + sym_implicit_type, + sym_ref_type, + sym_scoped_type, + STATE(2942), 3, sym_nullable_type, sym_pointer_type, sym_function_pointer_type, - STATE(4035), 9, + STATE(3981), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -547074,7 +541652,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(2971), 20, + ACTIONS(3816), 20, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -547095,7 +541673,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [17146] = 41, + [11717] = 17, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -547116,92 +541694,68 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4719), 1, - anon_sym_DASH_GT, - ACTIONS(4733), 1, - anon_sym_DOT, - ACTIONS(5624), 1, + ACTIONS(1481), 1, + anon_sym_LBRACE, + ACTIONS(4753), 1, anon_sym_LPAREN, - ACTIONS(5658), 1, - anon_sym_LBRACK, - ACTIONS(5666), 1, + STATE(2917), 1, + sym_argument_list, + STATE(3056), 1, + sym_initializer_expression, + 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(4755), 12, + anon_sym_LT, + anon_sym_GT, + anon_sym_QMARK, anon_sym_BANG, - ACTIONS(5688), 1, - anon_sym_switch, - ACTIONS(5696), 1, - anon_sym_with, - ACTIONS(5935), 1, - anon_sym_as, - ACTIONS(6231), 1, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_SLASH, - ACTIONS(6235), 1, - anon_sym_GT_GT, - ACTIONS(6237), 1, - anon_sym_DOT_DOT, - ACTIONS(6241), 1, - anon_sym_AMP, - ACTIONS(6247), 1, - anon_sym_is, - ACTIONS(6249), 1, - anon_sym_CARET, - ACTIONS(6251), 1, anon_sym_PIPE, - ACTIONS(6253), 1, - anon_sym_AMP_AMP, - ACTIONS(6255), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6257), 1, - anon_sym_QMARK_QMARK, - ACTIONS(6267), 1, - anon_sym_QMARK, - STATE(2902), 1, - sym_bracketed_argument_list, - STATE(3886), 1, - sym_argument_list, - ACTIONS(5668), 2, + anon_sym_AMP, + anon_sym_GT_GT, + anon_sym_DOT, + anon_sym_or, + ACTIONS(4751), 29, + anon_sym_LBRACK, + anon_sym_where, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6227), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(6229), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(6233), 2, + anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(6239), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(6243), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6245), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(6317), 2, - anon_sym_ascending, - anon_sym_descending, - ACTIONS(6315), 8, - anon_sym_COMMA, - 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(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, - [17293] = 31, + anon_sym_as, + anon_sym_is, + anon_sym_DASH_GT, + anon_sym_with, + [11816] = 31, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -547222,51 +541776,51 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(2967), 1, + ACTIONS(3798), 1, sym__identifier_token, - ACTIONS(2979), 1, - anon_sym_LPAREN, - ACTIONS(3001), 1, - sym_predefined_type, - ACTIONS(3454), 1, + ACTIONS(4025), 1, + anon_sym_ref, + ACTIONS(5638), 1, anon_sym_delegate, - ACTIONS(4737), 1, + ACTIONS(5642), 1, anon_sym_var, - ACTIONS(6103), 1, - anon_sym_ref, - ACTIONS(6107), 1, + ACTIONS(5644), 1, + sym_predefined_type, + ACTIONS(5825), 1, anon_sym_scoped, - STATE(3691), 1, - sym__reserved_identifier, - STATE(4087), 1, + ACTIONS(6101), 1, + anon_sym_LPAREN, + STATE(3177), 1, sym_identifier, - STATE(4109), 1, + STATE(3205), 1, + sym__reserved_identifier, + STATE(3226), 1, + sym_type, + STATE(3229), 1, + sym_array_type, + STATE(3241), 1, sym_generic_name, - STATE(4292), 1, + STATE(3308), 1, sym_tuple_type, - STATE(4390), 1, + STATE(3488), 1, sym__name, - STATE(4404), 1, - sym_array_type, - STATE(6531), 1, - sym_type, - STATE(7162), 1, + STATE(7208), 1, sym__array_base_type, - STATE(7413), 1, + STATE(7508), 1, sym__pointer_base_type, - STATE(2347), 3, + STATE(3216), 3, + sym_nullable_type, + sym_pointer_type, + sym_function_pointer_type, + STATE(3222), 3, sym_implicit_type, sym_ref_type, sym_scoped_type, - STATE(4096), 3, + STATE(3304), 3, sym_alias_qualified_name, sym__simple_name, sym_qualified_name, - STATE(4285), 3, - sym_nullable_type, - sym_pointer_type, - sym_function_pointer_type, - STATE(4037), 9, + STATE(3983), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -547276,7 +541830,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(2971), 20, + ACTIONS(3800), 20, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -547297,7 +541851,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [17420] = 31, + [11943] = 31, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -547318,51 +541872,51 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(3887), 1, - sym__identifier_token, - ACTIONS(4042), 1, + ACTIONS(3438), 1, anon_sym_delegate, - ACTIONS(4046), 1, + ACTIONS(4080), 1, + sym__identifier_token, + ACTIONS(4086), 1, + anon_sym_ref, + ACTIONS(5817), 1, anon_sym_var, - ACTIONS(4048), 1, + ACTIONS(5819), 1, sym_predefined_type, - ACTIONS(4227), 1, - anon_sym_ref, - ACTIONS(5698), 1, + ACTIONS(5845), 1, anon_sym_scoped, - ACTIONS(6051), 1, + ACTIONS(6111), 1, anon_sym_LPAREN, - STATE(2923), 1, + STATE(2351), 1, sym_identifier, - STATE(2945), 1, + STATE(2354), 1, sym__reserved_identifier, - STATE(2985), 1, - sym_generic_name, - STATE(2992), 1, + STATE(2373), 1, sym_array_type, - STATE(3038), 1, - sym_type, - STATE(3058), 1, + STATE(2377), 1, sym_tuple_type, - STATE(3072), 1, + STATE(2384), 1, + sym_generic_name, + STATE(2411), 1, sym__name, - STATE(7267), 1, + STATE(3841), 1, + sym_type, + STATE(7083), 1, sym__array_base_type, - STATE(7693), 1, + STATE(7357), 1, sym__pointer_base_type, - STATE(3012), 3, + STATE(2316), 3, + sym_implicit_type, + sym_ref_type, + sym_scoped_type, + STATE(2375), 3, sym_nullable_type, sym_pointer_type, sym_function_pointer_type, - STATE(3029), 3, + STATE(2402), 3, sym_alias_qualified_name, sym__simple_name, sym_qualified_name, - STATE(3054), 3, - sym_implicit_type, - sym_ref_type, - sym_scoped_type, - STATE(4038), 9, + STATE(3984), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -547372,7 +541926,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(3889), 20, + ACTIONS(4082), 20, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -547393,7 +541947,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [17547] = 31, + [12070] = 31, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -547414,51 +541968,51 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(3887), 1, + ACTIONS(2965), 1, sym__identifier_token, - ACTIONS(4024), 1, + ACTIONS(2977), 1, + anon_sym_LPAREN, + ACTIONS(4705), 1, + anon_sym_var, + ACTIONS(5170), 1, anon_sym_ref, - ACTIONS(4042), 1, + ACTIONS(5172), 1, anon_sym_delegate, - ACTIONS(4046), 1, - anon_sym_var, - ACTIONS(4048), 1, - sym_predefined_type, - ACTIONS(5862), 1, + ACTIONS(5178), 1, anon_sym_scoped, - ACTIONS(6051), 1, - anon_sym_LPAREN, - STATE(2945), 1, + ACTIONS(5180), 1, + sym_predefined_type, + STATE(3654), 1, sym__reserved_identifier, - STATE(2985), 1, + STATE(4073), 1, sym_generic_name, - STATE(2992), 1, - sym_array_type, - STATE(3058), 1, - sym_tuple_type, - STATE(3106), 1, - sym_type, - STATE(4395), 1, + STATE(4081), 1, sym_identifier, - STATE(5023), 1, + STATE(6400), 1, sym__name, - STATE(7267), 1, + STATE(6601), 1, + sym_tuple_type, + STATE(6706), 1, + sym_array_type, + STATE(7071), 1, + sym_type, + STATE(7233), 1, sym__array_base_type, - STATE(7693), 1, + STATE(7421), 1, sym__pointer_base_type, - STATE(3012), 3, - sym_nullable_type, - sym_pointer_type, - sym_function_pointer_type, - STATE(3029), 3, + STATE(4068), 3, sym_alias_qualified_name, sym__simple_name, sym_qualified_name, - STATE(3054), 3, + STATE(4249), 3, + sym_nullable_type, + sym_pointer_type, + sym_function_pointer_type, + STATE(7035), 3, sym_implicit_type, sym_ref_type, sym_scoped_type, - STATE(4039), 9, + STATE(3985), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -547468,7 +542022,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(3889), 20, + ACTIONS(2969), 20, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -547489,7 +542043,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [17674] = 31, + [12197] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -547510,51 +542064,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(3887), 1, - sym__identifier_token, - ACTIONS(4042), 1, - anon_sym_delegate, - ACTIONS(4046), 1, - anon_sym_var, - ACTIONS(4048), 1, - sym_predefined_type, - ACTIONS(4168), 1, - anon_sym_ref, - ACTIONS(5729), 1, - anon_sym_scoped, - ACTIONS(6051), 1, + ACTIONS(3431), 2, + anon_sym_EQ, + anon_sym_in, + ACTIONS(3600), 3, anon_sym_LPAREN, - STATE(2923), 1, - sym_identifier, - STATE(2945), 1, - sym__reserved_identifier, - STATE(2985), 1, - sym_generic_name, - STATE(2992), 1, - sym_array_type, - STATE(3038), 1, - sym_type, - STATE(3058), 1, - sym_tuple_type, - STATE(3072), 1, - sym__name, - STATE(7267), 1, - sym__array_base_type, - STATE(7693), 1, - sym__pointer_base_type, - STATE(3012), 3, - sym_nullable_type, - sym_pointer_type, - sym_function_pointer_type, - STATE(3029), 3, - sym_alias_qualified_name, - sym__simple_name, - sym_qualified_name, - STATE(3054), 3, - sym_implicit_type, - sym_ref_type, - sym_scoped_type, - STATE(4040), 9, + anon_sym_LBRACE, + anon_sym_GT, + STATE(3986), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -547564,15 +542081,35 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(3889), 20, + ACTIONS(3429), 11, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_COMMA, + 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(3603), 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, @@ -547585,7 +542122,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [17801] = 15, + sym__identifier_token, + [12292] = 31, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -547606,14 +542144,51 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(3447), 2, - anon_sym_EQ, - anon_sym_in, - ACTIONS(3616), 3, + ACTIONS(2965), 1, + sym__identifier_token, + ACTIONS(2977), 1, anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_GT, - STATE(4041), 9, + ACTIONS(2993), 1, + anon_sym_scoped, + ACTIONS(2995), 1, + anon_sym_var, + ACTIONS(2997), 1, + sym_predefined_type, + ACTIONS(3436), 1, + anon_sym_ref, + ACTIONS(3438), 1, + anon_sym_delegate, + STATE(3654), 1, + sym__reserved_identifier, + STATE(4073), 1, + sym_generic_name, + STATE(4334), 1, + sym_tuple_type, + STATE(4369), 1, + sym__name, + STATE(4373), 1, + sym_array_type, + STATE(5785), 1, + sym_identifier, + STATE(6082), 1, + sym_type, + STATE(7233), 1, + sym__array_base_type, + STATE(7357), 1, + sym__pointer_base_type, + STATE(2316), 3, + sym_implicit_type, + sym_ref_type, + sym_scoped_type, + STATE(4068), 3, + sym_alias_qualified_name, + sym__simple_name, + sym_qualified_name, + STATE(4249), 3, + sym_nullable_type, + sym_pointer_type, + sym_function_pointer_type, + STATE(3987), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -547623,35 +542198,15 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(3445), 11, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_COMMA, - 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(3619), 29, + ACTIONS(2969), 20, 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, @@ -547664,8 +542219,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - sym__identifier_token, - [17896] = 15, + [12419] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -547686,66 +542240,187 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(6309), 1, - anon_sym_and, - ACTIONS(6313), 1, - anon_sym_or, - STATE(4042), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - ACTIONS(6207), 12, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, + ACTIONS(4697), 1, + anon_sym_DOT, + ACTIONS(4699), 1, + anon_sym_DASH_GT, + ACTIONS(5591), 1, + anon_sym_LPAREN, + ACTIONS(5650), 1, + anon_sym_LBRACK, + ACTIONS(5658), 1, anon_sym_BANG, - anon_sym_PLUS, - anon_sym_DASH, + ACTIONS(5682), 1, + anon_sym_switch, + ACTIONS(5698), 1, + anon_sym_with, + ACTIONS(5917), 1, + anon_sym_as, + ACTIONS(6207), 1, anon_sym_SLASH, - anon_sym_PIPE, + ACTIONS(6209), 1, + anon_sym_CARET, + ACTIONS(6211), 1, anon_sym_AMP, + ACTIONS(6215), 1, anon_sym_GT_GT, - anon_sym_DOT, - anon_sym_as, - ACTIONS(6205), 31, - anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_where, + ACTIONS(6221), 1, + anon_sym_DOT_DOT, + ACTIONS(6223), 1, + anon_sym_is, + ACTIONS(6232), 1, + anon_sym_PIPE, + ACTIONS(6234), 1, + anon_sym_AMP_AMP, + ACTIONS(6236), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6238), 1, + anon_sym_QMARK_QMARK, + ACTIONS(6286), 1, + anon_sym_QMARK, + STATE(2892), 1, + sym_bracketed_argument_list, + STATE(3771), 1, + sym_argument_list, + ACTIONS(5660), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + ACTIONS(6201), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(6203), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6205), 2, anon_sym_STAR, anon_sym_PERCENT, - anon_sym_CARET, + ACTIONS(6213), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, + ACTIONS(6217), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + ACTIONS(6219), 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, + 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(5652), 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, + [12564] = 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(3761), 1, + sym__identifier_token, + ACTIONS(4177), 1, + anon_sym_ref, + ACTIONS(5622), 1, + anon_sym_delegate, + ACTIONS(5626), 1, + anon_sym_var, + ACTIONS(5628), 1, + sym_predefined_type, + ACTIONS(5789), 1, + anon_sym_scoped, + ACTIONS(6133), 1, + anon_sym_LPAREN, + STATE(3119), 1, + sym_identifier, + STATE(3120), 1, + sym__reserved_identifier, + STATE(3147), 1, + sym_array_type, + STATE(3149), 1, + sym_tuple_type, + STATE(3151), 1, + sym__name, + STATE(3184), 1, + sym_generic_name, + STATE(3270), 1, + sym_type, + STATE(7165), 1, + sym__array_base_type, + STATE(7401), 1, + sym__pointer_base_type, + STATE(3143), 3, + sym_alias_qualified_name, + sym__simple_name, + sym_qualified_name, + STATE(3146), 3, + sym_implicit_type, + sym_ref_type, + sym_scoped_type, + STATE(3148), 3, + sym_nullable_type, + sym_pointer_type, + sym_function_pointer_type, + STATE(3989), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + ACTIONS(3763), 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, - anon_sym_is, - anon_sym_DASH_GT, - anon_sym_with, - [17991] = 31, + [12691] = 31, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -547766,51 +542441,51 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(3454), 1, - anon_sym_delegate, - ACTIONS(3630), 1, - anon_sym_ref, - ACTIONS(4058), 1, + ACTIONS(3798), 1, sym__identifier_token, + ACTIONS(4078), 1, + anon_sym_ref, ACTIONS(5638), 1, - anon_sym_var, + anon_sym_delegate, ACTIONS(5640), 1, + anon_sym_scoped, + ACTIONS(5642), 1, + anon_sym_var, + ACTIONS(5644), 1, sym_predefined_type, - ACTIONS(6055), 1, + ACTIONS(6101), 1, anon_sym_LPAREN, - ACTIONS(6221), 1, - anon_sym_scoped, - STATE(2343), 1, - sym_type, - STATE(2361), 1, + STATE(3205), 1, sym__reserved_identifier, - STATE(2378), 1, + STATE(3229), 1, sym_array_type, - STATE(2380), 1, - sym_tuple_type, - STATE(2389), 1, + STATE(3241), 1, sym_generic_name, - STATE(2564), 1, + STATE(3308), 1, + sym_tuple_type, + STATE(3439), 1, + sym_type, + STATE(4542), 1, sym_identifier, - STATE(2623), 1, + STATE(5140), 1, sym__name, - STATE(7103), 1, + STATE(7208), 1, sym__array_base_type, - STATE(7413), 1, + STATE(7508), 1, sym__pointer_base_type, - STATE(2347), 3, + STATE(3216), 3, + sym_nullable_type, + sym_pointer_type, + sym_function_pointer_type, + STATE(3222), 3, sym_implicit_type, sym_ref_type, sym_scoped_type, - STATE(2373), 3, + STATE(3304), 3, sym_alias_qualified_name, sym__simple_name, sym_qualified_name, - STATE(2379), 3, - sym_nullable_type, - sym_pointer_type, - sym_function_pointer_type, - STATE(4043), 9, + STATE(3990), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -547820,7 +542495,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(4060), 20, + ACTIONS(3800), 20, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -547841,7 +542516,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [18118] = 31, + [12818] = 31, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -547862,51 +542537,51 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(3788), 1, + ACTIONS(2965), 1, sym__identifier_token, - ACTIONS(4028), 1, - anon_sym_ref, - ACTIONS(5818), 1, - anon_sym_delegate, - ACTIONS(5822), 1, - anon_sym_var, - ACTIONS(5824), 1, + ACTIONS(2977), 1, + anon_sym_LPAREN, + ACTIONS(2997), 1, sym_predefined_type, - ACTIONS(5895), 1, + ACTIONS(3438), 1, + anon_sym_delegate, + ACTIONS(3624), 1, + anon_sym_ref, + ACTIONS(6037), 1, anon_sym_scoped, - ACTIONS(6059), 1, - anon_sym_LPAREN, - STATE(3167), 1, - sym_identifier, - STATE(3225), 1, + ACTIONS(6039), 1, + anon_sym_var, + STATE(2345), 1, + sym_type, + STATE(3654), 1, sym__reserved_identifier, - STATE(3246), 1, + STATE(4073), 1, sym_generic_name, - STATE(3255), 1, - sym_array_type, - STATE(3258), 1, + STATE(4081), 1, + sym_identifier, + STATE(4334), 1, sym_tuple_type, - STATE(3274), 1, - sym_type, - STATE(3453), 1, + STATE(4369), 1, sym__name, - STATE(7101), 1, + STATE(4373), 1, + sym_array_type, + STATE(7233), 1, sym__array_base_type, - STATE(7546), 1, + STATE(7357), 1, sym__pointer_base_type, - STATE(3251), 3, - sym_alias_qualified_name, - sym__simple_name, - sym_qualified_name, - STATE(3253), 3, + STATE(2316), 3, sym_implicit_type, sym_ref_type, sym_scoped_type, - STATE(3257), 3, + STATE(4068), 3, + sym_alias_qualified_name, + sym__simple_name, + sym_qualified_name, + STATE(4249), 3, sym_nullable_type, sym_pointer_type, sym_function_pointer_type, - STATE(4044), 9, + STATE(3991), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -547916,7 +542591,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(3790), 20, + ACTIONS(2969), 20, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -547937,7 +542612,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [18245] = 40, + [12945] = 31, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -547958,70 +542633,51 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4719), 1, - anon_sym_DASH_GT, - ACTIONS(4733), 1, - anon_sym_DOT, - ACTIONS(5624), 1, + ACTIONS(2965), 1, + sym__identifier_token, + ACTIONS(2977), 1, anon_sym_LPAREN, - ACTIONS(5658), 1, - anon_sym_LBRACK, - ACTIONS(5666), 1, - anon_sym_BANG, - ACTIONS(5688), 1, - anon_sym_switch, - ACTIONS(5696), 1, - anon_sym_with, - ACTIONS(5935), 1, - anon_sym_as, - ACTIONS(6231), 1, - anon_sym_SLASH, - ACTIONS(6235), 1, - anon_sym_GT_GT, - ACTIONS(6237), 1, - anon_sym_DOT_DOT, - ACTIONS(6241), 1, - anon_sym_AMP, - ACTIONS(6247), 1, - anon_sym_is, - ACTIONS(6249), 1, - anon_sym_CARET, - ACTIONS(6251), 1, - anon_sym_PIPE, - ACTIONS(6253), 1, - anon_sym_AMP_AMP, - ACTIONS(6255), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6257), 1, - anon_sym_QMARK_QMARK, - ACTIONS(6267), 1, - anon_sym_QMARK, - STATE(2902), 1, - sym_bracketed_argument_list, - STATE(3886), 1, - sym_argument_list, - ACTIONS(5668), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6227), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(6229), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(6233), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - ACTIONS(6239), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(6243), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(6245), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - STATE(4045), 9, + ACTIONS(2997), 1, + sym_predefined_type, + ACTIONS(3438), 1, + anon_sym_delegate, + ACTIONS(6039), 1, + anon_sym_var, + ACTIONS(6139), 1, + anon_sym_ref, + ACTIONS(6143), 1, + anon_sym_scoped, + STATE(3654), 1, + sym__reserved_identifier, + STATE(4073), 1, + sym_generic_name, + STATE(4081), 1, + sym_identifier, + STATE(4334), 1, + sym_tuple_type, + STATE(4369), 1, + sym__name, + STATE(4373), 1, + sym_array_type, + STATE(7233), 1, + sym__array_base_type, + STATE(7357), 1, + sym__pointer_base_type, + STATE(7580), 1, + sym_type, + STATE(2316), 3, + sym_implicit_type, + sym_ref_type, + sym_scoped_type, + STATE(4068), 3, + sym_alias_qualified_name, + sym__simple_name, + sym_qualified_name, + STATE(4249), 3, + sym_nullable_type, + sym_pointer_type, + sym_function_pointer_type, + STATE(3992), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -548031,18 +542687,28 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5882), 10, - anon_sym_COMMA, + ACTIONS(2969), 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, - [18390] = 31, + [13072] = 31, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -548063,51 +542729,51 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(3887), 1, + ACTIONS(3798), 1, sym__identifier_token, - ACTIONS(3891), 1, + ACTIONS(4169), 1, anon_sym_ref, - ACTIONS(4042), 1, + ACTIONS(5638), 1, anon_sym_delegate, - ACTIONS(4044), 1, - anon_sym_scoped, - ACTIONS(4046), 1, + ACTIONS(5642), 1, anon_sym_var, - ACTIONS(4048), 1, + ACTIONS(5644), 1, sym_predefined_type, - ACTIONS(6051), 1, + ACTIONS(5729), 1, + anon_sym_scoped, + ACTIONS(6101), 1, anon_sym_LPAREN, - STATE(2923), 1, + STATE(3177), 1, sym_identifier, - STATE(2945), 1, + STATE(3205), 1, sym__reserved_identifier, - STATE(2985), 1, - sym_generic_name, - STATE(2992), 1, - sym_array_type, - STATE(3038), 1, + STATE(3226), 1, sym_type, - STATE(3058), 1, + STATE(3229), 1, + sym_array_type, + STATE(3241), 1, + sym_generic_name, + STATE(3308), 1, sym_tuple_type, - STATE(3072), 1, + STATE(3488), 1, sym__name, - STATE(7267), 1, + STATE(7208), 1, sym__array_base_type, - STATE(7693), 1, + STATE(7508), 1, sym__pointer_base_type, - STATE(3012), 3, + STATE(3216), 3, sym_nullable_type, sym_pointer_type, sym_function_pointer_type, - STATE(3029), 3, - sym_alias_qualified_name, - sym__simple_name, - sym_qualified_name, - STATE(3054), 3, + STATE(3222), 3, sym_implicit_type, sym_ref_type, sym_scoped_type, - STATE(4046), 9, + STATE(3304), 3, + sym_alias_qualified_name, + sym__simple_name, + sym_qualified_name, + STATE(3993), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -548117,7 +542783,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(3889), 20, + ACTIONS(3800), 20, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -548138,7 +542804,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [18517] = 40, + [13199] = 31, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -548159,70 +542825,51 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4719), 1, - anon_sym_DASH_GT, - ACTIONS(4733), 1, - anon_sym_DOT, - ACTIONS(5624), 1, + ACTIONS(3798), 1, + sym__identifier_token, + ACTIONS(4169), 1, + anon_sym_ref, + ACTIONS(5638), 1, + anon_sym_delegate, + ACTIONS(5642), 1, + anon_sym_var, + ACTIONS(5644), 1, + sym_predefined_type, + ACTIONS(5729), 1, + anon_sym_scoped, + ACTIONS(6101), 1, anon_sym_LPAREN, - ACTIONS(5658), 1, - anon_sym_LBRACK, - ACTIONS(5666), 1, - anon_sym_BANG, - ACTIONS(5688), 1, - anon_sym_switch, - ACTIONS(5696), 1, - anon_sym_with, - ACTIONS(5935), 1, - anon_sym_as, - ACTIONS(6231), 1, - anon_sym_SLASH, - ACTIONS(6235), 1, - anon_sym_GT_GT, - ACTIONS(6237), 1, - anon_sym_DOT_DOT, - ACTIONS(6241), 1, - anon_sym_AMP, - ACTIONS(6247), 1, - anon_sym_is, - ACTIONS(6249), 1, - anon_sym_CARET, - ACTIONS(6251), 1, - anon_sym_PIPE, - ACTIONS(6253), 1, - anon_sym_AMP_AMP, - ACTIONS(6255), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6257), 1, - anon_sym_QMARK_QMARK, - ACTIONS(6267), 1, - anon_sym_QMARK, - STATE(2902), 1, - sym_bracketed_argument_list, - STATE(3886), 1, - sym_argument_list, - ACTIONS(5668), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6227), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(6229), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(6233), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - ACTIONS(6239), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(6243), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(6245), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - STATE(4047), 9, + STATE(3177), 1, + sym_identifier, + STATE(3205), 1, + sym__reserved_identifier, + STATE(3229), 1, + sym_array_type, + STATE(3241), 1, + sym_generic_name, + STATE(3308), 1, + sym_tuple_type, + STATE(3439), 1, + sym_type, + STATE(3488), 1, + sym__name, + STATE(7208), 1, + sym__array_base_type, + STATE(7508), 1, + sym__pointer_base_type, + STATE(3216), 3, + sym_nullable_type, + sym_pointer_type, + sym_function_pointer_type, + STATE(3222), 3, + sym_implicit_type, + sym_ref_type, + sym_scoped_type, + STATE(3304), 3, + sym_alias_qualified_name, + sym__simple_name, + sym_qualified_name, + STATE(3994), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -548232,18 +542879,28 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5899), 10, - anon_sym_COMMA, + 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, - [18662] = 22, + [13326] = 22, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -548264,26 +542921,26 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4719), 1, - anon_sym_DASH_GT, - ACTIONS(4733), 1, - anon_sym_DOT, - ACTIONS(5624), 1, + ACTIONS(4753), 1, anon_sym_LPAREN, - ACTIONS(5658), 1, + ACTIONS(4792), 1, + anon_sym_DOT, + ACTIONS(4794), 1, + anon_sym_DASH_GT, + ACTIONS(4819), 1, anon_sym_LBRACK, - ACTIONS(5666), 1, + ACTIONS(4823), 1, anon_sym_BANG, - ACTIONS(6237), 1, + ACTIONS(6266), 1, anon_sym_DOT_DOT, - STATE(2902), 1, + STATE(2419), 1, sym_bracketed_argument_list, - STATE(3886), 1, + STATE(2958), 1, sym_argument_list, - ACTIONS(5668), 2, + ACTIONS(4825), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(4048), 9, + STATE(3995), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -548293,7 +542950,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(1223), 10, + ACTIONS(5743), 10, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, @@ -548303,9 +542960,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_AMP, anon_sym_GT_GT, - anon_sym_as, - ACTIONS(1221), 25, - anon_sym_COMMA, + anon_sym_or, + ACTIONS(5741), 25, anon_sym_where, anon_sym_STAR, anon_sym_PERCENT, @@ -548317,20 +542973,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, - [18771] = 31, + [13435] = 31, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -548351,51 +543008,51 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(2967), 1, + ACTIONS(2965), 1, sym__identifier_token, - ACTIONS(2979), 1, + ACTIONS(2977), 1, anon_sym_LPAREN, - ACTIONS(3001), 1, + ACTIONS(2997), 1, sym_predefined_type, - ACTIONS(3454), 1, + ACTIONS(3438), 1, anon_sym_delegate, - ACTIONS(4737), 1, + ACTIONS(4705), 1, anon_sym_var, - ACTIONS(6103), 1, + ACTIONS(6191), 1, anon_sym_ref, - ACTIONS(6107), 1, + ACTIONS(6195), 1, anon_sym_scoped, - STATE(3691), 1, + STATE(3654), 1, sym__reserved_identifier, - STATE(4087), 1, - sym_identifier, - STATE(4109), 1, + STATE(4073), 1, sym_generic_name, - STATE(4292), 1, + STATE(4081), 1, + sym_identifier, + STATE(4334), 1, sym_tuple_type, - STATE(4390), 1, + STATE(4369), 1, sym__name, - STATE(4404), 1, + STATE(4373), 1, sym_array_type, - STATE(7162), 1, + STATE(7233), 1, sym__array_base_type, - STATE(7413), 1, - sym__pointer_base_type, - STATE(7618), 1, + STATE(7281), 1, sym_type, - STATE(2347), 3, + STATE(7357), 1, + sym__pointer_base_type, + STATE(2316), 3, sym_implicit_type, sym_ref_type, sym_scoped_type, - STATE(4096), 3, + STATE(4068), 3, sym_alias_qualified_name, sym__simple_name, sym_qualified_name, - STATE(4285), 3, + STATE(4249), 3, sym_nullable_type, sym_pointer_type, sym_function_pointer_type, - STATE(4049), 9, + STATE(3996), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -548405,7 +543062,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(2971), 20, + ACTIONS(2969), 20, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -548426,7 +543083,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [18898] = 22, + [13562] = 31, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -548447,26 +543104,51 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4755), 1, - anon_sym_DASH_GT, - ACTIONS(4804), 1, + ACTIONS(3814), 1, + sym__identifier_token, + ACTIONS(4185), 1, + anon_sym_ref, + ACTIONS(5719), 1, + anon_sym_delegate, + ACTIONS(5723), 1, + anon_sym_var, + ACTIONS(5725), 1, + sym_predefined_type, + ACTIONS(5847), 1, + anon_sym_scoped, + ACTIONS(6123), 1, anon_sym_LPAREN, - ACTIONS(4808), 1, - anon_sym_DOT, - ACTIONS(4835), 1, - anon_sym_LBRACK, - ACTIONS(4839), 1, - anon_sym_BANG, - ACTIONS(6295), 1, - anon_sym_DOT_DOT, - STATE(2433), 1, - sym_bracketed_argument_list, - STATE(3035), 1, - sym_argument_list, - ACTIONS(4841), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(4050), 9, + STATE(2900), 1, + sym__reserved_identifier, + STATE(2934), 1, + sym_array_type, + STATE(2943), 1, + sym_tuple_type, + STATE(2950), 1, + sym_generic_name, + STATE(2975), 1, + sym_type, + STATE(3317), 1, + sym_identifier, + STATE(3511), 1, + sym__name, + STATE(7061), 1, + sym__array_base_type, + STATE(7640), 1, + sym__pointer_base_type, + STATE(2907), 3, + sym_alias_qualified_name, + sym__simple_name, + sym_qualified_name, + STATE(2926), 3, + sym_implicit_type, + sym_ref_type, + sym_scoped_type, + STATE(2942), 3, + sym_nullable_type, + sym_pointer_type, + sym_function_pointer_type, + STATE(3997), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -548476,44 +543158,28 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5733), 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(5731), 25, + ACTIONS(3816), 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, - [19007] = 29, + [13689] = 31, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -548534,50 +543200,146 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4755), 1, - anon_sym_DASH_GT, - ACTIONS(4804), 1, + ACTIONS(2965), 1, + sym__identifier_token, + ACTIONS(2977), 1, + anon_sym_LPAREN, + ACTIONS(2997), 1, + sym_predefined_type, + ACTIONS(3438), 1, + anon_sym_delegate, + ACTIONS(6039), 1, + anon_sym_var, + ACTIONS(6139), 1, + anon_sym_ref, + ACTIONS(6143), 1, + anon_sym_scoped, + STATE(3654), 1, + sym__reserved_identifier, + STATE(4073), 1, + sym_generic_name, + STATE(4081), 1, + sym_identifier, + STATE(4334), 1, + sym_tuple_type, + STATE(4369), 1, + sym__name, + STATE(4373), 1, + sym_array_type, + STATE(7233), 1, + sym__array_base_type, + STATE(7357), 1, + sym__pointer_base_type, + STATE(7424), 1, + sym_type, + STATE(2316), 3, + sym_implicit_type, + sym_ref_type, + sym_scoped_type, + STATE(4068), 3, + sym_alias_qualified_name, + sym__simple_name, + sym_qualified_name, + STATE(4249), 3, + sym_nullable_type, + sym_pointer_type, + sym_function_pointer_type, + 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, + ACTIONS(2969), 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, + [13816] = 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(4753), 1, anon_sym_LPAREN, - ACTIONS(4808), 1, + ACTIONS(4792), 1, anon_sym_DOT, - ACTIONS(4835), 1, + ACTIONS(4794), 1, + anon_sym_DASH_GT, + ACTIONS(4819), 1, anon_sym_LBRACK, - ACTIONS(4839), 1, + ACTIONS(4823), 1, anon_sym_BANG, - ACTIONS(6277), 1, + ACTIONS(6248), 1, anon_sym_SLASH, - ACTIONS(6287), 1, + ACTIONS(6258), 1, anon_sym_GT_GT, - ACTIONS(6293), 1, + ACTIONS(6264), 1, anon_sym_switch, - ACTIONS(6295), 1, + ACTIONS(6266), 1, anon_sym_DOT_DOT, - ACTIONS(6307), 1, + ACTIONS(6278), 1, anon_sym_with, - STATE(2433), 1, + STATE(2419), 1, sym_bracketed_argument_list, - STATE(3035), 1, + STATE(2958), 1, sym_argument_list, - ACTIONS(4841), 2, + ACTIONS(4825), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6273), 2, + ACTIONS(6244), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6275), 2, + ACTIONS(6246), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(6285), 2, + ACTIONS(6256), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(5664), 6, + ACTIONS(5739), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, anon_sym_PIPE, anon_sym_AMP, anon_sym_or, - STATE(4051), 9, + STATE(3999), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -548587,7 +543349,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5660), 19, + ACTIONS(5737), 19, anon_sym_where, anon_sym_CARET, anon_sym_EQ_EQ, @@ -548607,7 +543369,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_select, anon_sym_as, anon_sym_is, - [19130] = 26, + [13939] = 26, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -548628,35 +543390,35 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4755), 1, - anon_sym_DASH_GT, - ACTIONS(4804), 1, + ACTIONS(4753), 1, anon_sym_LPAREN, - ACTIONS(4808), 1, + ACTIONS(4792), 1, anon_sym_DOT, - ACTIONS(4835), 1, + ACTIONS(4794), 1, + anon_sym_DASH_GT, + ACTIONS(4819), 1, anon_sym_LBRACK, - ACTIONS(4839), 1, + ACTIONS(4823), 1, anon_sym_BANG, - ACTIONS(6277), 1, + ACTIONS(6248), 1, anon_sym_SLASH, - ACTIONS(6293), 1, + ACTIONS(6264), 1, anon_sym_switch, - ACTIONS(6295), 1, + ACTIONS(6266), 1, anon_sym_DOT_DOT, - ACTIONS(6307), 1, + ACTIONS(6278), 1, anon_sym_with, - STATE(2433), 1, + STATE(2419), 1, sym_bracketed_argument_list, - STATE(3035), 1, + STATE(2958), 1, sym_argument_list, - ACTIONS(4841), 2, + ACTIONS(4825), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6275), 2, + ACTIONS(6246), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(5664), 9, + ACTIONS(5739), 9, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, @@ -548666,7 +543428,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_or, - STATE(4052), 9, + STATE(4000), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -548676,7 +543438,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5660), 21, + ACTIONS(5737), 21, anon_sym_where, anon_sym_CARET, anon_sym_LT_LT, @@ -548698,7 +543460,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_select, anon_sym_as, anon_sym_is, - [19247] = 24, + [14056] = 24, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -548719,30 +543481,30 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4755), 1, - anon_sym_DASH_GT, - ACTIONS(4804), 1, + ACTIONS(4753), 1, anon_sym_LPAREN, - ACTIONS(4808), 1, + ACTIONS(4792), 1, anon_sym_DOT, - ACTIONS(4835), 1, + ACTIONS(4794), 1, + anon_sym_DASH_GT, + ACTIONS(4819), 1, anon_sym_LBRACK, - ACTIONS(4839), 1, + ACTIONS(4823), 1, anon_sym_BANG, - ACTIONS(6293), 1, + ACTIONS(6264), 1, anon_sym_switch, - ACTIONS(6295), 1, + ACTIONS(6266), 1, anon_sym_DOT_DOT, - ACTIONS(6307), 1, + ACTIONS(6278), 1, anon_sym_with, - STATE(2433), 1, + STATE(2419), 1, sym_bracketed_argument_list, - STATE(3035), 1, + STATE(2958), 1, sym_argument_list, - ACTIONS(4841), 2, + ACTIONS(4825), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(4053), 9, + STATE(4001), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -548752,7 +543514,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5664), 10, + ACTIONS(5739), 10, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, @@ -548763,7 +543525,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_or, - ACTIONS(5660), 23, + ACTIONS(5737), 23, anon_sym_where, anon_sym_STAR, anon_sym_PERCENT, @@ -548787,7 +543549,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_select, anon_sym_as, anon_sym_is, - [19360] = 27, + [14169] = 27, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -548808,38 +543570,38 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4755), 1, - anon_sym_DASH_GT, - ACTIONS(4804), 1, + ACTIONS(4753), 1, anon_sym_LPAREN, - ACTIONS(4808), 1, + ACTIONS(4792), 1, anon_sym_DOT, - ACTIONS(4835), 1, + ACTIONS(4794), 1, + anon_sym_DASH_GT, + ACTIONS(4819), 1, anon_sym_LBRACK, - ACTIONS(4839), 1, + ACTIONS(4823), 1, anon_sym_BANG, - ACTIONS(6277), 1, + ACTIONS(6248), 1, anon_sym_SLASH, - ACTIONS(6293), 1, + ACTIONS(6264), 1, anon_sym_switch, - ACTIONS(6295), 1, + ACTIONS(6266), 1, anon_sym_DOT_DOT, - ACTIONS(6307), 1, + ACTIONS(6278), 1, anon_sym_with, - STATE(2433), 1, + STATE(2419), 1, sym_bracketed_argument_list, - STATE(3035), 1, + STATE(2958), 1, sym_argument_list, - ACTIONS(4841), 2, + ACTIONS(4825), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6273), 2, + ACTIONS(6244), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6275), 2, + ACTIONS(6246), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(5664), 7, + ACTIONS(5739), 7, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, @@ -548847,7 +543609,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_or, - STATE(4054), 9, + STATE(4002), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -548857,7 +543619,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5660), 21, + ACTIONS(5737), 21, anon_sym_where, anon_sym_CARET, anon_sym_LT_LT, @@ -548879,7 +543641,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_select, anon_sym_as, anon_sym_is, - [19479] = 15, + [14288] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -548900,11 +543662,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(6259), 1, + ACTIONS(6228), 1, anon_sym_into, - STATE(4056), 1, + STATE(3891), 1, aux_sym__query_body_repeat2, - STATE(4055), 9, + STATE(4003), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -548914,7 +543676,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(6001), 12, + ACTIONS(5881), 12, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, @@ -548927,7 +543689,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_as, - ACTIONS(5999), 31, + ACTIONS(5879), 31, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_LPAREN, @@ -548959,7 +543721,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, anon_sym_DASH_GT, anon_sym_with, - [19574] = 15, + [14383] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -548980,11 +543742,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(6259), 1, + ACTIONS(6228), 1, anon_sym_into, - STATE(3969), 1, + STATE(3894), 1, aux_sym__query_body_repeat2, - STATE(4056), 9, + STATE(4004), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -548994,7 +543756,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(6005), 12, + ACTIONS(5881), 12, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, @@ -549007,7 +543769,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_as, - ACTIONS(6003), 31, + ACTIONS(5879), 31, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_LPAREN, @@ -549036,10 +543798,682 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_descending, anon_sym_group, anon_sym_select, - anon_sym_is, - anon_sym_DASH_GT, - anon_sym_with, - [19669] = 22, + anon_sym_is, + anon_sym_DASH_GT, + anon_sym_with, + [14478] = 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(2965), 1, + sym__identifier_token, + ACTIONS(2977), 1, + anon_sym_LPAREN, + ACTIONS(2997), 1, + sym_predefined_type, + ACTIONS(3438), 1, + anon_sym_delegate, + ACTIONS(4705), 1, + anon_sym_var, + ACTIONS(6191), 1, + anon_sym_ref, + ACTIONS(6195), 1, + anon_sym_scoped, + STATE(3654), 1, + sym__reserved_identifier, + STATE(4073), 1, + sym_generic_name, + STATE(4081), 1, + sym_identifier, + STATE(4334), 1, + sym_tuple_type, + STATE(4369), 1, + sym__name, + STATE(4373), 1, + sym_array_type, + STATE(7233), 1, + sym__array_base_type, + STATE(7357), 1, + sym__pointer_base_type, + STATE(7603), 1, + sym_type, + STATE(2316), 3, + sym_implicit_type, + sym_ref_type, + sym_scoped_type, + STATE(4068), 3, + sym_alias_qualified_name, + sym__simple_name, + sym_qualified_name, + STATE(4249), 3, + sym_nullable_type, + sym_pointer_type, + sym_function_pointer_type, + 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(2969), 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, + [14605] = 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(2965), 1, + sym__identifier_token, + ACTIONS(2977), 1, + anon_sym_LPAREN, + ACTIONS(2997), 1, + sym_predefined_type, + ACTIONS(3438), 1, + anon_sym_delegate, + ACTIONS(6039), 1, + anon_sym_var, + ACTIONS(6139), 1, + anon_sym_ref, + ACTIONS(6143), 1, + anon_sym_scoped, + STATE(3654), 1, + sym__reserved_identifier, + STATE(4073), 1, + sym_generic_name, + STATE(4081), 1, + sym_identifier, + STATE(4334), 1, + sym_tuple_type, + STATE(4369), 1, + sym__name, + STATE(4373), 1, + sym_array_type, + STATE(7233), 1, + sym__array_base_type, + STATE(7357), 1, + sym__pointer_base_type, + STATE(7692), 1, + sym_type, + STATE(2316), 3, + sym_implicit_type, + sym_ref_type, + sym_scoped_type, + STATE(4068), 3, + sym_alias_qualified_name, + sym__simple_name, + sym_qualified_name, + STATE(4249), 3, + sym_nullable_type, + sym_pointer_type, + sym_function_pointer_type, + STATE(4006), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + ACTIONS(2969), 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, + [14732] = 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(3871), 1, + sym__identifier_token, + ACTIONS(4015), 1, + anon_sym_delegate, + ACTIONS(4019), 1, + anon_sym_var, + ACTIONS(4021), 1, + sym_predefined_type, + ACTIONS(4160), 1, + anon_sym_ref, + ACTIONS(5610), 1, + anon_sym_scoped, + ACTIONS(6033), 1, + anon_sym_LPAREN, + STATE(2916), 1, + sym__reserved_identifier, + STATE(2927), 1, + sym_identifier, + STATE(2978), 1, + sym_array_type, + STATE(2980), 1, + sym_tuple_type, + STATE(3030), 1, + sym_generic_name, + STATE(3086), 1, + sym__name, + STATE(3099), 1, + sym_type, + STATE(7236), 1, + sym__array_base_type, + STATE(7622), 1, + sym__pointer_base_type, + STATE(2976), 3, + sym_alias_qualified_name, + sym__simple_name, + sym_qualified_name, + STATE(2977), 3, + sym_implicit_type, + sym_ref_type, + sym_scoped_type, + STATE(2979), 3, + sym_nullable_type, + sym_pointer_type, + sym_function_pointer_type, + STATE(4007), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + ACTIONS(3873), 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, + [14859] = 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(2965), 1, + sym__identifier_token, + ACTIONS(2977), 1, + anon_sym_LPAREN, + ACTIONS(2997), 1, + sym_predefined_type, + ACTIONS(3438), 1, + anon_sym_delegate, + ACTIONS(6039), 1, + anon_sym_var, + ACTIONS(6139), 1, + anon_sym_ref, + ACTIONS(6143), 1, + anon_sym_scoped, + STATE(2345), 1, + sym_type, + STATE(3654), 1, + sym__reserved_identifier, + STATE(4073), 1, + sym_generic_name, + STATE(4081), 1, + sym_identifier, + STATE(4334), 1, + sym_tuple_type, + STATE(4369), 1, + sym__name, + STATE(4373), 1, + sym_array_type, + STATE(7233), 1, + sym__array_base_type, + STATE(7357), 1, + sym__pointer_base_type, + STATE(2316), 3, + sym_implicit_type, + sym_ref_type, + sym_scoped_type, + STATE(4068), 3, + sym_alias_qualified_name, + sym__simple_name, + sym_qualified_name, + STATE(4249), 3, + sym_nullable_type, + sym_pointer_type, + sym_function_pointer_type, + STATE(4008), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + ACTIONS(2969), 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, + [14986] = 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(2965), 1, + sym__identifier_token, + ACTIONS(2977), 1, + anon_sym_LPAREN, + ACTIONS(2997), 1, + sym_predefined_type, + ACTIONS(3438), 1, + anon_sym_delegate, + ACTIONS(3590), 1, + anon_sym_ref, + ACTIONS(4705), 1, + anon_sym_var, + ACTIONS(5843), 1, + anon_sym_scoped, + STATE(2345), 1, + sym_type, + STATE(3654), 1, + sym__reserved_identifier, + STATE(4073), 1, + sym_generic_name, + STATE(4081), 1, + sym_identifier, + STATE(4334), 1, + sym_tuple_type, + STATE(4369), 1, + sym__name, + STATE(4373), 1, + sym_array_type, + STATE(7233), 1, + sym__array_base_type, + STATE(7357), 1, + sym__pointer_base_type, + STATE(2316), 3, + sym_implicit_type, + sym_ref_type, + sym_scoped_type, + STATE(4068), 3, + sym_alias_qualified_name, + sym__simple_name, + sym_qualified_name, + STATE(4249), 3, + sym_nullable_type, + sym_pointer_type, + sym_function_pointer_type, + STATE(4009), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + ACTIONS(2969), 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, + [15113] = 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(2965), 1, + sym__identifier_token, + ACTIONS(2977), 1, + anon_sym_LPAREN, + ACTIONS(2997), 1, + sym_predefined_type, + ACTIONS(3438), 1, + anon_sym_delegate, + ACTIONS(6039), 1, + anon_sym_var, + ACTIONS(6139), 1, + anon_sym_ref, + ACTIONS(6143), 1, + anon_sym_scoped, + STATE(3654), 1, + sym__reserved_identifier, + STATE(4073), 1, + sym_generic_name, + STATE(4081), 1, + sym_identifier, + STATE(4334), 1, + sym_tuple_type, + STATE(4369), 1, + sym__name, + STATE(4373), 1, + sym_array_type, + STATE(7233), 1, + sym__array_base_type, + STATE(7357), 1, + sym__pointer_base_type, + STATE(7529), 1, + sym_type, + STATE(2316), 3, + sym_implicit_type, + sym_ref_type, + sym_scoped_type, + STATE(4068), 3, + sym_alias_qualified_name, + sym__simple_name, + sym_qualified_name, + STATE(4249), 3, + sym_nullable_type, + sym_pointer_type, + sym_function_pointer_type, + STATE(4010), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + ACTIONS(2969), 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, + [15240] = 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(2965), 1, + sym__identifier_token, + ACTIONS(2977), 1, + anon_sym_LPAREN, + ACTIONS(2997), 1, + sym_predefined_type, + ACTIONS(3438), 1, + anon_sym_delegate, + ACTIONS(4705), 1, + anon_sym_var, + ACTIONS(5500), 1, + anon_sym_ref, + ACTIONS(5508), 1, + anon_sym_scoped, + STATE(2345), 1, + sym_type, + STATE(3654), 1, + sym__reserved_identifier, + STATE(4073), 1, + sym_generic_name, + STATE(4081), 1, + sym_identifier, + STATE(4334), 1, + sym_tuple_type, + STATE(4369), 1, + sym__name, + STATE(4373), 1, + sym_array_type, + STATE(7233), 1, + sym__array_base_type, + STATE(7357), 1, + sym__pointer_base_type, + STATE(2316), 3, + sym_implicit_type, + sym_ref_type, + sym_scoped_type, + STATE(4068), 3, + sym_alias_qualified_name, + sym__simple_name, + sym_qualified_name, + STATE(4249), 3, + sym_nullable_type, + sym_pointer_type, + sym_function_pointer_type, + STATE(4011), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + ACTIONS(2969), 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, + [15367] = 22, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -549060,26 +544494,26 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4755), 1, - anon_sym_DASH_GT, - ACTIONS(4804), 1, + ACTIONS(4753), 1, anon_sym_LPAREN, - ACTIONS(4808), 1, + ACTIONS(4792), 1, anon_sym_DOT, - ACTIONS(4835), 1, + ACTIONS(4794), 1, + anon_sym_DASH_GT, + ACTIONS(4819), 1, anon_sym_LBRACK, - ACTIONS(4839), 1, + ACTIONS(4823), 1, anon_sym_BANG, - ACTIONS(6295), 1, + ACTIONS(6266), 1, anon_sym_DOT_DOT, - STATE(2433), 1, + STATE(2419), 1, sym_bracketed_argument_list, - STATE(3035), 1, + STATE(2958), 1, sym_argument_list, - ACTIONS(4841), 2, + ACTIONS(4825), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(4057), 9, + STATE(4012), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -549089,7 +544523,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(1223), 10, + ACTIONS(1161), 10, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, @@ -549100,7 +544534,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_or, - ACTIONS(1221), 25, + ACTIONS(1147), 25, anon_sym_where, anon_sym_STAR, anon_sym_PERCENT, @@ -549126,7 +544560,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_is, anon_sym_with, - [19778] = 31, + [15476] = 31, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -549147,51 +544581,51 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(2967), 1, + ACTIONS(3798), 1, sym__identifier_token, - ACTIONS(2979), 1, - anon_sym_LPAREN, - ACTIONS(3001), 1, - sym_predefined_type, - ACTIONS(3454), 1, - anon_sym_delegate, - ACTIONS(3640), 1, + ACTIONS(4171), 1, anon_sym_ref, - ACTIONS(6079), 1, + ACTIONS(5638), 1, + anon_sym_delegate, + ACTIONS(5642), 1, anon_sym_var, - ACTIONS(6179), 1, + ACTIONS(5644), 1, + sym_predefined_type, + ACTIONS(5763), 1, anon_sym_scoped, - STATE(2343), 1, - sym_type, - STATE(3691), 1, - sym__reserved_identifier, - STATE(4087), 1, + ACTIONS(6101), 1, + anon_sym_LPAREN, + STATE(3177), 1, sym_identifier, - STATE(4109), 1, + STATE(3205), 1, + sym__reserved_identifier, + STATE(3226), 1, + sym_type, + STATE(3229), 1, + sym_array_type, + STATE(3241), 1, sym_generic_name, - STATE(4292), 1, + STATE(3308), 1, sym_tuple_type, - STATE(4390), 1, + STATE(3488), 1, sym__name, - STATE(4404), 1, - sym_array_type, - STATE(7162), 1, + STATE(7208), 1, sym__array_base_type, - STATE(7413), 1, + STATE(7508), 1, sym__pointer_base_type, - STATE(2347), 3, + STATE(3216), 3, + sym_nullable_type, + sym_pointer_type, + sym_function_pointer_type, + STATE(3222), 3, sym_implicit_type, sym_ref_type, sym_scoped_type, - STATE(4096), 3, + STATE(3304), 3, sym_alias_qualified_name, sym__simple_name, sym_qualified_name, - STATE(4285), 3, - sym_nullable_type, - sym_pointer_type, - sym_function_pointer_type, - STATE(4058), 9, + STATE(4013), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -549201,7 +544635,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(2971), 20, + ACTIONS(3800), 20, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -549222,7 +544656,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [19905] = 31, + [15603] = 31, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -549243,51 +544677,51 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(2967), 1, + ACTIONS(2965), 1, sym__identifier_token, - ACTIONS(2979), 1, + ACTIONS(2977), 1, anon_sym_LPAREN, - ACTIONS(3001), 1, + ACTIONS(2997), 1, sym_predefined_type, - ACTIONS(3454), 1, + ACTIONS(3438), 1, anon_sym_delegate, - ACTIONS(3640), 1, - anon_sym_ref, - ACTIONS(6079), 1, + ACTIONS(6039), 1, anon_sym_var, - ACTIONS(6179), 1, + ACTIONS(6139), 1, + anon_sym_ref, + ACTIONS(6143), 1, anon_sym_scoped, - STATE(3691), 1, + STATE(3654), 1, sym__reserved_identifier, - STATE(4087), 1, - sym_identifier, - STATE(4109), 1, + STATE(4073), 1, sym_generic_name, - STATE(4292), 1, + STATE(4081), 1, + sym_identifier, + STATE(4334), 1, sym_tuple_type, - STATE(4390), 1, + STATE(4369), 1, sym__name, - STATE(4404), 1, + STATE(4373), 1, sym_array_type, - STATE(6064), 1, - sym_type, - STATE(7162), 1, + STATE(7233), 1, sym__array_base_type, - STATE(7413), 1, + STATE(7357), 1, sym__pointer_base_type, - STATE(2347), 3, + STATE(7379), 1, + sym_type, + STATE(2316), 3, sym_implicit_type, sym_ref_type, sym_scoped_type, - STATE(4096), 3, + STATE(4068), 3, sym_alias_qualified_name, sym__simple_name, sym_qualified_name, - STATE(4285), 3, + STATE(4249), 3, sym_nullable_type, sym_pointer_type, sym_function_pointer_type, - STATE(4059), 9, + STATE(4014), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -549297,7 +544731,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(2971), 20, + ACTIONS(2969), 20, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -549318,7 +544752,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [20032] = 31, + [15730] = 31, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -549339,51 +544773,51 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(2967), 1, + ACTIONS(2965), 1, sym__identifier_token, - ACTIONS(2979), 1, + ACTIONS(2977), 1, anon_sym_LPAREN, - ACTIONS(4737), 1, + ACTIONS(2997), 1, + sym_predefined_type, + ACTIONS(3438), 1, + anon_sym_delegate, + ACTIONS(4705), 1, anon_sym_var, - ACTIONS(5028), 1, + ACTIONS(6191), 1, anon_sym_ref, - ACTIONS(5030), 1, - anon_sym_delegate, - ACTIONS(5036), 1, + ACTIONS(6195), 1, anon_sym_scoped, - ACTIONS(5038), 1, - sym_predefined_type, - STATE(3691), 1, + STATE(3654), 1, sym__reserved_identifier, - STATE(4087), 1, - sym_identifier, - STATE(4109), 1, + STATE(4073), 1, sym_generic_name, - STATE(6450), 1, - sym__name, - STATE(6579), 1, + STATE(4081), 1, + sym_identifier, + STATE(4334), 1, sym_tuple_type, - STATE(6694), 1, + STATE(4369), 1, + sym__name, + STATE(4373), 1, sym_array_type, - STATE(7110), 1, + STATE(6419), 1, sym_type, - STATE(7162), 1, + STATE(7233), 1, sym__array_base_type, - STATE(7446), 1, + STATE(7357), 1, sym__pointer_base_type, - STATE(4096), 3, + STATE(2316), 3, + sym_implicit_type, + sym_ref_type, + sym_scoped_type, + STATE(4068), 3, sym_alias_qualified_name, sym__simple_name, sym_qualified_name, - STATE(4285), 3, + STATE(4249), 3, sym_nullable_type, sym_pointer_type, sym_function_pointer_type, - STATE(7266), 3, - sym_implicit_type, - sym_ref_type, - sym_scoped_type, - STATE(4060), 9, + STATE(4015), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -549393,7 +544827,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(2971), 20, + ACTIONS(2969), 20, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -549414,7 +544848,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [20159] = 31, + [15857] = 31, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -549435,51 +544869,51 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(2967), 1, + ACTIONS(3965), 1, sym__identifier_token, - ACTIONS(2979), 1, - anon_sym_LPAREN, - ACTIONS(3001), 1, - sym_predefined_type, - ACTIONS(3454), 1, + ACTIONS(3969), 1, + anon_sym_ref, + ACTIONS(5751), 1, anon_sym_delegate, - ACTIONS(4737), 1, + ACTIONS(5755), 1, anon_sym_var, - ACTIONS(6103), 1, - anon_sym_ref, - ACTIONS(6107), 1, + ACTIONS(5757), 1, + sym_predefined_type, + ACTIONS(5853), 1, anon_sym_scoped, - STATE(3691), 1, - sym__reserved_identifier, - STATE(4087), 1, + ACTIONS(6077), 1, + anon_sym_LPAREN, + STATE(4194), 1, sym_identifier, - STATE(4109), 1, + STATE(4314), 1, + sym__reserved_identifier, + STATE(4410), 1, sym_generic_name, - STATE(4292), 1, - sym_tuple_type, - STATE(4390), 1, + STATE(4451), 1, sym__name, - STATE(4404), 1, + STATE(4477), 1, sym_array_type, - STATE(6572), 1, + STATE(4484), 1, + sym_tuple_type, + STATE(4600), 1, sym_type, - STATE(7162), 1, + STATE(7056), 1, sym__array_base_type, - STATE(7413), 1, + STATE(7551), 1, sym__pointer_base_type, - STATE(2347), 3, + STATE(4385), 3, sym_implicit_type, sym_ref_type, sym_scoped_type, - STATE(4096), 3, + STATE(4462), 3, sym_alias_qualified_name, sym__simple_name, sym_qualified_name, - STATE(4285), 3, + STATE(4481), 3, sym_nullable_type, sym_pointer_type, sym_function_pointer_type, - STATE(4061), 9, + STATE(4016), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -549489,7 +544923,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(2971), 20, + ACTIONS(3967), 20, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -549510,7 +544944,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [20286] = 31, + [15984] = 31, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -549531,51 +544965,51 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(3887), 1, + ACTIONS(3965), 1, sym__identifier_token, - ACTIONS(4024), 1, + ACTIONS(3974), 1, anon_sym_ref, - ACTIONS(4042), 1, + ACTIONS(5751), 1, anon_sym_delegate, - ACTIONS(4046), 1, + ACTIONS(5753), 1, + anon_sym_scoped, + ACTIONS(5755), 1, anon_sym_var, - ACTIONS(4048), 1, + ACTIONS(5757), 1, sym_predefined_type, - ACTIONS(5862), 1, - anon_sym_scoped, - ACTIONS(6051), 1, + ACTIONS(6077), 1, anon_sym_LPAREN, - STATE(2945), 1, + STATE(4194), 1, + sym_identifier, + STATE(4314), 1, sym__reserved_identifier, - STATE(2985), 1, + STATE(4410), 1, sym_generic_name, - STATE(2992), 1, - sym_array_type, - STATE(3038), 1, + STATE(4436), 1, sym_type, - STATE(3058), 1, - sym_tuple_type, - STATE(4395), 1, - sym_identifier, - STATE(5023), 1, + STATE(4451), 1, sym__name, - STATE(7267), 1, + STATE(4477), 1, + sym_array_type, + STATE(4484), 1, + sym_tuple_type, + STATE(7056), 1, sym__array_base_type, - STATE(7693), 1, + STATE(7551), 1, sym__pointer_base_type, - STATE(3012), 3, - sym_nullable_type, - sym_pointer_type, - sym_function_pointer_type, - STATE(3029), 3, - sym_alias_qualified_name, - sym__simple_name, - sym_qualified_name, - STATE(3054), 3, + STATE(4385), 3, sym_implicit_type, sym_ref_type, sym_scoped_type, - STATE(4062), 9, + STATE(4462), 3, + sym_alias_qualified_name, + sym__simple_name, + sym_qualified_name, + STATE(4481), 3, + sym_nullable_type, + sym_pointer_type, + sym_function_pointer_type, + STATE(4017), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -549585,7 +545019,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(3889), 20, + ACTIONS(3967), 20, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -549606,7 +545040,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [20413] = 13, + [16111] = 31, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -549627,7 +545061,51 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - STATE(4063), 9, + ACTIONS(2965), 1, + sym__identifier_token, + ACTIONS(2977), 1, + anon_sym_LPAREN, + ACTIONS(2997), 1, + sym_predefined_type, + ACTIONS(3438), 1, + anon_sym_delegate, + ACTIONS(6039), 1, + anon_sym_var, + ACTIONS(6139), 1, + anon_sym_ref, + ACTIONS(6143), 1, + anon_sym_scoped, + STATE(3654), 1, + sym__reserved_identifier, + STATE(4073), 1, + sym_generic_name, + STATE(4081), 1, + sym_identifier, + STATE(4334), 1, + sym_tuple_type, + STATE(4369), 1, + sym__name, + STATE(4373), 1, + sym_array_type, + STATE(7233), 1, + sym__array_base_type, + STATE(7357), 1, + sym__pointer_base_type, + STATE(7385), 1, + sym_type, + STATE(2316), 3, + sym_implicit_type, + sym_ref_type, + sym_scoped_type, + STATE(4068), 3, + sym_alias_qualified_name, + sym__simple_name, + sym_qualified_name, + STATE(4249), 3, + sym_nullable_type, + sym_pointer_type, + sym_function_pointer_type, + STATE(4018), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -549637,39 +545115,15 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(3681), 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(3679), 28, + ACTIONS(2969), 20, 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, @@ -549682,8 +545136,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - sym__identifier_token, - [20503] = 41, + [16238] = 41, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -549704,81 +545157,82 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4755), 1, + ACTIONS(4697), 1, + anon_sym_DOT, + ACTIONS(4699), 1, anon_sym_DASH_GT, - ACTIONS(4804), 1, + ACTIONS(5591), 1, anon_sym_LPAREN, - ACTIONS(4808), 1, - anon_sym_DOT, - ACTIONS(4839), 1, - anon_sym_BANG, - ACTIONS(5573), 1, + ACTIONS(5650), 1, anon_sym_LBRACK, - ACTIONS(5884), 1, - anon_sym_or, - ACTIONS(6321), 1, - anon_sym_QMARK, - ACTIONS(6327), 1, + ACTIONS(5658), 1, + anon_sym_BANG, + ACTIONS(5682), 1, + anon_sym_switch, + ACTIONS(5698), 1, + anon_sym_with, + ACTIONS(5917), 1, + anon_sym_as, + ACTIONS(6207), 1, anon_sym_SLASH, - ACTIONS(6329), 1, + ACTIONS(6209), 1, anon_sym_CARET, - ACTIONS(6331), 1, - anon_sym_PIPE, - ACTIONS(6333), 1, + ACTIONS(6211), 1, anon_sym_AMP, - ACTIONS(6337), 1, + ACTIONS(6215), 1, anon_sym_GT_GT, - ACTIONS(6343), 1, - anon_sym_switch, - ACTIONS(6345), 1, + ACTIONS(6221), 1, anon_sym_DOT_DOT, - ACTIONS(6347), 1, + ACTIONS(6223), 1, + anon_sym_is, + ACTIONS(6232), 1, + anon_sym_PIPE, + ACTIONS(6234), 1, anon_sym_AMP_AMP, - ACTIONS(6349), 1, + ACTIONS(6236), 1, anon_sym_PIPE_PIPE, - ACTIONS(6351), 1, + ACTIONS(6238), 1, anon_sym_QMARK_QMARK, - ACTIONS(6353), 1, - anon_sym_as, - ACTIONS(6355), 1, - anon_sym_is, - ACTIONS(6357), 1, - anon_sym_with, - STATE(2485), 1, + ACTIONS(6286), 1, + anon_sym_QMARK, + STATE(2892), 1, sym_bracketed_argument_list, - STATE(3035), 1, + STATE(3771), 1, sym_argument_list, - ACTIONS(4841), 2, + ACTIONS(5660), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6319), 2, + ACTIONS(6201), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(6323), 2, + ACTIONS(6203), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6325), 2, + ACTIONS(6205), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(6335), 2, + ACTIONS(6213), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(6339), 2, + ACTIONS(6217), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6341), 2, + ACTIONS(6219), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5882), 8, + ACTIONS(6293), 2, + anon_sym_ascending, + anon_sym_descending, + ACTIONS(6291), 8, + anon_sym_COMMA, 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(4064), 9, + STATE(4019), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -549788,7 +545242,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [20649] = 21, + [16385] = 31, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -549809,24 +545263,51 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4755), 1, - anon_sym_DASH_GT, - ACTIONS(4804), 1, + ACTIONS(2965), 1, + sym__identifier_token, + ACTIONS(2977), 1, anon_sym_LPAREN, - ACTIONS(4808), 1, - anon_sym_DOT, - ACTIONS(4839), 1, - anon_sym_BANG, - ACTIONS(5573), 1, - anon_sym_LBRACK, - STATE(2485), 1, - sym_bracketed_argument_list, - STATE(3035), 1, - sym_argument_list, - ACTIONS(4841), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(4065), 9, + ACTIONS(2997), 1, + sym_predefined_type, + ACTIONS(3438), 1, + anon_sym_delegate, + ACTIONS(6039), 1, + anon_sym_var, + ACTIONS(6139), 1, + anon_sym_ref, + ACTIONS(6143), 1, + anon_sym_scoped, + STATE(3654), 1, + sym__reserved_identifier, + STATE(4073), 1, + sym_generic_name, + STATE(4081), 1, + sym_identifier, + STATE(4334), 1, + sym_tuple_type, + STATE(4369), 1, + sym__name, + STATE(4373), 1, + sym_array_type, + STATE(7233), 1, + sym__array_base_type, + STATE(7357), 1, + sym__pointer_base_type, + STATE(7386), 1, + sym_type, + STATE(2316), 3, + sym_implicit_type, + sym_ref_type, + sym_scoped_type, + STATE(4068), 3, + sym_alias_qualified_name, + sym__simple_name, + sym_qualified_name, + STATE(4249), 3, + sym_nullable_type, + sym_pointer_type, + sym_function_pointer_type, + STATE(4020), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -549836,122 +545317,28 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(4837), 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(4833), 25, + ACTIONS(2969), 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_DOT_DOT, - 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, - [20755] = 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(6359), 1, - anon_sym_and, - STATE(4066), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - ACTIONS(6069), 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(6067), 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_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, - [20847] = 21, + [16512] = 31, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -549972,24 +545359,51 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4755), 1, - anon_sym_DASH_GT, - ACTIONS(4804), 1, + ACTIONS(2965), 1, + sym__identifier_token, + ACTIONS(2977), 1, anon_sym_LPAREN, - ACTIONS(4808), 1, - anon_sym_DOT, - ACTIONS(4839), 1, - anon_sym_BANG, - ACTIONS(5573), 1, - anon_sym_LBRACK, - STATE(2485), 1, - sym_bracketed_argument_list, - STATE(3035), 1, - sym_argument_list, - ACTIONS(4841), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(4067), 9, + ACTIONS(2997), 1, + sym_predefined_type, + ACTIONS(3438), 1, + anon_sym_delegate, + ACTIONS(6115), 1, + anon_sym_ref, + ACTIONS(6119), 1, + anon_sym_scoped, + ACTIONS(6121), 1, + anon_sym_var, + STATE(3654), 1, + sym__reserved_identifier, + STATE(4073), 1, + sym_generic_name, + STATE(4334), 1, + sym_tuple_type, + STATE(4373), 1, + sym_array_type, + STATE(6238), 1, + sym_identifier, + STATE(6264), 1, + sym__name, + STATE(6286), 1, + sym_type, + STATE(7233), 1, + sym__array_base_type, + STATE(7357), 1, + sym__pointer_base_type, + STATE(2316), 3, + sym_implicit_type, + sym_ref_type, + sym_scoped_type, + STATE(4068), 3, + sym_alias_qualified_name, + sym__simple_name, + sym_qualified_name, + STATE(4249), 3, + sym_nullable_type, + sym_pointer_type, + sym_function_pointer_type, + STATE(4021), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -549999,44 +545413,28 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(4845), 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(4843), 25, + ACTIONS(2969), 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_DOT_DOT, - 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, - [20953] = 40, + [16639] = 31, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -550057,111 +545455,51 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4755), 1, - anon_sym_DASH_GT, - ACTIONS(4804), 1, + ACTIONS(2965), 1, + sym__identifier_token, + ACTIONS(2977), 1, anon_sym_LPAREN, - ACTIONS(4808), 1, - anon_sym_DOT, - ACTIONS(4835), 1, - anon_sym_LBRACK, - ACTIONS(4839), 1, - anon_sym_BANG, - ACTIONS(6293), 1, - anon_sym_switch, - ACTIONS(6307), 1, - anon_sym_with, - ACTIONS(6363), 1, - anon_sym_QMARK, - ACTIONS(6369), 1, - anon_sym_SLASH, - ACTIONS(6371), 1, - anon_sym_CARET, - ACTIONS(6373), 1, - anon_sym_PIPE, - ACTIONS(6375), 1, - anon_sym_AMP, - ACTIONS(6379), 1, - anon_sym_GT_GT, - ACTIONS(6385), 1, - anon_sym_DOT_DOT, - ACTIONS(6387), 1, - anon_sym_AMP_AMP, - ACTIONS(6389), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6391), 1, - anon_sym_QMARK_QMARK, - ACTIONS(6393), 1, - anon_sym_as, - ACTIONS(6395), 1, - anon_sym_is, - STATE(2433), 1, - sym_bracketed_argument_list, - STATE(3035), 1, - sym_argument_list, - ACTIONS(4841), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6361), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(6365), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(6367), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(6377), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - ACTIONS(6381), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(6383), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(5899), 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(4068), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - [21097] = 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(4069), 9, + ACTIONS(2997), 1, + sym_predefined_type, + ACTIONS(3438), 1, + anon_sym_delegate, + ACTIONS(4705), 1, + anon_sym_var, + ACTIONS(6191), 1, + anon_sym_ref, + ACTIONS(6195), 1, + anon_sym_scoped, + STATE(3654), 1, + sym__reserved_identifier, + STATE(4073), 1, + sym_generic_name, + STATE(4081), 1, + sym_identifier, + STATE(4334), 1, + sym_tuple_type, + STATE(4369), 1, + sym__name, + STATE(4373), 1, + sym_array_type, + STATE(7233), 1, + sym__array_base_type, + STATE(7357), 1, + sym__pointer_base_type, + STATE(7445), 1, + sym_type, + STATE(2316), 3, + sym_implicit_type, + sym_ref_type, + sym_scoped_type, + STATE(4068), 3, + sym_alias_qualified_name, + sym__simple_name, + sym_qualified_name, + STATE(4249), 3, + sym_nullable_type, + sym_pointer_type, + sym_function_pointer_type, + STATE(4022), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -550171,39 +545509,15 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(3677), 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(3675), 28, + ACTIONS(2969), 20, 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, @@ -550216,8 +545530,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - sym__identifier_token, - [21187] = 40, + [16766] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -550238,153 +545551,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4755), 1, - anon_sym_DASH_GT, - ACTIONS(4804), 1, - anon_sym_LPAREN, - ACTIONS(4808), 1, - anon_sym_DOT, - ACTIONS(4835), 1, - anon_sym_LBRACK, - ACTIONS(4839), 1, - anon_sym_BANG, - ACTIONS(6293), 1, - anon_sym_switch, - ACTIONS(6307), 1, - anon_sym_with, - ACTIONS(6363), 1, - anon_sym_QMARK, - ACTIONS(6369), 1, - anon_sym_SLASH, - ACTIONS(6371), 1, - anon_sym_CARET, - ACTIONS(6373), 1, - anon_sym_PIPE, - ACTIONS(6375), 1, - anon_sym_AMP, - ACTIONS(6379), 1, - anon_sym_GT_GT, - ACTIONS(6385), 1, - anon_sym_DOT_DOT, - ACTIONS(6387), 1, - anon_sym_AMP_AMP, - ACTIONS(6389), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6391), 1, - anon_sym_QMARK_QMARK, - ACTIONS(6393), 1, - anon_sym_as, - ACTIONS(6395), 1, - anon_sym_is, - STATE(2433), 1, - sym_bracketed_argument_list, - STATE(3035), 1, - sym_argument_list, - ACTIONS(4841), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6361), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(6365), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(6367), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(6377), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - ACTIONS(6381), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(6383), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(5858), 9, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_RBRACE, + ACTIONS(6280), 1, anon_sym_into, - aux_sym_preproc_if_token3, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - STATE(4070), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - [21331] = 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(4755), 1, - anon_sym_DASH_GT, - ACTIONS(4804), 1, - anon_sym_LPAREN, - ACTIONS(4808), 1, - anon_sym_DOT, - ACTIONS(4835), 1, - anon_sym_LBRACK, - ACTIONS(4839), 1, - anon_sym_BANG, - ACTIONS(6293), 1, - anon_sym_switch, - ACTIONS(6307), 1, - anon_sym_with, - ACTIONS(6369), 1, - anon_sym_SLASH, - ACTIONS(6379), 1, - anon_sym_GT_GT, - ACTIONS(6385), 1, - anon_sym_DOT_DOT, - STATE(2433), 1, - sym_bracketed_argument_list, - STATE(3035), 1, - sym_argument_list, - ACTIONS(4841), 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(6377), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - ACTIONS(5664), 5, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_AMP, - STATE(4071), 9, + STATE(3925), 1, + aux_sym__query_body_repeat2, + STATE(4023), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -550394,404 +545565,52 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5660), 19, - 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_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, - [21453] = 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(4755), 1, - anon_sym_DASH_GT, - ACTIONS(4804), 1, - anon_sym_LPAREN, - ACTIONS(4808), 1, - anon_sym_DOT, - ACTIONS(4835), 1, - anon_sym_LBRACK, - ACTIONS(4839), 1, - anon_sym_BANG, - ACTIONS(6293), 1, - anon_sym_switch, - ACTIONS(6307), 1, - anon_sym_with, - ACTIONS(6369), 1, - anon_sym_SLASH, - ACTIONS(6385), 1, - anon_sym_DOT_DOT, - STATE(2433), 1, - sym_bracketed_argument_list, - STATE(3035), 1, - sym_argument_list, - ACTIONS(4841), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6367), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(5664), 8, + ACTIONS(5935), 11, 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(4072), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - ACTIONS(5660), 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, - [21569] = 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(4755), 1, - anon_sym_DASH_GT, - ACTIONS(4804), 1, - anon_sym_LPAREN, - ACTIONS(4808), 1, - anon_sym_DOT, - ACTIONS(4835), 1, - anon_sym_LBRACK, - ACTIONS(4839), 1, anon_sym_BANG, - ACTIONS(6293), 1, - anon_sym_switch, - ACTIONS(6307), 1, - anon_sym_with, - ACTIONS(6385), 1, - anon_sym_DOT_DOT, - STATE(2433), 1, - sym_bracketed_argument_list, - STATE(3035), 1, - sym_argument_list, - ACTIONS(4841), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5664), 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(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(5660), 23, + anon_sym_DOT, + ACTIONS(5933), 32, anon_sym_SEMI, + anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, + anon_sym_LPAREN, 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, - [21681] = 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(4755), 1, - anon_sym_DASH_GT, - ACTIONS(4804), 1, - anon_sym_LPAREN, - ACTIONS(4808), 1, - anon_sym_DOT, - ACTIONS(4835), 1, - anon_sym_LBRACK, - ACTIONS(4839), 1, - anon_sym_BANG, - ACTIONS(6293), 1, - anon_sym_switch, - ACTIONS(6307), 1, - anon_sym_with, - ACTIONS(6369), 1, - anon_sym_SLASH, - ACTIONS(6375), 1, - anon_sym_AMP, - ACTIONS(6379), 1, - anon_sym_GT_GT, - ACTIONS(6385), 1, - anon_sym_DOT_DOT, - ACTIONS(6393), 1, - anon_sym_as, - ACTIONS(6395), 1, - anon_sym_is, - STATE(2433), 1, - sym_bracketed_argument_list, - STATE(3035), 1, - sym_argument_list, - ACTIONS(4841), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5664), 2, - anon_sym_QMARK, - anon_sym_PIPE, - ACTIONS(6361), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(6365), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(6367), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(6377), 2, + anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(6381), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6383), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - STATE(4074), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - ACTIONS(5660), 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, - [21815] = 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(4755), 1, - anon_sym_DASH_GT, - ACTIONS(4804), 1, - anon_sym_LPAREN, - ACTIONS(4808), 1, - anon_sym_DOT, - ACTIONS(4835), 1, - anon_sym_LBRACK, - ACTIONS(4839), 1, - anon_sym_BANG, - ACTIONS(6293), 1, anon_sym_switch, - ACTIONS(6307), 1, - anon_sym_with, - ACTIONS(6369), 1, - anon_sym_SLASH, - ACTIONS(6371), 1, - anon_sym_CARET, - ACTIONS(6375), 1, - anon_sym_AMP, - ACTIONS(6379), 1, - anon_sym_GT_GT, - ACTIONS(6385), 1, anon_sym_DOT_DOT, - ACTIONS(6393), 1, - anon_sym_as, - ACTIONS(6395), 1, - anon_sym_is, - STATE(2433), 1, - sym_bracketed_argument_list, - STATE(3035), 1, - sym_argument_list, - ACTIONS(4841), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5664), 2, - anon_sym_QMARK, - anon_sym_PIPE, - ACTIONS(6361), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(6365), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(6367), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(6377), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - ACTIONS(6381), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(6383), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - STATE(4075), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - ACTIONS(5660), 12, - 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, + anon_sym_DASH_GT, + anon_sym_with, aux_sym_preproc_if_token3, aux_sym_preproc_else_token1, aux_sym_preproc_elif_token1, - [21951] = 34, + [16861] = 31, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -550812,60 +545631,51 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4755), 1, - anon_sym_DASH_GT, - ACTIONS(4804), 1, + ACTIONS(2965), 1, + sym__identifier_token, + ACTIONS(2977), 1, anon_sym_LPAREN, - ACTIONS(4808), 1, - anon_sym_DOT, - ACTIONS(4835), 1, - anon_sym_LBRACK, - ACTIONS(4839), 1, - anon_sym_BANG, - ACTIONS(6293), 1, - anon_sym_switch, - ACTIONS(6307), 1, - anon_sym_with, - ACTIONS(6369), 1, - anon_sym_SLASH, - ACTIONS(6379), 1, - anon_sym_GT_GT, - ACTIONS(6385), 1, - anon_sym_DOT_DOT, - ACTIONS(6393), 1, - anon_sym_as, - ACTIONS(6395), 1, - anon_sym_is, - STATE(2433), 1, - sym_bracketed_argument_list, - STATE(3035), 1, - sym_argument_list, - ACTIONS(4841), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6361), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(6365), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(6367), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(6377), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - ACTIONS(6381), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(6383), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(5664), 3, - anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_AMP, - STATE(4076), 9, + ACTIONS(2997), 1, + sym_predefined_type, + ACTIONS(3438), 1, + anon_sym_delegate, + ACTIONS(4705), 1, + anon_sym_var, + ACTIONS(6191), 1, + anon_sym_ref, + ACTIONS(6195), 1, + anon_sym_scoped, + STATE(3654), 1, + sym__reserved_identifier, + STATE(4073), 1, + sym_generic_name, + STATE(4081), 1, + sym_identifier, + STATE(4334), 1, + sym_tuple_type, + STATE(4369), 1, + sym__name, + STATE(4373), 1, + sym_array_type, + STATE(7233), 1, + sym__array_base_type, + STATE(7357), 1, + sym__pointer_base_type, + STATE(7523), 1, + sym_type, + STATE(2316), 3, + sym_implicit_type, + sym_ref_type, + sym_scoped_type, + STATE(4068), 3, + sym_alias_qualified_name, + sym__simple_name, + sym_qualified_name, + STATE(4249), 3, + sym_nullable_type, + sym_pointer_type, + sym_function_pointer_type, + STATE(4024), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -550875,21 +545685,28 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5660), 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, + ACTIONS(2969), 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, - aux_sym_preproc_if_token3, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - [22083] = 27, + 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, + [16988] = 31, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -550910,45 +545727,51 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4755), 1, - anon_sym_DASH_GT, - ACTIONS(4804), 1, + ACTIONS(3761), 1, + sym__identifier_token, + ACTIONS(4173), 1, + anon_sym_ref, + ACTIONS(5622), 1, + anon_sym_delegate, + ACTIONS(5624), 1, + anon_sym_scoped, + ACTIONS(5626), 1, + anon_sym_var, + ACTIONS(5628), 1, + sym_predefined_type, + ACTIONS(6133), 1, anon_sym_LPAREN, - ACTIONS(4808), 1, - anon_sym_DOT, - ACTIONS(4835), 1, - anon_sym_LBRACK, - ACTIONS(4839), 1, - anon_sym_BANG, - ACTIONS(6293), 1, - anon_sym_switch, - ACTIONS(6307), 1, - anon_sym_with, - ACTIONS(6369), 1, - anon_sym_SLASH, - ACTIONS(6385), 1, - anon_sym_DOT_DOT, - STATE(2433), 1, - sym_bracketed_argument_list, - STATE(3035), 1, - sym_argument_list, - ACTIONS(4841), 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(5664), 6, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT_GT, - STATE(4077), 9, + STATE(3119), 1, + sym_identifier, + STATE(3120), 1, + sym__reserved_identifier, + STATE(3147), 1, + sym_array_type, + STATE(3149), 1, + sym_tuple_type, + STATE(3151), 1, + sym__name, + STATE(3160), 1, + sym_type, + STATE(3184), 1, + sym_generic_name, + STATE(7165), 1, + sym__array_base_type, + STATE(7401), 1, + sym__pointer_base_type, + STATE(3143), 3, + sym_alias_qualified_name, + sym__simple_name, + sym_qualified_name, + STATE(3146), 3, + sym_implicit_type, + sym_ref_type, + sym_scoped_type, + STATE(3148), 3, + sym_nullable_type, + sym_pointer_type, + sym_function_pointer_type, + STATE(4025), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -550958,29 +545781,28 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5660), 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, + ACTIONS(3763), 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_as, - anon_sym_is, - aux_sym_preproc_if_token3, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - [22201] = 33, + 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, + [17115] = 31, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -551001,57 +545823,51 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4755), 1, - anon_sym_DASH_GT, - ACTIONS(4804), 1, + ACTIONS(2965), 1, + sym__identifier_token, + ACTIONS(2977), 1, anon_sym_LPAREN, - ACTIONS(4808), 1, - anon_sym_DOT, - ACTIONS(4835), 1, - anon_sym_LBRACK, - ACTIONS(4839), 1, - anon_sym_BANG, - ACTIONS(6293), 1, - anon_sym_switch, - ACTIONS(6307), 1, - anon_sym_with, - ACTIONS(6369), 1, - anon_sym_SLASH, - ACTIONS(6379), 1, - anon_sym_GT_GT, - ACTIONS(6385), 1, - anon_sym_DOT_DOT, - ACTIONS(6393), 1, - anon_sym_as, - ACTIONS(6395), 1, - anon_sym_is, - STATE(2433), 1, - sym_bracketed_argument_list, - STATE(3035), 1, - sym_argument_list, - ACTIONS(4841), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6361), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(6365), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(6367), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(6377), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - ACTIONS(6383), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(5664), 3, - anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_AMP, - STATE(4078), 9, + ACTIONS(2997), 1, + sym_predefined_type, + ACTIONS(3438), 1, + anon_sym_delegate, + ACTIONS(4705), 1, + anon_sym_var, + ACTIONS(6191), 1, + anon_sym_ref, + ACTIONS(6195), 1, + anon_sym_scoped, + STATE(3654), 1, + sym__reserved_identifier, + STATE(4073), 1, + sym_generic_name, + STATE(4081), 1, + sym_identifier, + STATE(4334), 1, + sym_tuple_type, + STATE(4369), 1, + sym__name, + STATE(4373), 1, + sym_array_type, + STATE(7233), 1, + sym__array_base_type, + STATE(7289), 1, + sym_type, + STATE(7357), 1, + sym__pointer_base_type, + STATE(2316), 3, + sym_implicit_type, + sym_ref_type, + sym_scoped_type, + STATE(4068), 3, + sym_alias_qualified_name, + sym__simple_name, + sym_qualified_name, + STATE(4249), 3, + sym_nullable_type, + sym_pointer_type, + sym_function_pointer_type, + STATE(4026), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -551061,23 +545877,28 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5660), 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, + ACTIONS(2969), 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, - aux_sym_preproc_if_token3, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - [22331] = 37, + 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, + [17242] = 31, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -551098,64 +545919,51 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4755), 1, - anon_sym_DASH_GT, - ACTIONS(4804), 1, + ACTIONS(2965), 1, + sym__identifier_token, + ACTIONS(2977), 1, anon_sym_LPAREN, - ACTIONS(4808), 1, - anon_sym_DOT, - ACTIONS(4835), 1, - anon_sym_LBRACK, - ACTIONS(4839), 1, - anon_sym_BANG, - ACTIONS(5664), 1, - anon_sym_QMARK, - ACTIONS(6293), 1, - anon_sym_switch, - ACTIONS(6307), 1, - anon_sym_with, - ACTIONS(6369), 1, - anon_sym_SLASH, - ACTIONS(6371), 1, - anon_sym_CARET, - ACTIONS(6373), 1, - anon_sym_PIPE, - ACTIONS(6375), 1, - anon_sym_AMP, - ACTIONS(6379), 1, - anon_sym_GT_GT, - ACTIONS(6385), 1, - anon_sym_DOT_DOT, - ACTIONS(6393), 1, - anon_sym_as, - ACTIONS(6395), 1, - anon_sym_is, - STATE(2433), 1, - sym_bracketed_argument_list, - STATE(3035), 1, - sym_argument_list, - ACTIONS(4841), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6361), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(6365), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(6367), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(6377), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - ACTIONS(6381), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(6383), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - STATE(4079), 9, + ACTIONS(2997), 1, + sym_predefined_type, + ACTIONS(3438), 1, + anon_sym_delegate, + ACTIONS(6039), 1, + anon_sym_var, + ACTIONS(6139), 1, + anon_sym_ref, + ACTIONS(6143), 1, + anon_sym_scoped, + STATE(3654), 1, + sym__reserved_identifier, + STATE(4073), 1, + sym_generic_name, + STATE(4081), 1, + sym_identifier, + STATE(4334), 1, + sym_tuple_type, + STATE(4369), 1, + sym__name, + STATE(4373), 1, + sym_array_type, + STATE(7233), 1, + sym__array_base_type, + STATE(7357), 1, + sym__pointer_base_type, + STATE(7530), 1, + sym_type, + STATE(2316), 3, + sym_implicit_type, + sym_ref_type, + sym_scoped_type, + STATE(4068), 3, + sym_alias_qualified_name, + sym__simple_name, + sym_qualified_name, + STATE(4249), 3, + sym_nullable_type, + sym_pointer_type, + sym_function_pointer_type, + STATE(4027), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -551165,20 +545973,28 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5660), 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, + ACTIONS(2969), 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, - aux_sym_preproc_if_token3, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - [22469] = 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, + [17369] = 31, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -551199,66 +546015,51 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4755), 1, - anon_sym_DASH_GT, - ACTIONS(4804), 1, + ACTIONS(3761), 1, + sym__identifier_token, + ACTIONS(3765), 1, + anon_sym_ref, + ACTIONS(5622), 1, + anon_sym_delegate, + ACTIONS(5626), 1, + anon_sym_var, + ACTIONS(5628), 1, + sym_predefined_type, + ACTIONS(5823), 1, + anon_sym_scoped, + ACTIONS(6133), 1, anon_sym_LPAREN, - ACTIONS(4808), 1, - anon_sym_DOT, - ACTIONS(4835), 1, - anon_sym_LBRACK, - ACTIONS(4839), 1, - anon_sym_BANG, - ACTIONS(5664), 1, - anon_sym_QMARK, - ACTIONS(6293), 1, - anon_sym_switch, - ACTIONS(6307), 1, - anon_sym_with, - ACTIONS(6369), 1, - anon_sym_SLASH, - ACTIONS(6371), 1, - anon_sym_CARET, - ACTIONS(6373), 1, - anon_sym_PIPE, - ACTIONS(6375), 1, - anon_sym_AMP, - ACTIONS(6379), 1, - anon_sym_GT_GT, - ACTIONS(6385), 1, - anon_sym_DOT_DOT, - ACTIONS(6387), 1, - anon_sym_AMP_AMP, - ACTIONS(6393), 1, - anon_sym_as, - ACTIONS(6395), 1, - anon_sym_is, - STATE(2433), 1, - sym_bracketed_argument_list, - STATE(3035), 1, - sym_argument_list, - ACTIONS(4841), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6361), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(6365), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(6367), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(6377), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - ACTIONS(6381), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(6383), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - STATE(4080), 9, + STATE(3119), 1, + sym_identifier, + STATE(3120), 1, + sym__reserved_identifier, + STATE(3147), 1, + sym_array_type, + STATE(3149), 1, + sym_tuple_type, + STATE(3151), 1, + sym__name, + STATE(3184), 1, + sym_generic_name, + STATE(3270), 1, + sym_type, + STATE(7165), 1, + sym__array_base_type, + STATE(7401), 1, + sym__pointer_base_type, + STATE(3143), 3, + sym_alias_qualified_name, + sym__simple_name, + sym_qualified_name, + STATE(3146), 3, + sym_implicit_type, + sym_ref_type, + sym_scoped_type, + STATE(3148), 3, + sym_nullable_type, + sym_pointer_type, + sym_function_pointer_type, + STATE(4028), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -551268,19 +546069,28 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5660), 11, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_PIPE_PIPE, - anon_sym_QMARK_QMARK, + ACTIONS(3763), 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, - aux_sym_preproc_if_token3, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - [22609] = 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, + [17496] = 31, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -551301,80 +546111,51 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4755), 1, - anon_sym_DASH_GT, - ACTIONS(4804), 1, + ACTIONS(2965), 1, + sym__identifier_token, + ACTIONS(2977), 1, anon_sym_LPAREN, - ACTIONS(4808), 1, - anon_sym_DOT, - ACTIONS(4835), 1, - anon_sym_LBRACK, - ACTIONS(4839), 1, - anon_sym_BANG, - ACTIONS(5664), 1, - anon_sym_QMARK, - ACTIONS(6293), 1, - anon_sym_switch, - ACTIONS(6307), 1, - anon_sym_with, - ACTIONS(6369), 1, - anon_sym_SLASH, - ACTIONS(6371), 1, - anon_sym_CARET, - ACTIONS(6373), 1, - anon_sym_PIPE, - ACTIONS(6375), 1, - anon_sym_AMP, - ACTIONS(6379), 1, - anon_sym_GT_GT, - ACTIONS(6385), 1, - anon_sym_DOT_DOT, - ACTIONS(6387), 1, - anon_sym_AMP_AMP, - ACTIONS(6389), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6391), 1, - anon_sym_QMARK_QMARK, - ACTIONS(6393), 1, - anon_sym_as, - ACTIONS(6395), 1, - anon_sym_is, - STATE(2433), 1, - sym_bracketed_argument_list, - STATE(3035), 1, - sym_argument_list, - ACTIONS(4841), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6361), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(6365), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(6367), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(6377), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - ACTIONS(6381), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(6383), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(5660), 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(4081), 9, + ACTIONS(2997), 1, + sym_predefined_type, + ACTIONS(3438), 1, + anon_sym_delegate, + ACTIONS(4705), 1, + anon_sym_var, + ACTIONS(6191), 1, + anon_sym_ref, + ACTIONS(6195), 1, + anon_sym_scoped, + STATE(3654), 1, + sym__reserved_identifier, + STATE(4073), 1, + sym_generic_name, + STATE(4081), 1, + sym_identifier, + STATE(4334), 1, + sym_tuple_type, + STATE(4369), 1, + sym__name, + STATE(4373), 1, + sym_array_type, + STATE(7233), 1, + sym__array_base_type, + STATE(7357), 1, + sym__pointer_base_type, + STATE(7593), 1, + sym_type, + STATE(2316), 3, + sym_implicit_type, + sym_ref_type, + sym_scoped_type, + STATE(4068), 3, + sym_alias_qualified_name, + sym__simple_name, + sym_qualified_name, + STATE(4249), 3, + sym_nullable_type, + sym_pointer_type, + sym_function_pointer_type, + STATE(4029), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -551384,7 +546165,28 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [22753] = 40, + ACTIONS(2969), 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, + [17623] = 31, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -551405,80 +546207,51 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4755), 1, - anon_sym_DASH_GT, - ACTIONS(4804), 1, + ACTIONS(3798), 1, + sym__identifier_token, + ACTIONS(4025), 1, + anon_sym_ref, + ACTIONS(5638), 1, + anon_sym_delegate, + ACTIONS(5642), 1, + anon_sym_var, + ACTIONS(5644), 1, + sym_predefined_type, + ACTIONS(5825), 1, + anon_sym_scoped, + ACTIONS(6101), 1, anon_sym_LPAREN, - ACTIONS(4808), 1, - anon_sym_DOT, - ACTIONS(4835), 1, - anon_sym_LBRACK, - ACTIONS(4839), 1, - anon_sym_BANG, - ACTIONS(6293), 1, - anon_sym_switch, - ACTIONS(6307), 1, - anon_sym_with, - ACTIONS(6363), 1, - anon_sym_QMARK, - ACTIONS(6369), 1, - anon_sym_SLASH, - ACTIONS(6371), 1, - anon_sym_CARET, - ACTIONS(6373), 1, - anon_sym_PIPE, - ACTIONS(6375), 1, - anon_sym_AMP, - ACTIONS(6379), 1, - anon_sym_GT_GT, - ACTIONS(6385), 1, - anon_sym_DOT_DOT, - ACTIONS(6387), 1, - anon_sym_AMP_AMP, - ACTIONS(6389), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6391), 1, - anon_sym_QMARK_QMARK, - ACTIONS(6393), 1, - anon_sym_as, - ACTIONS(6395), 1, - anon_sym_is, - STATE(2433), 1, - sym_bracketed_argument_list, - STATE(3035), 1, - sym_argument_list, - ACTIONS(4841), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6361), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(6365), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(6367), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(6377), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - ACTIONS(6381), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(6383), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(5882), 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(4082), 9, + STATE(3177), 1, + sym_identifier, + STATE(3205), 1, + sym__reserved_identifier, + STATE(3229), 1, + sym_array_type, + STATE(3241), 1, + sym_generic_name, + STATE(3308), 1, + sym_tuple_type, + STATE(3439), 1, + sym_type, + STATE(3488), 1, + sym__name, + STATE(7208), 1, + sym__array_base_type, + STATE(7508), 1, + sym__pointer_base_type, + STATE(3216), 3, + sym_nullable_type, + sym_pointer_type, + sym_function_pointer_type, + STATE(3222), 3, + sym_implicit_type, + sym_ref_type, + sym_scoped_type, + STATE(3304), 3, + sym_alias_qualified_name, + sym__simple_name, + sym_qualified_name, + STATE(4030), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -551488,7 +546261,28 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [22897] = 23, + 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, + [17750] = 31, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -551509,29 +546303,51 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(25), 1, + ACTIONS(3965), 1, sym__identifier_token, - ACTIONS(3603), 1, - anon_sym_where, - ACTIONS(5530), 1, + ACTIONS(3969), 1, anon_sym_ref, - STATE(2175), 1, + ACTIONS(5751), 1, + anon_sym_delegate, + ACTIONS(5755), 1, + anon_sym_var, + ACTIONS(5757), 1, + sym_predefined_type, + ACTIONS(5853), 1, + anon_sym_scoped, + ACTIONS(6077), 1, + anon_sym_LPAREN, + STATE(4194), 1, + sym_identifier, + STATE(4314), 1, sym__reserved_identifier, - STATE(2181), 1, + STATE(4410), 1, sym_generic_name, - STATE(2317), 1, - sym_ref_type, - STATE(2340), 1, - sym__scoped_base_type, - STATE(4373), 1, - sym_identifier, - STATE(5302), 1, + STATE(4436), 1, + sym_type, + STATE(4451), 1, sym__name, - STATE(4096), 3, + STATE(4477), 1, + sym_array_type, + STATE(4484), 1, + sym_tuple_type, + STATE(7056), 1, + sym__array_base_type, + STATE(7551), 1, + sym__pointer_base_type, + STATE(4385), 3, + sym_implicit_type, + sym_ref_type, + sym_scoped_type, + STATE(4462), 3, sym_alias_qualified_name, sym__simple_name, sym_qualified_name, - STATE(4083), 9, + STATE(4481), 3, + sym_nullable_type, + sym_pointer_type, + sym_function_pointer_type, + STATE(4031), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -551541,26 +546357,13 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(3445), 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, + ACTIONS(3967), 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, @@ -551575,7 +546378,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [23007] = 40, + [17877] = 31, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -551596,80 +546399,51 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4755), 1, - anon_sym_DASH_GT, - ACTIONS(4804), 1, + ACTIONS(3965), 1, + sym__identifier_token, + ACTIONS(3974), 1, + anon_sym_ref, + ACTIONS(5751), 1, + anon_sym_delegate, + ACTIONS(5753), 1, + anon_sym_scoped, + ACTIONS(5755), 1, + anon_sym_var, + ACTIONS(5757), 1, + sym_predefined_type, + ACTIONS(6077), 1, anon_sym_LPAREN, - ACTIONS(4808), 1, - anon_sym_DOT, - ACTIONS(4835), 1, - anon_sym_LBRACK, - ACTIONS(4839), 1, - anon_sym_BANG, - ACTIONS(6293), 1, - anon_sym_switch, - ACTIONS(6307), 1, - anon_sym_with, - ACTIONS(6363), 1, - anon_sym_QMARK, - ACTIONS(6369), 1, - anon_sym_SLASH, - ACTIONS(6371), 1, - anon_sym_CARET, - ACTIONS(6373), 1, - anon_sym_PIPE, - ACTIONS(6375), 1, - anon_sym_AMP, - ACTIONS(6379), 1, - anon_sym_GT_GT, - ACTIONS(6385), 1, - anon_sym_DOT_DOT, - ACTIONS(6387), 1, - anon_sym_AMP_AMP, - ACTIONS(6389), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6391), 1, - anon_sym_QMARK_QMARK, - ACTIONS(6393), 1, - anon_sym_as, - ACTIONS(6395), 1, - anon_sym_is, - STATE(2433), 1, - sym_bracketed_argument_list, - STATE(3035), 1, - sym_argument_list, - ACTIONS(4841), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6361), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(6365), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(6367), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(6377), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - ACTIONS(6381), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(6383), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(5864), 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(4084), 9, + STATE(4194), 1, + sym_identifier, + STATE(4314), 1, + sym__reserved_identifier, + STATE(4410), 1, + sym_generic_name, + STATE(4451), 1, + sym__name, + STATE(4477), 1, + sym_array_type, + STATE(4484), 1, + sym_tuple_type, + STATE(4600), 1, + sym_type, + STATE(7056), 1, + sym__array_base_type, + STATE(7551), 1, + sym__pointer_base_type, + STATE(4385), 3, + sym_implicit_type, + sym_ref_type, + sym_scoped_type, + STATE(4462), 3, + sym_alias_qualified_name, + sym__simple_name, + sym_qualified_name, + STATE(4481), 3, + sym_nullable_type, + sym_pointer_type, + sym_function_pointer_type, + STATE(4032), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -551679,7 +546453,28 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [23151] = 15, + ACTIONS(3967), 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, + [18004] = 31, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -551700,11 +546495,51 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(6359), 1, - anon_sym_and, - ACTIONS(6397), 1, - anon_sym_or, - STATE(4085), 9, + ACTIONS(2965), 1, + sym__identifier_token, + ACTIONS(2977), 1, + anon_sym_LPAREN, + ACTIONS(2997), 1, + sym_predefined_type, + ACTIONS(3438), 1, + anon_sym_delegate, + ACTIONS(6115), 1, + anon_sym_ref, + ACTIONS(6119), 1, + anon_sym_scoped, + ACTIONS(6121), 1, + anon_sym_var, + STATE(3654), 1, + sym__reserved_identifier, + STATE(4073), 1, + sym_generic_name, + STATE(4334), 1, + sym_tuple_type, + STATE(4373), 1, + sym_array_type, + STATE(6238), 1, + sym_identifier, + STATE(6264), 1, + sym__name, + STATE(6319), 1, + sym_type, + STATE(7233), 1, + sym__array_base_type, + STATE(7357), 1, + sym__pointer_base_type, + STATE(2316), 3, + sym_implicit_type, + sym_ref_type, + sym_scoped_type, + STATE(4068), 3, + sym_alias_qualified_name, + sym__simple_name, + sym_qualified_name, + STATE(4249), 3, + sym_nullable_type, + sym_pointer_type, + sym_function_pointer_type, + STATE(4033), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -551714,51 +546549,28 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5356), 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(5354), 31, - 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, + ACTIONS(2969), 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_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, - [23245] = 15, + 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, + [18131] = 31, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -551779,11 +546591,51 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(6359), 1, - anon_sym_and, - ACTIONS(6397), 1, - anon_sym_or, - STATE(4086), 9, + ACTIONS(3761), 1, + sym__identifier_token, + ACTIONS(4175), 1, + anon_sym_ref, + ACTIONS(5622), 1, + anon_sym_delegate, + ACTIONS(5626), 1, + anon_sym_var, + ACTIONS(5628), 1, + sym_predefined_type, + ACTIONS(5767), 1, + anon_sym_scoped, + ACTIONS(6133), 1, + anon_sym_LPAREN, + STATE(3119), 1, + sym_identifier, + STATE(3120), 1, + sym__reserved_identifier, + STATE(3147), 1, + sym_array_type, + STATE(3149), 1, + sym_tuple_type, + STATE(3151), 1, + sym__name, + STATE(3160), 1, + sym_type, + STATE(3184), 1, + sym_generic_name, + STATE(7165), 1, + sym__array_base_type, + STATE(7401), 1, + sym__pointer_base_type, + STATE(3143), 3, + sym_alias_qualified_name, + sym__simple_name, + sym_qualified_name, + STATE(3146), 3, + sym_implicit_type, + sym_ref_type, + sym_scoped_type, + STATE(3148), 3, + sym_nullable_type, + sym_pointer_type, + sym_function_pointer_type, + STATE(4034), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -551793,51 +546645,28 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(6207), 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(6205), 31, - 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, + ACTIONS(3763), 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_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, - [23339] = 16, + 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, + [18258] = 31, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -551858,13 +546687,51 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(3669), 1, - anon_sym_COLON_COLON, - ACTIONS(6311), 1, - anon_sym_LT, - STATE(4063), 1, - sym_type_argument_list, - STATE(4087), 9, + ACTIONS(3871), 1, + sym__identifier_token, + ACTIONS(3875), 1, + anon_sym_ref, + ACTIONS(4015), 1, + anon_sym_delegate, + ACTIONS(4017), 1, + anon_sym_scoped, + ACTIONS(4019), 1, + anon_sym_var, + ACTIONS(4021), 1, + sym_predefined_type, + ACTIONS(6033), 1, + anon_sym_LPAREN, + STATE(2916), 1, + sym__reserved_identifier, + STATE(2927), 1, + sym_identifier, + STATE(2978), 1, + sym_array_type, + STATE(2980), 1, + sym_tuple_type, + STATE(3030), 1, + sym_generic_name, + STATE(3086), 1, + sym__name, + STATE(3099), 1, + sym_type, + STATE(7236), 1, + sym__array_base_type, + STATE(7622), 1, + sym__pointer_base_type, + STATE(2976), 3, + sym_alias_qualified_name, + sym__simple_name, + sym_qualified_name, + STATE(2977), 3, + sym_implicit_type, + sym_ref_type, + sym_scoped_type, + STATE(2979), 3, + sym_nullable_type, + sym_pointer_type, + sym_function_pointer_type, + STATE(4035), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -551874,36 +546741,15 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(3662), 13, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_STAR, - anon_sym_DOT, - anon_sym_EQ_GT, - ACTIONS(3660), 28, + ACTIONS(3873), 20, 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, @@ -551916,8 +546762,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - sym__identifier_token, - [23435] = 41, + [18385] = 31, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -551938,81 +546783,51 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4755), 1, - anon_sym_DASH_GT, - ACTIONS(4804), 1, + ACTIONS(2965), 1, + sym__identifier_token, + ACTIONS(2977), 1, anon_sym_LPAREN, - ACTIONS(4808), 1, - anon_sym_DOT, - ACTIONS(4839), 1, - anon_sym_BANG, - ACTIONS(5573), 1, - anon_sym_LBRACK, - ACTIONS(5901), 1, - anon_sym_or, - ACTIONS(6321), 1, - anon_sym_QMARK, - ACTIONS(6327), 1, - anon_sym_SLASH, - ACTIONS(6329), 1, - anon_sym_CARET, - ACTIONS(6331), 1, - anon_sym_PIPE, - ACTIONS(6333), 1, - anon_sym_AMP, - ACTIONS(6337), 1, - anon_sym_GT_GT, - ACTIONS(6343), 1, - anon_sym_switch, - ACTIONS(6345), 1, - anon_sym_DOT_DOT, - ACTIONS(6347), 1, - anon_sym_AMP_AMP, - ACTIONS(6349), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6351), 1, - anon_sym_QMARK_QMARK, - ACTIONS(6353), 1, - anon_sym_as, - ACTIONS(6355), 1, - anon_sym_is, - ACTIONS(6357), 1, - anon_sym_with, - STATE(2485), 1, - sym_bracketed_argument_list, - STATE(3035), 1, - sym_argument_list, - ACTIONS(4841), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6319), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(6323), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(6325), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(6335), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - ACTIONS(6339), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(6341), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(5899), 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(4088), 9, + ACTIONS(2997), 1, + sym_predefined_type, + ACTIONS(3438), 1, + anon_sym_delegate, + ACTIONS(4705), 1, + anon_sym_var, + ACTIONS(6191), 1, + anon_sym_ref, + ACTIONS(6195), 1, + anon_sym_scoped, + STATE(3654), 1, + sym__reserved_identifier, + STATE(4073), 1, + sym_generic_name, + STATE(4081), 1, + sym_identifier, + STATE(4334), 1, + sym_tuple_type, + STATE(4369), 1, + sym__name, + STATE(4373), 1, + sym_array_type, + STATE(6388), 1, + sym_type, + STATE(7233), 1, + sym__array_base_type, + STATE(7357), 1, + sym__pointer_base_type, + STATE(2316), 3, + sym_implicit_type, + sym_ref_type, + sym_scoped_type, + STATE(4068), 3, + sym_alias_qualified_name, + sym__simple_name, + sym_qualified_name, + STATE(4249), 3, + sym_nullable_type, + sym_pointer_type, + sym_function_pointer_type, + STATE(4036), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -552022,7 +546837,28 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [23581] = 22, + ACTIONS(2969), 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, + [18512] = 17, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -552043,36 +546879,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4755), 1, - anon_sym_DASH_GT, - ACTIONS(4804), 1, - anon_sym_LPAREN, - ACTIONS(4808), 1, - anon_sym_DOT, - ACTIONS(4835), 1, + ACTIONS(4846), 1, anon_sym_LBRACK, - ACTIONS(4839), 1, - anon_sym_BANG, - ACTIONS(6385), 1, - anon_sym_DOT_DOT, - STATE(2433), 1, - sym_bracketed_argument_list, - STATE(3035), 1, - sym_argument_list, - ACTIONS(4841), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1223), 9, - anon_sym_LT, - anon_sym_GT, + ACTIONS(5536), 1, + anon_sym_LBRACE, + ACTIONS(5539), 1, anon_sym_QMARK, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT_GT, - STATE(4089), 9, + STATE(2971), 1, + sym_initializer_expression, + STATE(4037), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -552082,12 +546897,23 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(1221), 25, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_RBRACE, + ACTIONS(4856), 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(4850), 30, + anon_sym_LPAREN, + anon_sym_where, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_STAR, anon_sym_PERCENT, anon_sym_CARET, @@ -552098,121 +546924,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_with, - aux_sym_preproc_if_token3, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - [23689] = 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(4755), 1, anon_sym_DASH_GT, - ACTIONS(4804), 1, - anon_sym_LPAREN, - ACTIONS(4808), 1, - anon_sym_DOT, - ACTIONS(4835), 1, - anon_sym_LBRACK, - ACTIONS(4839), 1, - anon_sym_BANG, - ACTIONS(6293), 1, - anon_sym_switch, - ACTIONS(6307), 1, anon_sym_with, - ACTIONS(6363), 1, - anon_sym_QMARK, - ACTIONS(6369), 1, - anon_sym_SLASH, - ACTIONS(6371), 1, - anon_sym_CARET, - ACTIONS(6373), 1, - anon_sym_PIPE, - ACTIONS(6375), 1, - anon_sym_AMP, - ACTIONS(6379), 1, - anon_sym_GT_GT, - ACTIONS(6385), 1, - anon_sym_DOT_DOT, - ACTIONS(6387), 1, - anon_sym_AMP_AMP, - ACTIONS(6389), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6391), 1, - anon_sym_QMARK_QMARK, - ACTIONS(6393), 1, - anon_sym_as, - ACTIONS(6395), 1, - anon_sym_is, - STATE(2433), 1, - sym_bracketed_argument_list, - STATE(3035), 1, - sym_argument_list, - ACTIONS(4841), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6361), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(6365), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(6367), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(6377), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - ACTIONS(6381), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(6383), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(5072), 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(4090), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - [23833] = 13, + [18611] = 31, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -552233,7 +546961,51 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - STATE(4091), 9, + ACTIONS(2965), 1, + sym__identifier_token, + ACTIONS(2977), 1, + anon_sym_LPAREN, + ACTIONS(2997), 1, + sym_predefined_type, + ACTIONS(3438), 1, + anon_sym_delegate, + ACTIONS(6039), 1, + anon_sym_var, + ACTIONS(6139), 1, + anon_sym_ref, + ACTIONS(6143), 1, + anon_sym_scoped, + STATE(3654), 1, + sym__reserved_identifier, + STATE(4073), 1, + sym_generic_name, + STATE(4081), 1, + sym_identifier, + STATE(4334), 1, + sym_tuple_type, + STATE(4369), 1, + sym__name, + STATE(4373), 1, + sym_array_type, + STATE(7233), 1, + sym__array_base_type, + STATE(7297), 1, + sym_type, + STATE(7357), 1, + sym__pointer_base_type, + STATE(2316), 3, + sym_implicit_type, + sym_ref_type, + sym_scoped_type, + STATE(4068), 3, + sym_alias_qualified_name, + sym__simple_name, + sym_qualified_name, + STATE(4249), 3, + sym_nullable_type, + sym_pointer_type, + sym_function_pointer_type, + STATE(4038), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -552243,39 +547015,15 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(3673), 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(3671), 28, + ACTIONS(2969), 20, 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, @@ -552288,8 +547036,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - sym__identifier_token, - [23923] = 41, + [18738] = 31, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -552310,81 +547057,51 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4755), 1, - anon_sym_DASH_GT, - ACTIONS(4804), 1, + ACTIONS(3798), 1, + sym__identifier_token, + ACTIONS(4167), 1, + anon_sym_ref, + ACTIONS(5638), 1, + anon_sym_delegate, + ACTIONS(5642), 1, + anon_sym_var, + ACTIONS(5644), 1, + sym_predefined_type, + ACTIONS(5761), 1, + anon_sym_scoped, + ACTIONS(6101), 1, anon_sym_LPAREN, - ACTIONS(4808), 1, - anon_sym_DOT, - ACTIONS(4839), 1, - anon_sym_BANG, - ACTIONS(5573), 1, - anon_sym_LBRACK, - ACTIONS(5860), 1, - anon_sym_or, - ACTIONS(6321), 1, - anon_sym_QMARK, - ACTIONS(6327), 1, - anon_sym_SLASH, - ACTIONS(6329), 1, - anon_sym_CARET, - ACTIONS(6331), 1, - anon_sym_PIPE, - ACTIONS(6333), 1, - anon_sym_AMP, - ACTIONS(6337), 1, - anon_sym_GT_GT, - ACTIONS(6343), 1, - anon_sym_switch, - ACTIONS(6345), 1, - anon_sym_DOT_DOT, - ACTIONS(6347), 1, - anon_sym_AMP_AMP, - ACTIONS(6349), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6351), 1, - anon_sym_QMARK_QMARK, - ACTIONS(6353), 1, - anon_sym_as, - ACTIONS(6355), 1, - anon_sym_is, - ACTIONS(6357), 1, - anon_sym_with, - STATE(2485), 1, - sym_bracketed_argument_list, - STATE(3035), 1, - sym_argument_list, - ACTIONS(4841), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6319), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(6323), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(6325), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(6335), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - ACTIONS(6339), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(6341), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(5858), 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(4092), 9, + STATE(3177), 1, + sym_identifier, + STATE(3205), 1, + sym__reserved_identifier, + STATE(3229), 1, + sym_array_type, + STATE(3241), 1, + sym_generic_name, + STATE(3308), 1, + sym_tuple_type, + STATE(3439), 1, + sym_type, + STATE(3488), 1, + sym__name, + STATE(7208), 1, + sym__array_base_type, + STATE(7508), 1, + sym__pointer_base_type, + STATE(3216), 3, + sym_nullable_type, + sym_pointer_type, + sym_function_pointer_type, + STATE(3222), 3, + sym_implicit_type, + sym_ref_type, + sym_scoped_type, + STATE(3304), 3, + sym_alias_qualified_name, + sym__simple_name, + sym_qualified_name, + STATE(4039), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -552394,7 +547111,28 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [24069] = 22, + 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, + [18865] = 31, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -552415,36 +547153,51 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4755), 1, - anon_sym_DASH_GT, - ACTIONS(4804), 1, + ACTIONS(3798), 1, + sym__identifier_token, + ACTIONS(3802), 1, + anon_sym_ref, + ACTIONS(5638), 1, + anon_sym_delegate, + ACTIONS(5642), 1, + anon_sym_var, + ACTIONS(5644), 1, + sym_predefined_type, + ACTIONS(5700), 1, + anon_sym_scoped, + ACTIONS(6101), 1, anon_sym_LPAREN, - ACTIONS(4808), 1, - anon_sym_DOT, - ACTIONS(4835), 1, - anon_sym_LBRACK, - ACTIONS(4839), 1, - anon_sym_BANG, - ACTIONS(6385), 1, - anon_sym_DOT_DOT, - STATE(2433), 1, - sym_bracketed_argument_list, - STATE(3035), 1, - sym_argument_list, - ACTIONS(4841), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5733), 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(4093), 9, + STATE(3177), 1, + sym_identifier, + STATE(3205), 1, + sym__reserved_identifier, + STATE(3226), 1, + sym_type, + STATE(3229), 1, + sym_array_type, + STATE(3241), 1, + sym_generic_name, + STATE(3308), 1, + sym_tuple_type, + STATE(3488), 1, + sym__name, + STATE(7208), 1, + sym__array_base_type, + STATE(7508), 1, + sym__pointer_base_type, + STATE(3216), 3, + sym_nullable_type, + sym_pointer_type, + sym_function_pointer_type, + STATE(3222), 3, + sym_implicit_type, + sym_ref_type, + sym_scoped_type, + STATE(3304), 3, + sym_alias_qualified_name, + sym__simple_name, + sym_qualified_name, + STATE(4040), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -552454,33 +547207,28 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5731), 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, - 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(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_as, - anon_sym_is, - anon_sym_with, - aux_sym_preproc_if_token3, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - [24177] = 22, + 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, + [18992] = 31, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -552501,26 +547249,51 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4755), 1, - anon_sym_DASH_GT, - ACTIONS(4804), 1, + ACTIONS(2965), 1, + sym__identifier_token, + ACTIONS(2977), 1, anon_sym_LPAREN, - ACTIONS(4808), 1, - anon_sym_DOT, - ACTIONS(4839), 1, - anon_sym_BANG, - ACTIONS(5573), 1, - anon_sym_LBRACK, - ACTIONS(6345), 1, - anon_sym_DOT_DOT, - STATE(2485), 1, - sym_bracketed_argument_list, - STATE(3035), 1, - sym_argument_list, - ACTIONS(4841), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(4094), 9, + ACTIONS(2997), 1, + sym_predefined_type, + ACTIONS(3438), 1, + anon_sym_delegate, + ACTIONS(4705), 1, + anon_sym_var, + ACTIONS(6191), 1, + anon_sym_ref, + ACTIONS(6195), 1, + anon_sym_scoped, + STATE(3654), 1, + sym__reserved_identifier, + STATE(4073), 1, + sym_generic_name, + STATE(4081), 1, + sym_identifier, + STATE(4334), 1, + sym_tuple_type, + STATE(4369), 1, + sym__name, + STATE(4373), 1, + sym_array_type, + STATE(7233), 1, + sym__array_base_type, + STATE(7357), 1, + sym__pointer_base_type, + STATE(7440), 1, + sym_type, + STATE(2316), 3, + sym_implicit_type, + sym_ref_type, + sym_scoped_type, + STATE(4068), 3, + sym_alias_qualified_name, + sym__simple_name, + sym_qualified_name, + STATE(4249), 3, + sym_nullable_type, + sym_pointer_type, + sym_function_pointer_type, + STATE(4041), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -552530,43 +547303,28 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5733), 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(5731), 24, + ACTIONS(2969), 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, - [24285] = 40, + [19119] = 31, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -552587,111 +547345,51 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4755), 1, - anon_sym_DASH_GT, - ACTIONS(4804), 1, + ACTIONS(2965), 1, + sym__identifier_token, + ACTIONS(2977), 1, anon_sym_LPAREN, - ACTIONS(4808), 1, - anon_sym_DOT, - ACTIONS(4835), 1, - anon_sym_LBRACK, - ACTIONS(4839), 1, - anon_sym_BANG, - ACTIONS(6293), 1, - anon_sym_switch, - ACTIONS(6307), 1, - anon_sym_with, - ACTIONS(6363), 1, - anon_sym_QMARK, - ACTIONS(6369), 1, - anon_sym_SLASH, - ACTIONS(6371), 1, - anon_sym_CARET, - ACTIONS(6373), 1, - anon_sym_PIPE, - ACTIONS(6375), 1, - anon_sym_AMP, - ACTIONS(6379), 1, - anon_sym_GT_GT, - ACTIONS(6385), 1, - anon_sym_DOT_DOT, - ACTIONS(6387), 1, - anon_sym_AMP_AMP, - ACTIONS(6389), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6391), 1, - anon_sym_QMARK_QMARK, - ACTIONS(6393), 1, - anon_sym_as, - ACTIONS(6395), 1, - anon_sym_is, - STATE(2433), 1, - sym_bracketed_argument_list, - STATE(3035), 1, - sym_argument_list, - ACTIONS(4841), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6361), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(6365), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(6367), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(6377), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - ACTIONS(6381), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(6383), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(5767), 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(4095), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - [24429] = 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(4096), 9, + ACTIONS(2997), 1, + sym_predefined_type, + ACTIONS(3438), 1, + anon_sym_delegate, + ACTIONS(6039), 1, + anon_sym_var, + ACTIONS(6139), 1, + anon_sym_ref, + ACTIONS(6143), 1, + anon_sym_scoped, + STATE(3654), 1, + sym__reserved_identifier, + STATE(4073), 1, + sym_generic_name, + STATE(4081), 1, + sym_identifier, + STATE(4334), 1, + sym_tuple_type, + STATE(4369), 1, + sym__name, + STATE(4373), 1, + sym_array_type, + STATE(7233), 1, + sym__array_base_type, + STATE(7357), 1, + sym__pointer_base_type, + STATE(7464), 1, + sym_type, + STATE(2316), 3, + sym_implicit_type, + sym_ref_type, + sym_scoped_type, + STATE(4068), 3, + sym_alias_qualified_name, + sym__simple_name, + sym_qualified_name, + STATE(4249), 3, + sym_nullable_type, + sym_pointer_type, + sym_function_pointer_type, + STATE(4042), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -552701,39 +547399,15 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(3710), 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(3699), 28, + ACTIONS(2969), 20, 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, @@ -552746,8 +547420,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - sym__identifier_token, - [24519] = 29, + [19246] = 31, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -552768,50 +547441,51 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4755), 1, - anon_sym_DASH_GT, - ACTIONS(4804), 1, + ACTIONS(2965), 1, + sym__identifier_token, + ACTIONS(2977), 1, anon_sym_LPAREN, - ACTIONS(4808), 1, - anon_sym_DOT, - ACTIONS(4839), 1, - anon_sym_BANG, - ACTIONS(5573), 1, - anon_sym_LBRACK, - ACTIONS(6327), 1, - anon_sym_SLASH, - ACTIONS(6337), 1, - anon_sym_GT_GT, - ACTIONS(6343), 1, - anon_sym_switch, - ACTIONS(6345), 1, - anon_sym_DOT_DOT, - ACTIONS(6357), 1, - anon_sym_with, - STATE(2485), 1, - sym_bracketed_argument_list, - STATE(3035), 1, - sym_argument_list, - ACTIONS(4841), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6323), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(6325), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(6335), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - ACTIONS(5664), 6, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_or, - STATE(4097), 9, + ACTIONS(2997), 1, + sym_predefined_type, + ACTIONS(3438), 1, + anon_sym_delegate, + ACTIONS(6039), 1, + anon_sym_var, + ACTIONS(6139), 1, + anon_sym_ref, + ACTIONS(6143), 1, + anon_sym_scoped, + STATE(3654), 1, + sym__reserved_identifier, + STATE(4073), 1, + sym_generic_name, + STATE(4081), 1, + sym_identifier, + STATE(4334), 1, + sym_tuple_type, + STATE(4369), 1, + sym__name, + STATE(4373), 1, + sym_array_type, + STATE(7233), 1, + sym__array_base_type, + STATE(7303), 1, + sym_type, + STATE(7357), 1, + sym__pointer_base_type, + STATE(2316), 3, + sym_implicit_type, + sym_ref_type, + sym_scoped_type, + STATE(4068), 3, + sym_alias_qualified_name, + sym__simple_name, + sym_qualified_name, + STATE(4249), 3, + sym_nullable_type, + sym_pointer_type, + sym_function_pointer_type, + STATE(4043), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -552821,26 +547495,28 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5660), 18, + ACTIONS(2969), 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_GT_EQ, - anon_sym_LT_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, - anon_sym_as, - anon_sym_is, - [24641] = 26, + [19373] = 31, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -552861,45 +547537,51 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4755), 1, - anon_sym_DASH_GT, - ACTIONS(4804), 1, + ACTIONS(3798), 1, + sym__identifier_token, + ACTIONS(4167), 1, + anon_sym_ref, + ACTIONS(5638), 1, + anon_sym_delegate, + ACTIONS(5642), 1, + anon_sym_var, + ACTIONS(5644), 1, + sym_predefined_type, + ACTIONS(5761), 1, + anon_sym_scoped, + ACTIONS(6101), 1, anon_sym_LPAREN, - ACTIONS(4808), 1, - anon_sym_DOT, - ACTIONS(4839), 1, - anon_sym_BANG, - ACTIONS(5573), 1, - anon_sym_LBRACK, - ACTIONS(6327), 1, - anon_sym_SLASH, - ACTIONS(6343), 1, - anon_sym_switch, - ACTIONS(6345), 1, - anon_sym_DOT_DOT, - ACTIONS(6357), 1, - anon_sym_with, - STATE(2485), 1, - sym_bracketed_argument_list, - STATE(3035), 1, - sym_argument_list, - ACTIONS(4841), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6325), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(5664), 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(4098), 9, + STATE(3177), 1, + sym_identifier, + STATE(3205), 1, + sym__reserved_identifier, + STATE(3226), 1, + sym_type, + STATE(3229), 1, + sym_array_type, + STATE(3241), 1, + sym_generic_name, + STATE(3308), 1, + sym_tuple_type, + STATE(3488), 1, + sym__name, + STATE(7208), 1, + sym__array_base_type, + STATE(7508), 1, + sym__pointer_base_type, + STATE(3216), 3, + sym_nullable_type, + sym_pointer_type, + sym_function_pointer_type, + STATE(3222), 3, + sym_implicit_type, + sym_ref_type, + sym_scoped_type, + STATE(3304), 3, + sym_alias_qualified_name, + sym__simple_name, + sym_qualified_name, + STATE(4044), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -552909,28 +547591,28 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5660), 20, + ACTIONS(3800), 20, + anon_sym_alias, + anon_sym_global, + anon_sym_file, 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_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, - [24757] = 41, + [19500] = 31, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -552951,81 +547633,51 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4755), 1, - anon_sym_DASH_GT, - ACTIONS(4804), 1, + ACTIONS(3438), 1, + anon_sym_delegate, + ACTIONS(4080), 1, + sym__identifier_token, + ACTIONS(4084), 1, + anon_sym_ref, + ACTIONS(5815), 1, + anon_sym_scoped, + ACTIONS(5817), 1, + anon_sym_var, + ACTIONS(5819), 1, + sym_predefined_type, + ACTIONS(6111), 1, anon_sym_LPAREN, - ACTIONS(4808), 1, - anon_sym_DOT, - ACTIONS(4839), 1, - anon_sym_BANG, - ACTIONS(5573), 1, - anon_sym_LBRACK, - ACTIONS(5779), 1, - anon_sym_or, - ACTIONS(6321), 1, - anon_sym_QMARK, - ACTIONS(6327), 1, - anon_sym_SLASH, - ACTIONS(6329), 1, - anon_sym_CARET, - ACTIONS(6331), 1, - anon_sym_PIPE, - ACTIONS(6333), 1, - anon_sym_AMP, - ACTIONS(6337), 1, - anon_sym_GT_GT, - ACTIONS(6343), 1, - anon_sym_switch, - ACTIONS(6345), 1, - anon_sym_DOT_DOT, - ACTIONS(6347), 1, - anon_sym_AMP_AMP, - ACTIONS(6349), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6351), 1, - anon_sym_QMARK_QMARK, - ACTIONS(6353), 1, - anon_sym_as, - ACTIONS(6355), 1, - anon_sym_is, - ACTIONS(6357), 1, - anon_sym_with, - STATE(2485), 1, - sym_bracketed_argument_list, - STATE(3035), 1, - sym_argument_list, - ACTIONS(4841), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6319), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(6323), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(6325), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(6335), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - ACTIONS(6339), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(6341), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(5777), 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(4099), 9, + STATE(2351), 1, + sym_identifier, + STATE(2354), 1, + sym__reserved_identifier, + STATE(2373), 1, + sym_array_type, + STATE(2377), 1, + sym_tuple_type, + STATE(2384), 1, + sym_generic_name, + STATE(2411), 1, + sym__name, + STATE(3841), 1, + sym_type, + STATE(7083), 1, + sym__array_base_type, + STATE(7357), 1, + sym__pointer_base_type, + STATE(2316), 3, + sym_implicit_type, + sym_ref_type, + sym_scoped_type, + STATE(2375), 3, + sym_nullable_type, + sym_pointer_type, + sym_function_pointer_type, + STATE(2402), 3, + sym_alias_qualified_name, + sym__simple_name, + sym_qualified_name, + STATE(4045), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -553035,7 +547687,28 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [24903] = 40, + ACTIONS(4082), 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, + [19627] = 31, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -553056,80 +547729,51 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4755), 1, - anon_sym_DASH_GT, - ACTIONS(4804), 1, + ACTIONS(3761), 1, + sym__identifier_token, + ACTIONS(4177), 1, + anon_sym_ref, + ACTIONS(5622), 1, + anon_sym_delegate, + ACTIONS(5626), 1, + anon_sym_var, + ACTIONS(5628), 1, + sym_predefined_type, + ACTIONS(5789), 1, + anon_sym_scoped, + ACTIONS(6133), 1, anon_sym_LPAREN, - ACTIONS(4808), 1, - anon_sym_DOT, - ACTIONS(4835), 1, - anon_sym_LBRACK, - ACTIONS(4839), 1, - anon_sym_BANG, - ACTIONS(6293), 1, - anon_sym_switch, - ACTIONS(6307), 1, - anon_sym_with, - ACTIONS(6363), 1, - anon_sym_QMARK, - ACTIONS(6369), 1, - anon_sym_SLASH, - ACTIONS(6371), 1, - anon_sym_CARET, - ACTIONS(6373), 1, - anon_sym_PIPE, - ACTIONS(6375), 1, - anon_sym_AMP, - ACTIONS(6379), 1, - anon_sym_GT_GT, - ACTIONS(6385), 1, - anon_sym_DOT_DOT, - ACTIONS(6387), 1, - anon_sym_AMP_AMP, - ACTIONS(6389), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6391), 1, - anon_sym_QMARK_QMARK, - ACTIONS(6393), 1, - anon_sym_as, - ACTIONS(6395), 1, - anon_sym_is, - STATE(2433), 1, - sym_bracketed_argument_list, - STATE(3035), 1, - sym_argument_list, - ACTIONS(4841), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6361), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(6365), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(6367), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(6377), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - ACTIONS(6381), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(6383), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(5745), 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(4100), 9, + STATE(3119), 1, + sym_identifier, + STATE(3120), 1, + sym__reserved_identifier, + STATE(3147), 1, + sym_array_type, + STATE(3149), 1, + sym_tuple_type, + STATE(3151), 1, + sym__name, + STATE(3160), 1, + sym_type, + STATE(3184), 1, + sym_generic_name, + STATE(7165), 1, + sym__array_base_type, + STATE(7401), 1, + sym__pointer_base_type, + STATE(3143), 3, + sym_alias_qualified_name, + sym__simple_name, + sym_qualified_name, + STATE(3146), 3, + sym_implicit_type, + sym_ref_type, + sym_scoped_type, + STATE(3148), 3, + sym_nullable_type, + sym_pointer_type, + sym_function_pointer_type, + STATE(4046), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -553139,7 +547783,28 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [25047] = 27, + ACTIONS(3763), 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, + [19754] = 31, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -553160,46 +547825,51 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4755), 1, - anon_sym_DASH_GT, - ACTIONS(4804), 1, + ACTIONS(3438), 1, + anon_sym_delegate, + ACTIONS(4080), 1, + sym__identifier_token, + ACTIONS(4084), 1, + anon_sym_ref, + ACTIONS(5815), 1, + anon_sym_scoped, + ACTIONS(5817), 1, + anon_sym_var, + ACTIONS(5819), 1, + sym_predefined_type, + ACTIONS(6111), 1, anon_sym_LPAREN, - ACTIONS(4808), 1, - anon_sym_DOT, - ACTIONS(4839), 1, - anon_sym_BANG, - ACTIONS(5573), 1, - anon_sym_LBRACK, - ACTIONS(6327), 1, - anon_sym_SLASH, - ACTIONS(6343), 1, - anon_sym_switch, - ACTIONS(6345), 1, - anon_sym_DOT_DOT, - ACTIONS(6357), 1, - anon_sym_with, - STATE(2485), 1, - sym_bracketed_argument_list, - STATE(3035), 1, - sym_argument_list, - ACTIONS(4841), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6323), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(6325), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(5664), 7, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT_GT, - anon_sym_or, - STATE(4101), 9, + STATE(2345), 1, + sym_type, + STATE(2351), 1, + sym_identifier, + STATE(2354), 1, + sym__reserved_identifier, + STATE(2373), 1, + sym_array_type, + STATE(2377), 1, + sym_tuple_type, + STATE(2384), 1, + sym_generic_name, + STATE(2411), 1, + sym__name, + STATE(7083), 1, + sym__array_base_type, + STATE(7357), 1, + sym__pointer_base_type, + STATE(2316), 3, + sym_implicit_type, + sym_ref_type, + sym_scoped_type, + STATE(2375), 3, + sym_nullable_type, + sym_pointer_type, + sym_function_pointer_type, + STATE(2402), 3, + sym_alias_qualified_name, + sym__simple_name, + sym_qualified_name, + STATE(4047), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -553209,28 +547879,28 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5660), 20, + ACTIONS(4082), 20, + anon_sym_alias, + anon_sym_global, + anon_sym_file, 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_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, - [25165] = 41, + [19881] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -553251,81 +547921,156 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4755), 1, + ACTIONS(4697), 1, + anon_sym_DOT, + ACTIONS(4699), 1, anon_sym_DASH_GT, - ACTIONS(4804), 1, + ACTIONS(5591), 1, anon_sym_LPAREN, - ACTIONS(4808), 1, - anon_sym_DOT, - ACTIONS(4839), 1, - anon_sym_BANG, - ACTIONS(5573), 1, + ACTIONS(5650), 1, anon_sym_LBRACK, - ACTIONS(5866), 1, - anon_sym_or, - ACTIONS(6321), 1, - anon_sym_QMARK, - ACTIONS(6327), 1, + ACTIONS(5658), 1, + anon_sym_BANG, + ACTIONS(5682), 1, + anon_sym_switch, + ACTIONS(5698), 1, + anon_sym_with, + ACTIONS(5917), 1, + anon_sym_as, + ACTIONS(6207), 1, anon_sym_SLASH, - ACTIONS(6329), 1, + ACTIONS(6209), 1, anon_sym_CARET, - ACTIONS(6331), 1, - anon_sym_PIPE, - ACTIONS(6333), 1, + ACTIONS(6211), 1, anon_sym_AMP, - ACTIONS(6337), 1, + ACTIONS(6215), 1, anon_sym_GT_GT, - ACTIONS(6343), 1, - anon_sym_switch, - ACTIONS(6345), 1, + ACTIONS(6221), 1, anon_sym_DOT_DOT, - ACTIONS(6347), 1, + ACTIONS(6223), 1, + anon_sym_is, + ACTIONS(6232), 1, + anon_sym_PIPE, + ACTIONS(6234), 1, anon_sym_AMP_AMP, - ACTIONS(6349), 1, + ACTIONS(6236), 1, anon_sym_PIPE_PIPE, - ACTIONS(6351), 1, + ACTIONS(6238), 1, anon_sym_QMARK_QMARK, - ACTIONS(6353), 1, - anon_sym_as, - ACTIONS(6355), 1, - anon_sym_is, - ACTIONS(6357), 1, - anon_sym_with, - STATE(2485), 1, + ACTIONS(6286), 1, + anon_sym_QMARK, + STATE(2892), 1, sym_bracketed_argument_list, - STATE(3035), 1, + STATE(3771), 1, sym_argument_list, - ACTIONS(4841), 2, + ACTIONS(5660), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6319), 2, + ACTIONS(6201), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(6323), 2, + ACTIONS(6203), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6325), 2, + ACTIONS(6205), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(6335), 2, + ACTIONS(6213), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(6339), 2, + ACTIONS(6217), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6341), 2, + ACTIONS(6219), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5864), 8, + 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(5709), 10, + anon_sym_COMMA, anon_sym_where, - anon_sym_and, anon_sym_from, anon_sym_join, anon_sym_let, anon_sym_orderby, + anon_sym_ascending, + anon_sym_descending, anon_sym_group, anon_sym_select, - STATE(4102), 9, + [20026] = 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(3761), 1, + sym__identifier_token, + ACTIONS(4023), 1, + anon_sym_ref, + ACTIONS(5622), 1, + anon_sym_delegate, + ACTIONS(5626), 1, + anon_sym_var, + ACTIONS(5628), 1, + sym_predefined_type, + ACTIONS(5793), 1, + anon_sym_scoped, + ACTIONS(6133), 1, + anon_sym_LPAREN, + STATE(3119), 1, + sym_identifier, + STATE(3120), 1, + sym__reserved_identifier, + STATE(3147), 1, + sym_array_type, + STATE(3149), 1, + sym_tuple_type, + STATE(3151), 1, + sym__name, + STATE(3184), 1, + sym_generic_name, + STATE(3270), 1, + sym_type, + STATE(7165), 1, + sym__array_base_type, + STATE(7401), 1, + sym__pointer_base_type, + STATE(3143), 3, + sym_alias_qualified_name, + sym__simple_name, + sym_qualified_name, + STATE(3146), 3, + sym_implicit_type, + sym_ref_type, + sym_scoped_type, + STATE(3148), 3, + sym_nullable_type, + sym_pointer_type, + sym_function_pointer_type, + STATE(4049), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -553335,7 +548080,28 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [25311] = 35, + ACTIONS(3763), 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, + [20153] = 31, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -553356,62 +548122,51 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4755), 1, - anon_sym_DASH_GT, - ACTIONS(4804), 1, + ACTIONS(3871), 1, + sym__identifier_token, + ACTIONS(4015), 1, + anon_sym_delegate, + ACTIONS(4019), 1, + anon_sym_var, + ACTIONS(4021), 1, + sym_predefined_type, + ACTIONS(4160), 1, + anon_sym_ref, + ACTIONS(5610), 1, + anon_sym_scoped, + ACTIONS(6033), 1, anon_sym_LPAREN, - ACTIONS(4808), 1, - anon_sym_DOT, - ACTIONS(4839), 1, - anon_sym_BANG, - ACTIONS(5573), 1, - anon_sym_LBRACK, - ACTIONS(6327), 1, - anon_sym_SLASH, - ACTIONS(6333), 1, - anon_sym_AMP, - ACTIONS(6337), 1, - anon_sym_GT_GT, - ACTIONS(6343), 1, - anon_sym_switch, - ACTIONS(6345), 1, - anon_sym_DOT_DOT, - ACTIONS(6353), 1, - anon_sym_as, - ACTIONS(6355), 1, - anon_sym_is, - ACTIONS(6357), 1, - anon_sym_with, - STATE(2485), 1, - sym_bracketed_argument_list, - STATE(3035), 1, - sym_argument_list, - ACTIONS(4841), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6319), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(6323), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(6325), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(6335), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - ACTIONS(6339), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(6341), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(5664), 3, - anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_or, - STATE(4103), 9, + STATE(2916), 1, + sym__reserved_identifier, + STATE(2927), 1, + sym_identifier, + STATE(2978), 1, + sym_array_type, + STATE(2980), 1, + sym_tuple_type, + STATE(3030), 1, + sym_generic_name, + STATE(3045), 1, + sym_type, + STATE(3086), 1, + sym__name, + STATE(7236), 1, + sym__array_base_type, + STATE(7622), 1, + sym__pointer_base_type, + STATE(2976), 3, + sym_alias_qualified_name, + sym__simple_name, + sym_qualified_name, + STATE(2977), 3, + sym_implicit_type, + sym_ref_type, + sym_scoped_type, + STATE(2979), 3, + sym_nullable_type, + sym_pointer_type, + sym_function_pointer_type, + STATE(4050), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -553421,20 +548176,28 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5660), 12, + ACTIONS(3873), 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, - [25445] = 36, + [20280] = 34, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -553455,64 +548218,61 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4755), 1, - anon_sym_DASH_GT, - ACTIONS(4804), 1, + ACTIONS(4753), 1, anon_sym_LPAREN, - ACTIONS(4808), 1, + ACTIONS(4792), 1, anon_sym_DOT, - ACTIONS(4839), 1, - anon_sym_BANG, - ACTIONS(5573), 1, + ACTIONS(4794), 1, + anon_sym_DASH_GT, + ACTIONS(4819), 1, anon_sym_LBRACK, - ACTIONS(6327), 1, + ACTIONS(4823), 1, + anon_sym_BANG, + ACTIONS(6248), 1, anon_sym_SLASH, - ACTIONS(6329), 1, - anon_sym_CARET, - ACTIONS(6333), 1, - anon_sym_AMP, - ACTIONS(6337), 1, + ACTIONS(6258), 1, anon_sym_GT_GT, - ACTIONS(6343), 1, + ACTIONS(6264), 1, anon_sym_switch, - ACTIONS(6345), 1, + ACTIONS(6266), 1, anon_sym_DOT_DOT, - ACTIONS(6353), 1, + ACTIONS(6274), 1, anon_sym_as, - ACTIONS(6355), 1, + ACTIONS(6276), 1, anon_sym_is, - ACTIONS(6357), 1, + ACTIONS(6278), 1, anon_sym_with, - STATE(2485), 1, + STATE(2419), 1, sym_bracketed_argument_list, - STATE(3035), 1, + STATE(2958), 1, sym_argument_list, - ACTIONS(4841), 2, + ACTIONS(4825), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6319), 2, + ACTIONS(6240), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(6323), 2, + ACTIONS(6244), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6325), 2, + ACTIONS(6246), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(6335), 2, + ACTIONS(6256), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(6339), 2, + ACTIONS(6260), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6341), 2, + ACTIONS(6262), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5664), 3, + ACTIONS(5739), 4, anon_sym_QMARK, anon_sym_PIPE, + anon_sym_AMP, anon_sym_or, - STATE(4104), 9, + STATE(4051), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -553522,19 +548282,21 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5660), 11, + ACTIONS(5737), 13, 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_into, anon_sym_join, anon_sym_let, anon_sym_orderby, anon_sym_group, anon_sym_select, - [25581] = 41, + [20413] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -553555,114 +548317,80 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4755), 1, - anon_sym_DASH_GT, - ACTIONS(4804), 1, + ACTIONS(4753), 1, anon_sym_LPAREN, - ACTIONS(4808), 1, + ACTIONS(4792), 1, anon_sym_DOT, - ACTIONS(4839), 1, - anon_sym_BANG, - ACTIONS(5074), 1, - anon_sym_or, - ACTIONS(5573), 1, + ACTIONS(4794), 1, + anon_sym_DASH_GT, + ACTIONS(4819), 1, anon_sym_LBRACK, - ACTIONS(6321), 1, + ACTIONS(4823), 1, + anon_sym_BANG, + ACTIONS(6264), 1, + anon_sym_switch, + ACTIONS(6278), 1, + anon_sym_with, + ACTIONS(6297), 1, anon_sym_QMARK, - ACTIONS(6327), 1, + ACTIONS(6303), 1, anon_sym_SLASH, - ACTIONS(6329), 1, + ACTIONS(6305), 1, anon_sym_CARET, - ACTIONS(6331), 1, + ACTIONS(6307), 1, anon_sym_PIPE, - ACTIONS(6333), 1, + ACTIONS(6309), 1, anon_sym_AMP, - ACTIONS(6337), 1, + ACTIONS(6313), 1, anon_sym_GT_GT, - ACTIONS(6343), 1, - anon_sym_switch, - ACTIONS(6345), 1, + ACTIONS(6319), 1, anon_sym_DOT_DOT, - ACTIONS(6347), 1, + ACTIONS(6321), 1, anon_sym_AMP_AMP, - ACTIONS(6349), 1, + ACTIONS(6323), 1, anon_sym_PIPE_PIPE, - ACTIONS(6351), 1, + ACTIONS(6325), 1, anon_sym_QMARK_QMARK, - ACTIONS(6353), 1, + ACTIONS(6327), 1, anon_sym_as, - ACTIONS(6355), 1, + ACTIONS(6329), 1, anon_sym_is, - ACTIONS(6357), 1, - anon_sym_with, - STATE(2485), 1, + STATE(2419), 1, sym_bracketed_argument_list, - STATE(3035), 1, + STATE(2958), 1, sym_argument_list, - ACTIONS(4841), 2, + ACTIONS(4825), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6319), 2, + ACTIONS(6295), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(6323), 2, + ACTIONS(6299), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6325), 2, + ACTIONS(6301), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(6335), 2, + ACTIONS(6311), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(6339), 2, + ACTIONS(6315), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6341), 2, + ACTIONS(6317), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5072), 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(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, - [25727] = 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(3667), 1, - anon_sym_EQ_GT, - STATE(4106), 9, + ACTIONS(5652), 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(4052), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -553672,52 +548400,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5431), 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(3829), 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, - 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, - [25819] = 13, + [20557] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -553738,7 +548421,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - STATE(4107), 9, + STATE(4053), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -553748,7 +548431,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(4114), 16, + ACTIONS(3661), 16, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_COLON, @@ -553765,7 +548448,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, anon_sym_EQ_GT, anon_sym_DASH_GT, - ACTIONS(4112), 28, + ACTIONS(3659), 28, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -553794,88 +548477,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_select, sym__identifier_token, - [25909] = 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(4066), 1, - anon_sym_LBRACK, - ACTIONS(4072), 1, - anon_sym_STAR, - ACTIONS(4887), 1, - anon_sym_QMARK, - ACTIONS(6399), 1, - anon_sym_DOT, - STATE(4108), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - ACTIONS(4016), 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(4018), 30, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_where, - 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_let, - anon_sym_orderby, - anon_sym_group, - anon_sym_select, - anon_sym_as, - anon_sym_is, - anon_sym_DASH_GT, - anon_sym_with, - [26007] = 13, + [20647] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -553896,7 +548498,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - STATE(4109), 9, + STATE(4054), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -553906,7 +548508,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(3662), 16, + ACTIONS(3644), 16, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_COLON, @@ -553923,7 +548525,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, anon_sym_EQ_GT, anon_sym_DASH_GT, - ACTIONS(3660), 28, + ACTIONS(3642), 28, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -553952,7 +548554,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_select, sym__identifier_token, - [26097] = 14, + [20737] = 41, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -553973,234 +548575,81 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(6399), 1, + ACTIONS(4753), 1, + anon_sym_LPAREN, + ACTIONS(4792), 1, anon_sym_DOT, - 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, - ACTIONS(3975), 11, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, + ACTIONS(4794), 1, + anon_sym_DASH_GT, + ACTIONS(4823), 1, anon_sym_BANG, - anon_sym_PLUS, - anon_sym_DASH, + ACTIONS(5549), 1, + anon_sym_LBRACK, + ACTIONS(5803), 1, + anon_sym_or, + ACTIONS(6333), 1, + anon_sym_QMARK, + ACTIONS(6339), 1, anon_sym_SLASH, + ACTIONS(6341), 1, + anon_sym_CARET, + ACTIONS(6343), 1, anon_sym_PIPE, + ACTIONS(6345), 1, anon_sym_AMP, + ACTIONS(6349), 1, anon_sym_GT_GT, - anon_sym_or, - ACTIONS(3977), 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, - 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(6355), 1, anon_sym_switch, + ACTIONS(6357), 1, anon_sym_DOT_DOT, - anon_sym_and, + ACTIONS(6359), 1, anon_sym_AMP_AMP, + ACTIONS(6361), 1, anon_sym_PIPE_PIPE, + ACTIONS(6363), 1, 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, - [26189] = 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(4755), 1, - anon_sym_DASH_GT, - ACTIONS(4804), 1, - anon_sym_LPAREN, - ACTIONS(4808), 1, - anon_sym_DOT, - ACTIONS(4839), 1, - anon_sym_BANG, - ACTIONS(5573), 1, - anon_sym_LBRACK, - ACTIONS(6327), 1, - anon_sym_SLASH, - ACTIONS(6337), 1, - anon_sym_GT_GT, - ACTIONS(6343), 1, - anon_sym_switch, - ACTIONS(6345), 1, - anon_sym_DOT_DOT, - ACTIONS(6353), 1, + ACTIONS(6365), 1, anon_sym_as, - ACTIONS(6355), 1, + ACTIONS(6367), 1, anon_sym_is, - ACTIONS(6357), 1, + ACTIONS(6369), 1, anon_sym_with, - STATE(2485), 1, + STATE(2467), 1, sym_bracketed_argument_list, - STATE(3035), 1, + STATE(2958), 1, sym_argument_list, - ACTIONS(4841), 2, + ACTIONS(4825), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6319), 2, + ACTIONS(6331), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(6323), 2, + ACTIONS(6335), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6325), 2, + ACTIONS(6337), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(6335), 2, + ACTIONS(6347), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(6339), 2, + ACTIONS(6351), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6341), 2, + ACTIONS(6353), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5664), 4, - anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_or, - 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, - ACTIONS(5660), 12, + ACTIONS(5801), 8, 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, - [26321] = 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(4755), 1, - anon_sym_DASH_GT, - ACTIONS(4804), 1, - anon_sym_LPAREN, - ACTIONS(4808), 1, - anon_sym_DOT, - ACTIONS(4839), 1, - anon_sym_BANG, - ACTIONS(5573), 1, - anon_sym_LBRACK, - ACTIONS(6327), 1, - anon_sym_SLASH, - ACTIONS(6337), 1, - anon_sym_GT_GT, - ACTIONS(6343), 1, - anon_sym_switch, - ACTIONS(6345), 1, - anon_sym_DOT_DOT, - ACTIONS(6353), 1, - anon_sym_as, - ACTIONS(6355), 1, - anon_sym_is, - ACTIONS(6357), 1, - anon_sym_with, - STATE(2485), 1, - sym_bracketed_argument_list, - STATE(3035), 1, - sym_argument_list, - ACTIONS(4841), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6319), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(6323), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(6325), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(6335), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - ACTIONS(6341), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(5664), 4, - anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_or, - STATE(4112), 9, + STATE(4055), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -554210,22 +548659,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5660), 14, - 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_join, - anon_sym_let, - anon_sym_orderby, - anon_sym_group, - anon_sym_select, - [26451] = 15, + [20883] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -554246,11 +548680,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(6401), 1, + ACTIONS(6371), 1, anon_sym_into, - STATE(4115), 1, + STATE(4058), 1, aux_sym__query_body_repeat2, - STATE(4113), 9, + STATE(4056), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -554260,7 +548694,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(6005), 12, + ACTIONS(5881), 12, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, @@ -554273,7 +548707,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_or, - ACTIONS(6003), 30, + ACTIONS(5879), 30, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_where, @@ -554304,7 +548738,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, anon_sym_DASH_GT, anon_sym_with, - [26545] = 15, + [20977] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -554325,11 +548759,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(6401), 1, + ACTIONS(6371), 1, anon_sym_into, - STATE(4116), 1, + STATE(4059), 1, aux_sym__query_body_repeat2, - STATE(4114), 9, + STATE(4057), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -554339,7 +548773,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(6005), 12, + ACTIONS(5881), 12, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, @@ -554352,7 +548786,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_or, - ACTIONS(6003), 30, + ACTIONS(5879), 30, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_where, @@ -554383,7 +548817,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, anon_sym_DASH_GT, anon_sym_with, - [26639] = 14, + [21071] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -554404,9 +548838,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(6403), 1, + ACTIONS(6373), 1, anon_sym_into, - STATE(4115), 10, + STATE(4058), 10, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -554417,7 +548851,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_define, sym_preproc_undef, aux_sym__query_body_repeat2, - ACTIONS(5951), 12, + ACTIONS(5953), 12, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, @@ -554430,7 +548864,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_or, - ACTIONS(5949), 30, + ACTIONS(5951), 30, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_where, @@ -554461,7 +548895,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, anon_sym_DASH_GT, anon_sym_with, - [26731] = 15, + [21163] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -554482,11 +548916,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(6401), 1, + ACTIONS(6371), 1, anon_sym_into, - STATE(4115), 1, + STATE(4058), 1, aux_sym__query_body_repeat2, - STATE(4116), 9, + STATE(4059), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -554540,7 +548974,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, anon_sym_DASH_GT, anon_sym_with, - [26825] = 22, + [21257] = 17, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -554561,93 +548995,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4755), 1, - anon_sym_DASH_GT, - ACTIONS(4804), 1, - anon_sym_LPAREN, - ACTIONS(4808), 1, - anon_sym_DOT, - ACTIONS(4839), 1, - anon_sym_BANG, - ACTIONS(5573), 1, + ACTIONS(4033), 1, anon_sym_LBRACK, - ACTIONS(6345), 1, - anon_sym_DOT_DOT, - STATE(2485), 1, - sym_bracketed_argument_list, - STATE(3035), 1, - sym_argument_list, - ACTIONS(4841), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(4117), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - ACTIONS(1223), 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(1221), 24, - anon_sym_where, + ACTIONS(4039), 1, 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_join, - anon_sym_let, - anon_sym_orderby, - anon_sym_group, - anon_sym_select, - anon_sym_as, - anon_sym_is, - anon_sym_with, - [26933] = 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(4118), 9, + ACTIONS(4884), 1, + anon_sym_QMARK, + ACTIONS(6376), 1, + anon_sym_DOT, + STATE(4060), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -554657,154 +549013,49 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(3656), 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(3961), 10, anon_sym_LT, anon_sym_GT, - anon_sym_QMARK, - anon_sym_STAR, - anon_sym_DOT, - anon_sym_EQ_GT, - anon_sym_DASH_GT, - ACTIONS(3654), 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, - [27023] = 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(4755), 1, - anon_sym_DASH_GT, - ACTIONS(4804), 1, - anon_sym_LPAREN, - ACTIONS(4808), 1, - anon_sym_DOT, - ACTIONS(4839), 1, anon_sym_BANG, - ACTIONS(5573), 1, - anon_sym_LBRACK, - ACTIONS(6327), 1, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_SLASH, - ACTIONS(6329), 1, - anon_sym_CARET, - ACTIONS(6331), 1, anon_sym_PIPE, - ACTIONS(6333), 1, anon_sym_AMP, - ACTIONS(6337), 1, - anon_sym_GT_GT, - ACTIONS(6343), 1, - anon_sym_switch, - ACTIONS(6345), 1, - anon_sym_DOT_DOT, - ACTIONS(6353), 1, - anon_sym_as, - ACTIONS(6355), 1, - anon_sym_is, - ACTIONS(6357), 1, - anon_sym_with, - STATE(2485), 1, - sym_bracketed_argument_list, - STATE(3035), 1, - sym_argument_list, - ACTIONS(4841), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5664), 2, - anon_sym_QMARK, - anon_sym_or, - ACTIONS(6319), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(6323), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(6325), 2, - anon_sym_STAR, + anon_sym_GT_GT, + anon_sym_or, + ACTIONS(3963), 30, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_where, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_PERCENT, - ACTIONS(6335), 2, + anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(6339), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6341), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - STATE(4119), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - ACTIONS(5660), 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, anon_sym_from, + anon_sym_into, anon_sym_join, anon_sym_let, anon_sym_orderby, anon_sym_group, anon_sym_select, - [27161] = 38, + anon_sym_as, + anon_sym_is, + anon_sym_DASH_GT, + anon_sym_with, + [21355] = 37, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -554825,67 +549076,65 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4755), 1, - anon_sym_DASH_GT, - ACTIONS(4804), 1, + ACTIONS(4753), 1, anon_sym_LPAREN, - ACTIONS(4808), 1, + ACTIONS(4792), 1, anon_sym_DOT, - ACTIONS(4839), 1, + ACTIONS(4794), 1, + anon_sym_DASH_GT, + ACTIONS(4823), 1, anon_sym_BANG, - ACTIONS(5573), 1, + ACTIONS(5549), 1, anon_sym_LBRACK, - ACTIONS(6327), 1, + ACTIONS(6339), 1, anon_sym_SLASH, - ACTIONS(6329), 1, + ACTIONS(6341), 1, anon_sym_CARET, - ACTIONS(6331), 1, + ACTIONS(6343), 1, anon_sym_PIPE, - ACTIONS(6333), 1, + ACTIONS(6345), 1, anon_sym_AMP, - ACTIONS(6337), 1, + ACTIONS(6349), 1, anon_sym_GT_GT, - ACTIONS(6343), 1, + ACTIONS(6355), 1, anon_sym_switch, - ACTIONS(6345), 1, + ACTIONS(6357), 1, anon_sym_DOT_DOT, - ACTIONS(6347), 1, - anon_sym_AMP_AMP, - ACTIONS(6353), 1, + ACTIONS(6365), 1, anon_sym_as, - ACTIONS(6355), 1, + ACTIONS(6367), 1, anon_sym_is, - ACTIONS(6357), 1, + ACTIONS(6369), 1, anon_sym_with, - STATE(2485), 1, + STATE(2467), 1, sym_bracketed_argument_list, - STATE(3035), 1, + STATE(2958), 1, sym_argument_list, - ACTIONS(4841), 2, + ACTIONS(4825), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5664), 2, + ACTIONS(5739), 2, anon_sym_QMARK, anon_sym_or, - ACTIONS(6319), 2, + ACTIONS(6331), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(6323), 2, + ACTIONS(6335), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6325), 2, + ACTIONS(6337), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(6335), 2, + ACTIONS(6347), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(6339), 2, + ACTIONS(6351), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6341), 2, + ACTIONS(6353), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - STATE(4120), 9, + STATE(4061), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -554895,9 +549144,10 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5660), 10, + ACTIONS(5737), 11, anon_sym_where, anon_sym_and, + anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_QMARK_QMARK, anon_sym_from, @@ -554906,7 +549156,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_orderby, anon_sym_group, anon_sym_select, - [27301] = 40, + [21493] = 26, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -554927,80 +549177,44 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4755), 1, - anon_sym_DASH_GT, - ACTIONS(4804), 1, + ACTIONS(4753), 1, anon_sym_LPAREN, - ACTIONS(4808), 1, + ACTIONS(4792), 1, anon_sym_DOT, - ACTIONS(4839), 1, - anon_sym_BANG, - ACTIONS(5573), 1, + ACTIONS(4794), 1, + anon_sym_DASH_GT, + ACTIONS(4819), 1, anon_sym_LBRACK, - ACTIONS(6327), 1, - anon_sym_SLASH, - ACTIONS(6329), 1, - anon_sym_CARET, - ACTIONS(6331), 1, - anon_sym_PIPE, - ACTIONS(6333), 1, - anon_sym_AMP, - ACTIONS(6337), 1, - anon_sym_GT_GT, - ACTIONS(6343), 1, + ACTIONS(4823), 1, + anon_sym_BANG, + ACTIONS(6264), 1, anon_sym_switch, - ACTIONS(6345), 1, - anon_sym_DOT_DOT, - ACTIONS(6347), 1, - anon_sym_AMP_AMP, - ACTIONS(6349), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6351), 1, - anon_sym_QMARK_QMARK, - ACTIONS(6353), 1, - anon_sym_as, - ACTIONS(6355), 1, - anon_sym_is, - ACTIONS(6357), 1, + ACTIONS(6278), 1, anon_sym_with, - STATE(2485), 1, + ACTIONS(6303), 1, + anon_sym_SLASH, + ACTIONS(6319), 1, + anon_sym_DOT_DOT, + STATE(2419), 1, sym_bracketed_argument_list, - STATE(3035), 1, + STATE(2958), 1, sym_argument_list, - ACTIONS(4841), 2, + ACTIONS(4825), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5664), 2, - anon_sym_QMARK, - anon_sym_or, - ACTIONS(6319), 2, + ACTIONS(6301), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(5739), 8, anon_sym_LT, anon_sym_GT, - ACTIONS(6323), 2, + anon_sym_QMARK, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6325), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(6335), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - ACTIONS(6339), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(6341), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(5660), 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(4121), 9, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT_GT, + STATE(4062), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -555010,7 +549224,29 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [27445] = 15, + ACTIONS(5737), 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, + [21609] = 22, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -555031,11 +549267,26 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(6401), 1, - anon_sym_into, - STATE(4113), 1, - aux_sym__query_body_repeat2, - STATE(4122), 9, + ACTIONS(4753), 1, + anon_sym_LPAREN, + ACTIONS(4792), 1, + anon_sym_DOT, + ACTIONS(4794), 1, + anon_sym_DASH_GT, + ACTIONS(4823), 1, + anon_sym_BANG, + ACTIONS(5549), 1, + anon_sym_LBRACK, + ACTIONS(6357), 1, + anon_sym_DOT_DOT, + STATE(2467), 1, + sym_bracketed_argument_list, + STATE(2958), 1, + sym_argument_list, + ACTIONS(4825), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(4063), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -555045,25 +549296,19 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(6001), 12, + ACTIONS(5743), 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, - anon_sym_DOT, anon_sym_or, - ACTIONS(5999), 30, - anon_sym_LBRACK, - anon_sym_LPAREN, + ACTIONS(5741), 24, anon_sym_where, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, anon_sym_STAR, anon_sym_PERCENT, anon_sym_CARET, @@ -555074,7 +549319,6 @@ 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, @@ -555087,9 +549331,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_select, anon_sym_as, anon_sym_is, - anon_sym_DASH_GT, anon_sym_with, - [27539] = 21, + [21717] = 33, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -555110,24 +549353,58 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4755), 1, - anon_sym_DASH_GT, - ACTIONS(4804), 1, + ACTIONS(4753), 1, anon_sym_LPAREN, - ACTIONS(4808), 1, + ACTIONS(4792), 1, anon_sym_DOT, - ACTIONS(4839), 1, + ACTIONS(4794), 1, + anon_sym_DASH_GT, + ACTIONS(4823), 1, anon_sym_BANG, - ACTIONS(5573), 1, + ACTIONS(5549), 1, anon_sym_LBRACK, - STATE(2485), 1, + ACTIONS(6339), 1, + anon_sym_SLASH, + ACTIONS(6349), 1, + anon_sym_GT_GT, + ACTIONS(6355), 1, + anon_sym_switch, + ACTIONS(6357), 1, + anon_sym_DOT_DOT, + ACTIONS(6365), 1, + anon_sym_as, + ACTIONS(6367), 1, + anon_sym_is, + ACTIONS(6369), 1, + anon_sym_with, + STATE(2467), 1, sym_bracketed_argument_list, - STATE(3035), 1, + STATE(2958), 1, sym_argument_list, - ACTIONS(4841), 2, + ACTIONS(4825), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(4123), 9, + ACTIONS(6331), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(6335), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6337), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(6347), 2, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + ACTIONS(6353), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(5739), 4, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_or, + STATE(4064), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -555137,30 +549414,11 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(4856), 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(4854), 25, + ACTIONS(5737), 14, 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_DOT_DOT, anon_sym_and, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -555171,10 +549429,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, - [27645] = 24, + [21847] = 35, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -555195,74 +549450,85 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4755), 1, - anon_sym_DASH_GT, - ACTIONS(4804), 1, + ACTIONS(4753), 1, anon_sym_LPAREN, - ACTIONS(4808), 1, + ACTIONS(4792), 1, anon_sym_DOT, - ACTIONS(4839), 1, - anon_sym_BANG, - ACTIONS(5573), 1, + ACTIONS(4794), 1, + anon_sym_DASH_GT, + ACTIONS(4819), 1, anon_sym_LBRACK, - ACTIONS(6343), 1, + ACTIONS(4823), 1, + anon_sym_BANG, + ACTIONS(6264), 1, anon_sym_switch, - ACTIONS(6345), 1, - anon_sym_DOT_DOT, - ACTIONS(6357), 1, + ACTIONS(6278), 1, anon_sym_with, - STATE(2485), 1, + ACTIONS(6303), 1, + anon_sym_SLASH, + ACTIONS(6309), 1, + anon_sym_AMP, + ACTIONS(6313), 1, + anon_sym_GT_GT, + ACTIONS(6319), 1, + anon_sym_DOT_DOT, + ACTIONS(6327), 1, + anon_sym_as, + ACTIONS(6329), 1, + anon_sym_is, + STATE(2419), 1, sym_bracketed_argument_list, - STATE(3035), 1, + STATE(2958), 1, sym_argument_list, - ACTIONS(4841), 2, + ACTIONS(4825), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(4124), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - ACTIONS(5664), 10, + ACTIONS(5739), 2, + anon_sym_QMARK, + anon_sym_PIPE, + ACTIONS(6295), 2, anon_sym_LT, anon_sym_GT, - anon_sym_QMARK, + ACTIONS(6299), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT_GT, - anon_sym_or, - ACTIONS(5660), 22, - anon_sym_where, + ACTIONS(6301), 2, anon_sym_STAR, anon_sym_PERCENT, - anon_sym_CARET, + ACTIONS(6311), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, + ACTIONS(6315), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + ACTIONS(6317), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - anon_sym_and, + 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(5737), 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, - [27757] = 40, + anon_sym_into, + aux_sym_preproc_if_token3, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + [21981] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -555283,79 +549549,80 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4755), 1, - anon_sym_DASH_GT, - ACTIONS(4804), 1, + ACTIONS(4753), 1, anon_sym_LPAREN, - ACTIONS(4808), 1, + ACTIONS(4792), 1, anon_sym_DOT, - ACTIONS(4835), 1, + ACTIONS(4794), 1, + anon_sym_DASH_GT, + ACTIONS(4819), 1, anon_sym_LBRACK, - ACTIONS(4839), 1, + ACTIONS(4823), 1, anon_sym_BANG, - ACTIONS(6293), 1, + ACTIONS(6264), 1, anon_sym_switch, - ACTIONS(6303), 1, - anon_sym_as, - ACTIONS(6307), 1, + ACTIONS(6278), 1, anon_sym_with, - ACTIONS(6408), 1, + ACTIONS(6297), 1, anon_sym_QMARK, - ACTIONS(6414), 1, + ACTIONS(6303), 1, anon_sym_SLASH, - ACTIONS(6416), 1, + ACTIONS(6305), 1, anon_sym_CARET, - ACTIONS(6418), 1, + ACTIONS(6307), 1, anon_sym_PIPE, - ACTIONS(6420), 1, + ACTIONS(6309), 1, anon_sym_AMP, - ACTIONS(6424), 1, + ACTIONS(6313), 1, anon_sym_GT_GT, - ACTIONS(6430), 1, + ACTIONS(6319), 1, anon_sym_DOT_DOT, - ACTIONS(6432), 1, + ACTIONS(6321), 1, anon_sym_AMP_AMP, - ACTIONS(6434), 1, + ACTIONS(6323), 1, anon_sym_PIPE_PIPE, - ACTIONS(6436), 1, + ACTIONS(6325), 1, anon_sym_QMARK_QMARK, - ACTIONS(6438), 1, + ACTIONS(6327), 1, + anon_sym_as, + ACTIONS(6329), 1, anon_sym_is, - STATE(2433), 1, + STATE(2419), 1, sym_bracketed_argument_list, - STATE(3035), 1, + STATE(2958), 1, sym_argument_list, - ACTIONS(4841), 2, + ACTIONS(4825), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6406), 2, + ACTIONS(6295), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(6410), 2, + ACTIONS(6299), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6412), 2, + ACTIONS(6301), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(6422), 2, + ACTIONS(6311), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(6426), 2, + ACTIONS(6315), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6428), 2, + ACTIONS(6317), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5882), 8, - anon_sym_where, - anon_sym_from, + ACTIONS(5801), 9, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_into, - anon_sym_join, - anon_sym_let, - anon_sym_orderby, - anon_sym_group, - anon_sym_select, - STATE(4125), 9, + aux_sym_preproc_if_token3, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + STATE(4066), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -555365,7 +549632,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [27900] = 13, + [22125] = 21, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -555386,7 +549653,24 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - STATE(4126), 9, + ACTIONS(4753), 1, + anon_sym_LPAREN, + ACTIONS(4792), 1, + anon_sym_DOT, + ACTIONS(4794), 1, + anon_sym_DASH_GT, + ACTIONS(4823), 1, + anon_sym_BANG, + ACTIONS(5549), 1, + anon_sym_LBRACK, + STATE(2467), 1, + sym_bracketed_argument_list, + STATE(2958), 1, + sym_argument_list, + ACTIONS(4825), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(4067), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -555396,25 +549680,19 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5409), 12, + ACTIONS(4844), 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, - anon_sym_DOT, anon_sym_or, - ACTIONS(5407), 31, - anon_sym_LBRACK, - anon_sym_LPAREN, + ACTIONS(4842), 25, anon_sym_where, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, anon_sym_STAR, anon_sym_PERCENT, anon_sym_CARET, @@ -555431,7 +549709,6 @@ 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, @@ -555439,9 +549716,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_select, anon_sym_as, anon_sym_is, - anon_sym_DASH_GT, anon_sym_with, - [27989] = 15, + [22231] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -555462,11 +549738,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(6440), 1, - anon_sym_into, - STATE(4170), 1, - aux_sym__query_body_repeat2, - STATE(4127), 9, + STATE(4068), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -555476,50 +549748,53 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(6005), 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(6003), 30, + ACTIONS(3702), 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_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_DOT, + anon_sym_EQ_GT, anon_sym_DASH_GT, - anon_sym_with, - aux_sym_preproc_if_token3, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - [28082] = 15, + ACTIONS(3691), 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, + [22321] = 36, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -555540,64 +549815,86 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(6440), 1, - anon_sym_into, - STATE(4176), 1, - aux_sym__query_body_repeat2, - 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(6005), 11, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, + ACTIONS(4753), 1, + anon_sym_LPAREN, + ACTIONS(4792), 1, + anon_sym_DOT, + ACTIONS(4794), 1, + anon_sym_DASH_GT, + ACTIONS(4819), 1, + anon_sym_LBRACK, + ACTIONS(4823), 1, anon_sym_BANG, - anon_sym_PLUS, - anon_sym_DASH, + ACTIONS(6264), 1, + anon_sym_switch, + ACTIONS(6278), 1, + anon_sym_with, + ACTIONS(6303), 1, anon_sym_SLASH, - anon_sym_PIPE, + ACTIONS(6305), 1, + anon_sym_CARET, + ACTIONS(6309), 1, anon_sym_AMP, + ACTIONS(6313), 1, anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(6003), 30, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_RBRACE, + ACTIONS(6319), 1, + anon_sym_DOT_DOT, + ACTIONS(6327), 1, + anon_sym_as, + ACTIONS(6329), 1, + anon_sym_is, + STATE(2419), 1, + sym_bracketed_argument_list, + STATE(2958), 1, + sym_argument_list, + ACTIONS(4825), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + ACTIONS(5739), 2, + anon_sym_QMARK, + anon_sym_PIPE, + ACTIONS(6295), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(6299), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6301), 2, anon_sym_STAR, anon_sym_PERCENT, - anon_sym_CARET, + ACTIONS(6311), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, + ACTIONS(6315), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + ACTIONS(6317), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - anon_sym_switch, - anon_sym_DOT_DOT, + STATE(4069), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + ACTIONS(5737), 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_as, - anon_sym_is, - anon_sym_DASH_GT, - anon_sym_with, + anon_sym_into, aux_sym_preproc_if_token3, aux_sym_preproc_else_token1, aux_sym_preproc_elif_token1, - [28175] = 13, + [22457] = 41, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -555618,62 +549915,91 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - 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(5417), 12, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, + ACTIONS(4753), 1, + anon_sym_LPAREN, + ACTIONS(4792), 1, + anon_sym_DOT, + ACTIONS(4794), 1, + anon_sym_DASH_GT, + ACTIONS(4823), 1, anon_sym_BANG, - anon_sym_PLUS, - anon_sym_DASH, + ACTIONS(5549), 1, + anon_sym_LBRACK, + ACTIONS(5851), 1, + anon_sym_or, + ACTIONS(6333), 1, + anon_sym_QMARK, + ACTIONS(6339), 1, anon_sym_SLASH, + ACTIONS(6341), 1, + anon_sym_CARET, + ACTIONS(6343), 1, anon_sym_PIPE, + ACTIONS(6345), 1, anon_sym_AMP, + ACTIONS(6349), 1, anon_sym_GT_GT, - anon_sym_DOT, - anon_sym_or, - ACTIONS(5415), 31, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_where, + ACTIONS(6355), 1, + anon_sym_switch, + ACTIONS(6357), 1, + anon_sym_DOT_DOT, + ACTIONS(6359), 1, + anon_sym_AMP_AMP, + ACTIONS(6361), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6363), 1, + anon_sym_QMARK_QMARK, + ACTIONS(6365), 1, + anon_sym_as, + ACTIONS(6367), 1, + anon_sym_is, + ACTIONS(6369), 1, + anon_sym_with, + STATE(2467), 1, + sym_bracketed_argument_list, + STATE(2958), 1, + sym_argument_list, + ACTIONS(4825), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + ACTIONS(6331), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(6335), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6337), 2, anon_sym_STAR, anon_sym_PERCENT, - anon_sym_CARET, + ACTIONS(6347), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, + ACTIONS(6351), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + ACTIONS(6353), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - anon_sym_switch, - anon_sym_DOT_DOT, + ACTIONS(5849), 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, - [28264] = 13, + STATE(4070), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + [22603] = 22, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -555694,35 +550020,51 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - STATE(4130), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - ACTIONS(5447), 12, + ACTIONS(4753), 1, + anon_sym_LPAREN, + ACTIONS(4792), 1, + anon_sym_DOT, + ACTIONS(4794), 1, + anon_sym_DASH_GT, + ACTIONS(4819), 1, + anon_sym_LBRACK, + ACTIONS(4823), 1, + anon_sym_BANG, + ACTIONS(6319), 1, + anon_sym_DOT_DOT, + STATE(2419), 1, + sym_bracketed_argument_list, + STATE(2958), 1, + sym_argument_list, + ACTIONS(4825), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1161), 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, - anon_sym_or, - ACTIONS(5445), 31, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_where, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, + STATE(4071), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + ACTIONS(1147), 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, @@ -555733,23 +550075,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_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, - [28353] = 13, + aux_sym_preproc_if_token3, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + [22711] = 38, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -555770,62 +550106,88 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - 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, - ACTIONS(5389), 12, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, + ACTIONS(4753), 1, + anon_sym_LPAREN, + ACTIONS(4792), 1, + anon_sym_DOT, + ACTIONS(4794), 1, + anon_sym_DASH_GT, + ACTIONS(4823), 1, anon_sym_BANG, - anon_sym_PLUS, - anon_sym_DASH, + ACTIONS(5549), 1, + anon_sym_LBRACK, + ACTIONS(6339), 1, anon_sym_SLASH, + ACTIONS(6341), 1, + anon_sym_CARET, + ACTIONS(6343), 1, anon_sym_PIPE, + ACTIONS(6345), 1, anon_sym_AMP, + ACTIONS(6349), 1, anon_sym_GT_GT, - anon_sym_DOT, - anon_sym_or, - ACTIONS(5387), 31, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_where, + ACTIONS(6355), 1, + anon_sym_switch, + ACTIONS(6357), 1, + anon_sym_DOT_DOT, + ACTIONS(6359), 1, + anon_sym_AMP_AMP, + ACTIONS(6365), 1, + anon_sym_as, + ACTIONS(6367), 1, + anon_sym_is, + ACTIONS(6369), 1, + anon_sym_with, + STATE(2467), 1, + sym_bracketed_argument_list, + STATE(2958), 1, + sym_argument_list, + ACTIONS(4825), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + ACTIONS(5739), 2, + anon_sym_QMARK, + anon_sym_or, + ACTIONS(6331), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(6335), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6337), 2, anon_sym_STAR, anon_sym_PERCENT, - anon_sym_CARET, + ACTIONS(6347), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, + ACTIONS(6351), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + ACTIONS(6353), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - anon_sym_switch, - anon_sym_DOT_DOT, + STATE(4072), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + ACTIONS(5737), 10, + 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, - [28442] = 13, + [22851] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -555846,7 +550208,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - STATE(4132), 9, + STATE(4073), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -555856,52 +550218,158 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5375), 12, + ACTIONS(3640), 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(3638), 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, + [22941] = 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(4753), 1, + anon_sym_LPAREN, + ACTIONS(4792), 1, + anon_sym_DOT, + ACTIONS(4794), 1, + anon_sym_DASH_GT, + ACTIONS(4823), 1, anon_sym_BANG, - anon_sym_PLUS, - anon_sym_DASH, + ACTIONS(4998), 1, + anon_sym_or, + ACTIONS(5549), 1, + anon_sym_LBRACK, + ACTIONS(6333), 1, + anon_sym_QMARK, + ACTIONS(6339), 1, anon_sym_SLASH, + ACTIONS(6341), 1, + anon_sym_CARET, + ACTIONS(6343), 1, anon_sym_PIPE, + ACTIONS(6345), 1, anon_sym_AMP, + ACTIONS(6349), 1, anon_sym_GT_GT, - anon_sym_DOT, - anon_sym_or, - ACTIONS(5373), 31, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_where, + ACTIONS(6355), 1, + anon_sym_switch, + ACTIONS(6357), 1, + anon_sym_DOT_DOT, + ACTIONS(6359), 1, + anon_sym_AMP_AMP, + ACTIONS(6361), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6363), 1, + anon_sym_QMARK_QMARK, + ACTIONS(6365), 1, + anon_sym_as, + ACTIONS(6367), 1, + anon_sym_is, + ACTIONS(6369), 1, + anon_sym_with, + STATE(2467), 1, + sym_bracketed_argument_list, + STATE(2958), 1, + sym_argument_list, + ACTIONS(4825), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + ACTIONS(6331), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(6335), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6337), 2, anon_sym_STAR, anon_sym_PERCENT, - anon_sym_CARET, + ACTIONS(6347), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, + ACTIONS(6351), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + ACTIONS(6353), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - anon_sym_switch, - anon_sym_DOT_DOT, + ACTIONS(4996), 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, - [28531] = 13, + STATE(4074), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + [23087] = 24, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -555922,35 +550390,55 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - STATE(4133), 9, - sym_preproc_region, - sym_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, + ACTIONS(4753), 1, + anon_sym_LPAREN, + ACTIONS(4792), 1, + anon_sym_DOT, + ACTIONS(4794), 1, + anon_sym_DASH_GT, + ACTIONS(4819), 1, + anon_sym_LBRACK, + ACTIONS(4823), 1, + anon_sym_BANG, + ACTIONS(6264), 1, + anon_sym_switch, + ACTIONS(6278), 1, + anon_sym_with, + ACTIONS(6319), 1, + anon_sym_DOT_DOT, + STATE(2419), 1, + sym_bracketed_argument_list, + STATE(2958), 1, + sym_argument_list, + ACTIONS(4825), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5739), 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, - anon_sym_or, - ACTIONS(5460), 31, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_where, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, + STATE(4075), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + ACTIONS(5737), 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, @@ -555960,24 +550448,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_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, - [28620] = 22, + aux_sym_preproc_if_token3, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + [23199] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -555998,27 +550478,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(6103), 1, - anon_sym_ref, - STATE(2175), 1, - sym__reserved_identifier, - STATE(2181), 1, - sym_generic_name, - STATE(2317), 1, - sym_ref_type, - STATE(2340), 1, - sym__scoped_base_type, - STATE(4373), 1, - sym_identifier, - STATE(5302), 1, - sym__name, - STATE(4096), 3, - sym_alias_qualified_name, - sym__simple_name, - sym_qualified_name, - STATE(4134), 9, + STATE(4076), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -556028,28 +550488,39 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(3445), 10, + ACTIONS(4060), 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), 22, + anon_sym_EQ_GT, + anon_sym_DASH_GT, + ACTIONS(4058), 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, @@ -556062,7 +550533,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [28727] = 13, + sym__identifier_token, + [23289] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -556083,7 +550555,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - STATE(4135), 9, + ACTIONS(6376), 1, + anon_sym_DOT, + STATE(4077), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -556093,7 +550567,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5466), 12, + ACTIONS(3976), 11, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, @@ -556104,11 +550578,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(5464), 31, + ACTIONS(3978), 32, anon_sym_LBRACK, anon_sym_LPAREN, + anon_sym_LBRACE, anon_sym_where, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, @@ -556138,7 +550612,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, anon_sym_DASH_GT, anon_sym_with, - [28816] = 13, + [23381] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -556159,62 +550633,90 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - STATE(4136), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - ACTIONS(5356), 12, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, + ACTIONS(4753), 1, + anon_sym_LPAREN, + ACTIONS(4792), 1, + anon_sym_DOT, + ACTIONS(4794), 1, + anon_sym_DASH_GT, + ACTIONS(4819), 1, + anon_sym_LBRACK, + ACTIONS(4823), 1, anon_sym_BANG, - anon_sym_PLUS, - anon_sym_DASH, + ACTIONS(6264), 1, + anon_sym_switch, + ACTIONS(6278), 1, + anon_sym_with, + ACTIONS(6297), 1, + anon_sym_QMARK, + ACTIONS(6303), 1, anon_sym_SLASH, + ACTIONS(6305), 1, + anon_sym_CARET, + ACTIONS(6307), 1, anon_sym_PIPE, + ACTIONS(6309), 1, anon_sym_AMP, + ACTIONS(6313), 1, anon_sym_GT_GT, - anon_sym_DOT, - anon_sym_or, - ACTIONS(5354), 31, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_where, + ACTIONS(6319), 1, + anon_sym_DOT_DOT, + ACTIONS(6321), 1, + anon_sym_AMP_AMP, + ACTIONS(6323), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6325), 1, + anon_sym_QMARK_QMARK, + ACTIONS(6327), 1, + anon_sym_as, + ACTIONS(6329), 1, + anon_sym_is, + STATE(2419), 1, + sym_bracketed_argument_list, + STATE(2958), 1, + sym_argument_list, + ACTIONS(4825), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + ACTIONS(6295), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(6299), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6301), 2, anon_sym_STAR, anon_sym_PERCENT, - anon_sym_CARET, + ACTIONS(6311), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, + ACTIONS(6315), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + ACTIONS(6317), 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, + ACTIONS(5855), 9, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_RBRACE, 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, - [28905] = 13, + aux_sym_preproc_if_token3, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + STATE(4078), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + [23525] = 36, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -556235,62 +550737,86 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - STATE(4137), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - ACTIONS(5385), 12, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, + ACTIONS(4753), 1, + anon_sym_LPAREN, + ACTIONS(4792), 1, + anon_sym_DOT, + ACTIONS(4794), 1, + anon_sym_DASH_GT, + ACTIONS(4823), 1, anon_sym_BANG, - anon_sym_PLUS, - anon_sym_DASH, + ACTIONS(5549), 1, + anon_sym_LBRACK, + ACTIONS(6339), 1, anon_sym_SLASH, - anon_sym_PIPE, + ACTIONS(6341), 1, + anon_sym_CARET, + ACTIONS(6345), 1, anon_sym_AMP, + ACTIONS(6349), 1, anon_sym_GT_GT, - anon_sym_DOT, - anon_sym_or, - ACTIONS(5383), 31, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_where, + ACTIONS(6355), 1, + anon_sym_switch, + ACTIONS(6357), 1, + anon_sym_DOT_DOT, + ACTIONS(6365), 1, + anon_sym_as, + ACTIONS(6367), 1, + anon_sym_is, + ACTIONS(6369), 1, + anon_sym_with, + STATE(2467), 1, + sym_bracketed_argument_list, + STATE(2958), 1, + sym_argument_list, + ACTIONS(4825), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + ACTIONS(6331), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(6335), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6337), 2, anon_sym_STAR, anon_sym_PERCENT, - anon_sym_CARET, + ACTIONS(6347), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, + ACTIONS(6351), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + ACTIONS(6353), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - anon_sym_switch, - anon_sym_DOT_DOT, + ACTIONS(5739), 3, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_or, + STATE(4079), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + ACTIONS(5737), 11, + 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, - [28994] = 13, + [23661] = 34, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -556311,62 +550837,84 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - 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(5379), 12, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, + ACTIONS(4753), 1, + anon_sym_LPAREN, + ACTIONS(4792), 1, + anon_sym_DOT, + ACTIONS(4794), 1, + anon_sym_DASH_GT, + ACTIONS(4823), 1, anon_sym_BANG, - anon_sym_PLUS, - anon_sym_DASH, + ACTIONS(5549), 1, + anon_sym_LBRACK, + ACTIONS(6339), 1, anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, + ACTIONS(6349), 1, anon_sym_GT_GT, - anon_sym_DOT, - anon_sym_or, - ACTIONS(5377), 31, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_where, + ACTIONS(6355), 1, + anon_sym_switch, + ACTIONS(6357), 1, + anon_sym_DOT_DOT, + ACTIONS(6365), 1, + anon_sym_as, + ACTIONS(6367), 1, + anon_sym_is, + ACTIONS(6369), 1, + anon_sym_with, + STATE(2467), 1, + sym_bracketed_argument_list, + STATE(2958), 1, + sym_argument_list, + ACTIONS(4825), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + ACTIONS(6331), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(6335), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6337), 2, anon_sym_STAR, anon_sym_PERCENT, - anon_sym_CARET, + ACTIONS(6347), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, + ACTIONS(6351), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + ACTIONS(6353), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - anon_sym_switch, - anon_sym_DOT_DOT, + ACTIONS(5739), 4, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_or, + STATE(4080), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + ACTIONS(5737), 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_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, - [29083] = 13, + [23793] = 16, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -556387,7 +550935,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - STATE(4139), 9, + ACTIONS(3653), 1, + anon_sym_COLON_COLON, + ACTIONS(6230), 1, + anon_sym_LT, + STATE(4054), 1, + sym_type_argument_list, + STATE(4081), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -556397,52 +550951,50 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5439), 12, - anon_sym_LT, + ACTIONS(3640), 13, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, 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(5437), 31, - anon_sym_LBRACK, - anon_sym_LPAREN, + anon_sym_EQ_GT, + ACTIONS(3638), 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, - [29172] = 15, + sym__identifier_token, + [23889] = 27, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -556463,11 +551015,45 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(6440), 1, - anon_sym_into, - STATE(4127), 1, - aux_sym__query_body_repeat2, - STATE(4140), 9, + ACTIONS(4753), 1, + anon_sym_LPAREN, + ACTIONS(4792), 1, + anon_sym_DOT, + ACTIONS(4794), 1, + anon_sym_DASH_GT, + ACTIONS(4819), 1, + anon_sym_LBRACK, + ACTIONS(4823), 1, + anon_sym_BANG, + ACTIONS(6264), 1, + anon_sym_switch, + ACTIONS(6278), 1, + anon_sym_with, + ACTIONS(6303), 1, + anon_sym_SLASH, + ACTIONS(6319), 1, + anon_sym_DOT_DOT, + STATE(2419), 1, + sym_bracketed_argument_list, + STATE(2958), 1, + sym_argument_list, + ACTIONS(4825), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6299), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6301), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(5739), 6, + anon_sym_LT, + anon_sym_GT, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT_GT, + STATE(4082), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -556477,30 +551063,12 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(6001), 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(5999), 30, + ACTIONS(5737), 21, 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, @@ -556508,19 +551076,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, - anon_sym_DASH_GT, - anon_sym_with, aux_sym_preproc_if_token3, aux_sym_preproc_else_token1, aux_sym_preproc_elif_token1, - [29265] = 13, + [24007] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -556541,7 +551106,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - STATE(4141), 9, + ACTIONS(3651), 1, + anon_sym_EQ_GT, + STATE(4083), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -556551,7 +551118,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5344), 12, + ACTIONS(5406), 12, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, @@ -556564,7 +551131,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_or, - ACTIONS(5342), 31, + ACTIONS(3809), 31, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_where, @@ -556596,7 +551163,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, anon_sym_DASH_GT, anon_sym_with, - [29354] = 14, + [24099] = 33, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -556617,9 +551184,57 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(6442), 1, - anon_sym_and, - STATE(4142), 9, + ACTIONS(4753), 1, + anon_sym_LPAREN, + ACTIONS(4792), 1, + anon_sym_DOT, + ACTIONS(4794), 1, + anon_sym_DASH_GT, + ACTIONS(4819), 1, + anon_sym_LBRACK, + ACTIONS(4823), 1, + anon_sym_BANG, + ACTIONS(6264), 1, + anon_sym_switch, + ACTIONS(6278), 1, + anon_sym_with, + ACTIONS(6303), 1, + anon_sym_SLASH, + ACTIONS(6313), 1, + anon_sym_GT_GT, + ACTIONS(6319), 1, + anon_sym_DOT_DOT, + ACTIONS(6327), 1, + anon_sym_as, + ACTIONS(6329), 1, + anon_sym_is, + STATE(2419), 1, + sym_bracketed_argument_list, + STATE(2958), 1, + sym_argument_list, + ACTIONS(4825), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6295), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(6299), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6301), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(6311), 2, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + ACTIONS(6317), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(5739), 3, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_AMP, + STATE(4084), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -556629,51 +551244,23 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(6069), 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(6067), 30, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_where, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_STAR, - anon_sym_PERCENT, + ACTIONS(5737), 15, + 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_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, - anon_sym_DASH_GT, - anon_sym_with, - [29445] = 13, + aux_sym_preproc_if_token3, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + [24229] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -556694,7 +551281,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - STATE(4143), 9, + ACTIONS(6371), 1, + anon_sym_into, + STATE(4056), 1, + aux_sym__query_body_repeat2, + STATE(4085), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -556704,7 +551295,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5344), 12, + ACTIONS(5935), 12, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, @@ -556717,7 +551308,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_or, - ACTIONS(5342), 31, + ACTIONS(5933), 30, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_where, @@ -556739,7 +551330,6 @@ 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, @@ -556749,7 +551339,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, anon_sym_DASH_GT, anon_sym_with, - [29534] = 15, + [24323] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -556770,11 +551360,80 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(6442), 1, - anon_sym_and, - ACTIONS(6444), 1, - anon_sym_or, - STATE(4144), 9, + ACTIONS(4753), 1, + anon_sym_LPAREN, + ACTIONS(4792), 1, + anon_sym_DOT, + ACTIONS(4794), 1, + anon_sym_DASH_GT, + ACTIONS(4819), 1, + anon_sym_LBRACK, + ACTIONS(4823), 1, + anon_sym_BANG, + ACTIONS(6264), 1, + anon_sym_switch, + ACTIONS(6278), 1, + anon_sym_with, + ACTIONS(6297), 1, + anon_sym_QMARK, + ACTIONS(6303), 1, + anon_sym_SLASH, + ACTIONS(6305), 1, + anon_sym_CARET, + ACTIONS(6307), 1, + anon_sym_PIPE, + ACTIONS(6309), 1, + anon_sym_AMP, + ACTIONS(6313), 1, + anon_sym_GT_GT, + ACTIONS(6319), 1, + anon_sym_DOT_DOT, + ACTIONS(6321), 1, + anon_sym_AMP_AMP, + ACTIONS(6323), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6325), 1, + anon_sym_QMARK_QMARK, + ACTIONS(6327), 1, + anon_sym_as, + ACTIONS(6329), 1, + anon_sym_is, + STATE(2419), 1, + sym_bracketed_argument_list, + STATE(2958), 1, + sym_argument_list, + ACTIONS(4825), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6295), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(6299), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6301), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(6311), 2, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + ACTIONS(6315), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6317), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(5849), 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(4086), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -556784,40 +551443,92 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(6207), 11, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, + [24467] = 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(4753), 1, + anon_sym_LPAREN, + ACTIONS(4792), 1, + anon_sym_DOT, + ACTIONS(4794), 1, + anon_sym_DASH_GT, + ACTIONS(4823), 1, anon_sym_BANG, - anon_sym_PLUS, - anon_sym_DASH, + ACTIONS(5549), 1, + anon_sym_LBRACK, + ACTIONS(6339), 1, anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, + ACTIONS(6349), 1, anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(6205), 30, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_where, + ACTIONS(6355), 1, + anon_sym_switch, + ACTIONS(6357), 1, + anon_sym_DOT_DOT, + ACTIONS(6369), 1, + anon_sym_with, + STATE(2467), 1, + sym_bracketed_argument_list, + STATE(2958), 1, + sym_argument_list, + ACTIONS(4825), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + ACTIONS(6335), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6337), 2, anon_sym_STAR, anon_sym_PERCENT, - anon_sym_CARET, + ACTIONS(6347), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, + ACTIONS(5739), 6, + anon_sym_LT, + anon_sym_GT, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_or, + STATE(4087), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + ACTIONS(5737), 18, + anon_sym_where, + anon_sym_CARET, 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, @@ -556825,9 +551536,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, - [29627] = 40, + [24589] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -556848,79 +551557,80 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4755), 1, - anon_sym_DASH_GT, - ACTIONS(4804), 1, + ACTIONS(4753), 1, anon_sym_LPAREN, - ACTIONS(4808), 1, + ACTIONS(4792), 1, anon_sym_DOT, - ACTIONS(4835), 1, + ACTIONS(4794), 1, + anon_sym_DASH_GT, + ACTIONS(4819), 1, anon_sym_LBRACK, - ACTIONS(4839), 1, + ACTIONS(4823), 1, anon_sym_BANG, - ACTIONS(6293), 1, + ACTIONS(6264), 1, anon_sym_switch, - ACTIONS(6303), 1, - anon_sym_as, - ACTIONS(6307), 1, + ACTIONS(6278), 1, anon_sym_with, - ACTIONS(6408), 1, + ACTIONS(6297), 1, anon_sym_QMARK, - ACTIONS(6414), 1, + ACTIONS(6303), 1, anon_sym_SLASH, - ACTIONS(6416), 1, + ACTIONS(6305), 1, anon_sym_CARET, - ACTIONS(6418), 1, + ACTIONS(6307), 1, anon_sym_PIPE, - ACTIONS(6420), 1, + ACTIONS(6309), 1, anon_sym_AMP, - ACTIONS(6424), 1, + ACTIONS(6313), 1, anon_sym_GT_GT, - ACTIONS(6430), 1, + ACTIONS(6319), 1, anon_sym_DOT_DOT, - ACTIONS(6432), 1, + ACTIONS(6321), 1, anon_sym_AMP_AMP, - ACTIONS(6434), 1, + ACTIONS(6323), 1, anon_sym_PIPE_PIPE, - ACTIONS(6436), 1, + ACTIONS(6325), 1, anon_sym_QMARK_QMARK, - ACTIONS(6438), 1, + ACTIONS(6327), 1, + anon_sym_as, + ACTIONS(6329), 1, anon_sym_is, - STATE(2433), 1, + STATE(2419), 1, sym_bracketed_argument_list, - STATE(3035), 1, + STATE(2958), 1, sym_argument_list, - ACTIONS(4841), 2, + ACTIONS(4825), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6406), 2, + ACTIONS(6295), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(6410), 2, + ACTIONS(6299), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6412), 2, + ACTIONS(6301), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(6422), 2, + ACTIONS(6311), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(6426), 2, + ACTIONS(6315), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6428), 2, + ACTIONS(6317), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5864), 8, - anon_sym_where, - anon_sym_from, + ACTIONS(5709), 9, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_into, - anon_sym_join, - anon_sym_let, - anon_sym_orderby, - anon_sym_group, - anon_sym_select, - STATE(4145), 9, + aux_sym_preproc_if_token3, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + STATE(4088), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -556930,7 +551640,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [29770] = 40, + [24733] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -556951,79 +551661,80 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4755), 1, - anon_sym_DASH_GT, - ACTIONS(4804), 1, + ACTIONS(4753), 1, anon_sym_LPAREN, - ACTIONS(4808), 1, + ACTIONS(4792), 1, anon_sym_DOT, - ACTIONS(4835), 1, - anon_sym_LBRACK, - ACTIONS(4839), 1, + ACTIONS(4794), 1, + anon_sym_DASH_GT, + ACTIONS(4823), 1, anon_sym_BANG, - ACTIONS(6293), 1, - anon_sym_switch, - ACTIONS(6303), 1, - anon_sym_as, - ACTIONS(6307), 1, - anon_sym_with, - ACTIONS(6408), 1, - anon_sym_QMARK, - ACTIONS(6414), 1, + ACTIONS(5549), 1, + anon_sym_LBRACK, + ACTIONS(6339), 1, anon_sym_SLASH, - ACTIONS(6416), 1, + ACTIONS(6341), 1, anon_sym_CARET, - ACTIONS(6418), 1, + ACTIONS(6343), 1, anon_sym_PIPE, - ACTIONS(6420), 1, + ACTIONS(6345), 1, anon_sym_AMP, - ACTIONS(6424), 1, + ACTIONS(6349), 1, anon_sym_GT_GT, - ACTIONS(6430), 1, + ACTIONS(6355), 1, + anon_sym_switch, + ACTIONS(6357), 1, anon_sym_DOT_DOT, - ACTIONS(6432), 1, + ACTIONS(6359), 1, anon_sym_AMP_AMP, - ACTIONS(6434), 1, + ACTIONS(6361), 1, anon_sym_PIPE_PIPE, - ACTIONS(6436), 1, + ACTIONS(6363), 1, anon_sym_QMARK_QMARK, - ACTIONS(6438), 1, + ACTIONS(6365), 1, + anon_sym_as, + ACTIONS(6367), 1, anon_sym_is, - STATE(2433), 1, + ACTIONS(6369), 1, + anon_sym_with, + STATE(2467), 1, sym_bracketed_argument_list, - STATE(3035), 1, + STATE(2958), 1, sym_argument_list, - ACTIONS(4841), 2, + ACTIONS(4825), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6406), 2, + ACTIONS(5739), 2, + anon_sym_QMARK, + anon_sym_or, + ACTIONS(6331), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(6410), 2, + ACTIONS(6335), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6412), 2, + ACTIONS(6337), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(6422), 2, + ACTIONS(6347), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(6426), 2, + ACTIONS(6351), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6428), 2, + ACTIONS(6353), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5072), 8, + ACTIONS(5737), 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(4146), 9, + STATE(4089), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -557033,7 +551744,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [29913] = 13, + [24877] = 22, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -557054,7 +551765,26 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - STATE(4147), 9, + ACTIONS(4753), 1, + anon_sym_LPAREN, + ACTIONS(4792), 1, + anon_sym_DOT, + ACTIONS(4794), 1, + anon_sym_DASH_GT, + ACTIONS(4823), 1, + anon_sym_BANG, + ACTIONS(5549), 1, + anon_sym_LBRACK, + ACTIONS(6357), 1, + anon_sym_DOT_DOT, + STATE(2467), 1, + sym_bracketed_argument_list, + STATE(2958), 1, + sym_argument_list, + ACTIONS(4825), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(4090), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -557064,25 +551794,19 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5348), 12, + ACTIONS(1161), 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, - anon_sym_DOT, anon_sym_or, - ACTIONS(5346), 31, - anon_sym_LBRACK, - anon_sym_LPAREN, + ACTIONS(1147), 24, anon_sym_where, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, anon_sym_STAR, anon_sym_PERCENT, anon_sym_CARET, @@ -557093,13 +551817,11 @@ 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, @@ -557107,9 +551829,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_select, anon_sym_as, anon_sym_is, - anon_sym_DASH_GT, anon_sym_with, - [30002] = 15, + [24985] = 26, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -557130,19 +551851,45 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4279), 1, + ACTIONS(4753), 1, + anon_sym_LPAREN, + ACTIONS(4792), 1, + anon_sym_DOT, + ACTIONS(4794), 1, + anon_sym_DASH_GT, + ACTIONS(4823), 1, + anon_sym_BANG, + ACTIONS(5549), 1, + anon_sym_LBRACK, + ACTIONS(6339), 1, + anon_sym_SLASH, + ACTIONS(6355), 1, + anon_sym_switch, + ACTIONS(6357), 1, + anon_sym_DOT_DOT, + ACTIONS(6369), 1, + anon_sym_with, + STATE(2467), 1, + sym_bracketed_argument_list, + STATE(2958), 1, + sym_argument_list, + ACTIONS(4825), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6337), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(5739), 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, - ACTIONS(4271), 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(4148), 9, + STATE(4091), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -557152,25 +551899,8 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5400), 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(5397), 22, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_STAR, - anon_sym_PERCENT, + ACTIONS(5737), 20, + anon_sym_where, anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT_GT, @@ -557178,16 +551908,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_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, - [30095] = 13, + [25101] = 24, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -557208,7 +551941,30 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - STATE(4149), 9, + ACTIONS(4753), 1, + anon_sym_LPAREN, + ACTIONS(4792), 1, + anon_sym_DOT, + ACTIONS(4794), 1, + anon_sym_DASH_GT, + ACTIONS(4823), 1, + anon_sym_BANG, + ACTIONS(5549), 1, + anon_sym_LBRACK, + ACTIONS(6355), 1, + anon_sym_switch, + ACTIONS(6357), 1, + anon_sym_DOT_DOT, + ACTIONS(6369), 1, + anon_sym_with, + STATE(2467), 1, + sym_bracketed_argument_list, + STATE(2958), 1, + sym_argument_list, + ACTIONS(4825), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(4092), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -557218,25 +551974,19 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5421), 12, + ACTIONS(5739), 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, - anon_sym_DOT, anon_sym_or, - ACTIONS(5419), 31, - anon_sym_LBRACK, - anon_sym_LPAREN, + ACTIONS(5737), 22, anon_sym_where, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, anon_sym_STAR, anon_sym_PERCENT, anon_sym_CARET, @@ -557246,14 +551996,11 @@ 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_from, - anon_sym_into, anon_sym_join, anon_sym_let, anon_sym_orderby, @@ -557261,9 +552008,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, - [30184] = 13, + [25213] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -557284,7 +552029,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - STATE(4150), 9, + STATE(4093), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -557294,7 +552039,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(3687), 15, + ACTIONS(3665), 16, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_COLON, @@ -557310,7 +552055,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_DOT, anon_sym_EQ_GT, - ACTIONS(3685), 28, + anon_sym_DASH_GT, + ACTIONS(3663), 28, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -557339,7 +552085,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_select, sym__identifier_token, - [30273] = 26, + [25303] = 27, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -557360,205 +552106,46 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4755), 1, - anon_sym_DASH_GT, - ACTIONS(4804), 1, + ACTIONS(4753), 1, anon_sym_LPAREN, - ACTIONS(4808), 1, + ACTIONS(4792), 1, anon_sym_DOT, - ACTIONS(4835), 1, - anon_sym_LBRACK, - ACTIONS(4839), 1, + ACTIONS(4794), 1, + anon_sym_DASH_GT, + ACTIONS(4823), 1, anon_sym_BANG, - ACTIONS(6293), 1, - anon_sym_switch, - ACTIONS(6307), 1, - anon_sym_with, - ACTIONS(6414), 1, + ACTIONS(5549), 1, + anon_sym_LBRACK, + ACTIONS(6339), 1, anon_sym_SLASH, - ACTIONS(6430), 1, + ACTIONS(6355), 1, + anon_sym_switch, + ACTIONS(6357), 1, anon_sym_DOT_DOT, - STATE(2433), 1, + ACTIONS(6369), 1, + anon_sym_with, + STATE(2467), 1, sym_bracketed_argument_list, - STATE(3035), 1, + STATE(2958), 1, sym_argument_list, - ACTIONS(4841), 2, + ACTIONS(4825), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6412), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(5664), 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(4151), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - ACTIONS(5660), 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_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, - [30388] = 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(4152), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - ACTIONS(5352), 12, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, + ACTIONS(6335), 2, 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(5350), 31, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_where, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, + ACTIONS(6337), 2, 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, - [30477] = 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(4755), 1, - anon_sym_DASH_GT, - ACTIONS(4804), 1, - anon_sym_LPAREN, - ACTIONS(4808), 1, - anon_sym_DOT, - ACTIONS(4835), 1, - anon_sym_LBRACK, - ACTIONS(4839), 1, - anon_sym_BANG, - ACTIONS(6293), 1, - anon_sym_switch, - ACTIONS(6307), 1, - anon_sym_with, - ACTIONS(6430), 1, - anon_sym_DOT_DOT, - STATE(2433), 1, - sym_bracketed_argument_list, - STATE(3035), 1, - sym_argument_list, - ACTIONS(4841), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5664), 9, + ACTIONS(5739), 7, 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(4153), 9, + anon_sym_or, + STATE(4094), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -557568,10 +552155,8 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5660), 22, + ACTIONS(5737), 20, anon_sym_where, - anon_sym_STAR, - anon_sym_PERCENT, anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT_GT, @@ -557579,11 +552164,11 @@ 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_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, @@ -557591,7 +552176,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_select, anon_sym_as, anon_sym_is, - [30588] = 35, + [25421] = 21, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -557612,161 +552197,24 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4755), 1, - anon_sym_DASH_GT, - ACTIONS(4804), 1, + ACTIONS(4753), 1, anon_sym_LPAREN, - ACTIONS(4808), 1, + ACTIONS(4792), 1, anon_sym_DOT, - ACTIONS(4835), 1, - anon_sym_LBRACK, - ACTIONS(4839), 1, - anon_sym_BANG, - ACTIONS(6293), 1, - anon_sym_switch, - ACTIONS(6303), 1, - anon_sym_as, - ACTIONS(6307), 1, - anon_sym_with, - ACTIONS(6414), 1, - anon_sym_SLASH, - ACTIONS(6420), 1, - anon_sym_AMP, - ACTIONS(6424), 1, - anon_sym_GT_GT, - ACTIONS(6430), 1, - anon_sym_DOT_DOT, - ACTIONS(6438), 1, - anon_sym_is, - STATE(2433), 1, - sym_bracketed_argument_list, - STATE(3035), 1, - sym_argument_list, - ACTIONS(4841), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5664), 2, - anon_sym_QMARK, - anon_sym_PIPE, - ACTIONS(6406), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(6410), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(6412), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(6422), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - ACTIONS(6426), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(6428), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - STATE(4154), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - ACTIONS(5660), 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, - [30721] = 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(4755), 1, + ACTIONS(4794), 1, anon_sym_DASH_GT, - ACTIONS(4804), 1, - anon_sym_LPAREN, - ACTIONS(4808), 1, - anon_sym_DOT, - ACTIONS(4835), 1, - anon_sym_LBRACK, - ACTIONS(4839), 1, + ACTIONS(4823), 1, anon_sym_BANG, - ACTIONS(6293), 1, - anon_sym_switch, - ACTIONS(6303), 1, - anon_sym_as, - ACTIONS(6307), 1, - anon_sym_with, - ACTIONS(6414), 1, - anon_sym_SLASH, - ACTIONS(6416), 1, - anon_sym_CARET, - ACTIONS(6420), 1, - anon_sym_AMP, - ACTIONS(6424), 1, - anon_sym_GT_GT, - ACTIONS(6430), 1, - anon_sym_DOT_DOT, - ACTIONS(6438), 1, - anon_sym_is, - STATE(2433), 1, + ACTIONS(5549), 1, + anon_sym_LBRACK, + STATE(2467), 1, sym_bracketed_argument_list, - STATE(3035), 1, + STATE(2958), 1, sym_argument_list, - ACTIONS(4841), 2, + ACTIONS(4825), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5664), 2, - anon_sym_QMARK, - anon_sym_PIPE, - ACTIONS(6406), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(6410), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(6412), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(6422), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - ACTIONS(6426), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(6428), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - STATE(4155), 9, + STATE(4095), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -557776,116 +552224,44 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5660), 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, - [30856] = 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(4755), 1, - anon_sym_DASH_GT, - ACTIONS(4804), 1, - anon_sym_LPAREN, - ACTIONS(4808), 1, - anon_sym_DOT, - ACTIONS(4835), 1, - anon_sym_LBRACK, - ACTIONS(4839), 1, - anon_sym_BANG, - ACTIONS(6293), 1, - anon_sym_switch, - ACTIONS(6303), 1, - anon_sym_as, - ACTIONS(6307), 1, - anon_sym_with, - ACTIONS(6414), 1, - anon_sym_SLASH, - ACTIONS(6424), 1, - anon_sym_GT_GT, - ACTIONS(6430), 1, - anon_sym_DOT_DOT, - ACTIONS(6438), 1, - anon_sym_is, - STATE(2433), 1, - sym_bracketed_argument_list, - STATE(3035), 1, - sym_argument_list, - ACTIONS(4841), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6406), 2, + ACTIONS(4821), 10, anon_sym_LT, anon_sym_GT, - ACTIONS(6410), 2, + anon_sym_QMARK, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6412), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(6422), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - ACTIONS(6426), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(6428), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(5664), 3, - anon_sym_QMARK, + anon_sym_SLASH, anon_sym_PIPE, anon_sym_AMP, - 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(5660), 12, + anon_sym_GT_GT, + anon_sym_or, + ACTIONS(4817), 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_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, - [30987] = 40, + anon_sym_as, + anon_sym_is, + anon_sym_with, + [25527] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -557906,79 +552282,80 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4755), 1, - anon_sym_DASH_GT, - ACTIONS(4804), 1, + ACTIONS(4753), 1, anon_sym_LPAREN, - ACTIONS(4808), 1, + ACTIONS(4792), 1, anon_sym_DOT, - ACTIONS(4835), 1, + ACTIONS(4794), 1, + anon_sym_DASH_GT, + ACTIONS(4819), 1, anon_sym_LBRACK, - ACTIONS(4839), 1, + ACTIONS(4823), 1, anon_sym_BANG, - ACTIONS(6293), 1, + ACTIONS(6264), 1, anon_sym_switch, - ACTIONS(6303), 1, - anon_sym_as, - ACTIONS(6307), 1, + ACTIONS(6278), 1, anon_sym_with, - ACTIONS(6408), 1, + ACTIONS(6297), 1, anon_sym_QMARK, - ACTIONS(6414), 1, + ACTIONS(6303), 1, anon_sym_SLASH, - ACTIONS(6416), 1, + ACTIONS(6305), 1, anon_sym_CARET, - ACTIONS(6418), 1, + ACTIONS(6307), 1, anon_sym_PIPE, - ACTIONS(6420), 1, + ACTIONS(6309), 1, anon_sym_AMP, - ACTIONS(6424), 1, + ACTIONS(6313), 1, anon_sym_GT_GT, - ACTIONS(6430), 1, + ACTIONS(6319), 1, anon_sym_DOT_DOT, - ACTIONS(6432), 1, + ACTIONS(6321), 1, anon_sym_AMP_AMP, - ACTIONS(6434), 1, + ACTIONS(6323), 1, anon_sym_PIPE_PIPE, - ACTIONS(6436), 1, + ACTIONS(6325), 1, anon_sym_QMARK_QMARK, - ACTIONS(6438), 1, + ACTIONS(6327), 1, + anon_sym_as, + ACTIONS(6329), 1, anon_sym_is, - STATE(2433), 1, + STATE(2419), 1, sym_bracketed_argument_list, - STATE(3035), 1, + STATE(2958), 1, sym_argument_list, - ACTIONS(4841), 2, + ACTIONS(4825), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6406), 2, + ACTIONS(6295), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(6410), 2, + ACTIONS(6299), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6412), 2, + ACTIONS(6301), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(6422), 2, + ACTIONS(6311), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(6426), 2, + ACTIONS(6315), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6428), 2, + ACTIONS(6317), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5745), 8, - anon_sym_where, - anon_sym_from, + ACTIONS(5733), 9, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_into, - anon_sym_join, - anon_sym_let, - anon_sym_orderby, - anon_sym_group, - anon_sym_select, - STATE(4157), 9, + aux_sym_preproc_if_token3, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + STATE(4096), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -557988,7 +552365,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [31130] = 24, + [25671] = 37, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -558009,41 +552386,64 @@ 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(3447), 1, - anon_sym_COLON, - ACTIONS(3603), 1, - anon_sym_where, - ACTIONS(6163), 1, - anon_sym_ref, - STATE(2175), 1, - sym__reserved_identifier, - STATE(2181), 1, - sym_generic_name, - STATE(2317), 1, - sym_ref_type, - STATE(2340), 1, - sym__scoped_base_type, - STATE(6318), 1, - sym_identifier, - STATE(6356), 1, - sym__name, - STATE(4096), 3, - sym_alias_qualified_name, - sym__simple_name, - sym_qualified_name, - ACTIONS(3445), 9, - anon_sym_LBRACK, - anon_sym_COMMA, + ACTIONS(4753), 1, anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_LT, + ACTIONS(4792), 1, + anon_sym_DOT, + ACTIONS(4794), 1, + anon_sym_DASH_GT, + ACTIONS(4819), 1, + anon_sym_LBRACK, + ACTIONS(4823), 1, + anon_sym_BANG, + ACTIONS(5739), 1, anon_sym_QMARK, + ACTIONS(6264), 1, + anon_sym_switch, + ACTIONS(6278), 1, + anon_sym_with, + ACTIONS(6303), 1, + anon_sym_SLASH, + ACTIONS(6305), 1, + anon_sym_CARET, + ACTIONS(6307), 1, + anon_sym_PIPE, + ACTIONS(6309), 1, + anon_sym_AMP, + ACTIONS(6313), 1, + anon_sym_GT_GT, + ACTIONS(6319), 1, + anon_sym_DOT_DOT, + ACTIONS(6327), 1, + anon_sym_as, + ACTIONS(6329), 1, + anon_sym_is, + STATE(2419), 1, + sym_bracketed_argument_list, + STATE(2958), 1, + sym_argument_list, + ACTIONS(4825), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6295), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(6299), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6301), 2, anon_sym_STAR, - anon_sym_DOT, - anon_sym_COLON_COLON, - STATE(4158), 9, + anon_sym_PERCENT, + ACTIONS(6311), 2, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + ACTIONS(6315), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6317), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + STATE(4097), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -558053,29 +552453,20 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - 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, + ACTIONS(5737), 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, - 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, - [31241] = 27, + aux_sym_preproc_if_token3, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + [25809] = 22, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -558096,45 +552487,36 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4755), 1, - anon_sym_DASH_GT, - ACTIONS(4804), 1, + ACTIONS(4753), 1, anon_sym_LPAREN, - ACTIONS(4808), 1, + ACTIONS(4792), 1, anon_sym_DOT, - ACTIONS(4835), 1, + ACTIONS(4794), 1, + anon_sym_DASH_GT, + ACTIONS(4819), 1, anon_sym_LBRACK, - ACTIONS(4839), 1, + ACTIONS(4823), 1, anon_sym_BANG, - ACTIONS(6293), 1, - anon_sym_switch, - ACTIONS(6307), 1, - anon_sym_with, - ACTIONS(6414), 1, - anon_sym_SLASH, - ACTIONS(6430), 1, + ACTIONS(6319), 1, anon_sym_DOT_DOT, - STATE(2433), 1, + STATE(2419), 1, sym_bracketed_argument_list, - STATE(3035), 1, + STATE(2958), 1, sym_argument_list, - ACTIONS(4841), 2, + ACTIONS(4825), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6410), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(6412), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(5664), 6, + ACTIONS(5743), 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(4159), 9, + STATE(4098), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -558144,8 +552526,14 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5660), 20, - anon_sym_where, + ACTIONS(5741), 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, @@ -558153,19 +552541,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_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, - [31358] = 33, + anon_sym_with, + aux_sym_preproc_if_token3, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + [25917] = 29, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -558186,57 +552573,49 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4755), 1, - anon_sym_DASH_GT, - ACTIONS(4804), 1, + ACTIONS(4753), 1, anon_sym_LPAREN, - ACTIONS(4808), 1, + ACTIONS(4792), 1, anon_sym_DOT, - ACTIONS(4835), 1, + ACTIONS(4794), 1, + anon_sym_DASH_GT, + ACTIONS(4819), 1, anon_sym_LBRACK, - ACTIONS(4839), 1, + ACTIONS(4823), 1, anon_sym_BANG, - ACTIONS(6293), 1, + ACTIONS(6264), 1, anon_sym_switch, - ACTIONS(6303), 1, - anon_sym_as, - ACTIONS(6307), 1, + ACTIONS(6278), 1, anon_sym_with, - ACTIONS(6414), 1, + ACTIONS(6303), 1, anon_sym_SLASH, - ACTIONS(6424), 1, + ACTIONS(6313), 1, anon_sym_GT_GT, - ACTIONS(6430), 1, + ACTIONS(6319), 1, anon_sym_DOT_DOT, - ACTIONS(6438), 1, - anon_sym_is, - STATE(2433), 1, + STATE(2419), 1, sym_bracketed_argument_list, - STATE(3035), 1, + STATE(2958), 1, sym_argument_list, - ACTIONS(4841), 2, + ACTIONS(4825), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6406), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(6410), 2, + ACTIONS(6299), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6412), 2, + ACTIONS(6301), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(6422), 2, + ACTIONS(6311), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(6428), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(5664), 3, + ACTIONS(5739), 5, + anon_sym_LT, + anon_sym_GT, anon_sym_QMARK, anon_sym_PIPE, anon_sym_AMP, - STATE(4160), 9, + STATE(4099), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -558246,22 +552625,27 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5660), 14, - anon_sym_where, + ACTIONS(5737), 19, + 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_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, - [31487] = 13, + anon_sym_as, + anon_sym_is, + aux_sym_preproc_if_token3, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + [26039] = 41, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -558282,138 +552666,91 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - STATE(4161), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - ACTIONS(5447), 12, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, + ACTIONS(4753), 1, + anon_sym_LPAREN, + ACTIONS(4792), 1, + anon_sym_DOT, + ACTIONS(4794), 1, + anon_sym_DASH_GT, + ACTIONS(4823), 1, anon_sym_BANG, - anon_sym_PLUS, - anon_sym_DASH, + ACTIONS(5549), 1, + anon_sym_LBRACK, + ACTIONS(5686), 1, + anon_sym_or, + ACTIONS(6333), 1, + anon_sym_QMARK, + ACTIONS(6339), 1, anon_sym_SLASH, + ACTIONS(6341), 1, + anon_sym_CARET, + ACTIONS(6343), 1, anon_sym_PIPE, + ACTIONS(6345), 1, anon_sym_AMP, + ACTIONS(6349), 1, anon_sym_GT_GT, - anon_sym_DOT, - anon_sym_or, - ACTIONS(5445), 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, - 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(6355), 1, anon_sym_switch, + ACTIONS(6357), 1, anon_sym_DOT_DOT, - anon_sym_and, + ACTIONS(6359), 1, anon_sym_AMP_AMP, + ACTIONS(6361), 1, anon_sym_PIPE_PIPE, + ACTIONS(6363), 1, 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, + ACTIONS(6365), 1, anon_sym_as, + ACTIONS(6367), 1, anon_sym_is, - anon_sym_DASH_GT, + ACTIONS(6369), 1, anon_sym_with, - [31576] = 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(4162), 9, - sym_preproc_region, - sym_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), 12, + STATE(2467), 1, + sym_bracketed_argument_list, + STATE(2958), 1, + sym_argument_list, + ACTIONS(4825), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6331), 2, anon_sym_LT, anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, + ACTIONS(6335), 2, 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(5433), 31, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_where, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, + ACTIONS(6337), 2, anon_sym_STAR, anon_sym_PERCENT, - anon_sym_CARET, + ACTIONS(6347), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, + ACTIONS(6351), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + ACTIONS(6353), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - anon_sym_switch, - anon_sym_DOT_DOT, + ACTIONS(5652), 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, - [31665] = 15, + STATE(4100), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + [26185] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -558434,11 +552771,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(6442), 1, + ACTIONS(6378), 1, anon_sym_and, - ACTIONS(6444), 1, - anon_sym_or, - STATE(4163), 9, + STATE(4101), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -558448,7 +552783,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5356), 11, + ACTIONS(6097), 11, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, @@ -558460,10 +552795,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT, - ACTIONS(5354), 30, + ACTIONS(6095), 32, + 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, @@ -558477,21 +552816,19 @@ 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_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, - [31758] = 40, + aux_sym_preproc_if_token3, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + [26277] = 41, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -558512,79 +552849,81 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4755), 1, - anon_sym_DASH_GT, - ACTIONS(4804), 1, + ACTIONS(4753), 1, anon_sym_LPAREN, - ACTIONS(4808), 1, + ACTIONS(4792), 1, anon_sym_DOT, - ACTIONS(4835), 1, - anon_sym_LBRACK, - ACTIONS(4839), 1, + ACTIONS(4794), 1, + anon_sym_DASH_GT, + ACTIONS(4823), 1, anon_sym_BANG, - ACTIONS(6293), 1, - anon_sym_switch, - ACTIONS(6303), 1, - anon_sym_as, - ACTIONS(6307), 1, - anon_sym_with, - ACTIONS(6408), 1, + ACTIONS(5549), 1, + anon_sym_LBRACK, + ACTIONS(5711), 1, + anon_sym_or, + ACTIONS(6333), 1, anon_sym_QMARK, - ACTIONS(6414), 1, + ACTIONS(6339), 1, anon_sym_SLASH, - ACTIONS(6416), 1, + ACTIONS(6341), 1, anon_sym_CARET, - ACTIONS(6418), 1, + ACTIONS(6343), 1, anon_sym_PIPE, - ACTIONS(6420), 1, + ACTIONS(6345), 1, anon_sym_AMP, - ACTIONS(6424), 1, + ACTIONS(6349), 1, anon_sym_GT_GT, - ACTIONS(6430), 1, + ACTIONS(6355), 1, + anon_sym_switch, + ACTIONS(6357), 1, anon_sym_DOT_DOT, - ACTIONS(6432), 1, + ACTIONS(6359), 1, anon_sym_AMP_AMP, - ACTIONS(6434), 1, + ACTIONS(6361), 1, anon_sym_PIPE_PIPE, - ACTIONS(6436), 1, + ACTIONS(6363), 1, anon_sym_QMARK_QMARK, - ACTIONS(6438), 1, + ACTIONS(6365), 1, + anon_sym_as, + ACTIONS(6367), 1, anon_sym_is, - STATE(2433), 1, + ACTIONS(6369), 1, + anon_sym_with, + STATE(2467), 1, sym_bracketed_argument_list, - STATE(3035), 1, + STATE(2958), 1, sym_argument_list, - ACTIONS(4841), 2, + ACTIONS(4825), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6406), 2, + ACTIONS(6331), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(6410), 2, + ACTIONS(6335), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6412), 2, + ACTIONS(6337), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(6422), 2, + ACTIONS(6347), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(6426), 2, + ACTIONS(6351), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6428), 2, + ACTIONS(6353), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(6446), 8, + ACTIONS(5709), 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(4164), 9, + STATE(4102), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -558594,7 +552933,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [31901] = 37, + [26423] = 38, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -558615,64 +552954,66 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4755), 1, - anon_sym_DASH_GT, - ACTIONS(4804), 1, + ACTIONS(4753), 1, anon_sym_LPAREN, - ACTIONS(4808), 1, + ACTIONS(4792), 1, anon_sym_DOT, - ACTIONS(4835), 1, + ACTIONS(4794), 1, + anon_sym_DASH_GT, + ACTIONS(4819), 1, anon_sym_LBRACK, - ACTIONS(4839), 1, + ACTIONS(4823), 1, anon_sym_BANG, - ACTIONS(5664), 1, + ACTIONS(5739), 1, anon_sym_QMARK, - ACTIONS(6293), 1, + ACTIONS(6264), 1, anon_sym_switch, - ACTIONS(6303), 1, - anon_sym_as, - ACTIONS(6307), 1, + ACTIONS(6278), 1, anon_sym_with, - ACTIONS(6414), 1, + ACTIONS(6303), 1, anon_sym_SLASH, - ACTIONS(6416), 1, + ACTIONS(6305), 1, anon_sym_CARET, - ACTIONS(6418), 1, + ACTIONS(6307), 1, anon_sym_PIPE, - ACTIONS(6420), 1, + ACTIONS(6309), 1, anon_sym_AMP, - ACTIONS(6424), 1, + ACTIONS(6313), 1, anon_sym_GT_GT, - ACTIONS(6430), 1, + ACTIONS(6319), 1, anon_sym_DOT_DOT, - ACTIONS(6438), 1, + ACTIONS(6321), 1, + anon_sym_AMP_AMP, + ACTIONS(6327), 1, + anon_sym_as, + ACTIONS(6329), 1, anon_sym_is, - STATE(2433), 1, + STATE(2419), 1, sym_bracketed_argument_list, - STATE(3035), 1, + STATE(2958), 1, sym_argument_list, - ACTIONS(4841), 2, + ACTIONS(4825), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6406), 2, + ACTIONS(6295), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(6410), 2, + ACTIONS(6299), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6412), 2, + ACTIONS(6301), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(6422), 2, + ACTIONS(6311), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(6426), 2, + ACTIONS(6315), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6428), 2, + ACTIONS(6317), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - STATE(4165), 9, + STATE(4103), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -558682,19 +553023,19 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5660), 11, - anon_sym_where, - anon_sym_AMP_AMP, + ACTIONS(5737), 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_into, - anon_sym_join, - anon_sym_let, - anon_sym_orderby, - anon_sym_group, - anon_sym_select, - [32038] = 40, + aux_sym_preproc_if_token3, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + [26563] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -558715,79 +553056,80 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4755), 1, - anon_sym_DASH_GT, - ACTIONS(4804), 1, + ACTIONS(4753), 1, anon_sym_LPAREN, - ACTIONS(4808), 1, + ACTIONS(4792), 1, anon_sym_DOT, - ACTIONS(4835), 1, + ACTIONS(4794), 1, + anon_sym_DASH_GT, + ACTIONS(4819), 1, anon_sym_LBRACK, - ACTIONS(4839), 1, + ACTIONS(4823), 1, anon_sym_BANG, - ACTIONS(6293), 1, + ACTIONS(6264), 1, anon_sym_switch, - ACTIONS(6303), 1, - anon_sym_as, - ACTIONS(6307), 1, + ACTIONS(6278), 1, anon_sym_with, - ACTIONS(6408), 1, + ACTIONS(6297), 1, anon_sym_QMARK, - ACTIONS(6414), 1, + ACTIONS(6303), 1, anon_sym_SLASH, - ACTIONS(6416), 1, + ACTIONS(6305), 1, anon_sym_CARET, - ACTIONS(6418), 1, + ACTIONS(6307), 1, anon_sym_PIPE, - ACTIONS(6420), 1, + ACTIONS(6309), 1, anon_sym_AMP, - ACTIONS(6424), 1, + ACTIONS(6313), 1, anon_sym_GT_GT, - ACTIONS(6430), 1, + ACTIONS(6319), 1, anon_sym_DOT_DOT, - ACTIONS(6432), 1, + ACTIONS(6321), 1, anon_sym_AMP_AMP, - ACTIONS(6434), 1, + ACTIONS(6323), 1, anon_sym_PIPE_PIPE, - ACTIONS(6436), 1, + ACTIONS(6325), 1, anon_sym_QMARK_QMARK, - ACTIONS(6438), 1, + ACTIONS(6327), 1, + anon_sym_as, + ACTIONS(6329), 1, anon_sym_is, - STATE(2433), 1, + STATE(2419), 1, sym_bracketed_argument_list, - STATE(3035), 1, + STATE(2958), 1, sym_argument_list, - ACTIONS(4841), 2, + ACTIONS(4825), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6406), 2, + ACTIONS(6295), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(6410), 2, + ACTIONS(6299), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6412), 2, + ACTIONS(6301), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(6422), 2, + ACTIONS(6311), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(6426), 2, + ACTIONS(6315), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6428), 2, + ACTIONS(6317), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5767), 8, - anon_sym_where, - anon_sym_from, + ACTIONS(4996), 9, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_into, - anon_sym_join, - anon_sym_let, - anon_sym_orderby, - anon_sym_group, - anon_sym_select, - STATE(4166), 9, + 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, @@ -558797,7 +553139,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [32181] = 22, + [26707] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -558818,71 +553160,90 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4755), 1, - anon_sym_DASH_GT, - ACTIONS(4804), 1, + ACTIONS(4753), 1, anon_sym_LPAREN, - ACTIONS(4808), 1, + ACTIONS(4792), 1, anon_sym_DOT, - ACTIONS(4835), 1, + ACTIONS(4794), 1, + anon_sym_DASH_GT, + ACTIONS(4819), 1, anon_sym_LBRACK, - ACTIONS(4839), 1, + ACTIONS(4823), 1, anon_sym_BANG, - ACTIONS(6430), 1, + ACTIONS(5739), 1, + anon_sym_QMARK, + ACTIONS(6264), 1, + anon_sym_switch, + ACTIONS(6278), 1, + anon_sym_with, + ACTIONS(6303), 1, + anon_sym_SLASH, + ACTIONS(6305), 1, + anon_sym_CARET, + ACTIONS(6307), 1, + anon_sym_PIPE, + ACTIONS(6309), 1, + anon_sym_AMP, + ACTIONS(6313), 1, + anon_sym_GT_GT, + ACTIONS(6319), 1, anon_sym_DOT_DOT, - STATE(2433), 1, + ACTIONS(6321), 1, + anon_sym_AMP_AMP, + ACTIONS(6323), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6325), 1, + anon_sym_QMARK_QMARK, + ACTIONS(6327), 1, + anon_sym_as, + ACTIONS(6329), 1, + anon_sym_is, + STATE(2419), 1, sym_bracketed_argument_list, - STATE(3035), 1, + STATE(2958), 1, sym_argument_list, - ACTIONS(4841), 2, + ACTIONS(4825), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5733), 9, + ACTIONS(6295), 2, anon_sym_LT, anon_sym_GT, - anon_sym_QMARK, + ACTIONS(6299), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT_GT, - STATE(4167), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - ACTIONS(5731), 24, - anon_sym_where, + ACTIONS(6301), 2, anon_sym_STAR, anon_sym_PERCENT, - anon_sym_CARET, + ACTIONS(6311), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, + ACTIONS(6315), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + ACTIONS(6317), 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_from, + ACTIONS(5737), 9, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_RBRACE, 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, - [32288] = 40, + aux_sym_preproc_if_token3, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + 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, + [26851] = 23, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -558903,79 +553264,29 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4755), 1, - anon_sym_DASH_GT, - ACTIONS(4804), 1, - anon_sym_LPAREN, - ACTIONS(4808), 1, - anon_sym_DOT, - ACTIONS(4835), 1, - anon_sym_LBRACK, - ACTIONS(4839), 1, - anon_sym_BANG, - ACTIONS(6293), 1, - anon_sym_switch, - ACTIONS(6303), 1, - anon_sym_as, - ACTIONS(6307), 1, - anon_sym_with, - ACTIONS(6408), 1, - anon_sym_QMARK, - ACTIONS(6414), 1, - anon_sym_SLASH, - ACTIONS(6416), 1, - anon_sym_CARET, - ACTIONS(6418), 1, - anon_sym_PIPE, - ACTIONS(6420), 1, - anon_sym_AMP, - ACTIONS(6424), 1, - anon_sym_GT_GT, - ACTIONS(6430), 1, - anon_sym_DOT_DOT, - ACTIONS(6432), 1, - anon_sym_AMP_AMP, - ACTIONS(6434), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6436), 1, - anon_sym_QMARK_QMARK, - ACTIONS(6438), 1, - anon_sym_is, - STATE(2433), 1, - sym_bracketed_argument_list, - STATE(3035), 1, - sym_argument_list, - ACTIONS(4841), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6406), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(6410), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(6412), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(6422), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - ACTIONS(6426), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(6428), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(5899), 8, + ACTIONS(25), 1, + sym__identifier_token, + ACTIONS(3587), 1, 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(4168), 9, + ACTIONS(5500), 1, + anon_sym_ref, + STATE(2168), 1, + sym__reserved_identifier, + STATE(2170), 1, + sym_generic_name, + STATE(2331), 1, + sym_ref_type, + STATE(2339), 1, + sym__scoped_base_type, + STATE(4370), 1, + sym_identifier, + STATE(5130), 1, + sym__name, + STATE(4068), 3, + sym_alias_qualified_name, + sym__simple_name, + sym_qualified_name, + STATE(4106), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -558985,7 +553296,41 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [32431] = 38, + ACTIONS(3429), 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, + [26961] = 35, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -559006,66 +553351,62 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4755), 1, - anon_sym_DASH_GT, - ACTIONS(4804), 1, + ACTIONS(4753), 1, anon_sym_LPAREN, - ACTIONS(4808), 1, + ACTIONS(4792), 1, anon_sym_DOT, - ACTIONS(4835), 1, - anon_sym_LBRACK, - ACTIONS(4839), 1, + ACTIONS(4794), 1, + anon_sym_DASH_GT, + ACTIONS(4823), 1, anon_sym_BANG, - ACTIONS(5664), 1, - anon_sym_QMARK, - ACTIONS(6293), 1, - anon_sym_switch, - ACTIONS(6303), 1, - anon_sym_as, - ACTIONS(6307), 1, - anon_sym_with, - ACTIONS(6414), 1, + ACTIONS(5549), 1, + anon_sym_LBRACK, + ACTIONS(6339), 1, anon_sym_SLASH, - ACTIONS(6416), 1, - anon_sym_CARET, - ACTIONS(6418), 1, - anon_sym_PIPE, - ACTIONS(6420), 1, + ACTIONS(6345), 1, anon_sym_AMP, - ACTIONS(6424), 1, + ACTIONS(6349), 1, anon_sym_GT_GT, - ACTIONS(6430), 1, + ACTIONS(6355), 1, + anon_sym_switch, + ACTIONS(6357), 1, anon_sym_DOT_DOT, - ACTIONS(6432), 1, - anon_sym_AMP_AMP, - ACTIONS(6438), 1, + ACTIONS(6365), 1, + anon_sym_as, + ACTIONS(6367), 1, anon_sym_is, - STATE(2433), 1, + ACTIONS(6369), 1, + anon_sym_with, + STATE(2467), 1, sym_bracketed_argument_list, - STATE(3035), 1, + STATE(2958), 1, sym_argument_list, - ACTIONS(4841), 2, + ACTIONS(4825), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6406), 2, + ACTIONS(6331), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(6410), 2, + ACTIONS(6335), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6412), 2, + ACTIONS(6337), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(6422), 2, + ACTIONS(6347), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(6426), 2, + ACTIONS(6351), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6428), 2, + ACTIONS(6353), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - STATE(4169), 9, + ACTIONS(5739), 3, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_or, + STATE(4107), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -559075,18 +553416,20 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5660), 10, + ACTIONS(5737), 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_into, anon_sym_join, anon_sym_let, anon_sym_orderby, anon_sym_group, anon_sym_select, - [32570] = 14, + [27095] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -559107,9 +553450,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(6448), 1, - anon_sym_into, - STATE(4170), 10, + ACTIONS(6378), 1, + anon_sym_and, + ACTIONS(6380), 1, + anon_sym_or, + STATE(4108), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -559119,8 +553464,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - aux_sym__query_body_repeat2, - ACTIONS(5951), 11, + ACTIONS(5360), 11, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, @@ -559132,7 +553476,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT, - ACTIONS(5949), 30, + ACTIONS(5358), 31, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_COMMA, @@ -559156,6 +553500,7 @@ 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, @@ -559163,7 +553508,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_if_token3, aux_sym_preproc_else_token1, aux_sym_preproc_elif_token1, - [32661] = 22, + [27189] = 34, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -559184,36 +553529,60 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4755), 1, - anon_sym_DASH_GT, - ACTIONS(4804), 1, + ACTIONS(4753), 1, anon_sym_LPAREN, - ACTIONS(4808), 1, + ACTIONS(4792), 1, anon_sym_DOT, - ACTIONS(4835), 1, + ACTIONS(4794), 1, + anon_sym_DASH_GT, + ACTIONS(4819), 1, anon_sym_LBRACK, - ACTIONS(4839), 1, + ACTIONS(4823), 1, anon_sym_BANG, - ACTIONS(6430), 1, + ACTIONS(6264), 1, + anon_sym_switch, + ACTIONS(6278), 1, + anon_sym_with, + ACTIONS(6303), 1, + anon_sym_SLASH, + ACTIONS(6313), 1, + anon_sym_GT_GT, + ACTIONS(6319), 1, anon_sym_DOT_DOT, - STATE(2433), 1, + ACTIONS(6327), 1, + anon_sym_as, + ACTIONS(6329), 1, + anon_sym_is, + STATE(2419), 1, sym_bracketed_argument_list, - STATE(3035), 1, + STATE(2958), 1, sym_argument_list, - ACTIONS(4841), 2, + ACTIONS(4825), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1223), 9, + ACTIONS(6295), 2, anon_sym_LT, anon_sym_GT, - anon_sym_QMARK, + ACTIONS(6299), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, + ACTIONS(6301), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(6311), 2, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + ACTIONS(6315), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6317), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(5739), 3, + anon_sym_QMARK, anon_sym_PIPE, anon_sym_AMP, - anon_sym_GT_GT, - STATE(4171), 9, + STATE(4109), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -559223,32 +553592,21 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(1221), 24, - anon_sym_where, - anon_sym_STAR, - anon_sym_PERCENT, + ACTIONS(5737), 13, + 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_switch, 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, - [32768] = 15, + aux_sym_preproc_if_token3, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + [27321] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -559269,19 +553627,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4279), 1, - anon_sym_or, - ACTIONS(4271), 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(4172), 9, + STATE(4110), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -559291,42 +553637,53 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5394), 11, + ACTIONS(3657), 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_DOT, - ACTIONS(5391), 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_DOT, + anon_sym_EQ_GT, anon_sym_DASH_GT, - anon_sym_with, - [32861] = 13, + ACTIONS(3655), 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, + [27411] = 21, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -559347,7 +553704,24 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - STATE(4173), 9, + ACTIONS(4753), 1, + anon_sym_LPAREN, + ACTIONS(4792), 1, + anon_sym_DOT, + ACTIONS(4794), 1, + anon_sym_DASH_GT, + ACTIONS(4823), 1, + anon_sym_BANG, + ACTIONS(5549), 1, + anon_sym_LBRACK, + STATE(2467), 1, + sym_bracketed_argument_list, + STATE(2958), 1, + sym_argument_list, + ACTIONS(4825), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(4111), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -559357,25 +553731,19 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5429), 12, + ACTIONS(4840), 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, - anon_sym_DOT, anon_sym_or, - ACTIONS(5427), 31, - anon_sym_LBRACK, - anon_sym_LPAREN, + ACTIONS(4838), 25, anon_sym_where, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, anon_sym_STAR, anon_sym_PERCENT, anon_sym_CARET, @@ -559392,7 +553760,6 @@ 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, @@ -559400,9 +553767,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_select, anon_sym_as, anon_sym_is, - anon_sym_DASH_GT, anon_sym_with, - [32950] = 40, + [27517] = 41, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -559423,79 +553789,81 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4755), 1, - anon_sym_DASH_GT, - ACTIONS(4804), 1, + ACTIONS(4753), 1, anon_sym_LPAREN, - ACTIONS(4808), 1, + ACTIONS(4792), 1, anon_sym_DOT, - ACTIONS(4835), 1, - anon_sym_LBRACK, - ACTIONS(4839), 1, + ACTIONS(4794), 1, + anon_sym_DASH_GT, + ACTIONS(4823), 1, anon_sym_BANG, - ACTIONS(5664), 1, + ACTIONS(5549), 1, + anon_sym_LBRACK, + ACTIONS(5867), 1, + anon_sym_or, + ACTIONS(6333), 1, anon_sym_QMARK, - ACTIONS(6293), 1, - anon_sym_switch, - ACTIONS(6303), 1, - anon_sym_as, - ACTIONS(6307), 1, - anon_sym_with, - ACTIONS(6414), 1, + ACTIONS(6339), 1, anon_sym_SLASH, - ACTIONS(6416), 1, + ACTIONS(6341), 1, anon_sym_CARET, - ACTIONS(6418), 1, + ACTIONS(6343), 1, anon_sym_PIPE, - ACTIONS(6420), 1, + ACTIONS(6345), 1, anon_sym_AMP, - ACTIONS(6424), 1, + ACTIONS(6349), 1, anon_sym_GT_GT, - ACTIONS(6430), 1, + ACTIONS(6355), 1, + anon_sym_switch, + ACTIONS(6357), 1, anon_sym_DOT_DOT, - ACTIONS(6432), 1, + ACTIONS(6359), 1, anon_sym_AMP_AMP, - ACTIONS(6434), 1, + ACTIONS(6361), 1, anon_sym_PIPE_PIPE, - ACTIONS(6436), 1, + ACTIONS(6363), 1, anon_sym_QMARK_QMARK, - ACTIONS(6438), 1, + ACTIONS(6365), 1, + anon_sym_as, + ACTIONS(6367), 1, anon_sym_is, - STATE(2433), 1, + ACTIONS(6369), 1, + anon_sym_with, + STATE(2467), 1, sym_bracketed_argument_list, - STATE(3035), 1, + STATE(2958), 1, sym_argument_list, - ACTIONS(4841), 2, + ACTIONS(4825), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6406), 2, + ACTIONS(6331), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(6410), 2, + ACTIONS(6335), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6412), 2, + ACTIONS(6337), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(6422), 2, + ACTIONS(6347), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(6426), 2, + ACTIONS(6351), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6428), 2, + ACTIONS(6353), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5660), 8, + ACTIONS(5865), 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(4174), 9, + STATE(4112), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -559505,7 +553873,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [33093] = 13, + [27663] = 24, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -559526,7 +553894,99 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - STATE(4175), 9, + ACTIONS(25), 1, + sym__identifier_token, + ACTIONS(3431), 1, + anon_sym_COLON, + ACTIONS(3587), 1, + anon_sym_where, + ACTIONS(6115), 1, + anon_sym_ref, + STATE(2168), 1, + sym__reserved_identifier, + STATE(2170), 1, + sym_generic_name, + STATE(2331), 1, + sym_ref_type, + STATE(2339), 1, + sym__scoped_base_type, + STATE(6268), 1, + sym_identifier, + STATE(6315), 1, + sym__name, + STATE(4068), 3, + sym_alias_qualified_name, + sym__simple_name, + sym_qualified_name, + 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(3429), 10, + 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_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, + [27775] = 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(6378), 1, + anon_sym_and, + ACTIONS(6380), 1, + anon_sym_or, + STATE(4114), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -559536,7 +553996,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5425), 12, + ACTIONS(6109), 11, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, @@ -559548,11 +554008,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT, - anon_sym_or, - ACTIONS(5423), 31, + ACTIONS(6107), 31, + 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, @@ -559566,22 +554029,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_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, - [33182] = 15, + aux_sym_preproc_if_token3, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + [27869] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -559602,11 +554061,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(6440), 1, + ACTIONS(6382), 1, anon_sym_into, - STATE(4170), 1, + STATE(4142), 1, aux_sym__query_body_repeat2, - STATE(4176), 9, + STATE(4115), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -559616,7 +554075,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5960), 11, + ACTIONS(5881), 11, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, @@ -559628,7 +554087,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT, - ACTIONS(5958), 30, + ACTIONS(5879), 30, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_COMMA, @@ -559659,7 +554118,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_if_token3, aux_sym_preproc_else_token1, aux_sym_preproc_elif_token1, - [33275] = 13, + [27962] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -559680,7 +554139,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - STATE(4177), 9, + STATE(4116), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -559690,7 +554149,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5431), 12, + ACTIONS(5436), 12, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, @@ -559703,7 +554162,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_or, - ACTIONS(3829), 31, + ACTIONS(5434), 31, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_where, @@ -559735,7 +554194,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, anon_sym_DASH_GT, anon_sym_with, - [33364] = 40, + [28051] = 36, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -559756,79 +554215,63 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4755), 1, - anon_sym_DASH_GT, - ACTIONS(4804), 1, + ACTIONS(4753), 1, anon_sym_LPAREN, - ACTIONS(4808), 1, + ACTIONS(4792), 1, anon_sym_DOT, - ACTIONS(4835), 1, + ACTIONS(4794), 1, + anon_sym_DASH_GT, + ACTIONS(4819), 1, anon_sym_LBRACK, - ACTIONS(4839), 1, + ACTIONS(4823), 1, anon_sym_BANG, - ACTIONS(6293), 1, + ACTIONS(6264), 1, anon_sym_switch, - ACTIONS(6303), 1, + ACTIONS(6274), 1, anon_sym_as, - ACTIONS(6307), 1, + ACTIONS(6278), 1, anon_sym_with, - ACTIONS(6408), 1, - anon_sym_QMARK, - ACTIONS(6414), 1, + ACTIONS(6390), 1, anon_sym_SLASH, - ACTIONS(6416), 1, + ACTIONS(6392), 1, anon_sym_CARET, - ACTIONS(6418), 1, - anon_sym_PIPE, - ACTIONS(6420), 1, + ACTIONS(6394), 1, anon_sym_AMP, - ACTIONS(6424), 1, + ACTIONS(6398), 1, anon_sym_GT_GT, - ACTIONS(6430), 1, + ACTIONS(6404), 1, anon_sym_DOT_DOT, - ACTIONS(6432), 1, - anon_sym_AMP_AMP, - ACTIONS(6434), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6436), 1, - anon_sym_QMARK_QMARK, - ACTIONS(6438), 1, + ACTIONS(6406), 1, anon_sym_is, - STATE(2433), 1, + STATE(2419), 1, sym_bracketed_argument_list, - STATE(3035), 1, + STATE(2958), 1, sym_argument_list, - ACTIONS(4841), 2, + ACTIONS(4825), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6406), 2, + ACTIONS(5739), 2, + anon_sym_QMARK, + anon_sym_PIPE, + ACTIONS(6384), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(6410), 2, + ACTIONS(6386), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6412), 2, + ACTIONS(6388), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(6422), 2, + ACTIONS(6396), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(6426), 2, + ACTIONS(6400), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6428), 2, + ACTIONS(6402), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5858), 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(4178), 9, + STATE(4117), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -559838,7 +554281,19 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [33507] = 29, + ACTIONS(5737), 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, + [28186] = 37, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -559859,49 +554314,64 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4755), 1, - anon_sym_DASH_GT, - ACTIONS(4804), 1, + ACTIONS(4753), 1, anon_sym_LPAREN, - ACTIONS(4808), 1, + ACTIONS(4792), 1, anon_sym_DOT, - ACTIONS(4835), 1, + ACTIONS(4794), 1, + anon_sym_DASH_GT, + ACTIONS(4819), 1, anon_sym_LBRACK, - ACTIONS(4839), 1, + ACTIONS(4823), 1, anon_sym_BANG, - ACTIONS(6293), 1, + ACTIONS(5739), 1, + anon_sym_QMARK, + ACTIONS(6264), 1, anon_sym_switch, - ACTIONS(6307), 1, + ACTIONS(6274), 1, + anon_sym_as, + ACTIONS(6278), 1, anon_sym_with, - ACTIONS(6414), 1, + ACTIONS(6390), 1, anon_sym_SLASH, - ACTIONS(6424), 1, + ACTIONS(6392), 1, + anon_sym_CARET, + ACTIONS(6394), 1, + anon_sym_AMP, + ACTIONS(6398), 1, anon_sym_GT_GT, - ACTIONS(6430), 1, + ACTIONS(6404), 1, anon_sym_DOT_DOT, - STATE(2433), 1, + ACTIONS(6406), 1, + anon_sym_is, + ACTIONS(6408), 1, + anon_sym_PIPE, + STATE(2419), 1, sym_bracketed_argument_list, - STATE(3035), 1, + STATE(2958), 1, sym_argument_list, - ACTIONS(4841), 2, + ACTIONS(4825), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6410), 2, + ACTIONS(6384), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(6386), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6412), 2, + ACTIONS(6388), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(6422), 2, + ACTIONS(6396), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(5664), 5, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_AMP, - STATE(4179), 9, + ACTIONS(6400), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6402), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + STATE(4118), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -559911,13 +554381,8 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5660), 18, + ACTIONS(5737), 11, 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, @@ -559928,9 +554393,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_orderby, anon_sym_group, anon_sym_select, - anon_sym_as, - anon_sym_is, - [33628] = 40, + [28323] = 27, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -559951,78 +554414,45 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4100), 1, + ACTIONS(4753), 1, + anon_sym_LPAREN, + ACTIONS(4792), 1, anon_sym_DOT, - ACTIONS(4102), 1, + ACTIONS(4794), 1, anon_sym_DASH_GT, - ACTIONS(5264), 1, - anon_sym_LPAREN, - ACTIONS(5302), 1, + ACTIONS(4819), 1, anon_sym_LBRACK, - ACTIONS(5304), 1, + ACTIONS(4823), 1, anon_sym_BANG, - ACTIONS(6453), 1, - anon_sym_QMARK, - ACTIONS(6459), 1, - anon_sym_SLASH, - ACTIONS(6461), 1, - anon_sym_CARET, - ACTIONS(6463), 1, - anon_sym_PIPE, - ACTIONS(6465), 1, - anon_sym_AMP, - ACTIONS(6469), 1, - anon_sym_GT_GT, - ACTIONS(6475), 1, + ACTIONS(6264), 1, anon_sym_switch, - ACTIONS(6477), 1, - anon_sym_DOT_DOT, - ACTIONS(6479), 1, - anon_sym_AMP_AMP, - ACTIONS(6481), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6483), 1, - anon_sym_QMARK_QMARK, - ACTIONS(6485), 1, - anon_sym_as, - ACTIONS(6487), 1, - anon_sym_is, - ACTIONS(6489), 1, + ACTIONS(6278), 1, anon_sym_with, - STATE(2808), 1, + ACTIONS(6390), 1, + anon_sym_SLASH, + ACTIONS(6404), 1, + anon_sym_DOT_DOT, + STATE(2419), 1, sym_bracketed_argument_list, - STATE(3487), 1, + STATE(2958), 1, sym_argument_list, - ACTIONS(5306), 2, + ACTIONS(4825), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6451), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(6455), 2, + ACTIONS(6386), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6457), 2, + ACTIONS(6388), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(6467), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - ACTIONS(6471), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(6473), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(5858), 7, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_and, - anon_sym_or, - STATE(4180), 9, + ACTIONS(5739), 6, + anon_sym_LT, + anon_sym_GT, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT_GT, + STATE(4119), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -560032,7 +554462,28 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [33770] = 29, + ACTIONS(5737), 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_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, + [28440] = 38, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -560053,49 +554504,66 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4100), 1, + ACTIONS(4753), 1, + anon_sym_LPAREN, + ACTIONS(4792), 1, anon_sym_DOT, - ACTIONS(4102), 1, + ACTIONS(4794), 1, anon_sym_DASH_GT, - ACTIONS(5264), 1, - anon_sym_LPAREN, - ACTIONS(5302), 1, + ACTIONS(4819), 1, anon_sym_LBRACK, - ACTIONS(5304), 1, + ACTIONS(4823), 1, anon_sym_BANG, - ACTIONS(6459), 1, + ACTIONS(5739), 1, + anon_sym_QMARK, + ACTIONS(6264), 1, + anon_sym_switch, + ACTIONS(6274), 1, + anon_sym_as, + ACTIONS(6278), 1, + anon_sym_with, + ACTIONS(6390), 1, anon_sym_SLASH, - ACTIONS(6469), 1, + ACTIONS(6392), 1, + anon_sym_CARET, + ACTIONS(6394), 1, + anon_sym_AMP, + ACTIONS(6398), 1, anon_sym_GT_GT, - ACTIONS(6475), 1, - anon_sym_switch, - ACTIONS(6477), 1, + ACTIONS(6404), 1, anon_sym_DOT_DOT, - ACTIONS(6489), 1, - anon_sym_with, - STATE(2808), 1, + ACTIONS(6406), 1, + anon_sym_is, + ACTIONS(6408), 1, + anon_sym_PIPE, + ACTIONS(6410), 1, + anon_sym_AMP_AMP, + STATE(2419), 1, sym_bracketed_argument_list, - STATE(3487), 1, + STATE(2958), 1, sym_argument_list, - ACTIONS(5306), 2, + ACTIONS(4825), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6455), 2, + ACTIONS(6384), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(6386), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6457), 2, + ACTIONS(6388), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(6467), 2, + ACTIONS(6396), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(5664), 5, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_AMP, - STATE(4181), 9, + ACTIONS(6400), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6402), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + STATE(4120), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -560105,25 +554573,18 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5660), 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, + ACTIONS(5737), 10, + anon_sym_where, anon_sym_PIPE_PIPE, anon_sym_QMARK_QMARK, - anon_sym_as, - anon_sym_is, - [33890] = 26, + anon_sym_from, + anon_sym_into, + anon_sym_join, + anon_sym_let, + anon_sym_orderby, + anon_sym_group, + anon_sym_select, + [28579] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -560144,44 +554605,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4100), 1, - anon_sym_DOT, - ACTIONS(4102), 1, - anon_sym_DASH_GT, - ACTIONS(5264), 1, - anon_sym_LPAREN, - ACTIONS(5302), 1, - anon_sym_LBRACK, - ACTIONS(5304), 1, - anon_sym_BANG, - ACTIONS(6459), 1, - anon_sym_SLASH, - ACTIONS(6475), 1, - anon_sym_switch, - ACTIONS(6477), 1, - anon_sym_DOT_DOT, - ACTIONS(6489), 1, - anon_sym_with, - STATE(2808), 1, - sym_bracketed_argument_list, - STATE(3487), 1, - sym_argument_list, - ACTIONS(5306), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6457), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(5664), 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(4182), 9, + STATE(4121), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -560191,12 +554615,27 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5660), 19, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_RBRACE, + ACTIONS(5360), 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(5358), 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, anon_sym_LT_LT, anon_sym_GT_GT_GT, @@ -560204,14 +554643,24 @@ 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, - [34004] = 35, + anon_sym_DASH_GT, + anon_sym_with, + [28668] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -560232,61 +554681,79 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4100), 1, + ACTIONS(4753), 1, + anon_sym_LPAREN, + ACTIONS(4792), 1, anon_sym_DOT, - ACTIONS(4102), 1, + ACTIONS(4794), 1, anon_sym_DASH_GT, - ACTIONS(5264), 1, - anon_sym_LPAREN, - ACTIONS(5302), 1, + ACTIONS(4819), 1, anon_sym_LBRACK, - ACTIONS(5304), 1, + ACTIONS(4823), 1, anon_sym_BANG, - ACTIONS(6459), 1, + ACTIONS(6264), 1, + anon_sym_switch, + ACTIONS(6274), 1, + anon_sym_as, + ACTIONS(6278), 1, + anon_sym_with, + ACTIONS(6390), 1, anon_sym_SLASH, - ACTIONS(6465), 1, + ACTIONS(6392), 1, + anon_sym_CARET, + ACTIONS(6394), 1, anon_sym_AMP, - ACTIONS(6469), 1, + ACTIONS(6398), 1, anon_sym_GT_GT, - ACTIONS(6475), 1, - anon_sym_switch, - ACTIONS(6477), 1, + ACTIONS(6404), 1, anon_sym_DOT_DOT, - ACTIONS(6485), 1, - anon_sym_as, - ACTIONS(6487), 1, + ACTIONS(6406), 1, anon_sym_is, - ACTIONS(6489), 1, - anon_sym_with, - STATE(2808), 1, + ACTIONS(6408), 1, + anon_sym_PIPE, + ACTIONS(6410), 1, + anon_sym_AMP_AMP, + ACTIONS(6414), 1, + anon_sym_QMARK, + ACTIONS(6416), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6418), 1, + anon_sym_QMARK_QMARK, + STATE(2419), 1, sym_bracketed_argument_list, - STATE(3487), 1, + STATE(2958), 1, sym_argument_list, - ACTIONS(5306), 2, + ACTIONS(4825), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5664), 2, - anon_sym_QMARK, - anon_sym_PIPE, - ACTIONS(6451), 2, + ACTIONS(6384), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(6455), 2, + ACTIONS(6386), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6457), 2, + ACTIONS(6388), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(6467), 2, + ACTIONS(6396), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(6471), 2, + ACTIONS(6400), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6473), 2, + ACTIONS(6402), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - STATE(4183), 9, + ACTIONS(6412), 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(4122), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -560296,19 +554763,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5660), 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, - [34136] = 36, + [28811] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -560329,84 +554784,63 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4100), 1, - anon_sym_DOT, - ACTIONS(4102), 1, - anon_sym_DASH_GT, - ACTIONS(5264), 1, - anon_sym_LPAREN, - ACTIONS(5302), 1, - anon_sym_LBRACK, - ACTIONS(5304), 1, + ACTIONS(6420), 1, + anon_sym_and, + STATE(4123), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + ACTIONS(6097), 12, + anon_sym_LT, + anon_sym_GT, + anon_sym_QMARK, anon_sym_BANG, - ACTIONS(6459), 1, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_SLASH, - ACTIONS(6461), 1, - anon_sym_CARET, - ACTIONS(6465), 1, + anon_sym_PIPE, anon_sym_AMP, - ACTIONS(6469), 1, anon_sym_GT_GT, - ACTIONS(6475), 1, - anon_sym_switch, - ACTIONS(6477), 1, - anon_sym_DOT_DOT, - ACTIONS(6485), 1, - anon_sym_as, - ACTIONS(6487), 1, - anon_sym_is, - ACTIONS(6489), 1, - anon_sym_with, - STATE(2808), 1, - sym_bracketed_argument_list, - STATE(3487), 1, - sym_argument_list, - ACTIONS(5306), 2, + anon_sym_DOT, + anon_sym_or, + ACTIONS(6095), 30, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_where, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5664), 2, - anon_sym_QMARK, - anon_sym_PIPE, - ACTIONS(6451), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(6455), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(6457), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(6467), 2, + anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(6471), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6473), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - 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(5660), 10, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_RBRACE, - 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, - [34270] = 34, + 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, + [28902] = 34, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -560427,60 +554861,60 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4100), 1, + ACTIONS(4753), 1, + anon_sym_LPAREN, + ACTIONS(4792), 1, anon_sym_DOT, - ACTIONS(4102), 1, + ACTIONS(4794), 1, anon_sym_DASH_GT, - ACTIONS(5264), 1, - anon_sym_LPAREN, - ACTIONS(5302), 1, + ACTIONS(4819), 1, anon_sym_LBRACK, - ACTIONS(5304), 1, + ACTIONS(4823), 1, anon_sym_BANG, - ACTIONS(6459), 1, + ACTIONS(6264), 1, + anon_sym_switch, + ACTIONS(6274), 1, + anon_sym_as, + ACTIONS(6278), 1, + anon_sym_with, + ACTIONS(6390), 1, anon_sym_SLASH, - ACTIONS(6469), 1, + ACTIONS(6398), 1, anon_sym_GT_GT, - ACTIONS(6475), 1, - anon_sym_switch, - ACTIONS(6477), 1, + ACTIONS(6404), 1, anon_sym_DOT_DOT, - ACTIONS(6485), 1, - anon_sym_as, - ACTIONS(6487), 1, + ACTIONS(6406), 1, anon_sym_is, - ACTIONS(6489), 1, - anon_sym_with, - STATE(2808), 1, + STATE(2419), 1, sym_bracketed_argument_list, - STATE(3487), 1, + STATE(2958), 1, sym_argument_list, - ACTIONS(5306), 2, + ACTIONS(4825), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6451), 2, + ACTIONS(6384), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(6455), 2, + ACTIONS(6386), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6457), 2, + ACTIONS(6388), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(6467), 2, + ACTIONS(6396), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(6471), 2, + ACTIONS(6400), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6473), 2, + ACTIONS(6402), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5664), 3, + ACTIONS(5739), 3, anon_sym_QMARK, anon_sym_PIPE, anon_sym_AMP, - STATE(4185), 9, + STATE(4124), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -560490,19 +554924,20 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5660), 11, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_RBRACE, + ACTIONS(5737), 12, + anon_sym_where, anon_sym_CARET, - anon_sym_and, - anon_sym_or, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_QMARK_QMARK, - [34400] = 27, + anon_sym_from, + anon_sym_into, + anon_sym_join, + anon_sym_let, + anon_sym_orderby, + anon_sym_group, + anon_sym_select, + [29033] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -560523,45 +554958,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4100), 1, - anon_sym_DOT, - ACTIONS(4102), 1, - anon_sym_DASH_GT, - ACTIONS(5264), 1, - anon_sym_LPAREN, - ACTIONS(5302), 1, - anon_sym_LBRACK, - ACTIONS(5304), 1, - anon_sym_BANG, - ACTIONS(6459), 1, - anon_sym_SLASH, - ACTIONS(6475), 1, - anon_sym_switch, - ACTIONS(6477), 1, - anon_sym_DOT_DOT, - ACTIONS(6489), 1, - anon_sym_with, - STATE(2808), 1, - sym_bracketed_argument_list, - STATE(3487), 1, - sym_argument_list, - ACTIONS(5306), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6455), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(6457), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(5664), 6, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT_GT, - STATE(4186), 9, + STATE(4125), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -560571,12 +554968,27 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5660), 19, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_RBRACE, + ACTIONS(5348), 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(5346), 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, anon_sym_LT_LT, anon_sym_GT_GT_GT, @@ -560584,14 +554996,24 @@ 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, - [34516] = 33, + anon_sym_DASH_GT, + anon_sym_with, + [29122] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -560612,57 +555034,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4100), 1, - anon_sym_DOT, - ACTIONS(4102), 1, - anon_sym_DASH_GT, - ACTIONS(5264), 1, - anon_sym_LPAREN, - ACTIONS(5302), 1, - anon_sym_LBRACK, - ACTIONS(5304), 1, - anon_sym_BANG, - ACTIONS(6459), 1, - anon_sym_SLASH, - ACTIONS(6469), 1, - anon_sym_GT_GT, - ACTIONS(6475), 1, - anon_sym_switch, - ACTIONS(6477), 1, - anon_sym_DOT_DOT, - ACTIONS(6485), 1, - anon_sym_as, - ACTIONS(6487), 1, - anon_sym_is, - ACTIONS(6489), 1, - anon_sym_with, - STATE(2808), 1, - sym_bracketed_argument_list, - STATE(3487), 1, - sym_argument_list, - ACTIONS(5306), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6451), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(6455), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(6457), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(6467), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - ACTIONS(6473), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(5664), 3, - anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_AMP, - STATE(4187), 9, + STATE(4126), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -560672,21 +555044,52 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5660), 13, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_RBRACE, + ACTIONS(5352), 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(5350), 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, + 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, - [34644] = 37, + 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, + [29211] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -560707,85 +555110,62 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4100), 1, - anon_sym_DOT, - ACTIONS(4102), 1, - anon_sym_DASH_GT, - ACTIONS(5264), 1, - anon_sym_LPAREN, - ACTIONS(5302), 1, - anon_sym_LBRACK, - ACTIONS(5304), 1, - anon_sym_BANG, - ACTIONS(5664), 1, + 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(5398), 12, + anon_sym_LT, + anon_sym_GT, anon_sym_QMARK, - ACTIONS(6459), 1, + anon_sym_BANG, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_SLASH, - ACTIONS(6461), 1, - anon_sym_CARET, - ACTIONS(6463), 1, anon_sym_PIPE, - ACTIONS(6465), 1, anon_sym_AMP, - ACTIONS(6469), 1, anon_sym_GT_GT, - ACTIONS(6475), 1, - anon_sym_switch, - ACTIONS(6477), 1, - anon_sym_DOT_DOT, - ACTIONS(6485), 1, - anon_sym_as, - ACTIONS(6487), 1, - anon_sym_is, - ACTIONS(6489), 1, - anon_sym_with, - STATE(2808), 1, - sym_bracketed_argument_list, - STATE(3487), 1, - sym_argument_list, - ACTIONS(5306), 2, + anon_sym_DOT, + anon_sym_or, + ACTIONS(5396), 31, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_where, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6451), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(6455), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(6457), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(6467), 2, + anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(6471), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6473), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - 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(5660), 10, - 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_or, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_QMARK_QMARK, - [34780] = 22, + 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, + [29300] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -560806,36 +555186,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4100), 1, - anon_sym_DOT, - ACTIONS(4102), 1, - anon_sym_DASH_GT, - ACTIONS(5264), 1, - anon_sym_LPAREN, - ACTIONS(5302), 1, - anon_sym_LBRACK, - ACTIONS(5304), 1, - anon_sym_BANG, - ACTIONS(6477), 1, - anon_sym_DOT_DOT, - STATE(2808), 1, - sym_bracketed_argument_list, - STATE(3487), 1, - sym_argument_list, - ACTIONS(5306), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5733), 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(4189), 9, + ACTIONS(4249), 1, + anon_sym_or, + ACTIONS(4241), 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(4128), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -560845,12 +555208,23 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5731), 23, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_RBRACE, + ACTIONS(5379), 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(5376), 22, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_STAR, anon_sym_PERCENT, anon_sym_CARET, @@ -560861,15 +555235,15 @@ 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_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, - [34886] = 40, + [29393] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -560890,88 +555264,140 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4100), 1, - anon_sym_DOT, - ACTIONS(4102), 1, - anon_sym_DASH_GT, - ACTIONS(5264), 1, - anon_sym_LPAREN, - ACTIONS(5302), 1, - anon_sym_LBRACK, - ACTIONS(5304), 1, - anon_sym_BANG, - ACTIONS(6453), 1, + ACTIONS(4249), 1, + anon_sym_or, + ACTIONS(4241), 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(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(5385), 11, + anon_sym_LT, + anon_sym_GT, anon_sym_QMARK, - ACTIONS(6459), 1, + anon_sym_BANG, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_SLASH, - ACTIONS(6461), 1, - anon_sym_CARET, - ACTIONS(6463), 1, anon_sym_PIPE, - ACTIONS(6465), 1, anon_sym_AMP, - ACTIONS(6469), 1, anon_sym_GT_GT, - ACTIONS(6475), 1, + anon_sym_DOT, + ACTIONS(5382), 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, - ACTIONS(6477), 1, anon_sym_DOT_DOT, - ACTIONS(6479), 1, anon_sym_AMP_AMP, - ACTIONS(6481), 1, anon_sym_PIPE_PIPE, - ACTIONS(6483), 1, anon_sym_QMARK_QMARK, - ACTIONS(6485), 1, anon_sym_as, - ACTIONS(6487), 1, anon_sym_is, - ACTIONS(6489), 1, + anon_sym_DASH_GT, anon_sym_with, - STATE(2808), 1, - sym_bracketed_argument_list, - STATE(3487), 1, - sym_argument_list, - ACTIONS(5306), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6451), 2, + [29486] = 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, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + ACTIONS(5404), 12, anon_sym_LT, anon_sym_GT, - ACTIONS(6455), 2, + anon_sym_QMARK, + anon_sym_BANG, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6457), 2, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT_GT, + anon_sym_DOT, + anon_sym_or, + ACTIONS(5402), 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(6467), 2, + anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(6471), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6473), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5864), 7, - 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_or, - 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, - [35028] = 40, + 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, + [29575] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -560992,88 +555418,62 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4100), 1, - anon_sym_DOT, - ACTIONS(4102), 1, - anon_sym_DASH_GT, - ACTIONS(5264), 1, - anon_sym_LPAREN, - ACTIONS(5302), 1, - anon_sym_LBRACK, - ACTIONS(5304), 1, - anon_sym_BANG, - ACTIONS(6453), 1, + 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, + ACTIONS(5418), 12, + anon_sym_LT, + anon_sym_GT, anon_sym_QMARK, - ACTIONS(6459), 1, + anon_sym_BANG, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_SLASH, - ACTIONS(6461), 1, - anon_sym_CARET, - ACTIONS(6463), 1, anon_sym_PIPE, - ACTIONS(6465), 1, anon_sym_AMP, - ACTIONS(6469), 1, anon_sym_GT_GT, - ACTIONS(6475), 1, - anon_sym_switch, - ACTIONS(6477), 1, - anon_sym_DOT_DOT, - ACTIONS(6479), 1, - anon_sym_AMP_AMP, - ACTIONS(6481), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6483), 1, - anon_sym_QMARK_QMARK, - ACTIONS(6485), 1, - anon_sym_as, - ACTIONS(6487), 1, - anon_sym_is, - ACTIONS(6489), 1, - anon_sym_with, - STATE(2808), 1, - sym_bracketed_argument_list, - STATE(3487), 1, - sym_argument_list, - ACTIONS(5306), 2, + anon_sym_DOT, + anon_sym_or, + ACTIONS(5416), 31, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_where, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6451), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(6455), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(6457), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(6467), 2, + anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(6471), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6473), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5072), 7, - 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_or, - STATE(4191), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - [35170] = 38, + 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, + [29664] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -561094,86 +555494,140 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4100), 1, - anon_sym_DOT, - ACTIONS(4102), 1, - anon_sym_DASH_GT, - ACTIONS(5264), 1, - anon_sym_LPAREN, - ACTIONS(5302), 1, - anon_sym_LBRACK, - ACTIONS(5304), 1, - anon_sym_BANG, - ACTIONS(5664), 1, + ACTIONS(6420), 1, + anon_sym_and, + ACTIONS(6422), 1, + anon_sym_or, + STATE(4132), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + ACTIONS(5360), 11, + anon_sym_LT, + anon_sym_GT, anon_sym_QMARK, - ACTIONS(6459), 1, + anon_sym_BANG, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_SLASH, - ACTIONS(6461), 1, - anon_sym_CARET, - ACTIONS(6463), 1, anon_sym_PIPE, - ACTIONS(6465), 1, anon_sym_AMP, - ACTIONS(6469), 1, anon_sym_GT_GT, - ACTIONS(6475), 1, + anon_sym_DOT, + ACTIONS(5358), 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, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, anon_sym_switch, - ACTIONS(6477), 1, anon_sym_DOT_DOT, - ACTIONS(6479), 1, anon_sym_AMP_AMP, - ACTIONS(6485), 1, + 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, - ACTIONS(6487), 1, anon_sym_is, - ACTIONS(6489), 1, + anon_sym_DASH_GT, anon_sym_with, - STATE(2808), 1, - sym_bracketed_argument_list, - STATE(3487), 1, - sym_argument_list, - ACTIONS(5306), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6451), 2, + [29757] = 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(4133), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + ACTIONS(5422), 12, anon_sym_LT, anon_sym_GT, - ACTIONS(6455), 2, + anon_sym_QMARK, + anon_sym_BANG, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6457), 2, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT_GT, + anon_sym_DOT, + anon_sym_or, + ACTIONS(5420), 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(6467), 2, + anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(6471), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6473), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5660), 9, - 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_or, + anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_QMARK_QMARK, - 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, - [35308] = 40, + 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, + [29846] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -561194,78 +555648,79 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4100), 1, + ACTIONS(4753), 1, + anon_sym_LPAREN, + ACTIONS(4792), 1, anon_sym_DOT, - ACTIONS(4102), 1, + ACTIONS(4794), 1, anon_sym_DASH_GT, - ACTIONS(5264), 1, - anon_sym_LPAREN, - ACTIONS(5302), 1, + ACTIONS(4819), 1, anon_sym_LBRACK, - ACTIONS(5304), 1, + ACTIONS(4823), 1, anon_sym_BANG, - ACTIONS(6453), 1, - anon_sym_QMARK, - ACTIONS(6459), 1, + ACTIONS(6264), 1, + anon_sym_switch, + ACTIONS(6274), 1, + anon_sym_as, + ACTIONS(6278), 1, + anon_sym_with, + ACTIONS(6390), 1, anon_sym_SLASH, - ACTIONS(6461), 1, + ACTIONS(6392), 1, anon_sym_CARET, - ACTIONS(6463), 1, - anon_sym_PIPE, - ACTIONS(6465), 1, + ACTIONS(6394), 1, anon_sym_AMP, - ACTIONS(6469), 1, + ACTIONS(6398), 1, anon_sym_GT_GT, - ACTIONS(6475), 1, - anon_sym_switch, - ACTIONS(6477), 1, + ACTIONS(6404), 1, anon_sym_DOT_DOT, - ACTIONS(6479), 1, + ACTIONS(6406), 1, + anon_sym_is, + ACTIONS(6408), 1, + anon_sym_PIPE, + ACTIONS(6410), 1, anon_sym_AMP_AMP, - ACTIONS(6481), 1, + ACTIONS(6414), 1, + anon_sym_QMARK, + ACTIONS(6416), 1, anon_sym_PIPE_PIPE, - ACTIONS(6483), 1, + ACTIONS(6418), 1, anon_sym_QMARK_QMARK, - ACTIONS(6485), 1, - anon_sym_as, - ACTIONS(6487), 1, - anon_sym_is, - ACTIONS(6489), 1, - anon_sym_with, - STATE(2808), 1, + STATE(2419), 1, sym_bracketed_argument_list, - STATE(3487), 1, + STATE(2958), 1, sym_argument_list, - ACTIONS(5306), 2, + ACTIONS(4825), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6451), 2, + ACTIONS(6384), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(6455), 2, + ACTIONS(6386), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6457), 2, + ACTIONS(6388), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(6467), 2, + ACTIONS(6396), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(6471), 2, + ACTIONS(6400), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6473), 2, + ACTIONS(6402), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5882), 7, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_and, - anon_sym_or, - STATE(4193), 9, + ACTIONS(5709), 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(4134), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -561275,7 +555730,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [35450] = 40, + [29989] = 22, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -561296,78 +555751,36 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4100), 1, + ACTIONS(4753), 1, + anon_sym_LPAREN, + ACTIONS(4792), 1, anon_sym_DOT, - ACTIONS(4102), 1, + ACTIONS(4794), 1, anon_sym_DASH_GT, - ACTIONS(5264), 1, - anon_sym_LPAREN, - ACTIONS(5302), 1, + ACTIONS(4819), 1, anon_sym_LBRACK, - ACTIONS(5304), 1, + ACTIONS(4823), 1, anon_sym_BANG, - ACTIONS(5664), 1, - anon_sym_QMARK, - ACTIONS(6459), 1, - anon_sym_SLASH, - ACTIONS(6461), 1, - anon_sym_CARET, - ACTIONS(6463), 1, - anon_sym_PIPE, - ACTIONS(6465), 1, - anon_sym_AMP, - ACTIONS(6469), 1, - anon_sym_GT_GT, - ACTIONS(6475), 1, - anon_sym_switch, - ACTIONS(6477), 1, + ACTIONS(6404), 1, anon_sym_DOT_DOT, - ACTIONS(6479), 1, - anon_sym_AMP_AMP, - ACTIONS(6481), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6483), 1, - anon_sym_QMARK_QMARK, - ACTIONS(6485), 1, - anon_sym_as, - ACTIONS(6487), 1, - anon_sym_is, - ACTIONS(6489), 1, - anon_sym_with, - STATE(2808), 1, + STATE(2419), 1, sym_bracketed_argument_list, - STATE(3487), 1, + STATE(2958), 1, sym_argument_list, - ACTIONS(5306), 2, + ACTIONS(4825), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6451), 2, + ACTIONS(5743), 9, anon_sym_LT, anon_sym_GT, - ACTIONS(6455), 2, + anon_sym_QMARK, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6457), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(6467), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - ACTIONS(6471), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(6473), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(5660), 7, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_and, - anon_sym_or, - STATE(4194), 9, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT_GT, + STATE(4135), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -561377,7 +555790,32 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [35592] = 40, + ACTIONS(5741), 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, + 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, + [30096] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -561398,78 +555836,79 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4100), 1, + ACTIONS(4753), 1, + anon_sym_LPAREN, + ACTIONS(4792), 1, anon_sym_DOT, - ACTIONS(4102), 1, + ACTIONS(4794), 1, anon_sym_DASH_GT, - ACTIONS(5264), 1, - anon_sym_LPAREN, - ACTIONS(5302), 1, + ACTIONS(4819), 1, anon_sym_LBRACK, - ACTIONS(5304), 1, + ACTIONS(4823), 1, anon_sym_BANG, - ACTIONS(6453), 1, - anon_sym_QMARK, - ACTIONS(6459), 1, + ACTIONS(6264), 1, + anon_sym_switch, + ACTIONS(6274), 1, + anon_sym_as, + ACTIONS(6278), 1, + anon_sym_with, + ACTIONS(6390), 1, anon_sym_SLASH, - ACTIONS(6461), 1, + ACTIONS(6392), 1, anon_sym_CARET, - ACTIONS(6463), 1, - anon_sym_PIPE, - ACTIONS(6465), 1, + ACTIONS(6394), 1, anon_sym_AMP, - ACTIONS(6469), 1, + ACTIONS(6398), 1, anon_sym_GT_GT, - ACTIONS(6475), 1, - anon_sym_switch, - ACTIONS(6477), 1, + ACTIONS(6404), 1, anon_sym_DOT_DOT, - ACTIONS(6479), 1, + ACTIONS(6406), 1, + anon_sym_is, + ACTIONS(6408), 1, + anon_sym_PIPE, + ACTIONS(6410), 1, anon_sym_AMP_AMP, - ACTIONS(6481), 1, + ACTIONS(6414), 1, + anon_sym_QMARK, + ACTIONS(6416), 1, anon_sym_PIPE_PIPE, - ACTIONS(6483), 1, + ACTIONS(6418), 1, anon_sym_QMARK_QMARK, - ACTIONS(6485), 1, - anon_sym_as, - ACTIONS(6487), 1, - anon_sym_is, - ACTIONS(6489), 1, - anon_sym_with, - STATE(2808), 1, + STATE(2419), 1, sym_bracketed_argument_list, - STATE(3487), 1, + STATE(2958), 1, sym_argument_list, - ACTIONS(5306), 2, + ACTIONS(4825), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6451), 2, + ACTIONS(6384), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(6455), 2, + ACTIONS(6386), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6457), 2, + ACTIONS(6388), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(6467), 2, + ACTIONS(6396), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(6471), 2, + ACTIONS(6400), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6473), 2, + ACTIONS(6402), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5899), 7, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_and, - anon_sym_or, - STATE(4195), 9, + ACTIONS(5849), 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(4136), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -561479,7 +555918,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [35734] = 40, + [30239] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -561500,78 +555939,79 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4075), 1, + ACTIONS(4753), 1, + anon_sym_LPAREN, + ACTIONS(4792), 1, anon_sym_DOT, - ACTIONS(4077), 1, + ACTIONS(4794), 1, anon_sym_DASH_GT, - ACTIONS(5247), 1, - anon_sym_LPAREN, - ACTIONS(5283), 1, + ACTIONS(4819), 1, anon_sym_LBRACK, - ACTIONS(5285), 1, + ACTIONS(4823), 1, anon_sym_BANG, - ACTIONS(6147), 1, + ACTIONS(6264), 1, anon_sym_switch, - ACTIONS(6157), 1, + ACTIONS(6274), 1, anon_sym_as, - ACTIONS(6161), 1, + ACTIONS(6278), 1, anon_sym_with, - ACTIONS(6493), 1, - anon_sym_QMARK, - ACTIONS(6499), 1, + ACTIONS(6390), 1, anon_sym_SLASH, - ACTIONS(6501), 1, + ACTIONS(6392), 1, anon_sym_CARET, - ACTIONS(6503), 1, - anon_sym_PIPE, - ACTIONS(6505), 1, + ACTIONS(6394), 1, anon_sym_AMP, - ACTIONS(6509), 1, + ACTIONS(6398), 1, anon_sym_GT_GT, - ACTIONS(6515), 1, + ACTIONS(6404), 1, anon_sym_DOT_DOT, - ACTIONS(6517), 1, + ACTIONS(6406), 1, + anon_sym_is, + ACTIONS(6408), 1, + anon_sym_PIPE, + ACTIONS(6410), 1, anon_sym_AMP_AMP, - ACTIONS(6519), 1, + ACTIONS(6414), 1, + anon_sym_QMARK, + ACTIONS(6416), 1, anon_sym_PIPE_PIPE, - ACTIONS(6521), 1, + ACTIONS(6418), 1, anon_sym_QMARK_QMARK, - ACTIONS(6523), 1, - anon_sym_is, - STATE(2613), 1, + STATE(2419), 1, sym_bracketed_argument_list, - STATE(3259), 1, + STATE(2958), 1, sym_argument_list, - ACTIONS(5287), 2, + ACTIONS(4825), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6491), 2, + ACTIONS(6384), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(6495), 2, + ACTIONS(6386), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6497), 2, + ACTIONS(6388), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(6507), 2, + ACTIONS(6396), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(6511), 2, + ACTIONS(6400), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6513), 2, + ACTIONS(6402), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5858), 7, - anon_sym_COLON, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_and, - anon_sym_or, + ACTIONS(4996), 8, + anon_sym_where, + anon_sym_from, anon_sym_into, - STATE(4196), 9, + anon_sym_join, + anon_sym_let, + anon_sym_orderby, + anon_sym_group, + anon_sym_select, + STATE(4137), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -561581,7 +556021,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [35876] = 29, + [30382] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -561602,49 +556042,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4075), 1, - anon_sym_DOT, - ACTIONS(4077), 1, - anon_sym_DASH_GT, - ACTIONS(5247), 1, - anon_sym_LPAREN, - ACTIONS(5283), 1, - anon_sym_LBRACK, - ACTIONS(5285), 1, - anon_sym_BANG, - ACTIONS(6147), 1, - anon_sym_switch, - ACTIONS(6161), 1, - anon_sym_with, - ACTIONS(6499), 1, - anon_sym_SLASH, - ACTIONS(6509), 1, - anon_sym_GT_GT, - ACTIONS(6515), 1, - anon_sym_DOT_DOT, - STATE(2613), 1, - sym_bracketed_argument_list, - STATE(3259), 1, - sym_argument_list, - ACTIONS(5287), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6495), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(6497), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(6507), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - ACTIONS(5664), 5, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_AMP, - STATE(4197), 9, + ACTIONS(6424), 1, + anon_sym_into, + STATE(4138), 10, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -561654,25 +556054,51 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5660), 17, - anon_sym_COLON, + aux_sym__query_body_repeat2, + ACTIONS(5953), 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(5951), 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_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_as, anon_sym_is, - [35996] = 26, + anon_sym_DASH_GT, + anon_sym_with, + aux_sym_preproc_if_token3, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + [30473] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -561693,44 +556119,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4075), 1, - anon_sym_DOT, - ACTIONS(4077), 1, - anon_sym_DASH_GT, - ACTIONS(5247), 1, - anon_sym_LPAREN, - ACTIONS(5283), 1, - anon_sym_LBRACK, - ACTIONS(5285), 1, - anon_sym_BANG, - ACTIONS(6147), 1, - anon_sym_switch, - ACTIONS(6161), 1, - anon_sym_with, - ACTIONS(6499), 1, - anon_sym_SLASH, - ACTIONS(6515), 1, - anon_sym_DOT_DOT, - STATE(2613), 1, - sym_bracketed_argument_list, - STATE(3259), 1, - sym_argument_list, - ACTIONS(5287), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6497), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(5664), 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(4198), 9, + STATE(4139), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -561740,11 +556129,27 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5660), 19, - anon_sym_COLON, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_RBRACE, + ACTIONS(5444), 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(5442), 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, anon_sym_LT_LT, anon_sym_GT_GT_GT, @@ -561752,15 +556157,24 @@ 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, - [36110] = 24, + anon_sym_DASH_GT, + anon_sym_with, + [30562] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -561781,40 +556195,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4075), 1, - anon_sym_DOT, - ACTIONS(4077), 1, - anon_sym_DASH_GT, - ACTIONS(5247), 1, - anon_sym_LPAREN, - ACTIONS(5283), 1, - anon_sym_LBRACK, - ACTIONS(5285), 1, - anon_sym_BANG, - ACTIONS(6147), 1, - anon_sym_switch, - ACTIONS(6161), 1, - anon_sym_with, - ACTIONS(6515), 1, - anon_sym_DOT_DOT, - STATE(2613), 1, - sym_bracketed_argument_list, - STATE(3259), 1, - sym_argument_list, - ACTIONS(5287), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5664), 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(4199), 9, + STATE(4140), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -561824,11 +556205,25 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5660), 21, - anon_sym_COLON, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_RBRACE, + ACTIONS(5320), 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(5318), 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, @@ -561838,15 +556233,24 @@ 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, - [36220] = 35, + anon_sym_DASH_GT, + anon_sym_with, + [30651] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -561867,61 +556271,79 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4075), 1, + ACTIONS(4753), 1, + anon_sym_LPAREN, + ACTIONS(4792), 1, anon_sym_DOT, - ACTIONS(4077), 1, + ACTIONS(4794), 1, anon_sym_DASH_GT, - ACTIONS(5247), 1, - anon_sym_LPAREN, - ACTIONS(5283), 1, + ACTIONS(4819), 1, anon_sym_LBRACK, - ACTIONS(5285), 1, + ACTIONS(4823), 1, anon_sym_BANG, - ACTIONS(6147), 1, + ACTIONS(6264), 1, anon_sym_switch, - ACTIONS(6157), 1, + ACTIONS(6274), 1, anon_sym_as, - ACTIONS(6161), 1, + ACTIONS(6278), 1, anon_sym_with, - ACTIONS(6499), 1, + ACTIONS(6390), 1, anon_sym_SLASH, - ACTIONS(6505), 1, + ACTIONS(6392), 1, + anon_sym_CARET, + ACTIONS(6394), 1, anon_sym_AMP, - ACTIONS(6509), 1, + ACTIONS(6398), 1, anon_sym_GT_GT, - ACTIONS(6515), 1, + ACTIONS(6404), 1, anon_sym_DOT_DOT, - ACTIONS(6523), 1, + ACTIONS(6406), 1, anon_sym_is, - STATE(2613), 1, + ACTIONS(6408), 1, + anon_sym_PIPE, + ACTIONS(6410), 1, + anon_sym_AMP_AMP, + ACTIONS(6414), 1, + anon_sym_QMARK, + ACTIONS(6416), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6418), 1, + anon_sym_QMARK_QMARK, + STATE(2419), 1, sym_bracketed_argument_list, - STATE(3259), 1, + STATE(2958), 1, sym_argument_list, - ACTIONS(5287), 2, + ACTIONS(4825), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5664), 2, - anon_sym_QMARK, - anon_sym_PIPE, - ACTIONS(6491), 2, + ACTIONS(6384), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(6495), 2, + ACTIONS(6386), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6497), 2, + ACTIONS(6388), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(6507), 2, + ACTIONS(6396), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(6511), 2, + ACTIONS(6400), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6513), 2, + ACTIONS(6402), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - STATE(4200), 9, + ACTIONS(5652), 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(4141), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -561931,19 +556353,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5660), 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, - [36352] = 36, + [30794] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -561964,63 +556374,89 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4075), 1, - anon_sym_DOT, - ACTIONS(4077), 1, - anon_sym_DASH_GT, - ACTIONS(5247), 1, - anon_sym_LPAREN, - ACTIONS(5283), 1, - anon_sym_LBRACK, - ACTIONS(5285), 1, + ACTIONS(6382), 1, + anon_sym_into, + STATE(4138), 1, + aux_sym__query_body_repeat2, + STATE(4142), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + ACTIONS(5960), 11, + anon_sym_LT, + anon_sym_GT, + anon_sym_QMARK, anon_sym_BANG, - ACTIONS(6147), 1, - anon_sym_switch, - ACTIONS(6157), 1, - anon_sym_as, - ACTIONS(6161), 1, - anon_sym_with, - ACTIONS(6499), 1, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_SLASH, - ACTIONS(6501), 1, - anon_sym_CARET, - ACTIONS(6505), 1, + anon_sym_PIPE, anon_sym_AMP, - ACTIONS(6509), 1, anon_sym_GT_GT, - ACTIONS(6515), 1, - anon_sym_DOT_DOT, - ACTIONS(6523), 1, - anon_sym_is, - STATE(2613), 1, - sym_bracketed_argument_list, - STATE(3259), 1, - sym_argument_list, - ACTIONS(5287), 2, + anon_sym_DOT, + ACTIONS(5958), 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, - ACTIONS(5664), 2, - anon_sym_QMARK, - anon_sym_PIPE, - ACTIONS(6491), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(6495), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(6497), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(6507), 2, + anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(6511), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6513), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - STATE(4201), 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, + aux_sym_preproc_if_token3, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + [30887] = 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(6420), 1, + anon_sym_and, + ACTIONS(6422), 1, + anon_sym_or, + STATE(4143), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -562030,18 +556466,50 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5660), 10, - anon_sym_COLON, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_and, - anon_sym_or, + ACTIONS(6109), 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(6107), 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, + 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, - [36486] = 34, + 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, + [30980] = 33, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -562062,60 +556530,57 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4075), 1, + ACTIONS(4753), 1, + anon_sym_LPAREN, + ACTIONS(4792), 1, anon_sym_DOT, - ACTIONS(4077), 1, + ACTIONS(4794), 1, anon_sym_DASH_GT, - ACTIONS(5247), 1, - anon_sym_LPAREN, - ACTIONS(5283), 1, + ACTIONS(4819), 1, anon_sym_LBRACK, - ACTIONS(5285), 1, + ACTIONS(4823), 1, anon_sym_BANG, - ACTIONS(6147), 1, + ACTIONS(6264), 1, anon_sym_switch, - ACTIONS(6157), 1, + ACTIONS(6274), 1, anon_sym_as, - ACTIONS(6161), 1, + ACTIONS(6278), 1, anon_sym_with, - ACTIONS(6499), 1, + ACTIONS(6390), 1, anon_sym_SLASH, - ACTIONS(6509), 1, + ACTIONS(6398), 1, anon_sym_GT_GT, - ACTIONS(6515), 1, + ACTIONS(6404), 1, anon_sym_DOT_DOT, - ACTIONS(6523), 1, + ACTIONS(6406), 1, anon_sym_is, - STATE(2613), 1, + STATE(2419), 1, sym_bracketed_argument_list, - STATE(3259), 1, + STATE(2958), 1, sym_argument_list, - ACTIONS(5287), 2, + ACTIONS(4825), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6491), 2, + ACTIONS(6384), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(6495), 2, + ACTIONS(6386), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6497), 2, + ACTIONS(6388), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(6507), 2, + ACTIONS(6396), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(6511), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(6513), 2, + ACTIONS(6402), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5664), 3, + ACTIONS(5739), 3, anon_sym_QMARK, anon_sym_PIPE, anon_sym_AMP, - STATE(4202), 9, + STATE(4144), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -562125,19 +556590,22 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5660), 11, - anon_sym_COLON, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_RBRACE, + ACTIONS(5737), 14, + anon_sym_where, anon_sym_CARET, - anon_sym_and, - anon_sym_or, + 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_into, - [36616] = 27, + anon_sym_join, + anon_sym_let, + anon_sym_orderby, + anon_sym_group, + anon_sym_select, + [31109] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -562158,45 +556626,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4075), 1, - anon_sym_DOT, - ACTIONS(4077), 1, - anon_sym_DASH_GT, - ACTIONS(5247), 1, - anon_sym_LPAREN, - ACTIONS(5283), 1, - anon_sym_LBRACK, - ACTIONS(5285), 1, - anon_sym_BANG, - ACTIONS(6147), 1, - anon_sym_switch, - ACTIONS(6161), 1, - anon_sym_with, - ACTIONS(6499), 1, - anon_sym_SLASH, - ACTIONS(6515), 1, - anon_sym_DOT_DOT, - STATE(2613), 1, - sym_bracketed_argument_list, - STATE(3259), 1, - sym_argument_list, - ACTIONS(5287), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6495), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(6497), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(5664), 6, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT_GT, - STATE(4203), 9, + STATE(4145), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -562206,11 +556636,27 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5660), 19, - anon_sym_COLON, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_RBRACE, + ACTIONS(5440), 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(5438), 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, anon_sym_LT_LT, anon_sym_GT_GT_GT, @@ -562218,15 +556664,24 @@ 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, - [36732] = 33, + anon_sym_DASH_GT, + anon_sym_with, + [31198] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -562247,57 +556702,83 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4075), 1, - anon_sym_DOT, - ACTIONS(4077), 1, - anon_sym_DASH_GT, - ACTIONS(5247), 1, - anon_sym_LPAREN, - ACTIONS(5283), 1, - anon_sym_LBRACK, - ACTIONS(5285), 1, + 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(5410), 12, + anon_sym_LT, + anon_sym_GT, + anon_sym_QMARK, anon_sym_BANG, - ACTIONS(6147), 1, - anon_sym_switch, - ACTIONS(6157), 1, - anon_sym_as, - ACTIONS(6161), 1, - anon_sym_with, - ACTIONS(6499), 1, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_SLASH, - ACTIONS(6509), 1, + anon_sym_PIPE, + anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(6515), 1, - anon_sym_DOT_DOT, - ACTIONS(6523), 1, - anon_sym_is, - STATE(2613), 1, - sym_bracketed_argument_list, - STATE(3259), 1, - sym_argument_list, - ACTIONS(5287), 2, + anon_sym_DOT, + anon_sym_or, + ACTIONS(5408), 31, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_where, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6491), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(6495), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(6497), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(6507), 2, + anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(6513), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5664), 3, - anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_AMP, - STATE(4204), 9, + 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, + [31287] = 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(4147), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -562307,21 +556788,52 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5660), 13, + ACTIONS(3678), 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_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_DOT, + anon_sym_EQ_GT, + ACTIONS(3669), 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, - [36860] = 37, + 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, + [31376] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -562342,64 +556854,105 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4075), 1, - anon_sym_DOT, - ACTIONS(4077), 1, - anon_sym_DASH_GT, - ACTIONS(5247), 1, - anon_sym_LPAREN, - ACTIONS(5283), 1, - anon_sym_LBRACK, - ACTIONS(5285), 1, - anon_sym_BANG, - ACTIONS(5664), 1, + ACTIONS(6382), 1, + anon_sym_into, + STATE(4160), 1, + aux_sym__query_body_repeat2, + STATE(4148), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + ACTIONS(5935), 11, + anon_sym_LT, + anon_sym_GT, anon_sym_QMARK, - ACTIONS(6147), 1, - anon_sym_switch, - ACTIONS(6157), 1, - anon_sym_as, - ACTIONS(6161), 1, - anon_sym_with, - ACTIONS(6499), 1, + anon_sym_BANG, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_SLASH, - ACTIONS(6501), 1, - anon_sym_CARET, - ACTIONS(6503), 1, anon_sym_PIPE, - ACTIONS(6505), 1, anon_sym_AMP, - ACTIONS(6509), 1, anon_sym_GT_GT, - ACTIONS(6515), 1, - anon_sym_DOT_DOT, - ACTIONS(6523), 1, - anon_sym_is, - STATE(2613), 1, - sym_bracketed_argument_list, - STATE(3259), 1, - sym_argument_list, - ACTIONS(5287), 2, + anon_sym_DOT, + ACTIONS(5933), 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, - ACTIONS(6491), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(6495), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(6497), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(6507), 2, + anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(6511), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6513), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - STATE(4205), 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, + aux_sym_preproc_if_token3, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + [31469] = 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(6191), 1, + anon_sym_ref, + STATE(2168), 1, + sym__reserved_identifier, + STATE(2170), 1, + sym_generic_name, + STATE(2331), 1, + sym_ref_type, + STATE(2339), 1, + sym__scoped_base_type, + STATE(4370), 1, + sym_identifier, + STATE(5130), 1, + sym__name, + STATE(4068), 3, + sym_alias_qualified_name, + sym__simple_name, + sym_qualified_name, + STATE(4149), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -562409,18 +556962,41 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5660), 10, - anon_sym_COLON, + ACTIONS(3429), 10, + anon_sym_SEMI, + anon_sym_LBRACK, 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_LPAREN, + anon_sym_LBRACE, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_STAR, + 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, - [36996] = 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, + [31576] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -562441,86 +557017,62 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4075), 1, - anon_sym_DOT, - ACTIONS(4077), 1, - anon_sym_DASH_GT, - ACTIONS(5247), 1, - anon_sym_LPAREN, - ACTIONS(5283), 1, - anon_sym_LBRACK, - ACTIONS(5285), 1, - anon_sym_BANG, - ACTIONS(5664), 1, + STATE(4150), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + ACTIONS(5356), 12, + anon_sym_LT, + anon_sym_GT, anon_sym_QMARK, - ACTIONS(6147), 1, - anon_sym_switch, - ACTIONS(6157), 1, - anon_sym_as, - ACTIONS(6161), 1, - anon_sym_with, - ACTIONS(6499), 1, + anon_sym_BANG, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_SLASH, - ACTIONS(6501), 1, - anon_sym_CARET, - ACTIONS(6503), 1, anon_sym_PIPE, - ACTIONS(6505), 1, anon_sym_AMP, - ACTIONS(6509), 1, anon_sym_GT_GT, - ACTIONS(6515), 1, - anon_sym_DOT_DOT, - ACTIONS(6517), 1, - anon_sym_AMP_AMP, - ACTIONS(6523), 1, - anon_sym_is, - STATE(2613), 1, - sym_bracketed_argument_list, - STATE(3259), 1, - sym_argument_list, - ACTIONS(5287), 2, + anon_sym_DOT, + anon_sym_or, + ACTIONS(5354), 31, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_where, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6491), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(6495), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(6497), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(6507), 2, + anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(6511), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6513), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5660), 9, - 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_from, anon_sym_into, - STATE(4206), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - [37134] = 40, + 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, + [31665] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -562541,78 +557093,79 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4075), 1, + ACTIONS(4753), 1, + anon_sym_LPAREN, + ACTIONS(4792), 1, anon_sym_DOT, - ACTIONS(4077), 1, + ACTIONS(4794), 1, anon_sym_DASH_GT, - ACTIONS(5247), 1, - anon_sym_LPAREN, - ACTIONS(5283), 1, + ACTIONS(4819), 1, anon_sym_LBRACK, - ACTIONS(5285), 1, + ACTIONS(4823), 1, anon_sym_BANG, - ACTIONS(5664), 1, - anon_sym_QMARK, - ACTIONS(6147), 1, + ACTIONS(6264), 1, anon_sym_switch, - ACTIONS(6157), 1, + ACTIONS(6274), 1, anon_sym_as, - ACTIONS(6161), 1, + ACTIONS(6278), 1, anon_sym_with, - ACTIONS(6499), 1, + ACTIONS(6390), 1, anon_sym_SLASH, - ACTIONS(6501), 1, + ACTIONS(6392), 1, anon_sym_CARET, - ACTIONS(6503), 1, - anon_sym_PIPE, - ACTIONS(6505), 1, + ACTIONS(6394), 1, anon_sym_AMP, - ACTIONS(6509), 1, + ACTIONS(6398), 1, anon_sym_GT_GT, - ACTIONS(6515), 1, + ACTIONS(6404), 1, anon_sym_DOT_DOT, - ACTIONS(6517), 1, + ACTIONS(6406), 1, + anon_sym_is, + ACTIONS(6408), 1, + anon_sym_PIPE, + ACTIONS(6410), 1, anon_sym_AMP_AMP, - ACTIONS(6519), 1, + ACTIONS(6414), 1, + anon_sym_QMARK, + ACTIONS(6416), 1, anon_sym_PIPE_PIPE, - ACTIONS(6521), 1, + ACTIONS(6418), 1, anon_sym_QMARK_QMARK, - ACTIONS(6523), 1, - anon_sym_is, - STATE(2613), 1, + STATE(2419), 1, sym_bracketed_argument_list, - STATE(3259), 1, + STATE(2958), 1, sym_argument_list, - ACTIONS(5287), 2, + ACTIONS(4825), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6491), 2, + ACTIONS(6384), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(6495), 2, + ACTIONS(6386), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6497), 2, + ACTIONS(6388), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(6507), 2, + ACTIONS(6396), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(6511), 2, + ACTIONS(6400), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6513), 2, + ACTIONS(6402), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5660), 7, - anon_sym_COLON, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_and, - anon_sym_or, + ACTIONS(5733), 8, + anon_sym_where, + anon_sym_from, anon_sym_into, - STATE(4207), 9, + 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, @@ -562622,7 +557175,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [37276] = 40, + [31808] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -562643,88 +557196,62 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4075), 1, - anon_sym_DOT, - ACTIONS(4077), 1, - anon_sym_DASH_GT, - ACTIONS(5247), 1, - anon_sym_LPAREN, - ACTIONS(5283), 1, - anon_sym_LBRACK, - ACTIONS(5285), 1, - anon_sym_BANG, - ACTIONS(6147), 1, - anon_sym_switch, - ACTIONS(6157), 1, - anon_sym_as, - ACTIONS(6161), 1, - anon_sym_with, - ACTIONS(6493), 1, + STATE(4152), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + ACTIONS(5406), 12, + anon_sym_LT, + anon_sym_GT, anon_sym_QMARK, - ACTIONS(6499), 1, + anon_sym_BANG, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_SLASH, - ACTIONS(6501), 1, - anon_sym_CARET, - ACTIONS(6503), 1, anon_sym_PIPE, - ACTIONS(6505), 1, anon_sym_AMP, - ACTIONS(6509), 1, anon_sym_GT_GT, - ACTIONS(6515), 1, - anon_sym_DOT_DOT, - ACTIONS(6517), 1, - anon_sym_AMP_AMP, - ACTIONS(6519), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6521), 1, - anon_sym_QMARK_QMARK, - ACTIONS(6523), 1, - anon_sym_is, - STATE(2613), 1, - sym_bracketed_argument_list, - STATE(3259), 1, - sym_argument_list, - ACTIONS(5287), 2, + anon_sym_DOT, + anon_sym_or, + ACTIONS(3809), 31, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_where, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6491), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(6495), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(6497), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(6507), 2, + anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(6511), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6513), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5864), 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_from, anon_sym_into, - STATE(4208), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - [37418] = 40, + 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, + [31897] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -562745,88 +557272,62 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4075), 1, - anon_sym_DOT, - ACTIONS(4077), 1, - anon_sym_DASH_GT, - ACTIONS(5247), 1, - anon_sym_LPAREN, - ACTIONS(5283), 1, - anon_sym_LBRACK, - ACTIONS(5285), 1, - anon_sym_BANG, - ACTIONS(6147), 1, - anon_sym_switch, - ACTIONS(6157), 1, - anon_sym_as, - ACTIONS(6161), 1, - anon_sym_with, - ACTIONS(6493), 1, + 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, + ACTIONS(5324), 12, + anon_sym_LT, + anon_sym_GT, anon_sym_QMARK, - ACTIONS(6499), 1, + anon_sym_BANG, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_SLASH, - ACTIONS(6501), 1, - anon_sym_CARET, - ACTIONS(6503), 1, anon_sym_PIPE, - ACTIONS(6505), 1, anon_sym_AMP, - ACTIONS(6509), 1, anon_sym_GT_GT, - ACTIONS(6515), 1, - anon_sym_DOT_DOT, - ACTIONS(6517), 1, - anon_sym_AMP_AMP, - ACTIONS(6519), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6521), 1, - anon_sym_QMARK_QMARK, - ACTIONS(6523), 1, - anon_sym_is, - STATE(2613), 1, - sym_bracketed_argument_list, - STATE(3259), 1, - sym_argument_list, - ACTIONS(5287), 2, + anon_sym_DOT, + anon_sym_or, + ACTIONS(5322), 31, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_where, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6491), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(6495), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(6497), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(6507), 2, + anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(6511), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6513), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5072), 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_from, anon_sym_into, - 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, - [37560] = 40, + 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, + [31986] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -562847,88 +557348,62 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4075), 1, - anon_sym_DOT, - ACTIONS(4077), 1, - anon_sym_DASH_GT, - ACTIONS(5247), 1, - anon_sym_LPAREN, - ACTIONS(5283), 1, - anon_sym_LBRACK, - ACTIONS(5285), 1, - anon_sym_BANG, - ACTIONS(6147), 1, - anon_sym_switch, - ACTIONS(6157), 1, - anon_sym_as, - ACTIONS(6161), 1, - anon_sym_with, - ACTIONS(6493), 1, + STATE(4154), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + ACTIONS(5324), 12, + anon_sym_LT, + anon_sym_GT, anon_sym_QMARK, - ACTIONS(6499), 1, + anon_sym_BANG, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_SLASH, - ACTIONS(6501), 1, - anon_sym_CARET, - ACTIONS(6503), 1, anon_sym_PIPE, - ACTIONS(6505), 1, anon_sym_AMP, - ACTIONS(6509), 1, anon_sym_GT_GT, - ACTIONS(6515), 1, - anon_sym_DOT_DOT, - ACTIONS(6517), 1, - anon_sym_AMP_AMP, - ACTIONS(6519), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6521), 1, - anon_sym_QMARK_QMARK, - ACTIONS(6523), 1, - anon_sym_is, - STATE(2613), 1, - sym_bracketed_argument_list, - STATE(3259), 1, - sym_argument_list, - ACTIONS(5287), 2, + anon_sym_DOT, + anon_sym_or, + ACTIONS(5322), 31, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_where, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6491), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(6495), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(6497), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(6507), 2, + anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(6511), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6513), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5882), 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_from, anon_sym_into, - 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, - [37702] = 40, + 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, + [32075] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -562949,78 +557424,79 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4075), 1, + ACTIONS(4753), 1, + anon_sym_LPAREN, + ACTIONS(4792), 1, anon_sym_DOT, - ACTIONS(4077), 1, + ACTIONS(4794), 1, anon_sym_DASH_GT, - ACTIONS(5247), 1, - anon_sym_LPAREN, - ACTIONS(5283), 1, + ACTIONS(4819), 1, anon_sym_LBRACK, - ACTIONS(5285), 1, + ACTIONS(4823), 1, anon_sym_BANG, - ACTIONS(6147), 1, + ACTIONS(6264), 1, anon_sym_switch, - ACTIONS(6157), 1, + ACTIONS(6274), 1, anon_sym_as, - ACTIONS(6161), 1, + ACTIONS(6278), 1, anon_sym_with, - ACTIONS(6493), 1, - anon_sym_QMARK, - ACTIONS(6499), 1, + ACTIONS(6390), 1, anon_sym_SLASH, - ACTIONS(6501), 1, + ACTIONS(6392), 1, anon_sym_CARET, - ACTIONS(6503), 1, - anon_sym_PIPE, - ACTIONS(6505), 1, + ACTIONS(6394), 1, anon_sym_AMP, - ACTIONS(6509), 1, + ACTIONS(6398), 1, anon_sym_GT_GT, - ACTIONS(6515), 1, + ACTIONS(6404), 1, anon_sym_DOT_DOT, - ACTIONS(6517), 1, + ACTIONS(6406), 1, + anon_sym_is, + ACTIONS(6408), 1, + anon_sym_PIPE, + ACTIONS(6410), 1, anon_sym_AMP_AMP, - ACTIONS(6519), 1, + ACTIONS(6414), 1, + anon_sym_QMARK, + ACTIONS(6416), 1, anon_sym_PIPE_PIPE, - ACTIONS(6521), 1, + ACTIONS(6418), 1, anon_sym_QMARK_QMARK, - ACTIONS(6523), 1, - anon_sym_is, - STATE(2613), 1, + STATE(2419), 1, sym_bracketed_argument_list, - STATE(3259), 1, + STATE(2958), 1, sym_argument_list, - ACTIONS(5287), 2, + ACTIONS(4825), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6491), 2, + ACTIONS(6384), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(6495), 2, + ACTIONS(6386), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6497), 2, + ACTIONS(6388), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(6507), 2, + ACTIONS(6396), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(6511), 2, + ACTIONS(6400), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6513), 2, + ACTIONS(6402), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5899), 7, - anon_sym_COLON, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_and, - anon_sym_or, + ACTIONS(5855), 8, + anon_sym_where, + anon_sym_from, anon_sym_into, - STATE(4211), 9, + anon_sym_join, + anon_sym_let, + anon_sym_orderby, + anon_sym_group, + anon_sym_select, + STATE(4155), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -563030,7 +557506,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [37844] = 40, + [32218] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -563051,78 +557527,79 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4755), 1, - anon_sym_DASH_GT, - ACTIONS(4804), 1, + ACTIONS(4753), 1, anon_sym_LPAREN, - ACTIONS(4808), 1, + ACTIONS(4792), 1, anon_sym_DOT, - ACTIONS(4839), 1, - anon_sym_BANG, - ACTIONS(5573), 1, + ACTIONS(4794), 1, + anon_sym_DASH_GT, + ACTIONS(4819), 1, anon_sym_LBRACK, - ACTIONS(6343), 1, + ACTIONS(4823), 1, + anon_sym_BANG, + ACTIONS(6264), 1, anon_sym_switch, - ACTIONS(6353), 1, + ACTIONS(6274), 1, anon_sym_as, - ACTIONS(6357), 1, + ACTIONS(6278), 1, anon_sym_with, - ACTIONS(6529), 1, - anon_sym_QMARK, - ACTIONS(6535), 1, + ACTIONS(6390), 1, anon_sym_SLASH, - ACTIONS(6537), 1, + ACTIONS(6392), 1, anon_sym_CARET, - ACTIONS(6539), 1, - anon_sym_PIPE, - ACTIONS(6541), 1, + ACTIONS(6394), 1, anon_sym_AMP, - ACTIONS(6545), 1, + ACTIONS(6398), 1, anon_sym_GT_GT, - ACTIONS(6551), 1, + ACTIONS(6404), 1, anon_sym_DOT_DOT, - ACTIONS(6553), 1, + ACTIONS(6406), 1, + anon_sym_is, + ACTIONS(6408), 1, + anon_sym_PIPE, + ACTIONS(6410), 1, anon_sym_AMP_AMP, - ACTIONS(6555), 1, + ACTIONS(6414), 1, + anon_sym_QMARK, + ACTIONS(6416), 1, anon_sym_PIPE_PIPE, - ACTIONS(6557), 1, + ACTIONS(6418), 1, anon_sym_QMARK_QMARK, - ACTIONS(6559), 1, - anon_sym_is, - STATE(2485), 1, + STATE(2419), 1, sym_bracketed_argument_list, - STATE(3035), 1, + STATE(2958), 1, sym_argument_list, - ACTIONS(4841), 2, + ACTIONS(4825), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6525), 2, + ACTIONS(6384), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(6531), 2, + ACTIONS(6386), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6533), 2, + ACTIONS(6388), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(6543), 2, + ACTIONS(6396), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(6547), 2, + ACTIONS(6400), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6549), 2, + ACTIONS(6402), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(6527), 7, + ACTIONS(5801), 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(4212), 9, + STATE(4156), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -563132,7 +557609,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [37986] = 15, + [32361] = 22, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -563153,38 +557630,47 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(6561), 1, - anon_sym_and, - ACTIONS(6563), 1, - anon_sym_or, - STATE(4213), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - ACTIONS(5356), 11, + ACTIONS(4753), 1, + anon_sym_LPAREN, + ACTIONS(4792), 1, + anon_sym_DOT, + ACTIONS(4794), 1, + anon_sym_DASH_GT, + ACTIONS(4819), 1, + anon_sym_LBRACK, + ACTIONS(4823), 1, + anon_sym_BANG, + ACTIONS(6404), 1, + anon_sym_DOT_DOT, + STATE(2419), 1, + sym_bracketed_argument_list, + STATE(2958), 1, + sym_argument_list, + ACTIONS(4825), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1161), 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(5354), 29, - anon_sym_LBRACK, - anon_sym_LPAREN, + 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(1147), 24, anon_sym_where, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, anon_sym_STAR, anon_sym_PERCENT, anon_sym_CARET, @@ -563195,11 +557681,11 @@ 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_from, + anon_sym_into, anon_sym_join, anon_sym_let, anon_sym_orderby, @@ -563207,9 +557693,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_select, anon_sym_as, anon_sym_is, - anon_sym_DASH_GT, anon_sym_with, - [38078] = 15, + [32468] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -563230,26 +557715,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(3447), 1, - anon_sym_EQ, - ACTIONS(3445), 7, - anon_sym_LBRACK, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_QMARK, - anon_sym_STAR, - anon_sym_DOT, - anon_sym_COLON_COLON, - ACTIONS(3616), 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(4214), 9, + STATE(4158), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -563259,34 +557725,52 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(3619), 26, - anon_sym_alias, - anon_sym_global, - anon_sym_file, + ACTIONS(5364), 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(5362), 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, - 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, - [38170] = 16, + anon_sym_as, + anon_sym_is, + anon_sym_DASH_GT, + anon_sym_with, + [32557] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -563307,13 +557791,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(6565), 1, - anon_sym_LT, - ACTIONS(6568), 1, - anon_sym_COLON_COLON, - STATE(4410), 1, - sym_type_argument_list, - STATE(4215), 9, + STATE(4159), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -563323,8 +557801,8 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(3660), 11, - anon_sym_COLON, + ACTIONS(5364), 12, + anon_sym_LT, anon_sym_GT, anon_sym_QMARK, anon_sym_BANG, @@ -563335,12 +557813,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT, - ACTIONS(3662), 28, - sym_interpolation_close_brace, + anon_sym_or, + ACTIONS(5362), 31, anon_sym_LBRACK, - anon_sym_COMMA, anon_sym_LPAREN, - anon_sym_LBRACE, + anon_sym_where, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_STAR, @@ -563355,16 +557832,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, - [38264] = 15, + [32646] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -563385,17 +557867,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4271), 4, - anon_sym_EQ_GT, - anon_sym_when, - anon_sym_and, - anon_sym_or, - ACTIONS(5391), 4, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_RBRACE, - STATE(4216), 9, + ACTIONS(6382), 1, + anon_sym_into, + STATE(4138), 1, + aux_sym__query_body_repeat2, + STATE(4160), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -563405,7 +557881,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5056), 11, + ACTIONS(5881), 11, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, @@ -563417,10 +557893,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT, - ACTIONS(5054), 23, + ACTIONS(5879), 30, + anon_sym_SEMI, 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, @@ -563441,7 +557921,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, anon_sym_DASH_GT, anon_sym_with, - [38356] = 40, + aux_sym_preproc_if_token3, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + [32739] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -563462,78 +557945,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4755), 1, - anon_sym_DASH_GT, - ACTIONS(4804), 1, - anon_sym_LPAREN, - ACTIONS(4808), 1, - anon_sym_DOT, - ACTIONS(4839), 1, - anon_sym_BANG, - ACTIONS(5573), 1, - anon_sym_LBRACK, - ACTIONS(6343), 1, - anon_sym_switch, - ACTIONS(6353), 1, - anon_sym_as, - ACTIONS(6357), 1, - anon_sym_with, - ACTIONS(6529), 1, - anon_sym_QMARK, - ACTIONS(6535), 1, - anon_sym_SLASH, - ACTIONS(6537), 1, - anon_sym_CARET, - ACTIONS(6539), 1, - anon_sym_PIPE, - ACTIONS(6541), 1, - anon_sym_AMP, - ACTIONS(6545), 1, - anon_sym_GT_GT, - ACTIONS(6551), 1, - anon_sym_DOT_DOT, - ACTIONS(6553), 1, - anon_sym_AMP_AMP, - ACTIONS(6555), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6557), 1, - anon_sym_QMARK_QMARK, - ACTIONS(6559), 1, - anon_sym_is, - STATE(2485), 1, - sym_bracketed_argument_list, - STATE(3035), 1, - sym_argument_list, - ACTIONS(4841), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6525), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(6531), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(6533), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(6543), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - ACTIONS(6547), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(6549), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(6570), 7, - anon_sym_where, - anon_sym_from, - anon_sym_join, - anon_sym_let, - anon_sym_orderby, - anon_sym_group, - anon_sym_select, - STATE(4217), 9, + STATE(4161), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -563543,109 +557955,52 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [38498] = 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(4755), 1, - anon_sym_DASH_GT, - ACTIONS(4804), 1, - anon_sym_LPAREN, - ACTIONS(4808), 1, - anon_sym_DOT, - ACTIONS(4839), 1, - anon_sym_BANG, - ACTIONS(5573), 1, - anon_sym_LBRACK, - ACTIONS(6343), 1, - anon_sym_switch, - ACTIONS(6353), 1, - anon_sym_as, - ACTIONS(6357), 1, - anon_sym_with, - ACTIONS(6529), 1, + ACTIONS(5368), 12, + anon_sym_LT, + anon_sym_GT, anon_sym_QMARK, - ACTIONS(6535), 1, + anon_sym_BANG, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_SLASH, - ACTIONS(6537), 1, - anon_sym_CARET, - ACTIONS(6539), 1, anon_sym_PIPE, - ACTIONS(6541), 1, anon_sym_AMP, - ACTIONS(6545), 1, anon_sym_GT_GT, - ACTIONS(6551), 1, - anon_sym_DOT_DOT, - ACTIONS(6553), 1, - anon_sym_AMP_AMP, - ACTIONS(6555), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6557), 1, - anon_sym_QMARK_QMARK, - ACTIONS(6559), 1, - anon_sym_is, - STATE(2485), 1, - sym_bracketed_argument_list, - STATE(3035), 1, - sym_argument_list, - ACTIONS(4841), 2, + anon_sym_DOT, + anon_sym_or, + ACTIONS(5366), 31, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_where, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6525), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(6531), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(6533), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(6543), 2, + anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(6547), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6549), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(6572), 7, - 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, anon_sym_let, anon_sym_orderby, anon_sym_group, anon_sym_select, - 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, - [38640] = 15, + anon_sym_as, + anon_sym_is, + anon_sym_DASH_GT, + anon_sym_with, + [32828] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -563666,17 +558021,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4271), 4, - anon_sym_EQ_GT, - anon_sym_when, - anon_sym_and, - anon_sym_or, - ACTIONS(5397), 4, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_RBRACE, - STATE(4219), 9, + STATE(4162), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -563686,7 +558031,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5092), 11, + ACTIONS(5372), 12, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, @@ -563698,10 +558043,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT, - ACTIONS(5090), 23, + anon_sym_or, + ACTIONS(5370), 31, anon_sym_LBRACK, - anon_sym_COLON, anon_sym_LPAREN, + anon_sym_where, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_STAR, @@ -563715,14 +558061,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, - [38732] = 13, + [32917] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -563743,7 +558097,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - STATE(4220), 9, + STATE(4163), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -563753,51 +558107,52 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(4122), 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, + ACTIONS(5432), 12, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, - anon_sym_STAR, - anon_sym_EQ_GT, - ACTIONS(4120), 28, - anon_sym_alias, - anon_sym_global, - anon_sym_file, + 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(5430), 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, - [38820] = 17, + anon_sym_as, + anon_sym_is, + anon_sym_DASH_GT, + anon_sym_with, + [33006] = 29, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -563818,15 +558173,49 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(1397), 1, - anon_sym_LBRACE, - ACTIONS(6574), 1, + ACTIONS(4753), 1, anon_sym_LPAREN, - STATE(4294), 1, + ACTIONS(4792), 1, + anon_sym_DOT, + ACTIONS(4794), 1, + anon_sym_DASH_GT, + ACTIONS(4819), 1, + anon_sym_LBRACK, + ACTIONS(4823), 1, + anon_sym_BANG, + ACTIONS(6264), 1, + anon_sym_switch, + ACTIONS(6278), 1, + anon_sym_with, + ACTIONS(6390), 1, + anon_sym_SLASH, + ACTIONS(6398), 1, + anon_sym_GT_GT, + ACTIONS(6404), 1, + anon_sym_DOT_DOT, + STATE(2419), 1, + sym_bracketed_argument_list, + STATE(2958), 1, sym_argument_list, - STATE(4645), 1, - sym_initializer_expression, - STATE(4221), 9, + ACTIONS(4825), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6386), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6388), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(6396), 2, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + ACTIONS(5739), 5, + anon_sym_LT, + anon_sym_GT, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_AMP, + STATE(4164), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -563836,47 +558225,26 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(4806), 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(4802), 27, - sym_interpolation_close_brace, - anon_sym_LBRACK, - anon_sym_COLON, - anon_sym_COMMA, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_STAR, - anon_sym_PERCENT, + ACTIONS(5737), 18, + 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_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, - [38916] = 40, + [33127] = 26, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -563897,88 +558265,75 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4755), 1, - anon_sym_DASH_GT, - ACTIONS(4804), 1, + ACTIONS(4753), 1, anon_sym_LPAREN, - ACTIONS(4808), 1, + ACTIONS(4792), 1, anon_sym_DOT, - ACTIONS(4839), 1, - anon_sym_BANG, - ACTIONS(5573), 1, + ACTIONS(4794), 1, + anon_sym_DASH_GT, + ACTIONS(4819), 1, anon_sym_LBRACK, - ACTIONS(6343), 1, + ACTIONS(4823), 1, + anon_sym_BANG, + ACTIONS(6264), 1, anon_sym_switch, - ACTIONS(6353), 1, - anon_sym_as, - ACTIONS(6357), 1, + ACTIONS(6278), 1, anon_sym_with, - ACTIONS(6529), 1, - anon_sym_QMARK, - ACTIONS(6535), 1, + ACTIONS(6390), 1, anon_sym_SLASH, - ACTIONS(6537), 1, - anon_sym_CARET, - ACTIONS(6539), 1, - anon_sym_PIPE, - ACTIONS(6541), 1, - anon_sym_AMP, - ACTIONS(6545), 1, - anon_sym_GT_GT, - ACTIONS(6551), 1, + ACTIONS(6404), 1, anon_sym_DOT_DOT, - ACTIONS(6553), 1, - anon_sym_AMP_AMP, - ACTIONS(6555), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6557), 1, - anon_sym_QMARK_QMARK, - ACTIONS(6559), 1, - anon_sym_is, - STATE(2485), 1, + STATE(2419), 1, sym_bracketed_argument_list, - STATE(3035), 1, + STATE(2958), 1, sym_argument_list, - ACTIONS(4841), 2, + ACTIONS(4825), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6525), 2, + ACTIONS(6388), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(5739), 8, anon_sym_LT, anon_sym_GT, - ACTIONS(6531), 2, + anon_sym_QMARK, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6533), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(6543), 2, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT_GT, + 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, + ACTIONS(5737), 20, + anon_sym_where, + anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(6547), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6549), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5899), 7, - 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, - STATE(4222), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - [39058] = 14, + anon_sym_as, + anon_sym_is, + [33242] = 24, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -563999,37 +558354,51 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(6561), 1, - anon_sym_and, - 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, - ACTIONS(6069), 12, + ACTIONS(4753), 1, + anon_sym_LPAREN, + ACTIONS(4792), 1, + anon_sym_DOT, + ACTIONS(4794), 1, + anon_sym_DASH_GT, + ACTIONS(4819), 1, + anon_sym_LBRACK, + ACTIONS(4823), 1, + anon_sym_BANG, + ACTIONS(6264), 1, + anon_sym_switch, + ACTIONS(6278), 1, + anon_sym_with, + ACTIONS(6404), 1, + anon_sym_DOT_DOT, + STATE(2419), 1, + sym_bracketed_argument_list, + STATE(2958), 1, + sym_argument_list, + ACTIONS(4825), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5739), 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, - anon_sym_or, - ACTIONS(6067), 29, - anon_sym_LBRACK, - anon_sym_LPAREN, + STATE(4166), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + ACTIONS(5737), 22, anon_sym_where, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, anon_sym_STAR, anon_sym_PERCENT, anon_sym_CARET, @@ -564039,12 +558408,11 @@ 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, @@ -564052,9 +558420,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, - [39148] = 40, + [33353] = 35, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -564075,78 +558441,61 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4755), 1, - anon_sym_DASH_GT, - ACTIONS(4804), 1, + ACTIONS(4753), 1, anon_sym_LPAREN, - ACTIONS(4808), 1, + ACTIONS(4792), 1, anon_sym_DOT, - ACTIONS(4839), 1, - anon_sym_BANG, - ACTIONS(5573), 1, + ACTIONS(4794), 1, + anon_sym_DASH_GT, + ACTIONS(4819), 1, anon_sym_LBRACK, - ACTIONS(6343), 1, + ACTIONS(4823), 1, + anon_sym_BANG, + ACTIONS(6264), 1, anon_sym_switch, - ACTIONS(6353), 1, + ACTIONS(6274), 1, anon_sym_as, - ACTIONS(6357), 1, + ACTIONS(6278), 1, anon_sym_with, - ACTIONS(6529), 1, - anon_sym_QMARK, - ACTIONS(6535), 1, + ACTIONS(6390), 1, anon_sym_SLASH, - ACTIONS(6537), 1, - anon_sym_CARET, - ACTIONS(6539), 1, - anon_sym_PIPE, - ACTIONS(6541), 1, + ACTIONS(6394), 1, anon_sym_AMP, - ACTIONS(6545), 1, + ACTIONS(6398), 1, anon_sym_GT_GT, - ACTIONS(6551), 1, + ACTIONS(6404), 1, anon_sym_DOT_DOT, - ACTIONS(6553), 1, - anon_sym_AMP_AMP, - ACTIONS(6555), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6557), 1, - anon_sym_QMARK_QMARK, - ACTIONS(6559), 1, + ACTIONS(6406), 1, anon_sym_is, - STATE(2485), 1, + STATE(2419), 1, sym_bracketed_argument_list, - STATE(3035), 1, + STATE(2958), 1, sym_argument_list, - ACTIONS(4841), 2, + ACTIONS(4825), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6525), 2, + ACTIONS(5739), 2, + anon_sym_QMARK, + anon_sym_PIPE, + ACTIONS(6384), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(6531), 2, + ACTIONS(6386), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6533), 2, + ACTIONS(6388), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(6543), 2, + ACTIONS(6396), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(6547), 2, + ACTIONS(6400), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6549), 2, + ACTIONS(6402), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5072), 7, - anon_sym_where, - anon_sym_from, - anon_sym_join, - anon_sym_let, - anon_sym_orderby, - anon_sym_group, - anon_sym_select, - STATE(4224), 9, + STATE(4167), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -564156,7 +558505,20 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [39290] = 15, + ACTIONS(5737), 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, + [33486] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -564177,63 +558539,89 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(6561), 1, - anon_sym_and, - ACTIONS(6563), 1, - anon_sym_or, - STATE(4225), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - ACTIONS(6207), 11, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, + ACTIONS(4753), 1, + anon_sym_LPAREN, + ACTIONS(4792), 1, + anon_sym_DOT, + ACTIONS(4794), 1, + anon_sym_DASH_GT, + ACTIONS(4819), 1, + anon_sym_LBRACK, + ACTIONS(4823), 1, anon_sym_BANG, - anon_sym_PLUS, - anon_sym_DASH, + ACTIONS(5739), 1, + anon_sym_QMARK, + ACTIONS(6264), 1, + anon_sym_switch, + ACTIONS(6274), 1, + anon_sym_as, + ACTIONS(6278), 1, + anon_sym_with, + ACTIONS(6390), 1, anon_sym_SLASH, - anon_sym_PIPE, + ACTIONS(6392), 1, + anon_sym_CARET, + ACTIONS(6394), 1, anon_sym_AMP, + ACTIONS(6398), 1, anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(6205), 29, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_where, + ACTIONS(6404), 1, + anon_sym_DOT_DOT, + ACTIONS(6406), 1, + anon_sym_is, + ACTIONS(6408), 1, + anon_sym_PIPE, + ACTIONS(6410), 1, + anon_sym_AMP_AMP, + ACTIONS(6416), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6418), 1, + anon_sym_QMARK_QMARK, + STATE(2419), 1, + sym_bracketed_argument_list, + STATE(2958), 1, + sym_argument_list, + ACTIONS(4825), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + ACTIONS(6384), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(6386), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6388), 2, anon_sym_STAR, anon_sym_PERCENT, - anon_sym_CARET, + ACTIONS(6396), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, + ACTIONS(6400), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + ACTIONS(6402), 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(5737), 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, - anon_sym_as, - anon_sym_is, - anon_sym_DASH_GT, - anon_sym_with, - [39382] = 40, + STATE(4168), 9, + sym_preproc_region, + 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] = 35, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -564254,78 +558642,61 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4100), 1, + ACTIONS(4753), 1, + anon_sym_LPAREN, + ACTIONS(4792), 1, anon_sym_DOT, - ACTIONS(4102), 1, + ACTIONS(4794), 1, anon_sym_DASH_GT, - ACTIONS(5264), 1, - anon_sym_LPAREN, - ACTIONS(5302), 1, - anon_sym_LBRACK, - ACTIONS(5304), 1, + ACTIONS(4823), 1, anon_sym_BANG, - ACTIONS(6453), 1, - anon_sym_QMARK, - ACTIONS(6459), 1, + ACTIONS(5549), 1, + anon_sym_LBRACK, + ACTIONS(6355), 1, + anon_sym_switch, + ACTIONS(6365), 1, + anon_sym_as, + ACTIONS(6369), 1, + anon_sym_with, + ACTIONS(6433), 1, anon_sym_SLASH, - ACTIONS(6461), 1, - anon_sym_CARET, - ACTIONS(6463), 1, - anon_sym_PIPE, - ACTIONS(6465), 1, + ACTIONS(6435), 1, anon_sym_AMP, - ACTIONS(6469), 1, + ACTIONS(6439), 1, anon_sym_GT_GT, - ACTIONS(6475), 1, - anon_sym_switch, - ACTIONS(6477), 1, + ACTIONS(6445), 1, anon_sym_DOT_DOT, - ACTIONS(6479), 1, - anon_sym_AMP_AMP, - ACTIONS(6481), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6483), 1, - anon_sym_QMARK_QMARK, - ACTIONS(6485), 1, - anon_sym_as, - ACTIONS(6487), 1, + ACTIONS(6447), 1, anon_sym_is, - ACTIONS(6489), 1, - anon_sym_with, - STATE(2808), 1, + STATE(2467), 1, sym_bracketed_argument_list, - STATE(3487), 1, + STATE(2958), 1, sym_argument_list, - ACTIONS(5306), 2, + ACTIONS(4825), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6451), 2, + ACTIONS(5739), 2, + anon_sym_QMARK, + anon_sym_PIPE, + ACTIONS(6427), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(6455), 2, + ACTIONS(6429), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6457), 2, + ACTIONS(6431), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(6467), 2, + ACTIONS(6437), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(6471), 2, + ACTIONS(6441), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6473), 2, + ACTIONS(6443), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5777), 7, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_and, - anon_sym_or, - STATE(4226), 9, + STATE(4169), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -564335,7 +558706,19 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [39524] = 24, + ACTIONS(5737), 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, + [33761] = 35, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -564356,40 +558739,61 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4100), 1, + ACTIONS(4092), 1, anon_sym_DOT, - ACTIONS(4102), 1, + ACTIONS(4094), 1, anon_sym_DASH_GT, - ACTIONS(5264), 1, + ACTIONS(5227), 1, anon_sym_LPAREN, - ACTIONS(5302), 1, + ACTIONS(5236), 1, anon_sym_LBRACK, - ACTIONS(5304), 1, + ACTIONS(5238), 1, anon_sym_BANG, - ACTIONS(6475), 1, + ACTIONS(6017), 1, anon_sym_switch, - ACTIONS(6477), 1, - anon_sym_DOT_DOT, - ACTIONS(6489), 1, + ACTIONS(6027), 1, + anon_sym_as, + ACTIONS(6031), 1, anon_sym_with, - STATE(2808), 1, + ACTIONS(6455), 1, + anon_sym_SLASH, + ACTIONS(6457), 1, + anon_sym_AMP, + ACTIONS(6461), 1, + anon_sym_GT_GT, + ACTIONS(6467), 1, + anon_sym_DOT_DOT, + ACTIONS(6469), 1, + anon_sym_is, + STATE(2605), 1, sym_bracketed_argument_list, - STATE(3487), 1, + STATE(3348), 1, sym_argument_list, - ACTIONS(5306), 2, + ACTIONS(5240), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5664), 9, + ACTIONS(5739), 2, + anon_sym_QMARK, + anon_sym_PIPE, + ACTIONS(6449), 2, anon_sym_LT, anon_sym_GT, - anon_sym_QMARK, + ACTIONS(6451), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT_GT, - STATE(4227), 9, + ACTIONS(6453), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(6459), 2, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + ACTIONS(6463), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6465), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + STATE(4170), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -564399,29 +558803,19 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5660), 21, - anon_sym_SEMI, + ACTIONS(5737), 11, + 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, - [39634] = 40, + anon_sym_into, + [33893] = 33, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -564442,78 +558836,57 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4075), 1, + ACTIONS(4092), 1, anon_sym_DOT, - ACTIONS(4077), 1, + ACTIONS(4094), 1, anon_sym_DASH_GT, - ACTIONS(5247), 1, + ACTIONS(5227), 1, anon_sym_LPAREN, - ACTIONS(5283), 1, + ACTIONS(5236), 1, anon_sym_LBRACK, - ACTIONS(5285), 1, + ACTIONS(5238), 1, anon_sym_BANG, - ACTIONS(6147), 1, + ACTIONS(6017), 1, anon_sym_switch, - ACTIONS(6157), 1, + ACTIONS(6027), 1, anon_sym_as, - ACTIONS(6161), 1, + ACTIONS(6031), 1, anon_sym_with, - ACTIONS(6493), 1, - anon_sym_QMARK, - ACTIONS(6499), 1, + ACTIONS(6455), 1, anon_sym_SLASH, - ACTIONS(6501), 1, - anon_sym_CARET, - ACTIONS(6503), 1, - anon_sym_PIPE, - ACTIONS(6505), 1, - anon_sym_AMP, - ACTIONS(6509), 1, + ACTIONS(6461), 1, anon_sym_GT_GT, - ACTIONS(6515), 1, + ACTIONS(6467), 1, anon_sym_DOT_DOT, - ACTIONS(6517), 1, - anon_sym_AMP_AMP, - ACTIONS(6519), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6521), 1, - anon_sym_QMARK_QMARK, - ACTIONS(6523), 1, + ACTIONS(6469), 1, anon_sym_is, - STATE(2613), 1, + STATE(2605), 1, sym_bracketed_argument_list, - STATE(3259), 1, + STATE(3348), 1, sym_argument_list, - ACTIONS(5287), 2, + ACTIONS(5240), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6491), 2, + ACTIONS(6449), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(6495), 2, + ACTIONS(6451), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6497), 2, + ACTIONS(6453), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(6507), 2, + ACTIONS(6459), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(6511), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(6513), 2, + ACTIONS(6465), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5745), 7, - anon_sym_COLON, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_and, - anon_sym_or, - anon_sym_into, - STATE(4228), 9, + ACTIONS(5739), 3, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_AMP, + STATE(4171), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -564523,7 +558896,21 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [39776] = 40, + ACTIONS(5737), 13, + 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, + anon_sym_into, + [34021] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -564544,78 +558931,78 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4075), 1, + ACTIONS(4042), 1, anon_sym_DOT, - ACTIONS(4077), 1, + ACTIONS(4044), 1, anon_sym_DASH_GT, - ACTIONS(5247), 1, + ACTIONS(5257), 1, anon_sym_LPAREN, - ACTIONS(5283), 1, + ACTIONS(5300), 1, anon_sym_LBRACK, - ACTIONS(5285), 1, + ACTIONS(5302), 1, anon_sym_BANG, - ACTIONS(6147), 1, - anon_sym_switch, - ACTIONS(6157), 1, - anon_sym_as, - ACTIONS(6161), 1, - anon_sym_with, - ACTIONS(6493), 1, + ACTIONS(6473), 1, anon_sym_QMARK, - ACTIONS(6499), 1, + ACTIONS(6479), 1, anon_sym_SLASH, - ACTIONS(6501), 1, + ACTIONS(6481), 1, anon_sym_CARET, - ACTIONS(6503), 1, + ACTIONS(6483), 1, anon_sym_PIPE, - ACTIONS(6505), 1, + ACTIONS(6485), 1, anon_sym_AMP, - ACTIONS(6509), 1, + ACTIONS(6489), 1, anon_sym_GT_GT, - ACTIONS(6515), 1, + ACTIONS(6495), 1, + anon_sym_switch, + ACTIONS(6497), 1, anon_sym_DOT_DOT, - ACTIONS(6517), 1, + ACTIONS(6499), 1, anon_sym_AMP_AMP, - ACTIONS(6519), 1, + ACTIONS(6501), 1, anon_sym_PIPE_PIPE, - ACTIONS(6521), 1, + ACTIONS(6503), 1, anon_sym_QMARK_QMARK, - ACTIONS(6523), 1, + ACTIONS(6505), 1, + anon_sym_as, + ACTIONS(6507), 1, anon_sym_is, - STATE(2613), 1, + ACTIONS(6509), 1, + anon_sym_with, + STATE(2759), 1, sym_bracketed_argument_list, - STATE(3259), 1, + STATE(3381), 1, sym_argument_list, - ACTIONS(5287), 2, + ACTIONS(5304), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6491), 2, + ACTIONS(6471), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(6495), 2, + ACTIONS(6475), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6497), 2, + ACTIONS(6477), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(6507), 2, + ACTIONS(6487), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(6511), 2, + ACTIONS(6491), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6513), 2, + ACTIONS(6493), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5777), 7, - anon_sym_COLON, + ACTIONS(5849), 7, + anon_sym_SEMI, anon_sym_COMMA, + anon_sym_RBRACK, anon_sym_RPAREN, anon_sym_RBRACE, anon_sym_and, anon_sym_or, - anon_sym_into, - STATE(4229), 9, + STATE(4172), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -564625,7 +559012,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [39918] = 40, + [34163] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -564646,78 +559033,78 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4075), 1, + ACTIONS(4753), 1, + anon_sym_LPAREN, + ACTIONS(4792), 1, anon_sym_DOT, - ACTIONS(4077), 1, + ACTIONS(4794), 1, anon_sym_DASH_GT, - ACTIONS(5247), 1, - anon_sym_LPAREN, - ACTIONS(5283), 1, - anon_sym_LBRACK, - ACTIONS(5285), 1, + ACTIONS(4823), 1, anon_sym_BANG, - ACTIONS(6147), 1, + ACTIONS(5549), 1, + anon_sym_LBRACK, + ACTIONS(6355), 1, anon_sym_switch, - ACTIONS(6157), 1, + ACTIONS(6365), 1, anon_sym_as, - ACTIONS(6161), 1, + ACTIONS(6369), 1, anon_sym_with, - ACTIONS(6493), 1, - anon_sym_QMARK, - ACTIONS(6499), 1, + ACTIONS(6433), 1, anon_sym_SLASH, - ACTIONS(6501), 1, - anon_sym_CARET, - ACTIONS(6503), 1, - anon_sym_PIPE, - ACTIONS(6505), 1, + ACTIONS(6435), 1, anon_sym_AMP, - ACTIONS(6509), 1, + ACTIONS(6439), 1, anon_sym_GT_GT, - ACTIONS(6515), 1, + ACTIONS(6445), 1, anon_sym_DOT_DOT, + ACTIONS(6447), 1, + anon_sym_is, + ACTIONS(6513), 1, + anon_sym_QMARK, + ACTIONS(6515), 1, + anon_sym_CARET, ACTIONS(6517), 1, - anon_sym_AMP_AMP, + anon_sym_PIPE, ACTIONS(6519), 1, - anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, ACTIONS(6521), 1, - anon_sym_QMARK_QMARK, + anon_sym_PIPE_PIPE, ACTIONS(6523), 1, - anon_sym_is, - STATE(2613), 1, + anon_sym_QMARK_QMARK, + STATE(2467), 1, sym_bracketed_argument_list, - STATE(3259), 1, + STATE(2958), 1, sym_argument_list, - ACTIONS(5287), 2, + ACTIONS(4825), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6491), 2, + ACTIONS(6427), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(6495), 2, + ACTIONS(6429), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6497), 2, + ACTIONS(6431), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(6507), 2, + ACTIONS(6437), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(6511), 2, + ACTIONS(6441), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6513), 2, + ACTIONS(6443), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5767), 7, - anon_sym_COLON, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_and, - anon_sym_or, - anon_sym_into, - STATE(4230), 9, + ACTIONS(6511), 7, + anon_sym_where, + anon_sym_from, + 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, @@ -564727,7 +559114,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [40060] = 22, + [34305] = 22, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -564748,26 +559135,26 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4100), 1, + ACTIONS(4042), 1, anon_sym_DOT, - ACTIONS(4102), 1, + ACTIONS(4044), 1, anon_sym_DASH_GT, - ACTIONS(5264), 1, + ACTIONS(5257), 1, anon_sym_LPAREN, - ACTIONS(5302), 1, + ACTIONS(5300), 1, anon_sym_LBRACK, - ACTIONS(5304), 1, + ACTIONS(5302), 1, anon_sym_BANG, - ACTIONS(6477), 1, + ACTIONS(6497), 1, anon_sym_DOT_DOT, - STATE(2808), 1, + STATE(2759), 1, sym_bracketed_argument_list, - STATE(3487), 1, + STATE(3381), 1, sym_argument_list, - ACTIONS(5306), 2, + ACTIONS(5304), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1223), 9, + ACTIONS(5743), 9, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, @@ -564777,7 +559164,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_AMP, anon_sym_GT_GT, - STATE(4231), 9, + STATE(4174), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -564787,7 +559174,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(1221), 23, + ACTIONS(5741), 23, anon_sym_SEMI, anon_sym_COMMA, anon_sym_RBRACK, @@ -564811,98 +559198,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_is, anon_sym_with, - [40166] = 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(2967), 1, - sym__identifier_token, - ACTIONS(2979), 1, - anon_sym_LPAREN, - ACTIONS(3454), 1, - anon_sym_delegate, - ACTIONS(4737), 1, - anon_sym_var, - ACTIONS(6576), 1, - sym_predefined_type, - STATE(3691), 1, - sym__reserved_identifier, - STATE(4087), 1, - sym_identifier, - STATE(4109), 1, - sym_generic_name, - STATE(6467), 1, - sym__name, - STATE(6611), 1, - sym_tuple_type, - STATE(6752), 1, - sym_array_type, - STATE(7162), 1, - sym__array_base_type, - STATE(7413), 1, - sym__pointer_base_type, - STATE(7560), 1, - sym_implicit_type, - STATE(7710), 1, - sym__ref_base_type, - STATE(4096), 3, - sym_alias_qualified_name, - sym__simple_name, - sym_qualified_name, - STATE(6759), 3, - sym_nullable_type, - sym_pointer_type, - sym_function_pointer_type, - 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(2971), 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, - [40286] = 22, + [34411] = 29, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -564923,36 +559219,49 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4755), 1, + ACTIONS(4042), 1, + anon_sym_DOT, + ACTIONS(4044), 1, anon_sym_DASH_GT, - ACTIONS(4804), 1, + ACTIONS(5257), 1, anon_sym_LPAREN, - ACTIONS(4808), 1, - anon_sym_DOT, - ACTIONS(4839), 1, - anon_sym_BANG, - ACTIONS(5573), 1, + ACTIONS(5300), 1, anon_sym_LBRACK, - ACTIONS(6551), 1, + ACTIONS(5302), 1, + anon_sym_BANG, + ACTIONS(6479), 1, + anon_sym_SLASH, + ACTIONS(6489), 1, + anon_sym_GT_GT, + ACTIONS(6495), 1, + anon_sym_switch, + ACTIONS(6497), 1, anon_sym_DOT_DOT, - STATE(2485), 1, + ACTIONS(6509), 1, + anon_sym_with, + STATE(2759), 1, sym_bracketed_argument_list, - STATE(3035), 1, + STATE(3381), 1, sym_argument_list, - ACTIONS(4841), 2, + ACTIONS(5304), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5733), 9, + ACTIONS(6475), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6477), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(6487), 2, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + ACTIONS(5739), 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(4233), 9, + STATE(4175), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -564962,31 +559271,25 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5731), 23, - anon_sym_where, - anon_sym_STAR, - anon_sym_PERCENT, + ACTIONS(5737), 17, + 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_switch, + 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_with, - [40392] = 22, + [34531] = 26, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -565007,36 +559310,44 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4755), 1, + ACTIONS(4042), 1, + anon_sym_DOT, + ACTIONS(4044), 1, anon_sym_DASH_GT, - ACTIONS(4804), 1, + ACTIONS(5257), 1, anon_sym_LPAREN, - ACTIONS(4808), 1, - anon_sym_DOT, - ACTIONS(4839), 1, - anon_sym_BANG, - ACTIONS(5573), 1, + ACTIONS(5300), 1, anon_sym_LBRACK, - ACTIONS(6551), 1, + ACTIONS(5302), 1, + anon_sym_BANG, + ACTIONS(6479), 1, + anon_sym_SLASH, + ACTIONS(6495), 1, + anon_sym_switch, + ACTIONS(6497), 1, anon_sym_DOT_DOT, - STATE(2485), 1, + ACTIONS(6509), 1, + anon_sym_with, + STATE(2759), 1, sym_bracketed_argument_list, - STATE(3035), 1, + STATE(3381), 1, sym_argument_list, - ACTIONS(4841), 2, + ACTIONS(5304), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1223), 9, + ACTIONS(6477), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(5739), 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(4234), 9, + STATE(4176), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -565046,10 +559357,12 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(1221), 23, - anon_sym_where, - anon_sym_STAR, - anon_sym_PERCENT, + ACTIONS(5737), 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, @@ -565057,20 +559370,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_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_with, - [40498] = 15, + [34645] = 37, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -565091,88 +559398,64 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(6578), 1, - anon_sym_into, - STATE(4237), 1, - aux_sym__query_body_repeat2, - 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(6005), 11, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, + ACTIONS(4092), 1, + anon_sym_DOT, + ACTIONS(4094), 1, + anon_sym_DASH_GT, + ACTIONS(5227), 1, + anon_sym_LPAREN, + ACTIONS(5236), 1, + anon_sym_LBRACK, + ACTIONS(5238), 1, anon_sym_BANG, - anon_sym_PLUS, - anon_sym_DASH, + ACTIONS(5739), 1, + anon_sym_QMARK, + ACTIONS(6017), 1, + anon_sym_switch, + ACTIONS(6027), 1, + anon_sym_as, + ACTIONS(6031), 1, + anon_sym_with, + ACTIONS(6455), 1, anon_sym_SLASH, - anon_sym_PIPE, + ACTIONS(6457), 1, anon_sym_AMP, + ACTIONS(6461), 1, anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(6003), 29, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_where, + ACTIONS(6467), 1, + anon_sym_DOT_DOT, + ACTIONS(6469), 1, + anon_sym_is, + ACTIONS(6525), 1, + anon_sym_CARET, + ACTIONS(6527), 1, + anon_sym_PIPE, + STATE(2605), 1, + sym_bracketed_argument_list, + STATE(3348), 1, + sym_argument_list, + ACTIONS(5240), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + ACTIONS(6449), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(6451), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6453), 2, anon_sym_STAR, anon_sym_PERCENT, - anon_sym_CARET, + ACTIONS(6459), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, + ACTIONS(6463), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + ACTIONS(6465), 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, - [40590] = 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(6578), 1, - anon_sym_into, - STATE(4238), 1, - aux_sym__query_body_repeat2, - STATE(4236), 9, + STATE(4177), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -565182,49 +559465,18 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(6005), 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(6003), 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, + ACTIONS(5737), 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, - anon_sym_as, - anon_sym_is, - anon_sym_DASH_GT, - anon_sym_with, - [40682] = 14, + anon_sym_into, + [34781] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -565245,139 +559497,88 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(6580), 1, - anon_sym_into, - STATE(4237), 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(5951), 11, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, + ACTIONS(4042), 1, + anon_sym_DOT, + ACTIONS(4044), 1, + anon_sym_DASH_GT, + ACTIONS(5257), 1, + anon_sym_LPAREN, + ACTIONS(5300), 1, + anon_sym_LBRACK, + ACTIONS(5302), 1, anon_sym_BANG, - anon_sym_PLUS, - anon_sym_DASH, + ACTIONS(6473), 1, + anon_sym_QMARK, + ACTIONS(6479), 1, anon_sym_SLASH, + ACTIONS(6481), 1, + anon_sym_CARET, + ACTIONS(6483), 1, anon_sym_PIPE, + ACTIONS(6485), 1, anon_sym_AMP, + ACTIONS(6489), 1, anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(5949), 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, + ACTIONS(6495), 1, anon_sym_switch, + ACTIONS(6497), 1, anon_sym_DOT_DOT, + ACTIONS(6499), 1, anon_sym_AMP_AMP, + ACTIONS(6501), 1, anon_sym_PIPE_PIPE, + ACTIONS(6503), 1, anon_sym_QMARK_QMARK, - anon_sym_from, - anon_sym_join, - anon_sym_let, - anon_sym_orderby, - anon_sym_group, - anon_sym_select, + ACTIONS(6505), 1, anon_sym_as, + ACTIONS(6507), 1, anon_sym_is, - anon_sym_DASH_GT, + ACTIONS(6509), 1, anon_sym_with, - [40772] = 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(6578), 1, - anon_sym_into, - STATE(4237), 1, - aux_sym__query_body_repeat2, - STATE(4238), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - ACTIONS(5960), 11, + STATE(2759), 1, + sym_bracketed_argument_list, + STATE(3381), 1, + sym_argument_list, + ACTIONS(5304), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6471), 2, anon_sym_LT, anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, + ACTIONS(6475), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(5958), 29, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_where, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, + ACTIONS(6477), 2, anon_sym_STAR, anon_sym_PERCENT, - anon_sym_CARET, + ACTIONS(6487), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, + ACTIONS(6491), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + ACTIONS(6493), 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, - [40864] = 22, + ACTIONS(4996), 7, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_and, + anon_sym_or, + 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, + [34923] = 24, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -565398,26 +559599,30 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4075), 1, + ACTIONS(4092), 1, anon_sym_DOT, - ACTIONS(4077), 1, + ACTIONS(4094), 1, anon_sym_DASH_GT, - ACTIONS(5247), 1, + ACTIONS(5227), 1, anon_sym_LPAREN, - ACTIONS(5283), 1, + ACTIONS(5236), 1, anon_sym_LBRACK, - ACTIONS(5285), 1, + ACTIONS(5238), 1, anon_sym_BANG, - ACTIONS(6515), 1, + ACTIONS(6017), 1, + anon_sym_switch, + ACTIONS(6031), 1, + anon_sym_with, + ACTIONS(6467), 1, anon_sym_DOT_DOT, - STATE(2613), 1, + STATE(2605), 1, sym_bracketed_argument_list, - STATE(3259), 1, + STATE(3348), 1, sym_argument_list, - ACTIONS(5287), 2, + ACTIONS(5240), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1223), 9, + ACTIONS(5739), 9, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, @@ -565427,7 +559632,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_AMP, anon_sym_GT_GT, - STATE(4239), 9, + STATE(4179), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -565437,7 +559642,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(1221), 23, + ACTIONS(5737), 21, anon_sym_COLON, anon_sym_COMMA, anon_sym_RPAREN, @@ -565451,7 +559656,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, @@ -565460,8 +559664,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_into, anon_sym_as, anon_sym_is, - anon_sym_with, - [40970] = 29, + [35033] = 38, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -565482,49 +559685,76 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4755), 1, + ACTIONS(4092), 1, + anon_sym_DOT, + ACTIONS(4094), 1, anon_sym_DASH_GT, - ACTIONS(4804), 1, + ACTIONS(5227), 1, anon_sym_LPAREN, - ACTIONS(4808), 1, - anon_sym_DOT, - ACTIONS(4839), 1, - anon_sym_BANG, - ACTIONS(5573), 1, + ACTIONS(5236), 1, anon_sym_LBRACK, - ACTIONS(6343), 1, + ACTIONS(5238), 1, + anon_sym_BANG, + ACTIONS(5739), 1, + anon_sym_QMARK, + ACTIONS(6017), 1, anon_sym_switch, - ACTIONS(6357), 1, + ACTIONS(6027), 1, + anon_sym_as, + ACTIONS(6031), 1, anon_sym_with, - ACTIONS(6535), 1, + ACTIONS(6455), 1, anon_sym_SLASH, - ACTIONS(6545), 1, + ACTIONS(6457), 1, + anon_sym_AMP, + ACTIONS(6461), 1, anon_sym_GT_GT, - ACTIONS(6551), 1, + ACTIONS(6467), 1, anon_sym_DOT_DOT, - STATE(2485), 1, + ACTIONS(6469), 1, + anon_sym_is, + ACTIONS(6525), 1, + anon_sym_CARET, + ACTIONS(6527), 1, + anon_sym_PIPE, + ACTIONS(6529), 1, + anon_sym_AMP_AMP, + STATE(2605), 1, sym_bracketed_argument_list, - STATE(3035), 1, + STATE(3348), 1, sym_argument_list, - ACTIONS(4841), 2, + ACTIONS(5240), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6531), 2, + ACTIONS(6449), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(6451), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6533), 2, + ACTIONS(6453), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(6543), 2, + ACTIONS(6459), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(5664), 5, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_AMP, - STATE(4240), 9, + ACTIONS(6463), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6465), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(5737), 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(4180), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -565534,25 +559764,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5660), 17, - 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, - anon_sym_orderby, - anon_sym_group, - anon_sym_select, - anon_sym_as, - anon_sym_is, - [41090] = 22, + [35171] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -565573,128 +559785,78 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4075), 1, + ACTIONS(4042), 1, anon_sym_DOT, - ACTIONS(4077), 1, + ACTIONS(4044), 1, anon_sym_DASH_GT, - ACTIONS(5247), 1, + ACTIONS(5257), 1, anon_sym_LPAREN, - ACTIONS(5283), 1, + ACTIONS(5300), 1, anon_sym_LBRACK, - ACTIONS(5285), 1, + ACTIONS(5302), 1, anon_sym_BANG, - ACTIONS(6515), 1, - anon_sym_DOT_DOT, - STATE(2613), 1, - sym_bracketed_argument_list, - STATE(3259), 1, - sym_argument_list, - ACTIONS(5287), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5733), 9, - anon_sym_LT, - anon_sym_GT, + ACTIONS(6473), 1, anon_sym_QMARK, - anon_sym_PLUS, - anon_sym_DASH, + ACTIONS(6479), 1, anon_sym_SLASH, + ACTIONS(6481), 1, + anon_sym_CARET, + ACTIONS(6483), 1, anon_sym_PIPE, + ACTIONS(6485), 1, anon_sym_AMP, + ACTIONS(6489), 1, anon_sym_GT_GT, - STATE(4241), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - ACTIONS(5731), 23, - 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, + ACTIONS(6495), 1, anon_sym_switch, - anon_sym_and, - anon_sym_or, + ACTIONS(6497), 1, + anon_sym_DOT_DOT, + ACTIONS(6499), 1, anon_sym_AMP_AMP, + ACTIONS(6501), 1, anon_sym_PIPE_PIPE, + ACTIONS(6503), 1, anon_sym_QMARK_QMARK, - anon_sym_into, + ACTIONS(6505), 1, anon_sym_as, + ACTIONS(6507), 1, anon_sym_is, + ACTIONS(6509), 1, anon_sym_with, - [41196] = 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(4755), 1, - anon_sym_DASH_GT, - ACTIONS(4804), 1, - anon_sym_LPAREN, - ACTIONS(4808), 1, - anon_sym_DOT, - ACTIONS(4839), 1, - anon_sym_BANG, - ACTIONS(5573), 1, - anon_sym_LBRACK, - ACTIONS(6343), 1, - anon_sym_switch, - ACTIONS(6357), 1, - anon_sym_with, - ACTIONS(6535), 1, - anon_sym_SLASH, - ACTIONS(6551), 1, - anon_sym_DOT_DOT, - STATE(2485), 1, + STATE(2759), 1, sym_bracketed_argument_list, - STATE(3035), 1, + STATE(3381), 1, sym_argument_list, - ACTIONS(4841), 2, + ACTIONS(5304), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6533), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(5664), 8, + ACTIONS(6471), 2, anon_sym_LT, anon_sym_GT, - anon_sym_QMARK, + ACTIONS(6475), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT_GT, - STATE(4242), 9, + ACTIONS(6477), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(6487), 2, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + ACTIONS(6491), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6493), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(5801), 7, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_and, + anon_sym_or, + STATE(4181), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -565704,27 +559866,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5660), 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, - 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, - [41310] = 24, + [35313] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -565745,40 +559887,78 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4755), 1, + ACTIONS(4092), 1, + anon_sym_DOT, + ACTIONS(4094), 1, anon_sym_DASH_GT, - ACTIONS(4804), 1, + ACTIONS(5227), 1, anon_sym_LPAREN, - ACTIONS(4808), 1, - anon_sym_DOT, - ACTIONS(4839), 1, - anon_sym_BANG, - ACTIONS(5573), 1, + ACTIONS(5236), 1, anon_sym_LBRACK, - ACTIONS(6343), 1, + ACTIONS(5238), 1, + anon_sym_BANG, + ACTIONS(5739), 1, + anon_sym_QMARK, + ACTIONS(6017), 1, anon_sym_switch, - ACTIONS(6357), 1, + ACTIONS(6027), 1, + anon_sym_as, + ACTIONS(6031), 1, anon_sym_with, - ACTIONS(6551), 1, + ACTIONS(6455), 1, + anon_sym_SLASH, + ACTIONS(6457), 1, + anon_sym_AMP, + ACTIONS(6461), 1, + anon_sym_GT_GT, + ACTIONS(6467), 1, anon_sym_DOT_DOT, - STATE(2485), 1, + ACTIONS(6469), 1, + anon_sym_is, + ACTIONS(6525), 1, + anon_sym_CARET, + ACTIONS(6527), 1, + anon_sym_PIPE, + ACTIONS(6529), 1, + anon_sym_AMP_AMP, + ACTIONS(6531), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6533), 1, + anon_sym_QMARK_QMARK, + STATE(2605), 1, sym_bracketed_argument_list, - STATE(3035), 1, + STATE(3348), 1, sym_argument_list, - ACTIONS(4841), 2, + ACTIONS(5240), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5664), 9, + ACTIONS(6449), 2, anon_sym_LT, anon_sym_GT, - anon_sym_QMARK, + ACTIONS(6451), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT_GT, - STATE(4243), 9, + ACTIONS(6453), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(6459), 2, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + ACTIONS(6463), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6465), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(5737), 7, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_and, + anon_sym_or, + anon_sym_into, + STATE(4182), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -565788,29 +559968,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5660), 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_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, - anon_sym_orderby, - anon_sym_group, - anon_sym_select, - anon_sym_as, - anon_sym_is, - [41420] = 40, + [35455] = 38, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -565831,78 +559989,76 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4755), 1, + ACTIONS(4042), 1, + anon_sym_DOT, + ACTIONS(4044), 1, anon_sym_DASH_GT, - ACTIONS(4804), 1, + ACTIONS(5257), 1, anon_sym_LPAREN, - ACTIONS(4808), 1, - anon_sym_DOT, - ACTIONS(4839), 1, - anon_sym_BANG, - ACTIONS(5573), 1, + ACTIONS(5300), 1, anon_sym_LBRACK, - ACTIONS(6343), 1, - anon_sym_switch, - ACTIONS(6353), 1, - anon_sym_as, - ACTIONS(6357), 1, - anon_sym_with, - ACTIONS(6529), 1, + ACTIONS(5302), 1, + anon_sym_BANG, + ACTIONS(5739), 1, anon_sym_QMARK, - ACTIONS(6535), 1, + ACTIONS(6479), 1, anon_sym_SLASH, - ACTIONS(6537), 1, + ACTIONS(6481), 1, anon_sym_CARET, - ACTIONS(6539), 1, + ACTIONS(6483), 1, anon_sym_PIPE, - ACTIONS(6541), 1, + ACTIONS(6485), 1, anon_sym_AMP, - ACTIONS(6545), 1, + ACTIONS(6489), 1, anon_sym_GT_GT, - ACTIONS(6551), 1, + ACTIONS(6495), 1, + anon_sym_switch, + ACTIONS(6497), 1, anon_sym_DOT_DOT, - ACTIONS(6553), 1, + ACTIONS(6499), 1, anon_sym_AMP_AMP, - ACTIONS(6555), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6557), 1, - anon_sym_QMARK_QMARK, - ACTIONS(6559), 1, + ACTIONS(6505), 1, + anon_sym_as, + ACTIONS(6507), 1, anon_sym_is, - STATE(2485), 1, + ACTIONS(6509), 1, + anon_sym_with, + STATE(2759), 1, sym_bracketed_argument_list, - STATE(3035), 1, + STATE(3381), 1, sym_argument_list, - ACTIONS(4841), 2, + ACTIONS(5304), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6525), 2, + ACTIONS(6471), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(6531), 2, + ACTIONS(6475), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6533), 2, + ACTIONS(6477), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(6543), 2, + ACTIONS(6487), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(6547), 2, + ACTIONS(6491), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6549), 2, + ACTIONS(6493), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(6583), 7, - anon_sym_where, - anon_sym_from, - anon_sym_join, - anon_sym_let, - anon_sym_orderby, - anon_sym_group, - anon_sym_select, - STATE(4244), 9, + ACTIONS(5737), 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(4183), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -565912,7 +560068,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [41562] = 35, + [35593] = 36, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -565933,61 +560089,63 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4755), 1, + ACTIONS(4092), 1, + anon_sym_DOT, + ACTIONS(4094), 1, anon_sym_DASH_GT, - ACTIONS(4804), 1, + ACTIONS(5227), 1, anon_sym_LPAREN, - ACTIONS(4808), 1, - anon_sym_DOT, - ACTIONS(4839), 1, - anon_sym_BANG, - ACTIONS(5573), 1, + ACTIONS(5236), 1, anon_sym_LBRACK, - ACTIONS(6343), 1, + ACTIONS(5238), 1, + anon_sym_BANG, + ACTIONS(6017), 1, anon_sym_switch, - ACTIONS(6353), 1, + ACTIONS(6027), 1, anon_sym_as, - ACTIONS(6357), 1, + ACTIONS(6031), 1, anon_sym_with, - ACTIONS(6535), 1, + ACTIONS(6455), 1, anon_sym_SLASH, - ACTIONS(6541), 1, + ACTIONS(6457), 1, anon_sym_AMP, - ACTIONS(6545), 1, + ACTIONS(6461), 1, anon_sym_GT_GT, - ACTIONS(6551), 1, + ACTIONS(6467), 1, anon_sym_DOT_DOT, - ACTIONS(6559), 1, + ACTIONS(6469), 1, anon_sym_is, - STATE(2485), 1, + ACTIONS(6525), 1, + anon_sym_CARET, + STATE(2605), 1, sym_bracketed_argument_list, - STATE(3035), 1, + STATE(3348), 1, sym_argument_list, - ACTIONS(4841), 2, + ACTIONS(5240), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5664), 2, + ACTIONS(5739), 2, anon_sym_QMARK, anon_sym_PIPE, - ACTIONS(6525), 2, + ACTIONS(6449), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(6531), 2, + ACTIONS(6451), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6533), 2, + ACTIONS(6453), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(6543), 2, + ACTIONS(6459), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(6547), 2, + ACTIONS(6463), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6549), 2, + ACTIONS(6465), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - STATE(4245), 9, + STATE(4184), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -565997,19 +560155,18 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5660), 11, - anon_sym_where, - anon_sym_CARET, + ACTIONS(5737), 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, - [41694] = 36, + anon_sym_into, + [35727] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -566030,63 +560187,78 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4755), 1, + ACTIONS(4092), 1, + anon_sym_DOT, + ACTIONS(4094), 1, anon_sym_DASH_GT, - ACTIONS(4804), 1, + ACTIONS(5227), 1, anon_sym_LPAREN, - ACTIONS(4808), 1, - anon_sym_DOT, - ACTIONS(4839), 1, - anon_sym_BANG, - ACTIONS(5573), 1, + ACTIONS(5236), 1, anon_sym_LBRACK, - ACTIONS(6343), 1, + ACTIONS(5238), 1, + anon_sym_BANG, + ACTIONS(6017), 1, anon_sym_switch, - ACTIONS(6353), 1, + ACTIONS(6027), 1, anon_sym_as, - ACTIONS(6357), 1, + ACTIONS(6031), 1, anon_sym_with, - ACTIONS(6535), 1, + ACTIONS(6455), 1, anon_sym_SLASH, - ACTIONS(6537), 1, - anon_sym_CARET, - ACTIONS(6541), 1, + ACTIONS(6457), 1, anon_sym_AMP, - ACTIONS(6545), 1, + ACTIONS(6461), 1, anon_sym_GT_GT, - ACTIONS(6551), 1, + ACTIONS(6467), 1, anon_sym_DOT_DOT, - ACTIONS(6559), 1, + ACTIONS(6469), 1, anon_sym_is, - STATE(2485), 1, + ACTIONS(6525), 1, + anon_sym_CARET, + ACTIONS(6527), 1, + anon_sym_PIPE, + ACTIONS(6529), 1, + anon_sym_AMP_AMP, + ACTIONS(6531), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6533), 1, + anon_sym_QMARK_QMARK, + ACTIONS(6535), 1, + anon_sym_QMARK, + STATE(2605), 1, sym_bracketed_argument_list, - STATE(3035), 1, + STATE(3348), 1, sym_argument_list, - ACTIONS(4841), 2, + ACTIONS(5240), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5664), 2, - anon_sym_QMARK, - anon_sym_PIPE, - ACTIONS(6525), 2, + ACTIONS(6449), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(6531), 2, + ACTIONS(6451), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6533), 2, + ACTIONS(6453), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(6543), 2, + ACTIONS(6459), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(6547), 2, + ACTIONS(6463), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6549), 2, + ACTIONS(6465), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - STATE(4246), 9, + ACTIONS(5849), 7, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_and, + anon_sym_or, + anon_sym_into, + STATE(4185), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -566096,18 +560268,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5660), 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, - [41828] = 34, + [35869] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -566128,60 +560289,78 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4755), 1, + ACTIONS(4092), 1, + anon_sym_DOT, + ACTIONS(4094), 1, anon_sym_DASH_GT, - ACTIONS(4804), 1, + ACTIONS(5227), 1, anon_sym_LPAREN, - ACTIONS(4808), 1, - anon_sym_DOT, - ACTIONS(4839), 1, - anon_sym_BANG, - ACTIONS(5573), 1, + ACTIONS(5236), 1, anon_sym_LBRACK, - ACTIONS(6343), 1, + ACTIONS(5238), 1, + anon_sym_BANG, + ACTIONS(6017), 1, anon_sym_switch, - ACTIONS(6353), 1, + ACTIONS(6027), 1, anon_sym_as, - ACTIONS(6357), 1, + ACTIONS(6031), 1, anon_sym_with, - ACTIONS(6535), 1, + ACTIONS(6455), 1, anon_sym_SLASH, - ACTIONS(6545), 1, + ACTIONS(6457), 1, + anon_sym_AMP, + ACTIONS(6461), 1, anon_sym_GT_GT, - ACTIONS(6551), 1, + ACTIONS(6467), 1, anon_sym_DOT_DOT, - ACTIONS(6559), 1, + ACTIONS(6469), 1, anon_sym_is, - STATE(2485), 1, + ACTIONS(6525), 1, + anon_sym_CARET, + ACTIONS(6527), 1, + anon_sym_PIPE, + ACTIONS(6529), 1, + anon_sym_AMP_AMP, + ACTIONS(6531), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6533), 1, + anon_sym_QMARK_QMARK, + ACTIONS(6535), 1, + anon_sym_QMARK, + STATE(2605), 1, sym_bracketed_argument_list, - STATE(3035), 1, + STATE(3348), 1, sym_argument_list, - ACTIONS(4841), 2, + ACTIONS(5240), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6525), 2, + ACTIONS(6449), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(6531), 2, + ACTIONS(6451), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6533), 2, + ACTIONS(6453), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(6543), 2, + ACTIONS(6459), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(6547), 2, + ACTIONS(6463), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6549), 2, + ACTIONS(6465), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5664), 3, - anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_AMP, - STATE(4247), 9, + ACTIONS(4996), 7, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_and, + anon_sym_or, + anon_sym_into, + STATE(4186), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -566191,19 +560370,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5660), 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, - [41958] = 27, + [36011] = 29, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -566224,45 +560391,45 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4755), 1, - anon_sym_DASH_GT, - ACTIONS(4804), 1, + ACTIONS(2965), 1, + sym__identifier_token, + ACTIONS(2977), 1, anon_sym_LPAREN, - ACTIONS(4808), 1, - anon_sym_DOT, - ACTIONS(4839), 1, - anon_sym_BANG, - ACTIONS(5573), 1, - anon_sym_LBRACK, - ACTIONS(6343), 1, - anon_sym_switch, - ACTIONS(6357), 1, - anon_sym_with, - ACTIONS(6535), 1, - anon_sym_SLASH, - ACTIONS(6551), 1, - anon_sym_DOT_DOT, - STATE(2485), 1, - sym_bracketed_argument_list, - STATE(3035), 1, - sym_argument_list, - ACTIONS(4841), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6531), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(6533), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(5664), 6, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT_GT, - STATE(4248), 9, + ACTIONS(3438), 1, + anon_sym_delegate, + ACTIONS(4705), 1, + anon_sym_var, + ACTIONS(6537), 1, + sym_predefined_type, + STATE(3654), 1, + sym__reserved_identifier, + STATE(4073), 1, + sym_generic_name, + STATE(4081), 1, + sym_identifier, + STATE(6516), 1, + sym__name, + STATE(6624), 1, + sym_tuple_type, + STATE(6834), 1, + sym_array_type, + STATE(7233), 1, + sym__array_base_type, + STATE(7357), 1, + sym__pointer_base_type, + STATE(7408), 1, + sym__ref_base_type, + STATE(7448), 1, + sym_implicit_type, + STATE(4068), 3, + sym_alias_qualified_name, + sym__simple_name, + sym_qualified_name, + STATE(6836), 3, + sym_nullable_type, + sym_pointer_type, + sym_function_pointer_type, + STATE(4187), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -566272,27 +560439,29 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5660), 19, + ACTIONS(2969), 21, + anon_sym_alias, + anon_sym_global, + anon_sym_file, 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, + 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, - anon_sym_as, - anon_sym_is, - [42074] = 33, + [36131] = 35, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -566313,57 +560482,61 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4755), 1, + ACTIONS(4042), 1, + anon_sym_DOT, + ACTIONS(4044), 1, anon_sym_DASH_GT, - ACTIONS(4804), 1, + ACTIONS(5257), 1, anon_sym_LPAREN, - ACTIONS(4808), 1, - anon_sym_DOT, - ACTIONS(4839), 1, - anon_sym_BANG, - ACTIONS(5573), 1, + ACTIONS(5300), 1, anon_sym_LBRACK, - ACTIONS(6343), 1, - anon_sym_switch, - ACTIONS(6353), 1, - anon_sym_as, - ACTIONS(6357), 1, - anon_sym_with, - ACTIONS(6535), 1, + ACTIONS(5302), 1, + anon_sym_BANG, + ACTIONS(6479), 1, anon_sym_SLASH, - ACTIONS(6545), 1, + ACTIONS(6485), 1, + anon_sym_AMP, + ACTIONS(6489), 1, anon_sym_GT_GT, - ACTIONS(6551), 1, + ACTIONS(6495), 1, + anon_sym_switch, + ACTIONS(6497), 1, anon_sym_DOT_DOT, - ACTIONS(6559), 1, + ACTIONS(6505), 1, + anon_sym_as, + ACTIONS(6507), 1, anon_sym_is, - STATE(2485), 1, + ACTIONS(6509), 1, + anon_sym_with, + STATE(2759), 1, sym_bracketed_argument_list, - STATE(3035), 1, + STATE(3381), 1, sym_argument_list, - ACTIONS(4841), 2, + ACTIONS(5304), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6525), 2, + ACTIONS(5739), 2, + anon_sym_QMARK, + anon_sym_PIPE, + ACTIONS(6471), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(6531), 2, + ACTIONS(6475), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6533), 2, + ACTIONS(6477), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(6543), 2, + ACTIONS(6487), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(6549), 2, + ACTIONS(6491), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6493), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5664), 3, - anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_AMP, - STATE(4249), 9, + STATE(4188), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -566373,21 +560546,19 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5660), 13, - anon_sym_where, + ACTIONS(5737), 11, + 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, - anon_sym_from, - anon_sym_join, - anon_sym_let, - anon_sym_orderby, - anon_sym_group, - anon_sym_select, - [42202] = 40, + [36263] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -566408,78 +560579,78 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4755), 1, + ACTIONS(4042), 1, + anon_sym_DOT, + ACTIONS(4044), 1, anon_sym_DASH_GT, - ACTIONS(4804), 1, + ACTIONS(5257), 1, anon_sym_LPAREN, - ACTIONS(4808), 1, - anon_sym_DOT, - ACTIONS(4839), 1, - anon_sym_BANG, - ACTIONS(5573), 1, + ACTIONS(5300), 1, anon_sym_LBRACK, - ACTIONS(6343), 1, - anon_sym_switch, - ACTIONS(6353), 1, - anon_sym_as, - ACTIONS(6357), 1, - anon_sym_with, - ACTIONS(6529), 1, + ACTIONS(5302), 1, + anon_sym_BANG, + ACTIONS(5739), 1, anon_sym_QMARK, - ACTIONS(6535), 1, + ACTIONS(6479), 1, anon_sym_SLASH, - ACTIONS(6537), 1, + ACTIONS(6481), 1, anon_sym_CARET, - ACTIONS(6539), 1, + ACTIONS(6483), 1, anon_sym_PIPE, - ACTIONS(6541), 1, + ACTIONS(6485), 1, anon_sym_AMP, - ACTIONS(6545), 1, + ACTIONS(6489), 1, anon_sym_GT_GT, - ACTIONS(6551), 1, + ACTIONS(6495), 1, + anon_sym_switch, + ACTIONS(6497), 1, anon_sym_DOT_DOT, - ACTIONS(6553), 1, + ACTIONS(6499), 1, anon_sym_AMP_AMP, - ACTIONS(6555), 1, + ACTIONS(6501), 1, anon_sym_PIPE_PIPE, - ACTIONS(6557), 1, + ACTIONS(6503), 1, anon_sym_QMARK_QMARK, - ACTIONS(6559), 1, + ACTIONS(6505), 1, + anon_sym_as, + ACTIONS(6507), 1, anon_sym_is, - STATE(2485), 1, + ACTIONS(6509), 1, + anon_sym_with, + STATE(2759), 1, sym_bracketed_argument_list, - STATE(3035), 1, + STATE(3381), 1, sym_argument_list, - ACTIONS(4841), 2, + ACTIONS(5304), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6525), 2, + ACTIONS(6471), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(6531), 2, + ACTIONS(6475), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6533), 2, + ACTIONS(6477), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(6543), 2, + ACTIONS(6487), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(6547), 2, + ACTIONS(6491), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6549), 2, + ACTIONS(6493), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5882), 7, - anon_sym_where, - anon_sym_from, - anon_sym_join, - anon_sym_let, - anon_sym_orderby, - anon_sym_group, - anon_sym_select, - STATE(4250), 9, + ACTIONS(5737), 7, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_and, + anon_sym_or, + STATE(4189), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -566489,7 +560660,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [42344] = 37, + [36405] = 29, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -566510,64 +560681,49 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4755), 1, - anon_sym_DASH_GT, - ACTIONS(4804), 1, + ACTIONS(4753), 1, anon_sym_LPAREN, - ACTIONS(4808), 1, + ACTIONS(4792), 1, anon_sym_DOT, - ACTIONS(4839), 1, + ACTIONS(4794), 1, + anon_sym_DASH_GT, + ACTIONS(4823), 1, anon_sym_BANG, - ACTIONS(5573), 1, + ACTIONS(5549), 1, anon_sym_LBRACK, - ACTIONS(5664), 1, - anon_sym_QMARK, - ACTIONS(6343), 1, + ACTIONS(6355), 1, anon_sym_switch, - ACTIONS(6353), 1, - anon_sym_as, - ACTIONS(6357), 1, + ACTIONS(6369), 1, anon_sym_with, - ACTIONS(6535), 1, + ACTIONS(6433), 1, anon_sym_SLASH, - ACTIONS(6537), 1, - anon_sym_CARET, - ACTIONS(6539), 1, - anon_sym_PIPE, - ACTIONS(6541), 1, - anon_sym_AMP, - ACTIONS(6545), 1, + ACTIONS(6439), 1, anon_sym_GT_GT, - ACTIONS(6551), 1, + ACTIONS(6445), 1, anon_sym_DOT_DOT, - ACTIONS(6559), 1, - anon_sym_is, - STATE(2485), 1, + STATE(2467), 1, sym_bracketed_argument_list, - STATE(3035), 1, + STATE(2958), 1, sym_argument_list, - ACTIONS(4841), 2, + ACTIONS(4825), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6525), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(6531), 2, + ACTIONS(6429), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6533), 2, + ACTIONS(6431), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(6543), 2, + ACTIONS(6437), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(6547), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(6549), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - STATE(4251), 9, + ACTIONS(5739), 5, + anon_sym_LT, + anon_sym_GT, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_AMP, + STATE(4190), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -566577,8 +560733,13 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5660), 10, + ACTIONS(5737), 17, 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, @@ -566588,7 +560749,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_orderby, anon_sym_group, anon_sym_select, - [42480] = 38, + anon_sym_as, + anon_sym_is, + [36525] = 26, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -566609,67 +560772,63 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4755), 1, - anon_sym_DASH_GT, - ACTIONS(4804), 1, + ACTIONS(4753), 1, anon_sym_LPAREN, - ACTIONS(4808), 1, + ACTIONS(4792), 1, anon_sym_DOT, - ACTIONS(4839), 1, + ACTIONS(4794), 1, + anon_sym_DASH_GT, + ACTIONS(4823), 1, anon_sym_BANG, - ACTIONS(5573), 1, + ACTIONS(5549), 1, anon_sym_LBRACK, - ACTIONS(5664), 1, - anon_sym_QMARK, - ACTIONS(6343), 1, + ACTIONS(6355), 1, anon_sym_switch, - ACTIONS(6353), 1, - anon_sym_as, - ACTIONS(6357), 1, + ACTIONS(6369), 1, anon_sym_with, - ACTIONS(6535), 1, + ACTIONS(6433), 1, anon_sym_SLASH, - ACTIONS(6537), 1, - anon_sym_CARET, - ACTIONS(6539), 1, - anon_sym_PIPE, - ACTIONS(6541), 1, - anon_sym_AMP, - ACTIONS(6545), 1, - anon_sym_GT_GT, - ACTIONS(6551), 1, + ACTIONS(6445), 1, anon_sym_DOT_DOT, - ACTIONS(6553), 1, - anon_sym_AMP_AMP, - ACTIONS(6559), 1, - anon_sym_is, - STATE(2485), 1, + STATE(2467), 1, sym_bracketed_argument_list, - STATE(3035), 1, + STATE(2958), 1, sym_argument_list, - ACTIONS(4841), 2, + ACTIONS(4825), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6525), 2, + ACTIONS(6431), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(5739), 8, anon_sym_LT, anon_sym_GT, - ACTIONS(6531), 2, + anon_sym_QMARK, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6533), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(6543), 2, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT_GT, + STATE(4191), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + ACTIONS(5737), 19, + anon_sym_where, + anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(6547), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6549), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5660), 9, - anon_sym_where, + anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_QMARK_QMARK, anon_sym_from, @@ -566678,17 +560837,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_orderby, anon_sym_group, anon_sym_select, - STATE(4252), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - [42618] = 40, + anon_sym_as, + anon_sym_is, + [36639] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -566709,70 +560860,70 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4755), 1, - anon_sym_DASH_GT, - ACTIONS(4804), 1, + ACTIONS(4753), 1, anon_sym_LPAREN, - ACTIONS(4808), 1, + ACTIONS(4792), 1, anon_sym_DOT, - ACTIONS(4839), 1, + ACTIONS(4794), 1, + anon_sym_DASH_GT, + ACTIONS(4823), 1, anon_sym_BANG, - ACTIONS(5573), 1, + ACTIONS(5549), 1, anon_sym_LBRACK, - ACTIONS(5664), 1, - anon_sym_QMARK, - ACTIONS(6343), 1, + ACTIONS(6355), 1, anon_sym_switch, - ACTIONS(6353), 1, + ACTIONS(6365), 1, anon_sym_as, - ACTIONS(6357), 1, + ACTIONS(6369), 1, anon_sym_with, - ACTIONS(6535), 1, + ACTIONS(6433), 1, anon_sym_SLASH, - ACTIONS(6537), 1, - anon_sym_CARET, - ACTIONS(6539), 1, - anon_sym_PIPE, - ACTIONS(6541), 1, + ACTIONS(6435), 1, anon_sym_AMP, - ACTIONS(6545), 1, + ACTIONS(6439), 1, anon_sym_GT_GT, - ACTIONS(6551), 1, + ACTIONS(6445), 1, anon_sym_DOT_DOT, - ACTIONS(6553), 1, + ACTIONS(6447), 1, + anon_sym_is, + ACTIONS(6513), 1, + anon_sym_QMARK, + ACTIONS(6515), 1, + anon_sym_CARET, + ACTIONS(6517), 1, + anon_sym_PIPE, + ACTIONS(6519), 1, anon_sym_AMP_AMP, - ACTIONS(6555), 1, + ACTIONS(6521), 1, anon_sym_PIPE_PIPE, - ACTIONS(6557), 1, + ACTIONS(6523), 1, anon_sym_QMARK_QMARK, - ACTIONS(6559), 1, - anon_sym_is, - STATE(2485), 1, + STATE(2467), 1, sym_bracketed_argument_list, - STATE(3035), 1, + STATE(2958), 1, sym_argument_list, - ACTIONS(4841), 2, + ACTIONS(4825), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6525), 2, + ACTIONS(6427), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(6531), 2, + ACTIONS(6429), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6533), 2, + ACTIONS(6431), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(6543), 2, + ACTIONS(6437), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(6547), 2, + ACTIONS(6441), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6549), 2, + ACTIONS(6443), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5660), 7, + ACTIONS(5652), 7, anon_sym_where, anon_sym_from, anon_sym_join, @@ -566780,7 +560931,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_orderby, anon_sym_group, anon_sym_select, - STATE(4253), 9, + STATE(4192), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -566790,7 +560941,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [42760] = 15, + [36781] = 22, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -566811,11 +560962,36 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(6578), 1, - anon_sym_into, - STATE(4235), 1, - aux_sym__query_body_repeat2, - STATE(4254), 9, + ACTIONS(4753), 1, + anon_sym_LPAREN, + ACTIONS(4792), 1, + anon_sym_DOT, + ACTIONS(4794), 1, + anon_sym_DASH_GT, + ACTIONS(4823), 1, + anon_sym_BANG, + ACTIONS(5549), 1, + anon_sym_LBRACK, + ACTIONS(6445), 1, + anon_sym_DOT_DOT, + STATE(2467), 1, + sym_bracketed_argument_list, + STATE(2958), 1, + sym_argument_list, + ACTIONS(4825), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5743), 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(4193), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -566825,8 +561001,69 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(6001), 11, + ACTIONS(5741), 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, + 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, + [36887] = 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(6539), 1, anon_sym_LT, + ACTIONS(6542), 1, + anon_sym_COLON_COLON, + STATE(4406), 1, + sym_type_argument_list, + 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(3638), 11, + anon_sym_COLON, anon_sym_GT, anon_sym_QMARK, anon_sym_BANG, @@ -566837,10 +561074,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT, - ACTIONS(5999), 29, + ACTIONS(3640), 28, + sym_interpolation_close_brace, anon_sym_LBRACK, + anon_sym_COMMA, anon_sym_LPAREN, - anon_sym_where, + anon_sym_LBRACE, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_STAR, @@ -566854,20 +561093,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_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, anon_sym_DASH_GT, anon_sym_with, - [42852] = 40, + [36981] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -566888,70 +561124,70 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4755), 1, - anon_sym_DASH_GT, - ACTIONS(4804), 1, + ACTIONS(4753), 1, anon_sym_LPAREN, - ACTIONS(4808), 1, + ACTIONS(4792), 1, anon_sym_DOT, - ACTIONS(4839), 1, + ACTIONS(4794), 1, + anon_sym_DASH_GT, + ACTIONS(4823), 1, anon_sym_BANG, - ACTIONS(5573), 1, + ACTIONS(5549), 1, anon_sym_LBRACK, - ACTIONS(6343), 1, + ACTIONS(6355), 1, anon_sym_switch, - ACTIONS(6353), 1, + ACTIONS(6365), 1, anon_sym_as, - ACTIONS(6357), 1, + ACTIONS(6369), 1, anon_sym_with, - ACTIONS(6529), 1, - anon_sym_QMARK, - ACTIONS(6535), 1, + ACTIONS(6433), 1, anon_sym_SLASH, - ACTIONS(6537), 1, - anon_sym_CARET, - ACTIONS(6539), 1, - anon_sym_PIPE, - ACTIONS(6541), 1, + ACTIONS(6435), 1, anon_sym_AMP, - ACTIONS(6545), 1, + ACTIONS(6439), 1, anon_sym_GT_GT, - ACTIONS(6551), 1, + ACTIONS(6445), 1, anon_sym_DOT_DOT, - ACTIONS(6553), 1, + ACTIONS(6447), 1, + anon_sym_is, + ACTIONS(6513), 1, + anon_sym_QMARK, + ACTIONS(6515), 1, + anon_sym_CARET, + ACTIONS(6517), 1, + anon_sym_PIPE, + ACTIONS(6519), 1, anon_sym_AMP_AMP, - ACTIONS(6555), 1, + ACTIONS(6521), 1, anon_sym_PIPE_PIPE, - ACTIONS(6557), 1, + ACTIONS(6523), 1, anon_sym_QMARK_QMARK, - ACTIONS(6559), 1, - anon_sym_is, - STATE(2485), 1, + STATE(2467), 1, sym_bracketed_argument_list, - STATE(3035), 1, + STATE(2958), 1, sym_argument_list, - ACTIONS(4841), 2, + ACTIONS(4825), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6525), 2, + ACTIONS(6427), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(6531), 2, + ACTIONS(6429), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6533), 2, + ACTIONS(6431), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(6543), 2, + ACTIONS(6437), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(6547), 2, + ACTIONS(6441), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6549), 2, + ACTIONS(6443), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5858), 7, + ACTIONS(5801), 7, anon_sym_where, anon_sym_from, anon_sym_join, @@ -566959,7 +561195,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_orderby, anon_sym_group, anon_sym_select, - STATE(4255), 9, + STATE(4195), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -566969,7 +561205,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [42994] = 40, + [37123] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -566990,70 +561226,70 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4755), 1, - anon_sym_DASH_GT, - ACTIONS(4804), 1, + ACTIONS(4753), 1, anon_sym_LPAREN, - ACTIONS(4808), 1, + ACTIONS(4792), 1, anon_sym_DOT, - ACTIONS(4839), 1, + ACTIONS(4794), 1, + anon_sym_DASH_GT, + ACTIONS(4823), 1, anon_sym_BANG, - ACTIONS(5573), 1, + ACTIONS(5549), 1, anon_sym_LBRACK, - ACTIONS(6343), 1, + ACTIONS(6355), 1, anon_sym_switch, - ACTIONS(6353), 1, + ACTIONS(6365), 1, anon_sym_as, - ACTIONS(6357), 1, + ACTIONS(6369), 1, anon_sym_with, - ACTIONS(6529), 1, - anon_sym_QMARK, - ACTIONS(6535), 1, + ACTIONS(6433), 1, anon_sym_SLASH, - ACTIONS(6537), 1, - anon_sym_CARET, - ACTIONS(6539), 1, - anon_sym_PIPE, - ACTIONS(6541), 1, + ACTIONS(6435), 1, anon_sym_AMP, - ACTIONS(6545), 1, + ACTIONS(6439), 1, anon_sym_GT_GT, - ACTIONS(6551), 1, + ACTIONS(6445), 1, anon_sym_DOT_DOT, - ACTIONS(6553), 1, + ACTIONS(6447), 1, + anon_sym_is, + ACTIONS(6513), 1, + anon_sym_QMARK, + ACTIONS(6515), 1, + anon_sym_CARET, + ACTIONS(6517), 1, + anon_sym_PIPE, + ACTIONS(6519), 1, anon_sym_AMP_AMP, - ACTIONS(6555), 1, + ACTIONS(6521), 1, anon_sym_PIPE_PIPE, - ACTIONS(6557), 1, + ACTIONS(6523), 1, anon_sym_QMARK_QMARK, - ACTIONS(6559), 1, - anon_sym_is, - STATE(2485), 1, + STATE(2467), 1, sym_bracketed_argument_list, - STATE(3035), 1, + STATE(2958), 1, sym_argument_list, - ACTIONS(4841), 2, + ACTIONS(4825), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6525), 2, + ACTIONS(6427), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(6531), 2, + ACTIONS(6429), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6533), 2, + ACTIONS(6431), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(6543), 2, + ACTIONS(6437), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(6547), 2, + ACTIONS(6441), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6549), 2, + ACTIONS(6443), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5864), 7, + ACTIONS(6544), 7, anon_sym_where, anon_sym_from, anon_sym_join, @@ -567061,7 +561297,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_orderby, anon_sym_group, anon_sym_select, - STATE(4256), 9, + STATE(4196), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -567071,7 +561307,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [43136] = 40, + [37265] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -567092,77 +561328,78 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4100), 1, + ACTIONS(4092), 1, anon_sym_DOT, - ACTIONS(4102), 1, + ACTIONS(4094), 1, anon_sym_DASH_GT, - ACTIONS(5264), 1, + ACTIONS(5227), 1, anon_sym_LPAREN, - ACTIONS(5302), 1, + ACTIONS(5236), 1, anon_sym_LBRACK, - ACTIONS(5304), 1, + ACTIONS(5238), 1, anon_sym_BANG, - ACTIONS(6475), 1, + ACTIONS(6017), 1, anon_sym_switch, - ACTIONS(6485), 1, + ACTIONS(6027), 1, anon_sym_as, - ACTIONS(6489), 1, + ACTIONS(6031), 1, anon_sym_with, - ACTIONS(6587), 1, - anon_sym_QMARK, - ACTIONS(6593), 1, + ACTIONS(6455), 1, anon_sym_SLASH, - ACTIONS(6595), 1, - anon_sym_CARET, - ACTIONS(6597), 1, - anon_sym_PIPE, - ACTIONS(6599), 1, + ACTIONS(6457), 1, anon_sym_AMP, - ACTIONS(6603), 1, + ACTIONS(6461), 1, anon_sym_GT_GT, - ACTIONS(6609), 1, + ACTIONS(6467), 1, anon_sym_DOT_DOT, - ACTIONS(6611), 1, + ACTIONS(6469), 1, + anon_sym_is, + ACTIONS(6525), 1, + anon_sym_CARET, + ACTIONS(6527), 1, + anon_sym_PIPE, + ACTIONS(6529), 1, anon_sym_AMP_AMP, - ACTIONS(6613), 1, + ACTIONS(6531), 1, anon_sym_PIPE_PIPE, - ACTIONS(6615), 1, + ACTIONS(6533), 1, anon_sym_QMARK_QMARK, - ACTIONS(6617), 1, - anon_sym_is, - STATE(2808), 1, + ACTIONS(6535), 1, + anon_sym_QMARK, + STATE(2605), 1, sym_bracketed_argument_list, - STATE(3487), 1, + STATE(3348), 1, sym_argument_list, - ACTIONS(5306), 2, + ACTIONS(5240), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6585), 2, + ACTIONS(6449), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(6589), 2, + ACTIONS(6451), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6591), 2, + ACTIONS(6453), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(6601), 2, + ACTIONS(6459), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(6605), 2, + ACTIONS(6463), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6607), 2, + ACTIONS(6465), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5864), 6, - anon_sym_SEMI, + ACTIONS(5652), 7, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_and, anon_sym_or, - aux_sym_preproc_if_token3, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - STATE(4257), 9, + anon_sym_into, + STATE(4197), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -567172,7 +561409,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [43277] = 29, + [37407] = 24, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -567193,49 +561430,40 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4100), 1, + ACTIONS(4753), 1, + anon_sym_LPAREN, + ACTIONS(4792), 1, anon_sym_DOT, - ACTIONS(4102), 1, + ACTIONS(4794), 1, anon_sym_DASH_GT, - ACTIONS(5264), 1, - anon_sym_LPAREN, - ACTIONS(5302), 1, - anon_sym_LBRACK, - ACTIONS(5304), 1, + ACTIONS(4823), 1, anon_sym_BANG, - ACTIONS(6475), 1, + ACTIONS(5549), 1, + anon_sym_LBRACK, + ACTIONS(6355), 1, anon_sym_switch, - ACTIONS(6489), 1, + ACTIONS(6369), 1, anon_sym_with, - ACTIONS(6593), 1, - anon_sym_SLASH, - ACTIONS(6603), 1, - anon_sym_GT_GT, - ACTIONS(6609), 1, + ACTIONS(6445), 1, anon_sym_DOT_DOT, - STATE(2808), 1, + STATE(2467), 1, sym_bracketed_argument_list, - STATE(3487), 1, + STATE(2958), 1, sym_argument_list, - ACTIONS(5306), 2, + ACTIONS(4825), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6589), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(6591), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(6601), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - ACTIONS(5664), 5, + ACTIONS(5739), 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(4258), 9, + anon_sym_GT_GT, + STATE(4198), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -567245,24 +561473,29 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5660), 16, - anon_sym_SEMI, + ACTIONS(5737), 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_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, - aux_sym_preproc_if_token3, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - [43396] = 15, + [37517] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -567283,11 +561516,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(1397), 1, - anon_sym_LBRACE, - STATE(4643), 1, - sym_initializer_expression, - STATE(4259), 9, + ACTIONS(6546), 1, + anon_sym_and, + STATE(4199), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -567297,7 +561528,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(4831), 11, + ACTIONS(6097), 12, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, @@ -567309,12 +561540,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT, - ACTIONS(4829), 28, - sym_interpolation_close_brace, + anon_sym_or, + ACTIONS(6095), 29, anon_sym_LBRACK, - anon_sym_COLON, - anon_sym_COMMA, anon_sym_LPAREN, + anon_sym_where, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_STAR, @@ -567328,17 +561558,20 @@ 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_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, - [43487] = 40, + [37607] = 22, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -567359,226 +561592,26 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4443), 1, - anon_sym_DASH_GT, - ACTIONS(4533), 1, - anon_sym_DOT, - ACTIONS(6574), 1, + ACTIONS(4753), 1, anon_sym_LPAREN, - ACTIONS(6619), 1, - anon_sym_LBRACK, - ACTIONS(6623), 1, - anon_sym_QMARK, - ACTIONS(6625), 1, - anon_sym_BANG, - ACTIONS(6633), 1, - anon_sym_SLASH, - ACTIONS(6635), 1, - anon_sym_CARET, - ACTIONS(6637), 1, - anon_sym_PIPE, - ACTIONS(6639), 1, - anon_sym_AMP, - ACTIONS(6643), 1, - anon_sym_GT_GT, - ACTIONS(6649), 1, - anon_sym_switch, - ACTIONS(6651), 1, - anon_sym_DOT_DOT, - ACTIONS(6653), 1, - anon_sym_AMP_AMP, - ACTIONS(6655), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6657), 1, - anon_sym_QMARK_QMARK, - ACTIONS(6659), 1, - anon_sym_as, - ACTIONS(6661), 1, - anon_sym_is, - ACTIONS(6663), 1, - anon_sym_with, - STATE(3173), 1, - sym_bracketed_argument_list, - STATE(4583), 1, - sym_argument_list, - ACTIONS(6621), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(6627), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6629), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(6631), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(6641), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - ACTIONS(6645), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(6647), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(5777), 6, - sym_interpolation_close_brace, - anon_sym_COLON, - anon_sym_COMMA, - anon_sym_and, - anon_sym_or, - anon_sym_into, - STATE(4260), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - [43628] = 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(4443), 1, - anon_sym_DASH_GT, - ACTIONS(4533), 1, + ACTIONS(4792), 1, anon_sym_DOT, - ACTIONS(6574), 1, - anon_sym_LPAREN, - ACTIONS(6619), 1, - anon_sym_LBRACK, - ACTIONS(6623), 1, - anon_sym_QMARK, - ACTIONS(6625), 1, - anon_sym_BANG, - ACTIONS(6633), 1, - anon_sym_SLASH, - ACTIONS(6635), 1, - anon_sym_CARET, - ACTIONS(6637), 1, - anon_sym_PIPE, - ACTIONS(6639), 1, - anon_sym_AMP, - ACTIONS(6643), 1, - anon_sym_GT_GT, - ACTIONS(6649), 1, - anon_sym_switch, - ACTIONS(6651), 1, - anon_sym_DOT_DOT, - ACTIONS(6653), 1, - anon_sym_AMP_AMP, - ACTIONS(6655), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6657), 1, - anon_sym_QMARK_QMARK, - ACTIONS(6659), 1, - anon_sym_as, - ACTIONS(6661), 1, - anon_sym_is, - ACTIONS(6663), 1, - anon_sym_with, - STATE(3173), 1, - sym_bracketed_argument_list, - STATE(4583), 1, - sym_argument_list, - ACTIONS(6621), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(6627), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6629), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(6631), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(6641), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - ACTIONS(6645), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(6647), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(5858), 6, - sym_interpolation_close_brace, - anon_sym_COLON, - anon_sym_COMMA, - anon_sym_and, - anon_sym_or, - anon_sym_into, - 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, - [43769] = 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(4443), 1, + ACTIONS(4794), 1, anon_sym_DASH_GT, - ACTIONS(4533), 1, - anon_sym_DOT, - ACTIONS(6574), 1, - anon_sym_LPAREN, - ACTIONS(6619), 1, - anon_sym_LBRACK, - ACTIONS(6625), 1, + ACTIONS(4823), 1, anon_sym_BANG, - STATE(3173), 1, + ACTIONS(5549), 1, + anon_sym_LBRACK, + ACTIONS(6445), 1, + anon_sym_DOT_DOT, + STATE(2467), 1, sym_bracketed_argument_list, - STATE(4583), 1, + STATE(2958), 1, sym_argument_list, - ACTIONS(6627), 2, + ACTIONS(4825), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4837), 9, + ACTIONS(1161), 9, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, @@ -567588,7 +561621,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_AMP, anon_sym_GT_GT, - STATE(4262), 9, + STATE(4200), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -567598,10 +561631,8 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(4833), 23, - sym_interpolation_close_brace, - anon_sym_COLON, - anon_sym_COMMA, + ACTIONS(1147), 23, + anon_sym_where, anon_sym_STAR, anon_sym_PERCENT, anon_sym_CARET, @@ -567612,17 +561643,19 @@ 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_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, - [43872] = 17, + [37713] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -567643,114 +561676,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4912), 1, - anon_sym_LBRACK, - ACTIONS(6665), 1, - anon_sym_LBRACE, - ACTIONS(6668), 1, - anon_sym_QMARK, - STATE(4646), 1, - sym_initializer_expression, - STATE(4263), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - ACTIONS(4922), 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(4916), 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, - 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(6546), 1, anon_sym_and, + ACTIONS(6548), 1, 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, - [43967] = 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(2967), 1, - sym__identifier_token, - ACTIONS(5028), 1, - anon_sym_ref, - STATE(3691), 1, - sym__reserved_identifier, - STATE(4087), 1, - sym_identifier, - STATE(4109), 1, - sym_generic_name, - STATE(6832), 1, - sym__name, - STATE(7047), 1, - sym_ref_type, - STATE(7048), 1, - sym__scoped_base_type, - STATE(4096), 3, - sym_alias_qualified_name, - sym__simple_name, - sym_qualified_name, - ACTIONS(3445), 8, - anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_STAR, - anon_sym_DOT, - anon_sym_COLON_COLON, - STATE(4264), 9, + STATE(4201), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -567760,91 +561690,24 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(2971), 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, - [44072] = 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(4443), 1, - anon_sym_DASH_GT, - ACTIONS(4533), 1, - anon_sym_DOT, - ACTIONS(6574), 1, - anon_sym_LPAREN, - ACTIONS(6619), 1, - anon_sym_LBRACK, - ACTIONS(6625), 1, - anon_sym_BANG, - STATE(3173), 1, - sym_bracketed_argument_list, - STATE(4583), 1, - sym_argument_list, - ACTIONS(6627), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4845), 9, + ACTIONS(5360), 11, 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(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, - ACTIONS(4843), 23, - sym_interpolation_close_brace, - anon_sym_COLON, - anon_sym_COMMA, + 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(5358), 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, @@ -567856,16 +561719,20 @@ 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_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, - [44175] = 16, + [37805] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -567886,13 +561753,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(1397), 1, - anon_sym_LBRACE, - ACTIONS(4849), 1, - anon_sym_LBRACK, - STATE(4687), 1, - sym_initializer_expression, - STATE(4266), 9, + ACTIONS(4241), 4, + anon_sym_EQ_GT, + anon_sym_when, + anon_sym_and, + anon_sym_or, + ACTIONS(5376), 4, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_RBRACE, + STATE(4202), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -567902,7 +561773,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(4852), 11, + ACTIONS(5144), 11, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, @@ -567914,10 +561785,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT, - ACTIONS(4847), 27, - sym_interpolation_close_brace, + ACTIONS(5142), 23, + anon_sym_LBRACK, anon_sym_COLON, - anon_sym_COMMA, anon_sym_LPAREN, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, @@ -567932,17 +561802,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_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, - [44268] = 26, + [37897] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -567963,44 +561830,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4100), 1, - anon_sym_DOT, - ACTIONS(4102), 1, - anon_sym_DASH_GT, - ACTIONS(5264), 1, - anon_sym_LPAREN, - ACTIONS(5302), 1, - anon_sym_LBRACK, - ACTIONS(5304), 1, - anon_sym_BANG, - ACTIONS(6475), 1, - anon_sym_switch, - ACTIONS(6489), 1, - anon_sym_with, - ACTIONS(6593), 1, - anon_sym_SLASH, - ACTIONS(6609), 1, - anon_sym_DOT_DOT, - STATE(2808), 1, - sym_bracketed_argument_list, - STATE(3487), 1, - sym_argument_list, - ACTIONS(5306), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6591), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(5664), 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, + ACTIONS(4241), 4, + anon_sym_EQ_GT, + anon_sym_when, + anon_sym_and, + anon_sym_or, + ACTIONS(5382), 4, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_RBRACE, + STATE(4203), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -568010,8 +561850,26 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5660), 18, - anon_sym_SEMI, + ACTIONS(5158), 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(5156), 23, + 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, @@ -568019,17 +561877,16 @@ 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_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, - [44381] = 40, + anon_sym_DASH_GT, + anon_sym_with, + [37989] = 34, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -568050,77 +561907,60 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4443), 1, - anon_sym_DASH_GT, - ACTIONS(4533), 1, + ACTIONS(4092), 1, anon_sym_DOT, - ACTIONS(6574), 1, + ACTIONS(4094), 1, + anon_sym_DASH_GT, + ACTIONS(5227), 1, anon_sym_LPAREN, - ACTIONS(6619), 1, + ACTIONS(5236), 1, anon_sym_LBRACK, - ACTIONS(6623), 1, - anon_sym_QMARK, - ACTIONS(6625), 1, + ACTIONS(5238), 1, anon_sym_BANG, - ACTIONS(6633), 1, + ACTIONS(6017), 1, + anon_sym_switch, + ACTIONS(6027), 1, + anon_sym_as, + ACTIONS(6031), 1, + anon_sym_with, + ACTIONS(6455), 1, anon_sym_SLASH, - ACTIONS(6635), 1, - anon_sym_CARET, - ACTIONS(6637), 1, - anon_sym_PIPE, - ACTIONS(6639), 1, - anon_sym_AMP, - ACTIONS(6643), 1, + ACTIONS(6461), 1, anon_sym_GT_GT, - ACTIONS(6649), 1, - anon_sym_switch, - ACTIONS(6651), 1, + ACTIONS(6467), 1, anon_sym_DOT_DOT, - ACTIONS(6653), 1, - anon_sym_AMP_AMP, - ACTIONS(6655), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6657), 1, - anon_sym_QMARK_QMARK, - ACTIONS(6659), 1, - anon_sym_as, - ACTIONS(6661), 1, + ACTIONS(6469), 1, anon_sym_is, - ACTIONS(6663), 1, - anon_sym_with, - STATE(3173), 1, + STATE(2605), 1, sym_bracketed_argument_list, - STATE(4583), 1, + STATE(3348), 1, sym_argument_list, - ACTIONS(6621), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(6627), 2, + ACTIONS(5240), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6629), 2, + ACTIONS(6449), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(6451), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6631), 2, + ACTIONS(6453), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(6641), 2, + ACTIONS(6459), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(6645), 2, + ACTIONS(6463), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6647), 2, + ACTIONS(6465), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5864), 6, - sym_interpolation_close_brace, - anon_sym_COLON, - anon_sym_COMMA, - anon_sym_and, - anon_sym_or, - anon_sym_into, - STATE(4268), 9, + ACTIONS(5739), 3, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_AMP, + STATE(4204), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -568130,7 +561970,19 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [44522] = 40, + ACTIONS(5737), 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, + [38119] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -568151,77 +562003,78 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4100), 1, + ACTIONS(4753), 1, + anon_sym_LPAREN, + ACTIONS(4792), 1, anon_sym_DOT, - ACTIONS(4102), 1, + ACTIONS(4794), 1, anon_sym_DASH_GT, - ACTIONS(5264), 1, - anon_sym_LPAREN, - ACTIONS(5302), 1, - anon_sym_LBRACK, - ACTIONS(5304), 1, + ACTIONS(4823), 1, anon_sym_BANG, - ACTIONS(6475), 1, + ACTIONS(5549), 1, + anon_sym_LBRACK, + ACTIONS(6355), 1, anon_sym_switch, - ACTIONS(6485), 1, + ACTIONS(6365), 1, anon_sym_as, - ACTIONS(6489), 1, + ACTIONS(6369), 1, anon_sym_with, - ACTIONS(6587), 1, - anon_sym_QMARK, - ACTIONS(6593), 1, + ACTIONS(6433), 1, anon_sym_SLASH, - ACTIONS(6595), 1, - anon_sym_CARET, - ACTIONS(6597), 1, - anon_sym_PIPE, - ACTIONS(6599), 1, + ACTIONS(6435), 1, anon_sym_AMP, - ACTIONS(6603), 1, + ACTIONS(6439), 1, anon_sym_GT_GT, - ACTIONS(6609), 1, + ACTIONS(6445), 1, anon_sym_DOT_DOT, - ACTIONS(6611), 1, + ACTIONS(6447), 1, + anon_sym_is, + ACTIONS(6513), 1, + anon_sym_QMARK, + ACTIONS(6515), 1, + anon_sym_CARET, + ACTIONS(6517), 1, + anon_sym_PIPE, + ACTIONS(6519), 1, anon_sym_AMP_AMP, - ACTIONS(6613), 1, + ACTIONS(6521), 1, anon_sym_PIPE_PIPE, - ACTIONS(6615), 1, + ACTIONS(6523), 1, anon_sym_QMARK_QMARK, - ACTIONS(6617), 1, - anon_sym_is, - STATE(2808), 1, + STATE(2467), 1, sym_bracketed_argument_list, - STATE(3487), 1, + STATE(2958), 1, sym_argument_list, - ACTIONS(5306), 2, + ACTIONS(4825), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6585), 2, + ACTIONS(6427), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(6589), 2, + ACTIONS(6429), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6591), 2, + ACTIONS(6431), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(6601), 2, + ACTIONS(6437), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(6605), 2, + ACTIONS(6441), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6607), 2, + ACTIONS(6443), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5858), 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(4269), 9, + ACTIONS(5849), 7, + anon_sym_where, + anon_sym_from, + anon_sym_join, + anon_sym_let, + anon_sym_orderby, + anon_sym_group, + anon_sym_select, + STATE(4205), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -568231,7 +562084,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [44663] = 22, + [38261] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -568252,36 +562105,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4100), 1, - anon_sym_DOT, - ACTIONS(4102), 1, - anon_sym_DASH_GT, - ACTIONS(5264), 1, - anon_sym_LPAREN, - ACTIONS(5302), 1, - anon_sym_LBRACK, - ACTIONS(5304), 1, - anon_sym_BANG, - ACTIONS(6609), 1, - anon_sym_DOT_DOT, - STATE(2808), 1, - sym_bracketed_argument_list, - STATE(3487), 1, - sym_argument_list, - ACTIONS(5306), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5733), 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(4270), 9, + ACTIONS(6546), 1, + anon_sym_and, + ACTIONS(6548), 1, + anon_sym_or, + STATE(4206), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -568291,8 +562119,24 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5731), 22, - anon_sym_SEMI, + ACTIONS(6109), 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(6107), 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, @@ -568303,18 +562147,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_or, + 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, - aux_sym_preproc_if_token3, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - [44768] = 40, + [38353] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -568335,77 +562182,78 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4443), 1, - anon_sym_DASH_GT, - ACTIONS(4533), 1, - anon_sym_DOT, - ACTIONS(6574), 1, + ACTIONS(4753), 1, anon_sym_LPAREN, - ACTIONS(6619), 1, - anon_sym_LBRACK, - ACTIONS(6623), 1, - anon_sym_QMARK, - ACTIONS(6625), 1, + ACTIONS(4792), 1, + anon_sym_DOT, + ACTIONS(4794), 1, + anon_sym_DASH_GT, + ACTIONS(4823), 1, anon_sym_BANG, - ACTIONS(6633), 1, + ACTIONS(5549), 1, + anon_sym_LBRACK, + ACTIONS(6355), 1, + anon_sym_switch, + ACTIONS(6365), 1, + anon_sym_as, + ACTIONS(6369), 1, + anon_sym_with, + ACTIONS(6433), 1, anon_sym_SLASH, - ACTIONS(6635), 1, - anon_sym_CARET, - ACTIONS(6637), 1, - anon_sym_PIPE, - ACTIONS(6639), 1, + ACTIONS(6435), 1, anon_sym_AMP, - ACTIONS(6643), 1, + ACTIONS(6439), 1, anon_sym_GT_GT, - ACTIONS(6649), 1, - anon_sym_switch, - ACTIONS(6651), 1, + ACTIONS(6445), 1, anon_sym_DOT_DOT, - ACTIONS(6653), 1, + ACTIONS(6447), 1, + anon_sym_is, + ACTIONS(6513), 1, + anon_sym_QMARK, + ACTIONS(6515), 1, + anon_sym_CARET, + ACTIONS(6517), 1, + anon_sym_PIPE, + ACTIONS(6519), 1, anon_sym_AMP_AMP, - ACTIONS(6655), 1, + ACTIONS(6521), 1, anon_sym_PIPE_PIPE, - ACTIONS(6657), 1, + ACTIONS(6523), 1, anon_sym_QMARK_QMARK, - ACTIONS(6659), 1, - anon_sym_as, - ACTIONS(6661), 1, - anon_sym_is, - ACTIONS(6663), 1, - anon_sym_with, - STATE(3173), 1, + STATE(2467), 1, sym_bracketed_argument_list, - STATE(4583), 1, + STATE(2958), 1, sym_argument_list, - ACTIONS(6621), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(6627), 2, + ACTIONS(4825), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6629), 2, + ACTIONS(6427), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(6429), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6631), 2, + ACTIONS(6431), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(6641), 2, + ACTIONS(6437), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(6645), 2, + ACTIONS(6441), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6647), 2, + ACTIONS(6443), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5072), 6, - sym_interpolation_close_brace, - anon_sym_COLON, - anon_sym_COMMA, - anon_sym_and, - anon_sym_or, - anon_sym_into, - STATE(4271), 9, + ACTIONS(4996), 7, + anon_sym_where, + anon_sym_from, + 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, @@ -568415,7 +562263,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [44909] = 27, + [38495] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -568436,41 +562284,78 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(2967), 1, - sym__identifier_token, - ACTIONS(2979), 1, + ACTIONS(4092), 1, + anon_sym_DOT, + ACTIONS(4094), 1, + anon_sym_DASH_GT, + ACTIONS(5227), 1, anon_sym_LPAREN, - ACTIONS(3454), 1, - anon_sym_delegate, - ACTIONS(6672), 1, + ACTIONS(5236), 1, anon_sym_LBRACK, - ACTIONS(6674), 1, - sym_predefined_type, - STATE(3579), 1, - sym_array_type, - STATE(3691), 1, - sym__reserved_identifier, - STATE(4087), 1, - sym_identifier, - STATE(4109), 1, - sym_generic_name, - STATE(6716), 1, - sym__name, - STATE(6883), 1, - sym_tuple_type, - STATE(7103), 1, - sym__array_base_type, - STATE(7413), 1, - sym__pointer_base_type, - STATE(4096), 3, - sym_alias_qualified_name, - sym__simple_name, - sym_qualified_name, - STATE(7139), 3, - sym_nullable_type, - sym_pointer_type, - sym_function_pointer_type, - STATE(4272), 9, + ACTIONS(5238), 1, + anon_sym_BANG, + ACTIONS(6017), 1, + anon_sym_switch, + ACTIONS(6027), 1, + anon_sym_as, + ACTIONS(6031), 1, + anon_sym_with, + ACTIONS(6455), 1, + anon_sym_SLASH, + ACTIONS(6457), 1, + anon_sym_AMP, + ACTIONS(6461), 1, + anon_sym_GT_GT, + ACTIONS(6467), 1, + anon_sym_DOT_DOT, + ACTIONS(6469), 1, + anon_sym_is, + ACTIONS(6525), 1, + anon_sym_CARET, + ACTIONS(6527), 1, + anon_sym_PIPE, + ACTIONS(6529), 1, + anon_sym_AMP_AMP, + ACTIONS(6531), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6533), 1, + anon_sym_QMARK_QMARK, + ACTIONS(6535), 1, + anon_sym_QMARK, + STATE(2605), 1, + sym_bracketed_argument_list, + STATE(3348), 1, + sym_argument_list, + ACTIONS(5240), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6449), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(6451), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6453), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(6459), 2, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + ACTIONS(6463), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6465), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(5733), 7, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_and, + anon_sym_or, + anon_sym_into, + STATE(4208), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -568480,30 +562365,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(2971), 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, - [45024] = 40, + [38637] = 24, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -568524,87 +562386,72 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4100), 1, + ACTIONS(4042), 1, anon_sym_DOT, - ACTIONS(4102), 1, + ACTIONS(4044), 1, anon_sym_DASH_GT, - ACTIONS(5264), 1, + ACTIONS(5257), 1, anon_sym_LPAREN, - ACTIONS(5302), 1, + ACTIONS(5300), 1, anon_sym_LBRACK, - ACTIONS(5304), 1, + ACTIONS(5302), 1, anon_sym_BANG, - ACTIONS(6475), 1, + ACTIONS(6495), 1, anon_sym_switch, - ACTIONS(6485), 1, - anon_sym_as, - ACTIONS(6489), 1, - anon_sym_with, - ACTIONS(6587), 1, - anon_sym_QMARK, - ACTIONS(6593), 1, - anon_sym_SLASH, - ACTIONS(6595), 1, - anon_sym_CARET, - ACTIONS(6597), 1, - anon_sym_PIPE, - ACTIONS(6599), 1, - anon_sym_AMP, - ACTIONS(6603), 1, - anon_sym_GT_GT, - ACTIONS(6609), 1, + ACTIONS(6497), 1, anon_sym_DOT_DOT, - ACTIONS(6611), 1, - anon_sym_AMP_AMP, - ACTIONS(6613), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6615), 1, - anon_sym_QMARK_QMARK, - ACTIONS(6617), 1, - anon_sym_is, - STATE(2808), 1, + ACTIONS(6509), 1, + anon_sym_with, + STATE(2759), 1, sym_bracketed_argument_list, - STATE(3487), 1, + STATE(3381), 1, sym_argument_list, - ACTIONS(5306), 2, + ACTIONS(5304), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6585), 2, + ACTIONS(5739), 9, anon_sym_LT, anon_sym_GT, - ACTIONS(6589), 2, + anon_sym_QMARK, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6591), 2, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT_GT, + 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, + ACTIONS(5737), 21, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(6601), 2, + anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(6605), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6607), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5072), 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(4273), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - [45165] = 27, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, + anon_sym_as, + anon_sym_is, + [38747] = 36, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -568625,41 +562472,63 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(2967), 1, - sym__identifier_token, - ACTIONS(2979), 1, + ACTIONS(4042), 1, + anon_sym_DOT, + ACTIONS(4044), 1, + anon_sym_DASH_GT, + ACTIONS(5257), 1, anon_sym_LPAREN, - ACTIONS(3454), 1, - anon_sym_delegate, - ACTIONS(6674), 1, - sym_predefined_type, - ACTIONS(6676), 1, + ACTIONS(5300), 1, anon_sym_LBRACK, - STATE(3144), 1, - sym_array_type, - STATE(3691), 1, - sym__reserved_identifier, - STATE(4087), 1, - sym_identifier, - STATE(4109), 1, - sym_generic_name, - STATE(6716), 1, - sym__name, - STATE(6883), 1, - sym_tuple_type, - STATE(7259), 1, - sym__array_base_type, - STATE(7413), 1, - sym__pointer_base_type, - STATE(4096), 3, - sym_alias_qualified_name, - sym__simple_name, - sym_qualified_name, - STATE(7139), 3, - sym_nullable_type, - sym_pointer_type, - sym_function_pointer_type, - STATE(4274), 9, + ACTIONS(5302), 1, + anon_sym_BANG, + ACTIONS(6479), 1, + anon_sym_SLASH, + ACTIONS(6481), 1, + anon_sym_CARET, + ACTIONS(6485), 1, + anon_sym_AMP, + ACTIONS(6489), 1, + anon_sym_GT_GT, + ACTIONS(6495), 1, + anon_sym_switch, + ACTIONS(6497), 1, + anon_sym_DOT_DOT, + ACTIONS(6505), 1, + anon_sym_as, + ACTIONS(6507), 1, + anon_sym_is, + ACTIONS(6509), 1, + anon_sym_with, + STATE(2759), 1, + sym_bracketed_argument_list, + STATE(3381), 1, + sym_argument_list, + ACTIONS(5304), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5739), 2, + anon_sym_QMARK, + anon_sym_PIPE, + ACTIONS(6471), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(6475), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6477), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(6487), 2, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + ACTIONS(6491), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6493), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + STATE(4210), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -568669,30 +562538,18 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(2971), 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, - [45280] = 40, + ACTIONS(5737), 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, + [38881] = 34, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -568713,77 +562570,60 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4443), 1, - anon_sym_DASH_GT, - ACTIONS(4533), 1, + ACTIONS(4042), 1, anon_sym_DOT, - ACTIONS(6574), 1, + ACTIONS(4044), 1, + anon_sym_DASH_GT, + ACTIONS(5257), 1, anon_sym_LPAREN, - ACTIONS(6619), 1, + ACTIONS(5300), 1, anon_sym_LBRACK, - ACTIONS(6623), 1, - anon_sym_QMARK, - ACTIONS(6625), 1, + ACTIONS(5302), 1, anon_sym_BANG, - ACTIONS(6633), 1, + ACTIONS(6479), 1, anon_sym_SLASH, - ACTIONS(6635), 1, - anon_sym_CARET, - ACTIONS(6637), 1, - anon_sym_PIPE, - ACTIONS(6639), 1, - anon_sym_AMP, - ACTIONS(6643), 1, + ACTIONS(6489), 1, anon_sym_GT_GT, - ACTIONS(6649), 1, + ACTIONS(6495), 1, anon_sym_switch, - ACTIONS(6651), 1, + ACTIONS(6497), 1, anon_sym_DOT_DOT, - ACTIONS(6653), 1, - anon_sym_AMP_AMP, - ACTIONS(6655), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6657), 1, - anon_sym_QMARK_QMARK, - ACTIONS(6659), 1, + ACTIONS(6505), 1, anon_sym_as, - ACTIONS(6661), 1, + ACTIONS(6507), 1, anon_sym_is, - ACTIONS(6663), 1, + ACTIONS(6509), 1, anon_sym_with, - STATE(3173), 1, + STATE(2759), 1, sym_bracketed_argument_list, - STATE(4583), 1, + STATE(3381), 1, sym_argument_list, - ACTIONS(6621), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(6627), 2, + ACTIONS(5304), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6629), 2, + ACTIONS(6471), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(6475), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6631), 2, + ACTIONS(6477), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(6641), 2, + ACTIONS(6487), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(6645), 2, + ACTIONS(6491), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6647), 2, + ACTIONS(6493), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5882), 6, - sym_interpolation_close_brace, - anon_sym_COLON, - anon_sym_COMMA, - anon_sym_and, - anon_sym_or, - anon_sym_into, - STATE(4275), 9, + ACTIONS(5739), 3, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_AMP, + STATE(4211), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -568793,7 +562633,19 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [45421] = 24, + ACTIONS(5737), 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, + [39011] = 27, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -568814,40 +562666,45 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4100), 1, + ACTIONS(4042), 1, anon_sym_DOT, - ACTIONS(4102), 1, + ACTIONS(4044), 1, anon_sym_DASH_GT, - ACTIONS(5264), 1, + ACTIONS(5257), 1, anon_sym_LPAREN, - ACTIONS(5302), 1, + ACTIONS(5300), 1, anon_sym_LBRACK, - ACTIONS(5304), 1, + ACTIONS(5302), 1, anon_sym_BANG, - ACTIONS(6475), 1, + ACTIONS(6479), 1, + anon_sym_SLASH, + ACTIONS(6495), 1, anon_sym_switch, - ACTIONS(6489), 1, - anon_sym_with, - ACTIONS(6609), 1, + ACTIONS(6497), 1, anon_sym_DOT_DOT, - STATE(2808), 1, + ACTIONS(6509), 1, + anon_sym_with, + STATE(2759), 1, sym_bracketed_argument_list, - STATE(3487), 1, + STATE(3381), 1, sym_argument_list, - ACTIONS(5306), 2, + ACTIONS(5304), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5664), 9, + ACTIONS(6475), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6477), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(5739), 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(4276), 9, + STATE(4212), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -568857,10 +562714,12 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5660), 20, + ACTIONS(5737), 19, anon_sym_SEMI, - anon_sym_STAR, - anon_sym_PERCENT, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT_GT, @@ -568875,10 +562734,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, - [45530] = 35, + [39127] = 36, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -568899,61 +562755,63 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4100), 1, + ACTIONS(4753), 1, + anon_sym_LPAREN, + ACTIONS(4792), 1, anon_sym_DOT, - ACTIONS(4102), 1, + ACTIONS(4794), 1, anon_sym_DASH_GT, - ACTIONS(5264), 1, - anon_sym_LPAREN, - ACTIONS(5302), 1, - anon_sym_LBRACK, - ACTIONS(5304), 1, + ACTIONS(4823), 1, anon_sym_BANG, - ACTIONS(6475), 1, + ACTIONS(5549), 1, + anon_sym_LBRACK, + ACTIONS(6355), 1, anon_sym_switch, - ACTIONS(6485), 1, + ACTIONS(6365), 1, anon_sym_as, - ACTIONS(6489), 1, + ACTIONS(6369), 1, anon_sym_with, - ACTIONS(6593), 1, + ACTIONS(6433), 1, anon_sym_SLASH, - ACTIONS(6599), 1, + ACTIONS(6435), 1, anon_sym_AMP, - ACTIONS(6603), 1, + ACTIONS(6439), 1, anon_sym_GT_GT, - ACTIONS(6609), 1, + ACTIONS(6445), 1, anon_sym_DOT_DOT, - ACTIONS(6617), 1, + ACTIONS(6447), 1, anon_sym_is, - STATE(2808), 1, + ACTIONS(6515), 1, + anon_sym_CARET, + STATE(2467), 1, sym_bracketed_argument_list, - STATE(3487), 1, + STATE(2958), 1, sym_argument_list, - ACTIONS(5306), 2, + ACTIONS(4825), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5664), 2, + ACTIONS(5739), 2, anon_sym_QMARK, anon_sym_PIPE, - ACTIONS(6585), 2, + ACTIONS(6427), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(6589), 2, + ACTIONS(6429), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6591), 2, + ACTIONS(6431), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(6601), 2, + ACTIONS(6437), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(6605), 2, + ACTIONS(6441), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6607), 2, + ACTIONS(6443), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - STATE(4277), 9, + STATE(4213), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -568963,18 +562821,18 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5660), 10, - anon_sym_SEMI, - anon_sym_CARET, - anon_sym_and, - anon_sym_or, + ACTIONS(5737), 10, + anon_sym_where, 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, - [45661] = 40, + anon_sym_from, + anon_sym_join, + anon_sym_let, + anon_sym_orderby, + anon_sym_group, + anon_sym_select, + [39261] = 27, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -568995,77 +562853,45 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4100), 1, + ACTIONS(4092), 1, anon_sym_DOT, - ACTIONS(4102), 1, + ACTIONS(4094), 1, anon_sym_DASH_GT, - ACTIONS(5264), 1, + ACTIONS(5227), 1, anon_sym_LPAREN, - ACTIONS(5302), 1, + ACTIONS(5236), 1, anon_sym_LBRACK, - ACTIONS(5304), 1, + ACTIONS(5238), 1, anon_sym_BANG, - ACTIONS(6475), 1, + ACTIONS(6017), 1, anon_sym_switch, - ACTIONS(6485), 1, - anon_sym_as, - ACTIONS(6489), 1, + ACTIONS(6031), 1, anon_sym_with, - ACTIONS(6587), 1, - anon_sym_QMARK, - ACTIONS(6593), 1, + ACTIONS(6455), 1, anon_sym_SLASH, - ACTIONS(6595), 1, - anon_sym_CARET, - ACTIONS(6597), 1, - anon_sym_PIPE, - ACTIONS(6599), 1, - anon_sym_AMP, - ACTIONS(6603), 1, - anon_sym_GT_GT, - ACTIONS(6609), 1, + ACTIONS(6467), 1, anon_sym_DOT_DOT, - ACTIONS(6611), 1, - anon_sym_AMP_AMP, - ACTIONS(6613), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6615), 1, - anon_sym_QMARK_QMARK, - ACTIONS(6617), 1, - anon_sym_is, - STATE(2808), 1, + STATE(2605), 1, sym_bracketed_argument_list, - STATE(3487), 1, + STATE(3348), 1, sym_argument_list, - ACTIONS(5306), 2, + ACTIONS(5240), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6585), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(6589), 2, + ACTIONS(6451), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6591), 2, + ACTIONS(6453), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(6601), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - ACTIONS(6605), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(6607), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(5882), 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(4278), 9, + ACTIONS(5739), 6, + anon_sym_LT, + anon_sym_GT, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT_GT, + STATE(4214), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -569075,7 +562901,27 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [45802] = 13, + ACTIONS(5737), 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, + anon_sym_as, + anon_sym_is, + [39377] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -569096,7 +562942,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - STATE(4279), 9, + ACTIONS(6550), 1, + anon_sym_into, + STATE(4224), 1, + aux_sym__query_body_repeat2, + STATE(4215), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -569106,50 +562956,49 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(4084), 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, + ACTIONS(5881), 11, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, - anon_sym_EQ_GT, - ACTIONS(4082), 28, - anon_sym_alias, - anon_sym_global, - anon_sym_file, + 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(5879), 29, + 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_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, - [45889] = 40, + anon_sym_as, + anon_sym_is, + anon_sym_DASH_GT, + anon_sym_with, + [39469] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -569170,87 +563019,63 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4443), 1, - anon_sym_DASH_GT, - ACTIONS(4533), 1, - anon_sym_DOT, - ACTIONS(6574), 1, - anon_sym_LPAREN, - ACTIONS(6619), 1, - anon_sym_LBRACK, - ACTIONS(6623), 1, + ACTIONS(6550), 1, + anon_sym_into, + STATE(4225), 1, + aux_sym__query_body_repeat2, + STATE(4216), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + ACTIONS(5881), 11, + anon_sym_LT, + anon_sym_GT, anon_sym_QMARK, - ACTIONS(6625), 1, anon_sym_BANG, - ACTIONS(6633), 1, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_SLASH, - ACTIONS(6635), 1, - anon_sym_CARET, - ACTIONS(6637), 1, anon_sym_PIPE, - ACTIONS(6639), 1, anon_sym_AMP, - ACTIONS(6643), 1, anon_sym_GT_GT, - ACTIONS(6649), 1, - anon_sym_switch, - ACTIONS(6651), 1, - anon_sym_DOT_DOT, - ACTIONS(6653), 1, - anon_sym_AMP_AMP, - ACTIONS(6655), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6657), 1, - anon_sym_QMARK_QMARK, - ACTIONS(6659), 1, - anon_sym_as, - ACTIONS(6661), 1, - anon_sym_is, - ACTIONS(6663), 1, - anon_sym_with, - STATE(3173), 1, - sym_bracketed_argument_list, - STATE(4583), 1, - sym_argument_list, - ACTIONS(6621), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(6627), 2, + anon_sym_DOT, + ACTIONS(5879), 29, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_where, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6629), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(6631), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(6641), 2, + anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(6645), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6647), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5745), 6, - sym_interpolation_close_brace, - anon_sym_COLON, - anon_sym_COMMA, - anon_sym_and, - anon_sym_or, - anon_sym_into, - STATE(4280), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - [46030] = 36, + 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, + [39561] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -569271,73 +563096,78 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4100), 1, + ACTIONS(4042), 1, anon_sym_DOT, - ACTIONS(4102), 1, + ACTIONS(4044), 1, anon_sym_DASH_GT, - ACTIONS(5264), 1, + ACTIONS(5257), 1, anon_sym_LPAREN, - ACTIONS(5302), 1, + ACTIONS(5300), 1, anon_sym_LBRACK, - ACTIONS(5304), 1, + ACTIONS(5302), 1, anon_sym_BANG, - ACTIONS(6475), 1, - anon_sym_switch, - ACTIONS(6485), 1, - anon_sym_as, - ACTIONS(6489), 1, - anon_sym_with, - ACTIONS(6593), 1, + ACTIONS(6473), 1, + anon_sym_QMARK, + ACTIONS(6479), 1, anon_sym_SLASH, - ACTIONS(6595), 1, + ACTIONS(6481), 1, anon_sym_CARET, - ACTIONS(6599), 1, + ACTIONS(6483), 1, + anon_sym_PIPE, + ACTIONS(6485), 1, anon_sym_AMP, - ACTIONS(6603), 1, + ACTIONS(6489), 1, anon_sym_GT_GT, - ACTIONS(6609), 1, + ACTIONS(6495), 1, + anon_sym_switch, + ACTIONS(6497), 1, anon_sym_DOT_DOT, - ACTIONS(6617), 1, + ACTIONS(6499), 1, + anon_sym_AMP_AMP, + ACTIONS(6501), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6503), 1, + anon_sym_QMARK_QMARK, + ACTIONS(6505), 1, + anon_sym_as, + ACTIONS(6507), 1, anon_sym_is, - STATE(2808), 1, + ACTIONS(6509), 1, + anon_sym_with, + STATE(2759), 1, sym_bracketed_argument_list, - STATE(3487), 1, + STATE(3381), 1, sym_argument_list, - ACTIONS(5306), 2, + ACTIONS(5304), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5664), 2, - anon_sym_QMARK, - anon_sym_PIPE, - ACTIONS(6585), 2, + ACTIONS(6471), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(6589), 2, + ACTIONS(6475), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6591), 2, + ACTIONS(6477), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(6601), 2, + ACTIONS(6487), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(6605), 2, + ACTIONS(6491), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6607), 2, + ACTIONS(6493), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5660), 9, + ACTIONS(5709), 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, - aux_sym_preproc_if_token3, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - STATE(4281), 9, + STATE(4217), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -569347,7 +563177,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [46163] = 40, + [39703] = 34, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -569368,77 +563198,60 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4443), 1, - anon_sym_DASH_GT, - ACTIONS(4533), 1, - anon_sym_DOT, - ACTIONS(6574), 1, + ACTIONS(4753), 1, anon_sym_LPAREN, - ACTIONS(6619), 1, - anon_sym_LBRACK, - ACTIONS(6623), 1, - anon_sym_QMARK, - ACTIONS(6625), 1, + ACTIONS(4792), 1, + anon_sym_DOT, + ACTIONS(4794), 1, + anon_sym_DASH_GT, + ACTIONS(4823), 1, anon_sym_BANG, - ACTIONS(6633), 1, + ACTIONS(5549), 1, + anon_sym_LBRACK, + ACTIONS(6355), 1, + anon_sym_switch, + ACTIONS(6365), 1, + anon_sym_as, + ACTIONS(6369), 1, + anon_sym_with, + ACTIONS(6433), 1, anon_sym_SLASH, - ACTIONS(6635), 1, - anon_sym_CARET, - ACTIONS(6637), 1, - anon_sym_PIPE, - ACTIONS(6639), 1, - anon_sym_AMP, - ACTIONS(6643), 1, + ACTIONS(6439), 1, anon_sym_GT_GT, - ACTIONS(6649), 1, - anon_sym_switch, - ACTIONS(6651), 1, + ACTIONS(6445), 1, anon_sym_DOT_DOT, - ACTIONS(6653), 1, - anon_sym_AMP_AMP, - ACTIONS(6655), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6657), 1, - anon_sym_QMARK_QMARK, - ACTIONS(6659), 1, - anon_sym_as, - ACTIONS(6661), 1, + ACTIONS(6447), 1, anon_sym_is, - ACTIONS(6663), 1, - anon_sym_with, - STATE(3173), 1, + STATE(2467), 1, sym_bracketed_argument_list, - STATE(4583), 1, + STATE(2958), 1, sym_argument_list, - ACTIONS(6621), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(6627), 2, + ACTIONS(4825), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6629), 2, + ACTIONS(6427), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(6429), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6631), 2, + ACTIONS(6431), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(6641), 2, + ACTIONS(6437), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(6645), 2, + ACTIONS(6441), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6647), 2, + ACTIONS(6443), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5767), 6, - sym_interpolation_close_brace, - anon_sym_COLON, - anon_sym_COMMA, - anon_sym_and, - anon_sym_or, - anon_sym_into, - STATE(4282), 9, + ACTIONS(5739), 3, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_AMP, + STATE(4218), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -569448,7 +563261,19 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [46304] = 34, + ACTIONS(5737), 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, + [39833] = 27, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -569469,60 +563294,45 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4100), 1, + ACTIONS(4753), 1, + anon_sym_LPAREN, + ACTIONS(4792), 1, anon_sym_DOT, - ACTIONS(4102), 1, + ACTIONS(4794), 1, anon_sym_DASH_GT, - ACTIONS(5264), 1, - anon_sym_LPAREN, - ACTIONS(5302), 1, - anon_sym_LBRACK, - ACTIONS(5304), 1, + ACTIONS(4823), 1, anon_sym_BANG, - ACTIONS(6475), 1, - anon_sym_switch, - ACTIONS(6485), 1, - anon_sym_as, - ACTIONS(6489), 1, + ACTIONS(5549), 1, + anon_sym_LBRACK, + ACTIONS(6355), 1, + anon_sym_switch, + ACTIONS(6369), 1, anon_sym_with, - ACTIONS(6593), 1, + ACTIONS(6433), 1, anon_sym_SLASH, - ACTIONS(6603), 1, - anon_sym_GT_GT, - ACTIONS(6609), 1, + ACTIONS(6445), 1, anon_sym_DOT_DOT, - ACTIONS(6617), 1, - anon_sym_is, - STATE(2808), 1, + STATE(2467), 1, sym_bracketed_argument_list, - STATE(3487), 1, + STATE(2958), 1, sym_argument_list, - ACTIONS(5306), 2, + ACTIONS(4825), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6585), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(6589), 2, + ACTIONS(6429), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6591), 2, + ACTIONS(6431), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(6601), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - ACTIONS(6605), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(6607), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(5664), 3, + ACTIONS(5739), 6, + anon_sym_LT, + anon_sym_GT, anon_sym_QMARK, anon_sym_PIPE, anon_sym_AMP, - STATE(4283), 9, + anon_sym_GT_GT, + STATE(4219), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -569532,18 +563342,27 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5660), 10, - anon_sym_SEMI, + ACTIONS(5737), 19, + anon_sym_where, anon_sym_CARET, - anon_sym_and, - anon_sym_or, + 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, - aux_sym_preproc_if_token3, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - [46433] = 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, + [39949] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -569564,77 +563383,78 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4100), 1, + ACTIONS(4753), 1, + anon_sym_LPAREN, + ACTIONS(4792), 1, anon_sym_DOT, - ACTIONS(4102), 1, + ACTIONS(4794), 1, anon_sym_DASH_GT, - ACTIONS(5264), 1, - anon_sym_LPAREN, - ACTIONS(5302), 1, - anon_sym_LBRACK, - ACTIONS(5304), 1, + ACTIONS(4823), 1, anon_sym_BANG, - ACTIONS(6475), 1, + ACTIONS(5549), 1, + anon_sym_LBRACK, + ACTIONS(6355), 1, anon_sym_switch, - ACTIONS(6485), 1, + ACTIONS(6365), 1, anon_sym_as, - ACTIONS(6489), 1, + ACTIONS(6369), 1, anon_sym_with, - ACTIONS(6587), 1, - anon_sym_QMARK, - ACTIONS(6593), 1, + ACTIONS(6433), 1, anon_sym_SLASH, - ACTIONS(6595), 1, - anon_sym_CARET, - ACTIONS(6597), 1, - anon_sym_PIPE, - ACTIONS(6599), 1, + ACTIONS(6435), 1, anon_sym_AMP, - ACTIONS(6603), 1, + ACTIONS(6439), 1, anon_sym_GT_GT, - ACTIONS(6609), 1, + ACTIONS(6445), 1, anon_sym_DOT_DOT, - ACTIONS(6611), 1, + ACTIONS(6447), 1, + anon_sym_is, + ACTIONS(6513), 1, + anon_sym_QMARK, + ACTIONS(6515), 1, + anon_sym_CARET, + ACTIONS(6517), 1, + anon_sym_PIPE, + ACTIONS(6519), 1, anon_sym_AMP_AMP, - ACTIONS(6613), 1, + ACTIONS(6521), 1, anon_sym_PIPE_PIPE, - ACTIONS(6615), 1, + ACTIONS(6523), 1, anon_sym_QMARK_QMARK, - ACTIONS(6617), 1, - anon_sym_is, - STATE(2808), 1, + STATE(2467), 1, sym_bracketed_argument_list, - STATE(3487), 1, + STATE(2958), 1, sym_argument_list, - ACTIONS(5306), 2, + ACTIONS(4825), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6585), 2, + ACTIONS(6427), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(6589), 2, + ACTIONS(6429), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6591), 2, + ACTIONS(6431), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(6601), 2, + ACTIONS(6437), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(6605), 2, + ACTIONS(6441), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6607), 2, + ACTIONS(6443), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5899), 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(4284), 9, + ACTIONS(6552), 7, + anon_sym_where, + anon_sym_from, + anon_sym_join, + anon_sym_let, + anon_sym_orderby, + anon_sym_group, + anon_sym_select, + STATE(4220), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -569644,7 +563464,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [46574] = 15, + [40091] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -569665,11 +563485,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(6678), 1, - anon_sym_LBRACK, - ACTIONS(6680), 1, - anon_sym_STAR, - STATE(4285), 9, + ACTIONS(6550), 1, + anon_sym_into, + STATE(4215), 1, + aux_sym__query_body_repeat2, + STATE(4221), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -569679,149 +563499,49 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(4018), 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(5935), 11, anon_sym_LT, anon_sym_GT, - anon_sym_EQ_GT, - ACTIONS(4016), 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, - [46665] = 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(4100), 1, - anon_sym_DOT, - ACTIONS(4102), 1, - anon_sym_DASH_GT, - ACTIONS(5264), 1, - anon_sym_LPAREN, - ACTIONS(5302), 1, - anon_sym_LBRACK, - ACTIONS(5304), 1, - anon_sym_BANG, - ACTIONS(6475), 1, - anon_sym_switch, - ACTIONS(6485), 1, - anon_sym_as, - ACTIONS(6489), 1, - anon_sym_with, - ACTIONS(6684), 1, anon_sym_QMARK, - ACTIONS(6690), 1, + anon_sym_BANG, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_SLASH, - ACTIONS(6692), 1, - anon_sym_CARET, - ACTIONS(6694), 1, anon_sym_PIPE, - ACTIONS(6696), 1, anon_sym_AMP, - ACTIONS(6700), 1, anon_sym_GT_GT, - ACTIONS(6706), 1, - anon_sym_DOT_DOT, - ACTIONS(6708), 1, - anon_sym_AMP_AMP, - ACTIONS(6710), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6712), 1, - anon_sym_QMARK_QMARK, - ACTIONS(6714), 1, - anon_sym_is, - STATE(2808), 1, - sym_bracketed_argument_list, - STATE(3487), 1, - sym_argument_list, - ACTIONS(5306), 2, + anon_sym_DOT, + ACTIONS(5933), 29, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_where, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6682), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(6686), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(6688), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(6698), 2, + anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(6702), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6704), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5858), 6, - anon_sym_COLON, - anon_sym_COMMA, - 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, - [46806] = 35, + 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, + [40183] = 33, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -569842,61 +563562,57 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4443), 1, - anon_sym_DASH_GT, - ACTIONS(4533), 1, + ACTIONS(4042), 1, anon_sym_DOT, - ACTIONS(6574), 1, + ACTIONS(4044), 1, + anon_sym_DASH_GT, + ACTIONS(5257), 1, anon_sym_LPAREN, - ACTIONS(6619), 1, + ACTIONS(5300), 1, anon_sym_LBRACK, - ACTIONS(6625), 1, + ACTIONS(5302), 1, anon_sym_BANG, - ACTIONS(6633), 1, + ACTIONS(6479), 1, anon_sym_SLASH, - ACTIONS(6639), 1, - anon_sym_AMP, - ACTIONS(6643), 1, + ACTIONS(6489), 1, anon_sym_GT_GT, - ACTIONS(6649), 1, + ACTIONS(6495), 1, anon_sym_switch, - ACTIONS(6651), 1, + ACTIONS(6497), 1, anon_sym_DOT_DOT, - ACTIONS(6659), 1, + ACTIONS(6505), 1, anon_sym_as, - ACTIONS(6661), 1, + ACTIONS(6507), 1, anon_sym_is, - ACTIONS(6663), 1, + ACTIONS(6509), 1, anon_sym_with, - STATE(3173), 1, + STATE(2759), 1, sym_bracketed_argument_list, - STATE(4583), 1, + STATE(3381), 1, sym_argument_list, - ACTIONS(5664), 2, - anon_sym_QMARK, - anon_sym_PIPE, - ACTIONS(6621), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(6627), 2, + ACTIONS(5304), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6629), 2, + ACTIONS(6471), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(6475), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6631), 2, + ACTIONS(6477), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(6641), 2, + ACTIONS(6487), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(6645), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(6647), 2, + ACTIONS(6493), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - STATE(4287), 9, + ACTIONS(5739), 3, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_AMP, + STATE(4222), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -569906,18 +563622,21 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5660), 10, - sym_interpolation_close_brace, - anon_sym_COLON, + ACTIONS(5737), 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, - anon_sym_into, - [46937] = 36, + [40311] = 22, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -569938,83 +563657,70 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4443), 1, - anon_sym_DASH_GT, - ACTIONS(4533), 1, + ACTIONS(4042), 1, anon_sym_DOT, - ACTIONS(6574), 1, + ACTIONS(4044), 1, + anon_sym_DASH_GT, + ACTIONS(5257), 1, anon_sym_LPAREN, - ACTIONS(6619), 1, + ACTIONS(5300), 1, anon_sym_LBRACK, - ACTIONS(6625), 1, + ACTIONS(5302), 1, anon_sym_BANG, - ACTIONS(6633), 1, - anon_sym_SLASH, - ACTIONS(6635), 1, - anon_sym_CARET, - ACTIONS(6639), 1, - anon_sym_AMP, - ACTIONS(6643), 1, - anon_sym_GT_GT, - ACTIONS(6649), 1, - anon_sym_switch, - ACTIONS(6651), 1, + ACTIONS(6497), 1, anon_sym_DOT_DOT, - ACTIONS(6659), 1, - anon_sym_as, - ACTIONS(6661), 1, - anon_sym_is, - ACTIONS(6663), 1, - anon_sym_with, - STATE(3173), 1, + STATE(2759), 1, sym_bracketed_argument_list, - STATE(4583), 1, + STATE(3381), 1, sym_argument_list, - ACTIONS(5664), 2, - anon_sym_QMARK, - anon_sym_PIPE, - ACTIONS(6621), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(6627), 2, + ACTIONS(5304), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6629), 2, + ACTIONS(1161), 9, + anon_sym_LT, + anon_sym_GT, + anon_sym_QMARK, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6631), 2, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT_GT, + 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, + ACTIONS(1147), 23, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(6641), 2, + anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(6645), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6647), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5660), 9, - sym_interpolation_close_brace, - anon_sym_COLON, - anon_sym_COMMA, + 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(4288), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - [47070] = 34, + anon_sym_as, + anon_sym_is, + anon_sym_with, + [40417] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -570035,81 +563741,62 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4443), 1, - anon_sym_DASH_GT, - ACTIONS(4533), 1, - anon_sym_DOT, - ACTIONS(6574), 1, - anon_sym_LPAREN, - ACTIONS(6619), 1, - anon_sym_LBRACK, - ACTIONS(6625), 1, + ACTIONS(6554), 1, + anon_sym_into, + STATE(4224), 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(5953), 11, + anon_sym_LT, + anon_sym_GT, + anon_sym_QMARK, anon_sym_BANG, - ACTIONS(6633), 1, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_SLASH, - ACTIONS(6643), 1, + anon_sym_PIPE, + anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(6649), 1, - anon_sym_switch, - ACTIONS(6651), 1, - anon_sym_DOT_DOT, - ACTIONS(6659), 1, - anon_sym_as, - ACTIONS(6661), 1, - anon_sym_is, - ACTIONS(6663), 1, - anon_sym_with, - STATE(3173), 1, - sym_bracketed_argument_list, - STATE(4583), 1, - sym_argument_list, - ACTIONS(6621), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(6627), 2, + anon_sym_DOT, + ACTIONS(5951), 29, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_where, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6629), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(6631), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(6641), 2, + anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(6645), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6647), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5664), 3, - anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_AMP, - STATE(4289), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - ACTIONS(5660), 10, - 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, - anon_sym_into, - [47199] = 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, + [40507] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -570130,36 +563817,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(2967), 1, - sym__identifier_token, - ACTIONS(6013), 1, - anon_sym_ref, - STATE(3691), 1, - sym__reserved_identifier, - STATE(4087), 1, - sym_identifier, - STATE(4109), 1, - sym_generic_name, - STATE(6832), 1, - sym__name, - STATE(7047), 1, - sym_ref_type, - STATE(7048), 1, - sym__scoped_base_type, - STATE(4096), 3, - sym_alias_qualified_name, - sym__simple_name, - sym_qualified_name, - ACTIONS(3445), 8, - anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_STAR, - anon_sym_DOT, - anon_sym_COLON_COLON, - STATE(4290), 9, + ACTIONS(6550), 1, + anon_sym_into, + STATE(4224), 1, + aux_sym__query_body_repeat2, + STATE(4225), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -570169,30 +563831,49 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(2971), 22, - anon_sym_alias, - anon_sym_global, - anon_sym_file, + ACTIONS(5960), 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(5958), 29, + 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_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, - [47304] = 27, + anon_sym_as, + anon_sym_is, + anon_sym_DASH_GT, + anon_sym_with, + [40599] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -570213,45 +563894,78 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4100), 1, + ACTIONS(4092), 1, anon_sym_DOT, - ACTIONS(4102), 1, + ACTIONS(4094), 1, anon_sym_DASH_GT, - ACTIONS(5264), 1, + ACTIONS(5227), 1, anon_sym_LPAREN, - ACTIONS(5302), 1, + ACTIONS(5236), 1, anon_sym_LBRACK, - ACTIONS(5304), 1, + ACTIONS(5238), 1, anon_sym_BANG, - ACTIONS(6475), 1, + ACTIONS(6017), 1, anon_sym_switch, - ACTIONS(6489), 1, + ACTIONS(6027), 1, + anon_sym_as, + ACTIONS(6031), 1, anon_sym_with, - ACTIONS(6593), 1, + ACTIONS(6455), 1, anon_sym_SLASH, - ACTIONS(6609), 1, + ACTIONS(6457), 1, + anon_sym_AMP, + ACTIONS(6461), 1, + anon_sym_GT_GT, + ACTIONS(6467), 1, anon_sym_DOT_DOT, - STATE(2808), 1, + ACTIONS(6469), 1, + anon_sym_is, + ACTIONS(6525), 1, + anon_sym_CARET, + ACTIONS(6527), 1, + anon_sym_PIPE, + ACTIONS(6529), 1, + anon_sym_AMP_AMP, + ACTIONS(6531), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6533), 1, + anon_sym_QMARK_QMARK, + ACTIONS(6535), 1, + anon_sym_QMARK, + STATE(2605), 1, sym_bracketed_argument_list, - STATE(3487), 1, + STATE(3348), 1, sym_argument_list, - ACTIONS(5306), 2, + ACTIONS(5240), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6589), 2, + ACTIONS(6449), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(6451), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6591), 2, + ACTIONS(6453), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(5664), 6, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT_GT, - STATE(4291), 9, + ACTIONS(6459), 2, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + ACTIONS(6463), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6465), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(5801), 7, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_and, + anon_sym_or, + anon_sym_into, + STATE(4226), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -570261,26 +563975,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5660), 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, - [47419] = 16, + [40741] = 37, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -570301,13 +563996,64 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(6678), 1, + ACTIONS(4042), 1, + anon_sym_DOT, + ACTIONS(4044), 1, + anon_sym_DASH_GT, + ACTIONS(5257), 1, + anon_sym_LPAREN, + ACTIONS(5300), 1, anon_sym_LBRACK, - ACTIONS(6680), 1, - anon_sym_STAR, - ACTIONS(6716), 1, + ACTIONS(5302), 1, + anon_sym_BANG, + ACTIONS(5739), 1, anon_sym_QMARK, - STATE(4292), 9, + ACTIONS(6479), 1, + anon_sym_SLASH, + ACTIONS(6481), 1, + anon_sym_CARET, + ACTIONS(6483), 1, + anon_sym_PIPE, + ACTIONS(6485), 1, + anon_sym_AMP, + ACTIONS(6489), 1, + anon_sym_GT_GT, + ACTIONS(6495), 1, + anon_sym_switch, + ACTIONS(6497), 1, + anon_sym_DOT_DOT, + ACTIONS(6505), 1, + anon_sym_as, + ACTIONS(6507), 1, + anon_sym_is, + ACTIONS(6509), 1, + anon_sym_with, + STATE(2759), 1, + sym_bracketed_argument_list, + STATE(3381), 1, + sym_argument_list, + ACTIONS(5304), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6471), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(6475), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6477), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(6487), 2, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + ACTIONS(6491), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6493), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + STATE(4227), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -570317,47 +564063,18 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(4018), 10, + ACTIONS(5737), 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(4016), 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, - [47512] = 33, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, + [40877] = 33, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -570378,57 +564095,57 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4443), 1, - anon_sym_DASH_GT, - ACTIONS(4533), 1, - anon_sym_DOT, - ACTIONS(6574), 1, + ACTIONS(4753), 1, anon_sym_LPAREN, - ACTIONS(6619), 1, - anon_sym_LBRACK, - ACTIONS(6625), 1, + ACTIONS(4792), 1, + anon_sym_DOT, + ACTIONS(4794), 1, + anon_sym_DASH_GT, + ACTIONS(4823), 1, anon_sym_BANG, - ACTIONS(6633), 1, + ACTIONS(5549), 1, + anon_sym_LBRACK, + ACTIONS(6355), 1, + anon_sym_switch, + ACTIONS(6365), 1, + anon_sym_as, + ACTIONS(6369), 1, + anon_sym_with, + ACTIONS(6433), 1, anon_sym_SLASH, - ACTIONS(6643), 1, + ACTIONS(6439), 1, anon_sym_GT_GT, - ACTIONS(6649), 1, - anon_sym_switch, - ACTIONS(6651), 1, + ACTIONS(6445), 1, anon_sym_DOT_DOT, - ACTIONS(6659), 1, - anon_sym_as, - ACTIONS(6661), 1, + ACTIONS(6447), 1, anon_sym_is, - ACTIONS(6663), 1, - anon_sym_with, - STATE(3173), 1, + STATE(2467), 1, sym_bracketed_argument_list, - STATE(4583), 1, + STATE(2958), 1, sym_argument_list, - ACTIONS(6621), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(6627), 2, + ACTIONS(4825), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6629), 2, + ACTIONS(6427), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(6429), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6631), 2, + ACTIONS(6431), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(6641), 2, + ACTIONS(6437), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(6647), 2, + ACTIONS(6443), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5664), 3, + ACTIONS(5739), 3, anon_sym_QMARK, anon_sym_PIPE, anon_sym_AMP, - STATE(4293), 9, + STATE(4228), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -570438,20 +564155,21 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5660), 12, - sym_interpolation_close_brace, - anon_sym_COLON, - anon_sym_COMMA, + ACTIONS(5737), 13, + anon_sym_where, 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, - [47639] = 15, + anon_sym_from, + anon_sym_join, + anon_sym_let, + anon_sym_orderby, + anon_sym_group, + anon_sym_select, + [41005] = 17, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -570472,11 +564190,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(1397), 1, + ACTIONS(1395), 1, anon_sym_LBRACE, - STATE(4591), 1, + ACTIONS(6557), 1, + anon_sym_LPAREN, + STATE(4297), 1, + sym_argument_list, + STATE(4595), 1, sym_initializer_expression, - STATE(4294), 9, + STATE(4229), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -570486,7 +564208,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(4868), 11, + ACTIONS(4755), 11, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, @@ -570498,12 +564220,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT, - ACTIONS(4866), 28, + ACTIONS(4751), 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, anon_sym_STAR, @@ -570527,7 +564248,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, anon_sym_DASH_GT, anon_sym_with, - [47730] = 22, + [41101] = 22, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -570548,26 +564269,26 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4443), 1, - anon_sym_DASH_GT, - ACTIONS(4533), 1, + ACTIONS(4092), 1, anon_sym_DOT, - ACTIONS(6574), 1, + ACTIONS(4094), 1, + anon_sym_DASH_GT, + ACTIONS(5227), 1, anon_sym_LPAREN, - ACTIONS(6619), 1, + ACTIONS(5236), 1, anon_sym_LBRACK, - ACTIONS(6625), 1, + ACTIONS(5238), 1, anon_sym_BANG, - ACTIONS(6651), 1, + ACTIONS(6467), 1, anon_sym_DOT_DOT, - STATE(3173), 1, + STATE(2605), 1, sym_bracketed_argument_list, - STATE(4583), 1, + STATE(3348), 1, sym_argument_list, - ACTIONS(6627), 2, + ACTIONS(5240), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5733), 9, + ACTIONS(1161), 9, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, @@ -570577,7 +564298,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_AMP, anon_sym_GT_GT, - STATE(4295), 9, + STATE(4230), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -570587,10 +564308,11 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5731), 22, - sym_interpolation_close_brace, + ACTIONS(1147), 23, anon_sym_COLON, anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_STAR, anon_sym_PERCENT, anon_sym_CARET, @@ -570610,7 +564332,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_is, anon_sym_with, - [47835] = 13, + [41207] = 37, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -570631,7 +564353,64 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - STATE(4296), 9, + ACTIONS(4753), 1, + anon_sym_LPAREN, + ACTIONS(4792), 1, + anon_sym_DOT, + ACTIONS(4794), 1, + anon_sym_DASH_GT, + ACTIONS(4823), 1, + anon_sym_BANG, + ACTIONS(5549), 1, + anon_sym_LBRACK, + ACTIONS(5739), 1, + anon_sym_QMARK, + ACTIONS(6355), 1, + anon_sym_switch, + ACTIONS(6365), 1, + anon_sym_as, + ACTIONS(6369), 1, + anon_sym_with, + ACTIONS(6433), 1, + anon_sym_SLASH, + ACTIONS(6435), 1, + anon_sym_AMP, + ACTIONS(6439), 1, + anon_sym_GT_GT, + ACTIONS(6445), 1, + anon_sym_DOT_DOT, + ACTIONS(6447), 1, + anon_sym_is, + ACTIONS(6515), 1, + anon_sym_CARET, + ACTIONS(6517), 1, + anon_sym_PIPE, + STATE(2467), 1, + sym_bracketed_argument_list, + STATE(2958), 1, + sym_argument_list, + ACTIONS(4825), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6427), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(6429), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6431), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(6437), 2, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + ACTIONS(6441), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6443), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + STATE(4231), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -570641,50 +564420,120 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(3447), 12, - anon_sym_COLON, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, + ACTIONS(5737), 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, + [41343] = 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(4092), 1, + anon_sym_DOT, + ACTIONS(4094), 1, + anon_sym_DASH_GT, + ACTIONS(5227), 1, + anon_sym_LPAREN, + ACTIONS(5236), 1, + anon_sym_LBRACK, + ACTIONS(5238), 1, anon_sym_BANG, - anon_sym_PLUS, - anon_sym_DASH, + ACTIONS(6017), 1, + anon_sym_switch, + ACTIONS(6027), 1, + anon_sym_as, + ACTIONS(6031), 1, + anon_sym_with, + ACTIONS(6455), 1, anon_sym_SLASH, - anon_sym_PIPE, + ACTIONS(6457), 1, anon_sym_AMP, + ACTIONS(6461), 1, anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(3445), 29, - sym_interpolation_close_brace, - anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACE, + ACTIONS(6467), 1, + anon_sym_DOT_DOT, + ACTIONS(6469), 1, + anon_sym_is, + ACTIONS(6525), 1, + anon_sym_CARET, + ACTIONS(6527), 1, + anon_sym_PIPE, + ACTIONS(6529), 1, + anon_sym_AMP_AMP, + ACTIONS(6531), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6533), 1, + anon_sym_QMARK_QMARK, + ACTIONS(6535), 1, + anon_sym_QMARK, + STATE(2605), 1, + sym_bracketed_argument_list, + STATE(3348), 1, + sym_argument_list, + ACTIONS(5240), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + ACTIONS(6449), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(6451), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6453), 2, anon_sym_STAR, anon_sym_PERCENT, - anon_sym_CARET, + ACTIONS(6459), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, + ACTIONS(6463), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + ACTIONS(6465), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - anon_sym_COLON_COLON, - anon_sym_switch, - anon_sym_DOT_DOT, + ACTIONS(5865), 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_into, - anon_sym_as, - anon_sym_is, - anon_sym_DASH_GT, - anon_sym_with, - [47922] = 13, + 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, + [41485] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -570705,7 +564554,26 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - STATE(4297), 9, + ACTIONS(3431), 1, + anon_sym_EQ, + ACTIONS(3429), 7, + anon_sym_LBRACK, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_DOT, + anon_sym_COLON_COLON, + ACTIONS(3600), 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(4233), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -570715,50 +564583,34 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(3650), 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(3652), 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, + ACTIONS(3603), 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_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, - [48009] = 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, + [41577] = 38, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -570779,49 +564631,76 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4443), 1, - anon_sym_DASH_GT, - ACTIONS(4533), 1, - anon_sym_DOT, - ACTIONS(6574), 1, + ACTIONS(4753), 1, anon_sym_LPAREN, - ACTIONS(6619), 1, - anon_sym_LBRACK, - ACTIONS(6625), 1, + ACTIONS(4792), 1, + anon_sym_DOT, + ACTIONS(4794), 1, + anon_sym_DASH_GT, + ACTIONS(4823), 1, anon_sym_BANG, - ACTIONS(6633), 1, + ACTIONS(5549), 1, + anon_sym_LBRACK, + ACTIONS(5739), 1, + anon_sym_QMARK, + ACTIONS(6355), 1, + anon_sym_switch, + ACTIONS(6365), 1, + anon_sym_as, + ACTIONS(6369), 1, + anon_sym_with, + ACTIONS(6433), 1, anon_sym_SLASH, - ACTIONS(6643), 1, + ACTIONS(6435), 1, + anon_sym_AMP, + ACTIONS(6439), 1, anon_sym_GT_GT, - ACTIONS(6649), 1, - anon_sym_switch, - ACTIONS(6651), 1, + ACTIONS(6445), 1, anon_sym_DOT_DOT, - ACTIONS(6663), 1, - anon_sym_with, - STATE(3173), 1, + ACTIONS(6447), 1, + anon_sym_is, + ACTIONS(6515), 1, + anon_sym_CARET, + ACTIONS(6517), 1, + anon_sym_PIPE, + ACTIONS(6519), 1, + anon_sym_AMP_AMP, + STATE(2467), 1, sym_bracketed_argument_list, - STATE(4583), 1, + STATE(2958), 1, sym_argument_list, - ACTIONS(6627), 2, + ACTIONS(4825), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6629), 2, + ACTIONS(6427), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(6429), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6631), 2, + ACTIONS(6431), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(6641), 2, + ACTIONS(6437), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(5664), 5, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_AMP, - STATE(4298), 9, + ACTIONS(6441), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6443), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(5737), 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(4234), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -570831,24 +564710,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5660), 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, - [48128] = 26, + [41715] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -570869,73 +564731,88 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4443), 1, - anon_sym_DASH_GT, - ACTIONS(4533), 1, - anon_sym_DOT, - ACTIONS(6574), 1, + ACTIONS(4753), 1, anon_sym_LPAREN, - ACTIONS(6619), 1, - anon_sym_LBRACK, - ACTIONS(6625), 1, + ACTIONS(4792), 1, + anon_sym_DOT, + ACTIONS(4794), 1, + anon_sym_DASH_GT, + ACTIONS(4823), 1, anon_sym_BANG, - ACTIONS(6633), 1, - anon_sym_SLASH, - ACTIONS(6649), 1, + ACTIONS(5549), 1, + anon_sym_LBRACK, + ACTIONS(5739), 1, + anon_sym_QMARK, + ACTIONS(6355), 1, anon_sym_switch, - ACTIONS(6651), 1, - anon_sym_DOT_DOT, - ACTIONS(6663), 1, + ACTIONS(6365), 1, + anon_sym_as, + ACTIONS(6369), 1, anon_sym_with, - STATE(3173), 1, + ACTIONS(6433), 1, + anon_sym_SLASH, + ACTIONS(6435), 1, + anon_sym_AMP, + ACTIONS(6439), 1, + anon_sym_GT_GT, + ACTIONS(6445), 1, + anon_sym_DOT_DOT, + ACTIONS(6447), 1, + anon_sym_is, + ACTIONS(6515), 1, + anon_sym_CARET, + ACTIONS(6517), 1, + anon_sym_PIPE, + ACTIONS(6519), 1, + anon_sym_AMP_AMP, + ACTIONS(6521), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6523), 1, + anon_sym_QMARK_QMARK, + STATE(2467), 1, sym_bracketed_argument_list, - STATE(4583), 1, + STATE(2958), 1, sym_argument_list, - ACTIONS(6627), 2, + ACTIONS(4825), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6631), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(5664), 8, + ACTIONS(6427), 2, anon_sym_LT, anon_sym_GT, - anon_sym_QMARK, + ACTIONS(6429), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT_GT, - STATE(4299), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - ACTIONS(5660), 18, - sym_interpolation_close_brace, - anon_sym_COLON, - anon_sym_COMMA, - anon_sym_CARET, + ACTIONS(6431), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(6437), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, + ACTIONS(6441), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + ACTIONS(6443), 2, 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, - [48241] = 24, + ACTIONS(5737), 7, + anon_sym_where, + anon_sym_from, + anon_sym_join, + anon_sym_let, + anon_sym_orderby, + anon_sym_group, + anon_sym_select, + 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, + [41857] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -570956,71 +564833,88 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4443), 1, - anon_sym_DASH_GT, - ACTIONS(4533), 1, + ACTIONS(4092), 1, anon_sym_DOT, - ACTIONS(6574), 1, + ACTIONS(4094), 1, + anon_sym_DASH_GT, + ACTIONS(5227), 1, anon_sym_LPAREN, - ACTIONS(6619), 1, + ACTIONS(5236), 1, anon_sym_LBRACK, - ACTIONS(6625), 1, + ACTIONS(5238), 1, anon_sym_BANG, - ACTIONS(6649), 1, + ACTIONS(6017), 1, anon_sym_switch, - ACTIONS(6651), 1, - anon_sym_DOT_DOT, - ACTIONS(6663), 1, + ACTIONS(6027), 1, + anon_sym_as, + ACTIONS(6031), 1, anon_sym_with, - STATE(3173), 1, + ACTIONS(6455), 1, + anon_sym_SLASH, + ACTIONS(6457), 1, + anon_sym_AMP, + ACTIONS(6461), 1, + anon_sym_GT_GT, + ACTIONS(6467), 1, + anon_sym_DOT_DOT, + ACTIONS(6469), 1, + anon_sym_is, + ACTIONS(6525), 1, + anon_sym_CARET, + ACTIONS(6527), 1, + anon_sym_PIPE, + ACTIONS(6529), 1, + anon_sym_AMP_AMP, + ACTIONS(6531), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6533), 1, + anon_sym_QMARK_QMARK, + ACTIONS(6535), 1, + anon_sym_QMARK, + STATE(2605), 1, sym_bracketed_argument_list, - STATE(4583), 1, + STATE(3348), 1, sym_argument_list, - ACTIONS(6627), 2, + ACTIONS(5240), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5664), 9, + ACTIONS(6449), 2, anon_sym_LT, anon_sym_GT, - anon_sym_QMARK, + ACTIONS(6451), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT_GT, - STATE(4300), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - ACTIONS(5660), 20, - sym_interpolation_close_brace, - anon_sym_COLON, - anon_sym_COMMA, + ACTIONS(6453), 2, anon_sym_STAR, anon_sym_PERCENT, - anon_sym_CARET, + ACTIONS(6459), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, + ACTIONS(6463), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + ACTIONS(6465), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, + ACTIONS(5709), 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_into, - anon_sym_as, - anon_sym_is, - [48350] = 27, + 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, + [41999] = 29, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -571041,45 +564935,49 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4443), 1, - anon_sym_DASH_GT, - ACTIONS(4533), 1, + ACTIONS(4092), 1, anon_sym_DOT, - ACTIONS(6574), 1, + ACTIONS(4094), 1, + anon_sym_DASH_GT, + ACTIONS(5227), 1, anon_sym_LPAREN, - ACTIONS(6619), 1, + ACTIONS(5236), 1, anon_sym_LBRACK, - ACTIONS(6625), 1, + ACTIONS(5238), 1, anon_sym_BANG, - ACTIONS(6633), 1, - anon_sym_SLASH, - ACTIONS(6649), 1, + ACTIONS(6017), 1, anon_sym_switch, - ACTIONS(6651), 1, - anon_sym_DOT_DOT, - ACTIONS(6663), 1, + ACTIONS(6031), 1, anon_sym_with, - STATE(3173), 1, + ACTIONS(6455), 1, + anon_sym_SLASH, + ACTIONS(6461), 1, + anon_sym_GT_GT, + ACTIONS(6467), 1, + anon_sym_DOT_DOT, + STATE(2605), 1, sym_bracketed_argument_list, - STATE(4583), 1, + STATE(3348), 1, sym_argument_list, - ACTIONS(6627), 2, + ACTIONS(5240), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6629), 2, + ACTIONS(6451), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6631), 2, + ACTIONS(6453), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(5664), 6, + ACTIONS(6459), 2, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + ACTIONS(5739), 5, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, anon_sym_PIPE, anon_sym_AMP, - anon_sym_GT_GT, - STATE(4301), 9, + STATE(4237), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -571089,13 +564987,12 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5660), 18, - sym_interpolation_close_brace, + ACTIONS(5737), 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, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, @@ -571108,7 +565005,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_into, anon_sym_as, anon_sym_is, - [48465] = 33, + [42119] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -571129,57 +565026,78 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4100), 1, + ACTIONS(4042), 1, anon_sym_DOT, - ACTIONS(4102), 1, + ACTIONS(4044), 1, anon_sym_DASH_GT, - ACTIONS(5264), 1, + ACTIONS(5257), 1, anon_sym_LPAREN, - ACTIONS(5302), 1, + ACTIONS(5300), 1, anon_sym_LBRACK, - ACTIONS(5304), 1, + ACTIONS(5302), 1, anon_sym_BANG, - ACTIONS(6475), 1, - anon_sym_switch, + ACTIONS(6473), 1, + anon_sym_QMARK, + ACTIONS(6479), 1, + anon_sym_SLASH, + ACTIONS(6481), 1, + anon_sym_CARET, + ACTIONS(6483), 1, + anon_sym_PIPE, ACTIONS(6485), 1, - anon_sym_as, + anon_sym_AMP, ACTIONS(6489), 1, - anon_sym_with, - ACTIONS(6593), 1, - anon_sym_SLASH, - ACTIONS(6603), 1, anon_sym_GT_GT, - ACTIONS(6609), 1, + ACTIONS(6495), 1, + anon_sym_switch, + ACTIONS(6497), 1, anon_sym_DOT_DOT, - ACTIONS(6617), 1, + ACTIONS(6499), 1, + anon_sym_AMP_AMP, + ACTIONS(6501), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6503), 1, + anon_sym_QMARK_QMARK, + ACTIONS(6505), 1, + anon_sym_as, + ACTIONS(6507), 1, anon_sym_is, - STATE(2808), 1, + ACTIONS(6509), 1, + anon_sym_with, + STATE(2759), 1, sym_bracketed_argument_list, - STATE(3487), 1, + STATE(3381), 1, sym_argument_list, - ACTIONS(5306), 2, + ACTIONS(5304), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6585), 2, + ACTIONS(6471), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(6589), 2, + ACTIONS(6475), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6591), 2, + ACTIONS(6477), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(6601), 2, + ACTIONS(6487), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(6607), 2, + ACTIONS(6491), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6493), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5664), 3, - anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_AMP, - STATE(4302), 9, + ACTIONS(5865), 7, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_and, + anon_sym_or, + STATE(4238), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -571189,20 +565107,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5660), 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, - [48592] = 22, + [42261] = 26, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -571223,36 +565128,44 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4100), 1, + ACTIONS(4092), 1, anon_sym_DOT, - ACTIONS(4102), 1, + ACTIONS(4094), 1, anon_sym_DASH_GT, - ACTIONS(5264), 1, + ACTIONS(5227), 1, anon_sym_LPAREN, - ACTIONS(5302), 1, + ACTIONS(5236), 1, anon_sym_LBRACK, - ACTIONS(5304), 1, + ACTIONS(5238), 1, anon_sym_BANG, - ACTIONS(6706), 1, + ACTIONS(6017), 1, + anon_sym_switch, + ACTIONS(6031), 1, + anon_sym_with, + ACTIONS(6455), 1, + anon_sym_SLASH, + ACTIONS(6467), 1, anon_sym_DOT_DOT, - STATE(2808), 1, + STATE(2605), 1, sym_bracketed_argument_list, - STATE(3487), 1, + STATE(3348), 1, sym_argument_list, - ACTIONS(5306), 2, + ACTIONS(5240), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5733), 9, + ACTIONS(6453), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(5739), 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(4303), 9, + STATE(4239), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -571262,13 +565175,11 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5731), 22, + ACTIONS(5737), 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, @@ -571276,16 +565187,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, - [48697] = 37, + [42375] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -571306,74 +565216,78 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4443), 1, - anon_sym_DASH_GT, - ACTIONS(4533), 1, - anon_sym_DOT, - ACTIONS(5664), 1, - anon_sym_QMARK, - ACTIONS(6574), 1, + ACTIONS(4753), 1, anon_sym_LPAREN, - ACTIONS(6619), 1, - anon_sym_LBRACK, - ACTIONS(6625), 1, + ACTIONS(4792), 1, + anon_sym_DOT, + ACTIONS(4794), 1, + anon_sym_DASH_GT, + ACTIONS(4823), 1, anon_sym_BANG, - ACTIONS(6633), 1, + ACTIONS(5549), 1, + anon_sym_LBRACK, + ACTIONS(6355), 1, + anon_sym_switch, + ACTIONS(6365), 1, + anon_sym_as, + ACTIONS(6369), 1, + anon_sym_with, + ACTIONS(6433), 1, anon_sym_SLASH, - ACTIONS(6635), 1, - anon_sym_CARET, - ACTIONS(6637), 1, - anon_sym_PIPE, - ACTIONS(6639), 1, + ACTIONS(6435), 1, anon_sym_AMP, - ACTIONS(6643), 1, + ACTIONS(6439), 1, anon_sym_GT_GT, - ACTIONS(6649), 1, - anon_sym_switch, - ACTIONS(6651), 1, + ACTIONS(6445), 1, anon_sym_DOT_DOT, - ACTIONS(6659), 1, - anon_sym_as, - ACTIONS(6661), 1, + ACTIONS(6447), 1, anon_sym_is, - ACTIONS(6663), 1, - anon_sym_with, - STATE(3173), 1, + ACTIONS(6513), 1, + anon_sym_QMARK, + ACTIONS(6515), 1, + anon_sym_CARET, + ACTIONS(6517), 1, + anon_sym_PIPE, + ACTIONS(6519), 1, + anon_sym_AMP_AMP, + ACTIONS(6521), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6523), 1, + anon_sym_QMARK_QMARK, + STATE(2467), 1, sym_bracketed_argument_list, - STATE(4583), 1, + STATE(2958), 1, sym_argument_list, - ACTIONS(6621), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(6627), 2, + ACTIONS(4825), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6629), 2, + ACTIONS(6427), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(6429), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6631), 2, + ACTIONS(6431), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(6641), 2, + ACTIONS(6437), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(6645), 2, + ACTIONS(6441), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6647), 2, + ACTIONS(6443), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5660), 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(4304), 9, + ACTIONS(6559), 7, + anon_sym_where, + anon_sym_from, + anon_sym_join, + anon_sym_let, + anon_sym_orderby, + anon_sym_group, + anon_sym_select, + STATE(4240), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -571383,7 +565297,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [48832] = 40, + [42517] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -571404,77 +565318,78 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4100), 1, + ACTIONS(4042), 1, anon_sym_DOT, - ACTIONS(4102), 1, + ACTIONS(4044), 1, anon_sym_DASH_GT, - ACTIONS(5264), 1, + ACTIONS(5257), 1, anon_sym_LPAREN, - ACTIONS(5302), 1, + ACTIONS(5300), 1, anon_sym_LBRACK, - ACTIONS(5304), 1, + ACTIONS(5302), 1, anon_sym_BANG, - ACTIONS(6475), 1, - anon_sym_switch, - ACTIONS(6485), 1, - anon_sym_as, - ACTIONS(6489), 1, - anon_sym_with, - ACTIONS(6587), 1, + ACTIONS(6473), 1, anon_sym_QMARK, - ACTIONS(6593), 1, + ACTIONS(6479), 1, anon_sym_SLASH, - ACTIONS(6595), 1, + ACTIONS(6481), 1, anon_sym_CARET, - ACTIONS(6597), 1, + ACTIONS(6483), 1, anon_sym_PIPE, - ACTIONS(6599), 1, + ACTIONS(6485), 1, anon_sym_AMP, - ACTIONS(6603), 1, + ACTIONS(6489), 1, anon_sym_GT_GT, - ACTIONS(6609), 1, + ACTIONS(6495), 1, + anon_sym_switch, + ACTIONS(6497), 1, anon_sym_DOT_DOT, - ACTIONS(6611), 1, + ACTIONS(6499), 1, anon_sym_AMP_AMP, - ACTIONS(6613), 1, + ACTIONS(6501), 1, anon_sym_PIPE_PIPE, - ACTIONS(6615), 1, + ACTIONS(6503), 1, anon_sym_QMARK_QMARK, - ACTIONS(6617), 1, + ACTIONS(6505), 1, + anon_sym_as, + ACTIONS(6507), 1, anon_sym_is, - STATE(2808), 1, + ACTIONS(6509), 1, + anon_sym_with, + STATE(2759), 1, sym_bracketed_argument_list, - STATE(3487), 1, + STATE(3381), 1, sym_argument_list, - ACTIONS(5306), 2, + ACTIONS(5304), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6585), 2, + ACTIONS(6471), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(6589), 2, + ACTIONS(6475), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6591), 2, + ACTIONS(6477), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(6601), 2, + ACTIONS(6487), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(6605), 2, + ACTIONS(6491), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6607), 2, + ACTIONS(6493), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5777), 6, + ACTIONS(5652), 7, anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_and, anon_sym_or, - aux_sym_preproc_if_token3, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - STATE(4305), 9, + STATE(4241), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -571484,7 +565399,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [48973] = 38, + [42659] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -571505,75 +565420,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4100), 1, - anon_sym_DOT, - ACTIONS(4102), 1, - anon_sym_DASH_GT, - ACTIONS(5264), 1, - anon_sym_LPAREN, - ACTIONS(5302), 1, - anon_sym_LBRACK, - ACTIONS(5304), 1, - anon_sym_BANG, - ACTIONS(5664), 1, - anon_sym_QMARK, - ACTIONS(6475), 1, - anon_sym_switch, - ACTIONS(6485), 1, - anon_sym_as, - ACTIONS(6489), 1, - anon_sym_with, - ACTIONS(6593), 1, - anon_sym_SLASH, - ACTIONS(6595), 1, - anon_sym_CARET, - ACTIONS(6597), 1, - anon_sym_PIPE, - ACTIONS(6599), 1, - anon_sym_AMP, - ACTIONS(6603), 1, - anon_sym_GT_GT, - ACTIONS(6609), 1, - anon_sym_DOT_DOT, - ACTIONS(6611), 1, - anon_sym_AMP_AMP, - ACTIONS(6617), 1, - anon_sym_is, - STATE(2808), 1, - sym_bracketed_argument_list, - STATE(3487), 1, - sym_argument_list, - ACTIONS(5306), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6585), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(6589), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(6591), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(6601), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - ACTIONS(6605), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(6607), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(5660), 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(4306), 9, + STATE(4242), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -571583,7 +565430,51 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [49110] = 38, + ACTIONS(4098), 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(4096), 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, + [42747] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -571604,75 +565495,78 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4443), 1, - anon_sym_DASH_GT, - ACTIONS(4533), 1, + ACTIONS(4092), 1, anon_sym_DOT, - ACTIONS(5664), 1, - anon_sym_QMARK, - ACTIONS(6574), 1, + ACTIONS(4094), 1, + anon_sym_DASH_GT, + ACTIONS(5227), 1, anon_sym_LPAREN, - ACTIONS(6619), 1, + ACTIONS(5236), 1, anon_sym_LBRACK, - ACTIONS(6625), 1, + ACTIONS(5238), 1, anon_sym_BANG, - ACTIONS(6633), 1, + ACTIONS(6017), 1, + anon_sym_switch, + ACTIONS(6027), 1, + anon_sym_as, + ACTIONS(6031), 1, + anon_sym_with, + ACTIONS(6455), 1, anon_sym_SLASH, - ACTIONS(6635), 1, - anon_sym_CARET, - ACTIONS(6637), 1, - anon_sym_PIPE, - ACTIONS(6639), 1, + ACTIONS(6457), 1, anon_sym_AMP, - ACTIONS(6643), 1, + ACTIONS(6461), 1, anon_sym_GT_GT, - ACTIONS(6649), 1, - anon_sym_switch, - ACTIONS(6651), 1, + ACTIONS(6467), 1, anon_sym_DOT_DOT, - ACTIONS(6653), 1, - anon_sym_AMP_AMP, - ACTIONS(6659), 1, - anon_sym_as, - ACTIONS(6661), 1, + ACTIONS(6469), 1, anon_sym_is, - ACTIONS(6663), 1, - anon_sym_with, - STATE(3173), 1, + ACTIONS(6525), 1, + anon_sym_CARET, + ACTIONS(6527), 1, + anon_sym_PIPE, + ACTIONS(6529), 1, + anon_sym_AMP_AMP, + ACTIONS(6531), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6533), 1, + anon_sym_QMARK_QMARK, + ACTIONS(6535), 1, + anon_sym_QMARK, + STATE(2605), 1, sym_bracketed_argument_list, - STATE(4583), 1, + STATE(3348), 1, sym_argument_list, - ACTIONS(6621), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(6627), 2, + ACTIONS(5240), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6629), 2, + ACTIONS(6449), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(6451), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6631), 2, + ACTIONS(6453), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(6641), 2, + ACTIONS(6459), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(6645), 2, + ACTIONS(6463), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6647), 2, + ACTIONS(6465), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5660), 8, - sym_interpolation_close_brace, + ACTIONS(5855), 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(4307), 9, + STATE(4243), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -571682,7 +565576,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [49247] = 40, + [42889] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -571703,77 +565597,78 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4443), 1, - anon_sym_DASH_GT, - ACTIONS(4533), 1, - anon_sym_DOT, - ACTIONS(5664), 1, - anon_sym_QMARK, - ACTIONS(6574), 1, + ACTIONS(4753), 1, anon_sym_LPAREN, - ACTIONS(6619), 1, - anon_sym_LBRACK, - ACTIONS(6625), 1, + ACTIONS(4792), 1, + anon_sym_DOT, + ACTIONS(4794), 1, + anon_sym_DASH_GT, + ACTIONS(4823), 1, anon_sym_BANG, - ACTIONS(6633), 1, + ACTIONS(5549), 1, + anon_sym_LBRACK, + ACTIONS(6355), 1, + anon_sym_switch, + ACTIONS(6365), 1, + anon_sym_as, + ACTIONS(6369), 1, + anon_sym_with, + ACTIONS(6433), 1, anon_sym_SLASH, - ACTIONS(6635), 1, - anon_sym_CARET, - ACTIONS(6637), 1, - anon_sym_PIPE, - ACTIONS(6639), 1, + ACTIONS(6435), 1, anon_sym_AMP, - ACTIONS(6643), 1, + ACTIONS(6439), 1, anon_sym_GT_GT, - ACTIONS(6649), 1, - anon_sym_switch, - ACTIONS(6651), 1, + ACTIONS(6445), 1, anon_sym_DOT_DOT, - ACTIONS(6653), 1, + ACTIONS(6447), 1, + anon_sym_is, + ACTIONS(6513), 1, + anon_sym_QMARK, + ACTIONS(6515), 1, + anon_sym_CARET, + ACTIONS(6517), 1, + anon_sym_PIPE, + ACTIONS(6519), 1, anon_sym_AMP_AMP, - ACTIONS(6655), 1, + ACTIONS(6521), 1, anon_sym_PIPE_PIPE, - ACTIONS(6657), 1, + ACTIONS(6523), 1, anon_sym_QMARK_QMARK, - ACTIONS(6659), 1, - anon_sym_as, - ACTIONS(6661), 1, - anon_sym_is, - ACTIONS(6663), 1, - anon_sym_with, - STATE(3173), 1, + STATE(2467), 1, sym_bracketed_argument_list, - STATE(4583), 1, + STATE(2958), 1, sym_argument_list, - ACTIONS(6621), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(6627), 2, + ACTIONS(4825), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6629), 2, + ACTIONS(6427), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(6429), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6631), 2, + ACTIONS(6431), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(6641), 2, + ACTIONS(6437), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(6645), 2, + ACTIONS(6441), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6647), 2, + ACTIONS(6443), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5660), 6, - sym_interpolation_close_brace, - anon_sym_COLON, - anon_sym_COMMA, - anon_sym_and, - anon_sym_or, - anon_sym_into, - STATE(4308), 9, + ACTIONS(5709), 7, + anon_sym_where, + anon_sym_from, + anon_sym_join, + anon_sym_let, + anon_sym_orderby, + anon_sym_group, + anon_sym_select, + STATE(4244), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -571783,7 +565678,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [49388] = 40, + [43031] = 22, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -571804,77 +565699,125 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4100), 1, + ACTIONS(4092), 1, anon_sym_DOT, - ACTIONS(4102), 1, + ACTIONS(4094), 1, anon_sym_DASH_GT, - ACTIONS(5264), 1, + ACTIONS(5227), 1, anon_sym_LPAREN, - ACTIONS(5302), 1, + ACTIONS(5236), 1, anon_sym_LBRACK, - ACTIONS(5304), 1, + ACTIONS(5238), 1, anon_sym_BANG, - ACTIONS(6475), 1, - anon_sym_switch, - ACTIONS(6485), 1, - anon_sym_as, - ACTIONS(6489), 1, - anon_sym_with, - ACTIONS(6684), 1, - anon_sym_QMARK, - ACTIONS(6690), 1, - anon_sym_SLASH, - ACTIONS(6692), 1, - anon_sym_CARET, - ACTIONS(6694), 1, - anon_sym_PIPE, - ACTIONS(6696), 1, - anon_sym_AMP, - ACTIONS(6700), 1, - anon_sym_GT_GT, - ACTIONS(6706), 1, + ACTIONS(6467), 1, anon_sym_DOT_DOT, - ACTIONS(6708), 1, - anon_sym_AMP_AMP, - ACTIONS(6710), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6712), 1, - anon_sym_QMARK_QMARK, - ACTIONS(6714), 1, - anon_sym_is, - STATE(2808), 1, + STATE(2605), 1, sym_bracketed_argument_list, - STATE(3487), 1, + STATE(3348), 1, sym_argument_list, - ACTIONS(5306), 2, + ACTIONS(5240), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6682), 2, + ACTIONS(5743), 9, anon_sym_LT, anon_sym_GT, - ACTIONS(6686), 2, + anon_sym_QMARK, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6688), 2, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT_GT, + STATE(4245), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + ACTIONS(5741), 23, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(6698), 2, + anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(6702), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6704), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5864), 6, - anon_sym_COLON, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_RBRACE, + anon_sym_switch, anon_sym_and, anon_sym_or, - STATE(4309), 9, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, + anon_sym_into, + anon_sym_as, + anon_sym_is, + anon_sym_with, + [43137] = 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(2965), 1, + sym__identifier_token, + ACTIONS(2977), 1, + anon_sym_LPAREN, + ACTIONS(3438), 1, + anon_sym_delegate, + ACTIONS(6561), 1, + anon_sym_LBRACK, + ACTIONS(6563), 1, + sym_predefined_type, + STATE(3125), 1, + sym_array_type, + STATE(3654), 1, + sym__reserved_identifier, + STATE(4073), 1, + sym_generic_name, + STATE(4081), 1, + sym_identifier, + STATE(6665), 1, + sym__name, + STATE(6777), 1, + sym_tuple_type, + STATE(7165), 1, + sym__array_base_type, + STATE(7357), 1, + sym__pointer_base_type, + STATE(4068), 3, + sym_alias_qualified_name, + sym__simple_name, + sym_qualified_name, + STATE(7189), 3, + sym_nullable_type, + sym_pointer_type, + sym_function_pointer_type, + STATE(4246), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -571884,7 +565827,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [49529] = 40, + ACTIONS(2969), 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, + [43252] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -571905,77 +565871,77 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4100), 1, + ACTIONS(4042), 1, anon_sym_DOT, - ACTIONS(4102), 1, + ACTIONS(4044), 1, anon_sym_DASH_GT, - ACTIONS(5264), 1, + ACTIONS(5257), 1, anon_sym_LPAREN, - ACTIONS(5302), 1, + ACTIONS(5300), 1, anon_sym_LBRACK, - ACTIONS(5304), 1, + ACTIONS(5302), 1, anon_sym_BANG, - ACTIONS(6475), 1, + ACTIONS(6495), 1, anon_sym_switch, - ACTIONS(6485), 1, + ACTIONS(6505), 1, anon_sym_as, - ACTIONS(6489), 1, + ACTIONS(6509), 1, anon_sym_with, - ACTIONS(6684), 1, + ACTIONS(6567), 1, anon_sym_QMARK, - ACTIONS(6690), 1, + ACTIONS(6573), 1, anon_sym_SLASH, - ACTIONS(6692), 1, + ACTIONS(6575), 1, anon_sym_CARET, - ACTIONS(6694), 1, + ACTIONS(6577), 1, anon_sym_PIPE, - ACTIONS(6696), 1, + ACTIONS(6579), 1, anon_sym_AMP, - ACTIONS(6700), 1, + ACTIONS(6583), 1, anon_sym_GT_GT, - ACTIONS(6706), 1, + ACTIONS(6589), 1, anon_sym_DOT_DOT, - ACTIONS(6708), 1, + ACTIONS(6591), 1, anon_sym_AMP_AMP, - ACTIONS(6710), 1, + ACTIONS(6593), 1, anon_sym_PIPE_PIPE, - ACTIONS(6712), 1, + ACTIONS(6595), 1, anon_sym_QMARK_QMARK, - ACTIONS(6714), 1, + ACTIONS(6597), 1, anon_sym_is, - STATE(2808), 1, + STATE(2759), 1, sym_bracketed_argument_list, - STATE(3487), 1, + STATE(3381), 1, sym_argument_list, - ACTIONS(5306), 2, + ACTIONS(5304), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6682), 2, + ACTIONS(6565), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(6686), 2, + ACTIONS(6569), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6688), 2, + ACTIONS(6571), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(6698), 2, + ACTIONS(6581), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(6702), 2, + ACTIONS(6585), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6704), 2, + ACTIONS(6587), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5072), 6, - anon_sym_COLON, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_RBRACE, + ACTIONS(5709), 6, + anon_sym_SEMI, anon_sym_and, anon_sym_or, - STATE(4310), 9, + aux_sym_preproc_if_token3, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + STATE(4247), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -571985,7 +565951,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [49670] = 22, + [43393] = 27, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -572006,36 +565972,41 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4443), 1, - anon_sym_DASH_GT, - ACTIONS(4533), 1, - anon_sym_DOT, - ACTIONS(6574), 1, + ACTIONS(2965), 1, + sym__identifier_token, + ACTIONS(2977), 1, anon_sym_LPAREN, - ACTIONS(6619), 1, + ACTIONS(3438), 1, + anon_sym_delegate, + ACTIONS(6563), 1, + sym_predefined_type, + ACTIONS(6599), 1, anon_sym_LBRACK, - ACTIONS(6625), 1, - anon_sym_BANG, - ACTIONS(6651), 1, - anon_sym_DOT_DOT, - STATE(3173), 1, - sym_bracketed_argument_list, - STATE(4583), 1, - sym_argument_list, - ACTIONS(6627), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1223), 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(4311), 9, + STATE(2913), 1, + sym_array_type, + STATE(3654), 1, + sym__reserved_identifier, + STATE(4073), 1, + sym_generic_name, + STATE(4081), 1, + sym_identifier, + STATE(6665), 1, + sym__name, + STATE(6777), 1, + sym_tuple_type, + STATE(7236), 1, + sym__array_base_type, + STATE(7357), 1, + sym__pointer_base_type, + STATE(4068), 3, + sym_alias_qualified_name, + sym__simple_name, + sym_qualified_name, + STATE(7189), 3, + sym_nullable_type, + sym_pointer_type, + sym_function_pointer_type, + STATE(4248), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -572045,30 +566016,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(1221), 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, + ACTIONS(2969), 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_with, - [49775] = 14, + 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, + [43508] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -572089,9 +566060,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(3445), 1, - anon_sym_COLON_COLON, - STATE(4312), 9, + ACTIONS(6601), 1, + anon_sym_LBRACK, + ACTIONS(6603), 1, + anon_sym_STAR, + STATE(4249), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -572101,27 +566074,116 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(3619), 12, + ACTIONS(3963), 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, anon_sym_LT, anon_sym_GT, - anon_sym_QMARK, + anon_sym_EQ_GT, + ACTIONS(3961), 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, + [43599] = 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(4042), 1, + anon_sym_DOT, + ACTIONS(4044), 1, + anon_sym_DASH_GT, + ACTIONS(5257), 1, + anon_sym_LPAREN, + ACTIONS(5300), 1, + anon_sym_LBRACK, + ACTIONS(5302), 1, anon_sym_BANG, + ACTIONS(6495), 1, + anon_sym_switch, + ACTIONS(6509), 1, + anon_sym_with, + ACTIONS(6605), 1, + anon_sym_DOT_DOT, + STATE(2759), 1, + sym_bracketed_argument_list, + STATE(3381), 1, + sym_argument_list, + ACTIONS(5304), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5739), 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_DOT, - ACTIONS(3616), 28, - sym_interpolation_close_brace, - anon_sym_LBRACK, + 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(5737), 20, + 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, @@ -572131,19 +566193,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, - [49864] = 40, + [43708] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -572164,77 +566221,77 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4100), 1, + ACTIONS(4427), 1, anon_sym_DOT, - ACTIONS(4102), 1, + ACTIONS(4429), 1, anon_sym_DASH_GT, - ACTIONS(5264), 1, + ACTIONS(6557), 1, anon_sym_LPAREN, - ACTIONS(5302), 1, + ACTIONS(6607), 1, anon_sym_LBRACK, - ACTIONS(5304), 1, - anon_sym_BANG, - ACTIONS(6475), 1, - anon_sym_switch, - ACTIONS(6485), 1, - anon_sym_as, - ACTIONS(6489), 1, - anon_sym_with, - ACTIONS(6684), 1, + ACTIONS(6611), 1, anon_sym_QMARK, - ACTIONS(6690), 1, + ACTIONS(6613), 1, + anon_sym_BANG, + ACTIONS(6621), 1, anon_sym_SLASH, - ACTIONS(6692), 1, + ACTIONS(6623), 1, anon_sym_CARET, - ACTIONS(6694), 1, + ACTIONS(6625), 1, anon_sym_PIPE, - ACTIONS(6696), 1, + ACTIONS(6627), 1, anon_sym_AMP, - ACTIONS(6700), 1, + ACTIONS(6631), 1, anon_sym_GT_GT, - ACTIONS(6706), 1, + ACTIONS(6637), 1, + anon_sym_switch, + ACTIONS(6639), 1, anon_sym_DOT_DOT, - ACTIONS(6708), 1, + ACTIONS(6641), 1, anon_sym_AMP_AMP, - ACTIONS(6710), 1, + ACTIONS(6643), 1, anon_sym_PIPE_PIPE, - ACTIONS(6712), 1, + ACTIONS(6645), 1, anon_sym_QMARK_QMARK, - ACTIONS(6714), 1, + ACTIONS(6647), 1, + anon_sym_as, + ACTIONS(6649), 1, anon_sym_is, - STATE(2808), 1, + ACTIONS(6651), 1, + anon_sym_with, + STATE(3188), 1, sym_bracketed_argument_list, - STATE(3487), 1, + STATE(4584), 1, sym_argument_list, - ACTIONS(5306), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6682), 2, + ACTIONS(6609), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(6686), 2, + ACTIONS(6615), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6617), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6688), 2, + ACTIONS(6619), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(6698), 2, + ACTIONS(6629), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(6702), 2, + ACTIONS(6633), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6704), 2, + ACTIONS(6635), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5882), 6, + ACTIONS(5865), 6, + sym_interpolation_close_brace, anon_sym_COLON, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_RBRACE, anon_sym_and, anon_sym_or, - STATE(4313), 9, + anon_sym_into, + STATE(4251), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -572244,7 +566301,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [50005] = 15, + [43849] = 29, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -572265,11 +566322,49 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(6565), 1, + ACTIONS(4042), 1, + anon_sym_DOT, + ACTIONS(4044), 1, + anon_sym_DASH_GT, + ACTIONS(5257), 1, + anon_sym_LPAREN, + ACTIONS(5300), 1, + anon_sym_LBRACK, + ACTIONS(5302), 1, + anon_sym_BANG, + ACTIONS(6495), 1, + anon_sym_switch, + ACTIONS(6509), 1, + anon_sym_with, + ACTIONS(6605), 1, + anon_sym_DOT_DOT, + ACTIONS(6657), 1, + anon_sym_SLASH, + ACTIONS(6661), 1, + anon_sym_GT_GT, + STATE(2759), 1, + sym_bracketed_argument_list, + STATE(3381), 1, + sym_argument_list, + ACTIONS(5304), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6653), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6655), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(6659), 2, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + ACTIONS(5739), 5, anon_sym_LT, - STATE(4410), 1, - sym_type_argument_list, - STATE(4314), 9, + anon_sym_GT, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_AMP, + STATE(4252), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -572279,48 +566374,24 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(3660), 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(3662), 29, - sym_interpolation_close_brace, - anon_sym_LBRACK, + ACTIONS(5737), 16, 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_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, - [50096] = 40, + [43968] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -572341,77 +566412,145 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4100), 1, + ACTIONS(4427), 1, anon_sym_DOT, - ACTIONS(4102), 1, + ACTIONS(4429), 1, anon_sym_DASH_GT, - ACTIONS(5264), 1, + ACTIONS(6557), 1, anon_sym_LPAREN, - ACTIONS(5302), 1, + ACTIONS(6607), 1, anon_sym_LBRACK, - ACTIONS(5304), 1, - anon_sym_BANG, - ACTIONS(5664), 1, + ACTIONS(6611), 1, anon_sym_QMARK, - ACTIONS(6475), 1, - anon_sym_switch, - ACTIONS(6485), 1, - anon_sym_as, - ACTIONS(6489), 1, - anon_sym_with, - ACTIONS(6593), 1, + ACTIONS(6613), 1, + anon_sym_BANG, + ACTIONS(6621), 1, anon_sym_SLASH, - ACTIONS(6595), 1, + ACTIONS(6623), 1, anon_sym_CARET, - ACTIONS(6597), 1, + ACTIONS(6625), 1, anon_sym_PIPE, - ACTIONS(6599), 1, + ACTIONS(6627), 1, anon_sym_AMP, - ACTIONS(6603), 1, + ACTIONS(6631), 1, anon_sym_GT_GT, - ACTIONS(6609), 1, + ACTIONS(6637), 1, + anon_sym_switch, + ACTIONS(6639), 1, anon_sym_DOT_DOT, - ACTIONS(6611), 1, + ACTIONS(6641), 1, anon_sym_AMP_AMP, - ACTIONS(6613), 1, + ACTIONS(6643), 1, anon_sym_PIPE_PIPE, - ACTIONS(6615), 1, + ACTIONS(6645), 1, anon_sym_QMARK_QMARK, - ACTIONS(6617), 1, + ACTIONS(6647), 1, + anon_sym_as, + ACTIONS(6649), 1, anon_sym_is, - STATE(2808), 1, + ACTIONS(6651), 1, + anon_sym_with, + STATE(3188), 1, sym_bracketed_argument_list, - STATE(3487), 1, + STATE(4584), 1, sym_argument_list, - ACTIONS(5306), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6585), 2, + ACTIONS(6609), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(6589), 2, + ACTIONS(6615), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6617), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6591), 2, + ACTIONS(6619), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(6601), 2, + ACTIONS(6629), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(6605), 2, + ACTIONS(6633), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6607), 2, + ACTIONS(6635), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5660), 6, - anon_sym_SEMI, + ACTIONS(5801), 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(4315), 9, + anon_sym_into, + STATE(4253), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + [44109] = 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(4042), 1, + anon_sym_DOT, + ACTIONS(4044), 1, + anon_sym_DASH_GT, + ACTIONS(5257), 1, + anon_sym_LPAREN, + ACTIONS(5300), 1, + anon_sym_LBRACK, + ACTIONS(5302), 1, + anon_sym_BANG, + ACTIONS(6495), 1, + anon_sym_switch, + ACTIONS(6509), 1, + anon_sym_with, + ACTIONS(6605), 1, + anon_sym_DOT_DOT, + ACTIONS(6657), 1, + anon_sym_SLASH, + STATE(2759), 1, + sym_bracketed_argument_list, + STATE(3381), 1, + sym_argument_list, + ACTIONS(5304), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6655), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(5739), 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(4254), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -572421,7 +566560,26 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [50237] = 13, + ACTIONS(5737), 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, + anon_sym_is, + [44222] = 22, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -572442,7 +566600,36 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - STATE(4316), 9, + ACTIONS(2965), 1, + sym__identifier_token, + ACTIONS(5937), 1, + anon_sym_ref, + STATE(3654), 1, + sym__reserved_identifier, + STATE(4073), 1, + sym_generic_name, + STATE(4081), 1, + sym_identifier, + STATE(6744), 1, + sym__name, + STATE(7102), 1, + sym_ref_type, + STATE(7107), 1, + sym__scoped_base_type, + STATE(4068), 3, + sym_alias_qualified_name, + sym__simple_name, + sym_qualified_name, + ACTIONS(3429), 8, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_LT, + anon_sym_GT, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_DOT, + anon_sym_COLON_COLON, + STATE(4255), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -572452,36 +566639,17 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(4126), 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(4124), 28, + ACTIONS(2969), 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, @@ -572494,8 +566662,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - sym__identifier_token, - [50324] = 40, + [44327] = 35, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -572516,77 +566683,61 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4100), 1, + ACTIONS(4042), 1, anon_sym_DOT, - ACTIONS(4102), 1, + ACTIONS(4044), 1, anon_sym_DASH_GT, - ACTIONS(5264), 1, + ACTIONS(5257), 1, anon_sym_LPAREN, - ACTIONS(5302), 1, + ACTIONS(5300), 1, anon_sym_LBRACK, - ACTIONS(5304), 1, + ACTIONS(5302), 1, anon_sym_BANG, - ACTIONS(6475), 1, + ACTIONS(6495), 1, anon_sym_switch, - ACTIONS(6485), 1, + ACTIONS(6505), 1, anon_sym_as, - ACTIONS(6489), 1, + ACTIONS(6509), 1, anon_sym_with, - ACTIONS(6684), 1, - anon_sym_QMARK, - ACTIONS(6690), 1, + ACTIONS(6605), 1, + anon_sym_DOT_DOT, + ACTIONS(6657), 1, anon_sym_SLASH, - ACTIONS(6692), 1, - anon_sym_CARET, - ACTIONS(6694), 1, - anon_sym_PIPE, - ACTIONS(6696), 1, - anon_sym_AMP, - ACTIONS(6700), 1, + ACTIONS(6661), 1, anon_sym_GT_GT, - ACTIONS(6706), 1, - anon_sym_DOT_DOT, - ACTIONS(6708), 1, - anon_sym_AMP_AMP, - ACTIONS(6710), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6712), 1, - anon_sym_QMARK_QMARK, - ACTIONS(6714), 1, + ACTIONS(6665), 1, + anon_sym_AMP, + ACTIONS(6671), 1, anon_sym_is, - STATE(2808), 1, + STATE(2759), 1, sym_bracketed_argument_list, - STATE(3487), 1, + STATE(3381), 1, sym_argument_list, - ACTIONS(5306), 2, + ACTIONS(5304), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6682), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(6686), 2, + ACTIONS(5739), 2, + anon_sym_QMARK, + anon_sym_PIPE, + ACTIONS(6653), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6688), 2, + ACTIONS(6655), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(6698), 2, + ACTIONS(6659), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(6702), 2, + ACTIONS(6663), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(6667), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6704), 2, + ACTIONS(6669), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5899), 6, - anon_sym_COLON, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_and, - anon_sym_or, - STATE(4317), 9, + STATE(4256), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -572596,7 +566747,18 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [50465] = 24, + ACTIONS(5737), 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, + [44458] = 22, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -572617,30 +566779,26 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4100), 1, + ACTIONS(4427), 1, anon_sym_DOT, - ACTIONS(4102), 1, + ACTIONS(4429), 1, anon_sym_DASH_GT, - ACTIONS(5264), 1, + ACTIONS(6557), 1, anon_sym_LPAREN, - ACTIONS(5302), 1, + ACTIONS(6607), 1, anon_sym_LBRACK, - ACTIONS(5304), 1, + ACTIONS(6613), 1, anon_sym_BANG, - ACTIONS(6475), 1, - anon_sym_switch, - ACTIONS(6489), 1, - anon_sym_with, - ACTIONS(6706), 1, + ACTIONS(6639), 1, anon_sym_DOT_DOT, - STATE(2808), 1, + STATE(3188), 1, sym_bracketed_argument_list, - STATE(3487), 1, + STATE(4584), 1, sym_argument_list, - ACTIONS(5306), 2, + ACTIONS(6615), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5664), 9, + ACTIONS(5743), 9, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, @@ -572650,7 +566808,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_AMP, anon_sym_GT_GT, - STATE(4318), 9, + STATE(4257), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -572660,11 +566818,10 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5660), 20, + ACTIONS(5741), 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, @@ -572674,14 +566831,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, - [50574] = 40, + anon_sym_with, + [44563] = 36, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -572702,77 +566862,73 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4443), 1, - anon_sym_DASH_GT, - ACTIONS(4533), 1, + ACTIONS(4042), 1, anon_sym_DOT, - ACTIONS(6574), 1, + ACTIONS(4044), 1, + anon_sym_DASH_GT, + ACTIONS(5257), 1, anon_sym_LPAREN, - ACTIONS(6619), 1, + ACTIONS(5300), 1, anon_sym_LBRACK, - ACTIONS(6623), 1, - anon_sym_QMARK, - ACTIONS(6625), 1, + ACTIONS(5302), 1, anon_sym_BANG, - ACTIONS(6633), 1, - anon_sym_SLASH, - ACTIONS(6635), 1, - anon_sym_CARET, - ACTIONS(6637), 1, - anon_sym_PIPE, - ACTIONS(6639), 1, - anon_sym_AMP, - ACTIONS(6643), 1, - anon_sym_GT_GT, - ACTIONS(6649), 1, + ACTIONS(6495), 1, anon_sym_switch, - ACTIONS(6651), 1, + ACTIONS(6505), 1, + anon_sym_as, + ACTIONS(6509), 1, + anon_sym_with, + ACTIONS(6605), 1, anon_sym_DOT_DOT, - ACTIONS(6653), 1, - anon_sym_AMP_AMP, - ACTIONS(6655), 1, - anon_sym_PIPE_PIPE, ACTIONS(6657), 1, - anon_sym_QMARK_QMARK, - ACTIONS(6659), 1, - anon_sym_as, + anon_sym_SLASH, ACTIONS(6661), 1, + anon_sym_GT_GT, + ACTIONS(6665), 1, + anon_sym_AMP, + ACTIONS(6671), 1, anon_sym_is, - ACTIONS(6663), 1, - anon_sym_with, - STATE(3173), 1, + ACTIONS(6673), 1, + anon_sym_CARET, + STATE(2759), 1, sym_bracketed_argument_list, - STATE(4583), 1, + STATE(3381), 1, sym_argument_list, - ACTIONS(6621), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(6627), 2, + ACTIONS(5304), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6629), 2, + ACTIONS(5739), 2, + anon_sym_QMARK, + anon_sym_PIPE, + ACTIONS(6653), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6631), 2, + ACTIONS(6655), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(6641), 2, + ACTIONS(6659), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(6645), 2, + ACTIONS(6663), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(6667), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6647), 2, + ACTIONS(6669), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5899), 6, - sym_interpolation_close_brace, + ACTIONS(5737), 9, anon_sym_COLON, anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_and, anon_sym_or, - anon_sym_into, - STATE(4319), 9, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, + STATE(4258), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -572782,7 +566938,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [50715] = 22, + [44696] = 34, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -572803,36 +566959,60 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4100), 1, + ACTIONS(4042), 1, anon_sym_DOT, - ACTIONS(4102), 1, + ACTIONS(4044), 1, anon_sym_DASH_GT, - ACTIONS(5264), 1, + ACTIONS(5257), 1, anon_sym_LPAREN, - ACTIONS(5302), 1, + ACTIONS(5300), 1, anon_sym_LBRACK, - ACTIONS(5304), 1, + ACTIONS(5302), 1, anon_sym_BANG, - ACTIONS(6706), 1, + ACTIONS(6495), 1, + anon_sym_switch, + ACTIONS(6505), 1, + anon_sym_as, + ACTIONS(6509), 1, + anon_sym_with, + ACTIONS(6605), 1, anon_sym_DOT_DOT, - STATE(2808), 1, + ACTIONS(6657), 1, + anon_sym_SLASH, + ACTIONS(6661), 1, + anon_sym_GT_GT, + ACTIONS(6671), 1, + anon_sym_is, + STATE(2759), 1, sym_bracketed_argument_list, - STATE(3487), 1, + STATE(3381), 1, sym_argument_list, - ACTIONS(5306), 2, + ACTIONS(5304), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1223), 9, + ACTIONS(6653), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6655), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(6659), 2, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + ACTIONS(6663), 2, anon_sym_LT, anon_sym_GT, + ACTIONS(6667), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6669), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(5739), 3, anon_sym_QMARK, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, anon_sym_PIPE, anon_sym_AMP, - anon_sym_GT_GT, - STATE(4320), 9, + STATE(4259), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -572842,30 +567022,18 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(1221), 22, + ACTIONS(5737), 10, 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_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, - [50820] = 13, + [44825] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -572886,7 +567054,77 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - STATE(4321), 9, + ACTIONS(4042), 1, + anon_sym_DOT, + ACTIONS(4044), 1, + anon_sym_DASH_GT, + ACTIONS(5257), 1, + anon_sym_LPAREN, + ACTIONS(5300), 1, + anon_sym_LBRACK, + ACTIONS(5302), 1, + anon_sym_BANG, + ACTIONS(6495), 1, + anon_sym_switch, + ACTIONS(6505), 1, + anon_sym_as, + ACTIONS(6509), 1, + anon_sym_with, + ACTIONS(6567), 1, + anon_sym_QMARK, + ACTIONS(6573), 1, + anon_sym_SLASH, + ACTIONS(6575), 1, + anon_sym_CARET, + ACTIONS(6577), 1, + anon_sym_PIPE, + ACTIONS(6579), 1, + anon_sym_AMP, + ACTIONS(6583), 1, + anon_sym_GT_GT, + ACTIONS(6589), 1, + anon_sym_DOT_DOT, + ACTIONS(6591), 1, + anon_sym_AMP_AMP, + ACTIONS(6593), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6595), 1, + anon_sym_QMARK_QMARK, + ACTIONS(6597), 1, + anon_sym_is, + STATE(2759), 1, + sym_bracketed_argument_list, + STATE(3381), 1, + sym_argument_list, + ACTIONS(5304), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6565), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(6569), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6571), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(6581), 2, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + ACTIONS(6585), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6587), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(5652), 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(4260), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -572896,50 +567134,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(4106), 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(4104), 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, - [50907] = 13, + [44966] = 27, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -572960,7 +567155,45 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - STATE(4322), 9, + ACTIONS(4042), 1, + anon_sym_DOT, + ACTIONS(4044), 1, + anon_sym_DASH_GT, + ACTIONS(5257), 1, + anon_sym_LPAREN, + ACTIONS(5300), 1, + anon_sym_LBRACK, + ACTIONS(5302), 1, + anon_sym_BANG, + ACTIONS(6495), 1, + anon_sym_switch, + ACTIONS(6509), 1, + anon_sym_with, + ACTIONS(6605), 1, + anon_sym_DOT_DOT, + ACTIONS(6657), 1, + anon_sym_SLASH, + STATE(2759), 1, + sym_bracketed_argument_list, + STATE(3381), 1, + sym_argument_list, + ACTIONS(5304), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6653), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6655), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(5739), 6, + anon_sym_LT, + anon_sym_GT, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT_GT, + STATE(4261), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -572970,29 +567203,11 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(3447), 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(3445), 30, - sym_interpolation_close_brace, - anon_sym_LBRACK, + ACTIONS(5737), 18, 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, @@ -573000,20 +567215,14 @@ 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_into, anon_sym_as, anon_sym_is, - anon_sym_DASH_GT, - anon_sym_with, - [50994] = 13, + [45081] = 33, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -573034,7 +567243,57 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - STATE(4323), 9, + ACTIONS(4042), 1, + anon_sym_DOT, + ACTIONS(4044), 1, + anon_sym_DASH_GT, + ACTIONS(5257), 1, + anon_sym_LPAREN, + ACTIONS(5300), 1, + anon_sym_LBRACK, + ACTIONS(5302), 1, + anon_sym_BANG, + ACTIONS(6495), 1, + anon_sym_switch, + ACTIONS(6505), 1, + anon_sym_as, + ACTIONS(6509), 1, + anon_sym_with, + ACTIONS(6605), 1, + anon_sym_DOT_DOT, + ACTIONS(6657), 1, + anon_sym_SLASH, + ACTIONS(6661), 1, + anon_sym_GT_GT, + ACTIONS(6671), 1, + anon_sym_is, + STATE(2759), 1, + sym_bracketed_argument_list, + STATE(3381), 1, + sym_argument_list, + ACTIONS(5304), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6653), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6655), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(6659), 2, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + ACTIONS(6663), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(6669), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(5739), 3, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_AMP, + STATE(4262), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -573044,50 +567303,20 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(3650), 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(3652), 30, - sym_interpolation_close_brace, - anon_sym_LBRACK, + ACTIONS(5737), 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, - [51081] = 29, + [45208] = 37, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -573108,76 +567337,84 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4100), 1, + ACTIONS(4042), 1, anon_sym_DOT, - ACTIONS(4102), 1, + ACTIONS(4044), 1, anon_sym_DASH_GT, - ACTIONS(5264), 1, + ACTIONS(5257), 1, anon_sym_LPAREN, - ACTIONS(5302), 1, + ACTIONS(5300), 1, anon_sym_LBRACK, - ACTIONS(5304), 1, + ACTIONS(5302), 1, anon_sym_BANG, - ACTIONS(6475), 1, + ACTIONS(5739), 1, + anon_sym_QMARK, + ACTIONS(6495), 1, anon_sym_switch, - ACTIONS(6489), 1, + ACTIONS(6505), 1, + anon_sym_as, + ACTIONS(6509), 1, anon_sym_with, - ACTIONS(6690), 1, + ACTIONS(6605), 1, + anon_sym_DOT_DOT, + ACTIONS(6657), 1, anon_sym_SLASH, - ACTIONS(6700), 1, + ACTIONS(6661), 1, anon_sym_GT_GT, - ACTIONS(6706), 1, - anon_sym_DOT_DOT, - STATE(2808), 1, + ACTIONS(6665), 1, + anon_sym_AMP, + ACTIONS(6671), 1, + anon_sym_is, + ACTIONS(6673), 1, + anon_sym_CARET, + ACTIONS(6675), 1, + anon_sym_PIPE, + STATE(2759), 1, sym_bracketed_argument_list, - STATE(3487), 1, + STATE(3381), 1, sym_argument_list, - ACTIONS(5306), 2, + ACTIONS(5304), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6686), 2, + ACTIONS(6653), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6688), 2, + ACTIONS(6655), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(6698), 2, + ACTIONS(6659), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(5664), 5, + ACTIONS(6663), 2, anon_sym_LT, anon_sym_GT, - anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_AMP, - STATE(4324), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - ACTIONS(5660), 16, - anon_sym_COLON, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_CARET, + ACTIONS(6667), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + ACTIONS(6669), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, + ACTIONS(5737), 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_as, - anon_sym_is, - [51200] = 26, + STATE(4263), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + [45343] = 38, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -573198,44 +567435,75 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4100), 1, + ACTIONS(4042), 1, anon_sym_DOT, - ACTIONS(4102), 1, + ACTIONS(4044), 1, anon_sym_DASH_GT, - ACTIONS(5264), 1, + ACTIONS(5257), 1, anon_sym_LPAREN, - ACTIONS(5302), 1, + ACTIONS(5300), 1, anon_sym_LBRACK, - ACTIONS(5304), 1, + ACTIONS(5302), 1, anon_sym_BANG, - ACTIONS(6475), 1, + ACTIONS(5739), 1, + anon_sym_QMARK, + ACTIONS(6495), 1, anon_sym_switch, - ACTIONS(6489), 1, + ACTIONS(6505), 1, + anon_sym_as, + ACTIONS(6509), 1, anon_sym_with, - ACTIONS(6690), 1, - anon_sym_SLASH, - ACTIONS(6706), 1, + ACTIONS(6605), 1, anon_sym_DOT_DOT, - STATE(2808), 1, + ACTIONS(6657), 1, + anon_sym_SLASH, + ACTIONS(6661), 1, + anon_sym_GT_GT, + ACTIONS(6665), 1, + anon_sym_AMP, + ACTIONS(6671), 1, + anon_sym_is, + ACTIONS(6673), 1, + anon_sym_CARET, + ACTIONS(6675), 1, + anon_sym_PIPE, + ACTIONS(6677), 1, + anon_sym_AMP_AMP, + STATE(2759), 1, sym_bracketed_argument_list, - STATE(3487), 1, + STATE(3381), 1, sym_argument_list, - ACTIONS(5306), 2, + ACTIONS(5304), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6688), 2, + ACTIONS(6653), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6655), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(5664), 8, + ACTIONS(6659), 2, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + ACTIONS(6663), 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(4325), 9, + ACTIONS(6667), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6669), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(5737), 8, + 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, + STATE(4264), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -573245,26 +567513,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5660), 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, - anon_sym_is, - [51313] = 40, + [45480] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -573285,77 +567534,77 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4100), 1, + ACTIONS(4042), 1, anon_sym_DOT, - ACTIONS(4102), 1, + ACTIONS(4044), 1, anon_sym_DASH_GT, - ACTIONS(5264), 1, + ACTIONS(5257), 1, anon_sym_LPAREN, - ACTIONS(5302), 1, + ACTIONS(5300), 1, anon_sym_LBRACK, - ACTIONS(5304), 1, + ACTIONS(5302), 1, anon_sym_BANG, - ACTIONS(6475), 1, + ACTIONS(5739), 1, + anon_sym_QMARK, + ACTIONS(6495), 1, anon_sym_switch, - ACTIONS(6485), 1, + ACTIONS(6505), 1, anon_sym_as, - ACTIONS(6489), 1, + ACTIONS(6509), 1, anon_sym_with, - ACTIONS(6684), 1, - anon_sym_QMARK, - ACTIONS(6690), 1, + ACTIONS(6605), 1, + anon_sym_DOT_DOT, + ACTIONS(6657), 1, anon_sym_SLASH, - ACTIONS(6692), 1, + ACTIONS(6661), 1, + anon_sym_GT_GT, + ACTIONS(6665), 1, + anon_sym_AMP, + ACTIONS(6671), 1, + anon_sym_is, + ACTIONS(6673), 1, anon_sym_CARET, - ACTIONS(6694), 1, + ACTIONS(6675), 1, anon_sym_PIPE, - ACTIONS(6696), 1, - anon_sym_AMP, - ACTIONS(6700), 1, - anon_sym_GT_GT, - ACTIONS(6706), 1, - anon_sym_DOT_DOT, - ACTIONS(6708), 1, + ACTIONS(6677), 1, anon_sym_AMP_AMP, - ACTIONS(6710), 1, + ACTIONS(6679), 1, anon_sym_PIPE_PIPE, - ACTIONS(6712), 1, + ACTIONS(6681), 1, anon_sym_QMARK_QMARK, - ACTIONS(6714), 1, - anon_sym_is, - STATE(2808), 1, + STATE(2759), 1, sym_bracketed_argument_list, - STATE(3487), 1, + STATE(3381), 1, sym_argument_list, - ACTIONS(5306), 2, + ACTIONS(5304), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6682), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(6686), 2, + ACTIONS(6653), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6688), 2, + ACTIONS(6655), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(6698), 2, + ACTIONS(6659), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(6702), 2, + ACTIONS(6663), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(6667), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6704), 2, + ACTIONS(6669), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5777), 6, + ACTIONS(5737), 6, anon_sym_COLON, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_RBRACE, anon_sym_and, anon_sym_or, - STATE(4326), 9, + STATE(4265), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -573365,7 +567614,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [51454] = 21, + [45621] = 29, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -573386,34 +567635,49 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4443), 1, - anon_sym_DASH_GT, - ACTIONS(4533), 1, + ACTIONS(4427), 1, anon_sym_DOT, - ACTIONS(6574), 1, + ACTIONS(4429), 1, + anon_sym_DASH_GT, + ACTIONS(6557), 1, anon_sym_LPAREN, - ACTIONS(6619), 1, + ACTIONS(6607), 1, anon_sym_LBRACK, - ACTIONS(6625), 1, + ACTIONS(6613), 1, anon_sym_BANG, - STATE(3173), 1, + ACTIONS(6621), 1, + anon_sym_SLASH, + ACTIONS(6631), 1, + anon_sym_GT_GT, + ACTIONS(6637), 1, + anon_sym_switch, + ACTIONS(6639), 1, + anon_sym_DOT_DOT, + ACTIONS(6651), 1, + anon_sym_with, + STATE(3188), 1, sym_bracketed_argument_list, - STATE(4583), 1, + STATE(4584), 1, sym_argument_list, - ACTIONS(6627), 2, + ACTIONS(6615), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4856), 9, + ACTIONS(6617), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6619), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(6629), 2, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + ACTIONS(5739), 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(4327), 9, + STATE(4266), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -573423,21 +567687,15 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(4854), 23, + ACTIONS(5737), 16, 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, @@ -573446,8 +567704,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_into, anon_sym_as, anon_sym_is, - anon_sym_with, - [51557] = 35, + [45740] = 26, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -573468,61 +567725,44 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4100), 1, + ACTIONS(4427), 1, anon_sym_DOT, - ACTIONS(4102), 1, + ACTIONS(4429), 1, anon_sym_DASH_GT, - ACTIONS(5264), 1, + ACTIONS(6557), 1, anon_sym_LPAREN, - ACTIONS(5302), 1, + ACTIONS(6607), 1, anon_sym_LBRACK, - ACTIONS(5304), 1, + ACTIONS(6613), 1, anon_sym_BANG, - ACTIONS(6475), 1, - anon_sym_switch, - ACTIONS(6485), 1, - anon_sym_as, - ACTIONS(6489), 1, - anon_sym_with, - ACTIONS(6690), 1, + ACTIONS(6621), 1, anon_sym_SLASH, - ACTIONS(6696), 1, - anon_sym_AMP, - ACTIONS(6700), 1, - anon_sym_GT_GT, - ACTIONS(6706), 1, + ACTIONS(6637), 1, + anon_sym_switch, + ACTIONS(6639), 1, anon_sym_DOT_DOT, - ACTIONS(6714), 1, - anon_sym_is, - STATE(2808), 1, + ACTIONS(6651), 1, + anon_sym_with, + STATE(3188), 1, sym_bracketed_argument_list, - STATE(3487), 1, + STATE(4584), 1, sym_argument_list, - ACTIONS(5306), 2, + ACTIONS(6615), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5664), 2, - anon_sym_QMARK, - anon_sym_PIPE, - ACTIONS(6682), 2, + ACTIONS(6619), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(5739), 8, anon_sym_LT, anon_sym_GT, - ACTIONS(6686), 2, + anon_sym_QMARK, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6688), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(6698), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - ACTIONS(6702), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(6704), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - STATE(4328), 9, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT_GT, + STATE(4267), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -573532,18 +567772,26 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5660), 10, + ACTIONS(5737), 18, + sym_interpolation_close_brace, 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, - [51688] = 36, + anon_sym_into, + anon_sym_as, + anon_sym_is, + [45853] = 24, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -573564,83 +567812,71 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4100), 1, + ACTIONS(4427), 1, anon_sym_DOT, - ACTIONS(4102), 1, + ACTIONS(4429), 1, anon_sym_DASH_GT, - ACTIONS(5264), 1, + ACTIONS(6557), 1, anon_sym_LPAREN, - ACTIONS(5302), 1, + ACTIONS(6607), 1, anon_sym_LBRACK, - ACTIONS(5304), 1, + ACTIONS(6613), 1, anon_sym_BANG, - ACTIONS(6475), 1, + ACTIONS(6637), 1, anon_sym_switch, - ACTIONS(6485), 1, - anon_sym_as, - ACTIONS(6489), 1, - anon_sym_with, - ACTIONS(6690), 1, - anon_sym_SLASH, - ACTIONS(6692), 1, - anon_sym_CARET, - ACTIONS(6696), 1, - anon_sym_AMP, - ACTIONS(6700), 1, - anon_sym_GT_GT, - ACTIONS(6706), 1, + ACTIONS(6639), 1, anon_sym_DOT_DOT, - ACTIONS(6714), 1, - anon_sym_is, - STATE(2808), 1, + ACTIONS(6651), 1, + anon_sym_with, + STATE(3188), 1, sym_bracketed_argument_list, - STATE(3487), 1, + STATE(4584), 1, sym_argument_list, - ACTIONS(5306), 2, + ACTIONS(6615), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5664), 2, - anon_sym_QMARK, - anon_sym_PIPE, - ACTIONS(6682), 2, + ACTIONS(5739), 9, anon_sym_LT, anon_sym_GT, - ACTIONS(6686), 2, + anon_sym_QMARK, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6688), 2, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT_GT, + STATE(4268), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + ACTIONS(5737), 20, + sym_interpolation_close_brace, + anon_sym_COLON, + anon_sym_COMMA, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(6698), 2, + anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(6702), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6704), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5660), 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, - STATE(4329), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - [51821] = 13, + anon_sym_into, + anon_sym_as, + anon_sym_is, + [45962] = 27, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -573661,7 +567897,45 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - STATE(4330), 9, + ACTIONS(4427), 1, + anon_sym_DOT, + ACTIONS(4429), 1, + anon_sym_DASH_GT, + ACTIONS(6557), 1, + anon_sym_LPAREN, + ACTIONS(6607), 1, + anon_sym_LBRACK, + ACTIONS(6613), 1, + anon_sym_BANG, + ACTIONS(6621), 1, + anon_sym_SLASH, + ACTIONS(6637), 1, + anon_sym_switch, + ACTIONS(6639), 1, + anon_sym_DOT_DOT, + ACTIONS(6651), 1, + anon_sym_with, + STATE(3188), 1, + sym_bracketed_argument_list, + STATE(4584), 1, + sym_argument_list, + ACTIONS(6615), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6617), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6619), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(5739), 6, + anon_sym_LT, + anon_sym_GT, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT_GT, + STATE(4269), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -573671,50 +567945,26 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(4110), 13, - anon_sym_SEMI, - anon_sym_LBRACK, + ACTIONS(5737), 18, + 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_GT, - anon_sym_QMARK, - anon_sym_EQ_GT, - ACTIONS(4108), 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_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_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, - [51908] = 34, + anon_sym_as, + anon_sym_is, + [46077] = 21, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -573735,60 +567985,34 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4100), 1, + ACTIONS(4427), 1, anon_sym_DOT, - ACTIONS(4102), 1, + ACTIONS(4429), 1, anon_sym_DASH_GT, - ACTIONS(5264), 1, + ACTIONS(6557), 1, anon_sym_LPAREN, - ACTIONS(5302), 1, + ACTIONS(6607), 1, anon_sym_LBRACK, - ACTIONS(5304), 1, + ACTIONS(6613), 1, anon_sym_BANG, - ACTIONS(6475), 1, - anon_sym_switch, - ACTIONS(6485), 1, - anon_sym_as, - ACTIONS(6489), 1, - anon_sym_with, - ACTIONS(6690), 1, - anon_sym_SLASH, - ACTIONS(6700), 1, - anon_sym_GT_GT, - ACTIONS(6706), 1, - anon_sym_DOT_DOT, - ACTIONS(6714), 1, - anon_sym_is, - STATE(2808), 1, + STATE(3188), 1, sym_bracketed_argument_list, - STATE(3487), 1, + STATE(4584), 1, sym_argument_list, - ACTIONS(5306), 2, + ACTIONS(6615), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6682), 2, + ACTIONS(4821), 9, anon_sym_LT, anon_sym_GT, - ACTIONS(6686), 2, + anon_sym_QMARK, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6688), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(6698), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - ACTIONS(6702), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(6704), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(5664), 3, - anon_sym_QMARK, + anon_sym_SLASH, anon_sym_PIPE, anon_sym_AMP, - STATE(4331), 9, + anon_sym_GT_GT, + STATE(4270), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -573798,18 +568022,31 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5660), 10, + ACTIONS(4817), 23, + 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, + 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, - [52037] = 27, + anon_sym_into, + anon_sym_as, + anon_sym_is, + anon_sym_with, + [46180] = 16, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -573830,45 +568067,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4100), 1, - anon_sym_DOT, - ACTIONS(4102), 1, - anon_sym_DASH_GT, - ACTIONS(5264), 1, - anon_sym_LPAREN, - ACTIONS(5302), 1, + ACTIONS(1395), 1, + anon_sym_LBRACE, + ACTIONS(4804), 1, anon_sym_LBRACK, - ACTIONS(5304), 1, - anon_sym_BANG, - ACTIONS(6475), 1, - anon_sym_switch, - ACTIONS(6489), 1, - anon_sym_with, - ACTIONS(6690), 1, - anon_sym_SLASH, - ACTIONS(6706), 1, - anon_sym_DOT_DOT, - STATE(2808), 1, - sym_bracketed_argument_list, - STATE(3487), 1, - sym_argument_list, - ACTIONS(5306), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6686), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(6688), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(5664), 6, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT_GT, - STATE(4332), 9, + STATE(4597), 1, + sym_initializer_expression, + STATE(4271), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -573878,11 +568083,27 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5660), 18, + ACTIONS(4807), 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(4802), 27, + sym_interpolation_close_brace, 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, @@ -573890,14 +568111,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, - [52152] = 27, + anon_sym_DASH_GT, + anon_sym_with, + [46273] = 27, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -573918,41 +568144,41 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(2967), 1, + ACTIONS(2965), 1, sym__identifier_token, - ACTIONS(2979), 1, + ACTIONS(2977), 1, anon_sym_LPAREN, - ACTIONS(3454), 1, + ACTIONS(3438), 1, anon_sym_delegate, - ACTIONS(6674), 1, + ACTIONS(6563), 1, sym_predefined_type, - ACTIONS(6718), 1, + ACTIONS(6683), 1, anon_sym_LBRACK, - STATE(2942), 1, - sym_array_type, - STATE(3691), 1, + STATE(3654), 1, sym__reserved_identifier, - STATE(4087), 1, - sym_identifier, - STATE(4109), 1, + STATE(4073), 1, sym_generic_name, - STATE(6716), 1, + STATE(4081), 1, + sym_identifier, + STATE(4271), 1, + sym_array_type, + STATE(6665), 1, sym__name, - STATE(6883), 1, + STATE(6777), 1, sym_tuple_type, - STATE(7267), 1, + STATE(7056), 1, sym__array_base_type, - STATE(7413), 1, + STATE(7357), 1, sym__pointer_base_type, - STATE(4096), 3, + STATE(4068), 3, sym_alias_qualified_name, sym__simple_name, sym_qualified_name, - STATE(7139), 3, + STATE(7189), 3, sym_nullable_type, sym_pointer_type, sym_function_pointer_type, - STATE(4333), 9, + STATE(4272), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -573962,7 +568188,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(2971), 22, + ACTIONS(2969), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -573985,7 +568211,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [52267] = 33, + [46388] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -574006,57 +568232,77 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4100), 1, + ACTIONS(4042), 1, anon_sym_DOT, - ACTIONS(4102), 1, + ACTIONS(4044), 1, anon_sym_DASH_GT, - ACTIONS(5264), 1, + ACTIONS(5257), 1, anon_sym_LPAREN, - ACTIONS(5302), 1, + ACTIONS(5300), 1, anon_sym_LBRACK, - ACTIONS(5304), 1, + ACTIONS(5302), 1, anon_sym_BANG, - ACTIONS(6475), 1, + ACTIONS(6495), 1, anon_sym_switch, - ACTIONS(6485), 1, + ACTIONS(6505), 1, anon_sym_as, - ACTIONS(6489), 1, + ACTIONS(6509), 1, anon_sym_with, - ACTIONS(6690), 1, + ACTIONS(6567), 1, + anon_sym_QMARK, + ACTIONS(6573), 1, anon_sym_SLASH, - ACTIONS(6700), 1, + ACTIONS(6575), 1, + anon_sym_CARET, + ACTIONS(6577), 1, + anon_sym_PIPE, + ACTIONS(6579), 1, + anon_sym_AMP, + ACTIONS(6583), 1, anon_sym_GT_GT, - ACTIONS(6706), 1, + ACTIONS(6589), 1, anon_sym_DOT_DOT, - ACTIONS(6714), 1, + ACTIONS(6591), 1, + anon_sym_AMP_AMP, + ACTIONS(6593), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6595), 1, + anon_sym_QMARK_QMARK, + ACTIONS(6597), 1, anon_sym_is, - STATE(2808), 1, + STATE(2759), 1, sym_bracketed_argument_list, - STATE(3487), 1, + STATE(3381), 1, sym_argument_list, - ACTIONS(5306), 2, + ACTIONS(5304), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6682), 2, + ACTIONS(6565), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(6686), 2, + ACTIONS(6569), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6688), 2, + ACTIONS(6571), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(6698), 2, + ACTIONS(6581), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(6704), 2, + ACTIONS(6585), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6587), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5664), 3, - anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_AMP, - STATE(4334), 9, + ACTIONS(5801), 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(4273), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -574066,20 +568312,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5660), 12, - 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, - [52394] = 22, + [46529] = 22, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -574100,26 +568333,26 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4100), 1, + ACTIONS(4042), 1, anon_sym_DOT, - ACTIONS(4102), 1, + ACTIONS(4044), 1, anon_sym_DASH_GT, - ACTIONS(5264), 1, + ACTIONS(5257), 1, anon_sym_LPAREN, - ACTIONS(5302), 1, + ACTIONS(5300), 1, anon_sym_LBRACK, - ACTIONS(5304), 1, + ACTIONS(5302), 1, anon_sym_BANG, - ACTIONS(6609), 1, + ACTIONS(6605), 1, anon_sym_DOT_DOT, - STATE(2808), 1, + STATE(2759), 1, sym_bracketed_argument_list, - STATE(3487), 1, + STATE(3381), 1, sym_argument_list, - ACTIONS(5306), 2, + ACTIONS(5304), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1223), 9, + ACTIONS(1161), 9, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, @@ -574129,7 +568362,63 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_AMP, anon_sym_GT_GT, - STATE(4335), 9, + STATE(4274), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + ACTIONS(1147), 22, + 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_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, + [46634] = 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(3429), 1, + anon_sym_COLON_COLON, + STATE(4275), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -574139,8 +568428,27 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(1221), 22, - anon_sym_SEMI, + ACTIONS(3603), 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(3600), 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, @@ -574151,18 +568459,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, - [52499] = 27, + [46723] = 27, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -574183,41 +568491,41 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(2967), 1, + ACTIONS(2965), 1, sym__identifier_token, - ACTIONS(2979), 1, + ACTIONS(2977), 1, anon_sym_LPAREN, - ACTIONS(3454), 1, + ACTIONS(3438), 1, anon_sym_delegate, - ACTIONS(6674), 1, + ACTIONS(6563), 1, sym_predefined_type, - ACTIONS(6720), 1, + ACTIONS(6685), 1, anon_sym_LBRACK, - STATE(3168), 1, + STATE(2888), 1, sym_array_type, - STATE(3691), 1, + STATE(3654), 1, sym__reserved_identifier, - STATE(4087), 1, - sym_identifier, - STATE(4109), 1, + STATE(4073), 1, sym_generic_name, - STATE(6716), 1, + STATE(4081), 1, + sym_identifier, + STATE(6665), 1, sym__name, - STATE(6883), 1, + STATE(6777), 1, sym_tuple_type, - STATE(7101), 1, + STATE(7061), 1, sym__array_base_type, - STATE(7413), 1, + STATE(7357), 1, sym__pointer_base_type, - STATE(4096), 3, + STATE(4068), 3, sym_alias_qualified_name, sym__simple_name, sym_qualified_name, - STATE(7139), 3, + STATE(7189), 3, sym_nullable_type, sym_pointer_type, sym_function_pointer_type, - STATE(4336), 9, + STATE(4276), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -574227,7 +568535,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(2971), 22, + ACTIONS(2969), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -574250,7 +568558,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [52614] = 37, + [46838] = 29, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -574271,139 +568579,49 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4100), 1, + ACTIONS(4042), 1, anon_sym_DOT, - ACTIONS(4102), 1, + ACTIONS(4044), 1, anon_sym_DASH_GT, - ACTIONS(5264), 1, + ACTIONS(5257), 1, anon_sym_LPAREN, - ACTIONS(5302), 1, + ACTIONS(5300), 1, anon_sym_LBRACK, - ACTIONS(5304), 1, + ACTIONS(5302), 1, anon_sym_BANG, - ACTIONS(5664), 1, - anon_sym_QMARK, - ACTIONS(6475), 1, + ACTIONS(6495), 1, anon_sym_switch, - ACTIONS(6485), 1, - anon_sym_as, - ACTIONS(6489), 1, + ACTIONS(6509), 1, anon_sym_with, - ACTIONS(6690), 1, + ACTIONS(6573), 1, anon_sym_SLASH, - ACTIONS(6692), 1, - anon_sym_CARET, - ACTIONS(6694), 1, - anon_sym_PIPE, - ACTIONS(6696), 1, - anon_sym_AMP, - ACTIONS(6700), 1, + ACTIONS(6583), 1, anon_sym_GT_GT, - ACTIONS(6706), 1, + ACTIONS(6589), 1, anon_sym_DOT_DOT, - ACTIONS(6714), 1, - anon_sym_is, - STATE(2808), 1, + STATE(2759), 1, sym_bracketed_argument_list, - STATE(3487), 1, + STATE(3381), 1, sym_argument_list, - ACTIONS(5306), 2, + ACTIONS(5304), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6682), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(6686), 2, + ACTIONS(6569), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6688), 2, + ACTIONS(6571), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(6698), 2, + ACTIONS(6581), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(6702), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(6704), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(5660), 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, - STATE(4337), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - [52749] = 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(2967), 1, - sym__identifier_token, - ACTIONS(2979), 1, - anon_sym_LPAREN, - ACTIONS(3454), 1, - anon_sym_delegate, - ACTIONS(6674), 1, - sym_predefined_type, - ACTIONS(6722), 1, - anon_sym_LBRACK, - STATE(3691), 1, - sym__reserved_identifier, - STATE(4087), 1, - sym_identifier, - STATE(4109), 1, - sym_generic_name, - STATE(4266), 1, - sym_array_type, - STATE(6716), 1, - sym__name, - STATE(6883), 1, - sym_tuple_type, - STATE(7155), 1, - sym__array_base_type, - STATE(7413), 1, - sym__pointer_base_type, - STATE(4096), 3, - sym_alias_qualified_name, - sym__simple_name, - sym_qualified_name, - STATE(7139), 3, - sym_nullable_type, - sym_pointer_type, - sym_function_pointer_type, - STATE(4338), 9, + ACTIONS(5739), 5, + anon_sym_LT, + anon_sym_GT, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_AMP, + STATE(4277), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -574413,30 +568631,24 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(2971), 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, - [52864] = 17, + ACTIONS(5737), 16, + anon_sym_SEMI, + 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, + aux_sym_preproc_if_token3, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + [46957] = 17, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -574457,15 +568669,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4912), 1, + ACTIONS(4846), 1, anon_sym_LBRACK, - ACTIONS(4919), 1, + ACTIONS(4853), 1, anon_sym_LBRACE, - ACTIONS(4925), 1, + ACTIONS(4859), 1, anon_sym_QMARK, - STATE(3095), 1, + STATE(3098), 1, sym_initializer_expression, - STATE(4339), 9, + STATE(4278), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -574475,7 +568687,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(4922), 10, + ACTIONS(4856), 10, anon_sym_LT, anon_sym_GT, anon_sym_BANG, @@ -574486,7 +568698,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT, - ACTIONS(4916), 27, + ACTIONS(4850), 27, anon_sym_SEMI, anon_sym_COMMA, anon_sym_LPAREN, @@ -574514,7 +568726,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_if_token3, aux_sym_preproc_else_token1, aux_sym_preproc_elif_token1, - [52959] = 27, + [47052] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -574535,41 +568747,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(2967), 1, - sym__identifier_token, - ACTIONS(2979), 1, - anon_sym_LPAREN, - ACTIONS(3454), 1, - anon_sym_delegate, - ACTIONS(6674), 1, - sym_predefined_type, - ACTIONS(6724), 1, - anon_sym_LBRACK, - STATE(2909), 1, - sym_array_type, - STATE(3691), 1, - sym__reserved_identifier, - STATE(4087), 1, - sym_identifier, - STATE(4109), 1, - sym_generic_name, - STATE(6716), 1, - sym__name, - STATE(6883), 1, - sym_tuple_type, - STATE(7122), 1, - sym__array_base_type, - STATE(7413), 1, - sym__pointer_base_type, - STATE(4096), 3, - sym_alias_qualified_name, - sym__simple_name, - sym_qualified_name, - STATE(7139), 3, - sym_nullable_type, - sym_pointer_type, - sym_function_pointer_type, - STATE(4340), 9, + STATE(4279), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -574579,17 +568757,36 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(2971), 22, + ACTIONS(4102), 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(4100), 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, @@ -574602,7 +568799,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [53074] = 15, + sym__identifier_token, + [47139] = 26, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -574623,11 +568821,44 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(6726), 1, - anon_sym_into, - STATE(4342), 1, - aux_sym__query_body_repeat2, - STATE(4341), 9, + ACTIONS(4042), 1, + anon_sym_DOT, + ACTIONS(4044), 1, + anon_sym_DASH_GT, + ACTIONS(5257), 1, + anon_sym_LPAREN, + ACTIONS(5300), 1, + anon_sym_LBRACK, + ACTIONS(5302), 1, + anon_sym_BANG, + ACTIONS(6495), 1, + anon_sym_switch, + ACTIONS(6509), 1, + anon_sym_with, + ACTIONS(6573), 1, + anon_sym_SLASH, + ACTIONS(6589), 1, + anon_sym_DOT_DOT, + STATE(2759), 1, + sym_bracketed_argument_list, + STATE(3381), 1, + sym_argument_list, + ACTIONS(5304), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6571), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(5739), 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(4280), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -574637,29 +568868,8 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(6001), 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(5999), 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, + ACTIONS(5737), 18, + anon_sym_SEMI, anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT_GT, @@ -574667,8 +568877,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_or, anon_sym_AMP_AMP, @@ -574676,9 +568884,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_as, anon_sym_is, - anon_sym_DASH_GT, - anon_sym_with, - [53165] = 15, + aux_sym_preproc_if_token3, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + [47252] = 24, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -574699,41 +568908,51 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(6726), 1, - anon_sym_into, - STATE(4344), 1, - aux_sym__query_body_repeat2, - 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, - ACTIONS(6005), 11, + ACTIONS(4042), 1, + anon_sym_DOT, + ACTIONS(4044), 1, + anon_sym_DASH_GT, + ACTIONS(5257), 1, + anon_sym_LPAREN, + ACTIONS(5300), 1, + anon_sym_LBRACK, + ACTIONS(5302), 1, + anon_sym_BANG, + ACTIONS(6495), 1, + anon_sym_switch, + ACTIONS(6509), 1, + anon_sym_with, + ACTIONS(6589), 1, + anon_sym_DOT_DOT, + STATE(2759), 1, + sym_bracketed_argument_list, + STATE(3381), 1, + sym_argument_list, + ACTIONS(5304), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5739), 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(6003), 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, + STATE(4281), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + ACTIONS(5737), 20, + anon_sym_SEMI, anon_sym_STAR, anon_sym_PERCENT, anon_sym_CARET, @@ -574743,8 +568962,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_or, anon_sym_AMP_AMP, @@ -574752,9 +568969,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_as, anon_sym_is, - anon_sym_DASH_GT, - anon_sym_with, - [53256] = 15, + aux_sym_preproc_if_token3, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + [47361] = 35, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -574775,62 +568993,82 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(6726), 1, - anon_sym_into, - STATE(4345), 1, - aux_sym__query_body_repeat2, - STATE(4343), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - ACTIONS(6005), 11, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, + ACTIONS(4042), 1, + anon_sym_DOT, + ACTIONS(4044), 1, + anon_sym_DASH_GT, + ACTIONS(5257), 1, + anon_sym_LPAREN, + ACTIONS(5300), 1, + anon_sym_LBRACK, + ACTIONS(5302), 1, anon_sym_BANG, - anon_sym_PLUS, - anon_sym_DASH, + ACTIONS(6495), 1, + anon_sym_switch, + ACTIONS(6505), 1, + anon_sym_as, + ACTIONS(6509), 1, + anon_sym_with, + ACTIONS(6573), 1, anon_sym_SLASH, - anon_sym_PIPE, + ACTIONS(6579), 1, anon_sym_AMP, + ACTIONS(6583), 1, anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(6003), 28, - anon_sym_LBRACK, - anon_sym_COLON, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_RBRACE, + ACTIONS(6589), 1, + anon_sym_DOT_DOT, + ACTIONS(6597), 1, + anon_sym_is, + STATE(2759), 1, + sym_bracketed_argument_list, + STATE(3381), 1, + sym_argument_list, + ACTIONS(5304), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + ACTIONS(5739), 2, + anon_sym_QMARK, + anon_sym_PIPE, + ACTIONS(6565), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(6569), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6571), 2, anon_sym_STAR, anon_sym_PERCENT, - anon_sym_CARET, + ACTIONS(6581), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, + ACTIONS(6585), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + ACTIONS(6587), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - anon_sym_switch, - anon_sym_DOT_DOT, + STATE(4282), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + ACTIONS(5737), 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, - anon_sym_as, - anon_sym_is, - anon_sym_DASH_GT, - anon_sym_with, - [53347] = 14, + aux_sym_preproc_if_token3, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + [47492] = 36, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -574851,9 +569089,73 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(6728), 1, - anon_sym_into, - STATE(4344), 10, + ACTIONS(4042), 1, + anon_sym_DOT, + ACTIONS(4044), 1, + anon_sym_DASH_GT, + ACTIONS(5257), 1, + anon_sym_LPAREN, + ACTIONS(5300), 1, + anon_sym_LBRACK, + ACTIONS(5302), 1, + anon_sym_BANG, + ACTIONS(6495), 1, + anon_sym_switch, + ACTIONS(6505), 1, + anon_sym_as, + ACTIONS(6509), 1, + anon_sym_with, + ACTIONS(6573), 1, + anon_sym_SLASH, + ACTIONS(6575), 1, + anon_sym_CARET, + ACTIONS(6579), 1, + anon_sym_AMP, + ACTIONS(6583), 1, + anon_sym_GT_GT, + ACTIONS(6589), 1, + anon_sym_DOT_DOT, + ACTIONS(6597), 1, + anon_sym_is, + STATE(2759), 1, + sym_bracketed_argument_list, + STATE(3381), 1, + sym_argument_list, + ACTIONS(5304), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5739), 2, + anon_sym_QMARK, + anon_sym_PIPE, + ACTIONS(6565), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(6569), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6571), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(6581), 2, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + ACTIONS(6585), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6587), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(5737), 9, + anon_sym_SEMI, + 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(4283), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -574863,49 +569165,102 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - aux_sym__query_body_repeat2, - ACTIONS(5951), 11, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, + [47625] = 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(4042), 1, + anon_sym_DOT, + ACTIONS(4044), 1, + anon_sym_DASH_GT, + ACTIONS(5257), 1, + anon_sym_LPAREN, + ACTIONS(5300), 1, + anon_sym_LBRACK, + ACTIONS(5302), 1, anon_sym_BANG, - anon_sym_PLUS, - anon_sym_DASH, + ACTIONS(6495), 1, + anon_sym_switch, + ACTIONS(6505), 1, + anon_sym_as, + ACTIONS(6509), 1, + anon_sym_with, + ACTIONS(6573), 1, anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, + ACTIONS(6583), 1, anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(5949), 28, - anon_sym_LBRACK, - anon_sym_COLON, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_RBRACE, + ACTIONS(6589), 1, + anon_sym_DOT_DOT, + ACTIONS(6597), 1, + anon_sym_is, + STATE(2759), 1, + sym_bracketed_argument_list, + STATE(3381), 1, + sym_argument_list, + ACTIONS(5304), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + ACTIONS(6565), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(6569), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6571), 2, anon_sym_STAR, anon_sym_PERCENT, - anon_sym_CARET, + ACTIONS(6581), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, + ACTIONS(6585), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + ACTIONS(6587), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - anon_sym_switch, - anon_sym_DOT_DOT, + ACTIONS(5739), 3, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_AMP, + STATE(4284), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + ACTIONS(5737), 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, - anon_sym_as, - anon_sym_is, - anon_sym_DASH_GT, - anon_sym_with, - [53436] = 15, + aux_sym_preproc_if_token3, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + [47754] = 27, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -574926,11 +569281,41 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(6726), 1, - anon_sym_into, - STATE(4344), 1, - aux_sym__query_body_repeat2, - STATE(4345), 9, + ACTIONS(2965), 1, + sym__identifier_token, + ACTIONS(2977), 1, + anon_sym_LPAREN, + ACTIONS(3438), 1, + anon_sym_delegate, + ACTIONS(6563), 1, + sym_predefined_type, + ACTIONS(6687), 1, + anon_sym_LBRACK, + STATE(3548), 1, + sym_array_type, + STATE(3654), 1, + sym__reserved_identifier, + STATE(4073), 1, + sym_generic_name, + STATE(4081), 1, + sym_identifier, + STATE(6665), 1, + sym__name, + STATE(6777), 1, + sym_tuple_type, + STATE(7083), 1, + sym__array_base_type, + STATE(7357), 1, + sym__pointer_base_type, + STATE(4068), 3, + sym_alias_qualified_name, + sym__simple_name, + sym_qualified_name, + STATE(7189), 3, + sym_nullable_type, + sym_pointer_type, + sym_function_pointer_type, + STATE(4285), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -574940,29 +569325,100 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5960), 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(2969), 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, + [47869] = 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(4042), 1, anon_sym_DOT, - ACTIONS(5958), 28, - anon_sym_LBRACK, - anon_sym_COLON, - anon_sym_COMMA, + ACTIONS(4044), 1, + anon_sym_DASH_GT, + ACTIONS(5257), 1, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_RBRACE, + ACTIONS(5300), 1, + anon_sym_LBRACK, + ACTIONS(5302), 1, + anon_sym_BANG, + ACTIONS(6495), 1, + anon_sym_switch, + ACTIONS(6509), 1, + anon_sym_with, + ACTIONS(6573), 1, + anon_sym_SLASH, + ACTIONS(6589), 1, + anon_sym_DOT_DOT, + STATE(2759), 1, + sym_bracketed_argument_list, + STATE(3381), 1, + sym_argument_list, + ACTIONS(5304), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + ACTIONS(6569), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6571), 2, anon_sym_STAR, anon_sym_PERCENT, + ACTIONS(5739), 6, + anon_sym_LT, + anon_sym_GT, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT_GT, + 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, + ACTIONS(5737), 18, + anon_sym_SEMI, anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT_GT, @@ -574970,8 +569426,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_or, anon_sym_AMP_AMP, @@ -574979,9 +569433,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_as, anon_sym_is, - anon_sym_DASH_GT, - anon_sym_with, - [53527] = 38, + aux_sym_preproc_if_token3, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + [47984] = 33, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -575002,75 +569457,57 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4100), 1, + ACTIONS(4042), 1, anon_sym_DOT, - ACTIONS(4102), 1, + ACTIONS(4044), 1, anon_sym_DASH_GT, - ACTIONS(5264), 1, + ACTIONS(5257), 1, anon_sym_LPAREN, - ACTIONS(5302), 1, + ACTIONS(5300), 1, anon_sym_LBRACK, - ACTIONS(5304), 1, + ACTIONS(5302), 1, anon_sym_BANG, - ACTIONS(5664), 1, - anon_sym_QMARK, - ACTIONS(6475), 1, + ACTIONS(6495), 1, anon_sym_switch, - ACTIONS(6485), 1, + ACTIONS(6505), 1, anon_sym_as, - ACTIONS(6489), 1, + ACTIONS(6509), 1, anon_sym_with, - ACTIONS(6690), 1, + ACTIONS(6573), 1, anon_sym_SLASH, - ACTIONS(6692), 1, - anon_sym_CARET, - ACTIONS(6694), 1, - anon_sym_PIPE, - ACTIONS(6696), 1, - anon_sym_AMP, - ACTIONS(6700), 1, + ACTIONS(6583), 1, anon_sym_GT_GT, - ACTIONS(6706), 1, + ACTIONS(6589), 1, anon_sym_DOT_DOT, - ACTIONS(6708), 1, - anon_sym_AMP_AMP, - ACTIONS(6714), 1, + ACTIONS(6597), 1, anon_sym_is, - STATE(2808), 1, + STATE(2759), 1, sym_bracketed_argument_list, - STATE(3487), 1, + STATE(3381), 1, sym_argument_list, - ACTIONS(5306), 2, + ACTIONS(5304), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6682), 2, + ACTIONS(6565), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(6686), 2, + ACTIONS(6569), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6688), 2, + ACTIONS(6571), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(6698), 2, + ACTIONS(6581), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(6702), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(6704), 2, + ACTIONS(6587), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5660), 8, - 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, - STATE(4346), 9, + ACTIONS(5739), 3, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_AMP, + STATE(4287), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -575080,7 +569517,20 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [53664] = 40, + ACTIONS(5737), 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, + [48111] = 37, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -575101,77 +569551,74 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4100), 1, + ACTIONS(4042), 1, anon_sym_DOT, - ACTIONS(4102), 1, + ACTIONS(4044), 1, anon_sym_DASH_GT, - ACTIONS(5264), 1, + ACTIONS(5257), 1, anon_sym_LPAREN, - ACTIONS(5302), 1, + ACTIONS(5300), 1, anon_sym_LBRACK, - ACTIONS(5304), 1, + ACTIONS(5302), 1, anon_sym_BANG, - ACTIONS(5664), 1, + ACTIONS(5739), 1, anon_sym_QMARK, - ACTIONS(6475), 1, + ACTIONS(6495), 1, anon_sym_switch, - ACTIONS(6485), 1, + ACTIONS(6505), 1, anon_sym_as, - ACTIONS(6489), 1, + ACTIONS(6509), 1, anon_sym_with, - ACTIONS(6690), 1, + ACTIONS(6573), 1, anon_sym_SLASH, - ACTIONS(6692), 1, + ACTIONS(6575), 1, anon_sym_CARET, - ACTIONS(6694), 1, + ACTIONS(6577), 1, anon_sym_PIPE, - ACTIONS(6696), 1, + ACTIONS(6579), 1, anon_sym_AMP, - ACTIONS(6700), 1, + ACTIONS(6583), 1, anon_sym_GT_GT, - ACTIONS(6706), 1, + ACTIONS(6589), 1, anon_sym_DOT_DOT, - ACTIONS(6708), 1, - anon_sym_AMP_AMP, - ACTIONS(6710), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6712), 1, - anon_sym_QMARK_QMARK, - ACTIONS(6714), 1, + ACTIONS(6597), 1, anon_sym_is, - STATE(2808), 1, + STATE(2759), 1, sym_bracketed_argument_list, - STATE(3487), 1, + STATE(3381), 1, sym_argument_list, - ACTIONS(5306), 2, + ACTIONS(5304), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6682), 2, + ACTIONS(6565), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(6686), 2, + ACTIONS(6569), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6688), 2, + ACTIONS(6571), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(6698), 2, + ACTIONS(6581), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(6702), 2, + ACTIONS(6585), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6704), 2, + ACTIONS(6587), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5660), 6, - anon_sym_COLON, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_RBRACE, + ACTIONS(5737), 9, + anon_sym_SEMI, anon_sym_and, anon_sym_or, - STATE(4347), 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(4288), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -575181,7 +569628,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [53805] = 37, + [48246] = 38, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -575202,74 +569649,75 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4100), 1, + ACTIONS(4042), 1, anon_sym_DOT, - ACTIONS(4102), 1, + ACTIONS(4044), 1, anon_sym_DASH_GT, - ACTIONS(5264), 1, + ACTIONS(5257), 1, anon_sym_LPAREN, - ACTIONS(5302), 1, + ACTIONS(5300), 1, anon_sym_LBRACK, - ACTIONS(5304), 1, + ACTIONS(5302), 1, anon_sym_BANG, - ACTIONS(5664), 1, + ACTIONS(5739), 1, anon_sym_QMARK, - ACTIONS(6475), 1, + ACTIONS(6495), 1, anon_sym_switch, - ACTIONS(6485), 1, + ACTIONS(6505), 1, anon_sym_as, - ACTIONS(6489), 1, + ACTIONS(6509), 1, anon_sym_with, - ACTIONS(6593), 1, + ACTIONS(6573), 1, anon_sym_SLASH, - ACTIONS(6595), 1, + ACTIONS(6575), 1, anon_sym_CARET, - ACTIONS(6597), 1, + ACTIONS(6577), 1, anon_sym_PIPE, - ACTIONS(6599), 1, + ACTIONS(6579), 1, anon_sym_AMP, - ACTIONS(6603), 1, + ACTIONS(6583), 1, anon_sym_GT_GT, - ACTIONS(6609), 1, + ACTIONS(6589), 1, anon_sym_DOT_DOT, - ACTIONS(6617), 1, + ACTIONS(6591), 1, + anon_sym_AMP_AMP, + ACTIONS(6597), 1, anon_sym_is, - STATE(2808), 1, + STATE(2759), 1, sym_bracketed_argument_list, - STATE(3487), 1, + STATE(3381), 1, sym_argument_list, - ACTIONS(5306), 2, + ACTIONS(5304), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6585), 2, + ACTIONS(6565), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(6589), 2, + ACTIONS(6569), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6591), 2, + ACTIONS(6571), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(6601), 2, + ACTIONS(6581), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(6605), 2, + ACTIONS(6585), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6607), 2, + ACTIONS(6587), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5660), 9, + ACTIONS(5737), 8, anon_sym_SEMI, 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(4348), 9, + STATE(4289), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -575279,7 +569727,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [53940] = 40, + [48383] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -575300,76 +569748,77 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4443), 1, - anon_sym_DASH_GT, - ACTIONS(4533), 1, + ACTIONS(4042), 1, anon_sym_DOT, - ACTIONS(5664), 1, - anon_sym_QMARK, - ACTIONS(6574), 1, + ACTIONS(4044), 1, + anon_sym_DASH_GT, + ACTIONS(5257), 1, anon_sym_LPAREN, - ACTIONS(6619), 1, + ACTIONS(5300), 1, anon_sym_LBRACK, - ACTIONS(6625), 1, + ACTIONS(5302), 1, anon_sym_BANG, - ACTIONS(6649), 1, + ACTIONS(5739), 1, + anon_sym_QMARK, + ACTIONS(6495), 1, anon_sym_switch, - ACTIONS(6663), 1, + ACTIONS(6505), 1, + anon_sym_as, + ACTIONS(6509), 1, anon_sym_with, - ACTIONS(6737), 1, + ACTIONS(6573), 1, anon_sym_SLASH, - ACTIONS(6739), 1, + ACTIONS(6575), 1, anon_sym_CARET, - ACTIONS(6741), 1, + ACTIONS(6577), 1, anon_sym_PIPE, - ACTIONS(6743), 1, + ACTIONS(6579), 1, anon_sym_AMP, - ACTIONS(6747), 1, + ACTIONS(6583), 1, anon_sym_GT_GT, - ACTIONS(6753), 1, + ACTIONS(6589), 1, anon_sym_DOT_DOT, - ACTIONS(6755), 1, + ACTIONS(6591), 1, anon_sym_AMP_AMP, - ACTIONS(6757), 1, + ACTIONS(6593), 1, anon_sym_PIPE_PIPE, - ACTIONS(6759), 1, + ACTIONS(6595), 1, anon_sym_QMARK_QMARK, - ACTIONS(6761), 1, - anon_sym_as, - ACTIONS(6763), 1, + ACTIONS(6597), 1, anon_sym_is, - STATE(3173), 1, + STATE(2759), 1, sym_bracketed_argument_list, - STATE(4583), 1, + STATE(3381), 1, sym_argument_list, - ACTIONS(6627), 2, + ACTIONS(5304), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6731), 2, + ACTIONS(6565), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(6733), 2, + ACTIONS(6569), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6735), 2, + ACTIONS(6571), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(6745), 2, + ACTIONS(6581), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(6749), 2, + ACTIONS(6585), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6751), 2, + ACTIONS(6587), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5660), 5, - sym_interpolation_close_brace, - anon_sym_COLON, - anon_sym_COMMA, + ACTIONS(5737), 6, + anon_sym_SEMI, anon_sym_and, anon_sym_or, - STATE(4349), 9, + aux_sym_preproc_if_token3, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + STATE(4290), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -575379,7 +569828,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [54080] = 14, + [48524] = 17, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -575400,9 +569849,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(6765), 1, - sym_string_literal_encoding, - STATE(4350), 9, + ACTIONS(4846), 1, + anon_sym_LBRACK, + ACTIONS(6689), 1, + anon_sym_LBRACE, + ACTIONS(6692), 1, + anon_sym_QMARK, + STATE(4596), 1, + sym_initializer_expression, + STATE(4291), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -575412,10 +569867,9 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(4881), 11, + ACTIONS(4856), 10, anon_sym_LT, anon_sym_GT, - anon_sym_QMARK, anon_sym_BANG, anon_sym_PLUS, anon_sym_DASH, @@ -575424,9 +569878,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT, - ACTIONS(4879), 28, + ACTIONS(4850), 27, sym_interpolation_close_brace, - anon_sym_LBRACK, anon_sym_COLON, anon_sym_COMMA, anon_sym_LPAREN, @@ -575453,7 +569906,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, anon_sym_DASH_GT, anon_sym_with, - [54168] = 13, + [48619] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -575474,7 +569927,81 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - STATE(4351), 9, + STATE(4292), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + ACTIONS(4072), 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(4070), 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, + [48706] = 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(4293), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -575484,7 +570011,8 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(4082), 11, + ACTIONS(3431), 12, + anon_sym_COLON, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, @@ -575496,10 +570024,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT, - ACTIONS(4084), 29, + ACTIONS(3429), 29, sym_interpolation_close_brace, anon_sym_LBRACK, - anon_sym_COLON, anon_sym_COMMA, anon_sym_LPAREN, anon_sym_LBRACE, @@ -575514,6 +570041,7 @@ 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, @@ -575526,7 +570054,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, anon_sym_DASH_GT, anon_sym_with, - [54254] = 29, + [48793] = 21, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -575547,49 +570075,34 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4075), 1, + ACTIONS(4427), 1, anon_sym_DOT, - ACTIONS(4077), 1, + ACTIONS(4429), 1, anon_sym_DASH_GT, - ACTIONS(5247), 1, + ACTIONS(6557), 1, anon_sym_LPAREN, - ACTIONS(5283), 1, + ACTIONS(6607), 1, anon_sym_LBRACK, - ACTIONS(5285), 1, + ACTIONS(6613), 1, anon_sym_BANG, - ACTIONS(6147), 1, - anon_sym_switch, - ACTIONS(6161), 1, - anon_sym_with, - ACTIONS(6771), 1, - anon_sym_SLASH, - ACTIONS(6775), 1, - anon_sym_GT_GT, - ACTIONS(6777), 1, - anon_sym_DOT_DOT, - STATE(2613), 1, + STATE(3188), 1, sym_bracketed_argument_list, - STATE(3259), 1, + STATE(4584), 1, sym_argument_list, - ACTIONS(5287), 2, + ACTIONS(6615), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6767), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(6769), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(6773), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - ACTIONS(5664), 5, + ACTIONS(4844), 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(4352), 9, + anon_sym_GT_GT, + STATE(4294), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -575599,14 +570112,21 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5660), 15, + ACTIONS(4842), 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_when, + anon_sym_switch, + anon_sym_DOT_DOT, anon_sym_and, anon_sym_or, anon_sym_AMP_AMP, @@ -575615,7 +570135,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_into, anon_sym_as, anon_sym_is, - [54372] = 26, + anon_sym_with, + [48896] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -575636,44 +570157,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4075), 1, - anon_sym_DOT, - ACTIONS(4077), 1, - anon_sym_DASH_GT, - ACTIONS(5247), 1, - anon_sym_LPAREN, - ACTIONS(5283), 1, - anon_sym_LBRACK, - ACTIONS(5285), 1, - anon_sym_BANG, - ACTIONS(6147), 1, - anon_sym_switch, - ACTIONS(6161), 1, - anon_sym_with, - ACTIONS(6771), 1, - anon_sym_SLASH, - ACTIONS(6777), 1, - anon_sym_DOT_DOT, - STATE(2613), 1, - sym_bracketed_argument_list, - STATE(3259), 1, - sym_argument_list, - ACTIONS(5287), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6769), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(5664), 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(4353), 9, + STATE(4295), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -575683,25 +570167,50 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5660), 17, + ACTIONS(4076), 13, + anon_sym_SEMI, + anon_sym_LBRACK, 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_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(4074), 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, - [54484] = 27, + 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, + [48983] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -575722,73 +570231,87 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4075), 1, + ACTIONS(4427), 1, anon_sym_DOT, - ACTIONS(4077), 1, + ACTIONS(4429), 1, anon_sym_DASH_GT, - ACTIONS(5247), 1, + ACTIONS(6557), 1, anon_sym_LPAREN, - ACTIONS(5283), 1, + ACTIONS(6607), 1, anon_sym_LBRACK, - ACTIONS(5285), 1, + ACTIONS(6611), 1, + anon_sym_QMARK, + ACTIONS(6613), 1, anon_sym_BANG, - ACTIONS(6147), 1, - anon_sym_switch, - ACTIONS(6161), 1, - anon_sym_with, - ACTIONS(6771), 1, + ACTIONS(6621), 1, anon_sym_SLASH, - ACTIONS(6777), 1, + ACTIONS(6623), 1, + anon_sym_CARET, + ACTIONS(6625), 1, + anon_sym_PIPE, + ACTIONS(6627), 1, + anon_sym_AMP, + ACTIONS(6631), 1, + anon_sym_GT_GT, + ACTIONS(6637), 1, + anon_sym_switch, + ACTIONS(6639), 1, anon_sym_DOT_DOT, - STATE(2613), 1, + ACTIONS(6641), 1, + anon_sym_AMP_AMP, + ACTIONS(6643), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6645), 1, + anon_sym_QMARK_QMARK, + ACTIONS(6647), 1, + anon_sym_as, + ACTIONS(6649), 1, + anon_sym_is, + ACTIONS(6651), 1, + anon_sym_with, + STATE(3188), 1, sym_bracketed_argument_list, - STATE(3259), 1, + STATE(4584), 1, sym_argument_list, - ACTIONS(5287), 2, + ACTIONS(6609), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(6615), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6767), 2, + ACTIONS(6617), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6769), 2, + ACTIONS(6619), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(5664), 6, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT_GT, - 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, - ACTIONS(5660), 17, - anon_sym_COLON, - anon_sym_CARET, + ACTIONS(6629), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, + ACTIONS(6633), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + ACTIONS(6635), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - anon_sym_when, + ACTIONS(5733), 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, - [54598] = 14, + STATE(4296), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + [49124] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -575809,9 +570332,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(6779), 1, - sym_string_literal_encoding, - STATE(4355), 9, + ACTIONS(1395), 1, + anon_sym_LBRACE, + STATE(4611), 1, + sym_initializer_expression, + STATE(4297), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -575821,7 +570346,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(4894), 11, + ACTIONS(4829), 11, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, @@ -575833,7 +570358,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT, - ACTIONS(4892), 28, + ACTIONS(4827), 28, sym_interpolation_close_brace, anon_sym_LBRACK, anon_sym_COLON, @@ -575862,7 +570387,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, anon_sym_DASH_GT, anon_sym_with, - [54686] = 13, + [49215] = 27, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -575883,7 +570408,41 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - STATE(4356), 9, + ACTIONS(2965), 1, + sym__identifier_token, + ACTIONS(2977), 1, + anon_sym_LPAREN, + ACTIONS(3438), 1, + anon_sym_delegate, + ACTIONS(6563), 1, + sym_predefined_type, + ACTIONS(6696), 1, + anon_sym_LBRACK, + STATE(3196), 1, + sym_array_type, + STATE(3654), 1, + sym__reserved_identifier, + STATE(4073), 1, + sym_generic_name, + STATE(4081), 1, + sym_identifier, + STATE(6665), 1, + sym__name, + STATE(6777), 1, + sym_tuple_type, + STATE(7208), 1, + sym__array_base_type, + STATE(7357), 1, + sym__pointer_base_type, + STATE(4068), 3, + sym_alias_qualified_name, + sym__simple_name, + sym_qualified_name, + STATE(7189), 3, + sym_nullable_type, + sym_pointer_type, + sym_function_pointer_type, + STATE(4298), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -575893,49 +570452,131 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(4104), 11, - anon_sym_LT, - anon_sym_GT, + ACTIONS(2969), 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, + [49330] = 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(4427), 1, + anon_sym_DOT, + ACTIONS(4429), 1, + anon_sym_DASH_GT, + ACTIONS(6557), 1, + anon_sym_LPAREN, + ACTIONS(6607), 1, + anon_sym_LBRACK, + ACTIONS(6611), 1, anon_sym_QMARK, + ACTIONS(6613), 1, anon_sym_BANG, - anon_sym_PLUS, - anon_sym_DASH, + ACTIONS(6621), 1, anon_sym_SLASH, + ACTIONS(6623), 1, + anon_sym_CARET, + ACTIONS(6625), 1, anon_sym_PIPE, + ACTIONS(6627), 1, anon_sym_AMP, + ACTIONS(6631), 1, anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(4106), 29, - sym_interpolation_close_brace, - anon_sym_LBRACK, - anon_sym_COLON, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACE, + ACTIONS(6637), 1, + anon_sym_switch, + ACTIONS(6639), 1, + anon_sym_DOT_DOT, + ACTIONS(6641), 1, + anon_sym_AMP_AMP, + ACTIONS(6643), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6645), 1, + anon_sym_QMARK_QMARK, + ACTIONS(6647), 1, + anon_sym_as, + ACTIONS(6649), 1, + anon_sym_is, + ACTIONS(6651), 1, + anon_sym_with, + STATE(3188), 1, + sym_bracketed_argument_list, + STATE(4584), 1, + sym_argument_list, + ACTIONS(6609), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(6615), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + ACTIONS(6617), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6619), 2, anon_sym_STAR, anon_sym_PERCENT, - anon_sym_CARET, + ACTIONS(6629), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, + ACTIONS(6633), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + ACTIONS(6635), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - anon_sym_switch, - anon_sym_DOT_DOT, + ACTIONS(5855), 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, - [54772] = 43, + STATE(4299), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + [49471] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -575956,79 +570597,77 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(2671), 1, - aux_sym_preproc_else_token1, - ACTIONS(2673), 1, - aux_sym_preproc_elif_token1, - ACTIONS(4100), 1, + ACTIONS(4427), 1, anon_sym_DOT, - ACTIONS(4102), 1, + ACTIONS(4429), 1, anon_sym_DASH_GT, - ACTIONS(5264), 1, + ACTIONS(6557), 1, anon_sym_LPAREN, - ACTIONS(5304), 1, - anon_sym_BANG, - ACTIONS(5573), 1, + ACTIONS(6607), 1, anon_sym_LBRACK, - ACTIONS(6343), 1, - anon_sym_switch, - ACTIONS(6357), 1, - anon_sym_with, - ACTIONS(6783), 1, + ACTIONS(6611), 1, anon_sym_QMARK, - ACTIONS(6789), 1, + ACTIONS(6613), 1, + anon_sym_BANG, + ACTIONS(6621), 1, anon_sym_SLASH, - ACTIONS(6791), 1, + ACTIONS(6623), 1, anon_sym_CARET, - ACTIONS(6793), 1, + ACTIONS(6625), 1, anon_sym_PIPE, - ACTIONS(6795), 1, + ACTIONS(6627), 1, anon_sym_AMP, - ACTIONS(6799), 1, + ACTIONS(6631), 1, anon_sym_GT_GT, - ACTIONS(6805), 1, + ACTIONS(6637), 1, + anon_sym_switch, + ACTIONS(6639), 1, anon_sym_DOT_DOT, - ACTIONS(6807), 1, + ACTIONS(6641), 1, anon_sym_AMP_AMP, - ACTIONS(6809), 1, + ACTIONS(6643), 1, anon_sym_PIPE_PIPE, - ACTIONS(6811), 1, + ACTIONS(6645), 1, anon_sym_QMARK_QMARK, - ACTIONS(6813), 1, + ACTIONS(6647), 1, anon_sym_as, - ACTIONS(6815), 1, + ACTIONS(6649), 1, anon_sym_is, - ACTIONS(6817), 1, - aux_sym_preproc_if_token3, - STATE(2485), 1, + ACTIONS(6651), 1, + anon_sym_with, + STATE(3188), 1, sym_bracketed_argument_list, - STATE(3487), 1, + STATE(4584), 1, sym_argument_list, - ACTIONS(5306), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6781), 2, + ACTIONS(6609), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(6785), 2, + ACTIONS(6615), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6617), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6787), 2, + ACTIONS(6619), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(6797), 2, + ACTIONS(6629), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(6801), 2, + ACTIONS(6633), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6803), 2, + ACTIONS(6635), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - STATE(7360), 2, - sym_preproc_else_in_expression, - sym_preproc_elif_in_expression, - STATE(4357), 9, + ACTIONS(5709), 6, + sym_interpolation_close_brace, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_and, + anon_sym_or, + anon_sym_into, + STATE(4300), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -576038,7 +570677,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [54918] = 22, + [49612] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -576059,68 +570698,87 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4075), 1, + ACTIONS(4427), 1, anon_sym_DOT, - ACTIONS(4077), 1, + ACTIONS(4429), 1, anon_sym_DASH_GT, - ACTIONS(5247), 1, + ACTIONS(6557), 1, anon_sym_LPAREN, - ACTIONS(5283), 1, + ACTIONS(6607), 1, anon_sym_LBRACK, - ACTIONS(5285), 1, + ACTIONS(6611), 1, + anon_sym_QMARK, + ACTIONS(6613), 1, anon_sym_BANG, - ACTIONS(6819), 1, + ACTIONS(6621), 1, + anon_sym_SLASH, + ACTIONS(6623), 1, + anon_sym_CARET, + ACTIONS(6625), 1, + anon_sym_PIPE, + ACTIONS(6627), 1, + anon_sym_AMP, + ACTIONS(6631), 1, + anon_sym_GT_GT, + ACTIONS(6637), 1, + anon_sym_switch, + ACTIONS(6639), 1, anon_sym_DOT_DOT, - STATE(2613), 1, + ACTIONS(6641), 1, + anon_sym_AMP_AMP, + ACTIONS(6643), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6645), 1, + anon_sym_QMARK_QMARK, + ACTIONS(6647), 1, + anon_sym_as, + ACTIONS(6649), 1, + anon_sym_is, + ACTIONS(6651), 1, + anon_sym_with, + STATE(3188), 1, sym_bracketed_argument_list, - STATE(3259), 1, + STATE(4584), 1, sym_argument_list, - ACTIONS(5287), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5733), 9, + ACTIONS(6609), 2, anon_sym_LT, anon_sym_GT, - anon_sym_QMARK, + ACTIONS(6615), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6617), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT_GT, - STATE(4358), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - ACTIONS(5731), 21, + ACTIONS(6619), 2, anon_sym_STAR, anon_sym_PERCENT, - anon_sym_CARET, + ACTIONS(6629), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, + ACTIONS(6633), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + ACTIONS(6635), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - anon_sym_EQ_GT, - anon_sym_switch, - anon_sym_when, + ACTIONS(5849), 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_with, - [55022] = 27, + 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, + [49753] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -576141,40 +570799,77 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(2967), 1, - sym__identifier_token, - ACTIONS(2979), 1, + ACTIONS(4427), 1, + anon_sym_DOT, + ACTIONS(4429), 1, + anon_sym_DASH_GT, + ACTIONS(6557), 1, anon_sym_LPAREN, - ACTIONS(3454), 1, - anon_sym_delegate, - ACTIONS(6674), 1, - sym_predefined_type, - STATE(3691), 1, - sym__reserved_identifier, - STATE(4087), 1, - sym_identifier, - STATE(4109), 1, - sym_generic_name, - STATE(5990), 1, - sym_array_type, - STATE(5995), 1, - sym_nullable_type, - STATE(6716), 1, - sym__name, - STATE(6883), 1, - sym_tuple_type, - STATE(7162), 1, - sym__array_base_type, - STATE(7413), 1, - sym__pointer_base_type, - STATE(7139), 2, - sym_pointer_type, - sym_function_pointer_type, - STATE(4096), 3, - sym_alias_qualified_name, - sym__simple_name, - sym_qualified_name, - STATE(4359), 9, + ACTIONS(6607), 1, + anon_sym_LBRACK, + ACTIONS(6611), 1, + anon_sym_QMARK, + ACTIONS(6613), 1, + anon_sym_BANG, + ACTIONS(6621), 1, + anon_sym_SLASH, + ACTIONS(6623), 1, + anon_sym_CARET, + ACTIONS(6625), 1, + anon_sym_PIPE, + ACTIONS(6627), 1, + anon_sym_AMP, + ACTIONS(6631), 1, + anon_sym_GT_GT, + ACTIONS(6637), 1, + anon_sym_switch, + ACTIONS(6639), 1, + anon_sym_DOT_DOT, + ACTIONS(6641), 1, + anon_sym_AMP_AMP, + ACTIONS(6643), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6645), 1, + anon_sym_QMARK_QMARK, + ACTIONS(6647), 1, + anon_sym_as, + ACTIONS(6649), 1, + anon_sym_is, + ACTIONS(6651), 1, + anon_sym_with, + STATE(3188), 1, + sym_bracketed_argument_list, + STATE(4584), 1, + sym_argument_list, + ACTIONS(6609), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(6615), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6617), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6619), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(6629), 2, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + ACTIONS(6633), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6635), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4996), 6, + sym_interpolation_close_brace, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_and, + anon_sym_or, + anon_sym_into, + STATE(4302), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -576184,30 +570879,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(2971), 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, - [55136] = 13, + [49894] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -576228,59 +570900,87 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - STATE(4360), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - ACTIONS(3994), 11, - anon_sym_LT, - anon_sym_GT, + ACTIONS(4427), 1, + anon_sym_DOT, + ACTIONS(4429), 1, + anon_sym_DASH_GT, + ACTIONS(6557), 1, + anon_sym_LPAREN, + ACTIONS(6607), 1, + anon_sym_LBRACK, + ACTIONS(6611), 1, anon_sym_QMARK, + ACTIONS(6613), 1, anon_sym_BANG, - anon_sym_PLUS, - anon_sym_DASH, + ACTIONS(6621), 1, anon_sym_SLASH, + ACTIONS(6623), 1, + anon_sym_CARET, + ACTIONS(6625), 1, anon_sym_PIPE, + ACTIONS(6627), 1, anon_sym_AMP, + ACTIONS(6631), 1, anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(3996), 29, - sym_interpolation_close_brace, - anon_sym_LBRACK, - anon_sym_COLON, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACE, + ACTIONS(6637), 1, + anon_sym_switch, + ACTIONS(6639), 1, + anon_sym_DOT_DOT, + ACTIONS(6641), 1, + anon_sym_AMP_AMP, + ACTIONS(6643), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6645), 1, + anon_sym_QMARK_QMARK, + ACTIONS(6647), 1, + anon_sym_as, + ACTIONS(6649), 1, + anon_sym_is, + ACTIONS(6651), 1, + anon_sym_with, + STATE(3188), 1, + sym_bracketed_argument_list, + STATE(4584), 1, + sym_argument_list, + ACTIONS(6609), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(6615), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + ACTIONS(6617), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6619), 2, anon_sym_STAR, anon_sym_PERCENT, - anon_sym_CARET, + ACTIONS(6629), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, + ACTIONS(6633), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + ACTIONS(6635), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - anon_sym_switch, - anon_sym_DOT_DOT, + ACTIONS(5652), 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, - [55222] = 13, + STATE(4303), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + [50035] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -576301,59 +571001,87 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - STATE(4361), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - ACTIONS(4931), 11, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, + ACTIONS(4042), 1, + anon_sym_DOT, + ACTIONS(4044), 1, + anon_sym_DASH_GT, + ACTIONS(5257), 1, + anon_sym_LPAREN, + ACTIONS(5300), 1, + anon_sym_LBRACK, + ACTIONS(5302), 1, anon_sym_BANG, - anon_sym_PLUS, - anon_sym_DASH, + ACTIONS(6495), 1, + anon_sym_switch, + ACTIONS(6505), 1, + anon_sym_as, + ACTIONS(6509), 1, + anon_sym_with, + ACTIONS(6605), 1, + anon_sym_DOT_DOT, + ACTIONS(6657), 1, anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, + ACTIONS(6661), 1, anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(4929), 29, - sym_interpolation_close_brace, - anon_sym_LBRACK, - anon_sym_COLON, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACE, + ACTIONS(6665), 1, + anon_sym_AMP, + ACTIONS(6671), 1, + anon_sym_is, + ACTIONS(6673), 1, + anon_sym_CARET, + ACTIONS(6675), 1, + anon_sym_PIPE, + ACTIONS(6677), 1, + anon_sym_AMP_AMP, + ACTIONS(6679), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6681), 1, + anon_sym_QMARK_QMARK, + ACTIONS(6698), 1, + anon_sym_QMARK, + STATE(2759), 1, + sym_bracketed_argument_list, + STATE(3381), 1, + sym_argument_list, + ACTIONS(5304), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + ACTIONS(6653), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6655), 2, anon_sym_STAR, anon_sym_PERCENT, - anon_sym_CARET, + ACTIONS(6659), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, + ACTIONS(6663), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(6667), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + ACTIONS(6669), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - anon_sym_switch, - anon_sym_DOT_DOT, + ACTIONS(5865), 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, - anon_sym_into, - anon_sym_as, - anon_sym_is, - anon_sym_DASH_GT, - anon_sym_with, - [55308] = 14, + STATE(4304), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + [50176] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -576374,9 +571102,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(6821), 1, - anon_sym_and, - STATE(4362), 9, + ACTIONS(1395), 1, + anon_sym_LBRACE, + STATE(4594), 1, + sym_initializer_expression, + STATE(4305), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -576386,7 +571116,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(6069), 11, + ACTIONS(4833), 11, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, @@ -576398,13 +571128,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT, - ACTIONS(6067), 28, + ACTIONS(4831), 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, @@ -576418,6 +571147,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, @@ -576427,7 +571157,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, anon_sym_DASH_GT, anon_sym_with, - [55396] = 26, + [50267] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -576448,39 +571178,77 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(3881), 1, - anon_sym_LBRACE, - ACTIONS(3897), 1, - sym_discard, - ACTIONS(6823), 1, - sym__identifier_token, - ACTIONS(6827), 1, + ACTIONS(4042), 1, + anon_sym_DOT, + ACTIONS(4044), 1, + anon_sym_DASH_GT, + ACTIONS(5257), 1, anon_sym_LPAREN, - STATE(2571), 1, - sym__reserved_identifier, - STATE(3463), 1, - sym_parenthesized_variable_designation, - STATE(3492), 1, - sym__variable_designation, - STATE(3493), 1, - sym_identifier, - STATE(5279), 1, - sym_positional_pattern_clause, - STATE(5682), 1, - sym_property_pattern_clause, - STATE(7311), 1, - sym_parameter_list, - STATE(7536), 1, - sym__lambda_parameters, - ACTIONS(3883), 2, + ACTIONS(5300), 1, + anon_sym_LBRACK, + ACTIONS(5302), 1, + anon_sym_BANG, + ACTIONS(6495), 1, + anon_sym_switch, + ACTIONS(6505), 1, + anon_sym_as, + ACTIONS(6509), 1, + anon_sym_with, + ACTIONS(6567), 1, + anon_sym_QMARK, + ACTIONS(6573), 1, + anon_sym_SLASH, + ACTIONS(6575), 1, + anon_sym_CARET, + ACTIONS(6577), 1, + anon_sym_PIPE, + ACTIONS(6579), 1, + anon_sym_AMP, + ACTIONS(6583), 1, + anon_sym_GT_GT, + ACTIONS(6589), 1, + anon_sym_DOT_DOT, + ACTIONS(6591), 1, + anon_sym_AMP_AMP, + ACTIONS(6593), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6595), 1, + anon_sym_QMARK_QMARK, + ACTIONS(6597), 1, + anon_sym_is, + STATE(2759), 1, + sym_bracketed_argument_list, + STATE(3381), 1, + sym_argument_list, + ACTIONS(5304), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6565), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(6569), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6571), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(6581), 2, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + ACTIONS(6585), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6587), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(5849), 6, + anon_sym_SEMI, anon_sym_and, anon_sym_or, - ACTIONS(3879), 4, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_RBRACE, - STATE(4363), 9, + aux_sym_preproc_if_token3, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + STATE(4306), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -576490,30 +571258,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(6825), 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, - [55508] = 13, + [50408] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -576534,7 +571279,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - STATE(4364), 9, + STATE(4307), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -576544,7 +571289,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(4112), 11, + ACTIONS(3431), 11, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, @@ -576556,7 +571301,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT, - ACTIONS(4114), 29, + ACTIONS(3429), 30, sym_interpolation_close_brace, anon_sym_LBRACK, anon_sym_COLON, @@ -576574,6 +571319,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_DOT_DOT, anon_sym_and, @@ -576586,7 +571332,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, anon_sym_DASH_GT, anon_sym_with, - [55594] = 13, + [50495] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -576607,59 +571353,87 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - STATE(4365), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - ACTIONS(3685), 11, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, + ACTIONS(4042), 1, + anon_sym_DOT, + ACTIONS(4044), 1, + anon_sym_DASH_GT, + ACTIONS(5257), 1, + anon_sym_LPAREN, + ACTIONS(5300), 1, + anon_sym_LBRACK, + ACTIONS(5302), 1, anon_sym_BANG, - anon_sym_PLUS, - anon_sym_DASH, + ACTIONS(6495), 1, + anon_sym_switch, + ACTIONS(6505), 1, + anon_sym_as, + ACTIONS(6509), 1, + anon_sym_with, + ACTIONS(6567), 1, + anon_sym_QMARK, + ACTIONS(6573), 1, anon_sym_SLASH, + ACTIONS(6575), 1, + anon_sym_CARET, + ACTIONS(6577), 1, anon_sym_PIPE, + ACTIONS(6579), 1, anon_sym_AMP, + ACTIONS(6583), 1, anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(3687), 29, - sym_interpolation_close_brace, - anon_sym_LBRACK, - anon_sym_COLON, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACE, + ACTIONS(6589), 1, + anon_sym_DOT_DOT, + ACTIONS(6591), 1, + anon_sym_AMP_AMP, + ACTIONS(6593), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6595), 1, + anon_sym_QMARK_QMARK, + ACTIONS(6597), 1, + anon_sym_is, + STATE(2759), 1, + sym_bracketed_argument_list, + STATE(3381), 1, + sym_argument_list, + ACTIONS(5304), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + ACTIONS(6565), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(6569), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6571), 2, anon_sym_STAR, anon_sym_PERCENT, - anon_sym_CARET, + ACTIONS(6581), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, + ACTIONS(6585), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + ACTIONS(6587), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - anon_sym_switch, - anon_sym_DOT_DOT, + ACTIONS(4996), 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_DASH_GT, - anon_sym_with, - [55680] = 13, + aux_sym_preproc_if_token3, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + 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, + [50636] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -576680,7 +571454,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - STATE(4366), 9, + ACTIONS(6700), 1, + anon_sym_into, + STATE(4310), 1, + aux_sym__query_body_repeat2, + STATE(4309), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -576690,7 +571468,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(4120), 11, + ACTIONS(5935), 11, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, @@ -576702,13 +571480,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT, - ACTIONS(4122), 29, - sym_interpolation_close_brace, + ACTIONS(5933), 28, 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, @@ -576727,12 +571505,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, - [55766] = 13, + [50727] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -576753,7 +571530,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - STATE(4367), 9, + ACTIONS(6700), 1, + anon_sym_into, + STATE(4312), 1, + aux_sym__query_body_repeat2, + STATE(4310), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -576763,7 +571544,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(4124), 11, + ACTIONS(5881), 11, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, @@ -576775,13 +571556,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT, - ACTIONS(4126), 29, - sym_interpolation_close_brace, + ACTIONS(5879), 28, 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, @@ -576800,12 +571581,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, - [55852] = 13, + [50818] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -576826,7 +571606,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - STATE(4368), 9, + ACTIONS(6700), 1, + anon_sym_into, + STATE(4313), 1, + aux_sym__query_body_repeat2, + STATE(4311), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -576836,7 +571620,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(4108), 11, + ACTIONS(5881), 11, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, @@ -576848,13 +571632,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT, - ACTIONS(4110), 29, - sym_interpolation_close_brace, + ACTIONS(5879), 28, 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, @@ -576873,12 +571657,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, - [55938] = 15, + [50909] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -576899,86 +571682,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(6829), 1, - anon_sym_LT, - STATE(2183), 1, - sym_type_argument_list, - 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, - ACTIONS(3662), 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_DOT, - anon_sym_EQ_GT, - ACTIONS(3660), 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, + ACTIONS(6702), 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, - sym__identifier_token, - [56028] = 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(6821), 1, - anon_sym_and, - ACTIONS(6831), 1, - anon_sym_or, - STATE(4370), 9, + STATE(4312), 10, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -576988,7 +571694,8 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5356), 11, + aux_sym__query_body_repeat2, + ACTIONS(5953), 11, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, @@ -577000,7 +571707,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT, - ACTIONS(5354), 27, + ACTIONS(5951), 28, anon_sym_LBRACK, anon_sym_COLON, anon_sym_COMMA, @@ -577020,15 +571727,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_as, anon_sym_is, anon_sym_DASH_GT, anon_sym_with, - [56118] = 40, + [50998] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -577049,173 +571757,62 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4075), 1, - anon_sym_DOT, - ACTIONS(4077), 1, - anon_sym_DASH_GT, - ACTIONS(5247), 1, - anon_sym_LPAREN, - ACTIONS(5283), 1, - anon_sym_LBRACK, - ACTIONS(5285), 1, - anon_sym_BANG, - ACTIONS(6147), 1, - anon_sym_switch, - ACTIONS(6161), 1, - anon_sym_with, - ACTIONS(6819), 1, - anon_sym_DOT_DOT, - ACTIONS(6835), 1, + ACTIONS(6700), 1, + anon_sym_into, + STATE(4312), 1, + aux_sym__query_body_repeat2, + 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, + ACTIONS(5960), 11, + anon_sym_LT, + anon_sym_GT, anon_sym_QMARK, - ACTIONS(6841), 1, + anon_sym_BANG, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_SLASH, - ACTIONS(6843), 1, - anon_sym_CARET, - ACTIONS(6845), 1, anon_sym_PIPE, - ACTIONS(6847), 1, anon_sym_AMP, - ACTIONS(6851), 1, anon_sym_GT_GT, - ACTIONS(6857), 1, - anon_sym_AMP_AMP, - ACTIONS(6859), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6861), 1, - anon_sym_QMARK_QMARK, - ACTIONS(6863), 1, - anon_sym_as, - ACTIONS(6865), 1, - anon_sym_is, - STATE(2613), 1, - sym_bracketed_argument_list, - STATE(3259), 1, - sym_argument_list, - ACTIONS(5287), 2, + anon_sym_DOT, + ACTIONS(5958), 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, - ACTIONS(6833), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(6837), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(6839), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(6849), 2, + anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(6853), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6855), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5899), 5, - anon_sym_EQ_GT, - anon_sym_when, + anon_sym_switch, + anon_sym_DOT_DOT, anon_sym_and, anon_sym_or, - anon_sym_into, - 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, - [56258] = 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(2967), 1, - sym__identifier_token, - ACTIONS(2979), 1, - anon_sym_LPAREN, - ACTIONS(3454), 1, - anon_sym_delegate, - ACTIONS(6674), 1, - sym_predefined_type, - STATE(3691), 1, - sym__reserved_identifier, - STATE(4087), 1, - sym_identifier, - STATE(4109), 1, - sym_generic_name, - STATE(6031), 1, - sym_array_type, - STATE(6054), 1, - sym_nullable_type, - STATE(6716), 1, - sym__name, - STATE(6883), 1, - sym_tuple_type, - STATE(7162), 1, - sym__array_base_type, - STATE(7413), 1, - sym__pointer_base_type, - STATE(7139), 2, - sym_pointer_type, - sym_function_pointer_type, - STATE(4096), 3, - sym_alias_qualified_name, - sym__simple_name, - sym_qualified_name, - STATE(4372), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - ACTIONS(2971), 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, - [56372] = 16, + 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, + [51089] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -577235,24 +571832,8 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(19), 1, aux_sym_preproc_undef_token1, ACTIONS(21), 1, - sym_comment, - ACTIONS(6829), 1, - anon_sym_LT, - ACTIONS(6867), 1, - anon_sym_COLON_COLON, - STATE(2183), 1, - sym_type_argument_list, - ACTIONS(3662), 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(4373), 9, + sym_comment, + STATE(4314), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -577262,36 +571843,50 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(3660), 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, + ACTIONS(3634), 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(3636), 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_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, - [56464] = 13, + anon_sym_as, + anon_sym_is, + anon_sym_DASH_GT, + anon_sym_with, + [51176] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -577312,7 +571907,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - STATE(4374), 9, + ACTIONS(6539), 1, + anon_sym_LT, + STATE(4406), 1, + sym_type_argument_list, + STATE(4315), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -577322,8 +571921,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(4016), 11, - anon_sym_LT, + ACTIONS(3638), 10, anon_sym_GT, anon_sym_QMARK, anon_sym_BANG, @@ -577334,7 +571932,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT, - ACTIONS(4018), 29, + ACTIONS(3640), 29, sym_interpolation_close_brace, anon_sym_LBRACK, anon_sym_COLON, @@ -577364,7 +571962,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, anon_sym_DASH_GT, anon_sym_with, - [56550] = 37, + [51267] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -577385,73 +571983,77 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4755), 1, + ACTIONS(4042), 1, + anon_sym_DOT, + ACTIONS(4044), 1, anon_sym_DASH_GT, - ACTIONS(4804), 1, + ACTIONS(5257), 1, anon_sym_LPAREN, - ACTIONS(4808), 1, - anon_sym_DOT, - ACTIONS(4835), 1, + ACTIONS(5300), 1, anon_sym_LBRACK, - ACTIONS(4839), 1, + ACTIONS(5302), 1, anon_sym_BANG, - ACTIONS(5664), 1, - anon_sym_QMARK, - ACTIONS(6293), 1, + ACTIONS(6495), 1, anon_sym_switch, - ACTIONS(6307), 1, - anon_sym_with, - ACTIONS(6393), 1, + ACTIONS(6505), 1, anon_sym_as, - ACTIONS(6875), 1, + ACTIONS(6509), 1, + anon_sym_with, + ACTIONS(6605), 1, + anon_sym_DOT_DOT, + ACTIONS(6657), 1, anon_sym_SLASH, - ACTIONS(6877), 1, - anon_sym_CARET, - ACTIONS(6879), 1, - anon_sym_PIPE, - ACTIONS(6881), 1, - anon_sym_AMP, - ACTIONS(6885), 1, + ACTIONS(6661), 1, anon_sym_GT_GT, - ACTIONS(6891), 1, - anon_sym_DOT_DOT, - ACTIONS(6893), 1, + ACTIONS(6665), 1, + anon_sym_AMP, + ACTIONS(6671), 1, anon_sym_is, - STATE(2433), 1, + ACTIONS(6673), 1, + anon_sym_CARET, + ACTIONS(6675), 1, + anon_sym_PIPE, + ACTIONS(6677), 1, + anon_sym_AMP_AMP, + ACTIONS(6679), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6681), 1, + anon_sym_QMARK_QMARK, + ACTIONS(6698), 1, + anon_sym_QMARK, + STATE(2759), 1, sym_bracketed_argument_list, - STATE(3035), 1, + STATE(3381), 1, sym_argument_list, - ACTIONS(4841), 2, + ACTIONS(5304), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6869), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(6871), 2, + ACTIONS(6653), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6873), 2, + ACTIONS(6655), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(6883), 2, + ACTIONS(6659), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(6887), 2, + ACTIONS(6663), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(6667), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6889), 2, + ACTIONS(6669), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5660), 8, + ACTIONS(5709), 6, 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(4375), 9, + anon_sym_and, + anon_sym_or, + STATE(4316), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -577461,7 +572063,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [56684] = 40, + [51408] = 35, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -577482,76 +572084,61 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4075), 1, + ACTIONS(4427), 1, anon_sym_DOT, - ACTIONS(4077), 1, + ACTIONS(4429), 1, anon_sym_DASH_GT, - ACTIONS(5247), 1, + ACTIONS(6557), 1, anon_sym_LPAREN, - ACTIONS(5283), 1, + ACTIONS(6607), 1, anon_sym_LBRACK, - ACTIONS(5285), 1, + ACTIONS(6613), 1, anon_sym_BANG, - ACTIONS(6147), 1, - anon_sym_switch, - ACTIONS(6161), 1, - anon_sym_with, - ACTIONS(6819), 1, - anon_sym_DOT_DOT, - ACTIONS(6835), 1, - anon_sym_QMARK, - ACTIONS(6841), 1, + ACTIONS(6621), 1, anon_sym_SLASH, - ACTIONS(6843), 1, - anon_sym_CARET, - ACTIONS(6845), 1, - anon_sym_PIPE, - ACTIONS(6847), 1, + ACTIONS(6627), 1, anon_sym_AMP, - ACTIONS(6851), 1, + ACTIONS(6631), 1, anon_sym_GT_GT, - ACTIONS(6857), 1, - anon_sym_AMP_AMP, - ACTIONS(6859), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6861), 1, - anon_sym_QMARK_QMARK, - ACTIONS(6863), 1, + ACTIONS(6637), 1, + anon_sym_switch, + ACTIONS(6639), 1, + anon_sym_DOT_DOT, + ACTIONS(6647), 1, anon_sym_as, - ACTIONS(6865), 1, + ACTIONS(6649), 1, anon_sym_is, - STATE(2613), 1, + ACTIONS(6651), 1, + anon_sym_with, + STATE(3188), 1, sym_bracketed_argument_list, - STATE(3259), 1, + STATE(4584), 1, sym_argument_list, - ACTIONS(5287), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6833), 2, + ACTIONS(5739), 2, + anon_sym_QMARK, + anon_sym_PIPE, + ACTIONS(6609), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(6837), 2, + ACTIONS(6615), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6617), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6839), 2, + ACTIONS(6619), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(6849), 2, + ACTIONS(6629), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(6853), 2, + ACTIONS(6633), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6855), 2, + ACTIONS(6635), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5745), 5, - anon_sym_EQ_GT, - anon_sym_when, - anon_sym_and, - anon_sym_or, - anon_sym_into, - STATE(4376), 9, + STATE(4317), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -577561,7 +572148,18 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [56824] = 43, + ACTIONS(5737), 10, + 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, + anon_sym_into, + [51539] = 36, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -577582,79 +572180,73 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(2671), 1, - aux_sym_preproc_else_token1, - ACTIONS(2673), 1, - aux_sym_preproc_elif_token1, - ACTIONS(4100), 1, + ACTIONS(4427), 1, anon_sym_DOT, - ACTIONS(4102), 1, + ACTIONS(4429), 1, anon_sym_DASH_GT, - ACTIONS(5264), 1, + ACTIONS(6557), 1, anon_sym_LPAREN, - ACTIONS(5304), 1, - anon_sym_BANG, - ACTIONS(5573), 1, + ACTIONS(6607), 1, anon_sym_LBRACK, - ACTIONS(6343), 1, - anon_sym_switch, - ACTIONS(6357), 1, - anon_sym_with, - ACTIONS(6783), 1, - anon_sym_QMARK, - ACTIONS(6789), 1, + ACTIONS(6613), 1, + anon_sym_BANG, + ACTIONS(6621), 1, anon_sym_SLASH, - ACTIONS(6791), 1, + ACTIONS(6623), 1, anon_sym_CARET, - ACTIONS(6793), 1, - anon_sym_PIPE, - ACTIONS(6795), 1, + ACTIONS(6627), 1, anon_sym_AMP, - ACTIONS(6799), 1, + ACTIONS(6631), 1, anon_sym_GT_GT, - ACTIONS(6805), 1, + ACTIONS(6637), 1, + anon_sym_switch, + ACTIONS(6639), 1, anon_sym_DOT_DOT, - ACTIONS(6807), 1, - anon_sym_AMP_AMP, - ACTIONS(6809), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6811), 1, - anon_sym_QMARK_QMARK, - ACTIONS(6813), 1, + ACTIONS(6647), 1, anon_sym_as, - ACTIONS(6815), 1, + ACTIONS(6649), 1, anon_sym_is, - ACTIONS(6895), 1, - aux_sym_preproc_if_token3, - STATE(2485), 1, + ACTIONS(6651), 1, + anon_sym_with, + STATE(3188), 1, sym_bracketed_argument_list, - STATE(3487), 1, + STATE(4584), 1, sym_argument_list, - ACTIONS(5306), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6781), 2, + ACTIONS(5739), 2, + anon_sym_QMARK, + anon_sym_PIPE, + ACTIONS(6609), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(6785), 2, + ACTIONS(6615), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6617), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6787), 2, + ACTIONS(6619), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(6797), 2, + ACTIONS(6629), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(6801), 2, + ACTIONS(6633), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6803), 2, + ACTIONS(6635), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - STATE(7714), 2, - sym_preproc_else_in_expression, - sym_preproc_elif_in_expression, - STATE(4377), 9, + ACTIONS(5737), 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(4318), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -577664,7 +572256,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [56970] = 38, + [51672] = 22, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -577685,74 +572277,119 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4755), 1, + ACTIONS(4042), 1, + anon_sym_DOT, + ACTIONS(4044), 1, anon_sym_DASH_GT, - ACTIONS(4804), 1, + ACTIONS(5257), 1, anon_sym_LPAREN, - ACTIONS(4808), 1, - anon_sym_DOT, - ACTIONS(4835), 1, + ACTIONS(5300), 1, anon_sym_LBRACK, - ACTIONS(4839), 1, + ACTIONS(5302), 1, anon_sym_BANG, - ACTIONS(5664), 1, - anon_sym_QMARK, - ACTIONS(6293), 1, - anon_sym_switch, - ACTIONS(6307), 1, - anon_sym_with, - ACTIONS(6393), 1, - anon_sym_as, - ACTIONS(6875), 1, - anon_sym_SLASH, - ACTIONS(6877), 1, - anon_sym_CARET, - ACTIONS(6879), 1, - anon_sym_PIPE, - ACTIONS(6881), 1, - anon_sym_AMP, - ACTIONS(6885), 1, - anon_sym_GT_GT, - ACTIONS(6891), 1, + ACTIONS(6589), 1, anon_sym_DOT_DOT, - ACTIONS(6893), 1, - anon_sym_is, - ACTIONS(6897), 1, - anon_sym_AMP_AMP, - STATE(2433), 1, + STATE(2759), 1, sym_bracketed_argument_list, - STATE(3035), 1, + STATE(3381), 1, sym_argument_list, - ACTIONS(4841), 2, + ACTIONS(5304), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6869), 2, + ACTIONS(1161), 9, anon_sym_LT, anon_sym_GT, - ACTIONS(6871), 2, + anon_sym_QMARK, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6873), 2, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT_GT, + STATE(4319), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + ACTIONS(1147), 22, + anon_sym_SEMI, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(6883), 2, + anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(6887), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6889), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5660), 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(4378), 9, + anon_sym_as, + anon_sym_is, + anon_sym_with, + aux_sym_preproc_if_token3, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + [51777] = 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(2965), 1, + sym__identifier_token, + ACTIONS(5170), 1, + anon_sym_ref, + STATE(3654), 1, + sym__reserved_identifier, + STATE(4073), 1, + sym_generic_name, + STATE(4081), 1, + sym_identifier, + STATE(6744), 1, + sym__name, + STATE(7102), 1, + sym_ref_type, + STATE(7107), 1, + sym__scoped_base_type, + STATE(4068), 3, + sym_alias_qualified_name, + sym__simple_name, + sym_qualified_name, + ACTIONS(3429), 8, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_LT, + anon_sym_GT, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_DOT, + anon_sym_COLON_COLON, + STATE(4320), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -577762,7 +572399,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [57106] = 40, + ACTIONS(2969), 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, + [51882] = 34, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -577783,76 +572443,60 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4443), 1, - anon_sym_DASH_GT, - ACTIONS(4533), 1, + ACTIONS(4427), 1, anon_sym_DOT, - ACTIONS(6574), 1, + ACTIONS(4429), 1, + anon_sym_DASH_GT, + ACTIONS(6557), 1, anon_sym_LPAREN, - ACTIONS(6619), 1, + ACTIONS(6607), 1, anon_sym_LBRACK, - ACTIONS(6625), 1, + ACTIONS(6613), 1, anon_sym_BANG, - ACTIONS(6649), 1, - anon_sym_switch, - ACTIONS(6663), 1, - anon_sym_with, - ACTIONS(6737), 1, + ACTIONS(6621), 1, anon_sym_SLASH, - ACTIONS(6739), 1, - anon_sym_CARET, - ACTIONS(6741), 1, - anon_sym_PIPE, - ACTIONS(6743), 1, - anon_sym_AMP, - ACTIONS(6747), 1, + ACTIONS(6631), 1, anon_sym_GT_GT, - ACTIONS(6753), 1, + ACTIONS(6637), 1, + anon_sym_switch, + ACTIONS(6639), 1, anon_sym_DOT_DOT, - ACTIONS(6755), 1, - anon_sym_AMP_AMP, - ACTIONS(6757), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6759), 1, - anon_sym_QMARK_QMARK, - ACTIONS(6761), 1, + ACTIONS(6647), 1, anon_sym_as, - ACTIONS(6763), 1, + ACTIONS(6649), 1, anon_sym_is, - ACTIONS(6899), 1, - anon_sym_QMARK, - STATE(3173), 1, + ACTIONS(6651), 1, + anon_sym_with, + STATE(3188), 1, sym_bracketed_argument_list, - STATE(4583), 1, + STATE(4584), 1, sym_argument_list, - ACTIONS(6627), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6731), 2, + ACTIONS(6609), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(6733), 2, + ACTIONS(6615), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6617), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6735), 2, + ACTIONS(6619), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(6745), 2, + ACTIONS(6629), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(6749), 2, + ACTIONS(6633), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6751), 2, + ACTIONS(6635), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5777), 5, - sym_interpolation_close_brace, - anon_sym_COLON, - anon_sym_COMMA, - anon_sym_and, - anon_sym_or, - STATE(4379), 9, + ACTIONS(5739), 3, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_AMP, + STATE(4321), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -577862,7 +572506,18 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [57246] = 40, + ACTIONS(5737), 10, + 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, + anon_sym_into, + [52011] = 33, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -577883,76 +572538,57 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4755), 1, + ACTIONS(4427), 1, + anon_sym_DOT, + ACTIONS(4429), 1, anon_sym_DASH_GT, - ACTIONS(4804), 1, + ACTIONS(6557), 1, anon_sym_LPAREN, - ACTIONS(4808), 1, - anon_sym_DOT, - ACTIONS(4835), 1, + ACTIONS(6607), 1, anon_sym_LBRACK, - ACTIONS(4839), 1, + ACTIONS(6613), 1, anon_sym_BANG, - ACTIONS(5664), 1, - anon_sym_QMARK, - ACTIONS(6293), 1, - anon_sym_switch, - ACTIONS(6307), 1, - anon_sym_with, - ACTIONS(6393), 1, - anon_sym_as, - ACTIONS(6875), 1, + ACTIONS(6621), 1, anon_sym_SLASH, - ACTIONS(6877), 1, - anon_sym_CARET, - ACTIONS(6879), 1, - anon_sym_PIPE, - ACTIONS(6881), 1, - anon_sym_AMP, - ACTIONS(6885), 1, + ACTIONS(6631), 1, anon_sym_GT_GT, - ACTIONS(6891), 1, + ACTIONS(6637), 1, + anon_sym_switch, + ACTIONS(6639), 1, anon_sym_DOT_DOT, - ACTIONS(6893), 1, + ACTIONS(6647), 1, + anon_sym_as, + ACTIONS(6649), 1, anon_sym_is, - ACTIONS(6897), 1, - anon_sym_AMP_AMP, - ACTIONS(6901), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6903), 1, - anon_sym_QMARK_QMARK, - STATE(2433), 1, + ACTIONS(6651), 1, + anon_sym_with, + STATE(3188), 1, sym_bracketed_argument_list, - STATE(3035), 1, + STATE(4584), 1, sym_argument_list, - ACTIONS(4841), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6869), 2, + ACTIONS(6609), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(6871), 2, + ACTIONS(6615), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6617), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6873), 2, + ACTIONS(6619), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(6883), 2, + ACTIONS(6629), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(6887), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(6889), 2, + ACTIONS(6635), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5660), 5, - anon_sym_COLON, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_into, - STATE(4380), 9, + ACTIONS(5739), 3, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_AMP, + STATE(4322), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -577962,7 +572598,20 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [57386] = 14, + ACTIONS(5737), 12, + 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, + anon_sym_into, + [52138] = 22, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -577983,38 +572632,49 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(3667), 1, - anon_sym_EQ_GT, - 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, - ACTIONS(5431), 11, + ACTIONS(4427), 1, + anon_sym_DOT, + ACTIONS(4429), 1, + anon_sym_DASH_GT, + ACTIONS(6557), 1, + anon_sym_LPAREN, + ACTIONS(6607), 1, + anon_sym_LBRACK, + ACTIONS(6613), 1, + anon_sym_BANG, + ACTIONS(6639), 1, + anon_sym_DOT_DOT, + STATE(3188), 1, + sym_bracketed_argument_list, + STATE(4584), 1, + sym_argument_list, + ACTIONS(6615), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1161), 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(3829), 28, + STATE(4323), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + ACTIONS(1147), 22, 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, @@ -578025,7 +572685,6 @@ 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, @@ -578034,9 +572693,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, - [57474] = 14, + [52243] = 22, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -578057,38 +572715,50 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(6905), 1, + ACTIONS(4042), 1, anon_sym_DOT, - STATE(4382), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - ACTIONS(3975), 10, + ACTIONS(4044), 1, + anon_sym_DASH_GT, + ACTIONS(5257), 1, + anon_sym_LPAREN, + ACTIONS(5300), 1, + anon_sym_LBRACK, + ACTIONS(5302), 1, + anon_sym_BANG, + ACTIONS(6605), 1, + anon_sym_DOT_DOT, + STATE(2759), 1, + sym_bracketed_argument_list, + STATE(3381), 1, + sym_argument_list, + ACTIONS(5304), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5743), 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, - ACTIONS(3977), 29, - sym_interpolation_close_brace, - anon_sym_LBRACK, + STATE(4324), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + ACTIONS(5741), 22, 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, @@ -578099,18 +572769,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, - [57562] = 13, + [52348] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -578131,7 +572798,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - STATE(4383), 9, + STATE(4325), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -578141,49 +572808,148 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(3975), 11, + ACTIONS(4090), 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(4088), 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, + [52435] = 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(4427), 1, + anon_sym_DOT, + ACTIONS(4429), 1, + anon_sym_DASH_GT, + ACTIONS(5739), 1, + anon_sym_QMARK, + ACTIONS(6557), 1, + anon_sym_LPAREN, + ACTIONS(6607), 1, + anon_sym_LBRACK, + ACTIONS(6613), 1, anon_sym_BANG, - anon_sym_PLUS, - anon_sym_DASH, + ACTIONS(6621), 1, anon_sym_SLASH, + ACTIONS(6623), 1, + anon_sym_CARET, + ACTIONS(6625), 1, anon_sym_PIPE, + ACTIONS(6627), 1, anon_sym_AMP, + ACTIONS(6631), 1, anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(3977), 29, - sym_interpolation_close_brace, - anon_sym_LBRACK, - anon_sym_COLON, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACE, + ACTIONS(6637), 1, + anon_sym_switch, + ACTIONS(6639), 1, + anon_sym_DOT_DOT, + ACTIONS(6647), 1, + anon_sym_as, + ACTIONS(6649), 1, + anon_sym_is, + ACTIONS(6651), 1, + anon_sym_with, + STATE(3188), 1, + sym_bracketed_argument_list, + STATE(4584), 1, + sym_argument_list, + ACTIONS(6609), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(6615), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + ACTIONS(6617), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6619), 2, anon_sym_STAR, anon_sym_PERCENT, - anon_sym_CARET, + ACTIONS(6629), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, + ACTIONS(6633), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + ACTIONS(6635), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - anon_sym_switch, - anon_sym_DOT_DOT, + ACTIONS(5737), 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, - anon_sym_as, - anon_sym_is, - anon_sym_DASH_GT, - anon_sym_with, - [57648] = 40, + STATE(4326), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + [52570] = 38, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -578204,76 +572970,75 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4075), 1, + ACTIONS(4427), 1, anon_sym_DOT, - ACTIONS(4077), 1, + ACTIONS(4429), 1, anon_sym_DASH_GT, - ACTIONS(5247), 1, + ACTIONS(5739), 1, + anon_sym_QMARK, + ACTIONS(6557), 1, anon_sym_LPAREN, - ACTIONS(5283), 1, + ACTIONS(6607), 1, anon_sym_LBRACK, - ACTIONS(5285), 1, + ACTIONS(6613), 1, anon_sym_BANG, - ACTIONS(6147), 1, - anon_sym_switch, - ACTIONS(6161), 1, - anon_sym_with, - ACTIONS(6819), 1, - anon_sym_DOT_DOT, - ACTIONS(6835), 1, - anon_sym_QMARK, - ACTIONS(6841), 1, + ACTIONS(6621), 1, anon_sym_SLASH, - ACTIONS(6843), 1, + ACTIONS(6623), 1, anon_sym_CARET, - ACTIONS(6845), 1, + ACTIONS(6625), 1, anon_sym_PIPE, - ACTIONS(6847), 1, + ACTIONS(6627), 1, anon_sym_AMP, - ACTIONS(6851), 1, + ACTIONS(6631), 1, anon_sym_GT_GT, - ACTIONS(6857), 1, + ACTIONS(6637), 1, + anon_sym_switch, + ACTIONS(6639), 1, + anon_sym_DOT_DOT, + ACTIONS(6641), 1, anon_sym_AMP_AMP, - ACTIONS(6859), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6861), 1, - anon_sym_QMARK_QMARK, - ACTIONS(6863), 1, + ACTIONS(6647), 1, anon_sym_as, - ACTIONS(6865), 1, + ACTIONS(6649), 1, anon_sym_is, - STATE(2613), 1, + ACTIONS(6651), 1, + anon_sym_with, + STATE(3188), 1, sym_bracketed_argument_list, - STATE(3259), 1, + STATE(4584), 1, sym_argument_list, - ACTIONS(5287), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6833), 2, + ACTIONS(6609), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(6837), 2, + ACTIONS(6615), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6617), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6839), 2, + ACTIONS(6619), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(6849), 2, + ACTIONS(6629), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(6853), 2, + ACTIONS(6633), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6855), 2, + ACTIONS(6635), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5767), 5, - anon_sym_EQ_GT, - anon_sym_when, + ACTIONS(5737), 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(4384), 9, + STATE(4327), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -578283,7 +573048,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [57788] = 13, + [52707] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -578304,7 +573069,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - STATE(4385), 9, + STATE(4328), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -578314,7 +573079,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(4000), 11, + ACTIONS(3634), 11, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, @@ -578326,7 +573091,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT, - ACTIONS(4002), 29, + ACTIONS(3636), 30, sym_interpolation_close_brace, anon_sym_LBRACK, anon_sym_COLON, @@ -578344,6 +573109,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_DOT_DOT, anon_sym_and, @@ -578356,7 +573122,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, anon_sym_DASH_GT, anon_sym_with, - [57874] = 13, + [52794] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -578377,59 +573143,87 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - STATE(4386), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - ACTIONS(4004), 11, - anon_sym_LT, - anon_sym_GT, + ACTIONS(4427), 1, + anon_sym_DOT, + ACTIONS(4429), 1, + anon_sym_DASH_GT, + ACTIONS(5739), 1, anon_sym_QMARK, + ACTIONS(6557), 1, + anon_sym_LPAREN, + ACTIONS(6607), 1, + anon_sym_LBRACK, + ACTIONS(6613), 1, anon_sym_BANG, - anon_sym_PLUS, - anon_sym_DASH, + ACTIONS(6621), 1, anon_sym_SLASH, + ACTIONS(6623), 1, + anon_sym_CARET, + ACTIONS(6625), 1, anon_sym_PIPE, + ACTIONS(6627), 1, anon_sym_AMP, + ACTIONS(6631), 1, anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(4006), 29, - sym_interpolation_close_brace, - anon_sym_LBRACK, - anon_sym_COLON, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACE, + ACTIONS(6637), 1, + anon_sym_switch, + ACTIONS(6639), 1, + anon_sym_DOT_DOT, + ACTIONS(6641), 1, + anon_sym_AMP_AMP, + ACTIONS(6643), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6645), 1, + anon_sym_QMARK_QMARK, + ACTIONS(6647), 1, + anon_sym_as, + ACTIONS(6649), 1, + anon_sym_is, + ACTIONS(6651), 1, + anon_sym_with, + STATE(3188), 1, + sym_bracketed_argument_list, + STATE(4584), 1, + sym_argument_list, + ACTIONS(6609), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(6615), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + ACTIONS(6617), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6619), 2, anon_sym_STAR, anon_sym_PERCENT, - anon_sym_CARET, + ACTIONS(6629), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, + ACTIONS(6633), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + ACTIONS(6635), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - anon_sym_switch, - anon_sym_DOT_DOT, + ACTIONS(5737), 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, - [57960] = 43, + STATE(4329), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + [52935] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -578450,79 +573244,77 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(2671), 1, - aux_sym_preproc_else_token1, - ACTIONS(2673), 1, - aux_sym_preproc_elif_token1, - ACTIONS(4100), 1, + ACTIONS(4042), 1, anon_sym_DOT, - ACTIONS(4102), 1, + ACTIONS(4044), 1, anon_sym_DASH_GT, - ACTIONS(5264), 1, + ACTIONS(5257), 1, anon_sym_LPAREN, - ACTIONS(5304), 1, - anon_sym_BANG, - ACTIONS(5573), 1, + ACTIONS(5300), 1, anon_sym_LBRACK, - ACTIONS(6343), 1, + ACTIONS(5302), 1, + anon_sym_BANG, + ACTIONS(6495), 1, anon_sym_switch, - ACTIONS(6357), 1, + ACTIONS(6505), 1, + anon_sym_as, + ACTIONS(6509), 1, anon_sym_with, - ACTIONS(6783), 1, - anon_sym_QMARK, - ACTIONS(6789), 1, + ACTIONS(6605), 1, + anon_sym_DOT_DOT, + ACTIONS(6657), 1, anon_sym_SLASH, - ACTIONS(6791), 1, + ACTIONS(6661), 1, + anon_sym_GT_GT, + ACTIONS(6665), 1, + anon_sym_AMP, + ACTIONS(6671), 1, + anon_sym_is, + ACTIONS(6673), 1, anon_sym_CARET, - ACTIONS(6793), 1, + ACTIONS(6675), 1, anon_sym_PIPE, - ACTIONS(6795), 1, - anon_sym_AMP, - ACTIONS(6799), 1, - anon_sym_GT_GT, - ACTIONS(6805), 1, - anon_sym_DOT_DOT, - ACTIONS(6807), 1, + ACTIONS(6677), 1, anon_sym_AMP_AMP, - ACTIONS(6809), 1, + ACTIONS(6679), 1, anon_sym_PIPE_PIPE, - ACTIONS(6811), 1, + ACTIONS(6681), 1, anon_sym_QMARK_QMARK, - ACTIONS(6813), 1, - anon_sym_as, - ACTIONS(6815), 1, - anon_sym_is, - ACTIONS(6907), 1, - aux_sym_preproc_if_token3, - STATE(2485), 1, + ACTIONS(6698), 1, + anon_sym_QMARK, + STATE(2759), 1, sym_bracketed_argument_list, - STATE(3487), 1, + STATE(3381), 1, sym_argument_list, - ACTIONS(5306), 2, + ACTIONS(5304), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6781), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(6785), 2, + ACTIONS(6653), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6787), 2, + ACTIONS(6655), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(6797), 2, + ACTIONS(6659), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(6801), 2, + ACTIONS(6663), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(6667), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6803), 2, + ACTIONS(6669), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - STATE(7330), 2, - sym_preproc_else_in_expression, - sym_preproc_elif_in_expression, - STATE(4387), 9, + ACTIONS(5849), 6, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_and, + anon_sym_or, + STATE(4330), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -578532,7 +573324,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [58106] = 43, + [53076] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -578553,79 +573345,77 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(2671), 1, - aux_sym_preproc_else_token1, - ACTIONS(2673), 1, - aux_sym_preproc_elif_token1, - ACTIONS(4100), 1, + ACTIONS(4042), 1, anon_sym_DOT, - ACTIONS(4102), 1, + ACTIONS(4044), 1, anon_sym_DASH_GT, - ACTIONS(5264), 1, + ACTIONS(5257), 1, anon_sym_LPAREN, - ACTIONS(5304), 1, - anon_sym_BANG, - ACTIONS(5573), 1, + ACTIONS(5300), 1, anon_sym_LBRACK, - ACTIONS(6343), 1, + ACTIONS(5302), 1, + anon_sym_BANG, + ACTIONS(6495), 1, anon_sym_switch, - ACTIONS(6357), 1, + ACTIONS(6505), 1, + anon_sym_as, + ACTIONS(6509), 1, anon_sym_with, - ACTIONS(6783), 1, - anon_sym_QMARK, - ACTIONS(6789), 1, + ACTIONS(6605), 1, + anon_sym_DOT_DOT, + ACTIONS(6657), 1, anon_sym_SLASH, - ACTIONS(6791), 1, + ACTIONS(6661), 1, + anon_sym_GT_GT, + ACTIONS(6665), 1, + anon_sym_AMP, + ACTIONS(6671), 1, + anon_sym_is, + ACTIONS(6673), 1, anon_sym_CARET, - ACTIONS(6793), 1, + ACTIONS(6675), 1, anon_sym_PIPE, - ACTIONS(6795), 1, - anon_sym_AMP, - ACTIONS(6799), 1, - anon_sym_GT_GT, - ACTIONS(6805), 1, - anon_sym_DOT_DOT, - ACTIONS(6807), 1, + ACTIONS(6677), 1, anon_sym_AMP_AMP, - ACTIONS(6809), 1, + ACTIONS(6679), 1, anon_sym_PIPE_PIPE, - ACTIONS(6811), 1, + ACTIONS(6681), 1, anon_sym_QMARK_QMARK, - ACTIONS(6813), 1, - anon_sym_as, - ACTIONS(6815), 1, - anon_sym_is, - ACTIONS(6909), 1, - aux_sym_preproc_if_token3, - STATE(2485), 1, + ACTIONS(6698), 1, + anon_sym_QMARK, + STATE(2759), 1, sym_bracketed_argument_list, - STATE(3487), 1, + STATE(3381), 1, sym_argument_list, - ACTIONS(5306), 2, + ACTIONS(5304), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6781), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(6785), 2, + ACTIONS(6653), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6787), 2, + ACTIONS(6655), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(6797), 2, + ACTIONS(6659), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(6801), 2, + ACTIONS(6663), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(6667), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6803), 2, + ACTIONS(6669), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - STATE(7677), 2, - sym_preproc_else_in_expression, - sym_preproc_elif_in_expression, - STATE(4388), 9, + ACTIONS(4996), 6, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_and, + anon_sym_or, + STATE(4331), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -578635,7 +573425,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [58252] = 13, + [53217] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -578656,7 +573446,77 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - STATE(4389), 9, + ACTIONS(4042), 1, + anon_sym_DOT, + ACTIONS(4044), 1, + anon_sym_DASH_GT, + ACTIONS(5257), 1, + anon_sym_LPAREN, + ACTIONS(5300), 1, + anon_sym_LBRACK, + ACTIONS(5302), 1, + anon_sym_BANG, + ACTIONS(6495), 1, + anon_sym_switch, + ACTIONS(6505), 1, + anon_sym_as, + ACTIONS(6509), 1, + anon_sym_with, + ACTIONS(6605), 1, + anon_sym_DOT_DOT, + ACTIONS(6657), 1, + anon_sym_SLASH, + ACTIONS(6661), 1, + anon_sym_GT_GT, + ACTIONS(6665), 1, + anon_sym_AMP, + ACTIONS(6671), 1, + anon_sym_is, + ACTIONS(6673), 1, + anon_sym_CARET, + ACTIONS(6675), 1, + anon_sym_PIPE, + ACTIONS(6677), 1, + anon_sym_AMP_AMP, + ACTIONS(6679), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6681), 1, + anon_sym_QMARK_QMARK, + ACTIONS(6698), 1, + anon_sym_QMARK, + STATE(2759), 1, + sym_bracketed_argument_list, + STATE(3381), 1, + sym_argument_list, + ACTIONS(5304), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6653), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6655), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(6659), 2, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + ACTIONS(6663), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(6667), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6669), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(5652), 6, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_and, + anon_sym_or, + STATE(4332), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -578666,49 +573526,108 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(3971), 11, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, + [53358] = 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(4042), 1, + anon_sym_DOT, + ACTIONS(4044), 1, + anon_sym_DASH_GT, + ACTIONS(5257), 1, + anon_sym_LPAREN, + ACTIONS(5300), 1, + anon_sym_LBRACK, + ACTIONS(5302), 1, anon_sym_BANG, - anon_sym_PLUS, - anon_sym_DASH, + ACTIONS(6495), 1, + anon_sym_switch, + ACTIONS(6505), 1, + anon_sym_as, + ACTIONS(6509), 1, + anon_sym_with, + ACTIONS(6567), 1, + anon_sym_QMARK, + ACTIONS(6573), 1, anon_sym_SLASH, + ACTIONS(6575), 1, + anon_sym_CARET, + ACTIONS(6577), 1, anon_sym_PIPE, + ACTIONS(6579), 1, anon_sym_AMP, + ACTIONS(6583), 1, anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(3973), 29, - sym_interpolation_close_brace, - anon_sym_LBRACK, - anon_sym_COLON, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACE, + ACTIONS(6589), 1, + anon_sym_DOT_DOT, + ACTIONS(6591), 1, + anon_sym_AMP_AMP, + ACTIONS(6593), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6595), 1, + anon_sym_QMARK_QMARK, + ACTIONS(6597), 1, + anon_sym_is, + STATE(2759), 1, + sym_bracketed_argument_list, + STATE(3381), 1, + sym_argument_list, + ACTIONS(5304), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + ACTIONS(6565), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(6569), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6571), 2, anon_sym_STAR, anon_sym_PERCENT, - anon_sym_CARET, + ACTIONS(6581), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, + ACTIONS(6585), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + ACTIONS(6587), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - anon_sym_switch, - anon_sym_DOT_DOT, + ACTIONS(5865), 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_DASH_GT, - anon_sym_with, - [58338] = 17, + aux_sym_preproc_if_token3, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + STATE(4333), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + [53499] = 16, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -578729,24 +573648,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(6678), 1, + ACTIONS(6601), 1, anon_sym_LBRACK, - ACTIONS(6680), 1, + ACTIONS(6603), 1, anon_sym_STAR, - ACTIONS(6716), 1, + ACTIONS(6705), 1, anon_sym_QMARK, - ACTIONS(6911), 1, - anon_sym_DOT, - ACTIONS(4018), 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(4390), 9, + STATE(4334), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -578756,7 +573664,18 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(4016), 28, + ACTIONS(3963), 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(3961), 28, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -578785,7 +573704,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_select, sym__identifier_token, - [58432] = 15, + [53592] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -578806,151 +573725,77 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(6913), 1, - anon_sym_and, - ACTIONS(6915), 1, - anon_sym_or, - STATE(4391), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - ACTIONS(5356), 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(4042), 1, anon_sym_DOT, - ACTIONS(5354), 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, - [58522] = 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(4755), 1, + ACTIONS(4044), 1, anon_sym_DASH_GT, - ACTIONS(4804), 1, + ACTIONS(5257), 1, anon_sym_LPAREN, - ACTIONS(4808), 1, - anon_sym_DOT, - ACTIONS(4835), 1, + ACTIONS(5300), 1, anon_sym_LBRACK, - ACTIONS(4839), 1, + ACTIONS(5302), 1, anon_sym_BANG, - ACTIONS(6293), 1, + ACTIONS(6495), 1, anon_sym_switch, - ACTIONS(6307), 1, - anon_sym_with, - ACTIONS(6393), 1, + ACTIONS(6505), 1, anon_sym_as, - ACTIONS(6875), 1, + ACTIONS(6509), 1, + anon_sym_with, + ACTIONS(6605), 1, + anon_sym_DOT_DOT, + ACTIONS(6657), 1, anon_sym_SLASH, - ACTIONS(6877), 1, - anon_sym_CARET, - ACTIONS(6879), 1, - anon_sym_PIPE, - ACTIONS(6881), 1, - anon_sym_AMP, - ACTIONS(6885), 1, + ACTIONS(6661), 1, anon_sym_GT_GT, - ACTIONS(6891), 1, - anon_sym_DOT_DOT, - ACTIONS(6893), 1, + ACTIONS(6665), 1, + anon_sym_AMP, + ACTIONS(6671), 1, anon_sym_is, - ACTIONS(6897), 1, + ACTIONS(6673), 1, + anon_sym_CARET, + ACTIONS(6675), 1, + anon_sym_PIPE, + ACTIONS(6677), 1, anon_sym_AMP_AMP, - ACTIONS(6901), 1, + ACTIONS(6679), 1, anon_sym_PIPE_PIPE, - ACTIONS(6903), 1, + ACTIONS(6681), 1, anon_sym_QMARK_QMARK, - ACTIONS(6917), 1, + ACTIONS(6698), 1, anon_sym_QMARK, - STATE(2433), 1, + STATE(2759), 1, sym_bracketed_argument_list, - STATE(3035), 1, + STATE(3381), 1, sym_argument_list, - ACTIONS(4841), 2, + ACTIONS(5304), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6869), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(6871), 2, + ACTIONS(6653), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6873), 2, + ACTIONS(6655), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(6883), 2, + ACTIONS(6659), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(6887), 2, + ACTIONS(6663), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(6667), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6889), 2, + ACTIONS(6669), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5745), 5, + ACTIONS(5801), 6, anon_sym_COLON, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_RBRACE, - anon_sym_into, - STATE(4392), 9, + anon_sym_and, + anon_sym_or, + STATE(4335), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -578960,7 +573805,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [58662] = 15, + [53733] = 21, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -578981,42 +573826,47 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(6913), 1, - anon_sym_and, - ACTIONS(6915), 1, - anon_sym_or, - STATE(4393), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - ACTIONS(6207), 11, + ACTIONS(4427), 1, + anon_sym_DOT, + ACTIONS(4429), 1, + anon_sym_DASH_GT, + ACTIONS(6557), 1, + anon_sym_LPAREN, + ACTIONS(6607), 1, + anon_sym_LBRACK, + ACTIONS(6613), 1, + anon_sym_BANG, + STATE(3188), 1, + sym_bracketed_argument_list, + STATE(4584), 1, + sym_argument_list, + ACTIONS(6615), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4840), 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(6205), 27, - anon_sym_SEMI, - anon_sym_LBRACK, + STATE(4336), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + ACTIONS(4838), 23, + sym_interpolation_close_brace, + 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, @@ -579028,14 +573878,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_as, anon_sym_is, - anon_sym_DASH_GT, anon_sym_with, - [58752] = 40, + [53836] = 22, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -579056,76 +573908,36 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4755), 1, + ACTIONS(4042), 1, + anon_sym_DOT, + ACTIONS(4044), 1, anon_sym_DASH_GT, - ACTIONS(4804), 1, + ACTIONS(5257), 1, anon_sym_LPAREN, - ACTIONS(4808), 1, - anon_sym_DOT, - ACTIONS(4835), 1, + ACTIONS(5300), 1, anon_sym_LBRACK, - ACTIONS(4839), 1, + ACTIONS(5302), 1, anon_sym_BANG, - ACTIONS(6293), 1, - anon_sym_switch, - ACTIONS(6307), 1, - anon_sym_with, - ACTIONS(6393), 1, - anon_sym_as, - ACTIONS(6875), 1, - anon_sym_SLASH, - ACTIONS(6877), 1, - anon_sym_CARET, - ACTIONS(6879), 1, - anon_sym_PIPE, - ACTIONS(6881), 1, - anon_sym_AMP, - ACTIONS(6885), 1, - anon_sym_GT_GT, - ACTIONS(6891), 1, + ACTIONS(6589), 1, anon_sym_DOT_DOT, - ACTIONS(6893), 1, - anon_sym_is, - ACTIONS(6897), 1, - anon_sym_AMP_AMP, - ACTIONS(6901), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6903), 1, - anon_sym_QMARK_QMARK, - ACTIONS(6917), 1, - anon_sym_QMARK, - STATE(2433), 1, + STATE(2759), 1, sym_bracketed_argument_list, - STATE(3035), 1, + STATE(3381), 1, sym_argument_list, - ACTIONS(4841), 2, + ACTIONS(5304), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6869), 2, + ACTIONS(5743), 9, anon_sym_LT, anon_sym_GT, - ACTIONS(6871), 2, + anon_sym_QMARK, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6873), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(6883), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - ACTIONS(6887), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(6889), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(5767), 5, - anon_sym_COLON, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_into, - STATE(4394), 9, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT_GT, + STATE(4337), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -579135,7 +573947,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [58892] = 16, + ACTIONS(5741), 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, + [53941] = 44, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -579156,62 +573991,90 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4874), 1, - anon_sym_LT, - ACTIONS(6919), 1, - anon_sym_COLON_COLON, - STATE(2964), 1, - sym_type_argument_list, - 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(3660), 11, + ACTIONS(4427), 1, + anon_sym_DOT, + ACTIONS(4429), 1, + anon_sym_DASH_GT, + ACTIONS(6557), 1, + anon_sym_LPAREN, + ACTIONS(6607), 1, + anon_sym_LBRACK, + ACTIONS(6613), 1, + anon_sym_BANG, + ACTIONS(6637), 1, + anon_sym_switch, + ACTIONS(6651), 1, + anon_sym_with, + ACTIONS(6707), 1, anon_sym_COLON, - anon_sym_GT, + ACTIONS(6709), 1, + anon_sym_COMMA, + ACTIONS(6713), 1, anon_sym_QMARK, - anon_sym_BANG, - anon_sym_PLUS, - anon_sym_DASH, + ACTIONS(6719), 1, anon_sym_SLASH, + ACTIONS(6721), 1, + anon_sym_CARET, + ACTIONS(6723), 1, anon_sym_PIPE, + ACTIONS(6725), 1, anon_sym_AMP, + ACTIONS(6729), 1, anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(3662), 26, - anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, + ACTIONS(6735), 1, + anon_sym_DOT_DOT, + ACTIONS(6737), 1, + anon_sym_AMP_AMP, + ACTIONS(6739), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6741), 1, + anon_sym_QMARK_QMARK, + ACTIONS(6743), 1, + anon_sym_as, + ACTIONS(6745), 1, + anon_sym_is, + ACTIONS(6747), 1, + sym_interpolation_close_brace, + STATE(3188), 1, + sym_bracketed_argument_list, + STATE(4584), 1, + sym_argument_list, + STATE(6949), 1, + sym_interpolation_alignment_clause, + STATE(7591), 1, + sym_interpolation_format_clause, + ACTIONS(6615), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + ACTIONS(6711), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(6715), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6717), 2, anon_sym_STAR, anon_sym_PERCENT, - anon_sym_CARET, + ACTIONS(6727), 2, anon_sym_LT_LT, anon_sym_GT_GT_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, - 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, - [58984] = 13, + STATE(4338), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + [54089] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -579232,7 +574095,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - STATE(4396), 9, + STATE(4339), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -579242,7 +574105,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(4872), 11, + ACTIONS(3976), 11, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, @@ -579254,7 +574117,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT, - ACTIONS(4870), 29, + ACTIONS(3978), 29, sym_interpolation_close_brace, anon_sym_LBRACK, anon_sym_COLON, @@ -579284,7 +574147,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, anon_sym_DASH_GT, anon_sym_with, - [59070] = 14, + [54175] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -579305,9 +574168,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(6921), 1, - aux_sym_raw_string_literal_token1, - STATE(4397), 9, + STATE(4340), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -579317,7 +574178,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(4904), 11, + ACTIONS(4074), 11, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, @@ -579329,12 +574190,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT, - ACTIONS(4902), 28, + ACTIONS(4076), 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, @@ -579358,7 +574220,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, anon_sym_DASH_GT, anon_sym_with, - [59158] = 13, + [54261] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -579379,7 +574241,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - STATE(4398), 9, + STATE(4341), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -579389,7 +574251,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(3949), 11, + ACTIONS(3992), 11, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, @@ -579401,7 +574263,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT, - ACTIONS(3951), 29, + ACTIONS(3994), 29, sym_interpolation_close_brace, anon_sym_LBRACK, anon_sym_COLON, @@ -579431,7 +574293,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, anon_sym_DASH_GT, anon_sym_with, - [59244] = 43, + [54347] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -579452,79 +574314,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(2671), 1, - aux_sym_preproc_else_token1, - ACTIONS(2673), 1, - aux_sym_preproc_elif_token1, - ACTIONS(4100), 1, - anon_sym_DOT, - ACTIONS(4102), 1, - anon_sym_DASH_GT, - ACTIONS(5264), 1, - anon_sym_LPAREN, - ACTIONS(5304), 1, - anon_sym_BANG, - ACTIONS(5573), 1, - anon_sym_LBRACK, - ACTIONS(6343), 1, - anon_sym_switch, - ACTIONS(6357), 1, - anon_sym_with, - ACTIONS(6783), 1, - anon_sym_QMARK, - ACTIONS(6789), 1, - anon_sym_SLASH, - ACTIONS(6791), 1, - anon_sym_CARET, - ACTIONS(6793), 1, - anon_sym_PIPE, - ACTIONS(6795), 1, - anon_sym_AMP, - ACTIONS(6799), 1, - anon_sym_GT_GT, - ACTIONS(6805), 1, - anon_sym_DOT_DOT, - ACTIONS(6807), 1, - anon_sym_AMP_AMP, - ACTIONS(6809), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6811), 1, - anon_sym_QMARK_QMARK, - ACTIONS(6813), 1, - anon_sym_as, - ACTIONS(6815), 1, - anon_sym_is, - ACTIONS(6923), 1, - aux_sym_preproc_if_token3, - STATE(2485), 1, - sym_bracketed_argument_list, - STATE(3487), 1, - sym_argument_list, - ACTIONS(5306), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6781), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(6785), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(6787), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(6797), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - ACTIONS(6801), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(6803), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - STATE(7395), 2, - sym_preproc_else_in_expression, - sym_preproc_elif_in_expression, - STATE(4399), 9, + STATE(4342), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -579534,274 +574324,27 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [59390] = 43, - ACTIONS(3), 1, - aux_sym_preproc_region_token1, - ACTIONS(5), 1, - aux_sym_preproc_endregion_token1, - ACTIONS(7), 1, - aux_sym_preproc_line_token1, - ACTIONS(9), 1, - aux_sym_preproc_pragma_token1, - ACTIONS(11), 1, - aux_sym_preproc_nullable_token1, - ACTIONS(13), 1, - aux_sym_preproc_error_token1, - ACTIONS(15), 1, - aux_sym_preproc_warning_token1, - ACTIONS(17), 1, - aux_sym_preproc_define_token1, - ACTIONS(19), 1, - aux_sym_preproc_undef_token1, - ACTIONS(21), 1, - sym_comment, - ACTIONS(2671), 1, - aux_sym_preproc_else_token1, - ACTIONS(2673), 1, - aux_sym_preproc_elif_token1, - ACTIONS(4100), 1, - anon_sym_DOT, - ACTIONS(4102), 1, - anon_sym_DASH_GT, - ACTIONS(5264), 1, - anon_sym_LPAREN, - ACTIONS(5304), 1, - anon_sym_BANG, - ACTIONS(5573), 1, - anon_sym_LBRACK, - ACTIONS(6343), 1, - anon_sym_switch, - ACTIONS(6357), 1, - anon_sym_with, - ACTIONS(6783), 1, - anon_sym_QMARK, - ACTIONS(6789), 1, - anon_sym_SLASH, - ACTIONS(6791), 1, - anon_sym_CARET, - ACTIONS(6793), 1, - anon_sym_PIPE, - ACTIONS(6795), 1, - anon_sym_AMP, - ACTIONS(6799), 1, - anon_sym_GT_GT, - ACTIONS(6805), 1, - anon_sym_DOT_DOT, - ACTIONS(6807), 1, - anon_sym_AMP_AMP, - ACTIONS(6809), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6811), 1, - anon_sym_QMARK_QMARK, - ACTIONS(6813), 1, - anon_sym_as, - ACTIONS(6815), 1, - anon_sym_is, - ACTIONS(6925), 1, - aux_sym_preproc_if_token3, - STATE(2485), 1, - sym_bracketed_argument_list, - STATE(3487), 1, - sym_argument_list, - ACTIONS(5306), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6781), 2, + ACTIONS(4070), 11, anon_sym_LT, anon_sym_GT, - ACTIONS(6785), 2, + anon_sym_QMARK, + anon_sym_BANG, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6787), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(6797), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - ACTIONS(6801), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(6803), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - STATE(7383), 2, - sym_preproc_else_in_expression, - sym_preproc_elif_in_expression, - STATE(4400), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - [59536] = 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(4755), 1, - anon_sym_DASH_GT, - ACTIONS(4804), 1, - anon_sym_LPAREN, - ACTIONS(4808), 1, - anon_sym_DOT, - ACTIONS(4835), 1, - anon_sym_LBRACK, - ACTIONS(4839), 1, - anon_sym_BANG, - ACTIONS(6293), 1, - anon_sym_switch, - ACTIONS(6307), 1, - anon_sym_with, - ACTIONS(6393), 1, - anon_sym_as, - ACTIONS(6875), 1, anon_sym_SLASH, - ACTIONS(6877), 1, - anon_sym_CARET, - ACTIONS(6879), 1, anon_sym_PIPE, - ACTIONS(6881), 1, anon_sym_AMP, - ACTIONS(6885), 1, anon_sym_GT_GT, - ACTIONS(6891), 1, - anon_sym_DOT_DOT, - ACTIONS(6893), 1, - anon_sym_is, - ACTIONS(6897), 1, - anon_sym_AMP_AMP, - ACTIONS(6901), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6903), 1, - anon_sym_QMARK_QMARK, - ACTIONS(6917), 1, - anon_sym_QMARK, - STATE(2433), 1, - sym_bracketed_argument_list, - STATE(3035), 1, - sym_argument_list, - ACTIONS(4841), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6869), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(6871), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(6873), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(6883), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - ACTIONS(6887), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(6889), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(5899), 5, + anon_sym_DOT, + ACTIONS(4072), 29, + sym_interpolation_close_brace, + anon_sym_LBRACK, anon_sym_COLON, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_into, - 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, - [59676] = 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(4755), 1, - anon_sym_DASH_GT, - ACTIONS(4804), 1, anon_sym_LPAREN, - ACTIONS(4808), 1, - anon_sym_DOT, - ACTIONS(4835), 1, - anon_sym_LBRACK, - ACTIONS(4839), 1, - anon_sym_BANG, - ACTIONS(6891), 1, - anon_sym_DOT_DOT, - STATE(2433), 1, - sym_bracketed_argument_list, - STATE(3035), 1, - sym_argument_list, - ACTIONS(4841), 2, + anon_sym_LBRACE, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1223), 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(4402), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - ACTIONS(1221), 21, - anon_sym_COLON, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_RBRACE, anon_sym_STAR, anon_sym_PERCENT, anon_sym_CARET, @@ -579812,14 +574355,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, - [59780] = 13, + [54433] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -579840,7 +574387,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - STATE(4403), 9, + ACTIONS(3651), 1, + anon_sym_EQ_GT, + STATE(4343), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -579850,7 +574399,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(3660), 11, + ACTIONS(5406), 11, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, @@ -579862,13 +574411,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT, - ACTIONS(3662), 29, + ACTIONS(3809), 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, @@ -579892,7 +574440,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, anon_sym_DASH_GT, anon_sym_with, - [59866] = 15, + [54521] = 27, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -579913,11 +574461,40 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(6678), 1, - anon_sym_LBRACK, - ACTIONS(6716), 1, - anon_sym_QMARK, - STATE(4404), 9, + ACTIONS(2965), 1, + sym__identifier_token, + ACTIONS(2977), 1, + anon_sym_LPAREN, + ACTIONS(3438), 1, + anon_sym_delegate, + ACTIONS(6563), 1, + sym_predefined_type, + STATE(3654), 1, + sym__reserved_identifier, + STATE(4073), 1, + sym_generic_name, + STATE(4081), 1, + sym_identifier, + STATE(5943), 1, + sym_array_type, + STATE(5945), 1, + sym_nullable_type, + STATE(6665), 1, + sym__name, + STATE(6777), 1, + sym_tuple_type, + STATE(7233), 1, + sym__array_base_type, + STATE(7357), 1, + sym__pointer_base_type, + STATE(7189), 2, + sym_pointer_type, + sym_function_pointer_type, + STATE(4068), 3, + sym_alias_qualified_name, + sym__simple_name, + sym_qualified_name, + STATE(4344), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -579927,33 +574504,17 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(4018), 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(4016), 28, + ACTIONS(2969), 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, @@ -579966,8 +574527,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - sym__identifier_token, - [59956] = 22, + [54635] = 38, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -579988,68 +574548,84 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4075), 1, + ACTIONS(4092), 1, anon_sym_DOT, - ACTIONS(4077), 1, + ACTIONS(4094), 1, anon_sym_DASH_GT, - ACTIONS(5247), 1, + ACTIONS(5227), 1, anon_sym_LPAREN, - ACTIONS(5283), 1, + ACTIONS(5236), 1, anon_sym_LBRACK, - ACTIONS(5285), 1, + ACTIONS(5238), 1, anon_sym_BANG, - ACTIONS(6777), 1, + ACTIONS(5739), 1, + anon_sym_QMARK, + ACTIONS(6017), 1, + anon_sym_switch, + ACTIONS(6031), 1, + anon_sym_with, + ACTIONS(6755), 1, + anon_sym_SLASH, + ACTIONS(6757), 1, + anon_sym_CARET, + ACTIONS(6759), 1, + anon_sym_PIPE, + ACTIONS(6761), 1, + anon_sym_AMP, + ACTIONS(6765), 1, + anon_sym_GT_GT, + ACTIONS(6771), 1, anon_sym_DOT_DOT, - STATE(2613), 1, + ACTIONS(6773), 1, + anon_sym_AMP_AMP, + ACTIONS(6775), 1, + anon_sym_as, + ACTIONS(6777), 1, + anon_sym_is, + STATE(2605), 1, sym_bracketed_argument_list, - STATE(3259), 1, + STATE(3348), 1, sym_argument_list, - ACTIONS(5287), 2, + ACTIONS(5240), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5733), 9, + ACTIONS(6749), 2, anon_sym_LT, anon_sym_GT, - anon_sym_QMARK, + ACTIONS(6751), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT_GT, - 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(5731), 21, - anon_sym_COLON, + ACTIONS(6753), 2, anon_sym_STAR, anon_sym_PERCENT, - anon_sym_CARET, + ACTIONS(6763), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, + ACTIONS(6767), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + ACTIONS(6769), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - anon_sym_switch, + ACTIONS(5737), 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, - [60060] = 22, + STATE(4345), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + [54771] = 43, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -580070,36 +574646,79 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4443), 1, - anon_sym_DASH_GT, - ACTIONS(4533), 1, + ACTIONS(2675), 1, + aux_sym_preproc_else_token1, + ACTIONS(2677), 1, + aux_sym_preproc_elif_token1, + ACTIONS(4042), 1, anon_sym_DOT, - ACTIONS(6574), 1, + ACTIONS(4044), 1, + anon_sym_DASH_GT, + ACTIONS(5257), 1, anon_sym_LPAREN, - ACTIONS(6619), 1, - anon_sym_LBRACK, - ACTIONS(6625), 1, + ACTIONS(5302), 1, anon_sym_BANG, - ACTIONS(6753), 1, + ACTIONS(5549), 1, + anon_sym_LBRACK, + ACTIONS(6355), 1, + anon_sym_switch, + ACTIONS(6369), 1, + anon_sym_with, + ACTIONS(6781), 1, + anon_sym_QMARK, + ACTIONS(6787), 1, + anon_sym_SLASH, + ACTIONS(6789), 1, + anon_sym_CARET, + ACTIONS(6791), 1, + anon_sym_PIPE, + ACTIONS(6793), 1, + anon_sym_AMP, + ACTIONS(6797), 1, + anon_sym_GT_GT, + ACTIONS(6803), 1, anon_sym_DOT_DOT, - STATE(3173), 1, + ACTIONS(6805), 1, + anon_sym_AMP_AMP, + ACTIONS(6807), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6809), 1, + anon_sym_QMARK_QMARK, + ACTIONS(6811), 1, + anon_sym_as, + ACTIONS(6813), 1, + anon_sym_is, + ACTIONS(6815), 1, + aux_sym_preproc_if_token3, + STATE(2467), 1, sym_bracketed_argument_list, - STATE(4583), 1, + STATE(3381), 1, sym_argument_list, - ACTIONS(6627), 2, + ACTIONS(5304), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5733), 9, + ACTIONS(6779), 2, anon_sym_LT, anon_sym_GT, - anon_sym_QMARK, + ACTIONS(6783), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT_GT, - STATE(4406), 9, + ACTIONS(6785), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(6795), 2, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + ACTIONS(6799), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6801), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + STATE(7388), 2, + sym_preproc_else_in_expression, + sym_preproc_elif_in_expression, + STATE(4346), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -580109,29 +574728,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5731), 21, - 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_as, - anon_sym_is, - anon_sym_with, - [60164] = 15, + [54917] = 26, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -580152,11 +574749,44 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(6821), 1, - anon_sym_and, - ACTIONS(6831), 1, - anon_sym_or, - STATE(4407), 9, + ACTIONS(4092), 1, + anon_sym_DOT, + ACTIONS(4094), 1, + anon_sym_DASH_GT, + ACTIONS(5227), 1, + anon_sym_LPAREN, + ACTIONS(5236), 1, + anon_sym_LBRACK, + ACTIONS(5238), 1, + anon_sym_BANG, + ACTIONS(6017), 1, + anon_sym_switch, + ACTIONS(6031), 1, + anon_sym_with, + ACTIONS(6755), 1, + anon_sym_SLASH, + ACTIONS(6771), 1, + anon_sym_DOT_DOT, + STATE(2605), 1, + sym_bracketed_argument_list, + STATE(3348), 1, + sym_argument_list, + ACTIONS(5240), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6753), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(5739), 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(4347), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -580166,29 +574796,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(6207), 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(6205), 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(5737), 17, anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT_GT, @@ -580196,17 +574804,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, - [60254] = 13, + [55029] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -580227,7 +574835,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - STATE(4408), 9, + STATE(4348), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -580237,7 +574845,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(3979), 11, + ACTIONS(4088), 11, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, @@ -580249,7 +574857,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT, - ACTIONS(3981), 29, + ACTIONS(4090), 29, sym_interpolation_close_brace, anon_sym_LBRACK, anon_sym_COLON, @@ -580279,7 +574887,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, anon_sym_DASH_GT, anon_sym_with, - [60340] = 22, + [55115] = 22, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -580300,26 +574908,26 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4075), 1, + ACTIONS(4753), 1, + anon_sym_LPAREN, + ACTIONS(4792), 1, anon_sym_DOT, - ACTIONS(4077), 1, + ACTIONS(4794), 1, anon_sym_DASH_GT, - ACTIONS(5247), 1, - anon_sym_LPAREN, - ACTIONS(5283), 1, + ACTIONS(4819), 1, anon_sym_LBRACK, - ACTIONS(5285), 1, + ACTIONS(4823), 1, anon_sym_BANG, - ACTIONS(6819), 1, + ACTIONS(6817), 1, anon_sym_DOT_DOT, - STATE(2613), 1, + STATE(2419), 1, sym_bracketed_argument_list, - STATE(3259), 1, + STATE(2958), 1, sym_argument_list, - ACTIONS(5287), 2, + ACTIONS(4825), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1223), 9, + ACTIONS(5743), 9, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, @@ -580329,60 +574937,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_AMP, anon_sym_GT_GT, - STATE(4409), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - ACTIONS(1221), 21, - 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_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, - [60444] = 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(4410), 9, + STATE(4349), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -580392,27 +574947,11 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(3679), 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(3681), 29, - sym_interpolation_close_brace, - anon_sym_LBRACK, + ACTIONS(5741), 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, @@ -580423,18 +574962,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, - [60530] = 29, + [55219] = 24, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -580455,49 +574990,40 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4443), 1, - anon_sym_DASH_GT, - ACTIONS(4533), 1, - anon_sym_DOT, - ACTIONS(6574), 1, + ACTIONS(4753), 1, anon_sym_LPAREN, - ACTIONS(6619), 1, + ACTIONS(4792), 1, + anon_sym_DOT, + ACTIONS(4794), 1, + anon_sym_DASH_GT, + ACTIONS(4819), 1, anon_sym_LBRACK, - ACTIONS(6625), 1, + ACTIONS(4823), 1, anon_sym_BANG, - ACTIONS(6649), 1, + ACTIONS(6264), 1, anon_sym_switch, - ACTIONS(6663), 1, + ACTIONS(6278), 1, anon_sym_with, - ACTIONS(6737), 1, - anon_sym_SLASH, - ACTIONS(6747), 1, - anon_sym_GT_GT, - ACTIONS(6753), 1, + ACTIONS(6817), 1, anon_sym_DOT_DOT, - STATE(3173), 1, + STATE(2419), 1, sym_bracketed_argument_list, - STATE(4583), 1, + STATE(2958), 1, sym_argument_list, - ACTIONS(6627), 2, + ACTIONS(4825), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6733), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(6735), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(6745), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - ACTIONS(5664), 5, + ACTIONS(5739), 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(4411), 9, + anon_sym_GT_GT, + STATE(4350), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -580507,23 +575033,27 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5660), 15, - sym_interpolation_close_brace, + ACTIONS(5737), 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_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, - [60648] = 26, + [55327] = 24, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -580544,44 +575074,40 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4443), 1, - anon_sym_DASH_GT, - ACTIONS(4533), 1, + ACTIONS(4092), 1, anon_sym_DOT, - ACTIONS(6574), 1, + ACTIONS(4094), 1, + anon_sym_DASH_GT, + ACTIONS(5227), 1, anon_sym_LPAREN, - ACTIONS(6619), 1, + ACTIONS(5236), 1, anon_sym_LBRACK, - ACTIONS(6625), 1, + ACTIONS(5238), 1, anon_sym_BANG, - ACTIONS(6649), 1, + ACTIONS(6017), 1, anon_sym_switch, - ACTIONS(6663), 1, + ACTIONS(6031), 1, anon_sym_with, - ACTIONS(6737), 1, - anon_sym_SLASH, - ACTIONS(6753), 1, + ACTIONS(6771), 1, anon_sym_DOT_DOT, - STATE(3173), 1, + STATE(2605), 1, sym_bracketed_argument_list, - STATE(4583), 1, + STATE(3348), 1, sym_argument_list, - ACTIONS(6627), 2, + ACTIONS(5240), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6735), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(5664), 8, + ACTIONS(5739), 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(4412), 9, + STATE(4351), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -580591,10 +575117,9 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5660), 17, - sym_interpolation_close_brace, - anon_sym_COLON, - anon_sym_COMMA, + ACTIONS(5737), 19, + anon_sym_STAR, + anon_sym_PERCENT, anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT_GT, @@ -580602,14 +575127,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_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, - [60760] = 24, + [55435] = 22, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -580630,30 +575158,26 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4443), 1, - anon_sym_DASH_GT, - ACTIONS(4533), 1, + ACTIONS(4092), 1, anon_sym_DOT, - ACTIONS(6574), 1, + ACTIONS(4094), 1, + anon_sym_DASH_GT, + ACTIONS(5227), 1, anon_sym_LPAREN, - ACTIONS(6619), 1, + ACTIONS(5236), 1, anon_sym_LBRACK, - ACTIONS(6625), 1, + ACTIONS(5238), 1, anon_sym_BANG, - ACTIONS(6649), 1, - anon_sym_switch, - ACTIONS(6663), 1, - anon_sym_with, - ACTIONS(6753), 1, + ACTIONS(6819), 1, anon_sym_DOT_DOT, - STATE(3173), 1, + STATE(2605), 1, sym_bracketed_argument_list, - STATE(4583), 1, + STATE(3348), 1, sym_argument_list, - ACTIONS(6627), 2, + ACTIONS(5240), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5664), 9, + ACTIONS(1161), 9, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, @@ -580663,7 +575187,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_AMP, anon_sym_GT_GT, - STATE(4413), 9, + STATE(4352), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -580673,10 +575197,8 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5660), 19, - sym_interpolation_close_brace, + ACTIONS(1147), 21, anon_sym_COLON, - anon_sym_COMMA, anon_sym_STAR, anon_sym_PERCENT, anon_sym_CARET, @@ -580686,14 +575208,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_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, - [60868] = 27, + anon_sym_with, + [55539] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -580714,45 +575240,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4443), 1, - anon_sym_DASH_GT, - ACTIONS(4533), 1, - anon_sym_DOT, - ACTIONS(6574), 1, - anon_sym_LPAREN, - ACTIONS(6619), 1, - anon_sym_LBRACK, - ACTIONS(6625), 1, - anon_sym_BANG, - ACTIONS(6649), 1, - anon_sym_switch, - ACTIONS(6663), 1, - anon_sym_with, - ACTIONS(6737), 1, - anon_sym_SLASH, - ACTIONS(6753), 1, - anon_sym_DOT_DOT, - STATE(3173), 1, - sym_bracketed_argument_list, - STATE(4583), 1, - sym_argument_list, - ACTIONS(6627), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6733), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(6735), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(5664), 6, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT_GT, - STATE(4414), 9, + STATE(4353), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -580762,10 +575250,29 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5660), 17, + ACTIONS(3955), 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(3957), 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, @@ -580773,14 +575280,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, - [60982] = 40, + anon_sym_DASH_GT, + anon_sym_with, + [55625] = 43, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -580801,76 +575313,79 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4755), 1, + ACTIONS(2675), 1, + aux_sym_preproc_else_token1, + ACTIONS(2677), 1, + aux_sym_preproc_elif_token1, + ACTIONS(4042), 1, + anon_sym_DOT, + ACTIONS(4044), 1, anon_sym_DASH_GT, - ACTIONS(4804), 1, + ACTIONS(5257), 1, anon_sym_LPAREN, - ACTIONS(4808), 1, - anon_sym_DOT, - ACTIONS(4835), 1, - anon_sym_LBRACK, - ACTIONS(4839), 1, + ACTIONS(5302), 1, anon_sym_BANG, - ACTIONS(6293), 1, + ACTIONS(5549), 1, + anon_sym_LBRACK, + ACTIONS(6355), 1, anon_sym_switch, - ACTIONS(6307), 1, + ACTIONS(6369), 1, anon_sym_with, - ACTIONS(6393), 1, - anon_sym_as, - ACTIONS(6875), 1, + ACTIONS(6781), 1, + anon_sym_QMARK, + ACTIONS(6787), 1, anon_sym_SLASH, - ACTIONS(6877), 1, + ACTIONS(6789), 1, anon_sym_CARET, - ACTIONS(6879), 1, + ACTIONS(6791), 1, anon_sym_PIPE, - ACTIONS(6881), 1, + ACTIONS(6793), 1, anon_sym_AMP, - ACTIONS(6885), 1, + ACTIONS(6797), 1, anon_sym_GT_GT, - ACTIONS(6891), 1, + ACTIONS(6803), 1, anon_sym_DOT_DOT, - ACTIONS(6893), 1, - anon_sym_is, - ACTIONS(6897), 1, + ACTIONS(6805), 1, anon_sym_AMP_AMP, - ACTIONS(6901), 1, + ACTIONS(6807), 1, anon_sym_PIPE_PIPE, - ACTIONS(6903), 1, + ACTIONS(6809), 1, anon_sym_QMARK_QMARK, - ACTIONS(6917), 1, - anon_sym_QMARK, - STATE(2433), 1, + ACTIONS(6811), 1, + anon_sym_as, + ACTIONS(6813), 1, + anon_sym_is, + ACTIONS(6821), 1, + aux_sym_preproc_if_token3, + STATE(2467), 1, sym_bracketed_argument_list, - STATE(3035), 1, + STATE(3381), 1, sym_argument_list, - ACTIONS(4841), 2, + ACTIONS(5304), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6869), 2, + ACTIONS(6779), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(6871), 2, + ACTIONS(6783), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6873), 2, + ACTIONS(6785), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(6883), 2, + ACTIONS(6795), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(6887), 2, + ACTIONS(6799), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6889), 2, + ACTIONS(6801), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5858), 5, - anon_sym_COLON, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_into, - STATE(4415), 9, + STATE(7499), 2, + sym_preproc_else_in_expression, + sym_preproc_elif_in_expression, + STATE(4354), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -580880,7 +575395,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [61122] = 14, + [55771] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -580901,9 +575416,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(6913), 1, - anon_sym_and, - STATE(4416), 9, + STATE(4355), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -580913,7 +575426,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(6069), 11, + ACTIONS(3951), 11, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, @@ -580925,14 +575438,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT, - ACTIONS(6067), 28, - anon_sym_SEMI, + ACTIONS(3953), 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, @@ -580946,15 +575458,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, - [61210] = 13, + [55857] = 16, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -580975,7 +575489,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - STATE(4417), 9, + ACTIONS(4869), 1, + anon_sym_LT, + ACTIONS(6823), 1, + anon_sym_COLON_COLON, + STATE(2965), 1, + sym_type_argument_list, + STATE(4356), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -580985,8 +575505,8 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(4008), 11, - anon_sym_LT, + ACTIONS(3638), 11, + anon_sym_COLON, anon_sym_GT, anon_sym_QMARK, anon_sym_BANG, @@ -580997,13 +575517,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT, - ACTIONS(4010), 29, - sym_interpolation_close_brace, + ACTIONS(3640), 26, anon_sym_LBRACK, - anon_sym_COLON, 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, @@ -581017,17 +575537,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_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, - [61296] = 13, + [55949] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -581048,7 +575565,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - STATE(4418), 9, + STATE(4357), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -581058,7 +575575,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(4910), 11, + ACTIONS(4882), 11, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, @@ -581070,7 +575587,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT, - ACTIONS(4908), 29, + ACTIONS(4880), 29, sym_interpolation_close_brace, anon_sym_LBRACK, anon_sym_COLON, @@ -581100,7 +575617,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, anon_sym_DASH_GT, anon_sym_with, - [61382] = 14, + [56035] = 27, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -581121,14 +575638,45 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4271), 6, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_and, - anon_sym_or, - STATE(4419), 9, + ACTIONS(4753), 1, + anon_sym_LPAREN, + ACTIONS(4792), 1, + anon_sym_DOT, + ACTIONS(4794), 1, + anon_sym_DASH_GT, + ACTIONS(4819), 1, + anon_sym_LBRACK, + ACTIONS(4823), 1, + anon_sym_BANG, + ACTIONS(6264), 1, + anon_sym_switch, + ACTIONS(6278), 1, + anon_sym_with, + ACTIONS(6817), 1, + anon_sym_DOT_DOT, + ACTIONS(6829), 1, + anon_sym_SLASH, + STATE(2419), 1, + sym_bracketed_argument_list, + STATE(2958), 1, + sym_argument_list, + ACTIONS(4825), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6825), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6827), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(5739), 6, + anon_sym_LT, + anon_sym_GT, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT_GT, + STATE(4358), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -581138,26 +575686,11 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5056), 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(5054), 23, - anon_sym_LBRACK, + ACTIONS(5737), 17, anon_sym_COLON, - anon_sym_LPAREN, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_STAR, - anon_sym_PERCENT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT_GT, @@ -581165,16 +575698,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_into, anon_sym_as, anon_sym_is, - anon_sym_DASH_GT, - anon_sym_with, - [61470] = 14, + [56149] = 36, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -581195,60 +575725,82 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4271), 6, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_and, - anon_sym_or, - STATE(4420), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - ACTIONS(5092), 11, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, + ACTIONS(4427), 1, + anon_sym_DOT, + ACTIONS(4429), 1, + anon_sym_DASH_GT, + ACTIONS(6557), 1, + anon_sym_LPAREN, + ACTIONS(6607), 1, + anon_sym_LBRACK, + ACTIONS(6613), 1, anon_sym_BANG, - anon_sym_PLUS, - anon_sym_DASH, + ACTIONS(6637), 1, + anon_sym_switch, + ACTIONS(6651), 1, + anon_sym_with, + ACTIONS(6743), 1, + anon_sym_as, + ACTIONS(6837), 1, anon_sym_SLASH, - anon_sym_PIPE, + ACTIONS(6839), 1, + anon_sym_CARET, + ACTIONS(6841), 1, anon_sym_AMP, + ACTIONS(6845), 1, anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(5090), 23, - anon_sym_LBRACK, - anon_sym_COLON, - anon_sym_LPAREN, + ACTIONS(6851), 1, + anon_sym_DOT_DOT, + ACTIONS(6853), 1, + anon_sym_is, + STATE(3188), 1, + sym_bracketed_argument_list, + STATE(4584), 1, + sym_argument_list, + ACTIONS(5739), 2, + anon_sym_QMARK, + anon_sym_PIPE, + ACTIONS(6615), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + ACTIONS(6831), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(6833), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6835), 2, anon_sym_STAR, anon_sym_PERCENT, - anon_sym_CARET, + ACTIONS(6843), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, + ACTIONS(6847), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + ACTIONS(6849), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - anon_sym_switch, - anon_sym_DOT_DOT, + ACTIONS(5737), 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_as, - anon_sym_is, - anon_sym_DASH_GT, - anon_sym_with, - [61558] = 40, + STATE(4359), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + [56281] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -581269,76 +575821,76 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4443), 1, - anon_sym_DASH_GT, - ACTIONS(4533), 1, + ACTIONS(4092), 1, anon_sym_DOT, - ACTIONS(6574), 1, + ACTIONS(4094), 1, + anon_sym_DASH_GT, + ACTIONS(5227), 1, anon_sym_LPAREN, - ACTIONS(6619), 1, + ACTIONS(5236), 1, anon_sym_LBRACK, - ACTIONS(6625), 1, + ACTIONS(5238), 1, anon_sym_BANG, - ACTIONS(6649), 1, + ACTIONS(6017), 1, anon_sym_switch, - ACTIONS(6663), 1, + ACTIONS(6031), 1, anon_sym_with, - ACTIONS(6737), 1, + ACTIONS(6755), 1, anon_sym_SLASH, - ACTIONS(6739), 1, + ACTIONS(6757), 1, anon_sym_CARET, - ACTIONS(6741), 1, + ACTIONS(6759), 1, anon_sym_PIPE, - ACTIONS(6743), 1, + ACTIONS(6761), 1, anon_sym_AMP, - ACTIONS(6747), 1, + ACTIONS(6765), 1, anon_sym_GT_GT, - ACTIONS(6753), 1, + ACTIONS(6771), 1, anon_sym_DOT_DOT, - ACTIONS(6755), 1, + ACTIONS(6773), 1, anon_sym_AMP_AMP, - ACTIONS(6757), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6759), 1, - anon_sym_QMARK_QMARK, - ACTIONS(6761), 1, + ACTIONS(6775), 1, anon_sym_as, - ACTIONS(6763), 1, + ACTIONS(6777), 1, anon_sym_is, - ACTIONS(6899), 1, + ACTIONS(6855), 1, anon_sym_QMARK, - STATE(3173), 1, + ACTIONS(6857), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6859), 1, + anon_sym_QMARK_QMARK, + STATE(2605), 1, sym_bracketed_argument_list, - STATE(4583), 1, + STATE(3348), 1, sym_argument_list, - ACTIONS(6627), 2, + ACTIONS(5240), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6731), 2, + ACTIONS(6749), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(6733), 2, + ACTIONS(6751), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6735), 2, + ACTIONS(6753), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(6745), 2, + ACTIONS(6763), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(6749), 2, + ACTIONS(6767), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6751), 2, + ACTIONS(6769), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5858), 5, - sym_interpolation_close_brace, - anon_sym_COLON, - anon_sym_COMMA, + ACTIONS(5709), 5, + anon_sym_EQ_GT, + anon_sym_when, anon_sym_and, anon_sym_or, - STATE(4421), 9, + anon_sym_into, + STATE(4360), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -581348,7 +575900,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [61698] = 13, + [56421] = 35, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -581369,59 +575921,81 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - STATE(4422), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - ACTIONS(3675), 11, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, + ACTIONS(4753), 1, + anon_sym_LPAREN, + ACTIONS(4792), 1, + anon_sym_DOT, + ACTIONS(4794), 1, + anon_sym_DASH_GT, + ACTIONS(4819), 1, + anon_sym_LBRACK, + ACTIONS(4823), 1, anon_sym_BANG, - anon_sym_PLUS, - anon_sym_DASH, + ACTIONS(6264), 1, + anon_sym_switch, + ACTIONS(6278), 1, + anon_sym_with, + ACTIONS(6327), 1, + anon_sym_as, + ACTIONS(6817), 1, + anon_sym_DOT_DOT, + ACTIONS(6829), 1, anon_sym_SLASH, - anon_sym_PIPE, + ACTIONS(6863), 1, anon_sym_AMP, + ACTIONS(6867), 1, anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(3677), 29, - sym_interpolation_close_brace, - anon_sym_LBRACK, - anon_sym_COLON, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACE, + ACTIONS(6873), 1, + anon_sym_is, + STATE(2419), 1, + sym_bracketed_argument_list, + STATE(2958), 1, + sym_argument_list, + ACTIONS(4825), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + ACTIONS(5739), 2, + anon_sym_QMARK, + anon_sym_PIPE, + ACTIONS(6825), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6827), 2, anon_sym_STAR, anon_sym_PERCENT, - anon_sym_CARET, + ACTIONS(6861), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(6865), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, + ACTIONS(6869), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + ACTIONS(6871), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - anon_sym_switch, - anon_sym_DOT_DOT, - anon_sym_and, - anon_sym_or, + ACTIONS(5737), 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, - anon_sym_as, - anon_sym_is, - anon_sym_DASH_GT, - anon_sym_with, - [61784] = 40, + STATE(4361), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + [56551] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -581442,76 +576016,76 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4075), 1, + ACTIONS(4092), 1, anon_sym_DOT, - ACTIONS(4077), 1, + ACTIONS(4094), 1, anon_sym_DASH_GT, - ACTIONS(5247), 1, + ACTIONS(5227), 1, anon_sym_LPAREN, - ACTIONS(5283), 1, + ACTIONS(5236), 1, anon_sym_LBRACK, - ACTIONS(5285), 1, + ACTIONS(5238), 1, anon_sym_BANG, - ACTIONS(6147), 1, + ACTIONS(6017), 1, anon_sym_switch, - ACTIONS(6161), 1, + ACTIONS(6031), 1, anon_sym_with, - ACTIONS(6819), 1, - anon_sym_DOT_DOT, - ACTIONS(6835), 1, - anon_sym_QMARK, - ACTIONS(6841), 1, + ACTIONS(6755), 1, anon_sym_SLASH, - ACTIONS(6843), 1, + ACTIONS(6757), 1, anon_sym_CARET, - ACTIONS(6845), 1, + ACTIONS(6759), 1, anon_sym_PIPE, - ACTIONS(6847), 1, + ACTIONS(6761), 1, anon_sym_AMP, - ACTIONS(6851), 1, + ACTIONS(6765), 1, anon_sym_GT_GT, - ACTIONS(6857), 1, + ACTIONS(6771), 1, + anon_sym_DOT_DOT, + ACTIONS(6773), 1, anon_sym_AMP_AMP, - ACTIONS(6859), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6861), 1, - anon_sym_QMARK_QMARK, - ACTIONS(6863), 1, + ACTIONS(6775), 1, anon_sym_as, - ACTIONS(6865), 1, + ACTIONS(6777), 1, anon_sym_is, - STATE(2613), 1, + ACTIONS(6855), 1, + anon_sym_QMARK, + ACTIONS(6857), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6859), 1, + anon_sym_QMARK_QMARK, + STATE(2605), 1, sym_bracketed_argument_list, - STATE(3259), 1, + STATE(3348), 1, sym_argument_list, - ACTIONS(5287), 2, + ACTIONS(5240), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6833), 2, + ACTIONS(6749), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(6837), 2, + ACTIONS(6751), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6839), 2, + ACTIONS(6753), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(6849), 2, + ACTIONS(6763), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(6853), 2, + ACTIONS(6767), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6855), 2, + ACTIONS(6769), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5777), 5, + ACTIONS(5865), 5, anon_sym_EQ_GT, anon_sym_when, anon_sym_and, anon_sym_or, anon_sym_into, - STATE(4423), 9, + STATE(4362), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -581521,7 +576095,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [61924] = 13, + [56691] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -581542,7 +576116,76 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - STATE(4424), 9, + ACTIONS(4753), 1, + anon_sym_LPAREN, + ACTIONS(4792), 1, + anon_sym_DOT, + ACTIONS(4794), 1, + anon_sym_DASH_GT, + ACTIONS(4819), 1, + anon_sym_LBRACK, + ACTIONS(4823), 1, + anon_sym_BANG, + ACTIONS(6264), 1, + anon_sym_switch, + ACTIONS(6278), 1, + anon_sym_with, + ACTIONS(6327), 1, + anon_sym_as, + ACTIONS(6817), 1, + anon_sym_DOT_DOT, + ACTIONS(6829), 1, + anon_sym_SLASH, + ACTIONS(6863), 1, + anon_sym_AMP, + ACTIONS(6867), 1, + anon_sym_GT_GT, + ACTIONS(6873), 1, + anon_sym_is, + ACTIONS(6875), 1, + anon_sym_QMARK, + ACTIONS(6877), 1, + anon_sym_CARET, + ACTIONS(6879), 1, + anon_sym_PIPE, + ACTIONS(6881), 1, + anon_sym_AMP_AMP, + ACTIONS(6883), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6885), 1, + anon_sym_QMARK_QMARK, + STATE(2419), 1, + sym_bracketed_argument_list, + STATE(2958), 1, + sym_argument_list, + ACTIONS(4825), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6825), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6827), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(6861), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(6865), 2, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + ACTIONS(6869), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6871), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(5709), 5, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_into, + STATE(4363), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -581552,49 +576195,104 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(3671), 11, - anon_sym_LT, - anon_sym_GT, + [56831] = 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(4427), 1, + anon_sym_DOT, + ACTIONS(4429), 1, + anon_sym_DASH_GT, + ACTIONS(5739), 1, anon_sym_QMARK, + ACTIONS(6557), 1, + anon_sym_LPAREN, + ACTIONS(6607), 1, + anon_sym_LBRACK, + ACTIONS(6613), 1, anon_sym_BANG, - anon_sym_PLUS, - anon_sym_DASH, + ACTIONS(6637), 1, + anon_sym_switch, + ACTIONS(6651), 1, + anon_sym_with, + ACTIONS(6743), 1, + anon_sym_as, + ACTIONS(6837), 1, anon_sym_SLASH, - anon_sym_PIPE, + ACTIONS(6839), 1, + anon_sym_CARET, + ACTIONS(6841), 1, anon_sym_AMP, + ACTIONS(6845), 1, anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(3673), 29, - sym_interpolation_close_brace, - anon_sym_LBRACK, - anon_sym_COLON, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACE, + ACTIONS(6851), 1, + anon_sym_DOT_DOT, + ACTIONS(6853), 1, + anon_sym_is, + ACTIONS(6887), 1, + anon_sym_PIPE, + STATE(3188), 1, + sym_bracketed_argument_list, + STATE(4584), 1, + sym_argument_list, + ACTIONS(6615), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + ACTIONS(6831), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(6833), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6835), 2, anon_sym_STAR, anon_sym_PERCENT, - anon_sym_CARET, + ACTIONS(6843), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, + ACTIONS(6847), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + ACTIONS(6849), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - anon_sym_switch, - anon_sym_DOT_DOT, + ACTIONS(5737), 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, - [62010] = 22, + STATE(4364), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + [56965] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -581615,36 +576313,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4755), 1, - anon_sym_DASH_GT, - ACTIONS(4804), 1, - anon_sym_LPAREN, - ACTIONS(4808), 1, - anon_sym_DOT, - ACTIONS(4835), 1, - anon_sym_LBRACK, - ACTIONS(4839), 1, - anon_sym_BANG, - ACTIONS(6891), 1, - anon_sym_DOT_DOT, - STATE(2433), 1, - sym_bracketed_argument_list, - STATE(3035), 1, - sym_argument_list, - ACTIONS(4841), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5733), 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(4425), 9, + STATE(4365), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -581654,11 +576323,27 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5731), 21, + ACTIONS(3988), 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(3990), 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, @@ -581669,14 +576354,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, - [62114] = 13, + [57051] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -581697,7 +576386,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - STATE(4426), 9, + STATE(4366), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -581707,7 +576396,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(3654), 11, + ACTIONS(4865), 11, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, @@ -581719,7 +576408,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT, - ACTIONS(3656), 29, + ACTIONS(4863), 29, sym_interpolation_close_brace, anon_sym_LBRACK, anon_sym_COLON, @@ -581749,7 +576438,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, anon_sym_DASH_GT, anon_sym_with, - [62200] = 40, + [57137] = 33, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -581770,76 +576459,57 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4755), 1, - anon_sym_DASH_GT, - ACTIONS(4804), 1, + ACTIONS(4753), 1, anon_sym_LPAREN, - ACTIONS(4808), 1, + ACTIONS(4792), 1, anon_sym_DOT, - ACTIONS(4835), 1, + ACTIONS(4794), 1, + anon_sym_DASH_GT, + ACTIONS(4819), 1, anon_sym_LBRACK, - ACTIONS(4839), 1, + ACTIONS(4823), 1, anon_sym_BANG, - ACTIONS(6293), 1, + ACTIONS(6264), 1, anon_sym_switch, - ACTIONS(6307), 1, + ACTIONS(6278), 1, anon_sym_with, - ACTIONS(6393), 1, + ACTIONS(6327), 1, anon_sym_as, - ACTIONS(6875), 1, + ACTIONS(6817), 1, + anon_sym_DOT_DOT, + ACTIONS(6829), 1, anon_sym_SLASH, - ACTIONS(6877), 1, - anon_sym_CARET, - ACTIONS(6879), 1, - anon_sym_PIPE, - ACTIONS(6881), 1, - anon_sym_AMP, - ACTIONS(6885), 1, + ACTIONS(6867), 1, anon_sym_GT_GT, - ACTIONS(6891), 1, - anon_sym_DOT_DOT, - ACTIONS(6893), 1, + ACTIONS(6873), 1, anon_sym_is, - ACTIONS(6897), 1, - anon_sym_AMP_AMP, - ACTIONS(6901), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6903), 1, - anon_sym_QMARK_QMARK, - ACTIONS(6917), 1, - anon_sym_QMARK, - STATE(2433), 1, + STATE(2419), 1, sym_bracketed_argument_list, - STATE(3035), 1, + STATE(2958), 1, sym_argument_list, - ACTIONS(4841), 2, + ACTIONS(4825), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6869), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(6871), 2, + ACTIONS(6825), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6873), 2, + ACTIONS(6827), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(6883), 2, + ACTIONS(6861), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(6865), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(6887), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(6889), 2, + ACTIONS(6871), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5864), 5, - anon_sym_COLON, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_into, - STATE(4427), 9, + ACTIONS(5739), 3, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_AMP, + STATE(4367), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -581849,7 +576519,19 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [62340] = 35, + ACTIONS(5737), 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, + [57263] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -581870,106 +576552,76 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4443), 1, - anon_sym_DASH_GT, - ACTIONS(4533), 1, + ACTIONS(4092), 1, anon_sym_DOT, - ACTIONS(6574), 1, + ACTIONS(4094), 1, + anon_sym_DASH_GT, + ACTIONS(5227), 1, anon_sym_LPAREN, - ACTIONS(6619), 1, + ACTIONS(5236), 1, anon_sym_LBRACK, - ACTIONS(6625), 1, + ACTIONS(5238), 1, anon_sym_BANG, - ACTIONS(6649), 1, + ACTIONS(6017), 1, anon_sym_switch, - ACTIONS(6663), 1, + ACTIONS(6031), 1, anon_sym_with, - ACTIONS(6737), 1, + ACTIONS(6755), 1, anon_sym_SLASH, - ACTIONS(6743), 1, + ACTIONS(6757), 1, + anon_sym_CARET, + ACTIONS(6759), 1, + anon_sym_PIPE, + ACTIONS(6761), 1, anon_sym_AMP, - ACTIONS(6747), 1, + ACTIONS(6765), 1, anon_sym_GT_GT, - ACTIONS(6753), 1, + ACTIONS(6771), 1, anon_sym_DOT_DOT, - ACTIONS(6761), 1, + ACTIONS(6773), 1, + anon_sym_AMP_AMP, + ACTIONS(6775), 1, anon_sym_as, - ACTIONS(6763), 1, + ACTIONS(6777), 1, anon_sym_is, - STATE(3173), 1, + ACTIONS(6855), 1, + anon_sym_QMARK, + ACTIONS(6857), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6859), 1, + anon_sym_QMARK_QMARK, + STATE(2605), 1, sym_bracketed_argument_list, - STATE(4583), 1, + STATE(3348), 1, sym_argument_list, - ACTIONS(5664), 2, - anon_sym_QMARK, - anon_sym_PIPE, - ACTIONS(6627), 2, + ACTIONS(5240), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6731), 2, + ACTIONS(6749), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(6733), 2, + ACTIONS(6751), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6735), 2, + ACTIONS(6753), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(6745), 2, + ACTIONS(6763), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(6749), 2, + ACTIONS(6767), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6751), 2, + ACTIONS(6769), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5660), 9, - sym_interpolation_close_brace, - anon_sym_COLON, - anon_sym_COMMA, - anon_sym_CARET, + ACTIONS(5801), 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, - 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, - [62470] = 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(6927), 1, anon_sym_into, - STATE(4495), 1, - aux_sym__query_body_repeat2, - STATE(4429), 9, + STATE(4368), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -581979,47 +576631,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5960), 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(5958), 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, - 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, - [62560] = 34, + [57403] = 17, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -582040,70 +576652,24 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4443), 1, - anon_sym_DASH_GT, - ACTIONS(4533), 1, - anon_sym_DOT, - ACTIONS(6574), 1, - anon_sym_LPAREN, - ACTIONS(6619), 1, + ACTIONS(6601), 1, anon_sym_LBRACK, - ACTIONS(6625), 1, - anon_sym_BANG, - ACTIONS(6649), 1, - anon_sym_switch, - ACTIONS(6663), 1, - anon_sym_with, - ACTIONS(6737), 1, - anon_sym_SLASH, - ACTIONS(6747), 1, - anon_sym_GT_GT, - ACTIONS(6753), 1, - anon_sym_DOT_DOT, - ACTIONS(6761), 1, - anon_sym_as, - ACTIONS(6763), 1, - anon_sym_is, - STATE(3173), 1, - sym_bracketed_argument_list, - STATE(4583), 1, - sym_argument_list, - ACTIONS(6627), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6731), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(6733), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(6735), 2, + ACTIONS(6603), 1, anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(6745), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - ACTIONS(6749), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(6751), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(5664), 3, + ACTIONS(6705), 1, anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_AMP, - ACTIONS(5660), 9, - sym_interpolation_close_brace, - anon_sym_COLON, + ACTIONS(6889), 1, + anon_sym_DOT, + ACTIONS(3963), 8, + anon_sym_SEMI, 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(4430), 9, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, + STATE(4369), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -582113,7 +576679,36 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [62688] = 40, + ACTIONS(3961), 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, + [57497] = 16, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -582134,76 +576729,23 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4755), 1, - anon_sym_DASH_GT, - ACTIONS(4804), 1, - anon_sym_LPAREN, - ACTIONS(4808), 1, - anon_sym_DOT, - ACTIONS(4835), 1, - anon_sym_LBRACK, - ACTIONS(4839), 1, - anon_sym_BANG, - ACTIONS(6293), 1, - anon_sym_switch, - ACTIONS(6307), 1, - anon_sym_with, - ACTIONS(6393), 1, - anon_sym_as, - ACTIONS(6875), 1, - anon_sym_SLASH, - ACTIONS(6877), 1, - anon_sym_CARET, - ACTIONS(6879), 1, - anon_sym_PIPE, - ACTIONS(6881), 1, - anon_sym_AMP, - ACTIONS(6885), 1, - anon_sym_GT_GT, ACTIONS(6891), 1, - anon_sym_DOT_DOT, - ACTIONS(6893), 1, - anon_sym_is, - ACTIONS(6897), 1, - anon_sym_AMP_AMP, - ACTIONS(6901), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6903), 1, - anon_sym_QMARK_QMARK, - ACTIONS(6917), 1, - anon_sym_QMARK, - STATE(2433), 1, - sym_bracketed_argument_list, - STATE(3035), 1, - sym_argument_list, - ACTIONS(4841), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6869), 2, anon_sym_LT, - anon_sym_GT, - ACTIONS(6871), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(6873), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(6883), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - ACTIONS(6887), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(6889), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(5072), 5, - anon_sym_COLON, + ACTIONS(6893), 1, + anon_sym_COLON_COLON, + STATE(2171), 1, + sym_type_argument_list, + ACTIONS(3640), 9, + anon_sym_SEMI, anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_LPAREN, anon_sym_RPAREN, + anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_into, - STATE(4431), 9, + anon_sym_DOT, + anon_sym_EQ_GT, + STATE(4370), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -582213,7 +576755,36 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [62828] = 40, + ACTIONS(3638), 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, + [57589] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -582234,76 +576805,76 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4755), 1, + ACTIONS(4092), 1, + anon_sym_DOT, + ACTIONS(4094), 1, anon_sym_DASH_GT, - ACTIONS(4804), 1, + ACTIONS(5227), 1, anon_sym_LPAREN, - ACTIONS(4808), 1, - anon_sym_DOT, - ACTIONS(4835), 1, + ACTIONS(5236), 1, anon_sym_LBRACK, - ACTIONS(4839), 1, + ACTIONS(5238), 1, anon_sym_BANG, - ACTIONS(6293), 1, + ACTIONS(6017), 1, anon_sym_switch, - ACTIONS(6307), 1, + ACTIONS(6031), 1, anon_sym_with, - ACTIONS(6393), 1, - anon_sym_as, - ACTIONS(6875), 1, + ACTIONS(6755), 1, anon_sym_SLASH, - ACTIONS(6877), 1, + ACTIONS(6757), 1, anon_sym_CARET, - ACTIONS(6879), 1, + ACTIONS(6759), 1, anon_sym_PIPE, - ACTIONS(6881), 1, + ACTIONS(6761), 1, anon_sym_AMP, - ACTIONS(6885), 1, + ACTIONS(6765), 1, anon_sym_GT_GT, - ACTIONS(6891), 1, + ACTIONS(6771), 1, anon_sym_DOT_DOT, - ACTIONS(6893), 1, - anon_sym_is, - ACTIONS(6897), 1, + ACTIONS(6773), 1, anon_sym_AMP_AMP, - ACTIONS(6901), 1, + ACTIONS(6775), 1, + anon_sym_as, + ACTIONS(6777), 1, + anon_sym_is, + ACTIONS(6855), 1, + anon_sym_QMARK, + ACTIONS(6857), 1, anon_sym_PIPE_PIPE, - ACTIONS(6903), 1, + ACTIONS(6859), 1, anon_sym_QMARK_QMARK, - ACTIONS(6917), 1, - anon_sym_QMARK, - STATE(2433), 1, + STATE(2605), 1, sym_bracketed_argument_list, - STATE(3035), 1, + STATE(3348), 1, sym_argument_list, - ACTIONS(4841), 2, + ACTIONS(5240), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6869), 2, + ACTIONS(6749), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(6871), 2, + ACTIONS(6751), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6873), 2, + ACTIONS(6753), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(6883), 2, + ACTIONS(6763), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(6887), 2, + ACTIONS(6767), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6889), 2, + ACTIONS(6769), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5882), 5, - anon_sym_COLON, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_RBRACE, + ACTIONS(5855), 5, + anon_sym_EQ_GT, + anon_sym_when, + anon_sym_and, + anon_sym_or, anon_sym_into, - STATE(4432), 9, + STATE(4371), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -582313,7 +576884,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [62968] = 33, + [57729] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -582334,57 +576905,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4443), 1, - anon_sym_DASH_GT, - ACTIONS(4533), 1, - anon_sym_DOT, - ACTIONS(6574), 1, - anon_sym_LPAREN, - ACTIONS(6619), 1, - anon_sym_LBRACK, - ACTIONS(6625), 1, - anon_sym_BANG, - ACTIONS(6649), 1, - anon_sym_switch, - ACTIONS(6663), 1, - anon_sym_with, - ACTIONS(6737), 1, - anon_sym_SLASH, - ACTIONS(6747), 1, - anon_sym_GT_GT, - ACTIONS(6753), 1, - anon_sym_DOT_DOT, - ACTIONS(6761), 1, - anon_sym_as, - ACTIONS(6763), 1, - anon_sym_is, - STATE(3173), 1, - sym_bracketed_argument_list, - STATE(4583), 1, - sym_argument_list, - ACTIONS(6627), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6731), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(6733), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(6735), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(6745), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - ACTIONS(6751), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(5664), 3, - anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_AMP, - STATE(4433), 9, + STATE(4372), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -582394,19 +576915,49 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5660), 11, + ACTIONS(3655), 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(3657), 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, - [63094] = 40, + anon_sym_into, + anon_sym_as, + anon_sym_is, + anon_sym_DASH_GT, + anon_sym_with, + [57815] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -582427,76 +576978,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4443), 1, - anon_sym_DASH_GT, - ACTIONS(4533), 1, - anon_sym_DOT, - ACTIONS(6574), 1, - anon_sym_LPAREN, - ACTIONS(6619), 1, + ACTIONS(6601), 1, anon_sym_LBRACK, - ACTIONS(6625), 1, - anon_sym_BANG, - ACTIONS(6649), 1, - anon_sym_switch, - ACTIONS(6663), 1, - anon_sym_with, - ACTIONS(6737), 1, - anon_sym_SLASH, - ACTIONS(6739), 1, - anon_sym_CARET, - ACTIONS(6741), 1, - anon_sym_PIPE, - ACTIONS(6743), 1, - anon_sym_AMP, - ACTIONS(6747), 1, - anon_sym_GT_GT, - ACTIONS(6753), 1, - anon_sym_DOT_DOT, - ACTIONS(6755), 1, - anon_sym_AMP_AMP, - ACTIONS(6757), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6759), 1, - anon_sym_QMARK_QMARK, - ACTIONS(6761), 1, - anon_sym_as, - ACTIONS(6763), 1, - anon_sym_is, - ACTIONS(6899), 1, + ACTIONS(6705), 1, anon_sym_QMARK, - STATE(3173), 1, - sym_bracketed_argument_list, - STATE(4583), 1, - sym_argument_list, - ACTIONS(6627), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6731), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(6733), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(6735), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(6745), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - ACTIONS(6749), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(6751), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(5864), 5, - sym_interpolation_close_brace, - anon_sym_COLON, - anon_sym_COMMA, - anon_sym_and, - anon_sym_or, - STATE(4434), 9, + STATE(4373), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -582506,7 +576992,47 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [63234] = 40, + ACTIONS(3963), 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(3961), 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, + [57905] = 43, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -582527,76 +577053,79 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4443), 1, - anon_sym_DASH_GT, - ACTIONS(4533), 1, + ACTIONS(2675), 1, + aux_sym_preproc_else_token1, + ACTIONS(2677), 1, + aux_sym_preproc_elif_token1, + ACTIONS(4042), 1, anon_sym_DOT, - ACTIONS(6574), 1, + ACTIONS(4044), 1, + anon_sym_DASH_GT, + ACTIONS(5257), 1, anon_sym_LPAREN, - ACTIONS(6619), 1, - anon_sym_LBRACK, - ACTIONS(6625), 1, + ACTIONS(5302), 1, anon_sym_BANG, - ACTIONS(6649), 1, + ACTIONS(5549), 1, + anon_sym_LBRACK, + ACTIONS(6355), 1, anon_sym_switch, - ACTIONS(6663), 1, + ACTIONS(6369), 1, anon_sym_with, - ACTIONS(6737), 1, + ACTIONS(6781), 1, + anon_sym_QMARK, + ACTIONS(6787), 1, anon_sym_SLASH, - ACTIONS(6739), 1, + ACTIONS(6789), 1, anon_sym_CARET, - ACTIONS(6741), 1, + ACTIONS(6791), 1, anon_sym_PIPE, - ACTIONS(6743), 1, + ACTIONS(6793), 1, anon_sym_AMP, - ACTIONS(6747), 1, + ACTIONS(6797), 1, anon_sym_GT_GT, - ACTIONS(6753), 1, + ACTIONS(6803), 1, anon_sym_DOT_DOT, - ACTIONS(6755), 1, + ACTIONS(6805), 1, anon_sym_AMP_AMP, - ACTIONS(6757), 1, + ACTIONS(6807), 1, anon_sym_PIPE_PIPE, - ACTIONS(6759), 1, + ACTIONS(6809), 1, anon_sym_QMARK_QMARK, - ACTIONS(6761), 1, + ACTIONS(6811), 1, anon_sym_as, - ACTIONS(6763), 1, + ACTIONS(6813), 1, anon_sym_is, - ACTIONS(6899), 1, - anon_sym_QMARK, - STATE(3173), 1, + ACTIONS(6895), 1, + aux_sym_preproc_if_token3, + STATE(2467), 1, sym_bracketed_argument_list, - STATE(4583), 1, + STATE(3381), 1, sym_argument_list, - ACTIONS(6627), 2, + ACTIONS(5304), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6731), 2, + ACTIONS(6779), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(6733), 2, + ACTIONS(6783), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6735), 2, + ACTIONS(6785), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(6745), 2, + ACTIONS(6795), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(6749), 2, + ACTIONS(6799), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6751), 2, + ACTIONS(6801), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5072), 5, - sym_interpolation_close_brace, - anon_sym_COLON, - anon_sym_COMMA, - anon_sym_and, - anon_sym_or, - STATE(4435), 9, + STATE(7417), 2, + sym_preproc_else_in_expression, + sym_preproc_elif_in_expression, + STATE(4374), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -582606,7 +577135,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [63374] = 40, + [58051] = 37, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -582627,76 +577156,73 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4443), 1, - anon_sym_DASH_GT, - ACTIONS(4533), 1, - anon_sym_DOT, - ACTIONS(6574), 1, + ACTIONS(4753), 1, anon_sym_LPAREN, - ACTIONS(6619), 1, + ACTIONS(4792), 1, + anon_sym_DOT, + ACTIONS(4794), 1, + anon_sym_DASH_GT, + ACTIONS(4819), 1, anon_sym_LBRACK, - ACTIONS(6625), 1, + ACTIONS(4823), 1, anon_sym_BANG, - ACTIONS(6649), 1, + ACTIONS(5739), 1, + anon_sym_QMARK, + ACTIONS(6264), 1, anon_sym_switch, - ACTIONS(6663), 1, + ACTIONS(6278), 1, anon_sym_with, - ACTIONS(6737), 1, + ACTIONS(6327), 1, + anon_sym_as, + ACTIONS(6817), 1, + anon_sym_DOT_DOT, + ACTIONS(6829), 1, anon_sym_SLASH, - ACTIONS(6739), 1, - anon_sym_CARET, - ACTIONS(6741), 1, - anon_sym_PIPE, - ACTIONS(6743), 1, + ACTIONS(6863), 1, anon_sym_AMP, - ACTIONS(6747), 1, + ACTIONS(6867), 1, anon_sym_GT_GT, - ACTIONS(6753), 1, - anon_sym_DOT_DOT, - ACTIONS(6755), 1, - anon_sym_AMP_AMP, - ACTIONS(6757), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6759), 1, - anon_sym_QMARK_QMARK, - ACTIONS(6761), 1, - anon_sym_as, - ACTIONS(6763), 1, + ACTIONS(6873), 1, anon_sym_is, - ACTIONS(6899), 1, - anon_sym_QMARK, - STATE(3173), 1, + ACTIONS(6877), 1, + anon_sym_CARET, + ACTIONS(6879), 1, + anon_sym_PIPE, + STATE(2419), 1, sym_bracketed_argument_list, - STATE(4583), 1, + STATE(2958), 1, sym_argument_list, - ACTIONS(6627), 2, + ACTIONS(4825), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6731), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(6733), 2, + ACTIONS(6825), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6735), 2, + ACTIONS(6827), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(6745), 2, + ACTIONS(6861), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(6865), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(6749), 2, + ACTIONS(6869), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6751), 2, + ACTIONS(6871), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5882), 5, - sym_interpolation_close_brace, + ACTIONS(5737), 8, anon_sym_COLON, anon_sym_COMMA, - anon_sym_and, - anon_sym_or, - STATE(4436), 9, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, + anon_sym_into, + STATE(4375), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -582706,7 +577232,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [63514] = 35, + [58185] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -582727,71 +577253,76 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4075), 1, + ACTIONS(4092), 1, anon_sym_DOT, - ACTIONS(4077), 1, + ACTIONS(4094), 1, anon_sym_DASH_GT, - ACTIONS(5247), 1, + ACTIONS(5227), 1, anon_sym_LPAREN, - ACTIONS(5283), 1, + ACTIONS(5236), 1, anon_sym_LBRACK, - ACTIONS(5285), 1, + ACTIONS(5238), 1, anon_sym_BANG, - ACTIONS(6147), 1, + ACTIONS(6017), 1, anon_sym_switch, - ACTIONS(6161), 1, + ACTIONS(6031), 1, anon_sym_with, - ACTIONS(6771), 1, - anon_sym_SLASH, ACTIONS(6775), 1, - anon_sym_GT_GT, - ACTIONS(6777), 1, - anon_sym_DOT_DOT, - ACTIONS(6863), 1, anon_sym_as, - ACTIONS(6931), 1, + ACTIONS(6819), 1, + anon_sym_DOT_DOT, + ACTIONS(6899), 1, + anon_sym_QMARK, + ACTIONS(6905), 1, + anon_sym_SLASH, + ACTIONS(6907), 1, + anon_sym_CARET, + ACTIONS(6909), 1, + anon_sym_PIPE, + ACTIONS(6911), 1, anon_sym_AMP, - ACTIONS(6937), 1, + ACTIONS(6915), 1, + anon_sym_GT_GT, + ACTIONS(6921), 1, + anon_sym_AMP_AMP, + ACTIONS(6923), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6925), 1, + anon_sym_QMARK_QMARK, + ACTIONS(6927), 1, anon_sym_is, - STATE(2613), 1, + STATE(2605), 1, sym_bracketed_argument_list, - STATE(3259), 1, + STATE(3348), 1, sym_argument_list, - ACTIONS(5287), 2, + ACTIONS(5240), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5664), 2, - anon_sym_QMARK, - anon_sym_PIPE, - ACTIONS(6767), 2, + ACTIONS(6897), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(6901), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6769), 2, + ACTIONS(6903), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(6773), 2, + ACTIONS(6913), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(6929), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(6933), 2, + ACTIONS(6917), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6935), 2, + ACTIONS(6919), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5660), 9, + ACTIONS(5652), 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(4437), 9, + STATE(4376), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -582801,7 +577332,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [63644] = 36, + [58325] = 22, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -582822,64 +577353,57 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4075), 1, + ACTIONS(4092), 1, anon_sym_DOT, - ACTIONS(4077), 1, + ACTIONS(4094), 1, anon_sym_DASH_GT, - ACTIONS(5247), 1, + ACTIONS(5227), 1, anon_sym_LPAREN, - ACTIONS(5283), 1, + ACTIONS(5236), 1, anon_sym_LBRACK, - ACTIONS(5285), 1, + ACTIONS(5238), 1, anon_sym_BANG, - ACTIONS(6147), 1, - anon_sym_switch, - ACTIONS(6161), 1, - anon_sym_with, - ACTIONS(6771), 1, - anon_sym_SLASH, - ACTIONS(6775), 1, - anon_sym_GT_GT, - ACTIONS(6777), 1, + ACTIONS(6819), 1, anon_sym_DOT_DOT, - ACTIONS(6863), 1, - anon_sym_as, - ACTIONS(6931), 1, - anon_sym_AMP, - ACTIONS(6937), 1, - anon_sym_is, - ACTIONS(6939), 1, - anon_sym_CARET, - STATE(2613), 1, + STATE(2605), 1, sym_bracketed_argument_list, - STATE(3259), 1, + STATE(3348), 1, sym_argument_list, - ACTIONS(5287), 2, + ACTIONS(5240), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5664), 2, + ACTIONS(5743), 9, + anon_sym_LT, + anon_sym_GT, anon_sym_QMARK, - anon_sym_PIPE, - ACTIONS(6767), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6769), 2, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT_GT, + 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(5741), 21, + anon_sym_COLON, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(6773), 2, + anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(6929), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(6933), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6935), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5660), 8, - anon_sym_COLON, + anon_sym_switch, anon_sym_when, anon_sym_and, anon_sym_or, @@ -582887,17 +577411,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_QMARK_QMARK, anon_sym_into, - STATE(4438), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - [63776] = 34, + anon_sym_as, + anon_sym_is, + anon_sym_with, + [58429] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -582918,80 +577435,59 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4075), 1, - anon_sym_DOT, - ACTIONS(4077), 1, - anon_sym_DASH_GT, - ACTIONS(5247), 1, - anon_sym_LPAREN, - ACTIONS(5283), 1, - anon_sym_LBRACK, - ACTIONS(5285), 1, + STATE(4378), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + ACTIONS(3659), 11, + anon_sym_LT, + anon_sym_GT, + anon_sym_QMARK, anon_sym_BANG, - ACTIONS(6147), 1, - anon_sym_switch, - ACTIONS(6161), 1, - anon_sym_with, - ACTIONS(6771), 1, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_SLASH, - ACTIONS(6775), 1, + anon_sym_PIPE, + anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(6777), 1, - anon_sym_DOT_DOT, - ACTIONS(6863), 1, - anon_sym_as, - ACTIONS(6937), 1, - anon_sym_is, - STATE(2613), 1, - sym_bracketed_argument_list, - STATE(3259), 1, - sym_argument_list, - ACTIONS(5287), 2, + anon_sym_DOT, + ACTIONS(3661), 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(6767), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(6769), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(6773), 2, + anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(6929), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(6933), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6935), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5664), 3, - anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_AMP, - ACTIONS(5660), 9, - anon_sym_COLON, - anon_sym_CARET, - 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(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, - [63904] = 33, + anon_sym_as, + anon_sym_is, + anon_sym_DASH_GT, + anon_sym_with, + [58515] = 29, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -583012,57 +577508,49 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4075), 1, + ACTIONS(4092), 1, anon_sym_DOT, - ACTIONS(4077), 1, + ACTIONS(4094), 1, anon_sym_DASH_GT, - ACTIONS(5247), 1, + ACTIONS(5227), 1, anon_sym_LPAREN, - ACTIONS(5283), 1, + ACTIONS(5236), 1, anon_sym_LBRACK, - ACTIONS(5285), 1, + ACTIONS(5238), 1, anon_sym_BANG, - ACTIONS(6147), 1, + ACTIONS(6017), 1, anon_sym_switch, - ACTIONS(6161), 1, + ACTIONS(6031), 1, anon_sym_with, - ACTIONS(6771), 1, + ACTIONS(6819), 1, + anon_sym_DOT_DOT, + ACTIONS(6905), 1, anon_sym_SLASH, - ACTIONS(6775), 1, + ACTIONS(6915), 1, anon_sym_GT_GT, - ACTIONS(6777), 1, - anon_sym_DOT_DOT, - ACTIONS(6863), 1, - anon_sym_as, - ACTIONS(6937), 1, - anon_sym_is, - STATE(2613), 1, + STATE(2605), 1, sym_bracketed_argument_list, - STATE(3259), 1, + STATE(3348), 1, sym_argument_list, - ACTIONS(5287), 2, + ACTIONS(5240), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6767), 2, + ACTIONS(6901), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6769), 2, + ACTIONS(6903), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(6773), 2, + ACTIONS(6913), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(6929), 2, + ACTIONS(5739), 5, anon_sym_LT, anon_sym_GT, - ACTIONS(6935), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(5664), 3, anon_sym_QMARK, anon_sym_PIPE, anon_sym_AMP, - STATE(4440), 9, + STATE(4379), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -583072,11 +577560,13 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5660), 11, + ACTIONS(5737), 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, @@ -583084,7 +577574,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_QMARK_QMARK, anon_sym_into, - [64030] = 37, + anon_sym_as, + anon_sym_is, + [58633] = 38, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -583105,73 +577597,74 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4075), 1, + ACTIONS(4427), 1, anon_sym_DOT, - ACTIONS(4077), 1, + ACTIONS(4429), 1, anon_sym_DASH_GT, - ACTIONS(5247), 1, + ACTIONS(5739), 1, + anon_sym_QMARK, + ACTIONS(6557), 1, anon_sym_LPAREN, - ACTIONS(5283), 1, + ACTIONS(6607), 1, anon_sym_LBRACK, - ACTIONS(5285), 1, + ACTIONS(6613), 1, anon_sym_BANG, - ACTIONS(5664), 1, - anon_sym_QMARK, - ACTIONS(6147), 1, + ACTIONS(6637), 1, anon_sym_switch, - ACTIONS(6161), 1, + ACTIONS(6651), 1, anon_sym_with, - ACTIONS(6771), 1, + ACTIONS(6743), 1, + anon_sym_as, + ACTIONS(6837), 1, anon_sym_SLASH, - ACTIONS(6775), 1, + ACTIONS(6839), 1, + anon_sym_CARET, + ACTIONS(6841), 1, + anon_sym_AMP, + ACTIONS(6845), 1, anon_sym_GT_GT, - ACTIONS(6777), 1, + ACTIONS(6851), 1, anon_sym_DOT_DOT, - ACTIONS(6863), 1, - anon_sym_as, - ACTIONS(6931), 1, - anon_sym_AMP, - ACTIONS(6937), 1, + ACTIONS(6853), 1, anon_sym_is, - ACTIONS(6939), 1, - anon_sym_CARET, - ACTIONS(6941), 1, + ACTIONS(6887), 1, anon_sym_PIPE, - STATE(2613), 1, + ACTIONS(6929), 1, + anon_sym_AMP_AMP, + STATE(3188), 1, sym_bracketed_argument_list, - STATE(3259), 1, + STATE(4584), 1, sym_argument_list, - ACTIONS(5287), 2, + ACTIONS(6615), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6767), 2, + ACTIONS(6831), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(6833), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6769), 2, + ACTIONS(6835), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(6773), 2, + ACTIONS(6843), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(6929), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(6933), 2, + ACTIONS(6847), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6935), 2, + ACTIONS(6849), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5660), 8, + ACTIONS(5737), 7, + sym_interpolation_close_brace, anon_sym_COLON, - anon_sym_when, + 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(4441), 9, + STATE(4380), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -583181,7 +577674,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [64164] = 38, + [58769] = 27, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -583202,84 +577695,73 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4075), 1, + ACTIONS(4092), 1, anon_sym_DOT, - ACTIONS(4077), 1, + ACTIONS(4094), 1, anon_sym_DASH_GT, - ACTIONS(5247), 1, + ACTIONS(5227), 1, anon_sym_LPAREN, - ACTIONS(5283), 1, + ACTIONS(5236), 1, anon_sym_LBRACK, - ACTIONS(5285), 1, + ACTIONS(5238), 1, anon_sym_BANG, - ACTIONS(5664), 1, - anon_sym_QMARK, - ACTIONS(6147), 1, + ACTIONS(6017), 1, anon_sym_switch, - ACTIONS(6161), 1, + ACTIONS(6031), 1, anon_sym_with, - ACTIONS(6771), 1, + ACTIONS(6755), 1, anon_sym_SLASH, - ACTIONS(6775), 1, - anon_sym_GT_GT, - ACTIONS(6777), 1, + ACTIONS(6771), 1, anon_sym_DOT_DOT, - ACTIONS(6863), 1, - anon_sym_as, - ACTIONS(6931), 1, - anon_sym_AMP, - ACTIONS(6937), 1, - anon_sym_is, - ACTIONS(6939), 1, - anon_sym_CARET, - ACTIONS(6941), 1, - anon_sym_PIPE, - ACTIONS(6943), 1, - anon_sym_AMP_AMP, - STATE(2613), 1, + STATE(2605), 1, sym_bracketed_argument_list, - STATE(3259), 1, + STATE(3348), 1, sym_argument_list, - ACTIONS(5287), 2, + ACTIONS(5240), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6767), 2, + ACTIONS(6751), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6769), 2, + ACTIONS(6753), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(6773), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - ACTIONS(6929), 2, + ACTIONS(5739), 6, anon_sym_LT, anon_sym_GT, - ACTIONS(6933), 2, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT_GT, + 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, + ACTIONS(5737), 17, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6935), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5660), 7, - anon_sym_COLON, + 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(4442), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - [64300] = 40, + anon_sym_as, + anon_sym_is, + [58883] = 22, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -583300,76 +577782,35 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4075), 1, - anon_sym_DOT, - ACTIONS(4077), 1, - anon_sym_DASH_GT, - ACTIONS(5247), 1, - anon_sym_LPAREN, - ACTIONS(5283), 1, + ACTIONS(25), 1, + sym__identifier_token, + ACTIONS(6139), 1, + anon_sym_ref, + STATE(2168), 1, + sym__reserved_identifier, + STATE(2170), 1, + sym_generic_name, + STATE(2331), 1, + sym_ref_type, + STATE(2339), 1, + sym__scoped_base_type, + STATE(4370), 1, + sym_identifier, + STATE(5130), 1, + sym__name, + STATE(4068), 3, + sym_alias_qualified_name, + sym__simple_name, + sym_qualified_name, + ACTIONS(3429), 7, anon_sym_LBRACK, - ACTIONS(5285), 1, - anon_sym_BANG, - ACTIONS(5664), 1, + anon_sym_RPAREN, + anon_sym_LT, anon_sym_QMARK, - ACTIONS(6147), 1, - anon_sym_switch, - ACTIONS(6161), 1, - anon_sym_with, - ACTIONS(6771), 1, - anon_sym_SLASH, - ACTIONS(6775), 1, - anon_sym_GT_GT, - ACTIONS(6777), 1, - anon_sym_DOT_DOT, - ACTIONS(6863), 1, - anon_sym_as, - ACTIONS(6931), 1, - anon_sym_AMP, - ACTIONS(6937), 1, - anon_sym_is, - ACTIONS(6939), 1, - anon_sym_CARET, - ACTIONS(6941), 1, - anon_sym_PIPE, - ACTIONS(6943), 1, - anon_sym_AMP_AMP, - ACTIONS(6945), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6947), 1, - anon_sym_QMARK_QMARK, - STATE(2613), 1, - sym_bracketed_argument_list, - STATE(3259), 1, - sym_argument_list, - ACTIONS(5287), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6767), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(6769), 2, anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(6773), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - ACTIONS(6929), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(6933), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(6935), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(5660), 5, - anon_sym_COLON, - anon_sym_when, - anon_sym_and, - anon_sym_or, - anon_sym_into, - STATE(4443), 9, + anon_sym_DOT, + anon_sym_COLON_COLON, + STATE(4382), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -583379,7 +577820,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [64440] = 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, + [58987] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -583400,76 +577864,76 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4075), 1, + ACTIONS(4753), 1, + anon_sym_LPAREN, + ACTIONS(4792), 1, anon_sym_DOT, - ACTIONS(4077), 1, + ACTIONS(4794), 1, anon_sym_DASH_GT, - ACTIONS(5247), 1, - anon_sym_LPAREN, - ACTIONS(5283), 1, + ACTIONS(4819), 1, anon_sym_LBRACK, - ACTIONS(5285), 1, + ACTIONS(4823), 1, anon_sym_BANG, - ACTIONS(6147), 1, + ACTIONS(6264), 1, anon_sym_switch, - ACTIONS(6161), 1, + ACTIONS(6278), 1, anon_sym_with, - ACTIONS(6819), 1, + ACTIONS(6327), 1, + anon_sym_as, + ACTIONS(6817), 1, anon_sym_DOT_DOT, - ACTIONS(6835), 1, - anon_sym_QMARK, - ACTIONS(6841), 1, + ACTIONS(6829), 1, anon_sym_SLASH, - ACTIONS(6843), 1, - anon_sym_CARET, - ACTIONS(6845), 1, - anon_sym_PIPE, - ACTIONS(6847), 1, + ACTIONS(6863), 1, anon_sym_AMP, - ACTIONS(6851), 1, + ACTIONS(6867), 1, anon_sym_GT_GT, - ACTIONS(6857), 1, + ACTIONS(6873), 1, + anon_sym_is, + ACTIONS(6875), 1, + anon_sym_QMARK, + ACTIONS(6877), 1, + anon_sym_CARET, + ACTIONS(6879), 1, + anon_sym_PIPE, + ACTIONS(6881), 1, anon_sym_AMP_AMP, - ACTIONS(6859), 1, + ACTIONS(6883), 1, anon_sym_PIPE_PIPE, - ACTIONS(6861), 1, + ACTIONS(6885), 1, anon_sym_QMARK_QMARK, - ACTIONS(6863), 1, - anon_sym_as, - ACTIONS(6865), 1, - anon_sym_is, - STATE(2613), 1, + STATE(2419), 1, sym_bracketed_argument_list, - STATE(3259), 1, + STATE(2958), 1, sym_argument_list, - ACTIONS(5287), 2, + ACTIONS(4825), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6833), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(6837), 2, + ACTIONS(6825), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6839), 2, + ACTIONS(6827), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(6849), 2, + ACTIONS(6861), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(6865), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(6853), 2, + ACTIONS(6869), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6855), 2, + ACTIONS(6871), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5858), 5, - anon_sym_EQ_GT, - anon_sym_when, - anon_sym_and, - anon_sym_or, + ACTIONS(5849), 5, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_into, - STATE(4444), 9, + STATE(4383), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -583479,7 +577943,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [64580] = 35, + [59127] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -583500,71 +577964,76 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4075), 1, + ACTIONS(4753), 1, + anon_sym_LPAREN, + ACTIONS(4792), 1, anon_sym_DOT, - ACTIONS(4077), 1, + ACTIONS(4794), 1, anon_sym_DASH_GT, - ACTIONS(5247), 1, - anon_sym_LPAREN, - ACTIONS(5283), 1, + ACTIONS(4819), 1, anon_sym_LBRACK, - ACTIONS(5285), 1, + ACTIONS(4823), 1, anon_sym_BANG, - ACTIONS(6147), 1, + ACTIONS(6264), 1, anon_sym_switch, - ACTIONS(6161), 1, + ACTIONS(6278), 1, anon_sym_with, - ACTIONS(6819), 1, + ACTIONS(6327), 1, + anon_sym_as, + ACTIONS(6817), 1, anon_sym_DOT_DOT, - ACTIONS(6841), 1, + ACTIONS(6829), 1, anon_sym_SLASH, - ACTIONS(6847), 1, + ACTIONS(6863), 1, anon_sym_AMP, - ACTIONS(6851), 1, + ACTIONS(6867), 1, anon_sym_GT_GT, - ACTIONS(6863), 1, - anon_sym_as, - ACTIONS(6865), 1, + ACTIONS(6873), 1, anon_sym_is, - STATE(2613), 1, + ACTIONS(6875), 1, + anon_sym_QMARK, + ACTIONS(6877), 1, + anon_sym_CARET, + ACTIONS(6879), 1, + anon_sym_PIPE, + ACTIONS(6881), 1, + anon_sym_AMP_AMP, + ACTIONS(6883), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6885), 1, + anon_sym_QMARK_QMARK, + STATE(2419), 1, sym_bracketed_argument_list, - STATE(3259), 1, + STATE(2958), 1, sym_argument_list, - ACTIONS(5287), 2, + ACTIONS(4825), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5664), 2, - anon_sym_QMARK, - anon_sym_PIPE, - ACTIONS(6833), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(6837), 2, + ACTIONS(6825), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6839), 2, + ACTIONS(6827), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(6849), 2, + ACTIONS(6861), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(6865), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(6853), 2, + ACTIONS(6869), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6855), 2, + ACTIONS(6871), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5660), 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, + ACTIONS(4996), 5, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_into, - STATE(4445), 9, + STATE(4384), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -583574,7 +578043,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [64710] = 36, + [59267] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -583595,82 +578064,59 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4075), 1, - anon_sym_DOT, - ACTIONS(4077), 1, - anon_sym_DASH_GT, - ACTIONS(5247), 1, - anon_sym_LPAREN, - ACTIONS(5283), 1, - anon_sym_LBRACK, - ACTIONS(5285), 1, + STATE(4385), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + ACTIONS(3961), 11, + anon_sym_LT, + anon_sym_GT, + anon_sym_QMARK, anon_sym_BANG, - ACTIONS(6147), 1, - anon_sym_switch, - ACTIONS(6161), 1, - anon_sym_with, - ACTIONS(6819), 1, - anon_sym_DOT_DOT, - ACTIONS(6841), 1, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_SLASH, - ACTIONS(6843), 1, - anon_sym_CARET, - ACTIONS(6847), 1, + anon_sym_PIPE, anon_sym_AMP, - ACTIONS(6851), 1, anon_sym_GT_GT, - ACTIONS(6863), 1, - anon_sym_as, - ACTIONS(6865), 1, - anon_sym_is, - STATE(2613), 1, - sym_bracketed_argument_list, - STATE(3259), 1, - sym_argument_list, - ACTIONS(5287), 2, + anon_sym_DOT, + ACTIONS(3963), 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(5664), 2, - anon_sym_QMARK, - anon_sym_PIPE, - ACTIONS(6833), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(6837), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(6839), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(6849), 2, + anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(6853), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6855), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5660), 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(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, - [64842] = 34, + anon_sym_as, + anon_sym_is, + anon_sym_DASH_GT, + anon_sym_with, + [59353] = 29, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -583691,70 +578137,49 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4075), 1, + ACTIONS(4427), 1, anon_sym_DOT, - ACTIONS(4077), 1, + ACTIONS(4429), 1, anon_sym_DASH_GT, - ACTIONS(5247), 1, + ACTIONS(6557), 1, anon_sym_LPAREN, - ACTIONS(5283), 1, + ACTIONS(6607), 1, anon_sym_LBRACK, - ACTIONS(5285), 1, + ACTIONS(6613), 1, anon_sym_BANG, - ACTIONS(6147), 1, + ACTIONS(6637), 1, anon_sym_switch, - ACTIONS(6161), 1, + ACTIONS(6651), 1, anon_sym_with, - ACTIONS(6819), 1, - anon_sym_DOT_DOT, - ACTIONS(6841), 1, + ACTIONS(6837), 1, anon_sym_SLASH, - ACTIONS(6851), 1, + ACTIONS(6845), 1, anon_sym_GT_GT, - ACTIONS(6863), 1, - anon_sym_as, - ACTIONS(6865), 1, - anon_sym_is, - STATE(2613), 1, + ACTIONS(6851), 1, + anon_sym_DOT_DOT, + STATE(3188), 1, sym_bracketed_argument_list, - STATE(3259), 1, + STATE(4584), 1, sym_argument_list, - ACTIONS(5287), 2, + ACTIONS(6615), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, ACTIONS(6833), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(6837), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6839), 2, + ACTIONS(6835), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(6849), 2, + ACTIONS(6843), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(6853), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(6855), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(5664), 3, + ACTIONS(5739), 5, + anon_sym_LT, + anon_sym_GT, anon_sym_QMARK, anon_sym_PIPE, anon_sym_AMP, - ACTIONS(5660), 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(4447), 9, + STATE(4386), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -583764,7 +578189,23 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [64970] = 33, + ACTIONS(5737), 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, + [59471] = 26, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -583785,57 +578226,44 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4075), 1, + ACTIONS(4427), 1, anon_sym_DOT, - ACTIONS(4077), 1, + ACTIONS(4429), 1, anon_sym_DASH_GT, - ACTIONS(5247), 1, + ACTIONS(6557), 1, anon_sym_LPAREN, - ACTIONS(5283), 1, + ACTIONS(6607), 1, anon_sym_LBRACK, - ACTIONS(5285), 1, + ACTIONS(6613), 1, anon_sym_BANG, - ACTIONS(6147), 1, + ACTIONS(6637), 1, anon_sym_switch, - ACTIONS(6161), 1, + ACTIONS(6651), 1, anon_sym_with, - ACTIONS(6819), 1, - anon_sym_DOT_DOT, - ACTIONS(6841), 1, + ACTIONS(6837), 1, anon_sym_SLASH, ACTIONS(6851), 1, - anon_sym_GT_GT, - ACTIONS(6863), 1, - anon_sym_as, - ACTIONS(6865), 1, - anon_sym_is, - STATE(2613), 1, + anon_sym_DOT_DOT, + STATE(3188), 1, sym_bracketed_argument_list, - STATE(3259), 1, + STATE(4584), 1, sym_argument_list, - ACTIONS(5287), 2, + ACTIONS(6615), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6833), 2, + ACTIONS(6835), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(5739), 8, anon_sym_LT, anon_sym_GT, - ACTIONS(6837), 2, + anon_sym_QMARK, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6839), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(6849), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - ACTIONS(6855), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(5664), 3, - anon_sym_QMARK, anon_sym_PIPE, anon_sym_AMP, - STATE(4448), 9, + anon_sym_GT_GT, + STATE(4387), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -583845,19 +578273,25 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5660), 11, + ACTIONS(5737), 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_EQ_GT, - anon_sym_when, + 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, - [65096] = 37, + anon_sym_as, + anon_sym_is, + [59583] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -583878,83 +578312,135 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4075), 1, - anon_sym_DOT, - ACTIONS(4077), 1, - anon_sym_DASH_GT, - ACTIONS(5247), 1, - anon_sym_LPAREN, - ACTIONS(5283), 1, - anon_sym_LBRACK, - ACTIONS(5285), 1, - anon_sym_BANG, - ACTIONS(5664), 1, + ACTIONS(6931), 1, + anon_sym_and, + ACTIONS(6933), 1, + anon_sym_or, + STATE(4388), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + ACTIONS(6109), 11, + anon_sym_LT, + anon_sym_GT, anon_sym_QMARK, - ACTIONS(6147), 1, - anon_sym_switch, - ACTIONS(6161), 1, - anon_sym_with, - ACTIONS(6819), 1, - anon_sym_DOT_DOT, - ACTIONS(6841), 1, + anon_sym_BANG, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_SLASH, - ACTIONS(6843), 1, - anon_sym_CARET, - ACTIONS(6845), 1, anon_sym_PIPE, - ACTIONS(6847), 1, anon_sym_AMP, - ACTIONS(6851), 1, anon_sym_GT_GT, - ACTIONS(6863), 1, - anon_sym_as, - ACTIONS(6865), 1, - anon_sym_is, - STATE(2613), 1, - sym_bracketed_argument_list, - STATE(3259), 1, - sym_argument_list, - ACTIONS(5287), 2, + anon_sym_DOT, + ACTIONS(6107), 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(6833), 2, + 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, + [59673] = 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(6935), 1, + anon_sym_and, + STATE(4389), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + ACTIONS(6097), 11, anon_sym_LT, anon_sym_GT, - ACTIONS(6837), 2, + anon_sym_QMARK, + anon_sym_BANG, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6839), 2, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT_GT, + anon_sym_DOT, + ACTIONS(6095), 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, - ACTIONS(6849), 2, + anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(6853), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6855), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5660), 8, - anon_sym_EQ_GT, - anon_sym_when, - 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_into, - STATE(4449), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - [65230] = 38, + anon_sym_as, + anon_sym_is, + anon_sym_DASH_GT, + anon_sym_with, + [59761] = 26, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -583975,84 +578461,72 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4075), 1, + ACTIONS(4092), 1, anon_sym_DOT, - ACTIONS(4077), 1, + ACTIONS(4094), 1, anon_sym_DASH_GT, - ACTIONS(5247), 1, + ACTIONS(5227), 1, anon_sym_LPAREN, - ACTIONS(5283), 1, + ACTIONS(5236), 1, anon_sym_LBRACK, - ACTIONS(5285), 1, + ACTIONS(5238), 1, anon_sym_BANG, - ACTIONS(5664), 1, - anon_sym_QMARK, - ACTIONS(6147), 1, + ACTIONS(6017), 1, anon_sym_switch, - ACTIONS(6161), 1, + ACTIONS(6031), 1, anon_sym_with, ACTIONS(6819), 1, anon_sym_DOT_DOT, - ACTIONS(6841), 1, + ACTIONS(6905), 1, anon_sym_SLASH, - ACTIONS(6843), 1, - anon_sym_CARET, - ACTIONS(6845), 1, - anon_sym_PIPE, - ACTIONS(6847), 1, - anon_sym_AMP, - ACTIONS(6851), 1, - anon_sym_GT_GT, - ACTIONS(6857), 1, - anon_sym_AMP_AMP, - ACTIONS(6863), 1, - anon_sym_as, - ACTIONS(6865), 1, - anon_sym_is, - STATE(2613), 1, + STATE(2605), 1, sym_bracketed_argument_list, - STATE(3259), 1, + STATE(3348), 1, sym_argument_list, - ACTIONS(5287), 2, + ACTIONS(5240), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6833), 2, + ACTIONS(6903), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(5739), 8, anon_sym_LT, anon_sym_GT, - ACTIONS(6837), 2, + anon_sym_QMARK, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6839), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(6849), 2, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT_GT, + STATE(4390), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + ACTIONS(5737), 17, + anon_sym_COLON, + anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(6853), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6855), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5660), 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, - 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, - [65366] = 40, + anon_sym_as, + anon_sym_is, + [59873] = 35, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -584073,76 +578547,71 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4075), 1, + ACTIONS(4092), 1, anon_sym_DOT, - ACTIONS(4077), 1, + ACTIONS(4094), 1, anon_sym_DASH_GT, - ACTIONS(5247), 1, + ACTIONS(5227), 1, anon_sym_LPAREN, - ACTIONS(5283), 1, + ACTIONS(5236), 1, anon_sym_LBRACK, - ACTIONS(5285), 1, + ACTIONS(5238), 1, anon_sym_BANG, - ACTIONS(5664), 1, - anon_sym_QMARK, - ACTIONS(6147), 1, + ACTIONS(6017), 1, anon_sym_switch, - ACTIONS(6161), 1, + ACTIONS(6031), 1, anon_sym_with, - ACTIONS(6819), 1, - anon_sym_DOT_DOT, - ACTIONS(6841), 1, + ACTIONS(6755), 1, anon_sym_SLASH, - ACTIONS(6843), 1, - anon_sym_CARET, - ACTIONS(6845), 1, - anon_sym_PIPE, - ACTIONS(6847), 1, + ACTIONS(6761), 1, anon_sym_AMP, - ACTIONS(6851), 1, + ACTIONS(6765), 1, anon_sym_GT_GT, - ACTIONS(6857), 1, - anon_sym_AMP_AMP, - ACTIONS(6859), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6861), 1, - anon_sym_QMARK_QMARK, - ACTIONS(6863), 1, + ACTIONS(6771), 1, + anon_sym_DOT_DOT, + ACTIONS(6775), 1, anon_sym_as, - ACTIONS(6865), 1, + ACTIONS(6777), 1, anon_sym_is, - STATE(2613), 1, + STATE(2605), 1, sym_bracketed_argument_list, - STATE(3259), 1, + STATE(3348), 1, sym_argument_list, - ACTIONS(5287), 2, + ACTIONS(5240), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6833), 2, + ACTIONS(5739), 2, + anon_sym_QMARK, + anon_sym_PIPE, + ACTIONS(6749), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(6837), 2, + ACTIONS(6751), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6839), 2, + ACTIONS(6753), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(6849), 2, + ACTIONS(6763), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(6853), 2, + ACTIONS(6767), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6855), 2, + ACTIONS(6769), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5660), 5, + ACTIONS(5737), 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(4451), 9, + STATE(4391), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -584152,7 +578621,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [65506] = 40, + [60003] = 27, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -584173,86 +578642,73 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4075), 1, + ACTIONS(4092), 1, anon_sym_DOT, - ACTIONS(4077), 1, + ACTIONS(4094), 1, anon_sym_DASH_GT, - ACTIONS(5247), 1, + ACTIONS(5227), 1, anon_sym_LPAREN, - ACTIONS(5283), 1, + ACTIONS(5236), 1, anon_sym_LBRACK, - ACTIONS(5285), 1, + ACTIONS(5238), 1, anon_sym_BANG, - ACTIONS(6147), 1, + ACTIONS(6017), 1, anon_sym_switch, - ACTIONS(6161), 1, + ACTIONS(6031), 1, anon_sym_with, ACTIONS(6819), 1, anon_sym_DOT_DOT, - ACTIONS(6835), 1, - anon_sym_QMARK, - ACTIONS(6841), 1, + ACTIONS(6905), 1, anon_sym_SLASH, - ACTIONS(6843), 1, - anon_sym_CARET, - ACTIONS(6845), 1, - anon_sym_PIPE, - ACTIONS(6847), 1, - anon_sym_AMP, - ACTIONS(6851), 1, - anon_sym_GT_GT, - ACTIONS(6857), 1, - anon_sym_AMP_AMP, - ACTIONS(6859), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6861), 1, - anon_sym_QMARK_QMARK, - ACTIONS(6863), 1, - anon_sym_as, - ACTIONS(6865), 1, - anon_sym_is, - STATE(2613), 1, + STATE(2605), 1, sym_bracketed_argument_list, - STATE(3259), 1, + STATE(3348), 1, sym_argument_list, - ACTIONS(5287), 2, + ACTIONS(5240), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6833), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(6837), 2, + ACTIONS(6901), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6839), 2, + ACTIONS(6903), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(6849), 2, + ACTIONS(5739), 6, + anon_sym_LT, + anon_sym_GT, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT_GT, + 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, + ACTIONS(5737), 17, + anon_sym_COLON, + anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(6853), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6855), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5864), 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(4452), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - [65646] = 40, + anon_sym_as, + anon_sym_is, + [60117] = 33, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -584273,76 +578729,57 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4075), 1, + ACTIONS(4427), 1, anon_sym_DOT, - ACTIONS(4077), 1, + ACTIONS(4429), 1, anon_sym_DASH_GT, - ACTIONS(5247), 1, + ACTIONS(6557), 1, anon_sym_LPAREN, - ACTIONS(5283), 1, + ACTIONS(6607), 1, anon_sym_LBRACK, - ACTIONS(5285), 1, + ACTIONS(6613), 1, anon_sym_BANG, - ACTIONS(6147), 1, + ACTIONS(6637), 1, anon_sym_switch, - ACTIONS(6161), 1, + ACTIONS(6651), 1, anon_sym_with, - ACTIONS(6819), 1, - anon_sym_DOT_DOT, - ACTIONS(6835), 1, - anon_sym_QMARK, - ACTIONS(6841), 1, + ACTIONS(6743), 1, + anon_sym_as, + ACTIONS(6837), 1, anon_sym_SLASH, - ACTIONS(6843), 1, - anon_sym_CARET, ACTIONS(6845), 1, - anon_sym_PIPE, - ACTIONS(6847), 1, - anon_sym_AMP, - ACTIONS(6851), 1, anon_sym_GT_GT, - ACTIONS(6857), 1, - anon_sym_AMP_AMP, - ACTIONS(6859), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6861), 1, - anon_sym_QMARK_QMARK, - ACTIONS(6863), 1, - anon_sym_as, - ACTIONS(6865), 1, + ACTIONS(6851), 1, + anon_sym_DOT_DOT, + ACTIONS(6853), 1, anon_sym_is, - STATE(2613), 1, + STATE(3188), 1, sym_bracketed_argument_list, - STATE(3259), 1, + STATE(4584), 1, sym_argument_list, - ACTIONS(5287), 2, + ACTIONS(6615), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6833), 2, + ACTIONS(6831), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(6837), 2, + ACTIONS(6833), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6839), 2, + ACTIONS(6835), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(6849), 2, + ACTIONS(6843), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(6853), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(6855), 2, + ACTIONS(6849), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5072), 5, - anon_sym_EQ_GT, - anon_sym_when, - anon_sym_and, - anon_sym_or, - anon_sym_into, - STATE(4453), 9, + ACTIONS(5739), 3, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_AMP, + STATE(4393), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -584352,7 +578789,19 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [65786] = 13, + ACTIONS(5737), 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, + [60243] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -584373,7 +578822,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - STATE(4454), 9, + STATE(4394), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -584383,7 +578832,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(4012), 11, + ACTIONS(4889), 11, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, @@ -584395,7 +578844,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT, - ACTIONS(4014), 29, + ACTIONS(4887), 29, sym_interpolation_close_brace, anon_sym_LBRACK, anon_sym_COLON, @@ -584425,7 +578874,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, anon_sym_DASH_GT, anon_sym_with, - [65872] = 40, + [60329] = 24, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -584446,76 +578895,129 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4075), 1, + ACTIONS(4427), 1, anon_sym_DOT, - ACTIONS(4077), 1, + ACTIONS(4429), 1, anon_sym_DASH_GT, - ACTIONS(5247), 1, + ACTIONS(6557), 1, anon_sym_LPAREN, - ACTIONS(5283), 1, + ACTIONS(6607), 1, anon_sym_LBRACK, - ACTIONS(5285), 1, + ACTIONS(6613), 1, anon_sym_BANG, - ACTIONS(6147), 1, + ACTIONS(6637), 1, anon_sym_switch, - ACTIONS(6161), 1, + ACTIONS(6651), 1, anon_sym_with, - ACTIONS(6819), 1, + ACTIONS(6851), 1, anon_sym_DOT_DOT, - ACTIONS(6835), 1, + STATE(3188), 1, + sym_bracketed_argument_list, + STATE(4584), 1, + sym_argument_list, + ACTIONS(6615), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5739), 9, + anon_sym_LT, + anon_sym_GT, anon_sym_QMARK, - ACTIONS(6841), 1, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_SLASH, - ACTIONS(6843), 1, - anon_sym_CARET, - ACTIONS(6845), 1, anon_sym_PIPE, - ACTIONS(6847), 1, anon_sym_AMP, - ACTIONS(6851), 1, anon_sym_GT_GT, - ACTIONS(6857), 1, + 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(5737), 19, + 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_and, + anon_sym_or, anon_sym_AMP_AMP, - ACTIONS(6859), 1, anon_sym_PIPE_PIPE, - ACTIONS(6861), 1, anon_sym_QMARK_QMARK, - ACTIONS(6863), 1, anon_sym_as, - ACTIONS(6865), 1, anon_sym_is, - STATE(2613), 1, + [60437] = 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(4427), 1, + anon_sym_DOT, + ACTIONS(4429), 1, + anon_sym_DASH_GT, + ACTIONS(6557), 1, + anon_sym_LPAREN, + ACTIONS(6607), 1, + anon_sym_LBRACK, + ACTIONS(6613), 1, + anon_sym_BANG, + ACTIONS(6637), 1, + anon_sym_switch, + ACTIONS(6651), 1, + anon_sym_with, + ACTIONS(6837), 1, + anon_sym_SLASH, + ACTIONS(6851), 1, + anon_sym_DOT_DOT, + STATE(3188), 1, sym_bracketed_argument_list, - STATE(3259), 1, + STATE(4584), 1, sym_argument_list, - ACTIONS(5287), 2, + ACTIONS(6615), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, ACTIONS(6833), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(6837), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6839), 2, + ACTIONS(6835), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(6849), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - ACTIONS(6853), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(6855), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(5882), 5, - anon_sym_EQ_GT, - anon_sym_when, - anon_sym_and, - anon_sym_or, - anon_sym_into, - STATE(4455), 9, + ACTIONS(5739), 6, + anon_sym_LT, + anon_sym_GT, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT_GT, + STATE(4396), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -584525,7 +579027,25 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [66012] = 37, + ACTIONS(5737), 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, + [60551] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -584546,73 +579066,76 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4443), 1, - anon_sym_DASH_GT, - ACTIONS(4533), 1, + ACTIONS(4092), 1, anon_sym_DOT, - ACTIONS(5664), 1, - anon_sym_QMARK, - ACTIONS(6574), 1, + ACTIONS(4094), 1, + anon_sym_DASH_GT, + ACTIONS(5227), 1, anon_sym_LPAREN, - ACTIONS(6619), 1, + ACTIONS(5236), 1, anon_sym_LBRACK, - ACTIONS(6625), 1, + ACTIONS(5238), 1, anon_sym_BANG, - ACTIONS(6649), 1, + ACTIONS(6017), 1, anon_sym_switch, - ACTIONS(6663), 1, + ACTIONS(6031), 1, anon_sym_with, - ACTIONS(6737), 1, + ACTIONS(6775), 1, + anon_sym_as, + ACTIONS(6819), 1, + anon_sym_DOT_DOT, + ACTIONS(6899), 1, + anon_sym_QMARK, + ACTIONS(6905), 1, anon_sym_SLASH, - ACTIONS(6739), 1, + ACTIONS(6907), 1, anon_sym_CARET, - ACTIONS(6741), 1, + ACTIONS(6909), 1, anon_sym_PIPE, - ACTIONS(6743), 1, + ACTIONS(6911), 1, anon_sym_AMP, - ACTIONS(6747), 1, + ACTIONS(6915), 1, anon_sym_GT_GT, - ACTIONS(6753), 1, - anon_sym_DOT_DOT, - ACTIONS(6761), 1, - anon_sym_as, - ACTIONS(6763), 1, + ACTIONS(6921), 1, + anon_sym_AMP_AMP, + ACTIONS(6923), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6925), 1, + anon_sym_QMARK_QMARK, + ACTIONS(6927), 1, anon_sym_is, - STATE(3173), 1, + STATE(2605), 1, sym_bracketed_argument_list, - STATE(4583), 1, + STATE(3348), 1, sym_argument_list, - ACTIONS(6627), 2, + ACTIONS(5240), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6731), 2, + ACTIONS(6897), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(6733), 2, + ACTIONS(6901), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6735), 2, + ACTIONS(6903), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(6745), 2, + ACTIONS(6913), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(6749), 2, + ACTIONS(6917), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6751), 2, + ACTIONS(6919), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5660), 8, - sym_interpolation_close_brace, + ACTIONS(5709), 5, anon_sym_COLON, - anon_sym_COMMA, + anon_sym_when, anon_sym_and, anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_QMARK_QMARK, - STATE(4456), 9, + anon_sym_into, + STATE(4397), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -584622,7 +579145,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [66146] = 38, + [60691] = 34, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -584643,74 +579166,70 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4443), 1, - anon_sym_DASH_GT, - ACTIONS(4533), 1, + ACTIONS(4092), 1, anon_sym_DOT, - ACTIONS(5664), 1, - anon_sym_QMARK, - ACTIONS(6574), 1, + ACTIONS(4094), 1, + anon_sym_DASH_GT, + ACTIONS(5227), 1, anon_sym_LPAREN, - ACTIONS(6619), 1, + ACTIONS(5236), 1, anon_sym_LBRACK, - ACTIONS(6625), 1, + ACTIONS(5238), 1, anon_sym_BANG, - ACTIONS(6649), 1, + ACTIONS(6017), 1, anon_sym_switch, - ACTIONS(6663), 1, + ACTIONS(6031), 1, anon_sym_with, - ACTIONS(6737), 1, + ACTIONS(6755), 1, anon_sym_SLASH, - ACTIONS(6739), 1, - anon_sym_CARET, - ACTIONS(6741), 1, - anon_sym_PIPE, - ACTIONS(6743), 1, - anon_sym_AMP, - ACTIONS(6747), 1, + ACTIONS(6765), 1, anon_sym_GT_GT, - ACTIONS(6753), 1, + ACTIONS(6771), 1, anon_sym_DOT_DOT, - ACTIONS(6755), 1, - anon_sym_AMP_AMP, - ACTIONS(6761), 1, + ACTIONS(6775), 1, anon_sym_as, - ACTIONS(6763), 1, + ACTIONS(6777), 1, anon_sym_is, - STATE(3173), 1, + STATE(2605), 1, sym_bracketed_argument_list, - STATE(4583), 1, + STATE(3348), 1, sym_argument_list, - ACTIONS(6627), 2, + ACTIONS(5240), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6731), 2, + ACTIONS(6749), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(6733), 2, + ACTIONS(6751), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6735), 2, + ACTIONS(6753), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(6745), 2, + ACTIONS(6763), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(6749), 2, + ACTIONS(6767), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6751), 2, + ACTIONS(6769), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5660), 7, - sym_interpolation_close_brace, - anon_sym_COLON, - anon_sym_COMMA, + ACTIONS(5739), 3, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_AMP, + ACTIONS(5737), 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, - STATE(4457), 9, + anon_sym_into, + STATE(4398), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -584720,7 +579239,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [66282] = 40, + [60819] = 33, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -584741,76 +579260,57 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4443), 1, - anon_sym_DASH_GT, - ACTIONS(4533), 1, + ACTIONS(4092), 1, anon_sym_DOT, - ACTIONS(6574), 1, + ACTIONS(4094), 1, + anon_sym_DASH_GT, + ACTIONS(5227), 1, anon_sym_LPAREN, - ACTIONS(6619), 1, + ACTIONS(5236), 1, anon_sym_LBRACK, - ACTIONS(6625), 1, + ACTIONS(5238), 1, anon_sym_BANG, - ACTIONS(6649), 1, + ACTIONS(6017), 1, anon_sym_switch, - ACTIONS(6663), 1, + ACTIONS(6031), 1, anon_sym_with, - ACTIONS(6737), 1, + ACTIONS(6755), 1, anon_sym_SLASH, - ACTIONS(6739), 1, - anon_sym_CARET, - ACTIONS(6741), 1, - anon_sym_PIPE, - ACTIONS(6743), 1, - anon_sym_AMP, - ACTIONS(6747), 1, + ACTIONS(6765), 1, anon_sym_GT_GT, - ACTIONS(6753), 1, + ACTIONS(6771), 1, anon_sym_DOT_DOT, - ACTIONS(6755), 1, - anon_sym_AMP_AMP, - ACTIONS(6757), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6759), 1, - anon_sym_QMARK_QMARK, - ACTIONS(6761), 1, + ACTIONS(6775), 1, anon_sym_as, - ACTIONS(6763), 1, + ACTIONS(6777), 1, anon_sym_is, - ACTIONS(6899), 1, - anon_sym_QMARK, - STATE(3173), 1, + STATE(2605), 1, sym_bracketed_argument_list, - STATE(4583), 1, + STATE(3348), 1, sym_argument_list, - ACTIONS(6627), 2, + ACTIONS(5240), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6731), 2, + ACTIONS(6749), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(6733), 2, + ACTIONS(6751), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6735), 2, + ACTIONS(6753), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(6745), 2, + ACTIONS(6763), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(6749), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(6751), 2, + ACTIONS(6769), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5899), 5, - sym_interpolation_close_brace, - anon_sym_COLON, - anon_sym_COMMA, - anon_sym_and, - anon_sym_or, - STATE(4458), 9, + ACTIONS(5739), 3, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_AMP, + STATE(4399), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -584820,7 +579320,19 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [66422] = 22, + ACTIONS(5737), 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, + [60945] = 22, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -584841,35 +579353,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(5603), 1, - anon_sym_ref, - STATE(2175), 1, - sym__reserved_identifier, - STATE(2181), 1, - sym_generic_name, - STATE(2317), 1, - sym_ref_type, - STATE(2340), 1, - sym__scoped_base_type, - STATE(4373), 1, - sym_identifier, - STATE(5302), 1, - sym__name, - STATE(4096), 3, - sym_alias_qualified_name, - sym__simple_name, - sym_qualified_name, - ACTIONS(3445), 7, - anon_sym_LBRACK, + ACTIONS(4092), 1, + anon_sym_DOT, + ACTIONS(4094), 1, + anon_sym_DASH_GT, + ACTIONS(5227), 1, anon_sym_LPAREN, + ACTIONS(5236), 1, + anon_sym_LBRACK, + ACTIONS(5238), 1, + anon_sym_BANG, + ACTIONS(6771), 1, + anon_sym_DOT_DOT, + STATE(2605), 1, + sym_bracketed_argument_list, + STATE(3348), 1, + sym_argument_list, + ACTIONS(5240), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1161), 9, anon_sym_LT, + anon_sym_GT, anon_sym_QMARK, - anon_sym_STAR, - anon_sym_DOT, - anon_sym_COLON_COLON, - STATE(4459), 9, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT_GT, + STATE(4400), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -584879,30 +579392,29 @@ 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, + ACTIONS(1147), 21, + 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_from, + 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, - [66526] = 40, + anon_sym_as, + anon_sym_is, + anon_sym_with, + [61049] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -584923,76 +579435,76 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4075), 1, + ACTIONS(4753), 1, + anon_sym_LPAREN, + ACTIONS(4792), 1, anon_sym_DOT, - ACTIONS(4077), 1, + ACTIONS(4794), 1, anon_sym_DASH_GT, - ACTIONS(5247), 1, - anon_sym_LPAREN, - ACTIONS(5283), 1, + ACTIONS(4819), 1, anon_sym_LBRACK, - ACTIONS(5285), 1, + ACTIONS(4823), 1, anon_sym_BANG, - ACTIONS(6147), 1, + ACTIONS(6264), 1, anon_sym_switch, - ACTIONS(6161), 1, + ACTIONS(6278), 1, anon_sym_with, - ACTIONS(6771), 1, - anon_sym_SLASH, - ACTIONS(6775), 1, - anon_sym_GT_GT, - ACTIONS(6777), 1, + ACTIONS(6327), 1, + anon_sym_as, + ACTIONS(6817), 1, anon_sym_DOT_DOT, + ACTIONS(6829), 1, + anon_sym_SLASH, ACTIONS(6863), 1, - anon_sym_as, - ACTIONS(6931), 1, anon_sym_AMP, - ACTIONS(6937), 1, + ACTIONS(6867), 1, + anon_sym_GT_GT, + ACTIONS(6873), 1, anon_sym_is, - ACTIONS(6939), 1, + ACTIONS(6875), 1, + anon_sym_QMARK, + ACTIONS(6877), 1, anon_sym_CARET, - ACTIONS(6941), 1, + ACTIONS(6879), 1, anon_sym_PIPE, - ACTIONS(6943), 1, + ACTIONS(6881), 1, anon_sym_AMP_AMP, - ACTIONS(6945), 1, + ACTIONS(6883), 1, anon_sym_PIPE_PIPE, - ACTIONS(6947), 1, + ACTIONS(6885), 1, anon_sym_QMARK_QMARK, - ACTIONS(6949), 1, - anon_sym_QMARK, - STATE(2613), 1, + STATE(2419), 1, sym_bracketed_argument_list, - STATE(3259), 1, + STATE(2958), 1, sym_argument_list, - ACTIONS(5287), 2, + ACTIONS(4825), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6767), 2, + ACTIONS(6825), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6769), 2, + ACTIONS(6827), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(6773), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - ACTIONS(6929), 2, + ACTIONS(6861), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(6933), 2, + ACTIONS(6865), 2, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + ACTIONS(6869), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6935), 2, + ACTIONS(6871), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5745), 5, + ACTIONS(5652), 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(4460), 9, + STATE(4401), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -585002,7 +579514,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [66666] = 40, + [61189] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -585023,76 +579535,76 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4075), 1, + ACTIONS(4753), 1, + anon_sym_LPAREN, + ACTIONS(4792), 1, anon_sym_DOT, - ACTIONS(4077), 1, + ACTIONS(4794), 1, anon_sym_DASH_GT, - ACTIONS(5247), 1, - anon_sym_LPAREN, - ACTIONS(5283), 1, + ACTIONS(4819), 1, anon_sym_LBRACK, - ACTIONS(5285), 1, + ACTIONS(4823), 1, anon_sym_BANG, - ACTIONS(6147), 1, + ACTIONS(6264), 1, anon_sym_switch, - ACTIONS(6161), 1, + ACTIONS(6278), 1, anon_sym_with, - ACTIONS(6771), 1, - anon_sym_SLASH, - ACTIONS(6775), 1, - anon_sym_GT_GT, - ACTIONS(6777), 1, + ACTIONS(6327), 1, + anon_sym_as, + ACTIONS(6817), 1, anon_sym_DOT_DOT, + ACTIONS(6829), 1, + anon_sym_SLASH, ACTIONS(6863), 1, - anon_sym_as, - ACTIONS(6931), 1, anon_sym_AMP, - ACTIONS(6937), 1, + ACTIONS(6867), 1, + anon_sym_GT_GT, + ACTIONS(6873), 1, anon_sym_is, - ACTIONS(6939), 1, + ACTIONS(6875), 1, + anon_sym_QMARK, + ACTIONS(6877), 1, anon_sym_CARET, - ACTIONS(6941), 1, + ACTIONS(6879), 1, anon_sym_PIPE, - ACTIONS(6943), 1, + ACTIONS(6881), 1, anon_sym_AMP_AMP, - ACTIONS(6945), 1, + ACTIONS(6883), 1, anon_sym_PIPE_PIPE, - ACTIONS(6947), 1, + ACTIONS(6885), 1, anon_sym_QMARK_QMARK, - ACTIONS(6949), 1, - anon_sym_QMARK, - STATE(2613), 1, + STATE(2419), 1, sym_bracketed_argument_list, - STATE(3259), 1, + STATE(2958), 1, sym_argument_list, - ACTIONS(5287), 2, + ACTIONS(4825), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6767), 2, + ACTIONS(6825), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6769), 2, + ACTIONS(6827), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(6773), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - ACTIONS(6929), 2, + ACTIONS(6861), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(6933), 2, + ACTIONS(6865), 2, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + ACTIONS(6869), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6935), 2, + ACTIONS(6871), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5767), 5, + ACTIONS(5801), 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(4461), 9, + STATE(4402), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -585102,7 +579614,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [66806] = 22, + [61329] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -585123,35 +579635,14 @@ 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(6073), 1, - anon_sym_ref, - STATE(2175), 1, - sym__reserved_identifier, - STATE(2181), 1, - sym_generic_name, - STATE(2317), 1, - sym_ref_type, - STATE(2340), 1, - sym__scoped_base_type, - STATE(4373), 1, - sym_identifier, - STATE(5302), 1, - sym__name, - STATE(4096), 3, - sym_alias_qualified_name, - sym__simple_name, - sym_qualified_name, - ACTIONS(3445), 7, - anon_sym_LBRACK, + ACTIONS(4241), 6, + anon_sym_COMMA, + anon_sym_RBRACK, anon_sym_RPAREN, - anon_sym_LT, - anon_sym_QMARK, - anon_sym_STAR, - anon_sym_DOT, - anon_sym_COLON_COLON, - STATE(4462), 9, + anon_sym_RBRACE, + anon_sym_and, + anon_sym_or, + STATE(4403), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -585161,30 +579652,43 @@ 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, - [66910] = 24, + ACTIONS(5158), 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(5156), 23, + 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_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, + [61417] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -585205,70 +579709,86 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4075), 1, + ACTIONS(4092), 1, anon_sym_DOT, - ACTIONS(4077), 1, + ACTIONS(4094), 1, anon_sym_DASH_GT, - ACTIONS(5247), 1, + ACTIONS(5227), 1, anon_sym_LPAREN, - ACTIONS(5283), 1, + ACTIONS(5236), 1, anon_sym_LBRACK, - ACTIONS(5285), 1, + ACTIONS(5238), 1, anon_sym_BANG, - ACTIONS(6147), 1, + ACTIONS(6017), 1, anon_sym_switch, - ACTIONS(6161), 1, + ACTIONS(6031), 1, anon_sym_with, - ACTIONS(6777), 1, + ACTIONS(6775), 1, + anon_sym_as, + ACTIONS(6819), 1, anon_sym_DOT_DOT, - STATE(2613), 1, + ACTIONS(6899), 1, + anon_sym_QMARK, + ACTIONS(6905), 1, + anon_sym_SLASH, + ACTIONS(6907), 1, + anon_sym_CARET, + ACTIONS(6909), 1, + anon_sym_PIPE, + ACTIONS(6911), 1, + anon_sym_AMP, + ACTIONS(6915), 1, + anon_sym_GT_GT, + ACTIONS(6921), 1, + anon_sym_AMP_AMP, + ACTIONS(6923), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6925), 1, + anon_sym_QMARK_QMARK, + ACTIONS(6927), 1, + anon_sym_is, + STATE(2605), 1, sym_bracketed_argument_list, - STATE(3259), 1, + STATE(3348), 1, sym_argument_list, - ACTIONS(5287), 2, + ACTIONS(5240), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5664), 9, + ACTIONS(6897), 2, anon_sym_LT, anon_sym_GT, - anon_sym_QMARK, + ACTIONS(6901), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT_GT, - 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(5660), 19, - anon_sym_COLON, + ACTIONS(6903), 2, anon_sym_STAR, anon_sym_PERCENT, - anon_sym_CARET, + ACTIONS(6913), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, + ACTIONS(6917), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + ACTIONS(6919), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, + ACTIONS(5801), 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, - [67018] = 13, + STATE(4404), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + [61557] = 22, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -585289,37 +579809,49 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - STATE(4464), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - ACTIONS(3699), 11, + ACTIONS(4427), 1, + anon_sym_DOT, + ACTIONS(4429), 1, + anon_sym_DASH_GT, + ACTIONS(6557), 1, + anon_sym_LPAREN, + ACTIONS(6607), 1, + anon_sym_LBRACK, + ACTIONS(6613), 1, + anon_sym_BANG, + ACTIONS(6851), 1, + anon_sym_DOT_DOT, + STATE(3188), 1, + sym_bracketed_argument_list, + STATE(4584), 1, + sym_argument_list, + ACTIONS(6615), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1161), 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(3710), 29, + 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(1147), 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, @@ -585330,18 +579862,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, - [67104] = 15, + [61661] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -585362,11 +579891,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4066), 1, - anon_sym_LBRACK, - ACTIONS(6951), 1, - anon_sym_QMARK, - STATE(4465), 9, + STATE(4406), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -585376,9 +579901,10 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(4016), 10, + ACTIONS(3642), 11, anon_sym_LT, anon_sym_GT, + anon_sym_QMARK, anon_sym_BANG, anon_sym_PLUS, anon_sym_DASH, @@ -585387,8 +579913,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT, - ACTIONS(4018), 28, + ACTIONS(3644), 29, sym_interpolation_close_brace, + anon_sym_LBRACK, anon_sym_COLON, anon_sym_COMMA, anon_sym_LPAREN, @@ -585416,7 +579943,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, anon_sym_DASH_GT, anon_sym_with, - [67194] = 40, + [61747] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -585437,76 +579964,76 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4075), 1, + ACTIONS(4427), 1, anon_sym_DOT, - ACTIONS(4077), 1, + ACTIONS(4429), 1, anon_sym_DASH_GT, - ACTIONS(5247), 1, + ACTIONS(5739), 1, + anon_sym_QMARK, + ACTIONS(6557), 1, anon_sym_LPAREN, - ACTIONS(5283), 1, + ACTIONS(6607), 1, anon_sym_LBRACK, - ACTIONS(5285), 1, + ACTIONS(6613), 1, anon_sym_BANG, - ACTIONS(6147), 1, + ACTIONS(6637), 1, anon_sym_switch, - ACTIONS(6161), 1, + ACTIONS(6651), 1, anon_sym_with, - ACTIONS(6771), 1, + ACTIONS(6743), 1, + anon_sym_as, + ACTIONS(6837), 1, anon_sym_SLASH, - ACTIONS(6775), 1, + ACTIONS(6839), 1, + anon_sym_CARET, + ACTIONS(6841), 1, + anon_sym_AMP, + ACTIONS(6845), 1, anon_sym_GT_GT, - ACTIONS(6777), 1, + ACTIONS(6851), 1, anon_sym_DOT_DOT, - ACTIONS(6863), 1, - anon_sym_as, - ACTIONS(6931), 1, - anon_sym_AMP, - ACTIONS(6937), 1, + ACTIONS(6853), 1, anon_sym_is, - ACTIONS(6939), 1, - anon_sym_CARET, - ACTIONS(6941), 1, + ACTIONS(6887), 1, anon_sym_PIPE, - ACTIONS(6943), 1, + ACTIONS(6929), 1, anon_sym_AMP_AMP, - ACTIONS(6945), 1, + ACTIONS(6937), 1, anon_sym_PIPE_PIPE, - ACTIONS(6947), 1, + ACTIONS(6939), 1, anon_sym_QMARK_QMARK, - ACTIONS(6949), 1, - anon_sym_QMARK, - STATE(2613), 1, + STATE(3188), 1, sym_bracketed_argument_list, - STATE(3259), 1, + STATE(4584), 1, sym_argument_list, - ACTIONS(5287), 2, + ACTIONS(6615), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6767), 2, + ACTIONS(6831), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(6833), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6769), 2, + ACTIONS(6835), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(6773), 2, + ACTIONS(6843), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(6929), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(6933), 2, + ACTIONS(6847), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6935), 2, + ACTIONS(6849), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5858), 5, + ACTIONS(5737), 5, + sym_interpolation_close_brace, anon_sym_COLON, - anon_sym_when, + anon_sym_COMMA, anon_sym_and, anon_sym_or, - anon_sym_into, - STATE(4466), 9, + STATE(4407), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -585516,7 +580043,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [67334] = 15, + [61887] = 22, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -585537,154 +580064,100 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4066), 1, - anon_sym_LBRACK, - ACTIONS(4072), 1, - anon_sym_STAR, - 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(4016), 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(4018), 27, - sym_interpolation_close_brace, - anon_sym_COLON, - anon_sym_COMMA, + ACTIONS(4753), 1, 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, - [67424] = 43, - ACTIONS(3), 1, - aux_sym_preproc_region_token1, - ACTIONS(5), 1, - aux_sym_preproc_endregion_token1, - ACTIONS(7), 1, - aux_sym_preproc_line_token1, - ACTIONS(9), 1, - aux_sym_preproc_pragma_token1, - ACTIONS(11), 1, - aux_sym_preproc_nullable_token1, - ACTIONS(13), 1, - aux_sym_preproc_error_token1, - ACTIONS(15), 1, - aux_sym_preproc_warning_token1, - ACTIONS(17), 1, - aux_sym_preproc_define_token1, - ACTIONS(19), 1, - aux_sym_preproc_undef_token1, - ACTIONS(21), 1, - sym_comment, - ACTIONS(2671), 1, - aux_sym_preproc_else_token1, - ACTIONS(2673), 1, - aux_sym_preproc_elif_token1, - ACTIONS(4100), 1, + ACTIONS(4792), 1, anon_sym_DOT, - ACTIONS(4102), 1, + ACTIONS(4794), 1, anon_sym_DASH_GT, - ACTIONS(5264), 1, - anon_sym_LPAREN, - ACTIONS(5304), 1, - anon_sym_BANG, - ACTIONS(5573), 1, + ACTIONS(4819), 1, anon_sym_LBRACK, - ACTIONS(6343), 1, - anon_sym_switch, - ACTIONS(6357), 1, - anon_sym_with, - ACTIONS(6783), 1, - anon_sym_QMARK, - ACTIONS(6789), 1, - anon_sym_SLASH, - ACTIONS(6791), 1, - anon_sym_CARET, - ACTIONS(6793), 1, - anon_sym_PIPE, - ACTIONS(6795), 1, - anon_sym_AMP, - ACTIONS(6799), 1, - anon_sym_GT_GT, - ACTIONS(6805), 1, + ACTIONS(4823), 1, + anon_sym_BANG, + ACTIONS(6817), 1, anon_sym_DOT_DOT, - ACTIONS(6807), 1, - anon_sym_AMP_AMP, - ACTIONS(6809), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6811), 1, - anon_sym_QMARK_QMARK, - ACTIONS(6813), 1, - anon_sym_as, - ACTIONS(6815), 1, - anon_sym_is, - ACTIONS(6954), 1, - aux_sym_preproc_if_token3, - STATE(2485), 1, + STATE(2419), 1, sym_bracketed_argument_list, - STATE(3487), 1, + STATE(2958), 1, sym_argument_list, - ACTIONS(5306), 2, + ACTIONS(4825), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6781), 2, + ACTIONS(1161), 9, anon_sym_LT, anon_sym_GT, - ACTIONS(6785), 2, + anon_sym_QMARK, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6787), 2, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT_GT, + STATE(4408), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + ACTIONS(1147), 21, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(6797), 2, + anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(6801), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6803), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - STATE(7751), 2, - sym_preproc_else_in_expression, - sym_preproc_elif_in_expression, - STATE(4468), 9, + 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, + [61991] = 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(4716), 1, + anon_sym_LPAREN, + ACTIONS(6941), 1, + anon_sym_LBRACK, + ACTIONS(6944), 1, + aux_sym_preproc_if_token1, + STATE(5608), 1, + sym__attribute_list, + STATE(5583), 2, + sym_attribute_list, + sym_preproc_if_in_attribute_list, + STATE(4409), 10, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -585694,7 +580167,42 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [67570] = 16, + aux_sym__class_declaration_initializer_repeat1, + ACTIONS(4711), 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, + [62085] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -585715,13 +580223,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4066), 1, - anon_sym_LBRACK, - ACTIONS(4072), 1, - anon_sym_STAR, - ACTIONS(6951), 1, - anon_sym_QMARK, - STATE(4469), 9, + STATE(4410), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -585731,9 +580233,10 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(4016), 10, + ACTIONS(3638), 11, anon_sym_LT, anon_sym_GT, + anon_sym_QMARK, anon_sym_BANG, anon_sym_PLUS, anon_sym_DASH, @@ -585742,14 +580245,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT, - ACTIONS(4018), 27, + ACTIONS(3640), 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, @@ -585770,7 +580275,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, anon_sym_DASH_GT, anon_sym_with, - [67662] = 22, + [62171] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -585791,68 +580296,86 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4075), 1, + ACTIONS(4427), 1, anon_sym_DOT, - ACTIONS(4077), 1, + ACTIONS(4429), 1, anon_sym_DASH_GT, - ACTIONS(5247), 1, + ACTIONS(6557), 1, anon_sym_LPAREN, - ACTIONS(5283), 1, + ACTIONS(6607), 1, anon_sym_LBRACK, - ACTIONS(5285), 1, + ACTIONS(6613), 1, anon_sym_BANG, - ACTIONS(6777), 1, + ACTIONS(6637), 1, + anon_sym_switch, + ACTIONS(6651), 1, + anon_sym_with, + ACTIONS(6743), 1, + anon_sym_as, + ACTIONS(6837), 1, + anon_sym_SLASH, + ACTIONS(6839), 1, + anon_sym_CARET, + ACTIONS(6841), 1, + anon_sym_AMP, + ACTIONS(6845), 1, + anon_sym_GT_GT, + ACTIONS(6851), 1, anon_sym_DOT_DOT, - STATE(2613), 1, + ACTIONS(6853), 1, + anon_sym_is, + ACTIONS(6887), 1, + anon_sym_PIPE, + ACTIONS(6929), 1, + anon_sym_AMP_AMP, + ACTIONS(6937), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6939), 1, + anon_sym_QMARK_QMARK, + ACTIONS(6947), 1, + anon_sym_QMARK, + STATE(3188), 1, sym_bracketed_argument_list, - STATE(3259), 1, + STATE(4584), 1, sym_argument_list, - ACTIONS(5287), 2, + ACTIONS(6615), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1223), 9, + ACTIONS(6831), 2, anon_sym_LT, anon_sym_GT, - anon_sym_QMARK, + ACTIONS(6833), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT_GT, - STATE(4470), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - ACTIONS(1221), 21, - anon_sym_COLON, + ACTIONS(6835), 2, anon_sym_STAR, anon_sym_PERCENT, - anon_sym_CARET, + ACTIONS(6843), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, + ACTIONS(6847), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + ACTIONS(6849), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - anon_sym_switch, - anon_sym_when, + ACTIONS(5849), 5, + 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_with, - [67766] = 29, + 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, + [62311] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -585873,49 +580396,76 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4075), 1, + ACTIONS(4753), 1, + anon_sym_LPAREN, + ACTIONS(4792), 1, anon_sym_DOT, - ACTIONS(4077), 1, + ACTIONS(4794), 1, anon_sym_DASH_GT, - ACTIONS(5247), 1, - anon_sym_LPAREN, - ACTIONS(5283), 1, + ACTIONS(4819), 1, anon_sym_LBRACK, - ACTIONS(5285), 1, + ACTIONS(4823), 1, anon_sym_BANG, - ACTIONS(6147), 1, + ACTIONS(6264), 1, anon_sym_switch, - ACTIONS(6161), 1, + ACTIONS(6278), 1, anon_sym_with, - ACTIONS(6819), 1, + ACTIONS(6327), 1, + anon_sym_as, + ACTIONS(6817), 1, anon_sym_DOT_DOT, - ACTIONS(6841), 1, + ACTIONS(6829), 1, anon_sym_SLASH, - ACTIONS(6851), 1, + ACTIONS(6863), 1, + anon_sym_AMP, + ACTIONS(6867), 1, anon_sym_GT_GT, - STATE(2613), 1, + ACTIONS(6873), 1, + anon_sym_is, + ACTIONS(6875), 1, + anon_sym_QMARK, + ACTIONS(6877), 1, + anon_sym_CARET, + ACTIONS(6879), 1, + anon_sym_PIPE, + ACTIONS(6881), 1, + anon_sym_AMP_AMP, + ACTIONS(6883), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6885), 1, + anon_sym_QMARK_QMARK, + STATE(2419), 1, sym_bracketed_argument_list, - STATE(3259), 1, + STATE(2958), 1, sym_argument_list, - ACTIONS(5287), 2, + ACTIONS(4825), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6837), 2, + ACTIONS(6825), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6839), 2, + ACTIONS(6827), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(6849), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - ACTIONS(5664), 5, + ACTIONS(6861), 2, anon_sym_LT, anon_sym_GT, - anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_AMP, - STATE(4471), 9, + ACTIONS(6865), 2, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + ACTIONS(6869), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6871), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(5855), 5, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_into, + STATE(4412), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -585925,23 +580475,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5660), 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, - [67884] = 26, + [62451] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -585962,72 +580496,86 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4075), 1, + ACTIONS(4092), 1, anon_sym_DOT, - ACTIONS(4077), 1, + ACTIONS(4094), 1, anon_sym_DASH_GT, - ACTIONS(5247), 1, + ACTIONS(5227), 1, anon_sym_LPAREN, - ACTIONS(5283), 1, + ACTIONS(5236), 1, anon_sym_LBRACK, - ACTIONS(5285), 1, + ACTIONS(5238), 1, anon_sym_BANG, - ACTIONS(6147), 1, + ACTIONS(6017), 1, anon_sym_switch, - ACTIONS(6161), 1, + ACTIONS(6031), 1, anon_sym_with, - ACTIONS(6819), 1, - anon_sym_DOT_DOT, - ACTIONS(6841), 1, + ACTIONS(6755), 1, anon_sym_SLASH, - STATE(2613), 1, + ACTIONS(6757), 1, + anon_sym_CARET, + ACTIONS(6759), 1, + anon_sym_PIPE, + ACTIONS(6761), 1, + anon_sym_AMP, + ACTIONS(6765), 1, + anon_sym_GT_GT, + ACTIONS(6771), 1, + anon_sym_DOT_DOT, + ACTIONS(6773), 1, + anon_sym_AMP_AMP, + ACTIONS(6775), 1, + anon_sym_as, + ACTIONS(6777), 1, + anon_sym_is, + ACTIONS(6855), 1, + anon_sym_QMARK, + ACTIONS(6857), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6859), 1, + anon_sym_QMARK_QMARK, + STATE(2605), 1, sym_bracketed_argument_list, - STATE(3259), 1, + STATE(3348), 1, sym_argument_list, - ACTIONS(5287), 2, + ACTIONS(5240), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6839), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(5664), 8, + ACTIONS(6749), 2, anon_sym_LT, anon_sym_GT, - anon_sym_QMARK, + ACTIONS(6751), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT_GT, - 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, - ACTIONS(5660), 17, - anon_sym_CARET, + ACTIONS(6753), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(6763), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, + ACTIONS(6767), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + ACTIONS(6769), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, + ACTIONS(5849), 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, - [67996] = 24, + STATE(4413), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + [62591] = 34, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -586048,129 +580596,70 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4075), 1, + ACTIONS(4427), 1, anon_sym_DOT, - ACTIONS(4077), 1, + ACTIONS(4429), 1, anon_sym_DASH_GT, - ACTIONS(5247), 1, + ACTIONS(6557), 1, anon_sym_LPAREN, - ACTIONS(5283), 1, + ACTIONS(6607), 1, anon_sym_LBRACK, - ACTIONS(5285), 1, + ACTIONS(6613), 1, anon_sym_BANG, - ACTIONS(6147), 1, + ACTIONS(6637), 1, anon_sym_switch, - ACTIONS(6161), 1, + ACTIONS(6651), 1, anon_sym_with, - ACTIONS(6819), 1, + ACTIONS(6743), 1, + anon_sym_as, + ACTIONS(6837), 1, + anon_sym_SLASH, + ACTIONS(6845), 1, + anon_sym_GT_GT, + ACTIONS(6851), 1, anon_sym_DOT_DOT, - STATE(2613), 1, + ACTIONS(6853), 1, + anon_sym_is, + STATE(3188), 1, sym_bracketed_argument_list, - STATE(3259), 1, + STATE(4584), 1, sym_argument_list, - ACTIONS(5287), 2, + ACTIONS(6615), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5664), 9, + ACTIONS(6831), 2, anon_sym_LT, anon_sym_GT, - anon_sym_QMARK, + ACTIONS(6833), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT_GT, - STATE(4473), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - ACTIONS(5660), 19, + ACTIONS(6835), 2, anon_sym_STAR, anon_sym_PERCENT, - anon_sym_CARET, + ACTIONS(6843), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, + ACTIONS(6847), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + ACTIONS(6849), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - anon_sym_EQ_GT, - anon_sym_when, + ACTIONS(5739), 3, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_AMP, + ACTIONS(5737), 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, - anon_sym_into, - anon_sym_as, - anon_sym_is, - [68104] = 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(4075), 1, - anon_sym_DOT, - ACTIONS(4077), 1, - anon_sym_DASH_GT, - ACTIONS(5247), 1, - anon_sym_LPAREN, - ACTIONS(5283), 1, - anon_sym_LBRACK, - ACTIONS(5285), 1, - anon_sym_BANG, - ACTIONS(6147), 1, - anon_sym_switch, - ACTIONS(6161), 1, - anon_sym_with, - ACTIONS(6819), 1, - anon_sym_DOT_DOT, - ACTIONS(6841), 1, - anon_sym_SLASH, - STATE(2613), 1, - sym_bracketed_argument_list, - STATE(3259), 1, - sym_argument_list, - ACTIONS(5287), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6837), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(6839), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(5664), 6, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT_GT, - STATE(4474), 9, + STATE(4414), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -586180,25 +580669,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5660), 17, - 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, - [68218] = 40, + [62719] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -586219,76 +580690,76 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4075), 1, + ACTIONS(4092), 1, anon_sym_DOT, - ACTIONS(4077), 1, + ACTIONS(4094), 1, anon_sym_DASH_GT, - ACTIONS(5247), 1, + ACTIONS(5227), 1, anon_sym_LPAREN, - ACTIONS(5283), 1, + ACTIONS(5236), 1, anon_sym_LBRACK, - ACTIONS(5285), 1, + ACTIONS(5238), 1, anon_sym_BANG, - ACTIONS(6147), 1, + ACTIONS(6017), 1, anon_sym_switch, - ACTIONS(6161), 1, + ACTIONS(6031), 1, anon_sym_with, - ACTIONS(6771), 1, + ACTIONS(6755), 1, anon_sym_SLASH, - ACTIONS(6775), 1, + ACTIONS(6757), 1, + anon_sym_CARET, + ACTIONS(6759), 1, + anon_sym_PIPE, + ACTIONS(6761), 1, + anon_sym_AMP, + ACTIONS(6765), 1, anon_sym_GT_GT, - ACTIONS(6777), 1, + ACTIONS(6771), 1, anon_sym_DOT_DOT, - ACTIONS(6863), 1, + ACTIONS(6773), 1, + anon_sym_AMP_AMP, + ACTIONS(6775), 1, anon_sym_as, - ACTIONS(6931), 1, - anon_sym_AMP, - ACTIONS(6937), 1, + ACTIONS(6777), 1, anon_sym_is, - ACTIONS(6939), 1, - anon_sym_CARET, - ACTIONS(6941), 1, - anon_sym_PIPE, - ACTIONS(6943), 1, - anon_sym_AMP_AMP, - ACTIONS(6945), 1, + ACTIONS(6855), 1, + anon_sym_QMARK, + ACTIONS(6857), 1, anon_sym_PIPE_PIPE, - ACTIONS(6947), 1, + ACTIONS(6859), 1, anon_sym_QMARK_QMARK, - ACTIONS(6949), 1, - anon_sym_QMARK, - STATE(2613), 1, + STATE(2605), 1, sym_bracketed_argument_list, - STATE(3259), 1, + STATE(3348), 1, sym_argument_list, - ACTIONS(5287), 2, + ACTIONS(5240), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6767), 2, + ACTIONS(6749), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(6751), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6769), 2, + ACTIONS(6753), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(6773), 2, + ACTIONS(6763), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(6929), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(6933), 2, + ACTIONS(6767), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6935), 2, + ACTIONS(6769), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5777), 5, - anon_sym_COLON, + ACTIONS(4996), 5, + anon_sym_EQ_GT, anon_sym_when, anon_sym_and, anon_sym_or, anon_sym_into, - STATE(4475), 9, + STATE(4415), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -586298,7 +580769,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [68358] = 40, + [62859] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -586319,76 +580790,76 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4075), 1, + ACTIONS(4427), 1, anon_sym_DOT, - ACTIONS(4077), 1, + ACTIONS(4429), 1, anon_sym_DASH_GT, - ACTIONS(5247), 1, + ACTIONS(6557), 1, anon_sym_LPAREN, - ACTIONS(5283), 1, + ACTIONS(6607), 1, anon_sym_LBRACK, - ACTIONS(5285), 1, + ACTIONS(6613), 1, anon_sym_BANG, - ACTIONS(6147), 1, + ACTIONS(6637), 1, anon_sym_switch, - ACTIONS(6161), 1, + ACTIONS(6651), 1, anon_sym_with, - ACTIONS(6771), 1, + ACTIONS(6743), 1, + anon_sym_as, + ACTIONS(6837), 1, anon_sym_SLASH, - ACTIONS(6775), 1, + ACTIONS(6839), 1, + anon_sym_CARET, + ACTIONS(6841), 1, + anon_sym_AMP, + ACTIONS(6845), 1, anon_sym_GT_GT, - ACTIONS(6777), 1, + ACTIONS(6851), 1, anon_sym_DOT_DOT, - ACTIONS(6863), 1, - anon_sym_as, - ACTIONS(6931), 1, - anon_sym_AMP, - ACTIONS(6937), 1, + ACTIONS(6853), 1, anon_sym_is, - ACTIONS(6939), 1, - anon_sym_CARET, - ACTIONS(6941), 1, + ACTIONS(6887), 1, anon_sym_PIPE, - ACTIONS(6943), 1, + ACTIONS(6929), 1, anon_sym_AMP_AMP, - ACTIONS(6945), 1, + ACTIONS(6937), 1, anon_sym_PIPE_PIPE, - ACTIONS(6947), 1, + ACTIONS(6939), 1, anon_sym_QMARK_QMARK, - ACTIONS(6949), 1, + ACTIONS(6947), 1, anon_sym_QMARK, - STATE(2613), 1, + STATE(3188), 1, sym_bracketed_argument_list, - STATE(3259), 1, + STATE(4584), 1, sym_argument_list, - ACTIONS(5287), 2, + ACTIONS(6615), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6767), 2, + ACTIONS(6831), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(6833), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6769), 2, + ACTIONS(6835), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(6773), 2, + ACTIONS(6843), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(6929), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(6933), 2, + ACTIONS(6847), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6935), 2, + ACTIONS(6849), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5864), 5, + ACTIONS(4996), 5, + sym_interpolation_close_brace, anon_sym_COLON, - anon_sym_when, + anon_sym_COMMA, anon_sym_and, anon_sym_or, - anon_sym_into, - STATE(4476), 9, + STATE(4416), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -586398,7 +580869,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [68498] = 40, + [62999] = 35, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -586419,76 +580890,71 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4075), 1, + ACTIONS(4092), 1, anon_sym_DOT, - ACTIONS(4077), 1, + ACTIONS(4094), 1, anon_sym_DASH_GT, - ACTIONS(5247), 1, + ACTIONS(5227), 1, anon_sym_LPAREN, - ACTIONS(5283), 1, + ACTIONS(5236), 1, anon_sym_LBRACK, - ACTIONS(5285), 1, + ACTIONS(5238), 1, anon_sym_BANG, - ACTIONS(6147), 1, + ACTIONS(6017), 1, anon_sym_switch, - ACTIONS(6161), 1, + ACTIONS(6031), 1, anon_sym_with, - ACTIONS(6771), 1, - anon_sym_SLASH, ACTIONS(6775), 1, - anon_sym_GT_GT, - ACTIONS(6777), 1, - anon_sym_DOT_DOT, - ACTIONS(6863), 1, anon_sym_as, - ACTIONS(6931), 1, + ACTIONS(6819), 1, + anon_sym_DOT_DOT, + ACTIONS(6905), 1, + anon_sym_SLASH, + ACTIONS(6911), 1, anon_sym_AMP, - ACTIONS(6937), 1, + ACTIONS(6915), 1, + anon_sym_GT_GT, + ACTIONS(6927), 1, anon_sym_is, - ACTIONS(6939), 1, - anon_sym_CARET, - ACTIONS(6941), 1, - anon_sym_PIPE, - ACTIONS(6943), 1, - anon_sym_AMP_AMP, - ACTIONS(6945), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6947), 1, - anon_sym_QMARK_QMARK, - ACTIONS(6949), 1, - anon_sym_QMARK, - STATE(2613), 1, + STATE(2605), 1, sym_bracketed_argument_list, - STATE(3259), 1, + STATE(3348), 1, sym_argument_list, - ACTIONS(5287), 2, + ACTIONS(5240), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6767), 2, + ACTIONS(5739), 2, + anon_sym_QMARK, + anon_sym_PIPE, + ACTIONS(6897), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(6901), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6769), 2, + ACTIONS(6903), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(6773), 2, + ACTIONS(6913), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(6929), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(6933), 2, + ACTIONS(6917), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6935), 2, + ACTIONS(6919), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5072), 5, + ACTIONS(5737), 9, 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(4477), 9, + STATE(4417), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -586498,7 +580964,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [68638] = 17, + [63129] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -586519,25 +580985,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4066), 1, - anon_sym_LBRACK, - ACTIONS(4072), 1, - anon_sym_STAR, - ACTIONS(6905), 1, - anon_sym_DOT, - ACTIONS(6951), 1, - anon_sym_QMARK, - ACTIONS(4016), 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(4478), 9, + ACTIONS(4241), 6, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_and, + anon_sym_or, + STATE(4418), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -586547,14 +581002,25 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(4018), 27, - sym_interpolation_close_brace, + ACTIONS(5144), 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(5142), 23, + 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, @@ -586565,17 +581031,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_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, - [68732] = 40, + [63217] = 34, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -586596,76 +581059,70 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4075), 1, + ACTIONS(4092), 1, anon_sym_DOT, - ACTIONS(4077), 1, + ACTIONS(4094), 1, anon_sym_DASH_GT, - ACTIONS(5247), 1, + ACTIONS(5227), 1, anon_sym_LPAREN, - ACTIONS(5283), 1, + ACTIONS(5236), 1, anon_sym_LBRACK, - ACTIONS(5285), 1, + ACTIONS(5238), 1, anon_sym_BANG, - ACTIONS(6147), 1, + ACTIONS(6017), 1, anon_sym_switch, - ACTIONS(6161), 1, + ACTIONS(6031), 1, anon_sym_with, - ACTIONS(6771), 1, - anon_sym_SLASH, ACTIONS(6775), 1, - anon_sym_GT_GT, - ACTIONS(6777), 1, - anon_sym_DOT_DOT, - ACTIONS(6863), 1, anon_sym_as, - ACTIONS(6931), 1, - anon_sym_AMP, - ACTIONS(6937), 1, + ACTIONS(6819), 1, + anon_sym_DOT_DOT, + ACTIONS(6905), 1, + anon_sym_SLASH, + ACTIONS(6915), 1, + anon_sym_GT_GT, + ACTIONS(6927), 1, anon_sym_is, - ACTIONS(6939), 1, - anon_sym_CARET, - ACTIONS(6941), 1, - anon_sym_PIPE, - ACTIONS(6943), 1, - anon_sym_AMP_AMP, - ACTIONS(6945), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6947), 1, - anon_sym_QMARK_QMARK, - ACTIONS(6949), 1, - anon_sym_QMARK, - STATE(2613), 1, + STATE(2605), 1, sym_bracketed_argument_list, - STATE(3259), 1, + STATE(3348), 1, sym_argument_list, - ACTIONS(5287), 2, + ACTIONS(5240), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6767), 2, + ACTIONS(6897), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(6901), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6769), 2, + ACTIONS(6903), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(6773), 2, + ACTIONS(6913), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(6929), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(6933), 2, + ACTIONS(6917), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6935), 2, + ACTIONS(6919), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5882), 5, + ACTIONS(5739), 3, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_AMP, + ACTIONS(5737), 9, 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(4479), 9, + STATE(4419), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -586675,7 +581132,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [68872] = 40, + [63345] = 33, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -586696,76 +581153,57 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4075), 1, + ACTIONS(4092), 1, anon_sym_DOT, - ACTIONS(4077), 1, + ACTIONS(4094), 1, anon_sym_DASH_GT, - ACTIONS(5247), 1, + ACTIONS(5227), 1, anon_sym_LPAREN, - ACTIONS(5283), 1, + ACTIONS(5236), 1, anon_sym_LBRACK, - ACTIONS(5285), 1, + ACTIONS(5238), 1, anon_sym_BANG, - ACTIONS(6147), 1, + ACTIONS(6017), 1, anon_sym_switch, - ACTIONS(6161), 1, + ACTIONS(6031), 1, anon_sym_with, - ACTIONS(6771), 1, - anon_sym_SLASH, ACTIONS(6775), 1, - anon_sym_GT_GT, - ACTIONS(6777), 1, - anon_sym_DOT_DOT, - ACTIONS(6863), 1, anon_sym_as, - ACTIONS(6931), 1, - anon_sym_AMP, - ACTIONS(6937), 1, + ACTIONS(6819), 1, + anon_sym_DOT_DOT, + ACTIONS(6905), 1, + anon_sym_SLASH, + ACTIONS(6915), 1, + anon_sym_GT_GT, + ACTIONS(6927), 1, anon_sym_is, - ACTIONS(6939), 1, - anon_sym_CARET, - ACTIONS(6941), 1, - anon_sym_PIPE, - ACTIONS(6943), 1, - anon_sym_AMP_AMP, - ACTIONS(6945), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6947), 1, - anon_sym_QMARK_QMARK, - ACTIONS(6949), 1, - anon_sym_QMARK, - STATE(2613), 1, + STATE(2605), 1, sym_bracketed_argument_list, - STATE(3259), 1, + STATE(3348), 1, sym_argument_list, - ACTIONS(5287), 2, + ACTIONS(5240), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6767), 2, + ACTIONS(6897), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(6901), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6769), 2, + ACTIONS(6903), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(6773), 2, + ACTIONS(6913), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(6929), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(6933), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(6935), 2, + ACTIONS(6919), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5899), 5, - anon_sym_COLON, - anon_sym_when, - anon_sym_and, - anon_sym_or, - anon_sym_into, - STATE(4480), 9, + ACTIONS(5739), 3, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_AMP, + STATE(4420), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -586775,7 +581213,19 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [69012] = 29, + ACTIONS(5737), 11, + anon_sym_COLON, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_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, + [63471] = 43, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -586796,49 +581246,79 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4755), 1, + ACTIONS(2675), 1, + aux_sym_preproc_else_token1, + ACTIONS(2677), 1, + aux_sym_preproc_elif_token1, + ACTIONS(4042), 1, + anon_sym_DOT, + ACTIONS(4044), 1, anon_sym_DASH_GT, - ACTIONS(4804), 1, + ACTIONS(5257), 1, anon_sym_LPAREN, - ACTIONS(4808), 1, - anon_sym_DOT, - ACTIONS(4835), 1, - anon_sym_LBRACK, - ACTIONS(4839), 1, + ACTIONS(5302), 1, anon_sym_BANG, - ACTIONS(6293), 1, + ACTIONS(5549), 1, + anon_sym_LBRACK, + ACTIONS(6355), 1, anon_sym_switch, - ACTIONS(6307), 1, + ACTIONS(6369), 1, anon_sym_with, - ACTIONS(6875), 1, + ACTIONS(6781), 1, + anon_sym_QMARK, + ACTIONS(6787), 1, anon_sym_SLASH, - ACTIONS(6885), 1, + ACTIONS(6789), 1, + anon_sym_CARET, + ACTIONS(6791), 1, + anon_sym_PIPE, + ACTIONS(6793), 1, + anon_sym_AMP, + ACTIONS(6797), 1, anon_sym_GT_GT, - ACTIONS(6891), 1, + ACTIONS(6803), 1, anon_sym_DOT_DOT, - STATE(2433), 1, + ACTIONS(6805), 1, + anon_sym_AMP_AMP, + ACTIONS(6807), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6809), 1, + anon_sym_QMARK_QMARK, + ACTIONS(6811), 1, + anon_sym_as, + ACTIONS(6813), 1, + anon_sym_is, + ACTIONS(6949), 1, + aux_sym_preproc_if_token3, + STATE(2467), 1, sym_bracketed_argument_list, - STATE(3035), 1, + STATE(3381), 1, sym_argument_list, - ACTIONS(4841), 2, + ACTIONS(5304), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6871), 2, + ACTIONS(6779), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(6783), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6873), 2, + ACTIONS(6785), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(6883), 2, + ACTIONS(6795), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(5664), 5, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_AMP, - STATE(4481), 9, + ACTIONS(6799), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6801), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + STATE(7321), 2, + sym_preproc_else_in_expression, + sym_preproc_elif_in_expression, + STATE(4421), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -586848,23 +581328,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5660), 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, - [69130] = 26, + [63617] = 37, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -586885,72 +581349,83 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4755), 1, + ACTIONS(4092), 1, + anon_sym_DOT, + ACTIONS(4094), 1, anon_sym_DASH_GT, - ACTIONS(4804), 1, + ACTIONS(5227), 1, anon_sym_LPAREN, - ACTIONS(4808), 1, - anon_sym_DOT, - ACTIONS(4835), 1, + ACTIONS(5236), 1, anon_sym_LBRACK, - ACTIONS(4839), 1, + ACTIONS(5238), 1, anon_sym_BANG, - ACTIONS(6293), 1, + ACTIONS(5739), 1, + anon_sym_QMARK, + ACTIONS(6017), 1, anon_sym_switch, - ACTIONS(6307), 1, + ACTIONS(6031), 1, anon_sym_with, - ACTIONS(6875), 1, - anon_sym_SLASH, - ACTIONS(6891), 1, + ACTIONS(6775), 1, + anon_sym_as, + ACTIONS(6819), 1, anon_sym_DOT_DOT, - STATE(2433), 1, + ACTIONS(6905), 1, + anon_sym_SLASH, + ACTIONS(6907), 1, + anon_sym_CARET, + ACTIONS(6909), 1, + anon_sym_PIPE, + ACTIONS(6911), 1, + anon_sym_AMP, + ACTIONS(6915), 1, + anon_sym_GT_GT, + ACTIONS(6927), 1, + anon_sym_is, + STATE(2605), 1, sym_bracketed_argument_list, - STATE(3035), 1, + STATE(3348), 1, sym_argument_list, - ACTIONS(4841), 2, + ACTIONS(5240), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6873), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(5664), 8, + ACTIONS(6897), 2, anon_sym_LT, anon_sym_GT, - anon_sym_QMARK, + ACTIONS(6901), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT_GT, - STATE(4482), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - ACTIONS(5660), 17, - anon_sym_COLON, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_CARET, + ACTIONS(6903), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(6913), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, + ACTIONS(6917), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + ACTIONS(6919), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, + ACTIONS(5737), 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, - [69242] = 22, + STATE(4422), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + [63751] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -586971,68 +581446,86 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4443), 1, - anon_sym_DASH_GT, - ACTIONS(4533), 1, + ACTIONS(4092), 1, anon_sym_DOT, - ACTIONS(6574), 1, + ACTIONS(4094), 1, + anon_sym_DASH_GT, + ACTIONS(5227), 1, anon_sym_LPAREN, - ACTIONS(6619), 1, + ACTIONS(5236), 1, anon_sym_LBRACK, - ACTIONS(6625), 1, + ACTIONS(5238), 1, anon_sym_BANG, - ACTIONS(6753), 1, + ACTIONS(5739), 1, + anon_sym_QMARK, + ACTIONS(6017), 1, + anon_sym_switch, + ACTIONS(6031), 1, + anon_sym_with, + ACTIONS(6755), 1, + anon_sym_SLASH, + ACTIONS(6757), 1, + anon_sym_CARET, + ACTIONS(6759), 1, + anon_sym_PIPE, + ACTIONS(6761), 1, + anon_sym_AMP, + ACTIONS(6765), 1, + anon_sym_GT_GT, + ACTIONS(6771), 1, anon_sym_DOT_DOT, - STATE(3173), 1, + ACTIONS(6773), 1, + anon_sym_AMP_AMP, + ACTIONS(6775), 1, + anon_sym_as, + ACTIONS(6777), 1, + anon_sym_is, + ACTIONS(6857), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6859), 1, + anon_sym_QMARK_QMARK, + STATE(2605), 1, sym_bracketed_argument_list, - STATE(4583), 1, + STATE(3348), 1, sym_argument_list, - ACTIONS(6627), 2, + ACTIONS(5240), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1223), 9, + ACTIONS(6749), 2, anon_sym_LT, anon_sym_GT, - anon_sym_QMARK, + ACTIONS(6751), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT_GT, - STATE(4483), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - ACTIONS(1221), 21, - sym_interpolation_close_brace, - anon_sym_COLON, - anon_sym_COMMA, + ACTIONS(6753), 2, anon_sym_STAR, anon_sym_PERCENT, - anon_sym_CARET, + ACTIONS(6763), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, + ACTIONS(6767), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + ACTIONS(6769), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - anon_sym_switch, + ACTIONS(5737), 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_as, - anon_sym_is, - anon_sym_with, - [69346] = 24, + anon_sym_into, + STATE(4423), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + [63891] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -587053,40 +581546,76 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4755), 1, + ACTIONS(4427), 1, + anon_sym_DOT, + ACTIONS(4429), 1, anon_sym_DASH_GT, - ACTIONS(4804), 1, + ACTIONS(6557), 1, anon_sym_LPAREN, - ACTIONS(4808), 1, - anon_sym_DOT, - ACTIONS(4835), 1, + ACTIONS(6607), 1, anon_sym_LBRACK, - ACTIONS(4839), 1, + ACTIONS(6613), 1, anon_sym_BANG, - ACTIONS(6293), 1, + ACTIONS(6637), 1, anon_sym_switch, - ACTIONS(6307), 1, + ACTIONS(6651), 1, anon_sym_with, - ACTIONS(6891), 1, + ACTIONS(6743), 1, + anon_sym_as, + ACTIONS(6837), 1, + anon_sym_SLASH, + ACTIONS(6839), 1, + anon_sym_CARET, + ACTIONS(6841), 1, + anon_sym_AMP, + ACTIONS(6845), 1, + anon_sym_GT_GT, + ACTIONS(6851), 1, anon_sym_DOT_DOT, - STATE(2433), 1, + ACTIONS(6853), 1, + anon_sym_is, + ACTIONS(6887), 1, + anon_sym_PIPE, + ACTIONS(6929), 1, + anon_sym_AMP_AMP, + ACTIONS(6937), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6939), 1, + anon_sym_QMARK_QMARK, + ACTIONS(6947), 1, + anon_sym_QMARK, + STATE(3188), 1, sym_bracketed_argument_list, - STATE(3035), 1, + STATE(4584), 1, sym_argument_list, - ACTIONS(4841), 2, + ACTIONS(6615), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5664), 9, + ACTIONS(6831), 2, anon_sym_LT, anon_sym_GT, - anon_sym_QMARK, + ACTIONS(6833), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT_GT, - STATE(4484), 9, + ACTIONS(6835), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(6843), 2, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + ACTIONS(6847), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6849), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(5709), 5, + sym_interpolation_close_brace, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_and, + anon_sym_or, + STATE(4424), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -587096,27 +581625,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5660), 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, - [69454] = 35, + [64031] = 38, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -587137,71 +581646,74 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4755), 1, + ACTIONS(4092), 1, + anon_sym_DOT, + ACTIONS(4094), 1, anon_sym_DASH_GT, - ACTIONS(4804), 1, + ACTIONS(5227), 1, anon_sym_LPAREN, - ACTIONS(4808), 1, - anon_sym_DOT, - ACTIONS(4835), 1, + ACTIONS(5236), 1, anon_sym_LBRACK, - ACTIONS(4839), 1, + ACTIONS(5238), 1, anon_sym_BANG, - ACTIONS(6293), 1, + ACTIONS(5739), 1, + anon_sym_QMARK, + ACTIONS(6017), 1, anon_sym_switch, - ACTIONS(6307), 1, + ACTIONS(6031), 1, anon_sym_with, - ACTIONS(6393), 1, + ACTIONS(6775), 1, anon_sym_as, - ACTIONS(6875), 1, + ACTIONS(6819), 1, + anon_sym_DOT_DOT, + ACTIONS(6905), 1, anon_sym_SLASH, - ACTIONS(6881), 1, + ACTIONS(6907), 1, + anon_sym_CARET, + ACTIONS(6909), 1, + anon_sym_PIPE, + ACTIONS(6911), 1, anon_sym_AMP, - ACTIONS(6885), 1, + ACTIONS(6915), 1, anon_sym_GT_GT, - ACTIONS(6891), 1, - anon_sym_DOT_DOT, - ACTIONS(6893), 1, + ACTIONS(6921), 1, + anon_sym_AMP_AMP, + ACTIONS(6927), 1, anon_sym_is, - STATE(2433), 1, + STATE(2605), 1, sym_bracketed_argument_list, - STATE(3035), 1, + STATE(3348), 1, sym_argument_list, - ACTIONS(4841), 2, + ACTIONS(5240), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5664), 2, - anon_sym_QMARK, - anon_sym_PIPE, - ACTIONS(6869), 2, + ACTIONS(6897), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(6871), 2, + ACTIONS(6901), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6873), 2, + ACTIONS(6903), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(6883), 2, + ACTIONS(6913), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(6887), 2, + ACTIONS(6917), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6889), 2, + ACTIONS(6919), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5660), 9, + ACTIONS(5737), 7, anon_sym_COLON, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_CARET, - anon_sym_AMP_AMP, + anon_sym_when, + anon_sym_and, + anon_sym_or, anon_sym_PIPE_PIPE, anon_sym_QMARK_QMARK, anon_sym_into, - STATE(4485), 9, + STATE(4425), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -587211,7 +581723,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [69584] = 36, + [64167] = 22, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -587232,82 +581744,68 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4755), 1, + ACTIONS(4427), 1, + anon_sym_DOT, + ACTIONS(4429), 1, anon_sym_DASH_GT, - ACTIONS(4804), 1, + ACTIONS(6557), 1, anon_sym_LPAREN, - ACTIONS(4808), 1, - anon_sym_DOT, - ACTIONS(4835), 1, + ACTIONS(6607), 1, anon_sym_LBRACK, - ACTIONS(4839), 1, + ACTIONS(6613), 1, anon_sym_BANG, - ACTIONS(6293), 1, - anon_sym_switch, - ACTIONS(6307), 1, - anon_sym_with, - ACTIONS(6393), 1, - anon_sym_as, - ACTIONS(6875), 1, - anon_sym_SLASH, - ACTIONS(6877), 1, - anon_sym_CARET, - ACTIONS(6881), 1, - anon_sym_AMP, - ACTIONS(6885), 1, - anon_sym_GT_GT, - ACTIONS(6891), 1, + ACTIONS(6851), 1, anon_sym_DOT_DOT, - ACTIONS(6893), 1, - anon_sym_is, - STATE(2433), 1, + STATE(3188), 1, sym_bracketed_argument_list, - STATE(3035), 1, + STATE(4584), 1, sym_argument_list, - ACTIONS(4841), 2, + ACTIONS(6615), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5664), 2, - anon_sym_QMARK, - anon_sym_PIPE, - ACTIONS(6869), 2, + ACTIONS(5743), 9, anon_sym_LT, anon_sym_GT, - ACTIONS(6871), 2, + anon_sym_QMARK, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6873), 2, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT_GT, + STATE(4426), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + ACTIONS(5741), 21, + sym_interpolation_close_brace, + anon_sym_COLON, + anon_sym_COMMA, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(6883), 2, + anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(6887), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6889), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5660), 8, - 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(4486), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - [69716] = 34, + anon_sym_as, + anon_sym_is, + anon_sym_with, + [64271] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -587328,70 +581826,76 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4755), 1, + ACTIONS(4092), 1, + anon_sym_DOT, + ACTIONS(4094), 1, anon_sym_DASH_GT, - ACTIONS(4804), 1, + ACTIONS(5227), 1, anon_sym_LPAREN, - ACTIONS(4808), 1, - anon_sym_DOT, - ACTIONS(4835), 1, + ACTIONS(5236), 1, anon_sym_LBRACK, - ACTIONS(4839), 1, + ACTIONS(5238), 1, anon_sym_BANG, - ACTIONS(6293), 1, + ACTIONS(5739), 1, + anon_sym_QMARK, + ACTIONS(6017), 1, anon_sym_switch, - ACTIONS(6307), 1, + ACTIONS(6031), 1, anon_sym_with, - ACTIONS(6393), 1, + ACTIONS(6775), 1, anon_sym_as, - ACTIONS(6875), 1, + ACTIONS(6819), 1, + anon_sym_DOT_DOT, + ACTIONS(6905), 1, anon_sym_SLASH, - ACTIONS(6885), 1, + ACTIONS(6907), 1, + anon_sym_CARET, + ACTIONS(6909), 1, + anon_sym_PIPE, + ACTIONS(6911), 1, + anon_sym_AMP, + ACTIONS(6915), 1, anon_sym_GT_GT, - ACTIONS(6891), 1, - anon_sym_DOT_DOT, - ACTIONS(6893), 1, + ACTIONS(6921), 1, + anon_sym_AMP_AMP, + ACTIONS(6923), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6925), 1, + anon_sym_QMARK_QMARK, + ACTIONS(6927), 1, anon_sym_is, - STATE(2433), 1, + STATE(2605), 1, sym_bracketed_argument_list, - STATE(3035), 1, + STATE(3348), 1, sym_argument_list, - ACTIONS(4841), 2, + ACTIONS(5240), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6869), 2, + ACTIONS(6897), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(6871), 2, + ACTIONS(6901), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6873), 2, + ACTIONS(6903), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(6883), 2, + ACTIONS(6913), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(6887), 2, + ACTIONS(6917), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6889), 2, + ACTIONS(6919), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5664), 3, - anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_AMP, - ACTIONS(5660), 9, + ACTIONS(5737), 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_when, + anon_sym_and, + anon_sym_or, anon_sym_into, - STATE(4487), 9, + STATE(4427), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -587401,7 +581905,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [69844] = 44, + [64411] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -587422,80 +581926,76 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4443), 1, - anon_sym_DASH_GT, - ACTIONS(4533), 1, + ACTIONS(4427), 1, anon_sym_DOT, - ACTIONS(6574), 1, + ACTIONS(4429), 1, + anon_sym_DASH_GT, + ACTIONS(6557), 1, anon_sym_LPAREN, - ACTIONS(6619), 1, + ACTIONS(6607), 1, anon_sym_LBRACK, - ACTIONS(6625), 1, + ACTIONS(6613), 1, anon_sym_BANG, - ACTIONS(6649), 1, + ACTIONS(6637), 1, anon_sym_switch, - ACTIONS(6663), 1, + ACTIONS(6651), 1, anon_sym_with, - ACTIONS(6761), 1, + ACTIONS(6743), 1, anon_sym_as, - ACTIONS(6956), 1, - anon_sym_COLON, - ACTIONS(6958), 1, - anon_sym_COMMA, - ACTIONS(6962), 1, - anon_sym_QMARK, - ACTIONS(6968), 1, + ACTIONS(6837), 1, anon_sym_SLASH, - ACTIONS(6970), 1, + ACTIONS(6839), 1, anon_sym_CARET, - ACTIONS(6972), 1, - anon_sym_PIPE, - ACTIONS(6974), 1, + ACTIONS(6841), 1, anon_sym_AMP, - ACTIONS(6978), 1, + ACTIONS(6845), 1, anon_sym_GT_GT, - ACTIONS(6984), 1, + ACTIONS(6851), 1, anon_sym_DOT_DOT, - ACTIONS(6986), 1, + ACTIONS(6853), 1, + anon_sym_is, + ACTIONS(6887), 1, + anon_sym_PIPE, + ACTIONS(6929), 1, anon_sym_AMP_AMP, - ACTIONS(6988), 1, + ACTIONS(6937), 1, anon_sym_PIPE_PIPE, - ACTIONS(6990), 1, + ACTIONS(6939), 1, anon_sym_QMARK_QMARK, - ACTIONS(6992), 1, - anon_sym_is, - ACTIONS(6994), 1, - sym_interpolation_close_brace, - STATE(3173), 1, + ACTIONS(6947), 1, + anon_sym_QMARK, + STATE(3188), 1, sym_bracketed_argument_list, - STATE(4583), 1, + STATE(4584), 1, sym_argument_list, - STATE(6867), 1, - sym_interpolation_alignment_clause, - STATE(7345), 1, - sym_interpolation_format_clause, - ACTIONS(6627), 2, + ACTIONS(6615), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6960), 2, + ACTIONS(6831), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(6964), 2, + ACTIONS(6833), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6966), 2, + ACTIONS(6835), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(6976), 2, + ACTIONS(6843), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(6980), 2, + ACTIONS(6847), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6982), 2, + ACTIONS(6849), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - STATE(4488), 9, + ACTIONS(5865), 5, + sym_interpolation_close_brace, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_and, + anon_sym_or, + STATE(4428), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -587505,7 +582005,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [69992] = 27, + [64551] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -587526,45 +582026,76 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4755), 1, + ACTIONS(4092), 1, + anon_sym_DOT, + ACTIONS(4094), 1, anon_sym_DASH_GT, - ACTIONS(4804), 1, + ACTIONS(5227), 1, anon_sym_LPAREN, - ACTIONS(4808), 1, - anon_sym_DOT, - ACTIONS(4835), 1, + ACTIONS(5236), 1, anon_sym_LBRACK, - ACTIONS(4839), 1, + ACTIONS(5238), 1, anon_sym_BANG, - ACTIONS(6293), 1, + ACTIONS(6017), 1, anon_sym_switch, - ACTIONS(6307), 1, + ACTIONS(6031), 1, anon_sym_with, - ACTIONS(6875), 1, + ACTIONS(6755), 1, anon_sym_SLASH, - ACTIONS(6891), 1, + ACTIONS(6757), 1, + anon_sym_CARET, + ACTIONS(6759), 1, + anon_sym_PIPE, + ACTIONS(6761), 1, + anon_sym_AMP, + ACTIONS(6765), 1, + anon_sym_GT_GT, + ACTIONS(6771), 1, anon_sym_DOT_DOT, - STATE(2433), 1, + ACTIONS(6773), 1, + anon_sym_AMP_AMP, + ACTIONS(6775), 1, + anon_sym_as, + ACTIONS(6777), 1, + anon_sym_is, + ACTIONS(6855), 1, + anon_sym_QMARK, + ACTIONS(6857), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6859), 1, + anon_sym_QMARK_QMARK, + STATE(2605), 1, sym_bracketed_argument_list, - STATE(3035), 1, + STATE(3348), 1, sym_argument_list, - ACTIONS(4841), 2, + ACTIONS(5240), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6871), 2, + ACTIONS(6749), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(6751), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6873), 2, + ACTIONS(6753), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(5664), 6, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT_GT, - STATE(4489), 9, + ACTIONS(6763), 2, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + ACTIONS(6767), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6769), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(5652), 5, + anon_sym_EQ_GT, + anon_sym_when, + anon_sym_and, + anon_sym_or, + anon_sym_into, + STATE(4429), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -587574,25 +582105,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5660), 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, - 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, - [70106] = 33, + [64691] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -587613,57 +582126,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4755), 1, - anon_sym_DASH_GT, - ACTIONS(4804), 1, - anon_sym_LPAREN, - ACTIONS(4808), 1, - anon_sym_DOT, - ACTIONS(4835), 1, - anon_sym_LBRACK, - ACTIONS(4839), 1, - anon_sym_BANG, - ACTIONS(6293), 1, - anon_sym_switch, - ACTIONS(6307), 1, - anon_sym_with, - ACTIONS(6393), 1, - anon_sym_as, - ACTIONS(6875), 1, - anon_sym_SLASH, - ACTIONS(6885), 1, - anon_sym_GT_GT, - ACTIONS(6891), 1, - anon_sym_DOT_DOT, - ACTIONS(6893), 1, - anon_sym_is, - STATE(2433), 1, - sym_bracketed_argument_list, - STATE(3035), 1, - sym_argument_list, - ACTIONS(4841), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6869), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(6871), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(6873), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(6883), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - ACTIONS(6889), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(5664), 3, - anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_AMP, - STATE(4490), 9, + STATE(4430), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -587673,19 +582136,49 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5660), 11, + ACTIONS(4100), 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(4102), 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, + 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, - [70232] = 17, + anon_sym_as, + anon_sym_is, + anon_sym_DASH_GT, + anon_sym_with, + [64777] = 27, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -587706,18 +582199,40 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4726), 1, + ACTIONS(2965), 1, + sym__identifier_token, + ACTIONS(2977), 1, anon_sym_LPAREN, - ACTIONS(6996), 1, - anon_sym_LBRACK, - ACTIONS(6999), 1, - aux_sym_preproc_if_token1, - STATE(5577), 1, - sym__attribute_list, - STATE(5576), 2, - sym_attribute_list, - sym_preproc_if_in_attribute_list, - STATE(4491), 10, + ACTIONS(3438), 1, + anon_sym_delegate, + ACTIONS(6563), 1, + sym_predefined_type, + STATE(3654), 1, + sym__reserved_identifier, + STATE(4073), 1, + sym_generic_name, + STATE(4081), 1, + sym_identifier, + STATE(6015), 1, + sym_array_type, + STATE(6017), 1, + sym_nullable_type, + STATE(6665), 1, + sym__name, + STATE(6777), 1, + sym_tuple_type, + STATE(7233), 1, + sym__array_base_type, + STATE(7357), 1, + sym__pointer_base_type, + STATE(7189), 2, + sym_pointer_type, + sym_function_pointer_type, + STATE(4068), 3, + sym_alias_qualified_name, + sym__simple_name, + sym_qualified_name, + STATE(4431), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -587727,26 +582242,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(4721), 33, + ACTIONS(2969), 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, @@ -587761,8 +582265,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - sym__identifier_token, - [70326] = 15, + [64891] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -587783,11 +582286,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(6927), 1, - anon_sym_into, - STATE(4493), 1, - aux_sym__query_body_repeat2, - STATE(4492), 9, + STATE(4432), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -587797,7 +582296,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(6001), 11, + ACTIONS(3984), 11, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, @@ -587809,12 +582308,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT, - ACTIONS(5999), 27, + ACTIONS(3986), 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, @@ -587833,11 +582333,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, - [70416] = 15, + [64977] = 29, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -587858,11 +582359,49 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(6927), 1, - anon_sym_into, - STATE(4495), 1, - aux_sym__query_body_repeat2, - STATE(4493), 9, + ACTIONS(4092), 1, + anon_sym_DOT, + ACTIONS(4094), 1, + anon_sym_DASH_GT, + ACTIONS(5227), 1, + anon_sym_LPAREN, + ACTIONS(5236), 1, + anon_sym_LBRACK, + ACTIONS(5238), 1, + anon_sym_BANG, + ACTIONS(6017), 1, + anon_sym_switch, + ACTIONS(6031), 1, + anon_sym_with, + ACTIONS(6755), 1, + anon_sym_SLASH, + ACTIONS(6765), 1, + anon_sym_GT_GT, + ACTIONS(6771), 1, + anon_sym_DOT_DOT, + STATE(2605), 1, + sym_bracketed_argument_list, + STATE(3348), 1, + sym_argument_list, + ACTIONS(5240), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6751), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6753), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(6763), 2, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + ACTIONS(5739), 5, + anon_sym_LT, + anon_sym_GT, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_AMP, + STATE(4433), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -587872,47 +582411,218 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(6005), 11, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, + ACTIONS(5737), 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, + [65095] = 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(4427), 1, + anon_sym_DOT, + ACTIONS(4429), 1, + anon_sym_DASH_GT, + ACTIONS(6557), 1, + anon_sym_LPAREN, + ACTIONS(6607), 1, + anon_sym_LBRACK, + ACTIONS(6613), 1, anon_sym_BANG, - anon_sym_PLUS, - anon_sym_DASH, + ACTIONS(6637), 1, + anon_sym_switch, + ACTIONS(6651), 1, + anon_sym_with, + ACTIONS(6743), 1, + anon_sym_as, + ACTIONS(6837), 1, anon_sym_SLASH, - anon_sym_PIPE, + ACTIONS(6841), 1, anon_sym_AMP, + ACTIONS(6845), 1, anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(6003), 27, - sym_interpolation_close_brace, - anon_sym_LBRACK, - anon_sym_COLON, - anon_sym_COMMA, - anon_sym_LPAREN, + ACTIONS(6851), 1, + anon_sym_DOT_DOT, + ACTIONS(6853), 1, + anon_sym_is, + STATE(3188), 1, + sym_bracketed_argument_list, + STATE(4584), 1, + sym_argument_list, + ACTIONS(5739), 2, + anon_sym_QMARK, + anon_sym_PIPE, + ACTIONS(6615), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + ACTIONS(6831), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(6833), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6835), 2, anon_sym_STAR, anon_sym_PERCENT, - anon_sym_CARET, + ACTIONS(6843), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, + ACTIONS(6847), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + ACTIONS(6849), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - anon_sym_switch, - anon_sym_DOT_DOT, + ACTIONS(5737), 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, - anon_sym_as, - anon_sym_is, + 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, + [65225] = 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(4427), 1, + anon_sym_DOT, + ACTIONS(4429), 1, anon_sym_DASH_GT, + ACTIONS(6557), 1, + anon_sym_LPAREN, + ACTIONS(6607), 1, + anon_sym_LBRACK, + ACTIONS(6613), 1, + anon_sym_BANG, + ACTIONS(6637), 1, + anon_sym_switch, + ACTIONS(6651), 1, anon_sym_with, - [70506] = 15, + ACTIONS(6743), 1, + anon_sym_as, + ACTIONS(6837), 1, + anon_sym_SLASH, + ACTIONS(6839), 1, + anon_sym_CARET, + ACTIONS(6841), 1, + anon_sym_AMP, + ACTIONS(6845), 1, + anon_sym_GT_GT, + ACTIONS(6851), 1, + anon_sym_DOT_DOT, + ACTIONS(6853), 1, + anon_sym_is, + ACTIONS(6887), 1, + anon_sym_PIPE, + ACTIONS(6929), 1, + anon_sym_AMP_AMP, + ACTIONS(6937), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6939), 1, + anon_sym_QMARK_QMARK, + ACTIONS(6947), 1, + anon_sym_QMARK, + STATE(3188), 1, + sym_bracketed_argument_list, + STATE(4584), 1, + sym_argument_list, + ACTIONS(6615), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6831), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(6833), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6835), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(6843), 2, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + ACTIONS(6847), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6849), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(5801), 5, + sym_interpolation_close_brace, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_and, + anon_sym_or, + STATE(4435), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + [65365] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -587933,11 +582643,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(6927), 1, - anon_sym_into, - STATE(4429), 1, - aux_sym__query_body_repeat2, - STATE(4494), 9, + STATE(4436), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -587947,7 +582653,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(6005), 11, + ACTIONS(4000), 11, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, @@ -587959,12 +582665,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT, - ACTIONS(6003), 27, + ACTIONS(4002), 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, @@ -587983,11 +582690,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, - [70596] = 14, + [65451] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -588008,9 +582716,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(7002), 1, - anon_sym_into, - STATE(4495), 10, + STATE(4437), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -588020,8 +582726,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - aux_sym__query_body_repeat2, - ACTIONS(5951), 11, + ACTIONS(3909), 11, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, @@ -588033,12 +582738,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT, - ACTIONS(5949), 27, + ACTIONS(3911), 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, @@ -588057,11 +582763,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, - [70684] = 36, + [65537] = 43, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -588082,72 +582789,79 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4443), 1, - anon_sym_DASH_GT, - ACTIONS(4533), 1, + ACTIONS(2675), 1, + aux_sym_preproc_else_token1, + ACTIONS(2677), 1, + aux_sym_preproc_elif_token1, + ACTIONS(4042), 1, anon_sym_DOT, - ACTIONS(6574), 1, + ACTIONS(4044), 1, + anon_sym_DASH_GT, + ACTIONS(5257), 1, anon_sym_LPAREN, - ACTIONS(6619), 1, - anon_sym_LBRACK, - ACTIONS(6625), 1, + ACTIONS(5302), 1, anon_sym_BANG, - ACTIONS(6649), 1, + ACTIONS(5549), 1, + anon_sym_LBRACK, + ACTIONS(6355), 1, anon_sym_switch, - ACTIONS(6663), 1, + ACTIONS(6369), 1, anon_sym_with, - ACTIONS(6737), 1, + ACTIONS(6781), 1, + anon_sym_QMARK, + ACTIONS(6787), 1, anon_sym_SLASH, - ACTIONS(6739), 1, + ACTIONS(6789), 1, anon_sym_CARET, - ACTIONS(6743), 1, + ACTIONS(6791), 1, + anon_sym_PIPE, + ACTIONS(6793), 1, anon_sym_AMP, - ACTIONS(6747), 1, + ACTIONS(6797), 1, anon_sym_GT_GT, - ACTIONS(6753), 1, + ACTIONS(6803), 1, anon_sym_DOT_DOT, - ACTIONS(6761), 1, + ACTIONS(6805), 1, + anon_sym_AMP_AMP, + ACTIONS(6807), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6809), 1, + anon_sym_QMARK_QMARK, + ACTIONS(6811), 1, anon_sym_as, - ACTIONS(6763), 1, + ACTIONS(6813), 1, anon_sym_is, - STATE(3173), 1, + ACTIONS(6951), 1, + aux_sym_preproc_if_token3, + STATE(2467), 1, sym_bracketed_argument_list, - STATE(4583), 1, + STATE(3381), 1, sym_argument_list, - ACTIONS(5664), 2, - anon_sym_QMARK, - anon_sym_PIPE, - ACTIONS(6627), 2, + ACTIONS(5304), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6731), 2, + ACTIONS(6779), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(6733), 2, + ACTIONS(6783), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6735), 2, + ACTIONS(6785), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(6745), 2, + ACTIONS(6795), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(6749), 2, + ACTIONS(6799), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6751), 2, + ACTIONS(6801), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5660), 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(4496), 9, + STATE(7481), 2, + sym_preproc_else_in_expression, + sym_preproc_elif_in_expression, + STATE(4438), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -588157,7 +582871,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [70816] = 27, + [65683] = 22, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -588178,45 +582892,35 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4443), 1, - anon_sym_DASH_GT, - ACTIONS(4533), 1, - anon_sym_DOT, - ACTIONS(6574), 1, - anon_sym_LPAREN, - ACTIONS(6619), 1, + ACTIONS(25), 1, + sym__identifier_token, + ACTIONS(5577), 1, + anon_sym_ref, + STATE(2168), 1, + sym__reserved_identifier, + STATE(2170), 1, + sym_generic_name, + STATE(2331), 1, + sym_ref_type, + STATE(2339), 1, + sym__scoped_base_type, + STATE(4370), 1, + sym_identifier, + STATE(5130), 1, + sym__name, + STATE(4068), 3, + sym_alias_qualified_name, + sym__simple_name, + sym_qualified_name, + ACTIONS(3429), 7, anon_sym_LBRACK, - ACTIONS(6625), 1, - anon_sym_BANG, - ACTIONS(6649), 1, - anon_sym_switch, - ACTIONS(6663), 1, - anon_sym_with, - ACTIONS(7009), 1, - anon_sym_SLASH, - ACTIONS(7011), 1, - anon_sym_DOT_DOT, - STATE(3173), 1, - sym_bracketed_argument_list, - STATE(4583), 1, - sym_argument_list, - ACTIONS(6627), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(7005), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(7007), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(5664), 6, + anon_sym_LPAREN, anon_sym_LT, - anon_sym_GT, anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT_GT, - STATE(4497), 9, + anon_sym_STAR, + anon_sym_DOT, + anon_sym_COLON_COLON, + STATE(4439), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -588226,24 +582930,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5660), 16, - 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, + 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, - [70929] = 37, + 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, + [65787] = 34, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -588264,72 +582974,70 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4100), 1, + ACTIONS(4753), 1, + anon_sym_LPAREN, + ACTIONS(4792), 1, anon_sym_DOT, - ACTIONS(4102), 1, + ACTIONS(4794), 1, anon_sym_DASH_GT, - ACTIONS(5264), 1, - anon_sym_LPAREN, - ACTIONS(5304), 1, - anon_sym_BANG, - ACTIONS(5573), 1, + ACTIONS(4819), 1, anon_sym_LBRACK, - ACTIONS(5664), 1, - anon_sym_QMARK, - ACTIONS(6343), 1, + ACTIONS(4823), 1, + anon_sym_BANG, + ACTIONS(6264), 1, anon_sym_switch, - ACTIONS(6357), 1, + ACTIONS(6278), 1, anon_sym_with, - ACTIONS(7019), 1, + ACTIONS(6327), 1, + anon_sym_as, + ACTIONS(6817), 1, + anon_sym_DOT_DOT, + ACTIONS(6829), 1, anon_sym_SLASH, - ACTIONS(7021), 1, - anon_sym_CARET, - ACTIONS(7023), 1, - anon_sym_PIPE, - ACTIONS(7025), 1, - anon_sym_AMP, - ACTIONS(7029), 1, + ACTIONS(6867), 1, anon_sym_GT_GT, - ACTIONS(7035), 1, - anon_sym_DOT_DOT, - ACTIONS(7037), 1, - anon_sym_as, - ACTIONS(7039), 1, + ACTIONS(6873), 1, anon_sym_is, - STATE(2485), 1, + STATE(2419), 1, sym_bracketed_argument_list, - STATE(3487), 1, + STATE(2958), 1, sym_argument_list, - ACTIONS(5306), 2, + ACTIONS(4825), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7013), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(7015), 2, + ACTIONS(6825), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7017), 2, + ACTIONS(6827), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7027), 2, + ACTIONS(6861), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(6865), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7031), 2, + ACTIONS(6869), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7033), 2, + ACTIONS(6871), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5660), 7, + ACTIONS(5739), 3, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_AMP, + ACTIONS(5737), 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, - STATE(4498), 9, + anon_sym_into, + STATE(4440), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -588339,7 +583047,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [71062] = 38, + [65915] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -588360,73 +583068,76 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4100), 1, + ACTIONS(4427), 1, anon_sym_DOT, - ACTIONS(4102), 1, + ACTIONS(4429), 1, anon_sym_DASH_GT, - ACTIONS(5264), 1, + ACTIONS(6557), 1, anon_sym_LPAREN, - ACTIONS(5304), 1, - anon_sym_BANG, - ACTIONS(5573), 1, + ACTIONS(6607), 1, anon_sym_LBRACK, - ACTIONS(5664), 1, - anon_sym_QMARK, - ACTIONS(6343), 1, + ACTIONS(6613), 1, + anon_sym_BANG, + ACTIONS(6637), 1, anon_sym_switch, - ACTIONS(6357), 1, + ACTIONS(6651), 1, anon_sym_with, - ACTIONS(7019), 1, + ACTIONS(6743), 1, + anon_sym_as, + ACTIONS(6837), 1, anon_sym_SLASH, - ACTIONS(7021), 1, + ACTIONS(6839), 1, anon_sym_CARET, - ACTIONS(7023), 1, - anon_sym_PIPE, - ACTIONS(7025), 1, + ACTIONS(6841), 1, anon_sym_AMP, - ACTIONS(7029), 1, + ACTIONS(6845), 1, anon_sym_GT_GT, - ACTIONS(7035), 1, + ACTIONS(6851), 1, anon_sym_DOT_DOT, - ACTIONS(7037), 1, - anon_sym_as, - ACTIONS(7039), 1, + ACTIONS(6853), 1, anon_sym_is, - ACTIONS(7041), 1, + ACTIONS(6887), 1, + anon_sym_PIPE, + ACTIONS(6929), 1, anon_sym_AMP_AMP, - STATE(2485), 1, + ACTIONS(6937), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6939), 1, + anon_sym_QMARK_QMARK, + ACTIONS(6947), 1, + anon_sym_QMARK, + STATE(3188), 1, sym_bracketed_argument_list, - STATE(3487), 1, + STATE(4584), 1, sym_argument_list, - ACTIONS(5306), 2, + ACTIONS(6615), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7013), 2, + ACTIONS(6831), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7015), 2, + ACTIONS(6833), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7017), 2, + ACTIONS(6835), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7027), 2, + ACTIONS(6843), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7031), 2, + ACTIONS(6847), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7033), 2, + ACTIONS(6849), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5660), 6, + ACTIONS(5652), 5, + sym_interpolation_close_brace, anon_sym_COLON, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_PIPE_PIPE, - anon_sym_QMARK_QMARK, - STATE(4499), 9, + anon_sym_and, + anon_sym_or, + STATE(4441), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -588436,7 +583147,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [71197] = 40, + [66055] = 38, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -588457,75 +583168,74 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4100), 1, + ACTIONS(4753), 1, + anon_sym_LPAREN, + ACTIONS(4792), 1, anon_sym_DOT, - ACTIONS(4102), 1, + ACTIONS(4794), 1, anon_sym_DASH_GT, - ACTIONS(5264), 1, - anon_sym_LPAREN, - ACTIONS(5304), 1, - anon_sym_BANG, - ACTIONS(5573), 1, + ACTIONS(4819), 1, anon_sym_LBRACK, - ACTIONS(5664), 1, + ACTIONS(4823), 1, + anon_sym_BANG, + ACTIONS(5739), 1, anon_sym_QMARK, - ACTIONS(6343), 1, + ACTIONS(6264), 1, anon_sym_switch, - ACTIONS(6357), 1, + ACTIONS(6278), 1, anon_sym_with, - ACTIONS(7019), 1, + ACTIONS(6327), 1, + anon_sym_as, + ACTIONS(6817), 1, + anon_sym_DOT_DOT, + ACTIONS(6829), 1, anon_sym_SLASH, - ACTIONS(7021), 1, - anon_sym_CARET, - ACTIONS(7023), 1, - anon_sym_PIPE, - ACTIONS(7025), 1, + ACTIONS(6863), 1, anon_sym_AMP, - ACTIONS(7029), 1, + ACTIONS(6867), 1, anon_sym_GT_GT, - ACTIONS(7035), 1, - anon_sym_DOT_DOT, - ACTIONS(7037), 1, - anon_sym_as, - ACTIONS(7039), 1, + ACTIONS(6873), 1, anon_sym_is, - ACTIONS(7041), 1, + ACTIONS(6877), 1, + anon_sym_CARET, + ACTIONS(6879), 1, + anon_sym_PIPE, + ACTIONS(6881), 1, anon_sym_AMP_AMP, - ACTIONS(7043), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7045), 1, - anon_sym_QMARK_QMARK, - STATE(2485), 1, + STATE(2419), 1, sym_bracketed_argument_list, - STATE(3487), 1, + STATE(2958), 1, sym_argument_list, - ACTIONS(5306), 2, + ACTIONS(4825), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7013), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(7015), 2, + ACTIONS(6825), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7017), 2, + ACTIONS(6827), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7027), 2, + ACTIONS(6861), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(6865), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7031), 2, + ACTIONS(6869), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7033), 2, + ACTIONS(6871), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5660), 4, + ACTIONS(5737), 7, anon_sym_COLON, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_RBRACE, - STATE(4500), 9, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, + anon_sym_into, + STATE(4442), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -588535,7 +583245,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [71336] = 40, + [66191] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -588556,85 +583266,59 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4100), 1, - anon_sym_DOT, - ACTIONS(4102), 1, - anon_sym_DASH_GT, - ACTIONS(5264), 1, - anon_sym_LPAREN, - ACTIONS(5304), 1, + STATE(4443), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + ACTIONS(4058), 11, + anon_sym_LT, + anon_sym_GT, + anon_sym_QMARK, anon_sym_BANG, - ACTIONS(5573), 1, - anon_sym_LBRACK, - ACTIONS(6343), 1, - anon_sym_switch, - ACTIONS(6357), 1, - anon_sym_with, - ACTIONS(7019), 1, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_SLASH, - ACTIONS(7021), 1, - anon_sym_CARET, - ACTIONS(7023), 1, anon_sym_PIPE, - ACTIONS(7025), 1, anon_sym_AMP, - ACTIONS(7029), 1, anon_sym_GT_GT, - ACTIONS(7035), 1, - anon_sym_DOT_DOT, - ACTIONS(7037), 1, - anon_sym_as, - ACTIONS(7039), 1, - anon_sym_is, - ACTIONS(7041), 1, - anon_sym_AMP_AMP, - ACTIONS(7043), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7045), 1, - anon_sym_QMARK_QMARK, - ACTIONS(7047), 1, - anon_sym_QMARK, - STATE(2485), 1, - sym_bracketed_argument_list, - STATE(3487), 1, - sym_argument_list, - ACTIONS(5306), 2, + anon_sym_DOT, + ACTIONS(4060), 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(7013), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(7015), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(7017), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7027), 2, + anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7031), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7033), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5072), 4, - anon_sym_COLON, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_RBRACE, - 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, - [71475] = 40, + 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, + [66277] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -588655,75 +583339,76 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4100), 1, + ACTIONS(4092), 1, anon_sym_DOT, - ACTIONS(4102), 1, + ACTIONS(4094), 1, anon_sym_DASH_GT, - ACTIONS(5264), 1, + ACTIONS(5227), 1, anon_sym_LPAREN, - ACTIONS(5304), 1, - anon_sym_BANG, - ACTIONS(5573), 1, + ACTIONS(5236), 1, anon_sym_LBRACK, - ACTIONS(6343), 1, + ACTIONS(5238), 1, + anon_sym_BANG, + ACTIONS(6017), 1, anon_sym_switch, - ACTIONS(6357), 1, + ACTIONS(6031), 1, anon_sym_with, - ACTIONS(7019), 1, + ACTIONS(6775), 1, + anon_sym_as, + ACTIONS(6819), 1, + anon_sym_DOT_DOT, + ACTIONS(6899), 1, + anon_sym_QMARK, + ACTIONS(6905), 1, anon_sym_SLASH, - ACTIONS(7021), 1, + ACTIONS(6907), 1, anon_sym_CARET, - ACTIONS(7023), 1, + ACTIONS(6909), 1, anon_sym_PIPE, - ACTIONS(7025), 1, + ACTIONS(6911), 1, anon_sym_AMP, - ACTIONS(7029), 1, + ACTIONS(6915), 1, anon_sym_GT_GT, - ACTIONS(7035), 1, - anon_sym_DOT_DOT, - ACTIONS(7037), 1, - anon_sym_as, - ACTIONS(7039), 1, - anon_sym_is, - ACTIONS(7041), 1, + ACTIONS(6921), 1, anon_sym_AMP_AMP, - ACTIONS(7043), 1, + ACTIONS(6923), 1, anon_sym_PIPE_PIPE, - ACTIONS(7045), 1, + ACTIONS(6925), 1, anon_sym_QMARK_QMARK, - ACTIONS(7047), 1, - anon_sym_QMARK, - STATE(2485), 1, + ACTIONS(6927), 1, + anon_sym_is, + STATE(2605), 1, sym_bracketed_argument_list, - STATE(3487), 1, + STATE(3348), 1, sym_argument_list, - ACTIONS(5306), 2, + ACTIONS(5240), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7013), 2, + ACTIONS(6897), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7015), 2, + ACTIONS(6901), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7017), 2, + ACTIONS(6903), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7027), 2, + ACTIONS(6913), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7031), 2, + ACTIONS(6917), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7033), 2, + ACTIONS(6919), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5882), 4, + ACTIONS(5733), 5, anon_sym_COLON, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_RBRACE, - STATE(4502), 9, + anon_sym_when, + anon_sym_and, + anon_sym_or, + anon_sym_into, + STATE(4444), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -588733,7 +583418,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [71614] = 40, + [66417] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -588754,75 +583439,107 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4100), 1, + ACTIONS(4092), 1, anon_sym_DOT, - ACTIONS(4102), 1, + ACTIONS(4094), 1, anon_sym_DASH_GT, - ACTIONS(5264), 1, + ACTIONS(5227), 1, anon_sym_LPAREN, - ACTIONS(5302), 1, + ACTIONS(5236), 1, anon_sym_LBRACK, - ACTIONS(5304), 1, + ACTIONS(5238), 1, anon_sym_BANG, - ACTIONS(6475), 1, + ACTIONS(6017), 1, anon_sym_switch, - ACTIONS(6489), 1, + ACTIONS(6031), 1, anon_sym_with, - ACTIONS(7051), 1, + ACTIONS(6775), 1, + anon_sym_as, + ACTIONS(6819), 1, + anon_sym_DOT_DOT, + ACTIONS(6899), 1, anon_sym_QMARK, - ACTIONS(7057), 1, + ACTIONS(6905), 1, anon_sym_SLASH, - ACTIONS(7059), 1, + ACTIONS(6907), 1, anon_sym_CARET, - ACTIONS(7061), 1, + ACTIONS(6909), 1, anon_sym_PIPE, - ACTIONS(7063), 1, + ACTIONS(6911), 1, anon_sym_AMP, - ACTIONS(7067), 1, + ACTIONS(6915), 1, anon_sym_GT_GT, - ACTIONS(7073), 1, - anon_sym_DOT_DOT, - ACTIONS(7075), 1, + ACTIONS(6921), 1, anon_sym_AMP_AMP, - ACTIONS(7077), 1, + ACTIONS(6923), 1, anon_sym_PIPE_PIPE, - ACTIONS(7079), 1, + ACTIONS(6925), 1, anon_sym_QMARK_QMARK, - ACTIONS(7081), 1, - anon_sym_as, - ACTIONS(7083), 1, + ACTIONS(6927), 1, anon_sym_is, - STATE(2808), 1, + STATE(2605), 1, sym_bracketed_argument_list, - STATE(3487), 1, + STATE(3348), 1, sym_argument_list, - ACTIONS(5306), 2, + ACTIONS(5240), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7049), 2, + ACTIONS(6897), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7053), 2, + ACTIONS(6901), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7055), 2, + ACTIONS(6903), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7065), 2, + ACTIONS(6913), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7069), 2, + ACTIONS(6917), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7071), 2, + ACTIONS(6919), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5072), 4, + ACTIONS(5855), 5, anon_sym_COLON, anon_sym_when, anon_sym_and, anon_sym_or, - STATE(4503), 9, + anon_sym_into, + STATE(4445), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + [66557] = 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(4446), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -588832,7 +583549,49 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [71753] = 38, + ACTIONS(3663), 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(3665), 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, + anon_sym_into, + anon_sym_as, + anon_sym_is, + anon_sym_DASH_GT, + anon_sym_with, + [66643] = 43, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -588853,73 +583612,79 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4075), 1, + ACTIONS(2675), 1, + aux_sym_preproc_else_token1, + ACTIONS(2677), 1, + aux_sym_preproc_elif_token1, + ACTIONS(4042), 1, anon_sym_DOT, - ACTIONS(4077), 1, + ACTIONS(4044), 1, anon_sym_DASH_GT, - ACTIONS(5247), 1, + ACTIONS(5257), 1, anon_sym_LPAREN, - ACTIONS(5283), 1, - anon_sym_LBRACK, - ACTIONS(5285), 1, + ACTIONS(5302), 1, anon_sym_BANG, - ACTIONS(5664), 1, - anon_sym_QMARK, - ACTIONS(6147), 1, + ACTIONS(5549), 1, + anon_sym_LBRACK, + ACTIONS(6355), 1, anon_sym_switch, - ACTIONS(6157), 1, - anon_sym_as, - ACTIONS(6161), 1, + ACTIONS(6369), 1, anon_sym_with, - ACTIONS(7091), 1, + ACTIONS(6781), 1, + anon_sym_QMARK, + ACTIONS(6787), 1, anon_sym_SLASH, - ACTIONS(7093), 1, + ACTIONS(6789), 1, anon_sym_CARET, - ACTIONS(7095), 1, + ACTIONS(6791), 1, anon_sym_PIPE, - ACTIONS(7097), 1, + ACTIONS(6793), 1, anon_sym_AMP, - ACTIONS(7101), 1, + ACTIONS(6797), 1, anon_sym_GT_GT, - ACTIONS(7107), 1, + ACTIONS(6803), 1, anon_sym_DOT_DOT, - ACTIONS(7109), 1, + ACTIONS(6805), 1, anon_sym_AMP_AMP, - ACTIONS(7111), 1, + ACTIONS(6807), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6809), 1, + anon_sym_QMARK_QMARK, + ACTIONS(6811), 1, + anon_sym_as, + ACTIONS(6813), 1, anon_sym_is, - STATE(2613), 1, + ACTIONS(6953), 1, + aux_sym_preproc_if_token3, + STATE(2467), 1, sym_bracketed_argument_list, - STATE(3259), 1, + STATE(3381), 1, sym_argument_list, - ACTIONS(5287), 2, + ACTIONS(5304), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7085), 2, + ACTIONS(6779), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7087), 2, + ACTIONS(6783), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7089), 2, + ACTIONS(6785), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7099), 2, + ACTIONS(6795), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7103), 2, + ACTIONS(6799), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7105), 2, + ACTIONS(6801), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5660), 6, - anon_sym_EQ_GT, - anon_sym_and, - anon_sym_or, - anon_sym_PIPE_PIPE, - anon_sym_QMARK_QMARK, - anon_sym_into, - STATE(4504), 9, + STATE(7657), 2, + sym_preproc_else_in_expression, + sym_preproc_elif_in_expression, + STATE(4447), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -588929,7 +583694,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [71888] = 13, + [66789] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -588950,7 +583715,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - STATE(4505), 9, + ACTIONS(6955), 1, + anon_sym_DOT, + STATE(4448), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -588960,7 +583727,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5462), 11, + ACTIONS(3976), 10, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, @@ -588971,13 +583738,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_AMP, anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(5460), 28, + ACTIONS(3978), 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, @@ -589001,7 +583768,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, anon_sym_DASH_GT, anon_sym_with, - [71973] = 13, + [66877] = 24, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -589022,36 +583789,51 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - 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(5466), 11, + ACTIONS(4092), 1, + anon_sym_DOT, + ACTIONS(4094), 1, + anon_sym_DASH_GT, + ACTIONS(5227), 1, + anon_sym_LPAREN, + ACTIONS(5236), 1, + anon_sym_LBRACK, + ACTIONS(5238), 1, + anon_sym_BANG, + ACTIONS(6017), 1, + anon_sym_switch, + ACTIONS(6031), 1, + anon_sym_with, + ACTIONS(6819), 1, + anon_sym_DOT_DOT, + STATE(2605), 1, + sym_bracketed_argument_list, + STATE(3348), 1, + sym_argument_list, + ACTIONS(5240), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5739), 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(5464), 28, - sym_interpolation_close_brace, - anon_sym_LBRACK, + STATE(4449), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + ACTIONS(5737), 19, 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, @@ -589061,8 +583843,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, @@ -589071,9 +583852,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, - [72058] = 40, + [66985] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -589094,75 +583873,76 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4075), 1, + ACTIONS(4092), 1, anon_sym_DOT, - ACTIONS(4077), 1, + ACTIONS(4094), 1, anon_sym_DASH_GT, - ACTIONS(5247), 1, + ACTIONS(5227), 1, anon_sym_LPAREN, - ACTIONS(5283), 1, + ACTIONS(5236), 1, anon_sym_LBRACK, - ACTIONS(5285), 1, + ACTIONS(5238), 1, anon_sym_BANG, - ACTIONS(5664), 1, - anon_sym_QMARK, - ACTIONS(6147), 1, + ACTIONS(6017), 1, anon_sym_switch, - ACTIONS(6157), 1, - anon_sym_as, - ACTIONS(6161), 1, + ACTIONS(6031), 1, anon_sym_with, - ACTIONS(7091), 1, + ACTIONS(6775), 1, + anon_sym_as, + ACTIONS(6819), 1, + anon_sym_DOT_DOT, + ACTIONS(6899), 1, + anon_sym_QMARK, + ACTIONS(6905), 1, anon_sym_SLASH, - ACTIONS(7093), 1, + ACTIONS(6907), 1, anon_sym_CARET, - ACTIONS(7095), 1, + ACTIONS(6909), 1, anon_sym_PIPE, - ACTIONS(7097), 1, + ACTIONS(6911), 1, anon_sym_AMP, - ACTIONS(7101), 1, + ACTIONS(6915), 1, anon_sym_GT_GT, - ACTIONS(7107), 1, - anon_sym_DOT_DOT, - ACTIONS(7109), 1, + ACTIONS(6921), 1, anon_sym_AMP_AMP, - ACTIONS(7111), 1, - anon_sym_is, - ACTIONS(7113), 1, + ACTIONS(6923), 1, anon_sym_PIPE_PIPE, - ACTIONS(7115), 1, + ACTIONS(6925), 1, anon_sym_QMARK_QMARK, - STATE(2613), 1, + ACTIONS(6927), 1, + anon_sym_is, + STATE(2605), 1, sym_bracketed_argument_list, - STATE(3259), 1, + STATE(3348), 1, sym_argument_list, - ACTIONS(5287), 2, + ACTIONS(5240), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7085), 2, + ACTIONS(6897), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7087), 2, + ACTIONS(6901), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7089), 2, + ACTIONS(6903), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7099), 2, + ACTIONS(6913), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7103), 2, + ACTIONS(6917), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7105), 2, + ACTIONS(6919), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5660), 4, - anon_sym_EQ_GT, + ACTIONS(5865), 5, + anon_sym_COLON, + anon_sym_when, anon_sym_and, anon_sym_or, anon_sym_into, - STATE(4507), 9, + STATE(4450), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -589172,7 +583952,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [72197] = 13, + [67125] = 17, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -589193,20 +583973,17 @@ 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(5379), 11, + ACTIONS(4033), 1, + anon_sym_LBRACK, + ACTIONS(4039), 1, + anon_sym_STAR, + ACTIONS(6955), 1, + anon_sym_DOT, + ACTIONS(6957), 1, + anon_sym_QMARK, + ACTIONS(3961), 9, anon_sym_LT, anon_sym_GT, - anon_sym_QMARK, anon_sym_BANG, anon_sym_PLUS, anon_sym_DASH, @@ -589214,16 +583991,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_AMP, anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(5377), 28, + 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(3963), 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, @@ -589244,7 +584029,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, anon_sym_DASH_GT, anon_sym_with, - [72282] = 40, + [67219] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -589265,75 +584050,76 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4075), 1, + ACTIONS(4092), 1, anon_sym_DOT, - ACTIONS(4077), 1, + ACTIONS(4094), 1, anon_sym_DASH_GT, - ACTIONS(5247), 1, + ACTIONS(5227), 1, anon_sym_LPAREN, - ACTIONS(5283), 1, + ACTIONS(5236), 1, anon_sym_LBRACK, - ACTIONS(5285), 1, + ACTIONS(5238), 1, anon_sym_BANG, - ACTIONS(6147), 1, + ACTIONS(6017), 1, anon_sym_switch, - ACTIONS(6157), 1, - anon_sym_as, - ACTIONS(6161), 1, + ACTIONS(6031), 1, anon_sym_with, - ACTIONS(7091), 1, + ACTIONS(6775), 1, + anon_sym_as, + ACTIONS(6819), 1, + anon_sym_DOT_DOT, + ACTIONS(6899), 1, + anon_sym_QMARK, + ACTIONS(6905), 1, anon_sym_SLASH, - ACTIONS(7093), 1, + ACTIONS(6907), 1, anon_sym_CARET, - ACTIONS(7095), 1, + ACTIONS(6909), 1, anon_sym_PIPE, - ACTIONS(7097), 1, + ACTIONS(6911), 1, anon_sym_AMP, - ACTIONS(7101), 1, + ACTIONS(6915), 1, anon_sym_GT_GT, - ACTIONS(7107), 1, - anon_sym_DOT_DOT, - ACTIONS(7109), 1, + ACTIONS(6921), 1, anon_sym_AMP_AMP, - ACTIONS(7111), 1, - anon_sym_is, - ACTIONS(7113), 1, + ACTIONS(6923), 1, anon_sym_PIPE_PIPE, - ACTIONS(7115), 1, + ACTIONS(6925), 1, anon_sym_QMARK_QMARK, - ACTIONS(7117), 1, - anon_sym_QMARK, - STATE(2613), 1, + ACTIONS(6927), 1, + anon_sym_is, + STATE(2605), 1, sym_bracketed_argument_list, - STATE(3259), 1, + STATE(3348), 1, sym_argument_list, - ACTIONS(5287), 2, + ACTIONS(5240), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7085), 2, + ACTIONS(6897), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7087), 2, + ACTIONS(6901), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7089), 2, + ACTIONS(6903), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7099), 2, + ACTIONS(6913), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7103), 2, + ACTIONS(6917), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7105), 2, + ACTIONS(6919), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5864), 4, - anon_sym_EQ_GT, + ACTIONS(4996), 5, + anon_sym_COLON, + anon_sym_when, anon_sym_and, anon_sym_or, anon_sym_into, - STATE(4509), 9, + STATE(4452), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -589343,7 +584129,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [72421] = 13, + [67359] = 36, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -589364,79 +584150,72 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - STATE(4510), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - ACTIONS(5344), 11, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, + ACTIONS(4092), 1, + anon_sym_DOT, + ACTIONS(4094), 1, + anon_sym_DASH_GT, + ACTIONS(5227), 1, + anon_sym_LPAREN, + ACTIONS(5236), 1, + anon_sym_LBRACK, + ACTIONS(5238), 1, anon_sym_BANG, - anon_sym_PLUS, - anon_sym_DASH, + ACTIONS(6017), 1, + anon_sym_switch, + ACTIONS(6031), 1, + anon_sym_with, + ACTIONS(6755), 1, anon_sym_SLASH, - anon_sym_PIPE, + ACTIONS(6757), 1, + anon_sym_CARET, + ACTIONS(6761), 1, anon_sym_AMP, + ACTIONS(6765), 1, anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(5342), 28, - sym_interpolation_close_brace, - anon_sym_LBRACK, - anon_sym_COLON, - anon_sym_COMMA, - anon_sym_LPAREN, + ACTIONS(6771), 1, + anon_sym_DOT_DOT, + ACTIONS(6775), 1, + anon_sym_as, + ACTIONS(6777), 1, + anon_sym_is, + STATE(2605), 1, + sym_bracketed_argument_list, + STATE(3348), 1, + sym_argument_list, + ACTIONS(5240), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + ACTIONS(5739), 2, + anon_sym_QMARK, + anon_sym_PIPE, + ACTIONS(6749), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(6751), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6753), 2, anon_sym_STAR, anon_sym_PERCENT, - anon_sym_CARET, + ACTIONS(6763), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, + ACTIONS(6767), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + ACTIONS(6769), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - anon_sym_switch, - anon_sym_DOT_DOT, + ACTIONS(5737), 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, - anon_sym_as, - anon_sym_is, - anon_sym_DASH_GT, - anon_sym_with, - [72506] = 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(4511), 9, + STATE(4453), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -589446,48 +584225,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5344), 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(5342), 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, - [72591] = 13, + [67491] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -589508,58 +584246,86 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - 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, - ACTIONS(5348), 11, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, + ACTIONS(4092), 1, + anon_sym_DOT, + ACTIONS(4094), 1, + anon_sym_DASH_GT, + ACTIONS(5227), 1, + anon_sym_LPAREN, + ACTIONS(5236), 1, + anon_sym_LBRACK, + ACTIONS(5238), 1, anon_sym_BANG, - anon_sym_PLUS, - anon_sym_DASH, + ACTIONS(6017), 1, + anon_sym_switch, + ACTIONS(6031), 1, + anon_sym_with, + ACTIONS(6755), 1, anon_sym_SLASH, + ACTIONS(6757), 1, + anon_sym_CARET, + ACTIONS(6759), 1, anon_sym_PIPE, + ACTIONS(6761), 1, anon_sym_AMP, + ACTIONS(6765), 1, anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(5346), 28, - sym_interpolation_close_brace, - anon_sym_LBRACK, - anon_sym_COLON, - anon_sym_COMMA, - anon_sym_LPAREN, + ACTIONS(6771), 1, + anon_sym_DOT_DOT, + ACTIONS(6773), 1, + anon_sym_AMP_AMP, + ACTIONS(6775), 1, + anon_sym_as, + ACTIONS(6777), 1, + anon_sym_is, + ACTIONS(6855), 1, + anon_sym_QMARK, + ACTIONS(6857), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6859), 1, + anon_sym_QMARK_QMARK, + STATE(2605), 1, + sym_bracketed_argument_list, + STATE(3348), 1, + sym_argument_list, + ACTIONS(5240), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + ACTIONS(6749), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(6751), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6753), 2, anon_sym_STAR, anon_sym_PERCENT, - anon_sym_CARET, + ACTIONS(6763), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, + ACTIONS(6767), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + ACTIONS(6769), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - anon_sym_switch, - anon_sym_DOT_DOT, + ACTIONS(5733), 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, - [72676] = 13, + STATE(4454), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + [67631] = 29, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -589580,7 +584346,49 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - STATE(4513), 9, + ACTIONS(4753), 1, + anon_sym_LPAREN, + ACTIONS(4792), 1, + anon_sym_DOT, + ACTIONS(4794), 1, + anon_sym_DASH_GT, + ACTIONS(4819), 1, + anon_sym_LBRACK, + ACTIONS(4823), 1, + anon_sym_BANG, + ACTIONS(6264), 1, + anon_sym_switch, + ACTIONS(6278), 1, + anon_sym_with, + ACTIONS(6817), 1, + anon_sym_DOT_DOT, + ACTIONS(6829), 1, + anon_sym_SLASH, + ACTIONS(6867), 1, + anon_sym_GT_GT, + STATE(2419), 1, + sym_bracketed_argument_list, + STATE(2958), 1, + sym_argument_list, + ACTIONS(4825), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6825), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6827), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(6865), 2, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + ACTIONS(5739), 5, + anon_sym_LT, + anon_sym_GT, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_AMP, + STATE(4455), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -589590,48 +584398,23 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5352), 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(5350), 28, - sym_interpolation_close_brace, - anon_sym_LBRACK, + ACTIONS(5737), 15, 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_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_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, - [72761] = 40, + [67749] = 43, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -589652,75 +584435,79 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4075), 1, + ACTIONS(2675), 1, + aux_sym_preproc_else_token1, + ACTIONS(2677), 1, + aux_sym_preproc_elif_token1, + ACTIONS(4042), 1, anon_sym_DOT, - ACTIONS(4077), 1, + ACTIONS(4044), 1, anon_sym_DASH_GT, - ACTIONS(5247), 1, + ACTIONS(5257), 1, anon_sym_LPAREN, - ACTIONS(5283), 1, - anon_sym_LBRACK, - ACTIONS(5285), 1, + ACTIONS(5302), 1, anon_sym_BANG, - ACTIONS(6147), 1, + ACTIONS(5549), 1, + anon_sym_LBRACK, + ACTIONS(6355), 1, anon_sym_switch, - ACTIONS(6157), 1, - anon_sym_as, - ACTIONS(6161), 1, + ACTIONS(6369), 1, anon_sym_with, - ACTIONS(7091), 1, + ACTIONS(6781), 1, + anon_sym_QMARK, + ACTIONS(6787), 1, anon_sym_SLASH, - ACTIONS(7093), 1, + ACTIONS(6789), 1, anon_sym_CARET, - ACTIONS(7095), 1, + ACTIONS(6791), 1, anon_sym_PIPE, - ACTIONS(7097), 1, + ACTIONS(6793), 1, anon_sym_AMP, - ACTIONS(7101), 1, + ACTIONS(6797), 1, anon_sym_GT_GT, - ACTIONS(7107), 1, + ACTIONS(6803), 1, anon_sym_DOT_DOT, - ACTIONS(7109), 1, + ACTIONS(6805), 1, anon_sym_AMP_AMP, - ACTIONS(7111), 1, - anon_sym_is, - ACTIONS(7113), 1, + ACTIONS(6807), 1, anon_sym_PIPE_PIPE, - ACTIONS(7115), 1, + ACTIONS(6809), 1, anon_sym_QMARK_QMARK, - ACTIONS(7117), 1, - anon_sym_QMARK, - STATE(2613), 1, + ACTIONS(6811), 1, + anon_sym_as, + ACTIONS(6813), 1, + anon_sym_is, + ACTIONS(6960), 1, + aux_sym_preproc_if_token3, + STATE(2467), 1, sym_bracketed_argument_list, - STATE(3259), 1, + STATE(3381), 1, sym_argument_list, - ACTIONS(5287), 2, + ACTIONS(5304), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7085), 2, + ACTIONS(6779), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7087), 2, + ACTIONS(6783), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7089), 2, + ACTIONS(6785), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7099), 2, + ACTIONS(6795), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7103), 2, + ACTIONS(6799), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7105), 2, + ACTIONS(6801), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5072), 4, - anon_sym_EQ_GT, - anon_sym_and, - anon_sym_or, - anon_sym_into, - STATE(4514), 9, + STATE(7547), 2, + sym_preproc_else_in_expression, + sym_preproc_elif_in_expression, + STATE(4456), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -589730,7 +584517,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [72900] = 13, + [67895] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -589751,7 +584538,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - STATE(4515), 9, + ACTIONS(6891), 1, + anon_sym_LT, + STATE(2171), 1, + sym_type_argument_list, + STATE(4457), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -589761,48 +584552,47 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5385), 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(5383), 28, - sym_interpolation_close_brace, - anon_sym_LBRACK, + ACTIONS(3640), 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_DOT, + anon_sym_EQ_GT, + ACTIONS(3638), 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, - [72985] = 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, + [67985] = 37, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -589823,79 +584613,73 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - 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, - ACTIONS(5389), 11, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, + ACTIONS(4092), 1, + anon_sym_DOT, + ACTIONS(4094), 1, + anon_sym_DASH_GT, + ACTIONS(5227), 1, + anon_sym_LPAREN, + ACTIONS(5236), 1, + anon_sym_LBRACK, + ACTIONS(5238), 1, anon_sym_BANG, - anon_sym_PLUS, - anon_sym_DASH, + ACTIONS(5739), 1, + anon_sym_QMARK, + ACTIONS(6017), 1, + anon_sym_switch, + ACTIONS(6031), 1, + anon_sym_with, + ACTIONS(6755), 1, anon_sym_SLASH, + ACTIONS(6757), 1, + anon_sym_CARET, + ACTIONS(6759), 1, anon_sym_PIPE, + ACTIONS(6761), 1, anon_sym_AMP, + ACTIONS(6765), 1, anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(5387), 28, - sym_interpolation_close_brace, - anon_sym_LBRACK, - anon_sym_COLON, - anon_sym_COMMA, - anon_sym_LPAREN, + ACTIONS(6771), 1, + anon_sym_DOT_DOT, + ACTIONS(6775), 1, + anon_sym_as, + ACTIONS(6777), 1, + anon_sym_is, + STATE(2605), 1, + sym_bracketed_argument_list, + STATE(3348), 1, + sym_argument_list, + ACTIONS(5240), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + ACTIONS(6749), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(6751), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6753), 2, anon_sym_STAR, anon_sym_PERCENT, - anon_sym_CARET, + ACTIONS(6763), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, + ACTIONS(6767), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + ACTIONS(6769), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - anon_sym_switch, - anon_sym_DOT_DOT, + ACTIONS(5737), 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, - anon_sym_as, - anon_sym_is, - anon_sym_DASH_GT, - anon_sym_with, - [73070] = 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(4517), 9, + STATE(4458), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -589905,48 +584689,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5409), 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(5407), 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, - [73155] = 13, + [68119] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -589967,7 +584710,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - STATE(4518), 9, + STATE(4459), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -589977,7 +584720,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5417), 11, + ACTIONS(3996), 11, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, @@ -589989,12 +584732,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT, - ACTIONS(5415), 28, + ACTIONS(3998), 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, @@ -590018,7 +584762,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, anon_sym_DASH_GT, anon_sym_with, - [73240] = 13, + [68205] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -590039,7 +584783,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - STATE(4519), 9, + STATE(4460), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -590049,7 +584793,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5425), 11, + ACTIONS(3669), 11, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, @@ -590061,12 +584805,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT, - ACTIONS(5423), 28, + ACTIONS(3678), 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, @@ -590090,7 +584835,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, anon_sym_DASH_GT, anon_sym_with, - [73325] = 29, + [68291] = 26, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -590111,49 +584856,44 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4075), 1, + ACTIONS(4753), 1, + anon_sym_LPAREN, + ACTIONS(4792), 1, anon_sym_DOT, - ACTIONS(4077), 1, + ACTIONS(4794), 1, anon_sym_DASH_GT, - ACTIONS(5247), 1, - anon_sym_LPAREN, - ACTIONS(5283), 1, + ACTIONS(4819), 1, anon_sym_LBRACK, - ACTIONS(5285), 1, + ACTIONS(4823), 1, anon_sym_BANG, - ACTIONS(6147), 1, + ACTIONS(6264), 1, anon_sym_switch, - ACTIONS(6161), 1, + ACTIONS(6278), 1, anon_sym_with, - ACTIONS(7123), 1, - anon_sym_SLASH, - ACTIONS(7127), 1, - anon_sym_GT_GT, - ACTIONS(7129), 1, + ACTIONS(6817), 1, anon_sym_DOT_DOT, - STATE(2613), 1, + ACTIONS(6829), 1, + anon_sym_SLASH, + STATE(2419), 1, sym_bracketed_argument_list, - STATE(3259), 1, + STATE(2958), 1, sym_argument_list, - ACTIONS(5287), 2, + ACTIONS(4825), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7119), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(7121), 2, + ACTIONS(6827), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7125), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - ACTIONS(5664), 5, + ACTIONS(5739), 8, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_PIPE, anon_sym_AMP, - STATE(4520), 9, + anon_sym_GT_GT, + STATE(4461), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -590163,22 +584903,25 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5660), 14, + ACTIONS(5737), 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, 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_on, anon_sym_as, anon_sym_is, - [73442] = 26, + [68403] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -590199,44 +584942,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4075), 1, - anon_sym_DOT, - ACTIONS(4077), 1, - anon_sym_DASH_GT, - ACTIONS(5247), 1, - anon_sym_LPAREN, - ACTIONS(5283), 1, - anon_sym_LBRACK, - ACTIONS(5285), 1, - anon_sym_BANG, - ACTIONS(6147), 1, - anon_sym_switch, - ACTIONS(6161), 1, - anon_sym_with, - ACTIONS(7123), 1, - anon_sym_SLASH, - ACTIONS(7129), 1, - anon_sym_DOT_DOT, - STATE(2613), 1, - sym_bracketed_argument_list, - STATE(3259), 1, - sym_argument_list, - ACTIONS(5287), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(7121), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(5664), 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(4521), 9, + STATE(4462), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -590246,7 +584952,29 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5660), 16, + ACTIONS(3691), 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(3702), 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, @@ -590254,16 +584982,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_on, anon_sym_as, anon_sym_is, - [73553] = 27, + anon_sym_DASH_GT, + anon_sym_with, + [68489] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -590284,45 +585015,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4075), 1, - anon_sym_DOT, - ACTIONS(4077), 1, - anon_sym_DASH_GT, - ACTIONS(5247), 1, - anon_sym_LPAREN, - ACTIONS(5283), 1, - anon_sym_LBRACK, - ACTIONS(5285), 1, - anon_sym_BANG, - ACTIONS(6147), 1, - anon_sym_switch, - ACTIONS(6161), 1, - anon_sym_with, - ACTIONS(7123), 1, - anon_sym_SLASH, - ACTIONS(7129), 1, - anon_sym_DOT_DOT, - STATE(2613), 1, - sym_bracketed_argument_list, - STATE(3259), 1, - sym_argument_list, - ACTIONS(5287), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(7119), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(7121), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(5664), 6, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT_GT, - STATE(4522), 9, + ACTIONS(6931), 1, + anon_sym_and, + STATE(4463), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -590332,84 +585027,28 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5660), 16, - 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_on, - anon_sym_as, - anon_sym_is, - [73666] = 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(4075), 1, - anon_sym_DOT, - ACTIONS(4077), 1, - anon_sym_DASH_GT, - ACTIONS(5247), 1, - anon_sym_LPAREN, - ACTIONS(5283), 1, - anon_sym_LBRACK, - ACTIONS(5285), 1, - anon_sym_BANG, - ACTIONS(7129), 1, - anon_sym_DOT_DOT, - STATE(2613), 1, - sym_bracketed_argument_list, - STATE(3259), 1, - sym_argument_list, - ACTIONS(5287), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5733), 9, + ACTIONS(6097), 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(4523), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - ACTIONS(5731), 20, + anon_sym_DOT, + ACTIONS(6095), 28, + 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, @@ -590420,17 +585059,16 @@ 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_on, anon_sym_as, anon_sym_is, + anon_sym_DASH_GT, anon_sym_with, - [73769] = 40, + [68577] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -590451,75 +585089,76 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4075), 1, + ACTIONS(4092), 1, anon_sym_DOT, - ACTIONS(4077), 1, + ACTIONS(4094), 1, anon_sym_DASH_GT, - ACTIONS(5247), 1, + ACTIONS(5227), 1, anon_sym_LPAREN, - ACTIONS(5283), 1, + ACTIONS(5236), 1, anon_sym_LBRACK, - ACTIONS(5285), 1, + ACTIONS(5238), 1, anon_sym_BANG, - ACTIONS(6147), 1, + ACTIONS(6017), 1, anon_sym_switch, - ACTIONS(6157), 1, - anon_sym_as, - ACTIONS(6161), 1, + ACTIONS(6031), 1, anon_sym_with, - ACTIONS(7091), 1, + ACTIONS(6775), 1, + anon_sym_as, + ACTIONS(6819), 1, + anon_sym_DOT_DOT, + ACTIONS(6899), 1, + anon_sym_QMARK, + ACTIONS(6905), 1, anon_sym_SLASH, - ACTIONS(7093), 1, + ACTIONS(6907), 1, anon_sym_CARET, - ACTIONS(7095), 1, + ACTIONS(6909), 1, anon_sym_PIPE, - ACTIONS(7097), 1, + ACTIONS(6911), 1, anon_sym_AMP, - ACTIONS(7101), 1, + ACTIONS(6915), 1, anon_sym_GT_GT, - ACTIONS(7107), 1, - anon_sym_DOT_DOT, - ACTIONS(7109), 1, + ACTIONS(6921), 1, anon_sym_AMP_AMP, - ACTIONS(7111), 1, - anon_sym_is, - ACTIONS(7113), 1, + ACTIONS(6923), 1, anon_sym_PIPE_PIPE, - ACTIONS(7115), 1, + ACTIONS(6925), 1, anon_sym_QMARK_QMARK, - ACTIONS(7117), 1, - anon_sym_QMARK, - STATE(2613), 1, + ACTIONS(6927), 1, + anon_sym_is, + STATE(2605), 1, sym_bracketed_argument_list, - STATE(3259), 1, + STATE(3348), 1, sym_argument_list, - ACTIONS(5287), 2, + ACTIONS(5240), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7085), 2, + ACTIONS(6897), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7087), 2, + ACTIONS(6901), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7089), 2, + ACTIONS(6903), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7099), 2, + ACTIONS(6913), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7103), 2, + ACTIONS(6917), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7105), 2, + ACTIONS(6919), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5882), 4, - anon_sym_EQ_GT, + ACTIONS(5849), 5, + anon_sym_COLON, + anon_sym_when, anon_sym_and, anon_sym_or, anon_sym_into, - STATE(4524), 9, + STATE(4464), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -590529,7 +585168,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [73908] = 14, + [68717] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -590550,9 +585189,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(7131), 1, - anon_sym_and, - STATE(4525), 9, + ACTIONS(6962), 1, + anon_sym_into, + STATE(4466), 1, + aux_sym__query_body_repeat2, + STATE(4465), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -590562,7 +585203,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(6069), 11, + ACTIONS(5935), 11, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, @@ -590574,7 +585215,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT, - ACTIONS(6067), 27, + ACTIONS(5933), 27, sym_interpolation_close_brace, anon_sym_LBRACK, anon_sym_COLON, @@ -590593,16 +585234,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_as, anon_sym_is, anon_sym_DASH_GT, anon_sym_with, - [73995] = 40, + [68807] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -590623,85 +585264,61 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4100), 1, - anon_sym_DOT, - ACTIONS(4102), 1, - anon_sym_DASH_GT, - ACTIONS(5264), 1, - anon_sym_LPAREN, - ACTIONS(5302), 1, - anon_sym_LBRACK, - ACTIONS(5304), 1, - anon_sym_BANG, - ACTIONS(6475), 1, - anon_sym_switch, - ACTIONS(6489), 1, - anon_sym_with, - ACTIONS(7051), 1, + ACTIONS(6962), 1, + anon_sym_into, + STATE(4468), 1, + aux_sym__query_body_repeat2, + STATE(4466), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + ACTIONS(5881), 11, + anon_sym_LT, + anon_sym_GT, anon_sym_QMARK, - ACTIONS(7057), 1, + anon_sym_BANG, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_SLASH, - ACTIONS(7059), 1, - anon_sym_CARET, - ACTIONS(7061), 1, anon_sym_PIPE, - ACTIONS(7063), 1, anon_sym_AMP, - ACTIONS(7067), 1, anon_sym_GT_GT, - ACTIONS(7073), 1, - anon_sym_DOT_DOT, - ACTIONS(7075), 1, - anon_sym_AMP_AMP, - ACTIONS(7077), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7079), 1, - anon_sym_QMARK_QMARK, - ACTIONS(7081), 1, - anon_sym_as, - ACTIONS(7083), 1, - anon_sym_is, - STATE(2808), 1, - sym_bracketed_argument_list, - STATE(3487), 1, - sym_argument_list, - ACTIONS(5306), 2, + anon_sym_DOT, + ACTIONS(5879), 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(7049), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(7053), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(7055), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7065), 2, + anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7069), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7071), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5882), 4, - anon_sym_COLON, - anon_sym_when, + anon_sym_switch, + anon_sym_DOT_DOT, anon_sym_and, anon_sym_or, - 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, - [74134] = 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, + [68897] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -590722,85 +585339,61 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4100), 1, - anon_sym_DOT, - ACTIONS(4102), 1, - anon_sym_DASH_GT, - ACTIONS(5264), 1, - anon_sym_LPAREN, - ACTIONS(5302), 1, - anon_sym_LBRACK, - ACTIONS(5304), 1, - anon_sym_BANG, - ACTIONS(6475), 1, - anon_sym_switch, - ACTIONS(6489), 1, - anon_sym_with, - ACTIONS(7051), 1, + ACTIONS(6962), 1, + anon_sym_into, + STATE(4469), 1, + aux_sym__query_body_repeat2, + 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(5881), 11, + anon_sym_LT, + anon_sym_GT, anon_sym_QMARK, - ACTIONS(7057), 1, + anon_sym_BANG, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_SLASH, - ACTIONS(7059), 1, - anon_sym_CARET, - ACTIONS(7061), 1, anon_sym_PIPE, - ACTIONS(7063), 1, anon_sym_AMP, - ACTIONS(7067), 1, anon_sym_GT_GT, - ACTIONS(7073), 1, - anon_sym_DOT_DOT, - ACTIONS(7075), 1, - anon_sym_AMP_AMP, - ACTIONS(7077), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7079), 1, - anon_sym_QMARK_QMARK, - ACTIONS(7081), 1, - anon_sym_as, - ACTIONS(7083), 1, - anon_sym_is, - STATE(2808), 1, - sym_bracketed_argument_list, - STATE(3487), 1, - sym_argument_list, - ACTIONS(5306), 2, + anon_sym_DOT, + ACTIONS(5879), 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(7049), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(7053), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(7055), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7065), 2, + anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7069), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7071), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5899), 4, - anon_sym_COLON, - anon_sym_when, + anon_sym_switch, + anon_sym_DOT_DOT, anon_sym_and, anon_sym_or, - 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, - [74273] = 14, + 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, + [68987] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -590821,9 +585414,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(7133), 1, - anon_sym_and, - STATE(4528), 9, + ACTIONS(6964), 1, + anon_sym_into, + STATE(4468), 10, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -590833,7 +585426,8 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(6069), 11, + aux_sym__query_body_repeat2, + ACTIONS(5953), 11, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, @@ -590845,9 +585439,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT, - ACTIONS(6067), 27, - anon_sym_SEMI, + ACTIONS(5951), 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, @@ -590862,6 +585458,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, @@ -590870,10 +585467,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, - [74360] = 13, + [69075] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -590894,7 +585488,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - STATE(4529), 9, + ACTIONS(6962), 1, + anon_sym_into, + STATE(4468), 1, + aux_sym__query_body_repeat2, + STATE(4469), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -590904,7 +585502,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5056), 11, + ACTIONS(5960), 11, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, @@ -590916,7 +585514,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT, - ACTIONS(5054), 28, + ACTIONS(5958), 27, sym_interpolation_close_brace, anon_sym_LBRACK, anon_sym_COLON, @@ -590940,12 +585538,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, - [74445] = 13, + [69165] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -590966,7 +585563,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - STATE(4530), 9, + ACTIONS(6931), 1, + anon_sym_and, + ACTIONS(6933), 1, + anon_sym_or, + STATE(4470), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -590976,7 +585577,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(4979), 11, + ACTIONS(5360), 11, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, @@ -590988,12 +585589,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT, - ACTIONS(4977), 28, - sym_interpolation_close_brace, + ACTIONS(5358), 27, + anon_sym_SEMI, 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, @@ -591007,17 +585610,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_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, - [74530] = 14, + [69255] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -591038,9 +585638,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(7135), 1, - anon_sym_LPAREN, - STATE(4531), 9, + ACTIONS(6967), 1, + sym_string_literal_encoding, + STATE(4471), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -591050,7 +585650,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(1979), 11, + ACTIONS(4876), 11, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, @@ -591062,11 +585662,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT, - ACTIONS(1981), 27, + ACTIONS(4874), 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, @@ -591090,7 +585691,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, anon_sym_DASH_GT, anon_sym_with, - [74617] = 29, + [69343] = 26, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -591111,49 +585712,39 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4075), 1, - anon_sym_DOT, - ACTIONS(4077), 1, - anon_sym_DASH_GT, - ACTIONS(5247), 1, + ACTIONS(3861), 1, + anon_sym_LBRACE, + ACTIONS(3877), 1, + sym_discard, + ACTIONS(6969), 1, + sym__identifier_token, + ACTIONS(6973), 1, anon_sym_LPAREN, - ACTIONS(5283), 1, - anon_sym_LBRACK, - ACTIONS(5285), 1, - anon_sym_BANG, - ACTIONS(6147), 1, - anon_sym_switch, - ACTIONS(6161), 1, - anon_sym_with, - ACTIONS(7091), 1, - anon_sym_SLASH, - ACTIONS(7101), 1, - anon_sym_GT_GT, - ACTIONS(7107), 1, - anon_sym_DOT_DOT, - STATE(2613), 1, - sym_bracketed_argument_list, - STATE(3259), 1, - sym_argument_list, - ACTIONS(5287), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(7087), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(7089), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(7099), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - ACTIONS(5664), 5, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_AMP, - STATE(4532), 9, + STATE(2565), 1, + sym__reserved_identifier, + STATE(3352), 1, + sym_parenthesized_variable_designation, + STATE(3422), 1, + sym__variable_designation, + STATE(3430), 1, + sym_identifier, + STATE(5154), 1, + sym_positional_pattern_clause, + STATE(5691), 1, + sym_property_pattern_clause, + STATE(7378), 1, + sym__lambda_parameters, + STATE(7531), 1, + sym_parameter_list, + ACTIONS(3867), 2, + anon_sym_and, + anon_sym_or, + ACTIONS(3869), 4, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_RBRACE, + STATE(4472), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -591163,22 +585754,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5660), 14, - 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_and, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_QMARK_QMARK, + ACTIONS(6971), 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, - [74734] = 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, + [69455] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -591199,44 +585798,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4075), 1, - anon_sym_DOT, - ACTIONS(4077), 1, - anon_sym_DASH_GT, - ACTIONS(5247), 1, - anon_sym_LPAREN, - ACTIONS(5283), 1, - anon_sym_LBRACK, - ACTIONS(5285), 1, - anon_sym_BANG, - ACTIONS(6147), 1, - anon_sym_switch, - ACTIONS(6161), 1, - anon_sym_with, - ACTIONS(7091), 1, - anon_sym_SLASH, - ACTIONS(7107), 1, - anon_sym_DOT_DOT, - STATE(2613), 1, - sym_bracketed_argument_list, - STATE(3259), 1, - sym_argument_list, - ACTIONS(5287), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(7089), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(5664), 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(4533), 9, + ACTIONS(6975), 1, + sym_string_literal_encoding, + STATE(4473), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -591246,7 +585810,28 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5660), 16, + ACTIONS(4893), 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(4891), 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, @@ -591254,7 +585839,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_DOT_DOT, anon_sym_and, anon_sym_or, anon_sym_AMP_AMP, @@ -591263,7 +585849,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_into, anon_sym_as, anon_sym_is, - [74845] = 27, + anon_sym_DASH_GT, + anon_sym_with, + [69543] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -591284,45 +585872,76 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4075), 1, + ACTIONS(4753), 1, + anon_sym_LPAREN, + ACTIONS(4792), 1, anon_sym_DOT, - ACTIONS(4077), 1, + ACTIONS(4794), 1, anon_sym_DASH_GT, - ACTIONS(5247), 1, - anon_sym_LPAREN, - ACTIONS(5283), 1, + ACTIONS(4819), 1, anon_sym_LBRACK, - ACTIONS(5285), 1, + ACTIONS(4823), 1, anon_sym_BANG, - ACTIONS(6147), 1, + ACTIONS(6264), 1, anon_sym_switch, - ACTIONS(6161), 1, + ACTIONS(6278), 1, anon_sym_with, - ACTIONS(7091), 1, - anon_sym_SLASH, - ACTIONS(7107), 1, + ACTIONS(6327), 1, + anon_sym_as, + ACTIONS(6817), 1, anon_sym_DOT_DOT, - STATE(2613), 1, + ACTIONS(6829), 1, + anon_sym_SLASH, + ACTIONS(6863), 1, + anon_sym_AMP, + ACTIONS(6867), 1, + anon_sym_GT_GT, + ACTIONS(6873), 1, + anon_sym_is, + ACTIONS(6875), 1, + anon_sym_QMARK, + ACTIONS(6877), 1, + anon_sym_CARET, + ACTIONS(6879), 1, + anon_sym_PIPE, + ACTIONS(6881), 1, + anon_sym_AMP_AMP, + ACTIONS(6883), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6885), 1, + anon_sym_QMARK_QMARK, + STATE(2419), 1, sym_bracketed_argument_list, - STATE(3259), 1, + STATE(2958), 1, sym_argument_list, - ACTIONS(5287), 2, + ACTIONS(4825), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7087), 2, + ACTIONS(6825), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7089), 2, + ACTIONS(6827), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(5664), 6, + ACTIONS(6861), 2, anon_sym_LT, anon_sym_GT, - anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT_GT, - STATE(4534), 9, + ACTIONS(6865), 2, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + ACTIONS(6869), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6871), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(5733), 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, @@ -591332,24 +585951,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5660), 16, - 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_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, - [74958] = 22, + [69683] = 22, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -591370,26 +585972,26 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4075), 1, + ACTIONS(4092), 1, anon_sym_DOT, - ACTIONS(4077), 1, + ACTIONS(4094), 1, anon_sym_DASH_GT, - ACTIONS(5247), 1, + ACTIONS(5227), 1, anon_sym_LPAREN, - ACTIONS(5283), 1, + ACTIONS(5236), 1, anon_sym_LBRACK, - ACTIONS(5285), 1, + ACTIONS(5238), 1, anon_sym_BANG, - ACTIONS(7107), 1, + ACTIONS(6771), 1, anon_sym_DOT_DOT, - STATE(2613), 1, + STATE(2605), 1, sym_bracketed_argument_list, - STATE(3259), 1, + STATE(3348), 1, sym_argument_list, - ACTIONS(5287), 2, + ACTIONS(5240), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5733), 9, + ACTIONS(5743), 9, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, @@ -591399,7 +586001,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_AMP, anon_sym_GT_GT, - STATE(4535), 9, + STATE(4475), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -591409,7 +586011,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5731), 20, + ACTIONS(5741), 21, anon_sym_STAR, anon_sym_PERCENT, anon_sym_CARET, @@ -591421,6 +586023,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_EQ_GT, anon_sym_switch, + anon_sym_when, anon_sym_and, anon_sym_or, anon_sym_AMP_AMP, @@ -591430,7 +586033,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_is, anon_sym_with, - [75061] = 13, + [69787] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -591451,7 +586054,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - STATE(4536), 9, + ACTIONS(6935), 1, + anon_sym_and, + ACTIONS(6977), 1, + anon_sym_or, + STATE(4476), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -591461,7 +586068,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5070), 11, + ACTIONS(5360), 11, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, @@ -591473,12 +586080,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT, - ACTIONS(5068), 28, - sym_interpolation_close_brace, + ACTIONS(5358), 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, @@ -591492,8 +586100,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, @@ -591502,7 +586108,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, anon_sym_DASH_GT, anon_sym_with, - [75146] = 13, + [69877] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -591523,7 +586129,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - STATE(4537), 9, + ACTIONS(4033), 1, + anon_sym_LBRACK, + ACTIONS(6957), 1, + anon_sym_QMARK, + STATE(4477), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -591533,10 +586143,9 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(4983), 11, + ACTIONS(3961), 10, anon_sym_LT, anon_sym_GT, - anon_sym_QMARK, anon_sym_BANG, anon_sym_PLUS, anon_sym_DASH, @@ -591545,12 +586154,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT, - ACTIONS(4981), 28, + ACTIONS(3963), 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, @@ -591574,7 +586183,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, anon_sym_DASH_GT, anon_sym_with, - [75231] = 40, + [69967] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -591595,75 +586204,76 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4100), 1, + ACTIONS(4753), 1, + anon_sym_LPAREN, + ACTIONS(4792), 1, anon_sym_DOT, - ACTIONS(4102), 1, + ACTIONS(4794), 1, anon_sym_DASH_GT, - ACTIONS(5264), 1, - anon_sym_LPAREN, - ACTIONS(5304), 1, - anon_sym_BANG, - ACTIONS(5573), 1, + ACTIONS(4819), 1, anon_sym_LBRACK, - ACTIONS(6343), 1, + ACTIONS(4823), 1, + anon_sym_BANG, + ACTIONS(5739), 1, + anon_sym_QMARK, + ACTIONS(6264), 1, anon_sym_switch, - ACTIONS(6357), 1, + ACTIONS(6278), 1, anon_sym_with, - ACTIONS(6813), 1, + ACTIONS(6327), 1, anon_sym_as, - ACTIONS(7139), 1, - anon_sym_QMARK, - ACTIONS(7145), 1, + ACTIONS(6817), 1, + anon_sym_DOT_DOT, + ACTIONS(6829), 1, anon_sym_SLASH, - ACTIONS(7147), 1, - anon_sym_CARET, - ACTIONS(7149), 1, - anon_sym_PIPE, - ACTIONS(7151), 1, + ACTIONS(6863), 1, anon_sym_AMP, - ACTIONS(7155), 1, + ACTIONS(6867), 1, anon_sym_GT_GT, - ACTIONS(7161), 1, - anon_sym_DOT_DOT, - ACTIONS(7163), 1, + ACTIONS(6873), 1, + anon_sym_is, + ACTIONS(6877), 1, + anon_sym_CARET, + ACTIONS(6879), 1, + anon_sym_PIPE, + ACTIONS(6881), 1, anon_sym_AMP_AMP, - ACTIONS(7165), 1, + ACTIONS(6883), 1, anon_sym_PIPE_PIPE, - ACTIONS(7167), 1, + ACTIONS(6885), 1, anon_sym_QMARK_QMARK, - ACTIONS(7169), 1, - anon_sym_is, - STATE(2485), 1, + STATE(2419), 1, sym_bracketed_argument_list, - STATE(3487), 1, + STATE(2958), 1, sym_argument_list, - ACTIONS(5306), 2, + ACTIONS(4825), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7137), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(7141), 2, + ACTIONS(6825), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7143), 2, + ACTIONS(6827), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7153), 2, + ACTIONS(6861), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(6865), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7157), 2, + ACTIONS(6869), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7159), 2, + ACTIONS(6871), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5072), 4, + ACTIONS(5737), 5, + anon_sym_COLON, anon_sym_COMMA, - anon_sym_RBRACK, anon_sym_RPAREN, anon_sym_RBRACE, - STATE(4538), 9, + anon_sym_into, + STATE(4478), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -591673,7 +586283,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [75370] = 34, + [70107] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -591694,69 +586304,147 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4100), 1, + ACTIONS(6935), 1, + anon_sym_and, + ACTIONS(6977), 1, + anon_sym_or, + 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, + ACTIONS(6109), 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(4102), 1, + ACTIONS(6107), 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, - ACTIONS(5264), 1, + anon_sym_with, + [70197] = 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(4753), 1, anon_sym_LPAREN, - ACTIONS(5304), 1, - anon_sym_BANG, - ACTIONS(5573), 1, + ACTIONS(4792), 1, + anon_sym_DOT, + ACTIONS(4794), 1, + anon_sym_DASH_GT, + ACTIONS(4819), 1, anon_sym_LBRACK, - ACTIONS(6343), 1, + ACTIONS(4823), 1, + anon_sym_BANG, + ACTIONS(6264), 1, anon_sym_switch, - ACTIONS(6357), 1, + ACTIONS(6278), 1, anon_sym_with, - ACTIONS(6813), 1, + ACTIONS(6327), 1, anon_sym_as, - ACTIONS(7145), 1, + ACTIONS(6817), 1, + anon_sym_DOT_DOT, + ACTIONS(6829), 1, anon_sym_SLASH, - ACTIONS(7155), 1, + ACTIONS(6863), 1, + anon_sym_AMP, + ACTIONS(6867), 1, anon_sym_GT_GT, - ACTIONS(7161), 1, - anon_sym_DOT_DOT, - ACTIONS(7169), 1, + ACTIONS(6873), 1, anon_sym_is, - STATE(2485), 1, + ACTIONS(6877), 1, + anon_sym_CARET, + STATE(2419), 1, sym_bracketed_argument_list, - STATE(3487), 1, + STATE(2958), 1, sym_argument_list, - ACTIONS(5306), 2, + ACTIONS(4825), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7137), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(7141), 2, + ACTIONS(5739), 2, + anon_sym_QMARK, + anon_sym_PIPE, + ACTIONS(6825), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7143), 2, + ACTIONS(6827), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7153), 2, + ACTIONS(6861), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(6865), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7157), 2, + ACTIONS(6869), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7159), 2, + ACTIONS(6871), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5664), 3, - anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_AMP, - ACTIONS(5660), 8, + ACTIONS(5737), 8, + anon_sym_COLON, 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, - STATE(4539), 9, + anon_sym_into, + STATE(4480), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -591766,7 +586454,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [75497] = 27, + [70329] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -591787,45 +586475,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4100), 1, - anon_sym_DOT, - ACTIONS(4102), 1, - anon_sym_DASH_GT, - ACTIONS(5264), 1, - anon_sym_LPAREN, - ACTIONS(5304), 1, - anon_sym_BANG, - ACTIONS(5573), 1, + ACTIONS(4033), 1, anon_sym_LBRACK, - ACTIONS(6343), 1, - anon_sym_switch, - ACTIONS(6357), 1, - anon_sym_with, - ACTIONS(7145), 1, - anon_sym_SLASH, - ACTIONS(7161), 1, - anon_sym_DOT_DOT, - STATE(2485), 1, - sym_bracketed_argument_list, - STATE(3487), 1, - sym_argument_list, - ACTIONS(5306), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(7141), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(7143), 2, + ACTIONS(4039), 1, anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(5664), 6, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT_GT, - STATE(4540), 9, + STATE(4481), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -591835,11 +586489,27 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5660), 16, + ACTIONS(3961), 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(3963), 27, + sym_interpolation_close_brace, + anon_sym_COLON, anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_RBRACE, + 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, @@ -591847,12 +586517,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, - [75610] = 13, + anon_sym_DASH_GT, + anon_sym_with, + [70419] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -591873,7 +586550,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - STATE(4541), 9, + ACTIONS(6979), 1, + aux_sym_raw_string_literal_token1, + STATE(4482), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -591883,7 +586562,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(4862), 11, + ACTIONS(4905), 11, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, @@ -591895,7 +586574,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT, - ACTIONS(4860), 28, + ACTIONS(4903), 28, sym_interpolation_close_brace, anon_sym_LBRACK, anon_sym_COLON, @@ -591924,7 +586603,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, anon_sym_DASH_GT, anon_sym_with, - [75695] = 13, + [70507] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -591945,7 +586624,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - STATE(4542), 9, + STATE(4483), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -591955,7 +586634,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(4967), 11, + ACTIONS(4096), 11, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, @@ -591967,12 +586646,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT, - ACTIONS(4965), 28, + ACTIONS(4098), 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, @@ -591996,7 +586676,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, anon_sym_DASH_GT, anon_sym_with, - [75780] = 13, + [70593] = 16, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -592017,7 +586697,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - STATE(4543), 9, + ACTIONS(4033), 1, + anon_sym_LBRACK, + ACTIONS(4039), 1, + anon_sym_STAR, + ACTIONS(6957), 1, + anon_sym_QMARK, + STATE(4484), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -592027,10 +586713,9 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5092), 11, + ACTIONS(3961), 10, anon_sym_LT, anon_sym_GT, - anon_sym_QMARK, anon_sym_BANG, anon_sym_PLUS, anon_sym_DASH, @@ -592039,15 +586724,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT, - ACTIONS(5090), 28, + ACTIONS(3963), 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, @@ -592068,7 +586752,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, anon_sym_DASH_GT, anon_sym_with, - [75865] = 14, + [70685] = 36, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -592089,14 +586773,72 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4271), 6, - sym_interpolation_close_brace, + ACTIONS(4092), 1, + anon_sym_DOT, + ACTIONS(4094), 1, + anon_sym_DASH_GT, + ACTIONS(5227), 1, + anon_sym_LPAREN, + ACTIONS(5236), 1, + anon_sym_LBRACK, + ACTIONS(5238), 1, + anon_sym_BANG, + ACTIONS(6017), 1, + anon_sym_switch, + ACTIONS(6031), 1, + anon_sym_with, + ACTIONS(6775), 1, + anon_sym_as, + ACTIONS(6819), 1, + anon_sym_DOT_DOT, + ACTIONS(6905), 1, + anon_sym_SLASH, + ACTIONS(6907), 1, + anon_sym_CARET, + ACTIONS(6911), 1, + anon_sym_AMP, + ACTIONS(6915), 1, + anon_sym_GT_GT, + ACTIONS(6927), 1, + anon_sym_is, + STATE(2605), 1, + sym_bracketed_argument_list, + STATE(3348), 1, + sym_argument_list, + ACTIONS(5240), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5739), 2, + anon_sym_QMARK, + anon_sym_PIPE, + ACTIONS(6897), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(6901), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6903), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(6913), 2, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + ACTIONS(6917), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6919), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(5737), 8, anon_sym_COLON, - anon_sym_COMMA, + 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(4544), 9, + STATE(4485), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -592106,42 +586848,95 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5394), 11, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, + [70817] = 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(4042), 1, + anon_sym_DOT, + ACTIONS(4044), 1, + anon_sym_DASH_GT, + ACTIONS(5257), 1, + anon_sym_LPAREN, + ACTIONS(5302), 1, anon_sym_BANG, - anon_sym_PLUS, - anon_sym_DASH, + ACTIONS(5549), 1, + anon_sym_LBRACK, + ACTIONS(6355), 1, + anon_sym_switch, + ACTIONS(6369), 1, + anon_sym_with, + ACTIONS(6985), 1, anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, + ACTIONS(6989), 1, anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(5391), 22, - anon_sym_LBRACK, - anon_sym_LPAREN, + ACTIONS(6991), 1, + anon_sym_DOT_DOT, + STATE(2467), 1, + sym_bracketed_argument_list, + STATE(3381), 1, + sym_argument_list, + ACTIONS(5304), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + ACTIONS(6981), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6983), 2, anon_sym_STAR, anon_sym_PERCENT, - anon_sym_CARET, + ACTIONS(6987), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, + ACTIONS(5739), 5, + anon_sym_LT, + anon_sym_GT, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_AMP, + STATE(4486), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + ACTIONS(5737), 14, + anon_sym_SEMI, + anon_sym_CARET, 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, - [75952] = 14, + aux_sym_preproc_if_token3, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + [70934] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -592162,14 +586957,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4271), 6, - sym_interpolation_close_brace, - anon_sym_COLON, - anon_sym_COMMA, - anon_sym_and, - anon_sym_or, - anon_sym_into, - STATE(4545), 9, + STATE(4487), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -592179,7 +586967,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5400), 11, + ACTIONS(5320), 11, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, @@ -592191,8 +586979,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT, - ACTIONS(5397), 22, + ACTIONS(5318), 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, @@ -592207,14 +586998,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, - [76039] = 13, + [71019] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -592235,7 +587029,75 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - STATE(4546), 9, + ACTIONS(4042), 1, + anon_sym_DOT, + ACTIONS(4044), 1, + anon_sym_DASH_GT, + ACTIONS(5257), 1, + anon_sym_LPAREN, + ACTIONS(5300), 1, + anon_sym_LBRACK, + ACTIONS(5302), 1, + anon_sym_BANG, + ACTIONS(6495), 1, + anon_sym_switch, + ACTIONS(6509), 1, + anon_sym_with, + ACTIONS(6995), 1, + anon_sym_QMARK, + ACTIONS(7001), 1, + anon_sym_SLASH, + ACTIONS(7003), 1, + anon_sym_CARET, + ACTIONS(7005), 1, + anon_sym_PIPE, + ACTIONS(7007), 1, + anon_sym_AMP, + ACTIONS(7011), 1, + anon_sym_GT_GT, + ACTIONS(7017), 1, + anon_sym_DOT_DOT, + ACTIONS(7019), 1, + anon_sym_AMP_AMP, + ACTIONS(7021), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7023), 1, + anon_sym_QMARK_QMARK, + ACTIONS(7025), 1, + anon_sym_as, + ACTIONS(7027), 1, + anon_sym_is, + STATE(2759), 1, + sym_bracketed_argument_list, + STATE(3381), 1, + sym_argument_list, + ACTIONS(5304), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6993), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(6997), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6999), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(7009), 2, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + ACTIONS(7013), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(7015), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(5709), 4, + anon_sym_EQ_GT, + anon_sym_when, + anon_sym_and, + anon_sym_or, + STATE(4488), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -592245,48 +587107,196 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5194), 11, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, + [71158] = 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(4427), 1, + anon_sym_DOT, + ACTIONS(4429), 1, + anon_sym_DASH_GT, + ACTIONS(6557), 1, + anon_sym_LPAREN, + ACTIONS(6607), 1, + anon_sym_LBRACK, + ACTIONS(6613), 1, anon_sym_BANG, - anon_sym_PLUS, - anon_sym_DASH, + ACTIONS(6637), 1, + anon_sym_switch, + ACTIONS(6647), 1, + anon_sym_as, + ACTIONS(6651), 1, + anon_sym_with, + ACTIONS(7035), 1, anon_sym_SLASH, - anon_sym_PIPE, + ACTIONS(7037), 1, anon_sym_AMP, + ACTIONS(7041), 1, anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(5192), 28, + ACTIONS(7047), 1, + anon_sym_DOT_DOT, + ACTIONS(7049), 1, + anon_sym_is, + STATE(3188), 1, + sym_bracketed_argument_list, + STATE(4584), 1, + sym_argument_list, + ACTIONS(5739), 2, + anon_sym_QMARK, + anon_sym_PIPE, + ACTIONS(6615), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7029), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(7031), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(7033), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(7039), 2, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + ACTIONS(7043), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(7045), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(5737), 8, sym_interpolation_close_brace, - anon_sym_LBRACK, anon_sym_COLON, anon_sym_COMMA, + anon_sym_CARET, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, + anon_sym_into, + STATE(4489), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + [71287] = 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(4427), 1, + anon_sym_DOT, + ACTIONS(4429), 1, + anon_sym_DASH_GT, + ACTIONS(6557), 1, anon_sym_LPAREN, + ACTIONS(6607), 1, + anon_sym_LBRACK, + ACTIONS(6613), 1, + anon_sym_BANG, + ACTIONS(6637), 1, + anon_sym_switch, + ACTIONS(6647), 1, + anon_sym_as, + ACTIONS(6651), 1, + anon_sym_with, + ACTIONS(7035), 1, + anon_sym_SLASH, + ACTIONS(7037), 1, + anon_sym_AMP, + ACTIONS(7041), 1, + anon_sym_GT_GT, + ACTIONS(7047), 1, + anon_sym_DOT_DOT, + ACTIONS(7049), 1, + anon_sym_is, + ACTIONS(7051), 1, + anon_sym_CARET, + STATE(3188), 1, + sym_bracketed_argument_list, + STATE(4584), 1, + sym_argument_list, + ACTIONS(5739), 2, + anon_sym_QMARK, + anon_sym_PIPE, + ACTIONS(6615), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + ACTIONS(7029), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(7031), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(7033), 2, anon_sym_STAR, anon_sym_PERCENT, - anon_sym_CARET, + ACTIONS(7039), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, + ACTIONS(7043), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + ACTIONS(7045), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - anon_sym_switch, - anon_sym_DOT_DOT, - anon_sym_and, - anon_sym_or, + ACTIONS(5737), 7, + sym_interpolation_close_brace, + anon_sym_COLON, + anon_sym_COMMA, 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, - [76124] = 27, + STATE(4490), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + [71418] = 34, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -592307,39 +587317,69 @@ 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(5024), 1, + ACTIONS(4427), 1, + anon_sym_DOT, + ACTIONS(4429), 1, + anon_sym_DASH_GT, + ACTIONS(6557), 1, + anon_sym_LPAREN, + ACTIONS(6607), 1, anon_sym_LBRACK, - ACTIONS(5040), 1, - aux_sym_preproc_if_token1, - ACTIONS(7171), 1, - aux_sym_preproc_if_token3, - ACTIONS(7173), 1, - aux_sym_preproc_else_token1, - ACTIONS(7175), 1, - aux_sym_preproc_elif_token1, - STATE(2175), 1, - sym__reserved_identifier, - STATE(5786), 1, - aux_sym__class_declaration_initializer_repeat1, - STATE(5805), 1, - sym_attribute_list, - STATE(5934), 1, - sym_preproc_if_in_attribute_list, - STATE(6051), 1, - sym__attribute_list, - STATE(6538), 1, - sym_enum_member_declaration, - STATE(6642), 1, - sym_identifier, - STATE(7291), 2, - sym_preproc_else_in_attribute_list, - sym_preproc_elif_in_attribute_list, - STATE(7494), 2, - sym_preproc_else_in_enum_member_declaration, - sym_preproc_elif_in_enum_member_declaration, - STATE(4547), 9, + ACTIONS(6613), 1, + anon_sym_BANG, + ACTIONS(6637), 1, + anon_sym_switch, + ACTIONS(6647), 1, + anon_sym_as, + ACTIONS(6651), 1, + anon_sym_with, + ACTIONS(7035), 1, + anon_sym_SLASH, + ACTIONS(7041), 1, + anon_sym_GT_GT, + ACTIONS(7047), 1, + anon_sym_DOT_DOT, + ACTIONS(7049), 1, + anon_sym_is, + STATE(3188), 1, + sym_bracketed_argument_list, + STATE(4584), 1, + sym_argument_list, + ACTIONS(6615), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7029), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(7031), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(7033), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(7039), 2, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + ACTIONS(7043), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(7045), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(5739), 3, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_AMP, + ACTIONS(5737), 8, + 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_into, + STATE(4491), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -592349,30 +587389,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, - [76237] = 13, + [71545] = 33, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -592393,7 +587410,57 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - STATE(4548), 9, + ACTIONS(4427), 1, + anon_sym_DOT, + ACTIONS(4429), 1, + anon_sym_DASH_GT, + ACTIONS(6557), 1, + anon_sym_LPAREN, + ACTIONS(6607), 1, + anon_sym_LBRACK, + ACTIONS(6613), 1, + anon_sym_BANG, + ACTIONS(6637), 1, + anon_sym_switch, + ACTIONS(6647), 1, + anon_sym_as, + ACTIONS(6651), 1, + anon_sym_with, + ACTIONS(7035), 1, + anon_sym_SLASH, + ACTIONS(7041), 1, + anon_sym_GT_GT, + ACTIONS(7047), 1, + anon_sym_DOT_DOT, + ACTIONS(7049), 1, + anon_sym_is, + STATE(3188), 1, + sym_bracketed_argument_list, + STATE(4584), 1, + sym_argument_list, + ACTIONS(6615), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7029), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(7031), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(7033), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(7039), 2, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + ACTIONS(7045), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(5739), 3, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_AMP, + STATE(4492), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -592403,48 +587470,18 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5096), 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(5094), 28, + ACTIONS(5737), 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, - [76322] = 22, + [71670] = 22, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -592465,26 +587502,26 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4075), 1, + ACTIONS(4042), 1, anon_sym_DOT, - ACTIONS(4077), 1, + ACTIONS(4044), 1, anon_sym_DASH_GT, - ACTIONS(5247), 1, + ACTIONS(5257), 1, anon_sym_LPAREN, - ACTIONS(5283), 1, + ACTIONS(5300), 1, anon_sym_LBRACK, - ACTIONS(5285), 1, + ACTIONS(5302), 1, anon_sym_BANG, - ACTIONS(7177), 1, + ACTIONS(7017), 1, anon_sym_DOT_DOT, - STATE(2613), 1, + STATE(2759), 1, sym_bracketed_argument_list, - STATE(3259), 1, + STATE(3381), 1, sym_argument_list, - ACTIONS(5287), 2, + ACTIONS(5304), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5733), 9, + ACTIONS(5743), 9, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, @@ -592494,7 +587531,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_AMP, anon_sym_GT_GT, - STATE(4549), 9, + STATE(4493), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -592504,7 +587541,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5731), 20, + ACTIONS(5741), 20, anon_sym_STAR, anon_sym_PERCENT, anon_sym_CARET, @@ -592514,18 +587551,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_when, 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, - [76425] = 13, + [71773] = 37, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -592546,58 +587583,82 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - STATE(4550), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - ACTIONS(4991), 11, - anon_sym_LT, - anon_sym_GT, + ACTIONS(4427), 1, + anon_sym_DOT, + ACTIONS(4429), 1, + anon_sym_DASH_GT, + ACTIONS(5739), 1, anon_sym_QMARK, + ACTIONS(6557), 1, + anon_sym_LPAREN, + ACTIONS(6607), 1, + anon_sym_LBRACK, + ACTIONS(6613), 1, anon_sym_BANG, - anon_sym_PLUS, - anon_sym_DASH, + ACTIONS(6637), 1, + anon_sym_switch, + ACTIONS(6647), 1, + anon_sym_as, + ACTIONS(6651), 1, + anon_sym_with, + ACTIONS(7035), 1, anon_sym_SLASH, - anon_sym_PIPE, + ACTIONS(7037), 1, anon_sym_AMP, + ACTIONS(7041), 1, anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(4989), 28, - sym_interpolation_close_brace, - anon_sym_LBRACK, - anon_sym_COLON, - anon_sym_COMMA, - anon_sym_LPAREN, + ACTIONS(7047), 1, + anon_sym_DOT_DOT, + ACTIONS(7049), 1, + anon_sym_is, + ACTIONS(7051), 1, + anon_sym_CARET, + ACTIONS(7053), 1, + anon_sym_PIPE, + STATE(3188), 1, + sym_bracketed_argument_list, + STATE(4584), 1, + sym_argument_list, + ACTIONS(6615), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + ACTIONS(7029), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(7031), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(7033), 2, anon_sym_STAR, anon_sym_PERCENT, - anon_sym_CARET, + ACTIONS(7039), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, + ACTIONS(7043), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + ACTIONS(7045), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - anon_sym_switch, - anon_sym_DOT_DOT, - anon_sym_and, - anon_sym_or, + ACTIONS(5737), 7, + sym_interpolation_close_brace, + anon_sym_COLON, + anon_sym_COMMA, 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, - [76510] = 33, + STATE(4494), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + [71906] = 38, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -592618,57 +587679,73 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4100), 1, + ACTIONS(4427), 1, anon_sym_DOT, - ACTIONS(4102), 1, + ACTIONS(4429), 1, anon_sym_DASH_GT, - ACTIONS(5264), 1, + ACTIONS(5739), 1, + anon_sym_QMARK, + ACTIONS(6557), 1, anon_sym_LPAREN, - ACTIONS(5304), 1, - anon_sym_BANG, - ACTIONS(5573), 1, + ACTIONS(6607), 1, anon_sym_LBRACK, - ACTIONS(6343), 1, + ACTIONS(6613), 1, + anon_sym_BANG, + ACTIONS(6637), 1, anon_sym_switch, - ACTIONS(6357), 1, - anon_sym_with, - ACTIONS(6813), 1, + ACTIONS(6647), 1, anon_sym_as, - ACTIONS(7145), 1, + ACTIONS(6651), 1, + anon_sym_with, + ACTIONS(7035), 1, anon_sym_SLASH, - ACTIONS(7155), 1, + ACTIONS(7037), 1, + anon_sym_AMP, + ACTIONS(7041), 1, anon_sym_GT_GT, - ACTIONS(7161), 1, + ACTIONS(7047), 1, anon_sym_DOT_DOT, - ACTIONS(7169), 1, + ACTIONS(7049), 1, anon_sym_is, - STATE(2485), 1, + ACTIONS(7051), 1, + anon_sym_CARET, + ACTIONS(7053), 1, + anon_sym_PIPE, + ACTIONS(7055), 1, + anon_sym_AMP_AMP, + STATE(3188), 1, sym_bracketed_argument_list, - STATE(3487), 1, + STATE(4584), 1, sym_argument_list, - ACTIONS(5306), 2, + ACTIONS(6615), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7137), 2, + ACTIONS(7029), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7141), 2, + ACTIONS(7031), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7143), 2, + ACTIONS(7033), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7153), 2, + ACTIONS(7039), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7159), 2, + ACTIONS(7043), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(7045), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5664), 3, - anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_AMP, - STATE(4551), 9, + ACTIONS(5737), 6, + sym_interpolation_close_brace, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, + anon_sym_into, + STATE(4495), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -592678,18 +587755,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5660), 10, - 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, - [76635] = 13, + [72041] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -592710,58 +587776,85 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - STATE(4552), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - ACTIONS(4999), 11, - anon_sym_LT, - anon_sym_GT, + ACTIONS(4427), 1, + anon_sym_DOT, + ACTIONS(4429), 1, + anon_sym_DASH_GT, + ACTIONS(5739), 1, anon_sym_QMARK, + ACTIONS(6557), 1, + anon_sym_LPAREN, + ACTIONS(6607), 1, + anon_sym_LBRACK, + ACTIONS(6613), 1, anon_sym_BANG, - anon_sym_PLUS, - anon_sym_DASH, + ACTIONS(6637), 1, + anon_sym_switch, + ACTIONS(6647), 1, + anon_sym_as, + ACTIONS(6651), 1, + anon_sym_with, + ACTIONS(7035), 1, anon_sym_SLASH, - anon_sym_PIPE, + ACTIONS(7037), 1, anon_sym_AMP, + ACTIONS(7041), 1, anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(4997), 28, - sym_interpolation_close_brace, - anon_sym_LBRACK, - anon_sym_COLON, - anon_sym_COMMA, - anon_sym_LPAREN, + ACTIONS(7047), 1, + anon_sym_DOT_DOT, + ACTIONS(7049), 1, + anon_sym_is, + ACTIONS(7051), 1, + anon_sym_CARET, + ACTIONS(7053), 1, + anon_sym_PIPE, + ACTIONS(7055), 1, + anon_sym_AMP_AMP, + ACTIONS(7057), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7059), 1, + anon_sym_QMARK_QMARK, + STATE(3188), 1, + sym_bracketed_argument_list, + STATE(4584), 1, + sym_argument_list, + ACTIONS(6615), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + ACTIONS(7029), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(7031), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(7033), 2, anon_sym_STAR, anon_sym_PERCENT, - anon_sym_CARET, + ACTIONS(7039), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, + ACTIONS(7043), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + ACTIONS(7045), 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, + ACTIONS(5737), 4, + sym_interpolation_close_brace, + anon_sym_COLON, + anon_sym_COMMA, anon_sym_into, - anon_sym_as, - anon_sym_is, - anon_sym_DASH_GT, - anon_sym_with, - [76720] = 13, + STATE(4496), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + [72180] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -592782,58 +587875,85 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - STATE(4553), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - ACTIONS(4963), 11, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, + ACTIONS(4042), 1, + anon_sym_DOT, + ACTIONS(4044), 1, + anon_sym_DASH_GT, + ACTIONS(5257), 1, + anon_sym_LPAREN, + ACTIONS(5300), 1, + anon_sym_LBRACK, + ACTIONS(5302), 1, anon_sym_BANG, - anon_sym_PLUS, - anon_sym_DASH, + ACTIONS(6495), 1, + anon_sym_switch, + ACTIONS(6509), 1, + anon_sym_with, + ACTIONS(6995), 1, + anon_sym_QMARK, + ACTIONS(7001), 1, anon_sym_SLASH, + ACTIONS(7003), 1, + anon_sym_CARET, + ACTIONS(7005), 1, anon_sym_PIPE, + ACTIONS(7007), 1, anon_sym_AMP, + ACTIONS(7011), 1, anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(4961), 28, - sym_interpolation_close_brace, - anon_sym_LBRACK, - anon_sym_COLON, - anon_sym_COMMA, - anon_sym_LPAREN, + ACTIONS(7017), 1, + anon_sym_DOT_DOT, + ACTIONS(7019), 1, + anon_sym_AMP_AMP, + ACTIONS(7021), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7023), 1, + anon_sym_QMARK_QMARK, + ACTIONS(7025), 1, + anon_sym_as, + ACTIONS(7027), 1, + anon_sym_is, + STATE(2759), 1, + sym_bracketed_argument_list, + STATE(3381), 1, + sym_argument_list, + ACTIONS(5304), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + ACTIONS(6993), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(6997), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6999), 2, anon_sym_STAR, anon_sym_PERCENT, - anon_sym_CARET, + ACTIONS(7009), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, + ACTIONS(7013), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + ACTIONS(7015), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - anon_sym_switch, - anon_sym_DOT_DOT, + ACTIONS(5849), 4, + 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, - [76805] = 22, + 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, + [72319] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -592854,36 +587974,75 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4100), 1, + ACTIONS(4042), 1, anon_sym_DOT, - ACTIONS(4102), 1, + ACTIONS(4044), 1, anon_sym_DASH_GT, - ACTIONS(5264), 1, + ACTIONS(5257), 1, anon_sym_LPAREN, - ACTIONS(5304), 1, - anon_sym_BANG, - ACTIONS(5573), 1, + ACTIONS(5300), 1, anon_sym_LBRACK, - ACTIONS(7161), 1, + ACTIONS(5302), 1, + anon_sym_BANG, + ACTIONS(6495), 1, + anon_sym_switch, + ACTIONS(6509), 1, + anon_sym_with, + ACTIONS(6995), 1, + anon_sym_QMARK, + ACTIONS(7001), 1, + anon_sym_SLASH, + ACTIONS(7003), 1, + anon_sym_CARET, + ACTIONS(7005), 1, + anon_sym_PIPE, + ACTIONS(7007), 1, + anon_sym_AMP, + ACTIONS(7011), 1, + anon_sym_GT_GT, + ACTIONS(7017), 1, anon_sym_DOT_DOT, - STATE(2485), 1, + ACTIONS(7019), 1, + anon_sym_AMP_AMP, + ACTIONS(7021), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7023), 1, + anon_sym_QMARK_QMARK, + ACTIONS(7025), 1, + anon_sym_as, + ACTIONS(7027), 1, + anon_sym_is, + STATE(2759), 1, sym_bracketed_argument_list, - STATE(3487), 1, + STATE(3381), 1, sym_argument_list, - ACTIONS(5306), 2, + ACTIONS(5304), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5733), 9, + ACTIONS(6993), 2, anon_sym_LT, anon_sym_GT, - anon_sym_QMARK, + ACTIONS(6997), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT_GT, - STATE(4554), 9, + ACTIONS(6999), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(7009), 2, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + ACTIONS(7013), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(7015), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4996), 4, + anon_sym_EQ_GT, + anon_sym_when, + anon_sym_and, + anon_sym_or, + STATE(4498), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -592893,28 +588052,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5731), 20, - 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_as, - anon_sym_is, - anon_sym_with, - [76908] = 21, + [72458] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -592935,33 +588073,75 @@ 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(2175), 1, - sym__reserved_identifier, - STATE(2181), 1, - sym_generic_name, - STATE(4373), 1, - sym_identifier, - STATE(5795), 1, - sym_attribute_target_specifier, - STATE(6519), 1, - sym__name, - STATE(6931), 1, - sym_attribute, - STATE(4096), 3, - sym_alias_qualified_name, - sym__simple_name, - sym_qualified_name, - ACTIONS(1055), 7, - anon_sym_field, - anon_sym_event, - anon_sym_method, - anon_sym_param, - anon_sym_property, - anon_sym_return, - anon_sym_type, - STATE(4555), 9, + ACTIONS(4042), 1, + anon_sym_DOT, + ACTIONS(4044), 1, + anon_sym_DASH_GT, + ACTIONS(5257), 1, + anon_sym_LPAREN, + ACTIONS(5300), 1, + anon_sym_LBRACK, + ACTIONS(5302), 1, + anon_sym_BANG, + ACTIONS(6495), 1, + anon_sym_switch, + ACTIONS(6509), 1, + anon_sym_with, + ACTIONS(6995), 1, + anon_sym_QMARK, + ACTIONS(7001), 1, + anon_sym_SLASH, + ACTIONS(7003), 1, + anon_sym_CARET, + ACTIONS(7005), 1, + anon_sym_PIPE, + ACTIONS(7007), 1, + anon_sym_AMP, + ACTIONS(7011), 1, + anon_sym_GT_GT, + ACTIONS(7017), 1, + anon_sym_DOT_DOT, + ACTIONS(7019), 1, + anon_sym_AMP_AMP, + ACTIONS(7021), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7023), 1, + anon_sym_QMARK_QMARK, + ACTIONS(7025), 1, + anon_sym_as, + ACTIONS(7027), 1, + anon_sym_is, + STATE(2759), 1, + sym_bracketed_argument_list, + STATE(3381), 1, + sym_argument_list, + ACTIONS(5304), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6993), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(6997), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6999), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(7009), 2, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + ACTIONS(7013), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(7015), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(5652), 4, + anon_sym_EQ_GT, + anon_sym_when, + anon_sym_and, + anon_sym_or, + STATE(4499), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -592971,30 +588151,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, - [77009] = 37, + [72597] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -593015,72 +588172,75 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4100), 1, + ACTIONS(4042), 1, anon_sym_DOT, - ACTIONS(4102), 1, + ACTIONS(4044), 1, anon_sym_DASH_GT, - ACTIONS(5264), 1, + ACTIONS(5257), 1, anon_sym_LPAREN, - ACTIONS(5304), 1, - anon_sym_BANG, - ACTIONS(5573), 1, + ACTIONS(5300), 1, anon_sym_LBRACK, - ACTIONS(5664), 1, - anon_sym_QMARK, - ACTIONS(6343), 1, + ACTIONS(5302), 1, + anon_sym_BANG, + ACTIONS(6495), 1, anon_sym_switch, - ACTIONS(6357), 1, + ACTIONS(6509), 1, anon_sym_with, - ACTIONS(6813), 1, - anon_sym_as, - ACTIONS(7145), 1, + ACTIONS(6995), 1, + anon_sym_QMARK, + ACTIONS(7001), 1, anon_sym_SLASH, - ACTIONS(7147), 1, + ACTIONS(7003), 1, anon_sym_CARET, - ACTIONS(7149), 1, + ACTIONS(7005), 1, anon_sym_PIPE, - ACTIONS(7151), 1, + ACTIONS(7007), 1, anon_sym_AMP, - ACTIONS(7155), 1, + ACTIONS(7011), 1, anon_sym_GT_GT, - ACTIONS(7161), 1, + ACTIONS(7017), 1, anon_sym_DOT_DOT, - ACTIONS(7169), 1, + ACTIONS(7019), 1, + anon_sym_AMP_AMP, + ACTIONS(7021), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7023), 1, + anon_sym_QMARK_QMARK, + ACTIONS(7025), 1, + anon_sym_as, + ACTIONS(7027), 1, anon_sym_is, - STATE(2485), 1, + STATE(2759), 1, sym_bracketed_argument_list, - STATE(3487), 1, + STATE(3381), 1, sym_argument_list, - ACTIONS(5306), 2, + ACTIONS(5304), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7137), 2, + ACTIONS(6993), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7141), 2, + ACTIONS(6997), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7143), 2, + ACTIONS(6999), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7153), 2, + ACTIONS(7009), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7157), 2, + ACTIONS(7013), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7159), 2, + ACTIONS(7015), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5660), 7, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_QMARK_QMARK, - STATE(4556), 9, + ACTIONS(5801), 4, + anon_sym_EQ_GT, + anon_sym_when, + anon_sym_and, + anon_sym_or, + STATE(4500), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -593090,7 +588250,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [77142] = 38, + [72736] = 35, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -593111,73 +588271,70 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4100), 1, + ACTIONS(4092), 1, anon_sym_DOT, - ACTIONS(4102), 1, + ACTIONS(4094), 1, anon_sym_DASH_GT, - ACTIONS(5264), 1, + ACTIONS(5227), 1, anon_sym_LPAREN, - ACTIONS(5304), 1, - anon_sym_BANG, - ACTIONS(5573), 1, + ACTIONS(5236), 1, anon_sym_LBRACK, - ACTIONS(5664), 1, - anon_sym_QMARK, - ACTIONS(6343), 1, + ACTIONS(5238), 1, + anon_sym_BANG, + ACTIONS(6017), 1, anon_sym_switch, - ACTIONS(6357), 1, + ACTIONS(6031), 1, anon_sym_with, - ACTIONS(6813), 1, - anon_sym_as, - ACTIONS(7145), 1, + ACTIONS(7067), 1, anon_sym_SLASH, - ACTIONS(7147), 1, - anon_sym_CARET, - ACTIONS(7149), 1, - anon_sym_PIPE, - ACTIONS(7151), 1, + ACTIONS(7069), 1, anon_sym_AMP, - ACTIONS(7155), 1, + ACTIONS(7073), 1, anon_sym_GT_GT, - ACTIONS(7161), 1, + ACTIONS(7079), 1, anon_sym_DOT_DOT, - ACTIONS(7163), 1, - anon_sym_AMP_AMP, - ACTIONS(7169), 1, + ACTIONS(7081), 1, + anon_sym_as, + ACTIONS(7083), 1, anon_sym_is, - STATE(2485), 1, + STATE(2605), 1, sym_bracketed_argument_list, - STATE(3487), 1, + STATE(3348), 1, sym_argument_list, - ACTIONS(5306), 2, + ACTIONS(5240), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7137), 2, + ACTIONS(5739), 2, + anon_sym_QMARK, + anon_sym_PIPE, + ACTIONS(7061), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7141), 2, + ACTIONS(7063), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7143), 2, + ACTIONS(7065), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7153), 2, + ACTIONS(7071), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7157), 2, + ACTIONS(7075), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7159), 2, + ACTIONS(7077), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5660), 6, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_RBRACE, + ACTIONS(5737), 8, + anon_sym_CARET, + anon_sym_and, + anon_sym_or, + anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_QMARK_QMARK, - STATE(4557), 9, + anon_sym_into, + anon_sym_by, + STATE(4501), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -593187,7 +588344,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [77277] = 29, + [72865] = 36, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -593208,49 +588365,71 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4100), 1, + ACTIONS(4092), 1, anon_sym_DOT, - ACTIONS(4102), 1, + ACTIONS(4094), 1, anon_sym_DASH_GT, - ACTIONS(5264), 1, + ACTIONS(5227), 1, anon_sym_LPAREN, - ACTIONS(5304), 1, - anon_sym_BANG, - ACTIONS(5573), 1, + ACTIONS(5236), 1, anon_sym_LBRACK, - ACTIONS(6343), 1, + ACTIONS(5238), 1, + anon_sym_BANG, + ACTIONS(6017), 1, anon_sym_switch, - ACTIONS(6357), 1, + ACTIONS(6031), 1, anon_sym_with, - ACTIONS(7183), 1, + ACTIONS(7067), 1, anon_sym_SLASH, - ACTIONS(7187), 1, + ACTIONS(7069), 1, + anon_sym_AMP, + ACTIONS(7073), 1, anon_sym_GT_GT, - ACTIONS(7189), 1, + ACTIONS(7079), 1, anon_sym_DOT_DOT, - STATE(2485), 1, + ACTIONS(7081), 1, + anon_sym_as, + ACTIONS(7083), 1, + anon_sym_is, + ACTIONS(7085), 1, + anon_sym_CARET, + STATE(2605), 1, sym_bracketed_argument_list, - STATE(3487), 1, + STATE(3348), 1, sym_argument_list, - ACTIONS(5306), 2, + ACTIONS(5240), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7179), 2, + ACTIONS(5739), 2, + anon_sym_QMARK, + anon_sym_PIPE, + ACTIONS(7061), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(7063), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7181), 2, + ACTIONS(7065), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7185), 2, + ACTIONS(7071), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(5664), 5, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_AMP, - STATE(4558), 9, + ACTIONS(7075), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(7077), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(5737), 7, + anon_sym_and, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, + anon_sym_into, + anon_sym_by, + STATE(4502), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -593260,22 +588439,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5660), 14, - anon_sym_SEMI, - 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, - [77394] = 15, + [72996] = 34, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -593296,60 +588460,79 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(7133), 1, - anon_sym_and, - ACTIONS(7191), 1, - anon_sym_or, - STATE(4559), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - ACTIONS(6207), 11, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, + ACTIONS(4092), 1, + anon_sym_DOT, + ACTIONS(4094), 1, + anon_sym_DASH_GT, + ACTIONS(5227), 1, + anon_sym_LPAREN, + ACTIONS(5236), 1, + anon_sym_LBRACK, + ACTIONS(5238), 1, anon_sym_BANG, - anon_sym_PLUS, - anon_sym_DASH, + ACTIONS(6017), 1, + anon_sym_switch, + ACTIONS(6031), 1, + anon_sym_with, + ACTIONS(7067), 1, anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, + ACTIONS(7073), 1, anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(6205), 26, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_LPAREN, + ACTIONS(7079), 1, + anon_sym_DOT_DOT, + ACTIONS(7081), 1, + anon_sym_as, + ACTIONS(7083), 1, + anon_sym_is, + STATE(2605), 1, + sym_bracketed_argument_list, + STATE(3348), 1, + sym_argument_list, + ACTIONS(5240), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + ACTIONS(7061), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(7063), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(7065), 2, anon_sym_STAR, anon_sym_PERCENT, - anon_sym_CARET, + ACTIONS(7071), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, + ACTIONS(7075), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + ACTIONS(7077), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - anon_sym_switch, - anon_sym_DOT_DOT, + ACTIONS(5739), 3, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_AMP, + ACTIONS(5737), 8, + 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, - anon_sym_DASH_GT, - anon_sym_with, - aux_sym_preproc_if_token3, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - [77483] = 26, + anon_sym_into, + anon_sym_by, + STATE(4503), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + [73123] = 33, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -593370,44 +588553,57 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4100), 1, + ACTIONS(4092), 1, anon_sym_DOT, - ACTIONS(4102), 1, + ACTIONS(4094), 1, anon_sym_DASH_GT, - ACTIONS(5264), 1, + ACTIONS(5227), 1, anon_sym_LPAREN, - ACTIONS(5304), 1, - anon_sym_BANG, - ACTIONS(5573), 1, + ACTIONS(5236), 1, anon_sym_LBRACK, - ACTIONS(6343), 1, + ACTIONS(5238), 1, + anon_sym_BANG, + ACTIONS(6017), 1, anon_sym_switch, - ACTIONS(6357), 1, + ACTIONS(6031), 1, anon_sym_with, - ACTIONS(7183), 1, + ACTIONS(7067), 1, anon_sym_SLASH, - ACTIONS(7189), 1, + ACTIONS(7073), 1, + anon_sym_GT_GT, + ACTIONS(7079), 1, anon_sym_DOT_DOT, - STATE(2485), 1, + ACTIONS(7081), 1, + anon_sym_as, + ACTIONS(7083), 1, + anon_sym_is, + STATE(2605), 1, sym_bracketed_argument_list, - STATE(3487), 1, + STATE(3348), 1, sym_argument_list, - ACTIONS(5306), 2, + ACTIONS(5240), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7181), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(5664), 8, + ACTIONS(7061), 2, anon_sym_LT, anon_sym_GT, - anon_sym_QMARK, + ACTIONS(7063), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(7065), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(7071), 2, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + ACTIONS(7077), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(5739), 3, + anon_sym_QMARK, anon_sym_PIPE, anon_sym_AMP, - anon_sym_GT_GT, - STATE(4560), 9, + STATE(4504), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -593417,24 +588613,18 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5660), 16, - anon_sym_SEMI, + ACTIONS(5737), 10, 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, - [77594] = 24, + anon_sym_into, + anon_sym_by, + [73248] = 37, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -593455,69 +588645,82 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4100), 1, + ACTIONS(4092), 1, anon_sym_DOT, - ACTIONS(4102), 1, + ACTIONS(4094), 1, anon_sym_DASH_GT, - ACTIONS(5264), 1, + ACTIONS(5227), 1, anon_sym_LPAREN, - ACTIONS(5304), 1, - anon_sym_BANG, - ACTIONS(5573), 1, + ACTIONS(5236), 1, anon_sym_LBRACK, - ACTIONS(6343), 1, + ACTIONS(5238), 1, + anon_sym_BANG, + ACTIONS(5739), 1, + anon_sym_QMARK, + ACTIONS(6017), 1, anon_sym_switch, - ACTIONS(6357), 1, + ACTIONS(6031), 1, anon_sym_with, - ACTIONS(7189), 1, + ACTIONS(7067), 1, + anon_sym_SLASH, + ACTIONS(7069), 1, + anon_sym_AMP, + ACTIONS(7073), 1, + anon_sym_GT_GT, + ACTIONS(7079), 1, anon_sym_DOT_DOT, - STATE(2485), 1, + ACTIONS(7081), 1, + anon_sym_as, + ACTIONS(7083), 1, + anon_sym_is, + ACTIONS(7085), 1, + anon_sym_CARET, + ACTIONS(7087), 1, + anon_sym_PIPE, + STATE(2605), 1, sym_bracketed_argument_list, - STATE(3487), 1, + STATE(3348), 1, sym_argument_list, - ACTIONS(5306), 2, + ACTIONS(5240), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5664), 9, + ACTIONS(7061), 2, anon_sym_LT, anon_sym_GT, - anon_sym_QMARK, + ACTIONS(7063), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT_GT, - STATE(4561), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - ACTIONS(5660), 18, - anon_sym_SEMI, + ACTIONS(7065), 2, anon_sym_STAR, anon_sym_PERCENT, - anon_sym_CARET, + ACTIONS(7071), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, + ACTIONS(7075), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + ACTIONS(7077), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, + ACTIONS(5737), 7, + 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, - [77701] = 35, + anon_sym_into, + anon_sym_by, + STATE(4505), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + [73381] = 38, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -593538,70 +588741,73 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4100), 1, + ACTIONS(4092), 1, anon_sym_DOT, - ACTIONS(4102), 1, + ACTIONS(4094), 1, anon_sym_DASH_GT, - ACTIONS(5264), 1, + ACTIONS(5227), 1, anon_sym_LPAREN, - ACTIONS(5304), 1, - anon_sym_BANG, - ACTIONS(5573), 1, + ACTIONS(5236), 1, anon_sym_LBRACK, - ACTIONS(6343), 1, + ACTIONS(5238), 1, + anon_sym_BANG, + ACTIONS(5739), 1, + anon_sym_QMARK, + ACTIONS(6017), 1, anon_sym_switch, - ACTIONS(6357), 1, + ACTIONS(6031), 1, anon_sym_with, - ACTIONS(6813), 1, - anon_sym_as, - ACTIONS(6815), 1, - anon_sym_is, - ACTIONS(7183), 1, + ACTIONS(7067), 1, anon_sym_SLASH, - ACTIONS(7187), 1, + ACTIONS(7069), 1, + anon_sym_AMP, + ACTIONS(7073), 1, anon_sym_GT_GT, - ACTIONS(7189), 1, + ACTIONS(7079), 1, anon_sym_DOT_DOT, - ACTIONS(7195), 1, - anon_sym_AMP, - STATE(2485), 1, + ACTIONS(7081), 1, + anon_sym_as, + ACTIONS(7083), 1, + anon_sym_is, + ACTIONS(7085), 1, + anon_sym_CARET, + ACTIONS(7087), 1, + anon_sym_PIPE, + ACTIONS(7089), 1, + anon_sym_AMP_AMP, + STATE(2605), 1, sym_bracketed_argument_list, - STATE(3487), 1, + STATE(3348), 1, sym_argument_list, - ACTIONS(5306), 2, + ACTIONS(5240), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5664), 2, - anon_sym_QMARK, - anon_sym_PIPE, - ACTIONS(7179), 2, + ACTIONS(7061), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(7063), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7181), 2, + ACTIONS(7065), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7185), 2, + ACTIONS(7071), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7193), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(7197), 2, + ACTIONS(7075), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7199), 2, + ACTIONS(7077), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5660), 8, - anon_sym_SEMI, - anon_sym_CARET, - anon_sym_AMP_AMP, + ACTIONS(5737), 6, + 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(4562), 9, + anon_sym_into, + anon_sym_by, + STATE(4506), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -593611,7 +588817,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [77830] = 36, + [73516] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -593632,71 +588838,75 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4100), 1, + ACTIONS(4092), 1, anon_sym_DOT, - ACTIONS(4102), 1, + ACTIONS(4094), 1, anon_sym_DASH_GT, - ACTIONS(5264), 1, + ACTIONS(5227), 1, anon_sym_LPAREN, - ACTIONS(5304), 1, - anon_sym_BANG, - ACTIONS(5573), 1, + ACTIONS(5236), 1, anon_sym_LBRACK, - ACTIONS(6343), 1, + ACTIONS(5238), 1, + anon_sym_BANG, + ACTIONS(5739), 1, + anon_sym_QMARK, + ACTIONS(6017), 1, anon_sym_switch, - ACTIONS(6357), 1, + ACTIONS(6031), 1, anon_sym_with, - ACTIONS(6813), 1, - anon_sym_as, - ACTIONS(6815), 1, - anon_sym_is, - ACTIONS(7183), 1, + ACTIONS(7067), 1, anon_sym_SLASH, - ACTIONS(7187), 1, + ACTIONS(7069), 1, + anon_sym_AMP, + ACTIONS(7073), 1, anon_sym_GT_GT, - ACTIONS(7189), 1, + ACTIONS(7079), 1, anon_sym_DOT_DOT, - ACTIONS(7195), 1, - anon_sym_AMP, - ACTIONS(7201), 1, + ACTIONS(7081), 1, + anon_sym_as, + ACTIONS(7083), 1, + anon_sym_is, + ACTIONS(7085), 1, anon_sym_CARET, - STATE(2485), 1, + ACTIONS(7087), 1, + anon_sym_PIPE, + ACTIONS(7089), 1, + anon_sym_AMP_AMP, + ACTIONS(7091), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7093), 1, + anon_sym_QMARK_QMARK, + STATE(2605), 1, sym_bracketed_argument_list, - STATE(3487), 1, + STATE(3348), 1, sym_argument_list, - ACTIONS(5306), 2, + ACTIONS(5240), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5664), 2, - anon_sym_QMARK, - anon_sym_PIPE, - ACTIONS(7179), 2, + ACTIONS(7061), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(7063), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7181), 2, + ACTIONS(7065), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7185), 2, + ACTIONS(7071), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7193), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(7197), 2, + ACTIONS(7075), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7199), 2, + ACTIONS(7077), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5660), 7, - anon_sym_SEMI, - 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(4563), 9, + ACTIONS(5737), 4, + anon_sym_and, + anon_sym_or, + anon_sym_into, + anon_sym_by, + STATE(4507), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -593706,7 +588916,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [77961] = 34, + [73655] = 41, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -593727,79 +588937,159 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4100), 1, + ACTIONS(4042), 1, anon_sym_DOT, - ACTIONS(4102), 1, + ACTIONS(4044), 1, anon_sym_DASH_GT, - ACTIONS(5264), 1, + ACTIONS(5257), 1, anon_sym_LPAREN, - ACTIONS(5304), 1, + ACTIONS(5302), 1, anon_sym_BANG, - ACTIONS(5573), 1, + ACTIONS(5549), 1, anon_sym_LBRACK, - ACTIONS(6343), 1, + ACTIONS(6355), 1, anon_sym_switch, - ACTIONS(6357), 1, + ACTIONS(6369), 1, anon_sym_with, - ACTIONS(6813), 1, + ACTIONS(6811), 1, anon_sym_as, - ACTIONS(6815), 1, + ACTIONS(6813), 1, anon_sym_is, - ACTIONS(7183), 1, + ACTIONS(6985), 1, anon_sym_SLASH, - ACTIONS(7187), 1, + ACTIONS(6989), 1, anon_sym_GT_GT, - ACTIONS(7189), 1, + ACTIONS(6991), 1, anon_sym_DOT_DOT, - STATE(2485), 1, + ACTIONS(7095), 1, + anon_sym_SEMI, + ACTIONS(7099), 1, + anon_sym_QMARK, + ACTIONS(7101), 1, + anon_sym_CARET, + ACTIONS(7103), 1, + anon_sym_PIPE, + ACTIONS(7105), 1, + anon_sym_AMP, + ACTIONS(7111), 1, + anon_sym_AMP_AMP, + ACTIONS(7113), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7115), 1, + anon_sym_QMARK_QMARK, + STATE(2467), 1, sym_bracketed_argument_list, - STATE(3487), 1, + STATE(3381), 1, sym_argument_list, - ACTIONS(5306), 2, + ACTIONS(5304), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7179), 2, + ACTIONS(6981), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7181), 2, + ACTIONS(6983), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7185), 2, + ACTIONS(6987), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7193), 2, + ACTIONS(7097), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7197), 2, + ACTIONS(7107), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7199), 2, + ACTIONS(7109), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5664), 3, + ACTIONS(5709), 3, + aux_sym_preproc_if_token3, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + 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, + [73796] = 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(4241), 6, + sym_interpolation_close_brace, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_and, + anon_sym_or, + anon_sym_into, + STATE(4509), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + ACTIONS(5379), 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, - ACTIONS(5660), 8, - anon_sym_SEMI, + anon_sym_GT_GT, + anon_sym_DOT, + ACTIONS(5376), 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, - aux_sym_preproc_if_token3, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - STATE(4564), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - [78088] = 27, + anon_sym_as, + anon_sym_is, + anon_sym_DASH_GT, + anon_sym_with, + [73883] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -593820,45 +589110,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4100), 1, - anon_sym_DOT, - ACTIONS(4102), 1, - anon_sym_DASH_GT, - ACTIONS(5264), 1, - anon_sym_LPAREN, - ACTIONS(5304), 1, - anon_sym_BANG, - ACTIONS(5573), 1, - anon_sym_LBRACK, - ACTIONS(6343), 1, - anon_sym_switch, - ACTIONS(6357), 1, - anon_sym_with, - ACTIONS(7183), 1, - anon_sym_SLASH, - ACTIONS(7189), 1, - anon_sym_DOT_DOT, - STATE(2485), 1, - sym_bracketed_argument_list, - STATE(3487), 1, - sym_argument_list, - ACTIONS(5306), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(7179), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(7181), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(5664), 6, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT_GT, - STATE(4565), 9, + ACTIONS(4241), 6, + sym_interpolation_close_brace, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_and, + anon_sym_or, + anon_sym_into, + STATE(4510), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -593868,8 +589127,25 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5660), 16, - anon_sym_SEMI, + ACTIONS(5385), 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(5382), 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, @@ -593877,15 +589153,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, - aux_sym_preproc_if_token3, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - [78201] = 33, + anon_sym_DASH_GT, + anon_sym_with, + [73970] = 21, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -593906,57 +589183,33 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4100), 1, - anon_sym_DOT, - ACTIONS(4102), 1, - anon_sym_DASH_GT, - ACTIONS(5264), 1, - anon_sym_LPAREN, - ACTIONS(5304), 1, - anon_sym_BANG, - ACTIONS(5573), 1, - anon_sym_LBRACK, - ACTIONS(6343), 1, - anon_sym_switch, - ACTIONS(6357), 1, - anon_sym_with, - ACTIONS(6813), 1, - anon_sym_as, - ACTIONS(6815), 1, - anon_sym_is, - ACTIONS(7183), 1, - anon_sym_SLASH, - ACTIONS(7187), 1, - anon_sym_GT_GT, - ACTIONS(7189), 1, - anon_sym_DOT_DOT, - STATE(2485), 1, - sym_bracketed_argument_list, - STATE(3487), 1, - sym_argument_list, - ACTIONS(5306), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(7179), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(7181), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(7185), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - ACTIONS(7193), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(7199), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(5664), 3, - anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_AMP, - STATE(4566), 9, + ACTIONS(25), 1, + sym__identifier_token, + STATE(2168), 1, + sym__reserved_identifier, + STATE(2170), 1, + sym_generic_name, + STATE(4370), 1, + sym_identifier, + STATE(5781), 1, + sym_attribute_target_specifier, + STATE(6503), 1, + sym__name, + STATE(6776), 1, + sym_attribute, + STATE(4068), 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(4511), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -593966,18 +589219,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5660), 10, - anon_sym_SEMI, - 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, - [78326] = 22, + 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, + [74071] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -593998,36 +589263,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4100), 1, - anon_sym_DOT, - ACTIONS(4102), 1, - anon_sym_DASH_GT, - ACTIONS(5264), 1, - anon_sym_LPAREN, - ACTIONS(5304), 1, - anon_sym_BANG, - ACTIONS(5573), 1, - anon_sym_LBRACK, - ACTIONS(7189), 1, - anon_sym_DOT_DOT, - STATE(2485), 1, - sym_bracketed_argument_list, - STATE(3487), 1, - sym_argument_list, - ACTIONS(5306), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5733), 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(4567), 9, + ACTIONS(7117), 1, + anon_sym_and, + ACTIONS(7119), 1, + anon_sym_or, + STATE(4512), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -594037,8 +589277,24 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5731), 20, + ACTIONS(5360), 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(5358), 26, anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_STAR, anon_sym_PERCENT, anon_sym_CARET, @@ -594049,16 +589305,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_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, - [78429] = 37, + [74160] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -594079,72 +589337,75 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4100), 1, + ACTIONS(4042), 1, anon_sym_DOT, - ACTIONS(4102), 1, + ACTIONS(4044), 1, anon_sym_DASH_GT, - ACTIONS(5264), 1, + ACTIONS(5257), 1, anon_sym_LPAREN, - ACTIONS(5304), 1, + ACTIONS(5302), 1, anon_sym_BANG, - ACTIONS(5573), 1, + ACTIONS(5549), 1, anon_sym_LBRACK, - ACTIONS(5664), 1, - anon_sym_QMARK, - ACTIONS(6343), 1, + ACTIONS(6355), 1, anon_sym_switch, - ACTIONS(6357), 1, + ACTIONS(6369), 1, anon_sym_with, - ACTIONS(6813), 1, + ACTIONS(6811), 1, anon_sym_as, - ACTIONS(6815), 1, + ACTIONS(6813), 1, anon_sym_is, - ACTIONS(7183), 1, + ACTIONS(6985), 1, anon_sym_SLASH, - ACTIONS(7187), 1, + ACTIONS(6989), 1, anon_sym_GT_GT, - ACTIONS(7189), 1, + ACTIONS(6991), 1, anon_sym_DOT_DOT, - ACTIONS(7195), 1, - anon_sym_AMP, - ACTIONS(7201), 1, + ACTIONS(7099), 1, + anon_sym_QMARK, + ACTIONS(7101), 1, anon_sym_CARET, - ACTIONS(7203), 1, + ACTIONS(7103), 1, anon_sym_PIPE, - STATE(2485), 1, + ACTIONS(7105), 1, + anon_sym_AMP, + ACTIONS(7111), 1, + anon_sym_AMP_AMP, + ACTIONS(7113), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7115), 1, + anon_sym_QMARK_QMARK, + STATE(2467), 1, sym_bracketed_argument_list, - STATE(3487), 1, + STATE(3381), 1, sym_argument_list, - ACTIONS(5306), 2, + ACTIONS(5304), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7179), 2, + ACTIONS(6981), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7181), 2, + ACTIONS(6983), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7185), 2, + ACTIONS(6987), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7193), 2, + ACTIONS(7097), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7197), 2, + ACTIONS(7107), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7199), 2, + ACTIONS(7109), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5660), 7, + ACTIONS(5849), 4, anon_sym_SEMI, - 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(4568), 9, + STATE(4513), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -594154,7 +589415,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [78562] = 38, + [74299] = 27, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -594175,73 +589436,39 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4100), 1, - anon_sym_DOT, - ACTIONS(4102), 1, - anon_sym_DASH_GT, - ACTIONS(5264), 1, - anon_sym_LPAREN, - ACTIONS(5304), 1, - anon_sym_BANG, - ACTIONS(5573), 1, + ACTIONS(25), 1, + sym__identifier_token, + ACTIONS(5166), 1, anon_sym_LBRACK, - ACTIONS(5664), 1, - anon_sym_QMARK, - ACTIONS(6343), 1, - anon_sym_switch, - ACTIONS(6357), 1, - anon_sym_with, - ACTIONS(6813), 1, - anon_sym_as, - ACTIONS(6815), 1, - anon_sym_is, - ACTIONS(7183), 1, - anon_sym_SLASH, - ACTIONS(7187), 1, - anon_sym_GT_GT, - ACTIONS(7189), 1, - anon_sym_DOT_DOT, - ACTIONS(7195), 1, - anon_sym_AMP, - ACTIONS(7201), 1, - anon_sym_CARET, - ACTIONS(7203), 1, - anon_sym_PIPE, - ACTIONS(7205), 1, - anon_sym_AMP_AMP, - STATE(2485), 1, - sym_bracketed_argument_list, - STATE(3487), 1, - sym_argument_list, - ACTIONS(5306), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(7179), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(7181), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(7185), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - ACTIONS(7193), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(7197), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(7199), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(5660), 6, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_QMARK_QMARK, + ACTIONS(5182), 1, + aux_sym_preproc_if_token1, + ACTIONS(7121), 1, aux_sym_preproc_if_token3, + ACTIONS(7123), 1, aux_sym_preproc_else_token1, + ACTIONS(7125), 1, aux_sym_preproc_elif_token1, - STATE(4569), 9, + STATE(2168), 1, + sym__reserved_identifier, + STATE(5783), 1, + aux_sym__class_declaration_initializer_repeat1, + STATE(5850), 1, + sym_attribute_list, + STATE(5961), 1, + sym__attribute_list, + STATE(6020), 1, + sym_preproc_if_in_attribute_list, + STATE(6550), 1, + sym_enum_member_declaration, + STATE(6717), 1, + sym_identifier, + STATE(7380), 2, + sym_preproc_else_in_attribute_list, + sym_preproc_elif_in_attribute_list, + STATE(7494), 2, + sym_preproc_else_in_enum_member_declaration, + sym_preproc_elif_in_enum_member_declaration, + STATE(4514), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -594251,7 +589478,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [78697] = 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, + [74412] = 29, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -594272,75 +589522,49 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4100), 1, + ACTIONS(4092), 1, anon_sym_DOT, - ACTIONS(4102), 1, + ACTIONS(4094), 1, anon_sym_DASH_GT, - ACTIONS(5264), 1, + ACTIONS(5227), 1, anon_sym_LPAREN, - ACTIONS(5304), 1, - anon_sym_BANG, - ACTIONS(5573), 1, + ACTIONS(5236), 1, anon_sym_LBRACK, - ACTIONS(5664), 1, - anon_sym_QMARK, - ACTIONS(6343), 1, + ACTIONS(5238), 1, + anon_sym_BANG, + ACTIONS(6017), 1, anon_sym_switch, - ACTIONS(6357), 1, + ACTIONS(6031), 1, anon_sym_with, - ACTIONS(6813), 1, - anon_sym_as, - ACTIONS(6815), 1, - anon_sym_is, - ACTIONS(7183), 1, + ACTIONS(7067), 1, anon_sym_SLASH, - ACTIONS(7187), 1, + ACTIONS(7073), 1, anon_sym_GT_GT, - ACTIONS(7189), 1, + ACTIONS(7079), 1, anon_sym_DOT_DOT, - ACTIONS(7195), 1, - anon_sym_AMP, - ACTIONS(7201), 1, - anon_sym_CARET, - ACTIONS(7203), 1, - anon_sym_PIPE, - ACTIONS(7205), 1, - anon_sym_AMP_AMP, - ACTIONS(7207), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7209), 1, - anon_sym_QMARK_QMARK, - STATE(2485), 1, + STATE(2605), 1, sym_bracketed_argument_list, - STATE(3487), 1, + STATE(3348), 1, sym_argument_list, - ACTIONS(5306), 2, + ACTIONS(5240), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7179), 2, + ACTIONS(7063), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7181), 2, + ACTIONS(7065), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7185), 2, + ACTIONS(7071), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7193), 2, + ACTIONS(5739), 5, anon_sym_LT, anon_sym_GT, - ACTIONS(7197), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(7199), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(5660), 4, - anon_sym_SEMI, - aux_sym_preproc_if_token3, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - STATE(4570), 9, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_AMP, + STATE(4515), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -594350,7 +589574,22 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [78836] = 40, + ACTIONS(5737), 14, + 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_by, + anon_sym_as, + anon_sym_is, + [74529] = 26, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -594371,75 +589610,44 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4443), 1, - anon_sym_DASH_GT, - ACTIONS(4533), 1, + ACTIONS(4092), 1, anon_sym_DOT, - ACTIONS(6574), 1, + ACTIONS(4094), 1, + anon_sym_DASH_GT, + ACTIONS(5227), 1, anon_sym_LPAREN, - ACTIONS(6619), 1, + ACTIONS(5236), 1, anon_sym_LBRACK, - ACTIONS(6625), 1, + ACTIONS(5238), 1, anon_sym_BANG, - ACTIONS(6649), 1, + ACTIONS(6017), 1, anon_sym_switch, - ACTIONS(6659), 1, - anon_sym_as, - ACTIONS(6663), 1, + ACTIONS(6031), 1, anon_sym_with, - ACTIONS(7009), 1, + ACTIONS(7067), 1, anon_sym_SLASH, - ACTIONS(7011), 1, + ACTIONS(7079), 1, anon_sym_DOT_DOT, - ACTIONS(7213), 1, - anon_sym_QMARK, - ACTIONS(7215), 1, - anon_sym_CARET, - ACTIONS(7217), 1, - anon_sym_PIPE, - ACTIONS(7219), 1, - anon_sym_AMP, - ACTIONS(7223), 1, - anon_sym_GT_GT, - ACTIONS(7229), 1, - anon_sym_AMP_AMP, - ACTIONS(7231), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7233), 1, - anon_sym_QMARK_QMARK, - ACTIONS(7235), 1, - anon_sym_is, - STATE(3173), 1, + STATE(2605), 1, sym_bracketed_argument_list, - STATE(4583), 1, + STATE(3348), 1, sym_argument_list, - ACTIONS(6627), 2, + ACTIONS(5240), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7005), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(7007), 2, + ACTIONS(7065), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7211), 2, + ACTIONS(5739), 8, anon_sym_LT, anon_sym_GT, - ACTIONS(7221), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - ACTIONS(7225), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(7227), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(5864), 4, - sym_interpolation_close_brace, - anon_sym_COLON, - anon_sym_COMMA, - anon_sym_into, - STATE(4571), 9, + anon_sym_QMARK, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT_GT, + STATE(4516), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -594449,7 +589657,24 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [78975] = 40, + ACTIONS(5737), 16, + 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_by, + anon_sym_as, + anon_sym_is, + [74640] = 27, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -594470,75 +589695,45 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4100), 1, + ACTIONS(4092), 1, anon_sym_DOT, - ACTIONS(4102), 1, + ACTIONS(4094), 1, anon_sym_DASH_GT, - ACTIONS(5264), 1, + ACTIONS(5227), 1, anon_sym_LPAREN, - ACTIONS(5304), 1, - anon_sym_BANG, - ACTIONS(5573), 1, + ACTIONS(5236), 1, anon_sym_LBRACK, - ACTIONS(6343), 1, + ACTIONS(5238), 1, + anon_sym_BANG, + ACTIONS(6017), 1, anon_sym_switch, - ACTIONS(6357), 1, + ACTIONS(6031), 1, anon_sym_with, - ACTIONS(6813), 1, - anon_sym_as, - ACTIONS(6815), 1, - anon_sym_is, - ACTIONS(7183), 1, + ACTIONS(7067), 1, anon_sym_SLASH, - ACTIONS(7187), 1, - anon_sym_GT_GT, - ACTIONS(7189), 1, + ACTIONS(7079), 1, anon_sym_DOT_DOT, - ACTIONS(7195), 1, - anon_sym_AMP, - ACTIONS(7201), 1, - anon_sym_CARET, - ACTIONS(7203), 1, - anon_sym_PIPE, - ACTIONS(7205), 1, - anon_sym_AMP_AMP, - ACTIONS(7207), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7209), 1, - anon_sym_QMARK_QMARK, - ACTIONS(7237), 1, - anon_sym_QMARK, - STATE(2485), 1, + STATE(2605), 1, sym_bracketed_argument_list, - STATE(3487), 1, + STATE(3348), 1, sym_argument_list, - ACTIONS(5306), 2, + ACTIONS(5240), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7179), 2, + ACTIONS(7063), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7181), 2, + ACTIONS(7065), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7185), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - ACTIONS(7193), 2, + ACTIONS(5739), 6, anon_sym_LT, anon_sym_GT, - ACTIONS(7197), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(7199), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(5072), 4, - anon_sym_SEMI, - aux_sym_preproc_if_token3, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - STATE(4572), 9, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT_GT, + STATE(4517), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -594548,7 +589743,24 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [79114] = 13, + ACTIONS(5737), 16, + 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_by, + anon_sym_as, + anon_sym_is, + [74753] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -594569,7 +589781,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - STATE(4573), 9, + STATE(4518), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -594579,7 +589791,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5018), 11, + ACTIONS(2949), 11, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, @@ -594591,7 +589803,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT, - ACTIONS(5016), 28, + ACTIONS(2951), 28, sym_interpolation_close_brace, anon_sym_LBRACK, anon_sym_COLON, @@ -594620,7 +589832,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, anon_sym_DASH_GT, anon_sym_with, - [79199] = 13, + [74838] = 21, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -594641,7 +589853,33 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - STATE(4574), 9, + ACTIONS(25), 1, + sym__identifier_token, + STATE(2168), 1, + sym__reserved_identifier, + STATE(2170), 1, + sym_generic_name, + STATE(4370), 1, + sym_identifier, + STATE(5774), 1, + sym_attribute_target_specifier, + STATE(6503), 1, + sym__name, + STATE(7011), 1, + sym_attribute, + STATE(4068), 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(4519), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -594651,48 +589889,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(4894), 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(4892), 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, - [79284] = 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, + [74939] = 29, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -594713,75 +589933,49 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4100), 1, + ACTIONS(4042), 1, anon_sym_DOT, - ACTIONS(4102), 1, + ACTIONS(4044), 1, anon_sym_DASH_GT, - ACTIONS(5264), 1, + ACTIONS(5257), 1, anon_sym_LPAREN, - ACTIONS(5304), 1, - anon_sym_BANG, - ACTIONS(5573), 1, + ACTIONS(5300), 1, anon_sym_LBRACK, - ACTIONS(6343), 1, + ACTIONS(5302), 1, + anon_sym_BANG, + ACTIONS(6495), 1, anon_sym_switch, - ACTIONS(6357), 1, + ACTIONS(6509), 1, anon_sym_with, - ACTIONS(6813), 1, - anon_sym_as, - ACTIONS(6815), 1, - anon_sym_is, - ACTIONS(7183), 1, + ACTIONS(7131), 1, anon_sym_SLASH, - ACTIONS(7187), 1, + ACTIONS(7135), 1, anon_sym_GT_GT, - ACTIONS(7189), 1, + ACTIONS(7137), 1, anon_sym_DOT_DOT, - ACTIONS(7195), 1, - anon_sym_AMP, - ACTIONS(7201), 1, - anon_sym_CARET, - ACTIONS(7203), 1, - anon_sym_PIPE, - ACTIONS(7205), 1, - anon_sym_AMP_AMP, - ACTIONS(7207), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7209), 1, - anon_sym_QMARK_QMARK, - ACTIONS(7237), 1, - anon_sym_QMARK, - STATE(2485), 1, + STATE(2759), 1, sym_bracketed_argument_list, - STATE(3487), 1, + STATE(3381), 1, sym_argument_list, - ACTIONS(5306), 2, + ACTIONS(5304), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7179), 2, + ACTIONS(7127), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7181), 2, + ACTIONS(7129), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7185), 2, + ACTIONS(7133), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7193), 2, + ACTIONS(5739), 5, anon_sym_LT, anon_sym_GT, - ACTIONS(7197), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(7199), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(5882), 4, - anon_sym_SEMI, - aux_sym_preproc_if_token3, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - STATE(4575), 9, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_AMP, + STATE(4520), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -594791,7 +589985,22 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [79423] = 13, + ACTIONS(5737), 14, + 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_as, + anon_sym_is, + [75056] = 26, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -594812,7 +590021,44 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - STATE(4576), 9, + ACTIONS(4042), 1, + anon_sym_DOT, + ACTIONS(4044), 1, + anon_sym_DASH_GT, + ACTIONS(5257), 1, + anon_sym_LPAREN, + ACTIONS(5300), 1, + anon_sym_LBRACK, + ACTIONS(5302), 1, + anon_sym_BANG, + ACTIONS(6495), 1, + anon_sym_switch, + ACTIONS(6509), 1, + anon_sym_with, + ACTIONS(7131), 1, + anon_sym_SLASH, + ACTIONS(7137), 1, + anon_sym_DOT_DOT, + STATE(2759), 1, + sym_bracketed_argument_list, + STATE(3381), 1, + sym_argument_list, + ACTIONS(5304), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7129), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(5739), 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(4521), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -594822,28 +590068,8 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5124), 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(5122), 28, - sym_interpolation_close_brace, - anon_sym_LBRACK, + ACTIONS(5737), 16, 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, @@ -594851,19 +590077,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_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, - [79508] = 40, + [75167] = 35, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -594884,75 +590106,70 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4075), 1, + ACTIONS(4042), 1, anon_sym_DOT, - ACTIONS(4077), 1, + ACTIONS(4044), 1, anon_sym_DASH_GT, - ACTIONS(5247), 1, + ACTIONS(5257), 1, anon_sym_LPAREN, - ACTIONS(5283), 1, + ACTIONS(5300), 1, anon_sym_LBRACK, - ACTIONS(5285), 1, + ACTIONS(5302), 1, anon_sym_BANG, - ACTIONS(6147), 1, + ACTIONS(6495), 1, anon_sym_switch, - ACTIONS(6157), 1, - anon_sym_as, - ACTIONS(6161), 1, + ACTIONS(6509), 1, anon_sym_with, - ACTIONS(7091), 1, + ACTIONS(7025), 1, + anon_sym_as, + ACTIONS(7131), 1, anon_sym_SLASH, - ACTIONS(7093), 1, - anon_sym_CARET, - ACTIONS(7095), 1, - anon_sym_PIPE, - ACTIONS(7097), 1, - anon_sym_AMP, - ACTIONS(7101), 1, + ACTIONS(7135), 1, anon_sym_GT_GT, - ACTIONS(7107), 1, + ACTIONS(7137), 1, anon_sym_DOT_DOT, - ACTIONS(7109), 1, - anon_sym_AMP_AMP, - ACTIONS(7111), 1, + ACTIONS(7141), 1, + anon_sym_AMP, + ACTIONS(7147), 1, anon_sym_is, - ACTIONS(7113), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7115), 1, - anon_sym_QMARK_QMARK, - ACTIONS(7117), 1, - anon_sym_QMARK, - STATE(2613), 1, + STATE(2759), 1, sym_bracketed_argument_list, - STATE(3259), 1, + STATE(3381), 1, sym_argument_list, - ACTIONS(5287), 2, + ACTIONS(5304), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7085), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(7087), 2, + ACTIONS(5739), 2, + anon_sym_QMARK, + anon_sym_PIPE, + ACTIONS(7127), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7089), 2, + ACTIONS(7129), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7099), 2, + ACTIONS(7133), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7103), 2, + ACTIONS(7139), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(7143), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7105), 2, + ACTIONS(7145), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5745), 4, - anon_sym_EQ_GT, + ACTIONS(5737), 8, + anon_sym_COLON, + anon_sym_CARET, + anon_sym_when, anon_sym_and, anon_sym_or, - anon_sym_into, - STATE(4577), 9, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, + STATE(4522), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -594962,7 +590179,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [79647] = 13, + [75296] = 36, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -594983,58 +590200,81 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - STATE(4578), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - ACTIONS(2951), 11, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, + ACTIONS(4042), 1, + anon_sym_DOT, + ACTIONS(4044), 1, + anon_sym_DASH_GT, + ACTIONS(5257), 1, + anon_sym_LPAREN, + ACTIONS(5300), 1, + anon_sym_LBRACK, + ACTIONS(5302), 1, anon_sym_BANG, - anon_sym_PLUS, - anon_sym_DASH, + ACTIONS(6495), 1, + anon_sym_switch, + ACTIONS(6509), 1, + anon_sym_with, + ACTIONS(7025), 1, + anon_sym_as, + ACTIONS(7131), 1, anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, + ACTIONS(7135), 1, anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(2953), 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(7141), 1, + anon_sym_AMP, + ACTIONS(7147), 1, + anon_sym_is, + ACTIONS(7149), 1, + anon_sym_CARET, + STATE(2759), 1, + sym_bracketed_argument_list, + STATE(3381), 1, + sym_argument_list, + ACTIONS(5304), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + ACTIONS(5739), 2, + anon_sym_QMARK, + anon_sym_PIPE, + ACTIONS(7127), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(7129), 2, anon_sym_STAR, anon_sym_PERCENT, - anon_sym_CARET, + ACTIONS(7133), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, + ACTIONS(7139), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(7143), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + ACTIONS(7145), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - anon_sym_switch, - anon_sym_DOT_DOT, + ACTIONS(5737), 7, + 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, - [79732] = 40, + STATE(4523), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + [75427] = 34, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -595055,75 +590295,69 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4443), 1, - anon_sym_DASH_GT, - ACTIONS(4533), 1, + ACTIONS(4042), 1, anon_sym_DOT, - ACTIONS(6574), 1, + ACTIONS(4044), 1, + anon_sym_DASH_GT, + ACTIONS(5257), 1, anon_sym_LPAREN, - ACTIONS(6619), 1, + ACTIONS(5300), 1, anon_sym_LBRACK, - ACTIONS(6625), 1, + ACTIONS(5302), 1, anon_sym_BANG, - ACTIONS(6649), 1, + ACTIONS(6495), 1, anon_sym_switch, - ACTIONS(6659), 1, - anon_sym_as, - ACTIONS(6663), 1, + ACTIONS(6509), 1, anon_sym_with, - ACTIONS(7009), 1, + ACTIONS(7025), 1, + anon_sym_as, + ACTIONS(7131), 1, anon_sym_SLASH, - ACTIONS(7011), 1, - anon_sym_DOT_DOT, - ACTIONS(7213), 1, - anon_sym_QMARK, - ACTIONS(7215), 1, - anon_sym_CARET, - ACTIONS(7217), 1, - anon_sym_PIPE, - ACTIONS(7219), 1, - anon_sym_AMP, - ACTIONS(7223), 1, + ACTIONS(7135), 1, anon_sym_GT_GT, - ACTIONS(7229), 1, - anon_sym_AMP_AMP, - ACTIONS(7231), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7233), 1, - anon_sym_QMARK_QMARK, - ACTIONS(7235), 1, + ACTIONS(7137), 1, + anon_sym_DOT_DOT, + ACTIONS(7147), 1, anon_sym_is, - STATE(3173), 1, + STATE(2759), 1, sym_bracketed_argument_list, - STATE(4583), 1, + STATE(3381), 1, sym_argument_list, - ACTIONS(6627), 2, + ACTIONS(5304), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7005), 2, + ACTIONS(7127), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7007), 2, + ACTIONS(7129), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7211), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(7221), 2, + ACTIONS(7133), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7225), 2, + ACTIONS(7139), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(7143), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7227), 2, + ACTIONS(7145), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5072), 4, - sym_interpolation_close_brace, + ACTIONS(5739), 3, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_AMP, + ACTIONS(5737), 8, anon_sym_COLON, - anon_sym_COMMA, - anon_sym_into, - STATE(4579), 9, + anon_sym_CARET, + anon_sym_when, + anon_sym_and, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, + STATE(4524), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -595133,7 +590367,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [79871] = 29, + [75554] = 27, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -595154,49 +590388,45 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4100), 1, + ACTIONS(4042), 1, anon_sym_DOT, - ACTIONS(4102), 1, + ACTIONS(4044), 1, anon_sym_DASH_GT, - ACTIONS(5264), 1, + ACTIONS(5257), 1, anon_sym_LPAREN, - ACTIONS(5304), 1, - anon_sym_BANG, - ACTIONS(5573), 1, + ACTIONS(5300), 1, anon_sym_LBRACK, - ACTIONS(6343), 1, + ACTIONS(5302), 1, + anon_sym_BANG, + ACTIONS(6495), 1, anon_sym_switch, - ACTIONS(6357), 1, + ACTIONS(6509), 1, anon_sym_with, - ACTIONS(7145), 1, + ACTIONS(7131), 1, anon_sym_SLASH, - ACTIONS(7155), 1, - anon_sym_GT_GT, - ACTIONS(7161), 1, + ACTIONS(7137), 1, anon_sym_DOT_DOT, - STATE(2485), 1, + STATE(2759), 1, sym_bracketed_argument_list, - STATE(3487), 1, + STATE(3381), 1, sym_argument_list, - ACTIONS(5306), 2, + ACTIONS(5304), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7141), 2, + ACTIONS(7127), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7143), 2, + ACTIONS(7129), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7153), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - ACTIONS(5664), 5, + ACTIONS(5739), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, anon_sym_PIPE, anon_sym_AMP, - STATE(4580), 9, + anon_sym_GT_GT, + STATE(4525), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -595206,22 +590436,24 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5660), 14, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_RBRACE, + ACTIONS(5737), 16, + 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_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, - [79988] = 40, + [75667] = 33, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -595242,75 +590474,57 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4100), 1, + ACTIONS(4042), 1, anon_sym_DOT, - ACTIONS(4102), 1, + ACTIONS(4044), 1, anon_sym_DASH_GT, - ACTIONS(5264), 1, + ACTIONS(5257), 1, anon_sym_LPAREN, - ACTIONS(5304), 1, - anon_sym_BANG, - ACTIONS(5573), 1, + ACTIONS(5300), 1, anon_sym_LBRACK, - ACTIONS(6343), 1, + ACTIONS(5302), 1, + anon_sym_BANG, + ACTIONS(6495), 1, anon_sym_switch, - ACTIONS(6357), 1, + ACTIONS(6509), 1, anon_sym_with, - ACTIONS(6813), 1, + ACTIONS(7025), 1, anon_sym_as, - ACTIONS(6815), 1, - anon_sym_is, - ACTIONS(7183), 1, + ACTIONS(7131), 1, anon_sym_SLASH, - ACTIONS(7187), 1, + ACTIONS(7135), 1, anon_sym_GT_GT, - ACTIONS(7189), 1, + ACTIONS(7137), 1, anon_sym_DOT_DOT, - ACTIONS(7195), 1, - anon_sym_AMP, - ACTIONS(7201), 1, - anon_sym_CARET, - ACTIONS(7203), 1, - anon_sym_PIPE, - ACTIONS(7205), 1, - anon_sym_AMP_AMP, - ACTIONS(7207), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7209), 1, - anon_sym_QMARK_QMARK, - ACTIONS(7237), 1, - anon_sym_QMARK, - STATE(2485), 1, + ACTIONS(7147), 1, + anon_sym_is, + STATE(2759), 1, sym_bracketed_argument_list, - STATE(3487), 1, + STATE(3381), 1, sym_argument_list, - ACTIONS(5306), 2, + ACTIONS(5304), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7179), 2, + ACTIONS(7127), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7181), 2, + ACTIONS(7129), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7185), 2, + ACTIONS(7133), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7193), 2, + ACTIONS(7139), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7197), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(7199), 2, + ACTIONS(7145), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5899), 4, - anon_sym_SEMI, - aux_sym_preproc_if_token3, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - STATE(4581), 9, + ACTIONS(5739), 3, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_AMP, + STATE(4526), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -595320,7 +590534,18 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [80127] = 13, + ACTIONS(5737), 10, + anon_sym_COLON, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_when, + anon_sym_and, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, + [75792] = 37, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -595341,58 +590566,82 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - STATE(4582), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - ACTIONS(5214), 11, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, + ACTIONS(4042), 1, + anon_sym_DOT, + ACTIONS(4044), 1, + anon_sym_DASH_GT, + ACTIONS(5257), 1, + anon_sym_LPAREN, + ACTIONS(5300), 1, + anon_sym_LBRACK, + ACTIONS(5302), 1, anon_sym_BANG, - anon_sym_PLUS, - anon_sym_DASH, + ACTIONS(5739), 1, + anon_sym_QMARK, + ACTIONS(6495), 1, + anon_sym_switch, + ACTIONS(6509), 1, + anon_sym_with, + ACTIONS(7025), 1, + anon_sym_as, + ACTIONS(7131), 1, anon_sym_SLASH, + ACTIONS(7135), 1, + anon_sym_GT_GT, + ACTIONS(7137), 1, + anon_sym_DOT_DOT, + ACTIONS(7141), 1, + anon_sym_AMP, + ACTIONS(7147), 1, + anon_sym_is, + ACTIONS(7149), 1, + anon_sym_CARET, + ACTIONS(7151), 1, anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(5212), 28, - sym_interpolation_close_brace, - anon_sym_LBRACK, - anon_sym_COLON, - anon_sym_COMMA, - anon_sym_LPAREN, + STATE(2759), 1, + sym_bracketed_argument_list, + STATE(3381), 1, + sym_argument_list, + ACTIONS(5304), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + ACTIONS(7127), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(7129), 2, anon_sym_STAR, anon_sym_PERCENT, - anon_sym_CARET, + ACTIONS(7133), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, + ACTIONS(7139), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(7143), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + ACTIONS(7145), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - anon_sym_switch, - anon_sym_DOT_DOT, + ACTIONS(5737), 7, + 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, - [80212] = 13, + 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, + [75925] = 38, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -595413,58 +590662,83 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - STATE(4583), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - ACTIONS(5136), 11, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, + ACTIONS(4042), 1, + anon_sym_DOT, + ACTIONS(4044), 1, + anon_sym_DASH_GT, + ACTIONS(5257), 1, + anon_sym_LPAREN, + ACTIONS(5300), 1, + anon_sym_LBRACK, + ACTIONS(5302), 1, anon_sym_BANG, - anon_sym_PLUS, - anon_sym_DASH, + ACTIONS(5739), 1, + anon_sym_QMARK, + ACTIONS(6495), 1, + anon_sym_switch, + ACTIONS(6509), 1, + anon_sym_with, + ACTIONS(7025), 1, + anon_sym_as, + ACTIONS(7131), 1, anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, + ACTIONS(7135), 1, anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(5134), 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(7141), 1, + anon_sym_AMP, + ACTIONS(7147), 1, + anon_sym_is, + ACTIONS(7149), 1, + anon_sym_CARET, + ACTIONS(7151), 1, + anon_sym_PIPE, + ACTIONS(7153), 1, + anon_sym_AMP_AMP, + STATE(2759), 1, + sym_bracketed_argument_list, + STATE(3381), 1, + sym_argument_list, + ACTIONS(5304), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + ACTIONS(7127), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(7129), 2, anon_sym_STAR, anon_sym_PERCENT, - anon_sym_CARET, + ACTIONS(7133), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, + ACTIONS(7139), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(7143), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + ACTIONS(7145), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - anon_sym_switch, - anon_sym_DOT_DOT, + ACTIONS(5737), 6, + 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, - [80297] = 13, + STATE(4528), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + [76060] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -595485,58 +590759,85 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - STATE(4584), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - ACTIONS(5140), 11, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, + ACTIONS(4042), 1, + anon_sym_DOT, + ACTIONS(4044), 1, + anon_sym_DASH_GT, + ACTIONS(5257), 1, + anon_sym_LPAREN, + ACTIONS(5300), 1, + anon_sym_LBRACK, + ACTIONS(5302), 1, anon_sym_BANG, - anon_sym_PLUS, - anon_sym_DASH, + ACTIONS(5739), 1, + anon_sym_QMARK, + ACTIONS(6495), 1, + anon_sym_switch, + ACTIONS(6509), 1, + anon_sym_with, + ACTIONS(7025), 1, + anon_sym_as, + ACTIONS(7131), 1, anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, + ACTIONS(7135), 1, anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(5138), 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(7141), 1, + anon_sym_AMP, + ACTIONS(7147), 1, + anon_sym_is, + ACTIONS(7149), 1, + anon_sym_CARET, + ACTIONS(7151), 1, + anon_sym_PIPE, + ACTIONS(7153), 1, + anon_sym_AMP_AMP, + ACTIONS(7155), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7157), 1, + anon_sym_QMARK_QMARK, + STATE(2759), 1, + sym_bracketed_argument_list, + STATE(3381), 1, + sym_argument_list, + ACTIONS(5304), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + ACTIONS(7127), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(7129), 2, anon_sym_STAR, anon_sym_PERCENT, - anon_sym_CARET, + ACTIONS(7133), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, + ACTIONS(7139), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(7143), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + ACTIONS(7145), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - anon_sym_switch, - anon_sym_DOT_DOT, + ACTIONS(5737), 4, + 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, - [80382] = 22, + 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, + [76199] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -595557,36 +590858,75 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4100), 1, + ACTIONS(4042), 1, anon_sym_DOT, - ACTIONS(4102), 1, + ACTIONS(4044), 1, anon_sym_DASH_GT, - ACTIONS(5264), 1, + ACTIONS(5257), 1, anon_sym_LPAREN, - ACTIONS(5304), 1, - anon_sym_BANG, - ACTIONS(5573), 1, + ACTIONS(5300), 1, anon_sym_LBRACK, - ACTIONS(7161), 1, + ACTIONS(5302), 1, + anon_sym_BANG, + ACTIONS(6495), 1, + anon_sym_switch, + ACTIONS(6509), 1, + anon_sym_with, + ACTIONS(7025), 1, + anon_sym_as, + ACTIONS(7131), 1, + anon_sym_SLASH, + ACTIONS(7135), 1, + anon_sym_GT_GT, + ACTIONS(7137), 1, anon_sym_DOT_DOT, - STATE(2485), 1, + ACTIONS(7141), 1, + anon_sym_AMP, + ACTIONS(7147), 1, + anon_sym_is, + ACTIONS(7149), 1, + anon_sym_CARET, + ACTIONS(7151), 1, + anon_sym_PIPE, + ACTIONS(7153), 1, + anon_sym_AMP_AMP, + ACTIONS(7155), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7157), 1, + anon_sym_QMARK_QMARK, + ACTIONS(7159), 1, + anon_sym_QMARK, + STATE(2759), 1, sym_bracketed_argument_list, - STATE(3487), 1, + STATE(3381), 1, sym_argument_list, - ACTIONS(5306), 2, + ACTIONS(5304), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1223), 9, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, + ACTIONS(7127), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT_GT, - STATE(4585), 9, + ACTIONS(7129), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(7133), 2, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + ACTIONS(7139), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(7143), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(7145), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(5709), 4, + anon_sym_COLON, + anon_sym_when, + anon_sym_and, + anon_sym_or, + STATE(4530), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -595596,28 +590936,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(1221), 20, - 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_as, - anon_sym_is, - anon_sym_with, - [80485] = 13, + [76338] = 22, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -595638,36 +590957,47 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - 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, - ACTIONS(4951), 11, + ACTIONS(4042), 1, + anon_sym_DOT, + ACTIONS(4044), 1, + anon_sym_DASH_GT, + ACTIONS(5257), 1, + anon_sym_LPAREN, + ACTIONS(5300), 1, + anon_sym_LBRACK, + ACTIONS(5302), 1, + anon_sym_BANG, + ACTIONS(7137), 1, + anon_sym_DOT_DOT, + STATE(2759), 1, + sym_bracketed_argument_list, + STATE(3381), 1, + sym_argument_list, + ACTIONS(5304), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5743), 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(4949), 28, - sym_interpolation_close_brace, - anon_sym_LBRACK, + STATE(4531), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + ACTIONS(5741), 20, 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, @@ -595678,18 +591008,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_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, - [80570] = 29, + [76441] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -595710,49 +591038,75 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4100), 1, + ACTIONS(4042), 1, anon_sym_DOT, - ACTIONS(4102), 1, + ACTIONS(4044), 1, anon_sym_DASH_GT, - ACTIONS(5264), 1, + ACTIONS(5257), 1, anon_sym_LPAREN, - ACTIONS(5302), 1, + ACTIONS(5300), 1, anon_sym_LBRACK, - ACTIONS(5304), 1, + ACTIONS(5302), 1, anon_sym_BANG, - ACTIONS(6475), 1, + ACTIONS(6495), 1, anon_sym_switch, - ACTIONS(6489), 1, + ACTIONS(6509), 1, anon_sym_with, - ACTIONS(7243), 1, + ACTIONS(7025), 1, + anon_sym_as, + ACTIONS(7131), 1, anon_sym_SLASH, - ACTIONS(7247), 1, + ACTIONS(7135), 1, anon_sym_GT_GT, - ACTIONS(7249), 1, + ACTIONS(7137), 1, anon_sym_DOT_DOT, - STATE(2808), 1, + ACTIONS(7141), 1, + anon_sym_AMP, + ACTIONS(7147), 1, + anon_sym_is, + ACTIONS(7149), 1, + anon_sym_CARET, + ACTIONS(7151), 1, + anon_sym_PIPE, + ACTIONS(7153), 1, + anon_sym_AMP_AMP, + ACTIONS(7155), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7157), 1, + anon_sym_QMARK_QMARK, + ACTIONS(7159), 1, + anon_sym_QMARK, + STATE(2759), 1, sym_bracketed_argument_list, - STATE(3487), 1, + STATE(3381), 1, sym_argument_list, - ACTIONS(5306), 2, + ACTIONS(5304), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7239), 2, + ACTIONS(7127), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7241), 2, + ACTIONS(7129), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7245), 2, + ACTIONS(7133), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(5664), 5, + ACTIONS(7139), 2, anon_sym_LT, anon_sym_GT, - anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_AMP, - STATE(4587), 9, + ACTIONS(7143), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(7145), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(5849), 4, + anon_sym_COLON, + anon_sym_when, + anon_sym_and, + anon_sym_or, + STATE(4532), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -595762,22 +591116,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5660), 14, - 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_as, - anon_sym_is, - [80687] = 26, + [76580] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -595798,44 +591137,75 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4100), 1, + ACTIONS(4042), 1, anon_sym_DOT, - ACTIONS(4102), 1, + ACTIONS(4044), 1, anon_sym_DASH_GT, - ACTIONS(5264), 1, + ACTIONS(5257), 1, anon_sym_LPAREN, - ACTIONS(5302), 1, + ACTIONS(5300), 1, anon_sym_LBRACK, - ACTIONS(5304), 1, + ACTIONS(5302), 1, anon_sym_BANG, - ACTIONS(6475), 1, + ACTIONS(6495), 1, anon_sym_switch, - ACTIONS(6489), 1, + ACTIONS(6509), 1, anon_sym_with, - ACTIONS(7243), 1, + ACTIONS(7025), 1, + anon_sym_as, + ACTIONS(7131), 1, anon_sym_SLASH, - ACTIONS(7249), 1, + ACTIONS(7135), 1, + anon_sym_GT_GT, + ACTIONS(7137), 1, anon_sym_DOT_DOT, - STATE(2808), 1, + ACTIONS(7141), 1, + anon_sym_AMP, + ACTIONS(7147), 1, + anon_sym_is, + ACTIONS(7149), 1, + anon_sym_CARET, + ACTIONS(7151), 1, + anon_sym_PIPE, + ACTIONS(7153), 1, + anon_sym_AMP_AMP, + ACTIONS(7155), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7157), 1, + anon_sym_QMARK_QMARK, + ACTIONS(7159), 1, + anon_sym_QMARK, + STATE(2759), 1, sym_bracketed_argument_list, - STATE(3487), 1, + STATE(3381), 1, sym_argument_list, - ACTIONS(5306), 2, + ACTIONS(5304), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7241), 2, + ACTIONS(7127), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(7129), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(5664), 8, + ACTIONS(7133), 2, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + ACTIONS(7139), 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(4588), 9, + ACTIONS(7143), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(7145), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4996), 4, + anon_sym_COLON, + anon_sym_when, + anon_sym_and, + anon_sym_or, + STATE(4533), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -595845,24 +591215,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5660), 16, - 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_as, - anon_sym_is, - [80798] = 35, + [76719] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -595883,70 +591236,75 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4100), 1, + ACTIONS(4042), 1, anon_sym_DOT, - ACTIONS(4102), 1, + ACTIONS(4044), 1, anon_sym_DASH_GT, - ACTIONS(5264), 1, + ACTIONS(5257), 1, anon_sym_LPAREN, - ACTIONS(5302), 1, + ACTIONS(5300), 1, anon_sym_LBRACK, - ACTIONS(5304), 1, + ACTIONS(5302), 1, anon_sym_BANG, - ACTIONS(6475), 1, + ACTIONS(6495), 1, anon_sym_switch, - ACTIONS(6489), 1, + ACTIONS(6509), 1, anon_sym_with, - ACTIONS(7081), 1, + ACTIONS(7025), 1, anon_sym_as, - ACTIONS(7243), 1, + ACTIONS(7131), 1, anon_sym_SLASH, - ACTIONS(7247), 1, + ACTIONS(7135), 1, anon_sym_GT_GT, - ACTIONS(7249), 1, + ACTIONS(7137), 1, anon_sym_DOT_DOT, - ACTIONS(7253), 1, + ACTIONS(7141), 1, anon_sym_AMP, - ACTIONS(7259), 1, + ACTIONS(7147), 1, anon_sym_is, - STATE(2808), 1, + ACTIONS(7149), 1, + anon_sym_CARET, + ACTIONS(7151), 1, + anon_sym_PIPE, + ACTIONS(7153), 1, + anon_sym_AMP_AMP, + ACTIONS(7155), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7157), 1, + anon_sym_QMARK_QMARK, + ACTIONS(7159), 1, + anon_sym_QMARK, + STATE(2759), 1, sym_bracketed_argument_list, - STATE(3487), 1, + STATE(3381), 1, sym_argument_list, - ACTIONS(5306), 2, + ACTIONS(5304), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5664), 2, - anon_sym_QMARK, - anon_sym_PIPE, - ACTIONS(7239), 2, + ACTIONS(7127), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7241), 2, + ACTIONS(7129), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7245), 2, + ACTIONS(7133), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7251), 2, + ACTIONS(7139), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7255), 2, + ACTIONS(7143), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7257), 2, + ACTIONS(7145), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5660), 8, - anon_sym_CARET, - anon_sym_EQ_GT, + ACTIONS(5652), 4, + anon_sym_COLON, anon_sym_when, anon_sym_and, anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_QMARK_QMARK, - STATE(4589), 9, + STATE(4534), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -595956,7 +591314,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [80927] = 40, + [76858] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -595977,75 +591335,75 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4100), 1, + ACTIONS(4042), 1, anon_sym_DOT, - ACTIONS(4102), 1, + ACTIONS(4044), 1, anon_sym_DASH_GT, - ACTIONS(5264), 1, + ACTIONS(5257), 1, anon_sym_LPAREN, - ACTIONS(5304), 1, - anon_sym_BANG, - ACTIONS(5573), 1, + ACTIONS(5300), 1, anon_sym_LBRACK, - ACTIONS(6343), 1, + ACTIONS(5302), 1, + anon_sym_BANG, + ACTIONS(6495), 1, anon_sym_switch, - ACTIONS(6357), 1, + ACTIONS(6509), 1, anon_sym_with, - ACTIONS(6813), 1, + ACTIONS(7025), 1, anon_sym_as, - ACTIONS(6815), 1, - anon_sym_is, - ACTIONS(7183), 1, + ACTIONS(7131), 1, anon_sym_SLASH, - ACTIONS(7187), 1, + ACTIONS(7135), 1, anon_sym_GT_GT, - ACTIONS(7189), 1, + ACTIONS(7137), 1, anon_sym_DOT_DOT, - ACTIONS(7195), 1, + ACTIONS(7141), 1, anon_sym_AMP, - ACTIONS(7201), 1, + ACTIONS(7147), 1, + anon_sym_is, + ACTIONS(7149), 1, anon_sym_CARET, - ACTIONS(7203), 1, + ACTIONS(7151), 1, anon_sym_PIPE, - ACTIONS(7205), 1, + ACTIONS(7153), 1, anon_sym_AMP_AMP, - ACTIONS(7207), 1, + ACTIONS(7155), 1, anon_sym_PIPE_PIPE, - ACTIONS(7209), 1, + ACTIONS(7157), 1, anon_sym_QMARK_QMARK, - ACTIONS(7237), 1, + ACTIONS(7159), 1, anon_sym_QMARK, - STATE(2485), 1, + STATE(2759), 1, sym_bracketed_argument_list, - STATE(3487), 1, + STATE(3381), 1, sym_argument_list, - ACTIONS(5306), 2, + ACTIONS(5304), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7179), 2, + ACTIONS(7127), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7181), 2, + ACTIONS(7129), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7185), 2, + ACTIONS(7133), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7193), 2, + ACTIONS(7139), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7197), 2, + ACTIONS(7143), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7199), 2, + ACTIONS(7145), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5858), 4, - anon_sym_SEMI, - aux_sym_preproc_if_token3, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - STATE(4590), 9, + ACTIONS(5801), 4, + anon_sym_COLON, + anon_sym_when, + anon_sym_and, + anon_sym_or, + STATE(4535), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -596055,7 +591413,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [81066] = 13, + [76997] = 22, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -596076,36 +591434,46 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - STATE(4591), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - ACTIONS(4939), 11, + ACTIONS(4092), 1, + anon_sym_DOT, + ACTIONS(4094), 1, + anon_sym_DASH_GT, + ACTIONS(5227), 1, + anon_sym_LPAREN, + ACTIONS(5236), 1, + anon_sym_LBRACK, + ACTIONS(5238), 1, + anon_sym_BANG, + ACTIONS(7079), 1, + anon_sym_DOT_DOT, + STATE(2605), 1, + sym_bracketed_argument_list, + STATE(3348), 1, + sym_argument_list, + ACTIONS(5240), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5743), 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(4937), 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(4536), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + ACTIONS(5741), 20, anon_sym_STAR, anon_sym_PERCENT, anon_sym_CARET, @@ -596116,18 +591484,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_by, anon_sym_as, anon_sym_is, - anon_sym_DASH_GT, anon_sym_with, - [81151] = 13, + [77100] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -596148,7 +591515,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - STATE(4592), 9, + STATE(4537), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -596158,7 +591525,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(4947), 11, + ACTIONS(2949), 11, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, @@ -596170,7 +591537,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT, - ACTIONS(4945), 28, + ACTIONS(2951), 28, sym_interpolation_close_brace, anon_sym_LBRACK, anon_sym_COLON, @@ -596199,7 +591566,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, anon_sym_DASH_GT, anon_sym_with, - [81236] = 40, + [77185] = 21, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -596220,75 +591587,33 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4100), 1, - anon_sym_DOT, - ACTIONS(4102), 1, - anon_sym_DASH_GT, - ACTIONS(5264), 1, - anon_sym_LPAREN, - ACTIONS(5304), 1, - anon_sym_BANG, - ACTIONS(5573), 1, - anon_sym_LBRACK, - ACTIONS(6343), 1, - anon_sym_switch, - ACTIONS(6357), 1, - anon_sym_with, - ACTIONS(6813), 1, - anon_sym_as, - ACTIONS(7139), 1, - anon_sym_QMARK, - ACTIONS(7145), 1, - anon_sym_SLASH, - ACTIONS(7147), 1, - anon_sym_CARET, - ACTIONS(7149), 1, - anon_sym_PIPE, - ACTIONS(7151), 1, - anon_sym_AMP, - ACTIONS(7155), 1, - anon_sym_GT_GT, - ACTIONS(7161), 1, - anon_sym_DOT_DOT, - ACTIONS(7163), 1, - anon_sym_AMP_AMP, - ACTIONS(7165), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7167), 1, - anon_sym_QMARK_QMARK, - ACTIONS(7169), 1, - anon_sym_is, - STATE(2485), 1, - sym_bracketed_argument_list, - STATE(3487), 1, - sym_argument_list, - ACTIONS(5306), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(7137), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(7141), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(7143), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(7153), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - ACTIONS(7157), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(7159), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(5864), 4, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_RBRACE, - STATE(4593), 9, + ACTIONS(25), 1, + sym__identifier_token, + STATE(2168), 1, + sym__reserved_identifier, + STATE(2170), 1, + sym_generic_name, + STATE(4370), 1, + sym_identifier, + STATE(5772), 1, + sym_attribute_target_specifier, + STATE(6503), 1, + sym__name, + STATE(7009), 1, + sym_attribute, + STATE(4068), 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(4538), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -596298,7 +591623,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [81375] = 15, + 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, + [77286] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -596319,11 +591667,79 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(7261), 1, + ACTIONS(4749), 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(4539), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + 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, - STATE(4599), 1, - aux_sym__query_body_repeat2, - STATE(4594), 9, + 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, + [77371] = 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(4540), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -596333,7 +591749,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(6005), 11, + ACTIONS(3137), 11, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, @@ -596345,13 +591761,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT, - ACTIONS(6003), 26, + ACTIONS(3139), 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, @@ -596365,14 +591780,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, - [81464] = 15, + [77456] = 17, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -596393,11 +591811,25 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(7261), 1, - anon_sym_into, - STATE(4600), 1, - aux_sym__query_body_repeat2, - STATE(4595), 9, + ACTIONS(6601), 1, + anon_sym_LBRACK, + ACTIONS(6603), 1, + anon_sym_STAR, + ACTIONS(6705), 1, + anon_sym_QMARK, + ACTIONS(4044), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(3963), 8, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, + STATE(4541), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -596407,8 +591839,71 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(6005), 11, + ACTIONS(3961), 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, + [77549] = 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(5274), 1, anon_sym_LT, + ACTIONS(7161), 1, + anon_sym_COLON_COLON, + STATE(3242), 1, + sym_type_argument_list, + STATE(4542), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + ACTIONS(3638), 10, anon_sym_GT, anon_sym_QMARK, anon_sym_BANG, @@ -596419,13 +591914,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT, - ACTIONS(6003), 26, + ACTIONS(3640), 26, anon_sym_LBRACK, - anon_sym_COLON, - anon_sym_COMMA, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_RBRACE, + anon_sym_LBRACE, + anon_sym_in, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_STAR, @@ -596439,6 +591932,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, @@ -596446,7 +591941,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, anon_sym_DASH_GT, anon_sym_with, - [81553] = 36, + [77640] = 29, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -596467,71 +591962,132 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4100), 1, + ACTIONS(4092), 1, anon_sym_DOT, - ACTIONS(4102), 1, + ACTIONS(4094), 1, anon_sym_DASH_GT, - ACTIONS(5264), 1, + ACTIONS(5227), 1, anon_sym_LPAREN, - ACTIONS(5302), 1, + ACTIONS(5236), 1, anon_sym_LBRACK, - ACTIONS(5304), 1, + ACTIONS(5238), 1, anon_sym_BANG, - ACTIONS(6475), 1, + ACTIONS(6017), 1, anon_sym_switch, - ACTIONS(6489), 1, + ACTIONS(6031), 1, anon_sym_with, - ACTIONS(7081), 1, - anon_sym_as, - ACTIONS(7243), 1, + ACTIONS(7167), 1, anon_sym_SLASH, - ACTIONS(7247), 1, + ACTIONS(7171), 1, anon_sym_GT_GT, - ACTIONS(7249), 1, + ACTIONS(7173), 1, anon_sym_DOT_DOT, - ACTIONS(7253), 1, - anon_sym_AMP, - ACTIONS(7259), 1, - anon_sym_is, - ACTIONS(7263), 1, - anon_sym_CARET, - STATE(2808), 1, + STATE(2605), 1, sym_bracketed_argument_list, - STATE(3487), 1, + STATE(3348), 1, sym_argument_list, - ACTIONS(5306), 2, + ACTIONS(5240), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5664), 2, - anon_sym_QMARK, - anon_sym_PIPE, - ACTIONS(7239), 2, + ACTIONS(7163), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7241), 2, + ACTIONS(7165), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7245), 2, + ACTIONS(7169), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7251), 2, + ACTIONS(5739), 5, anon_sym_LT, anon_sym_GT, - ACTIONS(7255), 2, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_AMP, + STATE(4543), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + ACTIONS(5737), 14, + anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7257), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5660), 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, - STATE(4596), 9, + anon_sym_into, + anon_sym_equals, + anon_sym_as, + anon_sym_is, + [77757] = 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(4092), 1, + anon_sym_DOT, + ACTIONS(4094), 1, + anon_sym_DASH_GT, + ACTIONS(5227), 1, + anon_sym_LPAREN, + ACTIONS(5236), 1, + anon_sym_LBRACK, + ACTIONS(5238), 1, + anon_sym_BANG, + ACTIONS(6017), 1, + anon_sym_switch, + ACTIONS(6031), 1, + anon_sym_with, + ACTIONS(7167), 1, + anon_sym_SLASH, + ACTIONS(7173), 1, + anon_sym_DOT_DOT, + STATE(2605), 1, + sym_bracketed_argument_list, + STATE(3348), 1, + sym_argument_list, + ACTIONS(5240), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7165), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(5739), 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(4544), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -596541,7 +592097,24 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [81684] = 34, + ACTIONS(5737), 16, + 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_equals, + anon_sym_as, + anon_sym_is, + [77868] = 27, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -596562,69 +592135,45 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4100), 1, + ACTIONS(4092), 1, anon_sym_DOT, - ACTIONS(4102), 1, + ACTIONS(4094), 1, anon_sym_DASH_GT, - ACTIONS(5264), 1, + ACTIONS(5227), 1, anon_sym_LPAREN, - ACTIONS(5302), 1, + ACTIONS(5236), 1, anon_sym_LBRACK, - ACTIONS(5304), 1, + ACTIONS(5238), 1, anon_sym_BANG, - ACTIONS(6475), 1, + ACTIONS(6017), 1, anon_sym_switch, - ACTIONS(6489), 1, + ACTIONS(6031), 1, anon_sym_with, - ACTIONS(7081), 1, - anon_sym_as, - ACTIONS(7243), 1, + ACTIONS(7167), 1, anon_sym_SLASH, - ACTIONS(7247), 1, - anon_sym_GT_GT, - ACTIONS(7249), 1, + ACTIONS(7173), 1, anon_sym_DOT_DOT, - ACTIONS(7259), 1, - anon_sym_is, - STATE(2808), 1, + STATE(2605), 1, sym_bracketed_argument_list, - STATE(3487), 1, + STATE(3348), 1, sym_argument_list, - ACTIONS(5306), 2, + ACTIONS(5240), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7239), 2, + ACTIONS(7163), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7241), 2, + ACTIONS(7165), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7245), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - ACTIONS(7251), 2, + ACTIONS(5739), 6, anon_sym_LT, anon_sym_GT, - ACTIONS(7255), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(7257), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(5664), 3, anon_sym_QMARK, anon_sym_PIPE, anon_sym_AMP, - ACTIONS(5660), 8, - 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, - STATE(4597), 9, + anon_sym_GT_GT, + STATE(4545), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -596634,7 +592183,24 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [81811] = 13, + ACTIONS(5737), 16, + 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_equals, + anon_sym_as, + anon_sym_is, + [77981] = 22, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -596655,36 +592221,46 @@ static const uint16_t ts_small_parse_table[] = { 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(4943), 11, + ACTIONS(4092), 1, + anon_sym_DOT, + ACTIONS(4094), 1, + anon_sym_DASH_GT, + ACTIONS(5227), 1, + anon_sym_LPAREN, + ACTIONS(5236), 1, + anon_sym_LBRACK, + ACTIONS(5238), 1, + anon_sym_BANG, + ACTIONS(7173), 1, + anon_sym_DOT_DOT, + STATE(2605), 1, + sym_bracketed_argument_list, + STATE(3348), 1, + sym_argument_list, + ACTIONS(5240), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5743), 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(4941), 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_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT_GT, + STATE(4546), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + ACTIONS(5741), 20, anon_sym_STAR, anon_sym_PERCENT, anon_sym_CARET, @@ -596695,18 +592271,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, - [81896] = 14, + [78084] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -596727,9 +592302,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(7265), 1, - anon_sym_into, - STATE(4599), 10, + ACTIONS(4745), 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(4547), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -596739,47 +592319,41 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - aux_sym__query_body_repeat2, - ACTIONS(5951), 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(5949), 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, - [81983] = 15, + 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, + [78169] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -596800,11 +592374,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(7261), 1, - anon_sym_into, - STATE(4599), 1, - aux_sym__query_body_repeat2, - STATE(4600), 9, + STATE(4548), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -596814,7 +592384,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5960), 11, + ACTIONS(5360), 11, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, @@ -596826,13 +592396,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT, - ACTIONS(5958), 26, + ACTIONS(5358), 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, @@ -596846,14 +592415,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, - [82072] = 27, + [78254] = 29, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -596874,45 +592446,49 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4100), 1, + ACTIONS(4042), 1, anon_sym_DOT, - ACTIONS(4102), 1, + ACTIONS(4044), 1, anon_sym_DASH_GT, - ACTIONS(5264), 1, + ACTIONS(5257), 1, anon_sym_LPAREN, ACTIONS(5302), 1, - anon_sym_LBRACK, - ACTIONS(5304), 1, anon_sym_BANG, - ACTIONS(6475), 1, + ACTIONS(5549), 1, + anon_sym_LBRACK, + ACTIONS(6355), 1, anon_sym_switch, - ACTIONS(6489), 1, + ACTIONS(6369), 1, anon_sym_with, - ACTIONS(7243), 1, + ACTIONS(7179), 1, anon_sym_SLASH, - ACTIONS(7249), 1, + ACTIONS(7183), 1, + anon_sym_GT_GT, + ACTIONS(7185), 1, anon_sym_DOT_DOT, - STATE(2808), 1, + STATE(2467), 1, sym_bracketed_argument_list, - STATE(3487), 1, + STATE(3381), 1, sym_argument_list, - ACTIONS(5306), 2, + ACTIONS(5304), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7239), 2, + ACTIONS(7175), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7241), 2, + ACTIONS(7177), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(5664), 6, + ACTIONS(7181), 2, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + ACTIONS(5739), 5, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, anon_sym_PIPE, anon_sym_AMP, - anon_sym_GT_GT, - STATE(4601), 9, + STATE(4549), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -596922,24 +592498,22 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5660), 16, + ACTIONS(5737), 14, + 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_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_as, anon_sym_is, - [82185] = 40, + [78371] = 26, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -596960,75 +592534,44 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4100), 1, + ACTIONS(4042), 1, anon_sym_DOT, - ACTIONS(4102), 1, + ACTIONS(4044), 1, anon_sym_DASH_GT, - ACTIONS(5264), 1, + ACTIONS(5257), 1, anon_sym_LPAREN, - ACTIONS(5304), 1, + ACTIONS(5302), 1, anon_sym_BANG, - ACTIONS(5573), 1, + ACTIONS(5549), 1, anon_sym_LBRACK, - ACTIONS(5664), 1, - anon_sym_QMARK, - ACTIONS(6343), 1, + ACTIONS(6355), 1, anon_sym_switch, - ACTIONS(6357), 1, + ACTIONS(6369), 1, anon_sym_with, - ACTIONS(6813), 1, - anon_sym_as, - ACTIONS(7145), 1, + ACTIONS(7179), 1, anon_sym_SLASH, - ACTIONS(7147), 1, - anon_sym_CARET, - ACTIONS(7149), 1, - anon_sym_PIPE, - ACTIONS(7151), 1, - anon_sym_AMP, - ACTIONS(7155), 1, - anon_sym_GT_GT, - ACTIONS(7161), 1, + ACTIONS(7185), 1, anon_sym_DOT_DOT, - ACTIONS(7163), 1, - anon_sym_AMP_AMP, - ACTIONS(7165), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7167), 1, - anon_sym_QMARK_QMARK, - ACTIONS(7169), 1, - anon_sym_is, - STATE(2485), 1, + STATE(2467), 1, sym_bracketed_argument_list, - STATE(3487), 1, + STATE(3381), 1, sym_argument_list, - ACTIONS(5306), 2, + ACTIONS(5304), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7137), 2, + ACTIONS(7177), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(5739), 8, anon_sym_LT, anon_sym_GT, - ACTIONS(7141), 2, + anon_sym_QMARK, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7143), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(7153), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - ACTIONS(7157), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(7159), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(5660), 4, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_RBRACE, - STATE(4602), 9, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT_GT, + STATE(4550), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -597038,7 +592581,24 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [82324] = 33, + ACTIONS(5737), 16, + 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_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, + anon_sym_as, + anon_sym_is, + [78482] = 24, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -597059,57 +592619,40 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4100), 1, + ACTIONS(4042), 1, anon_sym_DOT, - ACTIONS(4102), 1, + ACTIONS(4044), 1, anon_sym_DASH_GT, - ACTIONS(5264), 1, + ACTIONS(5257), 1, anon_sym_LPAREN, ACTIONS(5302), 1, - anon_sym_LBRACK, - ACTIONS(5304), 1, anon_sym_BANG, - ACTIONS(6475), 1, + ACTIONS(5549), 1, + anon_sym_LBRACK, + ACTIONS(6355), 1, anon_sym_switch, - ACTIONS(6489), 1, + ACTIONS(6369), 1, anon_sym_with, - ACTIONS(7081), 1, - anon_sym_as, - ACTIONS(7243), 1, - anon_sym_SLASH, - ACTIONS(7247), 1, - anon_sym_GT_GT, - ACTIONS(7249), 1, + ACTIONS(7185), 1, anon_sym_DOT_DOT, - ACTIONS(7259), 1, - anon_sym_is, - STATE(2808), 1, + STATE(2467), 1, sym_bracketed_argument_list, - STATE(3487), 1, + STATE(3381), 1, sym_argument_list, - ACTIONS(5306), 2, + ACTIONS(5304), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7239), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(7241), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(7245), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - ACTIONS(7251), 2, + ACTIONS(5739), 9, anon_sym_LT, anon_sym_GT, - ACTIONS(7257), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(5664), 3, anon_sym_QMARK, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, anon_sym_PIPE, anon_sym_AMP, - STATE(4603), 9, + anon_sym_GT_GT, + STATE(4551), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -597119,18 +592662,26 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5660), 10, + ACTIONS(5737), 18, + 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_EQ_GT, - anon_sym_when, - 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, - [82449] = 37, + anon_sym_as, + anon_sym_is, + [78589] = 35, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -597151,72 +592702,70 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4100), 1, + ACTIONS(4042), 1, anon_sym_DOT, - ACTIONS(4102), 1, + ACTIONS(4044), 1, anon_sym_DASH_GT, - ACTIONS(5264), 1, + ACTIONS(5257), 1, anon_sym_LPAREN, ACTIONS(5302), 1, - anon_sym_LBRACK, - ACTIONS(5304), 1, anon_sym_BANG, - ACTIONS(5664), 1, - anon_sym_QMARK, - ACTIONS(6475), 1, + ACTIONS(5549), 1, + anon_sym_LBRACK, + ACTIONS(6355), 1, anon_sym_switch, - ACTIONS(6489), 1, + ACTIONS(6369), 1, anon_sym_with, - ACTIONS(7081), 1, - anon_sym_as, - ACTIONS(7243), 1, + ACTIONS(7179), 1, anon_sym_SLASH, - ACTIONS(7247), 1, + ACTIONS(7183), 1, anon_sym_GT_GT, - ACTIONS(7249), 1, + ACTIONS(7185), 1, anon_sym_DOT_DOT, - ACTIONS(7253), 1, + ACTIONS(7189), 1, anon_sym_AMP, - ACTIONS(7259), 1, + ACTIONS(7195), 1, + anon_sym_as, + ACTIONS(7197), 1, anon_sym_is, - ACTIONS(7263), 1, - anon_sym_CARET, - ACTIONS(7268), 1, - anon_sym_PIPE, - STATE(2808), 1, + STATE(2467), 1, sym_bracketed_argument_list, - STATE(3487), 1, + STATE(3381), 1, sym_argument_list, - ACTIONS(5306), 2, + ACTIONS(5304), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7239), 2, + ACTIONS(5739), 2, + anon_sym_QMARK, + anon_sym_PIPE, + ACTIONS(7175), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7241), 2, + ACTIONS(7177), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7245), 2, + ACTIONS(7181), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7251), 2, + ACTIONS(7187), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7255), 2, + ACTIONS(7191), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7257), 2, + ACTIONS(7193), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5660), 7, - anon_sym_EQ_GT, - anon_sym_when, - anon_sym_and, - anon_sym_or, + ACTIONS(5737), 8, + 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, - STATE(4604), 9, + STATE(4552), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -597226,7 +592775,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [82582] = 38, + [78718] = 36, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -597247,73 +592796,71 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4100), 1, + ACTIONS(4042), 1, anon_sym_DOT, - ACTIONS(4102), 1, + ACTIONS(4044), 1, anon_sym_DASH_GT, - ACTIONS(5264), 1, + ACTIONS(5257), 1, anon_sym_LPAREN, ACTIONS(5302), 1, - anon_sym_LBRACK, - ACTIONS(5304), 1, anon_sym_BANG, - ACTIONS(5664), 1, - anon_sym_QMARK, - ACTIONS(6475), 1, + ACTIONS(5549), 1, + anon_sym_LBRACK, + ACTIONS(6355), 1, anon_sym_switch, - ACTIONS(6489), 1, + ACTIONS(6369), 1, anon_sym_with, - ACTIONS(7081), 1, - anon_sym_as, - ACTIONS(7243), 1, + ACTIONS(7179), 1, anon_sym_SLASH, - ACTIONS(7247), 1, + ACTIONS(7183), 1, anon_sym_GT_GT, - ACTIONS(7249), 1, + ACTIONS(7185), 1, anon_sym_DOT_DOT, - ACTIONS(7253), 1, + ACTIONS(7189), 1, anon_sym_AMP, - ACTIONS(7259), 1, + ACTIONS(7195), 1, + anon_sym_as, + ACTIONS(7197), 1, anon_sym_is, - ACTIONS(7263), 1, + ACTIONS(7199), 1, anon_sym_CARET, - ACTIONS(7268), 1, - anon_sym_PIPE, - ACTIONS(7270), 1, - anon_sym_AMP_AMP, - STATE(2808), 1, + STATE(2467), 1, sym_bracketed_argument_list, - STATE(3487), 1, + STATE(3381), 1, sym_argument_list, - ACTIONS(5306), 2, + ACTIONS(5304), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7239), 2, + ACTIONS(5739), 2, + anon_sym_QMARK, + anon_sym_PIPE, + ACTIONS(7175), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7241), 2, + ACTIONS(7177), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7245), 2, + ACTIONS(7181), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7251), 2, + ACTIONS(7187), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7255), 2, + ACTIONS(7191), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7257), 2, + ACTIONS(7193), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5660), 6, - anon_sym_EQ_GT, - anon_sym_when, - anon_sym_and, - anon_sym_or, + ACTIONS(5737), 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(4605), 9, + STATE(4553), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -597323,7 +592870,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [82717] = 40, + [78849] = 34, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -597344,75 +592891,69 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4100), 1, + ACTIONS(4042), 1, anon_sym_DOT, - ACTIONS(4102), 1, + ACTIONS(4044), 1, anon_sym_DASH_GT, - ACTIONS(5264), 1, + ACTIONS(5257), 1, anon_sym_LPAREN, ACTIONS(5302), 1, - anon_sym_LBRACK, - ACTIONS(5304), 1, anon_sym_BANG, - ACTIONS(5664), 1, - anon_sym_QMARK, - ACTIONS(6475), 1, + ACTIONS(5549), 1, + anon_sym_LBRACK, + ACTIONS(6355), 1, anon_sym_switch, - ACTIONS(6489), 1, + ACTIONS(6369), 1, anon_sym_with, - ACTIONS(7081), 1, - anon_sym_as, - ACTIONS(7243), 1, + ACTIONS(7179), 1, anon_sym_SLASH, - ACTIONS(7247), 1, + ACTIONS(7183), 1, anon_sym_GT_GT, - ACTIONS(7249), 1, + ACTIONS(7185), 1, anon_sym_DOT_DOT, - ACTIONS(7253), 1, - anon_sym_AMP, - ACTIONS(7259), 1, + ACTIONS(7195), 1, + anon_sym_as, + ACTIONS(7197), 1, anon_sym_is, - ACTIONS(7263), 1, - anon_sym_CARET, - ACTIONS(7268), 1, - anon_sym_PIPE, - ACTIONS(7270), 1, - anon_sym_AMP_AMP, - ACTIONS(7272), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7274), 1, - anon_sym_QMARK_QMARK, - STATE(2808), 1, + STATE(2467), 1, sym_bracketed_argument_list, - STATE(3487), 1, + STATE(3381), 1, sym_argument_list, - ACTIONS(5306), 2, + ACTIONS(5304), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7239), 2, + ACTIONS(7175), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7241), 2, + ACTIONS(7177), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7245), 2, + ACTIONS(7181), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7251), 2, + ACTIONS(7187), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7255), 2, + ACTIONS(7191), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7257), 2, + ACTIONS(7193), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5660), 4, - anon_sym_EQ_GT, - anon_sym_when, - anon_sym_and, - anon_sym_or, - STATE(4606), 9, + ACTIONS(5739), 3, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_AMP, + ACTIONS(5737), 8, + 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, + STATE(4554), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -597422,7 +592963,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [82856] = 43, + [78976] = 27, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -597443,109 +592984,45 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4100), 1, + ACTIONS(4042), 1, anon_sym_DOT, - ACTIONS(4102), 1, + ACTIONS(4044), 1, anon_sym_DASH_GT, - ACTIONS(5264), 1, + ACTIONS(5257), 1, anon_sym_LPAREN, - ACTIONS(5304), 1, + ACTIONS(5302), 1, anon_sym_BANG, - ACTIONS(5573), 1, + ACTIONS(5549), 1, anon_sym_LBRACK, - ACTIONS(6343), 1, + ACTIONS(6355), 1, anon_sym_switch, - ACTIONS(6357), 1, + ACTIONS(6369), 1, anon_sym_with, - ACTIONS(6690), 1, + ACTIONS(7179), 1, anon_sym_SLASH, - ACTIONS(6692), 1, - anon_sym_CARET, - ACTIONS(6694), 1, - anon_sym_PIPE, - ACTIONS(6696), 1, - anon_sym_AMP, - ACTIONS(6700), 1, - anon_sym_GT_GT, - ACTIONS(6708), 1, - anon_sym_AMP_AMP, - ACTIONS(6710), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6712), 1, - anon_sym_QMARK_QMARK, - ACTIONS(7035), 1, + ACTIONS(7185), 1, anon_sym_DOT_DOT, - ACTIONS(7037), 1, - anon_sym_as, - ACTIONS(7039), 1, - anon_sym_is, - ACTIONS(7047), 1, - anon_sym_QMARK, - ACTIONS(7276), 1, - anon_sym_COLON, - ACTIONS(7278), 1, - anon_sym_COMMA, - ACTIONS(7280), 1, - anon_sym_RBRACE, - STATE(2485), 1, + STATE(2467), 1, sym_bracketed_argument_list, - STATE(3487), 1, + STATE(3381), 1, sym_argument_list, - STATE(6942), 1, - aux_sym__for_statement_conditions_repeat1, - ACTIONS(5306), 2, + ACTIONS(5304), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6682), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(6686), 2, + ACTIONS(7175), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6688), 2, + ACTIONS(7177), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(6698), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - ACTIONS(6702), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(6704), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - STATE(4607), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - [83001] = 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(4608), 9, + ACTIONS(5739), 6, + anon_sym_LT, + anon_sym_GT, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT_GT, + STATE(4555), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -597555,28 +593032,11 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5066), 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(5064), 28, - sym_interpolation_close_brace, - anon_sym_LBRACK, + ACTIONS(5737), 16, 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_RPAREN, + anon_sym_RBRACE, anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT_GT, @@ -597584,19 +593044,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_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, - [83086] = 40, + [79089] = 33, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -597617,75 +593070,57 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4443), 1, - anon_sym_DASH_GT, - ACTIONS(4533), 1, + ACTIONS(4042), 1, anon_sym_DOT, - ACTIONS(6574), 1, + ACTIONS(4044), 1, + anon_sym_DASH_GT, + ACTIONS(5257), 1, anon_sym_LPAREN, - ACTIONS(6619), 1, - anon_sym_LBRACK, - ACTIONS(6625), 1, + ACTIONS(5302), 1, anon_sym_BANG, - ACTIONS(6649), 1, + ACTIONS(5549), 1, + anon_sym_LBRACK, + ACTIONS(6355), 1, anon_sym_switch, - ACTIONS(6659), 1, - anon_sym_as, - ACTIONS(6663), 1, + ACTIONS(6369), 1, anon_sym_with, - ACTIONS(7009), 1, + ACTIONS(7179), 1, anon_sym_SLASH, - ACTIONS(7011), 1, - anon_sym_DOT_DOT, - ACTIONS(7213), 1, - anon_sym_QMARK, - ACTIONS(7215), 1, - anon_sym_CARET, - ACTIONS(7217), 1, - anon_sym_PIPE, - ACTIONS(7219), 1, - anon_sym_AMP, - ACTIONS(7223), 1, + ACTIONS(7183), 1, anon_sym_GT_GT, - ACTIONS(7229), 1, - anon_sym_AMP_AMP, - ACTIONS(7231), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7233), 1, - anon_sym_QMARK_QMARK, - ACTIONS(7235), 1, + ACTIONS(7185), 1, + anon_sym_DOT_DOT, + ACTIONS(7195), 1, + anon_sym_as, + ACTIONS(7197), 1, anon_sym_is, - STATE(3173), 1, + STATE(2467), 1, sym_bracketed_argument_list, - STATE(4583), 1, + STATE(3381), 1, sym_argument_list, - ACTIONS(6627), 2, + ACTIONS(5304), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7005), 2, + ACTIONS(7175), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7007), 2, + ACTIONS(7177), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7211), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(7221), 2, + ACTIONS(7181), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7225), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(7227), 2, + ACTIONS(7187), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(7193), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5899), 4, - sym_interpolation_close_brace, - anon_sym_COLON, - anon_sym_COMMA, - anon_sym_into, - STATE(4609), 9, + ACTIONS(5739), 3, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_AMP, + STATE(4556), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -597695,7 +593130,18 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [83225] = 22, + ACTIONS(5737), 10, + 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, + [79214] = 22, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -597716,26 +593162,26 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4443), 1, - anon_sym_DASH_GT, - ACTIONS(4533), 1, + ACTIONS(4042), 1, anon_sym_DOT, - ACTIONS(6574), 1, + ACTIONS(4044), 1, + anon_sym_DASH_GT, + ACTIONS(5257), 1, anon_sym_LPAREN, - ACTIONS(6619), 1, - anon_sym_LBRACK, - ACTIONS(6625), 1, + ACTIONS(5302), 1, anon_sym_BANG, - ACTIONS(7011), 1, + ACTIONS(5549), 1, + anon_sym_LBRACK, + ACTIONS(7185), 1, anon_sym_DOT_DOT, - STATE(3173), 1, + STATE(2467), 1, sym_bracketed_argument_list, - STATE(4583), 1, + STATE(3381), 1, sym_argument_list, - ACTIONS(6627), 2, + ACTIONS(5304), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1223), 9, + ACTIONS(5743), 9, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, @@ -597745,7 +593191,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_AMP, anon_sym_GT_GT, - STATE(4610), 9, + STATE(4557), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -597755,10 +593201,11 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(1221), 20, - sym_interpolation_close_brace, + ACTIONS(5741), 20, anon_sym_COLON, anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_STAR, anon_sym_PERCENT, anon_sym_CARET, @@ -597772,11 +593219,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, anon_sym_with, - [83328] = 13, + [79317] = 37, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -597797,79 +593243,72 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - STATE(4611), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - ACTIONS(1959), 11, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, + ACTIONS(4042), 1, + anon_sym_DOT, + ACTIONS(4044), 1, + anon_sym_DASH_GT, + ACTIONS(5257), 1, + anon_sym_LPAREN, + ACTIONS(5302), 1, anon_sym_BANG, - anon_sym_PLUS, - anon_sym_DASH, + ACTIONS(5549), 1, + anon_sym_LBRACK, + ACTIONS(5739), 1, + anon_sym_QMARK, + ACTIONS(6355), 1, + anon_sym_switch, + ACTIONS(6369), 1, + anon_sym_with, + ACTIONS(7179), 1, anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, + ACTIONS(7183), 1, anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(1957), 28, - sym_interpolation_close_brace, - anon_sym_LBRACK, - anon_sym_COLON, - anon_sym_COMMA, - anon_sym_LPAREN, + ACTIONS(7185), 1, + anon_sym_DOT_DOT, + ACTIONS(7189), 1, + anon_sym_AMP, + ACTIONS(7195), 1, + anon_sym_as, + ACTIONS(7197), 1, + anon_sym_is, + ACTIONS(7199), 1, + anon_sym_CARET, + ACTIONS(7201), 1, + anon_sym_PIPE, + STATE(2467), 1, + sym_bracketed_argument_list, + STATE(3381), 1, + sym_argument_list, + ACTIONS(5304), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + ACTIONS(7175), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(7177), 2, anon_sym_STAR, anon_sym_PERCENT, - anon_sym_CARET, + ACTIONS(7181), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, + ACTIONS(7187), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(7191), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + ACTIONS(7193), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - anon_sym_switch, - anon_sym_DOT_DOT, - anon_sym_and, - anon_sym_or, + ACTIONS(5737), 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, - anon_sym_into, - anon_sym_as, - anon_sym_is, - anon_sym_DASH_GT, - anon_sym_with, - [83413] = 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(4612), 9, + STATE(4558), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -597879,48 +593318,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5144), 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(5142), 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, - [83498] = 13, + [79450] = 38, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -597941,97 +593339,73 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - STATE(4613), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - ACTIONS(5148), 11, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, + ACTIONS(4042), 1, + anon_sym_DOT, + ACTIONS(4044), 1, + anon_sym_DASH_GT, + ACTIONS(5257), 1, + anon_sym_LPAREN, + ACTIONS(5302), 1, anon_sym_BANG, - anon_sym_PLUS, - anon_sym_DASH, + ACTIONS(5549), 1, + anon_sym_LBRACK, + ACTIONS(5739), 1, + anon_sym_QMARK, + ACTIONS(6355), 1, + anon_sym_switch, + ACTIONS(6369), 1, + anon_sym_with, + ACTIONS(7179), 1, anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, + ACTIONS(7183), 1, anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(5146), 28, - sym_interpolation_close_brace, - anon_sym_LBRACK, - anon_sym_COLON, - anon_sym_COMMA, - anon_sym_LPAREN, + ACTIONS(7185), 1, + anon_sym_DOT_DOT, + ACTIONS(7189), 1, + anon_sym_AMP, + ACTIONS(7195), 1, + anon_sym_as, + ACTIONS(7197), 1, + anon_sym_is, + ACTIONS(7199), 1, + anon_sym_CARET, + ACTIONS(7201), 1, + anon_sym_PIPE, + ACTIONS(7203), 1, + anon_sym_AMP_AMP, + STATE(2467), 1, + sym_bracketed_argument_list, + STATE(3381), 1, + sym_argument_list, + ACTIONS(5304), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + ACTIONS(7175), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(7177), 2, anon_sym_STAR, anon_sym_PERCENT, - anon_sym_CARET, + ACTIONS(7181), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, + ACTIONS(7187), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(7191), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + ACTIONS(7193), 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, - [83583] = 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(6678), 1, - anon_sym_LBRACK, - ACTIONS(6680), 1, - anon_sym_STAR, - ACTIONS(6716), 1, - anon_sym_QMARK, - ACTIONS(4102), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(4018), 8, + ACTIONS(5737), 6, anon_sym_COLON, anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_EQ_GT, - STATE(4614), 9, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, + STATE(4559), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -598041,34 +593415,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(4016), 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, - [83676] = 13, + [79585] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -598089,58 +593436,85 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - 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, - ACTIONS(2955), 11, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, + ACTIONS(4042), 1, + anon_sym_DOT, + ACTIONS(4044), 1, + anon_sym_DASH_GT, + ACTIONS(5257), 1, + anon_sym_LPAREN, + ACTIONS(5302), 1, anon_sym_BANG, - anon_sym_PLUS, - anon_sym_DASH, + ACTIONS(5549), 1, + anon_sym_LBRACK, + ACTIONS(5739), 1, + anon_sym_QMARK, + ACTIONS(6355), 1, + anon_sym_switch, + ACTIONS(6369), 1, + anon_sym_with, + ACTIONS(7179), 1, anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, + ACTIONS(7183), 1, anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(2957), 28, - sym_interpolation_close_brace, - anon_sym_LBRACK, - anon_sym_COLON, - anon_sym_COMMA, - anon_sym_LPAREN, + ACTIONS(7185), 1, + anon_sym_DOT_DOT, + ACTIONS(7189), 1, + anon_sym_AMP, + ACTIONS(7195), 1, + anon_sym_as, + ACTIONS(7197), 1, + anon_sym_is, + ACTIONS(7199), 1, + anon_sym_CARET, + ACTIONS(7201), 1, + anon_sym_PIPE, + ACTIONS(7203), 1, + anon_sym_AMP_AMP, + ACTIONS(7205), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7207), 1, + anon_sym_QMARK_QMARK, + STATE(2467), 1, + sym_bracketed_argument_list, + STATE(3381), 1, + sym_argument_list, + ACTIONS(5304), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + ACTIONS(7175), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(7177), 2, anon_sym_STAR, anon_sym_PERCENT, - anon_sym_CARET, + ACTIONS(7181), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, + ACTIONS(7187), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(7191), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + ACTIONS(7193), 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, - [83761] = 29, + ACTIONS(5737), 4, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACE, + STATE(4560), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + [79724] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -598161,95 +593535,75 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4443), 1, - anon_sym_DASH_GT, - ACTIONS(4533), 1, + ACTIONS(4042), 1, anon_sym_DOT, - ACTIONS(6574), 1, + ACTIONS(4044), 1, + anon_sym_DASH_GT, + ACTIONS(5257), 1, anon_sym_LPAREN, - ACTIONS(6619), 1, - anon_sym_LBRACK, - ACTIONS(6625), 1, + ACTIONS(5302), 1, anon_sym_BANG, - ACTIONS(6649), 1, + ACTIONS(5549), 1, + anon_sym_LBRACK, + ACTIONS(6355), 1, anon_sym_switch, - ACTIONS(6663), 1, + ACTIONS(6369), 1, anon_sym_with, - ACTIONS(7009), 1, + ACTIONS(7179), 1, anon_sym_SLASH, - ACTIONS(7011), 1, - anon_sym_DOT_DOT, - ACTIONS(7223), 1, + ACTIONS(7183), 1, anon_sym_GT_GT, - STATE(3173), 1, + ACTIONS(7185), 1, + anon_sym_DOT_DOT, + ACTIONS(7189), 1, + anon_sym_AMP, + ACTIONS(7195), 1, + anon_sym_as, + ACTIONS(7197), 1, + anon_sym_is, + ACTIONS(7199), 1, + anon_sym_CARET, + ACTIONS(7201), 1, + anon_sym_PIPE, + ACTIONS(7203), 1, + anon_sym_AMP_AMP, + ACTIONS(7205), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7207), 1, + anon_sym_QMARK_QMARK, + ACTIONS(7209), 1, + anon_sym_QMARK, + STATE(2467), 1, sym_bracketed_argument_list, - STATE(4583), 1, + STATE(3381), 1, sym_argument_list, - ACTIONS(6627), 2, + ACTIONS(5304), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7005), 2, + ACTIONS(7175), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7007), 2, + ACTIONS(7177), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7221), 2, + ACTIONS(7181), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(5664), 5, + ACTIONS(7187), 2, anon_sym_LT, anon_sym_GT, - anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_AMP, - 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, - ACTIONS(5660), 14, - sym_interpolation_close_brace, - anon_sym_COLON, - anon_sym_COMMA, - anon_sym_CARET, + ACTIONS(7191), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + ACTIONS(7193), 2, 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, - [83878] = 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(4617), 9, + ACTIONS(4996), 4, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACE, + STATE(4561), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -598259,48 +593613,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5003), 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(5001), 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, - [83963] = 40, + [79863] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -598321,75 +593634,75 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4443), 1, - anon_sym_DASH_GT, - ACTIONS(4533), 1, + ACTIONS(4042), 1, anon_sym_DOT, - ACTIONS(6574), 1, - anon_sym_LPAREN, - ACTIONS(6619), 1, - anon_sym_LBRACK, - ACTIONS(6625), 1, + ACTIONS(4044), 1, + anon_sym_DASH_GT, + ACTIONS(5257), 1, + anon_sym_LPAREN, + ACTIONS(5302), 1, anon_sym_BANG, - ACTIONS(6649), 1, + ACTIONS(5549), 1, + anon_sym_LBRACK, + ACTIONS(6355), 1, anon_sym_switch, - ACTIONS(6659), 1, - anon_sym_as, - ACTIONS(6663), 1, + ACTIONS(6369), 1, anon_sym_with, - ACTIONS(7009), 1, + ACTIONS(7179), 1, anon_sym_SLASH, - ACTIONS(7011), 1, + ACTIONS(7183), 1, + anon_sym_GT_GT, + ACTIONS(7185), 1, anon_sym_DOT_DOT, - ACTIONS(7213), 1, - anon_sym_QMARK, - ACTIONS(7215), 1, + ACTIONS(7189), 1, + anon_sym_AMP, + ACTIONS(7195), 1, + anon_sym_as, + ACTIONS(7197), 1, + anon_sym_is, + ACTIONS(7199), 1, anon_sym_CARET, - ACTIONS(7217), 1, + ACTIONS(7201), 1, anon_sym_PIPE, - ACTIONS(7219), 1, - anon_sym_AMP, - ACTIONS(7223), 1, - anon_sym_GT_GT, - ACTIONS(7229), 1, + ACTIONS(7203), 1, anon_sym_AMP_AMP, - ACTIONS(7231), 1, + ACTIONS(7205), 1, anon_sym_PIPE_PIPE, - ACTIONS(7233), 1, + ACTIONS(7207), 1, anon_sym_QMARK_QMARK, - ACTIONS(7235), 1, - anon_sym_is, - STATE(3173), 1, + ACTIONS(7209), 1, + anon_sym_QMARK, + STATE(2467), 1, sym_bracketed_argument_list, - STATE(4583), 1, + STATE(3381), 1, sym_argument_list, - ACTIONS(6627), 2, + ACTIONS(5304), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7005), 2, + ACTIONS(7175), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7007), 2, + ACTIONS(7177), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7211), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(7221), 2, + ACTIONS(7181), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7225), 2, + ACTIONS(7187), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(7191), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7227), 2, + ACTIONS(7193), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5767), 4, - sym_interpolation_close_brace, + ACTIONS(5652), 4, anon_sym_COLON, anon_sym_COMMA, - anon_sym_into, - STATE(4618), 9, + anon_sym_RPAREN, + anon_sym_RBRACE, + STATE(4562), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -598399,7 +593712,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [84102] = 29, + [80002] = 43, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -598420,49 +593733,78 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4075), 1, + ACTIONS(4042), 1, anon_sym_DOT, - ACTIONS(4077), 1, + ACTIONS(4044), 1, anon_sym_DASH_GT, - ACTIONS(5247), 1, + ACTIONS(5257), 1, anon_sym_LPAREN, - ACTIONS(5283), 1, - anon_sym_LBRACK, - ACTIONS(5285), 1, + ACTIONS(5302), 1, anon_sym_BANG, - ACTIONS(6147), 1, + ACTIONS(5549), 1, + anon_sym_LBRACK, + ACTIONS(6355), 1, anon_sym_switch, - ACTIONS(6161), 1, + ACTIONS(6369), 1, anon_sym_with, - ACTIONS(7177), 1, - anon_sym_DOT_DOT, - ACTIONS(7286), 1, + ACTIONS(6657), 1, anon_sym_SLASH, - ACTIONS(7290), 1, + ACTIONS(6661), 1, anon_sym_GT_GT, - STATE(2613), 1, + ACTIONS(6665), 1, + anon_sym_AMP, + ACTIONS(6673), 1, + anon_sym_CARET, + ACTIONS(6675), 1, + anon_sym_PIPE, + ACTIONS(6677), 1, + anon_sym_AMP_AMP, + ACTIONS(6679), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6681), 1, + anon_sym_QMARK_QMARK, + ACTIONS(7185), 1, + anon_sym_DOT_DOT, + ACTIONS(7195), 1, + anon_sym_as, + ACTIONS(7197), 1, + anon_sym_is, + ACTIONS(7209), 1, + anon_sym_QMARK, + ACTIONS(7211), 1, + anon_sym_COLON, + ACTIONS(7213), 1, + anon_sym_COMMA, + ACTIONS(7215), 1, + anon_sym_RBRACE, + STATE(2467), 1, sym_bracketed_argument_list, - STATE(3259), 1, + STATE(3381), 1, sym_argument_list, - ACTIONS(5287), 2, + STATE(6895), 1, + aux_sym__for_statement_conditions_repeat1, + ACTIONS(5304), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7282), 2, + ACTIONS(6653), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7284), 2, + ACTIONS(6655), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7288), 2, + ACTIONS(6659), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(5664), 5, + ACTIONS(6663), 2, anon_sym_LT, anon_sym_GT, - anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_AMP, - STATE(4619), 9, + ACTIONS(6667), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6669), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + STATE(4563), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -598472,22 +593814,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5660), 14, - 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_by, - anon_sym_as, - anon_sym_is, - [84219] = 13, + [80147] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -598508,7 +593835,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - STATE(4620), 9, + ACTIONS(7117), 1, + anon_sym_and, + ACTIONS(7119), 1, + anon_sym_or, + STATE(4564), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -598518,7 +593849,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5082), 11, + ACTIONS(6109), 11, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, @@ -598530,11 +593861,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT, - ACTIONS(5080), 28, - sym_interpolation_close_brace, + ACTIONS(6107), 26, + anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_COLON, - anon_sym_COMMA, anon_sym_LPAREN, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, @@ -598549,17 +593878,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, - [84304] = 26, + aux_sym_preproc_if_token3, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + [80236] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -598580,44 +593909,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4075), 1, - anon_sym_DOT, - ACTIONS(4077), 1, - anon_sym_DASH_GT, - ACTIONS(5247), 1, - anon_sym_LPAREN, - ACTIONS(5283), 1, - anon_sym_LBRACK, - ACTIONS(5285), 1, - anon_sym_BANG, - ACTIONS(6147), 1, - anon_sym_switch, - ACTIONS(6161), 1, - anon_sym_with, - ACTIONS(7177), 1, - anon_sym_DOT_DOT, - ACTIONS(7286), 1, - anon_sym_SLASH, - STATE(2613), 1, - sym_bracketed_argument_list, - STATE(3259), 1, - sym_argument_list, - ACTIONS(5287), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(7284), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(5664), 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(4621), 9, + STATE(4565), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -598627,24 +593919,48 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5660), 16, - 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(3911), 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, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_GT, + ACTIONS(3909), 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_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, - [84415] = 13, + anon_sym_select, + sym__identifier_token, + [80321] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -598665,7 +593981,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - STATE(4622), 9, + ACTIONS(4723), 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(4566), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -598675,48 +593998,41 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(2951), 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(2953), 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(4721), 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_as, - anon_sym_is, - anon_sym_DASH_GT, - anon_sym_with, - [84500] = 27, + 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, + [80406] = 29, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -598737,45 +594053,49 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4075), 1, + ACTIONS(4092), 1, anon_sym_DOT, - ACTIONS(4077), 1, + ACTIONS(4094), 1, anon_sym_DASH_GT, - ACTIONS(5247), 1, + ACTIONS(5227), 1, anon_sym_LPAREN, - ACTIONS(5283), 1, + ACTIONS(5236), 1, anon_sym_LBRACK, - ACTIONS(5285), 1, + ACTIONS(5238), 1, anon_sym_BANG, - ACTIONS(6147), 1, + ACTIONS(6017), 1, anon_sym_switch, - ACTIONS(6161), 1, + ACTIONS(6031), 1, anon_sym_with, - ACTIONS(7177), 1, - anon_sym_DOT_DOT, - ACTIONS(7286), 1, + ACTIONS(7221), 1, anon_sym_SLASH, - STATE(2613), 1, + ACTIONS(7225), 1, + anon_sym_GT_GT, + ACTIONS(7227), 1, + anon_sym_DOT_DOT, + STATE(2605), 1, sym_bracketed_argument_list, - STATE(3259), 1, + STATE(3348), 1, sym_argument_list, - ACTIONS(5287), 2, + ACTIONS(5240), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7282), 2, + ACTIONS(7217), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7284), 2, + ACTIONS(7219), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(5664), 6, + ACTIONS(7223), 2, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + ACTIONS(5739), 5, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, anon_sym_PIPE, anon_sym_AMP, - anon_sym_GT_GT, - STATE(4623), 9, + STATE(4567), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -598785,10 +594105,8 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5660), 16, + ACTIONS(5737), 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, @@ -598799,10 +594117,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_QMARK_QMARK, anon_sym_into, - anon_sym_by, + anon_sym_on, anon_sym_as, anon_sym_is, - [84613] = 15, + [80523] = 26, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -598823,11 +594141,44 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(7131), 1, - anon_sym_and, - ACTIONS(7292), 1, - anon_sym_or, - STATE(4624), 9, + ACTIONS(4092), 1, + anon_sym_DOT, + ACTIONS(4094), 1, + anon_sym_DASH_GT, + ACTIONS(5227), 1, + anon_sym_LPAREN, + ACTIONS(5236), 1, + anon_sym_LBRACK, + ACTIONS(5238), 1, + anon_sym_BANG, + ACTIONS(6017), 1, + anon_sym_switch, + ACTIONS(6031), 1, + anon_sym_with, + ACTIONS(7221), 1, + anon_sym_SLASH, + ACTIONS(7227), 1, + anon_sym_DOT_DOT, + STATE(2605), 1, + sym_bracketed_argument_list, + STATE(3348), 1, + sym_argument_list, + ACTIONS(5240), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7219), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(5739), 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(4568), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -598837,28 +594188,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5356), 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(5354), 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, + ACTIONS(5737), 16, anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT_GT, @@ -598866,17 +594196,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_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, - [84702] = 13, + [80634] = 27, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -598897,7 +594226,45 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - STATE(4625), 9, + ACTIONS(4092), 1, + anon_sym_DOT, + ACTIONS(4094), 1, + anon_sym_DASH_GT, + ACTIONS(5227), 1, + anon_sym_LPAREN, + ACTIONS(5236), 1, + anon_sym_LBRACK, + ACTIONS(5238), 1, + anon_sym_BANG, + ACTIONS(6017), 1, + anon_sym_switch, + ACTIONS(6031), 1, + anon_sym_with, + ACTIONS(7221), 1, + anon_sym_SLASH, + ACTIONS(7227), 1, + anon_sym_DOT_DOT, + STATE(2605), 1, + sym_bracketed_argument_list, + STATE(3348), 1, + sym_argument_list, + ACTIONS(5240), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7217), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(7219), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(5739), 6, + anon_sym_LT, + anon_sym_GT, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT_GT, + STATE(4569), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -598907,28 +594274,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(4987), 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(4985), 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, + ACTIONS(5737), 16, anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT_GT, @@ -598936,19 +594282,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_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, - [84787] = 15, + [80747] = 22, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -598969,40 +594312,46 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(7131), 1, - anon_sym_and, - ACTIONS(7292), 1, - anon_sym_or, - STATE(4626), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - ACTIONS(6207), 11, + ACTIONS(4092), 1, + anon_sym_DOT, + ACTIONS(4094), 1, + anon_sym_DASH_GT, + ACTIONS(5227), 1, + anon_sym_LPAREN, + ACTIONS(5236), 1, + anon_sym_LBRACK, + ACTIONS(5238), 1, + anon_sym_BANG, + ACTIONS(7227), 1, + anon_sym_DOT_DOT, + STATE(2605), 1, + sym_bracketed_argument_list, + STATE(3348), 1, + sym_argument_list, + ACTIONS(5240), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5743), 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(6205), 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, + 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(5741), 20, anon_sym_STAR, anon_sym_PERCENT, anon_sym_CARET, @@ -599013,16 +594362,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_on, anon_sym_as, anon_sym_is, - anon_sym_DASH_GT, anon_sym_with, - [84876] = 40, + [80850] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -599043,75 +594393,75 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4075), 1, + ACTIONS(4042), 1, anon_sym_DOT, - ACTIONS(4077), 1, + ACTIONS(4044), 1, anon_sym_DASH_GT, - ACTIONS(5247), 1, + ACTIONS(5257), 1, anon_sym_LPAREN, - ACTIONS(5283), 1, - anon_sym_LBRACK, - ACTIONS(5285), 1, + ACTIONS(5302), 1, anon_sym_BANG, - ACTIONS(6147), 1, + ACTIONS(5549), 1, + anon_sym_LBRACK, + ACTIONS(6355), 1, anon_sym_switch, - ACTIONS(6157), 1, - anon_sym_as, - ACTIONS(6161), 1, + ACTIONS(6369), 1, anon_sym_with, - ACTIONS(7091), 1, + ACTIONS(6811), 1, + anon_sym_as, + ACTIONS(7231), 1, + anon_sym_QMARK, + ACTIONS(7237), 1, anon_sym_SLASH, - ACTIONS(7093), 1, + ACTIONS(7239), 1, anon_sym_CARET, - ACTIONS(7095), 1, + ACTIONS(7241), 1, anon_sym_PIPE, - ACTIONS(7097), 1, + ACTIONS(7243), 1, anon_sym_AMP, - ACTIONS(7101), 1, + ACTIONS(7247), 1, anon_sym_GT_GT, - ACTIONS(7107), 1, + ACTIONS(7253), 1, anon_sym_DOT_DOT, - ACTIONS(7109), 1, + ACTIONS(7255), 1, anon_sym_AMP_AMP, - ACTIONS(7111), 1, - anon_sym_is, - ACTIONS(7113), 1, + ACTIONS(7257), 1, anon_sym_PIPE_PIPE, - ACTIONS(7115), 1, + ACTIONS(7259), 1, anon_sym_QMARK_QMARK, - ACTIONS(7117), 1, - anon_sym_QMARK, - STATE(2613), 1, + ACTIONS(7261), 1, + anon_sym_is, + STATE(2467), 1, sym_bracketed_argument_list, - STATE(3259), 1, + STATE(3381), 1, sym_argument_list, - ACTIONS(5287), 2, + ACTIONS(5304), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7085), 2, + ACTIONS(7229), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7087), 2, + ACTIONS(7233), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7089), 2, + ACTIONS(7235), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7099), 2, + ACTIONS(7245), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7103), 2, + ACTIONS(7249), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7105), 2, + ACTIONS(7251), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5899), 4, - anon_sym_EQ_GT, - anon_sym_and, - anon_sym_or, - anon_sym_into, - STATE(4627), 9, + ACTIONS(5709), 4, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_RBRACE, + STATE(4571), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -599121,7 +594471,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [85015] = 13, + [80989] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -599142,7 +594492,79 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - STATE(4628), 9, + ACTIONS(4763), 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(4572), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + ACTIONS(4761), 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, + [81074] = 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(4573), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -599152,7 +594574,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5112), 11, + ACTIONS(5144), 11, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, @@ -599164,7 +594586,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT, - ACTIONS(5110), 28, + ACTIONS(5142), 28, sym_interpolation_close_brace, anon_sym_LBRACK, anon_sym_COLON, @@ -599193,7 +594615,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, anon_sym_DASH_GT, anon_sym_with, - [85100] = 13, + [81159] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -599214,7 +594636,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - STATE(4629), 9, + ACTIONS(7263), 1, + anon_sym_LPAREN, + STATE(4574), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -599224,7 +594648,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5044), 11, + ACTIONS(2029), 11, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, @@ -599236,12 +594660,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT, - ACTIONS(5042), 28, + ACTIONS(2031), 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, anon_sym_STAR, @@ -599265,106 +594688,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, anon_sym_DASH_GT, anon_sym_with, - [85185] = 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(4100), 1, - anon_sym_DOT, - ACTIONS(4102), 1, - anon_sym_DASH_GT, - ACTIONS(5264), 1, - anon_sym_LPAREN, - ACTIONS(5304), 1, - anon_sym_BANG, - ACTIONS(5573), 1, - anon_sym_LBRACK, - ACTIONS(6343), 1, - anon_sym_switch, - ACTIONS(6357), 1, - anon_sym_with, - ACTIONS(6813), 1, - anon_sym_as, - ACTIONS(7139), 1, - anon_sym_QMARK, - ACTIONS(7145), 1, - anon_sym_SLASH, - ACTIONS(7147), 1, - anon_sym_CARET, - ACTIONS(7149), 1, - anon_sym_PIPE, - ACTIONS(7151), 1, - anon_sym_AMP, - ACTIONS(7155), 1, - anon_sym_GT_GT, - ACTIONS(7161), 1, - anon_sym_DOT_DOT, - ACTIONS(7163), 1, - anon_sym_AMP_AMP, - ACTIONS(7165), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7167), 1, - anon_sym_QMARK_QMARK, - ACTIONS(7169), 1, - anon_sym_is, - STATE(2485), 1, - sym_bracketed_argument_list, - STATE(3487), 1, - sym_argument_list, - ACTIONS(5306), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(7137), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(7141), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(7143), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(7153), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - ACTIONS(7157), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(7159), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(5882), 4, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_RBRACE, - STATE(4630), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - [85324] = 13, + [81246] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -599385,7 +594709,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - STATE(4631), 9, + STATE(4575), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -599395,7 +594719,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5375), 11, + ACTIONS(5150), 11, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, @@ -599407,7 +594731,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT, - ACTIONS(5373), 28, + ACTIONS(5148), 28, sym_interpolation_close_brace, anon_sym_LBRACK, anon_sym_COLON, @@ -599436,7 +594760,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, anon_sym_DASH_GT, anon_sym_with, - [85409] = 13, + [81331] = 29, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -599457,7 +594781,49 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - STATE(4632), 9, + ACTIONS(4092), 1, + anon_sym_DOT, + ACTIONS(4094), 1, + anon_sym_DASH_GT, + ACTIONS(5227), 1, + anon_sym_LPAREN, + ACTIONS(5236), 1, + anon_sym_LBRACK, + ACTIONS(5238), 1, + anon_sym_BANG, + ACTIONS(6017), 1, + anon_sym_switch, + ACTIONS(6031), 1, + anon_sym_with, + ACTIONS(7269), 1, + anon_sym_SLASH, + ACTIONS(7273), 1, + anon_sym_GT_GT, + ACTIONS(7275), 1, + anon_sym_DOT_DOT, + STATE(2605), 1, + sym_bracketed_argument_list, + STATE(3348), 1, + sym_argument_list, + ACTIONS(5240), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7265), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(7267), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(7271), 2, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + ACTIONS(5739), 5, + anon_sym_LT, + anon_sym_GT, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_AMP, + STATE(4576), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -599467,48 +594833,22 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(3951), 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, - anon_sym_LT, - anon_sym_GT, + ACTIONS(5737), 14, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, anon_sym_EQ_GT, - ACTIONS(3949), 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_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, - [85494] = 13, + anon_sym_as, + anon_sym_is, + [81448] = 26, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -599529,79 +594869,44 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4759), 6, - anon_sym_LBRACK, + ACTIONS(4092), 1, + anon_sym_DOT, + ACTIONS(4094), 1, + anon_sym_DASH_GT, + ACTIONS(5227), 1, anon_sym_LPAREN, - aux_sym_preproc_if_token1, - aux_sym_preproc_if_token3, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - STATE(4633), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - ACTIONS(4757), 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, - [85579] = 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(4634), 9, + ACTIONS(5236), 1, + anon_sym_LBRACK, + ACTIONS(5238), 1, + anon_sym_BANG, + ACTIONS(6017), 1, + anon_sym_switch, + ACTIONS(6031), 1, + anon_sym_with, + ACTIONS(7269), 1, + anon_sym_SLASH, + ACTIONS(7275), 1, + anon_sym_DOT_DOT, + STATE(2605), 1, + sym_bracketed_argument_list, + STATE(3348), 1, + sym_argument_list, + ACTIONS(5240), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7267), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(5739), 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(4577), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -599611,28 +594916,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(3141), 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(3143), 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, + ACTIONS(5737), 16, anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT_GT, @@ -599640,8 +594924,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_EQ_GT, anon_sym_and, anon_sym_or, anon_sym_AMP_AMP, @@ -599650,9 +594933,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, - [85664] = 26, + [81559] = 27, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -599673,44 +594954,45 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4443), 1, - anon_sym_DASH_GT, - ACTIONS(4533), 1, + ACTIONS(4092), 1, anon_sym_DOT, - ACTIONS(6574), 1, + ACTIONS(4094), 1, + anon_sym_DASH_GT, + ACTIONS(5227), 1, anon_sym_LPAREN, - ACTIONS(6619), 1, + ACTIONS(5236), 1, anon_sym_LBRACK, - ACTIONS(6625), 1, + ACTIONS(5238), 1, anon_sym_BANG, - ACTIONS(6649), 1, + ACTIONS(6017), 1, anon_sym_switch, - ACTIONS(6663), 1, + ACTIONS(6031), 1, anon_sym_with, - ACTIONS(7009), 1, + ACTIONS(7269), 1, anon_sym_SLASH, - ACTIONS(7011), 1, + ACTIONS(7275), 1, anon_sym_DOT_DOT, - STATE(3173), 1, + STATE(2605), 1, sym_bracketed_argument_list, - STATE(4583), 1, + STATE(3348), 1, sym_argument_list, - ACTIONS(6627), 2, + ACTIONS(5240), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7007), 2, + ACTIONS(7265), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(7267), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(5664), 8, + ACTIONS(5739), 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(4635), 9, + STATE(4578), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -599720,10 +595002,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5660), 16, - sym_interpolation_close_brace, - anon_sym_COLON, - anon_sym_COMMA, + ACTIONS(5737), 16, anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT_GT, @@ -599731,13 +595010,16 @@ 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_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, - [85775] = 21, + [81672] = 22, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -599758,33 +595040,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, - STATE(2175), 1, - sym__reserved_identifier, - STATE(2181), 1, - sym_generic_name, - STATE(4373), 1, - sym_identifier, - STATE(5787), 1, - sym_attribute_target_specifier, - STATE(6519), 1, - sym__name, - STATE(7036), 1, - sym_attribute, - STATE(4096), 3, - sym_alias_qualified_name, - sym__simple_name, - sym_qualified_name, - ACTIONS(1055), 7, - anon_sym_field, - anon_sym_event, - anon_sym_method, - anon_sym_param, - anon_sym_property, - anon_sym_return, - anon_sym_type, - STATE(4636), 9, + ACTIONS(4092), 1, + anon_sym_DOT, + ACTIONS(4094), 1, + anon_sym_DASH_GT, + ACTIONS(5227), 1, + anon_sym_LPAREN, + ACTIONS(5236), 1, + anon_sym_LBRACK, + ACTIONS(5238), 1, + anon_sym_BANG, + ACTIONS(7275), 1, + anon_sym_DOT_DOT, + STATE(2605), 1, + sym_bracketed_argument_list, + STATE(3348), 1, + sym_argument_list, + ACTIONS(5240), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5743), 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(4579), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -599794,30 +595079,28 @@ 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(5741), 20, + 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_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, - [85876] = 13, + anon_sym_as, + anon_sym_is, + anon_sym_with, + [81775] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -599838,7 +595121,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - STATE(4637), 9, + STATE(4580), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -599848,7 +595131,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5158), 11, + ACTIONS(4813), 11, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, @@ -599860,7 +595143,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT, - ACTIONS(5156), 28, + ACTIONS(4811), 28, sym_interpolation_close_brace, anon_sym_LBRACK, anon_sym_COLON, @@ -599889,7 +595172,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, anon_sym_DASH_GT, anon_sym_with, - [85961] = 13, + [81860] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -599910,14 +595193,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4763), 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(4638), 9, + STATE(4581), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -599927,41 +595203,48 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(4761), 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, + ACTIONS(5158), 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(5156), 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_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, - [86046] = 13, + anon_sym_as, + anon_sym_is, + anon_sym_DASH_GT, + anon_sym_with, + [81945] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -599982,7 +595265,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - STATE(4639), 9, + STATE(4582), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -599992,7 +595275,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5162), 11, + ACTIONS(5164), 11, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, @@ -600004,7 +595287,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT, - ACTIONS(5160), 28, + ACTIONS(5162), 28, sym_interpolation_close_brace, anon_sym_LBRACK, anon_sym_COLON, @@ -600033,7 +595316,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, anon_sym_DASH_GT, anon_sym_with, - [86131] = 13, + [82030] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -600054,7 +595337,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - STATE(4640), 9, + STATE(4583), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -600064,7 +595347,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(4255), 11, + ACTIONS(4919), 11, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, @@ -600076,7 +595359,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT, - ACTIONS(4253), 28, + ACTIONS(4917), 28, sym_interpolation_close_brace, anon_sym_LBRACK, anon_sym_COLON, @@ -600105,7 +595388,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, anon_sym_DASH_GT, anon_sym_with, - [86216] = 13, + [82115] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -600126,7 +595409,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - STATE(4641), 9, + STATE(4584), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -600136,7 +595419,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5170), 11, + ACTIONS(4927), 11, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, @@ -600148,7 +595431,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT, - ACTIONS(5168), 28, + ACTIONS(4925), 28, sym_interpolation_close_brace, anon_sym_LBRACK, anon_sym_COLON, @@ -600177,7 +595460,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, anon_sym_DASH_GT, anon_sym_with, - [86301] = 13, + [82200] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -600198,7 +595481,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - STATE(4642), 9, + STATE(4585), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -600208,7 +595491,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5178), 11, + ACTIONS(4935), 11, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, @@ -600220,7 +595503,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT, - ACTIONS(5176), 28, + ACTIONS(4933), 28, sym_interpolation_close_brace, anon_sym_LBRACK, anon_sym_COLON, @@ -600249,7 +595532,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, anon_sym_DASH_GT, anon_sym_with, - [86386] = 13, + [82285] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -600270,7 +595553,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - STATE(4643), 9, + STATE(4586), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -600280,7 +595563,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5182), 11, + ACTIONS(4931), 11, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, @@ -600292,7 +595575,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT, - ACTIONS(5180), 28, + ACTIONS(4929), 28, sym_interpolation_close_brace, anon_sym_LBRACK, anon_sym_COLON, @@ -600321,7 +595604,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, anon_sym_DASH_GT, anon_sym_with, - [86471] = 13, + [82370] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -600342,7 +595625,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - STATE(4644), 9, + STATE(4587), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -600352,7 +595635,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5088), 11, + ACTIONS(4939), 11, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, @@ -600364,7 +595647,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT, - ACTIONS(5086), 28, + ACTIONS(4937), 28, sym_interpolation_close_brace, anon_sym_LBRACK, anon_sym_COLON, @@ -600393,7 +595676,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, anon_sym_DASH_GT, anon_sym_with, - [86556] = 13, + [82455] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -600414,7 +595697,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - STATE(4645), 9, + STATE(4588), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -600424,7 +595707,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5186), 11, + ACTIONS(4943), 11, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, @@ -600436,7 +595719,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT, - ACTIONS(5184), 28, + ACTIONS(4941), 28, sym_interpolation_close_brace, anon_sym_LBRACK, anon_sym_COLON, @@ -600465,7 +595748,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, anon_sym_DASH_GT, anon_sym_with, - [86641] = 13, + [82540] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -600486,7 +595769,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - STATE(4646), 9, + STATE(4589), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -600496,7 +595779,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5190), 11, + ACTIONS(2953), 11, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, @@ -600508,7 +595791,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT, - ACTIONS(5188), 28, + ACTIONS(2955), 28, sym_interpolation_close_brace, anon_sym_LBRACK, anon_sym_COLON, @@ -600537,7 +595820,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, anon_sym_DASH_GT, anon_sym_with, - [86726] = 13, + [82625] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -600558,7 +595841,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - STATE(4647), 9, + STATE(4590), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -600568,7 +595851,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5210), 11, + ACTIONS(4947), 11, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, @@ -600580,7 +595863,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT, - ACTIONS(5208), 28, + ACTIONS(4945), 28, sym_interpolation_close_brace, anon_sym_LBRACK, anon_sym_COLON, @@ -600609,7 +595892,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, anon_sym_DASH_GT, anon_sym_with, - [86811] = 24, + [82710] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -600630,40 +595913,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4443), 1, - anon_sym_DASH_GT, - ACTIONS(4533), 1, - anon_sym_DOT, - ACTIONS(6574), 1, - anon_sym_LPAREN, - ACTIONS(6619), 1, - anon_sym_LBRACK, - ACTIONS(6625), 1, - anon_sym_BANG, - ACTIONS(6649), 1, - anon_sym_switch, - ACTIONS(6663), 1, - anon_sym_with, - ACTIONS(7011), 1, - anon_sym_DOT_DOT, - STATE(3173), 1, - sym_bracketed_argument_list, - STATE(4583), 1, - sym_argument_list, - ACTIONS(6627), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5664), 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(4648), 9, + STATE(4591), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -600673,10 +595923,26 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5660), 18, + ACTIONS(4228), 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(4226), 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, @@ -600686,13 +595952,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, - [86918] = 13, + anon_sym_DASH_GT, + anon_sym_with, + [82795] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -600713,7 +595985,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - STATE(4649), 9, + STATE(4592), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -600723,7 +595995,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5108), 11, + ACTIONS(4951), 11, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, @@ -600735,7 +596007,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT, - ACTIONS(5106), 28, + ACTIONS(4949), 28, sym_interpolation_close_brace, anon_sym_LBRACK, anon_sym_COLON, @@ -600764,7 +596036,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, anon_sym_DASH_GT, anon_sym_with, - [87003] = 40, + [82880] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -600785,85 +596057,58 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4075), 1, - anon_sym_DOT, - ACTIONS(4077), 1, - anon_sym_DASH_GT, - ACTIONS(5247), 1, - anon_sym_LPAREN, - ACTIONS(5283), 1, - anon_sym_LBRACK, - ACTIONS(5285), 1, + STATE(4593), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + ACTIONS(4955), 11, + anon_sym_LT, + anon_sym_GT, + anon_sym_QMARK, anon_sym_BANG, - ACTIONS(6147), 1, - anon_sym_switch, - ACTIONS(6157), 1, - anon_sym_as, - ACTIONS(6161), 1, - anon_sym_with, - ACTIONS(7091), 1, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_SLASH, - ACTIONS(7093), 1, - anon_sym_CARET, - ACTIONS(7095), 1, anon_sym_PIPE, - ACTIONS(7097), 1, anon_sym_AMP, - ACTIONS(7101), 1, anon_sym_GT_GT, - ACTIONS(7107), 1, - anon_sym_DOT_DOT, - ACTIONS(7109), 1, - anon_sym_AMP_AMP, - ACTIONS(7111), 1, - anon_sym_is, - ACTIONS(7113), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7115), 1, - anon_sym_QMARK_QMARK, - ACTIONS(7117), 1, - anon_sym_QMARK, - STATE(2613), 1, - sym_bracketed_argument_list, - STATE(3259), 1, - sym_argument_list, - ACTIONS(5287), 2, + anon_sym_DOT, + ACTIONS(4953), 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(7085), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(7087), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(7089), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7099), 2, + anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7103), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7105), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5777), 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(4650), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - [87142] = 13, + anon_sym_as, + anon_sym_is, + anon_sym_DASH_GT, + anon_sym_with, + [82965] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -600884,7 +596129,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - STATE(4651), 9, + STATE(4594), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -600894,7 +596139,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5120), 11, + ACTIONS(4959), 11, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, @@ -600906,7 +596151,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT, - ACTIONS(5118), 28, + ACTIONS(4957), 28, sym_interpolation_close_brace, anon_sym_LBRACK, anon_sym_COLON, @@ -600935,7 +596180,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, anon_sym_DASH_GT, anon_sym_with, - [87227] = 13, + [83050] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -600956,7 +596201,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - STATE(4652), 9, + STATE(4595), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -600966,7 +596211,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(4971), 11, + ACTIONS(4963), 11, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, @@ -600978,7 +596223,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT, - ACTIONS(4969), 28, + ACTIONS(4961), 28, sym_interpolation_close_brace, anon_sym_LBRACK, anon_sym_COLON, @@ -601007,7 +596252,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, anon_sym_DASH_GT, anon_sym_with, - [87312] = 24, + [83135] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -601028,40 +596273,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4075), 1, - anon_sym_DOT, - ACTIONS(4077), 1, - anon_sym_DASH_GT, - ACTIONS(5247), 1, - anon_sym_LPAREN, - ACTIONS(5283), 1, - anon_sym_LBRACK, - ACTIONS(5285), 1, - anon_sym_BANG, - ACTIONS(6147), 1, - anon_sym_switch, - ACTIONS(6161), 1, - anon_sym_with, - ACTIONS(7177), 1, - anon_sym_DOT_DOT, - STATE(2613), 1, - sym_bracketed_argument_list, - STATE(3259), 1, - sym_argument_list, - ACTIONS(5287), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5664), 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(4653), 9, + STATE(4596), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -601071,7 +596283,26 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5660), 18, + ACTIONS(4967), 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(4965), 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, @@ -601081,16 +596312,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_by, anon_sym_as, anon_sym_is, - [87419] = 16, + anon_sym_DASH_GT, + anon_sym_with, + [83220] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -601111,13 +596345,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(5312), 1, - anon_sym_LT, - ACTIONS(7294), 1, - anon_sym_COLON_COLON, - STATE(3247), 1, - sym_type_argument_list, - STATE(4654), 9, + STATE(4597), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -601127,7 +596355,8 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(3660), 10, + ACTIONS(4971), 11, + anon_sym_LT, anon_sym_GT, anon_sym_QMARK, anon_sym_BANG, @@ -601138,11 +596367,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT, - ACTIONS(3662), 26, + ACTIONS(4969), 28, + sym_interpolation_close_brace, anon_sym_LBRACK, + anon_sym_COLON, + anon_sym_COMMA, anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_in, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_STAR, @@ -601161,11 +596391,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, - [87510] = 40, + [83305] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -601186,75 +596417,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4100), 1, - anon_sym_DOT, - ACTIONS(4102), 1, - anon_sym_DASH_GT, - ACTIONS(5264), 1, - anon_sym_LPAREN, - ACTIONS(5304), 1, - anon_sym_BANG, - ACTIONS(5573), 1, - anon_sym_LBRACK, - ACTIONS(6343), 1, - anon_sym_switch, - ACTIONS(6357), 1, - anon_sym_with, - ACTIONS(7019), 1, - anon_sym_SLASH, - ACTIONS(7021), 1, - anon_sym_CARET, - ACTIONS(7023), 1, - anon_sym_PIPE, - ACTIONS(7025), 1, - anon_sym_AMP, - ACTIONS(7029), 1, - anon_sym_GT_GT, - ACTIONS(7035), 1, - anon_sym_DOT_DOT, - ACTIONS(7037), 1, - anon_sym_as, - ACTIONS(7039), 1, - anon_sym_is, - ACTIONS(7041), 1, - anon_sym_AMP_AMP, - ACTIONS(7043), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7045), 1, - anon_sym_QMARK_QMARK, - ACTIONS(7047), 1, - anon_sym_QMARK, - STATE(2485), 1, - sym_bracketed_argument_list, - STATE(3487), 1, - sym_argument_list, - ACTIONS(5306), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(7013), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(7015), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(7017), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(7027), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - ACTIONS(7031), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(7033), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(5858), 4, - anon_sym_COLON, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_RBRACE, - STATE(4655), 9, + STATE(4598), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -601264,106 +596427,48 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [87649] = 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(4100), 1, - anon_sym_DOT, - ACTIONS(4102), 1, - anon_sym_DASH_GT, - ACTIONS(5264), 1, - anon_sym_LPAREN, - ACTIONS(5304), 1, + ACTIONS(4975), 11, + anon_sym_LT, + anon_sym_GT, + anon_sym_QMARK, anon_sym_BANG, - ACTIONS(5573), 1, - anon_sym_LBRACK, - ACTIONS(6343), 1, - anon_sym_switch, - ACTIONS(6357), 1, - anon_sym_with, - ACTIONS(7019), 1, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_SLASH, - ACTIONS(7021), 1, - anon_sym_CARET, - ACTIONS(7023), 1, anon_sym_PIPE, - ACTIONS(7025), 1, anon_sym_AMP, - ACTIONS(7029), 1, anon_sym_GT_GT, - ACTIONS(7035), 1, - anon_sym_DOT_DOT, - ACTIONS(7037), 1, - anon_sym_as, - ACTIONS(7039), 1, - anon_sym_is, - ACTIONS(7041), 1, - anon_sym_AMP_AMP, - ACTIONS(7043), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7045), 1, - anon_sym_QMARK_QMARK, - ACTIONS(7047), 1, - anon_sym_QMARK, - STATE(2485), 1, - sym_bracketed_argument_list, - STATE(3487), 1, - sym_argument_list, - ACTIONS(5306), 2, + anon_sym_DOT, + ACTIONS(4973), 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(7013), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(7015), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(7017), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7027), 2, + anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7031), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7033), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5864), 4, - anon_sym_COLON, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_RBRACE, - STATE(4656), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - [87788] = 13, + 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, + [83390] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -601384,7 +596489,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - STATE(4657), 9, + STATE(4599), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -601394,7 +596499,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5128), 11, + ACTIONS(4979), 11, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, @@ -601406,7 +596511,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT, - ACTIONS(5126), 28, + ACTIONS(4977), 28, sym_interpolation_close_brace, anon_sym_LBRACK, anon_sym_COLON, @@ -601435,7 +596540,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, anon_sym_DASH_GT, anon_sym_with, - [87873] = 13, + [83475] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -601456,7 +596561,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - STATE(4658), 9, + STATE(4600), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -601466,7 +596571,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5166), 11, + ACTIONS(4983), 11, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, @@ -601478,7 +596583,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT, - ACTIONS(5164), 28, + ACTIONS(4981), 28, sym_interpolation_close_brace, anon_sym_LBRACK, anon_sym_COLON, @@ -601507,7 +596612,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, anon_sym_DASH_GT, anon_sym_with, - [87958] = 40, + [83560] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -601528,85 +596633,58 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4075), 1, - anon_sym_DOT, - ACTIONS(4077), 1, - anon_sym_DASH_GT, - ACTIONS(5247), 1, - anon_sym_LPAREN, - ACTIONS(5283), 1, - anon_sym_LBRACK, - ACTIONS(5285), 1, + STATE(4601), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + ACTIONS(4994), 11, + anon_sym_LT, + anon_sym_GT, + anon_sym_QMARK, anon_sym_BANG, - ACTIONS(6147), 1, - anon_sym_switch, - ACTIONS(6161), 1, - anon_sym_with, - ACTIONS(7177), 1, - anon_sym_DOT_DOT, - ACTIONS(7286), 1, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_SLASH, - ACTIONS(7290), 1, - anon_sym_GT_GT, - ACTIONS(7298), 1, - anon_sym_QMARK, - ACTIONS(7300), 1, - anon_sym_CARET, - ACTIONS(7302), 1, anon_sym_PIPE, - ACTIONS(7304), 1, anon_sym_AMP, - ACTIONS(7310), 1, - anon_sym_AMP_AMP, - ACTIONS(7312), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7314), 1, - anon_sym_QMARK_QMARK, - ACTIONS(7316), 1, - anon_sym_as, - ACTIONS(7318), 1, - anon_sym_is, - STATE(2613), 1, - sym_bracketed_argument_list, - STATE(3259), 1, - sym_argument_list, - ACTIONS(5287), 2, + anon_sym_GT_GT, + anon_sym_DOT, + ACTIONS(4992), 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(7282), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(7284), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7288), 2, + anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7296), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(7306), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7308), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5858), 4, + 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_by, - STATE(4659), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - [88097] = 40, + anon_sym_as, + anon_sym_is, + anon_sym_DASH_GT, + anon_sym_with, + [83645] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -601627,75 +596705,75 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4100), 1, + ACTIONS(4427), 1, anon_sym_DOT, - ACTIONS(4102), 1, + ACTIONS(4429), 1, anon_sym_DASH_GT, - ACTIONS(5264), 1, + ACTIONS(6557), 1, anon_sym_LPAREN, - ACTIONS(5302), 1, + ACTIONS(6607), 1, anon_sym_LBRACK, - ACTIONS(5304), 1, + ACTIONS(6613), 1, anon_sym_BANG, - ACTIONS(6475), 1, + ACTIONS(6637), 1, anon_sym_switch, - ACTIONS(6489), 1, + ACTIONS(6647), 1, + anon_sym_as, + ACTIONS(6651), 1, anon_sym_with, - ACTIONS(7051), 1, - anon_sym_QMARK, - ACTIONS(7057), 1, + ACTIONS(7035), 1, anon_sym_SLASH, - ACTIONS(7059), 1, - anon_sym_CARET, - ACTIONS(7061), 1, - anon_sym_PIPE, - ACTIONS(7063), 1, + ACTIONS(7037), 1, anon_sym_AMP, - ACTIONS(7067), 1, + ACTIONS(7041), 1, anon_sym_GT_GT, - ACTIONS(7073), 1, + ACTIONS(7047), 1, anon_sym_DOT_DOT, - ACTIONS(7075), 1, + ACTIONS(7049), 1, + anon_sym_is, + ACTIONS(7051), 1, + anon_sym_CARET, + ACTIONS(7053), 1, + anon_sym_PIPE, + ACTIONS(7055), 1, anon_sym_AMP_AMP, - ACTIONS(7077), 1, + ACTIONS(7057), 1, anon_sym_PIPE_PIPE, - ACTIONS(7079), 1, + ACTIONS(7059), 1, anon_sym_QMARK_QMARK, - ACTIONS(7081), 1, - anon_sym_as, - ACTIONS(7083), 1, - anon_sym_is, - STATE(2808), 1, + ACTIONS(7277), 1, + anon_sym_QMARK, + STATE(3188), 1, sym_bracketed_argument_list, - STATE(3487), 1, + STATE(4584), 1, sym_argument_list, - ACTIONS(5306), 2, + ACTIONS(6615), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7049), 2, + ACTIONS(7029), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7053), 2, + ACTIONS(7031), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7055), 2, + ACTIONS(7033), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7065), 2, + ACTIONS(7039), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7069), 2, + ACTIONS(7043), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7071), 2, + ACTIONS(7045), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5858), 4, + ACTIONS(5733), 4, + sym_interpolation_close_brace, anon_sym_COLON, - anon_sym_when, - anon_sym_and, - anon_sym_or, - STATE(4660), 9, + anon_sym_COMMA, + anon_sym_into, + STATE(4602), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -601705,7 +596783,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [88236] = 40, + [83784] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -601726,75 +596804,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4075), 1, - anon_sym_DOT, - ACTIONS(4077), 1, - anon_sym_DASH_GT, - ACTIONS(5247), 1, - anon_sym_LPAREN, - ACTIONS(5283), 1, - anon_sym_LBRACK, - ACTIONS(5285), 1, - anon_sym_BANG, - ACTIONS(6147), 1, - anon_sym_switch, - ACTIONS(6161), 1, - anon_sym_with, - ACTIONS(7177), 1, - anon_sym_DOT_DOT, - ACTIONS(7286), 1, - anon_sym_SLASH, - ACTIONS(7290), 1, - anon_sym_GT_GT, - ACTIONS(7298), 1, - anon_sym_QMARK, - ACTIONS(7300), 1, - anon_sym_CARET, - ACTIONS(7302), 1, - anon_sym_PIPE, - ACTIONS(7304), 1, - anon_sym_AMP, - ACTIONS(7310), 1, - anon_sym_AMP_AMP, - ACTIONS(7312), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7314), 1, - anon_sym_QMARK_QMARK, - ACTIONS(7316), 1, - anon_sym_as, - ACTIONS(7318), 1, - anon_sym_is, - STATE(2613), 1, - sym_bracketed_argument_list, - STATE(3259), 1, - sym_argument_list, - ACTIONS(5287), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(7282), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(7284), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(7288), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - ACTIONS(7296), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(7306), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(7308), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(5864), 4, - anon_sym_and, - anon_sym_or, - anon_sym_into, - anon_sym_by, - STATE(4661), 9, + STATE(4603), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -601804,106 +596814,48 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [88375] = 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(4075), 1, - anon_sym_DOT, - ACTIONS(4077), 1, - anon_sym_DASH_GT, - ACTIONS(5247), 1, - anon_sym_LPAREN, - ACTIONS(5283), 1, - anon_sym_LBRACK, - ACTIONS(5285), 1, + ACTIONS(4998), 11, + anon_sym_LT, + anon_sym_GT, + anon_sym_QMARK, anon_sym_BANG, - ACTIONS(6147), 1, - anon_sym_switch, - ACTIONS(6161), 1, - anon_sym_with, - ACTIONS(7177), 1, - anon_sym_DOT_DOT, - ACTIONS(7286), 1, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_SLASH, - ACTIONS(7290), 1, - anon_sym_GT_GT, - ACTIONS(7298), 1, - anon_sym_QMARK, - ACTIONS(7300), 1, - anon_sym_CARET, - ACTIONS(7302), 1, anon_sym_PIPE, - ACTIONS(7304), 1, anon_sym_AMP, - ACTIONS(7310), 1, - anon_sym_AMP_AMP, - ACTIONS(7312), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7314), 1, - anon_sym_QMARK_QMARK, - ACTIONS(7316), 1, - anon_sym_as, - ACTIONS(7318), 1, - anon_sym_is, - STATE(2613), 1, - sym_bracketed_argument_list, - STATE(3259), 1, - sym_argument_list, - ACTIONS(5287), 2, + anon_sym_GT_GT, + anon_sym_DOT, + ACTIONS(4996), 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(7282), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(7284), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7288), 2, + anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7296), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(7306), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7308), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5072), 4, + 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_by, - STATE(4662), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - [88514] = 40, + anon_sym_as, + anon_sym_is, + anon_sym_DASH_GT, + anon_sym_with, + [83869] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -601924,75 +596876,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4075), 1, - anon_sym_DOT, - ACTIONS(4077), 1, - anon_sym_DASH_GT, - ACTIONS(5247), 1, - anon_sym_LPAREN, - ACTIONS(5283), 1, - anon_sym_LBRACK, - ACTIONS(5285), 1, - anon_sym_BANG, - ACTIONS(6147), 1, - anon_sym_switch, - ACTIONS(6161), 1, - anon_sym_with, - ACTIONS(7177), 1, - anon_sym_DOT_DOT, - ACTIONS(7286), 1, - anon_sym_SLASH, - ACTIONS(7290), 1, - anon_sym_GT_GT, - ACTIONS(7298), 1, - anon_sym_QMARK, - ACTIONS(7300), 1, - anon_sym_CARET, - ACTIONS(7302), 1, - anon_sym_PIPE, - ACTIONS(7304), 1, - anon_sym_AMP, - ACTIONS(7310), 1, - anon_sym_AMP_AMP, - ACTIONS(7312), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7314), 1, - anon_sym_QMARK_QMARK, - ACTIONS(7316), 1, - anon_sym_as, - ACTIONS(7318), 1, - anon_sym_is, - STATE(2613), 1, - sym_bracketed_argument_list, - STATE(3259), 1, - sym_argument_list, - ACTIONS(5287), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(7282), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(7284), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(7288), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - ACTIONS(7296), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(7306), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(7308), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(5882), 4, - anon_sym_and, - anon_sym_or, - anon_sym_into, - anon_sym_by, - STATE(4663), 9, + STATE(4604), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -602002,106 +596886,48 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [88653] = 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(4075), 1, - anon_sym_DOT, - ACTIONS(4077), 1, - anon_sym_DASH_GT, - ACTIONS(5247), 1, - anon_sym_LPAREN, - ACTIONS(5283), 1, - anon_sym_LBRACK, - ACTIONS(5285), 1, + ACTIONS(5006), 11, + anon_sym_LT, + anon_sym_GT, + anon_sym_QMARK, anon_sym_BANG, - ACTIONS(6147), 1, - anon_sym_switch, - ACTIONS(6161), 1, - anon_sym_with, - ACTIONS(7177), 1, - anon_sym_DOT_DOT, - ACTIONS(7286), 1, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_SLASH, - ACTIONS(7290), 1, - anon_sym_GT_GT, - ACTIONS(7298), 1, - anon_sym_QMARK, - ACTIONS(7300), 1, - anon_sym_CARET, - ACTIONS(7302), 1, anon_sym_PIPE, - ACTIONS(7304), 1, anon_sym_AMP, - ACTIONS(7310), 1, - anon_sym_AMP_AMP, - ACTIONS(7312), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7314), 1, - anon_sym_QMARK_QMARK, - ACTIONS(7316), 1, - anon_sym_as, - ACTIONS(7318), 1, - anon_sym_is, - STATE(2613), 1, - sym_bracketed_argument_list, - STATE(3259), 1, - sym_argument_list, - ACTIONS(5287), 2, + anon_sym_GT_GT, + anon_sym_DOT, + ACTIONS(5004), 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(7282), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(7284), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7288), 2, + anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7296), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(7306), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7308), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5899), 4, + 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_by, - STATE(4664), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - [88792] = 13, + anon_sym_as, + anon_sym_is, + anon_sym_DASH_GT, + anon_sym_with, + [83954] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -602122,7 +596948,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - STATE(4665), 9, + STATE(4605), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -602132,7 +596958,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(4959), 11, + ACTIONS(5010), 11, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, @@ -602144,7 +596970,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT, - ACTIONS(4957), 28, + ACTIONS(5008), 28, sym_interpolation_close_brace, anon_sym_LBRACK, anon_sym_COLON, @@ -602173,7 +596999,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, anon_sym_DASH_GT, anon_sym_with, - [88877] = 14, + [84039] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -602194,9 +597020,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(7320), 1, - anon_sym_and, - STATE(4666), 9, + STATE(4606), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -602206,7 +597030,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(6069), 11, + ACTIONS(5014), 11, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, @@ -602218,13 +597042,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT, - ACTIONS(6067), 27, + ACTIONS(5012), 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, @@ -602238,15 +597061,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, - [88964] = 40, + [84124] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -602267,85 +597092,58 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4100), 1, - anon_sym_DOT, - ACTIONS(4102), 1, - anon_sym_DASH_GT, - ACTIONS(5264), 1, - anon_sym_LPAREN, - ACTIONS(5302), 1, - anon_sym_LBRACK, - ACTIONS(5304), 1, + STATE(4607), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + ACTIONS(5018), 11, + anon_sym_LT, + anon_sym_GT, + anon_sym_QMARK, anon_sym_BANG, - ACTIONS(6475), 1, - anon_sym_switch, - ACTIONS(6489), 1, - anon_sym_with, - ACTIONS(7081), 1, - anon_sym_as, - ACTIONS(7243), 1, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_SLASH, - ACTIONS(7247), 1, - anon_sym_GT_GT, - ACTIONS(7249), 1, - anon_sym_DOT_DOT, - ACTIONS(7253), 1, - anon_sym_AMP, - ACTIONS(7259), 1, - anon_sym_is, - ACTIONS(7263), 1, - anon_sym_CARET, - ACTIONS(7268), 1, anon_sym_PIPE, - ACTIONS(7270), 1, - anon_sym_AMP_AMP, - ACTIONS(7272), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7274), 1, - anon_sym_QMARK_QMARK, - ACTIONS(7322), 1, - anon_sym_QMARK, - STATE(2808), 1, - sym_bracketed_argument_list, - STATE(3487), 1, - sym_argument_list, - ACTIONS(5306), 2, + anon_sym_AMP, + anon_sym_GT_GT, + anon_sym_DOT, + ACTIONS(5016), 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(7239), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(7241), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7245), 2, + anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7251), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(7255), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7257), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5858), 4, - anon_sym_EQ_GT, - anon_sym_when, + anon_sym_switch, + anon_sym_DOT_DOT, anon_sym_and, anon_sym_or, - STATE(4667), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - [89103] = 13, + 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, + [84209] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -602366,7 +597164,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - STATE(4668), 9, + STATE(4608), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -602376,7 +597174,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5356), 11, + ACTIONS(5022), 11, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, @@ -602388,7 +597186,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT, - ACTIONS(5354), 28, + ACTIONS(5020), 28, sym_interpolation_close_brace, anon_sym_LBRACK, anon_sym_COLON, @@ -602417,7 +597215,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, anon_sym_DASH_GT, anon_sym_with, - [89188] = 35, + [84294] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -602438,80 +597236,58 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4443), 1, - anon_sym_DASH_GT, - ACTIONS(4533), 1, - anon_sym_DOT, - ACTIONS(6574), 1, - anon_sym_LPAREN, - ACTIONS(6619), 1, - anon_sym_LBRACK, - ACTIONS(6625), 1, + STATE(4609), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + ACTIONS(5026), 11, + anon_sym_LT, + anon_sym_GT, + anon_sym_QMARK, anon_sym_BANG, - ACTIONS(6649), 1, - anon_sym_switch, - ACTIONS(6659), 1, - anon_sym_as, - ACTIONS(6663), 1, - anon_sym_with, - ACTIONS(7009), 1, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_SLASH, - ACTIONS(7011), 1, - anon_sym_DOT_DOT, - ACTIONS(7219), 1, + anon_sym_PIPE, anon_sym_AMP, - ACTIONS(7223), 1, anon_sym_GT_GT, - ACTIONS(7235), 1, - anon_sym_is, - STATE(3173), 1, - sym_bracketed_argument_list, - STATE(4583), 1, - sym_argument_list, - ACTIONS(5664), 2, - anon_sym_QMARK, - anon_sym_PIPE, - ACTIONS(6627), 2, + anon_sym_DOT, + ACTIONS(5024), 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(7005), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(7007), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7211), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(7221), 2, + anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7225), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7227), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5660), 8, - sym_interpolation_close_brace, - anon_sym_COLON, - anon_sym_COMMA, - anon_sym_CARET, + 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(4669), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - [89317] = 40, + anon_sym_as, + anon_sym_is, + anon_sym_DASH_GT, + anon_sym_with, + [84379] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -602532,85 +597308,58 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4100), 1, - anon_sym_DOT, - ACTIONS(4102), 1, - anon_sym_DASH_GT, - ACTIONS(5264), 1, - anon_sym_LPAREN, - ACTIONS(5304), 1, - anon_sym_BANG, - ACTIONS(5573), 1, - anon_sym_LBRACK, - ACTIONS(6343), 1, - anon_sym_switch, - ACTIONS(6357), 1, - anon_sym_with, - ACTIONS(6813), 1, - anon_sym_as, - ACTIONS(7139), 1, + STATE(4610), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + ACTIONS(5030), 11, + anon_sym_LT, + anon_sym_GT, anon_sym_QMARK, - ACTIONS(7145), 1, + anon_sym_BANG, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_SLASH, - ACTIONS(7147), 1, - anon_sym_CARET, - ACTIONS(7149), 1, anon_sym_PIPE, - ACTIONS(7151), 1, anon_sym_AMP, - ACTIONS(7155), 1, anon_sym_GT_GT, - ACTIONS(7161), 1, - anon_sym_DOT_DOT, - ACTIONS(7163), 1, - anon_sym_AMP_AMP, - ACTIONS(7165), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7167), 1, - anon_sym_QMARK_QMARK, - ACTIONS(7169), 1, - anon_sym_is, - STATE(2485), 1, - sym_bracketed_argument_list, - STATE(3487), 1, - sym_argument_list, - ACTIONS(5306), 2, + anon_sym_DOT, + ACTIONS(5028), 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(7137), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(7141), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(7143), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7153), 2, + anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7157), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7159), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5899), 4, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_RBRACE, - STATE(4670), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - [89456] = 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, + [84464] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -602631,36 +597380,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4100), 1, - anon_sym_DOT, - ACTIONS(4102), 1, - anon_sym_DASH_GT, - ACTIONS(5264), 1, - anon_sym_LPAREN, - ACTIONS(5302), 1, - anon_sym_LBRACK, - ACTIONS(5304), 1, - anon_sym_BANG, - ACTIONS(7073), 1, - anon_sym_DOT_DOT, - STATE(2808), 1, - sym_bracketed_argument_list, - STATE(3487), 1, - sym_argument_list, - ACTIONS(5306), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5733), 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(4671), 9, + STATE(4611), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -602670,8 +597390,26 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5731), 20, + ACTIONS(5034), 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(5032), 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, @@ -602682,16 +597420,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, - [89559] = 36, + [84549] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -602712,81 +597452,58 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4443), 1, - anon_sym_DASH_GT, - ACTIONS(4533), 1, - anon_sym_DOT, - ACTIONS(6574), 1, - anon_sym_LPAREN, - ACTIONS(6619), 1, - anon_sym_LBRACK, - ACTIONS(6625), 1, + STATE(4612), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + ACTIONS(5038), 11, + anon_sym_LT, + anon_sym_GT, + anon_sym_QMARK, anon_sym_BANG, - ACTIONS(6649), 1, - anon_sym_switch, - ACTIONS(6659), 1, - anon_sym_as, - ACTIONS(6663), 1, - anon_sym_with, - ACTIONS(7009), 1, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_SLASH, - ACTIONS(7011), 1, - anon_sym_DOT_DOT, - ACTIONS(7215), 1, - anon_sym_CARET, - ACTIONS(7219), 1, + anon_sym_PIPE, anon_sym_AMP, - ACTIONS(7223), 1, anon_sym_GT_GT, - ACTIONS(7235), 1, - anon_sym_is, - STATE(3173), 1, - sym_bracketed_argument_list, - STATE(4583), 1, - sym_argument_list, - ACTIONS(5664), 2, - anon_sym_QMARK, - anon_sym_PIPE, - ACTIONS(6627), 2, + anon_sym_DOT, + ACTIONS(5036), 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(7005), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(7007), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7211), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(7221), 2, + anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7225), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7227), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5660), 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, anon_sym_into, - STATE(4672), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - [89690] = 22, + anon_sym_as, + anon_sym_is, + anon_sym_DASH_GT, + anon_sym_with, + [84634] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -602807,36 +597524,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4100), 1, - anon_sym_DOT, - ACTIONS(4102), 1, - anon_sym_DASH_GT, - ACTIONS(5264), 1, - anon_sym_LPAREN, - ACTIONS(5304), 1, - anon_sym_BANG, - ACTIONS(5573), 1, - anon_sym_LBRACK, - ACTIONS(7189), 1, - anon_sym_DOT_DOT, - STATE(2485), 1, - sym_bracketed_argument_list, - STATE(3487), 1, - sym_argument_list, - ACTIONS(5306), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1223), 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(4673), 9, + STATE(4613), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -602846,8 +597534,26 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(1221), 20, - anon_sym_SEMI, + ACTIONS(2129), 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(2127), 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, @@ -602858,16 +597564,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, - [89793] = 34, + [84719] = 21, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -602888,69 +597596,33 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4443), 1, - anon_sym_DASH_GT, - ACTIONS(4533), 1, - anon_sym_DOT, - ACTIONS(6574), 1, - anon_sym_LPAREN, - ACTIONS(6619), 1, - anon_sym_LBRACK, - ACTIONS(6625), 1, - anon_sym_BANG, - ACTIONS(6649), 1, - anon_sym_switch, - ACTIONS(6659), 1, - anon_sym_as, - ACTIONS(6663), 1, - anon_sym_with, - ACTIONS(7009), 1, - anon_sym_SLASH, - ACTIONS(7011), 1, - anon_sym_DOT_DOT, - ACTIONS(7223), 1, - anon_sym_GT_GT, - ACTIONS(7235), 1, - anon_sym_is, - STATE(3173), 1, - sym_bracketed_argument_list, - STATE(4583), 1, - sym_argument_list, - ACTIONS(6627), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(7005), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(7007), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(7211), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(7221), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - ACTIONS(7225), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(7227), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(5664), 3, - anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_AMP, - ACTIONS(5660), 8, - 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_into, - STATE(4674), 9, + ACTIONS(25), 1, + sym__identifier_token, + STATE(2168), 1, + sym__reserved_identifier, + STATE(2170), 1, + sym_generic_name, + STATE(4370), 1, + sym_identifier, + STATE(5784), 1, + sym_attribute_target_specifier, + STATE(6503), 1, + sym__name, + STATE(7014), 1, + sym_attribute, + STATE(4068), 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(4614), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -602960,7 +597632,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [89920] = 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, + [84820] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -602981,57 +597676,75 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4443), 1, - anon_sym_DASH_GT, - ACTIONS(4533), 1, + ACTIONS(4042), 1, anon_sym_DOT, - ACTIONS(6574), 1, + ACTIONS(4044), 1, + anon_sym_DASH_GT, + ACTIONS(5257), 1, anon_sym_LPAREN, - ACTIONS(6619), 1, - anon_sym_LBRACK, - ACTIONS(6625), 1, + ACTIONS(5302), 1, anon_sym_BANG, - ACTIONS(6649), 1, + ACTIONS(5549), 1, + anon_sym_LBRACK, + ACTIONS(6355), 1, anon_sym_switch, - ACTIONS(6659), 1, - anon_sym_as, - ACTIONS(6663), 1, + ACTIONS(6369), 1, anon_sym_with, - ACTIONS(7009), 1, + ACTIONS(6811), 1, + anon_sym_as, + ACTIONS(6813), 1, + anon_sym_is, + ACTIONS(6985), 1, anon_sym_SLASH, - ACTIONS(7011), 1, - anon_sym_DOT_DOT, - ACTIONS(7223), 1, + ACTIONS(6989), 1, anon_sym_GT_GT, - ACTIONS(7235), 1, - anon_sym_is, - STATE(3173), 1, + ACTIONS(6991), 1, + anon_sym_DOT_DOT, + ACTIONS(7099), 1, + anon_sym_QMARK, + ACTIONS(7101), 1, + anon_sym_CARET, + ACTIONS(7103), 1, + anon_sym_PIPE, + ACTIONS(7105), 1, + anon_sym_AMP, + ACTIONS(7111), 1, + anon_sym_AMP_AMP, + ACTIONS(7113), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7115), 1, + anon_sym_QMARK_QMARK, + STATE(2467), 1, sym_bracketed_argument_list, - STATE(4583), 1, + STATE(3381), 1, sym_argument_list, - ACTIONS(6627), 2, + ACTIONS(5304), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7005), 2, + ACTIONS(6981), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7007), 2, + ACTIONS(6983), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7211), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(7221), 2, + ACTIONS(6987), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7227), 2, + ACTIONS(7097), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(7107), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(7109), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5664), 3, - anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_AMP, - STATE(4675), 9, + ACTIONS(5801), 4, + anon_sym_SEMI, + aux_sym_preproc_if_token3, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + STATE(4615), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -603041,18 +597754,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5660), 10, - sym_interpolation_close_brace, - anon_sym_COLON, - anon_sym_COMMA, - 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, - [90045] = 22, + [84959] = 22, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -603073,26 +597775,26 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4100), 1, + ACTIONS(4042), 1, anon_sym_DOT, - ACTIONS(4102), 1, + ACTIONS(4044), 1, anon_sym_DASH_GT, - ACTIONS(5264), 1, + ACTIONS(5257), 1, anon_sym_LPAREN, ACTIONS(5302), 1, - anon_sym_LBRACK, - ACTIONS(5304), 1, anon_sym_BANG, - ACTIONS(7249), 1, + ACTIONS(5549), 1, + anon_sym_LBRACK, + ACTIONS(7253), 1, anon_sym_DOT_DOT, - STATE(2808), 1, + STATE(2467), 1, sym_bracketed_argument_list, - STATE(3487), 1, + STATE(3381), 1, sym_argument_list, - ACTIONS(5306), 2, + ACTIONS(5304), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5733), 9, + ACTIONS(1161), 9, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, @@ -603102,7 +597804,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_AMP, anon_sym_GT_GT, - STATE(4676), 9, + STATE(4616), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -603112,7 +597814,11 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5731), 20, + ACTIONS(1147), 20, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_STAR, anon_sym_PERCENT, anon_sym_CARET, @@ -603122,18 +597828,14 @@ 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, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_QMARK_QMARK, anon_sym_as, anon_sym_is, anon_sym_with, - [90148] = 37, + [85062] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -603154,82 +597856,58 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4443), 1, - anon_sym_DASH_GT, - ACTIONS(4533), 1, - anon_sym_DOT, - ACTIONS(5664), 1, + STATE(4617), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + ACTIONS(5422), 11, + anon_sym_LT, + anon_sym_GT, anon_sym_QMARK, - ACTIONS(6574), 1, - anon_sym_LPAREN, - ACTIONS(6619), 1, - anon_sym_LBRACK, - ACTIONS(6625), 1, anon_sym_BANG, - ACTIONS(6649), 1, - anon_sym_switch, - ACTIONS(6659), 1, - anon_sym_as, - ACTIONS(6663), 1, - anon_sym_with, - ACTIONS(7009), 1, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_SLASH, - ACTIONS(7011), 1, - anon_sym_DOT_DOT, - ACTIONS(7215), 1, - anon_sym_CARET, - ACTIONS(7217), 1, anon_sym_PIPE, - ACTIONS(7219), 1, anon_sym_AMP, - ACTIONS(7223), 1, anon_sym_GT_GT, - ACTIONS(7235), 1, - anon_sym_is, - STATE(3173), 1, - sym_bracketed_argument_list, - STATE(4583), 1, - sym_argument_list, - ACTIONS(6627), 2, + anon_sym_DOT, + ACTIONS(5420), 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(7005), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(7007), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7211), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(7221), 2, + anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7225), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7227), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5660), 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, anon_sym_into, - 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, - [90281] = 38, + anon_sym_as, + anon_sym_is, + anon_sym_DASH_GT, + anon_sym_with, + [85147] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -603250,73 +597928,75 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4443), 1, - anon_sym_DASH_GT, - ACTIONS(4533), 1, + ACTIONS(4042), 1, anon_sym_DOT, - ACTIONS(5664), 1, - anon_sym_QMARK, - ACTIONS(6574), 1, + ACTIONS(4044), 1, + anon_sym_DASH_GT, + ACTIONS(5257), 1, anon_sym_LPAREN, - ACTIONS(6619), 1, - anon_sym_LBRACK, - ACTIONS(6625), 1, + ACTIONS(5302), 1, anon_sym_BANG, - ACTIONS(6649), 1, + ACTIONS(5549), 1, + anon_sym_LBRACK, + ACTIONS(6355), 1, anon_sym_switch, - ACTIONS(6659), 1, - anon_sym_as, - ACTIONS(6663), 1, + ACTIONS(6369), 1, anon_sym_with, - ACTIONS(7009), 1, + ACTIONS(6811), 1, + anon_sym_as, + ACTIONS(7231), 1, + anon_sym_QMARK, + ACTIONS(7237), 1, anon_sym_SLASH, - ACTIONS(7011), 1, - anon_sym_DOT_DOT, - ACTIONS(7215), 1, + ACTIONS(7239), 1, anon_sym_CARET, - ACTIONS(7217), 1, + ACTIONS(7241), 1, anon_sym_PIPE, - ACTIONS(7219), 1, + ACTIONS(7243), 1, anon_sym_AMP, - ACTIONS(7223), 1, + ACTIONS(7247), 1, anon_sym_GT_GT, - ACTIONS(7229), 1, + ACTIONS(7253), 1, + anon_sym_DOT_DOT, + ACTIONS(7255), 1, anon_sym_AMP_AMP, - ACTIONS(7235), 1, + ACTIONS(7257), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7259), 1, + anon_sym_QMARK_QMARK, + ACTIONS(7261), 1, anon_sym_is, - STATE(3173), 1, + STATE(2467), 1, sym_bracketed_argument_list, - STATE(4583), 1, + STATE(3381), 1, sym_argument_list, - ACTIONS(6627), 2, + ACTIONS(5304), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7005), 2, + ACTIONS(7229), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(7233), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7007), 2, + ACTIONS(7235), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7211), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(7221), 2, + ACTIONS(7245), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7225), 2, + ACTIONS(7249), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7227), 2, + ACTIONS(7251), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5660), 6, - sym_interpolation_close_brace, - anon_sym_COLON, + ACTIONS(5849), 4, anon_sym_COMMA, - anon_sym_PIPE_PIPE, - anon_sym_QMARK_QMARK, - anon_sym_into, - STATE(4678), 9, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_RBRACE, + STATE(4618), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -603326,7 +598006,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [90416] = 13, + [85286] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -603347,7 +598027,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - STATE(4679), 9, + ACTIONS(7279), 1, + anon_sym_into, + STATE(4623), 1, + aux_sym__query_body_repeat2, + STATE(4619), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -603357,7 +598041,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5206), 11, + ACTIONS(5881), 11, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, @@ -603369,12 +598053,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT, - ACTIONS(5204), 28, - sym_interpolation_close_brace, + ACTIONS(5879), 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, @@ -603388,17 +598073,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_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, - [90501] = 40, + [85375] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -603419,75 +598101,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4443), 1, - anon_sym_DASH_GT, - ACTIONS(4533), 1, - anon_sym_DOT, - ACTIONS(5664), 1, - anon_sym_QMARK, - ACTIONS(6574), 1, - anon_sym_LPAREN, - ACTIONS(6619), 1, - anon_sym_LBRACK, - ACTIONS(6625), 1, - anon_sym_BANG, - ACTIONS(6649), 1, - anon_sym_switch, - ACTIONS(6659), 1, - anon_sym_as, - ACTIONS(6663), 1, - anon_sym_with, - ACTIONS(7009), 1, - anon_sym_SLASH, - ACTIONS(7011), 1, - anon_sym_DOT_DOT, - ACTIONS(7215), 1, - anon_sym_CARET, - ACTIONS(7217), 1, - anon_sym_PIPE, - ACTIONS(7219), 1, - anon_sym_AMP, - ACTIONS(7223), 1, - anon_sym_GT_GT, - ACTIONS(7229), 1, - anon_sym_AMP_AMP, - ACTIONS(7231), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7233), 1, - anon_sym_QMARK_QMARK, - ACTIONS(7235), 1, - anon_sym_is, - STATE(3173), 1, - sym_bracketed_argument_list, - STATE(4583), 1, - sym_argument_list, - ACTIONS(6627), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(7005), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(7007), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(7211), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(7221), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - ACTIONS(7225), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(7227), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(5660), 4, - sym_interpolation_close_brace, - anon_sym_COLON, - anon_sym_COMMA, + ACTIONS(7279), 1, anon_sym_into, - STATE(4680), 9, + STATE(4624), 1, + aux_sym__query_body_repeat2, + STATE(4620), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -603497,205 +598115,46 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [90640] = 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(4100), 1, - anon_sym_DOT, - ACTIONS(4102), 1, - anon_sym_DASH_GT, - ACTIONS(5264), 1, - anon_sym_LPAREN, - ACTIONS(5302), 1, - anon_sym_LBRACK, - ACTIONS(5304), 1, + ACTIONS(5881), 11, + anon_sym_LT, + anon_sym_GT, + anon_sym_QMARK, anon_sym_BANG, - ACTIONS(6475), 1, - anon_sym_switch, - ACTIONS(6489), 1, - anon_sym_with, - ACTIONS(7081), 1, - anon_sym_as, - ACTIONS(7243), 1, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_SLASH, - ACTIONS(7247), 1, - anon_sym_GT_GT, - ACTIONS(7249), 1, - anon_sym_DOT_DOT, - ACTIONS(7253), 1, - anon_sym_AMP, - ACTIONS(7259), 1, - anon_sym_is, - ACTIONS(7263), 1, - anon_sym_CARET, - ACTIONS(7268), 1, anon_sym_PIPE, - ACTIONS(7270), 1, - anon_sym_AMP_AMP, - ACTIONS(7272), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7274), 1, - anon_sym_QMARK_QMARK, - ACTIONS(7322), 1, - anon_sym_QMARK, - STATE(2808), 1, - sym_bracketed_argument_list, - STATE(3487), 1, - sym_argument_list, - ACTIONS(5306), 2, + anon_sym_AMP, + anon_sym_GT_GT, + anon_sym_DOT, + ACTIONS(5879), 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, - ACTIONS(7239), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(7241), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7245), 2, + anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7251), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(7255), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7257), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5864), 4, - anon_sym_EQ_GT, - anon_sym_when, - anon_sym_and, - anon_sym_or, - STATE(4681), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - [90779] = 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(4100), 1, - anon_sym_DOT, - ACTIONS(4102), 1, - anon_sym_DASH_GT, - ACTIONS(5264), 1, - anon_sym_LPAREN, - ACTIONS(5302), 1, - anon_sym_LBRACK, - ACTIONS(5304), 1, - anon_sym_BANG, - ACTIONS(6475), 1, anon_sym_switch, - ACTIONS(6489), 1, - anon_sym_with, - ACTIONS(7081), 1, - anon_sym_as, - ACTIONS(7243), 1, - anon_sym_SLASH, - ACTIONS(7247), 1, - anon_sym_GT_GT, - ACTIONS(7249), 1, anon_sym_DOT_DOT, - ACTIONS(7253), 1, - anon_sym_AMP, - ACTIONS(7259), 1, - anon_sym_is, - ACTIONS(7263), 1, - anon_sym_CARET, - ACTIONS(7268), 1, - anon_sym_PIPE, - ACTIONS(7270), 1, anon_sym_AMP_AMP, - ACTIONS(7272), 1, anon_sym_PIPE_PIPE, - ACTIONS(7274), 1, anon_sym_QMARK_QMARK, - ACTIONS(7322), 1, - anon_sym_QMARK, - STATE(2808), 1, - sym_bracketed_argument_list, - STATE(3487), 1, - sym_argument_list, - ACTIONS(5306), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(7239), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(7241), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(7245), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - ACTIONS(7251), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(7255), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(7257), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(5777), 4, - anon_sym_EQ_GT, - anon_sym_when, - anon_sym_and, - anon_sym_or, - STATE(4682), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - [90918] = 40, + anon_sym_as, + anon_sym_is, + anon_sym_DASH_GT, + anon_sym_with, + [85464] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -603716,75 +598175,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4100), 1, - anon_sym_DOT, - ACTIONS(4102), 1, - anon_sym_DASH_GT, - ACTIONS(5264), 1, - anon_sym_LPAREN, - ACTIONS(5302), 1, - anon_sym_LBRACK, - ACTIONS(5304), 1, - anon_sym_BANG, - ACTIONS(6475), 1, - anon_sym_switch, - ACTIONS(6489), 1, - anon_sym_with, - ACTIONS(7081), 1, - anon_sym_as, - ACTIONS(7243), 1, - anon_sym_SLASH, - ACTIONS(7247), 1, - anon_sym_GT_GT, - ACTIONS(7249), 1, - anon_sym_DOT_DOT, - ACTIONS(7253), 1, - anon_sym_AMP, - ACTIONS(7259), 1, - anon_sym_is, - ACTIONS(7263), 1, - anon_sym_CARET, - ACTIONS(7268), 1, - anon_sym_PIPE, - ACTIONS(7270), 1, - anon_sym_AMP_AMP, - ACTIONS(7272), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7274), 1, - anon_sym_QMARK_QMARK, - ACTIONS(7322), 1, - anon_sym_QMARK, - STATE(2808), 1, - sym_bracketed_argument_list, - STATE(3487), 1, - sym_argument_list, - ACTIONS(5306), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(7239), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(7241), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(7245), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - ACTIONS(7251), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(7255), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(7257), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(5072), 4, - anon_sym_EQ_GT, - anon_sym_when, - anon_sym_and, - anon_sym_or, - STATE(4683), 9, + STATE(4621), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -603794,106 +598185,48 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [91057] = 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(4100), 1, - anon_sym_DOT, - ACTIONS(4102), 1, - anon_sym_DASH_GT, - ACTIONS(5264), 1, - anon_sym_LPAREN, - ACTIONS(5302), 1, - anon_sym_LBRACK, - ACTIONS(5304), 1, + ACTIONS(5046), 11, + anon_sym_LT, + anon_sym_GT, + anon_sym_QMARK, anon_sym_BANG, - ACTIONS(6475), 1, - anon_sym_switch, - ACTIONS(6489), 1, - anon_sym_with, - ACTIONS(7081), 1, - anon_sym_as, - ACTIONS(7243), 1, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_SLASH, - ACTIONS(7247), 1, - anon_sym_GT_GT, - ACTIONS(7249), 1, - anon_sym_DOT_DOT, - ACTIONS(7253), 1, - anon_sym_AMP, - ACTIONS(7259), 1, - anon_sym_is, - ACTIONS(7263), 1, - anon_sym_CARET, - ACTIONS(7268), 1, anon_sym_PIPE, - ACTIONS(7270), 1, - anon_sym_AMP_AMP, - ACTIONS(7272), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7274), 1, - anon_sym_QMARK_QMARK, - ACTIONS(7322), 1, - anon_sym_QMARK, - STATE(2808), 1, - sym_bracketed_argument_list, - STATE(3487), 1, - sym_argument_list, - ACTIONS(5306), 2, + anon_sym_AMP, + anon_sym_GT_GT, + anon_sym_DOT, + ACTIONS(5044), 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(7239), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(7241), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7245), 2, + anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7251), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(7255), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7257), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5882), 4, - anon_sym_EQ_GT, - anon_sym_when, + anon_sym_switch, + anon_sym_DOT_DOT, anon_sym_and, anon_sym_or, - STATE(4684), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - [91196] = 24, + 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, + [85549] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -603914,40 +598247,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4100), 1, - anon_sym_DOT, - ACTIONS(4102), 1, - anon_sym_DASH_GT, - ACTIONS(5264), 1, - anon_sym_LPAREN, - ACTIONS(5302), 1, - anon_sym_LBRACK, - ACTIONS(5304), 1, - anon_sym_BANG, - ACTIONS(6475), 1, - anon_sym_switch, - ACTIONS(6489), 1, - anon_sym_with, - ACTIONS(7249), 1, - anon_sym_DOT_DOT, - STATE(2808), 1, - sym_bracketed_argument_list, - STATE(3487), 1, - sym_argument_list, - ACTIONS(5306), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5664), 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(4685), 9, + STATE(4622), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -603957,7 +598257,26 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5660), 18, + ACTIONS(5050), 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(5048), 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, @@ -603967,16 +598286,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_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, anon_sym_as, anon_sym_is, - [91303] = 13, + anon_sym_DASH_GT, + anon_sym_with, + [85634] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -603997,7 +598319,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - STATE(4686), 9, + ACTIONS(7281), 1, + anon_sym_into, + STATE(4623), 10, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -604007,7 +598331,8 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5104), 11, + aux_sym__query_body_repeat2, + ACTIONS(5953), 11, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, @@ -604019,12 +598344,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT, - ACTIONS(5102), 28, - sym_interpolation_close_brace, + ACTIONS(5951), 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, @@ -604038,17 +598364,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_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, - [91388] = 13, + [85721] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -604069,7 +598392,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - STATE(4687), 9, + ACTIONS(7279), 1, + anon_sym_into, + STATE(4623), 1, + aux_sym__query_body_repeat2, + STATE(4624), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -604079,7 +598406,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5198), 11, + ACTIONS(5960), 11, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, @@ -604091,12 +598418,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT, - ACTIONS(5196), 28, - sym_interpolation_close_brace, + ACTIONS(5958), 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, @@ -604110,17 +598438,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_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, - [91473] = 40, + [85810] = 29, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -604141,75 +598466,49 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4100), 1, + ACTIONS(4042), 1, anon_sym_DOT, - ACTIONS(4102), 1, + ACTIONS(4044), 1, anon_sym_DASH_GT, - ACTIONS(5264), 1, + ACTIONS(5257), 1, anon_sym_LPAREN, ACTIONS(5302), 1, - anon_sym_LBRACK, - ACTIONS(5304), 1, anon_sym_BANG, - ACTIONS(6475), 1, + ACTIONS(5549), 1, + anon_sym_LBRACK, + ACTIONS(6355), 1, anon_sym_switch, - ACTIONS(6489), 1, + ACTIONS(6369), 1, anon_sym_with, - ACTIONS(7081), 1, - anon_sym_as, - ACTIONS(7243), 1, + ACTIONS(7237), 1, anon_sym_SLASH, ACTIONS(7247), 1, anon_sym_GT_GT, - ACTIONS(7249), 1, - anon_sym_DOT_DOT, ACTIONS(7253), 1, - anon_sym_AMP, - ACTIONS(7259), 1, - anon_sym_is, - ACTIONS(7263), 1, - anon_sym_CARET, - ACTIONS(7268), 1, - anon_sym_PIPE, - ACTIONS(7270), 1, - anon_sym_AMP_AMP, - ACTIONS(7272), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7274), 1, - anon_sym_QMARK_QMARK, - ACTIONS(7322), 1, - anon_sym_QMARK, - STATE(2808), 1, + anon_sym_DOT_DOT, + STATE(2467), 1, sym_bracketed_argument_list, - STATE(3487), 1, + STATE(3381), 1, sym_argument_list, - ACTIONS(5306), 2, + ACTIONS(5304), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7239), 2, + ACTIONS(7233), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7241), 2, + ACTIONS(7235), 2, anon_sym_STAR, anon_sym_PERCENT, ACTIONS(7245), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7251), 2, + ACTIONS(5739), 5, anon_sym_LT, anon_sym_GT, - ACTIONS(7255), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(7257), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(5899), 4, - anon_sym_EQ_GT, - anon_sym_when, - anon_sym_and, - anon_sym_or, - STATE(4688), 9, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_AMP, + STATE(4625), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -604219,7 +598518,22 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [91612] = 22, + ACTIONS(5737), 14, + 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_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, + anon_sym_as, + anon_sym_is, + [85927] = 26, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -604240,36 +598554,44 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4100), 1, + ACTIONS(4042), 1, anon_sym_DOT, - ACTIONS(4102), 1, + ACTIONS(4044), 1, anon_sym_DASH_GT, - ACTIONS(5264), 1, + ACTIONS(5257), 1, anon_sym_LPAREN, - ACTIONS(5304), 1, + ACTIONS(5302), 1, anon_sym_BANG, - ACTIONS(5573), 1, + ACTIONS(5549), 1, anon_sym_LBRACK, - ACTIONS(7035), 1, + ACTIONS(6355), 1, + anon_sym_switch, + ACTIONS(6369), 1, + anon_sym_with, + ACTIONS(7237), 1, + anon_sym_SLASH, + ACTIONS(7253), 1, anon_sym_DOT_DOT, - STATE(2485), 1, + STATE(2467), 1, sym_bracketed_argument_list, - STATE(3487), 1, + STATE(3381), 1, sym_argument_list, - ACTIONS(5306), 2, + ACTIONS(5304), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5733), 9, + ACTIONS(7235), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(5739), 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(4689), 9, + STATE(4626), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -604279,13 +598601,11 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5731), 20, - anon_sym_COLON, + ACTIONS(5737), 16, 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, @@ -604293,14 +598613,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_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_QMARK_QMARK, anon_sym_as, anon_sym_is, - anon_sym_with, - [91715] = 22, + [86038] = 24, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -604321,26 +598639,30 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4100), 1, + ACTIONS(4042), 1, anon_sym_DOT, - ACTIONS(4102), 1, + ACTIONS(4044), 1, anon_sym_DASH_GT, - ACTIONS(5264), 1, + ACTIONS(5257), 1, anon_sym_LPAREN, ACTIONS(5302), 1, - anon_sym_LBRACK, - ACTIONS(5304), 1, anon_sym_BANG, - ACTIONS(7249), 1, + ACTIONS(5549), 1, + anon_sym_LBRACK, + ACTIONS(6355), 1, + anon_sym_switch, + ACTIONS(6369), 1, + anon_sym_with, + ACTIONS(7253), 1, anon_sym_DOT_DOT, - STATE(2808), 1, + STATE(2467), 1, sym_bracketed_argument_list, - STATE(3487), 1, + STATE(3381), 1, sym_argument_list, - ACTIONS(5306), 2, + ACTIONS(5304), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1223), 9, + ACTIONS(5739), 9, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, @@ -604350,7 +598672,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_AMP, anon_sym_GT_GT, - STATE(4690), 9, + STATE(4627), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -604360,7 +598682,11 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(1221), 20, + ACTIONS(5737), 18, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_STAR, anon_sym_PERCENT, anon_sym_CARET, @@ -604370,18 +598696,12 @@ 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, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_QMARK_QMARK, anon_sym_as, anon_sym_is, - anon_sym_with, - [91818] = 40, + [86145] = 35, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -604402,75 +598722,70 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4075), 1, + ACTIONS(4042), 1, anon_sym_DOT, - ACTIONS(4077), 1, + ACTIONS(4044), 1, anon_sym_DASH_GT, - ACTIONS(5247), 1, + ACTIONS(5257), 1, anon_sym_LPAREN, - ACTIONS(5283), 1, - anon_sym_LBRACK, - ACTIONS(5285), 1, + ACTIONS(5302), 1, anon_sym_BANG, - ACTIONS(6147), 1, + ACTIONS(5549), 1, + anon_sym_LBRACK, + ACTIONS(6355), 1, anon_sym_switch, - ACTIONS(6161), 1, + ACTIONS(6369), 1, anon_sym_with, - ACTIONS(7326), 1, - anon_sym_QMARK, - ACTIONS(7332), 1, + ACTIONS(6811), 1, + anon_sym_as, + ACTIONS(7237), 1, anon_sym_SLASH, - ACTIONS(7334), 1, - anon_sym_CARET, - ACTIONS(7336), 1, - anon_sym_PIPE, - ACTIONS(7338), 1, + ACTIONS(7243), 1, anon_sym_AMP, - ACTIONS(7342), 1, + ACTIONS(7247), 1, anon_sym_GT_GT, - ACTIONS(7348), 1, + ACTIONS(7253), 1, anon_sym_DOT_DOT, - ACTIONS(7350), 1, - anon_sym_AMP_AMP, - ACTIONS(7352), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7354), 1, - anon_sym_QMARK_QMARK, - ACTIONS(7356), 1, - anon_sym_as, - ACTIONS(7358), 1, + ACTIONS(7261), 1, anon_sym_is, - STATE(2613), 1, + STATE(2467), 1, sym_bracketed_argument_list, - STATE(3259), 1, + STATE(3381), 1, sym_argument_list, - ACTIONS(5287), 2, + ACTIONS(5304), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7324), 2, + ACTIONS(5739), 2, + anon_sym_QMARK, + anon_sym_PIPE, + ACTIONS(7229), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7328), 2, + ACTIONS(7233), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7330), 2, + ACTIONS(7235), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7340), 2, + ACTIONS(7245), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7344), 2, + ACTIONS(7249), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7346), 2, + ACTIONS(7251), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5858), 4, - anon_sym_and, - anon_sym_or, - anon_sym_into, - anon_sym_equals, - STATE(4691), 9, + ACTIONS(5737), 8, + 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, + STATE(4628), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -604480,7 +598795,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [91957] = 35, + [86274] = 36, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -604501,70 +598816,71 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4075), 1, + ACTIONS(4042), 1, anon_sym_DOT, - ACTIONS(4077), 1, + ACTIONS(4044), 1, anon_sym_DASH_GT, - ACTIONS(5247), 1, + ACTIONS(5257), 1, anon_sym_LPAREN, - ACTIONS(5283), 1, - anon_sym_LBRACK, - ACTIONS(5285), 1, + ACTIONS(5302), 1, anon_sym_BANG, - ACTIONS(6147), 1, + ACTIONS(5549), 1, + anon_sym_LBRACK, + ACTIONS(6355), 1, anon_sym_switch, - ACTIONS(6161), 1, + ACTIONS(6369), 1, anon_sym_with, - ACTIONS(7332), 1, + ACTIONS(6811), 1, + anon_sym_as, + ACTIONS(7237), 1, anon_sym_SLASH, - ACTIONS(7338), 1, + ACTIONS(7239), 1, + anon_sym_CARET, + ACTIONS(7243), 1, anon_sym_AMP, - ACTIONS(7342), 1, + ACTIONS(7247), 1, anon_sym_GT_GT, - ACTIONS(7348), 1, + ACTIONS(7253), 1, anon_sym_DOT_DOT, - ACTIONS(7356), 1, - anon_sym_as, - ACTIONS(7358), 1, + ACTIONS(7261), 1, anon_sym_is, - STATE(2613), 1, + STATE(2467), 1, sym_bracketed_argument_list, - STATE(3259), 1, + STATE(3381), 1, sym_argument_list, - ACTIONS(5287), 2, + ACTIONS(5304), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5664), 2, + ACTIONS(5739), 2, anon_sym_QMARK, anon_sym_PIPE, - ACTIONS(7324), 2, + ACTIONS(7229), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7328), 2, + ACTIONS(7233), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7330), 2, + ACTIONS(7235), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7340), 2, + ACTIONS(7245), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7344), 2, + ACTIONS(7249), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7346), 2, + ACTIONS(7251), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5660), 8, - anon_sym_CARET, - anon_sym_and, - anon_sym_or, + ACTIONS(5737), 7, + 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, - anon_sym_equals, - STATE(4692), 9, + STATE(4629), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -604574,7 +598890,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [92086] = 36, + [86405] = 34, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -604595,71 +598911,69 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4075), 1, + ACTIONS(4042), 1, anon_sym_DOT, - ACTIONS(4077), 1, + ACTIONS(4044), 1, anon_sym_DASH_GT, - ACTIONS(5247), 1, + ACTIONS(5257), 1, anon_sym_LPAREN, - ACTIONS(5283), 1, - anon_sym_LBRACK, - ACTIONS(5285), 1, + ACTIONS(5302), 1, anon_sym_BANG, - ACTIONS(6147), 1, + ACTIONS(5549), 1, + anon_sym_LBRACK, + ACTIONS(6355), 1, anon_sym_switch, - ACTIONS(6161), 1, + ACTIONS(6369), 1, anon_sym_with, - ACTIONS(7332), 1, + ACTIONS(6811), 1, + anon_sym_as, + ACTIONS(7237), 1, anon_sym_SLASH, - ACTIONS(7334), 1, - anon_sym_CARET, - ACTIONS(7338), 1, - anon_sym_AMP, - ACTIONS(7342), 1, + ACTIONS(7247), 1, anon_sym_GT_GT, - ACTIONS(7348), 1, + ACTIONS(7253), 1, anon_sym_DOT_DOT, - ACTIONS(7356), 1, - anon_sym_as, - ACTIONS(7358), 1, + ACTIONS(7261), 1, anon_sym_is, - STATE(2613), 1, + STATE(2467), 1, sym_bracketed_argument_list, - STATE(3259), 1, + STATE(3381), 1, sym_argument_list, - ACTIONS(5287), 2, + ACTIONS(5304), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5664), 2, - anon_sym_QMARK, - anon_sym_PIPE, - ACTIONS(7324), 2, + ACTIONS(7229), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7328), 2, + ACTIONS(7233), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7330), 2, + ACTIONS(7235), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7340), 2, + ACTIONS(7245), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7344), 2, + ACTIONS(7249), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7346), 2, + ACTIONS(7251), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5660), 7, - anon_sym_and, - anon_sym_or, + ACTIONS(5739), 3, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_AMP, + ACTIONS(5737), 8, + 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, - anon_sym_equals, - STATE(4693), 9, + STATE(4630), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -604669,7 +598983,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [92217] = 34, + [86532] = 27, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -604690,69 +599004,45 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4075), 1, + ACTIONS(4042), 1, anon_sym_DOT, - ACTIONS(4077), 1, + ACTIONS(4044), 1, anon_sym_DASH_GT, - ACTIONS(5247), 1, + ACTIONS(5257), 1, anon_sym_LPAREN, - ACTIONS(5283), 1, - anon_sym_LBRACK, - ACTIONS(5285), 1, + ACTIONS(5302), 1, anon_sym_BANG, - ACTIONS(6147), 1, + ACTIONS(5549), 1, + anon_sym_LBRACK, + ACTIONS(6355), 1, anon_sym_switch, - ACTIONS(6161), 1, + ACTIONS(6369), 1, anon_sym_with, - ACTIONS(7332), 1, + ACTIONS(7237), 1, anon_sym_SLASH, - ACTIONS(7342), 1, - anon_sym_GT_GT, - ACTIONS(7348), 1, + ACTIONS(7253), 1, anon_sym_DOT_DOT, - ACTIONS(7356), 1, - anon_sym_as, - ACTIONS(7358), 1, - anon_sym_is, - STATE(2613), 1, + STATE(2467), 1, sym_bracketed_argument_list, - STATE(3259), 1, + STATE(3381), 1, sym_argument_list, - ACTIONS(5287), 2, + ACTIONS(5304), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7324), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(7328), 2, + ACTIONS(7233), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7330), 2, + ACTIONS(7235), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7340), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - ACTIONS(7344), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(7346), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(5664), 3, + ACTIONS(5739), 6, + anon_sym_LT, + anon_sym_GT, anon_sym_QMARK, anon_sym_PIPE, anon_sym_AMP, - ACTIONS(5660), 8, - anon_sym_CARET, - 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(4694), 9, + anon_sym_GT_GT, + STATE(4631), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -604762,7 +599052,24 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [92344] = 33, + ACTIONS(5737), 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, + [86645] = 33, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -604783,57 +599090,57 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4075), 1, + ACTIONS(4042), 1, anon_sym_DOT, - ACTIONS(4077), 1, + ACTIONS(4044), 1, anon_sym_DASH_GT, - ACTIONS(5247), 1, + ACTIONS(5257), 1, anon_sym_LPAREN, - ACTIONS(5283), 1, - anon_sym_LBRACK, - ACTIONS(5285), 1, + ACTIONS(5302), 1, anon_sym_BANG, - ACTIONS(6147), 1, + ACTIONS(5549), 1, + anon_sym_LBRACK, + ACTIONS(6355), 1, anon_sym_switch, - ACTIONS(6161), 1, + ACTIONS(6369), 1, anon_sym_with, - ACTIONS(7332), 1, + ACTIONS(6811), 1, + anon_sym_as, + ACTIONS(7237), 1, anon_sym_SLASH, - ACTIONS(7342), 1, + ACTIONS(7247), 1, anon_sym_GT_GT, - ACTIONS(7348), 1, + ACTIONS(7253), 1, anon_sym_DOT_DOT, - ACTIONS(7356), 1, - anon_sym_as, - ACTIONS(7358), 1, + ACTIONS(7261), 1, anon_sym_is, - STATE(2613), 1, + STATE(2467), 1, sym_bracketed_argument_list, - STATE(3259), 1, + STATE(3381), 1, sym_argument_list, - ACTIONS(5287), 2, + ACTIONS(5304), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7324), 2, + ACTIONS(7229), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7328), 2, + ACTIONS(7233), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7330), 2, + ACTIONS(7235), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7340), 2, + ACTIONS(7245), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7346), 2, + ACTIONS(7251), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5664), 3, + ACTIONS(5739), 3, anon_sym_QMARK, anon_sym_PIPE, anon_sym_AMP, - STATE(4695), 9, + STATE(4632), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -604843,18 +599150,18 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5660), 10, + ACTIONS(5737), 10, + 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, - anon_sym_into, - anon_sym_equals, - [92469] = 37, + [86770] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -604875,82 +599182,58 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4075), 1, - anon_sym_DOT, - ACTIONS(4077), 1, - anon_sym_DASH_GT, - ACTIONS(5247), 1, - anon_sym_LPAREN, - ACTIONS(5283), 1, - anon_sym_LBRACK, - ACTIONS(5285), 1, - anon_sym_BANG, - ACTIONS(5664), 1, + STATE(4633), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + ACTIONS(5054), 11, + anon_sym_LT, + anon_sym_GT, anon_sym_QMARK, - ACTIONS(6147), 1, - anon_sym_switch, - ACTIONS(6161), 1, - anon_sym_with, - ACTIONS(7332), 1, + anon_sym_BANG, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_SLASH, - ACTIONS(7334), 1, - anon_sym_CARET, - ACTIONS(7336), 1, anon_sym_PIPE, - ACTIONS(7338), 1, anon_sym_AMP, - ACTIONS(7342), 1, anon_sym_GT_GT, - ACTIONS(7348), 1, - anon_sym_DOT_DOT, - ACTIONS(7356), 1, - anon_sym_as, - ACTIONS(7358), 1, - anon_sym_is, - STATE(2613), 1, - sym_bracketed_argument_list, - STATE(3259), 1, - sym_argument_list, - ACTIONS(5287), 2, + anon_sym_DOT, + ACTIONS(5052), 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(7324), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(7328), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(7330), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7340), 2, + anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7344), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7346), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5660), 7, + 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, - STATE(4696), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - [92602] = 38, + anon_sym_as, + anon_sym_is, + anon_sym_DASH_GT, + anon_sym_with, + [86855] = 22, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -604971,83 +599254,67 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4075), 1, + ACTIONS(4042), 1, anon_sym_DOT, - ACTIONS(4077), 1, + ACTIONS(4044), 1, anon_sym_DASH_GT, - ACTIONS(5247), 1, + ACTIONS(5257), 1, anon_sym_LPAREN, - ACTIONS(5283), 1, - anon_sym_LBRACK, - ACTIONS(5285), 1, + ACTIONS(5302), 1, anon_sym_BANG, - ACTIONS(5664), 1, - anon_sym_QMARK, - ACTIONS(6147), 1, - anon_sym_switch, - ACTIONS(6161), 1, - anon_sym_with, - ACTIONS(7332), 1, - anon_sym_SLASH, - ACTIONS(7334), 1, - anon_sym_CARET, - ACTIONS(7336), 1, - anon_sym_PIPE, - ACTIONS(7338), 1, - anon_sym_AMP, - ACTIONS(7342), 1, - anon_sym_GT_GT, - ACTIONS(7348), 1, + ACTIONS(5549), 1, + anon_sym_LBRACK, + ACTIONS(7253), 1, anon_sym_DOT_DOT, - ACTIONS(7350), 1, - anon_sym_AMP_AMP, - ACTIONS(7356), 1, - anon_sym_as, - ACTIONS(7358), 1, - anon_sym_is, - STATE(2613), 1, + STATE(2467), 1, sym_bracketed_argument_list, - STATE(3259), 1, + STATE(3381), 1, sym_argument_list, - ACTIONS(5287), 2, + ACTIONS(5304), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7324), 2, + ACTIONS(5743), 9, anon_sym_LT, anon_sym_GT, - ACTIONS(7328), 2, + anon_sym_QMARK, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7330), 2, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT_GT, + STATE(4634), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + ACTIONS(5741), 20, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7340), 2, + anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7344), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7346), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5660), 6, - 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_equals, - STATE(4697), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - [92737] = 40, + anon_sym_as, + anon_sym_is, + anon_sym_with, + [86958] = 37, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -605068,75 +599335,72 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4075), 1, + ACTIONS(4042), 1, anon_sym_DOT, - ACTIONS(4077), 1, + ACTIONS(4044), 1, anon_sym_DASH_GT, - ACTIONS(5247), 1, + ACTIONS(5257), 1, anon_sym_LPAREN, - ACTIONS(5283), 1, - anon_sym_LBRACK, - ACTIONS(5285), 1, + ACTIONS(5302), 1, anon_sym_BANG, - ACTIONS(5664), 1, + ACTIONS(5549), 1, + anon_sym_LBRACK, + ACTIONS(5739), 1, anon_sym_QMARK, - ACTIONS(6147), 1, + ACTIONS(6355), 1, anon_sym_switch, - ACTIONS(6161), 1, + ACTIONS(6369), 1, anon_sym_with, - ACTIONS(7332), 1, + ACTIONS(6811), 1, + anon_sym_as, + ACTIONS(7237), 1, anon_sym_SLASH, - ACTIONS(7334), 1, + ACTIONS(7239), 1, anon_sym_CARET, - ACTIONS(7336), 1, + ACTIONS(7241), 1, anon_sym_PIPE, - ACTIONS(7338), 1, + ACTIONS(7243), 1, anon_sym_AMP, - ACTIONS(7342), 1, + ACTIONS(7247), 1, anon_sym_GT_GT, - ACTIONS(7348), 1, + ACTIONS(7253), 1, anon_sym_DOT_DOT, - ACTIONS(7350), 1, - anon_sym_AMP_AMP, - ACTIONS(7352), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7354), 1, - anon_sym_QMARK_QMARK, - ACTIONS(7356), 1, - anon_sym_as, - ACTIONS(7358), 1, + ACTIONS(7261), 1, anon_sym_is, - STATE(2613), 1, + STATE(2467), 1, sym_bracketed_argument_list, - STATE(3259), 1, + STATE(3381), 1, sym_argument_list, - ACTIONS(5287), 2, + ACTIONS(5304), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7324), 2, + ACTIONS(7229), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7328), 2, + ACTIONS(7233), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7330), 2, + ACTIONS(7235), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7340), 2, + ACTIONS(7245), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7344), 2, + ACTIONS(7249), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7346), 2, + ACTIONS(7251), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5660), 4, - anon_sym_and, - anon_sym_or, - anon_sym_into, - anon_sym_equals, - STATE(4698), 9, + ACTIONS(5737), 7, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, + STATE(4635), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -605146,7 +599410,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [92876] = 40, + [87091] = 38, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -605167,75 +599431,73 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4075), 1, + ACTIONS(4042), 1, anon_sym_DOT, - ACTIONS(4077), 1, + ACTIONS(4044), 1, anon_sym_DASH_GT, - ACTIONS(5247), 1, + ACTIONS(5257), 1, anon_sym_LPAREN, - ACTIONS(5283), 1, - anon_sym_LBRACK, - ACTIONS(5285), 1, + ACTIONS(5302), 1, anon_sym_BANG, - ACTIONS(6147), 1, + ACTIONS(5549), 1, + anon_sym_LBRACK, + ACTIONS(5739), 1, + anon_sym_QMARK, + ACTIONS(6355), 1, anon_sym_switch, - ACTIONS(6161), 1, + ACTIONS(6369), 1, anon_sym_with, - ACTIONS(7326), 1, - anon_sym_QMARK, - ACTIONS(7332), 1, + ACTIONS(6811), 1, + anon_sym_as, + ACTIONS(7237), 1, anon_sym_SLASH, - ACTIONS(7334), 1, + ACTIONS(7239), 1, anon_sym_CARET, - ACTIONS(7336), 1, + ACTIONS(7241), 1, anon_sym_PIPE, - ACTIONS(7338), 1, + ACTIONS(7243), 1, anon_sym_AMP, - ACTIONS(7342), 1, + ACTIONS(7247), 1, anon_sym_GT_GT, - ACTIONS(7348), 1, + ACTIONS(7253), 1, anon_sym_DOT_DOT, - ACTIONS(7350), 1, + ACTIONS(7255), 1, anon_sym_AMP_AMP, - ACTIONS(7352), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7354), 1, - anon_sym_QMARK_QMARK, - ACTIONS(7356), 1, - anon_sym_as, - ACTIONS(7358), 1, + ACTIONS(7261), 1, anon_sym_is, - STATE(2613), 1, + STATE(2467), 1, sym_bracketed_argument_list, - STATE(3259), 1, + STATE(3381), 1, sym_argument_list, - ACTIONS(5287), 2, + ACTIONS(5304), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7324), 2, + ACTIONS(7229), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7328), 2, + ACTIONS(7233), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7330), 2, + ACTIONS(7235), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7340), 2, + ACTIONS(7245), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7344), 2, + ACTIONS(7249), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7346), 2, + ACTIONS(7251), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5864), 4, - anon_sym_and, - anon_sym_or, - anon_sym_into, - anon_sym_equals, - STATE(4699), 9, + ACTIONS(5737), 6, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, + STATE(4636), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -605245,7 +599507,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [93015] = 40, + [87226] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -605266,75 +599528,75 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4075), 1, + ACTIONS(4042), 1, anon_sym_DOT, - ACTIONS(4077), 1, + ACTIONS(4044), 1, anon_sym_DASH_GT, - ACTIONS(5247), 1, + ACTIONS(5257), 1, anon_sym_LPAREN, - ACTIONS(5283), 1, - anon_sym_LBRACK, - ACTIONS(5285), 1, + ACTIONS(5302), 1, anon_sym_BANG, - ACTIONS(6147), 1, + ACTIONS(5549), 1, + anon_sym_LBRACK, + ACTIONS(5739), 1, + anon_sym_QMARK, + ACTIONS(6355), 1, anon_sym_switch, - ACTIONS(6161), 1, + ACTIONS(6369), 1, anon_sym_with, - ACTIONS(7326), 1, - anon_sym_QMARK, - ACTIONS(7332), 1, + ACTIONS(6811), 1, + anon_sym_as, + ACTIONS(7237), 1, anon_sym_SLASH, - ACTIONS(7334), 1, + ACTIONS(7239), 1, anon_sym_CARET, - ACTIONS(7336), 1, + ACTIONS(7241), 1, anon_sym_PIPE, - ACTIONS(7338), 1, + ACTIONS(7243), 1, anon_sym_AMP, - ACTIONS(7342), 1, + ACTIONS(7247), 1, anon_sym_GT_GT, - ACTIONS(7348), 1, + ACTIONS(7253), 1, anon_sym_DOT_DOT, - ACTIONS(7350), 1, + ACTIONS(7255), 1, anon_sym_AMP_AMP, - ACTIONS(7352), 1, + ACTIONS(7257), 1, anon_sym_PIPE_PIPE, - ACTIONS(7354), 1, + ACTIONS(7259), 1, anon_sym_QMARK_QMARK, - ACTIONS(7356), 1, - anon_sym_as, - ACTIONS(7358), 1, + ACTIONS(7261), 1, anon_sym_is, - STATE(2613), 1, + STATE(2467), 1, sym_bracketed_argument_list, - STATE(3259), 1, + STATE(3381), 1, sym_argument_list, - ACTIONS(5287), 2, + ACTIONS(5304), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7324), 2, + ACTIONS(7229), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7328), 2, + ACTIONS(7233), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7330), 2, + ACTIONS(7235), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7340), 2, + ACTIONS(7245), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7344), 2, + ACTIONS(7249), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7346), 2, + ACTIONS(7251), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5072), 4, - anon_sym_and, - anon_sym_or, - anon_sym_into, - anon_sym_equals, - STATE(4700), 9, + ACTIONS(5737), 4, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_RBRACE, + STATE(4637), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -605344,7 +599606,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [93154] = 40, + [87365] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -605365,85 +599627,58 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4075), 1, - anon_sym_DOT, - ACTIONS(4077), 1, - anon_sym_DASH_GT, - ACTIONS(5247), 1, - anon_sym_LPAREN, - ACTIONS(5283), 1, - anon_sym_LBRACK, - ACTIONS(5285), 1, - anon_sym_BANG, - ACTIONS(6147), 1, - anon_sym_switch, - ACTIONS(6161), 1, - anon_sym_with, - ACTIONS(7326), 1, + STATE(4638), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + ACTIONS(5058), 11, + anon_sym_LT, + anon_sym_GT, anon_sym_QMARK, - ACTIONS(7332), 1, + anon_sym_BANG, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_SLASH, - ACTIONS(7334), 1, - anon_sym_CARET, - ACTIONS(7336), 1, anon_sym_PIPE, - ACTIONS(7338), 1, anon_sym_AMP, - ACTIONS(7342), 1, anon_sym_GT_GT, - ACTIONS(7348), 1, - anon_sym_DOT_DOT, - ACTIONS(7350), 1, - anon_sym_AMP_AMP, - ACTIONS(7352), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7354), 1, - anon_sym_QMARK_QMARK, - ACTIONS(7356), 1, - anon_sym_as, - ACTIONS(7358), 1, - anon_sym_is, - STATE(2613), 1, - sym_bracketed_argument_list, - STATE(3259), 1, - sym_argument_list, - ACTIONS(5287), 2, + anon_sym_DOT, + ACTIONS(5056), 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(7324), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(7328), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(7330), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7340), 2, + anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7344), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7346), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5882), 4, + 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, - 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, - [93293] = 40, + anon_sym_as, + anon_sym_is, + anon_sym_DASH_GT, + anon_sym_with, + [87450] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -605464,85 +599699,58 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4075), 1, - anon_sym_DOT, - ACTIONS(4077), 1, - anon_sym_DASH_GT, - ACTIONS(5247), 1, - anon_sym_LPAREN, - ACTIONS(5283), 1, - anon_sym_LBRACK, - ACTIONS(5285), 1, - anon_sym_BANG, - ACTIONS(6147), 1, - anon_sym_switch, - ACTIONS(6161), 1, - anon_sym_with, - ACTIONS(7326), 1, + STATE(4639), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + ACTIONS(5190), 11, + anon_sym_LT, + anon_sym_GT, anon_sym_QMARK, - ACTIONS(7332), 1, + anon_sym_BANG, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_SLASH, - ACTIONS(7334), 1, - anon_sym_CARET, - ACTIONS(7336), 1, anon_sym_PIPE, - ACTIONS(7338), 1, anon_sym_AMP, - ACTIONS(7342), 1, anon_sym_GT_GT, - ACTIONS(7348), 1, - anon_sym_DOT_DOT, - ACTIONS(7350), 1, - anon_sym_AMP_AMP, - ACTIONS(7352), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7354), 1, - anon_sym_QMARK_QMARK, - ACTIONS(7356), 1, - anon_sym_as, - ACTIONS(7358), 1, - anon_sym_is, - STATE(2613), 1, - sym_bracketed_argument_list, - STATE(3259), 1, - sym_argument_list, - ACTIONS(5287), 2, + anon_sym_DOT, + ACTIONS(5188), 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(7324), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(7328), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(7330), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7340), 2, + anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7344), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7346), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5899), 4, + 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, - STATE(4702), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - [93432] = 21, + anon_sym_as, + anon_sym_is, + anon_sym_DASH_GT, + anon_sym_with, + [87535] = 27, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -605565,31 +599773,37 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, ACTIONS(25), 1, sym__identifier_token, - STATE(2175), 1, + ACTIONS(5166), 1, + anon_sym_LBRACK, + ACTIONS(5182), 1, + aux_sym_preproc_if_token1, + ACTIONS(7123), 1, + aux_sym_preproc_else_token1, + ACTIONS(7125), 1, + aux_sym_preproc_elif_token1, + ACTIONS(7284), 1, + aux_sym_preproc_if_token3, + STATE(2168), 1, sym__reserved_identifier, - STATE(2181), 1, - sym_generic_name, - STATE(4373), 1, + STATE(5783), 1, + aux_sym__class_declaration_initializer_repeat1, + STATE(5803), 1, + sym_attribute_list, + STATE(5961), 1, + sym__attribute_list, + STATE(6020), 1, + sym_preproc_if_in_attribute_list, + STATE(6525), 1, + sym_enum_member_declaration, + STATE(6717), 1, sym_identifier, - STATE(5791), 1, - sym_attribute_target_specifier, - STATE(6519), 1, - sym__name, - STATE(6909), 1, - sym_attribute, - STATE(4096), 3, - sym_alias_qualified_name, - sym__simple_name, - sym_qualified_name, - ACTIONS(1055), 7, - anon_sym_field, - anon_sym_event, - anon_sym_method, - anon_sym_param, - anon_sym_property, - anon_sym_return, - anon_sym_type, - STATE(4703), 9, + STATE(7392), 2, + sym_preproc_else_in_attribute_list, + sym_preproc_elif_in_attribute_list, + STATE(7480), 2, + sym_preproc_else_in_enum_member_declaration, + sym_preproc_elif_in_enum_member_declaration, + STATE(4640), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -605622,7 +599836,79 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [93533] = 40, + [87648] = 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(4641), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + ACTIONS(5062), 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(5060), 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, + [87733] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -605643,75 +599929,147 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4443), 1, + STATE(4642), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + ACTIONS(5066), 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(5064), 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(4533), 1, + anon_sym_with, + [87818] = 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(4042), 1, anon_sym_DOT, - ACTIONS(6574), 1, + ACTIONS(4044), 1, + anon_sym_DASH_GT, + ACTIONS(5257), 1, anon_sym_LPAREN, - ACTIONS(6619), 1, - anon_sym_LBRACK, - ACTIONS(6625), 1, + ACTIONS(5302), 1, anon_sym_BANG, - ACTIONS(6649), 1, + ACTIONS(5549), 1, + anon_sym_LBRACK, + ACTIONS(6355), 1, anon_sym_switch, - ACTIONS(6659), 1, - anon_sym_as, - ACTIONS(6663), 1, + ACTIONS(6369), 1, anon_sym_with, - ACTIONS(7009), 1, - anon_sym_SLASH, - ACTIONS(7011), 1, - anon_sym_DOT_DOT, - ACTIONS(7213), 1, + ACTIONS(6811), 1, + anon_sym_as, + ACTIONS(7231), 1, anon_sym_QMARK, - ACTIONS(7215), 1, + ACTIONS(7237), 1, + anon_sym_SLASH, + ACTIONS(7239), 1, anon_sym_CARET, - ACTIONS(7217), 1, + ACTIONS(7241), 1, anon_sym_PIPE, - ACTIONS(7219), 1, + ACTIONS(7243), 1, anon_sym_AMP, - ACTIONS(7223), 1, + ACTIONS(7247), 1, anon_sym_GT_GT, - ACTIONS(7229), 1, + ACTIONS(7253), 1, + anon_sym_DOT_DOT, + ACTIONS(7255), 1, anon_sym_AMP_AMP, - ACTIONS(7231), 1, + ACTIONS(7257), 1, anon_sym_PIPE_PIPE, - ACTIONS(7233), 1, + ACTIONS(7259), 1, anon_sym_QMARK_QMARK, - ACTIONS(7235), 1, + ACTIONS(7261), 1, anon_sym_is, - STATE(3173), 1, + STATE(2467), 1, sym_bracketed_argument_list, - STATE(4583), 1, + STATE(3381), 1, sym_argument_list, - ACTIONS(6627), 2, + ACTIONS(5304), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7005), 2, + ACTIONS(7229), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(7233), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7007), 2, + ACTIONS(7235), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7211), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(7221), 2, + ACTIONS(7245), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7225), 2, + ACTIONS(7249), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7227), 2, + ACTIONS(7251), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5858), 4, - sym_interpolation_close_brace, - anon_sym_COLON, + ACTIONS(4996), 4, anon_sym_COMMA, - anon_sym_into, - STATE(4704), 9, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_RBRACE, + STATE(4643), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -605721,7 +600079,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [93672] = 40, + [87957] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -605742,75 +600100,75 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4100), 1, + ACTIONS(4427), 1, anon_sym_DOT, - ACTIONS(4102), 1, + ACTIONS(4429), 1, anon_sym_DASH_GT, - ACTIONS(5264), 1, + ACTIONS(6557), 1, anon_sym_LPAREN, - ACTIONS(5304), 1, - anon_sym_BANG, - ACTIONS(5573), 1, + ACTIONS(6607), 1, anon_sym_LBRACK, - ACTIONS(6343), 1, + ACTIONS(6613), 1, + anon_sym_BANG, + ACTIONS(6637), 1, anon_sym_switch, - ACTIONS(6357), 1, - anon_sym_with, - ACTIONS(6813), 1, + ACTIONS(6647), 1, anon_sym_as, - ACTIONS(7139), 1, - anon_sym_QMARK, - ACTIONS(7145), 1, + ACTIONS(6651), 1, + anon_sym_with, + ACTIONS(7035), 1, anon_sym_SLASH, - ACTIONS(7147), 1, - anon_sym_CARET, - ACTIONS(7149), 1, - anon_sym_PIPE, - ACTIONS(7151), 1, + ACTIONS(7037), 1, anon_sym_AMP, - ACTIONS(7155), 1, + ACTIONS(7041), 1, anon_sym_GT_GT, - ACTIONS(7161), 1, + ACTIONS(7047), 1, anon_sym_DOT_DOT, - ACTIONS(7163), 1, + ACTIONS(7049), 1, + anon_sym_is, + ACTIONS(7051), 1, + anon_sym_CARET, + ACTIONS(7053), 1, + anon_sym_PIPE, + ACTIONS(7055), 1, anon_sym_AMP_AMP, - ACTIONS(7165), 1, + ACTIONS(7057), 1, anon_sym_PIPE_PIPE, - ACTIONS(7167), 1, + ACTIONS(7059), 1, anon_sym_QMARK_QMARK, - ACTIONS(7169), 1, - anon_sym_is, - STATE(2485), 1, + ACTIONS(7277), 1, + anon_sym_QMARK, + STATE(3188), 1, sym_bracketed_argument_list, - STATE(3487), 1, + STATE(4584), 1, sym_argument_list, - ACTIONS(5306), 2, + ACTIONS(6615), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7137), 2, + ACTIONS(7029), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7141), 2, + ACTIONS(7031), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7143), 2, + ACTIONS(7033), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7153), 2, + ACTIONS(7039), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7157), 2, + ACTIONS(7043), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7159), 2, + ACTIONS(7045), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5858), 4, + ACTIONS(5801), 4, + sym_interpolation_close_brace, + anon_sym_COLON, anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_RBRACE, - STATE(4705), 9, + anon_sym_into, + STATE(4644), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -605820,7 +600178,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [93811] = 29, + [88096] = 22, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -605841,49 +600199,36 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4075), 1, + ACTIONS(4427), 1, anon_sym_DOT, - ACTIONS(4077), 1, + ACTIONS(4429), 1, anon_sym_DASH_GT, - ACTIONS(5247), 1, + ACTIONS(6557), 1, anon_sym_LPAREN, - ACTIONS(5283), 1, + ACTIONS(6607), 1, anon_sym_LBRACK, - ACTIONS(5285), 1, + ACTIONS(6613), 1, anon_sym_BANG, - ACTIONS(6147), 1, - anon_sym_switch, - ACTIONS(6161), 1, - anon_sym_with, - ACTIONS(7332), 1, - anon_sym_SLASH, - ACTIONS(7342), 1, - anon_sym_GT_GT, - ACTIONS(7348), 1, + ACTIONS(7047), 1, anon_sym_DOT_DOT, - STATE(2613), 1, + STATE(3188), 1, sym_bracketed_argument_list, - STATE(3259), 1, + STATE(4584), 1, sym_argument_list, - ACTIONS(5287), 2, + ACTIONS(6615), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7328), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(7330), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(7340), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - ACTIONS(5664), 5, + ACTIONS(1161), 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(4706), 9, + anon_sym_GT_GT, + STATE(4645), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -605893,22 +600238,28 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5660), 14, + ACTIONS(1147), 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_and, - anon_sym_or, + anon_sym_switch, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_QMARK_QMARK, anon_sym_into, - anon_sym_equals, anon_sym_as, anon_sym_is, - [93928] = 13, + anon_sym_with, + [88199] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -605929,7 +600280,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - STATE(4707), 9, + STATE(4646), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -605939,7 +600290,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5202), 11, + ACTIONS(5070), 11, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, @@ -605951,7 +600302,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT, - ACTIONS(5200), 28, + ACTIONS(5068), 28, sym_interpolation_close_brace, anon_sym_LBRACK, anon_sym_COLON, @@ -605980,7 +600331,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, anon_sym_DASH_GT, anon_sym_with, - [94013] = 40, + [88284] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -606001,85 +600352,60 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4100), 1, - anon_sym_DOT, - ACTIONS(4102), 1, - anon_sym_DASH_GT, - ACTIONS(5264), 1, - anon_sym_LPAREN, - ACTIONS(5302), 1, - anon_sym_LBRACK, - ACTIONS(5304), 1, - anon_sym_BANG, - ACTIONS(6475), 1, - anon_sym_switch, - ACTIONS(6489), 1, - anon_sym_with, - ACTIONS(7051), 1, + ACTIONS(7286), 1, + anon_sym_and, + ACTIONS(7288), 1, + anon_sym_or, + STATE(4647), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + ACTIONS(5360), 11, + anon_sym_LT, + anon_sym_GT, anon_sym_QMARK, - ACTIONS(7057), 1, + anon_sym_BANG, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_SLASH, - ACTIONS(7059), 1, - anon_sym_CARET, - ACTIONS(7061), 1, anon_sym_PIPE, - ACTIONS(7063), 1, anon_sym_AMP, - ACTIONS(7067), 1, anon_sym_GT_GT, - ACTIONS(7073), 1, - anon_sym_DOT_DOT, - ACTIONS(7075), 1, - anon_sym_AMP_AMP, - ACTIONS(7077), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7079), 1, - anon_sym_QMARK_QMARK, - ACTIONS(7081), 1, - anon_sym_as, - ACTIONS(7083), 1, - anon_sym_is, - STATE(2808), 1, - sym_bracketed_argument_list, - STATE(3487), 1, - sym_argument_list, - ACTIONS(5306), 2, + anon_sym_DOT, + ACTIONS(5358), 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(7049), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(7053), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(7055), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7065), 2, + anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7069), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7071), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5777), 4, - anon_sym_COLON, - anon_sym_when, - anon_sym_and, - anon_sym_or, - 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, - [94152] = 26, + 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, + [88373] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -606100,44 +600426,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4075), 1, - anon_sym_DOT, - ACTIONS(4077), 1, - anon_sym_DASH_GT, - ACTIONS(5247), 1, - anon_sym_LPAREN, - ACTIONS(5283), 1, - anon_sym_LBRACK, - ACTIONS(5285), 1, - anon_sym_BANG, - ACTIONS(6147), 1, - anon_sym_switch, - ACTIONS(6161), 1, - anon_sym_with, - ACTIONS(7332), 1, - anon_sym_SLASH, - ACTIONS(7348), 1, - anon_sym_DOT_DOT, - STATE(2613), 1, - sym_bracketed_argument_list, - STATE(3259), 1, - sym_argument_list, - ACTIONS(5287), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(7330), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(5664), 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(4709), 9, + ACTIONS(7286), 1, + anon_sym_and, + ACTIONS(7288), 1, + anon_sym_or, + STATE(4648), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -606147,7 +600440,28 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5660), 16, + ACTIONS(6109), 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(6107), 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, @@ -606155,16 +600469,17 @@ 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_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, - [94263] = 27, + anon_sym_DASH_GT, + anon_sym_with, + [88462] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -606185,45 +600500,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4075), 1, - anon_sym_DOT, - ACTIONS(4077), 1, - anon_sym_DASH_GT, - ACTIONS(5247), 1, - anon_sym_LPAREN, - ACTIONS(5283), 1, - anon_sym_LBRACK, - ACTIONS(5285), 1, - anon_sym_BANG, - ACTIONS(6147), 1, - anon_sym_switch, - ACTIONS(6161), 1, - anon_sym_with, - ACTIONS(7332), 1, - anon_sym_SLASH, - ACTIONS(7348), 1, - anon_sym_DOT_DOT, - STATE(2613), 1, - sym_bracketed_argument_list, - STATE(3259), 1, - sym_argument_list, - ACTIONS(5287), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(7328), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(7330), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(5664), 6, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT_GT, - STATE(4710), 9, + STATE(4649), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -606233,7 +600510,28 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5660), 16, + ACTIONS(5074), 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(5072), 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, @@ -606241,16 +600539,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_equals, anon_sym_as, anon_sym_is, - [94376] = 40, + anon_sym_DASH_GT, + anon_sym_with, + [88547] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -606271,75 +600572,75 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4075), 1, + ACTIONS(4092), 1, anon_sym_DOT, - ACTIONS(4077), 1, + ACTIONS(4094), 1, anon_sym_DASH_GT, - ACTIONS(5247), 1, + ACTIONS(5227), 1, anon_sym_LPAREN, - ACTIONS(5283), 1, + ACTIONS(5236), 1, anon_sym_LBRACK, - ACTIONS(5285), 1, + ACTIONS(5238), 1, anon_sym_BANG, - ACTIONS(6147), 1, + ACTIONS(6017), 1, anon_sym_switch, - ACTIONS(6161), 1, + ACTIONS(6027), 1, + anon_sym_as, + ACTIONS(6031), 1, anon_sym_with, - ACTIONS(7177), 1, - anon_sym_DOT_DOT, - ACTIONS(7286), 1, + ACTIONS(7269), 1, anon_sym_SLASH, - ACTIONS(7290), 1, + ACTIONS(7273), 1, anon_sym_GT_GT, - ACTIONS(7298), 1, + ACTIONS(7275), 1, + anon_sym_DOT_DOT, + ACTIONS(7292), 1, anon_sym_QMARK, - ACTIONS(7300), 1, + ACTIONS(7294), 1, anon_sym_CARET, - ACTIONS(7302), 1, + ACTIONS(7296), 1, anon_sym_PIPE, - ACTIONS(7304), 1, + ACTIONS(7298), 1, anon_sym_AMP, - ACTIONS(7310), 1, + ACTIONS(7304), 1, anon_sym_AMP_AMP, - ACTIONS(7312), 1, + ACTIONS(7306), 1, anon_sym_PIPE_PIPE, - ACTIONS(7314), 1, + ACTIONS(7308), 1, anon_sym_QMARK_QMARK, - ACTIONS(7316), 1, - anon_sym_as, - ACTIONS(7318), 1, + ACTIONS(7310), 1, anon_sym_is, - STATE(2613), 1, + STATE(2605), 1, sym_bracketed_argument_list, - STATE(3259), 1, + STATE(3348), 1, sym_argument_list, - ACTIONS(5287), 2, + ACTIONS(5240), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7282), 2, + ACTIONS(7265), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7284), 2, + ACTIONS(7267), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7288), 2, + ACTIONS(7271), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7296), 2, + ACTIONS(7290), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7306), 2, + ACTIONS(7300), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7308), 2, + ACTIONS(7302), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5745), 4, + ACTIONS(5801), 4, + anon_sym_EQ_GT, anon_sym_and, anon_sym_or, anon_sym_into, - anon_sym_by, - STATE(4711), 9, + STATE(4650), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -606349,7 +600650,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [94515] = 40, + [88686] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -606370,75 +600671,75 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4075), 1, + ACTIONS(4042), 1, anon_sym_DOT, - ACTIONS(4077), 1, + ACTIONS(4044), 1, anon_sym_DASH_GT, - ACTIONS(5247), 1, + ACTIONS(5257), 1, anon_sym_LPAREN, - ACTIONS(5283), 1, - anon_sym_LBRACK, - ACTIONS(5285), 1, + ACTIONS(5302), 1, anon_sym_BANG, - ACTIONS(6147), 1, + ACTIONS(5549), 1, + anon_sym_LBRACK, + ACTIONS(6355), 1, anon_sym_switch, - ACTIONS(6161), 1, + ACTIONS(6369), 1, anon_sym_with, - ACTIONS(7326), 1, + ACTIONS(6811), 1, + anon_sym_as, + ACTIONS(7231), 1, anon_sym_QMARK, - ACTIONS(7332), 1, + ACTIONS(7237), 1, anon_sym_SLASH, - ACTIONS(7334), 1, + ACTIONS(7239), 1, anon_sym_CARET, - ACTIONS(7336), 1, + ACTIONS(7241), 1, anon_sym_PIPE, - ACTIONS(7338), 1, + ACTIONS(7243), 1, anon_sym_AMP, - ACTIONS(7342), 1, + ACTIONS(7247), 1, anon_sym_GT_GT, - ACTIONS(7348), 1, + ACTIONS(7253), 1, anon_sym_DOT_DOT, - ACTIONS(7350), 1, + ACTIONS(7255), 1, anon_sym_AMP_AMP, - ACTIONS(7352), 1, + ACTIONS(7257), 1, anon_sym_PIPE_PIPE, - ACTIONS(7354), 1, + ACTIONS(7259), 1, anon_sym_QMARK_QMARK, - ACTIONS(7356), 1, - anon_sym_as, - ACTIONS(7358), 1, + ACTIONS(7261), 1, anon_sym_is, - STATE(2613), 1, + STATE(2467), 1, sym_bracketed_argument_list, - STATE(3259), 1, + STATE(3381), 1, sym_argument_list, - ACTIONS(5287), 2, + ACTIONS(5304), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7324), 2, + ACTIONS(7229), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7328), 2, + ACTIONS(7233), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7330), 2, + ACTIONS(7235), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7340), 2, + ACTIONS(7245), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7344), 2, + ACTIONS(7249), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7346), 2, + ACTIONS(7251), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5777), 4, - anon_sym_and, - anon_sym_or, - anon_sym_into, - anon_sym_equals, - STATE(4712), 9, + ACTIONS(5652), 4, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_RBRACE, + STATE(4651), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -606448,7 +600749,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [94654] = 40, + [88825] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -606469,85 +600770,58 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4075), 1, - anon_sym_DOT, - ACTIONS(4077), 1, - anon_sym_DASH_GT, - ACTIONS(5247), 1, - anon_sym_LPAREN, - ACTIONS(5283), 1, - anon_sym_LBRACK, - ACTIONS(5285), 1, + STATE(4652), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + ACTIONS(5078), 11, + anon_sym_LT, + anon_sym_GT, + anon_sym_QMARK, anon_sym_BANG, - ACTIONS(6147), 1, - anon_sym_switch, - ACTIONS(6161), 1, - anon_sym_with, - ACTIONS(7177), 1, - anon_sym_DOT_DOT, - ACTIONS(7286), 1, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_SLASH, - ACTIONS(7290), 1, - anon_sym_GT_GT, - ACTIONS(7298), 1, - anon_sym_QMARK, - ACTIONS(7300), 1, - anon_sym_CARET, - ACTIONS(7302), 1, anon_sym_PIPE, - ACTIONS(7304), 1, anon_sym_AMP, - ACTIONS(7310), 1, - anon_sym_AMP_AMP, - ACTIONS(7312), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7314), 1, - anon_sym_QMARK_QMARK, - ACTIONS(7316), 1, - anon_sym_as, - ACTIONS(7318), 1, - anon_sym_is, - STATE(2613), 1, - sym_bracketed_argument_list, - STATE(3259), 1, - sym_argument_list, - ACTIONS(5287), 2, + anon_sym_GT_GT, + anon_sym_DOT, + ACTIONS(5076), 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(7282), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(7284), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7288), 2, + anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7296), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(7306), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7308), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5767), 4, + 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_by, - STATE(4713), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - [94793] = 22, + anon_sym_as, + anon_sym_is, + anon_sym_DASH_GT, + anon_sym_with, + [88910] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -606568,36 +600842,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4075), 1, - anon_sym_DOT, - ACTIONS(4077), 1, - anon_sym_DASH_GT, - ACTIONS(5247), 1, - anon_sym_LPAREN, - ACTIONS(5283), 1, - anon_sym_LBRACK, - ACTIONS(5285), 1, - anon_sym_BANG, - ACTIONS(7348), 1, - anon_sym_DOT_DOT, - STATE(2613), 1, - sym_bracketed_argument_list, - STATE(3259), 1, - sym_argument_list, - ACTIONS(5287), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5733), 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(4714), 9, + STATE(4653), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -606607,7 +600852,26 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5731), 20, + ACTIONS(5082), 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(5080), 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, @@ -606618,17 +600882,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_equals, anon_sym_as, anon_sym_is, + anon_sym_DASH_GT, anon_sym_with, - [94896] = 13, + [88995] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -606649,7 +600914,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - STATE(4715), 9, + STATE(4654), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -606659,7 +600924,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5154), 11, + ACTIONS(5086), 11, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, @@ -606671,7 +600936,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT, - ACTIONS(5152), 28, + ACTIONS(5084), 28, sym_interpolation_close_brace, anon_sym_LBRACK, anon_sym_COLON, @@ -606700,7 +600965,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, anon_sym_DASH_GT, anon_sym_with, - [94981] = 24, + [89080] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -606721,40 +600986,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4075), 1, - anon_sym_DOT, - ACTIONS(4077), 1, - anon_sym_DASH_GT, - ACTIONS(5247), 1, - anon_sym_LPAREN, - ACTIONS(5283), 1, - anon_sym_LBRACK, - ACTIONS(5285), 1, - anon_sym_BANG, - ACTIONS(6147), 1, - anon_sym_switch, - ACTIONS(6161), 1, - anon_sym_with, - ACTIONS(7348), 1, - anon_sym_DOT_DOT, - STATE(2613), 1, - sym_bracketed_argument_list, - STATE(3259), 1, - sym_argument_list, - ACTIONS(5287), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5664), 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(4716), 9, + STATE(4655), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -606764,7 +600996,26 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5660), 18, + ACTIONS(5090), 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(5088), 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, @@ -606774,16 +601025,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_equals, anon_sym_as, anon_sym_is, - [95088] = 40, + anon_sym_DASH_GT, + anon_sym_with, + [89165] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -606804,85 +601058,58 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4075), 1, - anon_sym_DOT, - ACTIONS(4077), 1, - anon_sym_DASH_GT, - ACTIONS(5247), 1, - anon_sym_LPAREN, - ACTIONS(5283), 1, - anon_sym_LBRACK, - ACTIONS(5285), 1, + STATE(4656), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + ACTIONS(5094), 11, + anon_sym_LT, + anon_sym_GT, + anon_sym_QMARK, anon_sym_BANG, - ACTIONS(6147), 1, - anon_sym_switch, - ACTIONS(6161), 1, - anon_sym_with, - ACTIONS(7123), 1, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_SLASH, - ACTIONS(7127), 1, - anon_sym_GT_GT, - ACTIONS(7129), 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_as, - ACTIONS(7382), 1, - anon_sym_is, - STATE(2613), 1, - sym_bracketed_argument_list, - STATE(3259), 1, - sym_argument_list, - ACTIONS(5287), 2, + anon_sym_GT_GT, + anon_sym_DOT, + ACTIONS(5092), 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(7119), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(7121), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7125), 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(5858), 4, + 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, - STATE(4717), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - [95227] = 35, + anon_sym_as, + anon_sym_is, + anon_sym_DASH_GT, + anon_sym_with, + [89250] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -606903,80 +601130,58 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4075), 1, - anon_sym_DOT, - ACTIONS(4077), 1, - anon_sym_DASH_GT, - ACTIONS(5247), 1, - anon_sym_LPAREN, - ACTIONS(5283), 1, - anon_sym_LBRACK, - ACTIONS(5285), 1, + STATE(4657), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + ACTIONS(5098), 11, + anon_sym_LT, + anon_sym_GT, + anon_sym_QMARK, anon_sym_BANG, - ACTIONS(6147), 1, - anon_sym_switch, - ACTIONS(6161), 1, - anon_sym_with, - ACTIONS(7123), 1, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_SLASH, - ACTIONS(7127), 1, - anon_sym_GT_GT, - ACTIONS(7129), 1, - anon_sym_DOT_DOT, - ACTIONS(7368), 1, + anon_sym_PIPE, anon_sym_AMP, - ACTIONS(7380), 1, - anon_sym_as, - ACTIONS(7382), 1, - anon_sym_is, - STATE(2613), 1, - sym_bracketed_argument_list, - STATE(3259), 1, - sym_argument_list, - ACTIONS(5287), 2, + anon_sym_GT_GT, + anon_sym_DOT, + ACTIONS(5096), 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(5664), 2, - anon_sym_QMARK, - anon_sym_PIPE, - ACTIONS(7119), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(7121), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7125), 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(5660), 8, - anon_sym_CARET, + 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, - STATE(4718), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - [95356] = 36, + anon_sym_as, + anon_sym_is, + anon_sym_DASH_GT, + anon_sym_with, + [89335] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -606997,81 +601202,58 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4075), 1, - anon_sym_DOT, - ACTIONS(4077), 1, - anon_sym_DASH_GT, - ACTIONS(5247), 1, - anon_sym_LPAREN, - ACTIONS(5283), 1, - anon_sym_LBRACK, - ACTIONS(5285), 1, + STATE(4658), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + ACTIONS(5102), 11, + anon_sym_LT, + anon_sym_GT, + anon_sym_QMARK, anon_sym_BANG, - ACTIONS(6147), 1, - anon_sym_switch, - ACTIONS(6161), 1, - anon_sym_with, - ACTIONS(7123), 1, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_SLASH, - ACTIONS(7127), 1, - anon_sym_GT_GT, - ACTIONS(7129), 1, - anon_sym_DOT_DOT, - ACTIONS(7364), 1, - anon_sym_CARET, - ACTIONS(7368), 1, + anon_sym_PIPE, anon_sym_AMP, - ACTIONS(7380), 1, - anon_sym_as, - ACTIONS(7382), 1, - anon_sym_is, - STATE(2613), 1, - sym_bracketed_argument_list, - STATE(3259), 1, - sym_argument_list, - ACTIONS(5287), 2, + anon_sym_GT_GT, + anon_sym_DOT, + ACTIONS(5100), 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(5664), 2, - anon_sym_QMARK, - anon_sym_PIPE, - ACTIONS(7119), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(7121), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7125), 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(5660), 7, + 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, - STATE(4719), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - [95487] = 34, + anon_sym_as, + anon_sym_is, + anon_sym_DASH_GT, + anon_sym_with, + [89420] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -607092,69 +601274,75 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4075), 1, + ACTIONS(4427), 1, anon_sym_DOT, - ACTIONS(4077), 1, + ACTIONS(4429), 1, anon_sym_DASH_GT, - ACTIONS(5247), 1, + ACTIONS(6557), 1, anon_sym_LPAREN, - ACTIONS(5283), 1, + ACTIONS(6607), 1, anon_sym_LBRACK, - ACTIONS(5285), 1, + ACTIONS(6613), 1, anon_sym_BANG, - ACTIONS(6147), 1, + ACTIONS(6637), 1, anon_sym_switch, - ACTIONS(6161), 1, + ACTIONS(6647), 1, + anon_sym_as, + ACTIONS(6651), 1, anon_sym_with, - ACTIONS(7123), 1, + ACTIONS(7035), 1, anon_sym_SLASH, - ACTIONS(7127), 1, + ACTIONS(7037), 1, + anon_sym_AMP, + ACTIONS(7041), 1, anon_sym_GT_GT, - ACTIONS(7129), 1, + ACTIONS(7047), 1, anon_sym_DOT_DOT, - ACTIONS(7380), 1, - anon_sym_as, - ACTIONS(7382), 1, + ACTIONS(7049), 1, anon_sym_is, - STATE(2613), 1, + ACTIONS(7051), 1, + anon_sym_CARET, + ACTIONS(7053), 1, + anon_sym_PIPE, + ACTIONS(7055), 1, + anon_sym_AMP_AMP, + ACTIONS(7057), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7059), 1, + anon_sym_QMARK_QMARK, + ACTIONS(7277), 1, + anon_sym_QMARK, + STATE(3188), 1, sym_bracketed_argument_list, - STATE(3259), 1, + STATE(4584), 1, sym_argument_list, - ACTIONS(5287), 2, + ACTIONS(6615), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7119), 2, + ACTIONS(7029), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(7031), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7121), 2, + ACTIONS(7033), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7125), 2, + ACTIONS(7039), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7360), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(7370), 2, + ACTIONS(7043), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7372), 2, + ACTIONS(7045), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5664), 3, - anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_AMP, - ACTIONS(5660), 8, - anon_sym_CARET, - anon_sym_and, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_QMARK_QMARK, + ACTIONS(5855), 4, + sym_interpolation_close_brace, + anon_sym_COLON, + anon_sym_COMMA, anon_sym_into, - anon_sym_on, - STATE(4720), 9, + STATE(4659), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -607164,7 +601352,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [95614] = 33, + [89559] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -607185,57 +601373,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4075), 1, - anon_sym_DOT, - ACTIONS(4077), 1, - anon_sym_DASH_GT, - ACTIONS(5247), 1, - anon_sym_LPAREN, - ACTIONS(5283), 1, - anon_sym_LBRACK, - ACTIONS(5285), 1, - anon_sym_BANG, - ACTIONS(6147), 1, - anon_sym_switch, - ACTIONS(6161), 1, - anon_sym_with, - ACTIONS(7123), 1, - anon_sym_SLASH, - ACTIONS(7127), 1, - anon_sym_GT_GT, - ACTIONS(7129), 1, - anon_sym_DOT_DOT, - ACTIONS(7380), 1, - anon_sym_as, - ACTIONS(7382), 1, - anon_sym_is, - STATE(2613), 1, - sym_bracketed_argument_list, - STATE(3259), 1, - sym_argument_list, - ACTIONS(5287), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(7119), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(7121), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(7125), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - ACTIONS(7360), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(7372), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(5664), 3, - anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_AMP, - STATE(4721), 9, + STATE(4660), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -607245,18 +601383,48 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5660), 10, + ACTIONS(5042), 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(5040), 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_on, - [95739] = 37, + anon_sym_as, + anon_sym_is, + anon_sym_DASH_GT, + anon_sym_with, + [89644] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -607277,82 +601445,58 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4075), 1, - anon_sym_DOT, - ACTIONS(4077), 1, - anon_sym_DASH_GT, - ACTIONS(5247), 1, - anon_sym_LPAREN, - ACTIONS(5283), 1, - anon_sym_LBRACK, - ACTIONS(5285), 1, - anon_sym_BANG, - ACTIONS(5664), 1, + STATE(4661), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + ACTIONS(5106), 11, + anon_sym_LT, + anon_sym_GT, anon_sym_QMARK, - ACTIONS(6147), 1, - anon_sym_switch, - ACTIONS(6161), 1, - anon_sym_with, - ACTIONS(7123), 1, + anon_sym_BANG, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_SLASH, - ACTIONS(7127), 1, - anon_sym_GT_GT, - ACTIONS(7129), 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_as, - ACTIONS(7382), 1, - anon_sym_is, - STATE(2613), 1, - sym_bracketed_argument_list, - STATE(3259), 1, - sym_argument_list, - ACTIONS(5287), 2, + anon_sym_GT_GT, + anon_sym_DOT, + ACTIONS(5104), 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(7119), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(7121), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7125), 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(5660), 7, + 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, - STATE(4722), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - [95872] = 38, + anon_sym_as, + anon_sym_is, + anon_sym_DASH_GT, + anon_sym_with, + [89729] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -607373,73 +601517,79 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4075), 1, - anon_sym_DOT, - ACTIONS(4077), 1, - anon_sym_DASH_GT, - ACTIONS(5247), 1, - anon_sym_LPAREN, - ACTIONS(5283), 1, - anon_sym_LBRACK, - ACTIONS(5285), 1, - anon_sym_BANG, - ACTIONS(5664), 1, + STATE(4662), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + ACTIONS(5110), 11, + anon_sym_LT, + anon_sym_GT, anon_sym_QMARK, - ACTIONS(6147), 1, - anon_sym_switch, - ACTIONS(6161), 1, - anon_sym_with, - ACTIONS(7123), 1, + anon_sym_BANG, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_SLASH, - ACTIONS(7127), 1, - anon_sym_GT_GT, - ACTIONS(7129), 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_as, - ACTIONS(7382), 1, - anon_sym_is, - STATE(2613), 1, - sym_bracketed_argument_list, - STATE(3259), 1, - sym_argument_list, - ACTIONS(5287), 2, + anon_sym_GT_GT, + anon_sym_DOT, + ACTIONS(5108), 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(7119), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(7121), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7125), 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(5660), 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, anon_sym_into, - anon_sym_on, - STATE(4723), 9, + anon_sym_as, + anon_sym_is, + anon_sym_DASH_GT, + anon_sym_with, + [89814] = 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(4663), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -607449,7 +601599,48 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [96007] = 40, + ACTIONS(5114), 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(5112), 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, + [89899] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -607470,85 +601661,58 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4075), 1, - anon_sym_DOT, - ACTIONS(4077), 1, - anon_sym_DASH_GT, - ACTIONS(5247), 1, - anon_sym_LPAREN, - ACTIONS(5283), 1, - anon_sym_LBRACK, - ACTIONS(5285), 1, - anon_sym_BANG, - ACTIONS(5664), 1, + STATE(4664), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + ACTIONS(5118), 11, + anon_sym_LT, + anon_sym_GT, anon_sym_QMARK, - ACTIONS(6147), 1, - anon_sym_switch, - ACTIONS(6161), 1, - anon_sym_with, - ACTIONS(7123), 1, + anon_sym_BANG, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_SLASH, - ACTIONS(7127), 1, - anon_sym_GT_GT, - ACTIONS(7129), 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_as, - ACTIONS(7382), 1, - anon_sym_is, - STATE(2613), 1, - sym_bracketed_argument_list, - STATE(3259), 1, - sym_argument_list, - ACTIONS(5287), 2, + anon_sym_GT_GT, + anon_sym_DOT, + ACTIONS(5116), 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(7119), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(7121), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7125), 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(5660), 4, + 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, - STATE(4724), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - [96146] = 40, + anon_sym_as, + anon_sym_is, + anon_sym_DASH_GT, + anon_sym_with, + [89984] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -607569,85 +601733,58 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4075), 1, - anon_sym_DOT, - ACTIONS(4077), 1, - anon_sym_DASH_GT, - ACTIONS(5247), 1, - anon_sym_LPAREN, - ACTIONS(5283), 1, - anon_sym_LBRACK, - ACTIONS(5285), 1, + STATE(4665), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + ACTIONS(5122), 11, + anon_sym_LT, + anon_sym_GT, + anon_sym_QMARK, anon_sym_BANG, - ACTIONS(6147), 1, - anon_sym_switch, - ACTIONS(6161), 1, - anon_sym_with, - ACTIONS(7123), 1, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_SLASH, - ACTIONS(7127), 1, - anon_sym_GT_GT, - ACTIONS(7129), 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_as, - ACTIONS(7382), 1, - anon_sym_is, - STATE(2613), 1, - sym_bracketed_argument_list, - STATE(3259), 1, - sym_argument_list, - ACTIONS(5287), 2, + anon_sym_GT_GT, + anon_sym_DOT, + ACTIONS(5120), 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(7119), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(7121), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7125), 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(5864), 4, + 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, - STATE(4725), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - [96285] = 40, + anon_sym_as, + anon_sym_is, + anon_sym_DASH_GT, + anon_sym_with, + [90069] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -607668,85 +601805,58 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4075), 1, - anon_sym_DOT, - ACTIONS(4077), 1, - anon_sym_DASH_GT, - ACTIONS(5247), 1, - anon_sym_LPAREN, - ACTIONS(5283), 1, - anon_sym_LBRACK, - ACTIONS(5285), 1, + STATE(4666), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + ACTIONS(4923), 11, + anon_sym_LT, + anon_sym_GT, + anon_sym_QMARK, anon_sym_BANG, - ACTIONS(6147), 1, - anon_sym_switch, - ACTIONS(6161), 1, - anon_sym_with, - ACTIONS(7123), 1, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_SLASH, - ACTIONS(7127), 1, - anon_sym_GT_GT, - ACTIONS(7129), 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_as, - ACTIONS(7382), 1, - anon_sym_is, - STATE(2613), 1, - sym_bracketed_argument_list, - STATE(3259), 1, - sym_argument_list, - ACTIONS(5287), 2, + anon_sym_GT_GT, + anon_sym_DOT, + ACTIONS(4921), 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(7119), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(7121), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7125), 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(5072), 4, + 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, - STATE(4726), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - [96424] = 40, + anon_sym_as, + anon_sym_is, + anon_sym_DASH_GT, + anon_sym_with, + [90154] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -607767,85 +601877,58 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4075), 1, - anon_sym_DOT, - ACTIONS(4077), 1, - anon_sym_DASH_GT, - ACTIONS(5247), 1, - anon_sym_LPAREN, - ACTIONS(5283), 1, - anon_sym_LBRACK, - ACTIONS(5285), 1, + STATE(4667), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + ACTIONS(5126), 11, + anon_sym_LT, + anon_sym_GT, + anon_sym_QMARK, anon_sym_BANG, - ACTIONS(6147), 1, - anon_sym_switch, - ACTIONS(6161), 1, - anon_sym_with, - ACTIONS(7123), 1, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_SLASH, - ACTIONS(7127), 1, - anon_sym_GT_GT, - ACTIONS(7129), 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_as, - ACTIONS(7382), 1, - anon_sym_is, - STATE(2613), 1, - sym_bracketed_argument_list, - STATE(3259), 1, - sym_argument_list, - ACTIONS(5287), 2, + anon_sym_GT_GT, + anon_sym_DOT, + ACTIONS(5124), 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(7119), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(7121), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7125), 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(5882), 4, + 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, - STATE(4727), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - [96563] = 40, + anon_sym_as, + anon_sym_is, + anon_sym_DASH_GT, + anon_sym_with, + [90239] = 24, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -607866,85 +601949,69 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4075), 1, + ACTIONS(4092), 1, anon_sym_DOT, - ACTIONS(4077), 1, + ACTIONS(4094), 1, anon_sym_DASH_GT, - ACTIONS(5247), 1, + ACTIONS(5227), 1, anon_sym_LPAREN, - ACTIONS(5283), 1, + ACTIONS(5236), 1, anon_sym_LBRACK, - ACTIONS(5285), 1, + ACTIONS(5238), 1, anon_sym_BANG, - ACTIONS(6147), 1, + ACTIONS(6017), 1, anon_sym_switch, - ACTIONS(6161), 1, + ACTIONS(6031), 1, anon_sym_with, - ACTIONS(7123), 1, - anon_sym_SLASH, - ACTIONS(7127), 1, - anon_sym_GT_GT, - ACTIONS(7129), 1, + ACTIONS(7079), 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_as, - ACTIONS(7382), 1, - anon_sym_is, - STATE(2613), 1, + STATE(2605), 1, sym_bracketed_argument_list, - STATE(3259), 1, + STATE(3348), 1, sym_argument_list, - ACTIONS(5287), 2, + ACTIONS(5240), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7119), 2, + ACTIONS(5739), 9, + anon_sym_LT, + anon_sym_GT, + anon_sym_QMARK, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7121), 2, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT_GT, + STATE(4668), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + ACTIONS(5737), 18, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7125), 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(5899), 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, - STATE(4728), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - [96702] = 40, + anon_sym_by, + anon_sym_as, + anon_sym_is, + [90346] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -607965,85 +602032,59 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4100), 1, - anon_sym_DOT, - ACTIONS(4102), 1, - anon_sym_DASH_GT, - ACTIONS(5264), 1, - anon_sym_LPAREN, - ACTIONS(5302), 1, - anon_sym_LBRACK, - ACTIONS(5304), 1, - anon_sym_BANG, - ACTIONS(6475), 1, - anon_sym_switch, - ACTIONS(6489), 1, - anon_sym_with, - ACTIONS(7051), 1, + ACTIONS(7117), 1, + anon_sym_and, + STATE(4669), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + ACTIONS(6097), 11, + anon_sym_LT, + anon_sym_GT, anon_sym_QMARK, - ACTIONS(7057), 1, + anon_sym_BANG, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_SLASH, - ACTIONS(7059), 1, - anon_sym_CARET, - ACTIONS(7061), 1, anon_sym_PIPE, - ACTIONS(7063), 1, anon_sym_AMP, - ACTIONS(7067), 1, anon_sym_GT_GT, - ACTIONS(7073), 1, - anon_sym_DOT_DOT, - ACTIONS(7075), 1, - anon_sym_AMP_AMP, - ACTIONS(7077), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7079), 1, - anon_sym_QMARK_QMARK, - ACTIONS(7081), 1, - anon_sym_as, - ACTIONS(7083), 1, - anon_sym_is, - STATE(2808), 1, - sym_bracketed_argument_list, - STATE(3487), 1, - sym_argument_list, - ACTIONS(5306), 2, + anon_sym_DOT, + ACTIONS(6095), 27, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_LPAREN, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7049), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(7053), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(7055), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7065), 2, + anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7069), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7071), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5864), 4, - anon_sym_COLON, - anon_sym_when, - anon_sym_and, + anon_sym_switch, + anon_sym_DOT_DOT, anon_sym_or, - STATE(4729), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - [96841] = 13, + 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, + [90433] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -608064,7 +602105,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - STATE(4730), 9, + STATE(4670), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -608074,7 +602115,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5421), 11, + ACTIONS(5132), 11, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, @@ -608086,7 +602127,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT, - ACTIONS(5419), 28, + ACTIONS(5130), 28, sym_interpolation_close_brace, anon_sym_LBRACK, anon_sym_COLON, @@ -608115,7 +602156,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, anon_sym_DASH_GT, anon_sym_with, - [96926] = 35, + [90518] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -608136,70 +602177,75 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4075), 1, + ACTIONS(4042), 1, anon_sym_DOT, - ACTIONS(4077), 1, + ACTIONS(4044), 1, anon_sym_DASH_GT, - ACTIONS(5247), 1, + ACTIONS(5257), 1, anon_sym_LPAREN, - ACTIONS(5283), 1, - anon_sym_LBRACK, - ACTIONS(5285), 1, + ACTIONS(5302), 1, anon_sym_BANG, - ACTIONS(6147), 1, + ACTIONS(5549), 1, + anon_sym_LBRACK, + ACTIONS(6355), 1, anon_sym_switch, - ACTIONS(6161), 1, + ACTIONS(6369), 1, anon_sym_with, - ACTIONS(7177), 1, - anon_sym_DOT_DOT, - ACTIONS(7286), 1, + ACTIONS(7179), 1, anon_sym_SLASH, - ACTIONS(7290), 1, + ACTIONS(7183), 1, anon_sym_GT_GT, - ACTIONS(7304), 1, + ACTIONS(7185), 1, + anon_sym_DOT_DOT, + ACTIONS(7189), 1, anon_sym_AMP, - ACTIONS(7316), 1, + ACTIONS(7195), 1, anon_sym_as, - ACTIONS(7318), 1, + ACTIONS(7197), 1, anon_sym_is, - STATE(2613), 1, + ACTIONS(7199), 1, + anon_sym_CARET, + ACTIONS(7201), 1, + anon_sym_PIPE, + ACTIONS(7203), 1, + anon_sym_AMP_AMP, + ACTIONS(7205), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7207), 1, + anon_sym_QMARK_QMARK, + ACTIONS(7209), 1, + anon_sym_QMARK, + STATE(2467), 1, sym_bracketed_argument_list, - STATE(3259), 1, + STATE(3381), 1, sym_argument_list, - ACTIONS(5287), 2, + ACTIONS(5304), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5664), 2, - anon_sym_QMARK, - anon_sym_PIPE, - ACTIONS(7282), 2, + ACTIONS(7175), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7284), 2, + ACTIONS(7177), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7288), 2, + ACTIONS(7181), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7296), 2, + ACTIONS(7187), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7306), 2, + ACTIONS(7191), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7308), 2, + ACTIONS(7193), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5660), 8, - anon_sym_CARET, - anon_sym_and, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_QMARK_QMARK, - anon_sym_into, - anon_sym_by, - STATE(4731), 9, + ACTIONS(5709), 4, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACE, + STATE(4671), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -608209,7 +602255,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [97055] = 36, + [90657] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -608230,71 +602276,75 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4075), 1, + ACTIONS(4042), 1, anon_sym_DOT, - ACTIONS(4077), 1, + ACTIONS(4044), 1, anon_sym_DASH_GT, - ACTIONS(5247), 1, + ACTIONS(5257), 1, anon_sym_LPAREN, - ACTIONS(5283), 1, - anon_sym_LBRACK, - ACTIONS(5285), 1, + ACTIONS(5302), 1, anon_sym_BANG, - ACTIONS(6147), 1, + ACTIONS(5549), 1, + anon_sym_LBRACK, + ACTIONS(6355), 1, anon_sym_switch, - ACTIONS(6161), 1, + ACTIONS(6369), 1, anon_sym_with, - ACTIONS(7177), 1, - anon_sym_DOT_DOT, - ACTIONS(7286), 1, + ACTIONS(7179), 1, anon_sym_SLASH, - ACTIONS(7290), 1, + ACTIONS(7183), 1, anon_sym_GT_GT, - ACTIONS(7300), 1, - anon_sym_CARET, - ACTIONS(7304), 1, + ACTIONS(7185), 1, + anon_sym_DOT_DOT, + ACTIONS(7189), 1, anon_sym_AMP, - ACTIONS(7316), 1, + ACTIONS(7195), 1, anon_sym_as, - ACTIONS(7318), 1, + ACTIONS(7197), 1, anon_sym_is, - STATE(2613), 1, + ACTIONS(7199), 1, + anon_sym_CARET, + ACTIONS(7201), 1, + anon_sym_PIPE, + ACTIONS(7203), 1, + anon_sym_AMP_AMP, + ACTIONS(7205), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7207), 1, + anon_sym_QMARK_QMARK, + ACTIONS(7209), 1, + anon_sym_QMARK, + STATE(2467), 1, sym_bracketed_argument_list, - STATE(3259), 1, + STATE(3381), 1, sym_argument_list, - ACTIONS(5287), 2, + ACTIONS(5304), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5664), 2, - anon_sym_QMARK, - anon_sym_PIPE, - ACTIONS(7282), 2, + ACTIONS(7175), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7284), 2, + ACTIONS(7177), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7288), 2, + ACTIONS(7181), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7296), 2, + ACTIONS(7187), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7306), 2, + ACTIONS(7191), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7308), 2, + ACTIONS(7193), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5660), 7, - anon_sym_and, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_QMARK_QMARK, - anon_sym_into, - anon_sym_by, - STATE(4732), 9, + ACTIONS(5849), 4, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACE, + STATE(4672), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -608304,7 +602354,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [97186] = 24, + [90796] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -608325,69 +602375,85 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4100), 1, + ACTIONS(4092), 1, anon_sym_DOT, - ACTIONS(4102), 1, + ACTIONS(4094), 1, anon_sym_DASH_GT, - ACTIONS(5264), 1, + ACTIONS(5227), 1, anon_sym_LPAREN, - ACTIONS(5302), 1, + ACTIONS(5236), 1, anon_sym_LBRACK, - ACTIONS(5304), 1, + ACTIONS(5238), 1, anon_sym_BANG, - ACTIONS(6475), 1, + ACTIONS(6017), 1, anon_sym_switch, - ACTIONS(6489), 1, + ACTIONS(6031), 1, anon_sym_with, + ACTIONS(7067), 1, + anon_sym_SLASH, + ACTIONS(7069), 1, + anon_sym_AMP, ACTIONS(7073), 1, + anon_sym_GT_GT, + ACTIONS(7079), 1, anon_sym_DOT_DOT, - STATE(2808), 1, + ACTIONS(7081), 1, + anon_sym_as, + ACTIONS(7083), 1, + anon_sym_is, + ACTIONS(7085), 1, + anon_sym_CARET, + ACTIONS(7087), 1, + anon_sym_PIPE, + ACTIONS(7089), 1, + anon_sym_AMP_AMP, + ACTIONS(7091), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7093), 1, + anon_sym_QMARK_QMARK, + ACTIONS(7312), 1, + anon_sym_QMARK, + STATE(2605), 1, sym_bracketed_argument_list, - STATE(3487), 1, + STATE(3348), 1, sym_argument_list, - ACTIONS(5306), 2, + ACTIONS(5240), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5664), 9, + ACTIONS(7061), 2, anon_sym_LT, anon_sym_GT, - anon_sym_QMARK, + ACTIONS(7063), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT_GT, - STATE(4733), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - ACTIONS(5660), 18, - anon_sym_COLON, + ACTIONS(7065), 2, anon_sym_STAR, anon_sym_PERCENT, - anon_sym_CARET, + ACTIONS(7071), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, + ACTIONS(7075), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + ACTIONS(7077), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - anon_sym_when, + ACTIONS(5709), 4, anon_sym_and, anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_QMARK_QMARK, - anon_sym_as, - anon_sym_is, - [97293] = 40, + anon_sym_into, + anon_sym_by, + STATE(4673), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + [90935] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -608408,75 +602474,75 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4075), 1, + ACTIONS(4092), 1, anon_sym_DOT, - ACTIONS(4077), 1, + ACTIONS(4094), 1, anon_sym_DASH_GT, - ACTIONS(5247), 1, + ACTIONS(5227), 1, anon_sym_LPAREN, - ACTIONS(5283), 1, + ACTIONS(5236), 1, anon_sym_LBRACK, - ACTIONS(5285), 1, + ACTIONS(5238), 1, anon_sym_BANG, - ACTIONS(6147), 1, + ACTIONS(6017), 1, anon_sym_switch, - ACTIONS(6161), 1, + ACTIONS(6031), 1, anon_sym_with, - ACTIONS(7326), 1, - anon_sym_QMARK, - ACTIONS(7332), 1, + ACTIONS(7067), 1, anon_sym_SLASH, - ACTIONS(7334), 1, - anon_sym_CARET, - ACTIONS(7336), 1, - anon_sym_PIPE, - ACTIONS(7338), 1, + ACTIONS(7069), 1, anon_sym_AMP, - ACTIONS(7342), 1, + ACTIONS(7073), 1, anon_sym_GT_GT, - ACTIONS(7348), 1, + ACTIONS(7079), 1, anon_sym_DOT_DOT, - ACTIONS(7350), 1, + ACTIONS(7081), 1, + anon_sym_as, + ACTIONS(7083), 1, + anon_sym_is, + ACTIONS(7085), 1, + anon_sym_CARET, + ACTIONS(7087), 1, + anon_sym_PIPE, + ACTIONS(7089), 1, anon_sym_AMP_AMP, - ACTIONS(7352), 1, + ACTIONS(7091), 1, anon_sym_PIPE_PIPE, - ACTIONS(7354), 1, + ACTIONS(7093), 1, anon_sym_QMARK_QMARK, - ACTIONS(7356), 1, - anon_sym_as, - ACTIONS(7358), 1, - anon_sym_is, - STATE(2613), 1, + ACTIONS(7312), 1, + anon_sym_QMARK, + STATE(2605), 1, sym_bracketed_argument_list, - STATE(3259), 1, + STATE(3348), 1, sym_argument_list, - ACTIONS(5287), 2, + ACTIONS(5240), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7324), 2, + ACTIONS(7061), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7328), 2, + ACTIONS(7063), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7330), 2, + ACTIONS(7065), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7340), 2, + ACTIONS(7071), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7344), 2, + ACTIONS(7075), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7346), 2, + ACTIONS(7077), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5745), 4, + ACTIONS(5849), 4, anon_sym_and, anon_sym_or, anon_sym_into, - anon_sym_equals, - STATE(4734), 9, + anon_sym_by, + STATE(4674), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -608486,7 +602552,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [97432] = 40, + [91074] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -608507,75 +602573,75 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4075), 1, + ACTIONS(4092), 1, anon_sym_DOT, - ACTIONS(4077), 1, + ACTIONS(4094), 1, anon_sym_DASH_GT, - ACTIONS(5247), 1, + ACTIONS(5227), 1, anon_sym_LPAREN, - ACTIONS(5283), 1, + ACTIONS(5236), 1, anon_sym_LBRACK, - ACTIONS(5285), 1, + ACTIONS(5238), 1, anon_sym_BANG, - ACTIONS(6147), 1, + ACTIONS(6017), 1, anon_sym_switch, - ACTIONS(6161), 1, + ACTIONS(6031), 1, anon_sym_with, - ACTIONS(7123), 1, + ACTIONS(7067), 1, anon_sym_SLASH, - ACTIONS(7127), 1, + ACTIONS(7069), 1, + anon_sym_AMP, + ACTIONS(7073), 1, anon_sym_GT_GT, - ACTIONS(7129), 1, + ACTIONS(7079), 1, anon_sym_DOT_DOT, - ACTIONS(7362), 1, - anon_sym_QMARK, - ACTIONS(7364), 1, + ACTIONS(7081), 1, + anon_sym_as, + ACTIONS(7083), 1, + anon_sym_is, + ACTIONS(7085), 1, anon_sym_CARET, - ACTIONS(7366), 1, + ACTIONS(7087), 1, anon_sym_PIPE, - ACTIONS(7368), 1, - anon_sym_AMP, - ACTIONS(7374), 1, + ACTIONS(7089), 1, anon_sym_AMP_AMP, - ACTIONS(7376), 1, + ACTIONS(7091), 1, anon_sym_PIPE_PIPE, - ACTIONS(7378), 1, + ACTIONS(7093), 1, anon_sym_QMARK_QMARK, - ACTIONS(7380), 1, - anon_sym_as, - ACTIONS(7382), 1, - anon_sym_is, - STATE(2613), 1, + ACTIONS(7312), 1, + anon_sym_QMARK, + STATE(2605), 1, sym_bracketed_argument_list, - STATE(3259), 1, + STATE(3348), 1, sym_argument_list, - ACTIONS(5287), 2, + ACTIONS(5240), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7119), 2, + ACTIONS(7061), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(7063), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7121), 2, + ACTIONS(7065), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7125), 2, + ACTIONS(7071), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7360), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(7370), 2, + ACTIONS(7075), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7372), 2, + ACTIONS(7077), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5777), 4, + ACTIONS(4996), 4, anon_sym_and, anon_sym_or, anon_sym_into, - anon_sym_on, - STATE(4735), 9, + anon_sym_by, + STATE(4675), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -608585,7 +602651,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [97571] = 40, + [91213] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -608606,75 +602672,75 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4075), 1, + ACTIONS(4092), 1, anon_sym_DOT, - ACTIONS(4077), 1, + ACTIONS(4094), 1, anon_sym_DASH_GT, - ACTIONS(5247), 1, + ACTIONS(5227), 1, anon_sym_LPAREN, - ACTIONS(5283), 1, + ACTIONS(5236), 1, anon_sym_LBRACK, - ACTIONS(5285), 1, + ACTIONS(5238), 1, anon_sym_BANG, - ACTIONS(6147), 1, + ACTIONS(6017), 1, anon_sym_switch, - ACTIONS(6161), 1, + ACTIONS(6031), 1, anon_sym_with, - ACTIONS(7326), 1, - anon_sym_QMARK, - ACTIONS(7332), 1, + ACTIONS(7067), 1, anon_sym_SLASH, - ACTIONS(7334), 1, - anon_sym_CARET, - ACTIONS(7336), 1, - anon_sym_PIPE, - ACTIONS(7338), 1, + ACTIONS(7069), 1, anon_sym_AMP, - ACTIONS(7342), 1, + ACTIONS(7073), 1, anon_sym_GT_GT, - ACTIONS(7348), 1, + ACTIONS(7079), 1, anon_sym_DOT_DOT, - ACTIONS(7350), 1, + ACTIONS(7081), 1, + anon_sym_as, + ACTIONS(7083), 1, + anon_sym_is, + ACTIONS(7085), 1, + anon_sym_CARET, + ACTIONS(7087), 1, + anon_sym_PIPE, + ACTIONS(7089), 1, anon_sym_AMP_AMP, - ACTIONS(7352), 1, + ACTIONS(7091), 1, anon_sym_PIPE_PIPE, - ACTIONS(7354), 1, + ACTIONS(7093), 1, anon_sym_QMARK_QMARK, - ACTIONS(7356), 1, - anon_sym_as, - ACTIONS(7358), 1, - anon_sym_is, - STATE(2613), 1, + ACTIONS(7312), 1, + anon_sym_QMARK, + STATE(2605), 1, sym_bracketed_argument_list, - STATE(3259), 1, + STATE(3348), 1, sym_argument_list, - ACTIONS(5287), 2, + ACTIONS(5240), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7324), 2, + ACTIONS(7061), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7328), 2, + ACTIONS(7063), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7330), 2, + ACTIONS(7065), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7340), 2, + ACTIONS(7071), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7344), 2, + ACTIONS(7075), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7346), 2, + ACTIONS(7077), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5767), 4, + ACTIONS(5652), 4, anon_sym_and, anon_sym_or, anon_sym_into, - anon_sym_equals, - STATE(4736), 9, + anon_sym_by, + STATE(4676), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -608684,7 +602750,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [97710] = 22, + [91352] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -608705,67 +602771,85 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4100), 1, + ACTIONS(4092), 1, anon_sym_DOT, - ACTIONS(4102), 1, + ACTIONS(4094), 1, anon_sym_DASH_GT, - ACTIONS(5264), 1, + ACTIONS(5227), 1, anon_sym_LPAREN, - ACTIONS(5302), 1, + ACTIONS(5236), 1, anon_sym_LBRACK, - ACTIONS(5304), 1, + ACTIONS(5238), 1, anon_sym_BANG, + ACTIONS(6017), 1, + anon_sym_switch, + ACTIONS(6031), 1, + anon_sym_with, + ACTIONS(7067), 1, + anon_sym_SLASH, + ACTIONS(7069), 1, + anon_sym_AMP, ACTIONS(7073), 1, + anon_sym_GT_GT, + ACTIONS(7079), 1, anon_sym_DOT_DOT, - STATE(2808), 1, + ACTIONS(7081), 1, + anon_sym_as, + ACTIONS(7083), 1, + anon_sym_is, + ACTIONS(7085), 1, + anon_sym_CARET, + ACTIONS(7087), 1, + anon_sym_PIPE, + ACTIONS(7089), 1, + anon_sym_AMP_AMP, + ACTIONS(7091), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7093), 1, + anon_sym_QMARK_QMARK, + ACTIONS(7312), 1, + anon_sym_QMARK, + STATE(2605), 1, sym_bracketed_argument_list, - STATE(3487), 1, + STATE(3348), 1, sym_argument_list, - ACTIONS(5306), 2, + ACTIONS(5240), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1223), 9, + ACTIONS(7061), 2, anon_sym_LT, anon_sym_GT, - anon_sym_QMARK, + ACTIONS(7063), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT_GT, - STATE(4737), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - ACTIONS(1221), 20, - anon_sym_COLON, + ACTIONS(7065), 2, anon_sym_STAR, anon_sym_PERCENT, - anon_sym_CARET, + ACTIONS(7071), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, + ACTIONS(7075), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + ACTIONS(7077), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - anon_sym_switch, - anon_sym_when, + ACTIONS(5801), 4, 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, - [97813] = 22, + anon_sym_into, + anon_sym_by, + 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, + [91491] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -608786,36 +602870,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4075), 1, - anon_sym_DOT, - ACTIONS(4077), 1, - anon_sym_DASH_GT, - ACTIONS(5247), 1, - anon_sym_LPAREN, - ACTIONS(5283), 1, - anon_sym_LBRACK, - ACTIONS(5285), 1, - anon_sym_BANG, - ACTIONS(7177), 1, - anon_sym_DOT_DOT, - STATE(2613), 1, - sym_bracketed_argument_list, - STATE(3259), 1, - sym_argument_list, - ACTIONS(5287), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1223), 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(4738), 9, + ACTIONS(7314), 1, + anon_sym_and, + STATE(4678), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -608825,7 +602882,27 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(1221), 20, + ACTIONS(6097), 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(6095), 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, @@ -608836,17 +602913,16 @@ 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_by, anon_sym_as, anon_sym_is, + anon_sym_DASH_GT, anon_sym_with, - [97916] = 24, + [91578] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -608867,40 +602943,75 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4075), 1, + ACTIONS(4042), 1, anon_sym_DOT, - ACTIONS(4077), 1, + ACTIONS(4044), 1, anon_sym_DASH_GT, - ACTIONS(5247), 1, + ACTIONS(5257), 1, anon_sym_LPAREN, - ACTIONS(5283), 1, - anon_sym_LBRACK, - ACTIONS(5285), 1, + ACTIONS(5302), 1, anon_sym_BANG, - ACTIONS(6147), 1, + ACTIONS(5549), 1, + anon_sym_LBRACK, + ACTIONS(6355), 1, anon_sym_switch, - ACTIONS(6161), 1, + ACTIONS(6369), 1, anon_sym_with, - ACTIONS(7129), 1, + ACTIONS(6811), 1, + anon_sym_as, + ACTIONS(7231), 1, + anon_sym_QMARK, + ACTIONS(7237), 1, + anon_sym_SLASH, + ACTIONS(7239), 1, + anon_sym_CARET, + ACTIONS(7241), 1, + anon_sym_PIPE, + ACTIONS(7243), 1, + anon_sym_AMP, + ACTIONS(7247), 1, + anon_sym_GT_GT, + ACTIONS(7253), 1, anon_sym_DOT_DOT, - STATE(2613), 1, + ACTIONS(7255), 1, + anon_sym_AMP_AMP, + ACTIONS(7257), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7259), 1, + anon_sym_QMARK_QMARK, + ACTIONS(7261), 1, + anon_sym_is, + STATE(2467), 1, sym_bracketed_argument_list, - STATE(3259), 1, + STATE(3381), 1, sym_argument_list, - ACTIONS(5287), 2, + ACTIONS(5304), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5664), 9, + ACTIONS(7229), 2, 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(4739), 9, + ACTIONS(7235), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(7245), 2, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + ACTIONS(7249), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(7251), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(5801), 4, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_RBRACE, + STATE(4679), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -608910,26 +603021,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5660), 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_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, - [98023] = 34, + [91717] = 22, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -608950,69 +603042,36 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4075), 1, + ACTIONS(4042), 1, anon_sym_DOT, - ACTIONS(4077), 1, + ACTIONS(4044), 1, anon_sym_DASH_GT, - ACTIONS(5247), 1, + ACTIONS(5257), 1, anon_sym_LPAREN, - ACTIONS(5283), 1, - anon_sym_LBRACK, - ACTIONS(5285), 1, + ACTIONS(5302), 1, anon_sym_BANG, - ACTIONS(6147), 1, - anon_sym_switch, - ACTIONS(6161), 1, - anon_sym_with, - ACTIONS(7177), 1, + ACTIONS(5549), 1, + anon_sym_LBRACK, + ACTIONS(6991), 1, anon_sym_DOT_DOT, - ACTIONS(7286), 1, - anon_sym_SLASH, - ACTIONS(7290), 1, - anon_sym_GT_GT, - ACTIONS(7316), 1, - anon_sym_as, - ACTIONS(7318), 1, - anon_sym_is, - STATE(2613), 1, + STATE(2467), 1, sym_bracketed_argument_list, - STATE(3259), 1, + STATE(3381), 1, sym_argument_list, - ACTIONS(5287), 2, + ACTIONS(5304), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7282), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(7284), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(7288), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - ACTIONS(7296), 2, + ACTIONS(1161), 9, anon_sym_LT, anon_sym_GT, - ACTIONS(7306), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(7308), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(5664), 3, anon_sym_QMARK, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, anon_sym_PIPE, anon_sym_AMP, - ACTIONS(5660), 8, - anon_sym_CARET, - anon_sym_and, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_QMARK_QMARK, - anon_sym_into, - anon_sym_by, - STATE(4740), 9, + anon_sym_GT_GT, + STATE(4680), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -609022,7 +603081,28 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [98150] = 40, + ACTIONS(1147), 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, + 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, + [91820] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -609043,110 +603123,75 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4075), 1, + ACTIONS(4427), 1, anon_sym_DOT, - ACTIONS(4077), 1, + ACTIONS(4429), 1, anon_sym_DASH_GT, - ACTIONS(5247), 1, + ACTIONS(6557), 1, anon_sym_LPAREN, - ACTIONS(5283), 1, + ACTIONS(6607), 1, anon_sym_LBRACK, - ACTIONS(5285), 1, + ACTIONS(6613), 1, anon_sym_BANG, - ACTIONS(6147), 1, + ACTIONS(6637), 1, anon_sym_switch, - ACTIONS(6157), 1, + ACTIONS(6647), 1, anon_sym_as, - ACTIONS(6161), 1, + ACTIONS(6651), 1, anon_sym_with, - ACTIONS(7091), 1, + ACTIONS(7035), 1, anon_sym_SLASH, - ACTIONS(7093), 1, - anon_sym_CARET, - ACTIONS(7095), 1, - anon_sym_PIPE, - ACTIONS(7097), 1, + ACTIONS(7037), 1, anon_sym_AMP, - ACTIONS(7101), 1, + ACTIONS(7041), 1, anon_sym_GT_GT, - ACTIONS(7107), 1, + ACTIONS(7047), 1, anon_sym_DOT_DOT, - ACTIONS(7109), 1, - anon_sym_AMP_AMP, - ACTIONS(7111), 1, + ACTIONS(7049), 1, anon_sym_is, - ACTIONS(7113), 1, + ACTIONS(7051), 1, + anon_sym_CARET, + ACTIONS(7053), 1, + anon_sym_PIPE, + ACTIONS(7055), 1, + anon_sym_AMP_AMP, + ACTIONS(7057), 1, anon_sym_PIPE_PIPE, - ACTIONS(7115), 1, + ACTIONS(7059), 1, anon_sym_QMARK_QMARK, - ACTIONS(7117), 1, + ACTIONS(7277), 1, anon_sym_QMARK, - STATE(2613), 1, + STATE(3188), 1, sym_bracketed_argument_list, - STATE(3259), 1, + STATE(4584), 1, sym_argument_list, - ACTIONS(5287), 2, + ACTIONS(6615), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7085), 2, + ACTIONS(7029), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7087), 2, + ACTIONS(7031), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7089), 2, + ACTIONS(7033), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7099), 2, + ACTIONS(7039), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7103), 2, + ACTIONS(7043), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7105), 2, + ACTIONS(7045), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5858), 4, - anon_sym_EQ_GT, - anon_sym_and, - anon_sym_or, + ACTIONS(5709), 4, + sym_interpolation_close_brace, + anon_sym_COLON, + anon_sym_COMMA, anon_sym_into, - STATE(4741), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - [98289] = 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(7320), 1, - anon_sym_and, - ACTIONS(7384), 1, - anon_sym_or, - STATE(4742), 9, + STATE(4681), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -609156,46 +603201,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5356), 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(5354), 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, - [98378] = 33, + [91959] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -609216,57 +603222,75 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4075), 1, + ACTIONS(4042), 1, anon_sym_DOT, - ACTIONS(4077), 1, + ACTIONS(4044), 1, anon_sym_DASH_GT, - ACTIONS(5247), 1, + ACTIONS(5257), 1, anon_sym_LPAREN, - ACTIONS(5283), 1, + ACTIONS(5300), 1, anon_sym_LBRACK, - ACTIONS(5285), 1, + ACTIONS(5302), 1, anon_sym_BANG, - ACTIONS(6147), 1, + ACTIONS(6495), 1, anon_sym_switch, - ACTIONS(6161), 1, + ACTIONS(6509), 1, anon_sym_with, - ACTIONS(7177), 1, - anon_sym_DOT_DOT, - ACTIONS(7286), 1, + ACTIONS(6995), 1, + anon_sym_QMARK, + ACTIONS(7001), 1, anon_sym_SLASH, - ACTIONS(7290), 1, + ACTIONS(7003), 1, + anon_sym_CARET, + ACTIONS(7005), 1, + anon_sym_PIPE, + ACTIONS(7007), 1, + anon_sym_AMP, + ACTIONS(7011), 1, anon_sym_GT_GT, - ACTIONS(7316), 1, + ACTIONS(7017), 1, + anon_sym_DOT_DOT, + ACTIONS(7019), 1, + anon_sym_AMP_AMP, + ACTIONS(7021), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7023), 1, + anon_sym_QMARK_QMARK, + ACTIONS(7025), 1, anon_sym_as, - ACTIONS(7318), 1, + ACTIONS(7027), 1, anon_sym_is, - STATE(2613), 1, + STATE(2759), 1, sym_bracketed_argument_list, - STATE(3259), 1, + STATE(3381), 1, sym_argument_list, - ACTIONS(5287), 2, + ACTIONS(5304), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7282), 2, + ACTIONS(6993), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(6997), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7284), 2, + ACTIONS(6999), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7288), 2, + ACTIONS(7009), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7296), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(7308), 2, + ACTIONS(7013), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(7015), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5664), 3, - anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_AMP, - STATE(4743), 9, + ACTIONS(5865), 4, + anon_sym_EQ_GT, + anon_sym_when, + anon_sym_and, + anon_sym_or, + STATE(4682), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -609276,18 +603300,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5660), 10, - 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, - anon_sym_by, - [98503] = 15, + [92098] = 22, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -609308,41 +603321,49 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(7320), 1, - anon_sym_and, - ACTIONS(7384), 1, - anon_sym_or, - STATE(4744), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - ACTIONS(6207), 11, + ACTIONS(4427), 1, + anon_sym_DOT, + ACTIONS(4429), 1, + anon_sym_DASH_GT, + ACTIONS(6557), 1, + anon_sym_LPAREN, + ACTIONS(6607), 1, + anon_sym_LBRACK, + ACTIONS(6613), 1, + anon_sym_BANG, + ACTIONS(7047), 1, + anon_sym_DOT_DOT, + STATE(3188), 1, + sym_bracketed_argument_list, + STATE(4584), 1, + sym_argument_list, + ACTIONS(6615), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5743), 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(6205), 26, - anon_sym_LBRACK, + STATE(4683), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + ACTIONS(5741), 20, + sym_interpolation_close_brace, 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, @@ -609353,15 +603374,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_into, anon_sym_as, anon_sym_is, - anon_sym_DASH_GT, anon_sym_with, - [98592] = 40, + [92201] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -609382,75 +603402,75 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4075), 1, + ACTIONS(4427), 1, anon_sym_DOT, - ACTIONS(4077), 1, + ACTIONS(4429), 1, anon_sym_DASH_GT, - ACTIONS(5247), 1, + ACTIONS(6557), 1, anon_sym_LPAREN, - ACTIONS(5283), 1, + ACTIONS(6607), 1, anon_sym_LBRACK, - ACTIONS(5285), 1, + ACTIONS(6613), 1, anon_sym_BANG, - ACTIONS(6147), 1, + ACTIONS(6637), 1, anon_sym_switch, - ACTIONS(6161), 1, + ACTIONS(6647), 1, + anon_sym_as, + ACTIONS(6651), 1, anon_sym_with, - ACTIONS(7123), 1, + ACTIONS(7035), 1, anon_sym_SLASH, - ACTIONS(7127), 1, + ACTIONS(7037), 1, + anon_sym_AMP, + ACTIONS(7041), 1, anon_sym_GT_GT, - ACTIONS(7129), 1, + ACTIONS(7047), 1, anon_sym_DOT_DOT, - ACTIONS(7362), 1, - anon_sym_QMARK, - ACTIONS(7364), 1, + ACTIONS(7049), 1, + anon_sym_is, + ACTIONS(7051), 1, anon_sym_CARET, - ACTIONS(7366), 1, + ACTIONS(7053), 1, anon_sym_PIPE, - ACTIONS(7368), 1, - anon_sym_AMP, - ACTIONS(7374), 1, + ACTIONS(7055), 1, anon_sym_AMP_AMP, - ACTIONS(7376), 1, + ACTIONS(7057), 1, anon_sym_PIPE_PIPE, - ACTIONS(7378), 1, + ACTIONS(7059), 1, anon_sym_QMARK_QMARK, - ACTIONS(7380), 1, - anon_sym_as, - ACTIONS(7382), 1, - anon_sym_is, - STATE(2613), 1, + ACTIONS(7277), 1, + anon_sym_QMARK, + STATE(3188), 1, sym_bracketed_argument_list, - STATE(3259), 1, + STATE(4584), 1, sym_argument_list, - ACTIONS(5287), 2, + ACTIONS(6615), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7119), 2, + ACTIONS(7029), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(7031), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7121), 2, + ACTIONS(7033), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7125), 2, + ACTIONS(7039), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7360), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(7370), 2, + ACTIONS(7043), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7372), 2, + ACTIONS(7045), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5745), 4, - anon_sym_and, - anon_sym_or, + ACTIONS(5849), 4, + sym_interpolation_close_brace, + anon_sym_COLON, + anon_sym_COMMA, anon_sym_into, - anon_sym_on, - STATE(4745), 9, + STATE(4684), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -609460,7 +603480,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [98731] = 35, + [92340] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -609481,70 +603501,75 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4075), 1, + ACTIONS(4092), 1, anon_sym_DOT, - ACTIONS(4077), 1, + ACTIONS(4094), 1, anon_sym_DASH_GT, - ACTIONS(5247), 1, + ACTIONS(5227), 1, anon_sym_LPAREN, - ACTIONS(5283), 1, + ACTIONS(5236), 1, anon_sym_LBRACK, - ACTIONS(5285), 1, + ACTIONS(5238), 1, anon_sym_BANG, - ACTIONS(6147), 1, + ACTIONS(6017), 1, anon_sym_switch, - ACTIONS(6157), 1, + ACTIONS(6027), 1, anon_sym_as, - ACTIONS(6161), 1, + ACTIONS(6031), 1, anon_sym_with, - ACTIONS(7091), 1, + ACTIONS(7269), 1, anon_sym_SLASH, - ACTIONS(7097), 1, - anon_sym_AMP, - ACTIONS(7101), 1, + ACTIONS(7273), 1, anon_sym_GT_GT, - ACTIONS(7107), 1, + ACTIONS(7275), 1, anon_sym_DOT_DOT, - ACTIONS(7111), 1, + ACTIONS(7292), 1, + anon_sym_QMARK, + ACTIONS(7294), 1, + anon_sym_CARET, + ACTIONS(7296), 1, + anon_sym_PIPE, + ACTIONS(7298), 1, + anon_sym_AMP, + ACTIONS(7304), 1, + anon_sym_AMP_AMP, + ACTIONS(7306), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7308), 1, + anon_sym_QMARK_QMARK, + ACTIONS(7310), 1, anon_sym_is, - STATE(2613), 1, + STATE(2605), 1, sym_bracketed_argument_list, - STATE(3259), 1, + STATE(3348), 1, sym_argument_list, - ACTIONS(5287), 2, + ACTIONS(5240), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5664), 2, - anon_sym_QMARK, - anon_sym_PIPE, - ACTIONS(7085), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(7087), 2, + ACTIONS(7265), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7089), 2, + ACTIONS(7267), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7099), 2, + ACTIONS(7271), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7103), 2, + ACTIONS(7290), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(7300), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7105), 2, + ACTIONS(7302), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5660), 8, - anon_sym_CARET, + ACTIONS(5733), 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(4746), 9, + STATE(4685), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -609554,7 +603579,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [98860] = 40, + [92479] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -609575,75 +603600,75 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4075), 1, + ACTIONS(4427), 1, anon_sym_DOT, - ACTIONS(4077), 1, + ACTIONS(4429), 1, anon_sym_DASH_GT, - ACTIONS(5247), 1, + ACTIONS(6557), 1, anon_sym_LPAREN, - ACTIONS(5283), 1, + ACTIONS(6607), 1, anon_sym_LBRACK, - ACTIONS(5285), 1, + ACTIONS(6613), 1, anon_sym_BANG, - ACTIONS(6147), 1, + ACTIONS(6637), 1, anon_sym_switch, - ACTIONS(6161), 1, + ACTIONS(6647), 1, + anon_sym_as, + ACTIONS(6651), 1, anon_sym_with, - ACTIONS(7123), 1, + ACTIONS(7035), 1, anon_sym_SLASH, - ACTIONS(7127), 1, + ACTIONS(7037), 1, + anon_sym_AMP, + ACTIONS(7041), 1, anon_sym_GT_GT, - ACTIONS(7129), 1, + ACTIONS(7047), 1, anon_sym_DOT_DOT, - ACTIONS(7362), 1, - anon_sym_QMARK, - ACTIONS(7364), 1, + ACTIONS(7049), 1, + anon_sym_is, + ACTIONS(7051), 1, anon_sym_CARET, - ACTIONS(7366), 1, + ACTIONS(7053), 1, anon_sym_PIPE, - ACTIONS(7368), 1, - anon_sym_AMP, - ACTIONS(7374), 1, + ACTIONS(7055), 1, anon_sym_AMP_AMP, - ACTIONS(7376), 1, + ACTIONS(7057), 1, anon_sym_PIPE_PIPE, - ACTIONS(7378), 1, + ACTIONS(7059), 1, anon_sym_QMARK_QMARK, - ACTIONS(7380), 1, - anon_sym_as, - ACTIONS(7382), 1, - anon_sym_is, - STATE(2613), 1, + ACTIONS(7277), 1, + anon_sym_QMARK, + STATE(3188), 1, sym_bracketed_argument_list, - STATE(3259), 1, + STATE(4584), 1, sym_argument_list, - ACTIONS(5287), 2, + ACTIONS(6615), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7119), 2, + ACTIONS(7029), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(7031), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7121), 2, + ACTIONS(7033), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7125), 2, + ACTIONS(7039), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7360), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(7370), 2, + ACTIONS(7043), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7372), 2, + ACTIONS(7045), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5767), 4, - anon_sym_and, - anon_sym_or, + ACTIONS(4996), 4, + sym_interpolation_close_brace, + anon_sym_COLON, + anon_sym_COMMA, anon_sym_into, - anon_sym_on, - STATE(4747), 9, + STATE(4686), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -609653,7 +603678,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [98999] = 22, + [92618] = 24, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -609674,26 +603699,30 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4075), 1, + ACTIONS(4042), 1, anon_sym_DOT, - ACTIONS(4077), 1, + ACTIONS(4044), 1, anon_sym_DASH_GT, - ACTIONS(5247), 1, + ACTIONS(5257), 1, anon_sym_LPAREN, - ACTIONS(5283), 1, + ACTIONS(5300), 1, anon_sym_LBRACK, - ACTIONS(5285), 1, + ACTIONS(5302), 1, anon_sym_BANG, - ACTIONS(7348), 1, + ACTIONS(6495), 1, + anon_sym_switch, + ACTIONS(6509), 1, + anon_sym_with, + ACTIONS(7017), 1, anon_sym_DOT_DOT, - STATE(2613), 1, + STATE(2759), 1, sym_bracketed_argument_list, - STATE(3259), 1, + STATE(3381), 1, sym_argument_list, - ACTIONS(5287), 2, + ACTIONS(5304), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1223), 9, + ACTIONS(5739), 9, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, @@ -609703,7 +603732,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_AMP, anon_sym_GT_GT, - STATE(4748), 9, + STATE(4687), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -609713,7 +603742,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(1221), 20, + ACTIONS(5737), 18, anon_sym_STAR, anon_sym_PERCENT, anon_sym_CARET, @@ -609723,18 +603752,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_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_equals, anon_sym_as, anon_sym_is, - anon_sym_with, - [99102] = 24, + [92725] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -609755,69 +603782,85 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4075), 1, + ACTIONS(4427), 1, anon_sym_DOT, - ACTIONS(4077), 1, + ACTIONS(4429), 1, anon_sym_DASH_GT, - ACTIONS(5247), 1, + ACTIONS(6557), 1, anon_sym_LPAREN, - ACTIONS(5283), 1, + ACTIONS(6607), 1, anon_sym_LBRACK, - ACTIONS(5285), 1, + ACTIONS(6613), 1, anon_sym_BANG, - ACTIONS(6147), 1, + ACTIONS(6637), 1, anon_sym_switch, - ACTIONS(6161), 1, + ACTIONS(6647), 1, + anon_sym_as, + ACTIONS(6651), 1, anon_sym_with, - ACTIONS(7107), 1, + ACTIONS(7035), 1, + anon_sym_SLASH, + ACTIONS(7037), 1, + anon_sym_AMP, + ACTIONS(7041), 1, + anon_sym_GT_GT, + ACTIONS(7047), 1, anon_sym_DOT_DOT, - STATE(2613), 1, + ACTIONS(7049), 1, + anon_sym_is, + ACTIONS(7051), 1, + anon_sym_CARET, + ACTIONS(7053), 1, + anon_sym_PIPE, + ACTIONS(7055), 1, + anon_sym_AMP_AMP, + ACTIONS(7057), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7059), 1, + anon_sym_QMARK_QMARK, + ACTIONS(7277), 1, + anon_sym_QMARK, + STATE(3188), 1, sym_bracketed_argument_list, - STATE(3259), 1, + STATE(4584), 1, sym_argument_list, - ACTIONS(5287), 2, + ACTIONS(6615), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5664), 9, + ACTIONS(7029), 2, anon_sym_LT, anon_sym_GT, - anon_sym_QMARK, + ACTIONS(7031), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT_GT, - STATE(4749), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - ACTIONS(5660), 18, + ACTIONS(7033), 2, anon_sym_STAR, anon_sym_PERCENT, - anon_sym_CARET, + ACTIONS(7039), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, + ACTIONS(7043), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + ACTIONS(7045), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - anon_sym_EQ_GT, - anon_sym_and, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_QMARK_QMARK, + ACTIONS(5652), 4, + sym_interpolation_close_brace, + anon_sym_COLON, + anon_sym_COMMA, anon_sym_into, - anon_sym_as, - anon_sym_is, - [99209] = 27, + STATE(4688), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + [92864] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -609838,39 +603881,75 @@ 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(5024), 1, + ACTIONS(4092), 1, + anon_sym_DOT, + ACTIONS(4094), 1, + anon_sym_DASH_GT, + ACTIONS(5227), 1, + anon_sym_LPAREN, + ACTIONS(5236), 1, anon_sym_LBRACK, - ACTIONS(5040), 1, - aux_sym_preproc_if_token1, - ACTIONS(7173), 1, - aux_sym_preproc_else_token1, - ACTIONS(7175), 1, - aux_sym_preproc_elif_token1, - ACTIONS(7386), 1, - aux_sym_preproc_if_token3, - STATE(2175), 1, - sym__reserved_identifier, - STATE(5786), 1, - aux_sym__class_declaration_initializer_repeat1, - STATE(5812), 1, - sym_attribute_list, - STATE(5934), 1, - sym_preproc_if_in_attribute_list, - STATE(6051), 1, - sym__attribute_list, - STATE(6500), 1, - sym_enum_member_declaration, - STATE(6642), 1, - sym_identifier, - STATE(7359), 2, - sym_preproc_else_in_attribute_list, - sym_preproc_elif_in_attribute_list, - STATE(7741), 2, - sym_preproc_else_in_enum_member_declaration, - sym_preproc_elif_in_enum_member_declaration, - STATE(4750), 9, + ACTIONS(5238), 1, + anon_sym_BANG, + ACTIONS(6017), 1, + anon_sym_switch, + ACTIONS(6027), 1, + anon_sym_as, + ACTIONS(6031), 1, + anon_sym_with, + ACTIONS(7269), 1, + anon_sym_SLASH, + ACTIONS(7273), 1, + anon_sym_GT_GT, + ACTIONS(7275), 1, + anon_sym_DOT_DOT, + ACTIONS(7292), 1, + anon_sym_QMARK, + ACTIONS(7294), 1, + anon_sym_CARET, + ACTIONS(7296), 1, + anon_sym_PIPE, + ACTIONS(7298), 1, + anon_sym_AMP, + ACTIONS(7304), 1, + anon_sym_AMP_AMP, + ACTIONS(7306), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7308), 1, + anon_sym_QMARK_QMARK, + ACTIONS(7310), 1, + anon_sym_is, + STATE(2605), 1, + sym_bracketed_argument_list, + STATE(3348), 1, + sym_argument_list, + ACTIONS(5240), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7265), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(7267), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(7271), 2, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + ACTIONS(7290), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(7300), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(7302), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(5855), 4, + anon_sym_EQ_GT, + anon_sym_and, + anon_sym_or, + anon_sym_into, + STATE(4689), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -609880,30 +603959,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, - [99322] = 40, + [93003] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -609924,75 +603980,75 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4100), 1, + ACTIONS(4092), 1, anon_sym_DOT, - ACTIONS(4102), 1, + ACTIONS(4094), 1, anon_sym_DASH_GT, - ACTIONS(5264), 1, + ACTIONS(5227), 1, anon_sym_LPAREN, - ACTIONS(5304), 1, - anon_sym_BANG, - ACTIONS(5573), 1, + ACTIONS(5236), 1, anon_sym_LBRACK, - ACTIONS(6343), 1, + ACTIONS(5238), 1, + anon_sym_BANG, + ACTIONS(6017), 1, anon_sym_switch, - ACTIONS(6357), 1, + ACTIONS(6031), 1, anon_sym_with, - ACTIONS(7019), 1, + ACTIONS(7067), 1, anon_sym_SLASH, - ACTIONS(7021), 1, - anon_sym_CARET, - ACTIONS(7023), 1, - anon_sym_PIPE, - ACTIONS(7025), 1, + ACTIONS(7069), 1, anon_sym_AMP, - ACTIONS(7029), 1, + ACTIONS(7073), 1, anon_sym_GT_GT, - ACTIONS(7035), 1, + ACTIONS(7079), 1, anon_sym_DOT_DOT, - ACTIONS(7037), 1, + ACTIONS(7081), 1, anon_sym_as, - ACTIONS(7039), 1, + ACTIONS(7083), 1, anon_sym_is, - ACTIONS(7041), 1, + ACTIONS(7085), 1, + anon_sym_CARET, + ACTIONS(7087), 1, + anon_sym_PIPE, + ACTIONS(7089), 1, anon_sym_AMP_AMP, - ACTIONS(7043), 1, + ACTIONS(7091), 1, anon_sym_PIPE_PIPE, - ACTIONS(7045), 1, + ACTIONS(7093), 1, anon_sym_QMARK_QMARK, - ACTIONS(7047), 1, + ACTIONS(7312), 1, anon_sym_QMARK, - STATE(2485), 1, + STATE(2605), 1, sym_bracketed_argument_list, - STATE(3487), 1, + STATE(3348), 1, sym_argument_list, - ACTIONS(5306), 2, + ACTIONS(5240), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7013), 2, + ACTIONS(7061), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7015), 2, + ACTIONS(7063), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7017), 2, + ACTIONS(7065), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7027), 2, + ACTIONS(7071), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7031), 2, + ACTIONS(7075), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7033), 2, + ACTIONS(7077), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5899), 4, - anon_sym_COLON, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_RBRACE, - STATE(4751), 9, + ACTIONS(5865), 4, + anon_sym_and, + anon_sym_or, + anon_sym_into, + anon_sym_by, + STATE(4690), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -610002,7 +604058,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [99461] = 22, + [93142] = 22, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -610023,26 +604079,26 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4100), 1, + ACTIONS(4042), 1, anon_sym_DOT, - ACTIONS(4102), 1, + ACTIONS(4044), 1, anon_sym_DASH_GT, - ACTIONS(5264), 1, + ACTIONS(5257), 1, anon_sym_LPAREN, - ACTIONS(5304), 1, - anon_sym_BANG, - ACTIONS(5573), 1, + ACTIONS(5300), 1, anon_sym_LBRACK, - ACTIONS(7035), 1, + ACTIONS(5302), 1, + anon_sym_BANG, + ACTIONS(7017), 1, anon_sym_DOT_DOT, - STATE(2485), 1, + STATE(2759), 1, sym_bracketed_argument_list, - STATE(3487), 1, + STATE(3381), 1, sym_argument_list, - ACTIONS(5306), 2, + ACTIONS(5304), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1223), 9, + ACTIONS(1161), 9, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, @@ -610052,7 +604108,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_AMP, anon_sym_GT_GT, - STATE(4752), 9, + STATE(4691), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -610062,11 +604118,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(1221), 20, - anon_sym_COLON, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_RBRACE, + ACTIONS(1147), 20, anon_sym_STAR, anon_sym_PERCENT, anon_sym_CARET, @@ -610076,14 +604128,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_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, anon_sym_with, - [99564] = 37, + [93245] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -610104,72 +604160,75 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4075), 1, + ACTIONS(4092), 1, anon_sym_DOT, - ACTIONS(4077), 1, + ACTIONS(4094), 1, anon_sym_DASH_GT, - ACTIONS(5247), 1, + ACTIONS(5227), 1, anon_sym_LPAREN, - ACTIONS(5283), 1, + ACTIONS(5236), 1, anon_sym_LBRACK, - ACTIONS(5285), 1, + ACTIONS(5238), 1, anon_sym_BANG, - ACTIONS(5664), 1, - anon_sym_QMARK, - ACTIONS(6147), 1, + ACTIONS(6017), 1, anon_sym_switch, - ACTIONS(6161), 1, + ACTIONS(6031), 1, anon_sym_with, - ACTIONS(7177), 1, - anon_sym_DOT_DOT, - ACTIONS(7286), 1, + ACTIONS(7167), 1, anon_sym_SLASH, - ACTIONS(7290), 1, + ACTIONS(7171), 1, anon_sym_GT_GT, - ACTIONS(7300), 1, + ACTIONS(7173), 1, + anon_sym_DOT_DOT, + ACTIONS(7318), 1, + anon_sym_QMARK, + ACTIONS(7320), 1, anon_sym_CARET, - ACTIONS(7302), 1, + ACTIONS(7322), 1, anon_sym_PIPE, - ACTIONS(7304), 1, + ACTIONS(7324), 1, anon_sym_AMP, - ACTIONS(7316), 1, + ACTIONS(7330), 1, + anon_sym_AMP_AMP, + ACTIONS(7332), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7334), 1, + anon_sym_QMARK_QMARK, + ACTIONS(7336), 1, anon_sym_as, - ACTIONS(7318), 1, + ACTIONS(7338), 1, anon_sym_is, - STATE(2613), 1, + STATE(2605), 1, sym_bracketed_argument_list, - STATE(3259), 1, + STATE(3348), 1, sym_argument_list, - ACTIONS(5287), 2, + ACTIONS(5240), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7282), 2, + ACTIONS(7163), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7284), 2, + ACTIONS(7165), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7288), 2, + ACTIONS(7169), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7296), 2, + ACTIONS(7316), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7306), 2, + ACTIONS(7326), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7308), 2, + ACTIONS(7328), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5660), 7, + ACTIONS(5709), 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, - STATE(4753), 9, + anon_sym_equals, + STATE(4692), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -610179,7 +604238,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [99697] = 38, + [93384] = 35, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -610200,73 +604259,70 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4075), 1, + ACTIONS(4092), 1, anon_sym_DOT, - ACTIONS(4077), 1, + ACTIONS(4094), 1, anon_sym_DASH_GT, - ACTIONS(5247), 1, + ACTIONS(5227), 1, anon_sym_LPAREN, - ACTIONS(5283), 1, + ACTIONS(5236), 1, anon_sym_LBRACK, - ACTIONS(5285), 1, + ACTIONS(5238), 1, anon_sym_BANG, - ACTIONS(5664), 1, - anon_sym_QMARK, - ACTIONS(6147), 1, + ACTIONS(6017), 1, anon_sym_switch, - ACTIONS(6161), 1, + ACTIONS(6031), 1, anon_sym_with, - ACTIONS(7177), 1, - anon_sym_DOT_DOT, - ACTIONS(7286), 1, + ACTIONS(7167), 1, anon_sym_SLASH, - ACTIONS(7290), 1, + ACTIONS(7171), 1, anon_sym_GT_GT, - ACTIONS(7300), 1, - anon_sym_CARET, - ACTIONS(7302), 1, - anon_sym_PIPE, - ACTIONS(7304), 1, + ACTIONS(7173), 1, + anon_sym_DOT_DOT, + ACTIONS(7324), 1, anon_sym_AMP, - ACTIONS(7310), 1, - anon_sym_AMP_AMP, - ACTIONS(7316), 1, + ACTIONS(7336), 1, anon_sym_as, - ACTIONS(7318), 1, + ACTIONS(7338), 1, anon_sym_is, - STATE(2613), 1, + STATE(2605), 1, sym_bracketed_argument_list, - STATE(3259), 1, + STATE(3348), 1, sym_argument_list, - ACTIONS(5287), 2, + ACTIONS(5240), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7282), 2, + ACTIONS(5739), 2, + anon_sym_QMARK, + anon_sym_PIPE, + ACTIONS(7163), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7284), 2, + ACTIONS(7165), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7288), 2, + ACTIONS(7169), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7296), 2, + ACTIONS(7316), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7306), 2, + ACTIONS(7326), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7308), 2, + ACTIONS(7328), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5660), 6, + ACTIONS(5737), 8, + anon_sym_CARET, anon_sym_and, anon_sym_or, + anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_QMARK_QMARK, anon_sym_into, - anon_sym_by, - STATE(4754), 9, + anon_sym_equals, + STATE(4693), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -610276,7 +604332,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [99832] = 40, + [93513] = 36, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -610297,75 +604353,71 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4075), 1, + ACTIONS(4092), 1, anon_sym_DOT, - ACTIONS(4077), 1, + ACTIONS(4094), 1, anon_sym_DASH_GT, - ACTIONS(5247), 1, + ACTIONS(5227), 1, anon_sym_LPAREN, - ACTIONS(5283), 1, + ACTIONS(5236), 1, anon_sym_LBRACK, - ACTIONS(5285), 1, + ACTIONS(5238), 1, anon_sym_BANG, - ACTIONS(5664), 1, - anon_sym_QMARK, - ACTIONS(6147), 1, + ACTIONS(6017), 1, anon_sym_switch, - ACTIONS(6161), 1, + ACTIONS(6031), 1, anon_sym_with, - ACTIONS(7177), 1, - anon_sym_DOT_DOT, - ACTIONS(7286), 1, + ACTIONS(7167), 1, anon_sym_SLASH, - ACTIONS(7290), 1, + ACTIONS(7171), 1, anon_sym_GT_GT, - ACTIONS(7300), 1, + ACTIONS(7173), 1, + anon_sym_DOT_DOT, + ACTIONS(7320), 1, anon_sym_CARET, - ACTIONS(7302), 1, - anon_sym_PIPE, - ACTIONS(7304), 1, + ACTIONS(7324), 1, anon_sym_AMP, - ACTIONS(7310), 1, - anon_sym_AMP_AMP, - ACTIONS(7312), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7314), 1, - anon_sym_QMARK_QMARK, - ACTIONS(7316), 1, + ACTIONS(7336), 1, anon_sym_as, - ACTIONS(7318), 1, + ACTIONS(7338), 1, anon_sym_is, - STATE(2613), 1, + STATE(2605), 1, sym_bracketed_argument_list, - STATE(3259), 1, + STATE(3348), 1, sym_argument_list, - ACTIONS(5287), 2, + ACTIONS(5240), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7282), 2, + ACTIONS(5739), 2, + anon_sym_QMARK, + anon_sym_PIPE, + ACTIONS(7163), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7284), 2, + ACTIONS(7165), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7288), 2, + ACTIONS(7169), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7296), 2, + ACTIONS(7316), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7306), 2, + ACTIONS(7326), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7308), 2, + ACTIONS(7328), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5660), 4, + ACTIONS(5737), 7, anon_sym_and, anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, anon_sym_into, - anon_sym_by, - STATE(4755), 9, + anon_sym_equals, + STATE(4694), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -610375,7 +604427,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [99971] = 22, + [93644] = 34, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -610396,67 +604448,79 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4075), 1, + ACTIONS(4092), 1, anon_sym_DOT, - ACTIONS(4077), 1, + ACTIONS(4094), 1, anon_sym_DASH_GT, - ACTIONS(5247), 1, + ACTIONS(5227), 1, anon_sym_LPAREN, - ACTIONS(5283), 1, + ACTIONS(5236), 1, anon_sym_LBRACK, - ACTIONS(5285), 1, + ACTIONS(5238), 1, anon_sym_BANG, - ACTIONS(7129), 1, + ACTIONS(6017), 1, + anon_sym_switch, + ACTIONS(6031), 1, + anon_sym_with, + ACTIONS(7167), 1, + anon_sym_SLASH, + ACTIONS(7171), 1, + anon_sym_GT_GT, + ACTIONS(7173), 1, anon_sym_DOT_DOT, - STATE(2613), 1, + ACTIONS(7336), 1, + anon_sym_as, + ACTIONS(7338), 1, + anon_sym_is, + STATE(2605), 1, sym_bracketed_argument_list, - STATE(3259), 1, + STATE(3348), 1, sym_argument_list, - ACTIONS(5287), 2, + ACTIONS(5240), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1223), 9, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, + ACTIONS(7163), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT_GT, - STATE(4756), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - ACTIONS(1221), 20, + ACTIONS(7165), 2, anon_sym_STAR, anon_sym_PERCENT, - anon_sym_CARET, + ACTIONS(7169), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, + ACTIONS(7316), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(7326), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + ACTIONS(7328), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - anon_sym_switch, + ACTIONS(5739), 3, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_AMP, + ACTIONS(5737), 8, + anon_sym_CARET, 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_with, - [100074] = 13, + anon_sym_equals, + 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, + [93771] = 33, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -610477,14 +604541,57 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4747), 6, - anon_sym_LBRACK, + ACTIONS(4092), 1, + anon_sym_DOT, + ACTIONS(4094), 1, + anon_sym_DASH_GT, + ACTIONS(5227), 1, anon_sym_LPAREN, - aux_sym_preproc_if_token1, - aux_sym_preproc_if_token3, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - STATE(4757), 9, + ACTIONS(5236), 1, + anon_sym_LBRACK, + ACTIONS(5238), 1, + anon_sym_BANG, + ACTIONS(6017), 1, + anon_sym_switch, + ACTIONS(6031), 1, + anon_sym_with, + ACTIONS(7167), 1, + anon_sym_SLASH, + ACTIONS(7171), 1, + anon_sym_GT_GT, + ACTIONS(7173), 1, + anon_sym_DOT_DOT, + ACTIONS(7336), 1, + anon_sym_as, + ACTIONS(7338), 1, + anon_sym_is, + STATE(2605), 1, + sym_bracketed_argument_list, + STATE(3348), 1, + sym_argument_list, + ACTIONS(5240), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7163), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(7165), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(7169), 2, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + ACTIONS(7316), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(7328), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(5739), 3, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_AMP, + STATE(4696), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -610494,41 +604601,18 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(4745), 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, + ACTIONS(5737), 10, + 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, - 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, - [100159] = 22, + [93896] = 37, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -610549,67 +604633,82 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4075), 1, + ACTIONS(4092), 1, anon_sym_DOT, - ACTIONS(4077), 1, + ACTIONS(4094), 1, anon_sym_DASH_GT, - ACTIONS(5247), 1, + ACTIONS(5227), 1, anon_sym_LPAREN, - ACTIONS(5283), 1, + ACTIONS(5236), 1, anon_sym_LBRACK, - ACTIONS(5285), 1, + ACTIONS(5238), 1, anon_sym_BANG, - ACTIONS(7107), 1, + ACTIONS(5739), 1, + anon_sym_QMARK, + ACTIONS(6017), 1, + anon_sym_switch, + ACTIONS(6031), 1, + anon_sym_with, + ACTIONS(7167), 1, + anon_sym_SLASH, + ACTIONS(7171), 1, + anon_sym_GT_GT, + ACTIONS(7173), 1, anon_sym_DOT_DOT, - STATE(2613), 1, + ACTIONS(7320), 1, + anon_sym_CARET, + ACTIONS(7322), 1, + anon_sym_PIPE, + ACTIONS(7324), 1, + anon_sym_AMP, + ACTIONS(7336), 1, + anon_sym_as, + ACTIONS(7338), 1, + anon_sym_is, + STATE(2605), 1, sym_bracketed_argument_list, - STATE(3259), 1, + STATE(3348), 1, sym_argument_list, - ACTIONS(5287), 2, + ACTIONS(5240), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1223), 9, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, + ACTIONS(7163), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT_GT, - STATE(4758), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - ACTIONS(1221), 20, + ACTIONS(7165), 2, anon_sym_STAR, anon_sym_PERCENT, - anon_sym_CARET, + ACTIONS(7169), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, + ACTIONS(7316), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(7326), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + ACTIONS(7328), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - anon_sym_EQ_GT, - anon_sym_switch, + ACTIONS(5737), 7, 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, - [100262] = 40, + anon_sym_equals, + STATE(4697), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + [94029] = 38, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -610630,75 +604729,73 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4443), 1, - anon_sym_DASH_GT, - ACTIONS(4533), 1, + ACTIONS(4092), 1, anon_sym_DOT, - ACTIONS(6574), 1, + ACTIONS(4094), 1, + anon_sym_DASH_GT, + ACTIONS(5227), 1, anon_sym_LPAREN, - ACTIONS(6619), 1, + ACTIONS(5236), 1, anon_sym_LBRACK, - ACTIONS(6625), 1, + ACTIONS(5238), 1, anon_sym_BANG, - ACTIONS(6649), 1, + ACTIONS(5739), 1, + anon_sym_QMARK, + ACTIONS(6017), 1, anon_sym_switch, - ACTIONS(6659), 1, - anon_sym_as, - ACTIONS(6663), 1, + ACTIONS(6031), 1, anon_sym_with, - ACTIONS(7009), 1, + ACTIONS(7167), 1, anon_sym_SLASH, - ACTIONS(7011), 1, + ACTIONS(7171), 1, + anon_sym_GT_GT, + ACTIONS(7173), 1, anon_sym_DOT_DOT, - ACTIONS(7213), 1, - anon_sym_QMARK, - ACTIONS(7215), 1, + ACTIONS(7320), 1, anon_sym_CARET, - ACTIONS(7217), 1, + ACTIONS(7322), 1, anon_sym_PIPE, - ACTIONS(7219), 1, + ACTIONS(7324), 1, anon_sym_AMP, - ACTIONS(7223), 1, - anon_sym_GT_GT, - ACTIONS(7229), 1, + ACTIONS(7330), 1, anon_sym_AMP_AMP, - ACTIONS(7231), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7233), 1, - anon_sym_QMARK_QMARK, - ACTIONS(7235), 1, + ACTIONS(7336), 1, + anon_sym_as, + ACTIONS(7338), 1, anon_sym_is, - STATE(3173), 1, + STATE(2605), 1, sym_bracketed_argument_list, - STATE(4583), 1, + STATE(3348), 1, sym_argument_list, - ACTIONS(6627), 2, + ACTIONS(5240), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7005), 2, + ACTIONS(7163), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7007), 2, + ACTIONS(7165), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7211), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(7221), 2, + ACTIONS(7169), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7225), 2, + ACTIONS(7316), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(7326), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7227), 2, + ACTIONS(7328), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5882), 4, - sym_interpolation_close_brace, - anon_sym_COLON, - anon_sym_COMMA, + ACTIONS(5737), 6, + anon_sym_and, + anon_sym_or, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, anon_sym_into, - STATE(4759), 9, + anon_sym_equals, + STATE(4698), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -610708,7 +604805,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [100401] = 15, + [94164] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -610729,11 +604826,75 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(7133), 1, + ACTIONS(4092), 1, + anon_sym_DOT, + ACTIONS(4094), 1, + anon_sym_DASH_GT, + ACTIONS(5227), 1, + anon_sym_LPAREN, + ACTIONS(5236), 1, + anon_sym_LBRACK, + ACTIONS(5238), 1, + anon_sym_BANG, + ACTIONS(5739), 1, + anon_sym_QMARK, + ACTIONS(6017), 1, + anon_sym_switch, + ACTIONS(6031), 1, + anon_sym_with, + ACTIONS(7167), 1, + anon_sym_SLASH, + ACTIONS(7171), 1, + anon_sym_GT_GT, + ACTIONS(7173), 1, + anon_sym_DOT_DOT, + ACTIONS(7320), 1, + anon_sym_CARET, + ACTIONS(7322), 1, + anon_sym_PIPE, + ACTIONS(7324), 1, + anon_sym_AMP, + ACTIONS(7330), 1, + anon_sym_AMP_AMP, + ACTIONS(7332), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7334), 1, + anon_sym_QMARK_QMARK, + ACTIONS(7336), 1, + anon_sym_as, + ACTIONS(7338), 1, + anon_sym_is, + STATE(2605), 1, + sym_bracketed_argument_list, + STATE(3348), 1, + sym_argument_list, + ACTIONS(5240), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7163), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(7165), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(7169), 2, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + ACTIONS(7316), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(7326), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(7328), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(5737), 4, anon_sym_and, - ACTIONS(7191), 1, anon_sym_or, - STATE(4760), 9, + anon_sym_into, + anon_sym_equals, + STATE(4699), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -610743,46 +604904,106 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5356), 11, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, + [94303] = 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(4092), 1, + anon_sym_DOT, + ACTIONS(4094), 1, + anon_sym_DASH_GT, + ACTIONS(5227), 1, + anon_sym_LPAREN, + ACTIONS(5236), 1, + anon_sym_LBRACK, + ACTIONS(5238), 1, anon_sym_BANG, - anon_sym_PLUS, - anon_sym_DASH, + ACTIONS(6017), 1, + anon_sym_switch, + ACTIONS(6031), 1, + anon_sym_with, + ACTIONS(7167), 1, anon_sym_SLASH, + ACTIONS(7171), 1, + anon_sym_GT_GT, + ACTIONS(7173), 1, + anon_sym_DOT_DOT, + ACTIONS(7318), 1, + anon_sym_QMARK, + ACTIONS(7320), 1, + anon_sym_CARET, + ACTIONS(7322), 1, anon_sym_PIPE, + ACTIONS(7324), 1, anon_sym_AMP, - anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(5354), 26, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_LPAREN, + ACTIONS(7330), 1, + anon_sym_AMP_AMP, + ACTIONS(7332), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7334), 1, + anon_sym_QMARK_QMARK, + ACTIONS(7336), 1, + anon_sym_as, + ACTIONS(7338), 1, + anon_sym_is, + STATE(2605), 1, + sym_bracketed_argument_list, + STATE(3348), 1, + sym_argument_list, + ACTIONS(5240), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + ACTIONS(7163), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(7165), 2, anon_sym_STAR, anon_sym_PERCENT, - anon_sym_CARET, + ACTIONS(7169), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, + ACTIONS(7316), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(7326), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + ACTIONS(7328), 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, - [100490] = 13, + ACTIONS(5849), 4, + anon_sym_and, + anon_sym_or, + anon_sym_into, + anon_sym_equals, + 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, + [94442] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -610803,58 +605024,85 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - STATE(4761), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - ACTIONS(5429), 11, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, + ACTIONS(4092), 1, + anon_sym_DOT, + ACTIONS(4094), 1, + anon_sym_DASH_GT, + ACTIONS(5227), 1, + anon_sym_LPAREN, + ACTIONS(5236), 1, + anon_sym_LBRACK, + ACTIONS(5238), 1, anon_sym_BANG, - anon_sym_PLUS, - anon_sym_DASH, + ACTIONS(6017), 1, + anon_sym_switch, + ACTIONS(6031), 1, + anon_sym_with, + ACTIONS(7167), 1, anon_sym_SLASH, + ACTIONS(7171), 1, + anon_sym_GT_GT, + ACTIONS(7173), 1, + anon_sym_DOT_DOT, + ACTIONS(7318), 1, + anon_sym_QMARK, + ACTIONS(7320), 1, + anon_sym_CARET, + ACTIONS(7322), 1, anon_sym_PIPE, + ACTIONS(7324), 1, anon_sym_AMP, - anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(5427), 28, - sym_interpolation_close_brace, - anon_sym_LBRACK, - anon_sym_COLON, - anon_sym_COMMA, - anon_sym_LPAREN, + ACTIONS(7330), 1, + anon_sym_AMP_AMP, + ACTIONS(7332), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7334), 1, + anon_sym_QMARK_QMARK, + ACTIONS(7336), 1, + anon_sym_as, + ACTIONS(7338), 1, + anon_sym_is, + STATE(2605), 1, + sym_bracketed_argument_list, + STATE(3348), 1, + sym_argument_list, + ACTIONS(5240), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + ACTIONS(7163), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(7165), 2, anon_sym_STAR, anon_sym_PERCENT, - anon_sym_CARET, + ACTIONS(7169), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, + ACTIONS(7316), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(7326), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + ACTIONS(7328), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - anon_sym_switch, - anon_sym_DOT_DOT, + ACTIONS(4996), 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, - [100575] = 13, + anon_sym_equals, + 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, + [94581] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -610875,58 +605123,85 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - STATE(4762), 9, - sym_preproc_region, - sym_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, + ACTIONS(4092), 1, + anon_sym_DOT, + ACTIONS(4094), 1, + anon_sym_DASH_GT, + ACTIONS(5227), 1, + anon_sym_LPAREN, + ACTIONS(5236), 1, + anon_sym_LBRACK, + ACTIONS(5238), 1, anon_sym_BANG, - anon_sym_PLUS, - anon_sym_DASH, + ACTIONS(6017), 1, + anon_sym_switch, + ACTIONS(6031), 1, + anon_sym_with, + ACTIONS(7167), 1, anon_sym_SLASH, + ACTIONS(7171), 1, + anon_sym_GT_GT, + ACTIONS(7173), 1, + anon_sym_DOT_DOT, + ACTIONS(7318), 1, + anon_sym_QMARK, + ACTIONS(7320), 1, + anon_sym_CARET, + ACTIONS(7322), 1, anon_sym_PIPE, + ACTIONS(7324), 1, 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, + ACTIONS(7330), 1, + anon_sym_AMP_AMP, + ACTIONS(7332), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7334), 1, + anon_sym_QMARK_QMARK, + ACTIONS(7336), 1, + anon_sym_as, + ACTIONS(7338), 1, + anon_sym_is, + STATE(2605), 1, + sym_bracketed_argument_list, + STATE(3348), 1, + sym_argument_list, + ACTIONS(5240), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + ACTIONS(7163), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(7165), 2, anon_sym_STAR, anon_sym_PERCENT, - anon_sym_CARET, + ACTIONS(7169), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, + ACTIONS(7316), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(7326), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + ACTIONS(7328), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - anon_sym_switch, - anon_sym_DOT_DOT, + ACTIONS(5652), 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, - [100660] = 40, + anon_sym_equals, + STATE(4702), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + [94720] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -610947,75 +605222,75 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4100), 1, + ACTIONS(4092), 1, anon_sym_DOT, - ACTIONS(4102), 1, + ACTIONS(4094), 1, anon_sym_DASH_GT, - ACTIONS(5264), 1, + ACTIONS(5227), 1, anon_sym_LPAREN, - ACTIONS(5304), 1, - anon_sym_BANG, - ACTIONS(5573), 1, + ACTIONS(5236), 1, anon_sym_LBRACK, - ACTIONS(6343), 1, + ACTIONS(5238), 1, + anon_sym_BANG, + ACTIONS(6017), 1, anon_sym_switch, - ACTIONS(6357), 1, + ACTIONS(6031), 1, anon_sym_with, - ACTIONS(6813), 1, - anon_sym_as, - ACTIONS(6815), 1, - anon_sym_is, - ACTIONS(7183), 1, + ACTIONS(7167), 1, anon_sym_SLASH, - ACTIONS(7187), 1, + ACTIONS(7171), 1, anon_sym_GT_GT, - ACTIONS(7189), 1, + ACTIONS(7173), 1, anon_sym_DOT_DOT, - ACTIONS(7195), 1, - anon_sym_AMP, - ACTIONS(7201), 1, + ACTIONS(7318), 1, + anon_sym_QMARK, + ACTIONS(7320), 1, anon_sym_CARET, - ACTIONS(7203), 1, + ACTIONS(7322), 1, anon_sym_PIPE, - ACTIONS(7205), 1, + ACTIONS(7324), 1, + anon_sym_AMP, + ACTIONS(7330), 1, anon_sym_AMP_AMP, - ACTIONS(7207), 1, + ACTIONS(7332), 1, anon_sym_PIPE_PIPE, - ACTIONS(7209), 1, + ACTIONS(7334), 1, anon_sym_QMARK_QMARK, - ACTIONS(7237), 1, - anon_sym_QMARK, - STATE(2485), 1, + ACTIONS(7336), 1, + anon_sym_as, + ACTIONS(7338), 1, + anon_sym_is, + STATE(2605), 1, sym_bracketed_argument_list, - STATE(3487), 1, + STATE(3348), 1, sym_argument_list, - ACTIONS(5306), 2, + ACTIONS(5240), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7179), 2, + ACTIONS(7163), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7181), 2, + ACTIONS(7165), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7185), 2, + ACTIONS(7169), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7193), 2, + ACTIONS(7316), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7197), 2, + ACTIONS(7326), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7199), 2, + ACTIONS(7328), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5864), 4, - anon_sym_SEMI, - aux_sym_preproc_if_token3, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - STATE(4763), 9, + ACTIONS(5801), 4, + anon_sym_and, + anon_sym_or, + anon_sym_into, + anon_sym_equals, + STATE(4703), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -611025,7 +605300,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [100799] = 13, + [94859] = 29, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -611046,7 +605321,49 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - STATE(4764), 9, + ACTIONS(4427), 1, + anon_sym_DOT, + ACTIONS(4429), 1, + anon_sym_DASH_GT, + ACTIONS(6557), 1, + anon_sym_LPAREN, + ACTIONS(6607), 1, + anon_sym_LBRACK, + ACTIONS(6613), 1, + anon_sym_BANG, + ACTIONS(6637), 1, + anon_sym_switch, + ACTIONS(6651), 1, + anon_sym_with, + ACTIONS(7035), 1, + anon_sym_SLASH, + ACTIONS(7041), 1, + anon_sym_GT_GT, + ACTIONS(7047), 1, + anon_sym_DOT_DOT, + STATE(3188), 1, + sym_bracketed_argument_list, + STATE(4584), 1, + sym_argument_list, + ACTIONS(6615), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7031), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(7033), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(7039), 2, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + ACTIONS(5739), 5, + anon_sym_LT, + anon_sym_GT, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_AMP, + STATE(4704), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -611056,48 +605373,22 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5431), 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(3829), 28, + ACTIONS(5737), 14, 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, - [100884] = 40, + [94976] = 26, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -611118,75 +605409,44 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4075), 1, + ACTIONS(4427), 1, anon_sym_DOT, - ACTIONS(4077), 1, + ACTIONS(4429), 1, anon_sym_DASH_GT, - ACTIONS(5247), 1, + ACTIONS(6557), 1, anon_sym_LPAREN, - ACTIONS(5283), 1, + ACTIONS(6607), 1, anon_sym_LBRACK, - ACTIONS(5285), 1, + ACTIONS(6613), 1, anon_sym_BANG, - ACTIONS(6147), 1, + ACTIONS(6637), 1, anon_sym_switch, - ACTIONS(6157), 1, - anon_sym_as, - ACTIONS(6161), 1, + ACTIONS(6651), 1, anon_sym_with, - ACTIONS(7091), 1, + ACTIONS(7035), 1, anon_sym_SLASH, - ACTIONS(7093), 1, - anon_sym_CARET, - ACTIONS(7095), 1, - anon_sym_PIPE, - ACTIONS(7097), 1, - anon_sym_AMP, - ACTIONS(7101), 1, - anon_sym_GT_GT, - ACTIONS(7107), 1, + ACTIONS(7047), 1, anon_sym_DOT_DOT, - ACTIONS(7109), 1, - anon_sym_AMP_AMP, - ACTIONS(7111), 1, - anon_sym_is, - ACTIONS(7113), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7115), 1, - anon_sym_QMARK_QMARK, - ACTIONS(7117), 1, - anon_sym_QMARK, - STATE(2613), 1, + STATE(3188), 1, sym_bracketed_argument_list, - STATE(3259), 1, + STATE(4584), 1, sym_argument_list, - ACTIONS(5287), 2, + ACTIONS(6615), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7085), 2, + ACTIONS(7033), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(5739), 8, anon_sym_LT, anon_sym_GT, - ACTIONS(7087), 2, + anon_sym_QMARK, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7089), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(7099), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - ACTIONS(7103), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(7105), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(5767), 4, - anon_sym_EQ_GT, - anon_sym_and, - anon_sym_or, - anon_sym_into, - STATE(4765), 9, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT_GT, + STATE(4705), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -611196,7 +605456,24 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [101023] = 26, + ACTIONS(5737), 16, + 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_into, + anon_sym_as, + anon_sym_is, + [95087] = 24, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -611217,44 +605494,40 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4100), 1, + ACTIONS(4427), 1, anon_sym_DOT, - ACTIONS(4102), 1, + ACTIONS(4429), 1, anon_sym_DASH_GT, - ACTIONS(5264), 1, + ACTIONS(6557), 1, anon_sym_LPAREN, - ACTIONS(5304), 1, - anon_sym_BANG, - ACTIONS(5573), 1, + ACTIONS(6607), 1, anon_sym_LBRACK, - ACTIONS(6343), 1, + ACTIONS(6613), 1, + anon_sym_BANG, + ACTIONS(6637), 1, anon_sym_switch, - ACTIONS(6357), 1, + ACTIONS(6651), 1, anon_sym_with, - ACTIONS(7145), 1, - anon_sym_SLASH, - ACTIONS(7161), 1, + ACTIONS(7047), 1, anon_sym_DOT_DOT, - STATE(2485), 1, + STATE(3188), 1, sym_bracketed_argument_list, - STATE(3487), 1, + STATE(4584), 1, sym_argument_list, - ACTIONS(5306), 2, + ACTIONS(6615), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7143), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(5664), 8, + ACTIONS(5739), 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(4766), 9, + STATE(4706), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -611264,11 +605537,12 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5660), 16, + ACTIONS(5737), 18, + sym_interpolation_close_brace, + 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, @@ -611279,9 +605553,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, - [101134] = 29, + [95194] = 27, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -611302,49 +605577,45 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4100), 1, + ACTIONS(4427), 1, anon_sym_DOT, - ACTIONS(4102), 1, + ACTIONS(4429), 1, anon_sym_DASH_GT, - ACTIONS(5264), 1, + ACTIONS(6557), 1, anon_sym_LPAREN, - ACTIONS(5302), 1, + ACTIONS(6607), 1, anon_sym_LBRACK, - ACTIONS(5304), 1, + ACTIONS(6613), 1, anon_sym_BANG, - ACTIONS(6475), 1, + ACTIONS(6637), 1, anon_sym_switch, - ACTIONS(6489), 1, + ACTIONS(6651), 1, anon_sym_with, - ACTIONS(7057), 1, + ACTIONS(7035), 1, anon_sym_SLASH, - ACTIONS(7067), 1, - anon_sym_GT_GT, - ACTIONS(7073), 1, + ACTIONS(7047), 1, anon_sym_DOT_DOT, - STATE(2808), 1, + STATE(3188), 1, sym_bracketed_argument_list, - STATE(3487), 1, + STATE(4584), 1, sym_argument_list, - ACTIONS(5306), 2, + ACTIONS(6615), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7053), 2, + ACTIONS(7031), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7055), 2, + ACTIONS(7033), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7065), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - ACTIONS(5664), 5, + ACTIONS(5739), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, anon_sym_PIPE, anon_sym_AMP, - STATE(4767), 9, + anon_sym_GT_GT, + STATE(4707), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -611354,22 +605625,24 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5660), 14, + ACTIONS(5737), 16, + 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_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, - [101251] = 26, + [95307] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -611390,44 +605663,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4100), 1, - anon_sym_DOT, - ACTIONS(4102), 1, - anon_sym_DASH_GT, - ACTIONS(5264), 1, - anon_sym_LPAREN, - ACTIONS(5302), 1, - anon_sym_LBRACK, - ACTIONS(5304), 1, - anon_sym_BANG, - ACTIONS(6475), 1, - anon_sym_switch, - ACTIONS(6489), 1, - anon_sym_with, - ACTIONS(7057), 1, - anon_sym_SLASH, - ACTIONS(7073), 1, - anon_sym_DOT_DOT, - STATE(2808), 1, - sym_bracketed_argument_list, - STATE(3487), 1, - sym_argument_list, - ACTIONS(5306), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(7055), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(5664), 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(4768), 9, + STATE(4708), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -611437,8 +605673,28 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5660), 16, + ACTIONS(5154), 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(5152), 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, @@ -611446,15 +605702,19 @@ 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, anon_sym_PIPE_PIPE, anon_sym_QMARK_QMARK, + anon_sym_into, anon_sym_as, anon_sym_is, - [101362] = 15, + anon_sym_DASH_GT, + anon_sym_with, + [95392] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -611475,11 +605735,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(7261), 1, - anon_sym_into, - STATE(4594), 1, - aux_sym__query_body_repeat2, - STATE(4769), 9, + STATE(4709), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -611489,7 +605745,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(6001), 11, + ACTIONS(4876), 11, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, @@ -611501,13 +605757,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT, - ACTIONS(5999), 26, + ACTIONS(4874), 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, @@ -611521,14 +605776,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, - [101451] = 36, + [95477] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -611549,71 +605807,75 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4075), 1, + ACTIONS(4042), 1, anon_sym_DOT, - ACTIONS(4077), 1, + ACTIONS(4044), 1, anon_sym_DASH_GT, - ACTIONS(5247), 1, + ACTIONS(5257), 1, anon_sym_LPAREN, - ACTIONS(5283), 1, + ACTIONS(5300), 1, anon_sym_LBRACK, - ACTIONS(5285), 1, + ACTIONS(5302), 1, anon_sym_BANG, - ACTIONS(6147), 1, + ACTIONS(6495), 1, anon_sym_switch, - ACTIONS(6157), 1, - anon_sym_as, - ACTIONS(6161), 1, + ACTIONS(6509), 1, anon_sym_with, - ACTIONS(7091), 1, + ACTIONS(7025), 1, + anon_sym_as, + ACTIONS(7131), 1, anon_sym_SLASH, - ACTIONS(7093), 1, - anon_sym_CARET, - ACTIONS(7097), 1, - anon_sym_AMP, - ACTIONS(7101), 1, + ACTIONS(7135), 1, anon_sym_GT_GT, - ACTIONS(7107), 1, + ACTIONS(7137), 1, anon_sym_DOT_DOT, - ACTIONS(7111), 1, + ACTIONS(7141), 1, + anon_sym_AMP, + ACTIONS(7147), 1, anon_sym_is, - STATE(2613), 1, + ACTIONS(7149), 1, + anon_sym_CARET, + ACTIONS(7151), 1, + anon_sym_PIPE, + ACTIONS(7153), 1, + anon_sym_AMP_AMP, + ACTIONS(7155), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7157), 1, + anon_sym_QMARK_QMARK, + ACTIONS(7159), 1, + anon_sym_QMARK, + STATE(2759), 1, sym_bracketed_argument_list, - STATE(3259), 1, + STATE(3381), 1, sym_argument_list, - ACTIONS(5287), 2, + ACTIONS(5304), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5664), 2, - anon_sym_QMARK, - anon_sym_PIPE, - ACTIONS(7085), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(7087), 2, + ACTIONS(7127), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7089), 2, + ACTIONS(7129), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7099), 2, + ACTIONS(7133), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7103), 2, + ACTIONS(7139), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(7143), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7105), 2, + ACTIONS(7145), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5660), 7, - anon_sym_EQ_GT, + ACTIONS(5865), 4, + 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(4770), 9, + STATE(4710), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -611623,7 +605885,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [101582] = 35, + [95616] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -611644,70 +605906,75 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4100), 1, + ACTIONS(4092), 1, anon_sym_DOT, - ACTIONS(4102), 1, + ACTIONS(4094), 1, anon_sym_DASH_GT, - ACTIONS(5264), 1, + ACTIONS(5227), 1, anon_sym_LPAREN, - ACTIONS(5302), 1, + ACTIONS(5236), 1, anon_sym_LBRACK, - ACTIONS(5304), 1, + ACTIONS(5238), 1, anon_sym_BANG, - ACTIONS(6475), 1, + ACTIONS(6017), 1, anon_sym_switch, - ACTIONS(6489), 1, + ACTIONS(6031), 1, anon_sym_with, - ACTIONS(7057), 1, + ACTIONS(7067), 1, anon_sym_SLASH, - ACTIONS(7063), 1, + ACTIONS(7069), 1, anon_sym_AMP, - ACTIONS(7067), 1, - anon_sym_GT_GT, ACTIONS(7073), 1, + anon_sym_GT_GT, + ACTIONS(7079), 1, anon_sym_DOT_DOT, ACTIONS(7081), 1, anon_sym_as, ACTIONS(7083), 1, anon_sym_is, - STATE(2808), 1, + ACTIONS(7085), 1, + anon_sym_CARET, + ACTIONS(7087), 1, + anon_sym_PIPE, + ACTIONS(7089), 1, + anon_sym_AMP_AMP, + ACTIONS(7091), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7093), 1, + anon_sym_QMARK_QMARK, + ACTIONS(7312), 1, + anon_sym_QMARK, + STATE(2605), 1, sym_bracketed_argument_list, - STATE(3487), 1, + STATE(3348), 1, sym_argument_list, - ACTIONS(5306), 2, + ACTIONS(5240), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5664), 2, - anon_sym_QMARK, - anon_sym_PIPE, - ACTIONS(7049), 2, + ACTIONS(7061), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7053), 2, + ACTIONS(7063), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7055), 2, + ACTIONS(7065), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7065), 2, + ACTIONS(7071), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7069), 2, + ACTIONS(7075), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7071), 2, + ACTIONS(7077), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5660), 8, - anon_sym_COLON, - anon_sym_CARET, - anon_sym_when, + ACTIONS(5733), 4, anon_sym_and, anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_QMARK_QMARK, - STATE(4771), 9, + anon_sym_into, + anon_sym_by, + STATE(4711), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -611717,7 +605984,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [101711] = 13, + [95755] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -611738,58 +606005,85 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - STATE(4772), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - ACTIONS(5014), 11, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, + ACTIONS(4092), 1, + anon_sym_DOT, + ACTIONS(4094), 1, + anon_sym_DASH_GT, + ACTIONS(5227), 1, + anon_sym_LPAREN, + ACTIONS(5236), 1, + anon_sym_LBRACK, + ACTIONS(5238), 1, anon_sym_BANG, - anon_sym_PLUS, - anon_sym_DASH, + ACTIONS(6017), 1, + anon_sym_switch, + ACTIONS(6031), 1, + anon_sym_with, + ACTIONS(7167), 1, anon_sym_SLASH, + ACTIONS(7171), 1, + anon_sym_GT_GT, + ACTIONS(7173), 1, + anon_sym_DOT_DOT, + ACTIONS(7318), 1, + anon_sym_QMARK, + ACTIONS(7320), 1, + anon_sym_CARET, + ACTIONS(7322), 1, anon_sym_PIPE, + ACTIONS(7324), 1, anon_sym_AMP, - anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(5012), 28, - sym_interpolation_close_brace, - anon_sym_LBRACK, - anon_sym_COLON, - anon_sym_COMMA, - anon_sym_LPAREN, + ACTIONS(7330), 1, + anon_sym_AMP_AMP, + ACTIONS(7332), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7334), 1, + anon_sym_QMARK_QMARK, + ACTIONS(7336), 1, + anon_sym_as, + ACTIONS(7338), 1, + anon_sym_is, + STATE(2605), 1, + sym_bracketed_argument_list, + STATE(3348), 1, + sym_argument_list, + ACTIONS(5240), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + ACTIONS(7163), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(7165), 2, anon_sym_STAR, anon_sym_PERCENT, - anon_sym_CARET, + ACTIONS(7169), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, + ACTIONS(7316), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(7326), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + ACTIONS(7328), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - anon_sym_switch, - anon_sym_DOT_DOT, + ACTIONS(5865), 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, - [101796] = 36, + anon_sym_equals, + STATE(4712), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + [95894] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -611810,71 +606104,75 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4100), 1, + ACTIONS(4092), 1, anon_sym_DOT, - ACTIONS(4102), 1, + ACTIONS(4094), 1, anon_sym_DASH_GT, - ACTIONS(5264), 1, + ACTIONS(5227), 1, anon_sym_LPAREN, - ACTIONS(5302), 1, + ACTIONS(5236), 1, anon_sym_LBRACK, - ACTIONS(5304), 1, + ACTIONS(5238), 1, anon_sym_BANG, - ACTIONS(6475), 1, + ACTIONS(6017), 1, anon_sym_switch, - ACTIONS(6489), 1, + ACTIONS(6031), 1, anon_sym_with, - ACTIONS(7057), 1, + ACTIONS(7067), 1, anon_sym_SLASH, - ACTIONS(7059), 1, - anon_sym_CARET, - ACTIONS(7063), 1, + ACTIONS(7069), 1, anon_sym_AMP, - ACTIONS(7067), 1, - anon_sym_GT_GT, ACTIONS(7073), 1, + anon_sym_GT_GT, + ACTIONS(7079), 1, anon_sym_DOT_DOT, ACTIONS(7081), 1, anon_sym_as, ACTIONS(7083), 1, anon_sym_is, - STATE(2808), 1, + ACTIONS(7085), 1, + anon_sym_CARET, + ACTIONS(7087), 1, + anon_sym_PIPE, + ACTIONS(7089), 1, + anon_sym_AMP_AMP, + ACTIONS(7091), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7093), 1, + anon_sym_QMARK_QMARK, + ACTIONS(7312), 1, + anon_sym_QMARK, + STATE(2605), 1, sym_bracketed_argument_list, - STATE(3487), 1, + STATE(3348), 1, sym_argument_list, - ACTIONS(5306), 2, + ACTIONS(5240), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5664), 2, - anon_sym_QMARK, - anon_sym_PIPE, - ACTIONS(7049), 2, + ACTIONS(7061), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7053), 2, + ACTIONS(7063), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7055), 2, + ACTIONS(7065), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7065), 2, + ACTIONS(7071), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7069), 2, + ACTIONS(7075), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7071), 2, + ACTIONS(7077), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5660), 7, - anon_sym_COLON, - anon_sym_when, + ACTIONS(5855), 4, anon_sym_and, anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_QMARK_QMARK, - STATE(4773), 9, + anon_sym_into, + anon_sym_by, + STATE(4713), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -611884,7 +606182,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [101927] = 34, + [96033] = 24, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -611905,79 +606203,69 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4100), 1, + ACTIONS(4092), 1, anon_sym_DOT, - ACTIONS(4102), 1, + ACTIONS(4094), 1, anon_sym_DASH_GT, - ACTIONS(5264), 1, + ACTIONS(5227), 1, anon_sym_LPAREN, - ACTIONS(5302), 1, + ACTIONS(5236), 1, anon_sym_LBRACK, - ACTIONS(5304), 1, + ACTIONS(5238), 1, anon_sym_BANG, - ACTIONS(6475), 1, + ACTIONS(6017), 1, anon_sym_switch, - ACTIONS(6489), 1, + ACTIONS(6031), 1, anon_sym_with, - ACTIONS(7057), 1, - anon_sym_SLASH, - ACTIONS(7067), 1, - anon_sym_GT_GT, - ACTIONS(7073), 1, + ACTIONS(7173), 1, anon_sym_DOT_DOT, - ACTIONS(7081), 1, - anon_sym_as, - ACTIONS(7083), 1, - anon_sym_is, - STATE(2808), 1, + STATE(2605), 1, sym_bracketed_argument_list, - STATE(3487), 1, + STATE(3348), 1, sym_argument_list, - ACTIONS(5306), 2, + ACTIONS(5240), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7049), 2, + ACTIONS(5739), 9, anon_sym_LT, anon_sym_GT, - ACTIONS(7053), 2, + anon_sym_QMARK, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7055), 2, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT_GT, + STATE(4714), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + ACTIONS(5737), 18, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7065), 2, + anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7069), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7071), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5664), 3, - anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_AMP, - ACTIONS(5660), 8, - 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, - STATE(4774), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - [102054] = 27, + anon_sym_into, + anon_sym_equals, + anon_sym_as, + anon_sym_is, + [96140] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -611998,45 +606286,75 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4100), 1, + ACTIONS(4092), 1, anon_sym_DOT, - ACTIONS(4102), 1, + ACTIONS(4094), 1, anon_sym_DASH_GT, - ACTIONS(5264), 1, + ACTIONS(5227), 1, anon_sym_LPAREN, - ACTIONS(5302), 1, + ACTIONS(5236), 1, anon_sym_LBRACK, - ACTIONS(5304), 1, + ACTIONS(5238), 1, anon_sym_BANG, - ACTIONS(6475), 1, + ACTIONS(6017), 1, anon_sym_switch, - ACTIONS(6489), 1, + ACTIONS(6031), 1, anon_sym_with, - ACTIONS(7057), 1, + ACTIONS(7221), 1, anon_sym_SLASH, - ACTIONS(7073), 1, + ACTIONS(7225), 1, + anon_sym_GT_GT, + ACTIONS(7227), 1, anon_sym_DOT_DOT, - STATE(2808), 1, + ACTIONS(7342), 1, + anon_sym_QMARK, + ACTIONS(7344), 1, + anon_sym_CARET, + ACTIONS(7346), 1, + anon_sym_PIPE, + ACTIONS(7348), 1, + anon_sym_AMP, + ACTIONS(7354), 1, + anon_sym_AMP_AMP, + ACTIONS(7356), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7358), 1, + anon_sym_QMARK_QMARK, + ACTIONS(7360), 1, + anon_sym_as, + ACTIONS(7362), 1, + anon_sym_is, + STATE(2605), 1, sym_bracketed_argument_list, - STATE(3487), 1, + STATE(3348), 1, sym_argument_list, - ACTIONS(5306), 2, + ACTIONS(5240), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7053), 2, + ACTIONS(7217), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7055), 2, + ACTIONS(7219), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(5664), 6, + ACTIONS(7223), 2, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + ACTIONS(7340), 2, anon_sym_LT, anon_sym_GT, - anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT_GT, - STATE(4775), 9, + ACTIONS(7350), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(7352), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(5709), 4, + anon_sym_and, + anon_sym_or, + anon_sym_into, + anon_sym_on, + STATE(4715), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -612046,24 +606364,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5660), 16, - 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_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, - [102167] = 33, + [96279] = 35, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -612084,57 +606385,70 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4100), 1, + ACTIONS(4092), 1, anon_sym_DOT, - ACTIONS(4102), 1, + ACTIONS(4094), 1, anon_sym_DASH_GT, - ACTIONS(5264), 1, + ACTIONS(5227), 1, anon_sym_LPAREN, - ACTIONS(5302), 1, + ACTIONS(5236), 1, anon_sym_LBRACK, - ACTIONS(5304), 1, + ACTIONS(5238), 1, anon_sym_BANG, - ACTIONS(6475), 1, + ACTIONS(6017), 1, anon_sym_switch, - ACTIONS(6489), 1, + ACTIONS(6031), 1, anon_sym_with, - ACTIONS(7057), 1, + ACTIONS(7221), 1, anon_sym_SLASH, - ACTIONS(7067), 1, + ACTIONS(7225), 1, anon_sym_GT_GT, - ACTIONS(7073), 1, + ACTIONS(7227), 1, anon_sym_DOT_DOT, - ACTIONS(7081), 1, + ACTIONS(7348), 1, + anon_sym_AMP, + ACTIONS(7360), 1, anon_sym_as, - ACTIONS(7083), 1, + ACTIONS(7362), 1, anon_sym_is, - STATE(2808), 1, + STATE(2605), 1, sym_bracketed_argument_list, - STATE(3487), 1, + STATE(3348), 1, sym_argument_list, - ACTIONS(5306), 2, + ACTIONS(5240), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7049), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(7053), 2, + ACTIONS(5739), 2, + anon_sym_QMARK, + anon_sym_PIPE, + ACTIONS(7217), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7055), 2, + ACTIONS(7219), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7065), 2, + ACTIONS(7223), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7071), 2, + ACTIONS(7340), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(7350), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(7352), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5664), 3, - anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_AMP, - STATE(4776), 9, + ACTIONS(5737), 8, + anon_sym_CARET, + 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(4716), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -612144,18 +606458,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5660), 10, - anon_sym_COLON, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_when, - anon_sym_and, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_QMARK_QMARK, - [102292] = 13, + [96408] = 36, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -612176,58 +606479,81 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - STATE(4777), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - ACTIONS(4935), 11, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, + ACTIONS(4092), 1, + anon_sym_DOT, + ACTIONS(4094), 1, + anon_sym_DASH_GT, + ACTIONS(5227), 1, + anon_sym_LPAREN, + ACTIONS(5236), 1, + anon_sym_LBRACK, + ACTIONS(5238), 1, anon_sym_BANG, - anon_sym_PLUS, - anon_sym_DASH, + ACTIONS(6017), 1, + anon_sym_switch, + ACTIONS(6031), 1, + anon_sym_with, + ACTIONS(7221), 1, anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, + ACTIONS(7225), 1, anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(4933), 28, - sym_interpolation_close_brace, - anon_sym_LBRACK, - anon_sym_COLON, - anon_sym_COMMA, - anon_sym_LPAREN, + ACTIONS(7227), 1, + anon_sym_DOT_DOT, + ACTIONS(7344), 1, + anon_sym_CARET, + ACTIONS(7348), 1, + anon_sym_AMP, + ACTIONS(7360), 1, + anon_sym_as, + ACTIONS(7362), 1, + anon_sym_is, + STATE(2605), 1, + sym_bracketed_argument_list, + STATE(3348), 1, + sym_argument_list, + ACTIONS(5240), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + ACTIONS(5739), 2, + anon_sym_QMARK, + anon_sym_PIPE, + ACTIONS(7217), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(7219), 2, anon_sym_STAR, anon_sym_PERCENT, - anon_sym_CARET, + ACTIONS(7223), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, + ACTIONS(7340), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(7350), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + ACTIONS(7352), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - anon_sym_switch, - anon_sym_DOT_DOT, + ACTIONS(5737), 7, 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, - [102377] = 37, + anon_sym_on, + STATE(4717), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + [96539] = 34, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -612248,72 +606574,69 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4100), 1, + ACTIONS(4092), 1, anon_sym_DOT, - ACTIONS(4102), 1, + ACTIONS(4094), 1, anon_sym_DASH_GT, - ACTIONS(5264), 1, + ACTIONS(5227), 1, anon_sym_LPAREN, - ACTIONS(5302), 1, + ACTIONS(5236), 1, anon_sym_LBRACK, - ACTIONS(5304), 1, + ACTIONS(5238), 1, anon_sym_BANG, - ACTIONS(5664), 1, - anon_sym_QMARK, - ACTIONS(6475), 1, + ACTIONS(6017), 1, anon_sym_switch, - ACTIONS(6489), 1, + ACTIONS(6031), 1, anon_sym_with, - ACTIONS(7057), 1, + ACTIONS(7221), 1, anon_sym_SLASH, - ACTIONS(7059), 1, - anon_sym_CARET, - ACTIONS(7061), 1, - anon_sym_PIPE, - ACTIONS(7063), 1, - anon_sym_AMP, - ACTIONS(7067), 1, + ACTIONS(7225), 1, anon_sym_GT_GT, - ACTIONS(7073), 1, + ACTIONS(7227), 1, anon_sym_DOT_DOT, - ACTIONS(7081), 1, + ACTIONS(7360), 1, anon_sym_as, - ACTIONS(7083), 1, + ACTIONS(7362), 1, anon_sym_is, - STATE(2808), 1, + STATE(2605), 1, sym_bracketed_argument_list, - STATE(3487), 1, + STATE(3348), 1, sym_argument_list, - ACTIONS(5306), 2, + ACTIONS(5240), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7049), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(7053), 2, + ACTIONS(7217), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7055), 2, + ACTIONS(7219), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7065), 2, + ACTIONS(7223), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7069), 2, + ACTIONS(7340), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(7350), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7071), 2, + ACTIONS(7352), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5660), 7, - anon_sym_COLON, - anon_sym_when, + ACTIONS(5739), 3, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_AMP, + ACTIONS(5737), 8, + anon_sym_CARET, anon_sym_and, anon_sym_or, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_QMARK_QMARK, - STATE(4778), 9, + anon_sym_into, + anon_sym_on, + STATE(4718), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -612323,7 +606646,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [102510] = 13, + [96666] = 33, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -612344,7 +606667,57 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - STATE(4779), 9, + ACTIONS(4092), 1, + anon_sym_DOT, + ACTIONS(4094), 1, + anon_sym_DASH_GT, + ACTIONS(5227), 1, + anon_sym_LPAREN, + ACTIONS(5236), 1, + anon_sym_LBRACK, + ACTIONS(5238), 1, + anon_sym_BANG, + ACTIONS(6017), 1, + anon_sym_switch, + ACTIONS(6031), 1, + anon_sym_with, + ACTIONS(7221), 1, + anon_sym_SLASH, + ACTIONS(7225), 1, + anon_sym_GT_GT, + ACTIONS(7227), 1, + anon_sym_DOT_DOT, + ACTIONS(7360), 1, + anon_sym_as, + ACTIONS(7362), 1, + anon_sym_is, + STATE(2605), 1, + sym_bracketed_argument_list, + STATE(3348), 1, + sym_argument_list, + ACTIONS(5240), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7217), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(7219), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(7223), 2, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + ACTIONS(7340), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(7352), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(5739), 3, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_AMP, + STATE(4719), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -612354,48 +606727,18 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5439), 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(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, - anon_sym_STAR, - anon_sym_PERCENT, + ACTIONS(5737), 10, 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, - [102595] = 13, + anon_sym_on, + [96791] = 37, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -612416,58 +606759,82 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - STATE(4780), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - ACTIONS(5447), 11, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, + ACTIONS(4092), 1, + anon_sym_DOT, + ACTIONS(4094), 1, + anon_sym_DASH_GT, + ACTIONS(5227), 1, + anon_sym_LPAREN, + ACTIONS(5236), 1, + anon_sym_LBRACK, + ACTIONS(5238), 1, anon_sym_BANG, - anon_sym_PLUS, - anon_sym_DASH, + ACTIONS(5739), 1, + anon_sym_QMARK, + ACTIONS(6017), 1, + anon_sym_switch, + ACTIONS(6031), 1, + anon_sym_with, + ACTIONS(7221), 1, anon_sym_SLASH, + ACTIONS(7225), 1, + anon_sym_GT_GT, + ACTIONS(7227), 1, + anon_sym_DOT_DOT, + ACTIONS(7344), 1, + anon_sym_CARET, + ACTIONS(7346), 1, anon_sym_PIPE, + ACTIONS(7348), 1, anon_sym_AMP, - anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(5445), 28, - sym_interpolation_close_brace, - anon_sym_LBRACK, - anon_sym_COLON, - anon_sym_COMMA, - anon_sym_LPAREN, + ACTIONS(7360), 1, + anon_sym_as, + ACTIONS(7362), 1, + anon_sym_is, + STATE(2605), 1, + sym_bracketed_argument_list, + STATE(3348), 1, + sym_argument_list, + ACTIONS(5240), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + ACTIONS(7217), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(7219), 2, anon_sym_STAR, anon_sym_PERCENT, - anon_sym_CARET, + ACTIONS(7223), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, + ACTIONS(7340), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(7350), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + ACTIONS(7352), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - anon_sym_switch, - anon_sym_DOT_DOT, + ACTIONS(5737), 7, 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, - [102680] = 15, + anon_sym_on, + STATE(4720), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + [96924] = 38, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -612488,60 +606855,83 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(7388), 1, - anon_sym_into, - STATE(4782), 1, - aux_sym__query_body_repeat2, - 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(6001), 11, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, + ACTIONS(4092), 1, + anon_sym_DOT, + ACTIONS(4094), 1, + anon_sym_DASH_GT, + ACTIONS(5227), 1, + anon_sym_LPAREN, + ACTIONS(5236), 1, + anon_sym_LBRACK, + ACTIONS(5238), 1, anon_sym_BANG, - anon_sym_PLUS, - anon_sym_DASH, + ACTIONS(5739), 1, + anon_sym_QMARK, + ACTIONS(6017), 1, + anon_sym_switch, + ACTIONS(6031), 1, + anon_sym_with, + ACTIONS(7221), 1, anon_sym_SLASH, + ACTIONS(7225), 1, + anon_sym_GT_GT, + ACTIONS(7227), 1, + anon_sym_DOT_DOT, + ACTIONS(7344), 1, + anon_sym_CARET, + ACTIONS(7346), 1, anon_sym_PIPE, + ACTIONS(7348), 1, anon_sym_AMP, - anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(5999), 26, - anon_sym_LBRACK, - anon_sym_LPAREN, + ACTIONS(7354), 1, + anon_sym_AMP_AMP, + ACTIONS(7360), 1, + anon_sym_as, + ACTIONS(7362), 1, + anon_sym_is, + STATE(2605), 1, + sym_bracketed_argument_list, + STATE(3348), 1, + sym_argument_list, + ACTIONS(5240), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + ACTIONS(7217), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(7219), 2, anon_sym_STAR, anon_sym_PERCENT, - anon_sym_CARET, + ACTIONS(7223), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, + ACTIONS(7340), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(7350), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + ACTIONS(7352), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - anon_sym_EQ_GT, - anon_sym_switch, - anon_sym_when, - anon_sym_DOT_DOT, + ACTIONS(5737), 6, 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, - [102769] = 15, + anon_sym_into, + anon_sym_on, + STATE(4721), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + [97059] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -612562,11 +606952,75 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(7388), 1, + ACTIONS(4092), 1, + anon_sym_DOT, + ACTIONS(4094), 1, + anon_sym_DASH_GT, + ACTIONS(5227), 1, + anon_sym_LPAREN, + ACTIONS(5236), 1, + anon_sym_LBRACK, + ACTIONS(5238), 1, + anon_sym_BANG, + ACTIONS(5739), 1, + anon_sym_QMARK, + ACTIONS(6017), 1, + anon_sym_switch, + ACTIONS(6031), 1, + anon_sym_with, + ACTIONS(7221), 1, + anon_sym_SLASH, + ACTIONS(7225), 1, + anon_sym_GT_GT, + ACTIONS(7227), 1, + anon_sym_DOT_DOT, + ACTIONS(7344), 1, + anon_sym_CARET, + ACTIONS(7346), 1, + anon_sym_PIPE, + ACTIONS(7348), 1, + anon_sym_AMP, + ACTIONS(7354), 1, + anon_sym_AMP_AMP, + ACTIONS(7356), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7358), 1, + anon_sym_QMARK_QMARK, + ACTIONS(7360), 1, + anon_sym_as, + ACTIONS(7362), 1, + anon_sym_is, + STATE(2605), 1, + sym_bracketed_argument_list, + STATE(3348), 1, + sym_argument_list, + ACTIONS(5240), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7217), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(7219), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(7223), 2, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + ACTIONS(7340), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(7350), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(7352), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(5737), 4, + anon_sym_and, + anon_sym_or, anon_sym_into, - STATE(4784), 1, - aux_sym__query_body_repeat2, - STATE(4782), 9, + anon_sym_on, + STATE(4722), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -612576,46 +607030,106 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(6005), 11, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, + [97198] = 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(4092), 1, + anon_sym_DOT, + ACTIONS(4094), 1, + anon_sym_DASH_GT, + ACTIONS(5227), 1, + anon_sym_LPAREN, + ACTIONS(5236), 1, + anon_sym_LBRACK, + ACTIONS(5238), 1, anon_sym_BANG, - anon_sym_PLUS, - anon_sym_DASH, + ACTIONS(6017), 1, + anon_sym_switch, + ACTIONS(6031), 1, + anon_sym_with, + ACTIONS(7221), 1, anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, + ACTIONS(7225), 1, anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(6003), 26, - anon_sym_LBRACK, - anon_sym_LPAREN, + ACTIONS(7227), 1, + anon_sym_DOT_DOT, + ACTIONS(7342), 1, + anon_sym_QMARK, + ACTIONS(7344), 1, + anon_sym_CARET, + ACTIONS(7346), 1, + anon_sym_PIPE, + ACTIONS(7348), 1, + anon_sym_AMP, + ACTIONS(7354), 1, + anon_sym_AMP_AMP, + ACTIONS(7356), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7358), 1, + anon_sym_QMARK_QMARK, + ACTIONS(7360), 1, + anon_sym_as, + ACTIONS(7362), 1, + anon_sym_is, + STATE(2605), 1, + sym_bracketed_argument_list, + STATE(3348), 1, + sym_argument_list, + ACTIONS(5240), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + ACTIONS(7217), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(7219), 2, anon_sym_STAR, anon_sym_PERCENT, - anon_sym_CARET, + ACTIONS(7223), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, + ACTIONS(7340), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(7350), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + ACTIONS(7352), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - anon_sym_EQ_GT, - anon_sym_switch, - anon_sym_when, - anon_sym_DOT_DOT, + ACTIONS(5849), 4, 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, - [102858] = 15, + anon_sym_into, + anon_sym_on, + STATE(4723), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + [97337] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -612636,60 +607150,85 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(7388), 1, - anon_sym_into, - STATE(4785), 1, - aux_sym__query_body_repeat2, - STATE(4783), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - ACTIONS(6005), 11, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, + ACTIONS(4092), 1, + anon_sym_DOT, + ACTIONS(4094), 1, + anon_sym_DASH_GT, + ACTIONS(5227), 1, + anon_sym_LPAREN, + ACTIONS(5236), 1, + anon_sym_LBRACK, + ACTIONS(5238), 1, anon_sym_BANG, - anon_sym_PLUS, - anon_sym_DASH, + ACTIONS(6017), 1, + anon_sym_switch, + ACTIONS(6031), 1, + anon_sym_with, + ACTIONS(7221), 1, anon_sym_SLASH, + ACTIONS(7225), 1, + anon_sym_GT_GT, + ACTIONS(7227), 1, + anon_sym_DOT_DOT, + ACTIONS(7342), 1, + anon_sym_QMARK, + ACTIONS(7344), 1, + anon_sym_CARET, + ACTIONS(7346), 1, anon_sym_PIPE, + ACTIONS(7348), 1, anon_sym_AMP, - anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(6003), 26, - anon_sym_LBRACK, - anon_sym_LPAREN, + ACTIONS(7354), 1, + anon_sym_AMP_AMP, + ACTIONS(7356), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7358), 1, + anon_sym_QMARK_QMARK, + ACTIONS(7360), 1, + anon_sym_as, + ACTIONS(7362), 1, + anon_sym_is, + STATE(2605), 1, + sym_bracketed_argument_list, + STATE(3348), 1, + sym_argument_list, + ACTIONS(5240), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + ACTIONS(7217), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(7219), 2, anon_sym_STAR, anon_sym_PERCENT, - anon_sym_CARET, + ACTIONS(7223), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, + ACTIONS(7340), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(7350), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + ACTIONS(7352), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - anon_sym_EQ_GT, - anon_sym_switch, - anon_sym_when, - anon_sym_DOT_DOT, + ACTIONS(4996), 4, 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, - [102947] = 14, + anon_sym_into, + anon_sym_on, + STATE(4724), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + [97476] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -612710,59 +607249,85 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(7390), 1, - anon_sym_into, - STATE(4784), 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(5951), 11, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, + ACTIONS(4092), 1, + anon_sym_DOT, + ACTIONS(4094), 1, + anon_sym_DASH_GT, + ACTIONS(5227), 1, + anon_sym_LPAREN, + ACTIONS(5236), 1, + anon_sym_LBRACK, + ACTIONS(5238), 1, anon_sym_BANG, - anon_sym_PLUS, - anon_sym_DASH, + ACTIONS(6017), 1, + anon_sym_switch, + ACTIONS(6031), 1, + anon_sym_with, + ACTIONS(7221), 1, anon_sym_SLASH, + ACTIONS(7225), 1, + anon_sym_GT_GT, + ACTIONS(7227), 1, + anon_sym_DOT_DOT, + ACTIONS(7342), 1, + anon_sym_QMARK, + ACTIONS(7344), 1, + anon_sym_CARET, + ACTIONS(7346), 1, anon_sym_PIPE, + ACTIONS(7348), 1, anon_sym_AMP, - anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(5949), 26, - anon_sym_LBRACK, - anon_sym_LPAREN, + ACTIONS(7354), 1, + anon_sym_AMP_AMP, + ACTIONS(7356), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7358), 1, + anon_sym_QMARK_QMARK, + ACTIONS(7360), 1, + anon_sym_as, + ACTIONS(7362), 1, + anon_sym_is, + STATE(2605), 1, + sym_bracketed_argument_list, + STATE(3348), 1, + sym_argument_list, + ACTIONS(5240), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + ACTIONS(7217), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(7219), 2, anon_sym_STAR, anon_sym_PERCENT, - anon_sym_CARET, + ACTIONS(7223), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, + ACTIONS(7340), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(7350), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + ACTIONS(7352), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - anon_sym_EQ_GT, - anon_sym_switch, - anon_sym_when, - anon_sym_DOT_DOT, + ACTIONS(5652), 4, 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, - [103034] = 15, + anon_sym_into, + anon_sym_on, + STATE(4725), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + [97615] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -612783,60 +607348,85 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(7388), 1, - anon_sym_into, - STATE(4784), 1, - aux_sym__query_body_repeat2, - STATE(4785), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - ACTIONS(5960), 11, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, + ACTIONS(4092), 1, + anon_sym_DOT, + ACTIONS(4094), 1, + anon_sym_DASH_GT, + ACTIONS(5227), 1, + anon_sym_LPAREN, + ACTIONS(5236), 1, + anon_sym_LBRACK, + ACTIONS(5238), 1, anon_sym_BANG, - anon_sym_PLUS, - anon_sym_DASH, + ACTIONS(6017), 1, + anon_sym_switch, + ACTIONS(6031), 1, + anon_sym_with, + ACTIONS(7221), 1, anon_sym_SLASH, + ACTIONS(7225), 1, + anon_sym_GT_GT, + ACTIONS(7227), 1, + anon_sym_DOT_DOT, + ACTIONS(7342), 1, + anon_sym_QMARK, + ACTIONS(7344), 1, + anon_sym_CARET, + ACTIONS(7346), 1, anon_sym_PIPE, + ACTIONS(7348), 1, anon_sym_AMP, - anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(5958), 26, - anon_sym_LBRACK, - anon_sym_LPAREN, + ACTIONS(7354), 1, + anon_sym_AMP_AMP, + ACTIONS(7356), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7358), 1, + anon_sym_QMARK_QMARK, + ACTIONS(7360), 1, + anon_sym_as, + ACTIONS(7362), 1, + anon_sym_is, + STATE(2605), 1, + sym_bracketed_argument_list, + STATE(3348), 1, + sym_argument_list, + ACTIONS(5240), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + ACTIONS(7217), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(7219), 2, anon_sym_STAR, anon_sym_PERCENT, - anon_sym_CARET, + ACTIONS(7223), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, + ACTIONS(7340), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(7350), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + ACTIONS(7352), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - anon_sym_EQ_GT, - anon_sym_switch, - anon_sym_when, - anon_sym_DOT_DOT, + ACTIONS(5801), 4, 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, - [103123] = 13, + anon_sym_into, + anon_sym_on, + STATE(4726), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + [97754] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -612857,7 +607447,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - STATE(4786), 9, + STATE(4727), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -612867,7 +607457,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5447), 11, + ACTIONS(5410), 11, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, @@ -612879,7 +607469,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT, - ACTIONS(5445), 28, + ACTIONS(5408), 28, sym_interpolation_close_brace, anon_sym_LBRACK, anon_sym_COLON, @@ -612908,7 +607498,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, anon_sym_DASH_GT, anon_sym_with, - [103208] = 34, + [97839] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -612929,69 +607519,75 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4075), 1, + ACTIONS(4092), 1, anon_sym_DOT, - ACTIONS(4077), 1, + ACTIONS(4094), 1, anon_sym_DASH_GT, - ACTIONS(5247), 1, + ACTIONS(5227), 1, anon_sym_LPAREN, - ACTIONS(5283), 1, + ACTIONS(5236), 1, anon_sym_LBRACK, - ACTIONS(5285), 1, + ACTIONS(5238), 1, anon_sym_BANG, - ACTIONS(6147), 1, + ACTIONS(6017), 1, anon_sym_switch, - ACTIONS(6157), 1, + ACTIONS(6027), 1, anon_sym_as, - ACTIONS(6161), 1, + ACTIONS(6031), 1, anon_sym_with, - ACTIONS(7091), 1, + ACTIONS(7269), 1, anon_sym_SLASH, - ACTIONS(7101), 1, + ACTIONS(7273), 1, anon_sym_GT_GT, - ACTIONS(7107), 1, + ACTIONS(7275), 1, anon_sym_DOT_DOT, - ACTIONS(7111), 1, + ACTIONS(7292), 1, + anon_sym_QMARK, + ACTIONS(7294), 1, + anon_sym_CARET, + ACTIONS(7296), 1, + anon_sym_PIPE, + ACTIONS(7298), 1, + anon_sym_AMP, + ACTIONS(7304), 1, + anon_sym_AMP_AMP, + ACTIONS(7306), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7308), 1, + anon_sym_QMARK_QMARK, + ACTIONS(7310), 1, anon_sym_is, - STATE(2613), 1, + STATE(2605), 1, sym_bracketed_argument_list, - STATE(3259), 1, + STATE(3348), 1, sym_argument_list, - ACTIONS(5287), 2, + ACTIONS(5240), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7085), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(7087), 2, + ACTIONS(7265), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7089), 2, + ACTIONS(7267), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7099), 2, + ACTIONS(7271), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7103), 2, + ACTIONS(7290), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(7300), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7105), 2, + ACTIONS(7302), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5664), 3, - anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_AMP, - ACTIONS(5660), 8, - anon_sym_CARET, + ACTIONS(5865), 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(4787), 9, + STATE(4728), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -613001,7 +607597,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [103335] = 33, + [97978] = 24, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -613022,57 +607618,40 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4075), 1, + ACTIONS(4042), 1, anon_sym_DOT, - ACTIONS(4077), 1, + ACTIONS(4044), 1, anon_sym_DASH_GT, - ACTIONS(5247), 1, + ACTIONS(5257), 1, anon_sym_LPAREN, - ACTIONS(5283), 1, + ACTIONS(5300), 1, anon_sym_LBRACK, - ACTIONS(5285), 1, + ACTIONS(5302), 1, anon_sym_BANG, - ACTIONS(6147), 1, + ACTIONS(6495), 1, anon_sym_switch, - ACTIONS(6157), 1, - anon_sym_as, - ACTIONS(6161), 1, + ACTIONS(6509), 1, anon_sym_with, - ACTIONS(7091), 1, - anon_sym_SLASH, - ACTIONS(7101), 1, - anon_sym_GT_GT, - ACTIONS(7107), 1, + ACTIONS(7137), 1, anon_sym_DOT_DOT, - ACTIONS(7111), 1, - anon_sym_is, - STATE(2613), 1, + STATE(2759), 1, sym_bracketed_argument_list, - STATE(3259), 1, + STATE(3381), 1, sym_argument_list, - ACTIONS(5287), 2, + ACTIONS(5304), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7085), 2, + ACTIONS(5739), 9, anon_sym_LT, anon_sym_GT, - ACTIONS(7087), 2, + anon_sym_QMARK, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7089), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(7099), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - ACTIONS(7105), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(5664), 3, - anon_sym_QMARK, + anon_sym_SLASH, anon_sym_PIPE, anon_sym_AMP, - STATE(4788), 9, + anon_sym_GT_GT, + STATE(4729), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -613082,18 +607661,26 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5660), 10, + ACTIONS(5737), 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_EQ_GT, + 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, - [103460] = 37, + anon_sym_as, + anon_sym_is, + [98085] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -613114,72 +607701,75 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4075), 1, + ACTIONS(4092), 1, anon_sym_DOT, - ACTIONS(4077), 1, + ACTIONS(4094), 1, anon_sym_DASH_GT, - ACTIONS(5247), 1, + ACTIONS(5227), 1, anon_sym_LPAREN, - ACTIONS(5283), 1, + ACTIONS(5236), 1, anon_sym_LBRACK, - ACTIONS(5285), 1, + ACTIONS(5238), 1, anon_sym_BANG, - ACTIONS(5664), 1, - anon_sym_QMARK, - ACTIONS(6147), 1, + ACTIONS(6017), 1, anon_sym_switch, - ACTIONS(6157), 1, - anon_sym_as, - ACTIONS(6161), 1, + ACTIONS(6031), 1, anon_sym_with, - ACTIONS(7091), 1, + ACTIONS(7167), 1, anon_sym_SLASH, - ACTIONS(7093), 1, + ACTIONS(7171), 1, + anon_sym_GT_GT, + ACTIONS(7173), 1, + anon_sym_DOT_DOT, + ACTIONS(7318), 1, + anon_sym_QMARK, + ACTIONS(7320), 1, anon_sym_CARET, - ACTIONS(7095), 1, + ACTIONS(7322), 1, anon_sym_PIPE, - ACTIONS(7097), 1, + ACTIONS(7324), 1, anon_sym_AMP, - ACTIONS(7101), 1, - anon_sym_GT_GT, - ACTIONS(7107), 1, - anon_sym_DOT_DOT, - ACTIONS(7111), 1, + ACTIONS(7330), 1, + anon_sym_AMP_AMP, + ACTIONS(7332), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7334), 1, + anon_sym_QMARK_QMARK, + ACTIONS(7336), 1, + anon_sym_as, + ACTIONS(7338), 1, anon_sym_is, - STATE(2613), 1, + STATE(2605), 1, sym_bracketed_argument_list, - STATE(3259), 1, + STATE(3348), 1, sym_argument_list, - ACTIONS(5287), 2, + ACTIONS(5240), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7085), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(7087), 2, + ACTIONS(7163), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7089), 2, + ACTIONS(7165), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7099), 2, + ACTIONS(7169), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7103), 2, + ACTIONS(7316), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(7326), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7105), 2, + ACTIONS(7328), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5660), 7, - anon_sym_EQ_GT, + ACTIONS(5733), 4, anon_sym_and, anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_QMARK_QMARK, anon_sym_into, - STATE(4789), 9, + anon_sym_equals, + STATE(4730), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -613189,7 +607779,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [103593] = 41, + [98224] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -613210,76 +607800,75 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4100), 1, + ACTIONS(4092), 1, anon_sym_DOT, - ACTIONS(4102), 1, + ACTIONS(4094), 1, anon_sym_DASH_GT, - ACTIONS(5264), 1, + ACTIONS(5227), 1, anon_sym_LPAREN, - ACTIONS(5304), 1, - anon_sym_BANG, - ACTIONS(5573), 1, + ACTIONS(5236), 1, anon_sym_LBRACK, - ACTIONS(6343), 1, + ACTIONS(5238), 1, + anon_sym_BANG, + ACTIONS(6017), 1, anon_sym_switch, - ACTIONS(6357), 1, + ACTIONS(6031), 1, anon_sym_with, - ACTIONS(6813), 1, - anon_sym_as, - ACTIONS(6815), 1, - anon_sym_is, - ACTIONS(7183), 1, + ACTIONS(7221), 1, anon_sym_SLASH, - ACTIONS(7187), 1, + ACTIONS(7225), 1, anon_sym_GT_GT, - ACTIONS(7189), 1, + ACTIONS(7227), 1, anon_sym_DOT_DOT, - ACTIONS(7195), 1, - anon_sym_AMP, - ACTIONS(7201), 1, + ACTIONS(7342), 1, + anon_sym_QMARK, + ACTIONS(7344), 1, anon_sym_CARET, - ACTIONS(7203), 1, + ACTIONS(7346), 1, anon_sym_PIPE, - ACTIONS(7205), 1, + ACTIONS(7348), 1, + anon_sym_AMP, + ACTIONS(7354), 1, anon_sym_AMP_AMP, - ACTIONS(7207), 1, + ACTIONS(7356), 1, anon_sym_PIPE_PIPE, - ACTIONS(7209), 1, + ACTIONS(7358), 1, anon_sym_QMARK_QMARK, - ACTIONS(7237), 1, - anon_sym_QMARK, - ACTIONS(7393), 1, - anon_sym_SEMI, - STATE(2485), 1, + ACTIONS(7360), 1, + anon_sym_as, + ACTIONS(7362), 1, + anon_sym_is, + STATE(2605), 1, sym_bracketed_argument_list, - STATE(3487), 1, + STATE(3348), 1, sym_argument_list, - ACTIONS(5306), 2, + ACTIONS(5240), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7179), 2, + ACTIONS(7217), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7181), 2, + ACTIONS(7219), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7185), 2, + ACTIONS(7223), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7193), 2, + ACTIONS(7340), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7197), 2, + ACTIONS(7350), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7199), 2, + ACTIONS(7352), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5858), 3, - aux_sym_preproc_if_token3, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - STATE(4790), 9, + ACTIONS(5865), 4, + anon_sym_and, + anon_sym_or, + anon_sym_into, + anon_sym_on, + STATE(4731), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -613289,7 +607878,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [103734] = 38, + [98363] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -613310,73 +607899,75 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4100), 1, + ACTIONS(4092), 1, anon_sym_DOT, - ACTIONS(4102), 1, + ACTIONS(4094), 1, anon_sym_DASH_GT, - ACTIONS(5264), 1, + ACTIONS(5227), 1, anon_sym_LPAREN, - ACTIONS(5302), 1, + ACTIONS(5236), 1, anon_sym_LBRACK, - ACTIONS(5304), 1, + ACTIONS(5238), 1, anon_sym_BANG, - ACTIONS(5664), 1, - anon_sym_QMARK, - ACTIONS(6475), 1, + ACTIONS(6017), 1, anon_sym_switch, - ACTIONS(6489), 1, + ACTIONS(6031), 1, anon_sym_with, - ACTIONS(7057), 1, + ACTIONS(7167), 1, anon_sym_SLASH, - ACTIONS(7059), 1, + ACTIONS(7171), 1, + anon_sym_GT_GT, + ACTIONS(7173), 1, + anon_sym_DOT_DOT, + ACTIONS(7318), 1, + anon_sym_QMARK, + ACTIONS(7320), 1, anon_sym_CARET, - ACTIONS(7061), 1, + ACTIONS(7322), 1, anon_sym_PIPE, - ACTIONS(7063), 1, + ACTIONS(7324), 1, anon_sym_AMP, - ACTIONS(7067), 1, - anon_sym_GT_GT, - ACTIONS(7073), 1, - anon_sym_DOT_DOT, - ACTIONS(7075), 1, + ACTIONS(7330), 1, anon_sym_AMP_AMP, - ACTIONS(7081), 1, + ACTIONS(7332), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7334), 1, + anon_sym_QMARK_QMARK, + ACTIONS(7336), 1, anon_sym_as, - ACTIONS(7083), 1, + ACTIONS(7338), 1, anon_sym_is, - STATE(2808), 1, + STATE(2605), 1, sym_bracketed_argument_list, - STATE(3487), 1, + STATE(3348), 1, sym_argument_list, - ACTIONS(5306), 2, + ACTIONS(5240), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7049), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(7053), 2, + ACTIONS(7163), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7055), 2, + ACTIONS(7165), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7065), 2, + ACTIONS(7169), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7069), 2, + ACTIONS(7316), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(7326), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7071), 2, + ACTIONS(7328), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5660), 6, - anon_sym_COLON, - anon_sym_when, + ACTIONS(5855), 4, anon_sym_and, anon_sym_or, - anon_sym_PIPE_PIPE, - anon_sym_QMARK_QMARK, - STATE(4791), 9, + anon_sym_into, + anon_sym_equals, + STATE(4732), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -613386,7 +607977,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [103869] = 41, + [98502] = 22, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -613407,86 +607998,67 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4075), 1, + ACTIONS(4042), 1, anon_sym_DOT, - ACTIONS(4077), 1, + ACTIONS(4044), 1, anon_sym_DASH_GT, - ACTIONS(5247), 1, + ACTIONS(5257), 1, anon_sym_LPAREN, - ACTIONS(5283), 1, + ACTIONS(5300), 1, anon_sym_LBRACK, - ACTIONS(5285), 1, + ACTIONS(5302), 1, anon_sym_BANG, - ACTIONS(5860), 1, - anon_sym_in, - ACTIONS(6147), 1, - anon_sym_switch, - ACTIONS(6157), 1, - anon_sym_as, - ACTIONS(6161), 1, - anon_sym_with, - ACTIONS(7397), 1, - anon_sym_QMARK, - ACTIONS(7403), 1, - anon_sym_SLASH, - ACTIONS(7405), 1, - anon_sym_CARET, - ACTIONS(7407), 1, - anon_sym_PIPE, - ACTIONS(7409), 1, - anon_sym_AMP, - ACTIONS(7413), 1, - anon_sym_GT_GT, - ACTIONS(7419), 1, + ACTIONS(7137), 1, anon_sym_DOT_DOT, - ACTIONS(7421), 1, - anon_sym_AMP_AMP, - ACTIONS(7423), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7425), 1, - anon_sym_QMARK_QMARK, - ACTIONS(7427), 1, - anon_sym_is, - STATE(2613), 1, + STATE(2759), 1, sym_bracketed_argument_list, - STATE(3259), 1, + STATE(3381), 1, sym_argument_list, - ACTIONS(5287), 2, + ACTIONS(5304), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7395), 2, + ACTIONS(1161), 9, anon_sym_LT, anon_sym_GT, - ACTIONS(7399), 2, + anon_sym_QMARK, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7401), 2, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT_GT, + STATE(4733), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + ACTIONS(1147), 20, + anon_sym_COLON, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7411), 2, + anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7415), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7417), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5858), 3, + anon_sym_switch, + anon_sym_when, anon_sym_and, anon_sym_or, - anon_sym_into, - STATE(4792), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - [104010] = 29, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, + anon_sym_as, + anon_sym_is, + anon_sym_with, + [98605] = 22, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -613507,50 +608079,36 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4075), 1, + ACTIONS(4092), 1, anon_sym_DOT, - ACTIONS(4077), 1, + ACTIONS(4094), 1, anon_sym_DASH_GT, - ACTIONS(5247), 1, + ACTIONS(5227), 1, anon_sym_LPAREN, - ACTIONS(5283), 1, + ACTIONS(5236), 1, anon_sym_LBRACK, - ACTIONS(5285), 1, + ACTIONS(5238), 1, anon_sym_BANG, - ACTIONS(6147), 1, - anon_sym_switch, - ACTIONS(6161), 1, - anon_sym_with, - ACTIONS(7403), 1, - anon_sym_SLASH, - ACTIONS(7413), 1, - anon_sym_GT_GT, - ACTIONS(7419), 1, + ACTIONS(7079), 1, anon_sym_DOT_DOT, - STATE(2613), 1, + STATE(2605), 1, sym_bracketed_argument_list, - STATE(3259), 1, + STATE(3348), 1, sym_argument_list, - ACTIONS(5287), 2, + ACTIONS(5240), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7399), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(7401), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(7411), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - ACTIONS(5664), 6, + ACTIONS(1161), 9, 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, - STATE(4793), 9, + anon_sym_GT_GT, + STATE(4734), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -613560,21 +608118,28 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5660), 13, + ACTIONS(1147), 20, + 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_by, anon_sym_as, anon_sym_is, - [104127] = 26, + anon_sym_with, + [98708] = 24, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -613595,45 +608160,40 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4075), 1, + ACTIONS(4092), 1, anon_sym_DOT, - ACTIONS(4077), 1, + ACTIONS(4094), 1, anon_sym_DASH_GT, - ACTIONS(5247), 1, + ACTIONS(5227), 1, anon_sym_LPAREN, - ACTIONS(5283), 1, + ACTIONS(5236), 1, anon_sym_LBRACK, - ACTIONS(5285), 1, + ACTIONS(5238), 1, anon_sym_BANG, - ACTIONS(6147), 1, + ACTIONS(6017), 1, anon_sym_switch, - ACTIONS(6161), 1, + ACTIONS(6031), 1, anon_sym_with, - ACTIONS(7403), 1, - anon_sym_SLASH, - ACTIONS(7419), 1, + ACTIONS(7227), 1, anon_sym_DOT_DOT, - STATE(2613), 1, + STATE(2605), 1, sym_bracketed_argument_list, - STATE(3259), 1, + STATE(3348), 1, sym_argument_list, - ACTIONS(5287), 2, + ACTIONS(5240), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7401), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(5664), 9, + ACTIONS(5739), 9, 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(4794), 9, + STATE(4735), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -613643,7 +608203,9 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5660), 15, + ACTIONS(5737), 18, + anon_sym_STAR, + anon_sym_PERCENT, anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT_GT, @@ -613657,9 +608219,10 @@ 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, - [104238] = 24, + [98815] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -613680,69 +608243,85 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4075), 1, + ACTIONS(4092), 1, anon_sym_DOT, - ACTIONS(4077), 1, + ACTIONS(4094), 1, anon_sym_DASH_GT, - ACTIONS(5247), 1, + ACTIONS(5227), 1, anon_sym_LPAREN, - ACTIONS(5283), 1, + ACTIONS(5236), 1, anon_sym_LBRACK, - ACTIONS(5285), 1, + ACTIONS(5238), 1, anon_sym_BANG, - ACTIONS(6147), 1, + ACTIONS(6017), 1, anon_sym_switch, - ACTIONS(6161), 1, + ACTIONS(6027), 1, + anon_sym_as, + ACTIONS(6031), 1, anon_sym_with, - ACTIONS(7419), 1, + ACTIONS(7269), 1, + anon_sym_SLASH, + ACTIONS(7273), 1, + anon_sym_GT_GT, + ACTIONS(7275), 1, anon_sym_DOT_DOT, - STATE(2613), 1, + ACTIONS(7292), 1, + anon_sym_QMARK, + ACTIONS(7294), 1, + anon_sym_CARET, + ACTIONS(7296), 1, + anon_sym_PIPE, + ACTIONS(7298), 1, + anon_sym_AMP, + ACTIONS(7304), 1, + anon_sym_AMP_AMP, + ACTIONS(7306), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7308), 1, + anon_sym_QMARK_QMARK, + ACTIONS(7310), 1, + anon_sym_is, + STATE(2605), 1, sym_bracketed_argument_list, - STATE(3259), 1, + STATE(3348), 1, sym_argument_list, - ACTIONS(5287), 2, + ACTIONS(5240), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(4795), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - ACTIONS(5664), 10, - anon_sym_LT, - anon_sym_GT, - anon_sym_in, - anon_sym_QMARK, + ACTIONS(7265), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(5660), 17, + ACTIONS(7267), 2, anon_sym_STAR, anon_sym_PERCENT, - anon_sym_CARET, + ACTIONS(7271), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, + ACTIONS(7290), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(7300), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + ACTIONS(7302), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, + ACTIONS(5709), 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, - anon_sym_as, - anon_sym_is, - [104345] = 35, + 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, + [98954] = 35, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -613763,70 +608342,70 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4075), 1, + ACTIONS(4092), 1, anon_sym_DOT, - ACTIONS(4077), 1, + ACTIONS(4094), 1, anon_sym_DASH_GT, - ACTIONS(5247), 1, + ACTIONS(5227), 1, anon_sym_LPAREN, - ACTIONS(5283), 1, + ACTIONS(5236), 1, anon_sym_LBRACK, - ACTIONS(5285), 1, + ACTIONS(5238), 1, anon_sym_BANG, - ACTIONS(6147), 1, + ACTIONS(6017), 1, anon_sym_switch, - ACTIONS(6157), 1, + ACTIONS(6027), 1, anon_sym_as, - ACTIONS(6161), 1, + ACTIONS(6031), 1, anon_sym_with, - ACTIONS(7403), 1, + ACTIONS(7269), 1, anon_sym_SLASH, - ACTIONS(7409), 1, - anon_sym_AMP, - ACTIONS(7413), 1, + ACTIONS(7273), 1, anon_sym_GT_GT, - ACTIONS(7419), 1, + ACTIONS(7275), 1, anon_sym_DOT_DOT, - ACTIONS(7427), 1, + ACTIONS(7298), 1, + anon_sym_AMP, + ACTIONS(7310), 1, anon_sym_is, - STATE(2613), 1, + STATE(2605), 1, sym_bracketed_argument_list, - STATE(3259), 1, + STATE(3348), 1, sym_argument_list, - ACTIONS(5287), 2, + ACTIONS(5240), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7395), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(7399), 2, + ACTIONS(5739), 2, + anon_sym_QMARK, + anon_sym_PIPE, + ACTIONS(7265), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7401), 2, + ACTIONS(7267), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7411), 2, + ACTIONS(7271), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7415), 2, + ACTIONS(7290), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(7300), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7417), 2, + ACTIONS(7302), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5664), 3, - anon_sym_in, - anon_sym_QMARK, - anon_sym_PIPE, - ACTIONS(5660), 7, + ACTIONS(5737), 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(4796), 9, + STATE(4737), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -613836,7 +608415,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [104474] = 36, + [99083] = 36, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -613857,71 +608436,71 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4075), 1, + ACTIONS(4092), 1, anon_sym_DOT, - ACTIONS(4077), 1, + ACTIONS(4094), 1, anon_sym_DASH_GT, - ACTIONS(5247), 1, + ACTIONS(5227), 1, anon_sym_LPAREN, - ACTIONS(5283), 1, + ACTIONS(5236), 1, anon_sym_LBRACK, - ACTIONS(5285), 1, + ACTIONS(5238), 1, anon_sym_BANG, - ACTIONS(6147), 1, + ACTIONS(6017), 1, anon_sym_switch, - ACTIONS(6157), 1, + ACTIONS(6027), 1, anon_sym_as, - ACTIONS(6161), 1, + ACTIONS(6031), 1, anon_sym_with, - ACTIONS(7403), 1, + ACTIONS(7269), 1, anon_sym_SLASH, - ACTIONS(7405), 1, - anon_sym_CARET, - ACTIONS(7409), 1, - anon_sym_AMP, - ACTIONS(7413), 1, + ACTIONS(7273), 1, anon_sym_GT_GT, - ACTIONS(7419), 1, + ACTIONS(7275), 1, anon_sym_DOT_DOT, - ACTIONS(7427), 1, + ACTIONS(7294), 1, + anon_sym_CARET, + ACTIONS(7298), 1, + anon_sym_AMP, + ACTIONS(7310), 1, anon_sym_is, - STATE(2613), 1, + STATE(2605), 1, sym_bracketed_argument_list, - STATE(3259), 1, + STATE(3348), 1, sym_argument_list, - ACTIONS(5287), 2, + ACTIONS(5240), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7395), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(7399), 2, + ACTIONS(5739), 2, + anon_sym_QMARK, + anon_sym_PIPE, + ACTIONS(7265), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7401), 2, + ACTIONS(7267), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7411), 2, + ACTIONS(7271), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7415), 2, + ACTIONS(7290), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(7300), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7417), 2, + ACTIONS(7302), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5664), 3, - anon_sym_in, - anon_sym_QMARK, - anon_sym_PIPE, - ACTIONS(5660), 6, + ACTIONS(5737), 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, - STATE(4797), 9, + STATE(4738), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -613931,7 +608510,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [104605] = 34, + [99214] = 34, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -613952,69 +608531,69 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4075), 1, + ACTIONS(4092), 1, anon_sym_DOT, - ACTIONS(4077), 1, + ACTIONS(4094), 1, anon_sym_DASH_GT, - ACTIONS(5247), 1, + ACTIONS(5227), 1, anon_sym_LPAREN, - ACTIONS(5283), 1, + ACTIONS(5236), 1, anon_sym_LBRACK, - ACTIONS(5285), 1, + ACTIONS(5238), 1, anon_sym_BANG, - ACTIONS(6147), 1, + ACTIONS(6017), 1, anon_sym_switch, - ACTIONS(6157), 1, + ACTIONS(6027), 1, anon_sym_as, - ACTIONS(6161), 1, + ACTIONS(6031), 1, anon_sym_with, - ACTIONS(7403), 1, + ACTIONS(7269), 1, anon_sym_SLASH, - ACTIONS(7413), 1, + ACTIONS(7273), 1, anon_sym_GT_GT, - ACTIONS(7419), 1, + ACTIONS(7275), 1, anon_sym_DOT_DOT, - ACTIONS(7427), 1, + ACTIONS(7310), 1, anon_sym_is, - STATE(2613), 1, + STATE(2605), 1, sym_bracketed_argument_list, - STATE(3259), 1, + STATE(3348), 1, sym_argument_list, - ACTIONS(5287), 2, + ACTIONS(5240), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7395), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(7399), 2, + ACTIONS(7265), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7401), 2, + ACTIONS(7267), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7411), 2, + ACTIONS(7271), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7415), 2, + ACTIONS(7290), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(7300), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7417), 2, + ACTIONS(7302), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5664), 4, - anon_sym_in, + ACTIONS(5739), 3, anon_sym_QMARK, anon_sym_PIPE, anon_sym_AMP, - ACTIONS(5660), 7, + ACTIONS(5737), 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(4798), 9, + STATE(4739), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -614024,7 +608603,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [104732] = 27, + [99341] = 33, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -614045,46 +608624,57 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4075), 1, + ACTIONS(4092), 1, anon_sym_DOT, - ACTIONS(4077), 1, + ACTIONS(4094), 1, anon_sym_DASH_GT, - ACTIONS(5247), 1, + ACTIONS(5227), 1, anon_sym_LPAREN, - ACTIONS(5283), 1, + ACTIONS(5236), 1, anon_sym_LBRACK, - ACTIONS(5285), 1, + ACTIONS(5238), 1, anon_sym_BANG, - ACTIONS(6147), 1, + ACTIONS(6017), 1, anon_sym_switch, - ACTIONS(6161), 1, + ACTIONS(6027), 1, + anon_sym_as, + ACTIONS(6031), 1, anon_sym_with, - ACTIONS(7403), 1, + ACTIONS(7269), 1, anon_sym_SLASH, - ACTIONS(7419), 1, + ACTIONS(7273), 1, + anon_sym_GT_GT, + ACTIONS(7275), 1, anon_sym_DOT_DOT, - STATE(2613), 1, + ACTIONS(7310), 1, + anon_sym_is, + STATE(2605), 1, sym_bracketed_argument_list, - STATE(3259), 1, + STATE(3348), 1, sym_argument_list, - ACTIONS(5287), 2, + ACTIONS(5240), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7399), 2, + ACTIONS(7265), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7401), 2, + ACTIONS(7267), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(5664), 7, + ACTIONS(7271), 2, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + ACTIONS(7290), 2, anon_sym_LT, anon_sym_GT, - anon_sym_in, + ACTIONS(7302), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(5739), 3, anon_sym_QMARK, anon_sym_PIPE, anon_sym_AMP, - anon_sym_GT_GT, - STATE(4799), 9, + STATE(4740), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -614094,23 +608684,18 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5660), 15, + ACTIONS(5737), 10, 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_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, - [104845] = 33, + [99466] = 37, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -614131,68 +608716,72 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4075), 1, + ACTIONS(4092), 1, anon_sym_DOT, - ACTIONS(4077), 1, + ACTIONS(4094), 1, anon_sym_DASH_GT, - ACTIONS(5247), 1, + ACTIONS(5227), 1, anon_sym_LPAREN, - ACTIONS(5283), 1, + ACTIONS(5236), 1, anon_sym_LBRACK, - ACTIONS(5285), 1, + ACTIONS(5238), 1, anon_sym_BANG, - ACTIONS(6147), 1, + ACTIONS(5739), 1, + anon_sym_QMARK, + ACTIONS(6017), 1, anon_sym_switch, - ACTIONS(6157), 1, + ACTIONS(6027), 1, anon_sym_as, - ACTIONS(6161), 1, + ACTIONS(6031), 1, anon_sym_with, - ACTIONS(7403), 1, + ACTIONS(7269), 1, anon_sym_SLASH, - ACTIONS(7413), 1, + ACTIONS(7273), 1, anon_sym_GT_GT, - ACTIONS(7419), 1, + ACTIONS(7275), 1, anon_sym_DOT_DOT, - ACTIONS(7427), 1, + ACTIONS(7294), 1, + anon_sym_CARET, + ACTIONS(7296), 1, + anon_sym_PIPE, + ACTIONS(7298), 1, + anon_sym_AMP, + ACTIONS(7310), 1, anon_sym_is, - STATE(2613), 1, + STATE(2605), 1, sym_bracketed_argument_list, - STATE(3259), 1, + STATE(3348), 1, sym_argument_list, - ACTIONS(5287), 2, + ACTIONS(5240), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7395), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(7399), 2, + ACTIONS(7265), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7401), 2, + ACTIONS(7267), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7411), 2, + ACTIONS(7271), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7417), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(5664), 4, - anon_sym_in, - anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_AMP, - ACTIONS(5660), 9, - anon_sym_CARET, + ACTIONS(7290), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(7300), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + ACTIONS(7302), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(5737), 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, - STATE(4800), 9, + STATE(4741), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -614202,7 +608791,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [104970] = 22, + [99599] = 38, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -614223,67 +608812,83 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4075), 1, + ACTIONS(4092), 1, anon_sym_DOT, - ACTIONS(4077), 1, + ACTIONS(4094), 1, anon_sym_DASH_GT, - ACTIONS(5247), 1, + ACTIONS(5227), 1, anon_sym_LPAREN, - ACTIONS(5283), 1, + ACTIONS(5236), 1, anon_sym_LBRACK, - ACTIONS(5285), 1, + ACTIONS(5238), 1, anon_sym_BANG, - ACTIONS(7419), 1, + ACTIONS(5739), 1, + anon_sym_QMARK, + ACTIONS(6017), 1, + anon_sym_switch, + ACTIONS(6027), 1, + anon_sym_as, + ACTIONS(6031), 1, + anon_sym_with, + ACTIONS(7269), 1, + anon_sym_SLASH, + ACTIONS(7273), 1, + anon_sym_GT_GT, + ACTIONS(7275), 1, anon_sym_DOT_DOT, - STATE(2613), 1, + ACTIONS(7294), 1, + anon_sym_CARET, + ACTIONS(7296), 1, + anon_sym_PIPE, + ACTIONS(7298), 1, + anon_sym_AMP, + ACTIONS(7304), 1, + anon_sym_AMP_AMP, + ACTIONS(7310), 1, + anon_sym_is, + STATE(2605), 1, sym_bracketed_argument_list, - STATE(3259), 1, + STATE(3348), 1, sym_argument_list, - ACTIONS(5287), 2, + ACTIONS(5240), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(4801), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - ACTIONS(5733), 10, - anon_sym_LT, - anon_sym_GT, - anon_sym_in, - anon_sym_QMARK, + ACTIONS(7265), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(5731), 19, + ACTIONS(7267), 2, anon_sym_STAR, anon_sym_PERCENT, - anon_sym_CARET, + ACTIONS(7271), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, + ACTIONS(7290), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(7300), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + ACTIONS(7302), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - anon_sym_switch, + ACTIONS(5737), 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, - anon_sym_as, - anon_sym_is, - anon_sym_with, - [105073] = 37, + STATE(4742), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + [99734] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -614304,72 +608909,75 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4075), 1, + ACTIONS(4092), 1, anon_sym_DOT, - ACTIONS(4077), 1, + ACTIONS(4094), 1, anon_sym_DASH_GT, - ACTIONS(5247), 1, + ACTIONS(5227), 1, anon_sym_LPAREN, - ACTIONS(5283), 1, + ACTIONS(5236), 1, anon_sym_LBRACK, - ACTIONS(5285), 1, + ACTIONS(5238), 1, anon_sym_BANG, - ACTIONS(6147), 1, + ACTIONS(5739), 1, + anon_sym_QMARK, + ACTIONS(6017), 1, anon_sym_switch, - ACTIONS(6157), 1, + ACTIONS(6027), 1, anon_sym_as, - ACTIONS(6161), 1, + ACTIONS(6031), 1, anon_sym_with, - ACTIONS(7403), 1, + ACTIONS(7269), 1, anon_sym_SLASH, - ACTIONS(7405), 1, + ACTIONS(7273), 1, + anon_sym_GT_GT, + ACTIONS(7275), 1, + anon_sym_DOT_DOT, + ACTIONS(7294), 1, anon_sym_CARET, - ACTIONS(7407), 1, + ACTIONS(7296), 1, anon_sym_PIPE, - ACTIONS(7409), 1, + ACTIONS(7298), 1, anon_sym_AMP, - ACTIONS(7413), 1, - anon_sym_GT_GT, - ACTIONS(7419), 1, - anon_sym_DOT_DOT, - ACTIONS(7427), 1, + ACTIONS(7304), 1, + anon_sym_AMP_AMP, + ACTIONS(7306), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7308), 1, + anon_sym_QMARK_QMARK, + ACTIONS(7310), 1, anon_sym_is, - STATE(2613), 1, + STATE(2605), 1, sym_bracketed_argument_list, - STATE(3259), 1, + STATE(3348), 1, sym_argument_list, - ACTIONS(5287), 2, + ACTIONS(5240), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5664), 2, - anon_sym_in, - anon_sym_QMARK, - ACTIONS(7395), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(7399), 2, + ACTIONS(7265), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7401), 2, + ACTIONS(7267), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7411), 2, + ACTIONS(7271), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7415), 2, + ACTIONS(7290), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(7300), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7417), 2, + ACTIONS(7302), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5660), 6, + ACTIONS(5737), 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(4802), 9, + STATE(4743), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -614379,7 +608987,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [105206] = 38, + [99873] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -614400,73 +609008,110 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4075), 1, + ACTIONS(4092), 1, anon_sym_DOT, - ACTIONS(4077), 1, + ACTIONS(4094), 1, anon_sym_DASH_GT, - ACTIONS(5247), 1, + ACTIONS(5227), 1, anon_sym_LPAREN, - ACTIONS(5283), 1, + ACTIONS(5236), 1, anon_sym_LBRACK, - ACTIONS(5285), 1, + ACTIONS(5238), 1, anon_sym_BANG, - ACTIONS(6147), 1, + ACTIONS(6017), 1, anon_sym_switch, - ACTIONS(6157), 1, + ACTIONS(6027), 1, anon_sym_as, - ACTIONS(6161), 1, + ACTIONS(6031), 1, anon_sym_with, - ACTIONS(7403), 1, + ACTIONS(7269), 1, anon_sym_SLASH, - ACTIONS(7405), 1, + ACTIONS(7273), 1, + anon_sym_GT_GT, + ACTIONS(7275), 1, + anon_sym_DOT_DOT, + ACTIONS(7292), 1, + anon_sym_QMARK, + ACTIONS(7294), 1, anon_sym_CARET, - ACTIONS(7407), 1, + ACTIONS(7296), 1, anon_sym_PIPE, - ACTIONS(7409), 1, + ACTIONS(7298), 1, anon_sym_AMP, - ACTIONS(7413), 1, - anon_sym_GT_GT, - ACTIONS(7419), 1, - anon_sym_DOT_DOT, - ACTIONS(7421), 1, + ACTIONS(7304), 1, anon_sym_AMP_AMP, - ACTIONS(7427), 1, + ACTIONS(7306), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7308), 1, + anon_sym_QMARK_QMARK, + ACTIONS(7310), 1, anon_sym_is, - STATE(2613), 1, + STATE(2605), 1, sym_bracketed_argument_list, - STATE(3259), 1, + STATE(3348), 1, sym_argument_list, - ACTIONS(5287), 2, + ACTIONS(5240), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5664), 2, - anon_sym_in, - anon_sym_QMARK, - ACTIONS(7395), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(7399), 2, + ACTIONS(7265), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7401), 2, + ACTIONS(7267), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7411), 2, + ACTIONS(7271), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7415), 2, + ACTIONS(7290), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(7300), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7417), 2, + ACTIONS(7302), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5660), 5, + ACTIONS(5849), 4, + anon_sym_EQ_GT, anon_sym_and, anon_sym_or, - anon_sym_PIPE_PIPE, - anon_sym_QMARK_QMARK, anon_sym_into, - STATE(4803), 9, + STATE(4744), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + [100012] = 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(7314), 1, + anon_sym_and, + ACTIONS(7364), 1, + anon_sym_or, + STATE(4745), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -614476,7 +609121,46 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [105341] = 40, + ACTIONS(5360), 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(5358), 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, + [100101] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -614497,75 +609181,110 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4075), 1, + ACTIONS(4092), 1, anon_sym_DOT, - ACTIONS(4077), 1, + ACTIONS(4094), 1, anon_sym_DASH_GT, - ACTIONS(5247), 1, + ACTIONS(5227), 1, anon_sym_LPAREN, - ACTIONS(5283), 1, + ACTIONS(5236), 1, anon_sym_LBRACK, - ACTIONS(5285), 1, + ACTIONS(5238), 1, anon_sym_BANG, - ACTIONS(6147), 1, + ACTIONS(6017), 1, anon_sym_switch, - ACTIONS(6157), 1, + ACTIONS(6027), 1, anon_sym_as, - ACTIONS(6161), 1, + ACTIONS(6031), 1, anon_sym_with, - ACTIONS(7403), 1, + ACTIONS(7269), 1, anon_sym_SLASH, - ACTIONS(7405), 1, + ACTIONS(7273), 1, + anon_sym_GT_GT, + ACTIONS(7275), 1, + anon_sym_DOT_DOT, + ACTIONS(7292), 1, + anon_sym_QMARK, + ACTIONS(7294), 1, anon_sym_CARET, - ACTIONS(7407), 1, + ACTIONS(7296), 1, anon_sym_PIPE, - ACTIONS(7409), 1, + ACTIONS(7298), 1, anon_sym_AMP, - ACTIONS(7413), 1, - anon_sym_GT_GT, - ACTIONS(7419), 1, - anon_sym_DOT_DOT, - ACTIONS(7421), 1, + ACTIONS(7304), 1, anon_sym_AMP_AMP, - ACTIONS(7423), 1, + ACTIONS(7306), 1, anon_sym_PIPE_PIPE, - ACTIONS(7425), 1, + ACTIONS(7308), 1, anon_sym_QMARK_QMARK, - ACTIONS(7427), 1, + ACTIONS(7310), 1, anon_sym_is, - STATE(2613), 1, + STATE(2605), 1, sym_bracketed_argument_list, - STATE(3259), 1, + STATE(3348), 1, sym_argument_list, - ACTIONS(5287), 2, + ACTIONS(5240), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5664), 2, - anon_sym_in, - anon_sym_QMARK, - ACTIONS(7395), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(7399), 2, + ACTIONS(7265), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7401), 2, + ACTIONS(7267), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7411), 2, + ACTIONS(7271), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7415), 2, + ACTIONS(7290), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(7300), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7417), 2, + ACTIONS(7302), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5660), 3, + ACTIONS(4996), 4, + anon_sym_EQ_GT, anon_sym_and, anon_sym_or, anon_sym_into, - STATE(4804), 9, + STATE(4746), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + [100240] = 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(7314), 1, + anon_sym_and, + ACTIONS(7364), 1, + anon_sym_or, + STATE(4747), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -614575,7 +609294,46 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [105480] = 41, + ACTIONS(6109), 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(6107), 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, + [100329] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -614596,76 +609354,75 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4075), 1, + ACTIONS(4092), 1, anon_sym_DOT, - ACTIONS(4077), 1, + ACTIONS(4094), 1, anon_sym_DASH_GT, - ACTIONS(5247), 1, + ACTIONS(5227), 1, anon_sym_LPAREN, - ACTIONS(5283), 1, + ACTIONS(5236), 1, anon_sym_LBRACK, - ACTIONS(5285), 1, + ACTIONS(5238), 1, anon_sym_BANG, - ACTIONS(5866), 1, - anon_sym_in, - ACTIONS(6147), 1, + ACTIONS(6017), 1, anon_sym_switch, - ACTIONS(6157), 1, + ACTIONS(6027), 1, anon_sym_as, - ACTIONS(6161), 1, + ACTIONS(6031), 1, anon_sym_with, - ACTIONS(7397), 1, - anon_sym_QMARK, - ACTIONS(7403), 1, + ACTIONS(7269), 1, anon_sym_SLASH, - ACTIONS(7405), 1, + ACTIONS(7273), 1, + anon_sym_GT_GT, + ACTIONS(7275), 1, + anon_sym_DOT_DOT, + ACTIONS(7292), 1, + anon_sym_QMARK, + ACTIONS(7294), 1, anon_sym_CARET, - ACTIONS(7407), 1, + ACTIONS(7296), 1, anon_sym_PIPE, - ACTIONS(7409), 1, + ACTIONS(7298), 1, anon_sym_AMP, - ACTIONS(7413), 1, - anon_sym_GT_GT, - ACTIONS(7419), 1, - anon_sym_DOT_DOT, - ACTIONS(7421), 1, + ACTIONS(7304), 1, anon_sym_AMP_AMP, - ACTIONS(7423), 1, + ACTIONS(7306), 1, anon_sym_PIPE_PIPE, - ACTIONS(7425), 1, + ACTIONS(7308), 1, anon_sym_QMARK_QMARK, - ACTIONS(7427), 1, + ACTIONS(7310), 1, anon_sym_is, - STATE(2613), 1, + STATE(2605), 1, sym_bracketed_argument_list, - STATE(3259), 1, + STATE(3348), 1, sym_argument_list, - ACTIONS(5287), 2, + ACTIONS(5240), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7395), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(7399), 2, + ACTIONS(7265), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7401), 2, + ACTIONS(7267), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7411), 2, + ACTIONS(7271), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7415), 2, + ACTIONS(7290), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(7300), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7417), 2, + ACTIONS(7302), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5864), 3, + ACTIONS(5652), 4, + anon_sym_EQ_GT, anon_sym_and, anon_sym_or, anon_sym_into, - STATE(4805), 9, + STATE(4748), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -614675,7 +609432,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [105621] = 41, + [100468] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -614696,86 +609453,59 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4075), 1, - anon_sym_DOT, - ACTIONS(4077), 1, - anon_sym_DASH_GT, - ACTIONS(5074), 1, - anon_sym_in, - ACTIONS(5247), 1, - anon_sym_LPAREN, - ACTIONS(5283), 1, - anon_sym_LBRACK, - ACTIONS(5285), 1, - anon_sym_BANG, - ACTIONS(6147), 1, - anon_sym_switch, - ACTIONS(6157), 1, - anon_sym_as, - ACTIONS(6161), 1, - anon_sym_with, - ACTIONS(7397), 1, + ACTIONS(7286), 1, + anon_sym_and, + STATE(4749), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + ACTIONS(6097), 11, + anon_sym_LT, + anon_sym_GT, anon_sym_QMARK, - ACTIONS(7403), 1, + anon_sym_BANG, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_SLASH, - ACTIONS(7405), 1, - anon_sym_CARET, - ACTIONS(7407), 1, anon_sym_PIPE, - ACTIONS(7409), 1, anon_sym_AMP, - ACTIONS(7413), 1, anon_sym_GT_GT, - ACTIONS(7419), 1, - anon_sym_DOT_DOT, - ACTIONS(7421), 1, - anon_sym_AMP_AMP, - ACTIONS(7423), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7425), 1, - anon_sym_QMARK_QMARK, - ACTIONS(7427), 1, - anon_sym_is, - STATE(2613), 1, - sym_bracketed_argument_list, - STATE(3259), 1, - sym_argument_list, - ACTIONS(5287), 2, + anon_sym_DOT, + ACTIONS(6095), 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(7395), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(7399), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(7401), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7411), 2, + anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7415), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7417), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5072), 3, - 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_into, - STATE(4806), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - [105762] = 41, + anon_sym_as, + anon_sym_is, + anon_sym_DASH_GT, + anon_sym_with, + [100555] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -614796,76 +609526,75 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4075), 1, + ACTIONS(4092), 1, anon_sym_DOT, - ACTIONS(4077), 1, + ACTIONS(4094), 1, anon_sym_DASH_GT, - ACTIONS(5247), 1, + ACTIONS(5227), 1, anon_sym_LPAREN, - ACTIONS(5283), 1, + ACTIONS(5236), 1, anon_sym_LBRACK, - ACTIONS(5285), 1, + ACTIONS(5238), 1, anon_sym_BANG, - ACTIONS(5884), 1, - anon_sym_in, - ACTIONS(6147), 1, + ACTIONS(6017), 1, anon_sym_switch, - ACTIONS(6157), 1, - anon_sym_as, - ACTIONS(6161), 1, + ACTIONS(6031), 1, anon_sym_with, - ACTIONS(7397), 1, - anon_sym_QMARK, - ACTIONS(7403), 1, + ACTIONS(7221), 1, anon_sym_SLASH, - ACTIONS(7405), 1, + ACTIONS(7225), 1, + anon_sym_GT_GT, + ACTIONS(7227), 1, + anon_sym_DOT_DOT, + ACTIONS(7342), 1, + anon_sym_QMARK, + ACTIONS(7344), 1, anon_sym_CARET, - ACTIONS(7407), 1, + ACTIONS(7346), 1, anon_sym_PIPE, - ACTIONS(7409), 1, + ACTIONS(7348), 1, anon_sym_AMP, - ACTIONS(7413), 1, - anon_sym_GT_GT, - ACTIONS(7419), 1, - anon_sym_DOT_DOT, - ACTIONS(7421), 1, + ACTIONS(7354), 1, anon_sym_AMP_AMP, - ACTIONS(7423), 1, + ACTIONS(7356), 1, anon_sym_PIPE_PIPE, - ACTIONS(7425), 1, + ACTIONS(7358), 1, anon_sym_QMARK_QMARK, - ACTIONS(7427), 1, + ACTIONS(7360), 1, + anon_sym_as, + ACTIONS(7362), 1, anon_sym_is, - STATE(2613), 1, + STATE(2605), 1, sym_bracketed_argument_list, - STATE(3259), 1, + STATE(3348), 1, sym_argument_list, - ACTIONS(5287), 2, + ACTIONS(5240), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7395), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(7399), 2, + ACTIONS(7217), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7401), 2, + ACTIONS(7219), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7411), 2, + ACTIONS(7223), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7415), 2, + ACTIONS(7340), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(7350), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7417), 2, + ACTIONS(7352), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5882), 3, + ACTIONS(5733), 4, anon_sym_and, anon_sym_or, anon_sym_into, - STATE(4807), 9, + anon_sym_on, + STATE(4750), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -614875,7 +609604,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [105903] = 41, + [100694] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -614896,76 +609625,75 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4075), 1, + ACTIONS(4092), 1, anon_sym_DOT, - ACTIONS(4077), 1, + ACTIONS(4094), 1, anon_sym_DASH_GT, - ACTIONS(5247), 1, + ACTIONS(5227), 1, anon_sym_LPAREN, - ACTIONS(5283), 1, + ACTIONS(5236), 1, anon_sym_LBRACK, - ACTIONS(5285), 1, + ACTIONS(5238), 1, anon_sym_BANG, - ACTIONS(5901), 1, - anon_sym_in, - ACTIONS(6147), 1, + ACTIONS(6017), 1, anon_sym_switch, - ACTIONS(6157), 1, - anon_sym_as, - ACTIONS(6161), 1, + ACTIONS(6031), 1, anon_sym_with, - ACTIONS(7397), 1, - anon_sym_QMARK, - ACTIONS(7403), 1, + ACTIONS(7221), 1, anon_sym_SLASH, - ACTIONS(7405), 1, + ACTIONS(7225), 1, + anon_sym_GT_GT, + ACTIONS(7227), 1, + anon_sym_DOT_DOT, + ACTIONS(7342), 1, + anon_sym_QMARK, + ACTIONS(7344), 1, anon_sym_CARET, - ACTIONS(7407), 1, + ACTIONS(7346), 1, anon_sym_PIPE, - ACTIONS(7409), 1, + ACTIONS(7348), 1, anon_sym_AMP, - ACTIONS(7413), 1, - anon_sym_GT_GT, - ACTIONS(7419), 1, - anon_sym_DOT_DOT, - ACTIONS(7421), 1, + ACTIONS(7354), 1, anon_sym_AMP_AMP, - ACTIONS(7423), 1, + ACTIONS(7356), 1, anon_sym_PIPE_PIPE, - ACTIONS(7425), 1, + ACTIONS(7358), 1, anon_sym_QMARK_QMARK, - ACTIONS(7427), 1, + ACTIONS(7360), 1, + anon_sym_as, + ACTIONS(7362), 1, anon_sym_is, - STATE(2613), 1, + STATE(2605), 1, sym_bracketed_argument_list, - STATE(3259), 1, + STATE(3348), 1, sym_argument_list, - ACTIONS(5287), 2, + ACTIONS(5240), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7395), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(7399), 2, + ACTIONS(7217), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7401), 2, + ACTIONS(7219), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7411), 2, + ACTIONS(7223), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7415), 2, + ACTIONS(7340), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(7350), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7417), 2, + ACTIONS(7352), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5899), 3, + ACTIONS(5855), 4, anon_sym_and, anon_sym_or, anon_sym_into, - STATE(4808), 9, + anon_sym_on, + STATE(4751), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -614975,7 +609703,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [106044] = 13, + [100833] = 22, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -614996,36 +609724,46 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - STATE(4809), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - ACTIONS(5022), 11, + ACTIONS(4092), 1, + anon_sym_DOT, + ACTIONS(4094), 1, + anon_sym_DASH_GT, + ACTIONS(5227), 1, + anon_sym_LPAREN, + ACTIONS(5236), 1, + anon_sym_LBRACK, + ACTIONS(5238), 1, + anon_sym_BANG, + ACTIONS(7173), 1, + anon_sym_DOT_DOT, + STATE(2605), 1, + sym_bracketed_argument_list, + STATE(3348), 1, + sym_argument_list, + ACTIONS(5240), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1161), 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(5020), 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(4752), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + ACTIONS(1147), 20, anon_sym_STAR, anon_sym_PERCENT, anon_sym_CARET, @@ -615036,18 +609774,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, - [106129] = 29, + [100936] = 24, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -615068,49 +609805,40 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4100), 1, + ACTIONS(4092), 1, anon_sym_DOT, - ACTIONS(4102), 1, + ACTIONS(4094), 1, anon_sym_DASH_GT, - ACTIONS(5264), 1, + ACTIONS(5227), 1, anon_sym_LPAREN, - ACTIONS(5304), 1, - anon_sym_BANG, - ACTIONS(5573), 1, + ACTIONS(5236), 1, anon_sym_LBRACK, - ACTIONS(6343), 1, + ACTIONS(5238), 1, + anon_sym_BANG, + ACTIONS(6017), 1, anon_sym_switch, - ACTIONS(6357), 1, + ACTIONS(6031), 1, anon_sym_with, - ACTIONS(7019), 1, - anon_sym_SLASH, - ACTIONS(7029), 1, - anon_sym_GT_GT, - ACTIONS(7035), 1, + ACTIONS(7275), 1, anon_sym_DOT_DOT, - STATE(2485), 1, + STATE(2605), 1, sym_bracketed_argument_list, - STATE(3487), 1, + STATE(3348), 1, sym_argument_list, - ACTIONS(5306), 2, + ACTIONS(5240), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7015), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(7017), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(7027), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - ACTIONS(5664), 5, + ACTIONS(5739), 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(4810), 9, + anon_sym_GT_GT, + STATE(4753), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -615120,22 +609848,26 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5660), 14, - anon_sym_COLON, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_RBRACE, + ACTIONS(5737), 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_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_as, anon_sym_is, - [106246] = 40, + [101043] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -615156,75 +609888,75 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4443), 1, - anon_sym_DASH_GT, - ACTIONS(4533), 1, + ACTIONS(4042), 1, anon_sym_DOT, - ACTIONS(6574), 1, + ACTIONS(4044), 1, + anon_sym_DASH_GT, + ACTIONS(5257), 1, anon_sym_LPAREN, - ACTIONS(6619), 1, - anon_sym_LBRACK, - ACTIONS(6625), 1, + ACTIONS(5302), 1, anon_sym_BANG, - ACTIONS(6649), 1, + ACTIONS(5549), 1, + anon_sym_LBRACK, + ACTIONS(6355), 1, anon_sym_switch, - ACTIONS(6659), 1, - anon_sym_as, - ACTIONS(6663), 1, + ACTIONS(6369), 1, anon_sym_with, - ACTIONS(7009), 1, + ACTIONS(7179), 1, anon_sym_SLASH, - ACTIONS(7011), 1, + ACTIONS(7183), 1, + anon_sym_GT_GT, + ACTIONS(7185), 1, anon_sym_DOT_DOT, - ACTIONS(7213), 1, - anon_sym_QMARK, - ACTIONS(7215), 1, + ACTIONS(7189), 1, + anon_sym_AMP, + ACTIONS(7195), 1, + anon_sym_as, + ACTIONS(7197), 1, + anon_sym_is, + ACTIONS(7199), 1, anon_sym_CARET, - ACTIONS(7217), 1, + ACTIONS(7201), 1, anon_sym_PIPE, - ACTIONS(7219), 1, - anon_sym_AMP, - ACTIONS(7223), 1, - anon_sym_GT_GT, - ACTIONS(7229), 1, + ACTIONS(7203), 1, anon_sym_AMP_AMP, - ACTIONS(7231), 1, + ACTIONS(7205), 1, anon_sym_PIPE_PIPE, - ACTIONS(7233), 1, + ACTIONS(7207), 1, anon_sym_QMARK_QMARK, - ACTIONS(7235), 1, - anon_sym_is, - STATE(3173), 1, + ACTIONS(7209), 1, + anon_sym_QMARK, + STATE(2467), 1, sym_bracketed_argument_list, - STATE(4583), 1, + STATE(3381), 1, sym_argument_list, - ACTIONS(6627), 2, + ACTIONS(5304), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7005), 2, + ACTIONS(7175), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7007), 2, + ACTIONS(7177), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7211), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(7221), 2, + ACTIONS(7181), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7225), 2, + ACTIONS(7187), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(7191), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7227), 2, + ACTIONS(7193), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5745), 4, - sym_interpolation_close_brace, + ACTIONS(5801), 4, anon_sym_COLON, anon_sym_COMMA, - anon_sym_into, - STATE(4811), 9, + anon_sym_RPAREN, + anon_sym_RBRACE, + STATE(4754), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -615234,7 +609966,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [106385] = 13, + [101182] = 22, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -615255,36 +609987,50 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - STATE(4812), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - ACTIONS(5074), 11, + ACTIONS(4042), 1, + anon_sym_DOT, + ACTIONS(4044), 1, + anon_sym_DASH_GT, + ACTIONS(5257), 1, + anon_sym_LPAREN, + ACTIONS(5302), 1, + anon_sym_BANG, + ACTIONS(5549), 1, + anon_sym_LBRACK, + ACTIONS(7185), 1, + anon_sym_DOT_DOT, + STATE(2467), 1, + sym_bracketed_argument_list, + STATE(3381), 1, + sym_argument_list, + ACTIONS(5304), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1161), 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(5072), 28, - sym_interpolation_close_brace, - anon_sym_LBRACK, + STATE(4755), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + ACTIONS(1147), 20, anon_sym_COLON, anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, + anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_STAR, anon_sym_PERCENT, anon_sym_CARET, @@ -615295,18 +610041,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_into, anon_sym_as, anon_sym_is, - anon_sym_DASH_GT, anon_sym_with, - [106470] = 26, + [101285] = 22, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -615327,44 +610068,36 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4100), 1, + ACTIONS(4092), 1, anon_sym_DOT, - ACTIONS(4102), 1, + ACTIONS(4094), 1, anon_sym_DASH_GT, - ACTIONS(5264), 1, + ACTIONS(5227), 1, anon_sym_LPAREN, - ACTIONS(5304), 1, - anon_sym_BANG, - ACTIONS(5573), 1, + ACTIONS(5236), 1, anon_sym_LBRACK, - ACTIONS(6343), 1, - anon_sym_switch, - ACTIONS(6357), 1, - anon_sym_with, - ACTIONS(7019), 1, - anon_sym_SLASH, - ACTIONS(7035), 1, + ACTIONS(5238), 1, + anon_sym_BANG, + ACTIONS(7227), 1, anon_sym_DOT_DOT, - STATE(2485), 1, + STATE(2605), 1, sym_bracketed_argument_list, - STATE(3487), 1, + STATE(3348), 1, sym_argument_list, - ACTIONS(5306), 2, + ACTIONS(5240), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7017), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(5664), 8, + ACTIONS(1161), 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(4813), 9, + STATE(4756), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -615374,11 +610107,9 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5660), 16, - anon_sym_COLON, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_RBRACE, + ACTIONS(1147), 20, + anon_sym_STAR, + anon_sym_PERCENT, anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT_GT, @@ -615386,12 +610117,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_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, - [106581] = 13, + anon_sym_with, + [101388] = 22, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -615412,36 +610149,46 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - STATE(4814), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - ACTIONS(5048), 11, + ACTIONS(4092), 1, + anon_sym_DOT, + ACTIONS(4094), 1, + anon_sym_DASH_GT, + ACTIONS(5227), 1, + anon_sym_LPAREN, + ACTIONS(5236), 1, + anon_sym_LBRACK, + ACTIONS(5238), 1, + anon_sym_BANG, + ACTIONS(7275), 1, + anon_sym_DOT_DOT, + STATE(2605), 1, + sym_bracketed_argument_list, + STATE(3348), 1, + sym_argument_list, + ACTIONS(5240), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1161), 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(5046), 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(4757), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + ACTIONS(1147), 20, anon_sym_STAR, anon_sym_PERCENT, anon_sym_CARET, @@ -615451,8 +610198,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_DOT_DOT, anon_sym_and, anon_sym_or, anon_sym_AMP_AMP, @@ -615461,9 +610208,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, - [106666] = 13, + [101491] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -615484,7 +610230,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - STATE(4815), 9, + STATE(4758), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -615494,7 +610240,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5060), 11, + ACTIONS(5186), 11, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, @@ -615506,7 +610252,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT, - ACTIONS(5058), 28, + ACTIONS(5184), 28, sym_interpolation_close_brace, anon_sym_LBRACK, anon_sym_COLON, @@ -615535,7 +610281,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, anon_sym_DASH_GT, anon_sym_with, - [106751] = 13, + [101576] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -615556,7 +610302,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - STATE(4816), 9, + STATE(4759), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -615566,7 +610312,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5078), 11, + ACTIONS(5432), 11, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, @@ -615578,7 +610324,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT, - ACTIONS(5076), 28, + ACTIONS(5430), 28, sym_interpolation_close_brace, anon_sym_LBRACK, anon_sym_COLON, @@ -615607,7 +610353,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, anon_sym_DASH_GT, anon_sym_with, - [106836] = 13, + [101661] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -615628,7 +610374,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - STATE(4817), 9, + STATE(4760), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -615638,7 +610384,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5116), 11, + ACTIONS(5436), 11, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, @@ -615650,7 +610396,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT, - ACTIONS(5114), 28, + ACTIONS(5434), 28, sym_interpolation_close_brace, anon_sym_LBRACK, anon_sym_COLON, @@ -615679,7 +610425,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, anon_sym_DASH_GT, anon_sym_with, - [106921] = 21, + [101746] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -615700,33 +610446,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, - STATE(2175), 1, - sym__reserved_identifier, - STATE(2181), 1, - sym_generic_name, - STATE(4373), 1, - sym_identifier, - STATE(5792), 1, - sym_attribute_target_specifier, - STATE(6519), 1, - sym__name, - STATE(6989), 1, - sym_attribute, - STATE(4096), 3, - sym_alias_qualified_name, - sym__simple_name, - sym_qualified_name, - ACTIONS(1055), 7, - anon_sym_field, - anon_sym_event, - anon_sym_method, - anon_sym_param, - anon_sym_property, - anon_sym_return, - anon_sym_type, - STATE(4818), 9, + STATE(4761), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -615736,93 +610456,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, - 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, - [107022] = 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(4443), 1, - anon_sym_DASH_GT, - ACTIONS(4533), 1, - anon_sym_DOT, - ACTIONS(6574), 1, - anon_sym_LPAREN, - ACTIONS(6619), 1, - anon_sym_LBRACK, - ACTIONS(6625), 1, - anon_sym_BANG, - ACTIONS(7011), 1, - anon_sym_DOT_DOT, - STATE(3173), 1, - sym_bracketed_argument_list, - STATE(4583), 1, - sym_argument_list, - ACTIONS(6627), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5733), 9, + ACTIONS(5440), 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(4819), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - ACTIONS(5731), 20, + anon_sym_DOT, + ACTIONS(5438), 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, @@ -615833,14 +610486,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, - [107125] = 21, + [101831] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -615861,87 +610518,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, - STATE(2175), 1, - sym__reserved_identifier, - STATE(2181), 1, - sym_generic_name, - STATE(4373), 1, - sym_identifier, - STATE(5794), 1, - sym_attribute_target_specifier, - STATE(6519), 1, - sym__name, - STATE(6921), 1, - sym_attribute, - STATE(4096), 3, - sym_alias_qualified_name, - sym__simple_name, - sym_qualified_name, - ACTIONS(1055), 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, + ACTIONS(7279), 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, - [107226] = 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(4821), 9, + STATE(4619), 1, + aux_sym__query_body_repeat2, + STATE(4762), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -615951,7 +610532,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5052), 11, + ACTIONS(5935), 11, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, @@ -615963,12 +610544,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT, - ACTIONS(5050), 28, - sym_interpolation_close_brace, + ACTIONS(5933), 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, @@ -615982,17 +610564,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_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, - [107311] = 24, + [101920] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -616013,40 +610592,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4100), 1, - anon_sym_DOT, - ACTIONS(4102), 1, - anon_sym_DASH_GT, - ACTIONS(5264), 1, - anon_sym_LPAREN, - ACTIONS(5304), 1, - anon_sym_BANG, - ACTIONS(5573), 1, - anon_sym_LBRACK, - ACTIONS(6343), 1, - anon_sym_switch, - ACTIONS(6357), 1, - anon_sym_with, - ACTIONS(7035), 1, - anon_sym_DOT_DOT, - STATE(2485), 1, - sym_bracketed_argument_list, - STATE(3487), 1, - sym_argument_list, - ACTIONS(5306), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5664), 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(4822), 9, + STATE(4763), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -616056,11 +610602,26 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5660), 18, + ACTIONS(5406), 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(3809), 28, + sym_interpolation_close_brace, + 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, @@ -616070,111 +610631,19 @@ static const uint16_t ts_small_parse_table[] = { 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, - [107418] = 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(4100), 1, - anon_sym_DOT, - ACTIONS(4102), 1, - anon_sym_DASH_GT, - ACTIONS(5264), 1, - anon_sym_LPAREN, - ACTIONS(5302), 1, - anon_sym_LBRACK, - ACTIONS(5304), 1, - anon_sym_BANG, - ACTIONS(5664), 1, - anon_sym_QMARK, - ACTIONS(6475), 1, anon_sym_switch, - ACTIONS(6489), 1, - anon_sym_with, - ACTIONS(7057), 1, - anon_sym_SLASH, - ACTIONS(7059), 1, - anon_sym_CARET, - ACTIONS(7061), 1, - anon_sym_PIPE, - ACTIONS(7063), 1, - anon_sym_AMP, - ACTIONS(7067), 1, - anon_sym_GT_GT, - ACTIONS(7073), 1, anon_sym_DOT_DOT, - ACTIONS(7075), 1, + anon_sym_and, + anon_sym_or, anon_sym_AMP_AMP, - ACTIONS(7077), 1, anon_sym_PIPE_PIPE, - ACTIONS(7079), 1, anon_sym_QMARK_QMARK, - ACTIONS(7081), 1, + anon_sym_into, anon_sym_as, - ACTIONS(7083), 1, anon_sym_is, - STATE(2808), 1, - sym_bracketed_argument_list, - STATE(3487), 1, - sym_argument_list, - ACTIONS(5306), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(7049), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(7053), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(7055), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(7065), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - ACTIONS(7069), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(7071), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(5660), 4, - anon_sym_COLON, - anon_sym_when, - anon_sym_and, - anon_sym_or, - STATE(4823), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - [107557] = 35, + anon_sym_DASH_GT, + anon_sym_with, + [102005] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -616195,70 +610664,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4100), 1, - anon_sym_DOT, - ACTIONS(4102), 1, - anon_sym_DASH_GT, - ACTIONS(5264), 1, - anon_sym_LPAREN, - ACTIONS(5304), 1, - anon_sym_BANG, - ACTIONS(5573), 1, - anon_sym_LBRACK, - ACTIONS(6343), 1, - anon_sym_switch, - ACTIONS(6357), 1, - anon_sym_with, - ACTIONS(6813), 1, - anon_sym_as, - ACTIONS(7145), 1, - anon_sym_SLASH, - ACTIONS(7151), 1, - anon_sym_AMP, - ACTIONS(7155), 1, - anon_sym_GT_GT, - ACTIONS(7161), 1, - anon_sym_DOT_DOT, - ACTIONS(7169), 1, - anon_sym_is, - STATE(2485), 1, - sym_bracketed_argument_list, - STATE(3487), 1, - sym_argument_list, - ACTIONS(5306), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5664), 2, - anon_sym_QMARK, - anon_sym_PIPE, - ACTIONS(7137), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(7141), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(7143), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(7153), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - ACTIONS(7157), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(7159), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(5660), 8, - 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, - STATE(4824), 9, + STATE(4764), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -616268,75 +610674,26 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [107686] = 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(4100), 1, - anon_sym_DOT, - ACTIONS(4102), 1, - anon_sym_DASH_GT, - ACTIONS(5264), 1, - anon_sym_LPAREN, - ACTIONS(5304), 1, - anon_sym_BANG, - ACTIONS(5573), 1, - anon_sym_LBRACK, - ACTIONS(6343), 1, - anon_sym_switch, - ACTIONS(6357), 1, - anon_sym_with, - ACTIONS(7161), 1, - anon_sym_DOT_DOT, - STATE(2485), 1, - sym_bracketed_argument_list, - STATE(3487), 1, - sym_argument_list, - ACTIONS(5306), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5664), 9, + ACTIONS(5444), 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(4825), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - ACTIONS(5660), 18, + anon_sym_DOT, + ACTIONS(5442), 28, + sym_interpolation_close_brace, + anon_sym_LBRACK, + anon_sym_COLON, anon_sym_COMMA, - anon_sym_RBRACK, - 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, @@ -616346,12 +610703,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, - [107793] = 15, + anon_sym_DASH_GT, + anon_sym_with, + [102090] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -616372,11 +610736,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(7429), 1, - anon_sym_into, - STATE(4827), 1, - aux_sym__query_body_repeat2, - STATE(4826), 9, + STATE(4765), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -616386,7 +610746,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(6001), 11, + ACTIONS(5324), 11, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, @@ -616398,9 +610758,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT, - ACTIONS(5999), 26, + ACTIONS(5322), 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, @@ -616414,18 +610776,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, - [107882] = 15, + [102175] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -616446,11 +610808,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(7429), 1, - anon_sym_into, - STATE(4829), 1, - aux_sym__query_body_repeat2, - STATE(4827), 9, + STATE(4766), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -616460,7 +610818,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(6005), 11, + ACTIONS(5324), 11, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, @@ -616472,9 +610830,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT, - ACTIONS(6003), 26, + ACTIONS(5322), 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, @@ -616488,18 +610848,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, - [107971] = 15, + [102260] = 21, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -616520,11 +610880,33 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(7429), 1, - anon_sym_into, - STATE(4830), 1, - aux_sym__query_body_repeat2, - STATE(4828), 9, + ACTIONS(25), 1, + sym__identifier_token, + STATE(2168), 1, + sym__reserved_identifier, + STATE(2170), 1, + sym_generic_name, + STATE(4370), 1, + sym_identifier, + STATE(5780), 1, + sym_attribute_target_specifier, + STATE(6503), 1, + sym__name, + STATE(6752), 1, + sym_attribute, + STATE(4068), 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(4767), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -616534,46 +610916,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(6005), 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(6003), 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, + 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_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, - [108060] = 14, + 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, + [102361] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -616594,9 +610960,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(7431), 1, + ACTIONS(7366), 1, anon_sym_into, - STATE(4829), 10, + STATE(4769), 1, + aux_sym__query_body_repeat2, + STATE(4768), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -616606,8 +610974,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - aux_sym__query_body_repeat2, - ACTIONS(5951), 11, + ACTIONS(5935), 11, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, @@ -616619,9 +610986,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT, - ACTIONS(5949), 26, + ACTIONS(5933), 26, anon_sym_LBRACK, - anon_sym_COLON, anon_sym_LPAREN, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, @@ -616634,6 +611000,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_DOT_DOT, @@ -616646,7 +611013,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, anon_sym_DASH_GT, anon_sym_with, - [108147] = 15, + [102450] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -616667,11 +611034,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(7429), 1, + ACTIONS(7366), 1, anon_sym_into, - STATE(4829), 1, + STATE(4771), 1, aux_sym__query_body_repeat2, - STATE(4830), 9, + STATE(4769), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -616681,7 +611048,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5960), 11, + ACTIONS(5881), 11, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, @@ -616693,9 +611060,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT, - ACTIONS(5958), 26, + ACTIONS(5879), 26, anon_sym_LBRACK, - anon_sym_COLON, anon_sym_LPAREN, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, @@ -616708,6 +611074,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_DOT_DOT, @@ -616720,7 +611087,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, anon_sym_DASH_GT, anon_sym_with, - [108236] = 13, + [102539] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -616741,14 +611108,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4751), 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(4831), 9, + ACTIONS(7366), 1, + anon_sym_into, + STATE(4772), 1, + aux_sym__query_body_repeat2, + STATE(4770), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -616758,136 +611122,46 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(4749), 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, - [108321] = 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(4100), 1, - anon_sym_DOT, - ACTIONS(4102), 1, - anon_sym_DASH_GT, - ACTIONS(5264), 1, - anon_sym_LPAREN, - ACTIONS(5304), 1, + ACTIONS(5881), 11, + anon_sym_LT, + anon_sym_GT, + anon_sym_QMARK, anon_sym_BANG, - ACTIONS(5573), 1, - anon_sym_LBRACK, - ACTIONS(6343), 1, - anon_sym_switch, - ACTIONS(6357), 1, - anon_sym_with, - ACTIONS(6813), 1, - anon_sym_as, - ACTIONS(7145), 1, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_SLASH, - ACTIONS(7147), 1, - anon_sym_CARET, - ACTIONS(7151), 1, + anon_sym_PIPE, anon_sym_AMP, - ACTIONS(7155), 1, anon_sym_GT_GT, - ACTIONS(7161), 1, - anon_sym_DOT_DOT, - ACTIONS(7169), 1, - anon_sym_is, - STATE(2485), 1, - sym_bracketed_argument_list, - STATE(3487), 1, - sym_argument_list, - ACTIONS(5306), 2, + anon_sym_DOT, + ACTIONS(5879), 26, + anon_sym_LBRACK, + anon_sym_LPAREN, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5664), 2, - anon_sym_QMARK, - anon_sym_PIPE, - ACTIONS(7137), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(7141), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(7143), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7153), 2, + anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7157), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7159), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5660), 7, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_RBRACE, + 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, - STATE(4832), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - [108452] = 13, + anon_sym_QMARK_QMARK, + anon_sym_as, + anon_sym_is, + anon_sym_DASH_GT, + anon_sym_with, + [102628] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -616908,7 +611182,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - STATE(4833), 9, + ACTIONS(7368), 1, + anon_sym_into, + STATE(4771), 10, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -616918,7 +611194,8 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5174), 11, + aux_sym__query_body_repeat2, + ACTIONS(5953), 11, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, @@ -616930,11 +611207,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT, - ACTIONS(5172), 28, - sym_interpolation_close_brace, + ACTIONS(5951), 26, anon_sym_LBRACK, - anon_sym_COLON, - anon_sym_COMMA, anon_sym_LPAREN, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, @@ -616947,19 +611221,20 @@ 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, anon_sym_PIPE_PIPE, anon_sym_QMARK_QMARK, - anon_sym_into, anon_sym_as, anon_sym_is, anon_sym_DASH_GT, anon_sym_with, - [108537] = 35, + [102715] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -616980,80 +611255,60 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4100), 1, - anon_sym_DOT, - ACTIONS(4102), 1, - anon_sym_DASH_GT, - ACTIONS(5264), 1, - anon_sym_LPAREN, - ACTIONS(5304), 1, + ACTIONS(7366), 1, + anon_sym_into, + STATE(4771), 1, + aux_sym__query_body_repeat2, + STATE(4772), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + ACTIONS(5960), 11, + anon_sym_LT, + anon_sym_GT, + anon_sym_QMARK, anon_sym_BANG, - ACTIONS(5573), 1, - anon_sym_LBRACK, - ACTIONS(6343), 1, - anon_sym_switch, - ACTIONS(6357), 1, - anon_sym_with, - ACTIONS(7019), 1, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_SLASH, - ACTIONS(7025), 1, + anon_sym_PIPE, anon_sym_AMP, - ACTIONS(7029), 1, anon_sym_GT_GT, - ACTIONS(7035), 1, - anon_sym_DOT_DOT, - ACTIONS(7037), 1, - anon_sym_as, - ACTIONS(7039), 1, - anon_sym_is, - STATE(2485), 1, - sym_bracketed_argument_list, - STATE(3487), 1, - sym_argument_list, - ACTIONS(5306), 2, + anon_sym_DOT, + ACTIONS(5958), 26, + anon_sym_LBRACK, + anon_sym_LPAREN, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5664), 2, - anon_sym_QMARK, - anon_sym_PIPE, - ACTIONS(7013), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(7015), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(7017), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7027), 2, + anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7031), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7033), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5660), 8, - anon_sym_COLON, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_CARET, + 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, - STATE(4834), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - [108666] = 36, + anon_sym_as, + anon_sym_is, + anon_sym_DASH_GT, + anon_sym_with, + [102804] = 41, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -617074,71 +611329,76 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4100), 1, + ACTIONS(4092), 1, anon_sym_DOT, - ACTIONS(4102), 1, + ACTIONS(4094), 1, anon_sym_DASH_GT, - ACTIONS(5264), 1, + ACTIONS(5227), 1, anon_sym_LPAREN, - ACTIONS(5304), 1, - anon_sym_BANG, - ACTIONS(5573), 1, + ACTIONS(5236), 1, anon_sym_LBRACK, - ACTIONS(6343), 1, + ACTIONS(5238), 1, + anon_sym_BANG, + ACTIONS(5711), 1, + anon_sym_in, + ACTIONS(6017), 1, anon_sym_switch, - ACTIONS(6357), 1, + ACTIONS(6027), 1, + anon_sym_as, + ACTIONS(6031), 1, anon_sym_with, - ACTIONS(7019), 1, + ACTIONS(7373), 1, + anon_sym_QMARK, + ACTIONS(7379), 1, anon_sym_SLASH, - ACTIONS(7021), 1, + ACTIONS(7381), 1, anon_sym_CARET, - ACTIONS(7025), 1, + ACTIONS(7383), 1, + anon_sym_PIPE, + ACTIONS(7385), 1, anon_sym_AMP, - ACTIONS(7029), 1, + ACTIONS(7389), 1, anon_sym_GT_GT, - ACTIONS(7035), 1, + ACTIONS(7395), 1, anon_sym_DOT_DOT, - ACTIONS(7037), 1, - anon_sym_as, - ACTIONS(7039), 1, + ACTIONS(7397), 1, + anon_sym_AMP_AMP, + ACTIONS(7399), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7401), 1, + anon_sym_QMARK_QMARK, + ACTIONS(7403), 1, anon_sym_is, - STATE(2485), 1, + STATE(2605), 1, sym_bracketed_argument_list, - STATE(3487), 1, + STATE(3348), 1, sym_argument_list, - ACTIONS(5306), 2, + ACTIONS(5240), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5664), 2, - anon_sym_QMARK, - anon_sym_PIPE, - ACTIONS(7013), 2, + ACTIONS(7371), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7015), 2, + ACTIONS(7375), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7017), 2, + ACTIONS(7377), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7027), 2, + ACTIONS(7387), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7031), 2, + ACTIONS(7391), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7033), 2, + ACTIONS(7393), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5660), 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(4835), 9, + ACTIONS(5709), 3, + anon_sym_and, + anon_sym_or, + anon_sym_into, + STATE(4773), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -617148,7 +611408,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [108797] = 34, + [102945] = 29, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -617169,69 +611429,50 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4100), 1, + ACTIONS(4092), 1, anon_sym_DOT, - ACTIONS(4102), 1, + ACTIONS(4094), 1, anon_sym_DASH_GT, - ACTIONS(5264), 1, + ACTIONS(5227), 1, anon_sym_LPAREN, - ACTIONS(5304), 1, - anon_sym_BANG, - ACTIONS(5573), 1, + ACTIONS(5236), 1, anon_sym_LBRACK, - ACTIONS(6343), 1, + ACTIONS(5238), 1, + anon_sym_BANG, + ACTIONS(6017), 1, anon_sym_switch, - ACTIONS(6357), 1, + ACTIONS(6031), 1, anon_sym_with, - ACTIONS(7019), 1, + ACTIONS(7379), 1, anon_sym_SLASH, - ACTIONS(7029), 1, + ACTIONS(7389), 1, anon_sym_GT_GT, - ACTIONS(7035), 1, + ACTIONS(7395), 1, anon_sym_DOT_DOT, - ACTIONS(7037), 1, - anon_sym_as, - ACTIONS(7039), 1, - anon_sym_is, - STATE(2485), 1, + STATE(2605), 1, sym_bracketed_argument_list, - STATE(3487), 1, + STATE(3348), 1, sym_argument_list, - ACTIONS(5306), 2, + ACTIONS(5240), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7013), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(7015), 2, + ACTIONS(7375), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7017), 2, + ACTIONS(7377), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7027), 2, + ACTIONS(7387), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7031), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(7033), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(5664), 3, + ACTIONS(5739), 6, + anon_sym_LT, + anon_sym_GT, + anon_sym_in, anon_sym_QMARK, anon_sym_PIPE, anon_sym_AMP, - ACTIONS(5660), 8, - 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, - STATE(4836), 9, + STATE(4774), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -617241,7 +611482,21 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [108924] = 27, + ACTIONS(5737), 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_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, + anon_sym_into, + anon_sym_as, + anon_sym_is, + [103062] = 26, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -617262,45 +611517,45 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4100), 1, + ACTIONS(4092), 1, anon_sym_DOT, - ACTIONS(4102), 1, + ACTIONS(4094), 1, anon_sym_DASH_GT, - ACTIONS(5264), 1, + ACTIONS(5227), 1, anon_sym_LPAREN, - ACTIONS(5304), 1, - anon_sym_BANG, - ACTIONS(5573), 1, + ACTIONS(5236), 1, anon_sym_LBRACK, - ACTIONS(6343), 1, + ACTIONS(5238), 1, + anon_sym_BANG, + ACTIONS(6017), 1, anon_sym_switch, - ACTIONS(6357), 1, + ACTIONS(6031), 1, anon_sym_with, - ACTIONS(7019), 1, + ACTIONS(7379), 1, anon_sym_SLASH, - ACTIONS(7035), 1, + ACTIONS(7395), 1, anon_sym_DOT_DOT, - STATE(2485), 1, + STATE(2605), 1, sym_bracketed_argument_list, - STATE(3487), 1, + STATE(3348), 1, sym_argument_list, - ACTIONS(5306), 2, + ACTIONS(5240), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7015), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(7017), 2, + ACTIONS(7377), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(5664), 6, + ACTIONS(5739), 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, anon_sym_GT_GT, - STATE(4837), 9, + STATE(4775), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -617310,11 +611565,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5660), 16, - anon_sym_COLON, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_RBRACE, + ACTIONS(5737), 15, anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT_GT, @@ -617322,12 +611573,15 @@ 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_as, anon_sym_is, - [109037] = 33, + [103173] = 24, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -617348,57 +611602,30 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4100), 1, + ACTIONS(4092), 1, anon_sym_DOT, - ACTIONS(4102), 1, + ACTIONS(4094), 1, anon_sym_DASH_GT, - ACTIONS(5264), 1, + ACTIONS(5227), 1, anon_sym_LPAREN, - ACTIONS(5304), 1, - anon_sym_BANG, - ACTIONS(5573), 1, + ACTIONS(5236), 1, anon_sym_LBRACK, - ACTIONS(6343), 1, + ACTIONS(5238), 1, + anon_sym_BANG, + ACTIONS(6017), 1, anon_sym_switch, - ACTIONS(6357), 1, + ACTIONS(6031), 1, anon_sym_with, - ACTIONS(7019), 1, - anon_sym_SLASH, - ACTIONS(7029), 1, - anon_sym_GT_GT, - ACTIONS(7035), 1, + ACTIONS(7395), 1, anon_sym_DOT_DOT, - ACTIONS(7037), 1, - anon_sym_as, - ACTIONS(7039), 1, - anon_sym_is, - STATE(2485), 1, + STATE(2605), 1, sym_bracketed_argument_list, - STATE(3487), 1, + STATE(3348), 1, sym_argument_list, - ACTIONS(5306), 2, + ACTIONS(5240), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7013), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(7015), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(7017), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(7027), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - ACTIONS(7033), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(5664), 3, - anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_AMP, - STATE(4838), 9, + STATE(4776), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -617408,18 +611635,36 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5660), 10, - anon_sym_COLON, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_RBRACE, + ACTIONS(5739), 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(5737), 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, - [109162] = 41, + anon_sym_into, + anon_sym_as, + anon_sym_is, + [103280] = 35, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -617440,76 +611685,70 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4075), 1, + ACTIONS(4092), 1, anon_sym_DOT, - ACTIONS(4077), 1, + ACTIONS(4094), 1, anon_sym_DASH_GT, - ACTIONS(5247), 1, + ACTIONS(5227), 1, anon_sym_LPAREN, - ACTIONS(5283), 1, + ACTIONS(5236), 1, anon_sym_LBRACK, - ACTIONS(5285), 1, + ACTIONS(5238), 1, anon_sym_BANG, - ACTIONS(5751), 1, - anon_sym_in, - ACTIONS(6147), 1, + ACTIONS(6017), 1, anon_sym_switch, - ACTIONS(6157), 1, + ACTIONS(6027), 1, anon_sym_as, - ACTIONS(6161), 1, + ACTIONS(6031), 1, anon_sym_with, - ACTIONS(7397), 1, - anon_sym_QMARK, - ACTIONS(7403), 1, + ACTIONS(7379), 1, anon_sym_SLASH, - ACTIONS(7405), 1, - anon_sym_CARET, - ACTIONS(7407), 1, - anon_sym_PIPE, - ACTIONS(7409), 1, + ACTIONS(7385), 1, anon_sym_AMP, - ACTIONS(7413), 1, + ACTIONS(7389), 1, anon_sym_GT_GT, - ACTIONS(7419), 1, + ACTIONS(7395), 1, anon_sym_DOT_DOT, - ACTIONS(7421), 1, - anon_sym_AMP_AMP, - ACTIONS(7423), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7425), 1, - anon_sym_QMARK_QMARK, - ACTIONS(7427), 1, + ACTIONS(7403), 1, anon_sym_is, - STATE(2613), 1, + STATE(2605), 1, sym_bracketed_argument_list, - STATE(3259), 1, + STATE(3348), 1, sym_argument_list, - ACTIONS(5287), 2, + ACTIONS(5240), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7395), 2, + ACTIONS(7371), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7399), 2, + ACTIONS(7375), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7401), 2, + ACTIONS(7377), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7411), 2, + ACTIONS(7387), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7415), 2, + ACTIONS(7391), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7417), 2, + ACTIONS(7393), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5745), 3, + ACTIONS(5739), 3, + anon_sym_in, + anon_sym_QMARK, + anon_sym_PIPE, + ACTIONS(5737), 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(4839), 9, + STATE(4777), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -617519,7 +611758,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [109303] = 41, + [103409] = 36, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -617540,76 +611779,71 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4075), 1, + ACTIONS(4092), 1, anon_sym_DOT, - ACTIONS(4077), 1, + ACTIONS(4094), 1, anon_sym_DASH_GT, - ACTIONS(5247), 1, + ACTIONS(5227), 1, anon_sym_LPAREN, - ACTIONS(5283), 1, + ACTIONS(5236), 1, anon_sym_LBRACK, - ACTIONS(5285), 1, + ACTIONS(5238), 1, anon_sym_BANG, - ACTIONS(5779), 1, - anon_sym_in, - ACTIONS(6147), 1, + ACTIONS(6017), 1, anon_sym_switch, - ACTIONS(6157), 1, + ACTIONS(6027), 1, anon_sym_as, - ACTIONS(6161), 1, + ACTIONS(6031), 1, anon_sym_with, - ACTIONS(7397), 1, - anon_sym_QMARK, - ACTIONS(7403), 1, + ACTIONS(7379), 1, anon_sym_SLASH, - ACTIONS(7405), 1, + ACTIONS(7381), 1, anon_sym_CARET, - ACTIONS(7407), 1, - anon_sym_PIPE, - ACTIONS(7409), 1, + ACTIONS(7385), 1, anon_sym_AMP, - ACTIONS(7413), 1, + ACTIONS(7389), 1, anon_sym_GT_GT, - ACTIONS(7419), 1, + ACTIONS(7395), 1, anon_sym_DOT_DOT, - ACTIONS(7421), 1, - anon_sym_AMP_AMP, - ACTIONS(7423), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7425), 1, - anon_sym_QMARK_QMARK, - ACTIONS(7427), 1, + ACTIONS(7403), 1, anon_sym_is, - STATE(2613), 1, + STATE(2605), 1, sym_bracketed_argument_list, - STATE(3259), 1, + STATE(3348), 1, sym_argument_list, - ACTIONS(5287), 2, + ACTIONS(5240), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7395), 2, + ACTIONS(7371), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7399), 2, + ACTIONS(7375), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7401), 2, + ACTIONS(7377), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7411), 2, + ACTIONS(7387), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7415), 2, + ACTIONS(7391), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7417), 2, + ACTIONS(7393), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5777), 3, + ACTIONS(5739), 3, + anon_sym_in, + anon_sym_QMARK, + anon_sym_PIPE, + ACTIONS(5737), 6, 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(4778), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -617619,7 +611853,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [109444] = 41, + [103540] = 34, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -617640,76 +611874,69 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4075), 1, + ACTIONS(4092), 1, anon_sym_DOT, - ACTIONS(4077), 1, + ACTIONS(4094), 1, anon_sym_DASH_GT, - ACTIONS(5247), 1, + ACTIONS(5227), 1, anon_sym_LPAREN, - ACTIONS(5283), 1, + ACTIONS(5236), 1, anon_sym_LBRACK, - ACTIONS(5285), 1, + ACTIONS(5238), 1, anon_sym_BANG, - ACTIONS(5769), 1, - anon_sym_in, - ACTIONS(6147), 1, + ACTIONS(6017), 1, anon_sym_switch, - ACTIONS(6157), 1, + ACTIONS(6027), 1, anon_sym_as, - ACTIONS(6161), 1, + ACTIONS(6031), 1, anon_sym_with, - ACTIONS(7397), 1, - anon_sym_QMARK, - ACTIONS(7403), 1, + ACTIONS(7379), 1, anon_sym_SLASH, - ACTIONS(7405), 1, - anon_sym_CARET, - ACTIONS(7407), 1, - anon_sym_PIPE, - ACTIONS(7409), 1, - anon_sym_AMP, - ACTIONS(7413), 1, + ACTIONS(7389), 1, anon_sym_GT_GT, - ACTIONS(7419), 1, + ACTIONS(7395), 1, anon_sym_DOT_DOT, - ACTIONS(7421), 1, - anon_sym_AMP_AMP, - ACTIONS(7423), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7425), 1, - anon_sym_QMARK_QMARK, - ACTIONS(7427), 1, + ACTIONS(7403), 1, anon_sym_is, - STATE(2613), 1, + STATE(2605), 1, sym_bracketed_argument_list, - STATE(3259), 1, + STATE(3348), 1, sym_argument_list, - ACTIONS(5287), 2, + ACTIONS(5240), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7395), 2, + ACTIONS(7371), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7399), 2, + ACTIONS(7375), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7401), 2, + ACTIONS(7377), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7411), 2, + ACTIONS(7387), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7415), 2, + ACTIONS(7391), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7417), 2, + ACTIONS(7393), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5767), 3, + ACTIONS(5739), 4, + anon_sym_in, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_AMP, + ACTIONS(5737), 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(4841), 9, + STATE(4779), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -617719,7 +611946,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [109585] = 22, + [103667] = 27, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -617740,26 +611967,46 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4075), 1, + ACTIONS(4092), 1, anon_sym_DOT, - ACTIONS(4077), 1, + ACTIONS(4094), 1, anon_sym_DASH_GT, - ACTIONS(5247), 1, + ACTIONS(5227), 1, anon_sym_LPAREN, - ACTIONS(5283), 1, + ACTIONS(5236), 1, anon_sym_LBRACK, - ACTIONS(5285), 1, + ACTIONS(5238), 1, anon_sym_BANG, - ACTIONS(7419), 1, + ACTIONS(6017), 1, + anon_sym_switch, + ACTIONS(6031), 1, + anon_sym_with, + ACTIONS(7379), 1, + anon_sym_SLASH, + ACTIONS(7395), 1, anon_sym_DOT_DOT, - STATE(2613), 1, + STATE(2605), 1, sym_bracketed_argument_list, - STATE(3259), 1, + STATE(3348), 1, sym_argument_list, - ACTIONS(5287), 2, + ACTIONS(5240), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(4842), 9, + ACTIONS(7375), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(7377), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(5739), 7, + anon_sym_LT, + anon_sym_GT, + anon_sym_in, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT_GT, + STATE(4780), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -617769,20 +612016,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(1223), 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(1221), 19, - anon_sym_STAR, - anon_sym_PERCENT, + ACTIONS(5737), 15, anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT_GT, @@ -617790,7 +612024,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, @@ -617799,8 +612032,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_into, anon_sym_as, anon_sym_is, - anon_sym_with, - [109688] = 40, + [103780] = 33, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -617821,75 +612053,68 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4075), 1, + ACTIONS(4092), 1, anon_sym_DOT, - ACTIONS(4077), 1, + ACTIONS(4094), 1, anon_sym_DASH_GT, - ACTIONS(5247), 1, + ACTIONS(5227), 1, anon_sym_LPAREN, - ACTIONS(5283), 1, + ACTIONS(5236), 1, anon_sym_LBRACK, - ACTIONS(5285), 1, + ACTIONS(5238), 1, anon_sym_BANG, - ACTIONS(6147), 1, + ACTIONS(6017), 1, anon_sym_switch, - ACTIONS(6161), 1, + ACTIONS(6027), 1, + anon_sym_as, + ACTIONS(6031), 1, anon_sym_with, - ACTIONS(7177), 1, - anon_sym_DOT_DOT, - ACTIONS(7286), 1, + ACTIONS(7379), 1, anon_sym_SLASH, - ACTIONS(7290), 1, + ACTIONS(7389), 1, anon_sym_GT_GT, - ACTIONS(7298), 1, - anon_sym_QMARK, - ACTIONS(7300), 1, - anon_sym_CARET, - ACTIONS(7302), 1, - anon_sym_PIPE, - ACTIONS(7304), 1, - anon_sym_AMP, - ACTIONS(7310), 1, - anon_sym_AMP_AMP, - ACTIONS(7312), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7314), 1, - anon_sym_QMARK_QMARK, - ACTIONS(7316), 1, - anon_sym_as, - ACTIONS(7318), 1, + ACTIONS(7395), 1, + anon_sym_DOT_DOT, + ACTIONS(7403), 1, anon_sym_is, - STATE(2613), 1, + STATE(2605), 1, sym_bracketed_argument_list, - STATE(3259), 1, + STATE(3348), 1, sym_argument_list, - ACTIONS(5287), 2, + ACTIONS(5240), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7282), 2, + ACTIONS(7371), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(7375), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7284), 2, + ACTIONS(7377), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7288), 2, + ACTIONS(7387), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7296), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(7306), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(7308), 2, + ACTIONS(7393), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5777), 4, + ACTIONS(5739), 4, + anon_sym_in, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_AMP, + ACTIONS(5737), 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, - anon_sym_by, - STATE(4843), 9, + STATE(4781), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -617899,7 +612124,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [109827] = 15, + [103905] = 22, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -617920,11 +612145,26 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(7434), 1, - anon_sym_into, - STATE(5112), 1, - aux_sym__query_body_repeat2, - STATE(4844), 9, + ACTIONS(4092), 1, + anon_sym_DOT, + ACTIONS(4094), 1, + anon_sym_DASH_GT, + ACTIONS(5227), 1, + anon_sym_LPAREN, + ACTIONS(5236), 1, + anon_sym_LBRACK, + ACTIONS(5238), 1, + anon_sym_BANG, + ACTIONS(7395), 1, + anon_sym_DOT_DOT, + STATE(2605), 1, + sym_bracketed_argument_list, + STATE(3348), 1, + sym_argument_list, + ACTIONS(5240), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(4782), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -617934,24 +612174,18 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(6005), 12, + ACTIONS(5743), 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(6003), 24, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, + ACTIONS(5741), 19, anon_sym_STAR, anon_sym_PERCENT, anon_sym_CARET, @@ -617962,17 +612196,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, - [109915] = 37, + [104008] = 37, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -617993,71 +612226,72 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4100), 1, + ACTIONS(4092), 1, anon_sym_DOT, - ACTIONS(4102), 1, + ACTIONS(4094), 1, anon_sym_DASH_GT, - ACTIONS(5264), 1, + ACTIONS(5227), 1, anon_sym_LPAREN, - ACTIONS(5304), 1, - anon_sym_BANG, - ACTIONS(5573), 1, + ACTIONS(5236), 1, anon_sym_LBRACK, - ACTIONS(5664), 1, - anon_sym_QMARK, - ACTIONS(6343), 1, + ACTIONS(5238), 1, + anon_sym_BANG, + ACTIONS(6017), 1, anon_sym_switch, - ACTIONS(6357), 1, - anon_sym_with, - ACTIONS(6813), 1, + ACTIONS(6027), 1, anon_sym_as, - ACTIONS(7169), 1, - anon_sym_is, - ACTIONS(7442), 1, + ACTIONS(6031), 1, + anon_sym_with, + ACTIONS(7379), 1, anon_sym_SLASH, - ACTIONS(7444), 1, + ACTIONS(7381), 1, anon_sym_CARET, - ACTIONS(7446), 1, + ACTIONS(7383), 1, anon_sym_PIPE, - ACTIONS(7448), 1, + ACTIONS(7385), 1, anon_sym_AMP, - ACTIONS(7452), 1, + ACTIONS(7389), 1, anon_sym_GT_GT, - ACTIONS(7458), 1, + ACTIONS(7395), 1, anon_sym_DOT_DOT, - STATE(2485), 1, + ACTIONS(7403), 1, + anon_sym_is, + STATE(2605), 1, sym_bracketed_argument_list, - STATE(3487), 1, + STATE(3348), 1, sym_argument_list, - ACTIONS(5306), 2, + ACTIONS(5240), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7436), 2, + ACTIONS(5739), 2, + anon_sym_in, + anon_sym_QMARK, + ACTIONS(7371), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7438), 2, + ACTIONS(7375), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7440), 2, + ACTIONS(7377), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7450), 2, + ACTIONS(7387), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7454), 2, + ACTIONS(7391), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7456), 2, + ACTIONS(7393), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5660), 6, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RBRACE, + ACTIONS(5737), 6, + anon_sym_and, + anon_sym_or, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_QMARK_QMARK, - STATE(4845), 9, + anon_sym_into, + STATE(4783), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -618067,7 +612301,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [110047] = 40, + [104141] = 38, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -618088,74 +612322,73 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4100), 1, + ACTIONS(4092), 1, anon_sym_DOT, - ACTIONS(4102), 1, + ACTIONS(4094), 1, anon_sym_DASH_GT, - ACTIONS(5264), 1, + ACTIONS(5227), 1, anon_sym_LPAREN, - ACTIONS(5302), 1, + ACTIONS(5236), 1, anon_sym_LBRACK, - ACTIONS(5304), 1, + ACTIONS(5238), 1, anon_sym_BANG, - ACTIONS(6475), 1, + ACTIONS(6017), 1, anon_sym_switch, - ACTIONS(6489), 1, + ACTIONS(6027), 1, + anon_sym_as, + ACTIONS(6031), 1, anon_sym_with, - ACTIONS(7462), 1, - anon_sym_QMARK, - ACTIONS(7468), 1, + ACTIONS(7379), 1, anon_sym_SLASH, - ACTIONS(7470), 1, + ACTIONS(7381), 1, anon_sym_CARET, - ACTIONS(7472), 1, + ACTIONS(7383), 1, anon_sym_PIPE, - ACTIONS(7474), 1, + ACTIONS(7385), 1, anon_sym_AMP, - ACTIONS(7478), 1, + ACTIONS(7389), 1, anon_sym_GT_GT, - ACTIONS(7484), 1, + ACTIONS(7395), 1, anon_sym_DOT_DOT, - ACTIONS(7486), 1, + ACTIONS(7397), 1, anon_sym_AMP_AMP, - ACTIONS(7488), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7490), 1, - anon_sym_QMARK_QMARK, - ACTIONS(7492), 1, - anon_sym_as, - ACTIONS(7494), 1, + ACTIONS(7403), 1, anon_sym_is, - STATE(2808), 1, + STATE(2605), 1, sym_bracketed_argument_list, - STATE(3487), 1, + STATE(3348), 1, sym_argument_list, - ACTIONS(5306), 2, + ACTIONS(5240), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7460), 2, + ACTIONS(5739), 2, + anon_sym_in, + anon_sym_QMARK, + ACTIONS(7371), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7464), 2, + ACTIONS(7375), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7466), 2, + ACTIONS(7377), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7476), 2, + ACTIONS(7387), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7480), 2, + ACTIONS(7391), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7482), 2, + ACTIONS(7393), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5882), 3, + ACTIONS(5737), 5, anon_sym_and, anon_sym_or, - anon_sym_on, - STATE(4846), 9, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, + anon_sym_into, + STATE(4784), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -618165,7 +612398,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [110185] = 22, + [104276] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -618186,154 +612419,75 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4100), 1, + ACTIONS(4092), 1, anon_sym_DOT, - ACTIONS(4102), 1, + ACTIONS(4094), 1, anon_sym_DASH_GT, - ACTIONS(5264), 1, + ACTIONS(5227), 1, anon_sym_LPAREN, - ACTIONS(5302), 1, + ACTIONS(5236), 1, anon_sym_LBRACK, - ACTIONS(5304), 1, + ACTIONS(5238), 1, anon_sym_BANG, - ACTIONS(7496), 1, - anon_sym_DOT_DOT, - STATE(2808), 1, - sym_bracketed_argument_list, - STATE(3487), 1, - sym_argument_list, - ACTIONS(5306), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5733), 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(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(5731), 19, - 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, + ACTIONS(6017), 1, anon_sym_switch, - anon_sym_and, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_QMARK_QMARK, + ACTIONS(6027), 1, anon_sym_as, - anon_sym_is, - anon_sym_with, - [110287] = 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(4100), 1, - anon_sym_DOT, - ACTIONS(4102), 1, - anon_sym_DASH_GT, - ACTIONS(5264), 1, - anon_sym_LPAREN, - ACTIONS(5302), 1, - anon_sym_LBRACK, - ACTIONS(5304), 1, - anon_sym_BANG, - ACTIONS(6475), 1, - anon_sym_switch, - ACTIONS(6489), 1, + ACTIONS(6031), 1, anon_sym_with, - ACTIONS(7496), 1, - anon_sym_DOT_DOT, - ACTIONS(7500), 1, - anon_sym_QMARK, - ACTIONS(7506), 1, + ACTIONS(7379), 1, anon_sym_SLASH, - ACTIONS(7508), 1, + ACTIONS(7381), 1, anon_sym_CARET, - ACTIONS(7510), 1, + ACTIONS(7383), 1, anon_sym_PIPE, - ACTIONS(7512), 1, + ACTIONS(7385), 1, anon_sym_AMP, - ACTIONS(7516), 1, + ACTIONS(7389), 1, anon_sym_GT_GT, - ACTIONS(7522), 1, + ACTIONS(7395), 1, + anon_sym_DOT_DOT, + ACTIONS(7397), 1, anon_sym_AMP_AMP, - ACTIONS(7524), 1, + ACTIONS(7399), 1, anon_sym_PIPE_PIPE, - ACTIONS(7526), 1, + ACTIONS(7401), 1, anon_sym_QMARK_QMARK, - ACTIONS(7528), 1, - anon_sym_as, - ACTIONS(7530), 1, + ACTIONS(7403), 1, anon_sym_is, - STATE(2808), 1, + STATE(2605), 1, sym_bracketed_argument_list, - STATE(3487), 1, + STATE(3348), 1, sym_argument_list, - ACTIONS(5306), 2, + ACTIONS(5240), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7498), 2, + ACTIONS(5739), 2, + anon_sym_in, + anon_sym_QMARK, + ACTIONS(7371), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7502), 2, + ACTIONS(7375), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7504), 2, + ACTIONS(7377), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7514), 2, + ACTIONS(7387), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7518), 2, + ACTIONS(7391), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7520), 2, + ACTIONS(7393), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5864), 3, - anon_sym_in, + ACTIONS(5737), 3, anon_sym_and, anon_sym_or, - STATE(4848), 9, + anon_sym_into, + STATE(4785), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -618343,7 +612497,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [110425] = 40, + [104415] = 41, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -618364,74 +612518,76 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4100), 1, + ACTIONS(4092), 1, anon_sym_DOT, - ACTIONS(4102), 1, + ACTIONS(4094), 1, anon_sym_DASH_GT, - ACTIONS(5264), 1, + ACTIONS(5227), 1, anon_sym_LPAREN, - ACTIONS(5302), 1, + ACTIONS(5236), 1, anon_sym_LBRACK, - ACTIONS(5304), 1, + ACTIONS(5238), 1, anon_sym_BANG, - ACTIONS(6475), 1, + ACTIONS(5851), 1, + anon_sym_in, + ACTIONS(6017), 1, anon_sym_switch, - ACTIONS(6489), 1, + ACTIONS(6027), 1, + anon_sym_as, + ACTIONS(6031), 1, anon_sym_with, - ACTIONS(7496), 1, - anon_sym_DOT_DOT, - ACTIONS(7500), 1, + ACTIONS(7373), 1, anon_sym_QMARK, - ACTIONS(7506), 1, + ACTIONS(7379), 1, anon_sym_SLASH, - ACTIONS(7508), 1, + ACTIONS(7381), 1, anon_sym_CARET, - ACTIONS(7510), 1, + ACTIONS(7383), 1, anon_sym_PIPE, - ACTIONS(7512), 1, + ACTIONS(7385), 1, anon_sym_AMP, - ACTIONS(7516), 1, + ACTIONS(7389), 1, anon_sym_GT_GT, - ACTIONS(7522), 1, + ACTIONS(7395), 1, + anon_sym_DOT_DOT, + ACTIONS(7397), 1, anon_sym_AMP_AMP, - ACTIONS(7524), 1, + ACTIONS(7399), 1, anon_sym_PIPE_PIPE, - ACTIONS(7526), 1, + ACTIONS(7401), 1, anon_sym_QMARK_QMARK, - ACTIONS(7528), 1, - anon_sym_as, - ACTIONS(7530), 1, + ACTIONS(7403), 1, anon_sym_is, - STATE(2808), 1, + STATE(2605), 1, sym_bracketed_argument_list, - STATE(3487), 1, + STATE(3348), 1, sym_argument_list, - ACTIONS(5306), 2, + ACTIONS(5240), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7498), 2, + ACTIONS(7371), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7502), 2, + ACTIONS(7375), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7504), 2, + ACTIONS(7377), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7514), 2, + ACTIONS(7387), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7518), 2, + ACTIONS(7391), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7520), 2, + ACTIONS(7393), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5072), 3, - anon_sym_in, + ACTIONS(5849), 3, anon_sym_and, anon_sym_or, - STATE(4849), 9, + anon_sym_into, + STATE(4786), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -618441,7 +612597,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [110563] = 29, + [104556] = 41, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -618462,161 +612618,76 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4100), 1, + ACTIONS(4092), 1, anon_sym_DOT, - ACTIONS(4102), 1, + ACTIONS(4094), 1, anon_sym_DASH_GT, - ACTIONS(5264), 1, + ACTIONS(4998), 1, + anon_sym_in, + ACTIONS(5227), 1, anon_sym_LPAREN, - ACTIONS(5302), 1, + ACTIONS(5236), 1, anon_sym_LBRACK, - ACTIONS(5304), 1, + ACTIONS(5238), 1, anon_sym_BANG, - ACTIONS(6475), 1, + ACTIONS(6017), 1, anon_sym_switch, - ACTIONS(6489), 1, - anon_sym_with, - ACTIONS(7536), 1, - anon_sym_SLASH, - ACTIONS(7540), 1, - anon_sym_GT_GT, - ACTIONS(7542), 1, - anon_sym_DOT_DOT, - STATE(2808), 1, - sym_bracketed_argument_list, - STATE(3487), 1, - sym_argument_list, - ACTIONS(5306), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(7532), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(7534), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(7538), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - ACTIONS(5664), 5, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_AMP, - STATE(4850), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - ACTIONS(5660), 13, - anon_sym_COLON, - 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, + ACTIONS(6027), 1, anon_sym_as, - anon_sym_is, - [110679] = 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(4100), 1, - anon_sym_DOT, - ACTIONS(4102), 1, - anon_sym_DASH_GT, - ACTIONS(5264), 1, - anon_sym_LPAREN, - ACTIONS(5302), 1, - anon_sym_LBRACK, - ACTIONS(5304), 1, - anon_sym_BANG, - ACTIONS(6475), 1, - anon_sym_switch, - ACTIONS(6489), 1, + ACTIONS(6031), 1, anon_sym_with, - ACTIONS(7496), 1, - anon_sym_DOT_DOT, - ACTIONS(7500), 1, + ACTIONS(7373), 1, anon_sym_QMARK, - ACTIONS(7506), 1, + ACTIONS(7379), 1, anon_sym_SLASH, - ACTIONS(7508), 1, + ACTIONS(7381), 1, anon_sym_CARET, - ACTIONS(7510), 1, + ACTIONS(7383), 1, anon_sym_PIPE, - ACTIONS(7512), 1, + ACTIONS(7385), 1, anon_sym_AMP, - ACTIONS(7516), 1, + ACTIONS(7389), 1, anon_sym_GT_GT, - ACTIONS(7522), 1, + ACTIONS(7395), 1, + anon_sym_DOT_DOT, + ACTIONS(7397), 1, anon_sym_AMP_AMP, - ACTIONS(7524), 1, + ACTIONS(7399), 1, anon_sym_PIPE_PIPE, - ACTIONS(7526), 1, + ACTIONS(7401), 1, anon_sym_QMARK_QMARK, - ACTIONS(7528), 1, - anon_sym_as, - ACTIONS(7530), 1, + ACTIONS(7403), 1, anon_sym_is, - STATE(2808), 1, + STATE(2605), 1, sym_bracketed_argument_list, - STATE(3487), 1, + STATE(3348), 1, sym_argument_list, - ACTIONS(5306), 2, + ACTIONS(5240), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7498), 2, + ACTIONS(7371), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7502), 2, + ACTIONS(7375), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7504), 2, + ACTIONS(7377), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7514), 2, + ACTIONS(7387), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7518), 2, + ACTIONS(7391), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7520), 2, + ACTIONS(7393), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5882), 3, - anon_sym_in, + ACTIONS(4996), 3, anon_sym_and, anon_sym_or, - STATE(4851), 9, + anon_sym_into, + STATE(4787), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -618626,7 +612697,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [110817] = 26, + [104697] = 26, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -618647,35 +612718,35 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4100), 1, + ACTIONS(4042), 1, anon_sym_DOT, - ACTIONS(4102), 1, + ACTIONS(4044), 1, anon_sym_DASH_GT, - ACTIONS(5264), 1, + ACTIONS(5257), 1, anon_sym_LPAREN, ACTIONS(5302), 1, - anon_sym_LBRACK, - ACTIONS(5304), 1, anon_sym_BANG, - ACTIONS(6475), 1, + ACTIONS(5549), 1, + anon_sym_LBRACK, + ACTIONS(6355), 1, anon_sym_switch, - ACTIONS(6489), 1, + ACTIONS(6369), 1, anon_sym_with, - ACTIONS(7536), 1, + ACTIONS(6985), 1, anon_sym_SLASH, - ACTIONS(7542), 1, + ACTIONS(6991), 1, anon_sym_DOT_DOT, - STATE(2808), 1, + STATE(2467), 1, sym_bracketed_argument_list, - STATE(3487), 1, + STATE(3381), 1, sym_argument_list, - ACTIONS(5306), 2, + ACTIONS(5304), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7534), 2, + ACTIONS(6983), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(5664), 8, + ACTIONS(5739), 8, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, @@ -618684,7 +612755,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_AMP, anon_sym_GT_GT, - STATE(4852), 9, + STATE(4788), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -618694,8 +612765,8 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5660), 15, - anon_sym_COLON, + ACTIONS(5737), 16, + anon_sym_SEMI, anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT_GT, @@ -618703,14 +612774,15 @@ 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_as, anon_sym_is, - [110927] = 40, + aux_sym_preproc_if_token3, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + [104808] = 24, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -618731,74 +612803,40 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4100), 1, + ACTIONS(4042), 1, anon_sym_DOT, - ACTIONS(4102), 1, + ACTIONS(4044), 1, anon_sym_DASH_GT, - ACTIONS(5264), 1, + ACTIONS(5257), 1, anon_sym_LPAREN, ACTIONS(5302), 1, - anon_sym_LBRACK, - ACTIONS(5304), 1, anon_sym_BANG, - ACTIONS(6475), 1, + ACTIONS(5549), 1, + anon_sym_LBRACK, + ACTIONS(6355), 1, anon_sym_switch, - ACTIONS(6489), 1, + ACTIONS(6369), 1, anon_sym_with, - ACTIONS(7496), 1, + ACTIONS(6991), 1, anon_sym_DOT_DOT, - ACTIONS(7500), 1, - anon_sym_QMARK, - ACTIONS(7506), 1, - anon_sym_SLASH, - ACTIONS(7508), 1, - anon_sym_CARET, - ACTIONS(7510), 1, - anon_sym_PIPE, - ACTIONS(7512), 1, - anon_sym_AMP, - ACTIONS(7516), 1, - anon_sym_GT_GT, - ACTIONS(7522), 1, - anon_sym_AMP_AMP, - ACTIONS(7524), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7526), 1, - anon_sym_QMARK_QMARK, - ACTIONS(7528), 1, - anon_sym_as, - ACTIONS(7530), 1, - anon_sym_is, - STATE(2808), 1, + STATE(2467), 1, sym_bracketed_argument_list, - STATE(3487), 1, + STATE(3381), 1, sym_argument_list, - ACTIONS(5306), 2, + ACTIONS(5304), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7498), 2, + ACTIONS(5739), 9, anon_sym_LT, anon_sym_GT, - ACTIONS(7502), 2, + anon_sym_QMARK, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7504), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(7514), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - ACTIONS(7518), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(7520), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(5899), 3, - anon_sym_in, - anon_sym_and, - anon_sym_or, - STATE(4853), 9, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT_GT, + STATE(4789), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -618808,105 +612846,26 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [111065] = 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(4100), 1, - anon_sym_DOT, - ACTIONS(4102), 1, - anon_sym_DASH_GT, - ACTIONS(5264), 1, - anon_sym_LPAREN, - ACTIONS(5304), 1, - anon_sym_BANG, - ACTIONS(5573), 1, - anon_sym_LBRACK, - ACTIONS(6343), 1, - anon_sym_switch, - ACTIONS(6357), 1, - anon_sym_with, - ACTIONS(6783), 1, - anon_sym_QMARK, - ACTIONS(6789), 1, - anon_sym_SLASH, - ACTIONS(6791), 1, - anon_sym_CARET, - ACTIONS(6793), 1, - anon_sym_PIPE, - ACTIONS(6795), 1, - anon_sym_AMP, - ACTIONS(6799), 1, - anon_sym_GT_GT, - ACTIONS(6805), 1, - anon_sym_DOT_DOT, - ACTIONS(6807), 1, - anon_sym_AMP_AMP, - ACTIONS(6809), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6811), 1, - anon_sym_QMARK_QMARK, - ACTIONS(6813), 1, - anon_sym_as, - ACTIONS(6815), 1, - anon_sym_is, - STATE(2485), 1, - sym_bracketed_argument_list, - STATE(3487), 1, - sym_argument_list, - ACTIONS(5306), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6781), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(6785), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(6787), 2, + ACTIONS(5737), 18, + anon_sym_SEMI, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(6797), 2, + anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(6801), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6803), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(7544), 3, + 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(4854), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - [111203] = 41, + [104915] = 35, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -618927,75 +612886,70 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4100), 1, + ACTIONS(4042), 1, anon_sym_DOT, - ACTIONS(4102), 1, + ACTIONS(4044), 1, anon_sym_DASH_GT, - ACTIONS(5264), 1, + ACTIONS(5257), 1, anon_sym_LPAREN, - ACTIONS(5304), 1, + ACTIONS(5302), 1, anon_sym_BANG, - ACTIONS(5573), 1, + ACTIONS(5549), 1, anon_sym_LBRACK, - ACTIONS(6343), 1, + ACTIONS(6355), 1, anon_sym_switch, - ACTIONS(6357), 1, + ACTIONS(6369), 1, anon_sym_with, - ACTIONS(7019), 1, + ACTIONS(6811), 1, + anon_sym_as, + ACTIONS(6813), 1, + anon_sym_is, + ACTIONS(6985), 1, anon_sym_SLASH, - ACTIONS(7021), 1, - anon_sym_CARET, - ACTIONS(7023), 1, - anon_sym_PIPE, - ACTIONS(7025), 1, - anon_sym_AMP, - ACTIONS(7029), 1, + ACTIONS(6989), 1, anon_sym_GT_GT, - ACTIONS(7035), 1, + ACTIONS(6991), 1, anon_sym_DOT_DOT, - ACTIONS(7037), 1, - anon_sym_as, - ACTIONS(7039), 1, - anon_sym_is, - ACTIONS(7041), 1, - anon_sym_AMP_AMP, - ACTIONS(7043), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7045), 1, - anon_sym_QMARK_QMARK, - ACTIONS(7047), 1, - anon_sym_QMARK, - ACTIONS(7546), 1, - anon_sym_COMMA, - STATE(2485), 1, + ACTIONS(7105), 1, + anon_sym_AMP, + STATE(2467), 1, sym_bracketed_argument_list, - STATE(3487), 1, + STATE(3381), 1, sym_argument_list, - ACTIONS(5306), 2, + ACTIONS(5304), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5899), 2, - anon_sym_COLON, - anon_sym_RPAREN, - ACTIONS(7013), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(7015), 2, + ACTIONS(5739), 2, + anon_sym_QMARK, + anon_sym_PIPE, + ACTIONS(6981), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7017), 2, + ACTIONS(6983), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7027), 2, + ACTIONS(6987), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7031), 2, + ACTIONS(7097), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(7107), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7033), 2, + ACTIONS(7109), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - STATE(4855), 9, + ACTIONS(5737), 8, + anon_sym_SEMI, + anon_sym_CARET, + 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(4790), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -619005,7 +612959,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [111343] = 40, + [105044] = 41, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -619026,74 +612980,76 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4100), 1, + ACTIONS(4092), 1, anon_sym_DOT, - ACTIONS(4102), 1, + ACTIONS(4094), 1, anon_sym_DASH_GT, - ACTIONS(5264), 1, + ACTIONS(5227), 1, anon_sym_LPAREN, - ACTIONS(5302), 1, + ACTIONS(5236), 1, anon_sym_LBRACK, - ACTIONS(5304), 1, + ACTIONS(5238), 1, anon_sym_BANG, - ACTIONS(6475), 1, + ACTIONS(5686), 1, + anon_sym_in, + ACTIONS(6017), 1, anon_sym_switch, - ACTIONS(6489), 1, + ACTIONS(6027), 1, + anon_sym_as, + ACTIONS(6031), 1, anon_sym_with, - ACTIONS(7462), 1, + ACTIONS(7373), 1, anon_sym_QMARK, - ACTIONS(7468), 1, + ACTIONS(7379), 1, anon_sym_SLASH, - ACTIONS(7470), 1, + ACTIONS(7381), 1, anon_sym_CARET, - ACTIONS(7472), 1, + ACTIONS(7383), 1, anon_sym_PIPE, - ACTIONS(7474), 1, + ACTIONS(7385), 1, anon_sym_AMP, - ACTIONS(7478), 1, + ACTIONS(7389), 1, anon_sym_GT_GT, - ACTIONS(7484), 1, + ACTIONS(7395), 1, anon_sym_DOT_DOT, - ACTIONS(7486), 1, + ACTIONS(7397), 1, anon_sym_AMP_AMP, - ACTIONS(7488), 1, + ACTIONS(7399), 1, anon_sym_PIPE_PIPE, - ACTIONS(7490), 1, + ACTIONS(7401), 1, anon_sym_QMARK_QMARK, - ACTIONS(7492), 1, - anon_sym_as, - ACTIONS(7494), 1, + ACTIONS(7403), 1, anon_sym_is, - STATE(2808), 1, + STATE(2605), 1, sym_bracketed_argument_list, - STATE(3487), 1, + STATE(3348), 1, sym_argument_list, - ACTIONS(5306), 2, + ACTIONS(5240), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7460), 2, + ACTIONS(7371), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7464), 2, + ACTIONS(7375), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7466), 2, + ACTIONS(7377), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7476), 2, + ACTIONS(7387), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7480), 2, + ACTIONS(7391), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7482), 2, + ACTIONS(7393), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5899), 3, + ACTIONS(5652), 3, anon_sym_and, anon_sym_or, - anon_sym_on, - STATE(4856), 9, + anon_sym_into, + STATE(4791), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -619103,7 +613059,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [111481] = 40, + [105185] = 41, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -619124,167 +613080,76 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4443), 1, - anon_sym_DASH_GT, - ACTIONS(4533), 1, + ACTIONS(4092), 1, anon_sym_DOT, - ACTIONS(6574), 1, + ACTIONS(4094), 1, + anon_sym_DASH_GT, + ACTIONS(5227), 1, anon_sym_LPAREN, - ACTIONS(6619), 1, + ACTIONS(5236), 1, anon_sym_LBRACK, - ACTIONS(6625), 1, + ACTIONS(5238), 1, anon_sym_BANG, - ACTIONS(6649), 1, + ACTIONS(5803), 1, + anon_sym_in, + ACTIONS(6017), 1, anon_sym_switch, - ACTIONS(6663), 1, - anon_sym_with, - ACTIONS(6761), 1, + ACTIONS(6027), 1, anon_sym_as, - ACTIONS(6962), 1, + ACTIONS(6031), 1, + anon_sym_with, + ACTIONS(7373), 1, anon_sym_QMARK, - ACTIONS(6968), 1, + ACTIONS(7379), 1, anon_sym_SLASH, - ACTIONS(6970), 1, + ACTIONS(7381), 1, anon_sym_CARET, - ACTIONS(6972), 1, + ACTIONS(7383), 1, anon_sym_PIPE, - ACTIONS(6974), 1, + ACTIONS(7385), 1, anon_sym_AMP, - ACTIONS(6978), 1, + ACTIONS(7389), 1, anon_sym_GT_GT, - ACTIONS(6984), 1, + ACTIONS(7395), 1, anon_sym_DOT_DOT, - ACTIONS(6986), 1, + ACTIONS(7397), 1, anon_sym_AMP_AMP, - ACTIONS(6988), 1, + ACTIONS(7399), 1, anon_sym_PIPE_PIPE, - ACTIONS(6990), 1, + ACTIONS(7401), 1, anon_sym_QMARK_QMARK, - ACTIONS(6992), 1, + ACTIONS(7403), 1, anon_sym_is, - STATE(3173), 1, + STATE(2605), 1, sym_bracketed_argument_list, - STATE(4583), 1, + STATE(3348), 1, sym_argument_list, - ACTIONS(6627), 2, + ACTIONS(5240), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6960), 2, + ACTIONS(7371), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(6964), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(6966), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(6976), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - ACTIONS(6980), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(6982), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(5899), 3, - sym_interpolation_close_brace, - anon_sym_COLON, - anon_sym_COMMA, - STATE(4857), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - [111619] = 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(4100), 1, - anon_sym_DOT, - ACTIONS(4102), 1, - anon_sym_DASH_GT, - ACTIONS(5264), 1, - anon_sym_LPAREN, - ACTIONS(5302), 1, - anon_sym_LBRACK, - ACTIONS(5304), 1, - anon_sym_BANG, - ACTIONS(6475), 1, - anon_sym_switch, - ACTIONS(6485), 1, - anon_sym_as, - ACTIONS(6489), 1, - anon_sym_with, - ACTIONS(7536), 1, - anon_sym_SLASH, - ACTIONS(7540), 1, - anon_sym_GT_GT, - ACTIONS(7542), 1, - anon_sym_DOT_DOT, - ACTIONS(7550), 1, - anon_sym_AMP, - ACTIONS(7556), 1, - anon_sym_is, - STATE(2808), 1, - sym_bracketed_argument_list, - STATE(3487), 1, - sym_argument_list, - ACTIONS(5306), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5664), 2, - anon_sym_QMARK, - anon_sym_PIPE, - ACTIONS(7532), 2, + ACTIONS(7375), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7534), 2, + ACTIONS(7377), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7538), 2, + ACTIONS(7387), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7548), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(7552), 2, + ACTIONS(7391), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7554), 2, + ACTIONS(7393), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5660), 7, - anon_sym_COLON, - anon_sym_CARET, + ACTIONS(5801), 3, anon_sym_and, anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_QMARK_QMARK, - STATE(4858), 9, + anon_sym_into, + STATE(4792), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -619294,7 +613159,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [111747] = 36, + [105326] = 36, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -619315,70 +613180,71 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4100), 1, + ACTIONS(4042), 1, anon_sym_DOT, - ACTIONS(4102), 1, + ACTIONS(4044), 1, anon_sym_DASH_GT, - ACTIONS(5264), 1, + ACTIONS(5257), 1, anon_sym_LPAREN, ACTIONS(5302), 1, - anon_sym_LBRACK, - ACTIONS(5304), 1, anon_sym_BANG, - ACTIONS(6475), 1, + ACTIONS(5549), 1, + anon_sym_LBRACK, + ACTIONS(6355), 1, anon_sym_switch, - ACTIONS(6485), 1, - anon_sym_as, - ACTIONS(6489), 1, + ACTIONS(6369), 1, anon_sym_with, - ACTIONS(7536), 1, + ACTIONS(6811), 1, + anon_sym_as, + ACTIONS(6813), 1, + anon_sym_is, + ACTIONS(6985), 1, anon_sym_SLASH, - ACTIONS(7540), 1, + ACTIONS(6989), 1, anon_sym_GT_GT, - ACTIONS(7542), 1, + ACTIONS(6991), 1, anon_sym_DOT_DOT, - ACTIONS(7550), 1, - anon_sym_AMP, - ACTIONS(7556), 1, - anon_sym_is, - ACTIONS(7558), 1, + ACTIONS(7101), 1, anon_sym_CARET, - STATE(2808), 1, + ACTIONS(7105), 1, + anon_sym_AMP, + STATE(2467), 1, sym_bracketed_argument_list, - STATE(3487), 1, + STATE(3381), 1, sym_argument_list, - ACTIONS(5306), 2, + ACTIONS(5304), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5664), 2, + ACTIONS(5739), 2, anon_sym_QMARK, anon_sym_PIPE, - ACTIONS(7532), 2, + ACTIONS(6981), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7534), 2, + ACTIONS(6983), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7538), 2, + ACTIONS(6987), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7548), 2, + ACTIONS(7097), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7552), 2, + ACTIONS(7107), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7554), 2, + ACTIONS(7109), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5660), 6, - anon_sym_COLON, - anon_sym_and, - anon_sym_or, + ACTIONS(5737), 7, + anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_QMARK_QMARK, - STATE(4859), 9, + aux_sym_preproc_if_token3, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + STATE(4793), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -619388,7 +613254,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [111877] = 34, + [105457] = 34, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -619409,68 +613275,69 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4100), 1, + ACTIONS(4042), 1, anon_sym_DOT, - ACTIONS(4102), 1, + ACTIONS(4044), 1, anon_sym_DASH_GT, - ACTIONS(5264), 1, + ACTIONS(5257), 1, anon_sym_LPAREN, ACTIONS(5302), 1, - anon_sym_LBRACK, - ACTIONS(5304), 1, anon_sym_BANG, - ACTIONS(6475), 1, + ACTIONS(5549), 1, + anon_sym_LBRACK, + ACTIONS(6355), 1, anon_sym_switch, - ACTIONS(6485), 1, - anon_sym_as, - ACTIONS(6489), 1, + ACTIONS(6369), 1, anon_sym_with, - ACTIONS(7536), 1, + ACTIONS(6811), 1, + anon_sym_as, + ACTIONS(6813), 1, + anon_sym_is, + ACTIONS(6985), 1, anon_sym_SLASH, - ACTIONS(7540), 1, + ACTIONS(6989), 1, anon_sym_GT_GT, - ACTIONS(7542), 1, + ACTIONS(6991), 1, anon_sym_DOT_DOT, - ACTIONS(7556), 1, - anon_sym_is, - STATE(2808), 1, + STATE(2467), 1, sym_bracketed_argument_list, - STATE(3487), 1, + STATE(3381), 1, sym_argument_list, - ACTIONS(5306), 2, + ACTIONS(5304), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7532), 2, + ACTIONS(6981), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7534), 2, + ACTIONS(6983), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7538), 2, + ACTIONS(6987), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7548), 2, + ACTIONS(7097), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7552), 2, + ACTIONS(7107), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7554), 2, + ACTIONS(7109), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5664), 3, + ACTIONS(5739), 3, anon_sym_QMARK, anon_sym_PIPE, anon_sym_AMP, - ACTIONS(5660), 7, - anon_sym_COLON, + ACTIONS(5737), 8, + anon_sym_SEMI, anon_sym_CARET, - anon_sym_and, - anon_sym_or, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_QMARK_QMARK, - STATE(4860), 9, + aux_sym_preproc_if_token3, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + STATE(4794), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -619480,7 +613347,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [112003] = 27, + [105584] = 27, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -619501,45 +613368,45 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4100), 1, + ACTIONS(4042), 1, anon_sym_DOT, - ACTIONS(4102), 1, + ACTIONS(4044), 1, anon_sym_DASH_GT, - ACTIONS(5264), 1, + ACTIONS(5257), 1, anon_sym_LPAREN, ACTIONS(5302), 1, - anon_sym_LBRACK, - ACTIONS(5304), 1, anon_sym_BANG, - ACTIONS(6475), 1, + ACTIONS(5549), 1, + anon_sym_LBRACK, + ACTIONS(6355), 1, anon_sym_switch, - ACTIONS(6489), 1, + ACTIONS(6369), 1, anon_sym_with, - ACTIONS(7536), 1, + ACTIONS(6985), 1, anon_sym_SLASH, - ACTIONS(7542), 1, + ACTIONS(6991), 1, anon_sym_DOT_DOT, - STATE(2808), 1, + STATE(2467), 1, sym_bracketed_argument_list, - STATE(3487), 1, + STATE(3381), 1, sym_argument_list, - ACTIONS(5306), 2, + ACTIONS(5304), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7532), 2, + ACTIONS(6981), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7534), 2, + ACTIONS(6983), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(5664), 6, + ACTIONS(5739), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT_GT, - STATE(4861), 9, + STATE(4795), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -619549,8 +613416,8 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5660), 15, - anon_sym_COLON, + ACTIONS(5737), 16, + anon_sym_SEMI, anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT_GT, @@ -619558,14 +613425,15 @@ 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_as, anon_sym_is, - [112115] = 29, + aux_sym_preproc_if_token3, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + [105697] = 33, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -619586,49 +613454,57 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4100), 1, + ACTIONS(4042), 1, anon_sym_DOT, - ACTIONS(4102), 1, + ACTIONS(4044), 1, anon_sym_DASH_GT, - ACTIONS(5264), 1, + ACTIONS(5257), 1, anon_sym_LPAREN, ACTIONS(5302), 1, - anon_sym_LBRACK, - ACTIONS(5304), 1, anon_sym_BANG, - ACTIONS(6475), 1, + ACTIONS(5549), 1, + anon_sym_LBRACK, + ACTIONS(6355), 1, anon_sym_switch, - ACTIONS(6489), 1, + ACTIONS(6369), 1, anon_sym_with, - ACTIONS(7564), 1, + ACTIONS(6811), 1, + anon_sym_as, + ACTIONS(6813), 1, + anon_sym_is, + ACTIONS(6985), 1, anon_sym_SLASH, - ACTIONS(7568), 1, + ACTIONS(6989), 1, anon_sym_GT_GT, - ACTIONS(7570), 1, + ACTIONS(6991), 1, anon_sym_DOT_DOT, - STATE(2808), 1, + STATE(2467), 1, sym_bracketed_argument_list, - STATE(3487), 1, + STATE(3381), 1, sym_argument_list, - ACTIONS(5306), 2, + ACTIONS(5304), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7560), 2, + ACTIONS(6981), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7562), 2, + ACTIONS(6983), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7566), 2, + ACTIONS(6987), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(5664), 5, + ACTIONS(7097), 2, anon_sym_LT, anon_sym_GT, + ACTIONS(7109), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(5739), 3, anon_sym_QMARK, anon_sym_PIPE, anon_sym_AMP, - STATE(4862), 9, + STATE(4796), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -619638,21 +613514,18 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5660), 13, + ACTIONS(5737), 10, + anon_sym_SEMI, 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_by, - anon_sym_as, - anon_sym_is, - [112231] = 33, + aux_sym_preproc_if_token3, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + [105822] = 22, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -619673,67 +613546,36 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4100), 1, + ACTIONS(4042), 1, anon_sym_DOT, - ACTIONS(4102), 1, + ACTIONS(4044), 1, anon_sym_DASH_GT, - ACTIONS(5264), 1, + ACTIONS(5257), 1, anon_sym_LPAREN, ACTIONS(5302), 1, - anon_sym_LBRACK, - ACTIONS(5304), 1, anon_sym_BANG, - ACTIONS(6475), 1, - anon_sym_switch, - ACTIONS(6485), 1, - anon_sym_as, - ACTIONS(6489), 1, - anon_sym_with, - ACTIONS(7536), 1, - anon_sym_SLASH, - ACTIONS(7540), 1, - anon_sym_GT_GT, - ACTIONS(7542), 1, + ACTIONS(5549), 1, + anon_sym_LBRACK, + ACTIONS(6991), 1, anon_sym_DOT_DOT, - ACTIONS(7556), 1, - anon_sym_is, - STATE(2808), 1, + STATE(2467), 1, sym_bracketed_argument_list, - STATE(3487), 1, + STATE(3381), 1, sym_argument_list, - ACTIONS(5306), 2, + ACTIONS(5304), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7532), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(7534), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(7538), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - ACTIONS(7548), 2, + ACTIONS(5743), 9, anon_sym_LT, anon_sym_GT, - ACTIONS(7554), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(5664), 3, anon_sym_QMARK, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, anon_sym_PIPE, anon_sym_AMP, - ACTIONS(5660), 9, - anon_sym_COLON, - 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(4863), 9, + anon_sym_GT_GT, + STATE(4797), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -619743,7 +613585,28 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [112355] = 37, + ACTIONS(5741), 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, + 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, + [105925] = 37, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -619764,71 +613627,72 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4100), 1, + ACTIONS(4042), 1, anon_sym_DOT, - ACTIONS(4102), 1, + ACTIONS(4044), 1, anon_sym_DASH_GT, - ACTIONS(5264), 1, + ACTIONS(5257), 1, anon_sym_LPAREN, ACTIONS(5302), 1, - anon_sym_LBRACK, - ACTIONS(5304), 1, anon_sym_BANG, - ACTIONS(5664), 1, + ACTIONS(5549), 1, + anon_sym_LBRACK, + ACTIONS(5739), 1, anon_sym_QMARK, - ACTIONS(6475), 1, + ACTIONS(6355), 1, anon_sym_switch, - ACTIONS(6485), 1, - anon_sym_as, - ACTIONS(6489), 1, + ACTIONS(6369), 1, anon_sym_with, - ACTIONS(7536), 1, + ACTIONS(6811), 1, + anon_sym_as, + ACTIONS(6813), 1, + anon_sym_is, + ACTIONS(6985), 1, anon_sym_SLASH, - ACTIONS(7540), 1, + ACTIONS(6989), 1, anon_sym_GT_GT, - ACTIONS(7542), 1, + ACTIONS(6991), 1, anon_sym_DOT_DOT, - ACTIONS(7550), 1, - anon_sym_AMP, - ACTIONS(7556), 1, - anon_sym_is, - ACTIONS(7558), 1, + ACTIONS(7101), 1, anon_sym_CARET, - ACTIONS(7572), 1, + ACTIONS(7103), 1, anon_sym_PIPE, - STATE(2808), 1, + ACTIONS(7105), 1, + anon_sym_AMP, + STATE(2467), 1, sym_bracketed_argument_list, - STATE(3487), 1, + STATE(3381), 1, sym_argument_list, - ACTIONS(5306), 2, + ACTIONS(5304), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7532), 2, + ACTIONS(6981), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7534), 2, + ACTIONS(6983), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7538), 2, + ACTIONS(6987), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7548), 2, + ACTIONS(7097), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7552), 2, + ACTIONS(7107), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7554), 2, + ACTIONS(7109), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5660), 6, - anon_sym_COLON, - anon_sym_and, - anon_sym_or, + ACTIONS(5737), 7, + anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_QMARK_QMARK, - STATE(4864), 9, + aux_sym_preproc_if_token3, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + STATE(4798), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -619838,7 +613702,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [112487] = 38, + [106058] = 38, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -619859,72 +613723,73 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4100), 1, + ACTIONS(4042), 1, anon_sym_DOT, - ACTIONS(4102), 1, + ACTIONS(4044), 1, anon_sym_DASH_GT, - ACTIONS(5264), 1, + ACTIONS(5257), 1, anon_sym_LPAREN, ACTIONS(5302), 1, - anon_sym_LBRACK, - ACTIONS(5304), 1, anon_sym_BANG, - ACTIONS(5664), 1, + ACTIONS(5549), 1, + anon_sym_LBRACK, + ACTIONS(5739), 1, anon_sym_QMARK, - ACTIONS(6475), 1, + ACTIONS(6355), 1, anon_sym_switch, - ACTIONS(6485), 1, - anon_sym_as, - ACTIONS(6489), 1, + ACTIONS(6369), 1, anon_sym_with, - ACTIONS(7536), 1, + ACTIONS(6811), 1, + anon_sym_as, + ACTIONS(6813), 1, + anon_sym_is, + ACTIONS(6985), 1, anon_sym_SLASH, - ACTIONS(7540), 1, + ACTIONS(6989), 1, anon_sym_GT_GT, - ACTIONS(7542), 1, + ACTIONS(6991), 1, anon_sym_DOT_DOT, - ACTIONS(7550), 1, - anon_sym_AMP, - ACTIONS(7556), 1, - anon_sym_is, - ACTIONS(7558), 1, + ACTIONS(7101), 1, anon_sym_CARET, - ACTIONS(7572), 1, + ACTIONS(7103), 1, anon_sym_PIPE, - ACTIONS(7574), 1, + ACTIONS(7105), 1, + anon_sym_AMP, + ACTIONS(7111), 1, anon_sym_AMP_AMP, - STATE(2808), 1, + STATE(2467), 1, sym_bracketed_argument_list, - STATE(3487), 1, + STATE(3381), 1, sym_argument_list, - ACTIONS(5306), 2, + ACTIONS(5304), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7532), 2, + ACTIONS(6981), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7534), 2, + ACTIONS(6983), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7538), 2, + ACTIONS(6987), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7548), 2, + ACTIONS(7097), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7552), 2, + ACTIONS(7107), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7554), 2, + ACTIONS(7109), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5660), 5, - anon_sym_COLON, - anon_sym_and, - anon_sym_or, + ACTIONS(5737), 6, + anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_QMARK_QMARK, - STATE(4865), 9, + aux_sym_preproc_if_token3, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + STATE(4799), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -619934,7 +613799,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [112621] = 40, + [106193] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -619955,74 +613820,75 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4100), 1, + ACTIONS(4042), 1, anon_sym_DOT, - ACTIONS(4102), 1, + ACTIONS(4044), 1, anon_sym_DASH_GT, - ACTIONS(5264), 1, + ACTIONS(5257), 1, anon_sym_LPAREN, ACTIONS(5302), 1, - anon_sym_LBRACK, - ACTIONS(5304), 1, anon_sym_BANG, - ACTIONS(5664), 1, + ACTIONS(5549), 1, + anon_sym_LBRACK, + ACTIONS(5739), 1, anon_sym_QMARK, - ACTIONS(6475), 1, + ACTIONS(6355), 1, anon_sym_switch, - ACTIONS(6485), 1, - anon_sym_as, - ACTIONS(6489), 1, + ACTIONS(6369), 1, anon_sym_with, - ACTIONS(7536), 1, + ACTIONS(6811), 1, + anon_sym_as, + ACTIONS(6813), 1, + anon_sym_is, + ACTIONS(6985), 1, anon_sym_SLASH, - ACTIONS(7540), 1, + ACTIONS(6989), 1, anon_sym_GT_GT, - ACTIONS(7542), 1, + ACTIONS(6991), 1, anon_sym_DOT_DOT, - ACTIONS(7550), 1, - anon_sym_AMP, - ACTIONS(7556), 1, - anon_sym_is, - ACTIONS(7558), 1, + ACTIONS(7101), 1, anon_sym_CARET, - ACTIONS(7572), 1, + ACTIONS(7103), 1, anon_sym_PIPE, - ACTIONS(7574), 1, + ACTIONS(7105), 1, + anon_sym_AMP, + ACTIONS(7111), 1, anon_sym_AMP_AMP, - ACTIONS(7576), 1, + ACTIONS(7113), 1, anon_sym_PIPE_PIPE, - ACTIONS(7578), 1, + ACTIONS(7115), 1, anon_sym_QMARK_QMARK, - STATE(2808), 1, + STATE(2467), 1, sym_bracketed_argument_list, - STATE(3487), 1, + STATE(3381), 1, sym_argument_list, - ACTIONS(5306), 2, + ACTIONS(5304), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7532), 2, + ACTIONS(6981), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7534), 2, + ACTIONS(6983), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7538), 2, + ACTIONS(6987), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7548), 2, + ACTIONS(7097), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7552), 2, + ACTIONS(7107), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7554), 2, + ACTIONS(7109), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5660), 3, - anon_sym_COLON, - anon_sym_and, - anon_sym_or, - STATE(4866), 9, + ACTIONS(5737), 4, + anon_sym_SEMI, + aux_sym_preproc_if_token3, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + STATE(4800), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -620032,7 +613898,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [112759] = 42, + [106332] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -620053,76 +613919,75 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4100), 1, + ACTIONS(4042), 1, anon_sym_DOT, - ACTIONS(4102), 1, + ACTIONS(4044), 1, anon_sym_DASH_GT, - ACTIONS(5264), 1, + ACTIONS(5257), 1, anon_sym_LPAREN, - ACTIONS(5304), 1, + ACTIONS(5302), 1, anon_sym_BANG, - ACTIONS(5573), 1, + ACTIONS(5549), 1, anon_sym_LBRACK, - ACTIONS(6343), 1, + ACTIONS(6355), 1, anon_sym_switch, - ACTIONS(6357), 1, + ACTIONS(6369), 1, anon_sym_with, - ACTIONS(6813), 1, + ACTIONS(6811), 1, anon_sym_as, - ACTIONS(7139), 1, - anon_sym_QMARK, - ACTIONS(7145), 1, + ACTIONS(6813), 1, + anon_sym_is, + ACTIONS(6985), 1, anon_sym_SLASH, - ACTIONS(7147), 1, + ACTIONS(6989), 1, + anon_sym_GT_GT, + ACTIONS(6991), 1, + anon_sym_DOT_DOT, + ACTIONS(7099), 1, + anon_sym_QMARK, + ACTIONS(7101), 1, anon_sym_CARET, - ACTIONS(7149), 1, + ACTIONS(7103), 1, anon_sym_PIPE, - ACTIONS(7151), 1, + ACTIONS(7105), 1, anon_sym_AMP, - ACTIONS(7155), 1, - anon_sym_GT_GT, - ACTIONS(7161), 1, - anon_sym_DOT_DOT, - ACTIONS(7163), 1, + ACTIONS(7111), 1, anon_sym_AMP_AMP, - ACTIONS(7165), 1, + ACTIONS(7113), 1, anon_sym_PIPE_PIPE, - ACTIONS(7167), 1, + ACTIONS(7115), 1, anon_sym_QMARK_QMARK, - ACTIONS(7169), 1, - anon_sym_is, - ACTIONS(7580), 1, - anon_sym_COMMA, - ACTIONS(7582), 1, - anon_sym_RPAREN, - STATE(2485), 1, + STATE(2467), 1, sym_bracketed_argument_list, - STATE(3487), 1, + STATE(3381), 1, sym_argument_list, - STATE(6886), 1, - aux_sym__for_statement_conditions_repeat1, - ACTIONS(5306), 2, + ACTIONS(5304), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7137), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(7141), 2, + ACTIONS(6981), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7143), 2, + ACTIONS(6983), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7153), 2, + ACTIONS(6987), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7157), 2, + ACTIONS(7097), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(7107), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7159), 2, + ACTIONS(7109), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - STATE(4867), 9, + ACTIONS(4996), 4, + anon_sym_SEMI, + aux_sym_preproc_if_token3, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + STATE(4801), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -620132,7 +613997,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [112901] = 40, + [106471] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -620153,74 +614018,75 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4100), 1, + ACTIONS(4042), 1, anon_sym_DOT, - ACTIONS(4102), 1, + ACTIONS(4044), 1, anon_sym_DASH_GT, - ACTIONS(5264), 1, + ACTIONS(5257), 1, anon_sym_LPAREN, - ACTIONS(5304), 1, + ACTIONS(5302), 1, anon_sym_BANG, - ACTIONS(5573), 1, + ACTIONS(5549), 1, anon_sym_LBRACK, - ACTIONS(6343), 1, + ACTIONS(6355), 1, anon_sym_switch, - ACTIONS(6357), 1, + ACTIONS(6369), 1, anon_sym_with, - ACTIONS(6783), 1, - anon_sym_QMARK, - ACTIONS(6789), 1, + ACTIONS(6811), 1, + anon_sym_as, + ACTIONS(6813), 1, + anon_sym_is, + ACTIONS(6985), 1, anon_sym_SLASH, - ACTIONS(6791), 1, + ACTIONS(6989), 1, + anon_sym_GT_GT, + ACTIONS(6991), 1, + anon_sym_DOT_DOT, + ACTIONS(7099), 1, + anon_sym_QMARK, + ACTIONS(7101), 1, anon_sym_CARET, - ACTIONS(6793), 1, + ACTIONS(7103), 1, anon_sym_PIPE, - ACTIONS(6795), 1, + ACTIONS(7105), 1, anon_sym_AMP, - ACTIONS(6799), 1, - anon_sym_GT_GT, - ACTIONS(6805), 1, - anon_sym_DOT_DOT, - ACTIONS(6807), 1, + ACTIONS(7111), 1, anon_sym_AMP_AMP, - ACTIONS(6809), 1, + ACTIONS(7113), 1, anon_sym_PIPE_PIPE, - ACTIONS(6811), 1, + ACTIONS(7115), 1, anon_sym_QMARK_QMARK, - ACTIONS(6813), 1, - anon_sym_as, - ACTIONS(6815), 1, - anon_sym_is, - STATE(2485), 1, + STATE(2467), 1, sym_bracketed_argument_list, - STATE(3487), 1, + STATE(3381), 1, sym_argument_list, - ACTIONS(5306), 2, + ACTIONS(5304), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6781), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(6785), 2, + ACTIONS(6981), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6787), 2, + ACTIONS(6983), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(6797), 2, + ACTIONS(6987), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(6801), 2, + ACTIONS(7097), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(7107), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6803), 2, + ACTIONS(7109), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(7584), 3, + ACTIONS(5652), 4, + anon_sym_SEMI, aux_sym_preproc_if_token3, aux_sym_preproc_else_token1, aux_sym_preproc_elif_token1, - STATE(4868), 9, + STATE(4802), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -620230,7 +614096,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [113039] = 42, + [106610] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -620251,86 +614117,60 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4100), 1, - anon_sym_DOT, - ACTIONS(4102), 1, - anon_sym_DASH_GT, - ACTIONS(5264), 1, - anon_sym_LPAREN, - ACTIONS(5304), 1, - anon_sym_BANG, - ACTIONS(5573), 1, - anon_sym_LBRACK, - ACTIONS(6343), 1, - anon_sym_switch, - ACTIONS(6357), 1, - anon_sym_with, - ACTIONS(6813), 1, - anon_sym_as, - ACTIONS(7139), 1, + ACTIONS(7405), 1, + anon_sym_into, + STATE(4804), 1, + aux_sym__query_body_repeat2, + STATE(4803), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + ACTIONS(5935), 11, + anon_sym_LT, + anon_sym_GT, anon_sym_QMARK, - ACTIONS(7145), 1, + anon_sym_BANG, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_SLASH, - ACTIONS(7147), 1, - anon_sym_CARET, - ACTIONS(7149), 1, anon_sym_PIPE, - ACTIONS(7151), 1, anon_sym_AMP, - ACTIONS(7155), 1, anon_sym_GT_GT, - ACTIONS(7161), 1, - anon_sym_DOT_DOT, - ACTIONS(7163), 1, - anon_sym_AMP_AMP, - ACTIONS(7165), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7167), 1, - anon_sym_QMARK_QMARK, - ACTIONS(7169), 1, - anon_sym_is, - ACTIONS(7580), 1, - anon_sym_COMMA, - ACTIONS(7586), 1, - anon_sym_RPAREN, - STATE(2485), 1, - sym_bracketed_argument_list, - STATE(3487), 1, - sym_argument_list, - STATE(6888), 1, - aux_sym__for_statement_conditions_repeat1, - ACTIONS(5306), 2, + anon_sym_DOT, + ACTIONS(5933), 26, + anon_sym_LBRACK, + anon_sym_COLON, + anon_sym_LPAREN, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7137), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(7141), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(7143), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7153), 2, + anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7157), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7159), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - STATE(4869), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - [113181] = 27, + 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_as, + anon_sym_is, + anon_sym_DASH_GT, + anon_sym_with, + [106699] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -620351,38 +614191,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(3881), 1, - anon_sym_LBRACE, - ACTIONS(3897), 1, - sym_discard, - ACTIONS(6823), 1, - sym__identifier_token, - ACTIONS(6827), 1, - anon_sym_LPAREN, - ACTIONS(7588), 1, - anon_sym_COMMA, - ACTIONS(7591), 1, - anon_sym_RPAREN, - STATE(2571), 1, - sym__reserved_identifier, - STATE(3463), 1, - sym_parenthesized_variable_designation, - STATE(3492), 1, - sym__variable_designation, - STATE(5279), 1, - sym_positional_pattern_clause, - STATE(5682), 1, - sym_property_pattern_clause, - STATE(6412), 1, - sym_identifier, - STATE(7311), 1, - sym_parameter_list, - STATE(7536), 1, - sym__lambda_parameters, - ACTIONS(3883), 2, - anon_sym_and, - anon_sym_or, - STATE(4870), 9, + ACTIONS(7405), 1, + anon_sym_into, + STATE(4806), 1, + aux_sym__query_body_repeat2, + STATE(4804), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -620392,128 +614205,46 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(6825), 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, - [113293] = 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(4100), 1, - anon_sym_DOT, - ACTIONS(4102), 1, - anon_sym_DASH_GT, - ACTIONS(5264), 1, - anon_sym_LPAREN, - ACTIONS(5304), 1, - anon_sym_BANG, - ACTIONS(5573), 1, - anon_sym_LBRACK, - ACTIONS(6343), 1, - anon_sym_switch, - ACTIONS(6357), 1, - anon_sym_with, - ACTIONS(6783), 1, + ACTIONS(5881), 11, + anon_sym_LT, + anon_sym_GT, anon_sym_QMARK, - ACTIONS(6789), 1, + anon_sym_BANG, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_SLASH, - ACTIONS(6791), 1, - anon_sym_CARET, - ACTIONS(6793), 1, anon_sym_PIPE, - ACTIONS(6795), 1, anon_sym_AMP, - ACTIONS(6799), 1, anon_sym_GT_GT, - ACTIONS(6805), 1, - anon_sym_DOT_DOT, - ACTIONS(6807), 1, - anon_sym_AMP_AMP, - ACTIONS(6809), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6811), 1, - anon_sym_QMARK_QMARK, - ACTIONS(6813), 1, - anon_sym_as, - ACTIONS(6815), 1, - anon_sym_is, - STATE(2485), 1, - sym_bracketed_argument_list, - STATE(3487), 1, - sym_argument_list, - ACTIONS(5306), 2, + anon_sym_DOT, + ACTIONS(5879), 26, + anon_sym_LBRACK, + anon_sym_COLON, + anon_sym_LPAREN, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6781), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(6785), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(6787), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(6797), 2, + anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(6801), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6803), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5899), 3, - aux_sym_preproc_if_token3, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - STATE(4871), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - [113431] = 29, + 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_as, + anon_sym_is, + anon_sym_DASH_GT, + anon_sym_with, + [106788] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -620534,49 +614265,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4100), 1, - anon_sym_DOT, - ACTIONS(4102), 1, - anon_sym_DASH_GT, - ACTIONS(5264), 1, - anon_sym_LPAREN, - ACTIONS(5302), 1, - anon_sym_LBRACK, - ACTIONS(5304), 1, - anon_sym_BANG, - ACTIONS(6475), 1, - anon_sym_switch, - ACTIONS(6489), 1, - anon_sym_with, - ACTIONS(7597), 1, - anon_sym_SLASH, - ACTIONS(7601), 1, - anon_sym_GT_GT, - ACTIONS(7603), 1, - anon_sym_DOT_DOT, - STATE(2808), 1, - sym_bracketed_argument_list, - STATE(3487), 1, - sym_argument_list, - ACTIONS(5306), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(7593), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(7595), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(7599), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - ACTIONS(5664), 5, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_AMP, - STATE(4872), 9, + ACTIONS(7405), 1, + anon_sym_into, + STATE(4807), 1, + aux_sym__query_body_repeat2, + STATE(4805), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -620586,13 +614279,36 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5660), 13, + ACTIONS(5881), 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(5879), 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_EQ_GT, + anon_sym_switch, + anon_sym_when, + anon_sym_DOT_DOT, anon_sym_and, anon_sym_or, anon_sym_AMP_AMP, @@ -620600,7 +614316,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_as, anon_sym_is, - [113547] = 42, + anon_sym_DASH_GT, + anon_sym_with, + [106877] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -620621,86 +614339,59 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4100), 1, - anon_sym_DOT, - ACTIONS(4102), 1, - anon_sym_DASH_GT, - ACTIONS(5264), 1, - anon_sym_LPAREN, - ACTIONS(5304), 1, - anon_sym_BANG, - ACTIONS(5573), 1, - anon_sym_LBRACK, - ACTIONS(6343), 1, - anon_sym_switch, - ACTIONS(6357), 1, - anon_sym_with, - ACTIONS(6813), 1, - anon_sym_as, - ACTIONS(7139), 1, + ACTIONS(7407), 1, + anon_sym_into, + STATE(4806), 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(5953), 11, + anon_sym_LT, + anon_sym_GT, anon_sym_QMARK, - ACTIONS(7145), 1, + anon_sym_BANG, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_SLASH, - ACTIONS(7147), 1, - anon_sym_CARET, - ACTIONS(7149), 1, anon_sym_PIPE, - ACTIONS(7151), 1, anon_sym_AMP, - ACTIONS(7155), 1, anon_sym_GT_GT, - ACTIONS(7161), 1, - anon_sym_DOT_DOT, - ACTIONS(7163), 1, - anon_sym_AMP_AMP, - ACTIONS(7165), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7167), 1, - anon_sym_QMARK_QMARK, - ACTIONS(7169), 1, - anon_sym_is, - ACTIONS(7605), 1, - anon_sym_COMMA, - ACTIONS(7607), 1, - anon_sym_RBRACE, - STATE(2485), 1, - sym_bracketed_argument_list, - STATE(3487), 1, - sym_argument_list, - STATE(6967), 1, - aux_sym__for_statement_conditions_repeat1, - ACTIONS(5306), 2, + anon_sym_DOT, + ACTIONS(5951), 26, + anon_sym_LBRACK, + anon_sym_COLON, + anon_sym_LPAREN, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7137), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(7141), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(7143), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7153), 2, + anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7157), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7159), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - STATE(4873), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - [113689] = 26, + 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_as, + anon_sym_is, + anon_sym_DASH_GT, + anon_sym_with, + [106964] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -620721,44 +614412,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4100), 1, - anon_sym_DOT, - ACTIONS(4102), 1, - anon_sym_DASH_GT, - ACTIONS(5264), 1, - anon_sym_LPAREN, - ACTIONS(5302), 1, - anon_sym_LBRACK, - ACTIONS(5304), 1, - anon_sym_BANG, - ACTIONS(6475), 1, - anon_sym_switch, - ACTIONS(6489), 1, - anon_sym_with, - ACTIONS(7597), 1, - anon_sym_SLASH, - ACTIONS(7603), 1, - anon_sym_DOT_DOT, - STATE(2808), 1, - sym_bracketed_argument_list, - STATE(3487), 1, - sym_argument_list, - ACTIONS(5306), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(7595), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(5664), 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(4874), 9, + ACTIONS(7405), 1, + anon_sym_into, + STATE(4806), 1, + aux_sym__query_body_repeat2, + STATE(4807), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -620768,7 +614426,26 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5660), 15, + ACTIONS(5960), 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(5958), 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, @@ -620776,7 +614453,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_when, + anon_sym_DOT_DOT, anon_sym_and, anon_sym_or, anon_sym_AMP_AMP, @@ -620784,7 +614463,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_as, anon_sym_is, - [113799] = 35, + anon_sym_DASH_GT, + anon_sym_with, + [107053] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -620805,79 +614486,58 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4100), 1, - anon_sym_DOT, - ACTIONS(4102), 1, - anon_sym_DASH_GT, - ACTIONS(5264), 1, - anon_sym_LPAREN, - ACTIONS(5302), 1, - anon_sym_LBRACK, - ACTIONS(5304), 1, + STATE(4808), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + ACTIONS(5348), 11, + anon_sym_LT, + anon_sym_GT, + anon_sym_QMARK, anon_sym_BANG, - ACTIONS(6475), 1, - anon_sym_switch, - ACTIONS(6485), 1, - anon_sym_as, - ACTIONS(6489), 1, - anon_sym_with, - ACTIONS(7597), 1, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_SLASH, - ACTIONS(7601), 1, - anon_sym_GT_GT, - ACTIONS(7603), 1, - anon_sym_DOT_DOT, - ACTIONS(7611), 1, + anon_sym_PIPE, anon_sym_AMP, - ACTIONS(7617), 1, - anon_sym_is, - STATE(2808), 1, - sym_bracketed_argument_list, - STATE(3487), 1, - sym_argument_list, - ACTIONS(5306), 2, + anon_sym_GT_GT, + anon_sym_DOT, + ACTIONS(5346), 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(5664), 2, - anon_sym_QMARK, - anon_sym_PIPE, - ACTIONS(7593), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(7595), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7599), 2, + anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7609), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(7613), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7615), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5660), 7, - anon_sym_CARET, - 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, - STATE(4875), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - [113927] = 36, + anon_sym_into, + anon_sym_as, + anon_sym_is, + anon_sym_DASH_GT, + anon_sym_with, + [107138] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -620898,80 +614558,58 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4100), 1, - anon_sym_DOT, - ACTIONS(4102), 1, - anon_sym_DASH_GT, - ACTIONS(5264), 1, - anon_sym_LPAREN, - ACTIONS(5302), 1, - anon_sym_LBRACK, - ACTIONS(5304), 1, + STATE(4809), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + ACTIONS(5352), 11, + anon_sym_LT, + anon_sym_GT, + anon_sym_QMARK, anon_sym_BANG, - ACTIONS(6475), 1, - anon_sym_switch, - ACTIONS(6485), 1, - anon_sym_as, - ACTIONS(6489), 1, - anon_sym_with, - ACTIONS(7597), 1, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_SLASH, - ACTIONS(7601), 1, - anon_sym_GT_GT, - ACTIONS(7603), 1, - anon_sym_DOT_DOT, - ACTIONS(7611), 1, + anon_sym_PIPE, anon_sym_AMP, - ACTIONS(7617), 1, - anon_sym_is, - ACTIONS(7619), 1, - anon_sym_CARET, - STATE(2808), 1, - sym_bracketed_argument_list, - STATE(3487), 1, - sym_argument_list, - ACTIONS(5306), 2, + anon_sym_GT_GT, + anon_sym_DOT, + ACTIONS(5350), 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(5664), 2, - anon_sym_QMARK, - anon_sym_PIPE, - ACTIONS(7593), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(7595), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7599), 2, + anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7609), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(7613), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7615), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5660), 6, - 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, - STATE(4876), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - [114057] = 34, + anon_sym_into, + anon_sym_as, + anon_sym_is, + anon_sym_DASH_GT, + anon_sym_with, + [107223] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -620992,78 +614630,58 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4100), 1, - anon_sym_DOT, - ACTIONS(4102), 1, - anon_sym_DASH_GT, - ACTIONS(5264), 1, - anon_sym_LPAREN, - ACTIONS(5302), 1, - anon_sym_LBRACK, - ACTIONS(5304), 1, + STATE(4810), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + ACTIONS(5356), 11, + anon_sym_LT, + anon_sym_GT, + anon_sym_QMARK, anon_sym_BANG, - ACTIONS(6475), 1, - anon_sym_switch, - ACTIONS(6485), 1, - anon_sym_as, - ACTIONS(6489), 1, - anon_sym_with, - ACTIONS(7597), 1, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_SLASH, - ACTIONS(7601), 1, + anon_sym_PIPE, + anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(7603), 1, - anon_sym_DOT_DOT, - ACTIONS(7617), 1, - anon_sym_is, - STATE(2808), 1, - sym_bracketed_argument_list, - STATE(3487), 1, - sym_argument_list, - ACTIONS(5306), 2, + anon_sym_DOT, + ACTIONS(5354), 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(7593), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(7595), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7599), 2, + anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7609), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(7613), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7615), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5664), 3, - anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_AMP, - ACTIONS(5660), 7, - anon_sym_CARET, - 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, - STATE(4877), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - [114183] = 40, + anon_sym_into, + anon_sym_as, + anon_sym_is, + anon_sym_DASH_GT, + anon_sym_with, + [107308] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -621084,84 +614702,58 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4100), 1, - anon_sym_DOT, - ACTIONS(4102), 1, - anon_sym_DASH_GT, - ACTIONS(5264), 1, - anon_sym_LPAREN, - ACTIONS(5304), 1, - anon_sym_BANG, - ACTIONS(5573), 1, - anon_sym_LBRACK, - ACTIONS(6343), 1, - anon_sym_switch, - ACTIONS(6357), 1, - anon_sym_with, - ACTIONS(6783), 1, + STATE(4811), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + ACTIONS(5364), 11, + anon_sym_LT, + anon_sym_GT, anon_sym_QMARK, - ACTIONS(6789), 1, + anon_sym_BANG, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_SLASH, - ACTIONS(6791), 1, - anon_sym_CARET, - ACTIONS(6793), 1, anon_sym_PIPE, - ACTIONS(6795), 1, anon_sym_AMP, - ACTIONS(6799), 1, anon_sym_GT_GT, - ACTIONS(6805), 1, - anon_sym_DOT_DOT, - ACTIONS(6807), 1, - anon_sym_AMP_AMP, - ACTIONS(6809), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6811), 1, - anon_sym_QMARK_QMARK, - ACTIONS(6813), 1, - anon_sym_as, - ACTIONS(6815), 1, - anon_sym_is, - STATE(2485), 1, - sym_bracketed_argument_list, - STATE(3487), 1, - sym_argument_list, - ACTIONS(5306), 2, + anon_sym_DOT, + ACTIONS(5362), 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(6781), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(6785), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(6787), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(6797), 2, + anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(6801), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6803), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5858), 3, - aux_sym_preproc_if_token3, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - STATE(4878), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - [114321] = 40, + 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, + [107393] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -621182,84 +614774,58 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4100), 1, - anon_sym_DOT, - ACTIONS(4102), 1, - anon_sym_DASH_GT, - ACTIONS(5264), 1, - anon_sym_LPAREN, - ACTIONS(5304), 1, - anon_sym_BANG, - ACTIONS(5573), 1, - anon_sym_LBRACK, - ACTIONS(5664), 1, + STATE(4812), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + ACTIONS(5364), 11, + anon_sym_LT, + anon_sym_GT, anon_sym_QMARK, - ACTIONS(6343), 1, - anon_sym_switch, - ACTIONS(6357), 1, - anon_sym_with, - ACTIONS(6813), 1, - anon_sym_as, - ACTIONS(7169), 1, - anon_sym_is, - ACTIONS(7442), 1, + anon_sym_BANG, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_SLASH, - ACTIONS(7444), 1, - anon_sym_CARET, - ACTIONS(7446), 1, anon_sym_PIPE, - ACTIONS(7448), 1, anon_sym_AMP, - ACTIONS(7452), 1, anon_sym_GT_GT, - ACTIONS(7458), 1, - anon_sym_DOT_DOT, - ACTIONS(7621), 1, - anon_sym_AMP_AMP, - ACTIONS(7623), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7625), 1, - anon_sym_QMARK_QMARK, - STATE(2485), 1, - sym_bracketed_argument_list, - STATE(3487), 1, - sym_argument_list, - ACTIONS(5306), 2, + anon_sym_DOT, + ACTIONS(5362), 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(7436), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(7438), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(7440), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7450), 2, + anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7454), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7456), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5660), 3, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RBRACE, - STATE(4879), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - [114459] = 42, + 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, + [107478] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -621280,86 +614846,58 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4100), 1, - anon_sym_DOT, - ACTIONS(4102), 1, - anon_sym_DASH_GT, - ACTIONS(5264), 1, - anon_sym_LPAREN, - ACTIONS(5304), 1, - anon_sym_BANG, - ACTIONS(5573), 1, - anon_sym_LBRACK, - ACTIONS(6343), 1, - anon_sym_switch, - ACTIONS(6357), 1, - anon_sym_with, - ACTIONS(6813), 1, - anon_sym_as, - ACTIONS(7139), 1, + STATE(4813), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + ACTIONS(5368), 11, + anon_sym_LT, + anon_sym_GT, anon_sym_QMARK, - ACTIONS(7145), 1, + anon_sym_BANG, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_SLASH, - ACTIONS(7147), 1, - anon_sym_CARET, - ACTIONS(7149), 1, anon_sym_PIPE, - ACTIONS(7151), 1, anon_sym_AMP, - ACTIONS(7155), 1, anon_sym_GT_GT, - ACTIONS(7161), 1, - anon_sym_DOT_DOT, - ACTIONS(7163), 1, - anon_sym_AMP_AMP, - ACTIONS(7165), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7167), 1, - anon_sym_QMARK_QMARK, - ACTIONS(7169), 1, - anon_sym_is, - ACTIONS(7627), 1, + anon_sym_DOT, + ACTIONS(5366), 28, + sym_interpolation_close_brace, + anon_sym_LBRACK, + anon_sym_COLON, anon_sym_COMMA, - ACTIONS(7629), 1, - anon_sym_RBRACE, - STATE(2485), 1, - sym_bracketed_argument_list, - STATE(3487), 1, - sym_argument_list, - STATE(6864), 1, - aux_sym__for_statement_conditions_repeat1, - ACTIONS(5306), 2, + anon_sym_LPAREN, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7137), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(7141), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(7143), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7153), 2, + anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7157), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7159), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - STATE(4880), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - [114601] = 27, + 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, + [107563] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -621380,45 +614918,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4100), 1, - anon_sym_DOT, - ACTIONS(4102), 1, - anon_sym_DASH_GT, - ACTIONS(5264), 1, - anon_sym_LPAREN, - ACTIONS(5302), 1, - anon_sym_LBRACK, - ACTIONS(5304), 1, - anon_sym_BANG, - ACTIONS(6475), 1, - anon_sym_switch, - ACTIONS(6489), 1, - anon_sym_with, - ACTIONS(7597), 1, - anon_sym_SLASH, - ACTIONS(7603), 1, - anon_sym_DOT_DOT, - STATE(2808), 1, - sym_bracketed_argument_list, - STATE(3487), 1, - sym_argument_list, - ACTIONS(5306), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(7593), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(7595), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(5664), 6, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT_GT, - STATE(4881), 9, + STATE(4814), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -621428,7 +614928,28 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5660), 15, + ACTIONS(5372), 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(5370), 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, @@ -621436,15 +614957,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_into, anon_sym_as, anon_sym_is, - [114713] = 33, + anon_sym_DASH_GT, + anon_sym_with, + [107648] = 29, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -621465,67 +614990,49 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4100), 1, + ACTIONS(4042), 1, anon_sym_DOT, - ACTIONS(4102), 1, + ACTIONS(4044), 1, anon_sym_DASH_GT, - ACTIONS(5264), 1, + ACTIONS(5257), 1, anon_sym_LPAREN, - ACTIONS(5302), 1, + ACTIONS(5300), 1, anon_sym_LBRACK, - ACTIONS(5304), 1, + ACTIONS(5302), 1, anon_sym_BANG, - ACTIONS(6475), 1, + ACTIONS(6495), 1, anon_sym_switch, - ACTIONS(6485), 1, - anon_sym_as, - ACTIONS(6489), 1, + ACTIONS(6509), 1, anon_sym_with, - ACTIONS(7597), 1, + ACTIONS(7001), 1, anon_sym_SLASH, - ACTIONS(7601), 1, + ACTIONS(7011), 1, anon_sym_GT_GT, - ACTIONS(7603), 1, + ACTIONS(7017), 1, anon_sym_DOT_DOT, - ACTIONS(7617), 1, - anon_sym_is, - STATE(2808), 1, + STATE(2759), 1, sym_bracketed_argument_list, - STATE(3487), 1, + STATE(3381), 1, sym_argument_list, - ACTIONS(5306), 2, + ACTIONS(5304), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7593), 2, + ACTIONS(6997), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7595), 2, + ACTIONS(6999), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7599), 2, + ACTIONS(7009), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7609), 2, + ACTIONS(5739), 5, anon_sym_LT, anon_sym_GT, - ACTIONS(7615), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(5664), 3, anon_sym_QMARK, anon_sym_PIPE, anon_sym_AMP, - ACTIONS(5660), 9, - 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, - STATE(4882), 9, + STATE(4815), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -621535,7 +615042,22 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [114837] = 37, + ACTIONS(5737), 14, + 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_as, + anon_sym_is, + [107765] = 26, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -621556,81 +615078,71 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4100), 1, + ACTIONS(4042), 1, anon_sym_DOT, - ACTIONS(4102), 1, + ACTIONS(4044), 1, anon_sym_DASH_GT, - ACTIONS(5264), 1, + ACTIONS(5257), 1, anon_sym_LPAREN, - ACTIONS(5302), 1, + ACTIONS(5300), 1, anon_sym_LBRACK, - ACTIONS(5304), 1, + ACTIONS(5302), 1, anon_sym_BANG, - ACTIONS(5664), 1, - anon_sym_QMARK, - ACTIONS(6475), 1, + ACTIONS(6495), 1, anon_sym_switch, - ACTIONS(6485), 1, - anon_sym_as, - ACTIONS(6489), 1, + ACTIONS(6509), 1, anon_sym_with, - ACTIONS(7597), 1, + ACTIONS(7001), 1, anon_sym_SLASH, - ACTIONS(7601), 1, - anon_sym_GT_GT, - ACTIONS(7603), 1, + ACTIONS(7017), 1, anon_sym_DOT_DOT, - ACTIONS(7611), 1, - anon_sym_AMP, - ACTIONS(7617), 1, - anon_sym_is, - ACTIONS(7619), 1, - anon_sym_CARET, - ACTIONS(7631), 1, - anon_sym_PIPE, - STATE(2808), 1, + STATE(2759), 1, sym_bracketed_argument_list, - STATE(3487), 1, + STATE(3381), 1, sym_argument_list, - ACTIONS(5306), 2, + ACTIONS(5304), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7593), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(7595), 2, + ACTIONS(6999), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7599), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - ACTIONS(7609), 2, + ACTIONS(5739), 8, anon_sym_LT, anon_sym_GT, - ACTIONS(7613), 2, + anon_sym_QMARK, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT_GT, + STATE(4816), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + ACTIONS(5737), 16, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7615), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5660), 6, 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, - 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, - [114969] = 40, + anon_sym_as, + anon_sym_is, + [107876] = 35, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -621651,74 +615163,70 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4100), 1, + ACTIONS(4042), 1, anon_sym_DOT, - ACTIONS(4102), 1, + ACTIONS(4044), 1, anon_sym_DASH_GT, - ACTIONS(5264), 1, + ACTIONS(5257), 1, anon_sym_LPAREN, - ACTIONS(5304), 1, - anon_sym_BANG, - ACTIONS(5573), 1, + ACTIONS(5300), 1, anon_sym_LBRACK, - ACTIONS(6343), 1, + ACTIONS(5302), 1, + anon_sym_BANG, + ACTIONS(6495), 1, anon_sym_switch, - ACTIONS(6357), 1, + ACTIONS(6509), 1, anon_sym_with, - ACTIONS(6813), 1, - anon_sym_as, - ACTIONS(7139), 1, - anon_sym_QMARK, - ACTIONS(7145), 1, + ACTIONS(7001), 1, anon_sym_SLASH, - ACTIONS(7147), 1, - anon_sym_CARET, - ACTIONS(7149), 1, - anon_sym_PIPE, - ACTIONS(7151), 1, + ACTIONS(7007), 1, anon_sym_AMP, - ACTIONS(7155), 1, + ACTIONS(7011), 1, anon_sym_GT_GT, - ACTIONS(7161), 1, + ACTIONS(7017), 1, anon_sym_DOT_DOT, - ACTIONS(7163), 1, - anon_sym_AMP_AMP, - ACTIONS(7165), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7167), 1, - anon_sym_QMARK_QMARK, - ACTIONS(7169), 1, + ACTIONS(7025), 1, + anon_sym_as, + ACTIONS(7027), 1, anon_sym_is, - STATE(2485), 1, + STATE(2759), 1, sym_bracketed_argument_list, - STATE(3487), 1, + STATE(3381), 1, sym_argument_list, - ACTIONS(5306), 2, + ACTIONS(5304), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7137), 2, + ACTIONS(5739), 2, + anon_sym_QMARK, + anon_sym_PIPE, + ACTIONS(6993), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7141), 2, + ACTIONS(6997), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7143), 2, + ACTIONS(6999), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7153), 2, + ACTIONS(7009), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7157), 2, + ACTIONS(7013), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7159), 2, + ACTIONS(7015), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(7633), 3, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_RPAREN, - STATE(4884), 9, + ACTIONS(5737), 8, + 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, + STATE(4817), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -621728,7 +615236,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [115107] = 38, + [108005] = 36, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -621749,72 +615257,71 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4100), 1, + ACTIONS(4042), 1, anon_sym_DOT, - ACTIONS(4102), 1, + ACTIONS(4044), 1, anon_sym_DASH_GT, - ACTIONS(5264), 1, + ACTIONS(5257), 1, anon_sym_LPAREN, - ACTIONS(5302), 1, + ACTIONS(5300), 1, anon_sym_LBRACK, - ACTIONS(5304), 1, + ACTIONS(5302), 1, anon_sym_BANG, - ACTIONS(5664), 1, - anon_sym_QMARK, - ACTIONS(6475), 1, + ACTIONS(6495), 1, anon_sym_switch, - ACTIONS(6485), 1, - anon_sym_as, - ACTIONS(6489), 1, + ACTIONS(6509), 1, anon_sym_with, - ACTIONS(7597), 1, + ACTIONS(7001), 1, anon_sym_SLASH, - ACTIONS(7601), 1, + ACTIONS(7003), 1, + anon_sym_CARET, + ACTIONS(7007), 1, + anon_sym_AMP, + ACTIONS(7011), 1, anon_sym_GT_GT, - ACTIONS(7603), 1, + ACTIONS(7017), 1, anon_sym_DOT_DOT, - ACTIONS(7611), 1, - anon_sym_AMP, - ACTIONS(7617), 1, + ACTIONS(7025), 1, + anon_sym_as, + ACTIONS(7027), 1, anon_sym_is, - ACTIONS(7619), 1, - anon_sym_CARET, - ACTIONS(7631), 1, - anon_sym_PIPE, - ACTIONS(7635), 1, - anon_sym_AMP_AMP, - STATE(2808), 1, + STATE(2759), 1, sym_bracketed_argument_list, - STATE(3487), 1, + STATE(3381), 1, sym_argument_list, - ACTIONS(5306), 2, + ACTIONS(5304), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7593), 2, + ACTIONS(5739), 2, + anon_sym_QMARK, + anon_sym_PIPE, + ACTIONS(6993), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(6997), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7595), 2, + ACTIONS(6999), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7599), 2, + ACTIONS(7009), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7609), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(7613), 2, + ACTIONS(7013), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7615), 2, + ACTIONS(7015), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5660), 5, + ACTIONS(5737), 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, - STATE(4885), 9, + STATE(4818), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -621824,7 +615331,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [115241] = 40, + [108136] = 34, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -621845,74 +615352,69 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4100), 1, + ACTIONS(4042), 1, anon_sym_DOT, - ACTIONS(4102), 1, + ACTIONS(4044), 1, anon_sym_DASH_GT, - ACTIONS(5264), 1, + ACTIONS(5257), 1, anon_sym_LPAREN, - ACTIONS(5302), 1, + ACTIONS(5300), 1, anon_sym_LBRACK, - ACTIONS(5304), 1, + ACTIONS(5302), 1, anon_sym_BANG, - ACTIONS(5664), 1, - anon_sym_QMARK, - ACTIONS(6475), 1, + ACTIONS(6495), 1, anon_sym_switch, - ACTIONS(6485), 1, - anon_sym_as, - ACTIONS(6489), 1, + ACTIONS(6509), 1, anon_sym_with, - ACTIONS(7597), 1, + ACTIONS(7001), 1, anon_sym_SLASH, - ACTIONS(7601), 1, + ACTIONS(7011), 1, anon_sym_GT_GT, - ACTIONS(7603), 1, + ACTIONS(7017), 1, anon_sym_DOT_DOT, - ACTIONS(7611), 1, - anon_sym_AMP, - ACTIONS(7617), 1, + ACTIONS(7025), 1, + anon_sym_as, + ACTIONS(7027), 1, anon_sym_is, - ACTIONS(7619), 1, - anon_sym_CARET, - ACTIONS(7631), 1, - anon_sym_PIPE, - ACTIONS(7635), 1, - anon_sym_AMP_AMP, - ACTIONS(7637), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7639), 1, - anon_sym_QMARK_QMARK, - STATE(2808), 1, + STATE(2759), 1, sym_bracketed_argument_list, - STATE(3487), 1, + STATE(3381), 1, sym_argument_list, - ACTIONS(5306), 2, + ACTIONS(5304), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7593), 2, + ACTIONS(6993), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(6997), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7595), 2, + ACTIONS(6999), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7599), 2, + ACTIONS(7009), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7609), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(7613), 2, + ACTIONS(7013), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7615), 2, + ACTIONS(7015), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5660), 3, + ACTIONS(5739), 3, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_AMP, + ACTIONS(5737), 8, + anon_sym_CARET, anon_sym_EQ_GT, + anon_sym_when, anon_sym_and, anon_sym_or, - STATE(4886), 9, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, + STATE(4819), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -621922,7 +615424,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [115379] = 26, + [108263] = 27, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -621943,44 +615445,45 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4100), 1, + ACTIONS(4042), 1, anon_sym_DOT, - ACTIONS(4102), 1, + ACTIONS(4044), 1, anon_sym_DASH_GT, - ACTIONS(5264), 1, + ACTIONS(5257), 1, anon_sym_LPAREN, - ACTIONS(5302), 1, + ACTIONS(5300), 1, anon_sym_LBRACK, - ACTIONS(5304), 1, + ACTIONS(5302), 1, anon_sym_BANG, - ACTIONS(6475), 1, + ACTIONS(6495), 1, anon_sym_switch, - ACTIONS(6489), 1, + ACTIONS(6509), 1, anon_sym_with, - ACTIONS(7564), 1, + ACTIONS(7001), 1, anon_sym_SLASH, - ACTIONS(7570), 1, + ACTIONS(7017), 1, anon_sym_DOT_DOT, - STATE(2808), 1, + STATE(2759), 1, sym_bracketed_argument_list, - STATE(3487), 1, + STATE(3381), 1, sym_argument_list, - ACTIONS(5306), 2, + ACTIONS(5304), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7562), 2, + ACTIONS(6997), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6999), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(5664), 8, + ACTIONS(5739), 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(4887), 9, + STATE(4820), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -621990,7 +615493,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5660), 15, + ACTIONS(5737), 16, anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT_GT, @@ -621998,15 +615501,16 @@ 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_by, anon_sym_as, anon_sym_is, - [115489] = 35, + [108376] = 33, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -622027,69 +615531,57 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4100), 1, + ACTIONS(4042), 1, anon_sym_DOT, - ACTIONS(4102), 1, + ACTIONS(4044), 1, anon_sym_DASH_GT, - ACTIONS(5264), 1, + ACTIONS(5257), 1, anon_sym_LPAREN, - ACTIONS(5302), 1, + ACTIONS(5300), 1, anon_sym_LBRACK, - ACTIONS(5304), 1, + ACTIONS(5302), 1, anon_sym_BANG, - ACTIONS(6475), 1, + ACTIONS(6495), 1, anon_sym_switch, - ACTIONS(6489), 1, + ACTIONS(6509), 1, anon_sym_with, - ACTIONS(7564), 1, + ACTIONS(7001), 1, anon_sym_SLASH, - ACTIONS(7568), 1, + ACTIONS(7011), 1, anon_sym_GT_GT, - ACTIONS(7570), 1, + ACTIONS(7017), 1, anon_sym_DOT_DOT, - ACTIONS(7643), 1, - anon_sym_AMP, - ACTIONS(7649), 1, + ACTIONS(7025), 1, anon_sym_as, - ACTIONS(7651), 1, + ACTIONS(7027), 1, anon_sym_is, - STATE(2808), 1, + STATE(2759), 1, sym_bracketed_argument_list, - STATE(3487), 1, + STATE(3381), 1, sym_argument_list, - ACTIONS(5306), 2, + ACTIONS(5304), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5664), 2, - anon_sym_QMARK, - anon_sym_PIPE, - ACTIONS(7560), 2, + ACTIONS(6993), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(6997), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7562), 2, + ACTIONS(6999), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7566), 2, + ACTIONS(7009), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7641), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(7645), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(7647), 2, + ACTIONS(7015), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5660), 7, - anon_sym_CARET, - anon_sym_and, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_QMARK_QMARK, - anon_sym_by, - STATE(4888), 9, + ACTIONS(5739), 3, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_AMP, + STATE(4821), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -622099,7 +615591,18 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [115617] = 40, + ACTIONS(5737), 10, + 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, + [108501] = 41, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -622120,74 +615623,76 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4443), 1, - anon_sym_DASH_GT, - ACTIONS(4533), 1, + ACTIONS(4092), 1, anon_sym_DOT, - ACTIONS(6574), 1, + ACTIONS(4094), 1, + anon_sym_DASH_GT, + ACTIONS(5227), 1, anon_sym_LPAREN, - ACTIONS(6619), 1, + ACTIONS(5236), 1, anon_sym_LBRACK, - ACTIONS(6625), 1, + ACTIONS(5238), 1, anon_sym_BANG, - ACTIONS(6649), 1, + ACTIONS(5735), 1, + anon_sym_in, + ACTIONS(6017), 1, anon_sym_switch, - ACTIONS(6663), 1, - anon_sym_with, - ACTIONS(6761), 1, + ACTIONS(6027), 1, anon_sym_as, - ACTIONS(6962), 1, + ACTIONS(6031), 1, + anon_sym_with, + ACTIONS(7373), 1, anon_sym_QMARK, - ACTIONS(6968), 1, + ACTIONS(7379), 1, anon_sym_SLASH, - ACTIONS(6970), 1, + ACTIONS(7381), 1, anon_sym_CARET, - ACTIONS(6972), 1, + ACTIONS(7383), 1, anon_sym_PIPE, - ACTIONS(6974), 1, + ACTIONS(7385), 1, anon_sym_AMP, - ACTIONS(6978), 1, + ACTIONS(7389), 1, anon_sym_GT_GT, - ACTIONS(6984), 1, + ACTIONS(7395), 1, anon_sym_DOT_DOT, - ACTIONS(6986), 1, + ACTIONS(7397), 1, anon_sym_AMP_AMP, - ACTIONS(6988), 1, + ACTIONS(7399), 1, anon_sym_PIPE_PIPE, - ACTIONS(6990), 1, + ACTIONS(7401), 1, anon_sym_QMARK_QMARK, - ACTIONS(6992), 1, + ACTIONS(7403), 1, anon_sym_is, - STATE(3173), 1, + STATE(2605), 1, sym_bracketed_argument_list, - STATE(4583), 1, + STATE(3348), 1, sym_argument_list, - ACTIONS(6627), 2, + ACTIONS(5240), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6960), 2, + ACTIONS(7371), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(6964), 2, + ACTIONS(7375), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6966), 2, + ACTIONS(7377), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(6976), 2, + ACTIONS(7387), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(6980), 2, + ACTIONS(7391), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6982), 2, + ACTIONS(7393), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5882), 3, - sym_interpolation_close_brace, - anon_sym_COLON, - anon_sym_COMMA, - STATE(4889), 9, + ACTIONS(5733), 3, + anon_sym_and, + anon_sym_or, + anon_sym_into, + STATE(4822), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -622197,7 +615702,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [115755] = 40, + [108642] = 41, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -622218,134 +615723,76 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4100), 1, + ACTIONS(4092), 1, anon_sym_DOT, - ACTIONS(4102), 1, + ACTIONS(4094), 1, anon_sym_DASH_GT, - ACTIONS(5264), 1, + ACTIONS(5227), 1, anon_sym_LPAREN, - ACTIONS(5302), 1, + ACTIONS(5236), 1, anon_sym_LBRACK, - ACTIONS(5304), 1, + ACTIONS(5238), 1, anon_sym_BANG, - ACTIONS(6475), 1, + ACTIONS(5867), 1, + anon_sym_in, + ACTIONS(6017), 1, anon_sym_switch, - ACTIONS(6485), 1, + ACTIONS(6027), 1, anon_sym_as, - ACTIONS(6489), 1, + ACTIONS(6031), 1, anon_sym_with, - ACTIONS(7597), 1, + ACTIONS(7373), 1, + anon_sym_QMARK, + ACTIONS(7379), 1, anon_sym_SLASH, - ACTIONS(7601), 1, - anon_sym_GT_GT, - ACTIONS(7603), 1, - anon_sym_DOT_DOT, - ACTIONS(7611), 1, - anon_sym_AMP, - ACTIONS(7617), 1, - anon_sym_is, - ACTIONS(7619), 1, + ACTIONS(7381), 1, anon_sym_CARET, - ACTIONS(7631), 1, + ACTIONS(7383), 1, anon_sym_PIPE, - ACTIONS(7635), 1, + ACTIONS(7385), 1, + anon_sym_AMP, + ACTIONS(7389), 1, + anon_sym_GT_GT, + ACTIONS(7395), 1, + anon_sym_DOT_DOT, + ACTIONS(7397), 1, anon_sym_AMP_AMP, - ACTIONS(7637), 1, + ACTIONS(7399), 1, anon_sym_PIPE_PIPE, - ACTIONS(7639), 1, + ACTIONS(7401), 1, anon_sym_QMARK_QMARK, - ACTIONS(7653), 1, - anon_sym_QMARK, - STATE(2808), 1, + ACTIONS(7403), 1, + anon_sym_is, + STATE(2605), 1, sym_bracketed_argument_list, - STATE(3487), 1, + STATE(3348), 1, sym_argument_list, - ACTIONS(5306), 2, + ACTIONS(5240), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7593), 2, + ACTIONS(7371), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(7375), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7595), 2, + ACTIONS(7377), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7599), 2, + ACTIONS(7387), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7609), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(7613), 2, + ACTIONS(7391), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7615), 2, + ACTIONS(7393), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5858), 3, - anon_sym_EQ_GT, + ACTIONS(5865), 3, anon_sym_and, anon_sym_or, - 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, - [115893] = 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(4100), 1, - anon_sym_DOT, - ACTIONS(4102), 1, - anon_sym_DASH_GT, - ACTIONS(5264), 1, - anon_sym_LPAREN, - ACTIONS(5302), 1, - anon_sym_LBRACK, - ACTIONS(5304), 1, - anon_sym_BANG, - ACTIONS(7603), 1, - anon_sym_DOT_DOT, - STATE(2808), 1, - sym_bracketed_argument_list, - STATE(3487), 1, - sym_argument_list, - ACTIONS(5306), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5733), 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(4891), 9, + anon_sym_into, + STATE(4823), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -622355,27 +615802,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5731), 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_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_as, - anon_sym_is, - anon_sym_with, - [115995] = 40, + [108783] = 41, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -622396,74 +615823,76 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4100), 1, + ACTIONS(4092), 1, anon_sym_DOT, - ACTIONS(4102), 1, + ACTIONS(4094), 1, anon_sym_DASH_GT, - ACTIONS(5264), 1, + ACTIONS(5227), 1, anon_sym_LPAREN, - ACTIONS(5302), 1, + ACTIONS(5236), 1, anon_sym_LBRACK, - ACTIONS(5304), 1, + ACTIONS(5238), 1, anon_sym_BANG, - ACTIONS(6475), 1, + ACTIONS(5857), 1, + anon_sym_in, + ACTIONS(6017), 1, anon_sym_switch, - ACTIONS(6485), 1, + ACTIONS(6027), 1, anon_sym_as, - ACTIONS(6489), 1, + ACTIONS(6031), 1, anon_sym_with, - ACTIONS(7597), 1, + ACTIONS(7373), 1, + anon_sym_QMARK, + ACTIONS(7379), 1, anon_sym_SLASH, - ACTIONS(7601), 1, - anon_sym_GT_GT, - ACTIONS(7603), 1, - anon_sym_DOT_DOT, - ACTIONS(7611), 1, - anon_sym_AMP, - ACTIONS(7617), 1, - anon_sym_is, - ACTIONS(7619), 1, + ACTIONS(7381), 1, anon_sym_CARET, - ACTIONS(7631), 1, + ACTIONS(7383), 1, anon_sym_PIPE, - ACTIONS(7635), 1, + ACTIONS(7385), 1, + anon_sym_AMP, + ACTIONS(7389), 1, + anon_sym_GT_GT, + ACTIONS(7395), 1, + anon_sym_DOT_DOT, + ACTIONS(7397), 1, anon_sym_AMP_AMP, - ACTIONS(7637), 1, + ACTIONS(7399), 1, anon_sym_PIPE_PIPE, - ACTIONS(7639), 1, + ACTIONS(7401), 1, anon_sym_QMARK_QMARK, - ACTIONS(7653), 1, - anon_sym_QMARK, - STATE(2808), 1, + ACTIONS(7403), 1, + anon_sym_is, + STATE(2605), 1, sym_bracketed_argument_list, - STATE(3487), 1, + STATE(3348), 1, sym_argument_list, - ACTIONS(5306), 2, + ACTIONS(5240), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7593), 2, + ACTIONS(7371), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(7375), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7595), 2, + ACTIONS(7377), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7599), 2, + ACTIONS(7387), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7609), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(7613), 2, + ACTIONS(7391), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7615), 2, + ACTIONS(7393), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5864), 3, - anon_sym_EQ_GT, + ACTIONS(5855), 3, anon_sym_and, anon_sym_or, - STATE(4892), 9, + anon_sym_into, + STATE(4824), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -622473,7 +615902,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [116133] = 40, + [108924] = 37, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -622494,74 +615923,72 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4100), 1, + ACTIONS(4042), 1, anon_sym_DOT, - ACTIONS(4102), 1, + ACTIONS(4044), 1, anon_sym_DASH_GT, - ACTIONS(5264), 1, + ACTIONS(5257), 1, anon_sym_LPAREN, - ACTIONS(5302), 1, + ACTIONS(5300), 1, anon_sym_LBRACK, - ACTIONS(5304), 1, + ACTIONS(5302), 1, anon_sym_BANG, - ACTIONS(6475), 1, + ACTIONS(5739), 1, + anon_sym_QMARK, + ACTIONS(6495), 1, anon_sym_switch, - ACTIONS(6485), 1, - anon_sym_as, - ACTIONS(6489), 1, + ACTIONS(6509), 1, anon_sym_with, - ACTIONS(7597), 1, + ACTIONS(7001), 1, anon_sym_SLASH, - ACTIONS(7601), 1, + ACTIONS(7003), 1, + anon_sym_CARET, + ACTIONS(7005), 1, + anon_sym_PIPE, + ACTIONS(7007), 1, + anon_sym_AMP, + ACTIONS(7011), 1, anon_sym_GT_GT, - ACTIONS(7603), 1, + ACTIONS(7017), 1, anon_sym_DOT_DOT, - ACTIONS(7611), 1, - anon_sym_AMP, - ACTIONS(7617), 1, + ACTIONS(7025), 1, + anon_sym_as, + ACTIONS(7027), 1, anon_sym_is, - ACTIONS(7619), 1, - anon_sym_CARET, - ACTIONS(7631), 1, - anon_sym_PIPE, - ACTIONS(7635), 1, - anon_sym_AMP_AMP, - ACTIONS(7637), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7639), 1, - anon_sym_QMARK_QMARK, - ACTIONS(7653), 1, - anon_sym_QMARK, - STATE(2808), 1, + STATE(2759), 1, sym_bracketed_argument_list, - STATE(3487), 1, + STATE(3381), 1, sym_argument_list, - ACTIONS(5306), 2, + ACTIONS(5304), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7593), 2, + ACTIONS(6993), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(6997), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7595), 2, + ACTIONS(6999), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7599), 2, + ACTIONS(7009), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7609), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(7613), 2, + ACTIONS(7013), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7615), 2, + ACTIONS(7015), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5072), 3, + ACTIONS(5737), 7, anon_sym_EQ_GT, + anon_sym_when, anon_sym_and, anon_sym_or, - STATE(4893), 9, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, + STATE(4825), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -622571,7 +615998,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [116271] = 40, + [109057] = 22, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -622592,84 +616019,67 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4100), 1, + ACTIONS(4092), 1, anon_sym_DOT, - ACTIONS(4102), 1, + ACTIONS(4094), 1, anon_sym_DASH_GT, - ACTIONS(5264), 1, + ACTIONS(5227), 1, anon_sym_LPAREN, - ACTIONS(5302), 1, + ACTIONS(5236), 1, anon_sym_LBRACK, - ACTIONS(5304), 1, + ACTIONS(5238), 1, anon_sym_BANG, - ACTIONS(6475), 1, - anon_sym_switch, - ACTIONS(6485), 1, - anon_sym_as, - ACTIONS(6489), 1, - anon_sym_with, - ACTIONS(7597), 1, - anon_sym_SLASH, - ACTIONS(7601), 1, - anon_sym_GT_GT, - ACTIONS(7603), 1, + ACTIONS(7395), 1, anon_sym_DOT_DOT, - ACTIONS(7611), 1, - anon_sym_AMP, - ACTIONS(7617), 1, - anon_sym_is, - ACTIONS(7619), 1, - anon_sym_CARET, - ACTIONS(7631), 1, - anon_sym_PIPE, - ACTIONS(7635), 1, - anon_sym_AMP_AMP, - ACTIONS(7637), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7639), 1, - anon_sym_QMARK_QMARK, - ACTIONS(7653), 1, - anon_sym_QMARK, - STATE(2808), 1, + STATE(2605), 1, sym_bracketed_argument_list, - STATE(3487), 1, + STATE(3348), 1, sym_argument_list, - ACTIONS(5306), 2, + ACTIONS(5240), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7593), 2, + STATE(4826), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + ACTIONS(1161), 10, + anon_sym_LT, + anon_sym_GT, + anon_sym_in, + anon_sym_QMARK, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7595), 2, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT_GT, + ACTIONS(1147), 19, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7599), 2, + anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7609), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(7613), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7615), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5882), 3, - anon_sym_EQ_GT, + anon_sym_switch, anon_sym_and, anon_sym_or, - STATE(4894), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - [116409] = 40, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, + anon_sym_into, + anon_sym_as, + anon_sym_is, + anon_sym_with, + [109160] = 38, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -622690,74 +616100,73 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4100), 1, + ACTIONS(4042), 1, anon_sym_DOT, - ACTIONS(4102), 1, + ACTIONS(4044), 1, anon_sym_DASH_GT, - ACTIONS(5264), 1, + ACTIONS(5257), 1, anon_sym_LPAREN, - ACTIONS(5302), 1, + ACTIONS(5300), 1, anon_sym_LBRACK, - ACTIONS(5304), 1, + ACTIONS(5302), 1, anon_sym_BANG, - ACTIONS(6475), 1, + ACTIONS(5739), 1, + anon_sym_QMARK, + ACTIONS(6495), 1, anon_sym_switch, - ACTIONS(6485), 1, - anon_sym_as, - ACTIONS(6489), 1, + ACTIONS(6509), 1, anon_sym_with, - ACTIONS(7597), 1, + ACTIONS(7001), 1, anon_sym_SLASH, - ACTIONS(7601), 1, - anon_sym_GT_GT, - ACTIONS(7603), 1, - anon_sym_DOT_DOT, - ACTIONS(7611), 1, - anon_sym_AMP, - ACTIONS(7617), 1, - anon_sym_is, - ACTIONS(7619), 1, + ACTIONS(7003), 1, anon_sym_CARET, - ACTIONS(7631), 1, + ACTIONS(7005), 1, anon_sym_PIPE, - ACTIONS(7635), 1, + ACTIONS(7007), 1, + anon_sym_AMP, + ACTIONS(7011), 1, + anon_sym_GT_GT, + ACTIONS(7017), 1, + anon_sym_DOT_DOT, + ACTIONS(7019), 1, anon_sym_AMP_AMP, - ACTIONS(7637), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7639), 1, - anon_sym_QMARK_QMARK, - ACTIONS(7653), 1, - anon_sym_QMARK, - STATE(2808), 1, + ACTIONS(7025), 1, + anon_sym_as, + ACTIONS(7027), 1, + anon_sym_is, + STATE(2759), 1, sym_bracketed_argument_list, - STATE(3487), 1, + STATE(3381), 1, sym_argument_list, - ACTIONS(5306), 2, + ACTIONS(5304), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7593), 2, + ACTIONS(6993), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(6997), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7595), 2, + ACTIONS(6999), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7599), 2, + ACTIONS(7009), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7609), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(7613), 2, + ACTIONS(7013), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7615), 2, + ACTIONS(7015), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5899), 3, + ACTIONS(5737), 6, anon_sym_EQ_GT, + anon_sym_when, anon_sym_and, anon_sym_or, - STATE(4895), 9, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, + STATE(4827), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -622767,7 +616176,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [116547] = 40, + [109295] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -622788,74 +616197,75 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4100), 1, + ACTIONS(4042), 1, anon_sym_DOT, - ACTIONS(4102), 1, + ACTIONS(4044), 1, anon_sym_DASH_GT, - ACTIONS(5264), 1, + ACTIONS(5257), 1, anon_sym_LPAREN, - ACTIONS(5304), 1, - anon_sym_BANG, - ACTIONS(5573), 1, + ACTIONS(5300), 1, anon_sym_LBRACK, - ACTIONS(6343), 1, + ACTIONS(5302), 1, + anon_sym_BANG, + ACTIONS(5739), 1, + anon_sym_QMARK, + ACTIONS(6495), 1, anon_sym_switch, - ACTIONS(6357), 1, + ACTIONS(6509), 1, anon_sym_with, - ACTIONS(6813), 1, - anon_sym_as, - ACTIONS(7139), 1, - anon_sym_QMARK, - ACTIONS(7145), 1, + ACTIONS(7001), 1, anon_sym_SLASH, - ACTIONS(7147), 1, + ACTIONS(7003), 1, anon_sym_CARET, - ACTIONS(7149), 1, + ACTIONS(7005), 1, anon_sym_PIPE, - ACTIONS(7151), 1, + ACTIONS(7007), 1, anon_sym_AMP, - ACTIONS(7155), 1, + ACTIONS(7011), 1, anon_sym_GT_GT, - ACTIONS(7161), 1, + ACTIONS(7017), 1, anon_sym_DOT_DOT, - ACTIONS(7163), 1, + ACTIONS(7019), 1, anon_sym_AMP_AMP, - ACTIONS(7165), 1, + ACTIONS(7021), 1, anon_sym_PIPE_PIPE, - ACTIONS(7167), 1, + ACTIONS(7023), 1, anon_sym_QMARK_QMARK, - ACTIONS(7169), 1, + ACTIONS(7025), 1, + anon_sym_as, + ACTIONS(7027), 1, anon_sym_is, - STATE(2485), 1, + STATE(2759), 1, sym_bracketed_argument_list, - STATE(3487), 1, + STATE(3381), 1, sym_argument_list, - ACTIONS(5306), 2, + ACTIONS(5304), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7137), 2, + ACTIONS(6993), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7141), 2, + ACTIONS(6997), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7143), 2, + ACTIONS(6999), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7153), 2, + ACTIONS(7009), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7157), 2, + ACTIONS(7013), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7159), 2, + ACTIONS(7015), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(7633), 3, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_RPAREN, - STATE(4896), 9, + ACTIONS(5737), 4, + anon_sym_EQ_GT, + anon_sym_when, + anon_sym_and, + anon_sym_or, + STATE(4828), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -622865,7 +616275,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [116685] = 36, + [109434] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -622886,80 +616296,58 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4100), 1, - anon_sym_DOT, - ACTIONS(4102), 1, - anon_sym_DASH_GT, - ACTIONS(5264), 1, - anon_sym_LPAREN, - ACTIONS(5302), 1, - anon_sym_LBRACK, - ACTIONS(5304), 1, + STATE(4829), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + ACTIONS(5398), 11, + anon_sym_LT, + anon_sym_GT, + anon_sym_QMARK, anon_sym_BANG, - ACTIONS(6475), 1, - anon_sym_switch, - ACTIONS(6489), 1, - anon_sym_with, - ACTIONS(7564), 1, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_SLASH, - ACTIONS(7568), 1, - anon_sym_GT_GT, - ACTIONS(7570), 1, - anon_sym_DOT_DOT, - ACTIONS(7643), 1, + anon_sym_PIPE, anon_sym_AMP, - ACTIONS(7649), 1, - anon_sym_as, - ACTIONS(7651), 1, - anon_sym_is, - ACTIONS(7655), 1, - anon_sym_CARET, - STATE(2808), 1, - sym_bracketed_argument_list, - STATE(3487), 1, - sym_argument_list, - ACTIONS(5306), 2, + anon_sym_GT_GT, + anon_sym_DOT, + ACTIONS(5396), 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(5664), 2, - anon_sym_QMARK, - anon_sym_PIPE, - ACTIONS(7560), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(7562), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7566), 2, + anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7641), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(7645), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7647), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5660), 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, - anon_sym_by, - 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, - [116815] = 27, + anon_sym_into, + anon_sym_as, + anon_sym_is, + anon_sym_DASH_GT, + anon_sym_with, + [109519] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -622980,38 +616368,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(3881), 1, - anon_sym_LBRACE, - ACTIONS(3897), 1, - sym_discard, - ACTIONS(6823), 1, - sym__identifier_token, - ACTIONS(6827), 1, - anon_sym_LPAREN, - ACTIONS(7588), 1, - anon_sym_COMMA, - ACTIONS(7657), 1, - anon_sym_RPAREN, - STATE(2571), 1, - sym__reserved_identifier, - STATE(3463), 1, - sym_parenthesized_variable_designation, - STATE(3492), 1, - sym__variable_designation, - STATE(5279), 1, - sym_positional_pattern_clause, - STATE(5682), 1, - sym_property_pattern_clause, - STATE(6412), 1, - sym_identifier, - STATE(7311), 1, - sym_parameter_list, - STATE(7536), 1, - sym__lambda_parameters, - ACTIONS(3883), 2, - anon_sym_and, - anon_sym_or, - STATE(4898), 9, + STATE(4830), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -623021,122 +616378,48 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(6825), 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, - [116927] = 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(4100), 1, - anon_sym_DOT, - ACTIONS(4102), 1, - anon_sym_DASH_GT, - ACTIONS(5264), 1, - anon_sym_LPAREN, - ACTIONS(5302), 1, - anon_sym_LBRACK, - ACTIONS(5304), 1, + ACTIONS(5404), 11, + anon_sym_LT, + anon_sym_GT, + anon_sym_QMARK, anon_sym_BANG, - ACTIONS(6475), 1, - anon_sym_switch, - ACTIONS(6489), 1, - anon_sym_with, - ACTIONS(7564), 1, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_SLASH, - ACTIONS(7568), 1, + anon_sym_PIPE, + anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(7570), 1, - anon_sym_DOT_DOT, - ACTIONS(7649), 1, - anon_sym_as, - ACTIONS(7651), 1, - anon_sym_is, - STATE(2808), 1, - sym_bracketed_argument_list, - STATE(3487), 1, - sym_argument_list, - ACTIONS(5306), 2, + anon_sym_DOT, + ACTIONS(5402), 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(7560), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(7562), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7566), 2, + anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7641), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(7645), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7647), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5664), 3, - anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_AMP, - ACTIONS(5660), 7, - anon_sym_CARET, + 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, - STATE(4899), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - [117053] = 40, + anon_sym_into, + anon_sym_as, + anon_sym_is, + anon_sym_DASH_GT, + anon_sym_with, + [109604] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -623157,84 +616440,58 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4100), 1, - anon_sym_DOT, - ACTIONS(4102), 1, - anon_sym_DASH_GT, - ACTIONS(5264), 1, - anon_sym_LPAREN, - ACTIONS(5304), 1, + STATE(4831), 9, + sym_preproc_region, + sym_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, anon_sym_BANG, - ACTIONS(5573), 1, - anon_sym_LBRACK, - ACTIONS(6343), 1, - anon_sym_switch, - ACTIONS(6357), 1, - anon_sym_with, - ACTIONS(6813), 1, - anon_sym_as, - ACTIONS(7169), 1, - anon_sym_is, - ACTIONS(7442), 1, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_SLASH, - ACTIONS(7444), 1, - anon_sym_CARET, - ACTIONS(7446), 1, anon_sym_PIPE, - ACTIONS(7448), 1, anon_sym_AMP, - ACTIONS(7452), 1, anon_sym_GT_GT, - ACTIONS(7458), 1, - anon_sym_DOT_DOT, - ACTIONS(7621), 1, - anon_sym_AMP_AMP, - ACTIONS(7623), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7625), 1, - anon_sym_QMARK_QMARK, - ACTIONS(7659), 1, - anon_sym_QMARK, - STATE(2485), 1, - sym_bracketed_argument_list, - STATE(3487), 1, - sym_argument_list, - ACTIONS(5306), 2, + 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, - ACTIONS(7436), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(7438), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(7440), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7450), 2, + anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7454), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7456), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5858), 3, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RBRACE, - STATE(4900), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - [117191] = 40, + 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, + [109689] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -623255,74 +616512,75 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4100), 1, + ACTIONS(4042), 1, anon_sym_DOT, - ACTIONS(4102), 1, + ACTIONS(4044), 1, anon_sym_DASH_GT, - ACTIONS(5264), 1, + ACTIONS(5257), 1, anon_sym_LPAREN, - ACTIONS(5304), 1, + ACTIONS(5302), 1, anon_sym_BANG, - ACTIONS(5573), 1, + ACTIONS(5549), 1, anon_sym_LBRACK, - ACTIONS(6343), 1, + ACTIONS(6355), 1, anon_sym_switch, - ACTIONS(6357), 1, + ACTIONS(6369), 1, anon_sym_with, - ACTIONS(6813), 1, + ACTIONS(6811), 1, anon_sym_as, - ACTIONS(7169), 1, + ACTIONS(6813), 1, anon_sym_is, - ACTIONS(7442), 1, + ACTIONS(6985), 1, anon_sym_SLASH, - ACTIONS(7444), 1, + ACTIONS(6989), 1, + anon_sym_GT_GT, + ACTIONS(6991), 1, + anon_sym_DOT_DOT, + ACTIONS(7099), 1, + anon_sym_QMARK, + ACTIONS(7101), 1, anon_sym_CARET, - ACTIONS(7446), 1, + ACTIONS(7103), 1, anon_sym_PIPE, - ACTIONS(7448), 1, + ACTIONS(7105), 1, anon_sym_AMP, - ACTIONS(7452), 1, - anon_sym_GT_GT, - ACTIONS(7458), 1, - anon_sym_DOT_DOT, - ACTIONS(7621), 1, + ACTIONS(7111), 1, anon_sym_AMP_AMP, - ACTIONS(7623), 1, + ACTIONS(7113), 1, anon_sym_PIPE_PIPE, - ACTIONS(7625), 1, + ACTIONS(7115), 1, anon_sym_QMARK_QMARK, - ACTIONS(7659), 1, - anon_sym_QMARK, - STATE(2485), 1, + STATE(2467), 1, sym_bracketed_argument_list, - STATE(3487), 1, + STATE(3381), 1, sym_argument_list, - ACTIONS(5306), 2, + ACTIONS(5304), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7436), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(7438), 2, + ACTIONS(6981), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7440), 2, + ACTIONS(6983), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7450), 2, + ACTIONS(6987), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7454), 2, + ACTIONS(7097), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(7107), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7456), 2, + ACTIONS(7109), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5864), 3, + ACTIONS(5709), 4, anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RBRACE, - STATE(4901), 9, + aux_sym_preproc_if_token3, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + STATE(4832), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -623332,7 +616590,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [117329] = 42, + [109828] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -623353,76 +616611,74 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4100), 1, + ACTIONS(4042), 1, anon_sym_DOT, - ACTIONS(4102), 1, + ACTIONS(4044), 1, anon_sym_DASH_GT, - ACTIONS(5264), 1, + ACTIONS(5257), 1, anon_sym_LPAREN, - ACTIONS(5304), 1, - anon_sym_BANG, - ACTIONS(5573), 1, + ACTIONS(5300), 1, anon_sym_LBRACK, - ACTIONS(6343), 1, + ACTIONS(5302), 1, + anon_sym_BANG, + ACTIONS(6495), 1, anon_sym_switch, - ACTIONS(6357), 1, - anon_sym_with, - ACTIONS(6813), 1, + ACTIONS(6505), 1, anon_sym_as, - ACTIONS(7139), 1, + ACTIONS(6509), 1, + anon_sym_with, + ACTIONS(7412), 1, anon_sym_QMARK, - ACTIONS(7145), 1, + ACTIONS(7418), 1, anon_sym_SLASH, - ACTIONS(7147), 1, + ACTIONS(7420), 1, anon_sym_CARET, - ACTIONS(7149), 1, + ACTIONS(7422), 1, anon_sym_PIPE, - ACTIONS(7151), 1, + ACTIONS(7424), 1, anon_sym_AMP, - ACTIONS(7155), 1, + ACTIONS(7428), 1, anon_sym_GT_GT, - ACTIONS(7161), 1, + ACTIONS(7434), 1, anon_sym_DOT_DOT, - ACTIONS(7163), 1, + ACTIONS(7436), 1, anon_sym_AMP_AMP, - ACTIONS(7165), 1, + ACTIONS(7438), 1, anon_sym_PIPE_PIPE, - ACTIONS(7167), 1, + ACTIONS(7440), 1, anon_sym_QMARK_QMARK, - ACTIONS(7169), 1, + ACTIONS(7442), 1, anon_sym_is, - ACTIONS(7661), 1, - anon_sym_COMMA, - ACTIONS(7663), 1, - anon_sym_RBRACE, - STATE(2485), 1, + STATE(2759), 1, sym_bracketed_argument_list, - STATE(3487), 1, + STATE(3381), 1, sym_argument_list, - STATE(6846), 1, - aux_sym__for_statement_conditions_repeat1, - ACTIONS(5306), 2, + ACTIONS(5304), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7137), 2, + ACTIONS(7410), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7141), 2, + ACTIONS(7414), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7143), 2, + ACTIONS(7416), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7153), 2, + ACTIONS(7426), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7157), 2, + ACTIONS(7430), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7159), 2, + ACTIONS(7432), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - STATE(4902), 9, + ACTIONS(5709), 3, + anon_sym_EQ_GT, + anon_sym_and, + anon_sym_or, + STATE(4833), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -623432,7 +616688,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [117471] = 40, + [109966] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -623453,74 +616709,74 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4100), 1, + ACTIONS(4042), 1, anon_sym_DOT, - ACTIONS(4102), 1, + ACTIONS(4044), 1, anon_sym_DASH_GT, - ACTIONS(5264), 1, + ACTIONS(5257), 1, anon_sym_LPAREN, - ACTIONS(5302), 1, + ACTIONS(5300), 1, anon_sym_LBRACK, - ACTIONS(5304), 1, + ACTIONS(5302), 1, anon_sym_BANG, - ACTIONS(6475), 1, + ACTIONS(5739), 1, + anon_sym_QMARK, + ACTIONS(6495), 1, anon_sym_switch, - ACTIONS(6485), 1, - anon_sym_as, - ACTIONS(6489), 1, + ACTIONS(6509), 1, anon_sym_with, - ACTIONS(7536), 1, + ACTIONS(7450), 1, anon_sym_SLASH, - ACTIONS(7540), 1, - anon_sym_GT_GT, - ACTIONS(7542), 1, - anon_sym_DOT_DOT, - ACTIONS(7550), 1, - anon_sym_AMP, - ACTIONS(7556), 1, - anon_sym_is, - ACTIONS(7558), 1, + ACTIONS(7452), 1, anon_sym_CARET, - ACTIONS(7572), 1, + ACTIONS(7454), 1, anon_sym_PIPE, - ACTIONS(7574), 1, + ACTIONS(7456), 1, + anon_sym_AMP, + ACTIONS(7460), 1, + anon_sym_GT_GT, + ACTIONS(7466), 1, + anon_sym_DOT_DOT, + ACTIONS(7468), 1, anon_sym_AMP_AMP, - ACTIONS(7576), 1, + ACTIONS(7470), 1, anon_sym_PIPE_PIPE, - ACTIONS(7578), 1, + ACTIONS(7472), 1, anon_sym_QMARK_QMARK, - ACTIONS(7665), 1, - anon_sym_QMARK, - STATE(2808), 1, + ACTIONS(7474), 1, + anon_sym_as, + ACTIONS(7476), 1, + anon_sym_is, + STATE(2759), 1, sym_bracketed_argument_list, - STATE(3487), 1, + STATE(3381), 1, sym_argument_list, - ACTIONS(5306), 2, + ACTIONS(5304), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7532), 2, + ACTIONS(7444), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(7446), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7534), 2, + ACTIONS(7448), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7538), 2, + ACTIONS(7458), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7548), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(7552), 2, + ACTIONS(7462), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7554), 2, + ACTIONS(7464), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5858), 3, - anon_sym_COLON, + ACTIONS(5737), 3, + anon_sym_in, anon_sym_and, anon_sym_or, - STATE(4903), 9, + STATE(4834), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -623530,7 +616786,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [117609] = 27, + [110104] = 27, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -623551,38 +616807,38 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(3881), 1, + ACTIONS(3861), 1, anon_sym_LBRACE, - ACTIONS(3897), 1, + ACTIONS(3877), 1, sym_discard, - ACTIONS(6823), 1, + ACTIONS(6969), 1, sym__identifier_token, - ACTIONS(6827), 1, + ACTIONS(6973), 1, anon_sym_LPAREN, - ACTIONS(7588), 1, + ACTIONS(7478), 1, anon_sym_COMMA, - ACTIONS(7667), 1, + ACTIONS(7481), 1, anon_sym_RPAREN, - STATE(2571), 1, + STATE(2565), 1, sym__reserved_identifier, - STATE(3463), 1, + STATE(3352), 1, sym_parenthesized_variable_designation, - STATE(3492), 1, + STATE(3422), 1, sym__variable_designation, - STATE(5279), 1, + STATE(5154), 1, sym_positional_pattern_clause, - STATE(5682), 1, + STATE(5691), 1, sym_property_pattern_clause, - STATE(6412), 1, + STATE(6424), 1, sym_identifier, - STATE(7311), 1, - sym_parameter_list, - STATE(7536), 1, + STATE(7378), 1, sym__lambda_parameters, - ACTIONS(3883), 2, + STATE(7531), 1, + sym_parameter_list, + ACTIONS(3867), 2, anon_sym_and, anon_sym_or, - STATE(4904), 9, + STATE(4835), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -623592,7 +616848,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(6825), 22, + ACTIONS(6971), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -623615,7 +616871,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [117721] = 22, + [110216] = 29, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -623636,36 +616892,49 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4100), 1, + ACTIONS(4427), 1, anon_sym_DOT, - ACTIONS(4102), 1, + ACTIONS(4429), 1, anon_sym_DASH_GT, - ACTIONS(5264), 1, + ACTIONS(6557), 1, anon_sym_LPAREN, - ACTIONS(5302), 1, + ACTIONS(6607), 1, anon_sym_LBRACK, - ACTIONS(5304), 1, + ACTIONS(6613), 1, anon_sym_BANG, - ACTIONS(7542), 1, + ACTIONS(6637), 1, + anon_sym_switch, + ACTIONS(6651), 1, + anon_sym_with, + ACTIONS(6719), 1, + anon_sym_SLASH, + ACTIONS(6729), 1, + anon_sym_GT_GT, + ACTIONS(6735), 1, anon_sym_DOT_DOT, - STATE(2808), 1, + STATE(3188), 1, sym_bracketed_argument_list, - STATE(3487), 1, + STATE(4584), 1, sym_argument_list, - ACTIONS(5306), 2, + ACTIONS(6615), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5733), 9, + ACTIONS(6715), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6717), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(6727), 2, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + ACTIONS(5739), 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(4905), 9, + STATE(4836), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -623675,27 +616944,21 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5731), 19, + ACTIONS(5737), 13, + sym_interpolation_close_brace, anon_sym_COLON, - anon_sym_STAR, - anon_sym_PERCENT, + 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_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, - [117823] = 27, + [110332] = 27, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -623716,38 +616979,38 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(3881), 1, + ACTIONS(3861), 1, anon_sym_LBRACE, - ACTIONS(3897), 1, + ACTIONS(3877), 1, sym_discard, - ACTIONS(6823), 1, + ACTIONS(6969), 1, sym__identifier_token, - ACTIONS(6827), 1, + ACTIONS(6973), 1, anon_sym_LPAREN, - ACTIONS(7588), 1, + ACTIONS(7478), 1, anon_sym_COMMA, - ACTIONS(7669), 1, + ACTIONS(7483), 1, anon_sym_RPAREN, - STATE(2571), 1, + STATE(2565), 1, sym__reserved_identifier, - STATE(3463), 1, + STATE(3352), 1, sym_parenthesized_variable_designation, - STATE(3492), 1, + STATE(3422), 1, sym__variable_designation, - STATE(5279), 1, + STATE(5154), 1, sym_positional_pattern_clause, - STATE(5682), 1, + STATE(5691), 1, sym_property_pattern_clause, - STATE(6412), 1, + STATE(6424), 1, sym_identifier, - STATE(7311), 1, - sym_parameter_list, - STATE(7536), 1, + STATE(7378), 1, sym__lambda_parameters, - ACTIONS(3883), 2, + STATE(7531), 1, + sym_parameter_list, + ACTIONS(3867), 2, anon_sym_and, anon_sym_or, - STATE(4906), 9, + STATE(4837), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -623757,7 +617020,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(6825), 22, + ACTIONS(6971), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -623780,7 +617043,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [117935] = 42, + [110444] = 27, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -623801,76 +617064,38 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(2697), 1, - anon_sym_COMMA, - ACTIONS(4100), 1, - anon_sym_DOT, - ACTIONS(4102), 1, - anon_sym_DASH_GT, - ACTIONS(5264), 1, + ACTIONS(3861), 1, + anon_sym_LBRACE, + ACTIONS(3877), 1, + sym_discard, + ACTIONS(6969), 1, + sym__identifier_token, + ACTIONS(6973), 1, anon_sym_LPAREN, - ACTIONS(5304), 1, - anon_sym_BANG, - ACTIONS(5573), 1, - anon_sym_LBRACK, - ACTIONS(6343), 1, - anon_sym_switch, - ACTIONS(6357), 1, - anon_sym_with, - ACTIONS(6813), 1, - anon_sym_as, - ACTIONS(7139), 1, - anon_sym_QMARK, - ACTIONS(7145), 1, - anon_sym_SLASH, - ACTIONS(7147), 1, - anon_sym_CARET, - ACTIONS(7149), 1, - anon_sym_PIPE, - ACTIONS(7151), 1, - anon_sym_AMP, - ACTIONS(7155), 1, - anon_sym_GT_GT, - ACTIONS(7161), 1, - anon_sym_DOT_DOT, - ACTIONS(7163), 1, - anon_sym_AMP_AMP, - ACTIONS(7165), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7167), 1, - anon_sym_QMARK_QMARK, - ACTIONS(7169), 1, - anon_sym_is, - ACTIONS(7671), 1, - anon_sym_RBRACK, - STATE(2485), 1, - sym_bracketed_argument_list, - STATE(3487), 1, - sym_argument_list, - STATE(6870), 1, - aux_sym_array_rank_specifier_repeat1, - ACTIONS(5306), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(7137), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(7141), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(7143), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(7153), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - ACTIONS(7157), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(7159), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - STATE(4907), 9, + ACTIONS(7478), 1, + anon_sym_COMMA, + ACTIONS(7485), 1, + anon_sym_RPAREN, + STATE(2565), 1, + sym__reserved_identifier, + STATE(3352), 1, + sym_parenthesized_variable_designation, + STATE(3422), 1, + sym__variable_designation, + STATE(5154), 1, + sym_positional_pattern_clause, + STATE(5691), 1, + sym_property_pattern_clause, + STATE(6424), 1, + sym_identifier, + STATE(7378), 1, + sym__lambda_parameters, + STATE(7531), 1, + sym_parameter_list, + ACTIONS(3867), 2, + anon_sym_and, + anon_sym_or, + STATE(4838), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -623880,7 +617105,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [118077] = 40, + ACTIONS(6971), 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, + [110556] = 27, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -623901,74 +617149,45 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4100), 1, + ACTIONS(4042), 1, anon_sym_DOT, - ACTIONS(4102), 1, + ACTIONS(4044), 1, anon_sym_DASH_GT, - ACTIONS(5264), 1, + ACTIONS(5257), 1, anon_sym_LPAREN, ACTIONS(5302), 1, - anon_sym_LBRACK, - ACTIONS(5304), 1, anon_sym_BANG, - ACTIONS(6475), 1, + ACTIONS(5549), 1, + anon_sym_LBRACK, + ACTIONS(6355), 1, anon_sym_switch, - ACTIONS(6485), 1, - anon_sym_as, - ACTIONS(6489), 1, + ACTIONS(6369), 1, anon_sym_with, - ACTIONS(7536), 1, + ACTIONS(6787), 1, anon_sym_SLASH, - ACTIONS(7540), 1, - anon_sym_GT_GT, - ACTIONS(7542), 1, + ACTIONS(6803), 1, anon_sym_DOT_DOT, - ACTIONS(7550), 1, - anon_sym_AMP, - ACTIONS(7556), 1, - anon_sym_is, - ACTIONS(7558), 1, - anon_sym_CARET, - ACTIONS(7572), 1, - anon_sym_PIPE, - ACTIONS(7574), 1, - anon_sym_AMP_AMP, - ACTIONS(7576), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7578), 1, - anon_sym_QMARK_QMARK, - ACTIONS(7665), 1, - anon_sym_QMARK, - STATE(2808), 1, + STATE(2467), 1, sym_bracketed_argument_list, - STATE(3487), 1, + STATE(3381), 1, sym_argument_list, - ACTIONS(5306), 2, + ACTIONS(5304), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7532), 2, + ACTIONS(6783), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7534), 2, + ACTIONS(6785), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7538), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - ACTIONS(7548), 2, + ACTIONS(5739), 6, anon_sym_LT, anon_sym_GT, - ACTIONS(7552), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(7554), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(5864), 3, - anon_sym_COLON, - anon_sym_and, - anon_sym_or, - STATE(4908), 9, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT_GT, + STATE(4839), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -623978,7 +617197,23 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [118215] = 40, + ACTIONS(5737), 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, + [110668] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -623999,74 +617234,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4100), 1, - anon_sym_DOT, - ACTIONS(4102), 1, - anon_sym_DASH_GT, - ACTIONS(5264), 1, - anon_sym_LPAREN, - ACTIONS(5302), 1, - anon_sym_LBRACK, - ACTIONS(5304), 1, - anon_sym_BANG, - ACTIONS(6475), 1, - anon_sym_switch, - ACTIONS(6485), 1, - anon_sym_as, - ACTIONS(6489), 1, - anon_sym_with, - ACTIONS(7536), 1, - anon_sym_SLASH, - ACTIONS(7540), 1, - anon_sym_GT_GT, - ACTIONS(7542), 1, - anon_sym_DOT_DOT, - ACTIONS(7550), 1, - anon_sym_AMP, - ACTIONS(7556), 1, - anon_sym_is, - ACTIONS(7558), 1, - anon_sym_CARET, - ACTIONS(7572), 1, - anon_sym_PIPE, - ACTIONS(7574), 1, - anon_sym_AMP_AMP, - ACTIONS(7576), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7578), 1, - anon_sym_QMARK_QMARK, - ACTIONS(7665), 1, - anon_sym_QMARK, - STATE(2808), 1, - sym_bracketed_argument_list, - STATE(3487), 1, - sym_argument_list, - ACTIONS(5306), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(7532), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(7534), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(7538), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - ACTIONS(7548), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(7552), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(7554), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(5072), 3, - anon_sym_COLON, - anon_sym_and, - anon_sym_or, - STATE(4909), 9, + ACTIONS(7487), 1, + anon_sym_into, + STATE(4840), 10, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -624076,105 +617246,46 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [118353] = 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(4100), 1, - anon_sym_DOT, - ACTIONS(4102), 1, - anon_sym_DASH_GT, - ACTIONS(5264), 1, - anon_sym_LPAREN, - ACTIONS(5304), 1, - anon_sym_BANG, - ACTIONS(5573), 1, - anon_sym_LBRACK, - ACTIONS(6343), 1, - anon_sym_switch, - ACTIONS(6357), 1, - anon_sym_with, - ACTIONS(6813), 1, - anon_sym_as, - ACTIONS(7139), 1, + aux_sym__query_body_repeat2, + ACTIONS(5953), 11, + anon_sym_LT, + anon_sym_GT, anon_sym_QMARK, - ACTIONS(7145), 1, + anon_sym_BANG, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_SLASH, - ACTIONS(7147), 1, - anon_sym_CARET, - ACTIONS(7149), 1, anon_sym_PIPE, - ACTIONS(7151), 1, anon_sym_AMP, - ACTIONS(7155), 1, anon_sym_GT_GT, - ACTIONS(7161), 1, - anon_sym_DOT_DOT, - ACTIONS(7163), 1, - anon_sym_AMP_AMP, - ACTIONS(7165), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7167), 1, - anon_sym_QMARK_QMARK, - ACTIONS(7169), 1, - anon_sym_is, - STATE(2485), 1, - sym_bracketed_argument_list, - STATE(3487), 1, - sym_argument_list, - ACTIONS(5306), 2, + anon_sym_DOT, + ACTIONS(5951), 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(7137), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(7141), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(7143), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7153), 2, + anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7157), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7159), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(7673), 3, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_RPAREN, - STATE(4910), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - [118491] = 27, + 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, + [110754] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -624195,38 +617306,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(3881), 1, - anon_sym_LBRACE, - ACTIONS(3897), 1, - sym_discard, - ACTIONS(6823), 1, - sym__identifier_token, - ACTIONS(6827), 1, - anon_sym_LPAREN, - ACTIONS(7588), 1, - anon_sym_COMMA, - ACTIONS(7675), 1, - anon_sym_RPAREN, - STATE(2571), 1, - sym__reserved_identifier, - STATE(3463), 1, - sym_parenthesized_variable_designation, - STATE(3492), 1, - sym__variable_designation, - STATE(5279), 1, - sym_positional_pattern_clause, - STATE(5682), 1, - sym_property_pattern_clause, - STATE(6412), 1, - sym_identifier, - STATE(7311), 1, - sym_parameter_list, - STATE(7536), 1, - sym__lambda_parameters, - ACTIONS(3883), 2, - anon_sym_and, - anon_sym_or, - STATE(4911), 9, + ACTIONS(7490), 1, + anon_sym_into, + STATE(4840), 1, + aux_sym__query_body_repeat2, + STATE(4841), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -624236,30 +617320,45 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(6825), 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, - [118603] = 14, + ACTIONS(5960), 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(5958), 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, + [110842] = 26, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -624280,9 +617379,44 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(7677), 1, - anon_sym_and, - STATE(4912), 9, + ACTIONS(4427), 1, + anon_sym_DOT, + ACTIONS(4429), 1, + anon_sym_DASH_GT, + ACTIONS(6557), 1, + anon_sym_LPAREN, + ACTIONS(6607), 1, + anon_sym_LBRACK, + ACTIONS(6613), 1, + anon_sym_BANG, + ACTIONS(6637), 1, + anon_sym_switch, + ACTIONS(6651), 1, + anon_sym_with, + ACTIONS(6719), 1, + anon_sym_SLASH, + ACTIONS(6735), 1, + anon_sym_DOT_DOT, + STATE(3188), 1, + sym_bracketed_argument_list, + STATE(4584), 1, + sym_argument_list, + ACTIONS(6615), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6717), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(5739), 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(4842), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -624292,28 +617426,10 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(6069), 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(6067), 26, + ACTIONS(5737), 15, 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, @@ -624321,17 +617437,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_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, - [118689] = 40, + [110952] = 29, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -624352,74 +617463,49 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4100), 1, + ACTIONS(4042), 1, anon_sym_DOT, - ACTIONS(4102), 1, + ACTIONS(4044), 1, anon_sym_DASH_GT, - ACTIONS(5264), 1, + ACTIONS(5257), 1, anon_sym_LPAREN, - ACTIONS(5302), 1, + ACTIONS(5300), 1, anon_sym_LBRACK, - ACTIONS(5304), 1, + ACTIONS(5302), 1, anon_sym_BANG, - ACTIONS(6475), 1, + ACTIONS(6495), 1, anon_sym_switch, - ACTIONS(6485), 1, - anon_sym_as, - ACTIONS(6489), 1, + ACTIONS(6509), 1, anon_sym_with, - ACTIONS(7536), 1, + ACTIONS(7496), 1, anon_sym_SLASH, - ACTIONS(7540), 1, + ACTIONS(7500), 1, anon_sym_GT_GT, - ACTIONS(7542), 1, + ACTIONS(7502), 1, anon_sym_DOT_DOT, - ACTIONS(7550), 1, - anon_sym_AMP, - ACTIONS(7556), 1, - anon_sym_is, - ACTIONS(7558), 1, - anon_sym_CARET, - ACTIONS(7572), 1, - anon_sym_PIPE, - ACTIONS(7574), 1, - anon_sym_AMP_AMP, - ACTIONS(7576), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7578), 1, - anon_sym_QMARK_QMARK, - ACTIONS(7665), 1, - anon_sym_QMARK, - STATE(2808), 1, + STATE(2759), 1, sym_bracketed_argument_list, - STATE(3487), 1, + STATE(3381), 1, sym_argument_list, - ACTIONS(5306), 2, + ACTIONS(5304), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7532), 2, + ACTIONS(7492), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7534), 2, + ACTIONS(7494), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7538), 2, + ACTIONS(7498), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7548), 2, + ACTIONS(5739), 5, anon_sym_LT, anon_sym_GT, - ACTIONS(7552), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(7554), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(5882), 3, - anon_sym_COLON, - anon_sym_and, - anon_sym_or, - STATE(4913), 9, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_AMP, + STATE(4843), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -624429,7 +617515,21 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [118827] = 17, + ACTIONS(5737), 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_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, + anon_sym_by, + anon_sym_as, + anon_sym_is, + [111068] = 26, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -624450,15 +617550,44 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4912), 1, + ACTIONS(4042), 1, + anon_sym_DOT, + ACTIONS(4044), 1, + anon_sym_DASH_GT, + ACTIONS(5257), 1, + anon_sym_LPAREN, + ACTIONS(5300), 1, anon_sym_LBRACK, - ACTIONS(5453), 1, - anon_sym_LBRACE, - ACTIONS(5456), 1, + ACTIONS(5302), 1, + anon_sym_BANG, + ACTIONS(6495), 1, + anon_sym_switch, + ACTIONS(6509), 1, + anon_sym_with, + ACTIONS(7496), 1, + anon_sym_SLASH, + ACTIONS(7502), 1, + anon_sym_DOT_DOT, + STATE(2759), 1, + sym_bracketed_argument_list, + STATE(3381), 1, + sym_argument_list, + ACTIONS(5304), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7494), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(5739), 8, + anon_sym_LT, + anon_sym_GT, anon_sym_QMARK, - STATE(3378), 1, - sym_initializer_expression, - STATE(4914), 9, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT_GT, + STATE(4844), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -624468,24 +617597,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(4922), 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(4916), 24, - anon_sym_LPAREN, - anon_sym_in, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_STAR, - anon_sym_PERCENT, + ACTIONS(5737), 15, anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT_GT, @@ -624493,18 +617605,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, - [118919] = 40, + [111178] = 35, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -624525,74 +617634,69 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4100), 1, + ACTIONS(4042), 1, anon_sym_DOT, - ACTIONS(4102), 1, + ACTIONS(4044), 1, anon_sym_DASH_GT, - ACTIONS(5264), 1, + ACTIONS(5257), 1, anon_sym_LPAREN, - ACTIONS(5302), 1, + ACTIONS(5300), 1, anon_sym_LBRACK, - ACTIONS(5304), 1, + ACTIONS(5302), 1, anon_sym_BANG, - ACTIONS(6475), 1, + ACTIONS(6495), 1, anon_sym_switch, - ACTIONS(6485), 1, - anon_sym_as, - ACTIONS(6489), 1, + ACTIONS(6509), 1, anon_sym_with, - ACTIONS(7536), 1, + ACTIONS(7496), 1, anon_sym_SLASH, - ACTIONS(7540), 1, + ACTIONS(7500), 1, anon_sym_GT_GT, - ACTIONS(7542), 1, + ACTIONS(7502), 1, anon_sym_DOT_DOT, - ACTIONS(7550), 1, + ACTIONS(7506), 1, anon_sym_AMP, - ACTIONS(7556), 1, + ACTIONS(7512), 1, + anon_sym_as, + ACTIONS(7514), 1, anon_sym_is, - ACTIONS(7558), 1, - anon_sym_CARET, - ACTIONS(7572), 1, - anon_sym_PIPE, - ACTIONS(7574), 1, - anon_sym_AMP_AMP, - ACTIONS(7576), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7578), 1, - anon_sym_QMARK_QMARK, - ACTIONS(7665), 1, - anon_sym_QMARK, - STATE(2808), 1, + STATE(2759), 1, sym_bracketed_argument_list, - STATE(3487), 1, + STATE(3381), 1, sym_argument_list, - ACTIONS(5306), 2, + ACTIONS(5304), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7532), 2, + ACTIONS(5739), 2, + anon_sym_QMARK, + anon_sym_PIPE, + ACTIONS(7492), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7534), 2, + ACTIONS(7494), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7538), 2, + ACTIONS(7498), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7548), 2, + ACTIONS(7504), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7552), 2, + ACTIONS(7508), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7554), 2, + ACTIONS(7510), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5899), 3, - anon_sym_COLON, + ACTIONS(5737), 7, + anon_sym_CARET, anon_sym_and, anon_sym_or, - STATE(4915), 9, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, + anon_sym_by, + STATE(4845), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -624602,7 +617706,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [119057] = 38, + [111306] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -624623,72 +617727,74 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4100), 1, + ACTIONS(4042), 1, anon_sym_DOT, - ACTIONS(4102), 1, + ACTIONS(4044), 1, anon_sym_DASH_GT, - ACTIONS(5264), 1, + ACTIONS(5257), 1, anon_sym_LPAREN, - ACTIONS(5304), 1, + ACTIONS(5302), 1, anon_sym_BANG, - ACTIONS(5573), 1, + ACTIONS(5549), 1, anon_sym_LBRACK, - ACTIONS(5664), 1, - anon_sym_QMARK, - ACTIONS(6343), 1, + ACTIONS(6355), 1, anon_sym_switch, - ACTIONS(6357), 1, + ACTIONS(6369), 1, anon_sym_with, - ACTIONS(6813), 1, - anon_sym_as, - ACTIONS(7169), 1, - anon_sym_is, - ACTIONS(7442), 1, + ACTIONS(6781), 1, + anon_sym_QMARK, + ACTIONS(6787), 1, anon_sym_SLASH, - ACTIONS(7444), 1, + ACTIONS(6789), 1, anon_sym_CARET, - ACTIONS(7446), 1, + ACTIONS(6791), 1, anon_sym_PIPE, - ACTIONS(7448), 1, + ACTIONS(6793), 1, anon_sym_AMP, - ACTIONS(7452), 1, + ACTIONS(6797), 1, anon_sym_GT_GT, - ACTIONS(7458), 1, + ACTIONS(6803), 1, anon_sym_DOT_DOT, - ACTIONS(7621), 1, + ACTIONS(6805), 1, anon_sym_AMP_AMP, - STATE(2485), 1, + ACTIONS(6807), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6809), 1, + anon_sym_QMARK_QMARK, + ACTIONS(6811), 1, + anon_sym_as, + ACTIONS(6813), 1, + anon_sym_is, + STATE(2467), 1, sym_bracketed_argument_list, - STATE(3487), 1, + STATE(3381), 1, sym_argument_list, - ACTIONS(5306), 2, + ACTIONS(5304), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7436), 2, + ACTIONS(6779), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7438), 2, + ACTIONS(6783), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7440), 2, + ACTIONS(6785), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7450), 2, + ACTIONS(6795), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7454), 2, + ACTIONS(6799), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7456), 2, + ACTIONS(6801), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5660), 5, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_PIPE_PIPE, - anon_sym_QMARK_QMARK, - STATE(4916), 9, + ACTIONS(7516), 3, + aux_sym_preproc_if_token3, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + STATE(4846), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -624698,7 +617804,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [119191] = 42, + [111444] = 36, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -624719,76 +617825,70 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(2697), 1, - anon_sym_COMMA, - ACTIONS(4100), 1, + ACTIONS(4042), 1, anon_sym_DOT, - ACTIONS(4102), 1, + ACTIONS(4044), 1, anon_sym_DASH_GT, - ACTIONS(5264), 1, + ACTIONS(5257), 1, anon_sym_LPAREN, - ACTIONS(5304), 1, - anon_sym_BANG, - ACTIONS(5573), 1, + ACTIONS(5300), 1, anon_sym_LBRACK, - ACTIONS(6343), 1, + ACTIONS(5302), 1, + anon_sym_BANG, + ACTIONS(6495), 1, anon_sym_switch, - ACTIONS(6357), 1, + ACTIONS(6509), 1, anon_sym_with, - ACTIONS(6813), 1, - anon_sym_as, - ACTIONS(7139), 1, - anon_sym_QMARK, - ACTIONS(7145), 1, + ACTIONS(7496), 1, anon_sym_SLASH, - ACTIONS(7147), 1, - anon_sym_CARET, - ACTIONS(7149), 1, - anon_sym_PIPE, - ACTIONS(7151), 1, - anon_sym_AMP, - ACTIONS(7155), 1, + ACTIONS(7500), 1, anon_sym_GT_GT, - ACTIONS(7161), 1, + ACTIONS(7502), 1, anon_sym_DOT_DOT, - ACTIONS(7163), 1, - anon_sym_AMP_AMP, - ACTIONS(7165), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7167), 1, - anon_sym_QMARK_QMARK, - ACTIONS(7169), 1, + ACTIONS(7506), 1, + anon_sym_AMP, + ACTIONS(7512), 1, + anon_sym_as, + ACTIONS(7514), 1, anon_sym_is, - ACTIONS(7679), 1, - anon_sym_RBRACK, - STATE(2485), 1, + ACTIONS(7518), 1, + anon_sym_CARET, + STATE(2759), 1, sym_bracketed_argument_list, - STATE(3487), 1, + STATE(3381), 1, sym_argument_list, - STATE(6844), 1, - aux_sym_array_rank_specifier_repeat1, - ACTIONS(5306), 2, + ACTIONS(5304), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7137), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(7141), 2, + ACTIONS(5739), 2, + anon_sym_QMARK, + anon_sym_PIPE, + ACTIONS(7492), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7143), 2, + ACTIONS(7494), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7153), 2, + ACTIONS(7498), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7157), 2, + ACTIONS(7504), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(7508), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7159), 2, + ACTIONS(7510), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - STATE(4917), 9, + ACTIONS(5737), 6, + anon_sym_and, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, + anon_sym_by, + STATE(4847), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -624798,7 +617898,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [119333] = 41, + [111574] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -624819,75 +617919,74 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4100), 1, + ACTIONS(4042), 1, anon_sym_DOT, - ACTIONS(4102), 1, + ACTIONS(4044), 1, anon_sym_DASH_GT, - ACTIONS(5264), 1, + ACTIONS(5257), 1, anon_sym_LPAREN, - ACTIONS(5304), 1, + ACTIONS(5302), 1, anon_sym_BANG, - ACTIONS(5573), 1, + ACTIONS(5549), 1, anon_sym_LBRACK, - ACTIONS(5899), 1, - anon_sym_RPAREN, - ACTIONS(6343), 1, + ACTIONS(6355), 1, anon_sym_switch, - ACTIONS(6357), 1, + ACTIONS(6369), 1, anon_sym_with, - ACTIONS(6813), 1, - anon_sym_as, - ACTIONS(7139), 1, + ACTIONS(6781), 1, anon_sym_QMARK, - ACTIONS(7145), 1, + ACTIONS(6787), 1, anon_sym_SLASH, - ACTIONS(7147), 1, + ACTIONS(6789), 1, anon_sym_CARET, - ACTIONS(7149), 1, + ACTIONS(6791), 1, anon_sym_PIPE, - ACTIONS(7151), 1, + ACTIONS(6793), 1, anon_sym_AMP, - ACTIONS(7155), 1, + ACTIONS(6797), 1, anon_sym_GT_GT, - ACTIONS(7161), 1, + ACTIONS(6803), 1, anon_sym_DOT_DOT, - ACTIONS(7163), 1, + ACTIONS(6805), 1, anon_sym_AMP_AMP, - ACTIONS(7165), 1, + ACTIONS(6807), 1, anon_sym_PIPE_PIPE, - ACTIONS(7167), 1, + ACTIONS(6809), 1, anon_sym_QMARK_QMARK, - ACTIONS(7169), 1, + ACTIONS(6811), 1, + anon_sym_as, + ACTIONS(6813), 1, anon_sym_is, - STATE(2485), 1, + STATE(2467), 1, sym_bracketed_argument_list, - STATE(3487), 1, + STATE(3381), 1, sym_argument_list, - ACTIONS(5306), 2, + ACTIONS(5304), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7137), 2, + ACTIONS(6779), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7141), 2, + ACTIONS(6783), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7143), 2, + ACTIONS(6785), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7153), 2, + ACTIONS(6795), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7157), 2, + ACTIONS(6799), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7159), 2, + ACTIONS(6801), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(7546), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - STATE(4918), 9, + ACTIONS(5652), 3, + aux_sym_preproc_if_token3, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + STATE(4848), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -624897,7 +617996,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [119473] = 27, + [111712] = 34, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -624918,38 +618017,68 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(3881), 1, - anon_sym_LBRACE, - ACTIONS(3897), 1, - sym_discard, - ACTIONS(6823), 1, - sym__identifier_token, - ACTIONS(6827), 1, + ACTIONS(4042), 1, + anon_sym_DOT, + ACTIONS(4044), 1, + anon_sym_DASH_GT, + ACTIONS(5257), 1, anon_sym_LPAREN, - ACTIONS(7588), 1, - anon_sym_COMMA, - ACTIONS(7681), 1, - anon_sym_RPAREN, - STATE(2571), 1, - sym__reserved_identifier, - STATE(3463), 1, - sym_parenthesized_variable_designation, - STATE(3492), 1, - sym__variable_designation, - STATE(5279), 1, - sym_positional_pattern_clause, - STATE(5682), 1, - sym_property_pattern_clause, - STATE(6412), 1, - sym_identifier, - STATE(7311), 1, - sym_parameter_list, - STATE(7536), 1, - sym__lambda_parameters, - ACTIONS(3883), 2, + ACTIONS(5300), 1, + anon_sym_LBRACK, + ACTIONS(5302), 1, + anon_sym_BANG, + ACTIONS(6495), 1, + anon_sym_switch, + ACTIONS(6509), 1, + anon_sym_with, + ACTIONS(7496), 1, + anon_sym_SLASH, + ACTIONS(7500), 1, + anon_sym_GT_GT, + ACTIONS(7502), 1, + anon_sym_DOT_DOT, + ACTIONS(7512), 1, + anon_sym_as, + ACTIONS(7514), 1, + anon_sym_is, + STATE(2759), 1, + sym_bracketed_argument_list, + STATE(3381), 1, + sym_argument_list, + ACTIONS(5304), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7492), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(7494), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(7498), 2, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + ACTIONS(7504), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(7508), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(7510), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(5739), 3, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_AMP, + ACTIONS(5737), 7, + anon_sym_CARET, anon_sym_and, anon_sym_or, - STATE(4919), 9, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, + anon_sym_by, + STATE(4849), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -624959,30 +618088,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(6825), 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, - [119585] = 40, + [111838] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -625003,74 +618109,74 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4100), 1, + ACTIONS(4042), 1, anon_sym_DOT, - ACTIONS(4102), 1, + ACTIONS(4044), 1, anon_sym_DASH_GT, - ACTIONS(5264), 1, + ACTIONS(5257), 1, anon_sym_LPAREN, - ACTIONS(5304), 1, + ACTIONS(5302), 1, anon_sym_BANG, - ACTIONS(5573), 1, + ACTIONS(5549), 1, anon_sym_LBRACK, - ACTIONS(6343), 1, + ACTIONS(6355), 1, anon_sym_switch, - ACTIONS(6357), 1, + ACTIONS(6369), 1, anon_sym_with, - ACTIONS(6813), 1, - anon_sym_as, - ACTIONS(7139), 1, + ACTIONS(6781), 1, anon_sym_QMARK, - ACTIONS(7145), 1, + ACTIONS(6787), 1, anon_sym_SLASH, - ACTIONS(7147), 1, + ACTIONS(6789), 1, anon_sym_CARET, - ACTIONS(7149), 1, + ACTIONS(6791), 1, anon_sym_PIPE, - ACTIONS(7151), 1, + ACTIONS(6793), 1, anon_sym_AMP, - ACTIONS(7155), 1, + ACTIONS(6797), 1, anon_sym_GT_GT, - ACTIONS(7161), 1, + ACTIONS(6803), 1, anon_sym_DOT_DOT, - ACTIONS(7163), 1, + ACTIONS(6805), 1, anon_sym_AMP_AMP, - ACTIONS(7165), 1, + ACTIONS(6807), 1, anon_sym_PIPE_PIPE, - ACTIONS(7167), 1, + ACTIONS(6809), 1, anon_sym_QMARK_QMARK, - ACTIONS(7169), 1, + ACTIONS(6811), 1, + anon_sym_as, + ACTIONS(6813), 1, anon_sym_is, - STATE(2485), 1, + STATE(2467), 1, sym_bracketed_argument_list, - STATE(3487), 1, + STATE(3381), 1, sym_argument_list, - ACTIONS(5306), 2, + ACTIONS(5304), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7137), 2, + ACTIONS(6779), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7141), 2, + ACTIONS(6783), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7143), 2, + ACTIONS(6785), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7153), 2, + ACTIONS(6795), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7157), 2, + ACTIONS(6799), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7159), 2, + ACTIONS(6801), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(7546), 3, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_RPAREN, - STATE(4920), 9, + ACTIONS(7520), 3, + aux_sym_preproc_if_token3, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + STATE(4850), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -625080,7 +618186,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [119723] = 42, + [111976] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -625101,76 +618207,74 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4100), 1, + ACTIONS(4042), 1, anon_sym_DOT, - ACTIONS(4102), 1, + ACTIONS(4044), 1, anon_sym_DASH_GT, - ACTIONS(5264), 1, + ACTIONS(5257), 1, anon_sym_LPAREN, - ACTIONS(5304), 1, - anon_sym_BANG, - ACTIONS(5573), 1, + ACTIONS(5300), 1, anon_sym_LBRACK, - ACTIONS(6343), 1, + ACTIONS(5302), 1, + anon_sym_BANG, + ACTIONS(6495), 1, anon_sym_switch, - ACTIONS(6357), 1, + ACTIONS(6509), 1, anon_sym_with, - ACTIONS(6813), 1, - anon_sym_as, - ACTIONS(7139), 1, - anon_sym_QMARK, - ACTIONS(7145), 1, + ACTIONS(7450), 1, anon_sym_SLASH, - ACTIONS(7147), 1, + ACTIONS(7452), 1, anon_sym_CARET, - ACTIONS(7149), 1, + ACTIONS(7454), 1, anon_sym_PIPE, - ACTIONS(7151), 1, + ACTIONS(7456), 1, anon_sym_AMP, - ACTIONS(7155), 1, + ACTIONS(7460), 1, anon_sym_GT_GT, - ACTIONS(7161), 1, + ACTIONS(7466), 1, anon_sym_DOT_DOT, - ACTIONS(7163), 1, + ACTIONS(7468), 1, anon_sym_AMP_AMP, - ACTIONS(7165), 1, + ACTIONS(7470), 1, anon_sym_PIPE_PIPE, - ACTIONS(7167), 1, + ACTIONS(7472), 1, anon_sym_QMARK_QMARK, - ACTIONS(7169), 1, + ACTIONS(7474), 1, + anon_sym_as, + ACTIONS(7476), 1, anon_sym_is, - ACTIONS(7580), 1, - anon_sym_COMMA, - ACTIONS(7683), 1, - anon_sym_RPAREN, - STATE(2485), 1, + ACTIONS(7522), 1, + anon_sym_QMARK, + STATE(2759), 1, sym_bracketed_argument_list, - STATE(3487), 1, + STATE(3381), 1, sym_argument_list, - STATE(6866), 1, - aux_sym__for_statement_conditions_repeat1, - ACTIONS(5306), 2, + ACTIONS(5304), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7137), 2, + ACTIONS(7444), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7141), 2, + ACTIONS(7446), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7143), 2, + ACTIONS(7448), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7153), 2, + ACTIONS(7458), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7157), 2, + ACTIONS(7462), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7159), 2, + ACTIONS(7464), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - STATE(4921), 9, + ACTIONS(5709), 3, + anon_sym_in, + anon_sym_and, + anon_sym_or, + STATE(4851), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -625180,7 +618284,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [119865] = 27, + [112114] = 27, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -625201,45 +618305,45 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4100), 1, + ACTIONS(4042), 1, anon_sym_DOT, - ACTIONS(4102), 1, + ACTIONS(4044), 1, anon_sym_DASH_GT, - ACTIONS(5264), 1, + ACTIONS(5257), 1, anon_sym_LPAREN, - ACTIONS(5302), 1, + ACTIONS(5300), 1, anon_sym_LBRACK, - ACTIONS(5304), 1, + ACTIONS(5302), 1, anon_sym_BANG, - ACTIONS(6475), 1, + ACTIONS(6495), 1, anon_sym_switch, - ACTIONS(6489), 1, + ACTIONS(6509), 1, anon_sym_with, - ACTIONS(7564), 1, + ACTIONS(7496), 1, anon_sym_SLASH, - ACTIONS(7570), 1, + ACTIONS(7502), 1, anon_sym_DOT_DOT, - STATE(2808), 1, + STATE(2759), 1, sym_bracketed_argument_list, - STATE(3487), 1, + STATE(3381), 1, sym_argument_list, - ACTIONS(5306), 2, + ACTIONS(5304), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7560), 2, + ACTIONS(7492), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7562), 2, + ACTIONS(7494), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(5664), 6, + ACTIONS(5739), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT_GT, - STATE(4922), 9, + STATE(4852), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -625249,7 +618353,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5660), 15, + ACTIONS(5737), 15, anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT_GT, @@ -625265,7 +618369,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_as, anon_sym_is, - [119977] = 27, + [112226] = 22, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -625286,38 +618390,36 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(3881), 1, - anon_sym_LBRACE, - ACTIONS(3897), 1, - sym_discard, - ACTIONS(6823), 1, - sym__identifier_token, - ACTIONS(6827), 1, + ACTIONS(4042), 1, + anon_sym_DOT, + ACTIONS(4044), 1, + anon_sym_DASH_GT, + ACTIONS(5257), 1, anon_sym_LPAREN, - ACTIONS(7588), 1, - anon_sym_COMMA, - ACTIONS(7685), 1, - anon_sym_RPAREN, - STATE(2571), 1, - sym__reserved_identifier, - STATE(3463), 1, - sym_parenthesized_variable_designation, - STATE(3492), 1, - sym__variable_designation, - STATE(5279), 1, - sym_positional_pattern_clause, - STATE(5682), 1, - sym_property_pattern_clause, - STATE(6412), 1, - sym_identifier, - STATE(7311), 1, - sym_parameter_list, - STATE(7536), 1, - sym__lambda_parameters, - ACTIONS(3883), 2, - anon_sym_and, - anon_sym_or, - STATE(4923), 9, + ACTIONS(5300), 1, + anon_sym_LBRACK, + ACTIONS(5302), 1, + anon_sym_BANG, + ACTIONS(7466), 1, + anon_sym_DOT_DOT, + STATE(2759), 1, + sym_bracketed_argument_list, + STATE(3381), 1, + sym_argument_list, + ACTIONS(5304), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5743), 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(4853), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -625327,30 +618429,27 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(6825), 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, - [120089] = 27, + ACTIONS(5741), 19, + 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_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, + [112328] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -625371,38 +618470,74 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(3881), 1, - anon_sym_LBRACE, - ACTIONS(3897), 1, - sym_discard, - ACTIONS(6823), 1, - sym__identifier_token, - ACTIONS(6827), 1, + ACTIONS(4042), 1, + anon_sym_DOT, + ACTIONS(4044), 1, + anon_sym_DASH_GT, + ACTIONS(5257), 1, anon_sym_LPAREN, - ACTIONS(7588), 1, - anon_sym_COMMA, - ACTIONS(7687), 1, - anon_sym_RPAREN, - STATE(2571), 1, - sym__reserved_identifier, - STATE(3463), 1, - sym_parenthesized_variable_designation, - STATE(3492), 1, - sym__variable_designation, - STATE(5279), 1, - sym_positional_pattern_clause, - STATE(5682), 1, - sym_property_pattern_clause, - STATE(6412), 1, - sym_identifier, - STATE(7311), 1, - sym_parameter_list, - STATE(7536), 1, - sym__lambda_parameters, - ACTIONS(3883), 2, + ACTIONS(5300), 1, + anon_sym_LBRACK, + ACTIONS(5302), 1, + anon_sym_BANG, + ACTIONS(6495), 1, + anon_sym_switch, + ACTIONS(6509), 1, + anon_sym_with, + ACTIONS(7450), 1, + anon_sym_SLASH, + ACTIONS(7452), 1, + anon_sym_CARET, + ACTIONS(7454), 1, + anon_sym_PIPE, + ACTIONS(7456), 1, + anon_sym_AMP, + ACTIONS(7460), 1, + anon_sym_GT_GT, + ACTIONS(7466), 1, + anon_sym_DOT_DOT, + ACTIONS(7468), 1, + anon_sym_AMP_AMP, + ACTIONS(7470), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7472), 1, + anon_sym_QMARK_QMARK, + ACTIONS(7474), 1, + anon_sym_as, + ACTIONS(7476), 1, + anon_sym_is, + ACTIONS(7522), 1, + anon_sym_QMARK, + STATE(2759), 1, + sym_bracketed_argument_list, + STATE(3381), 1, + sym_argument_list, + ACTIONS(5304), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7444), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(7446), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(7448), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(7458), 2, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + ACTIONS(7462), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(7464), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(5849), 3, + anon_sym_in, anon_sym_and, anon_sym_or, - STATE(4924), 9, + STATE(4854), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -625412,30 +618547,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(6825), 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, - [120201] = 42, + [112466] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -625456,76 +618568,74 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4100), 1, + ACTIONS(4042), 1, anon_sym_DOT, - ACTIONS(4102), 1, + ACTIONS(4044), 1, anon_sym_DASH_GT, - ACTIONS(5264), 1, + ACTIONS(5257), 1, anon_sym_LPAREN, - ACTIONS(5304), 1, - anon_sym_BANG, - ACTIONS(5573), 1, + ACTIONS(5300), 1, anon_sym_LBRACK, - ACTIONS(6343), 1, + ACTIONS(5302), 1, + anon_sym_BANG, + ACTIONS(6495), 1, anon_sym_switch, - ACTIONS(6357), 1, + ACTIONS(6509), 1, anon_sym_with, - ACTIONS(6813), 1, - anon_sym_as, - ACTIONS(7139), 1, - anon_sym_QMARK, - ACTIONS(7145), 1, + ACTIONS(7450), 1, anon_sym_SLASH, - ACTIONS(7147), 1, + ACTIONS(7452), 1, anon_sym_CARET, - ACTIONS(7149), 1, + ACTIONS(7454), 1, anon_sym_PIPE, - ACTIONS(7151), 1, + ACTIONS(7456), 1, anon_sym_AMP, - ACTIONS(7155), 1, + ACTIONS(7460), 1, anon_sym_GT_GT, - ACTIONS(7161), 1, + ACTIONS(7466), 1, anon_sym_DOT_DOT, - ACTIONS(7163), 1, + ACTIONS(7468), 1, anon_sym_AMP_AMP, - ACTIONS(7165), 1, + ACTIONS(7470), 1, anon_sym_PIPE_PIPE, - ACTIONS(7167), 1, + ACTIONS(7472), 1, anon_sym_QMARK_QMARK, - ACTIONS(7169), 1, + ACTIONS(7474), 1, + anon_sym_as, + ACTIONS(7476), 1, anon_sym_is, - ACTIONS(7278), 1, - anon_sym_COMMA, - ACTIONS(7280), 1, - anon_sym_RBRACE, - STATE(2485), 1, + ACTIONS(7522), 1, + anon_sym_QMARK, + STATE(2759), 1, sym_bracketed_argument_list, - STATE(3487), 1, + STATE(3381), 1, sym_argument_list, - STATE(6942), 1, - aux_sym__for_statement_conditions_repeat1, - ACTIONS(5306), 2, + ACTIONS(5304), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7137), 2, + ACTIONS(7444), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7141), 2, + ACTIONS(7446), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7143), 2, + ACTIONS(7448), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7153), 2, + ACTIONS(7458), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7157), 2, + ACTIONS(7462), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7159), 2, + ACTIONS(7464), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - STATE(4925), 9, + ACTIONS(4996), 3, + anon_sym_in, + anon_sym_and, + anon_sym_or, + STATE(4855), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -625535,7 +618645,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [120343] = 40, + [112604] = 33, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -625556,74 +618666,67 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4100), 1, + ACTIONS(4042), 1, anon_sym_DOT, - ACTIONS(4102), 1, + ACTIONS(4044), 1, anon_sym_DASH_GT, - ACTIONS(5264), 1, + ACTIONS(5257), 1, anon_sym_LPAREN, - ACTIONS(5304), 1, - anon_sym_BANG, - ACTIONS(5573), 1, + ACTIONS(5300), 1, anon_sym_LBRACK, - ACTIONS(6343), 1, + ACTIONS(5302), 1, + anon_sym_BANG, + ACTIONS(6495), 1, anon_sym_switch, - ACTIONS(6357), 1, + ACTIONS(6509), 1, anon_sym_with, - ACTIONS(6813), 1, - anon_sym_as, - ACTIONS(7139), 1, - anon_sym_QMARK, - ACTIONS(7145), 1, + ACTIONS(7496), 1, anon_sym_SLASH, - ACTIONS(7147), 1, - anon_sym_CARET, - ACTIONS(7149), 1, - anon_sym_PIPE, - ACTIONS(7151), 1, - anon_sym_AMP, - ACTIONS(7155), 1, + ACTIONS(7500), 1, anon_sym_GT_GT, - ACTIONS(7161), 1, + ACTIONS(7502), 1, anon_sym_DOT_DOT, - ACTIONS(7163), 1, - anon_sym_AMP_AMP, - ACTIONS(7165), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7167), 1, - anon_sym_QMARK_QMARK, - ACTIONS(7169), 1, + ACTIONS(7512), 1, + anon_sym_as, + ACTIONS(7514), 1, anon_sym_is, - STATE(2485), 1, + STATE(2759), 1, sym_bracketed_argument_list, - STATE(3487), 1, + STATE(3381), 1, sym_argument_list, - ACTIONS(5306), 2, + ACTIONS(5304), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7137), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(7141), 2, + ACTIONS(7492), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7143), 2, + ACTIONS(7494), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7153), 2, + ACTIONS(7498), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7157), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(7159), 2, + ACTIONS(7504), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(7510), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(7689), 3, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_RPAREN, - STATE(4926), 9, + ACTIONS(5739), 3, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_AMP, + ACTIONS(5737), 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_by, + STATE(4856), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -625633,7 +618736,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [120481] = 42, + [112728] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -625654,76 +618757,74 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(2697), 1, - anon_sym_COMMA, - ACTIONS(4100), 1, + ACTIONS(4042), 1, anon_sym_DOT, - ACTIONS(4102), 1, + ACTIONS(4044), 1, anon_sym_DASH_GT, - ACTIONS(5264), 1, + ACTIONS(5257), 1, anon_sym_LPAREN, - ACTIONS(5304), 1, - anon_sym_BANG, - ACTIONS(5573), 1, + ACTIONS(5300), 1, anon_sym_LBRACK, - ACTIONS(6343), 1, + ACTIONS(5302), 1, + anon_sym_BANG, + ACTIONS(6495), 1, anon_sym_switch, - ACTIONS(6357), 1, + ACTIONS(6509), 1, anon_sym_with, - ACTIONS(6813), 1, - anon_sym_as, - ACTIONS(7139), 1, - anon_sym_QMARK, - ACTIONS(7145), 1, + ACTIONS(7450), 1, anon_sym_SLASH, - ACTIONS(7147), 1, + ACTIONS(7452), 1, anon_sym_CARET, - ACTIONS(7149), 1, + ACTIONS(7454), 1, anon_sym_PIPE, - ACTIONS(7151), 1, + ACTIONS(7456), 1, anon_sym_AMP, - ACTIONS(7155), 1, + ACTIONS(7460), 1, anon_sym_GT_GT, - ACTIONS(7161), 1, + ACTIONS(7466), 1, anon_sym_DOT_DOT, - ACTIONS(7163), 1, + ACTIONS(7468), 1, anon_sym_AMP_AMP, - ACTIONS(7165), 1, + ACTIONS(7470), 1, anon_sym_PIPE_PIPE, - ACTIONS(7167), 1, + ACTIONS(7472), 1, anon_sym_QMARK_QMARK, - ACTIONS(7169), 1, + ACTIONS(7474), 1, + anon_sym_as, + ACTIONS(7476), 1, anon_sym_is, - ACTIONS(7691), 1, - anon_sym_RBRACK, - STATE(2485), 1, + ACTIONS(7522), 1, + anon_sym_QMARK, + STATE(2759), 1, sym_bracketed_argument_list, - STATE(3487), 1, + STATE(3381), 1, sym_argument_list, - STATE(6946), 1, - aux_sym_array_rank_specifier_repeat1, - ACTIONS(5306), 2, + ACTIONS(5304), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7137), 2, + ACTIONS(7444), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7141), 2, + ACTIONS(7446), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7143), 2, + ACTIONS(7448), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7153), 2, + ACTIONS(7458), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7157), 2, + ACTIONS(7462), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7159), 2, + ACTIONS(7464), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - STATE(4927), 9, + ACTIONS(5652), 3, + anon_sym_in, + anon_sym_and, + anon_sym_or, + STATE(4857), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -625733,7 +618834,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [120623] = 22, + [112866] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -625754,36 +618855,74 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4443), 1, - anon_sym_DASH_GT, - ACTIONS(4533), 1, + ACTIONS(4042), 1, anon_sym_DOT, - ACTIONS(6574), 1, + ACTIONS(4044), 1, + anon_sym_DASH_GT, + ACTIONS(5257), 1, anon_sym_LPAREN, - ACTIONS(6619), 1, + ACTIONS(5300), 1, anon_sym_LBRACK, - ACTIONS(6625), 1, + ACTIONS(5302), 1, anon_sym_BANG, - ACTIONS(6984), 1, + ACTIONS(6495), 1, + anon_sym_switch, + ACTIONS(6509), 1, + anon_sym_with, + ACTIONS(7450), 1, + anon_sym_SLASH, + ACTIONS(7452), 1, + anon_sym_CARET, + ACTIONS(7454), 1, + anon_sym_PIPE, + ACTIONS(7456), 1, + anon_sym_AMP, + ACTIONS(7460), 1, + anon_sym_GT_GT, + ACTIONS(7466), 1, anon_sym_DOT_DOT, - STATE(3173), 1, + ACTIONS(7468), 1, + anon_sym_AMP_AMP, + ACTIONS(7470), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7472), 1, + anon_sym_QMARK_QMARK, + ACTIONS(7474), 1, + anon_sym_as, + ACTIONS(7476), 1, + anon_sym_is, + ACTIONS(7522), 1, + anon_sym_QMARK, + STATE(2759), 1, sym_bracketed_argument_list, - STATE(4583), 1, + STATE(3381), 1, sym_argument_list, - ACTIONS(6627), 2, + ACTIONS(5304), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1223), 9, + ACTIONS(7444), 2, anon_sym_LT, anon_sym_GT, - anon_sym_QMARK, + ACTIONS(7446), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT_GT, - STATE(4928), 9, + ACTIONS(7448), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(7458), 2, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + ACTIONS(7462), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(7464), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(5801), 3, + anon_sym_in, + anon_sym_and, + anon_sym_or, + STATE(4858), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -625793,27 +618932,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(1221), 19, - 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_as, - anon_sym_is, - anon_sym_with, - [120725] = 29, + [113004] = 37, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -625834,73 +618953,81 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4100), 1, + ACTIONS(4042), 1, anon_sym_DOT, - ACTIONS(4102), 1, + ACTIONS(4044), 1, anon_sym_DASH_GT, - ACTIONS(5264), 1, + ACTIONS(5257), 1, anon_sym_LPAREN, - ACTIONS(5302), 1, + ACTIONS(5300), 1, anon_sym_LBRACK, - ACTIONS(5304), 1, + ACTIONS(5302), 1, anon_sym_BANG, - ACTIONS(6475), 1, + ACTIONS(5739), 1, + anon_sym_QMARK, + ACTIONS(6495), 1, anon_sym_switch, - ACTIONS(6489), 1, + ACTIONS(6509), 1, anon_sym_with, - ACTIONS(7697), 1, + ACTIONS(7496), 1, anon_sym_SLASH, - ACTIONS(7701), 1, + ACTIONS(7500), 1, anon_sym_GT_GT, - ACTIONS(7703), 1, + ACTIONS(7502), 1, anon_sym_DOT_DOT, - STATE(2808), 1, + ACTIONS(7506), 1, + anon_sym_AMP, + ACTIONS(7512), 1, + anon_sym_as, + ACTIONS(7514), 1, + anon_sym_is, + ACTIONS(7518), 1, + anon_sym_CARET, + ACTIONS(7524), 1, + anon_sym_PIPE, + STATE(2759), 1, sym_bracketed_argument_list, - STATE(3487), 1, + STATE(3381), 1, sym_argument_list, - ACTIONS(5306), 2, + ACTIONS(5304), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7693), 2, + ACTIONS(7492), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7695), 2, + ACTIONS(7494), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7699), 2, + ACTIONS(7498), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(5664), 5, + ACTIONS(7504), 2, anon_sym_LT, anon_sym_GT, - anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_AMP, - STATE(4929), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - ACTIONS(5660), 13, - anon_sym_CARET, + ACTIONS(7508), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + ACTIONS(7510), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, + ACTIONS(5737), 6, 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, - [120841] = 40, + anon_sym_by, + 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, + [113136] = 38, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -625921,74 +619048,72 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4100), 1, + ACTIONS(4042), 1, anon_sym_DOT, - ACTIONS(4102), 1, + ACTIONS(4044), 1, anon_sym_DASH_GT, - ACTIONS(5264), 1, + ACTIONS(5257), 1, anon_sym_LPAREN, - ACTIONS(5304), 1, - anon_sym_BANG, - ACTIONS(5573), 1, + ACTIONS(5300), 1, anon_sym_LBRACK, - ACTIONS(6343), 1, + ACTIONS(5302), 1, + anon_sym_BANG, + ACTIONS(5739), 1, + anon_sym_QMARK, + ACTIONS(6495), 1, anon_sym_switch, - ACTIONS(6357), 1, + ACTIONS(6509), 1, anon_sym_with, - ACTIONS(6813), 1, + ACTIONS(7496), 1, + anon_sym_SLASH, + ACTIONS(7500), 1, + anon_sym_GT_GT, + ACTIONS(7502), 1, + anon_sym_DOT_DOT, + ACTIONS(7506), 1, + anon_sym_AMP, + ACTIONS(7512), 1, anon_sym_as, - ACTIONS(7169), 1, + ACTIONS(7514), 1, anon_sym_is, - ACTIONS(7442), 1, - anon_sym_SLASH, - ACTIONS(7444), 1, + ACTIONS(7518), 1, anon_sym_CARET, - ACTIONS(7446), 1, + ACTIONS(7524), 1, anon_sym_PIPE, - ACTIONS(7448), 1, - anon_sym_AMP, - ACTIONS(7452), 1, - anon_sym_GT_GT, - ACTIONS(7458), 1, - anon_sym_DOT_DOT, - ACTIONS(7621), 1, + ACTIONS(7526), 1, anon_sym_AMP_AMP, - ACTIONS(7623), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7625), 1, - anon_sym_QMARK_QMARK, - ACTIONS(7659), 1, - anon_sym_QMARK, - STATE(2485), 1, + STATE(2759), 1, sym_bracketed_argument_list, - STATE(3487), 1, + STATE(3381), 1, sym_argument_list, - ACTIONS(5306), 2, + ACTIONS(5304), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7436), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(7438), 2, + ACTIONS(7492), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7440), 2, + ACTIONS(7494), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7450), 2, + ACTIONS(7498), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7454), 2, + ACTIONS(7504), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(7508), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7456), 2, + ACTIONS(7510), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5899), 3, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RBRACE, - STATE(4930), 9, + ACTIONS(5737), 5, + anon_sym_and, + anon_sym_or, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, + anon_sym_by, + STATE(4860), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -625998,7 +619123,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [120979] = 42, + [113270] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -626019,76 +619144,74 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(2697), 1, - anon_sym_COMMA, - ACTIONS(4100), 1, + ACTIONS(4042), 1, anon_sym_DOT, - ACTIONS(4102), 1, + ACTIONS(4044), 1, anon_sym_DASH_GT, - ACTIONS(5264), 1, + ACTIONS(5257), 1, anon_sym_LPAREN, - ACTIONS(5304), 1, - anon_sym_BANG, - ACTIONS(5573), 1, + ACTIONS(5300), 1, anon_sym_LBRACK, - ACTIONS(6343), 1, + ACTIONS(5302), 1, + anon_sym_BANG, + ACTIONS(5739), 1, + anon_sym_QMARK, + ACTIONS(6495), 1, anon_sym_switch, - ACTIONS(6357), 1, + ACTIONS(6509), 1, anon_sym_with, - ACTIONS(6813), 1, - anon_sym_as, - ACTIONS(7139), 1, - anon_sym_QMARK, - ACTIONS(7145), 1, + ACTIONS(7496), 1, anon_sym_SLASH, - ACTIONS(7147), 1, - anon_sym_CARET, - ACTIONS(7149), 1, - anon_sym_PIPE, - ACTIONS(7151), 1, - anon_sym_AMP, - ACTIONS(7155), 1, + ACTIONS(7500), 1, anon_sym_GT_GT, - ACTIONS(7161), 1, + ACTIONS(7502), 1, anon_sym_DOT_DOT, - ACTIONS(7163), 1, + ACTIONS(7506), 1, + anon_sym_AMP, + ACTIONS(7512), 1, + anon_sym_as, + ACTIONS(7514), 1, + anon_sym_is, + ACTIONS(7518), 1, + anon_sym_CARET, + ACTIONS(7524), 1, + anon_sym_PIPE, + ACTIONS(7526), 1, anon_sym_AMP_AMP, - ACTIONS(7165), 1, + ACTIONS(7528), 1, anon_sym_PIPE_PIPE, - ACTIONS(7167), 1, + ACTIONS(7530), 1, anon_sym_QMARK_QMARK, - ACTIONS(7169), 1, - anon_sym_is, - ACTIONS(7705), 1, - anon_sym_RBRACK, - STATE(2485), 1, + STATE(2759), 1, sym_bracketed_argument_list, - STATE(3487), 1, + STATE(3381), 1, sym_argument_list, - STATE(7013), 1, - aux_sym_array_rank_specifier_repeat1, - ACTIONS(5306), 2, + ACTIONS(5304), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7137), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(7141), 2, + ACTIONS(7492), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7143), 2, + ACTIONS(7494), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7153), 2, + ACTIONS(7498), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7157), 2, + ACTIONS(7504), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(7508), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7159), 2, + ACTIONS(7510), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - STATE(4931), 9, + ACTIONS(5737), 3, + anon_sym_and, + anon_sym_or, + anon_sym_by, + STATE(4861), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -626098,7 +619221,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [121121] = 26, + [113408] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -626119,44 +619242,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4100), 1, - anon_sym_DOT, - ACTIONS(4102), 1, - anon_sym_DASH_GT, - ACTIONS(5264), 1, - anon_sym_LPAREN, - ACTIONS(5302), 1, - anon_sym_LBRACK, - ACTIONS(5304), 1, - anon_sym_BANG, - ACTIONS(6475), 1, - anon_sym_switch, - ACTIONS(6489), 1, - anon_sym_with, - ACTIONS(7697), 1, - anon_sym_SLASH, - ACTIONS(7703), 1, - anon_sym_DOT_DOT, - STATE(2808), 1, - sym_bracketed_argument_list, - STATE(3487), 1, - sym_argument_list, - ACTIONS(5306), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(7695), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(5664), 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(4932), 9, + STATE(4862), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -626166,7 +619252,25 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5660), 15, + ACTIONS(5406), 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(3809), 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, @@ -626174,15 +619278,21 @@ 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, anon_sym_PIPE_PIPE, anon_sym_QMARK_QMARK, - anon_sym_equals, + anon_sym_into, anon_sym_as, anon_sym_is, - [121231] = 22, + anon_sym_DASH_GT, + anon_sym_with, + [113492] = 24, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -626203,26 +619313,30 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4100), 1, + ACTIONS(4427), 1, anon_sym_DOT, - ACTIONS(4102), 1, + ACTIONS(4429), 1, anon_sym_DASH_GT, - ACTIONS(5264), 1, + ACTIONS(6557), 1, anon_sym_LPAREN, - ACTIONS(5304), 1, - anon_sym_BANG, - ACTIONS(5573), 1, + ACTIONS(6607), 1, anon_sym_LBRACK, - ACTIONS(7458), 1, + ACTIONS(6613), 1, + anon_sym_BANG, + ACTIONS(6637), 1, + anon_sym_switch, + ACTIONS(6651), 1, + anon_sym_with, + ACTIONS(6735), 1, anon_sym_DOT_DOT, - STATE(2485), 1, + STATE(3188), 1, sym_bracketed_argument_list, - STATE(3487), 1, + STATE(4584), 1, sym_argument_list, - ACTIONS(5306), 2, + ACTIONS(6615), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1223), 9, + ACTIONS(5739), 9, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, @@ -626232,7 +619346,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_AMP, anon_sym_GT_GT, - STATE(4933), 9, + STATE(4863), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -626242,10 +619356,10 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(1221), 19, - anon_sym_SEMI, + ACTIONS(5737), 17, + sym_interpolation_close_brace, + anon_sym_COLON, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_STAR, anon_sym_PERCENT, anon_sym_CARET, @@ -626255,14 +619369,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_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_QMARK_QMARK, anon_sym_as, anon_sym_is, - anon_sym_with, - [121333] = 35, + [113598] = 35, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -626283,69 +619395,69 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4100), 1, + ACTIONS(4427), 1, anon_sym_DOT, - ACTIONS(4102), 1, + ACTIONS(4429), 1, anon_sym_DASH_GT, - ACTIONS(5264), 1, + ACTIONS(6557), 1, anon_sym_LPAREN, - ACTIONS(5302), 1, + ACTIONS(6607), 1, anon_sym_LBRACK, - ACTIONS(5304), 1, + ACTIONS(6613), 1, anon_sym_BANG, - ACTIONS(6475), 1, + ACTIONS(6637), 1, anon_sym_switch, - ACTIONS(6489), 1, + ACTIONS(6651), 1, anon_sym_with, - ACTIONS(7697), 1, + ACTIONS(6719), 1, anon_sym_SLASH, - ACTIONS(7701), 1, + ACTIONS(6725), 1, + anon_sym_AMP, + ACTIONS(6729), 1, anon_sym_GT_GT, - ACTIONS(7703), 1, + ACTIONS(6735), 1, anon_sym_DOT_DOT, - ACTIONS(7709), 1, - anon_sym_AMP, - ACTIONS(7715), 1, + ACTIONS(6743), 1, anon_sym_as, - ACTIONS(7717), 1, + ACTIONS(6745), 1, anon_sym_is, - STATE(2808), 1, + STATE(3188), 1, sym_bracketed_argument_list, - STATE(3487), 1, + STATE(4584), 1, sym_argument_list, - ACTIONS(5306), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5664), 2, + ACTIONS(5739), 2, anon_sym_QMARK, anon_sym_PIPE, - ACTIONS(7693), 2, + ACTIONS(6615), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6711), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(6715), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7695), 2, + ACTIONS(6717), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7699), 2, + ACTIONS(6727), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7707), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(7711), 2, + ACTIONS(6731), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7713), 2, + ACTIONS(6733), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5660), 7, + ACTIONS(5737), 7, + 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, - anon_sym_equals, - STATE(4934), 9, + STATE(4864), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -626355,7 +619467,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [121461] = 36, + [113726] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -626376,217 +619488,74 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4100), 1, + ACTIONS(4042), 1, anon_sym_DOT, - ACTIONS(4102), 1, + ACTIONS(4044), 1, anon_sym_DASH_GT, - ACTIONS(5264), 1, + ACTIONS(5257), 1, anon_sym_LPAREN, - ACTIONS(5302), 1, + ACTIONS(5300), 1, anon_sym_LBRACK, - ACTIONS(5304), 1, + ACTIONS(5302), 1, anon_sym_BANG, - ACTIONS(6475), 1, + ACTIONS(6495), 1, anon_sym_switch, - ACTIONS(6489), 1, + ACTIONS(6509), 1, anon_sym_with, - ACTIONS(7697), 1, + ACTIONS(7496), 1, anon_sym_SLASH, - ACTIONS(7701), 1, + ACTIONS(7500), 1, anon_sym_GT_GT, - ACTIONS(7703), 1, + ACTIONS(7502), 1, anon_sym_DOT_DOT, - ACTIONS(7709), 1, + ACTIONS(7506), 1, anon_sym_AMP, - ACTIONS(7715), 1, + ACTIONS(7512), 1, anon_sym_as, - ACTIONS(7717), 1, + ACTIONS(7514), 1, anon_sym_is, - ACTIONS(7719), 1, + ACTIONS(7518), 1, anon_sym_CARET, - STATE(2808), 1, + ACTIONS(7524), 1, + anon_sym_PIPE, + ACTIONS(7526), 1, + anon_sym_AMP_AMP, + ACTIONS(7528), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7530), 1, + anon_sym_QMARK_QMARK, + ACTIONS(7532), 1, + anon_sym_QMARK, + STATE(2759), 1, sym_bracketed_argument_list, - STATE(3487), 1, + STATE(3381), 1, sym_argument_list, - ACTIONS(5306), 2, + ACTIONS(5304), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5664), 2, - anon_sym_QMARK, - anon_sym_PIPE, - ACTIONS(7693), 2, + ACTIONS(7492), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7695), 2, + ACTIONS(7494), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7699), 2, + ACTIONS(7498), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7707), 2, + ACTIONS(7504), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7711), 2, + ACTIONS(7508), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7713), 2, + ACTIONS(7510), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5660), 6, - anon_sym_and, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_QMARK_QMARK, - anon_sym_equals, - 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, - [121591] = 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(3881), 1, - anon_sym_LBRACE, - ACTIONS(3897), 1, - sym_discard, - ACTIONS(6823), 1, - sym__identifier_token, - ACTIONS(6827), 1, - anon_sym_LPAREN, - ACTIONS(7588), 1, - anon_sym_COMMA, - ACTIONS(7721), 1, - anon_sym_RPAREN, - STATE(2571), 1, - sym__reserved_identifier, - STATE(3463), 1, - sym_parenthesized_variable_designation, - STATE(3492), 1, - sym__variable_designation, - STATE(5279), 1, - sym_positional_pattern_clause, - STATE(5682), 1, - sym_property_pattern_clause, - STATE(6412), 1, - sym_identifier, - STATE(7311), 1, - sym_parameter_list, - STATE(7536), 1, - sym__lambda_parameters, - ACTIONS(3883), 2, + ACTIONS(5709), 3, anon_sym_and, anon_sym_or, - STATE(4936), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - ACTIONS(6825), 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, - [121703] = 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(3881), 1, - anon_sym_LBRACE, - ACTIONS(3897), 1, - sym_discard, - ACTIONS(6823), 1, - sym__identifier_token, - ACTIONS(6827), 1, - anon_sym_LPAREN, - ACTIONS(7588), 1, - anon_sym_COMMA, - ACTIONS(7723), 1, - anon_sym_RPAREN, - STATE(2571), 1, - sym__reserved_identifier, - STATE(3463), 1, - sym_parenthesized_variable_designation, - STATE(3492), 1, - sym__variable_designation, - STATE(5279), 1, - sym_positional_pattern_clause, - STATE(5682), 1, - sym_property_pattern_clause, - STATE(6412), 1, - sym_identifier, - STATE(7311), 1, - sym_parameter_list, - STATE(7536), 1, - sym__lambda_parameters, - ACTIONS(3883), 2, - anon_sym_and, - anon_sym_or, - STATE(4937), 9, + STATE(4865), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -626596,30 +619565,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(6825), 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, - [121815] = 34, + [113864] = 22, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -626640,78 +619586,66 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4100), 1, + ACTIONS(4042), 1, anon_sym_DOT, - ACTIONS(4102), 1, + ACTIONS(4044), 1, anon_sym_DASH_GT, - ACTIONS(5264), 1, + ACTIONS(5257), 1, anon_sym_LPAREN, - ACTIONS(5302), 1, + ACTIONS(5300), 1, anon_sym_LBRACK, - ACTIONS(5304), 1, + ACTIONS(5302), 1, anon_sym_BANG, - ACTIONS(6475), 1, - anon_sym_switch, - ACTIONS(6489), 1, - anon_sym_with, - ACTIONS(7697), 1, - anon_sym_SLASH, - ACTIONS(7701), 1, - anon_sym_GT_GT, - ACTIONS(7703), 1, + ACTIONS(7502), 1, anon_sym_DOT_DOT, - ACTIONS(7715), 1, - anon_sym_as, - ACTIONS(7717), 1, - anon_sym_is, - STATE(2808), 1, + STATE(2759), 1, sym_bracketed_argument_list, - STATE(3487), 1, + STATE(3381), 1, sym_argument_list, - ACTIONS(5306), 2, + ACTIONS(5304), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7693), 2, + ACTIONS(5743), 9, + anon_sym_LT, + anon_sym_GT, + anon_sym_QMARK, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7695), 2, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT_GT, + STATE(4866), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + ACTIONS(5741), 19, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7699), 2, + anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7707), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(7711), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7713), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5664), 3, - anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_AMP, - ACTIONS(5660), 7, - anon_sym_CARET, + anon_sym_switch, anon_sym_and, anon_sym_or, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_QMARK_QMARK, - anon_sym_equals, - STATE(4938), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - [121941] = 27, + anon_sym_by, + anon_sym_as, + anon_sym_is, + anon_sym_with, + [113966] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -626732,45 +619666,74 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4100), 1, + ACTIONS(4042), 1, anon_sym_DOT, - ACTIONS(4102), 1, + ACTIONS(4044), 1, anon_sym_DASH_GT, - ACTIONS(5264), 1, + ACTIONS(5257), 1, anon_sym_LPAREN, - ACTIONS(5302), 1, + ACTIONS(5300), 1, anon_sym_LBRACK, - ACTIONS(5304), 1, + ACTIONS(5302), 1, anon_sym_BANG, - ACTIONS(6475), 1, + ACTIONS(6495), 1, anon_sym_switch, - ACTIONS(6489), 1, + ACTIONS(6509), 1, anon_sym_with, - ACTIONS(7697), 1, + ACTIONS(7496), 1, anon_sym_SLASH, - ACTIONS(7703), 1, + ACTIONS(7500), 1, + anon_sym_GT_GT, + ACTIONS(7502), 1, anon_sym_DOT_DOT, - STATE(2808), 1, + ACTIONS(7506), 1, + anon_sym_AMP, + ACTIONS(7512), 1, + anon_sym_as, + ACTIONS(7514), 1, + anon_sym_is, + ACTIONS(7518), 1, + anon_sym_CARET, + ACTIONS(7524), 1, + anon_sym_PIPE, + ACTIONS(7526), 1, + anon_sym_AMP_AMP, + ACTIONS(7528), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7530), 1, + anon_sym_QMARK_QMARK, + ACTIONS(7532), 1, + anon_sym_QMARK, + STATE(2759), 1, sym_bracketed_argument_list, - STATE(3487), 1, + STATE(3381), 1, sym_argument_list, - ACTIONS(5306), 2, + ACTIONS(5304), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7693), 2, + ACTIONS(7492), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7695), 2, + ACTIONS(7494), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(5664), 6, + ACTIONS(7498), 2, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + ACTIONS(7504), 2, anon_sym_LT, anon_sym_GT, - anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT_GT, - STATE(4939), 9, + ACTIONS(7508), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(7510), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(5849), 3, + anon_sym_and, + anon_sym_or, + anon_sym_by, + STATE(4867), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -626780,23 +619743,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5660), 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_equals, - anon_sym_as, - anon_sym_is, - [122053] = 33, + [114104] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -626817,67 +619764,74 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4100), 1, + ACTIONS(4042), 1, anon_sym_DOT, - ACTIONS(4102), 1, + ACTIONS(4044), 1, anon_sym_DASH_GT, - ACTIONS(5264), 1, + ACTIONS(5257), 1, anon_sym_LPAREN, - ACTIONS(5302), 1, + ACTIONS(5300), 1, anon_sym_LBRACK, - ACTIONS(5304), 1, + ACTIONS(5302), 1, anon_sym_BANG, - ACTIONS(6475), 1, + ACTIONS(6495), 1, anon_sym_switch, - ACTIONS(6489), 1, + ACTIONS(6509), 1, anon_sym_with, - ACTIONS(7697), 1, + ACTIONS(7496), 1, anon_sym_SLASH, - ACTIONS(7701), 1, + ACTIONS(7500), 1, anon_sym_GT_GT, - ACTIONS(7703), 1, + ACTIONS(7502), 1, anon_sym_DOT_DOT, - ACTIONS(7715), 1, + ACTIONS(7506), 1, + anon_sym_AMP, + ACTIONS(7512), 1, anon_sym_as, - ACTIONS(7717), 1, + ACTIONS(7514), 1, anon_sym_is, - STATE(2808), 1, + ACTIONS(7518), 1, + anon_sym_CARET, + ACTIONS(7524), 1, + anon_sym_PIPE, + ACTIONS(7526), 1, + anon_sym_AMP_AMP, + ACTIONS(7528), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7530), 1, + anon_sym_QMARK_QMARK, + ACTIONS(7532), 1, + anon_sym_QMARK, + STATE(2759), 1, sym_bracketed_argument_list, - STATE(3487), 1, + STATE(3381), 1, sym_argument_list, - ACTIONS(5306), 2, + ACTIONS(5304), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7693), 2, + ACTIONS(7492), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7695), 2, + ACTIONS(7494), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7699), 2, + ACTIONS(7498), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7707), 2, + ACTIONS(7504), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7713), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(5664), 3, - anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_AMP, - ACTIONS(5660), 9, - anon_sym_CARET, + ACTIONS(7508), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + ACTIONS(7510), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4996), 3, anon_sym_and, anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_QMARK_QMARK, - anon_sym_equals, - STATE(4940), 9, + anon_sym_by, + STATE(4868), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -626887,7 +619841,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [122177] = 37, + [114242] = 42, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -626908,71 +619862,76 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4100), 1, + ACTIONS(2695), 1, + anon_sym_COMMA, + ACTIONS(4042), 1, anon_sym_DOT, - ACTIONS(4102), 1, + ACTIONS(4044), 1, anon_sym_DASH_GT, - ACTIONS(5264), 1, + ACTIONS(5257), 1, anon_sym_LPAREN, ACTIONS(5302), 1, - anon_sym_LBRACK, - ACTIONS(5304), 1, anon_sym_BANG, - ACTIONS(5664), 1, - anon_sym_QMARK, - ACTIONS(6475), 1, + ACTIONS(5549), 1, + anon_sym_LBRACK, + ACTIONS(6355), 1, anon_sym_switch, - ACTIONS(6489), 1, + ACTIONS(6369), 1, anon_sym_with, - ACTIONS(7697), 1, + ACTIONS(6811), 1, + anon_sym_as, + ACTIONS(7231), 1, + anon_sym_QMARK, + ACTIONS(7237), 1, anon_sym_SLASH, - ACTIONS(7701), 1, + ACTIONS(7239), 1, + anon_sym_CARET, + ACTIONS(7241), 1, + anon_sym_PIPE, + ACTIONS(7243), 1, + anon_sym_AMP, + ACTIONS(7247), 1, anon_sym_GT_GT, - ACTIONS(7703), 1, + ACTIONS(7253), 1, anon_sym_DOT_DOT, - ACTIONS(7709), 1, - anon_sym_AMP, - ACTIONS(7715), 1, - anon_sym_as, - ACTIONS(7717), 1, + ACTIONS(7255), 1, + anon_sym_AMP_AMP, + ACTIONS(7257), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7259), 1, + anon_sym_QMARK_QMARK, + ACTIONS(7261), 1, anon_sym_is, - ACTIONS(7719), 1, - anon_sym_CARET, - ACTIONS(7725), 1, - anon_sym_PIPE, - STATE(2808), 1, + ACTIONS(7534), 1, + anon_sym_RBRACK, + STATE(2467), 1, sym_bracketed_argument_list, - STATE(3487), 1, + STATE(3381), 1, sym_argument_list, - ACTIONS(5306), 2, + STATE(6786), 1, + aux_sym_array_rank_specifier_repeat1, + ACTIONS(5304), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7693), 2, + ACTIONS(7229), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(7233), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7695), 2, + ACTIONS(7235), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7699), 2, + ACTIONS(7245), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7707), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(7711), 2, + ACTIONS(7249), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7713), 2, + ACTIONS(7251), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5660), 6, - anon_sym_and, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_QMARK_QMARK, - anon_sym_equals, - STATE(4941), 9, + STATE(4869), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -626982,7 +619941,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [122309] = 38, + [114384] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -627003,72 +619962,74 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4100), 1, + ACTIONS(4042), 1, anon_sym_DOT, - ACTIONS(4102), 1, + ACTIONS(4044), 1, anon_sym_DASH_GT, - ACTIONS(5264), 1, + ACTIONS(5257), 1, anon_sym_LPAREN, - ACTIONS(5302), 1, + ACTIONS(5300), 1, anon_sym_LBRACK, - ACTIONS(5304), 1, + ACTIONS(5302), 1, anon_sym_BANG, - ACTIONS(5664), 1, - anon_sym_QMARK, - ACTIONS(6475), 1, + ACTIONS(6495), 1, anon_sym_switch, - ACTIONS(6489), 1, + ACTIONS(6509), 1, anon_sym_with, - ACTIONS(7697), 1, + ACTIONS(7496), 1, anon_sym_SLASH, - ACTIONS(7701), 1, + ACTIONS(7500), 1, anon_sym_GT_GT, - ACTIONS(7703), 1, + ACTIONS(7502), 1, anon_sym_DOT_DOT, - ACTIONS(7709), 1, + ACTIONS(7506), 1, anon_sym_AMP, - ACTIONS(7715), 1, + ACTIONS(7512), 1, anon_sym_as, - ACTIONS(7717), 1, + ACTIONS(7514), 1, anon_sym_is, - ACTIONS(7719), 1, + ACTIONS(7518), 1, anon_sym_CARET, - ACTIONS(7725), 1, + ACTIONS(7524), 1, anon_sym_PIPE, - ACTIONS(7727), 1, + ACTIONS(7526), 1, anon_sym_AMP_AMP, - STATE(2808), 1, + ACTIONS(7528), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7530), 1, + anon_sym_QMARK_QMARK, + ACTIONS(7532), 1, + anon_sym_QMARK, + STATE(2759), 1, sym_bracketed_argument_list, - STATE(3487), 1, + STATE(3381), 1, sym_argument_list, - ACTIONS(5306), 2, + ACTIONS(5304), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7693), 2, + ACTIONS(7492), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7695), 2, + ACTIONS(7494), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7699), 2, + ACTIONS(7498), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7707), 2, + ACTIONS(7504), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7711), 2, + ACTIONS(7508), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7713), 2, + ACTIONS(7510), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5660), 5, + ACTIONS(5652), 3, anon_sym_and, anon_sym_or, - anon_sym_PIPE_PIPE, - anon_sym_QMARK_QMARK, - anon_sym_equals, - STATE(4942), 9, + anon_sym_by, + STATE(4870), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -627078,7 +620039,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [122443] = 41, + [114522] = 42, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -627099,75 +620060,76 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4100), 1, + ACTIONS(4042), 1, anon_sym_DOT, - ACTIONS(4102), 1, + ACTIONS(4044), 1, anon_sym_DASH_GT, - ACTIONS(5264), 1, + ACTIONS(5257), 1, anon_sym_LPAREN, - ACTIONS(5304), 1, + ACTIONS(5302), 1, anon_sym_BANG, - ACTIONS(5573), 1, + ACTIONS(5549), 1, anon_sym_LBRACK, - ACTIONS(6343), 1, + ACTIONS(6355), 1, anon_sym_switch, - ACTIONS(6357), 1, + ACTIONS(6369), 1, anon_sym_with, - ACTIONS(6813), 1, + ACTIONS(6811), 1, anon_sym_as, - ACTIONS(7169), 1, - anon_sym_is, - ACTIONS(7442), 1, + ACTIONS(7213), 1, + anon_sym_COMMA, + ACTIONS(7215), 1, + anon_sym_RBRACE, + ACTIONS(7231), 1, + anon_sym_QMARK, + ACTIONS(7237), 1, anon_sym_SLASH, - ACTIONS(7444), 1, + ACTIONS(7239), 1, anon_sym_CARET, - ACTIONS(7446), 1, + ACTIONS(7241), 1, anon_sym_PIPE, - ACTIONS(7448), 1, + ACTIONS(7243), 1, anon_sym_AMP, - ACTIONS(7452), 1, + ACTIONS(7247), 1, anon_sym_GT_GT, - ACTIONS(7458), 1, + ACTIONS(7253), 1, anon_sym_DOT_DOT, - ACTIONS(7621), 1, + ACTIONS(7255), 1, anon_sym_AMP_AMP, - ACTIONS(7623), 1, + ACTIONS(7257), 1, anon_sym_PIPE_PIPE, - ACTIONS(7625), 1, + ACTIONS(7259), 1, anon_sym_QMARK_QMARK, - ACTIONS(7659), 1, - anon_sym_QMARK, - ACTIONS(7729), 1, - anon_sym_SEMI, - STATE(2485), 1, + ACTIONS(7261), 1, + anon_sym_is, + STATE(2467), 1, sym_bracketed_argument_list, - STATE(3487), 1, + STATE(3381), 1, sym_argument_list, - ACTIONS(5306), 2, + STATE(6895), 1, + aux_sym__for_statement_conditions_repeat1, + ACTIONS(5304), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5858), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - ACTIONS(7436), 2, + ACTIONS(7229), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7438), 2, + ACTIONS(7233), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7440), 2, + ACTIONS(7235), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7450), 2, + ACTIONS(7245), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7454), 2, + ACTIONS(7249), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7456), 2, + ACTIONS(7251), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - STATE(4943), 9, + STATE(4871), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -627177,7 +620139,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [122583] = 29, + [114664] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -627198,49 +620160,74 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4443), 1, - anon_sym_DASH_GT, - ACTIONS(4533), 1, + ACTIONS(4042), 1, anon_sym_DOT, - ACTIONS(6574), 1, + ACTIONS(4044), 1, + anon_sym_DASH_GT, + ACTIONS(5257), 1, anon_sym_LPAREN, - ACTIONS(6619), 1, + ACTIONS(5300), 1, anon_sym_LBRACK, - ACTIONS(6625), 1, + ACTIONS(5302), 1, anon_sym_BANG, - ACTIONS(6649), 1, + ACTIONS(6495), 1, anon_sym_switch, - ACTIONS(6663), 1, + ACTIONS(6509), 1, anon_sym_with, - ACTIONS(6968), 1, + ACTIONS(7496), 1, anon_sym_SLASH, - ACTIONS(6978), 1, + ACTIONS(7500), 1, anon_sym_GT_GT, - ACTIONS(6984), 1, + ACTIONS(7502), 1, anon_sym_DOT_DOT, - STATE(3173), 1, + ACTIONS(7506), 1, + anon_sym_AMP, + ACTIONS(7512), 1, + anon_sym_as, + ACTIONS(7514), 1, + anon_sym_is, + ACTIONS(7518), 1, + anon_sym_CARET, + ACTIONS(7524), 1, + anon_sym_PIPE, + ACTIONS(7526), 1, + anon_sym_AMP_AMP, + ACTIONS(7528), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7530), 1, + anon_sym_QMARK_QMARK, + ACTIONS(7532), 1, + anon_sym_QMARK, + STATE(2759), 1, sym_bracketed_argument_list, - STATE(4583), 1, + STATE(3381), 1, sym_argument_list, - ACTIONS(6627), 2, + ACTIONS(5304), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6964), 2, + ACTIONS(7492), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6966), 2, + ACTIONS(7494), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(6976), 2, + ACTIONS(7498), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(5664), 5, + ACTIONS(7504), 2, anon_sym_LT, anon_sym_GT, - anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_AMP, - STATE(4944), 9, + ACTIONS(7508), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(7510), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(5801), 3, + anon_sym_and, + anon_sym_or, + anon_sym_by, + STATE(4872), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -627250,21 +620237,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5660), 13, - 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_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_QMARK_QMARK, - anon_sym_as, - anon_sym_is, - [122699] = 26, + [114802] = 41, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -627285,124 +620258,75 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4443), 1, - anon_sym_DASH_GT, - ACTIONS(4533), 1, + ACTIONS(4042), 1, anon_sym_DOT, - ACTIONS(6574), 1, + ACTIONS(4044), 1, + anon_sym_DASH_GT, + ACTIONS(5257), 1, anon_sym_LPAREN, - ACTIONS(6619), 1, - anon_sym_LBRACK, - ACTIONS(6625), 1, + ACTIONS(5302), 1, anon_sym_BANG, - ACTIONS(6649), 1, + ACTIONS(5549), 1, + anon_sym_LBRACK, + ACTIONS(5801), 1, + anon_sym_RPAREN, + ACTIONS(6355), 1, anon_sym_switch, - ACTIONS(6663), 1, + ACTIONS(6369), 1, anon_sym_with, - ACTIONS(6968), 1, - anon_sym_SLASH, - ACTIONS(6984), 1, - anon_sym_DOT_DOT, - STATE(3173), 1, - sym_bracketed_argument_list, - STATE(4583), 1, - sym_argument_list, - ACTIONS(6627), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6966), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(5664), 8, - anon_sym_LT, - anon_sym_GT, + ACTIONS(6811), 1, + anon_sym_as, + ACTIONS(7231), 1, anon_sym_QMARK, - anon_sym_PLUS, - anon_sym_DASH, + ACTIONS(7237), 1, + anon_sym_SLASH, + ACTIONS(7239), 1, + anon_sym_CARET, + ACTIONS(7241), 1, anon_sym_PIPE, + ACTIONS(7243), 1, anon_sym_AMP, + ACTIONS(7247), 1, anon_sym_GT_GT, - STATE(4945), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - ACTIONS(5660), 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, + ACTIONS(7253), 1, + anon_sym_DOT_DOT, + ACTIONS(7255), 1, anon_sym_AMP_AMP, + ACTIONS(7257), 1, anon_sym_PIPE_PIPE, + ACTIONS(7259), 1, anon_sym_QMARK_QMARK, - anon_sym_as, + ACTIONS(7261), 1, anon_sym_is, - [122809] = 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(4443), 1, - anon_sym_DASH_GT, - ACTIONS(4533), 1, - anon_sym_DOT, - ACTIONS(6574), 1, - anon_sym_LPAREN, - ACTIONS(6619), 1, - anon_sym_LBRACK, - ACTIONS(6625), 1, - anon_sym_BANG, - ACTIONS(6649), 1, - anon_sym_switch, - ACTIONS(6663), 1, - anon_sym_with, - ACTIONS(6984), 1, - anon_sym_DOT_DOT, - STATE(3173), 1, + STATE(2467), 1, sym_bracketed_argument_list, - STATE(4583), 1, + STATE(3381), 1, sym_argument_list, - ACTIONS(6627), 2, + ACTIONS(5304), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5664), 9, + ACTIONS(7229), 2, 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(4946), 9, + ACTIONS(7235), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(7245), 2, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + ACTIONS(7249), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(7251), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(7536), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + STATE(4873), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -627412,25 +620336,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5660), 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, - 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, - [122915] = 35, + [114942] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -627451,69 +620357,74 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4443), 1, - anon_sym_DASH_GT, - ACTIONS(4533), 1, + ACTIONS(4042), 1, anon_sym_DOT, - ACTIONS(6574), 1, + ACTIONS(4044), 1, + anon_sym_DASH_GT, + ACTIONS(5257), 1, anon_sym_LPAREN, - ACTIONS(6619), 1, - anon_sym_LBRACK, - ACTIONS(6625), 1, + ACTIONS(5302), 1, anon_sym_BANG, - ACTIONS(6649), 1, + ACTIONS(5549), 1, + anon_sym_LBRACK, + ACTIONS(6355), 1, anon_sym_switch, - ACTIONS(6663), 1, + ACTIONS(6369), 1, anon_sym_with, - ACTIONS(6761), 1, + ACTIONS(6811), 1, anon_sym_as, - ACTIONS(6968), 1, + ACTIONS(7231), 1, + anon_sym_QMARK, + ACTIONS(7237), 1, anon_sym_SLASH, - ACTIONS(6974), 1, + ACTIONS(7239), 1, + anon_sym_CARET, + ACTIONS(7241), 1, + anon_sym_PIPE, + ACTIONS(7243), 1, anon_sym_AMP, - ACTIONS(6978), 1, + ACTIONS(7247), 1, anon_sym_GT_GT, - ACTIONS(6984), 1, + ACTIONS(7253), 1, anon_sym_DOT_DOT, - ACTIONS(6992), 1, + ACTIONS(7255), 1, + anon_sym_AMP_AMP, + ACTIONS(7257), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7259), 1, + anon_sym_QMARK_QMARK, + ACTIONS(7261), 1, anon_sym_is, - STATE(3173), 1, + STATE(2467), 1, sym_bracketed_argument_list, - STATE(4583), 1, + STATE(3381), 1, sym_argument_list, - ACTIONS(5664), 2, - anon_sym_QMARK, - anon_sym_PIPE, - ACTIONS(6627), 2, + ACTIONS(5304), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6960), 2, + ACTIONS(7229), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(6964), 2, + ACTIONS(7233), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6966), 2, + ACTIONS(7235), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(6976), 2, + ACTIONS(7245), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(6980), 2, + ACTIONS(7249), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6982), 2, + ACTIONS(7251), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5660), 7, - sym_interpolation_close_brace, - anon_sym_COLON, + ACTIONS(7536), 3, anon_sym_COMMA, - anon_sym_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_QMARK_QMARK, - STATE(4947), 9, + anon_sym_RBRACK, + anon_sym_RPAREN, + STATE(4874), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -627523,7 +620434,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [123043] = 36, + [115080] = 36, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -627544,70 +620455,70 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4443), 1, - anon_sym_DASH_GT, - ACTIONS(4533), 1, + ACTIONS(4427), 1, anon_sym_DOT, - ACTIONS(6574), 1, + ACTIONS(4429), 1, + anon_sym_DASH_GT, + ACTIONS(6557), 1, anon_sym_LPAREN, - ACTIONS(6619), 1, + ACTIONS(6607), 1, anon_sym_LBRACK, - ACTIONS(6625), 1, + ACTIONS(6613), 1, anon_sym_BANG, - ACTIONS(6649), 1, + ACTIONS(6637), 1, anon_sym_switch, - ACTIONS(6663), 1, + ACTIONS(6651), 1, anon_sym_with, - ACTIONS(6761), 1, - anon_sym_as, - ACTIONS(6968), 1, + ACTIONS(6719), 1, anon_sym_SLASH, - ACTIONS(6970), 1, + ACTIONS(6721), 1, anon_sym_CARET, - ACTIONS(6974), 1, + ACTIONS(6725), 1, anon_sym_AMP, - ACTIONS(6978), 1, + ACTIONS(6729), 1, anon_sym_GT_GT, - ACTIONS(6984), 1, + ACTIONS(6735), 1, anon_sym_DOT_DOT, - ACTIONS(6992), 1, + ACTIONS(6743), 1, + anon_sym_as, + ACTIONS(6745), 1, anon_sym_is, - STATE(3173), 1, + STATE(3188), 1, sym_bracketed_argument_list, - STATE(4583), 1, + STATE(4584), 1, sym_argument_list, - ACTIONS(5664), 2, + ACTIONS(5739), 2, anon_sym_QMARK, anon_sym_PIPE, - ACTIONS(6627), 2, + ACTIONS(6615), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6960), 2, + ACTIONS(6711), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(6964), 2, + ACTIONS(6715), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6966), 2, + ACTIONS(6717), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(6976), 2, + ACTIONS(6727), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(6980), 2, + ACTIONS(6731), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6982), 2, + ACTIONS(6733), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5660), 6, + ACTIONS(5737), 6, sym_interpolation_close_brace, anon_sym_COLON, anon_sym_COMMA, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_QMARK_QMARK, - STATE(4948), 9, + STATE(4875), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -627617,7 +620528,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [123173] = 34, + [115210] = 34, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -627638,60 +620549,60 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4443), 1, - anon_sym_DASH_GT, - ACTIONS(4533), 1, + ACTIONS(4427), 1, anon_sym_DOT, - ACTIONS(6574), 1, + ACTIONS(4429), 1, + anon_sym_DASH_GT, + ACTIONS(6557), 1, anon_sym_LPAREN, - ACTIONS(6619), 1, + ACTIONS(6607), 1, anon_sym_LBRACK, - ACTIONS(6625), 1, + ACTIONS(6613), 1, anon_sym_BANG, - ACTIONS(6649), 1, + ACTIONS(6637), 1, anon_sym_switch, - ACTIONS(6663), 1, + ACTIONS(6651), 1, anon_sym_with, - ACTIONS(6761), 1, - anon_sym_as, - ACTIONS(6968), 1, + ACTIONS(6719), 1, anon_sym_SLASH, - ACTIONS(6978), 1, + ACTIONS(6729), 1, anon_sym_GT_GT, - ACTIONS(6984), 1, + ACTIONS(6735), 1, anon_sym_DOT_DOT, - ACTIONS(6992), 1, + ACTIONS(6743), 1, + anon_sym_as, + ACTIONS(6745), 1, anon_sym_is, - STATE(3173), 1, + STATE(3188), 1, sym_bracketed_argument_list, - STATE(4583), 1, + STATE(4584), 1, sym_argument_list, - ACTIONS(6627), 2, + ACTIONS(6615), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6960), 2, + ACTIONS(6711), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(6964), 2, + ACTIONS(6715), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6966), 2, + ACTIONS(6717), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(6976), 2, + ACTIONS(6727), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(6980), 2, + ACTIONS(6731), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6982), 2, + ACTIONS(6733), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5664), 3, + ACTIONS(5739), 3, anon_sym_QMARK, anon_sym_PIPE, anon_sym_AMP, - ACTIONS(5660), 7, + ACTIONS(5737), 7, sym_interpolation_close_brace, anon_sym_COLON, anon_sym_COMMA, @@ -627699,7 +620610,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_QMARK_QMARK, - STATE(4949), 9, + STATE(4876), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -627709,7 +620620,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [123299] = 27, + [115336] = 27, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -627730,45 +620641,45 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4443), 1, - anon_sym_DASH_GT, - ACTIONS(4533), 1, + ACTIONS(4427), 1, anon_sym_DOT, - ACTIONS(6574), 1, + ACTIONS(4429), 1, + anon_sym_DASH_GT, + ACTIONS(6557), 1, anon_sym_LPAREN, - ACTIONS(6619), 1, + ACTIONS(6607), 1, anon_sym_LBRACK, - ACTIONS(6625), 1, + ACTIONS(6613), 1, anon_sym_BANG, - ACTIONS(6649), 1, + ACTIONS(6637), 1, anon_sym_switch, - ACTIONS(6663), 1, + ACTIONS(6651), 1, anon_sym_with, - ACTIONS(6968), 1, + ACTIONS(6719), 1, anon_sym_SLASH, - ACTIONS(6984), 1, + ACTIONS(6735), 1, anon_sym_DOT_DOT, - STATE(3173), 1, + STATE(3188), 1, sym_bracketed_argument_list, - STATE(4583), 1, + STATE(4584), 1, sym_argument_list, - ACTIONS(6627), 2, + ACTIONS(6615), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6964), 2, + ACTIONS(6715), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6966), 2, + ACTIONS(6717), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(5664), 6, + ACTIONS(5739), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT_GT, - STATE(4950), 9, + STATE(4877), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -627778,7 +620689,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5660), 15, + ACTIONS(5737), 15, sym_interpolation_close_brace, anon_sym_COLON, anon_sym_COMMA, @@ -627794,7 +620705,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_as, anon_sym_is, - [123411] = 33, + [115448] = 33, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -627815,57 +620726,57 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4443), 1, - anon_sym_DASH_GT, - ACTIONS(4533), 1, + ACTIONS(4427), 1, anon_sym_DOT, - ACTIONS(6574), 1, + ACTIONS(4429), 1, + anon_sym_DASH_GT, + ACTIONS(6557), 1, anon_sym_LPAREN, - ACTIONS(6619), 1, + ACTIONS(6607), 1, anon_sym_LBRACK, - ACTIONS(6625), 1, + ACTIONS(6613), 1, anon_sym_BANG, - ACTIONS(6649), 1, + ACTIONS(6637), 1, anon_sym_switch, - ACTIONS(6663), 1, + ACTIONS(6651), 1, anon_sym_with, - ACTIONS(6761), 1, - anon_sym_as, - ACTIONS(6968), 1, + ACTIONS(6719), 1, anon_sym_SLASH, - ACTIONS(6978), 1, + ACTIONS(6729), 1, anon_sym_GT_GT, - ACTIONS(6984), 1, + ACTIONS(6735), 1, anon_sym_DOT_DOT, - ACTIONS(6992), 1, + ACTIONS(6743), 1, + anon_sym_as, + ACTIONS(6745), 1, anon_sym_is, - STATE(3173), 1, + STATE(3188), 1, sym_bracketed_argument_list, - STATE(4583), 1, + STATE(4584), 1, sym_argument_list, - ACTIONS(6627), 2, + ACTIONS(6615), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6960), 2, + ACTIONS(6711), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(6964), 2, + ACTIONS(6715), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6966), 2, + ACTIONS(6717), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(6976), 2, + ACTIONS(6727), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(6982), 2, + ACTIONS(6733), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5664), 3, + ACTIONS(5739), 3, anon_sym_QMARK, anon_sym_PIPE, anon_sym_AMP, - ACTIONS(5660), 9, + ACTIONS(5737), 9, sym_interpolation_close_brace, anon_sym_COLON, anon_sym_COMMA, @@ -627875,7 +620786,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_QMARK_QMARK, - STATE(4951), 9, + STATE(4878), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -627885,7 +620796,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [123535] = 40, + [115572] = 37, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -627906,74 +620817,71 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4100), 1, + ACTIONS(4427), 1, anon_sym_DOT, - ACTIONS(4102), 1, + ACTIONS(4429), 1, anon_sym_DASH_GT, - ACTIONS(5264), 1, + ACTIONS(5739), 1, + anon_sym_QMARK, + ACTIONS(6557), 1, anon_sym_LPAREN, - ACTIONS(5302), 1, + ACTIONS(6607), 1, anon_sym_LBRACK, - ACTIONS(5304), 1, + ACTIONS(6613), 1, anon_sym_BANG, - ACTIONS(5664), 1, - anon_sym_QMARK, - ACTIONS(6475), 1, + ACTIONS(6637), 1, anon_sym_switch, - ACTIONS(6489), 1, + ACTIONS(6651), 1, anon_sym_with, - ACTIONS(7697), 1, + ACTIONS(6719), 1, anon_sym_SLASH, - ACTIONS(7701), 1, + ACTIONS(6721), 1, + anon_sym_CARET, + ACTIONS(6723), 1, + anon_sym_PIPE, + ACTIONS(6725), 1, + anon_sym_AMP, + ACTIONS(6729), 1, anon_sym_GT_GT, - ACTIONS(7703), 1, + ACTIONS(6735), 1, anon_sym_DOT_DOT, - ACTIONS(7709), 1, - anon_sym_AMP, - ACTIONS(7715), 1, + ACTIONS(6743), 1, anon_sym_as, - ACTIONS(7717), 1, + ACTIONS(6745), 1, anon_sym_is, - ACTIONS(7719), 1, - anon_sym_CARET, - ACTIONS(7725), 1, - anon_sym_PIPE, - ACTIONS(7727), 1, - anon_sym_AMP_AMP, - ACTIONS(7731), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7733), 1, - anon_sym_QMARK_QMARK, - STATE(2808), 1, + STATE(3188), 1, sym_bracketed_argument_list, - STATE(3487), 1, + STATE(4584), 1, sym_argument_list, - ACTIONS(5306), 2, + ACTIONS(6615), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7693), 2, + ACTIONS(6711), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(6715), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7695), 2, + ACTIONS(6717), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7699), 2, + ACTIONS(6727), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7707), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(7711), 2, + ACTIONS(6731), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7713), 2, + ACTIONS(6733), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5660), 3, - anon_sym_and, - anon_sym_or, - anon_sym_equals, - STATE(4952), 9, + ACTIONS(5737), 6, + sym_interpolation_close_brace, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, + STATE(4879), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -627983,7 +620891,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [123673] = 14, + [115704] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -628004,9 +620912,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(7735), 1, + ACTIONS(7538), 1, anon_sym_and, - STATE(4953), 9, + STATE(4880), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -628016,7 +620924,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(6069), 11, + ACTIONS(6097), 11, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, @@ -628028,9 +620936,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT, - ACTIONS(6067), 26, + ACTIONS(6095), 26, anon_sym_LBRACK, - anon_sym_COLON, anon_sym_LPAREN, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, @@ -628043,6 +620950,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_DOT_DOT, @@ -628055,7 +620963,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, anon_sym_DASH_GT, anon_sym_with, - [123759] = 37, + [115790] = 38, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -628076,71 +620984,172 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4443), 1, - anon_sym_DASH_GT, - ACTIONS(4533), 1, + ACTIONS(4427), 1, anon_sym_DOT, - ACTIONS(5664), 1, + ACTIONS(4429), 1, + anon_sym_DASH_GT, + ACTIONS(5739), 1, anon_sym_QMARK, - ACTIONS(6574), 1, + ACTIONS(6557), 1, anon_sym_LPAREN, - ACTIONS(6619), 1, + ACTIONS(6607), 1, anon_sym_LBRACK, - ACTIONS(6625), 1, + ACTIONS(6613), 1, anon_sym_BANG, - ACTIONS(6649), 1, + ACTIONS(6637), 1, anon_sym_switch, - ACTIONS(6663), 1, + ACTIONS(6651), 1, anon_sym_with, - ACTIONS(6761), 1, - anon_sym_as, - ACTIONS(6968), 1, + ACTIONS(6719), 1, anon_sym_SLASH, - ACTIONS(6970), 1, + ACTIONS(6721), 1, anon_sym_CARET, - ACTIONS(6972), 1, + ACTIONS(6723), 1, anon_sym_PIPE, - ACTIONS(6974), 1, + ACTIONS(6725), 1, anon_sym_AMP, - ACTIONS(6978), 1, + ACTIONS(6729), 1, anon_sym_GT_GT, - ACTIONS(6984), 1, + ACTIONS(6735), 1, anon_sym_DOT_DOT, - ACTIONS(6992), 1, + ACTIONS(6737), 1, + anon_sym_AMP_AMP, + ACTIONS(6743), 1, + anon_sym_as, + ACTIONS(6745), 1, anon_sym_is, - STATE(3173), 1, + STATE(3188), 1, sym_bracketed_argument_list, - STATE(4583), 1, + STATE(4584), 1, sym_argument_list, - ACTIONS(6627), 2, + ACTIONS(6615), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6960), 2, + ACTIONS(6711), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(6964), 2, + ACTIONS(6715), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6966), 2, + ACTIONS(6717), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(6976), 2, + ACTIONS(6727), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(6980), 2, + ACTIONS(6731), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6982), 2, + ACTIONS(6733), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5660), 6, + ACTIONS(5737), 5, sym_interpolation_close_brace, anon_sym_COLON, anon_sym_COMMA, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, + STATE(4881), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + [115924] = 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(2695), 1, + anon_sym_COMMA, + ACTIONS(4042), 1, + anon_sym_DOT, + ACTIONS(4044), 1, + anon_sym_DASH_GT, + ACTIONS(5257), 1, + anon_sym_LPAREN, + ACTIONS(5302), 1, + anon_sym_BANG, + ACTIONS(5549), 1, + anon_sym_LBRACK, + ACTIONS(6355), 1, + anon_sym_switch, + ACTIONS(6369), 1, + anon_sym_with, + ACTIONS(6811), 1, + anon_sym_as, + ACTIONS(7231), 1, + anon_sym_QMARK, + ACTIONS(7237), 1, + anon_sym_SLASH, + ACTIONS(7239), 1, + anon_sym_CARET, + ACTIONS(7241), 1, + anon_sym_PIPE, + ACTIONS(7243), 1, + anon_sym_AMP, + ACTIONS(7247), 1, + anon_sym_GT_GT, + ACTIONS(7253), 1, + anon_sym_DOT_DOT, + ACTIONS(7255), 1, anon_sym_AMP_AMP, + ACTIONS(7257), 1, anon_sym_PIPE_PIPE, + ACTIONS(7259), 1, anon_sym_QMARK_QMARK, - STATE(4954), 9, + ACTIONS(7261), 1, + anon_sym_is, + ACTIONS(7540), 1, + anon_sym_RBRACK, + STATE(2467), 1, + sym_bracketed_argument_list, + STATE(3381), 1, + sym_argument_list, + STATE(6934), 1, + aux_sym_array_rank_specifier_repeat1, + ACTIONS(5304), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7229), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(7233), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(7235), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(7245), 2, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + ACTIONS(7249), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(7251), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + STATE(4882), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -628150,7 +621159,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [123891] = 27, + [116066] = 27, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -628171,38 +621180,38 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(3881), 1, + ACTIONS(3861), 1, anon_sym_LBRACE, - ACTIONS(3897), 1, + ACTIONS(3877), 1, sym_discard, - ACTIONS(6823), 1, + ACTIONS(6969), 1, sym__identifier_token, - ACTIONS(6827), 1, + ACTIONS(6973), 1, anon_sym_LPAREN, - ACTIONS(7588), 1, + ACTIONS(7478), 1, anon_sym_COMMA, - ACTIONS(7737), 1, + ACTIONS(7542), 1, anon_sym_RPAREN, - STATE(2571), 1, + STATE(2565), 1, sym__reserved_identifier, - STATE(3463), 1, + STATE(3352), 1, sym_parenthesized_variable_designation, - STATE(3492), 1, + STATE(3422), 1, sym__variable_designation, - STATE(5279), 1, + STATE(5154), 1, sym_positional_pattern_clause, - STATE(5682), 1, + STATE(5691), 1, sym_property_pattern_clause, - STATE(6412), 1, + STATE(6424), 1, sym_identifier, - STATE(7311), 1, - sym_parameter_list, - STATE(7536), 1, + STATE(7378), 1, sym__lambda_parameters, - ACTIONS(3883), 2, + STATE(7531), 1, + sym_parameter_list, + ACTIONS(3867), 2, anon_sym_and, anon_sym_or, - STATE(4955), 9, + STATE(4883), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -628212,7 +621221,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(6825), 22, + ACTIONS(6971), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -628235,7 +621244,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [124003] = 27, + [116178] = 29, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -628256,38 +621265,49 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(3881), 1, - anon_sym_LBRACE, - ACTIONS(3897), 1, - sym_discard, - ACTIONS(6823), 1, - sym__identifier_token, - ACTIONS(6827), 1, + ACTIONS(4042), 1, + anon_sym_DOT, + ACTIONS(4044), 1, + anon_sym_DASH_GT, + ACTIONS(5257), 1, anon_sym_LPAREN, - ACTIONS(7588), 1, - anon_sym_COMMA, - ACTIONS(7739), 1, - anon_sym_RPAREN, - STATE(2571), 1, - sym__reserved_identifier, - STATE(3463), 1, - sym_parenthesized_variable_designation, - STATE(3492), 1, - sym__variable_designation, - STATE(5279), 1, - sym_positional_pattern_clause, - STATE(5682), 1, - sym_property_pattern_clause, - STATE(6412), 1, - sym_identifier, - STATE(7311), 1, - sym_parameter_list, - STATE(7536), 1, - sym__lambda_parameters, - ACTIONS(3883), 2, - anon_sym_and, - anon_sym_or, - STATE(4956), 9, + ACTIONS(5300), 1, + anon_sym_LBRACK, + ACTIONS(5302), 1, + anon_sym_BANG, + ACTIONS(6495), 1, + anon_sym_switch, + ACTIONS(6509), 1, + anon_sym_with, + ACTIONS(7548), 1, + anon_sym_SLASH, + ACTIONS(7552), 1, + anon_sym_GT_GT, + ACTIONS(7554), 1, + anon_sym_DOT_DOT, + STATE(2759), 1, + sym_bracketed_argument_list, + STATE(3381), 1, + sym_argument_list, + ACTIONS(5304), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7544), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(7546), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(7550), 2, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + ACTIONS(5739), 5, + anon_sym_LT, + anon_sym_GT, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_AMP, + STATE(4884), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -628297,30 +621317,21 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(6825), 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, + ACTIONS(5737), 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_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, anon_sym_equals, - anon_sym_let, - anon_sym_orderby, - anon_sym_ascending, - anon_sym_descending, - anon_sym_group, - anon_sym_by, - anon_sym_select, - [124115] = 40, + anon_sym_as, + anon_sym_is, + [116294] = 42, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -628341,74 +621352,76 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4100), 1, + ACTIONS(4042), 1, anon_sym_DOT, - ACTIONS(4102), 1, + ACTIONS(4044), 1, anon_sym_DASH_GT, - ACTIONS(5264), 1, + ACTIONS(5257), 1, anon_sym_LPAREN, ACTIONS(5302), 1, - anon_sym_LBRACK, - ACTIONS(5304), 1, anon_sym_BANG, - ACTIONS(6475), 1, + ACTIONS(5549), 1, + anon_sym_LBRACK, + ACTIONS(6355), 1, anon_sym_switch, - ACTIONS(6489), 1, + ACTIONS(6369), 1, anon_sym_with, - ACTIONS(7496), 1, - anon_sym_DOT_DOT, - ACTIONS(7500), 1, + ACTIONS(6811), 1, + anon_sym_as, + ACTIONS(7261), 1, + anon_sym_is, + ACTIONS(7556), 1, + anon_sym_SEMI, + ACTIONS(7558), 1, + anon_sym_COMMA, + ACTIONS(7562), 1, anon_sym_QMARK, - ACTIONS(7506), 1, + ACTIONS(7568), 1, anon_sym_SLASH, - ACTIONS(7508), 1, + ACTIONS(7570), 1, anon_sym_CARET, - ACTIONS(7510), 1, + ACTIONS(7572), 1, anon_sym_PIPE, - ACTIONS(7512), 1, + ACTIONS(7574), 1, anon_sym_AMP, - ACTIONS(7516), 1, + ACTIONS(7578), 1, anon_sym_GT_GT, - ACTIONS(7522), 1, + ACTIONS(7584), 1, + anon_sym_DOT_DOT, + ACTIONS(7586), 1, anon_sym_AMP_AMP, - ACTIONS(7524), 1, + ACTIONS(7588), 1, anon_sym_PIPE_PIPE, - ACTIONS(7526), 1, + ACTIONS(7590), 1, anon_sym_QMARK_QMARK, - ACTIONS(7528), 1, - anon_sym_as, - ACTIONS(7530), 1, - anon_sym_is, - STATE(2808), 1, + STATE(2467), 1, sym_bracketed_argument_list, - STATE(3487), 1, + STATE(3381), 1, sym_argument_list, - ACTIONS(5306), 2, + STATE(6954), 1, + aux_sym__for_statement_conditions_repeat1, + ACTIONS(5304), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7498), 2, + ACTIONS(7560), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7502), 2, + ACTIONS(7564), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7504), 2, + ACTIONS(7566), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7514), 2, + ACTIONS(7576), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7518), 2, + ACTIONS(7580), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7520), 2, + ACTIONS(7582), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5777), 3, - anon_sym_in, - anon_sym_and, - anon_sym_or, - STATE(4957), 9, + STATE(4885), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -628418,7 +621431,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [124253] = 38, + [116436] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -628439,72 +621452,74 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4443), 1, - anon_sym_DASH_GT, - ACTIONS(4533), 1, + ACTIONS(4042), 1, anon_sym_DOT, - ACTIONS(5664), 1, - anon_sym_QMARK, - ACTIONS(6574), 1, + ACTIONS(4044), 1, + anon_sym_DASH_GT, + ACTIONS(5257), 1, anon_sym_LPAREN, - ACTIONS(6619), 1, - anon_sym_LBRACK, - ACTIONS(6625), 1, + ACTIONS(5302), 1, anon_sym_BANG, - ACTIONS(6649), 1, + ACTIONS(5549), 1, + anon_sym_LBRACK, + ACTIONS(6355), 1, anon_sym_switch, - ACTIONS(6663), 1, + ACTIONS(6369), 1, anon_sym_with, - ACTIONS(6761), 1, + ACTIONS(6811), 1, anon_sym_as, - ACTIONS(6968), 1, + ACTIONS(7261), 1, + anon_sym_is, + ACTIONS(7562), 1, + anon_sym_QMARK, + ACTIONS(7568), 1, anon_sym_SLASH, - ACTIONS(6970), 1, + ACTIONS(7570), 1, anon_sym_CARET, - ACTIONS(6972), 1, + ACTIONS(7572), 1, anon_sym_PIPE, - ACTIONS(6974), 1, + ACTIONS(7574), 1, anon_sym_AMP, - ACTIONS(6978), 1, + ACTIONS(7578), 1, anon_sym_GT_GT, - ACTIONS(6984), 1, + ACTIONS(7584), 1, anon_sym_DOT_DOT, - ACTIONS(6986), 1, + ACTIONS(7586), 1, anon_sym_AMP_AMP, - ACTIONS(6992), 1, - anon_sym_is, - STATE(3173), 1, + ACTIONS(7588), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7590), 1, + anon_sym_QMARK_QMARK, + STATE(2467), 1, sym_bracketed_argument_list, - STATE(4583), 1, + STATE(3381), 1, sym_argument_list, - ACTIONS(6627), 2, + ACTIONS(5304), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6960), 2, + ACTIONS(7560), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(6964), 2, + ACTIONS(7564), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6966), 2, + ACTIONS(7566), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(6976), 2, + ACTIONS(7576), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(6980), 2, + ACTIONS(7580), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6982), 2, + ACTIONS(7582), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5660), 5, - sym_interpolation_close_brace, - anon_sym_COLON, + ACTIONS(5709), 3, + anon_sym_SEMI, anon_sym_COMMA, - anon_sym_PIPE_PIPE, - anon_sym_QMARK_QMARK, - STATE(4958), 9, + anon_sym_RBRACE, + STATE(4886), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -628514,7 +621529,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [124387] = 42, + [116574] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -628535,76 +621550,74 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(2697), 1, - anon_sym_COMMA, - ACTIONS(4100), 1, + ACTIONS(4042), 1, anon_sym_DOT, - ACTIONS(4102), 1, + ACTIONS(4044), 1, anon_sym_DASH_GT, - ACTIONS(5264), 1, + ACTIONS(5257), 1, anon_sym_LPAREN, - ACTIONS(5304), 1, + ACTIONS(5302), 1, anon_sym_BANG, - ACTIONS(5573), 1, + ACTIONS(5549), 1, anon_sym_LBRACK, - ACTIONS(6343), 1, + ACTIONS(6355), 1, anon_sym_switch, - ACTIONS(6357), 1, + ACTIONS(6369), 1, anon_sym_with, - ACTIONS(6813), 1, + ACTIONS(6811), 1, anon_sym_as, - ACTIONS(7139), 1, + ACTIONS(7231), 1, anon_sym_QMARK, - ACTIONS(7145), 1, + ACTIONS(7237), 1, anon_sym_SLASH, - ACTIONS(7147), 1, + ACTIONS(7239), 1, anon_sym_CARET, - ACTIONS(7149), 1, + ACTIONS(7241), 1, anon_sym_PIPE, - ACTIONS(7151), 1, + ACTIONS(7243), 1, anon_sym_AMP, - ACTIONS(7155), 1, + ACTIONS(7247), 1, anon_sym_GT_GT, - ACTIONS(7161), 1, + ACTIONS(7253), 1, anon_sym_DOT_DOT, - ACTIONS(7163), 1, + ACTIONS(7255), 1, anon_sym_AMP_AMP, - ACTIONS(7165), 1, + ACTIONS(7257), 1, anon_sym_PIPE_PIPE, - ACTIONS(7167), 1, + ACTIONS(7259), 1, anon_sym_QMARK_QMARK, - ACTIONS(7169), 1, + ACTIONS(7261), 1, anon_sym_is, - ACTIONS(7741), 1, - anon_sym_RBRACK, - STATE(2485), 1, + STATE(2467), 1, sym_bracketed_argument_list, - STATE(3487), 1, + STATE(3381), 1, sym_argument_list, - STATE(7019), 1, - aux_sym_array_rank_specifier_repeat1, - ACTIONS(5306), 2, + ACTIONS(5304), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7137), 2, + ACTIONS(7229), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7141), 2, + ACTIONS(7233), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7143), 2, + ACTIONS(7235), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7153), 2, + ACTIONS(7245), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7157), 2, + ACTIONS(7249), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7159), 2, + ACTIONS(7251), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - STATE(4959), 9, + ACTIONS(7592), 3, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_RPAREN, + STATE(4887), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -628614,7 +621627,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [124529] = 40, + [116712] = 26, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -628635,74 +621648,220 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4443), 1, - anon_sym_DASH_GT, - ACTIONS(4533), 1, + ACTIONS(4042), 1, anon_sym_DOT, - ACTIONS(5664), 1, - anon_sym_QMARK, - ACTIONS(6574), 1, + ACTIONS(4044), 1, + anon_sym_DASH_GT, + ACTIONS(5257), 1, anon_sym_LPAREN, - ACTIONS(6619), 1, + ACTIONS(5300), 1, anon_sym_LBRACK, - ACTIONS(6625), 1, + ACTIONS(5302), 1, anon_sym_BANG, - ACTIONS(6649), 1, + ACTIONS(6495), 1, anon_sym_switch, - ACTIONS(6663), 1, + ACTIONS(6509), 1, anon_sym_with, - ACTIONS(6761), 1, + ACTIONS(7548), 1, + anon_sym_SLASH, + ACTIONS(7554), 1, + anon_sym_DOT_DOT, + STATE(2759), 1, + sym_bracketed_argument_list, + STATE(3381), 1, + sym_argument_list, + ACTIONS(5304), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7546), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(5739), 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(4888), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + ACTIONS(5737), 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_equals, anon_sym_as, - ACTIONS(6968), 1, + anon_sym_is, + [116822] = 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(4042), 1, + anon_sym_DOT, + ACTIONS(4044), 1, + anon_sym_DASH_GT, + ACTIONS(5257), 1, + anon_sym_LPAREN, + ACTIONS(5302), 1, + anon_sym_BANG, + ACTIONS(5549), 1, + anon_sym_LBRACK, + ACTIONS(6355), 1, + anon_sym_switch, + ACTIONS(6369), 1, + anon_sym_with, + ACTIONS(6811), 1, + anon_sym_as, + ACTIONS(7261), 1, + anon_sym_is, + ACTIONS(7562), 1, + anon_sym_QMARK, + ACTIONS(7568), 1, anon_sym_SLASH, - ACTIONS(6970), 1, + ACTIONS(7570), 1, anon_sym_CARET, - ACTIONS(6972), 1, + ACTIONS(7572), 1, anon_sym_PIPE, - ACTIONS(6974), 1, + ACTIONS(7574), 1, anon_sym_AMP, - ACTIONS(6978), 1, + ACTIONS(7578), 1, anon_sym_GT_GT, - ACTIONS(6984), 1, + ACTIONS(7584), 1, anon_sym_DOT_DOT, - ACTIONS(6986), 1, + ACTIONS(7586), 1, anon_sym_AMP_AMP, - ACTIONS(6988), 1, + ACTIONS(7588), 1, anon_sym_PIPE_PIPE, - ACTIONS(6990), 1, + ACTIONS(7590), 1, anon_sym_QMARK_QMARK, - ACTIONS(6992), 1, - anon_sym_is, - STATE(3173), 1, + STATE(2467), 1, sym_bracketed_argument_list, - STATE(4583), 1, + STATE(3381), 1, sym_argument_list, - ACTIONS(6627), 2, + ACTIONS(5304), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6960), 2, + ACTIONS(7560), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(6964), 2, + ACTIONS(7564), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6966), 2, + ACTIONS(7566), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(6976), 2, + ACTIONS(7576), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(6980), 2, + ACTIONS(7580), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6982), 2, + ACTIONS(7582), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5660), 3, - sym_interpolation_close_brace, - anon_sym_COLON, + ACTIONS(5849), 3, + anon_sym_SEMI, anon_sym_COMMA, - STATE(4960), 9, + anon_sym_RBRACE, + STATE(4889), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + [116960] = 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(3861), 1, + anon_sym_LBRACE, + ACTIONS(3877), 1, + sym_discard, + ACTIONS(6969), 1, + sym__identifier_token, + ACTIONS(6973), 1, + anon_sym_LPAREN, + ACTIONS(7478), 1, + anon_sym_COMMA, + ACTIONS(7594), 1, + anon_sym_RPAREN, + STATE(2565), 1, + sym__reserved_identifier, + STATE(3352), 1, + sym_parenthesized_variable_designation, + STATE(3422), 1, + sym__variable_designation, + STATE(5154), 1, + sym_positional_pattern_clause, + STATE(5691), 1, + sym_property_pattern_clause, + STATE(6424), 1, + sym_identifier, + STATE(7378), 1, + sym__lambda_parameters, + STATE(7531), 1, + sym_parameter_list, + ACTIONS(3867), 2, + anon_sym_and, + anon_sym_or, + STATE(4890), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -628712,7 +621871,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [124667] = 40, + ACTIONS(6971), 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, + [117072] = 35, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -628733,74 +621915,69 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4100), 1, + ACTIONS(4042), 1, anon_sym_DOT, - ACTIONS(4102), 1, + ACTIONS(4044), 1, anon_sym_DASH_GT, - ACTIONS(5264), 1, + ACTIONS(5257), 1, anon_sym_LPAREN, - ACTIONS(5302), 1, + ACTIONS(5300), 1, anon_sym_LBRACK, - ACTIONS(5304), 1, + ACTIONS(5302), 1, anon_sym_BANG, - ACTIONS(6475), 1, + ACTIONS(6495), 1, anon_sym_switch, - ACTIONS(6489), 1, + ACTIONS(6509), 1, anon_sym_with, - ACTIONS(7697), 1, + ACTIONS(7548), 1, anon_sym_SLASH, - ACTIONS(7701), 1, + ACTIONS(7552), 1, anon_sym_GT_GT, - ACTIONS(7703), 1, + ACTIONS(7554), 1, anon_sym_DOT_DOT, - ACTIONS(7709), 1, + ACTIONS(7598), 1, anon_sym_AMP, - ACTIONS(7715), 1, + ACTIONS(7604), 1, anon_sym_as, - ACTIONS(7717), 1, + ACTIONS(7606), 1, anon_sym_is, - ACTIONS(7719), 1, - anon_sym_CARET, - ACTIONS(7725), 1, - anon_sym_PIPE, - ACTIONS(7727), 1, - anon_sym_AMP_AMP, - ACTIONS(7731), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7733), 1, - anon_sym_QMARK_QMARK, - ACTIONS(7743), 1, - anon_sym_QMARK, - STATE(2808), 1, + STATE(2759), 1, sym_bracketed_argument_list, - STATE(3487), 1, + STATE(3381), 1, sym_argument_list, - ACTIONS(5306), 2, + ACTIONS(5304), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7693), 2, + ACTIONS(5739), 2, + anon_sym_QMARK, + anon_sym_PIPE, + ACTIONS(7544), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7695), 2, + ACTIONS(7546), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7699), 2, + ACTIONS(7550), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7707), 2, + ACTIONS(7596), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7711), 2, + ACTIONS(7600), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7713), 2, + ACTIONS(7602), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5858), 3, + ACTIONS(5737), 7, + anon_sym_CARET, anon_sym_and, anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, anon_sym_equals, - STATE(4961), 9, + STATE(4891), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -628810,7 +621987,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [124805] = 42, + [117200] = 36, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -628831,76 +622008,162 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4100), 1, + ACTIONS(4042), 1, anon_sym_DOT, - ACTIONS(4102), 1, + ACTIONS(4044), 1, anon_sym_DASH_GT, - ACTIONS(5264), 1, + ACTIONS(5257), 1, anon_sym_LPAREN, - ACTIONS(5304), 1, - anon_sym_BANG, - ACTIONS(5573), 1, + ACTIONS(5300), 1, anon_sym_LBRACK, - ACTIONS(6343), 1, + ACTIONS(5302), 1, + anon_sym_BANG, + ACTIONS(6495), 1, anon_sym_switch, - ACTIONS(6357), 1, + ACTIONS(6509), 1, anon_sym_with, - ACTIONS(6813), 1, + ACTIONS(7548), 1, + anon_sym_SLASH, + ACTIONS(7552), 1, + anon_sym_GT_GT, + ACTIONS(7554), 1, + anon_sym_DOT_DOT, + ACTIONS(7598), 1, + anon_sym_AMP, + ACTIONS(7604), 1, anon_sym_as, - ACTIONS(7169), 1, + ACTIONS(7606), 1, anon_sym_is, - ACTIONS(7442), 1, - anon_sym_SLASH, - ACTIONS(7444), 1, + ACTIONS(7608), 1, anon_sym_CARET, - ACTIONS(7446), 1, + STATE(2759), 1, + sym_bracketed_argument_list, + STATE(3381), 1, + sym_argument_list, + ACTIONS(5304), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5739), 2, + anon_sym_QMARK, anon_sym_PIPE, - ACTIONS(7448), 1, - anon_sym_AMP, - ACTIONS(7452), 1, - anon_sym_GT_GT, - ACTIONS(7458), 1, - anon_sym_DOT_DOT, - ACTIONS(7621), 1, + ACTIONS(7544), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(7546), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(7550), 2, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + ACTIONS(7596), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(7600), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(7602), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(5737), 6, + anon_sym_and, + anon_sym_or, anon_sym_AMP_AMP, - ACTIONS(7623), 1, anon_sym_PIPE_PIPE, - ACTIONS(7625), 1, anon_sym_QMARK_QMARK, - ACTIONS(7659), 1, - anon_sym_QMARK, - ACTIONS(7745), 1, - anon_sym_SEMI, - ACTIONS(7747), 1, - anon_sym_COMMA, - STATE(2485), 1, + anon_sym_equals, + STATE(4892), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + [117330] = 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(4042), 1, + anon_sym_DOT, + ACTIONS(4044), 1, + anon_sym_DASH_GT, + ACTIONS(5257), 1, + anon_sym_LPAREN, + ACTIONS(5300), 1, + anon_sym_LBRACK, + ACTIONS(5302), 1, + anon_sym_BANG, + ACTIONS(6495), 1, + anon_sym_switch, + ACTIONS(6509), 1, + anon_sym_with, + ACTIONS(7548), 1, + anon_sym_SLASH, + ACTIONS(7552), 1, + anon_sym_GT_GT, + ACTIONS(7554), 1, + anon_sym_DOT_DOT, + ACTIONS(7604), 1, + anon_sym_as, + ACTIONS(7606), 1, + anon_sym_is, + STATE(2759), 1, sym_bracketed_argument_list, - STATE(3487), 1, + STATE(3381), 1, sym_argument_list, - STATE(6807), 1, - aux_sym__for_statement_conditions_repeat1, - ACTIONS(5306), 2, + ACTIONS(5304), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7436), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(7438), 2, + ACTIONS(7544), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7440), 2, + ACTIONS(7546), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7450), 2, + ACTIONS(7550), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7454), 2, + ACTIONS(7596), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(7600), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7456), 2, + ACTIONS(7602), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - STATE(4962), 9, + ACTIONS(5739), 3, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_AMP, + ACTIONS(5737), 7, + anon_sym_CARET, + anon_sym_and, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, + anon_sym_equals, + STATE(4893), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -628910,7 +622173,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [124947] = 22, + [117456] = 27, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -628931,36 +622194,45 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4100), 1, + ACTIONS(4042), 1, anon_sym_DOT, - ACTIONS(4102), 1, + ACTIONS(4044), 1, anon_sym_DASH_GT, - ACTIONS(5264), 1, + ACTIONS(5257), 1, anon_sym_LPAREN, - ACTIONS(5302), 1, + ACTIONS(5300), 1, anon_sym_LBRACK, - ACTIONS(5304), 1, + ACTIONS(5302), 1, anon_sym_BANG, - ACTIONS(7703), 1, + ACTIONS(6495), 1, + anon_sym_switch, + ACTIONS(6509), 1, + anon_sym_with, + ACTIONS(7548), 1, + anon_sym_SLASH, + ACTIONS(7554), 1, anon_sym_DOT_DOT, - STATE(2808), 1, + STATE(2759), 1, sym_bracketed_argument_list, - STATE(3487), 1, + STATE(3381), 1, sym_argument_list, - ACTIONS(5306), 2, + ACTIONS(5304), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5733), 9, + ACTIONS(7544), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(7546), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(5739), 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(4963), 9, + STATE(4894), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -628970,9 +622242,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5731), 19, - anon_sym_STAR, - anon_sym_PERCENT, + ACTIONS(5737), 15, anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT_GT, @@ -628980,7 +622250,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, @@ -628989,8 +622258,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_equals, anon_sym_as, anon_sym_is, - anon_sym_with, - [125049] = 40, + [117568] = 33, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -629011,74 +622279,162 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4100), 1, + ACTIONS(4042), 1, anon_sym_DOT, - ACTIONS(4102), 1, + ACTIONS(4044), 1, anon_sym_DASH_GT, - ACTIONS(5264), 1, + ACTIONS(5257), 1, anon_sym_LPAREN, - ACTIONS(5302), 1, + ACTIONS(5300), 1, anon_sym_LBRACK, - ACTIONS(5304), 1, + ACTIONS(5302), 1, anon_sym_BANG, - ACTIONS(6475), 1, + ACTIONS(6495), 1, anon_sym_switch, - ACTIONS(6489), 1, + ACTIONS(6509), 1, anon_sym_with, - ACTIONS(7697), 1, + ACTIONS(7548), 1, anon_sym_SLASH, - ACTIONS(7701), 1, + ACTIONS(7552), 1, anon_sym_GT_GT, - ACTIONS(7703), 1, + ACTIONS(7554), 1, anon_sym_DOT_DOT, - ACTIONS(7709), 1, - anon_sym_AMP, - ACTIONS(7715), 1, + ACTIONS(7604), 1, anon_sym_as, - ACTIONS(7717), 1, + ACTIONS(7606), 1, anon_sym_is, - ACTIONS(7719), 1, - anon_sym_CARET, - ACTIONS(7725), 1, + STATE(2759), 1, + sym_bracketed_argument_list, + STATE(3381), 1, + sym_argument_list, + ACTIONS(5304), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7544), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(7546), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(7550), 2, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + ACTIONS(7596), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(7602), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(5739), 3, + anon_sym_QMARK, anon_sym_PIPE, - ACTIONS(7727), 1, + anon_sym_AMP, + ACTIONS(5737), 9, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_and, + anon_sym_or, anon_sym_AMP_AMP, - ACTIONS(7731), 1, anon_sym_PIPE_PIPE, - ACTIONS(7733), 1, anon_sym_QMARK_QMARK, - ACTIONS(7743), 1, + anon_sym_equals, + STATE(4895), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + [117692] = 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(4042), 1, + anon_sym_DOT, + ACTIONS(4044), 1, + anon_sym_DASH_GT, + ACTIONS(5257), 1, + anon_sym_LPAREN, + ACTIONS(5300), 1, + anon_sym_LBRACK, + ACTIONS(5302), 1, + anon_sym_BANG, + ACTIONS(5739), 1, anon_sym_QMARK, - STATE(2808), 1, + ACTIONS(6495), 1, + anon_sym_switch, + ACTIONS(6509), 1, + anon_sym_with, + ACTIONS(7548), 1, + anon_sym_SLASH, + ACTIONS(7552), 1, + anon_sym_GT_GT, + ACTIONS(7554), 1, + anon_sym_DOT_DOT, + ACTIONS(7598), 1, + anon_sym_AMP, + ACTIONS(7604), 1, + anon_sym_as, + ACTIONS(7606), 1, + anon_sym_is, + ACTIONS(7608), 1, + anon_sym_CARET, + ACTIONS(7610), 1, + anon_sym_PIPE, + STATE(2759), 1, sym_bracketed_argument_list, - STATE(3487), 1, + STATE(3381), 1, sym_argument_list, - ACTIONS(5306), 2, + ACTIONS(5304), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7693), 2, + ACTIONS(7544), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7695), 2, + ACTIONS(7546), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7699), 2, + ACTIONS(7550), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7707), 2, + ACTIONS(7596), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7711), 2, + ACTIONS(7600), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7713), 2, + ACTIONS(7602), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5864), 3, + ACTIONS(5737), 6, anon_sym_and, anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, anon_sym_equals, - STATE(4964), 9, + STATE(4896), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -629088,7 +622444,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [125187] = 15, + [117824] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -629109,11 +622465,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(7749), 1, - anon_sym_into, - STATE(5057), 1, - aux_sym__query_body_repeat2, - STATE(4965), 9, + ACTIONS(7538), 1, + anon_sym_and, + ACTIONS(7612), 1, + anon_sym_or, + STATE(4897), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -629123,7 +622479,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(6001), 11, + ACTIONS(6109), 11, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, @@ -629135,11 +622491,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT, - ACTIONS(5999), 25, - sym_interpolation_close_brace, + ACTIONS(6107), 25, anon_sym_LBRACK, - anon_sym_COLON, - anon_sym_COMMA, anon_sym_LPAREN, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, @@ -629152,16 +622505,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_when, 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, - [125275] = 40, + [117912] = 38, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -629182,74 +622538,72 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4100), 1, + ACTIONS(4042), 1, anon_sym_DOT, - ACTIONS(4102), 1, + ACTIONS(4044), 1, anon_sym_DASH_GT, - ACTIONS(5264), 1, + ACTIONS(5257), 1, anon_sym_LPAREN, - ACTIONS(5302), 1, + ACTIONS(5300), 1, anon_sym_LBRACK, - ACTIONS(5304), 1, + ACTIONS(5302), 1, anon_sym_BANG, - ACTIONS(6475), 1, + ACTIONS(5739), 1, + anon_sym_QMARK, + ACTIONS(6495), 1, anon_sym_switch, - ACTIONS(6489), 1, + ACTIONS(6509), 1, anon_sym_with, - ACTIONS(7697), 1, + ACTIONS(7548), 1, anon_sym_SLASH, - ACTIONS(7701), 1, + ACTIONS(7552), 1, anon_sym_GT_GT, - ACTIONS(7703), 1, + ACTIONS(7554), 1, anon_sym_DOT_DOT, - ACTIONS(7709), 1, + ACTIONS(7598), 1, anon_sym_AMP, - ACTIONS(7715), 1, + ACTIONS(7604), 1, anon_sym_as, - ACTIONS(7717), 1, + ACTIONS(7606), 1, anon_sym_is, - ACTIONS(7719), 1, + ACTIONS(7608), 1, anon_sym_CARET, - ACTIONS(7725), 1, + ACTIONS(7610), 1, anon_sym_PIPE, - ACTIONS(7727), 1, + ACTIONS(7614), 1, anon_sym_AMP_AMP, - ACTIONS(7731), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7733), 1, - anon_sym_QMARK_QMARK, - ACTIONS(7743), 1, - anon_sym_QMARK, - STATE(2808), 1, + STATE(2759), 1, sym_bracketed_argument_list, - STATE(3487), 1, + STATE(3381), 1, sym_argument_list, - ACTIONS(5306), 2, + ACTIONS(5304), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7693), 2, + ACTIONS(7544), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7695), 2, + ACTIONS(7546), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7699), 2, + ACTIONS(7550), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7707), 2, + ACTIONS(7596), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7711), 2, + ACTIONS(7600), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7713), 2, + ACTIONS(7602), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5072), 3, + ACTIONS(5737), 5, anon_sym_and, anon_sym_or, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, anon_sym_equals, - STATE(4966), 9, + STATE(4898), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -629259,7 +622613,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [125413] = 40, + [118046] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -629280,74 +622634,74 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4100), 1, + ACTIONS(4042), 1, anon_sym_DOT, - ACTIONS(4102), 1, + ACTIONS(4044), 1, anon_sym_DASH_GT, - ACTIONS(5264), 1, + ACTIONS(5257), 1, anon_sym_LPAREN, - ACTIONS(5302), 1, + ACTIONS(5300), 1, anon_sym_LBRACK, - ACTIONS(5304), 1, + ACTIONS(5302), 1, anon_sym_BANG, - ACTIONS(6475), 1, + ACTIONS(5739), 1, + anon_sym_QMARK, + ACTIONS(6495), 1, anon_sym_switch, - ACTIONS(6489), 1, + ACTIONS(6509), 1, anon_sym_with, - ACTIONS(7697), 1, + ACTIONS(7548), 1, anon_sym_SLASH, - ACTIONS(7701), 1, + ACTIONS(7552), 1, anon_sym_GT_GT, - ACTIONS(7703), 1, + ACTIONS(7554), 1, anon_sym_DOT_DOT, - ACTIONS(7709), 1, + ACTIONS(7598), 1, anon_sym_AMP, - ACTIONS(7715), 1, + ACTIONS(7604), 1, anon_sym_as, - ACTIONS(7717), 1, + ACTIONS(7606), 1, anon_sym_is, - ACTIONS(7719), 1, + ACTIONS(7608), 1, anon_sym_CARET, - ACTIONS(7725), 1, + ACTIONS(7610), 1, anon_sym_PIPE, - ACTIONS(7727), 1, + ACTIONS(7614), 1, anon_sym_AMP_AMP, - ACTIONS(7731), 1, + ACTIONS(7616), 1, anon_sym_PIPE_PIPE, - ACTIONS(7733), 1, + ACTIONS(7618), 1, anon_sym_QMARK_QMARK, - ACTIONS(7743), 1, - anon_sym_QMARK, - STATE(2808), 1, + STATE(2759), 1, sym_bracketed_argument_list, - STATE(3487), 1, + STATE(3381), 1, sym_argument_list, - ACTIONS(5306), 2, + ACTIONS(5304), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7693), 2, + ACTIONS(7544), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7695), 2, + ACTIONS(7546), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7699), 2, + ACTIONS(7550), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7707), 2, + ACTIONS(7596), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7711), 2, + ACTIONS(7600), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7713), 2, + ACTIONS(7602), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5882), 3, + ACTIONS(5737), 3, anon_sym_and, anon_sym_or, anon_sym_equals, - STATE(4967), 9, + STATE(4899), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -629357,7 +622711,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [125551] = 40, + [118184] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -629378,74 +622732,74 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4100), 1, + ACTIONS(4042), 1, anon_sym_DOT, - ACTIONS(4102), 1, + ACTIONS(4044), 1, anon_sym_DASH_GT, - ACTIONS(5264), 1, + ACTIONS(5257), 1, anon_sym_LPAREN, - ACTIONS(5304), 1, - anon_sym_BANG, - ACTIONS(5573), 1, + ACTIONS(5300), 1, anon_sym_LBRACK, - ACTIONS(6343), 1, + ACTIONS(5302), 1, + anon_sym_BANG, + ACTIONS(6495), 1, anon_sym_switch, - ACTIONS(6357), 1, + ACTIONS(6509), 1, anon_sym_with, - ACTIONS(6813), 1, + ACTIONS(7548), 1, + anon_sym_SLASH, + ACTIONS(7552), 1, + anon_sym_GT_GT, + ACTIONS(7554), 1, + anon_sym_DOT_DOT, + ACTIONS(7598), 1, + anon_sym_AMP, + ACTIONS(7604), 1, anon_sym_as, - ACTIONS(7169), 1, + ACTIONS(7606), 1, anon_sym_is, - ACTIONS(7442), 1, - anon_sym_SLASH, - ACTIONS(7444), 1, + ACTIONS(7608), 1, anon_sym_CARET, - ACTIONS(7446), 1, + ACTIONS(7610), 1, anon_sym_PIPE, - ACTIONS(7448), 1, - anon_sym_AMP, - ACTIONS(7452), 1, - anon_sym_GT_GT, - ACTIONS(7458), 1, - anon_sym_DOT_DOT, - ACTIONS(7621), 1, + ACTIONS(7614), 1, anon_sym_AMP_AMP, - ACTIONS(7623), 1, + ACTIONS(7616), 1, anon_sym_PIPE_PIPE, - ACTIONS(7625), 1, + ACTIONS(7618), 1, anon_sym_QMARK_QMARK, - ACTIONS(7659), 1, + ACTIONS(7620), 1, anon_sym_QMARK, - STATE(2485), 1, + STATE(2759), 1, sym_bracketed_argument_list, - STATE(3487), 1, + STATE(3381), 1, sym_argument_list, - ACTIONS(5306), 2, + ACTIONS(5304), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7436), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(7438), 2, + ACTIONS(7544), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7440), 2, + ACTIONS(7546), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7450), 2, + ACTIONS(7550), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7454), 2, + ACTIONS(7596), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(7600), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7456), 2, + ACTIONS(7602), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5882), 3, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RBRACE, - STATE(4968), 9, + ACTIONS(5709), 3, + anon_sym_and, + anon_sym_or, + anon_sym_equals, + STATE(4900), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -629455,7 +622809,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [125689] = 40, + [118322] = 22, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -629476,84 +622830,66 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4100), 1, + ACTIONS(4042), 1, anon_sym_DOT, - ACTIONS(4102), 1, + ACTIONS(4044), 1, anon_sym_DASH_GT, - ACTIONS(5264), 1, + ACTIONS(5257), 1, anon_sym_LPAREN, - ACTIONS(5302), 1, + ACTIONS(5300), 1, anon_sym_LBRACK, - ACTIONS(5304), 1, + ACTIONS(5302), 1, anon_sym_BANG, - ACTIONS(6475), 1, - anon_sym_switch, - ACTIONS(6489), 1, - anon_sym_with, - ACTIONS(7697), 1, - anon_sym_SLASH, - ACTIONS(7701), 1, - anon_sym_GT_GT, - ACTIONS(7703), 1, + ACTIONS(7554), 1, anon_sym_DOT_DOT, - ACTIONS(7709), 1, - anon_sym_AMP, - ACTIONS(7715), 1, - anon_sym_as, - ACTIONS(7717), 1, - anon_sym_is, - ACTIONS(7719), 1, - anon_sym_CARET, - ACTIONS(7725), 1, - anon_sym_PIPE, - ACTIONS(7727), 1, - anon_sym_AMP_AMP, - ACTIONS(7731), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7733), 1, - anon_sym_QMARK_QMARK, - ACTIONS(7743), 1, - anon_sym_QMARK, - STATE(2808), 1, + STATE(2759), 1, sym_bracketed_argument_list, - STATE(3487), 1, + STATE(3381), 1, sym_argument_list, - ACTIONS(5306), 2, + ACTIONS(5304), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7693), 2, + ACTIONS(5743), 9, + anon_sym_LT, + anon_sym_GT, + anon_sym_QMARK, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7695), 2, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT_GT, + STATE(4901), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + ACTIONS(5741), 19, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7699), 2, + anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7707), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(7711), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7713), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5899), 3, + anon_sym_switch, anon_sym_and, anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, anon_sym_equals, - STATE(4969), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - [125827] = 27, + anon_sym_as, + anon_sym_is, + anon_sym_with, + [118424] = 42, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -629574,38 +622910,76 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(3881), 1, - anon_sym_LBRACE, - ACTIONS(3897), 1, - sym_discard, - ACTIONS(6823), 1, - sym__identifier_token, - ACTIONS(6827), 1, + ACTIONS(4042), 1, + anon_sym_DOT, + ACTIONS(4044), 1, + anon_sym_DASH_GT, + ACTIONS(5257), 1, anon_sym_LPAREN, - ACTIONS(7588), 1, + ACTIONS(5302), 1, + anon_sym_BANG, + ACTIONS(5549), 1, + anon_sym_LBRACK, + ACTIONS(6355), 1, + anon_sym_switch, + ACTIONS(6369), 1, + anon_sym_with, + ACTIONS(6811), 1, + anon_sym_as, + ACTIONS(7231), 1, + anon_sym_QMARK, + ACTIONS(7237), 1, + anon_sym_SLASH, + ACTIONS(7239), 1, + anon_sym_CARET, + ACTIONS(7241), 1, + anon_sym_PIPE, + ACTIONS(7243), 1, + anon_sym_AMP, + ACTIONS(7247), 1, + anon_sym_GT_GT, + ACTIONS(7253), 1, + anon_sym_DOT_DOT, + ACTIONS(7255), 1, + anon_sym_AMP_AMP, + ACTIONS(7257), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7259), 1, + anon_sym_QMARK_QMARK, + ACTIONS(7261), 1, + anon_sym_is, + ACTIONS(7622), 1, anon_sym_COMMA, - ACTIONS(7751), 1, + ACTIONS(7624), 1, anon_sym_RPAREN, - STATE(2571), 1, - sym__reserved_identifier, - STATE(3463), 1, - sym_parenthesized_variable_designation, - STATE(3492), 1, - sym__variable_designation, - STATE(5279), 1, - sym_positional_pattern_clause, - STATE(5682), 1, - sym_property_pattern_clause, - STATE(6412), 1, - sym_identifier, - STATE(7311), 1, - sym_parameter_list, - STATE(7536), 1, - sym__lambda_parameters, - ACTIONS(3883), 2, - anon_sym_and, - anon_sym_or, - STATE(4970), 9, + STATE(2467), 1, + sym_bracketed_argument_list, + STATE(3381), 1, + sym_argument_list, + STATE(6802), 1, + aux_sym__for_statement_conditions_repeat1, + ACTIONS(5304), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7229), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(7233), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(7235), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(7245), 2, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + ACTIONS(7249), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(7251), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + STATE(4902), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -629615,30 +622989,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(6825), 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, - [125939] = 40, + [118566] = 42, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -629659,74 +623010,76 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4100), 1, + ACTIONS(4042), 1, anon_sym_DOT, - ACTIONS(4102), 1, + ACTIONS(4044), 1, anon_sym_DASH_GT, - ACTIONS(5264), 1, + ACTIONS(5257), 1, anon_sym_LPAREN, ACTIONS(5302), 1, - anon_sym_LBRACK, - ACTIONS(5304), 1, anon_sym_BANG, - ACTIONS(6475), 1, + ACTIONS(5549), 1, + anon_sym_LBRACK, + ACTIONS(6355), 1, anon_sym_switch, - ACTIONS(6485), 1, - anon_sym_as, - ACTIONS(6489), 1, + ACTIONS(6369), 1, anon_sym_with, - ACTIONS(7536), 1, + ACTIONS(6811), 1, + anon_sym_as, + ACTIONS(7231), 1, + anon_sym_QMARK, + ACTIONS(7237), 1, anon_sym_SLASH, - ACTIONS(7540), 1, - anon_sym_GT_GT, - ACTIONS(7542), 1, - anon_sym_DOT_DOT, - ACTIONS(7550), 1, - anon_sym_AMP, - ACTIONS(7556), 1, - anon_sym_is, - ACTIONS(7558), 1, + ACTIONS(7239), 1, anon_sym_CARET, - ACTIONS(7572), 1, + ACTIONS(7241), 1, anon_sym_PIPE, - ACTIONS(7574), 1, + ACTIONS(7243), 1, + anon_sym_AMP, + ACTIONS(7247), 1, + anon_sym_GT_GT, + ACTIONS(7253), 1, + anon_sym_DOT_DOT, + ACTIONS(7255), 1, anon_sym_AMP_AMP, - ACTIONS(7576), 1, + ACTIONS(7257), 1, anon_sym_PIPE_PIPE, - ACTIONS(7578), 1, + ACTIONS(7259), 1, anon_sym_QMARK_QMARK, - ACTIONS(7665), 1, - anon_sym_QMARK, - STATE(2808), 1, + ACTIONS(7261), 1, + anon_sym_is, + ACTIONS(7622), 1, + anon_sym_COMMA, + ACTIONS(7626), 1, + anon_sym_RPAREN, + STATE(2467), 1, sym_bracketed_argument_list, - STATE(3487), 1, + STATE(3381), 1, sym_argument_list, - ACTIONS(5306), 2, + STATE(7003), 1, + aux_sym__for_statement_conditions_repeat1, + ACTIONS(5304), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7532), 2, + ACTIONS(7229), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(7233), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7534), 2, + ACTIONS(7235), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7538), 2, + ACTIONS(7245), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7548), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(7552), 2, + ACTIONS(7249), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7554), 2, + ACTIONS(7251), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5777), 3, - anon_sym_COLON, - anon_sym_and, - anon_sym_or, - STATE(4971), 9, + STATE(4903), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -629736,7 +623089,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [126077] = 24, + [118708] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -629757,68 +623110,84 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4100), 1, + ACTIONS(4042), 1, anon_sym_DOT, - ACTIONS(4102), 1, + ACTIONS(4044), 1, anon_sym_DASH_GT, - ACTIONS(5264), 1, + ACTIONS(5257), 1, anon_sym_LPAREN, - ACTIONS(5302), 1, + ACTIONS(5300), 1, anon_sym_LBRACK, - ACTIONS(5304), 1, + ACTIONS(5302), 1, anon_sym_BANG, - ACTIONS(6475), 1, + ACTIONS(6495), 1, anon_sym_switch, - ACTIONS(6489), 1, + ACTIONS(6509), 1, anon_sym_with, - ACTIONS(7542), 1, + ACTIONS(7548), 1, + anon_sym_SLASH, + ACTIONS(7552), 1, + anon_sym_GT_GT, + ACTIONS(7554), 1, anon_sym_DOT_DOT, - STATE(2808), 1, + ACTIONS(7598), 1, + anon_sym_AMP, + ACTIONS(7604), 1, + anon_sym_as, + ACTIONS(7606), 1, + anon_sym_is, + ACTIONS(7608), 1, + anon_sym_CARET, + ACTIONS(7610), 1, + anon_sym_PIPE, + ACTIONS(7614), 1, + anon_sym_AMP_AMP, + ACTIONS(7616), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7618), 1, + anon_sym_QMARK_QMARK, + ACTIONS(7620), 1, + anon_sym_QMARK, + STATE(2759), 1, sym_bracketed_argument_list, - STATE(3487), 1, + STATE(3381), 1, sym_argument_list, - ACTIONS(5306), 2, + ACTIONS(5304), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5664), 9, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, + ACTIONS(7544), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT_GT, - STATE(4972), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - ACTIONS(5660), 17, - anon_sym_COLON, + ACTIONS(7546), 2, anon_sym_STAR, anon_sym_PERCENT, - anon_sym_CARET, + ACTIONS(7550), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, + ACTIONS(7596), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(7600), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + ACTIONS(7602), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, + ACTIONS(5849), 3, anon_sym_and, anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_QMARK_QMARK, - anon_sym_as, - anon_sym_is, - [126183] = 29, + anon_sym_equals, + STATE(4904), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + [118846] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -629839,49 +623208,74 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4100), 1, + ACTIONS(4042), 1, anon_sym_DOT, - ACTIONS(4102), 1, + ACTIONS(4044), 1, anon_sym_DASH_GT, - ACTIONS(5264), 1, + ACTIONS(5257), 1, anon_sym_LPAREN, - ACTIONS(5304), 1, - anon_sym_BANG, - ACTIONS(5573), 1, + ACTIONS(5300), 1, anon_sym_LBRACK, - ACTIONS(6343), 1, + ACTIONS(5302), 1, + anon_sym_BANG, + ACTIONS(6495), 1, anon_sym_switch, - ACTIONS(6357), 1, + ACTIONS(6509), 1, anon_sym_with, - ACTIONS(6789), 1, + ACTIONS(7548), 1, anon_sym_SLASH, - ACTIONS(6799), 1, + ACTIONS(7552), 1, anon_sym_GT_GT, - ACTIONS(6805), 1, + ACTIONS(7554), 1, anon_sym_DOT_DOT, - STATE(2485), 1, + ACTIONS(7598), 1, + anon_sym_AMP, + ACTIONS(7604), 1, + anon_sym_as, + ACTIONS(7606), 1, + anon_sym_is, + ACTIONS(7608), 1, + anon_sym_CARET, + ACTIONS(7610), 1, + anon_sym_PIPE, + ACTIONS(7614), 1, + anon_sym_AMP_AMP, + ACTIONS(7616), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7618), 1, + anon_sym_QMARK_QMARK, + ACTIONS(7620), 1, + anon_sym_QMARK, + STATE(2759), 1, sym_bracketed_argument_list, - STATE(3487), 1, + STATE(3381), 1, sym_argument_list, - ACTIONS(5306), 2, + ACTIONS(5304), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6785), 2, + ACTIONS(7544), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6787), 2, + ACTIONS(7546), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(6797), 2, + ACTIONS(7550), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(5664), 5, + ACTIONS(7596), 2, anon_sym_LT, anon_sym_GT, - anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_AMP, - STATE(4973), 9, + ACTIONS(7600), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(7602), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4996), 3, + anon_sym_and, + anon_sym_or, + anon_sym_equals, + STATE(4905), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -629891,21 +623285,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5660), 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, - [126299] = 40, + [118984] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -629926,74 +623306,74 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4100), 1, + ACTIONS(4042), 1, anon_sym_DOT, - ACTIONS(4102), 1, + ACTIONS(4044), 1, anon_sym_DASH_GT, - ACTIONS(5264), 1, + ACTIONS(5257), 1, anon_sym_LPAREN, - ACTIONS(5304), 1, - anon_sym_BANG, - ACTIONS(5573), 1, + ACTIONS(5300), 1, anon_sym_LBRACK, - ACTIONS(6343), 1, + ACTIONS(5302), 1, + anon_sym_BANG, + ACTIONS(6495), 1, anon_sym_switch, - ACTIONS(6357), 1, + ACTIONS(6509), 1, anon_sym_with, - ACTIONS(6783), 1, - anon_sym_QMARK, - ACTIONS(6789), 1, + ACTIONS(7548), 1, anon_sym_SLASH, - ACTIONS(6791), 1, - anon_sym_CARET, - ACTIONS(6793), 1, - anon_sym_PIPE, - ACTIONS(6795), 1, - anon_sym_AMP, - ACTIONS(6799), 1, + ACTIONS(7552), 1, anon_sym_GT_GT, - ACTIONS(6805), 1, + ACTIONS(7554), 1, anon_sym_DOT_DOT, - ACTIONS(6807), 1, + ACTIONS(7598), 1, + anon_sym_AMP, + ACTIONS(7604), 1, + anon_sym_as, + ACTIONS(7606), 1, + anon_sym_is, + ACTIONS(7608), 1, + anon_sym_CARET, + ACTIONS(7610), 1, + anon_sym_PIPE, + ACTIONS(7614), 1, anon_sym_AMP_AMP, - ACTIONS(6809), 1, + ACTIONS(7616), 1, anon_sym_PIPE_PIPE, - ACTIONS(6811), 1, + ACTIONS(7618), 1, anon_sym_QMARK_QMARK, - ACTIONS(6813), 1, - anon_sym_as, - ACTIONS(6815), 1, - anon_sym_is, - STATE(2485), 1, + ACTIONS(7620), 1, + anon_sym_QMARK, + STATE(2759), 1, sym_bracketed_argument_list, - STATE(3487), 1, + STATE(3381), 1, sym_argument_list, - ACTIONS(5306), 2, + ACTIONS(5304), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6781), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(6785), 2, + ACTIONS(7544), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6787), 2, + ACTIONS(7546), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(6797), 2, + ACTIONS(7550), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(6801), 2, + ACTIONS(7596), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(7600), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6803), 2, + ACTIONS(7602), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5864), 3, - aux_sym_preproc_if_token3, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - STATE(4974), 9, + ACTIONS(5652), 3, + anon_sym_and, + anon_sym_or, + anon_sym_equals, + STATE(4906), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -630003,7 +623383,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [126437] = 40, + [119122] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -630024,74 +623404,74 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4443), 1, - anon_sym_DASH_GT, - ACTIONS(4533), 1, + ACTIONS(4042), 1, anon_sym_DOT, - ACTIONS(6574), 1, + ACTIONS(4044), 1, + anon_sym_DASH_GT, + ACTIONS(5257), 1, anon_sym_LPAREN, - ACTIONS(6619), 1, - anon_sym_LBRACK, - ACTIONS(6625), 1, + ACTIONS(5302), 1, anon_sym_BANG, - ACTIONS(6649), 1, + ACTIONS(5549), 1, + anon_sym_LBRACK, + ACTIONS(6355), 1, anon_sym_switch, - ACTIONS(6663), 1, + ACTIONS(6369), 1, anon_sym_with, - ACTIONS(6761), 1, + ACTIONS(6811), 1, anon_sym_as, - ACTIONS(6962), 1, + ACTIONS(7231), 1, anon_sym_QMARK, - ACTIONS(6968), 1, + ACTIONS(7237), 1, anon_sym_SLASH, - ACTIONS(6970), 1, + ACTIONS(7239), 1, anon_sym_CARET, - ACTIONS(6972), 1, + ACTIONS(7241), 1, anon_sym_PIPE, - ACTIONS(6974), 1, + ACTIONS(7243), 1, anon_sym_AMP, - ACTIONS(6978), 1, + ACTIONS(7247), 1, anon_sym_GT_GT, - ACTIONS(6984), 1, + ACTIONS(7253), 1, anon_sym_DOT_DOT, - ACTIONS(6986), 1, + ACTIONS(7255), 1, anon_sym_AMP_AMP, - ACTIONS(6988), 1, + ACTIONS(7257), 1, anon_sym_PIPE_PIPE, - ACTIONS(6990), 1, + ACTIONS(7259), 1, anon_sym_QMARK_QMARK, - ACTIONS(6992), 1, + ACTIONS(7261), 1, anon_sym_is, - STATE(3173), 1, + STATE(2467), 1, sym_bracketed_argument_list, - STATE(4583), 1, + STATE(3381), 1, sym_argument_list, - ACTIONS(6627), 2, + ACTIONS(5304), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6960), 2, + ACTIONS(7229), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(6964), 2, + ACTIONS(7233), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6966), 2, + ACTIONS(7235), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(6976), 2, + ACTIONS(7245), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(6980), 2, + ACTIONS(7249), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6982), 2, + ACTIONS(7251), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5858), 3, - sym_interpolation_close_brace, - anon_sym_COLON, + ACTIONS(7628), 3, anon_sym_COMMA, - STATE(4975), 9, + anon_sym_RBRACK, + anon_sym_RPAREN, + STATE(4907), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -630101,7 +623481,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [126575] = 22, + [119260] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -630122,91 +623502,74 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4100), 1, + ACTIONS(4427), 1, anon_sym_DOT, - ACTIONS(4102), 1, + ACTIONS(4429), 1, anon_sym_DASH_GT, - ACTIONS(5264), 1, + ACTIONS(5739), 1, + anon_sym_QMARK, + ACTIONS(6557), 1, anon_sym_LPAREN, - ACTIONS(5302), 1, + ACTIONS(6607), 1, anon_sym_LBRACK, - ACTIONS(5304), 1, + ACTIONS(6613), 1, anon_sym_BANG, - ACTIONS(7542), 1, + ACTIONS(6637), 1, + anon_sym_switch, + ACTIONS(6651), 1, + anon_sym_with, + ACTIONS(6719), 1, + anon_sym_SLASH, + ACTIONS(6721), 1, + anon_sym_CARET, + ACTIONS(6723), 1, + anon_sym_PIPE, + ACTIONS(6725), 1, + anon_sym_AMP, + ACTIONS(6729), 1, + anon_sym_GT_GT, + ACTIONS(6735), 1, anon_sym_DOT_DOT, - STATE(2808), 1, + ACTIONS(6737), 1, + anon_sym_AMP_AMP, + ACTIONS(6739), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6741), 1, + anon_sym_QMARK_QMARK, + ACTIONS(6743), 1, + anon_sym_as, + ACTIONS(6745), 1, + anon_sym_is, + STATE(3188), 1, sym_bracketed_argument_list, - STATE(3487), 1, + STATE(4584), 1, sym_argument_list, - ACTIONS(5306), 2, + ACTIONS(6615), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1223), 9, + ACTIONS(6711), 2, anon_sym_LT, anon_sym_GT, - anon_sym_QMARK, + ACTIONS(6715), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT_GT, - STATE(4976), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - ACTIONS(1221), 19, - anon_sym_COLON, + ACTIONS(6717), 2, anon_sym_STAR, anon_sym_PERCENT, - anon_sym_CARET, + ACTIONS(6727), 2, anon_sym_LT_LT, anon_sym_GT_GT_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_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, - [126677] = 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(7735), 1, - anon_sym_and, - ACTIONS(7753), 1, - anon_sym_or, - STATE(4977), 9, + ACTIONS(5737), 3, + sym_interpolation_close_brace, + anon_sym_COLON, + anon_sym_COMMA, + STATE(4908), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -630216,45 +623579,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(6207), 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(6205), 25, - 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_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, - [126765] = 33, + [119398] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -630275,67 +623600,74 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4100), 1, + ACTIONS(4042), 1, anon_sym_DOT, - ACTIONS(4102), 1, + ACTIONS(4044), 1, anon_sym_DASH_GT, - ACTIONS(5264), 1, + ACTIONS(5257), 1, anon_sym_LPAREN, - ACTIONS(5302), 1, + ACTIONS(5300), 1, anon_sym_LBRACK, - ACTIONS(5304), 1, + ACTIONS(5302), 1, anon_sym_BANG, - ACTIONS(6475), 1, + ACTIONS(6495), 1, anon_sym_switch, - ACTIONS(6489), 1, + ACTIONS(6509), 1, anon_sym_with, - ACTIONS(7564), 1, + ACTIONS(7548), 1, anon_sym_SLASH, - ACTIONS(7568), 1, + ACTIONS(7552), 1, anon_sym_GT_GT, - ACTIONS(7570), 1, + ACTIONS(7554), 1, anon_sym_DOT_DOT, - ACTIONS(7649), 1, + ACTIONS(7598), 1, + anon_sym_AMP, + ACTIONS(7604), 1, anon_sym_as, - ACTIONS(7651), 1, + ACTIONS(7606), 1, anon_sym_is, - STATE(2808), 1, + ACTIONS(7608), 1, + anon_sym_CARET, + ACTIONS(7610), 1, + anon_sym_PIPE, + ACTIONS(7614), 1, + anon_sym_AMP_AMP, + ACTIONS(7616), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7618), 1, + anon_sym_QMARK_QMARK, + ACTIONS(7620), 1, + anon_sym_QMARK, + STATE(2759), 1, sym_bracketed_argument_list, - STATE(3487), 1, + STATE(3381), 1, sym_argument_list, - ACTIONS(5306), 2, + ACTIONS(5304), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7560), 2, + ACTIONS(7544), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7562), 2, + ACTIONS(7546), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7566), 2, + ACTIONS(7550), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7641), 2, + ACTIONS(7596), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7647), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(5664), 3, - anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_AMP, - ACTIONS(5660), 9, - anon_sym_CARET, + ACTIONS(7600), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + ACTIONS(7602), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(5801), 3, anon_sym_and, anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_QMARK_QMARK, - anon_sym_by, - STATE(4978), 9, + anon_sym_equals, + STATE(4909), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -630345,7 +623677,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [126889] = 37, + [119536] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -630366,71 +623698,74 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4100), 1, + ACTIONS(4042), 1, anon_sym_DOT, - ACTIONS(4102), 1, + ACTIONS(4044), 1, anon_sym_DASH_GT, - ACTIONS(5264), 1, + ACTIONS(5257), 1, anon_sym_LPAREN, ACTIONS(5302), 1, - anon_sym_LBRACK, - ACTIONS(5304), 1, anon_sym_BANG, - ACTIONS(5664), 1, - anon_sym_QMARK, - ACTIONS(6475), 1, + ACTIONS(5549), 1, + anon_sym_LBRACK, + ACTIONS(6355), 1, anon_sym_switch, - ACTIONS(6489), 1, + ACTIONS(6369), 1, anon_sym_with, - ACTIONS(7564), 1, + ACTIONS(6811), 1, + anon_sym_as, + ACTIONS(7231), 1, + anon_sym_QMARK, + ACTIONS(7237), 1, anon_sym_SLASH, - ACTIONS(7568), 1, + ACTIONS(7239), 1, + anon_sym_CARET, + ACTIONS(7241), 1, + anon_sym_PIPE, + ACTIONS(7243), 1, + anon_sym_AMP, + ACTIONS(7247), 1, anon_sym_GT_GT, - ACTIONS(7570), 1, + ACTIONS(7253), 1, anon_sym_DOT_DOT, - ACTIONS(7643), 1, - anon_sym_AMP, - ACTIONS(7649), 1, - anon_sym_as, - ACTIONS(7651), 1, + ACTIONS(7255), 1, + anon_sym_AMP_AMP, + ACTIONS(7257), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7259), 1, + anon_sym_QMARK_QMARK, + ACTIONS(7261), 1, anon_sym_is, - ACTIONS(7655), 1, - anon_sym_CARET, - ACTIONS(7755), 1, - anon_sym_PIPE, - STATE(2808), 1, + STATE(2467), 1, sym_bracketed_argument_list, - STATE(3487), 1, + STATE(3381), 1, sym_argument_list, - ACTIONS(5306), 2, + ACTIONS(5304), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7560), 2, + ACTIONS(7229), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(7233), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7562), 2, + ACTIONS(7235), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7566), 2, + ACTIONS(7245), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7641), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(7645), 2, + ACTIONS(7249), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7647), 2, + ACTIONS(7251), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5660), 6, - anon_sym_and, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_QMARK_QMARK, - anon_sym_by, - STATE(4979), 9, + ACTIONS(7628), 3, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_RPAREN, + STATE(4910), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -630440,7 +623775,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [127021] = 38, + [119674] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -630461,72 +623796,74 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4100), 1, + ACTIONS(4042), 1, anon_sym_DOT, - ACTIONS(4102), 1, + ACTIONS(4044), 1, anon_sym_DASH_GT, - ACTIONS(5264), 1, + ACTIONS(5257), 1, anon_sym_LPAREN, ACTIONS(5302), 1, - anon_sym_LBRACK, - ACTIONS(5304), 1, anon_sym_BANG, - ACTIONS(5664), 1, - anon_sym_QMARK, - ACTIONS(6475), 1, + ACTIONS(5549), 1, + anon_sym_LBRACK, + ACTIONS(6355), 1, anon_sym_switch, - ACTIONS(6489), 1, + ACTIONS(6369), 1, anon_sym_with, - ACTIONS(7564), 1, - anon_sym_SLASH, - ACTIONS(7568), 1, - anon_sym_GT_GT, - ACTIONS(7570), 1, - anon_sym_DOT_DOT, - ACTIONS(7643), 1, - anon_sym_AMP, - ACTIONS(7649), 1, + ACTIONS(6811), 1, anon_sym_as, - ACTIONS(7651), 1, - anon_sym_is, - ACTIONS(7655), 1, + ACTIONS(7231), 1, + anon_sym_QMARK, + ACTIONS(7237), 1, + anon_sym_SLASH, + ACTIONS(7239), 1, anon_sym_CARET, - ACTIONS(7755), 1, + ACTIONS(7241), 1, anon_sym_PIPE, - ACTIONS(7757), 1, + ACTIONS(7243), 1, + anon_sym_AMP, + ACTIONS(7247), 1, + anon_sym_GT_GT, + ACTIONS(7253), 1, + anon_sym_DOT_DOT, + ACTIONS(7255), 1, anon_sym_AMP_AMP, - STATE(2808), 1, + ACTIONS(7257), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7259), 1, + anon_sym_QMARK_QMARK, + ACTIONS(7261), 1, + anon_sym_is, + STATE(2467), 1, sym_bracketed_argument_list, - STATE(3487), 1, + STATE(3381), 1, sym_argument_list, - ACTIONS(5306), 2, + ACTIONS(5304), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7560), 2, + ACTIONS(7229), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(7233), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7562), 2, + ACTIONS(7235), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7566), 2, + ACTIONS(7245), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7641), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(7645), 2, + ACTIONS(7249), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7647), 2, + ACTIONS(7251), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5660), 5, - anon_sym_and, - anon_sym_or, - anon_sym_PIPE_PIPE, - anon_sym_QMARK_QMARK, - anon_sym_by, - STATE(4980), 9, + ACTIONS(7630), 3, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_RPAREN, + STATE(4911), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -630536,7 +623873,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [127155] = 26, + [119812] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -630557,44 +623894,74 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4100), 1, + ACTIONS(4042), 1, anon_sym_DOT, - ACTIONS(4102), 1, + ACTIONS(4044), 1, anon_sym_DASH_GT, - ACTIONS(5264), 1, + ACTIONS(5257), 1, anon_sym_LPAREN, - ACTIONS(5304), 1, + ACTIONS(5302), 1, anon_sym_BANG, - ACTIONS(5573), 1, + ACTIONS(5549), 1, anon_sym_LBRACK, - ACTIONS(6343), 1, + ACTIONS(6355), 1, anon_sym_switch, - ACTIONS(6357), 1, + ACTIONS(6369), 1, anon_sym_with, - ACTIONS(6789), 1, + ACTIONS(6811), 1, + anon_sym_as, + ACTIONS(7231), 1, + anon_sym_QMARK, + ACTIONS(7237), 1, anon_sym_SLASH, - ACTIONS(6805), 1, + ACTIONS(7239), 1, + anon_sym_CARET, + ACTIONS(7241), 1, + anon_sym_PIPE, + ACTIONS(7243), 1, + anon_sym_AMP, + ACTIONS(7247), 1, + anon_sym_GT_GT, + ACTIONS(7253), 1, anon_sym_DOT_DOT, - STATE(2485), 1, + ACTIONS(7255), 1, + anon_sym_AMP_AMP, + ACTIONS(7257), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7259), 1, + anon_sym_QMARK_QMARK, + ACTIONS(7261), 1, + anon_sym_is, + STATE(2467), 1, sym_bracketed_argument_list, - STATE(3487), 1, + STATE(3381), 1, sym_argument_list, - ACTIONS(5306), 2, + ACTIONS(5304), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6787), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(5664), 8, + ACTIONS(7229), 2, anon_sym_LT, anon_sym_GT, - anon_sym_QMARK, + ACTIONS(7233), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT_GT, - STATE(4981), 9, + ACTIONS(7235), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(7245), 2, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + ACTIONS(7249), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(7251), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(7632), 3, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_RPAREN, + STATE(4912), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -630604,23 +623971,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5660), 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, - [127265] = 27, + [119950] = 27, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -630641,38 +623992,38 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(3881), 1, + ACTIONS(3861), 1, anon_sym_LBRACE, - ACTIONS(3897), 1, + ACTIONS(3877), 1, sym_discard, - ACTIONS(6823), 1, + ACTIONS(6969), 1, sym__identifier_token, - ACTIONS(6827), 1, + ACTIONS(6973), 1, anon_sym_LPAREN, - ACTIONS(7588), 1, + ACTIONS(7478), 1, anon_sym_COMMA, - ACTIONS(7759), 1, + ACTIONS(7634), 1, anon_sym_RPAREN, - STATE(2571), 1, + STATE(2565), 1, sym__reserved_identifier, - STATE(3463), 1, + STATE(3352), 1, sym_parenthesized_variable_designation, - STATE(3492), 1, + STATE(3422), 1, sym__variable_designation, - STATE(5279), 1, + STATE(5154), 1, sym_positional_pattern_clause, - STATE(5682), 1, + STATE(5691), 1, sym_property_pattern_clause, - STATE(6412), 1, + STATE(6424), 1, sym_identifier, - STATE(7311), 1, - sym_parameter_list, - STATE(7536), 1, + STATE(7378), 1, sym__lambda_parameters, - ACTIONS(3883), 2, + STATE(7531), 1, + sym_parameter_list, + ACTIONS(3867), 2, anon_sym_and, anon_sym_or, - STATE(4982), 9, + STATE(4913), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -630682,7 +624033,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(6825), 22, + ACTIONS(6971), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -630705,7 +624056,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [127377] = 40, + [120062] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -630726,74 +624077,74 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4100), 1, + ACTIONS(4042), 1, anon_sym_DOT, - ACTIONS(4102), 1, + ACTIONS(4044), 1, anon_sym_DASH_GT, - ACTIONS(5264), 1, + ACTIONS(5257), 1, anon_sym_LPAREN, ACTIONS(5302), 1, - anon_sym_LBRACK, - ACTIONS(5304), 1, anon_sym_BANG, - ACTIONS(6475), 1, + ACTIONS(5549), 1, + anon_sym_LBRACK, + ACTIONS(6355), 1, anon_sym_switch, - ACTIONS(6489), 1, + ACTIONS(6369), 1, anon_sym_with, - ACTIONS(7564), 1, - anon_sym_SLASH, - ACTIONS(7568), 1, - anon_sym_GT_GT, - ACTIONS(7570), 1, - anon_sym_DOT_DOT, - ACTIONS(7643), 1, - anon_sym_AMP, - ACTIONS(7649), 1, + ACTIONS(6811), 1, anon_sym_as, - ACTIONS(7651), 1, - anon_sym_is, - ACTIONS(7655), 1, + ACTIONS(7231), 1, + anon_sym_QMARK, + ACTIONS(7237), 1, + anon_sym_SLASH, + ACTIONS(7239), 1, anon_sym_CARET, - ACTIONS(7755), 1, + ACTIONS(7241), 1, anon_sym_PIPE, - ACTIONS(7757), 1, + ACTIONS(7243), 1, + anon_sym_AMP, + ACTIONS(7247), 1, + anon_sym_GT_GT, + ACTIONS(7253), 1, + anon_sym_DOT_DOT, + ACTIONS(7255), 1, anon_sym_AMP_AMP, - ACTIONS(7761), 1, - anon_sym_QMARK, - ACTIONS(7763), 1, + ACTIONS(7257), 1, anon_sym_PIPE_PIPE, - ACTIONS(7765), 1, + ACTIONS(7259), 1, anon_sym_QMARK_QMARK, - STATE(2808), 1, + ACTIONS(7261), 1, + anon_sym_is, + STATE(2467), 1, sym_bracketed_argument_list, - STATE(3487), 1, + STATE(3381), 1, sym_argument_list, - ACTIONS(5306), 2, + ACTIONS(5304), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7560), 2, + ACTIONS(7229), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(7233), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7562), 2, + ACTIONS(7235), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7566), 2, + ACTIONS(7245), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7641), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(7645), 2, + ACTIONS(7249), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7647), 2, + ACTIONS(7251), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5777), 3, - anon_sym_and, - anon_sym_or, - anon_sym_by, - STATE(4983), 9, + ACTIONS(7636), 3, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_RPAREN, + STATE(4914), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -630803,7 +624154,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [127515] = 40, + [120200] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -630824,74 +624175,74 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4100), 1, + ACTIONS(4042), 1, anon_sym_DOT, - ACTIONS(4102), 1, + ACTIONS(4044), 1, anon_sym_DASH_GT, - ACTIONS(5264), 1, + ACTIONS(5257), 1, anon_sym_LPAREN, ACTIONS(5302), 1, - anon_sym_LBRACK, - ACTIONS(5304), 1, anon_sym_BANG, - ACTIONS(6475), 1, + ACTIONS(5549), 1, + anon_sym_LBRACK, + ACTIONS(6355), 1, anon_sym_switch, - ACTIONS(6489), 1, + ACTIONS(6369), 1, anon_sym_with, - ACTIONS(7564), 1, - anon_sym_SLASH, - ACTIONS(7568), 1, - anon_sym_GT_GT, - ACTIONS(7570), 1, - anon_sym_DOT_DOT, - ACTIONS(7643), 1, - anon_sym_AMP, - ACTIONS(7649), 1, + ACTIONS(6811), 1, anon_sym_as, - ACTIONS(7651), 1, - anon_sym_is, - ACTIONS(7655), 1, + ACTIONS(7231), 1, + anon_sym_QMARK, + ACTIONS(7237), 1, + anon_sym_SLASH, + ACTIONS(7239), 1, anon_sym_CARET, - ACTIONS(7755), 1, + ACTIONS(7241), 1, anon_sym_PIPE, - ACTIONS(7757), 1, + ACTIONS(7243), 1, + anon_sym_AMP, + ACTIONS(7247), 1, + anon_sym_GT_GT, + ACTIONS(7253), 1, + anon_sym_DOT_DOT, + ACTIONS(7255), 1, anon_sym_AMP_AMP, - ACTIONS(7761), 1, - anon_sym_QMARK, - ACTIONS(7763), 1, + ACTIONS(7257), 1, anon_sym_PIPE_PIPE, - ACTIONS(7765), 1, + ACTIONS(7259), 1, anon_sym_QMARK_QMARK, - STATE(2808), 1, + ACTIONS(7261), 1, + anon_sym_is, + STATE(2467), 1, sym_bracketed_argument_list, - STATE(3487), 1, + STATE(3381), 1, sym_argument_list, - ACTIONS(5306), 2, + ACTIONS(5304), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7560), 2, + ACTIONS(7229), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(7233), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7562), 2, + ACTIONS(7235), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7566), 2, + ACTIONS(7245), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7641), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(7645), 2, + ACTIONS(7249), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7647), 2, + ACTIONS(7251), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5858), 3, - anon_sym_and, - anon_sym_or, - anon_sym_by, - STATE(4984), 9, + ACTIONS(7638), 3, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_RPAREN, + STATE(4915), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -630901,7 +624252,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [127653] = 24, + [120338] = 33, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -630922,40 +624273,67 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4100), 1, + ACTIONS(4042), 1, anon_sym_DOT, - ACTIONS(4102), 1, + ACTIONS(4044), 1, anon_sym_DASH_GT, - ACTIONS(5264), 1, + ACTIONS(5257), 1, anon_sym_LPAREN, ACTIONS(5302), 1, - anon_sym_LBRACK, - ACTIONS(5304), 1, anon_sym_BANG, - ACTIONS(6475), 1, + ACTIONS(5549), 1, + anon_sym_LBRACK, + ACTIONS(6355), 1, anon_sym_switch, - ACTIONS(6489), 1, + ACTIONS(6369), 1, anon_sym_with, - ACTIONS(7570), 1, + ACTIONS(6787), 1, + anon_sym_SLASH, + ACTIONS(6797), 1, + anon_sym_GT_GT, + ACTIONS(6803), 1, anon_sym_DOT_DOT, - STATE(2808), 1, + ACTIONS(6811), 1, + anon_sym_as, + ACTIONS(6813), 1, + anon_sym_is, + STATE(2467), 1, sym_bracketed_argument_list, - STATE(3487), 1, + STATE(3381), 1, sym_argument_list, - ACTIONS(5306), 2, + ACTIONS(5304), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5664), 9, + ACTIONS(6779), 2, anon_sym_LT, anon_sym_GT, - anon_sym_QMARK, + ACTIONS(6783), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, + ACTIONS(6785), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(6795), 2, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + ACTIONS(6801), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(5739), 3, + anon_sym_QMARK, anon_sym_PIPE, anon_sym_AMP, - anon_sym_GT_GT, - STATE(4985), 9, + ACTIONS(5737), 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(4916), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -630965,25 +624343,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5660), 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_by, - anon_sym_as, - anon_sym_is, - [127759] = 22, + [120462] = 42, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -631004,36 +624364,76 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4100), 1, + ACTIONS(4042), 1, anon_sym_DOT, - ACTIONS(4102), 1, + ACTIONS(4044), 1, anon_sym_DASH_GT, - ACTIONS(5264), 1, + ACTIONS(5257), 1, anon_sym_LPAREN, ACTIONS(5302), 1, - anon_sym_LBRACK, - ACTIONS(5304), 1, anon_sym_BANG, - ACTIONS(7570), 1, + ACTIONS(5549), 1, + anon_sym_LBRACK, + ACTIONS(6355), 1, + anon_sym_switch, + ACTIONS(6369), 1, + anon_sym_with, + ACTIONS(6811), 1, + anon_sym_as, + ACTIONS(7231), 1, + anon_sym_QMARK, + ACTIONS(7237), 1, + anon_sym_SLASH, + ACTIONS(7239), 1, + anon_sym_CARET, + ACTIONS(7241), 1, + anon_sym_PIPE, + ACTIONS(7243), 1, + anon_sym_AMP, + ACTIONS(7247), 1, + anon_sym_GT_GT, + ACTIONS(7253), 1, anon_sym_DOT_DOT, - STATE(2808), 1, + ACTIONS(7255), 1, + anon_sym_AMP_AMP, + ACTIONS(7257), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7259), 1, + anon_sym_QMARK_QMARK, + ACTIONS(7261), 1, + anon_sym_is, + ACTIONS(7640), 1, + anon_sym_COMMA, + ACTIONS(7642), 1, + anon_sym_RBRACE, + STATE(2467), 1, sym_bracketed_argument_list, - STATE(3487), 1, + STATE(3381), 1, sym_argument_list, - ACTIONS(5306), 2, + STATE(6856), 1, + aux_sym__for_statement_conditions_repeat1, + ACTIONS(5304), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5733), 9, + ACTIONS(7229), 2, 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(4986), 9, + ACTIONS(7235), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(7245), 2, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + ACTIONS(7249), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(7251), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + STATE(4917), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -631043,27 +624443,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5731), 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_by, - anon_sym_as, - anon_sym_is, - anon_sym_with, - [127861] = 24, + [120604] = 42, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -631084,40 +624464,76 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4100), 1, + ACTIONS(2695), 1, + anon_sym_COMMA, + ACTIONS(4042), 1, anon_sym_DOT, - ACTIONS(4102), 1, + ACTIONS(4044), 1, anon_sym_DASH_GT, - ACTIONS(5264), 1, + ACTIONS(5257), 1, anon_sym_LPAREN, - ACTIONS(5304), 1, + ACTIONS(5302), 1, anon_sym_BANG, - ACTIONS(5573), 1, + ACTIONS(5549), 1, anon_sym_LBRACK, - ACTIONS(6343), 1, + ACTIONS(6355), 1, anon_sym_switch, - ACTIONS(6357), 1, + ACTIONS(6369), 1, anon_sym_with, - ACTIONS(6805), 1, + ACTIONS(6811), 1, + anon_sym_as, + ACTIONS(7231), 1, + anon_sym_QMARK, + ACTIONS(7237), 1, + anon_sym_SLASH, + ACTIONS(7239), 1, + anon_sym_CARET, + ACTIONS(7241), 1, + anon_sym_PIPE, + ACTIONS(7243), 1, + anon_sym_AMP, + ACTIONS(7247), 1, + anon_sym_GT_GT, + ACTIONS(7253), 1, anon_sym_DOT_DOT, - STATE(2485), 1, + ACTIONS(7255), 1, + anon_sym_AMP_AMP, + ACTIONS(7257), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7259), 1, + anon_sym_QMARK_QMARK, + ACTIONS(7261), 1, + anon_sym_is, + ACTIONS(7644), 1, + anon_sym_RBRACK, + STATE(2467), 1, sym_bracketed_argument_list, - STATE(3487), 1, + STATE(3381), 1, sym_argument_list, - ACTIONS(5306), 2, + STATE(6734), 1, + aux_sym_array_rank_specifier_repeat1, + ACTIONS(5304), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5664), 9, + ACTIONS(7229), 2, 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(4987), 9, + ACTIONS(7235), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(7245), 2, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + ACTIONS(7249), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(7251), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + STATE(4918), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -631127,25 +624543,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5660), 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_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, - [127967] = 22, + [120746] = 22, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -631166,26 +624564,26 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4100), 1, + ACTIONS(4427), 1, anon_sym_DOT, - ACTIONS(4102), 1, + ACTIONS(4429), 1, anon_sym_DASH_GT, - ACTIONS(5264), 1, + ACTIONS(6557), 1, anon_sym_LPAREN, - ACTIONS(5302), 1, + ACTIONS(6607), 1, anon_sym_LBRACK, - ACTIONS(5304), 1, + ACTIONS(6613), 1, anon_sym_BANG, - ACTIONS(7570), 1, + ACTIONS(6735), 1, anon_sym_DOT_DOT, - STATE(2808), 1, + STATE(3188), 1, sym_bracketed_argument_list, - STATE(3487), 1, + STATE(4584), 1, sym_argument_list, - ACTIONS(5306), 2, + ACTIONS(6615), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1223), 9, + ACTIONS(5743), 9, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, @@ -631195,7 +624593,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_AMP, anon_sym_GT_GT, - STATE(4988), 9, + STATE(4919), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -631205,7 +624603,10 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(1221), 19, + ACTIONS(5741), 19, + sym_interpolation_close_brace, + anon_sym_COLON, + anon_sym_COMMA, anon_sym_STAR, anon_sym_PERCENT, anon_sym_CARET, @@ -631216,16 +624617,13 @@ 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_by, anon_sym_as, anon_sym_is, anon_sym_with, - [128069] = 35, + [120848] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -631246,69 +624644,74 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4100), 1, + ACTIONS(4042), 1, anon_sym_DOT, - ACTIONS(4102), 1, + ACTIONS(4044), 1, anon_sym_DASH_GT, - ACTIONS(5264), 1, + ACTIONS(5257), 1, anon_sym_LPAREN, - ACTIONS(5304), 1, + ACTIONS(5302), 1, anon_sym_BANG, - ACTIONS(5573), 1, + ACTIONS(5549), 1, anon_sym_LBRACK, - ACTIONS(6343), 1, + ACTIONS(6355), 1, anon_sym_switch, - ACTIONS(6357), 1, + ACTIONS(6369), 1, anon_sym_with, - ACTIONS(6789), 1, + ACTIONS(6811), 1, + anon_sym_as, + ACTIONS(7261), 1, + anon_sym_is, + ACTIONS(7562), 1, + anon_sym_QMARK, + ACTIONS(7568), 1, anon_sym_SLASH, - ACTIONS(6795), 1, + ACTIONS(7570), 1, + anon_sym_CARET, + ACTIONS(7572), 1, + anon_sym_PIPE, + ACTIONS(7574), 1, anon_sym_AMP, - ACTIONS(6799), 1, + ACTIONS(7578), 1, anon_sym_GT_GT, - ACTIONS(6805), 1, + ACTIONS(7584), 1, anon_sym_DOT_DOT, - ACTIONS(6813), 1, - anon_sym_as, - ACTIONS(6815), 1, - anon_sym_is, - STATE(2485), 1, + ACTIONS(7586), 1, + anon_sym_AMP_AMP, + ACTIONS(7588), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7590), 1, + anon_sym_QMARK_QMARK, + STATE(2467), 1, sym_bracketed_argument_list, - STATE(3487), 1, + STATE(3381), 1, sym_argument_list, - ACTIONS(5306), 2, + ACTIONS(5304), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5664), 2, - anon_sym_QMARK, - anon_sym_PIPE, - ACTIONS(6781), 2, + ACTIONS(7560), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(6785), 2, + ACTIONS(7564), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6787), 2, + ACTIONS(7566), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(6797), 2, + ACTIONS(7576), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(6801), 2, + ACTIONS(7580), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6803), 2, + ACTIONS(7582), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5660), 7, - anon_sym_CARET, - 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(4989), 9, + ACTIONS(5801), 3, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RBRACE, + STATE(4920), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -631318,7 +624721,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [128197] = 36, + [120986] = 22, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -631339,70 +624742,36 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4100), 1, + ACTIONS(4042), 1, anon_sym_DOT, - ACTIONS(4102), 1, + ACTIONS(4044), 1, anon_sym_DASH_GT, - ACTIONS(5264), 1, + ACTIONS(5257), 1, anon_sym_LPAREN, - ACTIONS(5304), 1, + ACTIONS(5302), 1, anon_sym_BANG, - ACTIONS(5573), 1, + ACTIONS(5549), 1, anon_sym_LBRACK, - ACTIONS(6343), 1, - anon_sym_switch, - ACTIONS(6357), 1, - anon_sym_with, - ACTIONS(6789), 1, - anon_sym_SLASH, - ACTIONS(6791), 1, - anon_sym_CARET, - ACTIONS(6795), 1, - anon_sym_AMP, - ACTIONS(6799), 1, - anon_sym_GT_GT, - ACTIONS(6805), 1, + ACTIONS(7584), 1, anon_sym_DOT_DOT, - ACTIONS(6813), 1, - anon_sym_as, - ACTIONS(6815), 1, - anon_sym_is, - STATE(2485), 1, + STATE(2467), 1, sym_bracketed_argument_list, - STATE(3487), 1, + STATE(3381), 1, sym_argument_list, - ACTIONS(5306), 2, + ACTIONS(5304), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5664), 2, - anon_sym_QMARK, - anon_sym_PIPE, - ACTIONS(6781), 2, + ACTIONS(1161), 9, anon_sym_LT, anon_sym_GT, - ACTIONS(6785), 2, + anon_sym_QMARK, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6787), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(6797), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - ACTIONS(6801), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(6803), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(5660), 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(4990), 9, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT_GT, + STATE(4921), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -631412,99 +624781,27 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [128327] = 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(4100), 1, - anon_sym_DOT, - ACTIONS(4102), 1, - anon_sym_DASH_GT, - ACTIONS(5264), 1, - anon_sym_LPAREN, - ACTIONS(5304), 1, - anon_sym_BANG, - ACTIONS(5573), 1, - anon_sym_LBRACK, - ACTIONS(6343), 1, - anon_sym_switch, - ACTIONS(6357), 1, - anon_sym_with, - ACTIONS(6789), 1, - anon_sym_SLASH, - ACTIONS(6799), 1, - anon_sym_GT_GT, - ACTIONS(6805), 1, - anon_sym_DOT_DOT, - ACTIONS(6813), 1, - anon_sym_as, - ACTIONS(6815), 1, - anon_sym_is, - STATE(2485), 1, - sym_bracketed_argument_list, - STATE(3487), 1, - sym_argument_list, - ACTIONS(5306), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6781), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(6785), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(6787), 2, + ACTIONS(1147), 19, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(6797), 2, + anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(6801), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6803), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5664), 3, - anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_AMP, - ACTIONS(5660), 7, - anon_sym_CARET, + anon_sym_switch, 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(4991), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - [128453] = 27, + anon_sym_as, + anon_sym_is, + anon_sym_with, + [121088] = 22, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -631525,45 +624822,36 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4100), 1, + ACTIONS(4042), 1, anon_sym_DOT, - ACTIONS(4102), 1, + ACTIONS(4044), 1, anon_sym_DASH_GT, - ACTIONS(5264), 1, + ACTIONS(5257), 1, anon_sym_LPAREN, - ACTIONS(5304), 1, + ACTIONS(5302), 1, anon_sym_BANG, - ACTIONS(5573), 1, + ACTIONS(5549), 1, anon_sym_LBRACK, - ACTIONS(6343), 1, - anon_sym_switch, - ACTIONS(6357), 1, - anon_sym_with, - ACTIONS(6789), 1, - anon_sym_SLASH, - ACTIONS(6805), 1, + ACTIONS(6803), 1, anon_sym_DOT_DOT, - STATE(2485), 1, + STATE(2467), 1, sym_bracketed_argument_list, - STATE(3487), 1, + STATE(3381), 1, sym_argument_list, - ACTIONS(5306), 2, + ACTIONS(5304), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6785), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(6787), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(5664), 6, + ACTIONS(5743), 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(4992), 9, + STATE(4922), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -631573,7 +624861,9 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5660), 15, + ACTIONS(5741), 19, + anon_sym_STAR, + anon_sym_PERCENT, anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT_GT, @@ -631581,15 +624871,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, - [128565] = 15, + [121190] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -631610,59 +624902,84 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(7767), 1, - anon_sym_and, - ACTIONS(7769), 1, - anon_sym_or, - STATE(4993), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - ACTIONS(6207), 11, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, + ACTIONS(4427), 1, + anon_sym_DOT, + ACTIONS(4429), 1, + anon_sym_DASH_GT, + ACTIONS(6557), 1, + anon_sym_LPAREN, + ACTIONS(6607), 1, + anon_sym_LBRACK, + ACTIONS(6613), 1, anon_sym_BANG, - anon_sym_PLUS, - anon_sym_DASH, + ACTIONS(6637), 1, + anon_sym_switch, + ACTIONS(6651), 1, + anon_sym_with, + ACTIONS(6713), 1, + anon_sym_QMARK, + ACTIONS(6719), 1, anon_sym_SLASH, + ACTIONS(6721), 1, + anon_sym_CARET, + ACTIONS(6723), 1, anon_sym_PIPE, + ACTIONS(6725), 1, anon_sym_AMP, + ACTIONS(6729), 1, anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(6205), 25, - anon_sym_LBRACK, - anon_sym_LPAREN, + ACTIONS(6735), 1, + anon_sym_DOT_DOT, + ACTIONS(6737), 1, + anon_sym_AMP_AMP, + ACTIONS(6739), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6741), 1, + anon_sym_QMARK_QMARK, + ACTIONS(6743), 1, + anon_sym_as, + ACTIONS(6745), 1, + anon_sym_is, + STATE(3188), 1, + sym_bracketed_argument_list, + STATE(4584), 1, + sym_argument_list, + ACTIONS(6615), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + ACTIONS(6711), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(6715), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6717), 2, anon_sym_STAR, anon_sym_PERCENT, - anon_sym_CARET, + ACTIONS(6727), 2, anon_sym_LT_LT, anon_sym_GT_GT_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_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_into, - anon_sym_as, - anon_sym_is, - anon_sym_DASH_GT, - anon_sym_with, - [128653] = 14, + ACTIONS(5801), 3, + sym_interpolation_close_brace, + anon_sym_COLON, + anon_sym_COMMA, + STATE(4923), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + [121328] = 27, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -631683,9 +625000,38 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(7767), 1, + ACTIONS(3861), 1, + anon_sym_LBRACE, + ACTIONS(3877), 1, + sym_discard, + ACTIONS(6969), 1, + sym__identifier_token, + ACTIONS(6973), 1, + anon_sym_LPAREN, + ACTIONS(7478), 1, + anon_sym_COMMA, + ACTIONS(7646), 1, + anon_sym_RPAREN, + STATE(2565), 1, + sym__reserved_identifier, + STATE(3352), 1, + sym_parenthesized_variable_designation, + STATE(3422), 1, + sym__variable_designation, + STATE(5154), 1, + sym_positional_pattern_clause, + STATE(5691), 1, + sym_property_pattern_clause, + STATE(6424), 1, + sym_identifier, + STATE(7378), 1, + sym__lambda_parameters, + STATE(7531), 1, + sym_parameter_list, + ACTIONS(3867), 2, anon_sym_and, - STATE(4994), 9, + anon_sym_or, + STATE(4924), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -631695,46 +625041,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(6069), 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(6067), 26, - 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, + ACTIONS(6971), 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_DOT_DOT, - 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, - [128739] = 33, + 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, + [121440] = 37, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -631755,67 +625085,71 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4100), 1, + ACTIONS(4042), 1, anon_sym_DOT, - ACTIONS(4102), 1, + ACTIONS(4044), 1, anon_sym_DASH_GT, - ACTIONS(5264), 1, + ACTIONS(5257), 1, anon_sym_LPAREN, - ACTIONS(5304), 1, + ACTIONS(5302), 1, anon_sym_BANG, - ACTIONS(5573), 1, + ACTIONS(5549), 1, anon_sym_LBRACK, - ACTIONS(6343), 1, + ACTIONS(5739), 1, + anon_sym_QMARK, + ACTIONS(6355), 1, anon_sym_switch, - ACTIONS(6357), 1, + ACTIONS(6369), 1, anon_sym_with, - ACTIONS(6789), 1, + ACTIONS(6787), 1, anon_sym_SLASH, - ACTIONS(6799), 1, + ACTIONS(6789), 1, + anon_sym_CARET, + ACTIONS(6791), 1, + anon_sym_PIPE, + ACTIONS(6793), 1, + anon_sym_AMP, + ACTIONS(6797), 1, anon_sym_GT_GT, - ACTIONS(6805), 1, + ACTIONS(6803), 1, anon_sym_DOT_DOT, - ACTIONS(6813), 1, + ACTIONS(6811), 1, anon_sym_as, - ACTIONS(6815), 1, + ACTIONS(6813), 1, anon_sym_is, - STATE(2485), 1, + STATE(2467), 1, sym_bracketed_argument_list, - STATE(3487), 1, + STATE(3381), 1, sym_argument_list, - ACTIONS(5306), 2, + ACTIONS(5304), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6781), 2, + ACTIONS(6779), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(6785), 2, + ACTIONS(6783), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6787), 2, + ACTIONS(6785), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(6797), 2, + ACTIONS(6795), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(6803), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(5664), 3, - anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_AMP, - ACTIONS(5660), 9, - anon_sym_CARET, + ACTIONS(6799), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + ACTIONS(6801), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(5737), 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(4995), 9, + STATE(4925), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -631825,7 +625159,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [128863] = 27, + [121572] = 27, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -631846,38 +625180,38 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(3881), 1, + ACTIONS(3861), 1, anon_sym_LBRACE, - ACTIONS(3897), 1, + ACTIONS(3877), 1, sym_discard, - ACTIONS(6823), 1, + ACTIONS(6969), 1, sym__identifier_token, - ACTIONS(6827), 1, + ACTIONS(6973), 1, anon_sym_LPAREN, - ACTIONS(7588), 1, + ACTIONS(7478), 1, anon_sym_COMMA, - ACTIONS(7771), 1, + ACTIONS(7648), 1, anon_sym_RPAREN, - STATE(2571), 1, + STATE(2565), 1, sym__reserved_identifier, - STATE(3463), 1, + STATE(3352), 1, sym_parenthesized_variable_designation, - STATE(3492), 1, + STATE(3422), 1, sym__variable_designation, - STATE(5279), 1, + STATE(5154), 1, sym_positional_pattern_clause, - STATE(5682), 1, + STATE(5691), 1, sym_property_pattern_clause, - STATE(6412), 1, + STATE(6424), 1, sym_identifier, - STATE(7311), 1, - sym_parameter_list, - STATE(7536), 1, + STATE(7378), 1, sym__lambda_parameters, - ACTIONS(3883), 2, + STATE(7531), 1, + sym_parameter_list, + ACTIONS(3867), 2, anon_sym_and, anon_sym_or, - STATE(4996), 9, + STATE(4926), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -631887,7 +625221,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(6825), 22, + ACTIONS(6971), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -631910,7 +625244,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [128975] = 24, + [121684] = 22, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -631931,30 +625265,26 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4100), 1, + ACTIONS(4427), 1, anon_sym_DOT, - ACTIONS(4102), 1, + ACTIONS(4429), 1, anon_sym_DASH_GT, - ACTIONS(5264), 1, + ACTIONS(6557), 1, anon_sym_LPAREN, - ACTIONS(5302), 1, + ACTIONS(6607), 1, anon_sym_LBRACK, - ACTIONS(5304), 1, + ACTIONS(6613), 1, anon_sym_BANG, - ACTIONS(6475), 1, - anon_sym_switch, - ACTIONS(6489), 1, - anon_sym_with, - ACTIONS(7703), 1, + ACTIONS(6735), 1, anon_sym_DOT_DOT, - STATE(2808), 1, + STATE(3188), 1, sym_bracketed_argument_list, - STATE(3487), 1, + STATE(4584), 1, sym_argument_list, - ACTIONS(5306), 2, + ACTIONS(6615), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5664), 9, + ACTIONS(1161), 9, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, @@ -631964,7 +625294,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_AMP, anon_sym_GT_GT, - STATE(4997), 9, + STATE(4927), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -631974,7 +625304,10 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5660), 17, + ACTIONS(1147), 19, + sym_interpolation_close_brace, + anon_sym_COLON, + anon_sym_COMMA, anon_sym_STAR, anon_sym_PERCENT, anon_sym_CARET, @@ -631984,15 +625317,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_switch, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_QMARK_QMARK, - anon_sym_equals, anon_sym_as, anon_sym_is, - [129081] = 22, + anon_sym_with, + [121786] = 29, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -632013,36 +625345,49 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4100), 1, + ACTIONS(4042), 1, anon_sym_DOT, - ACTIONS(4102), 1, + ACTIONS(4044), 1, anon_sym_DASH_GT, - ACTIONS(5264), 1, + ACTIONS(5257), 1, anon_sym_LPAREN, - ACTIONS(5302), 1, + ACTIONS(5300), 1, anon_sym_LBRACK, - ACTIONS(5304), 1, + ACTIONS(5302), 1, anon_sym_BANG, - ACTIONS(7703), 1, + ACTIONS(6495), 1, + anon_sym_switch, + ACTIONS(6509), 1, + anon_sym_with, + ACTIONS(7654), 1, + anon_sym_SLASH, + ACTIONS(7658), 1, + anon_sym_GT_GT, + ACTIONS(7660), 1, anon_sym_DOT_DOT, - STATE(2808), 1, + STATE(2759), 1, sym_bracketed_argument_list, - STATE(3487), 1, + STATE(3381), 1, sym_argument_list, - ACTIONS(5306), 2, + ACTIONS(5304), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1223), 9, + ACTIONS(7650), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(7652), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(7656), 2, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + ACTIONS(5739), 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(4998), 9, + STATE(4928), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -632052,27 +625397,21 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(1221), 19, - anon_sym_STAR, - anon_sym_PERCENT, + ACTIONS(5737), 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_switch, anon_sym_and, anon_sym_or, 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_with, - [129183] = 22, + [121902] = 26, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -632093,36 +625432,44 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4100), 1, + ACTIONS(4042), 1, anon_sym_DOT, - ACTIONS(4102), 1, + ACTIONS(4044), 1, anon_sym_DASH_GT, - ACTIONS(5264), 1, + ACTIONS(5257), 1, anon_sym_LPAREN, - ACTIONS(5304), 1, - anon_sym_BANG, - ACTIONS(5573), 1, + ACTIONS(5300), 1, anon_sym_LBRACK, - ACTIONS(6805), 1, + ACTIONS(5302), 1, + anon_sym_BANG, + ACTIONS(6495), 1, + anon_sym_switch, + ACTIONS(6509), 1, + anon_sym_with, + ACTIONS(7654), 1, + anon_sym_SLASH, + ACTIONS(7660), 1, anon_sym_DOT_DOT, - STATE(2485), 1, + STATE(2759), 1, sym_bracketed_argument_list, - STATE(3487), 1, + STATE(3381), 1, sym_argument_list, - ACTIONS(5306), 2, + ACTIONS(5304), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5733), 9, + ACTIONS(7652), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(5739), 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(4999), 9, + STATE(4929), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -632132,9 +625479,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5731), 19, - anon_sym_STAR, - anon_sym_PERCENT, + ACTIONS(5737), 15, anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT_GT, @@ -632142,17 +625487,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_on, anon_sym_as, anon_sym_is, - anon_sym_with, - aux_sym_preproc_if_token3, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - [129285] = 37, + [122012] = 35, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -632173,71 +625516,69 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4100), 1, + ACTIONS(4042), 1, anon_sym_DOT, - ACTIONS(4102), 1, + ACTIONS(4044), 1, anon_sym_DASH_GT, - ACTIONS(5264), 1, + ACTIONS(5257), 1, anon_sym_LPAREN, - ACTIONS(5304), 1, - anon_sym_BANG, - ACTIONS(5573), 1, + ACTIONS(5300), 1, anon_sym_LBRACK, - ACTIONS(5664), 1, - anon_sym_QMARK, - ACTIONS(6343), 1, + ACTIONS(5302), 1, + anon_sym_BANG, + ACTIONS(6495), 1, anon_sym_switch, - ACTIONS(6357), 1, + ACTIONS(6509), 1, anon_sym_with, - ACTIONS(6789), 1, + ACTIONS(7654), 1, anon_sym_SLASH, - ACTIONS(6791), 1, - anon_sym_CARET, - ACTIONS(6793), 1, - anon_sym_PIPE, - ACTIONS(6795), 1, - anon_sym_AMP, - ACTIONS(6799), 1, + ACTIONS(7658), 1, anon_sym_GT_GT, - ACTIONS(6805), 1, + ACTIONS(7660), 1, anon_sym_DOT_DOT, - ACTIONS(6813), 1, + ACTIONS(7664), 1, + anon_sym_AMP, + ACTIONS(7670), 1, anon_sym_as, - ACTIONS(6815), 1, + ACTIONS(7672), 1, anon_sym_is, - STATE(2485), 1, + STATE(2759), 1, sym_bracketed_argument_list, - STATE(3487), 1, + STATE(3381), 1, sym_argument_list, - ACTIONS(5306), 2, + ACTIONS(5304), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6781), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(6785), 2, + ACTIONS(5739), 2, + anon_sym_QMARK, + anon_sym_PIPE, + ACTIONS(7650), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6787), 2, + ACTIONS(7652), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(6797), 2, + ACTIONS(7656), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(6801), 2, + ACTIONS(7662), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(7666), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6803), 2, + ACTIONS(7668), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5660), 6, + ACTIONS(5737), 7, + 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, - STATE(5000), 9, + anon_sym_on, + STATE(4930), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -632247,7 +625588,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [129417] = 27, + [122140] = 36, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -632268,38 +625609,70 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(3881), 1, - anon_sym_LBRACE, - ACTIONS(3897), 1, - sym_discard, - ACTIONS(6823), 1, - sym__identifier_token, - ACTIONS(6827), 1, + ACTIONS(4042), 1, + anon_sym_DOT, + ACTIONS(4044), 1, + anon_sym_DASH_GT, + ACTIONS(5257), 1, anon_sym_LPAREN, - ACTIONS(7588), 1, - anon_sym_COMMA, - ACTIONS(7773), 1, - anon_sym_RPAREN, - STATE(2571), 1, - sym__reserved_identifier, - STATE(3463), 1, - sym_parenthesized_variable_designation, - STATE(3492), 1, - sym__variable_designation, - STATE(5279), 1, - sym_positional_pattern_clause, - STATE(5682), 1, - sym_property_pattern_clause, - STATE(6412), 1, - sym_identifier, - STATE(7311), 1, - sym_parameter_list, - STATE(7536), 1, - sym__lambda_parameters, - ACTIONS(3883), 2, + ACTIONS(5300), 1, + anon_sym_LBRACK, + ACTIONS(5302), 1, + anon_sym_BANG, + ACTIONS(6495), 1, + anon_sym_switch, + ACTIONS(6509), 1, + anon_sym_with, + ACTIONS(7654), 1, + anon_sym_SLASH, + ACTIONS(7658), 1, + anon_sym_GT_GT, + ACTIONS(7660), 1, + anon_sym_DOT_DOT, + ACTIONS(7664), 1, + anon_sym_AMP, + ACTIONS(7670), 1, + anon_sym_as, + ACTIONS(7672), 1, + anon_sym_is, + ACTIONS(7674), 1, + anon_sym_CARET, + STATE(2759), 1, + sym_bracketed_argument_list, + STATE(3381), 1, + sym_argument_list, + ACTIONS(5304), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5739), 2, + anon_sym_QMARK, + anon_sym_PIPE, + ACTIONS(7650), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(7652), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(7656), 2, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + ACTIONS(7662), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(7666), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(7668), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(5737), 6, anon_sym_and, anon_sym_or, - STATE(5001), 9, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, + anon_sym_on, + STATE(4931), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -632309,30 +625682,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(6825), 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, - [129529] = 40, + [122270] = 34, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -632353,74 +625703,68 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4100), 1, + ACTIONS(4042), 1, anon_sym_DOT, - ACTIONS(4102), 1, + ACTIONS(4044), 1, anon_sym_DASH_GT, - ACTIONS(5264), 1, + ACTIONS(5257), 1, anon_sym_LPAREN, - ACTIONS(5302), 1, + ACTIONS(5300), 1, anon_sym_LBRACK, - ACTIONS(5304), 1, + ACTIONS(5302), 1, anon_sym_BANG, - ACTIONS(6475), 1, + ACTIONS(6495), 1, anon_sym_switch, - ACTIONS(6489), 1, + ACTIONS(6509), 1, anon_sym_with, - ACTIONS(7697), 1, + ACTIONS(7654), 1, anon_sym_SLASH, - ACTIONS(7701), 1, + ACTIONS(7658), 1, anon_sym_GT_GT, - ACTIONS(7703), 1, + ACTIONS(7660), 1, anon_sym_DOT_DOT, - ACTIONS(7709), 1, - anon_sym_AMP, - ACTIONS(7715), 1, + ACTIONS(7670), 1, anon_sym_as, - ACTIONS(7717), 1, + ACTIONS(7672), 1, anon_sym_is, - ACTIONS(7719), 1, - anon_sym_CARET, - ACTIONS(7725), 1, - anon_sym_PIPE, - ACTIONS(7727), 1, - anon_sym_AMP_AMP, - ACTIONS(7731), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7733), 1, - anon_sym_QMARK_QMARK, - ACTIONS(7743), 1, - anon_sym_QMARK, - STATE(2808), 1, + STATE(2759), 1, sym_bracketed_argument_list, - STATE(3487), 1, + STATE(3381), 1, sym_argument_list, - ACTIONS(5306), 2, + ACTIONS(5304), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7693), 2, + ACTIONS(7650), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7695), 2, + ACTIONS(7652), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7699), 2, + ACTIONS(7656), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7707), 2, + ACTIONS(7662), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7711), 2, + ACTIONS(7666), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7713), 2, + ACTIONS(7668), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5777), 3, + ACTIONS(5739), 3, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_AMP, + ACTIONS(5737), 7, + anon_sym_CARET, anon_sym_and, anon_sym_or, - anon_sym_equals, - STATE(5002), 9, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, + anon_sym_on, + STATE(4932), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -632430,7 +625774,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [129667] = 24, + [122396] = 27, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -632451,40 +625795,45 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4100), 1, + ACTIONS(4042), 1, anon_sym_DOT, - ACTIONS(4102), 1, + ACTIONS(4044), 1, anon_sym_DASH_GT, - ACTIONS(5264), 1, + ACTIONS(5257), 1, anon_sym_LPAREN, - ACTIONS(5302), 1, + ACTIONS(5300), 1, anon_sym_LBRACK, - ACTIONS(5304), 1, + ACTIONS(5302), 1, anon_sym_BANG, - ACTIONS(6475), 1, + ACTIONS(6495), 1, anon_sym_switch, - ACTIONS(6489), 1, + ACTIONS(6509), 1, anon_sym_with, - ACTIONS(7484), 1, + ACTIONS(7654), 1, + anon_sym_SLASH, + ACTIONS(7660), 1, anon_sym_DOT_DOT, - STATE(2808), 1, + STATE(2759), 1, sym_bracketed_argument_list, - STATE(3487), 1, + STATE(3381), 1, sym_argument_list, - ACTIONS(5306), 2, + ACTIONS(5304), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5664), 9, + ACTIONS(7650), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(7652), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(5739), 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(5003), 9, + STATE(4933), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -632494,9 +625843,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5660), 17, - anon_sym_STAR, - anon_sym_PERCENT, + ACTIONS(5737), 15, anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT_GT, @@ -632512,7 +625859,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_on, anon_sym_as, anon_sym_is, - [129773] = 38, + [122508] = 33, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -632533,72 +625880,162 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4100), 1, + ACTIONS(4042), 1, anon_sym_DOT, - ACTIONS(4102), 1, + ACTIONS(4044), 1, anon_sym_DASH_GT, - ACTIONS(5264), 1, + ACTIONS(5257), 1, anon_sym_LPAREN, - ACTIONS(5304), 1, - anon_sym_BANG, - ACTIONS(5573), 1, + ACTIONS(5300), 1, anon_sym_LBRACK, - ACTIONS(5664), 1, - anon_sym_QMARK, - ACTIONS(6343), 1, + ACTIONS(5302), 1, + anon_sym_BANG, + ACTIONS(6495), 1, anon_sym_switch, - ACTIONS(6357), 1, + ACTIONS(6509), 1, anon_sym_with, - ACTIONS(6789), 1, + ACTIONS(7654), 1, anon_sym_SLASH, - ACTIONS(6791), 1, - anon_sym_CARET, - ACTIONS(6793), 1, - anon_sym_PIPE, - ACTIONS(6795), 1, - anon_sym_AMP, - ACTIONS(6799), 1, + ACTIONS(7658), 1, anon_sym_GT_GT, - ACTIONS(6805), 1, + ACTIONS(7660), 1, anon_sym_DOT_DOT, - ACTIONS(6807), 1, - anon_sym_AMP_AMP, - ACTIONS(6813), 1, + ACTIONS(7670), 1, anon_sym_as, - ACTIONS(6815), 1, + ACTIONS(7672), 1, anon_sym_is, - STATE(2485), 1, + STATE(2759), 1, sym_bracketed_argument_list, - STATE(3487), 1, + STATE(3381), 1, sym_argument_list, - ACTIONS(5306), 2, + ACTIONS(5304), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6781), 2, + ACTIONS(7650), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(7652), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(7656), 2, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + ACTIONS(7662), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(6785), 2, + ACTIONS(7668), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(5739), 3, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_AMP, + ACTIONS(5737), 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_on, + STATE(4934), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + [122632] = 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(4042), 1, + anon_sym_DOT, + ACTIONS(4044), 1, + anon_sym_DASH_GT, + ACTIONS(5257), 1, + anon_sym_LPAREN, + ACTIONS(5300), 1, + anon_sym_LBRACK, + ACTIONS(5302), 1, + anon_sym_BANG, + ACTIONS(5739), 1, + anon_sym_QMARK, + ACTIONS(6495), 1, + anon_sym_switch, + ACTIONS(6509), 1, + anon_sym_with, + ACTIONS(7654), 1, + anon_sym_SLASH, + ACTIONS(7658), 1, + anon_sym_GT_GT, + ACTIONS(7660), 1, + anon_sym_DOT_DOT, + ACTIONS(7664), 1, + anon_sym_AMP, + ACTIONS(7670), 1, + anon_sym_as, + ACTIONS(7672), 1, + anon_sym_is, + ACTIONS(7674), 1, + anon_sym_CARET, + ACTIONS(7676), 1, + anon_sym_PIPE, + STATE(2759), 1, + sym_bracketed_argument_list, + STATE(3381), 1, + sym_argument_list, + ACTIONS(5304), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7650), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6787), 2, + ACTIONS(7652), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(6797), 2, + ACTIONS(7656), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(6801), 2, + ACTIONS(7662), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(7666), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6803), 2, + ACTIONS(7668), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5660), 5, + ACTIONS(5737), 6, + 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(5004), 9, + anon_sym_on, + STATE(4935), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -632608,7 +626045,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [129907] = 22, + [122764] = 38, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -632629,36 +626066,72 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4100), 1, + ACTIONS(4042), 1, anon_sym_DOT, - ACTIONS(4102), 1, + ACTIONS(4044), 1, anon_sym_DASH_GT, - ACTIONS(5264), 1, + ACTIONS(5257), 1, anon_sym_LPAREN, - ACTIONS(5302), 1, + ACTIONS(5300), 1, anon_sym_LBRACK, - ACTIONS(5304), 1, + ACTIONS(5302), 1, anon_sym_BANG, - ACTIONS(7484), 1, + ACTIONS(5739), 1, + anon_sym_QMARK, + ACTIONS(6495), 1, + anon_sym_switch, + ACTIONS(6509), 1, + anon_sym_with, + ACTIONS(7654), 1, + anon_sym_SLASH, + ACTIONS(7658), 1, + anon_sym_GT_GT, + ACTIONS(7660), 1, anon_sym_DOT_DOT, - STATE(2808), 1, + ACTIONS(7664), 1, + anon_sym_AMP, + ACTIONS(7670), 1, + anon_sym_as, + ACTIONS(7672), 1, + anon_sym_is, + ACTIONS(7674), 1, + anon_sym_CARET, + ACTIONS(7676), 1, + anon_sym_PIPE, + ACTIONS(7678), 1, + anon_sym_AMP_AMP, + STATE(2759), 1, sym_bracketed_argument_list, - STATE(3487), 1, + STATE(3381), 1, sym_argument_list, - ACTIONS(5306), 2, + ACTIONS(5304), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1223), 9, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, + ACTIONS(7650), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT_GT, - STATE(5005), 9, + ACTIONS(7652), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(7656), 2, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + ACTIONS(7662), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(7666), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(7668), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(5737), 5, + anon_sym_and, + anon_sym_or, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, + anon_sym_on, + STATE(4936), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -632668,27 +626141,105 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(1221), 19, + [122898] = 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(4042), 1, + anon_sym_DOT, + ACTIONS(4044), 1, + anon_sym_DASH_GT, + ACTIONS(5257), 1, + anon_sym_LPAREN, + ACTIONS(5300), 1, + anon_sym_LBRACK, + ACTIONS(5302), 1, + anon_sym_BANG, + ACTIONS(5739), 1, + anon_sym_QMARK, + ACTIONS(6495), 1, + anon_sym_switch, + ACTIONS(6509), 1, + anon_sym_with, + ACTIONS(7654), 1, + anon_sym_SLASH, + ACTIONS(7658), 1, + anon_sym_GT_GT, + ACTIONS(7660), 1, + anon_sym_DOT_DOT, + ACTIONS(7664), 1, + anon_sym_AMP, + ACTIONS(7670), 1, + anon_sym_as, + ACTIONS(7672), 1, + anon_sym_is, + ACTIONS(7674), 1, + anon_sym_CARET, + ACTIONS(7676), 1, + anon_sym_PIPE, + ACTIONS(7678), 1, + anon_sym_AMP_AMP, + ACTIONS(7680), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7682), 1, + anon_sym_QMARK_QMARK, + STATE(2759), 1, + sym_bracketed_argument_list, + STATE(3381), 1, + sym_argument_list, + ACTIONS(5304), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7650), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(7652), 2, anon_sym_STAR, anon_sym_PERCENT, - anon_sym_CARET, + ACTIONS(7656), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, + ACTIONS(7662), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(7666), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + ACTIONS(7668), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - anon_sym_switch, + ACTIONS(5737), 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, - [130009] = 40, + STATE(4937), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + [123036] = 42, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -632709,74 +626260,76 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4100), 1, + ACTIONS(4042), 1, anon_sym_DOT, - ACTIONS(4102), 1, + ACTIONS(4044), 1, anon_sym_DASH_GT, - ACTIONS(5264), 1, + ACTIONS(5257), 1, anon_sym_LPAREN, - ACTIONS(5304), 1, + ACTIONS(5302), 1, anon_sym_BANG, - ACTIONS(5573), 1, + ACTIONS(5549), 1, anon_sym_LBRACK, - ACTIONS(5664), 1, - anon_sym_QMARK, - ACTIONS(6343), 1, + ACTIONS(6355), 1, anon_sym_switch, - ACTIONS(6357), 1, + ACTIONS(6369), 1, anon_sym_with, - ACTIONS(6789), 1, + ACTIONS(6811), 1, + anon_sym_as, + ACTIONS(7231), 1, + anon_sym_QMARK, + ACTIONS(7237), 1, anon_sym_SLASH, - ACTIONS(6791), 1, + ACTIONS(7239), 1, anon_sym_CARET, - ACTIONS(6793), 1, + ACTIONS(7241), 1, anon_sym_PIPE, - ACTIONS(6795), 1, + ACTIONS(7243), 1, anon_sym_AMP, - ACTIONS(6799), 1, + ACTIONS(7247), 1, anon_sym_GT_GT, - ACTIONS(6805), 1, + ACTIONS(7253), 1, anon_sym_DOT_DOT, - ACTIONS(6807), 1, + ACTIONS(7255), 1, anon_sym_AMP_AMP, - ACTIONS(6809), 1, + ACTIONS(7257), 1, anon_sym_PIPE_PIPE, - ACTIONS(6811), 1, + ACTIONS(7259), 1, anon_sym_QMARK_QMARK, - ACTIONS(6813), 1, - anon_sym_as, - ACTIONS(6815), 1, + ACTIONS(7261), 1, anon_sym_is, - STATE(2485), 1, + ACTIONS(7622), 1, + anon_sym_COMMA, + ACTIONS(7684), 1, + anon_sym_RPAREN, + STATE(2467), 1, sym_bracketed_argument_list, - STATE(3487), 1, + STATE(3381), 1, sym_argument_list, - ACTIONS(5306), 2, + STATE(6948), 1, + aux_sym__for_statement_conditions_repeat1, + ACTIONS(5304), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6781), 2, + ACTIONS(7229), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(6785), 2, + ACTIONS(7233), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6787), 2, + ACTIONS(7235), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(6797), 2, + ACTIONS(7245), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(6801), 2, + ACTIONS(7249), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6803), 2, + ACTIONS(7251), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5660), 3, - aux_sym_preproc_if_token3, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - STATE(5006), 9, + STATE(4938), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -632786,7 +626339,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [130147] = 27, + [123178] = 38, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -632807,38 +626360,72 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(3881), 1, - anon_sym_LBRACE, - ACTIONS(3897), 1, - sym_discard, - ACTIONS(6823), 1, - sym__identifier_token, - ACTIONS(6827), 1, + ACTIONS(4042), 1, + anon_sym_DOT, + ACTIONS(4044), 1, + anon_sym_DASH_GT, + ACTIONS(5257), 1, anon_sym_LPAREN, - ACTIONS(7588), 1, - anon_sym_COMMA, - ACTIONS(7775), 1, - anon_sym_RPAREN, - STATE(2571), 1, - sym__reserved_identifier, - STATE(3463), 1, - sym_parenthesized_variable_designation, - STATE(3492), 1, - sym__variable_designation, - STATE(5279), 1, - sym_positional_pattern_clause, - STATE(5682), 1, - sym_property_pattern_clause, - STATE(6412), 1, - sym_identifier, - STATE(7311), 1, - sym_parameter_list, - STATE(7536), 1, - sym__lambda_parameters, - ACTIONS(3883), 2, - anon_sym_and, - anon_sym_or, - STATE(5007), 9, + ACTIONS(5302), 1, + anon_sym_BANG, + ACTIONS(5549), 1, + anon_sym_LBRACK, + ACTIONS(5739), 1, + anon_sym_QMARK, + ACTIONS(6355), 1, + anon_sym_switch, + ACTIONS(6369), 1, + anon_sym_with, + ACTIONS(6787), 1, + anon_sym_SLASH, + ACTIONS(6789), 1, + anon_sym_CARET, + ACTIONS(6791), 1, + anon_sym_PIPE, + ACTIONS(6793), 1, + anon_sym_AMP, + ACTIONS(6797), 1, + anon_sym_GT_GT, + ACTIONS(6803), 1, + anon_sym_DOT_DOT, + ACTIONS(6805), 1, + anon_sym_AMP_AMP, + ACTIONS(6811), 1, + anon_sym_as, + ACTIONS(6813), 1, + anon_sym_is, + STATE(2467), 1, + sym_bracketed_argument_list, + STATE(3381), 1, + sym_argument_list, + ACTIONS(5304), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6779), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(6783), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6785), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(6795), 2, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + ACTIONS(6799), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6801), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(5737), 5, + 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, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -632848,30 +626435,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(6825), 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, - [130259] = 40, + [123312] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -632892,74 +626456,74 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4100), 1, + ACTIONS(4042), 1, anon_sym_DOT, - ACTIONS(4102), 1, + ACTIONS(4044), 1, anon_sym_DASH_GT, - ACTIONS(5264), 1, + ACTIONS(5257), 1, anon_sym_LPAREN, - ACTIONS(5302), 1, + ACTIONS(5300), 1, anon_sym_LBRACK, - ACTIONS(5304), 1, + ACTIONS(5302), 1, anon_sym_BANG, - ACTIONS(6475), 1, + ACTIONS(6495), 1, anon_sym_switch, - ACTIONS(6489), 1, + ACTIONS(6509), 1, anon_sym_with, - ACTIONS(7462), 1, - anon_sym_QMARK, - ACTIONS(7468), 1, + ACTIONS(7654), 1, anon_sym_SLASH, - ACTIONS(7470), 1, - anon_sym_CARET, - ACTIONS(7472), 1, - anon_sym_PIPE, - ACTIONS(7474), 1, - anon_sym_AMP, - ACTIONS(7478), 1, + ACTIONS(7658), 1, anon_sym_GT_GT, - ACTIONS(7484), 1, + ACTIONS(7660), 1, anon_sym_DOT_DOT, - ACTIONS(7486), 1, + ACTIONS(7664), 1, + anon_sym_AMP, + ACTIONS(7670), 1, + anon_sym_as, + ACTIONS(7672), 1, + anon_sym_is, + ACTIONS(7674), 1, + anon_sym_CARET, + ACTIONS(7676), 1, + anon_sym_PIPE, + ACTIONS(7678), 1, anon_sym_AMP_AMP, - ACTIONS(7488), 1, + ACTIONS(7680), 1, anon_sym_PIPE_PIPE, - ACTIONS(7490), 1, + ACTIONS(7682), 1, anon_sym_QMARK_QMARK, - ACTIONS(7492), 1, - anon_sym_as, - ACTIONS(7494), 1, - anon_sym_is, - STATE(2808), 1, + ACTIONS(7686), 1, + anon_sym_QMARK, + STATE(2759), 1, sym_bracketed_argument_list, - STATE(3487), 1, + STATE(3381), 1, sym_argument_list, - ACTIONS(5306), 2, + ACTIONS(5304), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7460), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(7464), 2, + ACTIONS(7650), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7466), 2, + ACTIONS(7652), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7476), 2, + ACTIONS(7656), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7480), 2, + ACTIONS(7662), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(7666), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7482), 2, + ACTIONS(7668), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5777), 3, + ACTIONS(5709), 3, anon_sym_and, anon_sym_or, anon_sym_on, - STATE(5008), 9, + STATE(4940), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -632969,7 +626533,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [130397] = 24, + [123450] = 22, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -632990,30 +626554,26 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4100), 1, + ACTIONS(4042), 1, anon_sym_DOT, - ACTIONS(4102), 1, + ACTIONS(4044), 1, anon_sym_DASH_GT, - ACTIONS(5264), 1, + ACTIONS(5257), 1, anon_sym_LPAREN, - ACTIONS(5302), 1, + ACTIONS(5300), 1, anon_sym_LBRACK, - ACTIONS(5304), 1, + ACTIONS(5302), 1, anon_sym_BANG, - ACTIONS(6475), 1, - anon_sym_switch, - ACTIONS(6489), 1, - anon_sym_with, - ACTIONS(7603), 1, + ACTIONS(7660), 1, anon_sym_DOT_DOT, - STATE(2808), 1, + STATE(2759), 1, sym_bracketed_argument_list, - STATE(3487), 1, + STATE(3381), 1, sym_argument_list, - ACTIONS(5306), 2, + ACTIONS(5304), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5664), 9, + ACTIONS(5743), 9, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, @@ -633023,7 +626583,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_AMP, anon_sym_GT_GT, - STATE(5009), 9, + STATE(4941), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -633033,7 +626593,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5660), 17, + ACTIONS(5741), 19, anon_sym_STAR, anon_sym_PERCENT, anon_sym_CARET, @@ -633043,15 +626603,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_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, - [130503] = 22, + anon_sym_with, + [123552] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -633072,36 +626634,74 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4100), 1, + ACTIONS(4042), 1, anon_sym_DOT, - ACTIONS(4102), 1, + ACTIONS(4044), 1, anon_sym_DASH_GT, - ACTIONS(5264), 1, + ACTIONS(5257), 1, anon_sym_LPAREN, - ACTIONS(5302), 1, + ACTIONS(5300), 1, anon_sym_LBRACK, - ACTIONS(5304), 1, + ACTIONS(5302), 1, anon_sym_BANG, - ACTIONS(7603), 1, + ACTIONS(6495), 1, + anon_sym_switch, + ACTIONS(6509), 1, + anon_sym_with, + ACTIONS(7654), 1, + anon_sym_SLASH, + ACTIONS(7658), 1, + anon_sym_GT_GT, + ACTIONS(7660), 1, anon_sym_DOT_DOT, - STATE(2808), 1, + ACTIONS(7664), 1, + anon_sym_AMP, + ACTIONS(7670), 1, + anon_sym_as, + ACTIONS(7672), 1, + anon_sym_is, + ACTIONS(7674), 1, + anon_sym_CARET, + ACTIONS(7676), 1, + anon_sym_PIPE, + ACTIONS(7678), 1, + anon_sym_AMP_AMP, + ACTIONS(7680), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7682), 1, + anon_sym_QMARK_QMARK, + ACTIONS(7686), 1, + anon_sym_QMARK, + STATE(2759), 1, sym_bracketed_argument_list, - STATE(3487), 1, + STATE(3381), 1, sym_argument_list, - ACTIONS(5306), 2, + ACTIONS(5304), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1223), 9, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, + ACTIONS(7650), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT_GT, - STATE(5010), 9, + ACTIONS(7652), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(7656), 2, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + ACTIONS(7662), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(7666), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(7668), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(5849), 3, + anon_sym_and, + anon_sym_or, + anon_sym_on, + STATE(4942), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -633111,7 +626711,61 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(1221), 19, + [123690] = 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(7688), 1, + anon_sym_and, + ACTIONS(7690), 1, + anon_sym_or, + 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(5360), 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(5358), 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, @@ -633121,17 +626775,16 @@ 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_and, - anon_sym_or, + 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, - [130605] = 22, + [123778] = 22, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -633152,26 +626805,26 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4100), 1, + ACTIONS(4042), 1, anon_sym_DOT, - ACTIONS(4102), 1, + ACTIONS(4044), 1, anon_sym_DASH_GT, - ACTIONS(5264), 1, + ACTIONS(5257), 1, anon_sym_LPAREN, - ACTIONS(5304), 1, + ACTIONS(5302), 1, anon_sym_BANG, - ACTIONS(5573), 1, + ACTIONS(5549), 1, anon_sym_LBRACK, - ACTIONS(6805), 1, + ACTIONS(6803), 1, anon_sym_DOT_DOT, - STATE(2485), 1, + STATE(2467), 1, sym_bracketed_argument_list, - STATE(3487), 1, + STATE(3381), 1, sym_argument_list, - ACTIONS(5306), 2, + ACTIONS(5304), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1223), 9, + ACTIONS(1161), 9, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, @@ -633181,7 +626834,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_AMP, anon_sym_GT_GT, - STATE(5011), 9, + STATE(4944), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -633191,7 +626844,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(1221), 19, + ACTIONS(1147), 19, anon_sym_STAR, anon_sym_PERCENT, anon_sym_CARET, @@ -633211,7 +626864,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_if_token3, aux_sym_preproc_else_token1, aux_sym_preproc_elif_token1, - [130707] = 40, + [123880] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -633232,74 +626885,74 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4100), 1, + ACTIONS(4042), 1, anon_sym_DOT, - ACTIONS(4102), 1, + ACTIONS(4044), 1, anon_sym_DASH_GT, - ACTIONS(5264), 1, + ACTIONS(5257), 1, anon_sym_LPAREN, - ACTIONS(5302), 1, + ACTIONS(5300), 1, anon_sym_LBRACK, - ACTIONS(5304), 1, + ACTIONS(5302), 1, anon_sym_BANG, - ACTIONS(6475), 1, + ACTIONS(6495), 1, anon_sym_switch, - ACTIONS(6485), 1, - anon_sym_as, - ACTIONS(6489), 1, + ACTIONS(6509), 1, anon_sym_with, - ACTIONS(7597), 1, + ACTIONS(7654), 1, anon_sym_SLASH, - ACTIONS(7601), 1, + ACTIONS(7658), 1, anon_sym_GT_GT, - ACTIONS(7603), 1, + ACTIONS(7660), 1, anon_sym_DOT_DOT, - ACTIONS(7611), 1, + ACTIONS(7664), 1, anon_sym_AMP, - ACTIONS(7617), 1, + ACTIONS(7670), 1, + anon_sym_as, + ACTIONS(7672), 1, anon_sym_is, - ACTIONS(7619), 1, + ACTIONS(7674), 1, anon_sym_CARET, - ACTIONS(7631), 1, + ACTIONS(7676), 1, anon_sym_PIPE, - ACTIONS(7635), 1, + ACTIONS(7678), 1, anon_sym_AMP_AMP, - ACTIONS(7637), 1, + ACTIONS(7680), 1, anon_sym_PIPE_PIPE, - ACTIONS(7639), 1, + ACTIONS(7682), 1, anon_sym_QMARK_QMARK, - ACTIONS(7653), 1, + ACTIONS(7686), 1, anon_sym_QMARK, - STATE(2808), 1, + STATE(2759), 1, sym_bracketed_argument_list, - STATE(3487), 1, + STATE(3381), 1, sym_argument_list, - ACTIONS(5306), 2, + ACTIONS(5304), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7593), 2, + ACTIONS(7650), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7595), 2, + ACTIONS(7652), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7599), 2, + ACTIONS(7656), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7609), 2, + ACTIONS(7662), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7613), 2, + ACTIONS(7666), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7615), 2, + ACTIONS(7668), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5777), 3, - anon_sym_EQ_GT, + ACTIONS(4996), 3, anon_sym_and, anon_sym_or, - STATE(5012), 9, + anon_sym_on, + STATE(4945), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -633309,7 +626962,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [130845] = 27, + [124018] = 27, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -633330,38 +626983,38 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(3881), 1, + ACTIONS(3861), 1, anon_sym_LBRACE, - ACTIONS(3897), 1, + ACTIONS(3877), 1, sym_discard, - ACTIONS(6823), 1, + ACTIONS(6969), 1, sym__identifier_token, - ACTIONS(6827), 1, + ACTIONS(6973), 1, anon_sym_LPAREN, - ACTIONS(7588), 1, + ACTIONS(7478), 1, anon_sym_COMMA, - ACTIONS(7777), 1, + ACTIONS(7692), 1, anon_sym_RPAREN, - STATE(2571), 1, + STATE(2565), 1, sym__reserved_identifier, - STATE(3463), 1, + STATE(3352), 1, sym_parenthesized_variable_designation, - STATE(3492), 1, + STATE(3422), 1, sym__variable_designation, - STATE(5279), 1, + STATE(5154), 1, sym_positional_pattern_clause, - STATE(5682), 1, + STATE(5691), 1, sym_property_pattern_clause, - STATE(6412), 1, + STATE(6424), 1, sym_identifier, - STATE(7311), 1, - sym_parameter_list, - STATE(7536), 1, + STATE(7378), 1, sym__lambda_parameters, - ACTIONS(3883), 2, + STATE(7531), 1, + sym_parameter_list, + ACTIONS(3867), 2, anon_sym_and, anon_sym_or, - STATE(5013), 9, + STATE(4946), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -633371,7 +627024,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(6825), 22, + ACTIONS(6971), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -633394,7 +627047,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [130957] = 40, + [124130] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -633415,74 +627068,74 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4100), 1, + ACTIONS(4042), 1, anon_sym_DOT, - ACTIONS(4102), 1, + ACTIONS(4044), 1, anon_sym_DASH_GT, - ACTIONS(5264), 1, + ACTIONS(5257), 1, anon_sym_LPAREN, - ACTIONS(5302), 1, + ACTIONS(5300), 1, anon_sym_LBRACK, - ACTIONS(5304), 1, + ACTIONS(5302), 1, anon_sym_BANG, - ACTIONS(6475), 1, + ACTIONS(6495), 1, anon_sym_switch, - ACTIONS(6489), 1, + ACTIONS(6509), 1, anon_sym_with, - ACTIONS(7564), 1, + ACTIONS(7450), 1, anon_sym_SLASH, - ACTIONS(7568), 1, - anon_sym_GT_GT, - ACTIONS(7570), 1, - anon_sym_DOT_DOT, - ACTIONS(7643), 1, - anon_sym_AMP, - ACTIONS(7649), 1, - anon_sym_as, - ACTIONS(7651), 1, - anon_sym_is, - ACTIONS(7655), 1, + ACTIONS(7452), 1, anon_sym_CARET, - ACTIONS(7755), 1, + ACTIONS(7454), 1, anon_sym_PIPE, - ACTIONS(7757), 1, + ACTIONS(7456), 1, + anon_sym_AMP, + ACTIONS(7460), 1, + anon_sym_GT_GT, + ACTIONS(7466), 1, + anon_sym_DOT_DOT, + ACTIONS(7468), 1, anon_sym_AMP_AMP, - ACTIONS(7761), 1, - anon_sym_QMARK, - ACTIONS(7763), 1, + ACTIONS(7470), 1, anon_sym_PIPE_PIPE, - ACTIONS(7765), 1, + ACTIONS(7472), 1, anon_sym_QMARK_QMARK, - STATE(2808), 1, + ACTIONS(7474), 1, + anon_sym_as, + ACTIONS(7476), 1, + anon_sym_is, + ACTIONS(7522), 1, + anon_sym_QMARK, + STATE(2759), 1, sym_bracketed_argument_list, - STATE(3487), 1, + STATE(3381), 1, sym_argument_list, - ACTIONS(5306), 2, + ACTIONS(5304), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7560), 2, + ACTIONS(7444), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(7446), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7562), 2, + ACTIONS(7448), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7566), 2, + ACTIONS(7458), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7641), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(7645), 2, + ACTIONS(7462), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7647), 2, + ACTIONS(7464), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5864), 3, + ACTIONS(5865), 3, + anon_sym_in, anon_sym_and, anon_sym_or, - anon_sym_by, - STATE(5014), 9, + STATE(4947), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -633492,7 +627145,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [131095] = 42, + [124268] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -633513,76 +627166,74 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(2697), 1, - anon_sym_COMMA, - ACTIONS(4100), 1, + ACTIONS(4042), 1, anon_sym_DOT, - ACTIONS(4102), 1, + ACTIONS(4044), 1, anon_sym_DASH_GT, - ACTIONS(5264), 1, + ACTIONS(5257), 1, anon_sym_LPAREN, - ACTIONS(5304), 1, - anon_sym_BANG, - ACTIONS(5573), 1, + ACTIONS(5300), 1, anon_sym_LBRACK, - ACTIONS(6343), 1, + ACTIONS(5302), 1, + anon_sym_BANG, + ACTIONS(6495), 1, anon_sym_switch, - ACTIONS(6357), 1, + ACTIONS(6509), 1, anon_sym_with, - ACTIONS(6813), 1, - anon_sym_as, - ACTIONS(7139), 1, - anon_sym_QMARK, - ACTIONS(7145), 1, + ACTIONS(7654), 1, anon_sym_SLASH, - ACTIONS(7147), 1, - anon_sym_CARET, - ACTIONS(7149), 1, - anon_sym_PIPE, - ACTIONS(7151), 1, - anon_sym_AMP, - ACTIONS(7155), 1, + ACTIONS(7658), 1, anon_sym_GT_GT, - ACTIONS(7161), 1, + ACTIONS(7660), 1, anon_sym_DOT_DOT, - ACTIONS(7163), 1, + ACTIONS(7664), 1, + anon_sym_AMP, + ACTIONS(7670), 1, + anon_sym_as, + ACTIONS(7672), 1, + anon_sym_is, + ACTIONS(7674), 1, + anon_sym_CARET, + ACTIONS(7676), 1, + anon_sym_PIPE, + ACTIONS(7678), 1, anon_sym_AMP_AMP, - ACTIONS(7165), 1, + ACTIONS(7680), 1, anon_sym_PIPE_PIPE, - ACTIONS(7167), 1, + ACTIONS(7682), 1, anon_sym_QMARK_QMARK, - ACTIONS(7169), 1, - anon_sym_is, - ACTIONS(7779), 1, - anon_sym_RBRACK, - STATE(2485), 1, + ACTIONS(7686), 1, + anon_sym_QMARK, + STATE(2759), 1, sym_bracketed_argument_list, - STATE(3487), 1, + STATE(3381), 1, sym_argument_list, - STATE(6899), 1, - aux_sym_array_rank_specifier_repeat1, - ACTIONS(5306), 2, + ACTIONS(5304), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7137), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(7141), 2, + ACTIONS(7650), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7143), 2, + ACTIONS(7652), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7153), 2, + ACTIONS(7656), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7157), 2, + ACTIONS(7662), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(7666), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7159), 2, + ACTIONS(7668), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - STATE(5015), 9, + ACTIONS(5652), 3, + anon_sym_and, + anon_sym_or, + anon_sym_on, + STATE(4948), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -633592,7 +627243,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [131237] = 40, + [124406] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -633613,74 +627264,74 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4100), 1, + ACTIONS(4042), 1, anon_sym_DOT, - ACTIONS(4102), 1, + ACTIONS(4044), 1, anon_sym_DASH_GT, - ACTIONS(5264), 1, + ACTIONS(5257), 1, anon_sym_LPAREN, - ACTIONS(5302), 1, + ACTIONS(5300), 1, anon_sym_LBRACK, - ACTIONS(5304), 1, + ACTIONS(5302), 1, anon_sym_BANG, - ACTIONS(6475), 1, + ACTIONS(6495), 1, anon_sym_switch, - ACTIONS(6489), 1, + ACTIONS(6509), 1, anon_sym_with, - ACTIONS(7564), 1, + ACTIONS(7654), 1, anon_sym_SLASH, - ACTIONS(7568), 1, + ACTIONS(7658), 1, anon_sym_GT_GT, - ACTIONS(7570), 1, + ACTIONS(7660), 1, anon_sym_DOT_DOT, - ACTIONS(7643), 1, + ACTIONS(7664), 1, anon_sym_AMP, - ACTIONS(7649), 1, + ACTIONS(7670), 1, anon_sym_as, - ACTIONS(7651), 1, + ACTIONS(7672), 1, anon_sym_is, - ACTIONS(7655), 1, + ACTIONS(7674), 1, anon_sym_CARET, - ACTIONS(7755), 1, + ACTIONS(7676), 1, anon_sym_PIPE, - ACTIONS(7757), 1, + ACTIONS(7678), 1, anon_sym_AMP_AMP, - ACTIONS(7761), 1, - anon_sym_QMARK, - ACTIONS(7763), 1, + ACTIONS(7680), 1, anon_sym_PIPE_PIPE, - ACTIONS(7765), 1, + ACTIONS(7682), 1, anon_sym_QMARK_QMARK, - STATE(2808), 1, + ACTIONS(7686), 1, + anon_sym_QMARK, + STATE(2759), 1, sym_bracketed_argument_list, - STATE(3487), 1, + STATE(3381), 1, sym_argument_list, - ACTIONS(5306), 2, + ACTIONS(5304), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7560), 2, + ACTIONS(7650), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7562), 2, + ACTIONS(7652), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7566), 2, + ACTIONS(7656), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7641), 2, + ACTIONS(7662), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7645), 2, + ACTIONS(7666), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7647), 2, + ACTIONS(7668), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5072), 3, + ACTIONS(5801), 3, anon_sym_and, anon_sym_or, - anon_sym_by, - STATE(5016), 9, + anon_sym_on, + STATE(4949), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -633690,7 +627341,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [131375] = 40, + [124544] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -633711,74 +627362,74 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4100), 1, + ACTIONS(4042), 1, anon_sym_DOT, - ACTIONS(4102), 1, + ACTIONS(4044), 1, anon_sym_DASH_GT, - ACTIONS(5264), 1, + ACTIONS(5257), 1, anon_sym_LPAREN, ACTIONS(5302), 1, - anon_sym_LBRACK, - ACTIONS(5304), 1, anon_sym_BANG, - ACTIONS(6475), 1, + ACTIONS(5549), 1, + anon_sym_LBRACK, + ACTIONS(5739), 1, + anon_sym_QMARK, + ACTIONS(6355), 1, anon_sym_switch, - ACTIONS(6489), 1, + ACTIONS(6369), 1, anon_sym_with, - ACTIONS(7564), 1, + ACTIONS(6787), 1, anon_sym_SLASH, - ACTIONS(7568), 1, - anon_sym_GT_GT, - ACTIONS(7570), 1, - anon_sym_DOT_DOT, - ACTIONS(7643), 1, - anon_sym_AMP, - ACTIONS(7649), 1, - anon_sym_as, - ACTIONS(7651), 1, - anon_sym_is, - ACTIONS(7655), 1, + ACTIONS(6789), 1, anon_sym_CARET, - ACTIONS(7755), 1, + ACTIONS(6791), 1, anon_sym_PIPE, - ACTIONS(7757), 1, + ACTIONS(6793), 1, + anon_sym_AMP, + ACTIONS(6797), 1, + anon_sym_GT_GT, + ACTIONS(6803), 1, + anon_sym_DOT_DOT, + ACTIONS(6805), 1, anon_sym_AMP_AMP, - ACTIONS(7761), 1, - anon_sym_QMARK, - ACTIONS(7763), 1, + ACTIONS(6807), 1, anon_sym_PIPE_PIPE, - ACTIONS(7765), 1, + ACTIONS(6809), 1, anon_sym_QMARK_QMARK, - STATE(2808), 1, + ACTIONS(6811), 1, + anon_sym_as, + ACTIONS(6813), 1, + anon_sym_is, + STATE(2467), 1, sym_bracketed_argument_list, - STATE(3487), 1, + STATE(3381), 1, sym_argument_list, - ACTIONS(5306), 2, + ACTIONS(5304), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7560), 2, + ACTIONS(6779), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(6783), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7562), 2, + ACTIONS(6785), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7566), 2, + ACTIONS(6795), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7641), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(7645), 2, + ACTIONS(6799), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7647), 2, + ACTIONS(6801), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5882), 3, - anon_sym_and, - anon_sym_or, - anon_sym_by, - STATE(5017), 9, + ACTIONS(5737), 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, @@ -633788,7 +627439,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [131513] = 15, + [124682] = 26, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -633809,11 +627460,95 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(7677), 1, - anon_sym_and, - ACTIONS(7781), 1, - anon_sym_or, - STATE(5018), 9, + ACTIONS(4042), 1, + anon_sym_DOT, + ACTIONS(4044), 1, + anon_sym_DASH_GT, + ACTIONS(5257), 1, + anon_sym_LPAREN, + ACTIONS(5302), 1, + anon_sym_BANG, + ACTIONS(5549), 1, + anon_sym_LBRACK, + ACTIONS(6355), 1, + anon_sym_switch, + ACTIONS(6369), 1, + anon_sym_with, + ACTIONS(6787), 1, + anon_sym_SLASH, + ACTIONS(6803), 1, + anon_sym_DOT_DOT, + STATE(2467), 1, + sym_bracketed_argument_list, + STATE(3381), 1, + sym_argument_list, + ACTIONS(5304), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6785), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(5739), 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(4951), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + ACTIONS(5737), 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, + [124792] = 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(7490), 1, + anon_sym_into, + STATE(5020), 1, + aux_sym__query_body_repeat2, + STATE(4952), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -633823,7 +627558,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(6207), 11, + ACTIONS(5935), 11, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, @@ -633835,7 +627570,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT, - ACTIONS(6205), 25, + ACTIONS(5933), 25, sym_interpolation_close_brace, anon_sym_LBRACK, anon_sym_COLON, @@ -633861,7 +627596,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, anon_sym_DASH_GT, anon_sym_with, - [131601] = 40, + [124880] = 42, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -633882,74 +627617,76 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4100), 1, + ACTIONS(4042), 1, anon_sym_DOT, - ACTIONS(4102), 1, + ACTIONS(4044), 1, anon_sym_DASH_GT, - ACTIONS(5264), 1, + ACTIONS(5257), 1, anon_sym_LPAREN, - ACTIONS(5304), 1, + ACTIONS(5302), 1, anon_sym_BANG, - ACTIONS(5573), 1, + ACTIONS(5549), 1, anon_sym_LBRACK, - ACTIONS(6343), 1, + ACTIONS(6355), 1, anon_sym_switch, - ACTIONS(6357), 1, + ACTIONS(6369), 1, anon_sym_with, - ACTIONS(6813), 1, + ACTIONS(6811), 1, anon_sym_as, - ACTIONS(7139), 1, + ACTIONS(7231), 1, anon_sym_QMARK, - ACTIONS(7145), 1, + ACTIONS(7237), 1, anon_sym_SLASH, - ACTIONS(7147), 1, + ACTIONS(7239), 1, anon_sym_CARET, - ACTIONS(7149), 1, + ACTIONS(7241), 1, anon_sym_PIPE, - ACTIONS(7151), 1, + ACTIONS(7243), 1, anon_sym_AMP, - ACTIONS(7155), 1, + ACTIONS(7247), 1, anon_sym_GT_GT, - ACTIONS(7161), 1, + ACTIONS(7253), 1, anon_sym_DOT_DOT, - ACTIONS(7163), 1, + ACTIONS(7255), 1, anon_sym_AMP_AMP, - ACTIONS(7165), 1, + ACTIONS(7257), 1, anon_sym_PIPE_PIPE, - ACTIONS(7167), 1, + ACTIONS(7259), 1, anon_sym_QMARK_QMARK, - ACTIONS(7169), 1, + ACTIONS(7261), 1, anon_sym_is, - STATE(2485), 1, + ACTIONS(7622), 1, + anon_sym_COMMA, + ACTIONS(7694), 1, + anon_sym_RPAREN, + STATE(2467), 1, sym_bracketed_argument_list, - STATE(3487), 1, + STATE(3381), 1, sym_argument_list, - ACTIONS(5306), 2, + STATE(6765), 1, + aux_sym__for_statement_conditions_repeat1, + ACTIONS(5304), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7137), 2, + ACTIONS(7229), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7141), 2, + ACTIONS(7233), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7143), 2, + ACTIONS(7235), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7153), 2, + ACTIONS(7245), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7157), 2, + ACTIONS(7249), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7159), 2, + ACTIONS(7251), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(7783), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_RBRACE, - STATE(5019), 9, + STATE(4953), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -633959,7 +627696,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [131739] = 42, + [125022] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -633980,76 +627717,74 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4100), 1, + ACTIONS(4042), 1, anon_sym_DOT, - ACTIONS(4102), 1, + ACTIONS(4044), 1, anon_sym_DASH_GT, - ACTIONS(5264), 1, + ACTIONS(5257), 1, anon_sym_LPAREN, - ACTIONS(5304), 1, + ACTIONS(5302), 1, anon_sym_BANG, - ACTIONS(5573), 1, + ACTIONS(5549), 1, anon_sym_LBRACK, - ACTIONS(6343), 1, + ACTIONS(6355), 1, anon_sym_switch, - ACTIONS(6357), 1, + ACTIONS(6369), 1, anon_sym_with, - ACTIONS(6813), 1, + ACTIONS(6811), 1, anon_sym_as, - ACTIONS(7139), 1, + ACTIONS(7231), 1, anon_sym_QMARK, - ACTIONS(7145), 1, + ACTIONS(7237), 1, anon_sym_SLASH, - ACTIONS(7147), 1, + ACTIONS(7239), 1, anon_sym_CARET, - ACTIONS(7149), 1, + ACTIONS(7241), 1, anon_sym_PIPE, - ACTIONS(7151), 1, + ACTIONS(7243), 1, anon_sym_AMP, - ACTIONS(7155), 1, + ACTIONS(7247), 1, anon_sym_GT_GT, - ACTIONS(7161), 1, + ACTIONS(7253), 1, anon_sym_DOT_DOT, - ACTIONS(7163), 1, + ACTIONS(7255), 1, anon_sym_AMP_AMP, - ACTIONS(7165), 1, + ACTIONS(7257), 1, anon_sym_PIPE_PIPE, - ACTIONS(7167), 1, + ACTIONS(7259), 1, anon_sym_QMARK_QMARK, - ACTIONS(7169), 1, + ACTIONS(7261), 1, anon_sym_is, - ACTIONS(7580), 1, - anon_sym_COMMA, - ACTIONS(7785), 1, - anon_sym_RPAREN, - STATE(2485), 1, + STATE(2467), 1, sym_bracketed_argument_list, - STATE(3487), 1, + STATE(3381), 1, sym_argument_list, - STATE(6929), 1, - aux_sym__for_statement_conditions_repeat1, - ACTIONS(5306), 2, + ACTIONS(5304), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7137), 2, + ACTIONS(7229), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7141), 2, + ACTIONS(7233), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7143), 2, + ACTIONS(7235), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7153), 2, + ACTIONS(7245), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7157), 2, + ACTIONS(7249), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7159), 2, + ACTIONS(7251), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - STATE(5020), 9, + ACTIONS(7696), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACE, + STATE(4954), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -634059,7 +627794,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [131881] = 42, + [125160] = 29, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -634080,76 +627815,161 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4100), 1, + ACTIONS(4042), 1, anon_sym_DOT, - ACTIONS(4102), 1, + ACTIONS(4044), 1, anon_sym_DASH_GT, - ACTIONS(5264), 1, + ACTIONS(5257), 1, anon_sym_LPAREN, - ACTIONS(5304), 1, + ACTIONS(5302), 1, anon_sym_BANG, - ACTIONS(5573), 1, + ACTIONS(5549), 1, anon_sym_LBRACK, - ACTIONS(6343), 1, + ACTIONS(6355), 1, anon_sym_switch, - ACTIONS(6357), 1, + ACTIONS(6369), 1, anon_sym_with, - ACTIONS(6813), 1, + ACTIONS(6787), 1, + anon_sym_SLASH, + ACTIONS(6797), 1, + anon_sym_GT_GT, + ACTIONS(6803), 1, + anon_sym_DOT_DOT, + STATE(2467), 1, + sym_bracketed_argument_list, + STATE(3381), 1, + sym_argument_list, + ACTIONS(5304), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6783), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6785), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(6795), 2, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + ACTIONS(5739), 5, + anon_sym_LT, + anon_sym_GT, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_AMP, + STATE(4955), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + ACTIONS(5737), 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, - ACTIONS(7139), 1, + anon_sym_is, + aux_sym_preproc_if_token3, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + [125276] = 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(4427), 1, + anon_sym_DOT, + ACTIONS(4429), 1, + anon_sym_DASH_GT, + ACTIONS(6557), 1, + anon_sym_LPAREN, + ACTIONS(6607), 1, + anon_sym_LBRACK, + ACTIONS(6613), 1, + anon_sym_BANG, + ACTIONS(6637), 1, + anon_sym_switch, + ACTIONS(6651), 1, + anon_sym_with, + ACTIONS(6713), 1, anon_sym_QMARK, - ACTIONS(7145), 1, + ACTIONS(6719), 1, anon_sym_SLASH, - ACTIONS(7147), 1, + ACTIONS(6721), 1, anon_sym_CARET, - ACTIONS(7149), 1, + ACTIONS(6723), 1, anon_sym_PIPE, - ACTIONS(7151), 1, + ACTIONS(6725), 1, anon_sym_AMP, - ACTIONS(7155), 1, + ACTIONS(6729), 1, anon_sym_GT_GT, - ACTIONS(7161), 1, + ACTIONS(6735), 1, anon_sym_DOT_DOT, - ACTIONS(7163), 1, + ACTIONS(6737), 1, anon_sym_AMP_AMP, - ACTIONS(7165), 1, + ACTIONS(6739), 1, anon_sym_PIPE_PIPE, - ACTIONS(7167), 1, + ACTIONS(6741), 1, anon_sym_QMARK_QMARK, - ACTIONS(7169), 1, + ACTIONS(6743), 1, + anon_sym_as, + ACTIONS(6745), 1, anon_sym_is, - ACTIONS(7787), 1, - anon_sym_COMMA, - ACTIONS(7789), 1, - anon_sym_RBRACE, - STATE(2485), 1, + STATE(3188), 1, sym_bracketed_argument_list, - STATE(3487), 1, + STATE(4584), 1, sym_argument_list, - STATE(6797), 1, - aux_sym__for_statement_conditions_repeat1, - ACTIONS(5306), 2, + ACTIONS(6615), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7137), 2, + ACTIONS(6711), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7141), 2, + ACTIONS(6715), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7143), 2, + ACTIONS(6717), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7153), 2, + ACTIONS(6727), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7157), 2, + ACTIONS(6731), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7159), 2, + ACTIONS(6733), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - STATE(5021), 9, + ACTIONS(5849), 3, + sym_interpolation_close_brace, + anon_sym_COLON, + anon_sym_COMMA, + STATE(4956), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -634159,7 +627979,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [132023] = 27, + [125414] = 27, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -634180,38 +628000,38 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(3881), 1, + ACTIONS(3861), 1, anon_sym_LBRACE, - ACTIONS(3897), 1, + ACTIONS(3877), 1, sym_discard, - ACTIONS(6823), 1, + ACTIONS(6969), 1, sym__identifier_token, - ACTIONS(6827), 1, + ACTIONS(6973), 1, anon_sym_LPAREN, - ACTIONS(7588), 1, + ACTIONS(7478), 1, anon_sym_COMMA, - ACTIONS(7791), 1, + ACTIONS(7698), 1, anon_sym_RPAREN, - STATE(2571), 1, + STATE(2565), 1, sym__reserved_identifier, - STATE(3463), 1, + STATE(3352), 1, sym_parenthesized_variable_designation, - STATE(3492), 1, + STATE(3422), 1, sym__variable_designation, - STATE(5279), 1, + STATE(5154), 1, sym_positional_pattern_clause, - STATE(5682), 1, + STATE(5691), 1, sym_property_pattern_clause, - STATE(6412), 1, + STATE(6424), 1, sym_identifier, - STATE(7311), 1, - sym_parameter_list, - STATE(7536), 1, + STATE(7378), 1, sym__lambda_parameters, - ACTIONS(3883), 2, + STATE(7531), 1, + sym_parameter_list, + ACTIONS(3867), 2, anon_sym_and, anon_sym_or, - STATE(5022), 9, + STATE(4957), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -634221,7 +628041,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(6825), 22, + ACTIONS(6971), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -634244,7 +628064,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [132135] = 17, + [125526] = 42, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -634265,25 +628085,76 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4066), 1, - anon_sym_LBRACK, - ACTIONS(4072), 1, - anon_sym_STAR, - ACTIONS(5009), 1, - anon_sym_QMARK, - ACTIONS(7793), 1, + ACTIONS(2695), 1, + anon_sym_COMMA, + ACTIONS(4042), 1, anon_sym_DOT, - ACTIONS(4016), 9, - anon_sym_LT, - anon_sym_GT, + ACTIONS(4044), 1, + anon_sym_DASH_GT, + ACTIONS(5257), 1, + anon_sym_LPAREN, + ACTIONS(5302), 1, anon_sym_BANG, - anon_sym_PLUS, - anon_sym_DASH, + ACTIONS(5549), 1, + anon_sym_LBRACK, + ACTIONS(6355), 1, + anon_sym_switch, + ACTIONS(6369), 1, + anon_sym_with, + ACTIONS(6811), 1, + anon_sym_as, + ACTIONS(7231), 1, + anon_sym_QMARK, + ACTIONS(7237), 1, anon_sym_SLASH, + ACTIONS(7239), 1, + anon_sym_CARET, + ACTIONS(7241), 1, anon_sym_PIPE, + ACTIONS(7243), 1, anon_sym_AMP, + ACTIONS(7247), 1, anon_sym_GT_GT, - STATE(5023), 9, + ACTIONS(7253), 1, + anon_sym_DOT_DOT, + ACTIONS(7255), 1, + anon_sym_AMP_AMP, + ACTIONS(7257), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7259), 1, + anon_sym_QMARK_QMARK, + ACTIONS(7261), 1, + anon_sym_is, + ACTIONS(7700), 1, + anon_sym_RBRACK, + STATE(2467), 1, + sym_bracketed_argument_list, + STATE(3381), 1, + sym_argument_list, + STATE(6863), 1, + aux_sym_array_rank_specifier_repeat1, + ACTIONS(5304), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7229), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(7233), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(7235), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(7245), 2, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + ACTIONS(7249), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(7251), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + STATE(4958), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -634293,33 +628164,94 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(4018), 25, - anon_sym_COLON, - anon_sym_COMMA, + [125668] = 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(4042), 1, + anon_sym_DOT, + ACTIONS(4044), 1, + anon_sym_DASH_GT, + ACTIONS(5257), 1, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, + ACTIONS(5302), 1, + anon_sym_BANG, + ACTIONS(5549), 1, + anon_sym_LBRACK, + ACTIONS(6355), 1, + anon_sym_switch, + ACTIONS(6369), 1, + anon_sym_with, + ACTIONS(7568), 1, + anon_sym_SLASH, + ACTIONS(7578), 1, + anon_sym_GT_GT, + ACTIONS(7584), 1, + anon_sym_DOT_DOT, + STATE(2467), 1, + sym_bracketed_argument_list, + STATE(3381), 1, + sym_argument_list, + ACTIONS(5304), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + ACTIONS(7564), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(7566), 2, + anon_sym_STAR, anon_sym_PERCENT, - anon_sym_CARET, + ACTIONS(7576), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, + ACTIONS(5739), 5, + anon_sym_LT, + anon_sym_GT, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_AMP, + STATE(4959), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + ACTIONS(5737), 13, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_CARET, 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, - [132227] = 14, + [125784] = 26, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -634340,9 +628272,44 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(7793), 1, + ACTIONS(4042), 1, anon_sym_DOT, - STATE(5024), 9, + ACTIONS(4044), 1, + anon_sym_DASH_GT, + ACTIONS(5257), 1, + anon_sym_LPAREN, + ACTIONS(5302), 1, + anon_sym_BANG, + ACTIONS(5549), 1, + anon_sym_LBRACK, + ACTIONS(6355), 1, + anon_sym_switch, + ACTIONS(6369), 1, + anon_sym_with, + ACTIONS(7568), 1, + anon_sym_SLASH, + ACTIONS(7584), 1, + anon_sym_DOT_DOT, + STATE(2467), 1, + sym_bracketed_argument_list, + STATE(3381), 1, + sym_argument_list, + ACTIONS(5304), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7566), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(5739), 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(4960), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -634352,27 +628319,90 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(3975), 10, + ACTIONS(5737), 15, + anon_sym_SEMI, + anon_sym_COMMA, + 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, + [125894] = 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(4042), 1, + anon_sym_DOT, + ACTIONS(4044), 1, + anon_sym_DASH_GT, + ACTIONS(5257), 1, + anon_sym_LPAREN, + ACTIONS(5302), 1, + anon_sym_BANG, + ACTIONS(5549), 1, + anon_sym_LBRACK, + ACTIONS(6355), 1, + anon_sym_switch, + ACTIONS(6369), 1, + anon_sym_with, + ACTIONS(7584), 1, + anon_sym_DOT_DOT, + STATE(2467), 1, + sym_bracketed_argument_list, + STATE(3381), 1, + sym_argument_list, + ACTIONS(5304), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5739), 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, - ACTIONS(3977), 27, - anon_sym_LBRACK, - anon_sym_COLON, + 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(5737), 17, + anon_sym_SEMI, 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, @@ -634382,16 +628412,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, - [132313] = 22, + [126000] = 35, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -634412,66 +628438,79 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4443), 1, - anon_sym_DASH_GT, - ACTIONS(4533), 1, + ACTIONS(4042), 1, anon_sym_DOT, - ACTIONS(6574), 1, + ACTIONS(4044), 1, + anon_sym_DASH_GT, + ACTIONS(5257), 1, anon_sym_LPAREN, - ACTIONS(6619), 1, - anon_sym_LBRACK, - ACTIONS(6625), 1, + ACTIONS(5302), 1, anon_sym_BANG, - ACTIONS(6984), 1, + ACTIONS(5549), 1, + anon_sym_LBRACK, + ACTIONS(6355), 1, + anon_sym_switch, + ACTIONS(6369), 1, + anon_sym_with, + ACTIONS(6811), 1, + anon_sym_as, + ACTIONS(7261), 1, + anon_sym_is, + ACTIONS(7568), 1, + anon_sym_SLASH, + ACTIONS(7574), 1, + anon_sym_AMP, + ACTIONS(7578), 1, + anon_sym_GT_GT, + ACTIONS(7584), 1, anon_sym_DOT_DOT, - STATE(3173), 1, + STATE(2467), 1, sym_bracketed_argument_list, - STATE(4583), 1, + STATE(3381), 1, sym_argument_list, - ACTIONS(6627), 2, + ACTIONS(5304), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5733), 9, + ACTIONS(5739), 2, + anon_sym_QMARK, + anon_sym_PIPE, + ACTIONS(7560), 2, anon_sym_LT, anon_sym_GT, - anon_sym_QMARK, + ACTIONS(7564), 2, anon_sym_PLUS, anon_sym_DASH, - 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, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - ACTIONS(5731), 19, - sym_interpolation_close_brace, - anon_sym_COLON, - anon_sym_COMMA, + ACTIONS(7566), 2, anon_sym_STAR, anon_sym_PERCENT, - anon_sym_CARET, + ACTIONS(7576), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, + ACTIONS(7580), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + ACTIONS(7582), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - anon_sym_switch, + ACTIONS(5737), 7, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_CARET, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_QMARK_QMARK, - anon_sym_as, - anon_sym_is, - anon_sym_with, - [132415] = 40, + STATE(4962), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + [126128] = 36, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -634492,74 +628531,70 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4100), 1, + ACTIONS(4042), 1, anon_sym_DOT, - ACTIONS(4102), 1, + ACTIONS(4044), 1, anon_sym_DASH_GT, - ACTIONS(5264), 1, + ACTIONS(5257), 1, anon_sym_LPAREN, - ACTIONS(5304), 1, + ACTIONS(5302), 1, anon_sym_BANG, - ACTIONS(5573), 1, + ACTIONS(5549), 1, anon_sym_LBRACK, - ACTIONS(6343), 1, + ACTIONS(6355), 1, anon_sym_switch, - ACTIONS(6357), 1, + ACTIONS(6369), 1, anon_sym_with, - ACTIONS(6783), 1, - anon_sym_QMARK, - ACTIONS(6789), 1, + ACTIONS(6811), 1, + anon_sym_as, + ACTIONS(7261), 1, + anon_sym_is, + ACTIONS(7568), 1, anon_sym_SLASH, - ACTIONS(6791), 1, + ACTIONS(7570), 1, anon_sym_CARET, - ACTIONS(6793), 1, - anon_sym_PIPE, - ACTIONS(6795), 1, + ACTIONS(7574), 1, anon_sym_AMP, - ACTIONS(6799), 1, + ACTIONS(7578), 1, anon_sym_GT_GT, - ACTIONS(6805), 1, + ACTIONS(7584), 1, anon_sym_DOT_DOT, - ACTIONS(6807), 1, - anon_sym_AMP_AMP, - ACTIONS(6809), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6811), 1, - anon_sym_QMARK_QMARK, - ACTIONS(6813), 1, - anon_sym_as, - ACTIONS(6815), 1, - anon_sym_is, - STATE(2485), 1, + STATE(2467), 1, sym_bracketed_argument_list, - STATE(3487), 1, + STATE(3381), 1, sym_argument_list, - ACTIONS(5306), 2, + ACTIONS(5304), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6781), 2, + ACTIONS(5739), 2, + anon_sym_QMARK, + anon_sym_PIPE, + ACTIONS(7560), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(6785), 2, + ACTIONS(7564), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6787), 2, + ACTIONS(7566), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(6797), 2, + ACTIONS(7576), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(6801), 2, + ACTIONS(7580), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6803), 2, + ACTIONS(7582), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5072), 3, - aux_sym_preproc_if_token3, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - STATE(5026), 9, + ACTIONS(5737), 6, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, + STATE(4963), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -634569,7 +628604,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [132553] = 40, + [126258] = 42, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -634590,74 +628625,76 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4100), 1, + ACTIONS(4042), 1, anon_sym_DOT, - ACTIONS(4102), 1, + ACTIONS(4044), 1, anon_sym_DASH_GT, - ACTIONS(5264), 1, + ACTIONS(5257), 1, anon_sym_LPAREN, - ACTIONS(5304), 1, + ACTIONS(5302), 1, anon_sym_BANG, - ACTIONS(5573), 1, + ACTIONS(5549), 1, anon_sym_LBRACK, - ACTIONS(6343), 1, + ACTIONS(6355), 1, anon_sym_switch, - ACTIONS(6357), 1, + ACTIONS(6369), 1, anon_sym_with, - ACTIONS(6813), 1, + ACTIONS(6811), 1, anon_sym_as, - ACTIONS(7139), 1, + ACTIONS(7231), 1, anon_sym_QMARK, - ACTIONS(7145), 1, + ACTIONS(7237), 1, anon_sym_SLASH, - ACTIONS(7147), 1, + ACTIONS(7239), 1, anon_sym_CARET, - ACTIONS(7149), 1, + ACTIONS(7241), 1, anon_sym_PIPE, - ACTIONS(7151), 1, + ACTIONS(7243), 1, anon_sym_AMP, - ACTIONS(7155), 1, + ACTIONS(7247), 1, anon_sym_GT_GT, - ACTIONS(7161), 1, + ACTIONS(7253), 1, anon_sym_DOT_DOT, - ACTIONS(7163), 1, + ACTIONS(7255), 1, anon_sym_AMP_AMP, - ACTIONS(7165), 1, + ACTIONS(7257), 1, anon_sym_PIPE_PIPE, - ACTIONS(7167), 1, + ACTIONS(7259), 1, anon_sym_QMARK_QMARK, - ACTIONS(7169), 1, + ACTIONS(7261), 1, anon_sym_is, - STATE(2485), 1, + ACTIONS(7702), 1, + anon_sym_COMMA, + ACTIONS(7704), 1, + anon_sym_RBRACE, + STATE(2467), 1, sym_bracketed_argument_list, - STATE(3487), 1, + STATE(3381), 1, sym_argument_list, - ACTIONS(5306), 2, + STATE(7002), 1, + aux_sym__for_statement_conditions_repeat1, + ACTIONS(5304), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7137), 2, + ACTIONS(7229), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7141), 2, + ACTIONS(7233), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7143), 2, + ACTIONS(7235), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7153), 2, + ACTIONS(7245), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7157), 2, + ACTIONS(7249), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7159), 2, + ACTIONS(7251), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(7795), 3, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_RPAREN, - STATE(5027), 9, + STATE(4964), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -634667,7 +628704,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [132691] = 24, + [126400] = 29, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -634688,40 +628725,49 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4100), 1, + ACTIONS(4042), 1, anon_sym_DOT, - ACTIONS(4102), 1, + ACTIONS(4044), 1, anon_sym_DASH_GT, - ACTIONS(5264), 1, + ACTIONS(5257), 1, anon_sym_LPAREN, - ACTIONS(5302), 1, + ACTIONS(5300), 1, anon_sym_LBRACK, - ACTIONS(5304), 1, + ACTIONS(5302), 1, anon_sym_BANG, - ACTIONS(6475), 1, + ACTIONS(6495), 1, anon_sym_switch, - ACTIONS(6489), 1, + ACTIONS(6509), 1, anon_sym_with, - ACTIONS(7496), 1, + ACTIONS(7418), 1, + anon_sym_SLASH, + ACTIONS(7428), 1, + anon_sym_GT_GT, + ACTIONS(7434), 1, anon_sym_DOT_DOT, - STATE(2808), 1, + STATE(2759), 1, sym_bracketed_argument_list, - STATE(3487), 1, + STATE(3381), 1, sym_argument_list, - ACTIONS(5306), 2, + ACTIONS(5304), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5664), 9, + ACTIONS(7414), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(7416), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(7426), 2, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + ACTIONS(5739), 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(5028), 9, + STATE(4965), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -634731,17 +628777,13 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5660), 17, - anon_sym_in, - anon_sym_STAR, - anon_sym_PERCENT, + ACTIONS(5737), 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_and, anon_sym_or, anon_sym_AMP_AMP, @@ -634749,7 +628791,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_as, anon_sym_is, - [132797] = 27, + [126516] = 27, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -634770,117 +628812,38 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(3881), 1, + ACTIONS(3861), 1, anon_sym_LBRACE, - ACTIONS(3897), 1, + ACTIONS(3877), 1, sym_discard, - ACTIONS(6823), 1, + ACTIONS(6969), 1, sym__identifier_token, - ACTIONS(6827), 1, + ACTIONS(6973), 1, anon_sym_LPAREN, - ACTIONS(7588), 1, + ACTIONS(7478), 1, anon_sym_COMMA, - ACTIONS(7797), 1, + ACTIONS(7706), 1, anon_sym_RPAREN, - STATE(2571), 1, + STATE(2565), 1, sym__reserved_identifier, - STATE(3463), 1, + STATE(3352), 1, sym_parenthesized_variable_designation, - STATE(3492), 1, + STATE(3422), 1, sym__variable_designation, - STATE(5279), 1, + STATE(5154), 1, sym_positional_pattern_clause, - STATE(5682), 1, + STATE(5691), 1, sym_property_pattern_clause, - STATE(6412), 1, + STATE(6424), 1, sym_identifier, - STATE(7311), 1, - sym_parameter_list, - STATE(7536), 1, + STATE(7378), 1, sym__lambda_parameters, - ACTIONS(3883), 2, + STATE(7531), 1, + sym_parameter_list, + ACTIONS(3867), 2, anon_sym_and, anon_sym_or, - STATE(5029), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - ACTIONS(6825), 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, - [132909] = 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(7799), 1, - sym__identifier_token, - ACTIONS(7805), 1, - anon_sym_LPAREN, - STATE(2175), 1, - sym__reserved_identifier, - STATE(2181), 1, - sym_generic_name, - STATE(4373), 1, - sym_identifier, - STATE(5884), 1, - sym_explicit_interface_specifier, - STATE(7600), 1, - sym__name, - ACTIONS(7809), 2, - anon_sym_operator, - anon_sym_checked, - ACTIONS(7807), 3, - anon_sym_ref, - anon_sym_delegate, - sym_predefined_type, - STATE(4096), 3, - sym_alias_qualified_name, - sym__simple_name, - sym_qualified_name, - STATE(5030), 10, + STATE(4966), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -634890,8 +628853,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(7802), 22, + ACTIONS(6971), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -634914,7 +628876,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [133011] = 29, + [126628] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -634935,49 +628897,74 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4100), 1, + ACTIONS(4042), 1, anon_sym_DOT, - ACTIONS(4102), 1, + ACTIONS(4044), 1, anon_sym_DASH_GT, - ACTIONS(5264), 1, + ACTIONS(5257), 1, anon_sym_LPAREN, - ACTIONS(5302), 1, + ACTIONS(5300), 1, anon_sym_LBRACK, - ACTIONS(5304), 1, + ACTIONS(5302), 1, anon_sym_BANG, - ACTIONS(6475), 1, + ACTIONS(6495), 1, anon_sym_switch, - ACTIONS(6489), 1, + ACTIONS(6505), 1, + anon_sym_as, + ACTIONS(6509), 1, anon_sym_with, - ACTIONS(7496), 1, - anon_sym_DOT_DOT, - ACTIONS(7506), 1, + ACTIONS(7710), 1, + anon_sym_QMARK, + ACTIONS(7716), 1, anon_sym_SLASH, - ACTIONS(7516), 1, + ACTIONS(7718), 1, + anon_sym_CARET, + ACTIONS(7720), 1, + anon_sym_PIPE, + ACTIONS(7722), 1, + anon_sym_AMP, + ACTIONS(7726), 1, anon_sym_GT_GT, - STATE(2808), 1, + ACTIONS(7732), 1, + anon_sym_DOT_DOT, + ACTIONS(7734), 1, + anon_sym_AMP_AMP, + ACTIONS(7736), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7738), 1, + anon_sym_QMARK_QMARK, + ACTIONS(7740), 1, + anon_sym_is, + STATE(2759), 1, sym_bracketed_argument_list, - STATE(3487), 1, + STATE(3381), 1, sym_argument_list, - ACTIONS(5306), 2, + ACTIONS(5304), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7502), 2, + ACTIONS(7708), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(7712), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7504), 2, + ACTIONS(7714), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7514), 2, + ACTIONS(7724), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(5664), 5, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_AMP, - STATE(5031), 9, + ACTIONS(7728), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(7730), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(5865), 3, + anon_sym_COLON, + anon_sym_and, + anon_sym_or, + STATE(4967), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -634987,21 +628974,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5660), 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, - [133127] = 26, + [126766] = 26, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -635022,35 +628995,35 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4100), 1, + ACTIONS(4042), 1, anon_sym_DOT, - ACTIONS(4102), 1, + ACTIONS(4044), 1, anon_sym_DASH_GT, - ACTIONS(5264), 1, + ACTIONS(5257), 1, anon_sym_LPAREN, - ACTIONS(5302), 1, + ACTIONS(5300), 1, anon_sym_LBRACK, - ACTIONS(5304), 1, + ACTIONS(5302), 1, anon_sym_BANG, - ACTIONS(6475), 1, + ACTIONS(6495), 1, anon_sym_switch, - ACTIONS(6489), 1, + ACTIONS(6509), 1, anon_sym_with, - ACTIONS(7496), 1, - anon_sym_DOT_DOT, - ACTIONS(7506), 1, + ACTIONS(7418), 1, anon_sym_SLASH, - STATE(2808), 1, + ACTIONS(7434), 1, + anon_sym_DOT_DOT, + STATE(2759), 1, sym_bracketed_argument_list, - STATE(3487), 1, + STATE(3381), 1, sym_argument_list, - ACTIONS(5306), 2, + ACTIONS(5304), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7504), 2, + ACTIONS(7416), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(5664), 8, + ACTIONS(5739), 8, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, @@ -635059,7 +629032,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_AMP, anon_sym_GT_GT, - STATE(5032), 9, + STATE(4968), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -635069,8 +629042,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5660), 15, - anon_sym_in, + ACTIONS(5737), 15, anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT_GT, @@ -635078,6 +629050,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_and, anon_sym_or, anon_sym_AMP_AMP, @@ -635085,7 +629058,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_as, anon_sym_is, - [133237] = 40, + [126876] = 35, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -635106,74 +629079,69 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4100), 1, + ACTIONS(4042), 1, anon_sym_DOT, - ACTIONS(4102), 1, + ACTIONS(4044), 1, anon_sym_DASH_GT, - ACTIONS(5264), 1, + ACTIONS(5257), 1, anon_sym_LPAREN, - ACTIONS(5302), 1, + ACTIONS(5300), 1, anon_sym_LBRACK, - ACTIONS(5304), 1, + ACTIONS(5302), 1, anon_sym_BANG, - ACTIONS(6475), 1, + ACTIONS(6495), 1, anon_sym_switch, - ACTIONS(6489), 1, + ACTIONS(6505), 1, + anon_sym_as, + ACTIONS(6509), 1, anon_sym_with, - ACTIONS(7564), 1, + ACTIONS(7418), 1, anon_sym_SLASH, - ACTIONS(7568), 1, + ACTIONS(7424), 1, + anon_sym_AMP, + ACTIONS(7428), 1, anon_sym_GT_GT, - ACTIONS(7570), 1, + ACTIONS(7434), 1, anon_sym_DOT_DOT, - ACTIONS(7643), 1, - anon_sym_AMP, - ACTIONS(7649), 1, - anon_sym_as, - ACTIONS(7651), 1, + ACTIONS(7442), 1, anon_sym_is, - ACTIONS(7655), 1, - anon_sym_CARET, - ACTIONS(7755), 1, - anon_sym_PIPE, - ACTIONS(7757), 1, - anon_sym_AMP_AMP, - ACTIONS(7761), 1, - anon_sym_QMARK, - ACTIONS(7763), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7765), 1, - anon_sym_QMARK_QMARK, - STATE(2808), 1, + STATE(2759), 1, sym_bracketed_argument_list, - STATE(3487), 1, + STATE(3381), 1, sym_argument_list, - ACTIONS(5306), 2, + ACTIONS(5304), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7560), 2, + ACTIONS(5739), 2, + anon_sym_QMARK, + anon_sym_PIPE, + ACTIONS(7410), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(7414), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7562), 2, + ACTIONS(7416), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7566), 2, + ACTIONS(7426), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7641), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(7645), 2, + ACTIONS(7430), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7647), 2, + ACTIONS(7432), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5899), 3, + ACTIONS(5737), 7, + anon_sym_CARET, + anon_sym_EQ_GT, anon_sym_and, anon_sym_or, - anon_sym_by, - STATE(5033), 9, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, + STATE(4969), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -635183,7 +629151,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [133375] = 35, + [127004] = 36, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -635204,69 +629172,70 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4100), 1, + ACTIONS(4042), 1, anon_sym_DOT, - ACTIONS(4102), 1, + ACTIONS(4044), 1, anon_sym_DASH_GT, - ACTIONS(5264), 1, + ACTIONS(5257), 1, anon_sym_LPAREN, - ACTIONS(5302), 1, + ACTIONS(5300), 1, anon_sym_LBRACK, - ACTIONS(5304), 1, + ACTIONS(5302), 1, anon_sym_BANG, - ACTIONS(6475), 1, + ACTIONS(6495), 1, anon_sym_switch, - ACTIONS(6489), 1, + ACTIONS(6505), 1, + anon_sym_as, + ACTIONS(6509), 1, anon_sym_with, - ACTIONS(7496), 1, - anon_sym_DOT_DOT, - ACTIONS(7506), 1, + ACTIONS(7418), 1, anon_sym_SLASH, - ACTIONS(7512), 1, + ACTIONS(7420), 1, + anon_sym_CARET, + ACTIONS(7424), 1, anon_sym_AMP, - ACTIONS(7516), 1, + ACTIONS(7428), 1, anon_sym_GT_GT, - ACTIONS(7528), 1, - anon_sym_as, - ACTIONS(7530), 1, + ACTIONS(7434), 1, + anon_sym_DOT_DOT, + ACTIONS(7442), 1, anon_sym_is, - STATE(2808), 1, + STATE(2759), 1, sym_bracketed_argument_list, - STATE(3487), 1, + STATE(3381), 1, sym_argument_list, - ACTIONS(5306), 2, + ACTIONS(5304), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5664), 2, + ACTIONS(5739), 2, anon_sym_QMARK, anon_sym_PIPE, - ACTIONS(7498), 2, + ACTIONS(7410), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7502), 2, + ACTIONS(7414), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7504), 2, + ACTIONS(7416), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7514), 2, + ACTIONS(7426), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7518), 2, + ACTIONS(7430), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7520), 2, + ACTIONS(7432), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5660), 7, - anon_sym_in, - anon_sym_CARET, + ACTIONS(5737), 6, + anon_sym_EQ_GT, anon_sym_and, anon_sym_or, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_QMARK_QMARK, - STATE(5034), 9, + STATE(4970), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -635276,7 +629245,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [133503] = 36, + [127134] = 24, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -635297,80 +629266,68 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4100), 1, + ACTIONS(4042), 1, anon_sym_DOT, - ACTIONS(4102), 1, + ACTIONS(4044), 1, anon_sym_DASH_GT, - ACTIONS(5264), 1, + ACTIONS(5257), 1, anon_sym_LPAREN, - ACTIONS(5302), 1, + ACTIONS(5300), 1, anon_sym_LBRACK, - ACTIONS(5304), 1, + ACTIONS(5302), 1, anon_sym_BANG, - ACTIONS(6475), 1, + ACTIONS(6495), 1, anon_sym_switch, - ACTIONS(6489), 1, + ACTIONS(6509), 1, anon_sym_with, - ACTIONS(7496), 1, + ACTIONS(7732), 1, anon_sym_DOT_DOT, - ACTIONS(7506), 1, - anon_sym_SLASH, - ACTIONS(7508), 1, - anon_sym_CARET, - ACTIONS(7512), 1, - anon_sym_AMP, - ACTIONS(7516), 1, - anon_sym_GT_GT, - ACTIONS(7528), 1, - anon_sym_as, - ACTIONS(7530), 1, - anon_sym_is, - STATE(2808), 1, + STATE(2759), 1, sym_bracketed_argument_list, - STATE(3487), 1, + STATE(3381), 1, sym_argument_list, - ACTIONS(5306), 2, + ACTIONS(5304), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5664), 2, - anon_sym_QMARK, - anon_sym_PIPE, - ACTIONS(7498), 2, + ACTIONS(5739), 9, anon_sym_LT, anon_sym_GT, - ACTIONS(7502), 2, + anon_sym_QMARK, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7504), 2, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT_GT, + STATE(4971), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + ACTIONS(5737), 17, + anon_sym_COLON, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7514), 2, + anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7518), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7520), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5660), 6, - anon_sym_in, anon_sym_and, anon_sym_or, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_QMARK_QMARK, - 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, - [133633] = 34, + anon_sym_as, + anon_sym_is, + [127240] = 34, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -635391,68 +629348,68 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4100), 1, + ACTIONS(4042), 1, anon_sym_DOT, - ACTIONS(4102), 1, + ACTIONS(4044), 1, anon_sym_DASH_GT, - ACTIONS(5264), 1, + ACTIONS(5257), 1, anon_sym_LPAREN, - ACTIONS(5302), 1, + ACTIONS(5300), 1, anon_sym_LBRACK, - ACTIONS(5304), 1, + ACTIONS(5302), 1, anon_sym_BANG, - ACTIONS(6475), 1, + ACTIONS(6495), 1, anon_sym_switch, - ACTIONS(6489), 1, + ACTIONS(6505), 1, + anon_sym_as, + ACTIONS(6509), 1, anon_sym_with, - ACTIONS(7496), 1, - anon_sym_DOT_DOT, - ACTIONS(7506), 1, + ACTIONS(7418), 1, anon_sym_SLASH, - ACTIONS(7516), 1, + ACTIONS(7428), 1, anon_sym_GT_GT, - ACTIONS(7528), 1, - anon_sym_as, - ACTIONS(7530), 1, + ACTIONS(7434), 1, + anon_sym_DOT_DOT, + ACTIONS(7442), 1, anon_sym_is, - STATE(2808), 1, + STATE(2759), 1, sym_bracketed_argument_list, - STATE(3487), 1, + STATE(3381), 1, sym_argument_list, - ACTIONS(5306), 2, + ACTIONS(5304), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7498), 2, + ACTIONS(7410), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7502), 2, + ACTIONS(7414), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7504), 2, + ACTIONS(7416), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7514), 2, + ACTIONS(7426), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7518), 2, + ACTIONS(7430), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7520), 2, + ACTIONS(7432), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5664), 3, + ACTIONS(5739), 3, anon_sym_QMARK, anon_sym_PIPE, anon_sym_AMP, - ACTIONS(5660), 7, - anon_sym_in, + ACTIONS(5737), 7, 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, - STATE(5036), 9, + STATE(4972), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -635462,7 +629419,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [133759] = 27, + [127366] = 27, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -635483,45 +629440,45 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4100), 1, + ACTIONS(4042), 1, anon_sym_DOT, - ACTIONS(4102), 1, + ACTIONS(4044), 1, anon_sym_DASH_GT, - ACTIONS(5264), 1, + ACTIONS(5257), 1, anon_sym_LPAREN, - ACTIONS(5302), 1, + ACTIONS(5300), 1, anon_sym_LBRACK, - ACTIONS(5304), 1, + ACTIONS(5302), 1, anon_sym_BANG, - ACTIONS(6475), 1, + ACTIONS(6495), 1, anon_sym_switch, - ACTIONS(6489), 1, + ACTIONS(6509), 1, anon_sym_with, - ACTIONS(7496), 1, - anon_sym_DOT_DOT, - ACTIONS(7506), 1, + ACTIONS(7418), 1, anon_sym_SLASH, - STATE(2808), 1, + ACTIONS(7434), 1, + anon_sym_DOT_DOT, + STATE(2759), 1, sym_bracketed_argument_list, - STATE(3487), 1, + STATE(3381), 1, sym_argument_list, - ACTIONS(5306), 2, + ACTIONS(5304), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7502), 2, + ACTIONS(7414), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7504), 2, + ACTIONS(7416), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(5664), 6, + ACTIONS(5739), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT_GT, - STATE(5037), 9, + STATE(4973), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -635531,8 +629488,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5660), 15, - anon_sym_in, + ACTIONS(5737), 15, anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT_GT, @@ -635540,6 +629496,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_and, anon_sym_or, anon_sym_AMP_AMP, @@ -635547,7 +629504,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_as, anon_sym_is, - [133871] = 22, + [127478] = 22, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -635568,26 +629525,26 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4100), 1, + ACTIONS(4042), 1, anon_sym_DOT, - ACTIONS(4102), 1, + ACTIONS(4044), 1, anon_sym_DASH_GT, - ACTIONS(5264), 1, + ACTIONS(5257), 1, anon_sym_LPAREN, - ACTIONS(5302), 1, + ACTIONS(5300), 1, anon_sym_LBRACK, - ACTIONS(5304), 1, + ACTIONS(5302), 1, anon_sym_BANG, - ACTIONS(7496), 1, + ACTIONS(7732), 1, anon_sym_DOT_DOT, - STATE(2808), 1, + STATE(2759), 1, sym_bracketed_argument_list, - STATE(3487), 1, + STATE(3381), 1, sym_argument_list, - ACTIONS(5306), 2, + ACTIONS(5304), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1223), 9, + ACTIONS(1161), 9, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, @@ -635597,7 +629554,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_AMP, anon_sym_GT_GT, - STATE(5038), 9, + STATE(4974), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -635607,8 +629564,8 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(1221), 19, - anon_sym_in, + ACTIONS(1147), 19, + anon_sym_COLON, anon_sym_STAR, anon_sym_PERCENT, anon_sym_CARET, @@ -635627,7 +629584,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_is, anon_sym_with, - [133973] = 33, + [127580] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -635648,67 +629605,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4100), 1, - anon_sym_DOT, - ACTIONS(4102), 1, - anon_sym_DASH_GT, - ACTIONS(5264), 1, - anon_sym_LPAREN, - ACTIONS(5302), 1, - anon_sym_LBRACK, - ACTIONS(5304), 1, - anon_sym_BANG, - ACTIONS(6475), 1, - anon_sym_switch, - ACTIONS(6489), 1, - anon_sym_with, - ACTIONS(7496), 1, - anon_sym_DOT_DOT, - ACTIONS(7506), 1, - anon_sym_SLASH, - ACTIONS(7516), 1, - anon_sym_GT_GT, - ACTIONS(7528), 1, - anon_sym_as, - ACTIONS(7530), 1, - anon_sym_is, - STATE(2808), 1, - sym_bracketed_argument_list, - STATE(3487), 1, - sym_argument_list, - ACTIONS(5306), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(7498), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(7502), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(7504), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(7514), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - ACTIONS(7520), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(5664), 3, - anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_AMP, - ACTIONS(5660), 9, - anon_sym_in, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, + ACTIONS(7742), 1, anon_sym_and, + ACTIONS(7744), 1, anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_QMARK_QMARK, - STATE(5039), 9, + STATE(4975), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -635718,202 +629619,45 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [134097] = 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(4100), 1, - anon_sym_DOT, - ACTIONS(4102), 1, - anon_sym_DASH_GT, - ACTIONS(5264), 1, - anon_sym_LPAREN, - ACTIONS(5304), 1, - anon_sym_BANG, - ACTIONS(5573), 1, - anon_sym_LBRACK, - ACTIONS(6343), 1, - anon_sym_switch, - ACTIONS(6357), 1, - anon_sym_with, - ACTIONS(6813), 1, - anon_sym_as, - ACTIONS(7139), 1, - anon_sym_QMARK, - ACTIONS(7145), 1, - anon_sym_SLASH, - ACTIONS(7147), 1, - anon_sym_CARET, - ACTIONS(7149), 1, - anon_sym_PIPE, - ACTIONS(7151), 1, - anon_sym_AMP, - ACTIONS(7155), 1, - anon_sym_GT_GT, - ACTIONS(7161), 1, - anon_sym_DOT_DOT, - ACTIONS(7163), 1, - anon_sym_AMP_AMP, - ACTIONS(7165), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7167), 1, - anon_sym_QMARK_QMARK, - ACTIONS(7169), 1, - anon_sym_is, - ACTIONS(7812), 1, - anon_sym_COMMA, - ACTIONS(7814), 1, - anon_sym_RBRACE, - STATE(2485), 1, - sym_bracketed_argument_list, - STATE(3487), 1, - sym_argument_list, - STATE(7026), 1, - aux_sym__for_statement_conditions_repeat1, - ACTIONS(5306), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(7137), 2, + ACTIONS(6109), 11, anon_sym_LT, anon_sym_GT, - ACTIONS(7141), 2, + anon_sym_QMARK, + anon_sym_BANG, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7143), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(7153), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - ACTIONS(7157), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(7159), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - STATE(5040), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - [134239] = 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(4100), 1, - anon_sym_DOT, - ACTIONS(4102), 1, - anon_sym_DASH_GT, - ACTIONS(5264), 1, - anon_sym_LPAREN, - ACTIONS(5302), 1, - anon_sym_LBRACK, - ACTIONS(5304), 1, - anon_sym_BANG, - ACTIONS(5664), 1, - anon_sym_QMARK, - ACTIONS(6475), 1, - anon_sym_switch, - ACTIONS(6489), 1, - anon_sym_with, - ACTIONS(7496), 1, - anon_sym_DOT_DOT, - ACTIONS(7506), 1, anon_sym_SLASH, - ACTIONS(7508), 1, - anon_sym_CARET, - ACTIONS(7510), 1, anon_sym_PIPE, - ACTIONS(7512), 1, anon_sym_AMP, - ACTIONS(7516), 1, anon_sym_GT_GT, - ACTIONS(7528), 1, - anon_sym_as, - ACTIONS(7530), 1, - anon_sym_is, - STATE(2808), 1, - sym_bracketed_argument_list, - STATE(3487), 1, - sym_argument_list, - ACTIONS(5306), 2, + anon_sym_DOT, + ACTIONS(6107), 25, + anon_sym_LBRACK, + anon_sym_COLON, + anon_sym_LPAREN, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7498), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(7502), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(7504), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7514), 2, + anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7518), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7520), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5660), 6, - anon_sym_in, - anon_sym_and, - anon_sym_or, + anon_sym_switch, + anon_sym_when, + anon_sym_DOT_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_QMARK_QMARK, - STATE(5041), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - [134371] = 38, + anon_sym_into, + anon_sym_as, + anon_sym_is, + anon_sym_DASH_GT, + anon_sym_with, + [127668] = 33, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -635934,72 +629678,67 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4100), 1, + ACTIONS(4042), 1, anon_sym_DOT, - ACTIONS(4102), 1, + ACTIONS(4044), 1, anon_sym_DASH_GT, - ACTIONS(5264), 1, + ACTIONS(5257), 1, anon_sym_LPAREN, - ACTIONS(5302), 1, + ACTIONS(5300), 1, anon_sym_LBRACK, - ACTIONS(5304), 1, + ACTIONS(5302), 1, anon_sym_BANG, - ACTIONS(5664), 1, - anon_sym_QMARK, - ACTIONS(6475), 1, + ACTIONS(6495), 1, anon_sym_switch, - ACTIONS(6489), 1, + ACTIONS(6505), 1, + anon_sym_as, + ACTIONS(6509), 1, anon_sym_with, - ACTIONS(7496), 1, - anon_sym_DOT_DOT, - ACTIONS(7506), 1, + ACTIONS(7418), 1, anon_sym_SLASH, - ACTIONS(7508), 1, - anon_sym_CARET, - ACTIONS(7510), 1, - anon_sym_PIPE, - ACTIONS(7512), 1, - anon_sym_AMP, - ACTIONS(7516), 1, + ACTIONS(7428), 1, anon_sym_GT_GT, - ACTIONS(7522), 1, - anon_sym_AMP_AMP, - ACTIONS(7528), 1, - anon_sym_as, - ACTIONS(7530), 1, + ACTIONS(7434), 1, + anon_sym_DOT_DOT, + ACTIONS(7442), 1, anon_sym_is, - STATE(2808), 1, + STATE(2759), 1, sym_bracketed_argument_list, - STATE(3487), 1, + STATE(3381), 1, sym_argument_list, - ACTIONS(5306), 2, + ACTIONS(5304), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7498), 2, + ACTIONS(7410), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7502), 2, + ACTIONS(7414), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7504), 2, + ACTIONS(7416), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7514), 2, + ACTIONS(7426), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7518), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(7520), 2, + ACTIONS(7432), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5660), 5, - anon_sym_in, + ACTIONS(5739), 3, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_AMP, + ACTIONS(5737), 9, + 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, - STATE(5042), 9, + STATE(4976), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -636009,7 +629748,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [134505] = 40, + [127792] = 37, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -636030,174 +629769,71 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4100), 1, + ACTIONS(4042), 1, anon_sym_DOT, - ACTIONS(4102), 1, + ACTIONS(4044), 1, anon_sym_DASH_GT, - ACTIONS(5264), 1, + ACTIONS(5257), 1, anon_sym_LPAREN, - ACTIONS(5302), 1, + ACTIONS(5300), 1, anon_sym_LBRACK, - ACTIONS(5304), 1, + ACTIONS(5302), 1, anon_sym_BANG, - ACTIONS(5664), 1, + ACTIONS(5739), 1, anon_sym_QMARK, - ACTIONS(6475), 1, + ACTIONS(6495), 1, anon_sym_switch, - ACTIONS(6489), 1, + ACTIONS(6505), 1, + anon_sym_as, + ACTIONS(6509), 1, anon_sym_with, - ACTIONS(7496), 1, - anon_sym_DOT_DOT, - ACTIONS(7506), 1, + ACTIONS(7418), 1, anon_sym_SLASH, - ACTIONS(7508), 1, + ACTIONS(7420), 1, anon_sym_CARET, - ACTIONS(7510), 1, + ACTIONS(7422), 1, anon_sym_PIPE, - ACTIONS(7512), 1, + ACTIONS(7424), 1, anon_sym_AMP, - ACTIONS(7516), 1, + ACTIONS(7428), 1, anon_sym_GT_GT, - ACTIONS(7522), 1, - anon_sym_AMP_AMP, - ACTIONS(7524), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7526), 1, - anon_sym_QMARK_QMARK, - ACTIONS(7528), 1, - anon_sym_as, - ACTIONS(7530), 1, + ACTIONS(7434), 1, + anon_sym_DOT_DOT, + ACTIONS(7442), 1, anon_sym_is, - STATE(2808), 1, + STATE(2759), 1, sym_bracketed_argument_list, - STATE(3487), 1, + STATE(3381), 1, sym_argument_list, - ACTIONS(5306), 2, + ACTIONS(5304), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7498), 2, + ACTIONS(7410), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7502), 2, + ACTIONS(7414), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7504), 2, + ACTIONS(7416), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7514), 2, + ACTIONS(7426), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7518), 2, + ACTIONS(7430), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7520), 2, + ACTIONS(7432), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5660), 3, - anon_sym_in, + ACTIONS(5737), 6, + anon_sym_EQ_GT, anon_sym_and, anon_sym_or, - STATE(5043), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - [134643] = 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(2697), 1, - anon_sym_COMMA, - ACTIONS(4100), 1, - anon_sym_DOT, - ACTIONS(4102), 1, - anon_sym_DASH_GT, - ACTIONS(5264), 1, - anon_sym_LPAREN, - ACTIONS(5304), 1, - anon_sym_BANG, - ACTIONS(5573), 1, - anon_sym_LBRACK, - ACTIONS(6343), 1, - anon_sym_switch, - ACTIONS(6357), 1, - anon_sym_with, - ACTIONS(6813), 1, - anon_sym_as, - ACTIONS(7139), 1, - anon_sym_QMARK, - ACTIONS(7145), 1, - anon_sym_SLASH, - ACTIONS(7147), 1, - anon_sym_CARET, - ACTIONS(7149), 1, - anon_sym_PIPE, - ACTIONS(7151), 1, - anon_sym_AMP, - ACTIONS(7155), 1, - anon_sym_GT_GT, - ACTIONS(7161), 1, - anon_sym_DOT_DOT, - ACTIONS(7163), 1, anon_sym_AMP_AMP, - ACTIONS(7165), 1, anon_sym_PIPE_PIPE, - ACTIONS(7167), 1, anon_sym_QMARK_QMARK, - ACTIONS(7169), 1, - anon_sym_is, - ACTIONS(7816), 1, - anon_sym_RBRACK, - STATE(2485), 1, - sym_bracketed_argument_list, - STATE(3487), 1, - sym_argument_list, - STATE(6765), 1, - aux_sym_array_rank_specifier_repeat1, - ACTIONS(5306), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(7137), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(7141), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(7143), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(7153), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - ACTIONS(7157), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(7159), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - STATE(5044), 9, + STATE(4977), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -636207,7 +629843,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [134785] = 40, + [127924] = 38, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -636228,136 +629864,72 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4100), 1, + ACTIONS(4042), 1, anon_sym_DOT, - ACTIONS(4102), 1, + ACTIONS(4044), 1, anon_sym_DASH_GT, - ACTIONS(5264), 1, + ACTIONS(5257), 1, anon_sym_LPAREN, - ACTIONS(5304), 1, - anon_sym_BANG, - ACTIONS(5573), 1, + ACTIONS(5300), 1, anon_sym_LBRACK, - ACTIONS(6343), 1, + ACTIONS(5302), 1, + anon_sym_BANG, + ACTIONS(5739), 1, + anon_sym_QMARK, + ACTIONS(6495), 1, anon_sym_switch, - ACTIONS(6357), 1, - anon_sym_with, - ACTIONS(6813), 1, + ACTIONS(6505), 1, anon_sym_as, - ACTIONS(7169), 1, - anon_sym_is, - ACTIONS(7442), 1, + ACTIONS(6509), 1, + anon_sym_with, + ACTIONS(7418), 1, anon_sym_SLASH, - ACTIONS(7444), 1, + ACTIONS(7420), 1, anon_sym_CARET, - ACTIONS(7446), 1, + ACTIONS(7422), 1, anon_sym_PIPE, - ACTIONS(7448), 1, + ACTIONS(7424), 1, anon_sym_AMP, - ACTIONS(7452), 1, + ACTIONS(7428), 1, anon_sym_GT_GT, - ACTIONS(7458), 1, + ACTIONS(7434), 1, anon_sym_DOT_DOT, - ACTIONS(7621), 1, + ACTIONS(7436), 1, anon_sym_AMP_AMP, - ACTIONS(7623), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7625), 1, - anon_sym_QMARK_QMARK, - ACTIONS(7659), 1, - anon_sym_QMARK, - STATE(2485), 1, + ACTIONS(7442), 1, + anon_sym_is, + STATE(2759), 1, sym_bracketed_argument_list, - STATE(3487), 1, + STATE(3381), 1, sym_argument_list, - ACTIONS(5306), 2, + ACTIONS(5304), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7436), 2, + ACTIONS(7410), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7438), 2, + ACTIONS(7414), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7440), 2, + ACTIONS(7416), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7450), 2, + ACTIONS(7426), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7454), 2, + ACTIONS(7430), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7456), 2, + ACTIONS(7432), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5072), 3, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RBRACE, - STATE(5045), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - [134923] = 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(3881), 1, - anon_sym_LBRACE, - ACTIONS(3897), 1, - sym_discard, - ACTIONS(6823), 1, - sym__identifier_token, - ACTIONS(6827), 1, - anon_sym_LPAREN, - ACTIONS(7588), 1, - anon_sym_COMMA, - ACTIONS(7818), 1, - anon_sym_RPAREN, - STATE(2571), 1, - sym__reserved_identifier, - STATE(3463), 1, - sym_parenthesized_variable_designation, - STATE(3492), 1, - sym__variable_designation, - STATE(5279), 1, - sym_positional_pattern_clause, - STATE(5682), 1, - sym_property_pattern_clause, - STATE(6412), 1, - sym_identifier, - STATE(7311), 1, - sym_parameter_list, - STATE(7536), 1, - sym__lambda_parameters, - ACTIONS(3883), 2, + ACTIONS(5737), 5, + anon_sym_EQ_GT, anon_sym_and, anon_sym_or, - STATE(5046), 9, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, + STATE(4978), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -636367,30 +629939,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(6825), 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, - [135035] = 42, + [128058] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -636411,76 +629960,74 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4100), 1, + ACTIONS(4042), 1, anon_sym_DOT, - ACTIONS(4102), 1, + ACTIONS(4044), 1, anon_sym_DASH_GT, - ACTIONS(5264), 1, + ACTIONS(5257), 1, anon_sym_LPAREN, - ACTIONS(5304), 1, - anon_sym_BANG, - ACTIONS(5573), 1, + ACTIONS(5300), 1, anon_sym_LBRACK, - ACTIONS(6343), 1, + ACTIONS(5302), 1, + anon_sym_BANG, + ACTIONS(5739), 1, + anon_sym_QMARK, + ACTIONS(6495), 1, anon_sym_switch, - ACTIONS(6357), 1, - anon_sym_with, - ACTIONS(6813), 1, + ACTIONS(6505), 1, anon_sym_as, - ACTIONS(7139), 1, - anon_sym_QMARK, - ACTIONS(7145), 1, + ACTIONS(6509), 1, + anon_sym_with, + ACTIONS(7418), 1, anon_sym_SLASH, - ACTIONS(7147), 1, + ACTIONS(7420), 1, anon_sym_CARET, - ACTIONS(7149), 1, + ACTIONS(7422), 1, anon_sym_PIPE, - ACTIONS(7151), 1, + ACTIONS(7424), 1, anon_sym_AMP, - ACTIONS(7155), 1, + ACTIONS(7428), 1, anon_sym_GT_GT, - ACTIONS(7161), 1, + ACTIONS(7434), 1, anon_sym_DOT_DOT, - ACTIONS(7163), 1, + ACTIONS(7436), 1, anon_sym_AMP_AMP, - ACTIONS(7165), 1, + ACTIONS(7438), 1, anon_sym_PIPE_PIPE, - ACTIONS(7167), 1, + ACTIONS(7440), 1, anon_sym_QMARK_QMARK, - ACTIONS(7169), 1, + ACTIONS(7442), 1, anon_sym_is, - ACTIONS(7580), 1, - anon_sym_COMMA, - ACTIONS(7820), 1, - anon_sym_RPAREN, - STATE(2485), 1, + STATE(2759), 1, sym_bracketed_argument_list, - STATE(3487), 1, + STATE(3381), 1, sym_argument_list, - STATE(6773), 1, - aux_sym__for_statement_conditions_repeat1, - ACTIONS(5306), 2, + ACTIONS(5304), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7137), 2, + ACTIONS(7410), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7141), 2, + ACTIONS(7414), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7143), 2, + ACTIONS(7416), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7153), 2, + ACTIONS(7426), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7157), 2, + ACTIONS(7430), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7159), 2, + ACTIONS(7432), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - STATE(5047), 9, + ACTIONS(5737), 3, + anon_sym_EQ_GT, + anon_sym_and, + anon_sym_or, + STATE(4979), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -636490,7 +630037,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [135177] = 42, + [128196] = 27, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -636498,89 +630045,51 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(7), 1, aux_sym_preproc_line_token1, ACTIONS(9), 1, - aux_sym_preproc_pragma_token1, - ACTIONS(11), 1, - aux_sym_preproc_nullable_token1, - ACTIONS(13), 1, - aux_sym_preproc_error_token1, - ACTIONS(15), 1, - aux_sym_preproc_warning_token1, - ACTIONS(17), 1, - aux_sym_preproc_define_token1, - ACTIONS(19), 1, - aux_sym_preproc_undef_token1, - ACTIONS(21), 1, - sym_comment, - ACTIONS(4100), 1, - anon_sym_DOT, - ACTIONS(4102), 1, - anon_sym_DASH_GT, - ACTIONS(5264), 1, - anon_sym_LPAREN, - ACTIONS(5304), 1, - anon_sym_BANG, - ACTIONS(5573), 1, - anon_sym_LBRACK, - ACTIONS(6343), 1, - anon_sym_switch, - ACTIONS(6357), 1, - anon_sym_with, - ACTIONS(6813), 1, - anon_sym_as, - ACTIONS(7139), 1, - anon_sym_QMARK, - ACTIONS(7145), 1, - anon_sym_SLASH, - ACTIONS(7147), 1, - anon_sym_CARET, - ACTIONS(7149), 1, - anon_sym_PIPE, - ACTIONS(7151), 1, - anon_sym_AMP, - ACTIONS(7155), 1, - anon_sym_GT_GT, - ACTIONS(7161), 1, - anon_sym_DOT_DOT, - ACTIONS(7163), 1, - anon_sym_AMP_AMP, - ACTIONS(7165), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7167), 1, - anon_sym_QMARK_QMARK, - ACTIONS(7169), 1, - anon_sym_is, - ACTIONS(7580), 1, + aux_sym_preproc_pragma_token1, + ACTIONS(11), 1, + aux_sym_preproc_nullable_token1, + ACTIONS(13), 1, + aux_sym_preproc_error_token1, + ACTIONS(15), 1, + aux_sym_preproc_warning_token1, + ACTIONS(17), 1, + aux_sym_preproc_define_token1, + ACTIONS(19), 1, + aux_sym_preproc_undef_token1, + ACTIONS(21), 1, + sym_comment, + ACTIONS(3861), 1, + anon_sym_LBRACE, + ACTIONS(3877), 1, + sym_discard, + ACTIONS(6969), 1, + sym__identifier_token, + ACTIONS(6973), 1, + anon_sym_LPAREN, + ACTIONS(7478), 1, anon_sym_COMMA, - ACTIONS(7822), 1, + ACTIONS(7746), 1, anon_sym_RPAREN, - STATE(2485), 1, - sym_bracketed_argument_list, - STATE(3487), 1, - sym_argument_list, - STATE(6776), 1, - aux_sym__for_statement_conditions_repeat1, - ACTIONS(5306), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(7137), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(7141), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(7143), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(7153), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - ACTIONS(7157), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(7159), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - STATE(5048), 9, + STATE(2565), 1, + sym__reserved_identifier, + STATE(3352), 1, + sym_parenthesized_variable_designation, + STATE(3422), 1, + sym__variable_designation, + STATE(5154), 1, + sym_positional_pattern_clause, + STATE(5691), 1, + sym_property_pattern_clause, + STATE(6424), 1, + sym_identifier, + STATE(7378), 1, + sym__lambda_parameters, + STATE(7531), 1, + sym_parameter_list, + ACTIONS(3867), 2, + anon_sym_and, + anon_sym_or, + STATE(4980), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -636590,7 +630099,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [135319] = 40, + ACTIONS(6971), 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, + [128308] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -636611,74 +630143,74 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4100), 1, + ACTIONS(4042), 1, anon_sym_DOT, - ACTIONS(4102), 1, + ACTIONS(4044), 1, anon_sym_DASH_GT, - ACTIONS(5264), 1, + ACTIONS(5257), 1, anon_sym_LPAREN, - ACTIONS(5302), 1, + ACTIONS(5300), 1, anon_sym_LBRACK, - ACTIONS(5304), 1, + ACTIONS(5302), 1, anon_sym_BANG, - ACTIONS(5664), 1, - anon_sym_QMARK, - ACTIONS(6475), 1, + ACTIONS(6495), 1, anon_sym_switch, - ACTIONS(6489), 1, + ACTIONS(6509), 1, anon_sym_with, - ACTIONS(7564), 1, + ACTIONS(7496), 1, anon_sym_SLASH, - ACTIONS(7568), 1, + ACTIONS(7500), 1, anon_sym_GT_GT, - ACTIONS(7570), 1, + ACTIONS(7502), 1, anon_sym_DOT_DOT, - ACTIONS(7643), 1, + ACTIONS(7506), 1, anon_sym_AMP, - ACTIONS(7649), 1, + ACTIONS(7512), 1, anon_sym_as, - ACTIONS(7651), 1, + ACTIONS(7514), 1, anon_sym_is, - ACTIONS(7655), 1, + ACTIONS(7518), 1, anon_sym_CARET, - ACTIONS(7755), 1, + ACTIONS(7524), 1, anon_sym_PIPE, - ACTIONS(7757), 1, + ACTIONS(7526), 1, anon_sym_AMP_AMP, - ACTIONS(7763), 1, + ACTIONS(7528), 1, anon_sym_PIPE_PIPE, - ACTIONS(7765), 1, + ACTIONS(7530), 1, anon_sym_QMARK_QMARK, - STATE(2808), 1, + ACTIONS(7532), 1, + anon_sym_QMARK, + STATE(2759), 1, sym_bracketed_argument_list, - STATE(3487), 1, + STATE(3381), 1, sym_argument_list, - ACTIONS(5306), 2, + ACTIONS(5304), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7560), 2, + ACTIONS(7492), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7562), 2, + ACTIONS(7494), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7566), 2, + ACTIONS(7498), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7641), 2, + ACTIONS(7504), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7645), 2, + ACTIONS(7508), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7647), 2, + ACTIONS(7510), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5660), 3, + ACTIONS(5865), 3, anon_sym_and, anon_sym_or, anon_sym_by, - STATE(5049), 9, + STATE(4981), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -636688,7 +630220,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [135457] = 14, + [128446] = 24, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -636709,83 +630241,40 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(7824), 1, - anon_sym_into, - STATE(5050), 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(5951), 11, + ACTIONS(4042), 1, + anon_sym_DOT, + ACTIONS(4044), 1, + anon_sym_DASH_GT, + ACTIONS(5257), 1, + anon_sym_LPAREN, + ACTIONS(5300), 1, + anon_sym_LBRACK, + ACTIONS(5302), 1, + anon_sym_BANG, + ACTIONS(6495), 1, + anon_sym_switch, + ACTIONS(6509), 1, + anon_sym_with, + ACTIONS(7502), 1, + anon_sym_DOT_DOT, + STATE(2759), 1, + sym_bracketed_argument_list, + STATE(3381), 1, + sym_argument_list, + ACTIONS(5304), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5739), 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(5949), 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, - [135543] = 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(7749), 1, - anon_sym_into, - STATE(5050), 1, - aux_sym__query_body_repeat2, - STATE(5051), 9, + STATE(4982), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -636795,26 +630284,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5960), 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(5958), 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(5737), 17, anon_sym_STAR, anon_sym_PERCENT, anon_sym_CARET, @@ -636824,16 +630294,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, - [135631] = 13, + [128552] = 22, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -636854,33 +630323,46 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - STATE(5052), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - ACTIONS(5431), 11, + ACTIONS(4042), 1, + anon_sym_DOT, + ACTIONS(4044), 1, + anon_sym_DASH_GT, + ACTIONS(5257), 1, + anon_sym_LPAREN, + ACTIONS(5300), 1, + anon_sym_LBRACK, + ACTIONS(5302), 1, + anon_sym_BANG, + ACTIONS(7502), 1, + anon_sym_DOT_DOT, + STATE(2759), 1, + sym_bracketed_argument_list, + STATE(3381), 1, + sym_argument_list, + ACTIONS(5304), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1161), 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(3829), 27, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, + 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(1147), 19, anon_sym_STAR, anon_sym_PERCENT, anon_sym_CARET, @@ -636890,21 +630372,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_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_by, anon_sym_as, anon_sym_is, - anon_sym_DASH_GT, anon_sym_with, - [135715] = 27, + [128654] = 37, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -636925,159 +630403,71 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(3881), 1, - anon_sym_LBRACE, - ACTIONS(3897), 1, - sym_discard, - ACTIONS(6823), 1, - sym__identifier_token, - ACTIONS(6827), 1, - anon_sym_LPAREN, - ACTIONS(7588), 1, - anon_sym_COMMA, - ACTIONS(7827), 1, - anon_sym_RPAREN, - STATE(2571), 1, - sym__reserved_identifier, - STATE(3463), 1, - sym_parenthesized_variable_designation, - STATE(3492), 1, - sym__variable_designation, - STATE(5279), 1, - sym_positional_pattern_clause, - STATE(5682), 1, - sym_property_pattern_clause, - STATE(6412), 1, - sym_identifier, - STATE(7311), 1, - sym_parameter_list, - STATE(7536), 1, - sym__lambda_parameters, - ACTIONS(3883), 2, - anon_sym_and, - anon_sym_or, - STATE(5053), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - ACTIONS(6825), 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, - [135827] = 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(4443), 1, - anon_sym_DASH_GT, - ACTIONS(4533), 1, + ACTIONS(4042), 1, anon_sym_DOT, - ACTIONS(6574), 1, + ACTIONS(4044), 1, + anon_sym_DASH_GT, + ACTIONS(5257), 1, anon_sym_LPAREN, - ACTIONS(6619), 1, + ACTIONS(5300), 1, anon_sym_LBRACK, - ACTIONS(6625), 1, + ACTIONS(5302), 1, anon_sym_BANG, - ACTIONS(6649), 1, + ACTIONS(5739), 1, + anon_sym_QMARK, + ACTIONS(6495), 1, anon_sym_switch, - ACTIONS(6663), 1, + ACTIONS(6509), 1, anon_sym_with, - ACTIONS(6761), 1, - anon_sym_as, - ACTIONS(6962), 1, - anon_sym_QMARK, - ACTIONS(6968), 1, + ACTIONS(7450), 1, anon_sym_SLASH, - ACTIONS(6970), 1, + ACTIONS(7452), 1, anon_sym_CARET, - ACTIONS(6972), 1, + ACTIONS(7454), 1, anon_sym_PIPE, - ACTIONS(6974), 1, + ACTIONS(7456), 1, anon_sym_AMP, - ACTIONS(6978), 1, + ACTIONS(7460), 1, anon_sym_GT_GT, - ACTIONS(6984), 1, + ACTIONS(7466), 1, anon_sym_DOT_DOT, - ACTIONS(6986), 1, - anon_sym_AMP_AMP, - ACTIONS(6988), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6990), 1, - anon_sym_QMARK_QMARK, - ACTIONS(6992), 1, + ACTIONS(7474), 1, + anon_sym_as, + ACTIONS(7476), 1, anon_sym_is, - STATE(3173), 1, + STATE(2759), 1, sym_bracketed_argument_list, - STATE(4583), 1, + STATE(3381), 1, sym_argument_list, - ACTIONS(6627), 2, + ACTIONS(5304), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6960), 2, + ACTIONS(7444), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(6964), 2, + ACTIONS(7446), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6966), 2, + ACTIONS(7448), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(6976), 2, + ACTIONS(7458), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(6980), 2, + ACTIONS(7462), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6982), 2, + ACTIONS(7464), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5864), 3, - sym_interpolation_close_brace, - anon_sym_COLON, - anon_sym_COMMA, - STATE(5054), 9, + ACTIONS(5737), 6, + anon_sym_in, + anon_sym_and, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, + STATE(4984), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -637087,7 +630477,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [135965] = 40, + [128786] = 38, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -637108,74 +630498,72 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4443), 1, - anon_sym_DASH_GT, - ACTIONS(4533), 1, + ACTIONS(4042), 1, anon_sym_DOT, - ACTIONS(6574), 1, + ACTIONS(4044), 1, + anon_sym_DASH_GT, + ACTIONS(5257), 1, anon_sym_LPAREN, - ACTIONS(6619), 1, + ACTIONS(5300), 1, anon_sym_LBRACK, - ACTIONS(6625), 1, + ACTIONS(5302), 1, anon_sym_BANG, - ACTIONS(6649), 1, + ACTIONS(5739), 1, + anon_sym_QMARK, + ACTIONS(6495), 1, anon_sym_switch, - ACTIONS(6663), 1, + ACTIONS(6509), 1, anon_sym_with, - ACTIONS(6761), 1, - anon_sym_as, - ACTIONS(6962), 1, - anon_sym_QMARK, - ACTIONS(6968), 1, + ACTIONS(7450), 1, anon_sym_SLASH, - ACTIONS(6970), 1, + ACTIONS(7452), 1, anon_sym_CARET, - ACTIONS(6972), 1, + ACTIONS(7454), 1, anon_sym_PIPE, - ACTIONS(6974), 1, + ACTIONS(7456), 1, anon_sym_AMP, - ACTIONS(6978), 1, + ACTIONS(7460), 1, anon_sym_GT_GT, - ACTIONS(6984), 1, + ACTIONS(7466), 1, anon_sym_DOT_DOT, - ACTIONS(6986), 1, + ACTIONS(7468), 1, anon_sym_AMP_AMP, - ACTIONS(6988), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6990), 1, - anon_sym_QMARK_QMARK, - ACTIONS(6992), 1, + ACTIONS(7474), 1, + anon_sym_as, + ACTIONS(7476), 1, anon_sym_is, - STATE(3173), 1, + STATE(2759), 1, sym_bracketed_argument_list, - STATE(4583), 1, + STATE(3381), 1, sym_argument_list, - ACTIONS(6627), 2, + ACTIONS(5304), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6960), 2, + ACTIONS(7444), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(6964), 2, + ACTIONS(7446), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6966), 2, + ACTIONS(7448), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(6976), 2, + ACTIONS(7458), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(6980), 2, + ACTIONS(7462), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6982), 2, + ACTIONS(7464), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5072), 3, - sym_interpolation_close_brace, - anon_sym_COLON, - anon_sym_COMMA, - STATE(5055), 9, + ACTIONS(5737), 5, + anon_sym_in, + anon_sym_and, + anon_sym_or, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, + STATE(4985), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -637185,7 +630573,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [136103] = 29, + [128920] = 24, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -637206,49 +630594,40 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4100), 1, + ACTIONS(4042), 1, anon_sym_DOT, - ACTIONS(4102), 1, + ACTIONS(4044), 1, anon_sym_DASH_GT, - ACTIONS(5264), 1, + ACTIONS(5257), 1, anon_sym_LPAREN, - ACTIONS(5302), 1, + ACTIONS(5300), 1, anon_sym_LBRACK, - ACTIONS(5304), 1, + ACTIONS(5302), 1, anon_sym_BANG, - ACTIONS(6475), 1, + ACTIONS(6495), 1, anon_sym_switch, - ACTIONS(6489), 1, + ACTIONS(6509), 1, anon_sym_with, - ACTIONS(7468), 1, - anon_sym_SLASH, - ACTIONS(7478), 1, - anon_sym_GT_GT, - ACTIONS(7484), 1, + ACTIONS(7554), 1, anon_sym_DOT_DOT, - STATE(2808), 1, + STATE(2759), 1, sym_bracketed_argument_list, - STATE(3487), 1, + STATE(3381), 1, sym_argument_list, - ACTIONS(5306), 2, + ACTIONS(5304), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7464), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(7466), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(7476), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - ACTIONS(5664), 5, + ACTIONS(5739), 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(5056), 9, + anon_sym_GT_GT, + STATE(4986), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -637258,8 +630637,12 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5660), 13, + ACTIONS(5737), 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, @@ -637269,10 +630652,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_equals, anon_sym_as, anon_sym_is, - [136219] = 15, + [129026] = 22, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -637293,40 +630676,46 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(7749), 1, - anon_sym_into, - STATE(5050), 1, - aux_sym__query_body_repeat2, - STATE(5057), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - ACTIONS(6005), 11, + ACTIONS(4042), 1, + anon_sym_DOT, + ACTIONS(4044), 1, + anon_sym_DASH_GT, + ACTIONS(5257), 1, + anon_sym_LPAREN, + ACTIONS(5300), 1, + anon_sym_LBRACK, + ACTIONS(5302), 1, + anon_sym_BANG, + ACTIONS(7554), 1, + anon_sym_DOT_DOT, + STATE(2759), 1, + sym_bracketed_argument_list, + STATE(3381), 1, + sym_argument_list, + ACTIONS(5304), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1161), 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(6003), 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, + STATE(4987), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + ACTIONS(1147), 19, anon_sym_STAR, anon_sym_PERCENT, anon_sym_CARET, @@ -637337,15 +630726,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_equals, anon_sym_as, anon_sym_is, - anon_sym_DASH_GT, anon_sym_with, - [136307] = 15, + [129128] = 22, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -637366,40 +630756,46 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(7749), 1, - anon_sym_into, - STATE(5051), 1, - aux_sym__query_body_repeat2, - STATE(5058), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - ACTIONS(6005), 11, + ACTIONS(4042), 1, + anon_sym_DOT, + ACTIONS(4044), 1, + anon_sym_DASH_GT, + ACTIONS(5257), 1, + anon_sym_LPAREN, + ACTIONS(5300), 1, + anon_sym_LBRACK, + ACTIONS(5302), 1, + anon_sym_BANG, + ACTIONS(7434), 1, + anon_sym_DOT_DOT, + STATE(2759), 1, + sym_bracketed_argument_list, + STATE(3381), 1, + sym_argument_list, + ACTIONS(5304), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5743), 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(6003), 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, + STATE(4988), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + ACTIONS(5741), 19, anon_sym_STAR, anon_sym_PERCENT, anon_sym_CARET, @@ -637409,16 +630805,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_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, - [136395] = 27, + [129230] = 27, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -637439,38 +630836,38 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(3881), 1, + ACTIONS(3861), 1, anon_sym_LBRACE, - ACTIONS(3897), 1, + ACTIONS(3877), 1, sym_discard, - ACTIONS(6823), 1, + ACTIONS(6969), 1, sym__identifier_token, - ACTIONS(6827), 1, + ACTIONS(6973), 1, anon_sym_LPAREN, - ACTIONS(7588), 1, + ACTIONS(7478), 1, anon_sym_COMMA, - ACTIONS(7829), 1, + ACTIONS(7748), 1, anon_sym_RPAREN, - STATE(2571), 1, + STATE(2565), 1, sym__reserved_identifier, - STATE(3463), 1, + STATE(3352), 1, sym_parenthesized_variable_designation, - STATE(3492), 1, + STATE(3422), 1, sym__variable_designation, - STATE(5279), 1, + STATE(5154), 1, sym_positional_pattern_clause, - STATE(5682), 1, + STATE(5691), 1, sym_property_pattern_clause, - STATE(6412), 1, + STATE(6424), 1, sym_identifier, - STATE(7311), 1, - sym_parameter_list, - STATE(7536), 1, + STATE(7378), 1, sym__lambda_parameters, - ACTIONS(3883), 2, + STATE(7531), 1, + sym_parameter_list, + ACTIONS(3867), 2, anon_sym_and, anon_sym_or, - STATE(5059), 9, + STATE(4989), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -637480,7 +630877,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(6825), 22, + ACTIONS(6971), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -637503,7 +630900,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [136507] = 26, + [129342] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -637524,44 +630921,138 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4100), 1, + ACTIONS(4042), 1, anon_sym_DOT, - ACTIONS(4102), 1, + ACTIONS(4044), 1, anon_sym_DASH_GT, - ACTIONS(5264), 1, + ACTIONS(5257), 1, anon_sym_LPAREN, - ACTIONS(5302), 1, + ACTIONS(5300), 1, anon_sym_LBRACK, - ACTIONS(5304), 1, + ACTIONS(5302), 1, anon_sym_BANG, - ACTIONS(6475), 1, + ACTIONS(6495), 1, anon_sym_switch, - ACTIONS(6489), 1, + ACTIONS(6509), 1, anon_sym_with, - ACTIONS(7468), 1, + ACTIONS(7548), 1, anon_sym_SLASH, - ACTIONS(7484), 1, + ACTIONS(7552), 1, + anon_sym_GT_GT, + ACTIONS(7554), 1, anon_sym_DOT_DOT, - STATE(2808), 1, + ACTIONS(7598), 1, + anon_sym_AMP, + ACTIONS(7604), 1, + anon_sym_as, + ACTIONS(7606), 1, + anon_sym_is, + ACTIONS(7608), 1, + anon_sym_CARET, + ACTIONS(7610), 1, + anon_sym_PIPE, + ACTIONS(7614), 1, + anon_sym_AMP_AMP, + ACTIONS(7616), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7618), 1, + anon_sym_QMARK_QMARK, + ACTIONS(7620), 1, + anon_sym_QMARK, + STATE(2759), 1, sym_bracketed_argument_list, - STATE(3487), 1, + STATE(3381), 1, sym_argument_list, - ACTIONS(5306), 2, + ACTIONS(5304), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7466), 2, + ACTIONS(7544), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(7546), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(5664), 8, + ACTIONS(7550), 2, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + ACTIONS(7596), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(7600), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(7602), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(5865), 3, + anon_sym_and, + anon_sym_or, + anon_sym_equals, + STATE(4990), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + [129480] = 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(4042), 1, + anon_sym_DOT, + ACTIONS(4044), 1, + anon_sym_DASH_GT, + ACTIONS(5257), 1, + anon_sym_LPAREN, + ACTIONS(5300), 1, + anon_sym_LBRACK, + ACTIONS(5302), 1, + anon_sym_BANG, + ACTIONS(6495), 1, + anon_sym_switch, + ACTIONS(6509), 1, + anon_sym_with, + ACTIONS(7660), 1, + anon_sym_DOT_DOT, + STATE(2759), 1, + sym_bracketed_argument_list, + STATE(3381), 1, + sym_argument_list, + ACTIONS(5304), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5739), 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(5060), 9, + STATE(4991), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -637571,7 +631062,9 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5660), 15, + ACTIONS(5737), 17, + anon_sym_STAR, + anon_sym_PERCENT, anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT_GT, @@ -637587,7 +631080,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_on, anon_sym_as, anon_sym_is, - [136617] = 40, + [129586] = 22, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -637608,74 +631101,36 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4100), 1, + ACTIONS(4042), 1, anon_sym_DOT, - ACTIONS(4102), 1, + ACTIONS(4044), 1, anon_sym_DASH_GT, - ACTIONS(5264), 1, + ACTIONS(5257), 1, anon_sym_LPAREN, - ACTIONS(5304), 1, - anon_sym_BANG, - ACTIONS(5573), 1, + ACTIONS(5300), 1, anon_sym_LBRACK, - ACTIONS(6343), 1, - anon_sym_switch, - ACTIONS(6357), 1, - anon_sym_with, - ACTIONS(6813), 1, - anon_sym_as, - ACTIONS(7139), 1, - anon_sym_QMARK, - ACTIONS(7145), 1, - anon_sym_SLASH, - ACTIONS(7147), 1, - anon_sym_CARET, - ACTIONS(7149), 1, - anon_sym_PIPE, - ACTIONS(7151), 1, - anon_sym_AMP, - ACTIONS(7155), 1, - anon_sym_GT_GT, - ACTIONS(7161), 1, + ACTIONS(5302), 1, + anon_sym_BANG, + ACTIONS(7660), 1, anon_sym_DOT_DOT, - ACTIONS(7163), 1, - anon_sym_AMP_AMP, - ACTIONS(7165), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7167), 1, - anon_sym_QMARK_QMARK, - ACTIONS(7169), 1, - anon_sym_is, - STATE(2485), 1, + STATE(2759), 1, sym_bracketed_argument_list, - STATE(3487), 1, + STATE(3381), 1, sym_argument_list, - ACTIONS(5306), 2, + ACTIONS(5304), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7137), 2, + ACTIONS(1161), 9, anon_sym_LT, anon_sym_GT, - ACTIONS(7141), 2, + anon_sym_QMARK, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7143), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(7153), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - ACTIONS(7157), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(7159), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(7831), 3, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_RPAREN, - STATE(5061), 9, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT_GT, + STATE(4992), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -637685,7 +631140,27 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [136755] = 27, + ACTIONS(1147), 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_on, + anon_sym_as, + anon_sym_is, + anon_sym_with, + [129688] = 27, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -637706,38 +631181,38 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(3881), 1, + ACTIONS(3861), 1, anon_sym_LBRACE, - ACTIONS(3897), 1, + ACTIONS(3877), 1, sym_discard, - ACTIONS(6823), 1, + ACTIONS(6969), 1, sym__identifier_token, - ACTIONS(6827), 1, + ACTIONS(6973), 1, anon_sym_LPAREN, - ACTIONS(7588), 1, + ACTIONS(7478), 1, anon_sym_COMMA, - ACTIONS(7833), 1, + ACTIONS(7750), 1, anon_sym_RPAREN, - STATE(2571), 1, + STATE(2565), 1, sym__reserved_identifier, - STATE(3463), 1, + STATE(3352), 1, sym_parenthesized_variable_designation, - STATE(3492), 1, + STATE(3422), 1, sym__variable_designation, - STATE(5279), 1, + STATE(5154), 1, sym_positional_pattern_clause, - STATE(5682), 1, + STATE(5691), 1, sym_property_pattern_clause, - STATE(6412), 1, + STATE(6424), 1, sym_identifier, - STATE(7311), 1, - sym_parameter_list, - STATE(7536), 1, + STATE(7378), 1, sym__lambda_parameters, - ACTIONS(3883), 2, + STATE(7531), 1, + sym_parameter_list, + ACTIONS(3867), 2, anon_sym_and, anon_sym_or, - STATE(5062), 9, + STATE(4993), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -637747,7 +631222,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(6825), 22, + ACTIONS(6971), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -637770,7 +631245,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [136867] = 35, + [129800] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -637791,69 +631266,74 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4100), 1, + ACTIONS(4042), 1, anon_sym_DOT, - ACTIONS(4102), 1, + ACTIONS(4044), 1, anon_sym_DASH_GT, - ACTIONS(5264), 1, + ACTIONS(5257), 1, anon_sym_LPAREN, - ACTIONS(5302), 1, + ACTIONS(5300), 1, anon_sym_LBRACK, - ACTIONS(5304), 1, + ACTIONS(5302), 1, anon_sym_BANG, - ACTIONS(6475), 1, + ACTIONS(6495), 1, anon_sym_switch, - ACTIONS(6489), 1, + ACTIONS(6509), 1, anon_sym_with, - ACTIONS(7468), 1, + ACTIONS(7654), 1, anon_sym_SLASH, - ACTIONS(7474), 1, - anon_sym_AMP, - ACTIONS(7478), 1, + ACTIONS(7658), 1, anon_sym_GT_GT, - ACTIONS(7484), 1, + ACTIONS(7660), 1, anon_sym_DOT_DOT, - ACTIONS(7492), 1, + ACTIONS(7664), 1, + anon_sym_AMP, + ACTIONS(7670), 1, anon_sym_as, - ACTIONS(7494), 1, + ACTIONS(7672), 1, anon_sym_is, - STATE(2808), 1, + ACTIONS(7674), 1, + anon_sym_CARET, + ACTIONS(7676), 1, + anon_sym_PIPE, + ACTIONS(7678), 1, + anon_sym_AMP_AMP, + ACTIONS(7680), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7682), 1, + anon_sym_QMARK_QMARK, + ACTIONS(7686), 1, + anon_sym_QMARK, + STATE(2759), 1, sym_bracketed_argument_list, - STATE(3487), 1, + STATE(3381), 1, sym_argument_list, - ACTIONS(5306), 2, + ACTIONS(5304), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5664), 2, - anon_sym_QMARK, - anon_sym_PIPE, - ACTIONS(7460), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(7464), 2, + ACTIONS(7650), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7466), 2, + ACTIONS(7652), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7476), 2, + ACTIONS(7656), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7480), 2, + ACTIONS(7662), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(7666), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7482), 2, + ACTIONS(7668), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5660), 7, - anon_sym_CARET, + ACTIONS(5865), 3, anon_sym_and, anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_QMARK_QMARK, anon_sym_on, - STATE(5063), 9, + STATE(4994), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -637863,7 +631343,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [136995] = 36, + [129938] = 24, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -637884,70 +631364,118 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4100), 1, + ACTIONS(4042), 1, anon_sym_DOT, - ACTIONS(4102), 1, + ACTIONS(4044), 1, anon_sym_DASH_GT, - ACTIONS(5264), 1, + ACTIONS(5257), 1, anon_sym_LPAREN, - ACTIONS(5302), 1, + ACTIONS(5300), 1, anon_sym_LBRACK, - ACTIONS(5304), 1, + ACTIONS(5302), 1, anon_sym_BANG, - ACTIONS(6475), 1, + ACTIONS(6495), 1, anon_sym_switch, - ACTIONS(6489), 1, + ACTIONS(6509), 1, anon_sym_with, - ACTIONS(7468), 1, - anon_sym_SLASH, - ACTIONS(7470), 1, - anon_sym_CARET, - ACTIONS(7474), 1, - anon_sym_AMP, - ACTIONS(7478), 1, - anon_sym_GT_GT, - ACTIONS(7484), 1, + ACTIONS(7434), 1, anon_sym_DOT_DOT, - ACTIONS(7492), 1, - anon_sym_as, - ACTIONS(7494), 1, - anon_sym_is, - STATE(2808), 1, + STATE(2759), 1, sym_bracketed_argument_list, - STATE(3487), 1, + STATE(3381), 1, sym_argument_list, - ACTIONS(5306), 2, + ACTIONS(5304), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5664), 2, - anon_sym_QMARK, - anon_sym_PIPE, - ACTIONS(7460), 2, + ACTIONS(5739), 9, anon_sym_LT, anon_sym_GT, - ACTIONS(7464), 2, + anon_sym_QMARK, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7466), 2, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT_GT, + STATE(4995), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + ACTIONS(5737), 17, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7476), 2, + anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7480), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7482), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5660), 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_on, - STATE(5064), 9, + anon_sym_as, + anon_sym_is, + [130044] = 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(4042), 1, + anon_sym_DOT, + ACTIONS(4044), 1, + anon_sym_DASH_GT, + ACTIONS(5257), 1, + anon_sym_LPAREN, + ACTIONS(5300), 1, + anon_sym_LBRACK, + ACTIONS(5302), 1, + anon_sym_BANG, + ACTIONS(7434), 1, + anon_sym_DOT_DOT, + STATE(2759), 1, + sym_bracketed_argument_list, + STATE(3381), 1, + sym_argument_list, + ACTIONS(5304), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1161), 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(4996), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -637957,7 +631485,27 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [137125] = 26, + ACTIONS(1147), 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_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_as, + anon_sym_is, + anon_sym_with, + [130146] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -637978,37 +631526,74 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(3881), 1, - anon_sym_LBRACE, - ACTIONS(3897), 1, - sym_discard, - ACTIONS(6823), 1, - sym__identifier_token, - ACTIONS(6827), 1, + ACTIONS(4042), 1, + anon_sym_DOT, + ACTIONS(4044), 1, + anon_sym_DASH_GT, + ACTIONS(5257), 1, anon_sym_LPAREN, - STATE(2571), 1, - sym__reserved_identifier, - STATE(3463), 1, - sym_parenthesized_variable_designation, - STATE(3492), 1, - sym__variable_designation, - STATE(5279), 1, - sym_positional_pattern_clause, - STATE(5682), 1, - sym_property_pattern_clause, - STATE(6592), 1, - sym_identifier, - STATE(7311), 1, - sym_parameter_list, - STATE(7536), 1, - sym__lambda_parameters, - ACTIONS(3879), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - ACTIONS(3883), 2, + ACTIONS(5300), 1, + anon_sym_LBRACK, + ACTIONS(5302), 1, + anon_sym_BANG, + ACTIONS(6495), 1, + anon_sym_switch, + ACTIONS(6505), 1, + anon_sym_as, + ACTIONS(6509), 1, + anon_sym_with, + ACTIONS(7412), 1, + anon_sym_QMARK, + ACTIONS(7418), 1, + anon_sym_SLASH, + ACTIONS(7420), 1, + anon_sym_CARET, + ACTIONS(7422), 1, + anon_sym_PIPE, + ACTIONS(7424), 1, + anon_sym_AMP, + ACTIONS(7428), 1, + anon_sym_GT_GT, + ACTIONS(7434), 1, + anon_sym_DOT_DOT, + ACTIONS(7436), 1, + anon_sym_AMP_AMP, + ACTIONS(7438), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7440), 1, + anon_sym_QMARK_QMARK, + ACTIONS(7442), 1, + anon_sym_is, + STATE(2759), 1, + sym_bracketed_argument_list, + STATE(3381), 1, + sym_argument_list, + ACTIONS(5304), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7410), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(7414), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(7416), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(7426), 2, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + ACTIONS(7430), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(7432), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(5865), 3, + anon_sym_EQ_GT, anon_sym_and, anon_sym_or, - STATE(5065), 9, + STATE(4997), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -638018,30 +631603,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(6825), 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, - [137235] = 27, + [130284] = 42, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -638062,71 +631624,86 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(3881), 1, - anon_sym_LBRACE, - ACTIONS(3897), 1, - sym_discard, - ACTIONS(6823), 1, - sym__identifier_token, - ACTIONS(6827), 1, + ACTIONS(4042), 1, + anon_sym_DOT, + ACTIONS(4044), 1, + anon_sym_DASH_GT, + ACTIONS(5257), 1, anon_sym_LPAREN, - ACTIONS(7588), 1, + ACTIONS(5302), 1, + anon_sym_BANG, + ACTIONS(5549), 1, + anon_sym_LBRACK, + ACTIONS(6355), 1, + anon_sym_switch, + ACTIONS(6369), 1, + anon_sym_with, + ACTIONS(6811), 1, + anon_sym_as, + ACTIONS(7231), 1, + anon_sym_QMARK, + ACTIONS(7237), 1, + anon_sym_SLASH, + ACTIONS(7239), 1, + anon_sym_CARET, + ACTIONS(7241), 1, + anon_sym_PIPE, + ACTIONS(7243), 1, + anon_sym_AMP, + ACTIONS(7247), 1, + anon_sym_GT_GT, + ACTIONS(7253), 1, + anon_sym_DOT_DOT, + ACTIONS(7255), 1, + anon_sym_AMP_AMP, + ACTIONS(7257), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7259), 1, + anon_sym_QMARK_QMARK, + ACTIONS(7261), 1, + anon_sym_is, + ACTIONS(7752), 1, anon_sym_COMMA, - ACTIONS(7835), 1, - anon_sym_RPAREN, - STATE(2571), 1, - sym__reserved_identifier, - STATE(3463), 1, - sym_parenthesized_variable_designation, - STATE(3492), 1, - sym__variable_designation, - STATE(5279), 1, - sym_positional_pattern_clause, - STATE(5682), 1, - sym_property_pattern_clause, - STATE(6412), 1, - sym_identifier, - STATE(7311), 1, - sym_parameter_list, - STATE(7536), 1, - sym__lambda_parameters, - ACTIONS(3883), 2, - anon_sym_and, - anon_sym_or, - STATE(5066), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - ACTIONS(6825), 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, - [137347] = 40, + ACTIONS(7754), 1, + anon_sym_RBRACE, + STATE(2467), 1, + sym_bracketed_argument_list, + STATE(3381), 1, + sym_argument_list, + STATE(6830), 1, + aux_sym__for_statement_conditions_repeat1, + ACTIONS(5304), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7229), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(7233), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(7235), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(7245), 2, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + ACTIONS(7249), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(7251), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + STATE(4998), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + [130426] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -638147,74 +631724,74 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4100), 1, + ACTIONS(4042), 1, anon_sym_DOT, - ACTIONS(4102), 1, + ACTIONS(4044), 1, anon_sym_DASH_GT, - ACTIONS(5264), 1, + ACTIONS(5257), 1, anon_sym_LPAREN, - ACTIONS(5304), 1, - anon_sym_BANG, - ACTIONS(5573), 1, + ACTIONS(5300), 1, anon_sym_LBRACK, - ACTIONS(6343), 1, + ACTIONS(5302), 1, + anon_sym_BANG, + ACTIONS(6495), 1, anon_sym_switch, - ACTIONS(6357), 1, - anon_sym_with, - ACTIONS(6813), 1, + ACTIONS(6505), 1, anon_sym_as, - ACTIONS(7139), 1, + ACTIONS(6509), 1, + anon_sym_with, + ACTIONS(7412), 1, anon_sym_QMARK, - ACTIONS(7145), 1, + ACTIONS(7418), 1, anon_sym_SLASH, - ACTIONS(7147), 1, + ACTIONS(7420), 1, anon_sym_CARET, - ACTIONS(7149), 1, + ACTIONS(7422), 1, anon_sym_PIPE, - ACTIONS(7151), 1, + ACTIONS(7424), 1, anon_sym_AMP, - ACTIONS(7155), 1, + ACTIONS(7428), 1, anon_sym_GT_GT, - ACTIONS(7161), 1, + ACTIONS(7434), 1, anon_sym_DOT_DOT, - ACTIONS(7163), 1, + ACTIONS(7436), 1, anon_sym_AMP_AMP, - ACTIONS(7165), 1, + ACTIONS(7438), 1, anon_sym_PIPE_PIPE, - ACTIONS(7167), 1, + ACTIONS(7440), 1, anon_sym_QMARK_QMARK, - ACTIONS(7169), 1, + ACTIONS(7442), 1, anon_sym_is, - STATE(2485), 1, + STATE(2759), 1, sym_bracketed_argument_list, - STATE(3487), 1, + STATE(3381), 1, sym_argument_list, - ACTIONS(5306), 2, + ACTIONS(5304), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7137), 2, + ACTIONS(7410), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7141), 2, + ACTIONS(7414), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7143), 2, + ACTIONS(7416), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7153), 2, + ACTIONS(7426), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7157), 2, + ACTIONS(7430), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7159), 2, + ACTIONS(7432), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(7837), 3, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_RPAREN, - STATE(5067), 9, + ACTIONS(5849), 3, + anon_sym_EQ_GT, + anon_sym_and, + anon_sym_or, + STATE(4999), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -638224,7 +631801,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [137485] = 34, + [130564] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -638245,68 +631822,74 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4100), 1, + ACTIONS(4042), 1, anon_sym_DOT, - ACTIONS(4102), 1, + ACTIONS(4044), 1, anon_sym_DASH_GT, - ACTIONS(5264), 1, + ACTIONS(5257), 1, anon_sym_LPAREN, - ACTIONS(5302), 1, + ACTIONS(5300), 1, anon_sym_LBRACK, - ACTIONS(5304), 1, + ACTIONS(5302), 1, anon_sym_BANG, - ACTIONS(6475), 1, + ACTIONS(6495), 1, anon_sym_switch, - ACTIONS(6489), 1, + ACTIONS(6505), 1, + anon_sym_as, + ACTIONS(6509), 1, anon_sym_with, - ACTIONS(7468), 1, + ACTIONS(7412), 1, + anon_sym_QMARK, + ACTIONS(7418), 1, anon_sym_SLASH, - ACTIONS(7478), 1, + ACTIONS(7420), 1, + anon_sym_CARET, + ACTIONS(7422), 1, + anon_sym_PIPE, + ACTIONS(7424), 1, + anon_sym_AMP, + ACTIONS(7428), 1, anon_sym_GT_GT, - ACTIONS(7484), 1, + ACTIONS(7434), 1, anon_sym_DOT_DOT, - ACTIONS(7492), 1, - anon_sym_as, - ACTIONS(7494), 1, + ACTIONS(7436), 1, + anon_sym_AMP_AMP, + ACTIONS(7438), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7440), 1, + anon_sym_QMARK_QMARK, + ACTIONS(7442), 1, anon_sym_is, - STATE(2808), 1, + STATE(2759), 1, sym_bracketed_argument_list, - STATE(3487), 1, + STATE(3381), 1, sym_argument_list, - ACTIONS(5306), 2, + ACTIONS(5304), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7460), 2, + ACTIONS(7410), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7464), 2, + ACTIONS(7414), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7466), 2, + ACTIONS(7416), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7476), 2, + ACTIONS(7426), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7480), 2, + ACTIONS(7430), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7482), 2, + ACTIONS(7432), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5664), 3, - anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_AMP, - ACTIONS(5660), 7, - anon_sym_CARET, + ACTIONS(4996), 3, + anon_sym_EQ_GT, anon_sym_and, anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_QMARK_QMARK, - anon_sym_on, - STATE(5068), 9, + STATE(5000), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -638316,7 +631899,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [137611] = 27, + [130702] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -638337,45 +631920,74 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4100), 1, + ACTIONS(4042), 1, anon_sym_DOT, - ACTIONS(4102), 1, + ACTIONS(4044), 1, anon_sym_DASH_GT, - ACTIONS(5264), 1, + ACTIONS(5257), 1, anon_sym_LPAREN, - ACTIONS(5302), 1, + ACTIONS(5300), 1, anon_sym_LBRACK, - ACTIONS(5304), 1, + ACTIONS(5302), 1, anon_sym_BANG, - ACTIONS(6475), 1, + ACTIONS(6495), 1, anon_sym_switch, - ACTIONS(6489), 1, + ACTIONS(6505), 1, + anon_sym_as, + ACTIONS(6509), 1, anon_sym_with, - ACTIONS(7468), 1, + ACTIONS(7412), 1, + anon_sym_QMARK, + ACTIONS(7418), 1, anon_sym_SLASH, - ACTIONS(7484), 1, + ACTIONS(7420), 1, + anon_sym_CARET, + ACTIONS(7422), 1, + anon_sym_PIPE, + ACTIONS(7424), 1, + anon_sym_AMP, + ACTIONS(7428), 1, + anon_sym_GT_GT, + ACTIONS(7434), 1, anon_sym_DOT_DOT, - STATE(2808), 1, + ACTIONS(7436), 1, + anon_sym_AMP_AMP, + ACTIONS(7438), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7440), 1, + anon_sym_QMARK_QMARK, + ACTIONS(7442), 1, + anon_sym_is, + STATE(2759), 1, sym_bracketed_argument_list, - STATE(3487), 1, + STATE(3381), 1, sym_argument_list, - ACTIONS(5306), 2, + ACTIONS(5304), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7464), 2, + ACTIONS(7410), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(7414), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7466), 2, + ACTIONS(7416), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(5664), 6, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT_GT, - STATE(5069), 9, + ACTIONS(7426), 2, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + ACTIONS(7430), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(7432), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(5652), 3, + anon_sym_EQ_GT, + anon_sym_and, + anon_sym_or, + STATE(5001), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -638385,23 +631997,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5660), 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_on, - anon_sym_as, - anon_sym_is, - [137723] = 42, + [130840] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -638422,76 +632018,74 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(2697), 1, - anon_sym_COMMA, - ACTIONS(4100), 1, + ACTIONS(4042), 1, anon_sym_DOT, - ACTIONS(4102), 1, + ACTIONS(4044), 1, anon_sym_DASH_GT, - ACTIONS(5264), 1, + ACTIONS(5257), 1, anon_sym_LPAREN, - ACTIONS(5304), 1, - anon_sym_BANG, - ACTIONS(5573), 1, + ACTIONS(5300), 1, anon_sym_LBRACK, - ACTIONS(6343), 1, + ACTIONS(5302), 1, + anon_sym_BANG, + ACTIONS(6495), 1, anon_sym_switch, - ACTIONS(6357), 1, - anon_sym_with, - ACTIONS(6813), 1, + ACTIONS(6505), 1, anon_sym_as, - ACTIONS(7139), 1, + ACTIONS(6509), 1, + anon_sym_with, + ACTIONS(7412), 1, anon_sym_QMARK, - ACTIONS(7145), 1, + ACTIONS(7418), 1, anon_sym_SLASH, - ACTIONS(7147), 1, + ACTIONS(7420), 1, anon_sym_CARET, - ACTIONS(7149), 1, + ACTIONS(7422), 1, anon_sym_PIPE, - ACTIONS(7151), 1, + ACTIONS(7424), 1, anon_sym_AMP, - ACTIONS(7155), 1, + ACTIONS(7428), 1, anon_sym_GT_GT, - ACTIONS(7161), 1, + ACTIONS(7434), 1, anon_sym_DOT_DOT, - ACTIONS(7163), 1, + ACTIONS(7436), 1, anon_sym_AMP_AMP, - ACTIONS(7165), 1, + ACTIONS(7438), 1, anon_sym_PIPE_PIPE, - ACTIONS(7167), 1, + ACTIONS(7440), 1, anon_sym_QMARK_QMARK, - ACTIONS(7169), 1, + ACTIONS(7442), 1, anon_sym_is, - ACTIONS(7839), 1, - anon_sym_RBRACK, - STATE(2485), 1, + STATE(2759), 1, sym_bracketed_argument_list, - STATE(3487), 1, + STATE(3381), 1, sym_argument_list, - STATE(6775), 1, - aux_sym_array_rank_specifier_repeat1, - ACTIONS(5306), 2, + ACTIONS(5304), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7137), 2, + ACTIONS(7410), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7141), 2, + ACTIONS(7414), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7143), 2, + ACTIONS(7416), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7153), 2, + ACTIONS(7426), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7157), 2, + ACTIONS(7430), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7159), 2, + ACTIONS(7432), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - STATE(5070), 9, + ACTIONS(5801), 3, + anon_sym_EQ_GT, + anon_sym_and, + anon_sym_or, + STATE(5002), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -638501,7 +632095,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [137865] = 29, + [130978] = 34, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -638522,49 +632116,68 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4100), 1, + ACTIONS(4042), 1, anon_sym_DOT, - ACTIONS(4102), 1, + ACTIONS(4044), 1, anon_sym_DASH_GT, - ACTIONS(5264), 1, + ACTIONS(5257), 1, anon_sym_LPAREN, - ACTIONS(5304), 1, + ACTIONS(5302), 1, anon_sym_BANG, - ACTIONS(5573), 1, + ACTIONS(5549), 1, anon_sym_LBRACK, - ACTIONS(6343), 1, + ACTIONS(6355), 1, anon_sym_switch, - ACTIONS(6357), 1, + ACTIONS(6369), 1, anon_sym_with, - ACTIONS(7442), 1, + ACTIONS(6811), 1, + anon_sym_as, + ACTIONS(7261), 1, + anon_sym_is, + ACTIONS(7568), 1, anon_sym_SLASH, - ACTIONS(7452), 1, + ACTIONS(7578), 1, anon_sym_GT_GT, - ACTIONS(7458), 1, + ACTIONS(7584), 1, anon_sym_DOT_DOT, - STATE(2485), 1, + STATE(2467), 1, sym_bracketed_argument_list, - STATE(3487), 1, + STATE(3381), 1, sym_argument_list, - ACTIONS(5306), 2, + ACTIONS(5304), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7438), 2, + ACTIONS(7560), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(7564), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7440), 2, + ACTIONS(7566), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7450), 2, + ACTIONS(7576), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(5664), 5, - anon_sym_LT, - anon_sym_GT, + ACTIONS(7580), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(7582), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(5739), 3, anon_sym_QMARK, anon_sym_PIPE, anon_sym_AMP, - STATE(5071), 9, + ACTIONS(5737), 7, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_CARET, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, + STATE(5003), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -638574,21 +632187,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5660), 13, - anon_sym_SEMI, - anon_sym_COMMA, - 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_as, - anon_sym_is, - [137981] = 33, + [131104] = 27, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -638609,67 +632208,38 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4100), 1, - anon_sym_DOT, - ACTIONS(4102), 1, - anon_sym_DASH_GT, - ACTIONS(5264), 1, + ACTIONS(3861), 1, + anon_sym_LBRACE, + ACTIONS(3877), 1, + sym_discard, + ACTIONS(6969), 1, + sym__identifier_token, + ACTIONS(6973), 1, anon_sym_LPAREN, - ACTIONS(5302), 1, - anon_sym_LBRACK, - ACTIONS(5304), 1, - anon_sym_BANG, - ACTIONS(6475), 1, - anon_sym_switch, - ACTIONS(6489), 1, - anon_sym_with, - ACTIONS(7468), 1, - anon_sym_SLASH, ACTIONS(7478), 1, - anon_sym_GT_GT, - ACTIONS(7484), 1, - anon_sym_DOT_DOT, - ACTIONS(7492), 1, - anon_sym_as, - ACTIONS(7494), 1, - anon_sym_is, - STATE(2808), 1, - sym_bracketed_argument_list, - STATE(3487), 1, - sym_argument_list, - ACTIONS(5306), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(7460), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(7464), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(7466), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(7476), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - ACTIONS(7482), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(5664), 3, - anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_AMP, - ACTIONS(5660), 9, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, + anon_sym_COMMA, + ACTIONS(7756), 1, + anon_sym_RPAREN, + STATE(2565), 1, + sym__reserved_identifier, + STATE(3352), 1, + sym_parenthesized_variable_designation, + STATE(3422), 1, + sym__variable_designation, + STATE(5154), 1, + sym_positional_pattern_clause, + STATE(5691), 1, + sym_property_pattern_clause, + STATE(6424), 1, + sym_identifier, + STATE(7378), 1, + sym__lambda_parameters, + STATE(7531), 1, + sym_parameter_list, + ACTIONS(3867), 2, anon_sym_and, anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_QMARK_QMARK, - anon_sym_on, - STATE(5072), 9, + STATE(5004), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -638679,7 +632249,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [138105] = 26, + ACTIONS(6971), 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, + [131216] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -638700,44 +632293,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4100), 1, - anon_sym_DOT, - ACTIONS(4102), 1, - anon_sym_DASH_GT, - ACTIONS(5264), 1, - anon_sym_LPAREN, - ACTIONS(5304), 1, - anon_sym_BANG, - ACTIONS(5573), 1, - anon_sym_LBRACK, - ACTIONS(6343), 1, - anon_sym_switch, - ACTIONS(6357), 1, - anon_sym_with, - ACTIONS(7442), 1, - anon_sym_SLASH, - ACTIONS(7458), 1, - anon_sym_DOT_DOT, - STATE(2485), 1, - sym_bracketed_argument_list, - STATE(3487), 1, - sym_argument_list, - ACTIONS(5306), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(7440), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(5664), 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(5073), 9, + ACTIONS(7688), 1, + anon_sym_and, + ACTIONS(7690), 1, + anon_sym_or, + STATE(5005), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -638747,10 +632307,28 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5660), 15, - anon_sym_SEMI, + ACTIONS(6109), 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(6107), 25, + sym_interpolation_close_brace, + anon_sym_LBRACK, + anon_sym_COLON, anon_sym_COMMA, - 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, @@ -638758,12 +632336,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, - [138215] = 37, + anon_sym_DASH_GT, + anon_sym_with, + [131304] = 27, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -638784,71 +632366,38 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4100), 1, - anon_sym_DOT, - ACTIONS(4102), 1, - anon_sym_DASH_GT, - ACTIONS(5264), 1, + ACTIONS(3861), 1, + anon_sym_LBRACE, + ACTIONS(3877), 1, + sym_discard, + ACTIONS(6969), 1, + sym__identifier_token, + ACTIONS(6973), 1, anon_sym_LPAREN, - ACTIONS(5302), 1, - anon_sym_LBRACK, - ACTIONS(5304), 1, - anon_sym_BANG, - ACTIONS(5664), 1, - anon_sym_QMARK, - ACTIONS(6475), 1, - anon_sym_switch, - ACTIONS(6489), 1, - anon_sym_with, - ACTIONS(7468), 1, - anon_sym_SLASH, - ACTIONS(7470), 1, - anon_sym_CARET, - ACTIONS(7472), 1, - anon_sym_PIPE, - ACTIONS(7474), 1, - anon_sym_AMP, ACTIONS(7478), 1, - anon_sym_GT_GT, - ACTIONS(7484), 1, - anon_sym_DOT_DOT, - ACTIONS(7492), 1, - anon_sym_as, - ACTIONS(7494), 1, - anon_sym_is, - STATE(2808), 1, - sym_bracketed_argument_list, - STATE(3487), 1, - sym_argument_list, - ACTIONS(5306), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(7460), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(7464), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(7466), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(7476), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - ACTIONS(7480), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(7482), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(5660), 6, + anon_sym_COMMA, + ACTIONS(7758), 1, + anon_sym_RPAREN, + STATE(2565), 1, + sym__reserved_identifier, + STATE(3352), 1, + sym_parenthesized_variable_designation, + STATE(3422), 1, + sym__variable_designation, + STATE(5154), 1, + sym_positional_pattern_clause, + STATE(5691), 1, + sym_property_pattern_clause, + STATE(6424), 1, + sym_identifier, + STATE(7378), 1, + sym__lambda_parameters, + STATE(7531), 1, + sym_parameter_list, + ACTIONS(3867), 2, anon_sym_and, anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_QMARK_QMARK, - anon_sym_on, - STATE(5074), 9, + STATE(5006), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -638858,7 +632407,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [138347] = 24, + ACTIONS(6971), 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, + [131416] = 27, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -638879,40 +632451,45 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4100), 1, + ACTIONS(4042), 1, anon_sym_DOT, - ACTIONS(4102), 1, + ACTIONS(4044), 1, anon_sym_DASH_GT, - ACTIONS(5264), 1, + ACTIONS(5257), 1, anon_sym_LPAREN, - ACTIONS(5304), 1, + ACTIONS(5302), 1, anon_sym_BANG, - ACTIONS(5573), 1, + ACTIONS(5549), 1, anon_sym_LBRACK, - ACTIONS(6343), 1, + ACTIONS(6355), 1, anon_sym_switch, - ACTIONS(6357), 1, + ACTIONS(6369), 1, anon_sym_with, - ACTIONS(7458), 1, + ACTIONS(7568), 1, + anon_sym_SLASH, + ACTIONS(7584), 1, anon_sym_DOT_DOT, - STATE(2485), 1, + STATE(2467), 1, sym_bracketed_argument_list, - STATE(3487), 1, + STATE(3381), 1, sym_argument_list, - ACTIONS(5306), 2, + ACTIONS(5304), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5664), 9, + ACTIONS(7564), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(7566), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(5739), 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(5075), 9, + STATE(5007), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -638922,12 +632499,10 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5660), 17, + ACTIONS(5737), 15, 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, @@ -638940,7 +632515,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_as, anon_sym_is, - [138453] = 38, + [131528] = 33, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -638961,72 +632536,67 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4100), 1, + ACTIONS(4042), 1, anon_sym_DOT, - ACTIONS(4102), 1, + ACTIONS(4044), 1, anon_sym_DASH_GT, - ACTIONS(5264), 1, + ACTIONS(5257), 1, anon_sym_LPAREN, ACTIONS(5302), 1, - anon_sym_LBRACK, - ACTIONS(5304), 1, anon_sym_BANG, - ACTIONS(5664), 1, - anon_sym_QMARK, - ACTIONS(6475), 1, + ACTIONS(5549), 1, + anon_sym_LBRACK, + ACTIONS(6355), 1, anon_sym_switch, - ACTIONS(6489), 1, + ACTIONS(6369), 1, anon_sym_with, - ACTIONS(7468), 1, + ACTIONS(6811), 1, + anon_sym_as, + ACTIONS(7261), 1, + anon_sym_is, + ACTIONS(7568), 1, anon_sym_SLASH, - ACTIONS(7470), 1, - anon_sym_CARET, - ACTIONS(7472), 1, - anon_sym_PIPE, - ACTIONS(7474), 1, - anon_sym_AMP, - ACTIONS(7478), 1, + ACTIONS(7578), 1, anon_sym_GT_GT, - ACTIONS(7484), 1, + ACTIONS(7584), 1, anon_sym_DOT_DOT, - ACTIONS(7486), 1, - anon_sym_AMP_AMP, - ACTIONS(7492), 1, - anon_sym_as, - ACTIONS(7494), 1, - anon_sym_is, - STATE(2808), 1, + STATE(2467), 1, sym_bracketed_argument_list, - STATE(3487), 1, + STATE(3381), 1, sym_argument_list, - ACTIONS(5306), 2, + ACTIONS(5304), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7460), 2, + ACTIONS(7560), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7464), 2, + ACTIONS(7564), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7466), 2, + ACTIONS(7566), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7476), 2, + ACTIONS(7576), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7480), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(7482), 2, + ACTIONS(7582), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5660), 5, - anon_sym_and, - anon_sym_or, + ACTIONS(5739), 3, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_AMP, + ACTIONS(5737), 9, + anon_sym_SEMI, + anon_sym_COMMA, + 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_on, - STATE(5076), 9, + STATE(5008), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -639036,7 +632606,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [138587] = 40, + [131652] = 27, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -639057,74 +632627,38 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4100), 1, - anon_sym_DOT, - ACTIONS(4102), 1, - anon_sym_DASH_GT, - ACTIONS(5264), 1, + ACTIONS(3861), 1, + anon_sym_LBRACE, + ACTIONS(3877), 1, + sym_discard, + ACTIONS(6969), 1, + sym__identifier_token, + ACTIONS(6973), 1, anon_sym_LPAREN, - ACTIONS(5302), 1, - anon_sym_LBRACK, - ACTIONS(5304), 1, - anon_sym_BANG, - ACTIONS(5664), 1, - anon_sym_QMARK, - ACTIONS(6475), 1, - anon_sym_switch, - ACTIONS(6489), 1, - anon_sym_with, - ACTIONS(7468), 1, - anon_sym_SLASH, - ACTIONS(7470), 1, - anon_sym_CARET, - ACTIONS(7472), 1, - anon_sym_PIPE, - ACTIONS(7474), 1, - anon_sym_AMP, ACTIONS(7478), 1, - anon_sym_GT_GT, - ACTIONS(7484), 1, - anon_sym_DOT_DOT, - ACTIONS(7486), 1, - anon_sym_AMP_AMP, - ACTIONS(7488), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7490), 1, - anon_sym_QMARK_QMARK, - ACTIONS(7492), 1, - anon_sym_as, - ACTIONS(7494), 1, - anon_sym_is, - STATE(2808), 1, - sym_bracketed_argument_list, - STATE(3487), 1, - sym_argument_list, - ACTIONS(5306), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(7460), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(7464), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(7466), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(7476), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - ACTIONS(7480), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(7482), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(5660), 3, + anon_sym_COMMA, + ACTIONS(7760), 1, + anon_sym_RPAREN, + STATE(2565), 1, + sym__reserved_identifier, + STATE(3352), 1, + sym_parenthesized_variable_designation, + STATE(3422), 1, + sym__variable_designation, + STATE(5154), 1, + sym_positional_pattern_clause, + STATE(5691), 1, + sym_property_pattern_clause, + STATE(6424), 1, + sym_identifier, + STATE(7378), 1, + sym__lambda_parameters, + STATE(7531), 1, + sym_parameter_list, + ACTIONS(3867), 2, anon_sym_and, anon_sym_or, - anon_sym_on, - STATE(5077), 9, + STATE(5009), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -639134,7 +632668,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [138725] = 35, + ACTIONS(6971), 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, + [131764] = 24, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -639155,79 +632712,68 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4100), 1, + ACTIONS(4042), 1, anon_sym_DOT, - ACTIONS(4102), 1, + ACTIONS(4044), 1, anon_sym_DASH_GT, - ACTIONS(5264), 1, + ACTIONS(5257), 1, anon_sym_LPAREN, - ACTIONS(5304), 1, - anon_sym_BANG, - ACTIONS(5573), 1, + ACTIONS(5300), 1, anon_sym_LBRACK, - ACTIONS(6343), 1, + ACTIONS(5302), 1, + anon_sym_BANG, + ACTIONS(6495), 1, anon_sym_switch, - ACTIONS(6357), 1, + ACTIONS(6509), 1, anon_sym_with, - ACTIONS(6813), 1, - anon_sym_as, - ACTIONS(7169), 1, - anon_sym_is, - ACTIONS(7442), 1, - anon_sym_SLASH, - ACTIONS(7448), 1, - anon_sym_AMP, - ACTIONS(7452), 1, - anon_sym_GT_GT, - ACTIONS(7458), 1, + ACTIONS(7466), 1, anon_sym_DOT_DOT, - STATE(2485), 1, + STATE(2759), 1, sym_bracketed_argument_list, - STATE(3487), 1, + STATE(3381), 1, sym_argument_list, - ACTIONS(5306), 2, + ACTIONS(5304), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5664), 2, - anon_sym_QMARK, - anon_sym_PIPE, - ACTIONS(7436), 2, + ACTIONS(5739), 9, anon_sym_LT, anon_sym_GT, - ACTIONS(7438), 2, + anon_sym_QMARK, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7440), 2, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT_GT, + STATE(5010), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + ACTIONS(5737), 17, + anon_sym_in, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7450), 2, + anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7454), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7456), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5660), 7, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_CARET, + anon_sym_and, + anon_sym_or, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_QMARK_QMARK, - 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, - [138853] = 15, + anon_sym_as, + anon_sym_is, + [131870] = 22, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -639248,11 +632794,32 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(7841), 1, - anon_sym_into, - STATE(5080), 1, - aux_sym__query_body_repeat2, - STATE(5079), 9, + ACTIONS(7762), 1, + sym__identifier_token, + ACTIONS(7768), 1, + anon_sym_LPAREN, + STATE(2168), 1, + sym__reserved_identifier, + STATE(2170), 1, + sym_generic_name, + STATE(4370), 1, + sym_identifier, + STATE(5886), 1, + sym_explicit_interface_specifier, + STATE(7369), 1, + sym__name, + ACTIONS(7772), 2, + anon_sym_operator, + anon_sym_checked, + ACTIONS(7770), 3, + anon_sym_ref, + anon_sym_delegate, + sym_predefined_type, + STATE(4068), 3, + sym_alias_qualified_name, + sym__simple_name, + sym_qualified_name, + STATE(5011), 10, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -639262,45 +632829,131 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(6001), 11, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, + aux_sym_conversion_operator_declaration_repeat1, + ACTIONS(7765), 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, + [131972] = 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(2695), 1, + anon_sym_COMMA, + ACTIONS(4042), 1, + anon_sym_DOT, + ACTIONS(4044), 1, + anon_sym_DASH_GT, + ACTIONS(5257), 1, + anon_sym_LPAREN, + ACTIONS(5302), 1, anon_sym_BANG, - anon_sym_PLUS, - anon_sym_DASH, + ACTIONS(5549), 1, + anon_sym_LBRACK, + ACTIONS(6355), 1, + anon_sym_switch, + ACTIONS(6369), 1, + anon_sym_with, + ACTIONS(6811), 1, + anon_sym_as, + ACTIONS(7231), 1, + anon_sym_QMARK, + ACTIONS(7237), 1, anon_sym_SLASH, + ACTIONS(7239), 1, + anon_sym_CARET, + ACTIONS(7241), 1, anon_sym_PIPE, + ACTIONS(7243), 1, anon_sym_AMP, + ACTIONS(7247), 1, anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(5999), 25, - anon_sym_LBRACK, - anon_sym_LPAREN, + ACTIONS(7253), 1, + anon_sym_DOT_DOT, + ACTIONS(7255), 1, + anon_sym_AMP_AMP, + ACTIONS(7257), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7259), 1, + anon_sym_QMARK_QMARK, + ACTIONS(7261), 1, + anon_sym_is, + ACTIONS(7775), 1, + anon_sym_RBRACK, + STATE(2467), 1, + sym_bracketed_argument_list, + STATE(3381), 1, + sym_argument_list, + STATE(6911), 1, + aux_sym_array_rank_specifier_repeat1, + ACTIONS(5304), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + ACTIONS(7229), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(7233), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(7235), 2, anon_sym_STAR, anon_sym_PERCENT, - anon_sym_CARET, + ACTIONS(7245), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, + ACTIONS(7249), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + ACTIONS(7251), 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_by, - anon_sym_as, - anon_sym_is, - anon_sym_DASH_GT, - anon_sym_with, - [138941] = 15, + STATE(5012), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + [132114] = 27, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -639321,11 +632974,38 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(7841), 1, - anon_sym_into, - STATE(5082), 1, - aux_sym__query_body_repeat2, - STATE(5080), 9, + ACTIONS(3861), 1, + anon_sym_LBRACE, + ACTIONS(3877), 1, + sym_discard, + ACTIONS(6969), 1, + sym__identifier_token, + ACTIONS(6973), 1, + anon_sym_LPAREN, + ACTIONS(7478), 1, + anon_sym_COMMA, + ACTIONS(7777), 1, + anon_sym_RPAREN, + STATE(2565), 1, + sym__reserved_identifier, + STATE(3352), 1, + sym_parenthesized_variable_designation, + STATE(3422), 1, + sym__variable_designation, + STATE(5154), 1, + sym_positional_pattern_clause, + STATE(5691), 1, + sym_property_pattern_clause, + STATE(6424), 1, + sym_identifier, + STATE(7378), 1, + sym__lambda_parameters, + STATE(7531), 1, + sym_parameter_list, + ACTIONS(3867), 2, + anon_sym_and, + anon_sym_or, + STATE(5013), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -639335,45 +633015,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(6005), 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(6003), 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, + ACTIONS(6971), 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_DASH_GT, - anon_sym_with, - [139029] = 15, + anon_sym_select, + [132226] = 27, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -639394,11 +633059,38 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(7841), 1, - anon_sym_into, - STATE(5083), 1, - aux_sym__query_body_repeat2, - STATE(5081), 9, + ACTIONS(3861), 1, + anon_sym_LBRACE, + ACTIONS(3877), 1, + sym_discard, + ACTIONS(6969), 1, + sym__identifier_token, + ACTIONS(6973), 1, + anon_sym_LPAREN, + ACTIONS(7478), 1, + anon_sym_COMMA, + ACTIONS(7779), 1, + anon_sym_RPAREN, + STATE(2565), 1, + sym__reserved_identifier, + STATE(3352), 1, + sym_parenthesized_variable_designation, + STATE(3422), 1, + sym__variable_designation, + STATE(5154), 1, + sym_positional_pattern_clause, + STATE(5691), 1, + sym_property_pattern_clause, + STATE(6424), 1, + sym_identifier, + STATE(7378), 1, + sym__lambda_parameters, + STATE(7531), 1, + sym_parameter_list, + ACTIONS(3867), 2, + anon_sym_and, + anon_sym_or, + STATE(5014), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -639408,45 +633100,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(6005), 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(6003), 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, + ACTIONS(6971), 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_DASH_GT, - anon_sym_with, - [139117] = 14, + anon_sym_select, + [132338] = 27, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -639467,9 +633144,38 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(7843), 1, - anon_sym_into, - STATE(5082), 10, + ACTIONS(3861), 1, + anon_sym_LBRACE, + ACTIONS(3877), 1, + sym_discard, + ACTIONS(6969), 1, + sym__identifier_token, + ACTIONS(6973), 1, + anon_sym_LPAREN, + ACTIONS(7478), 1, + anon_sym_COMMA, + ACTIONS(7781), 1, + anon_sym_RPAREN, + STATE(2565), 1, + sym__reserved_identifier, + STATE(3352), 1, + sym_parenthesized_variable_designation, + STATE(3422), 1, + sym__variable_designation, + STATE(5154), 1, + sym_positional_pattern_clause, + STATE(5691), 1, + sym_property_pattern_clause, + STATE(6424), 1, + sym_identifier, + STATE(7378), 1, + sym__lambda_parameters, + STATE(7531), 1, + sym_parameter_list, + ACTIONS(3867), 2, + anon_sym_and, + anon_sym_or, + STATE(5015), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -639479,46 +633185,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - aux_sym__query_body_repeat2, - ACTIONS(5951), 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(5949), 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, + ACTIONS(6971), 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_DASH_GT, - anon_sym_with, - [139203] = 15, + anon_sym_select, + [132450] = 27, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -639539,11 +633229,38 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(7841), 1, - anon_sym_into, - STATE(5082), 1, - aux_sym__query_body_repeat2, - STATE(5083), 9, + ACTIONS(3861), 1, + anon_sym_LBRACE, + ACTIONS(3877), 1, + sym_discard, + ACTIONS(6969), 1, + sym__identifier_token, + ACTIONS(6973), 1, + anon_sym_LPAREN, + ACTIONS(7478), 1, + anon_sym_COMMA, + ACTIONS(7783), 1, + anon_sym_RPAREN, + STATE(2565), 1, + sym__reserved_identifier, + STATE(3352), 1, + sym_parenthesized_variable_designation, + STATE(3422), 1, + sym__variable_designation, + STATE(5154), 1, + sym_positional_pattern_clause, + STATE(5691), 1, + sym_property_pattern_clause, + STATE(6424), 1, + sym_identifier, + STATE(7378), 1, + sym__lambda_parameters, + STATE(7531), 1, + sym_parameter_list, + ACTIONS(3867), 2, + anon_sym_and, + anon_sym_or, + STATE(5016), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -639553,45 +633270,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5960), 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(5958), 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, + ACTIONS(6971), 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_DASH_GT, - anon_sym_with, - [139291] = 15, + anon_sym_select, + [132562] = 22, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -639612,84 +633314,36 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(7846), 1, - anon_sym_into, - STATE(5085), 1, - aux_sym__query_body_repeat2, - STATE(5084), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - ACTIONS(6001), 11, + ACTIONS(4042), 1, + anon_sym_DOT, + ACTIONS(4044), 1, + anon_sym_DASH_GT, + ACTIONS(5257), 1, + anon_sym_LPAREN, + ACTIONS(5300), 1, + anon_sym_LBRACK, + ACTIONS(5302), 1, + anon_sym_BANG, + ACTIONS(7466), 1, + anon_sym_DOT_DOT, + STATE(2759), 1, + sym_bracketed_argument_list, + STATE(3381), 1, + sym_argument_list, + ACTIONS(5304), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1161), 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(5999), 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_equals, - anon_sym_as, - anon_sym_is, - anon_sym_DASH_GT, - anon_sym_with, - [139379] = 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(7846), 1, - anon_sym_into, - STATE(5087), 1, - aux_sym__query_body_repeat2, - STATE(5085), 9, + STATE(5017), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -639699,23 +633353,8 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(6005), 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(6003), 25, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, + ACTIONS(1147), 19, + anon_sym_in, anon_sym_STAR, anon_sym_PERCENT, anon_sym_CARET, @@ -639726,18 +633365,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_equals, anon_sym_as, anon_sym_is, - anon_sym_DASH_GT, anon_sym_with, - [139467] = 15, + [132664] = 42, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -639758,59 +633394,86 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(7846), 1, - anon_sym_into, - STATE(5088), 1, - aux_sym__query_body_repeat2, - STATE(5086), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - ACTIONS(6005), 11, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, + ACTIONS(2695), 1, + anon_sym_COMMA, + ACTIONS(4042), 1, + anon_sym_DOT, + ACTIONS(4044), 1, + anon_sym_DASH_GT, + ACTIONS(5257), 1, + anon_sym_LPAREN, + ACTIONS(5302), 1, anon_sym_BANG, - anon_sym_PLUS, - anon_sym_DASH, + ACTIONS(5549), 1, + anon_sym_LBRACK, + ACTIONS(6355), 1, + anon_sym_switch, + ACTIONS(6369), 1, + anon_sym_with, + ACTIONS(6811), 1, + anon_sym_as, + ACTIONS(7231), 1, + anon_sym_QMARK, + ACTIONS(7237), 1, anon_sym_SLASH, + ACTIONS(7239), 1, + anon_sym_CARET, + ACTIONS(7241), 1, anon_sym_PIPE, + ACTIONS(7243), 1, anon_sym_AMP, + ACTIONS(7247), 1, anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(6003), 25, - anon_sym_LBRACK, - anon_sym_LPAREN, + ACTIONS(7253), 1, + anon_sym_DOT_DOT, + ACTIONS(7255), 1, + anon_sym_AMP_AMP, + ACTIONS(7257), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7259), 1, + anon_sym_QMARK_QMARK, + ACTIONS(7261), 1, + anon_sym_is, + ACTIONS(7785), 1, + anon_sym_RBRACK, + STATE(2467), 1, + sym_bracketed_argument_list, + STATE(3381), 1, + sym_argument_list, + STATE(6901), 1, + aux_sym_array_rank_specifier_repeat1, + ACTIONS(5304), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + ACTIONS(7229), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(7233), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(7235), 2, anon_sym_STAR, anon_sym_PERCENT, - anon_sym_CARET, + ACTIONS(7245), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, + ACTIONS(7249), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + ACTIONS(7251), 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_equals, - anon_sym_as, - anon_sym_is, - anon_sym_DASH_GT, - anon_sym_with, - [139555] = 14, + 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, + [132806] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -639831,58 +633494,84 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(7848), 1, - anon_sym_into, - STATE(5087), 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(5951), 11, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, + ACTIONS(4427), 1, + anon_sym_DOT, + ACTIONS(4429), 1, + anon_sym_DASH_GT, + ACTIONS(6557), 1, + anon_sym_LPAREN, + ACTIONS(6607), 1, + anon_sym_LBRACK, + ACTIONS(6613), 1, anon_sym_BANG, - anon_sym_PLUS, - anon_sym_DASH, + ACTIONS(6637), 1, + anon_sym_switch, + ACTIONS(6651), 1, + anon_sym_with, + ACTIONS(6713), 1, + anon_sym_QMARK, + ACTIONS(6719), 1, anon_sym_SLASH, + ACTIONS(6721), 1, + anon_sym_CARET, + ACTIONS(6723), 1, anon_sym_PIPE, + ACTIONS(6725), 1, anon_sym_AMP, + ACTIONS(6729), 1, anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(5949), 25, - anon_sym_LBRACK, - anon_sym_LPAREN, + ACTIONS(6735), 1, + anon_sym_DOT_DOT, + ACTIONS(6737), 1, + anon_sym_AMP_AMP, + ACTIONS(6739), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6741), 1, + anon_sym_QMARK_QMARK, + ACTIONS(6743), 1, + anon_sym_as, + ACTIONS(6745), 1, + anon_sym_is, + STATE(3188), 1, + sym_bracketed_argument_list, + STATE(4584), 1, + sym_argument_list, + ACTIONS(6615), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + ACTIONS(6711), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(6715), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6717), 2, anon_sym_STAR, anon_sym_PERCENT, - anon_sym_CARET, + ACTIONS(6727), 2, anon_sym_LT_LT, anon_sym_GT_GT_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, - 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, - [139641] = 15, + ACTIONS(4996), 3, + sym_interpolation_close_brace, + anon_sym_COLON, + anon_sym_COMMA, + 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, + [132944] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -639903,11 +633592,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(7846), 1, + ACTIONS(7490), 1, anon_sym_into, - STATE(5087), 1, + STATE(4840), 1, aux_sym__query_body_repeat2, - STATE(5088), 9, + STATE(5020), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -639917,7 +633606,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5960), 11, + ACTIONS(5881), 11, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, @@ -639929,8 +633618,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT, - ACTIONS(5958), 25, + ACTIONS(5879), 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, @@ -639945,17 +633637,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_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, - [139729] = 36, + [133032] = 42, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -639976,70 +633665,76 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4100), 1, + ACTIONS(4042), 1, anon_sym_DOT, - ACTIONS(4102), 1, + ACTIONS(4044), 1, anon_sym_DASH_GT, - ACTIONS(5264), 1, + ACTIONS(5257), 1, anon_sym_LPAREN, - ACTIONS(5304), 1, + ACTIONS(5302), 1, anon_sym_BANG, - ACTIONS(5573), 1, + ACTIONS(5549), 1, anon_sym_LBRACK, - ACTIONS(6343), 1, + ACTIONS(6355), 1, anon_sym_switch, - ACTIONS(6357), 1, + ACTIONS(6369), 1, anon_sym_with, - ACTIONS(6813), 1, + ACTIONS(6811), 1, anon_sym_as, - ACTIONS(7169), 1, - anon_sym_is, - ACTIONS(7442), 1, + ACTIONS(7231), 1, + anon_sym_QMARK, + ACTIONS(7237), 1, anon_sym_SLASH, - ACTIONS(7444), 1, + ACTIONS(7239), 1, anon_sym_CARET, - ACTIONS(7448), 1, + ACTIONS(7241), 1, + anon_sym_PIPE, + ACTIONS(7243), 1, anon_sym_AMP, - ACTIONS(7452), 1, + ACTIONS(7247), 1, anon_sym_GT_GT, - ACTIONS(7458), 1, + ACTIONS(7253), 1, anon_sym_DOT_DOT, - STATE(2485), 1, + ACTIONS(7255), 1, + anon_sym_AMP_AMP, + ACTIONS(7257), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7259), 1, + anon_sym_QMARK_QMARK, + ACTIONS(7261), 1, + anon_sym_is, + ACTIONS(7787), 1, + anon_sym_COMMA, + ACTIONS(7789), 1, + anon_sym_RBRACE, + STATE(2467), 1, sym_bracketed_argument_list, - STATE(3487), 1, + STATE(3381), 1, sym_argument_list, - ACTIONS(5306), 2, + STATE(6875), 1, + aux_sym__for_statement_conditions_repeat1, + ACTIONS(5304), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5664), 2, - anon_sym_QMARK, - anon_sym_PIPE, - ACTIONS(7436), 2, + ACTIONS(7229), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7438), 2, + ACTIONS(7233), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7440), 2, + ACTIONS(7235), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7450), 2, + ACTIONS(7245), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7454), 2, + ACTIONS(7249), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7456), 2, + ACTIONS(7251), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5660), 6, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_QMARK_QMARK, - STATE(5089), 9, + STATE(5021), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -640049,7 +633744,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [139859] = 15, + [133174] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -640070,11 +633765,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(7851), 1, + ACTIONS(7490), 1, anon_sym_into, - STATE(5091), 1, + STATE(4841), 1, aux_sym__query_body_repeat2, - STATE(5090), 9, + STATE(5022), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -640084,7 +633779,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(6001), 11, + ACTIONS(5881), 11, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, @@ -640096,8 +633791,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT, - ACTIONS(5999), 25, + ACTIONS(5879), 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, @@ -640112,17 +633810,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_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, - [139947] = 15, + [133262] = 29, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -640143,11 +633838,49 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(7851), 1, - anon_sym_into, - STATE(5093), 1, - aux_sym__query_body_repeat2, - STATE(5091), 9, + ACTIONS(4042), 1, + anon_sym_DOT, + ACTIONS(4044), 1, + anon_sym_DASH_GT, + ACTIONS(5257), 1, + anon_sym_LPAREN, + ACTIONS(5300), 1, + anon_sym_LBRACK, + ACTIONS(5302), 1, + anon_sym_BANG, + ACTIONS(6495), 1, + anon_sym_switch, + ACTIONS(6509), 1, + anon_sym_with, + ACTIONS(7716), 1, + anon_sym_SLASH, + ACTIONS(7726), 1, + anon_sym_GT_GT, + ACTIONS(7732), 1, + anon_sym_DOT_DOT, + STATE(2759), 1, + sym_bracketed_argument_list, + STATE(3381), 1, + sym_argument_list, + ACTIONS(5304), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7712), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(7714), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(7724), 2, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + ACTIONS(5739), 5, + anon_sym_LT, + anon_sym_GT, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_AMP, + STATE(5023), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -640157,45 +633890,21 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(6005), 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(6003), 25, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_STAR, - anon_sym_PERCENT, + ACTIONS(5737), 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_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_on, anon_sym_as, anon_sym_is, - anon_sym_DASH_GT, - anon_sym_with, - [140035] = 15, + [133378] = 41, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -640216,59 +633925,85 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(7851), 1, - anon_sym_into, - STATE(5094), 1, - aux_sym__query_body_repeat2, - STATE(5092), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - ACTIONS(6005), 11, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, + ACTIONS(4042), 1, + anon_sym_DOT, + ACTIONS(4044), 1, + anon_sym_DASH_GT, + ACTIONS(5257), 1, + anon_sym_LPAREN, + ACTIONS(5302), 1, anon_sym_BANG, - anon_sym_PLUS, - anon_sym_DASH, + ACTIONS(5549), 1, + anon_sym_LBRACK, + ACTIONS(6355), 1, + anon_sym_switch, + ACTIONS(6369), 1, + anon_sym_with, + ACTIONS(6811), 1, + anon_sym_as, + ACTIONS(7261), 1, + anon_sym_is, + ACTIONS(7562), 1, + anon_sym_QMARK, + ACTIONS(7568), 1, anon_sym_SLASH, + ACTIONS(7570), 1, + anon_sym_CARET, + ACTIONS(7572), 1, anon_sym_PIPE, + ACTIONS(7574), 1, anon_sym_AMP, + ACTIONS(7578), 1, anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(6003), 25, - anon_sym_LBRACK, - anon_sym_LPAREN, + ACTIONS(7584), 1, + anon_sym_DOT_DOT, + ACTIONS(7586), 1, + anon_sym_AMP_AMP, + ACTIONS(7588), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7590), 1, + anon_sym_QMARK_QMARK, + ACTIONS(7791), 1, + anon_sym_SEMI, + STATE(2467), 1, + sym_bracketed_argument_list, + STATE(3381), 1, + sym_argument_list, + ACTIONS(5304), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + ACTIONS(5709), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + ACTIONS(7560), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(7564), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(7566), 2, anon_sym_STAR, anon_sym_PERCENT, - anon_sym_CARET, + ACTIONS(7576), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, + ACTIONS(7580), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + ACTIONS(7582), 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_on, - anon_sym_as, - anon_sym_is, - anon_sym_DASH_GT, - anon_sym_with, - [140123] = 14, + 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, + [133518] = 26, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -640289,9 +634024,44 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(7853), 1, - anon_sym_into, - STATE(5093), 10, + ACTIONS(4042), 1, + anon_sym_DOT, + ACTIONS(4044), 1, + anon_sym_DASH_GT, + ACTIONS(5257), 1, + anon_sym_LPAREN, + ACTIONS(5300), 1, + anon_sym_LBRACK, + ACTIONS(5302), 1, + anon_sym_BANG, + ACTIONS(6495), 1, + anon_sym_switch, + ACTIONS(6509), 1, + anon_sym_with, + ACTIONS(7716), 1, + anon_sym_SLASH, + ACTIONS(7732), 1, + anon_sym_DOT_DOT, + STATE(2759), 1, + sym_bracketed_argument_list, + STATE(3381), 1, + sym_argument_list, + ACTIONS(5304), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7714), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(5739), 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(5025), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -640301,26 +634071,8 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - aux_sym__query_body_repeat2, - ACTIONS(5951), 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(5949), 25, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_STAR, - anon_sym_PERCENT, + ACTIONS(5737), 15, + anon_sym_COLON, anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT_GT, @@ -640328,19 +634080,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_on, anon_sym_as, anon_sym_is, - anon_sym_DASH_GT, - anon_sym_with, - [140209] = 15, + [133628] = 35, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -640361,59 +634108,79 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(7851), 1, - anon_sym_into, - STATE(5093), 1, - aux_sym__query_body_repeat2, - STATE(5094), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - ACTIONS(5960), 11, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, + ACTIONS(4042), 1, + anon_sym_DOT, + ACTIONS(4044), 1, + anon_sym_DASH_GT, + ACTIONS(5257), 1, + anon_sym_LPAREN, + ACTIONS(5300), 1, + anon_sym_LBRACK, + ACTIONS(5302), 1, anon_sym_BANG, - anon_sym_PLUS, - anon_sym_DASH, + ACTIONS(6495), 1, + anon_sym_switch, + ACTIONS(6505), 1, + anon_sym_as, + ACTIONS(6509), 1, + anon_sym_with, + ACTIONS(7716), 1, anon_sym_SLASH, - anon_sym_PIPE, + ACTIONS(7722), 1, anon_sym_AMP, + ACTIONS(7726), 1, anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(5958), 25, - anon_sym_LBRACK, - anon_sym_LPAREN, + ACTIONS(7732), 1, + anon_sym_DOT_DOT, + ACTIONS(7740), 1, + anon_sym_is, + STATE(2759), 1, + sym_bracketed_argument_list, + STATE(3381), 1, + sym_argument_list, + ACTIONS(5304), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + ACTIONS(5739), 2, + anon_sym_QMARK, + anon_sym_PIPE, + ACTIONS(7708), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(7712), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(7714), 2, anon_sym_STAR, anon_sym_PERCENT, - anon_sym_CARET, + ACTIONS(7724), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, + ACTIONS(7728), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + ACTIONS(7730), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - anon_sym_switch, - anon_sym_DOT_DOT, + ACTIONS(5737), 7, + anon_sym_COLON, + anon_sym_CARET, 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_DASH_GT, - anon_sym_with, - [140297] = 40, + STATE(5026), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + [133756] = 36, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -640434,74 +634201,70 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4100), 1, + ACTIONS(4042), 1, anon_sym_DOT, - ACTIONS(4102), 1, + ACTIONS(4044), 1, anon_sym_DASH_GT, - ACTIONS(5264), 1, + ACTIONS(5257), 1, anon_sym_LPAREN, - ACTIONS(5304), 1, - anon_sym_BANG, - ACTIONS(5573), 1, + ACTIONS(5300), 1, anon_sym_LBRACK, - ACTIONS(6343), 1, + ACTIONS(5302), 1, + anon_sym_BANG, + ACTIONS(6495), 1, anon_sym_switch, - ACTIONS(6357), 1, - anon_sym_with, - ACTIONS(6813), 1, + ACTIONS(6505), 1, anon_sym_as, - ACTIONS(7139), 1, - anon_sym_QMARK, - ACTIONS(7145), 1, + ACTIONS(6509), 1, + anon_sym_with, + ACTIONS(7716), 1, anon_sym_SLASH, - ACTIONS(7147), 1, + ACTIONS(7718), 1, anon_sym_CARET, - ACTIONS(7149), 1, - anon_sym_PIPE, - ACTIONS(7151), 1, + ACTIONS(7722), 1, anon_sym_AMP, - ACTIONS(7155), 1, + ACTIONS(7726), 1, anon_sym_GT_GT, - ACTIONS(7161), 1, + ACTIONS(7732), 1, anon_sym_DOT_DOT, - ACTIONS(7163), 1, - anon_sym_AMP_AMP, - ACTIONS(7165), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7167), 1, - anon_sym_QMARK_QMARK, - ACTIONS(7169), 1, + ACTIONS(7740), 1, anon_sym_is, - STATE(2485), 1, + STATE(2759), 1, sym_bracketed_argument_list, - STATE(3487), 1, + STATE(3381), 1, sym_argument_list, - ACTIONS(5306), 2, + ACTIONS(5304), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7137), 2, + ACTIONS(5739), 2, + anon_sym_QMARK, + anon_sym_PIPE, + ACTIONS(7708), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7141), 2, + ACTIONS(7712), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7143), 2, + ACTIONS(7714), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7153), 2, + ACTIONS(7724), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7157), 2, + ACTIONS(7728), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7159), 2, + ACTIONS(7730), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(7856), 3, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_RPAREN, - STATE(5095), 9, + ACTIONS(5737), 6, + anon_sym_COLON, + anon_sym_and, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, + STATE(5027), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -640511,7 +634274,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [140435] = 34, + [133886] = 34, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -640532,68 +634295,68 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4100), 1, + ACTIONS(4042), 1, anon_sym_DOT, - ACTIONS(4102), 1, + ACTIONS(4044), 1, anon_sym_DASH_GT, - ACTIONS(5264), 1, + ACTIONS(5257), 1, anon_sym_LPAREN, - ACTIONS(5304), 1, - anon_sym_BANG, - ACTIONS(5573), 1, + ACTIONS(5300), 1, anon_sym_LBRACK, - ACTIONS(6343), 1, + ACTIONS(5302), 1, + anon_sym_BANG, + ACTIONS(6495), 1, anon_sym_switch, - ACTIONS(6357), 1, - anon_sym_with, - ACTIONS(6813), 1, + ACTIONS(6505), 1, anon_sym_as, - ACTIONS(7169), 1, - anon_sym_is, - ACTIONS(7442), 1, + ACTIONS(6509), 1, + anon_sym_with, + ACTIONS(7716), 1, anon_sym_SLASH, - ACTIONS(7452), 1, + ACTIONS(7726), 1, anon_sym_GT_GT, - ACTIONS(7458), 1, + ACTIONS(7732), 1, anon_sym_DOT_DOT, - STATE(2485), 1, + ACTIONS(7740), 1, + anon_sym_is, + STATE(2759), 1, sym_bracketed_argument_list, - STATE(3487), 1, + STATE(3381), 1, sym_argument_list, - ACTIONS(5306), 2, + ACTIONS(5304), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7436), 2, + ACTIONS(7708), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7438), 2, + ACTIONS(7712), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7440), 2, + ACTIONS(7714), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7450), 2, + ACTIONS(7724), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7454), 2, + ACTIONS(7728), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7456), 2, + ACTIONS(7730), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5664), 3, + ACTIONS(5739), 3, anon_sym_QMARK, anon_sym_PIPE, anon_sym_AMP, - ACTIONS(5660), 7, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RBRACE, + ACTIONS(5737), 7, + anon_sym_COLON, anon_sym_CARET, + anon_sym_and, + anon_sym_or, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_QMARK_QMARK, - STATE(5096), 9, + STATE(5028), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -640603,7 +634366,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [140561] = 15, + [134012] = 27, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -640624,11 +634387,45 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(7858), 1, - anon_sym_into, - STATE(5098), 1, - aux_sym__query_body_repeat2, - STATE(5097), 9, + ACTIONS(4042), 1, + anon_sym_DOT, + ACTIONS(4044), 1, + anon_sym_DASH_GT, + ACTIONS(5257), 1, + anon_sym_LPAREN, + ACTIONS(5300), 1, + anon_sym_LBRACK, + ACTIONS(5302), 1, + anon_sym_BANG, + ACTIONS(6495), 1, + anon_sym_switch, + ACTIONS(6509), 1, + anon_sym_with, + ACTIONS(7716), 1, + anon_sym_SLASH, + ACTIONS(7732), 1, + anon_sym_DOT_DOT, + STATE(2759), 1, + sym_bracketed_argument_list, + STATE(3381), 1, + sym_argument_list, + ACTIONS(5304), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7712), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(7714), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(5739), 6, + anon_sym_LT, + anon_sym_GT, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT_GT, + STATE(5029), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -640638,25 +634435,8 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(6001), 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(5999), 25, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_STAR, - anon_sym_PERCENT, + ACTIONS(5737), 15, + anon_sym_COLON, anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT_GT, @@ -640664,9 +634444,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, anon_sym_or, anon_sym_AMP_AMP, @@ -640674,9 +634451,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_as, anon_sym_is, - anon_sym_DASH_GT, - anon_sym_with, - [140649] = 15, + [134124] = 33, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -640697,59 +634472,77 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(7858), 1, - anon_sym_into, - STATE(5100), 1, - aux_sym__query_body_repeat2, - STATE(5098), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - ACTIONS(6005), 11, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, + ACTIONS(4042), 1, + anon_sym_DOT, + ACTIONS(4044), 1, + anon_sym_DASH_GT, + ACTIONS(5257), 1, + anon_sym_LPAREN, + ACTIONS(5300), 1, + anon_sym_LBRACK, + ACTIONS(5302), 1, anon_sym_BANG, - anon_sym_PLUS, - anon_sym_DASH, + ACTIONS(6495), 1, + anon_sym_switch, + ACTIONS(6505), 1, + anon_sym_as, + ACTIONS(6509), 1, + anon_sym_with, + ACTIONS(7716), 1, anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, + ACTIONS(7726), 1, anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(6003), 25, - anon_sym_LBRACK, - anon_sym_LPAREN, + ACTIONS(7732), 1, + anon_sym_DOT_DOT, + ACTIONS(7740), 1, + anon_sym_is, + STATE(2759), 1, + sym_bracketed_argument_list, + STATE(3381), 1, + sym_argument_list, + ACTIONS(5304), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + ACTIONS(7708), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(7712), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(7714), 2, anon_sym_STAR, anon_sym_PERCENT, - anon_sym_CARET, + ACTIONS(7724), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, + ACTIONS(7730), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - anon_sym_EQ_GT, - anon_sym_switch, - anon_sym_DOT_DOT, + ACTIONS(5739), 3, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_AMP, + ACTIONS(5737), 9, + anon_sym_COLON, + 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_as, - anon_sym_is, - anon_sym_DASH_GT, - anon_sym_with, - [140737] = 15, + STATE(5030), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + [134248] = 37, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -640770,59 +634563,81 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(7858), 1, - anon_sym_into, - STATE(5101), 1, - aux_sym__query_body_repeat2, - STATE(5099), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - ACTIONS(6005), 11, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, + ACTIONS(4042), 1, + anon_sym_DOT, + ACTIONS(4044), 1, + anon_sym_DASH_GT, + ACTIONS(5257), 1, + anon_sym_LPAREN, + ACTIONS(5300), 1, + anon_sym_LBRACK, + ACTIONS(5302), 1, anon_sym_BANG, - anon_sym_PLUS, - anon_sym_DASH, + ACTIONS(5739), 1, + anon_sym_QMARK, + ACTIONS(6495), 1, + anon_sym_switch, + ACTIONS(6505), 1, + anon_sym_as, + ACTIONS(6509), 1, + anon_sym_with, + ACTIONS(7716), 1, anon_sym_SLASH, + ACTIONS(7718), 1, + anon_sym_CARET, + ACTIONS(7720), 1, anon_sym_PIPE, + ACTIONS(7722), 1, anon_sym_AMP, + ACTIONS(7726), 1, anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(6003), 25, - anon_sym_LBRACK, - anon_sym_LPAREN, + ACTIONS(7732), 1, + anon_sym_DOT_DOT, + ACTIONS(7740), 1, + anon_sym_is, + STATE(2759), 1, + sym_bracketed_argument_list, + STATE(3381), 1, + sym_argument_list, + ACTIONS(5304), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + ACTIONS(7708), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(7712), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(7714), 2, anon_sym_STAR, anon_sym_PERCENT, - anon_sym_CARET, + ACTIONS(7724), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, + ACTIONS(7728), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + ACTIONS(7730), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - anon_sym_EQ_GT, - anon_sym_switch, - anon_sym_DOT_DOT, + ACTIONS(5737), 6, + anon_sym_COLON, 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, - [140825] = 14, + STATE(5031), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + [134380] = 38, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -640843,58 +634658,82 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(7860), 1, - anon_sym_into, - STATE(5100), 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(5951), 11, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, + ACTIONS(4042), 1, + anon_sym_DOT, + ACTIONS(4044), 1, + anon_sym_DASH_GT, + ACTIONS(5257), 1, + anon_sym_LPAREN, + ACTIONS(5300), 1, + anon_sym_LBRACK, + ACTIONS(5302), 1, anon_sym_BANG, - anon_sym_PLUS, - anon_sym_DASH, + ACTIONS(5739), 1, + anon_sym_QMARK, + ACTIONS(6495), 1, + anon_sym_switch, + ACTIONS(6505), 1, + anon_sym_as, + ACTIONS(6509), 1, + anon_sym_with, + ACTIONS(7716), 1, anon_sym_SLASH, + ACTIONS(7718), 1, + anon_sym_CARET, + ACTIONS(7720), 1, anon_sym_PIPE, + ACTIONS(7722), 1, anon_sym_AMP, + ACTIONS(7726), 1, anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(5949), 25, - anon_sym_LBRACK, - anon_sym_LPAREN, + ACTIONS(7732), 1, + anon_sym_DOT_DOT, + ACTIONS(7734), 1, + anon_sym_AMP_AMP, + ACTIONS(7740), 1, + anon_sym_is, + STATE(2759), 1, + sym_bracketed_argument_list, + STATE(3381), 1, + sym_argument_list, + ACTIONS(5304), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + ACTIONS(7708), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(7712), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(7714), 2, anon_sym_STAR, anon_sym_PERCENT, - anon_sym_CARET, + ACTIONS(7724), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, + ACTIONS(7728), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + ACTIONS(7730), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - anon_sym_EQ_GT, - anon_sym_switch, - anon_sym_DOT_DOT, + ACTIONS(5737), 5, + anon_sym_COLON, 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, - [140911] = 15, + 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, + [134514] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -640912,62 +634751,87 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(17), 1, aux_sym_preproc_define_token1, ACTIONS(19), 1, - aux_sym_preproc_undef_token1, - ACTIONS(21), 1, - sym_comment, - ACTIONS(7858), 1, - anon_sym_into, - STATE(5100), 1, - aux_sym__query_body_repeat2, - STATE(5101), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - ACTIONS(5960), 11, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, + aux_sym_preproc_undef_token1, + ACTIONS(21), 1, + sym_comment, + ACTIONS(4042), 1, + anon_sym_DOT, + ACTIONS(4044), 1, + anon_sym_DASH_GT, + ACTIONS(5257), 1, + anon_sym_LPAREN, + ACTIONS(5300), 1, + anon_sym_LBRACK, + ACTIONS(5302), 1, anon_sym_BANG, - anon_sym_PLUS, - anon_sym_DASH, + ACTIONS(5739), 1, + anon_sym_QMARK, + ACTIONS(6495), 1, + anon_sym_switch, + ACTIONS(6505), 1, + anon_sym_as, + ACTIONS(6509), 1, + anon_sym_with, + ACTIONS(7716), 1, anon_sym_SLASH, + ACTIONS(7718), 1, + anon_sym_CARET, + ACTIONS(7720), 1, anon_sym_PIPE, + ACTIONS(7722), 1, anon_sym_AMP, + ACTIONS(7726), 1, anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(5958), 25, - anon_sym_LBRACK, - anon_sym_LPAREN, + ACTIONS(7732), 1, + anon_sym_DOT_DOT, + ACTIONS(7734), 1, + anon_sym_AMP_AMP, + ACTIONS(7736), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7738), 1, + anon_sym_QMARK_QMARK, + ACTIONS(7740), 1, + anon_sym_is, + STATE(2759), 1, + sym_bracketed_argument_list, + STATE(3381), 1, + sym_argument_list, + ACTIONS(5304), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + ACTIONS(7708), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(7712), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(7714), 2, anon_sym_STAR, anon_sym_PERCENT, - anon_sym_CARET, + ACTIONS(7724), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, + ACTIONS(7728), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + ACTIONS(7730), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - anon_sym_EQ_GT, - anon_sym_switch, - anon_sym_DOT_DOT, + ACTIONS(5737), 3, + anon_sym_COLON, 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, - [140999] = 27, + 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, + [134652] = 22, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -640988,45 +634852,36 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4100), 1, + ACTIONS(4042), 1, anon_sym_DOT, - ACTIONS(4102), 1, + ACTIONS(4044), 1, anon_sym_DASH_GT, - ACTIONS(5264), 1, + ACTIONS(5257), 1, anon_sym_LPAREN, - ACTIONS(5304), 1, + ACTIONS(5302), 1, anon_sym_BANG, - ACTIONS(5573), 1, + ACTIONS(5549), 1, anon_sym_LBRACK, - ACTIONS(6343), 1, - anon_sym_switch, - ACTIONS(6357), 1, - anon_sym_with, - ACTIONS(7442), 1, - anon_sym_SLASH, - ACTIONS(7458), 1, + ACTIONS(7584), 1, anon_sym_DOT_DOT, - STATE(2485), 1, + STATE(2467), 1, sym_bracketed_argument_list, - STATE(3487), 1, + STATE(3381), 1, sym_argument_list, - ACTIONS(5306), 2, + ACTIONS(5304), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7438), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(7440), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(5664), 6, + ACTIONS(5743), 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(5102), 9, + STATE(5034), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -641036,10 +634891,12 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5660), 15, + ACTIONS(5741), 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, @@ -641047,12 +634904,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_as, anon_sym_is, - [141111] = 33, + anon_sym_with, + [134754] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -641073,67 +634932,74 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4100), 1, + ACTIONS(4042), 1, anon_sym_DOT, - ACTIONS(4102), 1, + ACTIONS(4044), 1, anon_sym_DASH_GT, - ACTIONS(5264), 1, + ACTIONS(5257), 1, anon_sym_LPAREN, - ACTIONS(5304), 1, - anon_sym_BANG, - ACTIONS(5573), 1, + ACTIONS(5300), 1, anon_sym_LBRACK, - ACTIONS(6343), 1, + ACTIONS(5302), 1, + anon_sym_BANG, + ACTIONS(6495), 1, anon_sym_switch, - ACTIONS(6357), 1, - anon_sym_with, - ACTIONS(6813), 1, + ACTIONS(6505), 1, anon_sym_as, - ACTIONS(7169), 1, - anon_sym_is, - ACTIONS(7442), 1, + ACTIONS(6509), 1, + anon_sym_with, + ACTIONS(7710), 1, + anon_sym_QMARK, + ACTIONS(7716), 1, anon_sym_SLASH, - ACTIONS(7452), 1, + ACTIONS(7718), 1, + anon_sym_CARET, + ACTIONS(7720), 1, + anon_sym_PIPE, + ACTIONS(7722), 1, + anon_sym_AMP, + ACTIONS(7726), 1, anon_sym_GT_GT, - ACTIONS(7458), 1, + ACTIONS(7732), 1, anon_sym_DOT_DOT, - STATE(2485), 1, + ACTIONS(7734), 1, + anon_sym_AMP_AMP, + ACTIONS(7736), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7738), 1, + anon_sym_QMARK_QMARK, + ACTIONS(7740), 1, + anon_sym_is, + STATE(2759), 1, sym_bracketed_argument_list, - STATE(3487), 1, + STATE(3381), 1, sym_argument_list, - ACTIONS(5306), 2, + ACTIONS(5304), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7436), 2, + ACTIONS(7708), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7438), 2, + ACTIONS(7712), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7440), 2, + ACTIONS(7714), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7450), 2, + ACTIONS(7724), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7456), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(5664), 3, - anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_AMP, - ACTIONS(5660), 9, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_CARET, + ACTIONS(7728), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_QMARK_QMARK, - STATE(5103), 9, + ACTIONS(7730), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(5709), 3, + anon_sym_COLON, + anon_sym_and, + anon_sym_or, + STATE(5035), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -641143,7 +635009,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [141235] = 40, + [134892] = 41, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -641164,74 +635030,75 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4100), 1, + ACTIONS(4042), 1, anon_sym_DOT, - ACTIONS(4102), 1, + ACTIONS(4044), 1, anon_sym_DASH_GT, - ACTIONS(5264), 1, + ACTIONS(5257), 1, anon_sym_LPAREN, - ACTIONS(5304), 1, + ACTIONS(5302), 1, anon_sym_BANG, - ACTIONS(5573), 1, + ACTIONS(5549), 1, anon_sym_LBRACK, - ACTIONS(6343), 1, + ACTIONS(6355), 1, anon_sym_switch, - ACTIONS(6357), 1, + ACTIONS(6369), 1, anon_sym_with, - ACTIONS(6783), 1, - anon_sym_QMARK, - ACTIONS(6789), 1, + ACTIONS(7179), 1, anon_sym_SLASH, - ACTIONS(6791), 1, - anon_sym_CARET, - ACTIONS(6793), 1, - anon_sym_PIPE, - ACTIONS(6795), 1, - anon_sym_AMP, - ACTIONS(6799), 1, + ACTIONS(7183), 1, anon_sym_GT_GT, - ACTIONS(6805), 1, + ACTIONS(7185), 1, anon_sym_DOT_DOT, - ACTIONS(6807), 1, + ACTIONS(7189), 1, + anon_sym_AMP, + ACTIONS(7195), 1, + anon_sym_as, + ACTIONS(7197), 1, + anon_sym_is, + ACTIONS(7199), 1, + anon_sym_CARET, + ACTIONS(7201), 1, + anon_sym_PIPE, + ACTIONS(7203), 1, anon_sym_AMP_AMP, - ACTIONS(6809), 1, + ACTIONS(7205), 1, anon_sym_PIPE_PIPE, - ACTIONS(6811), 1, + ACTIONS(7207), 1, anon_sym_QMARK_QMARK, - ACTIONS(6813), 1, - anon_sym_as, - ACTIONS(6815), 1, - anon_sym_is, - STATE(2485), 1, + ACTIONS(7209), 1, + anon_sym_QMARK, + ACTIONS(7536), 1, + anon_sym_COMMA, + STATE(2467), 1, sym_bracketed_argument_list, - STATE(3487), 1, + STATE(3381), 1, sym_argument_list, - ACTIONS(5306), 2, + ACTIONS(5304), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6781), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(6785), 2, + ACTIONS(5801), 2, + anon_sym_COLON, + anon_sym_RPAREN, + ACTIONS(7175), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6787), 2, + ACTIONS(7177), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(6797), 2, + ACTIONS(7181), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(6801), 2, + ACTIONS(7187), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(7191), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6803), 2, + ACTIONS(7193), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5882), 3, - aux_sym_preproc_if_token3, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - STATE(5104), 9, + STATE(5036), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -641241,7 +635108,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [141373] = 40, + [135032] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -641262,74 +635129,74 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4100), 1, + ACTIONS(4042), 1, anon_sym_DOT, - ACTIONS(4102), 1, + ACTIONS(4044), 1, anon_sym_DASH_GT, - ACTIONS(5264), 1, + ACTIONS(5257), 1, anon_sym_LPAREN, - ACTIONS(5304), 1, + ACTIONS(5302), 1, anon_sym_BANG, - ACTIONS(5573), 1, + ACTIONS(5549), 1, anon_sym_LBRACK, - ACTIONS(6343), 1, + ACTIONS(6355), 1, anon_sym_switch, - ACTIONS(6357), 1, + ACTIONS(6369), 1, anon_sym_with, - ACTIONS(6813), 1, - anon_sym_as, - ACTIONS(7139), 1, + ACTIONS(6781), 1, anon_sym_QMARK, - ACTIONS(7145), 1, + ACTIONS(6787), 1, anon_sym_SLASH, - ACTIONS(7147), 1, + ACTIONS(6789), 1, anon_sym_CARET, - ACTIONS(7149), 1, + ACTIONS(6791), 1, anon_sym_PIPE, - ACTIONS(7151), 1, + ACTIONS(6793), 1, anon_sym_AMP, - ACTIONS(7155), 1, + ACTIONS(6797), 1, anon_sym_GT_GT, - ACTIONS(7161), 1, + ACTIONS(6803), 1, anon_sym_DOT_DOT, - ACTIONS(7163), 1, + ACTIONS(6805), 1, anon_sym_AMP_AMP, - ACTIONS(7165), 1, + ACTIONS(6807), 1, anon_sym_PIPE_PIPE, - ACTIONS(7167), 1, + ACTIONS(6809), 1, anon_sym_QMARK_QMARK, - ACTIONS(7169), 1, + ACTIONS(6811), 1, + anon_sym_as, + ACTIONS(6813), 1, anon_sym_is, - STATE(2485), 1, + STATE(2467), 1, sym_bracketed_argument_list, - STATE(3487), 1, + STATE(3381), 1, sym_argument_list, - ACTIONS(5306), 2, + ACTIONS(5304), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7137), 2, + ACTIONS(6779), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7141), 2, + ACTIONS(6783), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7143), 2, + ACTIONS(6785), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7153), 2, + ACTIONS(6795), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7157), 2, + ACTIONS(6799), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7159), 2, + ACTIONS(6801), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(7863), 3, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_RPAREN, - STATE(5105), 9, + ACTIONS(5709), 3, + aux_sym_preproc_if_token3, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + STATE(5037), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -641339,7 +635206,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [141511] = 40, + [135170] = 22, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -641360,84 +635227,66 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4100), 1, + ACTIONS(4042), 1, anon_sym_DOT, - ACTIONS(4102), 1, + ACTIONS(4044), 1, anon_sym_DASH_GT, - ACTIONS(5264), 1, + ACTIONS(5257), 1, anon_sym_LPAREN, - ACTIONS(5302), 1, + ACTIONS(5300), 1, anon_sym_LBRACK, - ACTIONS(5304), 1, + ACTIONS(5302), 1, anon_sym_BANG, - ACTIONS(6475), 1, - anon_sym_switch, - ACTIONS(6489), 1, - anon_sym_with, - ACTIONS(7462), 1, - anon_sym_QMARK, - ACTIONS(7468), 1, - anon_sym_SLASH, - ACTIONS(7470), 1, - anon_sym_CARET, - ACTIONS(7472), 1, - anon_sym_PIPE, - ACTIONS(7474), 1, - anon_sym_AMP, - ACTIONS(7478), 1, - anon_sym_GT_GT, - ACTIONS(7484), 1, + ACTIONS(7732), 1, anon_sym_DOT_DOT, - ACTIONS(7486), 1, - anon_sym_AMP_AMP, - ACTIONS(7488), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7490), 1, - anon_sym_QMARK_QMARK, - ACTIONS(7492), 1, - anon_sym_as, - ACTIONS(7494), 1, - anon_sym_is, - STATE(2808), 1, + STATE(2759), 1, sym_bracketed_argument_list, - STATE(3487), 1, + STATE(3381), 1, sym_argument_list, - ACTIONS(5306), 2, + ACTIONS(5304), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7460), 2, + ACTIONS(5743), 9, anon_sym_LT, anon_sym_GT, - ACTIONS(7464), 2, + anon_sym_QMARK, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7466), 2, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT_GT, + STATE(5038), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + ACTIONS(5741), 19, + anon_sym_COLON, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7476), 2, + anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7480), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7482), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5858), 3, + anon_sym_switch, anon_sym_and, anon_sym_or, - anon_sym_on, - STATE(5106), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - [141649] = 27, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, + anon_sym_as, + anon_sym_is, + anon_sym_with, + [135272] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -641458,38 +635307,74 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(3881), 1, - anon_sym_LBRACE, - ACTIONS(3897), 1, - sym_discard, - ACTIONS(6823), 1, - sym__identifier_token, - ACTIONS(6827), 1, + ACTIONS(4042), 1, + anon_sym_DOT, + ACTIONS(4044), 1, + anon_sym_DASH_GT, + ACTIONS(5257), 1, anon_sym_LPAREN, - ACTIONS(7588), 1, - anon_sym_COMMA, - ACTIONS(7865), 1, - anon_sym_RPAREN, - STATE(2571), 1, - sym__reserved_identifier, - STATE(3463), 1, - sym_parenthesized_variable_designation, - STATE(3492), 1, - sym__variable_designation, - STATE(5279), 1, - sym_positional_pattern_clause, - STATE(5682), 1, - sym_property_pattern_clause, - STATE(6412), 1, - sym_identifier, - STATE(7311), 1, - sym_parameter_list, - STATE(7536), 1, - sym__lambda_parameters, - ACTIONS(3883), 2, + ACTIONS(5300), 1, + anon_sym_LBRACK, + ACTIONS(5302), 1, + anon_sym_BANG, + ACTIONS(6495), 1, + anon_sym_switch, + ACTIONS(6505), 1, + anon_sym_as, + ACTIONS(6509), 1, + anon_sym_with, + ACTIONS(7710), 1, + anon_sym_QMARK, + ACTIONS(7716), 1, + anon_sym_SLASH, + ACTIONS(7718), 1, + anon_sym_CARET, + ACTIONS(7720), 1, + anon_sym_PIPE, + ACTIONS(7722), 1, + anon_sym_AMP, + ACTIONS(7726), 1, + anon_sym_GT_GT, + ACTIONS(7732), 1, + anon_sym_DOT_DOT, + ACTIONS(7734), 1, + anon_sym_AMP_AMP, + ACTIONS(7736), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7738), 1, + anon_sym_QMARK_QMARK, + ACTIONS(7740), 1, + anon_sym_is, + STATE(2759), 1, + sym_bracketed_argument_list, + STATE(3381), 1, + sym_argument_list, + ACTIONS(5304), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7708), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(7712), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(7714), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(7724), 2, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + ACTIONS(7728), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(7730), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(5849), 3, + anon_sym_COLON, anon_sym_and, anon_sym_or, - STATE(5107), 9, + STATE(5039), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -641499,30 +635384,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(6825), 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, - [141761] = 15, + [135410] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -641543,59 +635405,84 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(7434), 1, - anon_sym_into, - STATE(4844), 1, - aux_sym__query_body_repeat2, - STATE(5108), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - ACTIONS(6001), 12, - anon_sym_LT, - anon_sym_GT, - anon_sym_in, - anon_sym_QMARK, + ACTIONS(4042), 1, + anon_sym_DOT, + ACTIONS(4044), 1, + anon_sym_DASH_GT, + ACTIONS(5257), 1, + anon_sym_LPAREN, + ACTIONS(5300), 1, + anon_sym_LBRACK, + ACTIONS(5302), 1, anon_sym_BANG, - anon_sym_PLUS, - anon_sym_DASH, + ACTIONS(6495), 1, + anon_sym_switch, + ACTIONS(6505), 1, + anon_sym_as, + ACTIONS(6509), 1, + anon_sym_with, + ACTIONS(7710), 1, + anon_sym_QMARK, + ACTIONS(7716), 1, anon_sym_SLASH, + ACTIONS(7718), 1, + anon_sym_CARET, + ACTIONS(7720), 1, anon_sym_PIPE, + ACTIONS(7722), 1, anon_sym_AMP, + ACTIONS(7726), 1, anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(5999), 24, - anon_sym_LBRACK, - anon_sym_LPAREN, + ACTIONS(7732), 1, + anon_sym_DOT_DOT, + ACTIONS(7734), 1, + anon_sym_AMP_AMP, + ACTIONS(7736), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7738), 1, + anon_sym_QMARK_QMARK, + ACTIONS(7740), 1, + anon_sym_is, + STATE(2759), 1, + sym_bracketed_argument_list, + STATE(3381), 1, + sym_argument_list, + ACTIONS(5304), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + ACTIONS(7708), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(7712), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(7714), 2, anon_sym_STAR, anon_sym_PERCENT, - anon_sym_CARET, + ACTIONS(7724), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, + ACTIONS(7728), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + ACTIONS(7730), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - anon_sym_switch, - anon_sym_DOT_DOT, + ACTIONS(4996), 3, + anon_sym_COLON, 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, - [141849] = 22, + STATE(5040), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + [135548] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -641616,66 +635503,84 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4100), 1, + ACTIONS(4042), 1, anon_sym_DOT, - ACTIONS(4102), 1, + ACTIONS(4044), 1, anon_sym_DASH_GT, - ACTIONS(5264), 1, + ACTIONS(5257), 1, anon_sym_LPAREN, - ACTIONS(5302), 1, + ACTIONS(5300), 1, anon_sym_LBRACK, - ACTIONS(5304), 1, + ACTIONS(5302), 1, anon_sym_BANG, - ACTIONS(7484), 1, + ACTIONS(6495), 1, + anon_sym_switch, + ACTIONS(6505), 1, + anon_sym_as, + ACTIONS(6509), 1, + anon_sym_with, + ACTIONS(7710), 1, + anon_sym_QMARK, + ACTIONS(7716), 1, + anon_sym_SLASH, + ACTIONS(7718), 1, + anon_sym_CARET, + ACTIONS(7720), 1, + anon_sym_PIPE, + ACTIONS(7722), 1, + anon_sym_AMP, + ACTIONS(7726), 1, + anon_sym_GT_GT, + ACTIONS(7732), 1, anon_sym_DOT_DOT, - STATE(2808), 1, + ACTIONS(7734), 1, + anon_sym_AMP_AMP, + ACTIONS(7736), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7738), 1, + anon_sym_QMARK_QMARK, + ACTIONS(7740), 1, + anon_sym_is, + STATE(2759), 1, sym_bracketed_argument_list, - STATE(3487), 1, + STATE(3381), 1, sym_argument_list, - ACTIONS(5306), 2, + ACTIONS(5304), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5733), 9, + ACTIONS(7708), 2, anon_sym_LT, anon_sym_GT, - anon_sym_QMARK, + ACTIONS(7712), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT_GT, - STATE(5109), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - ACTIONS(5731), 19, + ACTIONS(7714), 2, anon_sym_STAR, anon_sym_PERCENT, - anon_sym_CARET, + ACTIONS(7724), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, + ACTIONS(7728), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + ACTIONS(7730), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - anon_sym_switch, + ACTIONS(5652), 3, + anon_sym_COLON, 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, - [141951] = 15, + STATE(5041), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + [135686] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -641696,59 +635601,84 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(7434), 1, - anon_sym_into, - STATE(5113), 1, - aux_sym__query_body_repeat2, - STATE(5110), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - ACTIONS(6005), 12, - anon_sym_LT, - anon_sym_GT, - anon_sym_in, - anon_sym_QMARK, + ACTIONS(4042), 1, + anon_sym_DOT, + ACTIONS(4044), 1, + anon_sym_DASH_GT, + ACTIONS(5257), 1, + anon_sym_LPAREN, + ACTIONS(5302), 1, anon_sym_BANG, - anon_sym_PLUS, - anon_sym_DASH, + ACTIONS(5549), 1, + anon_sym_LBRACK, + ACTIONS(6355), 1, + anon_sym_switch, + ACTIONS(6369), 1, + anon_sym_with, + ACTIONS(6781), 1, + anon_sym_QMARK, + ACTIONS(6787), 1, anon_sym_SLASH, + ACTIONS(6789), 1, + anon_sym_CARET, + ACTIONS(6791), 1, anon_sym_PIPE, + ACTIONS(6793), 1, anon_sym_AMP, + ACTIONS(6797), 1, anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(6003), 24, - anon_sym_LBRACK, - anon_sym_LPAREN, + ACTIONS(6803), 1, + anon_sym_DOT_DOT, + ACTIONS(6805), 1, + anon_sym_AMP_AMP, + ACTIONS(6807), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6809), 1, + anon_sym_QMARK_QMARK, + ACTIONS(6811), 1, + anon_sym_as, + ACTIONS(6813), 1, + anon_sym_is, + STATE(2467), 1, + sym_bracketed_argument_list, + STATE(3381), 1, + sym_argument_list, + ACTIONS(5304), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + ACTIONS(6779), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(6783), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6785), 2, anon_sym_STAR, anon_sym_PERCENT, - anon_sym_CARET, + ACTIONS(6795), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, + ACTIONS(6799), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + ACTIONS(6801), 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, - [142039] = 40, + ACTIONS(5801), 3, + aux_sym_preproc_if_token3, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + STATE(5042), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + [135824] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -641769,74 +635699,74 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4100), 1, + ACTIONS(4042), 1, anon_sym_DOT, - ACTIONS(4102), 1, + ACTIONS(4044), 1, anon_sym_DASH_GT, - ACTIONS(5264), 1, + ACTIONS(5257), 1, anon_sym_LPAREN, - ACTIONS(5302), 1, + ACTIONS(5300), 1, anon_sym_LBRACK, - ACTIONS(5304), 1, + ACTIONS(5302), 1, anon_sym_BANG, - ACTIONS(6475), 1, + ACTIONS(6495), 1, anon_sym_switch, - ACTIONS(6489), 1, + ACTIONS(6505), 1, + anon_sym_as, + ACTIONS(6509), 1, anon_sym_with, - ACTIONS(7462), 1, + ACTIONS(7710), 1, anon_sym_QMARK, - ACTIONS(7468), 1, + ACTIONS(7716), 1, anon_sym_SLASH, - ACTIONS(7470), 1, + ACTIONS(7718), 1, anon_sym_CARET, - ACTIONS(7472), 1, + ACTIONS(7720), 1, anon_sym_PIPE, - ACTIONS(7474), 1, + ACTIONS(7722), 1, anon_sym_AMP, - ACTIONS(7478), 1, + ACTIONS(7726), 1, anon_sym_GT_GT, - ACTIONS(7484), 1, + ACTIONS(7732), 1, anon_sym_DOT_DOT, - ACTIONS(7486), 1, + ACTIONS(7734), 1, anon_sym_AMP_AMP, - ACTIONS(7488), 1, + ACTIONS(7736), 1, anon_sym_PIPE_PIPE, - ACTIONS(7490), 1, + ACTIONS(7738), 1, anon_sym_QMARK_QMARK, - ACTIONS(7492), 1, - anon_sym_as, - ACTIONS(7494), 1, + ACTIONS(7740), 1, anon_sym_is, - STATE(2808), 1, + STATE(2759), 1, sym_bracketed_argument_list, - STATE(3487), 1, + STATE(3381), 1, sym_argument_list, - ACTIONS(5306), 2, + ACTIONS(5304), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7460), 2, + ACTIONS(7708), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7464), 2, + ACTIONS(7712), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7466), 2, + ACTIONS(7714), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7476), 2, + ACTIONS(7724), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7480), 2, + ACTIONS(7728), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7482), 2, + ACTIONS(7730), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5864), 3, + ACTIONS(5801), 3, + anon_sym_COLON, anon_sym_and, anon_sym_or, - anon_sym_on, - STATE(5111), 9, + STATE(5043), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -641846,7 +635776,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [142177] = 14, + [135962] = 37, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -641867,58 +635797,81 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(7867), 1, - anon_sym_into, - STATE(5112), 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(5951), 12, - anon_sym_LT, - anon_sym_GT, - anon_sym_in, - anon_sym_QMARK, + ACTIONS(4042), 1, + anon_sym_DOT, + ACTIONS(4044), 1, + anon_sym_DASH_GT, + ACTIONS(5257), 1, + anon_sym_LPAREN, + ACTIONS(5302), 1, anon_sym_BANG, - anon_sym_PLUS, - anon_sym_DASH, + ACTIONS(5549), 1, + anon_sym_LBRACK, + ACTIONS(5739), 1, + anon_sym_QMARK, + ACTIONS(6355), 1, + anon_sym_switch, + ACTIONS(6369), 1, + anon_sym_with, + ACTIONS(6811), 1, + anon_sym_as, + ACTIONS(7261), 1, + anon_sym_is, + ACTIONS(7568), 1, anon_sym_SLASH, + ACTIONS(7570), 1, + anon_sym_CARET, + ACTIONS(7572), 1, anon_sym_PIPE, + ACTIONS(7574), 1, anon_sym_AMP, + ACTIONS(7578), 1, anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(5949), 24, - anon_sym_LBRACK, - anon_sym_LPAREN, + ACTIONS(7584), 1, + anon_sym_DOT_DOT, + STATE(2467), 1, + sym_bracketed_argument_list, + STATE(3381), 1, + sym_argument_list, + ACTIONS(5304), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + ACTIONS(7560), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(7564), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(7566), 2, anon_sym_STAR, anon_sym_PERCENT, - anon_sym_CARET, + ACTIONS(7576), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, + ACTIONS(7580), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + ACTIONS(7582), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - anon_sym_switch, - anon_sym_DOT_DOT, - anon_sym_and, - anon_sym_or, + ACTIONS(5737), 6, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RBRACE, 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, - [142263] = 15, + STATE(5044), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + [136094] = 27, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -641939,11 +635892,38 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(7434), 1, - anon_sym_into, - STATE(5112), 1, - aux_sym__query_body_repeat2, - STATE(5113), 9, + ACTIONS(3861), 1, + anon_sym_LBRACE, + ACTIONS(3877), 1, + sym_discard, + ACTIONS(6969), 1, + sym__identifier_token, + ACTIONS(6973), 1, + anon_sym_LPAREN, + ACTIONS(7478), 1, + anon_sym_COMMA, + ACTIONS(7793), 1, + anon_sym_RPAREN, + STATE(2565), 1, + sym__reserved_identifier, + STATE(3352), 1, + sym_parenthesized_variable_designation, + STATE(3422), 1, + sym__variable_designation, + STATE(5154), 1, + sym_positional_pattern_clause, + STATE(5691), 1, + sym_property_pattern_clause, + STATE(6424), 1, + sym_identifier, + STATE(7378), 1, + sym__lambda_parameters, + STATE(7531), 1, + sym_parameter_list, + ACTIONS(3867), 2, + anon_sym_and, + anon_sym_or, + STATE(5045), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -641953,45 +635933,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5960), 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(5958), 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_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, - [142351] = 40, + ACTIONS(6971), 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, + [136206] = 38, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -642012,74 +635977,72 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4100), 1, + ACTIONS(4042), 1, anon_sym_DOT, - ACTIONS(4102), 1, + ACTIONS(4044), 1, anon_sym_DASH_GT, - ACTIONS(5264), 1, + ACTIONS(5257), 1, anon_sym_LPAREN, ACTIONS(5302), 1, - anon_sym_LBRACK, - ACTIONS(5304), 1, anon_sym_BANG, - ACTIONS(6475), 1, + ACTIONS(5549), 1, + anon_sym_LBRACK, + ACTIONS(5739), 1, + anon_sym_QMARK, + ACTIONS(6355), 1, anon_sym_switch, - ACTIONS(6489), 1, + ACTIONS(6369), 1, anon_sym_with, - ACTIONS(7496), 1, - anon_sym_DOT_DOT, - ACTIONS(7500), 1, - anon_sym_QMARK, - ACTIONS(7506), 1, + ACTIONS(6811), 1, + anon_sym_as, + ACTIONS(7261), 1, + anon_sym_is, + ACTIONS(7568), 1, anon_sym_SLASH, - ACTIONS(7508), 1, + ACTIONS(7570), 1, anon_sym_CARET, - ACTIONS(7510), 1, + ACTIONS(7572), 1, anon_sym_PIPE, - ACTIONS(7512), 1, + ACTIONS(7574), 1, anon_sym_AMP, - ACTIONS(7516), 1, + ACTIONS(7578), 1, anon_sym_GT_GT, - ACTIONS(7522), 1, + ACTIONS(7584), 1, + anon_sym_DOT_DOT, + ACTIONS(7586), 1, anon_sym_AMP_AMP, - ACTIONS(7524), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7526), 1, - anon_sym_QMARK_QMARK, - ACTIONS(7528), 1, - anon_sym_as, - ACTIONS(7530), 1, - anon_sym_is, - STATE(2808), 1, + STATE(2467), 1, sym_bracketed_argument_list, - STATE(3487), 1, + STATE(3381), 1, sym_argument_list, - ACTIONS(5306), 2, + ACTIONS(5304), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7498), 2, + ACTIONS(7560), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7502), 2, + ACTIONS(7564), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7504), 2, + ACTIONS(7566), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7514), 2, + ACTIONS(7576), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7518), 2, + ACTIONS(7580), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7520), 2, + ACTIONS(7582), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5858), 3, - anon_sym_in, - anon_sym_and, - anon_sym_or, - STATE(5114), 9, + ACTIONS(5737), 5, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, + STATE(5046), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -642089,7 +636052,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [142489] = 40, + [136340] = 42, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -642110,74 +636073,76 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4100), 1, + ACTIONS(2695), 1, + anon_sym_COMMA, + ACTIONS(4042), 1, anon_sym_DOT, - ACTIONS(4102), 1, + ACTIONS(4044), 1, anon_sym_DASH_GT, - ACTIONS(5264), 1, + ACTIONS(5257), 1, anon_sym_LPAREN, ACTIONS(5302), 1, - anon_sym_LBRACK, - ACTIONS(5304), 1, anon_sym_BANG, - ACTIONS(6475), 1, + ACTIONS(5549), 1, + anon_sym_LBRACK, + ACTIONS(6355), 1, anon_sym_switch, - ACTIONS(6489), 1, + ACTIONS(6369), 1, anon_sym_with, - ACTIONS(7462), 1, + ACTIONS(6811), 1, + anon_sym_as, + ACTIONS(7231), 1, anon_sym_QMARK, - ACTIONS(7468), 1, + ACTIONS(7237), 1, anon_sym_SLASH, - ACTIONS(7470), 1, + ACTIONS(7239), 1, anon_sym_CARET, - ACTIONS(7472), 1, + ACTIONS(7241), 1, anon_sym_PIPE, - ACTIONS(7474), 1, + ACTIONS(7243), 1, anon_sym_AMP, - ACTIONS(7478), 1, + ACTIONS(7247), 1, anon_sym_GT_GT, - ACTIONS(7484), 1, + ACTIONS(7253), 1, anon_sym_DOT_DOT, - ACTIONS(7486), 1, + ACTIONS(7255), 1, anon_sym_AMP_AMP, - ACTIONS(7488), 1, + ACTIONS(7257), 1, anon_sym_PIPE_PIPE, - ACTIONS(7490), 1, + ACTIONS(7259), 1, anon_sym_QMARK_QMARK, - ACTIONS(7492), 1, - anon_sym_as, - ACTIONS(7494), 1, + ACTIONS(7261), 1, anon_sym_is, - STATE(2808), 1, + ACTIONS(7795), 1, + anon_sym_RBRACK, + STATE(2467), 1, sym_bracketed_argument_list, - STATE(3487), 1, + STATE(3381), 1, sym_argument_list, - ACTIONS(5306), 2, + STATE(6972), 1, + aux_sym_array_rank_specifier_repeat1, + ACTIONS(5304), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7460), 2, + ACTIONS(7229), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7464), 2, + ACTIONS(7233), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7466), 2, + ACTIONS(7235), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7476), 2, + ACTIONS(7245), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7480), 2, + ACTIONS(7249), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7482), 2, + ACTIONS(7251), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5072), 3, - anon_sym_and, - anon_sym_or, - anon_sym_on, - STATE(5115), 9, + STATE(5047), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -642187,7 +636152,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [142627] = 22, + [136482] = 27, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -642208,36 +636173,38 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4100), 1, - anon_sym_DOT, - ACTIONS(4102), 1, - anon_sym_DASH_GT, - ACTIONS(5264), 1, + ACTIONS(3861), 1, + anon_sym_LBRACE, + ACTIONS(3877), 1, + sym_discard, + ACTIONS(6969), 1, + sym__identifier_token, + ACTIONS(6973), 1, anon_sym_LPAREN, - ACTIONS(5304), 1, - anon_sym_BANG, - ACTIONS(5573), 1, - anon_sym_LBRACK, - ACTIONS(7458), 1, - anon_sym_DOT_DOT, - STATE(2485), 1, - sym_bracketed_argument_list, - STATE(3487), 1, - sym_argument_list, - ACTIONS(5306), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5733), 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(5116), 9, + ACTIONS(7478), 1, + anon_sym_COMMA, + ACTIONS(7797), 1, + anon_sym_RPAREN, + STATE(2565), 1, + sym__reserved_identifier, + STATE(3352), 1, + sym_parenthesized_variable_designation, + STATE(3422), 1, + sym__variable_designation, + STATE(5154), 1, + sym_positional_pattern_clause, + STATE(5691), 1, + sym_property_pattern_clause, + STATE(6424), 1, + sym_identifier, + STATE(7378), 1, + sym__lambda_parameters, + STATE(7531), 1, + sym_parameter_list, + ACTIONS(3867), 2, + anon_sym_and, + anon_sym_or, + STATE(5048), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -642247,27 +636214,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5731), 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, - [142729] = 15, + ACTIONS(6971), 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, + [136594] = 27, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -642288,11 +636258,38 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(7677), 1, + ACTIONS(3861), 1, + anon_sym_LBRACE, + ACTIONS(3877), 1, + sym_discard, + ACTIONS(6969), 1, + sym__identifier_token, + ACTIONS(6973), 1, + anon_sym_LPAREN, + ACTIONS(7478), 1, + anon_sym_COMMA, + ACTIONS(7799), 1, + anon_sym_RPAREN, + STATE(2565), 1, + sym__reserved_identifier, + STATE(3352), 1, + sym_parenthesized_variable_designation, + STATE(3422), 1, + sym__variable_designation, + STATE(5154), 1, + sym_positional_pattern_clause, + STATE(5691), 1, + sym_property_pattern_clause, + STATE(6424), 1, + sym_identifier, + STATE(7378), 1, + sym__lambda_parameters, + STATE(7531), 1, + sym_parameter_list, + ACTIONS(3867), 2, anon_sym_and, - ACTIONS(7781), 1, anon_sym_or, - STATE(5117), 9, + STATE(5049), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -642302,45 +636299,128 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5356), 11, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, + ACTIONS(6971), 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, + [136706] = 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(4042), 1, + anon_sym_DOT, + ACTIONS(4044), 1, + anon_sym_DASH_GT, + ACTIONS(5257), 1, + anon_sym_LPAREN, + ACTIONS(5302), 1, anon_sym_BANG, - anon_sym_PLUS, - anon_sym_DASH, + ACTIONS(5549), 1, + anon_sym_LBRACK, + ACTIONS(5739), 1, + anon_sym_QMARK, + ACTIONS(6355), 1, + anon_sym_switch, + ACTIONS(6369), 1, + anon_sym_with, + ACTIONS(6811), 1, + anon_sym_as, + ACTIONS(7261), 1, + anon_sym_is, + ACTIONS(7568), 1, anon_sym_SLASH, + ACTIONS(7570), 1, + anon_sym_CARET, + ACTIONS(7572), 1, anon_sym_PIPE, + ACTIONS(7574), 1, anon_sym_AMP, + ACTIONS(7578), 1, anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(5354), 25, - sym_interpolation_close_brace, - anon_sym_LBRACK, - anon_sym_COLON, - anon_sym_COMMA, - anon_sym_LPAREN, + ACTIONS(7584), 1, + anon_sym_DOT_DOT, + ACTIONS(7586), 1, + anon_sym_AMP_AMP, + ACTIONS(7588), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7590), 1, + anon_sym_QMARK_QMARK, + STATE(2467), 1, + sym_bracketed_argument_list, + STATE(3381), 1, + sym_argument_list, + ACTIONS(5304), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + ACTIONS(7560), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(7564), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(7566), 2, anon_sym_STAR, anon_sym_PERCENT, - anon_sym_CARET, + ACTIONS(7576), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, + ACTIONS(7580), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + ACTIONS(7582), 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, - [142817] = 38, + ACTIONS(5737), 3, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RBRACE, + STATE(5050), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + [136844] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -642361,71 +636441,74 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4755), 1, + ACTIONS(4042), 1, + anon_sym_DOT, + ACTIONS(4044), 1, anon_sym_DASH_GT, - ACTIONS(4804), 1, + ACTIONS(5257), 1, anon_sym_LPAREN, - ACTIONS(4808), 1, - anon_sym_DOT, - ACTIONS(4835), 1, - anon_sym_LBRACK, - ACTIONS(4839), 1, + ACTIONS(5302), 1, anon_sym_BANG, - ACTIONS(5664), 1, - anon_sym_QMARK, - ACTIONS(6293), 1, + ACTIONS(5549), 1, + anon_sym_LBRACK, + ACTIONS(6355), 1, anon_sym_switch, - ACTIONS(6307), 1, + ACTIONS(6369), 1, anon_sym_with, - ACTIONS(7876), 1, + ACTIONS(6811), 1, + anon_sym_as, + ACTIONS(7261), 1, + anon_sym_is, + ACTIONS(7562), 1, + anon_sym_QMARK, + ACTIONS(7568), 1, anon_sym_SLASH, - ACTIONS(7878), 1, + ACTIONS(7570), 1, anon_sym_CARET, - ACTIONS(7880), 1, + ACTIONS(7572), 1, anon_sym_PIPE, - ACTIONS(7882), 1, + ACTIONS(7574), 1, anon_sym_AMP, - ACTIONS(7886), 1, + ACTIONS(7578), 1, anon_sym_GT_GT, - ACTIONS(7892), 1, + ACTIONS(7584), 1, anon_sym_DOT_DOT, - ACTIONS(7894), 1, + ACTIONS(7586), 1, anon_sym_AMP_AMP, - ACTIONS(7896), 1, - anon_sym_as, - ACTIONS(7898), 1, - anon_sym_is, - STATE(2433), 1, + ACTIONS(7588), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7590), 1, + anon_sym_QMARK_QMARK, + STATE(2467), 1, sym_bracketed_argument_list, - STATE(3035), 1, + STATE(3381), 1, sym_argument_list, - ACTIONS(4841), 2, + ACTIONS(5304), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7870), 2, + ACTIONS(7560), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7872), 2, + ACTIONS(7564), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7874), 2, + ACTIONS(7566), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7884), 2, + ACTIONS(7576), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7888), 2, + ACTIONS(7580), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7890), 2, + ACTIONS(7582), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5660), 4, - anon_sym_PIPE_PIPE, - anon_sym_QMARK_QMARK, - anon_sym_into, - anon_sym_equals, - STATE(5118), 9, + ACTIONS(4996), 3, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RBRACE, + STATE(5051), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -642435,7 +636518,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [142950] = 40, + [136982] = 42, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -642456,73 +636539,76 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4100), 1, + ACTIONS(4042), 1, anon_sym_DOT, - ACTIONS(4102), 1, + ACTIONS(4044), 1, anon_sym_DASH_GT, - ACTIONS(5264), 1, + ACTIONS(5257), 1, anon_sym_LPAREN, - ACTIONS(5304), 1, + ACTIONS(5302), 1, anon_sym_BANG, - ACTIONS(5573), 1, + ACTIONS(5549), 1, anon_sym_LBRACK, - ACTIONS(6343), 1, + ACTIONS(6355), 1, anon_sym_switch, - ACTIONS(6357), 1, + ACTIONS(6369), 1, anon_sym_with, - ACTIONS(6813), 1, + ACTIONS(6811), 1, anon_sym_as, - ACTIONS(7139), 1, + ACTIONS(7231), 1, anon_sym_QMARK, - ACTIONS(7145), 1, + ACTIONS(7237), 1, anon_sym_SLASH, - ACTIONS(7147), 1, + ACTIONS(7239), 1, anon_sym_CARET, - ACTIONS(7149), 1, + ACTIONS(7241), 1, anon_sym_PIPE, - ACTIONS(7151), 1, + ACTIONS(7243), 1, anon_sym_AMP, - ACTIONS(7155), 1, + ACTIONS(7247), 1, anon_sym_GT_GT, - ACTIONS(7161), 1, + ACTIONS(7253), 1, anon_sym_DOT_DOT, - ACTIONS(7163), 1, + ACTIONS(7255), 1, anon_sym_AMP_AMP, - ACTIONS(7165), 1, + ACTIONS(7257), 1, anon_sym_PIPE_PIPE, - ACTIONS(7167), 1, + ACTIONS(7259), 1, anon_sym_QMARK_QMARK, - ACTIONS(7169), 1, + ACTIONS(7261), 1, anon_sym_is, - STATE(2485), 1, + ACTIONS(7622), 1, + anon_sym_COMMA, + ACTIONS(7801), 1, + anon_sym_RPAREN, + STATE(2467), 1, sym_bracketed_argument_list, - STATE(3487), 1, + STATE(3381), 1, sym_argument_list, - ACTIONS(5306), 2, + STATE(6790), 1, + aux_sym__for_statement_conditions_repeat1, + ACTIONS(5304), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7137), 2, + ACTIONS(7229), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7141), 2, + ACTIONS(7233), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7143), 2, + ACTIONS(7235), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7153), 2, + ACTIONS(7245), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7157), 2, + ACTIONS(7249), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7159), 2, + ACTIONS(7251), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(7900), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - STATE(5119), 9, + STATE(5052), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -642532,7 +636618,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [143087] = 22, + [137124] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -642553,36 +636639,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4755), 1, - anon_sym_DASH_GT, - ACTIONS(4804), 1, - anon_sym_LPAREN, - ACTIONS(4808), 1, - anon_sym_DOT, - ACTIONS(4835), 1, - anon_sym_LBRACK, - ACTIONS(4839), 1, - anon_sym_BANG, - ACTIONS(7902), 1, - anon_sym_DOT_DOT, - STATE(2433), 1, - sym_bracketed_argument_list, - STATE(3035), 1, - sym_argument_list, - ACTIONS(4841), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5733), 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(5120), 9, + ACTIONS(7742), 1, + anon_sym_and, + STATE(5053), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -642592,7 +636651,24 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5731), 18, + ACTIONS(6097), 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(6095), 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, @@ -642603,15 +636679,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_on, anon_sym_as, anon_sym_is, + anon_sym_DASH_GT, anon_sym_with, - [143188] = 21, + [137210] = 27, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -642632,31 +636711,38 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(7904), 1, + ACTIONS(3861), 1, + anon_sym_LBRACE, + ACTIONS(3877), 1, + sym_discard, + ACTIONS(6969), 1, sym__identifier_token, - ACTIONS(7908), 1, + ACTIONS(6973), 1, anon_sym_LPAREN, - ACTIONS(7910), 1, - anon_sym_BANG, - ACTIONS(7914), 1, - anon_sym_SQUOTE, - ACTIONS(7916), 1, - sym_integer_literal, - STATE(6452), 1, + ACTIONS(7478), 1, + anon_sym_COMMA, + ACTIONS(7803), 1, + anon_sym_RPAREN, + STATE(2565), 1, sym__reserved_identifier, - STATE(6553), 1, - sym__preproc_expression, - ACTIONS(7912), 2, - anon_sym_true, - anon_sym_false, - STATE(6542), 6, - sym_character_literal, - sym_boolean_literal, + STATE(3352), 1, + sym_parenthesized_variable_designation, + STATE(3422), 1, + sym__variable_designation, + STATE(5154), 1, + sym_positional_pattern_clause, + STATE(5691), 1, + sym_property_pattern_clause, + STATE(6424), 1, sym_identifier, - sym_preproc_parenthesized_expression, - sym_preproc_unary_expression, - sym_preproc_binary_expression, - STATE(5121), 9, + STATE(7378), 1, + sym__lambda_parameters, + STATE(7531), 1, + sym_parameter_list, + ACTIONS(3867), 2, + anon_sym_and, + anon_sym_or, + STATE(5054), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -642666,7 +636752,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(7906), 22, + ACTIONS(6971), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -642689,7 +636775,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [143287] = 14, + [137322] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -642710,12 +636796,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4271), 4, - anon_sym_COLON, - anon_sym_when, + ACTIONS(7688), 1, anon_sym_and, - anon_sym_or, - STATE(5122), 9, + STATE(5055), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -642725,7 +636808,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5092), 11, + ACTIONS(6097), 11, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, @@ -642737,8 +636820,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT, - ACTIONS(5090), 22, + ACTIONS(6095), 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, @@ -642753,6 +636839,7 @@ 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, @@ -642760,7 +636847,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, anon_sym_DASH_GT, anon_sym_with, - [143372] = 40, + [137408] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -642781,83 +636868,59 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4755), 1, - anon_sym_DASH_GT, - ACTIONS(4804), 1, - anon_sym_LPAREN, - ACTIONS(4808), 1, - anon_sym_DOT, - ACTIONS(4835), 1, - anon_sym_LBRACK, - ACTIONS(4839), 1, - anon_sym_BANG, - ACTIONS(6293), 1, - anon_sym_switch, - ACTIONS(6307), 1, - anon_sym_with, - ACTIONS(6393), 1, - anon_sym_as, - ACTIONS(7920), 1, + ACTIONS(7805), 1, + anon_sym_into, + STATE(5057), 1, + aux_sym__query_body_repeat2, + STATE(5056), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + ACTIONS(5935), 11, + anon_sym_LT, + anon_sym_GT, anon_sym_QMARK, - ACTIONS(7926), 1, + anon_sym_BANG, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_SLASH, - ACTIONS(7928), 1, - anon_sym_CARET, - ACTIONS(7930), 1, anon_sym_PIPE, - ACTIONS(7932), 1, anon_sym_AMP, - ACTIONS(7936), 1, anon_sym_GT_GT, - ACTIONS(7942), 1, - anon_sym_DOT_DOT, - ACTIONS(7944), 1, - anon_sym_AMP_AMP, - ACTIONS(7946), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7948), 1, - anon_sym_QMARK_QMARK, - ACTIONS(7950), 1, - anon_sym_is, - STATE(2433), 1, - sym_bracketed_argument_list, - STATE(3035), 1, - sym_argument_list, - ACTIONS(4841), 2, + anon_sym_DOT, + ACTIONS(5933), 25, + anon_sym_LBRACK, + anon_sym_LPAREN, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5864), 2, - anon_sym_EQ_GT, - anon_sym_into, - ACTIONS(7918), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(7922), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(7924), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7934), 2, + anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7938), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7940), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - STATE(5123), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - [143509] = 41, + 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, + [137496] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -642878,84 +636941,59 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4100), 1, - anon_sym_DOT, - ACTIONS(4102), 1, - anon_sym_DASH_GT, - ACTIONS(5264), 1, - anon_sym_LPAREN, - ACTIONS(5304), 1, - anon_sym_BANG, - ACTIONS(5573), 1, - anon_sym_LBRACK, - ACTIONS(6343), 1, - anon_sym_switch, - ACTIONS(6357), 1, - anon_sym_with, - ACTIONS(6813), 1, - anon_sym_as, - ACTIONS(7139), 1, + ACTIONS(7805), 1, + anon_sym_into, + STATE(5059), 1, + aux_sym__query_body_repeat2, + STATE(5057), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + ACTIONS(5881), 11, + anon_sym_LT, + anon_sym_GT, anon_sym_QMARK, - ACTIONS(7145), 1, + anon_sym_BANG, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_SLASH, - ACTIONS(7147), 1, - anon_sym_CARET, - ACTIONS(7149), 1, anon_sym_PIPE, - ACTIONS(7151), 1, anon_sym_AMP, - ACTIONS(7155), 1, anon_sym_GT_GT, - ACTIONS(7161), 1, - anon_sym_DOT_DOT, - ACTIONS(7163), 1, - anon_sym_AMP_AMP, - ACTIONS(7165), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7167), 1, - anon_sym_QMARK_QMARK, - ACTIONS(7169), 1, - anon_sym_is, - ACTIONS(7831), 1, - anon_sym_COMMA, - ACTIONS(7952), 1, - anon_sym_RPAREN, - STATE(2485), 1, - sym_bracketed_argument_list, - STATE(3487), 1, - sym_argument_list, - ACTIONS(5306), 2, + anon_sym_DOT, + ACTIONS(5879), 25, + anon_sym_LBRACK, + anon_sym_LPAREN, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7137), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(7141), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(7143), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7153), 2, + anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7157), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7159), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - STATE(5124), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - [143648] = 40, + 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, + [137584] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -642976,83 +637014,59 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4755), 1, - anon_sym_DASH_GT, - ACTIONS(4804), 1, - anon_sym_LPAREN, - ACTIONS(4808), 1, - anon_sym_DOT, - ACTIONS(4835), 1, - anon_sym_LBRACK, - ACTIONS(4839), 1, - anon_sym_BANG, - ACTIONS(6293), 1, - anon_sym_switch, - ACTIONS(6307), 1, - anon_sym_with, - ACTIONS(6393), 1, - anon_sym_as, - ACTIONS(7920), 1, + ACTIONS(7805), 1, + anon_sym_into, + STATE(5060), 1, + aux_sym__query_body_repeat2, + STATE(5058), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + ACTIONS(5881), 11, + anon_sym_LT, + anon_sym_GT, anon_sym_QMARK, - ACTIONS(7926), 1, + anon_sym_BANG, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_SLASH, - ACTIONS(7928), 1, - anon_sym_CARET, - ACTIONS(7930), 1, anon_sym_PIPE, - ACTIONS(7932), 1, anon_sym_AMP, - ACTIONS(7936), 1, anon_sym_GT_GT, - ACTIONS(7942), 1, - anon_sym_DOT_DOT, - ACTIONS(7944), 1, - anon_sym_AMP_AMP, - ACTIONS(7946), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7948), 1, - anon_sym_QMARK_QMARK, - ACTIONS(7950), 1, - anon_sym_is, - STATE(2433), 1, - sym_bracketed_argument_list, - STATE(3035), 1, - sym_argument_list, - ACTIONS(4841), 2, + anon_sym_DOT, + ACTIONS(5879), 25, + anon_sym_LBRACK, + anon_sym_LPAREN, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5072), 2, - anon_sym_EQ_GT, - anon_sym_into, - ACTIONS(7918), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(7922), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(7924), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7934), 2, + anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7938), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7940), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - STATE(5125), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - [143785] = 40, + 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, + [137672] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -643073,83 +637087,58 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4755), 1, - anon_sym_DASH_GT, - ACTIONS(4804), 1, - anon_sym_LPAREN, - ACTIONS(4808), 1, - anon_sym_DOT, - ACTIONS(4835), 1, - anon_sym_LBRACK, - ACTIONS(4839), 1, - anon_sym_BANG, - ACTIONS(6293), 1, - anon_sym_switch, - ACTIONS(6307), 1, - anon_sym_with, - ACTIONS(7956), 1, + ACTIONS(7807), 1, + anon_sym_into, + STATE(5059), 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(5953), 11, + anon_sym_LT, + anon_sym_GT, anon_sym_QMARK, - ACTIONS(7962), 1, + anon_sym_BANG, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_SLASH, - ACTIONS(7964), 1, - anon_sym_CARET, - ACTIONS(7966), 1, anon_sym_PIPE, - ACTIONS(7968), 1, anon_sym_AMP, - ACTIONS(7972), 1, anon_sym_GT_GT, - ACTIONS(7978), 1, - anon_sym_DOT_DOT, - ACTIONS(7980), 1, - anon_sym_AMP_AMP, - ACTIONS(7982), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7984), 1, - anon_sym_QMARK_QMARK, - ACTIONS(7986), 1, - anon_sym_as, - ACTIONS(7988), 1, - anon_sym_is, - STATE(2433), 1, - sym_bracketed_argument_list, - STATE(3035), 1, - sym_argument_list, - ACTIONS(4841), 2, + anon_sym_DOT, + ACTIONS(5951), 25, + anon_sym_LBRACK, + anon_sym_LPAREN, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5745), 2, - anon_sym_into, - anon_sym_by, - ACTIONS(7954), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(7958), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(7960), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7970), 2, + anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7974), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7976), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - STATE(5126), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - [143922] = 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, + [137758] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -643170,13 +637159,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(5391), 1, - anon_sym_COLON, - ACTIONS(4271), 3, - anon_sym_when, - anon_sym_and, - anon_sym_or, - STATE(5127), 9, + ACTIONS(7805), 1, + anon_sym_into, + STATE(5059), 1, + aux_sym__query_body_repeat2, + STATE(5060), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -643186,7 +637173,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5056), 11, + ACTIONS(5960), 11, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, @@ -643198,7 +637185,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT, - ACTIONS(5054), 22, + ACTIONS(5958), 25, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_PLUS_PLUS, @@ -643214,14 +637201,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_by, anon_sym_as, anon_sym_is, anon_sym_DASH_GT, anon_sym_with, - [144009] = 40, + [137846] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -643242,83 +637232,59 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4100), 1, - anon_sym_DOT, - ACTIONS(4102), 1, - anon_sym_DASH_GT, - ACTIONS(5264), 1, - anon_sym_LPAREN, - ACTIONS(5304), 1, - anon_sym_BANG, - ACTIONS(5573), 1, - anon_sym_LBRACK, - ACTIONS(6343), 1, - anon_sym_switch, - ACTIONS(6357), 1, - anon_sym_with, - ACTIONS(6813), 1, - anon_sym_as, - ACTIONS(7139), 1, + ACTIONS(7810), 1, + anon_sym_into, + STATE(5062), 1, + aux_sym__query_body_repeat2, + STATE(5061), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + ACTIONS(5935), 11, + anon_sym_LT, + anon_sym_GT, anon_sym_QMARK, - ACTIONS(7145), 1, + anon_sym_BANG, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_SLASH, - ACTIONS(7147), 1, - anon_sym_CARET, - ACTIONS(7149), 1, anon_sym_PIPE, - ACTIONS(7151), 1, anon_sym_AMP, - ACTIONS(7155), 1, anon_sym_GT_GT, - ACTIONS(7161), 1, - anon_sym_DOT_DOT, - ACTIONS(7163), 1, - anon_sym_AMP_AMP, - ACTIONS(7165), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7167), 1, - anon_sym_QMARK_QMARK, - ACTIONS(7169), 1, - anon_sym_is, - STATE(2485), 1, - sym_bracketed_argument_list, - STATE(3487), 1, - sym_argument_list, - ACTIONS(5306), 2, + anon_sym_DOT, + ACTIONS(5933), 25, + anon_sym_LBRACK, + anon_sym_LPAREN, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7137), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(7141), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(7143), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7153), 2, + anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7157), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7159), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(7990), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - STATE(5128), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - [144146] = 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_equals, + anon_sym_as, + anon_sym_is, + anon_sym_DASH_GT, + anon_sym_with, + [137934] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -643339,13 +637305,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(5397), 1, - anon_sym_COLON, - ACTIONS(4271), 3, - anon_sym_when, - anon_sym_and, - anon_sym_or, - STATE(5129), 9, + ACTIONS(7810), 1, + anon_sym_into, + STATE(5064), 1, + aux_sym__query_body_repeat2, + STATE(5062), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -643355,7 +637319,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5092), 11, + ACTIONS(5881), 11, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, @@ -643367,7 +637331,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT, - ACTIONS(5090), 22, + ACTIONS(5879), 25, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_PLUS_PLUS, @@ -643383,14 +637347,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_equals, anon_sym_as, anon_sym_is, anon_sym_DASH_GT, anon_sym_with, - [144233] = 25, + [138022] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -643411,35 +637378,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(5024), 1, - anon_sym_LBRACK, - ACTIONS(5040), 1, - aux_sym_preproc_if_token1, - ACTIONS(7386), 1, - aux_sym_preproc_if_token3, - ACTIONS(7992), 1, - aux_sym_preproc_else_token1, - ACTIONS(7994), 1, - aux_sym_preproc_elif_token1, - STATE(2175), 1, - sym__reserved_identifier, - STATE(5786), 1, - aux_sym__class_declaration_initializer_repeat1, - STATE(6051), 1, - sym__attribute_list, - STATE(6500), 1, - sym_enum_member_declaration, - STATE(6642), 1, - sym_identifier, - STATE(5934), 2, - sym_attribute_list, - sym_preproc_if_in_attribute_list, - STATE(7741), 2, - sym_preproc_else_in_enum_member_declaration, - sym_preproc_elif_in_enum_member_declaration, - STATE(5130), 9, + ACTIONS(7810), 1, + anon_sym_into, + STATE(5065), 1, + aux_sym__query_body_repeat2, + STATE(5063), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -643449,30 +637392,45 @@ 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, + ACTIONS(5881), 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(5879), 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_equals, - anon_sym_let, - anon_sym_orderby, - anon_sym_ascending, - anon_sym_descending, - anon_sym_group, - anon_sym_by, - anon_sym_select, - [144340] = 21, + anon_sym_as, + anon_sym_is, + anon_sym_DASH_GT, + anon_sym_with, + [138110] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -643493,31 +637451,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(141), 1, - anon_sym_SQUOTE, - ACTIONS(7996), 1, - anon_sym_LPAREN, - ACTIONS(7998), 1, - anon_sym_BANG, - ACTIONS(8000), 1, - sym_integer_literal, - STATE(2175), 1, - sym__reserved_identifier, - STATE(6536), 1, - sym__preproc_expression, - ACTIONS(77), 2, - anon_sym_true, - anon_sym_false, - STATE(6543), 6, - sym_character_literal, - sym_boolean_literal, - sym_identifier, - sym_preproc_parenthesized_expression, - sym_preproc_unary_expression, - sym_preproc_binary_expression, - STATE(5131), 9, + ACTIONS(7812), 1, + anon_sym_into, + STATE(5064), 10, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -643527,30 +637463,46 @@ 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, + aux_sym__query_body_repeat2, + ACTIONS(5953), 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(5951), 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_equals, - anon_sym_let, - anon_sym_orderby, - anon_sym_ascending, - anon_sym_descending, - anon_sym_group, - anon_sym_by, - anon_sym_select, - [144439] = 21, + anon_sym_as, + anon_sym_is, + anon_sym_DASH_GT, + anon_sym_with, + [138196] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -643571,31 +637523,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(7904), 1, - sym__identifier_token, - ACTIONS(7908), 1, - anon_sym_LPAREN, - ACTIONS(7910), 1, - anon_sym_BANG, - ACTIONS(7914), 1, - anon_sym_SQUOTE, - ACTIONS(7916), 1, - sym_integer_literal, - STATE(6452), 1, - sym__reserved_identifier, - STATE(6525), 1, - sym__preproc_expression, - ACTIONS(7912), 2, - anon_sym_true, - anon_sym_false, - STATE(6542), 6, - sym_character_literal, - sym_boolean_literal, - sym_identifier, - sym_preproc_parenthesized_expression, - sym_preproc_unary_expression, - sym_preproc_binary_expression, - STATE(5132), 9, + ACTIONS(7810), 1, + anon_sym_into, + STATE(5064), 1, + aux_sym__query_body_repeat2, + STATE(5065), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -643605,30 +637537,45 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(7906), 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, + ACTIONS(5960), 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(5958), 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_equals, - anon_sym_let, - anon_sym_orderby, - anon_sym_ascending, - anon_sym_descending, - anon_sym_group, - anon_sym_by, - anon_sym_select, - [144538] = 40, + anon_sym_as, + anon_sym_is, + anon_sym_DASH_GT, + anon_sym_with, + [138284] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -643649,83 +637596,59 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4755), 1, - anon_sym_DASH_GT, - ACTIONS(4804), 1, - anon_sym_LPAREN, - ACTIONS(4808), 1, - anon_sym_DOT, - ACTIONS(4835), 1, - anon_sym_LBRACK, - ACTIONS(4839), 1, - anon_sym_BANG, - ACTIONS(6293), 1, - anon_sym_switch, - ACTIONS(6307), 1, - anon_sym_with, - ACTIONS(7956), 1, + ACTIONS(7815), 1, + anon_sym_into, + STATE(5067), 1, + aux_sym__query_body_repeat2, + STATE(5066), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + ACTIONS(5935), 11, + anon_sym_LT, + anon_sym_GT, anon_sym_QMARK, - ACTIONS(7962), 1, + anon_sym_BANG, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_SLASH, - ACTIONS(7964), 1, - anon_sym_CARET, - ACTIONS(7966), 1, anon_sym_PIPE, - ACTIONS(7968), 1, anon_sym_AMP, - ACTIONS(7972), 1, anon_sym_GT_GT, - ACTIONS(7978), 1, - anon_sym_DOT_DOT, - ACTIONS(7980), 1, - anon_sym_AMP_AMP, - ACTIONS(7982), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7984), 1, - anon_sym_QMARK_QMARK, - ACTIONS(7986), 1, - anon_sym_as, - ACTIONS(7988), 1, - anon_sym_is, - STATE(2433), 1, - sym_bracketed_argument_list, - STATE(3035), 1, - sym_argument_list, - ACTIONS(4841), 2, + anon_sym_DOT, + ACTIONS(5933), 25, + anon_sym_LBRACK, + anon_sym_LPAREN, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5767), 2, - anon_sym_into, - anon_sym_by, - ACTIONS(7954), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(7958), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(7960), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7970), 2, + anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7974), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7976), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - 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, - [144675] = 24, + 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_on, + anon_sym_as, + anon_sym_is, + anon_sym_DASH_GT, + anon_sym_with, + [138372] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -643746,40 +637669,84 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4755), 1, - anon_sym_DASH_GT, - ACTIONS(4804), 1, - anon_sym_LPAREN, - ACTIONS(4808), 1, - anon_sym_DOT, - ACTIONS(4835), 1, - anon_sym_LBRACK, - ACTIONS(4839), 1, - anon_sym_BANG, - ACTIONS(6293), 1, - anon_sym_switch, - ACTIONS(6307), 1, - anon_sym_with, - ACTIONS(7978), 1, - anon_sym_DOT_DOT, - STATE(2433), 1, - sym_bracketed_argument_list, - STATE(3035), 1, - sym_argument_list, - ACTIONS(4841), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5664), 9, + ACTIONS(7815), 1, + anon_sym_into, + STATE(5069), 1, + aux_sym__query_body_repeat2, + STATE(5067), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + ACTIONS(5881), 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(5134), 9, + anon_sym_DOT, + ACTIONS(5879), 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_on, + anon_sym_as, + anon_sym_is, + anon_sym_DASH_GT, + anon_sym_with, + [138460] = 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(7815), 1, + anon_sym_into, + STATE(5070), 1, + aux_sym__query_body_repeat2, + STATE(5068), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -643789,7 +637756,23 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5660), 16, + ACTIONS(5881), 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(5879), 25, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_STAR, anon_sym_PERCENT, anon_sym_CARET, @@ -643799,14 +637782,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_by, + anon_sym_on, anon_sym_as, anon_sym_is, - [144780] = 21, + anon_sym_DASH_GT, + anon_sym_with, + [138548] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -643827,31 +637815,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(7904), 1, - sym__identifier_token, - ACTIONS(7908), 1, - anon_sym_LPAREN, - ACTIONS(7910), 1, - anon_sym_BANG, - ACTIONS(7914), 1, - anon_sym_SQUOTE, - ACTIONS(7916), 1, - sym_integer_literal, - STATE(6452), 1, - sym__reserved_identifier, - STATE(6483), 1, - sym__preproc_expression, - ACTIONS(7912), 2, - anon_sym_true, - anon_sym_false, - STATE(6542), 6, - sym_character_literal, - sym_boolean_literal, - sym_identifier, - sym_preproc_parenthesized_expression, - sym_preproc_unary_expression, - sym_preproc_binary_expression, - STATE(5135), 9, + ACTIONS(7817), 1, + anon_sym_into, + STATE(5069), 10, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -643861,30 +637827,46 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(7906), 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, + aux_sym__query_body_repeat2, + ACTIONS(5953), 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(5951), 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_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, - [144879] = 21, + anon_sym_as, + anon_sym_is, + anon_sym_DASH_GT, + anon_sym_with, + [138634] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -643905,31 +637887,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(7904), 1, - sym__identifier_token, - ACTIONS(7908), 1, - anon_sym_LPAREN, - ACTIONS(7910), 1, - anon_sym_BANG, - ACTIONS(7914), 1, - anon_sym_SQUOTE, - ACTIONS(7916), 1, - sym_integer_literal, - STATE(6452), 1, - sym__reserved_identifier, - STATE(6492), 1, - sym__preproc_expression, - ACTIONS(7912), 2, - anon_sym_true, - anon_sym_false, - STATE(6542), 6, - sym_character_literal, - sym_boolean_literal, - sym_identifier, - sym_preproc_parenthesized_expression, - sym_preproc_unary_expression, - sym_preproc_binary_expression, - STATE(5136), 9, + ACTIONS(7815), 1, + anon_sym_into, + STATE(5069), 1, + aux_sym__query_body_repeat2, + STATE(5070), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -643939,30 +637901,45 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(7906), 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(5960), 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(5958), 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_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, - [144978] = 21, + anon_sym_as, + anon_sym_is, + anon_sym_DASH_GT, + anon_sym_with, + [138722] = 26, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -643983,31 +637960,37 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(7904), 1, + ACTIONS(3861), 1, + anon_sym_LBRACE, + ACTIONS(3877), 1, + sym_discard, + ACTIONS(6969), 1, sym__identifier_token, - ACTIONS(7908), 1, + ACTIONS(6973), 1, anon_sym_LPAREN, - ACTIONS(7910), 1, - anon_sym_BANG, - ACTIONS(7914), 1, - anon_sym_SQUOTE, - ACTIONS(7916), 1, - sym_integer_literal, - STATE(6452), 1, + STATE(2565), 1, sym__reserved_identifier, - STATE(6498), 1, - sym__preproc_expression, - ACTIONS(7912), 2, - anon_sym_true, - anon_sym_false, - STATE(6542), 6, - sym_character_literal, - sym_boolean_literal, + STATE(3352), 1, + sym_parenthesized_variable_designation, + STATE(3422), 1, + sym__variable_designation, + STATE(5154), 1, + sym_positional_pattern_clause, + STATE(5691), 1, + sym_property_pattern_clause, + STATE(6571), 1, sym_identifier, - sym_preproc_parenthesized_expression, - sym_preproc_unary_expression, - sym_preproc_binary_expression, - STATE(5137), 9, + STATE(7378), 1, + sym__lambda_parameters, + STATE(7531), 1, + sym_parameter_list, + ACTIONS(3867), 2, + anon_sym_and, + anon_sym_or, + ACTIONS(3869), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + STATE(5071), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -644017,7 +638000,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(7906), 22, + ACTIONS(6971), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -644040,7 +638023,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [145077] = 40, + [138832] = 42, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -644061,73 +638044,76 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4100), 1, + ACTIONS(2695), 1, + anon_sym_COMMA, + ACTIONS(4042), 1, anon_sym_DOT, - ACTIONS(4102), 1, + ACTIONS(4044), 1, anon_sym_DASH_GT, - ACTIONS(5264), 1, + ACTIONS(5257), 1, anon_sym_LPAREN, - ACTIONS(5304), 1, + ACTIONS(5302), 1, anon_sym_BANG, - ACTIONS(5573), 1, + ACTIONS(5549), 1, anon_sym_LBRACK, - ACTIONS(6343), 1, + ACTIONS(6355), 1, anon_sym_switch, - ACTIONS(6357), 1, + ACTIONS(6369), 1, anon_sym_with, - ACTIONS(6813), 1, + ACTIONS(6811), 1, anon_sym_as, - ACTIONS(7139), 1, + ACTIONS(7231), 1, anon_sym_QMARK, - ACTIONS(7145), 1, + ACTIONS(7237), 1, anon_sym_SLASH, - ACTIONS(7147), 1, + ACTIONS(7239), 1, anon_sym_CARET, - ACTIONS(7149), 1, + ACTIONS(7241), 1, anon_sym_PIPE, - ACTIONS(7151), 1, + ACTIONS(7243), 1, anon_sym_AMP, - ACTIONS(7155), 1, + ACTIONS(7247), 1, anon_sym_GT_GT, - ACTIONS(7161), 1, + ACTIONS(7253), 1, anon_sym_DOT_DOT, - ACTIONS(7163), 1, + ACTIONS(7255), 1, anon_sym_AMP_AMP, - ACTIONS(7165), 1, + ACTIONS(7257), 1, anon_sym_PIPE_PIPE, - ACTIONS(7167), 1, + ACTIONS(7259), 1, anon_sym_QMARK_QMARK, - ACTIONS(7169), 1, + ACTIONS(7261), 1, anon_sym_is, - STATE(2485), 1, + ACTIONS(7820), 1, + anon_sym_RBRACK, + STATE(2467), 1, sym_bracketed_argument_list, - STATE(3487), 1, + STATE(3381), 1, sym_argument_list, - ACTIONS(5306), 2, + STATE(6851), 1, + aux_sym_array_rank_specifier_repeat1, + ACTIONS(5304), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7137), 2, + ACTIONS(7229), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7141), 2, + ACTIONS(7233), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7143), 2, + ACTIONS(7235), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7153), 2, + ACTIONS(7245), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7157), 2, + ACTIONS(7249), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7159), 2, + ACTIONS(7251), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(8002), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - STATE(5138), 9, + STATE(5072), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -644137,7 +638123,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [145214] = 40, + [138974] = 42, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -644158,73 +638144,76 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4100), 1, + ACTIONS(4042), 1, anon_sym_DOT, - ACTIONS(4102), 1, + ACTIONS(4044), 1, anon_sym_DASH_GT, - ACTIONS(5264), 1, + ACTIONS(5257), 1, anon_sym_LPAREN, - ACTIONS(5304), 1, + ACTIONS(5302), 1, anon_sym_BANG, - ACTIONS(5573), 1, + ACTIONS(5549), 1, anon_sym_LBRACK, - ACTIONS(6343), 1, + ACTIONS(6355), 1, anon_sym_switch, - ACTIONS(6357), 1, + ACTIONS(6369), 1, anon_sym_with, - ACTIONS(6813), 1, + ACTIONS(6811), 1, anon_sym_as, - ACTIONS(7139), 1, + ACTIONS(7231), 1, anon_sym_QMARK, - ACTIONS(7145), 1, + ACTIONS(7237), 1, anon_sym_SLASH, - ACTIONS(7147), 1, + ACTIONS(7239), 1, anon_sym_CARET, - ACTIONS(7149), 1, + ACTIONS(7241), 1, anon_sym_PIPE, - ACTIONS(7151), 1, + ACTIONS(7243), 1, anon_sym_AMP, - ACTIONS(7155), 1, + ACTIONS(7247), 1, anon_sym_GT_GT, - ACTIONS(7161), 1, + ACTIONS(7253), 1, anon_sym_DOT_DOT, - ACTIONS(7163), 1, + ACTIONS(7255), 1, anon_sym_AMP_AMP, - ACTIONS(7165), 1, + ACTIONS(7257), 1, anon_sym_PIPE_PIPE, - ACTIONS(7167), 1, + ACTIONS(7259), 1, anon_sym_QMARK_QMARK, - ACTIONS(7169), 1, + ACTIONS(7261), 1, anon_sym_is, - STATE(2485), 1, + ACTIONS(7622), 1, + anon_sym_COMMA, + ACTIONS(7822), 1, + anon_sym_RPAREN, + STATE(2467), 1, sym_bracketed_argument_list, - STATE(3487), 1, + STATE(3381), 1, sym_argument_list, - ACTIONS(5306), 2, + STATE(6774), 1, + aux_sym__for_statement_conditions_repeat1, + ACTIONS(5304), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7137), 2, + ACTIONS(7229), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7141), 2, + ACTIONS(7233), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7143), 2, + ACTIONS(7235), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7153), 2, + ACTIONS(7245), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7157), 2, + ACTIONS(7249), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7159), 2, + ACTIONS(7251), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(8004), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - STATE(5139), 9, + STATE(5073), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -644234,7 +638223,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [145351] = 37, + [139116] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -644255,70 +638244,84 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4755), 1, - anon_sym_DASH_GT, - ACTIONS(4804), 1, - anon_sym_LPAREN, - ACTIONS(4808), 1, - anon_sym_DOT, - ACTIONS(4835), 1, - anon_sym_LBRACK, - ACTIONS(4839), 1, - anon_sym_BANG, - ACTIONS(5664), 1, + ACTIONS(7824), 1, + anon_sym_into, + STATE(5075), 1, + aux_sym__query_body_repeat2, + STATE(5074), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + ACTIONS(5935), 11, + anon_sym_LT, + anon_sym_GT, anon_sym_QMARK, - ACTIONS(6293), 1, - anon_sym_switch, - ACTIONS(6307), 1, - anon_sym_with, - ACTIONS(7876), 1, + anon_sym_BANG, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_SLASH, - ACTIONS(7878), 1, - anon_sym_CARET, - ACTIONS(7880), 1, anon_sym_PIPE, - ACTIONS(7882), 1, anon_sym_AMP, - ACTIONS(7886), 1, anon_sym_GT_GT, - ACTIONS(7892), 1, - anon_sym_DOT_DOT, - ACTIONS(7896), 1, - anon_sym_as, - ACTIONS(7898), 1, - anon_sym_is, - STATE(2433), 1, - sym_bracketed_argument_list, - STATE(3035), 1, - sym_argument_list, - ACTIONS(4841), 2, + anon_sym_DOT, + ACTIONS(5933), 25, + anon_sym_LBRACK, + anon_sym_LPAREN, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7870), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(7872), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(7874), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7884), 2, + anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7888), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7890), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5660), 5, + 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, + [139204] = 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(7824), 1, anon_sym_into, - anon_sym_equals, - STATE(5140), 9, + STATE(5077), 1, + aux_sym__query_body_repeat2, + STATE(5075), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -644328,7 +638331,45 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [145482] = 14, + ACTIONS(5881), 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(5879), 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, + [139292] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -644349,9 +638390,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8006), 1, - anon_sym_and, - STATE(5141), 9, + ACTIONS(7824), 1, + anon_sym_into, + STATE(5078), 1, + aux_sym__query_body_repeat2, + STATE(5076), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -644361,7 +638404,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(6069), 11, + ACTIONS(5881), 11, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, @@ -644373,7 +638416,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT, - ACTIONS(6067), 25, + ACTIONS(5879), 25, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_PLUS_PLUS, @@ -644387,19 +638430,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_into, - anon_sym_by, anon_sym_as, anon_sym_is, anon_sym_DASH_GT, anon_sym_with, - [145567] = 40, + [139380] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -644420,83 +638463,58 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4100), 1, - anon_sym_DOT, - ACTIONS(4102), 1, - anon_sym_DASH_GT, - ACTIONS(5264), 1, - anon_sym_LPAREN, - ACTIONS(5304), 1, + ACTIONS(7826), 1, + anon_sym_into, + STATE(5077), 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(5953), 11, + anon_sym_LT, + anon_sym_GT, + anon_sym_QMARK, anon_sym_BANG, - ACTIONS(5573), 1, - anon_sym_LBRACK, - ACTIONS(6343), 1, - anon_sym_switch, - ACTIONS(6357), 1, - anon_sym_with, - ACTIONS(6813), 1, - anon_sym_as, - ACTIONS(7169), 1, - anon_sym_is, - ACTIONS(7442), 1, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_SLASH, - ACTIONS(7444), 1, - anon_sym_CARET, - ACTIONS(7446), 1, anon_sym_PIPE, - ACTIONS(7448), 1, anon_sym_AMP, - ACTIONS(7452), 1, anon_sym_GT_GT, - ACTIONS(7458), 1, - anon_sym_DOT_DOT, - ACTIONS(7621), 1, - anon_sym_AMP_AMP, - ACTIONS(7623), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7625), 1, - anon_sym_QMARK_QMARK, - ACTIONS(7659), 1, - anon_sym_QMARK, - STATE(2485), 1, - sym_bracketed_argument_list, - STATE(3487), 1, - sym_argument_list, - ACTIONS(5306), 2, + anon_sym_DOT, + ACTIONS(5951), 25, + anon_sym_LBRACK, + anon_sym_LPAREN, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7436), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(7438), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(7440), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7450), 2, + anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7454), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7456), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(8002), 2, - anon_sym_SEMI, - anon_sym_COMMA, - STATE(5142), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - [145704] = 40, + 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, + [139466] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -644517,83 +638535,59 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4755), 1, - anon_sym_DASH_GT, - ACTIONS(4804), 1, - anon_sym_LPAREN, - ACTIONS(4808), 1, - anon_sym_DOT, - ACTIONS(4835), 1, - anon_sym_LBRACK, - ACTIONS(4839), 1, - anon_sym_BANG, - ACTIONS(6293), 1, - anon_sym_switch, - ACTIONS(6307), 1, - anon_sym_with, - ACTIONS(6393), 1, - anon_sym_as, - ACTIONS(7920), 1, + ACTIONS(7824), 1, + anon_sym_into, + STATE(5077), 1, + aux_sym__query_body_repeat2, + 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, + ACTIONS(5960), 11, + anon_sym_LT, + anon_sym_GT, anon_sym_QMARK, - ACTIONS(7926), 1, + anon_sym_BANG, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_SLASH, - ACTIONS(7928), 1, - anon_sym_CARET, - ACTIONS(7930), 1, anon_sym_PIPE, - ACTIONS(7932), 1, anon_sym_AMP, - ACTIONS(7936), 1, anon_sym_GT_GT, - ACTIONS(7942), 1, - anon_sym_DOT_DOT, - ACTIONS(7944), 1, - anon_sym_AMP_AMP, - ACTIONS(7946), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7948), 1, - anon_sym_QMARK_QMARK, - ACTIONS(7950), 1, - anon_sym_is, - STATE(2433), 1, - sym_bracketed_argument_list, - STATE(3035), 1, - sym_argument_list, - ACTIONS(4841), 2, + anon_sym_DOT, + ACTIONS(5958), 25, + anon_sym_LBRACK, + anon_sym_LPAREN, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5882), 2, - anon_sym_EQ_GT, - anon_sym_into, - ACTIONS(7918), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(7922), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(7924), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7934), 2, + anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7938), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7940), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - STATE(5143), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - [145841] = 40, + 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, + [139554] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -644614,128 +638608,74 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4755), 1, + ACTIONS(4042), 1, + anon_sym_DOT, + ACTIONS(4044), 1, anon_sym_DASH_GT, - ACTIONS(4804), 1, + ACTIONS(5257), 1, anon_sym_LPAREN, - ACTIONS(4808), 1, - anon_sym_DOT, - ACTIONS(4835), 1, - anon_sym_LBRACK, - ACTIONS(4839), 1, + ACTIONS(5302), 1, anon_sym_BANG, - ACTIONS(6293), 1, + ACTIONS(5549), 1, + anon_sym_LBRACK, + ACTIONS(6355), 1, anon_sym_switch, - ACTIONS(6307), 1, + ACTIONS(6369), 1, anon_sym_with, - ACTIONS(7956), 1, + ACTIONS(6811), 1, + anon_sym_as, + ACTIONS(7261), 1, + anon_sym_is, + ACTIONS(7562), 1, anon_sym_QMARK, - ACTIONS(7962), 1, + ACTIONS(7568), 1, anon_sym_SLASH, - ACTIONS(7964), 1, + ACTIONS(7570), 1, anon_sym_CARET, - ACTIONS(7966), 1, + ACTIONS(7572), 1, anon_sym_PIPE, - ACTIONS(7968), 1, + ACTIONS(7574), 1, anon_sym_AMP, - ACTIONS(7972), 1, + ACTIONS(7578), 1, anon_sym_GT_GT, - ACTIONS(7978), 1, + ACTIONS(7584), 1, anon_sym_DOT_DOT, - ACTIONS(7980), 1, + ACTIONS(7586), 1, anon_sym_AMP_AMP, - ACTIONS(7982), 1, + ACTIONS(7588), 1, anon_sym_PIPE_PIPE, - ACTIONS(7984), 1, + ACTIONS(7590), 1, anon_sym_QMARK_QMARK, - ACTIONS(7986), 1, - anon_sym_as, - ACTIONS(7988), 1, - anon_sym_is, - STATE(2433), 1, + STATE(2467), 1, sym_bracketed_argument_list, - STATE(3035), 1, + STATE(3381), 1, sym_argument_list, - ACTIONS(4841), 2, + ACTIONS(5304), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5899), 2, - anon_sym_into, - anon_sym_by, - ACTIONS(7954), 2, + ACTIONS(7560), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7958), 2, + ACTIONS(7564), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7960), 2, + ACTIONS(7566), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7970), 2, + ACTIONS(7576), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7974), 2, + ACTIONS(7580), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7976), 2, + ACTIONS(7582), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - STATE(5144), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - [145978] = 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(7904), 1, - sym__identifier_token, - ACTIONS(7908), 1, - anon_sym_LPAREN, - ACTIONS(7910), 1, - anon_sym_BANG, - ACTIONS(7914), 1, - anon_sym_SQUOTE, - ACTIONS(7916), 1, - sym_integer_literal, - STATE(6452), 1, - sym__reserved_identifier, - STATE(6509), 1, - sym__preproc_expression, - ACTIONS(7912), 2, - anon_sym_true, - anon_sym_false, - STATE(6542), 6, - sym_character_literal, - sym_boolean_literal, - sym_identifier, - sym_preproc_parenthesized_expression, - sym_preproc_unary_expression, - sym_preproc_binary_expression, - STATE(5145), 9, + ACTIONS(5652), 3, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RBRACE, + STATE(5079), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -644745,30 +638685,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(7906), 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, - [146077] = 15, + [139692] = 17, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -644789,11 +638706,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8006), 1, - anon_sym_and, - ACTIONS(8008), 1, - anon_sym_or, - STATE(5146), 9, + ACTIONS(4846), 1, + anon_sym_LBRACK, + ACTIONS(5333), 1, + anon_sym_LBRACE, + ACTIONS(5336), 1, + anon_sym_QMARK, + STATE(3421), 1, + sym_initializer_expression, + STATE(5080), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -644803,10 +638724,9 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5356), 11, + ACTIONS(4856), 10, anon_sym_LT, anon_sym_GT, - anon_sym_QMARK, anon_sym_BANG, anon_sym_PLUS, anon_sym_DASH, @@ -644815,9 +638735,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT, - ACTIONS(5354), 24, - anon_sym_LBRACK, + ACTIONS(4850), 24, anon_sym_LPAREN, + anon_sym_in, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_STAR, @@ -644831,16 +638751,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_by, anon_sym_as, anon_sym_is, anon_sym_DASH_GT, anon_sym_with, - [146164] = 22, + [139784] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -644861,36 +638781,123 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4755), 1, + ACTIONS(4427), 1, + anon_sym_DOT, + ACTIONS(4429), 1, anon_sym_DASH_GT, - ACTIONS(4804), 1, + ACTIONS(6557), 1, anon_sym_LPAREN, - ACTIONS(4808), 1, - anon_sym_DOT, - ACTIONS(4835), 1, + ACTIONS(6607), 1, anon_sym_LBRACK, - ACTIONS(4839), 1, + ACTIONS(6613), 1, anon_sym_BANG, - ACTIONS(7978), 1, + ACTIONS(6637), 1, + anon_sym_switch, + ACTIONS(6651), 1, + anon_sym_with, + ACTIONS(6713), 1, + anon_sym_QMARK, + ACTIONS(6719), 1, + anon_sym_SLASH, + ACTIONS(6721), 1, + anon_sym_CARET, + ACTIONS(6723), 1, + anon_sym_PIPE, + ACTIONS(6725), 1, + anon_sym_AMP, + ACTIONS(6729), 1, + anon_sym_GT_GT, + ACTIONS(6735), 1, anon_sym_DOT_DOT, - STATE(2433), 1, + ACTIONS(6737), 1, + anon_sym_AMP_AMP, + ACTIONS(6739), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6741), 1, + anon_sym_QMARK_QMARK, + ACTIONS(6743), 1, + anon_sym_as, + ACTIONS(6745), 1, + anon_sym_is, + STATE(3188), 1, sym_bracketed_argument_list, - STATE(3035), 1, + STATE(4584), 1, sym_argument_list, - ACTIONS(4841), 2, + ACTIONS(6615), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1223), 9, + ACTIONS(6711), 2, anon_sym_LT, anon_sym_GT, + ACTIONS(6715), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6717), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(6727), 2, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + ACTIONS(6731), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6733), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(5652), 3, + sym_interpolation_close_brace, + anon_sym_COLON, + anon_sym_COMMA, + STATE(5081), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + [139922] = 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(4033), 1, + anon_sym_LBRACK, + ACTIONS(4039), 1, + anon_sym_STAR, + ACTIONS(4985), 1, anon_sym_QMARK, + ACTIONS(7829), 1, + anon_sym_DOT, + ACTIONS(3961), 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(5147), 9, + STATE(5082), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -644900,8 +638907,15 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(1221), 18, - anon_sym_STAR, + ACTIONS(3963), 25, + anon_sym_COLON, + 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_PERCENT, anon_sym_CARET, anon_sym_LT_LT, @@ -644911,15 +638925,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_into, - anon_sym_by, anon_sym_as, anon_sym_is, + anon_sym_DASH_GT, anon_sym_with, - [146265] = 22, + [140014] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -644940,36 +638954,107 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4755), 1, + ACTIONS(4042), 1, + anon_sym_DOT, + ACTIONS(4044), 1, anon_sym_DASH_GT, - ACTIONS(4804), 1, + ACTIONS(5257), 1, anon_sym_LPAREN, - ACTIONS(4808), 1, - anon_sym_DOT, - ACTIONS(4835), 1, - anon_sym_LBRACK, - ACTIONS(4839), 1, + ACTIONS(5302), 1, anon_sym_BANG, - ACTIONS(7942), 1, + ACTIONS(5549), 1, + anon_sym_LBRACK, + ACTIONS(6355), 1, + anon_sym_switch, + ACTIONS(6369), 1, + anon_sym_with, + ACTIONS(6811), 1, + anon_sym_as, + ACTIONS(7231), 1, + anon_sym_QMARK, + ACTIONS(7237), 1, + anon_sym_SLASH, + ACTIONS(7239), 1, + anon_sym_CARET, + ACTIONS(7241), 1, + anon_sym_PIPE, + ACTIONS(7243), 1, + anon_sym_AMP, + ACTIONS(7247), 1, + anon_sym_GT_GT, + ACTIONS(7253), 1, anon_sym_DOT_DOT, - STATE(2433), 1, + ACTIONS(7255), 1, + anon_sym_AMP_AMP, + ACTIONS(7257), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7259), 1, + anon_sym_QMARK_QMARK, + ACTIONS(7261), 1, + anon_sym_is, + STATE(2467), 1, sym_bracketed_argument_list, - STATE(3035), 1, + STATE(3381), 1, sym_argument_list, - ACTIONS(4841), 2, + ACTIONS(5304), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5733), 9, + ACTIONS(7229), 2, 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(5148), 9, + ACTIONS(7235), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(7245), 2, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + ACTIONS(7249), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(7251), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(7831), 3, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_RPAREN, + STATE(5083), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + [140152] = 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(7829), 1, + anon_sym_DOT, + STATE(5084), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -644979,7 +639064,27 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5731), 18, + ACTIONS(3976), 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(3978), 27, + anon_sym_LBRACK, + anon_sym_COLON, + 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, @@ -644989,16 +639094,16 @@ 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_as, anon_sym_is, + anon_sym_DASH_GT, anon_sym_with, - [146366] = 21, + [140238] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -645019,31 +639124,74 @@ 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(7996), 1, + ACTIONS(4042), 1, + anon_sym_DOT, + ACTIONS(4044), 1, + anon_sym_DASH_GT, + ACTIONS(5257), 1, anon_sym_LPAREN, - ACTIONS(7998), 1, + ACTIONS(5302), 1, anon_sym_BANG, - ACTIONS(8000), 1, - sym_integer_literal, - STATE(2175), 1, - sym__reserved_identifier, - STATE(6560), 1, - sym__preproc_expression, - ACTIONS(77), 2, - anon_sym_true, - anon_sym_false, - STATE(6543), 6, - sym_character_literal, - sym_boolean_literal, - sym_identifier, - sym_preproc_parenthesized_expression, - sym_preproc_unary_expression, - sym_preproc_binary_expression, - STATE(5149), 9, + ACTIONS(5549), 1, + anon_sym_LBRACK, + ACTIONS(6355), 1, + anon_sym_switch, + ACTIONS(6369), 1, + anon_sym_with, + ACTIONS(6781), 1, + anon_sym_QMARK, + ACTIONS(6787), 1, + anon_sym_SLASH, + ACTIONS(6789), 1, + anon_sym_CARET, + ACTIONS(6791), 1, + anon_sym_PIPE, + ACTIONS(6793), 1, + anon_sym_AMP, + ACTIONS(6797), 1, + anon_sym_GT_GT, + ACTIONS(6803), 1, + anon_sym_DOT_DOT, + ACTIONS(6805), 1, + anon_sym_AMP_AMP, + ACTIONS(6807), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6809), 1, + anon_sym_QMARK_QMARK, + ACTIONS(6811), 1, + anon_sym_as, + ACTIONS(6813), 1, + anon_sym_is, + STATE(2467), 1, + sym_bracketed_argument_list, + STATE(3381), 1, + sym_argument_list, + ACTIONS(5304), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6779), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(6783), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6785), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(6795), 2, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + ACTIONS(6799), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6801), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4996), 3, + aux_sym_preproc_if_token3, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + STATE(5085), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -645053,30 +639201,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, - [146465] = 40, + [140376] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -645097,73 +639222,74 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4100), 1, + ACTIONS(4427), 1, anon_sym_DOT, - ACTIONS(4102), 1, + ACTIONS(4429), 1, anon_sym_DASH_GT, - ACTIONS(5264), 1, + ACTIONS(6557), 1, anon_sym_LPAREN, - ACTIONS(5304), 1, - anon_sym_BANG, - ACTIONS(5573), 1, + ACTIONS(6607), 1, anon_sym_LBRACK, - ACTIONS(6343), 1, + ACTIONS(6613), 1, + anon_sym_BANG, + ACTIONS(6637), 1, anon_sym_switch, - ACTIONS(6357), 1, + ACTIONS(6651), 1, anon_sym_with, - ACTIONS(6813), 1, - anon_sym_as, - ACTIONS(7139), 1, + ACTIONS(6713), 1, anon_sym_QMARK, - ACTIONS(7145), 1, + ACTIONS(6719), 1, anon_sym_SLASH, - ACTIONS(7147), 1, + ACTIONS(6721), 1, anon_sym_CARET, - ACTIONS(7149), 1, + ACTIONS(6723), 1, anon_sym_PIPE, - ACTIONS(7151), 1, + ACTIONS(6725), 1, anon_sym_AMP, - ACTIONS(7155), 1, + ACTIONS(6729), 1, anon_sym_GT_GT, - ACTIONS(7161), 1, + ACTIONS(6735), 1, anon_sym_DOT_DOT, - ACTIONS(7163), 1, + ACTIONS(6737), 1, anon_sym_AMP_AMP, - ACTIONS(7165), 1, + ACTIONS(6739), 1, anon_sym_PIPE_PIPE, - ACTIONS(7167), 1, + ACTIONS(6741), 1, anon_sym_QMARK_QMARK, - ACTIONS(7169), 1, + ACTIONS(6743), 1, + anon_sym_as, + ACTIONS(6745), 1, anon_sym_is, - STATE(2485), 1, + STATE(3188), 1, sym_bracketed_argument_list, - STATE(3487), 1, + STATE(4584), 1, sym_argument_list, - ACTIONS(5306), 2, + ACTIONS(6615), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7137), 2, + ACTIONS(6711), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7141), 2, + ACTIONS(6715), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7143), 2, + ACTIONS(6717), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7153), 2, + ACTIONS(6727), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7157), 2, + ACTIONS(6731), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7159), 2, + ACTIONS(6733), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(8010), 2, + ACTIONS(5709), 3, + sym_interpolation_close_brace, + anon_sym_COLON, anon_sym_COMMA, - anon_sym_RBRACE, - STATE(5150), 9, + STATE(5086), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -645173,7 +639299,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [146602] = 40, + [140514] = 24, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -645194,73 +639320,40 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4100), 1, + ACTIONS(4042), 1, anon_sym_DOT, - ACTIONS(4102), 1, + ACTIONS(4044), 1, anon_sym_DASH_GT, - ACTIONS(5264), 1, + ACTIONS(5257), 1, anon_sym_LPAREN, - ACTIONS(5304), 1, + ACTIONS(5302), 1, anon_sym_BANG, - ACTIONS(5573), 1, + ACTIONS(5549), 1, anon_sym_LBRACK, - ACTIONS(6343), 1, + ACTIONS(6355), 1, anon_sym_switch, - ACTIONS(6357), 1, + ACTIONS(6369), 1, anon_sym_with, - ACTIONS(6813), 1, - anon_sym_as, - ACTIONS(7139), 1, - anon_sym_QMARK, - ACTIONS(7145), 1, - anon_sym_SLASH, - ACTIONS(7147), 1, - anon_sym_CARET, - ACTIONS(7149), 1, - anon_sym_PIPE, - ACTIONS(7151), 1, - anon_sym_AMP, - ACTIONS(7155), 1, - anon_sym_GT_GT, - ACTIONS(7161), 1, + ACTIONS(6803), 1, anon_sym_DOT_DOT, - ACTIONS(7163), 1, - anon_sym_AMP_AMP, - ACTIONS(7165), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7167), 1, - anon_sym_QMARK_QMARK, - ACTIONS(7169), 1, - anon_sym_is, - STATE(2485), 1, + STATE(2467), 1, sym_bracketed_argument_list, - STATE(3487), 1, + STATE(3381), 1, sym_argument_list, - ACTIONS(5306), 2, + ACTIONS(5304), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7137), 2, + ACTIONS(5739), 9, anon_sym_LT, anon_sym_GT, - ACTIONS(7141), 2, + anon_sym_QMARK, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7143), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(7153), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - ACTIONS(7157), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(7159), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(8012), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - STATE(5151), 9, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT_GT, + STATE(5087), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -645270,7 +639363,25 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [146739] = 40, + ACTIONS(5737), 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_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, + [140620] = 35, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -645291,73 +639402,69 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4100), 1, + ACTIONS(4042), 1, anon_sym_DOT, - ACTIONS(4102), 1, + ACTIONS(4044), 1, anon_sym_DASH_GT, - ACTIONS(5264), 1, + ACTIONS(5257), 1, anon_sym_LPAREN, - ACTIONS(5304), 1, + ACTIONS(5302), 1, anon_sym_BANG, - ACTIONS(5573), 1, + ACTIONS(5549), 1, anon_sym_LBRACK, - ACTIONS(6343), 1, + ACTIONS(6355), 1, anon_sym_switch, - ACTIONS(6357), 1, + ACTIONS(6369), 1, anon_sym_with, - ACTIONS(6813), 1, - anon_sym_as, - ACTIONS(7139), 1, - anon_sym_QMARK, - ACTIONS(7145), 1, + ACTIONS(6787), 1, anon_sym_SLASH, - ACTIONS(7147), 1, - anon_sym_CARET, - ACTIONS(7149), 1, - anon_sym_PIPE, - ACTIONS(7151), 1, + ACTIONS(6793), 1, anon_sym_AMP, - ACTIONS(7155), 1, + ACTIONS(6797), 1, anon_sym_GT_GT, - ACTIONS(7161), 1, + ACTIONS(6803), 1, anon_sym_DOT_DOT, - ACTIONS(7163), 1, - anon_sym_AMP_AMP, - ACTIONS(7165), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7167), 1, - anon_sym_QMARK_QMARK, - ACTIONS(7169), 1, + ACTIONS(6811), 1, + anon_sym_as, + ACTIONS(6813), 1, anon_sym_is, - STATE(2485), 1, + STATE(2467), 1, sym_bracketed_argument_list, - STATE(3487), 1, + STATE(3381), 1, sym_argument_list, - ACTIONS(5306), 2, + ACTIONS(5304), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7137), 2, + ACTIONS(5739), 2, + anon_sym_QMARK, + anon_sym_PIPE, + ACTIONS(6779), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7141), 2, + ACTIONS(6783), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7143), 2, + ACTIONS(6785), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7153), 2, + ACTIONS(6795), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7157), 2, + ACTIONS(6799), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7159), 2, + ACTIONS(6801), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(7544), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - STATE(5152), 9, + ACTIONS(5737), 7, + anon_sym_CARET, + 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(5088), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -645367,7 +639474,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [146876] = 41, + [140748] = 36, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -645388,74 +639495,70 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4100), 1, + ACTIONS(4042), 1, anon_sym_DOT, - ACTIONS(4102), 1, + ACTIONS(4044), 1, anon_sym_DASH_GT, - ACTIONS(5264), 1, + ACTIONS(5257), 1, anon_sym_LPAREN, - ACTIONS(5304), 1, + ACTIONS(5302), 1, anon_sym_BANG, - ACTIONS(5573), 1, + ACTIONS(5549), 1, anon_sym_LBRACK, - ACTIONS(6343), 1, + ACTIONS(6355), 1, anon_sym_switch, - ACTIONS(6357), 1, + ACTIONS(6369), 1, anon_sym_with, - ACTIONS(6813), 1, - anon_sym_as, - ACTIONS(7139), 1, - anon_sym_QMARK, - ACTIONS(7145), 1, + ACTIONS(6787), 1, anon_sym_SLASH, - ACTIONS(7147), 1, + ACTIONS(6789), 1, anon_sym_CARET, - ACTIONS(7149), 1, - anon_sym_PIPE, - ACTIONS(7151), 1, + ACTIONS(6793), 1, anon_sym_AMP, - ACTIONS(7155), 1, + ACTIONS(6797), 1, anon_sym_GT_GT, - ACTIONS(7161), 1, + ACTIONS(6803), 1, anon_sym_DOT_DOT, - ACTIONS(7163), 1, - anon_sym_AMP_AMP, - ACTIONS(7165), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7167), 1, - anon_sym_QMARK_QMARK, - ACTIONS(7169), 1, + ACTIONS(6811), 1, + anon_sym_as, + ACTIONS(6813), 1, anon_sym_is, - ACTIONS(7831), 1, - anon_sym_COMMA, - ACTIONS(8014), 1, - anon_sym_RPAREN, - STATE(2485), 1, + STATE(2467), 1, sym_bracketed_argument_list, - STATE(3487), 1, + STATE(3381), 1, sym_argument_list, - ACTIONS(5306), 2, + ACTIONS(5304), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7137), 2, + ACTIONS(5739), 2, + anon_sym_QMARK, + anon_sym_PIPE, + ACTIONS(6779), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7141), 2, + ACTIONS(6783), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7143), 2, + ACTIONS(6785), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7153), 2, + ACTIONS(6795), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7157), 2, + ACTIONS(6799), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7159), 2, + ACTIONS(6801), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - STATE(5153), 9, + ACTIONS(5737), 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(5089), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -645465,7 +639568,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [147015] = 15, + [140878] = 42, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -645486,58 +639589,86 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8016), 1, - anon_sym_and, - ACTIONS(8018), 1, - anon_sym_or, - STATE(5154), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - ACTIONS(6207), 11, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, + ACTIONS(4042), 1, + anon_sym_DOT, + ACTIONS(4044), 1, + anon_sym_DASH_GT, + ACTIONS(5257), 1, + anon_sym_LPAREN, + ACTIONS(5302), 1, anon_sym_BANG, - anon_sym_PLUS, - anon_sym_DASH, + ACTIONS(5549), 1, + anon_sym_LBRACK, + ACTIONS(6355), 1, + anon_sym_switch, + ACTIONS(6369), 1, + anon_sym_with, + ACTIONS(6811), 1, + anon_sym_as, + ACTIONS(7231), 1, + anon_sym_QMARK, + ACTIONS(7237), 1, anon_sym_SLASH, + ACTIONS(7239), 1, + anon_sym_CARET, + ACTIONS(7241), 1, anon_sym_PIPE, + ACTIONS(7243), 1, anon_sym_AMP, + ACTIONS(7247), 1, anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(6205), 24, - anon_sym_LBRACK, - anon_sym_LPAREN, + ACTIONS(7253), 1, + anon_sym_DOT_DOT, + ACTIONS(7255), 1, + anon_sym_AMP_AMP, + ACTIONS(7257), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7259), 1, + anon_sym_QMARK_QMARK, + ACTIONS(7261), 1, + anon_sym_is, + ACTIONS(7833), 1, + anon_sym_COMMA, + ACTIONS(7835), 1, + anon_sym_RBRACE, + STATE(2467), 1, + sym_bracketed_argument_list, + STATE(3381), 1, + sym_argument_list, + STATE(6909), 1, + aux_sym__for_statement_conditions_repeat1, + ACTIONS(5304), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + ACTIONS(7229), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(7233), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(7235), 2, anon_sym_STAR, anon_sym_PERCENT, - anon_sym_CARET, + ACTIONS(7245), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, + ACTIONS(7249), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + ACTIONS(7251), 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_equals, - anon_sym_as, - anon_sym_is, - anon_sym_DASH_GT, - anon_sym_with, - [147102] = 14, + STATE(5090), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + [141020] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -645558,9 +639689,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8020), 1, - anon_sym_and, - STATE(5155), 9, + ACTIONS(7837), 1, + anon_sym_into, + STATE(5093), 1, + aux_sym__query_body_repeat2, + STATE(5091), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -645570,9 +639703,10 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(6069), 11, + ACTIONS(5935), 12, anon_sym_LT, anon_sym_GT, + anon_sym_in, anon_sym_QMARK, anon_sym_BANG, anon_sym_PLUS, @@ -645582,7 +639716,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT, - ACTIONS(6067), 25, + ACTIONS(5933), 24, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_PLUS_PLUS, @@ -645596,10 +639730,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_when, anon_sym_DOT_DOT, + anon_sym_and, anon_sym_or, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -645608,7 +639741,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, anon_sym_DASH_GT, anon_sym_with, - [147187] = 40, + [141108] = 34, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -645629,73 +639762,68 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4100), 1, + ACTIONS(4042), 1, anon_sym_DOT, - ACTIONS(4102), 1, + ACTIONS(4044), 1, anon_sym_DASH_GT, - ACTIONS(5264), 1, + ACTIONS(5257), 1, anon_sym_LPAREN, - ACTIONS(5304), 1, + ACTIONS(5302), 1, anon_sym_BANG, - ACTIONS(5573), 1, + ACTIONS(5549), 1, anon_sym_LBRACK, - ACTIONS(6343), 1, + ACTIONS(6355), 1, anon_sym_switch, - ACTIONS(6357), 1, + ACTIONS(6369), 1, anon_sym_with, - ACTIONS(6459), 1, + ACTIONS(6787), 1, anon_sym_SLASH, - ACTIONS(6461), 1, - anon_sym_CARET, - ACTIONS(6463), 1, - anon_sym_PIPE, - ACTIONS(6465), 1, - anon_sym_AMP, - ACTIONS(6469), 1, + ACTIONS(6797), 1, anon_sym_GT_GT, - ACTIONS(6479), 1, - anon_sym_AMP_AMP, - ACTIONS(6481), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6483), 1, - anon_sym_QMARK_QMARK, - ACTIONS(6813), 1, - anon_sym_as, - ACTIONS(7139), 1, - anon_sym_QMARK, - ACTIONS(7161), 1, + ACTIONS(6803), 1, anon_sym_DOT_DOT, - ACTIONS(7169), 1, + ACTIONS(6811), 1, + anon_sym_as, + ACTIONS(6813), 1, anon_sym_is, - STATE(2485), 1, + STATE(2467), 1, sym_bracketed_argument_list, - STATE(3487), 1, + STATE(3381), 1, sym_argument_list, - ACTIONS(5306), 2, + ACTIONS(5304), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6451), 2, + ACTIONS(6779), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(6455), 2, + ACTIONS(6783), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6457), 2, + ACTIONS(6785), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(6467), 2, + ACTIONS(6795), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(6471), 2, + ACTIONS(6799), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6473), 2, + ACTIONS(6801), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(7831), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - STATE(5156), 9, + ACTIONS(5739), 3, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_AMP, + ACTIONS(5737), 7, + anon_sym_CARET, + 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(5092), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -645705,7 +639833,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [147324] = 15, + [141234] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -645726,11 +639854,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8022), 1, - anon_sym_and, - ACTIONS(8024), 1, - anon_sym_or, - STATE(5157), 9, + ACTIONS(7837), 1, + anon_sym_into, + STATE(5096), 1, + aux_sym__query_body_repeat2, + STATE(5093), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -645740,9 +639868,10 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5356), 11, + ACTIONS(5881), 12, anon_sym_LT, anon_sym_GT, + anon_sym_in, anon_sym_QMARK, anon_sym_BANG, anon_sym_PLUS, @@ -645752,7 +639881,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT, - ACTIONS(5354), 24, + ACTIONS(5879), 24, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_PLUS_PLUS, @@ -645768,16 +639897,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, - [147411] = 14, + [141322] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -645798,9 +639927,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8026), 1, - anon_sym_SEMI, - STATE(5158), 9, + ACTIONS(7837), 1, + anon_sym_into, + STATE(5097), 1, + aux_sym__query_body_repeat2, + STATE(5094), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -645810,9 +639941,10 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5056), 11, + ACTIONS(5881), 12, anon_sym_LT, anon_sym_GT, + anon_sym_in, anon_sym_QMARK, anon_sym_BANG, anon_sym_PLUS, @@ -645822,7 +639954,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT, - ACTIONS(5054), 25, + ACTIONS(5879), 24, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_PLUS_PLUS, @@ -645838,6 +639970,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, @@ -645845,10 +639979,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, - [147496] = 21, + [141410] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -645869,31 +640000,74 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(7904), 1, - sym__identifier_token, - ACTIONS(7908), 1, + ACTIONS(4042), 1, + anon_sym_DOT, + ACTIONS(4044), 1, + anon_sym_DASH_GT, + ACTIONS(5257), 1, anon_sym_LPAREN, - ACTIONS(7910), 1, + ACTIONS(5302), 1, anon_sym_BANG, - ACTIONS(7914), 1, - anon_sym_SQUOTE, - ACTIONS(7916), 1, - sym_integer_literal, - STATE(6452), 1, - sym__reserved_identifier, - STATE(6546), 1, - sym__preproc_expression, - ACTIONS(7912), 2, - anon_sym_true, - anon_sym_false, - STATE(6542), 6, - sym_character_literal, - sym_boolean_literal, - sym_identifier, - sym_preproc_parenthesized_expression, - sym_preproc_unary_expression, - sym_preproc_binary_expression, - STATE(5159), 9, + ACTIONS(5549), 1, + anon_sym_LBRACK, + ACTIONS(6355), 1, + anon_sym_switch, + ACTIONS(6369), 1, + anon_sym_with, + ACTIONS(6811), 1, + anon_sym_as, + ACTIONS(7231), 1, + anon_sym_QMARK, + ACTIONS(7237), 1, + anon_sym_SLASH, + ACTIONS(7239), 1, + anon_sym_CARET, + ACTIONS(7241), 1, + anon_sym_PIPE, + ACTIONS(7243), 1, + anon_sym_AMP, + ACTIONS(7247), 1, + anon_sym_GT_GT, + ACTIONS(7253), 1, + anon_sym_DOT_DOT, + ACTIONS(7255), 1, + anon_sym_AMP_AMP, + ACTIONS(7257), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7259), 1, + anon_sym_QMARK_QMARK, + ACTIONS(7261), 1, + anon_sym_is, + STATE(2467), 1, + sym_bracketed_argument_list, + STATE(3381), 1, + sym_argument_list, + ACTIONS(5304), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7229), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(7233), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(7235), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(7245), 2, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + ACTIONS(7249), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(7251), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(7839), 3, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_RPAREN, + STATE(5095), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -645903,30 +640077,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(7906), 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, - [147595] = 18, + [141548] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -645947,24 +640098,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4102), 1, - anon_sym_DASH_GT, - ACTIONS(6678), 1, - anon_sym_LBRACK, - ACTIONS(6680), 1, - anon_sym_STAR, - ACTIONS(6716), 1, - anon_sym_QMARK, - ACTIONS(8028), 1, - anon_sym_DOT, - ACTIONS(4018), 6, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - STATE(5160), 9, + ACTIONS(7841), 1, + anon_sym_into, + STATE(5096), 10, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -645974,103 +640110,27 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(4016), 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, - [147688] = 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(4755), 1, - anon_sym_DASH_GT, - ACTIONS(4804), 1, - anon_sym_LPAREN, - ACTIONS(4808), 1, - anon_sym_DOT, - ACTIONS(4835), 1, - anon_sym_LBRACK, - ACTIONS(4839), 1, - anon_sym_BANG, - ACTIONS(6293), 1, - anon_sym_switch, - ACTIONS(6307), 1, - anon_sym_with, - ACTIONS(7962), 1, - anon_sym_SLASH, - ACTIONS(7978), 1, - anon_sym_DOT_DOT, - STATE(2433), 1, - sym_bracketed_argument_list, - STATE(3035), 1, - sym_argument_list, - ACTIONS(4841), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(7958), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(7960), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(5664), 6, + aux_sym__query_body_repeat2, + ACTIONS(5953), 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, - STATE(5161), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - ACTIONS(5660), 14, + anon_sym_DOT, + ACTIONS(5951), 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, @@ -646078,14 +640138,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_by, anon_sym_as, anon_sym_is, - [147799] = 26, + anon_sym_DASH_GT, + anon_sym_with, + [141634] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -646106,37 +640170,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(3879), 1, - anon_sym_EQ_GT, - ACTIONS(3881), 1, - anon_sym_LBRACE, - ACTIONS(3897), 1, - sym_discard, - ACTIONS(6823), 1, - sym__identifier_token, - ACTIONS(8030), 1, - anon_sym_LPAREN, - STATE(2571), 1, - sym__reserved_identifier, - STATE(3463), 1, - sym_parenthesized_variable_designation, - STATE(3492), 1, - sym__variable_designation, - STATE(5052), 1, - sym_identifier, - STATE(5706), 1, - sym_positional_pattern_clause, - STATE(5751), 1, - sym_property_pattern_clause, - STATE(7311), 1, - sym_parameter_list, - STATE(7536), 1, - sym__lambda_parameters, - ACTIONS(3883), 3, - anon_sym_when, - anon_sym_and, - anon_sym_or, - STATE(5162), 9, + ACTIONS(7837), 1, + anon_sym_into, + STATE(5096), 1, + aux_sym__query_body_repeat2, + STATE(5097), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -646146,93 +640184,24 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(6825), 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, - [147908] = 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(4755), 1, - anon_sym_DASH_GT, - ACTIONS(4804), 1, - anon_sym_LPAREN, - ACTIONS(4808), 1, - anon_sym_DOT, - ACTIONS(4835), 1, - anon_sym_LBRACK, - ACTIONS(4839), 1, - anon_sym_BANG, - ACTIONS(6293), 1, - anon_sym_switch, - ACTIONS(6307), 1, - anon_sym_with, - ACTIONS(7892), 1, - anon_sym_DOT_DOT, - STATE(2433), 1, - sym_bracketed_argument_list, - STATE(3035), 1, - sym_argument_list, - ACTIONS(4841), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5664), 9, + ACTIONS(5960), 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, - STATE(5163), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - ACTIONS(5660), 16, + anon_sym_DOT, + ACTIONS(5958), 24, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_STAR, anon_sym_PERCENT, anon_sym_CARET, @@ -646242,14 +640211,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_equals, anon_sym_as, anon_sym_is, - [148013] = 41, + anon_sym_DASH_GT, + anon_sym_with, + [141722] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -646270,74 +640243,74 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4755), 1, + ACTIONS(4042), 1, + anon_sym_DOT, + ACTIONS(4044), 1, anon_sym_DASH_GT, - ACTIONS(4804), 1, + ACTIONS(5257), 1, anon_sym_LPAREN, - ACTIONS(4808), 1, - anon_sym_DOT, - ACTIONS(4835), 1, - anon_sym_LBRACK, - ACTIONS(4839), 1, + ACTIONS(5302), 1, anon_sym_BANG, - ACTIONS(5858), 1, - anon_sym_into, - ACTIONS(5860), 1, - anon_sym_in, - ACTIONS(6293), 1, + ACTIONS(5549), 1, + anon_sym_LBRACK, + ACTIONS(6355), 1, anon_sym_switch, - ACTIONS(6307), 1, + ACTIONS(6369), 1, anon_sym_with, - ACTIONS(6393), 1, - anon_sym_as, - ACTIONS(8034), 1, + ACTIONS(6781), 1, anon_sym_QMARK, - ACTIONS(8040), 1, + ACTIONS(6787), 1, anon_sym_SLASH, - ACTIONS(8042), 1, + ACTIONS(6789), 1, anon_sym_CARET, - ACTIONS(8044), 1, + ACTIONS(6791), 1, anon_sym_PIPE, - ACTIONS(8046), 1, + ACTIONS(6793), 1, anon_sym_AMP, - ACTIONS(8050), 1, + ACTIONS(6797), 1, anon_sym_GT_GT, - ACTIONS(8056), 1, + ACTIONS(6803), 1, anon_sym_DOT_DOT, - ACTIONS(8058), 1, + ACTIONS(6805), 1, anon_sym_AMP_AMP, - ACTIONS(8060), 1, + ACTIONS(6807), 1, anon_sym_PIPE_PIPE, - ACTIONS(8062), 1, + ACTIONS(6809), 1, anon_sym_QMARK_QMARK, - ACTIONS(8064), 1, + ACTIONS(6811), 1, + anon_sym_as, + ACTIONS(6813), 1, anon_sym_is, - STATE(2433), 1, + STATE(2467), 1, sym_bracketed_argument_list, - STATE(3035), 1, + STATE(3381), 1, sym_argument_list, - ACTIONS(4841), 2, + ACTIONS(5304), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(8032), 2, + ACTIONS(6779), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(8036), 2, + ACTIONS(6783), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(8038), 2, + ACTIONS(6785), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8048), 2, + ACTIONS(6795), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(8052), 2, + ACTIONS(6799), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(8054), 2, + ACTIONS(6801), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - STATE(5164), 9, + ACTIONS(5849), 3, + aux_sym_preproc_if_token3, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + STATE(5098), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -646347,7 +640320,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [148152] = 22, + [141860] = 29, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -646368,26 +640341,49 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4755), 1, + ACTIONS(4042), 1, + anon_sym_DOT, + ACTIONS(4044), 1, anon_sym_DASH_GT, - ACTIONS(4804), 1, + ACTIONS(5257), 1, anon_sym_LPAREN, - ACTIONS(4808), 1, - anon_sym_DOT, - ACTIONS(4835), 1, + ACTIONS(5300), 1, anon_sym_LBRACK, - ACTIONS(4839), 1, + ACTIONS(5302), 1, anon_sym_BANG, - ACTIONS(8056), 1, + ACTIONS(6495), 1, + anon_sym_switch, + ACTIONS(6509), 1, + anon_sym_with, + ACTIONS(7450), 1, + anon_sym_SLASH, + ACTIONS(7460), 1, + anon_sym_GT_GT, + ACTIONS(7466), 1, anon_sym_DOT_DOT, - STATE(2433), 1, + STATE(2759), 1, sym_bracketed_argument_list, - STATE(3035), 1, + STATE(3381), 1, sym_argument_list, - ACTIONS(4841), 2, + ACTIONS(5304), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(5165), 9, + ACTIONS(7446), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(7448), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(7458), 2, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + ACTIONS(5739), 5, + anon_sym_LT, + anon_sym_GT, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_AMP, + STATE(5099), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -646397,36 +640393,21 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5733), 10, - anon_sym_LT, - anon_sym_GT, + ACTIONS(5737), 13, 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(5731), 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_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, - [148253] = 41, + [141976] = 26, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -646447,74 +640428,44 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4755), 1, + ACTIONS(4042), 1, + anon_sym_DOT, + ACTIONS(4044), 1, anon_sym_DASH_GT, - ACTIONS(4804), 1, + ACTIONS(5257), 1, anon_sym_LPAREN, - ACTIONS(4808), 1, - anon_sym_DOT, - ACTIONS(4835), 1, + ACTIONS(5300), 1, anon_sym_LBRACK, - ACTIONS(4839), 1, + ACTIONS(5302), 1, anon_sym_BANG, - ACTIONS(5864), 1, - anon_sym_into, - ACTIONS(5866), 1, - anon_sym_in, - ACTIONS(6293), 1, + ACTIONS(6495), 1, anon_sym_switch, - ACTIONS(6307), 1, + ACTIONS(6509), 1, anon_sym_with, - ACTIONS(6393), 1, - anon_sym_as, - ACTIONS(8034), 1, - anon_sym_QMARK, - ACTIONS(8040), 1, + ACTIONS(7450), 1, anon_sym_SLASH, - ACTIONS(8042), 1, - anon_sym_CARET, - ACTIONS(8044), 1, - anon_sym_PIPE, - ACTIONS(8046), 1, - anon_sym_AMP, - ACTIONS(8050), 1, - anon_sym_GT_GT, - ACTIONS(8056), 1, + ACTIONS(7466), 1, anon_sym_DOT_DOT, - ACTIONS(8058), 1, - anon_sym_AMP_AMP, - ACTIONS(8060), 1, - anon_sym_PIPE_PIPE, - ACTIONS(8062), 1, - anon_sym_QMARK_QMARK, - ACTIONS(8064), 1, - anon_sym_is, - STATE(2433), 1, + STATE(2759), 1, sym_bracketed_argument_list, - STATE(3035), 1, + STATE(3381), 1, sym_argument_list, - ACTIONS(4841), 2, + ACTIONS(5304), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(8032), 2, + ACTIONS(7448), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(5739), 8, anon_sym_LT, anon_sym_GT, - ACTIONS(8036), 2, + anon_sym_QMARK, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(8038), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(8048), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - ACTIONS(8052), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(8054), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - STATE(5166), 9, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT_GT, + STATE(5100), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -646524,104 +640475,23 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [148392] = 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(4755), 1, - anon_sym_DASH_GT, - ACTIONS(4804), 1, - anon_sym_LPAREN, - ACTIONS(4808), 1, - anon_sym_DOT, - ACTIONS(4835), 1, - anon_sym_LBRACK, - ACTIONS(4839), 1, - anon_sym_BANG, - ACTIONS(6293), 1, - anon_sym_switch, - ACTIONS(6307), 1, - anon_sym_with, - ACTIONS(6393), 1, - anon_sym_as, - ACTIONS(7920), 1, - anon_sym_QMARK, - ACTIONS(7926), 1, - anon_sym_SLASH, - ACTIONS(7928), 1, + ACTIONS(5737), 15, + anon_sym_in, anon_sym_CARET, - ACTIONS(7930), 1, - anon_sym_PIPE, - ACTIONS(7932), 1, - anon_sym_AMP, - ACTIONS(7936), 1, - anon_sym_GT_GT, - ACTIONS(7942), 1, - anon_sym_DOT_DOT, - ACTIONS(7944), 1, - anon_sym_AMP_AMP, - ACTIONS(7946), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7948), 1, - anon_sym_QMARK_QMARK, - ACTIONS(7950), 1, - anon_sym_is, - STATE(2433), 1, - sym_bracketed_argument_list, - STATE(3035), 1, - sym_argument_list, - ACTIONS(4841), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5767), 2, - anon_sym_EQ_GT, - anon_sym_into, - ACTIONS(7918), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(7922), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(7924), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(7934), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7938), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7940), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - STATE(5167), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - [148529] = 41, + anon_sym_and, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, + anon_sym_as, + anon_sym_is, + [142086] = 35, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -646642,74 +640512,69 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4100), 1, + ACTIONS(4042), 1, anon_sym_DOT, - ACTIONS(4102), 1, + ACTIONS(4044), 1, anon_sym_DASH_GT, - ACTIONS(5264), 1, + ACTIONS(5257), 1, anon_sym_LPAREN, - ACTIONS(5304), 1, - anon_sym_BANG, - ACTIONS(5573), 1, + ACTIONS(5300), 1, anon_sym_LBRACK, - ACTIONS(6343), 1, + ACTIONS(5302), 1, + anon_sym_BANG, + ACTIONS(6495), 1, anon_sym_switch, - ACTIONS(6357), 1, + ACTIONS(6509), 1, anon_sym_with, - ACTIONS(6813), 1, - anon_sym_as, - ACTIONS(7139), 1, - anon_sym_QMARK, - ACTIONS(7145), 1, + ACTIONS(7450), 1, anon_sym_SLASH, - ACTIONS(7147), 1, - anon_sym_CARET, - ACTIONS(7149), 1, - anon_sym_PIPE, - ACTIONS(7151), 1, + ACTIONS(7456), 1, anon_sym_AMP, - ACTIONS(7155), 1, + ACTIONS(7460), 1, anon_sym_GT_GT, - ACTIONS(7161), 1, + ACTIONS(7466), 1, anon_sym_DOT_DOT, - ACTIONS(7163), 1, - anon_sym_AMP_AMP, - ACTIONS(7165), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7167), 1, - anon_sym_QMARK_QMARK, - ACTIONS(7169), 1, + ACTIONS(7474), 1, + anon_sym_as, + ACTIONS(7476), 1, anon_sym_is, - ACTIONS(7831), 1, - anon_sym_COMMA, - ACTIONS(8066), 1, - anon_sym_RPAREN, - STATE(2485), 1, + STATE(2759), 1, sym_bracketed_argument_list, - STATE(3487), 1, + STATE(3381), 1, sym_argument_list, - ACTIONS(5306), 2, + ACTIONS(5304), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7137), 2, + ACTIONS(5739), 2, + anon_sym_QMARK, + anon_sym_PIPE, + ACTIONS(7444), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7141), 2, + ACTIONS(7446), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7143), 2, + ACTIONS(7448), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7153), 2, + ACTIONS(7458), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7157), 2, + ACTIONS(7462), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7159), 2, + ACTIONS(7464), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - STATE(5168), 9, + ACTIONS(5737), 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(5101), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -646719,7 +640584,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [148668] = 41, + [142214] = 36, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -646740,74 +640605,70 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4755), 1, + ACTIONS(4042), 1, + anon_sym_DOT, + ACTIONS(4044), 1, anon_sym_DASH_GT, - ACTIONS(4804), 1, + ACTIONS(5257), 1, anon_sym_LPAREN, - ACTIONS(4808), 1, - anon_sym_DOT, - ACTIONS(4835), 1, + ACTIONS(5300), 1, anon_sym_LBRACK, - ACTIONS(4839), 1, + ACTIONS(5302), 1, anon_sym_BANG, - ACTIONS(5072), 1, - anon_sym_into, - ACTIONS(5074), 1, - anon_sym_in, - ACTIONS(6293), 1, + ACTIONS(6495), 1, anon_sym_switch, - ACTIONS(6307), 1, + ACTIONS(6509), 1, anon_sym_with, - ACTIONS(6393), 1, - anon_sym_as, - ACTIONS(8034), 1, - anon_sym_QMARK, - ACTIONS(8040), 1, + ACTIONS(7450), 1, anon_sym_SLASH, - ACTIONS(8042), 1, + ACTIONS(7452), 1, anon_sym_CARET, - ACTIONS(8044), 1, - anon_sym_PIPE, - ACTIONS(8046), 1, + ACTIONS(7456), 1, anon_sym_AMP, - ACTIONS(8050), 1, + ACTIONS(7460), 1, anon_sym_GT_GT, - ACTIONS(8056), 1, + ACTIONS(7466), 1, anon_sym_DOT_DOT, - ACTIONS(8058), 1, - anon_sym_AMP_AMP, - ACTIONS(8060), 1, - anon_sym_PIPE_PIPE, - ACTIONS(8062), 1, - anon_sym_QMARK_QMARK, - ACTIONS(8064), 1, + ACTIONS(7474), 1, + anon_sym_as, + ACTIONS(7476), 1, anon_sym_is, - STATE(2433), 1, + STATE(2759), 1, sym_bracketed_argument_list, - STATE(3035), 1, + STATE(3381), 1, sym_argument_list, - ACTIONS(4841), 2, + ACTIONS(5304), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(8032), 2, + ACTIONS(5739), 2, + anon_sym_QMARK, + anon_sym_PIPE, + ACTIONS(7444), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(8036), 2, + ACTIONS(7446), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(8038), 2, + ACTIONS(7448), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8048), 2, + ACTIONS(7458), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(8052), 2, + ACTIONS(7462), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(8054), 2, + ACTIONS(7464), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - STATE(5169), 9, + ACTIONS(5737), 6, + anon_sym_in, + anon_sym_and, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, + STATE(5102), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -646817,7 +640678,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [148807] = 40, + [142344] = 34, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -646838,73 +640699,68 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4755), 1, + ACTIONS(4042), 1, + anon_sym_DOT, + ACTIONS(4044), 1, anon_sym_DASH_GT, - ACTIONS(4804), 1, + ACTIONS(5257), 1, anon_sym_LPAREN, - ACTIONS(4808), 1, - anon_sym_DOT, - ACTIONS(4835), 1, + ACTIONS(5300), 1, anon_sym_LBRACK, - ACTIONS(4839), 1, + ACTIONS(5302), 1, anon_sym_BANG, - ACTIONS(6293), 1, + ACTIONS(6495), 1, anon_sym_switch, - ACTIONS(6307), 1, + ACTIONS(6509), 1, anon_sym_with, - ACTIONS(7902), 1, - anon_sym_DOT_DOT, - ACTIONS(8070), 1, - anon_sym_QMARK, - ACTIONS(8076), 1, + ACTIONS(7450), 1, anon_sym_SLASH, - ACTIONS(8078), 1, - anon_sym_CARET, - ACTIONS(8080), 1, - anon_sym_PIPE, - ACTIONS(8082), 1, - anon_sym_AMP, - ACTIONS(8086), 1, + ACTIONS(7460), 1, anon_sym_GT_GT, - ACTIONS(8092), 1, - anon_sym_AMP_AMP, - ACTIONS(8094), 1, - anon_sym_PIPE_PIPE, - ACTIONS(8096), 1, - anon_sym_QMARK_QMARK, - ACTIONS(8098), 1, + ACTIONS(7466), 1, + anon_sym_DOT_DOT, + ACTIONS(7474), 1, anon_sym_as, - ACTIONS(8100), 1, + ACTIONS(7476), 1, anon_sym_is, - STATE(2433), 1, + STATE(2759), 1, sym_bracketed_argument_list, - STATE(3035), 1, + STATE(3381), 1, sym_argument_list, - ACTIONS(4841), 2, + ACTIONS(5304), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5864), 2, - anon_sym_into, - anon_sym_on, - ACTIONS(8068), 2, + ACTIONS(7444), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(8072), 2, + ACTIONS(7446), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(8074), 2, + ACTIONS(7448), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8084), 2, + ACTIONS(7458), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(8088), 2, + ACTIONS(7462), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(8090), 2, + ACTIONS(7464), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - STATE(5170), 9, + ACTIONS(5739), 3, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_AMP, + ACTIONS(5737), 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(5103), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -646914,7 +640770,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [148944] = 40, + [142470] = 27, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -646935,73 +640791,45 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4755), 1, + ACTIONS(4042), 1, + anon_sym_DOT, + ACTIONS(4044), 1, anon_sym_DASH_GT, - ACTIONS(4804), 1, + ACTIONS(5257), 1, anon_sym_LPAREN, - ACTIONS(4808), 1, - anon_sym_DOT, - ACTIONS(4835), 1, + ACTIONS(5300), 1, anon_sym_LBRACK, - ACTIONS(4839), 1, + ACTIONS(5302), 1, anon_sym_BANG, - ACTIONS(6293), 1, + ACTIONS(6495), 1, anon_sym_switch, - ACTIONS(6307), 1, + ACTIONS(6509), 1, anon_sym_with, - ACTIONS(7902), 1, - anon_sym_DOT_DOT, - ACTIONS(8070), 1, - anon_sym_QMARK, - ACTIONS(8076), 1, + ACTIONS(7450), 1, anon_sym_SLASH, - ACTIONS(8078), 1, - anon_sym_CARET, - ACTIONS(8080), 1, - anon_sym_PIPE, - ACTIONS(8082), 1, - anon_sym_AMP, - ACTIONS(8086), 1, - anon_sym_GT_GT, - ACTIONS(8092), 1, - anon_sym_AMP_AMP, - ACTIONS(8094), 1, - anon_sym_PIPE_PIPE, - ACTIONS(8096), 1, - anon_sym_QMARK_QMARK, - ACTIONS(8098), 1, - anon_sym_as, - ACTIONS(8100), 1, - anon_sym_is, - STATE(2433), 1, + ACTIONS(7466), 1, + anon_sym_DOT_DOT, + STATE(2759), 1, sym_bracketed_argument_list, - STATE(3035), 1, + STATE(3381), 1, sym_argument_list, - ACTIONS(4841), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5072), 2, - anon_sym_into, - anon_sym_on, - ACTIONS(8068), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(8072), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(8074), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(8084), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - ACTIONS(8088), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(8090), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - STATE(5171), 9, + ACTIONS(5304), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7446), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(7448), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(5739), 6, + anon_sym_LT, + anon_sym_GT, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT_GT, + STATE(5104), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -647011,7 +640839,23 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [149081] = 41, + ACTIONS(5737), 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, + [142582] = 33, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -647032,74 +640876,67 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4755), 1, + ACTIONS(4042), 1, + anon_sym_DOT, + ACTIONS(4044), 1, anon_sym_DASH_GT, - ACTIONS(4804), 1, + ACTIONS(5257), 1, anon_sym_LPAREN, - ACTIONS(4808), 1, - anon_sym_DOT, - ACTIONS(4835), 1, + ACTIONS(5300), 1, anon_sym_LBRACK, - ACTIONS(4839), 1, + ACTIONS(5302), 1, anon_sym_BANG, - ACTIONS(5882), 1, - anon_sym_into, - ACTIONS(5884), 1, - anon_sym_in, - ACTIONS(6293), 1, + ACTIONS(6495), 1, anon_sym_switch, - ACTIONS(6307), 1, + ACTIONS(6509), 1, anon_sym_with, - ACTIONS(6393), 1, - anon_sym_as, - ACTIONS(8034), 1, - anon_sym_QMARK, - ACTIONS(8040), 1, + ACTIONS(7450), 1, anon_sym_SLASH, - ACTIONS(8042), 1, - anon_sym_CARET, - ACTIONS(8044), 1, - anon_sym_PIPE, - ACTIONS(8046), 1, - anon_sym_AMP, - ACTIONS(8050), 1, + ACTIONS(7460), 1, anon_sym_GT_GT, - ACTIONS(8056), 1, + ACTIONS(7466), 1, anon_sym_DOT_DOT, - ACTIONS(8058), 1, - anon_sym_AMP_AMP, - ACTIONS(8060), 1, - anon_sym_PIPE_PIPE, - ACTIONS(8062), 1, - anon_sym_QMARK_QMARK, - ACTIONS(8064), 1, + ACTIONS(7474), 1, + anon_sym_as, + ACTIONS(7476), 1, anon_sym_is, - STATE(2433), 1, + STATE(2759), 1, sym_bracketed_argument_list, - STATE(3035), 1, + STATE(3381), 1, sym_argument_list, - ACTIONS(4841), 2, + ACTIONS(5304), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(8032), 2, + ACTIONS(7444), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(8036), 2, + ACTIONS(7446), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(8038), 2, + ACTIONS(7448), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8048), 2, + ACTIONS(7458), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(8052), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(8054), 2, + ACTIONS(7464), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - STATE(5172), 9, + ACTIONS(5739), 3, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_AMP, + ACTIONS(5737), 9, + 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(5105), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -647109,7 +640946,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [149220] = 21, + [142706] = 27, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -647130,31 +640967,38 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(25), 1, + ACTIONS(3861), 1, + anon_sym_LBRACE, + ACTIONS(3877), 1, + sym_discard, + ACTIONS(6969), 1, sym__identifier_token, - ACTIONS(141), 1, - anon_sym_SQUOTE, - ACTIONS(7996), 1, + ACTIONS(6973), 1, anon_sym_LPAREN, - ACTIONS(7998), 1, - anon_sym_BANG, - ACTIONS(8000), 1, - sym_integer_literal, - STATE(2175), 1, + ACTIONS(7478), 1, + anon_sym_COMMA, + ACTIONS(7844), 1, + anon_sym_RPAREN, + STATE(2565), 1, sym__reserved_identifier, - STATE(6558), 1, - sym__preproc_expression, - ACTIONS(77), 2, - anon_sym_true, - anon_sym_false, - STATE(6543), 6, - sym_character_literal, - sym_boolean_literal, + STATE(3352), 1, + sym_parenthesized_variable_designation, + STATE(3422), 1, + sym__variable_designation, + STATE(5154), 1, + sym_positional_pattern_clause, + STATE(5691), 1, + sym_property_pattern_clause, + STATE(6424), 1, sym_identifier, - sym_preproc_parenthesized_expression, - sym_preproc_unary_expression, - sym_preproc_binary_expression, - STATE(5173), 9, + STATE(7378), 1, + sym__lambda_parameters, + STATE(7531), 1, + sym_parameter_list, + ACTIONS(3867), 2, + anon_sym_and, + anon_sym_or, + STATE(5106), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -647164,7 +641008,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(29), 22, + ACTIONS(6971), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -647187,7 +641031,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [149319] = 21, + [142818] = 21, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -647208,31 +641052,31 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(7904), 1, + ACTIONS(7846), 1, sym__identifier_token, - ACTIONS(7908), 1, + ACTIONS(7850), 1, anon_sym_LPAREN, - ACTIONS(7910), 1, + ACTIONS(7852), 1, anon_sym_BANG, - ACTIONS(7914), 1, + ACTIONS(7856), 1, anon_sym_SQUOTE, - ACTIONS(7916), 1, + ACTIONS(7858), 1, sym_integer_literal, - STATE(6452), 1, + STATE(6436), 1, sym__reserved_identifier, - STATE(6594), 1, + STATE(6494), 1, sym__preproc_expression, - ACTIONS(7912), 2, + ACTIONS(7854), 2, anon_sym_true, anon_sym_false, - STATE(6542), 6, + STATE(6482), 6, sym_character_literal, sym_boolean_literal, sym_identifier, sym_preproc_parenthesized_expression, sym_preproc_unary_expression, sym_preproc_binary_expression, - STATE(5174), 9, + STATE(5107), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -647242,7 +641086,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(7906), 22, + ACTIONS(7848), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -647265,7 +641109,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [149418] = 23, + [142917] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -647286,33 +641130,144 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(3881), 1, - anon_sym_LBRACE, - ACTIONS(3897), 1, - sym_discard, - ACTIONS(6823), 1, - sym__identifier_token, - ACTIONS(8102), 1, - anon_sym_LPAREN, - STATE(2571), 1, - sym__reserved_identifier, - STATE(3463), 1, - sym_parenthesized_variable_designation, - STATE(3479), 1, - sym_identifier, - STATE(3495), 1, - sym__variable_designation, - STATE(5694), 1, - sym_property_pattern_clause, - ACTIONS(3907), 2, + ACTIONS(7860), 1, anon_sym_and, + STATE(5108), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + ACTIONS(6097), 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(6095), 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, - ACTIONS(3905), 4, + 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, + [143002] = 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(4042), 1, + anon_sym_DOT, + ACTIONS(4044), 1, + anon_sym_DASH_GT, + ACTIONS(5257), 1, + anon_sym_LPAREN, + ACTIONS(5302), 1, + anon_sym_BANG, + ACTIONS(5549), 1, + anon_sym_LBRACK, + ACTIONS(6355), 1, + anon_sym_switch, + ACTIONS(6369), 1, + anon_sym_with, + ACTIONS(6811), 1, + anon_sym_as, + ACTIONS(7231), 1, + anon_sym_QMARK, + ACTIONS(7237), 1, + anon_sym_SLASH, + ACTIONS(7239), 1, + anon_sym_CARET, + ACTIONS(7241), 1, + anon_sym_PIPE, + ACTIONS(7243), 1, + anon_sym_AMP, + ACTIONS(7247), 1, + anon_sym_GT_GT, + ACTIONS(7253), 1, + anon_sym_DOT_DOT, + ACTIONS(7255), 1, + anon_sym_AMP_AMP, + ACTIONS(7257), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7259), 1, + anon_sym_QMARK_QMARK, + ACTIONS(7261), 1, + anon_sym_is, + STATE(2467), 1, + sym_bracketed_argument_list, + STATE(3381), 1, + sym_argument_list, + ACTIONS(5304), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7229), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(7233), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(7235), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(7245), 2, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + ACTIONS(7249), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(7251), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(7862), 2, anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_RPAREN, anon_sym_RBRACE, - STATE(5175), 9, + STATE(5109), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -647322,30 +641277,79 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(6825), 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, + [143139] = 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(7864), 1, + anon_sym_and, + ACTIONS(7866), 1, + anon_sym_or, + STATE(5110), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + ACTIONS(6109), 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(6107), 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_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, - [149521] = 26, + 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, + [143226] = 21, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -647366,37 +641370,31 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(3879), 1, - anon_sym_COLON, - ACTIONS(3881), 1, - anon_sym_LBRACE, - ACTIONS(3897), 1, - sym_discard, - ACTIONS(6823), 1, + ACTIONS(7846), 1, sym__identifier_token, - ACTIONS(6827), 1, + ACTIONS(7850), 1, anon_sym_LPAREN, - STATE(2571), 1, + ACTIONS(7852), 1, + anon_sym_BANG, + ACTIONS(7856), 1, + anon_sym_SQUOTE, + ACTIONS(7858), 1, + sym_integer_literal, + STATE(6436), 1, sym__reserved_identifier, - STATE(3463), 1, - sym_parenthesized_variable_designation, - STATE(3492), 1, - sym__variable_designation, - STATE(3493), 1, + STATE(6592), 1, + sym__preproc_expression, + ACTIONS(7854), 2, + anon_sym_true, + anon_sym_false, + STATE(6482), 6, + sym_character_literal, + sym_boolean_literal, sym_identifier, - STATE(5706), 1, - sym_positional_pattern_clause, - STATE(5751), 1, - sym_property_pattern_clause, - STATE(7311), 1, - sym_parameter_list, - STATE(7536), 1, - sym__lambda_parameters, - ACTIONS(3883), 3, - anon_sym_when, - anon_sym_and, - anon_sym_or, - STATE(5176), 9, + sym_preproc_parenthesized_expression, + sym_preproc_unary_expression, + sym_preproc_binary_expression, + STATE(5111), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -647406,7 +641404,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(6825), 21, + ACTIONS(7848), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -647416,6 +641414,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, @@ -647428,7 +641427,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [149630] = 15, + [143325] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -647449,11 +641448,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8104), 1, + ACTIONS(7860), 1, anon_sym_and, - ACTIONS(8106), 1, + ACTIONS(7868), 1, anon_sym_or, - STATE(5177), 9, + STATE(5112), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -647463,7 +641462,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(6207), 11, + ACTIONS(5360), 11, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, @@ -647475,7 +641474,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT, - ACTIONS(6205), 24, + ACTIONS(5358), 24, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_PLUS_PLUS, @@ -647489,18 +641488,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, anon_sym_DASH_GT, anon_sym_with, - [149717] = 29, + [143412] = 21, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -647521,50 +641520,151 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4755), 1, - anon_sym_DASH_GT, - ACTIONS(4804), 1, + ACTIONS(7846), 1, + sym__identifier_token, + ACTIONS(7850), 1, + anon_sym_LPAREN, + ACTIONS(7852), 1, + anon_sym_BANG, + ACTIONS(7856), 1, + anon_sym_SQUOTE, + ACTIONS(7858), 1, + sym_integer_literal, + STATE(6436), 1, + sym__reserved_identifier, + STATE(6491), 1, + sym__preproc_expression, + ACTIONS(7854), 2, + anon_sym_true, + anon_sym_false, + STATE(6482), 6, + sym_character_literal, + sym_boolean_literal, + sym_identifier, + sym_preproc_parenthesized_expression, + sym_preproc_unary_expression, + sym_preproc_binary_expression, + STATE(5113), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + ACTIONS(7848), 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, + [143511] = 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(4753), 1, anon_sym_LPAREN, - ACTIONS(4808), 1, + ACTIONS(4792), 1, anon_sym_DOT, - ACTIONS(4835), 1, + ACTIONS(4794), 1, + anon_sym_DASH_GT, + ACTIONS(4819), 1, anon_sym_LBRACK, - ACTIONS(4839), 1, + ACTIONS(4823), 1, anon_sym_BANG, - ACTIONS(6293), 1, + ACTIONS(6264), 1, anon_sym_switch, - ACTIONS(6307), 1, + ACTIONS(6278), 1, anon_sym_with, - ACTIONS(8040), 1, + ACTIONS(7872), 1, + anon_sym_QMARK, + ACTIONS(7878), 1, anon_sym_SLASH, - ACTIONS(8050), 1, + ACTIONS(7880), 1, + anon_sym_CARET, + ACTIONS(7882), 1, + anon_sym_PIPE, + ACTIONS(7884), 1, + anon_sym_AMP, + ACTIONS(7888), 1, anon_sym_GT_GT, - ACTIONS(8056), 1, + ACTIONS(7894), 1, anon_sym_DOT_DOT, - STATE(2433), 1, + ACTIONS(7896), 1, + anon_sym_AMP_AMP, + ACTIONS(7898), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7900), 1, + anon_sym_QMARK_QMARK, + ACTIONS(7902), 1, + anon_sym_as, + ACTIONS(7904), 1, + anon_sym_is, + STATE(2419), 1, sym_bracketed_argument_list, - STATE(3035), 1, + STATE(2958), 1, sym_argument_list, - ACTIONS(4841), 2, + ACTIONS(4825), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(8036), 2, + ACTIONS(5709), 2, + anon_sym_into, + anon_sym_equals, + ACTIONS(7870), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(7874), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(8038), 2, + ACTIONS(7876), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8048), 2, + ACTIONS(7886), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(5664), 6, - anon_sym_LT, - anon_sym_GT, - anon_sym_in, - anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_AMP, - STATE(5178), 9, + ACTIONS(7890), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(7892), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + STATE(5114), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -647574,19 +641674,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5660), 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_into, - anon_sym_as, - anon_sym_is, - [149832] = 26, + [143648] = 22, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -647607,45 +641695,36 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4755), 1, - anon_sym_DASH_GT, - ACTIONS(4804), 1, + ACTIONS(4753), 1, anon_sym_LPAREN, - ACTIONS(4808), 1, + ACTIONS(4792), 1, anon_sym_DOT, - ACTIONS(4835), 1, + ACTIONS(4794), 1, + anon_sym_DASH_GT, + ACTIONS(4819), 1, anon_sym_LBRACK, - ACTIONS(4839), 1, + ACTIONS(4823), 1, anon_sym_BANG, - ACTIONS(6293), 1, - anon_sym_switch, - ACTIONS(6307), 1, - anon_sym_with, - ACTIONS(8040), 1, - anon_sym_SLASH, - ACTIONS(8056), 1, + ACTIONS(7894), 1, anon_sym_DOT_DOT, - STATE(2433), 1, + STATE(2419), 1, sym_bracketed_argument_list, - STATE(3035), 1, + STATE(2958), 1, sym_argument_list, - ACTIONS(4841), 2, + ACTIONS(4825), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(8038), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(5664), 9, + ACTIONS(5743), 9, 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(5179), 9, + STATE(5115), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -647655,7 +641734,9 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5660), 13, + ACTIONS(5741), 18, + anon_sym_STAR, + anon_sym_PERCENT, anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT_GT, @@ -647663,13 +641744,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_equals, anon_sym_as, anon_sym_is, - [149941] = 24, + anon_sym_with, + [143749] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -647690,67 +641774,83 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4755), 1, - anon_sym_DASH_GT, - ACTIONS(4804), 1, + ACTIONS(4753), 1, anon_sym_LPAREN, - ACTIONS(4808), 1, + ACTIONS(4792), 1, anon_sym_DOT, - ACTIONS(4835), 1, + ACTIONS(4794), 1, + anon_sym_DASH_GT, + ACTIONS(4819), 1, anon_sym_LBRACK, - ACTIONS(4839), 1, + ACTIONS(4823), 1, anon_sym_BANG, - ACTIONS(6293), 1, + ACTIONS(6264), 1, anon_sym_switch, - ACTIONS(6307), 1, + ACTIONS(6278), 1, anon_sym_with, - ACTIONS(8056), 1, + ACTIONS(7872), 1, + anon_sym_QMARK, + ACTIONS(7878), 1, + anon_sym_SLASH, + ACTIONS(7880), 1, + anon_sym_CARET, + ACTIONS(7882), 1, + anon_sym_PIPE, + ACTIONS(7884), 1, + anon_sym_AMP, + ACTIONS(7888), 1, + anon_sym_GT_GT, + ACTIONS(7894), 1, anon_sym_DOT_DOT, - STATE(2433), 1, + ACTIONS(7896), 1, + anon_sym_AMP_AMP, + ACTIONS(7898), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7900), 1, + anon_sym_QMARK_QMARK, + ACTIONS(7902), 1, + anon_sym_as, + ACTIONS(7904), 1, + anon_sym_is, + STATE(2419), 1, sym_bracketed_argument_list, - STATE(3035), 1, + STATE(2958), 1, sym_argument_list, - ACTIONS(4841), 2, + ACTIONS(4825), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(5180), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - ACTIONS(5664), 10, + ACTIONS(5849), 2, + anon_sym_into, + anon_sym_equals, + ACTIONS(7870), 2, anon_sym_LT, anon_sym_GT, - anon_sym_in, - anon_sym_QMARK, + ACTIONS(7874), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(5660), 15, + ACTIONS(7876), 2, anon_sym_STAR, anon_sym_PERCENT, - anon_sym_CARET, + ACTIONS(7886), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, + ACTIONS(7890), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + ACTIONS(7892), 2, 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, - [150046] = 35, + 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, + [143886] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -647771,68 +641871,73 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4755), 1, - anon_sym_DASH_GT, - ACTIONS(4804), 1, + ACTIONS(4753), 1, anon_sym_LPAREN, - ACTIONS(4808), 1, + ACTIONS(4792), 1, anon_sym_DOT, - ACTIONS(4835), 1, + ACTIONS(4794), 1, + anon_sym_DASH_GT, + ACTIONS(4819), 1, anon_sym_LBRACK, - ACTIONS(4839), 1, + ACTIONS(4823), 1, anon_sym_BANG, - ACTIONS(6293), 1, + ACTIONS(6264), 1, anon_sym_switch, - ACTIONS(6307), 1, + ACTIONS(6278), 1, anon_sym_with, - ACTIONS(6393), 1, - anon_sym_as, - ACTIONS(8040), 1, + ACTIONS(7872), 1, + anon_sym_QMARK, + ACTIONS(7878), 1, anon_sym_SLASH, - ACTIONS(8046), 1, + ACTIONS(7880), 1, + anon_sym_CARET, + ACTIONS(7882), 1, + anon_sym_PIPE, + ACTIONS(7884), 1, anon_sym_AMP, - ACTIONS(8050), 1, + ACTIONS(7888), 1, anon_sym_GT_GT, - ACTIONS(8056), 1, + ACTIONS(7894), 1, anon_sym_DOT_DOT, - ACTIONS(8064), 1, + ACTIONS(7896), 1, + anon_sym_AMP_AMP, + ACTIONS(7898), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7900), 1, + anon_sym_QMARK_QMARK, + ACTIONS(7902), 1, + anon_sym_as, + ACTIONS(7904), 1, anon_sym_is, - STATE(2433), 1, + STATE(2419), 1, sym_bracketed_argument_list, - STATE(3035), 1, + STATE(2958), 1, sym_argument_list, - ACTIONS(4841), 2, + ACTIONS(4825), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(8032), 2, + ACTIONS(4996), 2, + anon_sym_into, + anon_sym_equals, + ACTIONS(7870), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(8036), 2, + ACTIONS(7874), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(8038), 2, + ACTIONS(7876), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8048), 2, + ACTIONS(7886), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(8052), 2, + ACTIONS(7890), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(8054), 2, + ACTIONS(7892), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5664), 3, - anon_sym_in, - anon_sym_QMARK, - anon_sym_PIPE, - ACTIONS(5660), 5, - anon_sym_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_QMARK_QMARK, - anon_sym_into, - STATE(5181), 9, + STATE(5117), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -647842,7 +641947,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [150173] = 36, + [144023] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -647863,69 +641968,73 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4755), 1, - anon_sym_DASH_GT, - ACTIONS(4804), 1, + ACTIONS(4753), 1, anon_sym_LPAREN, - ACTIONS(4808), 1, + ACTIONS(4792), 1, anon_sym_DOT, - ACTIONS(4835), 1, + ACTIONS(4794), 1, + anon_sym_DASH_GT, + ACTIONS(4819), 1, anon_sym_LBRACK, - ACTIONS(4839), 1, + ACTIONS(4823), 1, anon_sym_BANG, - ACTIONS(6293), 1, + ACTIONS(6264), 1, anon_sym_switch, - ACTIONS(6307), 1, + ACTIONS(6278), 1, anon_sym_with, - ACTIONS(6393), 1, - anon_sym_as, - ACTIONS(8040), 1, + ACTIONS(7872), 1, + anon_sym_QMARK, + ACTIONS(7878), 1, anon_sym_SLASH, - ACTIONS(8042), 1, + ACTIONS(7880), 1, anon_sym_CARET, - ACTIONS(8046), 1, + ACTIONS(7882), 1, + anon_sym_PIPE, + ACTIONS(7884), 1, anon_sym_AMP, - ACTIONS(8050), 1, + ACTIONS(7888), 1, anon_sym_GT_GT, - ACTIONS(8056), 1, + ACTIONS(7894), 1, anon_sym_DOT_DOT, - ACTIONS(8064), 1, + ACTIONS(7896), 1, + anon_sym_AMP_AMP, + ACTIONS(7898), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7900), 1, + anon_sym_QMARK_QMARK, + ACTIONS(7902), 1, + anon_sym_as, + ACTIONS(7904), 1, anon_sym_is, - STATE(2433), 1, + STATE(2419), 1, sym_bracketed_argument_list, - STATE(3035), 1, + STATE(2958), 1, sym_argument_list, - ACTIONS(4841), 2, + ACTIONS(4825), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(8032), 2, + ACTIONS(5652), 2, + anon_sym_into, + anon_sym_equals, + ACTIONS(7870), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(8036), 2, + ACTIONS(7874), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(8038), 2, + ACTIONS(7876), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8048), 2, + ACTIONS(7886), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(8052), 2, + ACTIONS(7890), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(8054), 2, + ACTIONS(7892), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5664), 3, - anon_sym_in, - anon_sym_QMARK, - anon_sym_PIPE, - ACTIONS(5660), 4, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_QMARK_QMARK, - anon_sym_into, - STATE(5182), 9, + STATE(5118), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -647935,7 +642044,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [150302] = 34, + [144160] = 21, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -647956,67 +642065,208 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4755), 1, - anon_sym_DASH_GT, - ACTIONS(4804), 1, + ACTIONS(25), 1, + sym__identifier_token, + ACTIONS(141), 1, + anon_sym_SQUOTE, + ACTIONS(7906), 1, + anon_sym_LPAREN, + ACTIONS(7908), 1, + anon_sym_BANG, + ACTIONS(7910), 1, + sym_integer_literal, + STATE(2168), 1, + sym__reserved_identifier, + STATE(6469), 1, + sym__preproc_expression, + ACTIONS(77), 2, + anon_sym_true, + anon_sym_false, + STATE(6552), 6, + sym_character_literal, + sym_boolean_literal, + sym_identifier, + sym_preproc_parenthesized_expression, + sym_preproc_unary_expression, + sym_preproc_binary_expression, + STATE(5119), 9, + sym_preproc_region, + sym_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, + [144259] = 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(4753), 1, anon_sym_LPAREN, - ACTIONS(4808), 1, + ACTIONS(4792), 1, anon_sym_DOT, - ACTIONS(4835), 1, + ACTIONS(4794), 1, + anon_sym_DASH_GT, + ACTIONS(4819), 1, anon_sym_LBRACK, - ACTIONS(4839), 1, + ACTIONS(4823), 1, anon_sym_BANG, - ACTIONS(6293), 1, + ACTIONS(6264), 1, anon_sym_switch, - ACTIONS(6307), 1, + ACTIONS(6278), 1, anon_sym_with, - ACTIONS(6393), 1, - anon_sym_as, - ACTIONS(8040), 1, + ACTIONS(7878), 1, anon_sym_SLASH, - ACTIONS(8050), 1, + ACTIONS(7888), 1, anon_sym_GT_GT, - ACTIONS(8056), 1, + ACTIONS(7894), 1, anon_sym_DOT_DOT, - ACTIONS(8064), 1, - anon_sym_is, - STATE(2433), 1, + STATE(2419), 1, sym_bracketed_argument_list, - STATE(3035), 1, + STATE(2958), 1, sym_argument_list, - ACTIONS(4841), 2, + ACTIONS(4825), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(8032), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(8036), 2, + ACTIONS(7874), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(8038), 2, + ACTIONS(7876), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8048), 2, + ACTIONS(7886), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(8052), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(8054), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(5664), 4, - anon_sym_in, + ACTIONS(5739), 5, + anon_sym_LT, + anon_sym_GT, anon_sym_QMARK, anon_sym_PIPE, anon_sym_AMP, - ACTIONS(5660), 5, + 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(5737), 12, 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, - STATE(5183), 9, + anon_sym_equals, + anon_sym_as, + anon_sym_is, + [144374] = 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(4753), 1, + anon_sym_LPAREN, + ACTIONS(4792), 1, + anon_sym_DOT, + ACTIONS(4794), 1, + anon_sym_DASH_GT, + ACTIONS(4819), 1, + anon_sym_LBRACK, + ACTIONS(4823), 1, + anon_sym_BANG, + ACTIONS(6264), 1, + anon_sym_switch, + ACTIONS(6278), 1, + anon_sym_with, + ACTIONS(7878), 1, + anon_sym_SLASH, + ACTIONS(7894), 1, + anon_sym_DOT_DOT, + STATE(2419), 1, + sym_bracketed_argument_list, + STATE(2958), 1, + sym_argument_list, + ACTIONS(4825), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7876), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(5739), 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(5121), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -648026,7 +642276,22 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [150427] = 27, + ACTIONS(5737), 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, + [144483] = 24, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -648047,46 +642312,40 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4755), 1, - anon_sym_DASH_GT, - ACTIONS(4804), 1, + ACTIONS(4753), 1, anon_sym_LPAREN, - ACTIONS(4808), 1, + ACTIONS(4792), 1, anon_sym_DOT, - ACTIONS(4835), 1, + ACTIONS(4794), 1, + anon_sym_DASH_GT, + ACTIONS(4819), 1, anon_sym_LBRACK, - ACTIONS(4839), 1, + ACTIONS(4823), 1, anon_sym_BANG, - ACTIONS(6293), 1, + ACTIONS(6264), 1, anon_sym_switch, - ACTIONS(6307), 1, + ACTIONS(6278), 1, anon_sym_with, - ACTIONS(8040), 1, - anon_sym_SLASH, - ACTIONS(8056), 1, + ACTIONS(7894), 1, anon_sym_DOT_DOT, - STATE(2433), 1, + STATE(2419), 1, sym_bracketed_argument_list, - STATE(3035), 1, + STATE(2958), 1, sym_argument_list, - ACTIONS(4841), 2, + ACTIONS(4825), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(8036), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(8038), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(5664), 7, + ACTIONS(5739), 9, 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(5184), 9, + STATE(5122), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -648096,7 +642355,9 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5660), 13, + ACTIONS(5737), 16, + anon_sym_STAR, + anon_sym_PERCENT, anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT_GT, @@ -648108,9 +642369,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_QMARK_QMARK, anon_sym_into, + anon_sym_equals, anon_sym_as, anon_sym_is, - [150538] = 33, + [144588] = 35, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -648131,66 +642393,68 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4755), 1, - anon_sym_DASH_GT, - ACTIONS(4804), 1, + ACTIONS(4753), 1, anon_sym_LPAREN, - ACTIONS(4808), 1, + ACTIONS(4792), 1, anon_sym_DOT, - ACTIONS(4835), 1, + ACTIONS(4794), 1, + anon_sym_DASH_GT, + ACTIONS(4819), 1, anon_sym_LBRACK, - ACTIONS(4839), 1, + ACTIONS(4823), 1, anon_sym_BANG, - ACTIONS(6293), 1, + ACTIONS(6264), 1, anon_sym_switch, - ACTIONS(6307), 1, + ACTIONS(6278), 1, anon_sym_with, - ACTIONS(6393), 1, - anon_sym_as, - ACTIONS(8040), 1, + ACTIONS(7878), 1, anon_sym_SLASH, - ACTIONS(8050), 1, + ACTIONS(7884), 1, + anon_sym_AMP, + ACTIONS(7888), 1, anon_sym_GT_GT, - ACTIONS(8056), 1, + ACTIONS(7894), 1, anon_sym_DOT_DOT, - ACTIONS(8064), 1, + ACTIONS(7902), 1, + anon_sym_as, + ACTIONS(7904), 1, anon_sym_is, - STATE(2433), 1, + STATE(2419), 1, sym_bracketed_argument_list, - STATE(3035), 1, + STATE(2958), 1, sym_argument_list, - ACTIONS(4841), 2, + ACTIONS(4825), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(8032), 2, + ACTIONS(5739), 2, + anon_sym_QMARK, + anon_sym_PIPE, + ACTIONS(7870), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(8036), 2, + ACTIONS(7874), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(8038), 2, + ACTIONS(7876), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8048), 2, + ACTIONS(7886), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(8054), 2, + ACTIONS(7890), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(7892), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5664), 4, - anon_sym_in, - anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_AMP, - ACTIONS(5660), 7, + ACTIONS(5737), 6, 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, - STATE(5185), 9, + anon_sym_equals, + STATE(5123), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -648200,7 +642464,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [150661] = 37, + [144715] = 36, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -648221,70 +642485,69 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4755), 1, - anon_sym_DASH_GT, - ACTIONS(4804), 1, + ACTIONS(4753), 1, anon_sym_LPAREN, - ACTIONS(4808), 1, + ACTIONS(4792), 1, anon_sym_DOT, - ACTIONS(4835), 1, + ACTIONS(4794), 1, + anon_sym_DASH_GT, + ACTIONS(4819), 1, anon_sym_LBRACK, - ACTIONS(4839), 1, + ACTIONS(4823), 1, anon_sym_BANG, - ACTIONS(6293), 1, + ACTIONS(6264), 1, anon_sym_switch, - ACTIONS(6307), 1, + ACTIONS(6278), 1, anon_sym_with, - ACTIONS(6393), 1, - anon_sym_as, - ACTIONS(8040), 1, + ACTIONS(7878), 1, anon_sym_SLASH, - ACTIONS(8042), 1, + ACTIONS(7880), 1, anon_sym_CARET, - ACTIONS(8044), 1, - anon_sym_PIPE, - ACTIONS(8046), 1, + ACTIONS(7884), 1, anon_sym_AMP, - ACTIONS(8050), 1, + ACTIONS(7888), 1, anon_sym_GT_GT, - ACTIONS(8056), 1, + ACTIONS(7894), 1, anon_sym_DOT_DOT, - ACTIONS(8064), 1, + ACTIONS(7902), 1, + anon_sym_as, + ACTIONS(7904), 1, anon_sym_is, - STATE(2433), 1, + STATE(2419), 1, sym_bracketed_argument_list, - STATE(3035), 1, + STATE(2958), 1, sym_argument_list, - ACTIONS(4841), 2, + ACTIONS(4825), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5664), 2, - anon_sym_in, + ACTIONS(5739), 2, anon_sym_QMARK, - ACTIONS(8032), 2, + anon_sym_PIPE, + ACTIONS(7870), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(8036), 2, + ACTIONS(7874), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(8038), 2, + ACTIONS(7876), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8048), 2, + ACTIONS(7886), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(8052), 2, + ACTIONS(7890), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(8054), 2, + ACTIONS(7892), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5660), 4, + ACTIONS(5737), 5, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_QMARK_QMARK, anon_sym_into, - STATE(5186), 9, + anon_sym_equals, + STATE(5124), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -648294,7 +642557,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [150792] = 38, + [144844] = 34, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -648315,71 +642578,122 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4755), 1, - anon_sym_DASH_GT, - ACTIONS(4804), 1, + ACTIONS(4753), 1, anon_sym_LPAREN, - ACTIONS(4808), 1, + ACTIONS(4792), 1, anon_sym_DOT, - ACTIONS(4835), 1, + ACTIONS(4794), 1, + anon_sym_DASH_GT, + ACTIONS(4819), 1, anon_sym_LBRACK, - ACTIONS(4839), 1, + ACTIONS(4823), 1, anon_sym_BANG, - ACTIONS(6293), 1, + ACTIONS(6264), 1, anon_sym_switch, - ACTIONS(6307), 1, + ACTIONS(6278), 1, anon_sym_with, - ACTIONS(6393), 1, - anon_sym_as, - ACTIONS(8040), 1, + ACTIONS(7878), 1, anon_sym_SLASH, - ACTIONS(8042), 1, - anon_sym_CARET, - ACTIONS(8044), 1, - anon_sym_PIPE, - ACTIONS(8046), 1, - anon_sym_AMP, - ACTIONS(8050), 1, + ACTIONS(7888), 1, anon_sym_GT_GT, - ACTIONS(8056), 1, + ACTIONS(7894), 1, anon_sym_DOT_DOT, - ACTIONS(8058), 1, - anon_sym_AMP_AMP, - ACTIONS(8064), 1, + ACTIONS(7902), 1, + anon_sym_as, + ACTIONS(7904), 1, anon_sym_is, - STATE(2433), 1, + STATE(2419), 1, sym_bracketed_argument_list, - STATE(3035), 1, + STATE(2958), 1, sym_argument_list, - ACTIONS(4841), 2, + ACTIONS(4825), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5664), 2, - anon_sym_in, - anon_sym_QMARK, - ACTIONS(8032), 2, + ACTIONS(7870), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(8036), 2, + ACTIONS(7874), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(8038), 2, + ACTIONS(7876), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8048), 2, + ACTIONS(7886), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(8052), 2, + ACTIONS(7890), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(8054), 2, + ACTIONS(7892), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5660), 3, + ACTIONS(5739), 3, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_AMP, + ACTIONS(5737), 6, + anon_sym_CARET, + anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_QMARK_QMARK, anon_sym_into, - STATE(5187), 9, + anon_sym_equals, + STATE(5125), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + [144969] = 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(7846), 1, + sym__identifier_token, + ACTIONS(7850), 1, + anon_sym_LPAREN, + ACTIONS(7852), 1, + anon_sym_BANG, + ACTIONS(7856), 1, + anon_sym_SQUOTE, + ACTIONS(7858), 1, + sym_integer_literal, + STATE(6436), 1, + sym__reserved_identifier, + STATE(6492), 1, + sym__preproc_expression, + ACTIONS(7854), 2, + anon_sym_true, + anon_sym_false, + STATE(6482), 6, + sym_character_literal, + sym_boolean_literal, + sym_identifier, + sym_preproc_parenthesized_expression, + sym_preproc_unary_expression, + sym_preproc_binary_expression, + STATE(5126), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -648389,7 +642703,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [150925] = 40, + ACTIONS(7848), 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, + [145068] = 21, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -648410,73 +642747,31 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4755), 1, - anon_sym_DASH_GT, - ACTIONS(4804), 1, + ACTIONS(7846), 1, + sym__identifier_token, + ACTIONS(7850), 1, anon_sym_LPAREN, - ACTIONS(4808), 1, - anon_sym_DOT, - ACTIONS(4835), 1, - anon_sym_LBRACK, - ACTIONS(4839), 1, + ACTIONS(7852), 1, anon_sym_BANG, - ACTIONS(5660), 1, - anon_sym_into, - ACTIONS(6293), 1, - anon_sym_switch, - ACTIONS(6307), 1, - anon_sym_with, - ACTIONS(6393), 1, - anon_sym_as, - ACTIONS(8040), 1, - anon_sym_SLASH, - ACTIONS(8042), 1, - anon_sym_CARET, - ACTIONS(8044), 1, - anon_sym_PIPE, - ACTIONS(8046), 1, - anon_sym_AMP, - ACTIONS(8050), 1, - anon_sym_GT_GT, - ACTIONS(8056), 1, - anon_sym_DOT_DOT, - ACTIONS(8058), 1, - anon_sym_AMP_AMP, - ACTIONS(8060), 1, - anon_sym_PIPE_PIPE, - ACTIONS(8062), 1, - anon_sym_QMARK_QMARK, - ACTIONS(8064), 1, - anon_sym_is, - STATE(2433), 1, - sym_bracketed_argument_list, - STATE(3035), 1, - sym_argument_list, - ACTIONS(4841), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5664), 2, - anon_sym_in, - anon_sym_QMARK, - ACTIONS(8032), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(8036), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(8038), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(8048), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - ACTIONS(8052), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(8054), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - STATE(5188), 9, + ACTIONS(7856), 1, + anon_sym_SQUOTE, + ACTIONS(7858), 1, + sym_integer_literal, + STATE(6436), 1, + sym__reserved_identifier, + STATE(6493), 1, + sym__preproc_expression, + ACTIONS(7854), 2, + anon_sym_true, + anon_sym_false, + STATE(6482), 6, + sym_character_literal, + sym_boolean_literal, + sym_identifier, + sym_preproc_parenthesized_expression, + sym_preproc_unary_expression, + sym_preproc_binary_expression, + STATE(5127), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -648486,7 +642781,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [151062] = 40, + ACTIONS(7848), 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, + [145167] = 27, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -648507,73 +642825,45 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4100), 1, + ACTIONS(4753), 1, + anon_sym_LPAREN, + ACTIONS(4792), 1, anon_sym_DOT, - ACTIONS(4102), 1, + ACTIONS(4794), 1, anon_sym_DASH_GT, - ACTIONS(5264), 1, - anon_sym_LPAREN, - ACTIONS(5304), 1, - anon_sym_BANG, - ACTIONS(5573), 1, + ACTIONS(4819), 1, anon_sym_LBRACK, - ACTIONS(6343), 1, + ACTIONS(4823), 1, + anon_sym_BANG, + ACTIONS(6264), 1, anon_sym_switch, - ACTIONS(6357), 1, + ACTIONS(6278), 1, anon_sym_with, - ACTIONS(6813), 1, - anon_sym_as, - ACTIONS(7169), 1, - anon_sym_is, - ACTIONS(7442), 1, + ACTIONS(7878), 1, anon_sym_SLASH, - ACTIONS(7444), 1, - anon_sym_CARET, - ACTIONS(7446), 1, - anon_sym_PIPE, - ACTIONS(7448), 1, - anon_sym_AMP, - ACTIONS(7452), 1, - anon_sym_GT_GT, - ACTIONS(7458), 1, + ACTIONS(7894), 1, anon_sym_DOT_DOT, - ACTIONS(7621), 1, - anon_sym_AMP_AMP, - ACTIONS(7623), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7625), 1, - anon_sym_QMARK_QMARK, - ACTIONS(7659), 1, - anon_sym_QMARK, - STATE(2485), 1, + STATE(2419), 1, sym_bracketed_argument_list, - STATE(3487), 1, + STATE(2958), 1, sym_argument_list, - ACTIONS(5306), 2, + ACTIONS(4825), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7436), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(7438), 2, + ACTIONS(7874), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7440), 2, + ACTIONS(7876), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7450), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - ACTIONS(7454), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(7456), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(8004), 2, - anon_sym_SEMI, - anon_sym_COMMA, - STATE(5189), 9, + ACTIONS(5739), 6, + anon_sym_LT, + anon_sym_GT, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT_GT, + STATE(5128), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -648583,7 +642873,22 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [151199] = 40, + ACTIONS(5737), 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, + [145278] = 33, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -648604,73 +642909,66 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4100), 1, + ACTIONS(4753), 1, + anon_sym_LPAREN, + ACTIONS(4792), 1, anon_sym_DOT, - ACTIONS(4102), 1, + ACTIONS(4794), 1, anon_sym_DASH_GT, - ACTIONS(5264), 1, - anon_sym_LPAREN, - ACTIONS(5304), 1, - anon_sym_BANG, - ACTIONS(5573), 1, + ACTIONS(4819), 1, anon_sym_LBRACK, - ACTIONS(6343), 1, + ACTIONS(4823), 1, + anon_sym_BANG, + ACTIONS(6264), 1, anon_sym_switch, - ACTIONS(6357), 1, + ACTIONS(6278), 1, anon_sym_with, - ACTIONS(6813), 1, - anon_sym_as, - ACTIONS(7139), 1, - anon_sym_QMARK, - ACTIONS(7145), 1, + ACTIONS(7878), 1, anon_sym_SLASH, - ACTIONS(7147), 1, - anon_sym_CARET, - ACTIONS(7149), 1, - anon_sym_PIPE, - ACTIONS(7151), 1, - anon_sym_AMP, - ACTIONS(7155), 1, + ACTIONS(7888), 1, anon_sym_GT_GT, - ACTIONS(7161), 1, + ACTIONS(7894), 1, anon_sym_DOT_DOT, - ACTIONS(7163), 1, - anon_sym_AMP_AMP, - ACTIONS(7165), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7167), 1, - anon_sym_QMARK_QMARK, - ACTIONS(7169), 1, + ACTIONS(7902), 1, + anon_sym_as, + ACTIONS(7904), 1, anon_sym_is, - STATE(2485), 1, + STATE(2419), 1, sym_bracketed_argument_list, - STATE(3487), 1, + STATE(2958), 1, sym_argument_list, - ACTIONS(5306), 2, + ACTIONS(4825), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7137), 2, + ACTIONS(7870), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7141), 2, + ACTIONS(7874), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7143), 2, + ACTIONS(7876), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7153), 2, + ACTIONS(7886), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7157), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(7159), 2, + ACTIONS(7892), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(8108), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - STATE(5190), 9, + ACTIONS(5739), 3, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_AMP, + ACTIONS(5737), 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(5129), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -648680,7 +642978,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [151336] = 21, + [145401] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -648701,31 +642999,18 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(7904), 1, - sym__identifier_token, - ACTIONS(7908), 1, + ACTIONS(7912), 1, + anon_sym_DOT, + ACTIONS(3978), 8, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RBRACK, anon_sym_LPAREN, - ACTIONS(7910), 1, - anon_sym_BANG, - ACTIONS(7914), 1, - anon_sym_SQUOTE, - ACTIONS(7916), 1, - sym_integer_literal, - STATE(6452), 1, - sym__reserved_identifier, - STATE(6479), 1, - sym__preproc_expression, - ACTIONS(7912), 2, - anon_sym_true, - anon_sym_false, - STATE(6542), 6, - sym_character_literal, - sym_boolean_literal, - sym_identifier, - sym_preproc_parenthesized_expression, - sym_preproc_unary_expression, - sym_preproc_binary_expression, - STATE(5191), 9, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, + STATE(5130), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -648735,17 +643020,22 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(7906), 22, + ACTIONS(3976), 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, @@ -648758,7 +643048,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [151435] = 33, + sym__identifier_token, + [145486] = 37, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -648779,66 +643070,70 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4755), 1, - anon_sym_DASH_GT, - ACTIONS(4804), 1, + ACTIONS(4753), 1, anon_sym_LPAREN, - ACTIONS(4808), 1, + ACTIONS(4792), 1, anon_sym_DOT, - ACTIONS(4835), 1, + ACTIONS(4794), 1, + anon_sym_DASH_GT, + ACTIONS(4819), 1, anon_sym_LBRACK, - ACTIONS(4839), 1, + ACTIONS(4823), 1, anon_sym_BANG, - ACTIONS(6293), 1, + ACTIONS(5739), 1, + anon_sym_QMARK, + ACTIONS(6264), 1, anon_sym_switch, - ACTIONS(6307), 1, + ACTIONS(6278), 1, anon_sym_with, - ACTIONS(7962), 1, + ACTIONS(7878), 1, anon_sym_SLASH, - ACTIONS(7972), 1, + ACTIONS(7880), 1, + anon_sym_CARET, + ACTIONS(7882), 1, + anon_sym_PIPE, + ACTIONS(7884), 1, + anon_sym_AMP, + ACTIONS(7888), 1, anon_sym_GT_GT, - ACTIONS(7978), 1, + ACTIONS(7894), 1, anon_sym_DOT_DOT, - ACTIONS(7986), 1, + ACTIONS(7902), 1, anon_sym_as, - ACTIONS(7988), 1, + ACTIONS(7904), 1, anon_sym_is, - STATE(2433), 1, + STATE(2419), 1, sym_bracketed_argument_list, - STATE(3035), 1, + STATE(2958), 1, sym_argument_list, - ACTIONS(4841), 2, + ACTIONS(4825), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7954), 2, + ACTIONS(7870), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7958), 2, + ACTIONS(7874), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7960), 2, + ACTIONS(7876), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7970), 2, + ACTIONS(7886), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7976), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(5664), 3, - anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_AMP, - ACTIONS(5660), 8, - anon_sym_CARET, + ACTIONS(7890), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + ACTIONS(7892), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(5737), 5, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_QMARK_QMARK, anon_sym_into, - anon_sym_by, - STATE(5192), 9, + anon_sym_equals, + STATE(5131), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -648848,7 +643143,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [151558] = 40, + [145617] = 38, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -648869,73 +643164,71 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4755), 1, - anon_sym_DASH_GT, - ACTIONS(4804), 1, + ACTIONS(4753), 1, anon_sym_LPAREN, - ACTIONS(4808), 1, + ACTIONS(4792), 1, anon_sym_DOT, - ACTIONS(4835), 1, + ACTIONS(4794), 1, + anon_sym_DASH_GT, + ACTIONS(4819), 1, anon_sym_LBRACK, - ACTIONS(4839), 1, + ACTIONS(4823), 1, anon_sym_BANG, - ACTIONS(6293), 1, + ACTIONS(5739), 1, + anon_sym_QMARK, + ACTIONS(6264), 1, anon_sym_switch, - ACTIONS(6307), 1, + ACTIONS(6278), 1, anon_sym_with, - ACTIONS(7902), 1, - anon_sym_DOT_DOT, - ACTIONS(8070), 1, - anon_sym_QMARK, - ACTIONS(8076), 1, + ACTIONS(7878), 1, anon_sym_SLASH, - ACTIONS(8078), 1, + ACTIONS(7880), 1, anon_sym_CARET, - ACTIONS(8080), 1, + ACTIONS(7882), 1, anon_sym_PIPE, - ACTIONS(8082), 1, + ACTIONS(7884), 1, anon_sym_AMP, - ACTIONS(8086), 1, + ACTIONS(7888), 1, anon_sym_GT_GT, - ACTIONS(8092), 1, + ACTIONS(7894), 1, + anon_sym_DOT_DOT, + ACTIONS(7896), 1, anon_sym_AMP_AMP, - ACTIONS(8094), 1, - anon_sym_PIPE_PIPE, - ACTIONS(8096), 1, - anon_sym_QMARK_QMARK, - ACTIONS(8098), 1, + ACTIONS(7902), 1, anon_sym_as, - ACTIONS(8100), 1, + ACTIONS(7904), 1, anon_sym_is, - STATE(2433), 1, + STATE(2419), 1, sym_bracketed_argument_list, - STATE(3035), 1, + STATE(2958), 1, sym_argument_list, - ACTIONS(4841), 2, + ACTIONS(4825), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5882), 2, - anon_sym_into, - anon_sym_on, - ACTIONS(8068), 2, + ACTIONS(7870), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(8072), 2, + ACTIONS(7874), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(8074), 2, + ACTIONS(7876), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8084), 2, + ACTIONS(7886), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(8088), 2, + ACTIONS(7890), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(8090), 2, + ACTIONS(7892), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - STATE(5193), 9, + ACTIONS(5737), 4, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, + anon_sym_into, + anon_sym_equals, + STATE(5132), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -648945,7 +643238,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [151695] = 40, + [145750] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -648966,73 +643259,73 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4100), 1, + ACTIONS(4753), 1, + anon_sym_LPAREN, + ACTIONS(4792), 1, anon_sym_DOT, - ACTIONS(4102), 1, + ACTIONS(4794), 1, anon_sym_DASH_GT, - ACTIONS(5264), 1, - anon_sym_LPAREN, - ACTIONS(5304), 1, - anon_sym_BANG, - ACTIONS(5573), 1, + ACTIONS(4819), 1, anon_sym_LBRACK, - ACTIONS(6343), 1, + ACTIONS(4823), 1, + anon_sym_BANG, + ACTIONS(5739), 1, + anon_sym_QMARK, + ACTIONS(6264), 1, anon_sym_switch, - ACTIONS(6357), 1, + ACTIONS(6278), 1, anon_sym_with, - ACTIONS(6813), 1, - anon_sym_as, - ACTIONS(7139), 1, - anon_sym_QMARK, - ACTIONS(7145), 1, + ACTIONS(7878), 1, anon_sym_SLASH, - ACTIONS(7147), 1, + ACTIONS(7880), 1, anon_sym_CARET, - ACTIONS(7149), 1, + ACTIONS(7882), 1, anon_sym_PIPE, - ACTIONS(7151), 1, + ACTIONS(7884), 1, anon_sym_AMP, - ACTIONS(7155), 1, + ACTIONS(7888), 1, anon_sym_GT_GT, - ACTIONS(7161), 1, + ACTIONS(7894), 1, anon_sym_DOT_DOT, - ACTIONS(7163), 1, + ACTIONS(7896), 1, anon_sym_AMP_AMP, - ACTIONS(7165), 1, + ACTIONS(7898), 1, anon_sym_PIPE_PIPE, - ACTIONS(7167), 1, + ACTIONS(7900), 1, anon_sym_QMARK_QMARK, - ACTIONS(7169), 1, + ACTIONS(7902), 1, + anon_sym_as, + ACTIONS(7904), 1, anon_sym_is, - STATE(2485), 1, + STATE(2419), 1, sym_bracketed_argument_list, - STATE(3487), 1, + STATE(2958), 1, sym_argument_list, - ACTIONS(5306), 2, + ACTIONS(4825), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7137), 2, + ACTIONS(5737), 2, + anon_sym_into, + anon_sym_equals, + ACTIONS(7870), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7141), 2, + ACTIONS(7874), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7143), 2, + ACTIONS(7876), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7153), 2, + ACTIONS(7886), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7157), 2, + ACTIONS(7890), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7159), 2, + ACTIONS(7892), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(7584), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - STATE(5194), 9, + STATE(5133), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -649042,7 +643335,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [151832] = 36, + [145887] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -649063,79 +643356,57 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4755), 1, - anon_sym_DASH_GT, - ACTIONS(4804), 1, - anon_sym_LPAREN, - ACTIONS(4808), 1, - anon_sym_DOT, - ACTIONS(4835), 1, - anon_sym_LBRACK, - ACTIONS(4839), 1, + ACTIONS(7914), 1, + anon_sym_SEMI, + 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(5144), 11, + anon_sym_LT, + anon_sym_GT, + anon_sym_QMARK, anon_sym_BANG, - ACTIONS(6293), 1, - anon_sym_switch, - ACTIONS(6307), 1, - anon_sym_with, - ACTIONS(7962), 1, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_SLASH, - ACTIONS(7964), 1, - anon_sym_CARET, - ACTIONS(7968), 1, + anon_sym_PIPE, anon_sym_AMP, - ACTIONS(7972), 1, anon_sym_GT_GT, - ACTIONS(7978), 1, - anon_sym_DOT_DOT, - ACTIONS(7986), 1, - anon_sym_as, - ACTIONS(7988), 1, - anon_sym_is, - STATE(2433), 1, - sym_bracketed_argument_list, - STATE(3035), 1, - sym_argument_list, - ACTIONS(4841), 2, + anon_sym_DOT, + ACTIONS(5142), 25, + anon_sym_LBRACK, + anon_sym_LPAREN, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5664), 2, - anon_sym_QMARK, - anon_sym_PIPE, - ACTIONS(7954), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(7958), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(7960), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7970), 2, + anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7974), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7976), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5660), 5, + 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, - STATE(5195), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - [151961] = 21, + 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, + [145972] = 23, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -649156,31 +643427,33 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(7904), 1, + ACTIONS(3861), 1, + anon_sym_LBRACE, + ACTIONS(3877), 1, + sym_discard, + ACTIONS(6969), 1, sym__identifier_token, - ACTIONS(7908), 1, - anon_sym_LPAREN, - ACTIONS(7910), 1, - anon_sym_BANG, - ACTIONS(7914), 1, - anon_sym_SQUOTE, ACTIONS(7916), 1, - sym_integer_literal, - STATE(6452), 1, + anon_sym_LPAREN, + STATE(2565), 1, sym__reserved_identifier, - STATE(6574), 1, - sym__preproc_expression, - ACTIONS(7912), 2, - anon_sym_true, - anon_sym_false, - STATE(6542), 6, - sym_character_literal, - sym_boolean_literal, + STATE(3352), 1, + sym_parenthesized_variable_designation, + STATE(3355), 1, sym_identifier, - sym_preproc_parenthesized_expression, - sym_preproc_unary_expression, - sym_preproc_binary_expression, - STATE(5196), 9, + STATE(3447), 1, + sym__variable_designation, + STATE(5692), 1, + sym_property_pattern_clause, + ACTIONS(3895), 2, + anon_sym_and, + anon_sym_or, + ACTIONS(3893), 4, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_RBRACE, + STATE(5135), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -649190,7 +643463,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(7906), 22, + ACTIONS(6971), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -649213,7 +643486,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [152060] = 21, + [146075] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -649234,31 +643507,128 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(7904), 1, + ACTIONS(4042), 1, + anon_sym_DOT, + ACTIONS(4044), 1, + anon_sym_DASH_GT, + ACTIONS(5257), 1, + anon_sym_LPAREN, + ACTIONS(5302), 1, + anon_sym_BANG, + ACTIONS(5549), 1, + anon_sym_LBRACK, + ACTIONS(6355), 1, + anon_sym_switch, + ACTIONS(6369), 1, + anon_sym_with, + ACTIONS(6479), 1, + anon_sym_SLASH, + ACTIONS(6481), 1, + anon_sym_CARET, + ACTIONS(6483), 1, + anon_sym_PIPE, + ACTIONS(6485), 1, + anon_sym_AMP, + ACTIONS(6489), 1, + anon_sym_GT_GT, + ACTIONS(6499), 1, + anon_sym_AMP_AMP, + ACTIONS(6501), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6503), 1, + anon_sym_QMARK_QMARK, + ACTIONS(6811), 1, + anon_sym_as, + ACTIONS(7231), 1, + anon_sym_QMARK, + ACTIONS(7253), 1, + anon_sym_DOT_DOT, + ACTIONS(7261), 1, + anon_sym_is, + STATE(2467), 1, + sym_bracketed_argument_list, + STATE(3381), 1, + sym_argument_list, + ACTIONS(5304), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6471), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(6475), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6477), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(6487), 2, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + ACTIONS(6491), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6493), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(7839), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + STATE(5136), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + [146212] = 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(7846), 1, sym__identifier_token, - ACTIONS(7908), 1, + ACTIONS(7850), 1, anon_sym_LPAREN, - ACTIONS(7910), 1, + ACTIONS(7852), 1, anon_sym_BANG, - ACTIONS(7914), 1, + ACTIONS(7856), 1, anon_sym_SQUOTE, - ACTIONS(7916), 1, + ACTIONS(7858), 1, sym_integer_literal, - STATE(6452), 1, + STATE(6436), 1, sym__reserved_identifier, - STATE(6502), 1, + STATE(6478), 1, sym__preproc_expression, - ACTIONS(7912), 2, + ACTIONS(7854), 2, anon_sym_true, anon_sym_false, - STATE(6542), 6, + STATE(6482), 6, sym_character_literal, sym_boolean_literal, sym_identifier, sym_preproc_parenthesized_expression, sym_preproc_unary_expression, sym_preproc_binary_expression, - STATE(5197), 9, + STATE(5137), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -649268,7 +643638,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(7906), 22, + ACTIONS(7848), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -649291,7 +643661,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [152159] = 40, + [146311] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -649312,83 +643682,57 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4443), 1, - anon_sym_DASH_GT, - ACTIONS(4533), 1, - anon_sym_DOT, - ACTIONS(6574), 1, - anon_sym_LPAREN, - ACTIONS(6619), 1, - anon_sym_LBRACK, - ACTIONS(6625), 1, - anon_sym_BANG, - ACTIONS(6649), 1, - anon_sym_switch, - ACTIONS(6663), 1, - anon_sym_with, - ACTIONS(6761), 1, - anon_sym_as, - ACTIONS(6962), 1, + ACTIONS(7918), 1, + anon_sym_and, + STATE(5138), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + ACTIONS(6097), 11, + anon_sym_LT, + anon_sym_GT, anon_sym_QMARK, - ACTIONS(6968), 1, + anon_sym_BANG, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_SLASH, - ACTIONS(6970), 1, - anon_sym_CARET, - ACTIONS(6972), 1, anon_sym_PIPE, - ACTIONS(6974), 1, anon_sym_AMP, - ACTIONS(6978), 1, anon_sym_GT_GT, - ACTIONS(6984), 1, - anon_sym_DOT_DOT, - ACTIONS(6986), 1, - anon_sym_AMP_AMP, - ACTIONS(6988), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6990), 1, - anon_sym_QMARK_QMARK, - ACTIONS(6992), 1, - anon_sym_is, - STATE(3173), 1, - sym_bracketed_argument_list, - STATE(4583), 1, - sym_argument_list, - ACTIONS(6627), 2, + anon_sym_DOT, + ACTIONS(6095), 25, + anon_sym_LBRACK, + anon_sym_LPAREN, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6960), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(6964), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(6966), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(6976), 2, + anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(6980), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6982), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(8110), 2, - sym_interpolation_close_brace, - anon_sym_COLON, - STATE(5198), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - [152296] = 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_into, + anon_sym_on, + anon_sym_as, + anon_sym_is, + anon_sym_DASH_GT, + anon_sym_with, + [146396] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -649409,83 +643753,58 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4755), 1, - anon_sym_DASH_GT, - ACTIONS(4804), 1, - anon_sym_LPAREN, - ACTIONS(4808), 1, - anon_sym_DOT, - ACTIONS(4835), 1, - anon_sym_LBRACK, - ACTIONS(4839), 1, + ACTIONS(7918), 1, + anon_sym_and, + ACTIONS(7920), 1, + anon_sym_or, + STATE(5139), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + ACTIONS(5360), 11, + anon_sym_LT, + anon_sym_GT, + anon_sym_QMARK, anon_sym_BANG, - ACTIONS(6293), 1, - anon_sym_switch, - ACTIONS(6307), 1, - anon_sym_with, - ACTIONS(7876), 1, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_SLASH, - ACTIONS(7878), 1, - anon_sym_CARET, - ACTIONS(7880), 1, anon_sym_PIPE, - ACTIONS(7882), 1, anon_sym_AMP, - ACTIONS(7886), 1, anon_sym_GT_GT, - ACTIONS(7892), 1, - anon_sym_DOT_DOT, - ACTIONS(7894), 1, - anon_sym_AMP_AMP, - ACTIONS(7896), 1, - anon_sym_as, - ACTIONS(7898), 1, - anon_sym_is, - ACTIONS(8112), 1, - anon_sym_QMARK, - ACTIONS(8114), 1, - anon_sym_PIPE_PIPE, - ACTIONS(8116), 1, - anon_sym_QMARK_QMARK, - STATE(2433), 1, - sym_bracketed_argument_list, - STATE(3035), 1, - sym_argument_list, - ACTIONS(4841), 2, + anon_sym_DOT, + ACTIONS(5358), 24, + anon_sym_LBRACK, + anon_sym_LPAREN, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5745), 2, - anon_sym_into, - anon_sym_equals, - ACTIONS(7870), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(7872), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(7874), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7884), 2, + anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7888), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7890), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - 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, - [152433] = 34, + anon_sym_switch, + anon_sym_DOT_DOT, + 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, + [146483] = 17, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -649506,67 +643825,25 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4755), 1, - anon_sym_DASH_GT, - ACTIONS(4804), 1, - anon_sym_LPAREN, - ACTIONS(4808), 1, - anon_sym_DOT, - ACTIONS(4835), 1, + ACTIONS(4033), 1, anon_sym_LBRACK, - ACTIONS(4839), 1, - anon_sym_BANG, - ACTIONS(6293), 1, - anon_sym_switch, - ACTIONS(6307), 1, - anon_sym_with, - ACTIONS(7962), 1, - anon_sym_SLASH, - ACTIONS(7972), 1, - anon_sym_GT_GT, - ACTIONS(7978), 1, - anon_sym_DOT_DOT, - ACTIONS(7986), 1, - anon_sym_as, - ACTIONS(7988), 1, - anon_sym_is, - STATE(2433), 1, - sym_bracketed_argument_list, - STATE(3035), 1, - sym_argument_list, - ACTIONS(4841), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(7954), 2, + ACTIONS(4039), 1, + anon_sym_STAR, + ACTIONS(5326), 1, + anon_sym_QMARK, + ACTIONS(7922), 1, + anon_sym_DOT, + ACTIONS(3961), 9, anon_sym_LT, anon_sym_GT, - ACTIONS(7958), 2, + anon_sym_BANG, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7960), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(7970), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - ACTIONS(7974), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(7976), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(5664), 3, - anon_sym_QMARK, + anon_sym_SLASH, anon_sym_PIPE, anon_sym_AMP, - ACTIONS(5660), 6, - anon_sym_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_QMARK_QMARK, - anon_sym_into, - anon_sym_by, - STATE(5200), 9, + anon_sym_GT_GT, + STATE(5140), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -649576,7 +643853,32 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [152558] = 14, + ACTIONS(3963), 24, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_in, + 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_as, + anon_sym_is, + anon_sym_DASH_GT, + anon_sym_with, + [146574] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -649597,9 +643899,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8104), 1, - anon_sym_and, - STATE(5201), 9, + ACTIONS(7922), 1, + anon_sym_DOT, + STATE(5141), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -649609,7 +643911,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(6069), 11, + ACTIONS(3976), 10, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, @@ -649620,10 +643922,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_AMP, anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(6067), 25, + ACTIONS(3978), 26, anon_sym_LBRACK, anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_in, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_STAR, @@ -649635,19 +643938,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_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, - [152643] = 40, + [146659] = 21, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -649668,73 +643970,31 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4100), 1, - anon_sym_DOT, - ACTIONS(4102), 1, - anon_sym_DASH_GT, - ACTIONS(5264), 1, + ACTIONS(25), 1, + sym__identifier_token, + ACTIONS(141), 1, + anon_sym_SQUOTE, + ACTIONS(7906), 1, anon_sym_LPAREN, - ACTIONS(5304), 1, + ACTIONS(7908), 1, anon_sym_BANG, - ACTIONS(5573), 1, - anon_sym_LBRACK, - ACTIONS(6343), 1, - anon_sym_switch, - ACTIONS(6357), 1, - anon_sym_with, - ACTIONS(6813), 1, - anon_sym_as, - ACTIONS(7139), 1, - anon_sym_QMARK, - ACTIONS(7145), 1, - anon_sym_SLASH, - ACTIONS(7147), 1, - anon_sym_CARET, - ACTIONS(7149), 1, - anon_sym_PIPE, - ACTIONS(7151), 1, - anon_sym_AMP, - ACTIONS(7155), 1, - anon_sym_GT_GT, - ACTIONS(7161), 1, - anon_sym_DOT_DOT, - ACTIONS(7163), 1, - anon_sym_AMP_AMP, - ACTIONS(7165), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7167), 1, - anon_sym_QMARK_QMARK, - ACTIONS(7169), 1, - anon_sym_is, - STATE(2485), 1, - sym_bracketed_argument_list, - STATE(3487), 1, - sym_argument_list, - ACTIONS(5306), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(7137), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(7141), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(7143), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(7153), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - ACTIONS(7157), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(7159), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(8118), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - STATE(5202), 9, + ACTIONS(7910), 1, + sym_integer_literal, + STATE(2168), 1, + sym__reserved_identifier, + STATE(6471), 1, + sym__preproc_expression, + ACTIONS(77), 2, + anon_sym_true, + anon_sym_false, + STATE(6552), 6, + sym_character_literal, + sym_boolean_literal, + sym_identifier, + sym_preproc_parenthesized_expression, + sym_preproc_unary_expression, + sym_preproc_binary_expression, + STATE(5142), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -649744,7 +644004,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [152780] = 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, + [146758] = 41, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -649765,44 +644048,74 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4755), 1, + ACTIONS(4042), 1, + anon_sym_DOT, + ACTIONS(4044), 1, anon_sym_DASH_GT, - ACTIONS(4804), 1, + ACTIONS(5257), 1, anon_sym_LPAREN, - ACTIONS(4808), 1, - anon_sym_DOT, - ACTIONS(4835), 1, - anon_sym_LBRACK, - ACTIONS(4839), 1, + ACTIONS(5302), 1, anon_sym_BANG, - ACTIONS(6293), 1, + ACTIONS(5549), 1, + anon_sym_LBRACK, + ACTIONS(6355), 1, anon_sym_switch, - ACTIONS(6307), 1, + ACTIONS(6369), 1, anon_sym_with, - ACTIONS(7876), 1, + ACTIONS(6811), 1, + anon_sym_as, + ACTIONS(7231), 1, + anon_sym_QMARK, + ACTIONS(7237), 1, anon_sym_SLASH, - ACTIONS(7892), 1, + ACTIONS(7239), 1, + anon_sym_CARET, + ACTIONS(7241), 1, + anon_sym_PIPE, + ACTIONS(7243), 1, + anon_sym_AMP, + ACTIONS(7247), 1, + anon_sym_GT_GT, + ACTIONS(7253), 1, anon_sym_DOT_DOT, - STATE(2433), 1, + ACTIONS(7255), 1, + anon_sym_AMP_AMP, + ACTIONS(7257), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7259), 1, + anon_sym_QMARK_QMARK, + ACTIONS(7261), 1, + anon_sym_is, + ACTIONS(7839), 1, + anon_sym_COMMA, + ACTIONS(7924), 1, + anon_sym_RPAREN, + STATE(2467), 1, sym_bracketed_argument_list, - STATE(3035), 1, + STATE(3381), 1, sym_argument_list, - ACTIONS(4841), 2, + ACTIONS(5304), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7874), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(5664), 8, + ACTIONS(7229), 2, anon_sym_LT, anon_sym_GT, - anon_sym_QMARK, + ACTIONS(7233), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT_GT, - STATE(5203), 9, + ACTIONS(7235), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(7245), 2, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + ACTIONS(7249), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(7251), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + STATE(5143), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -649812,22 +644125,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5660), 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, - [152889] = 29, + [146897] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -649848,72 +644146,83 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4755), 1, + ACTIONS(4042), 1, + anon_sym_DOT, + ACTIONS(4044), 1, anon_sym_DASH_GT, - ACTIONS(4804), 1, + ACTIONS(5257), 1, anon_sym_LPAREN, - ACTIONS(4808), 1, - anon_sym_DOT, - ACTIONS(4835), 1, - anon_sym_LBRACK, - ACTIONS(4839), 1, + ACTIONS(5302), 1, anon_sym_BANG, - ACTIONS(6293), 1, + ACTIONS(5549), 1, + anon_sym_LBRACK, + ACTIONS(6355), 1, anon_sym_switch, - ACTIONS(6307), 1, + ACTIONS(6369), 1, anon_sym_with, - ACTIONS(7962), 1, + ACTIONS(6811), 1, + anon_sym_as, + ACTIONS(7261), 1, + anon_sym_is, + ACTIONS(7562), 1, + anon_sym_QMARK, + ACTIONS(7568), 1, anon_sym_SLASH, - ACTIONS(7972), 1, + ACTIONS(7570), 1, + anon_sym_CARET, + ACTIONS(7572), 1, + anon_sym_PIPE, + ACTIONS(7574), 1, + anon_sym_AMP, + ACTIONS(7578), 1, anon_sym_GT_GT, - ACTIONS(7978), 1, + ACTIONS(7584), 1, anon_sym_DOT_DOT, - STATE(2433), 1, + ACTIONS(7586), 1, + anon_sym_AMP_AMP, + ACTIONS(7588), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7590), 1, + anon_sym_QMARK_QMARK, + STATE(2467), 1, sym_bracketed_argument_list, - STATE(3035), 1, + STATE(3381), 1, sym_argument_list, - ACTIONS(4841), 2, + ACTIONS(5304), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7958), 2, + ACTIONS(7560), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(7564), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7960), 2, + ACTIONS(7566), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7970), 2, + ACTIONS(7576), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(5664), 5, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_AMP, - STATE(5204), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - ACTIONS(5660), 12, - anon_sym_CARET, + ACTIONS(7580), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + ACTIONS(7582), 2, 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, - [153004] = 15, + ACTIONS(7696), 2, + anon_sym_SEMI, + anon_sym_COMMA, + STATE(5144), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + [147034] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -649934,58 +644243,83 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8104), 1, - anon_sym_and, - ACTIONS(8106), 1, - anon_sym_or, - STATE(5205), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - ACTIONS(5356), 11, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, + ACTIONS(4042), 1, + anon_sym_DOT, + ACTIONS(4044), 1, + anon_sym_DASH_GT, + ACTIONS(5257), 1, + anon_sym_LPAREN, + ACTIONS(5302), 1, anon_sym_BANG, - anon_sym_PLUS, - anon_sym_DASH, + ACTIONS(5549), 1, + anon_sym_LBRACK, + ACTIONS(6355), 1, + anon_sym_switch, + ACTIONS(6369), 1, + anon_sym_with, + ACTIONS(6811), 1, + anon_sym_as, + ACTIONS(7231), 1, + anon_sym_QMARK, + ACTIONS(7237), 1, anon_sym_SLASH, + ACTIONS(7239), 1, + anon_sym_CARET, + ACTIONS(7241), 1, anon_sym_PIPE, + ACTIONS(7243), 1, anon_sym_AMP, + ACTIONS(7247), 1, anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(5354), 24, - anon_sym_LBRACK, - anon_sym_LPAREN, + ACTIONS(7253), 1, + anon_sym_DOT_DOT, + ACTIONS(7255), 1, + anon_sym_AMP_AMP, + ACTIONS(7257), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7259), 1, + anon_sym_QMARK_QMARK, + ACTIONS(7261), 1, + anon_sym_is, + STATE(2467), 1, + sym_bracketed_argument_list, + STATE(3381), 1, + sym_argument_list, + ACTIONS(5304), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + ACTIONS(7229), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(7233), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(7235), 2, anon_sym_STAR, anon_sym_PERCENT, - anon_sym_CARET, + ACTIONS(7245), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, + ACTIONS(7249), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + ACTIONS(7251), 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_into, - anon_sym_as, - anon_sym_is, - anon_sym_DASH_GT, - anon_sym_with, - [153091] = 40, + ACTIONS(7926), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + STATE(5145), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + [147171] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -650006,73 +644340,73 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4755), 1, + ACTIONS(4042), 1, + anon_sym_DOT, + ACTIONS(4044), 1, anon_sym_DASH_GT, - ACTIONS(4804), 1, + ACTIONS(5257), 1, anon_sym_LPAREN, - ACTIONS(4808), 1, - anon_sym_DOT, - ACTIONS(4835), 1, - anon_sym_LBRACK, - ACTIONS(4839), 1, + ACTIONS(5302), 1, anon_sym_BANG, - ACTIONS(6293), 1, + ACTIONS(5549), 1, + anon_sym_LBRACK, + ACTIONS(6355), 1, anon_sym_switch, - ACTIONS(6307), 1, + ACTIONS(6369), 1, anon_sym_with, - ACTIONS(7876), 1, + ACTIONS(6811), 1, + anon_sym_as, + ACTIONS(7231), 1, + anon_sym_QMARK, + ACTIONS(7237), 1, anon_sym_SLASH, - ACTIONS(7878), 1, + ACTIONS(7239), 1, anon_sym_CARET, - ACTIONS(7880), 1, + ACTIONS(7241), 1, anon_sym_PIPE, - ACTIONS(7882), 1, + ACTIONS(7243), 1, anon_sym_AMP, - ACTIONS(7886), 1, + ACTIONS(7247), 1, anon_sym_GT_GT, - ACTIONS(7892), 1, + ACTIONS(7253), 1, anon_sym_DOT_DOT, - ACTIONS(7894), 1, + ACTIONS(7255), 1, anon_sym_AMP_AMP, - ACTIONS(7896), 1, - anon_sym_as, - ACTIONS(7898), 1, - anon_sym_is, - ACTIONS(8112), 1, - anon_sym_QMARK, - ACTIONS(8114), 1, + ACTIONS(7257), 1, anon_sym_PIPE_PIPE, - ACTIONS(8116), 1, + ACTIONS(7259), 1, anon_sym_QMARK_QMARK, - STATE(2433), 1, + ACTIONS(7261), 1, + anon_sym_is, + STATE(2467), 1, sym_bracketed_argument_list, - STATE(3035), 1, + STATE(3381), 1, sym_argument_list, - ACTIONS(4841), 2, + ACTIONS(5304), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5767), 2, - anon_sym_into, - anon_sym_equals, - ACTIONS(7870), 2, + ACTIONS(7229), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7872), 2, + ACTIONS(7233), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7874), 2, + ACTIONS(7235), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7884), 2, + ACTIONS(7245), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7888), 2, + ACTIONS(7249), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7890), 2, + ACTIONS(7251), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - STATE(5206), 9, + ACTIONS(7928), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + STATE(5146), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -650082,7 +644416,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [153228] = 36, + [147308] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -650103,69 +644437,73 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4755), 1, + ACTIONS(4042), 1, + anon_sym_DOT, + ACTIONS(4044), 1, anon_sym_DASH_GT, - ACTIONS(4804), 1, + ACTIONS(5257), 1, anon_sym_LPAREN, - ACTIONS(4808), 1, - anon_sym_DOT, - ACTIONS(4835), 1, - anon_sym_LBRACK, - ACTIONS(4839), 1, + ACTIONS(5302), 1, anon_sym_BANG, - ACTIONS(6293), 1, + ACTIONS(5549), 1, + anon_sym_LBRACK, + ACTIONS(6355), 1, anon_sym_switch, - ACTIONS(6307), 1, + ACTIONS(6369), 1, anon_sym_with, - ACTIONS(7876), 1, + ACTIONS(6811), 1, + anon_sym_as, + ACTIONS(7231), 1, + anon_sym_QMARK, + ACTIONS(7237), 1, anon_sym_SLASH, - ACTIONS(7878), 1, + ACTIONS(7239), 1, anon_sym_CARET, - ACTIONS(7882), 1, + ACTIONS(7241), 1, + anon_sym_PIPE, + ACTIONS(7243), 1, anon_sym_AMP, - ACTIONS(7886), 1, + ACTIONS(7247), 1, anon_sym_GT_GT, - ACTIONS(7892), 1, + ACTIONS(7253), 1, anon_sym_DOT_DOT, - ACTIONS(7896), 1, - anon_sym_as, - ACTIONS(7898), 1, + ACTIONS(7255), 1, + anon_sym_AMP_AMP, + ACTIONS(7257), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7259), 1, + anon_sym_QMARK_QMARK, + ACTIONS(7261), 1, anon_sym_is, - STATE(2433), 1, + STATE(2467), 1, sym_bracketed_argument_list, - STATE(3035), 1, + STATE(3381), 1, sym_argument_list, - ACTIONS(4841), 2, + ACTIONS(5304), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5664), 2, - anon_sym_QMARK, - anon_sym_PIPE, - ACTIONS(7870), 2, + ACTIONS(7229), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7872), 2, + ACTIONS(7233), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7874), 2, + ACTIONS(7235), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7884), 2, + ACTIONS(7245), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7888), 2, + ACTIONS(7249), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7890), 2, + ACTIONS(7251), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5660), 5, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_QMARK_QMARK, - anon_sym_into, - anon_sym_equals, - STATE(5207), 9, + ACTIONS(7536), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + STATE(5147), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -650175,7 +644513,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [153357] = 40, + [147445] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -650196,73 +644534,73 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4100), 1, + ACTIONS(4042), 1, anon_sym_DOT, - ACTIONS(4102), 1, + ACTIONS(4044), 1, anon_sym_DASH_GT, - ACTIONS(5264), 1, + ACTIONS(5257), 1, anon_sym_LPAREN, - ACTIONS(5304), 1, + ACTIONS(5302), 1, anon_sym_BANG, - ACTIONS(5573), 1, + ACTIONS(5549), 1, anon_sym_LBRACK, - ACTIONS(6343), 1, + ACTIONS(6355), 1, anon_sym_switch, - ACTIONS(6357), 1, + ACTIONS(6369), 1, anon_sym_with, - ACTIONS(6813), 1, + ACTIONS(6811), 1, anon_sym_as, - ACTIONS(7169), 1, - anon_sym_is, - ACTIONS(7442), 1, + ACTIONS(7231), 1, + anon_sym_QMARK, + ACTIONS(7237), 1, anon_sym_SLASH, - ACTIONS(7444), 1, + ACTIONS(7239), 1, anon_sym_CARET, - ACTIONS(7446), 1, + ACTIONS(7241), 1, anon_sym_PIPE, - ACTIONS(7448), 1, + ACTIONS(7243), 1, anon_sym_AMP, - ACTIONS(7452), 1, + ACTIONS(7247), 1, anon_sym_GT_GT, - ACTIONS(7458), 1, + ACTIONS(7253), 1, anon_sym_DOT_DOT, - ACTIONS(7621), 1, + ACTIONS(7255), 1, anon_sym_AMP_AMP, - ACTIONS(7623), 1, + ACTIONS(7257), 1, anon_sym_PIPE_PIPE, - ACTIONS(7625), 1, + ACTIONS(7259), 1, anon_sym_QMARK_QMARK, - ACTIONS(7659), 1, - anon_sym_QMARK, - STATE(2485), 1, + ACTIONS(7261), 1, + anon_sym_is, + STATE(2467), 1, sym_bracketed_argument_list, - STATE(3487), 1, + STATE(3381), 1, sym_argument_list, - ACTIONS(5306), 2, + ACTIONS(5304), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7436), 2, + ACTIONS(7229), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7438), 2, + ACTIONS(7233), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7440), 2, + ACTIONS(7235), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7450), 2, + ACTIONS(7245), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7454), 2, + ACTIONS(7249), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7456), 2, + ACTIONS(7251), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(8120), 2, - anon_sym_SEMI, + ACTIONS(7930), 2, anon_sym_COMMA, - STATE(5208), 9, + anon_sym_RPAREN, + STATE(5148), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -650272,7 +644610,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [153494] = 29, + [147582] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -650293,49 +644631,73 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4755), 1, + ACTIONS(4042), 1, + anon_sym_DOT, + ACTIONS(4044), 1, anon_sym_DASH_GT, - ACTIONS(4804), 1, + ACTIONS(5257), 1, anon_sym_LPAREN, - ACTIONS(4808), 1, - anon_sym_DOT, - ACTIONS(4835), 1, - anon_sym_LBRACK, - ACTIONS(4839), 1, + ACTIONS(5302), 1, anon_sym_BANG, - ACTIONS(6293), 1, + ACTIONS(5549), 1, + anon_sym_LBRACK, + ACTIONS(6355), 1, anon_sym_switch, - ACTIONS(6307), 1, + ACTIONS(6369), 1, anon_sym_with, - ACTIONS(7902), 1, - anon_sym_DOT_DOT, - ACTIONS(8076), 1, + ACTIONS(6811), 1, + anon_sym_as, + ACTIONS(7231), 1, + anon_sym_QMARK, + ACTIONS(7237), 1, anon_sym_SLASH, - ACTIONS(8086), 1, + ACTIONS(7239), 1, + anon_sym_CARET, + ACTIONS(7241), 1, + anon_sym_PIPE, + ACTIONS(7243), 1, + anon_sym_AMP, + ACTIONS(7247), 1, anon_sym_GT_GT, - STATE(2433), 1, + ACTIONS(7253), 1, + anon_sym_DOT_DOT, + ACTIONS(7255), 1, + anon_sym_AMP_AMP, + ACTIONS(7257), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7259), 1, + anon_sym_QMARK_QMARK, + ACTIONS(7261), 1, + anon_sym_is, + STATE(2467), 1, sym_bracketed_argument_list, - STATE(3035), 1, + STATE(3381), 1, sym_argument_list, - ACTIONS(4841), 2, + ACTIONS(5304), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(8072), 2, + ACTIONS(7229), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(7233), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(8074), 2, + ACTIONS(7235), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8084), 2, + ACTIONS(7245), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(5664), 5, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_AMP, - STATE(5209), 9, + ACTIONS(7249), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(7251), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(7932), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + STATE(5149), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -650345,20 +644707,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5660), 12, - 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_on, - anon_sym_as, - anon_sym_is, - [153609] = 14, + [147719] = 21, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -650379,9 +644728,31 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8122), 1, - anon_sym_and, - STATE(5210), 9, + ACTIONS(7846), 1, + sym__identifier_token, + ACTIONS(7850), 1, + anon_sym_LPAREN, + ACTIONS(7852), 1, + anon_sym_BANG, + ACTIONS(7856), 1, + anon_sym_SQUOTE, + ACTIONS(7858), 1, + sym_integer_literal, + STATE(6436), 1, + sym__reserved_identifier, + STATE(6485), 1, + sym__preproc_expression, + ACTIONS(7854), 2, + anon_sym_true, + anon_sym_false, + STATE(6482), 6, + sym_character_literal, + sym_boolean_literal, + sym_identifier, + sym_preproc_parenthesized_expression, + sym_preproc_unary_expression, + sym_preproc_binary_expression, + STATE(5150), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -650391,45 +644762,127 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(6069), 12, - anon_sym_LT, - anon_sym_GT, - anon_sym_in, - anon_sym_QMARK, + ACTIONS(7848), 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, + [147818] = 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(4753), 1, + anon_sym_LPAREN, + ACTIONS(4792), 1, + anon_sym_DOT, + ACTIONS(4794), 1, + anon_sym_DASH_GT, + ACTIONS(4819), 1, + anon_sym_LBRACK, + ACTIONS(4823), 1, anon_sym_BANG, - anon_sym_PLUS, - anon_sym_DASH, + ACTIONS(6264), 1, + anon_sym_switch, + ACTIONS(6278), 1, + anon_sym_with, + ACTIONS(6327), 1, + anon_sym_as, + ACTIONS(7936), 1, + anon_sym_QMARK, + ACTIONS(7942), 1, anon_sym_SLASH, + ACTIONS(7944), 1, + anon_sym_CARET, + ACTIONS(7946), 1, anon_sym_PIPE, + ACTIONS(7948), 1, anon_sym_AMP, + ACTIONS(7952), 1, anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(6067), 24, - anon_sym_LBRACK, - anon_sym_LPAREN, + ACTIONS(7958), 1, + anon_sym_DOT_DOT, + ACTIONS(7960), 1, + anon_sym_AMP_AMP, + ACTIONS(7962), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7964), 1, + anon_sym_QMARK_QMARK, + ACTIONS(7966), 1, + anon_sym_is, + STATE(2419), 1, + sym_bracketed_argument_list, + STATE(2958), 1, + sym_argument_list, + ACTIONS(4825), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + ACTIONS(5733), 2, + anon_sym_EQ_GT, + anon_sym_into, + ACTIONS(7934), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(7938), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(7940), 2, anon_sym_STAR, anon_sym_PERCENT, - anon_sym_CARET, + ACTIONS(7950), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, + ACTIONS(7954), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + ACTIONS(7956), 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_into, - anon_sym_as, - anon_sym_is, - anon_sym_DASH_GT, - anon_sym_with, - [153694] = 21, + STATE(5151), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + [147955] = 18, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -650450,31 +644903,24 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(7904), 1, - sym__identifier_token, - ACTIONS(7908), 1, + ACTIONS(4044), 1, + anon_sym_DASH_GT, + ACTIONS(6601), 1, + anon_sym_LBRACK, + ACTIONS(6603), 1, + anon_sym_STAR, + ACTIONS(6705), 1, + anon_sym_QMARK, + ACTIONS(7968), 1, + anon_sym_DOT, + ACTIONS(3963), 6, + anon_sym_COMMA, + anon_sym_RBRACK, anon_sym_LPAREN, - ACTIONS(7910), 1, - anon_sym_BANG, - ACTIONS(7914), 1, - anon_sym_SQUOTE, - ACTIONS(7916), 1, - sym_integer_literal, - STATE(6452), 1, - sym__reserved_identifier, - STATE(6547), 1, - sym__preproc_expression, - ACTIONS(7912), 2, - anon_sym_true, - anon_sym_false, - STATE(6542), 6, - sym_character_literal, - sym_boolean_literal, - sym_identifier, - sym_preproc_parenthesized_expression, - sym_preproc_unary_expression, - sym_preproc_binary_expression, - STATE(5211), 9, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + STATE(5152), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -650484,7 +644930,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(7906), 22, + ACTIONS(3961), 26, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -650495,6 +644941,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, @@ -650507,7 +644956,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [153793] = 15, + sym__identifier_token, + [148048] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -650528,58 +644978,83 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8122), 1, - anon_sym_and, - ACTIONS(8124), 1, - anon_sym_or, - STATE(5212), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - ACTIONS(5356), 12, - anon_sym_LT, - anon_sym_GT, - anon_sym_in, - anon_sym_QMARK, + ACTIONS(4042), 1, + anon_sym_DOT, + ACTIONS(4044), 1, + anon_sym_DASH_GT, + ACTIONS(5257), 1, + anon_sym_LPAREN, + ACTIONS(5302), 1, anon_sym_BANG, - anon_sym_PLUS, - anon_sym_DASH, + ACTIONS(5549), 1, + anon_sym_LBRACK, + ACTIONS(6355), 1, + anon_sym_switch, + ACTIONS(6369), 1, + anon_sym_with, + ACTIONS(6811), 1, + anon_sym_as, + ACTIONS(7231), 1, + anon_sym_QMARK, + ACTIONS(7237), 1, anon_sym_SLASH, + ACTIONS(7239), 1, + anon_sym_CARET, + ACTIONS(7241), 1, anon_sym_PIPE, + ACTIONS(7243), 1, anon_sym_AMP, + ACTIONS(7247), 1, anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(5354), 23, - anon_sym_LBRACK, - anon_sym_LPAREN, + ACTIONS(7253), 1, + anon_sym_DOT_DOT, + ACTIONS(7255), 1, + anon_sym_AMP_AMP, + ACTIONS(7257), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7259), 1, + anon_sym_QMARK_QMARK, + ACTIONS(7261), 1, + anon_sym_is, + STATE(2467), 1, + sym_bracketed_argument_list, + STATE(3381), 1, + sym_argument_list, + ACTIONS(5304), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + ACTIONS(7229), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(7233), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(7235), 2, anon_sym_STAR, anon_sym_PERCENT, - anon_sym_CARET, + ACTIONS(7245), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, + ACTIONS(7249), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + ACTIONS(7251), 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, - [153880] = 21, + ACTIONS(7516), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + 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, + [148185] = 23, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -650600,31 +645075,33 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(25), 1, + ACTIONS(3861), 1, + anon_sym_LBRACE, + ACTIONS(3877), 1, + sym_discard, + ACTIONS(6969), 1, sym__identifier_token, - ACTIONS(141), 1, - anon_sym_SQUOTE, - ACTIONS(7996), 1, + ACTIONS(7916), 1, anon_sym_LPAREN, - ACTIONS(7998), 1, - anon_sym_BANG, - ACTIONS(8000), 1, - sym_integer_literal, - STATE(2175), 1, + STATE(2565), 1, sym__reserved_identifier, - STATE(6471), 1, - sym__preproc_expression, - ACTIONS(77), 2, - anon_sym_true, - anon_sym_false, - STATE(6543), 6, - sym_character_literal, - sym_boolean_literal, + STATE(3352), 1, + sym_parenthesized_variable_designation, + STATE(3355), 1, sym_identifier, - sym_preproc_parenthesized_expression, - sym_preproc_unary_expression, - sym_preproc_binary_expression, - STATE(5213), 9, + STATE(3471), 1, + sym__variable_designation, + STATE(5674), 1, + sym_property_pattern_clause, + ACTIONS(3887), 2, + anon_sym_and, + anon_sym_or, + ACTIONS(3885), 4, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_RBRACE, + STATE(5154), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -650634,7 +645111,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(29), 22, + ACTIONS(6971), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -650657,7 +645134,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [153979] = 21, + [148288] = 26, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -650678,31 +645155,37 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(7904), 1, + ACTIONS(3861), 1, + anon_sym_LBRACE, + ACTIONS(3869), 1, + anon_sym_COLON, + ACTIONS(3877), 1, + sym_discard, + ACTIONS(6969), 1, sym__identifier_token, - ACTIONS(7908), 1, + ACTIONS(6973), 1, anon_sym_LPAREN, - ACTIONS(7910), 1, - anon_sym_BANG, - ACTIONS(7914), 1, - anon_sym_SQUOTE, - ACTIONS(7916), 1, - sym_integer_literal, - STATE(6452), 1, + STATE(2565), 1, sym__reserved_identifier, - STATE(6472), 1, - sym__preproc_expression, - ACTIONS(7912), 2, - anon_sym_true, - anon_sym_false, - STATE(6542), 6, - sym_character_literal, - sym_boolean_literal, + STATE(3352), 1, + sym_parenthesized_variable_designation, + STATE(3422), 1, + sym__variable_designation, + STATE(3430), 1, sym_identifier, - sym_preproc_parenthesized_expression, - sym_preproc_unary_expression, - sym_preproc_binary_expression, - STATE(5214), 9, + STATE(5667), 1, + sym_positional_pattern_clause, + STATE(5722), 1, + sym_property_pattern_clause, + STATE(7378), 1, + sym__lambda_parameters, + STATE(7531), 1, + sym_parameter_list, + ACTIONS(3867), 3, + anon_sym_when, + anon_sym_and, + anon_sym_or, + STATE(5155), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -650712,7 +645195,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(7906), 22, + ACTIONS(6971), 21, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -650722,7 +645205,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, @@ -650735,7 +645217,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [154078] = 40, + [148397] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -650756,73 +645238,170 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4755), 1, + ACTIONS(4042), 1, + anon_sym_DOT, + ACTIONS(4044), 1, anon_sym_DASH_GT, - ACTIONS(4804), 1, + ACTIONS(5257), 1, anon_sym_LPAREN, - ACTIONS(4808), 1, - anon_sym_DOT, - ACTIONS(4835), 1, - anon_sym_LBRACK, - ACTIONS(4839), 1, + ACTIONS(5302), 1, anon_sym_BANG, - ACTIONS(6293), 1, + ACTIONS(5549), 1, + anon_sym_LBRACK, + ACTIONS(6355), 1, anon_sym_switch, - ACTIONS(6307), 1, + ACTIONS(6369), 1, anon_sym_with, - ACTIONS(7876), 1, + ACTIONS(6811), 1, + anon_sym_as, + ACTIONS(7261), 1, + anon_sym_is, + ACTIONS(7562), 1, + anon_sym_QMARK, + ACTIONS(7568), 1, anon_sym_SLASH, - ACTIONS(7878), 1, + ACTIONS(7570), 1, anon_sym_CARET, - ACTIONS(7880), 1, + ACTIONS(7572), 1, anon_sym_PIPE, - ACTIONS(7882), 1, + ACTIONS(7574), 1, anon_sym_AMP, - ACTIONS(7886), 1, + ACTIONS(7578), 1, anon_sym_GT_GT, - ACTIONS(7892), 1, + ACTIONS(7584), 1, anon_sym_DOT_DOT, - ACTIONS(7894), 1, + ACTIONS(7586), 1, anon_sym_AMP_AMP, - ACTIONS(7896), 1, + ACTIONS(7588), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7590), 1, + anon_sym_QMARK_QMARK, + STATE(2467), 1, + sym_bracketed_argument_list, + STATE(3381), 1, + sym_argument_list, + ACTIONS(5304), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7560), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(7564), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(7566), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(7576), 2, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + ACTIONS(7580), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(7582), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(7930), 2, + anon_sym_SEMI, + anon_sym_COMMA, + 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, + [148534] = 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(4042), 1, + anon_sym_DOT, + ACTIONS(4044), 1, + anon_sym_DASH_GT, + ACTIONS(5257), 1, + anon_sym_LPAREN, + ACTIONS(5302), 1, + anon_sym_BANG, + ACTIONS(5549), 1, + anon_sym_LBRACK, + ACTIONS(6355), 1, + anon_sym_switch, + ACTIONS(6369), 1, + anon_sym_with, + ACTIONS(6811), 1, anon_sym_as, - ACTIONS(7898), 1, + ACTIONS(7261), 1, anon_sym_is, - ACTIONS(8112), 1, + ACTIONS(7562), 1, anon_sym_QMARK, - ACTIONS(8114), 1, + ACTIONS(7568), 1, + anon_sym_SLASH, + ACTIONS(7570), 1, + anon_sym_CARET, + ACTIONS(7572), 1, + anon_sym_PIPE, + ACTIONS(7574), 1, + anon_sym_AMP, + ACTIONS(7578), 1, + anon_sym_GT_GT, + ACTIONS(7584), 1, + anon_sym_DOT_DOT, + ACTIONS(7586), 1, + anon_sym_AMP_AMP, + ACTIONS(7588), 1, anon_sym_PIPE_PIPE, - ACTIONS(8116), 1, + ACTIONS(7590), 1, anon_sym_QMARK_QMARK, - STATE(2433), 1, + STATE(2467), 1, sym_bracketed_argument_list, - STATE(3035), 1, + STATE(3381), 1, sym_argument_list, - ACTIONS(4841), 2, + ACTIONS(5304), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5899), 2, - anon_sym_into, - anon_sym_equals, - ACTIONS(7870), 2, + ACTIONS(7560), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7872), 2, + ACTIONS(7564), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7874), 2, + ACTIONS(7566), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7884), 2, + ACTIONS(7576), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7888), 2, + ACTIONS(7580), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7890), 2, + ACTIONS(7582), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - STATE(5215), 9, + ACTIONS(7932), 2, + anon_sym_SEMI, + anon_sym_COMMA, + STATE(5157), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -650832,7 +645411,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [154215] = 21, + [148671] = 21, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -650857,27 +645436,27 @@ static const uint16_t ts_small_parse_table[] = { sym__identifier_token, ACTIONS(141), 1, anon_sym_SQUOTE, - ACTIONS(7996), 1, + ACTIONS(7906), 1, anon_sym_LPAREN, - ACTIONS(7998), 1, + ACTIONS(7908), 1, anon_sym_BANG, - ACTIONS(8000), 1, + ACTIONS(7910), 1, sym_integer_literal, - STATE(2175), 1, + STATE(2168), 1, sym__reserved_identifier, - STATE(6564), 1, + STATE(6532), 1, sym__preproc_expression, ACTIONS(77), 2, anon_sym_true, anon_sym_false, - STATE(6543), 6, + STATE(6552), 6, sym_character_literal, sym_boolean_literal, sym_identifier, sym_preproc_parenthesized_expression, sym_preproc_unary_expression, sym_preproc_binary_expression, - STATE(5216), 9, + STATE(5158), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -650910,7 +645489,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [154314] = 22, + [148770] = 21, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -650931,36 +645510,31 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4755), 1, - anon_sym_DASH_GT, - ACTIONS(4804), 1, + ACTIONS(25), 1, + sym__identifier_token, + ACTIONS(141), 1, + anon_sym_SQUOTE, + ACTIONS(7906), 1, anon_sym_LPAREN, - ACTIONS(4808), 1, - anon_sym_DOT, - ACTIONS(4835), 1, - anon_sym_LBRACK, - ACTIONS(4839), 1, + ACTIONS(7908), 1, anon_sym_BANG, - ACTIONS(7892), 1, - anon_sym_DOT_DOT, - STATE(2433), 1, - sym_bracketed_argument_list, - STATE(3035), 1, - sym_argument_list, - ACTIONS(4841), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1223), 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(5217), 9, + ACTIONS(7910), 1, + sym_integer_literal, + STATE(2168), 1, + sym__reserved_identifier, + STATE(6534), 1, + sym__preproc_expression, + ACTIONS(77), 2, + anon_sym_true, + anon_sym_false, + STATE(6552), 6, + sym_character_literal, + sym_boolean_literal, + sym_identifier, + sym_preproc_parenthesized_expression, + sym_preproc_unary_expression, + sym_preproc_binary_expression, + STATE(5159), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -650970,26 +645544,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(1221), 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(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_as, - anon_sym_is, - anon_sym_with, - [154415] = 40, + anon_sym_let, + anon_sym_orderby, + anon_sym_ascending, + anon_sym_descending, + anon_sym_group, + anon_sym_by, + anon_sym_select, + [148869] = 21, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -651010,73 +645588,31 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4755), 1, - anon_sym_DASH_GT, - ACTIONS(4804), 1, + ACTIONS(25), 1, + sym__identifier_token, + ACTIONS(141), 1, + anon_sym_SQUOTE, + ACTIONS(7906), 1, anon_sym_LPAREN, - ACTIONS(4808), 1, - anon_sym_DOT, - ACTIONS(4835), 1, - anon_sym_LBRACK, - ACTIONS(4839), 1, + ACTIONS(7908), 1, anon_sym_BANG, - ACTIONS(6293), 1, - anon_sym_switch, - ACTIONS(6307), 1, - anon_sym_with, - ACTIONS(7956), 1, - anon_sym_QMARK, - ACTIONS(7962), 1, - anon_sym_SLASH, - ACTIONS(7964), 1, - anon_sym_CARET, - ACTIONS(7966), 1, - anon_sym_PIPE, - ACTIONS(7968), 1, - anon_sym_AMP, - ACTIONS(7972), 1, - anon_sym_GT_GT, - ACTIONS(7978), 1, - anon_sym_DOT_DOT, - ACTIONS(7980), 1, - anon_sym_AMP_AMP, - ACTIONS(7982), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7984), 1, - anon_sym_QMARK_QMARK, - ACTIONS(7986), 1, - anon_sym_as, - ACTIONS(7988), 1, - anon_sym_is, - STATE(2433), 1, - sym_bracketed_argument_list, - STATE(3035), 1, - sym_argument_list, - ACTIONS(4841), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5858), 2, - anon_sym_into, - anon_sym_by, - ACTIONS(7954), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(7958), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(7960), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(7970), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - ACTIONS(7974), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(7976), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - STATE(5218), 9, + ACTIONS(7910), 1, + sym_integer_literal, + STATE(2168), 1, + sym__reserved_identifier, + STATE(6538), 1, + sym__preproc_expression, + ACTIONS(77), 2, + anon_sym_true, + anon_sym_false, + STATE(6552), 6, + sym_character_literal, + sym_boolean_literal, + sym_identifier, + sym_preproc_parenthesized_expression, + sym_preproc_unary_expression, + sym_preproc_binary_expression, + STATE(5160), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -651086,7 +645622,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [154552] = 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, + [148968] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -651107,150 +645666,83 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4755), 1, - anon_sym_DASH_GT, - ACTIONS(4804), 1, + ACTIONS(4753), 1, anon_sym_LPAREN, - ACTIONS(4808), 1, + ACTIONS(4792), 1, anon_sym_DOT, - ACTIONS(4835), 1, + ACTIONS(4794), 1, + anon_sym_DASH_GT, + ACTIONS(4819), 1, anon_sym_LBRACK, - ACTIONS(4839), 1, + ACTIONS(4823), 1, anon_sym_BANG, - ACTIONS(6293), 1, + ACTIONS(6264), 1, anon_sym_switch, - ACTIONS(6307), 1, + ACTIONS(6278), 1, anon_sym_with, - ACTIONS(7902), 1, - anon_sym_DOT_DOT, - ACTIONS(8076), 1, - anon_sym_SLASH, - STATE(2433), 1, - sym_bracketed_argument_list, - STATE(3035), 1, - sym_argument_list, - ACTIONS(4841), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(8074), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(5664), 8, - anon_sym_LT, - anon_sym_GT, + ACTIONS(6327), 1, + anon_sym_as, + ACTIONS(7936), 1, anon_sym_QMARK, - anon_sym_PLUS, - anon_sym_DASH, + ACTIONS(7942), 1, + anon_sym_SLASH, + ACTIONS(7944), 1, + anon_sym_CARET, + ACTIONS(7946), 1, anon_sym_PIPE, + ACTIONS(7948), 1, anon_sym_AMP, + ACTIONS(7952), 1, anon_sym_GT_GT, - STATE(5219), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - ACTIONS(5660), 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, + ACTIONS(7958), 1, + anon_sym_DOT_DOT, + ACTIONS(7960), 1, anon_sym_AMP_AMP, + ACTIONS(7962), 1, anon_sym_PIPE_PIPE, + ACTIONS(7964), 1, anon_sym_QMARK_QMARK, - anon_sym_into, - anon_sym_on, - anon_sym_as, + ACTIONS(7966), 1, anon_sym_is, - [154661] = 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(4755), 1, - anon_sym_DASH_GT, - ACTIONS(4804), 1, - anon_sym_LPAREN, - ACTIONS(4808), 1, - anon_sym_DOT, - ACTIONS(4835), 1, - anon_sym_LBRACK, - ACTIONS(4839), 1, - anon_sym_BANG, - ACTIONS(6293), 1, - anon_sym_switch, - ACTIONS(6307), 1, - anon_sym_with, - ACTIONS(7942), 1, - anon_sym_DOT_DOT, - STATE(2433), 1, + STATE(2419), 1, sym_bracketed_argument_list, - STATE(3035), 1, + STATE(2958), 1, sym_argument_list, - ACTIONS(4841), 2, + ACTIONS(4825), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5664), 9, + ACTIONS(5855), 2, + anon_sym_EQ_GT, + anon_sym_into, + ACTIONS(7934), 2, anon_sym_LT, anon_sym_GT, - anon_sym_QMARK, + ACTIONS(7938), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT_GT, - STATE(5220), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - ACTIONS(5660), 16, + ACTIONS(7940), 2, anon_sym_STAR, anon_sym_PERCENT, - anon_sym_CARET, + ACTIONS(7950), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, + ACTIONS(7954), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + ACTIONS(7956), 2, 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_as, - anon_sym_is, - [154766] = 24, + STATE(5161), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + [149105] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -651271,40 +645763,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4755), 1, - anon_sym_DASH_GT, - ACTIONS(4804), 1, - anon_sym_LPAREN, - ACTIONS(4808), 1, - anon_sym_DOT, - ACTIONS(4835), 1, - anon_sym_LBRACK, - ACTIONS(4839), 1, - anon_sym_BANG, - ACTIONS(6293), 1, - anon_sym_switch, - ACTIONS(6307), 1, - anon_sym_with, - ACTIONS(7902), 1, - anon_sym_DOT_DOT, - STATE(2433), 1, - sym_bracketed_argument_list, - STATE(3035), 1, - sym_argument_list, - ACTIONS(4841), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5664), 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(5221), 9, + ACTIONS(7970), 1, + anon_sym_and, + ACTIONS(7972), 1, + anon_sym_or, + STATE(5162), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -651314,7 +645777,23 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5660), 16, + ACTIONS(6109), 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(6107), 24, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_STAR, anon_sym_PERCENT, anon_sym_CARET, @@ -651324,14 +645803,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_on, anon_sym_as, anon_sym_is, - [154871] = 26, + anon_sym_DASH_GT, + anon_sym_with, + [149192] = 21, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -651352,36 +645835,31 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(3879), 1, - anon_sym_COMMA, - ACTIONS(3881), 1, - anon_sym_LBRACE, - ACTIONS(3897), 1, - sym_discard, - ACTIONS(6823), 1, + ACTIONS(7846), 1, sym__identifier_token, - ACTIONS(6827), 1, + ACTIONS(7850), 1, anon_sym_LPAREN, - STATE(2571), 1, + ACTIONS(7852), 1, + anon_sym_BANG, + ACTIONS(7856), 1, + anon_sym_SQUOTE, + ACTIONS(7858), 1, + sym_integer_literal, + STATE(6436), 1, sym__reserved_identifier, - STATE(3463), 1, - sym_parenthesized_variable_designation, - STATE(3492), 1, - sym__variable_designation, - STATE(5279), 1, - sym_positional_pattern_clause, - STATE(5682), 1, - sym_property_pattern_clause, - STATE(6437), 1, + STATE(6554), 1, + sym__preproc_expression, + ACTIONS(7854), 2, + anon_sym_true, + anon_sym_false, + STATE(6482), 6, + sym_character_literal, + sym_boolean_literal, sym_identifier, - STATE(7311), 1, - sym_parameter_list, - STATE(7536), 1, - sym__lambda_parameters, - ACTIONS(3883), 2, - anon_sym_and, - anon_sym_or, - STATE(5222), 9, + sym_preproc_parenthesized_expression, + sym_preproc_unary_expression, + sym_preproc_binary_expression, + STATE(5163), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -651391,7 +645869,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(6825), 22, + ACTIONS(7848), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -651414,7 +645892,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [154980] = 15, + [149291] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -651435,58 +645913,83 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8022), 1, - anon_sym_and, - ACTIONS(8024), 1, - anon_sym_or, - STATE(5223), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - ACTIONS(6207), 11, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, + ACTIONS(4753), 1, + anon_sym_LPAREN, + ACTIONS(4792), 1, + anon_sym_DOT, + ACTIONS(4794), 1, + anon_sym_DASH_GT, + ACTIONS(4819), 1, + anon_sym_LBRACK, + ACTIONS(4823), 1, anon_sym_BANG, - anon_sym_PLUS, - anon_sym_DASH, + ACTIONS(6264), 1, + anon_sym_switch, + ACTIONS(6278), 1, + anon_sym_with, + ACTIONS(7976), 1, + anon_sym_QMARK, + ACTIONS(7982), 1, anon_sym_SLASH, + ACTIONS(7984), 1, + anon_sym_CARET, + ACTIONS(7986), 1, anon_sym_PIPE, + ACTIONS(7988), 1, anon_sym_AMP, + ACTIONS(7992), 1, anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(6205), 24, - anon_sym_LBRACK, - anon_sym_LPAREN, + ACTIONS(7998), 1, + anon_sym_DOT_DOT, + ACTIONS(8000), 1, + anon_sym_AMP_AMP, + ACTIONS(8002), 1, + anon_sym_PIPE_PIPE, + ACTIONS(8004), 1, + anon_sym_QMARK_QMARK, + ACTIONS(8006), 1, + anon_sym_as, + ACTIONS(8008), 1, + anon_sym_is, + STATE(2419), 1, + sym_bracketed_argument_list, + STATE(2958), 1, + sym_argument_list, + ACTIONS(4825), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + ACTIONS(5709), 2, + anon_sym_into, + anon_sym_on, + ACTIONS(7974), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(7978), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(7980), 2, anon_sym_STAR, anon_sym_PERCENT, - anon_sym_CARET, + ACTIONS(7990), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, + ACTIONS(7994), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + ACTIONS(7996), 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_on, - anon_sym_as, - anon_sym_is, - anon_sym_DASH_GT, - anon_sym_with, - [155067] = 22, + STATE(5164), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + [149428] = 22, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -651507,26 +646010,26 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4755), 1, - anon_sym_DASH_GT, - ACTIONS(4804), 1, + ACTIONS(4753), 1, anon_sym_LPAREN, - ACTIONS(4808), 1, + ACTIONS(4792), 1, anon_sym_DOT, - ACTIONS(4835), 1, + ACTIONS(4794), 1, + anon_sym_DASH_GT, + ACTIONS(4819), 1, anon_sym_LBRACK, - ACTIONS(4839), 1, + ACTIONS(4823), 1, anon_sym_BANG, - ACTIONS(7978), 1, + ACTIONS(7998), 1, anon_sym_DOT_DOT, - STATE(2433), 1, + STATE(2419), 1, sym_bracketed_argument_list, - STATE(3035), 1, + STATE(2958), 1, sym_argument_list, - ACTIONS(4841), 2, + ACTIONS(4825), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5733), 9, + ACTIONS(5743), 9, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, @@ -651536,7 +646039,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_AMP, anon_sym_GT_GT, - STATE(5224), 9, + STATE(5165), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -651546,7 +646049,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5731), 18, + ACTIONS(5741), 18, anon_sym_STAR, anon_sym_PERCENT, anon_sym_CARET, @@ -651561,11 +646064,11 @@ static const uint16_t ts_small_parse_table[] = { 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_with, - [155168] = 35, + [149529] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -651586,68 +646089,73 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4755), 1, - anon_sym_DASH_GT, - ACTIONS(4804), 1, + ACTIONS(4753), 1, anon_sym_LPAREN, - ACTIONS(4808), 1, + ACTIONS(4792), 1, anon_sym_DOT, - ACTIONS(4835), 1, + ACTIONS(4794), 1, + anon_sym_DASH_GT, + ACTIONS(4819), 1, anon_sym_LBRACK, - ACTIONS(4839), 1, + ACTIONS(4823), 1, anon_sym_BANG, - ACTIONS(6293), 1, + ACTIONS(6264), 1, anon_sym_switch, - ACTIONS(6307), 1, + ACTIONS(6278), 1, anon_sym_with, - ACTIONS(7902), 1, - anon_sym_DOT_DOT, - ACTIONS(8076), 1, + ACTIONS(7976), 1, + anon_sym_QMARK, + ACTIONS(7982), 1, anon_sym_SLASH, - ACTIONS(8082), 1, + ACTIONS(7984), 1, + anon_sym_CARET, + ACTIONS(7986), 1, + anon_sym_PIPE, + ACTIONS(7988), 1, anon_sym_AMP, - ACTIONS(8086), 1, + ACTIONS(7992), 1, anon_sym_GT_GT, - ACTIONS(8098), 1, + ACTIONS(7998), 1, + anon_sym_DOT_DOT, + ACTIONS(8000), 1, + anon_sym_AMP_AMP, + ACTIONS(8002), 1, + anon_sym_PIPE_PIPE, + ACTIONS(8004), 1, + anon_sym_QMARK_QMARK, + ACTIONS(8006), 1, anon_sym_as, - ACTIONS(8100), 1, + ACTIONS(8008), 1, anon_sym_is, - STATE(2433), 1, + STATE(2419), 1, sym_bracketed_argument_list, - STATE(3035), 1, + STATE(2958), 1, sym_argument_list, - ACTIONS(4841), 2, + ACTIONS(4825), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5664), 2, - anon_sym_QMARK, - anon_sym_PIPE, - ACTIONS(8068), 2, + ACTIONS(5849), 2, + anon_sym_into, + anon_sym_on, + ACTIONS(7974), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(8072), 2, + ACTIONS(7978), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(8074), 2, + ACTIONS(7980), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8084), 2, + ACTIONS(7990), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(8088), 2, + ACTIONS(7994), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(8090), 2, + ACTIONS(7996), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5660), 6, - anon_sym_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_QMARK_QMARK, - anon_sym_into, - anon_sym_on, - STATE(5225), 9, + STATE(5166), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -651657,7 +646165,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [155295] = 40, + [149666] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -651678,73 +646186,73 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4755), 1, - anon_sym_DASH_GT, - ACTIONS(4804), 1, + ACTIONS(4753), 1, anon_sym_LPAREN, - ACTIONS(4808), 1, + ACTIONS(4792), 1, anon_sym_DOT, - ACTIONS(4835), 1, + ACTIONS(4794), 1, + anon_sym_DASH_GT, + ACTIONS(4819), 1, anon_sym_LBRACK, - ACTIONS(4839), 1, + ACTIONS(4823), 1, anon_sym_BANG, - ACTIONS(6293), 1, + ACTIONS(6264), 1, anon_sym_switch, - ACTIONS(6307), 1, + ACTIONS(6278), 1, anon_sym_with, - ACTIONS(7956), 1, + ACTIONS(7976), 1, anon_sym_QMARK, - ACTIONS(7962), 1, + ACTIONS(7982), 1, anon_sym_SLASH, - ACTIONS(7964), 1, + ACTIONS(7984), 1, anon_sym_CARET, - ACTIONS(7966), 1, + ACTIONS(7986), 1, anon_sym_PIPE, - ACTIONS(7968), 1, + ACTIONS(7988), 1, anon_sym_AMP, - ACTIONS(7972), 1, + ACTIONS(7992), 1, anon_sym_GT_GT, - ACTIONS(7978), 1, + ACTIONS(7998), 1, anon_sym_DOT_DOT, - ACTIONS(7980), 1, + ACTIONS(8000), 1, anon_sym_AMP_AMP, - ACTIONS(7982), 1, + ACTIONS(8002), 1, anon_sym_PIPE_PIPE, - ACTIONS(7984), 1, + ACTIONS(8004), 1, anon_sym_QMARK_QMARK, - ACTIONS(7986), 1, + ACTIONS(8006), 1, anon_sym_as, - ACTIONS(7988), 1, + ACTIONS(8008), 1, anon_sym_is, - STATE(2433), 1, + STATE(2419), 1, sym_bracketed_argument_list, - STATE(3035), 1, + STATE(2958), 1, sym_argument_list, - ACTIONS(4841), 2, + ACTIONS(4825), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5864), 2, + ACTIONS(4996), 2, anon_sym_into, - anon_sym_by, - ACTIONS(7954), 2, + anon_sym_on, + ACTIONS(7974), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7958), 2, + ACTIONS(7978), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7960), 2, + ACTIONS(7980), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7970), 2, + ACTIONS(7990), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7974), 2, + ACTIONS(7994), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7976), 2, + ACTIONS(7996), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - STATE(5226), 9, + STATE(5167), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -651754,7 +646262,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [155432] = 40, + [149803] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -651775,73 +646283,73 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4100), 1, + ACTIONS(4753), 1, + anon_sym_LPAREN, + ACTIONS(4792), 1, anon_sym_DOT, - ACTIONS(4102), 1, + ACTIONS(4794), 1, anon_sym_DASH_GT, - ACTIONS(5264), 1, - anon_sym_LPAREN, - ACTIONS(5304), 1, - anon_sym_BANG, - ACTIONS(5573), 1, + ACTIONS(4819), 1, anon_sym_LBRACK, - ACTIONS(6343), 1, + ACTIONS(4823), 1, + anon_sym_BANG, + ACTIONS(6264), 1, anon_sym_switch, - ACTIONS(6357), 1, + ACTIONS(6278), 1, anon_sym_with, - ACTIONS(6813), 1, - anon_sym_as, - ACTIONS(7139), 1, + ACTIONS(7976), 1, anon_sym_QMARK, - ACTIONS(7145), 1, + ACTIONS(7982), 1, anon_sym_SLASH, - ACTIONS(7147), 1, + ACTIONS(7984), 1, anon_sym_CARET, - ACTIONS(7149), 1, + ACTIONS(7986), 1, anon_sym_PIPE, - ACTIONS(7151), 1, + ACTIONS(7988), 1, anon_sym_AMP, - ACTIONS(7155), 1, + ACTIONS(7992), 1, anon_sym_GT_GT, - ACTIONS(7161), 1, + ACTIONS(7998), 1, anon_sym_DOT_DOT, - ACTIONS(7163), 1, + ACTIONS(8000), 1, anon_sym_AMP_AMP, - ACTIONS(7165), 1, + ACTIONS(8002), 1, anon_sym_PIPE_PIPE, - ACTIONS(7167), 1, + ACTIONS(8004), 1, anon_sym_QMARK_QMARK, - ACTIONS(7169), 1, + ACTIONS(8006), 1, + anon_sym_as, + ACTIONS(8008), 1, anon_sym_is, - STATE(2485), 1, + STATE(2419), 1, sym_bracketed_argument_list, - STATE(3487), 1, + STATE(2958), 1, sym_argument_list, - ACTIONS(5306), 2, + ACTIONS(4825), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7137), 2, + ACTIONS(5652), 2, + anon_sym_into, + anon_sym_on, + ACTIONS(7974), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7141), 2, + ACTIONS(7978), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7143), 2, + ACTIONS(7980), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7153), 2, + ACTIONS(7990), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7157), 2, + ACTIONS(7994), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7159), 2, + ACTIONS(7996), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(8126), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - STATE(5227), 9, + STATE(5168), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -651851,7 +646359,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [155569] = 14, + [149940] = 26, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -651872,9 +646380,36 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8022), 1, + ACTIONS(3861), 1, + anon_sym_LBRACE, + ACTIONS(3869), 1, + anon_sym_COMMA, + ACTIONS(3877), 1, + sym_discard, + ACTIONS(6969), 1, + sym__identifier_token, + ACTIONS(6973), 1, + anon_sym_LPAREN, + STATE(2565), 1, + sym__reserved_identifier, + STATE(3352), 1, + sym_parenthesized_variable_designation, + STATE(3422), 1, + sym__variable_designation, + STATE(5154), 1, + sym_positional_pattern_clause, + STATE(5691), 1, + sym_property_pattern_clause, + STATE(6380), 1, + sym_identifier, + STATE(7378), 1, + sym__lambda_parameters, + STATE(7531), 1, + sym_parameter_list, + ACTIONS(3867), 2, anon_sym_and, - STATE(5228), 9, + anon_sym_or, + STATE(5169), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -651884,45 +646419,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(6069), 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(6067), 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, + ACTIONS(6971), 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_as, - anon_sym_is, - anon_sym_DASH_GT, - anon_sym_with, - [155654] = 27, + anon_sym_equals, + anon_sym_let, + anon_sym_orderby, + anon_sym_ascending, + anon_sym_descending, + anon_sym_group, + anon_sym_by, + anon_sym_select, + [150049] = 29, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -651943,45 +646463,49 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4755), 1, - anon_sym_DASH_GT, - ACTIONS(4804), 1, + ACTIONS(4753), 1, anon_sym_LPAREN, - ACTIONS(4808), 1, + ACTIONS(4792), 1, anon_sym_DOT, - ACTIONS(4835), 1, + ACTIONS(4794), 1, + anon_sym_DASH_GT, + ACTIONS(4819), 1, anon_sym_LBRACK, - ACTIONS(4839), 1, + ACTIONS(4823), 1, anon_sym_BANG, - ACTIONS(6293), 1, + ACTIONS(6264), 1, anon_sym_switch, - ACTIONS(6307), 1, + ACTIONS(6278), 1, anon_sym_with, - ACTIONS(7876), 1, + ACTIONS(7982), 1, anon_sym_SLASH, - ACTIONS(7892), 1, + ACTIONS(7992), 1, + anon_sym_GT_GT, + ACTIONS(7998), 1, anon_sym_DOT_DOT, - STATE(2433), 1, + STATE(2419), 1, sym_bracketed_argument_list, - STATE(3035), 1, + STATE(2958), 1, sym_argument_list, - ACTIONS(4841), 2, + ACTIONS(4825), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7872), 2, + ACTIONS(7978), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7874), 2, + ACTIONS(7980), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(5664), 6, + ACTIONS(7990), 2, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + ACTIONS(5739), 5, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, anon_sym_PIPE, anon_sym_AMP, - anon_sym_GT_GT, - STATE(5229), 9, + STATE(5170), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -651991,10 +646515,8 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5660), 14, + ACTIONS(5737), 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, @@ -652003,10 +646525,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_QMARK_QMARK, anon_sym_into, - anon_sym_equals, + anon_sym_on, anon_sym_as, anon_sym_is, - [155765] = 21, + [150164] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -652027,31 +646549,73 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(7904), 1, - sym__identifier_token, - ACTIONS(7908), 1, + ACTIONS(4042), 1, + anon_sym_DOT, + ACTIONS(4044), 1, + anon_sym_DASH_GT, + ACTIONS(5257), 1, anon_sym_LPAREN, - ACTIONS(7910), 1, + ACTIONS(5302), 1, anon_sym_BANG, - ACTIONS(7914), 1, - anon_sym_SQUOTE, - ACTIONS(7916), 1, - sym_integer_literal, - STATE(6452), 1, - sym__reserved_identifier, - STATE(6595), 1, - sym__preproc_expression, - ACTIONS(7912), 2, - anon_sym_true, - anon_sym_false, - STATE(6542), 6, - sym_character_literal, - sym_boolean_literal, - sym_identifier, - sym_preproc_parenthesized_expression, - sym_preproc_unary_expression, - sym_preproc_binary_expression, - STATE(5230), 9, + ACTIONS(5549), 1, + anon_sym_LBRACK, + ACTIONS(6355), 1, + anon_sym_switch, + ACTIONS(6369), 1, + anon_sym_with, + ACTIONS(6811), 1, + anon_sym_as, + ACTIONS(7231), 1, + anon_sym_QMARK, + ACTIONS(7237), 1, + anon_sym_SLASH, + ACTIONS(7239), 1, + anon_sym_CARET, + ACTIONS(7241), 1, + anon_sym_PIPE, + ACTIONS(7243), 1, + anon_sym_AMP, + ACTIONS(7247), 1, + anon_sym_GT_GT, + ACTIONS(7253), 1, + anon_sym_DOT_DOT, + ACTIONS(7255), 1, + anon_sym_AMP_AMP, + ACTIONS(7257), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7259), 1, + anon_sym_QMARK_QMARK, + ACTIONS(7261), 1, + anon_sym_is, + STATE(2467), 1, + sym_bracketed_argument_list, + STATE(3381), 1, + sym_argument_list, + ACTIONS(5304), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7229), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(7233), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(7235), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(7245), 2, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + ACTIONS(7249), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(7251), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(8010), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + STATE(5171), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -652061,30 +646625,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(7906), 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, - [155864] = 17, + [150301] = 26, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -652105,25 +646646,44 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4066), 1, + ACTIONS(4753), 1, + anon_sym_LPAREN, + ACTIONS(4792), 1, + anon_sym_DOT, + ACTIONS(4794), 1, + anon_sym_DASH_GT, + ACTIONS(4819), 1, anon_sym_LBRACK, - ACTIONS(4072), 1, + ACTIONS(4823), 1, + anon_sym_BANG, + ACTIONS(6264), 1, + anon_sym_switch, + ACTIONS(6278), 1, + anon_sym_with, + ACTIONS(7982), 1, + anon_sym_SLASH, + ACTIONS(7998), 1, + anon_sym_DOT_DOT, + STATE(2419), 1, + sym_bracketed_argument_list, + STATE(2958), 1, + sym_argument_list, + ACTIONS(4825), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7980), 2, anon_sym_STAR, - ACTIONS(5358), 1, - anon_sym_QMARK, - ACTIONS(8128), 1, - anon_sym_DOT, - ACTIONS(4016), 9, + anon_sym_PERCENT, + ACTIONS(5739), 8, anon_sym_LT, anon_sym_GT, - anon_sym_BANG, + anon_sym_QMARK, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT_GT, - STATE(5231), 9, + STATE(5172), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -652133,13 +646693,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(4018), 24, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_in, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PERCENT, + ACTIONS(5737), 14, anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT_GT, @@ -652147,18 +646701,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_on, anon_sym_as, anon_sym_is, - anon_sym_DASH_GT, - anon_sym_with, - [155955] = 14, + [150410] = 24, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -652179,82 +646729,40 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8128), 1, + ACTIONS(4753), 1, + anon_sym_LPAREN, + ACTIONS(4792), 1, anon_sym_DOT, - STATE(5232), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - ACTIONS(3975), 10, + ACTIONS(4794), 1, + anon_sym_DASH_GT, + ACTIONS(4819), 1, + anon_sym_LBRACK, + ACTIONS(4823), 1, + anon_sym_BANG, + ACTIONS(6264), 1, + anon_sym_switch, + ACTIONS(6278), 1, + anon_sym_with, + ACTIONS(7998), 1, + anon_sym_DOT_DOT, + STATE(2419), 1, + sym_bracketed_argument_list, + STATE(2958), 1, + sym_argument_list, + ACTIONS(4825), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5739), 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, - ACTIONS(3977), 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, - [156040] = 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(8020), 1, - anon_sym_and, - ACTIONS(8130), 1, - anon_sym_or, - STATE(5233), 9, + STATE(5173), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -652264,23 +646772,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(6207), 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(6205), 24, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, + ACTIONS(5737), 16, anon_sym_STAR, anon_sym_PERCENT, anon_sym_CARET, @@ -652290,18 +646782,14 @@ 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_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, - [156127] = 41, + [150515] = 35, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -652322,74 +646810,68 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4100), 1, + ACTIONS(4753), 1, + anon_sym_LPAREN, + ACTIONS(4792), 1, anon_sym_DOT, - ACTIONS(4102), 1, + ACTIONS(4794), 1, anon_sym_DASH_GT, - ACTIONS(5264), 1, - anon_sym_LPAREN, - ACTIONS(5304), 1, - anon_sym_BANG, - ACTIONS(5573), 1, + ACTIONS(4819), 1, anon_sym_LBRACK, - ACTIONS(6343), 1, + ACTIONS(4823), 1, + anon_sym_BANG, + ACTIONS(6264), 1, anon_sym_switch, - ACTIONS(6357), 1, + ACTIONS(6278), 1, anon_sym_with, - ACTIONS(6690), 1, + ACTIONS(7982), 1, anon_sym_SLASH, - ACTIONS(6692), 1, - anon_sym_CARET, - ACTIONS(6694), 1, - anon_sym_PIPE, - ACTIONS(6696), 1, + ACTIONS(7988), 1, anon_sym_AMP, - ACTIONS(6700), 1, + ACTIONS(7992), 1, anon_sym_GT_GT, - ACTIONS(6708), 1, - anon_sym_AMP_AMP, - ACTIONS(6710), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6712), 1, - anon_sym_QMARK_QMARK, - ACTIONS(7035), 1, + ACTIONS(7998), 1, anon_sym_DOT_DOT, - ACTIONS(7037), 1, + ACTIONS(8006), 1, anon_sym_as, - ACTIONS(7039), 1, + ACTIONS(8008), 1, anon_sym_is, - ACTIONS(7047), 1, - anon_sym_QMARK, - ACTIONS(7276), 1, - anon_sym_COLON, - ACTIONS(7831), 1, - anon_sym_COMMA, - STATE(2485), 1, + STATE(2419), 1, sym_bracketed_argument_list, - STATE(3487), 1, + STATE(2958), 1, sym_argument_list, - ACTIONS(5306), 2, + ACTIONS(4825), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6682), 2, + ACTIONS(5739), 2, + anon_sym_QMARK, + anon_sym_PIPE, + ACTIONS(7974), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(6686), 2, + ACTIONS(7978), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6688), 2, + ACTIONS(7980), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(6698), 2, + ACTIONS(7990), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(6702), 2, + ACTIONS(7994), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6704), 2, + ACTIONS(7996), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - STATE(5234), 9, + ACTIONS(5737), 6, + anon_sym_CARET, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, + anon_sym_into, + anon_sym_on, + STATE(5174), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -652399,7 +646881,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [156266] = 37, + [150642] = 36, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -652420,70 +646902,69 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4755), 1, - anon_sym_DASH_GT, - ACTIONS(4804), 1, + ACTIONS(4753), 1, anon_sym_LPAREN, - ACTIONS(4808), 1, + ACTIONS(4792), 1, anon_sym_DOT, - ACTIONS(4835), 1, + ACTIONS(4794), 1, + anon_sym_DASH_GT, + ACTIONS(4819), 1, anon_sym_LBRACK, - ACTIONS(4839), 1, + ACTIONS(4823), 1, anon_sym_BANG, - ACTIONS(5664), 1, - anon_sym_QMARK, - ACTIONS(6293), 1, + ACTIONS(6264), 1, anon_sym_switch, - ACTIONS(6307), 1, + ACTIONS(6278), 1, anon_sym_with, - ACTIONS(7962), 1, + ACTIONS(7982), 1, anon_sym_SLASH, - ACTIONS(7964), 1, + ACTIONS(7984), 1, anon_sym_CARET, - ACTIONS(7966), 1, - anon_sym_PIPE, - ACTIONS(7968), 1, + ACTIONS(7988), 1, anon_sym_AMP, - ACTIONS(7972), 1, + ACTIONS(7992), 1, anon_sym_GT_GT, - ACTIONS(7978), 1, + ACTIONS(7998), 1, anon_sym_DOT_DOT, - ACTIONS(7986), 1, + ACTIONS(8006), 1, anon_sym_as, - ACTIONS(7988), 1, + ACTIONS(8008), 1, anon_sym_is, - STATE(2433), 1, + STATE(2419), 1, sym_bracketed_argument_list, - STATE(3035), 1, + STATE(2958), 1, sym_argument_list, - ACTIONS(4841), 2, + ACTIONS(4825), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7954), 2, + ACTIONS(5739), 2, + anon_sym_QMARK, + anon_sym_PIPE, + ACTIONS(7974), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7958), 2, + ACTIONS(7978), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7960), 2, + ACTIONS(7980), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7970), 2, + ACTIONS(7990), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7974), 2, + ACTIONS(7994), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7976), 2, + ACTIONS(7996), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5660), 5, + ACTIONS(5737), 5, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_QMARK_QMARK, anon_sym_into, - anon_sym_by, - STATE(5235), 9, + anon_sym_on, + STATE(5175), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -652493,7 +646974,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [156397] = 40, + [150771] = 34, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -652514,73 +646995,67 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4755), 1, - anon_sym_DASH_GT, - ACTIONS(4804), 1, + ACTIONS(4753), 1, anon_sym_LPAREN, - ACTIONS(4808), 1, + ACTIONS(4792), 1, anon_sym_DOT, - ACTIONS(4835), 1, + ACTIONS(4794), 1, + anon_sym_DASH_GT, + ACTIONS(4819), 1, anon_sym_LBRACK, - ACTIONS(4839), 1, + ACTIONS(4823), 1, anon_sym_BANG, - ACTIONS(6293), 1, + ACTIONS(6264), 1, anon_sym_switch, - ACTIONS(6307), 1, + ACTIONS(6278), 1, anon_sym_with, - ACTIONS(7902), 1, - anon_sym_DOT_DOT, - ACTIONS(8070), 1, - anon_sym_QMARK, - ACTIONS(8076), 1, + ACTIONS(7982), 1, anon_sym_SLASH, - ACTIONS(8078), 1, - anon_sym_CARET, - ACTIONS(8080), 1, - anon_sym_PIPE, - ACTIONS(8082), 1, - anon_sym_AMP, - ACTIONS(8086), 1, + ACTIONS(7992), 1, anon_sym_GT_GT, - ACTIONS(8092), 1, - anon_sym_AMP_AMP, - ACTIONS(8094), 1, - anon_sym_PIPE_PIPE, - ACTIONS(8096), 1, - anon_sym_QMARK_QMARK, - ACTIONS(8098), 1, + ACTIONS(7998), 1, + anon_sym_DOT_DOT, + ACTIONS(8006), 1, anon_sym_as, - ACTIONS(8100), 1, + ACTIONS(8008), 1, anon_sym_is, - STATE(2433), 1, + STATE(2419), 1, sym_bracketed_argument_list, - STATE(3035), 1, + STATE(2958), 1, sym_argument_list, - ACTIONS(4841), 2, + ACTIONS(4825), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5745), 2, - anon_sym_into, - anon_sym_on, - ACTIONS(8068), 2, + ACTIONS(7974), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(8072), 2, + ACTIONS(7978), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(8074), 2, + ACTIONS(7980), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8084), 2, + ACTIONS(7990), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(8088), 2, + ACTIONS(7994), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(8090), 2, + ACTIONS(7996), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - STATE(5236), 9, + ACTIONS(5739), 3, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_AMP, + ACTIONS(5737), 6, + anon_sym_CARET, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, + anon_sym_into, + anon_sym_on, + STATE(5176), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -652590,7 +647065,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [156534] = 35, + [150896] = 27, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -652611,78 +647086,70 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4755), 1, - anon_sym_DASH_GT, - ACTIONS(4804), 1, + ACTIONS(4753), 1, anon_sym_LPAREN, - ACTIONS(4808), 1, + ACTIONS(4792), 1, anon_sym_DOT, - ACTIONS(4835), 1, + ACTIONS(4794), 1, + anon_sym_DASH_GT, + ACTIONS(4819), 1, anon_sym_LBRACK, - ACTIONS(4839), 1, + ACTIONS(4823), 1, anon_sym_BANG, - ACTIONS(6293), 1, + ACTIONS(6264), 1, anon_sym_switch, - ACTIONS(6307), 1, + ACTIONS(6278), 1, anon_sym_with, - ACTIONS(7962), 1, + ACTIONS(7982), 1, anon_sym_SLASH, - ACTIONS(7968), 1, - anon_sym_AMP, - ACTIONS(7972), 1, - anon_sym_GT_GT, - ACTIONS(7978), 1, + ACTIONS(7998), 1, anon_sym_DOT_DOT, - ACTIONS(7986), 1, - anon_sym_as, - ACTIONS(7988), 1, - anon_sym_is, - STATE(2433), 1, + STATE(2419), 1, sym_bracketed_argument_list, - STATE(3035), 1, + STATE(2958), 1, sym_argument_list, - ACTIONS(4841), 2, + ACTIONS(4825), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5664), 2, - anon_sym_QMARK, - anon_sym_PIPE, - ACTIONS(7954), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(7958), 2, + ACTIONS(7978), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7960), 2, + ACTIONS(7980), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7970), 2, + ACTIONS(5739), 6, + anon_sym_LT, + anon_sym_GT, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT_GT, + STATE(5177), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + ACTIONS(5737), 14, + anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7974), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7976), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5660), 6, - anon_sym_CARET, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_QMARK_QMARK, anon_sym_into, - anon_sym_by, - 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, - [156661] = 40, + anon_sym_on, + anon_sym_as, + anon_sym_is, + [151007] = 33, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -652703,206 +647170,66 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4755), 1, - anon_sym_DASH_GT, - ACTIONS(4804), 1, + ACTIONS(4753), 1, anon_sym_LPAREN, - ACTIONS(4808), 1, + ACTIONS(4792), 1, anon_sym_DOT, - ACTIONS(4835), 1, + ACTIONS(4794), 1, + anon_sym_DASH_GT, + ACTIONS(4819), 1, anon_sym_LBRACK, - ACTIONS(4839), 1, + ACTIONS(4823), 1, anon_sym_BANG, - ACTIONS(6293), 1, + ACTIONS(6264), 1, anon_sym_switch, - ACTIONS(6307), 1, + ACTIONS(6278), 1, anon_sym_with, - ACTIONS(7956), 1, - anon_sym_QMARK, - ACTIONS(7962), 1, + ACTIONS(7982), 1, anon_sym_SLASH, - ACTIONS(7964), 1, - anon_sym_CARET, - ACTIONS(7966), 1, - anon_sym_PIPE, - ACTIONS(7968), 1, - anon_sym_AMP, - ACTIONS(7972), 1, + ACTIONS(7992), 1, anon_sym_GT_GT, - ACTIONS(7978), 1, + ACTIONS(7998), 1, anon_sym_DOT_DOT, - ACTIONS(7980), 1, - anon_sym_AMP_AMP, - ACTIONS(7982), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7984), 1, - anon_sym_QMARK_QMARK, - ACTIONS(7986), 1, + ACTIONS(8006), 1, anon_sym_as, - ACTIONS(7988), 1, + ACTIONS(8008), 1, anon_sym_is, - STATE(2433), 1, + STATE(2419), 1, sym_bracketed_argument_list, - STATE(3035), 1, + STATE(2958), 1, sym_argument_list, - ACTIONS(4841), 2, + ACTIONS(4825), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5072), 2, - anon_sym_into, - anon_sym_by, - ACTIONS(7954), 2, + ACTIONS(7974), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7958), 2, + ACTIONS(7978), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7960), 2, + ACTIONS(7980), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7970), 2, + ACTIONS(7990), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7974), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(7976), 2, + ACTIONS(7996), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - STATE(5238), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - [156798] = 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(7904), 1, - sym__identifier_token, - ACTIONS(7908), 1, - anon_sym_LPAREN, - ACTIONS(7910), 1, - anon_sym_BANG, - ACTIONS(7914), 1, - anon_sym_SQUOTE, - ACTIONS(7916), 1, - sym_integer_literal, - STATE(6452), 1, - sym__reserved_identifier, - STATE(6540), 1, - sym__preproc_expression, - ACTIONS(7912), 2, - anon_sym_true, - anon_sym_false, - STATE(6542), 6, - sym_character_literal, - sym_boolean_literal, - sym_identifier, - sym_preproc_parenthesized_expression, - sym_preproc_unary_expression, - sym_preproc_binary_expression, - 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, - ACTIONS(7906), 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(5739), 3, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_AMP, + ACTIONS(5737), 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_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, - [156897] = 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(7904), 1, - sym__identifier_token, - ACTIONS(7908), 1, - anon_sym_LPAREN, - ACTIONS(7910), 1, - anon_sym_BANG, - ACTIONS(7914), 1, - anon_sym_SQUOTE, - ACTIONS(7916), 1, - sym_integer_literal, - STATE(6452), 1, - sym__reserved_identifier, - STATE(6545), 1, - sym__preproc_expression, - ACTIONS(7912), 2, - anon_sym_true, - anon_sym_false, - STATE(6542), 6, - sym_character_literal, - sym_boolean_literal, - sym_identifier, - sym_preproc_parenthesized_expression, - sym_preproc_unary_expression, - sym_preproc_binary_expression, - STATE(5240), 9, + STATE(5178), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -652912,30 +647239,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(7906), 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, - [156996] = 33, + [151130] = 37, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -652956,66 +647260,70 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4755), 1, - anon_sym_DASH_GT, - ACTIONS(4804), 1, + ACTIONS(4753), 1, anon_sym_LPAREN, - ACTIONS(4808), 1, + ACTIONS(4792), 1, anon_sym_DOT, - ACTIONS(4835), 1, + ACTIONS(4794), 1, + anon_sym_DASH_GT, + ACTIONS(4819), 1, anon_sym_LBRACK, - ACTIONS(4839), 1, + ACTIONS(4823), 1, anon_sym_BANG, - ACTIONS(6293), 1, + ACTIONS(5739), 1, + anon_sym_QMARK, + ACTIONS(6264), 1, anon_sym_switch, - ACTIONS(6307), 1, + ACTIONS(6278), 1, anon_sym_with, - ACTIONS(7876), 1, + ACTIONS(7982), 1, anon_sym_SLASH, - ACTIONS(7886), 1, + ACTIONS(7984), 1, + anon_sym_CARET, + ACTIONS(7986), 1, + anon_sym_PIPE, + ACTIONS(7988), 1, + anon_sym_AMP, + ACTIONS(7992), 1, anon_sym_GT_GT, - ACTIONS(7892), 1, + ACTIONS(7998), 1, anon_sym_DOT_DOT, - ACTIONS(7896), 1, + ACTIONS(8006), 1, anon_sym_as, - ACTIONS(7898), 1, + ACTIONS(8008), 1, anon_sym_is, - STATE(2433), 1, + STATE(2419), 1, sym_bracketed_argument_list, - STATE(3035), 1, + STATE(2958), 1, sym_argument_list, - ACTIONS(4841), 2, + ACTIONS(4825), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7870), 2, + ACTIONS(7974), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7872), 2, + ACTIONS(7978), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7874), 2, + ACTIONS(7980), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7884), 2, + ACTIONS(7990), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7890), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(5664), 3, - anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_AMP, - ACTIONS(5660), 8, - anon_sym_CARET, + ACTIONS(7994), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + ACTIONS(7996), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(5737), 5, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_QMARK_QMARK, anon_sym_into, - anon_sym_equals, - STATE(5241), 9, + anon_sym_on, + STATE(5179), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -653025,7 +647333,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [157119] = 21, + [151261] = 38, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -653046,109 +647354,71 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(7904), 1, - sym__identifier_token, - ACTIONS(7908), 1, + ACTIONS(4753), 1, anon_sym_LPAREN, - ACTIONS(7910), 1, + ACTIONS(4792), 1, + anon_sym_DOT, + ACTIONS(4794), 1, + anon_sym_DASH_GT, + ACTIONS(4819), 1, + anon_sym_LBRACK, + ACTIONS(4823), 1, anon_sym_BANG, - ACTIONS(7914), 1, - anon_sym_SQUOTE, - ACTIONS(7916), 1, - sym_integer_literal, - STATE(6452), 1, - sym__reserved_identifier, - STATE(6597), 1, - sym__preproc_expression, - ACTIONS(7912), 2, - anon_sym_true, - anon_sym_false, - STATE(6542), 6, - sym_character_literal, - sym_boolean_literal, - sym_identifier, - sym_preproc_parenthesized_expression, - sym_preproc_unary_expression, - sym_preproc_binary_expression, - STATE(5242), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - ACTIONS(7906), 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(5739), 1, + anon_sym_QMARK, + ACTIONS(6264), 1, + anon_sym_switch, + ACTIONS(6278), 1, + anon_sym_with, + ACTIONS(7982), 1, + anon_sym_SLASH, + ACTIONS(7984), 1, + anon_sym_CARET, + ACTIONS(7986), 1, + anon_sym_PIPE, + ACTIONS(7988), 1, + anon_sym_AMP, + ACTIONS(7992), 1, + anon_sym_GT_GT, + ACTIONS(7998), 1, + anon_sym_DOT_DOT, + ACTIONS(8000), 1, + anon_sym_AMP_AMP, + ACTIONS(8006), 1, + anon_sym_as, + ACTIONS(8008), 1, + anon_sym_is, + STATE(2419), 1, + sym_bracketed_argument_list, + STATE(2958), 1, + sym_argument_list, + ACTIONS(4825), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7974), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(7978), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(7980), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(7990), 2, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + ACTIONS(7994), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(7996), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(5737), 4, + 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, - [157218] = 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(7904), 1, - sym__identifier_token, - ACTIONS(7908), 1, - anon_sym_LPAREN, - ACTIONS(7910), 1, - anon_sym_BANG, - ACTIONS(7914), 1, - anon_sym_SQUOTE, - ACTIONS(7916), 1, - sym_integer_literal, - STATE(6452), 1, - sym__reserved_identifier, - STATE(6551), 1, - sym__preproc_expression, - ACTIONS(7912), 2, - anon_sym_true, - anon_sym_false, - STATE(6542), 6, - sym_character_literal, - sym_boolean_literal, - sym_identifier, - sym_preproc_parenthesized_expression, - sym_preproc_unary_expression, - sym_preproc_binary_expression, - STATE(5243), 9, + STATE(5180), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -653158,30 +647428,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(7906), 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, - [157317] = 21, + [151394] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -653202,31 +647449,73 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(7904), 1, - sym__identifier_token, - ACTIONS(7908), 1, + ACTIONS(4753), 1, anon_sym_LPAREN, - ACTIONS(7910), 1, + ACTIONS(4792), 1, + anon_sym_DOT, + ACTIONS(4794), 1, + anon_sym_DASH_GT, + ACTIONS(4819), 1, + anon_sym_LBRACK, + ACTIONS(4823), 1, anon_sym_BANG, - ACTIONS(7914), 1, - anon_sym_SQUOTE, - ACTIONS(7916), 1, - sym_integer_literal, - STATE(6452), 1, - sym__reserved_identifier, - STATE(6548), 1, - sym__preproc_expression, - ACTIONS(7912), 2, - anon_sym_true, - anon_sym_false, - STATE(6542), 6, - sym_character_literal, - sym_boolean_literal, - sym_identifier, - sym_preproc_parenthesized_expression, - sym_preproc_unary_expression, - sym_preproc_binary_expression, - STATE(5244), 9, + ACTIONS(5739), 1, + anon_sym_QMARK, + ACTIONS(6264), 1, + anon_sym_switch, + ACTIONS(6278), 1, + anon_sym_with, + ACTIONS(7982), 1, + anon_sym_SLASH, + ACTIONS(7984), 1, + anon_sym_CARET, + ACTIONS(7986), 1, + anon_sym_PIPE, + ACTIONS(7988), 1, + anon_sym_AMP, + ACTIONS(7992), 1, + anon_sym_GT_GT, + ACTIONS(7998), 1, + anon_sym_DOT_DOT, + ACTIONS(8000), 1, + anon_sym_AMP_AMP, + ACTIONS(8002), 1, + anon_sym_PIPE_PIPE, + ACTIONS(8004), 1, + anon_sym_QMARK_QMARK, + ACTIONS(8006), 1, + anon_sym_as, + ACTIONS(8008), 1, + anon_sym_is, + STATE(2419), 1, + sym_bracketed_argument_list, + STATE(2958), 1, + sym_argument_list, + ACTIONS(4825), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5737), 2, + anon_sym_into, + anon_sym_on, + ACTIONS(7974), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(7978), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(7980), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(7990), 2, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + ACTIONS(7994), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(7996), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + STATE(5181), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -653236,30 +647525,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(7906), 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, - [157416] = 21, + [151531] = 18, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -653280,31 +647546,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(7996), 1, + ACTIONS(4044), 1, + anon_sym_DASH_GT, + ACTIONS(6601), 1, + anon_sym_LBRACK, + ACTIONS(6603), 1, + anon_sym_STAR, + ACTIONS(6705), 1, + anon_sym_QMARK, + ACTIONS(8012), 1, + anon_sym_DOT, + ACTIONS(3963), 6, + anon_sym_COMMA, + anon_sym_RBRACK, anon_sym_LPAREN, - ACTIONS(7998), 1, - anon_sym_BANG, - ACTIONS(8000), 1, - sym_integer_literal, - STATE(2175), 1, - sym__reserved_identifier, - STATE(6530), 1, - sym__preproc_expression, - ACTIONS(77), 2, - anon_sym_true, - anon_sym_false, - STATE(6543), 6, - sym_character_literal, - sym_boolean_literal, - sym_identifier, - sym_preproc_parenthesized_expression, - sym_preproc_unary_expression, - sym_preproc_binary_expression, - STATE(5245), 9, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, + STATE(5182), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -653314,7 +647573,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(29), 22, + ACTIONS(3961), 26, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -653325,6 +647584,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, @@ -653337,7 +647599,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [157515] = 40, + sym__identifier_token, + [151624] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -653358,73 +647621,73 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4755), 1, + ACTIONS(4427), 1, + anon_sym_DOT, + ACTIONS(4429), 1, anon_sym_DASH_GT, - ACTIONS(4804), 1, + ACTIONS(6557), 1, anon_sym_LPAREN, - ACTIONS(4808), 1, - anon_sym_DOT, - ACTIONS(4835), 1, + ACTIONS(6607), 1, anon_sym_LBRACK, - ACTIONS(4839), 1, + ACTIONS(6613), 1, anon_sym_BANG, - ACTIONS(6293), 1, + ACTIONS(6637), 1, anon_sym_switch, - ACTIONS(6307), 1, + ACTIONS(6651), 1, anon_sym_with, - ACTIONS(7902), 1, - anon_sym_DOT_DOT, - ACTIONS(8070), 1, + ACTIONS(6713), 1, anon_sym_QMARK, - ACTIONS(8076), 1, + ACTIONS(6719), 1, anon_sym_SLASH, - ACTIONS(8078), 1, + ACTIONS(6721), 1, anon_sym_CARET, - ACTIONS(8080), 1, + ACTIONS(6723), 1, anon_sym_PIPE, - ACTIONS(8082), 1, + ACTIONS(6725), 1, anon_sym_AMP, - ACTIONS(8086), 1, + ACTIONS(6729), 1, anon_sym_GT_GT, - ACTIONS(8092), 1, + ACTIONS(6735), 1, + anon_sym_DOT_DOT, + ACTIONS(6737), 1, anon_sym_AMP_AMP, - ACTIONS(8094), 1, + ACTIONS(6739), 1, anon_sym_PIPE_PIPE, - ACTIONS(8096), 1, + ACTIONS(6741), 1, anon_sym_QMARK_QMARK, - ACTIONS(8098), 1, + ACTIONS(6743), 1, anon_sym_as, - ACTIONS(8100), 1, + ACTIONS(6745), 1, anon_sym_is, - STATE(2433), 1, + STATE(3188), 1, sym_bracketed_argument_list, - STATE(3035), 1, + STATE(4584), 1, sym_argument_list, - ACTIONS(4841), 2, + ACTIONS(6615), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5767), 2, - anon_sym_into, - anon_sym_on, - ACTIONS(8068), 2, + ACTIONS(6711), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(8072), 2, + ACTIONS(6715), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(8074), 2, + ACTIONS(6717), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8084), 2, + ACTIONS(6727), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(8088), 2, + ACTIONS(6731), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(8090), 2, + ACTIONS(6733), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - STATE(5246), 9, + ACTIONS(8014), 2, + sym_interpolation_close_brace, + anon_sym_COLON, + STATE(5183), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -653434,7 +647697,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [157652] = 14, + [151761] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -653455,57 +647718,83 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8016), 1, - anon_sym_and, - STATE(5247), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - ACTIONS(6069), 11, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, + ACTIONS(4042), 1, + anon_sym_DOT, + ACTIONS(4044), 1, + anon_sym_DASH_GT, + ACTIONS(5257), 1, + anon_sym_LPAREN, + ACTIONS(5302), 1, anon_sym_BANG, - anon_sym_PLUS, - anon_sym_DASH, + ACTIONS(5549), 1, + anon_sym_LBRACK, + ACTIONS(6355), 1, + anon_sym_switch, + ACTIONS(6369), 1, + anon_sym_with, + ACTIONS(6811), 1, + anon_sym_as, + ACTIONS(7231), 1, + anon_sym_QMARK, + ACTIONS(7237), 1, anon_sym_SLASH, + ACTIONS(7239), 1, + anon_sym_CARET, + ACTIONS(7241), 1, anon_sym_PIPE, + ACTIONS(7243), 1, anon_sym_AMP, + ACTIONS(7247), 1, anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(6067), 25, - anon_sym_LBRACK, - anon_sym_LPAREN, + ACTIONS(7253), 1, + anon_sym_DOT_DOT, + ACTIONS(7255), 1, + anon_sym_AMP_AMP, + ACTIONS(7257), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7259), 1, + anon_sym_QMARK_QMARK, + ACTIONS(7261), 1, + anon_sym_is, + STATE(2467), 1, + sym_bracketed_argument_list, + STATE(3381), 1, + sym_argument_list, + ACTIONS(5304), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + ACTIONS(7229), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(7233), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(7235), 2, anon_sym_STAR, anon_sym_PERCENT, - anon_sym_CARET, + ACTIONS(7245), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, + ACTIONS(7249), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + ACTIONS(7251), 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_into, - anon_sym_equals, - anon_sym_as, - anon_sym_is, - anon_sym_DASH_GT, - anon_sym_with, - [157737] = 40, + ACTIONS(8016), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + STATE(5184), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + [151898] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -653526,73 +647815,73 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4755), 1, + ACTIONS(4042), 1, + anon_sym_DOT, + ACTIONS(4044), 1, anon_sym_DASH_GT, - ACTIONS(4804), 1, + ACTIONS(5257), 1, anon_sym_LPAREN, - ACTIONS(4808), 1, - anon_sym_DOT, - ACTIONS(4835), 1, - anon_sym_LBRACK, - ACTIONS(4839), 1, + ACTIONS(5302), 1, anon_sym_BANG, - ACTIONS(6293), 1, + ACTIONS(5549), 1, + anon_sym_LBRACK, + ACTIONS(6355), 1, anon_sym_switch, - ACTIONS(6307), 1, + ACTIONS(6369), 1, anon_sym_with, - ACTIONS(7876), 1, + ACTIONS(6811), 1, + anon_sym_as, + ACTIONS(7231), 1, + anon_sym_QMARK, + ACTIONS(7237), 1, anon_sym_SLASH, - ACTIONS(7878), 1, + ACTIONS(7239), 1, anon_sym_CARET, - ACTIONS(7880), 1, + ACTIONS(7241), 1, anon_sym_PIPE, - ACTIONS(7882), 1, + ACTIONS(7243), 1, anon_sym_AMP, - ACTIONS(7886), 1, + ACTIONS(7247), 1, anon_sym_GT_GT, - ACTIONS(7892), 1, + ACTIONS(7253), 1, anon_sym_DOT_DOT, - ACTIONS(7894), 1, + ACTIONS(7255), 1, anon_sym_AMP_AMP, - ACTIONS(7896), 1, - anon_sym_as, - ACTIONS(7898), 1, - anon_sym_is, - ACTIONS(8112), 1, - anon_sym_QMARK, - ACTIONS(8114), 1, + ACTIONS(7257), 1, anon_sym_PIPE_PIPE, - ACTIONS(8116), 1, + ACTIONS(7259), 1, anon_sym_QMARK_QMARK, - STATE(2433), 1, + ACTIONS(7261), 1, + anon_sym_is, + STATE(2467), 1, sym_bracketed_argument_list, - STATE(3035), 1, + STATE(3381), 1, sym_argument_list, - ACTIONS(4841), 2, + ACTIONS(5304), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5858), 2, - anon_sym_into, - anon_sym_equals, - ACTIONS(7870), 2, + ACTIONS(7229), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7872), 2, + ACTIONS(7233), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7874), 2, + ACTIONS(7235), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7884), 2, + ACTIONS(7245), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7888), 2, + ACTIONS(7249), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7890), 2, + ACTIONS(7251), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - STATE(5248), 9, + ACTIONS(8018), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + STATE(5185), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -653602,7 +647891,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [157874] = 22, + [152035] = 41, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -653623,36 +647912,74 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4755), 1, + ACTIONS(4042), 1, + anon_sym_DOT, + ACTIONS(4044), 1, anon_sym_DASH_GT, - ACTIONS(4804), 1, + ACTIONS(5257), 1, anon_sym_LPAREN, - ACTIONS(4808), 1, - anon_sym_DOT, - ACTIONS(4835), 1, - anon_sym_LBRACK, - ACTIONS(4839), 1, + ACTIONS(5302), 1, anon_sym_BANG, - ACTIONS(7892), 1, + ACTIONS(5549), 1, + anon_sym_LBRACK, + ACTIONS(6355), 1, + anon_sym_switch, + ACTIONS(6369), 1, + anon_sym_with, + ACTIONS(6811), 1, + anon_sym_as, + ACTIONS(7231), 1, + anon_sym_QMARK, + ACTIONS(7237), 1, + anon_sym_SLASH, + ACTIONS(7239), 1, + anon_sym_CARET, + ACTIONS(7241), 1, + anon_sym_PIPE, + ACTIONS(7243), 1, + anon_sym_AMP, + ACTIONS(7247), 1, + anon_sym_GT_GT, + ACTIONS(7253), 1, anon_sym_DOT_DOT, - STATE(2433), 1, + ACTIONS(7255), 1, + anon_sym_AMP_AMP, + ACTIONS(7257), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7259), 1, + anon_sym_QMARK_QMARK, + ACTIONS(7261), 1, + anon_sym_is, + ACTIONS(7839), 1, + anon_sym_COMMA, + ACTIONS(8020), 1, + anon_sym_RPAREN, + STATE(2467), 1, sym_bracketed_argument_list, - STATE(3035), 1, + STATE(3381), 1, sym_argument_list, - ACTIONS(4841), 2, + ACTIONS(5304), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5733), 9, + ACTIONS(7229), 2, 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(5249), 9, + ACTIONS(7235), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(7245), 2, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + ACTIONS(7249), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(7251), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + STATE(5186), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -653662,26 +647989,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5731), 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_equals, - anon_sym_as, - anon_sym_is, - anon_sym_with, - [157975] = 40, + [152174] = 41, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -653702,73 +648010,74 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4755), 1, + ACTIONS(4042), 1, + anon_sym_DOT, + ACTIONS(4044), 1, anon_sym_DASH_GT, - ACTIONS(4804), 1, + ACTIONS(5257), 1, anon_sym_LPAREN, - ACTIONS(4808), 1, - anon_sym_DOT, - ACTIONS(4835), 1, - anon_sym_LBRACK, - ACTIONS(4839), 1, + ACTIONS(5302), 1, anon_sym_BANG, - ACTIONS(6293), 1, + ACTIONS(5549), 1, + anon_sym_LBRACK, + ACTIONS(6355), 1, anon_sym_switch, - ACTIONS(6307), 1, + ACTIONS(6369), 1, anon_sym_with, - ACTIONS(7876), 1, + ACTIONS(6811), 1, + anon_sym_as, + ACTIONS(7231), 1, + anon_sym_QMARK, + ACTIONS(7237), 1, anon_sym_SLASH, - ACTIONS(7878), 1, + ACTIONS(7239), 1, anon_sym_CARET, - ACTIONS(7880), 1, + ACTIONS(7241), 1, anon_sym_PIPE, - ACTIONS(7882), 1, + ACTIONS(7243), 1, anon_sym_AMP, - ACTIONS(7886), 1, + ACTIONS(7247), 1, anon_sym_GT_GT, - ACTIONS(7892), 1, + ACTIONS(7253), 1, anon_sym_DOT_DOT, - ACTIONS(7894), 1, + ACTIONS(7255), 1, anon_sym_AMP_AMP, - ACTIONS(7896), 1, - anon_sym_as, - ACTIONS(7898), 1, - anon_sym_is, - ACTIONS(8112), 1, - anon_sym_QMARK, - ACTIONS(8114), 1, + ACTIONS(7257), 1, anon_sym_PIPE_PIPE, - ACTIONS(8116), 1, + ACTIONS(7259), 1, anon_sym_QMARK_QMARK, - STATE(2433), 1, + ACTIONS(7261), 1, + anon_sym_is, + ACTIONS(7839), 1, + anon_sym_COMMA, + ACTIONS(8022), 1, + anon_sym_RPAREN, + STATE(2467), 1, sym_bracketed_argument_list, - STATE(3035), 1, + STATE(3381), 1, sym_argument_list, - ACTIONS(4841), 2, + ACTIONS(5304), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5864), 2, - anon_sym_into, - anon_sym_equals, - ACTIONS(7870), 2, + ACTIONS(7229), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7872), 2, + ACTIONS(7233), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7874), 2, + ACTIONS(7235), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7884), 2, + ACTIONS(7245), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7888), 2, + ACTIONS(7249), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7890), 2, + ACTIONS(7251), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - STATE(5250), 9, + STATE(5187), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -653778,7 +648087,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [158112] = 21, + [152313] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -653799,31 +648108,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(7904), 1, - sym__identifier_token, - ACTIONS(7908), 1, - anon_sym_LPAREN, - ACTIONS(7910), 1, - anon_sym_BANG, - ACTIONS(7914), 1, - anon_sym_SQUOTE, - ACTIONS(7916), 1, - sym_integer_literal, - STATE(6452), 1, - sym__reserved_identifier, - STATE(6576), 1, - sym__preproc_expression, - ACTIONS(7912), 2, - anon_sym_true, - anon_sym_false, - STATE(6542), 6, - sym_character_literal, - sym_boolean_literal, - sym_identifier, - sym_preproc_parenthesized_expression, - sym_preproc_unary_expression, - sym_preproc_binary_expression, - STATE(5251), 9, + ACTIONS(7860), 1, + anon_sym_and, + ACTIONS(7868), 1, + anon_sym_or, + STATE(5188), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -653833,30 +648122,44 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(7906), 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(6109), 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(6107), 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_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, - [158211] = 21, + anon_sym_as, + anon_sym_is, + anon_sym_DASH_GT, + anon_sym_with, + [152400] = 21, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -653877,31 +648180,31 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(7904), 1, + ACTIONS(25), 1, sym__identifier_token, - ACTIONS(7908), 1, + ACTIONS(141), 1, + anon_sym_SQUOTE, + ACTIONS(7906), 1, anon_sym_LPAREN, - ACTIONS(7910), 1, + ACTIONS(7908), 1, anon_sym_BANG, - ACTIONS(7914), 1, - anon_sym_SQUOTE, - ACTIONS(7916), 1, + ACTIONS(7910), 1, sym_integer_literal, - STATE(6452), 1, + STATE(2168), 1, sym__reserved_identifier, - STATE(6577), 1, + STATE(6517), 1, sym__preproc_expression, - ACTIONS(7912), 2, + ACTIONS(77), 2, anon_sym_true, anon_sym_false, - STATE(6542), 6, + STATE(6552), 6, sym_character_literal, sym_boolean_literal, sym_identifier, sym_preproc_parenthesized_expression, sym_preproc_unary_expression, sym_preproc_binary_expression, - STATE(5252), 9, + STATE(5189), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -653911,7 +648214,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(7906), 22, + ACTIONS(29), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -653934,7 +648237,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [158310] = 40, + [152499] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -653955,73 +648258,73 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4100), 1, + ACTIONS(4753), 1, + anon_sym_LPAREN, + ACTIONS(4792), 1, anon_sym_DOT, - ACTIONS(4102), 1, + ACTIONS(4794), 1, anon_sym_DASH_GT, - ACTIONS(5264), 1, - anon_sym_LPAREN, - ACTIONS(5304), 1, - anon_sym_BANG, - ACTIONS(5573), 1, + ACTIONS(4819), 1, anon_sym_LBRACK, - ACTIONS(6343), 1, + ACTIONS(4823), 1, + anon_sym_BANG, + ACTIONS(6264), 1, anon_sym_switch, - ACTIONS(6357), 1, + ACTIONS(6278), 1, anon_sym_with, - ACTIONS(6813), 1, - anon_sym_as, - ACTIONS(7139), 1, + ACTIONS(8026), 1, anon_sym_QMARK, - ACTIONS(7145), 1, + ACTIONS(8032), 1, anon_sym_SLASH, - ACTIONS(7147), 1, + ACTIONS(8034), 1, anon_sym_CARET, - ACTIONS(7149), 1, + ACTIONS(8036), 1, anon_sym_PIPE, - ACTIONS(7151), 1, + ACTIONS(8038), 1, anon_sym_AMP, - ACTIONS(7155), 1, + ACTIONS(8042), 1, anon_sym_GT_GT, - ACTIONS(7161), 1, + ACTIONS(8048), 1, anon_sym_DOT_DOT, - ACTIONS(7163), 1, + ACTIONS(8050), 1, anon_sym_AMP_AMP, - ACTIONS(7165), 1, + ACTIONS(8052), 1, anon_sym_PIPE_PIPE, - ACTIONS(7167), 1, + ACTIONS(8054), 1, anon_sym_QMARK_QMARK, - ACTIONS(7169), 1, + ACTIONS(8056), 1, + anon_sym_as, + ACTIONS(8058), 1, anon_sym_is, - STATE(2485), 1, + STATE(2419), 1, sym_bracketed_argument_list, - STATE(3487), 1, + STATE(2958), 1, sym_argument_list, - ACTIONS(5306), 2, + ACTIONS(4825), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7137), 2, + ACTIONS(5709), 2, + anon_sym_into, + anon_sym_by, + ACTIONS(8024), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7141), 2, + ACTIONS(8028), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7143), 2, + ACTIONS(8030), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7153), 2, + ACTIONS(8040), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7157), 2, + ACTIONS(8044), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7159), 2, + ACTIONS(8046), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(7546), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - STATE(5253), 9, + STATE(5190), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -654031,7 +648334,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [158447] = 21, + [152636] = 21, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -654052,31 +648355,31 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(7904), 1, + ACTIONS(7846), 1, sym__identifier_token, - ACTIONS(7908), 1, + ACTIONS(7850), 1, anon_sym_LPAREN, - ACTIONS(7910), 1, + ACTIONS(7852), 1, anon_sym_BANG, - ACTIONS(7914), 1, + ACTIONS(7856), 1, anon_sym_SQUOTE, - ACTIONS(7916), 1, + ACTIONS(7858), 1, sym_integer_literal, - STATE(6452), 1, + STATE(6436), 1, sym__reserved_identifier, - STATE(6580), 1, + STATE(6544), 1, sym__preproc_expression, - ACTIONS(7912), 2, + ACTIONS(7854), 2, anon_sym_true, anon_sym_false, - STATE(6542), 6, + STATE(6482), 6, sym_character_literal, sym_boolean_literal, sym_identifier, sym_preproc_parenthesized_expression, sym_preproc_unary_expression, sym_preproc_binary_expression, - STATE(5254), 9, + STATE(5191), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -654086,7 +648389,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(7906), 22, + ACTIONS(7848), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -654109,7 +648412,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [158546] = 38, + [152735] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -654130,71 +648433,217 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4755), 1, - anon_sym_DASH_GT, - ACTIONS(4804), 1, + ACTIONS(5376), 1, + anon_sym_COLON, + ACTIONS(4241), 3, + anon_sym_when, + anon_sym_and, + anon_sym_or, + STATE(5192), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + ACTIONS(5144), 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(5142), 22, + anon_sym_LBRACK, anon_sym_LPAREN, - ACTIONS(4808), 1, + 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, + [152822] = 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(5382), 1, + anon_sym_COLON, + ACTIONS(4241), 3, + anon_sym_when, + anon_sym_and, + anon_sym_or, + STATE(5193), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + ACTIONS(5158), 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(4835), 1, + ACTIONS(5156), 22, anon_sym_LBRACK, - ACTIONS(4839), 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_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, + [152909] = 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(4042), 1, + anon_sym_DOT, + ACTIONS(4044), 1, + anon_sym_DASH_GT, + ACTIONS(5257), 1, + anon_sym_LPAREN, + ACTIONS(5302), 1, anon_sym_BANG, - ACTIONS(5664), 1, - anon_sym_QMARK, - ACTIONS(6293), 1, + ACTIONS(5549), 1, + anon_sym_LBRACK, + ACTIONS(6355), 1, anon_sym_switch, - ACTIONS(6307), 1, + ACTIONS(6369), 1, anon_sym_with, - ACTIONS(7962), 1, + ACTIONS(6811), 1, + anon_sym_as, + ACTIONS(7261), 1, + anon_sym_is, + ACTIONS(7562), 1, + anon_sym_QMARK, + ACTIONS(7568), 1, anon_sym_SLASH, - ACTIONS(7964), 1, + ACTIONS(7570), 1, anon_sym_CARET, - ACTIONS(7966), 1, + ACTIONS(7572), 1, anon_sym_PIPE, - ACTIONS(7968), 1, + ACTIONS(7574), 1, anon_sym_AMP, - ACTIONS(7972), 1, + ACTIONS(7578), 1, anon_sym_GT_GT, - ACTIONS(7978), 1, + ACTIONS(7584), 1, anon_sym_DOT_DOT, - ACTIONS(7980), 1, + ACTIONS(7586), 1, anon_sym_AMP_AMP, - ACTIONS(7986), 1, - anon_sym_as, - ACTIONS(7988), 1, - anon_sym_is, - STATE(2433), 1, + ACTIONS(7588), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7590), 1, + anon_sym_QMARK_QMARK, + STATE(2467), 1, sym_bracketed_argument_list, - STATE(3035), 1, + STATE(3381), 1, sym_argument_list, - ACTIONS(4841), 2, + ACTIONS(5304), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7954), 2, + ACTIONS(7560), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7958), 2, + ACTIONS(7564), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7960), 2, + ACTIONS(7566), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7970), 2, + ACTIONS(7576), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7974), 2, + ACTIONS(7580), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7976), 2, + ACTIONS(7582), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5660), 4, - anon_sym_PIPE_PIPE, - anon_sym_QMARK_QMARK, - anon_sym_into, - anon_sym_by, - STATE(5255), 9, + ACTIONS(7926), 2, + anon_sym_SEMI, + anon_sym_COMMA, + STATE(5194), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -654204,7 +648653,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [158679] = 40, + [153046] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -654225,73 +648674,170 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4755), 1, + ACTIONS(4042), 1, + anon_sym_DOT, + ACTIONS(4044), 1, anon_sym_DASH_GT, - ACTIONS(4804), 1, + ACTIONS(5257), 1, anon_sym_LPAREN, - ACTIONS(4808), 1, - anon_sym_DOT, - ACTIONS(4835), 1, - anon_sym_LBRACK, - ACTIONS(4839), 1, + ACTIONS(5302), 1, anon_sym_BANG, - ACTIONS(6293), 1, + ACTIONS(5549), 1, + anon_sym_LBRACK, + ACTIONS(6355), 1, anon_sym_switch, - ACTIONS(6307), 1, + ACTIONS(6369), 1, anon_sym_with, - ACTIONS(7876), 1, + ACTIONS(6811), 1, + anon_sym_as, + ACTIONS(7261), 1, + anon_sym_is, + ACTIONS(7562), 1, + anon_sym_QMARK, + ACTIONS(7568), 1, anon_sym_SLASH, - ACTIONS(7878), 1, + ACTIONS(7570), 1, anon_sym_CARET, - ACTIONS(7880), 1, + ACTIONS(7572), 1, anon_sym_PIPE, - ACTIONS(7882), 1, + ACTIONS(7574), 1, anon_sym_AMP, - ACTIONS(7886), 1, + ACTIONS(7578), 1, anon_sym_GT_GT, - ACTIONS(7892), 1, + ACTIONS(7584), 1, anon_sym_DOT_DOT, - ACTIONS(7894), 1, + ACTIONS(7586), 1, anon_sym_AMP_AMP, - ACTIONS(7896), 1, + ACTIONS(7588), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7590), 1, + anon_sym_QMARK_QMARK, + STATE(2467), 1, + sym_bracketed_argument_list, + STATE(3381), 1, + sym_argument_list, + ACTIONS(5304), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7560), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(7564), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(7566), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(7576), 2, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + ACTIONS(7580), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(7582), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(7928), 2, + anon_sym_SEMI, + anon_sym_COMMA, + STATE(5195), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + [153183] = 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(4042), 1, + anon_sym_DOT, + ACTIONS(4044), 1, + anon_sym_DASH_GT, + ACTIONS(5257), 1, + anon_sym_LPAREN, + ACTIONS(5302), 1, + anon_sym_BANG, + ACTIONS(5549), 1, + anon_sym_LBRACK, + ACTIONS(6355), 1, + anon_sym_switch, + ACTIONS(6369), 1, + anon_sym_with, + ACTIONS(6811), 1, anon_sym_as, - ACTIONS(7898), 1, - anon_sym_is, - ACTIONS(8112), 1, + ACTIONS(7231), 1, anon_sym_QMARK, - ACTIONS(8114), 1, + ACTIONS(7237), 1, + anon_sym_SLASH, + ACTIONS(7239), 1, + anon_sym_CARET, + ACTIONS(7241), 1, + anon_sym_PIPE, + ACTIONS(7243), 1, + anon_sym_AMP, + ACTIONS(7247), 1, + anon_sym_GT_GT, + ACTIONS(7253), 1, + anon_sym_DOT_DOT, + ACTIONS(7255), 1, + anon_sym_AMP_AMP, + ACTIONS(7257), 1, anon_sym_PIPE_PIPE, - ACTIONS(8116), 1, + ACTIONS(7259), 1, anon_sym_QMARK_QMARK, - STATE(2433), 1, + ACTIONS(7261), 1, + anon_sym_is, + STATE(2467), 1, sym_bracketed_argument_list, - STATE(3035), 1, + STATE(3381), 1, sym_argument_list, - ACTIONS(4841), 2, + ACTIONS(5304), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5072), 2, - anon_sym_into, - anon_sym_equals, - ACTIONS(7870), 2, + ACTIONS(7229), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7872), 2, + ACTIONS(7233), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7874), 2, + ACTIONS(7235), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7884), 2, + ACTIONS(7245), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7888), 2, + ACTIONS(7249), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7890), 2, + ACTIONS(7251), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - STATE(5256), 9, + ACTIONS(8060), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + STATE(5196), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -654301,7 +648847,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [158816] = 21, + [153320] = 26, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -654322,31 +648868,37 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(7904), 1, + ACTIONS(3861), 1, + anon_sym_LBRACE, + ACTIONS(3869), 1, + anon_sym_EQ_GT, + ACTIONS(3877), 1, + sym_discard, + ACTIONS(6969), 1, sym__identifier_token, - ACTIONS(7908), 1, + ACTIONS(8062), 1, anon_sym_LPAREN, - ACTIONS(7910), 1, - anon_sym_BANG, - ACTIONS(7914), 1, - anon_sym_SQUOTE, - ACTIONS(7916), 1, - sym_integer_literal, - STATE(6452), 1, + STATE(2565), 1, sym__reserved_identifier, - STATE(6571), 1, - sym__preproc_expression, - ACTIONS(7912), 2, - anon_sym_true, - anon_sym_false, - STATE(6542), 6, - sym_character_literal, - sym_boolean_literal, + STATE(3352), 1, + sym_parenthesized_variable_designation, + STATE(3422), 1, + sym__variable_designation, + STATE(4862), 1, sym_identifier, - sym_preproc_parenthesized_expression, - sym_preproc_unary_expression, - sym_preproc_binary_expression, - STATE(5257), 9, + STATE(5667), 1, + sym_positional_pattern_clause, + STATE(5722), 1, + sym_property_pattern_clause, + STATE(7378), 1, + sym__lambda_parameters, + STATE(7531), 1, + sym_parameter_list, + ACTIONS(3867), 3, + anon_sym_when, + anon_sym_and, + anon_sym_or, + STATE(5197), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -654356,7 +648908,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(7906), 22, + ACTIONS(6971), 21, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -654366,7 +648918,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, @@ -654379,7 +648930,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [158915] = 15, + [153429] = 22, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -654400,37 +648951,46 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8006), 1, - anon_sym_and, - ACTIONS(8008), 1, - anon_sym_or, - STATE(5258), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - ACTIONS(6207), 11, + ACTIONS(4753), 1, + anon_sym_LPAREN, + ACTIONS(4792), 1, + anon_sym_DOT, + ACTIONS(4794), 1, + anon_sym_DASH_GT, + ACTIONS(4819), 1, + anon_sym_LBRACK, + ACTIONS(4823), 1, + anon_sym_BANG, + ACTIONS(8048), 1, + anon_sym_DOT_DOT, + STATE(2419), 1, + sym_bracketed_argument_list, + STATE(2958), 1, + sym_argument_list, + ACTIONS(4825), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5743), 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(6205), 24, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, + STATE(5198), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + ACTIONS(5741), 18, anon_sym_STAR, anon_sym_PERCENT, anon_sym_CARET, @@ -654441,7 +649001,6 @@ 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, @@ -654449,9 +649008,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_as, anon_sym_is, - anon_sym_DASH_GT, anon_sym_with, - [159002] = 15, + [153530] = 41, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -654472,58 +649030,84 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8016), 1, - anon_sym_and, - ACTIONS(8018), 1, - anon_sym_or, - STATE(5259), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - ACTIONS(5356), 11, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, + ACTIONS(4042), 1, + anon_sym_DOT, + ACTIONS(4044), 1, + anon_sym_DASH_GT, + ACTIONS(5257), 1, + anon_sym_LPAREN, + ACTIONS(5302), 1, anon_sym_BANG, - anon_sym_PLUS, - anon_sym_DASH, + ACTIONS(5549), 1, + anon_sym_LBRACK, + ACTIONS(6355), 1, + anon_sym_switch, + ACTIONS(6369), 1, + anon_sym_with, + ACTIONS(6811), 1, + anon_sym_as, + ACTIONS(7231), 1, + anon_sym_QMARK, + ACTIONS(7237), 1, anon_sym_SLASH, + ACTIONS(7239), 1, + anon_sym_CARET, + ACTIONS(7241), 1, anon_sym_PIPE, + ACTIONS(7243), 1, anon_sym_AMP, + ACTIONS(7247), 1, anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(5354), 24, - anon_sym_LBRACK, - anon_sym_LPAREN, + ACTIONS(7253), 1, + anon_sym_DOT_DOT, + ACTIONS(7255), 1, + anon_sym_AMP_AMP, + ACTIONS(7257), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7259), 1, + anon_sym_QMARK_QMARK, + ACTIONS(7261), 1, + anon_sym_is, + ACTIONS(7839), 1, + anon_sym_COMMA, + ACTIONS(8064), 1, + anon_sym_RPAREN, + STATE(2467), 1, + sym_bracketed_argument_list, + STATE(3381), 1, + sym_argument_list, + ACTIONS(5304), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + ACTIONS(7229), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(7233), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(7235), 2, anon_sym_STAR, anon_sym_PERCENT, - anon_sym_CARET, + ACTIONS(7245), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, + ACTIONS(7249), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + ACTIONS(7251), 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_equals, - anon_sym_as, - anon_sym_is, - anon_sym_DASH_GT, - anon_sym_with, - [159089] = 40, + 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, + [153669] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -654544,73 +649128,73 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4755), 1, - anon_sym_DASH_GT, - ACTIONS(4804), 1, + ACTIONS(4753), 1, anon_sym_LPAREN, - ACTIONS(4808), 1, + ACTIONS(4792), 1, anon_sym_DOT, - ACTIONS(4835), 1, + ACTIONS(4794), 1, + anon_sym_DASH_GT, + ACTIONS(4819), 1, anon_sym_LBRACK, - ACTIONS(4839), 1, + ACTIONS(4823), 1, anon_sym_BANG, - ACTIONS(6293), 1, + ACTIONS(6264), 1, anon_sym_switch, - ACTIONS(6307), 1, + ACTIONS(6278), 1, anon_sym_with, - ACTIONS(7956), 1, + ACTIONS(8026), 1, anon_sym_QMARK, - ACTIONS(7962), 1, + ACTIONS(8032), 1, anon_sym_SLASH, - ACTIONS(7964), 1, + ACTIONS(8034), 1, anon_sym_CARET, - ACTIONS(7966), 1, + ACTIONS(8036), 1, anon_sym_PIPE, - ACTIONS(7968), 1, + ACTIONS(8038), 1, anon_sym_AMP, - ACTIONS(7972), 1, + ACTIONS(8042), 1, anon_sym_GT_GT, - ACTIONS(7978), 1, + ACTIONS(8048), 1, anon_sym_DOT_DOT, - ACTIONS(7980), 1, + ACTIONS(8050), 1, anon_sym_AMP_AMP, - ACTIONS(7982), 1, + ACTIONS(8052), 1, anon_sym_PIPE_PIPE, - ACTIONS(7984), 1, + ACTIONS(8054), 1, anon_sym_QMARK_QMARK, - ACTIONS(7986), 1, + ACTIONS(8056), 1, anon_sym_as, - ACTIONS(7988), 1, + ACTIONS(8058), 1, anon_sym_is, - STATE(2433), 1, + STATE(2419), 1, sym_bracketed_argument_list, - STATE(3035), 1, + STATE(2958), 1, sym_argument_list, - ACTIONS(4841), 2, + ACTIONS(4825), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5882), 2, + ACTIONS(5733), 2, anon_sym_into, anon_sym_by, - ACTIONS(7954), 2, + ACTIONS(8024), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7958), 2, + ACTIONS(8028), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7960), 2, + ACTIONS(8030), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7970), 2, + ACTIONS(8040), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7974), 2, + ACTIONS(8044), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7976), 2, + ACTIONS(8046), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - STATE(5260), 9, + STATE(5200), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -654620,7 +649204,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [159226] = 34, + [153806] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -654641,67 +649225,73 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4755), 1, - anon_sym_DASH_GT, - ACTIONS(4804), 1, + ACTIONS(4753), 1, anon_sym_LPAREN, - ACTIONS(4808), 1, + ACTIONS(4792), 1, anon_sym_DOT, - ACTIONS(4835), 1, + ACTIONS(4794), 1, + anon_sym_DASH_GT, + ACTIONS(4819), 1, anon_sym_LBRACK, - ACTIONS(4839), 1, + ACTIONS(4823), 1, anon_sym_BANG, - ACTIONS(6293), 1, + ACTIONS(6264), 1, anon_sym_switch, - ACTIONS(6307), 1, + ACTIONS(6278), 1, anon_sym_with, - ACTIONS(7876), 1, + ACTIONS(8026), 1, + anon_sym_QMARK, + ACTIONS(8032), 1, anon_sym_SLASH, - ACTIONS(7886), 1, + ACTIONS(8034), 1, + anon_sym_CARET, + ACTIONS(8036), 1, + anon_sym_PIPE, + ACTIONS(8038), 1, + anon_sym_AMP, + ACTIONS(8042), 1, anon_sym_GT_GT, - ACTIONS(7892), 1, + ACTIONS(8048), 1, anon_sym_DOT_DOT, - ACTIONS(7896), 1, + ACTIONS(8050), 1, + anon_sym_AMP_AMP, + ACTIONS(8052), 1, + anon_sym_PIPE_PIPE, + ACTIONS(8054), 1, + anon_sym_QMARK_QMARK, + ACTIONS(8056), 1, anon_sym_as, - ACTIONS(7898), 1, + ACTIONS(8058), 1, anon_sym_is, - STATE(2433), 1, + STATE(2419), 1, sym_bracketed_argument_list, - STATE(3035), 1, + STATE(2958), 1, sym_argument_list, - ACTIONS(4841), 2, + ACTIONS(4825), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7870), 2, + ACTIONS(5849), 2, + anon_sym_into, + anon_sym_by, + ACTIONS(8024), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7872), 2, + ACTIONS(8028), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7874), 2, + ACTIONS(8030), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7884), 2, + ACTIONS(8040), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7888), 2, + ACTIONS(8044), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7890), 2, + ACTIONS(8046), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5664), 3, - anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_AMP, - ACTIONS(5660), 6, - anon_sym_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_QMARK_QMARK, - anon_sym_into, - anon_sym_equals, - STATE(5261), 9, + STATE(5201), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -654711,7 +649301,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [159351] = 40, + [153943] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -654732,73 +649322,73 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4755), 1, - anon_sym_DASH_GT, - ACTIONS(4804), 1, + ACTIONS(4753), 1, anon_sym_LPAREN, - ACTIONS(4808), 1, + ACTIONS(4792), 1, anon_sym_DOT, - ACTIONS(4835), 1, + ACTIONS(4794), 1, + anon_sym_DASH_GT, + ACTIONS(4819), 1, anon_sym_LBRACK, - ACTIONS(4839), 1, + ACTIONS(4823), 1, anon_sym_BANG, - ACTIONS(6293), 1, + ACTIONS(6264), 1, anon_sym_switch, - ACTIONS(6307), 1, + ACTIONS(6278), 1, anon_sym_with, - ACTIONS(7902), 1, - anon_sym_DOT_DOT, - ACTIONS(8070), 1, + ACTIONS(8026), 1, anon_sym_QMARK, - ACTIONS(8076), 1, + ACTIONS(8032), 1, anon_sym_SLASH, - ACTIONS(8078), 1, + ACTIONS(8034), 1, anon_sym_CARET, - ACTIONS(8080), 1, + ACTIONS(8036), 1, anon_sym_PIPE, - ACTIONS(8082), 1, + ACTIONS(8038), 1, anon_sym_AMP, - ACTIONS(8086), 1, + ACTIONS(8042), 1, anon_sym_GT_GT, - ACTIONS(8092), 1, + ACTIONS(8048), 1, + anon_sym_DOT_DOT, + ACTIONS(8050), 1, anon_sym_AMP_AMP, - ACTIONS(8094), 1, + ACTIONS(8052), 1, anon_sym_PIPE_PIPE, - ACTIONS(8096), 1, + ACTIONS(8054), 1, anon_sym_QMARK_QMARK, - ACTIONS(8098), 1, + ACTIONS(8056), 1, anon_sym_as, - ACTIONS(8100), 1, + ACTIONS(8058), 1, anon_sym_is, - STATE(2433), 1, + STATE(2419), 1, sym_bracketed_argument_list, - STATE(3035), 1, + STATE(2958), 1, sym_argument_list, - ACTIONS(4841), 2, + ACTIONS(4825), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5899), 2, + ACTIONS(4996), 2, anon_sym_into, - anon_sym_on, - ACTIONS(8068), 2, + anon_sym_by, + ACTIONS(8024), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(8072), 2, + ACTIONS(8028), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(8074), 2, + ACTIONS(8030), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8084), 2, + ACTIONS(8040), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(8088), 2, + ACTIONS(8044), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(8090), 2, + ACTIONS(8046), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - STATE(5262), 9, + STATE(5202), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -654808,7 +649398,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [159488] = 21, + [154080] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -654829,31 +649419,73 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(7904), 1, - sym__identifier_token, - ACTIONS(7908), 1, + ACTIONS(4753), 1, anon_sym_LPAREN, - ACTIONS(7910), 1, + ACTIONS(4792), 1, + anon_sym_DOT, + ACTIONS(4794), 1, + anon_sym_DASH_GT, + ACTIONS(4819), 1, + anon_sym_LBRACK, + ACTIONS(4823), 1, anon_sym_BANG, - ACTIONS(7914), 1, - anon_sym_SQUOTE, - ACTIONS(7916), 1, - sym_integer_literal, - STATE(6452), 1, - sym__reserved_identifier, - STATE(6598), 1, - sym__preproc_expression, - ACTIONS(7912), 2, - anon_sym_true, - anon_sym_false, - STATE(6542), 6, - sym_character_literal, - sym_boolean_literal, - sym_identifier, - sym_preproc_parenthesized_expression, - sym_preproc_unary_expression, - sym_preproc_binary_expression, - STATE(5263), 9, + ACTIONS(6264), 1, + anon_sym_switch, + ACTIONS(6278), 1, + anon_sym_with, + ACTIONS(8026), 1, + anon_sym_QMARK, + ACTIONS(8032), 1, + anon_sym_SLASH, + ACTIONS(8034), 1, + anon_sym_CARET, + ACTIONS(8036), 1, + anon_sym_PIPE, + ACTIONS(8038), 1, + anon_sym_AMP, + ACTIONS(8042), 1, + anon_sym_GT_GT, + ACTIONS(8048), 1, + anon_sym_DOT_DOT, + ACTIONS(8050), 1, + anon_sym_AMP_AMP, + ACTIONS(8052), 1, + anon_sym_PIPE_PIPE, + ACTIONS(8054), 1, + anon_sym_QMARK_QMARK, + ACTIONS(8056), 1, + anon_sym_as, + ACTIONS(8058), 1, + anon_sym_is, + STATE(2419), 1, + sym_bracketed_argument_list, + STATE(2958), 1, + sym_argument_list, + ACTIONS(4825), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5855), 2, + anon_sym_into, + anon_sym_by, + ACTIONS(8024), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(8028), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(8030), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(8040), 2, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + ACTIONS(8044), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(8046), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + STATE(5203), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -654863,30 +649495,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(7906), 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, - [159587] = 21, + [154217] = 21, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -654907,31 +649516,31 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(7904), 1, + ACTIONS(7846), 1, sym__identifier_token, - ACTIONS(7908), 1, + ACTIONS(7850), 1, anon_sym_LPAREN, - ACTIONS(7910), 1, + ACTIONS(7852), 1, anon_sym_BANG, - ACTIONS(7914), 1, + ACTIONS(7856), 1, anon_sym_SQUOTE, - ACTIONS(7916), 1, + ACTIONS(7858), 1, sym_integer_literal, - STATE(6452), 1, + STATE(6436), 1, sym__reserved_identifier, - STATE(6599), 1, + STATE(6509), 1, sym__preproc_expression, - ACTIONS(7912), 2, + ACTIONS(7854), 2, anon_sym_true, anon_sym_false, - STATE(6542), 6, + STATE(6482), 6, sym_character_literal, sym_boolean_literal, sym_identifier, sym_preproc_parenthesized_expression, sym_preproc_unary_expression, sym_preproc_binary_expression, - STATE(5264), 9, + STATE(5204), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -654941,7 +649550,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(7906), 22, + ACTIONS(7848), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -654964,7 +649573,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [159686] = 21, + [154316] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -654985,31 +649594,73 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(7904), 1, - sym__identifier_token, - ACTIONS(7908), 1, + ACTIONS(4753), 1, anon_sym_LPAREN, - ACTIONS(7910), 1, + ACTIONS(4792), 1, + anon_sym_DOT, + ACTIONS(4794), 1, + anon_sym_DASH_GT, + ACTIONS(4819), 1, + anon_sym_LBRACK, + ACTIONS(4823), 1, anon_sym_BANG, - ACTIONS(7914), 1, - anon_sym_SQUOTE, - ACTIONS(7916), 1, - sym_integer_literal, - STATE(6452), 1, - sym__reserved_identifier, - STATE(6601), 1, - sym__preproc_expression, - ACTIONS(7912), 2, - anon_sym_true, - anon_sym_false, - STATE(6542), 6, - sym_character_literal, - sym_boolean_literal, - sym_identifier, - sym_preproc_parenthesized_expression, - sym_preproc_unary_expression, - sym_preproc_binary_expression, - STATE(5265), 9, + ACTIONS(6264), 1, + anon_sym_switch, + ACTIONS(6278), 1, + anon_sym_with, + ACTIONS(8026), 1, + anon_sym_QMARK, + ACTIONS(8032), 1, + anon_sym_SLASH, + ACTIONS(8034), 1, + anon_sym_CARET, + ACTIONS(8036), 1, + anon_sym_PIPE, + ACTIONS(8038), 1, + anon_sym_AMP, + ACTIONS(8042), 1, + anon_sym_GT_GT, + ACTIONS(8048), 1, + anon_sym_DOT_DOT, + ACTIONS(8050), 1, + anon_sym_AMP_AMP, + ACTIONS(8052), 1, + anon_sym_PIPE_PIPE, + ACTIONS(8054), 1, + anon_sym_QMARK_QMARK, + ACTIONS(8056), 1, + anon_sym_as, + ACTIONS(8058), 1, + anon_sym_is, + STATE(2419), 1, + sym_bracketed_argument_list, + STATE(2958), 1, + sym_argument_list, + ACTIONS(4825), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5801), 2, + anon_sym_into, + anon_sym_by, + ACTIONS(8024), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(8028), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(8030), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(8040), 2, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + ACTIONS(8044), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(8046), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + STATE(5205), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -655019,30 +649670,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(7906), 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, - [159785] = 22, + [154453] = 22, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -655063,26 +649691,26 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4755), 1, - anon_sym_DASH_GT, - ACTIONS(4804), 1, + ACTIONS(4753), 1, anon_sym_LPAREN, - ACTIONS(4808), 1, + ACTIONS(4792), 1, anon_sym_DOT, - ACTIONS(4835), 1, + ACTIONS(4794), 1, + anon_sym_DASH_GT, + ACTIONS(4819), 1, anon_sym_LBRACK, - ACTIONS(4839), 1, + ACTIONS(4823), 1, anon_sym_BANG, - ACTIONS(7902), 1, + ACTIONS(8048), 1, anon_sym_DOT_DOT, - STATE(2433), 1, + STATE(2419), 1, sym_bracketed_argument_list, - STATE(3035), 1, + STATE(2958), 1, sym_argument_list, - ACTIONS(4841), 2, + ACTIONS(4825), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1223), 9, + ACTIONS(1161), 9, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, @@ -655092,7 +649720,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_AMP, anon_sym_GT_GT, - STATE(5266), 9, + STATE(5206), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -655102,7 +649730,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(1221), 18, + ACTIONS(1147), 18, anon_sym_STAR, anon_sym_PERCENT, anon_sym_CARET, @@ -655117,11 +649745,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_by, anon_sym_as, anon_sym_is, anon_sym_with, - [159886] = 21, + [154554] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -655142,31 +649770,73 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(7904), 1, - sym__identifier_token, - ACTIONS(7908), 1, + ACTIONS(4753), 1, anon_sym_LPAREN, - ACTIONS(7910), 1, + ACTIONS(4792), 1, + anon_sym_DOT, + ACTIONS(4794), 1, + anon_sym_DASH_GT, + ACTIONS(4819), 1, + anon_sym_LBRACK, + ACTIONS(4823), 1, anon_sym_BANG, - ACTIONS(7914), 1, - anon_sym_SQUOTE, - ACTIONS(7916), 1, - sym_integer_literal, - STATE(6452), 1, - sym__reserved_identifier, - STATE(6552), 1, - sym__preproc_expression, - ACTIONS(7912), 2, - anon_sym_true, - anon_sym_false, - STATE(6542), 6, - sym_character_literal, - sym_boolean_literal, - sym_identifier, - sym_preproc_parenthesized_expression, - sym_preproc_unary_expression, - sym_preproc_binary_expression, - STATE(5267), 9, + ACTIONS(6264), 1, + anon_sym_switch, + ACTIONS(6278), 1, + anon_sym_with, + ACTIONS(8026), 1, + anon_sym_QMARK, + ACTIONS(8032), 1, + anon_sym_SLASH, + ACTIONS(8034), 1, + anon_sym_CARET, + ACTIONS(8036), 1, + anon_sym_PIPE, + ACTIONS(8038), 1, + anon_sym_AMP, + ACTIONS(8042), 1, + anon_sym_GT_GT, + ACTIONS(8048), 1, + anon_sym_DOT_DOT, + ACTIONS(8050), 1, + anon_sym_AMP_AMP, + ACTIONS(8052), 1, + anon_sym_PIPE_PIPE, + ACTIONS(8054), 1, + anon_sym_QMARK_QMARK, + ACTIONS(8056), 1, + anon_sym_as, + ACTIONS(8058), 1, + anon_sym_is, + STATE(2419), 1, + sym_bracketed_argument_list, + STATE(2958), 1, + sym_argument_list, + ACTIONS(4825), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5652), 2, + anon_sym_into, + anon_sym_by, + ACTIONS(8024), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(8028), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(8030), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(8040), 2, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + ACTIONS(8044), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(8046), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + STATE(5207), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -655176,30 +649846,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(7906), 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, - [159985] = 36, + [154691] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -655220,79 +649867,58 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4755), 1, - anon_sym_DASH_GT, - ACTIONS(4804), 1, - anon_sym_LPAREN, - ACTIONS(4808), 1, - anon_sym_DOT, - ACTIONS(4835), 1, - anon_sym_LBRACK, - ACTIONS(4839), 1, + ACTIONS(8066), 1, + anon_sym_and, + ACTIONS(8068), 1, + anon_sym_or, + STATE(5208), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + ACTIONS(6109), 11, + anon_sym_LT, + anon_sym_GT, + anon_sym_QMARK, anon_sym_BANG, - ACTIONS(6293), 1, - anon_sym_switch, - ACTIONS(6307), 1, - anon_sym_with, - ACTIONS(7902), 1, - anon_sym_DOT_DOT, - ACTIONS(8076), 1, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_SLASH, - ACTIONS(8078), 1, - anon_sym_CARET, - ACTIONS(8082), 1, + anon_sym_PIPE, anon_sym_AMP, - ACTIONS(8086), 1, anon_sym_GT_GT, - ACTIONS(8098), 1, - anon_sym_as, - ACTIONS(8100), 1, - anon_sym_is, - STATE(2433), 1, - sym_bracketed_argument_list, - STATE(3035), 1, - sym_argument_list, - ACTIONS(4841), 2, + anon_sym_DOT, + ACTIONS(6107), 24, + anon_sym_LBRACK, + anon_sym_LPAREN, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5664), 2, - anon_sym_QMARK, - anon_sym_PIPE, - ACTIONS(8068), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(8072), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(8074), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8084), 2, + anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(8088), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(8090), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5660), 5, + anon_sym_switch, + anon_sym_DOT_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_QMARK_QMARK, anon_sym_into, - anon_sym_on, - STATE(5268), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - [160114] = 41, + anon_sym_equals, + anon_sym_as, + anon_sym_is, + anon_sym_DASH_GT, + anon_sym_with, + [154778] = 29, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -655313,74 +649939,49 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4100), 1, + ACTIONS(4753), 1, + anon_sym_LPAREN, + ACTIONS(4792), 1, anon_sym_DOT, - ACTIONS(4102), 1, + ACTIONS(4794), 1, anon_sym_DASH_GT, - ACTIONS(5264), 1, - anon_sym_LPAREN, - ACTIONS(5304), 1, - anon_sym_BANG, - ACTIONS(5573), 1, + ACTIONS(4819), 1, anon_sym_LBRACK, - ACTIONS(6343), 1, + ACTIONS(4823), 1, + anon_sym_BANG, + ACTIONS(6264), 1, anon_sym_switch, - ACTIONS(6357), 1, + ACTIONS(6278), 1, anon_sym_with, - ACTIONS(6813), 1, - anon_sym_as, - ACTIONS(7139), 1, - anon_sym_QMARK, - ACTIONS(7145), 1, + ACTIONS(8032), 1, anon_sym_SLASH, - ACTIONS(7147), 1, - anon_sym_CARET, - ACTIONS(7149), 1, - anon_sym_PIPE, - ACTIONS(7151), 1, - anon_sym_AMP, - ACTIONS(7155), 1, + ACTIONS(8042), 1, anon_sym_GT_GT, - ACTIONS(7161), 1, + ACTIONS(8048), 1, anon_sym_DOT_DOT, - ACTIONS(7163), 1, - anon_sym_AMP_AMP, - ACTIONS(7165), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7167), 1, - anon_sym_QMARK_QMARK, - ACTIONS(7169), 1, - anon_sym_is, - ACTIONS(7831), 1, - anon_sym_COMMA, - ACTIONS(8132), 1, - anon_sym_RPAREN, - STATE(2485), 1, + STATE(2419), 1, sym_bracketed_argument_list, - STATE(3487), 1, + STATE(2958), 1, sym_argument_list, - ACTIONS(5306), 2, + ACTIONS(4825), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7137), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(7141), 2, + ACTIONS(8028), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7143), 2, + ACTIONS(8030), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7153), 2, + ACTIONS(8040), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7157), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(7159), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - STATE(5269), 9, + ACTIONS(5739), 5, + anon_sym_LT, + anon_sym_GT, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_AMP, + STATE(5209), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -655390,7 +649991,20 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [160253] = 40, + ACTIONS(5737), 12, + 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_by, + anon_sym_as, + anon_sym_is, + [154893] = 26, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -655411,73 +650025,44 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4100), 1, + ACTIONS(4753), 1, + anon_sym_LPAREN, + ACTIONS(4792), 1, anon_sym_DOT, - ACTIONS(4102), 1, + ACTIONS(4794), 1, anon_sym_DASH_GT, - ACTIONS(5264), 1, - anon_sym_LPAREN, - ACTIONS(5304), 1, - anon_sym_BANG, - ACTIONS(5573), 1, + ACTIONS(4819), 1, anon_sym_LBRACK, - ACTIONS(6343), 1, + ACTIONS(4823), 1, + anon_sym_BANG, + ACTIONS(6264), 1, anon_sym_switch, - ACTIONS(6357), 1, + ACTIONS(6278), 1, anon_sym_with, - ACTIONS(6813), 1, - anon_sym_as, - ACTIONS(7139), 1, - anon_sym_QMARK, - ACTIONS(7145), 1, + ACTIONS(8032), 1, anon_sym_SLASH, - ACTIONS(7147), 1, - anon_sym_CARET, - ACTIONS(7149), 1, - anon_sym_PIPE, - ACTIONS(7151), 1, - anon_sym_AMP, - ACTIONS(7155), 1, - anon_sym_GT_GT, - ACTIONS(7161), 1, + ACTIONS(8048), 1, anon_sym_DOT_DOT, - ACTIONS(7163), 1, - anon_sym_AMP_AMP, - ACTIONS(7165), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7167), 1, - anon_sym_QMARK_QMARK, - ACTIONS(7169), 1, - anon_sym_is, - STATE(2485), 1, + STATE(2419), 1, sym_bracketed_argument_list, - STATE(3487), 1, + STATE(2958), 1, sym_argument_list, - ACTIONS(5306), 2, + ACTIONS(4825), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7137), 2, + ACTIONS(8030), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(5739), 8, anon_sym_LT, anon_sym_GT, - ACTIONS(7141), 2, + anon_sym_QMARK, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7143), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(7153), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - ACTIONS(7157), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(7159), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(8134), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - STATE(5270), 9, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT_GT, + STATE(5210), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -655487,7 +650072,22 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [160390] = 40, + ACTIONS(5737), 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, + [155002] = 24, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -655508,73 +650108,40 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4755), 1, - anon_sym_DASH_GT, - ACTIONS(4804), 1, + ACTIONS(4753), 1, anon_sym_LPAREN, - ACTIONS(4808), 1, + ACTIONS(4792), 1, anon_sym_DOT, - ACTIONS(4835), 1, + ACTIONS(4794), 1, + anon_sym_DASH_GT, + ACTIONS(4819), 1, anon_sym_LBRACK, - ACTIONS(4839), 1, + ACTIONS(4823), 1, anon_sym_BANG, - ACTIONS(6293), 1, + ACTIONS(6264), 1, anon_sym_switch, - ACTIONS(6307), 1, + ACTIONS(6278), 1, anon_sym_with, - ACTIONS(7902), 1, + ACTIONS(8048), 1, anon_sym_DOT_DOT, - ACTIONS(8070), 1, - anon_sym_QMARK, - ACTIONS(8076), 1, - anon_sym_SLASH, - ACTIONS(8078), 1, - anon_sym_CARET, - ACTIONS(8080), 1, - anon_sym_PIPE, - ACTIONS(8082), 1, - anon_sym_AMP, - ACTIONS(8086), 1, - anon_sym_GT_GT, - ACTIONS(8092), 1, - anon_sym_AMP_AMP, - ACTIONS(8094), 1, - anon_sym_PIPE_PIPE, - ACTIONS(8096), 1, - anon_sym_QMARK_QMARK, - ACTIONS(8098), 1, - anon_sym_as, - ACTIONS(8100), 1, - anon_sym_is, - STATE(2433), 1, + STATE(2419), 1, sym_bracketed_argument_list, - STATE(3035), 1, + STATE(2958), 1, sym_argument_list, - ACTIONS(4841), 2, + ACTIONS(4825), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5858), 2, - anon_sym_into, - anon_sym_on, - ACTIONS(8068), 2, + ACTIONS(5739), 9, anon_sym_LT, anon_sym_GT, - ACTIONS(8072), 2, + anon_sym_QMARK, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(8074), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(8084), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - ACTIONS(8088), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(8090), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - STATE(5271), 9, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT_GT, + STATE(5211), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -655584,7 +650151,24 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [160527] = 21, + ACTIONS(5737), 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, + [155107] = 35, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -655605,31 +650189,68 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(7904), 1, - sym__identifier_token, - ACTIONS(7908), 1, + ACTIONS(4753), 1, anon_sym_LPAREN, - ACTIONS(7910), 1, + ACTIONS(4792), 1, + anon_sym_DOT, + ACTIONS(4794), 1, + anon_sym_DASH_GT, + ACTIONS(4819), 1, + anon_sym_LBRACK, + ACTIONS(4823), 1, anon_sym_BANG, - ACTIONS(7914), 1, - anon_sym_SQUOTE, - ACTIONS(7916), 1, - sym_integer_literal, - STATE(6452), 1, - sym__reserved_identifier, - STATE(6469), 1, - sym__preproc_expression, - ACTIONS(7912), 2, - anon_sym_true, - anon_sym_false, - STATE(6542), 6, - sym_character_literal, - sym_boolean_literal, - sym_identifier, - sym_preproc_parenthesized_expression, - sym_preproc_unary_expression, - sym_preproc_binary_expression, - STATE(5272), 9, + ACTIONS(6264), 1, + anon_sym_switch, + ACTIONS(6278), 1, + anon_sym_with, + ACTIONS(8032), 1, + anon_sym_SLASH, + ACTIONS(8038), 1, + anon_sym_AMP, + ACTIONS(8042), 1, + anon_sym_GT_GT, + ACTIONS(8048), 1, + anon_sym_DOT_DOT, + ACTIONS(8056), 1, + anon_sym_as, + ACTIONS(8058), 1, + anon_sym_is, + STATE(2419), 1, + sym_bracketed_argument_list, + STATE(2958), 1, + sym_argument_list, + ACTIONS(4825), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5739), 2, + anon_sym_QMARK, + anon_sym_PIPE, + ACTIONS(8024), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(8028), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(8030), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(8040), 2, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + ACTIONS(8044), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(8046), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(5737), 6, + anon_sym_CARET, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, + anon_sym_into, + anon_sym_by, + STATE(5212), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -655639,30 +650260,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(7906), 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, - [160626] = 40, + [155234] = 36, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -655683,73 +650281,69 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4755), 1, - anon_sym_DASH_GT, - ACTIONS(4804), 1, + ACTIONS(4753), 1, anon_sym_LPAREN, - ACTIONS(4808), 1, + ACTIONS(4792), 1, anon_sym_DOT, - ACTIONS(4835), 1, + ACTIONS(4794), 1, + anon_sym_DASH_GT, + ACTIONS(4819), 1, anon_sym_LBRACK, - ACTIONS(4839), 1, + ACTIONS(4823), 1, anon_sym_BANG, - ACTIONS(6293), 1, + ACTIONS(6264), 1, anon_sym_switch, - ACTIONS(6307), 1, + ACTIONS(6278), 1, anon_sym_with, - ACTIONS(7876), 1, + ACTIONS(8032), 1, anon_sym_SLASH, - ACTIONS(7878), 1, + ACTIONS(8034), 1, anon_sym_CARET, - ACTIONS(7880), 1, - anon_sym_PIPE, - ACTIONS(7882), 1, + ACTIONS(8038), 1, anon_sym_AMP, - ACTIONS(7886), 1, + ACTIONS(8042), 1, anon_sym_GT_GT, - ACTIONS(7892), 1, + ACTIONS(8048), 1, anon_sym_DOT_DOT, - ACTIONS(7894), 1, - anon_sym_AMP_AMP, - ACTIONS(7896), 1, + ACTIONS(8056), 1, anon_sym_as, - ACTIONS(7898), 1, + ACTIONS(8058), 1, anon_sym_is, - ACTIONS(8112), 1, - anon_sym_QMARK, - ACTIONS(8114), 1, - anon_sym_PIPE_PIPE, - ACTIONS(8116), 1, - anon_sym_QMARK_QMARK, - STATE(2433), 1, + STATE(2419), 1, sym_bracketed_argument_list, - STATE(3035), 1, + STATE(2958), 1, sym_argument_list, - ACTIONS(4841), 2, + ACTIONS(4825), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5882), 2, - anon_sym_into, - anon_sym_equals, - ACTIONS(7870), 2, + ACTIONS(5739), 2, + anon_sym_QMARK, + anon_sym_PIPE, + ACTIONS(8024), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7872), 2, + ACTIONS(8028), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7874), 2, + ACTIONS(8030), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7884), 2, + ACTIONS(8040), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7888), 2, + ACTIONS(8044), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7890), 2, + ACTIONS(8046), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - STATE(5273), 9, + ACTIONS(5737), 5, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, + anon_sym_into, + anon_sym_by, + STATE(5213), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -655759,7 +650353,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [160763] = 27, + [155363] = 34, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -655780,45 +650374,67 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4755), 1, - anon_sym_DASH_GT, - ACTIONS(4804), 1, + ACTIONS(4753), 1, anon_sym_LPAREN, - ACTIONS(4808), 1, + ACTIONS(4792), 1, anon_sym_DOT, - ACTIONS(4835), 1, + ACTIONS(4794), 1, + anon_sym_DASH_GT, + ACTIONS(4819), 1, anon_sym_LBRACK, - ACTIONS(4839), 1, + ACTIONS(4823), 1, anon_sym_BANG, - ACTIONS(6293), 1, + ACTIONS(6264), 1, anon_sym_switch, - ACTIONS(6307), 1, + ACTIONS(6278), 1, anon_sym_with, - ACTIONS(7926), 1, + ACTIONS(8032), 1, anon_sym_SLASH, - ACTIONS(7942), 1, + ACTIONS(8042), 1, + anon_sym_GT_GT, + ACTIONS(8048), 1, anon_sym_DOT_DOT, - STATE(2433), 1, + ACTIONS(8056), 1, + anon_sym_as, + ACTIONS(8058), 1, + anon_sym_is, + STATE(2419), 1, sym_bracketed_argument_list, - STATE(3035), 1, + STATE(2958), 1, sym_argument_list, - ACTIONS(4841), 2, + ACTIONS(4825), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7922), 2, + ACTIONS(8024), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(8028), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7924), 2, + ACTIONS(8030), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(5664), 6, - anon_sym_LT, - anon_sym_GT, + ACTIONS(8040), 2, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + ACTIONS(8044), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(8046), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(5739), 3, anon_sym_QMARK, anon_sym_PIPE, anon_sym_AMP, - anon_sym_GT_GT, - STATE(5274), 9, + ACTIONS(5737), 6, + anon_sym_CARET, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, + anon_sym_into, + anon_sym_by, + STATE(5214), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -655828,22 +650444,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5660), 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_as, - anon_sym_is, - [160874] = 21, + [155488] = 27, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -655864,31 +650465,45 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(7904), 1, - sym__identifier_token, - ACTIONS(7908), 1, + ACTIONS(4753), 1, anon_sym_LPAREN, - ACTIONS(7910), 1, + ACTIONS(4792), 1, + anon_sym_DOT, + ACTIONS(4794), 1, + anon_sym_DASH_GT, + ACTIONS(4819), 1, + anon_sym_LBRACK, + ACTIONS(4823), 1, anon_sym_BANG, - ACTIONS(7914), 1, - anon_sym_SQUOTE, - ACTIONS(7916), 1, - sym_integer_literal, - STATE(6452), 1, - sym__reserved_identifier, - STATE(6520), 1, - sym__preproc_expression, - ACTIONS(7912), 2, - anon_sym_true, - anon_sym_false, - STATE(6542), 6, - sym_character_literal, - sym_boolean_literal, - sym_identifier, - sym_preproc_parenthesized_expression, - sym_preproc_unary_expression, - sym_preproc_binary_expression, - STATE(5275), 9, + ACTIONS(6264), 1, + anon_sym_switch, + ACTIONS(6278), 1, + anon_sym_with, + ACTIONS(8032), 1, + anon_sym_SLASH, + ACTIONS(8048), 1, + anon_sym_DOT_DOT, + STATE(2419), 1, + sym_bracketed_argument_list, + STATE(2958), 1, + sym_argument_list, + ACTIONS(4825), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(8028), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(8030), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(5739), 6, + anon_sym_LT, + anon_sym_GT, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT_GT, + STATE(5215), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -655898,30 +650513,22 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(7906), 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(5737), 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_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, - [160973] = 40, + anon_sym_as, + anon_sym_is, + [155599] = 33, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -655942,73 +650549,66 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4100), 1, + ACTIONS(4753), 1, + anon_sym_LPAREN, + ACTIONS(4792), 1, anon_sym_DOT, - ACTIONS(4102), 1, + ACTIONS(4794), 1, anon_sym_DASH_GT, - ACTIONS(5264), 1, - anon_sym_LPAREN, - ACTIONS(5304), 1, - anon_sym_BANG, - ACTIONS(5573), 1, + ACTIONS(4819), 1, anon_sym_LBRACK, - ACTIONS(6343), 1, + ACTIONS(4823), 1, + anon_sym_BANG, + ACTIONS(6264), 1, anon_sym_switch, - ACTIONS(6357), 1, + ACTIONS(6278), 1, anon_sym_with, - ACTIONS(6813), 1, - anon_sym_as, - ACTIONS(7139), 1, - anon_sym_QMARK, - ACTIONS(7145), 1, + ACTIONS(8032), 1, anon_sym_SLASH, - ACTIONS(7147), 1, - anon_sym_CARET, - ACTIONS(7149), 1, - anon_sym_PIPE, - ACTIONS(7151), 1, - anon_sym_AMP, - ACTIONS(7155), 1, + ACTIONS(8042), 1, anon_sym_GT_GT, - ACTIONS(7161), 1, + ACTIONS(8048), 1, anon_sym_DOT_DOT, - ACTIONS(7163), 1, - anon_sym_AMP_AMP, - ACTIONS(7165), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7167), 1, - anon_sym_QMARK_QMARK, - ACTIONS(7169), 1, + ACTIONS(8056), 1, + anon_sym_as, + ACTIONS(8058), 1, anon_sym_is, - STATE(2485), 1, + STATE(2419), 1, sym_bracketed_argument_list, - STATE(3487), 1, + STATE(2958), 1, sym_argument_list, - ACTIONS(5306), 2, + ACTIONS(4825), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7137), 2, + ACTIONS(8024), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7141), 2, + ACTIONS(8028), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7143), 2, + ACTIONS(8030), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7153), 2, + ACTIONS(8040), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7157), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(7159), 2, + ACTIONS(8046), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(8136), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - STATE(5276), 9, + ACTIONS(5739), 3, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_AMP, + ACTIONS(5737), 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(5216), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -656018,7 +650618,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [161110] = 34, + [155722] = 37, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -656039,67 +650639,70 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4755), 1, - anon_sym_DASH_GT, - ACTIONS(4804), 1, + ACTIONS(4753), 1, anon_sym_LPAREN, - ACTIONS(4808), 1, + ACTIONS(4792), 1, anon_sym_DOT, - ACTIONS(4835), 1, + ACTIONS(4794), 1, + anon_sym_DASH_GT, + ACTIONS(4819), 1, anon_sym_LBRACK, - ACTIONS(4839), 1, + ACTIONS(4823), 1, anon_sym_BANG, - ACTIONS(6293), 1, + ACTIONS(5739), 1, + anon_sym_QMARK, + ACTIONS(6264), 1, anon_sym_switch, - ACTIONS(6307), 1, + ACTIONS(6278), 1, anon_sym_with, - ACTIONS(7902), 1, - anon_sym_DOT_DOT, - ACTIONS(8076), 1, + ACTIONS(8032), 1, anon_sym_SLASH, - ACTIONS(8086), 1, + ACTIONS(8034), 1, + anon_sym_CARET, + ACTIONS(8036), 1, + anon_sym_PIPE, + ACTIONS(8038), 1, + anon_sym_AMP, + ACTIONS(8042), 1, anon_sym_GT_GT, - ACTIONS(8098), 1, + ACTIONS(8048), 1, + anon_sym_DOT_DOT, + ACTIONS(8056), 1, anon_sym_as, - ACTIONS(8100), 1, + ACTIONS(8058), 1, anon_sym_is, - STATE(2433), 1, + STATE(2419), 1, sym_bracketed_argument_list, - STATE(3035), 1, + STATE(2958), 1, sym_argument_list, - ACTIONS(4841), 2, + ACTIONS(4825), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(8068), 2, + ACTIONS(8024), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(8072), 2, + ACTIONS(8028), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(8074), 2, + ACTIONS(8030), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8084), 2, + ACTIONS(8040), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(8088), 2, + ACTIONS(8044), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(8090), 2, + ACTIONS(8046), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5664), 3, - anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_AMP, - ACTIONS(5660), 6, - anon_sym_CARET, + ACTIONS(5737), 5, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_QMARK_QMARK, anon_sym_into, - anon_sym_on, - STATE(5277), 9, + anon_sym_by, + STATE(5217), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -656109,7 +650712,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [161235] = 35, + [155853] = 38, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -656130,68 +650733,71 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4755), 1, - anon_sym_DASH_GT, - ACTIONS(4804), 1, + ACTIONS(4753), 1, anon_sym_LPAREN, - ACTIONS(4808), 1, + ACTIONS(4792), 1, anon_sym_DOT, - ACTIONS(4835), 1, + ACTIONS(4794), 1, + anon_sym_DASH_GT, + ACTIONS(4819), 1, anon_sym_LBRACK, - ACTIONS(4839), 1, + ACTIONS(4823), 1, anon_sym_BANG, - ACTIONS(6293), 1, + ACTIONS(5739), 1, + anon_sym_QMARK, + ACTIONS(6264), 1, anon_sym_switch, - ACTIONS(6307), 1, + ACTIONS(6278), 1, anon_sym_with, - ACTIONS(7876), 1, + ACTIONS(8032), 1, anon_sym_SLASH, - ACTIONS(7882), 1, + ACTIONS(8034), 1, + anon_sym_CARET, + ACTIONS(8036), 1, + anon_sym_PIPE, + ACTIONS(8038), 1, anon_sym_AMP, - ACTIONS(7886), 1, + ACTIONS(8042), 1, anon_sym_GT_GT, - ACTIONS(7892), 1, + ACTIONS(8048), 1, anon_sym_DOT_DOT, - ACTIONS(7896), 1, + ACTIONS(8050), 1, + anon_sym_AMP_AMP, + ACTIONS(8056), 1, anon_sym_as, - ACTIONS(7898), 1, + ACTIONS(8058), 1, anon_sym_is, - STATE(2433), 1, + STATE(2419), 1, sym_bracketed_argument_list, - STATE(3035), 1, + STATE(2958), 1, sym_argument_list, - ACTIONS(4841), 2, + ACTIONS(4825), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5664), 2, - anon_sym_QMARK, - anon_sym_PIPE, - ACTIONS(7870), 2, + ACTIONS(8024), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7872), 2, + ACTIONS(8028), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7874), 2, + ACTIONS(8030), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7884), 2, + ACTIONS(8040), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7888), 2, + ACTIONS(8044), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7890), 2, + ACTIONS(8046), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5660), 6, - anon_sym_CARET, - anon_sym_AMP_AMP, + ACTIONS(5737), 4, anon_sym_PIPE_PIPE, anon_sym_QMARK_QMARK, anon_sym_into, - anon_sym_equals, - STATE(5278), 9, + anon_sym_by, + STATE(5218), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -656201,7 +650807,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [161362] = 23, + [155986] = 21, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -656222,33 +650828,31 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(3881), 1, - anon_sym_LBRACE, - ACTIONS(3897), 1, - sym_discard, - ACTIONS(6823), 1, + ACTIONS(7846), 1, sym__identifier_token, - ACTIONS(8102), 1, + ACTIONS(7850), 1, anon_sym_LPAREN, - STATE(2571), 1, + ACTIONS(7852), 1, + anon_sym_BANG, + ACTIONS(7856), 1, + anon_sym_SQUOTE, + ACTIONS(7858), 1, + sym_integer_literal, + STATE(6436), 1, sym__reserved_identifier, - STATE(3463), 1, - sym_parenthesized_variable_designation, - STATE(3479), 1, + STATE(6595), 1, + sym__preproc_expression, + ACTIONS(7854), 2, + anon_sym_true, + anon_sym_false, + STATE(6482), 6, + sym_character_literal, + sym_boolean_literal, sym_identifier, - STATE(3496), 1, - sym__variable_designation, - STATE(5691), 1, - sym_property_pattern_clause, - ACTIONS(3915), 2, - anon_sym_and, - anon_sym_or, - ACTIONS(3913), 4, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_RBRACE, - STATE(5279), 9, + sym_preproc_parenthesized_expression, + sym_preproc_unary_expression, + sym_preproc_binary_expression, + STATE(5219), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -656258,7 +650862,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(6825), 22, + ACTIONS(7848), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -656281,7 +650885,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [161465] = 29, + [156085] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -656302,49 +650906,73 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4755), 1, - anon_sym_DASH_GT, - ACTIONS(4804), 1, + ACTIONS(4753), 1, anon_sym_LPAREN, - ACTIONS(4808), 1, + ACTIONS(4792), 1, anon_sym_DOT, - ACTIONS(4835), 1, + ACTIONS(4794), 1, + anon_sym_DASH_GT, + ACTIONS(4819), 1, anon_sym_LBRACK, - ACTIONS(4839), 1, + ACTIONS(4823), 1, anon_sym_BANG, - ACTIONS(6293), 1, + ACTIONS(6264), 1, anon_sym_switch, - ACTIONS(6307), 1, + ACTIONS(6278), 1, anon_sym_with, - ACTIONS(7926), 1, - anon_sym_SLASH, + ACTIONS(6327), 1, + anon_sym_as, ACTIONS(7936), 1, - anon_sym_GT_GT, + anon_sym_QMARK, ACTIONS(7942), 1, + anon_sym_SLASH, + ACTIONS(7944), 1, + anon_sym_CARET, + ACTIONS(7946), 1, + anon_sym_PIPE, + ACTIONS(7948), 1, + anon_sym_AMP, + ACTIONS(7952), 1, + anon_sym_GT_GT, + ACTIONS(7958), 1, anon_sym_DOT_DOT, - STATE(2433), 1, + ACTIONS(7960), 1, + anon_sym_AMP_AMP, + ACTIONS(7962), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7964), 1, + anon_sym_QMARK_QMARK, + ACTIONS(7966), 1, + anon_sym_is, + STATE(2419), 1, sym_bracketed_argument_list, - STATE(3035), 1, + STATE(2958), 1, sym_argument_list, - ACTIONS(4841), 2, + ACTIONS(4825), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7922), 2, + ACTIONS(5709), 2, + anon_sym_EQ_GT, + anon_sym_into, + ACTIONS(7934), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(7938), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7924), 2, + ACTIONS(7940), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7934), 2, + ACTIONS(7950), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(5664), 5, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_AMP, - STATE(5280), 9, + ACTIONS(7954), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(7956), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + STATE(5220), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -656354,20 +650982,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5660), 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_as, - anon_sym_is, - [161580] = 14, + [156222] = 41, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -656388,57 +651003,84 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8138), 1, - anon_sym_and, - STATE(5281), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - ACTIONS(6069), 11, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, + ACTIONS(4042), 1, + anon_sym_DOT, + ACTIONS(4044), 1, + anon_sym_DASH_GT, + ACTIONS(5257), 1, + anon_sym_LPAREN, + ACTIONS(5302), 1, anon_sym_BANG, - anon_sym_PLUS, - anon_sym_DASH, + ACTIONS(5549), 1, + anon_sym_LBRACK, + ACTIONS(6355), 1, + anon_sym_switch, + ACTIONS(6369), 1, + anon_sym_with, + ACTIONS(6657), 1, anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, + ACTIONS(6661), 1, anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(6067), 25, - anon_sym_LBRACK, + ACTIONS(6665), 1, + anon_sym_AMP, + ACTIONS(6673), 1, + anon_sym_CARET, + ACTIONS(6675), 1, + anon_sym_PIPE, + ACTIONS(6677), 1, + anon_sym_AMP_AMP, + ACTIONS(6679), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6681), 1, + anon_sym_QMARK_QMARK, + ACTIONS(7185), 1, + anon_sym_DOT_DOT, + ACTIONS(7195), 1, + anon_sym_as, + ACTIONS(7197), 1, + anon_sym_is, + ACTIONS(7209), 1, + anon_sym_QMARK, + ACTIONS(7211), 1, anon_sym_COLON, - anon_sym_LPAREN, + ACTIONS(7839), 1, + anon_sym_COMMA, + STATE(2467), 1, + sym_bracketed_argument_list, + STATE(3381), 1, + sym_argument_list, + ACTIONS(5304), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + ACTIONS(6653), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6655), 2, anon_sym_STAR, anon_sym_PERCENT, - anon_sym_CARET, + ACTIONS(6659), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, + ACTIONS(6663), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(6667), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + ACTIONS(6669), 2, 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_as, - anon_sym_is, - anon_sym_DASH_GT, - anon_sym_with, - [161665] = 27, + 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, + [156361] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -656459,45 +651101,73 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4755), 1, - anon_sym_DASH_GT, - ACTIONS(4804), 1, + ACTIONS(4753), 1, anon_sym_LPAREN, - ACTIONS(4808), 1, + ACTIONS(4792), 1, anon_sym_DOT, - ACTIONS(4835), 1, + ACTIONS(4794), 1, + anon_sym_DASH_GT, + ACTIONS(4819), 1, anon_sym_LBRACK, - ACTIONS(4839), 1, + ACTIONS(4823), 1, anon_sym_BANG, - ACTIONS(6293), 1, + ACTIONS(6264), 1, anon_sym_switch, - ACTIONS(6307), 1, + ACTIONS(6278), 1, anon_sym_with, - ACTIONS(7902), 1, - anon_sym_DOT_DOT, - ACTIONS(8076), 1, + ACTIONS(7872), 1, + anon_sym_QMARK, + ACTIONS(7878), 1, anon_sym_SLASH, - STATE(2433), 1, + ACTIONS(7880), 1, + anon_sym_CARET, + ACTIONS(7882), 1, + anon_sym_PIPE, + ACTIONS(7884), 1, + anon_sym_AMP, + ACTIONS(7888), 1, + anon_sym_GT_GT, + ACTIONS(7894), 1, + anon_sym_DOT_DOT, + ACTIONS(7896), 1, + anon_sym_AMP_AMP, + ACTIONS(7898), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7900), 1, + anon_sym_QMARK_QMARK, + ACTIONS(7902), 1, + anon_sym_as, + ACTIONS(7904), 1, + anon_sym_is, + STATE(2419), 1, sym_bracketed_argument_list, - STATE(3035), 1, + STATE(2958), 1, sym_argument_list, - ACTIONS(4841), 2, + ACTIONS(4825), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(8072), 2, + ACTIONS(5733), 2, + anon_sym_into, + anon_sym_equals, + ACTIONS(7870), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(7874), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(8074), 2, + ACTIONS(7876), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(5664), 6, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT_GT, - STATE(5282), 9, + ACTIONS(7886), 2, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + ACTIONS(7890), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(7892), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + STATE(5222), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -656507,22 +651177,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5660), 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_on, - anon_sym_as, - anon_sym_is, - [161776] = 40, + [156498] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -656543,73 +651198,73 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4755), 1, - anon_sym_DASH_GT, - ACTIONS(4804), 1, + ACTIONS(4753), 1, anon_sym_LPAREN, - ACTIONS(4808), 1, + ACTIONS(4792), 1, anon_sym_DOT, - ACTIONS(4835), 1, + ACTIONS(4794), 1, + anon_sym_DASH_GT, + ACTIONS(4819), 1, anon_sym_LBRACK, - ACTIONS(4839), 1, + ACTIONS(4823), 1, anon_sym_BANG, - ACTIONS(6293), 1, + ACTIONS(6264), 1, anon_sym_switch, - ACTIONS(6307), 1, + ACTIONS(6278), 1, anon_sym_with, - ACTIONS(6393), 1, - anon_sym_as, - ACTIONS(7920), 1, + ACTIONS(7872), 1, anon_sym_QMARK, - ACTIONS(7926), 1, + ACTIONS(7878), 1, anon_sym_SLASH, - ACTIONS(7928), 1, + ACTIONS(7880), 1, anon_sym_CARET, - ACTIONS(7930), 1, + ACTIONS(7882), 1, anon_sym_PIPE, - ACTIONS(7932), 1, + ACTIONS(7884), 1, anon_sym_AMP, - ACTIONS(7936), 1, + ACTIONS(7888), 1, anon_sym_GT_GT, - ACTIONS(7942), 1, + ACTIONS(7894), 1, anon_sym_DOT_DOT, - ACTIONS(7944), 1, + ACTIONS(7896), 1, anon_sym_AMP_AMP, - ACTIONS(7946), 1, + ACTIONS(7898), 1, anon_sym_PIPE_PIPE, - ACTIONS(7948), 1, + ACTIONS(7900), 1, anon_sym_QMARK_QMARK, - ACTIONS(7950), 1, + ACTIONS(7902), 1, + anon_sym_as, + ACTIONS(7904), 1, anon_sym_is, - STATE(2433), 1, + STATE(2419), 1, sym_bracketed_argument_list, - STATE(3035), 1, + STATE(2958), 1, sym_argument_list, - ACTIONS(4841), 2, + ACTIONS(4825), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5899), 2, - anon_sym_EQ_GT, + ACTIONS(5855), 2, anon_sym_into, - ACTIONS(7918), 2, + anon_sym_equals, + ACTIONS(7870), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7922), 2, + ACTIONS(7874), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7924), 2, + ACTIONS(7876), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7934), 2, + ACTIONS(7886), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7938), 2, + ACTIONS(7890), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7940), 2, + ACTIONS(7892), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - STATE(5283), 9, + STATE(5223), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -656619,7 +651274,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [161913] = 33, + [156635] = 35, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -656640,66 +651295,68 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4755), 1, - anon_sym_DASH_GT, - ACTIONS(4804), 1, + ACTIONS(4753), 1, anon_sym_LPAREN, - ACTIONS(4808), 1, + ACTIONS(4792), 1, anon_sym_DOT, - ACTIONS(4835), 1, + ACTIONS(4794), 1, + anon_sym_DASH_GT, + ACTIONS(4819), 1, anon_sym_LBRACK, - ACTIONS(4839), 1, + ACTIONS(4823), 1, anon_sym_BANG, - ACTIONS(6293), 1, + ACTIONS(6264), 1, anon_sym_switch, - ACTIONS(6307), 1, + ACTIONS(6278), 1, anon_sym_with, - ACTIONS(7902), 1, - anon_sym_DOT_DOT, - ACTIONS(8076), 1, + ACTIONS(6327), 1, + anon_sym_as, + ACTIONS(7942), 1, anon_sym_SLASH, - ACTIONS(8086), 1, + ACTIONS(7948), 1, + anon_sym_AMP, + ACTIONS(7952), 1, anon_sym_GT_GT, - ACTIONS(8098), 1, - anon_sym_as, - ACTIONS(8100), 1, + ACTIONS(7958), 1, + anon_sym_DOT_DOT, + ACTIONS(7966), 1, anon_sym_is, - STATE(2433), 1, + STATE(2419), 1, sym_bracketed_argument_list, - STATE(3035), 1, + STATE(2958), 1, sym_argument_list, - ACTIONS(4841), 2, + ACTIONS(4825), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(8068), 2, + ACTIONS(5739), 2, + anon_sym_QMARK, + anon_sym_PIPE, + ACTIONS(7934), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(8072), 2, + ACTIONS(7938), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(8074), 2, + ACTIONS(7940), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8084), 2, + ACTIONS(7950), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(8090), 2, + ACTIONS(7954), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(7956), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5664), 3, - anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_AMP, - ACTIONS(5660), 8, + ACTIONS(5737), 6, 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, - anon_sym_on, - STATE(5284), 9, + STATE(5224), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -656709,7 +651366,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [162036] = 40, + [156762] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -656730,73 +651387,73 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4755), 1, - anon_sym_DASH_GT, - ACTIONS(4804), 1, + ACTIONS(4753), 1, anon_sym_LPAREN, - ACTIONS(4808), 1, + ACTIONS(4792), 1, anon_sym_DOT, - ACTIONS(4835), 1, + ACTIONS(4794), 1, + anon_sym_DASH_GT, + ACTIONS(4819), 1, anon_sym_LBRACK, - ACTIONS(4839), 1, + ACTIONS(4823), 1, anon_sym_BANG, - ACTIONS(5664), 1, - anon_sym_QMARK, - ACTIONS(6293), 1, + ACTIONS(6264), 1, anon_sym_switch, - ACTIONS(6307), 1, + ACTIONS(6278), 1, anon_sym_with, - ACTIONS(7962), 1, + ACTIONS(7872), 1, + anon_sym_QMARK, + ACTIONS(7878), 1, anon_sym_SLASH, - ACTIONS(7964), 1, + ACTIONS(7880), 1, anon_sym_CARET, - ACTIONS(7966), 1, + ACTIONS(7882), 1, anon_sym_PIPE, - ACTIONS(7968), 1, + ACTIONS(7884), 1, anon_sym_AMP, - ACTIONS(7972), 1, + ACTIONS(7888), 1, anon_sym_GT_GT, - ACTIONS(7978), 1, + ACTIONS(7894), 1, anon_sym_DOT_DOT, - ACTIONS(7980), 1, + ACTIONS(7896), 1, anon_sym_AMP_AMP, - ACTIONS(7982), 1, + ACTIONS(7898), 1, anon_sym_PIPE_PIPE, - ACTIONS(7984), 1, + ACTIONS(7900), 1, anon_sym_QMARK_QMARK, - ACTIONS(7986), 1, + ACTIONS(7902), 1, anon_sym_as, - ACTIONS(7988), 1, + ACTIONS(7904), 1, anon_sym_is, - STATE(2433), 1, + STATE(2419), 1, sym_bracketed_argument_list, - STATE(3035), 1, + STATE(2958), 1, sym_argument_list, - ACTIONS(4841), 2, + ACTIONS(4825), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5660), 2, + ACTIONS(5801), 2, anon_sym_into, - anon_sym_by, - ACTIONS(7954), 2, + anon_sym_equals, + ACTIONS(7870), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7958), 2, + ACTIONS(7874), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7960), 2, + ACTIONS(7876), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7970), 2, + ACTIONS(7886), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7974), 2, + ACTIONS(7890), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7976), 2, + ACTIONS(7892), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - STATE(5285), 9, + STATE(5225), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -656806,7 +651463,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [162173] = 26, + [156899] = 22, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -656827,44 +651484,36 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4755), 1, - anon_sym_DASH_GT, - ACTIONS(4804), 1, + ACTIONS(4753), 1, anon_sym_LPAREN, - ACTIONS(4808), 1, + ACTIONS(4792), 1, anon_sym_DOT, - ACTIONS(4835), 1, + ACTIONS(4794), 1, + anon_sym_DASH_GT, + ACTIONS(4819), 1, anon_sym_LBRACK, - ACTIONS(4839), 1, + ACTIONS(4823), 1, anon_sym_BANG, - ACTIONS(6293), 1, - anon_sym_switch, - ACTIONS(6307), 1, - anon_sym_with, - ACTIONS(7926), 1, - anon_sym_SLASH, - ACTIONS(7942), 1, + ACTIONS(7894), 1, anon_sym_DOT_DOT, - STATE(2433), 1, + STATE(2419), 1, sym_bracketed_argument_list, - STATE(3035), 1, + STATE(2958), 1, sym_argument_list, - ACTIONS(4841), 2, + ACTIONS(4825), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7924), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(5664), 8, + ACTIONS(1161), 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(5286), 9, + STATE(5226), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -656874,7 +651523,9 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5660), 14, + ACTIONS(1147), 18, + anon_sym_STAR, + anon_sym_PERCENT, anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT_GT, @@ -656882,14 +651533,16 @@ 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_into, + anon_sym_equals, anon_sym_as, anon_sym_is, - [162282] = 22, + anon_sym_with, + [157000] = 36, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -656910,65 +651563,79 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4755), 1, - anon_sym_DASH_GT, - ACTIONS(4804), 1, + ACTIONS(4753), 1, anon_sym_LPAREN, - ACTIONS(4808), 1, + ACTIONS(4792), 1, anon_sym_DOT, - ACTIONS(4835), 1, + ACTIONS(4794), 1, + anon_sym_DASH_GT, + ACTIONS(4819), 1, anon_sym_LBRACK, - ACTIONS(4839), 1, + ACTIONS(4823), 1, anon_sym_BANG, + ACTIONS(6264), 1, + anon_sym_switch, + ACTIONS(6278), 1, + anon_sym_with, + ACTIONS(6327), 1, + anon_sym_as, ACTIONS(7942), 1, + anon_sym_SLASH, + ACTIONS(7944), 1, + anon_sym_CARET, + ACTIONS(7948), 1, + anon_sym_AMP, + ACTIONS(7952), 1, + anon_sym_GT_GT, + ACTIONS(7958), 1, anon_sym_DOT_DOT, - STATE(2433), 1, + ACTIONS(7966), 1, + anon_sym_is, + STATE(2419), 1, sym_bracketed_argument_list, - STATE(3035), 1, + STATE(2958), 1, sym_argument_list, - ACTIONS(4841), 2, + ACTIONS(4825), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1223), 9, + ACTIONS(5739), 2, + anon_sym_QMARK, + anon_sym_PIPE, + ACTIONS(7934), 2, anon_sym_LT, anon_sym_GT, - anon_sym_QMARK, + ACTIONS(7938), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT_GT, - STATE(5287), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - ACTIONS(1221), 18, + ACTIONS(7940), 2, anon_sym_STAR, anon_sym_PERCENT, - anon_sym_CARET, + ACTIONS(7950), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, + ACTIONS(7954), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + ACTIONS(7956), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, + ACTIONS(5737), 5, anon_sym_EQ_GT, - 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, - [162383] = 37, + STATE(5227), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + [157129] = 34, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -656989,70 +651656,67 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4755), 1, - anon_sym_DASH_GT, - ACTIONS(4804), 1, + ACTIONS(4753), 1, anon_sym_LPAREN, - ACTIONS(4808), 1, + ACTIONS(4792), 1, anon_sym_DOT, - ACTIONS(4835), 1, + ACTIONS(4794), 1, + anon_sym_DASH_GT, + ACTIONS(4819), 1, anon_sym_LBRACK, - ACTIONS(4839), 1, + ACTIONS(4823), 1, anon_sym_BANG, - ACTIONS(5664), 1, - anon_sym_QMARK, - ACTIONS(6293), 1, + ACTIONS(6264), 1, anon_sym_switch, - ACTIONS(6307), 1, + ACTIONS(6278), 1, anon_sym_with, - ACTIONS(7902), 1, - anon_sym_DOT_DOT, - ACTIONS(8076), 1, + ACTIONS(6327), 1, + anon_sym_as, + ACTIONS(7942), 1, anon_sym_SLASH, - ACTIONS(8078), 1, - anon_sym_CARET, - ACTIONS(8080), 1, - anon_sym_PIPE, - ACTIONS(8082), 1, - anon_sym_AMP, - ACTIONS(8086), 1, + ACTIONS(7952), 1, anon_sym_GT_GT, - ACTIONS(8098), 1, - anon_sym_as, - ACTIONS(8100), 1, + ACTIONS(7958), 1, + anon_sym_DOT_DOT, + ACTIONS(7966), 1, anon_sym_is, - STATE(2433), 1, + STATE(2419), 1, sym_bracketed_argument_list, - STATE(3035), 1, + STATE(2958), 1, sym_argument_list, - ACTIONS(4841), 2, + ACTIONS(4825), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(8068), 2, + ACTIONS(7934), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(8072), 2, + ACTIONS(7938), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(8074), 2, + ACTIONS(7940), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8084), 2, + ACTIONS(7950), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(8088), 2, + ACTIONS(7954), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(8090), 2, + ACTIONS(7956), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5660), 5, + ACTIONS(5739), 3, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_AMP, + ACTIONS(5737), 6, + anon_sym_CARET, + anon_sym_EQ_GT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_QMARK_QMARK, anon_sym_into, - anon_sym_on, - STATE(5288), 9, + STATE(5228), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -657062,7 +651726,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [162514] = 38, + [157254] = 33, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -657083,71 +651747,66 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4755), 1, - anon_sym_DASH_GT, - ACTIONS(4804), 1, + ACTIONS(4753), 1, anon_sym_LPAREN, - ACTIONS(4808), 1, + ACTIONS(4792), 1, anon_sym_DOT, - ACTIONS(4835), 1, + ACTIONS(4794), 1, + anon_sym_DASH_GT, + ACTIONS(4819), 1, anon_sym_LBRACK, - ACTIONS(4839), 1, + ACTIONS(4823), 1, anon_sym_BANG, - ACTIONS(5664), 1, - anon_sym_QMARK, - ACTIONS(6293), 1, + ACTIONS(6264), 1, anon_sym_switch, - ACTIONS(6307), 1, + ACTIONS(6278), 1, anon_sym_with, - ACTIONS(7902), 1, - anon_sym_DOT_DOT, - ACTIONS(8076), 1, + ACTIONS(6327), 1, + anon_sym_as, + ACTIONS(7942), 1, anon_sym_SLASH, - ACTIONS(8078), 1, - anon_sym_CARET, - ACTIONS(8080), 1, - anon_sym_PIPE, - ACTIONS(8082), 1, - anon_sym_AMP, - ACTIONS(8086), 1, + ACTIONS(7952), 1, anon_sym_GT_GT, - ACTIONS(8092), 1, - anon_sym_AMP_AMP, - ACTIONS(8098), 1, - anon_sym_as, - ACTIONS(8100), 1, + ACTIONS(7958), 1, + anon_sym_DOT_DOT, + ACTIONS(7966), 1, anon_sym_is, - STATE(2433), 1, + STATE(2419), 1, sym_bracketed_argument_list, - STATE(3035), 1, + STATE(2958), 1, sym_argument_list, - ACTIONS(4841), 2, + ACTIONS(4825), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(8068), 2, + ACTIONS(7934), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(8072), 2, + ACTIONS(7938), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(8074), 2, + ACTIONS(7940), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8084), 2, + ACTIONS(7950), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(8088), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(8090), 2, + ACTIONS(7956), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5660), 4, + ACTIONS(5739), 3, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_AMP, + ACTIONS(5737), 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, - anon_sym_on, - STATE(5289), 9, + STATE(5229), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -657157,7 +651816,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [162647] = 40, + [157377] = 37, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -657178,73 +651837,70 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4755), 1, - anon_sym_DASH_GT, - ACTIONS(4804), 1, + ACTIONS(4753), 1, anon_sym_LPAREN, - ACTIONS(4808), 1, + ACTIONS(4792), 1, anon_sym_DOT, - ACTIONS(4835), 1, + ACTIONS(4794), 1, + anon_sym_DASH_GT, + ACTIONS(4819), 1, anon_sym_LBRACK, - ACTIONS(4839), 1, + ACTIONS(4823), 1, anon_sym_BANG, - ACTIONS(6293), 1, + ACTIONS(5739), 1, + anon_sym_QMARK, + ACTIONS(6264), 1, anon_sym_switch, - ACTIONS(6307), 1, + ACTIONS(6278), 1, anon_sym_with, - ACTIONS(6393), 1, + ACTIONS(6327), 1, anon_sym_as, - ACTIONS(7920), 1, - anon_sym_QMARK, - ACTIONS(7926), 1, + ACTIONS(7942), 1, anon_sym_SLASH, - ACTIONS(7928), 1, + ACTIONS(7944), 1, anon_sym_CARET, - ACTIONS(7930), 1, + ACTIONS(7946), 1, anon_sym_PIPE, - ACTIONS(7932), 1, + ACTIONS(7948), 1, anon_sym_AMP, - ACTIONS(7936), 1, + ACTIONS(7952), 1, anon_sym_GT_GT, - ACTIONS(7942), 1, + ACTIONS(7958), 1, anon_sym_DOT_DOT, - ACTIONS(7944), 1, - anon_sym_AMP_AMP, - ACTIONS(7946), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7948), 1, - anon_sym_QMARK_QMARK, - ACTIONS(7950), 1, + ACTIONS(7966), 1, anon_sym_is, - STATE(2433), 1, + STATE(2419), 1, sym_bracketed_argument_list, - STATE(3035), 1, + STATE(2958), 1, sym_argument_list, - ACTIONS(4841), 2, + ACTIONS(4825), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5858), 2, - anon_sym_EQ_GT, - anon_sym_into, - ACTIONS(7918), 2, + ACTIONS(7934), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7922), 2, + ACTIONS(7938), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7924), 2, + ACTIONS(7940), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7934), 2, + ACTIONS(7950), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7938), 2, + ACTIONS(7954), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7940), 2, + ACTIONS(7956), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - STATE(5290), 9, + ACTIONS(5737), 5, + anon_sym_EQ_GT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, + anon_sym_into, + STATE(5230), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -657254,7 +651910,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [162784] = 40, + [157508] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -657275,73 +651931,143 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4100), 1, + ACTIONS(7918), 1, + anon_sym_and, + ACTIONS(7920), 1, + anon_sym_or, + 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, + ACTIONS(6109), 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(4102), 1, + ACTIONS(6107), 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_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, - ACTIONS(5264), 1, + anon_sym_with, + [157595] = 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(4753), 1, anon_sym_LPAREN, - ACTIONS(5304), 1, - anon_sym_BANG, - ACTIONS(5573), 1, + ACTIONS(4792), 1, + anon_sym_DOT, + ACTIONS(4794), 1, + anon_sym_DASH_GT, + ACTIONS(4819), 1, anon_sym_LBRACK, - ACTIONS(6343), 1, + ACTIONS(4823), 1, + anon_sym_BANG, + ACTIONS(5739), 1, + anon_sym_QMARK, + ACTIONS(6264), 1, anon_sym_switch, - ACTIONS(6357), 1, + ACTIONS(6278), 1, anon_sym_with, - ACTIONS(6813), 1, + ACTIONS(6327), 1, anon_sym_as, - ACTIONS(7169), 1, - anon_sym_is, - ACTIONS(7442), 1, + ACTIONS(7942), 1, anon_sym_SLASH, - ACTIONS(7444), 1, + ACTIONS(7944), 1, anon_sym_CARET, - ACTIONS(7446), 1, + ACTIONS(7946), 1, anon_sym_PIPE, - ACTIONS(7448), 1, + ACTIONS(7948), 1, anon_sym_AMP, - ACTIONS(7452), 1, + ACTIONS(7952), 1, anon_sym_GT_GT, - ACTIONS(7458), 1, + ACTIONS(7958), 1, anon_sym_DOT_DOT, - ACTIONS(7621), 1, + ACTIONS(7960), 1, anon_sym_AMP_AMP, - ACTIONS(7623), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7625), 1, - anon_sym_QMARK_QMARK, - ACTIONS(7659), 1, - anon_sym_QMARK, - STATE(2485), 1, + ACTIONS(7966), 1, + anon_sym_is, + STATE(2419), 1, sym_bracketed_argument_list, - STATE(3487), 1, + STATE(2958), 1, sym_argument_list, - ACTIONS(5306), 2, + ACTIONS(4825), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7436), 2, + ACTIONS(7934), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7438), 2, + ACTIONS(7938), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7440), 2, + ACTIONS(7940), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7450), 2, + ACTIONS(7950), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7454), 2, + ACTIONS(7954), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7456), 2, + ACTIONS(7956), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(7783), 2, - anon_sym_SEMI, - anon_sym_COMMA, - STATE(5291), 9, + ACTIONS(5737), 4, + anon_sym_EQ_GT, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, + anon_sym_into, + STATE(5232), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -657351,7 +652077,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [162921] = 40, + [157728] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -657372,73 +652098,73 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4755), 1, - anon_sym_DASH_GT, - ACTIONS(4804), 1, + ACTIONS(4753), 1, anon_sym_LPAREN, - ACTIONS(4808), 1, + ACTIONS(4792), 1, anon_sym_DOT, - ACTIONS(4835), 1, + ACTIONS(4794), 1, + anon_sym_DASH_GT, + ACTIONS(4819), 1, anon_sym_LBRACK, - ACTIONS(4839), 1, + ACTIONS(4823), 1, anon_sym_BANG, - ACTIONS(5664), 1, + ACTIONS(5739), 1, anon_sym_QMARK, - ACTIONS(6293), 1, + ACTIONS(6264), 1, anon_sym_switch, - ACTIONS(6307), 1, + ACTIONS(6278), 1, anon_sym_with, - ACTIONS(7902), 1, - anon_sym_DOT_DOT, - ACTIONS(8076), 1, + ACTIONS(6327), 1, + anon_sym_as, + ACTIONS(7942), 1, anon_sym_SLASH, - ACTIONS(8078), 1, + ACTIONS(7944), 1, anon_sym_CARET, - ACTIONS(8080), 1, + ACTIONS(7946), 1, anon_sym_PIPE, - ACTIONS(8082), 1, + ACTIONS(7948), 1, anon_sym_AMP, - ACTIONS(8086), 1, + ACTIONS(7952), 1, anon_sym_GT_GT, - ACTIONS(8092), 1, + ACTIONS(7958), 1, + anon_sym_DOT_DOT, + ACTIONS(7960), 1, anon_sym_AMP_AMP, - ACTIONS(8094), 1, + ACTIONS(7962), 1, anon_sym_PIPE_PIPE, - ACTIONS(8096), 1, + ACTIONS(7964), 1, anon_sym_QMARK_QMARK, - ACTIONS(8098), 1, - anon_sym_as, - ACTIONS(8100), 1, + ACTIONS(7966), 1, anon_sym_is, - STATE(2433), 1, + STATE(2419), 1, sym_bracketed_argument_list, - STATE(3035), 1, + STATE(2958), 1, sym_argument_list, - ACTIONS(4841), 2, + ACTIONS(4825), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5660), 2, + ACTIONS(5737), 2, + anon_sym_EQ_GT, anon_sym_into, - anon_sym_on, - ACTIONS(8068), 2, + ACTIONS(7934), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(8072), 2, + ACTIONS(7938), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(8074), 2, + ACTIONS(7940), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8084), 2, + ACTIONS(7950), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(8088), 2, + ACTIONS(7954), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(8090), 2, + ACTIONS(7956), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - STATE(5292), 9, + STATE(5233), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -657448,7 +652174,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [163058] = 29, + [157865] = 21, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -657469,49 +652195,31 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4755), 1, - anon_sym_DASH_GT, - ACTIONS(4804), 1, + ACTIONS(7846), 1, + sym__identifier_token, + ACTIONS(7850), 1, anon_sym_LPAREN, - ACTIONS(4808), 1, - anon_sym_DOT, - ACTIONS(4835), 1, - anon_sym_LBRACK, - ACTIONS(4839), 1, + ACTIONS(7852), 1, anon_sym_BANG, - ACTIONS(6293), 1, - anon_sym_switch, - ACTIONS(6307), 1, - anon_sym_with, - ACTIONS(7876), 1, - anon_sym_SLASH, - ACTIONS(7886), 1, - anon_sym_GT_GT, - ACTIONS(7892), 1, - anon_sym_DOT_DOT, - STATE(2433), 1, - sym_bracketed_argument_list, - STATE(3035), 1, - sym_argument_list, - ACTIONS(4841), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(7872), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(7874), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(7884), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - ACTIONS(5664), 5, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_AMP, - STATE(5293), 9, + ACTIONS(7856), 1, + anon_sym_SQUOTE, + ACTIONS(7858), 1, + sym_integer_literal, + STATE(6436), 1, + sym__reserved_identifier, + STATE(6487), 1, + sym__preproc_expression, + ACTIONS(7854), 2, + anon_sym_true, + anon_sym_false, + STATE(6482), 6, + sym_character_literal, + sym_boolean_literal, + sym_identifier, + sym_preproc_parenthesized_expression, + sym_preproc_unary_expression, + sym_preproc_binary_expression, + STATE(5234), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -657521,20 +652229,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5660), 12, - 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, + ACTIONS(7848), 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, - [163173] = 35, + anon_sym_let, + anon_sym_orderby, + anon_sym_ascending, + anon_sym_descending, + anon_sym_group, + anon_sym_by, + anon_sym_select, + [157964] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -657555,68 +652273,73 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4755), 1, - anon_sym_DASH_GT, - ACTIONS(4804), 1, + ACTIONS(4753), 1, anon_sym_LPAREN, - ACTIONS(4808), 1, + ACTIONS(4792), 1, anon_sym_DOT, - ACTIONS(4835), 1, + ACTIONS(4794), 1, + anon_sym_DASH_GT, + ACTIONS(4819), 1, anon_sym_LBRACK, - ACTIONS(4839), 1, + ACTIONS(4823), 1, anon_sym_BANG, - ACTIONS(6293), 1, + ACTIONS(6264), 1, anon_sym_switch, - ACTIONS(6307), 1, + ACTIONS(6278), 1, anon_sym_with, - ACTIONS(6393), 1, - anon_sym_as, - ACTIONS(7926), 1, + ACTIONS(7976), 1, + anon_sym_QMARK, + ACTIONS(7982), 1, anon_sym_SLASH, - ACTIONS(7932), 1, + ACTIONS(7984), 1, + anon_sym_CARET, + ACTIONS(7986), 1, + anon_sym_PIPE, + ACTIONS(7988), 1, anon_sym_AMP, - ACTIONS(7936), 1, + ACTIONS(7992), 1, anon_sym_GT_GT, - ACTIONS(7942), 1, + ACTIONS(7998), 1, anon_sym_DOT_DOT, - ACTIONS(7950), 1, + ACTIONS(8000), 1, + anon_sym_AMP_AMP, + ACTIONS(8002), 1, + anon_sym_PIPE_PIPE, + ACTIONS(8004), 1, + anon_sym_QMARK_QMARK, + ACTIONS(8006), 1, + anon_sym_as, + ACTIONS(8008), 1, anon_sym_is, - STATE(2433), 1, + STATE(2419), 1, sym_bracketed_argument_list, - STATE(3035), 1, + STATE(2958), 1, sym_argument_list, - ACTIONS(4841), 2, + ACTIONS(4825), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5664), 2, - anon_sym_QMARK, - anon_sym_PIPE, - ACTIONS(7918), 2, + ACTIONS(5733), 2, + anon_sym_into, + anon_sym_on, + ACTIONS(7974), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7922), 2, + ACTIONS(7978), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7924), 2, + ACTIONS(7980), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7934), 2, + ACTIONS(7990), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7938), 2, + ACTIONS(7994), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7940), 2, + ACTIONS(7996), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5660), 6, - anon_sym_CARET, - anon_sym_EQ_GT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_QMARK_QMARK, - anon_sym_into, - STATE(5294), 9, + STATE(5235), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -657626,7 +652349,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [163300] = 21, + [158101] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -657647,31 +652370,73 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(7904), 1, - sym__identifier_token, - ACTIONS(7908), 1, + ACTIONS(4753), 1, anon_sym_LPAREN, - ACTIONS(7910), 1, + ACTIONS(4792), 1, + anon_sym_DOT, + ACTIONS(4794), 1, + anon_sym_DASH_GT, + ACTIONS(4819), 1, + anon_sym_LBRACK, + ACTIONS(4823), 1, anon_sym_BANG, - ACTIONS(7914), 1, - anon_sym_SQUOTE, - ACTIONS(7916), 1, - sym_integer_literal, - STATE(6452), 1, - sym__reserved_identifier, - STATE(6506), 1, - sym__preproc_expression, - ACTIONS(7912), 2, - anon_sym_true, - anon_sym_false, - STATE(6542), 6, - sym_character_literal, - sym_boolean_literal, - sym_identifier, - sym_preproc_parenthesized_expression, - sym_preproc_unary_expression, - sym_preproc_binary_expression, - STATE(5295), 9, + ACTIONS(6264), 1, + anon_sym_switch, + ACTIONS(6278), 1, + anon_sym_with, + ACTIONS(6327), 1, + anon_sym_as, + ACTIONS(7936), 1, + anon_sym_QMARK, + ACTIONS(7942), 1, + anon_sym_SLASH, + ACTIONS(7944), 1, + anon_sym_CARET, + ACTIONS(7946), 1, + anon_sym_PIPE, + ACTIONS(7948), 1, + anon_sym_AMP, + ACTIONS(7952), 1, + anon_sym_GT_GT, + ACTIONS(7958), 1, + anon_sym_DOT_DOT, + ACTIONS(7960), 1, + anon_sym_AMP_AMP, + ACTIONS(7962), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7964), 1, + anon_sym_QMARK_QMARK, + ACTIONS(7966), 1, + anon_sym_is, + STATE(2419), 1, + sym_bracketed_argument_list, + STATE(2958), 1, + sym_argument_list, + ACTIONS(4825), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5801), 2, + anon_sym_EQ_GT, + anon_sym_into, + ACTIONS(7934), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(7938), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(7940), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(7950), 2, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + ACTIONS(7954), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(7956), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + STATE(5236), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -657680,31 +652445,8 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_error, sym_preproc_warning, sym_preproc_define, - sym_preproc_undef, - ACTIONS(7906), 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, - [163399] = 21, + sym_preproc_undef, + [158238] = 25, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -657725,31 +652467,35 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(7904), 1, + ACTIONS(25), 1, sym__identifier_token, - ACTIONS(7908), 1, - anon_sym_LPAREN, - ACTIONS(7910), 1, - anon_sym_BANG, - ACTIONS(7914), 1, - anon_sym_SQUOTE, - ACTIONS(7916), 1, - sym_integer_literal, - STATE(6452), 1, + ACTIONS(5166), 1, + anon_sym_LBRACK, + ACTIONS(5182), 1, + aux_sym_preproc_if_token1, + ACTIONS(7121), 1, + aux_sym_preproc_if_token3, + ACTIONS(8070), 1, + aux_sym_preproc_else_token1, + ACTIONS(8072), 1, + aux_sym_preproc_elif_token1, + STATE(2168), 1, sym__reserved_identifier, - STATE(6511), 1, - sym__preproc_expression, - ACTIONS(7912), 2, - anon_sym_true, - anon_sym_false, - STATE(6542), 6, - sym_character_literal, - sym_boolean_literal, + STATE(5783), 1, + aux_sym__class_declaration_initializer_repeat1, + STATE(5961), 1, + sym__attribute_list, + STATE(6550), 1, + sym_enum_member_declaration, + STATE(6717), 1, sym_identifier, - sym_preproc_parenthesized_expression, - sym_preproc_unary_expression, - sym_preproc_binary_expression, - STATE(5296), 9, + STATE(6020), 2, + sym_attribute_list, + sym_preproc_if_in_attribute_list, + STATE(7494), 2, + sym_preproc_else_in_enum_member_declaration, + sym_preproc_elif_in_enum_member_declaration, + STATE(5237), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -657759,7 +652505,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(7906), 22, + ACTIONS(29), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -657782,7 +652528,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [163498] = 36, + [158345] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -657803,69 +652549,83 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4755), 1, - anon_sym_DASH_GT, - ACTIONS(4804), 1, - anon_sym_LPAREN, - ACTIONS(4808), 1, - anon_sym_DOT, - ACTIONS(4835), 1, - anon_sym_LBRACK, - ACTIONS(4839), 1, + ACTIONS(4241), 4, + anon_sym_COLON, + anon_sym_when, + anon_sym_and, + anon_sym_or, + STATE(5238), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + ACTIONS(5144), 11, + anon_sym_LT, + anon_sym_GT, + anon_sym_QMARK, anon_sym_BANG, - ACTIONS(6293), 1, - anon_sym_switch, - ACTIONS(6307), 1, - anon_sym_with, - ACTIONS(6393), 1, - anon_sym_as, - ACTIONS(7926), 1, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_SLASH, - ACTIONS(7928), 1, - anon_sym_CARET, - ACTIONS(7932), 1, + anon_sym_PIPE, anon_sym_AMP, - ACTIONS(7936), 1, anon_sym_GT_GT, - ACTIONS(7942), 1, - anon_sym_DOT_DOT, - ACTIONS(7950), 1, - anon_sym_is, - STATE(2433), 1, - sym_bracketed_argument_list, - STATE(3035), 1, - sym_argument_list, - ACTIONS(4841), 2, + anon_sym_DOT, + ACTIONS(5142), 22, + anon_sym_LBRACK, + anon_sym_LPAREN, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5664), 2, - anon_sym_QMARK, - anon_sym_PIPE, - ACTIONS(7918), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(7922), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(7924), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7934), 2, + anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7938), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7940), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5660), 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(5297), 9, + anon_sym_as, + anon_sym_is, + anon_sym_DASH_GT, + anon_sym_with, + [158430] = 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(4241), 4, + anon_sym_COLON, + anon_sym_when, + anon_sym_and, + anon_sym_or, + STATE(5239), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -657875,7 +652635,42 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [163627] = 41, + ACTIONS(5158), 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(5156), 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, + [158515] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -657896,74 +652691,73 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4755), 1, - anon_sym_DASH_GT, - ACTIONS(4804), 1, + ACTIONS(4753), 1, anon_sym_LPAREN, - ACTIONS(4808), 1, + ACTIONS(4792), 1, anon_sym_DOT, - ACTIONS(4835), 1, + ACTIONS(4794), 1, + anon_sym_DASH_GT, + ACTIONS(4819), 1, anon_sym_LBRACK, - ACTIONS(4839), 1, + ACTIONS(4823), 1, anon_sym_BANG, - ACTIONS(5745), 1, - anon_sym_into, - ACTIONS(5751), 1, - anon_sym_in, - ACTIONS(6293), 1, + ACTIONS(6264), 1, anon_sym_switch, - ACTIONS(6307), 1, + ACTIONS(6278), 1, anon_sym_with, - ACTIONS(6393), 1, - anon_sym_as, - ACTIONS(8034), 1, + ACTIONS(7976), 1, anon_sym_QMARK, - ACTIONS(8040), 1, + ACTIONS(7982), 1, anon_sym_SLASH, - ACTIONS(8042), 1, + ACTIONS(7984), 1, anon_sym_CARET, - ACTIONS(8044), 1, + ACTIONS(7986), 1, anon_sym_PIPE, - ACTIONS(8046), 1, + ACTIONS(7988), 1, anon_sym_AMP, - ACTIONS(8050), 1, + ACTIONS(7992), 1, anon_sym_GT_GT, - ACTIONS(8056), 1, + ACTIONS(7998), 1, anon_sym_DOT_DOT, - ACTIONS(8058), 1, + ACTIONS(8000), 1, anon_sym_AMP_AMP, - ACTIONS(8060), 1, + ACTIONS(8002), 1, anon_sym_PIPE_PIPE, - ACTIONS(8062), 1, + ACTIONS(8004), 1, anon_sym_QMARK_QMARK, - ACTIONS(8064), 1, + ACTIONS(8006), 1, + anon_sym_as, + ACTIONS(8008), 1, anon_sym_is, - STATE(2433), 1, + STATE(2419), 1, sym_bracketed_argument_list, - STATE(3035), 1, + STATE(2958), 1, sym_argument_list, - ACTIONS(4841), 2, + ACTIONS(4825), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(8032), 2, + ACTIONS(5855), 2, + anon_sym_into, + anon_sym_on, + ACTIONS(7974), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(8036), 2, + ACTIONS(7978), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(8038), 2, + ACTIONS(7980), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8048), 2, + ACTIONS(7990), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(8052), 2, + ACTIONS(7994), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(8054), 2, + ACTIONS(7996), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - STATE(5298), 9, + STATE(5240), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -657973,7 +652767,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [163766] = 41, + [158652] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -657994,74 +652788,73 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4755), 1, - anon_sym_DASH_GT, - ACTIONS(4804), 1, + ACTIONS(4753), 1, anon_sym_LPAREN, - ACTIONS(4808), 1, + ACTIONS(4792), 1, anon_sym_DOT, - ACTIONS(4835), 1, + ACTIONS(4794), 1, + anon_sym_DASH_GT, + ACTIONS(4819), 1, anon_sym_LBRACK, - ACTIONS(4839), 1, + ACTIONS(4823), 1, anon_sym_BANG, - ACTIONS(5767), 1, - anon_sym_into, - ACTIONS(5769), 1, - anon_sym_in, - ACTIONS(6293), 1, + ACTIONS(6264), 1, anon_sym_switch, - ACTIONS(6307), 1, + ACTIONS(6278), 1, anon_sym_with, - ACTIONS(6393), 1, + ACTIONS(6327), 1, anon_sym_as, - ACTIONS(8034), 1, + ACTIONS(7936), 1, anon_sym_QMARK, - ACTIONS(8040), 1, + ACTIONS(7942), 1, anon_sym_SLASH, - ACTIONS(8042), 1, + ACTIONS(7944), 1, anon_sym_CARET, - ACTIONS(8044), 1, + ACTIONS(7946), 1, anon_sym_PIPE, - ACTIONS(8046), 1, + ACTIONS(7948), 1, anon_sym_AMP, - ACTIONS(8050), 1, + ACTIONS(7952), 1, anon_sym_GT_GT, - ACTIONS(8056), 1, + ACTIONS(7958), 1, anon_sym_DOT_DOT, - ACTIONS(8058), 1, + ACTIONS(7960), 1, anon_sym_AMP_AMP, - ACTIONS(8060), 1, + ACTIONS(7962), 1, anon_sym_PIPE_PIPE, - ACTIONS(8062), 1, + ACTIONS(7964), 1, anon_sym_QMARK_QMARK, - ACTIONS(8064), 1, + ACTIONS(7966), 1, anon_sym_is, - STATE(2433), 1, + STATE(2419), 1, sym_bracketed_argument_list, - STATE(3035), 1, + STATE(2958), 1, sym_argument_list, - ACTIONS(4841), 2, + ACTIONS(4825), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(8032), 2, + ACTIONS(5849), 2, + anon_sym_EQ_GT, + anon_sym_into, + ACTIONS(7934), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(8036), 2, + ACTIONS(7938), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(8038), 2, + ACTIONS(7940), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8048), 2, + ACTIONS(7950), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(8052), 2, + ACTIONS(7954), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(8054), 2, + ACTIONS(7956), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - STATE(5299), 9, + STATE(5241), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -658071,7 +652864,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [163905] = 40, + [158789] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -658092,73 +652885,73 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4100), 1, + ACTIONS(4753), 1, + anon_sym_LPAREN, + ACTIONS(4792), 1, anon_sym_DOT, - ACTIONS(4102), 1, + ACTIONS(4794), 1, anon_sym_DASH_GT, - ACTIONS(5264), 1, - anon_sym_LPAREN, - ACTIONS(5304), 1, - anon_sym_BANG, - ACTIONS(5573), 1, + ACTIONS(4819), 1, anon_sym_LBRACK, - ACTIONS(6343), 1, + ACTIONS(4823), 1, + anon_sym_BANG, + ACTIONS(6264), 1, anon_sym_switch, - ACTIONS(6357), 1, + ACTIONS(6278), 1, anon_sym_with, - ACTIONS(6813), 1, + ACTIONS(6327), 1, anon_sym_as, - ACTIONS(7139), 1, + ACTIONS(7936), 1, anon_sym_QMARK, - ACTIONS(7145), 1, + ACTIONS(7942), 1, anon_sym_SLASH, - ACTIONS(7147), 1, + ACTIONS(7944), 1, anon_sym_CARET, - ACTIONS(7149), 1, + ACTIONS(7946), 1, anon_sym_PIPE, - ACTIONS(7151), 1, + ACTIONS(7948), 1, anon_sym_AMP, - ACTIONS(7155), 1, + ACTIONS(7952), 1, anon_sym_GT_GT, - ACTIONS(7161), 1, + ACTIONS(7958), 1, anon_sym_DOT_DOT, - ACTIONS(7163), 1, + ACTIONS(7960), 1, anon_sym_AMP_AMP, - ACTIONS(7165), 1, + ACTIONS(7962), 1, anon_sym_PIPE_PIPE, - ACTIONS(7167), 1, + ACTIONS(7964), 1, anon_sym_QMARK_QMARK, - ACTIONS(7169), 1, + ACTIONS(7966), 1, anon_sym_is, - STATE(2485), 1, + STATE(2419), 1, sym_bracketed_argument_list, - STATE(3487), 1, + STATE(2958), 1, sym_argument_list, - ACTIONS(5306), 2, + ACTIONS(4825), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7137), 2, + ACTIONS(4996), 2, + anon_sym_EQ_GT, + anon_sym_into, + ACTIONS(7934), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7141), 2, + ACTIONS(7938), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7143), 2, + ACTIONS(7940), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7153), 2, + ACTIONS(7950), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7157), 2, + ACTIONS(7954), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7159), 2, + ACTIONS(7956), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(8140), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - STATE(5300), 9, + STATE(5242), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -658168,7 +652961,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [164042] = 34, + [158926] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -658189,67 +652982,73 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4755), 1, - anon_sym_DASH_GT, - ACTIONS(4804), 1, + ACTIONS(4753), 1, anon_sym_LPAREN, - ACTIONS(4808), 1, + ACTIONS(4792), 1, anon_sym_DOT, - ACTIONS(4835), 1, + ACTIONS(4794), 1, + anon_sym_DASH_GT, + ACTIONS(4819), 1, anon_sym_LBRACK, - ACTIONS(4839), 1, + ACTIONS(4823), 1, anon_sym_BANG, - ACTIONS(6293), 1, + ACTIONS(6264), 1, anon_sym_switch, - ACTIONS(6307), 1, + ACTIONS(6278), 1, anon_sym_with, - ACTIONS(6393), 1, - anon_sym_as, - ACTIONS(7926), 1, + ACTIONS(7976), 1, + anon_sym_QMARK, + ACTIONS(7982), 1, anon_sym_SLASH, - ACTIONS(7936), 1, + ACTIONS(7984), 1, + anon_sym_CARET, + ACTIONS(7986), 1, + anon_sym_PIPE, + ACTIONS(7988), 1, + anon_sym_AMP, + ACTIONS(7992), 1, anon_sym_GT_GT, - ACTIONS(7942), 1, + ACTIONS(7998), 1, anon_sym_DOT_DOT, - ACTIONS(7950), 1, + ACTIONS(8000), 1, + anon_sym_AMP_AMP, + ACTIONS(8002), 1, + anon_sym_PIPE_PIPE, + ACTIONS(8004), 1, + anon_sym_QMARK_QMARK, + ACTIONS(8006), 1, + anon_sym_as, + ACTIONS(8008), 1, anon_sym_is, - STATE(2433), 1, + STATE(2419), 1, sym_bracketed_argument_list, - STATE(3035), 1, + STATE(2958), 1, sym_argument_list, - ACTIONS(4841), 2, + ACTIONS(4825), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7918), 2, + ACTIONS(5801), 2, + anon_sym_into, + anon_sym_on, + ACTIONS(7974), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7922), 2, + ACTIONS(7978), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7924), 2, + ACTIONS(7980), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7934), 2, + ACTIONS(7990), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7938), 2, + ACTIONS(7994), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7940), 2, + ACTIONS(7996), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5664), 3, - anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_AMP, - ACTIONS(5660), 6, - anon_sym_CARET, - anon_sym_EQ_GT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_QMARK_QMARK, - anon_sym_into, - STATE(5301), 9, + STATE(5243), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -658259,7 +653058,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [164167] = 14, + [159063] = 22, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -658280,18 +653079,36 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8142), 1, - anon_sym_DOT, - ACTIONS(3977), 8, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RBRACK, + ACTIONS(4753), 1, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - STATE(5302), 9, + ACTIONS(4792), 1, + anon_sym_DOT, + ACTIONS(4794), 1, + anon_sym_DASH_GT, + ACTIONS(4819), 1, + anon_sym_LBRACK, + ACTIONS(4823), 1, + anon_sym_BANG, + ACTIONS(7998), 1, + anon_sym_DOT_DOT, + STATE(2419), 1, + sym_bracketed_argument_list, + STATE(2958), 1, + sym_argument_list, + ACTIONS(4825), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1161), 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(5244), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -658301,36 +653118,26 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(3975), 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, + ACTIONS(1147), 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, - sym__identifier_token, - [164252] = 33, + anon_sym_as, + anon_sym_is, + anon_sym_with, + [159164] = 22, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -658351,66 +653158,36 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4755), 1, - anon_sym_DASH_GT, - ACTIONS(4804), 1, + ACTIONS(4753), 1, anon_sym_LPAREN, - ACTIONS(4808), 1, + ACTIONS(4792), 1, anon_sym_DOT, - ACTIONS(4835), 1, + ACTIONS(4794), 1, + anon_sym_DASH_GT, + ACTIONS(4819), 1, anon_sym_LBRACK, - ACTIONS(4839), 1, + ACTIONS(4823), 1, anon_sym_BANG, - ACTIONS(6293), 1, - anon_sym_switch, - ACTIONS(6307), 1, - anon_sym_with, - ACTIONS(6393), 1, - anon_sym_as, - ACTIONS(7926), 1, - anon_sym_SLASH, - ACTIONS(7936), 1, - anon_sym_GT_GT, - ACTIONS(7942), 1, + ACTIONS(7958), 1, anon_sym_DOT_DOT, - ACTIONS(7950), 1, - anon_sym_is, - STATE(2433), 1, + STATE(2419), 1, sym_bracketed_argument_list, - STATE(3035), 1, + STATE(2958), 1, sym_argument_list, - ACTIONS(4841), 2, + ACTIONS(4825), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7918), 2, + ACTIONS(5743), 9, anon_sym_LT, anon_sym_GT, - ACTIONS(7922), 2, + anon_sym_QMARK, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7924), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(7934), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - ACTIONS(7940), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(5664), 3, - anon_sym_QMARK, + anon_sym_SLASH, anon_sym_PIPE, anon_sym_AMP, - ACTIONS(5660), 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(5303), 9, + anon_sym_GT_GT, + STATE(5245), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -658420,7 +653197,26 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [164375] = 37, + ACTIONS(5741), 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_EQ_GT, + 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, + [159265] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -658441,70 +653237,73 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4755), 1, + ACTIONS(4042), 1, + anon_sym_DOT, + ACTIONS(4044), 1, anon_sym_DASH_GT, - ACTIONS(4804), 1, + ACTIONS(5257), 1, anon_sym_LPAREN, - ACTIONS(4808), 1, - anon_sym_DOT, - ACTIONS(4835), 1, - anon_sym_LBRACK, - ACTIONS(4839), 1, + ACTIONS(5302), 1, anon_sym_BANG, - ACTIONS(5664), 1, - anon_sym_QMARK, - ACTIONS(6293), 1, + ACTIONS(5549), 1, + anon_sym_LBRACK, + ACTIONS(6355), 1, anon_sym_switch, - ACTIONS(6307), 1, + ACTIONS(6369), 1, anon_sym_with, - ACTIONS(6393), 1, + ACTIONS(6811), 1, anon_sym_as, - ACTIONS(7926), 1, + ACTIONS(7231), 1, + anon_sym_QMARK, + ACTIONS(7237), 1, anon_sym_SLASH, - ACTIONS(7928), 1, + ACTIONS(7239), 1, anon_sym_CARET, - ACTIONS(7930), 1, + ACTIONS(7241), 1, anon_sym_PIPE, - ACTIONS(7932), 1, + ACTIONS(7243), 1, anon_sym_AMP, - ACTIONS(7936), 1, + ACTIONS(7247), 1, anon_sym_GT_GT, - ACTIONS(7942), 1, + ACTIONS(7253), 1, anon_sym_DOT_DOT, - ACTIONS(7950), 1, + ACTIONS(7255), 1, + anon_sym_AMP_AMP, + ACTIONS(7257), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7259), 1, + anon_sym_QMARK_QMARK, + ACTIONS(7261), 1, anon_sym_is, - STATE(2433), 1, + STATE(2467), 1, sym_bracketed_argument_list, - STATE(3035), 1, + STATE(3381), 1, sym_argument_list, - ACTIONS(4841), 2, + ACTIONS(5304), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7918), 2, + ACTIONS(7229), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7922), 2, + ACTIONS(7233), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7924), 2, + ACTIONS(7235), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7934), 2, + ACTIONS(7245), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7938), 2, + ACTIONS(7249), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7940), 2, + ACTIONS(7251), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5660), 5, - anon_sym_EQ_GT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_QMARK_QMARK, - anon_sym_into, - STATE(5304), 9, + ACTIONS(8074), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + STATE(5246), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -658514,7 +653313,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [164506] = 41, + [159402] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -658535,74 +653334,73 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4755), 1, - anon_sym_DASH_GT, - ACTIONS(4804), 1, + ACTIONS(4753), 1, anon_sym_LPAREN, - ACTIONS(4808), 1, + ACTIONS(4792), 1, anon_sym_DOT, - ACTIONS(4835), 1, + ACTIONS(4794), 1, + anon_sym_DASH_GT, + ACTIONS(4819), 1, anon_sym_LBRACK, - ACTIONS(4839), 1, + ACTIONS(4823), 1, anon_sym_BANG, - ACTIONS(5899), 1, - anon_sym_into, - ACTIONS(5901), 1, - anon_sym_in, - ACTIONS(6293), 1, + ACTIONS(6264), 1, anon_sym_switch, - ACTIONS(6307), 1, + ACTIONS(6278), 1, anon_sym_with, - ACTIONS(6393), 1, + ACTIONS(6327), 1, anon_sym_as, - ACTIONS(8034), 1, + ACTIONS(7936), 1, anon_sym_QMARK, - ACTIONS(8040), 1, + ACTIONS(7942), 1, anon_sym_SLASH, - ACTIONS(8042), 1, + ACTIONS(7944), 1, anon_sym_CARET, - ACTIONS(8044), 1, + ACTIONS(7946), 1, anon_sym_PIPE, - ACTIONS(8046), 1, + ACTIONS(7948), 1, anon_sym_AMP, - ACTIONS(8050), 1, + ACTIONS(7952), 1, anon_sym_GT_GT, - ACTIONS(8056), 1, + ACTIONS(7958), 1, anon_sym_DOT_DOT, - ACTIONS(8058), 1, + ACTIONS(7960), 1, anon_sym_AMP_AMP, - ACTIONS(8060), 1, + ACTIONS(7962), 1, anon_sym_PIPE_PIPE, - ACTIONS(8062), 1, + ACTIONS(7964), 1, anon_sym_QMARK_QMARK, - ACTIONS(8064), 1, + ACTIONS(7966), 1, anon_sym_is, - STATE(2433), 1, + STATE(2419), 1, sym_bracketed_argument_list, - STATE(3035), 1, + STATE(2958), 1, sym_argument_list, - ACTIONS(4841), 2, + ACTIONS(4825), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(8032), 2, + ACTIONS(5652), 2, + anon_sym_EQ_GT, + anon_sym_into, + ACTIONS(7934), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(8036), 2, + ACTIONS(7938), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(8038), 2, + ACTIONS(7940), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8048), 2, + ACTIONS(7950), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(8052), 2, + ACTIONS(7954), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(8054), 2, + ACTIONS(7956), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - STATE(5305), 9, + STATE(5247), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -658612,7 +653410,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [164645] = 22, + [159539] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -658633,26 +653431,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4755), 1, - anon_sym_DASH_GT, - ACTIONS(4804), 1, - anon_sym_LPAREN, - ACTIONS(4808), 1, - anon_sym_DOT, - ACTIONS(4835), 1, - anon_sym_LBRACK, - ACTIONS(4839), 1, - anon_sym_BANG, - ACTIONS(8056), 1, - anon_sym_DOT_DOT, - STATE(2433), 1, - sym_bracketed_argument_list, - STATE(3035), 1, - sym_argument_list, - ACTIONS(4841), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(5306), 9, + ACTIONS(7970), 1, + anon_sym_and, + STATE(5248), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -658662,18 +653443,23 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(1223), 10, + ACTIONS(6097), 11, 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, - ACTIONS(1221), 17, + anon_sym_DOT, + ACTIONS(6095), 25, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_STAR, anon_sym_PERCENT, anon_sym_CARET, @@ -658683,15 +653469,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_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, - [164746] = 38, + [159624] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -658712,81 +653502,136 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4755), 1, - anon_sym_DASH_GT, - ACTIONS(4804), 1, - anon_sym_LPAREN, - ACTIONS(4808), 1, - anon_sym_DOT, - ACTIONS(4835), 1, - anon_sym_LBRACK, - ACTIONS(4839), 1, - anon_sym_BANG, - ACTIONS(5664), 1, + ACTIONS(7864), 1, + anon_sym_and, + STATE(5249), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + ACTIONS(6097), 11, + anon_sym_LT, + anon_sym_GT, anon_sym_QMARK, - ACTIONS(6293), 1, - anon_sym_switch, - ACTIONS(6307), 1, - anon_sym_with, - ACTIONS(6393), 1, - anon_sym_as, - ACTIONS(7926), 1, + anon_sym_BANG, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_SLASH, - ACTIONS(7928), 1, - anon_sym_CARET, - ACTIONS(7930), 1, anon_sym_PIPE, - ACTIONS(7932), 1, anon_sym_AMP, - ACTIONS(7936), 1, anon_sym_GT_GT, - ACTIONS(7942), 1, + anon_sym_DOT, + ACTIONS(6095), 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_when, anon_sym_DOT_DOT, - ACTIONS(7944), 1, + anon_sym_or, anon_sym_AMP_AMP, - ACTIONS(7950), 1, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, + anon_sym_as, anon_sym_is, - STATE(2433), 1, + anon_sym_DASH_GT, + anon_sym_with, + [159709] = 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(4753), 1, + anon_sym_LPAREN, + ACTIONS(4792), 1, + anon_sym_DOT, + ACTIONS(4794), 1, + anon_sym_DASH_GT, + ACTIONS(4819), 1, + anon_sym_LBRACK, + ACTIONS(4823), 1, + anon_sym_BANG, + ACTIONS(7958), 1, + anon_sym_DOT_DOT, + STATE(2419), 1, sym_bracketed_argument_list, - STATE(3035), 1, + STATE(2958), 1, sym_argument_list, - ACTIONS(4841), 2, + ACTIONS(4825), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7918), 2, + ACTIONS(1161), 9, anon_sym_LT, anon_sym_GT, - ACTIONS(7922), 2, + anon_sym_QMARK, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7924), 2, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT_GT, + STATE(5250), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + ACTIONS(1147), 18, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7934), 2, + anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7938), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7940), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5660), 4, anon_sym_EQ_GT, + anon_sym_switch, + anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_QMARK_QMARK, anon_sym_into, - 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, - [164879] = 40, + anon_sym_as, + anon_sym_is, + anon_sym_with, + [159810] = 29, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -658807,73 +653652,49 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4755), 1, - anon_sym_DASH_GT, - ACTIONS(4804), 1, + ACTIONS(4753), 1, anon_sym_LPAREN, - ACTIONS(4808), 1, + ACTIONS(4792), 1, anon_sym_DOT, - ACTIONS(4835), 1, + ACTIONS(4794), 1, + anon_sym_DASH_GT, + ACTIONS(4819), 1, anon_sym_LBRACK, - ACTIONS(4839), 1, + ACTIONS(4823), 1, anon_sym_BANG, - ACTIONS(6293), 1, + ACTIONS(6264), 1, anon_sym_switch, - ACTIONS(6307), 1, + ACTIONS(6278), 1, anon_sym_with, - ACTIONS(6393), 1, - anon_sym_as, - ACTIONS(7920), 1, - anon_sym_QMARK, - ACTIONS(7926), 1, + ACTIONS(7942), 1, anon_sym_SLASH, - ACTIONS(7928), 1, - anon_sym_CARET, - ACTIONS(7930), 1, - anon_sym_PIPE, - ACTIONS(7932), 1, - anon_sym_AMP, - ACTIONS(7936), 1, + ACTIONS(7952), 1, anon_sym_GT_GT, - ACTIONS(7942), 1, + ACTIONS(7958), 1, anon_sym_DOT_DOT, - ACTIONS(7944), 1, - anon_sym_AMP_AMP, - ACTIONS(7946), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7948), 1, - anon_sym_QMARK_QMARK, - ACTIONS(7950), 1, - anon_sym_is, - STATE(2433), 1, + STATE(2419), 1, sym_bracketed_argument_list, - STATE(3035), 1, + STATE(2958), 1, sym_argument_list, - ACTIONS(4841), 2, + ACTIONS(4825), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5745), 2, - anon_sym_EQ_GT, - anon_sym_into, - ACTIONS(7918), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(7922), 2, + ACTIONS(7938), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7924), 2, + ACTIONS(7940), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7934), 2, + ACTIONS(7950), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7938), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(7940), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - STATE(5308), 9, + ACTIONS(5739), 5, + anon_sym_LT, + anon_sym_GT, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_AMP, + STATE(5251), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -658883,7 +653704,20 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [165016] = 21, + ACTIONS(5737), 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_as, + anon_sym_is, + [159925] = 21, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -658904,31 +653738,31 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(7904), 1, + ACTIONS(7846), 1, sym__identifier_token, - ACTIONS(7908), 1, + ACTIONS(7850), 1, anon_sym_LPAREN, - ACTIONS(7910), 1, + ACTIONS(7852), 1, anon_sym_BANG, - ACTIONS(7914), 1, + ACTIONS(7856), 1, anon_sym_SQUOTE, - ACTIONS(7916), 1, + ACTIONS(7858), 1, sym_integer_literal, - STATE(6452), 1, + STATE(6436), 1, sym__reserved_identifier, - STATE(6508), 1, + STATE(6483), 1, sym__preproc_expression, - ACTIONS(7912), 2, + ACTIONS(7854), 2, anon_sym_true, anon_sym_false, - STATE(6542), 6, + STATE(6482), 6, sym_character_literal, sym_boolean_literal, sym_identifier, sym_preproc_parenthesized_expression, sym_preproc_unary_expression, sym_preproc_binary_expression, - STATE(5309), 9, + STATE(5252), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -658938,7 +653772,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(7906), 22, + ACTIONS(7848), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -658961,7 +653795,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [165115] = 40, + [160024] = 26, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -658982,83 +653816,377 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4755), 1, - anon_sym_DASH_GT, - ACTIONS(4804), 1, + ACTIONS(4753), 1, anon_sym_LPAREN, - ACTIONS(4808), 1, + ACTIONS(4792), 1, anon_sym_DOT, - ACTIONS(4835), 1, + ACTIONS(4794), 1, + anon_sym_DASH_GT, + ACTIONS(4819), 1, anon_sym_LBRACK, - ACTIONS(4839), 1, + ACTIONS(4823), 1, anon_sym_BANG, - ACTIONS(5664), 1, - anon_sym_QMARK, - ACTIONS(6293), 1, + ACTIONS(6264), 1, anon_sym_switch, - ACTIONS(6307), 1, + ACTIONS(6278), 1, anon_sym_with, - ACTIONS(6393), 1, - anon_sym_as, - ACTIONS(7926), 1, + ACTIONS(7942), 1, anon_sym_SLASH, - ACTIONS(7928), 1, - anon_sym_CARET, - ACTIONS(7930), 1, + ACTIONS(7958), 1, + anon_sym_DOT_DOT, + STATE(2419), 1, + sym_bracketed_argument_list, + STATE(2958), 1, + sym_argument_list, + ACTIONS(4825), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7940), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(5739), 8, + anon_sym_LT, + anon_sym_GT, + anon_sym_QMARK, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_PIPE, - ACTIONS(7932), 1, anon_sym_AMP, - ACTIONS(7936), 1, anon_sym_GT_GT, - ACTIONS(7942), 1, + 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, + ACTIONS(5737), 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_as, + anon_sym_is, + [160133] = 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(4753), 1, + anon_sym_LPAREN, + ACTIONS(4792), 1, + anon_sym_DOT, + ACTIONS(4794), 1, + anon_sym_DASH_GT, + ACTIONS(4819), 1, + anon_sym_LBRACK, + ACTIONS(4823), 1, + anon_sym_BANG, + ACTIONS(6264), 1, + anon_sym_switch, + ACTIONS(6278), 1, + anon_sym_with, + ACTIONS(7958), 1, anon_sym_DOT_DOT, - ACTIONS(7944), 1, + STATE(2419), 1, + sym_bracketed_argument_list, + STATE(2958), 1, + sym_argument_list, + ACTIONS(4825), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5739), 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(5254), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + ACTIONS(5737), 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_EQ_GT, anon_sym_AMP_AMP, - ACTIONS(7946), 1, anon_sym_PIPE_PIPE, - ACTIONS(7948), 1, anon_sym_QMARK_QMARK, - ACTIONS(7950), 1, + anon_sym_into, + anon_sym_as, anon_sym_is, - STATE(2433), 1, + [160238] = 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(4753), 1, + anon_sym_LPAREN, + ACTIONS(4792), 1, + anon_sym_DOT, + ACTIONS(4794), 1, + anon_sym_DASH_GT, + ACTIONS(4819), 1, + anon_sym_LBRACK, + ACTIONS(4823), 1, + anon_sym_BANG, + ACTIONS(6264), 1, + anon_sym_switch, + ACTIONS(6278), 1, + anon_sym_with, + ACTIONS(7942), 1, + anon_sym_SLASH, + ACTIONS(7958), 1, + anon_sym_DOT_DOT, + STATE(2419), 1, sym_bracketed_argument_list, - STATE(3035), 1, + STATE(2958), 1, sym_argument_list, - ACTIONS(4841), 2, + ACTIONS(4825), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5660), 2, + ACTIONS(7938), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(7940), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(5739), 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(5737), 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, - ACTIONS(7918), 2, + anon_sym_as, + anon_sym_is, + [160349] = 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(8076), 1, + anon_sym_and, + ACTIONS(8078), 1, + anon_sym_or, + 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(6109), 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(6107), 24, + 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_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, + anon_sym_as, + anon_sym_is, + anon_sym_DASH_GT, + anon_sym_with, + [160436] = 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(8066), 1, + anon_sym_and, + 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, + ACTIONS(6097), 11, anon_sym_LT, anon_sym_GT, - ACTIONS(7922), 2, + anon_sym_QMARK, + anon_sym_BANG, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7924), 2, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT_GT, + anon_sym_DOT, + ACTIONS(6095), 25, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7934), 2, + anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7938), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7940), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - STATE(5310), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - [165252] = 26, + 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, + anon_sym_as, + anon_sym_is, + anon_sym_DASH_GT, + anon_sym_with, + [160521] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -659079,44 +654207,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4755), 1, - anon_sym_DASH_GT, - ACTIONS(4804), 1, - anon_sym_LPAREN, - ACTIONS(4808), 1, - anon_sym_DOT, - ACTIONS(4835), 1, - anon_sym_LBRACK, - ACTIONS(4839), 1, - anon_sym_BANG, - ACTIONS(6293), 1, - anon_sym_switch, - ACTIONS(6307), 1, - anon_sym_with, - ACTIONS(7962), 1, - anon_sym_SLASH, - ACTIONS(7978), 1, - anon_sym_DOT_DOT, - STATE(2433), 1, - sym_bracketed_argument_list, - STATE(3035), 1, - sym_argument_list, - ACTIONS(4841), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(7960), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(5664), 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(5311), 9, + ACTIONS(8066), 1, + anon_sym_and, + ACTIONS(8068), 1, + anon_sym_or, + STATE(5258), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -659126,7 +654221,25 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5660), 14, + ACTIONS(5360), 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(5358), 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, @@ -659134,14 +654247,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_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, - [165361] = 18, + anon_sym_DASH_GT, + anon_sym_with, + [160608] = 21, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -659162,24 +654279,31 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4102), 1, - anon_sym_DASH_GT, - ACTIONS(6678), 1, - anon_sym_LBRACK, - ACTIONS(6680), 1, - anon_sym_STAR, - ACTIONS(6716), 1, - anon_sym_QMARK, - ACTIONS(8144), 1, - anon_sym_DOT, - ACTIONS(4018), 6, - anon_sym_COMMA, - anon_sym_RBRACK, + ACTIONS(7846), 1, + sym__identifier_token, + ACTIONS(7850), 1, anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - STATE(5312), 9, + ACTIONS(7852), 1, + anon_sym_BANG, + ACTIONS(7856), 1, + anon_sym_SQUOTE, + ACTIONS(7858), 1, + sym_integer_literal, + STATE(6436), 1, + sym__reserved_identifier, + STATE(6501), 1, + sym__preproc_expression, + ACTIONS(7854), 2, + anon_sym_true, + anon_sym_false, + STATE(6482), 6, + sym_character_literal, + sym_boolean_literal, + sym_identifier, + sym_preproc_parenthesized_expression, + sym_preproc_unary_expression, + sym_preproc_binary_expression, + STATE(5259), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -659189,7 +654313,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(4016), 26, + ACTIONS(7848), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -659200,9 +654324,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, @@ -659215,8 +654336,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - sym__identifier_token, - [165454] = 40, + [160707] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -659237,73 +654357,73 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4100), 1, + ACTIONS(4042), 1, anon_sym_DOT, - ACTIONS(4102), 1, + ACTIONS(4044), 1, anon_sym_DASH_GT, - ACTIONS(5264), 1, + ACTIONS(5257), 1, anon_sym_LPAREN, - ACTIONS(5304), 1, + ACTIONS(5302), 1, anon_sym_BANG, - ACTIONS(5573), 1, + ACTIONS(5549), 1, anon_sym_LBRACK, - ACTIONS(6343), 1, + ACTIONS(6355), 1, anon_sym_switch, - ACTIONS(6357), 1, + ACTIONS(6369), 1, anon_sym_with, - ACTIONS(6813), 1, + ACTIONS(6811), 1, anon_sym_as, - ACTIONS(7139), 1, + ACTIONS(7231), 1, anon_sym_QMARK, - ACTIONS(7145), 1, + ACTIONS(7237), 1, anon_sym_SLASH, - ACTIONS(7147), 1, + ACTIONS(7239), 1, anon_sym_CARET, - ACTIONS(7149), 1, + ACTIONS(7241), 1, anon_sym_PIPE, - ACTIONS(7151), 1, + ACTIONS(7243), 1, anon_sym_AMP, - ACTIONS(7155), 1, + ACTIONS(7247), 1, anon_sym_GT_GT, - ACTIONS(7161), 1, + ACTIONS(7253), 1, anon_sym_DOT_DOT, - ACTIONS(7163), 1, + ACTIONS(7255), 1, anon_sym_AMP_AMP, - ACTIONS(7165), 1, + ACTIONS(7257), 1, anon_sym_PIPE_PIPE, - ACTIONS(7167), 1, + ACTIONS(7259), 1, anon_sym_QMARK_QMARK, - ACTIONS(7169), 1, + ACTIONS(7261), 1, anon_sym_is, - STATE(2485), 1, + STATE(2467), 1, sym_bracketed_argument_list, - STATE(3487), 1, + STATE(3381), 1, sym_argument_list, - ACTIONS(5306), 2, + ACTIONS(5304), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7137), 2, + ACTIONS(7229), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7141), 2, + ACTIONS(7233), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7143), 2, + ACTIONS(7235), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7153), 2, + ACTIONS(7245), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7157), 2, + ACTIONS(7249), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7159), 2, + ACTIONS(7251), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(8120), 2, + ACTIONS(7520), 2, anon_sym_COMMA, - anon_sym_RPAREN, - STATE(5313), 9, + anon_sym_RBRACE, + STATE(5260), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -659313,7 +654433,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [165591] = 21, + [160844] = 21, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -659334,31 +654454,31 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(7904), 1, + ACTIONS(7846), 1, sym__identifier_token, - ACTIONS(7908), 1, + ACTIONS(7850), 1, anon_sym_LPAREN, - ACTIONS(7910), 1, + ACTIONS(7852), 1, anon_sym_BANG, - ACTIONS(7914), 1, + ACTIONS(7856), 1, anon_sym_SQUOTE, - ACTIONS(7916), 1, + ACTIONS(7858), 1, sym_integer_literal, - STATE(6452), 1, + STATE(6436), 1, sym__reserved_identifier, - STATE(6593), 1, + STATE(6496), 1, sym__preproc_expression, - ACTIONS(7912), 2, + ACTIONS(7854), 2, anon_sym_true, anon_sym_false, - STATE(6542), 6, + STATE(6482), 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(5261), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -659368,7 +654488,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(7906), 22, + ACTIONS(7848), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -659391,79 +654511,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [165690] = 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(8122), 1, - anon_sym_and, - ACTIONS(8124), 1, - anon_sym_or, - STATE(5315), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - ACTIONS(6207), 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(6205), 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_into, - anon_sym_as, - anon_sym_is, - anon_sym_DASH_GT, - anon_sym_with, - [165777] = 40, + [160943] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -659484,73 +654532,73 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4100), 1, + ACTIONS(4042), 1, anon_sym_DOT, - ACTIONS(4102), 1, + ACTIONS(4044), 1, anon_sym_DASH_GT, - ACTIONS(5264), 1, + ACTIONS(5257), 1, anon_sym_LPAREN, - ACTIONS(5304), 1, + ACTIONS(5302), 1, anon_sym_BANG, - ACTIONS(5573), 1, + ACTIONS(5549), 1, anon_sym_LBRACK, - ACTIONS(6343), 1, + ACTIONS(6355), 1, anon_sym_switch, - ACTIONS(6357), 1, + ACTIONS(6369), 1, anon_sym_with, - ACTIONS(6813), 1, + ACTIONS(6811), 1, anon_sym_as, - ACTIONS(7169), 1, - anon_sym_is, - ACTIONS(7442), 1, + ACTIONS(7231), 1, + anon_sym_QMARK, + ACTIONS(7237), 1, anon_sym_SLASH, - ACTIONS(7444), 1, + ACTIONS(7239), 1, anon_sym_CARET, - ACTIONS(7446), 1, + ACTIONS(7241), 1, anon_sym_PIPE, - ACTIONS(7448), 1, + ACTIONS(7243), 1, anon_sym_AMP, - ACTIONS(7452), 1, + ACTIONS(7247), 1, anon_sym_GT_GT, - ACTIONS(7458), 1, + ACTIONS(7253), 1, anon_sym_DOT_DOT, - ACTIONS(7621), 1, + ACTIONS(7255), 1, anon_sym_AMP_AMP, - ACTIONS(7623), 1, + ACTIONS(7257), 1, anon_sym_PIPE_PIPE, - ACTIONS(7625), 1, + ACTIONS(7259), 1, anon_sym_QMARK_QMARK, - ACTIONS(7659), 1, - anon_sym_QMARK, - STATE(2485), 1, + ACTIONS(7261), 1, + anon_sym_is, + STATE(2467), 1, sym_bracketed_argument_list, - STATE(3487), 1, + STATE(3381), 1, sym_argument_list, - ACTIONS(5306), 2, + ACTIONS(5304), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7436), 2, + ACTIONS(7229), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7438), 2, + ACTIONS(7233), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7440), 2, + ACTIONS(7235), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7450), 2, + ACTIONS(7245), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7454), 2, + ACTIONS(7249), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7456), 2, + ACTIONS(7251), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(7990), 2, - anon_sym_SEMI, + ACTIONS(8080), 2, anon_sym_COMMA, - STATE(5316), 9, + anon_sym_RBRACE, + STATE(5262), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -659560,7 +654608,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [165914] = 14, + [161080] = 21, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -659581,12 +654629,31 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4271), 4, - anon_sym_COLON, - anon_sym_when, - anon_sym_and, - anon_sym_or, - STATE(5317), 9, + ACTIONS(7846), 1, + sym__identifier_token, + ACTIONS(7850), 1, + anon_sym_LPAREN, + ACTIONS(7852), 1, + anon_sym_BANG, + ACTIONS(7856), 1, + anon_sym_SQUOTE, + ACTIONS(7858), 1, + sym_integer_literal, + STATE(6436), 1, + sym__reserved_identifier, + STATE(6498), 1, + sym__preproc_expression, + ACTIONS(7854), 2, + anon_sym_true, + anon_sym_false, + STATE(6482), 6, + sym_character_literal, + sym_boolean_literal, + sym_identifier, + sym_preproc_parenthesized_expression, + sym_preproc_unary_expression, + sym_preproc_binary_expression, + STATE(5263), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -659596,42 +654663,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5056), 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(5054), 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, - [165999] = 21, + ACTIONS(7848), 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, + [161179] = 21, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -659652,31 +654707,31 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(7904), 1, + ACTIONS(7846), 1, sym__identifier_token, - ACTIONS(7908), 1, + ACTIONS(7850), 1, anon_sym_LPAREN, - ACTIONS(7910), 1, + ACTIONS(7852), 1, anon_sym_BANG, - ACTIONS(7914), 1, + ACTIONS(7856), 1, anon_sym_SQUOTE, - ACTIONS(7916), 1, + ACTIONS(7858), 1, sym_integer_literal, - STATE(6452), 1, + STATE(6436), 1, sym__reserved_identifier, - STATE(6559), 1, + STATE(6500), 1, sym__preproc_expression, - ACTIONS(7912), 2, + ACTIONS(7854), 2, anon_sym_true, anon_sym_false, - STATE(6542), 6, + STATE(6482), 6, sym_character_literal, sym_boolean_literal, sym_identifier, sym_preproc_parenthesized_expression, sym_preproc_unary_expression, sym_preproc_binary_expression, - STATE(5318), 9, + STATE(5264), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -659686,7 +654741,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(7906), 22, + ACTIONS(7848), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -659709,7 +654764,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [166098] = 21, + [161278] = 21, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -659730,31 +654785,31 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(7904), 1, + ACTIONS(7846), 1, sym__identifier_token, - ACTIONS(7908), 1, + ACTIONS(7850), 1, anon_sym_LPAREN, - ACTIONS(7910), 1, + ACTIONS(7852), 1, anon_sym_BANG, - ACTIONS(7914), 1, + ACTIONS(7856), 1, anon_sym_SQUOTE, - ACTIONS(7916), 1, + ACTIONS(7858), 1, sym_integer_literal, - STATE(6452), 1, + STATE(6436), 1, sym__reserved_identifier, - STATE(6567), 1, + STATE(6573), 1, sym__preproc_expression, - ACTIONS(7912), 2, + ACTIONS(7854), 2, anon_sym_true, anon_sym_false, - STATE(6542), 6, + STATE(6482), 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(5265), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -659764,7 +654819,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(7906), 22, + ACTIONS(7848), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -659787,7 +654842,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [166197] = 21, + [161377] = 21, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -659808,31 +654863,31 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(7904), 1, + ACTIONS(7846), 1, sym__identifier_token, - ACTIONS(7908), 1, + ACTIONS(7850), 1, anon_sym_LPAREN, - ACTIONS(7910), 1, + ACTIONS(7852), 1, anon_sym_BANG, - ACTIONS(7914), 1, + ACTIONS(7856), 1, anon_sym_SQUOTE, - ACTIONS(7916), 1, + ACTIONS(7858), 1, sym_integer_literal, - STATE(6452), 1, + STATE(6436), 1, sym__reserved_identifier, - STATE(6573), 1, + STATE(6604), 1, sym__preproc_expression, - ACTIONS(7912), 2, + ACTIONS(7854), 2, anon_sym_true, anon_sym_false, - STATE(6542), 6, + STATE(6482), 6, sym_character_literal, sym_boolean_literal, sym_identifier, sym_preproc_parenthesized_expression, sym_preproc_unary_expression, sym_preproc_binary_expression, - STATE(5320), 9, + STATE(5266), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -659842,7 +654897,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(7906), 22, + ACTIONS(7848), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -659865,7 +654920,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [166296] = 15, + [161476] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -659886,11 +654941,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8138), 1, + ACTIONS(7970), 1, anon_sym_and, - ACTIONS(8146), 1, + ACTIONS(7972), 1, anon_sym_or, - STATE(5321), 9, + STATE(5267), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -659900,7 +654955,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(6207), 11, + ACTIONS(5360), 11, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, @@ -659912,9 +654967,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT, - ACTIONS(6205), 24, + ACTIONS(5358), 24, anon_sym_LBRACK, - anon_sym_COLON, anon_sym_LPAREN, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, @@ -659927,17 +654981,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_when, 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, - [166383] = 40, + [161563] = 21, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -659958,73 +655013,31 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4755), 1, - anon_sym_DASH_GT, - ACTIONS(4804), 1, + ACTIONS(7846), 1, + sym__identifier_token, + ACTIONS(7850), 1, anon_sym_LPAREN, - ACTIONS(4808), 1, - anon_sym_DOT, - ACTIONS(4835), 1, - anon_sym_LBRACK, - ACTIONS(4839), 1, + ACTIONS(7852), 1, anon_sym_BANG, - ACTIONS(5664), 1, - anon_sym_QMARK, - ACTIONS(6293), 1, - anon_sym_switch, - ACTIONS(6307), 1, - anon_sym_with, - ACTIONS(7876), 1, - anon_sym_SLASH, - ACTIONS(7878), 1, - anon_sym_CARET, - ACTIONS(7880), 1, - anon_sym_PIPE, - ACTIONS(7882), 1, - anon_sym_AMP, - ACTIONS(7886), 1, - anon_sym_GT_GT, - ACTIONS(7892), 1, - anon_sym_DOT_DOT, - ACTIONS(7894), 1, - anon_sym_AMP_AMP, - ACTIONS(7896), 1, - anon_sym_as, - ACTIONS(7898), 1, - anon_sym_is, - ACTIONS(8114), 1, - anon_sym_PIPE_PIPE, - ACTIONS(8116), 1, - anon_sym_QMARK_QMARK, - STATE(2433), 1, - sym_bracketed_argument_list, - STATE(3035), 1, - sym_argument_list, - ACTIONS(4841), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5660), 2, - anon_sym_into, - anon_sym_equals, - ACTIONS(7870), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(7872), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(7874), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(7884), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - ACTIONS(7888), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(7890), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - STATE(5322), 9, + ACTIONS(7856), 1, + anon_sym_SQUOTE, + ACTIONS(7858), 1, + sym_integer_literal, + STATE(6436), 1, + sym__reserved_identifier, + STATE(6466), 1, + sym__preproc_expression, + ACTIONS(7854), 2, + anon_sym_true, + anon_sym_false, + STATE(6482), 6, + sym_character_literal, + sym_boolean_literal, + sym_identifier, + sym_preproc_parenthesized_expression, + sym_preproc_unary_expression, + sym_preproc_binary_expression, + STATE(5268), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -660034,7 +655047,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [166520] = 40, + ACTIONS(7848), 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, + [161662] = 41, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -660055,72 +655091,74 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4100), 1, + ACTIONS(4753), 1, + anon_sym_LPAREN, + ACTIONS(4792), 1, anon_sym_DOT, - ACTIONS(4102), 1, + ACTIONS(4794), 1, anon_sym_DASH_GT, - ACTIONS(5264), 1, - anon_sym_LPAREN, - ACTIONS(5304), 1, - anon_sym_BANG, - ACTIONS(5573), 1, + ACTIONS(4819), 1, anon_sym_LBRACK, - ACTIONS(6343), 1, + ACTIONS(4823), 1, + anon_sym_BANG, + ACTIONS(5709), 1, + anon_sym_into, + ACTIONS(5711), 1, + anon_sym_in, + ACTIONS(6264), 1, anon_sym_switch, - ACTIONS(6357), 1, + ACTIONS(6278), 1, anon_sym_with, - ACTIONS(8150), 1, + ACTIONS(6327), 1, + anon_sym_as, + ACTIONS(8084), 1, anon_sym_QMARK, - ACTIONS(8156), 1, + ACTIONS(8090), 1, anon_sym_SLASH, - ACTIONS(8158), 1, + ACTIONS(8092), 1, anon_sym_CARET, - ACTIONS(8160), 1, + ACTIONS(8094), 1, anon_sym_PIPE, - ACTIONS(8162), 1, + ACTIONS(8096), 1, anon_sym_AMP, - ACTIONS(8166), 1, + ACTIONS(8100), 1, anon_sym_GT_GT, - ACTIONS(8172), 1, + ACTIONS(8106), 1, anon_sym_DOT_DOT, - ACTIONS(8174), 1, + ACTIONS(8108), 1, anon_sym_AMP_AMP, - ACTIONS(8176), 1, + ACTIONS(8110), 1, anon_sym_PIPE_PIPE, - ACTIONS(8178), 1, + ACTIONS(8112), 1, anon_sym_QMARK_QMARK, - ACTIONS(8180), 1, - anon_sym_by, - ACTIONS(8182), 1, - anon_sym_as, - ACTIONS(8184), 1, + ACTIONS(8114), 1, anon_sym_is, - STATE(2485), 1, + STATE(2419), 1, sym_bracketed_argument_list, - STATE(3487), 1, + STATE(2958), 1, sym_argument_list, - ACTIONS(5306), 2, + ACTIONS(4825), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(8148), 2, + ACTIONS(8082), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(8152), 2, + ACTIONS(8086), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(8154), 2, + ACTIONS(8088), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8164), 2, + ACTIONS(8098), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(8168), 2, + ACTIONS(8102), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(8170), 2, + ACTIONS(8104), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - STATE(5323), 9, + STATE(5269), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -660130,7 +655168,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [166656] = 40, + [161801] = 22, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -660151,82 +655189,65 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4100), 1, + ACTIONS(4753), 1, + anon_sym_LPAREN, + ACTIONS(4792), 1, anon_sym_DOT, - ACTIONS(4102), 1, + ACTIONS(4794), 1, anon_sym_DASH_GT, - ACTIONS(5264), 1, - anon_sym_LPAREN, - ACTIONS(5304), 1, - anon_sym_BANG, - ACTIONS(5573), 1, + ACTIONS(4819), 1, anon_sym_LBRACK, - ACTIONS(6343), 1, - anon_sym_switch, - ACTIONS(6357), 1, - anon_sym_with, - ACTIONS(6813), 1, - anon_sym_as, - ACTIONS(6815), 1, - anon_sym_is, - ACTIONS(7183), 1, - anon_sym_SLASH, - ACTIONS(7187), 1, - anon_sym_GT_GT, - ACTIONS(7189), 1, + ACTIONS(4823), 1, + anon_sym_BANG, + ACTIONS(8106), 1, anon_sym_DOT_DOT, - ACTIONS(7195), 1, - anon_sym_AMP, - ACTIONS(7201), 1, - anon_sym_CARET, - ACTIONS(7203), 1, - anon_sym_PIPE, - ACTIONS(7205), 1, - anon_sym_AMP_AMP, - ACTIONS(7207), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7209), 1, - anon_sym_QMARK_QMARK, - ACTIONS(7237), 1, - anon_sym_QMARK, - ACTIONS(8186), 1, - anon_sym_SEMI, - STATE(2485), 1, + STATE(2419), 1, sym_bracketed_argument_list, - STATE(3487), 1, + STATE(2958), 1, sym_argument_list, - ACTIONS(5306), 2, + ACTIONS(4825), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7179), 2, + 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(5743), 10, + anon_sym_LT, + anon_sym_GT, + anon_sym_in, + anon_sym_QMARK, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7181), 2, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT_GT, + ACTIONS(5741), 17, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7185), 2, + anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7193), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(7197), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7199), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - STATE(5324), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - [166792] = 40, + 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, + [161902] = 41, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -660247,72 +655268,74 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4100), 1, + ACTIONS(4753), 1, + anon_sym_LPAREN, + ACTIONS(4792), 1, anon_sym_DOT, - ACTIONS(4102), 1, + ACTIONS(4794), 1, anon_sym_DASH_GT, - ACTIONS(5264), 1, - anon_sym_LPAREN, - ACTIONS(5304), 1, - anon_sym_BANG, - ACTIONS(5573), 1, + ACTIONS(4819), 1, anon_sym_LBRACK, - ACTIONS(6343), 1, + ACTIONS(4823), 1, + anon_sym_BANG, + ACTIONS(5849), 1, + anon_sym_into, + ACTIONS(5851), 1, + anon_sym_in, + ACTIONS(6264), 1, anon_sym_switch, - ACTIONS(6357), 1, + ACTIONS(6278), 1, anon_sym_with, - ACTIONS(6813), 1, + ACTIONS(6327), 1, anon_sym_as, - ACTIONS(6815), 1, - anon_sym_is, - ACTIONS(7183), 1, + ACTIONS(8084), 1, + anon_sym_QMARK, + ACTIONS(8090), 1, anon_sym_SLASH, - ACTIONS(7187), 1, - anon_sym_GT_GT, - ACTIONS(7189), 1, - anon_sym_DOT_DOT, - ACTIONS(7195), 1, - anon_sym_AMP, - ACTIONS(7201), 1, + ACTIONS(8092), 1, anon_sym_CARET, - ACTIONS(7203), 1, + ACTIONS(8094), 1, anon_sym_PIPE, - ACTIONS(7205), 1, + ACTIONS(8096), 1, + anon_sym_AMP, + ACTIONS(8100), 1, + anon_sym_GT_GT, + ACTIONS(8106), 1, + anon_sym_DOT_DOT, + ACTIONS(8108), 1, anon_sym_AMP_AMP, - ACTIONS(7207), 1, + ACTIONS(8110), 1, anon_sym_PIPE_PIPE, - ACTIONS(7209), 1, + ACTIONS(8112), 1, anon_sym_QMARK_QMARK, - ACTIONS(7237), 1, - anon_sym_QMARK, - ACTIONS(8188), 1, - anon_sym_SEMI, - STATE(2485), 1, + ACTIONS(8114), 1, + anon_sym_is, + STATE(2419), 1, sym_bracketed_argument_list, - STATE(3487), 1, + STATE(2958), 1, sym_argument_list, - ACTIONS(5306), 2, + ACTIONS(4825), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7179), 2, + ACTIONS(8082), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(8086), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7181), 2, + ACTIONS(8088), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7185), 2, + ACTIONS(8098), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7193), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(7197), 2, + ACTIONS(8102), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7199), 2, + ACTIONS(8104), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - STATE(5325), 9, + STATE(5271), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -660322,7 +655345,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [166928] = 40, + [162041] = 41, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -660343,72 +655366,74 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4100), 1, + ACTIONS(4753), 1, + anon_sym_LPAREN, + ACTIONS(4792), 1, anon_sym_DOT, - ACTIONS(4102), 1, + ACTIONS(4794), 1, anon_sym_DASH_GT, - ACTIONS(5264), 1, - anon_sym_LPAREN, - ACTIONS(5304), 1, - anon_sym_BANG, - ACTIONS(5573), 1, + ACTIONS(4819), 1, anon_sym_LBRACK, - ACTIONS(6343), 1, + ACTIONS(4823), 1, + anon_sym_BANG, + ACTIONS(4996), 1, + anon_sym_into, + ACTIONS(4998), 1, + anon_sym_in, + ACTIONS(6264), 1, anon_sym_switch, - ACTIONS(6357), 1, + ACTIONS(6278), 1, anon_sym_with, - ACTIONS(6813), 1, + ACTIONS(6327), 1, anon_sym_as, - ACTIONS(7139), 1, + ACTIONS(8084), 1, anon_sym_QMARK, - ACTIONS(7145), 1, + ACTIONS(8090), 1, anon_sym_SLASH, - ACTIONS(7147), 1, + ACTIONS(8092), 1, anon_sym_CARET, - ACTIONS(7149), 1, + ACTIONS(8094), 1, anon_sym_PIPE, - ACTIONS(7151), 1, + ACTIONS(8096), 1, anon_sym_AMP, - ACTIONS(7155), 1, + ACTIONS(8100), 1, anon_sym_GT_GT, - ACTIONS(7161), 1, + ACTIONS(8106), 1, anon_sym_DOT_DOT, - ACTIONS(7163), 1, + ACTIONS(8108), 1, anon_sym_AMP_AMP, - ACTIONS(7165), 1, + ACTIONS(8110), 1, anon_sym_PIPE_PIPE, - ACTIONS(7167), 1, + ACTIONS(8112), 1, anon_sym_QMARK_QMARK, - ACTIONS(7169), 1, + ACTIONS(8114), 1, anon_sym_is, - ACTIONS(8190), 1, - anon_sym_RPAREN, - STATE(2485), 1, + STATE(2419), 1, sym_bracketed_argument_list, - STATE(3487), 1, + STATE(2958), 1, sym_argument_list, - ACTIONS(5306), 2, + ACTIONS(4825), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7137), 2, + ACTIONS(8082), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7141), 2, + ACTIONS(8086), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7143), 2, + ACTIONS(8088), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7153), 2, + ACTIONS(8098), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7157), 2, + ACTIONS(8102), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7159), 2, + ACTIONS(8104), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - STATE(5326), 9, + STATE(5272), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -660418,7 +655443,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [167064] = 40, + [162180] = 41, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -660439,72 +655464,74 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4100), 1, + ACTIONS(4753), 1, + anon_sym_LPAREN, + ACTIONS(4792), 1, anon_sym_DOT, - ACTIONS(4102), 1, + ACTIONS(4794), 1, anon_sym_DASH_GT, - ACTIONS(5264), 1, - anon_sym_LPAREN, - ACTIONS(5304), 1, - anon_sym_BANG, - ACTIONS(5573), 1, + ACTIONS(4819), 1, anon_sym_LBRACK, - ACTIONS(6343), 1, + ACTIONS(4823), 1, + anon_sym_BANG, + ACTIONS(5652), 1, + anon_sym_into, + ACTIONS(5686), 1, + anon_sym_in, + ACTIONS(6264), 1, anon_sym_switch, - ACTIONS(6357), 1, + ACTIONS(6278), 1, anon_sym_with, - ACTIONS(6813), 1, + ACTIONS(6327), 1, anon_sym_as, - ACTIONS(7139), 1, + ACTIONS(8084), 1, anon_sym_QMARK, - ACTIONS(7145), 1, + ACTIONS(8090), 1, anon_sym_SLASH, - ACTIONS(7147), 1, + ACTIONS(8092), 1, anon_sym_CARET, - ACTIONS(7149), 1, + ACTIONS(8094), 1, anon_sym_PIPE, - ACTIONS(7151), 1, + ACTIONS(8096), 1, anon_sym_AMP, - ACTIONS(7155), 1, + ACTIONS(8100), 1, anon_sym_GT_GT, - ACTIONS(7161), 1, + ACTIONS(8106), 1, anon_sym_DOT_DOT, - ACTIONS(7163), 1, + ACTIONS(8108), 1, anon_sym_AMP_AMP, - ACTIONS(7165), 1, + ACTIONS(8110), 1, anon_sym_PIPE_PIPE, - ACTIONS(7167), 1, + ACTIONS(8112), 1, anon_sym_QMARK_QMARK, - ACTIONS(7169), 1, + ACTIONS(8114), 1, anon_sym_is, - ACTIONS(8192), 1, - anon_sym_RPAREN, - STATE(2485), 1, + STATE(2419), 1, sym_bracketed_argument_list, - STATE(3487), 1, + STATE(2958), 1, sym_argument_list, - ACTIONS(5306), 2, + ACTIONS(4825), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7137), 2, + ACTIONS(8082), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7141), 2, + ACTIONS(8086), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7143), 2, + ACTIONS(8088), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7153), 2, + ACTIONS(8098), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7157), 2, + ACTIONS(8102), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7159), 2, + ACTIONS(8104), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - STATE(5327), 9, + STATE(5273), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -660514,7 +655541,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [167200] = 40, + [162319] = 29, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -660535,72 +655562,50 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4100), 1, + ACTIONS(4753), 1, + anon_sym_LPAREN, + ACTIONS(4792), 1, anon_sym_DOT, - ACTIONS(4102), 1, + ACTIONS(4794), 1, anon_sym_DASH_GT, - ACTIONS(5264), 1, - anon_sym_LPAREN, - ACTIONS(5304), 1, - anon_sym_BANG, - ACTIONS(5573), 1, + ACTIONS(4819), 1, anon_sym_LBRACK, - ACTIONS(6343), 1, + ACTIONS(4823), 1, + anon_sym_BANG, + ACTIONS(6264), 1, anon_sym_switch, - ACTIONS(6357), 1, + ACTIONS(6278), 1, anon_sym_with, - ACTIONS(6813), 1, - anon_sym_as, - ACTIONS(7139), 1, - anon_sym_QMARK, - ACTIONS(7145), 1, + ACTIONS(8090), 1, anon_sym_SLASH, - ACTIONS(7147), 1, - anon_sym_CARET, - ACTIONS(7149), 1, - anon_sym_PIPE, - ACTIONS(7151), 1, - anon_sym_AMP, - ACTIONS(7155), 1, + ACTIONS(8100), 1, anon_sym_GT_GT, - ACTIONS(7161), 1, + ACTIONS(8106), 1, anon_sym_DOT_DOT, - ACTIONS(7163), 1, - anon_sym_AMP_AMP, - ACTIONS(7165), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7167), 1, - anon_sym_QMARK_QMARK, - ACTIONS(7169), 1, - anon_sym_is, - ACTIONS(8194), 1, - anon_sym_RPAREN, - STATE(2485), 1, + STATE(2419), 1, sym_bracketed_argument_list, - STATE(3487), 1, + STATE(2958), 1, sym_argument_list, - ACTIONS(5306), 2, + ACTIONS(4825), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7137), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(7141), 2, + ACTIONS(8086), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7143), 2, + ACTIONS(8088), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7153), 2, + ACTIONS(8098), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7157), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(7159), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - STATE(5328), 9, + ACTIONS(5739), 6, + anon_sym_LT, + anon_sym_GT, + anon_sym_in, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_AMP, + STATE(5274), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -660610,7 +655615,19 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [167336] = 40, + ACTIONS(5737), 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_into, + anon_sym_as, + anon_sym_is, + [162434] = 26, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -660631,72 +655648,45 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4100), 1, + ACTIONS(4753), 1, + anon_sym_LPAREN, + ACTIONS(4792), 1, anon_sym_DOT, - ACTIONS(4102), 1, + ACTIONS(4794), 1, anon_sym_DASH_GT, - ACTIONS(5264), 1, - anon_sym_LPAREN, - ACTIONS(5304), 1, - anon_sym_BANG, - ACTIONS(5573), 1, + ACTIONS(4819), 1, anon_sym_LBRACK, - ACTIONS(6343), 1, + ACTIONS(4823), 1, + anon_sym_BANG, + ACTIONS(6264), 1, anon_sym_switch, - ACTIONS(6357), 1, + ACTIONS(6278), 1, anon_sym_with, - ACTIONS(6813), 1, - anon_sym_as, - ACTIONS(7139), 1, - anon_sym_QMARK, - ACTIONS(7145), 1, + ACTIONS(8090), 1, anon_sym_SLASH, - ACTIONS(7147), 1, - anon_sym_CARET, - ACTIONS(7149), 1, - anon_sym_PIPE, - ACTIONS(7151), 1, - anon_sym_AMP, - ACTIONS(7155), 1, - anon_sym_GT_GT, - ACTIONS(7161), 1, + ACTIONS(8106), 1, anon_sym_DOT_DOT, - ACTIONS(7163), 1, - anon_sym_AMP_AMP, - ACTIONS(7165), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7167), 1, - anon_sym_QMARK_QMARK, - ACTIONS(7169), 1, - anon_sym_is, - ACTIONS(8196), 1, - anon_sym_RPAREN, - STATE(2485), 1, + STATE(2419), 1, sym_bracketed_argument_list, - STATE(3487), 1, + STATE(2958), 1, sym_argument_list, - ACTIONS(5306), 2, + ACTIONS(4825), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7137), 2, + ACTIONS(8088), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(5739), 9, anon_sym_LT, anon_sym_GT, - ACTIONS(7141), 2, + anon_sym_in, + anon_sym_QMARK, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7143), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(7153), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - ACTIONS(7157), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(7159), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - STATE(5329), 9, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT_GT, + STATE(5275), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -660706,7 +655696,21 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [167472] = 40, + ACTIONS(5737), 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_into, + anon_sym_as, + anon_sym_is, + [162543] = 24, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -660727,82 +655731,67 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4100), 1, + ACTIONS(4753), 1, + anon_sym_LPAREN, + ACTIONS(4792), 1, anon_sym_DOT, - ACTIONS(4102), 1, + ACTIONS(4794), 1, anon_sym_DASH_GT, - ACTIONS(5264), 1, - anon_sym_LPAREN, - ACTIONS(5304), 1, - anon_sym_BANG, - ACTIONS(5573), 1, + ACTIONS(4819), 1, anon_sym_LBRACK, - ACTIONS(5882), 1, - anon_sym_in, - ACTIONS(6343), 1, + ACTIONS(4823), 1, + anon_sym_BANG, + ACTIONS(6264), 1, anon_sym_switch, - ACTIONS(6357), 1, + ACTIONS(6278), 1, anon_sym_with, - ACTIONS(6813), 1, - anon_sym_as, - ACTIONS(8200), 1, - anon_sym_QMARK, - ACTIONS(8206), 1, - anon_sym_SLASH, - ACTIONS(8208), 1, - anon_sym_CARET, - ACTIONS(8210), 1, - anon_sym_PIPE, - ACTIONS(8212), 1, - anon_sym_AMP, - ACTIONS(8216), 1, - anon_sym_GT_GT, - ACTIONS(8222), 1, + ACTIONS(8106), 1, anon_sym_DOT_DOT, - ACTIONS(8224), 1, - anon_sym_AMP_AMP, - ACTIONS(8226), 1, - anon_sym_PIPE_PIPE, - ACTIONS(8228), 1, - anon_sym_QMARK_QMARK, - ACTIONS(8230), 1, - anon_sym_is, - STATE(2485), 1, + STATE(2419), 1, sym_bracketed_argument_list, - STATE(3487), 1, + STATE(2958), 1, sym_argument_list, - ACTIONS(5306), 2, + ACTIONS(4825), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(8198), 2, + STATE(5276), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + ACTIONS(5739), 10, anon_sym_LT, anon_sym_GT, - ACTIONS(8202), 2, + anon_sym_in, + anon_sym_QMARK, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(8204), 2, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT_GT, + ACTIONS(5737), 15, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8214), 2, + anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(8218), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(8220), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - STATE(5330), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - [167608] = 40, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, + anon_sym_into, + anon_sym_as, + anon_sym_is, + [162648] = 35, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -660823,72 +655812,68 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4100), 1, + ACTIONS(4753), 1, + anon_sym_LPAREN, + ACTIONS(4792), 1, anon_sym_DOT, - ACTIONS(4102), 1, + ACTIONS(4794), 1, anon_sym_DASH_GT, - ACTIONS(5264), 1, - anon_sym_LPAREN, - ACTIONS(5304), 1, - anon_sym_BANG, - ACTIONS(5573), 1, + ACTIONS(4819), 1, anon_sym_LBRACK, - ACTIONS(6343), 1, + ACTIONS(4823), 1, + anon_sym_BANG, + ACTIONS(6264), 1, anon_sym_switch, - ACTIONS(6357), 1, + ACTIONS(6278), 1, anon_sym_with, - ACTIONS(6690), 1, + ACTIONS(6327), 1, + anon_sym_as, + ACTIONS(8090), 1, anon_sym_SLASH, - ACTIONS(6692), 1, - anon_sym_CARET, - ACTIONS(6694), 1, - anon_sym_PIPE, - ACTIONS(6696), 1, + ACTIONS(8096), 1, anon_sym_AMP, - ACTIONS(6700), 1, + ACTIONS(8100), 1, anon_sym_GT_GT, - ACTIONS(6708), 1, - anon_sym_AMP_AMP, - ACTIONS(6710), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6712), 1, - anon_sym_QMARK_QMARK, - ACTIONS(7037), 1, - anon_sym_as, - ACTIONS(8232), 1, - anon_sym_COLON, - ACTIONS(8234), 1, - anon_sym_QMARK, - ACTIONS(8236), 1, + ACTIONS(8106), 1, anon_sym_DOT_DOT, - ACTIONS(8238), 1, + ACTIONS(8114), 1, anon_sym_is, - STATE(2485), 1, + STATE(2419), 1, sym_bracketed_argument_list, - STATE(3487), 1, + STATE(2958), 1, sym_argument_list, - ACTIONS(5306), 2, + ACTIONS(4825), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6682), 2, + ACTIONS(8082), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(6686), 2, + ACTIONS(8086), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6688), 2, + ACTIONS(8088), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(6698), 2, + ACTIONS(8098), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(6702), 2, + ACTIONS(8102), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6704), 2, + ACTIONS(8104), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - STATE(5331), 9, + ACTIONS(5739), 3, + anon_sym_in, + anon_sym_QMARK, + anon_sym_PIPE, + ACTIONS(5737), 5, + anon_sym_CARET, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, + anon_sym_into, + STATE(5277), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -660898,7 +655883,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [167744] = 40, + [162775] = 36, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -660919,72 +655904,69 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4100), 1, + ACTIONS(4753), 1, + anon_sym_LPAREN, + ACTIONS(4792), 1, anon_sym_DOT, - ACTIONS(4102), 1, + ACTIONS(4794), 1, anon_sym_DASH_GT, - ACTIONS(5264), 1, - anon_sym_LPAREN, - ACTIONS(5304), 1, - anon_sym_BANG, - ACTIONS(5573), 1, + ACTIONS(4819), 1, anon_sym_LBRACK, - ACTIONS(6343), 1, + ACTIONS(4823), 1, + anon_sym_BANG, + ACTIONS(6264), 1, anon_sym_switch, - ACTIONS(6357), 1, + ACTIONS(6278), 1, anon_sym_with, - ACTIONS(7037), 1, + ACTIONS(6327), 1, anon_sym_as, - ACTIONS(8234), 1, - anon_sym_QMARK, - ACTIONS(8236), 1, - anon_sym_DOT_DOT, - ACTIONS(8238), 1, - anon_sym_is, - ACTIONS(8240), 1, - anon_sym_COLON, - ACTIONS(8248), 1, + ACTIONS(8090), 1, anon_sym_SLASH, - ACTIONS(8250), 1, + ACTIONS(8092), 1, anon_sym_CARET, - ACTIONS(8252), 1, - anon_sym_PIPE, - ACTIONS(8254), 1, + ACTIONS(8096), 1, anon_sym_AMP, - ACTIONS(8258), 1, + ACTIONS(8100), 1, anon_sym_GT_GT, - ACTIONS(8264), 1, - anon_sym_AMP_AMP, - ACTIONS(8266), 1, - anon_sym_PIPE_PIPE, - ACTIONS(8268), 1, - anon_sym_QMARK_QMARK, - STATE(2485), 1, + ACTIONS(8106), 1, + anon_sym_DOT_DOT, + ACTIONS(8114), 1, + anon_sym_is, + STATE(2419), 1, sym_bracketed_argument_list, - STATE(3487), 1, + STATE(2958), 1, sym_argument_list, - ACTIONS(5306), 2, + ACTIONS(4825), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(8242), 2, + ACTIONS(8082), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(8244), 2, + ACTIONS(8086), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(8246), 2, + ACTIONS(8088), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8256), 2, + ACTIONS(8098), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(8260), 2, + ACTIONS(8102), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(8262), 2, + ACTIONS(8104), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - STATE(5332), 9, + ACTIONS(5739), 3, + anon_sym_in, + anon_sym_QMARK, + anon_sym_PIPE, + ACTIONS(5737), 4, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, + anon_sym_into, + STATE(5278), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -660994,7 +655976,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [167880] = 14, + [162904] = 34, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -661015,56 +655997,77 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8270), 1, - anon_sym_RPAREN, - 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, - ACTIONS(4862), 11, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, + ACTIONS(4753), 1, + anon_sym_LPAREN, + ACTIONS(4792), 1, + anon_sym_DOT, + ACTIONS(4794), 1, + anon_sym_DASH_GT, + ACTIONS(4819), 1, + anon_sym_LBRACK, + ACTIONS(4823), 1, anon_sym_BANG, - anon_sym_PLUS, - anon_sym_DASH, + ACTIONS(6264), 1, + anon_sym_switch, + ACTIONS(6278), 1, + anon_sym_with, + ACTIONS(6327), 1, + anon_sym_as, + ACTIONS(8090), 1, anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, + ACTIONS(8100), 1, anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(4860), 24, - anon_sym_LBRACK, - anon_sym_COLON, - anon_sym_COMMA, - anon_sym_LPAREN, + ACTIONS(8106), 1, + anon_sym_DOT_DOT, + ACTIONS(8114), 1, + anon_sym_is, + STATE(2419), 1, + sym_bracketed_argument_list, + STATE(2958), 1, + sym_argument_list, + ACTIONS(4825), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + ACTIONS(8082), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(8086), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(8088), 2, anon_sym_STAR, anon_sym_PERCENT, - anon_sym_CARET, + ACTIONS(8098), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, + ACTIONS(8102), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + ACTIONS(8104), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - anon_sym_switch, - anon_sym_DOT_DOT, + ACTIONS(5739), 4, + anon_sym_in, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_AMP, + ACTIONS(5737), 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, - [167964] = 40, + anon_sym_into, + STATE(5279), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + [163029] = 27, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -661085,72 +656088,46 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4100), 1, + ACTIONS(4753), 1, + anon_sym_LPAREN, + ACTIONS(4792), 1, anon_sym_DOT, - ACTIONS(4102), 1, + ACTIONS(4794), 1, anon_sym_DASH_GT, - ACTIONS(5264), 1, - anon_sym_LPAREN, - ACTIONS(5304), 1, - anon_sym_BANG, - ACTIONS(5573), 1, + ACTIONS(4819), 1, anon_sym_LBRACK, - ACTIONS(6343), 1, + ACTIONS(4823), 1, + anon_sym_BANG, + ACTIONS(6264), 1, anon_sym_switch, - ACTIONS(6357), 1, + ACTIONS(6278), 1, anon_sym_with, - ACTIONS(6813), 1, - anon_sym_as, - ACTIONS(6815), 1, - anon_sym_is, - ACTIONS(7183), 1, + ACTIONS(8090), 1, anon_sym_SLASH, - ACTIONS(7187), 1, - anon_sym_GT_GT, - ACTIONS(7189), 1, + ACTIONS(8106), 1, anon_sym_DOT_DOT, - ACTIONS(7195), 1, - anon_sym_AMP, - ACTIONS(7201), 1, - anon_sym_CARET, - ACTIONS(7203), 1, - anon_sym_PIPE, - ACTIONS(7205), 1, - anon_sym_AMP_AMP, - ACTIONS(7207), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7209), 1, - anon_sym_QMARK_QMARK, - ACTIONS(7237), 1, - anon_sym_QMARK, - ACTIONS(8272), 1, - anon_sym_SEMI, - STATE(2485), 1, + STATE(2419), 1, sym_bracketed_argument_list, - STATE(3487), 1, + STATE(2958), 1, sym_argument_list, - ACTIONS(5306), 2, + ACTIONS(4825), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7179), 2, + ACTIONS(8086), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7181), 2, + ACTIONS(8088), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7185), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - ACTIONS(7193), 2, + ACTIONS(5739), 7, anon_sym_LT, anon_sym_GT, - ACTIONS(7197), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(7199), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - STATE(5334), 9, + anon_sym_in, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT_GT, + STATE(5280), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -661160,7 +656137,21 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [168100] = 40, + ACTIONS(5737), 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_into, + anon_sym_as, + anon_sym_is, + [163140] = 33, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -661181,72 +656172,66 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4100), 1, + ACTIONS(4753), 1, + anon_sym_LPAREN, + ACTIONS(4792), 1, anon_sym_DOT, - ACTIONS(4102), 1, + ACTIONS(4794), 1, anon_sym_DASH_GT, - ACTIONS(5264), 1, - anon_sym_LPAREN, - ACTIONS(5304), 1, - anon_sym_BANG, - ACTIONS(5573), 1, + ACTIONS(4819), 1, anon_sym_LBRACK, - ACTIONS(6343), 1, + ACTIONS(4823), 1, + anon_sym_BANG, + ACTIONS(6264), 1, anon_sym_switch, - ACTIONS(6357), 1, + ACTIONS(6278), 1, anon_sym_with, - ACTIONS(7037), 1, + ACTIONS(6327), 1, anon_sym_as, - ACTIONS(8234), 1, - anon_sym_QMARK, - ACTIONS(8236), 1, - anon_sym_DOT_DOT, - ACTIONS(8238), 1, - anon_sym_is, - ACTIONS(8248), 1, + ACTIONS(8090), 1, anon_sym_SLASH, - ACTIONS(8250), 1, - anon_sym_CARET, - ACTIONS(8252), 1, - anon_sym_PIPE, - ACTIONS(8254), 1, - anon_sym_AMP, - ACTIONS(8258), 1, + ACTIONS(8100), 1, anon_sym_GT_GT, - ACTIONS(8264), 1, - anon_sym_AMP_AMP, - ACTIONS(8266), 1, - anon_sym_PIPE_PIPE, - ACTIONS(8268), 1, - anon_sym_QMARK_QMARK, - ACTIONS(8274), 1, - anon_sym_COLON, - STATE(2485), 1, + ACTIONS(8106), 1, + anon_sym_DOT_DOT, + ACTIONS(8114), 1, + anon_sym_is, + STATE(2419), 1, sym_bracketed_argument_list, - STATE(3487), 1, + STATE(2958), 1, sym_argument_list, - ACTIONS(5306), 2, + ACTIONS(4825), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(8242), 2, + ACTIONS(8082), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(8244), 2, + ACTIONS(8086), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(8246), 2, + ACTIONS(8088), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8256), 2, + ACTIONS(8098), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(8260), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(8262), 2, + ACTIONS(8104), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - STATE(5335), 9, + ACTIONS(5739), 4, + anon_sym_in, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_AMP, + ACTIONS(5737), 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_into, + STATE(5281), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -661256,7 +656241,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [168236] = 40, + [163263] = 37, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -661277,72 +656262,70 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4100), 1, + ACTIONS(4753), 1, + anon_sym_LPAREN, + ACTIONS(4792), 1, anon_sym_DOT, - ACTIONS(4102), 1, + ACTIONS(4794), 1, anon_sym_DASH_GT, - ACTIONS(5264), 1, - anon_sym_LPAREN, - ACTIONS(5304), 1, - anon_sym_BANG, - ACTIONS(5573), 1, + ACTIONS(4819), 1, anon_sym_LBRACK, - ACTIONS(5858), 1, - anon_sym_equals, - ACTIONS(6343), 1, + ACTIONS(4823), 1, + anon_sym_BANG, + ACTIONS(6264), 1, anon_sym_switch, - ACTIONS(6357), 1, + ACTIONS(6278), 1, anon_sym_with, - ACTIONS(8278), 1, - anon_sym_QMARK, - ACTIONS(8284), 1, + ACTIONS(6327), 1, + anon_sym_as, + ACTIONS(8090), 1, anon_sym_SLASH, - ACTIONS(8286), 1, + ACTIONS(8092), 1, anon_sym_CARET, - ACTIONS(8288), 1, + ACTIONS(8094), 1, anon_sym_PIPE, - ACTIONS(8290), 1, + ACTIONS(8096), 1, anon_sym_AMP, - ACTIONS(8294), 1, + ACTIONS(8100), 1, anon_sym_GT_GT, - ACTIONS(8300), 1, + ACTIONS(8106), 1, anon_sym_DOT_DOT, - ACTIONS(8302), 1, - anon_sym_AMP_AMP, - ACTIONS(8304), 1, - anon_sym_PIPE_PIPE, - ACTIONS(8306), 1, - anon_sym_QMARK_QMARK, - ACTIONS(8308), 1, - anon_sym_as, - ACTIONS(8310), 1, + ACTIONS(8114), 1, anon_sym_is, - STATE(2485), 1, + STATE(2419), 1, sym_bracketed_argument_list, - STATE(3487), 1, + STATE(2958), 1, sym_argument_list, - ACTIONS(5306), 2, + ACTIONS(4825), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(8276), 2, + ACTIONS(5739), 2, + anon_sym_in, + anon_sym_QMARK, + ACTIONS(8082), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(8280), 2, + ACTIONS(8086), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(8282), 2, + ACTIONS(8088), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8292), 2, + ACTIONS(8098), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(8296), 2, + ACTIONS(8102), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(8298), 2, + ACTIONS(8104), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - STATE(5336), 9, + ACTIONS(5737), 4, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, + anon_sym_into, + STATE(5282), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -661352,7 +656335,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [168372] = 40, + [163394] = 38, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -661373,72 +656356,71 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4100), 1, + ACTIONS(4753), 1, + anon_sym_LPAREN, + ACTIONS(4792), 1, anon_sym_DOT, - ACTIONS(4102), 1, + ACTIONS(4794), 1, anon_sym_DASH_GT, - ACTIONS(5264), 1, - anon_sym_LPAREN, - ACTIONS(5304), 1, - anon_sym_BANG, - ACTIONS(5573), 1, + ACTIONS(4819), 1, anon_sym_LBRACK, - ACTIONS(6343), 1, + ACTIONS(4823), 1, + anon_sym_BANG, + ACTIONS(6264), 1, anon_sym_switch, - ACTIONS(6357), 1, + ACTIONS(6278), 1, anon_sym_with, - ACTIONS(6813), 1, + ACTIONS(6327), 1, anon_sym_as, - ACTIONS(7139), 1, - anon_sym_QMARK, - ACTIONS(7145), 1, + ACTIONS(8090), 1, anon_sym_SLASH, - ACTIONS(7147), 1, + ACTIONS(8092), 1, anon_sym_CARET, - ACTIONS(7149), 1, + ACTIONS(8094), 1, anon_sym_PIPE, - ACTIONS(7151), 1, + ACTIONS(8096), 1, anon_sym_AMP, - ACTIONS(7155), 1, + ACTIONS(8100), 1, anon_sym_GT_GT, - ACTIONS(7161), 1, + ACTIONS(8106), 1, anon_sym_DOT_DOT, - ACTIONS(7163), 1, + ACTIONS(8108), 1, anon_sym_AMP_AMP, - ACTIONS(7165), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7167), 1, - anon_sym_QMARK_QMARK, - ACTIONS(7169), 1, + ACTIONS(8114), 1, anon_sym_is, - ACTIONS(8312), 1, - anon_sym_RPAREN, - STATE(2485), 1, + STATE(2419), 1, sym_bracketed_argument_list, - STATE(3487), 1, + STATE(2958), 1, sym_argument_list, - ACTIONS(5306), 2, + ACTIONS(4825), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7137), 2, + ACTIONS(5739), 2, + anon_sym_in, + anon_sym_QMARK, + ACTIONS(8082), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7141), 2, + ACTIONS(8086), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7143), 2, + ACTIONS(8088), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7153), 2, + ACTIONS(8098), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7157), 2, + ACTIONS(8102), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7159), 2, + ACTIONS(8104), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - STATE(5337), 9, + ACTIONS(5737), 3, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, + anon_sym_into, + STATE(5283), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -661448,7 +656430,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [168508] = 40, + [163527] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -661469,72 +656451,73 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4100), 1, + ACTIONS(4753), 1, + anon_sym_LPAREN, + ACTIONS(4792), 1, anon_sym_DOT, - ACTIONS(4102), 1, + ACTIONS(4794), 1, anon_sym_DASH_GT, - ACTIONS(5264), 1, - anon_sym_LPAREN, - ACTIONS(5304), 1, - anon_sym_BANG, - ACTIONS(5573), 1, + ACTIONS(4819), 1, anon_sym_LBRACK, - ACTIONS(6343), 1, + ACTIONS(4823), 1, + anon_sym_BANG, + ACTIONS(5737), 1, + anon_sym_into, + ACTIONS(6264), 1, anon_sym_switch, - ACTIONS(6357), 1, + ACTIONS(6278), 1, anon_sym_with, - ACTIONS(6813), 1, + ACTIONS(6327), 1, anon_sym_as, - ACTIONS(7139), 1, - anon_sym_QMARK, - ACTIONS(7145), 1, + ACTIONS(8090), 1, anon_sym_SLASH, - ACTIONS(7147), 1, + ACTIONS(8092), 1, anon_sym_CARET, - ACTIONS(7149), 1, + ACTIONS(8094), 1, anon_sym_PIPE, - ACTIONS(7151), 1, + ACTIONS(8096), 1, anon_sym_AMP, - ACTIONS(7155), 1, + ACTIONS(8100), 1, anon_sym_GT_GT, - ACTIONS(7161), 1, + ACTIONS(8106), 1, anon_sym_DOT_DOT, - ACTIONS(7163), 1, + ACTIONS(8108), 1, anon_sym_AMP_AMP, - ACTIONS(7165), 1, + ACTIONS(8110), 1, anon_sym_PIPE_PIPE, - ACTIONS(7167), 1, + ACTIONS(8112), 1, anon_sym_QMARK_QMARK, - ACTIONS(7169), 1, + ACTIONS(8114), 1, anon_sym_is, - ACTIONS(8314), 1, - anon_sym_RPAREN, - STATE(2485), 1, + STATE(2419), 1, sym_bracketed_argument_list, - STATE(3487), 1, + STATE(2958), 1, sym_argument_list, - ACTIONS(5306), 2, + ACTIONS(4825), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7137), 2, + ACTIONS(5739), 2, + anon_sym_in, + anon_sym_QMARK, + ACTIONS(8082), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7141), 2, + ACTIONS(8086), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7143), 2, + ACTIONS(8088), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7153), 2, + ACTIONS(8098), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7157), 2, + ACTIONS(8102), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7159), 2, + ACTIONS(8104), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - STATE(5338), 9, + STATE(5284), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -661544,7 +656527,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [168644] = 40, + [163664] = 21, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -661565,72 +656548,31 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4100), 1, - anon_sym_DOT, - ACTIONS(4102), 1, - anon_sym_DASH_GT, - ACTIONS(5264), 1, + ACTIONS(7846), 1, + sym__identifier_token, + ACTIONS(7850), 1, anon_sym_LPAREN, - ACTIONS(5304), 1, + ACTIONS(7852), 1, anon_sym_BANG, - ACTIONS(5573), 1, - anon_sym_LBRACK, - ACTIONS(6343), 1, - anon_sym_switch, - ACTIONS(6357), 1, - anon_sym_with, - ACTIONS(6813), 1, - anon_sym_as, - ACTIONS(7139), 1, - anon_sym_QMARK, - ACTIONS(7145), 1, - anon_sym_SLASH, - ACTIONS(7147), 1, - anon_sym_CARET, - ACTIONS(7149), 1, - anon_sym_PIPE, - ACTIONS(7151), 1, - anon_sym_AMP, - ACTIONS(7155), 1, - anon_sym_GT_GT, - ACTIONS(7161), 1, - anon_sym_DOT_DOT, - ACTIONS(7163), 1, - anon_sym_AMP_AMP, - ACTIONS(7165), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7167), 1, - anon_sym_QMARK_QMARK, - ACTIONS(7169), 1, - anon_sym_is, - ACTIONS(8316), 1, - anon_sym_RPAREN, - STATE(2485), 1, - sym_bracketed_argument_list, - STATE(3487), 1, - sym_argument_list, - ACTIONS(5306), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(7137), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(7141), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(7143), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(7153), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - ACTIONS(7157), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(7159), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - STATE(5339), 9, + ACTIONS(7856), 1, + anon_sym_SQUOTE, + ACTIONS(7858), 1, + sym_integer_literal, + STATE(6436), 1, + sym__reserved_identifier, + STATE(6569), 1, + sym__preproc_expression, + ACTIONS(7854), 2, + anon_sym_true, + anon_sym_false, + STATE(6482), 6, + sym_character_literal, + sym_boolean_literal, + sym_identifier, + sym_preproc_parenthesized_expression, + sym_preproc_unary_expression, + sym_preproc_binary_expression, + STATE(5285), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -661640,7 +656582,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [168780] = 40, + ACTIONS(7848), 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, + [163763] = 21, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -661661,72 +656626,31 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4100), 1, - anon_sym_DOT, - ACTIONS(4102), 1, - anon_sym_DASH_GT, - ACTIONS(5264), 1, + ACTIONS(7846), 1, + sym__identifier_token, + ACTIONS(7850), 1, anon_sym_LPAREN, - ACTIONS(5304), 1, + ACTIONS(7852), 1, anon_sym_BANG, - ACTIONS(5573), 1, - anon_sym_LBRACK, - ACTIONS(6343), 1, - anon_sym_switch, - ACTIONS(6357), 1, - anon_sym_with, - ACTIONS(6813), 1, - anon_sym_as, - ACTIONS(6815), 1, - anon_sym_is, - ACTIONS(7183), 1, - anon_sym_SLASH, - ACTIONS(7187), 1, - anon_sym_GT_GT, - ACTIONS(7189), 1, - anon_sym_DOT_DOT, - ACTIONS(7195), 1, - anon_sym_AMP, - ACTIONS(7201), 1, - anon_sym_CARET, - ACTIONS(7203), 1, - anon_sym_PIPE, - ACTIONS(7205), 1, - anon_sym_AMP_AMP, - ACTIONS(7207), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7209), 1, - anon_sym_QMARK_QMARK, - ACTIONS(7237), 1, - anon_sym_QMARK, - ACTIONS(8318), 1, - anon_sym_SEMI, - STATE(2485), 1, - sym_bracketed_argument_list, - STATE(3487), 1, - sym_argument_list, - ACTIONS(5306), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(7179), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(7181), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(7185), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - ACTIONS(7193), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(7197), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(7199), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - STATE(5340), 9, + ACTIONS(7856), 1, + anon_sym_SQUOTE, + ACTIONS(7858), 1, + sym_integer_literal, + STATE(6436), 1, + sym__reserved_identifier, + STATE(6518), 1, + sym__preproc_expression, + ACTIONS(7854), 2, + anon_sym_true, + anon_sym_false, + STATE(6482), 6, + sym_character_literal, + sym_boolean_literal, + sym_identifier, + sym_preproc_parenthesized_expression, + sym_preproc_unary_expression, + sym_preproc_binary_expression, + STATE(5286), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -661736,7 +656660,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [168916] = 29, + ACTIONS(7848), 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, + [163862] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -661757,49 +656704,82 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4100), 1, - anon_sym_DOT, - ACTIONS(4102), 1, - anon_sym_DASH_GT, - ACTIONS(5264), 1, - anon_sym_LPAREN, - ACTIONS(5304), 1, + ACTIONS(8116), 1, + anon_sym_and, + STATE(5287), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + ACTIONS(6097), 12, + anon_sym_LT, + anon_sym_GT, + anon_sym_in, + anon_sym_QMARK, anon_sym_BANG, - ACTIONS(5573), 1, - anon_sym_LBRACK, - ACTIONS(6343), 1, - anon_sym_switch, - ACTIONS(6357), 1, - anon_sym_with, - ACTIONS(8236), 1, - anon_sym_DOT_DOT, - ACTIONS(8248), 1, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_SLASH, - ACTIONS(8258), 1, + anon_sym_PIPE, + anon_sym_AMP, anon_sym_GT_GT, - STATE(2485), 1, - sym_bracketed_argument_list, - STATE(3487), 1, - sym_argument_list, - ACTIONS(5306), 2, + anon_sym_DOT, + ACTIONS(6095), 24, + anon_sym_LBRACK, + anon_sym_LPAREN, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(8244), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(8246), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8256), 2, + anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(5664), 5, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_AMP, - STATE(5341), 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_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, + [163947] = 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(8116), 1, + anon_sym_and, + ACTIONS(8118), 1, + anon_sym_or, + STATE(5288), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -661809,19 +656789,44 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5660), 11, - anon_sym_COLON, + ACTIONS(5360), 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(5358), 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_into, anon_sym_as, anon_sym_is, - [169030] = 40, + anon_sym_DASH_GT, + anon_sym_with, + [164034] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -661842,72 +656847,73 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4100), 1, + ACTIONS(4042), 1, anon_sym_DOT, - ACTIONS(4102), 1, + ACTIONS(4044), 1, anon_sym_DASH_GT, - ACTIONS(5264), 1, + ACTIONS(5257), 1, anon_sym_LPAREN, - ACTIONS(5304), 1, + ACTIONS(5302), 1, anon_sym_BANG, - ACTIONS(5573), 1, + ACTIONS(5549), 1, anon_sym_LBRACK, - ACTIONS(6343), 1, + ACTIONS(6355), 1, anon_sym_switch, - ACTIONS(6357), 1, + ACTIONS(6369), 1, anon_sym_with, - ACTIONS(7037), 1, + ACTIONS(6811), 1, anon_sym_as, - ACTIONS(8234), 1, + ACTIONS(7231), 1, anon_sym_QMARK, - ACTIONS(8236), 1, - anon_sym_DOT_DOT, - ACTIONS(8238), 1, - anon_sym_is, - ACTIONS(8248), 1, + ACTIONS(7237), 1, anon_sym_SLASH, - ACTIONS(8250), 1, + ACTIONS(7239), 1, anon_sym_CARET, - ACTIONS(8252), 1, + ACTIONS(7241), 1, anon_sym_PIPE, - ACTIONS(8254), 1, + ACTIONS(7243), 1, anon_sym_AMP, - ACTIONS(8258), 1, + ACTIONS(7247), 1, anon_sym_GT_GT, - ACTIONS(8264), 1, + ACTIONS(7253), 1, + anon_sym_DOT_DOT, + ACTIONS(7255), 1, anon_sym_AMP_AMP, - ACTIONS(8266), 1, + ACTIONS(7257), 1, anon_sym_PIPE_PIPE, - ACTIONS(8268), 1, + ACTIONS(7259), 1, anon_sym_QMARK_QMARK, - ACTIONS(8320), 1, - anon_sym_COLON, - STATE(2485), 1, + ACTIONS(7261), 1, + anon_sym_is, + STATE(2467), 1, sym_bracketed_argument_list, - STATE(3487), 1, + STATE(3381), 1, sym_argument_list, - ACTIONS(5306), 2, + ACTIONS(5304), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(8242), 2, + ACTIONS(7229), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(8244), 2, + ACTIONS(7233), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(8246), 2, + ACTIONS(7235), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8256), 2, + ACTIONS(7245), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(8260), 2, + ACTIONS(7249), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(8262), 2, + ACTIONS(7251), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - STATE(5342), 9, + ACTIONS(8120), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + STATE(5289), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -661917,7 +656923,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [169166] = 26, + [164171] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -661938,44 +656944,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4100), 1, - anon_sym_DOT, - ACTIONS(4102), 1, - anon_sym_DASH_GT, - ACTIONS(5264), 1, - anon_sym_LPAREN, - ACTIONS(5304), 1, - anon_sym_BANG, - ACTIONS(5573), 1, - anon_sym_LBRACK, - ACTIONS(6343), 1, - anon_sym_switch, - ACTIONS(6357), 1, - anon_sym_with, - ACTIONS(8236), 1, - anon_sym_DOT_DOT, - ACTIONS(8248), 1, - anon_sym_SLASH, - STATE(2485), 1, - sym_bracketed_argument_list, - STATE(3487), 1, - sym_argument_list, - ACTIONS(5306), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(8246), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(5664), 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(5343), 9, + ACTIONS(8076), 1, + anon_sym_and, + STATE(5290), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -661985,8 +656956,26 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5660), 13, + ACTIONS(6097), 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(6095), 25, + 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, @@ -661994,12 +656983,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_when, + 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, - [169274] = 24, + anon_sym_DASH_GT, + anon_sym_with, + [164256] = 21, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -662020,40 +657015,31 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4100), 1, - anon_sym_DOT, - ACTIONS(4102), 1, - anon_sym_DASH_GT, - ACTIONS(5264), 1, + ACTIONS(7846), 1, + sym__identifier_token, + ACTIONS(7850), 1, anon_sym_LPAREN, - ACTIONS(5304), 1, + ACTIONS(7852), 1, anon_sym_BANG, - ACTIONS(5573), 1, - anon_sym_LBRACK, - ACTIONS(6343), 1, - anon_sym_switch, - ACTIONS(6357), 1, - anon_sym_with, - ACTIONS(8236), 1, - anon_sym_DOT_DOT, - STATE(2485), 1, - sym_bracketed_argument_list, - STATE(3487), 1, - sym_argument_list, - ACTIONS(5306), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5664), 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(5344), 9, + ACTIONS(7856), 1, + anon_sym_SQUOTE, + ACTIONS(7858), 1, + sym_integer_literal, + STATE(6436), 1, + sym__reserved_identifier, + STATE(6463), 1, + sym__preproc_expression, + ACTIONS(7854), 2, + anon_sym_true, + anon_sym_false, + STATE(6482), 6, + sym_character_literal, + sym_boolean_literal, + sym_identifier, + sym_preproc_parenthesized_expression, + sym_preproc_unary_expression, + sym_preproc_binary_expression, + STATE(5291), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -662063,23 +657049,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5660), 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, - anon_sym_LT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_QMARK_QMARK, - anon_sym_as, - anon_sym_is, - [169378] = 35, + ACTIONS(7848), 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, + [164355] = 21, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -662100,67 +657093,265 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4100), 1, - anon_sym_DOT, - ACTIONS(4102), 1, - anon_sym_DASH_GT, - ACTIONS(5264), 1, + ACTIONS(7846), 1, + sym__identifier_token, + ACTIONS(7850), 1, anon_sym_LPAREN, - ACTIONS(5304), 1, + ACTIONS(7852), 1, anon_sym_BANG, - ACTIONS(5573), 1, - anon_sym_LBRACK, - ACTIONS(6343), 1, - anon_sym_switch, - ACTIONS(6357), 1, - anon_sym_with, - ACTIONS(7037), 1, - anon_sym_as, - ACTIONS(8236), 1, - anon_sym_DOT_DOT, - ACTIONS(8238), 1, - anon_sym_is, - ACTIONS(8248), 1, - anon_sym_SLASH, - ACTIONS(8254), 1, - anon_sym_AMP, - ACTIONS(8258), 1, - anon_sym_GT_GT, - STATE(2485), 1, - sym_bracketed_argument_list, - STATE(3487), 1, - sym_argument_list, - ACTIONS(5306), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5664), 2, - anon_sym_QMARK, - anon_sym_PIPE, - ACTIONS(8242), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(8244), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(8246), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(8256), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - ACTIONS(8260), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(8262), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(5660), 5, - anon_sym_COLON, - anon_sym_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_QMARK_QMARK, - STATE(5345), 9, + ACTIONS(7856), 1, + anon_sym_SQUOTE, + ACTIONS(7858), 1, + sym_integer_literal, + STATE(6436), 1, + sym__reserved_identifier, + STATE(6467), 1, + sym__preproc_expression, + ACTIONS(7854), 2, + anon_sym_true, + anon_sym_false, + STATE(6482), 6, + sym_character_literal, + sym_boolean_literal, + sym_identifier, + sym_preproc_parenthesized_expression, + sym_preproc_unary_expression, + sym_preproc_binary_expression, + STATE(5292), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + ACTIONS(7848), 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, + [164454] = 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(7846), 1, + sym__identifier_token, + ACTIONS(7850), 1, + anon_sym_LPAREN, + ACTIONS(7852), 1, + anon_sym_BANG, + ACTIONS(7856), 1, + anon_sym_SQUOTE, + ACTIONS(7858), 1, + sym_integer_literal, + STATE(6436), 1, + sym__reserved_identifier, + STATE(6472), 1, + sym__preproc_expression, + ACTIONS(7854), 2, + anon_sym_true, + anon_sym_false, + STATE(6482), 6, + sym_character_literal, + sym_boolean_literal, + sym_identifier, + sym_preproc_parenthesized_expression, + sym_preproc_unary_expression, + sym_preproc_binary_expression, + STATE(5293), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + ACTIONS(7848), 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, + [164553] = 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(7846), 1, + sym__identifier_token, + ACTIONS(7850), 1, + anon_sym_LPAREN, + ACTIONS(7852), 1, + anon_sym_BANG, + ACTIONS(7856), 1, + anon_sym_SQUOTE, + ACTIONS(7858), 1, + sym_integer_literal, + STATE(6436), 1, + sym__reserved_identifier, + STATE(6495), 1, + sym__preproc_expression, + ACTIONS(7854), 2, + anon_sym_true, + anon_sym_false, + STATE(6482), 6, + sym_character_literal, + sym_boolean_literal, + sym_identifier, + sym_preproc_parenthesized_expression, + sym_preproc_unary_expression, + sym_preproc_binary_expression, + STATE(5294), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + ACTIONS(7848), 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, + [164652] = 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(7846), 1, + sym__identifier_token, + ACTIONS(7850), 1, + anon_sym_LPAREN, + ACTIONS(7852), 1, + anon_sym_BANG, + ACTIONS(7856), 1, + anon_sym_SQUOTE, + ACTIONS(7858), 1, + sym_integer_literal, + STATE(6436), 1, + sym__reserved_identifier, + STATE(6499), 1, + sym__preproc_expression, + ACTIONS(7854), 2, + anon_sym_true, + anon_sym_false, + STATE(6482), 6, + sym_character_literal, + sym_boolean_literal, + sym_identifier, + sym_preproc_parenthesized_expression, + sym_preproc_unary_expression, + sym_preproc_binary_expression, + STATE(5295), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -662170,7 +657361,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [169504] = 14, + ACTIONS(7848), 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, + [164751] = 21, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -662191,9 +657405,31 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8322), 1, - anon_sym_and, - STATE(5346), 9, + ACTIONS(7846), 1, + sym__identifier_token, + ACTIONS(7850), 1, + anon_sym_LPAREN, + ACTIONS(7852), 1, + anon_sym_BANG, + ACTIONS(7856), 1, + anon_sym_SQUOTE, + ACTIONS(7858), 1, + sym_integer_literal, + STATE(6436), 1, + sym__reserved_identifier, + STATE(6506), 1, + sym__preproc_expression, + ACTIONS(7854), 2, + anon_sym_true, + anon_sym_false, + STATE(6482), 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, @@ -662203,44 +657439,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(6069), 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(6067), 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, + ACTIONS(7848), 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_as, - anon_sym_is, - anon_sym_DASH_GT, - anon_sym_with, - [169588] = 36, + anon_sym_equals, + anon_sym_let, + anon_sym_orderby, + anon_sym_ascending, + anon_sym_descending, + anon_sym_group, + anon_sym_by, + anon_sym_select, + [164850] = 21, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -662261,68 +657483,31 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4100), 1, - anon_sym_DOT, - ACTIONS(4102), 1, - anon_sym_DASH_GT, - ACTIONS(5264), 1, + ACTIONS(7846), 1, + sym__identifier_token, + ACTIONS(7850), 1, anon_sym_LPAREN, - ACTIONS(5304), 1, + ACTIONS(7852), 1, anon_sym_BANG, - ACTIONS(5573), 1, - anon_sym_LBRACK, - ACTIONS(6343), 1, - anon_sym_switch, - ACTIONS(6357), 1, - anon_sym_with, - ACTIONS(7037), 1, - anon_sym_as, - ACTIONS(8236), 1, - anon_sym_DOT_DOT, - ACTIONS(8238), 1, - anon_sym_is, - ACTIONS(8248), 1, - anon_sym_SLASH, - ACTIONS(8250), 1, - anon_sym_CARET, - ACTIONS(8254), 1, - anon_sym_AMP, - ACTIONS(8258), 1, - anon_sym_GT_GT, - STATE(2485), 1, - sym_bracketed_argument_list, - STATE(3487), 1, - sym_argument_list, - ACTIONS(5306), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5664), 2, - anon_sym_QMARK, - anon_sym_PIPE, - ACTIONS(8242), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(8244), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(8246), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(8256), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - ACTIONS(8260), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(8262), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(5660), 4, - anon_sym_COLON, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_QMARK_QMARK, - STATE(5347), 9, + ACTIONS(7856), 1, + anon_sym_SQUOTE, + ACTIONS(7858), 1, + sym_integer_literal, + STATE(6436), 1, + sym__reserved_identifier, + STATE(6507), 1, + sym__preproc_expression, + ACTIONS(7854), 2, + anon_sym_true, + anon_sym_false, + STATE(6482), 6, + sym_character_literal, + sym_boolean_literal, + sym_identifier, + sym_preproc_parenthesized_expression, + sym_preproc_unary_expression, + sym_preproc_binary_expression, + STATE(5297), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -662332,7 +657517,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [169716] = 34, + ACTIONS(7848), 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, + [164949] = 21, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -662353,66 +657561,31 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4100), 1, - anon_sym_DOT, - ACTIONS(4102), 1, - anon_sym_DASH_GT, - ACTIONS(5264), 1, + ACTIONS(7846), 1, + sym__identifier_token, + ACTIONS(7850), 1, anon_sym_LPAREN, - ACTIONS(5304), 1, + ACTIONS(7852), 1, anon_sym_BANG, - ACTIONS(5573), 1, - anon_sym_LBRACK, - ACTIONS(6343), 1, - anon_sym_switch, - ACTIONS(6357), 1, - anon_sym_with, - ACTIONS(7037), 1, - anon_sym_as, - ACTIONS(8236), 1, - anon_sym_DOT_DOT, - ACTIONS(8238), 1, - anon_sym_is, - ACTIONS(8248), 1, - anon_sym_SLASH, - ACTIONS(8258), 1, - anon_sym_GT_GT, - STATE(2485), 1, - sym_bracketed_argument_list, - STATE(3487), 1, - sym_argument_list, - ACTIONS(5306), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(8242), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(8244), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(8246), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(8256), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - ACTIONS(8260), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(8262), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(5664), 3, - anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_AMP, - ACTIONS(5660), 5, - anon_sym_COLON, - anon_sym_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_QMARK_QMARK, - STATE(5348), 9, + ACTIONS(7856), 1, + anon_sym_SQUOTE, + ACTIONS(7858), 1, + sym_integer_literal, + STATE(6436), 1, + sym__reserved_identifier, + STATE(6508), 1, + sym__preproc_expression, + ACTIONS(7854), 2, + anon_sym_true, + anon_sym_false, + STATE(6482), 6, + sym_character_literal, + sym_boolean_literal, + sym_identifier, + sym_preproc_parenthesized_expression, + sym_preproc_unary_expression, + sym_preproc_binary_expression, + STATE(5298), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -662422,7 +657595,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [169840] = 27, + ACTIONS(7848), 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, + [165048] = 21, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -662443,45 +657639,31 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4100), 1, - anon_sym_DOT, - ACTIONS(4102), 1, - anon_sym_DASH_GT, - ACTIONS(5264), 1, + ACTIONS(7846), 1, + sym__identifier_token, + ACTIONS(7850), 1, anon_sym_LPAREN, - ACTIONS(5304), 1, + ACTIONS(7852), 1, anon_sym_BANG, - ACTIONS(5573), 1, - anon_sym_LBRACK, - ACTIONS(6343), 1, - anon_sym_switch, - ACTIONS(6357), 1, - anon_sym_with, - ACTIONS(8236), 1, - anon_sym_DOT_DOT, - ACTIONS(8248), 1, - anon_sym_SLASH, - STATE(2485), 1, - sym_bracketed_argument_list, - STATE(3487), 1, - sym_argument_list, - ACTIONS(5306), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(8244), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(8246), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(5664), 6, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT_GT, - STATE(5349), 9, + ACTIONS(7856), 1, + anon_sym_SQUOTE, + ACTIONS(7858), 1, + sym_integer_literal, + STATE(6436), 1, + sym__reserved_identifier, + STATE(6512), 1, + sym__preproc_expression, + ACTIONS(7854), 2, + anon_sym_true, + anon_sym_false, + STATE(6482), 6, + sym_character_literal, + sym_boolean_literal, + sym_identifier, + sym_preproc_parenthesized_expression, + sym_preproc_unary_expression, + sym_preproc_binary_expression, + STATE(5299), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -662491,21 +657673,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5660), 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, - [169950] = 40, + ACTIONS(7848), 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, + [165147] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -662526,72 +657717,73 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4100), 1, + ACTIONS(4042), 1, anon_sym_DOT, - ACTIONS(4102), 1, + ACTIONS(4044), 1, anon_sym_DASH_GT, - ACTIONS(5264), 1, + ACTIONS(5257), 1, anon_sym_LPAREN, - ACTIONS(5304), 1, + ACTIONS(5302), 1, anon_sym_BANG, - ACTIONS(5573), 1, + ACTIONS(5549), 1, anon_sym_LBRACK, - ACTIONS(6343), 1, + ACTIONS(6355), 1, anon_sym_switch, - ACTIONS(6357), 1, + ACTIONS(6369), 1, anon_sym_with, - ACTIONS(6813), 1, + ACTIONS(6811), 1, anon_sym_as, - ACTIONS(7139), 1, + ACTIONS(7231), 1, anon_sym_QMARK, - ACTIONS(7145), 1, + ACTIONS(7237), 1, anon_sym_SLASH, - ACTIONS(7147), 1, + ACTIONS(7239), 1, anon_sym_CARET, - ACTIONS(7149), 1, + ACTIONS(7241), 1, anon_sym_PIPE, - ACTIONS(7151), 1, + ACTIONS(7243), 1, anon_sym_AMP, - ACTIONS(7155), 1, + ACTIONS(7247), 1, anon_sym_GT_GT, - ACTIONS(7161), 1, + ACTIONS(7253), 1, anon_sym_DOT_DOT, - ACTIONS(7163), 1, + ACTIONS(7255), 1, anon_sym_AMP_AMP, - ACTIONS(7165), 1, + ACTIONS(7257), 1, anon_sym_PIPE_PIPE, - ACTIONS(7167), 1, + ACTIONS(7259), 1, anon_sym_QMARK_QMARK, - ACTIONS(7169), 1, + ACTIONS(7261), 1, anon_sym_is, - ACTIONS(8324), 1, - anon_sym_RPAREN, - STATE(2485), 1, + STATE(2467), 1, sym_bracketed_argument_list, - STATE(3487), 1, + STATE(3381), 1, sym_argument_list, - ACTIONS(5306), 2, + ACTIONS(5304), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7137), 2, + ACTIONS(7229), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7141), 2, + ACTIONS(7233), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7143), 2, + ACTIONS(7235), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7153), 2, + ACTIONS(7245), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7157), 2, + ACTIONS(7249), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7159), 2, + ACTIONS(7251), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - STATE(5350), 9, + ACTIONS(8122), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + STATE(5300), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -662601,7 +657793,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [170086] = 33, + [165284] = 21, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -662622,65 +657814,31 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4100), 1, - anon_sym_DOT, - ACTIONS(4102), 1, - anon_sym_DASH_GT, - ACTIONS(5264), 1, + ACTIONS(7846), 1, + sym__identifier_token, + ACTIONS(7850), 1, anon_sym_LPAREN, - ACTIONS(5304), 1, + ACTIONS(7852), 1, anon_sym_BANG, - ACTIONS(5573), 1, - anon_sym_LBRACK, - ACTIONS(6343), 1, - anon_sym_switch, - ACTIONS(6357), 1, - anon_sym_with, - ACTIONS(7037), 1, - anon_sym_as, - ACTIONS(8236), 1, - anon_sym_DOT_DOT, - ACTIONS(8238), 1, - anon_sym_is, - ACTIONS(8248), 1, - anon_sym_SLASH, - ACTIONS(8258), 1, - anon_sym_GT_GT, - STATE(2485), 1, - sym_bracketed_argument_list, - STATE(3487), 1, - sym_argument_list, - ACTIONS(5306), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(8242), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(8244), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(8246), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(8256), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - ACTIONS(8262), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(5664), 3, - anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_AMP, - ACTIONS(5660), 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(5351), 9, + ACTIONS(7856), 1, + anon_sym_SQUOTE, + ACTIONS(7858), 1, + sym_integer_literal, + STATE(6436), 1, + sym__reserved_identifier, + STATE(6462), 1, + sym__preproc_expression, + ACTIONS(7854), 2, + anon_sym_true, + anon_sym_false, + STATE(6482), 6, + sym_character_literal, + sym_boolean_literal, + sym_identifier, + sym_preproc_parenthesized_expression, + sym_preproc_unary_expression, + sym_preproc_binary_expression, + STATE(5301), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -662690,7 +657848,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [170208] = 22, + ACTIONS(7848), 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, + [165383] = 21, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -662711,36 +657892,31 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4100), 1, - anon_sym_DOT, - ACTIONS(4102), 1, - anon_sym_DASH_GT, - ACTIONS(5264), 1, + ACTIONS(7846), 1, + sym__identifier_token, + ACTIONS(7850), 1, anon_sym_LPAREN, - ACTIONS(5304), 1, + ACTIONS(7852), 1, anon_sym_BANG, - ACTIONS(5573), 1, - anon_sym_LBRACK, - ACTIONS(8236), 1, - anon_sym_DOT_DOT, - STATE(2485), 1, - sym_bracketed_argument_list, - STATE(3487), 1, - sym_argument_list, - ACTIONS(5306), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5733), 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(5352), 9, + ACTIONS(7856), 1, + anon_sym_SQUOTE, + ACTIONS(7858), 1, + sym_integer_literal, + STATE(6436), 1, + sym__reserved_identifier, + STATE(6545), 1, + sym__preproc_expression, + ACTIONS(7854), 2, + anon_sym_true, + anon_sym_false, + STATE(6482), 6, + sym_character_literal, + sym_boolean_literal, + sym_identifier, + sym_preproc_parenthesized_expression, + sym_preproc_unary_expression, + sym_preproc_binary_expression, + STATE(5302), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -662750,25 +657926,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5731), 17, - 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_switch, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_QMARK_QMARK, - anon_sym_as, - anon_sym_is, - anon_sym_with, - [170308] = 37, + ACTIONS(7848), 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, + [165482] = 21, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -662789,69 +657970,31 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4100), 1, - anon_sym_DOT, - ACTIONS(4102), 1, - anon_sym_DASH_GT, - ACTIONS(5264), 1, + ACTIONS(7846), 1, + sym__identifier_token, + ACTIONS(7850), 1, anon_sym_LPAREN, - ACTIONS(5304), 1, + ACTIONS(7852), 1, anon_sym_BANG, - ACTIONS(5573), 1, - anon_sym_LBRACK, - ACTIONS(5664), 1, - anon_sym_QMARK, - ACTIONS(6343), 1, - anon_sym_switch, - ACTIONS(6357), 1, - anon_sym_with, - ACTIONS(7037), 1, - anon_sym_as, - ACTIONS(8236), 1, - anon_sym_DOT_DOT, - ACTIONS(8238), 1, - anon_sym_is, - ACTIONS(8248), 1, - anon_sym_SLASH, - ACTIONS(8250), 1, - anon_sym_CARET, - ACTIONS(8252), 1, - anon_sym_PIPE, - ACTIONS(8254), 1, - anon_sym_AMP, - ACTIONS(8258), 1, - anon_sym_GT_GT, - STATE(2485), 1, - sym_bracketed_argument_list, - STATE(3487), 1, - sym_argument_list, - ACTIONS(5306), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(8242), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(8244), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(8246), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(8256), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - ACTIONS(8260), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(8262), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(5660), 4, - anon_sym_COLON, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_QMARK_QMARK, - STATE(5353), 9, + ACTIONS(7856), 1, + anon_sym_SQUOTE, + ACTIONS(7858), 1, + sym_integer_literal, + STATE(6436), 1, + sym__reserved_identifier, + STATE(6546), 1, + sym__preproc_expression, + ACTIONS(7854), 2, + anon_sym_true, + anon_sym_false, + STATE(6482), 6, + sym_character_literal, + sym_boolean_literal, + sym_identifier, + sym_preproc_parenthesized_expression, + sym_preproc_unary_expression, + sym_preproc_binary_expression, + STATE(5303), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -662861,7 +658004,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [170438] = 38, + ACTIONS(7848), 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, + [165581] = 41, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -662882,70 +658048,74 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4100), 1, + ACTIONS(4753), 1, + anon_sym_LPAREN, + ACTIONS(4792), 1, anon_sym_DOT, - ACTIONS(4102), 1, + ACTIONS(4794), 1, anon_sym_DASH_GT, - ACTIONS(5264), 1, - anon_sym_LPAREN, - ACTIONS(5304), 1, - anon_sym_BANG, - ACTIONS(5573), 1, + ACTIONS(4819), 1, anon_sym_LBRACK, - ACTIONS(5664), 1, - anon_sym_QMARK, - ACTIONS(6343), 1, + ACTIONS(4823), 1, + anon_sym_BANG, + ACTIONS(5733), 1, + anon_sym_into, + ACTIONS(5735), 1, + anon_sym_in, + ACTIONS(6264), 1, anon_sym_switch, - ACTIONS(6357), 1, + ACTIONS(6278), 1, anon_sym_with, - ACTIONS(7037), 1, + ACTIONS(6327), 1, anon_sym_as, - ACTIONS(8236), 1, - anon_sym_DOT_DOT, - ACTIONS(8238), 1, - anon_sym_is, - ACTIONS(8248), 1, + ACTIONS(8084), 1, + anon_sym_QMARK, + ACTIONS(8090), 1, anon_sym_SLASH, - ACTIONS(8250), 1, + ACTIONS(8092), 1, anon_sym_CARET, - ACTIONS(8252), 1, + ACTIONS(8094), 1, anon_sym_PIPE, - ACTIONS(8254), 1, + ACTIONS(8096), 1, anon_sym_AMP, - ACTIONS(8258), 1, + ACTIONS(8100), 1, anon_sym_GT_GT, - ACTIONS(8264), 1, + ACTIONS(8106), 1, + anon_sym_DOT_DOT, + ACTIONS(8108), 1, anon_sym_AMP_AMP, - STATE(2485), 1, + ACTIONS(8110), 1, + anon_sym_PIPE_PIPE, + ACTIONS(8112), 1, + anon_sym_QMARK_QMARK, + ACTIONS(8114), 1, + anon_sym_is, + STATE(2419), 1, sym_bracketed_argument_list, - STATE(3487), 1, + STATE(2958), 1, sym_argument_list, - ACTIONS(5306), 2, + ACTIONS(4825), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(8242), 2, + ACTIONS(8082), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(8244), 2, + ACTIONS(8086), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(8246), 2, + ACTIONS(8088), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8256), 2, + ACTIONS(8098), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(8260), 2, + ACTIONS(8102), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(8262), 2, + ACTIONS(8104), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5660), 3, - anon_sym_COLON, - anon_sym_PIPE_PIPE, - anon_sym_QMARK_QMARK, - STATE(5354), 9, + STATE(5304), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -662955,7 +658125,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [170570] = 40, + [165720] = 41, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -662976,72 +658146,74 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4100), 1, + ACTIONS(4753), 1, + anon_sym_LPAREN, + ACTIONS(4792), 1, anon_sym_DOT, - ACTIONS(4102), 1, + ACTIONS(4794), 1, anon_sym_DASH_GT, - ACTIONS(5264), 1, - anon_sym_LPAREN, - ACTIONS(5304), 1, - anon_sym_BANG, - ACTIONS(5573), 1, + ACTIONS(4819), 1, anon_sym_LBRACK, - ACTIONS(5660), 1, - anon_sym_COLON, - ACTIONS(5664), 1, - anon_sym_QMARK, - ACTIONS(6343), 1, + ACTIONS(4823), 1, + anon_sym_BANG, + ACTIONS(5855), 1, + anon_sym_into, + ACTIONS(5857), 1, + anon_sym_in, + ACTIONS(6264), 1, anon_sym_switch, - ACTIONS(6357), 1, + ACTIONS(6278), 1, anon_sym_with, - ACTIONS(7037), 1, + ACTIONS(6327), 1, anon_sym_as, - ACTIONS(8236), 1, - anon_sym_DOT_DOT, - ACTIONS(8238), 1, - anon_sym_is, - ACTIONS(8248), 1, + ACTIONS(8084), 1, + anon_sym_QMARK, + ACTIONS(8090), 1, anon_sym_SLASH, - ACTIONS(8250), 1, + ACTIONS(8092), 1, anon_sym_CARET, - ACTIONS(8252), 1, + ACTIONS(8094), 1, anon_sym_PIPE, - ACTIONS(8254), 1, + ACTIONS(8096), 1, anon_sym_AMP, - ACTIONS(8258), 1, + ACTIONS(8100), 1, anon_sym_GT_GT, - ACTIONS(8264), 1, + ACTIONS(8106), 1, + anon_sym_DOT_DOT, + ACTIONS(8108), 1, anon_sym_AMP_AMP, - ACTIONS(8266), 1, + ACTIONS(8110), 1, anon_sym_PIPE_PIPE, - ACTIONS(8268), 1, + ACTIONS(8112), 1, anon_sym_QMARK_QMARK, - STATE(2485), 1, + ACTIONS(8114), 1, + anon_sym_is, + STATE(2419), 1, sym_bracketed_argument_list, - STATE(3487), 1, + STATE(2958), 1, sym_argument_list, - ACTIONS(5306), 2, + ACTIONS(4825), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(8242), 2, + ACTIONS(8082), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(8244), 2, + ACTIONS(8086), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(8246), 2, + ACTIONS(8088), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8256), 2, + ACTIONS(8098), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(8260), 2, + ACTIONS(8102), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(8262), 2, + ACTIONS(8104), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - STATE(5355), 9, + STATE(5305), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -663051,7 +658223,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [170706] = 40, + [165859] = 41, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -663072,72 +658244,74 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4100), 1, + ACTIONS(4753), 1, + anon_sym_LPAREN, + ACTIONS(4792), 1, anon_sym_DOT, - ACTIONS(4102), 1, + ACTIONS(4794), 1, anon_sym_DASH_GT, - ACTIONS(5264), 1, - anon_sym_LPAREN, - ACTIONS(5304), 1, - anon_sym_BANG, - ACTIONS(5573), 1, + ACTIONS(4819), 1, anon_sym_LBRACK, - ACTIONS(5864), 1, - anon_sym_equals, - ACTIONS(6343), 1, + ACTIONS(4823), 1, + anon_sym_BANG, + ACTIONS(5801), 1, + anon_sym_into, + ACTIONS(5803), 1, + anon_sym_in, + ACTIONS(6264), 1, anon_sym_switch, - ACTIONS(6357), 1, + ACTIONS(6278), 1, anon_sym_with, - ACTIONS(8278), 1, + ACTIONS(6327), 1, + anon_sym_as, + ACTIONS(8084), 1, anon_sym_QMARK, - ACTIONS(8284), 1, + ACTIONS(8090), 1, anon_sym_SLASH, - ACTIONS(8286), 1, + ACTIONS(8092), 1, anon_sym_CARET, - ACTIONS(8288), 1, + ACTIONS(8094), 1, anon_sym_PIPE, - ACTIONS(8290), 1, + ACTIONS(8096), 1, anon_sym_AMP, - ACTIONS(8294), 1, + ACTIONS(8100), 1, anon_sym_GT_GT, - ACTIONS(8300), 1, + ACTIONS(8106), 1, anon_sym_DOT_DOT, - ACTIONS(8302), 1, + ACTIONS(8108), 1, anon_sym_AMP_AMP, - ACTIONS(8304), 1, + ACTIONS(8110), 1, anon_sym_PIPE_PIPE, - ACTIONS(8306), 1, + ACTIONS(8112), 1, anon_sym_QMARK_QMARK, - ACTIONS(8308), 1, - anon_sym_as, - ACTIONS(8310), 1, + ACTIONS(8114), 1, anon_sym_is, - STATE(2485), 1, + STATE(2419), 1, sym_bracketed_argument_list, - STATE(3487), 1, + STATE(2958), 1, sym_argument_list, - ACTIONS(5306), 2, + ACTIONS(4825), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(8276), 2, + ACTIONS(8082), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(8280), 2, + ACTIONS(8086), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(8282), 2, + ACTIONS(8088), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8292), 2, + ACTIONS(8098), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(8296), 2, + ACTIONS(8102), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(8298), 2, + ACTIONS(8104), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - STATE(5356), 9, + STATE(5306), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -663147,7 +658321,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [170842] = 40, + [165998] = 22, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -663168,72 +658342,26 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4100), 1, + ACTIONS(4753), 1, + anon_sym_LPAREN, + ACTIONS(4792), 1, anon_sym_DOT, - ACTIONS(4102), 1, + ACTIONS(4794), 1, anon_sym_DASH_GT, - ACTIONS(5264), 1, - anon_sym_LPAREN, - ACTIONS(5304), 1, - anon_sym_BANG, - ACTIONS(5573), 1, + ACTIONS(4819), 1, anon_sym_LBRACK, - ACTIONS(6343), 1, - anon_sym_switch, - ACTIONS(6357), 1, - anon_sym_with, - ACTIONS(6813), 1, - anon_sym_as, - ACTIONS(8200), 1, - anon_sym_QMARK, - ACTIONS(8206), 1, - anon_sym_SLASH, - ACTIONS(8208), 1, - anon_sym_CARET, - ACTIONS(8210), 1, - anon_sym_PIPE, - ACTIONS(8212), 1, - anon_sym_AMP, - ACTIONS(8216), 1, - anon_sym_GT_GT, - ACTIONS(8222), 1, + ACTIONS(4823), 1, + anon_sym_BANG, + ACTIONS(8106), 1, anon_sym_DOT_DOT, - ACTIONS(8224), 1, - anon_sym_AMP_AMP, - ACTIONS(8226), 1, - anon_sym_PIPE_PIPE, - ACTIONS(8228), 1, - anon_sym_QMARK_QMARK, - ACTIONS(8230), 1, - anon_sym_is, - ACTIONS(8326), 1, - anon_sym_in, - STATE(2485), 1, + STATE(2419), 1, sym_bracketed_argument_list, - STATE(3487), 1, + STATE(2958), 1, sym_argument_list, - ACTIONS(5306), 2, + ACTIONS(4825), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(8198), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(8202), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(8204), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(8214), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - ACTIONS(8218), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(8220), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - STATE(5357), 9, + STATE(5307), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -663243,103 +658371,36 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [170978] = 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(4100), 1, - anon_sym_DOT, - ACTIONS(4102), 1, - anon_sym_DASH_GT, - ACTIONS(5072), 1, - anon_sym_COLON, - ACTIONS(5264), 1, - anon_sym_LPAREN, - ACTIONS(5304), 1, - anon_sym_BANG, - ACTIONS(5573), 1, - anon_sym_LBRACK, - ACTIONS(6343), 1, - anon_sym_switch, - ACTIONS(6357), 1, - anon_sym_with, - ACTIONS(7037), 1, - anon_sym_as, - ACTIONS(8234), 1, + ACTIONS(1161), 10, + anon_sym_LT, + anon_sym_GT, + anon_sym_in, anon_sym_QMARK, - ACTIONS(8236), 1, - anon_sym_DOT_DOT, - ACTIONS(8238), 1, - anon_sym_is, - ACTIONS(8248), 1, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_SLASH, - ACTIONS(8250), 1, - anon_sym_CARET, - ACTIONS(8252), 1, anon_sym_PIPE, - ACTIONS(8254), 1, anon_sym_AMP, - ACTIONS(8258), 1, anon_sym_GT_GT, - ACTIONS(8264), 1, - anon_sym_AMP_AMP, - ACTIONS(8266), 1, - anon_sym_PIPE_PIPE, - ACTIONS(8268), 1, - anon_sym_QMARK_QMARK, - STATE(2485), 1, - sym_bracketed_argument_list, - STATE(3487), 1, - sym_argument_list, - ACTIONS(5306), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(8242), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(8244), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(8246), 2, + ACTIONS(1147), 17, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8256), 2, + anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(8260), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(8262), 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, - [171114] = 40, + 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, + [166099] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -663360,72 +658421,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4100), 1, - anon_sym_DOT, - ACTIONS(4102), 1, - anon_sym_DASH_GT, - ACTIONS(5264), 1, - anon_sym_LPAREN, - ACTIONS(5304), 1, - anon_sym_BANG, - ACTIONS(5573), 1, - anon_sym_LBRACK, - ACTIONS(6343), 1, - anon_sym_switch, - ACTIONS(6357), 1, - anon_sym_with, - ACTIONS(6813), 1, - anon_sym_as, - ACTIONS(6815), 1, - anon_sym_is, - ACTIONS(7183), 1, - anon_sym_SLASH, - ACTIONS(7187), 1, - anon_sym_GT_GT, - ACTIONS(7189), 1, - anon_sym_DOT_DOT, - ACTIONS(7195), 1, - anon_sym_AMP, - ACTIONS(7201), 1, - anon_sym_CARET, - ACTIONS(7203), 1, - anon_sym_PIPE, - ACTIONS(7205), 1, - anon_sym_AMP_AMP, - ACTIONS(7207), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7209), 1, - anon_sym_QMARK_QMARK, - ACTIONS(7237), 1, - anon_sym_QMARK, - ACTIONS(8328), 1, - anon_sym_SEMI, - STATE(2485), 1, - sym_bracketed_argument_list, - STATE(3487), 1, - sym_argument_list, - ACTIONS(5306), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(7179), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(7181), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(7185), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - ACTIONS(7193), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(7197), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(7199), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - STATE(5359), 9, + STATE(5308), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -663435,7 +658431,46 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [171250] = 40, + ACTIONS(3429), 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(3431), 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, + [166182] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -663453,75 +658488,10 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(17), 1, aux_sym_preproc_define_token1, ACTIONS(19), 1, - aux_sym_preproc_undef_token1, - ACTIONS(21), 1, - sym_comment, - ACTIONS(4100), 1, - anon_sym_DOT, - ACTIONS(4102), 1, - anon_sym_DASH_GT, - ACTIONS(5264), 1, - anon_sym_LPAREN, - ACTIONS(5304), 1, - anon_sym_BANG, - ACTIONS(5573), 1, - anon_sym_LBRACK, - ACTIONS(6343), 1, - anon_sym_switch, - ACTIONS(6357), 1, - anon_sym_with, - ACTIONS(6813), 1, - anon_sym_as, - ACTIONS(7139), 1, - anon_sym_QMARK, - ACTIONS(7145), 1, - anon_sym_SLASH, - ACTIONS(7147), 1, - anon_sym_CARET, - ACTIONS(7149), 1, - anon_sym_PIPE, - ACTIONS(7151), 1, - anon_sym_AMP, - ACTIONS(7155), 1, - anon_sym_GT_GT, - ACTIONS(7161), 1, - anon_sym_DOT_DOT, - ACTIONS(7163), 1, - anon_sym_AMP_AMP, - ACTIONS(7165), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7167), 1, - anon_sym_QMARK_QMARK, - ACTIONS(7169), 1, - anon_sym_is, - ACTIONS(8330), 1, - anon_sym_RPAREN, - STATE(2485), 1, - sym_bracketed_argument_list, - STATE(3487), 1, - sym_argument_list, - ACTIONS(5306), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(7137), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(7141), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(7143), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(7153), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - ACTIONS(7157), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(7159), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - STATE(5360), 9, + aux_sym_preproc_undef_token1, + ACTIONS(21), 1, + sym_comment, + STATE(5309), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -663531,7 +658501,46 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [171386] = 40, + ACTIONS(3636), 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(3634), 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, + [166265] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -663552,82 +658561,58 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4100), 1, - anon_sym_DOT, - ACTIONS(4102), 1, - anon_sym_DASH_GT, - ACTIONS(5264), 1, - anon_sym_LPAREN, - ACTIONS(5304), 1, - anon_sym_BANG, - ACTIONS(5573), 1, - anon_sym_LBRACK, - ACTIONS(6343), 1, - anon_sym_switch, - ACTIONS(6357), 1, - anon_sym_with, - ACTIONS(6813), 1, - anon_sym_as, - ACTIONS(7139), 1, + ACTIONS(8116), 1, + anon_sym_and, + ACTIONS(8118), 1, + anon_sym_or, + STATE(5310), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + ACTIONS(6109), 12, + anon_sym_LT, + anon_sym_GT, + anon_sym_in, anon_sym_QMARK, - ACTIONS(7145), 1, + anon_sym_BANG, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_SLASH, - ACTIONS(7147), 1, - anon_sym_CARET, - ACTIONS(7149), 1, anon_sym_PIPE, - ACTIONS(7151), 1, anon_sym_AMP, - ACTIONS(7155), 1, anon_sym_GT_GT, - ACTIONS(7161), 1, - anon_sym_DOT_DOT, - ACTIONS(7163), 1, - anon_sym_AMP_AMP, - ACTIONS(7165), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7167), 1, - anon_sym_QMARK_QMARK, - ACTIONS(7169), 1, - anon_sym_is, - ACTIONS(8332), 1, - anon_sym_RPAREN, - STATE(2485), 1, - sym_bracketed_argument_list, - STATE(3487), 1, - sym_argument_list, - ACTIONS(5306), 2, + anon_sym_DOT, + ACTIONS(6107), 23, + anon_sym_LBRACK, + anon_sym_LPAREN, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7137), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(7141), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(7143), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7153), 2, + anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7157), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7159), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - 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, - [171522] = 40, + 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, + [166352] = 21, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -663648,72 +658633,31 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4100), 1, - anon_sym_DOT, - ACTIONS(4102), 1, - anon_sym_DASH_GT, - ACTIONS(5264), 1, + ACTIONS(7846), 1, + sym__identifier_token, + ACTIONS(7850), 1, anon_sym_LPAREN, - ACTIONS(5304), 1, + ACTIONS(7852), 1, anon_sym_BANG, - ACTIONS(5573), 1, - anon_sym_LBRACK, - ACTIONS(6343), 1, - anon_sym_switch, - ACTIONS(6357), 1, - anon_sym_with, - ACTIONS(6813), 1, - anon_sym_as, - ACTIONS(7139), 1, - anon_sym_QMARK, - ACTIONS(7145), 1, - anon_sym_SLASH, - ACTIONS(7147), 1, - anon_sym_CARET, - ACTIONS(7149), 1, - anon_sym_PIPE, - ACTIONS(7151), 1, - anon_sym_AMP, - ACTIONS(7155), 1, - anon_sym_GT_GT, - ACTIONS(7161), 1, - anon_sym_DOT_DOT, - ACTIONS(7163), 1, - anon_sym_AMP_AMP, - ACTIONS(7165), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7167), 1, - anon_sym_QMARK_QMARK, - ACTIONS(7169), 1, - anon_sym_is, - ACTIONS(8334), 1, - anon_sym_RPAREN, - STATE(2485), 1, - sym_bracketed_argument_list, - STATE(3487), 1, - sym_argument_list, - ACTIONS(5306), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(7137), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(7141), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(7143), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(7153), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - ACTIONS(7157), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(7159), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - STATE(5362), 9, + ACTIONS(7856), 1, + anon_sym_SQUOTE, + ACTIONS(7858), 1, + sym_integer_literal, + STATE(6436), 1, + sym__reserved_identifier, + STATE(6451), 1, + sym__preproc_expression, + ACTIONS(7854), 2, + anon_sym_true, + anon_sym_false, + STATE(6482), 6, + sym_character_literal, + sym_boolean_literal, + sym_identifier, + sym_preproc_parenthesized_expression, + sym_preproc_unary_expression, + sym_preproc_binary_expression, + STATE(5311), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -663723,7 +658667,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [171658] = 24, + ACTIONS(7848), 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, + [166451] = 21, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -663744,33 +658711,31 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(25), 1, + ACTIONS(7846), 1, sym__identifier_token, - ACTIONS(8336), 1, + ACTIONS(7850), 1, anon_sym_LPAREN, - ACTIONS(8338), 1, - anon_sym_operator, - ACTIONS(8340), 1, - anon_sym_this, - STATE(2175), 1, + ACTIONS(7852), 1, + anon_sym_BANG, + ACTIONS(7856), 1, + anon_sym_SQUOTE, + ACTIONS(7858), 1, + sym_integer_literal, + STATE(6436), 1, sym__reserved_identifier, - STATE(2181), 1, - sym_generic_name, - STATE(5961), 1, - sym_explicit_interface_specifier, - STATE(6252), 1, + STATE(6589), 1, + sym__preproc_expression, + ACTIONS(7854), 2, + anon_sym_true, + anon_sym_false, + STATE(6482), 6, + sym_character_literal, + sym_boolean_literal, sym_identifier, - STATE(6521), 1, - sym_tuple_pattern, - STATE(6944), 1, - sym_variable_declarator, - STATE(7441), 1, - sym__name, - STATE(4096), 3, - sym_alias_qualified_name, - sym__simple_name, - sym_qualified_name, - STATE(5363), 9, + sym_preproc_parenthesized_expression, + sym_preproc_unary_expression, + sym_preproc_binary_expression, + STATE(5312), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -663780,7 +658745,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(29), 22, + ACTIONS(7848), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -663803,7 +658768,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [171762] = 40, + [166550] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -663824,72 +658789,73 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4100), 1, + ACTIONS(4753), 1, + anon_sym_LPAREN, + ACTIONS(4792), 1, anon_sym_DOT, - ACTIONS(4102), 1, + ACTIONS(4794), 1, anon_sym_DASH_GT, - ACTIONS(5264), 1, - anon_sym_LPAREN, - ACTIONS(5304), 1, - anon_sym_BANG, - ACTIONS(5573), 1, + ACTIONS(4819), 1, anon_sym_LBRACK, - ACTIONS(6343), 1, + ACTIONS(4823), 1, + anon_sym_BANG, + ACTIONS(5739), 1, + anon_sym_QMARK, + ACTIONS(6264), 1, anon_sym_switch, - ACTIONS(6357), 1, + ACTIONS(6278), 1, anon_sym_with, - ACTIONS(6813), 1, - anon_sym_as, - ACTIONS(7139), 1, - anon_sym_QMARK, - ACTIONS(7145), 1, + ACTIONS(8032), 1, anon_sym_SLASH, - ACTIONS(7147), 1, + ACTIONS(8034), 1, anon_sym_CARET, - ACTIONS(7149), 1, + ACTIONS(8036), 1, anon_sym_PIPE, - ACTIONS(7151), 1, + ACTIONS(8038), 1, anon_sym_AMP, - ACTIONS(7155), 1, + ACTIONS(8042), 1, anon_sym_GT_GT, - ACTIONS(7161), 1, + ACTIONS(8048), 1, anon_sym_DOT_DOT, - ACTIONS(7163), 1, + ACTIONS(8050), 1, anon_sym_AMP_AMP, - ACTIONS(7165), 1, + ACTIONS(8052), 1, anon_sym_PIPE_PIPE, - ACTIONS(7167), 1, + ACTIONS(8054), 1, anon_sym_QMARK_QMARK, - ACTIONS(7169), 1, + ACTIONS(8056), 1, + anon_sym_as, + ACTIONS(8058), 1, anon_sym_is, - ACTIONS(8342), 1, - anon_sym_RPAREN, - STATE(2485), 1, + STATE(2419), 1, sym_bracketed_argument_list, - STATE(3487), 1, + STATE(2958), 1, sym_argument_list, - ACTIONS(5306), 2, + ACTIONS(4825), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7137), 2, + ACTIONS(5737), 2, + anon_sym_into, + anon_sym_by, + ACTIONS(8024), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7141), 2, + ACTIONS(8028), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7143), 2, + ACTIONS(8030), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7153), 2, + ACTIONS(8040), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7157), 2, + ACTIONS(8044), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7159), 2, + ACTIONS(8046), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - STATE(5364), 9, + STATE(5313), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -663899,7 +658865,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [171898] = 40, + [166687] = 35, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -663920,72 +658886,67 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4100), 1, + ACTIONS(4042), 1, anon_sym_DOT, - ACTIONS(4102), 1, + ACTIONS(4044), 1, anon_sym_DASH_GT, - ACTIONS(5264), 1, + ACTIONS(5257), 1, anon_sym_LPAREN, - ACTIONS(5304), 1, + ACTIONS(5302), 1, anon_sym_BANG, - ACTIONS(5573), 1, + ACTIONS(5549), 1, anon_sym_LBRACK, - ACTIONS(6343), 1, + ACTIONS(6355), 1, anon_sym_switch, - ACTIONS(6357), 1, + ACTIONS(6369), 1, anon_sym_with, - ACTIONS(6813), 1, + ACTIONS(6811), 1, anon_sym_as, - ACTIONS(7139), 1, - anon_sym_QMARK, - ACTIONS(7145), 1, + ACTIONS(8130), 1, anon_sym_SLASH, - ACTIONS(7147), 1, - anon_sym_CARET, - ACTIONS(7149), 1, - anon_sym_PIPE, - ACTIONS(7151), 1, + ACTIONS(8132), 1, anon_sym_AMP, - ACTIONS(7155), 1, + ACTIONS(8136), 1, anon_sym_GT_GT, - ACTIONS(7161), 1, + ACTIONS(8142), 1, anon_sym_DOT_DOT, - ACTIONS(7163), 1, - anon_sym_AMP_AMP, - ACTIONS(7165), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7167), 1, - anon_sym_QMARK_QMARK, - ACTIONS(7169), 1, + ACTIONS(8144), 1, anon_sym_is, - ACTIONS(8344), 1, - anon_sym_RPAREN, - STATE(2485), 1, + STATE(2467), 1, sym_bracketed_argument_list, - STATE(3487), 1, + STATE(3381), 1, sym_argument_list, - ACTIONS(5306), 2, + ACTIONS(5304), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7137), 2, + ACTIONS(5739), 2, + anon_sym_QMARK, + anon_sym_PIPE, + ACTIONS(8124), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7141), 2, + ACTIONS(8126), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7143), 2, + ACTIONS(8128), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7153), 2, + ACTIONS(8134), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7157), 2, + ACTIONS(8138), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7159), 2, + ACTIONS(8140), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - STATE(5365), 9, + ACTIONS(5737), 5, + anon_sym_CARET, + anon_sym_EQ_GT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, + STATE(5314), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -663995,7 +658956,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [172034] = 40, + [166813] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -664016,82 +658977,56 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4100), 1, - anon_sym_DOT, - ACTIONS(4102), 1, - anon_sym_DASH_GT, - ACTIONS(5264), 1, - anon_sym_LPAREN, - ACTIONS(5304), 1, - anon_sym_BANG, - ACTIONS(5573), 1, - anon_sym_LBRACK, - ACTIONS(5882), 1, - anon_sym_COLON, - ACTIONS(6343), 1, - anon_sym_switch, - ACTIONS(6357), 1, - anon_sym_with, - ACTIONS(7037), 1, - anon_sym_as, - ACTIONS(8234), 1, + ACTIONS(8146), 1, + anon_sym_RPAREN, + STATE(5315), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + ACTIONS(4813), 11, + anon_sym_LT, + anon_sym_GT, anon_sym_QMARK, - ACTIONS(8236), 1, - anon_sym_DOT_DOT, - ACTIONS(8238), 1, - anon_sym_is, - ACTIONS(8248), 1, + anon_sym_BANG, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_SLASH, - ACTIONS(8250), 1, - anon_sym_CARET, - ACTIONS(8252), 1, anon_sym_PIPE, - ACTIONS(8254), 1, anon_sym_AMP, - ACTIONS(8258), 1, anon_sym_GT_GT, - ACTIONS(8264), 1, - anon_sym_AMP_AMP, - ACTIONS(8266), 1, - anon_sym_PIPE_PIPE, - ACTIONS(8268), 1, - anon_sym_QMARK_QMARK, - STATE(2485), 1, - sym_bracketed_argument_list, - STATE(3487), 1, - sym_argument_list, - ACTIONS(5306), 2, + anon_sym_DOT, + ACTIONS(4811), 24, + anon_sym_LBRACK, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_LPAREN, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(8242), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(8244), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(8246), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8256), 2, + anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(8260), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(8262), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - STATE(5366), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - [172170] = 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, + [166897] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -664112,72 +659047,72 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4100), 1, + ACTIONS(4042), 1, anon_sym_DOT, - ACTIONS(4102), 1, + ACTIONS(4044), 1, anon_sym_DASH_GT, - ACTIONS(5264), 1, + ACTIONS(5257), 1, anon_sym_LPAREN, - ACTIONS(5304), 1, + ACTIONS(5302), 1, anon_sym_BANG, - ACTIONS(5573), 1, + ACTIONS(5549), 1, anon_sym_LBRACK, - ACTIONS(6343), 1, + ACTIONS(6355), 1, anon_sym_switch, - ACTIONS(6357), 1, + ACTIONS(6369), 1, anon_sym_with, - ACTIONS(6813), 1, + ACTIONS(7195), 1, anon_sym_as, - ACTIONS(7139), 1, + ACTIONS(8148), 1, + anon_sym_COLON, + ACTIONS(8152), 1, anon_sym_QMARK, - ACTIONS(7145), 1, + ACTIONS(8158), 1, anon_sym_SLASH, - ACTIONS(7147), 1, + ACTIONS(8160), 1, anon_sym_CARET, - ACTIONS(7149), 1, + ACTIONS(8162), 1, anon_sym_PIPE, - ACTIONS(7151), 1, + ACTIONS(8164), 1, anon_sym_AMP, - ACTIONS(7155), 1, + ACTIONS(8168), 1, anon_sym_GT_GT, - ACTIONS(7161), 1, + ACTIONS(8174), 1, anon_sym_DOT_DOT, - ACTIONS(7163), 1, + ACTIONS(8176), 1, anon_sym_AMP_AMP, - ACTIONS(7165), 1, + ACTIONS(8178), 1, anon_sym_PIPE_PIPE, - ACTIONS(7167), 1, + ACTIONS(8180), 1, anon_sym_QMARK_QMARK, - ACTIONS(7169), 1, + ACTIONS(8182), 1, anon_sym_is, - ACTIONS(8346), 1, - anon_sym_COMMA, - STATE(2485), 1, + STATE(2467), 1, sym_bracketed_argument_list, - STATE(3487), 1, + STATE(3381), 1, sym_argument_list, - ACTIONS(5306), 2, + ACTIONS(5304), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7137), 2, + ACTIONS(8150), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7141), 2, + ACTIONS(8154), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7143), 2, + ACTIONS(8156), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7153), 2, + ACTIONS(8166), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7157), 2, + ACTIONS(8170), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7159), 2, + ACTIONS(8172), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - STATE(5367), 9, + STATE(5316), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -664187,7 +659122,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [172306] = 40, + [167033] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -664208,72 +659143,72 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4100), 1, + ACTIONS(4042), 1, anon_sym_DOT, - ACTIONS(4102), 1, + ACTIONS(4044), 1, anon_sym_DASH_GT, - ACTIONS(5264), 1, + ACTIONS(5257), 1, anon_sym_LPAREN, - ACTIONS(5304), 1, + ACTIONS(5302), 1, anon_sym_BANG, - ACTIONS(5573), 1, + ACTIONS(5549), 1, anon_sym_LBRACK, - ACTIONS(6343), 1, + ACTIONS(6355), 1, anon_sym_switch, - ACTIONS(6357), 1, + ACTIONS(6369), 1, anon_sym_with, - ACTIONS(6813), 1, + ACTIONS(7195), 1, anon_sym_as, - ACTIONS(7139), 1, + ACTIONS(8152), 1, anon_sym_QMARK, - ACTIONS(7145), 1, + ACTIONS(8158), 1, anon_sym_SLASH, - ACTIONS(7147), 1, + ACTIONS(8160), 1, anon_sym_CARET, - ACTIONS(7149), 1, + ACTIONS(8162), 1, anon_sym_PIPE, - ACTIONS(7151), 1, + ACTIONS(8164), 1, anon_sym_AMP, - ACTIONS(7155), 1, + ACTIONS(8168), 1, anon_sym_GT_GT, - ACTIONS(7161), 1, + ACTIONS(8174), 1, anon_sym_DOT_DOT, - ACTIONS(7163), 1, + ACTIONS(8176), 1, anon_sym_AMP_AMP, - ACTIONS(7165), 1, + ACTIONS(8178), 1, anon_sym_PIPE_PIPE, - ACTIONS(7167), 1, + ACTIONS(8180), 1, anon_sym_QMARK_QMARK, - ACTIONS(7169), 1, + ACTIONS(8182), 1, anon_sym_is, - ACTIONS(8348), 1, - anon_sym_RPAREN, - STATE(2485), 1, + ACTIONS(8184), 1, + anon_sym_COLON, + STATE(2467), 1, sym_bracketed_argument_list, - STATE(3487), 1, + STATE(3381), 1, sym_argument_list, - ACTIONS(5306), 2, + ACTIONS(5304), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7137), 2, + ACTIONS(8150), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7141), 2, + ACTIONS(8154), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7143), 2, + ACTIONS(8156), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7153), 2, + ACTIONS(8166), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7157), 2, + ACTIONS(8170), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7159), 2, + ACTIONS(8172), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - STATE(5368), 9, + STATE(5317), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -664283,7 +659218,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [172442] = 14, + [167169] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -664304,56 +659239,82 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8350), 1, - anon_sym_and, - STATE(5369), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - ACTIONS(6069), 11, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, + ACTIONS(4042), 1, + anon_sym_DOT, + ACTIONS(4044), 1, + anon_sym_DASH_GT, + ACTIONS(5257), 1, + anon_sym_LPAREN, + ACTIONS(5302), 1, anon_sym_BANG, - anon_sym_PLUS, - anon_sym_DASH, + ACTIONS(5549), 1, + anon_sym_LBRACK, + ACTIONS(6355), 1, + anon_sym_switch, + ACTIONS(6369), 1, + anon_sym_with, + ACTIONS(7195), 1, + anon_sym_as, + ACTIONS(8152), 1, + anon_sym_QMARK, + ACTIONS(8158), 1, anon_sym_SLASH, + ACTIONS(8160), 1, + anon_sym_CARET, + ACTIONS(8162), 1, anon_sym_PIPE, + ACTIONS(8164), 1, anon_sym_AMP, + ACTIONS(8168), 1, anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(6067), 24, - anon_sym_LBRACK, - anon_sym_LPAREN, + ACTIONS(8174), 1, + anon_sym_DOT_DOT, + ACTIONS(8176), 1, + anon_sym_AMP_AMP, + ACTIONS(8178), 1, + anon_sym_PIPE_PIPE, + ACTIONS(8180), 1, + anon_sym_QMARK_QMARK, + ACTIONS(8182), 1, + anon_sym_is, + ACTIONS(8186), 1, + anon_sym_COLON, + STATE(2467), 1, + sym_bracketed_argument_list, + STATE(3381), 1, + sym_argument_list, + ACTIONS(5304), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + ACTIONS(8150), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(8154), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(8156), 2, anon_sym_STAR, anon_sym_PERCENT, - anon_sym_CARET, + ACTIONS(8166), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, + ACTIONS(8170), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + ACTIONS(8172), 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_by, - anon_sym_as, - anon_sym_is, - anon_sym_DASH_GT, - anon_sym_with, - [172526] = 40, + STATE(5318), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + [167305] = 24, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -664374,72 +659335,40 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4100), 1, + ACTIONS(4042), 1, anon_sym_DOT, - ACTIONS(4102), 1, + ACTIONS(4044), 1, anon_sym_DASH_GT, - ACTIONS(5264), 1, + ACTIONS(5257), 1, anon_sym_LPAREN, - ACTIONS(5304), 1, + ACTIONS(5302), 1, anon_sym_BANG, - ACTIONS(5573), 1, + ACTIONS(5549), 1, anon_sym_LBRACK, - ACTIONS(6343), 1, + ACTIONS(6355), 1, anon_sym_switch, - ACTIONS(6357), 1, + ACTIONS(6369), 1, anon_sym_with, - ACTIONS(6813), 1, - anon_sym_as, - ACTIONS(6815), 1, - anon_sym_is, - ACTIONS(7183), 1, - anon_sym_SLASH, - ACTIONS(7187), 1, - anon_sym_GT_GT, - ACTIONS(7189), 1, + ACTIONS(8188), 1, anon_sym_DOT_DOT, - ACTIONS(7195), 1, - anon_sym_AMP, - ACTIONS(7201), 1, - anon_sym_CARET, - ACTIONS(7203), 1, - anon_sym_PIPE, - ACTIONS(7205), 1, - anon_sym_AMP_AMP, - ACTIONS(7207), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7209), 1, - anon_sym_QMARK_QMARK, - ACTIONS(7237), 1, - anon_sym_QMARK, - ACTIONS(8352), 1, - anon_sym_SEMI, - STATE(2485), 1, + STATE(2467), 1, sym_bracketed_argument_list, - STATE(3487), 1, + STATE(3381), 1, sym_argument_list, - ACTIONS(5306), 2, + ACTIONS(5304), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7179), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(7181), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(7185), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - ACTIONS(7193), 2, + ACTIONS(5739), 9, anon_sym_LT, anon_sym_GT, - ACTIONS(7197), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(7199), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - STATE(5370), 9, + anon_sym_QMARK, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT_GT, + STATE(5319), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -664449,7 +659378,23 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [172662] = 40, + ACTIONS(5737), 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, + [167409] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -664470,72 +659415,72 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4100), 1, + ACTIONS(4042), 1, anon_sym_DOT, - ACTIONS(4102), 1, + ACTIONS(4044), 1, anon_sym_DASH_GT, - ACTIONS(5264), 1, + ACTIONS(5257), 1, anon_sym_LPAREN, - ACTIONS(5304), 1, + ACTIONS(5302), 1, anon_sym_BANG, - ACTIONS(5573), 1, + ACTIONS(5549), 1, anon_sym_LBRACK, - ACTIONS(6343), 1, + ACTIONS(6355), 1, anon_sym_switch, - ACTIONS(6357), 1, + ACTIONS(6369), 1, anon_sym_with, - ACTIONS(6813), 1, + ACTIONS(7195), 1, anon_sym_as, - ACTIONS(7139), 1, + ACTIONS(8152), 1, anon_sym_QMARK, - ACTIONS(7145), 1, + ACTIONS(8158), 1, anon_sym_SLASH, - ACTIONS(7147), 1, + ACTIONS(8160), 1, anon_sym_CARET, - ACTIONS(7149), 1, + ACTIONS(8162), 1, anon_sym_PIPE, - ACTIONS(7151), 1, + ACTIONS(8164), 1, anon_sym_AMP, - ACTIONS(7155), 1, + ACTIONS(8168), 1, anon_sym_GT_GT, - ACTIONS(7161), 1, + ACTIONS(8174), 1, anon_sym_DOT_DOT, - ACTIONS(7163), 1, + ACTIONS(8176), 1, anon_sym_AMP_AMP, - ACTIONS(7165), 1, + ACTIONS(8178), 1, anon_sym_PIPE_PIPE, - ACTIONS(7167), 1, + ACTIONS(8180), 1, anon_sym_QMARK_QMARK, - ACTIONS(7169), 1, + ACTIONS(8182), 1, anon_sym_is, - ACTIONS(8354), 1, - anon_sym_RPAREN, - STATE(2485), 1, + ACTIONS(8190), 1, + anon_sym_COLON, + STATE(2467), 1, sym_bracketed_argument_list, - STATE(3487), 1, + STATE(3381), 1, sym_argument_list, - ACTIONS(5306), 2, + ACTIONS(5304), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7137), 2, + ACTIONS(8150), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7141), 2, + ACTIONS(8154), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7143), 2, + ACTIONS(8156), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7153), 2, + ACTIONS(8166), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7157), 2, + ACTIONS(8170), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7159), 2, + ACTIONS(8172), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - STATE(5371), 9, + STATE(5320), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -664545,7 +659490,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [172798] = 40, + [167545] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -664566,72 +659511,72 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4100), 1, + ACTIONS(2079), 1, + anon_sym_SEMI, + ACTIONS(4042), 1, anon_sym_DOT, - ACTIONS(4102), 1, + ACTIONS(4044), 1, anon_sym_DASH_GT, - ACTIONS(5264), 1, + ACTIONS(5257), 1, anon_sym_LPAREN, - ACTIONS(5304), 1, + ACTIONS(5302), 1, anon_sym_BANG, - ACTIONS(5573), 1, + ACTIONS(5549), 1, anon_sym_LBRACK, - ACTIONS(5858), 1, - anon_sym_COLON, - ACTIONS(6343), 1, + ACTIONS(6355), 1, anon_sym_switch, - ACTIONS(6357), 1, + ACTIONS(6369), 1, anon_sym_with, - ACTIONS(7037), 1, + ACTIONS(6811), 1, anon_sym_as, - ACTIONS(8234), 1, - anon_sym_QMARK, - ACTIONS(8236), 1, - anon_sym_DOT_DOT, - ACTIONS(8238), 1, + ACTIONS(6813), 1, anon_sym_is, - ACTIONS(8248), 1, + ACTIONS(6985), 1, anon_sym_SLASH, - ACTIONS(8250), 1, + ACTIONS(6989), 1, + anon_sym_GT_GT, + ACTIONS(6991), 1, + anon_sym_DOT_DOT, + ACTIONS(7099), 1, + anon_sym_QMARK, + ACTIONS(7101), 1, anon_sym_CARET, - ACTIONS(8252), 1, + ACTIONS(7103), 1, anon_sym_PIPE, - ACTIONS(8254), 1, + ACTIONS(7105), 1, anon_sym_AMP, - ACTIONS(8258), 1, - anon_sym_GT_GT, - ACTIONS(8264), 1, + ACTIONS(7111), 1, anon_sym_AMP_AMP, - ACTIONS(8266), 1, + ACTIONS(7113), 1, anon_sym_PIPE_PIPE, - ACTIONS(8268), 1, + ACTIONS(7115), 1, anon_sym_QMARK_QMARK, - STATE(2485), 1, + STATE(2467), 1, sym_bracketed_argument_list, - STATE(3487), 1, + STATE(3381), 1, sym_argument_list, - ACTIONS(5306), 2, + ACTIONS(5304), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(8242), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(8244), 2, + ACTIONS(6981), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(8246), 2, + ACTIONS(6983), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8256), 2, + ACTIONS(6987), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(8260), 2, + ACTIONS(7097), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(7107), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(8262), 2, + ACTIONS(7109), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - STATE(5372), 9, + STATE(5321), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -664641,7 +659586,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [172934] = 40, + [167681] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -664662,72 +659607,72 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4100), 1, + ACTIONS(4042), 1, anon_sym_DOT, - ACTIONS(4102), 1, + ACTIONS(4044), 1, anon_sym_DASH_GT, - ACTIONS(5264), 1, + ACTIONS(5257), 1, anon_sym_LPAREN, - ACTIONS(5304), 1, + ACTIONS(5302), 1, anon_sym_BANG, - ACTIONS(5573), 1, + ACTIONS(5549), 1, anon_sym_LBRACK, - ACTIONS(5864), 1, - anon_sym_by, - ACTIONS(6343), 1, + ACTIONS(6355), 1, anon_sym_switch, - ACTIONS(6357), 1, + ACTIONS(6369), 1, anon_sym_with, - ACTIONS(8150), 1, + ACTIONS(7195), 1, + anon_sym_as, + ACTIONS(8152), 1, anon_sym_QMARK, - ACTIONS(8156), 1, - anon_sym_SLASH, ACTIONS(8158), 1, - anon_sym_CARET, + anon_sym_SLASH, ACTIONS(8160), 1, - anon_sym_PIPE, + anon_sym_CARET, ACTIONS(8162), 1, + anon_sym_PIPE, + ACTIONS(8164), 1, anon_sym_AMP, - ACTIONS(8166), 1, + ACTIONS(8168), 1, anon_sym_GT_GT, - ACTIONS(8172), 1, - anon_sym_DOT_DOT, ACTIONS(8174), 1, - anon_sym_AMP_AMP, + anon_sym_DOT_DOT, ACTIONS(8176), 1, - anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, ACTIONS(8178), 1, + anon_sym_PIPE_PIPE, + ACTIONS(8180), 1, anon_sym_QMARK_QMARK, ACTIONS(8182), 1, - anon_sym_as, - ACTIONS(8184), 1, anon_sym_is, - STATE(2485), 1, + ACTIONS(8192), 1, + anon_sym_COLON, + STATE(2467), 1, sym_bracketed_argument_list, - STATE(3487), 1, + STATE(3381), 1, sym_argument_list, - ACTIONS(5306), 2, + ACTIONS(5304), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(8148), 2, + ACTIONS(8150), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(8152), 2, + ACTIONS(8154), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(8154), 2, + ACTIONS(8156), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8164), 2, + ACTIONS(8166), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(8168), 2, + ACTIONS(8170), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(8170), 2, + ACTIONS(8172), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - STATE(5373), 9, + STATE(5322), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -664737,7 +659682,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [173070] = 40, + [167817] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -664758,72 +659703,72 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4100), 1, + ACTIONS(4042), 1, anon_sym_DOT, - ACTIONS(4102), 1, + ACTIONS(4044), 1, anon_sym_DASH_GT, - ACTIONS(5264), 1, + ACTIONS(5257), 1, anon_sym_LPAREN, - ACTIONS(5304), 1, + ACTIONS(5302), 1, anon_sym_BANG, - ACTIONS(5573), 1, + ACTIONS(5549), 1, anon_sym_LBRACK, - ACTIONS(6343), 1, + ACTIONS(6355), 1, anon_sym_switch, - ACTIONS(6357), 1, + ACTIONS(6369), 1, anon_sym_with, - ACTIONS(6813), 1, + ACTIONS(7195), 1, anon_sym_as, - ACTIONS(7139), 1, + ACTIONS(8152), 1, anon_sym_QMARK, - ACTIONS(7145), 1, + ACTIONS(8158), 1, anon_sym_SLASH, - ACTIONS(7147), 1, + ACTIONS(8160), 1, anon_sym_CARET, - ACTIONS(7149), 1, + ACTIONS(8162), 1, anon_sym_PIPE, - ACTIONS(7151), 1, + ACTIONS(8164), 1, anon_sym_AMP, - ACTIONS(7155), 1, + ACTIONS(8168), 1, anon_sym_GT_GT, - ACTIONS(7161), 1, + ACTIONS(8174), 1, anon_sym_DOT_DOT, - ACTIONS(7163), 1, + ACTIONS(8176), 1, anon_sym_AMP_AMP, - ACTIONS(7165), 1, + ACTIONS(8178), 1, anon_sym_PIPE_PIPE, - ACTIONS(7167), 1, + ACTIONS(8180), 1, anon_sym_QMARK_QMARK, - ACTIONS(7169), 1, + ACTIONS(8182), 1, anon_sym_is, - ACTIONS(8356), 1, - anon_sym_RPAREN, - STATE(2485), 1, + ACTIONS(8194), 1, + anon_sym_COLON, + STATE(2467), 1, sym_bracketed_argument_list, - STATE(3487), 1, + STATE(3381), 1, sym_argument_list, - ACTIONS(5306), 2, + ACTIONS(5304), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7137), 2, + ACTIONS(8150), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7141), 2, + ACTIONS(8154), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7143), 2, + ACTIONS(8156), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7153), 2, + ACTIONS(8166), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7157), 2, + ACTIONS(8170), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7159), 2, + ACTIONS(8172), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - STATE(5374), 9, + STATE(5323), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -664833,7 +659778,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [173206] = 40, + [167953] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -664854,72 +659799,72 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4100), 1, + ACTIONS(4042), 1, anon_sym_DOT, - ACTIONS(4102), 1, + ACTIONS(4044), 1, anon_sym_DASH_GT, - ACTIONS(5264), 1, + ACTIONS(5257), 1, anon_sym_LPAREN, - ACTIONS(5304), 1, + ACTIONS(5302), 1, anon_sym_BANG, - ACTIONS(5573), 1, + ACTIONS(5549), 1, anon_sym_LBRACK, - ACTIONS(6343), 1, + ACTIONS(6355), 1, anon_sym_switch, - ACTIONS(6357), 1, + ACTIONS(6369), 1, anon_sym_with, - ACTIONS(6813), 1, + ACTIONS(7195), 1, anon_sym_as, - ACTIONS(6815), 1, - anon_sym_is, - ACTIONS(7183), 1, + ACTIONS(8152), 1, + anon_sym_QMARK, + ACTIONS(8158), 1, anon_sym_SLASH, - ACTIONS(7187), 1, - anon_sym_GT_GT, - ACTIONS(7189), 1, - anon_sym_DOT_DOT, - ACTIONS(7195), 1, - anon_sym_AMP, - ACTIONS(7201), 1, + ACTIONS(8160), 1, anon_sym_CARET, - ACTIONS(7203), 1, + ACTIONS(8162), 1, anon_sym_PIPE, - ACTIONS(7205), 1, + ACTIONS(8164), 1, + anon_sym_AMP, + ACTIONS(8168), 1, + anon_sym_GT_GT, + ACTIONS(8174), 1, + anon_sym_DOT_DOT, + ACTIONS(8176), 1, anon_sym_AMP_AMP, - ACTIONS(7207), 1, + ACTIONS(8178), 1, anon_sym_PIPE_PIPE, - ACTIONS(7209), 1, + ACTIONS(8180), 1, anon_sym_QMARK_QMARK, - ACTIONS(7237), 1, - anon_sym_QMARK, - ACTIONS(8358), 1, - anon_sym_SEMI, - STATE(2485), 1, + ACTIONS(8182), 1, + anon_sym_is, + ACTIONS(8196), 1, + anon_sym_COLON, + STATE(2467), 1, sym_bracketed_argument_list, - STATE(3487), 1, + STATE(3381), 1, sym_argument_list, - ACTIONS(5306), 2, + ACTIONS(5304), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7179), 2, + ACTIONS(8150), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(8154), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7181), 2, + ACTIONS(8156), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7185), 2, + ACTIONS(8166), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7193), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(7197), 2, + ACTIONS(8170), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7199), 2, + ACTIONS(8172), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - STATE(5375), 9, + STATE(5324), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -664929,7 +659874,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [173342] = 40, + [168089] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -664950,72 +659895,72 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4100), 1, + ACTIONS(4042), 1, anon_sym_DOT, - ACTIONS(4102), 1, + ACTIONS(4044), 1, anon_sym_DASH_GT, - ACTIONS(5264), 1, + ACTIONS(5257), 1, anon_sym_LPAREN, - ACTIONS(5304), 1, + ACTIONS(5302), 1, anon_sym_BANG, - ACTIONS(5573), 1, + ACTIONS(5549), 1, anon_sym_LBRACK, - ACTIONS(6343), 1, + ACTIONS(6355), 1, anon_sym_switch, - ACTIONS(6357), 1, + ACTIONS(6369), 1, anon_sym_with, - ACTIONS(6813), 1, + ACTIONS(7195), 1, anon_sym_as, - ACTIONS(6815), 1, - anon_sym_is, - ACTIONS(7183), 1, + ACTIONS(8152), 1, + anon_sym_QMARK, + ACTIONS(8158), 1, anon_sym_SLASH, - ACTIONS(7187), 1, - anon_sym_GT_GT, - ACTIONS(7189), 1, - anon_sym_DOT_DOT, - ACTIONS(7195), 1, - anon_sym_AMP, - ACTIONS(7201), 1, + ACTIONS(8160), 1, anon_sym_CARET, - ACTIONS(7203), 1, + ACTIONS(8162), 1, anon_sym_PIPE, - ACTIONS(7205), 1, + ACTIONS(8164), 1, + anon_sym_AMP, + ACTIONS(8168), 1, + anon_sym_GT_GT, + ACTIONS(8174), 1, + anon_sym_DOT_DOT, + ACTIONS(8176), 1, anon_sym_AMP_AMP, - ACTIONS(7207), 1, + ACTIONS(8178), 1, anon_sym_PIPE_PIPE, - ACTIONS(7209), 1, + ACTIONS(8180), 1, anon_sym_QMARK_QMARK, - ACTIONS(7237), 1, - anon_sym_QMARK, - ACTIONS(7729), 1, - anon_sym_SEMI, - STATE(2485), 1, + ACTIONS(8182), 1, + anon_sym_is, + ACTIONS(8198), 1, + anon_sym_COLON, + STATE(2467), 1, sym_bracketed_argument_list, - STATE(3487), 1, + STATE(3381), 1, sym_argument_list, - ACTIONS(5306), 2, + ACTIONS(5304), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7179), 2, + ACTIONS(8150), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(8154), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7181), 2, + ACTIONS(8156), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7185), 2, + ACTIONS(8166), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7193), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(7197), 2, + ACTIONS(8170), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7199), 2, + ACTIONS(8172), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - STATE(5376), 9, + STATE(5325), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -665025,7 +659970,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [173478] = 40, + [168225] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -665046,72 +659991,72 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4100), 1, + ACTIONS(4042), 1, anon_sym_DOT, - ACTIONS(4102), 1, + ACTIONS(4044), 1, anon_sym_DASH_GT, - ACTIONS(5264), 1, + ACTIONS(5257), 1, anon_sym_LPAREN, - ACTIONS(5304), 1, + ACTIONS(5302), 1, anon_sym_BANG, - ACTIONS(5573), 1, + ACTIONS(5549), 1, anon_sym_LBRACK, - ACTIONS(5858), 1, - anon_sym_in, - ACTIONS(6343), 1, + ACTIONS(6355), 1, anon_sym_switch, - ACTIONS(6357), 1, + ACTIONS(6369), 1, anon_sym_with, - ACTIONS(6813), 1, + ACTIONS(7195), 1, anon_sym_as, - ACTIONS(8200), 1, + ACTIONS(8152), 1, anon_sym_QMARK, - ACTIONS(8206), 1, + ACTIONS(8158), 1, anon_sym_SLASH, - ACTIONS(8208), 1, + ACTIONS(8160), 1, anon_sym_CARET, - ACTIONS(8210), 1, + ACTIONS(8162), 1, anon_sym_PIPE, - ACTIONS(8212), 1, + ACTIONS(8164), 1, anon_sym_AMP, - ACTIONS(8216), 1, + ACTIONS(8168), 1, anon_sym_GT_GT, - ACTIONS(8222), 1, + ACTIONS(8174), 1, anon_sym_DOT_DOT, - ACTIONS(8224), 1, + ACTIONS(8176), 1, anon_sym_AMP_AMP, - ACTIONS(8226), 1, + ACTIONS(8178), 1, anon_sym_PIPE_PIPE, - ACTIONS(8228), 1, + ACTIONS(8180), 1, anon_sym_QMARK_QMARK, - ACTIONS(8230), 1, + ACTIONS(8182), 1, anon_sym_is, - STATE(2485), 1, + ACTIONS(8200), 1, + anon_sym_COLON, + STATE(2467), 1, sym_bracketed_argument_list, - STATE(3487), 1, + STATE(3381), 1, sym_argument_list, - ACTIONS(5306), 2, + ACTIONS(5304), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(8198), 2, + ACTIONS(8150), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(8202), 2, + ACTIONS(8154), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(8204), 2, + ACTIONS(8156), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8214), 2, + ACTIONS(8166), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(8218), 2, + ACTIONS(8170), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(8220), 2, + ACTIONS(8172), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - STATE(5377), 9, + STATE(5326), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -665121,7 +660066,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [173614] = 40, + [168361] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -665142,72 +660087,72 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4100), 1, + ACTIONS(4042), 1, anon_sym_DOT, - ACTIONS(4102), 1, + ACTIONS(4044), 1, anon_sym_DASH_GT, - ACTIONS(5264), 1, + ACTIONS(5257), 1, anon_sym_LPAREN, - ACTIONS(5304), 1, + ACTIONS(5302), 1, anon_sym_BANG, - ACTIONS(5573), 1, + ACTIONS(5549), 1, anon_sym_LBRACK, - ACTIONS(6343), 1, + ACTIONS(6355), 1, anon_sym_switch, - ACTIONS(6357), 1, + ACTIONS(6369), 1, anon_sym_with, - ACTIONS(7037), 1, + ACTIONS(7195), 1, anon_sym_as, - ACTIONS(8234), 1, + ACTIONS(8152), 1, anon_sym_QMARK, - ACTIONS(8236), 1, - anon_sym_DOT_DOT, - ACTIONS(8238), 1, - anon_sym_is, - ACTIONS(8248), 1, + ACTIONS(8158), 1, anon_sym_SLASH, - ACTIONS(8250), 1, + ACTIONS(8160), 1, anon_sym_CARET, - ACTIONS(8252), 1, + ACTIONS(8162), 1, anon_sym_PIPE, - ACTIONS(8254), 1, + ACTIONS(8164), 1, anon_sym_AMP, - ACTIONS(8258), 1, + ACTIONS(8168), 1, anon_sym_GT_GT, - ACTIONS(8264), 1, + ACTIONS(8174), 1, + anon_sym_DOT_DOT, + ACTIONS(8176), 1, anon_sym_AMP_AMP, - ACTIONS(8266), 1, + ACTIONS(8178), 1, anon_sym_PIPE_PIPE, - ACTIONS(8268), 1, + ACTIONS(8180), 1, anon_sym_QMARK_QMARK, - ACTIONS(8360), 1, + ACTIONS(8182), 1, + anon_sym_is, + ACTIONS(8202), 1, anon_sym_COLON, - STATE(2485), 1, + STATE(2467), 1, sym_bracketed_argument_list, - STATE(3487), 1, + STATE(3381), 1, sym_argument_list, - ACTIONS(5306), 2, + ACTIONS(5304), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(8242), 2, + ACTIONS(8150), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(8244), 2, + ACTIONS(8154), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(8246), 2, + ACTIONS(8156), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8256), 2, + ACTIONS(8166), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(8260), 2, + ACTIONS(8170), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(8262), 2, + ACTIONS(8172), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - STATE(5378), 9, + STATE(5327), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -665217,7 +660162,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [173750] = 40, + [168497] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -665238,72 +660183,72 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4100), 1, + ACTIONS(4042), 1, anon_sym_DOT, - ACTIONS(4102), 1, + ACTIONS(4044), 1, anon_sym_DASH_GT, - ACTIONS(5264), 1, + ACTIONS(5257), 1, anon_sym_LPAREN, - ACTIONS(5304), 1, + ACTIONS(5302), 1, anon_sym_BANG, - ACTIONS(5573), 1, + ACTIONS(5549), 1, anon_sym_LBRACK, - ACTIONS(5864), 1, - anon_sym_in, - ACTIONS(6343), 1, + ACTIONS(5652), 1, + anon_sym_COLON, + ACTIONS(6355), 1, anon_sym_switch, - ACTIONS(6357), 1, + ACTIONS(6369), 1, anon_sym_with, - ACTIONS(6813), 1, + ACTIONS(7195), 1, anon_sym_as, - ACTIONS(8200), 1, + ACTIONS(8152), 1, anon_sym_QMARK, - ACTIONS(8206), 1, + ACTIONS(8158), 1, anon_sym_SLASH, - ACTIONS(8208), 1, + ACTIONS(8160), 1, anon_sym_CARET, - ACTIONS(8210), 1, + ACTIONS(8162), 1, anon_sym_PIPE, - ACTIONS(8212), 1, + ACTIONS(8164), 1, anon_sym_AMP, - ACTIONS(8216), 1, + ACTIONS(8168), 1, anon_sym_GT_GT, - ACTIONS(8222), 1, + ACTIONS(8174), 1, anon_sym_DOT_DOT, - ACTIONS(8224), 1, + ACTIONS(8176), 1, anon_sym_AMP_AMP, - ACTIONS(8226), 1, + ACTIONS(8178), 1, anon_sym_PIPE_PIPE, - ACTIONS(8228), 1, + ACTIONS(8180), 1, anon_sym_QMARK_QMARK, - ACTIONS(8230), 1, + ACTIONS(8182), 1, anon_sym_is, - STATE(2485), 1, + STATE(2467), 1, sym_bracketed_argument_list, - STATE(3487), 1, + STATE(3381), 1, sym_argument_list, - ACTIONS(5306), 2, + ACTIONS(5304), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(8198), 2, + ACTIONS(8150), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(8202), 2, + ACTIONS(8154), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(8204), 2, + ACTIONS(8156), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8214), 2, + ACTIONS(8166), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(8218), 2, + ACTIONS(8170), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(8220), 2, + ACTIONS(8172), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - STATE(5379), 9, + STATE(5328), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -665313,7 +660258,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [173886] = 40, + [168633] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -665334,82 +660279,57 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4100), 1, - anon_sym_DOT, - ACTIONS(4102), 1, - anon_sym_DASH_GT, - ACTIONS(5264), 1, - anon_sym_LPAREN, - ACTIONS(5304), 1, + ACTIONS(8204), 1, + anon_sym_into, + STATE(5640), 1, + aux_sym__query_body_repeat2, + STATE(5329), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + ACTIONS(5935), 12, + anon_sym_LT, + anon_sym_GT, + anon_sym_in, + anon_sym_QMARK, anon_sym_BANG, - ACTIONS(5573), 1, - anon_sym_LBRACK, - ACTIONS(6343), 1, - anon_sym_switch, - ACTIONS(6357), 1, - anon_sym_with, - ACTIONS(6813), 1, - anon_sym_as, - ACTIONS(6815), 1, - anon_sym_is, - ACTIONS(7183), 1, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_SLASH, - ACTIONS(7187), 1, - anon_sym_GT_GT, - ACTIONS(7189), 1, - anon_sym_DOT_DOT, - ACTIONS(7195), 1, - anon_sym_AMP, - ACTIONS(7201), 1, - anon_sym_CARET, - ACTIONS(7203), 1, anon_sym_PIPE, - ACTIONS(7205), 1, - anon_sym_AMP_AMP, - ACTIONS(7207), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7209), 1, - anon_sym_QMARK_QMARK, - ACTIONS(7237), 1, - anon_sym_QMARK, - ACTIONS(8362), 1, - anon_sym_SEMI, - STATE(2485), 1, - sym_bracketed_argument_list, - STATE(3487), 1, - sym_argument_list, - ACTIONS(5306), 2, + anon_sym_AMP, + anon_sym_GT_GT, + anon_sym_DOT, + ACTIONS(5933), 22, + anon_sym_LBRACK, + anon_sym_LPAREN, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7179), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(7181), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7185), 2, + anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7193), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(7197), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7199), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - STATE(5380), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - [174022] = 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, + [168719] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -665430,72 +660350,72 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4100), 1, + ACTIONS(4042), 1, anon_sym_DOT, - ACTIONS(4102), 1, + ACTIONS(4044), 1, anon_sym_DASH_GT, - ACTIONS(5264), 1, + ACTIONS(5257), 1, anon_sym_LPAREN, - ACTIONS(5304), 1, + ACTIONS(5302), 1, anon_sym_BANG, - ACTIONS(5573), 1, + ACTIONS(5549), 1, anon_sym_LBRACK, - ACTIONS(6343), 1, + ACTIONS(6355), 1, anon_sym_switch, - ACTIONS(6357), 1, + ACTIONS(6369), 1, anon_sym_with, - ACTIONS(6813), 1, + ACTIONS(7195), 1, anon_sym_as, - ACTIONS(7139), 1, + ACTIONS(8152), 1, anon_sym_QMARK, - ACTIONS(7145), 1, + ACTIONS(8158), 1, anon_sym_SLASH, - ACTIONS(7147), 1, + ACTIONS(8160), 1, anon_sym_CARET, - ACTIONS(7149), 1, + ACTIONS(8162), 1, anon_sym_PIPE, - ACTIONS(7151), 1, + ACTIONS(8164), 1, anon_sym_AMP, - ACTIONS(7155), 1, + ACTIONS(8168), 1, anon_sym_GT_GT, - ACTIONS(7161), 1, + ACTIONS(8174), 1, anon_sym_DOT_DOT, - ACTIONS(7163), 1, + ACTIONS(8176), 1, anon_sym_AMP_AMP, - ACTIONS(7165), 1, + ACTIONS(8178), 1, anon_sym_PIPE_PIPE, - ACTIONS(7167), 1, + ACTIONS(8180), 1, anon_sym_QMARK_QMARK, - ACTIONS(7169), 1, + ACTIONS(8182), 1, anon_sym_is, - ACTIONS(8364), 1, - anon_sym_RPAREN, - STATE(2485), 1, + ACTIONS(8206), 1, + anon_sym_COLON, + STATE(2467), 1, sym_bracketed_argument_list, - STATE(3487), 1, + STATE(3381), 1, sym_argument_list, - ACTIONS(5306), 2, + ACTIONS(5304), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7137), 2, + ACTIONS(8150), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7141), 2, + ACTIONS(8154), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7143), 2, + ACTIONS(8156), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7153), 2, + ACTIONS(8166), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7157), 2, + ACTIONS(8170), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7159), 2, + ACTIONS(8172), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - STATE(5381), 9, + STATE(5330), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -665505,7 +660425,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [174158] = 40, + [168855] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -665526,72 +660446,72 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4100), 1, + ACTIONS(4042), 1, anon_sym_DOT, - ACTIONS(4102), 1, + ACTIONS(4044), 1, anon_sym_DASH_GT, - ACTIONS(5264), 1, + ACTIONS(5257), 1, anon_sym_LPAREN, - ACTIONS(5304), 1, + ACTIONS(5302), 1, anon_sym_BANG, - ACTIONS(5573), 1, + ACTIONS(5549), 1, anon_sym_LBRACK, - ACTIONS(6343), 1, + ACTIONS(6355), 1, anon_sym_switch, - ACTIONS(6357), 1, + ACTIONS(6369), 1, anon_sym_with, - ACTIONS(6813), 1, + ACTIONS(7195), 1, anon_sym_as, - ACTIONS(7139), 1, + ACTIONS(8152), 1, anon_sym_QMARK, - ACTIONS(7145), 1, + ACTIONS(8158), 1, anon_sym_SLASH, - ACTIONS(7147), 1, + ACTIONS(8160), 1, anon_sym_CARET, - ACTIONS(7149), 1, + ACTIONS(8162), 1, anon_sym_PIPE, - ACTIONS(7151), 1, + ACTIONS(8164), 1, anon_sym_AMP, - ACTIONS(7155), 1, + ACTIONS(8168), 1, anon_sym_GT_GT, - ACTIONS(7161), 1, + ACTIONS(8174), 1, anon_sym_DOT_DOT, - ACTIONS(7163), 1, + ACTIONS(8176), 1, anon_sym_AMP_AMP, - ACTIONS(7165), 1, + ACTIONS(8178), 1, anon_sym_PIPE_PIPE, - ACTIONS(7167), 1, + ACTIONS(8180), 1, anon_sym_QMARK_QMARK, - ACTIONS(7169), 1, + ACTIONS(8182), 1, anon_sym_is, - ACTIONS(8366), 1, - anon_sym_RPAREN, - STATE(2485), 1, + ACTIONS(8208), 1, + anon_sym_COLON, + STATE(2467), 1, sym_bracketed_argument_list, - STATE(3487), 1, + STATE(3381), 1, sym_argument_list, - ACTIONS(5306), 2, + ACTIONS(5304), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7137), 2, + ACTIONS(8150), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7141), 2, + ACTIONS(8154), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7143), 2, + ACTIONS(8156), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7153), 2, + ACTIONS(8166), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7157), 2, + ACTIONS(8170), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7159), 2, + ACTIONS(8172), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - STATE(5382), 9, + STATE(5331), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -665601,7 +660521,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [174294] = 40, + [168991] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -665622,72 +660542,72 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4100), 1, + ACTIONS(4042), 1, anon_sym_DOT, - ACTIONS(4102), 1, + ACTIONS(4044), 1, anon_sym_DASH_GT, - ACTIONS(5264), 1, + ACTIONS(5257), 1, anon_sym_LPAREN, - ACTIONS(5304), 1, + ACTIONS(5302), 1, anon_sym_BANG, - ACTIONS(5573), 1, + ACTIONS(5549), 1, anon_sym_LBRACK, - ACTIONS(6343), 1, + ACTIONS(6355), 1, anon_sym_switch, - ACTIONS(6357), 1, + ACTIONS(6369), 1, anon_sym_with, - ACTIONS(6813), 1, + ACTIONS(7195), 1, anon_sym_as, - ACTIONS(7139), 1, + ACTIONS(8152), 1, anon_sym_QMARK, - ACTIONS(7145), 1, + ACTIONS(8158), 1, anon_sym_SLASH, - ACTIONS(7147), 1, + ACTIONS(8160), 1, anon_sym_CARET, - ACTIONS(7149), 1, + ACTIONS(8162), 1, anon_sym_PIPE, - ACTIONS(7151), 1, + ACTIONS(8164), 1, anon_sym_AMP, - ACTIONS(7155), 1, + ACTIONS(8168), 1, anon_sym_GT_GT, - ACTIONS(7161), 1, + ACTIONS(8174), 1, anon_sym_DOT_DOT, - ACTIONS(7163), 1, + ACTIONS(8176), 1, anon_sym_AMP_AMP, - ACTIONS(7165), 1, + ACTIONS(8178), 1, anon_sym_PIPE_PIPE, - ACTIONS(7167), 1, + ACTIONS(8180), 1, anon_sym_QMARK_QMARK, - ACTIONS(7169), 1, + ACTIONS(8182), 1, anon_sym_is, - ACTIONS(8368), 1, - anon_sym_RPAREN, - STATE(2485), 1, + ACTIONS(8210), 1, + anon_sym_COLON, + STATE(2467), 1, sym_bracketed_argument_list, - STATE(3487), 1, + STATE(3381), 1, sym_argument_list, - ACTIONS(5306), 2, + ACTIONS(5304), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7137), 2, + ACTIONS(8150), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7141), 2, + ACTIONS(8154), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7143), 2, + ACTIONS(8156), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7153), 2, + ACTIONS(8166), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7157), 2, + ACTIONS(8170), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7159), 2, + ACTIONS(8172), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - STATE(5383), 9, + STATE(5332), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -665697,7 +660617,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [174430] = 40, + [169127] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -665718,72 +660638,72 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4100), 1, + ACTIONS(4042), 1, anon_sym_DOT, - ACTIONS(4102), 1, + ACTIONS(4044), 1, anon_sym_DASH_GT, - ACTIONS(5264), 1, + ACTIONS(5257), 1, anon_sym_LPAREN, - ACTIONS(5304), 1, + ACTIONS(5302), 1, anon_sym_BANG, - ACTIONS(5573), 1, + ACTIONS(5549), 1, anon_sym_LBRACK, - ACTIONS(6343), 1, + ACTIONS(6355), 1, anon_sym_switch, - ACTIONS(6357), 1, + ACTIONS(6369), 1, anon_sym_with, - ACTIONS(6813), 1, + ACTIONS(6811), 1, anon_sym_as, - ACTIONS(6815), 1, + ACTIONS(6813), 1, anon_sym_is, - ACTIONS(7183), 1, + ACTIONS(6985), 1, anon_sym_SLASH, - ACTIONS(7187), 1, + ACTIONS(6989), 1, anon_sym_GT_GT, - ACTIONS(7189), 1, + ACTIONS(6991), 1, anon_sym_DOT_DOT, - ACTIONS(7195), 1, - anon_sym_AMP, - ACTIONS(7201), 1, + ACTIONS(7099), 1, + anon_sym_QMARK, + ACTIONS(7101), 1, anon_sym_CARET, - ACTIONS(7203), 1, + ACTIONS(7103), 1, anon_sym_PIPE, - ACTIONS(7205), 1, + ACTIONS(7105), 1, + anon_sym_AMP, + ACTIONS(7111), 1, anon_sym_AMP_AMP, - ACTIONS(7207), 1, + ACTIONS(7113), 1, anon_sym_PIPE_PIPE, - ACTIONS(7209), 1, + ACTIONS(7115), 1, anon_sym_QMARK_QMARK, - ACTIONS(7237), 1, - anon_sym_QMARK, - ACTIONS(8370), 1, + ACTIONS(8212), 1, anon_sym_SEMI, - STATE(2485), 1, + STATE(2467), 1, sym_bracketed_argument_list, - STATE(3487), 1, + STATE(3381), 1, sym_argument_list, - ACTIONS(5306), 2, + ACTIONS(5304), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7179), 2, + ACTIONS(6981), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7181), 2, + ACTIONS(6983), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7185), 2, + ACTIONS(6987), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7193), 2, + ACTIONS(7097), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7197), 2, + ACTIONS(7107), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7199), 2, + ACTIONS(7109), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - STATE(5384), 9, + STATE(5333), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -665793,7 +660713,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [174566] = 40, + [169263] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -665814,72 +660734,72 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4100), 1, + ACTIONS(4042), 1, anon_sym_DOT, - ACTIONS(4102), 1, + ACTIONS(4044), 1, anon_sym_DASH_GT, - ACTIONS(5264), 1, + ACTIONS(5257), 1, anon_sym_LPAREN, - ACTIONS(5304), 1, + ACTIONS(5302), 1, anon_sym_BANG, - ACTIONS(5573), 1, + ACTIONS(5549), 1, anon_sym_LBRACK, - ACTIONS(6343), 1, + ACTIONS(6355), 1, anon_sym_switch, - ACTIONS(6357), 1, + ACTIONS(6369), 1, anon_sym_with, - ACTIONS(6690), 1, + ACTIONS(6811), 1, + anon_sym_as, + ACTIONS(7231), 1, + anon_sym_QMARK, + ACTIONS(7237), 1, anon_sym_SLASH, - ACTIONS(6692), 1, + ACTIONS(7239), 1, anon_sym_CARET, - ACTIONS(6694), 1, + ACTIONS(7241), 1, anon_sym_PIPE, - ACTIONS(6696), 1, + ACTIONS(7243), 1, anon_sym_AMP, - ACTIONS(6700), 1, + ACTIONS(7247), 1, anon_sym_GT_GT, - ACTIONS(6708), 1, + ACTIONS(7253), 1, + anon_sym_DOT_DOT, + ACTIONS(7255), 1, anon_sym_AMP_AMP, - ACTIONS(6710), 1, + ACTIONS(7257), 1, anon_sym_PIPE_PIPE, - ACTIONS(6712), 1, + ACTIONS(7259), 1, anon_sym_QMARK_QMARK, - ACTIONS(7037), 1, - anon_sym_as, - ACTIONS(7276), 1, - anon_sym_COLON, - ACTIONS(8234), 1, - anon_sym_QMARK, - ACTIONS(8236), 1, - anon_sym_DOT_DOT, - ACTIONS(8238), 1, + ACTIONS(7261), 1, anon_sym_is, - STATE(2485), 1, + ACTIONS(8214), 1, + anon_sym_RPAREN, + STATE(2467), 1, sym_bracketed_argument_list, - STATE(3487), 1, + STATE(3381), 1, sym_argument_list, - ACTIONS(5306), 2, + ACTIONS(5304), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6682), 2, + ACTIONS(7229), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(6686), 2, + ACTIONS(7233), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6688), 2, + ACTIONS(7235), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(6698), 2, + ACTIONS(7245), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(6702), 2, + ACTIONS(7249), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6704), 2, + ACTIONS(7251), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - STATE(5385), 9, + STATE(5334), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -665889,7 +660809,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [174702] = 40, + [169399] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -665910,105 +660830,72 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4100), 1, + ACTIONS(4042), 1, anon_sym_DOT, - ACTIONS(4102), 1, + ACTIONS(4044), 1, anon_sym_DASH_GT, - ACTIONS(5264), 1, + ACTIONS(5257), 1, anon_sym_LPAREN, - ACTIONS(5304), 1, + ACTIONS(5302), 1, anon_sym_BANG, - ACTIONS(5573), 1, + ACTIONS(5549), 1, anon_sym_LBRACK, - ACTIONS(6343), 1, + ACTIONS(6355), 1, anon_sym_switch, - ACTIONS(6357), 1, + ACTIONS(6369), 1, anon_sym_with, - ACTIONS(6813), 1, + ACTIONS(6811), 1, anon_sym_as, - ACTIONS(6815), 1, + ACTIONS(6813), 1, anon_sym_is, - ACTIONS(7183), 1, + ACTIONS(6985), 1, anon_sym_SLASH, - ACTIONS(7187), 1, + ACTIONS(6989), 1, anon_sym_GT_GT, - ACTIONS(7189), 1, + ACTIONS(6991), 1, anon_sym_DOT_DOT, - ACTIONS(7195), 1, - anon_sym_AMP, - ACTIONS(7201), 1, + ACTIONS(7099), 1, + anon_sym_QMARK, + ACTIONS(7101), 1, anon_sym_CARET, - ACTIONS(7203), 1, + ACTIONS(7103), 1, anon_sym_PIPE, - ACTIONS(7205), 1, + ACTIONS(7105), 1, + anon_sym_AMP, + ACTIONS(7111), 1, anon_sym_AMP_AMP, - ACTIONS(7207), 1, + ACTIONS(7113), 1, anon_sym_PIPE_PIPE, - ACTIONS(7209), 1, + ACTIONS(7115), 1, anon_sym_QMARK_QMARK, - ACTIONS(7237), 1, - anon_sym_QMARK, - ACTIONS(8372), 1, + ACTIONS(8216), 1, anon_sym_SEMI, - STATE(2485), 1, + STATE(2467), 1, sym_bracketed_argument_list, - STATE(3487), 1, + STATE(3381), 1, sym_argument_list, - ACTIONS(5306), 2, + ACTIONS(5304), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7179), 2, + ACTIONS(6981), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7181), 2, + ACTIONS(6983), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7185), 2, + ACTIONS(6987), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7193), 2, + ACTIONS(7097), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7197), 2, + ACTIONS(7107), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7199), 2, + ACTIONS(7109), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - STATE(5386), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - [174838] = 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(8374), 1, - anon_sym_and, - STATE(5387), 9, + STATE(5335), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -666018,44 +660905,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(6069), 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(6067), 24, - 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_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, - [174922] = 40, + [169535] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -666076,72 +660926,72 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4100), 1, + ACTIONS(4042), 1, anon_sym_DOT, - ACTIONS(4102), 1, + ACTIONS(4044), 1, anon_sym_DASH_GT, - ACTIONS(5264), 1, + ACTIONS(5257), 1, anon_sym_LPAREN, - ACTIONS(5304), 1, + ACTIONS(5302), 1, anon_sym_BANG, - ACTIONS(5573), 1, + ACTIONS(5549), 1, anon_sym_LBRACK, - ACTIONS(6343), 1, + ACTIONS(6355), 1, anon_sym_switch, - ACTIONS(6357), 1, + ACTIONS(6369), 1, anon_sym_with, - ACTIONS(6813), 1, + ACTIONS(6811), 1, anon_sym_as, - ACTIONS(6815), 1, - anon_sym_is, - ACTIONS(7183), 1, + ACTIONS(7231), 1, + anon_sym_QMARK, + ACTIONS(7237), 1, anon_sym_SLASH, - ACTIONS(7187), 1, - anon_sym_GT_GT, - ACTIONS(7189), 1, - anon_sym_DOT_DOT, - ACTIONS(7195), 1, - anon_sym_AMP, - ACTIONS(7201), 1, + ACTIONS(7239), 1, anon_sym_CARET, - ACTIONS(7203), 1, + ACTIONS(7241), 1, anon_sym_PIPE, - ACTIONS(7205), 1, + ACTIONS(7243), 1, + anon_sym_AMP, + ACTIONS(7247), 1, + anon_sym_GT_GT, + ACTIONS(7253), 1, + anon_sym_DOT_DOT, + ACTIONS(7255), 1, anon_sym_AMP_AMP, - ACTIONS(7207), 1, + ACTIONS(7257), 1, anon_sym_PIPE_PIPE, - ACTIONS(7209), 1, + ACTIONS(7259), 1, anon_sym_QMARK_QMARK, - ACTIONS(7237), 1, - anon_sym_QMARK, - ACTIONS(8376), 1, - anon_sym_SEMI, - STATE(2485), 1, + ACTIONS(7261), 1, + anon_sym_is, + ACTIONS(8218), 1, + anon_sym_RPAREN, + STATE(2467), 1, sym_bracketed_argument_list, - STATE(3487), 1, + STATE(3381), 1, sym_argument_list, - ACTIONS(5306), 2, + ACTIONS(5304), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7179), 2, + ACTIONS(7229), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(7233), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7181), 2, + ACTIONS(7235), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7185), 2, + ACTIONS(7245), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7193), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(7197), 2, + ACTIONS(7249), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7199), 2, + ACTIONS(7251), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - STATE(5388), 9, + STATE(5336), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -666151,7 +661001,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [175058] = 29, + [169671] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -666172,49 +661022,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4100), 1, - anon_sym_DOT, - ACTIONS(4102), 1, - anon_sym_DASH_GT, - ACTIONS(5264), 1, - anon_sym_LPAREN, - ACTIONS(5304), 1, - anon_sym_BANG, - ACTIONS(5573), 1, - anon_sym_LBRACK, - ACTIONS(6343), 1, - anon_sym_switch, - ACTIONS(6357), 1, - anon_sym_with, - ACTIONS(8284), 1, - anon_sym_SLASH, - ACTIONS(8294), 1, - anon_sym_GT_GT, - ACTIONS(8300), 1, - anon_sym_DOT_DOT, - STATE(2485), 1, - sym_bracketed_argument_list, - STATE(3487), 1, - sym_argument_list, - ACTIONS(5306), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(8280), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(8282), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(8292), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - ACTIONS(5664), 5, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_AMP, - STATE(5389), 9, + ACTIONS(8220), 1, + anon_sym_and, + STATE(5337), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -666224,19 +661034,44 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5660), 11, + ACTIONS(6097), 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(6095), 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_equals, + anon_sym_by, anon_sym_as, anon_sym_is, - [175172] = 40, + anon_sym_DASH_GT, + anon_sym_with, + [169755] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -666257,72 +661092,72 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4100), 1, + ACTIONS(4042), 1, anon_sym_DOT, - ACTIONS(4102), 1, + ACTIONS(4044), 1, anon_sym_DASH_GT, - ACTIONS(5264), 1, + ACTIONS(5257), 1, anon_sym_LPAREN, - ACTIONS(5304), 1, + ACTIONS(5302), 1, anon_sym_BANG, - ACTIONS(5573), 1, + ACTIONS(5549), 1, anon_sym_LBRACK, - ACTIONS(6343), 1, + ACTIONS(6355), 1, anon_sym_switch, - ACTIONS(6357), 1, + ACTIONS(6369), 1, anon_sym_with, - ACTIONS(7037), 1, + ACTIONS(6811), 1, anon_sym_as, - ACTIONS(8234), 1, + ACTIONS(7231), 1, anon_sym_QMARK, - ACTIONS(8236), 1, - anon_sym_DOT_DOT, - ACTIONS(8238), 1, - anon_sym_is, - ACTIONS(8248), 1, + ACTIONS(7237), 1, anon_sym_SLASH, - ACTIONS(8250), 1, + ACTIONS(7239), 1, anon_sym_CARET, - ACTIONS(8252), 1, + ACTIONS(7241), 1, anon_sym_PIPE, - ACTIONS(8254), 1, + ACTIONS(7243), 1, anon_sym_AMP, - ACTIONS(8258), 1, + ACTIONS(7247), 1, anon_sym_GT_GT, - ACTIONS(8264), 1, + ACTIONS(7253), 1, + anon_sym_DOT_DOT, + ACTIONS(7255), 1, anon_sym_AMP_AMP, - ACTIONS(8266), 1, + ACTIONS(7257), 1, anon_sym_PIPE_PIPE, - ACTIONS(8268), 1, + ACTIONS(7259), 1, anon_sym_QMARK_QMARK, - ACTIONS(8378), 1, - anon_sym_COLON, - STATE(2485), 1, + ACTIONS(7261), 1, + anon_sym_is, + ACTIONS(8222), 1, + anon_sym_RPAREN, + STATE(2467), 1, sym_bracketed_argument_list, - STATE(3487), 1, + STATE(3381), 1, sym_argument_list, - ACTIONS(5306), 2, + ACTIONS(5304), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(8242), 2, + ACTIONS(7229), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(8244), 2, + ACTIONS(7233), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(8246), 2, + ACTIONS(7235), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8256), 2, + ACTIONS(7245), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(8260), 2, + ACTIONS(7249), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(8262), 2, + ACTIONS(7251), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - STATE(5390), 9, + STATE(5338), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -666332,7 +661167,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [175308] = 26, + [169891] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -666353,122 +661188,72 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4100), 1, + ACTIONS(4042), 1, anon_sym_DOT, - ACTIONS(4102), 1, + ACTIONS(4044), 1, anon_sym_DASH_GT, - ACTIONS(5264), 1, + ACTIONS(5257), 1, anon_sym_LPAREN, - ACTIONS(5304), 1, + ACTIONS(5302), 1, anon_sym_BANG, - ACTIONS(5573), 1, + ACTIONS(5549), 1, anon_sym_LBRACK, - ACTIONS(6343), 1, + ACTIONS(6355), 1, anon_sym_switch, - ACTIONS(6357), 1, + ACTIONS(6369), 1, anon_sym_with, - ACTIONS(8284), 1, - anon_sym_SLASH, - ACTIONS(8300), 1, - anon_sym_DOT_DOT, - STATE(2485), 1, - sym_bracketed_argument_list, - STATE(3487), 1, - sym_argument_list, - ACTIONS(5306), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(8282), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(5664), 8, - anon_sym_LT, - anon_sym_GT, + ACTIONS(6811), 1, + anon_sym_as, + ACTIONS(7231), 1, anon_sym_QMARK, - anon_sym_PLUS, - anon_sym_DASH, + ACTIONS(7237), 1, + anon_sym_SLASH, + ACTIONS(7239), 1, + anon_sym_CARET, + ACTIONS(7241), 1, anon_sym_PIPE, + ACTIONS(7243), 1, anon_sym_AMP, + ACTIONS(7247), 1, anon_sym_GT_GT, - STATE(5391), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - ACTIONS(5660), 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, + ACTIONS(7253), 1, + anon_sym_DOT_DOT, + ACTIONS(7255), 1, anon_sym_AMP_AMP, + ACTIONS(7257), 1, anon_sym_PIPE_PIPE, + ACTIONS(7259), 1, anon_sym_QMARK_QMARK, - anon_sym_equals, - anon_sym_as, + ACTIONS(7261), 1, anon_sym_is, - [175416] = 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(4100), 1, - anon_sym_DOT, - ACTIONS(4102), 1, - anon_sym_DASH_GT, - ACTIONS(5264), 1, - anon_sym_LPAREN, - ACTIONS(5304), 1, - anon_sym_BANG, - ACTIONS(5573), 1, - anon_sym_LBRACK, - ACTIONS(6343), 1, - anon_sym_switch, - ACTIONS(6357), 1, - anon_sym_with, - ACTIONS(8300), 1, - anon_sym_DOT_DOT, - STATE(2485), 1, + ACTIONS(8224), 1, + anon_sym_RPAREN, + STATE(2467), 1, sym_bracketed_argument_list, - STATE(3487), 1, + STATE(3381), 1, sym_argument_list, - ACTIONS(5306), 2, + ACTIONS(5304), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5664), 9, + ACTIONS(7229), 2, 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(5392), 9, + ACTIONS(7235), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(7245), 2, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + ACTIONS(7249), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(7251), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + STATE(5339), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -666478,23 +661263,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5660), 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, - [175520] = 35, + [170027] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -666515,67 +661284,72 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4100), 1, + ACTIONS(4042), 1, anon_sym_DOT, - ACTIONS(4102), 1, + ACTIONS(4044), 1, anon_sym_DASH_GT, - ACTIONS(5264), 1, + ACTIONS(5257), 1, anon_sym_LPAREN, - ACTIONS(5304), 1, + ACTIONS(5302), 1, anon_sym_BANG, - ACTIONS(5573), 1, + ACTIONS(5549), 1, anon_sym_LBRACK, - ACTIONS(6343), 1, + ACTIONS(6355), 1, anon_sym_switch, - ACTIONS(6357), 1, + ACTIONS(6369), 1, anon_sym_with, - ACTIONS(8284), 1, + ACTIONS(6811), 1, + anon_sym_as, + ACTIONS(6813), 1, + anon_sym_is, + ACTIONS(6985), 1, anon_sym_SLASH, - ACTIONS(8290), 1, - anon_sym_AMP, - ACTIONS(8294), 1, + ACTIONS(6989), 1, anon_sym_GT_GT, - ACTIONS(8300), 1, + ACTIONS(6991), 1, anon_sym_DOT_DOT, - ACTIONS(8308), 1, - anon_sym_as, - ACTIONS(8310), 1, - anon_sym_is, - STATE(2485), 1, + ACTIONS(7099), 1, + anon_sym_QMARK, + ACTIONS(7101), 1, + anon_sym_CARET, + ACTIONS(7103), 1, + anon_sym_PIPE, + ACTIONS(7105), 1, + anon_sym_AMP, + ACTIONS(7111), 1, + anon_sym_AMP_AMP, + ACTIONS(7113), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7115), 1, + anon_sym_QMARK_QMARK, + ACTIONS(8226), 1, + anon_sym_SEMI, + STATE(2467), 1, sym_bracketed_argument_list, - STATE(3487), 1, + STATE(3381), 1, sym_argument_list, - ACTIONS(5306), 2, + ACTIONS(5304), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5664), 2, - anon_sym_QMARK, - anon_sym_PIPE, - ACTIONS(8276), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(8280), 2, + ACTIONS(6981), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(8282), 2, + ACTIONS(6983), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8292), 2, + ACTIONS(6987), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(8296), 2, + ACTIONS(7097), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(7107), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(8298), 2, + ACTIONS(7109), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5660), 5, - anon_sym_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_QMARK_QMARK, - anon_sym_equals, - STATE(5393), 9, + STATE(5340), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -666585,7 +661359,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [175646] = 36, + [170163] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -666606,68 +661380,72 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4100), 1, + ACTIONS(4042), 1, anon_sym_DOT, - ACTIONS(4102), 1, + ACTIONS(4044), 1, anon_sym_DASH_GT, - ACTIONS(5264), 1, + ACTIONS(5257), 1, anon_sym_LPAREN, - ACTIONS(5304), 1, + ACTIONS(5302), 1, anon_sym_BANG, - ACTIONS(5573), 1, + ACTIONS(5549), 1, anon_sym_LBRACK, - ACTIONS(6343), 1, + ACTIONS(6355), 1, anon_sym_switch, - ACTIONS(6357), 1, + ACTIONS(6369), 1, anon_sym_with, - ACTIONS(8284), 1, + ACTIONS(7195), 1, + anon_sym_as, + ACTIONS(8152), 1, + anon_sym_QMARK, + ACTIONS(8158), 1, anon_sym_SLASH, - ACTIONS(8286), 1, + ACTIONS(8160), 1, anon_sym_CARET, - ACTIONS(8290), 1, + ACTIONS(8162), 1, + anon_sym_PIPE, + ACTIONS(8164), 1, anon_sym_AMP, - ACTIONS(8294), 1, + ACTIONS(8168), 1, anon_sym_GT_GT, - ACTIONS(8300), 1, + ACTIONS(8174), 1, anon_sym_DOT_DOT, - ACTIONS(8308), 1, - anon_sym_as, - ACTIONS(8310), 1, + ACTIONS(8176), 1, + anon_sym_AMP_AMP, + ACTIONS(8178), 1, + anon_sym_PIPE_PIPE, + ACTIONS(8180), 1, + anon_sym_QMARK_QMARK, + ACTIONS(8182), 1, anon_sym_is, - STATE(2485), 1, + ACTIONS(8228), 1, + anon_sym_COLON, + STATE(2467), 1, sym_bracketed_argument_list, - STATE(3487), 1, + STATE(3381), 1, sym_argument_list, - ACTIONS(5306), 2, + ACTIONS(5304), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5664), 2, - anon_sym_QMARK, - anon_sym_PIPE, - ACTIONS(8276), 2, + ACTIONS(8150), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(8280), 2, + ACTIONS(8154), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(8282), 2, + ACTIONS(8156), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8292), 2, + ACTIONS(8166), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(8296), 2, + ACTIONS(8170), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(8298), 2, + ACTIONS(8172), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5660), 4, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_QMARK_QMARK, - anon_sym_equals, - STATE(5394), 9, + STATE(5341), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -666677,7 +661455,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [175774] = 34, + [170299] = 35, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -666698,66 +661476,67 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4100), 1, + ACTIONS(4042), 1, anon_sym_DOT, - ACTIONS(4102), 1, + ACTIONS(4044), 1, anon_sym_DASH_GT, - ACTIONS(5264), 1, + ACTIONS(5257), 1, anon_sym_LPAREN, - ACTIONS(5304), 1, + ACTIONS(5302), 1, anon_sym_BANG, - ACTIONS(5573), 1, + ACTIONS(5549), 1, anon_sym_LBRACK, - ACTIONS(6343), 1, + ACTIONS(6355), 1, anon_sym_switch, - ACTIONS(6357), 1, + ACTIONS(6369), 1, anon_sym_with, - ACTIONS(8284), 1, + ACTIONS(6811), 1, + anon_sym_as, + ACTIONS(8236), 1, anon_sym_SLASH, - ACTIONS(8294), 1, + ACTIONS(8238), 1, + anon_sym_AMP, + ACTIONS(8242), 1, anon_sym_GT_GT, - ACTIONS(8300), 1, + ACTIONS(8248), 1, anon_sym_DOT_DOT, - ACTIONS(8308), 1, - anon_sym_as, - ACTIONS(8310), 1, + ACTIONS(8250), 1, anon_sym_is, - STATE(2485), 1, + STATE(2467), 1, sym_bracketed_argument_list, - STATE(3487), 1, + STATE(3381), 1, sym_argument_list, - ACTIONS(5306), 2, + ACTIONS(5304), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(8276), 2, + ACTIONS(5739), 2, + anon_sym_QMARK, + anon_sym_PIPE, + ACTIONS(8230), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(8280), 2, + ACTIONS(8232), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(8282), 2, + ACTIONS(8234), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8292), 2, + ACTIONS(8240), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(8296), 2, + ACTIONS(8244), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(8298), 2, + ACTIONS(8246), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5664), 3, - anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_AMP, - ACTIONS(5660), 5, + ACTIONS(5737), 5, + anon_sym_in, anon_sym_CARET, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_QMARK_QMARK, - anon_sym_equals, - STATE(5395), 9, + STATE(5342), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -666767,7 +661546,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [175898] = 27, + [170425] = 36, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -666788,69 +661567,78 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4100), 1, + ACTIONS(4042), 1, anon_sym_DOT, - ACTIONS(4102), 1, + ACTIONS(4044), 1, anon_sym_DASH_GT, - ACTIONS(5264), 1, + ACTIONS(5257), 1, anon_sym_LPAREN, - ACTIONS(5304), 1, + ACTIONS(5302), 1, anon_sym_BANG, - ACTIONS(5573), 1, + ACTIONS(5549), 1, anon_sym_LBRACK, - ACTIONS(6343), 1, + ACTIONS(6355), 1, anon_sym_switch, - ACTIONS(6357), 1, + ACTIONS(6369), 1, anon_sym_with, - ACTIONS(8284), 1, + ACTIONS(6811), 1, + anon_sym_as, + ACTIONS(8236), 1, anon_sym_SLASH, - ACTIONS(8300), 1, + ACTIONS(8238), 1, + anon_sym_AMP, + ACTIONS(8242), 1, + anon_sym_GT_GT, + ACTIONS(8248), 1, anon_sym_DOT_DOT, - STATE(2485), 1, + ACTIONS(8250), 1, + anon_sym_is, + ACTIONS(8252), 1, + anon_sym_CARET, + STATE(2467), 1, sym_bracketed_argument_list, - STATE(3487), 1, + STATE(3381), 1, sym_argument_list, - ACTIONS(5306), 2, + ACTIONS(5304), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(8280), 2, + ACTIONS(5739), 2, + anon_sym_QMARK, + anon_sym_PIPE, + ACTIONS(8230), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(8232), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(8282), 2, + ACTIONS(8234), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(5664), 6, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT_GT, - 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(5660), 13, - anon_sym_CARET, + ACTIONS(8240), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, + ACTIONS(8244), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + ACTIONS(8246), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, + ACTIONS(5737), 4, + anon_sym_in, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_QMARK_QMARK, - anon_sym_equals, - anon_sym_as, - anon_sym_is, - [176008] = 33, + STATE(5343), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + [170553] = 34, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -666871,125 +661659,66 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4100), 1, + ACTIONS(4042), 1, anon_sym_DOT, - ACTIONS(4102), 1, + ACTIONS(4044), 1, anon_sym_DASH_GT, - ACTIONS(5264), 1, + ACTIONS(5257), 1, anon_sym_LPAREN, - ACTIONS(5304), 1, + ACTIONS(5302), 1, anon_sym_BANG, - ACTIONS(5573), 1, + ACTIONS(5549), 1, anon_sym_LBRACK, - ACTIONS(6343), 1, + ACTIONS(6355), 1, anon_sym_switch, - ACTIONS(6357), 1, + ACTIONS(6369), 1, anon_sym_with, - ACTIONS(8284), 1, + ACTIONS(6811), 1, + anon_sym_as, + ACTIONS(8236), 1, anon_sym_SLASH, - ACTIONS(8294), 1, + ACTIONS(8242), 1, anon_sym_GT_GT, - ACTIONS(8300), 1, + ACTIONS(8248), 1, anon_sym_DOT_DOT, - ACTIONS(8308), 1, - anon_sym_as, - ACTIONS(8310), 1, + ACTIONS(8250), 1, anon_sym_is, - STATE(2485), 1, + STATE(2467), 1, sym_bracketed_argument_list, - STATE(3487), 1, + STATE(3381), 1, sym_argument_list, - ACTIONS(5306), 2, + ACTIONS(5304), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(8276), 2, + ACTIONS(8230), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(8280), 2, + ACTIONS(8232), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(8282), 2, + ACTIONS(8234), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8292), 2, + ACTIONS(8240), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(8298), 2, + ACTIONS(8244), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(8246), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5664), 3, + ACTIONS(5739), 3, anon_sym_QMARK, anon_sym_PIPE, anon_sym_AMP, - ACTIONS(5660), 7, + ACTIONS(5737), 5, + 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, - anon_sym_equals, - 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, - [176130] = 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(4100), 1, - anon_sym_DOT, - ACTIONS(4102), 1, - anon_sym_DASH_GT, - ACTIONS(5264), 1, - anon_sym_LPAREN, - ACTIONS(5304), 1, - anon_sym_BANG, - ACTIONS(5573), 1, - anon_sym_LBRACK, - ACTIONS(8300), 1, - anon_sym_DOT_DOT, - STATE(2485), 1, - sym_bracketed_argument_list, - STATE(3487), 1, - sym_argument_list, - ACTIONS(5306), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5733), 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(5398), 9, + STATE(5344), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -666999,25 +661728,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5731), 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, - [176230] = 37, + [170677] = 33, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -667038,69 +661749,65 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4100), 1, + ACTIONS(4042), 1, anon_sym_DOT, - ACTIONS(4102), 1, + ACTIONS(4044), 1, anon_sym_DASH_GT, - ACTIONS(5264), 1, + ACTIONS(5257), 1, anon_sym_LPAREN, - ACTIONS(5304), 1, + ACTIONS(5302), 1, anon_sym_BANG, - ACTIONS(5573), 1, + ACTIONS(5549), 1, anon_sym_LBRACK, - ACTIONS(5664), 1, - anon_sym_QMARK, - ACTIONS(6343), 1, + ACTIONS(6355), 1, anon_sym_switch, - ACTIONS(6357), 1, + ACTIONS(6369), 1, anon_sym_with, - ACTIONS(8284), 1, + ACTIONS(6811), 1, + anon_sym_as, + ACTIONS(8236), 1, anon_sym_SLASH, - ACTIONS(8286), 1, - anon_sym_CARET, - ACTIONS(8288), 1, - anon_sym_PIPE, - ACTIONS(8290), 1, - anon_sym_AMP, - ACTIONS(8294), 1, + ACTIONS(8242), 1, anon_sym_GT_GT, - ACTIONS(8300), 1, + ACTIONS(8248), 1, anon_sym_DOT_DOT, - ACTIONS(8308), 1, - anon_sym_as, - ACTIONS(8310), 1, + ACTIONS(8250), 1, anon_sym_is, - STATE(2485), 1, + STATE(2467), 1, sym_bracketed_argument_list, - STATE(3487), 1, + STATE(3381), 1, sym_argument_list, - ACTIONS(5306), 2, + ACTIONS(5304), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(8276), 2, + ACTIONS(8230), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(8280), 2, + ACTIONS(8232), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(8282), 2, + ACTIONS(8234), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8292), 2, + ACTIONS(8240), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(8296), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(8298), 2, + ACTIONS(8246), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5660), 4, + ACTIONS(5739), 3, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_AMP, + ACTIONS(5737), 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, - anon_sym_equals, - STATE(5399), 9, + STATE(5345), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -667110,7 +661817,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [176360] = 40, + [170799] = 37, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -667131,72 +661838,69 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4100), 1, + ACTIONS(4042), 1, anon_sym_DOT, - ACTIONS(4102), 1, + ACTIONS(4044), 1, anon_sym_DASH_GT, - ACTIONS(5264), 1, + ACTIONS(5257), 1, anon_sym_LPAREN, - ACTIONS(5304), 1, + ACTIONS(5302), 1, anon_sym_BANG, - ACTIONS(5573), 1, + ACTIONS(5549), 1, anon_sym_LBRACK, - ACTIONS(6343), 1, + ACTIONS(5739), 1, + anon_sym_QMARK, + ACTIONS(6355), 1, anon_sym_switch, - ACTIONS(6357), 1, + ACTIONS(6369), 1, anon_sym_with, - ACTIONS(7037), 1, + ACTIONS(6811), 1, anon_sym_as, - ACTIONS(8234), 1, - anon_sym_QMARK, ACTIONS(8236), 1, - anon_sym_DOT_DOT, + anon_sym_SLASH, ACTIONS(8238), 1, - anon_sym_is, + anon_sym_AMP, + ACTIONS(8242), 1, + anon_sym_GT_GT, ACTIONS(8248), 1, - anon_sym_SLASH, + anon_sym_DOT_DOT, ACTIONS(8250), 1, - anon_sym_CARET, + anon_sym_is, ACTIONS(8252), 1, - anon_sym_PIPE, + anon_sym_CARET, ACTIONS(8254), 1, - anon_sym_AMP, - ACTIONS(8258), 1, - anon_sym_GT_GT, - ACTIONS(8264), 1, - anon_sym_AMP_AMP, - ACTIONS(8266), 1, - anon_sym_PIPE_PIPE, - ACTIONS(8268), 1, - anon_sym_QMARK_QMARK, - ACTIONS(8380), 1, - anon_sym_COLON, - STATE(2485), 1, + anon_sym_PIPE, + STATE(2467), 1, sym_bracketed_argument_list, - STATE(3487), 1, + STATE(3381), 1, sym_argument_list, - ACTIONS(5306), 2, + ACTIONS(5304), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(8242), 2, + ACTIONS(8230), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(8244), 2, + ACTIONS(8232), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(8246), 2, + ACTIONS(8234), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8256), 2, + ACTIONS(8240), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(8260), 2, + ACTIONS(8244), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(8262), 2, + ACTIONS(8246), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - STATE(5400), 9, + ACTIONS(5737), 4, + anon_sym_in, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, + STATE(5346), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -667206,7 +661910,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [176496] = 38, + [170929] = 38, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -667227,70 +661931,70 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4100), 1, + ACTIONS(4042), 1, anon_sym_DOT, - ACTIONS(4102), 1, + ACTIONS(4044), 1, anon_sym_DASH_GT, - ACTIONS(5264), 1, + ACTIONS(5257), 1, anon_sym_LPAREN, - ACTIONS(5304), 1, + ACTIONS(5302), 1, anon_sym_BANG, - ACTIONS(5573), 1, + ACTIONS(5549), 1, anon_sym_LBRACK, - ACTIONS(5664), 1, + ACTIONS(5739), 1, anon_sym_QMARK, - ACTIONS(6343), 1, + ACTIONS(6355), 1, anon_sym_switch, - ACTIONS(6357), 1, + ACTIONS(6369), 1, anon_sym_with, - ACTIONS(8284), 1, + ACTIONS(6811), 1, + anon_sym_as, + ACTIONS(8236), 1, anon_sym_SLASH, - ACTIONS(8286), 1, - anon_sym_CARET, - ACTIONS(8288), 1, - anon_sym_PIPE, - ACTIONS(8290), 1, + ACTIONS(8238), 1, anon_sym_AMP, - ACTIONS(8294), 1, + ACTIONS(8242), 1, anon_sym_GT_GT, - ACTIONS(8300), 1, + ACTIONS(8248), 1, anon_sym_DOT_DOT, - ACTIONS(8302), 1, - anon_sym_AMP_AMP, - ACTIONS(8308), 1, - anon_sym_as, - ACTIONS(8310), 1, + ACTIONS(8250), 1, anon_sym_is, - STATE(2485), 1, + ACTIONS(8252), 1, + anon_sym_CARET, + ACTIONS(8254), 1, + anon_sym_PIPE, + ACTIONS(8256), 1, + anon_sym_AMP_AMP, + STATE(2467), 1, sym_bracketed_argument_list, - STATE(3487), 1, + STATE(3381), 1, sym_argument_list, - ACTIONS(5306), 2, + ACTIONS(5304), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(8276), 2, + ACTIONS(8230), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(8280), 2, + ACTIONS(8232), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(8282), 2, + ACTIONS(8234), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8292), 2, + ACTIONS(8240), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(8296), 2, + ACTIONS(8244), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(8298), 2, + ACTIONS(8246), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5660), 3, + ACTIONS(5737), 3, + anon_sym_in, anon_sym_PIPE_PIPE, anon_sym_QMARK_QMARK, - anon_sym_equals, - STATE(5401), 9, + STATE(5347), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -667300,7 +662004,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [176628] = 40, + [171061] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -667321,72 +662025,72 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4100), 1, + ACTIONS(4042), 1, anon_sym_DOT, - ACTIONS(4102), 1, + ACTIONS(4044), 1, anon_sym_DASH_GT, - ACTIONS(5264), 1, + ACTIONS(5257), 1, anon_sym_LPAREN, - ACTIONS(5304), 1, + ACTIONS(5302), 1, anon_sym_BANG, - ACTIONS(5573), 1, + ACTIONS(5549), 1, anon_sym_LBRACK, - ACTIONS(5660), 1, - anon_sym_equals, - ACTIONS(5664), 1, + ACTIONS(5737), 1, + anon_sym_in, + ACTIONS(5739), 1, anon_sym_QMARK, - ACTIONS(6343), 1, + ACTIONS(6355), 1, anon_sym_switch, - ACTIONS(6357), 1, + ACTIONS(6369), 1, anon_sym_with, - ACTIONS(8284), 1, + ACTIONS(6811), 1, + anon_sym_as, + ACTIONS(8236), 1, anon_sym_SLASH, - ACTIONS(8286), 1, - anon_sym_CARET, - ACTIONS(8288), 1, - anon_sym_PIPE, - ACTIONS(8290), 1, + ACTIONS(8238), 1, anon_sym_AMP, - ACTIONS(8294), 1, + ACTIONS(8242), 1, anon_sym_GT_GT, - ACTIONS(8300), 1, + ACTIONS(8248), 1, anon_sym_DOT_DOT, - ACTIONS(8302), 1, + ACTIONS(8250), 1, + anon_sym_is, + ACTIONS(8252), 1, + anon_sym_CARET, + ACTIONS(8254), 1, + anon_sym_PIPE, + ACTIONS(8256), 1, anon_sym_AMP_AMP, - ACTIONS(8304), 1, + ACTIONS(8258), 1, anon_sym_PIPE_PIPE, - ACTIONS(8306), 1, + ACTIONS(8260), 1, anon_sym_QMARK_QMARK, - ACTIONS(8308), 1, - anon_sym_as, - ACTIONS(8310), 1, - anon_sym_is, - STATE(2485), 1, + STATE(2467), 1, sym_bracketed_argument_list, - STATE(3487), 1, + STATE(3381), 1, sym_argument_list, - ACTIONS(5306), 2, + ACTIONS(5304), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(8276), 2, + ACTIONS(8230), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(8280), 2, + ACTIONS(8232), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(8282), 2, + ACTIONS(8234), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8292), 2, + ACTIONS(8240), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(8296), 2, + ACTIONS(8244), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(8298), 2, + ACTIONS(8246), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - STATE(5402), 9, + STATE(5348), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -667396,7 +662100,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [176764] = 40, + [171197] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -667417,72 +662121,72 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4100), 1, + ACTIONS(4042), 1, anon_sym_DOT, - ACTIONS(4102), 1, + ACTIONS(4044), 1, anon_sym_DASH_GT, - ACTIONS(5264), 1, + ACTIONS(5257), 1, anon_sym_LPAREN, - ACTIONS(5304), 1, + ACTIONS(5302), 1, anon_sym_BANG, - ACTIONS(5573), 1, + ACTIONS(5549), 1, anon_sym_LBRACK, - ACTIONS(6343), 1, + ACTIONS(6355), 1, anon_sym_switch, - ACTIONS(6357), 1, + ACTIONS(6369), 1, anon_sym_with, - ACTIONS(6813), 1, + ACTIONS(6811), 1, anon_sym_as, - ACTIONS(7139), 1, - anon_sym_QMARK, - ACTIONS(7145), 1, + ACTIONS(6813), 1, + anon_sym_is, + ACTIONS(6985), 1, anon_sym_SLASH, - ACTIONS(7147), 1, + ACTIONS(6989), 1, + anon_sym_GT_GT, + ACTIONS(6991), 1, + anon_sym_DOT_DOT, + ACTIONS(7099), 1, + anon_sym_QMARK, + ACTIONS(7101), 1, anon_sym_CARET, - ACTIONS(7149), 1, + ACTIONS(7103), 1, anon_sym_PIPE, - ACTIONS(7151), 1, + ACTIONS(7105), 1, anon_sym_AMP, - ACTIONS(7155), 1, - anon_sym_GT_GT, - ACTIONS(7161), 1, - anon_sym_DOT_DOT, - ACTIONS(7163), 1, + ACTIONS(7111), 1, anon_sym_AMP_AMP, - ACTIONS(7165), 1, + ACTIONS(7113), 1, anon_sym_PIPE_PIPE, - ACTIONS(7167), 1, + ACTIONS(7115), 1, anon_sym_QMARK_QMARK, - ACTIONS(7169), 1, - anon_sym_is, - ACTIONS(8382), 1, - anon_sym_RPAREN, - STATE(2485), 1, + ACTIONS(8262), 1, + anon_sym_SEMI, + STATE(2467), 1, sym_bracketed_argument_list, - STATE(3487), 1, + STATE(3381), 1, sym_argument_list, - ACTIONS(5306), 2, + ACTIONS(5304), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7137), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(7141), 2, + ACTIONS(6981), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7143), 2, + ACTIONS(6983), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7153), 2, + ACTIONS(6987), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7157), 2, + ACTIONS(7097), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(7107), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7159), 2, + ACTIONS(7109), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - STATE(5403), 9, + STATE(5349), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -667492,7 +662196,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [176900] = 40, + [171333] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -667513,72 +662217,72 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4100), 1, + ACTIONS(4042), 1, anon_sym_DOT, - ACTIONS(4102), 1, + ACTIONS(4044), 1, anon_sym_DASH_GT, - ACTIONS(5264), 1, + ACTIONS(5257), 1, anon_sym_LPAREN, - ACTIONS(5304), 1, + ACTIONS(5302), 1, anon_sym_BANG, - ACTIONS(5573), 1, + ACTIONS(5549), 1, anon_sym_LBRACK, - ACTIONS(6343), 1, + ACTIONS(6355), 1, anon_sym_switch, - ACTIONS(6357), 1, + ACTIONS(6369), 1, anon_sym_with, - ACTIONS(6813), 1, + ACTIONS(6811), 1, anon_sym_as, - ACTIONS(7139), 1, + ACTIONS(7231), 1, anon_sym_QMARK, - ACTIONS(7145), 1, + ACTIONS(7237), 1, anon_sym_SLASH, - ACTIONS(7147), 1, + ACTIONS(7239), 1, anon_sym_CARET, - ACTIONS(7149), 1, + ACTIONS(7241), 1, anon_sym_PIPE, - ACTIONS(7151), 1, + ACTIONS(7243), 1, anon_sym_AMP, - ACTIONS(7155), 1, + ACTIONS(7247), 1, anon_sym_GT_GT, - ACTIONS(7161), 1, + ACTIONS(7253), 1, anon_sym_DOT_DOT, - ACTIONS(7163), 1, + ACTIONS(7255), 1, anon_sym_AMP_AMP, - ACTIONS(7165), 1, + ACTIONS(7257), 1, anon_sym_PIPE_PIPE, - ACTIONS(7167), 1, + ACTIONS(7259), 1, anon_sym_QMARK_QMARK, - ACTIONS(7169), 1, + ACTIONS(7261), 1, anon_sym_is, - ACTIONS(8384), 1, + ACTIONS(8264), 1, anon_sym_RPAREN, - STATE(2485), 1, + STATE(2467), 1, sym_bracketed_argument_list, - STATE(3487), 1, + STATE(3381), 1, sym_argument_list, - ACTIONS(5306), 2, + ACTIONS(5304), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7137), 2, + ACTIONS(7229), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7141), 2, + ACTIONS(7233), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7143), 2, + ACTIONS(7235), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7153), 2, + ACTIONS(7245), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7157), 2, + ACTIONS(7249), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7159), 2, + ACTIONS(7251), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - STATE(5404), 9, + STATE(5350), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -667588,7 +662292,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [177036] = 40, + [171469] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -667609,72 +662313,72 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4100), 1, + ACTIONS(4042), 1, anon_sym_DOT, - ACTIONS(4102), 1, + ACTIONS(4044), 1, anon_sym_DASH_GT, - ACTIONS(5072), 1, - anon_sym_equals, - ACTIONS(5264), 1, + ACTIONS(5257), 1, anon_sym_LPAREN, - ACTIONS(5304), 1, + ACTIONS(5302), 1, anon_sym_BANG, - ACTIONS(5573), 1, + ACTIONS(5549), 1, anon_sym_LBRACK, - ACTIONS(6343), 1, + ACTIONS(6355), 1, anon_sym_switch, - ACTIONS(6357), 1, + ACTIONS(6369), 1, anon_sym_with, - ACTIONS(8278), 1, + ACTIONS(8268), 1, anon_sym_QMARK, - ACTIONS(8284), 1, + ACTIONS(8274), 1, anon_sym_SLASH, - ACTIONS(8286), 1, + ACTIONS(8276), 1, anon_sym_CARET, - ACTIONS(8288), 1, + ACTIONS(8278), 1, anon_sym_PIPE, - ACTIONS(8290), 1, + ACTIONS(8280), 1, anon_sym_AMP, - ACTIONS(8294), 1, + ACTIONS(8284), 1, anon_sym_GT_GT, - ACTIONS(8300), 1, + ACTIONS(8290), 1, anon_sym_DOT_DOT, - ACTIONS(8302), 1, + ACTIONS(8292), 1, anon_sym_AMP_AMP, - ACTIONS(8304), 1, + ACTIONS(8294), 1, anon_sym_PIPE_PIPE, - ACTIONS(8306), 1, + ACTIONS(8296), 1, anon_sym_QMARK_QMARK, - ACTIONS(8308), 1, + ACTIONS(8298), 1, + anon_sym_by, + ACTIONS(8300), 1, anon_sym_as, - ACTIONS(8310), 1, + ACTIONS(8302), 1, anon_sym_is, - STATE(2485), 1, + STATE(2467), 1, sym_bracketed_argument_list, - STATE(3487), 1, + STATE(3381), 1, sym_argument_list, - ACTIONS(5306), 2, + ACTIONS(5304), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(8276), 2, + ACTIONS(8266), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(8280), 2, + ACTIONS(8270), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(8282), 2, + ACTIONS(8272), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8292), 2, + ACTIONS(8282), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(8296), 2, + ACTIONS(8286), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(8298), 2, + ACTIONS(8288), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - STATE(5405), 9, + STATE(5351), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -667684,7 +662388,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [177172] = 40, + [171605] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -667705,72 +662409,72 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4100), 1, + ACTIONS(4042), 1, anon_sym_DOT, - ACTIONS(4102), 1, + ACTIONS(4044), 1, anon_sym_DASH_GT, - ACTIONS(5264), 1, + ACTIONS(4996), 1, + anon_sym_in, + ACTIONS(5257), 1, anon_sym_LPAREN, - ACTIONS(5304), 1, + ACTIONS(5302), 1, anon_sym_BANG, - ACTIONS(5573), 1, + ACTIONS(5549), 1, anon_sym_LBRACK, - ACTIONS(6343), 1, + ACTIONS(6355), 1, anon_sym_switch, - ACTIONS(6357), 1, + ACTIONS(6369), 1, anon_sym_with, - ACTIONS(6813), 1, + ACTIONS(6811), 1, anon_sym_as, - ACTIONS(7139), 1, - anon_sym_QMARK, - ACTIONS(7145), 1, + ACTIONS(8236), 1, anon_sym_SLASH, - ACTIONS(7147), 1, - anon_sym_CARET, - ACTIONS(7149), 1, - anon_sym_PIPE, - ACTIONS(7151), 1, + ACTIONS(8238), 1, anon_sym_AMP, - ACTIONS(7155), 1, + ACTIONS(8242), 1, anon_sym_GT_GT, - ACTIONS(7161), 1, + ACTIONS(8248), 1, anon_sym_DOT_DOT, - ACTIONS(7163), 1, + ACTIONS(8250), 1, + anon_sym_is, + ACTIONS(8252), 1, + anon_sym_CARET, + ACTIONS(8254), 1, + anon_sym_PIPE, + ACTIONS(8256), 1, anon_sym_AMP_AMP, - ACTIONS(7165), 1, + ACTIONS(8258), 1, anon_sym_PIPE_PIPE, - ACTIONS(7167), 1, + ACTIONS(8260), 1, anon_sym_QMARK_QMARK, - ACTIONS(7169), 1, - anon_sym_is, - ACTIONS(8386), 1, - anon_sym_RPAREN, - STATE(2485), 1, + ACTIONS(8304), 1, + anon_sym_QMARK, + STATE(2467), 1, sym_bracketed_argument_list, - STATE(3487), 1, + STATE(3381), 1, sym_argument_list, - ACTIONS(5306), 2, + ACTIONS(5304), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7137), 2, + ACTIONS(8230), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7141), 2, + ACTIONS(8232), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7143), 2, + ACTIONS(8234), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7153), 2, + ACTIONS(8240), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7157), 2, + ACTIONS(8244), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7159), 2, + ACTIONS(8246), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - STATE(5406), 9, + STATE(5352), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -667780,7 +662484,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [177308] = 40, + [171741] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -667801,72 +662505,72 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4100), 1, + ACTIONS(4042), 1, anon_sym_DOT, - ACTIONS(4102), 1, + ACTIONS(4044), 1, anon_sym_DASH_GT, - ACTIONS(5264), 1, + ACTIONS(5257), 1, anon_sym_LPAREN, - ACTIONS(5304), 1, + ACTIONS(5302), 1, anon_sym_BANG, - ACTIONS(5573), 1, + ACTIONS(5549), 1, anon_sym_LBRACK, - ACTIONS(6343), 1, + ACTIONS(6355), 1, anon_sym_switch, - ACTIONS(6357), 1, + ACTIONS(6369), 1, anon_sym_with, - ACTIONS(6813), 1, + ACTIONS(6811), 1, anon_sym_as, - ACTIONS(7139), 1, + ACTIONS(7231), 1, anon_sym_QMARK, - ACTIONS(7145), 1, + ACTIONS(7237), 1, anon_sym_SLASH, - ACTIONS(7147), 1, + ACTIONS(7239), 1, anon_sym_CARET, - ACTIONS(7149), 1, + ACTIONS(7241), 1, anon_sym_PIPE, - ACTIONS(7151), 1, + ACTIONS(7243), 1, anon_sym_AMP, - ACTIONS(7155), 1, + ACTIONS(7247), 1, anon_sym_GT_GT, - ACTIONS(7161), 1, + ACTIONS(7253), 1, anon_sym_DOT_DOT, - ACTIONS(7163), 1, + ACTIONS(7255), 1, anon_sym_AMP_AMP, - ACTIONS(7165), 1, + ACTIONS(7257), 1, anon_sym_PIPE_PIPE, - ACTIONS(7167), 1, + ACTIONS(7259), 1, anon_sym_QMARK_QMARK, - ACTIONS(7169), 1, + ACTIONS(7261), 1, anon_sym_is, - ACTIONS(8388), 1, + ACTIONS(8306), 1, anon_sym_RPAREN, - STATE(2485), 1, + STATE(2467), 1, sym_bracketed_argument_list, - STATE(3487), 1, + STATE(3381), 1, sym_argument_list, - ACTIONS(5306), 2, + ACTIONS(5304), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7137), 2, + ACTIONS(7229), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7141), 2, + ACTIONS(7233), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7143), 2, + ACTIONS(7235), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7153), 2, + ACTIONS(7245), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7157), 2, + ACTIONS(7249), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7159), 2, + ACTIONS(7251), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - STATE(5407), 9, + STATE(5353), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -667876,7 +662580,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [177444] = 40, + [171877] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -667897,72 +662601,72 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4100), 1, + ACTIONS(4042), 1, anon_sym_DOT, - ACTIONS(4102), 1, + ACTIONS(4044), 1, anon_sym_DASH_GT, - ACTIONS(5264), 1, + ACTIONS(5257), 1, anon_sym_LPAREN, - ACTIONS(5304), 1, + ACTIONS(5302), 1, anon_sym_BANG, - ACTIONS(5573), 1, + ACTIONS(5549), 1, anon_sym_LBRACK, - ACTIONS(5882), 1, - anon_sym_equals, - ACTIONS(6343), 1, + ACTIONS(6355), 1, anon_sym_switch, - ACTIONS(6357), 1, + ACTIONS(6369), 1, anon_sym_with, - ACTIONS(8278), 1, + ACTIONS(6811), 1, + anon_sym_as, + ACTIONS(7231), 1, anon_sym_QMARK, - ACTIONS(8284), 1, + ACTIONS(7237), 1, anon_sym_SLASH, - ACTIONS(8286), 1, + ACTIONS(7239), 1, anon_sym_CARET, - ACTIONS(8288), 1, + ACTIONS(7241), 1, anon_sym_PIPE, - ACTIONS(8290), 1, + ACTIONS(7243), 1, anon_sym_AMP, - ACTIONS(8294), 1, + ACTIONS(7247), 1, anon_sym_GT_GT, - ACTIONS(8300), 1, + ACTIONS(7253), 1, anon_sym_DOT_DOT, - ACTIONS(8302), 1, + ACTIONS(7255), 1, anon_sym_AMP_AMP, - ACTIONS(8304), 1, + ACTIONS(7257), 1, anon_sym_PIPE_PIPE, - ACTIONS(8306), 1, + ACTIONS(7259), 1, anon_sym_QMARK_QMARK, - ACTIONS(8308), 1, - anon_sym_as, - ACTIONS(8310), 1, + ACTIONS(7261), 1, anon_sym_is, - STATE(2485), 1, + ACTIONS(8308), 1, + anon_sym_RPAREN, + STATE(2467), 1, sym_bracketed_argument_list, - STATE(3487), 1, + STATE(3381), 1, sym_argument_list, - ACTIONS(5306), 2, + ACTIONS(5304), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(8276), 2, + ACTIONS(7229), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(8280), 2, + ACTIONS(7233), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(8282), 2, + ACTIONS(7235), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8292), 2, + ACTIONS(7245), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(8296), 2, + ACTIONS(7249), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(8298), 2, + ACTIONS(7251), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - STATE(5408), 9, + STATE(5354), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -667972,7 +662676,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [177580] = 40, + [172013] = 24, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -667993,72 +662697,106 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4100), 1, - anon_sym_DOT, - ACTIONS(4102), 1, - anon_sym_DASH_GT, - ACTIONS(5264), 1, - anon_sym_LPAREN, - ACTIONS(5304), 1, - anon_sym_BANG, - ACTIONS(5573), 1, - anon_sym_LBRACK, - ACTIONS(6343), 1, - anon_sym_switch, - ACTIONS(6357), 1, - anon_sym_with, - ACTIONS(8278), 1, - anon_sym_QMARK, - ACTIONS(8284), 1, - anon_sym_SLASH, - ACTIONS(8286), 1, - anon_sym_CARET, - ACTIONS(8288), 1, - anon_sym_PIPE, - ACTIONS(8290), 1, - anon_sym_AMP, - ACTIONS(8294), 1, - anon_sym_GT_GT, - ACTIONS(8300), 1, - anon_sym_DOT_DOT, - ACTIONS(8302), 1, - anon_sym_AMP_AMP, - ACTIONS(8304), 1, - anon_sym_PIPE_PIPE, - ACTIONS(8306), 1, - anon_sym_QMARK_QMARK, - ACTIONS(8308), 1, - anon_sym_as, + ACTIONS(25), 1, + sym__identifier_token, ACTIONS(8310), 1, - anon_sym_is, - ACTIONS(8390), 1, + anon_sym_LPAREN, + ACTIONS(8312), 1, + anon_sym_operator, + ACTIONS(8314), 1, + anon_sym_this, + STATE(2168), 1, + sym__reserved_identifier, + STATE(2170), 1, + sym_generic_name, + STATE(5929), 1, + sym_explicit_interface_specifier, + STATE(6235), 1, + sym_identifier, + STATE(6504), 1, + sym_tuple_pattern, + STATE(6838), 1, + sym_variable_declarator, + STATE(7353), 1, + sym__name, + STATE(4068), 3, + sym_alias_qualified_name, + sym__simple_name, + sym_qualified_name, + STATE(5355), 9, + sym_preproc_region, + sym_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, - STATE(2485), 1, - sym_bracketed_argument_list, - STATE(3487), 1, - sym_argument_list, - ACTIONS(5306), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(8276), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(8280), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(8282), 2, + anon_sym_let, + anon_sym_orderby, + anon_sym_ascending, + anon_sym_descending, + anon_sym_group, + anon_sym_by, + anon_sym_select, + [172117] = 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(3963), 1, + anon_sym_LBRACE, + ACTIONS(4044), 1, + anon_sym_DASH_GT, + ACTIONS(6601), 1, + anon_sym_LBRACK, + ACTIONS(6603), 1, anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(8292), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - ACTIONS(8296), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(8298), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - STATE(5409), 9, + ACTIONS(6705), 1, + anon_sym_QMARK, + ACTIONS(7968), 1, + anon_sym_DOT, + ACTIONS(8319), 1, + anon_sym_LPAREN, + STATE(7155), 1, + sym_attribute_argument_list, + ACTIONS(8316), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + STATE(5356), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -668068,7 +662806,34 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [177716] = 40, + ACTIONS(3961), 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, + [172215] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -668089,72 +662854,72 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4100), 1, + ACTIONS(4042), 1, anon_sym_DOT, - ACTIONS(4102), 1, + ACTIONS(4044), 1, anon_sym_DASH_GT, - ACTIONS(5264), 1, + ACTIONS(5257), 1, anon_sym_LPAREN, - ACTIONS(5304), 1, + ACTIONS(5302), 1, anon_sym_BANG, - ACTIONS(5573), 1, + ACTIONS(5549), 1, anon_sym_LBRACK, - ACTIONS(6343), 1, + ACTIONS(6355), 1, anon_sym_switch, - ACTIONS(6357), 1, + ACTIONS(6369), 1, anon_sym_with, - ACTIONS(8394), 1, + ACTIONS(6811), 1, + anon_sym_as, + ACTIONS(7231), 1, anon_sym_QMARK, - ACTIONS(8400), 1, + ACTIONS(7237), 1, anon_sym_SLASH, - ACTIONS(8402), 1, + ACTIONS(7239), 1, anon_sym_CARET, - ACTIONS(8404), 1, + ACTIONS(7241), 1, anon_sym_PIPE, - ACTIONS(8406), 1, + ACTIONS(7243), 1, anon_sym_AMP, - ACTIONS(8410), 1, + ACTIONS(7247), 1, anon_sym_GT_GT, - ACTIONS(8416), 1, + ACTIONS(7253), 1, anon_sym_DOT_DOT, - ACTIONS(8418), 1, + ACTIONS(7255), 1, anon_sym_AMP_AMP, - ACTIONS(8420), 1, + ACTIONS(7257), 1, anon_sym_PIPE_PIPE, - ACTIONS(8422), 1, + ACTIONS(7259), 1, anon_sym_QMARK_QMARK, - ACTIONS(8424), 1, - anon_sym_on, - ACTIONS(8426), 1, - anon_sym_as, - ACTIONS(8428), 1, + ACTIONS(7261), 1, anon_sym_is, - STATE(2485), 1, + ACTIONS(8322), 1, + anon_sym_RPAREN, + STATE(2467), 1, sym_bracketed_argument_list, - STATE(3487), 1, + STATE(3381), 1, sym_argument_list, - ACTIONS(5306), 2, + ACTIONS(5304), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(8392), 2, + ACTIONS(7229), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(8396), 2, + ACTIONS(7233), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(8398), 2, + ACTIONS(7235), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8408), 2, + ACTIONS(7245), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(8412), 2, + ACTIONS(7249), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(8414), 2, + ACTIONS(7251), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - STATE(5410), 9, + STATE(5357), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -668164,7 +662929,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [177852] = 40, + [172351] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -668185,72 +662950,72 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4100), 1, + ACTIONS(4042), 1, anon_sym_DOT, - ACTIONS(4102), 1, + ACTIONS(4044), 1, anon_sym_DASH_GT, - ACTIONS(5264), 1, + ACTIONS(5257), 1, anon_sym_LPAREN, - ACTIONS(5304), 1, + ACTIONS(5302), 1, anon_sym_BANG, - ACTIONS(5573), 1, + ACTIONS(5549), 1, anon_sym_LBRACK, - ACTIONS(6343), 1, + ACTIONS(6355), 1, anon_sym_switch, - ACTIONS(6357), 1, + ACTIONS(6369), 1, anon_sym_with, - ACTIONS(7037), 1, + ACTIONS(6811), 1, anon_sym_as, - ACTIONS(8234), 1, - anon_sym_QMARK, - ACTIONS(8236), 1, - anon_sym_DOT_DOT, - ACTIONS(8238), 1, + ACTIONS(6813), 1, anon_sym_is, - ACTIONS(8248), 1, + ACTIONS(6985), 1, anon_sym_SLASH, - ACTIONS(8250), 1, + ACTIONS(6989), 1, + anon_sym_GT_GT, + ACTIONS(6991), 1, + anon_sym_DOT_DOT, + ACTIONS(7099), 1, + anon_sym_QMARK, + ACTIONS(7101), 1, anon_sym_CARET, - ACTIONS(8252), 1, + ACTIONS(7103), 1, anon_sym_PIPE, - ACTIONS(8254), 1, + ACTIONS(7105), 1, anon_sym_AMP, - ACTIONS(8258), 1, - anon_sym_GT_GT, - ACTIONS(8264), 1, + ACTIONS(7111), 1, anon_sym_AMP_AMP, - ACTIONS(8266), 1, + ACTIONS(7113), 1, anon_sym_PIPE_PIPE, - ACTIONS(8268), 1, + ACTIONS(7115), 1, anon_sym_QMARK_QMARK, - ACTIONS(8430), 1, - anon_sym_COLON, - STATE(2485), 1, + ACTIONS(8324), 1, + anon_sym_SEMI, + STATE(2467), 1, sym_bracketed_argument_list, - STATE(3487), 1, + STATE(3381), 1, sym_argument_list, - ACTIONS(5306), 2, + ACTIONS(5304), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(8242), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(8244), 2, + ACTIONS(6981), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(8246), 2, + ACTIONS(6983), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8256), 2, + ACTIONS(6987), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(8260), 2, + ACTIONS(7097), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(7107), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(8262), 2, + ACTIONS(7109), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - STATE(5411), 9, + STATE(5358), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -668260,7 +663025,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [177988] = 40, + [172487] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -668281,72 +663046,72 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4100), 1, + ACTIONS(4042), 1, anon_sym_DOT, - ACTIONS(4102), 1, + ACTIONS(4044), 1, anon_sym_DASH_GT, - ACTIONS(5264), 1, + ACTIONS(5257), 1, anon_sym_LPAREN, - ACTIONS(5304), 1, + ACTIONS(5302), 1, anon_sym_BANG, - ACTIONS(5573), 1, + ACTIONS(5549), 1, anon_sym_LBRACK, - ACTIONS(5858), 1, - anon_sym_on, - ACTIONS(6343), 1, + ACTIONS(6355), 1, anon_sym_switch, - ACTIONS(6357), 1, + ACTIONS(6369), 1, anon_sym_with, - ACTIONS(8394), 1, + ACTIONS(6811), 1, + anon_sym_as, + ACTIONS(7231), 1, anon_sym_QMARK, - ACTIONS(8400), 1, + ACTIONS(7237), 1, anon_sym_SLASH, - ACTIONS(8402), 1, + ACTIONS(7239), 1, anon_sym_CARET, - ACTIONS(8404), 1, + ACTIONS(7241), 1, anon_sym_PIPE, - ACTIONS(8406), 1, + ACTIONS(7243), 1, anon_sym_AMP, - ACTIONS(8410), 1, + ACTIONS(7247), 1, anon_sym_GT_GT, - ACTIONS(8416), 1, + ACTIONS(7253), 1, anon_sym_DOT_DOT, - ACTIONS(8418), 1, + ACTIONS(7255), 1, anon_sym_AMP_AMP, - ACTIONS(8420), 1, + ACTIONS(7257), 1, anon_sym_PIPE_PIPE, - ACTIONS(8422), 1, + ACTIONS(7259), 1, anon_sym_QMARK_QMARK, - ACTIONS(8426), 1, - anon_sym_as, - ACTIONS(8428), 1, + ACTIONS(7261), 1, anon_sym_is, - STATE(2485), 1, + ACTIONS(8326), 1, + anon_sym_RPAREN, + STATE(2467), 1, sym_bracketed_argument_list, - STATE(3487), 1, + STATE(3381), 1, sym_argument_list, - ACTIONS(5306), 2, + ACTIONS(5304), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(8392), 2, + ACTIONS(7229), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(8396), 2, + ACTIONS(7233), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(8398), 2, + ACTIONS(7235), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8408), 2, + ACTIONS(7245), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(8412), 2, + ACTIONS(7249), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(8414), 2, + ACTIONS(7251), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - STATE(5412), 9, + STATE(5359), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -668356,7 +663121,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [178124] = 40, + [172623] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -668377,72 +663142,72 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4100), 1, + ACTIONS(4042), 1, anon_sym_DOT, - ACTIONS(4102), 1, + ACTIONS(4044), 1, anon_sym_DASH_GT, - ACTIONS(5264), 1, + ACTIONS(5257), 1, anon_sym_LPAREN, - ACTIONS(5304), 1, + ACTIONS(5302), 1, anon_sym_BANG, - ACTIONS(5573), 1, + ACTIONS(5549), 1, anon_sym_LBRACK, - ACTIONS(6343), 1, + ACTIONS(5652), 1, + anon_sym_in, + ACTIONS(6355), 1, anon_sym_switch, - ACTIONS(6357), 1, + ACTIONS(6369), 1, anon_sym_with, - ACTIONS(7037), 1, + ACTIONS(6811), 1, anon_sym_as, - ACTIONS(8234), 1, - anon_sym_QMARK, ACTIONS(8236), 1, - anon_sym_DOT_DOT, + anon_sym_SLASH, ACTIONS(8238), 1, - anon_sym_is, + anon_sym_AMP, + ACTIONS(8242), 1, + anon_sym_GT_GT, ACTIONS(8248), 1, - anon_sym_SLASH, + anon_sym_DOT_DOT, ACTIONS(8250), 1, - anon_sym_CARET, + anon_sym_is, ACTIONS(8252), 1, - anon_sym_PIPE, + anon_sym_CARET, ACTIONS(8254), 1, - anon_sym_AMP, - ACTIONS(8258), 1, - anon_sym_GT_GT, - ACTIONS(8264), 1, + anon_sym_PIPE, + ACTIONS(8256), 1, anon_sym_AMP_AMP, - ACTIONS(8266), 1, + ACTIONS(8258), 1, anon_sym_PIPE_PIPE, - ACTIONS(8268), 1, + ACTIONS(8260), 1, anon_sym_QMARK_QMARK, - ACTIONS(8432), 1, - anon_sym_COLON, - STATE(2485), 1, + ACTIONS(8304), 1, + anon_sym_QMARK, + STATE(2467), 1, sym_bracketed_argument_list, - STATE(3487), 1, + STATE(3381), 1, sym_argument_list, - ACTIONS(5306), 2, + ACTIONS(5304), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(8242), 2, + ACTIONS(8230), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(8244), 2, + ACTIONS(8232), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(8246), 2, + ACTIONS(8234), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8256), 2, + ACTIONS(8240), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(8260), 2, + ACTIONS(8244), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(8262), 2, + ACTIONS(8246), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - STATE(5413), 9, + STATE(5360), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -668452,7 +663217,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [178260] = 40, + [172759] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -668473,72 +663238,72 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4100), 1, + ACTIONS(4042), 1, anon_sym_DOT, - ACTIONS(4102), 1, + ACTIONS(4044), 1, anon_sym_DASH_GT, - ACTIONS(5264), 1, + ACTIONS(5257), 1, anon_sym_LPAREN, - ACTIONS(5304), 1, + ACTIONS(5302), 1, anon_sym_BANG, - ACTIONS(5573), 1, + ACTIONS(5549), 1, anon_sym_LBRACK, - ACTIONS(5864), 1, - anon_sym_on, - ACTIONS(6343), 1, + ACTIONS(6355), 1, anon_sym_switch, - ACTIONS(6357), 1, + ACTIONS(6369), 1, anon_sym_with, - ACTIONS(8394), 1, + ACTIONS(7195), 1, + anon_sym_as, + ACTIONS(8152), 1, anon_sym_QMARK, - ACTIONS(8400), 1, + ACTIONS(8158), 1, anon_sym_SLASH, - ACTIONS(8402), 1, + ACTIONS(8160), 1, anon_sym_CARET, - ACTIONS(8404), 1, + ACTIONS(8162), 1, anon_sym_PIPE, - ACTIONS(8406), 1, + ACTIONS(8164), 1, anon_sym_AMP, - ACTIONS(8410), 1, + ACTIONS(8168), 1, anon_sym_GT_GT, - ACTIONS(8416), 1, + ACTIONS(8174), 1, anon_sym_DOT_DOT, - ACTIONS(8418), 1, + ACTIONS(8176), 1, anon_sym_AMP_AMP, - ACTIONS(8420), 1, + ACTIONS(8178), 1, anon_sym_PIPE_PIPE, - ACTIONS(8422), 1, + ACTIONS(8180), 1, anon_sym_QMARK_QMARK, - ACTIONS(8426), 1, - anon_sym_as, - ACTIONS(8428), 1, + ACTIONS(8182), 1, anon_sym_is, - STATE(2485), 1, + ACTIONS(8328), 1, + anon_sym_COLON, + STATE(2467), 1, sym_bracketed_argument_list, - STATE(3487), 1, + STATE(3381), 1, sym_argument_list, - ACTIONS(5306), 2, + ACTIONS(5304), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(8392), 2, + ACTIONS(8150), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(8396), 2, + ACTIONS(8154), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(8398), 2, + ACTIONS(8156), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8408), 2, + ACTIONS(8166), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(8412), 2, + ACTIONS(8170), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(8414), 2, + ACTIONS(8172), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - STATE(5414), 9, + STATE(5361), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -668548,7 +663313,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [178396] = 40, + [172895] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -668569,72 +663334,72 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4100), 1, + ACTIONS(4042), 1, anon_sym_DOT, - ACTIONS(4102), 1, + ACTIONS(4044), 1, anon_sym_DASH_GT, - ACTIONS(5264), 1, + ACTIONS(5257), 1, anon_sym_LPAREN, - ACTIONS(5304), 1, + ACTIONS(5302), 1, anon_sym_BANG, - ACTIONS(5573), 1, + ACTIONS(5549), 1, anon_sym_LBRACK, - ACTIONS(6343), 1, + ACTIONS(6355), 1, anon_sym_switch, - ACTIONS(6357), 1, + ACTIONS(6369), 1, anon_sym_with, - ACTIONS(7037), 1, - anon_sym_as, - ACTIONS(8234), 1, - anon_sym_QMARK, - ACTIONS(8236), 1, - anon_sym_DOT_DOT, - ACTIONS(8238), 1, - anon_sym_is, - ACTIONS(8248), 1, + ACTIONS(6657), 1, anon_sym_SLASH, - ACTIONS(8250), 1, + ACTIONS(6661), 1, + anon_sym_GT_GT, + ACTIONS(6665), 1, + anon_sym_AMP, + ACTIONS(6673), 1, anon_sym_CARET, - ACTIONS(8252), 1, + ACTIONS(6675), 1, anon_sym_PIPE, - ACTIONS(8254), 1, - anon_sym_AMP, - ACTIONS(8258), 1, - anon_sym_GT_GT, - ACTIONS(8264), 1, + ACTIONS(6677), 1, anon_sym_AMP_AMP, - ACTIONS(8266), 1, + ACTIONS(6679), 1, anon_sym_PIPE_PIPE, - ACTIONS(8268), 1, + ACTIONS(6681), 1, anon_sym_QMARK_QMARK, - ACTIONS(8434), 1, + ACTIONS(7195), 1, + anon_sym_as, + ACTIONS(8152), 1, + anon_sym_QMARK, + ACTIONS(8174), 1, + anon_sym_DOT_DOT, + ACTIONS(8182), 1, + anon_sym_is, + ACTIONS(8330), 1, anon_sym_COLON, - STATE(2485), 1, + STATE(2467), 1, sym_bracketed_argument_list, - STATE(3487), 1, + STATE(3381), 1, sym_argument_list, - ACTIONS(5306), 2, + ACTIONS(5304), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(8242), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(8244), 2, + ACTIONS(6653), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(8246), 2, + ACTIONS(6655), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8256), 2, + ACTIONS(6659), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(8260), 2, + ACTIONS(6663), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(6667), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(8262), 2, + ACTIONS(6669), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - STATE(5415), 9, + STATE(5362), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -668644,7 +663409,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [178532] = 40, + [173031] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -668665,72 +663430,72 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4100), 1, + ACTIONS(4042), 1, anon_sym_DOT, - ACTIONS(4102), 1, + ACTIONS(4044), 1, anon_sym_DASH_GT, - ACTIONS(5264), 1, + ACTIONS(5257), 1, anon_sym_LPAREN, - ACTIONS(5304), 1, + ACTIONS(5302), 1, anon_sym_BANG, - ACTIONS(5573), 1, + ACTIONS(5549), 1, anon_sym_LBRACK, - ACTIONS(6343), 1, + ACTIONS(5709), 1, + anon_sym_EQ_GT, + ACTIONS(6355), 1, anon_sym_switch, - ACTIONS(6357), 1, + ACTIONS(6369), 1, anon_sym_with, - ACTIONS(6813), 1, + ACTIONS(6811), 1, anon_sym_as, - ACTIONS(8200), 1, - anon_sym_QMARK, - ACTIONS(8206), 1, + ACTIONS(8130), 1, anon_sym_SLASH, - ACTIONS(8208), 1, - anon_sym_CARET, - ACTIONS(8210), 1, - anon_sym_PIPE, - ACTIONS(8212), 1, + ACTIONS(8132), 1, anon_sym_AMP, - ACTIONS(8216), 1, + ACTIONS(8136), 1, anon_sym_GT_GT, - ACTIONS(8222), 1, + ACTIONS(8142), 1, anon_sym_DOT_DOT, - ACTIONS(8224), 1, + ACTIONS(8144), 1, + anon_sym_is, + ACTIONS(8332), 1, + anon_sym_QMARK, + ACTIONS(8334), 1, + anon_sym_CARET, + ACTIONS(8336), 1, + anon_sym_PIPE, + ACTIONS(8338), 1, anon_sym_AMP_AMP, - ACTIONS(8226), 1, + ACTIONS(8340), 1, anon_sym_PIPE_PIPE, - ACTIONS(8228), 1, + ACTIONS(8342), 1, anon_sym_QMARK_QMARK, - ACTIONS(8230), 1, - anon_sym_is, - ACTIONS(8436), 1, - anon_sym_in, - STATE(2485), 1, + STATE(2467), 1, sym_bracketed_argument_list, - STATE(3487), 1, + STATE(3381), 1, sym_argument_list, - ACTIONS(5306), 2, + ACTIONS(5304), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(8198), 2, + ACTIONS(8124), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(8202), 2, + ACTIONS(8126), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(8204), 2, + ACTIONS(8128), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8214), 2, + ACTIONS(8134), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(8218), 2, + ACTIONS(8138), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(8220), 2, + ACTIONS(8140), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - STATE(5416), 9, + STATE(5363), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -668740,7 +663505,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [178668] = 40, + [173167] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -668761,72 +663526,72 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4100), 1, + ACTIONS(4042), 1, anon_sym_DOT, - ACTIONS(4102), 1, + ACTIONS(4044), 1, anon_sym_DASH_GT, - ACTIONS(5264), 1, + ACTIONS(5257), 1, anon_sym_LPAREN, - ACTIONS(5304), 1, + ACTIONS(5302), 1, anon_sym_BANG, - ACTIONS(5573), 1, + ACTIONS(5549), 1, anon_sym_LBRACK, - ACTIONS(6343), 1, + ACTIONS(6355), 1, anon_sym_switch, - ACTIONS(6357), 1, + ACTIONS(6369), 1, anon_sym_with, - ACTIONS(6813), 1, + ACTIONS(6811), 1, anon_sym_as, - ACTIONS(7139), 1, + ACTIONS(7231), 1, anon_sym_QMARK, - ACTIONS(7145), 1, + ACTIONS(7237), 1, anon_sym_SLASH, - ACTIONS(7147), 1, + ACTIONS(7239), 1, anon_sym_CARET, - ACTIONS(7149), 1, + ACTIONS(7241), 1, anon_sym_PIPE, - ACTIONS(7151), 1, + ACTIONS(7243), 1, anon_sym_AMP, - ACTIONS(7155), 1, + ACTIONS(7247), 1, anon_sym_GT_GT, - ACTIONS(7161), 1, + ACTIONS(7253), 1, anon_sym_DOT_DOT, - ACTIONS(7163), 1, + ACTIONS(7255), 1, anon_sym_AMP_AMP, - ACTIONS(7165), 1, + ACTIONS(7257), 1, anon_sym_PIPE_PIPE, - ACTIONS(7167), 1, + ACTIONS(7259), 1, anon_sym_QMARK_QMARK, - ACTIONS(7169), 1, + ACTIONS(7261), 1, anon_sym_is, - ACTIONS(8438), 1, + ACTIONS(8344), 1, anon_sym_RPAREN, - STATE(2485), 1, + STATE(2467), 1, sym_bracketed_argument_list, - STATE(3487), 1, + STATE(3381), 1, sym_argument_list, - ACTIONS(5306), 2, + ACTIONS(5304), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7137), 2, + ACTIONS(7229), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7141), 2, + ACTIONS(7233), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7143), 2, + ACTIONS(7235), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7153), 2, + ACTIONS(7245), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7157), 2, + ACTIONS(7249), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7159), 2, + ACTIONS(7251), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - STATE(5417), 9, + STATE(5364), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -668836,7 +663601,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [178804] = 40, + [173303] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -668857,72 +663622,72 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4100), 1, + ACTIONS(4042), 1, anon_sym_DOT, - ACTIONS(4102), 1, + ACTIONS(4044), 1, anon_sym_DASH_GT, - ACTIONS(5264), 1, + ACTIONS(5257), 1, anon_sym_LPAREN, - ACTIONS(5304), 1, + ACTIONS(5302), 1, anon_sym_BANG, - ACTIONS(5573), 1, + ACTIONS(5549), 1, anon_sym_LBRACK, - ACTIONS(6343), 1, + ACTIONS(6355), 1, anon_sym_switch, - ACTIONS(6357), 1, + ACTIONS(6369), 1, anon_sym_with, - ACTIONS(7037), 1, + ACTIONS(6811), 1, anon_sym_as, - ACTIONS(8234), 1, + ACTIONS(7231), 1, anon_sym_QMARK, - ACTIONS(8236), 1, - anon_sym_DOT_DOT, - ACTIONS(8238), 1, - anon_sym_is, - ACTIONS(8248), 1, + ACTIONS(7237), 1, anon_sym_SLASH, - ACTIONS(8250), 1, + ACTIONS(7239), 1, anon_sym_CARET, - ACTIONS(8252), 1, + ACTIONS(7241), 1, anon_sym_PIPE, - ACTIONS(8254), 1, + ACTIONS(7243), 1, anon_sym_AMP, - ACTIONS(8258), 1, + ACTIONS(7247), 1, anon_sym_GT_GT, - ACTIONS(8264), 1, + ACTIONS(7253), 1, + anon_sym_DOT_DOT, + ACTIONS(7255), 1, anon_sym_AMP_AMP, - ACTIONS(8266), 1, + ACTIONS(7257), 1, anon_sym_PIPE_PIPE, - ACTIONS(8268), 1, + ACTIONS(7259), 1, anon_sym_QMARK_QMARK, - ACTIONS(8440), 1, - anon_sym_COLON, - STATE(2485), 1, + ACTIONS(7261), 1, + anon_sym_is, + ACTIONS(8346), 1, + anon_sym_RPAREN, + STATE(2467), 1, sym_bracketed_argument_list, - STATE(3487), 1, + STATE(3381), 1, sym_argument_list, - ACTIONS(5306), 2, + ACTIONS(5304), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(8242), 2, + ACTIONS(7229), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(8244), 2, + ACTIONS(7233), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(8246), 2, + ACTIONS(7235), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8256), 2, + ACTIONS(7245), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(8260), 2, + ACTIONS(7249), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(8262), 2, + ACTIONS(7251), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - STATE(5418), 9, + STATE(5365), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -668932,7 +663697,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [178940] = 40, + [173439] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -668953,72 +663718,72 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4100), 1, + ACTIONS(4042), 1, anon_sym_DOT, - ACTIONS(4102), 1, + ACTIONS(4044), 1, anon_sym_DASH_GT, - ACTIONS(5264), 1, + ACTIONS(5257), 1, anon_sym_LPAREN, - ACTIONS(5304), 1, + ACTIONS(5302), 1, anon_sym_BANG, - ACTIONS(5573), 1, + ACTIONS(5549), 1, anon_sym_LBRACK, - ACTIONS(6343), 1, + ACTIONS(6355), 1, anon_sym_switch, - ACTIONS(6357), 1, + ACTIONS(6369), 1, anon_sym_with, - ACTIONS(7037), 1, + ACTIONS(6811), 1, anon_sym_as, - ACTIONS(8234), 1, + ACTIONS(7231), 1, anon_sym_QMARK, - ACTIONS(8236), 1, - anon_sym_DOT_DOT, - ACTIONS(8238), 1, - anon_sym_is, - ACTIONS(8248), 1, + ACTIONS(7237), 1, anon_sym_SLASH, - ACTIONS(8250), 1, + ACTIONS(7239), 1, anon_sym_CARET, - ACTIONS(8252), 1, + ACTIONS(7241), 1, anon_sym_PIPE, - ACTIONS(8254), 1, + ACTIONS(7243), 1, anon_sym_AMP, - ACTIONS(8258), 1, + ACTIONS(7247), 1, anon_sym_GT_GT, - ACTIONS(8264), 1, + ACTIONS(7253), 1, + anon_sym_DOT_DOT, + ACTIONS(7255), 1, anon_sym_AMP_AMP, - ACTIONS(8266), 1, + ACTIONS(7257), 1, anon_sym_PIPE_PIPE, - ACTIONS(8268), 1, + ACTIONS(7259), 1, anon_sym_QMARK_QMARK, - ACTIONS(8442), 1, - anon_sym_COLON, - STATE(2485), 1, + ACTIONS(7261), 1, + anon_sym_is, + ACTIONS(8348), 1, + anon_sym_RPAREN, + STATE(2467), 1, sym_bracketed_argument_list, - STATE(3487), 1, + STATE(3381), 1, sym_argument_list, - ACTIONS(5306), 2, + ACTIONS(5304), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(8242), 2, + ACTIONS(7229), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(8244), 2, + ACTIONS(7233), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(8246), 2, + ACTIONS(7235), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8256), 2, + ACTIONS(7245), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(8260), 2, + ACTIONS(7249), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(8262), 2, + ACTIONS(7251), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - STATE(5419), 9, + STATE(5366), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -669028,7 +663793,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [179076] = 17, + [173575] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -669049,20 +663814,72 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4703), 1, - aux_sym_preproc_if_token3, - ACTIONS(4705), 1, - aux_sym_preproc_else_token1, - ACTIONS(4707), 1, - aux_sym_preproc_elif_token1, - STATE(7379), 2, - sym_preproc_else_in_attribute_list, - sym_preproc_elif_in_attribute_list, - ACTIONS(4701), 3, - anon_sym_LBRACK, + ACTIONS(4042), 1, + anon_sym_DOT, + ACTIONS(4044), 1, + anon_sym_DASH_GT, + ACTIONS(5257), 1, anon_sym_LPAREN, - aux_sym_preproc_if_token1, - STATE(5420), 9, + ACTIONS(5302), 1, + anon_sym_BANG, + ACTIONS(5549), 1, + anon_sym_LBRACK, + ACTIONS(6355), 1, + anon_sym_switch, + ACTIONS(6369), 1, + anon_sym_with, + ACTIONS(6811), 1, + anon_sym_as, + ACTIONS(7231), 1, + anon_sym_QMARK, + ACTIONS(7237), 1, + anon_sym_SLASH, + ACTIONS(7239), 1, + anon_sym_CARET, + ACTIONS(7241), 1, + anon_sym_PIPE, + ACTIONS(7243), 1, + anon_sym_AMP, + ACTIONS(7247), 1, + anon_sym_GT_GT, + ACTIONS(7253), 1, + anon_sym_DOT_DOT, + ACTIONS(7255), 1, + anon_sym_AMP_AMP, + ACTIONS(7257), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7259), 1, + anon_sym_QMARK_QMARK, + ACTIONS(7261), 1, + anon_sym_is, + ACTIONS(8350), 1, + anon_sym_RPAREN, + STATE(2467), 1, + sym_bracketed_argument_list, + STATE(3381), 1, + sym_argument_list, + ACTIONS(5304), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7229), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(7233), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(7235), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(7245), 2, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + ACTIONS(7249), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(7251), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + STATE(5367), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -669072,36 +663889,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(4699), 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, - [179166] = 15, + [173711] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -669122,91 +663910,72 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8444), 1, - anon_sym_and, - ACTIONS(8446), 1, - anon_sym_or, - STATE(5421), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - ACTIONS(5356), 11, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, + ACTIONS(4042), 1, + anon_sym_DOT, + ACTIONS(4044), 1, + anon_sym_DASH_GT, + ACTIONS(5257), 1, + anon_sym_LPAREN, + ACTIONS(5302), 1, anon_sym_BANG, - anon_sym_PLUS, - anon_sym_DASH, + ACTIONS(5549), 1, + anon_sym_LBRACK, + ACTIONS(5849), 1, + anon_sym_by, + ACTIONS(6355), 1, + anon_sym_switch, + ACTIONS(6369), 1, + anon_sym_with, + ACTIONS(8268), 1, + anon_sym_QMARK, + ACTIONS(8274), 1, anon_sym_SLASH, + ACTIONS(8276), 1, + anon_sym_CARET, + ACTIONS(8278), 1, anon_sym_PIPE, + ACTIONS(8280), 1, anon_sym_AMP, + ACTIONS(8284), 1, anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(5354), 23, - anon_sym_LBRACK, - anon_sym_LPAREN, + ACTIONS(8290), 1, + anon_sym_DOT_DOT, + ACTIONS(8292), 1, + anon_sym_AMP_AMP, + ACTIONS(8294), 1, + anon_sym_PIPE_PIPE, + ACTIONS(8296), 1, + anon_sym_QMARK_QMARK, + ACTIONS(8300), 1, + anon_sym_as, + ACTIONS(8302), 1, + anon_sym_is, + STATE(2467), 1, + sym_bracketed_argument_list, + STATE(3381), 1, + sym_argument_list, + ACTIONS(5304), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + ACTIONS(8266), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(8270), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(8272), 2, anon_sym_STAR, anon_sym_PERCENT, - anon_sym_CARET, + ACTIONS(8282), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, + ACTIONS(8286), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + ACTIONS(8288), 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, - [179252] = 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(4705), 1, - aux_sym_preproc_else_token1, - ACTIONS(4707), 1, - aux_sym_preproc_elif_token1, - ACTIONS(8448), 1, - aux_sym_preproc_if_token3, - STATE(7328), 2, - sym_preproc_else_in_attribute_list, - sym_preproc_elif_in_attribute_list, - ACTIONS(4701), 3, - anon_sym_LBRACK, - anon_sym_LPAREN, - aux_sym_preproc_if_token1, - STATE(5422), 9, + STATE(5368), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -669216,36 +663985,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(4699), 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, - [179342] = 40, + [173847] = 29, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -669266,72 +664006,49 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4100), 1, + ACTIONS(4042), 1, anon_sym_DOT, - ACTIONS(4102), 1, + ACTIONS(4044), 1, anon_sym_DASH_GT, - ACTIONS(5264), 1, + ACTIONS(5257), 1, anon_sym_LPAREN, - ACTIONS(5304), 1, + ACTIONS(5302), 1, anon_sym_BANG, - ACTIONS(5573), 1, + ACTIONS(5549), 1, anon_sym_LBRACK, - ACTIONS(6343), 1, + ACTIONS(6355), 1, anon_sym_switch, - ACTIONS(6357), 1, + ACTIONS(6369), 1, anon_sym_with, - ACTIONS(6813), 1, - anon_sym_as, - ACTIONS(7139), 1, - anon_sym_QMARK, - ACTIONS(7145), 1, - anon_sym_SLASH, - ACTIONS(7147), 1, - anon_sym_CARET, - ACTIONS(7149), 1, - anon_sym_PIPE, - ACTIONS(7151), 1, - anon_sym_AMP, - ACTIONS(7155), 1, - anon_sym_GT_GT, - ACTIONS(7161), 1, - anon_sym_DOT_DOT, - ACTIONS(7163), 1, - anon_sym_AMP_AMP, - ACTIONS(7165), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7167), 1, - anon_sym_QMARK_QMARK, - ACTIONS(7169), 1, - anon_sym_is, - ACTIONS(8450), 1, - anon_sym_RPAREN, - STATE(2485), 1, + ACTIONS(8274), 1, + anon_sym_SLASH, + ACTIONS(8284), 1, + anon_sym_GT_GT, + ACTIONS(8290), 1, + anon_sym_DOT_DOT, + STATE(2467), 1, sym_bracketed_argument_list, - STATE(3487), 1, + STATE(3381), 1, sym_argument_list, - ACTIONS(5306), 2, + ACTIONS(5304), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7137), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(7141), 2, + ACTIONS(8270), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7143), 2, + ACTIONS(8272), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7153), 2, + ACTIONS(8282), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7157), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(7159), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - STATE(5423), 9, + ACTIONS(5739), 5, + anon_sym_LT, + anon_sym_GT, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_AMP, + STATE(5369), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -669341,7 +664058,19 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [179478] = 40, + ACTIONS(5737), 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, + [173961] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -669362,72 +664091,72 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4100), 1, + ACTIONS(4042), 1, anon_sym_DOT, - ACTIONS(4102), 1, + ACTIONS(4044), 1, anon_sym_DASH_GT, - ACTIONS(5264), 1, + ACTIONS(5257), 1, anon_sym_LPAREN, - ACTIONS(5304), 1, + ACTIONS(5302), 1, anon_sym_BANG, - ACTIONS(5573), 1, + ACTIONS(5549), 1, anon_sym_LBRACK, - ACTIONS(6343), 1, + ACTIONS(6355), 1, anon_sym_switch, - ACTIONS(6357), 1, + ACTIONS(6369), 1, anon_sym_with, - ACTIONS(6813), 1, + ACTIONS(7195), 1, anon_sym_as, - ACTIONS(7139), 1, + ACTIONS(8152), 1, anon_sym_QMARK, - ACTIONS(7145), 1, + ACTIONS(8158), 1, anon_sym_SLASH, - ACTIONS(7147), 1, + ACTIONS(8160), 1, anon_sym_CARET, - ACTIONS(7149), 1, + ACTIONS(8162), 1, anon_sym_PIPE, - ACTIONS(7151), 1, + ACTIONS(8164), 1, anon_sym_AMP, - ACTIONS(7155), 1, + ACTIONS(8168), 1, anon_sym_GT_GT, - ACTIONS(7161), 1, + ACTIONS(8174), 1, anon_sym_DOT_DOT, - ACTIONS(7163), 1, + ACTIONS(8176), 1, anon_sym_AMP_AMP, - ACTIONS(7165), 1, + ACTIONS(8178), 1, anon_sym_PIPE_PIPE, - ACTIONS(7167), 1, + ACTIONS(8180), 1, anon_sym_QMARK_QMARK, - ACTIONS(7169), 1, + ACTIONS(8182), 1, anon_sym_is, - ACTIONS(8452), 1, - anon_sym_RPAREN, - STATE(2485), 1, + ACTIONS(8352), 1, + anon_sym_COLON, + STATE(2467), 1, sym_bracketed_argument_list, - STATE(3487), 1, + STATE(3381), 1, sym_argument_list, - ACTIONS(5306), 2, + ACTIONS(5304), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7137), 2, + ACTIONS(8150), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7141), 2, + ACTIONS(8154), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7143), 2, + ACTIONS(8156), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7153), 2, + ACTIONS(8166), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7157), 2, + ACTIONS(8170), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7159), 2, + ACTIONS(8172), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - STATE(5424), 9, + STATE(5370), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -669437,7 +664166,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [179614] = 40, + [174097] = 26, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -669458,72 +664187,44 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4100), 1, + ACTIONS(4042), 1, anon_sym_DOT, - ACTIONS(4102), 1, + ACTIONS(4044), 1, anon_sym_DASH_GT, - ACTIONS(5264), 1, + ACTIONS(5257), 1, anon_sym_LPAREN, - ACTIONS(5304), 1, + ACTIONS(5302), 1, anon_sym_BANG, - ACTIONS(5573), 1, + ACTIONS(5549), 1, anon_sym_LBRACK, - ACTIONS(5864), 1, - anon_sym_COLON, - ACTIONS(6343), 1, + ACTIONS(6355), 1, anon_sym_switch, - ACTIONS(6357), 1, + ACTIONS(6369), 1, anon_sym_with, - ACTIONS(7037), 1, - anon_sym_as, - ACTIONS(8234), 1, - anon_sym_QMARK, - ACTIONS(8236), 1, - anon_sym_DOT_DOT, - ACTIONS(8238), 1, - anon_sym_is, - ACTIONS(8248), 1, + ACTIONS(8274), 1, anon_sym_SLASH, - ACTIONS(8250), 1, - anon_sym_CARET, - ACTIONS(8252), 1, - anon_sym_PIPE, - ACTIONS(8254), 1, - anon_sym_AMP, - ACTIONS(8258), 1, - anon_sym_GT_GT, - ACTIONS(8264), 1, - anon_sym_AMP_AMP, - ACTIONS(8266), 1, - anon_sym_PIPE_PIPE, - ACTIONS(8268), 1, - anon_sym_QMARK_QMARK, - STATE(2485), 1, + ACTIONS(8290), 1, + anon_sym_DOT_DOT, + STATE(2467), 1, sym_bracketed_argument_list, - STATE(3487), 1, + STATE(3381), 1, sym_argument_list, - ACTIONS(5306), 2, + ACTIONS(5304), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(8242), 2, + ACTIONS(8272), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(5739), 8, anon_sym_LT, anon_sym_GT, - ACTIONS(8244), 2, + anon_sym_QMARK, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(8246), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(8256), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - ACTIONS(8260), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(8262), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - STATE(5425), 9, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT_GT, + STATE(5371), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -669533,7 +664234,21 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [179750] = 40, + ACTIONS(5737), 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, + [174205] = 24, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -669554,72 +664269,40 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4100), 1, + ACTIONS(4042), 1, anon_sym_DOT, - ACTIONS(4102), 1, + ACTIONS(4044), 1, anon_sym_DASH_GT, - ACTIONS(5264), 1, + ACTIONS(5257), 1, anon_sym_LPAREN, - ACTIONS(5304), 1, + ACTIONS(5302), 1, anon_sym_BANG, - ACTIONS(5573), 1, + ACTIONS(5549), 1, anon_sym_LBRACK, - ACTIONS(6343), 1, + ACTIONS(6355), 1, anon_sym_switch, - ACTIONS(6357), 1, + ACTIONS(6369), 1, anon_sym_with, - ACTIONS(7037), 1, - anon_sym_as, - ACTIONS(8234), 1, - anon_sym_QMARK, - ACTIONS(8236), 1, + ACTIONS(8290), 1, anon_sym_DOT_DOT, - ACTIONS(8238), 1, - anon_sym_is, - ACTIONS(8248), 1, - anon_sym_SLASH, - ACTIONS(8250), 1, - anon_sym_CARET, - ACTIONS(8252), 1, - anon_sym_PIPE, - ACTIONS(8254), 1, - anon_sym_AMP, - ACTIONS(8258), 1, - anon_sym_GT_GT, - ACTIONS(8264), 1, - anon_sym_AMP_AMP, - ACTIONS(8266), 1, - anon_sym_PIPE_PIPE, - ACTIONS(8268), 1, - anon_sym_QMARK_QMARK, - ACTIONS(8454), 1, - anon_sym_COLON, - STATE(2485), 1, + STATE(2467), 1, sym_bracketed_argument_list, - STATE(3487), 1, + STATE(3381), 1, sym_argument_list, - ACTIONS(5306), 2, + ACTIONS(5304), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(8242), 2, + ACTIONS(5739), 9, anon_sym_LT, anon_sym_GT, - ACTIONS(8244), 2, + anon_sym_QMARK, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(8246), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(8256), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - ACTIONS(8260), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(8262), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - STATE(5426), 9, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT_GT, + STATE(5372), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -669629,7 +664312,23 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [179886] = 40, + ACTIONS(5737), 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, + [174309] = 35, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -669650,72 +664349,67 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4100), 1, + ACTIONS(4042), 1, anon_sym_DOT, - ACTIONS(4102), 1, + ACTIONS(4044), 1, anon_sym_DASH_GT, - ACTIONS(5264), 1, + ACTIONS(5257), 1, anon_sym_LPAREN, - ACTIONS(5304), 1, + ACTIONS(5302), 1, anon_sym_BANG, - ACTIONS(5573), 1, + ACTIONS(5549), 1, anon_sym_LBRACK, - ACTIONS(6343), 1, + ACTIONS(6355), 1, anon_sym_switch, - ACTIONS(6357), 1, + ACTIONS(6369), 1, anon_sym_with, - ACTIONS(7037), 1, - anon_sym_as, - ACTIONS(8234), 1, - anon_sym_QMARK, - ACTIONS(8236), 1, - anon_sym_DOT_DOT, - ACTIONS(8238), 1, - anon_sym_is, - ACTIONS(8248), 1, + ACTIONS(8274), 1, anon_sym_SLASH, - ACTIONS(8250), 1, - anon_sym_CARET, - ACTIONS(8252), 1, - anon_sym_PIPE, - ACTIONS(8254), 1, + ACTIONS(8280), 1, anon_sym_AMP, - ACTIONS(8258), 1, + ACTIONS(8284), 1, anon_sym_GT_GT, - ACTIONS(8264), 1, - anon_sym_AMP_AMP, - ACTIONS(8266), 1, - anon_sym_PIPE_PIPE, - ACTIONS(8268), 1, - anon_sym_QMARK_QMARK, - ACTIONS(8456), 1, - anon_sym_COLON, - STATE(2485), 1, + ACTIONS(8290), 1, + anon_sym_DOT_DOT, + ACTIONS(8300), 1, + anon_sym_as, + ACTIONS(8302), 1, + anon_sym_is, + STATE(2467), 1, sym_bracketed_argument_list, - STATE(3487), 1, + STATE(3381), 1, sym_argument_list, - ACTIONS(5306), 2, + ACTIONS(5304), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(8242), 2, + ACTIONS(5739), 2, + anon_sym_QMARK, + anon_sym_PIPE, + ACTIONS(8266), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(8244), 2, + ACTIONS(8270), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(8246), 2, + ACTIONS(8272), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8256), 2, + ACTIONS(8282), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(8260), 2, + ACTIONS(8286), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(8262), 2, + ACTIONS(8288), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - STATE(5427), 9, + ACTIONS(5737), 5, + anon_sym_CARET, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, + anon_sym_by, + STATE(5373), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -669725,7 +664419,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [180022] = 15, + [174435] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -669746,11 +664440,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8458), 1, + ACTIONS(8354), 1, anon_sym_and, - ACTIONS(8460), 1, + ACTIONS(8356), 1, anon_sym_or, - STATE(5428), 9, + STATE(5374), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -669760,7 +664454,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5356), 11, + ACTIONS(5360), 11, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, @@ -669772,10 +664466,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT, - ACTIONS(5354), 23, + ACTIONS(5358), 23, anon_sym_LBRACK, anon_sym_LPAREN, - anon_sym_in, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_STAR, @@ -669787,6 +664480,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_DOT_DOT, anon_sym_AMP_AMP, @@ -669796,7 +664490,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, anon_sym_DASH_GT, anon_sym_with, - [180108] = 40, + [174521] = 36, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -669817,72 +664511,68 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4100), 1, + ACTIONS(4042), 1, anon_sym_DOT, - ACTIONS(4102), 1, + ACTIONS(4044), 1, anon_sym_DASH_GT, - ACTIONS(5264), 1, + ACTIONS(5257), 1, anon_sym_LPAREN, - ACTIONS(5304), 1, + ACTIONS(5302), 1, anon_sym_BANG, - ACTIONS(5573), 1, + ACTIONS(5549), 1, anon_sym_LBRACK, - ACTIONS(6343), 1, + ACTIONS(6355), 1, anon_sym_switch, - ACTIONS(6357), 1, + ACTIONS(6369), 1, anon_sym_with, - ACTIONS(8150), 1, - anon_sym_QMARK, - ACTIONS(8156), 1, + ACTIONS(8274), 1, anon_sym_SLASH, - ACTIONS(8158), 1, + ACTIONS(8276), 1, anon_sym_CARET, - ACTIONS(8160), 1, - anon_sym_PIPE, - ACTIONS(8162), 1, + ACTIONS(8280), 1, anon_sym_AMP, - ACTIONS(8166), 1, + ACTIONS(8284), 1, anon_sym_GT_GT, - ACTIONS(8172), 1, + ACTIONS(8290), 1, anon_sym_DOT_DOT, - ACTIONS(8174), 1, - anon_sym_AMP_AMP, - ACTIONS(8176), 1, - anon_sym_PIPE_PIPE, - ACTIONS(8178), 1, - anon_sym_QMARK_QMARK, - ACTIONS(8182), 1, + ACTIONS(8300), 1, anon_sym_as, - ACTIONS(8184), 1, + ACTIONS(8302), 1, anon_sym_is, - ACTIONS(8462), 1, - anon_sym_by, - STATE(2485), 1, + STATE(2467), 1, sym_bracketed_argument_list, - STATE(3487), 1, + STATE(3381), 1, sym_argument_list, - ACTIONS(5306), 2, + ACTIONS(5304), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(8148), 2, + ACTIONS(5739), 2, + anon_sym_QMARK, + anon_sym_PIPE, + ACTIONS(8266), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(8152), 2, + ACTIONS(8270), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(8154), 2, + ACTIONS(8272), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8164), 2, + ACTIONS(8282), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(8168), 2, + ACTIONS(8286), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(8170), 2, + ACTIONS(8288), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - STATE(5429), 9, + ACTIONS(5737), 4, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, + anon_sym_by, + STATE(5375), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -669892,7 +664582,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [180244] = 40, + [174649] = 34, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -669913,72 +664603,66 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4100), 1, + ACTIONS(4042), 1, anon_sym_DOT, - ACTIONS(4102), 1, + ACTIONS(4044), 1, anon_sym_DASH_GT, - ACTIONS(5264), 1, + ACTIONS(5257), 1, anon_sym_LPAREN, - ACTIONS(5304), 1, + ACTIONS(5302), 1, anon_sym_BANG, - ACTIONS(5573), 1, + ACTIONS(5549), 1, anon_sym_LBRACK, - ACTIONS(6343), 1, + ACTIONS(6355), 1, anon_sym_switch, - ACTIONS(6357), 1, + ACTIONS(6369), 1, anon_sym_with, - ACTIONS(6813), 1, - anon_sym_as, - ACTIONS(7139), 1, - anon_sym_QMARK, - ACTIONS(7145), 1, + ACTIONS(8274), 1, anon_sym_SLASH, - ACTIONS(7147), 1, - anon_sym_CARET, - ACTIONS(7149), 1, - anon_sym_PIPE, - ACTIONS(7151), 1, - anon_sym_AMP, - ACTIONS(7155), 1, + ACTIONS(8284), 1, anon_sym_GT_GT, - ACTIONS(7161), 1, + ACTIONS(8290), 1, anon_sym_DOT_DOT, - ACTIONS(7163), 1, - anon_sym_AMP_AMP, - ACTIONS(7165), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7167), 1, - anon_sym_QMARK_QMARK, - ACTIONS(7169), 1, + ACTIONS(8300), 1, + anon_sym_as, + ACTIONS(8302), 1, anon_sym_is, - ACTIONS(8464), 1, - anon_sym_RPAREN, - STATE(2485), 1, + STATE(2467), 1, sym_bracketed_argument_list, - STATE(3487), 1, + STATE(3381), 1, sym_argument_list, - ACTIONS(5306), 2, + ACTIONS(5304), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7137), 2, + ACTIONS(8266), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7141), 2, + ACTIONS(8270), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7143), 2, + ACTIONS(8272), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7153), 2, + ACTIONS(8282), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7157), 2, + ACTIONS(8286), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7159), 2, + ACTIONS(8288), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - STATE(5430), 9, + ACTIONS(5739), 3, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_AMP, + ACTIONS(5737), 5, + anon_sym_CARET, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, + anon_sym_by, + STATE(5376), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -669988,7 +664672,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [180380] = 15, + [174773] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -670009,82 +664693,72 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8458), 1, - anon_sym_and, - ACTIONS(8460), 1, - anon_sym_or, - STATE(5431), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - ACTIONS(6207), 11, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, + ACTIONS(4042), 1, + anon_sym_DOT, + ACTIONS(4044), 1, + anon_sym_DASH_GT, + ACTIONS(5257), 1, + anon_sym_LPAREN, + ACTIONS(5302), 1, anon_sym_BANG, - anon_sym_PLUS, - anon_sym_DASH, + ACTIONS(5549), 1, + anon_sym_LBRACK, + ACTIONS(6355), 1, + anon_sym_switch, + ACTIONS(6369), 1, + anon_sym_with, + ACTIONS(8268), 1, + anon_sym_QMARK, + ACTIONS(8274), 1, anon_sym_SLASH, + ACTIONS(8276), 1, + anon_sym_CARET, + ACTIONS(8278), 1, anon_sym_PIPE, + ACTIONS(8280), 1, anon_sym_AMP, + ACTIONS(8284), 1, anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(6205), 23, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_in, + ACTIONS(8290), 1, + anon_sym_DOT_DOT, + ACTIONS(8292), 1, + anon_sym_AMP_AMP, + ACTIONS(8294), 1, + anon_sym_PIPE_PIPE, + ACTIONS(8296), 1, + anon_sym_QMARK_QMARK, + ACTIONS(8300), 1, + anon_sym_as, + ACTIONS(8302), 1, + anon_sym_is, + ACTIONS(8358), 1, + anon_sym_by, + STATE(2467), 1, + sym_bracketed_argument_list, + STATE(3381), 1, + sym_argument_list, + ACTIONS(5304), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + ACTIONS(8266), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(8270), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(8272), 2, anon_sym_STAR, anon_sym_PERCENT, - anon_sym_CARET, + ACTIONS(8282), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, + ACTIONS(8286), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + ACTIONS(8288), 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, - [180466] = 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(3784), 3, - anon_sym_LBRACK, - anon_sym_LPAREN, - aux_sym_preproc_if_token1, - STATE(5432), 9, + STATE(5377), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -670094,41 +664768,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(3782), 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, - [180548] = 40, + [174909] = 27, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -670149,72 +664789,45 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4100), 1, + ACTIONS(4042), 1, anon_sym_DOT, - ACTIONS(4102), 1, + ACTIONS(4044), 1, anon_sym_DASH_GT, - ACTIONS(5264), 1, + ACTIONS(5257), 1, anon_sym_LPAREN, - ACTIONS(5304), 1, + ACTIONS(5302), 1, anon_sym_BANG, - ACTIONS(5573), 1, + ACTIONS(5549), 1, anon_sym_LBRACK, - ACTIONS(6343), 1, + ACTIONS(6355), 1, anon_sym_switch, - ACTIONS(6357), 1, + ACTIONS(6369), 1, anon_sym_with, - ACTIONS(6813), 1, - anon_sym_as, - ACTIONS(7139), 1, - anon_sym_QMARK, - ACTIONS(7145), 1, + ACTIONS(8274), 1, anon_sym_SLASH, - ACTIONS(7147), 1, - anon_sym_CARET, - ACTIONS(7149), 1, - anon_sym_PIPE, - ACTIONS(7151), 1, - anon_sym_AMP, - ACTIONS(7155), 1, - anon_sym_GT_GT, - ACTIONS(7161), 1, + ACTIONS(8290), 1, anon_sym_DOT_DOT, - ACTIONS(7163), 1, - anon_sym_AMP_AMP, - ACTIONS(7165), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7167), 1, - anon_sym_QMARK_QMARK, - ACTIONS(7169), 1, - anon_sym_is, - ACTIONS(8466), 1, - anon_sym_RPAREN, - STATE(2485), 1, + STATE(2467), 1, sym_bracketed_argument_list, - STATE(3487), 1, + STATE(3381), 1, sym_argument_list, - ACTIONS(5306), 2, + ACTIONS(5304), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7137), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(7141), 2, + ACTIONS(8270), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7143), 2, + ACTIONS(8272), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7153), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - ACTIONS(7157), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(7159), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - STATE(5433), 9, + ACTIONS(5739), 6, + anon_sym_LT, + anon_sym_GT, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT_GT, + STATE(5378), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -670224,7 +664837,21 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [180684] = 24, + ACTIONS(5737), 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, + [175019] = 33, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -670245,33 +664872,65 @@ 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(8336), 1, + ACTIONS(4042), 1, + anon_sym_DOT, + ACTIONS(4044), 1, + anon_sym_DASH_GT, + ACTIONS(5257), 1, anon_sym_LPAREN, - ACTIONS(8468), 1, - anon_sym_operator, - ACTIONS(8470), 1, - anon_sym_this, - STATE(2175), 1, - sym__reserved_identifier, - STATE(2181), 1, - sym_generic_name, - STATE(5948), 1, - sym_explicit_interface_specifier, - STATE(6251), 1, - sym_identifier, - STATE(6521), 1, - sym_tuple_pattern, - STATE(6944), 1, - sym_variable_declarator, - STATE(7441), 1, - sym__name, - STATE(4096), 3, - sym_alias_qualified_name, - sym__simple_name, - sym_qualified_name, - STATE(5434), 9, + ACTIONS(5302), 1, + anon_sym_BANG, + ACTIONS(5549), 1, + anon_sym_LBRACK, + ACTIONS(6355), 1, + anon_sym_switch, + ACTIONS(6369), 1, + anon_sym_with, + ACTIONS(8274), 1, + anon_sym_SLASH, + ACTIONS(8284), 1, + anon_sym_GT_GT, + ACTIONS(8290), 1, + anon_sym_DOT_DOT, + ACTIONS(8300), 1, + anon_sym_as, + ACTIONS(8302), 1, + anon_sym_is, + STATE(2467), 1, + sym_bracketed_argument_list, + STATE(3381), 1, + sym_argument_list, + ACTIONS(5304), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(8266), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(8270), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(8272), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(8282), 2, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + ACTIONS(8288), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(5739), 3, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_AMP, + ACTIONS(5737), 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(5379), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -670281,30 +664940,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, - [180788] = 29, + [175141] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -670325,49 +664961,72 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4100), 1, + ACTIONS(4042), 1, anon_sym_DOT, - ACTIONS(4102), 1, + ACTIONS(4044), 1, anon_sym_DASH_GT, - ACTIONS(5264), 1, + ACTIONS(5257), 1, anon_sym_LPAREN, - ACTIONS(5304), 1, + ACTIONS(5302), 1, anon_sym_BANG, - ACTIONS(5573), 1, + ACTIONS(5549), 1, anon_sym_LBRACK, - ACTIONS(6343), 1, + ACTIONS(6355), 1, anon_sym_switch, - ACTIONS(6357), 1, + ACTIONS(6369), 1, anon_sym_with, - ACTIONS(8400), 1, + ACTIONS(7131), 1, anon_sym_SLASH, - ACTIONS(8410), 1, + ACTIONS(7135), 1, anon_sym_GT_GT, - ACTIONS(8416), 1, + ACTIONS(7141), 1, + anon_sym_AMP, + ACTIONS(7149), 1, + anon_sym_CARET, + ACTIONS(7151), 1, + anon_sym_PIPE, + ACTIONS(7153), 1, + anon_sym_AMP_AMP, + ACTIONS(7155), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7157), 1, + anon_sym_QMARK_QMARK, + ACTIONS(7195), 1, + anon_sym_as, + ACTIONS(8152), 1, + anon_sym_QMARK, + ACTIONS(8174), 1, anon_sym_DOT_DOT, - STATE(2485), 1, + ACTIONS(8182), 1, + anon_sym_is, + ACTIONS(8360), 1, + anon_sym_COLON, + STATE(2467), 1, sym_bracketed_argument_list, - STATE(3487), 1, + STATE(3381), 1, sym_argument_list, - ACTIONS(5306), 2, + ACTIONS(5304), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(8396), 2, + ACTIONS(7127), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(8398), 2, + ACTIONS(7129), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8408), 2, + ACTIONS(7133), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(5664), 5, + ACTIONS(7139), 2, anon_sym_LT, anon_sym_GT, - anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_AMP, - STATE(5435), 9, + ACTIONS(7143), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(7145), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + STATE(5380), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -670377,19 +665036,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5660), 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, - [180902] = 40, + [175277] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -670410,72 +665057,72 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4100), 1, + ACTIONS(4042), 1, anon_sym_DOT, - ACTIONS(4102), 1, + ACTIONS(4044), 1, anon_sym_DASH_GT, - ACTIONS(5264), 1, + ACTIONS(5257), 1, anon_sym_LPAREN, - ACTIONS(5304), 1, + ACTIONS(5302), 1, anon_sym_BANG, - ACTIONS(5573), 1, + ACTIONS(5549), 1, anon_sym_LBRACK, - ACTIONS(6343), 1, + ACTIONS(6355), 1, anon_sym_switch, - ACTIONS(6357), 1, + ACTIONS(6369), 1, anon_sym_with, - ACTIONS(7037), 1, + ACTIONS(6811), 1, anon_sym_as, - ACTIONS(8234), 1, - anon_sym_QMARK, ACTIONS(8236), 1, - anon_sym_DOT_DOT, + anon_sym_SLASH, ACTIONS(8238), 1, - anon_sym_is, + anon_sym_AMP, + ACTIONS(8242), 1, + anon_sym_GT_GT, ACTIONS(8248), 1, - anon_sym_SLASH, + anon_sym_DOT_DOT, ACTIONS(8250), 1, - anon_sym_CARET, + anon_sym_is, ACTIONS(8252), 1, - anon_sym_PIPE, + anon_sym_CARET, ACTIONS(8254), 1, - anon_sym_AMP, - ACTIONS(8258), 1, - anon_sym_GT_GT, - ACTIONS(8264), 1, + anon_sym_PIPE, + ACTIONS(8256), 1, anon_sym_AMP_AMP, - ACTIONS(8266), 1, + ACTIONS(8258), 1, anon_sym_PIPE_PIPE, - ACTIONS(8268), 1, + ACTIONS(8260), 1, anon_sym_QMARK_QMARK, - ACTIONS(8472), 1, - anon_sym_COLON, - STATE(2485), 1, + ACTIONS(8304), 1, + anon_sym_QMARK, + ACTIONS(8362), 1, + anon_sym_in, + STATE(2467), 1, sym_bracketed_argument_list, - STATE(3487), 1, + STATE(3381), 1, sym_argument_list, - ACTIONS(5306), 2, + ACTIONS(5304), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(8242), 2, + ACTIONS(8230), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(8244), 2, + ACTIONS(8232), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(8246), 2, + ACTIONS(8234), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8256), 2, + ACTIONS(8240), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(8260), 2, + ACTIONS(8244), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(8262), 2, + ACTIONS(8246), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - STATE(5436), 9, + STATE(5381), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -670485,7 +665132,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [181038] = 26, + [175413] = 22, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -670506,44 +665153,36 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4100), 1, + ACTIONS(4042), 1, anon_sym_DOT, - ACTIONS(4102), 1, + ACTIONS(4044), 1, anon_sym_DASH_GT, - ACTIONS(5264), 1, + ACTIONS(5257), 1, anon_sym_LPAREN, - ACTIONS(5304), 1, + ACTIONS(5302), 1, anon_sym_BANG, - ACTIONS(5573), 1, + ACTIONS(5549), 1, anon_sym_LBRACK, - ACTIONS(6343), 1, - anon_sym_switch, - ACTIONS(6357), 1, - anon_sym_with, - ACTIONS(8400), 1, - anon_sym_SLASH, - ACTIONS(8416), 1, + ACTIONS(8290), 1, anon_sym_DOT_DOT, - STATE(2485), 1, + STATE(2467), 1, sym_bracketed_argument_list, - STATE(3487), 1, + STATE(3381), 1, sym_argument_list, - ACTIONS(5306), 2, + ACTIONS(5304), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(8398), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(5664), 8, + ACTIONS(5743), 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(5437), 9, + STATE(5382), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -670553,7 +665192,9 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5660), 13, + ACTIONS(5741), 17, + anon_sym_STAR, + anon_sym_PERCENT, anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT_GT, @@ -670561,13 +665202,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_on, + anon_sym_by, anon_sym_as, anon_sym_is, - [181146] = 24, + anon_sym_with, + [175513] = 37, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -670588,66 +665231,79 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4100), 1, + ACTIONS(4042), 1, anon_sym_DOT, - ACTIONS(4102), 1, + ACTIONS(4044), 1, anon_sym_DASH_GT, - ACTIONS(5264), 1, + ACTIONS(5257), 1, anon_sym_LPAREN, - ACTIONS(5304), 1, + ACTIONS(5302), 1, anon_sym_BANG, - ACTIONS(5573), 1, + ACTIONS(5549), 1, anon_sym_LBRACK, - ACTIONS(6343), 1, + ACTIONS(5739), 1, + anon_sym_QMARK, + ACTIONS(6355), 1, anon_sym_switch, - ACTIONS(6357), 1, + ACTIONS(6369), 1, anon_sym_with, - ACTIONS(8416), 1, + ACTIONS(8274), 1, + anon_sym_SLASH, + ACTIONS(8276), 1, + anon_sym_CARET, + ACTIONS(8278), 1, + anon_sym_PIPE, + ACTIONS(8280), 1, + anon_sym_AMP, + ACTIONS(8284), 1, + anon_sym_GT_GT, + ACTIONS(8290), 1, anon_sym_DOT_DOT, - STATE(2485), 1, + ACTIONS(8300), 1, + anon_sym_as, + ACTIONS(8302), 1, + anon_sym_is, + STATE(2467), 1, sym_bracketed_argument_list, - STATE(3487), 1, + STATE(3381), 1, sym_argument_list, - ACTIONS(5306), 2, + ACTIONS(5304), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5664), 9, + ACTIONS(8266), 2, anon_sym_LT, anon_sym_GT, - anon_sym_QMARK, + ACTIONS(8270), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT_GT, - 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(5660), 15, + ACTIONS(8272), 2, anon_sym_STAR, anon_sym_PERCENT, - anon_sym_CARET, + ACTIONS(8282), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, + ACTIONS(8286), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + ACTIONS(8288), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, + ACTIONS(5737), 4, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_QMARK_QMARK, - anon_sym_on, - anon_sym_as, - anon_sym_is, - [181250] = 35, + anon_sym_by, + STATE(5383), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + [175643] = 38, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -670668,67 +665324,70 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4100), 1, + ACTIONS(4042), 1, anon_sym_DOT, - ACTIONS(4102), 1, + ACTIONS(4044), 1, anon_sym_DASH_GT, - ACTIONS(5264), 1, + ACTIONS(5257), 1, anon_sym_LPAREN, - ACTIONS(5304), 1, + ACTIONS(5302), 1, anon_sym_BANG, - ACTIONS(5573), 1, + ACTIONS(5549), 1, anon_sym_LBRACK, - ACTIONS(6343), 1, + ACTIONS(5739), 1, + anon_sym_QMARK, + ACTIONS(6355), 1, anon_sym_switch, - ACTIONS(6357), 1, + ACTIONS(6369), 1, anon_sym_with, - ACTIONS(8400), 1, + ACTIONS(8274), 1, anon_sym_SLASH, - ACTIONS(8406), 1, + ACTIONS(8276), 1, + anon_sym_CARET, + ACTIONS(8278), 1, + anon_sym_PIPE, + ACTIONS(8280), 1, anon_sym_AMP, - ACTIONS(8410), 1, + ACTIONS(8284), 1, anon_sym_GT_GT, - ACTIONS(8416), 1, + ACTIONS(8290), 1, anon_sym_DOT_DOT, - ACTIONS(8426), 1, + ACTIONS(8292), 1, + anon_sym_AMP_AMP, + ACTIONS(8300), 1, anon_sym_as, - ACTIONS(8428), 1, + ACTIONS(8302), 1, anon_sym_is, - STATE(2485), 1, + STATE(2467), 1, sym_bracketed_argument_list, - STATE(3487), 1, + STATE(3381), 1, sym_argument_list, - ACTIONS(5306), 2, + ACTIONS(5304), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5664), 2, - anon_sym_QMARK, - anon_sym_PIPE, - ACTIONS(8392), 2, + ACTIONS(8266), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(8396), 2, + ACTIONS(8270), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(8398), 2, + ACTIONS(8272), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8408), 2, + ACTIONS(8282), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(8412), 2, + ACTIONS(8286), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(8414), 2, + ACTIONS(8288), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5660), 5, - anon_sym_CARET, - anon_sym_AMP_AMP, + ACTIONS(5737), 3, anon_sym_PIPE_PIPE, anon_sym_QMARK_QMARK, - anon_sym_on, - STATE(5439), 9, + anon_sym_by, + STATE(5384), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -670738,7 +665397,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [181376] = 36, + [175775] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -670759,68 +665418,72 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4100), 1, + ACTIONS(4042), 1, anon_sym_DOT, - ACTIONS(4102), 1, + ACTIONS(4044), 1, anon_sym_DASH_GT, - ACTIONS(5264), 1, + ACTIONS(5257), 1, anon_sym_LPAREN, - ACTIONS(5304), 1, + ACTIONS(5302), 1, anon_sym_BANG, - ACTIONS(5573), 1, + ACTIONS(5549), 1, anon_sym_LBRACK, - ACTIONS(6343), 1, + ACTIONS(5737), 1, + anon_sym_by, + ACTIONS(5739), 1, + anon_sym_QMARK, + ACTIONS(6355), 1, anon_sym_switch, - ACTIONS(6357), 1, + ACTIONS(6369), 1, anon_sym_with, - ACTIONS(8400), 1, + ACTIONS(8274), 1, anon_sym_SLASH, - ACTIONS(8402), 1, + ACTIONS(8276), 1, anon_sym_CARET, - ACTIONS(8406), 1, + ACTIONS(8278), 1, + anon_sym_PIPE, + ACTIONS(8280), 1, anon_sym_AMP, - ACTIONS(8410), 1, + ACTIONS(8284), 1, anon_sym_GT_GT, - ACTIONS(8416), 1, + ACTIONS(8290), 1, anon_sym_DOT_DOT, - ACTIONS(8426), 1, + ACTIONS(8292), 1, + anon_sym_AMP_AMP, + ACTIONS(8294), 1, + anon_sym_PIPE_PIPE, + ACTIONS(8296), 1, + anon_sym_QMARK_QMARK, + ACTIONS(8300), 1, anon_sym_as, - ACTIONS(8428), 1, + ACTIONS(8302), 1, anon_sym_is, - STATE(2485), 1, + STATE(2467), 1, sym_bracketed_argument_list, - STATE(3487), 1, + STATE(3381), 1, sym_argument_list, - ACTIONS(5306), 2, + ACTIONS(5304), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5664), 2, - anon_sym_QMARK, - anon_sym_PIPE, - ACTIONS(8392), 2, + ACTIONS(8266), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(8396), 2, + ACTIONS(8270), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(8398), 2, + ACTIONS(8272), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8408), 2, + ACTIONS(8282), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(8412), 2, + ACTIONS(8286), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(8414), 2, + ACTIONS(8288), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5660), 4, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_QMARK_QMARK, - anon_sym_on, - STATE(5440), 9, + STATE(5385), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -670830,7 +665493,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [181504] = 34, + [175911] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -670851,66 +665514,72 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4100), 1, + ACTIONS(4042), 1, anon_sym_DOT, - ACTIONS(4102), 1, + ACTIONS(4044), 1, anon_sym_DASH_GT, - ACTIONS(5264), 1, + ACTIONS(5257), 1, anon_sym_LPAREN, - ACTIONS(5304), 1, + ACTIONS(5302), 1, anon_sym_BANG, - ACTIONS(5573), 1, + ACTIONS(5549), 1, anon_sym_LBRACK, - ACTIONS(6343), 1, + ACTIONS(5849), 1, + anon_sym_EQ_GT, + ACTIONS(6355), 1, anon_sym_switch, - ACTIONS(6357), 1, + ACTIONS(6369), 1, anon_sym_with, - ACTIONS(8400), 1, + ACTIONS(6811), 1, + anon_sym_as, + ACTIONS(8130), 1, anon_sym_SLASH, - ACTIONS(8410), 1, + ACTIONS(8132), 1, + anon_sym_AMP, + ACTIONS(8136), 1, anon_sym_GT_GT, - ACTIONS(8416), 1, + ACTIONS(8142), 1, anon_sym_DOT_DOT, - ACTIONS(8426), 1, - anon_sym_as, - ACTIONS(8428), 1, + ACTIONS(8144), 1, anon_sym_is, - STATE(2485), 1, + ACTIONS(8332), 1, + anon_sym_QMARK, + ACTIONS(8334), 1, + anon_sym_CARET, + ACTIONS(8336), 1, + anon_sym_PIPE, + ACTIONS(8338), 1, + anon_sym_AMP_AMP, + ACTIONS(8340), 1, + anon_sym_PIPE_PIPE, + ACTIONS(8342), 1, + anon_sym_QMARK_QMARK, + STATE(2467), 1, sym_bracketed_argument_list, - STATE(3487), 1, + STATE(3381), 1, sym_argument_list, - ACTIONS(5306), 2, + ACTIONS(5304), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(8392), 2, + ACTIONS(8124), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(8396), 2, + ACTIONS(8126), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(8398), 2, + ACTIONS(8128), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8408), 2, + ACTIONS(8134), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(8412), 2, + ACTIONS(8138), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(8414), 2, + ACTIONS(8140), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5664), 3, - anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_AMP, - ACTIONS(5660), 5, - anon_sym_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_QMARK_QMARK, - anon_sym_on, - STATE(5441), 9, + STATE(5386), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -670920,7 +665589,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [181628] = 27, + [176047] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -670941,45 +665610,168 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4100), 1, + ACTIONS(4042), 1, anon_sym_DOT, - ACTIONS(4102), 1, + ACTIONS(4044), 1, anon_sym_DASH_GT, - ACTIONS(5264), 1, + ACTIONS(4996), 1, + anon_sym_by, + ACTIONS(5257), 1, anon_sym_LPAREN, - ACTIONS(5304), 1, + ACTIONS(5302), 1, anon_sym_BANG, - ACTIONS(5573), 1, + ACTIONS(5549), 1, anon_sym_LBRACK, - ACTIONS(6343), 1, + ACTIONS(6355), 1, anon_sym_switch, - ACTIONS(6357), 1, + ACTIONS(6369), 1, anon_sym_with, - ACTIONS(8400), 1, + ACTIONS(8268), 1, + anon_sym_QMARK, + ACTIONS(8274), 1, anon_sym_SLASH, - ACTIONS(8416), 1, + ACTIONS(8276), 1, + anon_sym_CARET, + ACTIONS(8278), 1, + anon_sym_PIPE, + ACTIONS(8280), 1, + anon_sym_AMP, + ACTIONS(8284), 1, + anon_sym_GT_GT, + ACTIONS(8290), 1, anon_sym_DOT_DOT, - STATE(2485), 1, + ACTIONS(8292), 1, + anon_sym_AMP_AMP, + ACTIONS(8294), 1, + anon_sym_PIPE_PIPE, + ACTIONS(8296), 1, + anon_sym_QMARK_QMARK, + ACTIONS(8300), 1, + anon_sym_as, + ACTIONS(8302), 1, + anon_sym_is, + STATE(2467), 1, sym_bracketed_argument_list, - STATE(3487), 1, + STATE(3381), 1, sym_argument_list, - ACTIONS(5306), 2, + ACTIONS(5304), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(8396), 2, + ACTIONS(8266), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(8270), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(8398), 2, + ACTIONS(8272), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(5664), 6, - anon_sym_LT, - anon_sym_GT, + ACTIONS(8282), 2, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + ACTIONS(8286), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(8288), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + STATE(5387), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + [176183] = 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(4042), 1, + anon_sym_DOT, + ACTIONS(4044), 1, + anon_sym_DASH_GT, + ACTIONS(5257), 1, + anon_sym_LPAREN, + ACTIONS(5302), 1, + anon_sym_BANG, + ACTIONS(5549), 1, + anon_sym_LBRACK, + ACTIONS(6355), 1, + anon_sym_switch, + ACTIONS(6369), 1, + anon_sym_with, + ACTIONS(6811), 1, + anon_sym_as, + ACTIONS(7231), 1, anon_sym_QMARK, + ACTIONS(7237), 1, + anon_sym_SLASH, + ACTIONS(7239), 1, + anon_sym_CARET, + ACTIONS(7241), 1, anon_sym_PIPE, + ACTIONS(7243), 1, anon_sym_AMP, + ACTIONS(7247), 1, anon_sym_GT_GT, - STATE(5442), 9, + ACTIONS(7253), 1, + anon_sym_DOT_DOT, + ACTIONS(7255), 1, + anon_sym_AMP_AMP, + ACTIONS(7257), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7259), 1, + anon_sym_QMARK_QMARK, + ACTIONS(7261), 1, + anon_sym_is, + ACTIONS(8364), 1, + anon_sym_RPAREN, + STATE(2467), 1, + sym_bracketed_argument_list, + STATE(3381), 1, + sym_argument_list, + ACTIONS(5304), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7229), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(7233), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(7235), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(7245), 2, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + ACTIONS(7249), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(7251), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + STATE(5388), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -670989,21 +665781,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5660), 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, - [181738] = 33, + [176319] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -671024,65 +665802,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4100), 1, - anon_sym_DOT, - ACTIONS(4102), 1, - anon_sym_DASH_GT, - ACTIONS(5264), 1, + ACTIONS(3600), 4, + anon_sym_COMMA, anon_sym_LPAREN, - ACTIONS(5304), 1, - anon_sym_BANG, - ACTIONS(5573), 1, + anon_sym_RPAREN, + anon_sym_LBRACE, + ACTIONS(3429), 6, anon_sym_LBRACK, - ACTIONS(6343), 1, - anon_sym_switch, - ACTIONS(6357), 1, - anon_sym_with, - ACTIONS(8400), 1, - anon_sym_SLASH, - ACTIONS(8410), 1, - anon_sym_GT_GT, - ACTIONS(8416), 1, - anon_sym_DOT_DOT, - ACTIONS(8426), 1, - anon_sym_as, - ACTIONS(8428), 1, - anon_sym_is, - STATE(2485), 1, - sym_bracketed_argument_list, - STATE(3487), 1, - sym_argument_list, - ACTIONS(5306), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(8392), 2, anon_sym_LT, - anon_sym_GT, - ACTIONS(8396), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(8398), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(8408), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - ACTIONS(8414), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(5664), 3, anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_AMP, - ACTIONS(5660), 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(5443), 9, + anon_sym_STAR, + anon_sym_DOT, + anon_sym_COLON_COLON, + STATE(5389), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -671092,7 +665824,34 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [181860] = 22, + ACTIONS(3603), 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, + [176403] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -671113,36 +665872,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4100), 1, - anon_sym_DOT, - ACTIONS(4102), 1, - anon_sym_DASH_GT, - ACTIONS(5264), 1, - anon_sym_LPAREN, - ACTIONS(5304), 1, - anon_sym_BANG, - ACTIONS(5573), 1, - anon_sym_LBRACK, - ACTIONS(8416), 1, - anon_sym_DOT_DOT, - STATE(2485), 1, - sym_bracketed_argument_list, - STATE(3487), 1, - sym_argument_list, - ACTIONS(5306), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5733), 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, + ACTIONS(8366), 1, + anon_sym_RPAREN, + STATE(5390), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -671152,7 +665884,25 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5731), 17, + ACTIONS(4813), 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(4811), 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, @@ -671163,14 +665913,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_on, anon_sym_as, anon_sym_is, + anon_sym_DASH_GT, anon_sym_with, - [181960] = 37, + [176487] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -671191,79 +665942,57 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4100), 1, - anon_sym_DOT, - ACTIONS(4102), 1, - anon_sym_DASH_GT, - ACTIONS(5264), 1, - anon_sym_LPAREN, - ACTIONS(5304), 1, - anon_sym_BANG, - ACTIONS(5573), 1, - anon_sym_LBRACK, - ACTIONS(5664), 1, + ACTIONS(8354), 1, + anon_sym_and, + ACTIONS(8356), 1, + anon_sym_or, + STATE(5391), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + ACTIONS(6109), 11, + anon_sym_LT, + anon_sym_GT, anon_sym_QMARK, - ACTIONS(6343), 1, - anon_sym_switch, - ACTIONS(6357), 1, - anon_sym_with, - ACTIONS(8400), 1, + anon_sym_BANG, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_SLASH, - ACTIONS(8402), 1, - anon_sym_CARET, - ACTIONS(8404), 1, anon_sym_PIPE, - ACTIONS(8406), 1, anon_sym_AMP, - ACTIONS(8410), 1, anon_sym_GT_GT, - ACTIONS(8416), 1, - anon_sym_DOT_DOT, - ACTIONS(8426), 1, - anon_sym_as, - ACTIONS(8428), 1, - anon_sym_is, - STATE(2485), 1, - sym_bracketed_argument_list, - STATE(3487), 1, - sym_argument_list, - ACTIONS(5306), 2, + anon_sym_DOT, + ACTIONS(6107), 23, + anon_sym_LBRACK, + anon_sym_LPAREN, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(8392), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(8396), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(8398), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8408), 2, + anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(8412), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(8414), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5660), 4, + 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(5445), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - [182090] = 38, + anon_sym_as, + anon_sym_is, + anon_sym_DASH_GT, + anon_sym_with, + [176573] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -671284,70 +666013,72 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4100), 1, + ACTIONS(4042), 1, anon_sym_DOT, - ACTIONS(4102), 1, + ACTIONS(4044), 1, anon_sym_DASH_GT, - ACTIONS(5264), 1, + ACTIONS(5257), 1, anon_sym_LPAREN, - ACTIONS(5304), 1, + ACTIONS(5302), 1, anon_sym_BANG, - ACTIONS(5573), 1, + ACTIONS(5549), 1, anon_sym_LBRACK, - ACTIONS(5664), 1, - anon_sym_QMARK, - ACTIONS(6343), 1, + ACTIONS(6355), 1, anon_sym_switch, - ACTIONS(6357), 1, + ACTIONS(6369), 1, anon_sym_with, - ACTIONS(8400), 1, + ACTIONS(6811), 1, + anon_sym_as, + ACTIONS(6813), 1, + anon_sym_is, + ACTIONS(6985), 1, anon_sym_SLASH, - ACTIONS(8402), 1, + ACTIONS(6989), 1, + anon_sym_GT_GT, + ACTIONS(6991), 1, + anon_sym_DOT_DOT, + ACTIONS(7099), 1, + anon_sym_QMARK, + ACTIONS(7101), 1, anon_sym_CARET, - ACTIONS(8404), 1, + ACTIONS(7103), 1, anon_sym_PIPE, - ACTIONS(8406), 1, + ACTIONS(7105), 1, anon_sym_AMP, - ACTIONS(8410), 1, - anon_sym_GT_GT, - ACTIONS(8416), 1, - anon_sym_DOT_DOT, - ACTIONS(8418), 1, + ACTIONS(7111), 1, anon_sym_AMP_AMP, - ACTIONS(8426), 1, - anon_sym_as, - ACTIONS(8428), 1, - anon_sym_is, - STATE(2485), 1, + ACTIONS(7113), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7115), 1, + anon_sym_QMARK_QMARK, + ACTIONS(8368), 1, + anon_sym_SEMI, + STATE(2467), 1, sym_bracketed_argument_list, - STATE(3487), 1, + STATE(3381), 1, sym_argument_list, - ACTIONS(5306), 2, + ACTIONS(5304), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(8392), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(8396), 2, + ACTIONS(6981), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(8398), 2, + ACTIONS(6983), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8408), 2, + ACTIONS(6987), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(8412), 2, + ACTIONS(7097), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(7107), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(8414), 2, + ACTIONS(7109), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5660), 3, - anon_sym_PIPE_PIPE, - anon_sym_QMARK_QMARK, - anon_sym_on, - STATE(5446), 9, + STATE(5392), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -671357,7 +666088,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [182222] = 40, + [176709] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -671378,72 +666109,72 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4100), 1, + ACTIONS(4042), 1, anon_sym_DOT, - ACTIONS(4102), 1, + ACTIONS(4044), 1, anon_sym_DASH_GT, - ACTIONS(5264), 1, + ACTIONS(5257), 1, anon_sym_LPAREN, - ACTIONS(5304), 1, + ACTIONS(5302), 1, anon_sym_BANG, - ACTIONS(5573), 1, + ACTIONS(5549), 1, anon_sym_LBRACK, - ACTIONS(5660), 1, - anon_sym_on, - ACTIONS(5664), 1, - anon_sym_QMARK, - ACTIONS(6343), 1, + ACTIONS(5652), 1, + anon_sym_by, + ACTIONS(6355), 1, anon_sym_switch, - ACTIONS(6357), 1, + ACTIONS(6369), 1, anon_sym_with, - ACTIONS(8400), 1, + ACTIONS(8268), 1, + anon_sym_QMARK, + ACTIONS(8274), 1, anon_sym_SLASH, - ACTIONS(8402), 1, + ACTIONS(8276), 1, anon_sym_CARET, - ACTIONS(8404), 1, + ACTIONS(8278), 1, anon_sym_PIPE, - ACTIONS(8406), 1, + ACTIONS(8280), 1, anon_sym_AMP, - ACTIONS(8410), 1, + ACTIONS(8284), 1, anon_sym_GT_GT, - ACTIONS(8416), 1, + ACTIONS(8290), 1, anon_sym_DOT_DOT, - ACTIONS(8418), 1, + ACTIONS(8292), 1, anon_sym_AMP_AMP, - ACTIONS(8420), 1, + ACTIONS(8294), 1, anon_sym_PIPE_PIPE, - ACTIONS(8422), 1, + ACTIONS(8296), 1, anon_sym_QMARK_QMARK, - ACTIONS(8426), 1, + ACTIONS(8300), 1, anon_sym_as, - ACTIONS(8428), 1, + ACTIONS(8302), 1, anon_sym_is, - STATE(2485), 1, + STATE(2467), 1, sym_bracketed_argument_list, - STATE(3487), 1, + STATE(3381), 1, sym_argument_list, - ACTIONS(5306), 2, + ACTIONS(5304), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(8392), 2, + ACTIONS(8266), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(8396), 2, + ACTIONS(8270), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(8398), 2, + ACTIONS(8272), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8408), 2, + ACTIONS(8282), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(8412), 2, + ACTIONS(8286), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(8414), 2, + ACTIONS(8288), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - STATE(5447), 9, + STATE(5393), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -671453,7 +666184,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [182358] = 40, + [176845] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -671474,82 +666205,56 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4100), 1, - anon_sym_DOT, - ACTIONS(4102), 1, - anon_sym_DASH_GT, - ACTIONS(5072), 1, - anon_sym_on, - ACTIONS(5264), 1, - anon_sym_LPAREN, - ACTIONS(5304), 1, - anon_sym_BANG, - ACTIONS(5573), 1, - anon_sym_LBRACK, - ACTIONS(6343), 1, - anon_sym_switch, - ACTIONS(6357), 1, - anon_sym_with, - ACTIONS(8394), 1, + ACTIONS(8370), 1, + anon_sym_and, + STATE(5394), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + ACTIONS(6097), 11, + anon_sym_LT, + anon_sym_GT, anon_sym_QMARK, - ACTIONS(8400), 1, + anon_sym_BANG, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_SLASH, - ACTIONS(8402), 1, - anon_sym_CARET, - ACTIONS(8404), 1, anon_sym_PIPE, - ACTIONS(8406), 1, anon_sym_AMP, - ACTIONS(8410), 1, anon_sym_GT_GT, - ACTIONS(8416), 1, - anon_sym_DOT_DOT, - ACTIONS(8418), 1, - anon_sym_AMP_AMP, - ACTIONS(8420), 1, - anon_sym_PIPE_PIPE, - ACTIONS(8422), 1, - anon_sym_QMARK_QMARK, - ACTIONS(8426), 1, - anon_sym_as, - ACTIONS(8428), 1, - anon_sym_is, - STATE(2485), 1, - sym_bracketed_argument_list, - STATE(3487), 1, - sym_argument_list, - ACTIONS(5306), 2, + anon_sym_DOT, + ACTIONS(6095), 24, + anon_sym_LBRACK, + anon_sym_LPAREN, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(8392), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(8396), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(8398), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8408), 2, + anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(8412), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(8414), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - STATE(5448), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - [182494] = 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, + [176929] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -671570,72 +666275,72 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4100), 1, + ACTIONS(4042), 1, anon_sym_DOT, - ACTIONS(4102), 1, + ACTIONS(4044), 1, anon_sym_DASH_GT, - ACTIONS(5264), 1, + ACTIONS(5257), 1, anon_sym_LPAREN, - ACTIONS(5304), 1, + ACTIONS(5302), 1, anon_sym_BANG, - ACTIONS(5573), 1, + ACTIONS(5549), 1, anon_sym_LBRACK, - ACTIONS(5882), 1, - anon_sym_on, - ACTIONS(6343), 1, + ACTIONS(6355), 1, anon_sym_switch, - ACTIONS(6357), 1, + ACTIONS(6369), 1, anon_sym_with, - ACTIONS(8394), 1, + ACTIONS(7195), 1, + anon_sym_as, + ACTIONS(8152), 1, anon_sym_QMARK, - ACTIONS(8400), 1, + ACTIONS(8158), 1, anon_sym_SLASH, - ACTIONS(8402), 1, + ACTIONS(8160), 1, anon_sym_CARET, - ACTIONS(8404), 1, + ACTIONS(8162), 1, anon_sym_PIPE, - ACTIONS(8406), 1, + ACTIONS(8164), 1, anon_sym_AMP, - ACTIONS(8410), 1, + ACTIONS(8168), 1, anon_sym_GT_GT, - ACTIONS(8416), 1, + ACTIONS(8174), 1, anon_sym_DOT_DOT, - ACTIONS(8418), 1, + ACTIONS(8176), 1, anon_sym_AMP_AMP, - ACTIONS(8420), 1, + ACTIONS(8178), 1, anon_sym_PIPE_PIPE, - ACTIONS(8422), 1, + ACTIONS(8180), 1, anon_sym_QMARK_QMARK, - ACTIONS(8426), 1, - anon_sym_as, - ACTIONS(8428), 1, + ACTIONS(8182), 1, anon_sym_is, - STATE(2485), 1, + ACTIONS(8372), 1, + anon_sym_COLON, + STATE(2467), 1, sym_bracketed_argument_list, - STATE(3487), 1, + STATE(3381), 1, sym_argument_list, - ACTIONS(5306), 2, + ACTIONS(5304), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(8392), 2, + ACTIONS(8150), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(8396), 2, + ACTIONS(8154), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(8398), 2, + ACTIONS(8156), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8408), 2, + ACTIONS(8166), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(8412), 2, + ACTIONS(8170), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(8414), 2, + ACTIONS(8172), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - STATE(5449), 9, + STATE(5395), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -671645,7 +666350,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [182630] = 40, + [177065] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -671666,72 +666371,72 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4100), 1, + ACTIONS(4042), 1, anon_sym_DOT, - ACTIONS(4102), 1, + ACTIONS(4044), 1, anon_sym_DASH_GT, - ACTIONS(5264), 1, + ACTIONS(5257), 1, anon_sym_LPAREN, - ACTIONS(5304), 1, + ACTIONS(5302), 1, anon_sym_BANG, - ACTIONS(5573), 1, + ACTIONS(5549), 1, anon_sym_LBRACK, - ACTIONS(6343), 1, + ACTIONS(6355), 1, anon_sym_switch, - ACTIONS(6357), 1, + ACTIONS(6369), 1, anon_sym_with, - ACTIONS(8150), 1, + ACTIONS(6811), 1, + anon_sym_as, + ACTIONS(7231), 1, anon_sym_QMARK, - ACTIONS(8156), 1, + ACTIONS(7237), 1, anon_sym_SLASH, - ACTIONS(8158), 1, + ACTIONS(7239), 1, anon_sym_CARET, - ACTIONS(8160), 1, + ACTIONS(7241), 1, anon_sym_PIPE, - ACTIONS(8162), 1, + ACTIONS(7243), 1, anon_sym_AMP, - ACTIONS(8166), 1, + ACTIONS(7247), 1, anon_sym_GT_GT, - ACTIONS(8172), 1, + ACTIONS(7253), 1, anon_sym_DOT_DOT, - ACTIONS(8174), 1, + ACTIONS(7255), 1, anon_sym_AMP_AMP, - ACTIONS(8176), 1, + ACTIONS(7257), 1, anon_sym_PIPE_PIPE, - ACTIONS(8178), 1, + ACTIONS(7259), 1, anon_sym_QMARK_QMARK, - ACTIONS(8182), 1, - anon_sym_as, - ACTIONS(8184), 1, + ACTIONS(7261), 1, anon_sym_is, - ACTIONS(8474), 1, - anon_sym_by, - STATE(2485), 1, + ACTIONS(8374), 1, + anon_sym_RPAREN, + STATE(2467), 1, sym_bracketed_argument_list, - STATE(3487), 1, + STATE(3381), 1, sym_argument_list, - ACTIONS(5306), 2, + ACTIONS(5304), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(8148), 2, + ACTIONS(7229), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(8152), 2, + ACTIONS(7233), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(8154), 2, + ACTIONS(7235), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8164), 2, + ACTIONS(7245), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(8168), 2, + ACTIONS(7249), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(8170), 2, + ACTIONS(7251), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - STATE(5450), 9, + STATE(5396), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -671741,7 +666446,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [182766] = 40, + [177201] = 16, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -671762,72 +666467,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4100), 1, - anon_sym_DOT, - ACTIONS(4102), 1, - anon_sym_DASH_GT, - ACTIONS(5264), 1, - anon_sym_LPAREN, - ACTIONS(5304), 1, - anon_sym_BANG, - ACTIONS(5573), 1, + ACTIONS(3883), 1, + anon_sym_COLON_COLON, + ACTIONS(6230), 1, + anon_sym_LT, + STATE(4054), 1, + sym_type_argument_list, + ACTIONS(3640), 6, anon_sym_LBRACK, - ACTIONS(5858), 1, - anon_sym_EQ_GT, - ACTIONS(6343), 1, - anon_sym_switch, - ACTIONS(6357), 1, - anon_sym_with, - ACTIONS(6813), 1, - anon_sym_as, - ACTIONS(8478), 1, + anon_sym_LPAREN, + anon_sym_LBRACE, anon_sym_QMARK, - ACTIONS(8484), 1, - anon_sym_SLASH, - ACTIONS(8486), 1, - anon_sym_CARET, - ACTIONS(8488), 1, - anon_sym_PIPE, - ACTIONS(8490), 1, - anon_sym_AMP, - ACTIONS(8494), 1, - anon_sym_GT_GT, - ACTIONS(8500), 1, - anon_sym_DOT_DOT, - ACTIONS(8502), 1, - anon_sym_AMP_AMP, - ACTIONS(8504), 1, - anon_sym_PIPE_PIPE, - ACTIONS(8506), 1, - anon_sym_QMARK_QMARK, - ACTIONS(8508), 1, - anon_sym_is, - STATE(2485), 1, - sym_bracketed_argument_list, - STATE(3487), 1, - sym_argument_list, - ACTIONS(5306), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(8476), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(8480), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(8482), 2, anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(8492), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - ACTIONS(8496), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(8498), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - STATE(5451), 9, + anon_sym_DOT, + STATE(5397), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -671837,7 +666490,35 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [182902] = 40, + ACTIONS(3638), 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, + [177289] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -671858,72 +666539,72 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4100), 1, + ACTIONS(4042), 1, anon_sym_DOT, - ACTIONS(4102), 1, + ACTIONS(4044), 1, anon_sym_DASH_GT, - ACTIONS(5264), 1, + ACTIONS(5257), 1, anon_sym_LPAREN, - ACTIONS(5304), 1, + ACTIONS(5302), 1, anon_sym_BANG, - ACTIONS(5573), 1, + ACTIONS(5549), 1, anon_sym_LBRACK, - ACTIONS(6343), 1, + ACTIONS(6355), 1, anon_sym_switch, - ACTIONS(6357), 1, + ACTIONS(6369), 1, anon_sym_with, - ACTIONS(6813), 1, + ACTIONS(6811), 1, anon_sym_as, - ACTIONS(7139), 1, - anon_sym_QMARK, - ACTIONS(7145), 1, + ACTIONS(6813), 1, + anon_sym_is, + ACTIONS(6985), 1, anon_sym_SLASH, - ACTIONS(7147), 1, + ACTIONS(6989), 1, + anon_sym_GT_GT, + ACTIONS(6991), 1, + anon_sym_DOT_DOT, + ACTIONS(7099), 1, + anon_sym_QMARK, + ACTIONS(7101), 1, anon_sym_CARET, - ACTIONS(7149), 1, + ACTIONS(7103), 1, anon_sym_PIPE, - ACTIONS(7151), 1, + ACTIONS(7105), 1, anon_sym_AMP, - ACTIONS(7155), 1, - anon_sym_GT_GT, - ACTIONS(7161), 1, - anon_sym_DOT_DOT, - ACTIONS(7163), 1, + ACTIONS(7111), 1, anon_sym_AMP_AMP, - ACTIONS(7165), 1, + ACTIONS(7113), 1, anon_sym_PIPE_PIPE, - ACTIONS(7167), 1, + ACTIONS(7115), 1, anon_sym_QMARK_QMARK, - ACTIONS(7169), 1, - anon_sym_is, - ACTIONS(8510), 1, - anon_sym_RPAREN, - STATE(2485), 1, + ACTIONS(7791), 1, + anon_sym_SEMI, + STATE(2467), 1, sym_bracketed_argument_list, - STATE(3487), 1, + STATE(3381), 1, sym_argument_list, - ACTIONS(5306), 2, + ACTIONS(5304), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7137), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(7141), 2, + ACTIONS(6981), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7143), 2, + ACTIONS(6983), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7153), 2, + ACTIONS(6987), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7157), 2, + ACTIONS(7097), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(7107), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7159), 2, + ACTIONS(7109), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - STATE(5452), 9, + STATE(5398), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -671933,7 +666614,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [183038] = 40, + [177425] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -671954,72 +666635,72 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4100), 1, + ACTIONS(4042), 1, anon_sym_DOT, - ACTIONS(4102), 1, + ACTIONS(4044), 1, anon_sym_DASH_GT, - ACTIONS(5264), 1, + ACTIONS(5257), 1, anon_sym_LPAREN, - ACTIONS(5304), 1, + ACTIONS(5302), 1, anon_sym_BANG, - ACTIONS(5573), 1, + ACTIONS(5549), 1, anon_sym_LBRACK, - ACTIONS(6343), 1, + ACTIONS(5709), 1, + anon_sym_in, + ACTIONS(6355), 1, anon_sym_switch, - ACTIONS(6357), 1, + ACTIONS(6369), 1, anon_sym_with, - ACTIONS(6813), 1, + ACTIONS(6811), 1, anon_sym_as, - ACTIONS(7139), 1, - anon_sym_QMARK, - ACTIONS(7145), 1, + ACTIONS(8236), 1, anon_sym_SLASH, - ACTIONS(7147), 1, - anon_sym_CARET, - ACTIONS(7149), 1, - anon_sym_PIPE, - ACTIONS(7151), 1, + ACTIONS(8238), 1, anon_sym_AMP, - ACTIONS(7155), 1, + ACTIONS(8242), 1, anon_sym_GT_GT, - ACTIONS(7161), 1, + ACTIONS(8248), 1, anon_sym_DOT_DOT, - ACTIONS(7163), 1, + ACTIONS(8250), 1, + anon_sym_is, + ACTIONS(8252), 1, + anon_sym_CARET, + ACTIONS(8254), 1, + anon_sym_PIPE, + ACTIONS(8256), 1, anon_sym_AMP_AMP, - ACTIONS(7165), 1, + ACTIONS(8258), 1, anon_sym_PIPE_PIPE, - ACTIONS(7167), 1, + ACTIONS(8260), 1, anon_sym_QMARK_QMARK, - ACTIONS(7169), 1, - anon_sym_is, - ACTIONS(8512), 1, - anon_sym_RPAREN, - STATE(2485), 1, + ACTIONS(8304), 1, + anon_sym_QMARK, + STATE(2467), 1, sym_bracketed_argument_list, - STATE(3487), 1, + STATE(3381), 1, sym_argument_list, - ACTIONS(5306), 2, + ACTIONS(5304), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7137), 2, + ACTIONS(8230), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7141), 2, + ACTIONS(8232), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7143), 2, + ACTIONS(8234), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7153), 2, + ACTIONS(8240), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7157), 2, + ACTIONS(8244), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7159), 2, + ACTIONS(8246), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - STATE(5453), 9, + STATE(5399), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -672029,7 +666710,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [183174] = 40, + [177561] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -672050,72 +666731,72 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4100), 1, + ACTIONS(4042), 1, anon_sym_DOT, - ACTIONS(4102), 1, + ACTIONS(4044), 1, anon_sym_DASH_GT, - ACTIONS(5264), 1, + ACTIONS(5257), 1, anon_sym_LPAREN, - ACTIONS(5304), 1, + ACTIONS(5302), 1, anon_sym_BANG, - ACTIONS(5573), 1, + ACTIONS(5549), 1, anon_sym_LBRACK, - ACTIONS(6343), 1, + ACTIONS(6355), 1, anon_sym_switch, - ACTIONS(6357), 1, + ACTIONS(6369), 1, anon_sym_with, - ACTIONS(6813), 1, + ACTIONS(7195), 1, anon_sym_as, - ACTIONS(7139), 1, + ACTIONS(8152), 1, anon_sym_QMARK, - ACTIONS(7145), 1, + ACTIONS(8158), 1, anon_sym_SLASH, - ACTIONS(7147), 1, + ACTIONS(8160), 1, anon_sym_CARET, - ACTIONS(7149), 1, + ACTIONS(8162), 1, anon_sym_PIPE, - ACTIONS(7151), 1, + ACTIONS(8164), 1, anon_sym_AMP, - ACTIONS(7155), 1, + ACTIONS(8168), 1, anon_sym_GT_GT, - ACTIONS(7161), 1, + ACTIONS(8174), 1, anon_sym_DOT_DOT, - ACTIONS(7163), 1, + ACTIONS(8176), 1, anon_sym_AMP_AMP, - ACTIONS(7165), 1, + ACTIONS(8178), 1, anon_sym_PIPE_PIPE, - ACTIONS(7167), 1, + ACTIONS(8180), 1, anon_sym_QMARK_QMARK, - ACTIONS(7169), 1, + ACTIONS(8182), 1, anon_sym_is, - ACTIONS(8514), 1, - anon_sym_RPAREN, - STATE(2485), 1, + ACTIONS(8376), 1, + anon_sym_COLON, + STATE(2467), 1, sym_bracketed_argument_list, - STATE(3487), 1, + STATE(3381), 1, sym_argument_list, - ACTIONS(5306), 2, + ACTIONS(5304), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7137), 2, + ACTIONS(8150), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7141), 2, + ACTIONS(8154), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7143), 2, + ACTIONS(8156), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7153), 2, + ACTIONS(8166), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7157), 2, + ACTIONS(8170), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7159), 2, + ACTIONS(8172), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - STATE(5454), 9, + STATE(5400), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -672125,7 +666806,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [183310] = 40, + [177697] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -672146,82 +666827,56 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(2063), 1, - anon_sym_SEMI, - ACTIONS(4100), 1, - anon_sym_DOT, - ACTIONS(4102), 1, - anon_sym_DASH_GT, - ACTIONS(5264), 1, - anon_sym_LPAREN, - ACTIONS(5304), 1, + ACTIONS(8378), 1, + anon_sym_and, + 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, + ACTIONS(6097), 11, + anon_sym_LT, + anon_sym_GT, + anon_sym_QMARK, anon_sym_BANG, - ACTIONS(5573), 1, - anon_sym_LBRACK, - ACTIONS(6343), 1, - anon_sym_switch, - ACTIONS(6357), 1, - anon_sym_with, - ACTIONS(6813), 1, - anon_sym_as, - ACTIONS(6815), 1, - anon_sym_is, - ACTIONS(7183), 1, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_SLASH, - ACTIONS(7187), 1, - anon_sym_GT_GT, - ACTIONS(7189), 1, - anon_sym_DOT_DOT, - ACTIONS(7195), 1, - anon_sym_AMP, - ACTIONS(7201), 1, - anon_sym_CARET, - ACTIONS(7203), 1, anon_sym_PIPE, - ACTIONS(7205), 1, - anon_sym_AMP_AMP, - ACTIONS(7207), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7209), 1, - anon_sym_QMARK_QMARK, - ACTIONS(7237), 1, - anon_sym_QMARK, - STATE(2485), 1, - sym_bracketed_argument_list, - STATE(3487), 1, - sym_argument_list, - ACTIONS(5306), 2, + anon_sym_AMP, + anon_sym_GT_GT, + anon_sym_DOT, + ACTIONS(6095), 24, + anon_sym_LBRACK, + anon_sym_COLON, + anon_sym_LPAREN, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7179), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(7181), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7185), 2, + anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7193), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(7197), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7199), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - 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, - [183446] = 29, + 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, + [177781] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -672242,49 +666897,72 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4100), 1, + ACTIONS(4042), 1, anon_sym_DOT, - ACTIONS(4102), 1, + ACTIONS(4044), 1, anon_sym_DASH_GT, - ACTIONS(5264), 1, + ACTIONS(5257), 1, anon_sym_LPAREN, - ACTIONS(5304), 1, + ACTIONS(5302), 1, anon_sym_BANG, - ACTIONS(5573), 1, + ACTIONS(5549), 1, anon_sym_LBRACK, - ACTIONS(6343), 1, + ACTIONS(5849), 1, + anon_sym_in, + ACTIONS(6355), 1, anon_sym_switch, - ACTIONS(6357), 1, + ACTIONS(6369), 1, anon_sym_with, - ACTIONS(8156), 1, + ACTIONS(6811), 1, + anon_sym_as, + ACTIONS(8236), 1, anon_sym_SLASH, - ACTIONS(8166), 1, + ACTIONS(8238), 1, + anon_sym_AMP, + ACTIONS(8242), 1, anon_sym_GT_GT, - ACTIONS(8172), 1, + ACTIONS(8248), 1, anon_sym_DOT_DOT, - STATE(2485), 1, + ACTIONS(8250), 1, + anon_sym_is, + ACTIONS(8252), 1, + anon_sym_CARET, + ACTIONS(8254), 1, + anon_sym_PIPE, + ACTIONS(8256), 1, + anon_sym_AMP_AMP, + ACTIONS(8258), 1, + anon_sym_PIPE_PIPE, + ACTIONS(8260), 1, + anon_sym_QMARK_QMARK, + ACTIONS(8304), 1, + anon_sym_QMARK, + STATE(2467), 1, sym_bracketed_argument_list, - STATE(3487), 1, + STATE(3381), 1, sym_argument_list, - ACTIONS(5306), 2, + ACTIONS(5304), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(8152), 2, + ACTIONS(8230), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(8232), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(8154), 2, + ACTIONS(8234), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8164), 2, + ACTIONS(8240), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(5664), 5, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_AMP, - STATE(5456), 9, + ACTIONS(8244), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(8246), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + STATE(5402), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -672294,19 +666972,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5660), 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, - [183560] = 40, + [177917] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -672327,72 +666993,72 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4100), 1, + ACTIONS(4042), 1, anon_sym_DOT, - ACTIONS(4102), 1, + ACTIONS(4044), 1, anon_sym_DASH_GT, - ACTIONS(5264), 1, + ACTIONS(5257), 1, anon_sym_LPAREN, - ACTIONS(5304), 1, + ACTIONS(5302), 1, anon_sym_BANG, - ACTIONS(5573), 1, + ACTIONS(5549), 1, anon_sym_LBRACK, - ACTIONS(6343), 1, + ACTIONS(6355), 1, anon_sym_switch, - ACTIONS(6357), 1, + ACTIONS(6369), 1, anon_sym_with, - ACTIONS(7037), 1, + ACTIONS(6811), 1, anon_sym_as, - ACTIONS(8234), 1, + ACTIONS(7231), 1, anon_sym_QMARK, - ACTIONS(8236), 1, - anon_sym_DOT_DOT, - ACTIONS(8238), 1, - anon_sym_is, - ACTIONS(8248), 1, + ACTIONS(7237), 1, anon_sym_SLASH, - ACTIONS(8250), 1, + ACTIONS(7239), 1, anon_sym_CARET, - ACTIONS(8252), 1, + ACTIONS(7241), 1, anon_sym_PIPE, - ACTIONS(8254), 1, + ACTIONS(7243), 1, anon_sym_AMP, - ACTIONS(8258), 1, + ACTIONS(7247), 1, anon_sym_GT_GT, - ACTIONS(8264), 1, + ACTIONS(7253), 1, + anon_sym_DOT_DOT, + ACTIONS(7255), 1, anon_sym_AMP_AMP, - ACTIONS(8266), 1, + ACTIONS(7257), 1, anon_sym_PIPE_PIPE, - ACTIONS(8268), 1, + ACTIONS(7259), 1, anon_sym_QMARK_QMARK, - ACTIONS(8516), 1, - anon_sym_COLON, - STATE(2485), 1, + ACTIONS(7261), 1, + anon_sym_is, + ACTIONS(8380), 1, + anon_sym_RPAREN, + STATE(2467), 1, sym_bracketed_argument_list, - STATE(3487), 1, + STATE(3381), 1, sym_argument_list, - ACTIONS(5306), 2, + ACTIONS(5304), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(8242), 2, + ACTIONS(7229), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(8244), 2, + ACTIONS(7233), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(8246), 2, + ACTIONS(7235), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8256), 2, + ACTIONS(7245), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(8260), 2, + ACTIONS(7249), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(8262), 2, + ACTIONS(7251), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - STATE(5457), 9, + STATE(5403), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -672402,7 +667068,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [183696] = 26, + [178053] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -672423,44 +667089,72 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4100), 1, + ACTIONS(4042), 1, anon_sym_DOT, - ACTIONS(4102), 1, + ACTIONS(4044), 1, anon_sym_DASH_GT, - ACTIONS(5264), 1, + ACTIONS(5257), 1, anon_sym_LPAREN, - ACTIONS(5304), 1, + ACTIONS(5302), 1, anon_sym_BANG, - ACTIONS(5573), 1, + ACTIONS(5549), 1, anon_sym_LBRACK, - ACTIONS(6343), 1, + ACTIONS(6355), 1, anon_sym_switch, - ACTIONS(6357), 1, + ACTIONS(6369), 1, anon_sym_with, - ACTIONS(8156), 1, + ACTIONS(6811), 1, + anon_sym_as, + ACTIONS(7231), 1, + anon_sym_QMARK, + ACTIONS(7237), 1, anon_sym_SLASH, - ACTIONS(8172), 1, + ACTIONS(7239), 1, + anon_sym_CARET, + ACTIONS(7241), 1, + anon_sym_PIPE, + ACTIONS(7243), 1, + anon_sym_AMP, + ACTIONS(7247), 1, + anon_sym_GT_GT, + ACTIONS(7253), 1, anon_sym_DOT_DOT, - STATE(2485), 1, + ACTIONS(7255), 1, + anon_sym_AMP_AMP, + ACTIONS(7257), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7259), 1, + anon_sym_QMARK_QMARK, + ACTIONS(7261), 1, + anon_sym_is, + ACTIONS(8382), 1, + anon_sym_RPAREN, + STATE(2467), 1, sym_bracketed_argument_list, - STATE(3487), 1, + STATE(3381), 1, sym_argument_list, - ACTIONS(5306), 2, + ACTIONS(5304), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(8154), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(5664), 8, + ACTIONS(7229), 2, anon_sym_LT, anon_sym_GT, - anon_sym_QMARK, + ACTIONS(7233), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT_GT, - STATE(5458), 9, + ACTIONS(7235), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(7245), 2, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + ACTIONS(7249), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(7251), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + STATE(5404), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -672470,21 +667164,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5660), 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, - [183804] = 24, + [178189] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -672505,40 +667185,72 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4100), 1, + ACTIONS(4042), 1, anon_sym_DOT, - ACTIONS(4102), 1, + ACTIONS(4044), 1, anon_sym_DASH_GT, - ACTIONS(5264), 1, + ACTIONS(5257), 1, anon_sym_LPAREN, - ACTIONS(5304), 1, + ACTIONS(5302), 1, anon_sym_BANG, - ACTIONS(5573), 1, + ACTIONS(5549), 1, anon_sym_LBRACK, - ACTIONS(6343), 1, + ACTIONS(6355), 1, anon_sym_switch, - ACTIONS(6357), 1, + ACTIONS(6369), 1, anon_sym_with, - ACTIONS(8172), 1, + ACTIONS(6657), 1, + anon_sym_SLASH, + ACTIONS(6661), 1, + anon_sym_GT_GT, + ACTIONS(6665), 1, + anon_sym_AMP, + ACTIONS(6673), 1, + anon_sym_CARET, + ACTIONS(6675), 1, + anon_sym_PIPE, + ACTIONS(6677), 1, + anon_sym_AMP_AMP, + ACTIONS(6679), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6681), 1, + anon_sym_QMARK_QMARK, + ACTIONS(7195), 1, + anon_sym_as, + ACTIONS(7211), 1, + anon_sym_COLON, + ACTIONS(8152), 1, + anon_sym_QMARK, + ACTIONS(8174), 1, anon_sym_DOT_DOT, - STATE(2485), 1, + ACTIONS(8182), 1, + anon_sym_is, + STATE(2467), 1, sym_bracketed_argument_list, - STATE(3487), 1, + STATE(3381), 1, sym_argument_list, - ACTIONS(5306), 2, + ACTIONS(5304), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5664), 9, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, + ACTIONS(6653), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT_GT, - STATE(5459), 9, + ACTIONS(6655), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(6659), 2, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + ACTIONS(6663), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(6667), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6669), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + STATE(5405), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -672548,23 +667260,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5660), 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, - [183908] = 35, + [178325] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -672585,67 +667281,72 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4100), 1, + ACTIONS(4042), 1, anon_sym_DOT, - ACTIONS(4102), 1, + ACTIONS(4044), 1, anon_sym_DASH_GT, - ACTIONS(5264), 1, + ACTIONS(5257), 1, anon_sym_LPAREN, - ACTIONS(5304), 1, + ACTIONS(5302), 1, anon_sym_BANG, - ACTIONS(5573), 1, + ACTIONS(5549), 1, anon_sym_LBRACK, - ACTIONS(6343), 1, + ACTIONS(6355), 1, anon_sym_switch, - ACTIONS(6357), 1, + ACTIONS(6369), 1, anon_sym_with, - ACTIONS(8156), 1, + ACTIONS(6811), 1, + anon_sym_as, + ACTIONS(7231), 1, + anon_sym_QMARK, + ACTIONS(7237), 1, anon_sym_SLASH, - ACTIONS(8162), 1, + ACTIONS(7239), 1, + anon_sym_CARET, + ACTIONS(7241), 1, + anon_sym_PIPE, + ACTIONS(7243), 1, anon_sym_AMP, - ACTIONS(8166), 1, + ACTIONS(7247), 1, anon_sym_GT_GT, - ACTIONS(8172), 1, + ACTIONS(7253), 1, anon_sym_DOT_DOT, - ACTIONS(8182), 1, - anon_sym_as, - ACTIONS(8184), 1, + ACTIONS(7255), 1, + anon_sym_AMP_AMP, + ACTIONS(7257), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7259), 1, + anon_sym_QMARK_QMARK, + ACTIONS(7261), 1, anon_sym_is, - STATE(2485), 1, + ACTIONS(8384), 1, + anon_sym_RPAREN, + STATE(2467), 1, sym_bracketed_argument_list, - STATE(3487), 1, + STATE(3381), 1, sym_argument_list, - ACTIONS(5306), 2, + ACTIONS(5304), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5664), 2, - anon_sym_QMARK, - anon_sym_PIPE, - ACTIONS(8148), 2, + ACTIONS(7229), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(8152), 2, + ACTIONS(7233), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(8154), 2, + ACTIONS(7235), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8164), 2, + ACTIONS(7245), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(8168), 2, + ACTIONS(7249), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(8170), 2, + ACTIONS(7251), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5660), 5, - anon_sym_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_QMARK_QMARK, - anon_sym_by, - STATE(5460), 9, + STATE(5406), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -672655,7 +667356,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [184034] = 36, + [178461] = 29, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -672676,68 +667377,49 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4100), 1, + ACTIONS(4042), 1, anon_sym_DOT, - ACTIONS(4102), 1, + ACTIONS(4044), 1, anon_sym_DASH_GT, - ACTIONS(5264), 1, + ACTIONS(5257), 1, anon_sym_LPAREN, - ACTIONS(5304), 1, + ACTIONS(5302), 1, anon_sym_BANG, - ACTIONS(5573), 1, + ACTIONS(5549), 1, anon_sym_LBRACK, - ACTIONS(6343), 1, + ACTIONS(6355), 1, anon_sym_switch, - ACTIONS(6357), 1, + ACTIONS(6369), 1, anon_sym_with, - ACTIONS(8156), 1, + ACTIONS(8130), 1, anon_sym_SLASH, - ACTIONS(8158), 1, - anon_sym_CARET, - ACTIONS(8162), 1, - anon_sym_AMP, - ACTIONS(8166), 1, + ACTIONS(8136), 1, anon_sym_GT_GT, - ACTIONS(8172), 1, + ACTIONS(8142), 1, anon_sym_DOT_DOT, - ACTIONS(8182), 1, - anon_sym_as, - ACTIONS(8184), 1, - anon_sym_is, - STATE(2485), 1, + STATE(2467), 1, sym_bracketed_argument_list, - STATE(3487), 1, + STATE(3381), 1, sym_argument_list, - ACTIONS(5306), 2, + ACTIONS(5304), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5664), 2, - anon_sym_QMARK, - anon_sym_PIPE, - ACTIONS(8148), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(8152), 2, + ACTIONS(8126), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(8154), 2, + ACTIONS(8128), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8164), 2, + ACTIONS(8134), 2, anon_sym_LT_LT, - anon_sym_GT_GT_GT, - ACTIONS(8168), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(8170), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(5660), 4, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_QMARK_QMARK, - anon_sym_by, - STATE(5461), 9, + anon_sym_GT_GT_GT, + ACTIONS(5739), 5, + anon_sym_LT, + anon_sym_GT, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_AMP, + STATE(5407), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -672747,7 +667429,19 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [184162] = 34, + ACTIONS(5737), 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, + [178575] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -672768,66 +667462,72 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4100), 1, + ACTIONS(4042), 1, anon_sym_DOT, - ACTIONS(4102), 1, + ACTIONS(4044), 1, anon_sym_DASH_GT, - ACTIONS(5264), 1, + ACTIONS(5257), 1, anon_sym_LPAREN, - ACTIONS(5304), 1, + ACTIONS(5302), 1, anon_sym_BANG, - ACTIONS(5573), 1, + ACTIONS(5549), 1, anon_sym_LBRACK, - ACTIONS(6343), 1, + ACTIONS(6355), 1, anon_sym_switch, - ACTIONS(6357), 1, + ACTIONS(6369), 1, anon_sym_with, - ACTIONS(8156), 1, + ACTIONS(7195), 1, + anon_sym_as, + ACTIONS(8152), 1, + anon_sym_QMARK, + ACTIONS(8158), 1, anon_sym_SLASH, - ACTIONS(8166), 1, + ACTIONS(8160), 1, + anon_sym_CARET, + ACTIONS(8162), 1, + anon_sym_PIPE, + ACTIONS(8164), 1, + anon_sym_AMP, + ACTIONS(8168), 1, anon_sym_GT_GT, - ACTIONS(8172), 1, + ACTIONS(8174), 1, anon_sym_DOT_DOT, + ACTIONS(8176), 1, + anon_sym_AMP_AMP, + ACTIONS(8178), 1, + anon_sym_PIPE_PIPE, + ACTIONS(8180), 1, + anon_sym_QMARK_QMARK, ACTIONS(8182), 1, - anon_sym_as, - ACTIONS(8184), 1, anon_sym_is, - STATE(2485), 1, + ACTIONS(8386), 1, + anon_sym_COLON, + STATE(2467), 1, sym_bracketed_argument_list, - STATE(3487), 1, + STATE(3381), 1, sym_argument_list, - ACTIONS(5306), 2, + ACTIONS(5304), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(8148), 2, + ACTIONS(8150), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(8152), 2, + ACTIONS(8154), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(8154), 2, + ACTIONS(8156), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8164), 2, + ACTIONS(8166), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(8168), 2, + ACTIONS(8170), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(8170), 2, + ACTIONS(8172), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5664), 3, - anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_AMP, - ACTIONS(5660), 5, - anon_sym_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_QMARK_QMARK, - anon_sym_by, - STATE(5462), 9, + STATE(5408), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -672837,7 +667537,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [184286] = 40, + [178711] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -672858,72 +667558,72 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4100), 1, + ACTIONS(4042), 1, anon_sym_DOT, - ACTIONS(4102), 1, + ACTIONS(4044), 1, anon_sym_DASH_GT, - ACTIONS(5264), 1, + ACTIONS(5257), 1, anon_sym_LPAREN, - ACTIONS(5304), 1, + ACTIONS(5302), 1, anon_sym_BANG, - ACTIONS(5573), 1, + ACTIONS(5549), 1, anon_sym_LBRACK, - ACTIONS(6343), 1, + ACTIONS(6355), 1, anon_sym_switch, - ACTIONS(6357), 1, + ACTIONS(6369), 1, anon_sym_with, - ACTIONS(7037), 1, + ACTIONS(7195), 1, anon_sym_as, - ACTIONS(8234), 1, + ACTIONS(8152), 1, anon_sym_QMARK, - ACTIONS(8236), 1, - anon_sym_DOT_DOT, - ACTIONS(8238), 1, - anon_sym_is, - ACTIONS(8248), 1, + ACTIONS(8158), 1, anon_sym_SLASH, - ACTIONS(8250), 1, + ACTIONS(8160), 1, anon_sym_CARET, - ACTIONS(8252), 1, + ACTIONS(8162), 1, anon_sym_PIPE, - ACTIONS(8254), 1, + ACTIONS(8164), 1, anon_sym_AMP, - ACTIONS(8258), 1, + ACTIONS(8168), 1, anon_sym_GT_GT, - ACTIONS(8264), 1, + ACTIONS(8174), 1, + anon_sym_DOT_DOT, + ACTIONS(8176), 1, anon_sym_AMP_AMP, - ACTIONS(8266), 1, + ACTIONS(8178), 1, anon_sym_PIPE_PIPE, - ACTIONS(8268), 1, + ACTIONS(8180), 1, anon_sym_QMARK_QMARK, - ACTIONS(8518), 1, + ACTIONS(8182), 1, + anon_sym_is, + ACTIONS(8388), 1, anon_sym_COLON, - STATE(2485), 1, + STATE(2467), 1, sym_bracketed_argument_list, - STATE(3487), 1, + STATE(3381), 1, sym_argument_list, - ACTIONS(5306), 2, + ACTIONS(5304), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(8242), 2, + ACTIONS(8150), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(8244), 2, + ACTIONS(8154), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(8246), 2, + ACTIONS(8156), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8256), 2, + ACTIONS(8166), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(8260), 2, + ACTIONS(8170), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(8262), 2, + ACTIONS(8172), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - STATE(5463), 9, + STATE(5409), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -672933,7 +667633,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [184422] = 15, + [178847] = 26, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -672954,11 +667654,44 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8374), 1, - anon_sym_and, - ACTIONS(8520), 1, - anon_sym_or, - STATE(5464), 9, + ACTIONS(4042), 1, + anon_sym_DOT, + ACTIONS(4044), 1, + anon_sym_DASH_GT, + ACTIONS(5257), 1, + anon_sym_LPAREN, + ACTIONS(5302), 1, + anon_sym_BANG, + ACTIONS(5549), 1, + anon_sym_LBRACK, + ACTIONS(6355), 1, + anon_sym_switch, + ACTIONS(6369), 1, + anon_sym_with, + ACTIONS(8130), 1, + anon_sym_SLASH, + ACTIONS(8142), 1, + anon_sym_DOT_DOT, + STATE(2467), 1, + sym_bracketed_argument_list, + STATE(3381), 1, + sym_argument_list, + ACTIONS(5304), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(8128), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(5739), 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(5410), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -672968,26 +667701,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5356), 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(5354), 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(5737), 13, anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT_GT, @@ -672995,16 +667709,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_EQ_GT, 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, - [184508] = 40, + [178955] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -673025,72 +667736,72 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4100), 1, + ACTIONS(4042), 1, anon_sym_DOT, - ACTIONS(4102), 1, + ACTIONS(4044), 1, anon_sym_DASH_GT, - ACTIONS(5264), 1, + ACTIONS(5257), 1, anon_sym_LPAREN, - ACTIONS(5304), 1, + ACTIONS(5302), 1, anon_sym_BANG, - ACTIONS(5573), 1, + ACTIONS(5549), 1, anon_sym_LBRACK, - ACTIONS(6343), 1, + ACTIONS(6355), 1, anon_sym_switch, - ACTIONS(6357), 1, + ACTIONS(6369), 1, anon_sym_with, - ACTIONS(8150), 1, + ACTIONS(8392), 1, anon_sym_QMARK, - ACTIONS(8156), 1, + ACTIONS(8398), 1, anon_sym_SLASH, - ACTIONS(8158), 1, + ACTIONS(8400), 1, anon_sym_CARET, - ACTIONS(8160), 1, + ACTIONS(8402), 1, anon_sym_PIPE, - ACTIONS(8162), 1, + ACTIONS(8404), 1, anon_sym_AMP, - ACTIONS(8166), 1, + ACTIONS(8408), 1, anon_sym_GT_GT, - ACTIONS(8172), 1, + ACTIONS(8414), 1, anon_sym_DOT_DOT, - ACTIONS(8174), 1, + ACTIONS(8416), 1, anon_sym_AMP_AMP, - ACTIONS(8176), 1, + ACTIONS(8418), 1, anon_sym_PIPE_PIPE, - ACTIONS(8178), 1, + ACTIONS(8420), 1, anon_sym_QMARK_QMARK, - ACTIONS(8182), 1, + ACTIONS(8422), 1, + anon_sym_equals, + ACTIONS(8424), 1, anon_sym_as, - ACTIONS(8184), 1, + ACTIONS(8426), 1, anon_sym_is, - ACTIONS(8522), 1, - anon_sym_by, - STATE(2485), 1, + STATE(2467), 1, sym_bracketed_argument_list, - STATE(3487), 1, + STATE(3381), 1, sym_argument_list, - ACTIONS(5306), 2, + ACTIONS(5304), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(8148), 2, + ACTIONS(8390), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(8152), 2, + ACTIONS(8394), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(8154), 2, + ACTIONS(8396), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8164), 2, + ACTIONS(8406), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(8168), 2, + ACTIONS(8410), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(8170), 2, + ACTIONS(8412), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - STATE(5465), 9, + STATE(5411), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -673100,7 +667811,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [184644] = 15, + [179091] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -673121,82 +667832,72 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8524), 1, - anon_sym_into, - STATE(5472), 1, - aux_sym__query_body_repeat2, - 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(6005), 11, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, + ACTIONS(4042), 1, + anon_sym_DOT, + ACTIONS(4044), 1, + anon_sym_DASH_GT, + ACTIONS(5257), 1, + anon_sym_LPAREN, + ACTIONS(5302), 1, anon_sym_BANG, - anon_sym_PLUS, - anon_sym_DASH, + ACTIONS(5549), 1, + anon_sym_LBRACK, + ACTIONS(6355), 1, + anon_sym_switch, + ACTIONS(6369), 1, + anon_sym_with, + ACTIONS(8188), 1, + anon_sym_DOT_DOT, + ACTIONS(8430), 1, + anon_sym_QMARK, + ACTIONS(8436), 1, anon_sym_SLASH, + ACTIONS(8438), 1, + anon_sym_CARET, + ACTIONS(8440), 1, anon_sym_PIPE, + ACTIONS(8442), 1, anon_sym_AMP, + ACTIONS(8446), 1, anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(6003), 23, - anon_sym_LBRACK, - anon_sym_LPAREN, + ACTIONS(8452), 1, + anon_sym_AMP_AMP, + ACTIONS(8454), 1, + anon_sym_PIPE_PIPE, + ACTIONS(8456), 1, + anon_sym_QMARK_QMARK, + ACTIONS(8458), 1, + anon_sym_on, + ACTIONS(8460), 1, + anon_sym_as, + ACTIONS(8462), 1, + anon_sym_is, + STATE(2467), 1, + sym_bracketed_argument_list, + STATE(3381), 1, + sym_argument_list, + ACTIONS(5304), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + ACTIONS(8428), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(8432), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(8434), 2, anon_sym_STAR, anon_sym_PERCENT, - anon_sym_CARET, + ACTIONS(8444), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, + ACTIONS(8448), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + ACTIONS(8450), 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_by, - anon_sym_as, - anon_sym_is, - anon_sym_DASH_GT, - anon_sym_with, - [184730] = 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(8524), 1, - anon_sym_into, - STATE(5473), 1, - aux_sym__query_body_repeat2, - STATE(5467), 9, + STATE(5412), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -673206,43 +667907,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(6005), 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(6003), 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, - [184816] = 40, + [179227] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -673263,72 +667928,72 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4100), 1, + ACTIONS(4042), 1, anon_sym_DOT, - ACTIONS(4102), 1, + ACTIONS(4044), 1, anon_sym_DASH_GT, - ACTIONS(5264), 1, + ACTIONS(5257), 1, anon_sym_LPAREN, - ACTIONS(5304), 1, + ACTIONS(5302), 1, anon_sym_BANG, - ACTIONS(5573), 1, + ACTIONS(5549), 1, anon_sym_LBRACK, - ACTIONS(6343), 1, + ACTIONS(6355), 1, anon_sym_switch, - ACTIONS(6357), 1, + ACTIONS(6369), 1, anon_sym_with, - ACTIONS(6813), 1, + ACTIONS(6811), 1, anon_sym_as, - ACTIONS(6815), 1, - anon_sym_is, - ACTIONS(7183), 1, + ACTIONS(7231), 1, + anon_sym_QMARK, + ACTIONS(7237), 1, anon_sym_SLASH, - ACTIONS(7187), 1, - anon_sym_GT_GT, - ACTIONS(7189), 1, - anon_sym_DOT_DOT, - ACTIONS(7195), 1, - anon_sym_AMP, - ACTIONS(7201), 1, + ACTIONS(7239), 1, anon_sym_CARET, - ACTIONS(7203), 1, + ACTIONS(7241), 1, anon_sym_PIPE, - ACTIONS(7205), 1, + ACTIONS(7243), 1, + anon_sym_AMP, + ACTIONS(7247), 1, + anon_sym_GT_GT, + ACTIONS(7253), 1, + anon_sym_DOT_DOT, + ACTIONS(7255), 1, anon_sym_AMP_AMP, - ACTIONS(7207), 1, + ACTIONS(7257), 1, anon_sym_PIPE_PIPE, - ACTIONS(7209), 1, + ACTIONS(7259), 1, anon_sym_QMARK_QMARK, - ACTIONS(7237), 1, - anon_sym_QMARK, - ACTIONS(8526), 1, - anon_sym_SEMI, - STATE(2485), 1, + ACTIONS(7261), 1, + anon_sym_is, + ACTIONS(8464), 1, + anon_sym_RPAREN, + STATE(2467), 1, sym_bracketed_argument_list, - STATE(3487), 1, + STATE(3381), 1, sym_argument_list, - ACTIONS(5306), 2, + ACTIONS(5304), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7179), 2, + ACTIONS(7229), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(7233), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7181), 2, + ACTIONS(7235), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7185), 2, + ACTIONS(7245), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7193), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(7197), 2, + ACTIONS(7249), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7199), 2, + ACTIONS(7251), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - STATE(5468), 9, + STATE(5413), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -673338,7 +668003,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [184952] = 27, + [179363] = 24, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -673359,45 +668024,40 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4100), 1, + ACTIONS(4042), 1, anon_sym_DOT, - ACTIONS(4102), 1, + ACTIONS(4044), 1, anon_sym_DASH_GT, - ACTIONS(5264), 1, + ACTIONS(5257), 1, anon_sym_LPAREN, - ACTIONS(5304), 1, + ACTIONS(5302), 1, anon_sym_BANG, - ACTIONS(5573), 1, + ACTIONS(5549), 1, anon_sym_LBRACK, - ACTIONS(6343), 1, + ACTIONS(6355), 1, anon_sym_switch, - ACTIONS(6357), 1, + ACTIONS(6369), 1, anon_sym_with, - ACTIONS(8156), 1, - anon_sym_SLASH, - ACTIONS(8172), 1, + ACTIONS(8142), 1, anon_sym_DOT_DOT, - STATE(2485), 1, + STATE(2467), 1, sym_bracketed_argument_list, - STATE(3487), 1, + STATE(3381), 1, sym_argument_list, - ACTIONS(5306), 2, + ACTIONS(5304), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(8152), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(8154), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(5664), 6, + ACTIONS(5739), 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(5469), 9, + STATE(5414), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -673407,7 +668067,9 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5660), 13, + ACTIONS(5737), 15, + anon_sym_STAR, + anon_sym_PERCENT, anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT_GT, @@ -673415,13 +668077,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_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_QMARK_QMARK, - anon_sym_by, anon_sym_as, anon_sym_is, - [185062] = 33, + [179467] = 29, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -673442,65 +668104,49 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4100), 1, + ACTIONS(4042), 1, anon_sym_DOT, - ACTIONS(4102), 1, + ACTIONS(4044), 1, anon_sym_DASH_GT, - ACTIONS(5264), 1, + ACTIONS(5257), 1, anon_sym_LPAREN, - ACTIONS(5304), 1, + ACTIONS(5302), 1, anon_sym_BANG, - ACTIONS(5573), 1, + ACTIONS(5549), 1, anon_sym_LBRACK, - ACTIONS(6343), 1, + ACTIONS(6355), 1, anon_sym_switch, - ACTIONS(6357), 1, + ACTIONS(6369), 1, anon_sym_with, - ACTIONS(8156), 1, + ACTIONS(8188), 1, + anon_sym_DOT_DOT, + ACTIONS(8436), 1, anon_sym_SLASH, - ACTIONS(8166), 1, + ACTIONS(8446), 1, anon_sym_GT_GT, - ACTIONS(8172), 1, - anon_sym_DOT_DOT, - ACTIONS(8182), 1, - anon_sym_as, - ACTIONS(8184), 1, - anon_sym_is, - STATE(2485), 1, + STATE(2467), 1, sym_bracketed_argument_list, - STATE(3487), 1, + STATE(3381), 1, sym_argument_list, - ACTIONS(5306), 2, + ACTIONS(5304), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(8148), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(8152), 2, + ACTIONS(8432), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(8154), 2, + ACTIONS(8434), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8164), 2, + ACTIONS(8444), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(8170), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(5664), 3, + ACTIONS(5739), 5, + anon_sym_LT, + anon_sym_GT, anon_sym_QMARK, anon_sym_PIPE, anon_sym_AMP, - ACTIONS(5660), 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(5470), 9, + STATE(5415), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -673510,7 +668156,19 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [185184] = 15, + ACTIONS(5737), 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, + [179581] = 36, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -673531,57 +668189,78 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8374), 1, - anon_sym_and, - ACTIONS(8520), 1, - anon_sym_or, - STATE(5471), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - ACTIONS(6207), 11, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, + ACTIONS(4042), 1, + anon_sym_DOT, + ACTIONS(4044), 1, + anon_sym_DASH_GT, + ACTIONS(5257), 1, + anon_sym_LPAREN, + ACTIONS(5302), 1, anon_sym_BANG, - anon_sym_PLUS, - anon_sym_DASH, + ACTIONS(5549), 1, + anon_sym_LBRACK, + ACTIONS(6355), 1, + anon_sym_switch, + ACTIONS(6369), 1, + anon_sym_with, + ACTIONS(6811), 1, + anon_sym_as, + ACTIONS(8130), 1, anon_sym_SLASH, - anon_sym_PIPE, + ACTIONS(8132), 1, anon_sym_AMP, + ACTIONS(8136), 1, anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(6205), 23, - anon_sym_LBRACK, - anon_sym_COLON, - anon_sym_LPAREN, + ACTIONS(8142), 1, + anon_sym_DOT_DOT, + ACTIONS(8144), 1, + anon_sym_is, + ACTIONS(8334), 1, + anon_sym_CARET, + STATE(2467), 1, + sym_bracketed_argument_list, + STATE(3381), 1, + sym_argument_list, + ACTIONS(5304), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + ACTIONS(5739), 2, + anon_sym_QMARK, + anon_sym_PIPE, + ACTIONS(8124), 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, - 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(5737), 4, + anon_sym_EQ_GT, 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, - [185270] = 14, + STATE(5416), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + [179709] = 34, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -673602,56 +668281,76 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8528), 1, - anon_sym_into, - STATE(5472), 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(5951), 11, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, + ACTIONS(4042), 1, + anon_sym_DOT, + ACTIONS(4044), 1, + anon_sym_DASH_GT, + ACTIONS(5257), 1, + anon_sym_LPAREN, + ACTIONS(5302), 1, anon_sym_BANG, - anon_sym_PLUS, - anon_sym_DASH, + ACTIONS(5549), 1, + anon_sym_LBRACK, + ACTIONS(6355), 1, + anon_sym_switch, + ACTIONS(6369), 1, + anon_sym_with, + ACTIONS(6811), 1, + anon_sym_as, + ACTIONS(8130), 1, anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, + ACTIONS(8136), 1, anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(5949), 23, - anon_sym_LBRACK, - anon_sym_LPAREN, + ACTIONS(8142), 1, + anon_sym_DOT_DOT, + ACTIONS(8144), 1, + anon_sym_is, + STATE(2467), 1, + sym_bracketed_argument_list, + STATE(3381), 1, + sym_argument_list, + ACTIONS(5304), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + ACTIONS(8124), 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, - 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(5739), 3, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_AMP, + ACTIONS(5737), 5, + anon_sym_CARET, + 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, - [185354] = 15, + STATE(5417), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + [179833] = 27, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -673672,11 +668371,45 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8524), 1, - anon_sym_into, - STATE(5472), 1, - aux_sym__query_body_repeat2, - STATE(5473), 9, + ACTIONS(4042), 1, + anon_sym_DOT, + ACTIONS(4044), 1, + anon_sym_DASH_GT, + ACTIONS(5257), 1, + anon_sym_LPAREN, + ACTIONS(5302), 1, + anon_sym_BANG, + ACTIONS(5549), 1, + anon_sym_LBRACK, + ACTIONS(6355), 1, + anon_sym_switch, + ACTIONS(6369), 1, + anon_sym_with, + ACTIONS(8130), 1, + anon_sym_SLASH, + ACTIONS(8142), 1, + anon_sym_DOT_DOT, + STATE(2467), 1, + sym_bracketed_argument_list, + STATE(3381), 1, + sym_argument_list, + ACTIONS(5304), 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(5739), 6, + anon_sym_LT, + anon_sym_GT, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT_GT, + STATE(5418), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -673686,25 +668419,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5960), 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(5958), 23, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_STAR, - anon_sym_PERCENT, + ACTIONS(5737), 13, anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT_GT, @@ -673712,17 +668427,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_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, - [185440] = 40, + [179943] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -673743,72 +668454,72 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4100), 1, + ACTIONS(4042), 1, anon_sym_DOT, - ACTIONS(4102), 1, + ACTIONS(4044), 1, anon_sym_DASH_GT, - ACTIONS(5264), 1, + ACTIONS(5257), 1, anon_sym_LPAREN, - ACTIONS(5304), 1, + ACTIONS(5302), 1, anon_sym_BANG, - ACTIONS(5573), 1, + ACTIONS(5549), 1, anon_sym_LBRACK, - ACTIONS(6343), 1, + ACTIONS(5709), 1, + anon_sym_on, + ACTIONS(6355), 1, anon_sym_switch, - ACTIONS(6357), 1, + ACTIONS(6369), 1, anon_sym_with, - ACTIONS(6813), 1, - anon_sym_as, - ACTIONS(7139), 1, + ACTIONS(8188), 1, + anon_sym_DOT_DOT, + ACTIONS(8430), 1, anon_sym_QMARK, - ACTIONS(7145), 1, + ACTIONS(8436), 1, anon_sym_SLASH, - ACTIONS(7147), 1, + ACTIONS(8438), 1, anon_sym_CARET, - ACTIONS(7149), 1, + ACTIONS(8440), 1, anon_sym_PIPE, - ACTIONS(7151), 1, + ACTIONS(8442), 1, anon_sym_AMP, - ACTIONS(7155), 1, + ACTIONS(8446), 1, anon_sym_GT_GT, - ACTIONS(7161), 1, - anon_sym_DOT_DOT, - ACTIONS(7163), 1, + ACTIONS(8452), 1, anon_sym_AMP_AMP, - ACTIONS(7165), 1, + ACTIONS(8454), 1, anon_sym_PIPE_PIPE, - ACTIONS(7167), 1, + ACTIONS(8456), 1, anon_sym_QMARK_QMARK, - ACTIONS(7169), 1, + ACTIONS(8460), 1, + anon_sym_as, + ACTIONS(8462), 1, anon_sym_is, - ACTIONS(8531), 1, - anon_sym_RPAREN, - STATE(2485), 1, + STATE(2467), 1, sym_bracketed_argument_list, - STATE(3487), 1, + STATE(3381), 1, sym_argument_list, - ACTIONS(5306), 2, + ACTIONS(5304), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7137), 2, + ACTIONS(8428), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7141), 2, + ACTIONS(8432), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7143), 2, + ACTIONS(8434), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7153), 2, + ACTIONS(8444), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7157), 2, + ACTIONS(8448), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7159), 2, + ACTIONS(8450), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - STATE(5474), 9, + STATE(5419), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -673818,7 +668529,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [185576] = 40, + [180079] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -673839,72 +668550,72 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4100), 1, + ACTIONS(4042), 1, anon_sym_DOT, - ACTIONS(4102), 1, + ACTIONS(4044), 1, anon_sym_DASH_GT, - ACTIONS(5264), 1, + ACTIONS(5257), 1, anon_sym_LPAREN, - ACTIONS(5304), 1, + ACTIONS(5302), 1, anon_sym_BANG, - ACTIONS(5573), 1, + ACTIONS(5549), 1, anon_sym_LBRACK, - ACTIONS(6343), 1, + ACTIONS(6355), 1, anon_sym_switch, - ACTIONS(6357), 1, + ACTIONS(6369), 1, anon_sym_with, - ACTIONS(6813), 1, + ACTIONS(7195), 1, anon_sym_as, - ACTIONS(7139), 1, + ACTIONS(8152), 1, anon_sym_QMARK, - ACTIONS(7145), 1, + ACTIONS(8158), 1, anon_sym_SLASH, - ACTIONS(7147), 1, + ACTIONS(8160), 1, anon_sym_CARET, - ACTIONS(7149), 1, + ACTIONS(8162), 1, anon_sym_PIPE, - ACTIONS(7151), 1, + ACTIONS(8164), 1, anon_sym_AMP, - ACTIONS(7155), 1, + ACTIONS(8168), 1, anon_sym_GT_GT, - ACTIONS(7161), 1, + ACTIONS(8174), 1, anon_sym_DOT_DOT, - ACTIONS(7163), 1, + ACTIONS(8176), 1, anon_sym_AMP_AMP, - ACTIONS(7165), 1, + ACTIONS(8178), 1, anon_sym_PIPE_PIPE, - ACTIONS(7167), 1, + ACTIONS(8180), 1, anon_sym_QMARK_QMARK, - ACTIONS(7169), 1, + ACTIONS(8182), 1, anon_sym_is, - ACTIONS(8533), 1, - anon_sym_RPAREN, - STATE(2485), 1, + ACTIONS(8466), 1, + anon_sym_COLON, + STATE(2467), 1, sym_bracketed_argument_list, - STATE(3487), 1, + STATE(3381), 1, sym_argument_list, - ACTIONS(5306), 2, + ACTIONS(5304), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7137), 2, + ACTIONS(8150), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7141), 2, + ACTIONS(8154), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7143), 2, + ACTIONS(8156), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7153), 2, + ACTIONS(8166), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7157), 2, + ACTIONS(8170), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7159), 2, + ACTIONS(8172), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - STATE(5475), 9, + STATE(5420), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -673914,7 +668625,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [185712] = 22, + [180215] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -673935,147 +668646,72 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4100), 1, + ACTIONS(4042), 1, anon_sym_DOT, - ACTIONS(4102), 1, + ACTIONS(4044), 1, anon_sym_DASH_GT, - ACTIONS(5264), 1, + ACTIONS(5257), 1, anon_sym_LPAREN, - ACTIONS(5304), 1, + ACTIONS(5302), 1, anon_sym_BANG, - ACTIONS(5573), 1, + ACTIONS(5549), 1, anon_sym_LBRACK, - ACTIONS(8172), 1, + ACTIONS(5849), 1, + anon_sym_on, + ACTIONS(6355), 1, + anon_sym_switch, + ACTIONS(6369), 1, + anon_sym_with, + ACTIONS(8188), 1, anon_sym_DOT_DOT, - STATE(2485), 1, - sym_bracketed_argument_list, - STATE(3487), 1, - sym_argument_list, - ACTIONS(5306), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5733), 9, - anon_sym_LT, - anon_sym_GT, + ACTIONS(8430), 1, anon_sym_QMARK, - anon_sym_PLUS, - anon_sym_DASH, + ACTIONS(8436), 1, anon_sym_SLASH, + ACTIONS(8438), 1, + anon_sym_CARET, + ACTIONS(8440), 1, anon_sym_PIPE, + ACTIONS(8442), 1, anon_sym_AMP, + ACTIONS(8446), 1, anon_sym_GT_GT, - STATE(5476), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - ACTIONS(5731), 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, + ACTIONS(8452), 1, anon_sym_AMP_AMP, + ACTIONS(8454), 1, anon_sym_PIPE_PIPE, + ACTIONS(8456), 1, anon_sym_QMARK_QMARK, - anon_sym_by, - anon_sym_as, - anon_sym_is, - anon_sym_with, - [185812] = 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(4100), 1, - anon_sym_DOT, - ACTIONS(4102), 1, - anon_sym_DASH_GT, - ACTIONS(5264), 1, - anon_sym_LPAREN, - ACTIONS(5304), 1, - anon_sym_BANG, - ACTIONS(5573), 1, - anon_sym_LBRACK, - ACTIONS(5664), 1, - anon_sym_QMARK, - ACTIONS(6343), 1, - anon_sym_switch, - ACTIONS(6357), 1, - anon_sym_with, - ACTIONS(8156), 1, - anon_sym_SLASH, - ACTIONS(8158), 1, - anon_sym_CARET, - ACTIONS(8160), 1, - anon_sym_PIPE, - ACTIONS(8162), 1, - anon_sym_AMP, - ACTIONS(8166), 1, - anon_sym_GT_GT, - ACTIONS(8172), 1, - anon_sym_DOT_DOT, - ACTIONS(8182), 1, + ACTIONS(8460), 1, anon_sym_as, - ACTIONS(8184), 1, + ACTIONS(8462), 1, anon_sym_is, - STATE(2485), 1, + STATE(2467), 1, sym_bracketed_argument_list, - STATE(3487), 1, + STATE(3381), 1, sym_argument_list, - ACTIONS(5306), 2, + ACTIONS(5304), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(8148), 2, + ACTIONS(8428), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(8152), 2, + ACTIONS(8432), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(8154), 2, + ACTIONS(8434), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8164), 2, + ACTIONS(8444), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(8168), 2, + ACTIONS(8448), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(8170), 2, + ACTIONS(8450), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5660), 4, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_QMARK_QMARK, - anon_sym_by, - STATE(5477), 9, + STATE(5421), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -674085,7 +668721,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [185942] = 38, + [180351] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -674106,70 +668742,72 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4100), 1, + ACTIONS(4042), 1, anon_sym_DOT, - ACTIONS(4102), 1, + ACTIONS(4044), 1, anon_sym_DASH_GT, - ACTIONS(5264), 1, + ACTIONS(5257), 1, anon_sym_LPAREN, - ACTIONS(5304), 1, + ACTIONS(5302), 1, anon_sym_BANG, - ACTIONS(5573), 1, + ACTIONS(5549), 1, anon_sym_LBRACK, - ACTIONS(5664), 1, - anon_sym_QMARK, - ACTIONS(6343), 1, + ACTIONS(6355), 1, anon_sym_switch, - ACTIONS(6357), 1, + ACTIONS(6369), 1, anon_sym_with, - ACTIONS(8156), 1, + ACTIONS(6811), 1, + anon_sym_as, + ACTIONS(7231), 1, + anon_sym_QMARK, + ACTIONS(7237), 1, anon_sym_SLASH, - ACTIONS(8158), 1, + ACTIONS(7239), 1, anon_sym_CARET, - ACTIONS(8160), 1, + ACTIONS(7241), 1, anon_sym_PIPE, - ACTIONS(8162), 1, + ACTIONS(7243), 1, anon_sym_AMP, - ACTIONS(8166), 1, + ACTIONS(7247), 1, anon_sym_GT_GT, - ACTIONS(8172), 1, + ACTIONS(7253), 1, anon_sym_DOT_DOT, - ACTIONS(8174), 1, + ACTIONS(7255), 1, anon_sym_AMP_AMP, - ACTIONS(8182), 1, - anon_sym_as, - ACTIONS(8184), 1, + ACTIONS(7257), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7259), 1, + anon_sym_QMARK_QMARK, + ACTIONS(7261), 1, anon_sym_is, - STATE(2485), 1, + ACTIONS(8468), 1, + anon_sym_RPAREN, + STATE(2467), 1, sym_bracketed_argument_list, - STATE(3487), 1, + STATE(3381), 1, sym_argument_list, - ACTIONS(5306), 2, + ACTIONS(5304), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(8148), 2, + ACTIONS(7229), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(8152), 2, + ACTIONS(7233), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(8154), 2, + ACTIONS(7235), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8164), 2, + ACTIONS(7245), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(8168), 2, + ACTIONS(7249), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(8170), 2, + ACTIONS(7251), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5660), 3, - anon_sym_PIPE_PIPE, - anon_sym_QMARK_QMARK, - anon_sym_by, - STATE(5478), 9, + STATE(5422), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -674179,7 +668817,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [186074] = 40, + [180487] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -674200,105 +668838,72 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4100), 1, + ACTIONS(4042), 1, anon_sym_DOT, - ACTIONS(4102), 1, + ACTIONS(4044), 1, anon_sym_DASH_GT, - ACTIONS(5264), 1, + ACTIONS(5257), 1, anon_sym_LPAREN, - ACTIONS(5304), 1, + ACTIONS(5302), 1, anon_sym_BANG, - ACTIONS(5573), 1, + ACTIONS(5549), 1, anon_sym_LBRACK, - ACTIONS(5660), 1, - anon_sym_by, - ACTIONS(5664), 1, - anon_sym_QMARK, - ACTIONS(6343), 1, + ACTIONS(6355), 1, anon_sym_switch, - ACTIONS(6357), 1, + ACTIONS(6369), 1, anon_sym_with, - ACTIONS(8156), 1, - anon_sym_SLASH, + ACTIONS(7195), 1, + anon_sym_as, + ACTIONS(8152), 1, + anon_sym_QMARK, ACTIONS(8158), 1, - anon_sym_CARET, + anon_sym_SLASH, ACTIONS(8160), 1, - anon_sym_PIPE, + anon_sym_CARET, ACTIONS(8162), 1, + anon_sym_PIPE, + ACTIONS(8164), 1, anon_sym_AMP, - ACTIONS(8166), 1, + ACTIONS(8168), 1, anon_sym_GT_GT, - ACTIONS(8172), 1, - anon_sym_DOT_DOT, ACTIONS(8174), 1, - anon_sym_AMP_AMP, + anon_sym_DOT_DOT, ACTIONS(8176), 1, - anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, ACTIONS(8178), 1, + anon_sym_PIPE_PIPE, + ACTIONS(8180), 1, anon_sym_QMARK_QMARK, ACTIONS(8182), 1, - anon_sym_as, - ACTIONS(8184), 1, anon_sym_is, - STATE(2485), 1, + ACTIONS(8470), 1, + anon_sym_COLON, + STATE(2467), 1, sym_bracketed_argument_list, - STATE(3487), 1, + STATE(3381), 1, sym_argument_list, - ACTIONS(5306), 2, + ACTIONS(5304), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(8148), 2, + ACTIONS(8150), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(8152), 2, + ACTIONS(8154), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(8154), 2, + ACTIONS(8156), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8164), 2, + ACTIONS(8166), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(8168), 2, + ACTIONS(8170), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(8170), 2, + ACTIONS(8172), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - STATE(5479), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - [186210] = 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(8458), 1, - anon_sym_and, - STATE(5480), 9, + STATE(5423), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -674308,44 +668913,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(6069), 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(6067), 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_as, - anon_sym_is, - anon_sym_DASH_GT, - anon_sym_with, - [186294] = 29, + [180623] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -674366,49 +668934,72 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4100), 1, + ACTIONS(4042), 1, anon_sym_DOT, - ACTIONS(4102), 1, + ACTIONS(4044), 1, anon_sym_DASH_GT, - ACTIONS(5264), 1, + ACTIONS(5257), 1, anon_sym_LPAREN, - ACTIONS(5304), 1, + ACTIONS(5302), 1, anon_sym_BANG, - ACTIONS(5573), 1, + ACTIONS(5549), 1, anon_sym_LBRACK, - ACTIONS(6343), 1, + ACTIONS(6355), 1, anon_sym_switch, - ACTIONS(6357), 1, + ACTIONS(6369), 1, anon_sym_with, - ACTIONS(8484), 1, + ACTIONS(7195), 1, + anon_sym_as, + ACTIONS(8152), 1, + anon_sym_QMARK, + ACTIONS(8158), 1, anon_sym_SLASH, - ACTIONS(8494), 1, + ACTIONS(8160), 1, + anon_sym_CARET, + ACTIONS(8162), 1, + anon_sym_PIPE, + ACTIONS(8164), 1, + anon_sym_AMP, + ACTIONS(8168), 1, anon_sym_GT_GT, - ACTIONS(8500), 1, + ACTIONS(8174), 1, anon_sym_DOT_DOT, - STATE(2485), 1, + ACTIONS(8176), 1, + anon_sym_AMP_AMP, + ACTIONS(8178), 1, + anon_sym_PIPE_PIPE, + ACTIONS(8180), 1, + anon_sym_QMARK_QMARK, + ACTIONS(8182), 1, + anon_sym_is, + ACTIONS(8472), 1, + anon_sym_COLON, + STATE(2467), 1, sym_bracketed_argument_list, - STATE(3487), 1, + STATE(3381), 1, sym_argument_list, - ACTIONS(5306), 2, + ACTIONS(5304), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(8480), 2, + ACTIONS(8150), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(8154), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(8482), 2, + ACTIONS(8156), 2, anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(8492), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - ACTIONS(5664), 5, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_AMP, - STATE(5481), 9, + anon_sym_PERCENT, + ACTIONS(8166), 2, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + ACTIONS(8170), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(8172), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + STATE(5424), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -674418,19 +669009,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5660), 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, - [186408] = 40, + [180759] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -674451,72 +669030,72 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4100), 1, + ACTIONS(4042), 1, anon_sym_DOT, - ACTIONS(4102), 1, + ACTIONS(4044), 1, anon_sym_DASH_GT, - ACTIONS(5264), 1, + ACTIONS(5257), 1, anon_sym_LPAREN, - ACTIONS(5304), 1, + ACTIONS(5302), 1, anon_sym_BANG, - ACTIONS(5573), 1, + ACTIONS(5549), 1, anon_sym_LBRACK, - ACTIONS(6343), 1, + ACTIONS(6355), 1, anon_sym_switch, - ACTIONS(6357), 1, + ACTIONS(6369), 1, anon_sym_with, - ACTIONS(6813), 1, + ACTIONS(7195), 1, anon_sym_as, - ACTIONS(6815), 1, - anon_sym_is, - ACTIONS(7183), 1, + ACTIONS(8152), 1, + anon_sym_QMARK, + ACTIONS(8158), 1, anon_sym_SLASH, - ACTIONS(7187), 1, - anon_sym_GT_GT, - ACTIONS(7189), 1, - anon_sym_DOT_DOT, - ACTIONS(7195), 1, - anon_sym_AMP, - ACTIONS(7201), 1, + ACTIONS(8160), 1, anon_sym_CARET, - ACTIONS(7203), 1, + ACTIONS(8162), 1, anon_sym_PIPE, - ACTIONS(7205), 1, + ACTIONS(8164), 1, + anon_sym_AMP, + ACTIONS(8168), 1, + anon_sym_GT_GT, + ACTIONS(8174), 1, + anon_sym_DOT_DOT, + ACTIONS(8176), 1, anon_sym_AMP_AMP, - ACTIONS(7207), 1, + ACTIONS(8178), 1, anon_sym_PIPE_PIPE, - ACTIONS(7209), 1, + ACTIONS(8180), 1, anon_sym_QMARK_QMARK, - ACTIONS(7237), 1, - anon_sym_QMARK, - ACTIONS(8535), 1, - anon_sym_SEMI, - STATE(2485), 1, + ACTIONS(8182), 1, + anon_sym_is, + ACTIONS(8474), 1, + anon_sym_COLON, + STATE(2467), 1, sym_bracketed_argument_list, - STATE(3487), 1, + STATE(3381), 1, sym_argument_list, - ACTIONS(5306), 2, + ACTIONS(5304), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7179), 2, + ACTIONS(8150), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(8154), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7181), 2, + ACTIONS(8156), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7185), 2, + ACTIONS(8166), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7193), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(7197), 2, + ACTIONS(8170), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7199), 2, + ACTIONS(8172), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - STATE(5482), 9, + STATE(5425), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -674526,7 +669105,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [186544] = 40, + [180895] = 33, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -674547,72 +669126,65 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4100), 1, + ACTIONS(4042), 1, anon_sym_DOT, - ACTIONS(4102), 1, + ACTIONS(4044), 1, anon_sym_DASH_GT, - ACTIONS(5264), 1, + ACTIONS(5257), 1, anon_sym_LPAREN, - ACTIONS(5304), 1, + ACTIONS(5302), 1, anon_sym_BANG, - ACTIONS(5573), 1, + ACTIONS(5549), 1, anon_sym_LBRACK, - ACTIONS(6343), 1, + ACTIONS(6355), 1, anon_sym_switch, - ACTIONS(6357), 1, + ACTIONS(6369), 1, anon_sym_with, - ACTIONS(7037), 1, + ACTIONS(6811), 1, anon_sym_as, - ACTIONS(8234), 1, - anon_sym_QMARK, - ACTIONS(8236), 1, - anon_sym_DOT_DOT, - ACTIONS(8238), 1, - anon_sym_is, - ACTIONS(8248), 1, + ACTIONS(8130), 1, anon_sym_SLASH, - ACTIONS(8250), 1, - anon_sym_CARET, - ACTIONS(8252), 1, - anon_sym_PIPE, - ACTIONS(8254), 1, - anon_sym_AMP, - ACTIONS(8258), 1, + ACTIONS(8136), 1, anon_sym_GT_GT, - ACTIONS(8264), 1, - anon_sym_AMP_AMP, - ACTIONS(8266), 1, - anon_sym_PIPE_PIPE, - ACTIONS(8268), 1, - anon_sym_QMARK_QMARK, - ACTIONS(8537), 1, - anon_sym_COLON, - STATE(2485), 1, + ACTIONS(8142), 1, + anon_sym_DOT_DOT, + ACTIONS(8144), 1, + anon_sym_is, + STATE(2467), 1, sym_bracketed_argument_list, - STATE(3487), 1, + STATE(3381), 1, sym_argument_list, - ACTIONS(5306), 2, + ACTIONS(5304), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(8242), 2, + ACTIONS(8124), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(8244), 2, + ACTIONS(8126), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(8246), 2, + ACTIONS(8128), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8256), 2, + ACTIONS(8134), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(8260), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(8262), 2, + ACTIONS(8140), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - STATE(5483), 9, + ACTIONS(5739), 3, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_AMP, + ACTIONS(5737), 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(5426), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -674622,7 +669194,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [186680] = 26, + [181017] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -674643,44 +669215,72 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4100), 1, + ACTIONS(4042), 1, anon_sym_DOT, - ACTIONS(4102), 1, + ACTIONS(4044), 1, anon_sym_DASH_GT, - ACTIONS(5264), 1, + ACTIONS(5257), 1, anon_sym_LPAREN, - ACTIONS(5304), 1, + ACTIONS(5302), 1, anon_sym_BANG, - ACTIONS(5573), 1, + ACTIONS(5549), 1, anon_sym_LBRACK, - ACTIONS(6343), 1, + ACTIONS(6355), 1, anon_sym_switch, - ACTIONS(6357), 1, + ACTIONS(6369), 1, anon_sym_with, - ACTIONS(8484), 1, + ACTIONS(6811), 1, + anon_sym_as, + ACTIONS(6813), 1, + anon_sym_is, + ACTIONS(6985), 1, anon_sym_SLASH, - ACTIONS(8500), 1, + ACTIONS(6989), 1, + anon_sym_GT_GT, + ACTIONS(6991), 1, anon_sym_DOT_DOT, - STATE(2485), 1, + ACTIONS(7099), 1, + anon_sym_QMARK, + ACTIONS(7101), 1, + anon_sym_CARET, + ACTIONS(7103), 1, + anon_sym_PIPE, + ACTIONS(7105), 1, + anon_sym_AMP, + ACTIONS(7111), 1, + anon_sym_AMP_AMP, + ACTIONS(7113), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7115), 1, + anon_sym_QMARK_QMARK, + ACTIONS(8476), 1, + anon_sym_SEMI, + STATE(2467), 1, sym_bracketed_argument_list, - STATE(3487), 1, + STATE(3381), 1, sym_argument_list, - ACTIONS(5306), 2, + ACTIONS(5304), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(8482), 2, + ACTIONS(6981), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6983), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(5664), 8, + ACTIONS(6987), 2, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + ACTIONS(7097), 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(5484), 9, + ACTIONS(7107), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(7109), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + STATE(5427), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -674690,21 +669290,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5660), 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, - [186788] = 24, + [181153] = 22, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -674725,30 +669311,26 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4100), 1, + ACTIONS(4042), 1, anon_sym_DOT, - ACTIONS(4102), 1, + ACTIONS(4044), 1, anon_sym_DASH_GT, - ACTIONS(5264), 1, + ACTIONS(5257), 1, anon_sym_LPAREN, - ACTIONS(5304), 1, + ACTIONS(5302), 1, anon_sym_BANG, - ACTIONS(5573), 1, + ACTIONS(5549), 1, anon_sym_LBRACK, - ACTIONS(6343), 1, - anon_sym_switch, - ACTIONS(6357), 1, - anon_sym_with, - ACTIONS(8500), 1, + ACTIONS(8142), 1, anon_sym_DOT_DOT, - STATE(2485), 1, + STATE(2467), 1, sym_bracketed_argument_list, - STATE(3487), 1, + STATE(3381), 1, sym_argument_list, - ACTIONS(5306), 2, + ACTIONS(5304), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5664), 9, + ACTIONS(5743), 9, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, @@ -674758,7 +669340,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_AMP, anon_sym_GT_GT, - STATE(5485), 9, + STATE(5428), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -674768,7 +669350,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5660), 15, + ACTIONS(5741), 17, anon_sym_STAR, anon_sym_PERCENT, anon_sym_CARET, @@ -674779,12 +669361,14 @@ static const uint16_t ts_small_parse_table[] = { 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, - [186892] = 35, + anon_sym_with, + [181253] = 37, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -674805,67 +669389,69 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4100), 1, + ACTIONS(4042), 1, anon_sym_DOT, - ACTIONS(4102), 1, + ACTIONS(4044), 1, anon_sym_DASH_GT, - ACTIONS(5264), 1, + ACTIONS(5257), 1, anon_sym_LPAREN, - ACTIONS(5304), 1, + ACTIONS(5302), 1, anon_sym_BANG, - ACTIONS(5573), 1, + ACTIONS(5549), 1, anon_sym_LBRACK, - ACTIONS(6343), 1, + ACTIONS(5739), 1, + anon_sym_QMARK, + ACTIONS(6355), 1, anon_sym_switch, - ACTIONS(6357), 1, + ACTIONS(6369), 1, anon_sym_with, - ACTIONS(6813), 1, + ACTIONS(6811), 1, anon_sym_as, - ACTIONS(8484), 1, + ACTIONS(8130), 1, anon_sym_SLASH, - ACTIONS(8490), 1, + ACTIONS(8132), 1, anon_sym_AMP, - ACTIONS(8494), 1, + ACTIONS(8136), 1, anon_sym_GT_GT, - ACTIONS(8500), 1, + ACTIONS(8142), 1, anon_sym_DOT_DOT, - ACTIONS(8508), 1, + ACTIONS(8144), 1, anon_sym_is, - STATE(2485), 1, + ACTIONS(8334), 1, + anon_sym_CARET, + ACTIONS(8336), 1, + anon_sym_PIPE, + STATE(2467), 1, sym_bracketed_argument_list, - STATE(3487), 1, + STATE(3381), 1, sym_argument_list, - ACTIONS(5306), 2, + ACTIONS(5304), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5664), 2, - anon_sym_QMARK, - anon_sym_PIPE, - ACTIONS(8476), 2, + ACTIONS(8124), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(8480), 2, + ACTIONS(8126), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(8482), 2, + ACTIONS(8128), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8492), 2, + ACTIONS(8134), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(8496), 2, + ACTIONS(8138), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(8498), 2, + ACTIONS(8140), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5660), 5, - anon_sym_CARET, + ACTIONS(5737), 4, anon_sym_EQ_GT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_QMARK_QMARK, - STATE(5486), 9, + STATE(5429), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -674875,7 +669461,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [187018] = 36, + [181383] = 38, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -674896,68 +669482,70 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4100), 1, + ACTIONS(4042), 1, anon_sym_DOT, - ACTIONS(4102), 1, + ACTIONS(4044), 1, anon_sym_DASH_GT, - ACTIONS(5264), 1, + ACTIONS(5257), 1, anon_sym_LPAREN, - ACTIONS(5304), 1, + ACTIONS(5302), 1, anon_sym_BANG, - ACTIONS(5573), 1, + ACTIONS(5549), 1, anon_sym_LBRACK, - ACTIONS(6343), 1, + ACTIONS(5739), 1, + anon_sym_QMARK, + ACTIONS(6355), 1, anon_sym_switch, - ACTIONS(6357), 1, + ACTIONS(6369), 1, anon_sym_with, - ACTIONS(6813), 1, + ACTIONS(6811), 1, anon_sym_as, - ACTIONS(8484), 1, + ACTIONS(8130), 1, anon_sym_SLASH, - ACTIONS(8486), 1, - anon_sym_CARET, - ACTIONS(8490), 1, + ACTIONS(8132), 1, anon_sym_AMP, - ACTIONS(8494), 1, + ACTIONS(8136), 1, anon_sym_GT_GT, - ACTIONS(8500), 1, + ACTIONS(8142), 1, anon_sym_DOT_DOT, - ACTIONS(8508), 1, + ACTIONS(8144), 1, anon_sym_is, - STATE(2485), 1, + ACTIONS(8334), 1, + anon_sym_CARET, + ACTIONS(8336), 1, + anon_sym_PIPE, + ACTIONS(8338), 1, + anon_sym_AMP_AMP, + STATE(2467), 1, sym_bracketed_argument_list, - STATE(3487), 1, + STATE(3381), 1, sym_argument_list, - ACTIONS(5306), 2, + ACTIONS(5304), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5664), 2, - anon_sym_QMARK, - anon_sym_PIPE, - ACTIONS(8476), 2, + ACTIONS(8124), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(8480), 2, + ACTIONS(8126), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(8482), 2, + ACTIONS(8128), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8492), 2, + ACTIONS(8134), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(8496), 2, + ACTIONS(8138), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(8498), 2, + ACTIONS(8140), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5660), 4, + ACTIONS(5737), 3, anon_sym_EQ_GT, - anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_QMARK_QMARK, - STATE(5487), 9, + STATE(5430), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -674967,7 +669555,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [187146] = 34, + [181515] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -674988,66 +669576,72 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4100), 1, + ACTIONS(4042), 1, anon_sym_DOT, - ACTIONS(4102), 1, + ACTIONS(4044), 1, anon_sym_DASH_GT, - ACTIONS(5264), 1, + ACTIONS(5257), 1, anon_sym_LPAREN, - ACTIONS(5304), 1, + ACTIONS(5302), 1, anon_sym_BANG, - ACTIONS(5573), 1, + ACTIONS(5549), 1, anon_sym_LBRACK, - ACTIONS(6343), 1, + ACTIONS(5737), 1, + anon_sym_EQ_GT, + ACTIONS(5739), 1, + anon_sym_QMARK, + ACTIONS(6355), 1, anon_sym_switch, - ACTIONS(6357), 1, + ACTIONS(6369), 1, anon_sym_with, - ACTIONS(6813), 1, + ACTIONS(6811), 1, anon_sym_as, - ACTIONS(8484), 1, + ACTIONS(8130), 1, anon_sym_SLASH, - ACTIONS(8494), 1, + ACTIONS(8132), 1, + anon_sym_AMP, + ACTIONS(8136), 1, anon_sym_GT_GT, - ACTIONS(8500), 1, + ACTIONS(8142), 1, anon_sym_DOT_DOT, - ACTIONS(8508), 1, + ACTIONS(8144), 1, anon_sym_is, - STATE(2485), 1, + ACTIONS(8334), 1, + anon_sym_CARET, + ACTIONS(8336), 1, + anon_sym_PIPE, + ACTIONS(8338), 1, + anon_sym_AMP_AMP, + ACTIONS(8340), 1, + anon_sym_PIPE_PIPE, + ACTIONS(8342), 1, + anon_sym_QMARK_QMARK, + STATE(2467), 1, sym_bracketed_argument_list, - STATE(3487), 1, + STATE(3381), 1, sym_argument_list, - ACTIONS(5306), 2, + ACTIONS(5304), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(8476), 2, + ACTIONS(8124), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(8480), 2, + ACTIONS(8126), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(8482), 2, + ACTIONS(8128), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8492), 2, + ACTIONS(8134), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(8496), 2, + ACTIONS(8138), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(8498), 2, + ACTIONS(8140), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5664), 3, - anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_AMP, - ACTIONS(5660), 5, - anon_sym_CARET, - anon_sym_EQ_GT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_QMARK_QMARK, - STATE(5488), 9, + STATE(5431), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -675057,7 +669651,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [187270] = 27, + [181651] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -675078,148 +669672,72 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4100), 1, + ACTIONS(4042), 1, anon_sym_DOT, - ACTIONS(4102), 1, + ACTIONS(4044), 1, anon_sym_DASH_GT, - ACTIONS(5264), 1, + ACTIONS(5257), 1, anon_sym_LPAREN, - ACTIONS(5304), 1, + ACTIONS(5302), 1, anon_sym_BANG, - ACTIONS(5573), 1, + ACTIONS(5549), 1, anon_sym_LBRACK, - ACTIONS(6343), 1, + ACTIONS(6355), 1, anon_sym_switch, - ACTIONS(6357), 1, + ACTIONS(6369), 1, anon_sym_with, - ACTIONS(8484), 1, - anon_sym_SLASH, - ACTIONS(8500), 1, - anon_sym_DOT_DOT, - STATE(2485), 1, - sym_bracketed_argument_list, - STATE(3487), 1, - sym_argument_list, - ACTIONS(5306), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(8480), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(8482), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(5664), 6, - anon_sym_LT, - anon_sym_GT, + ACTIONS(7195), 1, + anon_sym_as, + ACTIONS(8152), 1, anon_sym_QMARK, + ACTIONS(8158), 1, + anon_sym_SLASH, + ACTIONS(8160), 1, + anon_sym_CARET, + ACTIONS(8162), 1, anon_sym_PIPE, + ACTIONS(8164), 1, anon_sym_AMP, + ACTIONS(8168), 1, anon_sym_GT_GT, - STATE(5489), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - ACTIONS(5660), 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, + ACTIONS(8174), 1, + anon_sym_DOT_DOT, + ACTIONS(8176), 1, anon_sym_AMP_AMP, + ACTIONS(8178), 1, anon_sym_PIPE_PIPE, + ACTIONS(8180), 1, anon_sym_QMARK_QMARK, - anon_sym_as, - anon_sym_is, - [187380] = 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(4100), 1, - anon_sym_DOT, - ACTIONS(4102), 1, - anon_sym_DASH_GT, - ACTIONS(5264), 1, - anon_sym_LPAREN, - ACTIONS(5304), 1, - anon_sym_BANG, - ACTIONS(5573), 1, - anon_sym_LBRACK, - ACTIONS(6343), 1, - anon_sym_switch, - ACTIONS(6357), 1, - anon_sym_with, - ACTIONS(6813), 1, - anon_sym_as, - ACTIONS(8484), 1, - anon_sym_SLASH, - ACTIONS(8494), 1, - anon_sym_GT_GT, - ACTIONS(8500), 1, - anon_sym_DOT_DOT, - ACTIONS(8508), 1, + ACTIONS(8182), 1, anon_sym_is, - STATE(2485), 1, + ACTIONS(8478), 1, + anon_sym_COLON, + STATE(2467), 1, sym_bracketed_argument_list, - STATE(3487), 1, + STATE(3381), 1, sym_argument_list, - ACTIONS(5306), 2, + ACTIONS(5304), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(8476), 2, + ACTIONS(8150), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(8480), 2, + ACTIONS(8154), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(8482), 2, + ACTIONS(8156), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8492), 2, + ACTIONS(8166), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(8498), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(5664), 3, - anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_AMP, - ACTIONS(5660), 7, - anon_sym_CARET, + ACTIONS(8170), 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, - STATE(5490), 9, + ACTIONS(8172), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + STATE(5432), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -675229,7 +669747,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [187502] = 22, + [181787] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -675250,36 +669768,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4100), 1, - anon_sym_DOT, - ACTIONS(4102), 1, - anon_sym_DASH_GT, - ACTIONS(5264), 1, - anon_sym_LPAREN, - ACTIONS(5304), 1, - anon_sym_BANG, - ACTIONS(5573), 1, - anon_sym_LBRACK, - ACTIONS(8500), 1, - anon_sym_DOT_DOT, - STATE(2485), 1, - sym_bracketed_argument_list, - STATE(3487), 1, - sym_argument_list, - ACTIONS(5306), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5733), 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(5491), 9, + ACTIONS(8480), 1, + anon_sym_and, + ACTIONS(8482), 1, + anon_sym_or, + STATE(5433), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -675289,7 +669782,24 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5731), 17, + ACTIONS(5360), 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(5358), 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, @@ -675299,15 +669809,16 @@ 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_as, anon_sym_is, + anon_sym_DASH_GT, anon_sym_with, - [187602] = 37, + [181873] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -675328,69 +669839,72 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4100), 1, + ACTIONS(4042), 1, anon_sym_DOT, - ACTIONS(4102), 1, + ACTIONS(4044), 1, anon_sym_DASH_GT, - ACTIONS(5264), 1, + ACTIONS(5257), 1, anon_sym_LPAREN, - ACTIONS(5304), 1, + ACTIONS(5302), 1, anon_sym_BANG, - ACTIONS(5573), 1, + ACTIONS(5549), 1, anon_sym_LBRACK, - ACTIONS(5664), 1, - anon_sym_QMARK, - ACTIONS(6343), 1, + ACTIONS(6355), 1, anon_sym_switch, - ACTIONS(6357), 1, + ACTIONS(6369), 1, anon_sym_with, - ACTIONS(6813), 1, - anon_sym_as, - ACTIONS(8484), 1, + ACTIONS(8268), 1, + anon_sym_QMARK, + ACTIONS(8274), 1, anon_sym_SLASH, - ACTIONS(8486), 1, + ACTIONS(8276), 1, anon_sym_CARET, - ACTIONS(8488), 1, + ACTIONS(8278), 1, anon_sym_PIPE, - ACTIONS(8490), 1, + ACTIONS(8280), 1, anon_sym_AMP, - ACTIONS(8494), 1, + ACTIONS(8284), 1, anon_sym_GT_GT, - ACTIONS(8500), 1, + ACTIONS(8290), 1, anon_sym_DOT_DOT, - ACTIONS(8508), 1, + ACTIONS(8292), 1, + anon_sym_AMP_AMP, + ACTIONS(8294), 1, + anon_sym_PIPE_PIPE, + ACTIONS(8296), 1, + anon_sym_QMARK_QMARK, + ACTIONS(8300), 1, + anon_sym_as, + ACTIONS(8302), 1, anon_sym_is, - STATE(2485), 1, + ACTIONS(8484), 1, + anon_sym_by, + STATE(2467), 1, sym_bracketed_argument_list, - STATE(3487), 1, + STATE(3381), 1, sym_argument_list, - ACTIONS(5306), 2, + ACTIONS(5304), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(8476), 2, + ACTIONS(8266), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(8480), 2, + ACTIONS(8270), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(8482), 2, + ACTIONS(8272), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8492), 2, + ACTIONS(8282), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(8496), 2, + ACTIONS(8286), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(8498), 2, + ACTIONS(8288), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5660), 4, - anon_sym_EQ_GT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_QMARK_QMARK, - STATE(5492), 9, + STATE(5434), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -675400,7 +669914,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [187732] = 38, + [182009] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -675421,70 +669935,107 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4100), 1, + ACTIONS(4042), 1, anon_sym_DOT, - ACTIONS(4102), 1, + ACTIONS(4044), 1, anon_sym_DASH_GT, - ACTIONS(5264), 1, + ACTIONS(5257), 1, anon_sym_LPAREN, - ACTIONS(5304), 1, + ACTIONS(5302), 1, anon_sym_BANG, - ACTIONS(5573), 1, + ACTIONS(5549), 1, anon_sym_LBRACK, - ACTIONS(5664), 1, - anon_sym_QMARK, - ACTIONS(6343), 1, + ACTIONS(6355), 1, anon_sym_switch, - ACTIONS(6357), 1, + ACTIONS(6369), 1, anon_sym_with, - ACTIONS(6813), 1, + ACTIONS(6811), 1, anon_sym_as, - ACTIONS(8484), 1, + ACTIONS(7231), 1, + anon_sym_QMARK, + ACTIONS(7237), 1, anon_sym_SLASH, - ACTIONS(8486), 1, + ACTIONS(7239), 1, anon_sym_CARET, - ACTIONS(8488), 1, + ACTIONS(7241), 1, anon_sym_PIPE, - ACTIONS(8490), 1, + ACTIONS(7243), 1, anon_sym_AMP, - ACTIONS(8494), 1, + ACTIONS(7247), 1, anon_sym_GT_GT, - ACTIONS(8500), 1, + ACTIONS(7253), 1, anon_sym_DOT_DOT, - ACTIONS(8502), 1, + ACTIONS(7255), 1, anon_sym_AMP_AMP, - ACTIONS(8508), 1, + ACTIONS(7257), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7259), 1, + anon_sym_QMARK_QMARK, + ACTIONS(7261), 1, anon_sym_is, - STATE(2485), 1, + ACTIONS(8486), 1, + anon_sym_RPAREN, + STATE(2467), 1, sym_bracketed_argument_list, - STATE(3487), 1, + STATE(3381), 1, sym_argument_list, - ACTIONS(5306), 2, + ACTIONS(5304), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(8476), 2, + ACTIONS(7229), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(8480), 2, + ACTIONS(7233), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(8482), 2, + ACTIONS(7235), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8492), 2, + ACTIONS(7245), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(8496), 2, + ACTIONS(7249), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(8498), 2, + ACTIONS(7251), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5660), 3, - anon_sym_EQ_GT, - anon_sym_PIPE_PIPE, - anon_sym_QMARK_QMARK, - STATE(5493), 9, + 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, + [182145] = 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(8480), 1, + anon_sym_and, + ACTIONS(8482), 1, + anon_sym_or, + STATE(5436), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -675494,7 +670045,43 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [187864] = 40, + ACTIONS(6109), 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(6107), 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, + [182231] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -675515,72 +670102,72 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4100), 1, + ACTIONS(4042), 1, anon_sym_DOT, - ACTIONS(4102), 1, + ACTIONS(4044), 1, anon_sym_DASH_GT, - ACTIONS(5264), 1, + ACTIONS(5257), 1, anon_sym_LPAREN, - ACTIONS(5304), 1, + ACTIONS(5302), 1, anon_sym_BANG, - ACTIONS(5573), 1, + ACTIONS(5549), 1, anon_sym_LBRACK, - ACTIONS(5660), 1, - anon_sym_EQ_GT, - ACTIONS(5664), 1, - anon_sym_QMARK, - ACTIONS(6343), 1, + ACTIONS(6355), 1, anon_sym_switch, - ACTIONS(6357), 1, + ACTIONS(6369), 1, anon_sym_with, - ACTIONS(6813), 1, + ACTIONS(6811), 1, anon_sym_as, - ACTIONS(8484), 1, + ACTIONS(7231), 1, + anon_sym_QMARK, + ACTIONS(7237), 1, anon_sym_SLASH, - ACTIONS(8486), 1, + ACTIONS(7239), 1, anon_sym_CARET, - ACTIONS(8488), 1, + ACTIONS(7241), 1, anon_sym_PIPE, - ACTIONS(8490), 1, + ACTIONS(7243), 1, anon_sym_AMP, - ACTIONS(8494), 1, + ACTIONS(7247), 1, anon_sym_GT_GT, - ACTIONS(8500), 1, + ACTIONS(7253), 1, anon_sym_DOT_DOT, - ACTIONS(8502), 1, + ACTIONS(7255), 1, anon_sym_AMP_AMP, - ACTIONS(8504), 1, + ACTIONS(7257), 1, anon_sym_PIPE_PIPE, - ACTIONS(8506), 1, + ACTIONS(7259), 1, anon_sym_QMARK_QMARK, - ACTIONS(8508), 1, + ACTIONS(7261), 1, anon_sym_is, - STATE(2485), 1, + ACTIONS(8488), 1, + anon_sym_RPAREN, + STATE(2467), 1, sym_bracketed_argument_list, - STATE(3487), 1, + STATE(3381), 1, sym_argument_list, - ACTIONS(5306), 2, + ACTIONS(5304), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(8476), 2, + ACTIONS(7229), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(8480), 2, + ACTIONS(7233), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(8482), 2, + ACTIONS(7235), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8492), 2, + ACTIONS(7245), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(8496), 2, + ACTIONS(7249), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(8498), 2, + ACTIONS(7251), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - STATE(5494), 9, + STATE(5437), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -675590,7 +670177,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [188000] = 40, + [182367] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -675611,72 +670198,72 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4100), 1, + ACTIONS(4042), 1, anon_sym_DOT, - ACTIONS(4102), 1, + ACTIONS(4044), 1, anon_sym_DASH_GT, - ACTIONS(5264), 1, + ACTIONS(5257), 1, anon_sym_LPAREN, - ACTIONS(5304), 1, + ACTIONS(5302), 1, anon_sym_BANG, - ACTIONS(5573), 1, + ACTIONS(5549), 1, anon_sym_LBRACK, - ACTIONS(5899), 1, - anon_sym_COLON, - ACTIONS(6343), 1, + ACTIONS(6355), 1, anon_sym_switch, - ACTIONS(6357), 1, + ACTIONS(6369), 1, anon_sym_with, - ACTIONS(7037), 1, - anon_sym_as, - ACTIONS(8234), 1, + ACTIONS(8268), 1, anon_sym_QMARK, - ACTIONS(8236), 1, - anon_sym_DOT_DOT, - ACTIONS(8238), 1, - anon_sym_is, - ACTIONS(8248), 1, + ACTIONS(8274), 1, anon_sym_SLASH, - ACTIONS(8250), 1, + ACTIONS(8276), 1, anon_sym_CARET, - ACTIONS(8252), 1, + ACTIONS(8278), 1, anon_sym_PIPE, - ACTIONS(8254), 1, + ACTIONS(8280), 1, anon_sym_AMP, - ACTIONS(8258), 1, + ACTIONS(8284), 1, anon_sym_GT_GT, - ACTIONS(8264), 1, + ACTIONS(8290), 1, + anon_sym_DOT_DOT, + ACTIONS(8292), 1, anon_sym_AMP_AMP, - ACTIONS(8266), 1, + ACTIONS(8294), 1, anon_sym_PIPE_PIPE, - ACTIONS(8268), 1, + ACTIONS(8296), 1, anon_sym_QMARK_QMARK, - STATE(2485), 1, + ACTIONS(8300), 1, + anon_sym_as, + ACTIONS(8302), 1, + anon_sym_is, + ACTIONS(8490), 1, + anon_sym_by, + STATE(2467), 1, sym_bracketed_argument_list, - STATE(3487), 1, + STATE(3381), 1, sym_argument_list, - ACTIONS(5306), 2, + ACTIONS(5304), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(8242), 2, + ACTIONS(8266), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(8244), 2, + ACTIONS(8270), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(8246), 2, + ACTIONS(8272), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8256), 2, + ACTIONS(8282), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(8260), 2, + ACTIONS(8286), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(8262), 2, + ACTIONS(8288), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - STATE(5495), 9, + STATE(5438), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -675686,7 +670273,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [188136] = 22, + [182503] = 24, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -675707,36 +670294,33 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4100), 1, - anon_sym_DOT, - ACTIONS(4102), 1, - anon_sym_DASH_GT, - ACTIONS(5264), 1, + ACTIONS(25), 1, + sym__identifier_token, + ACTIONS(8310), 1, anon_sym_LPAREN, - ACTIONS(5304), 1, - anon_sym_BANG, - ACTIONS(5573), 1, - anon_sym_LBRACK, - ACTIONS(8236), 1, - anon_sym_DOT_DOT, - STATE(2485), 1, - sym_bracketed_argument_list, - STATE(3487), 1, - sym_argument_list, - ACTIONS(5306), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1223), 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(5496), 9, + ACTIONS(8492), 1, + anon_sym_operator, + ACTIONS(8494), 1, + anon_sym_this, + STATE(2168), 1, + sym__reserved_identifier, + STATE(2170), 1, + sym_generic_name, + STATE(5927), 1, + sym_explicit_interface_specifier, + STATE(6234), 1, + sym_identifier, + STATE(6504), 1, + sym_tuple_pattern, + STATE(6838), 1, + sym_variable_declarator, + STATE(7353), 1, + sym__name, + STATE(4068), 3, + sym_alias_qualified_name, + sym__simple_name, + sym_qualified_name, + STATE(5439), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -675746,25 +670330,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(1221), 17, - 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_switch, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_QMARK_QMARK, - anon_sym_as, - anon_sym_is, - anon_sym_with, - [188236] = 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, + [182607] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -675785,72 +670374,72 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4100), 1, + ACTIONS(4042), 1, anon_sym_DOT, - ACTIONS(4102), 1, + ACTIONS(4044), 1, anon_sym_DASH_GT, - ACTIONS(5072), 1, - anon_sym_EQ_GT, - ACTIONS(5264), 1, + ACTIONS(5257), 1, anon_sym_LPAREN, - ACTIONS(5304), 1, + ACTIONS(5302), 1, anon_sym_BANG, - ACTIONS(5573), 1, + ACTIONS(5549), 1, anon_sym_LBRACK, - ACTIONS(6343), 1, + ACTIONS(6355), 1, anon_sym_switch, - ACTIONS(6357), 1, + ACTIONS(6369), 1, anon_sym_with, - ACTIONS(6813), 1, + ACTIONS(6811), 1, anon_sym_as, - ACTIONS(8478), 1, - anon_sym_QMARK, - ACTIONS(8484), 1, + ACTIONS(6813), 1, + anon_sym_is, + ACTIONS(6985), 1, anon_sym_SLASH, - ACTIONS(8486), 1, + ACTIONS(6989), 1, + anon_sym_GT_GT, + ACTIONS(6991), 1, + anon_sym_DOT_DOT, + ACTIONS(7099), 1, + anon_sym_QMARK, + ACTIONS(7101), 1, anon_sym_CARET, - ACTIONS(8488), 1, + ACTIONS(7103), 1, anon_sym_PIPE, - ACTIONS(8490), 1, + ACTIONS(7105), 1, anon_sym_AMP, - ACTIONS(8494), 1, - anon_sym_GT_GT, - ACTIONS(8500), 1, - anon_sym_DOT_DOT, - ACTIONS(8502), 1, + ACTIONS(7111), 1, anon_sym_AMP_AMP, - ACTIONS(8504), 1, + ACTIONS(7113), 1, anon_sym_PIPE_PIPE, - ACTIONS(8506), 1, + ACTIONS(7115), 1, anon_sym_QMARK_QMARK, - ACTIONS(8508), 1, - anon_sym_is, - STATE(2485), 1, + ACTIONS(8496), 1, + anon_sym_SEMI, + STATE(2467), 1, sym_bracketed_argument_list, - STATE(3487), 1, + STATE(3381), 1, sym_argument_list, - ACTIONS(5306), 2, + ACTIONS(5304), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(8476), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(8480), 2, + ACTIONS(6981), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(8482), 2, + ACTIONS(6983), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8492), 2, + ACTIONS(6987), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(8496), 2, + ACTIONS(7097), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(7107), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(8498), 2, + ACTIONS(7109), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - STATE(5497), 9, + STATE(5440), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -675860,7 +670449,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [188372] = 40, + [182743] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -675881,72 +670470,72 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4100), 1, + ACTIONS(4042), 1, anon_sym_DOT, - ACTIONS(4102), 1, + ACTIONS(4044), 1, anon_sym_DASH_GT, - ACTIONS(5264), 1, + ACTIONS(5257), 1, anon_sym_LPAREN, - ACTIONS(5304), 1, + ACTIONS(5302), 1, anon_sym_BANG, - ACTIONS(5573), 1, + ACTIONS(5549), 1, anon_sym_LBRACK, - ACTIONS(5864), 1, - anon_sym_EQ_GT, - ACTIONS(6343), 1, + ACTIONS(6355), 1, anon_sym_switch, - ACTIONS(6357), 1, + ACTIONS(6369), 1, anon_sym_with, - ACTIONS(6813), 1, + ACTIONS(6811), 1, anon_sym_as, - ACTIONS(8478), 1, - anon_sym_QMARK, - ACTIONS(8484), 1, + ACTIONS(6813), 1, + anon_sym_is, + ACTIONS(6985), 1, anon_sym_SLASH, - ACTIONS(8486), 1, + ACTIONS(6989), 1, + anon_sym_GT_GT, + ACTIONS(6991), 1, + anon_sym_DOT_DOT, + ACTIONS(7099), 1, + anon_sym_QMARK, + ACTIONS(7101), 1, anon_sym_CARET, - ACTIONS(8488), 1, + ACTIONS(7103), 1, anon_sym_PIPE, - ACTIONS(8490), 1, + ACTIONS(7105), 1, anon_sym_AMP, - ACTIONS(8494), 1, - anon_sym_GT_GT, - ACTIONS(8500), 1, - anon_sym_DOT_DOT, - ACTIONS(8502), 1, + ACTIONS(7111), 1, anon_sym_AMP_AMP, - ACTIONS(8504), 1, + ACTIONS(7113), 1, anon_sym_PIPE_PIPE, - ACTIONS(8506), 1, + ACTIONS(7115), 1, anon_sym_QMARK_QMARK, - ACTIONS(8508), 1, - anon_sym_is, - STATE(2485), 1, + ACTIONS(8498), 1, + anon_sym_SEMI, + STATE(2467), 1, sym_bracketed_argument_list, - STATE(3487), 1, + STATE(3381), 1, sym_argument_list, - ACTIONS(5306), 2, + ACTIONS(5304), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(8476), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(8480), 2, + ACTIONS(6981), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(8482), 2, + ACTIONS(6983), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8492), 2, + ACTIONS(6987), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(8496), 2, + ACTIONS(7097), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(7107), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(8498), 2, + ACTIONS(7109), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - STATE(5498), 9, + STATE(5441), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -675956,7 +670545,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [188508] = 40, + [182879] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -675977,72 +670566,72 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4100), 1, + ACTIONS(4042), 1, anon_sym_DOT, - ACTIONS(4102), 1, + ACTIONS(4044), 1, anon_sym_DASH_GT, - ACTIONS(5264), 1, + ACTIONS(4996), 1, + anon_sym_EQ_GT, + ACTIONS(5257), 1, anon_sym_LPAREN, - ACTIONS(5304), 1, + ACTIONS(5302), 1, anon_sym_BANG, - ACTIONS(5573), 1, + ACTIONS(5549), 1, anon_sym_LBRACK, - ACTIONS(6343), 1, + ACTIONS(6355), 1, anon_sym_switch, - ACTIONS(6357), 1, + ACTIONS(6369), 1, anon_sym_with, - ACTIONS(7037), 1, + ACTIONS(6811), 1, anon_sym_as, - ACTIONS(8234), 1, - anon_sym_QMARK, - ACTIONS(8236), 1, + ACTIONS(8130), 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(8238), 1, + ACTIONS(8144), 1, anon_sym_is, - ACTIONS(8248), 1, - anon_sym_SLASH, - ACTIONS(8250), 1, + ACTIONS(8332), 1, + anon_sym_QMARK, + ACTIONS(8334), 1, anon_sym_CARET, - ACTIONS(8252), 1, + ACTIONS(8336), 1, anon_sym_PIPE, - ACTIONS(8254), 1, - anon_sym_AMP, - ACTIONS(8258), 1, - anon_sym_GT_GT, - ACTIONS(8264), 1, + ACTIONS(8338), 1, anon_sym_AMP_AMP, - ACTIONS(8266), 1, + ACTIONS(8340), 1, anon_sym_PIPE_PIPE, - ACTIONS(8268), 1, + ACTIONS(8342), 1, anon_sym_QMARK_QMARK, - ACTIONS(8539), 1, - anon_sym_COLON, - STATE(2485), 1, + STATE(2467), 1, sym_bracketed_argument_list, - STATE(3487), 1, + STATE(3381), 1, sym_argument_list, - ACTIONS(5306), 2, + ACTIONS(5304), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(8242), 2, + ACTIONS(8124), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(8244), 2, + ACTIONS(8126), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(8246), 2, + ACTIONS(8128), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8256), 2, + ACTIONS(8134), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(8260), 2, + ACTIONS(8138), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(8262), 2, + ACTIONS(8140), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - STATE(5499), 9, + STATE(5442), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -676052,7 +670641,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [188644] = 15, + [183015] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -676073,57 +670662,82 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8350), 1, - anon_sym_and, - ACTIONS(8541), 1, - anon_sym_or, - STATE(5500), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - ACTIONS(5356), 11, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, + ACTIONS(4042), 1, + anon_sym_DOT, + ACTIONS(4044), 1, + anon_sym_DASH_GT, + ACTIONS(5257), 1, + anon_sym_LPAREN, + ACTIONS(5302), 1, anon_sym_BANG, - anon_sym_PLUS, - anon_sym_DASH, + ACTIONS(5549), 1, + anon_sym_LBRACK, + ACTIONS(6355), 1, + anon_sym_switch, + ACTIONS(6369), 1, + anon_sym_with, + ACTIONS(6811), 1, + anon_sym_as, + ACTIONS(6813), 1, + anon_sym_is, + ACTIONS(6985), 1, anon_sym_SLASH, + ACTIONS(6989), 1, + anon_sym_GT_GT, + ACTIONS(6991), 1, + anon_sym_DOT_DOT, + ACTIONS(7099), 1, + anon_sym_QMARK, + ACTIONS(7101), 1, + anon_sym_CARET, + ACTIONS(7103), 1, anon_sym_PIPE, + ACTIONS(7105), 1, anon_sym_AMP, - anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(5354), 23, - anon_sym_LBRACK, - anon_sym_LPAREN, + ACTIONS(7111), 1, + anon_sym_AMP_AMP, + ACTIONS(7113), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7115), 1, + anon_sym_QMARK_QMARK, + ACTIONS(8500), 1, + anon_sym_SEMI, + STATE(2467), 1, + sym_bracketed_argument_list, + STATE(3381), 1, + sym_argument_list, + ACTIONS(5304), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + ACTIONS(6981), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6983), 2, anon_sym_STAR, anon_sym_PERCENT, - anon_sym_CARET, + ACTIONS(6987), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, + ACTIONS(7097), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(7107), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + ACTIONS(7109), 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_by, - anon_sym_as, - anon_sym_is, - anon_sym_DASH_GT, - anon_sym_with, - [188730] = 40, + STATE(5443), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + [183151] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -676144,72 +670758,72 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4100), 1, + ACTIONS(4042), 1, anon_sym_DOT, - ACTIONS(4102), 1, + ACTIONS(4044), 1, anon_sym_DASH_GT, - ACTIONS(5264), 1, + ACTIONS(5257), 1, anon_sym_LPAREN, - ACTIONS(5304), 1, + ACTIONS(5302), 1, anon_sym_BANG, - ACTIONS(5573), 1, + ACTIONS(5549), 1, anon_sym_LBRACK, - ACTIONS(6343), 1, + ACTIONS(6355), 1, anon_sym_switch, - ACTIONS(6357), 1, + ACTIONS(6369), 1, anon_sym_with, - ACTIONS(8150), 1, + ACTIONS(6781), 1, anon_sym_QMARK, - ACTIONS(8156), 1, + ACTIONS(6787), 1, anon_sym_SLASH, - ACTIONS(8158), 1, + ACTIONS(6789), 1, anon_sym_CARET, - ACTIONS(8160), 1, + ACTIONS(6791), 1, anon_sym_PIPE, - ACTIONS(8162), 1, + ACTIONS(6793), 1, anon_sym_AMP, - ACTIONS(8166), 1, + ACTIONS(6797), 1, anon_sym_GT_GT, - ACTIONS(8172), 1, + ACTIONS(6803), 1, anon_sym_DOT_DOT, - ACTIONS(8174), 1, + ACTIONS(6805), 1, anon_sym_AMP_AMP, - ACTIONS(8176), 1, + ACTIONS(6807), 1, anon_sym_PIPE_PIPE, - ACTIONS(8178), 1, + ACTIONS(6809), 1, anon_sym_QMARK_QMARK, - ACTIONS(8182), 1, + ACTIONS(6811), 1, anon_sym_as, - ACTIONS(8184), 1, + ACTIONS(6813), 1, anon_sym_is, - ACTIONS(8543), 1, - anon_sym_by, - STATE(2485), 1, + ACTIONS(8502), 1, + aux_sym_preproc_if_token3, + STATE(2467), 1, sym_bracketed_argument_list, - STATE(3487), 1, + STATE(3381), 1, sym_argument_list, - ACTIONS(5306), 2, + ACTIONS(5304), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(8148), 2, + ACTIONS(6779), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(8152), 2, + ACTIONS(6783), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(8154), 2, + ACTIONS(6785), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8164), 2, + ACTIONS(6795), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(8168), 2, + ACTIONS(6799), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(8170), 2, + ACTIONS(6801), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - STATE(5501), 9, + STATE(5444), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -676219,7 +670833,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [188866] = 40, + [183287] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -676240,72 +670854,72 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4100), 1, + ACTIONS(4042), 1, anon_sym_DOT, - ACTIONS(4102), 1, + ACTIONS(4044), 1, anon_sym_DASH_GT, - ACTIONS(5264), 1, + ACTIONS(5257), 1, anon_sym_LPAREN, - ACTIONS(5304), 1, + ACTIONS(5302), 1, anon_sym_BANG, - ACTIONS(5573), 1, + ACTIONS(5549), 1, anon_sym_LBRACK, - ACTIONS(5882), 1, + ACTIONS(5652), 1, anon_sym_EQ_GT, - ACTIONS(6343), 1, + ACTIONS(6355), 1, anon_sym_switch, - ACTIONS(6357), 1, + ACTIONS(6369), 1, anon_sym_with, - ACTIONS(6813), 1, + ACTIONS(6811), 1, anon_sym_as, - ACTIONS(8478), 1, - anon_sym_QMARK, - ACTIONS(8484), 1, + ACTIONS(8130), 1, anon_sym_SLASH, - ACTIONS(8486), 1, - anon_sym_CARET, - ACTIONS(8488), 1, - anon_sym_PIPE, - ACTIONS(8490), 1, + ACTIONS(8132), 1, anon_sym_AMP, - ACTIONS(8494), 1, + ACTIONS(8136), 1, anon_sym_GT_GT, - ACTIONS(8500), 1, + ACTIONS(8142), 1, anon_sym_DOT_DOT, - ACTIONS(8502), 1, + ACTIONS(8144), 1, + anon_sym_is, + ACTIONS(8332), 1, + anon_sym_QMARK, + ACTIONS(8334), 1, + anon_sym_CARET, + ACTIONS(8336), 1, + anon_sym_PIPE, + ACTIONS(8338), 1, anon_sym_AMP_AMP, - ACTIONS(8504), 1, + ACTIONS(8340), 1, anon_sym_PIPE_PIPE, - ACTIONS(8506), 1, + ACTIONS(8342), 1, anon_sym_QMARK_QMARK, - ACTIONS(8508), 1, - anon_sym_is, - STATE(2485), 1, + STATE(2467), 1, sym_bracketed_argument_list, - STATE(3487), 1, + STATE(3381), 1, sym_argument_list, - ACTIONS(5306), 2, + ACTIONS(5304), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(8476), 2, + ACTIONS(8124), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(8480), 2, + ACTIONS(8126), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(8482), 2, + ACTIONS(8128), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8492), 2, + ACTIONS(8134), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(8496), 2, + ACTIONS(8138), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(8498), 2, + ACTIONS(8140), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - STATE(5502), 9, + STATE(5445), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -676315,7 +670929,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [189002] = 40, + [183423] = 35, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -676336,72 +670950,67 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4100), 1, + ACTIONS(4042), 1, anon_sym_DOT, - ACTIONS(4102), 1, + ACTIONS(4044), 1, anon_sym_DASH_GT, - ACTIONS(5264), 1, + ACTIONS(5257), 1, anon_sym_LPAREN, - ACTIONS(5304), 1, + ACTIONS(5302), 1, anon_sym_BANG, - ACTIONS(5573), 1, + ACTIONS(5549), 1, anon_sym_LBRACK, - ACTIONS(6343), 1, + ACTIONS(6355), 1, anon_sym_switch, - ACTIONS(6357), 1, + ACTIONS(6369), 1, anon_sym_with, - ACTIONS(6813), 1, - anon_sym_as, - ACTIONS(6815), 1, - anon_sym_is, - ACTIONS(7183), 1, - anon_sym_SLASH, - ACTIONS(7187), 1, - anon_sym_GT_GT, - ACTIONS(7189), 1, + ACTIONS(8188), 1, anon_sym_DOT_DOT, - ACTIONS(7195), 1, + ACTIONS(8436), 1, + anon_sym_SLASH, + ACTIONS(8442), 1, anon_sym_AMP, - ACTIONS(7201), 1, - anon_sym_CARET, - ACTIONS(7203), 1, - anon_sym_PIPE, - ACTIONS(7205), 1, - anon_sym_AMP_AMP, - ACTIONS(7207), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7209), 1, - anon_sym_QMARK_QMARK, - ACTIONS(7237), 1, - anon_sym_QMARK, - ACTIONS(8545), 1, - anon_sym_SEMI, - STATE(2485), 1, + ACTIONS(8446), 1, + anon_sym_GT_GT, + ACTIONS(8460), 1, + anon_sym_as, + ACTIONS(8462), 1, + anon_sym_is, + STATE(2467), 1, sym_bracketed_argument_list, - STATE(3487), 1, + STATE(3381), 1, sym_argument_list, - ACTIONS(5306), 2, + ACTIONS(5304), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7179), 2, + ACTIONS(5739), 2, + anon_sym_QMARK, + anon_sym_PIPE, + ACTIONS(8428), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(8432), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7181), 2, + ACTIONS(8434), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7185), 2, + ACTIONS(8444), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7193), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(7197), 2, + ACTIONS(8448), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7199), 2, + ACTIONS(8450), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - STATE(5503), 9, + ACTIONS(5737), 5, + anon_sym_CARET, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, + anon_sym_on, + STATE(5446), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -676411,7 +671020,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [189138] = 40, + [183549] = 36, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -676432,72 +671041,68 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4100), 1, + ACTIONS(4042), 1, anon_sym_DOT, - ACTIONS(4102), 1, + ACTIONS(4044), 1, anon_sym_DASH_GT, - ACTIONS(5072), 1, - anon_sym_by, - ACTIONS(5264), 1, + ACTIONS(5257), 1, anon_sym_LPAREN, - ACTIONS(5304), 1, + ACTIONS(5302), 1, anon_sym_BANG, - ACTIONS(5573), 1, + ACTIONS(5549), 1, anon_sym_LBRACK, - ACTIONS(6343), 1, + ACTIONS(6355), 1, anon_sym_switch, - ACTIONS(6357), 1, + ACTIONS(6369), 1, anon_sym_with, - ACTIONS(8150), 1, - anon_sym_QMARK, - ACTIONS(8156), 1, + ACTIONS(8188), 1, + anon_sym_DOT_DOT, + ACTIONS(8436), 1, anon_sym_SLASH, - ACTIONS(8158), 1, + ACTIONS(8438), 1, anon_sym_CARET, - ACTIONS(8160), 1, - anon_sym_PIPE, - ACTIONS(8162), 1, + ACTIONS(8442), 1, anon_sym_AMP, - ACTIONS(8166), 1, + ACTIONS(8446), 1, anon_sym_GT_GT, - ACTIONS(8172), 1, - anon_sym_DOT_DOT, - ACTIONS(8174), 1, - anon_sym_AMP_AMP, - ACTIONS(8176), 1, - anon_sym_PIPE_PIPE, - ACTIONS(8178), 1, - anon_sym_QMARK_QMARK, - ACTIONS(8182), 1, + ACTIONS(8460), 1, anon_sym_as, - ACTIONS(8184), 1, + ACTIONS(8462), 1, anon_sym_is, - STATE(2485), 1, + STATE(2467), 1, sym_bracketed_argument_list, - STATE(3487), 1, + STATE(3381), 1, sym_argument_list, - ACTIONS(5306), 2, + ACTIONS(5304), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(8148), 2, + ACTIONS(5739), 2, + anon_sym_QMARK, + anon_sym_PIPE, + ACTIONS(8428), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(8152), 2, + ACTIONS(8432), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(8154), 2, + ACTIONS(8434), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8164), 2, + ACTIONS(8444), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(8168), 2, + ACTIONS(8448), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(8170), 2, + ACTIONS(8450), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - STATE(5504), 9, + ACTIONS(5737), 4, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, + anon_sym_on, + STATE(5447), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -676507,7 +671112,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [189274] = 40, + [183677] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -676528,72 +671133,72 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4100), 1, + ACTIONS(4042), 1, anon_sym_DOT, - ACTIONS(4102), 1, + ACTIONS(4044), 1, anon_sym_DASH_GT, - ACTIONS(5264), 1, + ACTIONS(5257), 1, anon_sym_LPAREN, - ACTIONS(5304), 1, + ACTIONS(5302), 1, anon_sym_BANG, - ACTIONS(5573), 1, + ACTIONS(5549), 1, anon_sym_LBRACK, - ACTIONS(6343), 1, + ACTIONS(6355), 1, anon_sym_switch, - ACTIONS(6357), 1, + ACTIONS(6369), 1, anon_sym_with, - ACTIONS(6813), 1, + ACTIONS(6811), 1, anon_sym_as, - ACTIONS(7139), 1, - anon_sym_QMARK, - ACTIONS(7145), 1, + ACTIONS(6813), 1, + anon_sym_is, + ACTIONS(6985), 1, anon_sym_SLASH, - ACTIONS(7147), 1, + ACTIONS(6989), 1, + anon_sym_GT_GT, + ACTIONS(6991), 1, + anon_sym_DOT_DOT, + ACTIONS(7099), 1, + anon_sym_QMARK, + ACTIONS(7101), 1, anon_sym_CARET, - ACTIONS(7149), 1, + ACTIONS(7103), 1, anon_sym_PIPE, - ACTIONS(7151), 1, + ACTIONS(7105), 1, anon_sym_AMP, - ACTIONS(7155), 1, - anon_sym_GT_GT, - ACTIONS(7161), 1, - anon_sym_DOT_DOT, - ACTIONS(7163), 1, + ACTIONS(7111), 1, anon_sym_AMP_AMP, - ACTIONS(7165), 1, + ACTIONS(7113), 1, anon_sym_PIPE_PIPE, - ACTIONS(7167), 1, + ACTIONS(7115), 1, anon_sym_QMARK_QMARK, - ACTIONS(7169), 1, - anon_sym_is, - ACTIONS(8547), 1, - anon_sym_RPAREN, - STATE(2485), 1, + ACTIONS(8504), 1, + anon_sym_SEMI, + STATE(2467), 1, sym_bracketed_argument_list, - STATE(3487), 1, + STATE(3381), 1, sym_argument_list, - ACTIONS(5306), 2, + ACTIONS(5304), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7137), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(7141), 2, + ACTIONS(6981), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7143), 2, + ACTIONS(6983), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7153), 2, + ACTIONS(6987), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7157), 2, + ACTIONS(7097), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(7107), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7159), 2, + ACTIONS(7109), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - STATE(5505), 9, + STATE(5448), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -676603,7 +671208,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [189410] = 15, + [183813] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -676624,57 +671229,82 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8350), 1, - anon_sym_and, - ACTIONS(8541), 1, - anon_sym_or, - STATE(5506), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - ACTIONS(6207), 11, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, + ACTIONS(4042), 1, + anon_sym_DOT, + ACTIONS(4044), 1, + anon_sym_DASH_GT, + ACTIONS(5257), 1, + anon_sym_LPAREN, + ACTIONS(5302), 1, anon_sym_BANG, - anon_sym_PLUS, - anon_sym_DASH, + ACTIONS(5549), 1, + anon_sym_LBRACK, + ACTIONS(6355), 1, + anon_sym_switch, + ACTIONS(6369), 1, + anon_sym_with, + ACTIONS(7195), 1, + anon_sym_as, + ACTIONS(8152), 1, + anon_sym_QMARK, + ACTIONS(8158), 1, anon_sym_SLASH, + ACTIONS(8160), 1, + anon_sym_CARET, + ACTIONS(8162), 1, anon_sym_PIPE, + ACTIONS(8164), 1, anon_sym_AMP, + ACTIONS(8168), 1, anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(6205), 23, - anon_sym_LBRACK, - anon_sym_LPAREN, + ACTIONS(8174), 1, + anon_sym_DOT_DOT, + ACTIONS(8176), 1, + anon_sym_AMP_AMP, + ACTIONS(8178), 1, + anon_sym_PIPE_PIPE, + ACTIONS(8180), 1, + anon_sym_QMARK_QMARK, + ACTIONS(8182), 1, + anon_sym_is, + ACTIONS(8506), 1, + anon_sym_COLON, + STATE(2467), 1, + sym_bracketed_argument_list, + STATE(3381), 1, + sym_argument_list, + ACTIONS(5304), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + ACTIONS(8150), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(8154), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(8156), 2, anon_sym_STAR, anon_sym_PERCENT, - anon_sym_CARET, + ACTIONS(8166), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, + ACTIONS(8170), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + ACTIONS(8172), 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_by, - anon_sym_as, - anon_sym_is, - anon_sym_DASH_GT, - anon_sym_with, - [189496] = 40, + STATE(5449), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + [183949] = 34, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -676695,72 +671325,66 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4100), 1, + ACTIONS(4042), 1, anon_sym_DOT, - ACTIONS(4102), 1, + ACTIONS(4044), 1, anon_sym_DASH_GT, - ACTIONS(5264), 1, + ACTIONS(5257), 1, anon_sym_LPAREN, - ACTIONS(5304), 1, + ACTIONS(5302), 1, anon_sym_BANG, - ACTIONS(5573), 1, + ACTIONS(5549), 1, anon_sym_LBRACK, - ACTIONS(6343), 1, + ACTIONS(6355), 1, anon_sym_switch, - ACTIONS(6357), 1, + ACTIONS(6369), 1, anon_sym_with, - ACTIONS(6813), 1, - anon_sym_as, - ACTIONS(7139), 1, - anon_sym_QMARK, - ACTIONS(7145), 1, + ACTIONS(8188), 1, + anon_sym_DOT_DOT, + ACTIONS(8436), 1, anon_sym_SLASH, - ACTIONS(7147), 1, - anon_sym_CARET, - ACTIONS(7149), 1, - anon_sym_PIPE, - ACTIONS(7151), 1, - anon_sym_AMP, - ACTIONS(7155), 1, + ACTIONS(8446), 1, anon_sym_GT_GT, - ACTIONS(7161), 1, - anon_sym_DOT_DOT, - ACTIONS(7163), 1, - anon_sym_AMP_AMP, - ACTIONS(7165), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7167), 1, - anon_sym_QMARK_QMARK, - ACTIONS(7169), 1, + ACTIONS(8460), 1, + anon_sym_as, + ACTIONS(8462), 1, anon_sym_is, - ACTIONS(8549), 1, - anon_sym_RPAREN, - STATE(2485), 1, + STATE(2467), 1, sym_bracketed_argument_list, - STATE(3487), 1, + STATE(3381), 1, sym_argument_list, - ACTIONS(5306), 2, + ACTIONS(5304), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7137), 2, + ACTIONS(8428), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7141), 2, + ACTIONS(8432), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7143), 2, + ACTIONS(8434), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7153), 2, + ACTIONS(8444), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7157), 2, + ACTIONS(8448), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7159), 2, + ACTIONS(8450), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - STATE(5507), 9, + ACTIONS(5739), 3, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_AMP, + ACTIONS(5737), 5, + anon_sym_CARET, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, + anon_sym_on, + STATE(5450), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -676770,7 +671394,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [189632] = 40, + [184073] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -676791,72 +671415,72 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4100), 1, + ACTIONS(4042), 1, anon_sym_DOT, - ACTIONS(4102), 1, + ACTIONS(4044), 1, anon_sym_DASH_GT, - ACTIONS(5264), 1, + ACTIONS(5257), 1, anon_sym_LPAREN, - ACTIONS(5304), 1, + ACTIONS(5302), 1, anon_sym_BANG, - ACTIONS(5573), 1, + ACTIONS(5549), 1, anon_sym_LBRACK, - ACTIONS(6343), 1, + ACTIONS(6355), 1, anon_sym_switch, - ACTIONS(6357), 1, + ACTIONS(6369), 1, anon_sym_with, - ACTIONS(6813), 1, + ACTIONS(6811), 1, anon_sym_as, - ACTIONS(7139), 1, + ACTIONS(7231), 1, anon_sym_QMARK, - ACTIONS(7145), 1, + ACTIONS(7237), 1, anon_sym_SLASH, - ACTIONS(7147), 1, + ACTIONS(7239), 1, anon_sym_CARET, - ACTIONS(7149), 1, + ACTIONS(7241), 1, anon_sym_PIPE, - ACTIONS(7151), 1, + ACTIONS(7243), 1, anon_sym_AMP, - ACTIONS(7155), 1, + ACTIONS(7247), 1, anon_sym_GT_GT, - ACTIONS(7161), 1, + ACTIONS(7253), 1, anon_sym_DOT_DOT, - ACTIONS(7163), 1, + ACTIONS(7255), 1, anon_sym_AMP_AMP, - ACTIONS(7165), 1, + ACTIONS(7257), 1, anon_sym_PIPE_PIPE, - ACTIONS(7167), 1, + ACTIONS(7259), 1, anon_sym_QMARK_QMARK, - ACTIONS(7169), 1, + ACTIONS(7261), 1, anon_sym_is, - ACTIONS(8551), 1, + ACTIONS(8508), 1, anon_sym_RPAREN, - STATE(2485), 1, + STATE(2467), 1, sym_bracketed_argument_list, - STATE(3487), 1, + STATE(3381), 1, sym_argument_list, - ACTIONS(5306), 2, + ACTIONS(5304), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7137), 2, + ACTIONS(7229), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7141), 2, + ACTIONS(7233), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7143), 2, + ACTIONS(7235), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7153), 2, + ACTIONS(7245), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7157), 2, + ACTIONS(7249), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7159), 2, + ACTIONS(7251), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - STATE(5508), 9, + STATE(5451), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -676866,7 +671490,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [189768] = 40, + [184209] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -676887,72 +671511,72 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4100), 1, + ACTIONS(2125), 1, + anon_sym_SEMI, + ACTIONS(4042), 1, anon_sym_DOT, - ACTIONS(4102), 1, + ACTIONS(4044), 1, anon_sym_DASH_GT, - ACTIONS(5264), 1, + ACTIONS(5257), 1, anon_sym_LPAREN, - ACTIONS(5304), 1, + ACTIONS(5302), 1, anon_sym_BANG, - ACTIONS(5573), 1, + ACTIONS(5549), 1, anon_sym_LBRACK, - ACTIONS(6343), 1, + ACTIONS(6355), 1, anon_sym_switch, - ACTIONS(6357), 1, + ACTIONS(6369), 1, anon_sym_with, - ACTIONS(6813), 1, + ACTIONS(6811), 1, anon_sym_as, - ACTIONS(6815), 1, + ACTIONS(6813), 1, anon_sym_is, - ACTIONS(7183), 1, + ACTIONS(6985), 1, anon_sym_SLASH, - ACTIONS(7187), 1, + ACTIONS(6989), 1, anon_sym_GT_GT, - ACTIONS(7189), 1, + ACTIONS(6991), 1, anon_sym_DOT_DOT, - ACTIONS(7195), 1, - anon_sym_AMP, - ACTIONS(7201), 1, + ACTIONS(7099), 1, + anon_sym_QMARK, + ACTIONS(7101), 1, anon_sym_CARET, - ACTIONS(7203), 1, + ACTIONS(7103), 1, anon_sym_PIPE, - ACTIONS(7205), 1, + ACTIONS(7105), 1, + anon_sym_AMP, + ACTIONS(7111), 1, anon_sym_AMP_AMP, - ACTIONS(7207), 1, + ACTIONS(7113), 1, anon_sym_PIPE_PIPE, - ACTIONS(7209), 1, + ACTIONS(7115), 1, anon_sym_QMARK_QMARK, - ACTIONS(7237), 1, - anon_sym_QMARK, - ACTIONS(8553), 1, - anon_sym_SEMI, - STATE(2485), 1, + STATE(2467), 1, sym_bracketed_argument_list, - STATE(3487), 1, + STATE(3381), 1, sym_argument_list, - ACTIONS(5306), 2, + ACTIONS(5304), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7179), 2, + ACTIONS(6981), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7181), 2, + ACTIONS(6983), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7185), 2, + ACTIONS(6987), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7193), 2, + ACTIONS(7097), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7197), 2, + ACTIONS(7107), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7199), 2, + ACTIONS(7109), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - STATE(5509), 9, + STATE(5452), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -676962,7 +671586,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [189904] = 40, + [184345] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -676983,107 +671607,72 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4100), 1, + ACTIONS(4042), 1, anon_sym_DOT, - ACTIONS(4102), 1, + ACTIONS(4044), 1, anon_sym_DASH_GT, - ACTIONS(5264), 1, + ACTIONS(5257), 1, anon_sym_LPAREN, - ACTIONS(5304), 1, + ACTIONS(5302), 1, anon_sym_BANG, - ACTIONS(5573), 1, + ACTIONS(5549), 1, anon_sym_LBRACK, - ACTIONS(6343), 1, + ACTIONS(6355), 1, anon_sym_switch, - ACTIONS(6357), 1, + ACTIONS(6369), 1, anon_sym_with, - ACTIONS(6813), 1, + ACTIONS(6811), 1, anon_sym_as, - ACTIONS(7139), 1, + ACTIONS(7231), 1, anon_sym_QMARK, - ACTIONS(7145), 1, + ACTIONS(7237), 1, anon_sym_SLASH, - ACTIONS(7147), 1, + ACTIONS(7239), 1, anon_sym_CARET, - ACTIONS(7149), 1, + ACTIONS(7241), 1, anon_sym_PIPE, - ACTIONS(7151), 1, + ACTIONS(7243), 1, anon_sym_AMP, - ACTIONS(7155), 1, + ACTIONS(7247), 1, anon_sym_GT_GT, - ACTIONS(7161), 1, + ACTIONS(7253), 1, anon_sym_DOT_DOT, - ACTIONS(7163), 1, + ACTIONS(7255), 1, anon_sym_AMP_AMP, - ACTIONS(7165), 1, + ACTIONS(7257), 1, anon_sym_PIPE_PIPE, - ACTIONS(7167), 1, + ACTIONS(7259), 1, anon_sym_QMARK_QMARK, - ACTIONS(7169), 1, + ACTIONS(7261), 1, anon_sym_is, - ACTIONS(8555), 1, + ACTIONS(8510), 1, anon_sym_RPAREN, - STATE(2485), 1, + STATE(2467), 1, sym_bracketed_argument_list, - STATE(3487), 1, + STATE(3381), 1, sym_argument_list, - ACTIONS(5306), 2, + ACTIONS(5304), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7137), 2, + ACTIONS(7229), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7141), 2, + ACTIONS(7233), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7143), 2, + ACTIONS(7235), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7153), 2, + ACTIONS(7245), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7157), 2, + ACTIONS(7249), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7159), 2, + ACTIONS(7251), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - STATE(5510), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - [190040] = 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(8444), 1, - anon_sym_and, - ACTIONS(8446), 1, - anon_sym_or, - STATE(5511), 9, + STATE(5453), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -677093,43 +671682,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(6207), 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(6205), 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_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, - [190126] = 40, + [184481] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -677150,72 +671703,72 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4100), 1, + ACTIONS(4042), 1, anon_sym_DOT, - ACTIONS(4102), 1, + ACTIONS(4044), 1, anon_sym_DASH_GT, - ACTIONS(5264), 1, + ACTIONS(5257), 1, anon_sym_LPAREN, - ACTIONS(5304), 1, + ACTIONS(5302), 1, anon_sym_BANG, - ACTIONS(5573), 1, + ACTIONS(5549), 1, anon_sym_LBRACK, - ACTIONS(5882), 1, - anon_sym_by, - ACTIONS(6343), 1, + ACTIONS(6355), 1, anon_sym_switch, - ACTIONS(6357), 1, + ACTIONS(6369), 1, anon_sym_with, - ACTIONS(8150), 1, + ACTIONS(6811), 1, + anon_sym_as, + ACTIONS(7231), 1, anon_sym_QMARK, - ACTIONS(8156), 1, + ACTIONS(7237), 1, anon_sym_SLASH, - ACTIONS(8158), 1, + ACTIONS(7239), 1, anon_sym_CARET, - ACTIONS(8160), 1, + ACTIONS(7241), 1, anon_sym_PIPE, - ACTIONS(8162), 1, + ACTIONS(7243), 1, anon_sym_AMP, - ACTIONS(8166), 1, + ACTIONS(7247), 1, anon_sym_GT_GT, - ACTIONS(8172), 1, + ACTIONS(7253), 1, anon_sym_DOT_DOT, - ACTIONS(8174), 1, + ACTIONS(7255), 1, anon_sym_AMP_AMP, - ACTIONS(8176), 1, + ACTIONS(7257), 1, anon_sym_PIPE_PIPE, - ACTIONS(8178), 1, + ACTIONS(7259), 1, anon_sym_QMARK_QMARK, - ACTIONS(8182), 1, - anon_sym_as, - ACTIONS(8184), 1, + ACTIONS(7261), 1, anon_sym_is, - STATE(2485), 1, + ACTIONS(8512), 1, + anon_sym_RPAREN, + STATE(2467), 1, sym_bracketed_argument_list, - STATE(3487), 1, + STATE(3381), 1, sym_argument_list, - ACTIONS(5306), 2, + ACTIONS(5304), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(8148), 2, + ACTIONS(7229), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(8152), 2, + ACTIONS(7233), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(8154), 2, + ACTIONS(7235), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8164), 2, + ACTIONS(7245), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(8168), 2, + ACTIONS(7249), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(8170), 2, + ACTIONS(7251), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - STATE(5512), 9, + STATE(5454), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -677225,7 +671778,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [190262] = 40, + [184617] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -677246,72 +671799,72 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4100), 1, + ACTIONS(4042), 1, anon_sym_DOT, - ACTIONS(4102), 1, + ACTIONS(4044), 1, anon_sym_DASH_GT, - ACTIONS(5264), 1, + ACTIONS(5257), 1, anon_sym_LPAREN, - ACTIONS(5304), 1, + ACTIONS(5302), 1, anon_sym_BANG, - ACTIONS(5573), 1, + ACTIONS(5549), 1, anon_sym_LBRACK, - ACTIONS(6343), 1, + ACTIONS(6355), 1, anon_sym_switch, - ACTIONS(6357), 1, + ACTIONS(6369), 1, anon_sym_with, - ACTIONS(6813), 1, + ACTIONS(6811), 1, anon_sym_as, - ACTIONS(6815), 1, - anon_sym_is, - ACTIONS(7183), 1, + ACTIONS(8236), 1, anon_sym_SLASH, - ACTIONS(7187), 1, + ACTIONS(8238), 1, + anon_sym_AMP, + ACTIONS(8242), 1, anon_sym_GT_GT, - ACTIONS(7189), 1, + ACTIONS(8248), 1, anon_sym_DOT_DOT, - ACTIONS(7195), 1, - anon_sym_AMP, - ACTIONS(7201), 1, + ACTIONS(8250), 1, + anon_sym_is, + ACTIONS(8252), 1, anon_sym_CARET, - ACTIONS(7203), 1, + ACTIONS(8254), 1, anon_sym_PIPE, - ACTIONS(7205), 1, + ACTIONS(8256), 1, anon_sym_AMP_AMP, - ACTIONS(7207), 1, + ACTIONS(8258), 1, anon_sym_PIPE_PIPE, - ACTIONS(7209), 1, + ACTIONS(8260), 1, anon_sym_QMARK_QMARK, - ACTIONS(7237), 1, + ACTIONS(8304), 1, anon_sym_QMARK, - ACTIONS(8557), 1, - anon_sym_SEMI, - STATE(2485), 1, + ACTIONS(8514), 1, + anon_sym_in, + STATE(2467), 1, sym_bracketed_argument_list, - STATE(3487), 1, + STATE(3381), 1, sym_argument_list, - ACTIONS(5306), 2, + ACTIONS(5304), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7179), 2, + ACTIONS(8230), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(8232), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7181), 2, + ACTIONS(8234), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7185), 2, + ACTIONS(8240), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7193), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(7197), 2, + ACTIONS(8244), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7199), 2, + ACTIONS(8246), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - STATE(5513), 9, + STATE(5455), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -677321,7 +671874,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [190398] = 40, + [184753] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -677342,72 +671895,72 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4100), 1, + ACTIONS(4042), 1, anon_sym_DOT, - ACTIONS(4102), 1, + ACTIONS(4044), 1, anon_sym_DASH_GT, - ACTIONS(5264), 1, + ACTIONS(5257), 1, anon_sym_LPAREN, - ACTIONS(5304), 1, + ACTIONS(5302), 1, anon_sym_BANG, - ACTIONS(5573), 1, + ACTIONS(5549), 1, anon_sym_LBRACK, - ACTIONS(5899), 1, - anon_sym_by, - ACTIONS(6343), 1, + ACTIONS(6355), 1, anon_sym_switch, - ACTIONS(6357), 1, + ACTIONS(6369), 1, anon_sym_with, - ACTIONS(8150), 1, - anon_sym_QMARK, - ACTIONS(8156), 1, + ACTIONS(6811), 1, + anon_sym_as, + ACTIONS(6813), 1, + anon_sym_is, + ACTIONS(6985), 1, anon_sym_SLASH, - ACTIONS(8158), 1, + ACTIONS(6989), 1, + anon_sym_GT_GT, + ACTIONS(6991), 1, + anon_sym_DOT_DOT, + ACTIONS(7099), 1, + anon_sym_QMARK, + ACTIONS(7101), 1, anon_sym_CARET, - ACTIONS(8160), 1, + ACTIONS(7103), 1, anon_sym_PIPE, - ACTIONS(8162), 1, + ACTIONS(7105), 1, anon_sym_AMP, - ACTIONS(8166), 1, - anon_sym_GT_GT, - ACTIONS(8172), 1, - anon_sym_DOT_DOT, - ACTIONS(8174), 1, + ACTIONS(7111), 1, anon_sym_AMP_AMP, - ACTIONS(8176), 1, + ACTIONS(7113), 1, anon_sym_PIPE_PIPE, - ACTIONS(8178), 1, + ACTIONS(7115), 1, anon_sym_QMARK_QMARK, - ACTIONS(8182), 1, - anon_sym_as, - ACTIONS(8184), 1, - anon_sym_is, - STATE(2485), 1, + ACTIONS(8516), 1, + anon_sym_SEMI, + STATE(2467), 1, sym_bracketed_argument_list, - STATE(3487), 1, + STATE(3381), 1, sym_argument_list, - ACTIONS(5306), 2, + ACTIONS(5304), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(8148), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(8152), 2, + ACTIONS(6981), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(8154), 2, + ACTIONS(6983), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8164), 2, + ACTIONS(6987), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(8168), 2, + ACTIONS(7097), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(7107), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(8170), 2, + ACTIONS(7109), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - STATE(5514), 9, + STATE(5456), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -677417,7 +671970,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [190534] = 22, + [184889] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -677438,36 +671991,72 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4100), 1, + ACTIONS(4042), 1, anon_sym_DOT, - ACTIONS(4102), 1, + ACTIONS(4044), 1, anon_sym_DASH_GT, - ACTIONS(5264), 1, + ACTIONS(5257), 1, anon_sym_LPAREN, - ACTIONS(5304), 1, + ACTIONS(5302), 1, anon_sym_BANG, - ACTIONS(5573), 1, + ACTIONS(5549), 1, anon_sym_LBRACK, - ACTIONS(8172), 1, + ACTIONS(6355), 1, + anon_sym_switch, + ACTIONS(6369), 1, + anon_sym_with, + ACTIONS(7195), 1, + anon_sym_as, + ACTIONS(8152), 1, + anon_sym_QMARK, + ACTIONS(8158), 1, + anon_sym_SLASH, + ACTIONS(8160), 1, + anon_sym_CARET, + ACTIONS(8162), 1, + anon_sym_PIPE, + ACTIONS(8164), 1, + anon_sym_AMP, + ACTIONS(8168), 1, + anon_sym_GT_GT, + ACTIONS(8174), 1, anon_sym_DOT_DOT, - STATE(2485), 1, + ACTIONS(8176), 1, + anon_sym_AMP_AMP, + ACTIONS(8178), 1, + anon_sym_PIPE_PIPE, + ACTIONS(8180), 1, + anon_sym_QMARK_QMARK, + ACTIONS(8182), 1, + anon_sym_is, + ACTIONS(8518), 1, + anon_sym_COLON, + STATE(2467), 1, sym_bracketed_argument_list, - STATE(3487), 1, + STATE(3381), 1, sym_argument_list, - ACTIONS(5306), 2, + ACTIONS(5304), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1223), 9, + ACTIONS(8150), 2, anon_sym_LT, anon_sym_GT, - anon_sym_QMARK, + ACTIONS(8154), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT_GT, - STATE(5515), 9, + ACTIONS(8156), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(8166), 2, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + ACTIONS(8170), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(8172), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + STATE(5457), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -677477,25 +672066,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(1221), 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, - [190634] = 14, + [185025] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -677516,9 +672087,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8559), 1, + ACTIONS(8378), 1, anon_sym_and, - STATE(5516), 9, + ACTIONS(8520), 1, + anon_sym_or, + STATE(5458), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -677528,7 +672101,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(6069), 11, + ACTIONS(5360), 11, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, @@ -677540,8 +672113,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT, - ACTIONS(6067), 24, + ACTIONS(5358), 23, anon_sym_LBRACK, + anon_sym_COLON, anon_sym_LPAREN, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, @@ -677556,16 +672130,14 @@ 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_equals, anon_sym_as, anon_sym_is, anon_sym_DASH_GT, anon_sym_with, - [190718] = 40, + [185111] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -677586,72 +672158,72 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4100), 1, + ACTIONS(4042), 1, anon_sym_DOT, - ACTIONS(4102), 1, + ACTIONS(4044), 1, anon_sym_DASH_GT, - ACTIONS(5264), 1, + ACTIONS(5257), 1, anon_sym_LPAREN, - ACTIONS(5304), 1, + ACTIONS(5302), 1, anon_sym_BANG, - ACTIONS(5573), 1, + ACTIONS(5549), 1, anon_sym_LBRACK, - ACTIONS(6343), 1, + ACTIONS(6355), 1, anon_sym_switch, - ACTIONS(6357), 1, + ACTIONS(6369), 1, anon_sym_with, - ACTIONS(6813), 1, - anon_sym_as, - ACTIONS(6815), 1, - anon_sym_is, - ACTIONS(7183), 1, + ACTIONS(8268), 1, + anon_sym_QMARK, + ACTIONS(8274), 1, anon_sym_SLASH, - ACTIONS(7187), 1, - anon_sym_GT_GT, - ACTIONS(7189), 1, - anon_sym_DOT_DOT, - ACTIONS(7195), 1, - anon_sym_AMP, - ACTIONS(7201), 1, + ACTIONS(8276), 1, anon_sym_CARET, - ACTIONS(7203), 1, + ACTIONS(8278), 1, anon_sym_PIPE, - ACTIONS(7205), 1, + ACTIONS(8280), 1, + anon_sym_AMP, + ACTIONS(8284), 1, + anon_sym_GT_GT, + ACTIONS(8290), 1, + anon_sym_DOT_DOT, + ACTIONS(8292), 1, anon_sym_AMP_AMP, - ACTIONS(7207), 1, + ACTIONS(8294), 1, anon_sym_PIPE_PIPE, - ACTIONS(7209), 1, + ACTIONS(8296), 1, anon_sym_QMARK_QMARK, - ACTIONS(7237), 1, - anon_sym_QMARK, - ACTIONS(8561), 1, - anon_sym_SEMI, - STATE(2485), 1, + ACTIONS(8300), 1, + anon_sym_as, + ACTIONS(8302), 1, + anon_sym_is, + ACTIONS(8522), 1, + anon_sym_by, + STATE(2467), 1, sym_bracketed_argument_list, - STATE(3487), 1, + STATE(3381), 1, sym_argument_list, - ACTIONS(5306), 2, + ACTIONS(5304), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7179), 2, + ACTIONS(8266), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(8270), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7181), 2, + ACTIONS(8272), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7185), 2, + ACTIONS(8282), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7193), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(7197), 2, + ACTIONS(8286), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7199), 2, + ACTIONS(8288), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - STATE(5517), 9, + STATE(5459), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -677661,7 +672233,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [190854] = 40, + [185247] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -677682,72 +672254,72 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4100), 1, + ACTIONS(4042), 1, anon_sym_DOT, - ACTIONS(4102), 1, + ACTIONS(4044), 1, anon_sym_DASH_GT, - ACTIONS(5264), 1, + ACTIONS(5257), 1, anon_sym_LPAREN, - ACTIONS(5304), 1, + ACTIONS(5302), 1, anon_sym_BANG, - ACTIONS(5573), 1, + ACTIONS(5549), 1, anon_sym_LBRACK, - ACTIONS(6343), 1, + ACTIONS(6355), 1, anon_sym_switch, - ACTIONS(6357), 1, + ACTIONS(6369), 1, anon_sym_with, - ACTIONS(7037), 1, + ACTIONS(7195), 1, anon_sym_as, - ACTIONS(8234), 1, + ACTIONS(8152), 1, anon_sym_QMARK, - ACTIONS(8236), 1, - anon_sym_DOT_DOT, - ACTIONS(8238), 1, - anon_sym_is, - ACTIONS(8248), 1, + ACTIONS(8158), 1, anon_sym_SLASH, - ACTIONS(8250), 1, + ACTIONS(8160), 1, anon_sym_CARET, - ACTIONS(8252), 1, + ACTIONS(8162), 1, anon_sym_PIPE, - ACTIONS(8254), 1, + ACTIONS(8164), 1, anon_sym_AMP, - ACTIONS(8258), 1, + ACTIONS(8168), 1, anon_sym_GT_GT, - ACTIONS(8264), 1, + ACTIONS(8174), 1, + anon_sym_DOT_DOT, + ACTIONS(8176), 1, anon_sym_AMP_AMP, - ACTIONS(8266), 1, + ACTIONS(8178), 1, anon_sym_PIPE_PIPE, - ACTIONS(8268), 1, + ACTIONS(8180), 1, anon_sym_QMARK_QMARK, - ACTIONS(8563), 1, + ACTIONS(8182), 1, + anon_sym_is, + ACTIONS(8524), 1, anon_sym_COLON, - STATE(2485), 1, + STATE(2467), 1, sym_bracketed_argument_list, - STATE(3487), 1, + STATE(3381), 1, sym_argument_list, - ACTIONS(5306), 2, + ACTIONS(5304), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(8242), 2, + ACTIONS(8150), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(8244), 2, + ACTIONS(8154), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(8246), 2, + ACTIONS(8156), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8256), 2, + ACTIONS(8166), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(8260), 2, + ACTIONS(8170), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(8262), 2, + ACTIONS(8172), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - STATE(5518), 9, + STATE(5460), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -677757,7 +672329,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [190990] = 24, + [185383] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -677778,33 +672350,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(8336), 1, - anon_sym_LPAREN, - ACTIONS(8565), 1, - anon_sym_operator, - ACTIONS(8567), 1, - anon_sym_this, - STATE(2175), 1, - sym__reserved_identifier, - STATE(2181), 1, - sym_generic_name, - STATE(6010), 1, - sym_explicit_interface_specifier, - STATE(6253), 1, - sym_identifier, - STATE(6521), 1, - sym_tuple_pattern, - STATE(6944), 1, - sym_variable_declarator, - STATE(7441), 1, - sym__name, - STATE(4096), 3, - sym_alias_qualified_name, - sym__simple_name, - sym_qualified_name, - STATE(5519), 9, + ACTIONS(8526), 1, + anon_sym_into, + STATE(5467), 1, + aux_sym__query_body_repeat2, + STATE(5461), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -677814,30 +672364,114 @@ 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(5881), 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(5879), 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, + [185469] = 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(8526), 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, + STATE(5468), 1, + aux_sym__query_body_repeat2, + 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(5881), 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(5879), 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_select, - [191094] = 40, + anon_sym_as, + anon_sym_is, + anon_sym_DASH_GT, + anon_sym_with, + [185555] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -677858,72 +672492,72 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4100), 1, + ACTIONS(4042), 1, anon_sym_DOT, - ACTIONS(4102), 1, + ACTIONS(4044), 1, anon_sym_DASH_GT, - ACTIONS(5264), 1, + ACTIONS(5257), 1, anon_sym_LPAREN, - ACTIONS(5304), 1, + ACTIONS(5302), 1, anon_sym_BANG, - ACTIONS(5573), 1, + ACTIONS(5549), 1, anon_sym_LBRACK, - ACTIONS(6343), 1, + ACTIONS(6355), 1, anon_sym_switch, - ACTIONS(6357), 1, + ACTIONS(6369), 1, anon_sym_with, - ACTIONS(8150), 1, - anon_sym_QMARK, - ACTIONS(8156), 1, + ACTIONS(6811), 1, + anon_sym_as, + ACTIONS(6813), 1, + anon_sym_is, + ACTIONS(6985), 1, anon_sym_SLASH, - ACTIONS(8158), 1, + ACTIONS(6989), 1, + anon_sym_GT_GT, + ACTIONS(6991), 1, + anon_sym_DOT_DOT, + ACTIONS(7099), 1, + anon_sym_QMARK, + ACTIONS(7101), 1, anon_sym_CARET, - ACTIONS(8160), 1, + ACTIONS(7103), 1, anon_sym_PIPE, - ACTIONS(8162), 1, + ACTIONS(7105), 1, anon_sym_AMP, - ACTIONS(8166), 1, - anon_sym_GT_GT, - ACTIONS(8172), 1, - anon_sym_DOT_DOT, - ACTIONS(8174), 1, + ACTIONS(7111), 1, anon_sym_AMP_AMP, - ACTIONS(8176), 1, + ACTIONS(7113), 1, anon_sym_PIPE_PIPE, - ACTIONS(8178), 1, + ACTIONS(7115), 1, anon_sym_QMARK_QMARK, - ACTIONS(8182), 1, - anon_sym_as, - ACTIONS(8184), 1, - anon_sym_is, - ACTIONS(8569), 1, - anon_sym_by, - STATE(2485), 1, + ACTIONS(8528), 1, + anon_sym_SEMI, + STATE(2467), 1, sym_bracketed_argument_list, - STATE(3487), 1, + STATE(3381), 1, sym_argument_list, - ACTIONS(5306), 2, + ACTIONS(5304), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(8148), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(8152), 2, + ACTIONS(6981), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(8154), 2, + ACTIONS(6983), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8164), 2, + ACTIONS(6987), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(8168), 2, + ACTIONS(7097), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(7107), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(8170), 2, + ACTIONS(7109), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - STATE(5520), 9, + STATE(5463), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -677933,7 +672567,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [191230] = 40, + [185691] = 27, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -677954,72 +672588,45 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4100), 1, + ACTIONS(4042), 1, anon_sym_DOT, - ACTIONS(4102), 1, + ACTIONS(4044), 1, anon_sym_DASH_GT, - ACTIONS(5264), 1, + ACTIONS(5257), 1, anon_sym_LPAREN, - ACTIONS(5304), 1, + ACTIONS(5302), 1, anon_sym_BANG, - ACTIONS(5573), 1, + ACTIONS(5549), 1, anon_sym_LBRACK, - ACTIONS(6343), 1, + ACTIONS(6355), 1, anon_sym_switch, - ACTIONS(6357), 1, + ACTIONS(6369), 1, anon_sym_with, - ACTIONS(6813), 1, - anon_sym_as, - ACTIONS(6815), 1, - anon_sym_is, - ACTIONS(7183), 1, - anon_sym_SLASH, - ACTIONS(7187), 1, - anon_sym_GT_GT, - ACTIONS(7189), 1, + ACTIONS(8188), 1, anon_sym_DOT_DOT, - ACTIONS(7195), 1, - anon_sym_AMP, - ACTIONS(7201), 1, - anon_sym_CARET, - ACTIONS(7203), 1, - anon_sym_PIPE, - ACTIONS(7205), 1, - anon_sym_AMP_AMP, - ACTIONS(7207), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7209), 1, - anon_sym_QMARK_QMARK, - ACTIONS(7237), 1, - anon_sym_QMARK, - ACTIONS(8571), 1, - anon_sym_SEMI, - STATE(2485), 1, + ACTIONS(8436), 1, + anon_sym_SLASH, + STATE(2467), 1, sym_bracketed_argument_list, - STATE(3487), 1, + STATE(3381), 1, sym_argument_list, - ACTIONS(5306), 2, + ACTIONS(5304), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7179), 2, + ACTIONS(8432), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7181), 2, + ACTIONS(8434), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7185), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - ACTIONS(7193), 2, + ACTIONS(5739), 6, anon_sym_LT, anon_sym_GT, - ACTIONS(7197), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(7199), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - STATE(5521), 9, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT_GT, + STATE(5464), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -678029,7 +672636,21 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [191366] = 40, + ACTIONS(5737), 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, + [185801] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -678050,72 +672671,72 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4100), 1, + ACTIONS(4042), 1, anon_sym_DOT, - ACTIONS(4102), 1, + ACTIONS(4044), 1, anon_sym_DASH_GT, - ACTIONS(5264), 1, + ACTIONS(5257), 1, anon_sym_LPAREN, - ACTIONS(5304), 1, + ACTIONS(5302), 1, anon_sym_BANG, - ACTIONS(5573), 1, + ACTIONS(5549), 1, anon_sym_LBRACK, - ACTIONS(6343), 1, + ACTIONS(6355), 1, anon_sym_switch, - ACTIONS(6357), 1, + ACTIONS(6369), 1, anon_sym_with, - ACTIONS(6813), 1, + ACTIONS(7195), 1, anon_sym_as, - ACTIONS(7139), 1, + ACTIONS(8152), 1, anon_sym_QMARK, - ACTIONS(7145), 1, + ACTIONS(8158), 1, anon_sym_SLASH, - ACTIONS(7147), 1, + ACTIONS(8160), 1, anon_sym_CARET, - ACTIONS(7149), 1, + ACTIONS(8162), 1, anon_sym_PIPE, - ACTIONS(7151), 1, + ACTIONS(8164), 1, anon_sym_AMP, - ACTIONS(7155), 1, + ACTIONS(8168), 1, anon_sym_GT_GT, - ACTIONS(7161), 1, + ACTIONS(8174), 1, anon_sym_DOT_DOT, - ACTIONS(7163), 1, + ACTIONS(8176), 1, anon_sym_AMP_AMP, - ACTIONS(7165), 1, + ACTIONS(8178), 1, anon_sym_PIPE_PIPE, - ACTIONS(7167), 1, + ACTIONS(8180), 1, anon_sym_QMARK_QMARK, - ACTIONS(7169), 1, + ACTIONS(8182), 1, anon_sym_is, - ACTIONS(8573), 1, - anon_sym_RPAREN, - STATE(2485), 1, + ACTIONS(8530), 1, + anon_sym_COLON, + STATE(2467), 1, sym_bracketed_argument_list, - STATE(3487), 1, + STATE(3381), 1, sym_argument_list, - ACTIONS(5306), 2, + ACTIONS(5304), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7137), 2, + ACTIONS(8150), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7141), 2, + ACTIONS(8154), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7143), 2, + ACTIONS(8156), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7153), 2, + ACTIONS(8166), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7157), 2, + ACTIONS(8170), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7159), 2, + ACTIONS(8172), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - STATE(5522), 9, + STATE(5465), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -678125,7 +672746,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [191502] = 40, + [185937] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -678146,72 +672767,80 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4100), 1, - anon_sym_DOT, - ACTIONS(4102), 1, - anon_sym_DASH_GT, - ACTIONS(5264), 1, - anon_sym_LPAREN, - ACTIONS(5304), 1, - anon_sym_BANG, - ACTIONS(5573), 1, - anon_sym_LBRACK, - ACTIONS(6343), 1, - anon_sym_switch, - ACTIONS(6357), 1, - anon_sym_with, - ACTIONS(7037), 1, - anon_sym_as, - ACTIONS(8234), 1, + ACTIONS(8378), 1, + anon_sym_and, + ACTIONS(8520), 1, + anon_sym_or, + 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(6109), 11, + anon_sym_LT, + anon_sym_GT, anon_sym_QMARK, - ACTIONS(8236), 1, - anon_sym_DOT_DOT, - ACTIONS(8238), 1, - anon_sym_is, - ACTIONS(8248), 1, + anon_sym_BANG, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_SLASH, - ACTIONS(8250), 1, - anon_sym_CARET, - ACTIONS(8252), 1, anon_sym_PIPE, - ACTIONS(8254), 1, anon_sym_AMP, - ACTIONS(8258), 1, anon_sym_GT_GT, - ACTIONS(8264), 1, - anon_sym_AMP_AMP, - ACTIONS(8266), 1, - anon_sym_PIPE_PIPE, - ACTIONS(8268), 1, - anon_sym_QMARK_QMARK, - ACTIONS(8575), 1, + anon_sym_DOT, + ACTIONS(6107), 23, + anon_sym_LBRACK, anon_sym_COLON, - STATE(2485), 1, - sym_bracketed_argument_list, - STATE(3487), 1, - sym_argument_list, - ACTIONS(5306), 2, + anon_sym_LPAREN, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(8242), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(8244), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(8246), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8256), 2, + anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(8260), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(8262), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - STATE(5523), 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, + [186023] = 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(8532), 1, + anon_sym_into, + STATE(5467), 10, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -678221,7 +672850,44 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [191638] = 14, + aux_sym__query_body_repeat2, + ACTIONS(5953), 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(5951), 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, + [186107] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -678242,9 +672908,11 @@ 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(5524), 9, + ACTIONS(8526), 1, + anon_sym_into, + STATE(5467), 1, + aux_sym__query_body_repeat2, + STATE(5468), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -678254,7 +672922,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(6069), 11, + ACTIONS(5960), 11, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, @@ -678266,7 +672934,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT, - ACTIONS(6067), 24, + ACTIONS(5958), 23, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_PLUS_PLUS, @@ -678280,18 +672948,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_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, - [191722] = 40, + [186193] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -678312,72 +672979,72 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4100), 1, + ACTIONS(4042), 1, anon_sym_DOT, - ACTIONS(4102), 1, + ACTIONS(4044), 1, anon_sym_DASH_GT, - ACTIONS(5264), 1, + ACTIONS(5257), 1, anon_sym_LPAREN, - ACTIONS(5304), 1, + ACTIONS(5302), 1, anon_sym_BANG, - ACTIONS(5573), 1, + ACTIONS(5549), 1, anon_sym_LBRACK, - ACTIONS(6343), 1, + ACTIONS(6355), 1, anon_sym_switch, - ACTIONS(6357), 1, + ACTIONS(6369), 1, anon_sym_with, - ACTIONS(7037), 1, + ACTIONS(6811), 1, anon_sym_as, - ACTIONS(7057), 1, + ACTIONS(7231), 1, + anon_sym_QMARK, + ACTIONS(7237), 1, anon_sym_SLASH, - ACTIONS(7059), 1, + ACTIONS(7239), 1, anon_sym_CARET, - ACTIONS(7061), 1, + ACTIONS(7241), 1, anon_sym_PIPE, - ACTIONS(7063), 1, + ACTIONS(7243), 1, anon_sym_AMP, - ACTIONS(7067), 1, + ACTIONS(7247), 1, anon_sym_GT_GT, - ACTIONS(7075), 1, + ACTIONS(7253), 1, + anon_sym_DOT_DOT, + ACTIONS(7255), 1, anon_sym_AMP_AMP, - ACTIONS(7077), 1, + ACTIONS(7257), 1, anon_sym_PIPE_PIPE, - ACTIONS(7079), 1, + ACTIONS(7259), 1, anon_sym_QMARK_QMARK, - ACTIONS(8234), 1, - anon_sym_QMARK, - ACTIONS(8236), 1, - anon_sym_DOT_DOT, - ACTIONS(8238), 1, + ACTIONS(7261), 1, anon_sym_is, - ACTIONS(8577), 1, - anon_sym_COLON, - STATE(2485), 1, + ACTIONS(8535), 1, + anon_sym_RPAREN, + STATE(2467), 1, sym_bracketed_argument_list, - STATE(3487), 1, + STATE(3381), 1, sym_argument_list, - ACTIONS(5306), 2, + ACTIONS(5304), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7049), 2, + ACTIONS(7229), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7053), 2, + ACTIONS(7233), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7055), 2, + ACTIONS(7235), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7065), 2, + ACTIONS(7245), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7069), 2, + ACTIONS(7249), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7071), 2, + ACTIONS(7251), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - STATE(5525), 9, + STATE(5469), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -678387,7 +673054,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [191858] = 40, + [186329] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -678408,72 +673075,72 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4100), 1, + ACTIONS(4042), 1, anon_sym_DOT, - ACTIONS(4102), 1, + ACTIONS(4044), 1, anon_sym_DASH_GT, - ACTIONS(5264), 1, + ACTIONS(5257), 1, anon_sym_LPAREN, - ACTIONS(5304), 1, + ACTIONS(5302), 1, anon_sym_BANG, - ACTIONS(5573), 1, + ACTIONS(5549), 1, anon_sym_LBRACK, - ACTIONS(6343), 1, + ACTIONS(6355), 1, anon_sym_switch, - ACTIONS(6357), 1, + ACTIONS(6369), 1, anon_sym_with, - ACTIONS(7037), 1, + ACTIONS(6811), 1, anon_sym_as, - ACTIONS(8234), 1, + ACTIONS(7231), 1, anon_sym_QMARK, - ACTIONS(8236), 1, - anon_sym_DOT_DOT, - ACTIONS(8238), 1, - anon_sym_is, - ACTIONS(8248), 1, + ACTIONS(7237), 1, anon_sym_SLASH, - ACTIONS(8250), 1, + ACTIONS(7239), 1, anon_sym_CARET, - ACTIONS(8252), 1, + ACTIONS(7241), 1, anon_sym_PIPE, - ACTIONS(8254), 1, + ACTIONS(7243), 1, anon_sym_AMP, - ACTIONS(8258), 1, + ACTIONS(7247), 1, anon_sym_GT_GT, - ACTIONS(8264), 1, + ACTIONS(7253), 1, + anon_sym_DOT_DOT, + ACTIONS(7255), 1, anon_sym_AMP_AMP, - ACTIONS(8266), 1, + ACTIONS(7257), 1, anon_sym_PIPE_PIPE, - ACTIONS(8268), 1, + ACTIONS(7259), 1, anon_sym_QMARK_QMARK, - ACTIONS(8579), 1, - anon_sym_COLON, - STATE(2485), 1, + ACTIONS(7261), 1, + anon_sym_is, + ACTIONS(8537), 1, + anon_sym_RPAREN, + STATE(2467), 1, sym_bracketed_argument_list, - STATE(3487), 1, + STATE(3381), 1, sym_argument_list, - ACTIONS(5306), 2, + ACTIONS(5304), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(8242), 2, + ACTIONS(7229), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(8244), 2, + ACTIONS(7233), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(8246), 2, + ACTIONS(7235), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8256), 2, + ACTIONS(7245), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(8260), 2, + ACTIONS(7249), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(8262), 2, + ACTIONS(7251), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - STATE(5526), 9, + STATE(5470), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -678483,7 +673150,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [191994] = 40, + [186465] = 33, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -678504,72 +673171,65 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4100), 1, + ACTIONS(4042), 1, anon_sym_DOT, - ACTIONS(4102), 1, + ACTIONS(4044), 1, anon_sym_DASH_GT, - ACTIONS(5264), 1, + ACTIONS(5257), 1, anon_sym_LPAREN, - ACTIONS(5304), 1, + ACTIONS(5302), 1, anon_sym_BANG, - ACTIONS(5573), 1, + ACTIONS(5549), 1, anon_sym_LBRACK, - ACTIONS(6343), 1, + ACTIONS(6355), 1, anon_sym_switch, - ACTIONS(6357), 1, + ACTIONS(6369), 1, anon_sym_with, - ACTIONS(7037), 1, - anon_sym_as, - ACTIONS(8234), 1, - anon_sym_QMARK, - ACTIONS(8236), 1, + ACTIONS(8188), 1, anon_sym_DOT_DOT, - ACTIONS(8238), 1, - anon_sym_is, - ACTIONS(8248), 1, + ACTIONS(8436), 1, anon_sym_SLASH, - ACTIONS(8250), 1, - anon_sym_CARET, - ACTIONS(8252), 1, - anon_sym_PIPE, - ACTIONS(8254), 1, - anon_sym_AMP, - ACTIONS(8258), 1, + ACTIONS(8446), 1, anon_sym_GT_GT, - ACTIONS(8264), 1, - anon_sym_AMP_AMP, - ACTIONS(8266), 1, - anon_sym_PIPE_PIPE, - ACTIONS(8268), 1, - anon_sym_QMARK_QMARK, - ACTIONS(8581), 1, - anon_sym_COLON, - STATE(2485), 1, + ACTIONS(8460), 1, + anon_sym_as, + ACTIONS(8462), 1, + anon_sym_is, + STATE(2467), 1, sym_bracketed_argument_list, - STATE(3487), 1, + STATE(3381), 1, sym_argument_list, - ACTIONS(5306), 2, + ACTIONS(5304), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(8242), 2, + ACTIONS(8428), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(8244), 2, + ACTIONS(8432), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(8246), 2, + ACTIONS(8434), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8256), 2, + ACTIONS(8444), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(8260), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(8262), 2, + ACTIONS(8450), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - STATE(5527), 9, + ACTIONS(5739), 3, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_AMP, + ACTIONS(5737), 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(5471), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -678579,7 +673239,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [192130] = 15, + [186587] = 22, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -678600,37 +673260,46 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8559), 1, - anon_sym_and, - ACTIONS(8583), 1, - anon_sym_or, - STATE(5528), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - ACTIONS(5356), 11, + ACTIONS(4042), 1, + anon_sym_DOT, + ACTIONS(4044), 1, + anon_sym_DASH_GT, + ACTIONS(5257), 1, + anon_sym_LPAREN, + ACTIONS(5302), 1, + anon_sym_BANG, + ACTIONS(5549), 1, + anon_sym_LBRACK, + ACTIONS(8188), 1, + anon_sym_DOT_DOT, + STATE(2467), 1, + sym_bracketed_argument_list, + STATE(3381), 1, + sym_argument_list, + ACTIONS(5304), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5743), 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(5354), 23, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, + 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, + ACTIONS(5741), 17, anon_sym_STAR, anon_sym_PERCENT, anon_sym_CARET, @@ -678641,16 +673310,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_equals, + anon_sym_on, anon_sym_as, anon_sym_is, - anon_sym_DASH_GT, anon_sym_with, - [192216] = 40, + [186687] = 37, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -678671,72 +673338,69 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4100), 1, + ACTIONS(4042), 1, anon_sym_DOT, - ACTIONS(4102), 1, + ACTIONS(4044), 1, anon_sym_DASH_GT, - ACTIONS(5264), 1, + ACTIONS(5257), 1, anon_sym_LPAREN, - ACTIONS(5304), 1, + ACTIONS(5302), 1, anon_sym_BANG, - ACTIONS(5573), 1, + ACTIONS(5549), 1, anon_sym_LBRACK, - ACTIONS(6343), 1, + ACTIONS(5739), 1, + anon_sym_QMARK, + ACTIONS(6355), 1, anon_sym_switch, - ACTIONS(6357), 1, + ACTIONS(6369), 1, anon_sym_with, - ACTIONS(8150), 1, - anon_sym_QMARK, - ACTIONS(8156), 1, + ACTIONS(8188), 1, + anon_sym_DOT_DOT, + ACTIONS(8436), 1, anon_sym_SLASH, - ACTIONS(8158), 1, + ACTIONS(8438), 1, anon_sym_CARET, - ACTIONS(8160), 1, + ACTIONS(8440), 1, anon_sym_PIPE, - ACTIONS(8162), 1, + ACTIONS(8442), 1, anon_sym_AMP, - ACTIONS(8166), 1, + ACTIONS(8446), 1, anon_sym_GT_GT, - ACTIONS(8172), 1, - anon_sym_DOT_DOT, - ACTIONS(8174), 1, - anon_sym_AMP_AMP, - ACTIONS(8176), 1, - anon_sym_PIPE_PIPE, - ACTIONS(8178), 1, - anon_sym_QMARK_QMARK, - ACTIONS(8182), 1, + ACTIONS(8460), 1, anon_sym_as, - ACTIONS(8184), 1, + ACTIONS(8462), 1, anon_sym_is, - ACTIONS(8585), 1, - anon_sym_by, - STATE(2485), 1, + STATE(2467), 1, sym_bracketed_argument_list, - STATE(3487), 1, + STATE(3381), 1, sym_argument_list, - ACTIONS(5306), 2, + ACTIONS(5304), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(8148), 2, + ACTIONS(8428), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(8152), 2, + ACTIONS(8432), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(8154), 2, + ACTIONS(8434), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8164), 2, + ACTIONS(8444), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(8168), 2, + ACTIONS(8448), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(8170), 2, + ACTIONS(8450), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - STATE(5529), 9, + ACTIONS(5737), 4, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, + anon_sym_on, + STATE(5473), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -678746,7 +673410,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [192352] = 15, + [186817] = 38, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -678767,57 +673431,80 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8559), 1, - anon_sym_and, - ACTIONS(8583), 1, - anon_sym_or, - 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(6207), 11, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, + ACTIONS(4042), 1, + anon_sym_DOT, + ACTIONS(4044), 1, + anon_sym_DASH_GT, + ACTIONS(5257), 1, + anon_sym_LPAREN, + ACTIONS(5302), 1, anon_sym_BANG, - anon_sym_PLUS, - anon_sym_DASH, + ACTIONS(5549), 1, + anon_sym_LBRACK, + ACTIONS(5739), 1, + anon_sym_QMARK, + ACTIONS(6355), 1, + anon_sym_switch, + ACTIONS(6369), 1, + anon_sym_with, + ACTIONS(8188), 1, + anon_sym_DOT_DOT, + ACTIONS(8436), 1, anon_sym_SLASH, + ACTIONS(8438), 1, + anon_sym_CARET, + ACTIONS(8440), 1, anon_sym_PIPE, + ACTIONS(8442), 1, anon_sym_AMP, + ACTIONS(8446), 1, anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(6205), 23, - anon_sym_LBRACK, - anon_sym_LPAREN, + ACTIONS(8452), 1, + anon_sym_AMP_AMP, + ACTIONS(8460), 1, + anon_sym_as, + ACTIONS(8462), 1, + anon_sym_is, + STATE(2467), 1, + sym_bracketed_argument_list, + STATE(3381), 1, + sym_argument_list, + ACTIONS(5304), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + ACTIONS(8428), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(8432), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(8434), 2, anon_sym_STAR, anon_sym_PERCENT, - anon_sym_CARET, + ACTIONS(8444), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, + ACTIONS(8448), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + ACTIONS(8450), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - anon_sym_switch, - anon_sym_DOT_DOT, - anon_sym_AMP_AMP, + ACTIONS(5737), 3, anon_sym_PIPE_PIPE, anon_sym_QMARK_QMARK, - anon_sym_equals, - anon_sym_as, - anon_sym_is, - anon_sym_DASH_GT, - anon_sym_with, - [192438] = 13, + anon_sym_on, + STATE(5474), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + [186949] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -678838,11 +673525,72 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4955), 3, - anon_sym_LBRACK, + ACTIONS(2025), 1, + anon_sym_SEMI, + ACTIONS(4042), 1, + anon_sym_DOT, + ACTIONS(4044), 1, + anon_sym_DASH_GT, + ACTIONS(5257), 1, anon_sym_LPAREN, - aux_sym_preproc_if_token1, - STATE(5531), 9, + ACTIONS(5302), 1, + anon_sym_BANG, + ACTIONS(5549), 1, + anon_sym_LBRACK, + ACTIONS(6355), 1, + anon_sym_switch, + ACTIONS(6369), 1, + anon_sym_with, + ACTIONS(6811), 1, + anon_sym_as, + ACTIONS(6813), 1, + anon_sym_is, + ACTIONS(6985), 1, + anon_sym_SLASH, + ACTIONS(6989), 1, + anon_sym_GT_GT, + ACTIONS(6991), 1, + anon_sym_DOT_DOT, + ACTIONS(7099), 1, + anon_sym_QMARK, + ACTIONS(7101), 1, + anon_sym_CARET, + ACTIONS(7103), 1, + anon_sym_PIPE, + ACTIONS(7105), 1, + anon_sym_AMP, + ACTIONS(7111), 1, + anon_sym_AMP_AMP, + ACTIONS(7113), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7115), 1, + anon_sym_QMARK_QMARK, + STATE(2467), 1, + sym_bracketed_argument_list, + STATE(3381), 1, + sym_argument_list, + ACTIONS(5304), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6981), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6983), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(6987), 2, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + ACTIONS(7097), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(7107), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(7109), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + STATE(5475), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -678852,41 +673600,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(4953), 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, - [192520] = 40, + [187085] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -678907,72 +673621,72 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4100), 1, + ACTIONS(4042), 1, anon_sym_DOT, - ACTIONS(4102), 1, + ACTIONS(4044), 1, anon_sym_DASH_GT, - ACTIONS(5264), 1, + ACTIONS(5257), 1, anon_sym_LPAREN, - ACTIONS(5304), 1, + ACTIONS(5302), 1, anon_sym_BANG, - ACTIONS(5573), 1, + ACTIONS(5549), 1, anon_sym_LBRACK, - ACTIONS(6343), 1, + ACTIONS(5737), 1, + anon_sym_on, + ACTIONS(5739), 1, + anon_sym_QMARK, + ACTIONS(6355), 1, anon_sym_switch, - ACTIONS(6357), 1, + ACTIONS(6369), 1, anon_sym_with, - ACTIONS(7037), 1, - anon_sym_as, - ACTIONS(8234), 1, - anon_sym_QMARK, - ACTIONS(8236), 1, + ACTIONS(8188), 1, anon_sym_DOT_DOT, - ACTIONS(8238), 1, - anon_sym_is, - ACTIONS(8248), 1, + ACTIONS(8436), 1, anon_sym_SLASH, - ACTIONS(8250), 1, + ACTIONS(8438), 1, anon_sym_CARET, - ACTIONS(8252), 1, + ACTIONS(8440), 1, anon_sym_PIPE, - ACTIONS(8254), 1, + ACTIONS(8442), 1, anon_sym_AMP, - ACTIONS(8258), 1, + ACTIONS(8446), 1, anon_sym_GT_GT, - ACTIONS(8264), 1, + ACTIONS(8452), 1, anon_sym_AMP_AMP, - ACTIONS(8266), 1, + ACTIONS(8454), 1, anon_sym_PIPE_PIPE, - ACTIONS(8268), 1, + ACTIONS(8456), 1, anon_sym_QMARK_QMARK, - ACTIONS(8587), 1, - anon_sym_COLON, - STATE(2485), 1, + ACTIONS(8460), 1, + anon_sym_as, + ACTIONS(8462), 1, + anon_sym_is, + STATE(2467), 1, sym_bracketed_argument_list, - STATE(3487), 1, + STATE(3381), 1, sym_argument_list, - ACTIONS(5306), 2, + ACTIONS(5304), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(8242), 2, + ACTIONS(8428), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(8244), 2, + ACTIONS(8432), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(8246), 2, + ACTIONS(8434), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8256), 2, + ACTIONS(8444), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(8260), 2, + ACTIONS(8448), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(8262), 2, + ACTIONS(8450), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - STATE(5532), 9, + STATE(5476), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -678982,7 +673696,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [192656] = 40, + [187221] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -679003,72 +673717,72 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4100), 1, + ACTIONS(4042), 1, anon_sym_DOT, - ACTIONS(4102), 1, + ACTIONS(4044), 1, anon_sym_DASH_GT, - ACTIONS(5264), 1, + ACTIONS(4996), 1, + anon_sym_on, + ACTIONS(5257), 1, anon_sym_LPAREN, - ACTIONS(5304), 1, + ACTIONS(5302), 1, anon_sym_BANG, - ACTIONS(5573), 1, + ACTIONS(5549), 1, anon_sym_LBRACK, - ACTIONS(5899), 1, - anon_sym_equals, - ACTIONS(6343), 1, + ACTIONS(6355), 1, anon_sym_switch, - ACTIONS(6357), 1, + ACTIONS(6369), 1, anon_sym_with, - ACTIONS(8278), 1, + ACTIONS(8188), 1, + anon_sym_DOT_DOT, + ACTIONS(8430), 1, anon_sym_QMARK, - ACTIONS(8284), 1, + ACTIONS(8436), 1, anon_sym_SLASH, - ACTIONS(8286), 1, + ACTIONS(8438), 1, anon_sym_CARET, - ACTIONS(8288), 1, + ACTIONS(8440), 1, anon_sym_PIPE, - ACTIONS(8290), 1, + ACTIONS(8442), 1, anon_sym_AMP, - ACTIONS(8294), 1, + ACTIONS(8446), 1, anon_sym_GT_GT, - ACTIONS(8300), 1, - anon_sym_DOT_DOT, - ACTIONS(8302), 1, + ACTIONS(8452), 1, anon_sym_AMP_AMP, - ACTIONS(8304), 1, + ACTIONS(8454), 1, anon_sym_PIPE_PIPE, - ACTIONS(8306), 1, + ACTIONS(8456), 1, anon_sym_QMARK_QMARK, - ACTIONS(8308), 1, + ACTIONS(8460), 1, anon_sym_as, - ACTIONS(8310), 1, + ACTIONS(8462), 1, anon_sym_is, - STATE(2485), 1, + STATE(2467), 1, sym_bracketed_argument_list, - STATE(3487), 1, + STATE(3381), 1, sym_argument_list, - ACTIONS(5306), 2, + ACTIONS(5304), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(8276), 2, + ACTIONS(8428), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(8280), 2, + ACTIONS(8432), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(8282), 2, + ACTIONS(8434), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8292), 2, + ACTIONS(8444), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(8296), 2, + ACTIONS(8448), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(8298), 2, + ACTIONS(8450), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - STATE(5533), 9, + STATE(5477), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -679078,7 +673792,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [192792] = 22, + [187357] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -679099,36 +673813,72 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4100), 1, + ACTIONS(4042), 1, anon_sym_DOT, - ACTIONS(4102), 1, + ACTIONS(4044), 1, anon_sym_DASH_GT, - ACTIONS(5264), 1, + ACTIONS(5257), 1, anon_sym_LPAREN, - ACTIONS(5304), 1, + ACTIONS(5302), 1, anon_sym_BANG, - ACTIONS(5573), 1, + ACTIONS(5549), 1, anon_sym_LBRACK, - ACTIONS(8300), 1, + ACTIONS(5652), 1, + anon_sym_on, + ACTIONS(6355), 1, + anon_sym_switch, + ACTIONS(6369), 1, + anon_sym_with, + ACTIONS(8188), 1, anon_sym_DOT_DOT, - STATE(2485), 1, + ACTIONS(8430), 1, + anon_sym_QMARK, + ACTIONS(8436), 1, + anon_sym_SLASH, + ACTIONS(8438), 1, + anon_sym_CARET, + ACTIONS(8440), 1, + anon_sym_PIPE, + ACTIONS(8442), 1, + anon_sym_AMP, + ACTIONS(8446), 1, + anon_sym_GT_GT, + ACTIONS(8452), 1, + anon_sym_AMP_AMP, + ACTIONS(8454), 1, + anon_sym_PIPE_PIPE, + ACTIONS(8456), 1, + anon_sym_QMARK_QMARK, + ACTIONS(8460), 1, + anon_sym_as, + ACTIONS(8462), 1, + anon_sym_is, + STATE(2467), 1, sym_bracketed_argument_list, - STATE(3487), 1, + STATE(3381), 1, sym_argument_list, - ACTIONS(5306), 2, + ACTIONS(5304), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1223), 9, + ACTIONS(8428), 2, anon_sym_LT, anon_sym_GT, - anon_sym_QMARK, + ACTIONS(8432), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT_GT, - STATE(5534), 9, + ACTIONS(8434), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(8444), 2, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + ACTIONS(8448), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(8450), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + STATE(5478), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -679138,25 +673888,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(1221), 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, - [192892] = 40, + [187493] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -679177,72 +673909,72 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4100), 1, + ACTIONS(4042), 1, anon_sym_DOT, - ACTIONS(4102), 1, + ACTIONS(4044), 1, anon_sym_DASH_GT, - ACTIONS(5264), 1, + ACTIONS(5257), 1, anon_sym_LPAREN, - ACTIONS(5304), 1, + ACTIONS(5302), 1, anon_sym_BANG, - ACTIONS(5573), 1, + ACTIONS(5549), 1, anon_sym_LBRACK, - ACTIONS(6343), 1, + ACTIONS(6355), 1, anon_sym_switch, - ACTIONS(6357), 1, + ACTIONS(6369), 1, anon_sym_with, - ACTIONS(7037), 1, + ACTIONS(7195), 1, anon_sym_as, - ACTIONS(8234), 1, + ACTIONS(8152), 1, anon_sym_QMARK, - ACTIONS(8236), 1, - anon_sym_DOT_DOT, - ACTIONS(8238), 1, - anon_sym_is, - ACTIONS(8248), 1, + ACTIONS(8158), 1, anon_sym_SLASH, - ACTIONS(8250), 1, + ACTIONS(8160), 1, anon_sym_CARET, - ACTIONS(8252), 1, + ACTIONS(8162), 1, anon_sym_PIPE, - ACTIONS(8254), 1, + ACTIONS(8164), 1, anon_sym_AMP, - ACTIONS(8258), 1, + ACTIONS(8168), 1, anon_sym_GT_GT, - ACTIONS(8264), 1, + ACTIONS(8174), 1, + anon_sym_DOT_DOT, + ACTIONS(8176), 1, anon_sym_AMP_AMP, - ACTIONS(8266), 1, + ACTIONS(8178), 1, anon_sym_PIPE_PIPE, - ACTIONS(8268), 1, + ACTIONS(8180), 1, anon_sym_QMARK_QMARK, - ACTIONS(8589), 1, + ACTIONS(8182), 1, + anon_sym_is, + ACTIONS(8539), 1, anon_sym_COLON, - STATE(2485), 1, + STATE(2467), 1, sym_bracketed_argument_list, - STATE(3487), 1, + STATE(3381), 1, sym_argument_list, - ACTIONS(5306), 2, + ACTIONS(5304), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(8242), 2, + ACTIONS(8150), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(8244), 2, + ACTIONS(8154), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(8246), 2, + ACTIONS(8156), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8256), 2, + ACTIONS(8166), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(8260), 2, + ACTIONS(8170), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(8262), 2, + ACTIONS(8172), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - STATE(5535), 9, + STATE(5479), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -679252,7 +673984,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [193028] = 15, + [187629] = 17, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -679273,11 +674005,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8322), 1, - anon_sym_and, - ACTIONS(8591), 1, - anon_sym_or, - STATE(5536), 9, + ACTIONS(4671), 1, + aux_sym_preproc_else_token1, + ACTIONS(4673), 1, + aux_sym_preproc_elif_token1, + ACTIONS(8541), 1, + aux_sym_preproc_if_token3, + STATE(7477), 2, + sym_preproc_else_in_attribute_list, + sym_preproc_elif_in_attribute_list, + ACTIONS(4667), 3, + anon_sym_LBRACK, + anon_sym_LPAREN, + aux_sym_preproc_if_token1, + STATE(5480), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -679287,25 +674028,104 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5356), 11, + ACTIONS(4665), 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, + [187719] = 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(4042), 1, + anon_sym_DOT, + ACTIONS(4044), 1, + anon_sym_DASH_GT, + ACTIONS(5257), 1, + anon_sym_LPAREN, + ACTIONS(5302), 1, + anon_sym_BANG, + ACTIONS(5549), 1, + anon_sym_LBRACK, + ACTIONS(6355), 1, + anon_sym_switch, + ACTIONS(6369), 1, + anon_sym_with, + ACTIONS(8188), 1, + anon_sym_DOT_DOT, + ACTIONS(8436), 1, + anon_sym_SLASH, + STATE(2467), 1, + sym_bracketed_argument_list, + STATE(3381), 1, + sym_argument_list, + ACTIONS(5304), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(8434), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(5739), 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, - ACTIONS(5354), 23, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_STAR, - anon_sym_PERCENT, + 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, + ACTIONS(5737), 13, anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT_GT, @@ -679313,17 +674133,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_on, anon_sym_as, anon_sym_is, - anon_sym_DASH_GT, - anon_sym_with, - [193114] = 40, + [187827] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -679344,72 +674160,72 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4100), 1, + ACTIONS(4042), 1, anon_sym_DOT, - ACTIONS(4102), 1, + ACTIONS(4044), 1, anon_sym_DASH_GT, - ACTIONS(5264), 1, + ACTIONS(5257), 1, anon_sym_LPAREN, - ACTIONS(5304), 1, + ACTIONS(5302), 1, anon_sym_BANG, - ACTIONS(5573), 1, + ACTIONS(5549), 1, anon_sym_LBRACK, - ACTIONS(6343), 1, + ACTIONS(5801), 1, + anon_sym_COLON, + ACTIONS(6355), 1, anon_sym_switch, - ACTIONS(6357), 1, + ACTIONS(6369), 1, anon_sym_with, - ACTIONS(8150), 1, + ACTIONS(7195), 1, + anon_sym_as, + ACTIONS(8152), 1, anon_sym_QMARK, - ACTIONS(8156), 1, - anon_sym_SLASH, ACTIONS(8158), 1, - anon_sym_CARET, + anon_sym_SLASH, ACTIONS(8160), 1, - anon_sym_PIPE, + anon_sym_CARET, ACTIONS(8162), 1, + anon_sym_PIPE, + ACTIONS(8164), 1, anon_sym_AMP, - ACTIONS(8166), 1, + ACTIONS(8168), 1, anon_sym_GT_GT, - ACTIONS(8172), 1, - anon_sym_DOT_DOT, ACTIONS(8174), 1, - anon_sym_AMP_AMP, + anon_sym_DOT_DOT, ACTIONS(8176), 1, - anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, ACTIONS(8178), 1, + anon_sym_PIPE_PIPE, + ACTIONS(8180), 1, anon_sym_QMARK_QMARK, ACTIONS(8182), 1, - anon_sym_as, - ACTIONS(8184), 1, anon_sym_is, - ACTIONS(8593), 1, - anon_sym_by, - STATE(2485), 1, + STATE(2467), 1, sym_bracketed_argument_list, - STATE(3487), 1, + STATE(3381), 1, sym_argument_list, - ACTIONS(5306), 2, + ACTIONS(5304), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(8148), 2, + ACTIONS(8150), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(8152), 2, + ACTIONS(8154), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(8154), 2, + ACTIONS(8156), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8164), 2, + ACTIONS(8166), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(8168), 2, + ACTIONS(8170), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(8170), 2, + ACTIONS(8172), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - STATE(5537), 9, + STATE(5482), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -679419,7 +674235,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [193250] = 15, + [187963] = 22, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -679440,37 +674256,47 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8322), 1, - anon_sym_and, - ACTIONS(8591), 1, - anon_sym_or, - STATE(5538), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - ACTIONS(6207), 11, + ACTIONS(4042), 1, + anon_sym_DOT, + ACTIONS(4044), 1, + anon_sym_DASH_GT, + ACTIONS(5257), 1, + anon_sym_LPAREN, + ACTIONS(5302), 1, + anon_sym_BANG, + ACTIONS(5549), 1, + anon_sym_LBRACK, + ACTIONS(8174), 1, + anon_sym_DOT_DOT, + STATE(2467), 1, + sym_bracketed_argument_list, + STATE(3381), 1, + sym_argument_list, + ACTIONS(5304), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1161), 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(6205), 23, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, + STATE(5483), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + ACTIONS(1147), 17, + anon_sym_COLON, anon_sym_STAR, anon_sym_PERCENT, anon_sym_CARET, @@ -679481,16 +674307,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_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, - [193336] = 40, + [188063] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -679511,72 +674334,72 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4100), 1, + ACTIONS(4042), 1, anon_sym_DOT, - ACTIONS(4102), 1, + ACTIONS(4044), 1, anon_sym_DASH_GT, - ACTIONS(5264), 1, + ACTIONS(5257), 1, anon_sym_LPAREN, - ACTIONS(5304), 1, + ACTIONS(5302), 1, anon_sym_BANG, - ACTIONS(5573), 1, + ACTIONS(5549), 1, anon_sym_LBRACK, - ACTIONS(6343), 1, + ACTIONS(6355), 1, anon_sym_switch, - ACTIONS(6357), 1, + ACTIONS(6369), 1, anon_sym_with, - ACTIONS(7037), 1, + ACTIONS(6811), 1, anon_sym_as, - ACTIONS(8234), 1, + ACTIONS(7231), 1, anon_sym_QMARK, - ACTIONS(8236), 1, - anon_sym_DOT_DOT, - ACTIONS(8238), 1, - anon_sym_is, - ACTIONS(8248), 1, + ACTIONS(7237), 1, anon_sym_SLASH, - ACTIONS(8250), 1, + ACTIONS(7239), 1, anon_sym_CARET, - ACTIONS(8252), 1, + ACTIONS(7241), 1, anon_sym_PIPE, - ACTIONS(8254), 1, + ACTIONS(7243), 1, anon_sym_AMP, - ACTIONS(8258), 1, + ACTIONS(7247), 1, anon_sym_GT_GT, - ACTIONS(8264), 1, + ACTIONS(7253), 1, + anon_sym_DOT_DOT, + ACTIONS(7255), 1, anon_sym_AMP_AMP, - ACTIONS(8266), 1, + ACTIONS(7257), 1, anon_sym_PIPE_PIPE, - ACTIONS(8268), 1, + ACTIONS(7259), 1, anon_sym_QMARK_QMARK, - ACTIONS(8595), 1, - anon_sym_COLON, - STATE(2485), 1, + ACTIONS(7261), 1, + anon_sym_is, + ACTIONS(8543), 1, + anon_sym_RPAREN, + STATE(2467), 1, sym_bracketed_argument_list, - STATE(3487), 1, + STATE(3381), 1, sym_argument_list, - ACTIONS(5306), 2, + ACTIONS(5304), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(8242), 2, + ACTIONS(7229), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(8244), 2, + ACTIONS(7233), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(8246), 2, + ACTIONS(7235), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8256), 2, + ACTIONS(7245), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(8260), 2, + ACTIONS(7249), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(8262), 2, + ACTIONS(7251), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - STATE(5539), 9, + STATE(5484), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -679586,7 +674409,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [193472] = 40, + [188199] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -679607,72 +674430,72 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4100), 1, + ACTIONS(4042), 1, anon_sym_DOT, - ACTIONS(4102), 1, + ACTIONS(4044), 1, anon_sym_DASH_GT, - ACTIONS(5264), 1, + ACTIONS(5257), 1, anon_sym_LPAREN, - ACTIONS(5304), 1, + ACTIONS(5302), 1, anon_sym_BANG, - ACTIONS(5573), 1, + ACTIONS(5549), 1, anon_sym_LBRACK, - ACTIONS(6343), 1, + ACTIONS(6355), 1, anon_sym_switch, - ACTIONS(6357), 1, + ACTIONS(6369), 1, anon_sym_with, - ACTIONS(6813), 1, + ACTIONS(6811), 1, anon_sym_as, - ACTIONS(6815), 1, - anon_sym_is, - ACTIONS(7183), 1, + ACTIONS(7231), 1, + anon_sym_QMARK, + ACTIONS(7237), 1, anon_sym_SLASH, - ACTIONS(7187), 1, - anon_sym_GT_GT, - ACTIONS(7189), 1, - anon_sym_DOT_DOT, - ACTIONS(7195), 1, - anon_sym_AMP, - ACTIONS(7201), 1, + ACTIONS(7239), 1, anon_sym_CARET, - ACTIONS(7203), 1, + ACTIONS(7241), 1, anon_sym_PIPE, - ACTIONS(7205), 1, + ACTIONS(7243), 1, + anon_sym_AMP, + ACTIONS(7247), 1, + anon_sym_GT_GT, + ACTIONS(7253), 1, + anon_sym_DOT_DOT, + ACTIONS(7255), 1, anon_sym_AMP_AMP, - ACTIONS(7207), 1, + ACTIONS(7257), 1, anon_sym_PIPE_PIPE, - ACTIONS(7209), 1, + ACTIONS(7259), 1, anon_sym_QMARK_QMARK, - ACTIONS(7237), 1, - anon_sym_QMARK, - ACTIONS(8597), 1, - anon_sym_SEMI, - STATE(2485), 1, + ACTIONS(7261), 1, + anon_sym_is, + ACTIONS(8545), 1, + anon_sym_RPAREN, + STATE(2467), 1, sym_bracketed_argument_list, - STATE(3487), 1, + STATE(3381), 1, sym_argument_list, - ACTIONS(5306), 2, + ACTIONS(5304), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7179), 2, + ACTIONS(7229), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(7233), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7181), 2, + ACTIONS(7235), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7185), 2, + ACTIONS(7245), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7193), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(7197), 2, + ACTIONS(7249), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7199), 2, + ACTIONS(7251), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - STATE(5540), 9, + STATE(5485), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -679682,7 +674505,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [193608] = 40, + [188335] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -679703,72 +674526,72 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4100), 1, + ACTIONS(4042), 1, anon_sym_DOT, - ACTIONS(4102), 1, + ACTIONS(4044), 1, anon_sym_DASH_GT, - ACTIONS(5264), 1, + ACTIONS(5257), 1, anon_sym_LPAREN, - ACTIONS(5304), 1, + ACTIONS(5302), 1, anon_sym_BANG, - ACTIONS(5573), 1, + ACTIONS(5549), 1, anon_sym_LBRACK, - ACTIONS(5899), 1, - anon_sym_on, - ACTIONS(6343), 1, + ACTIONS(6355), 1, anon_sym_switch, - ACTIONS(6357), 1, + ACTIONS(6369), 1, anon_sym_with, - ACTIONS(8394), 1, + ACTIONS(7195), 1, + anon_sym_as, + ACTIONS(8152), 1, anon_sym_QMARK, - ACTIONS(8400), 1, + ACTIONS(8158), 1, anon_sym_SLASH, - ACTIONS(8402), 1, + ACTIONS(8160), 1, anon_sym_CARET, - ACTIONS(8404), 1, + ACTIONS(8162), 1, anon_sym_PIPE, - ACTIONS(8406), 1, + ACTIONS(8164), 1, anon_sym_AMP, - ACTIONS(8410), 1, + ACTIONS(8168), 1, anon_sym_GT_GT, - ACTIONS(8416), 1, + ACTIONS(8174), 1, anon_sym_DOT_DOT, - ACTIONS(8418), 1, + ACTIONS(8176), 1, anon_sym_AMP_AMP, - ACTIONS(8420), 1, + ACTIONS(8178), 1, anon_sym_PIPE_PIPE, - ACTIONS(8422), 1, + ACTIONS(8180), 1, anon_sym_QMARK_QMARK, - ACTIONS(8426), 1, - anon_sym_as, - ACTIONS(8428), 1, + ACTIONS(8182), 1, anon_sym_is, - STATE(2485), 1, + ACTIONS(8547), 1, + anon_sym_COLON, + STATE(2467), 1, sym_bracketed_argument_list, - STATE(3487), 1, + STATE(3381), 1, sym_argument_list, - ACTIONS(5306), 2, + ACTIONS(5304), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(8392), 2, + ACTIONS(8150), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(8396), 2, + ACTIONS(8154), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(8398), 2, + ACTIONS(8156), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8408), 2, + ACTIONS(8166), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(8412), 2, + ACTIONS(8170), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(8414), 2, + ACTIONS(8172), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - STATE(5541), 9, + STATE(5486), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -679778,7 +674601,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [193744] = 22, + [188471] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -679799,36 +674622,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4100), 1, - anon_sym_DOT, - ACTIONS(4102), 1, - anon_sym_DASH_GT, - ACTIONS(5264), 1, - anon_sym_LPAREN, - ACTIONS(5304), 1, - anon_sym_BANG, - ACTIONS(5573), 1, - anon_sym_LBRACK, - ACTIONS(8416), 1, - anon_sym_DOT_DOT, - STATE(2485), 1, - sym_bracketed_argument_list, - STATE(3487), 1, - sym_argument_list, - ACTIONS(5306), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1223), 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(5542), 9, + ACTIONS(8220), 1, + anon_sym_and, + ACTIONS(8549), 1, + anon_sym_or, + STATE(5487), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -679838,7 +674636,23 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(1221), 17, + ACTIONS(5360), 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(5358), 23, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_STAR, anon_sym_PERCENT, anon_sym_CARET, @@ -679849,14 +674663,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_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_QMARK_QMARK, - anon_sym_on, + anon_sym_by, anon_sym_as, anon_sym_is, + anon_sym_DASH_GT, anon_sym_with, - [193844] = 40, + [188557] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -679877,72 +674693,72 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4100), 1, + ACTIONS(4042), 1, anon_sym_DOT, - ACTIONS(4102), 1, + ACTIONS(4044), 1, anon_sym_DASH_GT, - ACTIONS(5264), 1, + ACTIONS(5257), 1, anon_sym_LPAREN, - ACTIONS(5304), 1, + ACTIONS(5302), 1, anon_sym_BANG, - ACTIONS(5573), 1, + ACTIONS(5549), 1, anon_sym_LBRACK, - ACTIONS(6343), 1, + ACTIONS(6355), 1, anon_sym_switch, - ACTIONS(6357), 1, + ACTIONS(6369), 1, anon_sym_with, - ACTIONS(7037), 1, - anon_sym_as, - ACTIONS(8234), 1, + ACTIONS(8268), 1, anon_sym_QMARK, - ACTIONS(8236), 1, - anon_sym_DOT_DOT, - ACTIONS(8238), 1, - anon_sym_is, - ACTIONS(8248), 1, + ACTIONS(8274), 1, anon_sym_SLASH, - ACTIONS(8250), 1, + ACTIONS(8276), 1, anon_sym_CARET, - ACTIONS(8252), 1, + ACTIONS(8278), 1, anon_sym_PIPE, - ACTIONS(8254), 1, + ACTIONS(8280), 1, anon_sym_AMP, - ACTIONS(8258), 1, + ACTIONS(8284), 1, anon_sym_GT_GT, - ACTIONS(8264), 1, + ACTIONS(8290), 1, + anon_sym_DOT_DOT, + ACTIONS(8292), 1, anon_sym_AMP_AMP, - ACTIONS(8266), 1, + ACTIONS(8294), 1, anon_sym_PIPE_PIPE, - ACTIONS(8268), 1, + ACTIONS(8296), 1, anon_sym_QMARK_QMARK, - ACTIONS(8599), 1, - anon_sym_COLON, - STATE(2485), 1, + ACTIONS(8300), 1, + anon_sym_as, + ACTIONS(8302), 1, + anon_sym_is, + ACTIONS(8551), 1, + anon_sym_by, + STATE(2467), 1, sym_bracketed_argument_list, - STATE(3487), 1, + STATE(3381), 1, sym_argument_list, - ACTIONS(5306), 2, + ACTIONS(5304), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(8242), 2, + ACTIONS(8266), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(8244), 2, + ACTIONS(8270), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(8246), 2, + ACTIONS(8272), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8256), 2, + ACTIONS(8282), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(8260), 2, + ACTIONS(8286), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(8262), 2, + ACTIONS(8288), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - STATE(5543), 9, + STATE(5488), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -679952,7 +674768,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [193980] = 40, + [188693] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -679973,72 +674789,72 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4100), 1, + ACTIONS(4042), 1, anon_sym_DOT, - ACTIONS(4102), 1, + ACTIONS(4044), 1, anon_sym_DASH_GT, - ACTIONS(5264), 1, + ACTIONS(5257), 1, anon_sym_LPAREN, - ACTIONS(5304), 1, + ACTIONS(5302), 1, anon_sym_BANG, - ACTIONS(5573), 1, + ACTIONS(5549), 1, anon_sym_LBRACK, - ACTIONS(6343), 1, + ACTIONS(6355), 1, anon_sym_switch, - ACTIONS(6357), 1, + ACTIONS(6369), 1, anon_sym_with, - ACTIONS(8150), 1, + ACTIONS(6811), 1, + anon_sym_as, + ACTIONS(7231), 1, anon_sym_QMARK, - ACTIONS(8156), 1, + ACTIONS(7237), 1, anon_sym_SLASH, - ACTIONS(8158), 1, + ACTIONS(7239), 1, anon_sym_CARET, - ACTIONS(8160), 1, + ACTIONS(7241), 1, anon_sym_PIPE, - ACTIONS(8162), 1, + ACTIONS(7243), 1, anon_sym_AMP, - ACTIONS(8166), 1, + ACTIONS(7247), 1, anon_sym_GT_GT, - ACTIONS(8172), 1, + ACTIONS(7253), 1, anon_sym_DOT_DOT, - ACTIONS(8174), 1, + ACTIONS(7255), 1, anon_sym_AMP_AMP, - ACTIONS(8176), 1, + ACTIONS(7257), 1, anon_sym_PIPE_PIPE, - ACTIONS(8178), 1, + ACTIONS(7259), 1, anon_sym_QMARK_QMARK, - ACTIONS(8182), 1, - anon_sym_as, - ACTIONS(8184), 1, + ACTIONS(7261), 1, anon_sym_is, - ACTIONS(8601), 1, - anon_sym_by, - STATE(2485), 1, + ACTIONS(8553), 1, + anon_sym_COMMA, + STATE(2467), 1, sym_bracketed_argument_list, - STATE(3487), 1, + STATE(3381), 1, sym_argument_list, - ACTIONS(5306), 2, + ACTIONS(5304), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(8148), 2, + ACTIONS(7229), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(8152), 2, + ACTIONS(7233), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(8154), 2, + ACTIONS(7235), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8164), 2, + ACTIONS(7245), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(8168), 2, + ACTIONS(7249), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(8170), 2, + ACTIONS(7251), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - STATE(5544), 9, + STATE(5489), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -680048,7 +674864,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [194116] = 40, + [188829] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -680069,82 +674885,56 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4100), 1, - anon_sym_DOT, - ACTIONS(4102), 1, - anon_sym_DASH_GT, - ACTIONS(5264), 1, - anon_sym_LPAREN, - ACTIONS(5304), 1, - anon_sym_BANG, - ACTIONS(5573), 1, - anon_sym_LBRACK, - ACTIONS(5899), 1, - anon_sym_EQ_GT, - ACTIONS(6343), 1, - anon_sym_switch, - ACTIONS(6357), 1, - anon_sym_with, - ACTIONS(6813), 1, - anon_sym_as, - ACTIONS(8478), 1, + ACTIONS(8555), 1, + anon_sym_and, + 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, + ACTIONS(6097), 11, + anon_sym_LT, + anon_sym_GT, anon_sym_QMARK, - ACTIONS(8484), 1, + anon_sym_BANG, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_SLASH, - ACTIONS(8486), 1, - anon_sym_CARET, - ACTIONS(8488), 1, anon_sym_PIPE, - ACTIONS(8490), 1, anon_sym_AMP, - ACTIONS(8494), 1, anon_sym_GT_GT, - ACTIONS(8500), 1, - anon_sym_DOT_DOT, - ACTIONS(8502), 1, - anon_sym_AMP_AMP, - ACTIONS(8504), 1, - anon_sym_PIPE_PIPE, - ACTIONS(8506), 1, - anon_sym_QMARK_QMARK, - ACTIONS(8508), 1, - anon_sym_is, - STATE(2485), 1, - sym_bracketed_argument_list, - STATE(3487), 1, - sym_argument_list, - ACTIONS(5306), 2, + anon_sym_DOT, + ACTIONS(6095), 24, + anon_sym_LBRACK, + anon_sym_LPAREN, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(8476), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(8480), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(8482), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8492), 2, + anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(8496), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(8498), 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, - [194252] = 22, + 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, + [188913] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -680165,36 +674955,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4100), 1, - anon_sym_DOT, - ACTIONS(4102), 1, - anon_sym_DASH_GT, - ACTIONS(5264), 1, - anon_sym_LPAREN, - ACTIONS(5304), 1, - anon_sym_BANG, - ACTIONS(5573), 1, - anon_sym_LBRACK, - ACTIONS(8500), 1, - anon_sym_DOT_DOT, - STATE(2485), 1, - sym_bracketed_argument_list, - STATE(3487), 1, - sym_argument_list, - ACTIONS(5306), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1223), 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(5546), 9, + ACTIONS(8220), 1, + anon_sym_and, + ACTIONS(8549), 1, + anon_sym_or, + STATE(5491), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -680204,7 +674969,23 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(1221), 17, + ACTIONS(6109), 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(6107), 23, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_STAR, anon_sym_PERCENT, anon_sym_CARET, @@ -680214,15 +674995,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_by, anon_sym_as, anon_sym_is, + anon_sym_DASH_GT, anon_sym_with, - [194352] = 40, + [188999] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -680243,72 +675026,72 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4100), 1, + ACTIONS(4042), 1, anon_sym_DOT, - ACTIONS(4102), 1, + ACTIONS(4044), 1, anon_sym_DASH_GT, - ACTIONS(5264), 1, + ACTIONS(5257), 1, anon_sym_LPAREN, - ACTIONS(5304), 1, + ACTIONS(5302), 1, anon_sym_BANG, - ACTIONS(5573), 1, + ACTIONS(5549), 1, anon_sym_LBRACK, - ACTIONS(6343), 1, + ACTIONS(6355), 1, anon_sym_switch, - ACTIONS(6357), 1, + ACTIONS(6369), 1, anon_sym_with, - ACTIONS(7037), 1, + ACTIONS(6811), 1, anon_sym_as, - ACTIONS(8234), 1, + ACTIONS(7231), 1, anon_sym_QMARK, - ACTIONS(8236), 1, - anon_sym_DOT_DOT, - ACTIONS(8238), 1, - anon_sym_is, - ACTIONS(8248), 1, + ACTIONS(7237), 1, anon_sym_SLASH, - ACTIONS(8250), 1, + ACTIONS(7239), 1, anon_sym_CARET, - ACTIONS(8252), 1, + ACTIONS(7241), 1, anon_sym_PIPE, - ACTIONS(8254), 1, + ACTIONS(7243), 1, anon_sym_AMP, - ACTIONS(8258), 1, + ACTIONS(7247), 1, anon_sym_GT_GT, - ACTIONS(8264), 1, + ACTIONS(7253), 1, + anon_sym_DOT_DOT, + ACTIONS(7255), 1, anon_sym_AMP_AMP, - ACTIONS(8266), 1, + ACTIONS(7257), 1, anon_sym_PIPE_PIPE, - ACTIONS(8268), 1, + ACTIONS(7259), 1, anon_sym_QMARK_QMARK, - ACTIONS(8603), 1, - anon_sym_COLON, - STATE(2485), 1, + ACTIONS(7261), 1, + anon_sym_is, + ACTIONS(8557), 1, + anon_sym_RPAREN, + STATE(2467), 1, sym_bracketed_argument_list, - STATE(3487), 1, + STATE(3381), 1, sym_argument_list, - ACTIONS(5306), 2, + ACTIONS(5304), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(8242), 2, + ACTIONS(7229), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(8244), 2, + ACTIONS(7233), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(8246), 2, + ACTIONS(7235), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8256), 2, + ACTIONS(7245), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(8260), 2, + ACTIONS(7249), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(8262), 2, + ACTIONS(7251), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - STATE(5547), 9, + STATE(5492), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -680318,7 +675101,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [194488] = 40, + [189135] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -680339,107 +675122,72 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4100), 1, + ACTIONS(4042), 1, anon_sym_DOT, - ACTIONS(4102), 1, + ACTIONS(4044), 1, anon_sym_DASH_GT, - ACTIONS(5264), 1, + ACTIONS(5257), 1, anon_sym_LPAREN, - ACTIONS(5304), 1, + ACTIONS(5302), 1, anon_sym_BANG, - ACTIONS(5573), 1, + ACTIONS(5549), 1, anon_sym_LBRACK, - ACTIONS(6343), 1, + ACTIONS(6355), 1, anon_sym_switch, - ACTIONS(6357), 1, + ACTIONS(6369), 1, anon_sym_with, - ACTIONS(8150), 1, + ACTIONS(7195), 1, + anon_sym_as, + ACTIONS(8152), 1, anon_sym_QMARK, - ACTIONS(8156), 1, - anon_sym_SLASH, ACTIONS(8158), 1, - anon_sym_CARET, + anon_sym_SLASH, ACTIONS(8160), 1, - anon_sym_PIPE, + anon_sym_CARET, ACTIONS(8162), 1, + anon_sym_PIPE, + ACTIONS(8164), 1, anon_sym_AMP, - ACTIONS(8166), 1, + ACTIONS(8168), 1, anon_sym_GT_GT, - ACTIONS(8172), 1, - anon_sym_DOT_DOT, ACTIONS(8174), 1, - anon_sym_AMP_AMP, + anon_sym_DOT_DOT, ACTIONS(8176), 1, - anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, ACTIONS(8178), 1, + anon_sym_PIPE_PIPE, + ACTIONS(8180), 1, anon_sym_QMARK_QMARK, ACTIONS(8182), 1, - anon_sym_as, - ACTIONS(8184), 1, anon_sym_is, - ACTIONS(8605), 1, - anon_sym_by, - STATE(2485), 1, + ACTIONS(8559), 1, + anon_sym_COLON, + STATE(2467), 1, sym_bracketed_argument_list, - STATE(3487), 1, + STATE(3381), 1, sym_argument_list, - ACTIONS(5306), 2, + ACTIONS(5304), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(8148), 2, + ACTIONS(8150), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(8152), 2, + ACTIONS(8154), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(8154), 2, + ACTIONS(8156), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8164), 2, + ACTIONS(8166), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(8168), 2, + ACTIONS(8170), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(8170), 2, + ACTIONS(8172), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - 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, - [194624] = 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(4975), 3, - anon_sym_LBRACK, - anon_sym_LPAREN, - aux_sym_preproc_if_token1, - STATE(5549), 9, + STATE(5493), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -680449,41 +675197,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(4973), 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, - [194706] = 40, + [189271] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -680504,72 +675218,72 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(2005), 1, - anon_sym_SEMI, - ACTIONS(4100), 1, + ACTIONS(4042), 1, anon_sym_DOT, - ACTIONS(4102), 1, + ACTIONS(4044), 1, anon_sym_DASH_GT, - ACTIONS(5264), 1, + ACTIONS(5257), 1, anon_sym_LPAREN, - ACTIONS(5304), 1, + ACTIONS(5302), 1, anon_sym_BANG, - ACTIONS(5573), 1, + ACTIONS(5549), 1, anon_sym_LBRACK, - ACTIONS(6343), 1, + ACTIONS(5849), 1, + anon_sym_equals, + ACTIONS(6355), 1, anon_sym_switch, - ACTIONS(6357), 1, + ACTIONS(6369), 1, anon_sym_with, - ACTIONS(6813), 1, - anon_sym_as, - ACTIONS(6815), 1, - anon_sym_is, - ACTIONS(7183), 1, + ACTIONS(8392), 1, + anon_sym_QMARK, + ACTIONS(8398), 1, anon_sym_SLASH, - ACTIONS(7187), 1, - anon_sym_GT_GT, - ACTIONS(7189), 1, - anon_sym_DOT_DOT, - ACTIONS(7195), 1, - anon_sym_AMP, - ACTIONS(7201), 1, + ACTIONS(8400), 1, anon_sym_CARET, - ACTIONS(7203), 1, + ACTIONS(8402), 1, anon_sym_PIPE, - ACTIONS(7205), 1, + ACTIONS(8404), 1, + anon_sym_AMP, + ACTIONS(8408), 1, + anon_sym_GT_GT, + ACTIONS(8414), 1, + anon_sym_DOT_DOT, + ACTIONS(8416), 1, anon_sym_AMP_AMP, - ACTIONS(7207), 1, + ACTIONS(8418), 1, anon_sym_PIPE_PIPE, - ACTIONS(7209), 1, + ACTIONS(8420), 1, anon_sym_QMARK_QMARK, - ACTIONS(7237), 1, - anon_sym_QMARK, - STATE(2485), 1, + ACTIONS(8424), 1, + anon_sym_as, + ACTIONS(8426), 1, + anon_sym_is, + STATE(2467), 1, sym_bracketed_argument_list, - STATE(3487), 1, + STATE(3381), 1, sym_argument_list, - ACTIONS(5306), 2, + ACTIONS(5304), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7179), 2, + ACTIONS(8390), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(8394), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7181), 2, + ACTIONS(8396), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7185), 2, + ACTIONS(8406), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7193), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(7197), 2, + ACTIONS(8410), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7199), 2, + ACTIONS(8412), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - STATE(5550), 9, + STATE(5494), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -680579,7 +675293,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [194842] = 40, + [189407] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -680600,72 +675314,72 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4100), 1, + ACTIONS(4042), 1, anon_sym_DOT, - ACTIONS(4102), 1, + ACTIONS(4044), 1, anon_sym_DASH_GT, - ACTIONS(5264), 1, + ACTIONS(4996), 1, + anon_sym_COLON, + ACTIONS(5257), 1, anon_sym_LPAREN, - ACTIONS(5304), 1, + ACTIONS(5302), 1, anon_sym_BANG, - ACTIONS(5573), 1, + ACTIONS(5549), 1, anon_sym_LBRACK, - ACTIONS(6343), 1, + ACTIONS(6355), 1, anon_sym_switch, - ACTIONS(6357), 1, + ACTIONS(6369), 1, anon_sym_with, - ACTIONS(8150), 1, + ACTIONS(7195), 1, + anon_sym_as, + ACTIONS(8152), 1, anon_sym_QMARK, - ACTIONS(8156), 1, - anon_sym_SLASH, ACTIONS(8158), 1, - anon_sym_CARET, + anon_sym_SLASH, ACTIONS(8160), 1, - anon_sym_PIPE, + anon_sym_CARET, ACTIONS(8162), 1, + anon_sym_PIPE, + ACTIONS(8164), 1, anon_sym_AMP, - ACTIONS(8166), 1, + ACTIONS(8168), 1, anon_sym_GT_GT, - ACTIONS(8172), 1, - anon_sym_DOT_DOT, ACTIONS(8174), 1, - anon_sym_AMP_AMP, + anon_sym_DOT_DOT, ACTIONS(8176), 1, - anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, ACTIONS(8178), 1, + anon_sym_PIPE_PIPE, + ACTIONS(8180), 1, anon_sym_QMARK_QMARK, ACTIONS(8182), 1, - anon_sym_as, - ACTIONS(8184), 1, anon_sym_is, - ACTIONS(8607), 1, - anon_sym_by, - STATE(2485), 1, + STATE(2467), 1, sym_bracketed_argument_list, - STATE(3487), 1, + STATE(3381), 1, sym_argument_list, - ACTIONS(5306), 2, + ACTIONS(5304), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(8148), 2, + ACTIONS(8150), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(8152), 2, + ACTIONS(8154), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(8154), 2, + ACTIONS(8156), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8164), 2, + ACTIONS(8166), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(8168), 2, + ACTIONS(8170), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(8170), 2, + ACTIONS(8172), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - STATE(5551), 9, + STATE(5495), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -680675,7 +675389,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [194978] = 40, + [189543] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -680696,72 +675410,72 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4100), 1, + ACTIONS(4042), 1, anon_sym_DOT, - ACTIONS(4102), 1, + ACTIONS(4044), 1, anon_sym_DASH_GT, - ACTIONS(5264), 1, + ACTIONS(5257), 1, anon_sym_LPAREN, - ACTIONS(5304), 1, + ACTIONS(5302), 1, anon_sym_BANG, - ACTIONS(5573), 1, + ACTIONS(5549), 1, anon_sym_LBRACK, - ACTIONS(6343), 1, + ACTIONS(6355), 1, anon_sym_switch, - ACTIONS(6357), 1, + ACTIONS(6369), 1, anon_sym_with, - ACTIONS(7037), 1, + ACTIONS(6811), 1, anon_sym_as, - ACTIONS(8234), 1, - anon_sym_QMARK, - ACTIONS(8236), 1, - anon_sym_DOT_DOT, - ACTIONS(8238), 1, + ACTIONS(6813), 1, anon_sym_is, - ACTIONS(8248), 1, + ACTIONS(6985), 1, anon_sym_SLASH, - ACTIONS(8250), 1, + ACTIONS(6989), 1, + anon_sym_GT_GT, + ACTIONS(6991), 1, + anon_sym_DOT_DOT, + ACTIONS(7099), 1, + anon_sym_QMARK, + ACTIONS(7101), 1, anon_sym_CARET, - ACTIONS(8252), 1, + ACTIONS(7103), 1, anon_sym_PIPE, - ACTIONS(8254), 1, + ACTIONS(7105), 1, anon_sym_AMP, - ACTIONS(8258), 1, - anon_sym_GT_GT, - ACTIONS(8264), 1, + ACTIONS(7111), 1, anon_sym_AMP_AMP, - ACTIONS(8266), 1, + ACTIONS(7113), 1, anon_sym_PIPE_PIPE, - ACTIONS(8268), 1, + ACTIONS(7115), 1, anon_sym_QMARK_QMARK, - ACTIONS(8609), 1, - anon_sym_COLON, - STATE(2485), 1, + ACTIONS(8561), 1, + anon_sym_SEMI, + STATE(2467), 1, sym_bracketed_argument_list, - STATE(3487), 1, + STATE(3381), 1, sym_argument_list, - ACTIONS(5306), 2, + ACTIONS(5304), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(8242), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(8244), 2, + ACTIONS(6981), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(8246), 2, + ACTIONS(6983), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8256), 2, + ACTIONS(6987), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(8260), 2, + ACTIONS(7097), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(7107), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(8262), 2, + ACTIONS(7109), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - STATE(5552), 9, + STATE(5496), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -680771,7 +675485,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [195114] = 40, + [189679] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -680792,72 +675506,72 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4100), 1, + ACTIONS(4042), 1, anon_sym_DOT, - ACTIONS(4102), 1, + ACTIONS(4044), 1, anon_sym_DASH_GT, - ACTIONS(5264), 1, + ACTIONS(5257), 1, anon_sym_LPAREN, - ACTIONS(5304), 1, + ACTIONS(5302), 1, anon_sym_BANG, - ACTIONS(5573), 1, + ACTIONS(5549), 1, anon_sym_LBRACK, - ACTIONS(6343), 1, + ACTIONS(5801), 1, + anon_sym_by, + ACTIONS(6355), 1, anon_sym_switch, - ACTIONS(6357), 1, + ACTIONS(6369), 1, anon_sym_with, - ACTIONS(8150), 1, + ACTIONS(8268), 1, anon_sym_QMARK, - ACTIONS(8156), 1, + ACTIONS(8274), 1, anon_sym_SLASH, - ACTIONS(8158), 1, + ACTIONS(8276), 1, anon_sym_CARET, - ACTIONS(8160), 1, + ACTIONS(8278), 1, anon_sym_PIPE, - ACTIONS(8162), 1, + ACTIONS(8280), 1, anon_sym_AMP, - ACTIONS(8166), 1, + ACTIONS(8284), 1, anon_sym_GT_GT, - ACTIONS(8172), 1, + ACTIONS(8290), 1, anon_sym_DOT_DOT, - ACTIONS(8174), 1, + ACTIONS(8292), 1, anon_sym_AMP_AMP, - ACTIONS(8176), 1, + ACTIONS(8294), 1, anon_sym_PIPE_PIPE, - ACTIONS(8178), 1, + ACTIONS(8296), 1, anon_sym_QMARK_QMARK, - ACTIONS(8182), 1, + ACTIONS(8300), 1, anon_sym_as, - ACTIONS(8184), 1, + ACTIONS(8302), 1, anon_sym_is, - ACTIONS(8611), 1, - anon_sym_by, - STATE(2485), 1, + STATE(2467), 1, sym_bracketed_argument_list, - STATE(3487), 1, + STATE(3381), 1, sym_argument_list, - ACTIONS(5306), 2, + ACTIONS(5304), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(8148), 2, + ACTIONS(8266), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(8152), 2, + ACTIONS(8270), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(8154), 2, + ACTIONS(8272), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8164), 2, + ACTIONS(8282), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(8168), 2, + ACTIONS(8286), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(8170), 2, + ACTIONS(8288), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - STATE(5553), 9, + STATE(5497), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -680867,7 +675581,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [195250] = 40, + [189815] = 22, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -680888,72 +675602,36 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4100), 1, + ACTIONS(4042), 1, anon_sym_DOT, - ACTIONS(4102), 1, + ACTIONS(4044), 1, anon_sym_DASH_GT, - ACTIONS(5264), 1, + ACTIONS(5257), 1, anon_sym_LPAREN, - ACTIONS(5304), 1, + ACTIONS(5302), 1, anon_sym_BANG, - ACTIONS(5573), 1, + ACTIONS(5549), 1, anon_sym_LBRACK, - ACTIONS(6343), 1, - anon_sym_switch, - ACTIONS(6357), 1, - anon_sym_with, - ACTIONS(8150), 1, - anon_sym_QMARK, - ACTIONS(8156), 1, - anon_sym_SLASH, - ACTIONS(8158), 1, - anon_sym_CARET, - ACTIONS(8160), 1, - anon_sym_PIPE, - ACTIONS(8162), 1, - anon_sym_AMP, - ACTIONS(8166), 1, - anon_sym_GT_GT, - ACTIONS(8172), 1, + ACTIONS(8290), 1, anon_sym_DOT_DOT, - ACTIONS(8174), 1, - anon_sym_AMP_AMP, - ACTIONS(8176), 1, - anon_sym_PIPE_PIPE, - ACTIONS(8178), 1, - anon_sym_QMARK_QMARK, - ACTIONS(8182), 1, - anon_sym_as, - ACTIONS(8184), 1, - anon_sym_is, - ACTIONS(8613), 1, - anon_sym_by, - STATE(2485), 1, + STATE(2467), 1, sym_bracketed_argument_list, - STATE(3487), 1, + STATE(3381), 1, sym_argument_list, - ACTIONS(5306), 2, + ACTIONS(5304), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(8148), 2, + ACTIONS(1161), 9, anon_sym_LT, anon_sym_GT, - ACTIONS(8152), 2, + anon_sym_QMARK, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(8154), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(8164), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - ACTIONS(8168), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(8170), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - STATE(5554), 9, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT_GT, + STATE(5498), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -680963,7 +675641,25 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [195386] = 40, + ACTIONS(1147), 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, + [189915] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -680984,72 +675680,72 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4100), 1, + ACTIONS(4042), 1, anon_sym_DOT, - ACTIONS(4102), 1, + ACTIONS(4044), 1, anon_sym_DASH_GT, - ACTIONS(5264), 1, + ACTIONS(5257), 1, anon_sym_LPAREN, - ACTIONS(5304), 1, + ACTIONS(5302), 1, anon_sym_BANG, - ACTIONS(5573), 1, + ACTIONS(5549), 1, anon_sym_LBRACK, - ACTIONS(6343), 1, + ACTIONS(6355), 1, anon_sym_switch, - ACTIONS(6357), 1, + ACTIONS(6369), 1, anon_sym_with, - ACTIONS(8150), 1, + ACTIONS(7195), 1, + anon_sym_as, + ACTIONS(8152), 1, anon_sym_QMARK, - ACTIONS(8156), 1, - anon_sym_SLASH, ACTIONS(8158), 1, - anon_sym_CARET, + anon_sym_SLASH, ACTIONS(8160), 1, - anon_sym_PIPE, + anon_sym_CARET, ACTIONS(8162), 1, + anon_sym_PIPE, + ACTIONS(8164), 1, anon_sym_AMP, - ACTIONS(8166), 1, + ACTIONS(8168), 1, anon_sym_GT_GT, - ACTIONS(8172), 1, - anon_sym_DOT_DOT, ACTIONS(8174), 1, - anon_sym_AMP_AMP, + anon_sym_DOT_DOT, ACTIONS(8176), 1, - anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, ACTIONS(8178), 1, + anon_sym_PIPE_PIPE, + ACTIONS(8180), 1, anon_sym_QMARK_QMARK, ACTIONS(8182), 1, - anon_sym_as, - ACTIONS(8184), 1, anon_sym_is, - ACTIONS(8615), 1, - anon_sym_by, - STATE(2485), 1, + ACTIONS(8563), 1, + anon_sym_COLON, + STATE(2467), 1, sym_bracketed_argument_list, - STATE(3487), 1, + STATE(3381), 1, sym_argument_list, - ACTIONS(5306), 2, + ACTIONS(5304), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(8148), 2, + ACTIONS(8150), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(8152), 2, + ACTIONS(8154), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(8154), 2, + ACTIONS(8156), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8164), 2, + ACTIONS(8166), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(8168), 2, + ACTIONS(8170), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(8170), 2, + ACTIONS(8172), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - STATE(5555), 9, + STATE(5499), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -681059,7 +675755,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [195522] = 40, + [190051] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -681080,72 +675776,72 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4100), 1, + ACTIONS(4042), 1, anon_sym_DOT, - ACTIONS(4102), 1, + ACTIONS(4044), 1, anon_sym_DASH_GT, - ACTIONS(5264), 1, + ACTIONS(5257), 1, anon_sym_LPAREN, - ACTIONS(5304), 1, + ACTIONS(5302), 1, anon_sym_BANG, - ACTIONS(5573), 1, + ACTIONS(5549), 1, anon_sym_LBRACK, - ACTIONS(6343), 1, + ACTIONS(6355), 1, anon_sym_switch, - ACTIONS(6357), 1, + ACTIONS(6369), 1, anon_sym_with, - ACTIONS(8150), 1, - anon_sym_QMARK, - ACTIONS(8156), 1, + ACTIONS(6811), 1, + anon_sym_as, + ACTIONS(6813), 1, + anon_sym_is, + ACTIONS(6985), 1, anon_sym_SLASH, - ACTIONS(8158), 1, + ACTIONS(6989), 1, + anon_sym_GT_GT, + ACTIONS(6991), 1, + anon_sym_DOT_DOT, + ACTIONS(7099), 1, + anon_sym_QMARK, + ACTIONS(7101), 1, anon_sym_CARET, - ACTIONS(8160), 1, + ACTIONS(7103), 1, anon_sym_PIPE, - ACTIONS(8162), 1, + ACTIONS(7105), 1, anon_sym_AMP, - ACTIONS(8166), 1, - anon_sym_GT_GT, - ACTIONS(8172), 1, - anon_sym_DOT_DOT, - ACTIONS(8174), 1, + ACTIONS(7111), 1, anon_sym_AMP_AMP, - ACTIONS(8176), 1, + ACTIONS(7113), 1, anon_sym_PIPE_PIPE, - ACTIONS(8178), 1, + ACTIONS(7115), 1, anon_sym_QMARK_QMARK, - ACTIONS(8182), 1, - anon_sym_as, - ACTIONS(8184), 1, - anon_sym_is, - ACTIONS(8617), 1, - anon_sym_by, - STATE(2485), 1, + ACTIONS(8565), 1, + anon_sym_SEMI, + STATE(2467), 1, sym_bracketed_argument_list, - STATE(3487), 1, + STATE(3381), 1, sym_argument_list, - ACTIONS(5306), 2, + ACTIONS(5304), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(8148), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(8152), 2, + ACTIONS(6981), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(8154), 2, + ACTIONS(6983), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8164), 2, + ACTIONS(6987), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(8168), 2, + ACTIONS(7097), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(7107), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(8170), 2, + ACTIONS(7109), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - STATE(5556), 9, + STATE(5500), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -681155,7 +675851,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [195658] = 40, + [190187] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -681176,72 +675872,72 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4100), 1, + ACTIONS(4042), 1, anon_sym_DOT, - ACTIONS(4102), 1, + ACTIONS(4044), 1, anon_sym_DASH_GT, - ACTIONS(5264), 1, + ACTIONS(5257), 1, anon_sym_LPAREN, - ACTIONS(5304), 1, + ACTIONS(5302), 1, anon_sym_BANG, - ACTIONS(5573), 1, + ACTIONS(5549), 1, anon_sym_LBRACK, - ACTIONS(6343), 1, + ACTIONS(6355), 1, anon_sym_switch, - ACTIONS(6357), 1, + ACTIONS(6369), 1, anon_sym_with, - ACTIONS(8150), 1, + ACTIONS(8268), 1, anon_sym_QMARK, - ACTIONS(8156), 1, + ACTIONS(8274), 1, anon_sym_SLASH, - ACTIONS(8158), 1, + ACTIONS(8276), 1, anon_sym_CARET, - ACTIONS(8160), 1, + ACTIONS(8278), 1, anon_sym_PIPE, - ACTIONS(8162), 1, + ACTIONS(8280), 1, anon_sym_AMP, - ACTIONS(8166), 1, + ACTIONS(8284), 1, anon_sym_GT_GT, - ACTIONS(8172), 1, + ACTIONS(8290), 1, anon_sym_DOT_DOT, - ACTIONS(8174), 1, + ACTIONS(8292), 1, anon_sym_AMP_AMP, - ACTIONS(8176), 1, + ACTIONS(8294), 1, anon_sym_PIPE_PIPE, - ACTIONS(8178), 1, + ACTIONS(8296), 1, anon_sym_QMARK_QMARK, - ACTIONS(8182), 1, + ACTIONS(8300), 1, anon_sym_as, - ACTIONS(8184), 1, + ACTIONS(8302), 1, anon_sym_is, - ACTIONS(8619), 1, + ACTIONS(8567), 1, anon_sym_by, - STATE(2485), 1, + STATE(2467), 1, sym_bracketed_argument_list, - STATE(3487), 1, + STATE(3381), 1, sym_argument_list, - ACTIONS(5306), 2, + ACTIONS(5304), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(8148), 2, + ACTIONS(8266), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(8152), 2, + ACTIONS(8270), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(8154), 2, + ACTIONS(8272), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8164), 2, + ACTIONS(8282), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(8168), 2, + ACTIONS(8286), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(8170), 2, + ACTIONS(8288), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - STATE(5557), 9, + STATE(5501), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -681251,7 +675947,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [195794] = 40, + [190323] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -681272,72 +675968,72 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4100), 1, + ACTIONS(4042), 1, anon_sym_DOT, - ACTIONS(4102), 1, + ACTIONS(4044), 1, anon_sym_DASH_GT, - ACTIONS(5264), 1, + ACTIONS(5257), 1, anon_sym_LPAREN, - ACTIONS(5304), 1, + ACTIONS(5302), 1, anon_sym_BANG, - ACTIONS(5573), 1, + ACTIONS(5549), 1, anon_sym_LBRACK, - ACTIONS(6343), 1, + ACTIONS(6355), 1, anon_sym_switch, - ACTIONS(6357), 1, + ACTIONS(6369), 1, anon_sym_with, - ACTIONS(8150), 1, + ACTIONS(7195), 1, + anon_sym_as, + ACTIONS(8152), 1, anon_sym_QMARK, - ACTIONS(8156), 1, - anon_sym_SLASH, ACTIONS(8158), 1, - anon_sym_CARET, + anon_sym_SLASH, ACTIONS(8160), 1, - anon_sym_PIPE, + anon_sym_CARET, ACTIONS(8162), 1, + anon_sym_PIPE, + ACTIONS(8164), 1, anon_sym_AMP, - ACTIONS(8166), 1, + ACTIONS(8168), 1, anon_sym_GT_GT, - ACTIONS(8172), 1, - anon_sym_DOT_DOT, ACTIONS(8174), 1, - anon_sym_AMP_AMP, + anon_sym_DOT_DOT, ACTIONS(8176), 1, - anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, ACTIONS(8178), 1, + anon_sym_PIPE_PIPE, + ACTIONS(8180), 1, anon_sym_QMARK_QMARK, ACTIONS(8182), 1, - anon_sym_as, - ACTIONS(8184), 1, anon_sym_is, - ACTIONS(8621), 1, - anon_sym_by, - STATE(2485), 1, + ACTIONS(8569), 1, + anon_sym_COLON, + STATE(2467), 1, sym_bracketed_argument_list, - STATE(3487), 1, + STATE(3381), 1, sym_argument_list, - ACTIONS(5306), 2, + ACTIONS(5304), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(8148), 2, + ACTIONS(8150), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(8152), 2, + ACTIONS(8154), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(8154), 2, + ACTIONS(8156), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8164), 2, + ACTIONS(8166), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(8168), 2, + ACTIONS(8170), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(8170), 2, + ACTIONS(8172), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - STATE(5558), 9, + STATE(5502), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -681347,7 +676043,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [195930] = 40, + [190459] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -681368,72 +676064,72 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4100), 1, + ACTIONS(4042), 1, anon_sym_DOT, - ACTIONS(4102), 1, + ACTIONS(4044), 1, anon_sym_DASH_GT, - ACTIONS(5264), 1, + ACTIONS(5257), 1, anon_sym_LPAREN, - ACTIONS(5304), 1, + ACTIONS(5302), 1, anon_sym_BANG, - ACTIONS(5573), 1, + ACTIONS(5549), 1, anon_sym_LBRACK, - ACTIONS(6343), 1, + ACTIONS(6355), 1, anon_sym_switch, - ACTIONS(6357), 1, + ACTIONS(6369), 1, anon_sym_with, - ACTIONS(6813), 1, + ACTIONS(7195), 1, anon_sym_as, - ACTIONS(6815), 1, - anon_sym_is, - ACTIONS(7183), 1, + ACTIONS(8152), 1, + anon_sym_QMARK, + ACTIONS(8158), 1, anon_sym_SLASH, - ACTIONS(7187), 1, - anon_sym_GT_GT, - ACTIONS(7189), 1, - anon_sym_DOT_DOT, - ACTIONS(7195), 1, - anon_sym_AMP, - ACTIONS(7201), 1, + ACTIONS(8160), 1, anon_sym_CARET, - ACTIONS(7203), 1, + ACTIONS(8162), 1, anon_sym_PIPE, - ACTIONS(7205), 1, + ACTIONS(8164), 1, + anon_sym_AMP, + ACTIONS(8168), 1, + anon_sym_GT_GT, + ACTIONS(8174), 1, + anon_sym_DOT_DOT, + ACTIONS(8176), 1, anon_sym_AMP_AMP, - ACTIONS(7207), 1, + ACTIONS(8178), 1, anon_sym_PIPE_PIPE, - ACTIONS(7209), 1, + ACTIONS(8180), 1, anon_sym_QMARK_QMARK, - ACTIONS(7237), 1, - anon_sym_QMARK, - ACTIONS(8623), 1, - anon_sym_SEMI, - STATE(2485), 1, + ACTIONS(8182), 1, + anon_sym_is, + ACTIONS(8571), 1, + anon_sym_COLON, + STATE(2467), 1, sym_bracketed_argument_list, - STATE(3487), 1, + STATE(3381), 1, sym_argument_list, - ACTIONS(5306), 2, + ACTIONS(5304), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7179), 2, + ACTIONS(8150), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(8154), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7181), 2, + ACTIONS(8156), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7185), 2, + ACTIONS(8166), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7193), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(7197), 2, + ACTIONS(8170), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7199), 2, + ACTIONS(8172), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - STATE(5559), 9, + STATE(5503), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -681443,7 +676139,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [196066] = 14, + [190595] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -681464,9 +676160,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8625), 1, - anon_sym_RPAREN, - STATE(5560), 9, + ACTIONS(8354), 1, + anon_sym_and, + STATE(5504), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -681476,7 +676172,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(4862), 11, + ACTIONS(6097), 11, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, @@ -681488,10 +676184,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT, - ACTIONS(4860), 24, + ACTIONS(6095), 24, anon_sym_LBRACK, - anon_sym_COLON, - anon_sym_COMMA, anon_sym_LPAREN, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, @@ -681504,8 +676198,10 @@ 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, @@ -681513,7 +676209,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, anon_sym_DASH_GT, anon_sym_with, - [196150] = 40, + [190679] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -681534,72 +676230,72 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4100), 1, + ACTIONS(4042), 1, anon_sym_DOT, - ACTIONS(4102), 1, + ACTIONS(4044), 1, anon_sym_DASH_GT, - ACTIONS(5264), 1, + ACTIONS(5257), 1, anon_sym_LPAREN, - ACTIONS(5304), 1, + ACTIONS(5302), 1, anon_sym_BANG, - ACTIONS(5573), 1, + ACTIONS(5549), 1, anon_sym_LBRACK, - ACTIONS(6343), 1, + ACTIONS(6355), 1, anon_sym_switch, - ACTIONS(6357), 1, + ACTIONS(6369), 1, anon_sym_with, - ACTIONS(6813), 1, + ACTIONS(6811), 1, anon_sym_as, - ACTIONS(6815), 1, - anon_sym_is, - ACTIONS(7183), 1, + ACTIONS(7231), 1, + anon_sym_QMARK, + ACTIONS(7237), 1, anon_sym_SLASH, - ACTIONS(7187), 1, - anon_sym_GT_GT, - ACTIONS(7189), 1, - anon_sym_DOT_DOT, - ACTIONS(7195), 1, - anon_sym_AMP, - ACTIONS(7201), 1, + ACTIONS(7239), 1, anon_sym_CARET, - ACTIONS(7203), 1, + ACTIONS(7241), 1, anon_sym_PIPE, - ACTIONS(7205), 1, + ACTIONS(7243), 1, + anon_sym_AMP, + ACTIONS(7247), 1, + anon_sym_GT_GT, + ACTIONS(7253), 1, + anon_sym_DOT_DOT, + ACTIONS(7255), 1, anon_sym_AMP_AMP, - ACTIONS(7207), 1, + ACTIONS(7257), 1, anon_sym_PIPE_PIPE, - ACTIONS(7209), 1, + ACTIONS(7259), 1, anon_sym_QMARK_QMARK, - ACTIONS(7237), 1, - anon_sym_QMARK, - ACTIONS(8627), 1, - anon_sym_SEMI, - STATE(2485), 1, + ACTIONS(7261), 1, + anon_sym_is, + ACTIONS(8573), 1, + anon_sym_RPAREN, + STATE(2467), 1, sym_bracketed_argument_list, - STATE(3487), 1, + STATE(3381), 1, sym_argument_list, - ACTIONS(5306), 2, + ACTIONS(5304), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7179), 2, + ACTIONS(7229), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(7233), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7181), 2, + ACTIONS(7235), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7185), 2, + ACTIONS(7245), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7193), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(7197), 2, + ACTIONS(7249), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7199), 2, + ACTIONS(7251), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - STATE(5561), 9, + STATE(5505), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -681609,7 +676305,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [196286] = 40, + [190815] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -681630,72 +676326,107 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4100), 1, + ACTIONS(4042), 1, anon_sym_DOT, - ACTIONS(4102), 1, + ACTIONS(4044), 1, anon_sym_DASH_GT, - ACTIONS(5264), 1, + ACTIONS(5257), 1, anon_sym_LPAREN, - ACTIONS(5304), 1, + ACTIONS(5302), 1, anon_sym_BANG, - ACTIONS(5573), 1, + ACTIONS(5549), 1, anon_sym_LBRACK, - ACTIONS(5899), 1, - anon_sym_in, - ACTIONS(6343), 1, + ACTIONS(6355), 1, anon_sym_switch, - ACTIONS(6357), 1, + ACTIONS(6369), 1, anon_sym_with, - ACTIONS(6813), 1, + ACTIONS(7195), 1, anon_sym_as, - ACTIONS(8200), 1, + ACTIONS(8152), 1, anon_sym_QMARK, - ACTIONS(8206), 1, + ACTIONS(8158), 1, anon_sym_SLASH, - ACTIONS(8208), 1, + ACTIONS(8160), 1, anon_sym_CARET, - ACTIONS(8210), 1, + ACTIONS(8162), 1, anon_sym_PIPE, - ACTIONS(8212), 1, + ACTIONS(8164), 1, anon_sym_AMP, - ACTIONS(8216), 1, + ACTIONS(8168), 1, anon_sym_GT_GT, - ACTIONS(8222), 1, + ACTIONS(8174), 1, anon_sym_DOT_DOT, - ACTIONS(8224), 1, + ACTIONS(8176), 1, anon_sym_AMP_AMP, - ACTIONS(8226), 1, + ACTIONS(8178), 1, anon_sym_PIPE_PIPE, - ACTIONS(8228), 1, + ACTIONS(8180), 1, anon_sym_QMARK_QMARK, - ACTIONS(8230), 1, + ACTIONS(8182), 1, anon_sym_is, - STATE(2485), 1, + ACTIONS(8575), 1, + anon_sym_COLON, + STATE(2467), 1, sym_bracketed_argument_list, - STATE(3487), 1, + STATE(3381), 1, sym_argument_list, - ACTIONS(5306), 2, + ACTIONS(5304), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(8198), 2, + ACTIONS(8150), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(8202), 2, + ACTIONS(8154), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(8204), 2, + ACTIONS(8156), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8214), 2, + ACTIONS(8166), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(8218), 2, + ACTIONS(8170), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(8220), 2, + ACTIONS(8172), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - STATE(5562), 9, + STATE(5506), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + [190951] = 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(8370), 1, + anon_sym_and, + ACTIONS(8577), 1, + anon_sym_or, + STATE(5507), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -681705,7 +676436,43 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [196422] = 40, + ACTIONS(5360), 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(5358), 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, + anon_sym_with, + [191037] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -681726,72 +676493,72 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4100), 1, + ACTIONS(4042), 1, anon_sym_DOT, - ACTIONS(4102), 1, + ACTIONS(4044), 1, anon_sym_DASH_GT, - ACTIONS(5264), 1, + ACTIONS(5257), 1, anon_sym_LPAREN, - ACTIONS(5304), 1, + ACTIONS(5302), 1, anon_sym_BANG, - ACTIONS(5573), 1, + ACTIONS(5549), 1, anon_sym_LBRACK, - ACTIONS(6343), 1, + ACTIONS(6355), 1, anon_sym_switch, - ACTIONS(6357), 1, + ACTIONS(6369), 1, anon_sym_with, - ACTIONS(8150), 1, + ACTIONS(8268), 1, anon_sym_QMARK, - ACTIONS(8156), 1, + ACTIONS(8274), 1, anon_sym_SLASH, - ACTIONS(8158), 1, + ACTIONS(8276), 1, anon_sym_CARET, - ACTIONS(8160), 1, + ACTIONS(8278), 1, anon_sym_PIPE, - ACTIONS(8162), 1, + ACTIONS(8280), 1, anon_sym_AMP, - ACTIONS(8166), 1, + ACTIONS(8284), 1, anon_sym_GT_GT, - ACTIONS(8172), 1, + ACTIONS(8290), 1, anon_sym_DOT_DOT, - ACTIONS(8174), 1, + ACTIONS(8292), 1, anon_sym_AMP_AMP, - ACTIONS(8176), 1, + ACTIONS(8294), 1, anon_sym_PIPE_PIPE, - ACTIONS(8178), 1, + ACTIONS(8296), 1, anon_sym_QMARK_QMARK, - ACTIONS(8182), 1, + ACTIONS(8300), 1, anon_sym_as, - ACTIONS(8184), 1, + ACTIONS(8302), 1, anon_sym_is, - ACTIONS(8629), 1, + ACTIONS(8579), 1, anon_sym_by, - STATE(2485), 1, + STATE(2467), 1, sym_bracketed_argument_list, - STATE(3487), 1, + STATE(3381), 1, sym_argument_list, - ACTIONS(5306), 2, + ACTIONS(5304), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(8148), 2, + ACTIONS(8266), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(8152), 2, + ACTIONS(8270), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(8154), 2, + ACTIONS(8272), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8164), 2, + ACTIONS(8282), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(8168), 2, + ACTIONS(8286), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(8170), 2, + ACTIONS(8288), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - STATE(5563), 9, + STATE(5508), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -681801,7 +676568,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [196558] = 40, + [191173] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -681822,72 +676589,72 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4100), 1, + ACTIONS(4042), 1, anon_sym_DOT, - ACTIONS(4102), 1, + ACTIONS(4044), 1, anon_sym_DASH_GT, - ACTIONS(5264), 1, + ACTIONS(5257), 1, anon_sym_LPAREN, - ACTIONS(5304), 1, + ACTIONS(5302), 1, anon_sym_BANG, - ACTIONS(5573), 1, + ACTIONS(5549), 1, anon_sym_LBRACK, - ACTIONS(6343), 1, + ACTIONS(6355), 1, anon_sym_switch, - ACTIONS(6357), 1, + ACTIONS(6369), 1, anon_sym_with, - ACTIONS(7037), 1, + ACTIONS(6811), 1, anon_sym_as, - ACTIONS(8234), 1, + ACTIONS(7231), 1, anon_sym_QMARK, - ACTIONS(8236), 1, - anon_sym_DOT_DOT, - ACTIONS(8238), 1, - anon_sym_is, - ACTIONS(8248), 1, + ACTIONS(7237), 1, anon_sym_SLASH, - ACTIONS(8250), 1, + ACTIONS(7239), 1, anon_sym_CARET, - ACTIONS(8252), 1, + ACTIONS(7241), 1, anon_sym_PIPE, - ACTIONS(8254), 1, + ACTIONS(7243), 1, anon_sym_AMP, - ACTIONS(8258), 1, + ACTIONS(7247), 1, anon_sym_GT_GT, - ACTIONS(8264), 1, + ACTIONS(7253), 1, + anon_sym_DOT_DOT, + ACTIONS(7255), 1, anon_sym_AMP_AMP, - ACTIONS(8266), 1, + ACTIONS(7257), 1, anon_sym_PIPE_PIPE, - ACTIONS(8268), 1, + ACTIONS(7259), 1, anon_sym_QMARK_QMARK, - ACTIONS(8631), 1, - anon_sym_COLON, - STATE(2485), 1, + ACTIONS(7261), 1, + anon_sym_is, + ACTIONS(8581), 1, + anon_sym_RPAREN, + STATE(2467), 1, sym_bracketed_argument_list, - STATE(3487), 1, + STATE(3381), 1, sym_argument_list, - ACTIONS(5306), 2, + ACTIONS(5304), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(8242), 2, + ACTIONS(7229), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(8244), 2, + ACTIONS(7233), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(8246), 2, + ACTIONS(7235), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8256), 2, + ACTIONS(7245), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(8260), 2, + ACTIONS(7249), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(8262), 2, + ACTIONS(7251), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - STATE(5564), 9, + STATE(5509), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -681897,7 +676664,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [196694] = 13, + [191309] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -681918,7 +676685,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - STATE(5565), 9, + ACTIONS(8370), 1, + anon_sym_and, + ACTIONS(8577), 1, + anon_sym_or, + STATE(5510), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -681928,45 +676699,43 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(3445), 10, - anon_sym_LBRACK, - anon_sym_COLON, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACE, + ACTIONS(6109), 11, 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_DASH_GT, - ACTIONS(3447), 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, + ACTIONS(6107), 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_let, - anon_sym_orderby, - anon_sym_ascending, - anon_sym_descending, - anon_sym_group, - anon_sym_by, - anon_sym_select, - sym__identifier_token, - [196776] = 40, + anon_sym_as, + anon_sym_is, + anon_sym_DASH_GT, + anon_sym_with, + [191395] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -681987,72 +676756,72 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4100), 1, + ACTIONS(4042), 1, anon_sym_DOT, - ACTIONS(4102), 1, + ACTIONS(4044), 1, anon_sym_DASH_GT, - ACTIONS(5264), 1, + ACTIONS(5257), 1, anon_sym_LPAREN, - ACTIONS(5304), 1, + ACTIONS(5302), 1, anon_sym_BANG, - ACTIONS(5573), 1, + ACTIONS(5549), 1, anon_sym_LBRACK, - ACTIONS(6343), 1, + ACTIONS(6355), 1, anon_sym_switch, - ACTIONS(6357), 1, + ACTIONS(6369), 1, anon_sym_with, - ACTIONS(6813), 1, + ACTIONS(6811), 1, anon_sym_as, - ACTIONS(6815), 1, - anon_sym_is, - ACTIONS(7183), 1, + ACTIONS(7231), 1, + anon_sym_QMARK, + ACTIONS(7237), 1, anon_sym_SLASH, - ACTIONS(7187), 1, - anon_sym_GT_GT, - ACTIONS(7189), 1, - anon_sym_DOT_DOT, - ACTIONS(7195), 1, - anon_sym_AMP, - ACTIONS(7201), 1, + ACTIONS(7239), 1, anon_sym_CARET, - ACTIONS(7203), 1, + ACTIONS(7241), 1, anon_sym_PIPE, - ACTIONS(7205), 1, + ACTIONS(7243), 1, + anon_sym_AMP, + ACTIONS(7247), 1, + anon_sym_GT_GT, + ACTIONS(7253), 1, + anon_sym_DOT_DOT, + ACTIONS(7255), 1, anon_sym_AMP_AMP, - ACTIONS(7207), 1, + ACTIONS(7257), 1, anon_sym_PIPE_PIPE, - ACTIONS(7209), 1, + ACTIONS(7259), 1, anon_sym_QMARK_QMARK, - ACTIONS(7237), 1, - anon_sym_QMARK, - ACTIONS(8633), 1, - anon_sym_SEMI, - STATE(2485), 1, + ACTIONS(7261), 1, + anon_sym_is, + ACTIONS(8583), 1, + anon_sym_RPAREN, + STATE(2467), 1, sym_bracketed_argument_list, - STATE(3487), 1, + STATE(3381), 1, sym_argument_list, - ACTIONS(5306), 2, + ACTIONS(5304), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7179), 2, + ACTIONS(7229), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(7233), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7181), 2, + ACTIONS(7235), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7185), 2, + ACTIONS(7245), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7193), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(7197), 2, + ACTIONS(7249), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7199), 2, + ACTIONS(7251), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - STATE(5566), 9, + STATE(5511), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -682062,7 +676831,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [196912] = 13, + [191531] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -682083,7 +676852,72 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - STATE(5567), 9, + ACTIONS(4042), 1, + anon_sym_DOT, + ACTIONS(4044), 1, + anon_sym_DASH_GT, + ACTIONS(5257), 1, + anon_sym_LPAREN, + ACTIONS(5302), 1, + anon_sym_BANG, + ACTIONS(5549), 1, + anon_sym_LBRACK, + ACTIONS(5801), 1, + anon_sym_equals, + ACTIONS(6355), 1, + anon_sym_switch, + ACTIONS(6369), 1, + anon_sym_with, + ACTIONS(8392), 1, + anon_sym_QMARK, + ACTIONS(8398), 1, + anon_sym_SLASH, + ACTIONS(8400), 1, + anon_sym_CARET, + ACTIONS(8402), 1, + anon_sym_PIPE, + ACTIONS(8404), 1, + anon_sym_AMP, + ACTIONS(8408), 1, + anon_sym_GT_GT, + ACTIONS(8414), 1, + anon_sym_DOT_DOT, + ACTIONS(8416), 1, + anon_sym_AMP_AMP, + ACTIONS(8418), 1, + anon_sym_PIPE_PIPE, + ACTIONS(8420), 1, + anon_sym_QMARK_QMARK, + ACTIONS(8424), 1, + anon_sym_as, + ACTIONS(8426), 1, + anon_sym_is, + STATE(2467), 1, + sym_bracketed_argument_list, + STATE(3381), 1, + sym_argument_list, + ACTIONS(5304), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(8390), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(8394), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(8396), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(8406), 2, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + ACTIONS(8410), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(8412), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + STATE(5512), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -682093,45 +676927,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(3652), 10, - 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(3650), 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, - [196994] = 16, + [191667] = 22, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -682152,20 +676948,36 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(3899), 1, - anon_sym_COLON_COLON, - ACTIONS(6311), 1, - anon_sym_LT, - STATE(4063), 1, - sym_type_argument_list, - ACTIONS(3662), 6, - anon_sym_LBRACK, + ACTIONS(4042), 1, + anon_sym_DOT, + ACTIONS(4044), 1, + anon_sym_DASH_GT, + ACTIONS(5257), 1, anon_sym_LPAREN, - anon_sym_LBRACE, + ACTIONS(5302), 1, + anon_sym_BANG, + ACTIONS(5549), 1, + anon_sym_LBRACK, + ACTIONS(8414), 1, + anon_sym_DOT_DOT, + STATE(2467), 1, + sym_bracketed_argument_list, + STATE(3381), 1, + sym_argument_list, + ACTIONS(5304), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1161), 9, + anon_sym_LT, + anon_sym_GT, anon_sym_QMARK, - anon_sym_STAR, - anon_sym_DOT, - STATE(5568), 9, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT_GT, + STATE(5513), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -682175,35 +676987,25 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(3660), 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, + ACTIONS(1147), 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_let, - anon_sym_orderby, - anon_sym_ascending, - anon_sym_descending, - anon_sym_group, - anon_sym_by, - anon_sym_select, - sym__identifier_token, - [197082] = 40, + anon_sym_as, + anon_sym_is, + anon_sym_with, + [191767] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -682224,72 +677026,72 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4100), 1, + ACTIONS(4042), 1, anon_sym_DOT, - ACTIONS(4102), 1, + ACTIONS(4044), 1, anon_sym_DASH_GT, - ACTIONS(5264), 1, + ACTIONS(5257), 1, anon_sym_LPAREN, - ACTIONS(5304), 1, + ACTIONS(5302), 1, anon_sym_BANG, - ACTIONS(5573), 1, + ACTIONS(5549), 1, anon_sym_LBRACK, - ACTIONS(6343), 1, + ACTIONS(6355), 1, anon_sym_switch, - ACTIONS(6357), 1, + ACTIONS(6369), 1, anon_sym_with, - ACTIONS(6813), 1, + ACTIONS(7195), 1, anon_sym_as, - ACTIONS(7139), 1, + ACTIONS(8152), 1, anon_sym_QMARK, - ACTIONS(7145), 1, + ACTIONS(8158), 1, anon_sym_SLASH, - ACTIONS(7147), 1, + ACTIONS(8160), 1, anon_sym_CARET, - ACTIONS(7149), 1, + ACTIONS(8162), 1, anon_sym_PIPE, - ACTIONS(7151), 1, + ACTIONS(8164), 1, anon_sym_AMP, - ACTIONS(7155), 1, + ACTIONS(8168), 1, anon_sym_GT_GT, - ACTIONS(7161), 1, + ACTIONS(8174), 1, anon_sym_DOT_DOT, - ACTIONS(7163), 1, + ACTIONS(8176), 1, anon_sym_AMP_AMP, - ACTIONS(7165), 1, + ACTIONS(8178), 1, anon_sym_PIPE_PIPE, - ACTIONS(7167), 1, + ACTIONS(8180), 1, anon_sym_QMARK_QMARK, - ACTIONS(7169), 1, + ACTIONS(8182), 1, anon_sym_is, - ACTIONS(8635), 1, - anon_sym_COMMA, - STATE(2485), 1, + ACTIONS(8585), 1, + anon_sym_COLON, + STATE(2467), 1, sym_bracketed_argument_list, - STATE(3487), 1, + STATE(3381), 1, sym_argument_list, - ACTIONS(5306), 2, + ACTIONS(5304), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7137), 2, + ACTIONS(8150), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7141), 2, + ACTIONS(8154), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7143), 2, + ACTIONS(8156), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7153), 2, + ACTIONS(8166), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7157), 2, + ACTIONS(8170), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7159), 2, + ACTIONS(8172), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - STATE(5569), 9, + STATE(5514), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -682299,7 +677101,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [197218] = 29, + [191903] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -682320,49 +677122,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4100), 1, - anon_sym_DOT, - ACTIONS(4102), 1, - anon_sym_DASH_GT, - ACTIONS(5264), 1, - anon_sym_LPAREN, - ACTIONS(5304), 1, - anon_sym_BANG, - ACTIONS(5573), 1, - anon_sym_LBRACK, - ACTIONS(6343), 1, - anon_sym_switch, - ACTIONS(6357), 1, - anon_sym_with, - ACTIONS(8206), 1, - anon_sym_SLASH, - ACTIONS(8216), 1, - anon_sym_GT_GT, - ACTIONS(8222), 1, - anon_sym_DOT_DOT, - STATE(2485), 1, - sym_bracketed_argument_list, - STATE(3487), 1, - sym_argument_list, - ACTIONS(5306), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(8202), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(8204), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(8214), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - ACTIONS(5664), 5, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_AMP, - STATE(5570), 9, + ACTIONS(8555), 1, + anon_sym_and, + ACTIONS(8587), 1, + anon_sym_or, + STATE(5515), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -682372,19 +677136,43 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5660), 11, - anon_sym_in, + ACTIONS(5360), 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(5358), 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, - [197332] = 26, + anon_sym_DASH_GT, + anon_sym_with, + [191989] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -682405,44 +677193,72 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4100), 1, + ACTIONS(4042), 1, anon_sym_DOT, - ACTIONS(4102), 1, + ACTIONS(4044), 1, anon_sym_DASH_GT, - ACTIONS(5264), 1, + ACTIONS(5257), 1, anon_sym_LPAREN, - ACTIONS(5304), 1, + ACTIONS(5302), 1, anon_sym_BANG, - ACTIONS(5573), 1, + ACTIONS(5549), 1, anon_sym_LBRACK, - ACTIONS(6343), 1, + ACTIONS(6355), 1, anon_sym_switch, - ACTIONS(6357), 1, + ACTIONS(6369), 1, anon_sym_with, - ACTIONS(8206), 1, + ACTIONS(8268), 1, + anon_sym_QMARK, + ACTIONS(8274), 1, anon_sym_SLASH, - ACTIONS(8222), 1, + ACTIONS(8276), 1, + anon_sym_CARET, + ACTIONS(8278), 1, + anon_sym_PIPE, + ACTIONS(8280), 1, + anon_sym_AMP, + ACTIONS(8284), 1, + anon_sym_GT_GT, + ACTIONS(8290), 1, anon_sym_DOT_DOT, - STATE(2485), 1, + ACTIONS(8292), 1, + anon_sym_AMP_AMP, + ACTIONS(8294), 1, + anon_sym_PIPE_PIPE, + ACTIONS(8296), 1, + anon_sym_QMARK_QMARK, + ACTIONS(8300), 1, + anon_sym_as, + ACTIONS(8302), 1, + anon_sym_is, + ACTIONS(8589), 1, + anon_sym_by, + STATE(2467), 1, sym_bracketed_argument_list, - STATE(3487), 1, + STATE(3381), 1, sym_argument_list, - ACTIONS(5306), 2, + ACTIONS(5304), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(8204), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(5664), 8, + ACTIONS(8266), 2, anon_sym_LT, anon_sym_GT, - anon_sym_QMARK, + ACTIONS(8270), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT_GT, - STATE(5571), 9, + ACTIONS(8272), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(8282), 2, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + ACTIONS(8286), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(8288), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + STATE(5516), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -682452,21 +677268,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5660), 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, - [197440] = 24, + [192125] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -682487,40 +677289,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4100), 1, - anon_sym_DOT, - ACTIONS(4102), 1, - anon_sym_DASH_GT, - ACTIONS(5264), 1, - anon_sym_LPAREN, - ACTIONS(5304), 1, - anon_sym_BANG, - ACTIONS(5573), 1, - anon_sym_LBRACK, - ACTIONS(6343), 1, - anon_sym_switch, - ACTIONS(6357), 1, - anon_sym_with, - ACTIONS(8222), 1, - anon_sym_DOT_DOT, - STATE(2485), 1, - sym_bracketed_argument_list, - STATE(3487), 1, - sym_argument_list, - ACTIONS(5306), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5664), 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(5572), 9, + ACTIONS(8555), 1, + anon_sym_and, + ACTIONS(8587), 1, + anon_sym_or, + STATE(5517), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -682530,8 +677303,23 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5660), 15, - anon_sym_in, + ACTIONS(6109), 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(6107), 23, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_STAR, anon_sym_PERCENT, anon_sym_CARET, @@ -682541,12 +677329,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_on, anon_sym_as, anon_sym_is, - [197544] = 27, + anon_sym_DASH_GT, + anon_sym_with, + [192211] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -682567,45 +677360,72 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4100), 1, + ACTIONS(4042), 1, anon_sym_DOT, - ACTIONS(4102), 1, + ACTIONS(4044), 1, anon_sym_DASH_GT, - ACTIONS(5264), 1, + ACTIONS(5257), 1, anon_sym_LPAREN, - ACTIONS(5304), 1, + ACTIONS(5302), 1, anon_sym_BANG, - ACTIONS(5573), 1, + ACTIONS(5549), 1, anon_sym_LBRACK, - ACTIONS(6343), 1, + ACTIONS(5801), 1, + anon_sym_on, + ACTIONS(6355), 1, anon_sym_switch, - ACTIONS(6357), 1, + ACTIONS(6369), 1, anon_sym_with, - ACTIONS(8206), 1, - anon_sym_SLASH, - ACTIONS(8222), 1, + ACTIONS(8188), 1, anon_sym_DOT_DOT, - STATE(2485), 1, + ACTIONS(8430), 1, + anon_sym_QMARK, + ACTIONS(8436), 1, + anon_sym_SLASH, + ACTIONS(8438), 1, + anon_sym_CARET, + ACTIONS(8440), 1, + anon_sym_PIPE, + ACTIONS(8442), 1, + anon_sym_AMP, + ACTIONS(8446), 1, + anon_sym_GT_GT, + ACTIONS(8452), 1, + anon_sym_AMP_AMP, + ACTIONS(8454), 1, + anon_sym_PIPE_PIPE, + ACTIONS(8456), 1, + anon_sym_QMARK_QMARK, + ACTIONS(8460), 1, + anon_sym_as, + ACTIONS(8462), 1, + anon_sym_is, + STATE(2467), 1, sym_bracketed_argument_list, - STATE(3487), 1, + STATE(3381), 1, sym_argument_list, - ACTIONS(5306), 2, + ACTIONS(5304), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(8202), 2, + ACTIONS(8428), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(8432), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(8204), 2, + ACTIONS(8434), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(5664), 6, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT_GT, - STATE(5573), 9, + ACTIONS(8444), 2, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + ACTIONS(8448), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(8450), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + STATE(5518), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -682615,21 +677435,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5660), 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, - [197654] = 22, + [192347] = 22, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -682650,26 +677456,26 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4100), 1, + ACTIONS(4042), 1, anon_sym_DOT, - ACTIONS(4102), 1, + ACTIONS(4044), 1, anon_sym_DASH_GT, - ACTIONS(5264), 1, + ACTIONS(5257), 1, anon_sym_LPAREN, - ACTIONS(5304), 1, + ACTIONS(5302), 1, anon_sym_BANG, - ACTIONS(5573), 1, + ACTIONS(5549), 1, anon_sym_LBRACK, - ACTIONS(8222), 1, + ACTIONS(8188), 1, anon_sym_DOT_DOT, - STATE(2485), 1, + STATE(2467), 1, sym_bracketed_argument_list, - STATE(3487), 1, + STATE(3381), 1, sym_argument_list, - ACTIONS(5306), 2, + ACTIONS(5304), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5733), 9, + ACTIONS(1161), 9, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, @@ -682679,7 +677485,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_AMP, anon_sym_GT_GT, - STATE(5574), 9, + STATE(5519), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -682689,8 +677495,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5731), 17, - anon_sym_in, + ACTIONS(1147), 17, anon_sym_STAR, anon_sym_PERCENT, anon_sym_CARET, @@ -682704,10 +677509,11 @@ 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_with, - [197754] = 40, + [192447] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -682728,72 +677534,72 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4100), 1, + ACTIONS(4042), 1, anon_sym_DOT, - ACTIONS(4102), 1, + ACTIONS(4044), 1, anon_sym_DASH_GT, - ACTIONS(5264), 1, + ACTIONS(5257), 1, anon_sym_LPAREN, - ACTIONS(5304), 1, + ACTIONS(5302), 1, anon_sym_BANG, - ACTIONS(5573), 1, + ACTIONS(5549), 1, anon_sym_LBRACK, - ACTIONS(6343), 1, + ACTIONS(6355), 1, anon_sym_switch, - ACTIONS(6357), 1, + ACTIONS(6369), 1, anon_sym_with, - ACTIONS(7037), 1, + ACTIONS(7195), 1, anon_sym_as, - ACTIONS(8234), 1, + ACTIONS(8152), 1, anon_sym_QMARK, - ACTIONS(8236), 1, - anon_sym_DOT_DOT, - ACTIONS(8238), 1, - anon_sym_is, - ACTIONS(8248), 1, + ACTIONS(8158), 1, anon_sym_SLASH, - ACTIONS(8250), 1, + ACTIONS(8160), 1, anon_sym_CARET, - ACTIONS(8252), 1, + ACTIONS(8162), 1, anon_sym_PIPE, - ACTIONS(8254), 1, + ACTIONS(8164), 1, anon_sym_AMP, - ACTIONS(8258), 1, + ACTIONS(8168), 1, anon_sym_GT_GT, - ACTIONS(8264), 1, + ACTIONS(8174), 1, + anon_sym_DOT_DOT, + ACTIONS(8176), 1, anon_sym_AMP_AMP, - ACTIONS(8266), 1, + ACTIONS(8178), 1, anon_sym_PIPE_PIPE, - ACTIONS(8268), 1, + ACTIONS(8180), 1, anon_sym_QMARK_QMARK, - ACTIONS(8637), 1, + ACTIONS(8182), 1, + anon_sym_is, + ACTIONS(8591), 1, anon_sym_COLON, - STATE(2485), 1, + STATE(2467), 1, sym_bracketed_argument_list, - STATE(3487), 1, + STATE(3381), 1, sym_argument_list, - ACTIONS(5306), 2, + ACTIONS(5304), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(8242), 2, + ACTIONS(8150), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(8244), 2, + ACTIONS(8154), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(8246), 2, + ACTIONS(8156), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8256), 2, + ACTIONS(8166), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(8260), 2, + ACTIONS(8170), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(8262), 2, + ACTIONS(8172), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - STATE(5575), 9, + STATE(5520), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -682803,7 +677609,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [197890] = 13, + [192583] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -682824,11 +677630,72 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4701), 3, - anon_sym_LBRACK, + ACTIONS(4042), 1, + anon_sym_DOT, + ACTIONS(4044), 1, + anon_sym_DASH_GT, + ACTIONS(5257), 1, anon_sym_LPAREN, - aux_sym_preproc_if_token1, - STATE(5576), 9, + ACTIONS(5302), 1, + anon_sym_BANG, + ACTIONS(5549), 1, + anon_sym_LBRACK, + ACTIONS(6355), 1, + anon_sym_switch, + ACTIONS(6369), 1, + anon_sym_with, + ACTIONS(8268), 1, + anon_sym_QMARK, + ACTIONS(8274), 1, + anon_sym_SLASH, + ACTIONS(8276), 1, + anon_sym_CARET, + ACTIONS(8278), 1, + anon_sym_PIPE, + ACTIONS(8280), 1, + anon_sym_AMP, + ACTIONS(8284), 1, + anon_sym_GT_GT, + ACTIONS(8290), 1, + anon_sym_DOT_DOT, + ACTIONS(8292), 1, + anon_sym_AMP_AMP, + ACTIONS(8294), 1, + anon_sym_PIPE_PIPE, + ACTIONS(8296), 1, + anon_sym_QMARK_QMARK, + ACTIONS(8300), 1, + anon_sym_as, + ACTIONS(8302), 1, + anon_sym_is, + ACTIONS(8593), 1, + anon_sym_by, + STATE(2467), 1, + sym_bracketed_argument_list, + STATE(3381), 1, + sym_argument_list, + ACTIONS(5304), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(8266), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(8270), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(8272), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(8282), 2, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + ACTIONS(8286), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(8288), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + STATE(5521), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -682838,41 +677705,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(4699), 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, - [197972] = 13, + [192719] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -682893,11 +677726,72 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(5007), 3, - anon_sym_LBRACK, + ACTIONS(4042), 1, + anon_sym_DOT, + ACTIONS(4044), 1, + anon_sym_DASH_GT, + ACTIONS(5257), 1, anon_sym_LPAREN, - aux_sym_preproc_if_token1, - STATE(5577), 9, + ACTIONS(5302), 1, + anon_sym_BANG, + ACTIONS(5549), 1, + anon_sym_LBRACK, + ACTIONS(6355), 1, + anon_sym_switch, + ACTIONS(6369), 1, + anon_sym_with, + ACTIONS(7195), 1, + anon_sym_as, + ACTIONS(8152), 1, + anon_sym_QMARK, + ACTIONS(8158), 1, + anon_sym_SLASH, + ACTIONS(8160), 1, + anon_sym_CARET, + ACTIONS(8162), 1, + anon_sym_PIPE, + ACTIONS(8164), 1, + anon_sym_AMP, + ACTIONS(8168), 1, + anon_sym_GT_GT, + ACTIONS(8174), 1, + anon_sym_DOT_DOT, + ACTIONS(8176), 1, + anon_sym_AMP_AMP, + ACTIONS(8178), 1, + anon_sym_PIPE_PIPE, + ACTIONS(8180), 1, + anon_sym_QMARK_QMARK, + ACTIONS(8182), 1, + anon_sym_is, + ACTIONS(8595), 1, + anon_sym_COLON, + STATE(2467), 1, + sym_bracketed_argument_list, + STATE(3381), 1, + sym_argument_list, + ACTIONS(5304), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(8150), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(8154), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(8156), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(8166), 2, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + ACTIONS(8170), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(8172), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + STATE(5522), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -682907,41 +677801,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5005), 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, - [198054] = 40, + [192855] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -682962,72 +677822,72 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4100), 1, + ACTIONS(4042), 1, anon_sym_DOT, - ACTIONS(4102), 1, + ACTIONS(4044), 1, anon_sym_DASH_GT, - ACTIONS(5264), 1, + ACTIONS(5257), 1, anon_sym_LPAREN, - ACTIONS(5304), 1, + ACTIONS(5302), 1, anon_sym_BANG, - ACTIONS(5573), 1, + ACTIONS(5549), 1, anon_sym_LBRACK, - ACTIONS(6343), 1, + ACTIONS(6355), 1, anon_sym_switch, - ACTIONS(6357), 1, + ACTIONS(6369), 1, anon_sym_with, - ACTIONS(7037), 1, + ACTIONS(6811), 1, anon_sym_as, - ACTIONS(8234), 1, - anon_sym_QMARK, - ACTIONS(8236), 1, - anon_sym_DOT_DOT, - ACTIONS(8238), 1, + ACTIONS(6813), 1, anon_sym_is, - ACTIONS(8248), 1, + ACTIONS(6985), 1, anon_sym_SLASH, - ACTIONS(8250), 1, + ACTIONS(6989), 1, + anon_sym_GT_GT, + ACTIONS(6991), 1, + anon_sym_DOT_DOT, + ACTIONS(7099), 1, + anon_sym_QMARK, + ACTIONS(7101), 1, anon_sym_CARET, - ACTIONS(8252), 1, + ACTIONS(7103), 1, anon_sym_PIPE, - ACTIONS(8254), 1, + ACTIONS(7105), 1, anon_sym_AMP, - ACTIONS(8258), 1, - anon_sym_GT_GT, - ACTIONS(8264), 1, + ACTIONS(7111), 1, anon_sym_AMP_AMP, - ACTIONS(8266), 1, + ACTIONS(7113), 1, anon_sym_PIPE_PIPE, - ACTIONS(8268), 1, + ACTIONS(7115), 1, anon_sym_QMARK_QMARK, - ACTIONS(8639), 1, - anon_sym_COLON, - STATE(2485), 1, + ACTIONS(8597), 1, + anon_sym_SEMI, + STATE(2467), 1, sym_bracketed_argument_list, - STATE(3487), 1, + STATE(3381), 1, sym_argument_list, - ACTIONS(5306), 2, + ACTIONS(5304), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(8242), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(8244), 2, + ACTIONS(6981), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(8246), 2, + ACTIONS(6983), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8256), 2, + ACTIONS(6987), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(8260), 2, + ACTIONS(7097), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(7107), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(8262), 2, + ACTIONS(7109), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - STATE(5578), 9, + STATE(5523), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -683037,7 +677897,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [198190] = 40, + [192991] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -683058,72 +677918,72 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4100), 1, + ACTIONS(4042), 1, anon_sym_DOT, - ACTIONS(4102), 1, + ACTIONS(4044), 1, anon_sym_DASH_GT, - ACTIONS(5264), 1, + ACTIONS(5257), 1, anon_sym_LPAREN, - ACTIONS(5304), 1, + ACTIONS(5302), 1, anon_sym_BANG, - ACTIONS(5573), 1, + ACTIONS(5549), 1, anon_sym_LBRACK, - ACTIONS(6343), 1, + ACTIONS(5801), 1, + anon_sym_EQ_GT, + ACTIONS(6355), 1, anon_sym_switch, - ACTIONS(6357), 1, + ACTIONS(6369), 1, anon_sym_with, - ACTIONS(7037), 1, + ACTIONS(6811), 1, anon_sym_as, - ACTIONS(8234), 1, - anon_sym_QMARK, - ACTIONS(8236), 1, + ACTIONS(8130), 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(8238), 1, + ACTIONS(8144), 1, anon_sym_is, - ACTIONS(8248), 1, - anon_sym_SLASH, - ACTIONS(8250), 1, + ACTIONS(8332), 1, + anon_sym_QMARK, + ACTIONS(8334), 1, anon_sym_CARET, - ACTIONS(8252), 1, + ACTIONS(8336), 1, anon_sym_PIPE, - ACTIONS(8254), 1, - anon_sym_AMP, - ACTIONS(8258), 1, - anon_sym_GT_GT, - ACTIONS(8264), 1, + ACTIONS(8338), 1, anon_sym_AMP_AMP, - ACTIONS(8266), 1, + ACTIONS(8340), 1, anon_sym_PIPE_PIPE, - ACTIONS(8268), 1, + ACTIONS(8342), 1, anon_sym_QMARK_QMARK, - ACTIONS(8641), 1, - anon_sym_COLON, - STATE(2485), 1, + STATE(2467), 1, sym_bracketed_argument_list, - STATE(3487), 1, + STATE(3381), 1, sym_argument_list, - ACTIONS(5306), 2, + ACTIONS(5304), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(8242), 2, + ACTIONS(8124), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(8244), 2, + ACTIONS(8126), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(8246), 2, + ACTIONS(8128), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8256), 2, + ACTIONS(8134), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(8260), 2, + ACTIONS(8138), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(8262), 2, + ACTIONS(8140), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - STATE(5579), 9, + STATE(5524), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -683133,7 +677993,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [198326] = 21, + [193127] = 22, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -683154,26 +678014,36 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4018), 1, - anon_sym_LBRACE, - ACTIONS(4102), 1, + ACTIONS(4042), 1, + anon_sym_DOT, + ACTIONS(4044), 1, anon_sym_DASH_GT, - ACTIONS(6678), 1, + ACTIONS(5257), 1, + anon_sym_LPAREN, + ACTIONS(5302), 1, + anon_sym_BANG, + ACTIONS(5549), 1, anon_sym_LBRACK, - ACTIONS(6680), 1, - anon_sym_STAR, - ACTIONS(6716), 1, + ACTIONS(8142), 1, + anon_sym_DOT_DOT, + STATE(2467), 1, + sym_bracketed_argument_list, + STATE(3381), 1, + sym_argument_list, + ACTIONS(5304), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1161), 9, + anon_sym_LT, + anon_sym_GT, anon_sym_QMARK, - ACTIONS(8028), 1, - anon_sym_DOT, - ACTIONS(8646), 1, - anon_sym_LPAREN, - STATE(7102), 1, - sym_attribute_argument_list, - ACTIONS(8643), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - STATE(5580), 9, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT_GT, + STATE(5525), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -683183,34 +678053,25 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(4016), 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, - [198424] = 40, + ACTIONS(1147), 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, + [193227] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -683231,72 +678092,72 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4100), 1, + ACTIONS(4042), 1, anon_sym_DOT, - ACTIONS(4102), 1, + ACTIONS(4044), 1, anon_sym_DASH_GT, - ACTIONS(5264), 1, + ACTIONS(5257), 1, anon_sym_LPAREN, - ACTIONS(5304), 1, + ACTIONS(5302), 1, anon_sym_BANG, - ACTIONS(5573), 1, + ACTIONS(5549), 1, anon_sym_LBRACK, - ACTIONS(6343), 1, + ACTIONS(6355), 1, anon_sym_switch, - ACTIONS(6357), 1, + ACTIONS(6369), 1, anon_sym_with, - ACTIONS(7037), 1, + ACTIONS(7195), 1, anon_sym_as, - ACTIONS(8234), 1, + ACTIONS(8152), 1, anon_sym_QMARK, - ACTIONS(8236), 1, - anon_sym_DOT_DOT, - ACTIONS(8238), 1, - anon_sym_is, - ACTIONS(8248), 1, + ACTIONS(8158), 1, anon_sym_SLASH, - ACTIONS(8250), 1, + ACTIONS(8160), 1, anon_sym_CARET, - ACTIONS(8252), 1, + ACTIONS(8162), 1, anon_sym_PIPE, - ACTIONS(8254), 1, + ACTIONS(8164), 1, anon_sym_AMP, - ACTIONS(8258), 1, + ACTIONS(8168), 1, anon_sym_GT_GT, - ACTIONS(8264), 1, + ACTIONS(8174), 1, + anon_sym_DOT_DOT, + ACTIONS(8176), 1, anon_sym_AMP_AMP, - ACTIONS(8266), 1, + ACTIONS(8178), 1, anon_sym_PIPE_PIPE, - ACTIONS(8268), 1, + ACTIONS(8180), 1, anon_sym_QMARK_QMARK, - ACTIONS(8649), 1, + ACTIONS(8182), 1, + anon_sym_is, + ACTIONS(8599), 1, anon_sym_COLON, - STATE(2485), 1, + STATE(2467), 1, sym_bracketed_argument_list, - STATE(3487), 1, + STATE(3381), 1, sym_argument_list, - ACTIONS(5306), 2, + ACTIONS(5304), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(8242), 2, + ACTIONS(8150), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(8244), 2, + ACTIONS(8154), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(8246), 2, + ACTIONS(8156), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8256), 2, + ACTIONS(8166), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(8260), 2, + ACTIONS(8170), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(8262), 2, + ACTIONS(8172), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - STATE(5581), 9, + STATE(5526), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -683306,7 +678167,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [198560] = 40, + [193363] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -683327,72 +678188,72 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4100), 1, + ACTIONS(4042), 1, anon_sym_DOT, - ACTIONS(4102), 1, + ACTIONS(4044), 1, anon_sym_DASH_GT, - ACTIONS(5264), 1, + ACTIONS(5257), 1, anon_sym_LPAREN, - ACTIONS(5304), 1, + ACTIONS(5302), 1, anon_sym_BANG, - ACTIONS(5573), 1, + ACTIONS(5549), 1, anon_sym_LBRACK, - ACTIONS(6343), 1, + ACTIONS(6355), 1, anon_sym_switch, - ACTIONS(6357), 1, + ACTIONS(6369), 1, anon_sym_with, - ACTIONS(7037), 1, - anon_sym_as, - ACTIONS(8234), 1, + ACTIONS(8268), 1, anon_sym_QMARK, - ACTIONS(8236), 1, - anon_sym_DOT_DOT, - ACTIONS(8238), 1, - anon_sym_is, - ACTIONS(8248), 1, + ACTIONS(8274), 1, anon_sym_SLASH, - ACTIONS(8250), 1, + ACTIONS(8276), 1, anon_sym_CARET, - ACTIONS(8252), 1, + ACTIONS(8278), 1, anon_sym_PIPE, - ACTIONS(8254), 1, + ACTIONS(8280), 1, anon_sym_AMP, - ACTIONS(8258), 1, + ACTIONS(8284), 1, anon_sym_GT_GT, - ACTIONS(8264), 1, + ACTIONS(8290), 1, + anon_sym_DOT_DOT, + ACTIONS(8292), 1, anon_sym_AMP_AMP, - ACTIONS(8266), 1, + ACTIONS(8294), 1, anon_sym_PIPE_PIPE, - ACTIONS(8268), 1, + ACTIONS(8296), 1, anon_sym_QMARK_QMARK, - ACTIONS(8651), 1, - anon_sym_COLON, - STATE(2485), 1, + ACTIONS(8300), 1, + anon_sym_as, + ACTIONS(8302), 1, + anon_sym_is, + ACTIONS(8601), 1, + anon_sym_by, + STATE(2467), 1, sym_bracketed_argument_list, - STATE(3487), 1, + STATE(3381), 1, sym_argument_list, - ACTIONS(5306), 2, + ACTIONS(5304), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(8242), 2, + ACTIONS(8266), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(8244), 2, + ACTIONS(8270), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(8246), 2, + ACTIONS(8272), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8256), 2, + ACTIONS(8282), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(8260), 2, + ACTIONS(8286), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(8262), 2, + ACTIONS(8288), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - STATE(5582), 9, + STATE(5527), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -683402,7 +678263,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [198696] = 14, + [193499] = 18, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -683423,19 +678284,23 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(3616), 4, + ACTIONS(4044), 1, + anon_sym_DASH_GT, + ACTIONS(6601), 1, + anon_sym_LBRACK, + ACTIONS(6603), 1, + anon_sym_STAR, + ACTIONS(6705), 1, + anon_sym_QMARK, + ACTIONS(8603), 1, + anon_sym_DOT, + ACTIONS(3963), 5, anon_sym_COMMA, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_LBRACE, - ACTIONS(3445), 6, - anon_sym_LBRACK, - anon_sym_LT, - anon_sym_QMARK, - anon_sym_STAR, - anon_sym_DOT, - anon_sym_COLON_COLON, - STATE(5583), 9, + anon_sym_RBRACE, + STATE(5528), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -683445,7 +678310,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(3619), 26, + ACTIONS(3961), 26, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -683472,7 +678337,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_select, sym__identifier_token, - [198780] = 40, + [193591] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -683493,72 +678358,72 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4100), 1, + ACTIONS(4042), 1, anon_sym_DOT, - ACTIONS(4102), 1, + ACTIONS(4044), 1, anon_sym_DASH_GT, - ACTIONS(5264), 1, + ACTIONS(5257), 1, anon_sym_LPAREN, - ACTIONS(5304), 1, + ACTIONS(5302), 1, anon_sym_BANG, - ACTIONS(5573), 1, + ACTIONS(5549), 1, anon_sym_LBRACK, - ACTIONS(6343), 1, + ACTIONS(6355), 1, anon_sym_switch, - ACTIONS(6357), 1, + ACTIONS(6369), 1, anon_sym_with, - ACTIONS(7037), 1, - anon_sym_as, - ACTIONS(8234), 1, + ACTIONS(8268), 1, anon_sym_QMARK, - ACTIONS(8236), 1, - anon_sym_DOT_DOT, - ACTIONS(8238), 1, - anon_sym_is, - ACTIONS(8248), 1, + ACTIONS(8274), 1, anon_sym_SLASH, - ACTIONS(8250), 1, + ACTIONS(8276), 1, anon_sym_CARET, - ACTIONS(8252), 1, + ACTIONS(8278), 1, anon_sym_PIPE, - ACTIONS(8254), 1, + ACTIONS(8280), 1, anon_sym_AMP, - ACTIONS(8258), 1, + ACTIONS(8284), 1, anon_sym_GT_GT, - ACTIONS(8264), 1, + ACTIONS(8290), 1, + anon_sym_DOT_DOT, + ACTIONS(8292), 1, anon_sym_AMP_AMP, - ACTIONS(8266), 1, + ACTIONS(8294), 1, anon_sym_PIPE_PIPE, - ACTIONS(8268), 1, + ACTIONS(8296), 1, anon_sym_QMARK_QMARK, - ACTIONS(8653), 1, - anon_sym_COLON, - STATE(2485), 1, + ACTIONS(8300), 1, + anon_sym_as, + ACTIONS(8302), 1, + anon_sym_is, + ACTIONS(8605), 1, + anon_sym_by, + STATE(2467), 1, sym_bracketed_argument_list, - STATE(3487), 1, + STATE(3381), 1, sym_argument_list, - ACTIONS(5306), 2, + ACTIONS(5304), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(8242), 2, + ACTIONS(8266), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(8244), 2, + ACTIONS(8270), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(8246), 2, + ACTIONS(8272), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8256), 2, + ACTIONS(8282), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(8260), 2, + ACTIONS(8286), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(8262), 2, + ACTIONS(8288), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - STATE(5584), 9, + STATE(5529), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -683568,7 +678433,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [198916] = 40, + [193727] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -683589,72 +678454,72 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4100), 1, + ACTIONS(4042), 1, anon_sym_DOT, - ACTIONS(4102), 1, + ACTIONS(4044), 1, anon_sym_DASH_GT, - ACTIONS(5264), 1, + ACTIONS(5257), 1, anon_sym_LPAREN, - ACTIONS(5304), 1, + ACTIONS(5302), 1, anon_sym_BANG, - ACTIONS(5573), 1, + ACTIONS(5549), 1, anon_sym_LBRACK, - ACTIONS(6343), 1, + ACTIONS(6355), 1, anon_sym_switch, - ACTIONS(6357), 1, + ACTIONS(6369), 1, anon_sym_with, - ACTIONS(7037), 1, - anon_sym_as, - ACTIONS(8234), 1, + ACTIONS(8268), 1, anon_sym_QMARK, - ACTIONS(8236), 1, - anon_sym_DOT_DOT, - ACTIONS(8238), 1, - anon_sym_is, - ACTIONS(8248), 1, + ACTIONS(8274), 1, anon_sym_SLASH, - ACTIONS(8250), 1, + ACTIONS(8276), 1, anon_sym_CARET, - ACTIONS(8252), 1, + ACTIONS(8278), 1, anon_sym_PIPE, - ACTIONS(8254), 1, + ACTIONS(8280), 1, anon_sym_AMP, - ACTIONS(8258), 1, + ACTIONS(8284), 1, anon_sym_GT_GT, - ACTIONS(8264), 1, + ACTIONS(8290), 1, + anon_sym_DOT_DOT, + ACTIONS(8292), 1, anon_sym_AMP_AMP, - ACTIONS(8266), 1, + ACTIONS(8294), 1, anon_sym_PIPE_PIPE, - ACTIONS(8268), 1, + ACTIONS(8296), 1, anon_sym_QMARK_QMARK, - ACTIONS(8655), 1, - anon_sym_COLON, - STATE(2485), 1, + ACTIONS(8300), 1, + anon_sym_as, + ACTIONS(8302), 1, + anon_sym_is, + ACTIONS(8607), 1, + anon_sym_by, + STATE(2467), 1, sym_bracketed_argument_list, - STATE(3487), 1, + STATE(3381), 1, sym_argument_list, - ACTIONS(5306), 2, + ACTIONS(5304), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(8242), 2, + ACTIONS(8266), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(8244), 2, + ACTIONS(8270), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(8246), 2, + ACTIONS(8272), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8256), 2, + ACTIONS(8282), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(8260), 2, + ACTIONS(8286), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(8262), 2, + ACTIONS(8288), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - STATE(5585), 9, + STATE(5530), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -683664,7 +678529,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [199052] = 40, + [193863] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -683685,72 +678550,72 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4100), 1, + ACTIONS(4042), 1, anon_sym_DOT, - ACTIONS(4102), 1, + ACTIONS(4044), 1, anon_sym_DASH_GT, - ACTIONS(5264), 1, + ACTIONS(5257), 1, anon_sym_LPAREN, - ACTIONS(5304), 1, + ACTIONS(5302), 1, anon_sym_BANG, - ACTIONS(5573), 1, + ACTIONS(5549), 1, anon_sym_LBRACK, - ACTIONS(6343), 1, + ACTIONS(6355), 1, anon_sym_switch, - ACTIONS(6357), 1, + ACTIONS(6369), 1, anon_sym_with, - ACTIONS(7037), 1, - anon_sym_as, - ACTIONS(8234), 1, + ACTIONS(8268), 1, anon_sym_QMARK, - ACTIONS(8236), 1, - anon_sym_DOT_DOT, - ACTIONS(8238), 1, - anon_sym_is, - ACTIONS(8248), 1, + ACTIONS(8274), 1, anon_sym_SLASH, - ACTIONS(8250), 1, + ACTIONS(8276), 1, anon_sym_CARET, - ACTIONS(8252), 1, + ACTIONS(8278), 1, anon_sym_PIPE, - ACTIONS(8254), 1, + ACTIONS(8280), 1, anon_sym_AMP, - ACTIONS(8258), 1, + ACTIONS(8284), 1, anon_sym_GT_GT, - ACTIONS(8264), 1, + ACTIONS(8290), 1, + anon_sym_DOT_DOT, + ACTIONS(8292), 1, anon_sym_AMP_AMP, - ACTIONS(8266), 1, + ACTIONS(8294), 1, anon_sym_PIPE_PIPE, - ACTIONS(8268), 1, + ACTIONS(8296), 1, anon_sym_QMARK_QMARK, - ACTIONS(8657), 1, - anon_sym_COLON, - STATE(2485), 1, + ACTIONS(8300), 1, + anon_sym_as, + ACTIONS(8302), 1, + anon_sym_is, + ACTIONS(8609), 1, + anon_sym_by, + STATE(2467), 1, sym_bracketed_argument_list, - STATE(3487), 1, + STATE(3381), 1, sym_argument_list, - ACTIONS(5306), 2, + ACTIONS(5304), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(8242), 2, + ACTIONS(8266), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(8244), 2, + ACTIONS(8270), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(8246), 2, + ACTIONS(8272), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8256), 2, + ACTIONS(8282), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(8260), 2, + ACTIONS(8286), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(8262), 2, + ACTIONS(8288), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - STATE(5586), 9, + STATE(5531), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -683760,7 +678625,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [199188] = 40, + [193999] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -683781,72 +678646,72 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(2003), 1, - anon_sym_SEMI, - ACTIONS(4100), 1, + ACTIONS(4042), 1, anon_sym_DOT, - ACTIONS(4102), 1, + ACTIONS(4044), 1, anon_sym_DASH_GT, - ACTIONS(5264), 1, + ACTIONS(5257), 1, anon_sym_LPAREN, - ACTIONS(5304), 1, + ACTIONS(5302), 1, anon_sym_BANG, - ACTIONS(5573), 1, + ACTIONS(5549), 1, anon_sym_LBRACK, - ACTIONS(6343), 1, + ACTIONS(6355), 1, anon_sym_switch, - ACTIONS(6357), 1, + ACTIONS(6369), 1, anon_sym_with, - ACTIONS(6813), 1, - anon_sym_as, - ACTIONS(6815), 1, - anon_sym_is, - ACTIONS(7183), 1, + ACTIONS(8268), 1, + anon_sym_QMARK, + ACTIONS(8274), 1, anon_sym_SLASH, - ACTIONS(7187), 1, - anon_sym_GT_GT, - ACTIONS(7189), 1, - anon_sym_DOT_DOT, - ACTIONS(7195), 1, - anon_sym_AMP, - ACTIONS(7201), 1, + ACTIONS(8276), 1, anon_sym_CARET, - ACTIONS(7203), 1, + ACTIONS(8278), 1, anon_sym_PIPE, - ACTIONS(7205), 1, + ACTIONS(8280), 1, + anon_sym_AMP, + ACTIONS(8284), 1, + anon_sym_GT_GT, + ACTIONS(8290), 1, + anon_sym_DOT_DOT, + ACTIONS(8292), 1, anon_sym_AMP_AMP, - ACTIONS(7207), 1, + ACTIONS(8294), 1, anon_sym_PIPE_PIPE, - ACTIONS(7209), 1, + ACTIONS(8296), 1, anon_sym_QMARK_QMARK, - ACTIONS(7237), 1, - anon_sym_QMARK, - STATE(2485), 1, + ACTIONS(8300), 1, + anon_sym_as, + ACTIONS(8302), 1, + anon_sym_is, + ACTIONS(8611), 1, + anon_sym_by, + STATE(2467), 1, sym_bracketed_argument_list, - STATE(3487), 1, + STATE(3381), 1, sym_argument_list, - ACTIONS(5306), 2, + ACTIONS(5304), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7179), 2, + ACTIONS(8266), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(8270), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7181), 2, + ACTIONS(8272), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7185), 2, + ACTIONS(8282), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7193), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(7197), 2, + ACTIONS(8286), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7199), 2, + ACTIONS(8288), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - STATE(5587), 9, + STATE(5532), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -683856,7 +678721,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [199324] = 40, + [194135] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -683877,72 +678742,72 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4100), 1, + ACTIONS(4042), 1, anon_sym_DOT, - ACTIONS(4102), 1, + ACTIONS(4044), 1, anon_sym_DASH_GT, - ACTIONS(5264), 1, + ACTIONS(5257), 1, anon_sym_LPAREN, - ACTIONS(5304), 1, + ACTIONS(5302), 1, anon_sym_BANG, - ACTIONS(5573), 1, + ACTIONS(5549), 1, anon_sym_LBRACK, - ACTIONS(6343), 1, + ACTIONS(6355), 1, anon_sym_switch, - ACTIONS(6357), 1, + ACTIONS(6369), 1, anon_sym_with, - ACTIONS(7037), 1, - anon_sym_as, - ACTIONS(8234), 1, + ACTIONS(8268), 1, anon_sym_QMARK, - ACTIONS(8236), 1, - anon_sym_DOT_DOT, - ACTIONS(8238), 1, - anon_sym_is, - ACTIONS(8248), 1, + ACTIONS(8274), 1, anon_sym_SLASH, - ACTIONS(8250), 1, + ACTIONS(8276), 1, anon_sym_CARET, - ACTIONS(8252), 1, + ACTIONS(8278), 1, anon_sym_PIPE, - ACTIONS(8254), 1, + ACTIONS(8280), 1, anon_sym_AMP, - ACTIONS(8258), 1, + ACTIONS(8284), 1, anon_sym_GT_GT, - ACTIONS(8264), 1, + ACTIONS(8290), 1, + anon_sym_DOT_DOT, + ACTIONS(8292), 1, anon_sym_AMP_AMP, - ACTIONS(8266), 1, + ACTIONS(8294), 1, anon_sym_PIPE_PIPE, - ACTIONS(8268), 1, + ACTIONS(8296), 1, anon_sym_QMARK_QMARK, - ACTIONS(8659), 1, - anon_sym_COLON, - STATE(2485), 1, + ACTIONS(8300), 1, + anon_sym_as, + ACTIONS(8302), 1, + anon_sym_is, + ACTIONS(8613), 1, + anon_sym_by, + STATE(2467), 1, sym_bracketed_argument_list, - STATE(3487), 1, + STATE(3381), 1, sym_argument_list, - ACTIONS(5306), 2, + ACTIONS(5304), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(8242), 2, + ACTIONS(8266), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(8244), 2, + ACTIONS(8270), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(8246), 2, + ACTIONS(8272), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8256), 2, + ACTIONS(8282), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(8260), 2, + ACTIONS(8286), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(8262), 2, + ACTIONS(8288), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - STATE(5588), 9, + STATE(5533), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -683952,7 +678817,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [199460] = 40, + [194271] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -683973,72 +678838,72 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4100), 1, + ACTIONS(4042), 1, anon_sym_DOT, - ACTIONS(4102), 1, + ACTIONS(4044), 1, anon_sym_DASH_GT, - ACTIONS(5264), 1, + ACTIONS(5257), 1, anon_sym_LPAREN, - ACTIONS(5304), 1, + ACTIONS(5302), 1, anon_sym_BANG, - ACTIONS(5573), 1, + ACTIONS(5549), 1, anon_sym_LBRACK, - ACTIONS(6343), 1, + ACTIONS(6355), 1, anon_sym_switch, - ACTIONS(6357), 1, + ACTIONS(6369), 1, anon_sym_with, - ACTIONS(8150), 1, + ACTIONS(8268), 1, anon_sym_QMARK, - ACTIONS(8156), 1, + ACTIONS(8274), 1, anon_sym_SLASH, - ACTIONS(8158), 1, + ACTIONS(8276), 1, anon_sym_CARET, - ACTIONS(8160), 1, + ACTIONS(8278), 1, anon_sym_PIPE, - ACTIONS(8162), 1, + ACTIONS(8280), 1, anon_sym_AMP, - ACTIONS(8166), 1, + ACTIONS(8284), 1, anon_sym_GT_GT, - ACTIONS(8172), 1, + ACTIONS(8290), 1, anon_sym_DOT_DOT, - ACTIONS(8174), 1, + ACTIONS(8292), 1, anon_sym_AMP_AMP, - ACTIONS(8176), 1, + ACTIONS(8294), 1, anon_sym_PIPE_PIPE, - ACTIONS(8178), 1, + ACTIONS(8296), 1, anon_sym_QMARK_QMARK, - ACTIONS(8182), 1, + ACTIONS(8300), 1, anon_sym_as, - ACTIONS(8184), 1, + ACTIONS(8302), 1, anon_sym_is, - ACTIONS(8661), 1, + ACTIONS(8615), 1, anon_sym_by, - STATE(2485), 1, + STATE(2467), 1, sym_bracketed_argument_list, - STATE(3487), 1, + STATE(3381), 1, sym_argument_list, - ACTIONS(5306), 2, + ACTIONS(5304), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(8148), 2, + ACTIONS(8266), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(8152), 2, + ACTIONS(8270), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(8154), 2, + ACTIONS(8272), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8164), 2, + ACTIONS(8282), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(8168), 2, + ACTIONS(8286), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(8170), 2, + ACTIONS(8288), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - STATE(5589), 9, + STATE(5534), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -684048,7 +678913,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [199596] = 40, + [194407] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -684069,72 +678934,72 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4100), 1, + ACTIONS(4042), 1, anon_sym_DOT, - ACTIONS(4102), 1, + ACTIONS(4044), 1, anon_sym_DASH_GT, - ACTIONS(5264), 1, + ACTIONS(5257), 1, anon_sym_LPAREN, - ACTIONS(5304), 1, + ACTIONS(5302), 1, anon_sym_BANG, - ACTIONS(5573), 1, + ACTIONS(5549), 1, anon_sym_LBRACK, - ACTIONS(6343), 1, + ACTIONS(6355), 1, anon_sym_switch, - ACTIONS(6357), 1, + ACTIONS(6369), 1, anon_sym_with, - ACTIONS(6813), 1, - anon_sym_as, - ACTIONS(8454), 1, - anon_sym_EQ_GT, - ACTIONS(8478), 1, + ACTIONS(8268), 1, anon_sym_QMARK, - ACTIONS(8484), 1, + ACTIONS(8274), 1, anon_sym_SLASH, - ACTIONS(8486), 1, + ACTIONS(8276), 1, anon_sym_CARET, - ACTIONS(8488), 1, + ACTIONS(8278), 1, anon_sym_PIPE, - ACTIONS(8490), 1, + ACTIONS(8280), 1, anon_sym_AMP, - ACTIONS(8494), 1, + ACTIONS(8284), 1, anon_sym_GT_GT, - ACTIONS(8500), 1, + ACTIONS(8290), 1, anon_sym_DOT_DOT, - ACTIONS(8502), 1, + ACTIONS(8292), 1, anon_sym_AMP_AMP, - ACTIONS(8504), 1, + ACTIONS(8294), 1, anon_sym_PIPE_PIPE, - ACTIONS(8506), 1, + ACTIONS(8296), 1, anon_sym_QMARK_QMARK, - ACTIONS(8508), 1, + ACTIONS(8300), 1, + anon_sym_as, + ACTIONS(8302), 1, anon_sym_is, - STATE(2485), 1, + ACTIONS(8617), 1, + anon_sym_by, + STATE(2467), 1, sym_bracketed_argument_list, - STATE(3487), 1, + STATE(3381), 1, sym_argument_list, - ACTIONS(5306), 2, + ACTIONS(5304), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(8476), 2, + ACTIONS(8266), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(8480), 2, + ACTIONS(8270), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(8482), 2, + ACTIONS(8272), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8492), 2, + ACTIONS(8282), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(8496), 2, + ACTIONS(8286), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(8498), 2, + ACTIONS(8288), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - STATE(5590), 9, + STATE(5535), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -684144,7 +679009,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [199732] = 40, + [194543] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -684165,82 +679030,56 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4100), 1, - anon_sym_DOT, - ACTIONS(4102), 1, - anon_sym_DASH_GT, - ACTIONS(5264), 1, - anon_sym_LPAREN, - ACTIONS(5304), 1, - anon_sym_BANG, - ACTIONS(5573), 1, - anon_sym_LBRACK, - ACTIONS(6343), 1, - anon_sym_switch, - ACTIONS(6357), 1, - anon_sym_with, - ACTIONS(7037), 1, - anon_sym_as, - ACTIONS(8234), 1, + ACTIONS(8619), 1, + anon_sym_RPAREN, + STATE(5536), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + ACTIONS(4813), 11, + anon_sym_LT, + anon_sym_GT, anon_sym_QMARK, - ACTIONS(8236), 1, - anon_sym_DOT_DOT, - ACTIONS(8238), 1, - anon_sym_is, - ACTIONS(8248), 1, + anon_sym_BANG, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_SLASH, - ACTIONS(8250), 1, - anon_sym_CARET, - ACTIONS(8252), 1, anon_sym_PIPE, - ACTIONS(8254), 1, anon_sym_AMP, - ACTIONS(8258), 1, anon_sym_GT_GT, - ACTIONS(8264), 1, - anon_sym_AMP_AMP, - ACTIONS(8266), 1, - anon_sym_PIPE_PIPE, - ACTIONS(8268), 1, - anon_sym_QMARK_QMARK, - ACTIONS(8663), 1, + anon_sym_DOT, + ACTIONS(4811), 24, + anon_sym_LBRACK, anon_sym_COLON, - STATE(2485), 1, - sym_bracketed_argument_list, - STATE(3487), 1, - sym_argument_list, - ACTIONS(5306), 2, + anon_sym_COMMA, + anon_sym_LPAREN, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(8242), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(8244), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(8246), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8256), 2, + anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(8260), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(8262), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - STATE(5591), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - [199868] = 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, + [194627] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -684261,72 +679100,72 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4100), 1, + ACTIONS(4042), 1, anon_sym_DOT, - ACTIONS(4102), 1, + ACTIONS(4044), 1, anon_sym_DASH_GT, - ACTIONS(5264), 1, + ACTIONS(5257), 1, anon_sym_LPAREN, - ACTIONS(5304), 1, + ACTIONS(5302), 1, anon_sym_BANG, - ACTIONS(5573), 1, + ACTIONS(5549), 1, anon_sym_LBRACK, - ACTIONS(6343), 1, + ACTIONS(6355), 1, anon_sym_switch, - ACTIONS(6357), 1, + ACTIONS(6369), 1, anon_sym_with, - ACTIONS(7037), 1, + ACTIONS(6811), 1, anon_sym_as, - ACTIONS(8234), 1, - anon_sym_QMARK, - ACTIONS(8236), 1, - anon_sym_DOT_DOT, - ACTIONS(8238), 1, + ACTIONS(6813), 1, anon_sym_is, - ACTIONS(8248), 1, + ACTIONS(6985), 1, anon_sym_SLASH, - ACTIONS(8250), 1, + ACTIONS(6989), 1, + anon_sym_GT_GT, + ACTIONS(6991), 1, + anon_sym_DOT_DOT, + ACTIONS(7099), 1, + anon_sym_QMARK, + ACTIONS(7101), 1, anon_sym_CARET, - ACTIONS(8252), 1, + ACTIONS(7103), 1, anon_sym_PIPE, - ACTIONS(8254), 1, + ACTIONS(7105), 1, anon_sym_AMP, - ACTIONS(8258), 1, - anon_sym_GT_GT, - ACTIONS(8264), 1, + ACTIONS(7111), 1, anon_sym_AMP_AMP, - ACTIONS(8266), 1, + ACTIONS(7113), 1, anon_sym_PIPE_PIPE, - ACTIONS(8268), 1, + ACTIONS(7115), 1, anon_sym_QMARK_QMARK, - ACTIONS(8665), 1, - anon_sym_COLON, - STATE(2485), 1, + ACTIONS(8621), 1, + anon_sym_SEMI, + STATE(2467), 1, sym_bracketed_argument_list, - STATE(3487), 1, + STATE(3381), 1, sym_argument_list, - ACTIONS(5306), 2, + ACTIONS(5304), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(8242), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(8244), 2, + ACTIONS(6981), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(8246), 2, + ACTIONS(6983), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8256), 2, + ACTIONS(6987), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(8260), 2, + ACTIONS(7097), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(7107), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(8262), 2, + ACTIONS(7109), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - STATE(5592), 9, + STATE(5537), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -684336,7 +679175,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [200004] = 40, + [194763] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -684357,72 +679196,72 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4100), 1, + ACTIONS(4042), 1, anon_sym_DOT, - ACTIONS(4102), 1, + ACTIONS(4044), 1, anon_sym_DASH_GT, - ACTIONS(5264), 1, + ACTIONS(5257), 1, anon_sym_LPAREN, - ACTIONS(5304), 1, + ACTIONS(5302), 1, anon_sym_BANG, - ACTIONS(5573), 1, + ACTIONS(5549), 1, anon_sym_LBRACK, - ACTIONS(6343), 1, + ACTIONS(6355), 1, anon_sym_switch, - ACTIONS(6357), 1, + ACTIONS(6369), 1, anon_sym_with, - ACTIONS(7037), 1, + ACTIONS(6811), 1, anon_sym_as, - ACTIONS(8234), 1, - anon_sym_QMARK, - ACTIONS(8236), 1, + ACTIONS(8130), 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(8238), 1, + ACTIONS(8144), 1, anon_sym_is, - ACTIONS(8248), 1, - anon_sym_SLASH, - ACTIONS(8250), 1, + ACTIONS(8332), 1, + anon_sym_QMARK, + ACTIONS(8334), 1, anon_sym_CARET, - ACTIONS(8252), 1, + ACTIONS(8336), 1, anon_sym_PIPE, - ACTIONS(8254), 1, - anon_sym_AMP, - ACTIONS(8258), 1, - anon_sym_GT_GT, - ACTIONS(8264), 1, + ACTIONS(8338), 1, anon_sym_AMP_AMP, - ACTIONS(8266), 1, + ACTIONS(8340), 1, anon_sym_PIPE_PIPE, - ACTIONS(8268), 1, + ACTIONS(8342), 1, anon_sym_QMARK_QMARK, - ACTIONS(8667), 1, - anon_sym_COLON, - STATE(2485), 1, + ACTIONS(8372), 1, + anon_sym_EQ_GT, + STATE(2467), 1, sym_bracketed_argument_list, - STATE(3487), 1, + STATE(3381), 1, sym_argument_list, - ACTIONS(5306), 2, + ACTIONS(5304), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(8242), 2, + ACTIONS(8124), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(8244), 2, + ACTIONS(8126), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(8246), 2, + ACTIONS(8128), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8256), 2, + ACTIONS(8134), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(8260), 2, + ACTIONS(8138), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(8262), 2, + ACTIONS(8140), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - STATE(5593), 9, + STATE(5538), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -684432,7 +679271,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [200140] = 40, + [194899] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -684453,72 +679292,72 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4100), 1, + ACTIONS(4042), 1, anon_sym_DOT, - ACTIONS(4102), 1, + ACTIONS(4044), 1, anon_sym_DASH_GT, - ACTIONS(5264), 1, + ACTIONS(5257), 1, anon_sym_LPAREN, - ACTIONS(5304), 1, + ACTIONS(5302), 1, anon_sym_BANG, - ACTIONS(5573), 1, + ACTIONS(5549), 1, anon_sym_LBRACK, - ACTIONS(6343), 1, + ACTIONS(6355), 1, anon_sym_switch, - ACTIONS(6357), 1, + ACTIONS(6369), 1, anon_sym_with, - ACTIONS(7037), 1, + ACTIONS(6811), 1, anon_sym_as, - ACTIONS(8234), 1, - anon_sym_QMARK, - ACTIONS(8236), 1, - anon_sym_DOT_DOT, - ACTIONS(8238), 1, + ACTIONS(6813), 1, anon_sym_is, - ACTIONS(8248), 1, + ACTIONS(6985), 1, anon_sym_SLASH, - ACTIONS(8250), 1, + ACTIONS(6989), 1, + anon_sym_GT_GT, + ACTIONS(6991), 1, + anon_sym_DOT_DOT, + ACTIONS(7099), 1, + anon_sym_QMARK, + ACTIONS(7101), 1, anon_sym_CARET, - ACTIONS(8252), 1, + ACTIONS(7103), 1, anon_sym_PIPE, - ACTIONS(8254), 1, + ACTIONS(7105), 1, anon_sym_AMP, - ACTIONS(8258), 1, - anon_sym_GT_GT, - ACTIONS(8264), 1, + ACTIONS(7111), 1, anon_sym_AMP_AMP, - ACTIONS(8266), 1, + ACTIONS(7113), 1, anon_sym_PIPE_PIPE, - ACTIONS(8268), 1, + ACTIONS(7115), 1, anon_sym_QMARK_QMARK, - ACTIONS(8669), 1, - anon_sym_COLON, - STATE(2485), 1, + ACTIONS(8623), 1, + anon_sym_SEMI, + STATE(2467), 1, sym_bracketed_argument_list, - STATE(3487), 1, + STATE(3381), 1, sym_argument_list, - ACTIONS(5306), 2, + ACTIONS(5304), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(8242), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(8244), 2, + ACTIONS(6981), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(8246), 2, + ACTIONS(6983), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8256), 2, + ACTIONS(6987), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(8260), 2, + ACTIONS(7097), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(7107), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(8262), 2, + ACTIONS(7109), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - STATE(5594), 9, + STATE(5539), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -684528,7 +679367,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [200276] = 40, + [195035] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -684549,72 +679388,72 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4100), 1, + ACTIONS(4042), 1, anon_sym_DOT, - ACTIONS(4102), 1, + ACTIONS(4044), 1, anon_sym_DASH_GT, - ACTIONS(5264), 1, + ACTIONS(5257), 1, anon_sym_LPAREN, - ACTIONS(5304), 1, + ACTIONS(5302), 1, anon_sym_BANG, - ACTIONS(5573), 1, + ACTIONS(5549), 1, anon_sym_LBRACK, - ACTIONS(6343), 1, + ACTIONS(5801), 1, + anon_sym_in, + ACTIONS(6355), 1, anon_sym_switch, - ACTIONS(6357), 1, + ACTIONS(6369), 1, anon_sym_with, - ACTIONS(7037), 1, + ACTIONS(6811), 1, anon_sym_as, - ACTIONS(8234), 1, - anon_sym_QMARK, ACTIONS(8236), 1, - anon_sym_DOT_DOT, + anon_sym_SLASH, ACTIONS(8238), 1, - anon_sym_is, + anon_sym_AMP, + ACTIONS(8242), 1, + anon_sym_GT_GT, ACTIONS(8248), 1, - anon_sym_SLASH, + anon_sym_DOT_DOT, ACTIONS(8250), 1, - anon_sym_CARET, + anon_sym_is, ACTIONS(8252), 1, - anon_sym_PIPE, + anon_sym_CARET, ACTIONS(8254), 1, - anon_sym_AMP, - ACTIONS(8258), 1, - anon_sym_GT_GT, - ACTIONS(8264), 1, + anon_sym_PIPE, + ACTIONS(8256), 1, anon_sym_AMP_AMP, - ACTIONS(8266), 1, + ACTIONS(8258), 1, anon_sym_PIPE_PIPE, - ACTIONS(8268), 1, + ACTIONS(8260), 1, anon_sym_QMARK_QMARK, - ACTIONS(8671), 1, - anon_sym_COLON, - STATE(2485), 1, + ACTIONS(8304), 1, + anon_sym_QMARK, + STATE(2467), 1, sym_bracketed_argument_list, - STATE(3487), 1, + STATE(3381), 1, sym_argument_list, - ACTIONS(5306), 2, + ACTIONS(5304), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(8242), 2, + ACTIONS(8230), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(8244), 2, + ACTIONS(8232), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(8246), 2, + ACTIONS(8234), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8256), 2, + ACTIONS(8240), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(8260), 2, + ACTIONS(8244), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(8262), 2, + ACTIONS(8246), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - STATE(5595), 9, + STATE(5540), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -684624,7 +679463,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [200412] = 40, + [195171] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -684645,105 +679484,72 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4100), 1, + ACTIONS(2033), 1, + anon_sym_SEMI, + ACTIONS(4042), 1, anon_sym_DOT, - ACTIONS(4102), 1, + ACTIONS(4044), 1, anon_sym_DASH_GT, - ACTIONS(5264), 1, + ACTIONS(5257), 1, anon_sym_LPAREN, - ACTIONS(5304), 1, + ACTIONS(5302), 1, anon_sym_BANG, - ACTIONS(5573), 1, + ACTIONS(5549), 1, anon_sym_LBRACK, - ACTIONS(6343), 1, + ACTIONS(6355), 1, anon_sym_switch, - ACTIONS(6357), 1, + ACTIONS(6369), 1, anon_sym_with, - ACTIONS(7037), 1, + ACTIONS(6811), 1, anon_sym_as, - ACTIONS(8234), 1, - anon_sym_QMARK, - ACTIONS(8236), 1, - anon_sym_DOT_DOT, - ACTIONS(8238), 1, + ACTIONS(6813), 1, anon_sym_is, - ACTIONS(8248), 1, + ACTIONS(6985), 1, anon_sym_SLASH, - ACTIONS(8250), 1, + ACTIONS(6989), 1, + anon_sym_GT_GT, + ACTIONS(6991), 1, + anon_sym_DOT_DOT, + ACTIONS(7099), 1, + anon_sym_QMARK, + ACTIONS(7101), 1, anon_sym_CARET, - ACTIONS(8252), 1, + ACTIONS(7103), 1, anon_sym_PIPE, - ACTIONS(8254), 1, + ACTIONS(7105), 1, anon_sym_AMP, - ACTIONS(8258), 1, - anon_sym_GT_GT, - ACTIONS(8264), 1, + ACTIONS(7111), 1, anon_sym_AMP_AMP, - ACTIONS(8266), 1, + ACTIONS(7113), 1, anon_sym_PIPE_PIPE, - ACTIONS(8268), 1, + ACTIONS(7115), 1, anon_sym_QMARK_QMARK, - ACTIONS(8673), 1, - anon_sym_COLON, - STATE(2485), 1, + STATE(2467), 1, sym_bracketed_argument_list, - STATE(3487), 1, + STATE(3381), 1, sym_argument_list, - ACTIONS(5306), 2, + ACTIONS(5304), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(8242), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(8244), 2, + ACTIONS(6981), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(8246), 2, + ACTIONS(6983), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8256), 2, + ACTIONS(6987), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(8260), 2, + ACTIONS(7097), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(7107), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(8262), 2, + ACTIONS(7109), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - STATE(5596), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - [200548] = 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(8675), 1, - anon_sym_RPAREN, - STATE(5597), 9, + STATE(5541), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -684753,44 +679559,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(4862), 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(4860), 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, - [200632] = 40, + [195307] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -684811,72 +679580,72 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4100), 1, + ACTIONS(4042), 1, anon_sym_DOT, - ACTIONS(4102), 1, + ACTIONS(4044), 1, anon_sym_DASH_GT, - ACTIONS(5264), 1, + ACTIONS(5257), 1, anon_sym_LPAREN, - ACTIONS(5304), 1, + ACTIONS(5302), 1, anon_sym_BANG, - ACTIONS(5573), 1, + ACTIONS(5549), 1, anon_sym_LBRACK, - ACTIONS(6343), 1, + ACTIONS(6355), 1, anon_sym_switch, - ACTIONS(6357), 1, + ACTIONS(6369), 1, anon_sym_with, - ACTIONS(7037), 1, + ACTIONS(7195), 1, anon_sym_as, - ACTIONS(8234), 1, + ACTIONS(8152), 1, anon_sym_QMARK, - ACTIONS(8236), 1, - anon_sym_DOT_DOT, - ACTIONS(8238), 1, - anon_sym_is, - ACTIONS(8248), 1, + ACTIONS(8158), 1, anon_sym_SLASH, - ACTIONS(8250), 1, + ACTIONS(8160), 1, anon_sym_CARET, - ACTIONS(8252), 1, + ACTIONS(8162), 1, anon_sym_PIPE, - ACTIONS(8254), 1, + ACTIONS(8164), 1, anon_sym_AMP, - ACTIONS(8258), 1, + ACTIONS(8168), 1, anon_sym_GT_GT, - ACTIONS(8264), 1, + ACTIONS(8174), 1, + anon_sym_DOT_DOT, + ACTIONS(8176), 1, anon_sym_AMP_AMP, - ACTIONS(8266), 1, + ACTIONS(8178), 1, anon_sym_PIPE_PIPE, - ACTIONS(8268), 1, + ACTIONS(8180), 1, anon_sym_QMARK_QMARK, - ACTIONS(8677), 1, + ACTIONS(8182), 1, + anon_sym_is, + ACTIONS(8625), 1, anon_sym_COLON, - STATE(2485), 1, + STATE(2467), 1, sym_bracketed_argument_list, - STATE(3487), 1, + STATE(3381), 1, sym_argument_list, - ACTIONS(5306), 2, + ACTIONS(5304), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(8242), 2, + ACTIONS(8150), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(8244), 2, + ACTIONS(8154), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(8246), 2, + ACTIONS(8156), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8256), 2, + ACTIONS(8166), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(8260), 2, + ACTIONS(8170), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(8262), 2, + ACTIONS(8172), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - STATE(5598), 9, + STATE(5542), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -684886,7 +679655,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [200768] = 15, + [195443] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -684907,11 +679676,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8679), 1, - anon_sym_into, - STATE(5601), 1, - aux_sym__query_body_repeat2, - STATE(5599), 9, + ACTIONS(8627), 1, + anon_sym_RPAREN, + STATE(5543), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -684921,7 +679688,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(6005), 11, + ACTIONS(4813), 11, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, @@ -684933,8 +679700,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT, - ACTIONS(6003), 23, + ACTIONS(4811), 24, anon_sym_LBRACK, + anon_sym_COLON, + anon_sym_COMMA, anon_sym_LPAREN, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, @@ -684952,12 +679721,11 @@ 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_DASH_GT, anon_sym_with, - [200854] = 15, + [195527] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -684978,152 +679746,72 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8679), 1, - anon_sym_into, - STATE(5602), 1, - aux_sym__query_body_repeat2, - STATE(5600), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - ACTIONS(6005), 11, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, + ACTIONS(4042), 1, + anon_sym_DOT, + ACTIONS(4044), 1, + anon_sym_DASH_GT, + ACTIONS(5257), 1, + anon_sym_LPAREN, + ACTIONS(5302), 1, anon_sym_BANG, - anon_sym_PLUS, - anon_sym_DASH, + ACTIONS(5549), 1, + anon_sym_LBRACK, + ACTIONS(6355), 1, + anon_sym_switch, + ACTIONS(6369), 1, + anon_sym_with, + ACTIONS(6811), 1, + anon_sym_as, + ACTIONS(7231), 1, + anon_sym_QMARK, + ACTIONS(7237), 1, anon_sym_SLASH, + ACTIONS(7239), 1, + anon_sym_CARET, + ACTIONS(7241), 1, anon_sym_PIPE, + ACTIONS(7243), 1, anon_sym_AMP, + ACTIONS(7247), 1, anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(6003), 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, + ACTIONS(7253), 1, anon_sym_DOT_DOT, + ACTIONS(7255), 1, anon_sym_AMP_AMP, + ACTIONS(7257), 1, anon_sym_PIPE_PIPE, + ACTIONS(7259), 1, anon_sym_QMARK_QMARK, - anon_sym_equals, - anon_sym_as, + ACTIONS(7261), 1, anon_sym_is, - anon_sym_DASH_GT, - anon_sym_with, - [200940] = 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(8681), 1, - anon_sym_into, - STATE(5601), 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(5951), 11, + ACTIONS(8629), 1, + anon_sym_COMMA, + STATE(2467), 1, + sym_bracketed_argument_list, + STATE(3381), 1, + sym_argument_list, + ACTIONS(5304), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7229), 2, anon_sym_LT, anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, + ACTIONS(7233), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(5949), 23, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, + ACTIONS(7235), 2, anon_sym_STAR, anon_sym_PERCENT, - anon_sym_CARET, + ACTIONS(7245), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, + ACTIONS(7249), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + ACTIONS(7251), 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_equals, - anon_sym_as, - anon_sym_is, - anon_sym_DASH_GT, - anon_sym_with, - [201024] = 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(8679), 1, - anon_sym_into, - STATE(5601), 1, - aux_sym__query_body_repeat2, - STATE(5602), 9, + STATE(5544), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -685133,43 +679821,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5960), 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(5958), 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, - anon_sym_with, - [201110] = 40, + [195663] = 29, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -685190,72 +679842,49 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4100), 1, + ACTIONS(4042), 1, anon_sym_DOT, - ACTIONS(4102), 1, + ACTIONS(4044), 1, anon_sym_DASH_GT, - ACTIONS(5264), 1, + ACTIONS(5257), 1, anon_sym_LPAREN, - ACTIONS(5304), 1, + ACTIONS(5302), 1, anon_sym_BANG, - ACTIONS(5573), 1, + ACTIONS(5549), 1, anon_sym_LBRACK, - ACTIONS(6343), 1, + ACTIONS(6355), 1, anon_sym_switch, - ACTIONS(6357), 1, - anon_sym_with, - ACTIONS(8150), 1, - anon_sym_QMARK, - ACTIONS(8156), 1, - anon_sym_SLASH, - ACTIONS(8158), 1, - anon_sym_CARET, - ACTIONS(8160), 1, - anon_sym_PIPE, - ACTIONS(8162), 1, - anon_sym_AMP, - ACTIONS(8166), 1, - anon_sym_GT_GT, - ACTIONS(8172), 1, - anon_sym_DOT_DOT, - ACTIONS(8174), 1, - anon_sym_AMP_AMP, - ACTIONS(8176), 1, - anon_sym_PIPE_PIPE, - ACTIONS(8178), 1, - anon_sym_QMARK_QMARK, - ACTIONS(8182), 1, - anon_sym_as, - ACTIONS(8184), 1, - anon_sym_is, - ACTIONS(8684), 1, - anon_sym_by, - STATE(2485), 1, + ACTIONS(6369), 1, + anon_sym_with, + ACTIONS(8236), 1, + anon_sym_SLASH, + ACTIONS(8242), 1, + anon_sym_GT_GT, + ACTIONS(8248), 1, + anon_sym_DOT_DOT, + STATE(2467), 1, sym_bracketed_argument_list, - STATE(3487), 1, + STATE(3381), 1, sym_argument_list, - ACTIONS(5306), 2, + ACTIONS(5304), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(8148), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(8152), 2, + ACTIONS(8232), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(8154), 2, + ACTIONS(8234), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8164), 2, + ACTIONS(8240), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(8168), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(8170), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - STATE(5603), 9, + ACTIONS(5739), 5, + anon_sym_LT, + anon_sym_GT, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_AMP, + STATE(5545), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -685265,7 +679894,19 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [201246] = 40, + ACTIONS(5737), 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, + [195777] = 26, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -685286,72 +679927,44 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4100), 1, + ACTIONS(4042), 1, anon_sym_DOT, - ACTIONS(4102), 1, + ACTIONS(4044), 1, anon_sym_DASH_GT, - ACTIONS(5264), 1, + ACTIONS(5257), 1, anon_sym_LPAREN, - ACTIONS(5304), 1, + ACTIONS(5302), 1, anon_sym_BANG, - ACTIONS(5573), 1, + ACTIONS(5549), 1, anon_sym_LBRACK, - ACTIONS(6343), 1, + ACTIONS(6355), 1, anon_sym_switch, - ACTIONS(6357), 1, + ACTIONS(6369), 1, anon_sym_with, - ACTIONS(7037), 1, - anon_sym_as, - ACTIONS(8234), 1, - anon_sym_QMARK, ACTIONS(8236), 1, - anon_sym_DOT_DOT, - ACTIONS(8238), 1, - anon_sym_is, - ACTIONS(8248), 1, anon_sym_SLASH, - ACTIONS(8250), 1, - anon_sym_CARET, - ACTIONS(8252), 1, - anon_sym_PIPE, - ACTIONS(8254), 1, - anon_sym_AMP, - ACTIONS(8258), 1, - anon_sym_GT_GT, - ACTIONS(8264), 1, - anon_sym_AMP_AMP, - ACTIONS(8266), 1, - anon_sym_PIPE_PIPE, - ACTIONS(8268), 1, - anon_sym_QMARK_QMARK, - ACTIONS(8686), 1, - anon_sym_COLON, - STATE(2485), 1, + ACTIONS(8248), 1, + anon_sym_DOT_DOT, + STATE(2467), 1, sym_bracketed_argument_list, - STATE(3487), 1, + STATE(3381), 1, sym_argument_list, - ACTIONS(5306), 2, + ACTIONS(5304), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(8242), 2, + ACTIONS(8234), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(5739), 8, anon_sym_LT, anon_sym_GT, - ACTIONS(8244), 2, + anon_sym_QMARK, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(8246), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(8256), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - ACTIONS(8260), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(8262), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - STATE(5604), 9, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT_GT, + STATE(5546), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -685361,7 +679974,21 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [201382] = 40, + ACTIONS(5737), 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, + [195885] = 24, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -685382,72 +680009,40 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4100), 1, + ACTIONS(4042), 1, anon_sym_DOT, - ACTIONS(4102), 1, + ACTIONS(4044), 1, anon_sym_DASH_GT, - ACTIONS(5264), 1, + ACTIONS(5257), 1, anon_sym_LPAREN, - ACTIONS(5304), 1, + ACTIONS(5302), 1, anon_sym_BANG, - ACTIONS(5573), 1, + ACTIONS(5549), 1, anon_sym_LBRACK, - ACTIONS(6343), 1, + ACTIONS(6355), 1, anon_sym_switch, - ACTIONS(6357), 1, + ACTIONS(6369), 1, anon_sym_with, - ACTIONS(7037), 1, - anon_sym_as, - ACTIONS(8234), 1, - anon_sym_QMARK, - ACTIONS(8236), 1, - anon_sym_DOT_DOT, - ACTIONS(8238), 1, - anon_sym_is, ACTIONS(8248), 1, - anon_sym_SLASH, - ACTIONS(8250), 1, - anon_sym_CARET, - ACTIONS(8252), 1, - anon_sym_PIPE, - ACTIONS(8254), 1, - anon_sym_AMP, - ACTIONS(8258), 1, - anon_sym_GT_GT, - ACTIONS(8264), 1, - anon_sym_AMP_AMP, - ACTIONS(8266), 1, - anon_sym_PIPE_PIPE, - ACTIONS(8268), 1, - anon_sym_QMARK_QMARK, - ACTIONS(8688), 1, - anon_sym_COLON, - STATE(2485), 1, + anon_sym_DOT_DOT, + STATE(2467), 1, sym_bracketed_argument_list, - STATE(3487), 1, + STATE(3381), 1, sym_argument_list, - ACTIONS(5306), 2, + ACTIONS(5304), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(8242), 2, + ACTIONS(5739), 9, anon_sym_LT, anon_sym_GT, - ACTIONS(8244), 2, + anon_sym_QMARK, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(8246), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(8256), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - ACTIONS(8260), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(8262), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - STATE(5605), 9, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT_GT, + STATE(5547), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -685457,7 +680052,23 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [201518] = 40, + ACTIONS(5737), 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, + [195989] = 27, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -685478,72 +680089,45 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4100), 1, + ACTIONS(4042), 1, anon_sym_DOT, - ACTIONS(4102), 1, + ACTIONS(4044), 1, anon_sym_DASH_GT, - ACTIONS(5264), 1, + ACTIONS(5257), 1, anon_sym_LPAREN, - ACTIONS(5304), 1, + ACTIONS(5302), 1, anon_sym_BANG, - ACTIONS(5573), 1, + ACTIONS(5549), 1, anon_sym_LBRACK, - ACTIONS(6343), 1, + ACTIONS(6355), 1, anon_sym_switch, - ACTIONS(6357), 1, + ACTIONS(6369), 1, anon_sym_with, - ACTIONS(6813), 1, - anon_sym_as, - ACTIONS(7139), 1, - anon_sym_QMARK, - ACTIONS(7145), 1, + ACTIONS(8236), 1, anon_sym_SLASH, - ACTIONS(7147), 1, - anon_sym_CARET, - ACTIONS(7149), 1, - anon_sym_PIPE, - ACTIONS(7151), 1, - anon_sym_AMP, - ACTIONS(7155), 1, - anon_sym_GT_GT, - ACTIONS(7161), 1, + ACTIONS(8248), 1, anon_sym_DOT_DOT, - ACTIONS(7163), 1, - anon_sym_AMP_AMP, - ACTIONS(7165), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7167), 1, - anon_sym_QMARK_QMARK, - ACTIONS(7169), 1, - anon_sym_is, - ACTIONS(8690), 1, - anon_sym_COMMA, - STATE(2485), 1, + STATE(2467), 1, sym_bracketed_argument_list, - STATE(3487), 1, + STATE(3381), 1, sym_argument_list, - ACTIONS(5306), 2, + ACTIONS(5304), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7137), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(7141), 2, + ACTIONS(8232), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7143), 2, + ACTIONS(8234), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7153), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - ACTIONS(7157), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(7159), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - STATE(5606), 9, + ACTIONS(5739), 6, + anon_sym_LT, + anon_sym_GT, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT_GT, + STATE(5548), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -685553,7 +680137,21 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [201654] = 40, + ACTIONS(5737), 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, + [196099] = 22, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -685574,72 +680172,89 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4100), 1, + ACTIONS(4042), 1, anon_sym_DOT, - ACTIONS(4102), 1, + ACTIONS(4044), 1, anon_sym_DASH_GT, - ACTIONS(5264), 1, + ACTIONS(5257), 1, anon_sym_LPAREN, - ACTIONS(5304), 1, + ACTIONS(5302), 1, anon_sym_BANG, - ACTIONS(5573), 1, + ACTIONS(5549), 1, anon_sym_LBRACK, - ACTIONS(6343), 1, - anon_sym_switch, - ACTIONS(6357), 1, - anon_sym_with, - ACTIONS(7037), 1, - anon_sym_as, - ACTIONS(8234), 1, - anon_sym_QMARK, - ACTIONS(8236), 1, - anon_sym_DOT_DOT, - ACTIONS(8238), 1, - anon_sym_is, ACTIONS(8248), 1, - anon_sym_SLASH, - ACTIONS(8250), 1, - anon_sym_CARET, - ACTIONS(8252), 1, - anon_sym_PIPE, - ACTIONS(8254), 1, - anon_sym_AMP, - ACTIONS(8258), 1, - anon_sym_GT_GT, - ACTIONS(8264), 1, - anon_sym_AMP_AMP, - ACTIONS(8266), 1, - anon_sym_PIPE_PIPE, - ACTIONS(8268), 1, - anon_sym_QMARK_QMARK, - ACTIONS(8692), 1, - anon_sym_COLON, - STATE(2485), 1, + anon_sym_DOT_DOT, + STATE(2467), 1, sym_bracketed_argument_list, - STATE(3487), 1, + STATE(3381), 1, sym_argument_list, - ACTIONS(5306), 2, + ACTIONS(5304), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(8242), 2, + ACTIONS(5743), 9, anon_sym_LT, anon_sym_GT, - ACTIONS(8244), 2, + anon_sym_QMARK, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(8246), 2, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT_GT, + 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, + ACTIONS(5741), 17, + anon_sym_in, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8256), 2, + anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(8260), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(8262), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - STATE(5607), 9, + anon_sym_switch, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, + anon_sym_as, + anon_sym_is, + anon_sym_with, + [196199] = 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(4990), 3, + anon_sym_LBRACK, + anon_sym_LPAREN, + aux_sym_preproc_if_token1, + STATE(5550), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -685649,7 +680264,41 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [201790] = 40, + ACTIONS(4988), 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, + [196281] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -685670,72 +680319,72 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4100), 1, + ACTIONS(4042), 1, anon_sym_DOT, - ACTIONS(4102), 1, + ACTIONS(4044), 1, anon_sym_DASH_GT, - ACTIONS(5264), 1, + ACTIONS(5257), 1, anon_sym_LPAREN, - ACTIONS(5304), 1, + ACTIONS(5302), 1, anon_sym_BANG, - ACTIONS(5573), 1, + ACTIONS(5549), 1, anon_sym_LBRACK, - ACTIONS(6343), 1, + ACTIONS(6355), 1, anon_sym_switch, - ACTIONS(6357), 1, + ACTIONS(6369), 1, anon_sym_with, - ACTIONS(7037), 1, + ACTIONS(6811), 1, anon_sym_as, - ACTIONS(8234), 1, + ACTIONS(7231), 1, anon_sym_QMARK, - ACTIONS(8236), 1, - anon_sym_DOT_DOT, - ACTIONS(8238), 1, - anon_sym_is, - ACTIONS(8248), 1, + ACTIONS(7237), 1, anon_sym_SLASH, - ACTIONS(8250), 1, + ACTIONS(7239), 1, anon_sym_CARET, - ACTIONS(8252), 1, + ACTIONS(7241), 1, anon_sym_PIPE, - ACTIONS(8254), 1, + ACTIONS(7243), 1, anon_sym_AMP, - ACTIONS(8258), 1, + ACTIONS(7247), 1, anon_sym_GT_GT, - ACTIONS(8264), 1, + ACTIONS(7253), 1, + anon_sym_DOT_DOT, + ACTIONS(7255), 1, anon_sym_AMP_AMP, - ACTIONS(8266), 1, + ACTIONS(7257), 1, anon_sym_PIPE_PIPE, - ACTIONS(8268), 1, + ACTIONS(7259), 1, anon_sym_QMARK_QMARK, - ACTIONS(8694), 1, - anon_sym_COLON, - STATE(2485), 1, + ACTIONS(7261), 1, + anon_sym_is, + ACTIONS(8631), 1, + anon_sym_RPAREN, + STATE(2467), 1, sym_bracketed_argument_list, - STATE(3487), 1, + STATE(3381), 1, sym_argument_list, - ACTIONS(5306), 2, + ACTIONS(5304), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(8242), 2, + ACTIONS(7229), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(8244), 2, + ACTIONS(7233), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(8246), 2, + ACTIONS(7235), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8256), 2, + ACTIONS(7245), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(8260), 2, + ACTIONS(7249), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(8262), 2, + ACTIONS(7251), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - STATE(5608), 9, + STATE(5551), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -685745,7 +680394,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [201926] = 40, + [196417] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -685766,72 +680415,72 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4100), 1, + ACTIONS(4042), 1, anon_sym_DOT, - ACTIONS(4102), 1, + ACTIONS(4044), 1, anon_sym_DASH_GT, - ACTIONS(5264), 1, + ACTIONS(5257), 1, anon_sym_LPAREN, - ACTIONS(5304), 1, + ACTIONS(5302), 1, anon_sym_BANG, - ACTIONS(5573), 1, + ACTIONS(5549), 1, anon_sym_LBRACK, - ACTIONS(6343), 1, + ACTIONS(5709), 1, + anon_sym_COLON, + ACTIONS(6355), 1, anon_sym_switch, - ACTIONS(6357), 1, + ACTIONS(6369), 1, anon_sym_with, - ACTIONS(6813), 1, + ACTIONS(7195), 1, anon_sym_as, - ACTIONS(7139), 1, + ACTIONS(8152), 1, anon_sym_QMARK, - ACTIONS(7145), 1, + ACTIONS(8158), 1, anon_sym_SLASH, - ACTIONS(7147), 1, + ACTIONS(8160), 1, anon_sym_CARET, - ACTIONS(7149), 1, + ACTIONS(8162), 1, anon_sym_PIPE, - ACTIONS(7151), 1, + ACTIONS(8164), 1, anon_sym_AMP, - ACTIONS(7155), 1, + ACTIONS(8168), 1, anon_sym_GT_GT, - ACTIONS(7161), 1, + ACTIONS(8174), 1, anon_sym_DOT_DOT, - ACTIONS(7163), 1, + ACTIONS(8176), 1, anon_sym_AMP_AMP, - ACTIONS(7165), 1, + ACTIONS(8178), 1, anon_sym_PIPE_PIPE, - ACTIONS(7167), 1, + ACTIONS(8180), 1, anon_sym_QMARK_QMARK, - ACTIONS(7169), 1, + ACTIONS(8182), 1, anon_sym_is, - ACTIONS(8696), 1, - anon_sym_RPAREN, - STATE(2485), 1, + STATE(2467), 1, sym_bracketed_argument_list, - STATE(3487), 1, + STATE(3381), 1, sym_argument_list, - ACTIONS(5306), 2, + ACTIONS(5304), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7137), 2, + ACTIONS(8150), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7141), 2, + ACTIONS(8154), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7143), 2, + ACTIONS(8156), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7153), 2, + ACTIONS(8166), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7157), 2, + ACTIONS(8170), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7159), 2, + ACTIONS(8172), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - STATE(5609), 9, + STATE(5552), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -685841,7 +680490,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [202062] = 15, + [196553] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -685862,11 +680511,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8698), 1, - anon_sym_into, - STATE(5612), 1, - aux_sym__query_body_repeat2, - STATE(5610), 9, + ACTIONS(5136), 3, + anon_sym_LBRACK, + anon_sym_LPAREN, + aux_sym_preproc_if_token1, + STATE(5553), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -685876,43 +680525,41 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(6005), 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(6003), 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, + ACTIONS(5134), 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_as, - anon_sym_is, - anon_sym_DASH_GT, - anon_sym_with, - [202148] = 15, + 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, + [196635] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -685933,11 +680580,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8698), 1, - anon_sym_into, - STATE(5613), 1, - aux_sym__query_body_repeat2, - STATE(5611), 9, + ACTIONS(8633), 1, + anon_sym_SEMI, + STATE(5554), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -685947,7 +680592,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(6005), 11, + ACTIONS(5144), 11, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, @@ -685959,9 +680604,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT, - ACTIONS(6003), 23, + ACTIONS(5142), 24, anon_sym_LBRACK, + anon_sym_COMMA, anon_sym_LPAREN, + anon_sym_RBRACE, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_STAR, @@ -685978,12 +680625,11 @@ 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, - [202234] = 14, + [196719] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -686004,152 +680650,72 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8700), 1, - anon_sym_into, - STATE(5612), 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(5951), 11, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, + ACTIONS(4042), 1, + anon_sym_DOT, + ACTIONS(4044), 1, + anon_sym_DASH_GT, + ACTIONS(5257), 1, + anon_sym_LPAREN, + ACTIONS(5302), 1, anon_sym_BANG, - anon_sym_PLUS, - anon_sym_DASH, + ACTIONS(5549), 1, + anon_sym_LBRACK, + ACTIONS(6355), 1, + anon_sym_switch, + ACTIONS(6369), 1, + anon_sym_with, + ACTIONS(6811), 1, + anon_sym_as, + ACTIONS(7231), 1, + anon_sym_QMARK, + ACTIONS(7237), 1, anon_sym_SLASH, + ACTIONS(7239), 1, + anon_sym_CARET, + ACTIONS(7241), 1, anon_sym_PIPE, + ACTIONS(7243), 1, anon_sym_AMP, + ACTIONS(7247), 1, anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(5949), 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, + ACTIONS(7253), 1, anon_sym_DOT_DOT, + ACTIONS(7255), 1, anon_sym_AMP_AMP, + ACTIONS(7257), 1, anon_sym_PIPE_PIPE, + ACTIONS(7259), 1, anon_sym_QMARK_QMARK, - anon_sym_on, - anon_sym_as, + ACTIONS(7261), 1, anon_sym_is, - anon_sym_DASH_GT, - anon_sym_with, - [202318] = 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(8698), 1, - anon_sym_into, - STATE(5612), 1, - aux_sym__query_body_repeat2, - STATE(5613), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - ACTIONS(5960), 11, + ACTIONS(8635), 1, + anon_sym_RPAREN, + STATE(2467), 1, + sym_bracketed_argument_list, + STATE(3381), 1, + sym_argument_list, + ACTIONS(5304), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7229), 2, anon_sym_LT, anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, + ACTIONS(7233), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(5958), 23, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, + ACTIONS(7235), 2, anon_sym_STAR, anon_sym_PERCENT, - anon_sym_CARET, + ACTIONS(7245), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, + ACTIONS(7249), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + ACTIONS(7251), 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, - [202404] = 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(8524), 1, - anon_sym_into, - STATE(5466), 1, - aux_sym__query_body_repeat2, - STATE(5614), 9, + STATE(5555), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -686159,43 +680725,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(6001), 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(5999), 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, - [202490] = 40, + [196855] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -686216,72 +680746,72 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4100), 1, + ACTIONS(4042), 1, anon_sym_DOT, - ACTIONS(4102), 1, + ACTIONS(4044), 1, anon_sym_DASH_GT, - ACTIONS(5264), 1, + ACTIONS(5257), 1, anon_sym_LPAREN, - ACTIONS(5304), 1, + ACTIONS(5302), 1, anon_sym_BANG, - ACTIONS(5573), 1, + ACTIONS(5549), 1, anon_sym_LBRACK, - ACTIONS(6343), 1, + ACTIONS(6355), 1, anon_sym_switch, - ACTIONS(6357), 1, + ACTIONS(6369), 1, anon_sym_with, - ACTIONS(6813), 1, + ACTIONS(7195), 1, anon_sym_as, - ACTIONS(7139), 1, + ACTIONS(8152), 1, anon_sym_QMARK, - ACTIONS(7145), 1, + ACTIONS(8158), 1, anon_sym_SLASH, - ACTIONS(7147), 1, + ACTIONS(8160), 1, anon_sym_CARET, - ACTIONS(7149), 1, + ACTIONS(8162), 1, anon_sym_PIPE, - ACTIONS(7151), 1, + ACTIONS(8164), 1, anon_sym_AMP, - ACTIONS(7155), 1, + ACTIONS(8168), 1, anon_sym_GT_GT, - ACTIONS(7161), 1, + ACTIONS(8174), 1, anon_sym_DOT_DOT, - ACTIONS(7163), 1, + ACTIONS(8176), 1, anon_sym_AMP_AMP, - ACTIONS(7165), 1, + ACTIONS(8178), 1, anon_sym_PIPE_PIPE, - ACTIONS(7167), 1, + ACTIONS(8180), 1, anon_sym_QMARK_QMARK, - ACTIONS(7169), 1, + ACTIONS(8182), 1, anon_sym_is, - ACTIONS(8703), 1, - anon_sym_COMMA, - STATE(2485), 1, + ACTIONS(8637), 1, + anon_sym_COLON, + STATE(2467), 1, sym_bracketed_argument_list, - STATE(3487), 1, + STATE(3381), 1, sym_argument_list, - ACTIONS(5306), 2, + ACTIONS(5304), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7137), 2, + ACTIONS(8150), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7141), 2, + ACTIONS(8154), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7143), 2, + ACTIONS(8156), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7153), 2, + ACTIONS(8166), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7157), 2, + ACTIONS(8170), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7159), 2, + ACTIONS(8172), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - STATE(5615), 9, + STATE(5556), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -686291,7 +680821,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [202626] = 40, + [196991] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -686312,72 +680842,72 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4100), 1, + ACTIONS(4042), 1, anon_sym_DOT, - ACTIONS(4102), 1, + ACTIONS(4044), 1, anon_sym_DASH_GT, - ACTIONS(5264), 1, + ACTIONS(5257), 1, anon_sym_LPAREN, - ACTIONS(5304), 1, + ACTIONS(5302), 1, anon_sym_BANG, - ACTIONS(5573), 1, + ACTIONS(5549), 1, anon_sym_LBRACK, - ACTIONS(6343), 1, + ACTIONS(6355), 1, anon_sym_switch, - ACTIONS(6357), 1, + ACTIONS(6369), 1, anon_sym_with, - ACTIONS(6813), 1, + ACTIONS(6811), 1, anon_sym_as, - ACTIONS(7139), 1, + ACTIONS(7231), 1, anon_sym_QMARK, - ACTIONS(7145), 1, + ACTIONS(7237), 1, anon_sym_SLASH, - ACTIONS(7147), 1, + ACTIONS(7239), 1, anon_sym_CARET, - ACTIONS(7149), 1, + ACTIONS(7241), 1, anon_sym_PIPE, - ACTIONS(7151), 1, + ACTIONS(7243), 1, anon_sym_AMP, - ACTIONS(7155), 1, + ACTIONS(7247), 1, anon_sym_GT_GT, - ACTIONS(7161), 1, + ACTIONS(7253), 1, anon_sym_DOT_DOT, - ACTIONS(7163), 1, + ACTIONS(7255), 1, anon_sym_AMP_AMP, - ACTIONS(7165), 1, + ACTIONS(7257), 1, anon_sym_PIPE_PIPE, - ACTIONS(7167), 1, + ACTIONS(7259), 1, anon_sym_QMARK_QMARK, - ACTIONS(7169), 1, + ACTIONS(7261), 1, anon_sym_is, - ACTIONS(8705), 1, + ACTIONS(8639), 1, anon_sym_RPAREN, - STATE(2485), 1, + STATE(2467), 1, sym_bracketed_argument_list, - STATE(3487), 1, + STATE(3381), 1, sym_argument_list, - ACTIONS(5306), 2, + ACTIONS(5304), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7137), 2, + ACTIONS(7229), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7141), 2, + ACTIONS(7233), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7143), 2, + ACTIONS(7235), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7153), 2, + ACTIONS(7245), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7157), 2, + ACTIONS(7249), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7159), 2, + ACTIONS(7251), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - STATE(5616), 9, + STATE(5557), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -686387,7 +680917,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [202762] = 40, + [197127] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -686408,72 +680938,72 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4100), 1, + ACTIONS(4042), 1, anon_sym_DOT, - ACTIONS(4102), 1, + ACTIONS(4044), 1, anon_sym_DASH_GT, - ACTIONS(5264), 1, + ACTIONS(5257), 1, anon_sym_LPAREN, - ACTIONS(5304), 1, + ACTIONS(5302), 1, anon_sym_BANG, - ACTIONS(5573), 1, + ACTIONS(5549), 1, anon_sym_LBRACK, - ACTIONS(6343), 1, + ACTIONS(6355), 1, anon_sym_switch, - ACTIONS(6357), 1, + ACTIONS(6369), 1, anon_sym_with, - ACTIONS(6813), 1, + ACTIONS(6811), 1, anon_sym_as, - ACTIONS(6815), 1, - anon_sym_is, - ACTIONS(7183), 1, + ACTIONS(7231), 1, + anon_sym_QMARK, + ACTIONS(7237), 1, anon_sym_SLASH, - ACTIONS(7187), 1, - anon_sym_GT_GT, - ACTIONS(7189), 1, - anon_sym_DOT_DOT, - ACTIONS(7195), 1, - anon_sym_AMP, - ACTIONS(7201), 1, + ACTIONS(7239), 1, anon_sym_CARET, - ACTIONS(7203), 1, + ACTIONS(7241), 1, anon_sym_PIPE, - ACTIONS(7205), 1, + ACTIONS(7243), 1, + anon_sym_AMP, + ACTIONS(7247), 1, + anon_sym_GT_GT, + ACTIONS(7253), 1, + anon_sym_DOT_DOT, + ACTIONS(7255), 1, anon_sym_AMP_AMP, - ACTIONS(7207), 1, + ACTIONS(7257), 1, anon_sym_PIPE_PIPE, - ACTIONS(7209), 1, + ACTIONS(7259), 1, anon_sym_QMARK_QMARK, - ACTIONS(7237), 1, - anon_sym_QMARK, - ACTIONS(8707), 1, - anon_sym_SEMI, - STATE(2485), 1, + ACTIONS(7261), 1, + anon_sym_is, + ACTIONS(8641), 1, + anon_sym_RPAREN, + STATE(2467), 1, sym_bracketed_argument_list, - STATE(3487), 1, + STATE(3381), 1, sym_argument_list, - ACTIONS(5306), 2, + ACTIONS(5304), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7179), 2, + ACTIONS(7229), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(7233), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7181), 2, + ACTIONS(7235), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7185), 2, + ACTIONS(7245), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7193), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(7197), 2, + ACTIONS(7249), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7199), 2, + ACTIONS(7251), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - STATE(5617), 9, + STATE(5558), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -686483,7 +681013,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [202898] = 40, + [197263] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -686504,72 +681034,72 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4100), 1, + ACTIONS(4042), 1, anon_sym_DOT, - ACTIONS(4102), 1, + ACTIONS(4044), 1, anon_sym_DASH_GT, - ACTIONS(5264), 1, + ACTIONS(5257), 1, anon_sym_LPAREN, - ACTIONS(5304), 1, + ACTIONS(5302), 1, anon_sym_BANG, - ACTIONS(5573), 1, + ACTIONS(5549), 1, anon_sym_LBRACK, - ACTIONS(6343), 1, + ACTIONS(6355), 1, anon_sym_switch, - ACTIONS(6357), 1, + ACTIONS(6369), 1, anon_sym_with, - ACTIONS(6813), 1, + ACTIONS(6811), 1, anon_sym_as, - ACTIONS(7139), 1, + ACTIONS(7231), 1, anon_sym_QMARK, - ACTIONS(7145), 1, + ACTIONS(7237), 1, anon_sym_SLASH, - ACTIONS(7147), 1, + ACTIONS(7239), 1, anon_sym_CARET, - ACTIONS(7149), 1, + ACTIONS(7241), 1, anon_sym_PIPE, - ACTIONS(7151), 1, + ACTIONS(7243), 1, anon_sym_AMP, - ACTIONS(7155), 1, + ACTIONS(7247), 1, anon_sym_GT_GT, - ACTIONS(7161), 1, + ACTIONS(7253), 1, anon_sym_DOT_DOT, - ACTIONS(7163), 1, + ACTIONS(7255), 1, anon_sym_AMP_AMP, - ACTIONS(7165), 1, + ACTIONS(7257), 1, anon_sym_PIPE_PIPE, - ACTIONS(7167), 1, + ACTIONS(7259), 1, anon_sym_QMARK_QMARK, - ACTIONS(7169), 1, + ACTIONS(7261), 1, anon_sym_is, - ACTIONS(8709), 1, + ACTIONS(8643), 1, anon_sym_RPAREN, - STATE(2485), 1, + STATE(2467), 1, sym_bracketed_argument_list, - STATE(3487), 1, + STATE(3381), 1, sym_argument_list, - ACTIONS(5306), 2, + ACTIONS(5304), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7137), 2, + ACTIONS(7229), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7141), 2, + ACTIONS(7233), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7143), 2, + ACTIONS(7235), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7153), 2, + ACTIONS(7245), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7157), 2, + ACTIONS(7249), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7159), 2, + ACTIONS(7251), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - STATE(5618), 9, + STATE(5559), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -686579,7 +681109,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [203034] = 15, + [197399] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -686600,57 +681130,82 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8711), 1, - anon_sym_into, - STATE(5621), 1, - aux_sym__query_body_repeat2, - STATE(5619), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - ACTIONS(6005), 11, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, + ACTIONS(4042), 1, + anon_sym_DOT, + ACTIONS(4044), 1, + anon_sym_DASH_GT, + ACTIONS(5257), 1, + anon_sym_LPAREN, + ACTIONS(5302), 1, anon_sym_BANG, - anon_sym_PLUS, - anon_sym_DASH, + ACTIONS(5549), 1, + anon_sym_LBRACK, + ACTIONS(6355), 1, + anon_sym_switch, + ACTIONS(6369), 1, + anon_sym_with, + ACTIONS(6811), 1, + anon_sym_as, + ACTIONS(6813), 1, + anon_sym_is, + ACTIONS(6985), 1, anon_sym_SLASH, + ACTIONS(6989), 1, + anon_sym_GT_GT, + ACTIONS(6991), 1, + anon_sym_DOT_DOT, + ACTIONS(7099), 1, + anon_sym_QMARK, + ACTIONS(7101), 1, + anon_sym_CARET, + ACTIONS(7103), 1, anon_sym_PIPE, + ACTIONS(7105), 1, anon_sym_AMP, - anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(6003), 23, - anon_sym_LBRACK, - anon_sym_LPAREN, + ACTIONS(7111), 1, + anon_sym_AMP_AMP, + ACTIONS(7113), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7115), 1, + anon_sym_QMARK_QMARK, + ACTIONS(8645), 1, + anon_sym_SEMI, + STATE(2467), 1, + sym_bracketed_argument_list, + STATE(3381), 1, + sym_argument_list, + ACTIONS(5304), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + ACTIONS(6981), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6983), 2, anon_sym_STAR, anon_sym_PERCENT, - anon_sym_CARET, + ACTIONS(6987), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, + ACTIONS(7097), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(7107), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + ACTIONS(7109), 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, - [203120] = 15, + STATE(5560), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + [197535] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -686671,57 +681226,82 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8711), 1, - anon_sym_into, - STATE(5622), 1, - aux_sym__query_body_repeat2, - STATE(5620), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - ACTIONS(6005), 11, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, + ACTIONS(4042), 1, + anon_sym_DOT, + ACTIONS(4044), 1, + anon_sym_DASH_GT, + ACTIONS(5257), 1, + anon_sym_LPAREN, + ACTIONS(5302), 1, anon_sym_BANG, - anon_sym_PLUS, - anon_sym_DASH, + ACTIONS(5549), 1, + anon_sym_LBRACK, + ACTIONS(6355), 1, + anon_sym_switch, + ACTIONS(6369), 1, + anon_sym_with, + ACTIONS(6811), 1, + anon_sym_as, + ACTIONS(6813), 1, + anon_sym_is, + ACTIONS(6985), 1, anon_sym_SLASH, + ACTIONS(6989), 1, + anon_sym_GT_GT, + ACTIONS(6991), 1, + anon_sym_DOT_DOT, + ACTIONS(7099), 1, + anon_sym_QMARK, + ACTIONS(7101), 1, + anon_sym_CARET, + ACTIONS(7103), 1, anon_sym_PIPE, + ACTIONS(7105), 1, anon_sym_AMP, - anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(6003), 23, - anon_sym_LBRACK, - anon_sym_LPAREN, + ACTIONS(7111), 1, + anon_sym_AMP_AMP, + ACTIONS(7113), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7115), 1, + anon_sym_QMARK_QMARK, + ACTIONS(8647), 1, + anon_sym_SEMI, + STATE(2467), 1, + sym_bracketed_argument_list, + STATE(3381), 1, + sym_argument_list, + ACTIONS(5304), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + ACTIONS(6981), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6983), 2, anon_sym_STAR, anon_sym_PERCENT, - anon_sym_CARET, + ACTIONS(6987), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, + ACTIONS(7097), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(7107), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + ACTIONS(7109), 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, - [203206] = 14, + STATE(5561), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + [197671] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -686742,81 +681322,72 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8713), 1, - anon_sym_into, - STATE(5621), 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(5951), 11, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, + ACTIONS(4042), 1, + anon_sym_DOT, + ACTIONS(4044), 1, + anon_sym_DASH_GT, + ACTIONS(5257), 1, + anon_sym_LPAREN, + ACTIONS(5302), 1, anon_sym_BANG, - anon_sym_PLUS, - anon_sym_DASH, + ACTIONS(5549), 1, + anon_sym_LBRACK, + ACTIONS(6355), 1, + anon_sym_switch, + ACTIONS(6369), 1, + anon_sym_with, + ACTIONS(6811), 1, + anon_sym_as, + ACTIONS(7231), 1, + anon_sym_QMARK, + ACTIONS(7237), 1, anon_sym_SLASH, + ACTIONS(7239), 1, + anon_sym_CARET, + ACTIONS(7241), 1, anon_sym_PIPE, + ACTIONS(7243), 1, anon_sym_AMP, + ACTIONS(7247), 1, anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(5949), 23, - anon_sym_LBRACK, - anon_sym_LPAREN, + ACTIONS(7253), 1, + anon_sym_DOT_DOT, + ACTIONS(7255), 1, + anon_sym_AMP_AMP, + ACTIONS(7257), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7259), 1, + anon_sym_QMARK_QMARK, + ACTIONS(7261), 1, + anon_sym_is, + ACTIONS(8649), 1, + anon_sym_RPAREN, + STATE(2467), 1, + sym_bracketed_argument_list, + STATE(3381), 1, + sym_argument_list, + ACTIONS(5304), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + ACTIONS(7229), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(7233), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(7235), 2, anon_sym_STAR, anon_sym_PERCENT, - anon_sym_CARET, + ACTIONS(7245), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, + ACTIONS(7249), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + ACTIONS(7251), 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, - [203290] = 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(8711), 1, - anon_sym_into, - STATE(5621), 1, - aux_sym__query_body_repeat2, - STATE(5622), 9, + STATE(5562), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -686826,43 +681397,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5960), 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(5958), 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_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, - [203376] = 15, + [197807] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -686883,57 +681418,82 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8679), 1, - anon_sym_into, - STATE(5599), 1, - aux_sym__query_body_repeat2, - STATE(5623), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - ACTIONS(6001), 11, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, + ACTIONS(4042), 1, + anon_sym_DOT, + ACTIONS(4044), 1, + anon_sym_DASH_GT, + ACTIONS(5257), 1, + anon_sym_LPAREN, + ACTIONS(5302), 1, anon_sym_BANG, - anon_sym_PLUS, - anon_sym_DASH, + ACTIONS(5549), 1, + anon_sym_LBRACK, + ACTIONS(6355), 1, + anon_sym_switch, + ACTIONS(6369), 1, + anon_sym_with, + ACTIONS(6811), 1, + anon_sym_as, + ACTIONS(7231), 1, + anon_sym_QMARK, + ACTIONS(7237), 1, anon_sym_SLASH, + ACTIONS(7239), 1, + anon_sym_CARET, + ACTIONS(7241), 1, anon_sym_PIPE, + ACTIONS(7243), 1, anon_sym_AMP, + ACTIONS(7247), 1, anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(5999), 23, - anon_sym_LBRACK, - anon_sym_LPAREN, + ACTIONS(7253), 1, + anon_sym_DOT_DOT, + ACTIONS(7255), 1, + anon_sym_AMP_AMP, + ACTIONS(7257), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7259), 1, + anon_sym_QMARK_QMARK, + ACTIONS(7261), 1, + anon_sym_is, + ACTIONS(8651), 1, + anon_sym_RPAREN, + STATE(2467), 1, + sym_bracketed_argument_list, + STATE(3381), 1, + sym_argument_list, + ACTIONS(5304), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + ACTIONS(7229), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(7233), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(7235), 2, anon_sym_STAR, anon_sym_PERCENT, - anon_sym_CARET, + ACTIONS(7245), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, + ACTIONS(7249), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + ACTIONS(7251), 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_equals, - anon_sym_as, - anon_sym_is, - anon_sym_DASH_GT, - anon_sym_with, - [203462] = 40, + 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, + [197943] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -686954,72 +681514,72 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4100), 1, + ACTIONS(4042), 1, anon_sym_DOT, - ACTIONS(4102), 1, + ACTIONS(4044), 1, anon_sym_DASH_GT, - ACTIONS(5264), 1, + ACTIONS(5257), 1, anon_sym_LPAREN, - ACTIONS(5304), 1, + ACTIONS(5302), 1, anon_sym_BANG, - ACTIONS(5573), 1, + ACTIONS(5549), 1, anon_sym_LBRACK, - ACTIONS(6343), 1, + ACTIONS(6355), 1, anon_sym_switch, - ACTIONS(6357), 1, + ACTIONS(6369), 1, anon_sym_with, - ACTIONS(6813), 1, + ACTIONS(6811), 1, anon_sym_as, - ACTIONS(7139), 1, + ACTIONS(7231), 1, anon_sym_QMARK, - ACTIONS(7145), 1, + ACTIONS(7237), 1, anon_sym_SLASH, - ACTIONS(7147), 1, + ACTIONS(7239), 1, anon_sym_CARET, - ACTIONS(7149), 1, + ACTIONS(7241), 1, anon_sym_PIPE, - ACTIONS(7151), 1, + ACTIONS(7243), 1, anon_sym_AMP, - ACTIONS(7155), 1, + ACTIONS(7247), 1, anon_sym_GT_GT, - ACTIONS(7161), 1, + ACTIONS(7253), 1, anon_sym_DOT_DOT, - ACTIONS(7163), 1, + ACTIONS(7255), 1, anon_sym_AMP_AMP, - ACTIONS(7165), 1, + ACTIONS(7257), 1, anon_sym_PIPE_PIPE, - ACTIONS(7167), 1, + ACTIONS(7259), 1, anon_sym_QMARK_QMARK, - ACTIONS(7169), 1, + ACTIONS(7261), 1, anon_sym_is, - ACTIONS(8716), 1, - anon_sym_COMMA, - STATE(2485), 1, + ACTIONS(8653), 1, + anon_sym_RPAREN, + STATE(2467), 1, sym_bracketed_argument_list, - STATE(3487), 1, + STATE(3381), 1, sym_argument_list, - ACTIONS(5306), 2, + ACTIONS(5304), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7137), 2, + ACTIONS(7229), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7141), 2, + ACTIONS(7233), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7143), 2, + ACTIONS(7235), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7153), 2, + ACTIONS(7245), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7157), 2, + ACTIONS(7249), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7159), 2, + ACTIONS(7251), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - STATE(5624), 9, + STATE(5564), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -687029,7 +681589,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [203598] = 13, + [198079] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -687050,11 +681610,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(5132), 3, + ACTIONS(3759), 3, anon_sym_LBRACK, anon_sym_LPAREN, aux_sym_preproc_if_token1, - STATE(5625), 9, + STATE(5565), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -687064,7 +681624,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5130), 33, + ACTIONS(3757), 33, anon_sym_alias, anon_sym_global, anon_sym_static, @@ -687098,7 +681658,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_select, sym__identifier_token, - [203680] = 40, + [198161] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -687119,72 +681679,72 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4100), 1, + ACTIONS(4042), 1, anon_sym_DOT, - ACTIONS(4102), 1, + ACTIONS(4044), 1, anon_sym_DASH_GT, - ACTIONS(5264), 1, + ACTIONS(5257), 1, anon_sym_LPAREN, - ACTIONS(5304), 1, + ACTIONS(5302), 1, anon_sym_BANG, - ACTIONS(5573), 1, + ACTIONS(5549), 1, anon_sym_LBRACK, - ACTIONS(6343), 1, + ACTIONS(6355), 1, anon_sym_switch, - ACTIONS(6357), 1, + ACTIONS(6369), 1, anon_sym_with, - ACTIONS(6813), 1, + ACTIONS(6811), 1, anon_sym_as, - ACTIONS(7139), 1, - anon_sym_QMARK, - ACTIONS(7145), 1, + ACTIONS(6813), 1, + anon_sym_is, + ACTIONS(6985), 1, anon_sym_SLASH, - ACTIONS(7147), 1, + ACTIONS(6989), 1, + anon_sym_GT_GT, + ACTIONS(6991), 1, + anon_sym_DOT_DOT, + ACTIONS(7099), 1, + anon_sym_QMARK, + ACTIONS(7101), 1, anon_sym_CARET, - ACTIONS(7149), 1, + ACTIONS(7103), 1, anon_sym_PIPE, - ACTIONS(7151), 1, + ACTIONS(7105), 1, anon_sym_AMP, - ACTIONS(7155), 1, - anon_sym_GT_GT, - ACTIONS(7161), 1, - anon_sym_DOT_DOT, - ACTIONS(7163), 1, + ACTIONS(7111), 1, anon_sym_AMP_AMP, - ACTIONS(7165), 1, + ACTIONS(7113), 1, anon_sym_PIPE_PIPE, - ACTIONS(7167), 1, + ACTIONS(7115), 1, anon_sym_QMARK_QMARK, - ACTIONS(7169), 1, - anon_sym_is, - ACTIONS(8718), 1, - anon_sym_RPAREN, - STATE(2485), 1, + ACTIONS(8655), 1, + anon_sym_SEMI, + STATE(2467), 1, sym_bracketed_argument_list, - STATE(3487), 1, + STATE(3381), 1, sym_argument_list, - ACTIONS(5306), 2, + ACTIONS(5304), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7137), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(7141), 2, + ACTIONS(6981), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7143), 2, + ACTIONS(6983), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7153), 2, + ACTIONS(6987), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7157), 2, + ACTIONS(7097), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(7107), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7159), 2, + ACTIONS(7109), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - STATE(5626), 9, + STATE(5566), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -687194,7 +681754,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [203816] = 15, + [198297] = 29, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -687215,11 +681775,49 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8698), 1, - anon_sym_into, - STATE(5610), 1, - aux_sym__query_body_repeat2, - STATE(5627), 9, + ACTIONS(4042), 1, + anon_sym_DOT, + ACTIONS(4044), 1, + anon_sym_DASH_GT, + ACTIONS(5257), 1, + anon_sym_LPAREN, + ACTIONS(5302), 1, + anon_sym_BANG, + ACTIONS(5549), 1, + anon_sym_LBRACK, + ACTIONS(6355), 1, + anon_sym_switch, + ACTIONS(6369), 1, + anon_sym_with, + ACTIONS(8398), 1, + anon_sym_SLASH, + ACTIONS(8408), 1, + anon_sym_GT_GT, + ACTIONS(8414), 1, + anon_sym_DOT_DOT, + STATE(2467), 1, + sym_bracketed_argument_list, + STATE(3381), 1, + sym_argument_list, + ACTIONS(5304), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(8394), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(8396), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(8406), 2, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + ACTIONS(5739), 5, + anon_sym_LT, + anon_sym_GT, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_AMP, + STATE(5567), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -687229,43 +681827,19 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(6001), 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(5999), 23, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_STAR, - anon_sym_PERCENT, + ACTIONS(5737), 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_switch, - anon_sym_DOT_DOT, 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, - [203902] = 40, + [198411] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -687286,72 +681860,72 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4100), 1, + ACTIONS(4042), 1, anon_sym_DOT, - ACTIONS(4102), 1, + ACTIONS(4044), 1, anon_sym_DASH_GT, - ACTIONS(5264), 1, + ACTIONS(5257), 1, anon_sym_LPAREN, - ACTIONS(5304), 1, + ACTIONS(5302), 1, anon_sym_BANG, - ACTIONS(5573), 1, + ACTIONS(5549), 1, anon_sym_LBRACK, - ACTIONS(6343), 1, + ACTIONS(6355), 1, anon_sym_switch, - ACTIONS(6357), 1, + ACTIONS(6369), 1, anon_sym_with, - ACTIONS(6813), 1, + ACTIONS(7195), 1, anon_sym_as, - ACTIONS(7139), 1, + ACTIONS(8152), 1, anon_sym_QMARK, - ACTIONS(7145), 1, + ACTIONS(8158), 1, anon_sym_SLASH, - ACTIONS(7147), 1, + ACTIONS(8160), 1, anon_sym_CARET, - ACTIONS(7149), 1, + ACTIONS(8162), 1, anon_sym_PIPE, - ACTIONS(7151), 1, + ACTIONS(8164), 1, anon_sym_AMP, - ACTIONS(7155), 1, + ACTIONS(8168), 1, anon_sym_GT_GT, - ACTIONS(7161), 1, + ACTIONS(8174), 1, anon_sym_DOT_DOT, - ACTIONS(7163), 1, + ACTIONS(8176), 1, anon_sym_AMP_AMP, - ACTIONS(7165), 1, + ACTIONS(8178), 1, anon_sym_PIPE_PIPE, - ACTIONS(7167), 1, + ACTIONS(8180), 1, anon_sym_QMARK_QMARK, - ACTIONS(7169), 1, + ACTIONS(8182), 1, anon_sym_is, - ACTIONS(8720), 1, - anon_sym_COMMA, - STATE(2485), 1, + ACTIONS(8657), 1, + anon_sym_COLON, + STATE(2467), 1, sym_bracketed_argument_list, - STATE(3487), 1, + STATE(3381), 1, sym_argument_list, - ACTIONS(5306), 2, + ACTIONS(5304), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7137), 2, + ACTIONS(8150), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7141), 2, + ACTIONS(8154), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7143), 2, + ACTIONS(8156), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7153), 2, + ACTIONS(8166), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7157), 2, + ACTIONS(8170), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7159), 2, + ACTIONS(8172), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - STATE(5628), 9, + STATE(5568), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -687361,7 +681935,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [204038] = 40, + [198547] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -687382,72 +681956,72 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4100), 1, + ACTIONS(4042), 1, anon_sym_DOT, - ACTIONS(4102), 1, + ACTIONS(4044), 1, anon_sym_DASH_GT, - ACTIONS(5264), 1, + ACTIONS(5257), 1, anon_sym_LPAREN, - ACTIONS(5304), 1, + ACTIONS(5302), 1, anon_sym_BANG, - ACTIONS(5573), 1, + ACTIONS(5549), 1, anon_sym_LBRACK, - ACTIONS(6343), 1, + ACTIONS(6355), 1, anon_sym_switch, - ACTIONS(6357), 1, + ACTIONS(6369), 1, anon_sym_with, - ACTIONS(6783), 1, + ACTIONS(7195), 1, + anon_sym_as, + ACTIONS(8152), 1, anon_sym_QMARK, - ACTIONS(6789), 1, + ACTIONS(8158), 1, anon_sym_SLASH, - ACTIONS(6791), 1, + ACTIONS(8160), 1, anon_sym_CARET, - ACTIONS(6793), 1, + ACTIONS(8162), 1, anon_sym_PIPE, - ACTIONS(6795), 1, + ACTIONS(8164), 1, anon_sym_AMP, - ACTIONS(6799), 1, + ACTIONS(8168), 1, anon_sym_GT_GT, - ACTIONS(6805), 1, + ACTIONS(8174), 1, anon_sym_DOT_DOT, - ACTIONS(6807), 1, + ACTIONS(8176), 1, anon_sym_AMP_AMP, - ACTIONS(6809), 1, + ACTIONS(8178), 1, anon_sym_PIPE_PIPE, - ACTIONS(6811), 1, + ACTIONS(8180), 1, anon_sym_QMARK_QMARK, - ACTIONS(6813), 1, - anon_sym_as, - ACTIONS(6815), 1, + ACTIONS(8182), 1, anon_sym_is, - ACTIONS(8722), 1, - aux_sym_preproc_if_token3, - STATE(2485), 1, + ACTIONS(8659), 1, + anon_sym_COLON, + STATE(2467), 1, sym_bracketed_argument_list, - STATE(3487), 1, + STATE(3381), 1, sym_argument_list, - ACTIONS(5306), 2, + ACTIONS(5304), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6781), 2, + ACTIONS(8150), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(6785), 2, + ACTIONS(8154), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6787), 2, + ACTIONS(8156), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(6797), 2, + ACTIONS(8166), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(6801), 2, + ACTIONS(8170), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6803), 2, + ACTIONS(8172), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - STATE(5629), 9, + STATE(5569), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -687457,7 +682031,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [204174] = 15, + [198683] = 26, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -687478,11 +682052,44 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8711), 1, - anon_sym_into, - STATE(5619), 1, - aux_sym__query_body_repeat2, - STATE(5630), 9, + ACTIONS(4042), 1, + anon_sym_DOT, + ACTIONS(4044), 1, + anon_sym_DASH_GT, + ACTIONS(5257), 1, + anon_sym_LPAREN, + ACTIONS(5302), 1, + anon_sym_BANG, + ACTIONS(5549), 1, + anon_sym_LBRACK, + ACTIONS(6355), 1, + anon_sym_switch, + ACTIONS(6369), 1, + anon_sym_with, + ACTIONS(8398), 1, + anon_sym_SLASH, + ACTIONS(8414), 1, + anon_sym_DOT_DOT, + STATE(2467), 1, + sym_bracketed_argument_list, + STATE(3381), 1, + sym_argument_list, + ACTIONS(5304), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(8396), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(5739), 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(5570), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -687492,25 +682099,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(6001), 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(5999), 23, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_STAR, - anon_sym_PERCENT, + ACTIONS(5737), 13, anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT_GT, @@ -687518,17 +682107,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_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, - [204260] = 40, + [198791] = 24, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -687549,72 +682134,40 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4100), 1, + ACTIONS(4042), 1, anon_sym_DOT, - ACTIONS(4102), 1, + ACTIONS(4044), 1, anon_sym_DASH_GT, - ACTIONS(5264), 1, + ACTIONS(5257), 1, anon_sym_LPAREN, - ACTIONS(5304), 1, + ACTIONS(5302), 1, anon_sym_BANG, - ACTIONS(5573), 1, + ACTIONS(5549), 1, anon_sym_LBRACK, - ACTIONS(6343), 1, + ACTIONS(6355), 1, anon_sym_switch, - ACTIONS(6357), 1, + ACTIONS(6369), 1, anon_sym_with, - ACTIONS(6813), 1, - anon_sym_as, - ACTIONS(6815), 1, - anon_sym_is, - ACTIONS(7183), 1, - anon_sym_SLASH, - ACTIONS(7187), 1, - anon_sym_GT_GT, - ACTIONS(7189), 1, + ACTIONS(8414), 1, anon_sym_DOT_DOT, - ACTIONS(7195), 1, - anon_sym_AMP, - ACTIONS(7201), 1, - anon_sym_CARET, - ACTIONS(7203), 1, - anon_sym_PIPE, - ACTIONS(7205), 1, - anon_sym_AMP_AMP, - ACTIONS(7207), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7209), 1, - anon_sym_QMARK_QMARK, - ACTIONS(7237), 1, - anon_sym_QMARK, - ACTIONS(8724), 1, - anon_sym_SEMI, - STATE(2485), 1, + STATE(2467), 1, sym_bracketed_argument_list, - STATE(3487), 1, + STATE(3381), 1, sym_argument_list, - ACTIONS(5306), 2, + ACTIONS(5304), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7179), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(7181), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(7185), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - ACTIONS(7193), 2, + ACTIONS(5739), 9, anon_sym_LT, anon_sym_GT, - ACTIONS(7197), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(7199), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - STATE(5631), 9, + anon_sym_QMARK, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT_GT, + STATE(5571), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -687624,7 +682177,23 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [204396] = 40, + ACTIONS(5737), 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, + [198895] = 35, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -687645,72 +682214,67 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4100), 1, + ACTIONS(4042), 1, anon_sym_DOT, - ACTIONS(4102), 1, + ACTIONS(4044), 1, anon_sym_DASH_GT, - ACTIONS(5264), 1, + ACTIONS(5257), 1, anon_sym_LPAREN, - ACTIONS(5304), 1, + ACTIONS(5302), 1, anon_sym_BANG, - ACTIONS(5573), 1, + ACTIONS(5549), 1, anon_sym_LBRACK, - ACTIONS(6343), 1, + ACTIONS(6355), 1, anon_sym_switch, - ACTIONS(6357), 1, + ACTIONS(6369), 1, anon_sym_with, - ACTIONS(8394), 1, - anon_sym_QMARK, - ACTIONS(8400), 1, + ACTIONS(8398), 1, anon_sym_SLASH, - ACTIONS(8402), 1, - anon_sym_CARET, ACTIONS(8404), 1, - anon_sym_PIPE, - ACTIONS(8406), 1, anon_sym_AMP, - ACTIONS(8410), 1, + ACTIONS(8408), 1, anon_sym_GT_GT, - ACTIONS(8416), 1, + ACTIONS(8414), 1, anon_sym_DOT_DOT, - ACTIONS(8418), 1, - anon_sym_AMP_AMP, - ACTIONS(8420), 1, - anon_sym_PIPE_PIPE, - ACTIONS(8422), 1, - anon_sym_QMARK_QMARK, - ACTIONS(8426), 1, + ACTIONS(8424), 1, anon_sym_as, - ACTIONS(8428), 1, + ACTIONS(8426), 1, anon_sym_is, - ACTIONS(8726), 1, - anon_sym_on, - STATE(2485), 1, + STATE(2467), 1, sym_bracketed_argument_list, - STATE(3487), 1, + STATE(3381), 1, sym_argument_list, - ACTIONS(5306), 2, + ACTIONS(5304), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(8392), 2, + ACTIONS(5739), 2, + anon_sym_QMARK, + anon_sym_PIPE, + ACTIONS(8390), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(8396), 2, + ACTIONS(8394), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(8398), 2, + ACTIONS(8396), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8408), 2, + ACTIONS(8406), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(8412), 2, + ACTIONS(8410), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(8414), 2, + ACTIONS(8412), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - STATE(5632), 9, + ACTIONS(5737), 5, + anon_sym_CARET, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, + anon_sym_equals, + STATE(5572), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -687720,7 +682284,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [204532] = 40, + [199021] = 36, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -687741,72 +682305,68 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4100), 1, + ACTIONS(4042), 1, anon_sym_DOT, - ACTIONS(4102), 1, + ACTIONS(4044), 1, anon_sym_DASH_GT, - ACTIONS(5264), 1, + ACTIONS(5257), 1, anon_sym_LPAREN, - ACTIONS(5304), 1, + ACTIONS(5302), 1, anon_sym_BANG, - ACTIONS(5573), 1, + ACTIONS(5549), 1, anon_sym_LBRACK, - ACTIONS(6343), 1, + ACTIONS(6355), 1, anon_sym_switch, - ACTIONS(6357), 1, + ACTIONS(6369), 1, anon_sym_with, - ACTIONS(6813), 1, - anon_sym_as, - ACTIONS(7139), 1, - anon_sym_QMARK, - ACTIONS(7145), 1, + ACTIONS(8398), 1, anon_sym_SLASH, - ACTIONS(7147), 1, + ACTIONS(8400), 1, anon_sym_CARET, - ACTIONS(7149), 1, - anon_sym_PIPE, - ACTIONS(7151), 1, + ACTIONS(8404), 1, anon_sym_AMP, - ACTIONS(7155), 1, + ACTIONS(8408), 1, anon_sym_GT_GT, - ACTIONS(7161), 1, + ACTIONS(8414), 1, anon_sym_DOT_DOT, - ACTIONS(7163), 1, - anon_sym_AMP_AMP, - ACTIONS(7165), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7167), 1, - anon_sym_QMARK_QMARK, - ACTIONS(7169), 1, + ACTIONS(8424), 1, + anon_sym_as, + ACTIONS(8426), 1, anon_sym_is, - ACTIONS(8728), 1, - anon_sym_RPAREN, - STATE(2485), 1, + STATE(2467), 1, sym_bracketed_argument_list, - STATE(3487), 1, + STATE(3381), 1, sym_argument_list, - ACTIONS(5306), 2, + ACTIONS(5304), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7137), 2, + ACTIONS(5739), 2, + anon_sym_QMARK, + anon_sym_PIPE, + ACTIONS(8390), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7141), 2, + ACTIONS(8394), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7143), 2, + ACTIONS(8396), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7153), 2, + ACTIONS(8406), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7157), 2, + ACTIONS(8410), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7159), 2, + ACTIONS(8412), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - STATE(5633), 9, + ACTIONS(5737), 4, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, + anon_sym_equals, + STATE(5573), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -687816,7 +682376,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [204668] = 18, + [199149] = 34, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -687837,23 +682397,66 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4102), 1, + ACTIONS(4042), 1, + anon_sym_DOT, + ACTIONS(4044), 1, anon_sym_DASH_GT, - ACTIONS(6678), 1, + ACTIONS(5257), 1, + anon_sym_LPAREN, + ACTIONS(5302), 1, + anon_sym_BANG, + ACTIONS(5549), 1, anon_sym_LBRACK, - ACTIONS(6680), 1, + ACTIONS(6355), 1, + anon_sym_switch, + ACTIONS(6369), 1, + anon_sym_with, + ACTIONS(8398), 1, + anon_sym_SLASH, + ACTIONS(8408), 1, + anon_sym_GT_GT, + ACTIONS(8414), 1, + anon_sym_DOT_DOT, + ACTIONS(8424), 1, + anon_sym_as, + ACTIONS(8426), 1, + anon_sym_is, + STATE(2467), 1, + sym_bracketed_argument_list, + STATE(3381), 1, + sym_argument_list, + ACTIONS(5304), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(8390), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(8394), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(8396), 2, anon_sym_STAR, - ACTIONS(6716), 1, + anon_sym_PERCENT, + ACTIONS(8406), 2, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + ACTIONS(8410), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(8412), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(5739), 3, anon_sym_QMARK, - ACTIONS(8730), 1, - anon_sym_DOT, - ACTIONS(4018), 5, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - STATE(5634), 9, + anon_sym_PIPE, + anon_sym_AMP, + ACTIONS(5737), 5, + anon_sym_CARET, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, + anon_sym_equals, + STATE(5574), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -687863,34 +682466,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(4016), 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, - [204760] = 14, + [199273] = 27, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -687911,9 +682487,45 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8732), 1, - anon_sym_SEMI, - STATE(5635), 9, + ACTIONS(4042), 1, + anon_sym_DOT, + ACTIONS(4044), 1, + anon_sym_DASH_GT, + ACTIONS(5257), 1, + anon_sym_LPAREN, + ACTIONS(5302), 1, + anon_sym_BANG, + ACTIONS(5549), 1, + anon_sym_LBRACK, + ACTIONS(6355), 1, + anon_sym_switch, + ACTIONS(6369), 1, + anon_sym_with, + ACTIONS(8398), 1, + anon_sym_SLASH, + ACTIONS(8414), 1, + anon_sym_DOT_DOT, + STATE(2467), 1, + sym_bracketed_argument_list, + STATE(3381), 1, + sym_argument_list, + ACTIONS(5304), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(8394), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(8396), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(5739), 6, + anon_sym_LT, + anon_sym_GT, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT_GT, + STATE(5575), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -687923,27 +682535,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5056), 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(5054), 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, + ACTIONS(5737), 13, anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT_GT, @@ -687951,16 +682543,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, - [204844] = 14, + [199383] = 33, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -687981,56 +682570,75 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8734), 1, - anon_sym_RPAREN, - STATE(5636), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - ACTIONS(4862), 11, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, + ACTIONS(4042), 1, + anon_sym_DOT, + ACTIONS(4044), 1, + anon_sym_DASH_GT, + ACTIONS(5257), 1, + anon_sym_LPAREN, + ACTIONS(5302), 1, anon_sym_BANG, - anon_sym_PLUS, - anon_sym_DASH, + ACTIONS(5549), 1, + anon_sym_LBRACK, + ACTIONS(6355), 1, + anon_sym_switch, + ACTIONS(6369), 1, + anon_sym_with, + ACTIONS(8398), 1, anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, + ACTIONS(8408), 1, anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(4860), 24, - anon_sym_LBRACK, - anon_sym_COLON, - anon_sym_COMMA, - anon_sym_LPAREN, + ACTIONS(8414), 1, + anon_sym_DOT_DOT, + ACTIONS(8424), 1, + anon_sym_as, + ACTIONS(8426), 1, + anon_sym_is, + STATE(2467), 1, + sym_bracketed_argument_list, + STATE(3381), 1, + sym_argument_list, + ACTIONS(5304), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + ACTIONS(8390), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(8394), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(8396), 2, anon_sym_STAR, anon_sym_PERCENT, - anon_sym_CARET, + ACTIONS(8406), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, + ACTIONS(8412), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - anon_sym_switch, - anon_sym_DOT_DOT, + ACTIONS(5739), 3, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_AMP, + ACTIONS(5737), 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_as, - anon_sym_is, - anon_sym_DASH_GT, - anon_sym_with, - [204928] = 22, + anon_sym_equals, + STATE(5576), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + [199505] = 22, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -688051,26 +682659,26 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4100), 1, + ACTIONS(4042), 1, anon_sym_DOT, - ACTIONS(4102), 1, + ACTIONS(4044), 1, anon_sym_DASH_GT, - ACTIONS(5264), 1, + ACTIONS(5257), 1, anon_sym_LPAREN, - ACTIONS(5304), 1, + ACTIONS(5302), 1, anon_sym_BANG, - ACTIONS(5573), 1, + ACTIONS(5549), 1, anon_sym_LBRACK, - ACTIONS(8222), 1, + ACTIONS(8414), 1, anon_sym_DOT_DOT, - STATE(2485), 1, + STATE(2467), 1, sym_bracketed_argument_list, - STATE(3487), 1, + STATE(3381), 1, sym_argument_list, - ACTIONS(5306), 2, + ACTIONS(5304), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1223), 9, + ACTIONS(5743), 9, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, @@ -688080,7 +682688,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_AMP, anon_sym_GT_GT, - STATE(5637), 9, + STATE(5577), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -688090,8 +682698,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(1221), 17, - anon_sym_in, + ACTIONS(5741), 17, anon_sym_STAR, anon_sym_PERCENT, anon_sym_CARET, @@ -688105,10 +682712,11 @@ 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, - [205028] = 40, + [199605] = 37, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -688129,72 +682737,69 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4100), 1, + ACTIONS(4042), 1, anon_sym_DOT, - ACTIONS(4102), 1, + ACTIONS(4044), 1, anon_sym_DASH_GT, - ACTIONS(5264), 1, + ACTIONS(5257), 1, anon_sym_LPAREN, - ACTIONS(5304), 1, + ACTIONS(5302), 1, anon_sym_BANG, - ACTIONS(5573), 1, + ACTIONS(5549), 1, anon_sym_LBRACK, - ACTIONS(6343), 1, + ACTIONS(5739), 1, + anon_sym_QMARK, + ACTIONS(6355), 1, anon_sym_switch, - ACTIONS(6357), 1, + ACTIONS(6369), 1, anon_sym_with, - ACTIONS(7037), 1, - anon_sym_as, - ACTIONS(8234), 1, - anon_sym_QMARK, - ACTIONS(8236), 1, - anon_sym_DOT_DOT, - ACTIONS(8238), 1, - anon_sym_is, - ACTIONS(8248), 1, + ACTIONS(8398), 1, anon_sym_SLASH, - ACTIONS(8250), 1, + ACTIONS(8400), 1, anon_sym_CARET, - ACTIONS(8252), 1, + ACTIONS(8402), 1, anon_sym_PIPE, - ACTIONS(8254), 1, + ACTIONS(8404), 1, anon_sym_AMP, - ACTIONS(8258), 1, + ACTIONS(8408), 1, anon_sym_GT_GT, - ACTIONS(8264), 1, - anon_sym_AMP_AMP, - ACTIONS(8266), 1, - anon_sym_PIPE_PIPE, - ACTIONS(8268), 1, - anon_sym_QMARK_QMARK, - ACTIONS(8736), 1, - anon_sym_COLON, - STATE(2485), 1, + ACTIONS(8414), 1, + anon_sym_DOT_DOT, + ACTIONS(8424), 1, + anon_sym_as, + ACTIONS(8426), 1, + anon_sym_is, + STATE(2467), 1, sym_bracketed_argument_list, - STATE(3487), 1, + STATE(3381), 1, sym_argument_list, - ACTIONS(5306), 2, + ACTIONS(5304), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(8242), 2, + ACTIONS(8390), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(8244), 2, + ACTIONS(8394), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(8246), 2, + ACTIONS(8396), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8256), 2, + ACTIONS(8406), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(8260), 2, + ACTIONS(8410), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(8262), 2, + ACTIONS(8412), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - STATE(5638), 9, + ACTIONS(5737), 4, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, + anon_sym_equals, + STATE(5578), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -688204,7 +682809,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [205164] = 40, + [199735] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -688225,72 +682830,72 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4100), 1, + ACTIONS(4042), 1, anon_sym_DOT, - ACTIONS(4102), 1, + ACTIONS(4044), 1, anon_sym_DASH_GT, - ACTIONS(5264), 1, + ACTIONS(5257), 1, anon_sym_LPAREN, - ACTIONS(5304), 1, + ACTIONS(5302), 1, anon_sym_BANG, - ACTIONS(5573), 1, + ACTIONS(5549), 1, anon_sym_LBRACK, - ACTIONS(6343), 1, + ACTIONS(6355), 1, anon_sym_switch, - ACTIONS(6357), 1, + ACTIONS(6369), 1, anon_sym_with, - ACTIONS(8150), 1, + ACTIONS(8268), 1, anon_sym_QMARK, - ACTIONS(8156), 1, + ACTIONS(8274), 1, anon_sym_SLASH, - ACTIONS(8158), 1, + ACTIONS(8276), 1, anon_sym_CARET, - ACTIONS(8160), 1, + ACTIONS(8278), 1, anon_sym_PIPE, - ACTIONS(8162), 1, + ACTIONS(8280), 1, anon_sym_AMP, - ACTIONS(8166), 1, + ACTIONS(8284), 1, anon_sym_GT_GT, - ACTIONS(8172), 1, + ACTIONS(8290), 1, anon_sym_DOT_DOT, - ACTIONS(8174), 1, + ACTIONS(8292), 1, anon_sym_AMP_AMP, - ACTIONS(8176), 1, + ACTIONS(8294), 1, anon_sym_PIPE_PIPE, - ACTIONS(8178), 1, + ACTIONS(8296), 1, anon_sym_QMARK_QMARK, - ACTIONS(8182), 1, + ACTIONS(8300), 1, anon_sym_as, - ACTIONS(8184), 1, + ACTIONS(8302), 1, anon_sym_is, - ACTIONS(8738), 1, + ACTIONS(8661), 1, anon_sym_by, - STATE(2485), 1, + STATE(2467), 1, sym_bracketed_argument_list, - STATE(3487), 1, + STATE(3381), 1, sym_argument_list, - ACTIONS(5306), 2, + ACTIONS(5304), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(8148), 2, + ACTIONS(8266), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(8152), 2, + ACTIONS(8270), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(8154), 2, + ACTIONS(8272), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8164), 2, + ACTIONS(8282), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(8168), 2, + ACTIONS(8286), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(8170), 2, + ACTIONS(8288), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - STATE(5639), 9, + STATE(5579), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -688300,7 +682905,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [205300] = 40, + [199871] = 38, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -688321,72 +682926,70 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4100), 1, + ACTIONS(4042), 1, anon_sym_DOT, - ACTIONS(4102), 1, + ACTIONS(4044), 1, anon_sym_DASH_GT, - ACTIONS(5264), 1, + ACTIONS(5257), 1, anon_sym_LPAREN, - ACTIONS(5304), 1, + ACTIONS(5302), 1, anon_sym_BANG, - ACTIONS(5573), 1, + ACTIONS(5549), 1, anon_sym_LBRACK, - ACTIONS(5858), 1, - anon_sym_by, - ACTIONS(6343), 1, + ACTIONS(5739), 1, + anon_sym_QMARK, + ACTIONS(6355), 1, anon_sym_switch, - ACTIONS(6357), 1, + ACTIONS(6369), 1, anon_sym_with, - ACTIONS(8150), 1, - anon_sym_QMARK, - ACTIONS(8156), 1, + ACTIONS(8398), 1, anon_sym_SLASH, - ACTIONS(8158), 1, + ACTIONS(8400), 1, anon_sym_CARET, - ACTIONS(8160), 1, + ACTIONS(8402), 1, anon_sym_PIPE, - ACTIONS(8162), 1, + ACTIONS(8404), 1, anon_sym_AMP, - ACTIONS(8166), 1, + ACTIONS(8408), 1, anon_sym_GT_GT, - ACTIONS(8172), 1, + ACTIONS(8414), 1, anon_sym_DOT_DOT, - ACTIONS(8174), 1, + ACTIONS(8416), 1, anon_sym_AMP_AMP, - ACTIONS(8176), 1, - anon_sym_PIPE_PIPE, - ACTIONS(8178), 1, - anon_sym_QMARK_QMARK, - ACTIONS(8182), 1, + ACTIONS(8424), 1, anon_sym_as, - ACTIONS(8184), 1, + ACTIONS(8426), 1, anon_sym_is, - STATE(2485), 1, + STATE(2467), 1, sym_bracketed_argument_list, - STATE(3487), 1, + STATE(3381), 1, sym_argument_list, - ACTIONS(5306), 2, + ACTIONS(5304), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(8148), 2, + ACTIONS(8390), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(8152), 2, + ACTIONS(8394), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(8154), 2, + ACTIONS(8396), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8164), 2, + ACTIONS(8406), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(8168), 2, + ACTIONS(8410), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(8170), 2, + ACTIONS(8412), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - STATE(5640), 9, + ACTIONS(5737), 3, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, + anon_sym_equals, + STATE(5580), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -688396,7 +682999,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [205436] = 15, + [200003] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -688417,128 +683020,82 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8740), 1, - anon_sym_into, - STATE(5643), 1, - aux_sym__query_body_repeat2, - STATE(5641), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - ACTIONS(6005), 12, - anon_sym_LT, - anon_sym_GT, - anon_sym_in, - anon_sym_QMARK, + ACTIONS(4042), 1, + anon_sym_DOT, + ACTIONS(4044), 1, + anon_sym_DASH_GT, + ACTIONS(5257), 1, + anon_sym_LPAREN, + ACTIONS(5302), 1, anon_sym_BANG, - anon_sym_PLUS, - anon_sym_DASH, + ACTIONS(5549), 1, + anon_sym_LBRACK, + ACTIONS(5737), 1, + anon_sym_equals, + ACTIONS(5739), 1, + anon_sym_QMARK, + ACTIONS(6355), 1, + anon_sym_switch, + ACTIONS(6369), 1, + anon_sym_with, + ACTIONS(8398), 1, anon_sym_SLASH, + ACTIONS(8400), 1, + anon_sym_CARET, + ACTIONS(8402), 1, anon_sym_PIPE, + ACTIONS(8404), 1, anon_sym_AMP, + ACTIONS(8408), 1, anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(6003), 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, + ACTIONS(8414), 1, anon_sym_DOT_DOT, + ACTIONS(8416), 1, anon_sym_AMP_AMP, + ACTIONS(8418), 1, anon_sym_PIPE_PIPE, + ACTIONS(8420), 1, anon_sym_QMARK_QMARK, + ACTIONS(8424), 1, anon_sym_as, + ACTIONS(8426), 1, anon_sym_is, - anon_sym_DASH_GT, - anon_sym_with, - [205522] = 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(8740), 1, - anon_sym_into, - STATE(5644), 1, - aux_sym__query_body_repeat2, - STATE(5642), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - ACTIONS(6005), 12, + STATE(2467), 1, + sym_bracketed_argument_list, + STATE(3381), 1, + sym_argument_list, + ACTIONS(5304), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(8390), 2, anon_sym_LT, anon_sym_GT, - anon_sym_in, - anon_sym_QMARK, - anon_sym_BANG, + ACTIONS(8394), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(6003), 22, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, + ACTIONS(8396), 2, anon_sym_STAR, anon_sym_PERCENT, - anon_sym_CARET, + ACTIONS(8406), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, + ACTIONS(8410), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + ACTIONS(8412), 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, - [205608] = 14, + STATE(5581), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + [200139] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -688559,56 +683116,82 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8742), 1, - anon_sym_into, - STATE(5643), 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(5951), 12, - anon_sym_LT, - anon_sym_GT, - anon_sym_in, - anon_sym_QMARK, + ACTIONS(4042), 1, + anon_sym_DOT, + ACTIONS(4044), 1, + anon_sym_DASH_GT, + ACTIONS(4996), 1, + anon_sym_equals, + ACTIONS(5257), 1, + anon_sym_LPAREN, + ACTIONS(5302), 1, anon_sym_BANG, - anon_sym_PLUS, - anon_sym_DASH, + ACTIONS(5549), 1, + anon_sym_LBRACK, + ACTIONS(6355), 1, + anon_sym_switch, + ACTIONS(6369), 1, + anon_sym_with, + ACTIONS(8392), 1, + anon_sym_QMARK, + ACTIONS(8398), 1, anon_sym_SLASH, + ACTIONS(8400), 1, + anon_sym_CARET, + ACTIONS(8402), 1, anon_sym_PIPE, + ACTIONS(8404), 1, anon_sym_AMP, + ACTIONS(8408), 1, anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(5949), 22, - anon_sym_LBRACK, - anon_sym_LPAREN, + ACTIONS(8414), 1, + anon_sym_DOT_DOT, + ACTIONS(8416), 1, + anon_sym_AMP_AMP, + ACTIONS(8418), 1, + anon_sym_PIPE_PIPE, + ACTIONS(8420), 1, + anon_sym_QMARK_QMARK, + ACTIONS(8424), 1, + anon_sym_as, + ACTIONS(8426), 1, + anon_sym_is, + STATE(2467), 1, + sym_bracketed_argument_list, + STATE(3381), 1, + sym_argument_list, + ACTIONS(5304), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + ACTIONS(8390), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(8394), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(8396), 2, anon_sym_STAR, anon_sym_PERCENT, - anon_sym_CARET, + ACTIONS(8406), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, + ACTIONS(8410), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + ACTIONS(8412), 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, - [205692] = 15, + STATE(5582), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + [200275] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -688629,11 +683212,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8740), 1, - anon_sym_into, - STATE(5643), 1, - aux_sym__query_body_repeat2, - STATE(5644), 9, + ACTIONS(4667), 3, + anon_sym_LBRACK, + anon_sym_LPAREN, + aux_sym_preproc_if_token1, + STATE(5583), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -688643,43 +683226,41 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5960), 12, - anon_sym_LT, - anon_sym_GT, + ACTIONS(4665), 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_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(5958), 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, - [205778] = 40, + 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, + [200357] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -688700,72 +683281,72 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4100), 1, + ACTIONS(4042), 1, anon_sym_DOT, - ACTIONS(4102), 1, + ACTIONS(4044), 1, anon_sym_DASH_GT, - ACTIONS(5264), 1, + ACTIONS(5257), 1, anon_sym_LPAREN, - ACTIONS(5304), 1, + ACTIONS(5302), 1, anon_sym_BANG, - ACTIONS(5573), 1, + ACTIONS(5549), 1, anon_sym_LBRACK, - ACTIONS(6343), 1, + ACTIONS(6355), 1, anon_sym_switch, - ACTIONS(6357), 1, + ACTIONS(6369), 1, anon_sym_with, - ACTIONS(7037), 1, - anon_sym_as, - ACTIONS(8234), 1, - anon_sym_QMARK, - ACTIONS(8236), 1, + ACTIONS(8188), 1, anon_sym_DOT_DOT, - ACTIONS(8238), 1, - anon_sym_is, - ACTIONS(8248), 1, + ACTIONS(8430), 1, + anon_sym_QMARK, + ACTIONS(8436), 1, anon_sym_SLASH, - ACTIONS(8250), 1, + ACTIONS(8438), 1, anon_sym_CARET, - ACTIONS(8252), 1, + ACTIONS(8440), 1, anon_sym_PIPE, - ACTIONS(8254), 1, + ACTIONS(8442), 1, anon_sym_AMP, - ACTIONS(8258), 1, + ACTIONS(8446), 1, anon_sym_GT_GT, - ACTIONS(8264), 1, + ACTIONS(8452), 1, anon_sym_AMP_AMP, - ACTIONS(8266), 1, + ACTIONS(8454), 1, anon_sym_PIPE_PIPE, - ACTIONS(8268), 1, + ACTIONS(8456), 1, anon_sym_QMARK_QMARK, - ACTIONS(8745), 1, - anon_sym_COLON, - STATE(2485), 1, + ACTIONS(8460), 1, + anon_sym_as, + ACTIONS(8462), 1, + anon_sym_is, + ACTIONS(8663), 1, + anon_sym_on, + STATE(2467), 1, sym_bracketed_argument_list, - STATE(3487), 1, + STATE(3381), 1, sym_argument_list, - ACTIONS(5306), 2, + ACTIONS(5304), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(8242), 2, + ACTIONS(8428), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(8244), 2, + ACTIONS(8432), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(8246), 2, + ACTIONS(8434), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8256), 2, + ACTIONS(8444), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(8260), 2, + ACTIONS(8448), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(8262), 2, + ACTIONS(8450), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - STATE(5645), 9, + STATE(5584), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -688775,7 +683356,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [205914] = 35, + [200493] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -688796,67 +683377,107 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4100), 1, + ACTIONS(4042), 1, anon_sym_DOT, - ACTIONS(4102), 1, + ACTIONS(4044), 1, anon_sym_DASH_GT, - ACTIONS(5264), 1, + ACTIONS(5257), 1, anon_sym_LPAREN, - ACTIONS(5304), 1, + ACTIONS(5302), 1, anon_sym_BANG, - ACTIONS(5573), 1, + ACTIONS(5549), 1, anon_sym_LBRACK, - ACTIONS(6343), 1, + ACTIONS(5849), 1, + anon_sym_COLON, + ACTIONS(6355), 1, anon_sym_switch, - ACTIONS(6357), 1, + ACTIONS(6369), 1, anon_sym_with, - ACTIONS(6813), 1, + ACTIONS(7195), 1, anon_sym_as, - ACTIONS(8206), 1, + ACTIONS(8152), 1, + anon_sym_QMARK, + ACTIONS(8158), 1, anon_sym_SLASH, - ACTIONS(8212), 1, + ACTIONS(8160), 1, + anon_sym_CARET, + ACTIONS(8162), 1, + anon_sym_PIPE, + ACTIONS(8164), 1, anon_sym_AMP, - ACTIONS(8216), 1, + ACTIONS(8168), 1, anon_sym_GT_GT, - ACTIONS(8222), 1, + ACTIONS(8174), 1, anon_sym_DOT_DOT, - ACTIONS(8230), 1, + ACTIONS(8176), 1, + anon_sym_AMP_AMP, + ACTIONS(8178), 1, + anon_sym_PIPE_PIPE, + ACTIONS(8180), 1, + anon_sym_QMARK_QMARK, + ACTIONS(8182), 1, anon_sym_is, - STATE(2485), 1, + STATE(2467), 1, sym_bracketed_argument_list, - STATE(3487), 1, + STATE(3381), 1, sym_argument_list, - ACTIONS(5306), 2, + ACTIONS(5304), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5664), 2, - anon_sym_QMARK, - anon_sym_PIPE, - ACTIONS(8198), 2, + ACTIONS(8150), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(8202), 2, + ACTIONS(8154), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(8204), 2, + ACTIONS(8156), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8214), 2, + ACTIONS(8166), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(8218), 2, + ACTIONS(8170), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(8220), 2, + ACTIONS(8172), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5660), 5, - anon_sym_in, - anon_sym_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_QMARK_QMARK, - STATE(5646), 9, + STATE(5585), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + [200629] = 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(5140), 3, + anon_sym_LBRACK, + anon_sym_LPAREN, + aux_sym_preproc_if_token1, + STATE(5586), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -688866,7 +683487,41 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [206040] = 36, + ACTIONS(5138), 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, + [200711] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -688887,68 +683542,72 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4100), 1, + ACTIONS(4042), 1, anon_sym_DOT, - ACTIONS(4102), 1, + ACTIONS(4044), 1, anon_sym_DASH_GT, - ACTIONS(5264), 1, + ACTIONS(5257), 1, anon_sym_LPAREN, - ACTIONS(5304), 1, + ACTIONS(5302), 1, anon_sym_BANG, - ACTIONS(5573), 1, + ACTIONS(5549), 1, anon_sym_LBRACK, - ACTIONS(6343), 1, + ACTIONS(6355), 1, anon_sym_switch, - ACTIONS(6357), 1, + ACTIONS(6369), 1, anon_sym_with, - ACTIONS(6813), 1, + ACTIONS(7195), 1, anon_sym_as, - ACTIONS(8206), 1, + ACTIONS(8152), 1, + anon_sym_QMARK, + ACTIONS(8158), 1, anon_sym_SLASH, - ACTIONS(8208), 1, + ACTIONS(8160), 1, anon_sym_CARET, - ACTIONS(8212), 1, + ACTIONS(8162), 1, + anon_sym_PIPE, + ACTIONS(8164), 1, anon_sym_AMP, - ACTIONS(8216), 1, + ACTIONS(8168), 1, anon_sym_GT_GT, - ACTIONS(8222), 1, + ACTIONS(8174), 1, anon_sym_DOT_DOT, - ACTIONS(8230), 1, + ACTIONS(8176), 1, + anon_sym_AMP_AMP, + ACTIONS(8178), 1, + anon_sym_PIPE_PIPE, + ACTIONS(8180), 1, + anon_sym_QMARK_QMARK, + ACTIONS(8182), 1, anon_sym_is, - STATE(2485), 1, + ACTIONS(8665), 1, + anon_sym_COLON, + STATE(2467), 1, sym_bracketed_argument_list, - STATE(3487), 1, + STATE(3381), 1, sym_argument_list, - ACTIONS(5306), 2, + ACTIONS(5304), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5664), 2, - anon_sym_QMARK, - anon_sym_PIPE, - ACTIONS(8198), 2, + ACTIONS(8150), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(8202), 2, + ACTIONS(8154), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(8204), 2, + ACTIONS(8156), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8214), 2, + ACTIONS(8166), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(8218), 2, + ACTIONS(8170), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(8220), 2, + ACTIONS(8172), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5660), 4, - anon_sym_in, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_QMARK_QMARK, - STATE(5647), 9, + STATE(5587), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -688958,7 +683617,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [206168] = 34, + [200847] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -688979,66 +683638,72 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4100), 1, + ACTIONS(4042), 1, anon_sym_DOT, - ACTIONS(4102), 1, + ACTIONS(4044), 1, anon_sym_DASH_GT, - ACTIONS(5264), 1, + ACTIONS(5257), 1, anon_sym_LPAREN, - ACTIONS(5304), 1, + ACTIONS(5302), 1, anon_sym_BANG, - ACTIONS(5573), 1, + ACTIONS(5549), 1, anon_sym_LBRACK, - ACTIONS(6343), 1, + ACTIONS(5652), 1, + anon_sym_equals, + ACTIONS(6355), 1, anon_sym_switch, - ACTIONS(6357), 1, + ACTIONS(6369), 1, anon_sym_with, - ACTIONS(6813), 1, - anon_sym_as, - ACTIONS(8206), 1, + ACTIONS(8392), 1, + anon_sym_QMARK, + ACTIONS(8398), 1, anon_sym_SLASH, - ACTIONS(8216), 1, + ACTIONS(8400), 1, + anon_sym_CARET, + ACTIONS(8402), 1, + anon_sym_PIPE, + ACTIONS(8404), 1, + anon_sym_AMP, + ACTIONS(8408), 1, anon_sym_GT_GT, - ACTIONS(8222), 1, + ACTIONS(8414), 1, anon_sym_DOT_DOT, - ACTIONS(8230), 1, + ACTIONS(8416), 1, + anon_sym_AMP_AMP, + ACTIONS(8418), 1, + anon_sym_PIPE_PIPE, + ACTIONS(8420), 1, + anon_sym_QMARK_QMARK, + ACTIONS(8424), 1, + anon_sym_as, + ACTIONS(8426), 1, anon_sym_is, - STATE(2485), 1, + STATE(2467), 1, sym_bracketed_argument_list, - STATE(3487), 1, + STATE(3381), 1, sym_argument_list, - ACTIONS(5306), 2, + ACTIONS(5304), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(8198), 2, + ACTIONS(8390), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(8202), 2, + ACTIONS(8394), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(8204), 2, + ACTIONS(8396), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8214), 2, + ACTIONS(8406), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(8218), 2, + ACTIONS(8410), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(8220), 2, + ACTIONS(8412), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5664), 3, - anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_AMP, - ACTIONS(5660), 5, - anon_sym_in, - anon_sym_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_QMARK_QMARK, - STATE(5648), 9, + STATE(5588), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -689048,7 +683713,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [206292] = 33, + [200983] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -689069,65 +683734,72 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4100), 1, + ACTIONS(4042), 1, anon_sym_DOT, - ACTIONS(4102), 1, + ACTIONS(4044), 1, anon_sym_DASH_GT, - ACTIONS(5264), 1, + ACTIONS(5257), 1, anon_sym_LPAREN, - ACTIONS(5304), 1, + ACTIONS(5302), 1, anon_sym_BANG, - ACTIONS(5573), 1, + ACTIONS(5549), 1, anon_sym_LBRACK, - ACTIONS(6343), 1, + ACTIONS(6355), 1, anon_sym_switch, - ACTIONS(6357), 1, + ACTIONS(6369), 1, anon_sym_with, - ACTIONS(6813), 1, + ACTIONS(6811), 1, anon_sym_as, - ACTIONS(8206), 1, + ACTIONS(7231), 1, + anon_sym_QMARK, + ACTIONS(7237), 1, anon_sym_SLASH, - ACTIONS(8216), 1, + ACTIONS(7239), 1, + anon_sym_CARET, + ACTIONS(7241), 1, + anon_sym_PIPE, + ACTIONS(7243), 1, + anon_sym_AMP, + ACTIONS(7247), 1, anon_sym_GT_GT, - ACTIONS(8222), 1, + ACTIONS(7253), 1, anon_sym_DOT_DOT, - ACTIONS(8230), 1, + ACTIONS(7255), 1, + anon_sym_AMP_AMP, + ACTIONS(7257), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7259), 1, + anon_sym_QMARK_QMARK, + ACTIONS(7261), 1, anon_sym_is, - STATE(2485), 1, + ACTIONS(8667), 1, + anon_sym_RPAREN, + STATE(2467), 1, sym_bracketed_argument_list, - STATE(3487), 1, + STATE(3381), 1, sym_argument_list, - ACTIONS(5306), 2, + ACTIONS(5304), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(8198), 2, + ACTIONS(7229), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(8202), 2, + ACTIONS(7233), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(8204), 2, + ACTIONS(7235), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8214), 2, + ACTIONS(7245), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(8220), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(5664), 3, - anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_AMP, - ACTIONS(5660), 7, - anon_sym_in, - anon_sym_CARET, + ACTIONS(7249), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_QMARK_QMARK, - STATE(5649), 9, + ACTIONS(7251), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + STATE(5589), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -689137,7 +683809,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [206414] = 37, + [201119] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -689158,69 +683830,72 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4100), 1, + ACTIONS(4042), 1, anon_sym_DOT, - ACTIONS(4102), 1, + ACTIONS(4044), 1, anon_sym_DASH_GT, - ACTIONS(5264), 1, + ACTIONS(5257), 1, anon_sym_LPAREN, - ACTIONS(5304), 1, + ACTIONS(5302), 1, anon_sym_BANG, - ACTIONS(5573), 1, + ACTIONS(5549), 1, anon_sym_LBRACK, - ACTIONS(5664), 1, - anon_sym_QMARK, - ACTIONS(6343), 1, + ACTIONS(6355), 1, anon_sym_switch, - ACTIONS(6357), 1, + ACTIONS(6369), 1, anon_sym_with, - ACTIONS(6813), 1, + ACTIONS(7195), 1, anon_sym_as, - ACTIONS(8206), 1, + ACTIONS(8152), 1, + anon_sym_QMARK, + ACTIONS(8158), 1, anon_sym_SLASH, - ACTIONS(8208), 1, + ACTIONS(8160), 1, anon_sym_CARET, - ACTIONS(8210), 1, + ACTIONS(8162), 1, anon_sym_PIPE, - ACTIONS(8212), 1, + ACTIONS(8164), 1, anon_sym_AMP, - ACTIONS(8216), 1, + ACTIONS(8168), 1, anon_sym_GT_GT, - ACTIONS(8222), 1, + ACTIONS(8174), 1, anon_sym_DOT_DOT, - ACTIONS(8230), 1, + ACTIONS(8176), 1, + anon_sym_AMP_AMP, + ACTIONS(8178), 1, + anon_sym_PIPE_PIPE, + ACTIONS(8180), 1, + anon_sym_QMARK_QMARK, + ACTIONS(8182), 1, anon_sym_is, - STATE(2485), 1, + ACTIONS(8669), 1, + anon_sym_COLON, + STATE(2467), 1, sym_bracketed_argument_list, - STATE(3487), 1, + STATE(3381), 1, sym_argument_list, - ACTIONS(5306), 2, + ACTIONS(5304), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(8198), 2, + ACTIONS(8150), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(8202), 2, + ACTIONS(8154), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(8204), 2, + ACTIONS(8156), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8214), 2, + ACTIONS(8166), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(8218), 2, + ACTIONS(8170), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(8220), 2, + ACTIONS(8172), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5660), 4, - anon_sym_in, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_QMARK_QMARK, - STATE(5650), 9, + STATE(5590), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -689230,7 +683905,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [206544] = 38, + [201255] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -689251,70 +683926,72 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4100), 1, + ACTIONS(4042), 1, anon_sym_DOT, - ACTIONS(4102), 1, + ACTIONS(4044), 1, anon_sym_DASH_GT, - ACTIONS(5264), 1, + ACTIONS(5257), 1, anon_sym_LPAREN, - ACTIONS(5304), 1, + ACTIONS(5302), 1, anon_sym_BANG, - ACTIONS(5573), 1, + ACTIONS(5549), 1, anon_sym_LBRACK, - ACTIONS(5664), 1, - anon_sym_QMARK, - ACTIONS(6343), 1, + ACTIONS(6355), 1, anon_sym_switch, - ACTIONS(6357), 1, + ACTIONS(6369), 1, anon_sym_with, - ACTIONS(6813), 1, + ACTIONS(7195), 1, anon_sym_as, - ACTIONS(8206), 1, + ACTIONS(8152), 1, + anon_sym_QMARK, + ACTIONS(8158), 1, anon_sym_SLASH, - ACTIONS(8208), 1, + ACTIONS(8160), 1, anon_sym_CARET, - ACTIONS(8210), 1, + ACTIONS(8162), 1, anon_sym_PIPE, - ACTIONS(8212), 1, + ACTIONS(8164), 1, anon_sym_AMP, - ACTIONS(8216), 1, + ACTIONS(8168), 1, anon_sym_GT_GT, - ACTIONS(8222), 1, + ACTIONS(8174), 1, anon_sym_DOT_DOT, - ACTIONS(8224), 1, + ACTIONS(8176), 1, anon_sym_AMP_AMP, - ACTIONS(8230), 1, + ACTIONS(8178), 1, + anon_sym_PIPE_PIPE, + ACTIONS(8180), 1, + anon_sym_QMARK_QMARK, + ACTIONS(8182), 1, anon_sym_is, - STATE(2485), 1, + ACTIONS(8671), 1, + anon_sym_COLON, + STATE(2467), 1, sym_bracketed_argument_list, - STATE(3487), 1, + STATE(3381), 1, sym_argument_list, - ACTIONS(5306), 2, + ACTIONS(5304), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(8198), 2, + ACTIONS(8150), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(8202), 2, + ACTIONS(8154), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(8204), 2, + ACTIONS(8156), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8214), 2, + ACTIONS(8166), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(8218), 2, + ACTIONS(8170), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(8220), 2, + ACTIONS(8172), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5660), 3, - anon_sym_in, - anon_sym_PIPE_PIPE, - anon_sym_QMARK_QMARK, - STATE(5651), 9, + STATE(5591), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -689324,7 +684001,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [206676] = 40, + [201391] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -689345,72 +684022,72 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4100), 1, + ACTIONS(4042), 1, anon_sym_DOT, - ACTIONS(4102), 1, + ACTIONS(4044), 1, anon_sym_DASH_GT, - ACTIONS(5264), 1, + ACTIONS(5257), 1, anon_sym_LPAREN, - ACTIONS(5304), 1, + ACTIONS(5302), 1, anon_sym_BANG, - ACTIONS(5573), 1, + ACTIONS(5549), 1, anon_sym_LBRACK, - ACTIONS(5660), 1, - anon_sym_in, - ACTIONS(5664), 1, - anon_sym_QMARK, - ACTIONS(6343), 1, + ACTIONS(6355), 1, anon_sym_switch, - ACTIONS(6357), 1, + ACTIONS(6369), 1, anon_sym_with, - ACTIONS(6813), 1, - anon_sym_as, - ACTIONS(8206), 1, + ACTIONS(8268), 1, + anon_sym_QMARK, + ACTIONS(8274), 1, anon_sym_SLASH, - ACTIONS(8208), 1, + ACTIONS(8276), 1, anon_sym_CARET, - ACTIONS(8210), 1, + ACTIONS(8278), 1, anon_sym_PIPE, - ACTIONS(8212), 1, + ACTIONS(8280), 1, anon_sym_AMP, - ACTIONS(8216), 1, + ACTIONS(8284), 1, anon_sym_GT_GT, - ACTIONS(8222), 1, + ACTIONS(8290), 1, anon_sym_DOT_DOT, - ACTIONS(8224), 1, + ACTIONS(8292), 1, anon_sym_AMP_AMP, - ACTIONS(8226), 1, + ACTIONS(8294), 1, anon_sym_PIPE_PIPE, - ACTIONS(8228), 1, + ACTIONS(8296), 1, anon_sym_QMARK_QMARK, - ACTIONS(8230), 1, + ACTIONS(8300), 1, + anon_sym_as, + ACTIONS(8302), 1, anon_sym_is, - STATE(2485), 1, + ACTIONS(8673), 1, + anon_sym_by, + STATE(2467), 1, sym_bracketed_argument_list, - STATE(3487), 1, + STATE(3381), 1, sym_argument_list, - ACTIONS(5306), 2, + ACTIONS(5304), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(8198), 2, + ACTIONS(8266), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(8202), 2, + ACTIONS(8270), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(8204), 2, + ACTIONS(8272), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8214), 2, + ACTIONS(8282), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(8218), 2, + ACTIONS(8286), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(8220), 2, + ACTIONS(8288), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - STATE(5652), 9, + STATE(5592), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -689420,7 +684097,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [206812] = 40, + [201527] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -689441,72 +684118,82 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(1975), 1, - anon_sym_SEMI, - ACTIONS(4100), 1, - anon_sym_DOT, - ACTIONS(4102), 1, - anon_sym_DASH_GT, - ACTIONS(5264), 1, - anon_sym_LPAREN, - ACTIONS(5304), 1, + ACTIONS(8675), 1, + anon_sym_into, + STATE(5595), 1, + aux_sym__query_body_repeat2, + 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, + ACTIONS(5881), 11, + anon_sym_LT, + anon_sym_GT, + anon_sym_QMARK, anon_sym_BANG, - ACTIONS(5573), 1, - anon_sym_LBRACK, - ACTIONS(6343), 1, - anon_sym_switch, - ACTIONS(6357), 1, - anon_sym_with, - ACTIONS(6813), 1, - anon_sym_as, - ACTIONS(6815), 1, - anon_sym_is, - ACTIONS(7183), 1, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_SLASH, - ACTIONS(7187), 1, - anon_sym_GT_GT, - ACTIONS(7189), 1, - anon_sym_DOT_DOT, - ACTIONS(7195), 1, - anon_sym_AMP, - ACTIONS(7201), 1, - anon_sym_CARET, - ACTIONS(7203), 1, anon_sym_PIPE, - ACTIONS(7205), 1, - anon_sym_AMP_AMP, - ACTIONS(7207), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7209), 1, - anon_sym_QMARK_QMARK, - ACTIONS(7237), 1, - anon_sym_QMARK, - STATE(2485), 1, - sym_bracketed_argument_list, - STATE(3487), 1, - sym_argument_list, - ACTIONS(5306), 2, + anon_sym_AMP, + anon_sym_GT_GT, + anon_sym_DOT, + ACTIONS(5879), 23, + anon_sym_LBRACK, + anon_sym_LPAREN, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7179), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(7181), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7185), 2, + anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7193), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(7197), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7199), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - STATE(5653), 9, + 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, + [201613] = 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(8675), 1, + anon_sym_into, + STATE(5596), 1, + aux_sym__query_body_repeat2, + STATE(5594), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -689516,7 +684203,43 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [206948] = 40, + ACTIONS(5881), 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(5879), 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, + anon_sym_with, + [201699] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -689537,72 +684260,81 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4100), 1, - anon_sym_DOT, - ACTIONS(4102), 1, - anon_sym_DASH_GT, - ACTIONS(5264), 1, - anon_sym_LPAREN, - ACTIONS(5304), 1, - anon_sym_BANG, - ACTIONS(5573), 1, - anon_sym_LBRACK, - ACTIONS(6343), 1, - anon_sym_switch, - ACTIONS(6357), 1, - anon_sym_with, - ACTIONS(6813), 1, - anon_sym_as, - ACTIONS(7139), 1, + ACTIONS(8677), 1, + anon_sym_into, + STATE(5595), 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(5953), 11, + anon_sym_LT, + anon_sym_GT, anon_sym_QMARK, - ACTIONS(7145), 1, + anon_sym_BANG, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_SLASH, - ACTIONS(7147), 1, - anon_sym_CARET, - ACTIONS(7149), 1, anon_sym_PIPE, - ACTIONS(7151), 1, anon_sym_AMP, - ACTIONS(7155), 1, anon_sym_GT_GT, - ACTIONS(7161), 1, - anon_sym_DOT_DOT, - ACTIONS(7163), 1, - anon_sym_AMP_AMP, - ACTIONS(7165), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7167), 1, - anon_sym_QMARK_QMARK, - ACTIONS(7169), 1, - anon_sym_is, - ACTIONS(8747), 1, - anon_sym_RPAREN, - STATE(2485), 1, - sym_bracketed_argument_list, - STATE(3487), 1, - sym_argument_list, - ACTIONS(5306), 2, + anon_sym_DOT, + ACTIONS(5951), 23, + anon_sym_LBRACK, + anon_sym_LPAREN, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7137), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(7141), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(7143), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7153), 2, + anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7157), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7159), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - STATE(5654), 9, + 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, + [201783] = 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(8675), 1, + anon_sym_into, + STATE(5595), 1, + aux_sym__query_body_repeat2, + STATE(5596), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -689612,7 +684344,43 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [207084] = 40, + ACTIONS(5960), 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(5958), 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, + anon_sym_with, + [201869] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -689633,72 +684401,72 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4100), 1, + ACTIONS(4042), 1, anon_sym_DOT, - ACTIONS(4102), 1, + ACTIONS(4044), 1, anon_sym_DASH_GT, - ACTIONS(5264), 1, + ACTIONS(5257), 1, anon_sym_LPAREN, - ACTIONS(5304), 1, + ACTIONS(5302), 1, anon_sym_BANG, - ACTIONS(5573), 1, + ACTIONS(5549), 1, anon_sym_LBRACK, - ACTIONS(6343), 1, + ACTIONS(6355), 1, anon_sym_switch, - ACTIONS(6357), 1, + ACTIONS(6369), 1, anon_sym_with, - ACTIONS(8150), 1, + ACTIONS(8268), 1, anon_sym_QMARK, - ACTIONS(8156), 1, + ACTIONS(8274), 1, anon_sym_SLASH, - ACTIONS(8158), 1, + ACTIONS(8276), 1, anon_sym_CARET, - ACTIONS(8160), 1, + ACTIONS(8278), 1, anon_sym_PIPE, - ACTIONS(8162), 1, + ACTIONS(8280), 1, anon_sym_AMP, - ACTIONS(8166), 1, + ACTIONS(8284), 1, anon_sym_GT_GT, - ACTIONS(8172), 1, + ACTIONS(8290), 1, anon_sym_DOT_DOT, - ACTIONS(8174), 1, + ACTIONS(8292), 1, anon_sym_AMP_AMP, - ACTIONS(8176), 1, + ACTIONS(8294), 1, anon_sym_PIPE_PIPE, - ACTIONS(8178), 1, + ACTIONS(8296), 1, anon_sym_QMARK_QMARK, - ACTIONS(8182), 1, + ACTIONS(8300), 1, anon_sym_as, - ACTIONS(8184), 1, + ACTIONS(8302), 1, anon_sym_is, - ACTIONS(8749), 1, + ACTIONS(8680), 1, anon_sym_by, - STATE(2485), 1, + STATE(2467), 1, sym_bracketed_argument_list, - STATE(3487), 1, + STATE(3381), 1, sym_argument_list, - ACTIONS(5306), 2, + ACTIONS(5304), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(8148), 2, + ACTIONS(8266), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(8152), 2, + ACTIONS(8270), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(8154), 2, + ACTIONS(8272), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8164), 2, + ACTIONS(8282), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(8168), 2, + ACTIONS(8286), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(8170), 2, + ACTIONS(8288), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - STATE(5655), 9, + STATE(5597), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -689708,7 +684476,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [207220] = 40, + [202005] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -689729,72 +684497,72 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4100), 1, + ACTIONS(4042), 1, anon_sym_DOT, - ACTIONS(4102), 1, + ACTIONS(4044), 1, anon_sym_DASH_GT, - ACTIONS(5072), 1, - anon_sym_in, - ACTIONS(5264), 1, + ACTIONS(5257), 1, anon_sym_LPAREN, - ACTIONS(5304), 1, + ACTIONS(5302), 1, anon_sym_BANG, - ACTIONS(5573), 1, + ACTIONS(5549), 1, anon_sym_LBRACK, - ACTIONS(6343), 1, + ACTIONS(6355), 1, anon_sym_switch, - ACTIONS(6357), 1, + ACTIONS(6369), 1, anon_sym_with, - ACTIONS(6813), 1, + ACTIONS(7195), 1, anon_sym_as, - ACTIONS(8200), 1, + ACTIONS(8152), 1, anon_sym_QMARK, - ACTIONS(8206), 1, + ACTIONS(8158), 1, anon_sym_SLASH, - ACTIONS(8208), 1, + ACTIONS(8160), 1, anon_sym_CARET, - ACTIONS(8210), 1, + ACTIONS(8162), 1, anon_sym_PIPE, - ACTIONS(8212), 1, + ACTIONS(8164), 1, anon_sym_AMP, - ACTIONS(8216), 1, + ACTIONS(8168), 1, anon_sym_GT_GT, - ACTIONS(8222), 1, + ACTIONS(8174), 1, anon_sym_DOT_DOT, - ACTIONS(8224), 1, + ACTIONS(8176), 1, anon_sym_AMP_AMP, - ACTIONS(8226), 1, + ACTIONS(8178), 1, anon_sym_PIPE_PIPE, - ACTIONS(8228), 1, + ACTIONS(8180), 1, anon_sym_QMARK_QMARK, - ACTIONS(8230), 1, + ACTIONS(8182), 1, anon_sym_is, - STATE(2485), 1, + ACTIONS(8682), 1, + anon_sym_COLON, + STATE(2467), 1, sym_bracketed_argument_list, - STATE(3487), 1, + STATE(3381), 1, sym_argument_list, - ACTIONS(5306), 2, + ACTIONS(5304), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(8198), 2, + ACTIONS(8150), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(8202), 2, + ACTIONS(8154), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(8204), 2, + ACTIONS(8156), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8214), 2, + ACTIONS(8166), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(8218), 2, + ACTIONS(8170), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(8220), 2, + ACTIONS(8172), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - STATE(5656), 9, + STATE(5598), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -689804,7 +684572,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [207356] = 40, + [202141] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -689825,72 +684593,72 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4100), 1, + ACTIONS(4042), 1, anon_sym_DOT, - ACTIONS(4102), 1, + ACTIONS(4044), 1, anon_sym_DASH_GT, - ACTIONS(5264), 1, + ACTIONS(5257), 1, anon_sym_LPAREN, - ACTIONS(5304), 1, + ACTIONS(5302), 1, anon_sym_BANG, - ACTIONS(5573), 1, + ACTIONS(5549), 1, anon_sym_LBRACK, - ACTIONS(6343), 1, + ACTIONS(6355), 1, anon_sym_switch, - ACTIONS(6357), 1, + ACTIONS(6369), 1, anon_sym_with, - ACTIONS(6813), 1, + ACTIONS(6811), 1, anon_sym_as, - ACTIONS(7139), 1, - anon_sym_QMARK, - ACTIONS(7145), 1, + ACTIONS(6813), 1, + anon_sym_is, + ACTIONS(6985), 1, anon_sym_SLASH, - ACTIONS(7147), 1, + ACTIONS(6989), 1, + anon_sym_GT_GT, + ACTIONS(6991), 1, + anon_sym_DOT_DOT, + ACTIONS(7099), 1, + anon_sym_QMARK, + ACTIONS(7101), 1, anon_sym_CARET, - ACTIONS(7149), 1, + ACTIONS(7103), 1, anon_sym_PIPE, - ACTIONS(7151), 1, + ACTIONS(7105), 1, anon_sym_AMP, - ACTIONS(7155), 1, - anon_sym_GT_GT, - ACTIONS(7161), 1, - anon_sym_DOT_DOT, - ACTIONS(7163), 1, + ACTIONS(7111), 1, anon_sym_AMP_AMP, - ACTIONS(7165), 1, + ACTIONS(7113), 1, anon_sym_PIPE_PIPE, - ACTIONS(7167), 1, + ACTIONS(7115), 1, anon_sym_QMARK_QMARK, - ACTIONS(7169), 1, - anon_sym_is, - ACTIONS(8751), 1, - anon_sym_RPAREN, - STATE(2485), 1, + ACTIONS(8684), 1, + anon_sym_SEMI, + STATE(2467), 1, sym_bracketed_argument_list, - STATE(3487), 1, + STATE(3381), 1, sym_argument_list, - ACTIONS(5306), 2, + ACTIONS(5304), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7137), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(7141), 2, + ACTIONS(6981), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7143), 2, + ACTIONS(6983), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7153), 2, + ACTIONS(6987), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7157), 2, + ACTIONS(7097), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(7107), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7159), 2, + ACTIONS(7109), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - STATE(5657), 9, + STATE(5599), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -689900,7 +684668,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [207492] = 40, + [202277] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -689921,72 +684689,72 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4100), 1, + ACTIONS(4042), 1, anon_sym_DOT, - ACTIONS(4102), 1, + ACTIONS(4044), 1, anon_sym_DASH_GT, - ACTIONS(5264), 1, + ACTIONS(5257), 1, anon_sym_LPAREN, - ACTIONS(5304), 1, + ACTIONS(5302), 1, anon_sym_BANG, - ACTIONS(5573), 1, + ACTIONS(5549), 1, anon_sym_LBRACK, - ACTIONS(6343), 1, + ACTIONS(6355), 1, anon_sym_switch, - ACTIONS(6357), 1, + ACTIONS(6369), 1, anon_sym_with, - ACTIONS(6813), 1, + ACTIONS(6811), 1, anon_sym_as, - ACTIONS(7139), 1, + ACTIONS(7231), 1, anon_sym_QMARK, - ACTIONS(7145), 1, + ACTIONS(7237), 1, anon_sym_SLASH, - ACTIONS(7147), 1, + ACTIONS(7239), 1, anon_sym_CARET, - ACTIONS(7149), 1, + ACTIONS(7241), 1, anon_sym_PIPE, - ACTIONS(7151), 1, + ACTIONS(7243), 1, anon_sym_AMP, - ACTIONS(7155), 1, + ACTIONS(7247), 1, anon_sym_GT_GT, - ACTIONS(7161), 1, + ACTIONS(7253), 1, anon_sym_DOT_DOT, - ACTIONS(7163), 1, + ACTIONS(7255), 1, anon_sym_AMP_AMP, - ACTIONS(7165), 1, + ACTIONS(7257), 1, anon_sym_PIPE_PIPE, - ACTIONS(7167), 1, + ACTIONS(7259), 1, anon_sym_QMARK_QMARK, - ACTIONS(7169), 1, + ACTIONS(7261), 1, anon_sym_is, - ACTIONS(8753), 1, - anon_sym_RPAREN, - STATE(2485), 1, + ACTIONS(8686), 1, + anon_sym_COMMA, + STATE(2467), 1, sym_bracketed_argument_list, - STATE(3487), 1, + STATE(3381), 1, sym_argument_list, - ACTIONS(5306), 2, + ACTIONS(5304), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7137), 2, + ACTIONS(7229), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7141), 2, + ACTIONS(7233), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7143), 2, + ACTIONS(7235), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7153), 2, + ACTIONS(7245), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7157), 2, + ACTIONS(7249), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7159), 2, + ACTIONS(7251), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - STATE(5658), 9, + STATE(5600), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -689996,7 +684764,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [207628] = 40, + [202413] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -690017,82 +684785,57 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4100), 1, - anon_sym_DOT, - ACTIONS(4102), 1, - anon_sym_DASH_GT, - ACTIONS(5264), 1, - anon_sym_LPAREN, - ACTIONS(5304), 1, - anon_sym_BANG, - ACTIONS(5573), 1, - anon_sym_LBRACK, - ACTIONS(6343), 1, - anon_sym_switch, - ACTIONS(6357), 1, - anon_sym_with, - ACTIONS(6813), 1, - anon_sym_as, - ACTIONS(7139), 1, + ACTIONS(8688), 1, + anon_sym_into, + STATE(5603), 1, + aux_sym__query_body_repeat2, + STATE(5601), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + ACTIONS(5881), 11, + anon_sym_LT, + anon_sym_GT, anon_sym_QMARK, - ACTIONS(7145), 1, + anon_sym_BANG, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_SLASH, - ACTIONS(7147), 1, - anon_sym_CARET, - ACTIONS(7149), 1, anon_sym_PIPE, - ACTIONS(7151), 1, anon_sym_AMP, - ACTIONS(7155), 1, anon_sym_GT_GT, - ACTIONS(7161), 1, - anon_sym_DOT_DOT, - ACTIONS(7163), 1, - anon_sym_AMP_AMP, - ACTIONS(7165), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7167), 1, - anon_sym_QMARK_QMARK, - ACTIONS(7169), 1, - anon_sym_is, - ACTIONS(8755), 1, - anon_sym_RPAREN, - STATE(2485), 1, - sym_bracketed_argument_list, - STATE(3487), 1, - sym_argument_list, - ACTIONS(5306), 2, + anon_sym_DOT, + ACTIONS(5879), 23, + anon_sym_LBRACK, + anon_sym_LPAREN, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7137), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(7141), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(7143), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7153), 2, + anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7157), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7159), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - STATE(5659), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - [207764] = 15, + 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, + [202499] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -690113,11 +684856,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8740), 1, + ACTIONS(8688), 1, anon_sym_into, - STATE(5641), 1, + STATE(5604), 1, aux_sym__query_body_repeat2, - STATE(5660), 9, + STATE(5602), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -690127,10 +684870,9 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(6001), 12, + ACTIONS(5881), 11, anon_sym_LT, anon_sym_GT, - anon_sym_in, anon_sym_QMARK, anon_sym_BANG, anon_sym_PLUS, @@ -690140,7 +684882,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT, - ACTIONS(5999), 22, + ACTIONS(5879), 23, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_PLUS_PLUS, @@ -690159,11 +684901,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, - [207850] = 14, + [202585] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -690184,9 +684927,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8757), 1, - anon_sym_RPAREN, - STATE(5661), 9, + ACTIONS(8690), 1, + anon_sym_into, + STATE(5603), 10, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -690196,7 +684939,8 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(4862), 11, + aux_sym__query_body_repeat2, + ACTIONS(5953), 11, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, @@ -690208,10 +684952,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT, - ACTIONS(4860), 24, + ACTIONS(5951), 23, anon_sym_LBRACK, - anon_sym_COLON, - anon_sym_COMMA, anon_sym_LPAREN, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, @@ -690229,11 +684971,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, - [207934] = 39, + [202669] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -690254,80 +684997,57 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4443), 1, - anon_sym_DASH_GT, - ACTIONS(4533), 1, - anon_sym_DOT, - ACTIONS(5264), 1, - anon_sym_LPAREN, - ACTIONS(5304), 1, - anon_sym_BANG, - ACTIONS(6343), 1, - anon_sym_switch, - ACTIONS(6357), 1, - anon_sym_with, - ACTIONS(6619), 1, - anon_sym_LBRACK, - ACTIONS(6783), 1, + ACTIONS(8688), 1, + anon_sym_into, + STATE(5603), 1, + aux_sym__query_body_repeat2, + STATE(5604), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + ACTIONS(5960), 11, + anon_sym_LT, + anon_sym_GT, anon_sym_QMARK, - ACTIONS(6789), 1, + anon_sym_BANG, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_SLASH, - ACTIONS(6791), 1, - anon_sym_CARET, - ACTIONS(6793), 1, anon_sym_PIPE, - ACTIONS(6795), 1, anon_sym_AMP, - ACTIONS(6799), 1, anon_sym_GT_GT, - ACTIONS(6805), 1, - anon_sym_DOT_DOT, - ACTIONS(6807), 1, - anon_sym_AMP_AMP, - ACTIONS(6809), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6811), 1, - anon_sym_QMARK_QMARK, - ACTIONS(6813), 1, - anon_sym_as, - ACTIONS(6815), 1, - anon_sym_is, - STATE(3173), 1, - sym_bracketed_argument_list, - STATE(3487), 1, - sym_argument_list, - ACTIONS(5306), 2, + anon_sym_DOT, + ACTIONS(5958), 23, + anon_sym_LBRACK, + anon_sym_LPAREN, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6781), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(6785), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(6787), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(6797), 2, + anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(6801), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6803), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - STATE(5662), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - [208067] = 14, + 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, + [202755] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -690348,10 +685068,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(2953), 2, - anon_sym_while, - anon_sym_else, - STATE(5663), 9, + ACTIONS(8526), 1, + anon_sym_into, + STATE(5461), 1, + aux_sym__query_body_repeat2, + STATE(5605), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -690361,7 +685082,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(2955), 11, + ACTIONS(5935), 11, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, @@ -690373,7 +685094,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT, - ACTIONS(2957), 22, + ACTIONS(5933), 23, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_PLUS_PLUS, @@ -690392,11 +685113,12 @@ 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, anon_sym_DASH_GT, anon_sym_with, - [208150] = 19, + [202841] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -690417,26 +685139,116 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(3667), 1, - anon_sym_EQ_GT, - ACTIONS(3669), 1, - anon_sym_COLON_COLON, - ACTIONS(6311), 1, - anon_sym_LT, - ACTIONS(8759), 1, - anon_sym_EQ, - STATE(4063), 1, - sym_type_argument_list, - ACTIONS(8761), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - ACTIONS(3662), 5, - anon_sym_LBRACK, + ACTIONS(4042), 1, + anon_sym_DOT, + ACTIONS(4044), 1, + anon_sym_DASH_GT, + ACTIONS(5257), 1, anon_sym_LPAREN, + ACTIONS(5302), 1, + anon_sym_BANG, + ACTIONS(5549), 1, + anon_sym_LBRACK, + ACTIONS(6355), 1, + anon_sym_switch, + ACTIONS(6369), 1, + anon_sym_with, + ACTIONS(6811), 1, + anon_sym_as, + ACTIONS(7231), 1, anon_sym_QMARK, + ACTIONS(7237), 1, + anon_sym_SLASH, + ACTIONS(7239), 1, + anon_sym_CARET, + ACTIONS(7241), 1, + anon_sym_PIPE, + ACTIONS(7243), 1, + anon_sym_AMP, + ACTIONS(7247), 1, + anon_sym_GT_GT, + ACTIONS(7253), 1, + anon_sym_DOT_DOT, + ACTIONS(7255), 1, + anon_sym_AMP_AMP, + ACTIONS(7257), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7259), 1, + anon_sym_QMARK_QMARK, + ACTIONS(7261), 1, + anon_sym_is, + ACTIONS(8693), 1, + anon_sym_COMMA, + STATE(2467), 1, + sym_bracketed_argument_list, + STATE(3381), 1, + sym_argument_list, + ACTIONS(5304), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7229), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(7233), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(7235), 2, anon_sym_STAR, - anon_sym_DOT, - STATE(5664), 9, + anon_sym_PERCENT, + ACTIONS(7245), 2, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + ACTIONS(7249), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(7251), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + STATE(5606), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + [202977] = 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(4671), 1, + aux_sym_preproc_else_token1, + ACTIONS(4673), 1, + aux_sym_preproc_elif_token1, + ACTIONS(4691), 1, + aux_sym_preproc_if_token3, + STATE(7339), 2, + sym_preproc_else_in_attribute_list, + sym_preproc_elif_in_attribute_list, + ACTIONS(4667), 3, + anon_sym_LBRACK, + anon_sym_LPAREN, + aux_sym_preproc_if_token1, + STATE(5607), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -690446,15 +685258,20 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(3660), 23, + ACTIONS(4665), 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, @@ -690470,7 +685287,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_select, sym__identifier_token, - [208243] = 18, + [203067] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -690491,22 +685308,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4102), 1, - anon_sym_DASH_GT, - ACTIONS(6678), 1, + ACTIONS(4911), 3, anon_sym_LBRACK, - ACTIONS(6680), 1, - anon_sym_STAR, - ACTIONS(6716), 1, - anon_sym_QMARK, - ACTIONS(8763), 1, - anon_sym_DOT, - ACTIONS(4018), 4, - anon_sym_COMMA, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - STATE(5665), 9, + aux_sym_preproc_if_token1, + STATE(5608), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -690516,20 +685322,27 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(4016), 26, + ACTIONS(4909), 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, - sym_discard, - anon_sym_and, - anon_sym_or, anon_sym_from, anon_sym_into, anon_sym_join, @@ -690543,7 +685356,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_select, sym__identifier_token, - [208334] = 39, + [203149] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -690564,80 +685377,57 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4719), 1, - anon_sym_DASH_GT, - ACTIONS(4733), 1, - anon_sym_DOT, - ACTIONS(5573), 1, - anon_sym_LBRACK, - ACTIONS(5624), 1, - anon_sym_LPAREN, - ACTIONS(5666), 1, + ACTIONS(8695), 1, + anon_sym_into, + STATE(5611), 1, + aux_sym__query_body_repeat2, + STATE(5609), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + ACTIONS(5881), 11, + anon_sym_LT, + anon_sym_GT, + anon_sym_QMARK, anon_sym_BANG, - ACTIONS(5911), 1, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_SLASH, - ACTIONS(5913), 1, - anon_sym_CARET, - ACTIONS(5915), 1, anon_sym_PIPE, - ACTIONS(5917), 1, anon_sym_AMP, - ACTIONS(5921), 1, anon_sym_GT_GT, - ACTIONS(5929), 1, - anon_sym_AMP_AMP, - ACTIONS(5931), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5933), 1, - anon_sym_QMARK_QMARK, - ACTIONS(6343), 1, - anon_sym_switch, - ACTIONS(6357), 1, - anon_sym_with, - ACTIONS(6783), 1, - anon_sym_QMARK, - ACTIONS(6805), 1, - anon_sym_DOT_DOT, - ACTIONS(6813), 1, - anon_sym_as, - ACTIONS(6815), 1, - anon_sym_is, - STATE(2485), 1, - sym_bracketed_argument_list, - STATE(3886), 1, - sym_argument_list, - ACTIONS(5668), 2, + anon_sym_DOT, + ACTIONS(5879), 23, + anon_sym_LBRACK, + anon_sym_LPAREN, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5903), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(5907), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5909), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(5919), 2, + anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(5923), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5925), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - STATE(5666), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - [208467] = 39, + 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, + [203235] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -690658,70 +685448,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4100), 1, - anon_sym_DOT, - ACTIONS(4102), 1, - anon_sym_DASH_GT, - ACTIONS(5264), 1, - anon_sym_LPAREN, - ACTIONS(5304), 1, - anon_sym_BANG, - ACTIONS(5573), 1, - anon_sym_LBRACK, - ACTIONS(6343), 1, - anon_sym_switch, - ACTIONS(6357), 1, - anon_sym_with, - ACTIONS(6783), 1, - anon_sym_QMARK, - ACTIONS(6805), 1, - anon_sym_DOT_DOT, - ACTIONS(6813), 1, - anon_sym_as, - ACTIONS(6815), 1, - anon_sym_is, - ACTIONS(7564), 1, - anon_sym_SLASH, - ACTIONS(7568), 1, - anon_sym_GT_GT, - ACTIONS(7643), 1, - anon_sym_AMP, - ACTIONS(7655), 1, - anon_sym_CARET, - ACTIONS(7755), 1, - anon_sym_PIPE, - ACTIONS(7757), 1, - anon_sym_AMP_AMP, - ACTIONS(7763), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7765), 1, - anon_sym_QMARK_QMARK, - STATE(2485), 1, - sym_bracketed_argument_list, - STATE(3487), 1, - sym_argument_list, - ACTIONS(5306), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(7560), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(7562), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(7566), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - ACTIONS(7641), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(7645), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(7647), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - STATE(5667), 9, + ACTIONS(8695), 1, + anon_sym_into, + STATE(5612), 1, + aux_sym__query_body_repeat2, + STATE(5610), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -690731,101 +685462,43 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [208600] = 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(4100), 1, - anon_sym_DOT, - ACTIONS(4102), 1, - anon_sym_DASH_GT, - ACTIONS(5264), 1, - anon_sym_LPAREN, - ACTIONS(5304), 1, - anon_sym_BANG, - ACTIONS(5573), 1, - anon_sym_LBRACK, - ACTIONS(6343), 1, - anon_sym_switch, - ACTIONS(6357), 1, - anon_sym_with, - ACTIONS(6783), 1, + ACTIONS(5881), 11, + anon_sym_LT, + anon_sym_GT, anon_sym_QMARK, - ACTIONS(6805), 1, - anon_sym_DOT_DOT, - ACTIONS(6813), 1, - anon_sym_as, - ACTIONS(6815), 1, - anon_sym_is, - ACTIONS(7243), 1, + anon_sym_BANG, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_SLASH, - ACTIONS(7247), 1, - anon_sym_GT_GT, - ACTIONS(7253), 1, - anon_sym_AMP, - ACTIONS(7263), 1, - anon_sym_CARET, - ACTIONS(7268), 1, anon_sym_PIPE, - ACTIONS(7270), 1, - anon_sym_AMP_AMP, - ACTIONS(7272), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7274), 1, - anon_sym_QMARK_QMARK, - STATE(2485), 1, - sym_bracketed_argument_list, - STATE(3487), 1, - sym_argument_list, - ACTIONS(5306), 2, + anon_sym_AMP, + anon_sym_GT_GT, + anon_sym_DOT, + ACTIONS(5879), 23, + anon_sym_LBRACK, + anon_sym_LPAREN, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7239), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(7241), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7245), 2, + anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7251), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(7255), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7257), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - STATE(5668), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - [208733] = 39, + 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, + [203321] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -690846,80 +685519,56 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4075), 1, - anon_sym_DOT, - ACTIONS(4077), 1, - anon_sym_DASH_GT, - ACTIONS(5247), 1, - anon_sym_LPAREN, - ACTIONS(5285), 1, + ACTIONS(8697), 1, + anon_sym_into, + STATE(5611), 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(5953), 11, + anon_sym_LT, + anon_sym_GT, + anon_sym_QMARK, anon_sym_BANG, - ACTIONS(5573), 1, - anon_sym_LBRACK, - ACTIONS(6131), 1, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_SLASH, - ACTIONS(6133), 1, - anon_sym_CARET, - ACTIONS(6135), 1, anon_sym_PIPE, - ACTIONS(6137), 1, anon_sym_AMP, - ACTIONS(6141), 1, anon_sym_GT_GT, - ACTIONS(6151), 1, - anon_sym_AMP_AMP, - ACTIONS(6153), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6155), 1, - anon_sym_QMARK_QMARK, - ACTIONS(6343), 1, - anon_sym_switch, - ACTIONS(6357), 1, - anon_sym_with, - ACTIONS(6783), 1, - anon_sym_QMARK, - ACTIONS(6805), 1, - anon_sym_DOT_DOT, - ACTIONS(6813), 1, - anon_sym_as, - ACTIONS(6815), 1, - anon_sym_is, - STATE(2485), 1, - sym_bracketed_argument_list, - STATE(3259), 1, - sym_argument_list, - ACTIONS(5287), 2, + anon_sym_DOT, + ACTIONS(5951), 23, + anon_sym_LBRACK, + anon_sym_LPAREN, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6123), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(6127), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(6129), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(6139), 2, + anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(6143), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6145), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - STATE(5669), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - [208866] = 23, + 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, + [203405] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -690940,32 +685589,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(3881), 1, - anon_sym_LBRACE, - ACTIONS(3897), 1, - sym_discard, - ACTIONS(6823), 1, - sym__identifier_token, - ACTIONS(8102), 1, - anon_sym_LPAREN, - STATE(2571), 1, - sym__reserved_identifier, - STATE(3463), 1, - sym_parenthesized_variable_designation, - STATE(3479), 1, - sym_identifier, - STATE(3495), 1, - sym__variable_designation, - STATE(5742), 1, - sym_property_pattern_clause, - ACTIONS(3905), 2, - anon_sym_COLON, - anon_sym_EQ_GT, - ACTIONS(3907), 3, - anon_sym_when, - anon_sym_and, - anon_sym_or, - STATE(5670), 9, + ACTIONS(8695), 1, + anon_sym_into, + STATE(5611), 1, + aux_sym__query_body_repeat2, + STATE(5612), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -690975,123 +685603,43 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(6825), 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, - [208967] = 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(4443), 1, - anon_sym_DASH_GT, - ACTIONS(4533), 1, - anon_sym_DOT, - ACTIONS(5573), 1, - anon_sym_LBRACK, - ACTIONS(6343), 1, - anon_sym_switch, - ACTIONS(6357), 1, - anon_sym_with, - ACTIONS(6574), 1, - anon_sym_LPAREN, - ACTIONS(6625), 1, + ACTIONS(5960), 11, + anon_sym_LT, + anon_sym_GT, + anon_sym_QMARK, anon_sym_BANG, - ACTIONS(6737), 1, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_SLASH, - ACTIONS(6739), 1, - anon_sym_CARET, - ACTIONS(6741), 1, anon_sym_PIPE, - ACTIONS(6743), 1, anon_sym_AMP, - ACTIONS(6747), 1, anon_sym_GT_GT, - ACTIONS(6755), 1, - anon_sym_AMP_AMP, - ACTIONS(6757), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6759), 1, - anon_sym_QMARK_QMARK, - ACTIONS(6783), 1, - anon_sym_QMARK, - ACTIONS(6805), 1, - anon_sym_DOT_DOT, - ACTIONS(6813), 1, - anon_sym_as, - ACTIONS(6815), 1, - anon_sym_is, - STATE(2485), 1, - sym_bracketed_argument_list, - STATE(4583), 1, - sym_argument_list, - ACTIONS(6627), 2, + anon_sym_DOT, + ACTIONS(5958), 23, + anon_sym_LBRACK, + anon_sym_LPAREN, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6731), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(6733), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(6735), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(6745), 2, + anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(6749), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6751), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - STATE(5671), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - [209100] = 39, + 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, + [203491] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -691112,80 +685660,56 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4100), 1, - anon_sym_DOT, - ACTIONS(4102), 1, - anon_sym_DASH_GT, - ACTIONS(5264), 1, - anon_sym_LPAREN, - ACTIONS(5304), 1, - anon_sym_BANG, - ACTIONS(5573), 1, - anon_sym_LBRACK, - ACTIONS(6343), 1, - anon_sym_switch, - ACTIONS(6357), 1, - anon_sym_with, - ACTIONS(6783), 1, + ACTIONS(8700), 1, + anon_sym_RPAREN, + STATE(5613), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + ACTIONS(4813), 11, + anon_sym_LT, + anon_sym_GT, anon_sym_QMARK, - ACTIONS(6789), 1, + anon_sym_BANG, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_SLASH, - ACTIONS(6791), 1, - anon_sym_CARET, - ACTIONS(6793), 1, anon_sym_PIPE, - ACTIONS(6795), 1, anon_sym_AMP, - ACTIONS(6799), 1, anon_sym_GT_GT, - ACTIONS(6805), 1, - anon_sym_DOT_DOT, - ACTIONS(6807), 1, - anon_sym_AMP_AMP, - ACTIONS(6809), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6811), 1, - anon_sym_QMARK_QMARK, - ACTIONS(6813), 1, - anon_sym_as, - ACTIONS(6815), 1, - anon_sym_is, - STATE(2485), 1, - sym_bracketed_argument_list, - STATE(3487), 1, - sym_argument_list, - ACTIONS(5306), 2, + anon_sym_DOT, + ACTIONS(4811), 24, + anon_sym_LBRACK, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_LPAREN, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6781), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(6785), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(6787), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(6797), 2, + anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(6801), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6803), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - STATE(5672), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - [209233] = 18, + 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, + [203575] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -691206,22 +685730,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4102), 1, - anon_sym_DASH_GT, - ACTIONS(6678), 1, - anon_sym_LBRACK, - ACTIONS(6680), 1, - anon_sym_STAR, - ACTIONS(6716), 1, - anon_sym_QMARK, - ACTIONS(8765), 1, - anon_sym_DOT, - ACTIONS(4018), 4, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - STATE(5673), 9, + ACTIONS(8675), 1, + anon_sym_into, + STATE(5593), 1, + aux_sym__query_body_repeat2, + STATE(5614), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -691231,34 +685744,43 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(4016), 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, + ACTIONS(5935), 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(5933), 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_let, - anon_sym_orderby, - anon_sym_ascending, - anon_sym_descending, - anon_sym_group, - anon_sym_by, - anon_sym_select, - sym__identifier_token, - [209324] = 39, + anon_sym_as, + anon_sym_is, + anon_sym_DASH_GT, + anon_sym_with, + [203661] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -691279,70 +685801,72 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4100), 1, + ACTIONS(4042), 1, anon_sym_DOT, - ACTIONS(4102), 1, + ACTIONS(4044), 1, anon_sym_DASH_GT, - ACTIONS(5264), 1, + ACTIONS(5257), 1, anon_sym_LPAREN, - ACTIONS(5304), 1, + ACTIONS(5302), 1, anon_sym_BANG, - ACTIONS(5573), 1, + ACTIONS(5549), 1, anon_sym_LBRACK, - ACTIONS(6343), 1, + ACTIONS(6355), 1, anon_sym_switch, - ACTIONS(6357), 1, + ACTIONS(6369), 1, anon_sym_with, - ACTIONS(6783), 1, - anon_sym_QMARK, - ACTIONS(6805), 1, - anon_sym_DOT_DOT, - ACTIONS(6813), 1, + ACTIONS(6811), 1, anon_sym_as, - ACTIONS(6815), 1, - anon_sym_is, - ACTIONS(7057), 1, + ACTIONS(7231), 1, + anon_sym_QMARK, + ACTIONS(7237), 1, anon_sym_SLASH, - ACTIONS(7059), 1, + ACTIONS(7239), 1, anon_sym_CARET, - ACTIONS(7061), 1, + ACTIONS(7241), 1, anon_sym_PIPE, - ACTIONS(7063), 1, + ACTIONS(7243), 1, anon_sym_AMP, - ACTIONS(7067), 1, + ACTIONS(7247), 1, anon_sym_GT_GT, - ACTIONS(7075), 1, + ACTIONS(7253), 1, + anon_sym_DOT_DOT, + ACTIONS(7255), 1, anon_sym_AMP_AMP, - ACTIONS(7077), 1, + ACTIONS(7257), 1, anon_sym_PIPE_PIPE, - ACTIONS(7079), 1, + ACTIONS(7259), 1, anon_sym_QMARK_QMARK, - STATE(2485), 1, + ACTIONS(7261), 1, + anon_sym_is, + ACTIONS(8702), 1, + anon_sym_COMMA, + STATE(2467), 1, sym_bracketed_argument_list, - STATE(3487), 1, + STATE(3381), 1, sym_argument_list, - ACTIONS(5306), 2, + ACTIONS(5304), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7049), 2, + ACTIONS(7229), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7053), 2, + ACTIONS(7233), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7055), 2, + ACTIONS(7235), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7065), 2, + ACTIONS(7245), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7069), 2, + ACTIONS(7249), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7071), 2, + ACTIONS(7251), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - STATE(5674), 9, + STATE(5615), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -691352,7 +685876,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [209457] = 21, + [203797] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -691373,29 +685897,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(3897), 1, - sym_discard, - ACTIONS(6823), 1, - sym__identifier_token, - ACTIONS(8102), 1, - anon_sym_LPAREN, - STATE(2571), 1, - sym__reserved_identifier, - STATE(3463), 1, - sym_parenthesized_variable_designation, - STATE(3479), 1, - sym_identifier, - STATE(3507), 1, - sym__variable_designation, - ACTIONS(3907), 2, + ACTIONS(8480), 1, anon_sym_and, - anon_sym_or, - ACTIONS(3905), 4, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_RBRACE, - STATE(5675), 9, + STATE(5616), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -691405,197 +685909,44 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(6825), 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, - [209554] = 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(4102), 1, - anon_sym_DASH_GT, - ACTIONS(6678), 1, - anon_sym_LBRACK, - ACTIONS(6680), 1, - anon_sym_STAR, - ACTIONS(6716), 1, + ACTIONS(6097), 11, + anon_sym_LT, + anon_sym_GT, anon_sym_QMARK, - ACTIONS(8767), 1, - anon_sym_DOT, - ACTIONS(4018), 4, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - STATE(5676), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - ACTIONS(4016), 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, - [209645] = 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(4100), 1, - anon_sym_DOT, - ACTIONS(4102), 1, - anon_sym_DASH_GT, - ACTIONS(5264), 1, - anon_sym_LPAREN, - ACTIONS(5302), 1, - anon_sym_LBRACK, - ACTIONS(5304), 1, anon_sym_BANG, - ACTIONS(6343), 1, - anon_sym_switch, - ACTIONS(6357), 1, - anon_sym_with, - ACTIONS(6783), 1, - anon_sym_QMARK, - ACTIONS(6789), 1, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_SLASH, - ACTIONS(6791), 1, - anon_sym_CARET, - ACTIONS(6793), 1, anon_sym_PIPE, - ACTIONS(6795), 1, anon_sym_AMP, - ACTIONS(6799), 1, anon_sym_GT_GT, - ACTIONS(6805), 1, - anon_sym_DOT_DOT, - ACTIONS(6807), 1, - anon_sym_AMP_AMP, - ACTIONS(6809), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6811), 1, - anon_sym_QMARK_QMARK, - ACTIONS(6813), 1, - anon_sym_as, - ACTIONS(6815), 1, - anon_sym_is, - STATE(2808), 1, - sym_bracketed_argument_list, - STATE(3487), 1, - sym_argument_list, - ACTIONS(5306), 2, + anon_sym_DOT, + ACTIONS(6095), 24, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_in, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6781), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(6785), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(6787), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(6797), 2, + anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(6801), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6803), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - 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, - [209778] = 39, + 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, + [203881] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -691616,70 +685967,72 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4100), 1, + ACTIONS(4042), 1, anon_sym_DOT, - ACTIONS(4102), 1, + ACTIONS(4044), 1, anon_sym_DASH_GT, - ACTIONS(5264), 1, + ACTIONS(5257), 1, anon_sym_LPAREN, - ACTIONS(5304), 1, + ACTIONS(5302), 1, anon_sym_BANG, - ACTIONS(5573), 1, + ACTIONS(5549), 1, anon_sym_LBRACK, - ACTIONS(6343), 1, + ACTIONS(5709), 1, + anon_sym_equals, + ACTIONS(6355), 1, anon_sym_switch, - ACTIONS(6357), 1, + ACTIONS(6369), 1, anon_sym_with, - ACTIONS(6690), 1, + ACTIONS(8392), 1, + anon_sym_QMARK, + ACTIONS(8398), 1, anon_sym_SLASH, - ACTIONS(6692), 1, + ACTIONS(8400), 1, anon_sym_CARET, - ACTIONS(6694), 1, + ACTIONS(8402), 1, anon_sym_PIPE, - ACTIONS(6696), 1, + ACTIONS(8404), 1, anon_sym_AMP, - ACTIONS(6700), 1, + ACTIONS(8408), 1, anon_sym_GT_GT, - ACTIONS(6708), 1, + ACTIONS(8414), 1, + anon_sym_DOT_DOT, + ACTIONS(8416), 1, anon_sym_AMP_AMP, - ACTIONS(6710), 1, + ACTIONS(8418), 1, anon_sym_PIPE_PIPE, - ACTIONS(6712), 1, + ACTIONS(8420), 1, anon_sym_QMARK_QMARK, - ACTIONS(6783), 1, - anon_sym_QMARK, - ACTIONS(6805), 1, - anon_sym_DOT_DOT, - ACTIONS(6813), 1, + ACTIONS(8424), 1, anon_sym_as, - ACTIONS(6815), 1, + ACTIONS(8426), 1, anon_sym_is, - STATE(2485), 1, + STATE(2467), 1, sym_bracketed_argument_list, - STATE(3487), 1, + STATE(3381), 1, sym_argument_list, - ACTIONS(5306), 2, + ACTIONS(5304), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6682), 2, + ACTIONS(8390), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(6686), 2, + ACTIONS(8394), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6688), 2, + ACTIONS(8396), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(6698), 2, + ACTIONS(8406), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(6702), 2, + ACTIONS(8410), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6704), 2, + ACTIONS(8412), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - STATE(5678), 9, + STATE(5617), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -691689,7 +686042,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [209911] = 39, + [204017] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -691710,70 +686063,72 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4100), 1, + ACTIONS(4042), 1, anon_sym_DOT, - ACTIONS(4102), 1, + ACTIONS(4044), 1, anon_sym_DASH_GT, - ACTIONS(5264), 1, + ACTIONS(5257), 1, anon_sym_LPAREN, - ACTIONS(5304), 1, + ACTIONS(5302), 1, anon_sym_BANG, - ACTIONS(5573), 1, + ACTIONS(5549), 1, anon_sym_LBRACK, - ACTIONS(6343), 1, + ACTIONS(6355), 1, anon_sym_switch, - ACTIONS(6357), 1, + ACTIONS(6369), 1, anon_sym_with, - ACTIONS(6459), 1, + ACTIONS(6811), 1, + anon_sym_as, + ACTIONS(6813), 1, + anon_sym_is, + ACTIONS(6985), 1, anon_sym_SLASH, - ACTIONS(6461), 1, + ACTIONS(6989), 1, + anon_sym_GT_GT, + ACTIONS(6991), 1, + anon_sym_DOT_DOT, + ACTIONS(7099), 1, + anon_sym_QMARK, + ACTIONS(7101), 1, anon_sym_CARET, - ACTIONS(6463), 1, + ACTIONS(7103), 1, anon_sym_PIPE, - ACTIONS(6465), 1, + ACTIONS(7105), 1, anon_sym_AMP, - ACTIONS(6469), 1, - anon_sym_GT_GT, - ACTIONS(6479), 1, + ACTIONS(7111), 1, anon_sym_AMP_AMP, - ACTIONS(6481), 1, + ACTIONS(7113), 1, anon_sym_PIPE_PIPE, - ACTIONS(6483), 1, + ACTIONS(7115), 1, anon_sym_QMARK_QMARK, - ACTIONS(6783), 1, - anon_sym_QMARK, - ACTIONS(6805), 1, - anon_sym_DOT_DOT, - ACTIONS(6813), 1, - anon_sym_as, - ACTIONS(6815), 1, - anon_sym_is, - STATE(2485), 1, + ACTIONS(8704), 1, + anon_sym_SEMI, + STATE(2467), 1, sym_bracketed_argument_list, - STATE(3487), 1, + STATE(3381), 1, sym_argument_list, - ACTIONS(5306), 2, + ACTIONS(5304), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6451), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(6455), 2, + ACTIONS(6981), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6457), 2, + ACTIONS(6983), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(6467), 2, + ACTIONS(6987), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(6471), 2, + ACTIONS(7097), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(7107), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6473), 2, + ACTIONS(7109), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - STATE(5679), 9, + STATE(5618), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -691783,7 +686138,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [210044] = 39, + [204153] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -691804,80 +686159,57 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4075), 1, - anon_sym_DOT, - ACTIONS(4077), 1, - anon_sym_DASH_GT, - ACTIONS(5247), 1, - anon_sym_LPAREN, - ACTIONS(5285), 1, + ACTIONS(8688), 1, + anon_sym_into, + STATE(5601), 1, + aux_sym__query_body_repeat2, + STATE(5619), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + ACTIONS(5935), 11, + anon_sym_LT, + anon_sym_GT, + anon_sym_QMARK, anon_sym_BANG, - ACTIONS(5573), 1, - anon_sym_LBRACK, - ACTIONS(6343), 1, - anon_sym_switch, - ACTIONS(6357), 1, - anon_sym_with, - ACTIONS(6499), 1, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_SLASH, - ACTIONS(6501), 1, - anon_sym_CARET, - ACTIONS(6503), 1, anon_sym_PIPE, - ACTIONS(6505), 1, anon_sym_AMP, - ACTIONS(6509), 1, anon_sym_GT_GT, - ACTIONS(6517), 1, - anon_sym_AMP_AMP, - ACTIONS(6519), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6521), 1, - anon_sym_QMARK_QMARK, - ACTIONS(6783), 1, - anon_sym_QMARK, - ACTIONS(6805), 1, - anon_sym_DOT_DOT, - ACTIONS(6813), 1, - anon_sym_as, - ACTIONS(6815), 1, - anon_sym_is, - STATE(2485), 1, - sym_bracketed_argument_list, - STATE(3259), 1, - sym_argument_list, - ACTIONS(5287), 2, + anon_sym_DOT, + ACTIONS(5933), 23, + anon_sym_LBRACK, + anon_sym_LPAREN, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6491), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(6495), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(6497), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(6507), 2, + anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(6511), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6513), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - 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, - [210177] = 39, + 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, + [204239] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -691898,70 +686230,72 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4075), 1, + ACTIONS(4042), 1, anon_sym_DOT, - ACTIONS(4077), 1, + ACTIONS(4044), 1, anon_sym_DASH_GT, - ACTIONS(5264), 1, + ACTIONS(5257), 1, anon_sym_LPAREN, - ACTIONS(5283), 1, - anon_sym_LBRACK, - ACTIONS(5304), 1, + ACTIONS(5302), 1, anon_sym_BANG, - ACTIONS(6343), 1, + ACTIONS(5549), 1, + anon_sym_LBRACK, + ACTIONS(6355), 1, anon_sym_switch, - ACTIONS(6357), 1, + ACTIONS(6369), 1, anon_sym_with, - ACTIONS(6783), 1, + ACTIONS(6811), 1, + anon_sym_as, + ACTIONS(7231), 1, anon_sym_QMARK, - ACTIONS(6789), 1, + ACTIONS(7237), 1, anon_sym_SLASH, - ACTIONS(6791), 1, + ACTIONS(7239), 1, anon_sym_CARET, - ACTIONS(6793), 1, + ACTIONS(7241), 1, anon_sym_PIPE, - ACTIONS(6795), 1, + ACTIONS(7243), 1, anon_sym_AMP, - ACTIONS(6799), 1, + ACTIONS(7247), 1, anon_sym_GT_GT, - ACTIONS(6805), 1, + ACTIONS(7253), 1, anon_sym_DOT_DOT, - ACTIONS(6807), 1, + ACTIONS(7255), 1, anon_sym_AMP_AMP, - ACTIONS(6809), 1, + ACTIONS(7257), 1, anon_sym_PIPE_PIPE, - ACTIONS(6811), 1, + ACTIONS(7259), 1, anon_sym_QMARK_QMARK, - ACTIONS(6813), 1, - anon_sym_as, - ACTIONS(6815), 1, + ACTIONS(7261), 1, anon_sym_is, - STATE(2613), 1, + ACTIONS(8706), 1, + anon_sym_COMMA, + STATE(2467), 1, sym_bracketed_argument_list, - STATE(3487), 1, + STATE(3381), 1, sym_argument_list, - ACTIONS(5306), 2, + ACTIONS(5304), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6781), 2, + ACTIONS(7229), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(6785), 2, + ACTIONS(7233), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6787), 2, + ACTIONS(7235), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(6797), 2, + ACTIONS(7245), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(6801), 2, + ACTIONS(7249), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6803), 2, + ACTIONS(7251), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - STATE(5681), 9, + STATE(5620), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -691971,7 +686305,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [210310] = 21, + [204375] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -691992,29 +686326,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(3897), 1, - sym_discard, - ACTIONS(6823), 1, - sym__identifier_token, - ACTIONS(8102), 1, - anon_sym_LPAREN, - STATE(2571), 1, - sym__reserved_identifier, - STATE(3365), 1, - sym__variable_designation, - STATE(3463), 1, - sym_parenthesized_variable_designation, - STATE(3479), 1, - sym_identifier, - ACTIONS(3915), 2, - anon_sym_and, - anon_sym_or, - ACTIONS(3913), 4, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_RBRACE, - STATE(5682), 9, + ACTIONS(8695), 1, + anon_sym_into, + STATE(5609), 1, + aux_sym__query_body_repeat2, + STATE(5621), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -692024,30 +686340,43 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(6825), 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, - [210407] = 39, + ACTIONS(5935), 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(5933), 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_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, + [204461] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -692068,70 +686397,72 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4755), 1, + ACTIONS(4042), 1, + anon_sym_DOT, + ACTIONS(4044), 1, anon_sym_DASH_GT, - ACTIONS(4804), 1, + ACTIONS(5257), 1, anon_sym_LPAREN, - ACTIONS(4808), 1, - anon_sym_DOT, - ACTIONS(4839), 1, + ACTIONS(5302), 1, anon_sym_BANG, - ACTIONS(5573), 1, + ACTIONS(5549), 1, anon_sym_LBRACK, - ACTIONS(6277), 1, + ACTIONS(6355), 1, + anon_sym_switch, + ACTIONS(6369), 1, + anon_sym_with, + ACTIONS(6811), 1, + anon_sym_as, + ACTIONS(7231), 1, + anon_sym_QMARK, + ACTIONS(7237), 1, anon_sym_SLASH, - ACTIONS(6279), 1, + ACTIONS(7239), 1, anon_sym_CARET, - ACTIONS(6281), 1, + ACTIONS(7241), 1, anon_sym_PIPE, - ACTIONS(6283), 1, + ACTIONS(7243), 1, anon_sym_AMP, - ACTIONS(6287), 1, + ACTIONS(7247), 1, anon_sym_GT_GT, - ACTIONS(6297), 1, + ACTIONS(7253), 1, + anon_sym_DOT_DOT, + ACTIONS(7255), 1, anon_sym_AMP_AMP, - ACTIONS(6299), 1, + ACTIONS(7257), 1, anon_sym_PIPE_PIPE, - ACTIONS(6301), 1, + ACTIONS(7259), 1, anon_sym_QMARK_QMARK, - ACTIONS(6343), 1, - anon_sym_switch, - ACTIONS(6357), 1, - anon_sym_with, - ACTIONS(6783), 1, - anon_sym_QMARK, - ACTIONS(6805), 1, - anon_sym_DOT_DOT, - ACTIONS(6813), 1, - anon_sym_as, - ACTIONS(6815), 1, + ACTIONS(7261), 1, anon_sym_is, - STATE(2485), 1, + ACTIONS(8708), 1, + anon_sym_RPAREN, + STATE(2467), 1, sym_bracketed_argument_list, - STATE(3035), 1, + STATE(3381), 1, sym_argument_list, - ACTIONS(4841), 2, + ACTIONS(5304), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6269), 2, + ACTIONS(7229), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(6273), 2, + ACTIONS(7233), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6275), 2, + ACTIONS(7235), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(6285), 2, + ACTIONS(7245), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(6289), 2, + ACTIONS(7249), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6291), 2, + ACTIONS(7251), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - STATE(5683), 9, + STATE(5622), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -692141,7 +686472,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [210540] = 39, + [204597] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -692162,70 +686493,72 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4755), 1, + ACTIONS(4042), 1, + anon_sym_DOT, + ACTIONS(4044), 1, anon_sym_DASH_GT, - ACTIONS(4804), 1, + ACTIONS(5257), 1, anon_sym_LPAREN, - ACTIONS(4808), 1, - anon_sym_DOT, - ACTIONS(4839), 1, + ACTIONS(5302), 1, anon_sym_BANG, - ACTIONS(5573), 1, + ACTIONS(5549), 1, anon_sym_LBRACK, - ACTIONS(6327), 1, + ACTIONS(6355), 1, + anon_sym_switch, + ACTIONS(6369), 1, + anon_sym_with, + ACTIONS(6811), 1, + anon_sym_as, + ACTIONS(7231), 1, + anon_sym_QMARK, + ACTIONS(7237), 1, anon_sym_SLASH, - ACTIONS(6329), 1, + ACTIONS(7239), 1, anon_sym_CARET, - ACTIONS(6331), 1, + ACTIONS(7241), 1, anon_sym_PIPE, - ACTIONS(6333), 1, + ACTIONS(7243), 1, anon_sym_AMP, - ACTIONS(6337), 1, + ACTIONS(7247), 1, anon_sym_GT_GT, - ACTIONS(6343), 1, - anon_sym_switch, - ACTIONS(6347), 1, + ACTIONS(7253), 1, + anon_sym_DOT_DOT, + ACTIONS(7255), 1, anon_sym_AMP_AMP, - ACTIONS(6349), 1, + ACTIONS(7257), 1, anon_sym_PIPE_PIPE, - ACTIONS(6351), 1, + ACTIONS(7259), 1, anon_sym_QMARK_QMARK, - ACTIONS(6357), 1, - anon_sym_with, - ACTIONS(6783), 1, - anon_sym_QMARK, - ACTIONS(6805), 1, - anon_sym_DOT_DOT, - ACTIONS(6813), 1, - anon_sym_as, - ACTIONS(6815), 1, + ACTIONS(7261), 1, anon_sym_is, - STATE(2485), 1, + ACTIONS(8710), 1, + anon_sym_RPAREN, + STATE(2467), 1, sym_bracketed_argument_list, - STATE(3035), 1, + STATE(3381), 1, sym_argument_list, - ACTIONS(4841), 2, + ACTIONS(5304), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6319), 2, + ACTIONS(7229), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(6323), 2, + ACTIONS(7233), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6325), 2, + ACTIONS(7235), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(6335), 2, + ACTIONS(7245), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(6339), 2, + ACTIONS(7249), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6341), 2, + ACTIONS(7251), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - STATE(5684), 9, + STATE(5623), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -692235,7 +686568,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [210673] = 39, + [204733] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -692256,70 +686589,72 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4100), 1, + ACTIONS(4042), 1, anon_sym_DOT, - ACTIONS(4102), 1, + ACTIONS(4044), 1, anon_sym_DASH_GT, - ACTIONS(5264), 1, + ACTIONS(5257), 1, anon_sym_LPAREN, - ACTIONS(5304), 1, + ACTIONS(5302), 1, anon_sym_BANG, - ACTIONS(5573), 1, + ACTIONS(5549), 1, anon_sym_LBRACK, - ACTIONS(6343), 1, + ACTIONS(6355), 1, anon_sym_switch, - ACTIONS(6357), 1, + ACTIONS(6369), 1, anon_sym_with, - ACTIONS(6783), 1, - anon_sym_QMARK, - ACTIONS(6805), 1, - anon_sym_DOT_DOT, - ACTIONS(6813), 1, + ACTIONS(6811), 1, anon_sym_as, - ACTIONS(6815), 1, - anon_sym_is, - ACTIONS(7697), 1, + ACTIONS(7231), 1, + anon_sym_QMARK, + ACTIONS(7237), 1, anon_sym_SLASH, - ACTIONS(7701), 1, - anon_sym_GT_GT, - ACTIONS(7709), 1, - anon_sym_AMP, - ACTIONS(7719), 1, + ACTIONS(7239), 1, anon_sym_CARET, - ACTIONS(7725), 1, + ACTIONS(7241), 1, anon_sym_PIPE, - ACTIONS(7727), 1, + ACTIONS(7243), 1, + anon_sym_AMP, + ACTIONS(7247), 1, + anon_sym_GT_GT, + ACTIONS(7253), 1, + anon_sym_DOT_DOT, + ACTIONS(7255), 1, anon_sym_AMP_AMP, - ACTIONS(7731), 1, + ACTIONS(7257), 1, anon_sym_PIPE_PIPE, - ACTIONS(7733), 1, + ACTIONS(7259), 1, anon_sym_QMARK_QMARK, - STATE(2485), 1, + ACTIONS(7261), 1, + anon_sym_is, + ACTIONS(8712), 1, + anon_sym_RPAREN, + STATE(2467), 1, sym_bracketed_argument_list, - STATE(3487), 1, + STATE(3381), 1, sym_argument_list, - ACTIONS(5306), 2, + ACTIONS(5304), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7693), 2, + ACTIONS(7229), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(7233), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7695), 2, + ACTIONS(7235), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7699), 2, + ACTIONS(7245), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7707), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(7711), 2, + ACTIONS(7249), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7713), 2, + ACTIONS(7251), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - STATE(5685), 9, + STATE(5624), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -692329,7 +686664,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [210806] = 23, + [204869] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -692350,31 +686685,72 @@ 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(5024), 1, + ACTIONS(4042), 1, + anon_sym_DOT, + ACTIONS(4044), 1, + anon_sym_DASH_GT, + ACTIONS(5257), 1, + anon_sym_LPAREN, + ACTIONS(5302), 1, + anon_sym_BANG, + ACTIONS(5549), 1, anon_sym_LBRACK, - ACTIONS(8769), 1, - anon_sym_COMMA, - ACTIONS(8771), 1, - anon_sym_RBRACE, - ACTIONS(8773), 1, - aux_sym_preproc_if_token1, - STATE(2175), 1, - sym__reserved_identifier, - STATE(5798), 1, - aux_sym__class_declaration_initializer_repeat1, - STATE(6051), 1, - sym__attribute_list, - STATE(6881), 1, - sym_identifier, - STATE(5934), 2, - sym_attribute_list, - sym_preproc_if_in_attribute_list, - STATE(6973), 2, - sym_enum_member_declaration, - sym_preproc_if_in_enum_member_declaration, - STATE(5686), 9, + ACTIONS(6355), 1, + anon_sym_switch, + ACTIONS(6369), 1, + anon_sym_with, + ACTIONS(6811), 1, + anon_sym_as, + ACTIONS(6813), 1, + anon_sym_is, + ACTIONS(6985), 1, + anon_sym_SLASH, + ACTIONS(6989), 1, + anon_sym_GT_GT, + ACTIONS(6991), 1, + anon_sym_DOT_DOT, + ACTIONS(7099), 1, + anon_sym_QMARK, + ACTIONS(7101), 1, + anon_sym_CARET, + ACTIONS(7103), 1, + anon_sym_PIPE, + ACTIONS(7105), 1, + anon_sym_AMP, + ACTIONS(7111), 1, + anon_sym_AMP_AMP, + ACTIONS(7113), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7115), 1, + anon_sym_QMARK_QMARK, + ACTIONS(8714), 1, + anon_sym_SEMI, + STATE(2467), 1, + sym_bracketed_argument_list, + STATE(3381), 1, + sym_argument_list, + ACTIONS(5304), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6981), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6983), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(6987), 2, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + ACTIONS(7097), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(7107), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(7109), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + STATE(5625), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -692384,30 +686760,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, - [210907] = 39, + [205005] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -692428,70 +686781,72 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4719), 1, - anon_sym_DASH_GT, - ACTIONS(4733), 1, + ACTIONS(4042), 1, anon_sym_DOT, - ACTIONS(5573), 1, - anon_sym_LBRACK, - ACTIONS(5624), 1, + ACTIONS(4044), 1, + anon_sym_DASH_GT, + ACTIONS(5257), 1, anon_sym_LPAREN, - ACTIONS(5666), 1, + ACTIONS(5302), 1, anon_sym_BANG, - ACTIONS(5674), 1, + ACTIONS(5549), 1, + anon_sym_LBRACK, + ACTIONS(6355), 1, + anon_sym_switch, + ACTIONS(6369), 1, + anon_sym_with, + ACTIONS(6811), 1, + anon_sym_as, + ACTIONS(7231), 1, + anon_sym_QMARK, + ACTIONS(7237), 1, anon_sym_SLASH, - ACTIONS(5676), 1, + ACTIONS(7239), 1, anon_sym_CARET, - ACTIONS(5678), 1, + ACTIONS(7241), 1, + anon_sym_PIPE, + ACTIONS(7243), 1, anon_sym_AMP, - ACTIONS(5682), 1, + ACTIONS(7247), 1, anon_sym_GT_GT, - ACTIONS(5749), 1, - anon_sym_PIPE, - ACTIONS(5753), 1, + ACTIONS(7253), 1, + anon_sym_DOT_DOT, + ACTIONS(7255), 1, anon_sym_AMP_AMP, - ACTIONS(5755), 1, + ACTIONS(7257), 1, anon_sym_PIPE_PIPE, - ACTIONS(5757), 1, + ACTIONS(7259), 1, anon_sym_QMARK_QMARK, - ACTIONS(6343), 1, - anon_sym_switch, - ACTIONS(6357), 1, - anon_sym_with, - ACTIONS(6783), 1, - anon_sym_QMARK, - ACTIONS(6805), 1, - anon_sym_DOT_DOT, - ACTIONS(6813), 1, - anon_sym_as, - ACTIONS(6815), 1, + ACTIONS(7261), 1, anon_sym_is, - STATE(2485), 1, + ACTIONS(8716), 1, + anon_sym_RPAREN, + STATE(2467), 1, sym_bracketed_argument_list, - STATE(3886), 1, + STATE(3381), 1, sym_argument_list, - ACTIONS(5662), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(5668), 2, + ACTIONS(5304), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5670), 2, + ACTIONS(7229), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(7233), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5672), 2, + ACTIONS(7235), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(5680), 2, + ACTIONS(7245), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(5684), 2, + ACTIONS(7249), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5686), 2, + ACTIONS(7251), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - STATE(5687), 9, + STATE(5626), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -692501,7 +686856,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [211040] = 39, + [205141] = 29, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -692522,70 +686877,49 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4755), 1, - anon_sym_DASH_GT, - ACTIONS(4808), 1, + ACTIONS(4042), 1, anon_sym_DOT, - ACTIONS(4835), 1, - anon_sym_LBRACK, - ACTIONS(5264), 1, + ACTIONS(4044), 1, + anon_sym_DASH_GT, + ACTIONS(5257), 1, anon_sym_LPAREN, - ACTIONS(5304), 1, + ACTIONS(5302), 1, anon_sym_BANG, - ACTIONS(6343), 1, + ACTIONS(5549), 1, + anon_sym_LBRACK, + ACTIONS(6355), 1, anon_sym_switch, - ACTIONS(6357), 1, + ACTIONS(6369), 1, anon_sym_with, - ACTIONS(6783), 1, - anon_sym_QMARK, - ACTIONS(6789), 1, + ACTIONS(8158), 1, anon_sym_SLASH, - ACTIONS(6791), 1, - anon_sym_CARET, - ACTIONS(6793), 1, - anon_sym_PIPE, - ACTIONS(6795), 1, - anon_sym_AMP, - ACTIONS(6799), 1, + ACTIONS(8168), 1, anon_sym_GT_GT, - ACTIONS(6805), 1, + ACTIONS(8174), 1, anon_sym_DOT_DOT, - ACTIONS(6807), 1, - anon_sym_AMP_AMP, - ACTIONS(6809), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6811), 1, - anon_sym_QMARK_QMARK, - ACTIONS(6813), 1, - anon_sym_as, - ACTIONS(6815), 1, - anon_sym_is, - STATE(2433), 1, + STATE(2467), 1, sym_bracketed_argument_list, - STATE(3487), 1, + STATE(3381), 1, sym_argument_list, - ACTIONS(5306), 2, + ACTIONS(5304), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6781), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(6785), 2, + ACTIONS(8154), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6787), 2, + ACTIONS(8156), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(6797), 2, + ACTIONS(8166), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(6801), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(6803), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - STATE(5688), 9, + ACTIONS(5739), 5, + anon_sym_LT, + anon_sym_GT, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_AMP, + STATE(5627), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -692595,7 +686929,19 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [211173] = 39, + ACTIONS(5737), 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, + [205255] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -692616,70 +686962,72 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4075), 1, + ACTIONS(4042), 1, anon_sym_DOT, - ACTIONS(4077), 1, + ACTIONS(4044), 1, anon_sym_DASH_GT, - ACTIONS(5247), 1, + ACTIONS(5257), 1, anon_sym_LPAREN, - ACTIONS(5285), 1, + ACTIONS(5302), 1, anon_sym_BANG, - ACTIONS(5573), 1, + ACTIONS(5549), 1, anon_sym_LBRACK, - ACTIONS(6343), 1, + ACTIONS(6355), 1, anon_sym_switch, - ACTIONS(6357), 1, + ACTIONS(6369), 1, anon_sym_with, - ACTIONS(6783), 1, - anon_sym_QMARK, - ACTIONS(6805), 1, - anon_sym_DOT_DOT, - ACTIONS(6813), 1, + ACTIONS(7195), 1, anon_sym_as, - ACTIONS(6815), 1, - anon_sym_is, - ACTIONS(7286), 1, + ACTIONS(8152), 1, + anon_sym_QMARK, + ACTIONS(8158), 1, anon_sym_SLASH, - ACTIONS(7290), 1, - anon_sym_GT_GT, - ACTIONS(7300), 1, + ACTIONS(8160), 1, anon_sym_CARET, - ACTIONS(7302), 1, + ACTIONS(8162), 1, anon_sym_PIPE, - ACTIONS(7304), 1, + ACTIONS(8164), 1, anon_sym_AMP, - ACTIONS(7310), 1, + ACTIONS(8168), 1, + anon_sym_GT_GT, + ACTIONS(8174), 1, + anon_sym_DOT_DOT, + ACTIONS(8176), 1, anon_sym_AMP_AMP, - ACTIONS(7312), 1, + ACTIONS(8178), 1, anon_sym_PIPE_PIPE, - ACTIONS(7314), 1, + ACTIONS(8180), 1, anon_sym_QMARK_QMARK, - STATE(2485), 1, + ACTIONS(8182), 1, + anon_sym_is, + ACTIONS(8718), 1, + anon_sym_COLON, + STATE(2467), 1, sym_bracketed_argument_list, - STATE(3259), 1, + STATE(3381), 1, sym_argument_list, - ACTIONS(5287), 2, + ACTIONS(5304), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7282), 2, + ACTIONS(8150), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(8154), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7284), 2, + ACTIONS(8156), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7288), 2, + ACTIONS(8166), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7296), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(7306), 2, + ACTIONS(8170), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7308), 2, + ACTIONS(8172), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - STATE(5689), 9, + STATE(5628), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -692689,7 +687037,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [211306] = 39, + [205391] = 26, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -692710,70 +687058,122 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4443), 1, - anon_sym_DASH_GT, - ACTIONS(4533), 1, + ACTIONS(4042), 1, anon_sym_DOT, - ACTIONS(5573), 1, + ACTIONS(4044), 1, + anon_sym_DASH_GT, + ACTIONS(5257), 1, + anon_sym_LPAREN, + ACTIONS(5302), 1, + anon_sym_BANG, + ACTIONS(5549), 1, anon_sym_LBRACK, - ACTIONS(6343), 1, + ACTIONS(6355), 1, anon_sym_switch, - ACTIONS(6357), 1, + ACTIONS(6369), 1, anon_sym_with, - ACTIONS(6574), 1, - anon_sym_LPAREN, - ACTIONS(6625), 1, - anon_sym_BANG, - ACTIONS(6633), 1, + ACTIONS(8158), 1, anon_sym_SLASH, - ACTIONS(6635), 1, - anon_sym_CARET, - ACTIONS(6637), 1, + ACTIONS(8174), 1, + anon_sym_DOT_DOT, + STATE(2467), 1, + sym_bracketed_argument_list, + STATE(3381), 1, + sym_argument_list, + ACTIONS(5304), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(8156), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(5739), 8, + anon_sym_LT, + anon_sym_GT, + anon_sym_QMARK, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_PIPE, - ACTIONS(6639), 1, anon_sym_AMP, - ACTIONS(6643), 1, anon_sym_GT_GT, - ACTIONS(6653), 1, + STATE(5629), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + ACTIONS(5737), 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, - ACTIONS(6655), 1, anon_sym_PIPE_PIPE, - ACTIONS(6657), 1, anon_sym_QMARK_QMARK, - ACTIONS(6783), 1, - anon_sym_QMARK, - ACTIONS(6805), 1, - anon_sym_DOT_DOT, - ACTIONS(6813), 1, anon_sym_as, - ACTIONS(6815), 1, anon_sym_is, - STATE(2485), 1, + [205499] = 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(4042), 1, + anon_sym_DOT, + ACTIONS(4044), 1, + anon_sym_DASH_GT, + ACTIONS(5257), 1, + anon_sym_LPAREN, + ACTIONS(5302), 1, + anon_sym_BANG, + ACTIONS(5549), 1, + anon_sym_LBRACK, + ACTIONS(6355), 1, + anon_sym_switch, + ACTIONS(6369), 1, + anon_sym_with, + ACTIONS(8174), 1, + anon_sym_DOT_DOT, + STATE(2467), 1, sym_bracketed_argument_list, - STATE(4583), 1, + STATE(3381), 1, sym_argument_list, - ACTIONS(6621), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(6627), 2, + ACTIONS(5304), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6629), 2, + ACTIONS(5739), 9, + anon_sym_LT, + anon_sym_GT, + anon_sym_QMARK, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6631), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(6641), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - ACTIONS(6645), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(6647), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - STATE(5690), 9, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT_GT, + STATE(5630), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -692783,7 +687183,23 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [211439] = 21, + ACTIONS(5737), 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, + anon_sym_LT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, + anon_sym_as, + anon_sym_is, + [205603] = 35, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -692804,29 +687220,67 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(3897), 1, - sym_discard, - ACTIONS(6823), 1, - sym__identifier_token, - ACTIONS(8102), 1, + ACTIONS(4042), 1, + anon_sym_DOT, + ACTIONS(4044), 1, + anon_sym_DASH_GT, + ACTIONS(5257), 1, anon_sym_LPAREN, - STATE(2571), 1, - sym__reserved_identifier, - STATE(3463), 1, - sym_parenthesized_variable_designation, - STATE(3479), 1, - sym_identifier, - STATE(3481), 1, - sym__variable_designation, - ACTIONS(3963), 2, - anon_sym_and, - anon_sym_or, - ACTIONS(3961), 4, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_RBRACE, - STATE(5691), 9, + ACTIONS(5302), 1, + anon_sym_BANG, + ACTIONS(5549), 1, + anon_sym_LBRACK, + ACTIONS(6355), 1, + anon_sym_switch, + ACTIONS(6369), 1, + anon_sym_with, + ACTIONS(7195), 1, + anon_sym_as, + ACTIONS(8158), 1, + anon_sym_SLASH, + ACTIONS(8164), 1, + anon_sym_AMP, + ACTIONS(8168), 1, + anon_sym_GT_GT, + ACTIONS(8174), 1, + anon_sym_DOT_DOT, + ACTIONS(8182), 1, + anon_sym_is, + STATE(2467), 1, + sym_bracketed_argument_list, + STATE(3381), 1, + sym_argument_list, + ACTIONS(5304), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5739), 2, + anon_sym_QMARK, + anon_sym_PIPE, + ACTIONS(8150), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(8154), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(8156), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(8166), 2, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + ACTIONS(8170), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(8172), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(5737), 5, + anon_sym_COLON, + anon_sym_CARET, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, + STATE(5631), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -692836,30 +687290,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(6825), 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, - [211536] = 39, + [205729] = 36, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -692880,70 +687311,68 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4100), 1, + ACTIONS(4042), 1, anon_sym_DOT, - ACTIONS(4102), 1, + ACTIONS(4044), 1, anon_sym_DASH_GT, - ACTIONS(5264), 1, + ACTIONS(5257), 1, anon_sym_LPAREN, - ACTIONS(5304), 1, + ACTIONS(5302), 1, anon_sym_BANG, - ACTIONS(5573), 1, + ACTIONS(5549), 1, anon_sym_LBRACK, - ACTIONS(6343), 1, + ACTIONS(6355), 1, anon_sym_switch, - ACTIONS(6357), 1, + ACTIONS(6369), 1, anon_sym_with, - ACTIONS(6783), 1, - anon_sym_QMARK, - ACTIONS(6805), 1, - anon_sym_DOT_DOT, - ACTIONS(6813), 1, + ACTIONS(7195), 1, anon_sym_as, - ACTIONS(6815), 1, - anon_sym_is, - ACTIONS(7597), 1, + ACTIONS(8158), 1, anon_sym_SLASH, - ACTIONS(7601), 1, - anon_sym_GT_GT, - ACTIONS(7611), 1, - anon_sym_AMP, - ACTIONS(7619), 1, + ACTIONS(8160), 1, anon_sym_CARET, - ACTIONS(7631), 1, - anon_sym_PIPE, - ACTIONS(7635), 1, - anon_sym_AMP_AMP, - ACTIONS(7637), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7639), 1, - anon_sym_QMARK_QMARK, - STATE(2485), 1, + ACTIONS(8164), 1, + anon_sym_AMP, + ACTIONS(8168), 1, + anon_sym_GT_GT, + ACTIONS(8174), 1, + anon_sym_DOT_DOT, + ACTIONS(8182), 1, + anon_sym_is, + STATE(2467), 1, sym_bracketed_argument_list, - STATE(3487), 1, + STATE(3381), 1, sym_argument_list, - ACTIONS(5306), 2, + ACTIONS(5304), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7593), 2, + ACTIONS(5739), 2, + anon_sym_QMARK, + anon_sym_PIPE, + ACTIONS(8150), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(8154), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7595), 2, + ACTIONS(8156), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7599), 2, + ACTIONS(8166), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7609), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(7613), 2, + ACTIONS(8170), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7615), 2, + ACTIONS(8172), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - STATE(5692), 9, + ACTIONS(5737), 4, + anon_sym_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, + STATE(5632), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -692953,7 +687382,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [211669] = 39, + [205857] = 34, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -692974,70 +687403,66 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4075), 1, + ACTIONS(4042), 1, anon_sym_DOT, - ACTIONS(4077), 1, + ACTIONS(4044), 1, anon_sym_DASH_GT, - ACTIONS(5247), 1, + ACTIONS(5257), 1, anon_sym_LPAREN, - ACTIONS(5285), 1, + ACTIONS(5302), 1, anon_sym_BANG, - ACTIONS(5573), 1, + ACTIONS(5549), 1, anon_sym_LBRACK, - ACTIONS(6343), 1, + ACTIONS(6355), 1, anon_sym_switch, - ACTIONS(6357), 1, + ACTIONS(6369), 1, anon_sym_with, - ACTIONS(6783), 1, - anon_sym_QMARK, - ACTIONS(6805), 1, - anon_sym_DOT_DOT, - ACTIONS(6813), 1, + ACTIONS(7195), 1, anon_sym_as, - ACTIONS(6815), 1, - anon_sym_is, - ACTIONS(6841), 1, + ACTIONS(8158), 1, anon_sym_SLASH, - ACTIONS(6843), 1, - anon_sym_CARET, - ACTIONS(6845), 1, - anon_sym_PIPE, - ACTIONS(6847), 1, - anon_sym_AMP, - ACTIONS(6851), 1, + ACTIONS(8168), 1, anon_sym_GT_GT, - ACTIONS(6857), 1, - anon_sym_AMP_AMP, - ACTIONS(6859), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6861), 1, - anon_sym_QMARK_QMARK, - STATE(2485), 1, + ACTIONS(8174), 1, + anon_sym_DOT_DOT, + ACTIONS(8182), 1, + anon_sym_is, + STATE(2467), 1, sym_bracketed_argument_list, - STATE(3259), 1, + STATE(3381), 1, sym_argument_list, - ACTIONS(5287), 2, + ACTIONS(5304), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6833), 2, + ACTIONS(8150), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(6837), 2, + ACTIONS(8154), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6839), 2, + ACTIONS(8156), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(6849), 2, + ACTIONS(8166), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(6853), 2, + ACTIONS(8170), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6855), 2, + ACTIONS(8172), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - STATE(5693), 9, + ACTIONS(5739), 3, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_AMP, + ACTIONS(5737), 5, + anon_sym_COLON, + anon_sym_CARET, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, + STATE(5633), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -693047,7 +687472,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [211802] = 21, + [205981] = 24, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -693068,29 +687493,33 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(3897), 1, - sym_discard, - ACTIONS(6823), 1, + ACTIONS(25), 1, sym__identifier_token, - ACTIONS(8102), 1, + ACTIONS(8310), 1, anon_sym_LPAREN, - STATE(2571), 1, + ACTIONS(8720), 1, + anon_sym_operator, + ACTIONS(8722), 1, + anon_sym_this, + STATE(2168), 1, sym__reserved_identifier, - STATE(3434), 1, - sym__variable_designation, - STATE(3463), 1, - sym_parenthesized_variable_designation, - STATE(3479), 1, + STATE(2170), 1, + sym_generic_name, + STATE(5987), 1, + sym_explicit_interface_specifier, + STATE(6236), 1, sym_identifier, - ACTIONS(3959), 2, - anon_sym_and, - anon_sym_or, - ACTIONS(3957), 4, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_RBRACE, - STATE(5694), 9, + STATE(6504), 1, + sym_tuple_pattern, + STATE(6838), 1, + sym_variable_declarator, + STATE(7353), 1, + sym__name, + STATE(4068), 3, + sym_alias_qualified_name, + sym__simple_name, + sym_qualified_name, + STATE(5634), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -693100,7 +687529,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(6825), 22, + ACTIONS(29), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -693123,7 +687552,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [211899] = 39, + [206085] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -693144,70 +687573,72 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4075), 1, + ACTIONS(4042), 1, anon_sym_DOT, - ACTIONS(4077), 1, + ACTIONS(4044), 1, anon_sym_DASH_GT, - ACTIONS(5247), 1, + ACTIONS(5257), 1, anon_sym_LPAREN, - ACTIONS(5285), 1, + ACTIONS(5302), 1, anon_sym_BANG, - ACTIONS(5573), 1, + ACTIONS(5549), 1, anon_sym_LBRACK, - ACTIONS(6343), 1, + ACTIONS(6355), 1, anon_sym_switch, - ACTIONS(6357), 1, + ACTIONS(6369), 1, anon_sym_with, - ACTIONS(6783), 1, - anon_sym_QMARK, - ACTIONS(6805), 1, - anon_sym_DOT_DOT, - ACTIONS(6813), 1, + ACTIONS(7195), 1, anon_sym_as, - ACTIONS(6815), 1, - anon_sym_is, - ACTIONS(7403), 1, + ACTIONS(8152), 1, + anon_sym_QMARK, + ACTIONS(8158), 1, anon_sym_SLASH, - ACTIONS(7405), 1, + ACTIONS(8160), 1, anon_sym_CARET, - ACTIONS(7407), 1, + ACTIONS(8162), 1, anon_sym_PIPE, - ACTIONS(7409), 1, + ACTIONS(8164), 1, anon_sym_AMP, - ACTIONS(7413), 1, + ACTIONS(8168), 1, anon_sym_GT_GT, - ACTIONS(7421), 1, + ACTIONS(8174), 1, + anon_sym_DOT_DOT, + ACTIONS(8176), 1, anon_sym_AMP_AMP, - ACTIONS(7423), 1, + ACTIONS(8178), 1, anon_sym_PIPE_PIPE, - ACTIONS(7425), 1, + ACTIONS(8180), 1, anon_sym_QMARK_QMARK, - STATE(2485), 1, + ACTIONS(8182), 1, + anon_sym_is, + ACTIONS(8724), 1, + anon_sym_COLON, + STATE(2467), 1, sym_bracketed_argument_list, - STATE(3259), 1, + STATE(3381), 1, sym_argument_list, - ACTIONS(5287), 2, + ACTIONS(5304), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7395), 2, + ACTIONS(8150), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7399), 2, + ACTIONS(8154), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7401), 2, + ACTIONS(8156), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7411), 2, + ACTIONS(8166), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7415), 2, + ACTIONS(8170), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7417), 2, + ACTIONS(8172), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - STATE(5695), 9, + STATE(5635), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -693217,7 +687648,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [212032] = 39, + [206221] = 22, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -693238,70 +687669,36 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4075), 1, + ACTIONS(4042), 1, anon_sym_DOT, - ACTIONS(4077), 1, + ACTIONS(4044), 1, anon_sym_DASH_GT, - ACTIONS(5247), 1, + ACTIONS(5257), 1, anon_sym_LPAREN, - ACTIONS(5285), 1, + ACTIONS(5302), 1, anon_sym_BANG, - ACTIONS(5573), 1, + ACTIONS(5549), 1, anon_sym_LBRACK, - ACTIONS(6343), 1, - anon_sym_switch, - ACTIONS(6357), 1, - anon_sym_with, - ACTIONS(6783), 1, - anon_sym_QMARK, - ACTIONS(6805), 1, + ACTIONS(8248), 1, anon_sym_DOT_DOT, - ACTIONS(6813), 1, - anon_sym_as, - ACTIONS(6815), 1, - anon_sym_is, - ACTIONS(7332), 1, - anon_sym_SLASH, - ACTIONS(7334), 1, - anon_sym_CARET, - ACTIONS(7336), 1, - anon_sym_PIPE, - ACTIONS(7338), 1, - anon_sym_AMP, - ACTIONS(7342), 1, - anon_sym_GT_GT, - ACTIONS(7350), 1, - anon_sym_AMP_AMP, - ACTIONS(7352), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7354), 1, - anon_sym_QMARK_QMARK, - STATE(2485), 1, + STATE(2467), 1, sym_bracketed_argument_list, - STATE(3259), 1, + STATE(3381), 1, sym_argument_list, - ACTIONS(5287), 2, + ACTIONS(5304), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7324), 2, + ACTIONS(1161), 9, anon_sym_LT, anon_sym_GT, - ACTIONS(7328), 2, + anon_sym_QMARK, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7330), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(7340), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - ACTIONS(7344), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(7346), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - STATE(5696), 9, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT_GT, + STATE(5636), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -693311,7 +687708,25 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [212165] = 39, + ACTIONS(1147), 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, + [206321] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -693332,70 +687747,72 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4075), 1, + ACTIONS(4042), 1, anon_sym_DOT, - ACTIONS(4077), 1, + ACTIONS(4044), 1, anon_sym_DASH_GT, - ACTIONS(5247), 1, + ACTIONS(5257), 1, anon_sym_LPAREN, - ACTIONS(5285), 1, + ACTIONS(5302), 1, anon_sym_BANG, - ACTIONS(5573), 1, + ACTIONS(5549), 1, anon_sym_LBRACK, - ACTIONS(6343), 1, + ACTIONS(6355), 1, anon_sym_switch, - ACTIONS(6357), 1, + ACTIONS(6369), 1, anon_sym_with, - ACTIONS(6783), 1, - anon_sym_QMARK, - ACTIONS(6805), 1, - anon_sym_DOT_DOT, - ACTIONS(6813), 1, + ACTIONS(7195), 1, anon_sym_as, - ACTIONS(6815), 1, - anon_sym_is, - ACTIONS(7123), 1, + ACTIONS(8152), 1, + anon_sym_QMARK, + ACTIONS(8158), 1, anon_sym_SLASH, - ACTIONS(7127), 1, - anon_sym_GT_GT, - ACTIONS(7364), 1, + ACTIONS(8160), 1, anon_sym_CARET, - ACTIONS(7366), 1, + ACTIONS(8162), 1, anon_sym_PIPE, - ACTIONS(7368), 1, + ACTIONS(8164), 1, anon_sym_AMP, - ACTIONS(7374), 1, + ACTIONS(8168), 1, + anon_sym_GT_GT, + ACTIONS(8174), 1, + anon_sym_DOT_DOT, + ACTIONS(8176), 1, anon_sym_AMP_AMP, - ACTIONS(7376), 1, + ACTIONS(8178), 1, anon_sym_PIPE_PIPE, - ACTIONS(7378), 1, + ACTIONS(8180), 1, anon_sym_QMARK_QMARK, - STATE(2485), 1, + ACTIONS(8182), 1, + anon_sym_is, + ACTIONS(8726), 1, + anon_sym_COLON, + STATE(2467), 1, sym_bracketed_argument_list, - STATE(3259), 1, + STATE(3381), 1, sym_argument_list, - ACTIONS(5287), 2, + ACTIONS(5304), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7119), 2, + ACTIONS(8150), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(8154), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7121), 2, + ACTIONS(8156), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7125), 2, + ACTIONS(8166), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7360), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(7370), 2, + ACTIONS(8170), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7372), 2, + ACTIONS(8172), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - STATE(5697), 9, + STATE(5637), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -693405,7 +687822,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [212298] = 39, + [206457] = 27, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -693426,70 +687843,45 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4075), 1, + ACTIONS(4042), 1, anon_sym_DOT, - ACTIONS(4077), 1, + ACTIONS(4044), 1, anon_sym_DASH_GT, - ACTIONS(5247), 1, + ACTIONS(5257), 1, anon_sym_LPAREN, - ACTIONS(5285), 1, + ACTIONS(5302), 1, anon_sym_BANG, - ACTIONS(5573), 1, + ACTIONS(5549), 1, anon_sym_LBRACK, - ACTIONS(6343), 1, + ACTIONS(6355), 1, anon_sym_switch, - ACTIONS(6357), 1, + ACTIONS(6369), 1, anon_sym_with, - ACTIONS(6771), 1, + ACTIONS(8158), 1, anon_sym_SLASH, - ACTIONS(6775), 1, - anon_sym_GT_GT, - ACTIONS(6783), 1, - anon_sym_QMARK, - ACTIONS(6805), 1, + ACTIONS(8174), 1, anon_sym_DOT_DOT, - ACTIONS(6813), 1, - anon_sym_as, - ACTIONS(6815), 1, - anon_sym_is, - ACTIONS(6931), 1, - anon_sym_AMP, - ACTIONS(6939), 1, - anon_sym_CARET, - ACTIONS(6941), 1, - anon_sym_PIPE, - ACTIONS(6943), 1, - anon_sym_AMP_AMP, - ACTIONS(6945), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6947), 1, - anon_sym_QMARK_QMARK, - STATE(2485), 1, + STATE(2467), 1, sym_bracketed_argument_list, - STATE(3259), 1, + STATE(3381), 1, sym_argument_list, - ACTIONS(5287), 2, + ACTIONS(5304), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6767), 2, + ACTIONS(8154), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6769), 2, + ACTIONS(8156), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(6773), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - ACTIONS(6929), 2, + ACTIONS(5739), 6, anon_sym_LT, anon_sym_GT, - ACTIONS(6933), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(6935), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - STATE(5698), 9, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT_GT, + STATE(5638), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -693499,7 +687891,21 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [212431] = 39, + ACTIONS(5737), 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, + [206567] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -693520,70 +687926,72 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4075), 1, + ACTIONS(4042), 1, anon_sym_DOT, - ACTIONS(4077), 1, + ACTIONS(4044), 1, anon_sym_DASH_GT, - ACTIONS(5247), 1, + ACTIONS(5257), 1, anon_sym_LPAREN, - ACTIONS(5285), 1, + ACTIONS(5302), 1, anon_sym_BANG, - ACTIONS(5573), 1, + ACTIONS(5549), 1, anon_sym_LBRACK, - ACTIONS(6343), 1, + ACTIONS(6355), 1, anon_sym_switch, - ACTIONS(6357), 1, + ACTIONS(6369), 1, anon_sym_with, - ACTIONS(6783), 1, + ACTIONS(8268), 1, anon_sym_QMARK, - ACTIONS(6805), 1, - anon_sym_DOT_DOT, - ACTIONS(6813), 1, - anon_sym_as, - ACTIONS(6815), 1, - anon_sym_is, - ACTIONS(7091), 1, + ACTIONS(8274), 1, anon_sym_SLASH, - ACTIONS(7093), 1, + ACTIONS(8276), 1, anon_sym_CARET, - ACTIONS(7095), 1, + ACTIONS(8278), 1, anon_sym_PIPE, - ACTIONS(7097), 1, + ACTIONS(8280), 1, anon_sym_AMP, - ACTIONS(7101), 1, + ACTIONS(8284), 1, anon_sym_GT_GT, - ACTIONS(7109), 1, + ACTIONS(8290), 1, + anon_sym_DOT_DOT, + ACTIONS(8292), 1, anon_sym_AMP_AMP, - ACTIONS(7113), 1, + ACTIONS(8294), 1, anon_sym_PIPE_PIPE, - ACTIONS(7115), 1, + ACTIONS(8296), 1, anon_sym_QMARK_QMARK, - STATE(2485), 1, + ACTIONS(8300), 1, + anon_sym_as, + ACTIONS(8302), 1, + anon_sym_is, + ACTIONS(8728), 1, + anon_sym_by, + STATE(2467), 1, sym_bracketed_argument_list, - STATE(3259), 1, + STATE(3381), 1, sym_argument_list, - ACTIONS(5287), 2, + ACTIONS(5304), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7085), 2, + ACTIONS(8266), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7087), 2, + ACTIONS(8270), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7089), 2, + ACTIONS(8272), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7099), 2, + ACTIONS(8282), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7103), 2, + ACTIONS(8286), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7105), 2, + ACTIONS(8288), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - STATE(5699), 9, + STATE(5639), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -693593,7 +688001,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [212564] = 39, + [206703] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -693614,80 +688022,57 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4100), 1, - anon_sym_DOT, - ACTIONS(4102), 1, - anon_sym_DASH_GT, - ACTIONS(5264), 1, - anon_sym_LPAREN, - ACTIONS(5304), 1, - anon_sym_BANG, - ACTIONS(5573), 1, - anon_sym_LBRACK, - ACTIONS(6343), 1, - anon_sym_switch, - ACTIONS(6357), 1, - anon_sym_with, - ACTIONS(6783), 1, + ACTIONS(8204), 1, + anon_sym_into, + STATE(5642), 1, + aux_sym__query_body_repeat2, + STATE(5640), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + ACTIONS(5881), 12, + anon_sym_LT, + anon_sym_GT, + anon_sym_in, anon_sym_QMARK, - ACTIONS(6805), 1, - anon_sym_DOT_DOT, - ACTIONS(6813), 1, - anon_sym_as, - ACTIONS(6815), 1, - anon_sym_is, - ACTIONS(7506), 1, + anon_sym_BANG, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_SLASH, - ACTIONS(7508), 1, - anon_sym_CARET, - ACTIONS(7510), 1, anon_sym_PIPE, - ACTIONS(7512), 1, anon_sym_AMP, - ACTIONS(7516), 1, anon_sym_GT_GT, - ACTIONS(7522), 1, - anon_sym_AMP_AMP, - ACTIONS(7524), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7526), 1, - anon_sym_QMARK_QMARK, - STATE(2485), 1, - sym_bracketed_argument_list, - STATE(3487), 1, - sym_argument_list, - ACTIONS(5306), 2, + anon_sym_DOT, + ACTIONS(5879), 22, + anon_sym_LBRACK, + anon_sym_LPAREN, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7498), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(7502), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(7504), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7514), 2, + anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7518), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7520), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - STATE(5700), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - [212697] = 39, + 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, + [206789] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -693708,80 +688093,57 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4100), 1, - anon_sym_DOT, - ACTIONS(4102), 1, - anon_sym_DASH_GT, - ACTIONS(5264), 1, - anon_sym_LPAREN, - ACTIONS(5304), 1, - anon_sym_BANG, - ACTIONS(5573), 1, - anon_sym_LBRACK, - ACTIONS(6343), 1, - anon_sym_switch, - ACTIONS(6357), 1, - anon_sym_with, - ACTIONS(6783), 1, + ACTIONS(8204), 1, + anon_sym_into, + STATE(5643), 1, + aux_sym__query_body_repeat2, + STATE(5641), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + ACTIONS(5881), 12, + anon_sym_LT, + anon_sym_GT, + anon_sym_in, anon_sym_QMARK, - ACTIONS(6805), 1, - anon_sym_DOT_DOT, - ACTIONS(6813), 1, - anon_sym_as, - ACTIONS(6815), 1, - anon_sym_is, - ACTIONS(7536), 1, + anon_sym_BANG, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_SLASH, - ACTIONS(7540), 1, - anon_sym_GT_GT, - ACTIONS(7550), 1, - anon_sym_AMP, - ACTIONS(7558), 1, - anon_sym_CARET, - ACTIONS(7572), 1, anon_sym_PIPE, - ACTIONS(7574), 1, - anon_sym_AMP_AMP, - ACTIONS(7576), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7578), 1, - anon_sym_QMARK_QMARK, - STATE(2485), 1, - sym_bracketed_argument_list, - STATE(3487), 1, - sym_argument_list, - ACTIONS(5306), 2, + anon_sym_AMP, + anon_sym_GT_GT, + anon_sym_DOT, + ACTIONS(5879), 22, + anon_sym_LBRACK, + anon_sym_LPAREN, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7532), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(7534), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7538), 2, + anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7548), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(7552), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7554), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - STATE(5701), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - [212830] = 39, + 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, + [206875] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -693802,70 +688164,81 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4755), 1, - anon_sym_DASH_GT, - ACTIONS(4808), 1, - anon_sym_DOT, - ACTIONS(5264), 1, - anon_sym_LPAREN, - ACTIONS(5304), 1, - anon_sym_BANG, - ACTIONS(5573), 1, - anon_sym_LBRACK, - ACTIONS(6343), 1, - anon_sym_switch, - ACTIONS(6357), 1, - anon_sym_with, - ACTIONS(6783), 1, + ACTIONS(8730), 1, + anon_sym_into, + STATE(5642), 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(5953), 12, + anon_sym_LT, + anon_sym_GT, + anon_sym_in, anon_sym_QMARK, - ACTIONS(6789), 1, + anon_sym_BANG, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_SLASH, - ACTIONS(6791), 1, - anon_sym_CARET, - ACTIONS(6793), 1, anon_sym_PIPE, - ACTIONS(6795), 1, anon_sym_AMP, - ACTIONS(6799), 1, anon_sym_GT_GT, - ACTIONS(6805), 1, - anon_sym_DOT_DOT, - ACTIONS(6807), 1, - anon_sym_AMP_AMP, - ACTIONS(6809), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6811), 1, - anon_sym_QMARK_QMARK, - ACTIONS(6813), 1, - anon_sym_as, - ACTIONS(6815), 1, - anon_sym_is, - STATE(2485), 1, - sym_bracketed_argument_list, - STATE(3487), 1, - sym_argument_list, - ACTIONS(5306), 2, + anon_sym_DOT, + ACTIONS(5951), 22, + anon_sym_LBRACK, + anon_sym_LPAREN, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6781), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(6785), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(6787), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(6797), 2, + anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(6801), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6803), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - STATE(5702), 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, + [206959] = 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(8204), 1, + anon_sym_into, + STATE(5642), 1, + aux_sym__query_body_repeat2, + STATE(5643), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -693875,7 +688248,43 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [212963] = 18, + ACTIONS(5960), 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(5958), 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, + [207045] = 33, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -693896,22 +688305,65 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4102), 1, + ACTIONS(4042), 1, + anon_sym_DOT, + ACTIONS(4044), 1, anon_sym_DASH_GT, - ACTIONS(6678), 1, + ACTIONS(5257), 1, + anon_sym_LPAREN, + ACTIONS(5302), 1, + anon_sym_BANG, + ACTIONS(5549), 1, anon_sym_LBRACK, - ACTIONS(6680), 1, + ACTIONS(6355), 1, + anon_sym_switch, + ACTIONS(6369), 1, + anon_sym_with, + ACTIONS(7195), 1, + anon_sym_as, + ACTIONS(8158), 1, + anon_sym_SLASH, + ACTIONS(8168), 1, + anon_sym_GT_GT, + ACTIONS(8174), 1, + anon_sym_DOT_DOT, + ACTIONS(8182), 1, + anon_sym_is, + STATE(2467), 1, + sym_bracketed_argument_list, + STATE(3381), 1, + sym_argument_list, + ACTIONS(5304), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(8150), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(8154), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(8156), 2, anon_sym_STAR, - ACTIONS(6716), 1, + anon_sym_PERCENT, + ACTIONS(8166), 2, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + ACTIONS(8172), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(5739), 3, anon_sym_QMARK, - ACTIONS(8775), 1, - anon_sym_DOT, - ACTIONS(4018), 4, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - STATE(5703), 9, + anon_sym_PIPE, + anon_sym_AMP, + ACTIONS(5737), 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(5644), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -693921,34 +688373,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(4016), 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, - [213054] = 17, + [207167] = 22, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -693969,21 +688394,36 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - STATE(2175), 1, - sym__reserved_identifier, - STATE(6692), 1, - sym_identifier, - STATE(7311), 1, - sym_parameter_list, - STATE(7536), 1, - sym__lambda_parameters, - ACTIONS(3951), 5, - anon_sym_COMMA, - anon_sym_RBRACK, + ACTIONS(4042), 1, + anon_sym_DOT, + ACTIONS(4044), 1, + anon_sym_DASH_GT, + ACTIONS(5257), 1, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - STATE(5704), 9, + ACTIONS(5302), 1, + anon_sym_BANG, + ACTIONS(5549), 1, + anon_sym_LBRACK, + ACTIONS(8174), 1, + anon_sym_DOT_DOT, + STATE(2467), 1, + sym_bracketed_argument_list, + STATE(3381), 1, + sym_argument_list, + ACTIONS(5304), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5743), 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(5645), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -693993,34 +688433,25 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(3949), 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, - [213143] = 39, + ACTIONS(5741), 17, + 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_switch, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, + anon_sym_as, + anon_sym_is, + anon_sym_with, + [207267] = 37, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -694041,70 +688472,69 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4719), 1, - anon_sym_DASH_GT, - ACTIONS(4733), 1, + ACTIONS(4042), 1, anon_sym_DOT, - ACTIONS(5264), 1, + ACTIONS(4044), 1, + anon_sym_DASH_GT, + ACTIONS(5257), 1, anon_sym_LPAREN, - ACTIONS(5304), 1, + ACTIONS(5302), 1, anon_sym_BANG, - ACTIONS(5658), 1, + ACTIONS(5549), 1, anon_sym_LBRACK, - ACTIONS(6343), 1, + ACTIONS(5739), 1, + anon_sym_QMARK, + ACTIONS(6355), 1, anon_sym_switch, - ACTIONS(6357), 1, + ACTIONS(6369), 1, anon_sym_with, - ACTIONS(6783), 1, - anon_sym_QMARK, - ACTIONS(6789), 1, + ACTIONS(7195), 1, + anon_sym_as, + ACTIONS(8158), 1, anon_sym_SLASH, - ACTIONS(6791), 1, + ACTIONS(8160), 1, anon_sym_CARET, - ACTIONS(6793), 1, + ACTIONS(8162), 1, anon_sym_PIPE, - ACTIONS(6795), 1, + ACTIONS(8164), 1, anon_sym_AMP, - ACTIONS(6799), 1, + ACTIONS(8168), 1, anon_sym_GT_GT, - ACTIONS(6805), 1, + ACTIONS(8174), 1, anon_sym_DOT_DOT, - ACTIONS(6807), 1, - anon_sym_AMP_AMP, - ACTIONS(6809), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6811), 1, - anon_sym_QMARK_QMARK, - ACTIONS(6813), 1, - anon_sym_as, - ACTIONS(6815), 1, + ACTIONS(8182), 1, anon_sym_is, - STATE(2902), 1, + STATE(2467), 1, sym_bracketed_argument_list, - STATE(3487), 1, + STATE(3381), 1, sym_argument_list, - ACTIONS(5306), 2, + ACTIONS(5304), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6781), 2, + ACTIONS(8150), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(6785), 2, + ACTIONS(8154), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6787), 2, + ACTIONS(8156), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(6797), 2, + ACTIONS(8166), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(6801), 2, + ACTIONS(8170), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6803), 2, + ACTIONS(8172), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - STATE(5705), 9, + ACTIONS(5737), 4, + anon_sym_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, + STATE(5646), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -694114,7 +688544,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [213276] = 23, + [207397] = 38, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -694135,32 +688565,70 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(3881), 1, - anon_sym_LBRACE, - ACTIONS(3897), 1, - sym_discard, - ACTIONS(6823), 1, - sym__identifier_token, - ACTIONS(8102), 1, + ACTIONS(4042), 1, + anon_sym_DOT, + ACTIONS(4044), 1, + anon_sym_DASH_GT, + ACTIONS(5257), 1, anon_sym_LPAREN, - STATE(2571), 1, - sym__reserved_identifier, - STATE(3463), 1, - sym_parenthesized_variable_designation, - STATE(3479), 1, - sym_identifier, - STATE(3496), 1, - sym__variable_designation, - STATE(5734), 1, - sym_property_pattern_clause, - ACTIONS(3913), 2, + ACTIONS(5302), 1, + anon_sym_BANG, + ACTIONS(5549), 1, + anon_sym_LBRACK, + ACTIONS(5739), 1, + anon_sym_QMARK, + ACTIONS(6355), 1, + anon_sym_switch, + ACTIONS(6369), 1, + anon_sym_with, + ACTIONS(7195), 1, + anon_sym_as, + ACTIONS(8158), 1, + anon_sym_SLASH, + ACTIONS(8160), 1, + anon_sym_CARET, + ACTIONS(8162), 1, + anon_sym_PIPE, + ACTIONS(8164), 1, + anon_sym_AMP, + ACTIONS(8168), 1, + anon_sym_GT_GT, + ACTIONS(8174), 1, + anon_sym_DOT_DOT, + ACTIONS(8176), 1, + anon_sym_AMP_AMP, + ACTIONS(8182), 1, + anon_sym_is, + STATE(2467), 1, + sym_bracketed_argument_list, + STATE(3381), 1, + sym_argument_list, + ACTIONS(5304), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(8150), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(8154), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(8156), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(8166), 2, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + ACTIONS(8170), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(8172), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(5737), 3, anon_sym_COLON, - anon_sym_EQ_GT, - ACTIONS(3915), 3, - anon_sym_when, - anon_sym_and, - anon_sym_or, - STATE(5706), 9, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, + STATE(5647), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -694170,29 +688638,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(6825), 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, - [213377] = 18, + [207529] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -694213,22 +688659,72 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4102), 1, + ACTIONS(4042), 1, + anon_sym_DOT, + ACTIONS(4044), 1, anon_sym_DASH_GT, - ACTIONS(6678), 1, + ACTIONS(5257), 1, + anon_sym_LPAREN, + ACTIONS(5302), 1, + anon_sym_BANG, + ACTIONS(5549), 1, anon_sym_LBRACK, - ACTIONS(6680), 1, - anon_sym_STAR, - ACTIONS(6716), 1, + ACTIONS(5737), 1, + anon_sym_COLON, + ACTIONS(5739), 1, anon_sym_QMARK, - ACTIONS(8777), 1, - anon_sym_DOT, - ACTIONS(4018), 4, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_LBRACE, - STATE(5707), 9, + ACTIONS(6355), 1, + anon_sym_switch, + ACTIONS(6369), 1, + anon_sym_with, + ACTIONS(7195), 1, + anon_sym_as, + ACTIONS(8158), 1, + anon_sym_SLASH, + ACTIONS(8160), 1, + anon_sym_CARET, + ACTIONS(8162), 1, + anon_sym_PIPE, + ACTIONS(8164), 1, + anon_sym_AMP, + ACTIONS(8168), 1, + anon_sym_GT_GT, + ACTIONS(8174), 1, + anon_sym_DOT_DOT, + ACTIONS(8176), 1, + anon_sym_AMP_AMP, + ACTIONS(8178), 1, + anon_sym_PIPE_PIPE, + ACTIONS(8180), 1, + anon_sym_QMARK_QMARK, + ACTIONS(8182), 1, + anon_sym_is, + STATE(2467), 1, + sym_bracketed_argument_list, + STATE(3381), 1, + sym_argument_list, + ACTIONS(5304), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(8150), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(8154), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(8156), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(8166), 2, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + ACTIONS(8170), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(8172), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + STATE(5648), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -694238,34 +688734,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(4016), 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, - [213468] = 39, + [207665] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -694286,70 +688755,72 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4100), 1, + ACTIONS(4042), 1, anon_sym_DOT, - ACTIONS(4102), 1, + ACTIONS(4044), 1, anon_sym_DASH_GT, - ACTIONS(5264), 1, + ACTIONS(5257), 1, anon_sym_LPAREN, - ACTIONS(5304), 1, + ACTIONS(5302), 1, anon_sym_BANG, - ACTIONS(5573), 1, + ACTIONS(5549), 1, anon_sym_LBRACK, - ACTIONS(6343), 1, + ACTIONS(5709), 1, + anon_sym_by, + ACTIONS(6355), 1, anon_sym_switch, - ACTIONS(6357), 1, + ACTIONS(6369), 1, anon_sym_with, - ACTIONS(6593), 1, + ACTIONS(8268), 1, + anon_sym_QMARK, + ACTIONS(8274), 1, anon_sym_SLASH, - ACTIONS(6595), 1, + ACTIONS(8276), 1, anon_sym_CARET, - ACTIONS(6597), 1, + ACTIONS(8278), 1, anon_sym_PIPE, - ACTIONS(6599), 1, + ACTIONS(8280), 1, anon_sym_AMP, - ACTIONS(6603), 1, + ACTIONS(8284), 1, anon_sym_GT_GT, - ACTIONS(6611), 1, + ACTIONS(8290), 1, + anon_sym_DOT_DOT, + ACTIONS(8292), 1, anon_sym_AMP_AMP, - ACTIONS(6613), 1, + ACTIONS(8294), 1, anon_sym_PIPE_PIPE, - ACTIONS(6615), 1, + ACTIONS(8296), 1, anon_sym_QMARK_QMARK, - ACTIONS(6783), 1, - anon_sym_QMARK, - ACTIONS(6805), 1, - anon_sym_DOT_DOT, - ACTIONS(6813), 1, + ACTIONS(8300), 1, anon_sym_as, - ACTIONS(6815), 1, + ACTIONS(8302), 1, anon_sym_is, - STATE(2485), 1, + STATE(2467), 1, sym_bracketed_argument_list, - STATE(3487), 1, + STATE(3381), 1, sym_argument_list, - ACTIONS(5306), 2, + ACTIONS(5304), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6585), 2, + ACTIONS(8266), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(6589), 2, + ACTIONS(8270), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6591), 2, + ACTIONS(8272), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(6601), 2, + ACTIONS(8282), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(6605), 2, + ACTIONS(8286), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6607), 2, + ACTIONS(8288), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - STATE(5708), 9, + STATE(5649), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -694359,7 +688830,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [213601] = 18, + [207801] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -694380,22 +688851,72 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4102), 1, + ACTIONS(4042), 1, + anon_sym_DOT, + ACTIONS(4044), 1, anon_sym_DASH_GT, - ACTIONS(6678), 1, + ACTIONS(5257), 1, + anon_sym_LPAREN, + ACTIONS(5302), 1, + anon_sym_BANG, + ACTIONS(5549), 1, anon_sym_LBRACK, - ACTIONS(6680), 1, - anon_sym_STAR, - ACTIONS(6716), 1, + ACTIONS(6355), 1, + anon_sym_switch, + ACTIONS(6369), 1, + anon_sym_with, + ACTIONS(6811), 1, + anon_sym_as, + ACTIONS(7231), 1, anon_sym_QMARK, - ACTIONS(8779), 1, - anon_sym_DOT, - ACTIONS(4018), 4, - anon_sym_COMMA, - anon_sym_LPAREN, + ACTIONS(7237), 1, + anon_sym_SLASH, + ACTIONS(7239), 1, + anon_sym_CARET, + ACTIONS(7241), 1, + anon_sym_PIPE, + ACTIONS(7243), 1, + anon_sym_AMP, + ACTIONS(7247), 1, + anon_sym_GT_GT, + ACTIONS(7253), 1, + anon_sym_DOT_DOT, + ACTIONS(7255), 1, + anon_sym_AMP_AMP, + ACTIONS(7257), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7259), 1, + anon_sym_QMARK_QMARK, + ACTIONS(7261), 1, + anon_sym_is, + ACTIONS(8733), 1, anon_sym_RPAREN, - anon_sym_LBRACE, - STATE(5709), 9, + STATE(2467), 1, + sym_bracketed_argument_list, + STATE(3381), 1, + sym_argument_list, + ACTIONS(5304), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7229), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(7233), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(7235), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(7245), 2, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + ACTIONS(7249), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(7251), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + STATE(5650), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -694405,34 +688926,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(4016), 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, - [213692] = 39, + [207937] = 39, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -694453,70 +688947,70 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4100), 1, + ACTIONS(4092), 1, anon_sym_DOT, - ACTIONS(4102), 1, + ACTIONS(4094), 1, anon_sym_DASH_GT, - ACTIONS(5264), 1, + ACTIONS(5227), 1, anon_sym_LPAREN, - ACTIONS(5304), 1, + ACTIONS(5238), 1, anon_sym_BANG, - ACTIONS(5573), 1, + ACTIONS(5549), 1, anon_sym_LBRACK, - ACTIONS(6343), 1, + ACTIONS(6355), 1, anon_sym_switch, - ACTIONS(6357), 1, + ACTIONS(6369), 1, anon_sym_with, - ACTIONS(6783), 1, + ACTIONS(6781), 1, anon_sym_QMARK, - ACTIONS(6805), 1, + ACTIONS(6803), 1, anon_sym_DOT_DOT, - ACTIONS(6813), 1, + ACTIONS(6811), 1, anon_sym_as, - ACTIONS(6815), 1, + ACTIONS(6813), 1, anon_sym_is, - ACTIONS(7468), 1, + ACTIONS(6905), 1, anon_sym_SLASH, - ACTIONS(7470), 1, + ACTIONS(6907), 1, anon_sym_CARET, - ACTIONS(7472), 1, + ACTIONS(6909), 1, anon_sym_PIPE, - ACTIONS(7474), 1, + ACTIONS(6911), 1, anon_sym_AMP, - ACTIONS(7478), 1, + ACTIONS(6915), 1, anon_sym_GT_GT, - ACTIONS(7486), 1, + ACTIONS(6921), 1, anon_sym_AMP_AMP, - ACTIONS(7488), 1, + ACTIONS(6923), 1, anon_sym_PIPE_PIPE, - ACTIONS(7490), 1, + ACTIONS(6925), 1, anon_sym_QMARK_QMARK, - STATE(2485), 1, + STATE(2467), 1, sym_bracketed_argument_list, - STATE(3487), 1, + STATE(3348), 1, sym_argument_list, - ACTIONS(5306), 2, + ACTIONS(5240), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7460), 2, + ACTIONS(6897), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7464), 2, + ACTIONS(6901), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7466), 2, + ACTIONS(6903), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7476), 2, + ACTIONS(6913), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7480), 2, + ACTIONS(6917), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7482), 2, + ACTIONS(6919), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - STATE(5710), 9, + STATE(5651), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -694526,7 +689020,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [213825] = 18, + [208070] = 39, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -694547,58 +689041,80 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4102), 1, + ACTIONS(4042), 1, + anon_sym_DOT, + ACTIONS(4044), 1, anon_sym_DASH_GT, - ACTIONS(6678), 1, + ACTIONS(5257), 1, + anon_sym_LPAREN, + ACTIONS(5302), 1, + anon_sym_BANG, + ACTIONS(5549), 1, anon_sym_LBRACK, - ACTIONS(6680), 1, - anon_sym_STAR, - ACTIONS(6716), 1, + ACTIONS(6355), 1, + anon_sym_switch, + ACTIONS(6369), 1, + anon_sym_with, + ACTIONS(6781), 1, anon_sym_QMARK, - ACTIONS(8781), 1, - anon_sym_DOT, - ACTIONS(4018), 3, - anon_sym_COLON, - anon_sym_LPAREN, - anon_sym_LBRACE, - STATE(5711), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - ACTIONS(4016), 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, - [213915] = 22, + ACTIONS(6803), 1, + anon_sym_DOT_DOT, + ACTIONS(6811), 1, + anon_sym_as, + ACTIONS(6813), 1, + anon_sym_is, + ACTIONS(7548), 1, + anon_sym_SLASH, + ACTIONS(7552), 1, + anon_sym_GT_GT, + ACTIONS(7598), 1, + anon_sym_AMP, + ACTIONS(7608), 1, + anon_sym_CARET, + ACTIONS(7610), 1, + anon_sym_PIPE, + ACTIONS(7614), 1, + anon_sym_AMP_AMP, + ACTIONS(7616), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7618), 1, + anon_sym_QMARK_QMARK, + STATE(2467), 1, + sym_bracketed_argument_list, + STATE(3381), 1, + sym_argument_list, + ACTIONS(5304), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7544), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(7546), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(7550), 2, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + ACTIONS(7596), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(7600), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(7602), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + STATE(5652), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + [208203] = 39, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -694619,29 +689135,70 @@ 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(8336), 1, + ACTIONS(4042), 1, + anon_sym_DOT, + ACTIONS(4044), 1, + anon_sym_DASH_GT, + ACTIONS(5257), 1, anon_sym_LPAREN, - STATE(2175), 1, - sym__reserved_identifier, - STATE(2181), 1, - sym_generic_name, - STATE(6069), 1, - sym_explicit_interface_specifier, - STATE(6274), 1, - sym_identifier, - STATE(6521), 1, - sym_tuple_pattern, - STATE(6944), 1, - sym_variable_declarator, - STATE(7441), 1, - sym__name, - STATE(4096), 3, - sym_alias_qualified_name, - sym__simple_name, - sym_qualified_name, - STATE(5712), 9, + ACTIONS(5302), 1, + anon_sym_BANG, + ACTIONS(5549), 1, + anon_sym_LBRACK, + ACTIONS(6355), 1, + anon_sym_switch, + ACTIONS(6369), 1, + anon_sym_with, + ACTIONS(6781), 1, + anon_sym_QMARK, + ACTIONS(6803), 1, + anon_sym_DOT_DOT, + ACTIONS(6811), 1, + anon_sym_as, + ACTIONS(6813), 1, + anon_sym_is, + ACTIONS(7418), 1, + anon_sym_SLASH, + ACTIONS(7420), 1, + anon_sym_CARET, + ACTIONS(7422), 1, + anon_sym_PIPE, + ACTIONS(7424), 1, + anon_sym_AMP, + ACTIONS(7428), 1, + anon_sym_GT_GT, + ACTIONS(7436), 1, + anon_sym_AMP_AMP, + ACTIONS(7438), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7440), 1, + anon_sym_QMARK_QMARK, + STATE(2467), 1, + sym_bracketed_argument_list, + STATE(3381), 1, + sym_argument_list, + ACTIONS(5304), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7410), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(7414), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(7416), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(7426), 2, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + ACTIONS(7430), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(7432), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + STATE(5653), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -694651,30 +689208,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, - [214013] = 18, + [208336] = 39, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -694695,22 +689229,70 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(3669), 1, - anon_sym_COLON_COLON, - ACTIONS(6311), 1, - anon_sym_LT, - ACTIONS(8783), 1, + ACTIONS(4042), 1, + anon_sym_DOT, + ACTIONS(4044), 1, + anon_sym_DASH_GT, + ACTIONS(5257), 1, anon_sym_LPAREN, - STATE(4063), 1, - sym_type_argument_list, - STATE(6533), 1, - sym_parameter_list, - ACTIONS(3662), 4, + ACTIONS(5302), 1, + anon_sym_BANG, + ACTIONS(5549), 1, anon_sym_LBRACK, + ACTIONS(6355), 1, + anon_sym_switch, + ACTIONS(6369), 1, + anon_sym_with, + ACTIONS(6781), 1, anon_sym_QMARK, + ACTIONS(6803), 1, + anon_sym_DOT_DOT, + ACTIONS(6811), 1, + anon_sym_as, + ACTIONS(6813), 1, + anon_sym_is, + ACTIONS(7001), 1, + anon_sym_SLASH, + ACTIONS(7003), 1, + anon_sym_CARET, + ACTIONS(7005), 1, + anon_sym_PIPE, + ACTIONS(7007), 1, + anon_sym_AMP, + ACTIONS(7011), 1, + anon_sym_GT_GT, + ACTIONS(7019), 1, + anon_sym_AMP_AMP, + ACTIONS(7021), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7023), 1, + anon_sym_QMARK_QMARK, + STATE(2467), 1, + sym_bracketed_argument_list, + STATE(3381), 1, + sym_argument_list, + ACTIONS(5304), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6993), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(6997), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6999), 2, anon_sym_STAR, - anon_sym_DOT, - STATE(5713), 9, + anon_sym_PERCENT, + ACTIONS(7009), 2, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + ACTIONS(7013), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(7015), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + STATE(5654), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -694720,33 +689302,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(3660), 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, - 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, - [214103] = 21, + [208469] = 39, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -694767,28 +689323,70 @@ 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(2175), 1, - sym__reserved_identifier, - STATE(2181), 1, - sym_generic_name, - STATE(3537), 1, - aux_sym_conversion_operator_declaration_repeat1, - STATE(4373), 1, - sym_identifier, - STATE(5884), 1, - sym_explicit_interface_specifier, - STATE(7600), 1, - sym__name, - ACTIONS(5605), 2, - anon_sym_operator, - anon_sym_checked, - STATE(4096), 3, - sym_alias_qualified_name, - sym__simple_name, - sym_qualified_name, - STATE(5714), 9, + ACTIONS(4042), 1, + anon_sym_DOT, + ACTIONS(4044), 1, + anon_sym_DASH_GT, + ACTIONS(5257), 1, + anon_sym_LPAREN, + ACTIONS(5302), 1, + anon_sym_BANG, + ACTIONS(5549), 1, + anon_sym_LBRACK, + ACTIONS(6355), 1, + anon_sym_switch, + ACTIONS(6369), 1, + anon_sym_with, + ACTIONS(6781), 1, + anon_sym_QMARK, + ACTIONS(6803), 1, + anon_sym_DOT_DOT, + ACTIONS(6811), 1, + anon_sym_as, + ACTIONS(6813), 1, + anon_sym_is, + ACTIONS(7716), 1, + anon_sym_SLASH, + ACTIONS(7718), 1, + anon_sym_CARET, + ACTIONS(7720), 1, + anon_sym_PIPE, + ACTIONS(7722), 1, + anon_sym_AMP, + ACTIONS(7726), 1, + anon_sym_GT_GT, + ACTIONS(7734), 1, + anon_sym_AMP_AMP, + ACTIONS(7736), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7738), 1, + anon_sym_QMARK_QMARK, + STATE(2467), 1, + sym_bracketed_argument_list, + STATE(3381), 1, + sym_argument_list, + ACTIONS(5304), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7708), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(7712), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(7714), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(7724), 2, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + ACTIONS(7728), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(7730), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + STATE(5655), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -694798,30 +689396,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, - [214199] = 18, + [208602] = 39, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -694842,22 +689417,70 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(3669), 1, - anon_sym_COLON_COLON, - ACTIONS(6311), 1, - anon_sym_LT, - ACTIONS(8783), 1, + ACTIONS(4042), 1, + anon_sym_DOT, + ACTIONS(4044), 1, + anon_sym_DASH_GT, + ACTIONS(5257), 1, anon_sym_LPAREN, - STATE(4063), 1, - sym_type_argument_list, - STATE(6582), 1, - sym_parameter_list, - ACTIONS(3662), 4, + ACTIONS(5302), 1, + anon_sym_BANG, + ACTIONS(5549), 1, anon_sym_LBRACK, + ACTIONS(6355), 1, + anon_sym_switch, + ACTIONS(6369), 1, + anon_sym_with, + ACTIONS(6781), 1, anon_sym_QMARK, + ACTIONS(6803), 1, + anon_sym_DOT_DOT, + ACTIONS(6811), 1, + anon_sym_as, + ACTIONS(6813), 1, + anon_sym_is, + ACTIONS(7131), 1, + anon_sym_SLASH, + ACTIONS(7135), 1, + anon_sym_GT_GT, + ACTIONS(7141), 1, + anon_sym_AMP, + ACTIONS(7149), 1, + anon_sym_CARET, + ACTIONS(7151), 1, + anon_sym_PIPE, + ACTIONS(7153), 1, + anon_sym_AMP_AMP, + ACTIONS(7155), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7157), 1, + anon_sym_QMARK_QMARK, + STATE(2467), 1, + sym_bracketed_argument_list, + STATE(3381), 1, + sym_argument_list, + ACTIONS(5304), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7127), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(7129), 2, anon_sym_STAR, - anon_sym_DOT, - STATE(5715), 9, + anon_sym_PERCENT, + ACTIONS(7133), 2, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + ACTIONS(7139), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(7143), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(7145), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + STATE(5656), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -694867,33 +689490,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(3660), 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, - 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, - [214289] = 22, + [208735] = 39, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -694914,29 +689511,70 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(2967), 1, - sym__identifier_token, - ACTIONS(5024), 1, + ACTIONS(4042), 1, + anon_sym_DOT, + ACTIONS(4044), 1, + anon_sym_DASH_GT, + ACTIONS(5257), 1, + anon_sym_LPAREN, + ACTIONS(5302), 1, + anon_sym_BANG, + ACTIONS(5549), 1, anon_sym_LBRACK, - ACTIONS(5040), 1, - aux_sym_preproc_if_token1, - STATE(3691), 1, - sym__reserved_identifier, - STATE(5756), 1, - aux_sym__class_declaration_initializer_repeat1, - STATE(6051), 1, - sym__attribute_list, - STATE(7160), 1, - sym_type_parameter, - STATE(7230), 1, - sym_identifier, - ACTIONS(5034), 2, - anon_sym_in, - anon_sym_out, - STATE(5934), 2, - sym_attribute_list, - sym_preproc_if_in_attribute_list, - STATE(5716), 9, + ACTIONS(6355), 1, + anon_sym_switch, + ACTIONS(6369), 1, + anon_sym_with, + ACTIONS(6657), 1, + anon_sym_SLASH, + ACTIONS(6661), 1, + anon_sym_GT_GT, + ACTIONS(6665), 1, + anon_sym_AMP, + ACTIONS(6673), 1, + anon_sym_CARET, + ACTIONS(6675), 1, + anon_sym_PIPE, + ACTIONS(6677), 1, + anon_sym_AMP_AMP, + ACTIONS(6679), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6681), 1, + anon_sym_QMARK_QMARK, + ACTIONS(6781), 1, + anon_sym_QMARK, + ACTIONS(6803), 1, + anon_sym_DOT_DOT, + ACTIONS(6811), 1, + anon_sym_as, + ACTIONS(6813), 1, + anon_sym_is, + STATE(2467), 1, + sym_bracketed_argument_list, + STATE(3381), 1, + sym_argument_list, + ACTIONS(5304), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6653), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6655), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(6659), 2, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + ACTIONS(6663), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(6667), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6669), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + STATE(5657), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -694946,30 +689584,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(2971), 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, - [214387] = 18, + [208868] = 39, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -694990,21 +689605,70 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4102), 1, + ACTIONS(4092), 1, + anon_sym_DOT, + ACTIONS(4094), 1, anon_sym_DASH_GT, - ACTIONS(6678), 1, + ACTIONS(5227), 1, + anon_sym_LPAREN, + ACTIONS(5238), 1, + anon_sym_BANG, + ACTIONS(5549), 1, anon_sym_LBRACK, - ACTIONS(6680), 1, - anon_sym_STAR, - ACTIONS(6716), 1, + ACTIONS(6355), 1, + anon_sym_switch, + ACTIONS(6369), 1, + anon_sym_with, + ACTIONS(6781), 1, anon_sym_QMARK, - ACTIONS(8786), 1, - anon_sym_DOT, - ACTIONS(4018), 3, - anon_sym_COLON, - anon_sym_LPAREN, - anon_sym_LBRACE, - STATE(5717), 9, + ACTIONS(6803), 1, + anon_sym_DOT_DOT, + ACTIONS(6811), 1, + anon_sym_as, + ACTIONS(6813), 1, + anon_sym_is, + ACTIONS(7269), 1, + anon_sym_SLASH, + ACTIONS(7273), 1, + anon_sym_GT_GT, + ACTIONS(7294), 1, + anon_sym_CARET, + ACTIONS(7296), 1, + anon_sym_PIPE, + ACTIONS(7298), 1, + anon_sym_AMP, + ACTIONS(7304), 1, + anon_sym_AMP_AMP, + ACTIONS(7306), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7308), 1, + anon_sym_QMARK_QMARK, + STATE(2467), 1, + sym_bracketed_argument_list, + STATE(3348), 1, + sym_argument_list, + ACTIONS(5240), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7265), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(7267), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(7271), 2, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + ACTIONS(7290), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(7300), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(7302), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + STATE(5658), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -695014,34 +689678,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(4016), 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, - [214477] = 18, + [209001] = 39, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -695062,24 +689699,70 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(3669), 1, - anon_sym_COLON_COLON, - ACTIONS(6311), 1, - anon_sym_LT, - ACTIONS(8788), 1, - anon_sym_EQ, - STATE(4063), 1, - sym_type_argument_list, - ACTIONS(8761), 3, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_RPAREN, - ACTIONS(3662), 4, + ACTIONS(4697), 1, + anon_sym_DOT, + ACTIONS(4699), 1, + anon_sym_DASH_GT, + ACTIONS(5549), 1, anon_sym_LBRACK, + ACTIONS(5591), 1, + anon_sym_LPAREN, + ACTIONS(5658), 1, + anon_sym_BANG, + ACTIONS(5901), 1, + anon_sym_SLASH, + ACTIONS(5903), 1, + anon_sym_CARET, + ACTIONS(5905), 1, + anon_sym_AMP, + ACTIONS(5909), 1, + anon_sym_GT_GT, + ACTIONS(5923), 1, + anon_sym_PIPE, + ACTIONS(5925), 1, + anon_sym_AMP_AMP, + ACTIONS(5927), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5929), 1, + anon_sym_QMARK_QMARK, + ACTIONS(6355), 1, + anon_sym_switch, + ACTIONS(6369), 1, + anon_sym_with, + ACTIONS(6781), 1, anon_sym_QMARK, + ACTIONS(6803), 1, + anon_sym_DOT_DOT, + ACTIONS(6811), 1, + anon_sym_as, + ACTIONS(6813), 1, + anon_sym_is, + STATE(2467), 1, + sym_bracketed_argument_list, + STATE(3771), 1, + sym_argument_list, + ACTIONS(5660), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5895), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5897), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5899), 2, anon_sym_STAR, - anon_sym_DOT, - STATE(5718), 9, + anon_sym_PERCENT, + ACTIONS(5907), 2, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + ACTIONS(5911), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5913), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + STATE(5659), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -695089,31 +689772,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(3660), 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, - [214567] = 14, + [209134] = 39, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -695134,54 +689793,80 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8790), 1, - anon_sym_SEMI, - STATE(5719), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - ACTIONS(5056), 11, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, + ACTIONS(4042), 1, + anon_sym_DOT, + ACTIONS(4044), 1, + anon_sym_DASH_GT, + ACTIONS(5257), 1, + anon_sym_LPAREN, + ACTIONS(5302), 1, anon_sym_BANG, - anon_sym_PLUS, - anon_sym_DASH, + ACTIONS(5549), 1, + anon_sym_LBRACK, + ACTIONS(6355), 1, + anon_sym_switch, + ACTIONS(6369), 1, + anon_sym_with, + ACTIONS(6781), 1, + anon_sym_QMARK, + ACTIONS(6787), 1, anon_sym_SLASH, + ACTIONS(6789), 1, + anon_sym_CARET, + ACTIONS(6791), 1, anon_sym_PIPE, + ACTIONS(6793), 1, anon_sym_AMP, + ACTIONS(6797), 1, anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(5054), 22, - anon_sym_LBRACK, - anon_sym_LPAREN, + ACTIONS(6803), 1, + anon_sym_DOT_DOT, + ACTIONS(6805), 1, + anon_sym_AMP_AMP, + ACTIONS(6807), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6809), 1, + anon_sym_QMARK_QMARK, + ACTIONS(6811), 1, + anon_sym_as, + ACTIONS(6813), 1, + anon_sym_is, + STATE(2467), 1, + sym_bracketed_argument_list, + STATE(3381), 1, + sym_argument_list, + ACTIONS(5304), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + ACTIONS(6779), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(6783), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6785), 2, anon_sym_STAR, anon_sym_PERCENT, - anon_sym_CARET, + ACTIONS(6795), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, + ACTIONS(6799), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + ACTIONS(6801), 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, - [214649] = 22, + 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, + [209267] = 39, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -695202,29 +689887,70 @@ 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(8336), 1, + ACTIONS(4697), 1, + anon_sym_DOT, + ACTIONS(4699), 1, + anon_sym_DASH_GT, + ACTIONS(5549), 1, + anon_sym_LBRACK, + ACTIONS(5591), 1, anon_sym_LPAREN, - STATE(2175), 1, - sym__reserved_identifier, - STATE(2181), 1, - sym_generic_name, - STATE(6131), 1, - sym_explicit_interface_specifier, - STATE(6270), 1, - sym_identifier, - STATE(6521), 1, - sym_tuple_pattern, - STATE(6944), 1, - sym_variable_declarator, - STATE(7441), 1, - sym__name, - STATE(4096), 3, - sym_alias_qualified_name, - sym__simple_name, - sym_qualified_name, - STATE(5720), 9, + ACTIONS(5658), 1, + anon_sym_BANG, + ACTIONS(5666), 1, + anon_sym_SLASH, + ACTIONS(5668), 1, + anon_sym_CARET, + ACTIONS(5670), 1, + anon_sym_PIPE, + ACTIONS(5672), 1, + anon_sym_AMP, + ACTIONS(5676), 1, + anon_sym_GT_GT, + ACTIONS(5688), 1, + anon_sym_AMP_AMP, + ACTIONS(5690), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5692), 1, + anon_sym_QMARK_QMARK, + ACTIONS(6355), 1, + anon_sym_switch, + ACTIONS(6369), 1, + anon_sym_with, + ACTIONS(6781), 1, + anon_sym_QMARK, + ACTIONS(6803), 1, + anon_sym_DOT_DOT, + ACTIONS(6811), 1, + anon_sym_as, + ACTIONS(6813), 1, + anon_sym_is, + STATE(2467), 1, + sym_bracketed_argument_list, + STATE(3771), 1, + sym_argument_list, + ACTIONS(5654), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5660), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5662), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5664), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(5674), 2, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + ACTIONS(5678), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5680), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + STATE(5661), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -695234,30 +689960,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, - [214747] = 20, + [209400] = 39, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -695278,26 +689981,70 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(3669), 1, - anon_sym_COLON_COLON, - ACTIONS(6311), 1, - anon_sym_LT, - ACTIONS(8792), 1, - anon_sym_EQ, - ACTIONS(8794), 1, - anon_sym_COMMA, - ACTIONS(8797), 1, - anon_sym_RPAREN, - STATE(4063), 1, - sym_type_argument_list, - STATE(6811), 1, - aux_sym_tuple_pattern_repeat1, - ACTIONS(3662), 4, + ACTIONS(4792), 1, + anon_sym_DOT, + ACTIONS(4794), 1, + anon_sym_DASH_GT, + ACTIONS(4819), 1, anon_sym_LBRACK, + ACTIONS(5257), 1, + anon_sym_LPAREN, + ACTIONS(5302), 1, + anon_sym_BANG, + ACTIONS(6355), 1, + anon_sym_switch, + ACTIONS(6369), 1, + anon_sym_with, + ACTIONS(6781), 1, anon_sym_QMARK, + ACTIONS(6787), 1, + anon_sym_SLASH, + ACTIONS(6789), 1, + anon_sym_CARET, + ACTIONS(6791), 1, + anon_sym_PIPE, + ACTIONS(6793), 1, + anon_sym_AMP, + ACTIONS(6797), 1, + anon_sym_GT_GT, + ACTIONS(6803), 1, + anon_sym_DOT_DOT, + ACTIONS(6805), 1, + anon_sym_AMP_AMP, + ACTIONS(6807), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6809), 1, + anon_sym_QMARK_QMARK, + ACTIONS(6811), 1, + anon_sym_as, + ACTIONS(6813), 1, + anon_sym_is, + STATE(2419), 1, + sym_bracketed_argument_list, + STATE(3381), 1, + sym_argument_list, + ACTIONS(5304), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6779), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(6783), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6785), 2, anon_sym_STAR, - anon_sym_DOT, - STATE(5721), 9, + anon_sym_PERCENT, + ACTIONS(6795), 2, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + ACTIONS(6799), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6801), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + STATE(5662), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -695307,31 +690054,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(3660), 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, - [214841] = 22, + [209533] = 18, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -695352,29 +690075,22 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(2967), 1, - sym__identifier_token, - ACTIONS(5024), 1, + ACTIONS(4044), 1, + anon_sym_DASH_GT, + ACTIONS(6601), 1, anon_sym_LBRACK, - ACTIONS(5040), 1, - aux_sym_preproc_if_token1, - STATE(3691), 1, - sym__reserved_identifier, - STATE(5756), 1, - aux_sym__class_declaration_initializer_repeat1, - STATE(6051), 1, - sym__attribute_list, - STATE(6980), 1, - sym_type_parameter, - STATE(7230), 1, - sym_identifier, - ACTIONS(5034), 2, - anon_sym_in, - anon_sym_out, - STATE(5934), 2, - sym_attribute_list, - sym_preproc_if_in_attribute_list, - STATE(5722), 9, + ACTIONS(6603), 1, + anon_sym_STAR, + ACTIONS(6705), 1, + anon_sym_QMARK, + ACTIONS(8735), 1, + anon_sym_DOT, + ACTIONS(3963), 4, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + STATE(5663), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -695384,7 +690100,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(2971), 22, + ACTIONS(3961), 26, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -695395,6 +690111,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, @@ -695407,7 +690126,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [214939] = 18, + sym__identifier_token, + [209624] = 39, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -695428,21 +690148,70 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4102), 1, + ACTIONS(4042), 1, + anon_sym_DOT, + ACTIONS(4044), 1, anon_sym_DASH_GT, - ACTIONS(6678), 1, + ACTIONS(5257), 1, + anon_sym_LPAREN, + ACTIONS(5302), 1, + anon_sym_BANG, + ACTIONS(5549), 1, anon_sym_LBRACK, - ACTIONS(6680), 1, - anon_sym_STAR, - ACTIONS(6716), 1, + ACTIONS(6355), 1, + anon_sym_switch, + ACTIONS(6369), 1, + anon_sym_with, + ACTIONS(6781), 1, anon_sym_QMARK, - ACTIONS(8800), 1, - anon_sym_DOT, - ACTIONS(4018), 3, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_EQ_GT, - STATE(5723), 9, + ACTIONS(6803), 1, + anon_sym_DOT_DOT, + ACTIONS(6811), 1, + anon_sym_as, + ACTIONS(6813), 1, + anon_sym_is, + ACTIONS(7496), 1, + anon_sym_SLASH, + ACTIONS(7500), 1, + anon_sym_GT_GT, + ACTIONS(7506), 1, + anon_sym_AMP, + ACTIONS(7518), 1, + anon_sym_CARET, + ACTIONS(7524), 1, + anon_sym_PIPE, + ACTIONS(7526), 1, + anon_sym_AMP_AMP, + ACTIONS(7528), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7530), 1, + anon_sym_QMARK_QMARK, + STATE(2467), 1, + sym_bracketed_argument_list, + STATE(3381), 1, + sym_argument_list, + ACTIONS(5304), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7492), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(7494), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(7498), 2, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + ACTIONS(7504), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(7508), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(7510), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + STATE(5664), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -695452,34 +690221,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(4016), 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, - [215029] = 21, + [209757] = 39, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -695500,61 +690242,80 @@ 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(2175), 1, - sym__reserved_identifier, - STATE(2181), 1, - sym_generic_name, - STATE(3532), 1, - aux_sym_conversion_operator_declaration_repeat1, - STATE(4373), 1, - sym_identifier, - STATE(5884), 1, - sym_explicit_interface_specifier, - STATE(7600), 1, - sym__name, - ACTIONS(5605), 2, - anon_sym_operator, - anon_sym_checked, - STATE(4096), 3, - sym_alias_qualified_name, - sym__simple_name, - sym_qualified_name, - STATE(5724), 9, + ACTIONS(4042), 1, + anon_sym_DOT, + ACTIONS(4044), 1, + anon_sym_DASH_GT, + ACTIONS(5257), 1, + anon_sym_LPAREN, + ACTIONS(5302), 1, + anon_sym_BANG, + ACTIONS(5549), 1, + anon_sym_LBRACK, + ACTIONS(6355), 1, + anon_sym_switch, + ACTIONS(6369), 1, + anon_sym_with, + ACTIONS(6781), 1, + anon_sym_QMARK, + ACTIONS(6803), 1, + anon_sym_DOT_DOT, + ACTIONS(6811), 1, + anon_sym_as, + ACTIONS(6813), 1, + anon_sym_is, + ACTIONS(7450), 1, + anon_sym_SLASH, + ACTIONS(7452), 1, + anon_sym_CARET, + ACTIONS(7454), 1, + anon_sym_PIPE, + ACTIONS(7456), 1, + anon_sym_AMP, + ACTIONS(7460), 1, + anon_sym_GT_GT, + ACTIONS(7468), 1, + anon_sym_AMP_AMP, + ACTIONS(7470), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7472), 1, + anon_sym_QMARK_QMARK, + STATE(2467), 1, + sym_bracketed_argument_list, + STATE(3381), 1, + sym_argument_list, + ACTIONS(5304), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7444), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(7446), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(7448), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(7458), 2, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + ACTIONS(7462), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(7464), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + STATE(5665), 9, sym_preproc_region, sym_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, - [215125] = 22, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + [209890] = 21, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -695575,29 +690336,29 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(25), 1, + ACTIONS(3877), 1, + sym_discard, + ACTIONS(6969), 1, sym__identifier_token, - ACTIONS(8336), 1, + ACTIONS(7916), 1, anon_sym_LPAREN, - STATE(2175), 1, + STATE(2565), 1, sym__reserved_identifier, - STATE(2181), 1, - sym_generic_name, - STATE(6119), 1, - sym_explicit_interface_specifier, - STATE(6271), 1, + STATE(3352), 1, + sym_parenthesized_variable_designation, + STATE(3355), 1, sym_identifier, - STATE(6521), 1, - sym_tuple_pattern, - STATE(6944), 1, - sym_variable_declarator, - STATE(7441), 1, - sym__name, - STATE(4096), 3, - sym_alias_qualified_name, - sym__simple_name, - sym_qualified_name, - STATE(5725), 9, + STATE(3449), 1, + sym__variable_designation, + ACTIONS(3895), 2, + anon_sym_and, + anon_sym_or, + ACTIONS(3893), 4, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_RBRACE, + STATE(5666), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -695607,7 +690368,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(29), 22, + ACTIONS(6971), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -695630,7 +690391,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [215223] = 22, + [209987] = 23, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -695651,29 +690412,32 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(25), 1, + ACTIONS(3861), 1, + anon_sym_LBRACE, + ACTIONS(3877), 1, + sym_discard, + ACTIONS(6969), 1, sym__identifier_token, - ACTIONS(5024), 1, - anon_sym_LBRACK, - ACTIONS(8773), 1, - aux_sym_preproc_if_token1, - ACTIONS(8802), 1, - anon_sym_RBRACE, - STATE(2175), 1, + ACTIONS(7916), 1, + anon_sym_LPAREN, + STATE(2565), 1, sym__reserved_identifier, - STATE(5798), 1, - aux_sym__class_declaration_initializer_repeat1, - STATE(6051), 1, - sym__attribute_list, - STATE(6881), 1, + STATE(3352), 1, + sym_parenthesized_variable_designation, + STATE(3355), 1, sym_identifier, - STATE(5934), 2, - sym_attribute_list, - sym_preproc_if_in_attribute_list, - STATE(7164), 2, - sym_enum_member_declaration, - sym_preproc_if_in_enum_member_declaration, - STATE(5726), 9, + STATE(3471), 1, + sym__variable_designation, + STATE(5730), 1, + sym_property_pattern_clause, + ACTIONS(3885), 2, + anon_sym_COLON, + anon_sym_EQ_GT, + ACTIONS(3887), 3, + anon_sym_when, + anon_sym_and, + anon_sym_or, + STATE(5667), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -695683,7 +690447,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(29), 22, + ACTIONS(6971), 21, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -695693,7 +690457,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, @@ -695706,7 +690469,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [215321] = 21, + [210088] = 39, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -695727,28 +690490,70 @@ 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(2175), 1, - sym__reserved_identifier, - STATE(2181), 1, - sym_generic_name, - STATE(3544), 1, - aux_sym_conversion_operator_declaration_repeat1, - STATE(4373), 1, - sym_identifier, - STATE(5884), 1, - sym_explicit_interface_specifier, - STATE(7600), 1, - sym__name, - ACTIONS(5605), 2, - anon_sym_operator, - anon_sym_checked, - STATE(4096), 3, - sym_alias_qualified_name, - sym__simple_name, - sym_qualified_name, - STATE(5727), 9, + ACTIONS(4092), 1, + anon_sym_DOT, + ACTIONS(4094), 1, + anon_sym_DASH_GT, + ACTIONS(5227), 1, + anon_sym_LPAREN, + ACTIONS(5238), 1, + anon_sym_BANG, + ACTIONS(5549), 1, + anon_sym_LBRACK, + ACTIONS(6355), 1, + anon_sym_switch, + ACTIONS(6369), 1, + anon_sym_with, + ACTIONS(6781), 1, + anon_sym_QMARK, + ACTIONS(6803), 1, + anon_sym_DOT_DOT, + ACTIONS(6811), 1, + anon_sym_as, + ACTIONS(6813), 1, + anon_sym_is, + ACTIONS(7379), 1, + anon_sym_SLASH, + ACTIONS(7381), 1, + anon_sym_CARET, + ACTIONS(7383), 1, + anon_sym_PIPE, + ACTIONS(7385), 1, + anon_sym_AMP, + ACTIONS(7389), 1, + anon_sym_GT_GT, + ACTIONS(7397), 1, + anon_sym_AMP_AMP, + ACTIONS(7399), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7401), 1, + anon_sym_QMARK_QMARK, + STATE(2467), 1, + sym_bracketed_argument_list, + STATE(3348), 1, + sym_argument_list, + ACTIONS(5240), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7371), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(7375), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(7377), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(7387), 2, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + ACTIONS(7391), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(7393), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + STATE(5668), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -695758,30 +690563,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, - [215417] = 18, + [210221] = 39, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -695802,22 +690584,70 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(3669), 1, - anon_sym_COLON_COLON, - ACTIONS(6311), 1, - anon_sym_LT, - ACTIONS(8783), 1, + ACTIONS(4092), 1, + anon_sym_DOT, + ACTIONS(4094), 1, + anon_sym_DASH_GT, + ACTIONS(5227), 1, anon_sym_LPAREN, - STATE(4063), 1, - sym_type_argument_list, - STATE(6554), 1, - sym_parameter_list, - ACTIONS(3662), 4, + ACTIONS(5238), 1, + anon_sym_BANG, + ACTIONS(5549), 1, anon_sym_LBRACK, + ACTIONS(6355), 1, + anon_sym_switch, + ACTIONS(6369), 1, + anon_sym_with, + ACTIONS(6755), 1, + anon_sym_SLASH, + ACTIONS(6757), 1, + anon_sym_CARET, + ACTIONS(6759), 1, + anon_sym_PIPE, + ACTIONS(6761), 1, + anon_sym_AMP, + ACTIONS(6765), 1, + anon_sym_GT_GT, + ACTIONS(6773), 1, + anon_sym_AMP_AMP, + ACTIONS(6781), 1, anon_sym_QMARK, + ACTIONS(6803), 1, + anon_sym_DOT_DOT, + ACTIONS(6811), 1, + anon_sym_as, + ACTIONS(6813), 1, + anon_sym_is, + ACTIONS(6857), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6859), 1, + anon_sym_QMARK_QMARK, + STATE(2467), 1, + sym_bracketed_argument_list, + STATE(3348), 1, + sym_argument_list, + ACTIONS(5240), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6749), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(6751), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6753), 2, anon_sym_STAR, - anon_sym_DOT, - STATE(5728), 9, + anon_sym_PERCENT, + ACTIONS(6763), 2, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + ACTIONS(6767), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6769), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + STATE(5669), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -695827,33 +690657,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(3660), 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, - 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, - [215507] = 14, + [210354] = 39, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -695874,54 +690678,80 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8804), 1, - anon_sym_SEMI, - STATE(5729), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - ACTIONS(5056), 11, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, + ACTIONS(4792), 1, + anon_sym_DOT, + ACTIONS(4794), 1, + anon_sym_DASH_GT, + ACTIONS(5257), 1, + anon_sym_LPAREN, + ACTIONS(5302), 1, anon_sym_BANG, - anon_sym_PLUS, - anon_sym_DASH, + ACTIONS(5549), 1, + anon_sym_LBRACK, + ACTIONS(6355), 1, + anon_sym_switch, + ACTIONS(6369), 1, + anon_sym_with, + ACTIONS(6781), 1, + anon_sym_QMARK, + ACTIONS(6787), 1, anon_sym_SLASH, + ACTIONS(6789), 1, + anon_sym_CARET, + ACTIONS(6791), 1, anon_sym_PIPE, + ACTIONS(6793), 1, anon_sym_AMP, + ACTIONS(6797), 1, anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(5054), 22, - anon_sym_LBRACK, - anon_sym_LPAREN, + ACTIONS(6803), 1, + anon_sym_DOT_DOT, + ACTIONS(6805), 1, + anon_sym_AMP_AMP, + ACTIONS(6807), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6809), 1, + anon_sym_QMARK_QMARK, + ACTIONS(6811), 1, + anon_sym_as, + ACTIONS(6813), 1, + anon_sym_is, + STATE(2467), 1, + sym_bracketed_argument_list, + STATE(3381), 1, + sym_argument_list, + ACTIONS(5304), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + ACTIONS(6779), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(6783), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6785), 2, anon_sym_STAR, anon_sym_PERCENT, - anon_sym_CARET, + ACTIONS(6795), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, + ACTIONS(6799), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + ACTIONS(6801), 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, - [215589] = 18, + STATE(5670), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + [210487] = 39, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -695942,24 +690772,70 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(3669), 1, - anon_sym_COLON_COLON, - ACTIONS(6311), 1, - anon_sym_LT, - ACTIONS(8792), 1, - anon_sym_EQ, - STATE(4063), 1, - sym_type_argument_list, - ACTIONS(8806), 3, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_RPAREN, - ACTIONS(3662), 4, + ACTIONS(4092), 1, + anon_sym_DOT, + ACTIONS(4094), 1, + anon_sym_DASH_GT, + ACTIONS(5227), 1, + anon_sym_LPAREN, + ACTIONS(5238), 1, + anon_sym_BANG, + ACTIONS(5549), 1, anon_sym_LBRACK, + ACTIONS(6001), 1, + anon_sym_SLASH, + ACTIONS(6003), 1, + anon_sym_CARET, + ACTIONS(6005), 1, + anon_sym_PIPE, + ACTIONS(6007), 1, + anon_sym_AMP, + ACTIONS(6011), 1, + anon_sym_GT_GT, + ACTIONS(6021), 1, + anon_sym_AMP_AMP, + ACTIONS(6023), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6025), 1, + anon_sym_QMARK_QMARK, + ACTIONS(6355), 1, + anon_sym_switch, + ACTIONS(6369), 1, + anon_sym_with, + ACTIONS(6781), 1, anon_sym_QMARK, + ACTIONS(6803), 1, + anon_sym_DOT_DOT, + ACTIONS(6811), 1, + anon_sym_as, + ACTIONS(6813), 1, + anon_sym_is, + STATE(2467), 1, + sym_bracketed_argument_list, + STATE(3348), 1, + sym_argument_list, + ACTIONS(5240), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5993), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5997), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5999), 2, anon_sym_STAR, - anon_sym_DOT, - STATE(5730), 9, + anon_sym_PERCENT, + ACTIONS(6009), 2, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + ACTIONS(6013), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6015), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + STATE(5671), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -695969,31 +690845,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(3660), 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, - [215679] = 22, + [210620] = 18, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -696014,29 +690866,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(5024), 1, + ACTIONS(4044), 1, + anon_sym_DASH_GT, + ACTIONS(6601), 1, anon_sym_LBRACK, - ACTIONS(8773), 1, - aux_sym_preproc_if_token1, - ACTIONS(8808), 1, - anon_sym_RBRACE, - STATE(2175), 1, - sym__reserved_identifier, - STATE(5798), 1, - aux_sym__class_declaration_initializer_repeat1, - STATE(6051), 1, - sym__attribute_list, - STATE(6881), 1, - sym_identifier, - STATE(5934), 2, - sym_attribute_list, - sym_preproc_if_in_attribute_list, - STATE(7164), 2, - sym_enum_member_declaration, - sym_preproc_if_in_enum_member_declaration, - STATE(5731), 9, + ACTIONS(6603), 1, + anon_sym_STAR, + ACTIONS(6705), 1, + anon_sym_QMARK, + ACTIONS(8737), 1, + anon_sym_DOT, + ACTIONS(3963), 4, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + STATE(5672), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -696046,7 +690891,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(29), 22, + ACTIONS(3961), 26, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -696057,6 +690902,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, @@ -696069,7 +690917,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [215777] = 18, + sym__identifier_token, + [210711] = 39, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -696090,21 +690939,70 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4102), 1, + ACTIONS(4427), 1, + anon_sym_DOT, + ACTIONS(4429), 1, anon_sym_DASH_GT, - ACTIONS(6678), 1, + ACTIONS(5257), 1, + anon_sym_LPAREN, + ACTIONS(5302), 1, + anon_sym_BANG, + ACTIONS(6355), 1, + anon_sym_switch, + ACTIONS(6369), 1, + anon_sym_with, + ACTIONS(6607), 1, anon_sym_LBRACK, - ACTIONS(6680), 1, - anon_sym_STAR, - ACTIONS(6716), 1, + ACTIONS(6781), 1, anon_sym_QMARK, - ACTIONS(8810), 1, - anon_sym_DOT, - ACTIONS(4018), 3, - anon_sym_COLON, - anon_sym_LPAREN, - anon_sym_LBRACE, - STATE(5732), 9, + ACTIONS(6787), 1, + anon_sym_SLASH, + ACTIONS(6789), 1, + anon_sym_CARET, + ACTIONS(6791), 1, + anon_sym_PIPE, + ACTIONS(6793), 1, + anon_sym_AMP, + ACTIONS(6797), 1, + anon_sym_GT_GT, + ACTIONS(6803), 1, + anon_sym_DOT_DOT, + ACTIONS(6805), 1, + anon_sym_AMP_AMP, + ACTIONS(6807), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6809), 1, + anon_sym_QMARK_QMARK, + ACTIONS(6811), 1, + anon_sym_as, + ACTIONS(6813), 1, + anon_sym_is, + STATE(3188), 1, + sym_bracketed_argument_list, + STATE(3381), 1, + sym_argument_list, + ACTIONS(5304), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6779), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(6783), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6785), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(6795), 2, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + ACTIONS(6799), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6801), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + STATE(5673), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -696114,34 +691012,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(4016), 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, - [215867] = 22, + [210844] = 21, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -696162,28 +691033,29 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(25), 1, + ACTIONS(3877), 1, + sym_discard, + ACTIONS(6969), 1, sym__identifier_token, - ACTIONS(5024), 1, - anon_sym_LBRACK, - ACTIONS(5040), 1, - aux_sym_preproc_if_token1, - ACTIONS(8812), 1, - aux_sym_preproc_if_token3, - STATE(2175), 1, + ACTIONS(7916), 1, + anon_sym_LPAREN, + STATE(2565), 1, sym__reserved_identifier, - STATE(5786), 1, - aux_sym__class_declaration_initializer_repeat1, - STATE(6051), 1, - sym__attribute_list, - STATE(6642), 1, + STATE(3352), 1, + sym_parenthesized_variable_designation, + STATE(3355), 1, sym_identifier, - STATE(7440), 1, - sym_enum_member_declaration, - STATE(5934), 2, - sym_attribute_list, - sym_preproc_if_in_attribute_list, - STATE(5733), 9, + STATE(3461), 1, + sym__variable_designation, + ACTIONS(3949), 2, + anon_sym_and, + anon_sym_or, + ACTIONS(3947), 4, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_RBRACE, + STATE(5674), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -696193,7 +691065,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(29), 22, + ACTIONS(6971), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -696216,7 +691088,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [215964] = 21, + [210941] = 18, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -696237,28 +691109,22 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(3897), 1, - sym_discard, - ACTIONS(6823), 1, - sym__identifier_token, - ACTIONS(8102), 1, + ACTIONS(4044), 1, + anon_sym_DASH_GT, + ACTIONS(6601), 1, + anon_sym_LBRACK, + ACTIONS(6603), 1, + anon_sym_STAR, + ACTIONS(6705), 1, + anon_sym_QMARK, + ACTIONS(8739), 1, + anon_sym_DOT, + ACTIONS(3963), 4, + anon_sym_COMMA, anon_sym_LPAREN, - STATE(2571), 1, - sym__reserved_identifier, - STATE(3463), 1, - sym_parenthesized_variable_designation, - STATE(3479), 1, - sym_identifier, - STATE(3481), 1, - sym__variable_designation, - ACTIONS(3961), 2, - anon_sym_COLON, - anon_sym_EQ_GT, - ACTIONS(3963), 3, - anon_sym_when, - anon_sym_and, - anon_sym_or, - STATE(5734), 9, + anon_sym_LBRACE, + anon_sym_RBRACE, + STATE(5675), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -696268,7 +691134,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(6825), 21, + ACTIONS(3961), 26, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -696278,6 +691144,10 @@ 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, @@ -696290,7 +691160,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [216059] = 21, + sym__identifier_token, + [211032] = 18, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -696311,28 +691182,22 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(3897), 1, - sym_discard, - ACTIONS(6823), 1, - sym__identifier_token, - ACTIONS(8102), 1, + ACTIONS(4044), 1, + anon_sym_DASH_GT, + ACTIONS(6601), 1, + anon_sym_LBRACK, + ACTIONS(6603), 1, + anon_sym_STAR, + ACTIONS(6705), 1, + anon_sym_QMARK, + ACTIONS(8741), 1, + anon_sym_DOT, + ACTIONS(3963), 4, + anon_sym_COMMA, + anon_sym_RBRACK, anon_sym_LPAREN, - STATE(2571), 1, - sym__reserved_identifier, - STATE(3463), 1, - sym_parenthesized_variable_designation, - STATE(3479), 1, - sym_identifier, - STATE(3507), 1, - sym__variable_designation, - ACTIONS(3905), 2, - anon_sym_COLON, - anon_sym_EQ_GT, - ACTIONS(3907), 3, - anon_sym_when, - anon_sym_and, - anon_sym_or, - STATE(5735), 9, + anon_sym_LBRACE, + STATE(5676), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -696342,7 +691207,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(6825), 21, + ACTIONS(3961), 26, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -696352,6 +691217,10 @@ 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, @@ -696364,7 +691233,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [216154] = 21, + sym__identifier_token, + [211123] = 39, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -696385,27 +691255,70 @@ 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(8814), 1, - anon_sym_unsafe, - ACTIONS(8816), 1, - anon_sym_static, - STATE(2175), 1, - sym__reserved_identifier, - STATE(2181), 1, - sym_generic_name, - STATE(5743), 1, - aux_sym_using_directive_repeat1, - STATE(6420), 1, - sym_identifier, - STATE(7250), 1, - sym__name, - STATE(4096), 3, - sym_alias_qualified_name, - sym__simple_name, - sym_qualified_name, - STATE(5736), 9, + ACTIONS(4092), 1, + anon_sym_DOT, + ACTIONS(4094), 1, + anon_sym_DASH_GT, + ACTIONS(5227), 1, + anon_sym_LPAREN, + ACTIONS(5238), 1, + anon_sym_BANG, + ACTIONS(5549), 1, + anon_sym_LBRACK, + ACTIONS(6355), 1, + anon_sym_switch, + ACTIONS(6369), 1, + anon_sym_with, + ACTIONS(6455), 1, + anon_sym_SLASH, + ACTIONS(6457), 1, + anon_sym_AMP, + ACTIONS(6461), 1, + anon_sym_GT_GT, + ACTIONS(6525), 1, + anon_sym_CARET, + ACTIONS(6527), 1, + anon_sym_PIPE, + ACTIONS(6529), 1, + anon_sym_AMP_AMP, + ACTIONS(6531), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6533), 1, + anon_sym_QMARK_QMARK, + ACTIONS(6781), 1, + anon_sym_QMARK, + ACTIONS(6803), 1, + anon_sym_DOT_DOT, + ACTIONS(6811), 1, + anon_sym_as, + ACTIONS(6813), 1, + anon_sym_is, + STATE(2467), 1, + sym_bracketed_argument_list, + STATE(3348), 1, + sym_argument_list, + ACTIONS(5240), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6449), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(6451), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6453), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(6459), 2, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + ACTIONS(6463), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6465), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + STATE(5677), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -696415,30 +691328,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, - [216249] = 20, + [211256] = 39, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -696459,26 +691349,70 @@ 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(2175), 1, - sym__reserved_identifier, - STATE(2181), 1, - sym_generic_name, - STATE(4373), 1, - sym_identifier, - STATE(6062), 1, - aux_sym_using_directive_repeat1, - STATE(7250), 1, - sym__name, - ACTIONS(8816), 2, - anon_sym_unsafe, - anon_sym_static, - STATE(4096), 3, - sym_alias_qualified_name, - sym__simple_name, - sym_qualified_name, - STATE(5737), 9, + ACTIONS(4092), 1, + anon_sym_DOT, + ACTIONS(4094), 1, + anon_sym_DASH_GT, + ACTIONS(5227), 1, + anon_sym_LPAREN, + ACTIONS(5238), 1, + anon_sym_BANG, + ACTIONS(5549), 1, + anon_sym_LBRACK, + ACTIONS(6355), 1, + anon_sym_switch, + ACTIONS(6369), 1, + anon_sym_with, + ACTIONS(6781), 1, + anon_sym_QMARK, + ACTIONS(6803), 1, + anon_sym_DOT_DOT, + ACTIONS(6811), 1, + anon_sym_as, + ACTIONS(6813), 1, + anon_sym_is, + ACTIONS(7167), 1, + anon_sym_SLASH, + ACTIONS(7171), 1, + anon_sym_GT_GT, + ACTIONS(7320), 1, + anon_sym_CARET, + ACTIONS(7322), 1, + anon_sym_PIPE, + ACTIONS(7324), 1, + anon_sym_AMP, + ACTIONS(7330), 1, + anon_sym_AMP_AMP, + ACTIONS(7332), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7334), 1, + anon_sym_QMARK_QMARK, + STATE(2467), 1, + sym_bracketed_argument_list, + STATE(3348), 1, + sym_argument_list, + ACTIONS(5240), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7163), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(7165), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(7169), 2, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + ACTIONS(7316), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(7326), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(7328), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + STATE(5678), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -696488,30 +691422,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, - [216342] = 17, + [211389] = 39, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -696532,19 +691443,70 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(6678), 1, - anon_sym_LBRACK, - ACTIONS(6680), 1, - anon_sym_STAR, - ACTIONS(6716), 1, - anon_sym_QMARK, - ACTIONS(8818), 1, + ACTIONS(4092), 1, anon_sym_DOT, - ACTIONS(4018), 3, - anon_sym_COLON, + ACTIONS(4094), 1, + anon_sym_DASH_GT, + ACTIONS(5227), 1, anon_sym_LPAREN, - anon_sym_LBRACE, - STATE(5738), 9, + ACTIONS(5238), 1, + anon_sym_BANG, + ACTIONS(5549), 1, + anon_sym_LBRACK, + ACTIONS(6355), 1, + anon_sym_switch, + ACTIONS(6369), 1, + anon_sym_with, + ACTIONS(6781), 1, + anon_sym_QMARK, + ACTIONS(6803), 1, + anon_sym_DOT_DOT, + ACTIONS(6811), 1, + anon_sym_as, + ACTIONS(6813), 1, + anon_sym_is, + ACTIONS(7067), 1, + anon_sym_SLASH, + ACTIONS(7069), 1, + anon_sym_AMP, + ACTIONS(7073), 1, + anon_sym_GT_GT, + ACTIONS(7085), 1, + anon_sym_CARET, + ACTIONS(7087), 1, + anon_sym_PIPE, + ACTIONS(7089), 1, + anon_sym_AMP_AMP, + ACTIONS(7091), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7093), 1, + anon_sym_QMARK_QMARK, + STATE(2467), 1, + sym_bracketed_argument_list, + STATE(3348), 1, + sym_argument_list, + ACTIONS(5240), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7061), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(7063), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(7065), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(7071), 2, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + ACTIONS(7075), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(7077), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + STATE(5679), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -696554,34 +691516,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(4016), 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, - [216429] = 17, + [211522] = 39, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -696602,22 +691537,70 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(3669), 1, - anon_sym_COLON_COLON, - ACTIONS(6311), 1, - anon_sym_LT, - ACTIONS(8820), 1, - anon_sym_EQ, - STATE(4063), 1, - sym_type_argument_list, - ACTIONS(3662), 6, - anon_sym_SEMI, - anon_sym_LBRACK, + ACTIONS(4092), 1, + anon_sym_DOT, + ACTIONS(4094), 1, + anon_sym_DASH_GT, + ACTIONS(5227), 1, anon_sym_LPAREN, + ACTIONS(5238), 1, + anon_sym_BANG, + ACTIONS(5549), 1, + anon_sym_LBRACK, + ACTIONS(6355), 1, + anon_sym_switch, + ACTIONS(6369), 1, + anon_sym_with, + ACTIONS(6781), 1, anon_sym_QMARK, + ACTIONS(6803), 1, + anon_sym_DOT_DOT, + ACTIONS(6811), 1, + anon_sym_as, + ACTIONS(6813), 1, + anon_sym_is, + ACTIONS(7221), 1, + anon_sym_SLASH, + ACTIONS(7225), 1, + anon_sym_GT_GT, + ACTIONS(7344), 1, + anon_sym_CARET, + ACTIONS(7346), 1, + anon_sym_PIPE, + ACTIONS(7348), 1, + anon_sym_AMP, + ACTIONS(7354), 1, + anon_sym_AMP_AMP, + ACTIONS(7356), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7358), 1, + anon_sym_QMARK_QMARK, + STATE(2467), 1, + sym_bracketed_argument_list, + STATE(3348), 1, + sym_argument_list, + ACTIONS(5240), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7217), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(7219), 2, anon_sym_STAR, - anon_sym_DOT, - STATE(5739), 9, + anon_sym_PERCENT, + ACTIONS(7223), 2, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + ACTIONS(7340), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(7350), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(7352), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + STATE(5680), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -696627,31 +691610,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(3660), 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, - [216516] = 14, + [211655] = 39, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -696672,17 +691631,70 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8822), 1, - anon_sym_using, - ACTIONS(3445), 7, - anon_sym_LBRACK, + ACTIONS(4697), 1, + anon_sym_DOT, + ACTIONS(4699), 1, + anon_sym_DASH_GT, + ACTIONS(5257), 1, anon_sym_LPAREN, - anon_sym_LT, + ACTIONS(5302), 1, + anon_sym_BANG, + ACTIONS(5650), 1, + anon_sym_LBRACK, + ACTIONS(6355), 1, + anon_sym_switch, + ACTIONS(6369), 1, + anon_sym_with, + ACTIONS(6781), 1, anon_sym_QMARK, + ACTIONS(6787), 1, + anon_sym_SLASH, + ACTIONS(6789), 1, + anon_sym_CARET, + ACTIONS(6791), 1, + anon_sym_PIPE, + ACTIONS(6793), 1, + anon_sym_AMP, + ACTIONS(6797), 1, + anon_sym_GT_GT, + ACTIONS(6803), 1, + anon_sym_DOT_DOT, + ACTIONS(6805), 1, + anon_sym_AMP_AMP, + ACTIONS(6807), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6809), 1, + anon_sym_QMARK_QMARK, + ACTIONS(6811), 1, + anon_sym_as, + ACTIONS(6813), 1, + anon_sym_is, + STATE(2892), 1, + sym_bracketed_argument_list, + STATE(3381), 1, + sym_argument_list, + ACTIONS(5304), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6779), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(6783), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6785), 2, anon_sym_STAR, - anon_sym_DOT, - anon_sym_COLON_COLON, - STATE(5740), 9, + anon_sym_PERCENT, + ACTIONS(6795), 2, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + ACTIONS(6799), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6801), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + STATE(5681), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -696692,33 +691704,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(3447), 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, - 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, - [216597] = 19, + [211788] = 39, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -696739,25 +691725,70 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8824), 1, - sym__identifier_token, - ACTIONS(8830), 1, + ACTIONS(4042), 1, + anon_sym_DOT, + ACTIONS(4044), 1, + anon_sym_DASH_GT, + ACTIONS(5257), 1, anon_sym_LPAREN, - STATE(2175), 1, - sym__reserved_identifier, - STATE(2181), 1, - sym_generic_name, - STATE(4150), 1, - sym__simple_name, - STATE(4369), 1, - sym_identifier, - ACTIONS(8832), 5, - anon_sym_ref, - anon_sym_delegate, - anon_sym_operator, - anon_sym_checked, - sym_predefined_type, - STATE(5741), 9, + ACTIONS(5302), 1, + anon_sym_BANG, + ACTIONS(5549), 1, + anon_sym_LBRACK, + ACTIONS(6355), 1, + anon_sym_switch, + ACTIONS(6369), 1, + anon_sym_with, + ACTIONS(6479), 1, + anon_sym_SLASH, + ACTIONS(6481), 1, + anon_sym_CARET, + ACTIONS(6483), 1, + anon_sym_PIPE, + ACTIONS(6485), 1, + anon_sym_AMP, + ACTIONS(6489), 1, + anon_sym_GT_GT, + ACTIONS(6499), 1, + anon_sym_AMP_AMP, + ACTIONS(6501), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6503), 1, + anon_sym_QMARK_QMARK, + ACTIONS(6781), 1, + anon_sym_QMARK, + ACTIONS(6803), 1, + anon_sym_DOT_DOT, + ACTIONS(6811), 1, + anon_sym_as, + ACTIONS(6813), 1, + anon_sym_is, + STATE(2467), 1, + sym_bracketed_argument_list, + STATE(3381), 1, + sym_argument_list, + ACTIONS(5304), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6471), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(6475), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6477), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(6487), 2, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + ACTIONS(6491), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6493), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + STATE(5682), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -696767,30 +691798,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(8827), 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, - [216688] = 21, + [211921] = 39, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -696811,28 +691819,70 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(3897), 1, - sym_discard, - ACTIONS(6823), 1, - sym__identifier_token, - ACTIONS(8102), 1, + ACTIONS(4042), 1, + anon_sym_DOT, + ACTIONS(4044), 1, + anon_sym_DASH_GT, + ACTIONS(5257), 1, anon_sym_LPAREN, - STATE(2571), 1, - sym__reserved_identifier, - STATE(3434), 1, - sym__variable_designation, - STATE(3463), 1, - sym_parenthesized_variable_designation, - STATE(3479), 1, - sym_identifier, - ACTIONS(3957), 2, - anon_sym_COLON, - anon_sym_EQ_GT, - ACTIONS(3959), 3, - anon_sym_when, - anon_sym_and, - anon_sym_or, - STATE(5742), 9, + ACTIONS(5302), 1, + anon_sym_BANG, + ACTIONS(5549), 1, + anon_sym_LBRACK, + ACTIONS(6355), 1, + anon_sym_switch, + ACTIONS(6369), 1, + anon_sym_with, + ACTIONS(6781), 1, + anon_sym_QMARK, + ACTIONS(6803), 1, + anon_sym_DOT_DOT, + ACTIONS(6811), 1, + anon_sym_as, + ACTIONS(6813), 1, + anon_sym_is, + ACTIONS(7654), 1, + anon_sym_SLASH, + ACTIONS(7658), 1, + anon_sym_GT_GT, + ACTIONS(7664), 1, + anon_sym_AMP, + ACTIONS(7674), 1, + anon_sym_CARET, + ACTIONS(7676), 1, + anon_sym_PIPE, + ACTIONS(7678), 1, + anon_sym_AMP_AMP, + ACTIONS(7680), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7682), 1, + anon_sym_QMARK_QMARK, + STATE(2467), 1, + sym_bracketed_argument_list, + STATE(3381), 1, + sym_argument_list, + ACTIONS(5304), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7650), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(7652), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(7656), 2, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + ACTIONS(7662), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(7666), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(7668), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + STATE(5683), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -696842,29 +691892,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(6825), 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, - [216783] = 20, + [212054] = 39, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -696885,26 +691913,70 @@ 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(2175), 1, - sym__reserved_identifier, - STATE(2181), 1, - sym_generic_name, - STATE(4373), 1, - sym_identifier, - STATE(6062), 1, - aux_sym_using_directive_repeat1, - STATE(7078), 1, - sym__name, - ACTIONS(8816), 2, - anon_sym_unsafe, - anon_sym_static, - STATE(4096), 3, - sym_alias_qualified_name, - sym__simple_name, - sym_qualified_name, - STATE(5743), 9, + ACTIONS(4753), 1, + anon_sym_LPAREN, + ACTIONS(4792), 1, + anon_sym_DOT, + ACTIONS(4794), 1, + anon_sym_DASH_GT, + ACTIONS(4823), 1, + anon_sym_BANG, + ACTIONS(5549), 1, + anon_sym_LBRACK, + ACTIONS(6339), 1, + anon_sym_SLASH, + ACTIONS(6341), 1, + anon_sym_CARET, + ACTIONS(6343), 1, + anon_sym_PIPE, + ACTIONS(6345), 1, + anon_sym_AMP, + ACTIONS(6349), 1, + anon_sym_GT_GT, + ACTIONS(6355), 1, + anon_sym_switch, + ACTIONS(6359), 1, + anon_sym_AMP_AMP, + ACTIONS(6361), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6363), 1, + anon_sym_QMARK_QMARK, + ACTIONS(6369), 1, + anon_sym_with, + ACTIONS(6781), 1, + anon_sym_QMARK, + ACTIONS(6803), 1, + anon_sym_DOT_DOT, + ACTIONS(6811), 1, + anon_sym_as, + ACTIONS(6813), 1, + anon_sym_is, + STATE(2467), 1, + sym_bracketed_argument_list, + STATE(2958), 1, + sym_argument_list, + ACTIONS(4825), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6331), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(6335), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6337), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(6347), 2, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + ACTIONS(6351), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6353), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + STATE(5684), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -696914,30 +691986,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, - [216876] = 21, + [212187] = 18, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -696958,27 +692007,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(8816), 1, - anon_sym_static, - ACTIONS(8834), 1, - anon_sym_unsafe, - STATE(2175), 1, - sym__reserved_identifier, - STATE(2181), 1, - sym_generic_name, - STATE(5748), 1, - aux_sym_using_directive_repeat1, - STATE(6453), 1, - sym_identifier, - STATE(7239), 1, - sym__name, - STATE(4096), 3, - sym_alias_qualified_name, - sym__simple_name, - sym_qualified_name, - STATE(5744), 9, + ACTIONS(4044), 1, + anon_sym_DASH_GT, + ACTIONS(6601), 1, + anon_sym_LBRACK, + ACTIONS(6603), 1, + anon_sym_STAR, + ACTIONS(6705), 1, + anon_sym_QMARK, + ACTIONS(8743), 1, + anon_sym_DOT, + ACTIONS(3963), 4, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + STATE(5685), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -696988,7 +692032,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(29), 22, + ACTIONS(3961), 26, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -696999,6 +692043,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, @@ -697011,7 +692058,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [216971] = 19, + sym__identifier_token, + [212278] = 39, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -697032,25 +692080,70 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8830), 1, + ACTIONS(4427), 1, + anon_sym_DOT, + ACTIONS(4429), 1, + anon_sym_DASH_GT, + ACTIONS(5549), 1, + anon_sym_LBRACK, + ACTIONS(6355), 1, + anon_sym_switch, + ACTIONS(6369), 1, + anon_sym_with, + ACTIONS(6557), 1, anon_sym_LPAREN, - ACTIONS(8836), 1, - sym__identifier_token, - STATE(3691), 1, - sym__reserved_identifier, - STATE(3991), 1, - sym_identifier, - STATE(4109), 1, - sym_generic_name, - STATE(4150), 1, - sym__simple_name, - ACTIONS(8832), 5, - anon_sym_ref, - anon_sym_delegate, - anon_sym_operator, - anon_sym_checked, - sym_predefined_type, - STATE(5745), 9, + ACTIONS(6613), 1, + anon_sym_BANG, + ACTIONS(6621), 1, + anon_sym_SLASH, + ACTIONS(6623), 1, + anon_sym_CARET, + ACTIONS(6625), 1, + anon_sym_PIPE, + ACTIONS(6627), 1, + anon_sym_AMP, + ACTIONS(6631), 1, + anon_sym_GT_GT, + ACTIONS(6641), 1, + anon_sym_AMP_AMP, + ACTIONS(6643), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6645), 1, + anon_sym_QMARK_QMARK, + ACTIONS(6781), 1, + anon_sym_QMARK, + ACTIONS(6803), 1, + anon_sym_DOT_DOT, + ACTIONS(6811), 1, + anon_sym_as, + ACTIONS(6813), 1, + anon_sym_is, + STATE(2467), 1, + sym_bracketed_argument_list, + STATE(4584), 1, + sym_argument_list, + ACTIONS(6609), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(6615), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6617), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6619), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(6629), 2, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + ACTIONS(6633), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6635), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + STATE(5686), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -697060,30 +692153,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(8839), 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, - [217062] = 21, + [212411] = 39, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -697104,27 +692174,70 @@ 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(8816), 1, - anon_sym_static, - ACTIONS(8842), 1, - anon_sym_unsafe, - STATE(2175), 1, - sym__reserved_identifier, - STATE(2181), 1, - sym_generic_name, - STATE(5755), 1, - aux_sym_using_directive_repeat1, - STATE(6463), 1, - sym_identifier, - STATE(7053), 1, - sym__name, - STATE(4096), 3, - sym_alias_qualified_name, - sym__simple_name, - sym_qualified_name, - STATE(5746), 9, + ACTIONS(4427), 1, + anon_sym_DOT, + ACTIONS(4429), 1, + anon_sym_DASH_GT, + ACTIONS(5549), 1, + anon_sym_LBRACK, + ACTIONS(6355), 1, + anon_sym_switch, + ACTIONS(6369), 1, + anon_sym_with, + ACTIONS(6557), 1, + anon_sym_LPAREN, + ACTIONS(6613), 1, + anon_sym_BANG, + ACTIONS(6781), 1, + anon_sym_QMARK, + ACTIONS(6803), 1, + anon_sym_DOT_DOT, + ACTIONS(6811), 1, + anon_sym_as, + ACTIONS(6813), 1, + anon_sym_is, + ACTIONS(6837), 1, + anon_sym_SLASH, + ACTIONS(6839), 1, + anon_sym_CARET, + ACTIONS(6841), 1, + anon_sym_AMP, + ACTIONS(6845), 1, + anon_sym_GT_GT, + ACTIONS(6887), 1, + anon_sym_PIPE, + ACTIONS(6929), 1, + anon_sym_AMP_AMP, + ACTIONS(6937), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6939), 1, + anon_sym_QMARK_QMARK, + STATE(2467), 1, + sym_bracketed_argument_list, + STATE(4584), 1, + sym_argument_list, + ACTIONS(6615), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6831), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(6833), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6835), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(6843), 2, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + ACTIONS(6847), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6849), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + STATE(5687), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -697134,30 +692247,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, - [217157] = 19, + [212544] = 19, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -697178,24 +692268,26 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(3669), 1, + ACTIONS(3651), 1, + anon_sym_EQ_GT, + ACTIONS(3653), 1, anon_sym_COLON_COLON, - ACTIONS(6311), 1, + ACTIONS(6230), 1, anon_sym_LT, - ACTIONS(8844), 1, + ACTIONS(8745), 1, + anon_sym_EQ, + STATE(4054), 1, + sym_type_argument_list, + ACTIONS(8747), 2, anon_sym_COMMA, - ACTIONS(8847), 1, anon_sym_RPAREN, - STATE(4063), 1, - sym_type_argument_list, - STATE(6811), 1, - aux_sym_tuple_pattern_repeat1, - ACTIONS(3662), 4, + ACTIONS(3640), 5, anon_sym_LBRACK, + anon_sym_LPAREN, anon_sym_QMARK, anon_sym_STAR, anon_sym_DOT, - STATE(5747), 9, + STATE(5688), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -697205,7 +692297,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(3660), 23, + ACTIONS(3638), 23, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -697229,7 +692321,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_select, sym__identifier_token, - [217248] = 20, + [212637] = 23, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -697250,26 +692342,32 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(25), 1, + ACTIONS(3861), 1, + anon_sym_LBRACE, + ACTIONS(3877), 1, + sym_discard, + ACTIONS(6969), 1, sym__identifier_token, - STATE(2175), 1, + ACTIONS(7916), 1, + anon_sym_LPAREN, + STATE(2565), 1, sym__reserved_identifier, - STATE(2181), 1, - sym_generic_name, - STATE(4373), 1, + STATE(3352), 1, + sym_parenthesized_variable_designation, + STATE(3355), 1, sym_identifier, - STATE(6062), 1, - aux_sym_using_directive_repeat1, - STATE(7195), 1, - sym__name, - ACTIONS(8816), 2, - anon_sym_unsafe, - anon_sym_static, - STATE(4096), 3, - sym_alias_qualified_name, - sym__simple_name, - sym_qualified_name, - STATE(5748), 9, + STATE(3447), 1, + sym__variable_designation, + STATE(5744), 1, + sym_property_pattern_clause, + ACTIONS(3893), 2, + anon_sym_COLON, + anon_sym_EQ_GT, + ACTIONS(3895), 3, + anon_sym_when, + anon_sym_and, + anon_sym_or, + STATE(5689), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -697279,7 +692377,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(29), 22, + ACTIONS(6971), 21, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -697289,7 +692387,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, @@ -697302,7 +692399,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [217341] = 19, + [212738] = 39, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -697323,24 +692420,70 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(3669), 1, - anon_sym_COLON_COLON, - ACTIONS(3850), 1, - anon_sym_COMMA, - ACTIONS(6311), 1, - anon_sym_LT, - ACTIONS(8792), 1, - anon_sym_EQ, - ACTIONS(8806), 1, - anon_sym_RPAREN, - STATE(4063), 1, - sym_type_argument_list, - ACTIONS(3662), 4, + ACTIONS(4042), 1, + anon_sym_DOT, + ACTIONS(4044), 1, + anon_sym_DASH_GT, + ACTIONS(5257), 1, + anon_sym_LPAREN, + ACTIONS(5302), 1, + anon_sym_BANG, + ACTIONS(5549), 1, anon_sym_LBRACK, + ACTIONS(6355), 1, + anon_sym_switch, + ACTIONS(6369), 1, + anon_sym_with, + ACTIONS(6573), 1, + anon_sym_SLASH, + ACTIONS(6575), 1, + anon_sym_CARET, + ACTIONS(6577), 1, + anon_sym_PIPE, + ACTIONS(6579), 1, + anon_sym_AMP, + ACTIONS(6583), 1, + anon_sym_GT_GT, + ACTIONS(6591), 1, + anon_sym_AMP_AMP, + ACTIONS(6593), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6595), 1, + anon_sym_QMARK_QMARK, + ACTIONS(6781), 1, anon_sym_QMARK, + ACTIONS(6803), 1, + anon_sym_DOT_DOT, + ACTIONS(6811), 1, + anon_sym_as, + ACTIONS(6813), 1, + anon_sym_is, + STATE(2467), 1, + sym_bracketed_argument_list, + STATE(3381), 1, + sym_argument_list, + ACTIONS(5304), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6565), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(6569), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6571), 2, anon_sym_STAR, - anon_sym_DOT, - STATE(5749), 9, + anon_sym_PERCENT, + ACTIONS(6581), 2, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + ACTIONS(6585), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6587), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + STATE(5690), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -697350,31 +692493,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(3660), 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, - [217432] = 20, + [212871] = 21, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -697395,26 +692514,29 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(25), 1, + ACTIONS(3877), 1, + sym_discard, + ACTIONS(6969), 1, sym__identifier_token, - STATE(2175), 1, + ACTIONS(7916), 1, + anon_sym_LPAREN, + STATE(2565), 1, sym__reserved_identifier, - STATE(2181), 1, - sym_generic_name, - STATE(4373), 1, + STATE(3352), 1, + sym_parenthesized_variable_designation, + STATE(3355), 1, sym_identifier, - STATE(6062), 1, - aux_sym_using_directive_repeat1, - STATE(7239), 1, - sym__name, - ACTIONS(8816), 2, - anon_sym_unsafe, - anon_sym_static, - STATE(4096), 3, - sym_alias_qualified_name, - sym__simple_name, - sym_qualified_name, - STATE(5750), 9, + STATE(3413), 1, + sym__variable_designation, + ACTIONS(3887), 2, + anon_sym_and, + anon_sym_or, + ACTIONS(3885), 4, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_RBRACE, + STATE(5691), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -697424,7 +692546,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(29), 22, + ACTIONS(6971), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -697447,7 +692569,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [217525] = 21, + [212968] = 21, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -697468,28 +692590,29 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(3897), 1, + ACTIONS(3877), 1, sym_discard, - ACTIONS(6823), 1, + ACTIONS(6969), 1, sym__identifier_token, - ACTIONS(8102), 1, + ACTIONS(7916), 1, anon_sym_LPAREN, - STATE(2571), 1, + STATE(2565), 1, sym__reserved_identifier, - STATE(3365), 1, - sym__variable_designation, - STATE(3463), 1, + STATE(3352), 1, sym_parenthesized_variable_designation, - STATE(3479), 1, + STATE(3355), 1, sym_identifier, - ACTIONS(3913), 2, - anon_sym_COLON, - anon_sym_EQ_GT, - ACTIONS(3915), 3, - anon_sym_when, + STATE(3411), 1, + sym__variable_designation, + ACTIONS(3941), 2, anon_sym_and, anon_sym_or, - STATE(5751), 9, + ACTIONS(3939), 4, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_RBRACE, + STATE(5692), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -697499,7 +692622,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(6825), 21, + ACTIONS(6971), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -697509,6 +692632,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, @@ -697521,7 +692645,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [217620] = 16, + [213065] = 17, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -697542,17 +692666,21 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(6829), 1, - anon_sym_LT, - ACTIONS(8849), 1, - anon_sym_COLON_COLON, - STATE(2183), 1, - sym_type_argument_list, - ACTIONS(3662), 3, + STATE(2168), 1, + sym__reserved_identifier, + STATE(6619), 1, + sym_identifier, + STATE(7378), 1, + sym__lambda_parameters, + STATE(7531), 1, + sym_parameter_list, + ACTIONS(3911), 5, + anon_sym_COMMA, + anon_sym_RBRACK, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_LBRACE, - anon_sym_DOT, - STATE(5752), 9, + STATE(5693), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -697562,10 +692690,9 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(3660), 27, + ACTIONS(3909), 26, anon_sym_alias, anon_sym_global, - anon_sym_COLON, anon_sym_file, anon_sym_where, anon_sym_notnull, @@ -697590,7 +692717,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_select, sym__identifier_token, - [217705] = 21, + [213154] = 23, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -697613,25 +692740,29 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, ACTIONS(25), 1, sym__identifier_token, - ACTIONS(5024), 1, + ACTIONS(5166), 1, anon_sym_LBRACK, - ACTIONS(8773), 1, + ACTIONS(8749), 1, + anon_sym_COMMA, + ACTIONS(8751), 1, + anon_sym_RBRACE, + ACTIONS(8753), 1, aux_sym_preproc_if_token1, - STATE(2175), 1, + STATE(2168), 1, sym__reserved_identifier, - STATE(5798), 1, + STATE(5776), 1, aux_sym__class_declaration_initializer_repeat1, - STATE(6051), 1, + STATE(5961), 1, sym__attribute_list, - STATE(6881), 1, + STATE(6727), 1, sym_identifier, - STATE(5934), 2, + STATE(6020), 2, sym_attribute_list, sym_preproc_if_in_attribute_list, - STATE(7164), 2, + STATE(6969), 2, sym_enum_member_declaration, sym_preproc_if_in_enum_member_declaration, - STATE(5753), 9, + STATE(5694), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -697664,7 +692795,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [217800] = 21, + [213255] = 18, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -697685,27 +692816,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(8816), 1, - anon_sym_static, - ACTIONS(8851), 1, - anon_sym_unsafe, - STATE(2175), 1, - sym__reserved_identifier, - STATE(2181), 1, - sym_generic_name, - STATE(5757), 1, - aux_sym_using_directive_repeat1, - STATE(6422), 1, - sym_identifier, - STATE(7242), 1, - sym__name, - STATE(4096), 3, - sym_alias_qualified_name, - sym__simple_name, - sym_qualified_name, - STATE(5754), 9, + ACTIONS(4044), 1, + anon_sym_DASH_GT, + ACTIONS(6601), 1, + anon_sym_LBRACK, + ACTIONS(6603), 1, + anon_sym_STAR, + ACTIONS(6705), 1, + anon_sym_QMARK, + ACTIONS(8755), 1, + anon_sym_DOT, + ACTIONS(3963), 4, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + STATE(5695), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -697715,7 +692841,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(29), 22, + ACTIONS(3961), 26, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -697726,6 +692852,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, @@ -697738,7 +692867,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [217895] = 20, + sym__identifier_token, + [213346] = 39, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -697759,26 +692889,70 @@ 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(2175), 1, - sym__reserved_identifier, - STATE(2181), 1, - sym_generic_name, - STATE(4373), 1, - sym_identifier, - STATE(6062), 1, - aux_sym_using_directive_repeat1, - STATE(7242), 1, - sym__name, - ACTIONS(8816), 2, - anon_sym_unsafe, - anon_sym_static, - STATE(4096), 3, - sym_alias_qualified_name, - sym__simple_name, - sym_qualified_name, - STATE(5755), 9, + ACTIONS(4092), 1, + anon_sym_DOT, + ACTIONS(4094), 1, + anon_sym_DASH_GT, + ACTIONS(5236), 1, + anon_sym_LBRACK, + ACTIONS(5257), 1, + anon_sym_LPAREN, + ACTIONS(5302), 1, + anon_sym_BANG, + ACTIONS(6355), 1, + anon_sym_switch, + ACTIONS(6369), 1, + anon_sym_with, + ACTIONS(6781), 1, + anon_sym_QMARK, + ACTIONS(6787), 1, + anon_sym_SLASH, + ACTIONS(6789), 1, + anon_sym_CARET, + ACTIONS(6791), 1, + anon_sym_PIPE, + ACTIONS(6793), 1, + anon_sym_AMP, + ACTIONS(6797), 1, + anon_sym_GT_GT, + ACTIONS(6803), 1, + anon_sym_DOT_DOT, + ACTIONS(6805), 1, + anon_sym_AMP_AMP, + ACTIONS(6807), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6809), 1, + anon_sym_QMARK_QMARK, + ACTIONS(6811), 1, + anon_sym_as, + ACTIONS(6813), 1, + anon_sym_is, + STATE(2605), 1, + sym_bracketed_argument_list, + STATE(3381), 1, + sym_argument_list, + ACTIONS(5304), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6779), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(6783), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6785), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(6795), 2, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + ACTIONS(6799), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6801), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + STATE(5696), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -697788,30 +692962,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, - [217988] = 21, + [213479] = 39, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -697832,27 +692983,70 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(2967), 1, - sym__identifier_token, - ACTIONS(5024), 1, + ACTIONS(4042), 1, + anon_sym_DOT, + ACTIONS(4044), 1, + anon_sym_DASH_GT, + ACTIONS(5257), 1, + anon_sym_LPAREN, + ACTIONS(5300), 1, anon_sym_LBRACK, - ACTIONS(5040), 1, - aux_sym_preproc_if_token1, - STATE(3691), 1, - sym__reserved_identifier, - STATE(5783), 1, - aux_sym__class_declaration_initializer_repeat1, - STATE(6051), 1, - sym__attribute_list, - STATE(7196), 1, - sym_identifier, - ACTIONS(8853), 2, - anon_sym_in, - anon_sym_out, - STATE(5934), 2, - sym_attribute_list, - sym_preproc_if_in_attribute_list, - STATE(5756), 9, + ACTIONS(5302), 1, + anon_sym_BANG, + ACTIONS(6355), 1, + anon_sym_switch, + ACTIONS(6369), 1, + anon_sym_with, + ACTIONS(6781), 1, + anon_sym_QMARK, + ACTIONS(6787), 1, + anon_sym_SLASH, + ACTIONS(6789), 1, + anon_sym_CARET, + ACTIONS(6791), 1, + anon_sym_PIPE, + ACTIONS(6793), 1, + anon_sym_AMP, + ACTIONS(6797), 1, + anon_sym_GT_GT, + ACTIONS(6803), 1, + anon_sym_DOT_DOT, + ACTIONS(6805), 1, + anon_sym_AMP_AMP, + ACTIONS(6807), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6809), 1, + anon_sym_QMARK_QMARK, + ACTIONS(6811), 1, + anon_sym_as, + ACTIONS(6813), 1, + anon_sym_is, + STATE(2759), 1, + sym_bracketed_argument_list, + STATE(3381), 1, + sym_argument_list, + ACTIONS(5304), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6779), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(6783), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6785), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(6795), 2, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + ACTIONS(6799), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6801), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + STATE(5697), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -697862,30 +693056,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(2971), 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, - [218083] = 20, + [213612] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -697906,26 +693077,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, - STATE(2175), 1, - sym__reserved_identifier, - STATE(2181), 1, - sym_generic_name, - STATE(4373), 1, - sym_identifier, - STATE(6062), 1, - aux_sym_using_directive_repeat1, - STATE(7115), 1, - sym__name, - ACTIONS(8816), 2, - anon_sym_unsafe, - anon_sym_static, - STATE(4096), 3, - sym_alias_qualified_name, - sym__simple_name, - sym_qualified_name, - STATE(5757), 9, + ACTIONS(2951), 2, + anon_sym_while, + anon_sym_else, + STATE(5698), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -697935,30 +693090,136 @@ 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, - [218176] = 23, + ACTIONS(2953), 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(2955), 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, + [213695] = 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(4753), 1, + anon_sym_LPAREN, + ACTIONS(4792), 1, + anon_sym_DOT, + ACTIONS(4794), 1, + anon_sym_DASH_GT, + ACTIONS(4823), 1, + anon_sym_BANG, + ACTIONS(5549), 1, + anon_sym_LBRACK, + ACTIONS(6248), 1, + anon_sym_SLASH, + ACTIONS(6250), 1, + anon_sym_CARET, + ACTIONS(6252), 1, + anon_sym_PIPE, + ACTIONS(6254), 1, + anon_sym_AMP, + ACTIONS(6258), 1, + anon_sym_GT_GT, + ACTIONS(6268), 1, + anon_sym_AMP_AMP, + ACTIONS(6270), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6272), 1, + anon_sym_QMARK_QMARK, + ACTIONS(6355), 1, + anon_sym_switch, + ACTIONS(6369), 1, + anon_sym_with, + ACTIONS(6781), 1, + anon_sym_QMARK, + ACTIONS(6803), 1, + anon_sym_DOT_DOT, + ACTIONS(6811), 1, + anon_sym_as, + ACTIONS(6813), 1, + anon_sym_is, + STATE(2467), 1, + sym_bracketed_argument_list, + STATE(2958), 1, + sym_argument_list, + ACTIONS(4825), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6240), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(6244), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6246), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(6256), 2, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + ACTIONS(6260), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6262), 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, + [213828] = 21, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -697981,27 +693242,26 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, ACTIONS(25), 1, sym__identifier_token, - ACTIONS(5024), 1, - anon_sym_LBRACK, - ACTIONS(5040), 1, - aux_sym_preproc_if_token1, - ACTIONS(8812), 1, - aux_sym_preproc_if_token3, - STATE(2175), 1, + STATE(2168), 1, sym__reserved_identifier, - STATE(5786), 1, - aux_sym__class_declaration_initializer_repeat1, - STATE(5934), 1, - sym_preproc_if_in_attribute_list, - STATE(6051), 1, - sym__attribute_list, - STATE(6061), 1, - sym_attribute_list, - STATE(6642), 1, + STATE(2170), 1, + sym_generic_name, + STATE(3520), 1, + aux_sym_conversion_operator_declaration_repeat1, + STATE(4370), 1, sym_identifier, - STATE(7440), 1, - sym_enum_member_declaration, - STATE(5758), 9, + STATE(5886), 1, + sym_explicit_interface_specifier, + STATE(7369), 1, + sym__name, + ACTIONS(5579), 2, + anon_sym_operator, + anon_sym_checked, + STATE(4068), 3, + sym_alias_qualified_name, + sym__simple_name, + sym_qualified_name, + STATE(5700), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -698034,7 +693294,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [218275] = 17, + [213924] = 21, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -698055,22 +693315,28 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(3669), 1, - anon_sym_COLON_COLON, - ACTIONS(6311), 1, - anon_sym_LT, - ACTIONS(8855), 1, - anon_sym_EQ, - STATE(4063), 1, - sym_type_argument_list, - ACTIONS(3662), 6, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_QMARK, - anon_sym_STAR, - anon_sym_DOT, - STATE(5759), 9, + ACTIONS(25), 1, + sym__identifier_token, + STATE(2168), 1, + sym__reserved_identifier, + STATE(2170), 1, + sym_generic_name, + STATE(3536), 1, + aux_sym_conversion_operator_declaration_repeat1, + STATE(4370), 1, + sym_identifier, + STATE(5886), 1, + sym_explicit_interface_specifier, + STATE(7369), 1, + sym__name, + ACTIONS(5579), 2, + anon_sym_operator, + anon_sym_checked, + STATE(4068), 3, + sym_alias_qualified_name, + sym__simple_name, + sym_qualified_name, + STATE(5701), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -698080,7 +693346,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(3660), 23, + ACTIONS(29), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -698103,8 +693369,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - sym__identifier_token, - [218362] = 20, + [214020] = 22, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -698125,25 +693390,29 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(25), 1, + ACTIONS(2965), 1, sym__identifier_token, - ACTIONS(8857), 1, - anon_sym_RBRACK, - STATE(2175), 1, + ACTIONS(5166), 1, + anon_sym_LBRACK, + ACTIONS(5182), 1, + aux_sym_preproc_if_token1, + STATE(3654), 1, sym__reserved_identifier, - STATE(2181), 1, - sym_generic_name, - STATE(4373), 1, + STATE(5734), 1, + aux_sym__class_declaration_initializer_repeat1, + STATE(5961), 1, + sym__attribute_list, + STATE(6757), 1, + sym_type_parameter, + STATE(7111), 1, sym_identifier, - STATE(6519), 1, - sym__name, - STATE(7204), 1, - sym_attribute, - STATE(4096), 3, - sym_alias_qualified_name, - sym__simple_name, - sym_qualified_name, - STATE(5760), 9, + ACTIONS(5176), 2, + anon_sym_in, + anon_sym_out, + STATE(6020), 2, + sym_attribute_list, + sym_preproc_if_in_attribute_list, + STATE(5702), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -698153,7 +693422,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(29), 22, + ACTIONS(2969), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -698176,7 +693445,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [218454] = 20, + [214118] = 22, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -698199,23 +693468,27 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, ACTIONS(25), 1, sym__identifier_token, - ACTIONS(8859), 1, - anon_sym_RBRACK, - STATE(2175), 1, + ACTIONS(8310), 1, + anon_sym_LPAREN, + STATE(2168), 1, sym__reserved_identifier, - STATE(2181), 1, + STATE(2170), 1, sym_generic_name, - STATE(4373), 1, + STATE(6097), 1, + sym_explicit_interface_specifier, + STATE(6267), 1, sym_identifier, - STATE(6519), 1, + STATE(6504), 1, + sym_tuple_pattern, + STATE(6838), 1, + sym_variable_declarator, + STATE(7353), 1, sym__name, - STATE(7204), 1, - sym_attribute, - STATE(4096), 3, + STATE(4068), 3, sym_alias_qualified_name, sym__simple_name, sym_qualified_name, - STATE(5761), 9, + STATE(5703), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -698248,7 +693521,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [218546] = 20, + [214216] = 18, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -698269,25 +693542,21 @@ 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(8861), 1, - anon_sym_RBRACK, - STATE(2175), 1, - sym__reserved_identifier, - STATE(2181), 1, - sym_generic_name, - STATE(4373), 1, - sym_identifier, - STATE(6519), 1, - sym__name, - STATE(7204), 1, - sym_attribute, - STATE(4096), 3, - sym_alias_qualified_name, - sym__simple_name, - sym_qualified_name, - STATE(5762), 9, + ACTIONS(4044), 1, + anon_sym_DASH_GT, + ACTIONS(6601), 1, + anon_sym_LBRACK, + ACTIONS(6603), 1, + anon_sym_STAR, + ACTIONS(6705), 1, + anon_sym_QMARK, + ACTIONS(8757), 1, + anon_sym_DOT, + ACTIONS(3963), 3, + anon_sym_COLON, + anon_sym_LPAREN, + anon_sym_LBRACE, + STATE(5704), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -698297,7 +693566,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(29), 22, + ACTIONS(3961), 26, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -698308,6 +693577,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, @@ -698320,7 +693592,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [218638] = 17, + sym__identifier_token, + [214306] = 18, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -698341,21 +693614,22 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(3667), 1, - anon_sym_EQ_GT, - ACTIONS(3669), 1, + ACTIONS(3653), 1, anon_sym_COLON_COLON, - ACTIONS(6311), 1, + ACTIONS(6230), 1, anon_sym_LT, - STATE(4063), 1, + ACTIONS(8759), 1, + anon_sym_LPAREN, + STATE(4054), 1, sym_type_argument_list, - ACTIONS(3662), 5, + STATE(6523), 1, + sym_parameter_list, + ACTIONS(3640), 4, anon_sym_LBRACK, - anon_sym_LPAREN, anon_sym_QMARK, anon_sym_STAR, anon_sym_DOT, - STATE(5763), 9, + STATE(5705), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -698365,13 +693639,15 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(3660), 23, + ACTIONS(3638), 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, @@ -698389,7 +693665,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_select, sym__identifier_token, - [218724] = 20, + [214396] = 18, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -698410,25 +693686,21 @@ 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(8863), 1, - anon_sym_RBRACK, - STATE(2175), 1, - sym__reserved_identifier, - STATE(2181), 1, - sym_generic_name, - STATE(4373), 1, - sym_identifier, - STATE(6519), 1, - sym__name, - STATE(7204), 1, - sym_attribute, - STATE(4096), 3, - sym_alias_qualified_name, - sym__simple_name, - sym_qualified_name, - STATE(5764), 9, + ACTIONS(4044), 1, + anon_sym_DASH_GT, + ACTIONS(6601), 1, + anon_sym_LBRACK, + ACTIONS(6603), 1, + anon_sym_STAR, + ACTIONS(6705), 1, + anon_sym_QMARK, + ACTIONS(8762), 1, + anon_sym_DOT, + ACTIONS(3963), 3, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_EQ_GT, + STATE(5706), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -698438,7 +693710,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(29), 22, + ACTIONS(3961), 26, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -698449,6 +693721,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, @@ -698461,7 +693736,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [218816] = 20, + sym__identifier_token, + [214486] = 22, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -698484,23 +693760,27 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, ACTIONS(25), 1, sym__identifier_token, - ACTIONS(8865), 1, - anon_sym_RBRACK, - STATE(2175), 1, + ACTIONS(8310), 1, + anon_sym_LPAREN, + STATE(2168), 1, sym__reserved_identifier, - STATE(2181), 1, + STATE(2170), 1, sym_generic_name, - STATE(4373), 1, + STATE(6054), 1, + sym_explicit_interface_specifier, + STATE(6266), 1, sym_identifier, - STATE(6519), 1, + STATE(6504), 1, + sym_tuple_pattern, + STATE(6838), 1, + sym_variable_declarator, + STATE(7353), 1, sym__name, - STATE(7204), 1, - sym_attribute, - STATE(4096), 3, + STATE(4068), 3, sym_alias_qualified_name, sym__simple_name, sym_qualified_name, - STATE(5765), 9, + STATE(5707), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -698533,7 +693813,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [218908] = 20, + [214584] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -698554,25 +693834,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(8867), 1, - anon_sym_RBRACK, - STATE(2175), 1, - sym__reserved_identifier, - STATE(2181), 1, - sym_generic_name, - STATE(4373), 1, - sym_identifier, - STATE(6519), 1, - sym__name, - STATE(7204), 1, - sym_attribute, - STATE(4096), 3, - sym_alias_qualified_name, - sym__simple_name, - sym_qualified_name, - STATE(5766), 9, + ACTIONS(8764), 1, + anon_sym_SEMI, + STATE(5708), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -698582,30 +693846,42 @@ 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, - [219000] = 20, + ACTIONS(5144), 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(5142), 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, + [214666] = 20, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -698626,25 +693902,26 @@ 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(8869), 1, - anon_sym_RBRACK, - STATE(2175), 1, - sym__reserved_identifier, - STATE(2181), 1, - sym_generic_name, - STATE(4373), 1, - sym_identifier, - STATE(6519), 1, - sym__name, - STATE(7204), 1, - sym_attribute, - STATE(4096), 3, - sym_alias_qualified_name, - sym__simple_name, - sym_qualified_name, - STATE(5767), 9, + ACTIONS(3653), 1, + anon_sym_COLON_COLON, + ACTIONS(6230), 1, + anon_sym_LT, + ACTIONS(8766), 1, + anon_sym_EQ, + ACTIONS(8768), 1, + anon_sym_COMMA, + ACTIONS(8771), 1, + anon_sym_RPAREN, + STATE(4054), 1, + sym_type_argument_list, + STATE(6921), 1, + aux_sym_tuple_pattern_repeat1, + ACTIONS(3640), 4, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_DOT, + STATE(5709), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -698654,7 +693931,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(29), 22, + ACTIONS(3638), 23, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -698677,7 +693954,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [219092] = 14, + sym__identifier_token, + [214760] = 18, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -698698,13 +693976,21 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4885), 1, - aux_sym_preproc_if_token3, - ACTIONS(4701), 3, + ACTIONS(4044), 1, + anon_sym_DASH_GT, + ACTIONS(6601), 1, anon_sym_LBRACK, + ACTIONS(6603), 1, + anon_sym_STAR, + ACTIONS(6705), 1, + anon_sym_QMARK, + ACTIONS(8774), 1, + anon_sym_DOT, + ACTIONS(3963), 3, + anon_sym_COLON, anon_sym_LPAREN, - aux_sym_preproc_if_token1, - STATE(5768), 9, + anon_sym_LBRACE, + STATE(5710), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -698714,22 +694000,20 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(4699), 28, + ACTIONS(3961), 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, @@ -698743,7 +694027,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_select, sym__identifier_token, - [219172] = 20, + [214850] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -698764,25 +694048,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(8871), 1, - anon_sym_RBRACK, - STATE(2175), 1, - sym__reserved_identifier, - STATE(2181), 1, - sym_generic_name, - STATE(4373), 1, - sym_identifier, - STATE(6519), 1, - sym__name, - STATE(7204), 1, - sym_attribute, - STATE(4096), 3, - sym_alias_qualified_name, - sym__simple_name, - sym_qualified_name, - STATE(5769), 9, + ACTIONS(8776), 1, + anon_sym_SEMI, + STATE(5711), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -698792,30 +694060,42 @@ 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, - [219264] = 20, + ACTIONS(5144), 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(5142), 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, + [214932] = 22, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -698838,23 +694118,27 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, ACTIONS(25), 1, sym__identifier_token, - ACTIONS(8873), 1, - anon_sym_RBRACK, - STATE(2175), 1, + ACTIONS(8310), 1, + anon_sym_LPAREN, + STATE(2168), 1, sym__reserved_identifier, - STATE(2181), 1, + STATE(2170), 1, sym_generic_name, - STATE(4373), 1, + STATE(6085), 1, + sym_explicit_interface_specifier, + STATE(6263), 1, sym_identifier, - STATE(6519), 1, + STATE(6504), 1, + sym_tuple_pattern, + STATE(6838), 1, + sym_variable_declarator, + STATE(7353), 1, sym__name, - STATE(7204), 1, - sym_attribute, - STATE(4096), 3, + STATE(4068), 3, sym_alias_qualified_name, sym__simple_name, sym_qualified_name, - STATE(5770), 9, + STATE(5712), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -698887,7 +694171,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [219356] = 20, + [215030] = 22, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -698908,24 +694192,29 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4102), 1, - anon_sym_DASH_GT, - ACTIONS(6678), 1, + ACTIONS(25), 1, + sym__identifier_token, + ACTIONS(5166), 1, anon_sym_LBRACK, - ACTIONS(6680), 1, - anon_sym_STAR, - ACTIONS(6716), 1, - anon_sym_QMARK, - ACTIONS(8028), 1, - anon_sym_DOT, - ACTIONS(8646), 1, - anon_sym_LPAREN, - STATE(7102), 1, - sym_attribute_argument_list, - ACTIONS(8875), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - STATE(5771), 9, + ACTIONS(8753), 1, + aux_sym_preproc_if_token1, + ACTIONS(8778), 1, + anon_sym_RBRACE, + STATE(2168), 1, + sym__reserved_identifier, + STATE(5776), 1, + aux_sym__class_declaration_initializer_repeat1, + STATE(5961), 1, + sym__attribute_list, + STATE(6727), 1, + sym_identifier, + STATE(6020), 2, + sym_attribute_list, + sym_preproc_if_in_attribute_list, + STATE(7092), 2, + sym_enum_member_declaration, + sym_preproc_if_in_enum_member_declaration, + STATE(5713), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -698935,7 +694224,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(4016), 23, + ACTIONS(29), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -698958,8 +694247,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - sym__identifier_token, - [219448] = 20, + [215128] = 21, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -698982,23 +694270,26 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, ACTIONS(25), 1, sym__identifier_token, - ACTIONS(8877), 1, - anon_sym_RBRACK, - STATE(2175), 1, + STATE(2168), 1, sym__reserved_identifier, - STATE(2181), 1, + STATE(2170), 1, sym_generic_name, - STATE(4373), 1, + STATE(3538), 1, + aux_sym_conversion_operator_declaration_repeat1, + STATE(4370), 1, sym_identifier, - STATE(6519), 1, + STATE(5886), 1, + sym_explicit_interface_specifier, + STATE(7369), 1, sym__name, - STATE(7204), 1, - sym_attribute, - STATE(4096), 3, + ACTIONS(5579), 2, + anon_sym_operator, + anon_sym_checked, + STATE(4068), 3, sym_alias_qualified_name, sym__simple_name, sym_qualified_name, - STATE(5772), 9, + STATE(5714), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -699031,7 +694322,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [219540] = 20, + [215224] = 22, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -699052,25 +694343,29 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(25), 1, + ACTIONS(2965), 1, sym__identifier_token, - ACTIONS(8879), 1, - anon_sym_RBRACK, - STATE(2175), 1, + ACTIONS(5166), 1, + anon_sym_LBRACK, + ACTIONS(5182), 1, + aux_sym_preproc_if_token1, + STATE(3654), 1, sym__reserved_identifier, - STATE(2181), 1, - sym_generic_name, - STATE(4373), 1, + STATE(5734), 1, + aux_sym__class_declaration_initializer_repeat1, + STATE(5961), 1, + sym__attribute_list, + STATE(7111), 1, sym_identifier, - STATE(6519), 1, - sym__name, - STATE(7204), 1, - sym_attribute, - STATE(4096), 3, - sym_alias_qualified_name, - sym__simple_name, - sym_qualified_name, - STATE(5773), 9, + STATE(7142), 1, + sym_type_parameter, + ACTIONS(5176), 2, + anon_sym_in, + anon_sym_out, + STATE(6020), 2, + sym_attribute_list, + sym_preproc_if_in_attribute_list, + STATE(5715), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -699080,7 +694375,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(29), 22, + ACTIONS(2969), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -699103,7 +694398,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [219632] = 20, + [215322] = 18, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -699124,25 +694419,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(8881), 1, + ACTIONS(3653), 1, + anon_sym_COLON_COLON, + ACTIONS(6230), 1, + anon_sym_LT, + ACTIONS(8766), 1, + anon_sym_EQ, + STATE(4054), 1, + sym_type_argument_list, + ACTIONS(8780), 3, + anon_sym_COMMA, anon_sym_RBRACK, - STATE(2175), 1, - sym__reserved_identifier, - STATE(2181), 1, - sym_generic_name, - STATE(4373), 1, - sym_identifier, - STATE(6519), 1, - sym__name, - STATE(7204), 1, - sym_attribute, - STATE(4096), 3, - sym_alias_qualified_name, - sym__simple_name, - sym_qualified_name, - STATE(5774), 9, + anon_sym_RPAREN, + ACTIONS(3640), 4, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_DOT, + STATE(5716), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -699152,7 +694446,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(29), 22, + ACTIONS(3638), 23, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -699175,7 +694469,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [219724] = 20, + sym__identifier_token, + [215412] = 18, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -699196,25 +694491,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(8883), 1, - anon_sym_RBRACK, - STATE(2175), 1, - sym__reserved_identifier, - STATE(2181), 1, - sym_generic_name, - STATE(4373), 1, - sym_identifier, - STATE(6519), 1, - sym__name, - STATE(7204), 1, - sym_attribute, - STATE(4096), 3, - sym_alias_qualified_name, - sym__simple_name, - sym_qualified_name, - STATE(5775), 9, + ACTIONS(3653), 1, + anon_sym_COLON_COLON, + ACTIONS(6230), 1, + anon_sym_LT, + ACTIONS(8759), 1, + anon_sym_LPAREN, + STATE(4054), 1, + sym_type_argument_list, + STATE(6502), 1, + sym_parameter_list, + ACTIONS(3640), 4, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_DOT, + STATE(5717), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -699224,13 +694516,15 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(29), 22, + ACTIONS(3638), 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, @@ -699247,7 +694541,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [219816] = 20, + sym__identifier_token, + [215502] = 22, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -699270,23 +694565,27 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, ACTIONS(25), 1, sym__identifier_token, - ACTIONS(8885), 1, - anon_sym_RBRACK, - STATE(2175), 1, + ACTIONS(5166), 1, + anon_sym_LBRACK, + ACTIONS(8753), 1, + aux_sym_preproc_if_token1, + ACTIONS(8782), 1, + anon_sym_RBRACE, + STATE(2168), 1, sym__reserved_identifier, - STATE(2181), 1, - sym_generic_name, - STATE(4373), 1, + STATE(5776), 1, + aux_sym__class_declaration_initializer_repeat1, + STATE(5961), 1, + sym__attribute_list, + STATE(6727), 1, sym_identifier, - STATE(6519), 1, - sym__name, - STATE(7204), 1, - sym_attribute, - STATE(4096), 3, - sym_alias_qualified_name, - sym__simple_name, - sym_qualified_name, - STATE(5776), 9, + STATE(6020), 2, + sym_attribute_list, + sym_preproc_if_in_attribute_list, + STATE(7092), 2, + sym_enum_member_declaration, + sym_preproc_if_in_enum_member_declaration, + STATE(5718), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -699319,7 +694618,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [219908] = 20, + [215600] = 18, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -699340,25 +694639,21 @@ 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(8887), 1, - anon_sym_RBRACK, - STATE(2175), 1, - sym__reserved_identifier, - STATE(2181), 1, - sym_generic_name, - STATE(4373), 1, - sym_identifier, - STATE(6519), 1, - sym__name, - STATE(7204), 1, - sym_attribute, - STATE(4096), 3, - sym_alias_qualified_name, - sym__simple_name, - sym_qualified_name, - STATE(5777), 9, + ACTIONS(4044), 1, + anon_sym_DASH_GT, + ACTIONS(6601), 1, + anon_sym_LBRACK, + ACTIONS(6603), 1, + anon_sym_STAR, + ACTIONS(6705), 1, + anon_sym_QMARK, + ACTIONS(8784), 1, + anon_sym_DOT, + ACTIONS(3963), 3, + anon_sym_COLON, + anon_sym_LPAREN, + anon_sym_LBRACE, + STATE(5719), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -699368,7 +694663,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(29), 22, + ACTIONS(3961), 26, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -699379,6 +694674,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, @@ -699391,7 +694689,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [220000] = 20, + sym__identifier_token, + [215690] = 18, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -699412,25 +694711,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(8889), 1, + ACTIONS(3653), 1, + anon_sym_COLON_COLON, + ACTIONS(6230), 1, + anon_sym_LT, + ACTIONS(8786), 1, + anon_sym_EQ, + STATE(4054), 1, + sym_type_argument_list, + ACTIONS(8747), 3, + anon_sym_COMMA, anon_sym_RBRACK, - STATE(2175), 1, - sym__reserved_identifier, - STATE(2181), 1, - sym_generic_name, - STATE(4373), 1, - sym_identifier, - STATE(6519), 1, - sym__name, - STATE(7204), 1, - sym_attribute, - STATE(4096), 3, - sym_alias_qualified_name, - sym__simple_name, - sym_qualified_name, - STATE(5778), 9, + anon_sym_RPAREN, + ACTIONS(3640), 4, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_DOT, + STATE(5720), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -699440,7 +694738,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(29), 22, + ACTIONS(3638), 23, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -699463,7 +694761,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [220092] = 20, + sym__identifier_token, + [215780] = 18, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -699484,25 +694783,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(8891), 1, - anon_sym_RBRACK, - STATE(2175), 1, - sym__reserved_identifier, - STATE(2181), 1, - sym_generic_name, - STATE(4373), 1, - sym_identifier, - STATE(6519), 1, - sym__name, - STATE(7204), 1, - sym_attribute, - STATE(4096), 3, - sym_alias_qualified_name, - sym__simple_name, - sym_qualified_name, - STATE(5779), 9, + ACTIONS(3653), 1, + anon_sym_COLON_COLON, + ACTIONS(6230), 1, + anon_sym_LT, + ACTIONS(8759), 1, + anon_sym_LPAREN, + STATE(4054), 1, + sym_type_argument_list, + STATE(6464), 1, + sym_parameter_list, + ACTIONS(3640), 4, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_DOT, + STATE(5721), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -699512,13 +694808,15 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(29), 22, + ACTIONS(3638), 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, @@ -699535,7 +694833,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [220184] = 20, + sym__identifier_token, + [215870] = 21, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -699556,25 +694855,28 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(25), 1, + ACTIONS(3877), 1, + sym_discard, + ACTIONS(6969), 1, sym__identifier_token, - ACTIONS(8893), 1, - anon_sym_RBRACK, - STATE(2175), 1, + ACTIONS(7916), 1, + anon_sym_LPAREN, + STATE(2565), 1, sym__reserved_identifier, - STATE(2181), 1, - sym_generic_name, - STATE(4373), 1, + STATE(3352), 1, + sym_parenthesized_variable_designation, + STATE(3355), 1, sym_identifier, - STATE(6519), 1, - sym__name, - STATE(7204), 1, - sym_attribute, - STATE(4096), 3, - sym_alias_qualified_name, - sym__simple_name, - sym_qualified_name, - STATE(5780), 9, + STATE(3413), 1, + sym__variable_designation, + ACTIONS(3885), 2, + anon_sym_COLON, + anon_sym_EQ_GT, + ACTIONS(3887), 3, + anon_sym_when, + anon_sym_and, + anon_sym_or, + STATE(5722), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -699584,7 +694886,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(29), 22, + ACTIONS(6971), 21, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -699594,7 +694896,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, @@ -699607,7 +694908,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [220276] = 14, + [215965] = 21, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -699628,16 +694929,28 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8897), 1, + ACTIONS(3877), 1, + sym_discard, + ACTIONS(6969), 1, + sym__identifier_token, + ACTIONS(7916), 1, anon_sym_LPAREN, - ACTIONS(8899), 6, - anon_sym_ref, - anon_sym_readonly, - anon_sym_in, - anon_sym_out, - anon_sym_this, - anon_sym_scoped, - STATE(5781), 10, + STATE(2565), 1, + sym__reserved_identifier, + STATE(3352), 1, + sym_parenthesized_variable_designation, + STATE(3355), 1, + sym_identifier, + STATE(3449), 1, + sym__variable_designation, + ACTIONS(3893), 2, + anon_sym_COLON, + anon_sym_EQ_GT, + ACTIONS(3895), 3, + anon_sym_when, + anon_sym_and, + anon_sym_or, + STATE(5723), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -699647,19 +694960,16 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - aux_sym__parameter_type_with_modifiers_repeat1, - ACTIONS(8895), 24, + ACTIONS(6971), 21, anon_sym_alias, anon_sym_global, - anon_sym_delegate, 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, @@ -699672,8 +694982,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - sym__identifier_token, - [220356] = 20, + [216060] = 23, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -699696,23 +695005,27 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, ACTIONS(25), 1, sym__identifier_token, - ACTIONS(8902), 1, - anon_sym_RBRACK, - STATE(2175), 1, + ACTIONS(5166), 1, + anon_sym_LBRACK, + ACTIONS(5182), 1, + aux_sym_preproc_if_token1, + ACTIONS(8788), 1, + aux_sym_preproc_if_token3, + STATE(2168), 1, sym__reserved_identifier, - STATE(2181), 1, - sym_generic_name, - STATE(4373), 1, + STATE(5783), 1, + aux_sym__class_declaration_initializer_repeat1, + STATE(5961), 1, + sym__attribute_list, + STATE(6020), 1, + sym_preproc_if_in_attribute_list, + STATE(6052), 1, + sym_attribute_list, + STATE(6717), 1, sym_identifier, - STATE(6519), 1, - sym__name, - STATE(7204), 1, - sym_attribute, - STATE(4096), 3, - sym_alias_qualified_name, - sym__simple_name, - sym_qualified_name, - STATE(5782), 9, + STATE(7604), 1, + sym_enum_member_declaration, + STATE(5724), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -699745,7 +695058,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [220448] = 16, + [216159] = 20, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -699766,16 +695079,26 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8904), 1, - anon_sym_LBRACK, - ACTIONS(8907), 1, - aux_sym_preproc_if_token1, + ACTIONS(25), 1, + sym__identifier_token, + STATE(2168), 1, + sym__reserved_identifier, + STATE(2170), 1, + sym_generic_name, + STATE(4370), 1, + sym_identifier, STATE(6051), 1, - sym__attribute_list, - STATE(5934), 2, - sym_attribute_list, - sym_preproc_if_in_attribute_list, - STATE(5783), 10, + aux_sym_using_directive_repeat1, + STATE(7193), 1, + sym__name, + ACTIONS(8790), 2, + anon_sym_unsafe, + anon_sym_static, + STATE(4068), 3, + sym_alias_qualified_name, + sym__simple_name, + sym_qualified_name, + STATE(5725), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -699785,13 +695108,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(4721), 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, @@ -699811,8 +695131,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - sym__identifier_token, - [220531] = 19, + [216252] = 21, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -699835,21 +695154,25 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, ACTIONS(25), 1, sym__identifier_token, - STATE(2175), 1, + ACTIONS(8790), 1, + anon_sym_static, + ACTIONS(8792), 1, + anon_sym_unsafe, + STATE(2168), 1, sym__reserved_identifier, - STATE(2181), 1, + STATE(2170), 1, sym_generic_name, - STATE(4373), 1, + STATE(5733), 1, + aux_sym_using_directive_repeat1, + STATE(6445), 1, sym_identifier, - STATE(6328), 1, + STATE(7132), 1, sym__name, - STATE(6609), 1, - sym_primary_constructor_base_type, - STATE(4096), 3, + STATE(4068), 3, sym_alias_qualified_name, sym__simple_name, sym_qualified_name, - STATE(5784), 9, + STATE(5726), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -699882,7 +695205,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [220620] = 17, + [216347] = 20, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -699903,20 +695226,26 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(3669), 1, - anon_sym_COLON_COLON, - ACTIONS(6311), 1, - anon_sym_LT, - ACTIONS(8910), 1, - anon_sym_in, - STATE(4063), 1, - sym_type_argument_list, - ACTIONS(3662), 4, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_STAR, - anon_sym_DOT, - STATE(5785), 9, + ACTIONS(25), 1, + sym__identifier_token, + STATE(2168), 1, + sym__reserved_identifier, + STATE(2170), 1, + sym_generic_name, + STATE(4370), 1, + sym_identifier, + STATE(6051), 1, + aux_sym_using_directive_repeat1, + STATE(7132), 1, + sym__name, + ACTIONS(8790), 2, + anon_sym_unsafe, + anon_sym_static, + STATE(4068), 3, + sym_alias_qualified_name, + sym__simple_name, + sym_qualified_name, + STATE(5727), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -699926,7 +695255,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(3660), 23, + ACTIONS(29), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -699949,8 +695278,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - sym__identifier_token, - [220705] = 20, + [216440] = 20, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -699973,22 +695301,24 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, ACTIONS(25), 1, sym__identifier_token, - ACTIONS(5024), 1, - anon_sym_LBRACK, - ACTIONS(5040), 1, - aux_sym_preproc_if_token1, - STATE(2175), 1, + STATE(2168), 1, sym__reserved_identifier, - STATE(5783), 1, - aux_sym__class_declaration_initializer_repeat1, - STATE(6051), 1, - sym__attribute_list, - STATE(6656), 1, + STATE(2170), 1, + sym_generic_name, + STATE(4370), 1, sym_identifier, - STATE(5934), 2, - sym_attribute_list, - sym_preproc_if_in_attribute_list, - STATE(5786), 9, + STATE(6051), 1, + aux_sym_using_directive_repeat1, + STATE(7143), 1, + sym__name, + ACTIONS(8790), 2, + anon_sym_unsafe, + anon_sym_static, + STATE(4068), 3, + sym_alias_qualified_name, + sym__simple_name, + sym_qualified_name, + STATE(5728), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -700021,7 +695351,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [220796] = 19, + [216533] = 19, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -700042,23 +695372,100 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(25), 1, + ACTIONS(3653), 1, + anon_sym_COLON_COLON, + ACTIONS(3844), 1, + anon_sym_COMMA, + ACTIONS(6230), 1, + anon_sym_LT, + ACTIONS(8766), 1, + anon_sym_EQ, + ACTIONS(8780), 1, + anon_sym_RPAREN, + STATE(4054), 1, + sym_type_argument_list, + ACTIONS(3640), 4, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_DOT, + STATE(5729), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + ACTIONS(3638), 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, + [216624] = 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(3877), 1, + sym_discard, + ACTIONS(6969), 1, sym__identifier_token, - STATE(2175), 1, + ACTIONS(7916), 1, + anon_sym_LPAREN, + STATE(2565), 1, sym__reserved_identifier, - STATE(2181), 1, - sym_generic_name, - STATE(4373), 1, + STATE(3352), 1, + sym_parenthesized_variable_designation, + STATE(3355), 1, sym_identifier, - STATE(6519), 1, - sym__name, - STATE(6799), 1, - sym_attribute, - STATE(4096), 3, - sym_alias_qualified_name, - sym__simple_name, - sym_qualified_name, - STATE(5787), 9, + STATE(3461), 1, + sym__variable_designation, + ACTIONS(3947), 2, + anon_sym_COLON, + anon_sym_EQ_GT, + ACTIONS(3949), 3, + anon_sym_when, + anon_sym_and, + anon_sym_or, + STATE(5730), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -700068,7 +695475,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(29), 22, + ACTIONS(6971), 21, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -700078,7 +695485,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, @@ -700091,7 +695497,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [220885] = 15, + [216719] = 20, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -700112,15 +695518,26 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4094), 1, - anon_sym_EQ_GT, - ACTIONS(5377), 1, - anon_sym_RPAREN, - ACTIONS(4092), 3, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACE, - STATE(5788), 9, + ACTIONS(25), 1, + sym__identifier_token, + STATE(2168), 1, + sym__reserved_identifier, + STATE(2170), 1, + sym_generic_name, + STATE(4370), 1, + sym_identifier, + STATE(6051), 1, + aux_sym_using_directive_repeat1, + STATE(7046), 1, + sym__name, + ACTIONS(8790), 2, + anon_sym_unsafe, + anon_sym_static, + STATE(4068), 3, + sym_alias_qualified_name, + sym__simple_name, + sym_qualified_name, + STATE(5731), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -700130,7 +695547,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(4090), 26, + ACTIONS(29), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -700141,9 +695558,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, @@ -700156,8 +695570,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - sym__identifier_token, - [220966] = 17, + [216812] = 17, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -700178,20 +695591,22 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(3669), 1, + ACTIONS(3653), 1, anon_sym_COLON_COLON, - ACTIONS(6311), 1, + ACTIONS(6230), 1, anon_sym_LT, - ACTIONS(8912), 1, - anon_sym_in, - STATE(4063), 1, + ACTIONS(8794), 1, + anon_sym_EQ, + STATE(4054), 1, sym_type_argument_list, - ACTIONS(3662), 4, + ACTIONS(3640), 6, + anon_sym_SEMI, anon_sym_LBRACK, + anon_sym_LPAREN, anon_sym_QMARK, anon_sym_STAR, anon_sym_DOT, - STATE(5789), 9, + STATE(5732), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -700201,7 +695616,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(3660), 23, + ACTIONS(3638), 23, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -700225,7 +695640,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_select, sym__identifier_token, - [221051] = 13, + [216899] = 20, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -700246,9 +695661,26 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(2733), 1, - anon_sym_LPAREN, - STATE(5790), 9, + ACTIONS(25), 1, + sym__identifier_token, + STATE(2168), 1, + sym__reserved_identifier, + STATE(2170), 1, + sym_generic_name, + STATE(4370), 1, + sym_identifier, + STATE(6051), 1, + aux_sym_using_directive_repeat1, + STATE(7125), 1, + sym__name, + ACTIONS(8790), 2, + anon_sym_unsafe, + anon_sym_static, + STATE(4068), 3, + sym_alias_qualified_name, + sym__simple_name, + sym_qualified_name, + STATE(5733), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -700258,22 +695690,15 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(2693), 30, + ACTIONS(29), 22, 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, @@ -700288,8 +695713,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - sym__identifier_token, - [221128] = 19, + [216992] = 21, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -700310,23 +695734,27 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(25), 1, + ACTIONS(2965), 1, sym__identifier_token, - STATE(2175), 1, + ACTIONS(5166), 1, + anon_sym_LBRACK, + ACTIONS(5182), 1, + aux_sym_preproc_if_token1, + STATE(3654), 1, sym__reserved_identifier, - STATE(2181), 1, - sym_generic_name, - STATE(4373), 1, + STATE(5787), 1, + aux_sym__class_declaration_initializer_repeat1, + STATE(5961), 1, + sym__attribute_list, + STATE(7042), 1, sym_identifier, - STATE(6519), 1, - sym__name, - STATE(6959), 1, - sym_attribute, - STATE(4096), 3, - sym_alias_qualified_name, - sym__simple_name, - sym_qualified_name, - STATE(5791), 9, + ACTIONS(8796), 2, + anon_sym_in, + anon_sym_out, + STATE(6020), 2, + sym_attribute_list, + sym_preproc_if_in_attribute_list, + STATE(5734), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -700336,7 +695764,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(29), 22, + ACTIONS(2969), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -700359,7 +695787,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [221217] = 19, + [217087] = 21, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -700382,21 +695810,25 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, ACTIONS(25), 1, sym__identifier_token, - STATE(2175), 1, + ACTIONS(8790), 1, + anon_sym_static, + ACTIONS(8798), 1, + anon_sym_unsafe, + STATE(2168), 1, sym__reserved_identifier, - STATE(2181), 1, + STATE(2170), 1, sym_generic_name, - STATE(4373), 1, + STATE(5725), 1, + aux_sym_using_directive_repeat1, + STATE(6415), 1, sym_identifier, - STATE(6519), 1, + STATE(7143), 1, sym__name, - STATE(6744), 1, - sym_attribute, - STATE(4096), 3, + STATE(4068), 3, sym_alias_qualified_name, sym__simple_name, sym_qualified_name, - STATE(5792), 9, + STATE(5735), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -700429,7 +695861,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [221306] = 19, + [217182] = 17, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -700450,23 +695882,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(2175), 1, - sym__reserved_identifier, - STATE(2181), 1, - sym_generic_name, - STATE(4373), 1, - sym_identifier, - STATE(6519), 1, - sym__name, - STATE(6871), 1, - sym_attribute, - STATE(4096), 3, - sym_alias_qualified_name, - sym__simple_name, - sym_qualified_name, - STATE(5793), 9, + ACTIONS(6601), 1, + anon_sym_LBRACK, + ACTIONS(6603), 1, + anon_sym_STAR, + ACTIONS(6705), 1, + anon_sym_QMARK, + ACTIONS(8800), 1, + anon_sym_DOT, + ACTIONS(3963), 3, + anon_sym_COLON, + anon_sym_LPAREN, + anon_sym_LBRACE, + STATE(5736), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -700476,7 +695904,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(29), 22, + ACTIONS(3961), 26, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -700487,6 +695915,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, @@ -700499,7 +695930,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [221395] = 19, + sym__identifier_token, + [217269] = 21, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -700522,21 +695954,25 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, ACTIONS(25), 1, sym__identifier_token, - STATE(2175), 1, + ACTIONS(5166), 1, + anon_sym_LBRACK, + ACTIONS(8753), 1, + aux_sym_preproc_if_token1, + STATE(2168), 1, sym__reserved_identifier, - STATE(2181), 1, - sym_generic_name, - STATE(4373), 1, + STATE(5776), 1, + aux_sym__class_declaration_initializer_repeat1, + STATE(5961), 1, + sym__attribute_list, + STATE(6727), 1, sym_identifier, - STATE(6519), 1, - sym__name, - STATE(7012), 1, - sym_attribute, - STATE(4096), 3, - sym_alias_qualified_name, - sym__simple_name, - sym_qualified_name, - STATE(5794), 9, + STATE(6020), 2, + sym_attribute_list, + sym_preproc_if_in_attribute_list, + STATE(7092), 2, + sym_enum_member_declaration, + sym_preproc_if_in_enum_member_declaration, + STATE(5737), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -700569,7 +696005,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [221484] = 19, + [217364] = 16, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -700590,23 +696026,17 @@ 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(2175), 1, - sym__reserved_identifier, - STATE(2181), 1, - sym_generic_name, - STATE(4373), 1, - sym_identifier, - STATE(6519), 1, - sym__name, - STATE(6774), 1, - sym_attribute, - STATE(4096), 3, - sym_alias_qualified_name, - sym__simple_name, - sym_qualified_name, - STATE(5795), 9, + ACTIONS(6891), 1, + anon_sym_LT, + ACTIONS(8802), 1, + anon_sym_COLON_COLON, + STATE(2171), 1, + sym_type_argument_list, + ACTIONS(3640), 3, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_DOT, + STATE(5738), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -700616,9 +696046,10 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(29), 22, + ACTIONS(3638), 27, anon_sym_alias, anon_sym_global, + anon_sym_COLON, anon_sym_file, anon_sym_where, anon_sym_notnull, @@ -700627,6 +696058,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, @@ -700639,7 +696073,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [221573] = 19, + sym__identifier_token, + [217449] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -700660,23 +696095,17 @@ 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(2175), 1, - sym__reserved_identifier, - STATE(2181), 1, - sym_generic_name, - STATE(4373), 1, - sym_identifier, - STATE(6519), 1, - sym__name, - STATE(7204), 1, - sym_attribute, - STATE(4096), 3, - sym_alias_qualified_name, - sym__simple_name, - sym_qualified_name, - STATE(5796), 9, + ACTIONS(8804), 1, + anon_sym_using, + ACTIONS(3429), 7, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_DOT, + anon_sym_COLON_COLON, + STATE(5739), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -700686,13 +696115,15 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(29), 22, + ACTIONS(3431), 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, @@ -700709,7 +696140,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [221662] = 19, + sym__identifier_token, + [217530] = 17, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -700730,23 +696162,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, - STATE(2175), 1, - sym__reserved_identifier, - STATE(2181), 1, - sym_generic_name, - STATE(4373), 1, - sym_identifier, - STATE(6519), 1, - sym__name, - STATE(6952), 1, - sym_attribute, - STATE(4096), 3, - sym_alias_qualified_name, - sym__simple_name, - sym_qualified_name, - STATE(5797), 9, + ACTIONS(3653), 1, + anon_sym_COLON_COLON, + ACTIONS(6230), 1, + anon_sym_LT, + ACTIONS(8806), 1, + anon_sym_EQ, + STATE(4054), 1, + sym_type_argument_list, + ACTIONS(3640), 6, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_DOT, + STATE(5740), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -700756,7 +696187,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(29), 22, + ACTIONS(3638), 23, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -700779,7 +696210,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [221751] = 20, + sym__identifier_token, + [217617] = 19, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -700800,24 +696232,25 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(25), 1, + ACTIONS(8808), 1, sym__identifier_token, - ACTIONS(5024), 1, - anon_sym_LBRACK, - ACTIONS(5040), 1, - aux_sym_preproc_if_token1, - STATE(2175), 1, + ACTIONS(8814), 1, + anon_sym_LPAREN, + STATE(3654), 1, sym__reserved_identifier, - STATE(5783), 1, - aux_sym__class_declaration_initializer_repeat1, - STATE(6051), 1, - sym__attribute_list, - STATE(6735), 1, + STATE(3897), 1, sym_identifier, - STATE(5934), 2, - sym_attribute_list, - sym_preproc_if_in_attribute_list, - STATE(5798), 9, + STATE(4073), 1, + sym_generic_name, + STATE(4147), 1, + sym__simple_name, + ACTIONS(8816), 5, + anon_sym_ref, + anon_sym_delegate, + anon_sym_operator, + anon_sym_checked, + sym_predefined_type, + STATE(5741), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -700827,7 +696260,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(29), 22, + ACTIONS(8811), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -700850,7 +696283,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [221842] = 20, + [217708] = 21, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -700873,21 +696306,25 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, ACTIONS(25), 1, sym__identifier_token, - ACTIONS(7771), 1, - anon_sym_RPAREN, - ACTIONS(8914), 1, - anon_sym_COMMA, - ACTIONS(8916), 1, - anon_sym_LPAREN, - STATE(2175), 1, + ACTIONS(8790), 1, + anon_sym_static, + ACTIONS(8818), 1, + anon_sym_unsafe, + STATE(2168), 1, sym__reserved_identifier, - STATE(6715), 1, + STATE(2170), 1, + sym_generic_name, + STATE(5727), 1, + aux_sym_using_directive_repeat1, + STATE(6440), 1, sym_identifier, - STATE(7311), 1, - sym_parameter_list, - STATE(7536), 1, - sym__lambda_parameters, - STATE(5799), 9, + STATE(7141), 1, + sym__name, + STATE(4068), 3, + sym_alias_qualified_name, + sym__simple_name, + sym_qualified_name, + STATE(5742), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -700920,7 +696357,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [221932] = 20, + [217803] = 22, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -700943,21 +696380,26 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, ACTIONS(25), 1, sym__identifier_token, - ACTIONS(7759), 1, - anon_sym_RPAREN, - ACTIONS(8914), 1, - anon_sym_COMMA, - ACTIONS(8916), 1, - anon_sym_LPAREN, - STATE(2175), 1, + ACTIONS(5166), 1, + anon_sym_LBRACK, + ACTIONS(5182), 1, + aux_sym_preproc_if_token1, + ACTIONS(8788), 1, + aux_sym_preproc_if_token3, + STATE(2168), 1, sym__reserved_identifier, - STATE(6715), 1, + STATE(5783), 1, + aux_sym__class_declaration_initializer_repeat1, + STATE(5961), 1, + sym__attribute_list, + STATE(6717), 1, sym_identifier, - STATE(7311), 1, - sym_parameter_list, - STATE(7536), 1, - sym__lambda_parameters, - STATE(5800), 9, + STATE(7604), 1, + sym_enum_member_declaration, + STATE(6020), 2, + sym_attribute_list, + sym_preproc_if_in_attribute_list, + STATE(5743), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -700990,7 +696432,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [222022] = 20, + [217900] = 21, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -701011,23 +696453,28 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(25), 1, + ACTIONS(3877), 1, + sym_discard, + ACTIONS(6969), 1, sym__identifier_token, - ACTIONS(7657), 1, - anon_sym_RPAREN, - ACTIONS(8914), 1, - anon_sym_COMMA, - ACTIONS(8916), 1, + ACTIONS(7916), 1, anon_sym_LPAREN, - STATE(2175), 1, + STATE(2565), 1, sym__reserved_identifier, - STATE(6715), 1, + STATE(3352), 1, + sym_parenthesized_variable_designation, + STATE(3355), 1, sym_identifier, - STATE(7311), 1, - sym_parameter_list, - STATE(7536), 1, - sym__lambda_parameters, - STATE(5801), 9, + STATE(3411), 1, + sym__variable_designation, + ACTIONS(3939), 2, + anon_sym_COLON, + anon_sym_EQ_GT, + ACTIONS(3941), 3, + anon_sym_when, + anon_sym_and, + anon_sym_or, + STATE(5744), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -701037,7 +696484,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(29), 22, + ACTIONS(6971), 21, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -701047,7 +696494,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, @@ -701060,7 +696506,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [222112] = 20, + [217995] = 19, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -701081,23 +696527,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(8914), 1, + ACTIONS(3653), 1, + anon_sym_COLON_COLON, + ACTIONS(6230), 1, + anon_sym_LT, + ACTIONS(8820), 1, anon_sym_COMMA, - ACTIONS(8916), 1, - anon_sym_LPAREN, - ACTIONS(8918), 1, + ACTIONS(8823), 1, anon_sym_RPAREN, - STATE(2175), 1, - sym__reserved_identifier, - STATE(6715), 1, - sym_identifier, - STATE(7311), 1, - sym_parameter_list, - STATE(7536), 1, - sym__lambda_parameters, - STATE(5802), 9, + STATE(4054), 1, + sym_type_argument_list, + STATE(6921), 1, + aux_sym_tuple_pattern_repeat1, + ACTIONS(3640), 4, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_DOT, + STATE(5745), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -701107,7 +696554,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(29), 22, + ACTIONS(3638), 23, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -701130,7 +696577,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [222202] = 20, + sym__identifier_token, + [218086] = 19, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -701151,23 +696599,25 @@ 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(8914), 1, - anon_sym_COMMA, - ACTIONS(8916), 1, + ACTIONS(8814), 1, anon_sym_LPAREN, - ACTIONS(8920), 1, - anon_sym_RPAREN, - STATE(2175), 1, + ACTIONS(8825), 1, + sym__identifier_token, + STATE(2168), 1, sym__reserved_identifier, - STATE(6715), 1, + STATE(2170), 1, + sym_generic_name, + STATE(4147), 1, + sym__simple_name, + STATE(4457), 1, sym_identifier, - STATE(7311), 1, - sym_parameter_list, - STATE(7536), 1, - sym__lambda_parameters, - STATE(5803), 9, + ACTIONS(8816), 5, + anon_sym_ref, + anon_sym_delegate, + anon_sym_operator, + anon_sym_checked, + sym_predefined_type, + STATE(5746), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -701177,7 +696627,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(29), 22, + ACTIONS(8828), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -701200,7 +696650,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [222292] = 20, + [218177] = 20, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -701223,21 +696673,24 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, ACTIONS(25), 1, sym__identifier_token, - ACTIONS(7829), 1, - anon_sym_RPAREN, - ACTIONS(8914), 1, - anon_sym_COMMA, - ACTIONS(8916), 1, - anon_sym_LPAREN, - STATE(2175), 1, + STATE(2168), 1, sym__reserved_identifier, - STATE(6715), 1, + STATE(2170), 1, + sym_generic_name, + STATE(4370), 1, sym_identifier, - STATE(7311), 1, - sym_parameter_list, - STATE(7536), 1, - sym__lambda_parameters, - STATE(5804), 9, + STATE(6051), 1, + aux_sym_using_directive_repeat1, + STATE(7089), 1, + sym__name, + ACTIONS(8790), 2, + anon_sym_unsafe, + anon_sym_static, + STATE(4068), 3, + sym_alias_qualified_name, + sym__simple_name, + sym_qualified_name, + STATE(5747), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -701270,7 +696723,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [222382] = 17, + [218270] = 21, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -701291,19 +696744,27 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4705), 1, - aux_sym_preproc_else_token1, - ACTIONS(4707), 1, - aux_sym_preproc_elif_token1, - ACTIONS(8922), 1, - aux_sym_preproc_if_token3, - ACTIONS(4701), 2, - anon_sym_LBRACK, - aux_sym_preproc_if_token1, - STATE(7378), 2, - sym_preproc_else_in_attribute_list, - sym_preproc_elif_in_attribute_list, - STATE(5805), 9, + ACTIONS(25), 1, + sym__identifier_token, + ACTIONS(8790), 1, + anon_sym_static, + ACTIONS(8831), 1, + anon_sym_unsafe, + STATE(2168), 1, + sym__reserved_identifier, + STATE(2170), 1, + sym_generic_name, + STATE(5747), 1, + aux_sym_using_directive_repeat1, + STATE(6385), 1, + sym_identifier, + STATE(7046), 1, + sym__name, + STATE(4068), 3, + sym_alias_qualified_name, + sym__simple_name, + sym_qualified_name, + STATE(5748), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -701313,7 +696774,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(4699), 23, + ACTIONS(29), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -701336,8 +696797,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - sym__identifier_token, - [222466] = 20, + [218365] = 20, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -701360,21 +696820,23 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, ACTIONS(25), 1, sym__identifier_token, - ACTIONS(8924), 1, - anon_sym_LPAREN, - STATE(2175), 1, + ACTIONS(8833), 1, + anon_sym_RBRACK, + STATE(2168), 1, sym__reserved_identifier, - STATE(6417), 1, + STATE(2170), 1, + sym_generic_name, + STATE(4370), 1, sym_identifier, - STATE(6521), 1, - sym_tuple_pattern, - STATE(6944), 1, - sym_variable_declarator, - STATE(7311), 1, - sym_parameter_list, - STATE(7536), 1, - sym__lambda_parameters, - STATE(5806), 9, + STATE(6503), 1, + sym__name, + STATE(7138), 1, + sym_attribute, + STATE(4068), 3, + sym_alias_qualified_name, + sym__simple_name, + sym_qualified_name, + STATE(5749), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -701407,7 +696869,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [222556] = 20, + [218457] = 20, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -701430,21 +696892,23 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, ACTIONS(25), 1, sym__identifier_token, - ACTIONS(8914), 1, - anon_sym_COMMA, - ACTIONS(8916), 1, - anon_sym_LPAREN, - ACTIONS(8926), 1, - anon_sym_RPAREN, - STATE(2175), 1, + ACTIONS(8835), 1, + anon_sym_RBRACK, + STATE(2168), 1, sym__reserved_identifier, - STATE(6715), 1, + STATE(2170), 1, + sym_generic_name, + STATE(4370), 1, sym_identifier, - STATE(7311), 1, - sym_parameter_list, - STATE(7536), 1, - sym__lambda_parameters, - STATE(5807), 9, + STATE(6503), 1, + sym__name, + STATE(7138), 1, + sym_attribute, + STATE(4068), 3, + sym_alias_qualified_name, + sym__simple_name, + sym_qualified_name, + STATE(5750), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -701477,7 +696941,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [222646] = 13, + [218549] = 20, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -701498,13 +696962,25 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4759), 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(5808), 9, + ACTIONS(25), 1, + sym__identifier_token, + ACTIONS(8837), 1, + anon_sym_RBRACK, + STATE(2168), 1, + sym__reserved_identifier, + STATE(2170), 1, + sym_generic_name, + STATE(4370), 1, + sym_identifier, + STATE(6503), 1, + sym__name, + STATE(7138), 1, + sym_attribute, + STATE(4068), 3, + sym_alias_qualified_name, + sym__simple_name, + sym_qualified_name, + STATE(5751), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -701514,12 +696990,10 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(4757), 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, @@ -701539,8 +697013,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - sym__identifier_token, - [222722] = 20, + [218641] = 20, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -701563,21 +697036,23 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, ACTIONS(25), 1, sym__identifier_token, - ACTIONS(8914), 1, - anon_sym_COMMA, - ACTIONS(8916), 1, - anon_sym_LPAREN, - ACTIONS(8928), 1, - anon_sym_RPAREN, - STATE(2175), 1, + ACTIONS(8839), 1, + anon_sym_RBRACK, + STATE(2168), 1, sym__reserved_identifier, - STATE(6715), 1, + STATE(2170), 1, + sym_generic_name, + STATE(4370), 1, sym_identifier, - STATE(7311), 1, - sym_parameter_list, - STATE(7536), 1, - sym__lambda_parameters, - STATE(5809), 9, + STATE(6503), 1, + sym__name, + STATE(7138), 1, + sym_attribute, + STATE(4068), 3, + sym_alias_qualified_name, + sym__simple_name, + sym_qualified_name, + STATE(5752), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -701610,7 +697085,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [222812] = 20, + [218733] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -701631,23 +697106,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(8914), 1, - anon_sym_COMMA, - ACTIONS(8916), 1, + ACTIONS(8843), 1, anon_sym_LPAREN, - STATE(2175), 1, - sym__reserved_identifier, - STATE(6628), 1, - sym_identifier, - STATE(6949), 1, - sym_using_variable_declarator, - STATE(7311), 1, - sym_parameter_list, - STATE(7536), 1, - sym__lambda_parameters, - STATE(5810), 9, + ACTIONS(8845), 6, + anon_sym_ref, + anon_sym_readonly, + anon_sym_in, + anon_sym_out, + anon_sym_this, + anon_sym_scoped, + STATE(5753), 10, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -701657,15 +697125,17 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(29), 22, + aux_sym__parameter_type_with_modifiers_repeat1, + ACTIONS(8841), 24, anon_sym_alias, anon_sym_global, + anon_sym_delegate, 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, @@ -701680,7 +697150,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [222902] = 20, + sym__identifier_token, + [218813] = 20, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -701703,21 +697174,23 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, ACTIONS(25), 1, sym__identifier_token, - ACTIONS(7681), 1, - anon_sym_RPAREN, - ACTIONS(8914), 1, - anon_sym_COMMA, - ACTIONS(8916), 1, - anon_sym_LPAREN, - STATE(2175), 1, + ACTIONS(8848), 1, + anon_sym_RBRACK, + STATE(2168), 1, sym__reserved_identifier, - STATE(6715), 1, + STATE(2170), 1, + sym_generic_name, + STATE(4370), 1, sym_identifier, - STATE(7311), 1, - sym_parameter_list, - STATE(7536), 1, - sym__lambda_parameters, - STATE(5811), 9, + STATE(6503), 1, + sym__name, + STATE(7138), 1, + sym_attribute, + STATE(4068), 3, + sym_alias_qualified_name, + sym__simple_name, + sym_qualified_name, + STATE(5754), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -701750,7 +697223,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [222992] = 17, + [218905] = 20, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -701771,19 +697244,25 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4703), 1, - aux_sym_preproc_if_token3, - ACTIONS(4705), 1, - aux_sym_preproc_else_token1, - ACTIONS(4707), 1, - aux_sym_preproc_elif_token1, - ACTIONS(4701), 2, - anon_sym_LBRACK, - aux_sym_preproc_if_token1, - STATE(7379), 2, - sym_preproc_else_in_attribute_list, - sym_preproc_elif_in_attribute_list, - STATE(5812), 9, + ACTIONS(25), 1, + sym__identifier_token, + ACTIONS(8850), 1, + anon_sym_RBRACK, + STATE(2168), 1, + sym__reserved_identifier, + STATE(2170), 1, + sym_generic_name, + STATE(4370), 1, + sym_identifier, + STATE(6503), 1, + sym__name, + STATE(7138), 1, + sym_attribute, + STATE(4068), 3, + sym_alias_qualified_name, + sym__simple_name, + sym_qualified_name, + STATE(5755), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -701793,7 +697272,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(4699), 23, + ACTIONS(29), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -701816,8 +697295,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - sym__identifier_token, - [223076] = 20, + [218997] = 20, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -701840,21 +697318,23 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, ACTIONS(25), 1, sym__identifier_token, - ACTIONS(8914), 1, - anon_sym_COMMA, - ACTIONS(8916), 1, - anon_sym_LPAREN, - ACTIONS(8930), 1, - anon_sym_RPAREN, - STATE(2175), 1, + ACTIONS(8852), 1, + anon_sym_RBRACK, + STATE(2168), 1, sym__reserved_identifier, - STATE(6715), 1, + STATE(2170), 1, + sym_generic_name, + STATE(4370), 1, sym_identifier, - STATE(7311), 1, - sym_parameter_list, - STATE(7536), 1, - sym__lambda_parameters, - STATE(5813), 9, + STATE(6503), 1, + sym__name, + STATE(7138), 1, + sym_attribute, + STATE(4068), 3, + sym_alias_qualified_name, + sym__simple_name, + sym_qualified_name, + STATE(5756), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -701887,7 +697367,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [223166] = 13, + [219089] = 20, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -701908,13 +697388,25 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4751), 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(5814), 9, + ACTIONS(25), 1, + sym__identifier_token, + ACTIONS(8854), 1, + anon_sym_RBRACK, + STATE(2168), 1, + sym__reserved_identifier, + STATE(2170), 1, + sym_generic_name, + STATE(4370), 1, + sym_identifier, + STATE(6503), 1, + sym__name, + STATE(7138), 1, + sym_attribute, + STATE(4068), 3, + sym_alias_qualified_name, + sym__simple_name, + sym_qualified_name, + STATE(5757), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -701924,12 +697416,10 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(4749), 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, @@ -701949,8 +697439,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - sym__identifier_token, - [223242] = 20, + [219181] = 20, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -701973,21 +697462,23 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, ACTIONS(25), 1, sym__identifier_token, - ACTIONS(3897), 1, - sym_discard, - ACTIONS(8102), 1, - anon_sym_LPAREN, - ACTIONS(8932), 1, - anon_sym_RPAREN, - STATE(2175), 1, + ACTIONS(8856), 1, + anon_sym_RBRACK, + STATE(2168), 1, sym__reserved_identifier, - STATE(3463), 1, - sym_parenthesized_variable_designation, - STATE(3479), 1, + STATE(2170), 1, + sym_generic_name, + STATE(4370), 1, sym_identifier, - STATE(6851), 1, - sym__variable_designation, - STATE(5815), 9, + STATE(6503), 1, + sym__name, + STATE(7138), 1, + sym_attribute, + STATE(4068), 3, + sym_alias_qualified_name, + sym__simple_name, + sym_qualified_name, + STATE(5758), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -702020,7 +697511,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [223332] = 20, + [219273] = 20, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -702043,21 +697534,23 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, ACTIONS(25), 1, sym__identifier_token, - ACTIONS(7835), 1, - anon_sym_RPAREN, - ACTIONS(8914), 1, - anon_sym_COMMA, - ACTIONS(8916), 1, - anon_sym_LPAREN, - STATE(2175), 1, + ACTIONS(8858), 1, + anon_sym_RBRACK, + STATE(2168), 1, sym__reserved_identifier, - STATE(6715), 1, + STATE(2170), 1, + sym_generic_name, + STATE(4370), 1, sym_identifier, - STATE(7311), 1, - sym_parameter_list, - STATE(7536), 1, - sym__lambda_parameters, - STATE(5816), 9, + STATE(6503), 1, + sym__name, + STATE(7138), 1, + sym_attribute, + STATE(4068), 3, + sym_alias_qualified_name, + sym__simple_name, + sym_qualified_name, + STATE(5759), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -702090,7 +697583,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [223422] = 20, + [219365] = 20, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -702113,21 +697606,23 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, ACTIONS(25), 1, sym__identifier_token, - ACTIONS(8914), 1, - anon_sym_COMMA, - ACTIONS(8916), 1, - anon_sym_LPAREN, - ACTIONS(8934), 1, - anon_sym_RPAREN, - STATE(2175), 1, + ACTIONS(8860), 1, + anon_sym_RBRACK, + STATE(2168), 1, sym__reserved_identifier, - STATE(6715), 1, + STATE(2170), 1, + sym_generic_name, + STATE(4370), 1, sym_identifier, - STATE(7311), 1, - sym_parameter_list, - STATE(7536), 1, - sym__lambda_parameters, - STATE(5817), 9, + STATE(6503), 1, + sym__name, + STATE(7138), 1, + sym_attribute, + STATE(4068), 3, + sym_alias_qualified_name, + sym__simple_name, + sym_qualified_name, + STATE(5760), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -702160,7 +697655,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [223512] = 20, + [219457] = 20, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -702183,21 +697678,23 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, ACTIONS(25), 1, sym__identifier_token, - ACTIONS(8914), 1, - anon_sym_COMMA, - ACTIONS(8916), 1, - anon_sym_LPAREN, - ACTIONS(8936), 1, - anon_sym_RPAREN, - STATE(2175), 1, + ACTIONS(8862), 1, + anon_sym_RBRACK, + STATE(2168), 1, sym__reserved_identifier, - STATE(6715), 1, + STATE(2170), 1, + sym_generic_name, + STATE(4370), 1, sym_identifier, - STATE(7311), 1, - sym_parameter_list, - STATE(7536), 1, - sym__lambda_parameters, - STATE(5818), 9, + STATE(6503), 1, + sym__name, + STATE(7138), 1, + sym_attribute, + STATE(4068), 3, + sym_alias_qualified_name, + sym__simple_name, + sym_qualified_name, + STATE(5761), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -702230,7 +697727,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [223602] = 20, + [219549] = 20, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -702253,21 +697750,23 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, ACTIONS(25), 1, sym__identifier_token, - ACTIONS(8914), 1, - anon_sym_COMMA, - ACTIONS(8916), 1, - anon_sym_LPAREN, - ACTIONS(8938), 1, - anon_sym_RPAREN, - STATE(2175), 1, + ACTIONS(8864), 1, + anon_sym_RBRACK, + STATE(2168), 1, sym__reserved_identifier, - STATE(6715), 1, + STATE(2170), 1, + sym_generic_name, + STATE(4370), 1, sym_identifier, - STATE(7311), 1, - sym_parameter_list, - STATE(7536), 1, - sym__lambda_parameters, - STATE(5819), 9, + STATE(6503), 1, + sym__name, + STATE(7138), 1, + sym_attribute, + STATE(4068), 3, + sym_alias_qualified_name, + sym__simple_name, + sym_qualified_name, + STATE(5762), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -702300,7 +697799,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [223692] = 20, + [219641] = 20, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -702321,93 +697820,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(7773), 1, - anon_sym_RPAREN, - ACTIONS(8914), 1, - anon_sym_COMMA, - ACTIONS(8916), 1, + ACTIONS(4044), 1, + anon_sym_DASH_GT, + ACTIONS(6601), 1, + anon_sym_LBRACK, + ACTIONS(6603), 1, + anon_sym_STAR, + ACTIONS(6705), 1, + anon_sym_QMARK, + ACTIONS(7968), 1, + anon_sym_DOT, + ACTIONS(8319), 1, anon_sym_LPAREN, - STATE(2175), 1, - sym__reserved_identifier, - STATE(6715), 1, - sym_identifier, - STATE(7311), 1, - sym_parameter_list, - STATE(7536), 1, - sym__lambda_parameters, - STATE(5820), 9, - sym_preproc_region, - sym_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, - [223782] = 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(8914), 1, + STATE(7155), 1, + sym_attribute_argument_list, + ACTIONS(8866), 2, anon_sym_COMMA, - ACTIONS(8916), 1, - anon_sym_LPAREN, - ACTIONS(8940), 1, - anon_sym_RPAREN, - STATE(2175), 1, - sym__reserved_identifier, - STATE(6715), 1, - sym_identifier, - STATE(7311), 1, - sym_parameter_list, - STATE(7536), 1, - sym__lambda_parameters, - STATE(5821), 9, + anon_sym_RBRACK, + STATE(5763), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -702417,7 +697847,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(29), 22, + ACTIONS(3961), 23, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -702440,7 +697870,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [223872] = 20, + sym__identifier_token, + [219733] = 17, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -702461,23 +697892,21 @@ 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(7737), 1, - anon_sym_RPAREN, - ACTIONS(8914), 1, - anon_sym_COMMA, - ACTIONS(8916), 1, + ACTIONS(3651), 1, + anon_sym_EQ_GT, + ACTIONS(3653), 1, + anon_sym_COLON_COLON, + ACTIONS(6230), 1, + anon_sym_LT, + STATE(4054), 1, + sym_type_argument_list, + ACTIONS(3640), 5, + anon_sym_LBRACK, anon_sym_LPAREN, - STATE(2175), 1, - sym__reserved_identifier, - STATE(6715), 1, - sym_identifier, - STATE(7311), 1, - sym_parameter_list, - STATE(7536), 1, - sym__lambda_parameters, - STATE(5822), 9, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_DOT, + STATE(5764), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -702487,7 +697916,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(29), 22, + ACTIONS(3638), 23, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -702510,7 +697939,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [223962] = 20, + sym__identifier_token, + [219819] = 20, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -702533,21 +697963,23 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, ACTIONS(25), 1, sym__identifier_token, - ACTIONS(8914), 1, - anon_sym_COMMA, - ACTIONS(8916), 1, - anon_sym_LPAREN, - ACTIONS(8942), 1, - anon_sym_RPAREN, - STATE(2175), 1, + ACTIONS(8868), 1, + anon_sym_RBRACK, + STATE(2168), 1, sym__reserved_identifier, - STATE(6715), 1, + STATE(2170), 1, + sym_generic_name, + STATE(4370), 1, sym_identifier, - STATE(7311), 1, - sym_parameter_list, - STATE(7536), 1, - sym__lambda_parameters, - STATE(5823), 9, + STATE(6503), 1, + sym__name, + STATE(7138), 1, + sym_attribute, + STATE(4068), 3, + sym_alias_qualified_name, + sym__simple_name, + sym_qualified_name, + STATE(5765), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -702580,7 +698012,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [224052] = 20, + [219911] = 20, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -702603,21 +698035,23 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, ACTIONS(25), 1, sym__identifier_token, - ACTIONS(7827), 1, - anon_sym_RPAREN, - ACTIONS(8914), 1, - anon_sym_COMMA, - ACTIONS(8916), 1, - anon_sym_LPAREN, - STATE(2175), 1, + ACTIONS(8870), 1, + anon_sym_RBRACK, + STATE(2168), 1, sym__reserved_identifier, - STATE(6715), 1, + STATE(2170), 1, + sym_generic_name, + STATE(4370), 1, sym_identifier, - STATE(7311), 1, - sym_parameter_list, - STATE(7536), 1, - sym__lambda_parameters, - STATE(5824), 9, + STATE(6503), 1, + sym__name, + STATE(7138), 1, + sym_attribute, + STATE(4068), 3, + sym_alias_qualified_name, + sym__simple_name, + sym_qualified_name, + STATE(5766), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -702650,7 +698084,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [224142] = 20, + [220003] = 20, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -702673,21 +698107,23 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, ACTIONS(25), 1, sym__identifier_token, - ACTIONS(7833), 1, - anon_sym_RPAREN, - ACTIONS(8914), 1, - anon_sym_COMMA, - ACTIONS(8916), 1, - anon_sym_LPAREN, - STATE(2175), 1, + ACTIONS(8872), 1, + anon_sym_RBRACK, + STATE(2168), 1, sym__reserved_identifier, - STATE(6715), 1, + STATE(2170), 1, + sym_generic_name, + STATE(4370), 1, sym_identifier, - STATE(7311), 1, - sym_parameter_list, - STATE(7536), 1, - sym__lambda_parameters, - STATE(5825), 9, + STATE(6503), 1, + sym__name, + STATE(7138), 1, + sym_attribute, + STATE(4068), 3, + sym_alias_qualified_name, + sym__simple_name, + sym_qualified_name, + STATE(5767), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -702720,7 +698156,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [224232] = 20, + [220095] = 20, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -702743,21 +698179,23 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, ACTIONS(25), 1, sym__identifier_token, - ACTIONS(8914), 1, - anon_sym_COMMA, - ACTIONS(8916), 1, - anon_sym_LPAREN, - ACTIONS(8944), 1, - anon_sym_RPAREN, - STATE(2175), 1, + ACTIONS(8874), 1, + anon_sym_RBRACK, + STATE(2168), 1, sym__reserved_identifier, - STATE(6715), 1, + STATE(2170), 1, + sym_generic_name, + STATE(4370), 1, sym_identifier, - STATE(7311), 1, - sym_parameter_list, - STATE(7536), 1, - sym__lambda_parameters, - STATE(5826), 9, + STATE(6503), 1, + sym__name, + STATE(7138), 1, + sym_attribute, + STATE(4068), 3, + sym_alias_qualified_name, + sym__simple_name, + sym_qualified_name, + STATE(5768), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -702790,7 +698228,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [224322] = 20, + [220187] = 20, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -702813,21 +698251,23 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, ACTIONS(25), 1, sym__identifier_token, - ACTIONS(7818), 1, - anon_sym_RPAREN, - ACTIONS(8914), 1, - anon_sym_COMMA, - ACTIONS(8916), 1, - anon_sym_LPAREN, - STATE(2175), 1, + ACTIONS(8876), 1, + anon_sym_RBRACK, + STATE(2168), 1, sym__reserved_identifier, - STATE(6715), 1, + STATE(2170), 1, + sym_generic_name, + STATE(4370), 1, sym_identifier, - STATE(7311), 1, - sym_parameter_list, - STATE(7536), 1, - sym__lambda_parameters, - STATE(5827), 9, + STATE(6503), 1, + sym__name, + STATE(7138), 1, + sym_attribute, + STATE(4068), 3, + sym_alias_qualified_name, + sym__simple_name, + sym_qualified_name, + STATE(5769), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -702860,7 +698300,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [224412] = 13, + [220279] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -702881,13 +698321,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4763), 5, + ACTIONS(4867), 1, + aux_sym_preproc_if_token3, + ACTIONS(4667), 3, 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(5828), 9, + STATE(5770), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -702897,17 +698337,20 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(4761), 25, + ACTIONS(4665), 28, anon_sym_alias, anon_sym_global, + anon_sym_static, + anon_sym_ref, + anon_sym_delegate, + anon_sym_async, 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, @@ -702923,7 +698366,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_select, sym__identifier_token, - [224488] = 20, + [220359] = 20, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -702946,21 +698389,23 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, ACTIONS(25), 1, sym__identifier_token, - ACTIONS(7775), 1, - anon_sym_RPAREN, - ACTIONS(8914), 1, - anon_sym_COMMA, - ACTIONS(8916), 1, - anon_sym_LPAREN, - STATE(2175), 1, + ACTIONS(8878), 1, + anon_sym_RBRACK, + STATE(2168), 1, sym__reserved_identifier, - STATE(6715), 1, + STATE(2170), 1, + sym_generic_name, + STATE(4370), 1, sym_identifier, - STATE(7311), 1, - sym_parameter_list, - STATE(7536), 1, - sym__lambda_parameters, - STATE(5829), 9, + STATE(6503), 1, + sym__name, + STATE(7138), 1, + sym_attribute, + STATE(4068), 3, + sym_alias_qualified_name, + sym__simple_name, + sym_qualified_name, + STATE(5771), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -702993,7 +698438,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [224578] = 20, + [220451] = 19, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -703016,21 +698461,21 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, ACTIONS(25), 1, sym__identifier_token, - ACTIONS(7739), 1, - anon_sym_RPAREN, - ACTIONS(8914), 1, - anon_sym_COMMA, - ACTIONS(8916), 1, - anon_sym_LPAREN, - STATE(2175), 1, + STATE(2168), 1, sym__reserved_identifier, - STATE(6715), 1, + STATE(2170), 1, + sym_generic_name, + STATE(4370), 1, sym_identifier, - STATE(7311), 1, - sym_parameter_list, - STATE(7536), 1, - sym__lambda_parameters, - STATE(5830), 9, + STATE(6503), 1, + sym__name, + STATE(6993), 1, + sym_attribute, + STATE(4068), 3, + sym_alias_qualified_name, + sym__simple_name, + sym_qualified_name, + STATE(5772), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -703063,7 +698508,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [224668] = 20, + [220540] = 17, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -703084,23 +698529,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(7723), 1, - anon_sym_RPAREN, - ACTIONS(8914), 1, - anon_sym_COMMA, - ACTIONS(8916), 1, - anon_sym_LPAREN, - STATE(2175), 1, - sym__reserved_identifier, - STATE(6715), 1, - sym_identifier, - STATE(7311), 1, - sym_parameter_list, - STATE(7536), 1, - sym__lambda_parameters, - STATE(5831), 9, + ACTIONS(3653), 1, + anon_sym_COLON_COLON, + ACTIONS(6230), 1, + anon_sym_LT, + ACTIONS(8880), 1, + anon_sym_in, + STATE(4054), 1, + sym_type_argument_list, + ACTIONS(3640), 4, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_DOT, + STATE(5773), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -703110,7 +698552,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(29), 22, + ACTIONS(3638), 23, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -703133,7 +698575,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [224758] = 20, + sym__identifier_token, + [220625] = 19, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -703156,21 +698599,21 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, ACTIONS(25), 1, sym__identifier_token, - ACTIONS(8914), 1, - anon_sym_COMMA, - ACTIONS(8916), 1, - anon_sym_LPAREN, - ACTIONS(8946), 1, - anon_sym_RPAREN, - STATE(2175), 1, + STATE(2168), 1, sym__reserved_identifier, - STATE(6715), 1, + STATE(2170), 1, + sym_generic_name, + STATE(4370), 1, sym_identifier, - STATE(7311), 1, - sym_parameter_list, - STATE(7536), 1, - sym__lambda_parameters, - STATE(5832), 9, + STATE(6503), 1, + sym__name, + STATE(6860), 1, + sym_attribute, + STATE(4068), 3, + sym_alias_qualified_name, + sym__simple_name, + sym_qualified_name, + STATE(5774), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -703203,7 +698646,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [224848] = 20, + [220714] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -703224,23 +698667,15 @@ 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(7777), 1, + ACTIONS(4066), 1, + anon_sym_EQ_GT, + ACTIONS(5354), 1, anon_sym_RPAREN, - ACTIONS(8914), 1, + ACTIONS(4064), 3, anon_sym_COMMA, - ACTIONS(8916), 1, anon_sym_LPAREN, - STATE(2175), 1, - sym__reserved_identifier, - STATE(6715), 1, - sym_identifier, - STATE(7311), 1, - sym_parameter_list, - STATE(7536), 1, - sym__lambda_parameters, - STATE(5833), 9, + anon_sym_LBRACE, + STATE(5775), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -703250,7 +698685,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(29), 22, + ACTIONS(4062), 26, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -703261,6 +698696,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, @@ -703273,7 +698711,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [224938] = 20, + sym__identifier_token, + [220795] = 20, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -703296,21 +698735,22 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, ACTIONS(25), 1, sym__identifier_token, - ACTIONS(7667), 1, - anon_sym_RPAREN, - ACTIONS(8914), 1, - anon_sym_COMMA, - ACTIONS(8916), 1, - anon_sym_LPAREN, - STATE(2175), 1, + ACTIONS(5166), 1, + anon_sym_LBRACK, + ACTIONS(5182), 1, + aux_sym_preproc_if_token1, + STATE(2168), 1, sym__reserved_identifier, - STATE(6715), 1, + STATE(5787), 1, + aux_sym__class_declaration_initializer_repeat1, + STATE(5961), 1, + sym__attribute_list, + STATE(6739), 1, sym_identifier, - STATE(7311), 1, - sym_parameter_list, - STATE(7536), 1, - sym__lambda_parameters, - STATE(5834), 9, + STATE(6020), 2, + sym_attribute_list, + sym_preproc_if_in_attribute_list, + STATE(5776), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -703343,7 +698783,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [225028] = 20, + [220886] = 19, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -703366,21 +698806,21 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, ACTIONS(25), 1, sym__identifier_token, - ACTIONS(7675), 1, - anon_sym_RPAREN, - ACTIONS(8914), 1, - anon_sym_COMMA, - ACTIONS(8916), 1, - anon_sym_LPAREN, - STATE(2175), 1, + STATE(2168), 1, sym__reserved_identifier, - STATE(6715), 1, + STATE(2170), 1, + sym_generic_name, + STATE(4370), 1, sym_identifier, - STATE(7311), 1, - sym_parameter_list, - STATE(7536), 1, - sym__lambda_parameters, - STATE(5835), 9, + STATE(6503), 1, + sym__name, + STATE(6882), 1, + sym_attribute, + STATE(4068), 3, + sym_alias_qualified_name, + sym__simple_name, + sym_qualified_name, + STATE(5777), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -703413,7 +698853,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [225118] = 18, + [220975] = 19, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -703436,19 +698876,21 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, ACTIONS(25), 1, sym__identifier_token, - STATE(2175), 1, + STATE(2168), 1, sym__reserved_identifier, - STATE(2181), 1, + STATE(2170), 1, sym_generic_name, - STATE(4373), 1, + STATE(4370), 1, sym_identifier, - STATE(6665), 1, + STATE(6503), 1, sym__name, - STATE(4096), 3, + STATE(7138), 1, + sym_attribute, + STATE(4068), 3, sym_alias_qualified_name, sym__simple_name, sym_qualified_name, - STATE(5836), 9, + STATE(5778), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -703481,7 +698923,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [225204] = 20, + [221064] = 19, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -703504,21 +698946,21 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, ACTIONS(25), 1, sym__identifier_token, - ACTIONS(7687), 1, - anon_sym_RPAREN, - ACTIONS(8914), 1, - anon_sym_COMMA, - ACTIONS(8916), 1, - anon_sym_LPAREN, - STATE(2175), 1, + STATE(2168), 1, sym__reserved_identifier, - STATE(6715), 1, + STATE(2170), 1, + sym_generic_name, + STATE(4370), 1, sym_identifier, - STATE(7311), 1, - sym_parameter_list, - STATE(7536), 1, - sym__lambda_parameters, - STATE(5837), 9, + STATE(6503), 1, + sym__name, + STATE(6740), 1, + sym_attribute, + STATE(4068), 3, + sym_alias_qualified_name, + sym__simple_name, + sym_qualified_name, + STATE(5779), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -703551,7 +698993,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [225294] = 20, + [221153] = 19, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -703574,21 +699016,21 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, ACTIONS(25), 1, sym__identifier_token, - ACTIONS(3897), 1, - sym_discard, - ACTIONS(8102), 1, - anon_sym_LPAREN, - ACTIONS(8948), 1, - anon_sym_RPAREN, - STATE(2175), 1, + STATE(2168), 1, sym__reserved_identifier, - STATE(3463), 1, - sym_parenthesized_variable_designation, - STATE(3479), 1, + STATE(2170), 1, + sym_generic_name, + STATE(4370), 1, sym_identifier, - STATE(6793), 1, - sym__variable_designation, - STATE(5838), 9, + STATE(6503), 1, + sym__name, + STATE(6817), 1, + sym_attribute, + STATE(4068), 3, + sym_alias_qualified_name, + sym__simple_name, + sym_qualified_name, + STATE(5780), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -703621,71 +699063,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [225384] = 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(8950), 1, - anon_sym_DOT, - ACTIONS(3977), 3, - anon_sym_COLON, - anon_sym_LPAREN, - anon_sym_LBRACE, - STATE(5839), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - ACTIONS(3975), 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, - [225462] = 20, + [221242] = 19, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -703708,21 +699086,21 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, ACTIONS(25), 1, sym__identifier_token, - ACTIONS(8914), 1, - anon_sym_COMMA, - ACTIONS(8916), 1, - anon_sym_LPAREN, - ACTIONS(8952), 1, - anon_sym_RPAREN, - STATE(2175), 1, + STATE(2168), 1, sym__reserved_identifier, - STATE(6715), 1, + STATE(2170), 1, + sym_generic_name, + STATE(4370), 1, sym_identifier, - STATE(7311), 1, - sym_parameter_list, - STATE(7536), 1, - sym__lambda_parameters, - STATE(5840), 9, + STATE(6503), 1, + sym__name, + STATE(7021), 1, + sym_attribute, + STATE(4068), 3, + sym_alias_qualified_name, + sym__simple_name, + sym_qualified_name, + STATE(5781), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -703755,7 +699133,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [225552] = 20, + [221331] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -703776,23 +699154,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(7797), 1, - anon_sym_RPAREN, - ACTIONS(8914), 1, - anon_sym_COMMA, - ACTIONS(8916), 1, + ACTIONS(2733), 1, anon_sym_LPAREN, - STATE(2175), 1, - sym__reserved_identifier, - STATE(6715), 1, - sym_identifier, - STATE(7311), 1, - sym_parameter_list, - STATE(7536), 1, - sym__lambda_parameters, - STATE(5841), 9, + STATE(5782), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -703802,15 +699166,22 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(29), 22, + ACTIONS(2689), 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, @@ -703825,7 +699196,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [225642] = 20, + sym__identifier_token, + [221408] = 20, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -703848,21 +699220,22 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, ACTIONS(25), 1, sym__identifier_token, - ACTIONS(8914), 1, - anon_sym_COMMA, - ACTIONS(8916), 1, - anon_sym_LPAREN, - ACTIONS(8954), 1, - anon_sym_RPAREN, - STATE(2175), 1, + ACTIONS(5166), 1, + anon_sym_LBRACK, + ACTIONS(5182), 1, + aux_sym_preproc_if_token1, + STATE(2168), 1, sym__reserved_identifier, - STATE(6715), 1, + STATE(5787), 1, + aux_sym__class_declaration_initializer_repeat1, + STATE(5961), 1, + sym__attribute_list, + STATE(6714), 1, sym_identifier, - STATE(7311), 1, - sym_parameter_list, - STATE(7536), 1, - sym__lambda_parameters, - STATE(5842), 9, + STATE(6020), 2, + sym_attribute_list, + sym_preproc_if_in_attribute_list, + STATE(5783), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -703895,7 +699268,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [225732] = 18, + [221499] = 19, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -703918,19 +699291,21 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, ACTIONS(25), 1, sym__identifier_token, - STATE(2175), 1, + STATE(2168), 1, sym__reserved_identifier, - STATE(2181), 1, + STATE(2170), 1, sym_generic_name, - STATE(4373), 1, + STATE(4370), 1, sym_identifier, - STATE(6626), 1, + STATE(6503), 1, sym__name, - STATE(4096), 3, + STATE(6804), 1, + sym_attribute, + STATE(4068), 3, sym_alias_qualified_name, sym__simple_name, sym_qualified_name, - STATE(5843), 9, + STATE(5784), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -703963,7 +699338,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [225818] = 20, + [221588] = 17, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -703984,23 +699359,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(7685), 1, - anon_sym_RPAREN, - ACTIONS(8914), 1, - anon_sym_COMMA, - ACTIONS(8916), 1, - anon_sym_LPAREN, - STATE(2175), 1, - sym__reserved_identifier, - STATE(6715), 1, - sym_identifier, - STATE(7311), 1, - sym_parameter_list, - STATE(7536), 1, - sym__lambda_parameters, - STATE(5844), 9, + ACTIONS(3653), 1, + anon_sym_COLON_COLON, + ACTIONS(6230), 1, + anon_sym_LT, + ACTIONS(8882), 1, + anon_sym_in, + STATE(4054), 1, + sym_type_argument_list, + ACTIONS(3640), 4, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_DOT, + STATE(5785), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -704010,7 +699382,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(29), 22, + ACTIONS(3638), 23, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -704033,7 +699405,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [225908] = 18, + sym__identifier_token, + [221673] = 19, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -704056,19 +699429,21 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, ACTIONS(25), 1, sym__identifier_token, - STATE(2175), 1, + STATE(2168), 1, sym__reserved_identifier, - STATE(2181), 1, + STATE(2170), 1, sym_generic_name, - STATE(4373), 1, + STATE(4370), 1, sym_identifier, - STATE(6385), 1, + STATE(6317), 1, sym__name, - STATE(4096), 3, + STATE(6675), 1, + sym_primary_constructor_base_type, + STATE(4068), 3, sym_alias_qualified_name, sym__simple_name, sym_qualified_name, - STATE(5845), 9, + STATE(5786), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -704101,7 +699476,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [225994] = 18, + [221762] = 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(8884), 1, + anon_sym_LBRACK, + ACTIONS(8887), 1, + aux_sym_preproc_if_token1, + STATE(5961), 1, + sym__attribute_list, + STATE(6020), 2, + sym_attribute_list, + sym_preproc_if_in_attribute_list, + STATE(5787), 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__class_declaration_initializer_repeat1, + ACTIONS(4711), 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, + [221845] = 18, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -704124,19 +699566,19 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, ACTIONS(25), 1, sym__identifier_token, - STATE(2175), 1, + STATE(2168), 1, sym__reserved_identifier, - STATE(2181), 1, + STATE(2170), 1, sym_generic_name, - STATE(4373), 1, + STATE(4370), 1, sym_identifier, - STATE(6528), 1, + STATE(6391), 1, sym__name, - STATE(4096), 3, + STATE(4068), 3, sym_alias_qualified_name, sym__simple_name, sym_qualified_name, - STATE(5846), 9, + STATE(5788), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -704169,7 +699611,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [226080] = 20, + [221931] = 20, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -704192,21 +699634,21 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, ACTIONS(25), 1, sym__identifier_token, - ACTIONS(3897), 1, - sym_discard, - ACTIONS(8102), 1, + ACTIONS(8890), 1, + anon_sym_COMMA, + ACTIONS(8892), 1, anon_sym_LPAREN, - ACTIONS(8956), 1, + ACTIONS(8894), 1, anon_sym_RPAREN, - STATE(2175), 1, + STATE(2168), 1, sym__reserved_identifier, - STATE(3463), 1, - sym_parenthesized_variable_designation, - STATE(3479), 1, + STATE(6640), 1, sym_identifier, - STATE(6741), 1, - sym__variable_designation, - STATE(5847), 9, + STATE(7378), 1, + sym__lambda_parameters, + STATE(7531), 1, + sym_parameter_list, + STATE(5789), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -704239,7 +699681,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [226170] = 20, + [222021] = 20, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -704262,21 +699704,21 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, ACTIONS(25), 1, sym__identifier_token, - ACTIONS(8914), 1, + ACTIONS(8890), 1, anon_sym_COMMA, - ACTIONS(8916), 1, + ACTIONS(8892), 1, anon_sym_LPAREN, - ACTIONS(8958), 1, + ACTIONS(8896), 1, anon_sym_RPAREN, - STATE(2175), 1, + STATE(2168), 1, sym__reserved_identifier, - STATE(6715), 1, + STATE(6640), 1, sym_identifier, - STATE(7311), 1, - sym_parameter_list, - STATE(7536), 1, + STATE(7378), 1, sym__lambda_parameters, - STATE(5848), 9, + STATE(7531), 1, + sym_parameter_list, + STATE(5790), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -704309,7 +699751,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [226260] = 20, + [222111] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -704330,23 +699772,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(7669), 1, - anon_sym_RPAREN, - ACTIONS(8914), 1, - anon_sym_COMMA, - ACTIONS(8916), 1, - anon_sym_LPAREN, - STATE(2175), 1, - sym__reserved_identifier, - STATE(6715), 1, - sym_identifier, - STATE(7311), 1, - sym_parameter_list, - STATE(7536), 1, - sym__lambda_parameters, - STATE(5849), 9, + ACTIONS(4745), 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(5791), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -704356,10 +699788,12 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(29), 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, @@ -704379,7 +699813,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [226350] = 20, + sym__identifier_token, + [222187] = 20, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -704402,21 +699837,21 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, ACTIONS(25), 1, sym__identifier_token, - ACTIONS(7591), 1, - anon_sym_RPAREN, - ACTIONS(8914), 1, + ACTIONS(8890), 1, anon_sym_COMMA, - ACTIONS(8916), 1, + ACTIONS(8892), 1, anon_sym_LPAREN, - STATE(2175), 1, + ACTIONS(8898), 1, + anon_sym_RPAREN, + STATE(2168), 1, sym__reserved_identifier, - STATE(6715), 1, + STATE(6640), 1, sym_identifier, - STATE(7311), 1, - sym_parameter_list, - STATE(7536), 1, + STATE(7378), 1, sym__lambda_parameters, - STATE(5850), 9, + STATE(7531), 1, + sym_parameter_list, + STATE(5792), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -704449,7 +699884,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [226440] = 13, + [222277] = 20, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -704470,13 +699905,23 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4747), 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(5851), 9, + ACTIONS(25), 1, + sym__identifier_token, + ACTIONS(8890), 1, + anon_sym_COMMA, + ACTIONS(8892), 1, + anon_sym_LPAREN, + STATE(2168), 1, + sym__reserved_identifier, + STATE(6637), 1, + sym_identifier, + STATE(6915), 1, + sym_using_variable_declarator, + STATE(7378), 1, + sym__lambda_parameters, + STATE(7531), 1, + sym_parameter_list, + STATE(5793), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -704486,12 +699931,10 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(4745), 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, @@ -704511,8 +699954,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - sym__identifier_token, - [226516] = 20, + [222367] = 20, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -704535,21 +699977,21 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, ACTIONS(25), 1, sym__identifier_token, - ACTIONS(8914), 1, + ACTIONS(7634), 1, + anon_sym_RPAREN, + ACTIONS(8890), 1, anon_sym_COMMA, - ACTIONS(8916), 1, + ACTIONS(8892), 1, anon_sym_LPAREN, - ACTIONS(8960), 1, - anon_sym_RPAREN, - STATE(2175), 1, + STATE(2168), 1, sym__reserved_identifier, - STATE(6715), 1, + STATE(6640), 1, sym_identifier, - STATE(7311), 1, - sym_parameter_list, - STATE(7536), 1, + STATE(7378), 1, sym__lambda_parameters, - STATE(5852), 9, + STATE(7531), 1, + sym_parameter_list, + STATE(5794), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -704582,7 +700024,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [226606] = 20, + [222457] = 20, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -704605,21 +700047,21 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, ACTIONS(25), 1, sym__identifier_token, - ACTIONS(3897), 1, - sym_discard, - ACTIONS(8102), 1, + ACTIONS(8890), 1, + anon_sym_COMMA, + ACTIONS(8892), 1, anon_sym_LPAREN, - ACTIONS(8962), 1, + ACTIONS(8900), 1, anon_sym_RPAREN, - STATE(2175), 1, + STATE(2168), 1, sym__reserved_identifier, - STATE(3463), 1, - sym_parenthesized_variable_designation, - STATE(3479), 1, + STATE(6640), 1, sym_identifier, - STATE(6897), 1, - sym__variable_designation, - STATE(5853), 9, + STATE(7378), 1, + sym__lambda_parameters, + STATE(7531), 1, + sym_parameter_list, + STATE(5795), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -704652,7 +700094,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [226696] = 20, + [222547] = 20, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -704675,21 +700117,21 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, ACTIONS(25), 1, sym__identifier_token, - ACTIONS(7721), 1, + ACTIONS(7758), 1, anon_sym_RPAREN, - ACTIONS(8914), 1, + ACTIONS(8890), 1, anon_sym_COMMA, - ACTIONS(8916), 1, + ACTIONS(8892), 1, anon_sym_LPAREN, - STATE(2175), 1, + STATE(2168), 1, sym__reserved_identifier, - STATE(6715), 1, + STATE(6640), 1, sym_identifier, - STATE(7311), 1, - sym_parameter_list, - STATE(7536), 1, + STATE(7378), 1, sym__lambda_parameters, - STATE(5854), 9, + STATE(7531), 1, + sym_parameter_list, + STATE(5796), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -704722,7 +700164,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [226786] = 20, + [222637] = 18, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -704745,21 +700187,19 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, ACTIONS(25), 1, sym__identifier_token, - ACTIONS(8914), 1, - anon_sym_COMMA, - ACTIONS(8916), 1, - anon_sym_LPAREN, - ACTIONS(8964), 1, - anon_sym_RPAREN, - STATE(2175), 1, + STATE(2168), 1, sym__reserved_identifier, - STATE(6715), 1, + STATE(2170), 1, + sym_generic_name, + STATE(4370), 1, sym_identifier, - STATE(7311), 1, - sym_parameter_list, - STATE(7536), 1, - sym__lambda_parameters, - STATE(5855), 9, + STATE(6684), 1, + sym__name, + STATE(4068), 3, + sym_alias_qualified_name, + sym__simple_name, + sym_qualified_name, + STATE(5797), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -704792,7 +700232,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [226876] = 20, + [222723] = 20, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -704815,21 +700255,21 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, ACTIONS(25), 1, sym__identifier_token, - ACTIONS(8914), 1, + ACTIONS(8890), 1, anon_sym_COMMA, - ACTIONS(8916), 1, + ACTIONS(8892), 1, anon_sym_LPAREN, - ACTIONS(8966), 1, + ACTIONS(8902), 1, anon_sym_RPAREN, - STATE(2175), 1, + STATE(2168), 1, sym__reserved_identifier, - STATE(6715), 1, + STATE(6640), 1, sym_identifier, - STATE(7311), 1, - sym_parameter_list, - STATE(7536), 1, + STATE(7378), 1, sym__lambda_parameters, - STATE(5856), 9, + STATE(7531), 1, + sym_parameter_list, + STATE(5798), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -704862,7 +700302,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [226966] = 20, + [222813] = 20, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -704885,21 +700325,21 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, ACTIONS(25), 1, sym__identifier_token, - ACTIONS(7751), 1, - anon_sym_RPAREN, - ACTIONS(8914), 1, + ACTIONS(8890), 1, anon_sym_COMMA, - ACTIONS(8916), 1, + ACTIONS(8892), 1, anon_sym_LPAREN, - STATE(2175), 1, + ACTIONS(8904), 1, + anon_sym_RPAREN, + STATE(2168), 1, sym__reserved_identifier, - STATE(6715), 1, + STATE(6640), 1, sym_identifier, - STATE(7311), 1, - sym_parameter_list, - STATE(7536), 1, + STATE(7378), 1, sym__lambda_parameters, - STATE(5857), 9, + STATE(7531), 1, + sym_parameter_list, + STATE(5799), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -704932,7 +700372,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [227056] = 20, + [222903] = 20, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -704955,21 +700395,21 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, ACTIONS(25), 1, sym__identifier_token, - ACTIONS(8914), 1, + ACTIONS(7542), 1, + anon_sym_RPAREN, + ACTIONS(8890), 1, anon_sym_COMMA, - ACTIONS(8916), 1, + ACTIONS(8892), 1, anon_sym_LPAREN, - ACTIONS(8968), 1, - anon_sym_RPAREN, - STATE(2175), 1, + STATE(2168), 1, sym__reserved_identifier, - STATE(6715), 1, + STATE(6640), 1, sym_identifier, - STATE(7311), 1, - sym_parameter_list, - STATE(7536), 1, + STATE(7378), 1, sym__lambda_parameters, - STATE(5858), 9, + STATE(7531), 1, + sym_parameter_list, + STATE(5800), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -705002,7 +700442,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [227146] = 20, + [222993] = 20, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -705025,21 +700465,21 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, ACTIONS(25), 1, sym__identifier_token, - ACTIONS(8914), 1, + ACTIONS(7698), 1, + anon_sym_RPAREN, + ACTIONS(8890), 1, anon_sym_COMMA, - ACTIONS(8916), 1, + ACTIONS(8892), 1, anon_sym_LPAREN, - ACTIONS(8970), 1, - anon_sym_RPAREN, - STATE(2175), 1, + STATE(2168), 1, sym__reserved_identifier, - STATE(6715), 1, + STATE(6640), 1, sym_identifier, - STATE(7311), 1, - sym_parameter_list, - STATE(7536), 1, + STATE(7378), 1, sym__lambda_parameters, - STATE(5859), 9, + STATE(7531), 1, + sym_parameter_list, + STATE(5801), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -705072,7 +700512,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [227236] = 20, + [223083] = 20, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -705095,21 +700535,21 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, ACTIONS(25), 1, sym__identifier_token, - ACTIONS(3897), 1, - sym_discard, - ACTIONS(8102), 1, + ACTIONS(8890), 1, + anon_sym_COMMA, + ACTIONS(8892), 1, anon_sym_LPAREN, - ACTIONS(8972), 1, + ACTIONS(8906), 1, anon_sym_RPAREN, - STATE(2175), 1, + STATE(2168), 1, sym__reserved_identifier, - STATE(3463), 1, - sym_parenthesized_variable_designation, - STATE(3479), 1, + STATE(6640), 1, sym_identifier, - STATE(6819), 1, - sym__variable_designation, - STATE(5860), 9, + STATE(7378), 1, + sym__lambda_parameters, + STATE(7531), 1, + sym_parameter_list, + STATE(5802), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -705142,7 +700582,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [227326] = 20, + [223173] = 17, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -705163,23 +700603,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(8914), 1, - anon_sym_COMMA, - ACTIONS(8916), 1, - anon_sym_LPAREN, - ACTIONS(8974), 1, - anon_sym_RPAREN, - STATE(2175), 1, - sym__reserved_identifier, - STATE(6715), 1, - sym_identifier, - STATE(7311), 1, - sym_parameter_list, - STATE(7536), 1, - sym__lambda_parameters, - STATE(5861), 9, + ACTIONS(4671), 1, + aux_sym_preproc_else_token1, + ACTIONS(4673), 1, + aux_sym_preproc_elif_token1, + ACTIONS(8908), 1, + aux_sym_preproc_if_token3, + ACTIONS(4667), 2, + anon_sym_LBRACK, + aux_sym_preproc_if_token1, + STATE(7656), 2, + sym_preproc_else_in_attribute_list, + sym_preproc_elif_in_attribute_list, + STATE(5803), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -705189,7 +700625,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(29), 22, + ACTIONS(4665), 23, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -705212,7 +700648,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [227416] = 20, + sym__identifier_token, + [223257] = 20, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -705235,21 +700672,21 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, ACTIONS(25), 1, sym__identifier_token, - ACTIONS(8914), 1, + ACTIONS(8890), 1, anon_sym_COMMA, - ACTIONS(8916), 1, + ACTIONS(8892), 1, anon_sym_LPAREN, - ACTIONS(8976), 1, + ACTIONS(8910), 1, anon_sym_RPAREN, - STATE(2175), 1, + STATE(2168), 1, sym__reserved_identifier, - STATE(6715), 1, + STATE(6640), 1, sym_identifier, - STATE(7311), 1, - sym_parameter_list, - STATE(7536), 1, + STATE(7378), 1, sym__lambda_parameters, - STATE(5862), 9, + STATE(7531), 1, + sym_parameter_list, + STATE(5804), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -705282,7 +700719,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [227506] = 14, + [223347] = 20, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -705303,12 +700740,23 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8983), 1, + ACTIONS(25), 1, + sym__identifier_token, + ACTIONS(8912), 1, anon_sym_LPAREN, - ACTIONS(8980), 2, - anon_sym_static, - anon_sym_async, - STATE(5863), 10, + STATE(2168), 1, + sym__reserved_identifier, + STATE(6270), 1, + sym_identifier, + STATE(6504), 1, + sym_tuple_pattern, + STATE(6838), 1, + sym_variable_declarator, + STATE(7378), 1, + sym__lambda_parameters, + STATE(7531), 1, + sym_parameter_list, + STATE(5805), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -705318,19 +700766,15 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - aux_sym__lambda_expression_init_repeat1, - ACTIONS(8978), 26, + ACTIONS(29), 22, 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_scoped, anon_sym_var, - sym_predefined_type, anon_sym_yield, anon_sym_when, anon_sym_from, @@ -705345,8 +700789,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - sym__identifier_token, - [227584] = 20, + [223437] = 20, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -705369,21 +700812,21 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, ACTIONS(25), 1, sym__identifier_token, - ACTIONS(8914), 1, + ACTIONS(8890), 1, anon_sym_COMMA, - ACTIONS(8916), 1, + ACTIONS(8892), 1, anon_sym_LPAREN, - ACTIONS(8985), 1, + ACTIONS(8914), 1, anon_sym_RPAREN, - STATE(2175), 1, + STATE(2168), 1, sym__reserved_identifier, - STATE(6715), 1, + STATE(6640), 1, sym_identifier, - STATE(7311), 1, - sym_parameter_list, - STATE(7536), 1, + STATE(7378), 1, sym__lambda_parameters, - STATE(5864), 9, + STATE(7531), 1, + sym_parameter_list, + STATE(5806), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -705416,7 +700859,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [227674] = 20, + [223527] = 20, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -705439,21 +700882,21 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, ACTIONS(25), 1, sym__identifier_token, - ACTIONS(8914), 1, + ACTIONS(7481), 1, + anon_sym_RPAREN, + ACTIONS(8890), 1, anon_sym_COMMA, - ACTIONS(8916), 1, + ACTIONS(8892), 1, anon_sym_LPAREN, - ACTIONS(8987), 1, - anon_sym_RPAREN, - STATE(2175), 1, + STATE(2168), 1, sym__reserved_identifier, - STATE(6715), 1, + STATE(6640), 1, sym_identifier, - STATE(7311), 1, - sym_parameter_list, - STATE(7536), 1, + STATE(7378), 1, sym__lambda_parameters, - STATE(5865), 9, + STATE(7531), 1, + sym_parameter_list, + STATE(5807), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -705486,7 +700929,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [227764] = 20, + [223617] = 20, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -705509,21 +700952,21 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, ACTIONS(25), 1, sym__identifier_token, - ACTIONS(7865), 1, - anon_sym_RPAREN, - ACTIONS(8914), 1, + ACTIONS(8890), 1, anon_sym_COMMA, - ACTIONS(8916), 1, + ACTIONS(8892), 1, anon_sym_LPAREN, - STATE(2175), 1, + ACTIONS(8916), 1, + anon_sym_RPAREN, + STATE(2168), 1, sym__reserved_identifier, - STATE(6715), 1, + STATE(6640), 1, sym_identifier, - STATE(7311), 1, - sym_parameter_list, - STATE(7536), 1, + STATE(7378), 1, sym__lambda_parameters, - STATE(5866), 9, + STATE(7531), 1, + sym_parameter_list, + STATE(5808), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -705556,7 +700999,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [227854] = 20, + [223707] = 20, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -705579,21 +701022,21 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, ACTIONS(25), 1, sym__identifier_token, - ACTIONS(8924), 1, + ACTIONS(7844), 1, + anon_sym_RPAREN, + ACTIONS(8890), 1, + anon_sym_COMMA, + ACTIONS(8892), 1, anon_sym_LPAREN, - STATE(2175), 1, + STATE(2168), 1, sym__reserved_identifier, - STATE(6285), 1, + STATE(6640), 1, sym_identifier, - STATE(6521), 1, - sym_tuple_pattern, - STATE(6944), 1, - sym_variable_declarator, - STATE(7311), 1, - sym_parameter_list, - STATE(7536), 1, + STATE(7378), 1, sym__lambda_parameters, - STATE(5867), 9, + STATE(7531), 1, + sym_parameter_list, + STATE(5809), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -705626,7 +701069,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [227944] = 20, + [223797] = 20, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -705649,21 +701092,21 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, ACTIONS(25), 1, sym__identifier_token, - ACTIONS(8914), 1, + ACTIONS(8890), 1, anon_sym_COMMA, - ACTIONS(8916), 1, + ACTIONS(8892), 1, anon_sym_LPAREN, - ACTIONS(8989), 1, + ACTIONS(8918), 1, anon_sym_RPAREN, - STATE(2175), 1, + STATE(2168), 1, sym__reserved_identifier, - STATE(6715), 1, + STATE(6640), 1, sym_identifier, - STATE(7311), 1, - sym_parameter_list, - STATE(7536), 1, + STATE(7378), 1, sym__lambda_parameters, - STATE(5868), 9, + STATE(7531), 1, + sym_parameter_list, + STATE(5810), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -705696,7 +701139,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [228034] = 18, + [223887] = 20, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -705719,19 +701162,21 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, ACTIONS(25), 1, sym__identifier_token, - STATE(2175), 1, + ACTIONS(8890), 1, + anon_sym_COMMA, + ACTIONS(8892), 1, + anon_sym_LPAREN, + ACTIONS(8920), 1, + anon_sym_RPAREN, + STATE(2168), 1, sym__reserved_identifier, - STATE(2181), 1, - sym_generic_name, - STATE(4373), 1, + STATE(6640), 1, sym_identifier, - STATE(6857), 1, - sym__name, - STATE(4096), 3, - sym_alias_qualified_name, - sym__simple_name, - sym_qualified_name, - STATE(5869), 9, + STATE(7378), 1, + sym__lambda_parameters, + STATE(7531), 1, + sym_parameter_list, + STATE(5811), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -705764,7 +701209,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [228120] = 20, + [223977] = 20, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -705787,21 +701232,21 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, ACTIONS(25), 1, sym__identifier_token, - ACTIONS(7791), 1, - anon_sym_RPAREN, - ACTIONS(8914), 1, + ACTIONS(8890), 1, anon_sym_COMMA, - ACTIONS(8916), 1, + ACTIONS(8892), 1, anon_sym_LPAREN, - STATE(2175), 1, + ACTIONS(8922), 1, + anon_sym_RPAREN, + STATE(2168), 1, sym__reserved_identifier, - STATE(6715), 1, + STATE(6640), 1, sym_identifier, - STATE(7311), 1, - sym_parameter_list, - STATE(7536), 1, + STATE(7378), 1, sym__lambda_parameters, - STATE(5870), 9, + STATE(7531), 1, + sym_parameter_list, + STATE(5812), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -705834,7 +701279,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [228210] = 18, + [224067] = 20, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -705855,86 +701300,23 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4018), 1, - anon_sym_LPAREN, - ACTIONS(4077), 1, - anon_sym_DASH_GT, - ACTIONS(6678), 1, - anon_sym_LBRACK, - ACTIONS(6680), 1, - anon_sym_STAR, - ACTIONS(6716), 1, - anon_sym_QMARK, - ACTIONS(8991), 1, - anon_sym_DOT, - 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(4016), 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, + ACTIONS(25), 1, sym__identifier_token, - [228295] = 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(4018), 1, + ACTIONS(3877), 1, + sym_discard, + ACTIONS(7916), 1, anon_sym_LPAREN, - ACTIONS(4077), 1, - anon_sym_DASH_GT, - ACTIONS(6678), 1, - anon_sym_LBRACK, - ACTIONS(6680), 1, - anon_sym_STAR, - ACTIONS(6716), 1, - anon_sym_QMARK, - ACTIONS(8993), 1, - anon_sym_DOT, - STATE(5872), 9, + ACTIONS(8924), 1, + anon_sym_RPAREN, + STATE(2168), 1, + sym__reserved_identifier, + STATE(3352), 1, + sym_parenthesized_variable_designation, + STATE(3355), 1, + sym_identifier, + STATE(6961), 1, + sym__variable_designation, + STATE(5813), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -705944,7 +701326,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(4016), 23, + ACTIONS(29), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -705967,8 +701349,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - sym__identifier_token, - [228380] = 18, + [224157] = 20, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -705989,19 +701370,23 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4018), 1, + ACTIONS(25), 1, + sym__identifier_token, + ACTIONS(8890), 1, + anon_sym_COMMA, + ACTIONS(8892), 1, anon_sym_LPAREN, - ACTIONS(4719), 1, - anon_sym_DASH_GT, - ACTIONS(6678), 1, - anon_sym_LBRACK, - ACTIONS(6680), 1, - anon_sym_STAR, - ACTIONS(6716), 1, - anon_sym_QMARK, - ACTIONS(8995), 1, - anon_sym_DOT, - STATE(5873), 9, + ACTIONS(8926), 1, + anon_sym_RPAREN, + STATE(2168), 1, + sym__reserved_identifier, + STATE(6640), 1, + sym_identifier, + STATE(7378), 1, + sym__lambda_parameters, + STATE(7531), 1, + sym_parameter_list, + STATE(5814), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -706011,7 +701396,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(4016), 23, + ACTIONS(29), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -706034,8 +701419,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - sym__identifier_token, - [228465] = 19, + [224247] = 20, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -706056,21 +701440,23 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(6823), 1, + ACTIONS(25), 1, sym__identifier_token, - ACTIONS(8924), 1, + ACTIONS(7748), 1, + anon_sym_RPAREN, + ACTIONS(8890), 1, + anon_sym_COMMA, + ACTIONS(8892), 1, anon_sym_LPAREN, - STATE(2571), 1, + STATE(2168), 1, sym__reserved_identifier, - STATE(7224), 1, + STATE(6640), 1, sym_identifier, - STATE(7311), 1, - sym_parameter_list, - STATE(7536), 1, + STATE(7378), 1, sym__lambda_parameters, - STATE(7542), 1, - sym_tuple_pattern, - STATE(5874), 9, + STATE(7531), 1, + sym_parameter_list, + STATE(5815), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -706080,7 +701466,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(6825), 22, + ACTIONS(29), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -706103,7 +701489,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [228552] = 18, + [224337] = 20, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -706124,19 +701510,23 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4018), 1, + ACTIONS(25), 1, + sym__identifier_token, + ACTIONS(7756), 1, + anon_sym_RPAREN, + ACTIONS(8890), 1, + anon_sym_COMMA, + ACTIONS(8892), 1, anon_sym_LPAREN, - ACTIONS(4755), 1, - anon_sym_DASH_GT, - ACTIONS(6678), 1, - anon_sym_LBRACK, - ACTIONS(6680), 1, - anon_sym_STAR, - ACTIONS(6716), 1, - anon_sym_QMARK, - ACTIONS(8997), 1, - anon_sym_DOT, - STATE(5875), 9, + STATE(2168), 1, + sym__reserved_identifier, + STATE(6640), 1, + sym_identifier, + STATE(7378), 1, + sym__lambda_parameters, + STATE(7531), 1, + sym_parameter_list, + STATE(5816), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -706146,7 +701536,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(4016), 23, + ACTIONS(29), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -706169,8 +701559,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - sym__identifier_token, - [228637] = 18, + [224427] = 20, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -706191,19 +701580,23 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4018), 1, + ACTIONS(25), 1, + sym__identifier_token, + ACTIONS(7783), 1, + anon_sym_RPAREN, + ACTIONS(8890), 1, + anon_sym_COMMA, + ACTIONS(8892), 1, anon_sym_LPAREN, - ACTIONS(4102), 1, - anon_sym_DASH_GT, - ACTIONS(6678), 1, - anon_sym_LBRACK, - ACTIONS(6680), 1, - anon_sym_STAR, - ACTIONS(6716), 1, - anon_sym_QMARK, - ACTIONS(8999), 1, - anon_sym_DOT, - STATE(5876), 9, + STATE(2168), 1, + sym__reserved_identifier, + STATE(6640), 1, + sym_identifier, + STATE(7378), 1, + sym__lambda_parameters, + STATE(7531), 1, + sym_parameter_list, + STATE(5817), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -706213,7 +701606,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(4016), 23, + ACTIONS(29), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -706236,8 +701629,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - sym__identifier_token, - [228722] = 18, + [224517] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -706258,19 +701650,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4018), 1, - anon_sym_LPAREN, - ACTIONS(6678), 1, - anon_sym_LBRACK, - ACTIONS(6680), 1, - anon_sym_STAR, - ACTIONS(6716), 1, - anon_sym_QMARK, - ACTIONS(6911), 1, + ACTIONS(8928), 1, anon_sym_DOT, - ACTIONS(9001), 1, - anon_sym_SEMI, - STATE(5877), 9, + ACTIONS(3978), 3, + anon_sym_COLON, + anon_sym_LPAREN, + anon_sym_LBRACE, + STATE(5818), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -706280,7 +701666,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(4016), 23, + ACTIONS(3976), 26, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -706291,6 +701677,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, @@ -706304,7 +701693,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_select, sym__identifier_token, - [228807] = 18, + [224595] = 20, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -706325,20 +701714,23 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8824), 1, + ACTIONS(25), 1, sym__identifier_token, - STATE(2175), 1, + ACTIONS(7646), 1, + anon_sym_RPAREN, + ACTIONS(8890), 1, + anon_sym_COMMA, + ACTIONS(8892), 1, + anon_sym_LPAREN, + STATE(2168), 1, sym__reserved_identifier, - STATE(2181), 1, - sym_generic_name, - STATE(4150), 1, - sym__simple_name, - STATE(4369), 1, + STATE(6640), 1, sym_identifier, - ACTIONS(8832), 2, - anon_sym_operator, - anon_sym_this, - STATE(5878), 9, + STATE(7378), 1, + sym__lambda_parameters, + STATE(7531), 1, + sym_parameter_list, + STATE(5819), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -706348,7 +701740,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(8827), 22, + ACTIONS(29), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -706371,7 +701763,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [228892] = 18, + [224685] = 18, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -706392,85 +701784,21 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4018), 1, - anon_sym_LPAREN, - ACTIONS(4077), 1, - anon_sym_DASH_GT, - ACTIONS(6678), 1, - anon_sym_LBRACK, - ACTIONS(6680), 1, - anon_sym_STAR, - ACTIONS(6716), 1, - anon_sym_QMARK, - ACTIONS(9003), 1, - anon_sym_DOT, - STATE(5879), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - ACTIONS(4016), 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, + ACTIONS(25), 1, sym__identifier_token, - [228977] = 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(4018), 1, - anon_sym_LPAREN, - ACTIONS(6678), 1, - anon_sym_LBRACK, - ACTIONS(6680), 1, - anon_sym_STAR, - ACTIONS(6716), 1, - anon_sym_QMARK, - ACTIONS(4443), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - STATE(5880), 9, + STATE(2168), 1, + sym__reserved_identifier, + STATE(2170), 1, + sym_generic_name, + STATE(4370), 1, + sym_identifier, + STATE(6778), 1, + sym__name, + STATE(4068), 3, + sym_alias_qualified_name, + sym__simple_name, + sym_qualified_name, + STATE(5820), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -706480,7 +701808,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(4016), 23, + ACTIONS(29), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -706503,8 +701831,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - sym__identifier_token, - [229060] = 17, + [224771] = 20, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -706525,18 +701852,23 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4018), 1, + ACTIONS(25), 1, + sym__identifier_token, + ACTIONS(3877), 1, + sym_discard, + ACTIONS(7916), 1, anon_sym_LPAREN, - ACTIONS(6678), 1, - anon_sym_LBRACK, - ACTIONS(6680), 1, - anon_sym_STAR, - ACTIONS(6716), 1, - anon_sym_QMARK, - ACTIONS(4719), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - STATE(5881), 9, + ACTIONS(8930), 1, + anon_sym_RPAREN, + STATE(2168), 1, + sym__reserved_identifier, + STATE(3352), 1, + sym_parenthesized_variable_designation, + STATE(3355), 1, + sym_identifier, + STATE(6820), 1, + sym__variable_designation, + STATE(5821), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -706546,7 +701878,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(4016), 23, + ACTIONS(29), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -706569,8 +701901,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - sym__identifier_token, - [229143] = 17, + [224861] = 20, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -706591,18 +701922,23 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4018), 1, + ACTIONS(25), 1, + sym__identifier_token, + ACTIONS(8890), 1, + anon_sym_COMMA, + ACTIONS(8892), 1, anon_sym_LPAREN, - ACTIONS(6678), 1, - anon_sym_LBRACK, - ACTIONS(6680), 1, - anon_sym_STAR, - ACTIONS(6716), 1, - anon_sym_QMARK, - ACTIONS(4077), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - STATE(5882), 9, + ACTIONS(8932), 1, + anon_sym_RPAREN, + STATE(2168), 1, + sym__reserved_identifier, + STATE(6640), 1, + sym_identifier, + STATE(7378), 1, + sym__lambda_parameters, + STATE(7531), 1, + sym_parameter_list, + STATE(5822), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -706612,7 +701948,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(4016), 23, + ACTIONS(29), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -706635,8 +701971,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - sym__identifier_token, - [229226] = 18, + [224951] = 20, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -706657,19 +701992,23 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4018), 1, + ACTIONS(25), 1, + sym__identifier_token, + ACTIONS(7648), 1, + anon_sym_RPAREN, + ACTIONS(8890), 1, + anon_sym_COMMA, + ACTIONS(8892), 1, anon_sym_LPAREN, - ACTIONS(4443), 1, - anon_sym_DASH_GT, - ACTIONS(6678), 1, - anon_sym_LBRACK, - ACTIONS(6680), 1, - anon_sym_STAR, - ACTIONS(6716), 1, - anon_sym_QMARK, - ACTIONS(9005), 1, - anon_sym_DOT, - STATE(5883), 9, + STATE(2168), 1, + sym__reserved_identifier, + STATE(6640), 1, + sym_identifier, + STATE(7378), 1, + sym__lambda_parameters, + STATE(7531), 1, + sym_parameter_list, + STATE(5823), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -706679,7 +702018,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(4016), 23, + ACTIONS(29), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -706702,8 +702041,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - sym__identifier_token, - [229311] = 13, + [225041] = 20, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -706724,9 +702062,23 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9009), 1, + ACTIONS(25), 1, + sym__identifier_token, + ACTIONS(7793), 1, + anon_sym_RPAREN, + ACTIONS(8890), 1, + anon_sym_COMMA, + ACTIONS(8892), 1, anon_sym_LPAREN, - STATE(5884), 9, + STATE(2168), 1, + sym__reserved_identifier, + STATE(6640), 1, + sym_identifier, + STATE(7378), 1, + sym__lambda_parameters, + STATE(7531), 1, + sym_parameter_list, + STATE(5824), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -706736,20 +702088,15 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(9007), 28, + ACTIONS(29), 22, 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, @@ -706764,8 +702111,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - sym__identifier_token, - [229386] = 18, + [225131] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -706786,19 +702132,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4018), 1, - anon_sym_LPAREN, - ACTIONS(4719), 1, - anon_sym_DASH_GT, - ACTIONS(6678), 1, + ACTIONS(4749), 5, anon_sym_LBRACK, - ACTIONS(6680), 1, - anon_sym_STAR, - ACTIONS(6716), 1, - anon_sym_QMARK, - ACTIONS(9011), 1, - anon_sym_DOT, - STATE(5885), 9, + aux_sym_preproc_if_token1, + aux_sym_preproc_if_token3, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + STATE(5825), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -706808,10 +702148,12 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(4016), 23, + ACTIONS(4747), 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, @@ -706832,7 +702174,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_select, sym__identifier_token, - [229471] = 18, + [225207] = 20, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -706853,19 +702195,23 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4018), 1, + ACTIONS(25), 1, + sym__identifier_token, + ACTIONS(8890), 1, + anon_sym_COMMA, + ACTIONS(8892), 1, anon_sym_LPAREN, - ACTIONS(4077), 1, - anon_sym_DASH_GT, - ACTIONS(6678), 1, - anon_sym_LBRACK, - ACTIONS(6680), 1, - anon_sym_STAR, - ACTIONS(6716), 1, - anon_sym_QMARK, - ACTIONS(9013), 1, - anon_sym_DOT, - STATE(5886), 9, + ACTIONS(8934), 1, + anon_sym_RPAREN, + STATE(2168), 1, + sym__reserved_identifier, + STATE(6640), 1, + sym_identifier, + STATE(7378), 1, + sym__lambda_parameters, + STATE(7531), 1, + sym_parameter_list, + STATE(5826), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -706875,7 +702221,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(4016), 23, + ACTIONS(29), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -706898,8 +702244,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - sym__identifier_token, - [229556] = 18, + [225297] = 20, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -706920,19 +702265,23 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4018), 1, + ACTIONS(25), 1, + sym__identifier_token, + ACTIONS(7692), 1, + anon_sym_RPAREN, + ACTIONS(8890), 1, + anon_sym_COMMA, + ACTIONS(8892), 1, anon_sym_LPAREN, - ACTIONS(4755), 1, - anon_sym_DASH_GT, - ACTIONS(6678), 1, - anon_sym_LBRACK, - ACTIONS(6680), 1, - anon_sym_STAR, - ACTIONS(6716), 1, - anon_sym_QMARK, - ACTIONS(9015), 1, - anon_sym_DOT, - STATE(5887), 9, + STATE(2168), 1, + sym__reserved_identifier, + STATE(6640), 1, + sym_identifier, + STATE(7378), 1, + sym__lambda_parameters, + STATE(7531), 1, + sym_parameter_list, + STATE(5827), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -706942,7 +702291,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(4016), 23, + ACTIONS(29), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -706965,8 +702314,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - sym__identifier_token, - [229641] = 18, + [225387] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -706987,19 +702335,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4018), 1, + ACTIONS(8941), 1, anon_sym_LPAREN, - ACTIONS(4755), 1, - anon_sym_DASH_GT, - ACTIONS(6678), 1, - anon_sym_LBRACK, - ACTIONS(6680), 1, - anon_sym_STAR, - ACTIONS(6716), 1, - anon_sym_QMARK, - ACTIONS(9017), 1, - anon_sym_DOT, - STATE(5888), 9, + ACTIONS(8938), 2, + anon_sym_static, + anon_sym_async, + STATE(5828), 10, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -707009,15 +702350,19 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(4016), 23, + aux_sym__lambda_expression_init_repeat1, + ACTIONS(8936), 26, 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_scoped, anon_sym_var, + sym_predefined_type, anon_sym_yield, anon_sym_when, anon_sym_from, @@ -707033,7 +702378,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_select, sym__identifier_token, - [229726] = 18, + [225465] = 20, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -707054,19 +702399,23 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4018), 1, + ACTIONS(25), 1, + sym__identifier_token, + ACTIONS(8890), 1, + anon_sym_COMMA, + ACTIONS(8892), 1, anon_sym_LPAREN, - ACTIONS(4102), 1, - anon_sym_DASH_GT, - ACTIONS(6678), 1, - anon_sym_LBRACK, - ACTIONS(6680), 1, - anon_sym_STAR, - ACTIONS(6716), 1, - anon_sym_QMARK, - ACTIONS(9019), 1, - anon_sym_DOT, - STATE(5889), 9, + ACTIONS(8943), 1, + anon_sym_RPAREN, + STATE(2168), 1, + sym__reserved_identifier, + STATE(6640), 1, + sym_identifier, + STATE(7378), 1, + sym__lambda_parameters, + STATE(7531), 1, + sym_parameter_list, + STATE(5829), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -707076,7 +702425,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(4016), 23, + ACTIONS(29), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -707099,8 +702448,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - sym__identifier_token, - [229811] = 18, + [225555] = 20, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -707121,19 +702469,23 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4018), 1, + ACTIONS(25), 1, + sym__identifier_token, + ACTIONS(8890), 1, + anon_sym_COMMA, + ACTIONS(8892), 1, anon_sym_LPAREN, - ACTIONS(4102), 1, - anon_sym_DASH_GT, - ACTIONS(6678), 1, - anon_sym_LBRACK, - ACTIONS(6680), 1, - anon_sym_STAR, - ACTIONS(6716), 1, - anon_sym_QMARK, - ACTIONS(9021), 1, - anon_sym_DOT, - STATE(5890), 9, + ACTIONS(8945), 1, + anon_sym_RPAREN, + STATE(2168), 1, + sym__reserved_identifier, + STATE(6640), 1, + sym_identifier, + STATE(7378), 1, + sym__lambda_parameters, + STATE(7531), 1, + sym_parameter_list, + STATE(5830), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -707143,7 +702495,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(4016), 23, + ACTIONS(29), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -707166,8 +702518,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - sym__identifier_token, - [229896] = 18, + [225645] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -707188,19 +702539,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4018), 1, - anon_sym_LPAREN, - ACTIONS(4102), 1, - anon_sym_DASH_GT, - ACTIONS(6678), 1, + ACTIONS(4723), 5, anon_sym_LBRACK, - ACTIONS(6680), 1, - anon_sym_STAR, - ACTIONS(6716), 1, - anon_sym_QMARK, - ACTIONS(9023), 1, - anon_sym_DOT, - STATE(5891), 9, + aux_sym_preproc_if_token1, + aux_sym_preproc_if_token3, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + STATE(5831), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -707210,10 +702555,12 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(4016), 23, + ACTIONS(4721), 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, @@ -707234,7 +702581,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_select, sym__identifier_token, - [229981] = 18, + [225721] = 20, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -707255,19 +702602,23 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4018), 1, + ACTIONS(25), 1, + sym__identifier_token, + ACTIONS(7750), 1, + anon_sym_RPAREN, + ACTIONS(8890), 1, + anon_sym_COMMA, + ACTIONS(8892), 1, anon_sym_LPAREN, - ACTIONS(4102), 1, - anon_sym_DASH_GT, - ACTIONS(6678), 1, - anon_sym_LBRACK, - ACTIONS(6680), 1, - anon_sym_STAR, - ACTIONS(6716), 1, - anon_sym_QMARK, - ACTIONS(9025), 1, - anon_sym_DOT, - STATE(5892), 9, + STATE(2168), 1, + sym__reserved_identifier, + STATE(6640), 1, + sym_identifier, + STATE(7378), 1, + sym__lambda_parameters, + STATE(7531), 1, + sym_parameter_list, + STATE(5832), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -707277,7 +702628,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(4016), 23, + ACTIONS(29), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -707300,8 +702651,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - sym__identifier_token, - [230066] = 18, + [225811] = 20, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -707322,19 +702672,23 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4018), 1, + ACTIONS(25), 1, + sym__identifier_token, + ACTIONS(8912), 1, anon_sym_LPAREN, - ACTIONS(4102), 1, - anon_sym_DASH_GT, - ACTIONS(6678), 1, - anon_sym_LBRACK, - ACTIONS(6680), 1, - anon_sym_STAR, - ACTIONS(6716), 1, - anon_sym_QMARK, - ACTIONS(9027), 1, - anon_sym_DOT, - STATE(5893), 9, + STATE(2168), 1, + sym__reserved_identifier, + STATE(6389), 1, + sym_identifier, + STATE(6504), 1, + sym_tuple_pattern, + STATE(6838), 1, + sym_variable_declarator, + STATE(7378), 1, + sym__lambda_parameters, + STATE(7531), 1, + sym_parameter_list, + STATE(5833), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -707344,7 +702698,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(4016), 23, + ACTIONS(29), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -707367,8 +702721,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - sym__identifier_token, - [230151] = 16, + [225901] = 20, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -707391,16 +702744,21 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, ACTIONS(25), 1, sym__identifier_token, - STATE(2175), 1, + ACTIONS(7706), 1, + anon_sym_RPAREN, + ACTIONS(8890), 1, + anon_sym_COMMA, + ACTIONS(8892), 1, + anon_sym_LPAREN, + STATE(2168), 1, sym__reserved_identifier, - STATE(7132), 1, + STATE(6640), 1, sym_identifier, - ACTIONS(9029), 4, - anon_sym_Cdecl, - anon_sym_Stdcall, - anon_sym_Thiscall, - anon_sym_Fastcall, - STATE(5894), 9, + STATE(7378), 1, + sym__lambda_parameters, + STATE(7531), 1, + sym_parameter_list, + STATE(5834), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -707433,7 +702791,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [230232] = 19, + [225991] = 20, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -707456,19 +702814,21 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, ACTIONS(25), 1, sym__identifier_token, - ACTIONS(3897), 1, + ACTIONS(3877), 1, sym_discard, - ACTIONS(8102), 1, + ACTIONS(7916), 1, anon_sym_LPAREN, - STATE(2175), 1, + ACTIONS(8947), 1, + anon_sym_RPAREN, + STATE(2168), 1, sym__reserved_identifier, - STATE(3463), 1, + STATE(3352), 1, sym_parenthesized_variable_designation, - STATE(3479), 1, + STATE(3355), 1, sym_identifier, - STATE(7227), 1, + STATE(7012), 1, sym__variable_designation, - STATE(5895), 9, + STATE(5835), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -707501,7 +702861,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [230319] = 18, + [226081] = 20, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -707522,86 +702882,23 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4018), 1, - anon_sym_LPAREN, - ACTIONS(4077), 1, - anon_sym_DASH_GT, - ACTIONS(6678), 1, - anon_sym_LBRACK, - ACTIONS(6680), 1, - anon_sym_STAR, - ACTIONS(6716), 1, - anon_sym_QMARK, - ACTIONS(9017), 1, - anon_sym_DOT, - STATE(5896), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - ACTIONS(4016), 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, + ACTIONS(25), 1, sym__identifier_token, - [230404] = 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(4018), 1, + ACTIONS(7760), 1, + anon_sym_RPAREN, + ACTIONS(8890), 1, + anon_sym_COMMA, + ACTIONS(8892), 1, anon_sym_LPAREN, - ACTIONS(4755), 1, - anon_sym_DASH_GT, - ACTIONS(6678), 1, - anon_sym_LBRACK, - ACTIONS(6680), 1, - anon_sym_STAR, - ACTIONS(6716), 1, - anon_sym_QMARK, - ACTIONS(8993), 1, - anon_sym_DOT, - STATE(5897), 9, + STATE(2168), 1, + sym__reserved_identifier, + STATE(6640), 1, + sym_identifier, + STATE(7378), 1, + sym__lambda_parameters, + STATE(7531), 1, + sym_parameter_list, + STATE(5836), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -707611,7 +702908,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(4016), 23, + ACTIONS(29), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -707634,8 +702931,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - sym__identifier_token, - [230489] = 18, + [226171] = 20, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -707656,19 +702952,23 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4018), 1, + ACTIONS(25), 1, + sym__identifier_token, + ACTIONS(7485), 1, + anon_sym_RPAREN, + ACTIONS(8890), 1, + anon_sym_COMMA, + ACTIONS(8892), 1, anon_sym_LPAREN, - ACTIONS(4077), 1, - anon_sym_DASH_GT, - ACTIONS(6678), 1, - anon_sym_LBRACK, - ACTIONS(6680), 1, - anon_sym_STAR, - ACTIONS(6716), 1, - anon_sym_QMARK, - ACTIONS(9015), 1, - anon_sym_DOT, - STATE(5898), 9, + STATE(2168), 1, + sym__reserved_identifier, + STATE(6640), 1, + sym_identifier, + STATE(7378), 1, + sym__lambda_parameters, + STATE(7531), 1, + sym_parameter_list, + STATE(5837), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -707678,7 +702978,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(4016), 23, + ACTIONS(29), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -707701,8 +703001,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - sym__identifier_token, - [230574] = 13, + [226261] = 20, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -707723,9 +703022,23 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9033), 1, + ACTIONS(25), 1, + sym__identifier_token, + ACTIONS(8890), 1, + anon_sym_COMMA, + ACTIONS(8892), 1, anon_sym_LPAREN, - STATE(5899), 9, + ACTIONS(8949), 1, + anon_sym_RPAREN, + STATE(2168), 1, + sym__reserved_identifier, + STATE(6640), 1, + sym_identifier, + STATE(7378), 1, + sym__lambda_parameters, + STATE(7531), 1, + sym_parameter_list, + STATE(5838), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -707735,20 +703048,15 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(9031), 28, + ACTIONS(29), 22, 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, @@ -707763,8 +703071,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - sym__identifier_token, - [230649] = 19, + [226351] = 20, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -707785,21 +703092,23 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(6823), 1, + ACTIONS(25), 1, sym__identifier_token, - ACTIONS(8924), 1, + ACTIONS(7483), 1, + anon_sym_RPAREN, + ACTIONS(8890), 1, + anon_sym_COMMA, + ACTIONS(8892), 1, anon_sym_LPAREN, - STATE(2571), 1, + STATE(2168), 1, sym__reserved_identifier, - STATE(7156), 1, + STATE(6640), 1, sym_identifier, - STATE(7311), 1, - sym_parameter_list, - STATE(7471), 1, - sym_tuple_pattern, - STATE(7536), 1, + STATE(7378), 1, sym__lambda_parameters, - STATE(5900), 9, + STATE(7531), 1, + sym_parameter_list, + STATE(5839), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -707809,7 +703118,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(6825), 22, + ACTIONS(29), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -707832,7 +703141,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [230736] = 17, + [226441] = 20, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -707853,18 +703162,23 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4018), 1, + ACTIONS(25), 1, + sym__identifier_token, + ACTIONS(7797), 1, + anon_sym_RPAREN, + ACTIONS(8890), 1, + anon_sym_COMMA, + ACTIONS(8892), 1, anon_sym_LPAREN, - ACTIONS(6678), 1, - anon_sym_LBRACK, - ACTIONS(6680), 1, - anon_sym_STAR, - ACTIONS(6716), 1, - anon_sym_QMARK, - ACTIONS(4755), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - STATE(5901), 9, + STATE(2168), 1, + sym__reserved_identifier, + STATE(6640), 1, + sym_identifier, + STATE(7378), 1, + sym__lambda_parameters, + STATE(7531), 1, + sym_parameter_list, + STATE(5840), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -707874,7 +703188,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(4016), 23, + ACTIONS(29), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -707897,8 +703211,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - sym__identifier_token, - [230819] = 13, + [226531] = 20, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -707919,9 +703232,23 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9037), 1, + ACTIONS(25), 1, + sym__identifier_token, + ACTIONS(3877), 1, + sym_discard, + ACTIONS(7916), 1, anon_sym_LPAREN, - STATE(5902), 9, + ACTIONS(8951), 1, + anon_sym_RPAREN, + STATE(2168), 1, + sym__reserved_identifier, + STATE(3352), 1, + sym_parenthesized_variable_designation, + STATE(3355), 1, + sym_identifier, + STATE(6947), 1, + sym__variable_designation, + STATE(5841), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -707931,20 +703258,15 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(9035), 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, @@ -707959,8 +703281,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - sym__identifier_token, - [230894] = 16, + [226621] = 20, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -707983,16 +703304,21 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, ACTIONS(25), 1, sym__identifier_token, - STATE(2175), 1, + ACTIONS(7777), 1, + anon_sym_RPAREN, + ACTIONS(8890), 1, + anon_sym_COMMA, + ACTIONS(8892), 1, + anon_sym_LPAREN, + STATE(2168), 1, sym__reserved_identifier, - STATE(6784), 1, + STATE(6640), 1, sym_identifier, - ACTIONS(9039), 4, - anon_sym_Cdecl, - anon_sym_Stdcall, - anon_sym_Thiscall, - anon_sym_Fastcall, - STATE(5903), 9, + STATE(7378), 1, + sym__lambda_parameters, + STATE(7531), 1, + sym_parameter_list, + STATE(5842), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -708025,7 +703351,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [230975] = 18, + [226711] = 20, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -708046,19 +703372,23 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4018), 1, + ACTIONS(25), 1, + sym__identifier_token, + ACTIONS(8890), 1, + anon_sym_COMMA, + ACTIONS(8892), 1, anon_sym_LPAREN, - ACTIONS(4755), 1, - anon_sym_DASH_GT, - ACTIONS(6678), 1, - anon_sym_LBRACK, - ACTIONS(6680), 1, - anon_sym_STAR, - ACTIONS(6716), 1, - anon_sym_QMARK, - ACTIONS(9041), 1, - anon_sym_DOT, - STATE(5904), 9, + ACTIONS(8953), 1, + anon_sym_RPAREN, + STATE(2168), 1, + sym__reserved_identifier, + STATE(6640), 1, + sym_identifier, + STATE(7378), 1, + sym__lambda_parameters, + STATE(7531), 1, + sym_parameter_list, + STATE(5843), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -708068,7 +703398,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(4016), 23, + ACTIONS(29), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -708091,8 +703421,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - sym__identifier_token, - [231060] = 18, + [226801] = 20, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -708113,19 +703442,23 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4018), 1, + ACTIONS(25), 1, + sym__identifier_token, + ACTIONS(7779), 1, + anon_sym_RPAREN, + ACTIONS(8890), 1, + anon_sym_COMMA, + ACTIONS(8892), 1, anon_sym_LPAREN, - ACTIONS(4077), 1, - anon_sym_DASH_GT, - ACTIONS(6678), 1, - anon_sym_LBRACK, - ACTIONS(6680), 1, - anon_sym_STAR, - ACTIONS(6716), 1, - anon_sym_QMARK, - ACTIONS(9041), 1, - anon_sym_DOT, - STATE(5905), 9, + STATE(2168), 1, + sym__reserved_identifier, + STATE(6640), 1, + sym_identifier, + STATE(7378), 1, + sym__lambda_parameters, + STATE(7531), 1, + sym_parameter_list, + STATE(5844), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -708135,7 +703468,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(4016), 23, + ACTIONS(29), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -708158,8 +703491,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - sym__identifier_token, - [231145] = 18, + [226891] = 20, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -708180,19 +703512,23 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4018), 1, + ACTIONS(25), 1, + sym__identifier_token, + ACTIONS(8890), 1, + anon_sym_COMMA, + ACTIONS(8892), 1, anon_sym_LPAREN, - ACTIONS(4443), 1, - anon_sym_DASH_GT, - ACTIONS(6678), 1, - anon_sym_LBRACK, - ACTIONS(6680), 1, - anon_sym_STAR, - ACTIONS(6716), 1, - anon_sym_QMARK, - ACTIONS(9043), 1, - anon_sym_DOT, - STATE(5906), 9, + ACTIONS(8955), 1, + anon_sym_RPAREN, + STATE(2168), 1, + sym__reserved_identifier, + STATE(6640), 1, + sym_identifier, + STATE(7378), 1, + sym__lambda_parameters, + STATE(7531), 1, + sym_parameter_list, + STATE(5845), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -708202,7 +703538,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(4016), 23, + ACTIONS(29), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -708225,8 +703561,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - sym__identifier_token, - [231230] = 18, + [226981] = 18, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -708247,19 +703582,21 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4018), 1, - anon_sym_LPAREN, - ACTIONS(4755), 1, - anon_sym_DASH_GT, - ACTIONS(6678), 1, - anon_sym_LBRACK, - ACTIONS(6680), 1, - anon_sym_STAR, - ACTIONS(6716), 1, - anon_sym_QMARK, - ACTIONS(9045), 1, - anon_sym_DOT, - STATE(5907), 9, + ACTIONS(25), 1, + sym__identifier_token, + STATE(2168), 1, + sym__reserved_identifier, + STATE(2170), 1, + sym_generic_name, + STATE(4370), 1, + sym_identifier, + STATE(6710), 1, + sym__name, + STATE(4068), 3, + sym_alias_qualified_name, + sym__simple_name, + sym_qualified_name, + STATE(5846), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -708269,7 +703606,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(4016), 23, + ACTIONS(29), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -708292,8 +703629,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - sym__identifier_token, - [231315] = 19, + [227067] = 20, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -708316,19 +703652,21 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, ACTIONS(25), 1, sym__identifier_token, - ACTIONS(8914), 1, + ACTIONS(8890), 1, anon_sym_COMMA, - ACTIONS(8916), 1, + ACTIONS(8892), 1, anon_sym_LPAREN, - STATE(2175), 1, + ACTIONS(8957), 1, + anon_sym_RPAREN, + STATE(2168), 1, sym__reserved_identifier, - STATE(7001), 1, + STATE(6640), 1, sym_identifier, - STATE(7311), 1, - sym_parameter_list, - STATE(7536), 1, + STATE(7378), 1, sym__lambda_parameters, - STATE(5908), 9, + STATE(7531), 1, + sym_parameter_list, + STATE(5847), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -708361,7 +703699,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [231402] = 18, + [227157] = 20, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -708382,19 +703720,23 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4018), 1, + ACTIONS(25), 1, + sym__identifier_token, + ACTIONS(7781), 1, + anon_sym_RPAREN, + ACTIONS(8890), 1, + anon_sym_COMMA, + ACTIONS(8892), 1, anon_sym_LPAREN, - ACTIONS(6678), 1, - anon_sym_LBRACK, - ACTIONS(6680), 1, - anon_sym_STAR, - ACTIONS(6716), 1, - anon_sym_QMARK, - ACTIONS(6911), 1, - anon_sym_DOT, - ACTIONS(9047), 1, - anon_sym_SEMI, - STATE(5909), 9, + STATE(2168), 1, + sym__reserved_identifier, + STATE(6640), 1, + sym_identifier, + STATE(7378), 1, + sym__lambda_parameters, + STATE(7531), 1, + sym_parameter_list, + STATE(5848), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -708404,7 +703746,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(4016), 23, + ACTIONS(29), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -708427,8 +703769,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - sym__identifier_token, - [231487] = 18, + [227247] = 20, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -708449,19 +703790,23 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4018), 1, + ACTIONS(25), 1, + sym__identifier_token, + ACTIONS(8890), 1, + anon_sym_COMMA, + ACTIONS(8892), 1, anon_sym_LPAREN, - ACTIONS(4102), 1, - anon_sym_DASH_GT, - ACTIONS(6678), 1, - anon_sym_LBRACK, - ACTIONS(6680), 1, - anon_sym_STAR, - ACTIONS(6716), 1, - anon_sym_QMARK, - ACTIONS(9049), 1, - anon_sym_DOT, - STATE(5910), 9, + ACTIONS(8959), 1, + anon_sym_RPAREN, + STATE(2168), 1, + sym__reserved_identifier, + STATE(6640), 1, + sym_identifier, + STATE(7378), 1, + sym__lambda_parameters, + STATE(7531), 1, + sym_parameter_list, + STATE(5849), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -708471,7 +703816,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(4016), 23, + ACTIONS(29), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -708494,8 +703839,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - sym__identifier_token, - [231572] = 18, + [227337] = 17, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -708516,19 +703860,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4018), 1, - anon_sym_LPAREN, - ACTIONS(4755), 1, - anon_sym_DASH_GT, - ACTIONS(6678), 1, + ACTIONS(4671), 1, + aux_sym_preproc_else_token1, + ACTIONS(4673), 1, + aux_sym_preproc_elif_token1, + ACTIONS(4691), 1, + aux_sym_preproc_if_token3, + ACTIONS(4667), 2, anon_sym_LBRACK, - ACTIONS(6680), 1, - anon_sym_STAR, - ACTIONS(6716), 1, - anon_sym_QMARK, - ACTIONS(9003), 1, - anon_sym_DOT, - STATE(5911), 9, + aux_sym_preproc_if_token1, + STATE(7339), 2, + sym_preproc_else_in_attribute_list, + sym_preproc_elif_in_attribute_list, + STATE(5850), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -708538,7 +703882,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(4016), 23, + ACTIONS(4665), 23, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -708562,73 +703906,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_select, sym__identifier_token, - [231657] = 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(8916), 1, - anon_sym_LPAREN, - STATE(2175), 1, - sym__reserved_identifier, - STATE(7311), 1, - sym_parameter_list, - STATE(7626), 1, - sym_identifier, - STATE(7765), 1, - sym__lambda_parameters, - STATE(5912), 9, - sym_preproc_region, - sym_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, - [231741] = 18, + [227421] = 20, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -708651,17 +703929,21 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, ACTIONS(25), 1, sym__identifier_token, - ACTIONS(8916), 1, + ACTIONS(7803), 1, + anon_sym_RPAREN, + ACTIONS(8890), 1, + anon_sym_COMMA, + ACTIONS(8892), 1, anon_sym_LPAREN, - STATE(2175), 1, + STATE(2168), 1, sym__reserved_identifier, - STATE(7311), 1, - sym_parameter_list, - STATE(7536), 1, - sym__lambda_parameters, - STATE(7626), 1, + STATE(6640), 1, sym_identifier, - STATE(5913), 9, + STATE(7378), 1, + sym__lambda_parameters, + STATE(7531), 1, + sym_parameter_list, + STATE(5851), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -708694,7 +703976,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [231825] = 18, + [227511] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -708715,19 +703997,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(4713), 1, - sym_discard, - ACTIONS(8336), 1, - anon_sym_LPAREN, - STATE(2175), 1, - sym__reserved_identifier, - STATE(6810), 1, - sym_tuple_pattern, - STATE(6951), 1, - sym_identifier, - STATE(5914), 9, + ACTIONS(4763), 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(5852), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -708737,10 +704013,12 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(29), 22, + ACTIONS(4761), 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, @@ -708760,73 +704038,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [231909] = 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(8916), 1, - anon_sym_LPAREN, - STATE(2175), 1, - sym__reserved_identifier, - STATE(7311), 1, - sym_parameter_list, - STATE(7401), 1, - sym__lambda_parameters, - STATE(7626), 1, - sym_identifier, - STATE(5915), 9, - sym_preproc_region, - sym_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, - [231993] = 18, + [227587] = 20, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -708849,83 +704062,21 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, ACTIONS(25), 1, sym__identifier_token, - ACTIONS(8916), 1, + ACTIONS(7799), 1, + anon_sym_RPAREN, + ACTIONS(8890), 1, + anon_sym_COMMA, + ACTIONS(8892), 1, anon_sym_LPAREN, - STATE(2175), 1, + STATE(2168), 1, sym__reserved_identifier, - STATE(6527), 1, + STATE(6640), 1, sym_identifier, - STATE(7311), 1, - sym_parameter_list, - STATE(7401), 1, + STATE(7378), 1, sym__lambda_parameters, - STATE(5916), 9, - sym_preproc_region, - sym_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, - [232077] = 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(8336), 1, - anon_sym_LPAREN, - STATE(2175), 1, - sym__reserved_identifier, - STATE(6477), 1, - sym_identifier, - STATE(6521), 1, - sym_tuple_pattern, - STATE(6972), 1, - sym_variable_declarator, - STATE(5917), 9, + STATE(7531), 1, + sym_parameter_list, + STATE(5853), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -708958,7 +704109,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [232161] = 18, + [227677] = 20, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -708981,17 +704132,21 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, ACTIONS(25), 1, sym__identifier_token, - ACTIONS(8336), 1, - anon_sym_LPAREN, - ACTIONS(9051), 1, + ACTIONS(3877), 1, sym_discard, - STATE(2175), 1, + ACTIONS(7916), 1, + anon_sym_LPAREN, + ACTIONS(8961), 1, + anon_sym_RPAREN, + STATE(2168), 1, sym__reserved_identifier, - STATE(7188), 1, - sym_tuple_pattern, - STATE(7191), 1, + STATE(3352), 1, + sym_parenthesized_variable_designation, + STATE(3355), 1, sym_identifier, - STATE(5918), 9, + STATE(6930), 1, + sym__variable_designation, + STATE(5854), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -709024,7 +704179,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [232245] = 18, + [227767] = 20, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -709047,17 +704202,21 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, ACTIONS(25), 1, sym__identifier_token, - ACTIONS(8336), 1, + ACTIONS(8890), 1, + anon_sym_COMMA, + ACTIONS(8892), 1, anon_sym_LPAREN, - STATE(2175), 1, + ACTIONS(8963), 1, + anon_sym_RPAREN, + STATE(2168), 1, sym__reserved_identifier, - STATE(6310), 1, + STATE(6640), 1, sym_identifier, - STATE(6521), 1, - sym_tuple_pattern, - STATE(6944), 1, - sym_variable_declarator, - STATE(5919), 9, + STATE(7378), 1, + sym__lambda_parameters, + STATE(7531), 1, + sym_parameter_list, + STATE(5855), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -709090,7 +704249,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [232329] = 18, + [227857] = 20, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -709113,17 +704272,21 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, ACTIONS(25), 1, sym__identifier_token, - ACTIONS(8916), 1, + ACTIONS(8890), 1, + anon_sym_COMMA, + ACTIONS(8892), 1, anon_sym_LPAREN, - STATE(2175), 1, + ACTIONS(8965), 1, + anon_sym_RPAREN, + STATE(2168), 1, sym__reserved_identifier, - STATE(6692), 1, + STATE(6640), 1, sym_identifier, - STATE(7311), 1, - sym_parameter_list, - STATE(7536), 1, + STATE(7378), 1, sym__lambda_parameters, - STATE(5920), 9, + STATE(7531), 1, + sym_parameter_list, + STATE(5856), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -709156,7 +704319,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [232413] = 18, + [227947] = 20, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -709179,17 +704342,21 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, ACTIONS(25), 1, sym__identifier_token, - ACTIONS(8336), 1, + ACTIONS(7746), 1, + anon_sym_RPAREN, + ACTIONS(8890), 1, + anon_sym_COMMA, + ACTIONS(8892), 1, anon_sym_LPAREN, - STATE(2175), 1, + STATE(2168), 1, sym__reserved_identifier, - STATE(6477), 1, + STATE(6640), 1, sym_identifier, - STATE(6521), 1, - sym_tuple_pattern, - STATE(6944), 1, - sym_variable_declarator, - STATE(5921), 9, + STATE(7378), 1, + sym__lambda_parameters, + STATE(7531), 1, + sym_parameter_list, + STATE(5857), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -709222,7 +704389,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [232497] = 18, + [228037] = 20, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -709245,17 +704412,21 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, ACTIONS(25), 1, sym__identifier_token, - ACTIONS(8336), 1, + ACTIONS(7594), 1, + anon_sym_RPAREN, + ACTIONS(8890), 1, + anon_sym_COMMA, + ACTIONS(8892), 1, anon_sym_LPAREN, - STATE(2175), 1, + STATE(2168), 1, sym__reserved_identifier, - STATE(6486), 1, - sym_tuple_pattern, - STATE(6491), 1, + STATE(6640), 1, sym_identifier, - STATE(6900), 1, - sym_variable_declarator, - STATE(5922), 9, + STATE(7378), 1, + sym__lambda_parameters, + STATE(7531), 1, + sym_parameter_list, + STATE(5858), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -709288,7 +704459,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [232581] = 18, + [228127] = 18, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -709311,17 +704482,19 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, ACTIONS(25), 1, sym__identifier_token, - ACTIONS(8916), 1, - anon_sym_LPAREN, - STATE(2175), 1, + STATE(2168), 1, sym__reserved_identifier, - STATE(6655), 1, + STATE(2170), 1, + sym_generic_name, + STATE(4370), 1, sym_identifier, - STATE(7311), 1, - sym_parameter_list, - STATE(7401), 1, - sym__lambda_parameters, - STATE(5923), 9, + STATE(6475), 1, + sym__name, + STATE(4068), 3, + sym_alias_qualified_name, + sym__simple_name, + sym_qualified_name, + STATE(5859), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -709354,7 +704527,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [232665] = 18, + [228213] = 18, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -709375,19 +704548,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(8336), 1, + ACTIONS(3963), 1, anon_sym_LPAREN, - STATE(2175), 1, - sym__reserved_identifier, - STATE(6486), 1, - sym_tuple_pattern, - STATE(6491), 1, - sym_identifier, - STATE(6972), 1, - sym_variable_declarator, - STATE(5924), 9, + ACTIONS(4044), 1, + anon_sym_DASH_GT, + ACTIONS(6601), 1, + anon_sym_LBRACK, + ACTIONS(6603), 1, + anon_sym_STAR, + ACTIONS(6705), 1, + anon_sym_QMARK, + ACTIONS(8967), 1, + anon_sym_DOT, + STATE(5860), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -709397,7 +704570,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(29), 22, + ACTIONS(3961), 23, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -709420,7 +704593,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [232749] = 17, + sym__identifier_token, + [228298] = 17, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -709441,17 +704615,18 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(6823), 1, - sym__identifier_token, - STATE(2571), 1, - sym__reserved_identifier, - STATE(2646), 1, - sym_identifier, - STATE(2766), 1, - sym__simple_name, - STATE(2790), 1, - sym_generic_name, - STATE(5925), 9, + ACTIONS(3963), 1, + anon_sym_LPAREN, + ACTIONS(6601), 1, + anon_sym_LBRACK, + ACTIONS(6603), 1, + anon_sym_STAR, + ACTIONS(6705), 1, + anon_sym_QMARK, + ACTIONS(4429), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + STATE(5861), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -709461,7 +704636,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(6825), 22, + ACTIONS(3961), 23, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -709484,7 +704659,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [232830] = 17, + sym__identifier_token, + [228381] = 18, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -709505,17 +704681,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(2175), 1, - sym__reserved_identifier, - STATE(2181), 1, - sym_generic_name, - STATE(2184), 1, - sym_identifier, - STATE(2387), 1, - sym__simple_name, - STATE(5926), 9, + ACTIONS(3963), 1, + anon_sym_LPAREN, + ACTIONS(4094), 1, + anon_sym_DASH_GT, + ACTIONS(6601), 1, + anon_sym_LBRACK, + ACTIONS(6603), 1, + anon_sym_STAR, + ACTIONS(6705), 1, + anon_sym_QMARK, + ACTIONS(8969), 1, + anon_sym_DOT, + STATE(5862), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -709525,7 +704703,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(29), 22, + ACTIONS(3961), 23, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -709548,7 +704726,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [232911] = 17, + sym__identifier_token, + [228466] = 17, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -709569,17 +704748,18 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(6823), 1, - sym__identifier_token, - STATE(2181), 1, - sym_generic_name, - STATE(2571), 1, - sym__reserved_identifier, - STATE(4107), 1, - sym__simple_name, - STATE(6331), 1, - sym_identifier, - STATE(5927), 9, + ACTIONS(3963), 1, + anon_sym_LPAREN, + ACTIONS(6601), 1, + anon_sym_LBRACK, + ACTIONS(6603), 1, + anon_sym_STAR, + ACTIONS(6705), 1, + anon_sym_QMARK, + ACTIONS(4094), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + STATE(5863), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -709589,7 +704769,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(6825), 22, + ACTIONS(3961), 23, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -709612,7 +704792,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [232992] = 17, + sym__identifier_token, + [228549] = 18, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -709633,17 +704814,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(3875), 1, - sym__identifier_token, - STATE(2900), 1, - sym_identifier, - STATE(2929), 1, - sym_generic_name, - STATE(2983), 1, - sym__simple_name, - STATE(3177), 1, - sym__reserved_identifier, - STATE(5928), 9, + ACTIONS(3963), 1, + anon_sym_LPAREN, + ACTIONS(6601), 1, + anon_sym_LBRACK, + ACTIONS(6603), 1, + anon_sym_STAR, + ACTIONS(6705), 1, + anon_sym_QMARK, + ACTIONS(6889), 1, + anon_sym_DOT, + ACTIONS(8971), 1, + anon_sym_SEMI, + STATE(5864), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -709653,7 +704836,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(3877), 22, + ACTIONS(3961), 23, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -709676,7 +704859,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [233073] = 17, + sym__identifier_token, + [228634] = 18, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -709697,17 +704881,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(3875), 1, - sym__identifier_token, - STATE(3141), 1, - sym_identifier, - STATE(3152), 1, - sym__simple_name, - STATE(3156), 1, - sym_generic_name, - STATE(3177), 1, - sym__reserved_identifier, - STATE(5929), 9, + ACTIONS(3963), 1, + anon_sym_LPAREN, + ACTIONS(4094), 1, + anon_sym_DASH_GT, + ACTIONS(6601), 1, + anon_sym_LBRACK, + ACTIONS(6603), 1, + anon_sym_STAR, + ACTIONS(6705), 1, + anon_sym_QMARK, + ACTIONS(8973), 1, + anon_sym_DOT, + STATE(5865), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -709717,7 +704903,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(3877), 22, + ACTIONS(3961), 23, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -709740,7 +704926,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [233154] = 17, + sym__identifier_token, + [228719] = 16, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -709761,17 +704948,18 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(3875), 1, + ACTIONS(25), 1, sym__identifier_token, - STATE(3141), 1, - sym_identifier, - STATE(3153), 1, - sym__simple_name, - STATE(3156), 1, - sym_generic_name, - STATE(3177), 1, + STATE(2168), 1, sym__reserved_identifier, - STATE(5930), 9, + STATE(6859), 1, + sym_identifier, + ACTIONS(8975), 4, + anon_sym_Cdecl, + anon_sym_Stdcall, + anon_sym_Thiscall, + anon_sym_Fastcall, + STATE(5866), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -709781,7 +704969,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(3877), 22, + ACTIONS(29), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -709804,7 +704992,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [233235] = 17, + [228800] = 18, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -709825,17 +705013,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4058), 1, - sym__identifier_token, - STATE(2361), 1, - sym__reserved_identifier, - STATE(2366), 1, - sym_identifier, - STATE(2389), 1, - sym_generic_name, - STATE(2412), 1, - sym__simple_name, - STATE(5931), 9, + ACTIONS(3963), 1, + anon_sym_LPAREN, + ACTIONS(4794), 1, + anon_sym_DASH_GT, + ACTIONS(6601), 1, + anon_sym_LBRACK, + ACTIONS(6603), 1, + anon_sym_STAR, + ACTIONS(6705), 1, + anon_sym_QMARK, + ACTIONS(8977), 1, + anon_sym_DOT, + STATE(5867), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -709845,7 +705035,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(4060), 22, + ACTIONS(3961), 23, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -709868,7 +705058,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [233316] = 17, + sym__identifier_token, + [228885] = 18, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -709889,17 +705080,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9053), 1, - sym__identifier_token, - STATE(2181), 1, - sym_generic_name, - STATE(2184), 1, - sym_identifier, - STATE(2241), 1, - sym__reserved_identifier, - STATE(2309), 1, - sym__simple_name, - STATE(5932), 9, + ACTIONS(3963), 1, + anon_sym_LPAREN, + ACTIONS(4794), 1, + anon_sym_DASH_GT, + ACTIONS(6601), 1, + anon_sym_LBRACK, + ACTIONS(6603), 1, + anon_sym_STAR, + ACTIONS(6705), 1, + anon_sym_QMARK, + ACTIONS(8979), 1, + anon_sym_DOT, + STATE(5868), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -709909,7 +705102,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(9055), 22, + ACTIONS(3961), 23, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -709932,7 +705125,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [233397] = 17, + sym__identifier_token, + [228970] = 18, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -709953,17 +705147,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(2175), 1, - sym__reserved_identifier, - STATE(2181), 1, - sym_generic_name, - STATE(2184), 1, - sym_identifier, - STATE(2339), 1, - sym__simple_name, - STATE(5933), 9, + ACTIONS(3963), 1, + anon_sym_LPAREN, + ACTIONS(4094), 1, + anon_sym_DASH_GT, + ACTIONS(6601), 1, + anon_sym_LBRACK, + ACTIONS(6603), 1, + anon_sym_STAR, + ACTIONS(6705), 1, + anon_sym_QMARK, + ACTIONS(8981), 1, + anon_sym_DOT, + STATE(5869), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -709973,7 +705169,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(29), 22, + ACTIONS(3961), 23, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -709996,7 +705192,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [233478] = 13, + sym__identifier_token, + [229055] = 18, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -710017,10 +705214,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4701), 2, + ACTIONS(3963), 1, + anon_sym_LPAREN, + ACTIONS(4094), 1, + anon_sym_DASH_GT, + ACTIONS(6601), 1, anon_sym_LBRACK, - aux_sym_preproc_if_token1, - STATE(5934), 9, + ACTIONS(6603), 1, + anon_sym_STAR, + ACTIONS(6705), 1, + anon_sym_QMARK, + ACTIONS(8977), 1, + anon_sym_DOT, + STATE(5870), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -710030,12 +705236,10 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(4699), 25, + ACTIONS(3961), 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, @@ -710056,7 +705260,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_select, sym__identifier_token, - [233551] = 17, + [229140] = 19, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -710077,17 +705281,21 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9053), 1, + ACTIONS(6969), 1, sym__identifier_token, - STATE(2181), 1, - sym_generic_name, - STATE(2184), 1, - sym_identifier, - STATE(2236), 1, - sym__simple_name, - STATE(2241), 1, + ACTIONS(8912), 1, + anon_sym_LPAREN, + STATE(2565), 1, sym__reserved_identifier, - STATE(5935), 9, + STATE(7226), 1, + sym_identifier, + STATE(7378), 1, + sym__lambda_parameters, + STATE(7525), 1, + sym_tuple_pattern, + STATE(7531), 1, + sym_parameter_list, + STATE(5871), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -710097,7 +705305,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(9055), 22, + ACTIONS(6971), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -710120,7 +705328,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [233632] = 17, + [229227] = 18, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -710141,17 +705349,86 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(2967), 1, + ACTIONS(3963), 1, + anon_sym_LPAREN, + ACTIONS(4094), 1, + anon_sym_DASH_GT, + ACTIONS(6601), 1, + anon_sym_LBRACK, + ACTIONS(6603), 1, + anon_sym_STAR, + ACTIONS(6705), 1, + anon_sym_QMARK, + ACTIONS(8979), 1, + anon_sym_DOT, + STATE(5872), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + ACTIONS(3961), 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, - STATE(3691), 1, - sym__reserved_identifier, - STATE(3991), 1, - sym_identifier, - STATE(4109), 1, - sym_generic_name, - STATE(4150), 1, - sym__simple_name, - STATE(5936), 9, + [229312] = 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(3963), 1, + anon_sym_LPAREN, + ACTIONS(4044), 1, + anon_sym_DASH_GT, + ACTIONS(6601), 1, + anon_sym_LBRACK, + ACTIONS(6603), 1, + anon_sym_STAR, + ACTIONS(6705), 1, + anon_sym_QMARK, + ACTIONS(8983), 1, + anon_sym_DOT, + STATE(5873), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -710161,7 +705438,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(2971), 22, + ACTIONS(3961), 23, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -710184,7 +705461,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [233713] = 17, + sym__identifier_token, + [229397] = 16, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -710205,17 +705483,18 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9057), 1, + ACTIONS(25), 1, sym__identifier_token, - STATE(2624), 1, - sym_identifier, - STATE(2663), 1, - sym__simple_name, - STATE(2722), 1, - sym_generic_name, - STATE(2849), 1, + STATE(2168), 1, sym__reserved_identifier, - STATE(5937), 9, + STATE(7249), 1, + sym_identifier, + ACTIONS(8985), 4, + anon_sym_Cdecl, + anon_sym_Stdcall, + anon_sym_Thiscall, + anon_sym_Fastcall, + STATE(5874), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -710225,7 +705504,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(9059), 22, + ACTIONS(29), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -710248,7 +705527,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [233794] = 17, + [229478] = 18, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -710269,17 +705548,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(3861), 1, - sym__identifier_token, - STATE(2900), 1, - sym_identifier, - STATE(2904), 1, - sym__reserved_identifier, - STATE(2929), 1, - sym_generic_name, - STATE(2948), 1, - sym__simple_name, - STATE(5938), 9, + ACTIONS(3963), 1, + anon_sym_LPAREN, + ACTIONS(4044), 1, + anon_sym_DASH_GT, + ACTIONS(6601), 1, + anon_sym_LBRACK, + ACTIONS(6603), 1, + anon_sym_STAR, + ACTIONS(6705), 1, + anon_sym_QMARK, + ACTIONS(8987), 1, + anon_sym_DOT, + STATE(5875), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -710289,7 +705570,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(3863), 22, + ACTIONS(3961), 23, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -710312,7 +705593,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [233875] = 17, + sym__identifier_token, + [229563] = 19, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -710333,17 +705615,21 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(25), 1, + ACTIONS(6969), 1, sym__identifier_token, - STATE(2175), 1, + ACTIONS(8912), 1, + anon_sym_LPAREN, + STATE(2565), 1, sym__reserved_identifier, - STATE(2181), 1, - sym_generic_name, - STATE(2184), 1, + STATE(7124), 1, sym_identifier, - STATE(2295), 1, - sym__simple_name, - STATE(5939), 9, + STATE(7286), 1, + sym_tuple_pattern, + STATE(7378), 1, + sym__lambda_parameters, + STATE(7531), 1, + sym_parameter_list, + STATE(5876), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -710353,7 +705639,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(29), 22, + ACTIONS(6971), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -710376,7 +705662,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [233956] = 17, + [229650] = 18, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -710397,17 +705683,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(2175), 1, - sym__reserved_identifier, - STATE(2181), 1, - sym_generic_name, - STATE(2184), 1, - sym_identifier, - STATE(2228), 1, - sym__simple_name, - STATE(5940), 9, + ACTIONS(3963), 1, + anon_sym_LPAREN, + ACTIONS(4094), 1, + anon_sym_DASH_GT, + ACTIONS(6601), 1, + anon_sym_LBRACK, + ACTIONS(6603), 1, + anon_sym_STAR, + ACTIONS(6705), 1, + anon_sym_QMARK, + ACTIONS(8989), 1, + anon_sym_DOT, + STATE(5877), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -710417,7 +705705,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(29), 22, + ACTIONS(3961), 23, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -710440,7 +705728,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [234037] = 17, + sym__identifier_token, + [229735] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -710461,17 +705750,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9053), 1, - sym__identifier_token, - STATE(2181), 1, - sym_generic_name, - STATE(2184), 1, - sym_identifier, - STATE(2188), 1, - sym__simple_name, - STATE(2241), 1, - sym__reserved_identifier, - STATE(5941), 9, + ACTIONS(8993), 1, + anon_sym_LPAREN, + STATE(5878), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -710481,15 +705762,20 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(9055), 22, + ACTIONS(8991), 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, @@ -710504,7 +705790,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [234118] = 17, + sym__identifier_token, + [229810] = 18, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -710525,17 +705812,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9053), 1, - sym__identifier_token, - STATE(2181), 1, - sym_generic_name, - STATE(2184), 1, - sym_identifier, - STATE(2241), 1, - sym__reserved_identifier, - STATE(2339), 1, - sym__simple_name, - STATE(5942), 9, + ACTIONS(3963), 1, + anon_sym_LPAREN, + ACTIONS(4044), 1, + anon_sym_DASH_GT, + ACTIONS(6601), 1, + anon_sym_LBRACK, + ACTIONS(6603), 1, + anon_sym_STAR, + ACTIONS(6705), 1, + anon_sym_QMARK, + ACTIONS(8995), 1, + anon_sym_DOT, + STATE(5879), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -710545,7 +705834,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(9055), 22, + ACTIONS(3961), 23, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -710568,7 +705857,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [234199] = 17, + sym__identifier_token, + [229895] = 17, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -710589,17 +705879,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, - STATE(2175), 1, - sym__reserved_identifier, - STATE(2181), 1, - sym_generic_name, - STATE(2184), 1, - sym_identifier, - STATE(2360), 1, - sym__simple_name, - STATE(5943), 9, + ACTIONS(3963), 1, + anon_sym_LPAREN, + ACTIONS(6601), 1, + anon_sym_LBRACK, + ACTIONS(6603), 1, + anon_sym_STAR, + ACTIONS(6705), 1, + anon_sym_QMARK, + ACTIONS(4794), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + STATE(5880), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -710609,7 +705900,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(29), 22, + ACTIONS(3961), 23, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -710632,7 +705923,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [234280] = 17, + sym__identifier_token, + [229978] = 18, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -710653,17 +705945,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9053), 1, - sym__identifier_token, - STATE(2181), 1, - sym_generic_name, - STATE(2184), 1, - sym_identifier, - STATE(2241), 1, - sym__reserved_identifier, - STATE(2266), 1, - sym__simple_name, - STATE(5944), 9, + ACTIONS(3963), 1, + anon_sym_LPAREN, + ACTIONS(4794), 1, + anon_sym_DASH_GT, + ACTIONS(6601), 1, + anon_sym_LBRACK, + ACTIONS(6603), 1, + anon_sym_STAR, + ACTIONS(6705), 1, + anon_sym_QMARK, + ACTIONS(8997), 1, + anon_sym_DOT, + STATE(5881), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -710673,7 +705967,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(9055), 22, + ACTIONS(3961), 23, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -710696,7 +705990,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [234361] = 17, + sym__identifier_token, + [230063] = 18, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -710717,17 +706012,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9061), 1, - sym__identifier_token, - STATE(2569), 1, - sym_identifier, - STATE(2603), 1, - sym__simple_name, - STATE(2635), 1, - sym_generic_name, - STATE(2645), 1, - sym__reserved_identifier, - STATE(5945), 9, + ACTIONS(3963), 1, + anon_sym_LPAREN, + ACTIONS(4429), 1, + anon_sym_DASH_GT, + ACTIONS(6601), 1, + anon_sym_LBRACK, + ACTIONS(6603), 1, + anon_sym_STAR, + ACTIONS(6705), 1, + anon_sym_QMARK, + ACTIONS(8999), 1, + anon_sym_DOT, + STATE(5882), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -710737,7 +706034,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(9063), 22, + ACTIONS(3961), 23, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -710760,7 +706057,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [234442] = 16, + sym__identifier_token, + [230148] = 18, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -710781,16 +706079,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(6823), 1, - sym__identifier_token, - STATE(2571), 1, - sym__reserved_identifier, - STATE(6258), 1, - sym_identifier, - ACTIONS(9065), 2, - anon_sym_class, - anon_sym_struct, - STATE(5946), 9, + ACTIONS(3963), 1, + anon_sym_LPAREN, + ACTIONS(4699), 1, + anon_sym_DASH_GT, + ACTIONS(6601), 1, + anon_sym_LBRACK, + ACTIONS(6603), 1, + anon_sym_STAR, + ACTIONS(6705), 1, + anon_sym_QMARK, + ACTIONS(9001), 1, + anon_sym_DOT, + STATE(5883), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -710800,7 +706101,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(6825), 22, + ACTIONS(3961), 23, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -710823,7 +706124,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [234521] = 16, + sym__identifier_token, + [230233] = 19, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -710844,16 +706146,21 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(6823), 1, + ACTIONS(25), 1, sym__identifier_token, - STATE(2571), 1, + ACTIONS(8890), 1, + anon_sym_COMMA, + ACTIONS(8892), 1, + anon_sym_LPAREN, + STATE(2168), 1, sym__reserved_identifier, - STATE(6265), 1, + STATE(6866), 1, sym_identifier, - ACTIONS(9067), 2, - anon_sym_class, - anon_sym_struct, - STATE(5947), 9, + STATE(7378), 1, + sym__lambda_parameters, + STATE(7531), 1, + sym_parameter_list, + STATE(5884), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -710863,7 +706170,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(6825), 22, + ACTIONS(29), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -710886,7 +706193,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [234600] = 17, + [230320] = 18, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -710907,17 +706214,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(9069), 1, - anon_sym_operator, - ACTIONS(9071), 1, - anon_sym_this, - STATE(2175), 1, - sym__reserved_identifier, - STATE(6333), 1, - sym_identifier, - STATE(5948), 9, + ACTIONS(3963), 1, + anon_sym_LPAREN, + ACTIONS(4794), 1, + anon_sym_DASH_GT, + ACTIONS(6601), 1, + anon_sym_LBRACK, + ACTIONS(6603), 1, + anon_sym_STAR, + ACTIONS(6705), 1, + anon_sym_QMARK, + ACTIONS(9003), 1, + anon_sym_DOT, + STATE(5885), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -710927,7 +706236,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(29), 22, + ACTIONS(3961), 23, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -710950,7 +706259,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [234681] = 17, + sym__identifier_token, + [230405] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -710971,17 +706281,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(2175), 1, - sym__reserved_identifier, - STATE(2181), 1, - sym_generic_name, - STATE(2184), 1, - sym_identifier, - STATE(2328), 1, - sym__simple_name, - STATE(5949), 9, + ACTIONS(9007), 1, + anon_sym_LPAREN, + STATE(5886), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -710991,15 +706293,20 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(29), 22, + ACTIONS(9005), 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, @@ -711014,7 +706321,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [234762] = 16, + sym__identifier_token, + [230480] = 18, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -711035,16 +706343,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(2175), 1, - sym__reserved_identifier, - STATE(7154), 1, - sym_identifier, - ACTIONS(8914), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - STATE(5950), 9, + ACTIONS(3963), 1, + anon_sym_LPAREN, + ACTIONS(6601), 1, + anon_sym_LBRACK, + ACTIONS(6603), 1, + anon_sym_STAR, + ACTIONS(6705), 1, + anon_sym_QMARK, + ACTIONS(6889), 1, + anon_sym_DOT, + ACTIONS(9009), 1, + anon_sym_SEMI, + STATE(5887), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -711054,7 +706365,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(29), 22, + ACTIONS(3961), 23, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -711077,7 +706388,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [234841] = 17, + sym__identifier_token, + [230565] = 18, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -711098,17 +706410,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9073), 1, - sym__identifier_token, - STATE(2248), 1, - sym_identifier, - STATE(2254), 1, - sym__reserved_identifier, - STATE(2263), 1, - sym__simple_name, - STATE(2269), 1, - sym_generic_name, - STATE(5951), 9, + ACTIONS(3963), 1, + anon_sym_LPAREN, + ACTIONS(4429), 1, + anon_sym_DASH_GT, + ACTIONS(6601), 1, + anon_sym_LBRACK, + ACTIONS(6603), 1, + anon_sym_STAR, + ACTIONS(6705), 1, + anon_sym_QMARK, + ACTIONS(9011), 1, + anon_sym_DOT, + STATE(5888), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -711118,7 +706432,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(9075), 22, + ACTIONS(3961), 23, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -711141,7 +706455,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [234922] = 16, + sym__identifier_token, + [230650] = 18, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -711162,16 +706477,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(6823), 1, - sym__identifier_token, - STATE(2571), 1, - sym__reserved_identifier, - STATE(6264), 1, - sym_identifier, - ACTIONS(9077), 2, - anon_sym_class, - anon_sym_struct, - STATE(5952), 9, + ACTIONS(3963), 1, + anon_sym_LPAREN, + ACTIONS(4699), 1, + anon_sym_DASH_GT, + ACTIONS(6601), 1, + anon_sym_LBRACK, + ACTIONS(6603), 1, + anon_sym_STAR, + ACTIONS(6705), 1, + anon_sym_QMARK, + ACTIONS(9013), 1, + anon_sym_DOT, + STATE(5889), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -711181,7 +706499,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(6825), 22, + ACTIONS(3961), 23, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -711204,7 +706522,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [235001] = 17, + sym__identifier_token, + [230735] = 18, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -711225,17 +706544,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9053), 1, - sym__identifier_token, - STATE(2181), 1, - sym_generic_name, - STATE(2184), 1, - sym_identifier, - STATE(2241), 1, - sym__reserved_identifier, - STATE(2280), 1, - sym__simple_name, - STATE(5953), 9, + ACTIONS(3963), 1, + anon_sym_LPAREN, + ACTIONS(4794), 1, + anon_sym_DASH_GT, + ACTIONS(6601), 1, + anon_sym_LBRACK, + ACTIONS(6603), 1, + anon_sym_STAR, + ACTIONS(6705), 1, + anon_sym_QMARK, + ACTIONS(8969), 1, + anon_sym_DOT, + STATE(5890), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -711245,7 +706566,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(9055), 22, + ACTIONS(3961), 23, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -711268,7 +706589,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [235082] = 17, + sym__identifier_token, + [230820] = 17, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -711289,17 +706611,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, - STATE(2175), 1, - sym__reserved_identifier, - STATE(2181), 1, - sym_generic_name, - STATE(2184), 1, - sym_identifier, - STATE(2398), 1, - sym__simple_name, - STATE(5954), 9, + ACTIONS(3963), 1, + anon_sym_LPAREN, + ACTIONS(6601), 1, + anon_sym_LBRACK, + ACTIONS(6603), 1, + anon_sym_STAR, + ACTIONS(6705), 1, + anon_sym_QMARK, + ACTIONS(4699), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + STATE(5891), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -711309,7 +706632,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(29), 22, + ACTIONS(3961), 23, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -711332,7 +706655,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [235163] = 17, + sym__identifier_token, + [230903] = 19, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -711353,17 +706677,21 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9053), 1, + ACTIONS(25), 1, sym__identifier_token, - STATE(2181), 1, - sym_generic_name, - STATE(2184), 1, - sym_identifier, - STATE(2241), 1, + ACTIONS(3877), 1, + sym_discard, + ACTIONS(7916), 1, + anon_sym_LPAREN, + STATE(2168), 1, sym__reserved_identifier, - STATE(2289), 1, - sym__simple_name, - STATE(5955), 9, + STATE(3352), 1, + sym_parenthesized_variable_designation, + STATE(3355), 1, + sym_identifier, + STATE(7095), 1, + sym__variable_designation, + STATE(5892), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -711373,7 +706701,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(9055), 22, + ACTIONS(29), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -711396,7 +706724,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [235244] = 17, + [230990] = 18, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -711417,17 +706745,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(3788), 1, - sym__identifier_token, - STATE(3176), 1, - sym_identifier, - STATE(3225), 1, - sym__reserved_identifier, - STATE(3246), 1, - sym_generic_name, - STATE(3472), 1, - sym__simple_name, - STATE(5956), 9, + ACTIONS(3963), 1, + anon_sym_LPAREN, + ACTIONS(4044), 1, + anon_sym_DASH_GT, + ACTIONS(6601), 1, + anon_sym_LBRACK, + ACTIONS(6603), 1, + anon_sym_STAR, + ACTIONS(6705), 1, + anon_sym_QMARK, + ACTIONS(9015), 1, + anon_sym_DOT, + STATE(5893), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -711437,7 +706767,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(3790), 22, + ACTIONS(3961), 23, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -711460,7 +706790,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [235325] = 17, + sym__identifier_token, + [231075] = 18, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -711481,17 +706812,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(2175), 1, - sym__reserved_identifier, - STATE(2181), 1, - sym_generic_name, - STATE(2184), 1, - sym_identifier, - STATE(2916), 1, - sym__simple_name, - STATE(5957), 9, + ACTIONS(3963), 1, + anon_sym_LPAREN, + ACTIONS(4094), 1, + anon_sym_DASH_GT, + ACTIONS(6601), 1, + anon_sym_LBRACK, + ACTIONS(6603), 1, + anon_sym_STAR, + ACTIONS(6705), 1, + anon_sym_QMARK, + ACTIONS(9017), 1, + anon_sym_DOT, + STATE(5894), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -711501,7 +706834,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(29), 22, + ACTIONS(3961), 23, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -711524,7 +706857,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [235406] = 17, + sym__identifier_token, + [231160] = 18, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -711545,17 +706879,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(2175), 1, - sym__reserved_identifier, - STATE(2181), 1, - sym_generic_name, - STATE(2184), 1, - sym_identifier, - STATE(2188), 1, - sym__simple_name, - STATE(5958), 9, + ACTIONS(3963), 1, + anon_sym_LPAREN, + ACTIONS(4044), 1, + anon_sym_DASH_GT, + ACTIONS(6601), 1, + anon_sym_LBRACK, + ACTIONS(6603), 1, + anon_sym_STAR, + ACTIONS(6705), 1, + anon_sym_QMARK, + ACTIONS(9019), 1, + anon_sym_DOT, + STATE(5895), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -711565,7 +706901,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(29), 22, + ACTIONS(3961), 23, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -711588,7 +706924,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [235487] = 17, + sym__identifier_token, + [231245] = 18, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -711609,17 +706946,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(2175), 1, - sym__reserved_identifier, - STATE(2181), 1, - sym_generic_name, - STATE(2184), 1, - sym_identifier, - STATE(2321), 1, - sym__simple_name, - STATE(5959), 9, + ACTIONS(3963), 1, + anon_sym_LPAREN, + ACTIONS(4044), 1, + anon_sym_DASH_GT, + ACTIONS(6601), 1, + anon_sym_LBRACK, + ACTIONS(6603), 1, + anon_sym_STAR, + ACTIONS(6705), 1, + anon_sym_QMARK, + ACTIONS(9021), 1, + anon_sym_DOT, + STATE(5896), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -711629,7 +706968,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(29), 22, + ACTIONS(3961), 23, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -711652,7 +706991,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [235568] = 17, + sym__identifier_token, + [231330] = 18, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -711673,17 +707013,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9053), 1, - sym__identifier_token, - STATE(2181), 1, - sym_generic_name, - STATE(2184), 1, - sym_identifier, - STATE(2241), 1, - sym__reserved_identifier, - STATE(2323), 1, - sym__simple_name, - STATE(5960), 9, + ACTIONS(3963), 1, + anon_sym_LPAREN, + ACTIONS(4794), 1, + anon_sym_DASH_GT, + ACTIONS(6601), 1, + anon_sym_LBRACK, + ACTIONS(6603), 1, + anon_sym_STAR, + ACTIONS(6705), 1, + anon_sym_QMARK, + ACTIONS(8981), 1, + anon_sym_DOT, + STATE(5897), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -711693,7 +707035,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(9055), 22, + ACTIONS(3961), 23, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -711716,7 +707058,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [235649] = 17, + sym__identifier_token, + [231415] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -711737,17 +707080,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(9079), 1, - anon_sym_operator, - ACTIONS(9081), 1, - anon_sym_this, - STATE(2175), 1, - sym__reserved_identifier, - STATE(6336), 1, - sym_identifier, - STATE(5961), 9, + ACTIONS(9025), 1, + anon_sym_LPAREN, + STATE(5898), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -711757,15 +707092,20 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(29), 22, + ACTIONS(9023), 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, @@ -711780,7 +707120,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [235730] = 17, + sym__identifier_token, + [231490] = 18, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -711801,17 +707142,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(25), 1, + ACTIONS(8825), 1, sym__identifier_token, - STATE(2175), 1, + STATE(2168), 1, sym__reserved_identifier, - STATE(2181), 1, + STATE(2170), 1, sym_generic_name, - STATE(2184), 1, - sym_identifier, - STATE(2363), 1, + STATE(4147), 1, sym__simple_name, - STATE(5962), 9, + STATE(4457), 1, + sym_identifier, + ACTIONS(8816), 2, + anon_sym_operator, + anon_sym_this, + STATE(5899), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -711821,7 +707165,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(29), 22, + ACTIONS(8828), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -711844,7 +707188,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [235811] = 17, + [231575] = 18, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -711865,17 +707209,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(2175), 1, - sym__reserved_identifier, - STATE(2181), 1, - sym_generic_name, - STATE(2184), 1, - sym_identifier, - STATE(2266), 1, - sym__simple_name, - STATE(5963), 9, + ACTIONS(3963), 1, + anon_sym_LPAREN, + ACTIONS(4794), 1, + anon_sym_DASH_GT, + ACTIONS(6601), 1, + anon_sym_LBRACK, + ACTIONS(6603), 1, + anon_sym_STAR, + ACTIONS(6705), 1, + anon_sym_QMARK, + ACTIONS(9017), 1, + anon_sym_DOT, + STATE(5900), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -711885,7 +707231,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(29), 22, + ACTIONS(3961), 23, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -711908,7 +707254,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [235892] = 17, + sym__identifier_token, + [231660] = 18, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -711929,17 +707276,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9053), 1, + ACTIONS(25), 1, sym__identifier_token, - STATE(2181), 1, - sym_generic_name, - STATE(2241), 1, + ACTIONS(8310), 1, + anon_sym_LPAREN, + STATE(2168), 1, sym__reserved_identifier, - STATE(4107), 1, - sym__simple_name, - STATE(4369), 1, + STATE(6578), 1, + sym_tuple_pattern, + STATE(6600), 1, sym_identifier, - STATE(5964), 9, + STATE(6771), 1, + sym_variable_declarator, + STATE(5901), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -711949,7 +707298,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(9055), 22, + ACTIONS(29), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -711972,7 +707321,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [235973] = 17, + [231744] = 18, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -711993,17 +707342,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9053), 1, + ACTIONS(25), 1, sym__identifier_token, - STATE(2181), 1, - sym_generic_name, - STATE(2184), 1, - sym_identifier, - STATE(2241), 1, + ACTIONS(8892), 1, + anon_sym_LPAREN, + STATE(2168), 1, sym__reserved_identifier, - STATE(2292), 1, - sym__simple_name, - STATE(5965), 9, + STATE(6643), 1, + sym_identifier, + STATE(7330), 1, + sym__lambda_parameters, + STATE(7531), 1, + sym_parameter_list, + STATE(5902), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -712013,7 +707364,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(9055), 22, + ACTIONS(29), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -712036,7 +707387,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [236054] = 17, + [231828] = 18, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -712057,17 +707408,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9057), 1, + ACTIONS(25), 1, sym__identifier_token, - STATE(2624), 1, - sym_identifier, - STATE(2664), 1, - sym__simple_name, - STATE(2722), 1, - sym_generic_name, - STATE(2849), 1, + ACTIONS(8310), 1, + anon_sym_LPAREN, + STATE(2168), 1, sym__reserved_identifier, - STATE(5966), 9, + STATE(6460), 1, + sym_identifier, + STATE(6504), 1, + sym_tuple_pattern, + STATE(6838), 1, + sym_variable_declarator, + STATE(5903), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -712077,7 +707430,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(9059), 22, + ACTIONS(29), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -712100,7 +707453,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [236135] = 17, + [231912] = 18, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -712123,15 +707476,17 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, ACTIONS(25), 1, sym__identifier_token, - STATE(2175), 1, + ACTIONS(8892), 1, + anon_sym_LPAREN, + STATE(2168), 1, sym__reserved_identifier, - STATE(2181), 1, - sym_generic_name, - STATE(2184), 1, + STATE(6619), 1, sym_identifier, - STATE(2289), 1, - sym__simple_name, - STATE(5967), 9, + STATE(7378), 1, + sym__lambda_parameters, + STATE(7531), 1, + sym_parameter_list, + STATE(5904), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -712164,7 +707519,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [236216] = 17, + [231996] = 18, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -712185,17 +707540,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4050), 1, + ACTIONS(25), 1, sym__identifier_token, - STATE(4314), 1, - sym_identifier, - STATE(4323), 1, + ACTIONS(8310), 1, + anon_sym_LPAREN, + STATE(2168), 1, sym__reserved_identifier, - STATE(4364), 1, - sym__simple_name, - STATE(4403), 1, - sym_generic_name, - STATE(5968), 9, + STATE(6578), 1, + sym_tuple_pattern, + STATE(6600), 1, + sym_identifier, + STATE(6942), 1, + sym_variable_declarator, + STATE(5905), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -712205,7 +707562,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(4052), 22, + ACTIONS(29), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -712228,7 +707585,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [236297] = 17, + [232080] = 18, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -712251,15 +707608,17 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, ACTIONS(25), 1, sym__identifier_token, - STATE(2175), 1, + ACTIONS(8892), 1, + anon_sym_LPAREN, + STATE(2168), 1, sym__reserved_identifier, - STATE(2181), 1, - sym_generic_name, - STATE(2184), 1, + STATE(7285), 1, sym_identifier, - STATE(2323), 1, - sym__simple_name, - STATE(5969), 9, + STATE(7330), 1, + sym__lambda_parameters, + STATE(7531), 1, + sym_parameter_list, + STATE(5906), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -712292,7 +707651,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [236378] = 17, + [232164] = 18, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -712313,17 +707672,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9083), 1, + ACTIONS(25), 1, sym__identifier_token, - STATE(4109), 1, - sym_generic_name, - STATE(4150), 1, - sym__simple_name, - STATE(5567), 1, + ACTIONS(8892), 1, + anon_sym_LPAREN, + STATE(2168), 1, sym__reserved_identifier, - STATE(6278), 1, + STATE(7285), 1, sym_identifier, - STATE(5970), 9, + STATE(7378), 1, + sym__lambda_parameters, + STATE(7531), 1, + sym_parameter_list, + STATE(5907), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -712333,7 +707694,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(9085), 22, + ACTIONS(29), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -712356,7 +707717,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [236459] = 17, + [232248] = 18, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -712377,17 +707738,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9053), 1, + ACTIONS(25), 1, sym__identifier_token, - STATE(2181), 1, - sym_generic_name, - STATE(2184), 1, - sym_identifier, - STATE(2194), 1, - sym__simple_name, - STATE(2241), 1, + ACTIONS(8310), 1, + anon_sym_LPAREN, + ACTIONS(9027), 1, + sym_discard, + STATE(2168), 1, sym__reserved_identifier, - STATE(5971), 9, + STATE(7157), 1, + sym_tuple_pattern, + STATE(7177), 1, + sym_identifier, + STATE(5908), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -712397,7 +707760,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(9055), 22, + ACTIONS(29), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -712420,7 +707783,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [236540] = 17, + [232332] = 18, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -712443,15 +707806,17 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, ACTIONS(25), 1, sym__identifier_token, - STATE(2175), 1, + ACTIONS(8892), 1, + anon_sym_LPAREN, + STATE(2168), 1, sym__reserved_identifier, - STATE(2181), 1, - sym_generic_name, - STATE(2184), 1, + STATE(7285), 1, sym_identifier, - STATE(2236), 1, - sym__simple_name, - STATE(5972), 9, + STATE(7453), 1, + sym__lambda_parameters, + STATE(7531), 1, + sym_parameter_list, + STATE(5909), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -712484,7 +707849,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [236621] = 17, + [232416] = 18, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -712507,15 +707872,17 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, ACTIONS(25), 1, sym__identifier_token, - STATE(2175), 1, + ACTIONS(4689), 1, + sym_discard, + ACTIONS(8310), 1, + anon_sym_LPAREN, + STATE(2168), 1, sym__reserved_identifier, - STATE(2181), 1, - sym_generic_name, - STATE(2184), 1, + STATE(6789), 1, sym_identifier, - STATE(2325), 1, - sym__simple_name, - STATE(5973), 9, + STATE(6980), 1, + sym_tuple_pattern, + STATE(5910), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -712548,7 +707915,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [236702] = 17, + [232500] = 18, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -712569,17 +707936,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9053), 1, + ACTIONS(25), 1, sym__identifier_token, - STATE(2181), 1, - sym_generic_name, - STATE(2184), 1, - sym_identifier, - STATE(2196), 1, - sym__simple_name, - STATE(2241), 1, + ACTIONS(8310), 1, + anon_sym_LPAREN, + STATE(2168), 1, sym__reserved_identifier, - STATE(5974), 9, + STATE(6277), 1, + sym_identifier, + STATE(6504), 1, + sym_tuple_pattern, + STATE(6838), 1, + sym_variable_declarator, + STATE(5911), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -712589,7 +707958,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(9055), 22, + ACTIONS(29), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -712612,7 +707981,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [236783] = 17, + [232584] = 18, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -712633,17 +708002,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9053), 1, + ACTIONS(25), 1, sym__identifier_token, - STATE(2181), 1, - sym_generic_name, - STATE(2184), 1, - sym_identifier, - STATE(2187), 1, - sym__simple_name, - STATE(2241), 1, + ACTIONS(8310), 1, + anon_sym_LPAREN, + STATE(2168), 1, sym__reserved_identifier, - STATE(5975), 9, + STATE(6460), 1, + sym_identifier, + STATE(6504), 1, + sym_tuple_pattern, + STATE(6942), 1, + sym_variable_declarator, + STATE(5912), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -712653,7 +708024,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(9055), 22, + ACTIONS(29), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -712676,7 +708047,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [236864] = 17, + [232668] = 18, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -712697,17 +708068,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9053), 1, + ACTIONS(25), 1, sym__identifier_token, - STATE(2181), 1, - sym_generic_name, - STATE(2184), 1, - sym_identifier, - STATE(2199), 1, - sym__simple_name, - STATE(2241), 1, + ACTIONS(8892), 1, + anon_sym_LPAREN, + STATE(2168), 1, sym__reserved_identifier, - STATE(5976), 9, + STATE(6486), 1, + sym_identifier, + STATE(7330), 1, + sym__lambda_parameters, + STATE(7531), 1, + sym_parameter_list, + STATE(5913), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -712717,7 +708090,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(9055), 22, + ACTIONS(29), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -712740,7 +708113,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [236945] = 17, + [232752] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -712761,17 +708134,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, - STATE(2175), 1, - sym__reserved_identifier, - STATE(2181), 1, - sym_generic_name, - STATE(2184), 1, - sym_identifier, - STATE(2326), 1, - sym__simple_name, - STATE(5977), 9, + ACTIONS(5140), 2, + anon_sym_LBRACK, + aux_sym_preproc_if_token1, + STATE(5914), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -712781,10 +708147,12 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(29), 22, + ACTIONS(5138), 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, @@ -712804,7 +708172,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [237026] = 17, + sym__identifier_token, + [232825] = 17, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -712825,17 +708194,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(3875), 1, + ACTIONS(25), 1, sym__identifier_token, - STATE(2958), 1, - sym_identifier, - STATE(2985), 1, + STATE(2168), 1, + sym__reserved_identifier, + STATE(2170), 1, sym_generic_name, - STATE(3098), 1, + STATE(2179), 1, + sym_identifier, + STATE(2403), 1, sym__simple_name, - STATE(3177), 1, - sym__reserved_identifier, - STATE(5978), 9, + STATE(5915), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -712845,7 +708214,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(3877), 22, + ACTIONS(29), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -712868,7 +708237,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [237107] = 17, + [232906] = 17, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -712889,17 +708258,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(2967), 1, + ACTIONS(9029), 1, sym__identifier_token, - STATE(3691), 1, - sym__reserved_identifier, - STATE(3991), 1, + STATE(2170), 1, + sym_generic_name, + STATE(2179), 1, sym_identifier, - STATE(4107), 1, + STATE(2234), 1, + sym__reserved_identifier, + STATE(2320), 1, sym__simple_name, - STATE(4109), 1, - sym_generic_name, - STATE(5979), 9, + STATE(5916), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -712909,7 +708278,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(2971), 22, + ACTIONS(9031), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -712932,7 +708301,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [237188] = 17, + [232987] = 17, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -712955,15 +708324,15 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, ACTIONS(25), 1, sym__identifier_token, - ACTIONS(9087), 1, - anon_sym_RBRACE, - STATE(2175), 1, + STATE(2168), 1, sym__reserved_identifier, - STATE(6780), 1, - sym_with_initializer, - STATE(7482), 1, + STATE(2170), 1, + sym_generic_name, + STATE(2179), 1, sym_identifier, - STATE(5980), 9, + STATE(2369), 1, + sym__simple_name, + STATE(5917), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -712996,7 +708365,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [237269] = 17, + [233068] = 17, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -713017,17 +708386,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(6823), 1, + ACTIONS(3798), 1, sym__identifier_token, - STATE(2181), 1, - sym_generic_name, - STATE(2571), 1, + STATE(3140), 1, + sym_identifier, + STATE(3205), 1, sym__reserved_identifier, - STATE(4150), 1, + STATE(3241), 1, + sym_generic_name, + STATE(3266), 1, sym__simple_name, - STATE(6331), 1, - sym_identifier, - STATE(5981), 9, + STATE(5918), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -713037,7 +708406,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(6825), 22, + ACTIONS(3800), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -713060,7 +708429,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [237350] = 17, + [233149] = 17, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -713081,17 +708450,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9053), 1, + ACTIONS(3798), 1, sym__identifier_token, - STATE(2181), 1, - sym_generic_name, - STATE(2184), 1, + STATE(3140), 1, sym_identifier, - STATE(2193), 1, - sym__simple_name, - STATE(2241), 1, + STATE(3205), 1, sym__reserved_identifier, - STATE(5982), 9, + STATE(3241), 1, + sym_generic_name, + STATE(3271), 1, + sym__simple_name, + STATE(5919), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -713101,7 +708470,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(9055), 22, + ACTIONS(3800), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -713124,7 +708493,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [237431] = 17, + [233230] = 17, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -713145,17 +708514,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(25), 1, + ACTIONS(3871), 1, sym__identifier_token, - STATE(2175), 1, + STATE(2916), 1, sym__reserved_identifier, - STATE(2181), 1, - sym_generic_name, - STATE(2184), 1, + STATE(2932), 1, sym_identifier, - STATE(2408), 1, + STATE(3030), 1, + sym_generic_name, + STATE(3051), 1, sym__simple_name, - STATE(5983), 9, + STATE(5920), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -713165,7 +708534,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(29), 22, + ACTIONS(3873), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -713188,7 +708557,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [237512] = 17, + [233311] = 17, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -713209,17 +708578,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9083), 1, + ACTIONS(9033), 1, sym__identifier_token, - STATE(3991), 1, + STATE(2618), 1, sym_identifier, - STATE(4107), 1, - sym__simple_name, - STATE(4109), 1, + STATE(2698), 1, sym_generic_name, - STATE(5567), 1, + STATE(2736), 1, + sym__simple_name, + STATE(2745), 1, sym__reserved_identifier, - STATE(5984), 9, + STATE(5921), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -713229,7 +708598,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(9085), 22, + ACTIONS(9035), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -713252,7 +708621,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [237593] = 17, + [233392] = 17, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -713273,17 +708642,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(3875), 1, + ACTIONS(25), 1, sym__identifier_token, - STATE(3176), 1, - sym_identifier, - STATE(3177), 1, + STATE(2168), 1, sym__reserved_identifier, - STATE(3246), 1, + STATE(2170), 1, sym_generic_name, - STATE(3286), 1, + STATE(2179), 1, + sym_identifier, + STATE(2312), 1, sym__simple_name, - STATE(5985), 9, + STATE(5922), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -713293,7 +708662,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(3877), 22, + ACTIONS(29), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -713316,7 +708685,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [237674] = 13, + [233473] = 17, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -713337,10 +708706,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(5132), 2, - anon_sym_LBRACK, - aux_sym_preproc_if_token1, - STATE(5986), 9, + ACTIONS(9037), 1, + sym__identifier_token, + STATE(2243), 1, + sym_identifier, + STATE(2247), 1, + sym__simple_name, + STATE(2252), 1, + sym__reserved_identifier, + STATE(2262), 1, + sym_generic_name, + STATE(5923), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -713350,12 +708726,10 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5130), 25, + ACTIONS(9039), 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, @@ -713375,8 +708749,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - sym__identifier_token, - [237747] = 17, + [233554] = 17, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -713399,15 +708772,15 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, ACTIONS(25), 1, sym__identifier_token, - STATE(2175), 1, + STATE(2168), 1, sym__reserved_identifier, - STATE(2181), 1, + STATE(2170), 1, sym_generic_name, - STATE(2184), 1, + STATE(2179), 1, sym_identifier, - STATE(2327), 1, + STATE(2250), 1, sym__simple_name, - STATE(5987), 9, + STATE(5924), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -713440,7 +708813,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [237828] = 13, + [233635] = 17, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -713461,10 +708834,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4955), 2, - anon_sym_LBRACK, - aux_sym_preproc_if_token1, - STATE(5988), 9, + ACTIONS(3871), 1, + sym__identifier_token, + STATE(2916), 1, + sym__reserved_identifier, + STATE(2932), 1, + sym_identifier, + STATE(3030), 1, + sym_generic_name, + STATE(3070), 1, + sym__simple_name, + STATE(5925), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -713474,12 +708854,10 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(4953), 25, + ACTIONS(3873), 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, @@ -713499,8 +708877,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - sym__identifier_token, - [237901] = 17, + [233716] = 17, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -713521,17 +708898,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(3875), 1, + ACTIONS(9041), 1, sym__identifier_token, - STATE(3141), 1, + STATE(2563), 1, sym_identifier, - STATE(3156), 1, + STATE(2594), 1, + sym__simple_name, + STATE(2627), 1, sym_generic_name, - STATE(3177), 1, + STATE(2639), 1, sym__reserved_identifier, - STATE(3336), 1, - sym__simple_name, - STATE(5989), 9, + STATE(5926), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -713541,7 +708918,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(3877), 22, + ACTIONS(9043), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -713564,7 +708941,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [237982] = 17, + [233797] = 17, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -713587,15 +708964,15 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, ACTIONS(25), 1, sym__identifier_token, - ACTIONS(6678), 1, - anon_sym_LBRACK, - ACTIONS(6716), 1, - anon_sym_QMARK, - STATE(2175), 1, + ACTIONS(9045), 1, + anon_sym_operator, + ACTIONS(9047), 1, + anon_sym_this, + STATE(2168), 1, sym__reserved_identifier, - STATE(6983), 1, + STATE(6322), 1, sym_identifier, - STATE(5990), 9, + STATE(5927), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -713628,7 +709005,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [238063] = 17, + [233878] = 17, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -713649,17 +709026,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4058), 1, + ACTIONS(3814), 1, sym__identifier_token, - STATE(2361), 1, - sym__reserved_identifier, - STATE(2366), 1, + STATE(2899), 1, sym_identifier, - STATE(2389), 1, - sym_generic_name, - STATE(3720), 1, + STATE(2900), 1, + sym__reserved_identifier, + STATE(2910), 1, sym__simple_name, - STATE(5991), 9, + STATE(2950), 1, + sym_generic_name, + STATE(5928), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -713669,7 +709046,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(4060), 22, + ACTIONS(3816), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -713692,7 +709069,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [238144] = 17, + [233959] = 17, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -713715,15 +709092,15 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, ACTIONS(25), 1, sym__identifier_token, - STATE(2175), 1, + ACTIONS(9049), 1, + anon_sym_operator, + ACTIONS(9051), 1, + anon_sym_this, + STATE(2168), 1, sym__reserved_identifier, - STATE(2181), 1, - sym_generic_name, - STATE(4107), 1, - sym__simple_name, - STATE(4369), 1, + STATE(6320), 1, sym_identifier, - STATE(5992), 9, + STATE(5929), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -713756,7 +709133,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [238225] = 17, + [234040] = 17, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -713777,17 +709154,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(25), 1, + ACTIONS(9029), 1, sym__identifier_token, - STATE(2175), 1, - sym__reserved_identifier, - STATE(2181), 1, + STATE(2170), 1, sym_generic_name, - STATE(2184), 1, + STATE(2179), 1, sym_identifier, - STATE(2382), 1, + STATE(2234), 1, + sym__reserved_identifier, + STATE(2254), 1, sym__simple_name, - STATE(5993), 9, + STATE(5930), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -713797,7 +709174,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(29), 22, + ACTIONS(9031), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -713820,7 +709197,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [238306] = 17, + [234121] = 17, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -713843,15 +709220,15 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, ACTIONS(25), 1, sym__identifier_token, - STATE(2175), 1, + ACTIONS(9053), 1, + anon_sym_RBRACE, + STATE(2168), 1, sym__reserved_identifier, - STATE(2181), 1, - sym_generic_name, - STATE(2184), 1, + STATE(6788), 1, + sym_with_initializer, + STATE(7707), 1, sym_identifier, - STATE(2410), 1, - sym__simple_name, - STATE(5994), 9, + STATE(5931), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -713884,7 +709261,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [238387] = 17, + [234202] = 17, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -713907,15 +709284,15 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, ACTIONS(25), 1, sym__identifier_token, - ACTIONS(6678), 1, - anon_sym_LBRACK, - ACTIONS(6680), 1, - anon_sym_STAR, - STATE(2175), 1, + STATE(2168), 1, sym__reserved_identifier, - STATE(6983), 1, + STATE(2170), 1, + sym_generic_name, + STATE(2179), 1, sym_identifier, - STATE(5995), 9, + STATE(2370), 1, + sym__simple_name, + STATE(5932), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -713948,7 +709325,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [238468] = 17, + [234283] = 17, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -713969,17 +709346,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(3861), 1, + ACTIONS(4080), 1, sym__identifier_token, - STATE(2900), 1, + STATE(2347), 1, sym_identifier, - STATE(2904), 1, + STATE(2354), 1, sym__reserved_identifier, - STATE(2929), 1, + STATE(2384), 1, sym_generic_name, - STATE(2947), 1, + STATE(3879), 1, sym__simple_name, - STATE(5996), 9, + STATE(5933), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -713989,7 +709366,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(3863), 22, + ACTIONS(4082), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -714012,7 +709389,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [238549] = 17, + [234364] = 17, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -714033,17 +709410,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(25), 1, + ACTIONS(4046), 1, sym__identifier_token, - STATE(2175), 1, + STATE(4315), 1, + sym_identifier, + STATE(4328), 1, sym__reserved_identifier, - STATE(2181), 1, + STATE(4410), 1, sym_generic_name, - STATE(2184), 1, - sym_identifier, - STATE(2306), 1, + STATE(4443), 1, sym__simple_name, - STATE(5997), 9, + STATE(5934), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -714053,7 +709430,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(29), 22, + ACTIONS(4048), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -714076,7 +709453,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [238630] = 17, + [234445] = 17, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -714097,17 +709474,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9053), 1, + ACTIONS(3855), 1, sym__identifier_token, - STATE(2181), 1, - sym_generic_name, - STATE(2184), 1, + STATE(3140), 1, sym_identifier, - STATE(2241), 1, + STATE(3199), 1, sym__reserved_identifier, - STATE(2268), 1, + STATE(3241), 1, + sym_generic_name, + STATE(3494), 1, sym__simple_name, - STATE(5998), 9, + STATE(5935), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -714117,7 +709494,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(9055), 22, + ACTIONS(3857), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -714140,7 +709517,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [238711] = 17, + [234526] = 17, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -714161,17 +709538,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9083), 1, + ACTIONS(9029), 1, sym__identifier_token, - STATE(3991), 1, - sym_identifier, - STATE(4109), 1, + STATE(2170), 1, sym_generic_name, - STATE(4150), 1, - sym__simple_name, - STATE(5567), 1, + STATE(2179), 1, + sym_identifier, + STATE(2234), 1, sym__reserved_identifier, - STATE(5999), 9, + STATE(2312), 1, + sym__simple_name, + STATE(5936), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -714181,7 +709558,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(9085), 22, + ACTIONS(9031), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -714204,7 +709581,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [238792] = 17, + [234607] = 17, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -714227,15 +709604,15 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, ACTIONS(25), 1, sym__identifier_token, - STATE(2175), 1, + STATE(2168), 1, sym__reserved_identifier, - STATE(2181), 1, + STATE(2170), 1, sym_generic_name, - STATE(2184), 1, + STATE(2179), 1, sym_identifier, - STATE(2292), 1, + STATE(2278), 1, sym__simple_name, - STATE(6000), 9, + STATE(5937), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -714268,199 +709645,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [238873] = 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(9089), 1, - sym__identifier_token, - STATE(2366), 1, - sym_identifier, - STATE(2389), 1, - sym_generic_name, - STATE(2412), 1, - sym__simple_name, - STATE(2643), 1, - sym__reserved_identifier, - STATE(6001), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - ACTIONS(9091), 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, - [238954] = 17, - ACTIONS(7904), 1, - sym__identifier_token, - ACTIONS(9093), 1, - sym_integer_literal, - ACTIONS(9095), 1, - aux_sym_preproc_if_token2, - ACTIONS(9097), 1, - aux_sym_preproc_region_token1, - ACTIONS(9099), 1, - aux_sym_preproc_endregion_token1, - ACTIONS(9101), 1, - aux_sym_preproc_line_token1, - ACTIONS(9103), 1, - aux_sym_preproc_pragma_token1, - ACTIONS(9105), 1, - aux_sym_preproc_nullable_token1, - ACTIONS(9107), 1, - aux_sym_preproc_error_token1, - ACTIONS(9109), 1, - aux_sym_preproc_warning_token1, - ACTIONS(9111), 1, - aux_sym_preproc_define_token1, - ACTIONS(9113), 1, - aux_sym_preproc_undef_token1, - ACTIONS(9115), 1, - sym_comment, - STATE(6452), 1, - sym__reserved_identifier, - STATE(6935), 1, - sym_identifier, - STATE(6002), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - ACTIONS(7906), 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, - [239035] = 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(4050), 1, - sym__identifier_token, - STATE(4314), 1, - sym_identifier, - STATE(4323), 1, - sym__reserved_identifier, - STATE(4403), 1, - sym_generic_name, - STATE(4550), 1, - sym__simple_name, - STATE(6003), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - ACTIONS(4052), 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, - [239116] = 17, + [234688] = 17, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -714483,15 +709668,15 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, ACTIONS(25), 1, sym__identifier_token, - STATE(2175), 1, + STATE(2168), 1, sym__reserved_identifier, - STATE(2181), 1, + STATE(2170), 1, sym_generic_name, - STATE(2184), 1, + STATE(2179), 1, sym_identifier, - STATE(2331), 1, + STATE(2363), 1, sym__simple_name, - STATE(6004), 9, + STATE(5938), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -714524,7 +709709,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [239197] = 17, + [234769] = 17, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -714545,17 +709730,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9053), 1, + ACTIONS(6969), 1, sym__identifier_token, - STATE(2181), 1, + STATE(2170), 1, sym_generic_name, - STATE(2241), 1, + STATE(2565), 1, sym__reserved_identifier, - STATE(4150), 1, + STATE(4076), 1, sym__simple_name, - STATE(4369), 1, + STATE(6299), 1, sym_identifier, - STATE(6005), 9, + STATE(5939), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -714565,7 +709750,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(9055), 22, + ACTIONS(6971), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -714588,7 +709773,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [239278] = 17, + [234850] = 17, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -714609,17 +709794,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(25), 1, + ACTIONS(6969), 1, sym__identifier_token, - STATE(2175), 1, - sym__reserved_identifier, - STATE(2181), 1, + STATE(2170), 1, sym_generic_name, - STATE(4150), 1, + STATE(2565), 1, + sym__reserved_identifier, + STATE(4147), 1, sym__simple_name, - STATE(4369), 1, + STATE(6299), 1, sym_identifier, - STATE(6006), 9, + STATE(5940), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -714629,7 +709814,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(29), 22, + ACTIONS(6971), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -714652,7 +709837,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [239359] = 17, + [234931] = 17, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -714673,81 +709858,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(25), 1, + ACTIONS(4046), 1, sym__identifier_token, - STATE(2175), 1, - sym__reserved_identifier, - STATE(2181), 1, - sym_generic_name, - STATE(2184), 1, + STATE(4315), 1, sym_identifier, - STATE(2332), 1, - sym__simple_name, - STATE(6007), 9, - sym_preproc_region, - sym_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, - [239440] = 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(4058), 1, - sym__identifier_token, - STATE(2361), 1, + STATE(4328), 1, sym__reserved_identifier, - STATE(2366), 1, - sym_identifier, - STATE(2389), 1, + STATE(4410), 1, sym_generic_name, - STATE(2413), 1, + STATE(4460), 1, sym__simple_name, - STATE(6008), 9, + STATE(5941), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -714757,7 +709878,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(4060), 22, + ACTIONS(4048), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -714780,7 +709901,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [239521] = 17, + [235012] = 17, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -714803,15 +709924,15 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, ACTIONS(25), 1, sym__identifier_token, - STATE(2175), 1, + STATE(2168), 1, sym__reserved_identifier, - STATE(2181), 1, + STATE(2170), 1, sym_generic_name, - STATE(2184), 1, + STATE(2179), 1, sym_identifier, - STATE(2199), 1, + STATE(2191), 1, sym__simple_name, - STATE(6009), 9, + STATE(5942), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -714844,7 +709965,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [239602] = 17, + [235093] = 17, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -714867,15 +709988,15 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, ACTIONS(25), 1, sym__identifier_token, - ACTIONS(9117), 1, - anon_sym_operator, - ACTIONS(9119), 1, - anon_sym_this, - STATE(2175), 1, + ACTIONS(6601), 1, + anon_sym_LBRACK, + ACTIONS(6705), 1, + anon_sym_QMARK, + STATE(2168), 1, sym__reserved_identifier, - STATE(6337), 1, + STATE(6733), 1, sym_identifier, - STATE(6010), 9, + STATE(5943), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -714908,7 +710029,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [239683] = 17, + [235174] = 17, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -714929,17 +710050,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9073), 1, + ACTIONS(3798), 1, sym__identifier_token, - STATE(2248), 1, + STATE(3140), 1, sym_identifier, - STATE(2254), 1, + STATE(3205), 1, sym__reserved_identifier, - STATE(2259), 1, - sym__simple_name, - STATE(2269), 1, + STATE(3241), 1, sym_generic_name, - STATE(6011), 9, + STATE(3494), 1, + sym__simple_name, + STATE(5944), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -714949,7 +710070,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(9075), 22, + ACTIONS(3800), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -714972,7 +710093,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [239764] = 17, + [235255] = 17, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -714995,15 +710116,15 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, ACTIONS(25), 1, sym__identifier_token, - STATE(2175), 1, + ACTIONS(6601), 1, + anon_sym_LBRACK, + ACTIONS(6603), 1, + anon_sym_STAR, + STATE(2168), 1, sym__reserved_identifier, - STATE(2181), 1, - sym_generic_name, - STATE(2184), 1, + STATE(6733), 1, sym_identifier, - STATE(2406), 1, - sym__simple_name, - STATE(6012), 9, + STATE(5945), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -715036,7 +710157,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [239845] = 17, + [235336] = 17, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -715059,15 +710180,15 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, ACTIONS(25), 1, sym__identifier_token, - STATE(2175), 1, + STATE(2168), 1, sym__reserved_identifier, - STATE(2181), 1, + STATE(2170), 1, sym_generic_name, - STATE(2184), 1, + STATE(2179), 1, sym_identifier, - STATE(2280), 1, + STATE(2314), 1, sym__simple_name, - STATE(6013), 9, + STATE(5946), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -715100,7 +710221,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [239926] = 17, + [235417] = 17, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -715123,15 +710244,15 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, ACTIONS(25), 1, sym__identifier_token, - ACTIONS(9121), 1, - anon_sym_RBRACE, - STATE(2175), 1, + STATE(2168), 1, sym__reserved_identifier, - STATE(6906), 1, - sym_with_initializer, - STATE(7482), 1, + STATE(2170), 1, + sym_generic_name, + STATE(2179), 1, sym_identifier, - STATE(6014), 9, + STATE(2364), 1, + sym__simple_name, + STATE(5947), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -715164,7 +710285,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [240007] = 17, + [235498] = 17, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -715185,17 +710306,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(25), 1, + ACTIONS(2965), 1, sym__identifier_token, - ACTIONS(9123), 1, - anon_sym_RBRACE, - STATE(2175), 1, + STATE(3654), 1, sym__reserved_identifier, - STATE(6755), 1, - sym_with_initializer, - STATE(7482), 1, + STATE(3897), 1, sym_identifier, - STATE(6015), 9, + STATE(4073), 1, + sym_generic_name, + STATE(4147), 1, + sym__simple_name, + STATE(5948), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -715205,7 +710326,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(29), 22, + ACTIONS(2969), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -715228,7 +710349,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [240088] = 17, + [235579] = 17, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -715251,15 +710372,15 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, ACTIONS(25), 1, sym__identifier_token, - STATE(2175), 1, + STATE(2168), 1, sym__reserved_identifier, - STATE(2181), 1, + STATE(2170), 1, sym_generic_name, - STATE(2184), 1, + STATE(2179), 1, sym_identifier, - STATE(2196), 1, + STATE(2378), 1, sym__simple_name, - STATE(6016), 9, + STATE(5949), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -715292,7 +710413,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [240169] = 16, + [235660] = 17, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -715313,16 +710434,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9125), 1, + ACTIONS(9029), 1, sym__identifier_token, - STATE(2175), 1, - sym__reserved_identifier, - STATE(7467), 1, + STATE(2170), 1, + sym_generic_name, + STATE(2179), 1, sym_identifier, - ACTIONS(9131), 2, - anon_sym_unsafe, - anon_sym_static, - STATE(6017), 9, + STATE(2234), 1, + sym__reserved_identifier, + STATE(2284), 1, + sym__simple_name, + STATE(5950), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -715332,7 +710454,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(9128), 22, + ACTIONS(9031), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -715355,7 +710477,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [240248] = 17, + [235741] = 17, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -715378,15 +710500,15 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, ACTIONS(25), 1, sym__identifier_token, - STATE(2175), 1, + STATE(2168), 1, sym__reserved_identifier, - STATE(2181), 1, + STATE(2170), 1, sym_generic_name, - STATE(2184), 1, + STATE(2179), 1, sym_identifier, - STATE(2187), 1, + STATE(2391), 1, sym__simple_name, - STATE(6018), 9, + STATE(5951), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -715419,71 +710541,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [240329] = 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(3887), 1, - sym__identifier_token, - STATE(2945), 1, - sym__reserved_identifier, - STATE(2958), 1, - sym_identifier, - STATE(2985), 1, - sym_generic_name, - STATE(3098), 1, - sym__simple_name, - STATE(6019), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - ACTIONS(3889), 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, - [240410] = 17, + [235822] = 17, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -715506,15 +710564,15 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, ACTIONS(25), 1, sym__identifier_token, - STATE(2175), 1, + STATE(2168), 1, sym__reserved_identifier, - STATE(2181), 1, + STATE(2170), 1, sym_generic_name, - STATE(2184), 1, + STATE(2179), 1, sym_identifier, - STATE(2194), 1, + STATE(2341), 1, sym__simple_name, - STATE(6020), 9, + STATE(5952), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -715547,7 +710605,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [240491] = 17, + [235903] = 17, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -715568,17 +710626,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(3875), 1, + ACTIONS(3814), 1, sym__identifier_token, - STATE(3176), 1, + STATE(2899), 1, sym_identifier, - STATE(3177), 1, + STATE(2900), 1, sym__reserved_identifier, - STATE(3246), 1, + STATE(2950), 1, sym_generic_name, - STATE(3285), 1, + STATE(3008), 1, sym__simple_name, - STATE(6021), 9, + STATE(5953), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -715588,7 +710646,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(3877), 22, + ACTIONS(3816), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -715611,7 +710669,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [240572] = 17, + [235984] = 17, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -715632,17 +710690,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9089), 1, + ACTIONS(25), 1, sym__identifier_token, - STATE(2366), 1, - sym_identifier, - STATE(2389), 1, + STATE(2168), 1, + sym__reserved_identifier, + STATE(2170), 1, sym_generic_name, - STATE(2413), 1, + STATE(2179), 1, + sym_identifier, + STATE(2284), 1, sym__simple_name, - STATE(2643), 1, - sym__reserved_identifier, - STATE(6022), 9, + STATE(5954), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -715652,7 +710710,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(9091), 22, + ACTIONS(29), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -715675,7 +710733,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [240653] = 17, + [236065] = 17, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -715696,17 +710754,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(3147), 1, - sym_identifier, - STATE(3189), 1, + STATE(2168), 1, sym__reserved_identifier, - STATE(3204), 1, + STATE(2170), 1, sym_generic_name, - STATE(3217), 1, + STATE(4147), 1, sym__simple_name, - STATE(6023), 9, + STATE(4457), 1, + sym_identifier, + STATE(5955), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -715716,7 +710774,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, @@ -715739,7 +710797,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [240734] = 17, + [236146] = 17, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -715760,17 +710818,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(25), 1, + ACTIONS(9055), 1, sym__identifier_token, - ACTIONS(9137), 1, - anon_sym_RBRACE, - STATE(2175), 1, - sym__reserved_identifier, - STATE(7028), 1, - sym_with_initializer, - STATE(7482), 1, + STATE(3124), 1, sym_identifier, - STATE(6024), 9, + STATE(3145), 1, + sym_generic_name, + STATE(3150), 1, + sym__simple_name, + STATE(3174), 1, + sym__reserved_identifier, + STATE(5956), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -715780,7 +710838,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(29), 22, + ACTIONS(9057), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -715803,7 +710861,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [240815] = 17, + [236227] = 17, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -715824,17 +710882,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9053), 1, + ACTIONS(25), 1, sym__identifier_token, - STATE(2181), 1, + STATE(2168), 1, + sym__reserved_identifier, + STATE(2170), 1, sym_generic_name, - STATE(2184), 1, + STATE(2179), 1, sym_identifier, - STATE(2228), 1, + STATE(2368), 1, sym__simple_name, - STATE(2241), 1, - sym__reserved_identifier, - STATE(6025), 9, + STATE(5957), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -715844,7 +710902,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(9055), 22, + ACTIONS(29), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -715867,7 +710925,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [240896] = 17, + [236308] = 17, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -715890,15 +710948,15 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, ACTIONS(25), 1, sym__identifier_token, - ACTIONS(9139), 1, + ACTIONS(9059), 1, anon_sym_RBRACE, - STATE(2175), 1, + STATE(2168), 1, sym__reserved_identifier, - STATE(6859), 1, + STATE(6919), 1, sym_with_initializer, - STATE(7482), 1, + STATE(7707), 1, sym_identifier, - STATE(6026), 9, + STATE(5958), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -715931,7 +710989,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [240977] = 17, + [236389] = 17, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -715952,17 +711010,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(3875), 1, + ACTIONS(3814), 1, sym__identifier_token, - STATE(2900), 1, + STATE(2899), 1, sym_identifier, - STATE(2929), 1, - sym_generic_name, - STATE(2947), 1, - sym__simple_name, - STATE(3177), 1, + STATE(2900), 1, sym__reserved_identifier, - STATE(6027), 9, + STATE(2909), 1, + sym__simple_name, + STATE(2950), 1, + sym_generic_name, + STATE(5959), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -715972,7 +711030,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(3877), 22, + ACTIONS(3816), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -715995,7 +711053,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [241058] = 17, + [236470] = 16, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -716016,17 +711074,16 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9141), 1, + ACTIONS(25), 1, sym__identifier_token, - STATE(2377), 1, - sym_identifier, - STATE(2429), 1, - sym__simple_name, - STATE(2437), 1, - sym_generic_name, - STATE(2453), 1, + STATE(2168), 1, sym__reserved_identifier, - STATE(6028), 9, + STATE(7091), 1, + sym_identifier, + ACTIONS(8890), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + STATE(5960), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -716036,7 +711093,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(9143), 22, + ACTIONS(29), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -716059,7 +711116,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [241139] = 17, + [236549] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -716080,17 +711137,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9083), 1, - sym__identifier_token, - STATE(4107), 1, - sym__simple_name, - STATE(4109), 1, - sym_generic_name, - STATE(5567), 1, - sym__reserved_identifier, - STATE(6278), 1, - sym_identifier, - STATE(6029), 9, + ACTIONS(4911), 2, + anon_sym_LBRACK, + aux_sym_preproc_if_token1, + STATE(5961), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -716100,10 +711150,12 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(9085), 22, + ACTIONS(4909), 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, @@ -716123,7 +711175,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [241220] = 17, + sym__identifier_token, + [236622] = 17, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -716144,17 +711197,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(3875), 1, + ACTIONS(9029), 1, sym__identifier_token, - STATE(2958), 1, + STATE(2170), 1, + sym_generic_name, + STATE(2179), 1, sym_identifier, - STATE(2976), 1, + STATE(2194), 1, sym__simple_name, - STATE(2985), 1, - sym_generic_name, - STATE(3177), 1, + STATE(2234), 1, sym__reserved_identifier, - STATE(6030), 9, + STATE(5962), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -716164,7 +711217,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(3877), 22, + ACTIONS(9031), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -716187,7 +711240,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [241301] = 17, + [236703] = 17, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -716208,17 +711261,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(25), 1, + ACTIONS(9029), 1, sym__identifier_token, - ACTIONS(6678), 1, - anon_sym_LBRACK, - ACTIONS(6716), 1, - anon_sym_QMARK, - STATE(2175), 1, - sym__reserved_identifier, - STATE(6925), 1, + STATE(2170), 1, + sym_generic_name, + STATE(2179), 1, sym_identifier, - STATE(6031), 9, + STATE(2234), 1, + sym__reserved_identifier, + STATE(2274), 1, + sym__simple_name, + STATE(5963), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -716228,7 +711281,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(29), 22, + ACTIONS(9031), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -716251,7 +711304,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [241382] = 17, + [236784] = 17, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -716272,17 +711325,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(3875), 1, + ACTIONS(9061), 1, sym__identifier_token, - STATE(2900), 1, + STATE(3897), 1, sym_identifier, - STATE(2929), 1, + STATE(4073), 1, sym_generic_name, - STATE(2948), 1, + STATE(4147), 1, sym__simple_name, - STATE(3177), 1, + STATE(5309), 1, sym__reserved_identifier, - STATE(6032), 9, + STATE(5964), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -716292,7 +711345,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(3877), 22, + ACTIONS(9063), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -716315,7 +711368,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [241463] = 17, + [236865] = 17, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -716336,17 +711389,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(25), 1, + ACTIONS(9065), 1, sym__identifier_token, - STATE(2175), 1, - sym__reserved_identifier, - STATE(2181), 1, - sym_generic_name, - STATE(2184), 1, + STATE(2366), 1, sym_identifier, - STATE(2385), 1, + STATE(2422), 1, sym__simple_name, - STATE(6033), 9, + STATE(2431), 1, + sym_generic_name, + STATE(2439), 1, + sym__reserved_identifier, + STATE(5965), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -716356,7 +711409,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(29), 22, + ACTIONS(9067), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -716379,7 +711432,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [241544] = 17, + [236946] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -716400,17 +711453,71 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9073), 1, + ACTIONS(3759), 2, + anon_sym_LBRACK, + aux_sym_preproc_if_token1, + ACTIONS(9069), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + STATE(5966), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + ACTIONS(3757), 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, - STATE(2248), 1, - sym_identifier, - STATE(2254), 1, - sym__reserved_identifier, - STATE(2269), 1, - sym_generic_name, - STATE(2310), 1, - sym__simple_name, - STATE(6034), 9, + [237021] = 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(4990), 2, + anon_sym_LBRACK, + aux_sym_preproc_if_token1, + STATE(5967), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -716420,10 +711527,12 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(9075), 22, + ACTIONS(4988), 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, @@ -716443,7 +711552,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [241625] = 16, + sym__identifier_token, + [237094] = 17, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -716464,16 +711574,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9125), 1, + ACTIONS(25), 1, sym__identifier_token, - STATE(2175), 1, + STATE(2168), 1, sym__reserved_identifier, - STATE(7340), 1, + STATE(2170), 1, + sym_generic_name, + STATE(2179), 1, sym_identifier, - ACTIONS(9131), 2, - anon_sym_unsafe, - anon_sym_static, - STATE(6035), 9, + STATE(2889), 1, + sym__simple_name, + STATE(5968), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -716483,7 +711594,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(9128), 22, + ACTIONS(29), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -716506,7 +711617,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [241704] = 17, + [237175] = 17, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -716527,17 +711638,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(3788), 1, + ACTIONS(3855), 1, sym__identifier_token, - STATE(3176), 1, + STATE(3137), 1, sym_identifier, - STATE(3225), 1, - sym__reserved_identifier, - STATE(3246), 1, - sym_generic_name, - STATE(3285), 1, + STATE(3163), 1, sym__simple_name, - STATE(6036), 9, + STATE(3184), 1, + sym_generic_name, + STATE(3199), 1, + sym__reserved_identifier, + STATE(5969), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -716547,7 +711658,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(3790), 22, + ACTIONS(3857), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -716570,7 +711681,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [241785] = 16, + [237256] = 17, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -716591,16 +711702,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9125), 1, + ACTIONS(25), 1, sym__identifier_token, - STATE(2175), 1, + ACTIONS(9071), 1, + anon_sym_RBRACE, + STATE(2168), 1, sym__reserved_identifier, - STATE(7352), 1, + STATE(6751), 1, + sym_with_initializer, + STATE(7707), 1, sym_identifier, - ACTIONS(9131), 2, - anon_sym_unsafe, - anon_sym_static, - STATE(6037), 9, + STATE(5970), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -716610,7 +711722,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(9128), 22, + ACTIONS(29), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -716633,7 +711745,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [241864] = 17, + [237337] = 17, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -716654,17 +711766,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(3887), 1, + ACTIONS(25), 1, sym__identifier_token, - STATE(2945), 1, + STATE(2168), 1, sym__reserved_identifier, - STATE(2958), 1, - sym_identifier, - STATE(2985), 1, + STATE(2170), 1, sym_generic_name, - STATE(3042), 1, + STATE(2179), 1, + sym_identifier, + STATE(2220), 1, sym__simple_name, - STATE(6038), 9, + STATE(5971), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -716674,7 +711786,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(3889), 22, + ACTIONS(29), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -716697,7 +711809,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [241945] = 17, + [237418] = 17, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -716718,17 +711830,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9053), 1, + ACTIONS(25), 1, sym__identifier_token, - STATE(2181), 1, + STATE(2168), 1, + sym__reserved_identifier, + STATE(2170), 1, sym_generic_name, - STATE(2184), 1, + STATE(2179), 1, sym_identifier, - STATE(2241), 1, - sym__reserved_identifier, - STATE(2308), 1, + STATE(2299), 1, sym__simple_name, - STATE(6039), 9, + STATE(5972), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -716738,7 +711850,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(9055), 22, + ACTIONS(29), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -716761,7 +711873,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [242026] = 17, + [237499] = 17, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -716784,15 +711896,15 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, ACTIONS(25), 1, sym__identifier_token, - ACTIONS(9145), 1, - anon_sym_RBRACE, - STATE(2175), 1, + STATE(2168), 1, sym__reserved_identifier, - STATE(6875), 1, - sym_with_initializer, - STATE(7482), 1, + STATE(2170), 1, + sym_generic_name, + STATE(2179), 1, sym_identifier, - STATE(6040), 9, + STATE(2186), 1, + sym__simple_name, + STATE(5973), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -716825,7 +711937,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [242107] = 13, + [237580] = 17, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -716846,10 +711958,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4975), 2, - anon_sym_LBRACK, - aux_sym_preproc_if_token1, - STATE(6041), 9, + ACTIONS(9037), 1, + sym__identifier_token, + STATE(2243), 1, + sym_identifier, + STATE(2252), 1, + sym__reserved_identifier, + STATE(2262), 1, + sym_generic_name, + STATE(2303), 1, + sym__simple_name, + STATE(5974), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -716859,12 +711978,10 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(4973), 25, + ACTIONS(9039), 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, @@ -716884,8 +712001,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - sym__identifier_token, - [242180] = 17, + [237661] = 17, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -716906,17 +712022,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4050), 1, + ACTIONS(3855), 1, sym__identifier_token, - STATE(4314), 1, + STATE(3137), 1, sym_identifier, - STATE(4323), 1, - sym__reserved_identifier, - STATE(4365), 1, + STATE(3164), 1, sym__simple_name, - STATE(4403), 1, + STATE(3184), 1, sym_generic_name, - STATE(6042), 9, + STATE(3199), 1, + sym__reserved_identifier, + STATE(5975), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -716926,7 +712042,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(4052), 22, + ACTIONS(3857), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -716949,7 +712065,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [242261] = 17, + [237742] = 17, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -716970,17 +712086,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(3788), 1, + ACTIONS(6969), 1, sym__identifier_token, - STATE(3176), 1, - sym_identifier, - STATE(3225), 1, + STATE(2565), 1, sym__reserved_identifier, - STATE(3246), 1, + STATE(2642), 1, + sym_identifier, + STATE(2700), 1, sym_generic_name, - STATE(3286), 1, + STATE(2824), 1, sym__simple_name, - STATE(6043), 9, + STATE(5976), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -716990,7 +712106,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(3790), 22, + ACTIONS(6971), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -717013,7 +712129,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [242342] = 17, + [237823] = 17, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -717034,17 +712150,81 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(3875), 1, + ACTIONS(9037), 1, sym__identifier_token, - STATE(2958), 1, + STATE(2243), 1, sym_identifier, - STATE(2985), 1, - sym_generic_name, - STATE(3042), 1, + STATE(2252), 1, + sym__reserved_identifier, + STATE(2255), 1, sym__simple_name, - STATE(3177), 1, + STATE(2262), 1, + sym_generic_name, + STATE(5977), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + ACTIONS(9039), 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, + [237904] = 17, + ACTIONS(7846), 1, + sym__identifier_token, + ACTIONS(9073), 1, + sym_integer_literal, + ACTIONS(9075), 1, + aux_sym_preproc_if_token2, + ACTIONS(9077), 1, + aux_sym_preproc_region_token1, + ACTIONS(9079), 1, + aux_sym_preproc_endregion_token1, + ACTIONS(9081), 1, + aux_sym_preproc_line_token1, + ACTIONS(9083), 1, + aux_sym_preproc_pragma_token1, + ACTIONS(9085), 1, + aux_sym_preproc_nullable_token1, + ACTIONS(9087), 1, + aux_sym_preproc_error_token1, + ACTIONS(9089), 1, + aux_sym_preproc_warning_token1, + ACTIONS(9091), 1, + aux_sym_preproc_define_token1, + ACTIONS(9093), 1, + aux_sym_preproc_undef_token1, + ACTIONS(9095), 1, + sym_comment, + STATE(6436), 1, sym__reserved_identifier, - STATE(6044), 9, + STATE(6827), 1, + sym_identifier, + STATE(5978), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -717054,7 +712234,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(3877), 22, + ACTIONS(7848), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -717077,7 +712257,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [242423] = 17, + [237985] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -717098,17 +712278,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(3875), 1, - sym__identifier_token, - STATE(3176), 1, - sym_identifier, - STATE(3177), 1, - sym__reserved_identifier, - STATE(3246), 1, - sym_generic_name, - STATE(3472), 1, - sym__simple_name, - STATE(6045), 9, + ACTIONS(5136), 2, + anon_sym_LBRACK, + aux_sym_preproc_if_token1, + STATE(5979), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -717118,10 +712291,12 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(3877), 22, + ACTIONS(5134), 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, @@ -717141,7 +712316,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [242504] = 17, + sym__identifier_token, + [238058] = 16, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -717162,17 +712338,16 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(3887), 1, + ACTIONS(9097), 1, sym__identifier_token, - STATE(2945), 1, + STATE(2168), 1, sym__reserved_identifier, - STATE(2958), 1, + STATE(7393), 1, sym_identifier, - STATE(2976), 1, - sym__simple_name, - STATE(2985), 1, - sym_generic_name, - STATE(6046), 9, + ACTIONS(9103), 2, + anon_sym_unsafe, + anon_sym_static, + STATE(5980), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -717182,7 +712357,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(3889), 22, + ACTIONS(9100), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -717205,7 +712380,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [242585] = 17, + [238137] = 17, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -717228,15 +712403,15 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, ACTIONS(25), 1, sym__identifier_token, - STATE(2175), 1, + STATE(2168), 1, sym__reserved_identifier, - STATE(2181), 1, + STATE(2170), 1, sym_generic_name, - STATE(2184), 1, + STATE(2179), 1, sym_identifier, - STATE(2383), 1, + STATE(2325), 1, sym__simple_name, - STATE(6047), 9, + STATE(5981), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -717269,7 +712444,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [242666] = 14, + [238218] = 17, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -717290,13 +712465,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(3784), 2, - anon_sym_LBRACK, - aux_sym_preproc_if_token1, - ACTIONS(9147), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - STATE(6048), 9, + ACTIONS(9029), 1, + sym__identifier_token, + STATE(2170), 1, + sym_generic_name, + STATE(2179), 1, + sym_identifier, + STATE(2234), 1, + sym__reserved_identifier, + STATE(2302), 1, + sym__simple_name, + STATE(5982), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -717306,7 +712485,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(3782), 23, + ACTIONS(9031), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -717329,8 +712508,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - sym__identifier_token, - [242741] = 17, + [238299] = 17, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -717351,17 +712529,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9073), 1, + ACTIONS(3871), 1, sym__identifier_token, - STATE(2248), 1, - sym_identifier, - STATE(2254), 1, + STATE(2916), 1, sym__reserved_identifier, - STATE(2261), 1, - sym__simple_name, - STATE(2269), 1, + STATE(2932), 1, + sym_identifier, + STATE(3030), 1, sym_generic_name, - STATE(6049), 9, + STATE(3052), 1, + sym__simple_name, + STATE(5983), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -717371,7 +712549,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(9075), 22, + ACTIONS(3873), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -717394,7 +712572,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [242822] = 13, + [238380] = 17, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -717415,10 +712593,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(3784), 2, - anon_sym_LBRACK, - aux_sym_preproc_if_token1, - STATE(6050), 9, + ACTIONS(9029), 1, + sym__identifier_token, + STATE(2170), 1, + sym_generic_name, + STATE(2179), 1, + sym_identifier, + STATE(2231), 1, + sym__simple_name, + STATE(2234), 1, + sym__reserved_identifier, + STATE(5984), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -717428,12 +712613,10 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(3782), 25, + ACTIONS(9031), 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, @@ -717453,8 +712636,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - sym__identifier_token, - [242895] = 13, + [238461] = 17, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -717475,10 +712657,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(5007), 2, - anon_sym_LBRACK, - aux_sym_preproc_if_token1, - STATE(6051), 9, + ACTIONS(9029), 1, + sym__identifier_token, + STATE(2170), 1, + sym_generic_name, + STATE(2179), 1, + sym_identifier, + STATE(2188), 1, + sym__simple_name, + STATE(2234), 1, + sym__reserved_identifier, + STATE(5985), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -717488,12 +712677,10 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5005), 25, + ACTIONS(9031), 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, @@ -717513,8 +712700,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - sym__identifier_token, - [242968] = 16, + [238542] = 17, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -717535,16 +712721,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9125), 1, + ACTIONS(25), 1, sym__identifier_token, - STATE(2175), 1, + STATE(2168), 1, sym__reserved_identifier, - STATE(7577), 1, + STATE(2170), 1, + sym_generic_name, + STATE(2179), 1, sym_identifier, - ACTIONS(9131), 2, - anon_sym_unsafe, - anon_sym_static, - STATE(6052), 9, + STATE(2320), 1, + sym__simple_name, + STATE(5986), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -717554,7 +712741,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(9128), 22, + ACTIONS(29), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -717577,7 +712764,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [243047] = 17, + [238623] = 17, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -717598,17 +712785,80 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9073), 1, + ACTIONS(25), 1, sym__identifier_token, - STATE(2248), 1, + ACTIONS(9105), 1, + anon_sym_operator, + ACTIONS(9107), 1, + anon_sym_this, + STATE(2168), 1, + sym__reserved_identifier, + STATE(6325), 1, sym_identifier, - STATE(2254), 1, + STATE(5987), 9, + sym_preproc_region, + sym_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, + [238704] = 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(9097), 1, + sym__identifier_token, + STATE(2168), 1, sym__reserved_identifier, - STATE(2269), 1, - sym_generic_name, - STATE(2301), 1, - sym__simple_name, - STATE(6053), 9, + STATE(7291), 1, + sym_identifier, + ACTIONS(9103), 2, + anon_sym_unsafe, + anon_sym_static, + STATE(5988), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -717618,7 +712868,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(9075), 22, + ACTIONS(9100), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -717641,7 +712891,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [243128] = 17, + [238783] = 17, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -717664,15 +712914,15 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, ACTIONS(25), 1, sym__identifier_token, - ACTIONS(6678), 1, - anon_sym_LBRACK, - ACTIONS(6680), 1, - anon_sym_STAR, - STATE(2175), 1, + ACTIONS(9109), 1, + anon_sym_RBRACE, + STATE(2168), 1, sym__reserved_identifier, - STATE(6925), 1, + STATE(6943), 1, + sym_with_initializer, + STATE(7707), 1, sym_identifier, - STATE(6054), 9, + STATE(5989), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -717705,7 +712955,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [243209] = 17, + [238864] = 16, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -717726,17 +712976,16 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(25), 1, + ACTIONS(6969), 1, sym__identifier_token, - STATE(2175), 1, + STATE(2565), 1, sym__reserved_identifier, - STATE(2181), 1, - sym_generic_name, - STATE(2184), 1, + STATE(6240), 1, sym_identifier, - STATE(2193), 1, - sym__simple_name, - STATE(6055), 9, + ACTIONS(9111), 2, + anon_sym_class, + anon_sym_struct, + STATE(5990), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -717746,7 +712995,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(29), 22, + ACTIONS(6971), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -717769,7 +713018,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [243290] = 17, + [238943] = 17, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -717790,17 +713039,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(3861), 1, + ACTIONS(3855), 1, sym__identifier_token, - STATE(2900), 1, + STATE(2899), 1, sym_identifier, - STATE(2904), 1, - sym__reserved_identifier, - STATE(2929), 1, - sym_generic_name, - STATE(2983), 1, + STATE(2910), 1, sym__simple_name, - STATE(6056), 9, + STATE(2950), 1, + sym_generic_name, + STATE(3199), 1, + sym__reserved_identifier, + STATE(5991), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -717810,7 +713059,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(3863), 22, + ACTIONS(3857), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -717833,7 +713082,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [243371] = 17, + [239024] = 17, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -717854,17 +713103,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(25), 1, + ACTIONS(2965), 1, sym__identifier_token, - STATE(2175), 1, + STATE(3654), 1, sym__reserved_identifier, - STATE(2181), 1, - sym_generic_name, - STATE(2184), 1, + STATE(3897), 1, sym_identifier, - STATE(2329), 1, + STATE(4073), 1, + sym_generic_name, + STATE(4076), 1, sym__simple_name, - STATE(6057), 9, + STATE(5992), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -717874,7 +713123,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(29), 22, + ACTIONS(2969), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -717897,7 +713146,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [243452] = 16, + [239105] = 17, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -717918,15 +713167,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(25), 1, + ACTIONS(9037), 1, sym__identifier_token, - STATE(2175), 1, - sym__reserved_identifier, - STATE(6891), 1, + STATE(2243), 1, sym_identifier, - STATE(7140), 1, - sym_using_variable_declarator, - STATE(6058), 9, + STATE(2252), 1, + sym__reserved_identifier, + STATE(2262), 1, + sym_generic_name, + STATE(2264), 1, + sym__simple_name, + STATE(5993), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -717936,7 +713187,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(29), 22, + ACTIONS(9039), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -717959,7 +713210,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [243530] = 16, + [239186] = 17, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -717980,15 +713231,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(25), 1, + ACTIONS(3855), 1, sym__identifier_token, - STATE(2175), 1, - sym__reserved_identifier, - STATE(7268), 1, - sym_with_initializer, - STATE(7482), 1, + STATE(2932), 1, sym_identifier, - STATE(6059), 9, + STATE(3030), 1, + sym_generic_name, + STATE(3051), 1, + sym__simple_name, + STATE(3199), 1, + sym__reserved_identifier, + STATE(5994), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -717998,7 +713251,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(29), 22, + ACTIONS(3857), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -718021,7 +713274,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [243608] = 16, + [239267] = 17, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -718042,15 +713295,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(25), 1, + ACTIONS(4080), 1, sym__identifier_token, - ACTIONS(8914), 1, - anon_sym_COMMA, - STATE(2175), 1, - sym__reserved_identifier, - STATE(6828), 1, + STATE(2347), 1, sym_identifier, - STATE(6060), 9, + STATE(2354), 1, + sym__reserved_identifier, + STATE(2384), 1, + sym_generic_name, + STATE(2390), 1, + sym__simple_name, + STATE(5995), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -718060,7 +713315,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(29), 22, + ACTIONS(4082), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -718083,7 +713338,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [243686] = 14, + [239348] = 17, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -718104,12 +713359,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4885), 1, - aux_sym_preproc_if_token3, - ACTIONS(4701), 2, - anon_sym_LBRACK, - aux_sym_preproc_if_token1, - STATE(6061), 9, + ACTIONS(25), 1, + sym__identifier_token, + STATE(2168), 1, + sym__reserved_identifier, + STATE(2170), 1, + sym_generic_name, + STATE(2179), 1, + sym_identifier, + STATE(2181), 1, + sym__simple_name, + STATE(5996), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -718119,7 +713379,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(4699), 23, + ACTIONS(29), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -718142,8 +713402,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - sym__identifier_token, - [243760] = 13, + [239429] = 17, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -718164,10 +713423,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9151), 2, - anon_sym_unsafe, - anon_sym_static, - STATE(6062), 10, + ACTIONS(25), 1, + sym__identifier_token, + STATE(2168), 1, + sym__reserved_identifier, + STATE(2170), 1, + sym_generic_name, + STATE(4076), 1, + sym__simple_name, + STATE(4457), 1, + sym_identifier, + STATE(5997), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -718177,8 +713443,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - aux_sym_using_directive_repeat1, - ACTIONS(9149), 23, + ACTIONS(29), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -718201,8 +713466,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - sym__identifier_token, - [243832] = 16, + [239510] = 17, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -718223,15 +713487,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(7904), 1, + ACTIONS(9029), 1, sym__identifier_token, - ACTIONS(9154), 1, - sym_integer_literal, - STATE(6452), 1, - sym__reserved_identifier, - STATE(7124), 1, + STATE(2170), 1, + sym_generic_name, + STATE(2179), 1, sym_identifier, - STATE(6063), 9, + STATE(2183), 1, + sym__simple_name, + STATE(2234), 1, + sym__reserved_identifier, + STATE(5998), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -718241,7 +713507,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(7906), 22, + ACTIONS(9031), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -718264,7 +713530,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [243910] = 16, + [239591] = 17, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -718285,15 +713551,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(25), 1, + ACTIONS(9037), 1, sym__identifier_token, - ACTIONS(9156), 1, - anon_sym_RPAREN, - STATE(2175), 1, - sym__reserved_identifier, - STATE(7463), 1, + STATE(2243), 1, sym_identifier, - STATE(6064), 9, + STATE(2252), 1, + sym__reserved_identifier, + STATE(2262), 1, + sym_generic_name, + STATE(2287), 1, + sym__simple_name, + STATE(5999), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -718303,7 +713571,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(29), 22, + ACTIONS(9039), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -718326,7 +713594,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [243988] = 15, + [239672] = 17, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -718347,13 +713615,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(6823), 1, + ACTIONS(25), 1, sym__identifier_token, - STATE(2571), 1, + STATE(2168), 1, sym__reserved_identifier, - STATE(6654), 1, + STATE(2170), 1, + sym_generic_name, + STATE(2179), 1, sym_identifier, - STATE(6065), 9, + STATE(2343), 1, + sym__simple_name, + STATE(6000), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -718363,7 +713635,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(6825), 22, + ACTIONS(29), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -718386,7 +713658,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [244063] = 15, + [239753] = 17, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -718407,13 +713679,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(6823), 1, + ACTIONS(9061), 1, sym__identifier_token, - STATE(2571), 1, + STATE(4073), 1, + sym_generic_name, + STATE(4076), 1, + sym__simple_name, + STATE(5309), 1, sym__reserved_identifier, - STATE(6635), 1, + STATE(6260), 1, sym_identifier, - STATE(6066), 9, + STATE(6001), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -718423,7 +713699,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(6825), 22, + ACTIONS(9063), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -718446,7 +713722,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [244138] = 15, + [239834] = 17, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -718469,11 +713745,15 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, ACTIONS(25), 1, sym__identifier_token, - STATE(2175), 1, + STATE(2168), 1, sym__reserved_identifier, - STATE(6723), 1, + STATE(2170), 1, + sym_generic_name, + STATE(2179), 1, sym_identifier, - STATE(6067), 9, + STATE(2298), 1, + sym__simple_name, + STATE(6002), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -718506,7 +713786,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [244213] = 15, + [239915] = 17, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -718527,13 +713807,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(25), 1, + ACTIONS(9029), 1, sym__identifier_token, - STATE(2175), 1, - sym__reserved_identifier, - STATE(6191), 1, + STATE(2170), 1, + sym_generic_name, + STATE(2179), 1, sym_identifier, - STATE(6068), 9, + STATE(2191), 1, + sym__simple_name, + STATE(2234), 1, + sym__reserved_identifier, + STATE(6003), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -718543,7 +713827,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(29), 22, + ACTIONS(9031), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -718566,7 +713850,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [244288] = 15, + [239996] = 17, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -718587,13 +713871,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(25), 1, + ACTIONS(9113), 1, sym__identifier_token, - STATE(2175), 1, - sym__reserved_identifier, - STATE(6991), 1, + STATE(2347), 1, sym_identifier, - STATE(6069), 9, + STATE(2380), 1, + sym__simple_name, + STATE(2384), 1, + sym_generic_name, + STATE(2636), 1, + sym__reserved_identifier, + STATE(6004), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -718603,7 +713891,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(29), 22, + ACTIONS(9115), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -718626,7 +713914,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [244363] = 15, + [240077] = 17, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -718649,11 +713937,15 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, ACTIONS(25), 1, sym__identifier_token, - STATE(2175), 1, + STATE(2168), 1, sym__reserved_identifier, - STATE(6185), 1, + STATE(2170), 1, + sym_generic_name, + STATE(2179), 1, sym_identifier, - STATE(6070), 9, + STATE(2188), 1, + sym__simple_name, + STATE(6005), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -718686,7 +713978,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [244438] = 15, + [240158] = 17, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -718707,13 +713999,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(25), 1, + ACTIONS(9029), 1, sym__identifier_token, - STATE(2175), 1, + STATE(2170), 1, + sym_generic_name, + STATE(2234), 1, sym__reserved_identifier, - STATE(6237), 1, + STATE(4147), 1, + sym__simple_name, + STATE(4457), 1, sym_identifier, - STATE(6071), 9, + STATE(6006), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -718723,7 +714019,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(29), 22, + ACTIONS(9031), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -718746,7 +714042,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [244513] = 15, + [240239] = 17, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -718767,13 +714063,81 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(25), 1, + ACTIONS(3855), 1, sym__identifier_token, - STATE(2175), 1, + STATE(3140), 1, + sym_identifier, + STATE(3199), 1, sym__reserved_identifier, - STATE(6727), 1, + STATE(3241), 1, + sym_generic_name, + STATE(3266), 1, + sym__simple_name, + STATE(6007), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + ACTIONS(3857), 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, + [240320] = 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(9113), 1, + sym__identifier_token, + STATE(2347), 1, sym_identifier, - STATE(6072), 9, + STATE(2384), 1, + sym_generic_name, + STATE(2390), 1, + sym__simple_name, + STATE(2636), 1, + sym__reserved_identifier, + STATE(6008), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -718783,7 +714147,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(29), 22, + ACTIONS(9115), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -718806,7 +714170,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [244588] = 15, + [240401] = 17, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -718827,13 +714191,81 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(6823), 1, + ACTIONS(4080), 1, sym__identifier_token, - STATE(2571), 1, + STATE(2347), 1, + sym_identifier, + STATE(2354), 1, sym__reserved_identifier, - STATE(6264), 1, + STATE(2380), 1, + sym__simple_name, + STATE(2384), 1, + sym_generic_name, + STATE(6009), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + ACTIONS(4082), 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, + [240482] = 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(4046), 1, + sym__identifier_token, + STATE(4315), 1, sym_identifier, - STATE(6073), 9, + STATE(4328), 1, + sym__reserved_identifier, + STATE(4410), 1, + sym_generic_name, + STATE(4641), 1, + sym__simple_name, + STATE(6010), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -718843,7 +714275,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(6825), 22, + ACTIONS(4048), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -718866,7 +714298,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [244663] = 15, + [240563] = 17, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -718889,11 +714321,15 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, ACTIONS(25), 1, sym__identifier_token, - STATE(2175), 1, + ACTIONS(9117), 1, + anon_sym_RBRACE, + STATE(2168), 1, sym__reserved_identifier, - STATE(6200), 1, + STATE(6853), 1, + sym_with_initializer, + STATE(7707), 1, sym_identifier, - STATE(6074), 9, + STATE(6011), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -718926,7 +714362,71 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [244738] = 15, + [240644] = 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(9029), 1, + sym__identifier_token, + STATE(2170), 1, + sym_generic_name, + STATE(2179), 1, + sym_identifier, + STATE(2234), 1, + sym__reserved_identifier, + STATE(2293), 1, + sym__simple_name, + STATE(6012), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + ACTIONS(9031), 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, + [240725] = 17, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -718949,11 +714449,15 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, ACTIONS(25), 1, sym__identifier_token, - STATE(2175), 1, + STATE(2168), 1, sym__reserved_identifier, - STATE(6196), 1, + STATE(2170), 1, + sym_generic_name, + STATE(2179), 1, sym_identifier, - STATE(6075), 9, + STATE(2335), 1, + sym__simple_name, + STATE(6013), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -718986,7 +714490,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [244813] = 15, + [240806] = 17, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -719009,11 +714513,15 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, ACTIONS(25), 1, sym__identifier_token, - STATE(2175), 1, + STATE(2168), 1, sym__reserved_identifier, - STATE(6220), 1, + STATE(2170), 1, + sym_generic_name, + STATE(2179), 1, sym_identifier, - STATE(6076), 9, + STATE(2274), 1, + sym__simple_name, + STATE(6014), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -719046,127 +714554,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [244888] = 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(2967), 1, - sym__identifier_token, - STATE(3691), 1, - sym__reserved_identifier, - STATE(7196), 1, - sym_identifier, - STATE(6077), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - ACTIONS(2971), 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, - [244963] = 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(6823), 1, - sym__identifier_token, - STATE(2571), 1, - sym__reserved_identifier, - STATE(6617), 1, - sym_identifier, - STATE(6078), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - ACTIONS(6825), 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, - [245038] = 15, + [240887] = 17, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -719189,11 +714577,15 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, ACTIONS(25), 1, sym__identifier_token, - STATE(2175), 1, + ACTIONS(6601), 1, + anon_sym_LBRACK, + ACTIONS(6705), 1, + anon_sym_QMARK, + STATE(2168), 1, sym__reserved_identifier, - STATE(6241), 1, + STATE(6847), 1, sym_identifier, - STATE(6079), 9, + STATE(6015), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -719226,7 +714618,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [245113] = 15, + [240968] = 17, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -719247,13 +714639,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(6823), 1, + ACTIONS(9029), 1, sym__identifier_token, - STATE(2571), 1, - sym__reserved_identifier, - STATE(7388), 1, + STATE(2170), 1, + sym_generic_name, + STATE(2179), 1, sym_identifier, - STATE(6080), 9, + STATE(2234), 1, + sym__reserved_identifier, + STATE(2278), 1, + sym__simple_name, + STATE(6016), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -719263,7 +714659,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(6825), 22, + ACTIONS(9031), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -719286,7 +714682,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [245188] = 15, + [241049] = 17, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -719309,11 +714705,15 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, ACTIONS(25), 1, sym__identifier_token, - STATE(2175), 1, + ACTIONS(6601), 1, + anon_sym_LBRACK, + ACTIONS(6603), 1, + anon_sym_STAR, + STATE(2168), 1, sym__reserved_identifier, - STATE(7284), 1, + STATE(6847), 1, sym_identifier, - STATE(6081), 9, + STATE(6017), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -719346,7 +714746,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [245263] = 15, + [241130] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -719367,13 +714767,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, - STATE(2175), 1, - sym__reserved_identifier, - STATE(6244), 1, - sym_identifier, - STATE(6082), 9, + ACTIONS(3759), 2, + anon_sym_LBRACK, + aux_sym_preproc_if_token1, + STATE(6018), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -719383,10 +714780,12 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(29), 22, + ACTIONS(3757), 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, @@ -719406,7 +714805,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [245338] = 15, + sym__identifier_token, + [241203] = 17, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -719429,11 +714829,15 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, ACTIONS(25), 1, sym__identifier_token, - STATE(2175), 1, + STATE(2168), 1, sym__reserved_identifier, - STATE(6210), 1, + STATE(2170), 1, + sym_generic_name, + STATE(2179), 1, sym_identifier, - STATE(6083), 9, + STATE(2183), 1, + sym__simple_name, + STATE(6019), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -719466,67 +714870,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [245413] = 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(6823), 1, - sym__identifier_token, - STATE(2571), 1, - sym__reserved_identifier, - STATE(6279), 1, - sym_identifier, - STATE(6084), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - ACTIONS(6825), 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, - [245488] = 12, + [241284] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -719547,7 +714891,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - STATE(6085), 9, + ACTIONS(4667), 2, + anon_sym_LBRACK, + aux_sym_preproc_if_token1, + STATE(6020), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -719557,12 +714904,12 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(9131), 25, + ACTIONS(4665), 25, anon_sym_alias, anon_sym_global, - anon_sym_unsafe, - anon_sym_static, anon_sym_file, + anon_sym_in, + anon_sym_out, anon_sym_where, anon_sym_notnull, anon_sym_unmanaged, @@ -719583,7 +714930,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_select, sym__identifier_token, - [245557] = 15, + [241357] = 17, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -719604,13 +714951,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(25), 1, + ACTIONS(9061), 1, sym__identifier_token, - STATE(2175), 1, + STATE(4073), 1, + sym_generic_name, + STATE(4147), 1, + sym__simple_name, + STATE(5309), 1, sym__reserved_identifier, - STATE(6248), 1, + STATE(6260), 1, sym_identifier, - STATE(6086), 9, + STATE(6021), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -719620,7 +714971,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(29), 22, + ACTIONS(9063), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -719643,7 +714994,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [245632] = 15, + [241438] = 17, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -719666,11 +715017,15 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, ACTIONS(25), 1, sym__identifier_token, - STATE(2175), 1, + STATE(2168), 1, sym__reserved_identifier, - STATE(7479), 1, + STATE(2170), 1, + sym_generic_name, + STATE(2179), 1, sym_identifier, - STATE(6087), 9, + STATE(2231), 1, + sym__simple_name, + STATE(6022), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -719703,7 +715058,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [245707] = 15, + [241519] = 16, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -719724,13 +715079,16 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(25), 1, + ACTIONS(6969), 1, sym__identifier_token, - STATE(2175), 1, + STATE(2565), 1, sym__reserved_identifier, - STATE(6636), 1, + STATE(6252), 1, sym_identifier, - STATE(6088), 9, + ACTIONS(9119), 2, + anon_sym_class, + anon_sym_struct, + STATE(6023), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -719740,7 +715098,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(29), 22, + ACTIONS(6971), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -719763,7 +715121,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [245782] = 15, + [241598] = 16, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -719784,13 +715142,16 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(25), 1, + ACTIONS(9097), 1, sym__identifier_token, - STATE(2175), 1, + STATE(2168), 1, sym__reserved_identifier, - STATE(6187), 1, + STATE(7302), 1, sym_identifier, - STATE(6089), 9, + ACTIONS(9103), 2, + anon_sym_unsafe, + anon_sym_static, + STATE(6024), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -719800,7 +715161,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(29), 22, + ACTIONS(9100), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -719823,7 +715184,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [245857] = 15, + [241677] = 17, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -719844,13 +715205,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(6823), 1, + ACTIONS(25), 1, sym__identifier_token, - STATE(2571), 1, + ACTIONS(9121), 1, + anon_sym_RBRACE, + STATE(2168), 1, sym__reserved_identifier, - STATE(6327), 1, + STATE(6898), 1, + sym_with_initializer, + STATE(7707), 1, sym_identifier, - STATE(6090), 9, + STATE(6025), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -719860,7 +715225,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(6825), 22, + ACTIONS(29), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -719883,7 +715248,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [245932] = 15, + [241758] = 17, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -719904,13 +715269,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(25), 1, + ACTIONS(9029), 1, sym__identifier_token, - STATE(2175), 1, - sym__reserved_identifier, - STATE(6213), 1, + STATE(2170), 1, + sym_generic_name, + STATE(2179), 1, sym_identifier, - STATE(6091), 9, + STATE(2186), 1, + sym__simple_name, + STATE(2234), 1, + sym__reserved_identifier, + STATE(6026), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -719920,7 +715289,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(29), 22, + ACTIONS(9031), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -719943,7 +715312,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [246007] = 15, + [241839] = 17, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -719964,13 +715333,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(6823), 1, + ACTIONS(3855), 1, sym__identifier_token, - STATE(2571), 1, - sym__reserved_identifier, - STATE(6607), 1, + STATE(2899), 1, sym_identifier, - STATE(6092), 9, + STATE(2950), 1, + sym_generic_name, + STATE(3008), 1, + sym__simple_name, + STATE(3199), 1, + sym__reserved_identifier, + STATE(6027), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -719980,7 +715353,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(6825), 22, + ACTIONS(3857), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -720003,7 +715376,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [246082] = 15, + [241920] = 17, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -720024,13 +715397,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(6823), 1, + ACTIONS(25), 1, sym__identifier_token, - STATE(2571), 1, + STATE(2168), 1, sym__reserved_identifier, - STATE(6269), 1, + STATE(2170), 1, + sym_generic_name, + STATE(2179), 1, sym_identifier, - STATE(6093), 9, + STATE(2353), 1, + sym__simple_name, + STATE(6028), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -720040,7 +715417,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(6825), 22, + ACTIONS(29), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -720063,7 +715440,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [246157] = 15, + [242001] = 17, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -720084,13 +715461,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(6823), 1, + ACTIONS(9029), 1, sym__identifier_token, - STATE(2571), 1, - sym__reserved_identifier, - STATE(6282), 1, + STATE(2170), 1, + sym_generic_name, + STATE(2179), 1, sym_identifier, - STATE(6094), 9, + STATE(2181), 1, + sym__simple_name, + STATE(2234), 1, + sym__reserved_identifier, + STATE(6029), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -720100,7 +715481,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(6825), 22, + ACTIONS(9031), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -720123,7 +715504,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [246232] = 15, + [242082] = 17, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -720144,13 +715525,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(25), 1, + ACTIONS(3855), 1, sym__identifier_token, - STATE(2175), 1, - sym__reserved_identifier, - STATE(7548), 1, + STATE(2932), 1, sym_identifier, - STATE(6095), 9, + STATE(3030), 1, + sym_generic_name, + STATE(3052), 1, + sym__simple_name, + STATE(3199), 1, + sym__reserved_identifier, + STATE(6030), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -720160,7 +715545,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(29), 22, + ACTIONS(3857), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -720183,7 +715568,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [246307] = 15, + [242163] = 16, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -720204,13 +715589,16 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(2967), 1, + ACTIONS(6969), 1, sym__identifier_token, - STATE(3691), 1, + STATE(2565), 1, sym__reserved_identifier, - STATE(7161), 1, + STATE(6250), 1, sym_identifier, - STATE(6096), 9, + ACTIONS(9123), 2, + anon_sym_class, + anon_sym_struct, + STATE(6031), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -720220,7 +715608,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(2971), 22, + ACTIONS(6971), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -720243,7 +715631,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [246382] = 15, + [242242] = 17, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -720264,13 +715652,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(6823), 1, + ACTIONS(3855), 1, sym__identifier_token, - STATE(2571), 1, - sym__reserved_identifier, - STATE(7581), 1, + STATE(2932), 1, sym_identifier, - STATE(6097), 9, + STATE(3030), 1, + sym_generic_name, + STATE(3070), 1, + sym__simple_name, + STATE(3199), 1, + sym__reserved_identifier, + STATE(6032), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -720280,7 +715672,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(6825), 22, + ACTIONS(3857), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -720303,7 +715695,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [246457] = 15, + [242323] = 17, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -720324,13 +715716,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(6823), 1, + ACTIONS(9029), 1, sym__identifier_token, - STATE(2571), 1, - sym__reserved_identifier, - STATE(6622), 1, + STATE(2170), 1, + sym_generic_name, + STATE(2179), 1, sym_identifier, - STATE(6098), 9, + STATE(2220), 1, + sym__simple_name, + STATE(2234), 1, + sym__reserved_identifier, + STATE(6033), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -720340,7 +715736,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(6825), 22, + ACTIONS(9031), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -720363,7 +715759,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [246532] = 15, + [242404] = 17, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -720384,13 +715780,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(6823), 1, + ACTIONS(25), 1, sym__identifier_token, - STATE(2571), 1, + STATE(2168), 1, sym__reserved_identifier, - STATE(6276), 1, + STATE(2170), 1, + sym_generic_name, + STATE(2179), 1, sym_identifier, - STATE(6099), 9, + STATE(2310), 1, + sym__simple_name, + STATE(6034), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -720400,7 +715800,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(6825), 22, + ACTIONS(29), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -720423,7 +715823,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [246607] = 15, + [242485] = 17, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -720446,11 +715846,15 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, ACTIONS(25), 1, sym__identifier_token, - STATE(2175), 1, + STATE(2168), 1, sym__reserved_identifier, - STATE(6666), 1, + STATE(2170), 1, + sym_generic_name, + STATE(2179), 1, sym_identifier, - STATE(6100), 9, + STATE(2317), 1, + sym__simple_name, + STATE(6035), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -720483,7 +715887,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [246682] = 15, + [242566] = 17, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -720504,13 +715908,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(6823), 1, + ACTIONS(25), 1, sym__identifier_token, - STATE(2571), 1, + STATE(2168), 1, sym__reserved_identifier, - STATE(6257), 1, + STATE(2170), 1, + sym_generic_name, + STATE(2179), 1, sym_identifier, - STATE(6101), 9, + STATE(2194), 1, + sym__simple_name, + STATE(6036), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -720520,7 +715928,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(6825), 22, + ACTIONS(29), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -720543,7 +715951,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [246757] = 15, + [242647] = 17, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -720564,13 +715972,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(6823), 1, + ACTIONS(25), 1, sym__identifier_token, - STATE(2571), 1, + STATE(2168), 1, sym__reserved_identifier, - STATE(7408), 1, + STATE(2170), 1, + sym_generic_name, + STATE(2179), 1, sym_identifier, - STATE(6102), 9, + STATE(2346), 1, + sym__simple_name, + STATE(6037), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -720580,7 +715992,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(6825), 22, + ACTIONS(29), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -720603,7 +716015,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [246832] = 15, + [242728] = 17, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -720626,11 +716038,15 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, ACTIONS(25), 1, sym__identifier_token, - STATE(2175), 1, + STATE(2168), 1, sym__reserved_identifier, - STATE(6624), 1, + STATE(2170), 1, + sym_generic_name, + STATE(2179), 1, sym_identifier, - STATE(6103), 9, + STATE(2322), 1, + sym__simple_name, + STATE(6038), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -720663,7 +716079,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [246907] = 15, + [242809] = 17, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -720684,13 +716100,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(25), 1, + ACTIONS(3855), 1, sym__identifier_token, - STATE(2175), 1, - sym__reserved_identifier, - STATE(6652), 1, + STATE(3137), 1, sym_identifier, - STATE(6104), 9, + STATE(3184), 1, + sym_generic_name, + STATE(3199), 1, + sym__reserved_identifier, + STATE(3301), 1, + sym__simple_name, + STATE(6039), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -720700,7 +716120,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(29), 22, + ACTIONS(3857), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -720723,7 +716143,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [246982] = 15, + [242890] = 17, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -720744,13 +716164,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(25), 1, + ACTIONS(9029), 1, sym__identifier_token, - STATE(2175), 1, + STATE(2170), 1, + sym_generic_name, + STATE(2234), 1, sym__reserved_identifier, - STATE(6206), 1, + STATE(4076), 1, + sym__simple_name, + STATE(4457), 1, sym_identifier, - STATE(6105), 9, + STATE(6040), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -720760,7 +716184,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(29), 22, + ACTIONS(9031), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -720783,7 +716207,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [247057] = 15, + [242971] = 16, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -720804,13 +716228,16 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(6823), 1, + ACTIONS(9097), 1, sym__identifier_token, - STATE(2571), 1, + STATE(2168), 1, sym__reserved_identifier, - STATE(6272), 1, + STATE(7522), 1, sym_identifier, - STATE(6106), 9, + ACTIONS(9103), 2, + anon_sym_unsafe, + anon_sym_static, + STATE(6041), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -720820,7 +716247,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(6825), 22, + ACTIONS(9100), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -720843,7 +716270,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [247132] = 15, + [243050] = 17, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -720864,13 +716291,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(25), 1, + ACTIONS(9029), 1, sym__identifier_token, - STATE(2175), 1, - sym__reserved_identifier, - STATE(6193), 1, + STATE(2170), 1, + sym_generic_name, + STATE(2179), 1, sym_identifier, - STATE(6107), 9, + STATE(2234), 1, + sym__reserved_identifier, + STATE(2250), 1, + sym__simple_name, + STATE(6042), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -720880,7 +716311,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(29), 22, + ACTIONS(9031), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -720903,7 +716334,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [247207] = 15, + [243131] = 17, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -720924,13 +716355,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(25), 1, + ACTIONS(9033), 1, sym__identifier_token, - STATE(2175), 1, - sym__reserved_identifier, - STATE(6217), 1, + STATE(2618), 1, sym_identifier, - STATE(6108), 9, + STATE(2698), 1, + sym_generic_name, + STATE(2744), 1, + sym__simple_name, + STATE(2745), 1, + sym__reserved_identifier, + STATE(6043), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -720940,7 +716375,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(29), 22, + ACTIONS(9035), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -720963,7 +716398,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [247282] = 15, + [243212] = 17, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -720984,13 +716419,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(25), 1, + ACTIONS(9061), 1, sym__identifier_token, - STATE(2175), 1, - sym__reserved_identifier, - STATE(6640), 1, + STATE(3897), 1, sym_identifier, - STATE(6109), 9, + STATE(4073), 1, + sym_generic_name, + STATE(4076), 1, + sym__simple_name, + STATE(5309), 1, + sym__reserved_identifier, + STATE(6044), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -721000,7 +716439,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(29), 22, + ACTIONS(9063), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -721023,7 +716462,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [247357] = 15, + [243293] = 17, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -721044,13 +716483,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(25), 1, + ACTIONS(3855), 1, sym__identifier_token, - STATE(2175), 1, - sym__reserved_identifier, - STATE(6228), 1, + STATE(3140), 1, sym_identifier, - STATE(6110), 9, + STATE(3199), 1, + sym__reserved_identifier, + STATE(3241), 1, + sym_generic_name, + STATE(3271), 1, + sym__simple_name, + STATE(6045), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -721060,7 +716503,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(29), 22, + ACTIONS(3857), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -721083,7 +716526,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [247432] = 15, + [243374] = 17, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -721104,13 +716547,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(6823), 1, + ACTIONS(3855), 1, sym__identifier_token, - STATE(2571), 1, - sym__reserved_identifier, - STATE(6263), 1, + STATE(2899), 1, sym_identifier, - STATE(6111), 9, + STATE(2909), 1, + sym__simple_name, + STATE(2950), 1, + sym_generic_name, + STATE(3199), 1, + sym__reserved_identifier, + STATE(6046), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -721120,7 +716567,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(6825), 22, + ACTIONS(3857), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -721143,7 +716590,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [247507] = 15, + [243455] = 16, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -721164,13 +716611,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(6823), 1, + ACTIONS(25), 1, sym__identifier_token, - STATE(2571), 1, + ACTIONS(9125), 1, + anon_sym_RPAREN, + STATE(2168), 1, sym__reserved_identifier, - STATE(6627), 1, + STATE(7442), 1, sym_identifier, - STATE(6112), 9, + STATE(6047), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -721180,7 +716629,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(6825), 22, + ACTIONS(29), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -721203,7 +716652,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [247582] = 15, + [243533] = 16, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -721224,13 +716673,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(6823), 1, + ACTIONS(25), 1, sym__identifier_token, - STATE(2571), 1, + STATE(2168), 1, sym__reserved_identifier, - STATE(6267), 1, + STATE(7151), 1, + sym_with_initializer, + STATE(7707), 1, sym_identifier, - STATE(6113), 9, + STATE(6048), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -721240,7 +716691,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(6825), 22, + ACTIONS(29), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -721263,7 +716714,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [247657] = 15, + [243611] = 16, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -721286,11 +716737,13 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, ACTIONS(25), 1, sym__identifier_token, - STATE(2175), 1, + STATE(2168), 1, sym__reserved_identifier, - STATE(7313), 1, + STATE(6750), 1, sym_identifier, - STATE(6114), 9, + STATE(7122), 1, + sym_using_variable_declarator, + STATE(6049), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -721323,7 +716776,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [247732] = 15, + [243689] = 16, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -721344,13 +716797,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(25), 1, + ACTIONS(7846), 1, sym__identifier_token, - STATE(2175), 1, + ACTIONS(9127), 1, + sym_integer_literal, + STATE(6436), 1, sym__reserved_identifier, - STATE(6373), 1, + STATE(7115), 1, sym_identifier, - STATE(6115), 9, + STATE(6050), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -721360,7 +716815,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(29), 22, + ACTIONS(7848), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -721383,7 +716838,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [247807] = 15, + [243767] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -721404,13 +716859,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(6823), 1, - sym__identifier_token, - STATE(2571), 1, - sym__reserved_identifier, - STATE(6684), 1, - sym_identifier, - STATE(6116), 9, + ACTIONS(9131), 2, + anon_sym_unsafe, + anon_sym_static, + STATE(6051), 10, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -721420,7 +716872,8 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(6825), 22, + aux_sym_using_directive_repeat1, + ACTIONS(9129), 23, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -721443,7 +716896,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [247882] = 15, + sym__identifier_token, + [243839] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -721464,13 +716918,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(6823), 1, - sym__identifier_token, - STATE(2571), 1, - sym__reserved_identifier, - STATE(6334), 1, - sym_identifier, - STATE(6117), 9, + ACTIONS(4867), 1, + aux_sym_preproc_if_token3, + ACTIONS(4667), 2, + anon_sym_LBRACK, + aux_sym_preproc_if_token1, + STATE(6052), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -721480,7 +716933,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(6825), 22, + ACTIONS(4665), 23, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -721503,7 +716956,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [247957] = 15, + sym__identifier_token, + [243913] = 16, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -721526,11 +716980,13 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, ACTIONS(25), 1, sym__identifier_token, - STATE(2175), 1, + ACTIONS(8890), 1, + anon_sym_COMMA, + STATE(2168), 1, sym__reserved_identifier, - STATE(7287), 1, + STATE(6791), 1, sym_identifier, - STATE(6118), 9, + STATE(6053), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -721563,7 +717019,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [248032] = 15, + [243991] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -721586,11 +717042,11 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, ACTIONS(25), 1, sym__identifier_token, - STATE(2175), 1, + STATE(2168), 1, sym__reserved_identifier, - STATE(6975), 1, + STATE(6889), 1, sym_identifier, - STATE(6119), 9, + STATE(6054), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -721623,7 +717079,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [248107] = 15, + [244066] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -721644,13 +717100,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(6823), 1, + ACTIONS(25), 1, sym__identifier_token, - STATE(2571), 1, + STATE(2168), 1, sym__reserved_identifier, - STATE(6687), 1, + STATE(7312), 1, sym_identifier, - STATE(6120), 9, + STATE(6055), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -721660,7 +717116,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(6825), 22, + ACTIONS(29), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -721683,7 +717139,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [248182] = 15, + [244141] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -721706,11 +717162,11 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, ACTIONS(25), 1, sym__identifier_token, - STATE(2175), 1, + STATE(2168), 1, sym__reserved_identifier, - STATE(6224), 1, + STATE(6169), 1, sym_identifier, - STATE(6121), 9, + STATE(6056), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -721743,7 +717199,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [248257] = 15, + [244216] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -721766,11 +717222,11 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, ACTIONS(25), 1, sym__identifier_token, - STATE(2175), 1, + STATE(2168), 1, sym__reserved_identifier, - STATE(6214), 1, + STATE(6678), 1, sym_identifier, - STATE(6122), 9, + STATE(6057), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -721803,7 +717259,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [248332] = 15, + [244291] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -721824,13 +717280,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(25), 1, + ACTIONS(6969), 1, sym__identifier_token, - STATE(2175), 1, + STATE(2565), 1, sym__reserved_identifier, - STATE(6202), 1, + STATE(6300), 1, sym_identifier, - STATE(6123), 9, + STATE(6058), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -721840,7 +717296,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(29), 22, + ACTIONS(6971), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -721863,7 +717319,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [248407] = 15, + [244366] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -721884,13 +717340,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(25), 1, + ACTIONS(6969), 1, sym__identifier_token, - STATE(2175), 1, + STATE(2565), 1, sym__reserved_identifier, - STATE(6246), 1, + STATE(6259), 1, sym_identifier, - STATE(6124), 9, + STATE(6059), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -721900,7 +717356,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(29), 22, + ACTIONS(6971), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -721923,7 +717379,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [248482] = 15, + [244441] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -721944,13 +717400,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(25), 1, + ACTIONS(6969), 1, sym__identifier_token, - STATE(2175), 1, + STATE(2565), 1, sym__reserved_identifier, - STATE(6231), 1, + STATE(6246), 1, sym_identifier, - STATE(6125), 9, + STATE(6060), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -721960,7 +717416,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(29), 22, + ACTIONS(6971), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -721983,7 +717439,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [248557] = 15, + [244516] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -722004,13 +717460,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(25), 1, + ACTIONS(2965), 1, sym__identifier_token, - STATE(2175), 1, + STATE(3654), 1, sym__reserved_identifier, - STATE(7097), 1, + STATE(7042), 1, sym_identifier, - STATE(6126), 9, + STATE(6061), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -722020,7 +717476,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(29), 22, + ACTIONS(2969), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -722043,7 +717499,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [248632] = 15, + [244591] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -722064,13 +717520,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(6823), 1, + ACTIONS(25), 1, sym__identifier_token, - STATE(2571), 1, + STATE(2168), 1, sym__reserved_identifier, - STATE(6629), 1, + STATE(6211), 1, sym_identifier, - STATE(6127), 9, + STATE(6062), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -722080,7 +717536,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(6825), 22, + ACTIONS(29), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -722103,7 +717559,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [248707] = 15, + [244666] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -722126,11 +717582,11 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, ACTIONS(25), 1, sym__identifier_token, - STATE(2175), 1, + STATE(2168), 1, sym__reserved_identifier, - STATE(6203), 1, + STATE(6718), 1, sym_identifier, - STATE(6128), 9, + STATE(6063), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -722163,7 +717619,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [248782] = 15, + [244741] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -722184,13 +717640,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(6823), 1, + ACTIONS(6969), 1, sym__identifier_token, - STATE(2571), 1, + STATE(2565), 1, sym__reserved_identifier, - STATE(6258), 1, + STATE(6247), 1, sym_identifier, - STATE(6129), 9, + STATE(6064), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -722200,7 +717656,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(6825), 22, + ACTIONS(6971), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -722223,7 +717679,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [248857] = 15, + [244816] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -722244,13 +717700,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(6823), 1, + ACTIONS(25), 1, sym__identifier_token, - STATE(2571), 1, + STATE(2168), 1, sym__reserved_identifier, - STATE(6330), 1, + STATE(7203), 1, sym_identifier, - STATE(6130), 9, + STATE(6065), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -722260,7 +717716,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(6825), 22, + ACTIONS(29), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -722283,7 +717739,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [248932] = 15, + [244891] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -722304,13 +717760,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(25), 1, + ACTIONS(6969), 1, sym__identifier_token, - STATE(2175), 1, + STATE(2565), 1, sym__reserved_identifier, - STATE(6838), 1, + STATE(6673), 1, sym_identifier, - STATE(6131), 9, + STATE(6066), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -722320,7 +717776,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(29), 22, + ACTIONS(6971), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -722343,7 +717799,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [249007] = 14, + [244966] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -722364,17 +717820,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9160), 1, - anon_sym_checked, - ACTIONS(9158), 7, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_GT_GT, - STATE(6132), 9, + ACTIONS(25), 1, + sym__identifier_token, + STATE(2168), 1, + sym__reserved_identifier, + STATE(6193), 1, + sym_identifier, + STATE(6067), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -722384,24 +717836,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(9162), 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, - [249079] = 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, + [245041] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -722422,17 +717880,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9166), 1, - anon_sym_checked, - ACTIONS(9164), 7, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_GT_GT, - STATE(6133), 9, + ACTIONS(6969), 1, + sym__identifier_token, + STATE(2565), 1, + sym__reserved_identifier, + STATE(7298), 1, + sym_identifier, + STATE(6068), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -722442,24 +717896,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(9168), 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, - [249151] = 14, + ACTIONS(6971), 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, + [245116] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -722480,17 +717940,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9172), 1, - anon_sym_checked, - ACTIONS(9170), 7, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_GT_GT, - STATE(6134), 9, + ACTIONS(25), 1, + sym__identifier_token, + STATE(2168), 1, + sym__reserved_identifier, + STATE(6183), 1, + sym_identifier, + STATE(6069), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -722500,24 +717956,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(9174), 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, - [249223] = 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, + [245191] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -722538,17 +718000,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9178), 1, - anon_sym_checked, - ACTIONS(9176), 7, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_GT_GT, - STATE(6135), 9, + ACTIONS(25), 1, + sym__identifier_token, + STATE(2168), 1, + sym__reserved_identifier, + STATE(6677), 1, + sym_identifier, + STATE(6070), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -722558,24 +718016,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(9180), 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, - [249295] = 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, + [245266] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -722596,17 +718060,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9184), 1, - anon_sym_checked, - ACTIONS(9182), 7, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_GT_GT, - STATE(6136), 9, + ACTIONS(25), 1, + sym__identifier_token, + STATE(2168), 1, + sym__reserved_identifier, + STATE(6182), 1, + sym_identifier, + STATE(6071), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -722616,24 +718076,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(9186), 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, - [249367] = 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, + [245341] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -722654,17 +718120,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9190), 1, - anon_sym_checked, - ACTIONS(9188), 7, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_GT_GT, - STATE(6137), 9, + ACTIONS(25), 1, + sym__identifier_token, + STATE(2168), 1, + sym__reserved_identifier, + STATE(6191), 1, + sym_identifier, + STATE(6072), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -722674,24 +718136,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(9192), 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, - [249439] = 13, + 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, + [245416] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -722712,15 +718180,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9170), 7, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_GT_GT, - STATE(6138), 9, + ACTIONS(25), 1, + sym__identifier_token, + STATE(2168), 1, + sym__reserved_identifier, + STATE(6208), 1, + sym_identifier, + STATE(6073), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -722730,24 +718196,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(9174), 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, - [249508] = 13, + 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, + [245491] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -722768,15 +718240,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9176), 7, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_GT_GT, - STATE(6139), 9, + ACTIONS(6969), 1, + sym__identifier_token, + STATE(2565), 1, + sym__reserved_identifier, + STATE(6250), 1, + sym_identifier, + STATE(6074), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -722786,24 +718256,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(9180), 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, - [249577] = 12, + ACTIONS(6971), 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, + [245566] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -722824,7 +718300,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - STATE(6140), 9, + ACTIONS(25), 1, + sym__identifier_token, + STATE(2168), 1, + sym__reserved_identifier, + STATE(6646), 1, + sym_identifier, + STATE(6075), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -722834,7 +718316,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(9194), 23, + ACTIONS(29), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -722857,8 +718339,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - sym__identifier_token, - [249644] = 13, + [245641] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -722879,15 +718360,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9196), 7, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_GT_GT, - STATE(6141), 9, + ACTIONS(6969), 1, + sym__identifier_token, + STATE(2565), 1, + sym__reserved_identifier, + STATE(6274), 1, + sym_identifier, + STATE(6076), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -722897,24 +718376,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(9198), 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, - [249713] = 13, + ACTIONS(6971), 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, + [245716] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -722935,15 +718420,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9200), 7, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_GT_GT, - STATE(6142), 9, + ACTIONS(25), 1, + sym__identifier_token, + STATE(2168), 1, + sym__reserved_identifier, + STATE(7279), 1, + sym_identifier, + STATE(6077), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -722953,24 +718436,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(9202), 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, - [249782] = 13, + 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, + [245791] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -722991,15 +718480,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9204), 7, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_GT_GT, - STATE(6143), 9, + STATE(6078), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -723009,24 +718490,33 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(9206), 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, - [249851] = 13, + ACTIONS(9103), 25, + anon_sym_alias, + anon_sym_global, + anon_sym_unsafe, + anon_sym_static, + 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, + [245860] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -723047,15 +718537,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9158), 7, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_GT_GT, - STATE(6144), 9, + ACTIONS(25), 1, + sym__identifier_token, + STATE(2168), 1, + sym__reserved_identifier, + STATE(6220), 1, + sym_identifier, + STATE(6079), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -723065,24 +718553,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(9162), 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, - [249920] = 24, + 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, + [245935] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -723103,38 +718597,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9208), 1, - anon_sym_where, - ACTIONS(9210), 1, - anon_sym_from, - ACTIONS(9212), 1, - anon_sym_join, - ACTIONS(9214), 1, - anon_sym_let, - ACTIONS(9216), 1, - anon_sym_orderby, - ACTIONS(9218), 1, - anon_sym_group, - ACTIONS(9220), 1, - anon_sym_select, - STATE(3037), 1, - sym__query_body, - STATE(4254), 1, - sym__select_or_group_clause, - STATE(6198), 1, - aux_sym__query_body_repeat1, - STATE(6363), 1, - sym__query_clause, - STATE(2971), 2, - sym_group_clause, - sym_select_clause, - STATE(6355), 5, - sym_from_clause, - sym_join_clause, - sym_let_clause, - sym_order_by_clause, - sym_where_clause, - STATE(6145), 9, + ACTIONS(25), 1, + sym__identifier_token, + STATE(2168), 1, + sym__reserved_identifier, + STATE(6216), 1, + sym_identifier, + STATE(6080), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -723144,7 +718613,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [250006] = 24, + 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, + [246010] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -723165,38 +718657,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9208), 1, - anon_sym_where, - ACTIONS(9210), 1, - anon_sym_from, - ACTIONS(9212), 1, - anon_sym_join, - ACTIONS(9214), 1, - anon_sym_let, - ACTIONS(9216), 1, - anon_sym_orderby, - ACTIONS(9222), 1, - anon_sym_group, - ACTIONS(9224), 1, - anon_sym_select, - STATE(3446), 1, - sym__query_body, - STATE(4341), 1, - sym__select_or_group_clause, - STATE(6205), 1, - aux_sym__query_body_repeat1, - STATE(6363), 1, - sym__query_clause, - STATE(3325), 2, - sym_group_clause, - sym_select_clause, - STATE(6355), 5, - sym_from_clause, - sym_join_clause, - sym_let_clause, - sym_order_by_clause, - sym_where_clause, - STATE(6146), 9, + ACTIONS(6969), 1, + sym__identifier_token, + STATE(2565), 1, + sym__reserved_identifier, + STATE(7665), 1, + sym_identifier, + STATE(6081), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -723206,7 +718673,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [250092] = 24, + ACTIONS(6971), 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, + [246085] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -723227,38 +718717,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9208), 1, - anon_sym_where, - ACTIONS(9210), 1, - anon_sym_from, - ACTIONS(9212), 1, - anon_sym_join, - ACTIONS(9214), 1, - anon_sym_let, - ACTIONS(9216), 1, - anon_sym_orderby, - ACTIONS(9226), 1, - anon_sym_group, - ACTIONS(9228), 1, - anon_sym_select, - STATE(3446), 1, - sym__query_body, - STATE(4781), 1, - sym__select_or_group_clause, - STATE(6199), 1, - aux_sym__query_body_repeat1, - STATE(6363), 1, - sym__query_clause, - STATE(3325), 2, - sym_group_clause, - sym_select_clause, - STATE(6355), 5, - sym_from_clause, - sym_join_clause, - sym_let_clause, - sym_order_by_clause, - sym_where_clause, - STATE(6147), 9, + ACTIONS(6969), 1, + sym__identifier_token, + STATE(2565), 1, + sym__reserved_identifier, + STATE(7570), 1, + sym_identifier, + STATE(6082), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -723268,7 +718733,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [250178] = 24, + ACTIONS(6971), 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, + [246160] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -723289,38 +718777,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9208), 1, - anon_sym_where, - ACTIONS(9210), 1, - anon_sym_from, - ACTIONS(9212), 1, - anon_sym_join, - ACTIONS(9214), 1, - anon_sym_let, - ACTIONS(9216), 1, - anon_sym_orderby, - ACTIONS(9230), 1, - anon_sym_group, - ACTIONS(9232), 1, - anon_sym_select, - STATE(3037), 1, - sym__query_body, - STATE(5660), 1, - sym__select_or_group_clause, - STATE(6216), 1, - aux_sym__query_body_repeat1, - STATE(6363), 1, - sym__query_clause, - STATE(2971), 2, - sym_group_clause, - sym_select_clause, - STATE(6355), 5, - sym_from_clause, - sym_join_clause, - sym_let_clause, - sym_order_by_clause, - sym_where_clause, - STATE(6148), 9, + ACTIONS(25), 1, + sym__identifier_token, + STATE(2168), 1, + sym__reserved_identifier, + STATE(6174), 1, + sym_identifier, + STATE(6083), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -723330,7 +718793,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [250264] = 24, + 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, + [246235] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -723351,38 +718837,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9208), 1, - anon_sym_where, - ACTIONS(9210), 1, - anon_sym_from, - ACTIONS(9212), 1, - anon_sym_join, - ACTIONS(9214), 1, - anon_sym_let, - ACTIONS(9216), 1, - anon_sym_orderby, - ACTIONS(9234), 1, - anon_sym_group, - ACTIONS(9236), 1, - anon_sym_select, - STATE(3112), 1, - sym__query_body, - STATE(4122), 1, - sym__select_or_group_clause, - STATE(6227), 1, - aux_sym__query_body_repeat1, - STATE(6363), 1, - sym__query_clause, - STATE(2971), 2, - sym_group_clause, - sym_select_clause, - STATE(6355), 5, - sym_from_clause, - sym_join_clause, - sym_let_clause, - sym_order_by_clause, - sym_where_clause, - STATE(6149), 9, + ACTIONS(25), 1, + sym__identifier_token, + STATE(2168), 1, + sym__reserved_identifier, + STATE(6200), 1, + sym_identifier, + STATE(6084), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -723392,7 +718853,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [250350] = 24, + 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, + [246310] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -723413,38 +718897,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9208), 1, - anon_sym_where, - ACTIONS(9210), 1, - anon_sym_from, - ACTIONS(9212), 1, - anon_sym_join, - ACTIONS(9214), 1, - anon_sym_let, - ACTIONS(9216), 1, - anon_sym_orderby, - ACTIONS(9226), 1, - anon_sym_group, - ACTIONS(9228), 1, - anon_sym_select, - STATE(3270), 1, - sym__query_body, - STATE(4781), 1, - sym__select_or_group_clause, - STATE(6199), 1, - aux_sym__query_body_repeat1, - STATE(6363), 1, - sym__query_clause, - STATE(3325), 2, - sym_group_clause, - sym_select_clause, - STATE(6355), 5, - sym_from_clause, - sym_join_clause, - sym_let_clause, - sym_order_by_clause, - sym_where_clause, - STATE(6150), 9, + ACTIONS(25), 1, + sym__identifier_token, + STATE(2168), 1, + sym__reserved_identifier, + STATE(6962), 1, + sym_identifier, + STATE(6085), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -723454,7 +718913,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [250436] = 24, + 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, + [246385] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -723475,38 +718957,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9208), 1, - anon_sym_where, - ACTIONS(9210), 1, - anon_sym_from, - ACTIONS(9212), 1, - anon_sym_join, - ACTIONS(9214), 1, - anon_sym_let, - ACTIONS(9216), 1, - anon_sym_orderby, - ACTIONS(9238), 1, - anon_sym_group, - ACTIONS(9240), 1, - anon_sym_select, - STATE(3037), 1, - sym__query_body, - STATE(5614), 1, - sym__select_or_group_clause, - STATE(6226), 1, - aux_sym__query_body_repeat1, - STATE(6363), 1, - sym__query_clause, - STATE(2971), 2, - sym_group_clause, - sym_select_clause, - STATE(6355), 5, - sym_from_clause, - sym_join_clause, - sym_let_clause, - sym_order_by_clause, - sym_where_clause, - STATE(6151), 9, + ACTIONS(6969), 1, + sym__identifier_token, + STATE(2565), 1, + sym__reserved_identifier, + STATE(6240), 1, + sym_identifier, + STATE(6086), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -723516,7 +718973,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [250522] = 24, + ACTIONS(6971), 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, + [246460] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -723537,38 +719017,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9208), 1, - anon_sym_where, - ACTIONS(9210), 1, - anon_sym_from, - ACTIONS(9212), 1, - anon_sym_join, - ACTIONS(9214), 1, - anon_sym_let, - ACTIONS(9216), 1, - anon_sym_orderby, - ACTIONS(9242), 1, - anon_sym_group, - ACTIONS(9244), 1, - anon_sym_select, - STATE(3037), 1, - sym__query_body, - STATE(4140), 1, - sym__select_or_group_clause, - STATE(6189), 1, - aux_sym__query_body_repeat1, - STATE(6363), 1, - sym__query_clause, - STATE(2971), 2, - sym_group_clause, - sym_select_clause, - STATE(6355), 5, - sym_from_clause, - sym_join_clause, - sym_let_clause, - sym_order_by_clause, - sym_where_clause, - STATE(6152), 9, + ACTIONS(6969), 1, + sym__identifier_token, + STATE(2565), 1, + sym__reserved_identifier, + STATE(6257), 1, + sym_identifier, + STATE(6087), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -723578,7 +719033,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [250608] = 24, + ACTIONS(6971), 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, + [246535] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -723599,38 +719077,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9208), 1, - anon_sym_where, - ACTIONS(9210), 1, - anon_sym_from, - ACTIONS(9212), 1, - anon_sym_join, - ACTIONS(9214), 1, - anon_sym_let, - ACTIONS(9216), 1, - anon_sym_orderby, - ACTIONS(9246), 1, - anon_sym_group, - ACTIONS(9248), 1, - anon_sym_select, - STATE(3112), 1, - sym__query_body, - STATE(5630), 1, - sym__select_or_group_clause, - STATE(6236), 1, - aux_sym__query_body_repeat1, - STATE(6363), 1, - sym__query_clause, - STATE(2971), 2, - sym_group_clause, - sym_select_clause, - STATE(6355), 5, - sym_from_clause, - sym_join_clause, - sym_let_clause, - sym_order_by_clause, - sym_where_clause, - STATE(6153), 9, + ACTIONS(25), 1, + sym__identifier_token, + STATE(2168), 1, + sym__reserved_identifier, + STATE(7150), 1, + sym_identifier, + STATE(6088), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -723640,7 +719093,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [250694] = 24, + 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, + [246610] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -723661,38 +719137,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9208), 1, - anon_sym_where, - ACTIONS(9210), 1, - anon_sym_from, - ACTIONS(9212), 1, - anon_sym_join, - ACTIONS(9214), 1, - anon_sym_let, - ACTIONS(9216), 1, - anon_sym_orderby, - ACTIONS(9242), 1, - anon_sym_group, - ACTIONS(9244), 1, - anon_sym_select, - STATE(3112), 1, - sym__query_body, - STATE(4140), 1, - sym__select_or_group_clause, - STATE(6189), 1, - aux_sym__query_body_repeat1, - STATE(6363), 1, - sym__query_clause, - STATE(2971), 2, - sym_group_clause, - sym_select_clause, - STATE(6355), 5, - sym_from_clause, - sym_join_clause, - sym_let_clause, - sym_order_by_clause, - sym_where_clause, - STATE(6154), 9, + ACTIONS(25), 1, + sym__identifier_token, + STATE(2168), 1, + sym__reserved_identifier, + STATE(6180), 1, + sym_identifier, + STATE(6089), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -723702,7 +719153,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [250780] = 24, + 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, + [246685] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -723723,38 +719197,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9208), 1, - anon_sym_where, - ACTIONS(9210), 1, - anon_sym_from, - ACTIONS(9212), 1, - anon_sym_join, - ACTIONS(9214), 1, - anon_sym_let, - ACTIONS(9216), 1, - anon_sym_orderby, - ACTIONS(9250), 1, - anon_sym_group, - ACTIONS(9252), 1, - anon_sym_select, - STATE(3446), 1, - sym__query_body, - STATE(4826), 1, - sym__select_or_group_clause, - STATE(6234), 1, - aux_sym__query_body_repeat1, - STATE(6363), 1, - sym__query_clause, - STATE(3325), 2, - sym_group_clause, - sym_select_clause, - STATE(6355), 5, - sym_from_clause, - sym_join_clause, - sym_let_clause, - sym_order_by_clause, - sym_where_clause, - STATE(6155), 9, + ACTIONS(6969), 1, + sym__identifier_token, + STATE(2565), 1, + sym__reserved_identifier, + STATE(6629), 1, + sym_identifier, + STATE(6090), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -723764,7 +719213,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [250866] = 24, + ACTIONS(6971), 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, + [246760] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -723785,38 +719257,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9208), 1, - anon_sym_where, - ACTIONS(9210), 1, - anon_sym_from, - ACTIONS(9212), 1, - anon_sym_join, - ACTIONS(9214), 1, - anon_sym_let, - ACTIONS(9216), 1, - anon_sym_orderby, - ACTIONS(9254), 1, - anon_sym_group, - ACTIONS(9256), 1, - anon_sym_select, - STATE(4492), 1, - sym__select_or_group_clause, - STATE(4584), 1, - sym__query_body, - STATE(6219), 1, - aux_sym__query_body_repeat1, - STATE(6363), 1, - sym__query_clause, - STATE(4586), 2, - sym_group_clause, - sym_select_clause, - STATE(6355), 5, - sym_from_clause, - sym_join_clause, - sym_let_clause, - sym_order_by_clause, - sym_where_clause, - STATE(6156), 9, + ACTIONS(6969), 1, + sym__identifier_token, + STATE(2565), 1, + sym__reserved_identifier, + STATE(6254), 1, + sym_identifier, + STATE(6091), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -723826,7 +719273,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [250952] = 24, + ACTIONS(6971), 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, + [246835] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -723837,48 +719307,23 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_pragma_token1, ACTIONS(11), 1, aux_sym_preproc_nullable_token1, - ACTIONS(13), 1, - aux_sym_preproc_error_token1, - ACTIONS(15), 1, - aux_sym_preproc_warning_token1, - ACTIONS(17), 1, - aux_sym_preproc_define_token1, - ACTIONS(19), 1, - aux_sym_preproc_undef_token1, - ACTIONS(21), 1, - sym_comment, - ACTIONS(9208), 1, - anon_sym_where, - ACTIONS(9210), 1, - anon_sym_from, - ACTIONS(9212), 1, - anon_sym_join, - ACTIONS(9214), 1, - anon_sym_let, - ACTIONS(9216), 1, - anon_sym_orderby, - ACTIONS(9238), 1, - anon_sym_group, - ACTIONS(9240), 1, - anon_sym_select, - STATE(3112), 1, - sym__query_body, - STATE(5614), 1, - sym__select_or_group_clause, - STATE(6226), 1, - aux_sym__query_body_repeat1, - STATE(6363), 1, - sym__query_clause, - STATE(2971), 2, - sym_group_clause, - sym_select_clause, - STATE(6355), 5, - sym_from_clause, - sym_join_clause, - sym_let_clause, - sym_order_by_clause, - sym_where_clause, - STATE(6157), 9, + ACTIONS(13), 1, + aux_sym_preproc_error_token1, + ACTIONS(15), 1, + aux_sym_preproc_warning_token1, + ACTIONS(17), 1, + aux_sym_preproc_define_token1, + ACTIONS(19), 1, + aux_sym_preproc_undef_token1, + ACTIONS(21), 1, + sym_comment, + ACTIONS(6969), 1, + sym__identifier_token, + STATE(2565), 1, + sym__reserved_identifier, + STATE(6251), 1, + sym_identifier, + STATE(6092), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -723888,7 +719333,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [251038] = 24, + ACTIONS(6971), 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, + [246910] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -723909,38 +719377,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9208), 1, - anon_sym_where, - ACTIONS(9210), 1, - anon_sym_from, - ACTIONS(9212), 1, - anon_sym_join, - ACTIONS(9214), 1, - anon_sym_let, - ACTIONS(9216), 1, - anon_sym_orderby, - ACTIONS(9258), 1, - anon_sym_group, - ACTIONS(9260), 1, - anon_sym_select, - STATE(3112), 1, - sym__query_body, - STATE(5623), 1, - sym__select_or_group_clause, - STATE(6211), 1, - aux_sym__query_body_repeat1, - STATE(6363), 1, - sym__query_clause, - STATE(2971), 2, - sym_group_clause, - sym_select_clause, - STATE(6355), 5, - sym_from_clause, - sym_join_clause, - sym_let_clause, - sym_order_by_clause, - sym_where_clause, - STATE(6158), 9, + ACTIONS(6969), 1, + sym__identifier_token, + STATE(2565), 1, + sym__reserved_identifier, + STATE(6652), 1, + sym_identifier, + STATE(6093), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -723950,7 +719393,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [251124] = 24, + ACTIONS(6971), 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, + [246985] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -723971,38 +719437,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9208), 1, - anon_sym_where, - ACTIONS(9210), 1, - anon_sym_from, - ACTIONS(9212), 1, - anon_sym_join, - ACTIONS(9214), 1, - anon_sym_let, - ACTIONS(9216), 1, - anon_sym_orderby, - ACTIONS(9262), 1, - anon_sym_group, - ACTIONS(9264), 1, - anon_sym_select, - STATE(3037), 1, - sym__query_body, - STATE(4769), 1, - sym__select_or_group_clause, - STATE(6239), 1, - aux_sym__query_body_repeat1, - STATE(6363), 1, - sym__query_clause, - STATE(2971), 2, - sym_group_clause, - sym_select_clause, - STATE(6355), 5, - sym_from_clause, - sym_join_clause, - sym_let_clause, - sym_order_by_clause, - sym_where_clause, - STATE(6159), 9, + ACTIONS(25), 1, + sym__identifier_token, + STATE(2168), 1, + sym__reserved_identifier, + STATE(6202), 1, + sym_identifier, + STATE(6094), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -724012,7 +719453,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [251210] = 24, + 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, + [247060] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -724033,38 +719497,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9208), 1, - anon_sym_where, - ACTIONS(9210), 1, - anon_sym_from, - ACTIONS(9212), 1, - anon_sym_join, - ACTIONS(9214), 1, - anon_sym_let, - ACTIONS(9216), 1, - anon_sym_orderby, - ACTIONS(9266), 1, - anon_sym_group, - ACTIONS(9268), 1, - anon_sym_select, - STATE(3270), 1, - sym__query_body, - STATE(5097), 1, - sym__select_or_group_clause, - STATE(6186), 1, - aux_sym__query_body_repeat1, - STATE(6363), 1, - sym__query_clause, - STATE(3325), 2, - sym_group_clause, - sym_select_clause, - STATE(6355), 5, - sym_from_clause, - sym_join_clause, - sym_let_clause, - sym_order_by_clause, - sym_where_clause, - STATE(6160), 9, + ACTIONS(25), 1, + sym__identifier_token, + STATE(2168), 1, + sym__reserved_identifier, + STATE(6197), 1, + sym_identifier, + STATE(6095), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -724074,7 +719513,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [251296] = 24, + 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, + [247135] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -724095,38 +719557,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9208), 1, - anon_sym_where, - ACTIONS(9210), 1, - anon_sym_from, - ACTIONS(9212), 1, - anon_sym_join, - ACTIONS(9214), 1, - anon_sym_let, - ACTIONS(9216), 1, - anon_sym_orderby, - ACTIONS(9262), 1, - anon_sym_group, - ACTIONS(9264), 1, - anon_sym_select, - STATE(3112), 1, - sym__query_body, - STATE(4769), 1, - sym__select_or_group_clause, - STATE(6239), 1, - aux_sym__query_body_repeat1, - STATE(6363), 1, - sym__query_clause, - STATE(2971), 2, - sym_group_clause, - sym_select_clause, - STATE(6355), 5, - sym_from_clause, - sym_join_clause, - sym_let_clause, - sym_order_by_clause, - sym_where_clause, - STATE(6161), 9, + ACTIONS(6969), 1, + sym__identifier_token, + STATE(2565), 1, + sym__reserved_identifier, + STATE(6308), 1, + sym_identifier, + STATE(6096), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -724136,7 +719573,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [251382] = 24, + ACTIONS(6971), 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, + [247210] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -724157,38 +719617,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9208), 1, - anon_sym_where, - ACTIONS(9210), 1, - anon_sym_from, - ACTIONS(9212), 1, - anon_sym_join, - ACTIONS(9214), 1, - anon_sym_let, - ACTIONS(9216), 1, - anon_sym_orderby, - ACTIONS(9222), 1, - anon_sym_group, - ACTIONS(9224), 1, - anon_sym_select, - STATE(3270), 1, - sym__query_body, - STATE(4341), 1, - sym__select_or_group_clause, - STATE(6205), 1, - aux_sym__query_body_repeat1, - STATE(6363), 1, - sym__query_clause, - STATE(3325), 2, - sym_group_clause, - sym_select_clause, - STATE(6355), 5, - sym_from_clause, - sym_join_clause, - sym_let_clause, - sym_order_by_clause, - sym_where_clause, - STATE(6162), 9, + ACTIONS(25), 1, + sym__identifier_token, + STATE(2168), 1, + sym__reserved_identifier, + STATE(6829), 1, + sym_identifier, + STATE(6097), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -724198,7 +719633,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [251468] = 24, + 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, + [247285] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -724219,38 +719677,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9208), 1, - anon_sym_where, - ACTIONS(9210), 1, - anon_sym_from, - ACTIONS(9212), 1, - anon_sym_join, - ACTIONS(9214), 1, - anon_sym_let, - ACTIONS(9216), 1, - anon_sym_orderby, - ACTIONS(9270), 1, - anon_sym_group, - ACTIONS(9272), 1, - anon_sym_select, - STATE(3446), 1, - sym__query_body, - STATE(5079), 1, - sym__select_or_group_clause, - STATE(6240), 1, - aux_sym__query_body_repeat1, - STATE(6363), 1, - sym__query_clause, - STATE(3325), 2, - sym_group_clause, - sym_select_clause, - STATE(6355), 5, - sym_from_clause, - sym_join_clause, - sym_let_clause, - sym_order_by_clause, - sym_where_clause, - STATE(6163), 9, + ACTIONS(25), 1, + sym__identifier_token, + STATE(2168), 1, + sym__reserved_identifier, + STATE(6188), 1, + sym_identifier, + STATE(6098), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -724260,7 +719693,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [251554] = 24, + 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, + [247360] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -724281,38 +719737,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9208), 1, - anon_sym_where, - ACTIONS(9210), 1, - anon_sym_from, - ACTIONS(9212), 1, - anon_sym_join, - ACTIONS(9214), 1, - anon_sym_let, - ACTIONS(9216), 1, - anon_sym_orderby, - ACTIONS(9230), 1, - anon_sym_group, - ACTIONS(9232), 1, - anon_sym_select, - STATE(3112), 1, - sym__query_body, - STATE(5660), 1, - sym__select_or_group_clause, - STATE(6216), 1, - aux_sym__query_body_repeat1, - STATE(6363), 1, - sym__query_clause, - STATE(2971), 2, - sym_group_clause, - sym_select_clause, - STATE(6355), 5, - sym_from_clause, - sym_join_clause, - sym_let_clause, - sym_order_by_clause, - sym_where_clause, - STATE(6164), 9, + ACTIONS(2965), 1, + sym__identifier_token, + STATE(3654), 1, + sym__reserved_identifier, + STATE(7145), 1, + sym_identifier, + STATE(6099), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -724322,7 +719753,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [251640] = 24, + ACTIONS(2969), 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, + [247435] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -724343,38 +719797,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9208), 1, - anon_sym_where, - ACTIONS(9210), 1, - anon_sym_from, - ACTIONS(9212), 1, - anon_sym_join, - ACTIONS(9214), 1, - anon_sym_let, - ACTIONS(9216), 1, - anon_sym_orderby, - ACTIONS(9274), 1, - anon_sym_group, - ACTIONS(9276), 1, - anon_sym_select, - STATE(3270), 1, - sym__query_body, - STATE(5090), 1, - sym__select_or_group_clause, - STATE(6247), 1, - aux_sym__query_body_repeat1, - STATE(6363), 1, - sym__query_clause, - STATE(3325), 2, - sym_group_clause, - sym_select_clause, - STATE(6355), 5, - sym_from_clause, - sym_join_clause, - sym_let_clause, - sym_order_by_clause, - sym_where_clause, - STATE(6165), 9, + ACTIONS(25), 1, + sym__identifier_token, + STATE(2168), 1, + sym__reserved_identifier, + STATE(6222), 1, + sym_identifier, + STATE(6100), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -724384,7 +719813,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [251726] = 24, + 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, + [247510] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -724405,38 +719857,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9208), 1, - anon_sym_where, - ACTIONS(9210), 1, - anon_sym_from, - ACTIONS(9212), 1, - anon_sym_join, - ACTIONS(9214), 1, - anon_sym_let, - ACTIONS(9216), 1, - anon_sym_orderby, - ACTIONS(9278), 1, - anon_sym_group, - ACTIONS(9280), 1, - anon_sym_select, - STATE(3270), 1, - sym__query_body, - STATE(5084), 1, - sym__select_or_group_clause, - STATE(6243), 1, - aux_sym__query_body_repeat1, - STATE(6363), 1, - sym__query_clause, - STATE(3325), 2, - sym_group_clause, - sym_select_clause, - STATE(6355), 5, - sym_from_clause, - sym_join_clause, - sym_let_clause, - sym_order_by_clause, - sym_where_clause, - STATE(6166), 9, + ACTIONS(25), 1, + sym__identifier_token, + STATE(2168), 1, + sym__reserved_identifier, + STATE(6659), 1, + sym_identifier, + STATE(6101), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -724446,7 +719873,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [251812] = 24, + 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, + [247585] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -724467,38 +719917,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9208), 1, - anon_sym_where, - ACTIONS(9210), 1, - anon_sym_from, - ACTIONS(9212), 1, - anon_sym_join, - ACTIONS(9214), 1, - anon_sym_let, - ACTIONS(9216), 1, - anon_sym_orderby, - ACTIONS(9278), 1, - anon_sym_group, - ACTIONS(9280), 1, - anon_sym_select, - STATE(3446), 1, - sym__query_body, - STATE(5084), 1, - sym__select_or_group_clause, - STATE(6243), 1, - aux_sym__query_body_repeat1, - STATE(6363), 1, - sym__query_clause, - STATE(3325), 2, - sym_group_clause, - sym_select_clause, - STATE(6355), 5, - sym_from_clause, - sym_join_clause, - sym_let_clause, - sym_order_by_clause, - sym_where_clause, - STATE(6167), 9, + ACTIONS(25), 1, + sym__identifier_token, + STATE(2168), 1, + sym__reserved_identifier, + STATE(7677), 1, + sym_identifier, + STATE(6102), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -724508,7 +719933,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [251898] = 24, + 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, + [247660] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -724529,38 +719977,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9208), 1, - anon_sym_where, - ACTIONS(9210), 1, - anon_sym_from, - ACTIONS(9212), 1, - anon_sym_join, - ACTIONS(9214), 1, - anon_sym_let, - ACTIONS(9216), 1, - anon_sym_orderby, - ACTIONS(9282), 1, - anon_sym_group, - ACTIONS(9284), 1, - anon_sym_select, - STATE(3887), 1, - sym__query_body, - STATE(4055), 1, - sym__select_or_group_clause, - STATE(6194), 1, - aux_sym__query_body_repeat1, - STATE(6363), 1, - sym__query_clause, - STATE(3888), 2, - sym_group_clause, - sym_select_clause, - STATE(6355), 5, - sym_from_clause, - sym_join_clause, - sym_let_clause, - sym_order_by_clause, - sym_where_clause, - STATE(6168), 9, + ACTIONS(6969), 1, + sym__identifier_token, + STATE(2565), 1, + sym__reserved_identifier, + STATE(6249), 1, + sym_identifier, + STATE(6103), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -724570,7 +719993,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [251984] = 24, + ACTIONS(6971), 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, + [247735] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -724591,38 +720037,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9208), 1, - anon_sym_where, - ACTIONS(9210), 1, - anon_sym_from, - ACTIONS(9212), 1, - anon_sym_join, - ACTIONS(9214), 1, - anon_sym_let, - ACTIONS(9216), 1, - anon_sym_orderby, - ACTIONS(9286), 1, - anon_sym_group, - ACTIONS(9288), 1, - anon_sym_select, - STATE(4584), 1, - sym__query_body, - STATE(4965), 1, - sym__select_or_group_clause, - STATE(6233), 1, - aux_sym__query_body_repeat1, - STATE(6363), 1, - sym__query_clause, - STATE(4586), 2, - sym_group_clause, - sym_select_clause, - STATE(6355), 5, - sym_from_clause, - sym_join_clause, - sym_let_clause, - sym_order_by_clause, - sym_where_clause, - STATE(6169), 9, + ACTIONS(25), 1, + sym__identifier_token, + STATE(2168), 1, + sym__reserved_identifier, + STATE(6176), 1, + sym_identifier, + STATE(6104), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -724632,7 +720053,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [252070] = 24, + 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, + [247810] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -724653,38 +720097,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9208), 1, - anon_sym_where, - ACTIONS(9210), 1, - anon_sym_from, - ACTIONS(9212), 1, - anon_sym_join, - ACTIONS(9214), 1, - anon_sym_let, - ACTIONS(9216), 1, - anon_sym_orderby, - ACTIONS(9290), 1, - anon_sym_group, - ACTIONS(9292), 1, - anon_sym_select, - STATE(3112), 1, - sym__query_body, - STATE(5627), 1, - sym__select_or_group_clause, - STATE(6222), 1, - aux_sym__query_body_repeat1, - STATE(6363), 1, - sym__query_clause, - STATE(2971), 2, - sym_group_clause, - sym_select_clause, - STATE(6355), 5, - sym_from_clause, - sym_join_clause, - sym_let_clause, - sym_order_by_clause, - sym_where_clause, - STATE(6170), 9, + ACTIONS(25), 1, + sym__identifier_token, + STATE(2168), 1, + sym__reserved_identifier, + STATE(6639), 1, + sym_identifier, + STATE(6105), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -724694,7 +720113,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [252156] = 24, + 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, + [247885] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -724715,38 +720157,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9208), 1, - anon_sym_where, - ACTIONS(9210), 1, - anon_sym_from, - ACTIONS(9212), 1, - anon_sym_join, - ACTIONS(9214), 1, - anon_sym_let, - ACTIONS(9216), 1, - anon_sym_orderby, - ACTIONS(9294), 1, - anon_sym_group, - ACTIONS(9296), 1, - anon_sym_select, - STATE(3446), 1, - sym__query_body, - STATE(3907), 1, - sym__select_or_group_clause, - STATE(6190), 1, - aux_sym__query_body_repeat1, - STATE(6363), 1, - sym__query_clause, - STATE(3325), 2, - sym_group_clause, - sym_select_clause, - STATE(6355), 5, - sym_from_clause, - sym_join_clause, - sym_let_clause, - sym_order_by_clause, - sym_where_clause, - STATE(6171), 9, + ACTIONS(25), 1, + sym__identifier_token, + STATE(2168), 1, + sym__reserved_identifier, + STATE(6225), 1, + sym_identifier, + STATE(6106), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -724756,7 +720173,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [252242] = 24, + 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, + [247960] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -724777,38 +720217,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9208), 1, - anon_sym_where, - ACTIONS(9210), 1, - anon_sym_from, - ACTIONS(9212), 1, - anon_sym_join, - ACTIONS(9214), 1, - anon_sym_let, - ACTIONS(9216), 1, - anon_sym_orderby, - ACTIONS(9294), 1, - anon_sym_group, - ACTIONS(9296), 1, - anon_sym_select, - STATE(3270), 1, - sym__query_body, - STATE(3907), 1, - sym__select_or_group_clause, - STATE(6190), 1, - aux_sym__query_body_repeat1, - STATE(6363), 1, - sym__query_clause, - STATE(3325), 2, - sym_group_clause, - sym_select_clause, - STATE(6355), 5, - sym_from_clause, - sym_join_clause, - sym_let_clause, - sym_order_by_clause, - sym_where_clause, - STATE(6172), 9, + ACTIONS(25), 1, + sym__identifier_token, + STATE(2168), 1, + sym__reserved_identifier, + STATE(6350), 1, + sym_identifier, + STATE(6107), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -724818,7 +720233,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [252328] = 24, + 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, + [248035] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -724839,38 +720277,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9208), 1, - anon_sym_where, - ACTIONS(9210), 1, - anon_sym_from, - ACTIONS(9212), 1, - anon_sym_join, - ACTIONS(9214), 1, - anon_sym_let, - ACTIONS(9216), 1, - anon_sym_orderby, - ACTIONS(9270), 1, - anon_sym_group, - ACTIONS(9272), 1, - anon_sym_select, - STATE(3270), 1, - sym__query_body, - STATE(5079), 1, - sym__select_or_group_clause, - STATE(6240), 1, - aux_sym__query_body_repeat1, - STATE(6363), 1, - sym__query_clause, - STATE(3325), 2, - sym_group_clause, - sym_select_clause, - STATE(6355), 5, - sym_from_clause, - sym_join_clause, - sym_let_clause, - sym_order_by_clause, - sym_where_clause, - STATE(6173), 9, + ACTIONS(25), 1, + sym__identifier_token, + STATE(2168), 1, + sym__reserved_identifier, + STATE(7265), 1, + sym_identifier, + STATE(6108), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -724880,7 +720293,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [252414] = 24, + 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, + [248110] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -724901,38 +720337,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9208), 1, - anon_sym_where, - ACTIONS(9210), 1, - anon_sym_from, - ACTIONS(9212), 1, - anon_sym_join, - ACTIONS(9214), 1, - anon_sym_let, - ACTIONS(9216), 1, - anon_sym_orderby, - ACTIONS(9298), 1, - anon_sym_group, - ACTIONS(9300), 1, - anon_sym_select, - STATE(3446), 1, - sym__query_body, - STATE(5108), 1, - sym__select_or_group_clause, - STATE(6230), 1, - aux_sym__query_body_repeat1, - STATE(6363), 1, - sym__query_clause, - STATE(3325), 2, - sym_group_clause, - sym_select_clause, - STATE(6355), 5, - sym_from_clause, - sym_join_clause, - sym_let_clause, - sym_order_by_clause, - sym_where_clause, - STATE(6174), 9, + ACTIONS(25), 1, + sym__identifier_token, + STATE(2168), 1, + sym__reserved_identifier, + STATE(6170), 1, + sym_identifier, + STATE(6109), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -724942,7 +720353,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [252500] = 24, + 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, + [248185] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -724963,38 +720397,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9208), 1, - anon_sym_where, - ACTIONS(9210), 1, - anon_sym_from, - ACTIONS(9212), 1, - anon_sym_join, - ACTIONS(9214), 1, - anon_sym_let, - ACTIONS(9216), 1, - anon_sym_orderby, - ACTIONS(9274), 1, - anon_sym_group, - ACTIONS(9276), 1, - anon_sym_select, - STATE(3446), 1, - sym__query_body, - STATE(5090), 1, - sym__select_or_group_clause, - STATE(6247), 1, - aux_sym__query_body_repeat1, - STATE(6363), 1, - sym__query_clause, - STATE(3325), 2, - sym_group_clause, - sym_select_clause, - STATE(6355), 5, - sym_from_clause, - sym_join_clause, - sym_let_clause, - sym_order_by_clause, - sym_where_clause, - STATE(6175), 9, + ACTIONS(25), 1, + sym__identifier_token, + STATE(2168), 1, + sym__reserved_identifier, + STATE(6206), 1, + sym_identifier, + STATE(6110), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -725004,7 +720413,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [252586] = 24, + 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, + [248260] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -725025,38 +720457,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9208), 1, - anon_sym_where, - ACTIONS(9210), 1, - anon_sym_from, - ACTIONS(9212), 1, - anon_sym_join, - ACTIONS(9214), 1, - anon_sym_let, - ACTIONS(9216), 1, - anon_sym_orderby, - ACTIONS(9258), 1, - anon_sym_group, - ACTIONS(9260), 1, - anon_sym_select, - STATE(3037), 1, - sym__query_body, - STATE(5623), 1, - sym__select_or_group_clause, - STATE(6211), 1, - aux_sym__query_body_repeat1, - STATE(6363), 1, - sym__query_clause, - STATE(2971), 2, - sym_group_clause, - sym_select_clause, - STATE(6355), 5, - sym_from_clause, - sym_join_clause, - sym_let_clause, - sym_order_by_clause, - sym_where_clause, - STATE(6176), 9, + ACTIONS(25), 1, + sym__identifier_token, + STATE(2168), 1, + sym__reserved_identifier, + STATE(6215), 1, + sym_identifier, + STATE(6111), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -725066,7 +720473,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [252672] = 24, + 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, + [248335] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -725087,38 +720517,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9208), 1, - anon_sym_where, - ACTIONS(9210), 1, - anon_sym_from, - ACTIONS(9212), 1, - anon_sym_join, - ACTIONS(9214), 1, - anon_sym_let, - ACTIONS(9216), 1, - anon_sym_orderby, - ACTIONS(9250), 1, - anon_sym_group, - ACTIONS(9252), 1, - anon_sym_select, - STATE(3270), 1, - sym__query_body, - STATE(4826), 1, - sym__select_or_group_clause, - STATE(6234), 1, - aux_sym__query_body_repeat1, - STATE(6363), 1, - sym__query_clause, - STATE(3325), 2, - sym_group_clause, - sym_select_clause, - STATE(6355), 5, - sym_from_clause, - sym_join_clause, - sym_let_clause, - sym_order_by_clause, - sym_where_clause, - STATE(6177), 9, + ACTIONS(25), 1, + sym__identifier_token, + STATE(2168), 1, + sym__reserved_identifier, + STATE(6228), 1, + sym_identifier, + STATE(6112), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -725128,7 +720533,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [252758] = 24, + 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, + [248410] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -725149,38 +720577,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9208), 1, - anon_sym_where, - ACTIONS(9210), 1, - anon_sym_from, - ACTIONS(9212), 1, - anon_sym_join, - ACTIONS(9214), 1, - anon_sym_let, - ACTIONS(9216), 1, - anon_sym_orderby, - ACTIONS(9266), 1, - anon_sym_group, - ACTIONS(9268), 1, - anon_sym_select, - STATE(3446), 1, - sym__query_body, - STATE(5097), 1, - sym__select_or_group_clause, - STATE(6186), 1, - aux_sym__query_body_repeat1, - STATE(6363), 1, - sym__query_clause, - STATE(3325), 2, - sym_group_clause, - sym_select_clause, - STATE(6355), 5, - sym_from_clause, - sym_join_clause, - sym_let_clause, - sym_order_by_clause, - sym_where_clause, - STATE(6178), 9, + ACTIONS(6969), 1, + sym__identifier_token, + STATE(2565), 1, + sym__reserved_identifier, + STATE(6241), 1, + sym_identifier, + STATE(6113), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -725190,7 +720593,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [252844] = 24, + ACTIONS(6971), 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, + [248485] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -725211,38 +720637,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9208), 1, - anon_sym_where, - ACTIONS(9210), 1, - anon_sym_from, - ACTIONS(9212), 1, - anon_sym_join, - ACTIONS(9214), 1, - anon_sym_let, - ACTIONS(9216), 1, - anon_sym_orderby, - ACTIONS(9234), 1, - anon_sym_group, - ACTIONS(9236), 1, - anon_sym_select, - STATE(3037), 1, - sym__query_body, - STATE(4122), 1, - sym__select_or_group_clause, - STATE(6227), 1, - aux_sym__query_body_repeat1, - STATE(6363), 1, - sym__query_clause, - STATE(2971), 2, - sym_group_clause, - sym_select_clause, - STATE(6355), 5, - sym_from_clause, - sym_join_clause, - sym_let_clause, - sym_order_by_clause, - sym_where_clause, - STATE(6179), 9, + ACTIONS(25), 1, + sym__identifier_token, + STATE(2168), 1, + sym__reserved_identifier, + STATE(6621), 1, + sym_identifier, + STATE(6114), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -725252,7 +720653,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [252930] = 24, + 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, + [248560] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -725273,38 +720697,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9208), 1, - anon_sym_where, - ACTIONS(9210), 1, - anon_sym_from, - ACTIONS(9212), 1, - anon_sym_join, - ACTIONS(9214), 1, - anon_sym_let, - ACTIONS(9216), 1, - anon_sym_orderby, - ACTIONS(9298), 1, - anon_sym_group, - ACTIONS(9300), 1, - anon_sym_select, - STATE(3270), 1, - sym__query_body, - STATE(5108), 1, - sym__select_or_group_clause, - STATE(6230), 1, - aux_sym__query_body_repeat1, - STATE(6363), 1, - sym__query_clause, - STATE(3325), 2, - sym_group_clause, - sym_select_clause, - STATE(6355), 5, - sym_from_clause, - sym_join_clause, - sym_let_clause, - sym_order_by_clause, - sym_where_clause, - STATE(6180), 9, + ACTIONS(9136), 1, + anon_sym_checked, + ACTIONS(9134), 7, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_GT_GT, + STATE(6115), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -725314,7 +720717,24 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [253016] = 24, + ACTIONS(9138), 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, + [248632] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -725335,38 +720755,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9208), 1, - anon_sym_where, - ACTIONS(9210), 1, - anon_sym_from, - ACTIONS(9212), 1, - anon_sym_join, - ACTIONS(9214), 1, - anon_sym_let, - ACTIONS(9216), 1, - anon_sym_orderby, - ACTIONS(9246), 1, - anon_sym_group, - ACTIONS(9248), 1, - anon_sym_select, - STATE(3037), 1, - sym__query_body, - STATE(5630), 1, - sym__select_or_group_clause, - STATE(6236), 1, - aux_sym__query_body_repeat1, - STATE(6363), 1, - sym__query_clause, - STATE(2971), 2, - sym_group_clause, - sym_select_clause, - STATE(6355), 5, - sym_from_clause, - sym_join_clause, - sym_let_clause, - sym_order_by_clause, - sym_where_clause, - STATE(6181), 9, + ACTIONS(9142), 1, + anon_sym_checked, + ACTIONS(9140), 7, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_GT_GT, + STATE(6116), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -725376,7 +720775,24 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [253102] = 24, + ACTIONS(9144), 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, + [248704] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -725397,38 +720813,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9208), 1, - anon_sym_where, - ACTIONS(9210), 1, - anon_sym_from, - ACTIONS(9212), 1, - anon_sym_join, - ACTIONS(9214), 1, - anon_sym_let, - ACTIONS(9216), 1, - anon_sym_orderby, - ACTIONS(9302), 1, - anon_sym_group, - ACTIONS(9304), 1, - anon_sym_select, - STATE(3683), 1, - sym__select_or_group_clause, - STATE(3887), 1, - sym__query_body, - STATE(6195), 1, - aux_sym__query_body_repeat1, - STATE(6363), 1, - sym__query_clause, - STATE(3888), 2, - sym_group_clause, - sym_select_clause, - STATE(6355), 5, - sym_from_clause, - sym_join_clause, - sym_let_clause, - sym_order_by_clause, - sym_where_clause, - STATE(6182), 9, + ACTIONS(9148), 1, + anon_sym_checked, + ACTIONS(9146), 7, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_GT_GT, + STATE(6117), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -725438,7 +720833,24 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [253188] = 24, + ACTIONS(9150), 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, + [248776] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -725459,38 +720871,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9208), 1, - anon_sym_where, - ACTIONS(9210), 1, - anon_sym_from, - ACTIONS(9212), 1, - anon_sym_join, - ACTIONS(9214), 1, - anon_sym_let, - ACTIONS(9216), 1, - anon_sym_orderby, - ACTIONS(9218), 1, - anon_sym_group, - ACTIONS(9220), 1, - anon_sym_select, - STATE(3112), 1, - sym__query_body, - STATE(4254), 1, - sym__select_or_group_clause, - STATE(6198), 1, - aux_sym__query_body_repeat1, - STATE(6363), 1, - sym__query_clause, - STATE(2971), 2, - sym_group_clause, - sym_select_clause, - STATE(6355), 5, - sym_from_clause, - sym_join_clause, - sym_let_clause, - sym_order_by_clause, - sym_where_clause, - STATE(6183), 9, + ACTIONS(9154), 1, + anon_sym_checked, + ACTIONS(9152), 7, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_GT_GT, + STATE(6118), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -725500,7 +720891,24 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [253274] = 24, + ACTIONS(9156), 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, + [248848] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -725521,38 +720929,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9208), 1, - anon_sym_where, - ACTIONS(9210), 1, - anon_sym_from, - ACTIONS(9212), 1, - anon_sym_join, - ACTIONS(9214), 1, - anon_sym_let, - ACTIONS(9216), 1, - anon_sym_orderby, - ACTIONS(9290), 1, - anon_sym_group, - ACTIONS(9292), 1, - anon_sym_select, - STATE(3037), 1, - sym__query_body, - STATE(5627), 1, - sym__select_or_group_clause, - STATE(6222), 1, - aux_sym__query_body_repeat1, - STATE(6363), 1, - sym__query_clause, - STATE(2971), 2, - sym_group_clause, - sym_select_clause, - STATE(6355), 5, - sym_from_clause, - sym_join_clause, - sym_let_clause, - sym_order_by_clause, - sym_where_clause, - STATE(6184), 9, + ACTIONS(9160), 1, + anon_sym_checked, + ACTIONS(9158), 7, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_GT_GT, + STATE(6119), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -725562,7 +720949,24 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [253360] = 23, + ACTIONS(9162), 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, + [248920] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -725583,36 +720987,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9208), 1, - anon_sym_where, - ACTIONS(9210), 1, - anon_sym_from, - ACTIONS(9212), 1, - anon_sym_join, - ACTIONS(9214), 1, - anon_sym_let, - ACTIONS(9216), 1, - anon_sym_orderby, - ACTIONS(9250), 1, - anon_sym_group, - ACTIONS(9252), 1, - anon_sym_select, - STATE(3302), 1, - sym__select_or_group_clause, - STATE(6235), 1, - aux_sym__query_body_repeat1, - STATE(6363), 1, - sym__query_clause, - STATE(3325), 2, - sym_group_clause, - sym_select_clause, - STATE(6355), 5, - sym_from_clause, - sym_join_clause, - sym_let_clause, - sym_order_by_clause, - sym_where_clause, - STATE(6185), 9, + ACTIONS(9166), 1, + anon_sym_checked, + ACTIONS(9164), 7, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_GT_GT, + STATE(6120), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -725622,7 +721007,24 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [253443] = 23, + ACTIONS(9168), 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, + [248992] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -725643,36 +721045,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9208), 1, - anon_sym_where, - ACTIONS(9210), 1, - anon_sym_from, - ACTIONS(9212), 1, - anon_sym_join, - ACTIONS(9214), 1, - anon_sym_let, - ACTIONS(9216), 1, - anon_sym_orderby, - ACTIONS(9266), 1, - anon_sym_group, - ACTIONS(9268), 1, - anon_sym_select, - STATE(5099), 1, - sym__select_or_group_clause, - STATE(6254), 1, - aux_sym__query_body_repeat1, - STATE(6363), 1, - sym__query_clause, - STATE(3325), 2, - sym_group_clause, - sym_select_clause, - STATE(6355), 5, - sym_from_clause, - sym_join_clause, - sym_let_clause, - sym_order_by_clause, - sym_where_clause, - STATE(6186), 9, + ACTIONS(9170), 7, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_GT_GT, + STATE(6121), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -725682,7 +721063,24 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [253526] = 23, + ACTIONS(9172), 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, + [249061] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -725703,36 +721101,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9208), 1, - anon_sym_where, - ACTIONS(9210), 1, - anon_sym_from, - ACTIONS(9212), 1, - anon_sym_join, - ACTIONS(9214), 1, - anon_sym_let, - ACTIONS(9216), 1, - anon_sym_orderby, - ACTIONS(9266), 1, - anon_sym_group, - ACTIONS(9268), 1, - anon_sym_select, - STATE(3302), 1, - sym__select_or_group_clause, - STATE(6188), 1, - aux_sym__query_body_repeat1, - STATE(6363), 1, - sym__query_clause, - STATE(3325), 2, - sym_group_clause, - sym_select_clause, - STATE(6355), 5, - sym_from_clause, - sym_join_clause, - sym_let_clause, - sym_order_by_clause, - sym_where_clause, - STATE(6187), 9, + ACTIONS(9164), 7, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_GT_GT, + STATE(6122), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -725742,7 +721119,24 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [253609] = 23, + ACTIONS(9168), 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, + [249130] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -725763,36 +721157,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9208), 1, - anon_sym_where, - ACTIONS(9210), 1, - anon_sym_from, - ACTIONS(9212), 1, - anon_sym_join, - ACTIONS(9214), 1, - anon_sym_let, - ACTIONS(9216), 1, - anon_sym_orderby, - ACTIONS(9266), 1, - anon_sym_group, - ACTIONS(9268), 1, - anon_sym_select, - STATE(3351), 1, - sym__select_or_group_clause, - STATE(6254), 1, - aux_sym__query_body_repeat1, - STATE(6363), 1, - sym__query_clause, - STATE(3325), 2, - sym_group_clause, - sym_select_clause, - STATE(6355), 5, - sym_from_clause, - sym_join_clause, - sym_let_clause, - sym_order_by_clause, - sym_where_clause, - STATE(6188), 9, + ACTIONS(9174), 7, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_GT_GT, + STATE(6123), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -725802,7 +721175,24 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [253692] = 23, + ACTIONS(9176), 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, + [249199] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -725823,36 +721213,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9208), 1, - anon_sym_where, - ACTIONS(9210), 1, - anon_sym_from, - ACTIONS(9212), 1, - anon_sym_join, - ACTIONS(9214), 1, - anon_sym_let, - ACTIONS(9216), 1, - anon_sym_orderby, - ACTIONS(9242), 1, - anon_sym_group, - ACTIONS(9244), 1, - anon_sym_select, - STATE(4128), 1, - sym__select_or_group_clause, - STATE(6254), 1, - aux_sym__query_body_repeat1, - STATE(6363), 1, - sym__query_clause, - STATE(2971), 2, - sym_group_clause, - sym_select_clause, - STATE(6355), 5, - sym_from_clause, - sym_join_clause, - sym_let_clause, - sym_order_by_clause, - sym_where_clause, - STATE(6189), 9, + STATE(6124), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -725862,7 +721223,31 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [253775] = 23, + ACTIONS(9178), 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, + [249266] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -725883,36 +721268,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9208), 1, - anon_sym_where, - ACTIONS(9210), 1, - anon_sym_from, - ACTIONS(9212), 1, - anon_sym_join, - ACTIONS(9214), 1, - anon_sym_let, - ACTIONS(9216), 1, - anon_sym_orderby, - ACTIONS(9294), 1, - anon_sym_group, - ACTIONS(9296), 1, - anon_sym_select, - STATE(3924), 1, - sym__select_or_group_clause, - STATE(6254), 1, - aux_sym__query_body_repeat1, - STATE(6363), 1, - sym__query_clause, - STATE(3325), 2, - sym_group_clause, - sym_select_clause, - STATE(6355), 5, - sym_from_clause, - sym_join_clause, - sym_let_clause, - sym_order_by_clause, - sym_where_clause, - STATE(6190), 9, + ACTIONS(9140), 7, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_GT_GT, + STATE(6125), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -725922,7 +721286,24 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [253858] = 23, + ACTIONS(9144), 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, + [249335] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -725943,36 +721324,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9208), 1, - anon_sym_where, - ACTIONS(9210), 1, - anon_sym_from, - ACTIONS(9212), 1, - anon_sym_join, - ACTIONS(9214), 1, - anon_sym_let, - ACTIONS(9216), 1, - anon_sym_orderby, - ACTIONS(9294), 1, - anon_sym_group, - ACTIONS(9296), 1, - anon_sym_select, - STATE(3302), 1, - sym__select_or_group_clause, - STATE(6192), 1, - aux_sym__query_body_repeat1, - STATE(6363), 1, - sym__query_clause, - STATE(3325), 2, - sym_group_clause, - sym_select_clause, - STATE(6355), 5, - sym_from_clause, - sym_join_clause, - sym_let_clause, - sym_order_by_clause, - sym_where_clause, - STATE(6191), 9, + ACTIONS(9134), 7, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_GT_GT, + STATE(6126), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -725982,7 +721342,24 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [253941] = 23, + ACTIONS(9138), 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, + [249404] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -726003,36 +721380,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9208), 1, - anon_sym_where, - ACTIONS(9210), 1, - anon_sym_from, - ACTIONS(9212), 1, - anon_sym_join, - ACTIONS(9214), 1, - anon_sym_let, - ACTIONS(9216), 1, - anon_sym_orderby, - ACTIONS(9294), 1, - anon_sym_group, - ACTIONS(9296), 1, - anon_sym_select, - STATE(3351), 1, - sym__select_or_group_clause, - STATE(6254), 1, - aux_sym__query_body_repeat1, - STATE(6363), 1, - sym__query_clause, - STATE(3325), 2, - sym_group_clause, - sym_select_clause, - STATE(6355), 5, - sym_from_clause, - sym_join_clause, - sym_let_clause, - sym_order_by_clause, - sym_where_clause, - STATE(6192), 9, + ACTIONS(9180), 7, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_GT_GT, + STATE(6127), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -726042,7 +721398,24 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [254024] = 23, + ACTIONS(9182), 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, + [249473] = 24, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -726063,36 +721436,38 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9208), 1, + ACTIONS(9184), 1, anon_sym_where, - ACTIONS(9210), 1, + ACTIONS(9186), 1, anon_sym_from, - ACTIONS(9212), 1, + ACTIONS(9188), 1, anon_sym_join, - ACTIONS(9214), 1, + ACTIONS(9190), 1, anon_sym_let, - ACTIONS(9216), 1, + ACTIONS(9192), 1, anon_sym_orderby, - ACTIONS(9286), 1, + ACTIONS(9194), 1, anon_sym_group, - ACTIONS(9288), 1, + ACTIONS(9196), 1, anon_sym_select, - STATE(4625), 1, + STATE(3239), 1, + sym__query_body, + STATE(5056), 1, sym__select_or_group_clause, - STATE(6223), 1, + STATE(6219), 1, aux_sym__query_body_repeat1, - STATE(6363), 1, + STATE(6351), 1, sym__query_clause, - STATE(4586), 2, + STATE(3240), 2, sym_group_clause, sym_select_clause, - STATE(6355), 5, + STATE(6348), 5, sym_from_clause, sym_join_clause, sym_let_clause, sym_order_by_clause, sym_where_clause, - STATE(6193), 9, + STATE(6128), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -726102,7 +721477,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [254107] = 23, + [249559] = 24, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -726123,36 +721498,38 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9208), 1, + ACTIONS(9184), 1, anon_sym_where, - ACTIONS(9210), 1, + ACTIONS(9186), 1, anon_sym_from, - ACTIONS(9212), 1, + ACTIONS(9188), 1, anon_sym_join, - ACTIONS(9214), 1, + ACTIONS(9190), 1, anon_sym_let, - ACTIONS(9216), 1, + ACTIONS(9192), 1, anon_sym_orderby, - ACTIONS(9282), 1, + ACTIONS(9198), 1, anon_sym_group, - ACTIONS(9284), 1, + ACTIONS(9200), 1, anon_sym_select, - STATE(3921), 1, + STATE(3106), 1, + sym__query_body, + STATE(5619), 1, sym__select_or_group_clause, - STATE(6254), 1, + STATE(6196), 1, aux_sym__query_body_repeat1, - STATE(6363), 1, + STATE(6351), 1, sym__query_clause, - STATE(3888), 2, + STATE(2959), 2, sym_group_clause, sym_select_clause, - STATE(6355), 5, + STATE(6348), 5, sym_from_clause, sym_join_clause, sym_let_clause, sym_order_by_clause, sym_where_clause, - STATE(6194), 9, + STATE(6129), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -726162,7 +721539,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [254190] = 23, + [249645] = 24, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -726183,36 +721560,38 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9208), 1, + ACTIONS(9184), 1, anon_sym_where, - ACTIONS(9210), 1, + ACTIONS(9186), 1, anon_sym_from, - ACTIONS(9212), 1, + ACTIONS(9188), 1, anon_sym_join, - ACTIONS(9214), 1, + ACTIONS(9190), 1, anon_sym_let, - ACTIONS(9216), 1, + ACTIONS(9192), 1, anon_sym_orderby, - ACTIONS(9302), 1, + ACTIONS(9198), 1, anon_sym_group, - ACTIONS(9304), 1, + ACTIONS(9200), 1, anon_sym_select, - STATE(3688), 1, + STATE(2960), 1, + sym__query_body, + STATE(5619), 1, sym__select_or_group_clause, - STATE(6254), 1, + STATE(6196), 1, aux_sym__query_body_repeat1, - STATE(6363), 1, + STATE(6351), 1, sym__query_clause, - STATE(3888), 2, + STATE(2959), 2, sym_group_clause, sym_select_clause, - STATE(6355), 5, + STATE(6348), 5, sym_from_clause, sym_join_clause, sym_let_clause, sym_order_by_clause, sym_where_clause, - STATE(6195), 9, + STATE(6130), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -726222,7 +721601,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [254273] = 23, + [249731] = 24, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -726243,36 +721622,38 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9208), 1, + ACTIONS(9184), 1, anon_sym_where, - ACTIONS(9210), 1, + ACTIONS(9186), 1, anon_sym_from, - ACTIONS(9212), 1, + ACTIONS(9188), 1, anon_sym_join, - ACTIONS(9214), 1, + ACTIONS(9190), 1, anon_sym_let, - ACTIONS(9216), 1, + ACTIONS(9192), 1, anon_sym_orderby, - ACTIONS(9302), 1, + ACTIONS(9202), 1, anon_sym_group, - ACTIONS(9304), 1, + ACTIONS(9204), 1, anon_sym_select, - STATE(3745), 1, + STATE(2960), 1, + sym__query_body, + STATE(5621), 1, sym__select_or_group_clause, - STATE(6197), 1, + STATE(6214), 1, aux_sym__query_body_repeat1, - STATE(6363), 1, + STATE(6351), 1, sym__query_clause, - STATE(3888), 2, + STATE(2959), 2, sym_group_clause, sym_select_clause, - STATE(6355), 5, + STATE(6348), 5, sym_from_clause, sym_join_clause, sym_let_clause, sym_order_by_clause, sym_where_clause, - STATE(6196), 9, + STATE(6131), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -726282,7 +721663,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [254356] = 23, + [249817] = 24, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -726303,36 +721684,38 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9208), 1, + ACTIONS(9184), 1, anon_sym_where, - ACTIONS(9210), 1, + ACTIONS(9186), 1, anon_sym_from, - ACTIONS(9212), 1, + ACTIONS(9188), 1, anon_sym_join, - ACTIONS(9214), 1, + ACTIONS(9190), 1, anon_sym_let, - ACTIONS(9216), 1, + ACTIONS(9192), 1, anon_sym_orderby, - ACTIONS(9302), 1, + ACTIONS(9206), 1, anon_sym_group, - ACTIONS(9304), 1, + ACTIONS(9208), 1, anon_sym_select, - STATE(3753), 1, + STATE(3396), 1, + sym__query_body, + STATE(5066), 1, sym__select_or_group_clause, - STATE(6254), 1, + STATE(6227), 1, aux_sym__query_body_repeat1, - STATE(6363), 1, + STATE(6351), 1, sym__query_clause, - STATE(3888), 2, + STATE(3240), 2, sym_group_clause, sym_select_clause, - STATE(6355), 5, + STATE(6348), 5, sym_from_clause, sym_join_clause, sym_let_clause, sym_order_by_clause, sym_where_clause, - STATE(6197), 9, + STATE(6132), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -726342,7 +721725,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [254439] = 23, + [249903] = 24, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -726363,36 +721746,38 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9208), 1, + ACTIONS(9184), 1, anon_sym_where, - ACTIONS(9210), 1, + ACTIONS(9186), 1, anon_sym_from, - ACTIONS(9212), 1, + ACTIONS(9188), 1, anon_sym_join, - ACTIONS(9214), 1, + ACTIONS(9190), 1, anon_sym_let, - ACTIONS(9216), 1, + ACTIONS(9192), 1, anon_sym_orderby, - ACTIONS(9218), 1, + ACTIONS(9210), 1, anon_sym_group, - ACTIONS(9220), 1, + ACTIONS(9212), 1, anon_sym_select, - STATE(4236), 1, + STATE(4585), 1, + sym__query_body, + STATE(4952), 1, sym__select_or_group_clause, - STATE(6254), 1, + STATE(6218), 1, aux_sym__query_body_repeat1, - STATE(6363), 1, + STATE(6351), 1, sym__query_clause, - STATE(2971), 2, + STATE(4586), 2, sym_group_clause, sym_select_clause, - STATE(6355), 5, + STATE(6348), 5, sym_from_clause, sym_join_clause, sym_let_clause, sym_order_by_clause, sym_where_clause, - STATE(6198), 9, + STATE(6133), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -726402,7 +721787,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [254522] = 23, + [249989] = 24, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -726423,36 +721808,38 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9208), 1, + ACTIONS(9184), 1, anon_sym_where, - ACTIONS(9210), 1, + ACTIONS(9186), 1, anon_sym_from, - ACTIONS(9212), 1, + ACTIONS(9188), 1, anon_sym_join, - ACTIONS(9214), 1, + ACTIONS(9190), 1, anon_sym_let, - ACTIONS(9216), 1, + ACTIONS(9192), 1, anon_sym_orderby, - ACTIONS(9226), 1, + ACTIONS(9214), 1, anon_sym_group, - ACTIONS(9228), 1, + ACTIONS(9216), 1, anon_sym_select, - STATE(4783), 1, + STATE(3106), 1, + sym__query_body, + STATE(4148), 1, sym__select_or_group_clause, - STATE(6254), 1, + STATE(6213), 1, aux_sym__query_body_repeat1, - STATE(6363), 1, + STATE(6351), 1, sym__query_clause, - STATE(3325), 2, + STATE(2959), 2, sym_group_clause, sym_select_clause, - STATE(6355), 5, + STATE(6348), 5, sym_from_clause, sym_join_clause, sym_let_clause, sym_order_by_clause, sym_where_clause, - STATE(6199), 9, + STATE(6134), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -726462,7 +721849,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [254605] = 23, + [250075] = 24, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -726483,36 +721870,38 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9208), 1, + ACTIONS(9184), 1, anon_sym_where, - ACTIONS(9210), 1, + ACTIONS(9186), 1, anon_sym_from, - ACTIONS(9212), 1, + ACTIONS(9188), 1, anon_sym_join, - ACTIONS(9214), 1, + ACTIONS(9190), 1, anon_sym_let, - ACTIONS(9216), 1, + ACTIONS(9192), 1, anon_sym_orderby, - ACTIONS(9226), 1, + ACTIONS(9218), 1, anon_sym_group, - ACTIONS(9228), 1, + ACTIONS(9220), 1, anon_sym_select, - STATE(3302), 1, + STATE(2960), 1, + sym__query_body, + STATE(4085), 1, sym__select_or_group_clause, - STATE(6201), 1, + STATE(6205), 1, aux_sym__query_body_repeat1, - STATE(6363), 1, + STATE(6351), 1, sym__query_clause, - STATE(3325), 2, + STATE(2959), 2, sym_group_clause, sym_select_clause, - STATE(6355), 5, + STATE(6348), 5, sym_from_clause, sym_join_clause, sym_let_clause, sym_order_by_clause, sym_where_clause, - STATE(6200), 9, + STATE(6135), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -726522,7 +721911,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [254688] = 23, + [250161] = 24, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -726543,36 +721932,38 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9208), 1, + ACTIONS(9184), 1, anon_sym_where, - ACTIONS(9210), 1, + ACTIONS(9186), 1, anon_sym_from, - ACTIONS(9212), 1, + ACTIONS(9188), 1, anon_sym_join, - ACTIONS(9214), 1, + ACTIONS(9190), 1, anon_sym_let, - ACTIONS(9216), 1, + ACTIONS(9192), 1, anon_sym_orderby, - ACTIONS(9226), 1, + ACTIONS(9222), 1, anon_sym_group, - ACTIONS(9228), 1, + ACTIONS(9224), 1, anon_sym_select, - STATE(3351), 1, + STATE(3239), 1, + sym__query_body, + STATE(5091), 1, sym__select_or_group_clause, - STATE(6254), 1, + STATE(6209), 1, aux_sym__query_body_repeat1, - STATE(6363), 1, + STATE(6351), 1, sym__query_clause, - STATE(3325), 2, + STATE(3240), 2, sym_group_clause, sym_select_clause, - STATE(6355), 5, + STATE(6348), 5, sym_from_clause, sym_join_clause, sym_let_clause, sym_order_by_clause, sym_where_clause, - STATE(6201), 9, + STATE(6136), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -726582,7 +721973,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [254771] = 23, + [250247] = 24, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -726603,36 +721994,38 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9208), 1, + ACTIONS(9184), 1, anon_sym_where, - ACTIONS(9210), 1, + ACTIONS(9186), 1, anon_sym_from, - ACTIONS(9212), 1, + ACTIONS(9188), 1, anon_sym_join, - ACTIONS(9214), 1, + ACTIONS(9190), 1, anon_sym_let, - ACTIONS(9216), 1, + ACTIONS(9192), 1, anon_sym_orderby, - ACTIONS(9262), 1, + ACTIONS(9226), 1, anon_sym_group, - ACTIONS(9264), 1, + ACTIONS(9228), 1, anon_sym_select, - STATE(2982), 1, + STATE(3106), 1, + sym__query_body, + STATE(5329), 1, sym__select_or_group_clause, - STATE(6209), 1, + STATE(6195), 1, aux_sym__query_body_repeat1, - STATE(6363), 1, + STATE(6351), 1, sym__query_clause, - STATE(2971), 2, + STATE(2959), 2, sym_group_clause, sym_select_clause, - STATE(6355), 5, + STATE(6348), 5, sym_from_clause, sym_join_clause, sym_let_clause, sym_order_by_clause, sym_where_clause, - STATE(6202), 9, + STATE(6137), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -726642,7 +722035,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [254854] = 23, + [250333] = 24, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -726663,36 +722056,38 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9208), 1, + ACTIONS(9184), 1, anon_sym_where, - ACTIONS(9210), 1, + ACTIONS(9186), 1, anon_sym_from, - ACTIONS(9212), 1, + ACTIONS(9188), 1, anon_sym_join, - ACTIONS(9214), 1, + ACTIONS(9190), 1, anon_sym_let, - ACTIONS(9216), 1, + ACTIONS(9192), 1, anon_sym_orderby, - ACTIONS(9282), 1, + ACTIONS(9214), 1, anon_sym_group, - ACTIONS(9284), 1, + ACTIONS(9216), 1, anon_sym_select, - STATE(3745), 1, + STATE(2960), 1, + sym__query_body, + STATE(4148), 1, sym__select_or_group_clause, - STATE(6204), 1, + STATE(6213), 1, aux_sym__query_body_repeat1, - STATE(6363), 1, + STATE(6351), 1, sym__query_clause, - STATE(3888), 2, + STATE(2959), 2, sym_group_clause, sym_select_clause, - STATE(6355), 5, + STATE(6348), 5, sym_from_clause, sym_join_clause, sym_let_clause, sym_order_by_clause, sym_where_clause, - STATE(6203), 9, + STATE(6138), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -726702,7 +722097,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [254937] = 23, + [250419] = 24, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -726723,36 +722118,38 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9208), 1, + ACTIONS(9184), 1, anon_sym_where, - ACTIONS(9210), 1, + ACTIONS(9186), 1, anon_sym_from, - ACTIONS(9212), 1, + ACTIONS(9188), 1, anon_sym_join, - ACTIONS(9214), 1, + ACTIONS(9190), 1, anon_sym_let, - ACTIONS(9216), 1, + ACTIONS(9192), 1, anon_sym_orderby, - ACTIONS(9282), 1, + ACTIONS(9230), 1, anon_sym_group, - ACTIONS(9284), 1, + ACTIONS(9232), 1, anon_sym_select, - STATE(3753), 1, + STATE(3651), 1, sym__select_or_group_clause, - STATE(6254), 1, + STATE(3784), 1, + sym__query_body, + STATE(6179), 1, aux_sym__query_body_repeat1, - STATE(6363), 1, + STATE(6351), 1, sym__query_clause, - STATE(3888), 2, + STATE(3786), 2, sym_group_clause, sym_select_clause, - STATE(6355), 5, + STATE(6348), 5, sym_from_clause, sym_join_clause, sym_let_clause, sym_order_by_clause, sym_where_clause, - STATE(6204), 9, + STATE(6139), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -726762,7 +722159,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [255020] = 23, + [250505] = 24, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -726783,36 +722180,38 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9208), 1, + ACTIONS(9184), 1, anon_sym_where, - ACTIONS(9210), 1, + ACTIONS(9186), 1, anon_sym_from, - ACTIONS(9212), 1, + ACTIONS(9188), 1, anon_sym_join, - ACTIONS(9214), 1, + ACTIONS(9190), 1, anon_sym_let, - ACTIONS(9216), 1, + ACTIONS(9192), 1, anon_sym_orderby, - ACTIONS(9222), 1, + ACTIONS(9234), 1, anon_sym_group, - ACTIONS(9224), 1, + ACTIONS(9236), 1, anon_sym_select, - STATE(4343), 1, + STATE(3396), 1, + sym__query_body, + STATE(4023), 1, sym__select_or_group_clause, - STATE(6254), 1, + STATE(6230), 1, aux_sym__query_body_repeat1, - STATE(6363), 1, + STATE(6351), 1, sym__query_clause, - STATE(3325), 2, + STATE(3240), 2, sym_group_clause, sym_select_clause, - STATE(6355), 5, + STATE(6348), 5, sym_from_clause, sym_join_clause, sym_let_clause, sym_order_by_clause, sym_where_clause, - STATE(6205), 9, + STATE(6140), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -726822,7 +722221,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [255103] = 23, + [250591] = 24, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -726843,36 +722242,38 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9208), 1, + ACTIONS(9184), 1, anon_sym_where, - ACTIONS(9210), 1, + ACTIONS(9186), 1, anon_sym_from, - ACTIONS(9212), 1, + ACTIONS(9188), 1, anon_sym_join, - ACTIONS(9214), 1, + ACTIONS(9190), 1, anon_sym_let, - ACTIONS(9216), 1, + ACTIONS(9192), 1, anon_sym_orderby, - ACTIONS(9222), 1, + ACTIONS(9206), 1, anon_sym_group, - ACTIONS(9224), 1, + ACTIONS(9208), 1, anon_sym_select, - STATE(3302), 1, + STATE(3239), 1, + sym__query_body, + STATE(5066), 1, sym__select_or_group_clause, - STATE(6207), 1, + STATE(6227), 1, aux_sym__query_body_repeat1, - STATE(6363), 1, + STATE(6351), 1, sym__query_clause, - STATE(3325), 2, + STATE(3240), 2, sym_group_clause, sym_select_clause, - STATE(6355), 5, + STATE(6348), 5, sym_from_clause, sym_join_clause, sym_let_clause, sym_order_by_clause, sym_where_clause, - STATE(6206), 9, + STATE(6141), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -726882,7 +722283,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [255186] = 23, + [250677] = 24, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -726903,36 +722304,38 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9208), 1, + ACTIONS(9184), 1, anon_sym_where, - ACTIONS(9210), 1, + ACTIONS(9186), 1, anon_sym_from, - ACTIONS(9212), 1, + ACTIONS(9188), 1, anon_sym_join, - ACTIONS(9214), 1, + ACTIONS(9190), 1, anon_sym_let, - ACTIONS(9216), 1, + ACTIONS(9192), 1, anon_sym_orderby, - ACTIONS(9222), 1, + ACTIONS(9238), 1, anon_sym_group, - ACTIONS(9224), 1, + ACTIONS(9240), 1, anon_sym_select, - STATE(3351), 1, + STATE(3396), 1, + sym__query_body, + STATE(4768), 1, sym__select_or_group_clause, - STATE(6254), 1, + STATE(6173), 1, aux_sym__query_body_repeat1, - STATE(6363), 1, + STATE(6351), 1, sym__query_clause, - STATE(3325), 2, + STATE(3240), 2, sym_group_clause, sym_select_clause, - STATE(6355), 5, + STATE(6348), 5, sym_from_clause, sym_join_clause, sym_let_clause, sym_order_by_clause, sym_where_clause, - STATE(6207), 9, + STATE(6142), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -726942,7 +722345,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [255269] = 23, + [250763] = 24, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -726963,36 +722366,38 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9208), 1, + ACTIONS(9184), 1, anon_sym_where, - ACTIONS(9210), 1, + ACTIONS(9186), 1, anon_sym_from, - ACTIONS(9212), 1, + ACTIONS(9188), 1, anon_sym_join, - ACTIONS(9214), 1, + ACTIONS(9190), 1, anon_sym_let, - ACTIONS(9216), 1, + ACTIONS(9192), 1, anon_sym_orderby, - ACTIONS(9242), 1, + ACTIONS(9234), 1, anon_sym_group, - ACTIONS(9244), 1, + ACTIONS(9236), 1, anon_sym_select, - STATE(3048), 1, + STATE(3239), 1, + sym__query_body, + STATE(4023), 1, sym__select_or_group_clause, - STATE(6254), 1, + STATE(6230), 1, aux_sym__query_body_repeat1, - STATE(6363), 1, + STATE(6351), 1, sym__query_clause, - STATE(2971), 2, + STATE(3240), 2, sym_group_clause, sym_select_clause, - STATE(6355), 5, + STATE(6348), 5, sym_from_clause, sym_join_clause, sym_let_clause, sym_order_by_clause, sym_where_clause, - STATE(6208), 9, + STATE(6143), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -727002,7 +722407,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [255352] = 23, + [250849] = 24, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -727023,36 +722428,38 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9208), 1, + ACTIONS(9184), 1, anon_sym_where, - ACTIONS(9210), 1, + ACTIONS(9186), 1, anon_sym_from, - ACTIONS(9212), 1, + ACTIONS(9188), 1, anon_sym_join, - ACTIONS(9214), 1, + ACTIONS(9190), 1, anon_sym_let, - ACTIONS(9216), 1, + ACTIONS(9192), 1, anon_sym_orderby, - ACTIONS(9262), 1, + ACTIONS(9242), 1, anon_sym_group, - ACTIONS(9264), 1, + ACTIONS(9244), 1, anon_sym_select, - STATE(3048), 1, + STATE(3396), 1, + sym__query_body, + STATE(4309), 1, sym__select_or_group_clause, - STATE(6254), 1, + STATE(6187), 1, aux_sym__query_body_repeat1, - STATE(6363), 1, + STATE(6351), 1, sym__query_clause, - STATE(2971), 2, + STATE(3240), 2, sym_group_clause, sym_select_clause, - STATE(6355), 5, + STATE(6348), 5, sym_from_clause, sym_join_clause, sym_let_clause, sym_order_by_clause, sym_where_clause, - STATE(6209), 9, + STATE(6144), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -727062,7 +722469,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [255435] = 23, + [250935] = 24, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -727083,36 +722490,38 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9208), 1, + ACTIONS(9184), 1, anon_sym_where, - ACTIONS(9210), 1, + ACTIONS(9186), 1, anon_sym_from, - ACTIONS(9212), 1, + ACTIONS(9188), 1, anon_sym_join, - ACTIONS(9214), 1, + ACTIONS(9190), 1, anon_sym_let, - ACTIONS(9216), 1, + ACTIONS(9192), 1, anon_sym_orderby, - ACTIONS(9218), 1, + ACTIONS(9246), 1, anon_sym_group, - ACTIONS(9220), 1, + ACTIONS(9248), 1, anon_sym_select, - STATE(2982), 1, + STATE(3239), 1, + sym__query_body, + STATE(5074), 1, sym__select_or_group_clause, - STATE(6215), 1, + STATE(6231), 1, aux_sym__query_body_repeat1, - STATE(6363), 1, + STATE(6351), 1, sym__query_clause, - STATE(2971), 2, + STATE(3240), 2, sym_group_clause, sym_select_clause, - STATE(6355), 5, + STATE(6348), 5, sym_from_clause, sym_join_clause, sym_let_clause, sym_order_by_clause, sym_where_clause, - STATE(6210), 9, + STATE(6145), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -727122,7 +722531,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [255518] = 23, + [251021] = 24, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -727143,36 +722552,38 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9208), 1, + ACTIONS(9184), 1, anon_sym_where, - ACTIONS(9210), 1, + ACTIONS(9186), 1, anon_sym_from, - ACTIONS(9212), 1, + ACTIONS(9188), 1, anon_sym_join, - ACTIONS(9214), 1, + ACTIONS(9190), 1, anon_sym_let, - ACTIONS(9216), 1, + ACTIONS(9192), 1, anon_sym_orderby, - ACTIONS(9258), 1, + ACTIONS(9250), 1, anon_sym_group, - ACTIONS(9260), 1, + ACTIONS(9252), 1, anon_sym_select, - STATE(5600), 1, + STATE(3239), 1, + sym__query_body, + STATE(4803), 1, sym__select_or_group_clause, - STATE(6254), 1, + STATE(6204), 1, aux_sym__query_body_repeat1, - STATE(6363), 1, + STATE(6351), 1, sym__query_clause, - STATE(2971), 2, + STATE(3240), 2, sym_group_clause, sym_select_clause, - STATE(6355), 5, + STATE(6348), 5, sym_from_clause, sym_join_clause, sym_let_clause, sym_order_by_clause, sym_where_clause, - STATE(6211), 9, + STATE(6146), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -727182,7 +722593,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [255601] = 23, + [251107] = 24, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -727203,36 +722614,38 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9208), 1, + ACTIONS(9184), 1, anon_sym_where, - ACTIONS(9210), 1, + ACTIONS(9186), 1, anon_sym_from, - ACTIONS(9212), 1, + ACTIONS(9188), 1, anon_sym_join, - ACTIONS(9214), 1, + ACTIONS(9190), 1, anon_sym_let, - ACTIONS(9216), 1, + ACTIONS(9192), 1, anon_sym_orderby, - ACTIONS(9238), 1, + ACTIONS(9202), 1, anon_sym_group, - ACTIONS(9240), 1, + ACTIONS(9204), 1, anon_sym_select, - STATE(3048), 1, + STATE(3106), 1, + sym__query_body, + STATE(5621), 1, sym__select_or_group_clause, - STATE(6254), 1, + STATE(6214), 1, aux_sym__query_body_repeat1, - STATE(6363), 1, + STATE(6351), 1, sym__query_clause, - STATE(2971), 2, + STATE(2959), 2, sym_group_clause, sym_select_clause, - STATE(6355), 5, + STATE(6348), 5, sym_from_clause, sym_join_clause, sym_let_clause, sym_order_by_clause, sym_where_clause, - STATE(6212), 9, + STATE(6147), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -727242,7 +722655,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [255684] = 23, + [251193] = 24, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -727263,36 +722676,38 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9208), 1, + ACTIONS(9184), 1, anon_sym_where, - ACTIONS(9210), 1, + ACTIONS(9186), 1, anon_sym_from, - ACTIONS(9212), 1, + ACTIONS(9188), 1, anon_sym_join, - ACTIONS(9214), 1, + ACTIONS(9190), 1, anon_sym_let, - ACTIONS(9216), 1, + ACTIONS(9192), 1, anon_sym_orderby, - ACTIONS(9258), 1, + ACTIONS(9254), 1, anon_sym_group, - ACTIONS(9260), 1, + ACTIONS(9256), 1, anon_sym_select, - STATE(2982), 1, + STATE(3106), 1, + sym__query_body, + STATE(5614), 1, sym__select_or_group_clause, - STATE(6250), 1, + STATE(6190), 1, aux_sym__query_body_repeat1, - STATE(6363), 1, + STATE(6351), 1, sym__query_clause, - STATE(2971), 2, + STATE(2959), 2, sym_group_clause, sym_select_clause, - STATE(6355), 5, + STATE(6348), 5, sym_from_clause, sym_join_clause, sym_let_clause, sym_order_by_clause, sym_where_clause, - STATE(6213), 9, + STATE(6148), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -727302,7 +722717,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [255767] = 23, + [251279] = 24, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -727323,36 +722738,38 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9208), 1, + ACTIONS(9184), 1, anon_sym_where, - ACTIONS(9210), 1, + ACTIONS(9186), 1, anon_sym_from, - ACTIONS(9212), 1, + ACTIONS(9188), 1, anon_sym_join, - ACTIONS(9214), 1, + ACTIONS(9190), 1, anon_sym_let, - ACTIONS(9216), 1, + ACTIONS(9192), 1, anon_sym_orderby, - ACTIONS(9242), 1, + ACTIONS(9258), 1, anon_sym_group, - ACTIONS(9244), 1, + ACTIONS(9260), 1, anon_sym_select, - STATE(2982), 1, + STATE(2960), 1, + sym__query_body, + STATE(4762), 1, sym__select_or_group_clause, - STATE(6208), 1, + STATE(6172), 1, aux_sym__query_body_repeat1, - STATE(6363), 1, + STATE(6351), 1, sym__query_clause, - STATE(2971), 2, + STATE(2959), 2, sym_group_clause, sym_select_clause, - STATE(6355), 5, + STATE(6348), 5, sym_from_clause, sym_join_clause, sym_let_clause, sym_order_by_clause, sym_where_clause, - STATE(6214), 9, + STATE(6149), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -727362,7 +722779,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [255850] = 23, + [251365] = 24, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -727383,36 +722800,38 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9208), 1, + ACTIONS(9184), 1, anon_sym_where, - ACTIONS(9210), 1, + ACTIONS(9186), 1, anon_sym_from, - ACTIONS(9212), 1, + ACTIONS(9188), 1, anon_sym_join, - ACTIONS(9214), 1, + ACTIONS(9190), 1, anon_sym_let, - ACTIONS(9216), 1, + ACTIONS(9192), 1, anon_sym_orderby, - ACTIONS(9218), 1, + ACTIONS(9194), 1, anon_sym_group, - ACTIONS(9220), 1, + ACTIONS(9196), 1, anon_sym_select, - STATE(3048), 1, + STATE(3396), 1, + sym__query_body, + STATE(5056), 1, sym__select_or_group_clause, - STATE(6254), 1, + STATE(6219), 1, aux_sym__query_body_repeat1, - STATE(6363), 1, + STATE(6351), 1, sym__query_clause, - STATE(2971), 2, + STATE(3240), 2, sym_group_clause, sym_select_clause, - STATE(6355), 5, + STATE(6348), 5, sym_from_clause, sym_join_clause, sym_let_clause, sym_order_by_clause, sym_where_clause, - STATE(6215), 9, + STATE(6150), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -727422,7 +722841,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [255933] = 23, + [251451] = 24, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -727443,36 +722862,38 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9208), 1, + ACTIONS(9184), 1, anon_sym_where, - ACTIONS(9210), 1, + ACTIONS(9186), 1, anon_sym_from, - ACTIONS(9212), 1, + ACTIONS(9188), 1, anon_sym_join, - ACTIONS(9214), 1, + ACTIONS(9190), 1, anon_sym_let, - ACTIONS(9216), 1, + ACTIONS(9192), 1, anon_sym_orderby, - ACTIONS(9230), 1, + ACTIONS(9238), 1, anon_sym_group, - ACTIONS(9232), 1, + ACTIONS(9240), 1, anon_sym_select, - STATE(5642), 1, + STATE(3239), 1, + sym__query_body, + STATE(4768), 1, sym__select_or_group_clause, - STATE(6254), 1, + STATE(6173), 1, aux_sym__query_body_repeat1, - STATE(6363), 1, + STATE(6351), 1, sym__query_clause, - STATE(2971), 2, + STATE(3240), 2, sym_group_clause, sym_select_clause, - STATE(6355), 5, + STATE(6348), 5, sym_from_clause, sym_join_clause, sym_let_clause, sym_order_by_clause, sym_where_clause, - STATE(6216), 9, + STATE(6151), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -727482,7 +722903,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [256016] = 23, + [251537] = 24, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -727503,36 +722924,38 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9208), 1, + ACTIONS(9184), 1, anon_sym_where, - ACTIONS(9210), 1, + ACTIONS(9186), 1, anon_sym_from, - ACTIONS(9212), 1, + ACTIONS(9188), 1, anon_sym_join, - ACTIONS(9214), 1, + ACTIONS(9190), 1, anon_sym_let, - ACTIONS(9216), 1, + ACTIONS(9192), 1, anon_sym_orderby, - ACTIONS(9230), 1, + ACTIONS(9250), 1, anon_sym_group, - ACTIONS(9232), 1, + ACTIONS(9252), 1, anon_sym_select, - STATE(2982), 1, + STATE(3396), 1, + sym__query_body, + STATE(4803), 1, sym__select_or_group_clause, - STATE(6218), 1, + STATE(6204), 1, aux_sym__query_body_repeat1, - STATE(6363), 1, + STATE(6351), 1, sym__query_clause, - STATE(2971), 2, + STATE(3240), 2, sym_group_clause, sym_select_clause, - STATE(6355), 5, + STATE(6348), 5, sym_from_clause, sym_join_clause, sym_let_clause, sym_order_by_clause, sym_where_clause, - STATE(6217), 9, + STATE(6152), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -727542,7 +722965,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [256099] = 23, + [251623] = 24, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -727563,36 +722986,38 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9208), 1, + ACTIONS(9184), 1, anon_sym_where, - ACTIONS(9210), 1, + ACTIONS(9186), 1, anon_sym_from, - ACTIONS(9212), 1, + ACTIONS(9188), 1, anon_sym_join, - ACTIONS(9214), 1, + ACTIONS(9190), 1, anon_sym_let, - ACTIONS(9216), 1, + ACTIONS(9192), 1, anon_sym_orderby, - ACTIONS(9230), 1, + ACTIONS(9218), 1, anon_sym_group, - ACTIONS(9232), 1, + ACTIONS(9220), 1, anon_sym_select, - STATE(3048), 1, + STATE(3106), 1, + sym__query_body, + STATE(4085), 1, sym__select_or_group_clause, - STATE(6254), 1, + STATE(6205), 1, aux_sym__query_body_repeat1, - STATE(6363), 1, + STATE(6351), 1, sym__query_clause, - STATE(2971), 2, + STATE(2959), 2, sym_group_clause, sym_select_clause, - STATE(6355), 5, + STATE(6348), 5, sym_from_clause, sym_join_clause, sym_let_clause, sym_order_by_clause, sym_where_clause, - STATE(6218), 9, + STATE(6153), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -727602,7 +723027,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [256182] = 23, + [251709] = 24, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -727623,36 +723048,38 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9208), 1, + ACTIONS(9184), 1, anon_sym_where, - ACTIONS(9210), 1, + ACTIONS(9186), 1, anon_sym_from, - ACTIONS(9212), 1, + ACTIONS(9188), 1, anon_sym_join, - ACTIONS(9214), 1, + ACTIONS(9190), 1, anon_sym_let, - ACTIONS(9216), 1, + ACTIONS(9192), 1, anon_sym_orderby, - ACTIONS(9254), 1, + ACTIONS(9246), 1, anon_sym_group, - ACTIONS(9256), 1, + ACTIONS(9248), 1, anon_sym_select, - STATE(4494), 1, + STATE(3396), 1, + sym__query_body, + STATE(5074), 1, sym__select_or_group_clause, - STATE(6254), 1, + STATE(6231), 1, aux_sym__query_body_repeat1, - STATE(6363), 1, + STATE(6351), 1, sym__query_clause, - STATE(4586), 2, + STATE(3240), 2, sym_group_clause, sym_select_clause, - STATE(6355), 5, + STATE(6348), 5, sym_from_clause, sym_join_clause, sym_let_clause, sym_order_by_clause, sym_where_clause, - STATE(6219), 9, + STATE(6154), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -727662,7 +723089,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [256265] = 23, + [251795] = 24, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -727683,36 +723110,38 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9208), 1, + ACTIONS(9184), 1, anon_sym_where, - ACTIONS(9210), 1, + ACTIONS(9186), 1, anon_sym_from, - ACTIONS(9212), 1, + ACTIONS(9188), 1, anon_sym_join, - ACTIONS(9214), 1, + ACTIONS(9190), 1, anon_sym_let, - ACTIONS(9216), 1, + ACTIONS(9192), 1, anon_sym_orderby, - ACTIONS(9254), 1, + ACTIONS(9222), 1, anon_sym_group, - ACTIONS(9256), 1, + ACTIONS(9224), 1, anon_sym_select, - STATE(4625), 1, + STATE(3396), 1, + sym__query_body, + STATE(5091), 1, sym__select_or_group_clause, - STATE(6221), 1, + STATE(6209), 1, aux_sym__query_body_repeat1, - STATE(6363), 1, + STATE(6351), 1, sym__query_clause, - STATE(4586), 2, + STATE(3240), 2, sym_group_clause, sym_select_clause, - STATE(6355), 5, + STATE(6348), 5, sym_from_clause, sym_join_clause, sym_let_clause, sym_order_by_clause, sym_where_clause, - STATE(6220), 9, + STATE(6155), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -727722,7 +723151,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [256348] = 23, + [251881] = 24, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -727743,36 +723172,38 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9208), 1, + ACTIONS(9184), 1, anon_sym_where, - ACTIONS(9210), 1, + ACTIONS(9186), 1, anon_sym_from, - ACTIONS(9212), 1, + ACTIONS(9188), 1, anon_sym_join, - ACTIONS(9214), 1, + ACTIONS(9190), 1, anon_sym_let, - ACTIONS(9216), 1, + ACTIONS(9192), 1, anon_sym_orderby, - ACTIONS(9254), 1, + ACTIONS(9262), 1, anon_sym_group, - ACTIONS(9256), 1, + ACTIONS(9264), 1, anon_sym_select, - STATE(4658), 1, + STATE(2960), 1, + sym__query_body, + STATE(5605), 1, sym__select_or_group_clause, - STATE(6254), 1, + STATE(6184), 1, aux_sym__query_body_repeat1, - STATE(6363), 1, + STATE(6351), 1, sym__query_clause, - STATE(4586), 2, + STATE(2959), 2, sym_group_clause, sym_select_clause, - STATE(6355), 5, + STATE(6348), 5, sym_from_clause, sym_join_clause, sym_let_clause, sym_order_by_clause, sym_where_clause, - STATE(6221), 9, + STATE(6156), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -727782,7 +723213,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [256431] = 23, + [251967] = 24, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -727803,36 +723234,38 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9208), 1, + ACTIONS(9184), 1, anon_sym_where, - ACTIONS(9210), 1, + ACTIONS(9186), 1, anon_sym_from, - ACTIONS(9212), 1, + ACTIONS(9188), 1, anon_sym_join, - ACTIONS(9214), 1, + ACTIONS(9190), 1, anon_sym_let, - ACTIONS(9216), 1, + ACTIONS(9192), 1, anon_sym_orderby, - ACTIONS(9290), 1, + ACTIONS(9266), 1, anon_sym_group, - ACTIONS(9292), 1, + ACTIONS(9268), 1, anon_sym_select, - STATE(5611), 1, + STATE(3784), 1, + sym__query_body, + STATE(3902), 1, sym__select_or_group_clause, - STATE(6254), 1, + STATE(6185), 1, aux_sym__query_body_repeat1, - STATE(6363), 1, + STATE(6351), 1, sym__query_clause, - STATE(2971), 2, + STATE(3786), 2, sym_group_clause, sym_select_clause, - STATE(6355), 5, + STATE(6348), 5, sym_from_clause, sym_join_clause, sym_let_clause, sym_order_by_clause, sym_where_clause, - STATE(6222), 9, + STATE(6157), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -727842,7 +723275,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [256514] = 23, + [252053] = 24, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -727863,36 +723296,38 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9208), 1, + ACTIONS(9184), 1, anon_sym_where, - ACTIONS(9210), 1, + ACTIONS(9186), 1, anon_sym_from, - ACTIONS(9212), 1, + ACTIONS(9188), 1, anon_sym_join, - ACTIONS(9214), 1, + ACTIONS(9190), 1, anon_sym_let, - ACTIONS(9216), 1, + ACTIONS(9192), 1, anon_sym_orderby, - ACTIONS(9286), 1, + ACTIONS(9270), 1, anon_sym_group, - ACTIONS(9288), 1, + ACTIONS(9272), 1, anon_sym_select, - STATE(4658), 1, + STATE(3106), 1, + sym__query_body, + STATE(4221), 1, sym__select_or_group_clause, - STATE(6254), 1, + STATE(6199), 1, aux_sym__query_body_repeat1, - STATE(6363), 1, + STATE(6351), 1, sym__query_clause, - STATE(4586), 2, + STATE(2959), 2, sym_group_clause, sym_select_clause, - STATE(6355), 5, + STATE(6348), 5, sym_from_clause, sym_join_clause, sym_let_clause, sym_order_by_clause, sym_where_clause, - STATE(6223), 9, + STATE(6158), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -727902,7 +723337,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [256597] = 23, + [252139] = 24, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -727923,36 +723358,38 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9208), 1, + ACTIONS(9184), 1, anon_sym_where, - ACTIONS(9210), 1, + ACTIONS(9186), 1, anon_sym_from, - ACTIONS(9212), 1, + ACTIONS(9188), 1, anon_sym_join, - ACTIONS(9214), 1, + ACTIONS(9190), 1, anon_sym_let, - ACTIONS(9216), 1, + ACTIONS(9192), 1, anon_sym_orderby, - ACTIONS(9290), 1, + ACTIONS(9262), 1, anon_sym_group, - ACTIONS(9292), 1, + ACTIONS(9264), 1, anon_sym_select, - STATE(2982), 1, + STATE(3106), 1, + sym__query_body, + STATE(5605), 1, sym__select_or_group_clause, - STATE(6225), 1, + STATE(6184), 1, aux_sym__query_body_repeat1, - STATE(6363), 1, + STATE(6351), 1, sym__query_clause, - STATE(2971), 2, + STATE(2959), 2, sym_group_clause, sym_select_clause, - STATE(6355), 5, + STATE(6348), 5, sym_from_clause, sym_join_clause, sym_let_clause, sym_order_by_clause, sym_where_clause, - STATE(6224), 9, + STATE(6159), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -727962,7 +723399,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [256680] = 23, + [252225] = 24, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -727983,36 +723420,38 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9208), 1, + ACTIONS(9184), 1, anon_sym_where, - ACTIONS(9210), 1, + ACTIONS(9186), 1, anon_sym_from, - ACTIONS(9212), 1, + ACTIONS(9188), 1, anon_sym_join, - ACTIONS(9214), 1, + ACTIONS(9190), 1, anon_sym_let, - ACTIONS(9216), 1, + ACTIONS(9192), 1, anon_sym_orderby, - ACTIONS(9290), 1, + ACTIONS(9274), 1, anon_sym_group, - ACTIONS(9292), 1, + ACTIONS(9276), 1, anon_sym_select, - STATE(3048), 1, + STATE(4465), 1, sym__select_or_group_clause, - STATE(6254), 1, + STATE(4585), 1, + sym__query_body, + STATE(6168), 1, aux_sym__query_body_repeat1, - STATE(6363), 1, + STATE(6351), 1, sym__query_clause, - STATE(2971), 2, + STATE(4586), 2, sym_group_clause, sym_select_clause, - STATE(6355), 5, + STATE(6348), 5, sym_from_clause, sym_join_clause, sym_let_clause, sym_order_by_clause, sym_where_clause, - STATE(6225), 9, + STATE(6160), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -728022,7 +723461,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [256763] = 23, + [252311] = 24, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -728043,36 +723482,38 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9208), 1, + ACTIONS(9184), 1, anon_sym_where, - ACTIONS(9210), 1, + ACTIONS(9186), 1, anon_sym_from, - ACTIONS(9212), 1, + ACTIONS(9188), 1, anon_sym_join, - ACTIONS(9214), 1, + ACTIONS(9190), 1, anon_sym_let, - ACTIONS(9216), 1, + ACTIONS(9192), 1, anon_sym_orderby, - ACTIONS(9238), 1, + ACTIONS(9254), 1, anon_sym_group, - ACTIONS(9240), 1, + ACTIONS(9256), 1, anon_sym_select, - STATE(5467), 1, + STATE(2960), 1, + sym__query_body, + STATE(5614), 1, sym__select_or_group_clause, - STATE(6254), 1, + STATE(6190), 1, aux_sym__query_body_repeat1, - STATE(6363), 1, + STATE(6351), 1, sym__query_clause, - STATE(2971), 2, + STATE(2959), 2, sym_group_clause, sym_select_clause, - STATE(6355), 5, + STATE(6348), 5, sym_from_clause, sym_join_clause, sym_let_clause, sym_order_by_clause, sym_where_clause, - STATE(6226), 9, + STATE(6161), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -728082,7 +723523,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [256846] = 23, + [252397] = 24, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -728103,36 +723544,38 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9208), 1, + ACTIONS(9184), 1, anon_sym_where, - ACTIONS(9210), 1, + ACTIONS(9186), 1, anon_sym_from, - ACTIONS(9212), 1, + ACTIONS(9188), 1, anon_sym_join, - ACTIONS(9214), 1, + ACTIONS(9190), 1, anon_sym_let, - ACTIONS(9216), 1, + ACTIONS(9192), 1, anon_sym_orderby, - ACTIONS(9234), 1, + ACTIONS(9270), 1, anon_sym_group, - ACTIONS(9236), 1, + ACTIONS(9272), 1, anon_sym_select, - STATE(4114), 1, + STATE(2960), 1, + sym__query_body, + STATE(4221), 1, sym__select_or_group_clause, - STATE(6254), 1, + STATE(6199), 1, aux_sym__query_body_repeat1, - STATE(6363), 1, + STATE(6351), 1, sym__query_clause, - STATE(2971), 2, + STATE(2959), 2, sym_group_clause, sym_select_clause, - STATE(6355), 5, + STATE(6348), 5, sym_from_clause, sym_join_clause, sym_let_clause, sym_order_by_clause, sym_where_clause, - STATE(6227), 9, + STATE(6162), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -728142,7 +723585,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [256929] = 23, + [252483] = 24, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -728163,36 +723606,38 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9208), 1, + ACTIONS(9184), 1, anon_sym_where, - ACTIONS(9210), 1, + ACTIONS(9186), 1, anon_sym_from, - ACTIONS(9212), 1, + ACTIONS(9188), 1, anon_sym_join, - ACTIONS(9214), 1, + ACTIONS(9190), 1, anon_sym_let, - ACTIONS(9216), 1, + ACTIONS(9192), 1, anon_sym_orderby, - ACTIONS(9234), 1, + ACTIONS(9258), 1, anon_sym_group, - ACTIONS(9236), 1, + ACTIONS(9260), 1, anon_sym_select, - STATE(2982), 1, + STATE(3106), 1, + sym__query_body, + STATE(4762), 1, sym__select_or_group_clause, - STATE(6229), 1, + STATE(6172), 1, aux_sym__query_body_repeat1, - STATE(6363), 1, + STATE(6351), 1, sym__query_clause, - STATE(2971), 2, + STATE(2959), 2, sym_group_clause, sym_select_clause, - STATE(6355), 5, + STATE(6348), 5, sym_from_clause, sym_join_clause, sym_let_clause, sym_order_by_clause, sym_where_clause, - STATE(6228), 9, + STATE(6163), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -728202,7 +723647,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [257012] = 23, + [252569] = 24, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -728223,36 +723668,38 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9208), 1, + ACTIONS(9184), 1, anon_sym_where, - ACTIONS(9210), 1, + ACTIONS(9186), 1, anon_sym_from, - ACTIONS(9212), 1, + ACTIONS(9188), 1, anon_sym_join, - ACTIONS(9214), 1, + ACTIONS(9190), 1, anon_sym_let, - ACTIONS(9216), 1, + ACTIONS(9192), 1, anon_sym_orderby, - ACTIONS(9234), 1, + ACTIONS(9226), 1, anon_sym_group, - ACTIONS(9236), 1, + ACTIONS(9228), 1, anon_sym_select, - STATE(3048), 1, + STATE(2960), 1, + sym__query_body, + STATE(5329), 1, sym__select_or_group_clause, - STATE(6254), 1, + STATE(6195), 1, aux_sym__query_body_repeat1, - STATE(6363), 1, + STATE(6351), 1, sym__query_clause, - STATE(2971), 2, + STATE(2959), 2, sym_group_clause, sym_select_clause, - STATE(6355), 5, + STATE(6348), 5, sym_from_clause, sym_join_clause, sym_let_clause, sym_order_by_clause, sym_where_clause, - STATE(6229), 9, + STATE(6164), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -728262,7 +723709,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [257095] = 23, + [252655] = 24, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -728283,36 +723730,38 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9208), 1, + ACTIONS(9184), 1, anon_sym_where, - ACTIONS(9210), 1, + ACTIONS(9186), 1, anon_sym_from, - ACTIONS(9212), 1, + ACTIONS(9188), 1, anon_sym_join, - ACTIONS(9214), 1, + ACTIONS(9190), 1, anon_sym_let, - ACTIONS(9216), 1, + ACTIONS(9192), 1, anon_sym_orderby, - ACTIONS(9298), 1, + ACTIONS(9242), 1, anon_sym_group, - ACTIONS(9300), 1, + ACTIONS(9244), 1, anon_sym_select, - STATE(5110), 1, + STATE(3239), 1, + sym__query_body, + STATE(4309), 1, sym__select_or_group_clause, - STATE(6254), 1, + STATE(6187), 1, aux_sym__query_body_repeat1, - STATE(6363), 1, + STATE(6351), 1, sym__query_clause, - STATE(3325), 2, + STATE(3240), 2, sym_group_clause, sym_select_clause, - STATE(6355), 5, + STATE(6348), 5, sym_from_clause, sym_join_clause, sym_let_clause, sym_order_by_clause, sym_where_clause, - STATE(6230), 9, + STATE(6165), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -728322,7 +723771,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [257178] = 23, + [252741] = 24, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -728343,36 +723792,38 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9208), 1, + ACTIONS(9184), 1, anon_sym_where, - ACTIONS(9210), 1, + ACTIONS(9186), 1, anon_sym_from, - ACTIONS(9212), 1, + ACTIONS(9188), 1, anon_sym_join, - ACTIONS(9214), 1, + ACTIONS(9190), 1, anon_sym_let, - ACTIONS(9216), 1, + ACTIONS(9192), 1, anon_sym_orderby, - ACTIONS(9298), 1, + ACTIONS(9278), 1, anon_sym_group, - ACTIONS(9300), 1, + ACTIONS(9280), 1, anon_sym_select, - STATE(3302), 1, + STATE(3239), 1, + sym__query_body, + STATE(5061), 1, sym__select_or_group_clause, - STATE(6232), 1, + STATE(6224), 1, aux_sym__query_body_repeat1, - STATE(6363), 1, + STATE(6351), 1, sym__query_clause, - STATE(3325), 2, + STATE(3240), 2, sym_group_clause, sym_select_clause, - STATE(6355), 5, + STATE(6348), 5, sym_from_clause, sym_join_clause, sym_let_clause, sym_order_by_clause, sym_where_clause, - STATE(6231), 9, + STATE(6166), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -728382,7 +723833,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [257261] = 23, + [252827] = 24, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -728403,36 +723854,38 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9208), 1, + ACTIONS(9184), 1, anon_sym_where, - ACTIONS(9210), 1, + ACTIONS(9186), 1, anon_sym_from, - ACTIONS(9212), 1, + ACTIONS(9188), 1, anon_sym_join, - ACTIONS(9214), 1, + ACTIONS(9190), 1, anon_sym_let, - ACTIONS(9216), 1, + ACTIONS(9192), 1, anon_sym_orderby, - ACTIONS(9298), 1, + ACTIONS(9278), 1, anon_sym_group, - ACTIONS(9300), 1, + ACTIONS(9280), 1, anon_sym_select, - STATE(3351), 1, + STATE(3396), 1, + sym__query_body, + STATE(5061), 1, sym__select_or_group_clause, - STATE(6254), 1, + STATE(6224), 1, aux_sym__query_body_repeat1, - STATE(6363), 1, + STATE(6351), 1, sym__query_clause, - STATE(3325), 2, + STATE(3240), 2, sym_group_clause, sym_select_clause, - STATE(6355), 5, + STATE(6348), 5, sym_from_clause, sym_join_clause, sym_let_clause, sym_order_by_clause, sym_where_clause, - STATE(6232), 9, + STATE(6167), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -728442,7 +723895,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [257344] = 23, + [252913] = 23, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -728463,36 +723916,36 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9208), 1, + ACTIONS(9184), 1, anon_sym_where, - ACTIONS(9210), 1, + ACTIONS(9186), 1, anon_sym_from, - ACTIONS(9212), 1, + ACTIONS(9188), 1, anon_sym_join, - ACTIONS(9214), 1, + ACTIONS(9190), 1, anon_sym_let, - ACTIONS(9216), 1, + ACTIONS(9192), 1, anon_sym_orderby, - ACTIONS(9286), 1, + ACTIONS(9274), 1, anon_sym_group, - ACTIONS(9288), 1, + ACTIONS(9276), 1, anon_sym_select, - STATE(5058), 1, + STATE(4467), 1, sym__select_or_group_clause, - STATE(6254), 1, + STATE(6237), 1, aux_sym__query_body_repeat1, - STATE(6363), 1, + STATE(6351), 1, sym__query_clause, STATE(4586), 2, sym_group_clause, sym_select_clause, - STATE(6355), 5, + STATE(6348), 5, sym_from_clause, sym_join_clause, sym_let_clause, sym_order_by_clause, sym_where_clause, - STATE(6233), 9, + STATE(6168), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -728502,7 +723955,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [257427] = 23, + [252996] = 23, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -728523,36 +723976,36 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9208), 1, + ACTIONS(9184), 1, anon_sym_where, - ACTIONS(9210), 1, + ACTIONS(9186), 1, anon_sym_from, - ACTIONS(9212), 1, + ACTIONS(9188), 1, anon_sym_join, - ACTIONS(9214), 1, + ACTIONS(9190), 1, anon_sym_let, - ACTIONS(9216), 1, + ACTIONS(9192), 1, anon_sym_orderby, - ACTIONS(9250), 1, + ACTIONS(9246), 1, anon_sym_group, - ACTIONS(9252), 1, + ACTIONS(9248), 1, anon_sym_select, - STATE(4828), 1, + STATE(3257), 1, sym__select_or_group_clause, - STATE(6254), 1, + STATE(6233), 1, aux_sym__query_body_repeat1, - STATE(6363), 1, + STATE(6351), 1, sym__query_clause, - STATE(3325), 2, + STATE(3240), 2, sym_group_clause, sym_select_clause, - STATE(6355), 5, + STATE(6348), 5, sym_from_clause, sym_join_clause, sym_let_clause, sym_order_by_clause, sym_where_clause, - STATE(6234), 9, + STATE(6169), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -728562,7 +724015,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [257510] = 23, + [253079] = 23, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -728583,36 +724036,36 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9208), 1, + ACTIONS(9184), 1, anon_sym_where, - ACTIONS(9210), 1, + ACTIONS(9186), 1, anon_sym_from, - ACTIONS(9212), 1, + ACTIONS(9188), 1, anon_sym_join, - ACTIONS(9214), 1, + ACTIONS(9190), 1, anon_sym_let, - ACTIONS(9216), 1, + ACTIONS(9192), 1, anon_sym_orderby, - ACTIONS(9250), 1, + ACTIONS(9234), 1, anon_sym_group, - ACTIONS(9252), 1, + ACTIONS(9236), 1, anon_sym_select, - STATE(3351), 1, + STATE(3257), 1, sym__select_or_group_clause, - STATE(6254), 1, + STATE(6171), 1, aux_sym__query_body_repeat1, - STATE(6363), 1, + STATE(6351), 1, sym__query_clause, - STATE(3325), 2, + STATE(3240), 2, sym_group_clause, sym_select_clause, - STATE(6355), 5, + STATE(6348), 5, sym_from_clause, sym_join_clause, sym_let_clause, sym_order_by_clause, sym_where_clause, - STATE(6235), 9, + STATE(6170), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -728622,7 +724075,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [257593] = 23, + [253162] = 23, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -728643,36 +724096,36 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9208), 1, + ACTIONS(9184), 1, anon_sym_where, - ACTIONS(9210), 1, + ACTIONS(9186), 1, anon_sym_from, - ACTIONS(9212), 1, + ACTIONS(9188), 1, anon_sym_join, - ACTIONS(9214), 1, + ACTIONS(9190), 1, anon_sym_let, - ACTIONS(9216), 1, + ACTIONS(9192), 1, anon_sym_orderby, - ACTIONS(9246), 1, + ACTIONS(9234), 1, anon_sym_group, - ACTIONS(9248), 1, + ACTIONS(9236), 1, anon_sym_select, - STATE(5620), 1, + STATE(3264), 1, sym__select_or_group_clause, - STATE(6254), 1, + STATE(6237), 1, aux_sym__query_body_repeat1, - STATE(6363), 1, + STATE(6351), 1, sym__query_clause, - STATE(2971), 2, + STATE(3240), 2, sym_group_clause, sym_select_clause, - STATE(6355), 5, + STATE(6348), 5, sym_from_clause, sym_join_clause, sym_let_clause, sym_order_by_clause, sym_where_clause, - STATE(6236), 9, + STATE(6171), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -728682,7 +724135,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [257676] = 23, + [253245] = 23, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -728703,36 +724156,36 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9208), 1, + ACTIONS(9184), 1, anon_sym_where, - ACTIONS(9210), 1, + ACTIONS(9186), 1, anon_sym_from, - ACTIONS(9212), 1, + ACTIONS(9188), 1, anon_sym_join, - ACTIONS(9214), 1, + ACTIONS(9190), 1, anon_sym_let, - ACTIONS(9216), 1, + ACTIONS(9192), 1, anon_sym_orderby, - ACTIONS(9246), 1, + ACTIONS(9258), 1, anon_sym_group, - ACTIONS(9248), 1, + ACTIONS(9260), 1, anon_sym_select, - STATE(2982), 1, + STATE(4620), 1, sym__select_or_group_clause, - STATE(6238), 1, + STATE(6237), 1, aux_sym__query_body_repeat1, - STATE(6363), 1, + STATE(6351), 1, sym__query_clause, - STATE(2971), 2, + STATE(2959), 2, sym_group_clause, sym_select_clause, - STATE(6355), 5, + STATE(6348), 5, sym_from_clause, sym_join_clause, sym_let_clause, sym_order_by_clause, sym_where_clause, - STATE(6237), 9, + STATE(6172), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -728742,7 +724195,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [257759] = 23, + [253328] = 23, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -728763,36 +724216,36 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9208), 1, + ACTIONS(9184), 1, anon_sym_where, - ACTIONS(9210), 1, + ACTIONS(9186), 1, anon_sym_from, - ACTIONS(9212), 1, + ACTIONS(9188), 1, anon_sym_join, - ACTIONS(9214), 1, + ACTIONS(9190), 1, anon_sym_let, - ACTIONS(9216), 1, + ACTIONS(9192), 1, anon_sym_orderby, - ACTIONS(9246), 1, + ACTIONS(9238), 1, anon_sym_group, - ACTIONS(9248), 1, + ACTIONS(9240), 1, anon_sym_select, - STATE(3048), 1, + STATE(4770), 1, sym__select_or_group_clause, - STATE(6254), 1, + STATE(6237), 1, aux_sym__query_body_repeat1, - STATE(6363), 1, + STATE(6351), 1, sym__query_clause, - STATE(2971), 2, + STATE(3240), 2, sym_group_clause, sym_select_clause, - STATE(6355), 5, + STATE(6348), 5, sym_from_clause, sym_join_clause, sym_let_clause, sym_order_by_clause, sym_where_clause, - STATE(6238), 9, + STATE(6173), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -728802,7 +724255,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [257842] = 23, + [253411] = 23, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -728823,36 +724276,36 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9208), 1, + ACTIONS(9184), 1, anon_sym_where, - ACTIONS(9210), 1, + ACTIONS(9186), 1, anon_sym_from, - ACTIONS(9212), 1, + ACTIONS(9188), 1, anon_sym_join, - ACTIONS(9214), 1, + ACTIONS(9190), 1, anon_sym_let, - ACTIONS(9216), 1, + ACTIONS(9192), 1, anon_sym_orderby, - ACTIONS(9262), 1, + ACTIONS(9258), 1, anon_sym_group, - ACTIONS(9264), 1, + ACTIONS(9260), 1, anon_sym_select, - STATE(4595), 1, + STATE(2997), 1, sym__select_or_group_clause, - STATE(6254), 1, + STATE(6175), 1, aux_sym__query_body_repeat1, - STATE(6363), 1, + STATE(6351), 1, sym__query_clause, - STATE(2971), 2, + STATE(2959), 2, sym_group_clause, sym_select_clause, - STATE(6355), 5, + STATE(6348), 5, sym_from_clause, sym_join_clause, sym_let_clause, sym_order_by_clause, sym_where_clause, - STATE(6239), 9, + STATE(6174), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -728862,7 +724315,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [257925] = 23, + [253494] = 23, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -728883,36 +724336,36 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9208), 1, + ACTIONS(9184), 1, anon_sym_where, - ACTIONS(9210), 1, + ACTIONS(9186), 1, anon_sym_from, - ACTIONS(9212), 1, + ACTIONS(9188), 1, anon_sym_join, - ACTIONS(9214), 1, + ACTIONS(9190), 1, anon_sym_let, - ACTIONS(9216), 1, + ACTIONS(9192), 1, anon_sym_orderby, - ACTIONS(9270), 1, + ACTIONS(9258), 1, anon_sym_group, - ACTIONS(9272), 1, + ACTIONS(9260), 1, anon_sym_select, - STATE(5081), 1, + STATE(2957), 1, sym__select_or_group_clause, - STATE(6254), 1, + STATE(6237), 1, aux_sym__query_body_repeat1, - STATE(6363), 1, + STATE(6351), 1, sym__query_clause, - STATE(3325), 2, + STATE(2959), 2, sym_group_clause, sym_select_clause, - STATE(6355), 5, + STATE(6348), 5, sym_from_clause, sym_join_clause, sym_let_clause, sym_order_by_clause, sym_where_clause, - STATE(6240), 9, + STATE(6175), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -728922,7 +724375,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [258008] = 23, + [253577] = 23, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -728943,36 +724396,36 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9208), 1, + ACTIONS(9184), 1, anon_sym_where, - ACTIONS(9210), 1, + ACTIONS(9186), 1, anon_sym_from, - ACTIONS(9212), 1, + ACTIONS(9188), 1, anon_sym_join, - ACTIONS(9214), 1, + ACTIONS(9190), 1, anon_sym_let, - ACTIONS(9216), 1, + ACTIONS(9192), 1, anon_sym_orderby, - ACTIONS(9270), 1, + ACTIONS(9238), 1, anon_sym_group, - ACTIONS(9272), 1, + ACTIONS(9240), 1, anon_sym_select, - STATE(3302), 1, + STATE(3257), 1, sym__select_or_group_clause, - STATE(6242), 1, + STATE(6177), 1, aux_sym__query_body_repeat1, - STATE(6363), 1, + STATE(6351), 1, sym__query_clause, - STATE(3325), 2, + STATE(3240), 2, sym_group_clause, sym_select_clause, - STATE(6355), 5, + STATE(6348), 5, sym_from_clause, sym_join_clause, sym_let_clause, sym_order_by_clause, sym_where_clause, - STATE(6241), 9, + STATE(6176), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -728982,7 +724435,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [258091] = 23, + [253660] = 23, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -729003,36 +724456,36 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9208), 1, + ACTIONS(9184), 1, anon_sym_where, - ACTIONS(9210), 1, + ACTIONS(9186), 1, anon_sym_from, - ACTIONS(9212), 1, + ACTIONS(9188), 1, anon_sym_join, - ACTIONS(9214), 1, + ACTIONS(9190), 1, anon_sym_let, - ACTIONS(9216), 1, + ACTIONS(9192), 1, anon_sym_orderby, - ACTIONS(9270), 1, + ACTIONS(9238), 1, anon_sym_group, - ACTIONS(9272), 1, + ACTIONS(9240), 1, anon_sym_select, - STATE(3351), 1, + STATE(3264), 1, sym__select_or_group_clause, - STATE(6254), 1, + STATE(6237), 1, aux_sym__query_body_repeat1, - STATE(6363), 1, + STATE(6351), 1, sym__query_clause, - STATE(3325), 2, + STATE(3240), 2, sym_group_clause, sym_select_clause, - STATE(6355), 5, + STATE(6348), 5, sym_from_clause, sym_join_clause, sym_let_clause, sym_order_by_clause, sym_where_clause, - STATE(6242), 9, + STATE(6177), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -729042,7 +724495,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [258174] = 23, + [253743] = 23, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -729063,36 +724516,36 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9208), 1, + ACTIONS(9184), 1, anon_sym_where, - ACTIONS(9210), 1, + ACTIONS(9186), 1, anon_sym_from, - ACTIONS(9212), 1, + ACTIONS(9188), 1, anon_sym_join, - ACTIONS(9214), 1, + ACTIONS(9190), 1, anon_sym_let, - ACTIONS(9216), 1, + ACTIONS(9192), 1, anon_sym_orderby, - ACTIONS(9278), 1, + ACTIONS(9214), 1, anon_sym_group, - ACTIONS(9280), 1, + ACTIONS(9216), 1, anon_sym_select, - STATE(5086), 1, + STATE(2957), 1, sym__select_or_group_clause, - STATE(6254), 1, + STATE(6237), 1, aux_sym__query_body_repeat1, - STATE(6363), 1, + STATE(6351), 1, sym__query_clause, - STATE(3325), 2, + STATE(2959), 2, sym_group_clause, sym_select_clause, - STATE(6355), 5, + STATE(6348), 5, sym_from_clause, sym_join_clause, sym_let_clause, sym_order_by_clause, sym_where_clause, - STATE(6243), 9, + STATE(6178), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -729102,7 +724555,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [258257] = 23, + [253826] = 23, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -729123,36 +724576,36 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9208), 1, + ACTIONS(9184), 1, anon_sym_where, - ACTIONS(9210), 1, + ACTIONS(9186), 1, anon_sym_from, - ACTIONS(9212), 1, + ACTIONS(9188), 1, anon_sym_join, - ACTIONS(9214), 1, + ACTIONS(9190), 1, anon_sym_let, - ACTIONS(9216), 1, + ACTIONS(9192), 1, anon_sym_orderby, - ACTIONS(9278), 1, + ACTIONS(9230), 1, anon_sym_group, - ACTIONS(9280), 1, + ACTIONS(9232), 1, anon_sym_select, - STATE(3302), 1, + STATE(3662), 1, sym__select_or_group_clause, - STATE(6245), 1, + STATE(6237), 1, aux_sym__query_body_repeat1, - STATE(6363), 1, + STATE(6351), 1, sym__query_clause, - STATE(3325), 2, + STATE(3786), 2, sym_group_clause, sym_select_clause, - STATE(6355), 5, + STATE(6348), 5, sym_from_clause, sym_join_clause, sym_let_clause, sym_order_by_clause, sym_where_clause, - STATE(6244), 9, + STATE(6179), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -729162,7 +724615,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [258340] = 23, + [253909] = 23, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -729183,36 +724636,36 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9208), 1, + ACTIONS(9184), 1, anon_sym_where, - ACTIONS(9210), 1, + ACTIONS(9186), 1, anon_sym_from, - ACTIONS(9212), 1, + ACTIONS(9188), 1, anon_sym_join, - ACTIONS(9214), 1, + ACTIONS(9190), 1, anon_sym_let, - ACTIONS(9216), 1, + ACTIONS(9192), 1, anon_sym_orderby, - ACTIONS(9278), 1, + ACTIONS(9230), 1, anon_sym_group, - ACTIONS(9280), 1, + ACTIONS(9232), 1, anon_sym_select, - STATE(3351), 1, + STATE(3767), 1, sym__select_or_group_clause, - STATE(6254), 1, + STATE(6181), 1, aux_sym__query_body_repeat1, - STATE(6363), 1, + STATE(6351), 1, sym__query_clause, - STATE(3325), 2, + STATE(3786), 2, sym_group_clause, sym_select_clause, - STATE(6355), 5, + STATE(6348), 5, sym_from_clause, sym_join_clause, sym_let_clause, sym_order_by_clause, sym_where_clause, - STATE(6245), 9, + STATE(6180), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -729222,7 +724675,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [258423] = 23, + [253992] = 23, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -729243,36 +724696,36 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9208), 1, + ACTIONS(9184), 1, anon_sym_where, - ACTIONS(9210), 1, + ACTIONS(9186), 1, anon_sym_from, - ACTIONS(9212), 1, + ACTIONS(9188), 1, anon_sym_join, - ACTIONS(9214), 1, + ACTIONS(9190), 1, anon_sym_let, - ACTIONS(9216), 1, + ACTIONS(9192), 1, anon_sym_orderby, - ACTIONS(9238), 1, + ACTIONS(9230), 1, anon_sym_group, - ACTIONS(9240), 1, + ACTIONS(9232), 1, anon_sym_select, - STATE(2982), 1, + STATE(3808), 1, sym__select_or_group_clause, - STATE(6212), 1, + STATE(6237), 1, aux_sym__query_body_repeat1, - STATE(6363), 1, + STATE(6351), 1, sym__query_clause, - STATE(2971), 2, + STATE(3786), 2, sym_group_clause, sym_select_clause, - STATE(6355), 5, + STATE(6348), 5, sym_from_clause, sym_join_clause, sym_let_clause, sym_order_by_clause, sym_where_clause, - STATE(6246), 9, + STATE(6181), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -729282,7 +724735,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [258506] = 23, + [254075] = 23, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -729303,36 +724756,36 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9208), 1, + ACTIONS(9184), 1, anon_sym_where, - ACTIONS(9210), 1, + ACTIONS(9186), 1, anon_sym_from, - ACTIONS(9212), 1, + ACTIONS(9188), 1, anon_sym_join, - ACTIONS(9214), 1, + ACTIONS(9190), 1, anon_sym_let, - ACTIONS(9216), 1, + ACTIONS(9192), 1, anon_sym_orderby, - ACTIONS(9274), 1, + ACTIONS(9210), 1, anon_sym_group, - ACTIONS(9276), 1, + ACTIONS(9212), 1, anon_sym_select, - STATE(5092), 1, + STATE(4660), 1, sym__select_or_group_clause, - STATE(6254), 1, + STATE(6186), 1, aux_sym__query_body_repeat1, - STATE(6363), 1, + STATE(6351), 1, sym__query_clause, - STATE(3325), 2, + STATE(4586), 2, sym_group_clause, sym_select_clause, - STATE(6355), 5, + STATE(6348), 5, sym_from_clause, sym_join_clause, sym_let_clause, sym_order_by_clause, sym_where_clause, - STATE(6247), 9, + STATE(6182), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -729342,7 +724795,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [258589] = 23, + [254158] = 23, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -729363,36 +724816,36 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9208), 1, + ACTIONS(9184), 1, anon_sym_where, - ACTIONS(9210), 1, + ACTIONS(9186), 1, anon_sym_from, - ACTIONS(9212), 1, + ACTIONS(9188), 1, anon_sym_join, - ACTIONS(9214), 1, + ACTIONS(9190), 1, anon_sym_let, - ACTIONS(9216), 1, + ACTIONS(9192), 1, anon_sym_orderby, - ACTIONS(9274), 1, + ACTIONS(9214), 1, anon_sym_group, - ACTIONS(9276), 1, + ACTIONS(9216), 1, anon_sym_select, - STATE(3302), 1, + STATE(2997), 1, sym__select_or_group_clause, - STATE(6249), 1, + STATE(6178), 1, aux_sym__query_body_repeat1, - STATE(6363), 1, + STATE(6351), 1, sym__query_clause, - STATE(3325), 2, + STATE(2959), 2, sym_group_clause, sym_select_clause, - STATE(6355), 5, + STATE(6348), 5, sym_from_clause, sym_join_clause, sym_let_clause, sym_order_by_clause, sym_where_clause, - STATE(6248), 9, + STATE(6183), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -729402,7 +724855,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [258672] = 23, + [254241] = 23, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -729423,36 +724876,36 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9208), 1, + ACTIONS(9184), 1, anon_sym_where, - ACTIONS(9210), 1, + ACTIONS(9186), 1, anon_sym_from, - ACTIONS(9212), 1, + ACTIONS(9188), 1, anon_sym_join, - ACTIONS(9214), 1, + ACTIONS(9190), 1, anon_sym_let, - ACTIONS(9216), 1, + ACTIONS(9192), 1, anon_sym_orderby, - ACTIONS(9274), 1, + ACTIONS(9262), 1, anon_sym_group, - ACTIONS(9276), 1, + ACTIONS(9264), 1, anon_sym_select, - STATE(3351), 1, + STATE(5462), 1, sym__select_or_group_clause, - STATE(6254), 1, + STATE(6237), 1, aux_sym__query_body_repeat1, - STATE(6363), 1, + STATE(6351), 1, sym__query_clause, - STATE(3325), 2, + STATE(2959), 2, sym_group_clause, sym_select_clause, - STATE(6355), 5, + STATE(6348), 5, sym_from_clause, sym_join_clause, sym_let_clause, sym_order_by_clause, sym_where_clause, - STATE(6249), 9, + STATE(6184), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -729462,7 +724915,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [258755] = 23, + [254324] = 23, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -729483,36 +724936,36 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9208), 1, + ACTIONS(9184), 1, anon_sym_where, - ACTIONS(9210), 1, + ACTIONS(9186), 1, anon_sym_from, - ACTIONS(9212), 1, + ACTIONS(9188), 1, anon_sym_join, - ACTIONS(9214), 1, + ACTIONS(9190), 1, anon_sym_let, - ACTIONS(9216), 1, + ACTIONS(9192), 1, anon_sym_orderby, - ACTIONS(9258), 1, + ACTIONS(9266), 1, anon_sym_group, - ACTIONS(9260), 1, + ACTIONS(9268), 1, anon_sym_select, - STATE(3048), 1, + STATE(4004), 1, sym__select_or_group_clause, - STATE(6254), 1, + STATE(6237), 1, aux_sym__query_body_repeat1, - STATE(6363), 1, + STATE(6351), 1, sym__query_clause, - STATE(2971), 2, + STATE(3786), 2, sym_group_clause, sym_select_clause, - STATE(6355), 5, + STATE(6348), 5, sym_from_clause, sym_join_clause, sym_let_clause, sym_order_by_clause, sym_where_clause, - STATE(6250), 9, + STATE(6185), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -729522,7 +724975,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [258838] = 26, + [254407] = 23, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -729543,38 +724996,36 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(3662), 1, - anon_sym_DOT, - ACTIONS(5573), 1, - anon_sym_LBRACK, - ACTIONS(6867), 1, - anon_sym_COLON_COLON, - ACTIONS(8916), 1, - anon_sym_LPAREN, - ACTIONS(9308), 1, - anon_sym_EQ, - ACTIONS(9310), 1, - anon_sym_LBRACE, - ACTIONS(9312), 1, - anon_sym_LT, - ACTIONS(9314), 1, - anon_sym_EQ_GT, - STATE(2183), 1, - sym_type_argument_list, - STATE(2611), 1, - sym_accessor_list, - STATE(6326), 1, - sym_parameter_list, - STATE(6830), 1, - sym_bracketed_argument_list, - STATE(7194), 1, - sym_type_parameter_list, - STATE(7437), 1, - sym_arrow_expression_clause, - ACTIONS(9306), 2, - anon_sym_SEMI, - anon_sym_COMMA, - STATE(6251), 9, + ACTIONS(9184), 1, + anon_sym_where, + ACTIONS(9186), 1, + anon_sym_from, + ACTIONS(9188), 1, + anon_sym_join, + ACTIONS(9190), 1, + anon_sym_let, + ACTIONS(9192), 1, + anon_sym_orderby, + ACTIONS(9210), 1, + anon_sym_group, + ACTIONS(9212), 1, + anon_sym_select, + STATE(4666), 1, + sym__select_or_group_clause, + STATE(6237), 1, + aux_sym__query_body_repeat1, + STATE(6351), 1, + sym__query_clause, + STATE(4586), 2, + sym_group_clause, + sym_select_clause, + STATE(6348), 5, + sym_from_clause, + sym_join_clause, + sym_let_clause, + sym_order_by_clause, + sym_where_clause, + STATE(6186), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -729584,7 +725035,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [258926] = 26, + [254490] = 23, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -729605,38 +725056,36 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(3662), 1, - anon_sym_DOT, - ACTIONS(5573), 1, - anon_sym_LBRACK, - ACTIONS(6867), 1, - anon_sym_COLON_COLON, - ACTIONS(8916), 1, - anon_sym_LPAREN, - ACTIONS(9308), 1, - anon_sym_EQ, - ACTIONS(9310), 1, - anon_sym_LBRACE, - ACTIONS(9312), 1, - anon_sym_LT, - ACTIONS(9314), 1, - anon_sym_EQ_GT, - STATE(2183), 1, - sym_type_argument_list, - STATE(2602), 1, - sym_accessor_list, - STATE(6320), 1, - sym_parameter_list, - STATE(6830), 1, - sym_bracketed_argument_list, - STATE(7217), 1, - sym_type_parameter_list, - STATE(7613), 1, - sym_arrow_expression_clause, - ACTIONS(9306), 2, - anon_sym_SEMI, - anon_sym_COMMA, - STATE(6252), 9, + ACTIONS(9184), 1, + anon_sym_where, + ACTIONS(9186), 1, + anon_sym_from, + ACTIONS(9188), 1, + anon_sym_join, + ACTIONS(9190), 1, + anon_sym_let, + ACTIONS(9192), 1, + anon_sym_orderby, + ACTIONS(9242), 1, + anon_sym_group, + ACTIONS(9244), 1, + anon_sym_select, + STATE(4311), 1, + sym__select_or_group_clause, + STATE(6237), 1, + aux_sym__query_body_repeat1, + STATE(6351), 1, + sym__query_clause, + STATE(3240), 2, + sym_group_clause, + sym_select_clause, + STATE(6348), 5, + sym_from_clause, + sym_join_clause, + sym_let_clause, + sym_order_by_clause, + sym_where_clause, + STATE(6187), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -729646,7 +725095,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [259014] = 26, + [254573] = 23, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -729667,38 +725116,36 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(3662), 1, - anon_sym_DOT, - ACTIONS(5573), 1, - anon_sym_LBRACK, - ACTIONS(6867), 1, - anon_sym_COLON_COLON, - ACTIONS(8916), 1, - anon_sym_LPAREN, - ACTIONS(9308), 1, - anon_sym_EQ, - ACTIONS(9310), 1, - anon_sym_LBRACE, - ACTIONS(9312), 1, - anon_sym_LT, - ACTIONS(9314), 1, - anon_sym_EQ_GT, - STATE(2183), 1, - sym_type_argument_list, - STATE(2649), 1, - sym_accessor_list, - STATE(6287), 1, - sym_parameter_list, - STATE(6830), 1, - sym_bracketed_argument_list, - STATE(7134), 1, - sym_type_parameter_list, - STATE(7686), 1, - sym_arrow_expression_clause, - ACTIONS(9306), 2, - anon_sym_SEMI, - anon_sym_COMMA, - STATE(6253), 9, + ACTIONS(9184), 1, + anon_sym_where, + ACTIONS(9186), 1, + anon_sym_from, + ACTIONS(9188), 1, + anon_sym_join, + ACTIONS(9190), 1, + anon_sym_let, + ACTIONS(9192), 1, + anon_sym_orderby, + ACTIONS(9242), 1, + anon_sym_group, + ACTIONS(9244), 1, + anon_sym_select, + STATE(3257), 1, + sym__select_or_group_clause, + STATE(6189), 1, + aux_sym__query_body_repeat1, + STATE(6351), 1, + sym__query_clause, + STATE(3240), 2, + sym_group_clause, + sym_select_clause, + STATE(6348), 5, + sym_from_clause, + sym_join_clause, + sym_let_clause, + sym_order_by_clause, + sym_where_clause, + STATE(6188), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -729708,7 +725155,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [259102] = 19, + [254656] = 23, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -729729,28 +725176,36 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9316), 1, + ACTIONS(9184), 1, anon_sym_where, - ACTIONS(9319), 1, + ACTIONS(9186), 1, anon_sym_from, - ACTIONS(9322), 1, + ACTIONS(9188), 1, anon_sym_join, - ACTIONS(9325), 1, + ACTIONS(9190), 1, anon_sym_let, - ACTIONS(9328), 1, + ACTIONS(9192), 1, anon_sym_orderby, - STATE(6363), 1, - sym__query_clause, - ACTIONS(9331), 2, + ACTIONS(9242), 1, anon_sym_group, + ACTIONS(9244), 1, anon_sym_select, - STATE(6355), 5, + STATE(3264), 1, + sym__select_or_group_clause, + STATE(6237), 1, + aux_sym__query_body_repeat1, + STATE(6351), 1, + sym__query_clause, + STATE(3240), 2, + sym_group_clause, + sym_select_clause, + STATE(6348), 5, sym_from_clause, sym_join_clause, sym_let_clause, sym_order_by_clause, sym_where_clause, - STATE(6254), 10, + STATE(6189), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -729760,8 +725215,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - aux_sym__query_body_repeat1, - [259174] = 21, + [254739] = 23, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -729782,29 +725236,36 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8916), 1, - anon_sym_LPAREN, - ACTIONS(9333), 1, - anon_sym_COLON, - ACTIONS(9335), 1, - anon_sym_LBRACE, - ACTIONS(9337), 1, - anon_sym_LT, - ACTIONS(9339), 1, + ACTIONS(9184), 1, anon_sym_where, - STATE(6319), 1, - aux_sym__class_declaration_initializer_repeat3, - STATE(6481), 1, - aux_sym__class_declaration_initializer_repeat4, - STATE(6641), 1, - sym_type_parameter_constraints_clause, - STATE(7387), 1, - sym_declaration_list, - STATE(6505), 3, - sym_type_parameter_list, - sym_base_list, - sym_parameter_list, - STATE(6255), 9, + ACTIONS(9186), 1, + anon_sym_from, + ACTIONS(9188), 1, + anon_sym_join, + ACTIONS(9190), 1, + anon_sym_let, + ACTIONS(9192), 1, + anon_sym_orderby, + ACTIONS(9254), 1, + anon_sym_group, + ACTIONS(9256), 1, + anon_sym_select, + STATE(5594), 1, + sym__select_or_group_clause, + STATE(6237), 1, + aux_sym__query_body_repeat1, + STATE(6351), 1, + sym__query_clause, + STATE(2959), 2, + sym_group_clause, + sym_select_clause, + STATE(6348), 5, + sym_from_clause, + sym_join_clause, + sym_let_clause, + sym_order_by_clause, + sym_where_clause, + STATE(6190), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -729814,7 +725275,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [259248] = 21, + [254822] = 23, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -729835,29 +725296,36 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8916), 1, - anon_sym_LPAREN, - ACTIONS(9337), 1, - anon_sym_LT, - ACTIONS(9339), 1, + ACTIONS(9184), 1, anon_sym_where, - ACTIONS(9343), 1, - anon_sym_COLON, - STATE(6297), 1, - aux_sym__record_declaration_initializer_repeat1, - STATE(6488), 1, - aux_sym__class_declaration_initializer_repeat4, - STATE(6494), 1, - sym_record_base, - STATE(6641), 1, - sym_type_parameter_constraints_clause, - ACTIONS(9341), 2, - anon_sym_SEMI, - anon_sym_LBRACE, - STATE(6444), 2, - sym_type_parameter_list, - sym_parameter_list, - STATE(6256), 9, + ACTIONS(9186), 1, + anon_sym_from, + ACTIONS(9188), 1, + anon_sym_join, + ACTIONS(9190), 1, + anon_sym_let, + ACTIONS(9192), 1, + anon_sym_orderby, + ACTIONS(9262), 1, + anon_sym_group, + ACTIONS(9264), 1, + anon_sym_select, + STATE(2997), 1, + sym__select_or_group_clause, + STATE(6192), 1, + aux_sym__query_body_repeat1, + STATE(6351), 1, + sym__query_clause, + STATE(2959), 2, + sym_group_clause, + sym_select_clause, + STATE(6348), 5, + sym_from_clause, + sym_join_clause, + sym_let_clause, + sym_order_by_clause, + sym_where_clause, + STATE(6191), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -729867,7 +725335,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [259322] = 21, + [254905] = 23, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -729888,29 +725356,36 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8916), 1, - anon_sym_LPAREN, - ACTIONS(9337), 1, - anon_sym_LT, - ACTIONS(9339), 1, + ACTIONS(9184), 1, anon_sym_where, - ACTIONS(9343), 1, - anon_sym_COLON, - STATE(6262), 1, - aux_sym__record_declaration_initializer_repeat1, - STATE(6522), 1, - sym_record_base, - STATE(6524), 1, - aux_sym__class_declaration_initializer_repeat4, - STATE(6641), 1, - sym_type_parameter_constraints_clause, - ACTIONS(9345), 2, - anon_sym_SEMI, - anon_sym_LBRACE, - STATE(6444), 2, - sym_type_parameter_list, - sym_parameter_list, - STATE(6257), 9, + ACTIONS(9186), 1, + anon_sym_from, + ACTIONS(9188), 1, + anon_sym_join, + ACTIONS(9190), 1, + anon_sym_let, + ACTIONS(9192), 1, + anon_sym_orderby, + ACTIONS(9262), 1, + anon_sym_group, + ACTIONS(9264), 1, + anon_sym_select, + STATE(2957), 1, + sym__select_or_group_clause, + STATE(6237), 1, + aux_sym__query_body_repeat1, + STATE(6351), 1, + sym__query_clause, + STATE(2959), 2, + sym_group_clause, + sym_select_clause, + STATE(6348), 5, + sym_from_clause, + sym_join_clause, + sym_let_clause, + sym_order_by_clause, + sym_where_clause, + STATE(6192), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -729920,7 +725395,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [259396] = 21, + [254988] = 23, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -729941,29 +725416,36 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8916), 1, - anon_sym_LPAREN, - ACTIONS(9337), 1, - anon_sym_LT, - ACTIONS(9339), 1, + ACTIONS(9184), 1, anon_sym_where, - ACTIONS(9343), 1, - anon_sym_COLON, - STATE(6256), 1, - aux_sym__record_declaration_initializer_repeat1, - STATE(6484), 1, - sym_record_base, - STATE(6485), 1, - aux_sym__class_declaration_initializer_repeat4, - STATE(6641), 1, - sym_type_parameter_constraints_clause, - ACTIONS(9347), 2, - anon_sym_SEMI, - anon_sym_LBRACE, - STATE(6444), 2, - sym_type_parameter_list, - sym_parameter_list, - STATE(6258), 9, + ACTIONS(9186), 1, + anon_sym_from, + ACTIONS(9188), 1, + anon_sym_join, + ACTIONS(9190), 1, + anon_sym_let, + ACTIONS(9192), 1, + anon_sym_orderby, + ACTIONS(9254), 1, + anon_sym_group, + ACTIONS(9256), 1, + anon_sym_select, + STATE(2997), 1, + sym__select_or_group_clause, + STATE(6194), 1, + aux_sym__query_body_repeat1, + STATE(6351), 1, + sym__query_clause, + STATE(2959), 2, + sym_group_clause, + sym_select_clause, + STATE(6348), 5, + sym_from_clause, + sym_join_clause, + sym_let_clause, + sym_order_by_clause, + sym_where_clause, + STATE(6193), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -729973,7 +725455,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [259470] = 21, + [255071] = 23, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -729994,29 +725476,36 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8916), 1, - anon_sym_LPAREN, - ACTIONS(9333), 1, - anon_sym_COLON, - ACTIONS(9335), 1, - anon_sym_LBRACE, - ACTIONS(9337), 1, - anon_sym_LT, - ACTIONS(9339), 1, + ACTIONS(9184), 1, anon_sym_where, - STATE(6319), 1, - aux_sym__class_declaration_initializer_repeat3, - STATE(6495), 1, - aux_sym__class_declaration_initializer_repeat4, - STATE(6641), 1, - sym_type_parameter_constraints_clause, - STATE(7369), 1, - sym_declaration_list, - STATE(6505), 3, - sym_type_parameter_list, - sym_base_list, - sym_parameter_list, - STATE(6259), 9, + ACTIONS(9186), 1, + anon_sym_from, + ACTIONS(9188), 1, + anon_sym_join, + ACTIONS(9190), 1, + anon_sym_let, + ACTIONS(9192), 1, + anon_sym_orderby, + ACTIONS(9254), 1, + anon_sym_group, + ACTIONS(9256), 1, + anon_sym_select, + STATE(2957), 1, + sym__select_or_group_clause, + STATE(6237), 1, + aux_sym__query_body_repeat1, + STATE(6351), 1, + sym__query_clause, + STATE(2959), 2, + sym_group_clause, + sym_select_clause, + STATE(6348), 5, + sym_from_clause, + sym_join_clause, + sym_let_clause, + sym_order_by_clause, + sym_where_clause, + STATE(6194), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -730026,7 +725515,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [259544] = 16, + [255154] = 23, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -730047,24 +725536,36 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(3660), 1, - anon_sym_COLON, - ACTIONS(9349), 1, - anon_sym_LT, - ACTIONS(9352), 1, - anon_sym_COLON_COLON, - STATE(4063), 1, - sym_type_argument_list, - ACTIONS(3662), 8, - anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACE, + ACTIONS(9184), 1, anon_sym_where, - anon_sym_QMARK, - anon_sym_STAR, - anon_sym_DOT, - STATE(6260), 9, + ACTIONS(9186), 1, + anon_sym_from, + ACTIONS(9188), 1, + anon_sym_join, + ACTIONS(9190), 1, + anon_sym_let, + ACTIONS(9192), 1, + anon_sym_orderby, + ACTIONS(9226), 1, + anon_sym_group, + ACTIONS(9228), 1, + anon_sym_select, + STATE(5641), 1, + sym__select_or_group_clause, + STATE(6237), 1, + aux_sym__query_body_repeat1, + STATE(6351), 1, + sym__query_clause, + STATE(2959), 2, + sym_group_clause, + sym_select_clause, + STATE(6348), 5, + sym_from_clause, + sym_join_clause, + sym_let_clause, + sym_order_by_clause, + sym_where_clause, + STATE(6195), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -730074,7 +725575,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [259608] = 21, + [255237] = 23, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -730095,29 +725596,36 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8916), 1, - anon_sym_LPAREN, - ACTIONS(9333), 1, - anon_sym_COLON, - ACTIONS(9335), 1, - anon_sym_LBRACE, - ACTIONS(9337), 1, - anon_sym_LT, - ACTIONS(9339), 1, + ACTIONS(9184), 1, anon_sym_where, - STATE(6319), 1, - aux_sym__class_declaration_initializer_repeat3, - STATE(6518), 1, - aux_sym__class_declaration_initializer_repeat4, - STATE(6641), 1, - sym_type_parameter_constraints_clause, - STATE(7540), 1, - sym_declaration_list, - STATE(6505), 3, - sym_type_parameter_list, - sym_base_list, - sym_parameter_list, - STATE(6261), 9, + ACTIONS(9186), 1, + anon_sym_from, + ACTIONS(9188), 1, + anon_sym_join, + ACTIONS(9190), 1, + anon_sym_let, + ACTIONS(9192), 1, + anon_sym_orderby, + ACTIONS(9198), 1, + anon_sym_group, + ACTIONS(9200), 1, + anon_sym_select, + STATE(5602), 1, + sym__select_or_group_clause, + STATE(6237), 1, + aux_sym__query_body_repeat1, + STATE(6351), 1, + sym__query_clause, + STATE(2959), 2, + sym_group_clause, + sym_select_clause, + STATE(6348), 5, + sym_from_clause, + sym_join_clause, + sym_let_clause, + sym_order_by_clause, + sym_where_clause, + STATE(6196), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -730127,7 +725635,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [259682] = 21, + [255320] = 23, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -730148,29 +725656,36 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8916), 1, - anon_sym_LPAREN, - ACTIONS(9337), 1, - anon_sym_LT, - ACTIONS(9339), 1, + ACTIONS(9184), 1, anon_sym_where, - ACTIONS(9343), 1, - anon_sym_COLON, - STATE(6297), 1, - aux_sym__record_declaration_initializer_repeat1, - STATE(6539), 1, - aux_sym__class_declaration_initializer_repeat4, - STATE(6603), 1, - sym_record_base, - STATE(6641), 1, - sym_type_parameter_constraints_clause, - ACTIONS(9354), 2, - anon_sym_SEMI, - anon_sym_LBRACE, - STATE(6444), 2, - sym_type_parameter_list, - sym_parameter_list, - STATE(6262), 9, + ACTIONS(9186), 1, + anon_sym_from, + ACTIONS(9188), 1, + anon_sym_join, + ACTIONS(9190), 1, + anon_sym_let, + ACTIONS(9192), 1, + anon_sym_orderby, + ACTIONS(9226), 1, + anon_sym_group, + ACTIONS(9228), 1, + anon_sym_select, + STATE(2997), 1, + sym__select_or_group_clause, + STATE(6198), 1, + aux_sym__query_body_repeat1, + STATE(6351), 1, + sym__query_clause, + STATE(2959), 2, + sym_group_clause, + sym_select_clause, + STATE(6348), 5, + sym_from_clause, + sym_join_clause, + sym_let_clause, + sym_order_by_clause, + sym_where_clause, + STATE(6197), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -730180,7 +725695,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [259756] = 21, + [255403] = 23, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -730201,29 +725716,36 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8916), 1, - anon_sym_LPAREN, - ACTIONS(9333), 1, - anon_sym_COLON, - ACTIONS(9335), 1, - anon_sym_LBRACE, - ACTIONS(9337), 1, - anon_sym_LT, - ACTIONS(9339), 1, + ACTIONS(9184), 1, anon_sym_where, - STATE(6259), 1, - aux_sym__class_declaration_initializer_repeat3, - STATE(6489), 1, - aux_sym__class_declaration_initializer_repeat4, - STATE(6641), 1, - sym_type_parameter_constraints_clause, - STATE(7477), 1, - sym_declaration_list, - STATE(6505), 3, - sym_type_parameter_list, - sym_base_list, - sym_parameter_list, - STATE(6263), 9, + ACTIONS(9186), 1, + anon_sym_from, + ACTIONS(9188), 1, + anon_sym_join, + ACTIONS(9190), 1, + anon_sym_let, + ACTIONS(9192), 1, + anon_sym_orderby, + ACTIONS(9226), 1, + anon_sym_group, + ACTIONS(9228), 1, + anon_sym_select, + STATE(2957), 1, + sym__select_or_group_clause, + STATE(6237), 1, + aux_sym__query_body_repeat1, + STATE(6351), 1, + sym__query_clause, + STATE(2959), 2, + sym_group_clause, + sym_select_clause, + STATE(6348), 5, + sym_from_clause, + sym_join_clause, + sym_let_clause, + sym_order_by_clause, + sym_where_clause, + STATE(6198), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -730233,7 +725755,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [259830] = 21, + [255486] = 23, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -730254,29 +725776,36 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8916), 1, - anon_sym_LPAREN, - ACTIONS(9337), 1, - anon_sym_LT, - ACTIONS(9339), 1, + ACTIONS(9184), 1, anon_sym_where, - ACTIONS(9343), 1, - anon_sym_COLON, - STATE(6266), 1, - aux_sym__record_declaration_initializer_repeat1, - STATE(6586), 1, - sym_record_base, - STATE(6591), 1, - aux_sym__class_declaration_initializer_repeat4, - STATE(6641), 1, - sym_type_parameter_constraints_clause, - ACTIONS(9356), 2, - anon_sym_SEMI, - anon_sym_LBRACE, - STATE(6444), 2, - sym_type_parameter_list, - sym_parameter_list, - STATE(6264), 9, + ACTIONS(9186), 1, + anon_sym_from, + ACTIONS(9188), 1, + anon_sym_join, + ACTIONS(9190), 1, + anon_sym_let, + ACTIONS(9192), 1, + anon_sym_orderby, + ACTIONS(9270), 1, + anon_sym_group, + ACTIONS(9272), 1, + anon_sym_select, + STATE(4216), 1, + sym__select_or_group_clause, + STATE(6237), 1, + aux_sym__query_body_repeat1, + STATE(6351), 1, + sym__query_clause, + STATE(2959), 2, + sym_group_clause, + sym_select_clause, + STATE(6348), 5, + sym_from_clause, + sym_join_clause, + sym_let_clause, + sym_order_by_clause, + sym_where_clause, + STATE(6199), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -730286,7 +725815,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [259904] = 21, + [255569] = 23, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -730307,29 +725836,36 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8916), 1, - anon_sym_LPAREN, - ACTIONS(9337), 1, - anon_sym_LT, - ACTIONS(9339), 1, + ACTIONS(9184), 1, anon_sym_where, - ACTIONS(9343), 1, - anon_sym_COLON, - STATE(6268), 1, - aux_sym__record_declaration_initializer_repeat1, - STATE(6581), 1, - sym_record_base, - STATE(6587), 1, - aux_sym__class_declaration_initializer_repeat4, - STATE(6641), 1, - sym_type_parameter_constraints_clause, - ACTIONS(9358), 2, - anon_sym_SEMI, - anon_sym_LBRACE, - STATE(6444), 2, - sym_type_parameter_list, - sym_parameter_list, - STATE(6265), 9, + ACTIONS(9186), 1, + anon_sym_from, + ACTIONS(9188), 1, + anon_sym_join, + ACTIONS(9190), 1, + anon_sym_let, + ACTIONS(9192), 1, + anon_sym_orderby, + ACTIONS(9274), 1, + anon_sym_group, + ACTIONS(9276), 1, + anon_sym_select, + STATE(4660), 1, + sym__select_or_group_clause, + STATE(6201), 1, + aux_sym__query_body_repeat1, + STATE(6351), 1, + sym__query_clause, + STATE(4586), 2, + sym_group_clause, + sym_select_clause, + STATE(6348), 5, + sym_from_clause, + sym_join_clause, + sym_let_clause, + sym_order_by_clause, + sym_where_clause, + STATE(6200), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -730339,7 +725875,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [259978] = 21, + [255652] = 23, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -730360,29 +725896,36 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8916), 1, - anon_sym_LPAREN, - ACTIONS(9337), 1, - anon_sym_LT, - ACTIONS(9339), 1, + ACTIONS(9184), 1, anon_sym_where, - ACTIONS(9343), 1, - anon_sym_COLON, - STATE(6297), 1, - aux_sym__record_declaration_initializer_repeat1, - STATE(6496), 1, - aux_sym__class_declaration_initializer_repeat4, - STATE(6499), 1, - sym_record_base, - STATE(6641), 1, - sym_type_parameter_constraints_clause, - ACTIONS(9360), 2, - anon_sym_SEMI, - anon_sym_LBRACE, - STATE(6444), 2, - sym_type_parameter_list, - sym_parameter_list, - STATE(6266), 9, + ACTIONS(9186), 1, + anon_sym_from, + ACTIONS(9188), 1, + anon_sym_join, + ACTIONS(9190), 1, + anon_sym_let, + ACTIONS(9192), 1, + anon_sym_orderby, + ACTIONS(9274), 1, + anon_sym_group, + ACTIONS(9276), 1, + anon_sym_select, + STATE(4666), 1, + sym__select_or_group_clause, + STATE(6237), 1, + aux_sym__query_body_repeat1, + STATE(6351), 1, + sym__query_clause, + STATE(4586), 2, + sym_group_clause, + sym_select_clause, + STATE(6348), 5, + sym_from_clause, + sym_join_clause, + sym_let_clause, + sym_order_by_clause, + sym_where_clause, + STATE(6201), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -730392,7 +725935,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [260052] = 21, + [255735] = 23, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -730413,29 +725956,36 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8916), 1, - anon_sym_LPAREN, - ACTIONS(9333), 1, - anon_sym_COLON, - ACTIONS(9335), 1, - anon_sym_LBRACE, - ACTIONS(9337), 1, - anon_sym_LT, - ACTIONS(9339), 1, + ACTIONS(9184), 1, anon_sym_where, - STATE(6255), 1, - aux_sym__class_declaration_initializer_repeat3, - STATE(6534), 1, - aux_sym__class_declaration_initializer_repeat4, - STATE(6641), 1, - sym_type_parameter_constraints_clause, - STATE(7429), 1, - sym_declaration_list, - STATE(6505), 3, - sym_type_parameter_list, - sym_base_list, - sym_parameter_list, - STATE(6267), 9, + ACTIONS(9186), 1, + anon_sym_from, + ACTIONS(9188), 1, + anon_sym_join, + ACTIONS(9190), 1, + anon_sym_let, + ACTIONS(9192), 1, + anon_sym_orderby, + ACTIONS(9198), 1, + anon_sym_group, + ACTIONS(9200), 1, + anon_sym_select, + STATE(2997), 1, + sym__select_or_group_clause, + STATE(6203), 1, + aux_sym__query_body_repeat1, + STATE(6351), 1, + sym__query_clause, + STATE(2959), 2, + sym_group_clause, + sym_select_clause, + STATE(6348), 5, + sym_from_clause, + sym_join_clause, + sym_let_clause, + sym_order_by_clause, + sym_where_clause, + STATE(6202), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -730445,7 +725995,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [260126] = 21, + [255818] = 23, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -730466,29 +726016,36 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8916), 1, - anon_sym_LPAREN, - ACTIONS(9337), 1, - anon_sym_LT, - ACTIONS(9339), 1, + ACTIONS(9184), 1, anon_sym_where, - ACTIONS(9343), 1, - anon_sym_COLON, - STATE(6297), 1, - aux_sym__record_declaration_initializer_repeat1, - STATE(6575), 1, - aux_sym__class_declaration_initializer_repeat4, - STATE(6602), 1, - sym_record_base, - STATE(6641), 1, - sym_type_parameter_constraints_clause, - ACTIONS(9362), 2, - anon_sym_SEMI, - anon_sym_LBRACE, - STATE(6444), 2, - sym_type_parameter_list, - sym_parameter_list, - STATE(6268), 9, + ACTIONS(9186), 1, + anon_sym_from, + ACTIONS(9188), 1, + anon_sym_join, + ACTIONS(9190), 1, + anon_sym_let, + ACTIONS(9192), 1, + anon_sym_orderby, + ACTIONS(9198), 1, + anon_sym_group, + ACTIONS(9200), 1, + anon_sym_select, + STATE(2957), 1, + sym__select_or_group_clause, + STATE(6237), 1, + aux_sym__query_body_repeat1, + STATE(6351), 1, + sym__query_clause, + STATE(2959), 2, + sym_group_clause, + sym_select_clause, + STATE(6348), 5, + sym_from_clause, + sym_join_clause, + sym_let_clause, + sym_order_by_clause, + sym_where_clause, + STATE(6203), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -730498,7 +726055,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [260200] = 21, + [255901] = 23, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -730519,29 +726076,36 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8916), 1, - anon_sym_LPAREN, - ACTIONS(9333), 1, - anon_sym_COLON, - ACTIONS(9335), 1, - anon_sym_LBRACE, - ACTIONS(9337), 1, - anon_sym_LT, - ACTIONS(9339), 1, + ACTIONS(9184), 1, anon_sym_where, - STATE(6261), 1, - aux_sym__class_declaration_initializer_repeat3, - STATE(6523), 1, - aux_sym__class_declaration_initializer_repeat4, - STATE(6641), 1, - sym_type_parameter_constraints_clause, - STATE(7326), 1, - sym_declaration_list, - STATE(6505), 3, - sym_type_parameter_list, - sym_base_list, - sym_parameter_list, - STATE(6269), 9, + ACTIONS(9186), 1, + anon_sym_from, + ACTIONS(9188), 1, + anon_sym_join, + ACTIONS(9190), 1, + anon_sym_let, + ACTIONS(9192), 1, + anon_sym_orderby, + ACTIONS(9250), 1, + anon_sym_group, + ACTIONS(9252), 1, + anon_sym_select, + STATE(4805), 1, + sym__select_or_group_clause, + STATE(6237), 1, + aux_sym__query_body_repeat1, + STATE(6351), 1, + sym__query_clause, + STATE(3240), 2, + sym_group_clause, + sym_select_clause, + STATE(6348), 5, + sym_from_clause, + sym_join_clause, + sym_let_clause, + sym_order_by_clause, + sym_where_clause, + STATE(6204), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -730551,7 +726115,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [260274] = 22, + [255984] = 23, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -730572,29 +726136,36 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(3662), 1, - anon_sym_DOT, - ACTIONS(5573), 1, - anon_sym_LBRACK, - ACTIONS(6829), 1, - anon_sym_LT, - ACTIONS(6867), 1, - anon_sym_COLON_COLON, - ACTIONS(9306), 1, - anon_sym_COMMA, - ACTIONS(9310), 1, - anon_sym_LBRACE, - ACTIONS(9364), 1, - anon_sym_SEMI, - ACTIONS(9367), 1, - anon_sym_EQ, - STATE(2183), 1, - sym_type_argument_list, - STATE(2751), 1, - sym_accessor_list, - STATE(6830), 1, - sym_bracketed_argument_list, - STATE(6270), 9, + ACTIONS(9184), 1, + anon_sym_where, + ACTIONS(9186), 1, + anon_sym_from, + ACTIONS(9188), 1, + anon_sym_join, + ACTIONS(9190), 1, + anon_sym_let, + ACTIONS(9192), 1, + anon_sym_orderby, + ACTIONS(9218), 1, + anon_sym_group, + ACTIONS(9220), 1, + anon_sym_select, + STATE(4057), 1, + sym__select_or_group_clause, + STATE(6237), 1, + aux_sym__query_body_repeat1, + STATE(6351), 1, + sym__query_clause, + STATE(2959), 2, + sym_group_clause, + sym_select_clause, + STATE(6348), 5, + sym_from_clause, + sym_join_clause, + sym_let_clause, + sym_order_by_clause, + sym_where_clause, + STATE(6205), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -730604,7 +726175,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [260349] = 22, + [256067] = 23, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -730625,29 +726196,36 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(3662), 1, - anon_sym_DOT, - ACTIONS(5573), 1, - anon_sym_LBRACK, - ACTIONS(6829), 1, - anon_sym_LT, - ACTIONS(6867), 1, - anon_sym_COLON_COLON, - ACTIONS(9306), 1, - anon_sym_COMMA, - ACTIONS(9310), 1, - anon_sym_LBRACE, - ACTIONS(9367), 1, - anon_sym_EQ, - ACTIONS(9369), 1, - anon_sym_SEMI, - STATE(2183), 1, - sym_type_argument_list, - STATE(2734), 1, - sym_accessor_list, - STATE(6830), 1, - sym_bracketed_argument_list, - STATE(6271), 9, + ACTIONS(9184), 1, + anon_sym_where, + ACTIONS(9186), 1, + anon_sym_from, + ACTIONS(9188), 1, + anon_sym_join, + ACTIONS(9190), 1, + anon_sym_let, + ACTIONS(9192), 1, + anon_sym_orderby, + ACTIONS(9218), 1, + anon_sym_group, + ACTIONS(9220), 1, + anon_sym_select, + STATE(2997), 1, + sym__select_or_group_clause, + STATE(6207), 1, + aux_sym__query_body_repeat1, + STATE(6351), 1, + sym__query_clause, + STATE(2959), 2, + sym_group_clause, + sym_select_clause, + STATE(6348), 5, + sym_from_clause, + sym_join_clause, + sym_let_clause, + sym_order_by_clause, + sym_where_clause, + STATE(6206), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -730657,7 +726235,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [260424] = 20, + [256150] = 23, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -730678,27 +726256,36 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8916), 1, - anon_sym_LPAREN, - ACTIONS(9333), 1, - anon_sym_COLON, - ACTIONS(9337), 1, - anon_sym_LT, - ACTIONS(9339), 1, + ACTIONS(9184), 1, anon_sym_where, - ACTIONS(9372), 1, - anon_sym_LBRACE, - STATE(6283), 1, - aux_sym__class_declaration_initializer_repeat3, - STATE(6641), 1, - sym_type_parameter_constraints_clause, - STATE(6696), 1, - aux_sym__class_declaration_initializer_repeat4, - STATE(6505), 3, - sym_type_parameter_list, - sym_base_list, - sym_parameter_list, - STATE(6272), 9, + ACTIONS(9186), 1, + anon_sym_from, + ACTIONS(9188), 1, + anon_sym_join, + ACTIONS(9190), 1, + anon_sym_let, + ACTIONS(9192), 1, + anon_sym_orderby, + ACTIONS(9218), 1, + anon_sym_group, + ACTIONS(9220), 1, + anon_sym_select, + STATE(2957), 1, + sym__select_or_group_clause, + STATE(6237), 1, + aux_sym__query_body_repeat1, + STATE(6351), 1, + sym__query_clause, + STATE(2959), 2, + sym_group_clause, + sym_select_clause, + STATE(6348), 5, + sym_from_clause, + sym_join_clause, + sym_let_clause, + sym_order_by_clause, + sym_where_clause, + STATE(6207), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -730708,7 +726295,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [260495] = 20, + [256233] = 23, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -730729,27 +726316,36 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8916), 1, - anon_sym_LPAREN, - ACTIONS(9333), 1, - anon_sym_COLON, - ACTIONS(9337), 1, - anon_sym_LT, - ACTIONS(9339), 1, + ACTIONS(9184), 1, anon_sym_where, - ACTIONS(9374), 1, - anon_sym_LBRACE, - STATE(6319), 1, - aux_sym__class_declaration_initializer_repeat3, - STATE(6604), 1, - aux_sym__class_declaration_initializer_repeat4, - STATE(6641), 1, - sym_type_parameter_constraints_clause, - STATE(6505), 3, - sym_type_parameter_list, - sym_base_list, - sym_parameter_list, - STATE(6273), 9, + ACTIONS(9186), 1, + anon_sym_from, + ACTIONS(9188), 1, + anon_sym_join, + ACTIONS(9190), 1, + anon_sym_let, + ACTIONS(9192), 1, + anon_sym_orderby, + ACTIONS(9250), 1, + anon_sym_group, + ACTIONS(9252), 1, + anon_sym_select, + STATE(3257), 1, + sym__select_or_group_clause, + STATE(6210), 1, + aux_sym__query_body_repeat1, + STATE(6351), 1, + sym__query_clause, + STATE(3240), 2, + sym_group_clause, + sym_select_clause, + STATE(6348), 5, + sym_from_clause, + sym_join_clause, + sym_let_clause, + sym_order_by_clause, + sym_where_clause, + STATE(6208), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -730759,7 +726355,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [260566] = 22, + [256316] = 23, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -730780,29 +726376,36 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(3662), 1, - anon_sym_DOT, - ACTIONS(5573), 1, - anon_sym_LBRACK, - ACTIONS(6829), 1, - anon_sym_LT, - ACTIONS(6867), 1, - anon_sym_COLON_COLON, - ACTIONS(9306), 1, - anon_sym_COMMA, - ACTIONS(9310), 1, - anon_sym_LBRACE, - ACTIONS(9367), 1, - anon_sym_EQ, - ACTIONS(9376), 1, - anon_sym_SEMI, - STATE(2183), 1, - sym_type_argument_list, - STATE(2847), 1, - sym_accessor_list, - STATE(6830), 1, - sym_bracketed_argument_list, - STATE(6274), 9, + ACTIONS(9184), 1, + anon_sym_where, + ACTIONS(9186), 1, + anon_sym_from, + ACTIONS(9188), 1, + anon_sym_join, + ACTIONS(9190), 1, + anon_sym_let, + ACTIONS(9192), 1, + anon_sym_orderby, + ACTIONS(9222), 1, + anon_sym_group, + ACTIONS(9224), 1, + anon_sym_select, + STATE(5094), 1, + sym__select_or_group_clause, + STATE(6237), 1, + aux_sym__query_body_repeat1, + STATE(6351), 1, + sym__query_clause, + STATE(3240), 2, + sym_group_clause, + sym_select_clause, + STATE(6348), 5, + sym_from_clause, + sym_join_clause, + sym_let_clause, + sym_order_by_clause, + sym_where_clause, + STATE(6209), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -730812,7 +726415,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [260641] = 13, + [256399] = 23, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -730833,20 +726436,36 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9379), 5, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_LBRACE, + ACTIONS(9184), 1, anon_sym_where, - anon_sym_EQ_GT, - ACTIONS(3445), 6, - anon_sym_LBRACK, - anon_sym_LT, - anon_sym_QMARK, - anon_sym_STAR, - anon_sym_DOT, - anon_sym_COLON_COLON, - STATE(6275), 9, + ACTIONS(9186), 1, + anon_sym_from, + ACTIONS(9188), 1, + anon_sym_join, + ACTIONS(9190), 1, + anon_sym_let, + ACTIONS(9192), 1, + anon_sym_orderby, + ACTIONS(9250), 1, + anon_sym_group, + ACTIONS(9252), 1, + anon_sym_select, + STATE(3264), 1, + sym__select_or_group_clause, + STATE(6237), 1, + aux_sym__query_body_repeat1, + STATE(6351), 1, + sym__query_clause, + STATE(3240), 2, + sym_group_clause, + sym_select_clause, + STATE(6348), 5, + sym_from_clause, + sym_join_clause, + sym_let_clause, + sym_order_by_clause, + sym_where_clause, + STATE(6210), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -730856,7 +726475,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [260698] = 20, + [256482] = 23, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -730877,27 +726496,36 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8916), 1, - anon_sym_LPAREN, - ACTIONS(9333), 1, - anon_sym_COLON, - ACTIONS(9337), 1, - anon_sym_LT, - ACTIONS(9339), 1, + ACTIONS(9184), 1, anon_sym_where, - ACTIONS(9382), 1, - anon_sym_LBRACE, - STATE(6273), 1, - aux_sym__class_declaration_initializer_repeat3, - STATE(6639), 1, - aux_sym__class_declaration_initializer_repeat4, - STATE(6641), 1, - sym_type_parameter_constraints_clause, - STATE(6505), 3, - sym_type_parameter_list, - sym_base_list, - sym_parameter_list, - STATE(6276), 9, + ACTIONS(9186), 1, + anon_sym_from, + ACTIONS(9188), 1, + anon_sym_join, + ACTIONS(9190), 1, + anon_sym_let, + ACTIONS(9192), 1, + anon_sym_orderby, + ACTIONS(9222), 1, + anon_sym_group, + ACTIONS(9224), 1, + anon_sym_select, + STATE(3257), 1, + sym__select_or_group_clause, + STATE(6212), 1, + aux_sym__query_body_repeat1, + STATE(6351), 1, + sym__query_clause, + STATE(3240), 2, + sym_group_clause, + sym_select_clause, + STATE(6348), 5, + sym_from_clause, + sym_join_clause, + sym_let_clause, + sym_order_by_clause, + sym_where_clause, + STATE(6211), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -730907,7 +726535,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [260769] = 14, + [256565] = 23, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -730928,21 +726556,36 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(3619), 1, - anon_sym_COLON, - ACTIONS(3445), 5, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_STAR, - anon_sym_DOT, - anon_sym_COLON_COLON, - ACTIONS(3616), 5, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_LT, + ACTIONS(9184), 1, anon_sym_where, - STATE(6277), 9, + ACTIONS(9186), 1, + anon_sym_from, + ACTIONS(9188), 1, + anon_sym_join, + ACTIONS(9190), 1, + anon_sym_let, + ACTIONS(9192), 1, + anon_sym_orderby, + ACTIONS(9222), 1, + anon_sym_group, + ACTIONS(9224), 1, + anon_sym_select, + STATE(3264), 1, + sym__select_or_group_clause, + STATE(6237), 1, + aux_sym__query_body_repeat1, + STATE(6351), 1, + sym__query_clause, + STATE(3240), 2, + sym_group_clause, + sym_select_clause, + STATE(6348), 5, + sym_from_clause, + sym_join_clause, + sym_let_clause, + sym_order_by_clause, + sym_where_clause, + STATE(6212), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -730952,7 +726595,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [260828] = 14, + [256648] = 23, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -730973,21 +726616,36 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9349), 1, - anon_sym_LT, - STATE(4063), 1, - sym_type_argument_list, - ACTIONS(3662), 9, - anon_sym_LBRACK, - anon_sym_COLON, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACE, + ACTIONS(9184), 1, anon_sym_where, - anon_sym_QMARK, - anon_sym_STAR, - anon_sym_DOT, - STATE(6278), 9, + ACTIONS(9186), 1, + anon_sym_from, + ACTIONS(9188), 1, + anon_sym_join, + ACTIONS(9190), 1, + anon_sym_let, + ACTIONS(9192), 1, + anon_sym_orderby, + ACTIONS(9214), 1, + anon_sym_group, + ACTIONS(9216), 1, + anon_sym_select, + STATE(4115), 1, + sym__select_or_group_clause, + STATE(6237), 1, + aux_sym__query_body_repeat1, + STATE(6351), 1, + sym__query_clause, + STATE(2959), 2, + sym_group_clause, + sym_select_clause, + STATE(6348), 5, + sym_from_clause, + sym_join_clause, + sym_let_clause, + sym_order_by_clause, + sym_where_clause, + STATE(6213), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -730997,7 +726655,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [260887] = 20, + [256731] = 23, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -731018,27 +726676,36 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8916), 1, - anon_sym_LPAREN, - ACTIONS(9333), 1, - anon_sym_COLON, - ACTIONS(9337), 1, - anon_sym_LT, - ACTIONS(9339), 1, + ACTIONS(9184), 1, anon_sym_where, - ACTIONS(9384), 1, - anon_sym_LBRACE, - STATE(6281), 1, - aux_sym__class_declaration_initializer_repeat3, - STATE(6641), 1, - sym_type_parameter_constraints_clause, - STATE(6700), 1, - aux_sym__class_declaration_initializer_repeat4, - STATE(6505), 3, - sym_type_parameter_list, - sym_base_list, - sym_parameter_list, - STATE(6279), 9, + ACTIONS(9186), 1, + anon_sym_from, + ACTIONS(9188), 1, + anon_sym_join, + ACTIONS(9190), 1, + anon_sym_let, + ACTIONS(9192), 1, + anon_sym_orderby, + ACTIONS(9202), 1, + anon_sym_group, + ACTIONS(9204), 1, + anon_sym_select, + STATE(5610), 1, + sym__select_or_group_clause, + STATE(6237), 1, + aux_sym__query_body_repeat1, + STATE(6351), 1, + sym__query_clause, + STATE(2959), 2, + sym_group_clause, + sym_select_clause, + STATE(6348), 5, + sym_from_clause, + sym_join_clause, + sym_let_clause, + sym_order_by_clause, + sym_where_clause, + STATE(6214), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -731048,7 +726715,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [260958] = 20, + [256814] = 23, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -731069,27 +726736,36 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8916), 1, - anon_sym_LPAREN, - ACTIONS(9333), 1, - anon_sym_COLON, - ACTIONS(9337), 1, - anon_sym_LT, - ACTIONS(9339), 1, + ACTIONS(9184), 1, anon_sym_where, - ACTIONS(9386), 1, - anon_sym_LBRACE, - STATE(6319), 1, - aux_sym__class_declaration_initializer_repeat3, - STATE(6606), 1, - aux_sym__class_declaration_initializer_repeat4, - STATE(6641), 1, - sym_type_parameter_constraints_clause, - STATE(6505), 3, - sym_type_parameter_list, - sym_base_list, - sym_parameter_list, - STATE(6280), 9, + ACTIONS(9186), 1, + anon_sym_from, + ACTIONS(9188), 1, + anon_sym_join, + ACTIONS(9190), 1, + anon_sym_let, + ACTIONS(9192), 1, + anon_sym_orderby, + ACTIONS(9270), 1, + anon_sym_group, + ACTIONS(9272), 1, + anon_sym_select, + STATE(2997), 1, + sym__select_or_group_clause, + STATE(6221), 1, + aux_sym__query_body_repeat1, + STATE(6351), 1, + sym__query_clause, + STATE(2959), 2, + sym_group_clause, + sym_select_clause, + STATE(6348), 5, + sym_from_clause, + sym_join_clause, + sym_let_clause, + sym_order_by_clause, + sym_where_clause, + STATE(6215), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -731099,7 +726775,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [261029] = 20, + [256897] = 23, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -731120,27 +726796,36 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8916), 1, - anon_sym_LPAREN, - ACTIONS(9333), 1, - anon_sym_COLON, - ACTIONS(9337), 1, - anon_sym_LT, - ACTIONS(9339), 1, + ACTIONS(9184), 1, anon_sym_where, - ACTIONS(9388), 1, - anon_sym_LBRACE, - STATE(6319), 1, - aux_sym__class_declaration_initializer_repeat3, - STATE(6641), 1, - sym_type_parameter_constraints_clause, - STATE(6680), 1, - aux_sym__class_declaration_initializer_repeat4, - STATE(6505), 3, - sym_type_parameter_list, - sym_base_list, - sym_parameter_list, - STATE(6281), 9, + ACTIONS(9186), 1, + anon_sym_from, + ACTIONS(9188), 1, + anon_sym_join, + ACTIONS(9190), 1, + anon_sym_let, + ACTIONS(9192), 1, + anon_sym_orderby, + ACTIONS(9202), 1, + anon_sym_group, + ACTIONS(9204), 1, + anon_sym_select, + STATE(2997), 1, + sym__select_or_group_clause, + STATE(6217), 1, + aux_sym__query_body_repeat1, + STATE(6351), 1, + sym__query_clause, + STATE(2959), 2, + sym_group_clause, + sym_select_clause, + STATE(6348), 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, @@ -731150,7 +726835,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [261100] = 20, + [256980] = 23, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -731171,27 +726856,36 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8916), 1, - anon_sym_LPAREN, - ACTIONS(9333), 1, - anon_sym_COLON, - ACTIONS(9337), 1, - anon_sym_LT, - ACTIONS(9339), 1, + ACTIONS(9184), 1, anon_sym_where, - ACTIONS(9390), 1, - anon_sym_LBRACE, - STATE(6280), 1, - aux_sym__class_declaration_initializer_repeat3, - STATE(6641), 1, - sym_type_parameter_constraints_clause, - STATE(6710), 1, - aux_sym__class_declaration_initializer_repeat4, - STATE(6505), 3, - sym_type_parameter_list, - sym_base_list, - sym_parameter_list, - STATE(6282), 9, + ACTIONS(9186), 1, + anon_sym_from, + ACTIONS(9188), 1, + anon_sym_join, + ACTIONS(9190), 1, + anon_sym_let, + ACTIONS(9192), 1, + anon_sym_orderby, + ACTIONS(9202), 1, + anon_sym_group, + ACTIONS(9204), 1, + anon_sym_select, + STATE(2957), 1, + sym__select_or_group_clause, + STATE(6237), 1, + aux_sym__query_body_repeat1, + STATE(6351), 1, + sym__query_clause, + STATE(2959), 2, + sym_group_clause, + sym_select_clause, + STATE(6348), 5, + sym_from_clause, + sym_join_clause, + sym_let_clause, + sym_order_by_clause, + sym_where_clause, + STATE(6217), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -731201,7 +726895,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [261171] = 20, + [257063] = 23, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -731222,27 +726916,36 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8916), 1, - anon_sym_LPAREN, - ACTIONS(9333), 1, - anon_sym_COLON, - ACTIONS(9337), 1, - anon_sym_LT, - ACTIONS(9339), 1, + ACTIONS(9184), 1, anon_sym_where, - ACTIONS(9392), 1, - anon_sym_LBRACE, - STATE(6319), 1, - aux_sym__class_declaration_initializer_repeat3, - STATE(6605), 1, - aux_sym__class_declaration_initializer_repeat4, - STATE(6641), 1, - sym_type_parameter_constraints_clause, - STATE(6505), 3, - sym_type_parameter_list, - sym_base_list, - sym_parameter_list, - STATE(6283), 9, + ACTIONS(9186), 1, + anon_sym_from, + ACTIONS(9188), 1, + anon_sym_join, + ACTIONS(9190), 1, + anon_sym_let, + ACTIONS(9192), 1, + anon_sym_orderby, + ACTIONS(9210), 1, + anon_sym_group, + ACTIONS(9212), 1, + anon_sym_select, + STATE(5022), 1, + sym__select_or_group_clause, + STATE(6237), 1, + aux_sym__query_body_repeat1, + STATE(6351), 1, + sym__query_clause, + STATE(4586), 2, + sym_group_clause, + sym_select_clause, + STATE(6348), 5, + sym_from_clause, + sym_join_clause, + sym_let_clause, + sym_order_by_clause, + sym_where_clause, + STATE(6218), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -731252,7 +726955,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [261242] = 16, + [257146] = 23, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -731273,22 +726976,36 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(6678), 1, - anon_sym_LBRACK, - ACTIONS(6680), 1, - anon_sym_STAR, - ACTIONS(6716), 1, - anon_sym_QMARK, - ACTIONS(9394), 1, - anon_sym_DOT, - ACTIONS(4018), 6, - anon_sym_COLON, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_LT, + ACTIONS(9184), 1, anon_sym_where, - STATE(6284), 9, + ACTIONS(9186), 1, + anon_sym_from, + ACTIONS(9188), 1, + anon_sym_join, + ACTIONS(9190), 1, + anon_sym_let, + ACTIONS(9192), 1, + anon_sym_orderby, + ACTIONS(9194), 1, + anon_sym_group, + ACTIONS(9196), 1, + anon_sym_select, + STATE(5058), 1, + sym__select_or_group_clause, + STATE(6237), 1, + aux_sym__query_body_repeat1, + STATE(6351), 1, + sym__query_clause, + STATE(3240), 2, + sym_group_clause, + sym_select_clause, + STATE(6348), 5, + sym_from_clause, + sym_join_clause, + sym_let_clause, + sym_order_by_clause, + sym_where_clause, + STATE(6219), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -731298,7 +727015,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [261304] = 20, + [257229] = 23, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -731319,26 +727036,36 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(3667), 1, - anon_sym_EQ_GT, - ACTIONS(5573), 1, - anon_sym_LBRACK, - ACTIONS(8916), 1, - anon_sym_LPAREN, - ACTIONS(9308), 1, - anon_sym_EQ, - ACTIONS(9337), 1, - anon_sym_LT, - STATE(6720), 1, - sym_parameter_list, - STATE(6830), 1, - sym_bracketed_argument_list, - STATE(7173), 1, - sym_type_parameter_list, - ACTIONS(9306), 2, - anon_sym_SEMI, - anon_sym_COMMA, - STATE(6285), 9, + ACTIONS(9184), 1, + anon_sym_where, + ACTIONS(9186), 1, + anon_sym_from, + ACTIONS(9188), 1, + anon_sym_join, + ACTIONS(9190), 1, + anon_sym_let, + ACTIONS(9192), 1, + anon_sym_orderby, + ACTIONS(9266), 1, + anon_sym_group, + ACTIONS(9268), 1, + anon_sym_select, + STATE(3767), 1, + sym__select_or_group_clause, + STATE(6232), 1, + aux_sym__query_body_repeat1, + STATE(6351), 1, + sym__query_clause, + STATE(3786), 2, + sym_group_clause, + sym_select_clause, + STATE(6348), 5, + sym_from_clause, + sym_join_clause, + sym_let_clause, + sym_order_by_clause, + sym_where_clause, + STATE(6220), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -731348,7 +727075,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [261374] = 14, + [257312] = 23, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -731369,19 +727096,36 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9398), 1, - anon_sym_into, - STATE(6370), 1, - sym_join_into_clause, - ACTIONS(9396), 7, + ACTIONS(9184), 1, anon_sym_where, + ACTIONS(9186), 1, anon_sym_from, + ACTIONS(9188), 1, anon_sym_join, + ACTIONS(9190), 1, anon_sym_let, + ACTIONS(9192), 1, anon_sym_orderby, + ACTIONS(9270), 1, anon_sym_group, + ACTIONS(9272), 1, anon_sym_select, - STATE(6286), 9, + STATE(2957), 1, + sym__select_or_group_clause, + STATE(6237), 1, + aux_sym__query_body_repeat1, + STATE(6351), 1, + sym__query_clause, + STATE(2959), 2, + sym_group_clause, + sym_select_clause, + STATE(6348), 5, + sym_from_clause, + sym_join_clause, + sym_let_clause, + sym_order_by_clause, + sym_where_clause, + STATE(6221), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -731391,7 +727135,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [261431] = 20, + [257395] = 23, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -731412,25 +727156,36 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9314), 1, - anon_sym_EQ_GT, - ACTIONS(9339), 1, + ACTIONS(9184), 1, anon_sym_where, - ACTIONS(9400), 1, - anon_sym_SEMI, - ACTIONS(9402), 1, - anon_sym_LBRACE, - STATE(2600), 1, - sym_block, - STATE(2690), 1, - sym__function_body, - STATE(6316), 1, - aux_sym__class_declaration_initializer_repeat4, - STATE(6641), 1, - sym_type_parameter_constraints_clause, - STATE(7670), 1, - sym_arrow_expression_clause, - STATE(6287), 9, + ACTIONS(9186), 1, + anon_sym_from, + ACTIONS(9188), 1, + anon_sym_join, + ACTIONS(9190), 1, + anon_sym_let, + ACTIONS(9192), 1, + anon_sym_orderby, + ACTIONS(9194), 1, + anon_sym_group, + ACTIONS(9196), 1, + anon_sym_select, + STATE(3257), 1, + sym__select_or_group_clause, + STATE(6223), 1, + aux_sym__query_body_repeat1, + STATE(6351), 1, + sym__query_clause, + STATE(3240), 2, + sym_group_clause, + sym_select_clause, + STATE(6348), 5, + sym_from_clause, + sym_join_clause, + sym_let_clause, + sym_order_by_clause, + sym_where_clause, + STATE(6222), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -731440,7 +727195,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [261500] = 20, + [257478] = 23, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -731461,25 +727216,36 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9314), 1, - anon_sym_EQ_GT, - ACTIONS(9339), 1, + ACTIONS(9184), 1, anon_sym_where, - ACTIONS(9400), 1, - anon_sym_SEMI, - ACTIONS(9402), 1, - anon_sym_LBRACE, - STATE(2600), 1, - sym_block, - STATE(2821), 1, - sym__function_body, - STATE(6448), 1, - aux_sym__class_declaration_initializer_repeat4, - STATE(6641), 1, - sym_type_parameter_constraints_clause, - STATE(7670), 1, - sym_arrow_expression_clause, - STATE(6288), 9, + ACTIONS(9186), 1, + anon_sym_from, + ACTIONS(9188), 1, + anon_sym_join, + ACTIONS(9190), 1, + anon_sym_let, + ACTIONS(9192), 1, + anon_sym_orderby, + ACTIONS(9194), 1, + anon_sym_group, + ACTIONS(9196), 1, + anon_sym_select, + STATE(3264), 1, + sym__select_or_group_clause, + STATE(6237), 1, + aux_sym__query_body_repeat1, + STATE(6351), 1, + sym__query_clause, + STATE(3240), 2, + sym_group_clause, + sym_select_clause, + STATE(6348), 5, + sym_from_clause, + sym_join_clause, + sym_let_clause, + sym_order_by_clause, + sym_where_clause, + STATE(6223), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -731489,7 +727255,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [261569] = 20, + [257561] = 23, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -731510,25 +727276,36 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9314), 1, - anon_sym_EQ_GT, - ACTIONS(9339), 1, + ACTIONS(9184), 1, anon_sym_where, - ACTIONS(9400), 1, - anon_sym_SEMI, - ACTIONS(9402), 1, - anon_sym_LBRACE, - STATE(2600), 1, - sym_block, - STATE(2826), 1, - sym__function_body, - STATE(6299), 1, - aux_sym__class_declaration_initializer_repeat4, - STATE(6641), 1, - sym_type_parameter_constraints_clause, - STATE(7670), 1, - sym_arrow_expression_clause, - STATE(6289), 9, + ACTIONS(9186), 1, + anon_sym_from, + ACTIONS(9188), 1, + anon_sym_join, + ACTIONS(9190), 1, + anon_sym_let, + ACTIONS(9192), 1, + anon_sym_orderby, + ACTIONS(9278), 1, + anon_sym_group, + ACTIONS(9280), 1, + anon_sym_select, + STATE(5063), 1, + sym__select_or_group_clause, + STATE(6237), 1, + aux_sym__query_body_repeat1, + STATE(6351), 1, + sym__query_clause, + STATE(3240), 2, + sym_group_clause, + sym_select_clause, + STATE(6348), 5, + sym_from_clause, + sym_join_clause, + sym_let_clause, + sym_order_by_clause, + sym_where_clause, + STATE(6224), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -731538,7 +727315,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [261638] = 20, + [257644] = 23, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -731559,25 +727336,36 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9314), 1, - anon_sym_EQ_GT, - ACTIONS(9339), 1, + ACTIONS(9184), 1, anon_sym_where, - ACTIONS(9400), 1, - anon_sym_SEMI, - ACTIONS(9402), 1, - anon_sym_LBRACE, - STATE(2600), 1, - sym_block, - STATE(2837), 1, - sym__function_body, - STATE(6448), 1, - aux_sym__class_declaration_initializer_repeat4, - STATE(6641), 1, - sym_type_parameter_constraints_clause, - STATE(7670), 1, - sym_arrow_expression_clause, - STATE(6290), 9, + ACTIONS(9186), 1, + anon_sym_from, + ACTIONS(9188), 1, + anon_sym_join, + ACTIONS(9190), 1, + anon_sym_let, + ACTIONS(9192), 1, + anon_sym_orderby, + ACTIONS(9278), 1, + anon_sym_group, + ACTIONS(9280), 1, + anon_sym_select, + STATE(3257), 1, + sym__select_or_group_clause, + STATE(6226), 1, + aux_sym__query_body_repeat1, + STATE(6351), 1, + sym__query_clause, + STATE(3240), 2, + sym_group_clause, + sym_select_clause, + STATE(6348), 5, + sym_from_clause, + sym_join_clause, + sym_let_clause, + sym_order_by_clause, + sym_where_clause, + STATE(6225), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -731587,7 +727375,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [261707] = 20, + [257727] = 23, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -731608,25 +727396,36 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9314), 1, - anon_sym_EQ_GT, - ACTIONS(9339), 1, + ACTIONS(9184), 1, anon_sym_where, - ACTIONS(9400), 1, - anon_sym_SEMI, - ACTIONS(9402), 1, - anon_sym_LBRACE, - STATE(2600), 1, - sym_block, - STATE(2759), 1, - sym__function_body, - STATE(6448), 1, - aux_sym__class_declaration_initializer_repeat4, - STATE(6641), 1, - sym_type_parameter_constraints_clause, - STATE(7670), 1, - sym_arrow_expression_clause, - STATE(6291), 9, + ACTIONS(9186), 1, + anon_sym_from, + ACTIONS(9188), 1, + anon_sym_join, + ACTIONS(9190), 1, + anon_sym_let, + ACTIONS(9192), 1, + anon_sym_orderby, + ACTIONS(9278), 1, + anon_sym_group, + ACTIONS(9280), 1, + anon_sym_select, + STATE(3264), 1, + sym__select_or_group_clause, + STATE(6237), 1, + aux_sym__query_body_repeat1, + STATE(6351), 1, + sym__query_clause, + STATE(3240), 2, + sym_group_clause, + sym_select_clause, + STATE(6348), 5, + sym_from_clause, + sym_join_clause, + sym_let_clause, + sym_order_by_clause, + sym_where_clause, + STATE(6226), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -731636,7 +727435,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [261776] = 20, + [257810] = 23, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -731657,25 +727456,36 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9314), 1, - anon_sym_EQ_GT, - ACTIONS(9339), 1, + ACTIONS(9184), 1, anon_sym_where, - ACTIONS(9400), 1, - anon_sym_SEMI, - ACTIONS(9402), 1, - anon_sym_LBRACE, - STATE(2600), 1, - sym_block, - STATE(2692), 1, - sym__function_body, - STATE(6302), 1, - aux_sym__class_declaration_initializer_repeat4, - STATE(6641), 1, - sym_type_parameter_constraints_clause, - STATE(7670), 1, - sym_arrow_expression_clause, - STATE(6292), 9, + ACTIONS(9186), 1, + anon_sym_from, + ACTIONS(9188), 1, + anon_sym_join, + ACTIONS(9190), 1, + anon_sym_let, + ACTIONS(9192), 1, + anon_sym_orderby, + ACTIONS(9206), 1, + anon_sym_group, + ACTIONS(9208), 1, + anon_sym_select, + STATE(5068), 1, + sym__select_or_group_clause, + STATE(6237), 1, + aux_sym__query_body_repeat1, + STATE(6351), 1, + sym__query_clause, + STATE(3240), 2, + sym_group_clause, + sym_select_clause, + STATE(6348), 5, + sym_from_clause, + sym_join_clause, + sym_let_clause, + sym_order_by_clause, + sym_where_clause, + STATE(6227), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -731685,7 +727495,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [261845] = 20, + [257893] = 23, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -731706,25 +727516,36 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(5617), 1, - anon_sym_LBRACE, - ACTIONS(9314), 1, - anon_sym_EQ_GT, - ACTIONS(9339), 1, + ACTIONS(9184), 1, anon_sym_where, - ACTIONS(9400), 1, - anon_sym_SEMI, - STATE(2600), 1, - sym_block, - STATE(6300), 1, - aux_sym__class_declaration_initializer_repeat4, - STATE(6641), 1, - sym_type_parameter_constraints_clause, - STATE(7129), 1, - sym__function_body, - STATE(7670), 1, - sym_arrow_expression_clause, - STATE(6293), 9, + ACTIONS(9186), 1, + anon_sym_from, + ACTIONS(9188), 1, + anon_sym_join, + ACTIONS(9190), 1, + anon_sym_let, + ACTIONS(9192), 1, + anon_sym_orderby, + ACTIONS(9206), 1, + anon_sym_group, + ACTIONS(9208), 1, + anon_sym_select, + STATE(3257), 1, + sym__select_or_group_clause, + STATE(6229), 1, + aux_sym__query_body_repeat1, + STATE(6351), 1, + sym__query_clause, + STATE(3240), 2, + sym_group_clause, + sym_select_clause, + STATE(6348), 5, + sym_from_clause, + sym_join_clause, + sym_let_clause, + sym_order_by_clause, + sym_where_clause, + STATE(6228), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -731734,7 +727555,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [261914] = 20, + [257976] = 23, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -731755,25 +727576,36 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9314), 1, - anon_sym_EQ_GT, - ACTIONS(9339), 1, + ACTIONS(9184), 1, anon_sym_where, - ACTIONS(9400), 1, - anon_sym_SEMI, - ACTIONS(9402), 1, - anon_sym_LBRACE, - STATE(2600), 1, - sym_block, - STATE(2744), 1, - sym__function_body, - STATE(6303), 1, - aux_sym__class_declaration_initializer_repeat4, - STATE(6641), 1, - sym_type_parameter_constraints_clause, - STATE(7670), 1, - sym_arrow_expression_clause, - STATE(6294), 9, + ACTIONS(9186), 1, + anon_sym_from, + ACTIONS(9188), 1, + anon_sym_join, + ACTIONS(9190), 1, + anon_sym_let, + ACTIONS(9192), 1, + anon_sym_orderby, + ACTIONS(9206), 1, + anon_sym_group, + ACTIONS(9208), 1, + anon_sym_select, + STATE(3264), 1, + sym__select_or_group_clause, + STATE(6237), 1, + aux_sym__query_body_repeat1, + STATE(6351), 1, + sym__query_clause, + STATE(3240), 2, + sym_group_clause, + sym_select_clause, + STATE(6348), 5, + sym_from_clause, + sym_join_clause, + sym_let_clause, + sym_order_by_clause, + sym_where_clause, + STATE(6229), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -731783,7 +727615,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [261983] = 20, + [258059] = 23, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -731804,25 +727636,36 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9314), 1, - anon_sym_EQ_GT, - ACTIONS(9339), 1, + ACTIONS(9184), 1, anon_sym_where, - ACTIONS(9400), 1, - anon_sym_SEMI, - ACTIONS(9402), 1, - anon_sym_LBRACE, - STATE(2600), 1, - sym_block, - STATE(2761), 1, - sym__function_body, - STATE(6448), 1, - aux_sym__class_declaration_initializer_repeat4, - STATE(6641), 1, - sym_type_parameter_constraints_clause, - STATE(7670), 1, - sym_arrow_expression_clause, - STATE(6295), 9, + ACTIONS(9186), 1, + anon_sym_from, + ACTIONS(9188), 1, + anon_sym_join, + ACTIONS(9190), 1, + anon_sym_let, + ACTIONS(9192), 1, + anon_sym_orderby, + ACTIONS(9234), 1, + anon_sym_group, + ACTIONS(9236), 1, + anon_sym_select, + STATE(3926), 1, + sym__select_or_group_clause, + STATE(6237), 1, + aux_sym__query_body_repeat1, + STATE(6351), 1, + sym__query_clause, + STATE(3240), 2, + sym_group_clause, + sym_select_clause, + STATE(6348), 5, + sym_from_clause, + sym_join_clause, + sym_let_clause, + sym_order_by_clause, + sym_where_clause, + STATE(6230), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -731832,7 +727675,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [262052] = 13, + [258142] = 23, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -731853,17 +727696,36 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9404), 1, - anon_sym_COMMA, - ACTIONS(9407), 7, + ACTIONS(9184), 1, anon_sym_where, + ACTIONS(9186), 1, anon_sym_from, + ACTIONS(9188), 1, anon_sym_join, + ACTIONS(9190), 1, anon_sym_let, + ACTIONS(9192), 1, anon_sym_orderby, + ACTIONS(9246), 1, anon_sym_group, + ACTIONS(9248), 1, anon_sym_select, - STATE(6296), 10, + STATE(5076), 1, + sym__select_or_group_clause, + STATE(6237), 1, + aux_sym__query_body_repeat1, + STATE(6351), 1, + sym__query_clause, + STATE(3240), 2, + sym_group_clause, + sym_select_clause, + STATE(6348), 5, + sym_from_clause, + sym_join_clause, + sym_let_clause, + sym_order_by_clause, + sym_where_clause, + STATE(6231), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -731873,8 +727735,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - aux_sym_order_by_clause_repeat1, - [262107] = 15, + [258225] = 23, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -731895,19 +727756,36 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9411), 1, - anon_sym_LPAREN, - ACTIONS(9414), 1, - anon_sym_LT, - STATE(6444), 2, - sym_type_parameter_list, - sym_parameter_list, - ACTIONS(9409), 4, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LBRACE, + ACTIONS(9184), 1, anon_sym_where, - STATE(6297), 10, + ACTIONS(9186), 1, + anon_sym_from, + ACTIONS(9188), 1, + anon_sym_join, + ACTIONS(9190), 1, + anon_sym_let, + ACTIONS(9192), 1, + anon_sym_orderby, + ACTIONS(9266), 1, + anon_sym_group, + ACTIONS(9268), 1, + anon_sym_select, + STATE(3808), 1, + sym__select_or_group_clause, + STATE(6237), 1, + aux_sym__query_body_repeat1, + STATE(6351), 1, + sym__query_clause, + STATE(3786), 2, + sym_group_clause, + sym_select_clause, + STATE(6348), 5, + sym_from_clause, + sym_join_clause, + sym_let_clause, + sym_order_by_clause, + sym_where_clause, + STATE(6232), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -731917,8 +727795,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - aux_sym__record_declaration_initializer_repeat1, - [262166] = 20, + [258308] = 23, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -731939,25 +727816,36 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(5274), 1, - anon_sym_LBRACE, - ACTIONS(9314), 1, - anon_sym_EQ_GT, - ACTIONS(9339), 1, + ACTIONS(9184), 1, anon_sym_where, - ACTIONS(9417), 1, - anon_sym_SEMI, - STATE(1935), 1, - sym__function_body, - STATE(1977), 1, - sym_block, - STATE(6312), 1, - aux_sym__class_declaration_initializer_repeat4, - STATE(6641), 1, - sym_type_parameter_constraints_clause, - STATE(7503), 1, - sym_arrow_expression_clause, - STATE(6298), 9, + ACTIONS(9186), 1, + anon_sym_from, + ACTIONS(9188), 1, + anon_sym_join, + ACTIONS(9190), 1, + anon_sym_let, + ACTIONS(9192), 1, + anon_sym_orderby, + ACTIONS(9246), 1, + anon_sym_group, + ACTIONS(9248), 1, + anon_sym_select, + STATE(3264), 1, + sym__select_or_group_clause, + STATE(6237), 1, + aux_sym__query_body_repeat1, + STATE(6351), 1, + sym__query_clause, + STATE(3240), 2, + sym_group_clause, + sym_select_clause, + STATE(6348), 5, + sym_from_clause, + sym_join_clause, + sym_let_clause, + sym_order_by_clause, + sym_where_clause, + STATE(6233), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -731967,7 +727855,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [262235] = 20, + [258391] = 26, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -731988,25 +727876,38 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9314), 1, - anon_sym_EQ_GT, - ACTIONS(9339), 1, - anon_sym_where, - ACTIONS(9400), 1, - anon_sym_SEMI, - ACTIONS(9402), 1, + ACTIONS(3640), 1, + anon_sym_DOT, + ACTIONS(5549), 1, + anon_sym_LBRACK, + ACTIONS(6893), 1, + anon_sym_COLON_COLON, + ACTIONS(8892), 1, + anon_sym_LPAREN, + ACTIONS(9284), 1, + anon_sym_EQ, + ACTIONS(9286), 1, anon_sym_LBRACE, - STATE(2600), 1, - sym_block, - STATE(2797), 1, - sym__function_body, - STATE(6448), 1, - aux_sym__class_declaration_initializer_repeat4, - STATE(6641), 1, - sym_type_parameter_constraints_clause, - STATE(7670), 1, + ACTIONS(9288), 1, + anon_sym_LT, + ACTIONS(9290), 1, + anon_sym_EQ_GT, + STATE(2171), 1, + sym_type_argument_list, + STATE(2621), 1, + sym_accessor_list, + STATE(6279), 1, + sym_parameter_list, + STATE(6806), 1, + sym_bracketed_argument_list, + STATE(7052), 1, + sym_type_parameter_list, + STATE(7447), 1, sym_arrow_expression_clause, - STATE(6299), 9, + ACTIONS(9282), 2, + anon_sym_SEMI, + anon_sym_COMMA, + STATE(6234), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -732016,7 +727917,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [262304] = 20, + [258479] = 26, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -732037,25 +727938,38 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(5617), 1, + ACTIONS(3640), 1, + anon_sym_DOT, + ACTIONS(5549), 1, + anon_sym_LBRACK, + ACTIONS(6893), 1, + anon_sym_COLON_COLON, + ACTIONS(8892), 1, + anon_sym_LPAREN, + ACTIONS(9284), 1, + anon_sym_EQ, + ACTIONS(9286), 1, anon_sym_LBRACE, - ACTIONS(9314), 1, + ACTIONS(9288), 1, + anon_sym_LT, + ACTIONS(9290), 1, anon_sym_EQ_GT, - ACTIONS(9339), 1, - anon_sym_where, - ACTIONS(9400), 1, - anon_sym_SEMI, - STATE(2600), 1, - sym_block, - STATE(6448), 1, - aux_sym__class_declaration_initializer_repeat4, - STATE(6641), 1, - sym_type_parameter_constraints_clause, - STATE(7221), 1, - sym__function_body, - STATE(7670), 1, + STATE(2171), 1, + sym_type_argument_list, + STATE(2641), 1, + sym_accessor_list, + STATE(6301), 1, + sym_parameter_list, + STATE(6806), 1, + sym_bracketed_argument_list, + STATE(7207), 1, + sym_type_parameter_list, + STATE(7489), 1, sym_arrow_expression_clause, - STATE(6300), 9, + ACTIONS(9282), 2, + anon_sym_SEMI, + anon_sym_COMMA, + STATE(6235), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -732065,7 +727979,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [262373] = 20, + [258567] = 26, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -732086,25 +728000,38 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9314), 1, - anon_sym_EQ_GT, - ACTIONS(9339), 1, - anon_sym_where, - ACTIONS(9400), 1, - anon_sym_SEMI, - ACTIONS(9402), 1, - anon_sym_LBRACE, - STATE(2600), 1, - sym_block, - STATE(2817), 1, - sym__function_body, + ACTIONS(3640), 1, + anon_sym_DOT, + ACTIONS(5549), 1, + anon_sym_LBRACK, + ACTIONS(6893), 1, + anon_sym_COLON_COLON, + ACTIONS(8892), 1, + anon_sym_LPAREN, + ACTIONS(9284), 1, + anon_sym_EQ, + ACTIONS(9286), 1, + anon_sym_LBRACE, + ACTIONS(9288), 1, + anon_sym_LT, + ACTIONS(9290), 1, + anon_sym_EQ_GT, + STATE(2171), 1, + sym_type_argument_list, + STATE(2633), 1, + sym_accessor_list, STATE(6304), 1, - aux_sym__class_declaration_initializer_repeat4, - STATE(6641), 1, - sym_type_parameter_constraints_clause, - STATE(7670), 1, + sym_parameter_list, + STATE(6806), 1, + sym_bracketed_argument_list, + STATE(7196), 1, + sym_type_parameter_list, + STATE(7430), 1, sym_arrow_expression_clause, - STATE(6301), 9, + ACTIONS(9282), 2, + anon_sym_SEMI, + anon_sym_COMMA, + STATE(6236), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -732114,7 +728041,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [262442] = 20, + [258655] = 19, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -732135,25 +728062,28 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9314), 1, - anon_sym_EQ_GT, - ACTIONS(9339), 1, + ACTIONS(9292), 1, anon_sym_where, - ACTIONS(9400), 1, - anon_sym_SEMI, - ACTIONS(9402), 1, - anon_sym_LBRACE, - STATE(2600), 1, - sym_block, - STATE(2838), 1, - sym__function_body, - STATE(6448), 1, - aux_sym__class_declaration_initializer_repeat4, - STATE(6641), 1, - sym_type_parameter_constraints_clause, - STATE(7670), 1, - sym_arrow_expression_clause, - STATE(6302), 9, + ACTIONS(9295), 1, + anon_sym_from, + ACTIONS(9298), 1, + anon_sym_join, + ACTIONS(9301), 1, + anon_sym_let, + ACTIONS(9304), 1, + anon_sym_orderby, + STATE(6351), 1, + sym__query_clause, + ACTIONS(9307), 2, + anon_sym_group, + anon_sym_select, + STATE(6348), 5, + sym_from_clause, + sym_join_clause, + sym_let_clause, + sym_order_by_clause, + sym_where_clause, + STATE(6237), 10, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -732163,7 +728093,8 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [262511] = 20, + aux_sym__query_body_repeat1, + [258727] = 16, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -732184,25 +728115,25 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9314), 1, - anon_sym_EQ_GT, - ACTIONS(9339), 1, - anon_sym_where, - ACTIONS(9400), 1, + ACTIONS(3638), 1, + anon_sym_COLON, + ACTIONS(9309), 1, + anon_sym_LT, + ACTIONS(9312), 1, + anon_sym_COLON_COLON, + STATE(4054), 1, + sym_type_argument_list, + ACTIONS(3640), 9, anon_sym_SEMI, - ACTIONS(9402), 1, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_LPAREN, anon_sym_LBRACE, - STATE(2600), 1, - sym_block, - STATE(2656), 1, - sym__function_body, - STATE(6448), 1, - aux_sym__class_declaration_initializer_repeat4, - STATE(6641), 1, - sym_type_parameter_constraints_clause, - STATE(7670), 1, - sym_arrow_expression_clause, - STATE(6303), 9, + anon_sym_where, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_DOT, + STATE(6238), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -732212,7 +728143,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [262580] = 20, + [258792] = 21, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -732233,25 +728164,29 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9314), 1, - anon_sym_EQ_GT, - ACTIONS(9339), 1, + ACTIONS(8892), 1, + anon_sym_LPAREN, + ACTIONS(9316), 1, + anon_sym_COLON, + ACTIONS(9318), 1, + anon_sym_LT, + ACTIONS(9320), 1, anon_sym_where, - ACTIONS(9400), 1, - anon_sym_SEMI, - ACTIONS(9402), 1, - anon_sym_LBRACE, - STATE(2600), 1, - sym_block, - STATE(2661), 1, - sym__function_body, - STATE(6448), 1, + STATE(6298), 1, + aux_sym__record_declaration_initializer_repeat1, + STATE(6489), 1, aux_sym__class_declaration_initializer_repeat4, - STATE(6641), 1, + STATE(6505), 1, + sym_record_base, + STATE(6694), 1, sym_type_parameter_constraints_clause, - STATE(7670), 1, - sym_arrow_expression_clause, - STATE(6304), 9, + ACTIONS(9314), 2, + anon_sym_SEMI, + anon_sym_LBRACE, + STATE(6429), 2, + sym_type_parameter_list, + sym_parameter_list, + STATE(6239), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -732261,7 +728196,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [262649] = 14, + [258866] = 21, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -732282,19 +728217,29 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9419), 1, - anon_sym_COMMA, - STATE(6296), 1, - aux_sym_order_by_clause_repeat1, - ACTIONS(9421), 7, + ACTIONS(8892), 1, + anon_sym_LPAREN, + ACTIONS(9316), 1, + anon_sym_COLON, + ACTIONS(9318), 1, + anon_sym_LT, + ACTIONS(9320), 1, anon_sym_where, - anon_sym_from, - anon_sym_join, - anon_sym_let, - anon_sym_orderby, - anon_sym_group, - anon_sym_select, - STATE(6305), 9, + STATE(6256), 1, + aux_sym__record_declaration_initializer_repeat1, + STATE(6558), 1, + sym_record_base, + STATE(6559), 1, + aux_sym__class_declaration_initializer_repeat4, + STATE(6694), 1, + sym_type_parameter_constraints_clause, + ACTIONS(9322), 2, + anon_sym_SEMI, + anon_sym_LBRACE, + STATE(6429), 2, + sym_type_parameter_list, + sym_parameter_list, + STATE(6240), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -732304,7 +728249,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [262706] = 14, + [258940] = 20, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -732325,19 +728270,28 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9419), 1, - anon_sym_COMMA, - STATE(6305), 1, - aux_sym_order_by_clause_repeat1, - ACTIONS(9423), 7, + ACTIONS(8892), 1, + anon_sym_LPAREN, + ACTIONS(9318), 1, + anon_sym_LT, + ACTIONS(9320), 1, anon_sym_where, - anon_sym_from, - anon_sym_join, - anon_sym_let, - anon_sym_orderby, - anon_sym_group, - anon_sym_select, - STATE(6306), 9, + ACTIONS(9326), 1, + anon_sym_COLON, + STATE(6253), 1, + aux_sym__class_declaration_initializer_repeat3, + STATE(6555), 1, + aux_sym__class_declaration_initializer_repeat4, + STATE(6694), 1, + sym_type_parameter_constraints_clause, + ACTIONS(9324), 2, + anon_sym_SEMI, + anon_sym_LBRACE, + STATE(6378), 3, + sym_type_parameter_list, + sym_base_list, + sym_parameter_list, + STATE(6241), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -732347,7 +728301,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [262763] = 20, + [259012] = 21, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -732368,25 +728322,29 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(5293), 1, - anon_sym_LBRACE, - ACTIONS(9314), 1, - anon_sym_EQ_GT, - ACTIONS(9339), 1, + ACTIONS(8892), 1, + anon_sym_LPAREN, + ACTIONS(9316), 1, + anon_sym_COLON, + ACTIONS(9318), 1, + anon_sym_LT, + ACTIONS(9320), 1, anon_sym_where, - ACTIONS(9425), 1, - anon_sym_SEMI, - STATE(2019), 1, - sym__function_body, - STATE(2034), 1, - sym_block, - STATE(6448), 1, + STATE(6298), 1, + aux_sym__record_declaration_initializer_repeat1, + STATE(6560), 1, aux_sym__class_declaration_initializer_repeat4, - STATE(6641), 1, + STATE(6561), 1, + sym_record_base, + STATE(6694), 1, sym_type_parameter_constraints_clause, - STATE(7347), 1, - sym_arrow_expression_clause, - STATE(6307), 9, + ACTIONS(9328), 2, + anon_sym_SEMI, + anon_sym_LBRACE, + STATE(6429), 2, + sym_type_parameter_list, + sym_parameter_list, + STATE(6242), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -732396,7 +728354,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [262832] = 20, + [259086] = 20, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -732417,25 +728375,28 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9314), 1, - anon_sym_EQ_GT, - ACTIONS(9339), 1, + ACTIONS(8892), 1, + anon_sym_LPAREN, + ACTIONS(9318), 1, + anon_sym_LT, + ACTIONS(9320), 1, anon_sym_where, - ACTIONS(9400), 1, - anon_sym_SEMI, - ACTIONS(9402), 1, - anon_sym_LBRACE, - STATE(2600), 1, - sym_block, - STATE(2701), 1, - sym__function_body, - STATE(6288), 1, + ACTIONS(9326), 1, + anon_sym_COLON, + STATE(6269), 1, + aux_sym__class_declaration_initializer_repeat3, + STATE(6563), 1, aux_sym__class_declaration_initializer_repeat4, - STATE(6641), 1, + STATE(6694), 1, sym_type_parameter_constraints_clause, - STATE(7670), 1, - sym_arrow_expression_clause, - STATE(6308), 9, + ACTIONS(9330), 2, + anon_sym_SEMI, + anon_sym_LBRACE, + STATE(6378), 3, + sym_type_parameter_list, + sym_base_list, + sym_parameter_list, + STATE(6243), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -732445,7 +728406,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [262901] = 20, + [259158] = 21, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -732466,25 +728427,29 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9314), 1, - anon_sym_EQ_GT, - ACTIONS(9339), 1, + ACTIONS(8892), 1, + anon_sym_LPAREN, + ACTIONS(9316), 1, + anon_sym_COLON, + ACTIONS(9318), 1, + anon_sym_LT, + ACTIONS(9320), 1, anon_sym_where, - ACTIONS(9400), 1, - anon_sym_SEMI, - ACTIONS(9402), 1, - anon_sym_LBRACE, - STATE(2600), 1, - sym_block, - STATE(2707), 1, - sym__function_body, - STATE(6448), 1, + STATE(6298), 1, + aux_sym__record_declaration_initializer_repeat1, + STATE(6565), 1, aux_sym__class_declaration_initializer_repeat4, - STATE(6641), 1, + STATE(6566), 1, + sym_record_base, + STATE(6694), 1, sym_type_parameter_constraints_clause, - STATE(7670), 1, - sym_arrow_expression_clause, - STATE(6309), 9, + ACTIONS(9332), 2, + anon_sym_SEMI, + anon_sym_LBRACE, + STATE(6429), 2, + sym_type_parameter_list, + sym_parameter_list, + STATE(6244), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -732494,7 +728459,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [262970] = 19, + [259232] = 20, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -732515,24 +728480,28 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(5573), 1, - anon_sym_LBRACK, - ACTIONS(8916), 1, + ACTIONS(8892), 1, anon_sym_LPAREN, - ACTIONS(9337), 1, + ACTIONS(9318), 1, anon_sym_LT, - ACTIONS(9367), 1, - anon_sym_EQ, - STATE(6670), 1, - sym_parameter_list, - STATE(6830), 1, - sym_bracketed_argument_list, - STATE(7241), 1, - sym_type_parameter_list, - ACTIONS(9306), 2, + ACTIONS(9320), 1, + anon_sym_where, + ACTIONS(9326), 1, + anon_sym_COLON, + STATE(6269), 1, + aux_sym__class_declaration_initializer_repeat3, + STATE(6567), 1, + aux_sym__class_declaration_initializer_repeat4, + STATE(6694), 1, + sym_type_parameter_constraints_clause, + ACTIONS(9334), 2, anon_sym_SEMI, - anon_sym_COMMA, - STATE(6310), 9, + anon_sym_LBRACE, + STATE(6378), 3, + sym_type_parameter_list, + sym_base_list, + sym_parameter_list, + STATE(6245), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -732542,7 +728511,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [263037] = 20, + [259304] = 20, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -732563,25 +728532,28 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9314), 1, - anon_sym_EQ_GT, - ACTIONS(9339), 1, + ACTIONS(8892), 1, + anon_sym_LPAREN, + ACTIONS(9318), 1, + anon_sym_LT, + ACTIONS(9320), 1, anon_sym_where, - ACTIONS(9400), 1, - anon_sym_SEMI, - ACTIONS(9402), 1, - anon_sym_LBRACE, - STATE(2600), 1, - sym_block, - STATE(2709), 1, - sym__function_body, - STATE(6448), 1, + ACTIONS(9326), 1, + anon_sym_COLON, + STATE(6261), 1, + aux_sym__class_declaration_initializer_repeat3, + STATE(6574), 1, aux_sym__class_declaration_initializer_repeat4, - STATE(6641), 1, + STATE(6694), 1, sym_type_parameter_constraints_clause, - STATE(7670), 1, - sym_arrow_expression_clause, - STATE(6311), 9, + ACTIONS(9336), 2, + anon_sym_SEMI, + anon_sym_LBRACE, + STATE(6378), 3, + sym_type_parameter_list, + sym_base_list, + sym_parameter_list, + STATE(6246), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -732591,7 +728563,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [263106] = 20, + [259376] = 21, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -732612,25 +728584,29 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(5274), 1, - anon_sym_LBRACE, - ACTIONS(9314), 1, - anon_sym_EQ_GT, - ACTIONS(9339), 1, + ACTIONS(8892), 1, + anon_sym_LPAREN, + ACTIONS(9316), 1, + anon_sym_COLON, + ACTIONS(9318), 1, + anon_sym_LT, + ACTIONS(9320), 1, anon_sym_where, - ACTIONS(9417), 1, - anon_sym_SEMI, - STATE(1929), 1, - sym__function_body, - STATE(1977), 1, - sym_block, - STATE(6448), 1, + STATE(6239), 1, + aux_sym__record_declaration_initializer_repeat1, + STATE(6593), 1, + sym_record_base, + STATE(6598), 1, aux_sym__class_declaration_initializer_repeat4, - STATE(6641), 1, + STATE(6694), 1, sym_type_parameter_constraints_clause, - STATE(7503), 1, - sym_arrow_expression_clause, - STATE(6312), 9, + ACTIONS(9338), 2, + anon_sym_SEMI, + anon_sym_LBRACE, + STATE(6429), 2, + sym_type_parameter_list, + sym_parameter_list, + STATE(6247), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -732640,7 +728616,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [263175] = 20, + [259450] = 20, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -732661,25 +728637,28 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9314), 1, - anon_sym_EQ_GT, - ACTIONS(9339), 1, + ACTIONS(8892), 1, + anon_sym_LPAREN, + ACTIONS(9318), 1, + anon_sym_LT, + ACTIONS(9320), 1, anon_sym_where, - ACTIONS(9400), 1, - anon_sym_SEMI, - ACTIONS(9402), 1, - anon_sym_LBRACE, - STATE(2600), 1, - sym_block, - STATE(2730), 1, - sym__function_body, - STATE(6290), 1, + ACTIONS(9326), 1, + anon_sym_COLON, + STATE(6269), 1, + aux_sym__class_declaration_initializer_repeat3, + STATE(6610), 1, aux_sym__class_declaration_initializer_repeat4, - STATE(6641), 1, + STATE(6694), 1, sym_type_parameter_constraints_clause, - STATE(7670), 1, - sym_arrow_expression_clause, - STATE(6313), 9, + ACTIONS(9340), 2, + anon_sym_SEMI, + anon_sym_LBRACE, + STATE(6378), 3, + sym_type_parameter_list, + sym_base_list, + sym_parameter_list, + STATE(6248), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -732689,7 +728668,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [263244] = 20, + [259522] = 20, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -732710,25 +728689,28 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(5771), 1, - anon_sym_LBRACE, - ACTIONS(9314), 1, - anon_sym_EQ_GT, - ACTIONS(9339), 1, + ACTIONS(8892), 1, + anon_sym_LPAREN, + ACTIONS(9318), 1, + anon_sym_LT, + ACTIONS(9320), 1, anon_sym_where, - ACTIONS(9427), 1, - anon_sym_SEMI, - STATE(2104), 1, - sym_block, - STATE(2139), 1, - sym__function_body, - STATE(6448), 1, + ACTIONS(9326), 1, + anon_sym_COLON, + STATE(6243), 1, + aux_sym__class_declaration_initializer_repeat3, + STATE(6612), 1, aux_sym__class_declaration_initializer_repeat4, - STATE(6641), 1, + STATE(6694), 1, sym_type_parameter_constraints_clause, - STATE(7338), 1, - sym_arrow_expression_clause, - STATE(6314), 9, + ACTIONS(9342), 2, + anon_sym_SEMI, + anon_sym_LBRACE, + STATE(6378), 3, + sym_type_parameter_list, + sym_base_list, + sym_parameter_list, + STATE(6249), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -732738,7 +728720,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [263313] = 20, + [259594] = 21, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -732759,25 +728741,29 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9314), 1, - anon_sym_EQ_GT, - ACTIONS(9339), 1, + ACTIONS(8892), 1, + anon_sym_LPAREN, + ACTIONS(9316), 1, + anon_sym_COLON, + ACTIONS(9318), 1, + anon_sym_LT, + ACTIONS(9320), 1, anon_sym_where, - ACTIONS(9400), 1, - anon_sym_SEMI, - ACTIONS(9402), 1, - anon_sym_LBRACE, - STATE(2600), 1, - sym_block, - STATE(2746), 1, - sym__function_body, - STATE(6291), 1, + STATE(6244), 1, + aux_sym__record_declaration_initializer_repeat1, + STATE(6454), 1, + sym_record_base, + STATE(6455), 1, aux_sym__class_declaration_initializer_repeat4, - STATE(6641), 1, + STATE(6694), 1, sym_type_parameter_constraints_clause, - STATE(7670), 1, - sym_arrow_expression_clause, - STATE(6315), 9, + ACTIONS(9344), 2, + anon_sym_SEMI, + anon_sym_LBRACE, + STATE(6429), 2, + sym_type_parameter_list, + sym_parameter_list, + STATE(6250), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -732787,7 +728773,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [263382] = 20, + [259668] = 20, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -732808,25 +728794,28 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9314), 1, - anon_sym_EQ_GT, - ACTIONS(9339), 1, + ACTIONS(8892), 1, + anon_sym_LPAREN, + ACTIONS(9318), 1, + anon_sym_LT, + ACTIONS(9320), 1, anon_sym_where, - ACTIONS(9400), 1, - anon_sym_SEMI, - ACTIONS(9402), 1, - anon_sym_LBRACE, - STATE(2600), 1, - sym_block, - STATE(2749), 1, - sym__function_body, - STATE(6448), 1, + ACTIONS(9326), 1, + anon_sym_COLON, + STATE(6245), 1, + aux_sym__class_declaration_initializer_repeat3, + STATE(6457), 1, aux_sym__class_declaration_initializer_repeat4, - STATE(6641), 1, + STATE(6694), 1, sym_type_parameter_constraints_clause, - STATE(7670), 1, - sym_arrow_expression_clause, - STATE(6316), 9, + ACTIONS(9346), 2, + anon_sym_SEMI, + anon_sym_LBRACE, + STATE(6378), 3, + sym_type_parameter_list, + sym_base_list, + sym_parameter_list, + STATE(6251), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -732836,7 +728825,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [263451] = 20, + [259740] = 21, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -732857,25 +728846,29 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(5293), 1, - anon_sym_LBRACE, - ACTIONS(9314), 1, - anon_sym_EQ_GT, - ACTIONS(9339), 1, + ACTIONS(8892), 1, + anon_sym_LPAREN, + ACTIONS(9316), 1, + anon_sym_COLON, + ACTIONS(9318), 1, + anon_sym_LT, + ACTIONS(9320), 1, anon_sym_where, - ACTIONS(9425), 1, - anon_sym_SEMI, - STATE(2034), 1, - sym_block, - STATE(2035), 1, - sym__function_body, - STATE(6307), 1, + STATE(6242), 1, + aux_sym__record_declaration_initializer_repeat1, + STATE(6572), 1, + sym_record_base, + STATE(6575), 1, aux_sym__class_declaration_initializer_repeat4, - STATE(6641), 1, + STATE(6694), 1, sym_type_parameter_constraints_clause, - STATE(7347), 1, - sym_arrow_expression_clause, - STATE(6317), 9, + ACTIONS(9348), 2, + anon_sym_SEMI, + anon_sym_LBRACE, + STATE(6429), 2, + sym_type_parameter_list, + sym_parameter_list, + STATE(6252), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -732885,7 +728878,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [263520] = 16, + [259814] = 20, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -732906,21 +728899,28 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(3660), 1, - anon_sym_COLON, - ACTIONS(9429), 1, - anon_sym_LT, - ACTIONS(9432), 1, - anon_sym_COLON_COLON, - STATE(2183), 1, - sym_type_argument_list, - ACTIONS(3662), 5, - anon_sym_COMMA, + ACTIONS(8892), 1, anon_sym_LPAREN, - anon_sym_LBRACE, + ACTIONS(9318), 1, + anon_sym_LT, + ACTIONS(9320), 1, anon_sym_where, - anon_sym_DOT, - STATE(6318), 9, + ACTIONS(9326), 1, + anon_sym_COLON, + STATE(6269), 1, + aux_sym__class_declaration_initializer_repeat3, + STATE(6540), 1, + aux_sym__class_declaration_initializer_repeat4, + STATE(6694), 1, + sym_type_parameter_constraints_clause, + ACTIONS(9350), 2, + anon_sym_SEMI, + anon_sym_LBRACE, + STATE(6378), 3, + sym_type_parameter_list, + sym_base_list, + sym_parameter_list, + STATE(6253), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -732930,7 +728930,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [263581] = 16, + [259886] = 20, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -732951,20 +728951,28 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9434), 1, - anon_sym_COLON, - ACTIONS(9437), 1, + ACTIONS(8892), 1, anon_sym_LPAREN, - ACTIONS(9442), 1, + ACTIONS(9318), 1, anon_sym_LT, - ACTIONS(9440), 2, - anon_sym_LBRACE, + ACTIONS(9320), 1, anon_sym_where, - STATE(6505), 3, + ACTIONS(9326), 1, + anon_sym_COLON, + STATE(6255), 1, + aux_sym__class_declaration_initializer_repeat3, + STATE(6542), 1, + aux_sym__class_declaration_initializer_repeat4, + STATE(6694), 1, + sym_type_parameter_constraints_clause, + ACTIONS(9352), 2, + anon_sym_SEMI, + anon_sym_LBRACE, + STATE(6378), 3, sym_type_parameter_list, sym_base_list, sym_parameter_list, - STATE(6319), 10, + STATE(6254), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -732974,8 +728982,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - aux_sym__class_declaration_initializer_repeat3, - [263642] = 20, + [259958] = 20, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -732996,25 +729003,28 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9314), 1, - anon_sym_EQ_GT, - ACTIONS(9339), 1, + ACTIONS(8892), 1, + anon_sym_LPAREN, + ACTIONS(9318), 1, + anon_sym_LT, + ACTIONS(9320), 1, anon_sym_where, - ACTIONS(9400), 1, - anon_sym_SEMI, - ACTIONS(9402), 1, - anon_sym_LBRACE, - STATE(2600), 1, - sym_block, - STATE(2770), 1, - sym__function_body, - STATE(6295), 1, + ACTIONS(9326), 1, + anon_sym_COLON, + STATE(6269), 1, + aux_sym__class_declaration_initializer_repeat3, + STATE(6513), 1, aux_sym__class_declaration_initializer_repeat4, - STATE(6641), 1, + STATE(6694), 1, sym_type_parameter_constraints_clause, - STATE(7670), 1, - sym_arrow_expression_clause, - STATE(6320), 9, + ACTIONS(9354), 2, + anon_sym_SEMI, + anon_sym_LBRACE, + STATE(6378), 3, + sym_type_parameter_list, + sym_base_list, + sym_parameter_list, + STATE(6255), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -733024,7 +729034,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [263711] = 20, + [260030] = 21, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -733045,25 +729055,29 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9314), 1, - anon_sym_EQ_GT, - ACTIONS(9339), 1, + ACTIONS(8892), 1, + anon_sym_LPAREN, + ACTIONS(9316), 1, + anon_sym_COLON, + ACTIONS(9318), 1, + anon_sym_LT, + ACTIONS(9320), 1, anon_sym_where, - ACTIONS(9400), 1, - anon_sym_SEMI, - ACTIONS(9402), 1, - anon_sym_LBRACE, - STATE(2600), 1, - sym_block, - STATE(2839), 1, - sym__function_body, - STATE(6309), 1, + STATE(6298), 1, + aux_sym__record_declaration_initializer_repeat1, + STATE(6520), 1, aux_sym__class_declaration_initializer_repeat4, - STATE(6641), 1, + STATE(6522), 1, + sym_record_base, + STATE(6694), 1, sym_type_parameter_constraints_clause, - STATE(7670), 1, - sym_arrow_expression_clause, - STATE(6321), 9, + ACTIONS(9356), 2, + anon_sym_SEMI, + anon_sym_LBRACE, + STATE(6429), 2, + sym_type_parameter_list, + sym_parameter_list, + STATE(6256), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -733073,7 +729087,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [263780] = 20, + [260104] = 20, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -733094,25 +729108,28 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(5771), 1, - anon_sym_LBRACE, - ACTIONS(9314), 1, - anon_sym_EQ_GT, - ACTIONS(9339), 1, + ACTIONS(8892), 1, + anon_sym_LPAREN, + ACTIONS(9318), 1, + anon_sym_LT, + ACTIONS(9320), 1, anon_sym_where, - ACTIONS(9427), 1, - anon_sym_SEMI, - STATE(2104), 1, - sym_block, - STATE(2105), 1, - sym__function_body, - STATE(6314), 1, + ACTIONS(9326), 1, + anon_sym_COLON, + STATE(6248), 1, + aux_sym__class_declaration_initializer_repeat3, + STATE(6476), 1, aux_sym__class_declaration_initializer_repeat4, - STATE(6641), 1, + STATE(6694), 1, sym_type_parameter_constraints_clause, - STATE(7338), 1, - sym_arrow_expression_clause, - STATE(6322), 9, + ACTIONS(9358), 2, + anon_sym_SEMI, + anon_sym_LBRACE, + STATE(6378), 3, + sym_type_parameter_list, + sym_base_list, + sym_parameter_list, + STATE(6257), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -733122,7 +729139,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [263849] = 16, + [260176] = 20, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -733143,21 +729160,28 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(3669), 1, - anon_sym_COLON_COLON, - ACTIONS(6311), 1, + ACTIONS(8892), 1, + anon_sym_LPAREN, + ACTIONS(9318), 1, anon_sym_LT, - STATE(4063), 1, - sym_type_argument_list, - ACTIONS(9445), 2, - anon_sym_COMMA, - anon_sym_GT, - ACTIONS(3662), 4, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_STAR, - anon_sym_DOT, - STATE(6323), 9, + ACTIONS(9320), 1, + anon_sym_where, + ACTIONS(9326), 1, + anon_sym_COLON, + STATE(6269), 1, + aux_sym__class_declaration_initializer_repeat3, + STATE(6543), 1, + aux_sym__class_declaration_initializer_repeat4, + STATE(6694), 1, + sym_type_parameter_constraints_clause, + ACTIONS(9360), 2, + anon_sym_SEMI, + anon_sym_LBRACE, + STATE(6378), 3, + sym_type_parameter_list, + sym_base_list, + sym_parameter_list, + STATE(6258), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -733167,7 +729191,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [263910] = 20, + [260248] = 20, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -733188,25 +729212,28 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9314), 1, - anon_sym_EQ_GT, - ACTIONS(9339), 1, + ACTIONS(8892), 1, + anon_sym_LPAREN, + ACTIONS(9318), 1, + anon_sym_LT, + ACTIONS(9320), 1, anon_sym_where, - ACTIONS(9400), 1, - anon_sym_SEMI, - ACTIONS(9402), 1, - anon_sym_LBRACE, - STATE(2600), 1, - sym_block, - STATE(2843), 1, - sym__function_body, - STATE(6311), 1, + ACTIONS(9326), 1, + anon_sym_COLON, + STATE(6258), 1, + aux_sym__class_declaration_initializer_repeat3, + STATE(6562), 1, aux_sym__class_declaration_initializer_repeat4, - STATE(6641), 1, + STATE(6694), 1, sym_type_parameter_constraints_clause, - STATE(7670), 1, - sym_arrow_expression_clause, - STATE(6324), 9, + ACTIONS(9362), 2, + anon_sym_SEMI, + anon_sym_LBRACE, + STATE(6378), 3, + sym_type_parameter_list, + sym_base_list, + sym_parameter_list, + STATE(6259), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -733216,7 +729243,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [263979] = 20, + [260320] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -733237,25 +729264,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9314), 1, - anon_sym_EQ_GT, - ACTIONS(9339), 1, - anon_sym_where, - ACTIONS(9400), 1, - anon_sym_SEMI, - ACTIONS(9402), 1, - anon_sym_LBRACE, - STATE(2600), 1, - sym_block, - STATE(2844), 1, - sym__function_body, - STATE(6448), 1, - aux_sym__class_declaration_initializer_repeat4, - STATE(6641), 1, - sym_type_parameter_constraints_clause, - STATE(7670), 1, - sym_arrow_expression_clause, - STATE(6325), 9, + ACTIONS(9309), 1, + anon_sym_LT, + STATE(4054), 1, + sym_type_argument_list, + STATE(6260), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -733265,7 +729278,18 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [264048] = 20, + ACTIONS(3640), 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, + [260380] = 20, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -733286,25 +729310,28 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9314), 1, - anon_sym_EQ_GT, - ACTIONS(9339), 1, + ACTIONS(8892), 1, + anon_sym_LPAREN, + ACTIONS(9318), 1, + anon_sym_LT, + ACTIONS(9320), 1, anon_sym_where, - ACTIONS(9400), 1, - anon_sym_SEMI, - ACTIONS(9402), 1, - anon_sym_LBRACE, - STATE(2600), 1, - sym_block, - STATE(2814), 1, - sym__function_body, - STATE(6325), 1, + ACTIONS(9326), 1, + anon_sym_COLON, + STATE(6269), 1, + aux_sym__class_declaration_initializer_repeat3, + STATE(6470), 1, aux_sym__class_declaration_initializer_repeat4, - STATE(6641), 1, + STATE(6694), 1, sym_type_parameter_constraints_clause, - STATE(7670), 1, - sym_arrow_expression_clause, - STATE(6326), 9, + ACTIONS(9364), 2, + anon_sym_SEMI, + anon_sym_LBRACE, + STATE(6378), 3, + sym_type_parameter_list, + sym_base_list, + sym_parameter_list, + STATE(6261), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -733314,7 +729341,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [264117] = 19, + [260452] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -733335,23 +729362,22 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9337), 1, - anon_sym_LT, - ACTIONS(9339), 1, - anon_sym_where, - ACTIONS(9448), 1, + ACTIONS(3603), 1, anon_sym_COLON, - ACTIONS(9450), 1, + ACTIONS(3429), 5, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_DOT, + anon_sym_COLON_COLON, + ACTIONS(3600), 6, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_LPAREN, anon_sym_LBRACE, - STATE(6410), 1, - sym_type_parameter_list, - STATE(6633), 1, - sym_base_list, - STATE(6634), 1, - aux_sym__class_declaration_initializer_repeat4, - STATE(6641), 1, - sym_type_parameter_constraints_clause, - STATE(6327), 9, + anon_sym_LT, + anon_sym_where, + STATE(6262), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -733361,7 +729387,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [264183] = 17, + [260512] = 22, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -733382,21 +729408,29 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(5264), 1, - anon_sym_LPAREN, - ACTIONS(8142), 1, + ACTIONS(3640), 1, anon_sym_DOT, - ACTIONS(9454), 1, + ACTIONS(5549), 1, + anon_sym_LBRACK, + ACTIONS(6891), 1, + anon_sym_LT, + ACTIONS(6893), 1, + anon_sym_COLON_COLON, + ACTIONS(9282), 1, anon_sym_COMMA, - STATE(6501), 1, - aux_sym_record_base_repeat1, - STATE(6725), 1, - sym_argument_list, - ACTIONS(9452), 3, - anon_sym_SEMI, + ACTIONS(9286), 1, anon_sym_LBRACE, - anon_sym_where, - STATE(6328), 9, + ACTIONS(9366), 1, + anon_sym_SEMI, + ACTIONS(9369), 1, + anon_sym_EQ, + STATE(2171), 1, + sym_type_argument_list, + STATE(2804), 1, + sym_accessor_list, + STATE(6806), 1, + sym_bracketed_argument_list, + STATE(6263), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -733406,7 +729440,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [264245] = 12, + [260587] = 16, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -733427,16 +729461,23 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9456), 8, + ACTIONS(6601), 1, + anon_sym_LBRACK, + ACTIONS(6603), 1, + anon_sym_STAR, + ACTIONS(6705), 1, + anon_sym_QMARK, + ACTIONS(9371), 1, + anon_sym_DOT, + ACTIONS(3963), 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(6329), 9, + STATE(6264), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -733446,7 +729487,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [264297] = 19, + [260650] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -733467,23 +729508,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9337), 1, - anon_sym_LT, - ACTIONS(9339), 1, - anon_sym_where, - ACTIONS(9448), 1, - anon_sym_COLON, - ACTIONS(9458), 1, + ACTIONS(9373), 5, + anon_sym_SEMI, + anon_sym_COMMA, anon_sym_LBRACE, - STATE(6398), 1, - sym_type_parameter_list, - STATE(6614), 1, - sym_base_list, - STATE(6631), 1, - aux_sym__class_declaration_initializer_repeat4, - STATE(6641), 1, - sym_type_parameter_constraints_clause, - STATE(6330), 9, + anon_sym_where, + anon_sym_EQ_GT, + ACTIONS(3429), 6, + anon_sym_LBRACK, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_DOT, + anon_sym_COLON_COLON, + STATE(6265), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -733493,7 +729531,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [264363] = 14, + [260707] = 22, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -733514,18 +729552,29 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9429), 1, + ACTIONS(3640), 1, + anon_sym_DOT, + ACTIONS(5549), 1, + anon_sym_LBRACK, + ACTIONS(6891), 1, anon_sym_LT, - STATE(2183), 1, - sym_type_argument_list, - ACTIONS(3662), 6, - anon_sym_COLON, + ACTIONS(6893), 1, + anon_sym_COLON_COLON, + ACTIONS(9282), 1, anon_sym_COMMA, - anon_sym_LPAREN, + ACTIONS(9286), 1, anon_sym_LBRACE, - anon_sym_where, - anon_sym_DOT, - STATE(6331), 9, + ACTIONS(9369), 1, + anon_sym_EQ, + ACTIONS(9376), 1, + anon_sym_SEMI, + STATE(2171), 1, + sym_type_argument_list, + STATE(2694), 1, + sym_accessor_list, + STATE(6806), 1, + sym_bracketed_argument_list, + STATE(6266), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -733535,7 +729584,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [264419] = 16, + [260782] = 22, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -733556,20 +729605,29 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9462), 1, + ACTIONS(3640), 1, + anon_sym_DOT, + ACTIONS(5549), 1, + anon_sym_LBRACK, + ACTIONS(6891), 1, + anon_sym_LT, + ACTIONS(6893), 1, + anon_sym_COLON_COLON, + ACTIONS(9282), 1, anon_sym_COMMA, - ACTIONS(9464), 1, - anon_sym_LPAREN, - STATE(6371), 1, - sym_argument_list, - STATE(6372), 1, - aux_sym_base_list_repeat1, - ACTIONS(9460), 4, - anon_sym_COLON, + ACTIONS(9286), 1, anon_sym_LBRACE, - anon_sym_LT, - anon_sym_where, - STATE(6332), 9, + ACTIONS(9369), 1, + anon_sym_EQ, + ACTIONS(9379), 1, + anon_sym_SEMI, + STATE(2171), 1, + sym_type_argument_list, + STATE(2693), 1, + sym_accessor_list, + STATE(6806), 1, + sym_bracketed_argument_list, + STATE(6267), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -733579,7 +729637,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [264479] = 19, + [260857] = 16, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -733600,23 +729658,22 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8916), 1, + ACTIONS(3638), 1, + anon_sym_COLON, + ACTIONS(9382), 1, + anon_sym_LT, + ACTIONS(9385), 1, + anon_sym_COLON_COLON, + STATE(2171), 1, + sym_type_argument_list, + ACTIONS(3640), 6, + anon_sym_SEMI, + anon_sym_COMMA, anon_sym_LPAREN, - ACTIONS(9310), 1, anon_sym_LBRACE, - ACTIONS(9314), 1, - anon_sym_EQ_GT, - ACTIONS(9337), 1, - anon_sym_LT, - STATE(2647), 1, - sym_accessor_list, - STATE(6321), 1, - sym_parameter_list, - STATE(7260), 1, - sym_type_parameter_list, - STATE(7685), 1, - sym_arrow_expression_clause, - STATE(6333), 9, + anon_sym_where, + anon_sym_DOT, + STATE(6268), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -733626,7 +729683,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [264545] = 19, + [260919] = 16, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -733647,23 +729704,21 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9337), 1, - anon_sym_LT, - ACTIONS(9339), 1, - anon_sym_where, - ACTIONS(9448), 1, + ACTIONS(9389), 1, anon_sym_COLON, - ACTIONS(9467), 1, + ACTIONS(9392), 1, + anon_sym_LPAREN, + ACTIONS(9395), 1, + anon_sym_LT, + ACTIONS(9387), 3, + anon_sym_SEMI, anon_sym_LBRACE, - STATE(6418), 1, + anon_sym_where, + STATE(6378), 3, sym_type_parameter_list, - STATE(6641), 1, - sym_type_parameter_constraints_clause, - STATE(6644), 1, sym_base_list, - STATE(6645), 1, - aux_sym__class_declaration_initializer_repeat4, - STATE(6334), 9, + sym_parameter_list, + STATE(6269), 10, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -733673,7 +729728,8 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [264611] = 12, + aux_sym__class_declaration_initializer_repeat3, + [260981] = 20, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -733694,16 +729750,26 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9407), 8, + ACTIONS(3651), 1, + anon_sym_EQ_GT, + ACTIONS(5549), 1, + anon_sym_LBRACK, + ACTIONS(8892), 1, + anon_sym_LPAREN, + ACTIONS(9284), 1, + anon_sym_EQ, + ACTIONS(9318), 1, + anon_sym_LT, + STATE(6642), 1, + sym_parameter_list, + STATE(6806), 1, + sym_bracketed_argument_list, + STATE(7080), 1, + sym_type_parameter_list, + ACTIONS(9282), 2, + anon_sym_SEMI, 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(6335), 9, + STATE(6270), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -733713,7 +729779,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [264663] = 19, + [261051] = 20, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -733734,23 +729800,25 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8916), 1, - anon_sym_LPAREN, - ACTIONS(9310), 1, - anon_sym_LBRACE, - ACTIONS(9314), 1, + ACTIONS(9290), 1, anon_sym_EQ_GT, - ACTIONS(9337), 1, - anon_sym_LT, - STATE(2630), 1, - sym_accessor_list, - STATE(6292), 1, - sym_parameter_list, - STATE(7072), 1, - sym_type_parameter_list, - STATE(7579), 1, + ACTIONS(9320), 1, + anon_sym_where, + ACTIONS(9398), 1, + anon_sym_SEMI, + ACTIONS(9400), 1, + anon_sym_LBRACE, + STATE(2572), 1, + sym_block, + STATE(2793), 1, + sym__function_body, + STATE(6404), 1, + aux_sym__class_declaration_initializer_repeat4, + STATE(6694), 1, + sym_type_parameter_constraints_clause, + STATE(7278), 1, sym_arrow_expression_clause, - STATE(6336), 9, + STATE(6271), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -733760,7 +729828,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [264729] = 19, + [261120] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -733781,23 +729849,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8916), 1, - anon_sym_LPAREN, - ACTIONS(9310), 1, - anon_sym_LBRACE, - ACTIONS(9314), 1, - anon_sym_EQ_GT, - ACTIONS(9337), 1, - anon_sym_LT, - STATE(2654), 1, - sym_accessor_list, - STATE(6313), 1, - sym_parameter_list, - STATE(7256), 1, - sym_type_parameter_list, - STATE(7668), 1, - sym_arrow_expression_clause, - STATE(6337), 9, + ACTIONS(9402), 1, + anon_sym_COMMA, + STATE(6295), 1, + aux_sym_order_by_clause_repeat1, + ACTIONS(9404), 7, + anon_sym_where, + anon_sym_from, + anon_sym_join, + anon_sym_let, + anon_sym_orderby, + anon_sym_group, + anon_sym_select, + STATE(6272), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -733807,7 +729871,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [264795] = 17, + [261177] = 20, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -733828,20 +729892,25 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9471), 1, - sym_interpolation_end_quote, - ACTIONS(9473), 1, - sym_interpolation_open_brace, - STATE(6362), 1, - aux_sym_interpolated_string_expression_repeat1, - STATE(6638), 1, - sym__interpolated_string_content, - STATE(6643), 1, - sym_interpolation, - ACTIONS(9469), 2, - sym_interpolation_string_content, - sym_escape_sequence, - STATE(6338), 9, + ACTIONS(9290), 1, + anon_sym_EQ_GT, + ACTIONS(9320), 1, + anon_sym_where, + ACTIONS(9398), 1, + anon_sym_SEMI, + ACTIONS(9400), 1, + anon_sym_LBRACE, + STATE(2572), 1, + sym_block, + STATE(2781), 1, + sym__function_body, + STATE(6280), 1, + aux_sym__class_declaration_initializer_repeat4, + STATE(6694), 1, + sym_type_parameter_constraints_clause, + STATE(7278), 1, + sym_arrow_expression_clause, + STATE(6273), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -733851,7 +729920,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [264856] = 17, + [261246] = 19, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -733872,20 +729941,24 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(5293), 1, + ACTIONS(9318), 1, + anon_sym_LT, + ACTIONS(9320), 1, + anon_sym_where, + ACTIONS(9408), 1, + anon_sym_COLON, + STATE(6365), 1, + sym_type_parameter_list, + STATE(6533), 1, + aux_sym__class_declaration_initializer_repeat4, + STATE(6614), 1, + sym_base_list, + STATE(6694), 1, + sym_type_parameter_constraints_clause, + ACTIONS(9406), 2, + anon_sym_SEMI, anon_sym_LBRACE, - ACTIONS(9475), 1, - anon_sym_LPAREN, - ACTIONS(9477), 1, - anon_sym_when, - STATE(1950), 1, - sym_block, - STATE(6376), 1, - aux_sym_catch_clause_repeat1, - STATE(7010), 2, - sym_catch_declaration, - sym_catch_filter_clause, - STATE(6339), 9, + STATE(6274), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -733895,7 +729968,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [264917] = 17, + [261313] = 16, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -733916,20 +729989,21 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9473), 1, - sym_interpolation_open_brace, - ACTIONS(9479), 1, - sym_interpolation_end_quote, - STATE(6379), 1, - aux_sym_interpolated_string_expression_repeat1, - STATE(6638), 1, - sym__interpolated_string_content, - STATE(6643), 1, - sym_interpolation, - ACTIONS(9469), 2, - sym_interpolation_string_content, - sym_escape_sequence, - STATE(6340), 9, + ACTIONS(3653), 1, + anon_sym_COLON_COLON, + ACTIONS(6230), 1, + anon_sym_LT, + STATE(4054), 1, + sym_type_argument_list, + ACTIONS(9410), 2, + anon_sym_COMMA, + anon_sym_GT, + ACTIONS(3640), 4, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_DOT, + STATE(6275), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -733939,7 +730013,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [264978] = 17, + [261374] = 20, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -733960,20 +730034,25 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(2977), 1, - anon_sym_LBRACK, - ACTIONS(4705), 1, - aux_sym_preproc_else_token1, - ACTIONS(4707), 1, - aux_sym_preproc_elif_token1, - ACTIONS(9481), 1, - aux_sym_preproc_if_token3, - STATE(6503), 1, - sym_attribute_list, - STATE(7492), 2, - sym_preproc_else_in_attribute_list, - sym_preproc_elif_in_attribute_list, - STATE(6341), 9, + ACTIONS(9290), 1, + anon_sym_EQ_GT, + ACTIONS(9320), 1, + anon_sym_where, + ACTIONS(9398), 1, + anon_sym_SEMI, + ACTIONS(9400), 1, + anon_sym_LBRACE, + STATE(2572), 1, + sym_block, + STATE(2791), 1, + sym__function_body, + STATE(6312), 1, + aux_sym__class_declaration_initializer_repeat4, + STATE(6694), 1, + sym_type_parameter_constraints_clause, + STATE(7278), 1, + sym_arrow_expression_clause, + STATE(6276), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -733983,7 +730062,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [265039] = 17, + [261443] = 19, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -734004,20 +730083,24 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(5771), 1, - anon_sym_LBRACE, - ACTIONS(9475), 1, + ACTIONS(5549), 1, + anon_sym_LBRACK, + ACTIONS(8892), 1, anon_sym_LPAREN, - ACTIONS(9477), 1, - anon_sym_when, - STATE(2092), 1, - sym_block, - STATE(6388), 1, - aux_sym_catch_clause_repeat1, - STATE(7010), 2, - sym_catch_declaration, - sym_catch_filter_clause, - STATE(6342), 9, + ACTIONS(9318), 1, + anon_sym_LT, + ACTIONS(9369), 1, + anon_sym_EQ, + STATE(6648), 1, + sym_parameter_list, + STATE(6806), 1, + sym_bracketed_argument_list, + STATE(7180), 1, + sym_type_parameter_list, + ACTIONS(9282), 2, + anon_sym_SEMI, + anon_sym_COMMA, + STATE(6277), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -734027,7 +730110,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [265100] = 17, + [261510] = 20, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -734048,20 +730131,25 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(2977), 1, - anon_sym_LBRACK, - ACTIONS(4705), 1, - aux_sym_preproc_else_token1, - ACTIONS(4707), 1, - aux_sym_preproc_elif_token1, - ACTIONS(9483), 1, - aux_sym_preproc_if_token3, - STATE(6561), 1, - sym_attribute_list, - STATE(7361), 2, - sym_preproc_else_in_attribute_list, - sym_preproc_elif_in_attribute_list, - STATE(6343), 9, + ACTIONS(9290), 1, + anon_sym_EQ_GT, + ACTIONS(9320), 1, + anon_sym_where, + ACTIONS(9398), 1, + anon_sym_SEMI, + ACTIONS(9400), 1, + anon_sym_LBRACE, + STATE(2572), 1, + sym_block, + STATE(2649), 1, + sym__function_body, + STATE(6404), 1, + aux_sym__class_declaration_initializer_repeat4, + STATE(6694), 1, + sym_type_parameter_constraints_clause, + STATE(7278), 1, + sym_arrow_expression_clause, + STATE(6278), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -734071,7 +730159,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [265161] = 17, + [261579] = 20, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -734092,20 +730180,25 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(5617), 1, + ACTIONS(9290), 1, + anon_sym_EQ_GT, + ACTIONS(9320), 1, + anon_sym_where, + ACTIONS(9398), 1, + anon_sym_SEMI, + ACTIONS(9400), 1, anon_sym_LBRACE, - ACTIONS(9475), 1, - anon_sym_LPAREN, - ACTIONS(9477), 1, - anon_sym_when, - STATE(6375), 1, - aux_sym_catch_clause_repeat1, - STATE(6630), 1, + STATE(2572), 1, sym_block, - STATE(7010), 2, - sym_catch_declaration, - sym_catch_filter_clause, - STATE(6344), 9, + STATE(2806), 1, + sym__function_body, + STATE(6292), 1, + aux_sym__class_declaration_initializer_repeat4, + STATE(6694), 1, + sym_type_parameter_constraints_clause, + STATE(7278), 1, + sym_arrow_expression_clause, + STATE(6279), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -734115,7 +730208,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [265222] = 12, + [261648] = 20, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -734136,15 +730229,25 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9485), 7, + ACTIONS(9290), 1, + anon_sym_EQ_GT, + ACTIONS(9320), 1, + anon_sym_where, + ACTIONS(9398), 1, anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LPAREN, + ACTIONS(9400), 1, anon_sym_LBRACE, - anon_sym_LT, - anon_sym_where, - anon_sym_EQ_GT, - STATE(6345), 9, + STATE(2572), 1, + sym_block, + STATE(2836), 1, + sym__function_body, + STATE(6404), 1, + aux_sym__class_declaration_initializer_repeat4, + STATE(6694), 1, + sym_type_parameter_constraints_clause, + STATE(7278), 1, + sym_arrow_expression_clause, + STATE(6280), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -734154,7 +730257,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [265273] = 17, + [261717] = 20, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -734175,20 +730278,25 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9473), 1, - sym_interpolation_open_brace, - ACTIONS(9487), 1, - sym_interpolation_end_quote, - STATE(6359), 1, - aux_sym_interpolated_string_expression_repeat1, - STATE(6638), 1, - sym__interpolated_string_content, - STATE(6643), 1, - sym_interpolation, - ACTIONS(9469), 2, - sym_interpolation_string_content, - sym_escape_sequence, - STATE(6346), 9, + ACTIONS(9290), 1, + anon_sym_EQ_GT, + ACTIONS(9320), 1, + anon_sym_where, + ACTIONS(9398), 1, + anon_sym_SEMI, + ACTIONS(9400), 1, + anon_sym_LBRACE, + STATE(2572), 1, + sym_block, + STATE(2674), 1, + sym__function_body, + STATE(6404), 1, + aux_sym__class_declaration_initializer_repeat4, + STATE(6694), 1, + sym_type_parameter_constraints_clause, + STATE(7278), 1, + sym_arrow_expression_clause, + STATE(6281), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -734198,7 +730306,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [265334] = 17, + [261786] = 20, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -734219,20 +730327,25 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(2643), 1, - aux_sym_preproc_if_token3, - ACTIONS(2977), 1, - anon_sym_LBRACK, - ACTIONS(4705), 1, - aux_sym_preproc_else_token1, - ACTIONS(4707), 1, - aux_sym_preproc_elif_token1, - STATE(6565), 1, - sym_attribute_list, - STATE(7359), 2, - sym_preproc_else_in_attribute_list, - sym_preproc_elif_in_attribute_list, - STATE(6347), 9, + ACTIONS(9290), 1, + anon_sym_EQ_GT, + ACTIONS(9320), 1, + anon_sym_where, + ACTIONS(9398), 1, + anon_sym_SEMI, + ACTIONS(9400), 1, + anon_sym_LBRACE, + STATE(2572), 1, + sym_block, + STATE(2834), 1, + sym__function_body, + STATE(6309), 1, + aux_sym__class_declaration_initializer_repeat4, + STATE(6694), 1, + sym_type_parameter_constraints_clause, + STATE(7278), 1, + sym_arrow_expression_clause, + STATE(6282), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -734242,7 +730355,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [265395] = 17, + [261855] = 20, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -734263,20 +730376,25 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9473), 1, - sym_interpolation_open_brace, - ACTIONS(9489), 1, - sym_interpolation_end_quote, - STATE(6360), 1, - aux_sym_interpolated_string_expression_repeat1, - STATE(6638), 1, - sym__interpolated_string_content, - STATE(6643), 1, - sym_interpolation, - ACTIONS(9469), 2, - sym_interpolation_string_content, - sym_escape_sequence, - STATE(6348), 9, + ACTIONS(9290), 1, + anon_sym_EQ_GT, + ACTIONS(9320), 1, + anon_sym_where, + ACTIONS(9398), 1, + anon_sym_SEMI, + ACTIONS(9400), 1, + anon_sym_LBRACE, + STATE(2572), 1, + sym_block, + STATE(2659), 1, + sym__function_body, + STATE(6314), 1, + aux_sym__class_declaration_initializer_repeat4, + STATE(6694), 1, + sym_type_parameter_constraints_clause, + STATE(7278), 1, + sym_arrow_expression_clause, + STATE(6283), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -734286,7 +730404,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [265456] = 14, + [261924] = 20, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -734307,17 +730425,25 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9493), 1, - anon_sym_LPAREN, - STATE(6413), 1, - sym_argument_list, - ACTIONS(9491), 5, - anon_sym_COLON, - anon_sym_COMMA, - anon_sym_LBRACE, - anon_sym_LT, + ACTIONS(9290), 1, + anon_sym_EQ_GT, + ACTIONS(9320), 1, anon_sym_where, - STATE(6349), 9, + ACTIONS(9398), 1, + anon_sym_SEMI, + ACTIONS(9400), 1, + anon_sym_LBRACE, + STATE(2572), 1, + sym_block, + STATE(2661), 1, + sym__function_body, + STATE(6281), 1, + aux_sym__class_declaration_initializer_repeat4, + STATE(6694), 1, + sym_type_parameter_constraints_clause, + STATE(7278), 1, + sym_arrow_expression_clause, + STATE(6284), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -734327,7 +730453,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [265511] = 14, + [261993] = 20, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -734348,17 +730474,25 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9462), 1, - anon_sym_COMMA, - STATE(6353), 1, - aux_sym_base_list_repeat1, - ACTIONS(9496), 5, - anon_sym_COLON, - anon_sym_LPAREN, + ACTIONS(5573), 1, anon_sym_LBRACE, - anon_sym_LT, + ACTIONS(9290), 1, + anon_sym_EQ_GT, + ACTIONS(9320), 1, anon_sym_where, - STATE(6350), 9, + ACTIONS(9398), 1, + anon_sym_SEMI, + STATE(2572), 1, + sym_block, + STATE(6287), 1, + aux_sym__class_declaration_initializer_repeat4, + STATE(6694), 1, + sym_type_parameter_constraints_clause, + STATE(7097), 1, + sym__function_body, + STATE(7278), 1, + sym_arrow_expression_clause, + STATE(6285), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -734368,7 +730502,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [265566] = 12, + [262062] = 16, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -734389,15 +730523,21 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9498), 7, + ACTIONS(9415), 1, + anon_sym_COMMA, + ACTIONS(9417), 1, + anon_sym_LPAREN, + STATE(6316), 1, + sym_argument_list, + STATE(6318), 1, + aux_sym_base_list_repeat1, + ACTIONS(9413), 5, anon_sym_SEMI, anon_sym_COLON, - anon_sym_LPAREN, anon_sym_LBRACE, anon_sym_LT, anon_sym_where, - anon_sym_EQ_GT, - STATE(6351), 9, + STATE(6286), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -734407,7 +730547,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [265617] = 17, + [262123] = 20, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -734428,20 +730568,25 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(5771), 1, + ACTIONS(5573), 1, anon_sym_LBRACE, - ACTIONS(9475), 1, - anon_sym_LPAREN, - ACTIONS(9477), 1, - anon_sym_when, - STATE(2088), 1, + ACTIONS(9290), 1, + anon_sym_EQ_GT, + ACTIONS(9320), 1, + anon_sym_where, + ACTIONS(9398), 1, + anon_sym_SEMI, + STATE(2572), 1, sym_block, - STATE(6342), 1, - aux_sym_catch_clause_repeat1, - STATE(7010), 2, - sym_catch_declaration, - sym_catch_filter_clause, - STATE(6352), 9, + STATE(6404), 1, + aux_sym__class_declaration_initializer_repeat4, + STATE(6694), 1, + sym_type_parameter_constraints_clause, + STATE(7191), 1, + sym__function_body, + STATE(7278), 1, + sym_arrow_expression_clause, + STATE(6287), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -734451,7 +730596,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [265678] = 13, + [262192] = 20, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -734472,15 +730617,25 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9500), 1, - anon_sym_COMMA, - ACTIONS(9491), 5, - anon_sym_COLON, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_LT, + ACTIONS(9290), 1, + anon_sym_EQ_GT, + ACTIONS(9320), 1, anon_sym_where, - STATE(6353), 10, + ACTIONS(9398), 1, + anon_sym_SEMI, + ACTIONS(9400), 1, + anon_sym_LBRACE, + STATE(2572), 1, + sym_block, + STATE(2780), 1, + sym__function_body, + STATE(6278), 1, + aux_sym__class_declaration_initializer_repeat4, + STATE(6694), 1, + sym_type_parameter_constraints_clause, + STATE(7278), 1, + sym_arrow_expression_clause, + STATE(6288), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -734490,8 +730645,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - aux_sym_base_list_repeat1, - [265731] = 17, + [262261] = 20, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -734512,20 +730666,25 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(5274), 1, + ACTIONS(9290), 1, + anon_sym_EQ_GT, + ACTIONS(9320), 1, + anon_sym_where, + ACTIONS(9398), 1, + anon_sym_SEMI, + ACTIONS(9400), 1, anon_sym_LBRACE, - ACTIONS(9475), 1, - anon_sym_LPAREN, - ACTIONS(9477), 1, - anon_sym_when, - STATE(1923), 1, + STATE(2572), 1, sym_block, - STATE(6388), 1, - aux_sym_catch_clause_repeat1, - STATE(7010), 2, - sym_catch_declaration, - sym_catch_filter_clause, - STATE(6354), 9, + STATE(2662), 1, + sym__function_body, + STATE(6297), 1, + aux_sym__class_declaration_initializer_repeat4, + STATE(6694), 1, + sym_type_parameter_constraints_clause, + STATE(7278), 1, + sym_arrow_expression_clause, + STATE(6289), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -734535,7 +730694,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [265792] = 12, + [262330] = 20, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -734556,15 +730715,25 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9503), 7, + ACTIONS(5234), 1, + anon_sym_LBRACE, + ACTIONS(9290), 1, + anon_sym_EQ_GT, + ACTIONS(9320), 1, anon_sym_where, - anon_sym_from, - anon_sym_join, - anon_sym_let, - anon_sym_orderby, - anon_sym_group, - anon_sym_select, - STATE(6355), 9, + ACTIONS(9420), 1, + anon_sym_SEMI, + STATE(2011), 1, + sym_block, + STATE(2027), 1, + sym__function_body, + STATE(6305), 1, + aux_sym__class_declaration_initializer_repeat4, + STATE(6694), 1, + sym_type_parameter_constraints_clause, + STATE(7370), 1, + sym_arrow_expression_clause, + STATE(6290), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -734574,7 +730743,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [265843] = 13, + [262399] = 20, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -734595,16 +730764,25 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9505), 1, - anon_sym_DOT, - ACTIONS(3977), 6, - anon_sym_COLON, - anon_sym_COMMA, - anon_sym_LPAREN, + ACTIONS(5255), 1, anon_sym_LBRACE, - anon_sym_LT, + ACTIONS(9290), 1, + anon_sym_EQ_GT, + ACTIONS(9320), 1, anon_sym_where, - STATE(6356), 9, + ACTIONS(9422), 1, + anon_sym_SEMI, + STATE(1933), 1, + sym_block, + STATE(1953), 1, + sym__function_body, + STATE(6404), 1, + aux_sym__class_declaration_initializer_repeat4, + STATE(6694), 1, + sym_type_parameter_constraints_clause, + STATE(7699), 1, + sym_arrow_expression_clause, + STATE(6291), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -734614,7 +730792,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [265896] = 17, + [262468] = 20, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -734635,20 +730813,25 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9507), 1, - anon_sym_catch, - ACTIONS(9509), 1, - anon_sym_finally, - STATE(6364), 1, - aux_sym_try_statement_repeat1, - STATE(6688), 1, - sym_catch_clause, - STATE(7158), 1, - sym_finally_clause, - ACTIONS(3105), 2, - anon_sym_while, - anon_sym_else, - STATE(6357), 9, + ACTIONS(9290), 1, + anon_sym_EQ_GT, + ACTIONS(9320), 1, + anon_sym_where, + ACTIONS(9398), 1, + anon_sym_SEMI, + ACTIONS(9400), 1, + anon_sym_LBRACE, + STATE(2572), 1, + sym_block, + STATE(2678), 1, + sym__function_body, + STATE(6404), 1, + aux_sym__class_declaration_initializer_repeat4, + STATE(6694), 1, + sym_type_parameter_constraints_clause, + STATE(7278), 1, + sym_arrow_expression_clause, + STATE(6292), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -734658,7 +730841,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [265957] = 17, + [262537] = 20, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -734679,20 +730862,25 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9473), 1, - sym_interpolation_open_brace, - ACTIONS(9511), 1, - sym_interpolation_end_quote, - STATE(6377), 1, - aux_sym_interpolated_string_expression_repeat1, - STATE(6638), 1, - sym__interpolated_string_content, - STATE(6643), 1, - sym_interpolation, - ACTIONS(9469), 2, - sym_interpolation_string_content, - sym_escape_sequence, - STATE(6358), 9, + ACTIONS(9290), 1, + anon_sym_EQ_GT, + ACTIONS(9320), 1, + anon_sym_where, + ACTIONS(9398), 1, + anon_sym_SEMI, + ACTIONS(9400), 1, + anon_sym_LBRACE, + STATE(2572), 1, + sym_block, + STATE(2663), 1, + sym__function_body, + STATE(6404), 1, + aux_sym__class_declaration_initializer_repeat4, + STATE(6694), 1, + sym_type_parameter_constraints_clause, + STATE(7278), 1, + sym_arrow_expression_clause, + STATE(6293), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -734702,7 +730890,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [266018] = 16, + [262606] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -734723,18 +730911,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9516), 1, - sym_interpolation_end_quote, - ACTIONS(9518), 1, - sym_interpolation_open_brace, - STATE(6638), 1, - sym__interpolated_string_content, - STATE(6643), 1, - sym_interpolation, - ACTIONS(9513), 2, - sym_interpolation_string_content, - sym_escape_sequence, - STATE(6359), 10, + ACTIONS(9426), 1, + anon_sym_into, + STATE(6328), 1, + sym_join_into_clause, + ACTIONS(9424), 7, + anon_sym_where, + anon_sym_from, + anon_sym_join, + anon_sym_let, + anon_sym_orderby, + anon_sym_group, + anon_sym_select, + STATE(6294), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -734744,8 +730933,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - aux_sym_interpolated_string_expression_repeat1, - [266077] = 17, + [262663] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -734766,20 +730954,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9473), 1, - sym_interpolation_open_brace, - ACTIONS(9521), 1, - sym_interpolation_end_quote, - STATE(6359), 1, - aux_sym_interpolated_string_expression_repeat1, - STATE(6638), 1, - sym__interpolated_string_content, - STATE(6643), 1, - sym_interpolation, - ACTIONS(9469), 2, - sym_interpolation_string_content, - sym_escape_sequence, - STATE(6360), 9, + ACTIONS(9402), 1, + anon_sym_COMMA, + STATE(6302), 1, + aux_sym_order_by_clause_repeat1, + ACTIONS(9428), 7, + anon_sym_where, + anon_sym_from, + anon_sym_join, + anon_sym_let, + anon_sym_orderby, + anon_sym_group, + anon_sym_select, + STATE(6295), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -734789,7 +730976,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [266138] = 12, + [262720] = 20, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -734810,15 +730997,25 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4094), 7, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LPAREN, + ACTIONS(5859), 1, anon_sym_LBRACE, - anon_sym_LT, - anon_sym_where, + ACTIONS(9290), 1, anon_sym_EQ_GT, - STATE(6361), 9, + ACTIONS(9320), 1, + anon_sym_where, + ACTIONS(9430), 1, + anon_sym_SEMI, + STATE(2118), 1, + sym__function_body, + STATE(2125), 1, + sym_block, + STATE(6404), 1, + aux_sym__class_declaration_initializer_repeat4, + STATE(6694), 1, + sym_type_parameter_constraints_clause, + STATE(7468), 1, + sym_arrow_expression_clause, + STATE(6296), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -734828,7 +731025,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [266189] = 17, + [262789] = 20, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -734849,20 +731046,25 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9473), 1, - sym_interpolation_open_brace, - ACTIONS(9523), 1, - sym_interpolation_end_quote, - STATE(6359), 1, - aux_sym_interpolated_string_expression_repeat1, - STATE(6638), 1, - sym__interpolated_string_content, - STATE(6643), 1, - sym_interpolation, - ACTIONS(9469), 2, - sym_interpolation_string_content, - sym_escape_sequence, - STATE(6362), 9, + ACTIONS(9290), 1, + anon_sym_EQ_GT, + ACTIONS(9320), 1, + anon_sym_where, + ACTIONS(9398), 1, + anon_sym_SEMI, + ACTIONS(9400), 1, + anon_sym_LBRACE, + STATE(2572), 1, + sym_block, + STATE(2651), 1, + sym__function_body, + STATE(6404), 1, + aux_sym__class_declaration_initializer_repeat4, + STATE(6694), 1, + sym_type_parameter_constraints_clause, + STATE(7278), 1, + sym_arrow_expression_clause, + STATE(6297), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -734872,7 +731074,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [266250] = 12, + [262858] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -734893,15 +731095,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9525), 7, + ACTIONS(9434), 1, + anon_sym_LPAREN, + ACTIONS(9437), 1, + anon_sym_LT, + STATE(6429), 2, + sym_type_parameter_list, + sym_parameter_list, + ACTIONS(9432), 4, + anon_sym_SEMI, + anon_sym_COLON, + 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(6363), 9, + STATE(6298), 10, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -734911,7 +731117,8 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [266301] = 17, + aux_sym__record_declaration_initializer_repeat1, + [262917] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -734932,20 +731139,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9507), 1, - anon_sym_catch, - ACTIONS(9509), 1, - anon_sym_finally, - STATE(6415), 1, - aux_sym_try_statement_repeat1, - STATE(6688), 1, - sym_catch_clause, - STATE(7144), 1, - sym_finally_clause, - ACTIONS(3097), 2, - anon_sym_while, - anon_sym_else, - STATE(6364), 9, + ACTIONS(9382), 1, + anon_sym_LT, + STATE(2171), 1, + sym_type_argument_list, + ACTIONS(3640), 7, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_where, + anon_sym_DOT, + STATE(6299), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -734955,7 +731161,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [266362] = 17, + [262974] = 19, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -734976,20 +731182,24 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(5274), 1, + ACTIONS(9318), 1, + anon_sym_LT, + ACTIONS(9320), 1, + anon_sym_where, + ACTIONS(9408), 1, + anon_sym_COLON, + STATE(6336), 1, + sym_type_parameter_list, + STATE(6480), 1, + sym_base_list, + STATE(6481), 1, + aux_sym__class_declaration_initializer_repeat4, + STATE(6694), 1, + sym_type_parameter_constraints_clause, + ACTIONS(9440), 2, + anon_sym_SEMI, anon_sym_LBRACE, - ACTIONS(9475), 1, - anon_sym_LPAREN, - ACTIONS(9477), 1, - anon_sym_when, - STATE(1925), 1, - sym_block, - STATE(6354), 1, - aux_sym_catch_clause_repeat1, - STATE(7010), 2, - sym_catch_declaration, - sym_catch_filter_clause, - STATE(6365), 9, + STATE(6300), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -734999,7 +731209,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [266423] = 12, + [263041] = 20, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -735020,15 +731230,25 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9527), 7, + ACTIONS(9290), 1, + anon_sym_EQ_GT, + ACTIONS(9320), 1, + anon_sym_where, + ACTIONS(9398), 1, anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LPAREN, + ACTIONS(9400), 1, anon_sym_LBRACE, - anon_sym_LT, - anon_sym_where, - anon_sym_EQ_GT, - STATE(6366), 9, + STATE(2572), 1, + sym_block, + STATE(2707), 1, + sym__function_body, + STATE(6293), 1, + aux_sym__class_declaration_initializer_repeat4, + STATE(6694), 1, + sym_type_parameter_constraints_clause, + STATE(7278), 1, + sym_arrow_expression_clause, + STATE(6301), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -735038,7 +731258,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [266474] = 12, + [263110] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -735059,15 +731279,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9529), 7, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_LT, + ACTIONS(9442), 1, + anon_sym_COMMA, + ACTIONS(9445), 7, anon_sym_where, - anon_sym_EQ_GT, - STATE(6367), 9, + anon_sym_from, + anon_sym_join, + anon_sym_let, + anon_sym_orderby, + anon_sym_group, + anon_sym_select, + STATE(6302), 10, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -735077,7 +731299,8 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [266525] = 17, + aux_sym_order_by_clause_repeat1, + [263165] = 20, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -735098,20 +731321,25 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(2977), 1, - anon_sym_LBRACK, - ACTIONS(4705), 1, - aux_sym_preproc_else_token1, - ACTIONS(4707), 1, - aux_sym_preproc_elif_token1, - ACTIONS(9531), 1, - aux_sym_preproc_if_token3, - STATE(6563), 1, - sym_attribute_list, - STATE(7291), 2, - sym_preproc_else_in_attribute_list, - sym_preproc_elif_in_attribute_list, - STATE(6368), 9, + ACTIONS(9290), 1, + anon_sym_EQ_GT, + ACTIONS(9320), 1, + anon_sym_where, + ACTIONS(9398), 1, + anon_sym_SEMI, + ACTIONS(9400), 1, + anon_sym_LBRACE, + STATE(2572), 1, + sym_block, + STATE(2648), 1, + sym__function_body, + STATE(6307), 1, + aux_sym__class_declaration_initializer_repeat4, + STATE(6694), 1, + sym_type_parameter_constraints_clause, + STATE(7278), 1, + sym_arrow_expression_clause, + STATE(6303), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -735121,7 +731349,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [266586] = 17, + [263234] = 20, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -735142,20 +731370,25 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(2977), 1, - anon_sym_LBRACK, - ACTIONS(4705), 1, - aux_sym_preproc_else_token1, - ACTIONS(4707), 1, - aux_sym_preproc_elif_token1, - ACTIONS(9533), 1, - aux_sym_preproc_if_token3, - STATE(6487), 1, - sym_attribute_list, - STATE(7760), 2, - sym_preproc_else_in_attribute_list, - sym_preproc_elif_in_attribute_list, - STATE(6369), 9, + ACTIONS(9290), 1, + anon_sym_EQ_GT, + ACTIONS(9320), 1, + anon_sym_where, + ACTIONS(9398), 1, + anon_sym_SEMI, + ACTIONS(9400), 1, + anon_sym_LBRACE, + STATE(2572), 1, + sym_block, + STATE(2727), 1, + sym__function_body, + STATE(6271), 1, + aux_sym__class_declaration_initializer_repeat4, + STATE(6694), 1, + sym_type_parameter_constraints_clause, + STATE(7278), 1, + sym_arrow_expression_clause, + STATE(6304), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -735165,7 +731398,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [266647] = 12, + [263303] = 20, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -735186,15 +731419,25 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9535), 7, + ACTIONS(5234), 1, + anon_sym_LBRACE, + ACTIONS(9290), 1, + anon_sym_EQ_GT, + ACTIONS(9320), 1, anon_sym_where, - anon_sym_from, - anon_sym_join, - anon_sym_let, - anon_sym_orderby, - anon_sym_group, - anon_sym_select, - STATE(6370), 9, + ACTIONS(9420), 1, + anon_sym_SEMI, + STATE(2009), 1, + sym__function_body, + STATE(2011), 1, + sym_block, + STATE(6404), 1, + aux_sym__class_declaration_initializer_repeat4, + STATE(6694), 1, + sym_type_parameter_constraints_clause, + STATE(7370), 1, + sym_arrow_expression_clause, + STATE(6305), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -735204,7 +731447,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [266698] = 14, + [263372] = 20, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -735225,17 +731468,25 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9462), 1, - anon_sym_COMMA, - STATE(6350), 1, - aux_sym_base_list_repeat1, - ACTIONS(9537), 5, - anon_sym_COLON, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_LT, + ACTIONS(9290), 1, + anon_sym_EQ_GT, + ACTIONS(9320), 1, anon_sym_where, - STATE(6371), 9, + ACTIONS(9398), 1, + anon_sym_SEMI, + ACTIONS(9400), 1, + anon_sym_LBRACE, + STATE(2572), 1, + sym_block, + STATE(2681), 1, + sym__function_body, + STATE(6404), 1, + aux_sym__class_declaration_initializer_repeat4, + STATE(6694), 1, + sym_type_parameter_constraints_clause, + STATE(7278), 1, + sym_arrow_expression_clause, + STATE(6306), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -735245,7 +731496,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [266753] = 14, + [263441] = 20, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -735266,17 +731517,25 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9462), 1, - anon_sym_COMMA, - STATE(6353), 1, - aux_sym_base_list_repeat1, - ACTIONS(9537), 5, - anon_sym_COLON, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_LT, + ACTIONS(9290), 1, + anon_sym_EQ_GT, + ACTIONS(9320), 1, anon_sym_where, - STATE(6372), 9, + ACTIONS(9398), 1, + anon_sym_SEMI, + ACTIONS(9400), 1, + anon_sym_LBRACE, + STATE(2572), 1, + sym_block, + STATE(2666), 1, + sym__function_body, + STATE(6404), 1, + aux_sym__class_declaration_initializer_repeat4, + STATE(6694), 1, + sym_type_parameter_constraints_clause, + STATE(7278), 1, + sym_arrow_expression_clause, + STATE(6307), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -735286,7 +731545,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [266808] = 12, + [263510] = 19, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -735307,15 +731566,24 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9539), 7, + ACTIONS(9318), 1, + anon_sym_LT, + ACTIONS(9320), 1, anon_sym_where, - anon_sym_from, - anon_sym_join, - anon_sym_let, - anon_sym_orderby, - anon_sym_group, - anon_sym_select, - STATE(6373), 9, + ACTIONS(9408), 1, + anon_sym_COLON, + STATE(6353), 1, + sym_type_parameter_list, + STATE(6458), 1, + sym_base_list, + STATE(6459), 1, + aux_sym__class_declaration_initializer_repeat4, + STATE(6694), 1, + sym_type_parameter_constraints_clause, + ACTIONS(9447), 2, + anon_sym_SEMI, + anon_sym_LBRACE, + STATE(6308), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -735325,7 +731593,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [266859] = 17, + [263577] = 20, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -735346,20 +731614,25 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9473), 1, - sym_interpolation_open_brace, - ACTIONS(9541), 1, - sym_interpolation_end_quote, - STATE(6346), 1, - aux_sym_interpolated_string_expression_repeat1, - STATE(6638), 1, - sym__interpolated_string_content, - STATE(6643), 1, - sym_interpolation, - ACTIONS(9469), 2, - sym_interpolation_string_content, - sym_escape_sequence, - STATE(6374), 9, + ACTIONS(9290), 1, + anon_sym_EQ_GT, + ACTIONS(9320), 1, + anon_sym_where, + ACTIONS(9398), 1, + anon_sym_SEMI, + ACTIONS(9400), 1, + anon_sym_LBRACE, + STATE(2572), 1, + sym_block, + STATE(2784), 1, + sym__function_body, + STATE(6404), 1, + aux_sym__class_declaration_initializer_repeat4, + STATE(6694), 1, + sym_type_parameter_constraints_clause, + STATE(7278), 1, + sym_arrow_expression_clause, + STATE(6309), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -735369,7 +731642,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [266920] = 17, + [263646] = 20, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -735390,20 +731663,25 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(5617), 1, + ACTIONS(5859), 1, anon_sym_LBRACE, - ACTIONS(9475), 1, - anon_sym_LPAREN, - ACTIONS(9477), 1, - anon_sym_when, - STATE(6388), 1, - aux_sym_catch_clause_repeat1, - STATE(6621), 1, + ACTIONS(9290), 1, + anon_sym_EQ_GT, + ACTIONS(9320), 1, + anon_sym_where, + ACTIONS(9430), 1, + anon_sym_SEMI, + STATE(2125), 1, sym_block, - STATE(7010), 2, - sym_catch_declaration, - sym_catch_filter_clause, - STATE(6375), 9, + STATE(2129), 1, + sym__function_body, + STATE(6296), 1, + aux_sym__class_declaration_initializer_repeat4, + STATE(6694), 1, + sym_type_parameter_constraints_clause, + STATE(7468), 1, + sym_arrow_expression_clause, + STATE(6310), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -735413,7 +731691,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [266981] = 17, + [263715] = 20, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -735434,20 +731712,25 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(5293), 1, + ACTIONS(9290), 1, + anon_sym_EQ_GT, + ACTIONS(9320), 1, + anon_sym_where, + ACTIONS(9398), 1, + anon_sym_SEMI, + ACTIONS(9400), 1, anon_sym_LBRACE, - ACTIONS(9475), 1, - anon_sym_LPAREN, - ACTIONS(9477), 1, - anon_sym_when, - STATE(1963), 1, + STATE(2572), 1, sym_block, - STATE(6388), 1, - aux_sym_catch_clause_repeat1, - STATE(7010), 2, - sym_catch_declaration, - sym_catch_filter_clause, - STATE(6376), 9, + STATE(2672), 1, + sym__function_body, + STATE(6306), 1, + aux_sym__class_declaration_initializer_repeat4, + STATE(6694), 1, + sym_type_parameter_constraints_clause, + STATE(7278), 1, + sym_arrow_expression_clause, + STATE(6311), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -735457,7 +731740,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [267042] = 17, + [263784] = 20, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -735478,20 +731761,25 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9473), 1, - sym_interpolation_open_brace, - ACTIONS(9543), 1, - sym_interpolation_end_quote, - STATE(6359), 1, - aux_sym_interpolated_string_expression_repeat1, - STATE(6638), 1, - sym__interpolated_string_content, - STATE(6643), 1, - sym_interpolation, - ACTIONS(9469), 2, - sym_interpolation_string_content, - sym_escape_sequence, - STATE(6377), 9, + ACTIONS(9290), 1, + anon_sym_EQ_GT, + ACTIONS(9320), 1, + anon_sym_where, + ACTIONS(9398), 1, + anon_sym_SEMI, + ACTIONS(9400), 1, + anon_sym_LBRACE, + STATE(2572), 1, + sym_block, + STATE(2837), 1, + sym__function_body, + STATE(6404), 1, + aux_sym__class_declaration_initializer_repeat4, + STATE(6694), 1, + sym_type_parameter_constraints_clause, + STATE(7278), 1, + sym_arrow_expression_clause, + STATE(6312), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -735501,7 +731789,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [267103] = 17, + [263853] = 20, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -735522,20 +731810,25 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(2977), 1, - anon_sym_LBRACK, - ACTIONS(4705), 1, - aux_sym_preproc_else_token1, - ACTIONS(4707), 1, - aux_sym_preproc_elif_token1, - ACTIONS(9545), 1, - aux_sym_preproc_if_token3, - STATE(6557), 1, - sym_attribute_list, - STATE(7683), 2, - sym_preproc_else_in_attribute_list, - sym_preproc_elif_in_attribute_list, - STATE(6378), 9, + ACTIONS(5255), 1, + anon_sym_LBRACE, + ACTIONS(9290), 1, + anon_sym_EQ_GT, + ACTIONS(9320), 1, + anon_sym_where, + ACTIONS(9422), 1, + anon_sym_SEMI, + STATE(1933), 1, + sym_block, + STATE(1935), 1, + sym__function_body, + STATE(6291), 1, + aux_sym__class_declaration_initializer_repeat4, + STATE(6694), 1, + sym_type_parameter_constraints_clause, + STATE(7699), 1, + sym_arrow_expression_clause, + STATE(6313), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -735545,7 +731838,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [267164] = 17, + [263922] = 20, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -735566,20 +731859,25 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9473), 1, - sym_interpolation_open_brace, - ACTIONS(9547), 1, - sym_interpolation_end_quote, - STATE(6359), 1, - aux_sym_interpolated_string_expression_repeat1, - STATE(6638), 1, - sym__interpolated_string_content, - STATE(6643), 1, - sym_interpolation, - ACTIONS(9469), 2, - sym_interpolation_string_content, - sym_escape_sequence, - STATE(6379), 9, + ACTIONS(9290), 1, + anon_sym_EQ_GT, + ACTIONS(9320), 1, + anon_sym_where, + ACTIONS(9398), 1, + anon_sym_SEMI, + ACTIONS(9400), 1, + anon_sym_LBRACE, + STATE(2572), 1, + sym_block, + STATE(2673), 1, + sym__function_body, + STATE(6404), 1, + aux_sym__class_declaration_initializer_repeat4, + STATE(6694), 1, + sym_type_parameter_constraints_clause, + STATE(7278), 1, + sym_arrow_expression_clause, + STATE(6314), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -735589,7 +731887,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [267225] = 17, + [263991] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -735610,60 +731908,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9473), 1, - sym_interpolation_open_brace, - ACTIONS(9549), 1, - sym_interpolation_end_quote, - ACTIONS(9551), 1, - sym_interpolation_string_content, - STATE(6401), 1, - aux_sym_interpolated_string_expression_repeat3, - STATE(6761), 1, - sym_interpolation, - STATE(6778), 1, - sym__interpolated_raw_string_content, - STATE(6380), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - [267285] = 16, - ACTIONS(9097), 1, - aux_sym_preproc_region_token1, - ACTIONS(9099), 1, - aux_sym_preproc_endregion_token1, - ACTIONS(9101), 1, - aux_sym_preproc_line_token1, - ACTIONS(9103), 1, - aux_sym_preproc_pragma_token1, - ACTIONS(9105), 1, - aux_sym_preproc_nullable_token1, - ACTIONS(9107), 1, - aux_sym_preproc_error_token1, - ACTIONS(9109), 1, - aux_sym_preproc_warning_token1, - ACTIONS(9111), 1, - aux_sym_preproc_define_token1, - ACTIONS(9113), 1, - aux_sym_preproc_undef_token1, - ACTIONS(9115), 1, - sym_comment, - ACTIONS(9553), 1, - anon_sym_DQUOTE, - ACTIONS(9555), 1, - aux_sym_string_literal_content_token1, - ACTIONS(9558), 1, - aux_sym_string_literal_content_token2, - ACTIONS(9561), 1, - sym_escape_sequence, - STATE(6726), 1, - sym_string_literal_content, - STATE(6381), 10, + ACTIONS(9449), 1, + anon_sym_DOT, + ACTIONS(3978), 7, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LT, + anon_sym_where, + STATE(6315), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -735673,8 +731928,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - aux_sym_string_literal_repeat1, - [267343] = 12, + [264045] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -735695,14 +731949,18 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9564), 6, - anon_sym_SEMI, - anon_sym_EQ, - anon_sym_LBRACK, + ACTIONS(9415), 1, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_in, - STATE(6382), 9, + STATE(6321), 1, + aux_sym_base_list_repeat1, + ACTIONS(9451), 6, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LT, + anon_sym_where, + STATE(6316), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -735712,7 +731970,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [267393] = 17, + [264101] = 17, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -735733,19 +731991,21 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9314), 1, - anon_sym_EQ_GT, - ACTIONS(9400), 1, + ACTIONS(5257), 1, + anon_sym_LPAREN, + ACTIONS(7912), 1, + anon_sym_DOT, + ACTIONS(9455), 1, + anon_sym_COMMA, + STATE(6530), 1, + aux_sym_record_base_repeat1, + STATE(6636), 1, + sym_argument_list, + ACTIONS(9453), 3, anon_sym_SEMI, - ACTIONS(9402), 1, anon_sym_LBRACE, - STATE(2600), 1, - sym_block, - STATE(2659), 1, - sym__function_body, - STATE(7670), 1, - sym_arrow_expression_clause, - STATE(6383), 9, + anon_sym_where, + STATE(6317), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -735755,40 +732015,39 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [267453] = 17, - ACTIONS(9097), 1, + [264163] = 14, + ACTIONS(3), 1, aux_sym_preproc_region_token1, - ACTIONS(9099), 1, + ACTIONS(5), 1, aux_sym_preproc_endregion_token1, - ACTIONS(9101), 1, + ACTIONS(7), 1, aux_sym_preproc_line_token1, - ACTIONS(9103), 1, + ACTIONS(9), 1, aux_sym_preproc_pragma_token1, - ACTIONS(9105), 1, + ACTIONS(11), 1, aux_sym_preproc_nullable_token1, - ACTIONS(9107), 1, + ACTIONS(13), 1, aux_sym_preproc_error_token1, - ACTIONS(9109), 1, + ACTIONS(15), 1, aux_sym_preproc_warning_token1, - ACTIONS(9111), 1, + ACTIONS(17), 1, aux_sym_preproc_define_token1, - ACTIONS(9113), 1, + ACTIONS(19), 1, aux_sym_preproc_undef_token1, - ACTIONS(9115), 1, + ACTIONS(21), 1, sym_comment, - ACTIONS(9566), 1, - anon_sym_DQUOTE, - ACTIONS(9568), 1, - aux_sym_string_literal_content_token1, - ACTIONS(9570), 1, - aux_sym_string_literal_content_token2, - ACTIONS(9572), 1, - sym_escape_sequence, - STATE(6381), 1, - aux_sym_string_literal_repeat1, - STATE(6726), 1, - sym_string_literal_content, - STATE(6384), 9, + ACTIONS(9415), 1, + anon_sym_COMMA, + STATE(6324), 1, + aux_sym_base_list_repeat1, + ACTIONS(9451), 6, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LT, + anon_sym_where, + STATE(6318), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -735798,7 +732057,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [267513] = 15, + [264219] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -735819,17 +732078,18 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8142), 1, - anon_sym_DOT, - ACTIONS(9454), 1, - anon_sym_COMMA, - STATE(6566), 1, - aux_sym_record_base_repeat1, - ACTIONS(9574), 3, + ACTIONS(9459), 1, + anon_sym_LPAREN, + STATE(6361), 1, + sym_argument_list, + ACTIONS(9457), 6, anon_sym_SEMI, + anon_sym_COLON, + anon_sym_COMMA, anon_sym_LBRACE, + anon_sym_LT, anon_sym_where, - STATE(6385), 9, + STATE(6319), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -735839,7 +732099,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [267569] = 17, + [264275] = 19, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -735860,19 +732120,23 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9471), 1, - sym_interpolation_end_quote, - ACTIONS(9473), 1, - sym_interpolation_open_brace, - ACTIONS(9576), 1, - sym_interpolation_string_content, - STATE(6443), 1, - aux_sym_interpolated_string_expression_repeat2, - STATE(6928), 1, - sym_interpolation, - STATE(7034), 1, - sym__interpolated_verbatim_string_content, - STATE(6386), 9, + ACTIONS(8892), 1, + anon_sym_LPAREN, + ACTIONS(9286), 1, + anon_sym_LBRACE, + ACTIONS(9290), 1, + anon_sym_EQ_GT, + ACTIONS(9318), 1, + anon_sym_LT, + STATE(2595), 1, + sym_accessor_list, + STATE(6283), 1, + sym_parameter_list, + STATE(7066), 1, + sym_type_parameter_list, + STATE(7341), 1, + sym_arrow_expression_clause, + STATE(6320), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -735882,40 +732146,39 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [267629] = 17, - ACTIONS(9097), 1, + [264341] = 14, + ACTIONS(3), 1, aux_sym_preproc_region_token1, - ACTIONS(9099), 1, + ACTIONS(5), 1, aux_sym_preproc_endregion_token1, - ACTIONS(9101), 1, + ACTIONS(7), 1, aux_sym_preproc_line_token1, - ACTIONS(9103), 1, + ACTIONS(9), 1, aux_sym_preproc_pragma_token1, - ACTIONS(9105), 1, + ACTIONS(11), 1, aux_sym_preproc_nullable_token1, - ACTIONS(9107), 1, + ACTIONS(13), 1, aux_sym_preproc_error_token1, - ACTIONS(9109), 1, + ACTIONS(15), 1, aux_sym_preproc_warning_token1, - ACTIONS(9111), 1, + ACTIONS(17), 1, aux_sym_preproc_define_token1, - ACTIONS(9113), 1, + ACTIONS(19), 1, aux_sym_preproc_undef_token1, - ACTIONS(9115), 1, + ACTIONS(21), 1, sym_comment, - ACTIONS(9568), 1, - aux_sym_string_literal_content_token1, - ACTIONS(9570), 1, - aux_sym_string_literal_content_token2, - ACTIONS(9572), 1, - sym_escape_sequence, - ACTIONS(9578), 1, - anon_sym_DQUOTE, - STATE(6381), 1, - aux_sym_string_literal_repeat1, - STATE(6726), 1, - sym_string_literal_content, - STATE(6387), 9, + ACTIONS(9415), 1, + anon_sym_COMMA, + STATE(6324), 1, + aux_sym_base_list_repeat1, + ACTIONS(9462), 6, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LT, + anon_sym_where, + STATE(6321), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -735925,7 +732188,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [267689] = 15, + [264397] = 19, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -735946,16 +732209,23 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9580), 1, + ACTIONS(8892), 1, anon_sym_LPAREN, - ACTIONS(9583), 1, + ACTIONS(9286), 1, anon_sym_LBRACE, - ACTIONS(9585), 1, - anon_sym_when, - STATE(7010), 2, - sym_catch_declaration, - sym_catch_filter_clause, - STATE(6388), 10, + ACTIONS(9290), 1, + anon_sym_EQ_GT, + ACTIONS(9318), 1, + anon_sym_LT, + STATE(2640), 1, + sym_accessor_list, + STATE(6288), 1, + sym_parameter_list, + STATE(7101), 1, + sym_type_parameter_list, + STATE(7572), 1, + sym_arrow_expression_clause, + STATE(6322), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -735965,8 +732235,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - aux_sym_catch_clause_repeat1, - [267745] = 17, + [264463] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -735987,19 +732256,16 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9314), 1, - anon_sym_EQ_GT, - ACTIONS(9588), 1, - anon_sym_SEMI, - ACTIONS(9590), 1, - anon_sym_LBRACE, - STATE(3436), 1, - sym_block, - STATE(3491), 1, - sym__function_body, - STATE(7418), 1, - sym_arrow_expression_clause, - STATE(6389), 9, + ACTIONS(9464), 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(6323), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -736009,40 +732275,37 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [267805] = 17, - ACTIONS(9097), 1, + [264515] = 13, + ACTIONS(3), 1, aux_sym_preproc_region_token1, - ACTIONS(9099), 1, + ACTIONS(5), 1, aux_sym_preproc_endregion_token1, - ACTIONS(9101), 1, + ACTIONS(7), 1, aux_sym_preproc_line_token1, - ACTIONS(9103), 1, + ACTIONS(9), 1, aux_sym_preproc_pragma_token1, - ACTIONS(9105), 1, + ACTIONS(11), 1, aux_sym_preproc_nullable_token1, - ACTIONS(9107), 1, + ACTIONS(13), 1, aux_sym_preproc_error_token1, - ACTIONS(9109), 1, + ACTIONS(15), 1, aux_sym_preproc_warning_token1, - ACTIONS(9111), 1, + ACTIONS(17), 1, aux_sym_preproc_define_token1, - ACTIONS(9113), 1, + ACTIONS(19), 1, aux_sym_preproc_undef_token1, - ACTIONS(9115), 1, + ACTIONS(21), 1, sym_comment, - ACTIONS(9568), 1, - aux_sym_string_literal_content_token1, - ACTIONS(9570), 1, - aux_sym_string_literal_content_token2, - ACTIONS(9572), 1, - sym_escape_sequence, - ACTIONS(9592), 1, - anon_sym_DQUOTE, - STATE(6381), 1, - aux_sym_string_literal_repeat1, - STATE(6726), 1, - sym_string_literal_content, - STATE(6390), 9, + ACTIONS(9466), 1, + anon_sym_COMMA, + ACTIONS(9457), 6, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LT, + anon_sym_where, + STATE(6324), 10, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -736052,40 +732315,45 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [267865] = 17, - ACTIONS(9097), 1, + aux_sym_base_list_repeat1, + [264569] = 19, + ACTIONS(3), 1, aux_sym_preproc_region_token1, - ACTIONS(9099), 1, + ACTIONS(5), 1, aux_sym_preproc_endregion_token1, - ACTIONS(9101), 1, + ACTIONS(7), 1, aux_sym_preproc_line_token1, - ACTIONS(9103), 1, + ACTIONS(9), 1, aux_sym_preproc_pragma_token1, - ACTIONS(9105), 1, + ACTIONS(11), 1, aux_sym_preproc_nullable_token1, - ACTIONS(9107), 1, + ACTIONS(13), 1, aux_sym_preproc_error_token1, - ACTIONS(9109), 1, + ACTIONS(15), 1, aux_sym_preproc_warning_token1, - ACTIONS(9111), 1, + ACTIONS(17), 1, aux_sym_preproc_define_token1, - ACTIONS(9113), 1, + ACTIONS(19), 1, aux_sym_preproc_undef_token1, - ACTIONS(9115), 1, + ACTIONS(21), 1, sym_comment, - ACTIONS(9568), 1, - aux_sym_string_literal_content_token1, - ACTIONS(9570), 1, - aux_sym_string_literal_content_token2, - ACTIONS(9572), 1, - sym_escape_sequence, - ACTIONS(9594), 1, - anon_sym_DQUOTE, - STATE(6381), 1, - aux_sym_string_literal_repeat1, - STATE(6726), 1, - sym_string_literal_content, - STATE(6391), 9, + ACTIONS(8892), 1, + anon_sym_LPAREN, + ACTIONS(9286), 1, + anon_sym_LBRACE, + ACTIONS(9290), 1, + anon_sym_EQ_GT, + ACTIONS(9318), 1, + anon_sym_LT, + STATE(2616), 1, + sym_accessor_list, + STATE(6273), 1, + sym_parameter_list, + STATE(7235), 1, + sym_type_parameter_list, + STATE(7634), 1, + sym_arrow_expression_clause, + STATE(6325), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -736095,7 +732363,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [267925] = 17, + [264635] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -736116,19 +732384,16 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9473), 1, - sym_interpolation_open_brace, - ACTIONS(9551), 1, - sym_interpolation_string_content, - ACTIONS(9596), 1, - sym_interpolation_end_quote, - STATE(6401), 1, - aux_sym_interpolated_string_expression_repeat3, - STATE(6761), 1, - sym_interpolation, - STATE(6778), 1, - sym__interpolated_raw_string_content, - STATE(6392), 9, + ACTIONS(9445), 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(6326), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -736138,7 +732403,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [267985] = 17, + [264687] = 17, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -736159,19 +732424,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, + ACTIONS(9471), 1, + sym_interpolation_end_quote, ACTIONS(9473), 1, sym_interpolation_open_brace, - ACTIONS(9551), 1, - sym_interpolation_string_content, - ACTIONS(9598), 1, - sym_interpolation_end_quote, - STATE(6462), 1, - aux_sym_interpolated_string_expression_repeat3, - STATE(6761), 1, + STATE(6343), 1, + aux_sym_interpolated_string_expression_repeat1, + STATE(6625), 1, + sym__interpolated_string_content, + STATE(6720), 1, sym_interpolation, - STATE(6778), 1, - sym__interpolated_raw_string_content, - STATE(6393), 9, + ACTIONS(9469), 2, + sym_interpolation_string_content, + sym_escape_sequence, + STATE(6327), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -736181,7 +732447,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [268045] = 17, + [264748] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -736202,19 +732468,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9314), 1, - anon_sym_EQ_GT, - ACTIONS(9400), 1, - anon_sym_SEMI, - ACTIONS(9402), 1, - anon_sym_LBRACE, - STATE(2600), 1, - sym_block, - STATE(2713), 1, - sym__function_body, - STATE(7670), 1, - sym_arrow_expression_clause, - STATE(6394), 9, + ACTIONS(9475), 7, + anon_sym_where, + anon_sym_from, + anon_sym_join, + anon_sym_let, + anon_sym_orderby, + anon_sym_group, + anon_sym_select, + STATE(6328), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -736224,7 +732486,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [268105] = 16, + [264799] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -736245,18 +732507,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(5264), 1, + ACTIONS(9477), 7, + anon_sym_SEMI, + anon_sym_COLON, anon_sym_LPAREN, - ACTIONS(9600), 1, - anon_sym_COMMA, - STATE(6698), 1, - sym_argument_list, - STATE(6701), 1, - aux_sym_base_list_repeat1, - ACTIONS(9460), 2, anon_sym_LBRACE, + anon_sym_LT, anon_sym_where, - STATE(6395), 9, + anon_sym_EQ_GT, + STATE(6329), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -736266,7 +732525,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [268163] = 17, + [264850] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -736287,19 +732546,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9314), 1, - anon_sym_EQ_GT, - ACTIONS(9400), 1, + ACTIONS(9479), 7, anon_sym_SEMI, - ACTIONS(9402), 1, + anon_sym_COLON, + anon_sym_LPAREN, anon_sym_LBRACE, - STATE(2600), 1, - sym_block, - STATE(2812), 1, - sym__function_body, - STATE(7670), 1, - sym_arrow_expression_clause, - STATE(6396), 9, + anon_sym_LT, + anon_sym_where, + anon_sym_EQ_GT, + STATE(6330), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -736309,7 +732564,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [268223] = 17, + [264901] = 16, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -736330,19 +732585,18 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9473), 1, - sym_interpolation_open_brace, - ACTIONS(9547), 1, + ACTIONS(9484), 1, sym_interpolation_end_quote, - ACTIONS(9576), 1, - sym_interpolation_string_content, - STATE(6399), 1, - aux_sym_interpolated_string_expression_repeat2, - STATE(6928), 1, + ACTIONS(9486), 1, + sym_interpolation_open_brace, + STATE(6625), 1, + sym__interpolated_string_content, + STATE(6720), 1, sym_interpolation, - STATE(7034), 1, - sym__interpolated_verbatim_string_content, - STATE(6397), 9, + ACTIONS(9481), 2, + sym_interpolation_string_content, + sym_escape_sequence, + STATE(6331), 10, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -736352,7 +732606,8 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [268283] = 17, + aux_sym_interpolated_string_expression_repeat1, + [264960] = 17, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -736373,19 +732628,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9339), 1, - anon_sym_where, - ACTIONS(9448), 1, - anon_sym_COLON, - ACTIONS(9602), 1, - anon_sym_LBRACE, - STATE(6641), 1, - sym_type_parameter_constraints_clause, - STATE(6702), 1, - sym_base_list, - STATE(6713), 1, - aux_sym__class_declaration_initializer_repeat4, - STATE(6398), 9, + ACTIONS(2975), 1, + anon_sym_LBRACK, + ACTIONS(4671), 1, + aux_sym_preproc_else_token1, + ACTIONS(4673), 1, + aux_sym_preproc_elif_token1, + ACTIONS(9489), 1, + aux_sym_preproc_if_token3, + STATE(6603), 1, + sym_attribute_list, + STATE(7336), 2, + sym_preproc_else_in_attribute_list, + sym_preproc_elif_in_attribute_list, + STATE(6332), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -736395,7 +732651,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [268343] = 16, + [265021] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -736416,17 +732672,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9604), 1, - sym_interpolation_end_quote, - ACTIONS(9606), 1, - sym_interpolation_open_brace, - ACTIONS(9609), 1, - sym_interpolation_string_content, - STATE(6928), 1, - sym_interpolation, - STATE(7034), 1, - sym__interpolated_verbatim_string_content, - STATE(6399), 10, + ACTIONS(9491), 7, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LT, + anon_sym_where, + anon_sym_EQ_GT, + STATE(6333), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -736436,41 +732690,36 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - aux_sym_interpolated_string_expression_repeat2, - [268401] = 17, - ACTIONS(9097), 1, + [265072] = 12, + ACTIONS(3), 1, aux_sym_preproc_region_token1, - ACTIONS(9099), 1, + ACTIONS(5), 1, aux_sym_preproc_endregion_token1, - ACTIONS(9101), 1, + ACTIONS(7), 1, aux_sym_preproc_line_token1, - ACTIONS(9103), 1, + ACTIONS(9), 1, aux_sym_preproc_pragma_token1, - ACTIONS(9105), 1, + ACTIONS(11), 1, aux_sym_preproc_nullable_token1, - ACTIONS(9107), 1, + ACTIONS(13), 1, aux_sym_preproc_error_token1, - ACTIONS(9109), 1, + ACTIONS(15), 1, aux_sym_preproc_warning_token1, - ACTIONS(9111), 1, + ACTIONS(17), 1, aux_sym_preproc_define_token1, - ACTIONS(9113), 1, + ACTIONS(19), 1, aux_sym_preproc_undef_token1, - ACTIONS(9115), 1, + ACTIONS(21), 1, sym_comment, - ACTIONS(9568), 1, - aux_sym_string_literal_content_token1, - ACTIONS(9570), 1, - aux_sym_string_literal_content_token2, - ACTIONS(9572), 1, - sym_escape_sequence, - ACTIONS(9612), 1, - anon_sym_DQUOTE, - STATE(6381), 1, - aux_sym_string_literal_repeat1, - STATE(6726), 1, - sym_string_literal_content, - STATE(6400), 9, + ACTIONS(9493), 7, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LT, + anon_sym_where, + anon_sym_EQ_GT, + STATE(6334), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -736480,7 +732729,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [268461] = 16, + [265123] = 17, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -736501,17 +732750,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9614), 1, - sym_interpolation_end_quote, - ACTIONS(9616), 1, - sym_interpolation_open_brace, - ACTIONS(9619), 1, - sym_interpolation_string_content, - STATE(6761), 1, - sym_interpolation, - STATE(6778), 1, - sym__interpolated_raw_string_content, - STATE(6401), 10, + ACTIONS(9495), 1, + anon_sym_catch, + ACTIONS(9497), 1, + anon_sym_finally, + STATE(6346), 1, + aux_sym_try_statement_repeat1, + STATE(6674), 1, + sym_catch_clause, + STATE(7173), 1, + sym_finally_clause, + ACTIONS(3093), 2, + anon_sym_while, + anon_sym_else, + STATE(6335), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -736521,8 +732773,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - aux_sym_interpolated_string_expression_repeat3, - [268519] = 17, + [265184] = 17, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -736543,19 +732794,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9314), 1, - anon_sym_EQ_GT, - ACTIONS(9400), 1, + ACTIONS(9320), 1, + anon_sym_where, + ACTIONS(9408), 1, + anon_sym_COLON, + STATE(6539), 1, + aux_sym__class_declaration_initializer_repeat4, + STATE(6615), 1, + sym_base_list, + STATE(6694), 1, + sym_type_parameter_constraints_clause, + ACTIONS(9499), 2, anon_sym_SEMI, - ACTIONS(9402), 1, anon_sym_LBRACE, - STATE(2600), 1, - sym_block, - STATE(2781), 1, - sym__function_body, - STATE(7670), 1, - sym_arrow_expression_clause, - STATE(6402), 9, + STATE(6336), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -736565,7 +732817,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [268579] = 12, + [265245] = 17, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -736586,14 +732838,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9622), 6, - anon_sym_SEMI, - anon_sym_EQ, + ACTIONS(2975), 1, anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_in, - STATE(6403), 9, + ACTIONS(4671), 1, + aux_sym_preproc_else_token1, + ACTIONS(4673), 1, + aux_sym_preproc_elif_token1, + ACTIONS(9501), 1, + aux_sym_preproc_if_token3, + STATE(6490), 1, + sym_attribute_list, + STATE(7349), 2, + sym_preproc_else_in_attribute_list, + sym_preproc_elif_in_attribute_list, + STATE(6337), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -736603,7 +732861,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [268629] = 17, + [265306] = 17, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -736624,19 +732882,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9314), 1, - anon_sym_EQ_GT, - ACTIONS(9400), 1, - anon_sym_SEMI, - ACTIONS(9402), 1, - anon_sym_LBRACE, - STATE(2600), 1, - sym_block, - STATE(2718), 1, - sym__function_body, - STATE(7670), 1, - sym_arrow_expression_clause, - STATE(6404), 9, + ACTIONS(2975), 1, + anon_sym_LBRACK, + ACTIONS(4671), 1, + aux_sym_preproc_else_token1, + ACTIONS(4673), 1, + aux_sym_preproc_elif_token1, + ACTIONS(9503), 1, + aux_sym_preproc_if_token3, + STATE(6456), 1, + sym_attribute_list, + STATE(7598), 2, + sym_preproc_else_in_attribute_list, + sym_preproc_elif_in_attribute_list, + STATE(6338), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -736646,7 +732905,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [268689] = 17, + [265367] = 17, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -736667,19 +732926,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9314), 1, - anon_sym_EQ_GT, - ACTIONS(9400), 1, - anon_sym_SEMI, - ACTIONS(9402), 1, - anon_sym_LBRACE, - STATE(2600), 1, - sym_block, - STATE(2720), 1, - sym__function_body, - STATE(7670), 1, - sym_arrow_expression_clause, - STATE(6405), 9, + ACTIONS(9473), 1, + sym_interpolation_open_brace, + ACTIONS(9505), 1, + sym_interpolation_end_quote, + STATE(6367), 1, + aux_sym_interpolated_string_expression_repeat1, + STATE(6625), 1, + sym__interpolated_string_content, + STATE(6720), 1, + sym_interpolation, + ACTIONS(9469), 2, + sym_interpolation_string_content, + sym_escape_sequence, + STATE(6339), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -736689,7 +732949,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [268749] = 17, + [265428] = 17, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -736710,19 +732970,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9314), 1, - anon_sym_EQ_GT, - ACTIONS(9400), 1, - anon_sym_SEMI, - ACTIONS(9402), 1, + ACTIONS(5234), 1, anon_sym_LBRACE, - STATE(2600), 1, + ACTIONS(9507), 1, + anon_sym_LPAREN, + ACTIONS(9509), 1, + anon_sym_when, + STATE(1964), 1, sym_block, - STATE(2671), 1, - sym__function_body, - STATE(7670), 1, - sym_arrow_expression_clause, - STATE(6406), 9, + STATE(6364), 1, + aux_sym_catch_clause_repeat1, + STATE(7001), 2, + sym_catch_declaration, + sym_catch_filter_clause, + STATE(6340), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -736732,7 +732993,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [268809] = 17, + [265489] = 17, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -736755,17 +733016,18 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, ACTIONS(9473), 1, sym_interpolation_open_brace, - ACTIONS(9521), 1, + ACTIONS(9511), 1, sym_interpolation_end_quote, - ACTIONS(9576), 1, - sym_interpolation_string_content, - STATE(6399), 1, - aux_sym_interpolated_string_expression_repeat2, - STATE(6928), 1, + STATE(6331), 1, + aux_sym_interpolated_string_expression_repeat1, + STATE(6625), 1, + sym__interpolated_string_content, + STATE(6720), 1, sym_interpolation, - STATE(7034), 1, - sym__interpolated_verbatim_string_content, - STATE(6407), 9, + ACTIONS(9469), 2, + sym_interpolation_string_content, + sym_escape_sequence, + STATE(6341), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -736775,7 +733037,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [268869] = 17, + [265550] = 17, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -736798,17 +733060,18 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, ACTIONS(9473), 1, sym_interpolation_open_brace, - ACTIONS(9551), 1, - sym_interpolation_string_content, - ACTIONS(9624), 1, + ACTIONS(9513), 1, sym_interpolation_end_quote, - STATE(6401), 1, - aux_sym_interpolated_string_expression_repeat3, - STATE(6761), 1, + STATE(6331), 1, + aux_sym_interpolated_string_expression_repeat1, + STATE(6625), 1, + sym__interpolated_string_content, + STATE(6720), 1, sym_interpolation, - STATE(6778), 1, - sym__interpolated_raw_string_content, - STATE(6408), 9, + ACTIONS(9469), 2, + sym_interpolation_string_content, + sym_escape_sequence, + STATE(6342), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -736818,7 +733081,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [268929] = 17, + [265611] = 17, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -736839,19 +733102,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9314), 1, - anon_sym_EQ_GT, - ACTIONS(9400), 1, - anon_sym_SEMI, - ACTIONS(9402), 1, - anon_sym_LBRACE, - STATE(2600), 1, - sym_block, - STATE(2683), 1, - sym__function_body, - STATE(7670), 1, - sym_arrow_expression_clause, - STATE(6409), 9, + ACTIONS(9473), 1, + sym_interpolation_open_brace, + ACTIONS(9515), 1, + sym_interpolation_end_quote, + STATE(6331), 1, + aux_sym_interpolated_string_expression_repeat1, + STATE(6625), 1, + sym__interpolated_string_content, + STATE(6720), 1, + sym_interpolation, + ACTIONS(9469), 2, + sym_interpolation_string_content, + sym_escape_sequence, + STATE(6343), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -736861,7 +733125,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [268989] = 17, + [265672] = 17, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -736882,62 +733146,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9339), 1, - anon_sym_where, - ACTIONS(9448), 1, - anon_sym_COLON, - ACTIONS(9626), 1, + ACTIONS(5255), 1, anon_sym_LBRACE, - STATE(6641), 1, - sym_type_parameter_constraints_clause, - STATE(6707), 1, - sym_base_list, - STATE(6712), 1, - aux_sym__class_declaration_initializer_repeat4, - STATE(6410), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - [269049] = 17, - ACTIONS(9097), 1, - aux_sym_preproc_region_token1, - ACTIONS(9099), 1, - aux_sym_preproc_endregion_token1, - ACTIONS(9101), 1, - aux_sym_preproc_line_token1, - ACTIONS(9103), 1, - aux_sym_preproc_pragma_token1, - ACTIONS(9105), 1, - aux_sym_preproc_nullable_token1, - ACTIONS(9107), 1, - aux_sym_preproc_error_token1, - ACTIONS(9109), 1, - aux_sym_preproc_warning_token1, - ACTIONS(9111), 1, - aux_sym_preproc_define_token1, - ACTIONS(9113), 1, - aux_sym_preproc_undef_token1, - ACTIONS(9115), 1, - sym_comment, - ACTIONS(9568), 1, - aux_sym_string_literal_content_token1, - ACTIONS(9570), 1, - aux_sym_string_literal_content_token2, - ACTIONS(9572), 1, - sym_escape_sequence, - ACTIONS(9628), 1, - anon_sym_DQUOTE, - STATE(6400), 1, - aux_sym_string_literal_repeat1, - STATE(6726), 1, - sym_string_literal_content, - STATE(6411), 9, + ACTIONS(9507), 1, + anon_sym_LPAREN, + ACTIONS(9509), 1, + anon_sym_when, + STATE(1927), 1, + sym_block, + STATE(6435), 1, + aux_sym_catch_clause_repeat1, + STATE(7001), 2, + sym_catch_declaration, + sym_catch_filter_clause, + STATE(6344), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -736947,7 +733169,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [269109] = 14, + [265733] = 17, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -736968,16 +733190,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(3667), 1, - anon_sym_EQ_GT, - ACTIONS(9630), 1, - anon_sym_EQ, - ACTIONS(3829), 4, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_and, - anon_sym_or, - STATE(6412), 9, + ACTIONS(5573), 1, + anon_sym_LBRACE, + ACTIONS(9507), 1, + anon_sym_LPAREN, + ACTIONS(9509), 1, + anon_sym_when, + STATE(6352), 1, + aux_sym_catch_clause_repeat1, + STATE(6668), 1, + sym_block, + STATE(7001), 2, + sym_catch_declaration, + sym_catch_filter_clause, + STATE(6345), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -736987,7 +733213,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [269163] = 12, + [265794] = 17, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -737008,14 +733234,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9632), 6, - anon_sym_COLON, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_LT, - anon_sym_where, - STATE(6413), 9, + ACTIONS(9495), 1, + anon_sym_catch, + ACTIONS(9497), 1, + anon_sym_finally, + STATE(6382), 1, + aux_sym_try_statement_repeat1, + STATE(6674), 1, + sym_catch_clause, + STATE(7182), 1, + sym_finally_clause, + ACTIONS(3101), 2, + anon_sym_while, + anon_sym_else, + STATE(6346), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -737025,40 +733257,41 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [269213] = 17, - ACTIONS(9097), 1, + [265855] = 17, + ACTIONS(3), 1, aux_sym_preproc_region_token1, - ACTIONS(9099), 1, + ACTIONS(5), 1, aux_sym_preproc_endregion_token1, - ACTIONS(9101), 1, + ACTIONS(7), 1, aux_sym_preproc_line_token1, - ACTIONS(9103), 1, + ACTIONS(9), 1, aux_sym_preproc_pragma_token1, - ACTIONS(9105), 1, + ACTIONS(11), 1, aux_sym_preproc_nullable_token1, - ACTIONS(9107), 1, + ACTIONS(13), 1, aux_sym_preproc_error_token1, - ACTIONS(9109), 1, + ACTIONS(15), 1, aux_sym_preproc_warning_token1, - ACTIONS(9111), 1, + ACTIONS(17), 1, aux_sym_preproc_define_token1, - ACTIONS(9113), 1, + ACTIONS(19), 1, aux_sym_preproc_undef_token1, - ACTIONS(9115), 1, + ACTIONS(21), 1, sym_comment, - ACTIONS(9568), 1, - aux_sym_string_literal_content_token1, - ACTIONS(9570), 1, - aux_sym_string_literal_content_token2, - ACTIONS(9572), 1, + ACTIONS(9473), 1, + sym_interpolation_open_brace, + ACTIONS(9517), 1, + sym_interpolation_end_quote, + STATE(6342), 1, + aux_sym_interpolated_string_expression_repeat1, + STATE(6625), 1, + sym__interpolated_string_content, + STATE(6720), 1, + sym_interpolation, + ACTIONS(9469), 2, + sym_interpolation_string_content, sym_escape_sequence, - ACTIONS(9634), 1, - anon_sym_DQUOTE, - STATE(6387), 1, - aux_sym_string_literal_repeat1, - STATE(6726), 1, - sym_string_literal_content, - STATE(6414), 9, + STATE(6347), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -737068,7 +733301,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [269273] = 14, + [265916] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -737089,15 +733322,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9636), 1, - anon_sym_catch, - STATE(6688), 1, - sym_catch_clause, - ACTIONS(3111), 3, - anon_sym_while, - anon_sym_finally, - anon_sym_else, - STATE(6415), 10, + ACTIONS(9519), 7, + anon_sym_where, + anon_sym_from, + anon_sym_join, + anon_sym_let, + anon_sym_orderby, + anon_sym_group, + anon_sym_select, + STATE(6348), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -737107,8 +733340,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - aux_sym_try_statement_repeat1, - [269327] = 17, + [265967] = 17, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -737129,19 +733361,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9314), 1, - anon_sym_EQ_GT, - ACTIONS(9400), 1, - anon_sym_SEMI, - ACTIONS(9402), 1, + ACTIONS(5859), 1, anon_sym_LBRACE, - STATE(2600), 1, + ACTIONS(9507), 1, + anon_sym_LPAREN, + ACTIONS(9509), 1, + anon_sym_when, + STATE(2085), 1, sym_block, - STATE(2828), 1, - sym__function_body, - STATE(7670), 1, - sym_arrow_expression_clause, - STATE(6416), 9, + STATE(6360), 1, + aux_sym_catch_clause_repeat1, + STATE(7001), 2, + sym_catch_declaration, + sym_catch_filter_clause, + STATE(6349), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -737151,7 +733384,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [269387] = 16, + [266028] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -737172,18 +733405,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(3667), 1, - anon_sym_EQ_GT, - ACTIONS(5573), 1, - anon_sym_LBRACK, - ACTIONS(9308), 1, - anon_sym_EQ, - STATE(6830), 1, - sym_bracketed_argument_list, - ACTIONS(9306), 2, - anon_sym_SEMI, - anon_sym_COMMA, - STATE(6417), 9, + ACTIONS(9521), 7, + anon_sym_where, + anon_sym_from, + anon_sym_join, + anon_sym_let, + anon_sym_orderby, + anon_sym_group, + anon_sym_select, + STATE(6350), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -737193,7 +733423,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [269445] = 17, + [266079] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -737214,19 +733444,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9339), 1, + ACTIONS(9523), 7, anon_sym_where, - ACTIONS(9448), 1, - anon_sym_COLON, - ACTIONS(9639), 1, - anon_sym_LBRACE, - STATE(6641), 1, - sym_type_parameter_constraints_clause, - STATE(6646), 1, - sym_base_list, - STATE(6672), 1, - aux_sym__class_declaration_initializer_repeat4, - STATE(6418), 9, + anon_sym_from, + anon_sym_join, + anon_sym_let, + anon_sym_orderby, + anon_sym_group, + anon_sym_select, + STATE(6351), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -737236,7 +733462,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [269505] = 17, + [266130] = 17, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -737257,19 +733483,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9473), 1, - sym_interpolation_open_brace, - ACTIONS(9479), 1, - sym_interpolation_end_quote, - ACTIONS(9576), 1, - sym_interpolation_string_content, - STATE(6397), 1, - aux_sym_interpolated_string_expression_repeat2, - STATE(6928), 1, - sym_interpolation, - STATE(7034), 1, - sym__interpolated_verbatim_string_content, - STATE(6419), 9, + ACTIONS(5573), 1, + anon_sym_LBRACE, + ACTIONS(9507), 1, + anon_sym_LPAREN, + ACTIONS(9509), 1, + anon_sym_when, + STATE(6435), 1, + aux_sym_catch_clause_repeat1, + STATE(6676), 1, + sym_block, + STATE(7001), 2, + sym_catch_declaration, + sym_catch_filter_clause, + STATE(6352), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -737279,7 +733506,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [269565] = 16, + [266191] = 17, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -737300,18 +733527,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(6829), 1, - anon_sym_LT, - ACTIONS(6867), 1, - anon_sym_COLON_COLON, - ACTIONS(9641), 1, - anon_sym_EQ, - STATE(2183), 1, - sym_type_argument_list, - ACTIONS(3662), 2, + ACTIONS(9320), 1, + anon_sym_where, + ACTIONS(9408), 1, + anon_sym_COLON, + STATE(6582), 1, + sym_base_list, + STATE(6583), 1, + aux_sym__class_declaration_initializer_repeat4, + STATE(6694), 1, + sym_type_parameter_constraints_clause, + ACTIONS(9525), 2, anon_sym_SEMI, - anon_sym_DOT, - STATE(6420), 9, + anon_sym_LBRACE, + STATE(6353), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -737321,7 +733550,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [269623] = 17, + [266252] = 17, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -737342,19 +733571,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9314), 1, - anon_sym_EQ_GT, - ACTIONS(9400), 1, - anon_sym_SEMI, - ACTIONS(9402), 1, - anon_sym_LBRACE, - STATE(2600), 1, - sym_block, - STATE(2831), 1, - sym__function_body, - STATE(7670), 1, - sym_arrow_expression_clause, - STATE(6421), 9, + ACTIONS(9473), 1, + sym_interpolation_open_brace, + ACTIONS(9527), 1, + sym_interpolation_end_quote, + STATE(6331), 1, + aux_sym_interpolated_string_expression_repeat1, + STATE(6625), 1, + sym__interpolated_string_content, + STATE(6720), 1, + sym_interpolation, + ACTIONS(9469), 2, + sym_interpolation_string_content, + sym_escape_sequence, + STATE(6354), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -737364,7 +733594,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [269683] = 16, + [266313] = 17, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -737385,18 +733615,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(6829), 1, - anon_sym_LT, - ACTIONS(6867), 1, - anon_sym_COLON_COLON, - ACTIONS(9643), 1, - anon_sym_EQ, - STATE(2183), 1, - sym_type_argument_list, - ACTIONS(3662), 2, - anon_sym_SEMI, - anon_sym_DOT, - STATE(6422), 9, + ACTIONS(2975), 1, + anon_sym_LBRACK, + ACTIONS(4671), 1, + aux_sym_preproc_else_token1, + ACTIONS(4673), 1, + aux_sym_preproc_elif_token1, + ACTIONS(9529), 1, + aux_sym_preproc_if_token3, + STATE(6586), 1, + sym_attribute_list, + STATE(7479), 2, + sym_preproc_else_in_attribute_list, + sym_preproc_elif_in_attribute_list, + STATE(6355), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -737406,7 +733638,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [269741] = 17, + [266374] = 17, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -737427,19 +733659,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9314), 1, - anon_sym_EQ_GT, - ACTIONS(9400), 1, - anon_sym_SEMI, - ACTIONS(9402), 1, - anon_sym_LBRACE, - STATE(2600), 1, - sym_block, - STATE(2738), 1, - sym__function_body, - STATE(7670), 1, - sym_arrow_expression_clause, - STATE(6423), 9, + ACTIONS(2639), 1, + aux_sym_preproc_if_token3, + ACTIONS(2975), 1, + anon_sym_LBRACK, + ACTIONS(4671), 1, + aux_sym_preproc_else_token1, + ACTIONS(4673), 1, + aux_sym_preproc_elif_token1, + STATE(6568), 1, + sym_attribute_list, + STATE(7380), 2, + sym_preproc_else_in_attribute_list, + sym_preproc_elif_in_attribute_list, + STATE(6356), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -737449,7 +733682,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [269801] = 17, + [266435] = 17, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -737470,19 +733703,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9314), 1, - anon_sym_EQ_GT, - ACTIONS(9588), 1, - anon_sym_SEMI, - ACTIONS(9590), 1, - anon_sym_LBRACE, - STATE(3381), 1, - sym__function_body, - STATE(3436), 1, - sym_block, - STATE(7418), 1, - sym_arrow_expression_clause, - STATE(6424), 9, + ACTIONS(2975), 1, + anon_sym_LBRACK, + ACTIONS(4671), 1, + aux_sym_preproc_else_token1, + ACTIONS(4673), 1, + aux_sym_preproc_elif_token1, + ACTIONS(9531), 1, + aux_sym_preproc_if_token3, + STATE(6602), 1, + sym_attribute_list, + STATE(7392), 2, + sym_preproc_else_in_attribute_list, + sym_preproc_elif_in_attribute_list, + STATE(6357), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -737492,7 +733726,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [269861] = 17, + [266496] = 17, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -737515,17 +733749,18 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, ACTIONS(9473), 1, sym_interpolation_open_brace, - ACTIONS(9489), 1, + ACTIONS(9533), 1, sym_interpolation_end_quote, - ACTIONS(9576), 1, - sym_interpolation_string_content, - STATE(6407), 1, - aux_sym_interpolated_string_expression_repeat2, - STATE(6928), 1, + STATE(6354), 1, + aux_sym_interpolated_string_expression_repeat1, + STATE(6625), 1, + sym__interpolated_string_content, + STATE(6720), 1, sym_interpolation, - STATE(7034), 1, - sym__interpolated_verbatim_string_content, - STATE(6425), 9, + ACTIONS(9469), 2, + sym_interpolation_string_content, + sym_escape_sequence, + STATE(6358), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -737535,7 +733770,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [269921] = 17, + [266557] = 16, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -737556,19 +733791,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9473), 1, - sym_interpolation_open_brace, - ACTIONS(9551), 1, - sym_interpolation_string_content, - ACTIONS(9645), 1, - sym_interpolation_end_quote, - STATE(6408), 1, - aux_sym_interpolated_string_expression_repeat3, - STATE(6761), 1, - sym_interpolation, - STATE(6778), 1, - sym__interpolated_raw_string_content, - STATE(6426), 9, + ACTIONS(5257), 1, + anon_sym_LPAREN, + ACTIONS(9535), 1, + anon_sym_COMMA, + STATE(6587), 1, + sym_argument_list, + STATE(6588), 1, + aux_sym_base_list_repeat1, + ACTIONS(9413), 3, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_where, + STATE(6359), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -737578,7 +733813,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [269981] = 14, + [266616] = 17, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -737599,16 +733834,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9649), 1, - anon_sym_COMMA, - STATE(6436), 1, - aux_sym_type_parameter_constraints_clause_repeat1, - ACTIONS(9647), 4, - anon_sym_SEMI, + ACTIONS(5859), 1, anon_sym_LBRACE, - anon_sym_where, - anon_sym_EQ_GT, - STATE(6427), 9, + ACTIONS(9507), 1, + anon_sym_LPAREN, + ACTIONS(9509), 1, + anon_sym_when, + STATE(2082), 1, + sym_block, + STATE(6435), 1, + aux_sym_catch_clause_repeat1, + STATE(7001), 2, + sym_catch_declaration, + sym_catch_filter_clause, + STATE(6360), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -737618,7 +733857,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [270035] = 17, + [266677] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -737639,19 +733878,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9314), 1, - anon_sym_EQ_GT, - ACTIONS(9400), 1, + ACTIONS(9537), 7, anon_sym_SEMI, - ACTIONS(9402), 1, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_LPAREN, anon_sym_LBRACE, - STATE(2600), 1, - sym_block, - STATE(2834), 1, - sym__function_body, - STATE(7670), 1, - sym_arrow_expression_clause, - STATE(6428), 9, + anon_sym_LT, + anon_sym_where, + STATE(6361), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -737661,7 +733896,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [270095] = 17, + [266728] = 17, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -737684,17 +733919,18 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, ACTIONS(9473), 1, sym_interpolation_open_brace, - ACTIONS(9551), 1, - sym_interpolation_string_content, - ACTIONS(9651), 1, + ACTIONS(9539), 1, sym_interpolation_end_quote, - STATE(6392), 1, - aux_sym_interpolated_string_expression_repeat3, - STATE(6761), 1, + STATE(6341), 1, + aux_sym_interpolated_string_expression_repeat1, + STATE(6625), 1, + sym__interpolated_string_content, + STATE(6720), 1, sym_interpolation, - STATE(6778), 1, - sym__interpolated_raw_string_content, - STATE(6429), 9, + ACTIONS(9469), 2, + sym_interpolation_string_content, + sym_escape_sequence, + STATE(6362), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -737704,7 +733940,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [270155] = 17, + [266789] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -737725,19 +733961,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4018), 1, - anon_sym_GT, - ACTIONS(6678), 1, - anon_sym_LBRACK, - ACTIONS(6680), 1, - anon_sym_STAR, - ACTIONS(6911), 1, - anon_sym_DOT, - ACTIONS(9653), 1, - anon_sym_COMMA, - ACTIONS(9655), 1, - anon_sym_QMARK, - STATE(6430), 9, + ACTIONS(4066), 7, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LT, + anon_sym_where, + anon_sym_EQ_GT, + STATE(6363), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -737747,7 +733979,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [270215] = 12, + [266840] = 17, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -737768,14 +734000,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9657), 6, - anon_sym_SEMI, - anon_sym_EQ, - anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_in, - STATE(6431), 9, + ACTIONS(5234), 1, + anon_sym_LBRACE, + ACTIONS(9507), 1, + anon_sym_LPAREN, + ACTIONS(9509), 1, + anon_sym_when, + STATE(1947), 1, + sym_block, + STATE(6435), 1, + aux_sym_catch_clause_repeat1, + STATE(7001), 2, + sym_catch_declaration, + sym_catch_filter_clause, + STATE(6364), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -737785,36 +734023,41 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [270265] = 13, - ACTIONS(3445), 1, - aux_sym_preproc_if_token2, - ACTIONS(9097), 1, + [266901] = 17, + ACTIONS(3), 1, aux_sym_preproc_region_token1, - ACTIONS(9099), 1, + ACTIONS(5), 1, aux_sym_preproc_endregion_token1, - ACTIONS(9101), 1, + ACTIONS(7), 1, aux_sym_preproc_line_token1, - ACTIONS(9103), 1, + ACTIONS(9), 1, aux_sym_preproc_pragma_token1, - ACTIONS(9105), 1, + ACTIONS(11), 1, aux_sym_preproc_nullable_token1, - ACTIONS(9107), 1, + ACTIONS(13), 1, aux_sym_preproc_error_token1, - ACTIONS(9109), 1, + ACTIONS(15), 1, aux_sym_preproc_warning_token1, - ACTIONS(9111), 1, + ACTIONS(17), 1, aux_sym_preproc_define_token1, - ACTIONS(9113), 1, + ACTIONS(19), 1, aux_sym_preproc_undef_token1, - ACTIONS(9115), 1, + ACTIONS(21), 1, sym_comment, - ACTIONS(3447), 5, - anon_sym_COMMA, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - STATE(6432), 9, + ACTIONS(9320), 1, + anon_sym_where, + ACTIONS(9408), 1, + anon_sym_COLON, + STATE(6547), 1, + sym_base_list, + STATE(6548), 1, + aux_sym__class_declaration_initializer_repeat4, + STATE(6694), 1, + sym_type_parameter_constraints_clause, + ACTIONS(9541), 2, + anon_sym_SEMI, + anon_sym_LBRACE, + STATE(6365), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -737824,7 +734067,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [270317] = 17, + [266962] = 17, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -737845,19 +734088,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9314), 1, - anon_sym_EQ_GT, - ACTIONS(9400), 1, - anon_sym_SEMI, - ACTIONS(9402), 1, + ACTIONS(5255), 1, anon_sym_LBRACE, - STATE(2600), 1, + ACTIONS(9507), 1, + anon_sym_LPAREN, + ACTIONS(9509), 1, + anon_sym_when, + STATE(1923), 1, sym_block, - STATE(2689), 1, - sym__function_body, - STATE(7670), 1, - sym_arrow_expression_clause, - STATE(6433), 9, + STATE(6344), 1, + aux_sym_catch_clause_repeat1, + STATE(7001), 2, + sym_catch_declaration, + sym_catch_filter_clause, + STATE(6366), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -737867,7 +734111,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [270377] = 12, + [267023] = 17, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -737888,14 +734132,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9659), 6, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_LT, - anon_sym_where, - STATE(6434), 9, + ACTIONS(9473), 1, + sym_interpolation_open_brace, + ACTIONS(9543), 1, + sym_interpolation_end_quote, + STATE(6331), 1, + aux_sym_interpolated_string_expression_repeat1, + STATE(6625), 1, + sym__interpolated_string_content, + STATE(6720), 1, + sym_interpolation, + ACTIONS(9469), 2, + sym_interpolation_string_content, + sym_escape_sequence, + STATE(6367), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -737905,7 +734155,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [270427] = 12, + [267084] = 17, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -737926,14 +734176,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9661), 6, - anon_sym_SEMI, - anon_sym_EQ, - anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_in, - STATE(6435), 9, + ACTIONS(9473), 1, + sym_interpolation_open_brace, + ACTIONS(9539), 1, + sym_interpolation_end_quote, + ACTIONS(9545), 1, + sym_interpolation_string_content, + STATE(6370), 1, + aux_sym_interpolated_string_expression_repeat2, + STATE(6746), 1, + sym_interpolation, + STATE(6925), 1, + sym__interpolated_verbatim_string_content, + STATE(6368), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -737943,35 +734198,40 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [270477] = 13, - ACTIONS(3), 1, + [267144] = 17, + ACTIONS(9077), 1, aux_sym_preproc_region_token1, - ACTIONS(5), 1, + ACTIONS(9079), 1, aux_sym_preproc_endregion_token1, - ACTIONS(7), 1, + ACTIONS(9081), 1, aux_sym_preproc_line_token1, - ACTIONS(9), 1, + ACTIONS(9083), 1, aux_sym_preproc_pragma_token1, - ACTIONS(11), 1, + ACTIONS(9085), 1, aux_sym_preproc_nullable_token1, - ACTIONS(13), 1, + ACTIONS(9087), 1, aux_sym_preproc_error_token1, - ACTIONS(15), 1, + ACTIONS(9089), 1, aux_sym_preproc_warning_token1, - ACTIONS(17), 1, + ACTIONS(9091), 1, aux_sym_preproc_define_token1, - ACTIONS(19), 1, + ACTIONS(9093), 1, aux_sym_preproc_undef_token1, - ACTIONS(21), 1, + ACTIONS(9095), 1, sym_comment, - ACTIONS(9665), 1, - anon_sym_COMMA, - ACTIONS(9663), 4, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_where, - anon_sym_EQ_GT, - STATE(6436), 10, + ACTIONS(9547), 1, + anon_sym_DQUOTE, + ACTIONS(9549), 1, + aux_sym_string_literal_content_token1, + ACTIONS(9551), 1, + aux_sym_string_literal_content_token2, + ACTIONS(9553), 1, + sym_escape_sequence, + STATE(6375), 1, + aux_sym_string_literal_repeat1, + STATE(6667), 1, + sym_string_literal_content, + STATE(6369), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -737981,8 +734241,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, - [270529] = 15, + [267204] = 17, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -738003,17 +734262,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(3667), 1, - anon_sym_EQ_GT, - ACTIONS(9630), 1, - anon_sym_EQ, - ACTIONS(9668), 1, - anon_sym_RPAREN, - ACTIONS(3829), 3, - anon_sym_COMMA, - anon_sym_and, - anon_sym_or, - STATE(6437), 9, + ACTIONS(9473), 1, + sym_interpolation_open_brace, + ACTIONS(9511), 1, + sym_interpolation_end_quote, + ACTIONS(9545), 1, + sym_interpolation_string_content, + STATE(6383), 1, + aux_sym_interpolated_string_expression_repeat2, + STATE(6746), 1, + sym_interpolation, + STATE(6925), 1, + sym__interpolated_verbatim_string_content, + STATE(6370), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -738023,7 +734284,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [270585] = 13, + [267264] = 17, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -738044,15 +734305,19 @@ 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(6438), 9, + ACTIONS(9473), 1, + sym_interpolation_open_brace, + ACTIONS(9555), 1, + sym_interpolation_end_quote, + ACTIONS(9557), 1, + sym_interpolation_string_content, + STATE(6405), 1, + aux_sym_interpolated_string_expression_repeat3, + STATE(6857), 1, + sym_interpolation, + STATE(6951), 1, + sym__interpolated_raw_string_content, + STATE(6371), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -738062,7 +734327,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [270637] = 17, + [267324] = 17, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -738083,19 +734348,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9314), 1, - anon_sym_EQ_GT, - ACTIONS(9400), 1, - anon_sym_SEMI, - ACTIONS(9402), 1, - anon_sym_LBRACE, - STATE(2600), 1, - sym_block, - STATE(2809), 1, - sym__function_body, - STATE(7670), 1, - sym_arrow_expression_clause, - STATE(6439), 9, + ACTIONS(9473), 1, + sym_interpolation_open_brace, + ACTIONS(9533), 1, + sym_interpolation_end_quote, + ACTIONS(9545), 1, + sym_interpolation_string_content, + STATE(6423), 1, + aux_sym_interpolated_string_expression_repeat2, + STATE(6746), 1, + sym_interpolation, + STATE(6925), 1, + sym__interpolated_verbatim_string_content, + STATE(6372), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -738105,40 +734370,40 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [270697] = 17, - ACTIONS(9097), 1, + [267384] = 17, + ACTIONS(9077), 1, aux_sym_preproc_region_token1, - ACTIONS(9099), 1, + ACTIONS(9079), 1, aux_sym_preproc_endregion_token1, - ACTIONS(9101), 1, + ACTIONS(9081), 1, aux_sym_preproc_line_token1, - ACTIONS(9103), 1, + ACTIONS(9083), 1, aux_sym_preproc_pragma_token1, - ACTIONS(9105), 1, + ACTIONS(9085), 1, aux_sym_preproc_nullable_token1, - ACTIONS(9107), 1, + ACTIONS(9087), 1, aux_sym_preproc_error_token1, - ACTIONS(9109), 1, + ACTIONS(9089), 1, aux_sym_preproc_warning_token1, - ACTIONS(9111), 1, + ACTIONS(9091), 1, aux_sym_preproc_define_token1, - ACTIONS(9113), 1, + ACTIONS(9093), 1, aux_sym_preproc_undef_token1, - ACTIONS(9115), 1, + ACTIONS(9095), 1, sym_comment, - ACTIONS(9568), 1, + ACTIONS(9549), 1, aux_sym_string_literal_content_token1, - ACTIONS(9570), 1, + ACTIONS(9551), 1, aux_sym_string_literal_content_token2, - ACTIONS(9572), 1, + ACTIONS(9553), 1, sym_escape_sequence, - ACTIONS(9674), 1, + ACTIONS(9559), 1, anon_sym_DQUOTE, - STATE(6460), 1, + STATE(6438), 1, aux_sym_string_literal_repeat1, - STATE(6726), 1, + STATE(6667), 1, sym_string_literal_content, - STATE(6440), 9, + STATE(6373), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -738148,7 +734413,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [270757] = 14, + [267444] = 17, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -738169,16 +734434,62 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9649), 1, - anon_sym_COMMA, - STATE(6427), 1, - aux_sym_type_parameter_constraints_clause_repeat1, - ACTIONS(9676), 4, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_where, - anon_sym_EQ_GT, - STATE(6441), 9, + ACTIONS(9473), 1, + sym_interpolation_open_brace, + ACTIONS(9513), 1, + sym_interpolation_end_quote, + ACTIONS(9545), 1, + sym_interpolation_string_content, + STATE(6383), 1, + aux_sym_interpolated_string_expression_repeat2, + STATE(6746), 1, + sym_interpolation, + STATE(6925), 1, + sym__interpolated_verbatim_string_content, + STATE(6374), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + [267504] = 17, + ACTIONS(9077), 1, + aux_sym_preproc_region_token1, + ACTIONS(9079), 1, + aux_sym_preproc_endregion_token1, + ACTIONS(9081), 1, + aux_sym_preproc_line_token1, + ACTIONS(9083), 1, + aux_sym_preproc_pragma_token1, + ACTIONS(9085), 1, + aux_sym_preproc_nullable_token1, + ACTIONS(9087), 1, + aux_sym_preproc_error_token1, + ACTIONS(9089), 1, + aux_sym_preproc_warning_token1, + ACTIONS(9091), 1, + aux_sym_preproc_define_token1, + ACTIONS(9093), 1, + aux_sym_preproc_undef_token1, + ACTIONS(9095), 1, + sym_comment, + ACTIONS(9549), 1, + aux_sym_string_literal_content_token1, + ACTIONS(9551), 1, + aux_sym_string_literal_content_token2, + ACTIONS(9553), 1, + sym_escape_sequence, + ACTIONS(9561), 1, + anon_sym_DQUOTE, + STATE(6407), 1, + aux_sym_string_literal_repeat1, + STATE(6667), 1, + sym_string_literal_content, + STATE(6375), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -738188,7 +734499,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [270811] = 17, + [267564] = 17, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -738209,19 +734520,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9314), 1, - anon_sym_EQ_GT, - ACTIONS(9588), 1, - anon_sym_SEMI, - ACTIONS(9590), 1, - anon_sym_LBRACE, - STATE(3436), 1, - sym_block, - STATE(3511), 1, - sym__function_body, - STATE(7418), 1, - sym_arrow_expression_clause, - STATE(6442), 9, + ACTIONS(9473), 1, + sym_interpolation_open_brace, + ACTIONS(9515), 1, + sym_interpolation_end_quote, + ACTIONS(9545), 1, + sym_interpolation_string_content, + STATE(6383), 1, + aux_sym_interpolated_string_expression_repeat2, + STATE(6746), 1, + sym_interpolation, + STATE(6925), 1, + sym__interpolated_verbatim_string_content, + STATE(6376), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -738231,7 +734542,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [270871] = 17, + [267624] = 17, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -738254,17 +734565,17 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, ACTIONS(9473), 1, sym_interpolation_open_brace, - ACTIONS(9523), 1, - sym_interpolation_end_quote, - ACTIONS(9576), 1, + ACTIONS(9557), 1, sym_interpolation_string_content, - STATE(6399), 1, - aux_sym_interpolated_string_expression_repeat2, - STATE(6928), 1, + ACTIONS(9563), 1, + sym_interpolation_end_quote, + STATE(6405), 1, + aux_sym_interpolated_string_expression_repeat3, + STATE(6857), 1, sym_interpolation, - STATE(7034), 1, - sym__interpolated_verbatim_string_content, - STATE(6443), 9, + STATE(6951), 1, + sym__interpolated_raw_string_content, + STATE(6377), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -738274,7 +734585,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [270931] = 12, + [267684] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -738295,14 +734606,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9678), 6, + ACTIONS(9565), 6, anon_sym_SEMI, anon_sym_COLON, anon_sym_LPAREN, anon_sym_LBRACE, anon_sym_LT, anon_sym_where, - STATE(6444), 9, + STATE(6378), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -738312,7 +734623,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [270981] = 17, + [267734] = 17, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -738335,17 +734646,17 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, ACTIONS(9473), 1, sym_interpolation_open_brace, - ACTIONS(9511), 1, - sym_interpolation_end_quote, - ACTIONS(9576), 1, + ACTIONS(9557), 1, sym_interpolation_string_content, - STATE(6461), 1, - aux_sym_interpolated_string_expression_repeat2, - STATE(6928), 1, + ACTIONS(9567), 1, + sym_interpolation_end_quote, + STATE(6405), 1, + aux_sym_interpolated_string_expression_repeat3, + STATE(6857), 1, sym_interpolation, - STATE(7034), 1, - sym__interpolated_verbatim_string_content, - STATE(6445), 9, + STATE(6951), 1, + sym__interpolated_raw_string_content, + STATE(6379), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -738355,7 +734666,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [271041] = 17, + [267794] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -738376,19 +734687,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9473), 1, - sym_interpolation_open_brace, - ACTIONS(9541), 1, - sym_interpolation_end_quote, - ACTIONS(9576), 1, - sym_interpolation_string_content, - STATE(6449), 1, - aux_sym_interpolated_string_expression_repeat2, - STATE(6928), 1, - sym_interpolation, - STATE(7034), 1, - sym__interpolated_verbatim_string_content, - STATE(6446), 9, + ACTIONS(3651), 1, + anon_sym_EQ_GT, + ACTIONS(9569), 1, + anon_sym_EQ, + ACTIONS(9571), 1, + anon_sym_RPAREN, + ACTIONS(3809), 3, + anon_sym_COMMA, + anon_sym_and, + anon_sym_or, + STATE(6380), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -738398,40 +734707,40 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [271101] = 17, - ACTIONS(9097), 1, + [267850] = 17, + ACTIONS(3), 1, aux_sym_preproc_region_token1, - ACTIONS(9099), 1, + ACTIONS(5), 1, aux_sym_preproc_endregion_token1, - ACTIONS(9101), 1, + ACTIONS(7), 1, aux_sym_preproc_line_token1, - ACTIONS(9103), 1, + ACTIONS(9), 1, aux_sym_preproc_pragma_token1, - ACTIONS(9105), 1, + ACTIONS(11), 1, aux_sym_preproc_nullable_token1, - ACTIONS(9107), 1, + ACTIONS(13), 1, aux_sym_preproc_error_token1, - ACTIONS(9109), 1, + ACTIONS(15), 1, aux_sym_preproc_warning_token1, - ACTIONS(9111), 1, + ACTIONS(17), 1, aux_sym_preproc_define_token1, - ACTIONS(9113), 1, + ACTIONS(19), 1, aux_sym_preproc_undef_token1, - ACTIONS(9115), 1, + ACTIONS(21), 1, sym_comment, - ACTIONS(9568), 1, - aux_sym_string_literal_content_token1, - ACTIONS(9570), 1, - aux_sym_string_literal_content_token2, - ACTIONS(9572), 1, - sym_escape_sequence, - ACTIONS(9680), 1, - anon_sym_DQUOTE, - STATE(6391), 1, - aux_sym_string_literal_repeat1, - STATE(6726), 1, - sym_string_literal_content, - STATE(6447), 9, + ACTIONS(3963), 1, + anon_sym_GT, + ACTIONS(6601), 1, + anon_sym_LBRACK, + ACTIONS(6603), 1, + anon_sym_STAR, + ACTIONS(6889), 1, + anon_sym_DOT, + ACTIONS(9573), 1, + anon_sym_COMMA, + ACTIONS(9575), 1, + anon_sym_QMARK, + STATE(6381), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -738441,7 +734750,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [271161] = 14, + [267910] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -738462,15 +734771,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9684), 1, - anon_sym_where, - STATE(6641), 1, - sym_type_parameter_constraints_clause, - ACTIONS(9682), 3, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_EQ_GT, - STATE(6448), 10, + ACTIONS(9577), 1, + anon_sym_catch, + STATE(6674), 1, + sym_catch_clause, + ACTIONS(3113), 3, + anon_sym_while, + anon_sym_finally, + anon_sym_else, + STATE(6382), 10, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -738480,8 +734789,8 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - aux_sym__class_declaration_initializer_repeat4, - [271215] = 17, + aux_sym_try_statement_repeat1, + [267964] = 16, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -738502,19 +734811,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9473), 1, - sym_interpolation_open_brace, - ACTIONS(9487), 1, + ACTIONS(9580), 1, sym_interpolation_end_quote, - ACTIONS(9576), 1, + ACTIONS(9582), 1, + sym_interpolation_open_brace, + ACTIONS(9585), 1, sym_interpolation_string_content, - STATE(6399), 1, - aux_sym_interpolated_string_expression_repeat2, - STATE(6928), 1, + STATE(6746), 1, sym_interpolation, - STATE(7034), 1, + STATE(6925), 1, sym__interpolated_verbatim_string_content, - STATE(6449), 9, + STATE(6383), 10, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -738524,7 +734831,8 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [271275] = 16, + aux_sym_interpolated_string_expression_repeat2, + [268022] = 17, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -738545,18 +734853,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(6678), 1, - anon_sym_LBRACK, - ACTIONS(6680), 1, - anon_sym_STAR, - ACTIONS(6911), 1, - anon_sym_DOT, - ACTIONS(9655), 1, - anon_sym_QMARK, - ACTIONS(4018), 2, - anon_sym_COMMA, - anon_sym_GT, - STATE(6450), 9, + ACTIONS(9473), 1, + sym_interpolation_open_brace, + ACTIONS(9557), 1, + sym_interpolation_string_content, + ACTIONS(9588), 1, + sym_interpolation_end_quote, + STATE(6397), 1, + aux_sym_interpolated_string_expression_repeat3, + STATE(6857), 1, + sym_interpolation, + STATE(6951), 1, + sym__interpolated_raw_string_content, + STATE(6384), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -738566,40 +734875,39 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [271333] = 17, - ACTIONS(9097), 1, + [268082] = 16, + ACTIONS(3), 1, aux_sym_preproc_region_token1, - ACTIONS(9099), 1, + ACTIONS(5), 1, aux_sym_preproc_endregion_token1, - ACTIONS(9101), 1, + ACTIONS(7), 1, aux_sym_preproc_line_token1, - ACTIONS(9103), 1, + ACTIONS(9), 1, aux_sym_preproc_pragma_token1, - ACTIONS(9105), 1, + ACTIONS(11), 1, aux_sym_preproc_nullable_token1, - ACTIONS(9107), 1, + ACTIONS(13), 1, aux_sym_preproc_error_token1, - ACTIONS(9109), 1, + ACTIONS(15), 1, aux_sym_preproc_warning_token1, - ACTIONS(9111), 1, + ACTIONS(17), 1, aux_sym_preproc_define_token1, - ACTIONS(9113), 1, + ACTIONS(19), 1, aux_sym_preproc_undef_token1, - ACTIONS(9115), 1, + ACTIONS(21), 1, sym_comment, - ACTIONS(9568), 1, - aux_sym_string_literal_content_token1, - ACTIONS(9570), 1, - aux_sym_string_literal_content_token2, - ACTIONS(9572), 1, - sym_escape_sequence, - ACTIONS(9687), 1, - anon_sym_DQUOTE, - STATE(6384), 1, - aux_sym_string_literal_repeat1, - STATE(6726), 1, - sym_string_literal_content, - STATE(6451), 9, + ACTIONS(6891), 1, + anon_sym_LT, + ACTIONS(6893), 1, + anon_sym_COLON_COLON, + ACTIONS(9590), 1, + anon_sym_EQ, + STATE(2171), 1, + sym_type_argument_list, + ACTIONS(3640), 2, + anon_sym_SEMI, + anon_sym_DOT, + STATE(6385), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -738609,36 +734917,40 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [271393] = 13, - ACTIONS(3652), 1, - aux_sym_preproc_if_token2, - ACTIONS(9097), 1, + [268140] = 17, + ACTIONS(3), 1, aux_sym_preproc_region_token1, - ACTIONS(9099), 1, + ACTIONS(5), 1, aux_sym_preproc_endregion_token1, - ACTIONS(9101), 1, + ACTIONS(7), 1, aux_sym_preproc_line_token1, - ACTIONS(9103), 1, + ACTIONS(9), 1, aux_sym_preproc_pragma_token1, - ACTIONS(9105), 1, + ACTIONS(11), 1, aux_sym_preproc_nullable_token1, - ACTIONS(9107), 1, + ACTIONS(13), 1, aux_sym_preproc_error_token1, - ACTIONS(9109), 1, + ACTIONS(15), 1, aux_sym_preproc_warning_token1, - ACTIONS(9111), 1, + ACTIONS(17), 1, aux_sym_preproc_define_token1, - ACTIONS(9113), 1, + ACTIONS(19), 1, aux_sym_preproc_undef_token1, - ACTIONS(9115), 1, + ACTIONS(21), 1, sym_comment, - ACTIONS(3650), 5, - anon_sym_COMMA, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - STATE(6452), 9, + ACTIONS(9290), 1, + anon_sym_EQ_GT, + ACTIONS(9398), 1, + anon_sym_SEMI, + ACTIONS(9400), 1, + anon_sym_LBRACE, + STATE(2572), 1, + sym_block, + STATE(2655), 1, + sym__function_body, + STATE(7278), 1, + sym_arrow_expression_clause, + STATE(6386), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -738648,7 +734960,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [271445] = 16, + [268200] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -738669,18 +734981,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(6829), 1, - anon_sym_LT, - ACTIONS(6867), 1, - anon_sym_COLON_COLON, - ACTIONS(9689), 1, - anon_sym_EQ, - STATE(2183), 1, - sym_type_argument_list, - ACTIONS(3662), 2, + ACTIONS(9592), 6, anon_sym_SEMI, - anon_sym_DOT, - STATE(6453), 9, + anon_sym_COLON, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LT, + anon_sym_where, + STATE(6387), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -738690,7 +734998,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [271503] = 12, + [268250] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -738711,14 +735019,16 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9691), 6, - anon_sym_SEMI, - anon_sym_COLON, + ACTIONS(5257), 1, anon_sym_LPAREN, + STATE(6361), 1, + sym_argument_list, + ACTIONS(9457), 4, + anon_sym_SEMI, + anon_sym_COMMA, anon_sym_LBRACE, - anon_sym_LT, anon_sym_where, - STATE(6454), 9, + STATE(6388), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -738728,7 +735038,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [271553] = 17, + [268304] = 16, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -738749,19 +735059,18 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9473), 1, - sym_interpolation_open_brace, - ACTIONS(9551), 1, - sym_interpolation_string_content, - ACTIONS(9693), 1, - sym_interpolation_end_quote, - STATE(6464), 1, - aux_sym_interpolated_string_expression_repeat3, - STATE(6761), 1, - sym_interpolation, - STATE(6778), 1, - sym__interpolated_raw_string_content, - STATE(6455), 9, + ACTIONS(3651), 1, + anon_sym_EQ_GT, + ACTIONS(5549), 1, + anon_sym_LBRACK, + ACTIONS(9284), 1, + anon_sym_EQ, + STATE(6806), 1, + sym_bracketed_argument_list, + ACTIONS(9282), 2, + anon_sym_SEMI, + anon_sym_COMMA, + STATE(6389), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -738771,7 +735080,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [271613] = 17, + [268362] = 17, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -738792,19 +735101,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9314), 1, + ACTIONS(9290), 1, anon_sym_EQ_GT, - ACTIONS(9400), 1, + ACTIONS(9398), 1, anon_sym_SEMI, - ACTIONS(9402), 1, + ACTIONS(9400), 1, anon_sym_LBRACE, - STATE(2600), 1, + STATE(2572), 1, sym_block, - STATE(2805), 1, + STATE(2765), 1, sym__function_body, - STATE(7670), 1, + STATE(7278), 1, sym_arrow_expression_clause, - STATE(6456), 9, + STATE(6390), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -738814,40 +735123,38 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [271673] = 17, - ACTIONS(9097), 1, + [268422] = 15, + ACTIONS(3), 1, aux_sym_preproc_region_token1, - ACTIONS(9099), 1, + ACTIONS(5), 1, aux_sym_preproc_endregion_token1, - ACTIONS(9101), 1, + ACTIONS(7), 1, aux_sym_preproc_line_token1, - ACTIONS(9103), 1, + ACTIONS(9), 1, aux_sym_preproc_pragma_token1, - ACTIONS(9105), 1, + ACTIONS(11), 1, aux_sym_preproc_nullable_token1, - ACTIONS(9107), 1, + ACTIONS(13), 1, aux_sym_preproc_error_token1, - ACTIONS(9109), 1, + ACTIONS(15), 1, aux_sym_preproc_warning_token1, - ACTIONS(9111), 1, + ACTIONS(17), 1, aux_sym_preproc_define_token1, - ACTIONS(9113), 1, + ACTIONS(19), 1, aux_sym_preproc_undef_token1, - ACTIONS(9115), 1, + ACTIONS(21), 1, sym_comment, - ACTIONS(9568), 1, - aux_sym_string_literal_content_token1, - ACTIONS(9570), 1, - aux_sym_string_literal_content_token2, - ACTIONS(9572), 1, - sym_escape_sequence, - ACTIONS(9695), 1, - anon_sym_DQUOTE, - STATE(6390), 1, - aux_sym_string_literal_repeat1, - STATE(6726), 1, - sym_string_literal_content, - STATE(6457), 9, + ACTIONS(7912), 1, + anon_sym_DOT, + ACTIONS(9455), 1, + anon_sym_COMMA, + STATE(6613), 1, + aux_sym_record_base_repeat1, + ACTIONS(9594), 3, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_where, + STATE(6391), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -738857,7 +735164,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [271733] = 17, + [268478] = 17, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -738878,19 +735185,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9314), 1, + ACTIONS(9290), 1, anon_sym_EQ_GT, - ACTIONS(9400), 1, + ACTIONS(9398), 1, anon_sym_SEMI, - ACTIONS(9402), 1, + ACTIONS(9400), 1, anon_sym_LBRACE, - STATE(2600), 1, + STATE(2572), 1, sym_block, - STATE(2824), 1, + STATE(2772), 1, sym__function_body, - STATE(7670), 1, + STATE(7278), 1, sym_arrow_expression_clause, - STATE(6458), 9, + STATE(6392), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -738900,7 +735207,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [271793] = 17, + [268538] = 17, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -738921,62 +735228,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9473), 1, - sym_interpolation_open_brace, - ACTIONS(9551), 1, - sym_interpolation_string_content, - ACTIONS(9697), 1, - sym_interpolation_end_quote, - STATE(6380), 1, - aux_sym_interpolated_string_expression_repeat3, - STATE(6761), 1, - sym_interpolation, - STATE(6778), 1, - sym__interpolated_raw_string_content, - STATE(6459), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - [271853] = 17, - ACTIONS(9097), 1, - aux_sym_preproc_region_token1, - ACTIONS(9099), 1, - aux_sym_preproc_endregion_token1, - ACTIONS(9101), 1, - aux_sym_preproc_line_token1, - ACTIONS(9103), 1, - aux_sym_preproc_pragma_token1, - ACTIONS(9105), 1, - aux_sym_preproc_nullable_token1, - ACTIONS(9107), 1, - aux_sym_preproc_error_token1, - ACTIONS(9109), 1, - aux_sym_preproc_warning_token1, - ACTIONS(9111), 1, - aux_sym_preproc_define_token1, - ACTIONS(9113), 1, - aux_sym_preproc_undef_token1, - ACTIONS(9115), 1, - sym_comment, - ACTIONS(9568), 1, - aux_sym_string_literal_content_token1, - ACTIONS(9570), 1, - aux_sym_string_literal_content_token2, - ACTIONS(9572), 1, - sym_escape_sequence, - ACTIONS(9699), 1, - anon_sym_DQUOTE, - STATE(6381), 1, - aux_sym_string_literal_repeat1, - STATE(6726), 1, - sym_string_literal_content, - STATE(6460), 9, + ACTIONS(9290), 1, + anon_sym_EQ_GT, + ACTIONS(9398), 1, + anon_sym_SEMI, + ACTIONS(9400), 1, + anon_sym_LBRACE, + STATE(2572), 1, + sym_block, + STATE(2679), 1, + sym__function_body, + STATE(7278), 1, + sym_arrow_expression_clause, + STATE(6393), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -738986,7 +735250,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [271913] = 17, + [268598] = 17, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -739011,15 +735275,15 @@ static const uint16_t ts_small_parse_table[] = { sym_interpolation_open_brace, ACTIONS(9543), 1, sym_interpolation_end_quote, - ACTIONS(9576), 1, + ACTIONS(9545), 1, sym_interpolation_string_content, - STATE(6399), 1, + STATE(6383), 1, aux_sym_interpolated_string_expression_repeat2, - STATE(6928), 1, + STATE(6746), 1, sym_interpolation, - STATE(7034), 1, + STATE(6925), 1, sym__interpolated_verbatim_string_content, - STATE(6461), 9, + STATE(6394), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -739029,7 +735293,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [271973] = 17, + [268658] = 17, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -739050,19 +735314,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9473), 1, - sym_interpolation_open_brace, - ACTIONS(9551), 1, - sym_interpolation_string_content, - ACTIONS(9701), 1, - sym_interpolation_end_quote, - STATE(6401), 1, - aux_sym_interpolated_string_expression_repeat3, - STATE(6761), 1, - sym_interpolation, - STATE(6778), 1, - sym__interpolated_raw_string_content, - STATE(6462), 9, + ACTIONS(9290), 1, + anon_sym_EQ_GT, + ACTIONS(9398), 1, + anon_sym_SEMI, + ACTIONS(9400), 1, + anon_sym_LBRACE, + STATE(2572), 1, + sym_block, + STATE(2832), 1, + sym__function_body, + STATE(7278), 1, + sym_arrow_expression_clause, + STATE(6395), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -739072,7 +735336,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [272033] = 16, + [268718] = 17, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -739093,18 +735357,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(6829), 1, - anon_sym_LT, - ACTIONS(6867), 1, - anon_sym_COLON_COLON, - ACTIONS(9703), 1, - anon_sym_EQ, - STATE(2183), 1, - sym_type_argument_list, - ACTIONS(3662), 2, + ACTIONS(9290), 1, + anon_sym_EQ_GT, + ACTIONS(9398), 1, anon_sym_SEMI, - anon_sym_DOT, - STATE(6463), 9, + ACTIONS(9400), 1, + anon_sym_LBRACE, + STATE(2572), 1, + sym_block, + STATE(2776), 1, + sym__function_body, + STATE(7278), 1, + sym_arrow_expression_clause, + STATE(6396), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -739114,7 +735379,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [272091] = 17, + [268778] = 17, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -739137,17 +735402,17 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, ACTIONS(9473), 1, sym_interpolation_open_brace, - ACTIONS(9551), 1, + ACTIONS(9557), 1, sym_interpolation_string_content, - ACTIONS(9705), 1, + ACTIONS(9596), 1, sym_interpolation_end_quote, - STATE(6401), 1, + STATE(6405), 1, aux_sym_interpolated_string_expression_repeat3, - STATE(6761), 1, + STATE(6857), 1, sym_interpolation, - STATE(6778), 1, + STATE(6951), 1, sym__interpolated_raw_string_content, - STATE(6464), 9, + STATE(6397), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -739157,38 +735422,40 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [272151] = 16, - ACTIONS(3), 1, + [268838] = 17, + ACTIONS(9077), 1, aux_sym_preproc_region_token1, - ACTIONS(5), 1, + ACTIONS(9079), 1, aux_sym_preproc_endregion_token1, - ACTIONS(7), 1, + ACTIONS(9081), 1, aux_sym_preproc_line_token1, - ACTIONS(9), 1, + ACTIONS(9083), 1, aux_sym_preproc_pragma_token1, - ACTIONS(11), 1, + ACTIONS(9085), 1, aux_sym_preproc_nullable_token1, - ACTIONS(13), 1, + ACTIONS(9087), 1, aux_sym_preproc_error_token1, - ACTIONS(15), 1, + ACTIONS(9089), 1, aux_sym_preproc_warning_token1, - ACTIONS(17), 1, + ACTIONS(9091), 1, aux_sym_preproc_define_token1, - ACTIONS(19), 1, + ACTIONS(9093), 1, aux_sym_preproc_undef_token1, - ACTIONS(21), 1, + ACTIONS(9095), 1, sym_comment, - ACTIONS(9707), 1, - anon_sym_COMMA, - ACTIONS(9709), 1, - anon_sym_RBRACK, - ACTIONS(9711), 1, - anon_sym_and, - ACTIONS(9713), 1, - anon_sym_or, - STATE(6896), 1, - aux_sym_list_pattern_repeat1, - STATE(6465), 9, + ACTIONS(9549), 1, + aux_sym_string_literal_content_token1, + ACTIONS(9551), 1, + aux_sym_string_literal_content_token2, + ACTIONS(9553), 1, + sym_escape_sequence, + ACTIONS(9598), 1, + anon_sym_DQUOTE, + STATE(6407), 1, + aux_sym_string_literal_repeat1, + STATE(6667), 1, + sym_string_literal_content, + STATE(6398), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -739198,7 +735465,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [272208] = 16, + [268898] = 17, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -739219,17 +735486,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(5619), 1, - anon_sym_STAR, - ACTIONS(8916), 1, - anon_sym_LPAREN, - ACTIONS(9715), 1, - anon_sym_LBRACE, - STATE(3307), 1, - sym_block, - STATE(7092), 1, - sym_parameter_list, - STATE(6466), 9, + ACTIONS(9473), 1, + sym_interpolation_open_brace, + ACTIONS(9557), 1, + sym_interpolation_string_content, + ACTIONS(9600), 1, + sym_interpolation_end_quote, + STATE(6425), 1, + aux_sym_interpolated_string_expression_repeat3, + STATE(6857), 1, + sym_interpolation, + STATE(6951), 1, + sym__interpolated_raw_string_content, + STATE(6399), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -739239,7 +735508,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [272265] = 16, + [268958] = 16, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -739260,54 +735529,18 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(6678), 1, + ACTIONS(6601), 1, anon_sym_LBRACK, - ACTIONS(6680), 1, + ACTIONS(6603), 1, anon_sym_STAR, - ACTIONS(6716), 1, - anon_sym_QMARK, - ACTIONS(6911), 1, + ACTIONS(6889), 1, anon_sym_DOT, - ACTIONS(9653), 1, - anon_sym_COMMA, - STATE(6467), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - [272322] = 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(9717), 5, - anon_sym_SEMI, + ACTIONS(9575), 1, + anon_sym_QMARK, + ACTIONS(3963), 2, anon_sym_COMMA, - anon_sym_LBRACE, - anon_sym_where, - anon_sym_EQ_GT, - STATE(6468), 9, + anon_sym_GT, + STATE(6400), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -739317,37 +735550,40 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [272371] = 15, - ACTIONS(9097), 1, + [269016] = 17, + ACTIONS(9077), 1, aux_sym_preproc_region_token1, - ACTIONS(9099), 1, + ACTIONS(9079), 1, aux_sym_preproc_endregion_token1, - ACTIONS(9101), 1, + ACTIONS(9081), 1, aux_sym_preproc_line_token1, - ACTIONS(9103), 1, + ACTIONS(9083), 1, aux_sym_preproc_pragma_token1, - ACTIONS(9105), 1, + ACTIONS(9085), 1, aux_sym_preproc_nullable_token1, - ACTIONS(9107), 1, + ACTIONS(9087), 1, aux_sym_preproc_error_token1, - ACTIONS(9109), 1, + ACTIONS(9089), 1, aux_sym_preproc_warning_token1, - ACTIONS(9111), 1, + ACTIONS(9091), 1, aux_sym_preproc_define_token1, - ACTIONS(9113), 1, + ACTIONS(9093), 1, aux_sym_preproc_undef_token1, - ACTIONS(9115), 1, + ACTIONS(9095), 1, sym_comment, - ACTIONS(9721), 1, - anon_sym_AMP_AMP, - ACTIONS(9723), 1, - anon_sym_PIPE_PIPE, - ACTIONS(9725), 1, - aux_sym_preproc_if_token2, - ACTIONS(9719), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - STATE(6469), 9, + ACTIONS(9549), 1, + aux_sym_string_literal_content_token1, + ACTIONS(9551), 1, + aux_sym_string_literal_content_token2, + ACTIONS(9553), 1, + sym_escape_sequence, + ACTIONS(9602), 1, + anon_sym_DQUOTE, + STATE(6407), 1, + aux_sym_string_literal_repeat1, + STATE(6667), 1, + sym_string_literal_content, + STATE(6401), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -739357,7 +735593,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [272426] = 16, + [269076] = 17, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -739378,17 +735614,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(5617), 1, + ACTIONS(9290), 1, + anon_sym_EQ_GT, + ACTIONS(9398), 1, + anon_sym_SEMI, + ACTIONS(9400), 1, anon_sym_LBRACE, - ACTIONS(5619), 1, - anon_sym_STAR, - ACTIONS(8916), 1, - anon_sym_LPAREN, - STATE(3088), 1, + STATE(2572), 1, sym_block, - STATE(7176), 1, - sym_parameter_list, - STATE(6470), 9, + STATE(2779), 1, + sym__function_body, + STATE(7278), 1, + sym_arrow_expression_clause, + STATE(6402), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -739398,7 +735636,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [272483] = 15, + [269136] = 17, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -739419,16 +735657,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9727), 1, - anon_sym_RPAREN, - ACTIONS(9731), 1, - anon_sym_AMP_AMP, - ACTIONS(9733), 1, - anon_sym_PIPE_PIPE, - ACTIONS(9729), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - STATE(6471), 9, + ACTIONS(9290), 1, + anon_sym_EQ_GT, + ACTIONS(9398), 1, + anon_sym_SEMI, + ACTIONS(9400), 1, + anon_sym_LBRACE, + STATE(2572), 1, + sym_block, + STATE(2656), 1, + sym__function_body, + STATE(7278), 1, + sym_arrow_expression_clause, + STATE(6403), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -739438,35 +735679,36 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [272538] = 13, - ACTIONS(9097), 1, + [269196] = 14, + ACTIONS(3), 1, aux_sym_preproc_region_token1, - ACTIONS(9099), 1, + ACTIONS(5), 1, aux_sym_preproc_endregion_token1, - ACTIONS(9101), 1, + ACTIONS(7), 1, aux_sym_preproc_line_token1, - ACTIONS(9103), 1, + ACTIONS(9), 1, aux_sym_preproc_pragma_token1, - ACTIONS(9105), 1, + ACTIONS(11), 1, aux_sym_preproc_nullable_token1, - ACTIONS(9107), 1, + ACTIONS(13), 1, aux_sym_preproc_error_token1, - ACTIONS(9109), 1, + ACTIONS(15), 1, aux_sym_preproc_warning_token1, - ACTIONS(9111), 1, + ACTIONS(17), 1, aux_sym_preproc_define_token1, - ACTIONS(9113), 1, + ACTIONS(19), 1, aux_sym_preproc_undef_token1, - ACTIONS(9115), 1, + ACTIONS(21), 1, sym_comment, - ACTIONS(9737), 1, - aux_sym_preproc_if_token2, - ACTIONS(9735), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - STATE(6472), 9, + ACTIONS(9606), 1, + anon_sym_where, + STATE(6694), 1, + sym_type_parameter_constraints_clause, + ACTIONS(9604), 3, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_EQ_GT, + STATE(6404), 10, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -739476,7 +735718,8 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [272589] = 15, + aux_sym__class_declaration_initializer_repeat4, + [269250] = 16, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -739497,15 +735740,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9739), 1, - anon_sym_RBRACE, - ACTIONS(9741), 1, - anon_sym_case, - ACTIONS(9744), 1, - anon_sym_default, - STATE(6882), 1, - sym_switch_section, - STATE(6473), 10, + ACTIONS(9609), 1, + sym_interpolation_end_quote, + ACTIONS(9611), 1, + sym_interpolation_open_brace, + ACTIONS(9614), 1, + sym_interpolation_string_content, + STATE(6857), 1, + sym_interpolation, + STATE(6951), 1, + sym__interpolated_raw_string_content, + STATE(6405), 10, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -739515,8 +735760,8 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - aux_sym_switch_body_repeat1, - [272644] = 16, + aux_sym_interpolated_string_expression_repeat3, + [269308] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -739537,17 +735782,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4018), 1, - anon_sym_GT, - ACTIONS(6678), 1, - anon_sym_LBRACK, - ACTIONS(6680), 1, - anon_sym_STAR, - ACTIONS(9653), 1, + ACTIONS(9619), 1, anon_sym_COMMA, - ACTIONS(9655), 1, - anon_sym_QMARK, - STATE(6474), 9, + ACTIONS(9617), 4, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_where, + anon_sym_EQ_GT, + STATE(6406), 10, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -739557,38 +735799,39 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [272701] = 16, - ACTIONS(3), 1, + aux_sym_type_parameter_constraints_clause_repeat1, + [269360] = 16, + ACTIONS(9077), 1, aux_sym_preproc_region_token1, - ACTIONS(5), 1, + ACTIONS(9079), 1, aux_sym_preproc_endregion_token1, - ACTIONS(7), 1, + ACTIONS(9081), 1, aux_sym_preproc_line_token1, - ACTIONS(9), 1, + ACTIONS(9083), 1, aux_sym_preproc_pragma_token1, - ACTIONS(11), 1, + ACTIONS(9085), 1, aux_sym_preproc_nullable_token1, - ACTIONS(13), 1, + ACTIONS(9087), 1, aux_sym_preproc_error_token1, - ACTIONS(15), 1, + ACTIONS(9089), 1, aux_sym_preproc_warning_token1, - ACTIONS(17), 1, + ACTIONS(9091), 1, aux_sym_preproc_define_token1, - ACTIONS(19), 1, + ACTIONS(9093), 1, aux_sym_preproc_undef_token1, - ACTIONS(21), 1, + ACTIONS(9095), 1, sym_comment, - ACTIONS(9711), 1, - anon_sym_and, - ACTIONS(9713), 1, - anon_sym_or, - ACTIONS(9747), 1, - anon_sym_COMMA, - ACTIONS(9749), 1, - anon_sym_RBRACK, - STATE(6839), 1, - aux_sym_list_pattern_repeat1, - STATE(6475), 9, + ACTIONS(9622), 1, + anon_sym_DQUOTE, + ACTIONS(9624), 1, + aux_sym_string_literal_content_token1, + ACTIONS(9627), 1, + aux_sym_string_literal_content_token2, + ACTIONS(9630), 1, + sym_escape_sequence, + STATE(6667), 1, + sym_string_literal_content, + STATE(6407), 10, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -739598,7 +735841,8 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [272758] = 16, + aux_sym_string_literal_repeat1, + [269418] = 17, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -739619,17 +735863,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9751), 1, - anon_sym_RBRACE, - ACTIONS(9753), 1, - anon_sym_case, - ACTIONS(9755), 1, - anon_sym_default, - STATE(6473), 1, - aux_sym_switch_body_repeat1, - STATE(6882), 1, - sym_switch_section, - STATE(6476), 9, + ACTIONS(9290), 1, + anon_sym_EQ_GT, + ACTIONS(9633), 1, + anon_sym_SEMI, + ACTIONS(9635), 1, + anon_sym_LBRACE, + STATE(3364), 1, + sym_block, + STATE(3442), 1, + sym__function_body, + STATE(7275), 1, + sym_arrow_expression_clause, + STATE(6408), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -739639,7 +735885,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [272815] = 15, + [269478] = 17, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -739660,16 +735906,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(5573), 1, - anon_sym_LBRACK, - ACTIONS(9367), 1, - anon_sym_EQ, - STATE(6830), 1, - sym_bracketed_argument_list, - ACTIONS(9306), 2, - anon_sym_SEMI, - anon_sym_COMMA, - STATE(6477), 9, + ACTIONS(9471), 1, + sym_interpolation_end_quote, + ACTIONS(9473), 1, + sym_interpolation_open_brace, + ACTIONS(9545), 1, + sym_interpolation_string_content, + STATE(6376), 1, + aux_sym_interpolated_string_expression_repeat2, + STATE(6746), 1, + sym_interpolation, + STATE(6925), 1, + sym__interpolated_verbatim_string_content, + STATE(6409), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -739679,7 +735928,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [272870] = 15, + [269538] = 17, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -739700,16 +735949,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9339), 1, - anon_sym_where, - STATE(6448), 1, - aux_sym__class_declaration_initializer_repeat4, - STATE(6641), 1, - sym_type_parameter_constraints_clause, - ACTIONS(9757), 2, + ACTIONS(9290), 1, + anon_sym_EQ_GT, + ACTIONS(9398), 1, anon_sym_SEMI, + ACTIONS(9400), 1, anon_sym_LBRACE, - STATE(6478), 9, + STATE(2572), 1, + sym_block, + STATE(2697), 1, + sym__function_body, + STATE(7278), 1, + sym_arrow_expression_clause, + STATE(6410), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -739719,37 +735971,40 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [272925] = 15, - ACTIONS(9097), 1, + [269598] = 17, + ACTIONS(9077), 1, aux_sym_preproc_region_token1, - ACTIONS(9099), 1, + ACTIONS(9079), 1, aux_sym_preproc_endregion_token1, - ACTIONS(9101), 1, + ACTIONS(9081), 1, aux_sym_preproc_line_token1, - ACTIONS(9103), 1, + ACTIONS(9083), 1, aux_sym_preproc_pragma_token1, - ACTIONS(9105), 1, + ACTIONS(9085), 1, aux_sym_preproc_nullable_token1, - ACTIONS(9107), 1, + ACTIONS(9087), 1, aux_sym_preproc_error_token1, - ACTIONS(9109), 1, + ACTIONS(9089), 1, aux_sym_preproc_warning_token1, - ACTIONS(9111), 1, + ACTIONS(9091), 1, aux_sym_preproc_define_token1, - ACTIONS(9113), 1, + ACTIONS(9093), 1, aux_sym_preproc_undef_token1, - ACTIONS(9115), 1, + ACTIONS(9095), 1, sym_comment, - ACTIONS(9721), 1, - anon_sym_AMP_AMP, - ACTIONS(9723), 1, - anon_sym_PIPE_PIPE, - ACTIONS(9759), 1, - aux_sym_preproc_if_token2, - ACTIONS(9719), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - STATE(6479), 9, + ACTIONS(9549), 1, + aux_sym_string_literal_content_token1, + ACTIONS(9551), 1, + aux_sym_string_literal_content_token2, + ACTIONS(9553), 1, + sym_escape_sequence, + ACTIONS(9637), 1, + anon_sym_DQUOTE, + STATE(6421), 1, + aux_sym_string_literal_repeat1, + STATE(6667), 1, + sym_string_literal_content, + STATE(6411), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -739759,7 +736014,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [272980] = 16, + [269658] = 17, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -739780,17 +736035,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9711), 1, - anon_sym_and, - ACTIONS(9713), 1, - anon_sym_or, - ACTIONS(9761), 1, - anon_sym_COMMA, - ACTIONS(9763), 1, - anon_sym_RBRACK, - STATE(6812), 1, - aux_sym_list_pattern_repeat1, - STATE(6480), 9, + ACTIONS(9473), 1, + sym_interpolation_open_brace, + ACTIONS(9517), 1, + sym_interpolation_end_quote, + ACTIONS(9545), 1, + sym_interpolation_string_content, + STATE(6374), 1, + aux_sym_interpolated_string_expression_repeat2, + STATE(6746), 1, + sym_interpolation, + STATE(6925), 1, + sym__interpolated_verbatim_string_content, + STATE(6412), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -739800,7 +736057,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [273037] = 16, + [269718] = 17, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -739821,17 +736078,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9335), 1, + ACTIONS(9290), 1, + anon_sym_EQ_GT, + ACTIONS(9398), 1, + anon_sym_SEMI, + ACTIONS(9400), 1, anon_sym_LBRACE, - ACTIONS(9339), 1, - anon_sym_where, - STATE(6448), 1, - aux_sym__class_declaration_initializer_repeat4, - STATE(6641), 1, - sym_type_parameter_constraints_clause, - STATE(7462), 1, - sym_declaration_list, - STATE(6481), 9, + STATE(2572), 1, + sym_block, + STATE(2664), 1, + sym__function_body, + STATE(7278), 1, + sym_arrow_expression_clause, + STATE(6413), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -739841,7 +736100,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [273094] = 16, + [269778] = 17, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -739862,57 +736121,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9753), 1, - anon_sym_case, - ACTIONS(9755), 1, - anon_sym_default, - ACTIONS(9765), 1, - anon_sym_RBRACE, - STATE(6473), 1, - aux_sym_switch_body_repeat1, - STATE(6882), 1, - sym_switch_section, - STATE(6482), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - [273151] = 15, - ACTIONS(9097), 1, - aux_sym_preproc_region_token1, - ACTIONS(9099), 1, - aux_sym_preproc_endregion_token1, - ACTIONS(9101), 1, - aux_sym_preproc_line_token1, - ACTIONS(9103), 1, - aux_sym_preproc_pragma_token1, - ACTIONS(9105), 1, - aux_sym_preproc_nullable_token1, - ACTIONS(9107), 1, - aux_sym_preproc_error_token1, - ACTIONS(9109), 1, - aux_sym_preproc_warning_token1, - ACTIONS(9111), 1, - aux_sym_preproc_define_token1, - ACTIONS(9113), 1, - aux_sym_preproc_undef_token1, - ACTIONS(9115), 1, - sym_comment, - ACTIONS(9721), 1, - anon_sym_AMP_AMP, - ACTIONS(9723), 1, - anon_sym_PIPE_PIPE, - ACTIONS(9767), 1, - aux_sym_preproc_if_token2, - ACTIONS(9719), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - STATE(6483), 9, + ACTIONS(9290), 1, + anon_sym_EQ_GT, + ACTIONS(9398), 1, + anon_sym_SEMI, + ACTIONS(9400), 1, + anon_sym_LBRACE, + STATE(2572), 1, + sym_block, + STATE(2676), 1, + sym__function_body, + STATE(7278), 1, + sym_arrow_expression_clause, + STATE(6414), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -739922,7 +736143,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [273206] = 15, + [269838] = 16, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -739943,16 +736164,18 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9339), 1, - anon_sym_where, - STATE(6488), 1, - aux_sym__class_declaration_initializer_repeat4, - STATE(6641), 1, - sym_type_parameter_constraints_clause, - ACTIONS(9341), 2, + ACTIONS(6891), 1, + anon_sym_LT, + ACTIONS(6893), 1, + anon_sym_COLON_COLON, + ACTIONS(9639), 1, + anon_sym_EQ, + STATE(2171), 1, + sym_type_argument_list, + ACTIONS(3640), 2, anon_sym_SEMI, - anon_sym_LBRACE, - STATE(6484), 9, + anon_sym_DOT, + STATE(6415), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -739962,7 +736185,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [273261] = 15, + [269896] = 17, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -739983,16 +736206,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9339), 1, - anon_sym_where, - STATE(6448), 1, - aux_sym__class_declaration_initializer_repeat4, - STATE(6641), 1, - sym_type_parameter_constraints_clause, - ACTIONS(9341), 2, - anon_sym_SEMI, - anon_sym_LBRACE, - STATE(6485), 9, + ACTIONS(9473), 1, + sym_interpolation_open_brace, + ACTIONS(9557), 1, + sym_interpolation_string_content, + ACTIONS(9641), 1, + sym_interpolation_end_quote, + STATE(6377), 1, + aux_sym_interpolated_string_expression_repeat3, + STATE(6857), 1, + sym_interpolation, + STATE(6951), 1, + sym__interpolated_raw_string_content, + STATE(6416), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -740002,7 +736228,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [273316] = 15, + [269956] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -740023,16 +736249,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(5573), 1, - anon_sym_LBRACK, - ACTIONS(9769), 1, + ACTIONS(9643), 6, + anon_sym_SEMI, anon_sym_EQ, - STATE(6788), 1, - sym_bracketed_argument_list, - ACTIONS(9771), 2, + anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RPAREN, - STATE(6486), 9, + anon_sym_in, + STATE(6417), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -740042,7 +736266,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [273371] = 15, + [270006] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -740063,16 +736287,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4705), 1, - aux_sym_preproc_else_token1, - ACTIONS(4707), 1, - aux_sym_preproc_elif_token1, - ACTIONS(4715), 1, - aux_sym_preproc_if_token3, - STATE(7705), 2, - sym_preproc_else_in_attribute_list, - sym_preproc_elif_in_attribute_list, - STATE(6487), 9, + ACTIONS(9645), 6, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_in, + STATE(6418), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -740082,7 +736304,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [273426] = 15, + [270056] = 16, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -740103,16 +736325,18 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9339), 1, - anon_sym_where, - STATE(6448), 1, - aux_sym__class_declaration_initializer_repeat4, - STATE(6641), 1, - sym_type_parameter_constraints_clause, - ACTIONS(9773), 2, + ACTIONS(5257), 1, + anon_sym_LPAREN, + ACTIONS(9647), 1, + anon_sym_COMMA, + STATE(6661), 1, + sym_argument_list, + STATE(6662), 1, + aux_sym_base_list_repeat1, + ACTIONS(9413), 2, anon_sym_SEMI, anon_sym_LBRACE, - STATE(6488), 9, + STATE(6419), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -740122,38 +736346,40 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [273481] = 16, - ACTIONS(3), 1, + [270114] = 17, + ACTIONS(9077), 1, aux_sym_preproc_region_token1, - ACTIONS(5), 1, + ACTIONS(9079), 1, aux_sym_preproc_endregion_token1, - ACTIONS(7), 1, + ACTIONS(9081), 1, aux_sym_preproc_line_token1, - ACTIONS(9), 1, + ACTIONS(9083), 1, aux_sym_preproc_pragma_token1, - ACTIONS(11), 1, + ACTIONS(9085), 1, aux_sym_preproc_nullable_token1, - ACTIONS(13), 1, + ACTIONS(9087), 1, aux_sym_preproc_error_token1, - ACTIONS(15), 1, + ACTIONS(9089), 1, aux_sym_preproc_warning_token1, - ACTIONS(17), 1, + ACTIONS(9091), 1, aux_sym_preproc_define_token1, - ACTIONS(19), 1, + ACTIONS(9093), 1, aux_sym_preproc_undef_token1, - ACTIONS(21), 1, + ACTIONS(9095), 1, sym_comment, - ACTIONS(9335), 1, - anon_sym_LBRACE, - ACTIONS(9339), 1, - anon_sym_where, - STATE(6448), 1, - aux_sym__class_declaration_initializer_repeat4, - STATE(6641), 1, - sym_type_parameter_constraints_clause, - STATE(7369), 1, - sym_declaration_list, - STATE(6489), 9, + ACTIONS(9549), 1, + aux_sym_string_literal_content_token1, + ACTIONS(9551), 1, + aux_sym_string_literal_content_token2, + ACTIONS(9553), 1, + sym_escape_sequence, + ACTIONS(9649), 1, + anon_sym_DQUOTE, + STATE(6401), 1, + aux_sym_string_literal_repeat1, + STATE(6667), 1, + sym_string_literal_content, + STATE(6420), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -740163,38 +736389,40 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [273538] = 16, - ACTIONS(3), 1, + [270174] = 17, + ACTIONS(9077), 1, aux_sym_preproc_region_token1, - ACTIONS(5), 1, + ACTIONS(9079), 1, aux_sym_preproc_endregion_token1, - ACTIONS(7), 1, + ACTIONS(9081), 1, aux_sym_preproc_line_token1, - ACTIONS(9), 1, + ACTIONS(9083), 1, aux_sym_preproc_pragma_token1, - ACTIONS(11), 1, + ACTIONS(9085), 1, aux_sym_preproc_nullable_token1, - ACTIONS(13), 1, + ACTIONS(9087), 1, aux_sym_preproc_error_token1, - ACTIONS(15), 1, + ACTIONS(9089), 1, aux_sym_preproc_warning_token1, - ACTIONS(17), 1, + ACTIONS(9091), 1, aux_sym_preproc_define_token1, - ACTIONS(19), 1, + ACTIONS(9093), 1, aux_sym_preproc_undef_token1, - ACTIONS(21), 1, + ACTIONS(9095), 1, sym_comment, - ACTIONS(5619), 1, - anon_sym_STAR, - ACTIONS(8916), 1, - anon_sym_LPAREN, - ACTIONS(9775), 1, - anon_sym_LBRACE, - STATE(4814), 1, - sym_block, - STATE(7280), 1, - sym_parameter_list, - STATE(6490), 9, + ACTIONS(9549), 1, + aux_sym_string_literal_content_token1, + ACTIONS(9551), 1, + aux_sym_string_literal_content_token2, + ACTIONS(9553), 1, + sym_escape_sequence, + ACTIONS(9651), 1, + anon_sym_DQUOTE, + STATE(6407), 1, + aux_sym_string_literal_repeat1, + STATE(6667), 1, + sym_string_literal_content, + STATE(6421), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -740204,7 +736432,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [273595] = 15, + [270234] = 17, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -740225,56 +736453,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(5573), 1, - anon_sym_LBRACK, - ACTIONS(9777), 1, - anon_sym_EQ, - STATE(6790), 1, - sym_bracketed_argument_list, - ACTIONS(9306), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - STATE(6491), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - [273650] = 15, - ACTIONS(9097), 1, - aux_sym_preproc_region_token1, - ACTIONS(9099), 1, - aux_sym_preproc_endregion_token1, - ACTIONS(9101), 1, - aux_sym_preproc_line_token1, - ACTIONS(9103), 1, - aux_sym_preproc_pragma_token1, - ACTIONS(9105), 1, - aux_sym_preproc_nullable_token1, - ACTIONS(9107), 1, - aux_sym_preproc_error_token1, - ACTIONS(9109), 1, - aux_sym_preproc_warning_token1, - ACTIONS(9111), 1, - aux_sym_preproc_define_token1, - ACTIONS(9113), 1, - aux_sym_preproc_undef_token1, - ACTIONS(9115), 1, - sym_comment, - ACTIONS(9721), 1, - anon_sym_AMP_AMP, - ACTIONS(9723), 1, - anon_sym_PIPE_PIPE, - ACTIONS(9779), 1, - aux_sym_preproc_if_token2, - ACTIONS(9719), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - STATE(6492), 9, + ACTIONS(9290), 1, + anon_sym_EQ_GT, + ACTIONS(9398), 1, + anon_sym_SEMI, + ACTIONS(9400), 1, + anon_sym_LBRACE, + STATE(2572), 1, + sym_block, + STATE(2670), 1, + sym__function_body, + STATE(7278), 1, + sym_arrow_expression_clause, + STATE(6422), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -740284,7 +736475,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [273705] = 14, + [270294] = 17, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -740305,15 +736496,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9711), 1, - anon_sym_and, - ACTIONS(9713), 1, - anon_sym_or, - ACTIONS(6205), 3, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_RBRACE, - STATE(6493), 9, + ACTIONS(9473), 1, + sym_interpolation_open_brace, + ACTIONS(9527), 1, + sym_interpolation_end_quote, + ACTIONS(9545), 1, + sym_interpolation_string_content, + STATE(6383), 1, + aux_sym_interpolated_string_expression_repeat2, + STATE(6746), 1, + sym_interpolation, + STATE(6925), 1, + sym__interpolated_verbatim_string_content, + STATE(6423), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -740323,7 +736518,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [273758] = 15, + [270354] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -740344,16 +736539,16 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9339), 1, - anon_sym_where, - STATE(6537), 1, - aux_sym__class_declaration_initializer_repeat4, - STATE(6641), 1, - sym_type_parameter_constraints_clause, - ACTIONS(9773), 2, - anon_sym_SEMI, - anon_sym_LBRACE, - STATE(6494), 9, + ACTIONS(3651), 1, + anon_sym_EQ_GT, + ACTIONS(9569), 1, + anon_sym_EQ, + ACTIONS(3809), 4, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_and, + anon_sym_or, + STATE(6424), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -740363,7 +736558,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [273813] = 16, + [270408] = 17, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -740384,17 +736579,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9335), 1, - anon_sym_LBRACE, - ACTIONS(9339), 1, - anon_sym_where, - STATE(6448), 1, - aux_sym__class_declaration_initializer_repeat4, - STATE(6641), 1, - sym_type_parameter_constraints_clause, - STATE(7464), 1, - sym_declaration_list, - STATE(6495), 9, + ACTIONS(9473), 1, + sym_interpolation_open_brace, + ACTIONS(9557), 1, + sym_interpolation_string_content, + ACTIONS(9653), 1, + sym_interpolation_end_quote, + STATE(6405), 1, + aux_sym_interpolated_string_expression_repeat3, + STATE(6857), 1, + sym_interpolation, + STATE(6951), 1, + sym__interpolated_raw_string_content, + STATE(6425), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -740404,7 +736601,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [273870] = 15, + [270468] = 17, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -740425,16 +736622,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9339), 1, - anon_sym_where, - STATE(6448), 1, - aux_sym__class_declaration_initializer_repeat4, - STATE(6641), 1, - sym_type_parameter_constraints_clause, - ACTIONS(9781), 2, - anon_sym_SEMI, - anon_sym_LBRACE, - STATE(6496), 9, + ACTIONS(9473), 1, + sym_interpolation_open_brace, + ACTIONS(9505), 1, + sym_interpolation_end_quote, + ACTIONS(9545), 1, + sym_interpolation_string_content, + STATE(6394), 1, + aux_sym_interpolated_string_expression_repeat2, + STATE(6746), 1, + sym_interpolation, + STATE(6925), 1, + sym__interpolated_verbatim_string_content, + STATE(6426), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -740444,7 +736644,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [273925] = 13, + [270528] = 17, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -740465,14 +736665,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9711), 1, - anon_sym_and, - ACTIONS(6067), 4, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_or, - STATE(6497), 9, + ACTIONS(9290), 1, + anon_sym_EQ_GT, + ACTIONS(9633), 1, + anon_sym_SEMI, + ACTIONS(9635), 1, + anon_sym_LBRACE, + STATE(3364), 1, + sym_block, + STATE(3375), 1, + sym__function_body, + STATE(7275), 1, + sym_arrow_expression_clause, + STATE(6427), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -740482,37 +736687,40 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [273976] = 15, - ACTIONS(9097), 1, + [270588] = 17, + ACTIONS(9077), 1, aux_sym_preproc_region_token1, - ACTIONS(9099), 1, + ACTIONS(9079), 1, aux_sym_preproc_endregion_token1, - ACTIONS(9101), 1, + ACTIONS(9081), 1, aux_sym_preproc_line_token1, - ACTIONS(9103), 1, + ACTIONS(9083), 1, aux_sym_preproc_pragma_token1, - ACTIONS(9105), 1, + ACTIONS(9085), 1, aux_sym_preproc_nullable_token1, - ACTIONS(9107), 1, + ACTIONS(9087), 1, aux_sym_preproc_error_token1, - ACTIONS(9109), 1, + ACTIONS(9089), 1, aux_sym_preproc_warning_token1, - ACTIONS(9111), 1, + ACTIONS(9091), 1, aux_sym_preproc_define_token1, - ACTIONS(9113), 1, + ACTIONS(9093), 1, aux_sym_preproc_undef_token1, - ACTIONS(9115), 1, + ACTIONS(9095), 1, sym_comment, - ACTIONS(9721), 1, - anon_sym_AMP_AMP, - ACTIONS(9723), 1, - anon_sym_PIPE_PIPE, - ACTIONS(9783), 1, - aux_sym_preproc_if_token2, - ACTIONS(9719), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - STATE(6498), 9, + ACTIONS(9549), 1, + aux_sym_string_literal_content_token1, + ACTIONS(9551), 1, + aux_sym_string_literal_content_token2, + ACTIONS(9553), 1, + sym_escape_sequence, + ACTIONS(9655), 1, + anon_sym_DQUOTE, + STATE(6407), 1, + aux_sym_string_literal_repeat1, + STATE(6667), 1, + sym_string_literal_content, + STATE(6428), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -740522,7 +736730,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [274031] = 15, + [270648] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -740543,16 +736751,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9339), 1, - anon_sym_where, - STATE(6526), 1, - aux_sym__class_declaration_initializer_repeat4, - STATE(6641), 1, - sym_type_parameter_constraints_clause, - ACTIONS(9781), 2, + ACTIONS(9657), 6, anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LPAREN, anon_sym_LBRACE, - STATE(6499), 9, + anon_sym_LT, + anon_sym_where, + STATE(6429), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -740562,7 +736768,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [274086] = 15, + [270698] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -740583,16 +736789,16 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(7992), 1, - aux_sym_preproc_else_token1, - ACTIONS(7994), 1, - aux_sym_preproc_elif_token1, - ACTIONS(9785), 1, - aux_sym_preproc_if_token3, - STATE(7299), 2, - sym_preproc_else_in_enum_member_declaration, - sym_preproc_elif_in_enum_member_declaration, - STATE(6500), 9, + ACTIONS(9661), 1, + anon_sym_COMMA, + STATE(6406), 1, + aux_sym_type_parameter_constraints_clause_repeat1, + ACTIONS(9659), 4, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_where, + anon_sym_EQ_GT, + STATE(6430), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -740602,7 +736808,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [274141] = 14, + [270752] = 17, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -740623,15 +736829,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9454), 1, - anon_sym_COMMA, - STATE(6529), 1, - aux_sym_record_base_repeat1, - ACTIONS(9787), 3, + ACTIONS(9290), 1, + anon_sym_EQ_GT, + ACTIONS(9398), 1, anon_sym_SEMI, + ACTIONS(9400), 1, anon_sym_LBRACE, - anon_sym_where, - STATE(6501), 9, + STATE(2572), 1, + sym_block, + STATE(2710), 1, + sym__function_body, + STATE(7278), 1, + sym_arrow_expression_clause, + STATE(6431), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -740641,37 +736851,36 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [274194] = 15, - ACTIONS(9097), 1, + [270812] = 13, + ACTIONS(3), 1, aux_sym_preproc_region_token1, - ACTIONS(9099), 1, + ACTIONS(5), 1, aux_sym_preproc_endregion_token1, - ACTIONS(9101), 1, + ACTIONS(7), 1, aux_sym_preproc_line_token1, - ACTIONS(9103), 1, + ACTIONS(9), 1, aux_sym_preproc_pragma_token1, - ACTIONS(9105), 1, + ACTIONS(11), 1, aux_sym_preproc_nullable_token1, - ACTIONS(9107), 1, + ACTIONS(13), 1, aux_sym_preproc_error_token1, - ACTIONS(9109), 1, + ACTIONS(15), 1, aux_sym_preproc_warning_token1, - ACTIONS(9111), 1, + ACTIONS(17), 1, aux_sym_preproc_define_token1, - ACTIONS(9113), 1, + ACTIONS(19), 1, aux_sym_preproc_undef_token1, - ACTIONS(9115), 1, + ACTIONS(21), 1, sym_comment, - ACTIONS(9721), 1, - anon_sym_AMP_AMP, - ACTIONS(9723), 1, - anon_sym_PIPE_PIPE, - ACTIONS(9789), 1, - aux_sym_preproc_if_token2, - ACTIONS(9719), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - STATE(6502), 9, + ACTIONS(9665), 1, + anon_sym_QMARK, + ACTIONS(9663), 5, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_where, + anon_sym_EQ_GT, + STATE(6432), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -740681,7 +736890,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [274249] = 15, + [270864] = 17, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -740702,16 +736911,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4705), 1, - aux_sym_preproc_else_token1, - ACTIONS(4707), 1, - aux_sym_preproc_elif_token1, - ACTIONS(4890), 1, - aux_sym_preproc_if_token3, - STATE(7673), 2, - sym_preproc_else_in_attribute_list, - sym_preproc_elif_in_attribute_list, - STATE(6503), 9, + ACTIONS(9473), 1, + sym_interpolation_open_brace, + ACTIONS(9557), 1, + sym_interpolation_string_content, + ACTIONS(9667), 1, + sym_interpolation_end_quote, + STATE(6379), 1, + aux_sym_interpolated_string_expression_repeat3, + STATE(6857), 1, + sym_interpolation, + STATE(6951), 1, + sym__interpolated_raw_string_content, + STATE(6433), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -740721,7 +736933,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [274304] = 15, + [270924] = 17, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -740742,16 +736954,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9339), 1, - anon_sym_where, - STATE(6448), 1, - aux_sym__class_declaration_initializer_repeat4, - STATE(6641), 1, - sym_type_parameter_constraints_clause, - ACTIONS(9791), 2, + ACTIONS(9290), 1, + anon_sym_EQ_GT, + ACTIONS(9398), 1, anon_sym_SEMI, + ACTIONS(9400), 1, anon_sym_LBRACE, - STATE(6504), 9, + STATE(2572), 1, + sym_block, + STATE(2809), 1, + sym__function_body, + STATE(7278), 1, + sym_arrow_expression_clause, + STATE(6434), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -740761,7 +736976,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [274359] = 12, + [270984] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -740782,13 +736997,16 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9793), 5, - anon_sym_COLON, + ACTIONS(9669), 1, anon_sym_LPAREN, + ACTIONS(9672), 1, anon_sym_LBRACE, - anon_sym_LT, - anon_sym_where, - STATE(6505), 9, + ACTIONS(9674), 1, + anon_sym_when, + STATE(7001), 2, + sym_catch_declaration, + sym_catch_filter_clause, + STATE(6435), 10, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -740798,37 +737016,37 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [274408] = 15, - ACTIONS(9097), 1, + aux_sym_catch_clause_repeat1, + [271040] = 13, + ACTIONS(3636), 1, + aux_sym_preproc_if_token2, + ACTIONS(9077), 1, aux_sym_preproc_region_token1, - ACTIONS(9099), 1, + ACTIONS(9079), 1, aux_sym_preproc_endregion_token1, - ACTIONS(9101), 1, + ACTIONS(9081), 1, aux_sym_preproc_line_token1, - ACTIONS(9103), 1, + ACTIONS(9083), 1, aux_sym_preproc_pragma_token1, - ACTIONS(9105), 1, + ACTIONS(9085), 1, aux_sym_preproc_nullable_token1, - ACTIONS(9107), 1, + ACTIONS(9087), 1, aux_sym_preproc_error_token1, - ACTIONS(9109), 1, + ACTIONS(9089), 1, aux_sym_preproc_warning_token1, - ACTIONS(9111), 1, + ACTIONS(9091), 1, aux_sym_preproc_define_token1, - ACTIONS(9113), 1, + ACTIONS(9093), 1, aux_sym_preproc_undef_token1, - ACTIONS(9115), 1, + ACTIONS(9095), 1, sym_comment, - ACTIONS(9721), 1, - anon_sym_AMP_AMP, - ACTIONS(9723), 1, - anon_sym_PIPE_PIPE, - ACTIONS(9795), 1, - aux_sym_preproc_if_token2, - ACTIONS(9719), 2, + ACTIONS(3634), 5, + anon_sym_COMMA, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - STATE(6506), 9, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + STATE(6436), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -740838,7 +737056,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [274463] = 16, + [271092] = 17, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -740859,17 +737077,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9753), 1, - anon_sym_case, - ACTIONS(9755), 1, - anon_sym_default, - ACTIONS(9797), 1, - anon_sym_RBRACE, - STATE(6549), 1, - aux_sym_switch_body_repeat1, - STATE(6882), 1, - sym_switch_section, - STATE(6507), 9, + ACTIONS(9473), 1, + sym_interpolation_open_brace, + ACTIONS(9557), 1, + sym_interpolation_string_content, + ACTIONS(9677), 1, + sym_interpolation_end_quote, + STATE(6371), 1, + aux_sym_interpolated_string_expression_repeat3, + STATE(6857), 1, + sym_interpolation, + STATE(6951), 1, + sym__interpolated_raw_string_content, + STATE(6437), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -740879,37 +737099,40 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [274520] = 15, - ACTIONS(9097), 1, + [271152] = 17, + ACTIONS(9077), 1, aux_sym_preproc_region_token1, - ACTIONS(9099), 1, + ACTIONS(9079), 1, aux_sym_preproc_endregion_token1, - ACTIONS(9101), 1, + ACTIONS(9081), 1, aux_sym_preproc_line_token1, - ACTIONS(9103), 1, + ACTIONS(9083), 1, aux_sym_preproc_pragma_token1, - ACTIONS(9105), 1, + ACTIONS(9085), 1, aux_sym_preproc_nullable_token1, - ACTIONS(9107), 1, + ACTIONS(9087), 1, aux_sym_preproc_error_token1, - ACTIONS(9109), 1, + ACTIONS(9089), 1, aux_sym_preproc_warning_token1, - ACTIONS(9111), 1, + ACTIONS(9091), 1, aux_sym_preproc_define_token1, - ACTIONS(9113), 1, + ACTIONS(9093), 1, aux_sym_preproc_undef_token1, - ACTIONS(9115), 1, + ACTIONS(9095), 1, sym_comment, - ACTIONS(9721), 1, - anon_sym_AMP_AMP, - ACTIONS(9723), 1, - anon_sym_PIPE_PIPE, - ACTIONS(9799), 1, - aux_sym_preproc_if_token2, - ACTIONS(9719), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - STATE(6508), 9, + ACTIONS(9549), 1, + aux_sym_string_literal_content_token1, + ACTIONS(9551), 1, + aux_sym_string_literal_content_token2, + ACTIONS(9553), 1, + sym_escape_sequence, + ACTIONS(9679), 1, + anon_sym_DQUOTE, + STATE(6407), 1, + aux_sym_string_literal_repeat1, + STATE(6667), 1, + sym_string_literal_content, + STATE(6438), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -740919,37 +737142,35 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [274575] = 15, - ACTIONS(9097), 1, + [271212] = 12, + ACTIONS(3), 1, aux_sym_preproc_region_token1, - ACTIONS(9099), 1, + ACTIONS(5), 1, aux_sym_preproc_endregion_token1, - ACTIONS(9101), 1, + ACTIONS(7), 1, aux_sym_preproc_line_token1, - ACTIONS(9103), 1, + ACTIONS(9), 1, aux_sym_preproc_pragma_token1, - ACTIONS(9105), 1, + ACTIONS(11), 1, aux_sym_preproc_nullable_token1, - ACTIONS(9107), 1, + ACTIONS(13), 1, aux_sym_preproc_error_token1, - ACTIONS(9109), 1, + ACTIONS(15), 1, aux_sym_preproc_warning_token1, - ACTIONS(9111), 1, + ACTIONS(17), 1, aux_sym_preproc_define_token1, - ACTIONS(9113), 1, + ACTIONS(19), 1, aux_sym_preproc_undef_token1, - ACTIONS(9115), 1, + ACTIONS(21), 1, sym_comment, - ACTIONS(9721), 1, - anon_sym_AMP_AMP, - ACTIONS(9723), 1, - anon_sym_PIPE_PIPE, - ACTIONS(9801), 1, - aux_sym_preproc_if_token2, - ACTIONS(9719), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - STATE(6509), 9, + ACTIONS(9681), 6, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LT, + anon_sym_where, + STATE(6439), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -740959,7 +737180,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [274630] = 16, + [271262] = 16, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -740980,17 +737201,61 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(5619), 1, - anon_sym_STAR, - ACTIONS(8916), 1, - anon_sym_LPAREN, - ACTIONS(9715), 1, + ACTIONS(6891), 1, + anon_sym_LT, + ACTIONS(6893), 1, + anon_sym_COLON_COLON, + ACTIONS(9683), 1, + anon_sym_EQ, + STATE(2171), 1, + sym_type_argument_list, + ACTIONS(3640), 2, + anon_sym_SEMI, + anon_sym_DOT, + STATE(6440), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + [271320] = 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(9290), 1, + anon_sym_EQ_GT, + ACTIONS(9398), 1, + anon_sym_SEMI, + ACTIONS(9400), 1, anon_sym_LBRACE, - STATE(3317), 1, + STATE(2572), 1, sym_block, - STATE(7131), 1, - sym_parameter_list, - STATE(6510), 9, + STATE(2751), 1, + sym__function_body, + STATE(7278), 1, + sym_arrow_expression_clause, + STATE(6441), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -741000,37 +737265,37 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [274687] = 15, - ACTIONS(9097), 1, + [271380] = 14, + ACTIONS(3), 1, aux_sym_preproc_region_token1, - ACTIONS(9099), 1, + ACTIONS(5), 1, aux_sym_preproc_endregion_token1, - ACTIONS(9101), 1, + ACTIONS(7), 1, aux_sym_preproc_line_token1, - ACTIONS(9103), 1, + ACTIONS(9), 1, aux_sym_preproc_pragma_token1, - ACTIONS(9105), 1, + ACTIONS(11), 1, aux_sym_preproc_nullable_token1, - ACTIONS(9107), 1, + ACTIONS(13), 1, aux_sym_preproc_error_token1, - ACTIONS(9109), 1, + ACTIONS(15), 1, aux_sym_preproc_warning_token1, - ACTIONS(9111), 1, + ACTIONS(17), 1, aux_sym_preproc_define_token1, - ACTIONS(9113), 1, + ACTIONS(19), 1, aux_sym_preproc_undef_token1, - ACTIONS(9115), 1, + ACTIONS(21), 1, sym_comment, - ACTIONS(9721), 1, - anon_sym_AMP_AMP, - ACTIONS(9723), 1, - anon_sym_PIPE_PIPE, - ACTIONS(9803), 1, - aux_sym_preproc_if_token2, - ACTIONS(9719), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - STATE(6511), 9, + ACTIONS(9661), 1, + anon_sym_COMMA, + STATE(6430), 1, + aux_sym_type_parameter_constraints_clause_repeat1, + ACTIONS(9685), 4, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_where, + anon_sym_EQ_GT, + STATE(6442), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -741040,35 +737305,36 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [274742] = 13, - ACTIONS(5102), 1, + [271434] = 13, + ACTIONS(3429), 1, aux_sym_preproc_if_token2, - ACTIONS(9097), 1, + ACTIONS(9077), 1, aux_sym_preproc_region_token1, - ACTIONS(9099), 1, + ACTIONS(9079), 1, aux_sym_preproc_endregion_token1, - ACTIONS(9101), 1, + ACTIONS(9081), 1, aux_sym_preproc_line_token1, - ACTIONS(9103), 1, + ACTIONS(9083), 1, aux_sym_preproc_pragma_token1, - ACTIONS(9105), 1, + ACTIONS(9085), 1, aux_sym_preproc_nullable_token1, - ACTIONS(9107), 1, + ACTIONS(9087), 1, aux_sym_preproc_error_token1, - ACTIONS(9109), 1, + ACTIONS(9089), 1, aux_sym_preproc_warning_token1, - ACTIONS(9111), 1, + ACTIONS(9091), 1, aux_sym_preproc_define_token1, - ACTIONS(9113), 1, + ACTIONS(9093), 1, aux_sym_preproc_undef_token1, - ACTIONS(9115), 1, + ACTIONS(9095), 1, sym_comment, - ACTIONS(5104), 4, + ACTIONS(3431), 5, + anon_sym_COMMA, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - STATE(6512), 9, + STATE(6443), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -741078,7 +737344,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [274793] = 12, + [271486] = 17, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -741099,13 +737365,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9805), 5, + ACTIONS(9290), 1, + anon_sym_EQ_GT, + ACTIONS(9633), 1, anon_sym_SEMI, - anon_sym_COMMA, + ACTIONS(9635), 1, anon_sym_LBRACE, - anon_sym_where, - anon_sym_EQ_GT, - STATE(6513), 9, + STATE(3359), 1, + sym__function_body, + STATE(3364), 1, + sym_block, + STATE(7275), 1, + sym_arrow_expression_clause, + STATE(6444), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -741115,7 +737387,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [274842] = 12, + [271546] = 16, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -741136,13 +737408,18 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9663), 5, + ACTIONS(6891), 1, + anon_sym_LT, + ACTIONS(6893), 1, + anon_sym_COLON_COLON, + ACTIONS(9687), 1, + anon_sym_EQ, + STATE(2171), 1, + sym_type_argument_list, + ACTIONS(3640), 2, anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_LBRACE, - anon_sym_where, - anon_sym_EQ_GT, - STATE(6514), 9, + anon_sym_DOT, + STATE(6445), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -741152,38 +737429,40 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [274891] = 16, - ACTIONS(3), 1, + [271604] = 17, + ACTIONS(9077), 1, aux_sym_preproc_region_token1, - ACTIONS(5), 1, + ACTIONS(9079), 1, aux_sym_preproc_endregion_token1, - ACTIONS(7), 1, + ACTIONS(9081), 1, aux_sym_preproc_line_token1, - ACTIONS(9), 1, + ACTIONS(9083), 1, aux_sym_preproc_pragma_token1, - ACTIONS(11), 1, + ACTIONS(9085), 1, aux_sym_preproc_nullable_token1, - ACTIONS(13), 1, + ACTIONS(9087), 1, aux_sym_preproc_error_token1, - ACTIONS(15), 1, + ACTIONS(9089), 1, aux_sym_preproc_warning_token1, - ACTIONS(17), 1, + ACTIONS(9091), 1, aux_sym_preproc_define_token1, - ACTIONS(19), 1, + ACTIONS(9093), 1, aux_sym_preproc_undef_token1, - ACTIONS(21), 1, + ACTIONS(9095), 1, sym_comment, - ACTIONS(5617), 1, - anon_sym_LBRACE, - ACTIONS(5619), 1, - anon_sym_STAR, - ACTIONS(8916), 1, - anon_sym_LPAREN, - STATE(3118), 1, - sym_block, - STATE(7238), 1, - sym_parameter_list, - STATE(6515), 9, + ACTIONS(9549), 1, + aux_sym_string_literal_content_token1, + ACTIONS(9551), 1, + aux_sym_string_literal_content_token2, + ACTIONS(9553), 1, + sym_escape_sequence, + ACTIONS(9689), 1, + anon_sym_DQUOTE, + STATE(6398), 1, + aux_sym_string_literal_repeat1, + STATE(6667), 1, + sym_string_literal_content, + STATE(6446), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -741193,7 +737472,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [274948] = 16, + [271664] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -741214,17 +737493,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(5619), 1, - anon_sym_STAR, - ACTIONS(8916), 1, - anon_sym_LPAREN, - ACTIONS(9807), 1, - anon_sym_LBRACE, - STATE(3485), 1, - sym_block, - STATE(7165), 1, - sym_parameter_list, - STATE(6516), 9, + ACTIONS(9691), 6, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_in, + STATE(6447), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -741234,7 +737510,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [275005] = 16, + [271714] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -741255,17 +737531,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4018), 1, - anon_sym_LPAREN, - ACTIONS(6678), 1, + ACTIONS(9693), 6, + anon_sym_SEMI, + anon_sym_EQ, anon_sym_LBRACK, - ACTIONS(6680), 1, - anon_sym_STAR, - ACTIONS(6716), 1, - anon_sym_QMARK, - ACTIONS(9809), 1, - anon_sym_DOT, - STATE(6517), 9, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_in, + STATE(6448), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -741275,7 +737548,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [275062] = 16, + [271764] = 17, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -741296,17 +737569,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9335), 1, + ACTIONS(9290), 1, + anon_sym_EQ_GT, + ACTIONS(9398), 1, + anon_sym_SEMI, + ACTIONS(9400), 1, anon_sym_LBRACE, - ACTIONS(9339), 1, - anon_sym_where, - STATE(6448), 1, - aux_sym__class_declaration_initializer_repeat4, - STATE(6641), 1, - sym_type_parameter_constraints_clause, - STATE(7576), 1, - sym_declaration_list, - STATE(6518), 9, + STATE(2572), 1, + sym_block, + STATE(2755), 1, + sym__function_body, + STATE(7278), 1, + sym_arrow_expression_clause, + STATE(6449), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -741316,37 +737591,40 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [275119] = 15, - ACTIONS(3), 1, + [271824] = 17, + ACTIONS(9077), 1, aux_sym_preproc_region_token1, - ACTIONS(5), 1, + ACTIONS(9079), 1, aux_sym_preproc_endregion_token1, - ACTIONS(7), 1, + ACTIONS(9081), 1, aux_sym_preproc_line_token1, - ACTIONS(9), 1, + ACTIONS(9083), 1, aux_sym_preproc_pragma_token1, - ACTIONS(11), 1, + ACTIONS(9085), 1, aux_sym_preproc_nullable_token1, - ACTIONS(13), 1, + ACTIONS(9087), 1, aux_sym_preproc_error_token1, - ACTIONS(15), 1, + ACTIONS(9089), 1, aux_sym_preproc_warning_token1, - ACTIONS(17), 1, + ACTIONS(9091), 1, aux_sym_preproc_define_token1, - ACTIONS(19), 1, + ACTIONS(9093), 1, aux_sym_preproc_undef_token1, - ACTIONS(21), 1, + ACTIONS(9095), 1, sym_comment, - ACTIONS(8142), 1, - anon_sym_DOT, - ACTIONS(9811), 1, - anon_sym_LPAREN, - STATE(7102), 1, - sym_attribute_argument_list, - ACTIONS(8875), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - STATE(6519), 9, + ACTIONS(9549), 1, + aux_sym_string_literal_content_token1, + ACTIONS(9551), 1, + aux_sym_string_literal_content_token2, + ACTIONS(9553), 1, + sym_escape_sequence, + ACTIONS(9695), 1, + anon_sym_DQUOTE, + STATE(6428), 1, + aux_sym_string_literal_repeat1, + STATE(6667), 1, + sym_string_literal_content, + STATE(6450), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -741356,37 +737634,37 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [275174] = 15, - ACTIONS(9097), 1, + [271884] = 15, + ACTIONS(9077), 1, aux_sym_preproc_region_token1, - ACTIONS(9099), 1, + ACTIONS(9079), 1, aux_sym_preproc_endregion_token1, - ACTIONS(9101), 1, + ACTIONS(9081), 1, aux_sym_preproc_line_token1, - ACTIONS(9103), 1, + ACTIONS(9083), 1, aux_sym_preproc_pragma_token1, - ACTIONS(9105), 1, + ACTIONS(9085), 1, aux_sym_preproc_nullable_token1, - ACTIONS(9107), 1, + ACTIONS(9087), 1, aux_sym_preproc_error_token1, - ACTIONS(9109), 1, + ACTIONS(9089), 1, aux_sym_preproc_warning_token1, - ACTIONS(9111), 1, + ACTIONS(9091), 1, aux_sym_preproc_define_token1, - ACTIONS(9113), 1, + ACTIONS(9093), 1, aux_sym_preproc_undef_token1, - ACTIONS(9115), 1, + ACTIONS(9095), 1, sym_comment, - ACTIONS(9721), 1, + ACTIONS(9699), 1, anon_sym_AMP_AMP, - ACTIONS(9723), 1, + ACTIONS(9701), 1, anon_sym_PIPE_PIPE, - ACTIONS(9813), 1, + ACTIONS(9703), 1, aux_sym_preproc_if_token2, - ACTIONS(9719), 2, + ACTIONS(9697), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - STATE(6520), 9, + STATE(6451), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -741396,7 +737674,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [275229] = 15, + [271939] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -741417,16 +737695,16 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(5573), 1, - anon_sym_LBRACK, - ACTIONS(9815), 1, - anon_sym_EQ, - STATE(6820), 1, - sym_bracketed_argument_list, - ACTIONS(9771), 2, + ACTIONS(9320), 1, + anon_sym_where, + STATE(6404), 1, + aux_sym__class_declaration_initializer_repeat4, + STATE(6694), 1, + sym_type_parameter_constraints_clause, + ACTIONS(9705), 2, anon_sym_SEMI, - anon_sym_COMMA, - STATE(6521), 9, + anon_sym_LBRACE, + STATE(6452), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -741436,7 +737714,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [275284] = 15, + [271994] = 16, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -741457,16 +737735,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9339), 1, - anon_sym_where, - STATE(6539), 1, - aux_sym__class_declaration_initializer_repeat4, - STATE(6641), 1, - sym_type_parameter_constraints_clause, - ACTIONS(9354), 2, - anon_sym_SEMI, + ACTIONS(5573), 1, anon_sym_LBRACE, - STATE(6522), 9, + ACTIONS(5575), 1, + anon_sym_STAR, + ACTIONS(8892), 1, + anon_sym_LPAREN, + STATE(3082), 1, + sym_block, + STATE(7029), 1, + sym_parameter_list, + STATE(6453), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -741476,7 +737755,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [275339] = 16, + [272051] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -741497,17 +737776,16 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9335), 1, - anon_sym_LBRACE, - ACTIONS(9339), 1, + ACTIONS(9320), 1, anon_sym_where, - STATE(6448), 1, + STATE(6565), 1, aux_sym__class_declaration_initializer_repeat4, - STATE(6641), 1, + STATE(6694), 1, sym_type_parameter_constraints_clause, - STATE(7540), 1, - sym_declaration_list, - STATE(6523), 9, + ACTIONS(9332), 2, + anon_sym_SEMI, + anon_sym_LBRACE, + STATE(6454), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -741517,7 +737795,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [275396] = 15, + [272106] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -741538,16 +737816,16 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9339), 1, + ACTIONS(9320), 1, anon_sym_where, - STATE(6448), 1, + STATE(6404), 1, aux_sym__class_declaration_initializer_repeat4, - STATE(6641), 1, + STATE(6694), 1, sym_type_parameter_constraints_clause, - ACTIONS(9354), 2, + ACTIONS(9332), 2, anon_sym_SEMI, anon_sym_LBRACE, - STATE(6524), 9, + STATE(6455), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -741557,37 +737835,37 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [275451] = 15, - ACTIONS(9097), 1, + [272161] = 15, + ACTIONS(3), 1, aux_sym_preproc_region_token1, - ACTIONS(9099), 1, + ACTIONS(5), 1, aux_sym_preproc_endregion_token1, - ACTIONS(9101), 1, + ACTIONS(7), 1, aux_sym_preproc_line_token1, - ACTIONS(9103), 1, + ACTIONS(9), 1, aux_sym_preproc_pragma_token1, - ACTIONS(9105), 1, + ACTIONS(11), 1, aux_sym_preproc_nullable_token1, - ACTIONS(9107), 1, + ACTIONS(13), 1, aux_sym_preproc_error_token1, - ACTIONS(9109), 1, + ACTIONS(15), 1, aux_sym_preproc_warning_token1, - ACTIONS(9111), 1, + ACTIONS(17), 1, aux_sym_preproc_define_token1, - ACTIONS(9113), 1, + ACTIONS(19), 1, aux_sym_preproc_undef_token1, - ACTIONS(9115), 1, + ACTIONS(21), 1, sym_comment, - ACTIONS(9721), 1, - anon_sym_AMP_AMP, - ACTIONS(9723), 1, - anon_sym_PIPE_PIPE, - ACTIONS(9817), 1, - aux_sym_preproc_if_token2, - ACTIONS(9719), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - STATE(6525), 9, + ACTIONS(4669), 1, + aux_sym_preproc_if_token3, + ACTIONS(4671), 1, + aux_sym_preproc_else_token1, + ACTIONS(4673), 1, + aux_sym_preproc_elif_token1, + STATE(7382), 2, + sym_preproc_else_in_attribute_list, + sym_preproc_elif_in_attribute_list, + STATE(6456), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -741597,7 +737875,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [275506] = 15, + [272216] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -741618,16 +737896,16 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9339), 1, + ACTIONS(9320), 1, anon_sym_where, - STATE(6448), 1, + STATE(6404), 1, aux_sym__class_declaration_initializer_repeat4, - STATE(6641), 1, + STATE(6694), 1, sym_type_parameter_constraints_clause, - ACTIONS(9819), 2, + ACTIONS(9334), 2, anon_sym_SEMI, anon_sym_LBRACE, - STATE(6526), 9, + STATE(6457), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -741637,7 +737915,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [275561] = 16, + [272271] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -741658,17 +737936,16 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(3667), 1, - anon_sym_EQ_GT, - ACTIONS(8916), 1, - anon_sym_LPAREN, - ACTIONS(9337), 1, - anon_sym_LT, - STATE(6670), 1, - sym_parameter_list, - STATE(7241), 1, - sym_type_parameter_list, - STATE(6527), 9, + ACTIONS(9320), 1, + anon_sym_where, + STATE(6584), 1, + aux_sym__class_declaration_initializer_repeat4, + STATE(6694), 1, + sym_type_parameter_constraints_clause, + ACTIONS(9707), 2, + anon_sym_SEMI, + anon_sym_LBRACE, + STATE(6458), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -741678,7 +737955,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [275618] = 13, + [272326] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -741699,14 +737976,16 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8142), 1, - anon_sym_DOT, - ACTIONS(9821), 4, + ACTIONS(9320), 1, + anon_sym_where, + STATE(6404), 1, + aux_sym__class_declaration_initializer_repeat4, + STATE(6694), 1, + sym_type_parameter_constraints_clause, + ACTIONS(9707), 2, anon_sym_SEMI, - anon_sym_COMMA, anon_sym_LBRACE, - anon_sym_where, - STATE(6528), 9, + STATE(6459), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -741716,7 +737995,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [275669] = 13, + [272381] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -741737,13 +738016,16 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9823), 1, - anon_sym_COMMA, - ACTIONS(9821), 3, + ACTIONS(5549), 1, + anon_sym_LBRACK, + ACTIONS(9369), 1, + anon_sym_EQ, + STATE(6806), 1, + sym_bracketed_argument_list, + ACTIONS(9282), 2, anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_where, - STATE(6529), 10, + anon_sym_COMMA, + STATE(6460), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -741753,38 +738035,35 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - aux_sym_record_base_repeat1, - [275720] = 15, - ACTIONS(3), 1, + [272436] = 13, + ACTIONS(5152), 1, + aux_sym_preproc_if_token2, + ACTIONS(9077), 1, aux_sym_preproc_region_token1, - ACTIONS(5), 1, + ACTIONS(9079), 1, aux_sym_preproc_endregion_token1, - ACTIONS(7), 1, + ACTIONS(9081), 1, aux_sym_preproc_line_token1, - ACTIONS(9), 1, + ACTIONS(9083), 1, aux_sym_preproc_pragma_token1, - ACTIONS(11), 1, + ACTIONS(9085), 1, aux_sym_preproc_nullable_token1, - ACTIONS(13), 1, + ACTIONS(9087), 1, aux_sym_preproc_error_token1, - ACTIONS(15), 1, + ACTIONS(9089), 1, aux_sym_preproc_warning_token1, - ACTIONS(17), 1, + ACTIONS(9091), 1, aux_sym_preproc_define_token1, - ACTIONS(19), 1, + ACTIONS(9093), 1, aux_sym_preproc_undef_token1, - ACTIONS(21), 1, + ACTIONS(9095), 1, sym_comment, - ACTIONS(9731), 1, - anon_sym_AMP_AMP, - ACTIONS(9733), 1, - anon_sym_PIPE_PIPE, - ACTIONS(9826), 1, - anon_sym_RPAREN, - ACTIONS(9729), 2, + ACTIONS(5154), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - STATE(6530), 9, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + STATE(6461), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -741794,38 +738073,37 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [275775] = 16, - ACTIONS(3), 1, + [272487] = 15, + ACTIONS(9077), 1, aux_sym_preproc_region_token1, - ACTIONS(5), 1, + ACTIONS(9079), 1, aux_sym_preproc_endregion_token1, - ACTIONS(7), 1, + ACTIONS(9081), 1, aux_sym_preproc_line_token1, - ACTIONS(9), 1, + ACTIONS(9083), 1, aux_sym_preproc_pragma_token1, - ACTIONS(11), 1, + ACTIONS(9085), 1, aux_sym_preproc_nullable_token1, - ACTIONS(13), 1, + ACTIONS(9087), 1, aux_sym_preproc_error_token1, - ACTIONS(15), 1, + ACTIONS(9089), 1, aux_sym_preproc_warning_token1, - ACTIONS(17), 1, + ACTIONS(9091), 1, aux_sym_preproc_define_token1, - ACTIONS(19), 1, + ACTIONS(9093), 1, aux_sym_preproc_undef_token1, - ACTIONS(21), 1, + ACTIONS(9095), 1, sym_comment, - ACTIONS(5264), 1, - anon_sym_LPAREN, - ACTIONS(9460), 1, - anon_sym_LBRACE, - ACTIONS(9828), 1, - anon_sym_COMMA, - STATE(6825), 1, - sym_argument_list, - STATE(6826), 1, - aux_sym_base_list_repeat1, - STATE(6531), 9, + ACTIONS(9699), 1, + anon_sym_AMP_AMP, + ACTIONS(9701), 1, + anon_sym_PIPE_PIPE, + ACTIONS(9709), 1, + aux_sym_preproc_if_token2, + ACTIONS(9697), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + STATE(6462), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -741835,38 +738113,37 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [275832] = 16, - ACTIONS(3), 1, + [272542] = 15, + ACTIONS(9077), 1, aux_sym_preproc_region_token1, - ACTIONS(5), 1, + ACTIONS(9079), 1, aux_sym_preproc_endregion_token1, - ACTIONS(7), 1, + ACTIONS(9081), 1, aux_sym_preproc_line_token1, - ACTIONS(9), 1, + ACTIONS(9083), 1, aux_sym_preproc_pragma_token1, - ACTIONS(11), 1, + ACTIONS(9085), 1, aux_sym_preproc_nullable_token1, - ACTIONS(13), 1, + ACTIONS(9087), 1, aux_sym_preproc_error_token1, - ACTIONS(15), 1, + ACTIONS(9089), 1, aux_sym_preproc_warning_token1, - ACTIONS(17), 1, + ACTIONS(9091), 1, aux_sym_preproc_define_token1, - ACTIONS(19), 1, + ACTIONS(9093), 1, aux_sym_preproc_undef_token1, - ACTIONS(21), 1, + ACTIONS(9095), 1, sym_comment, - ACTIONS(5619), 1, - anon_sym_STAR, - ACTIONS(8916), 1, - anon_sym_LPAREN, - ACTIONS(9830), 1, - anon_sym_LBRACE, - STATE(3000), 1, - sym_block, - STATE(7077), 1, - sym_parameter_list, - STATE(6532), 9, + ACTIONS(9699), 1, + anon_sym_AMP_AMP, + ACTIONS(9701), 1, + anon_sym_PIPE_PIPE, + ACTIONS(9711), 1, + aux_sym_preproc_if_token2, + ACTIONS(9697), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + STATE(6463), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -741876,7 +738153,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [275889] = 14, + [272597] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -741897,15 +738174,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9834), 1, + ACTIONS(9715), 1, anon_sym_COLON, - STATE(6766), 1, + STATE(7016), 1, sym_constructor_initializer, - ACTIONS(9832), 3, + ACTIONS(9713), 3, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_EQ_GT, - STATE(6533), 9, + STATE(6464), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -741915,38 +738192,35 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [275942] = 16, - ACTIONS(3), 1, + [272650] = 13, + ACTIONS(5130), 1, + aux_sym_preproc_if_token2, + ACTIONS(9077), 1, aux_sym_preproc_region_token1, - ACTIONS(5), 1, + ACTIONS(9079), 1, aux_sym_preproc_endregion_token1, - ACTIONS(7), 1, + ACTIONS(9081), 1, aux_sym_preproc_line_token1, - ACTIONS(9), 1, + ACTIONS(9083), 1, aux_sym_preproc_pragma_token1, - ACTIONS(11), 1, + ACTIONS(9085), 1, aux_sym_preproc_nullable_token1, - ACTIONS(13), 1, + ACTIONS(9087), 1, aux_sym_preproc_error_token1, - ACTIONS(15), 1, + ACTIONS(9089), 1, aux_sym_preproc_warning_token1, - ACTIONS(17), 1, + ACTIONS(9091), 1, aux_sym_preproc_define_token1, - ACTIONS(19), 1, + ACTIONS(9093), 1, aux_sym_preproc_undef_token1, - ACTIONS(21), 1, + ACTIONS(9095), 1, sym_comment, - ACTIONS(9335), 1, - anon_sym_LBRACE, - ACTIONS(9339), 1, - anon_sym_where, - STATE(6448), 1, - aux_sym__class_declaration_initializer_repeat4, - STATE(6641), 1, - sym_type_parameter_constraints_clause, - STATE(7387), 1, - sym_declaration_list, - STATE(6534), 9, + ACTIONS(5132), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + STATE(6465), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -741956,38 +738230,37 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [275999] = 16, - ACTIONS(3), 1, + [272701] = 15, + ACTIONS(9077), 1, aux_sym_preproc_region_token1, - ACTIONS(5), 1, + ACTIONS(9079), 1, aux_sym_preproc_endregion_token1, - ACTIONS(7), 1, + ACTIONS(9081), 1, aux_sym_preproc_line_token1, - ACTIONS(9), 1, + ACTIONS(9083), 1, aux_sym_preproc_pragma_token1, - ACTIONS(11), 1, + ACTIONS(9085), 1, aux_sym_preproc_nullable_token1, - ACTIONS(13), 1, + ACTIONS(9087), 1, aux_sym_preproc_error_token1, - ACTIONS(15), 1, + ACTIONS(9089), 1, aux_sym_preproc_warning_token1, - ACTIONS(17), 1, + ACTIONS(9091), 1, aux_sym_preproc_define_token1, - ACTIONS(19), 1, + ACTIONS(9093), 1, aux_sym_preproc_undef_token1, - ACTIONS(21), 1, + ACTIONS(9095), 1, sym_comment, - ACTIONS(9753), 1, - anon_sym_case, - ACTIONS(9755), 1, - anon_sym_default, - ACTIONS(9836), 1, - anon_sym_RBRACE, - STATE(6473), 1, - aux_sym_switch_body_repeat1, - STATE(6882), 1, - sym_switch_section, - STATE(6535), 9, + ACTIONS(9699), 1, + anon_sym_AMP_AMP, + ACTIONS(9701), 1, + anon_sym_PIPE_PIPE, + ACTIONS(9717), 1, + aux_sym_preproc_if_token2, + ACTIONS(9697), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + STATE(6466), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -741997,34 +738270,37 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [276056] = 12, - ACTIONS(3), 1, + [272756] = 15, + ACTIONS(9077), 1, aux_sym_preproc_region_token1, - ACTIONS(5), 1, + ACTIONS(9079), 1, aux_sym_preproc_endregion_token1, - ACTIONS(7), 1, + ACTIONS(9081), 1, aux_sym_preproc_line_token1, - ACTIONS(9), 1, + ACTIONS(9083), 1, aux_sym_preproc_pragma_token1, - ACTIONS(11), 1, + ACTIONS(9085), 1, aux_sym_preproc_nullable_token1, - ACTIONS(13), 1, + ACTIONS(9087), 1, aux_sym_preproc_error_token1, - ACTIONS(15), 1, + ACTIONS(9089), 1, aux_sym_preproc_warning_token1, - ACTIONS(17), 1, + ACTIONS(9091), 1, aux_sym_preproc_define_token1, - ACTIONS(19), 1, + ACTIONS(9093), 1, aux_sym_preproc_undef_token1, - ACTIONS(21), 1, + ACTIONS(9095), 1, sym_comment, - ACTIONS(9838), 5, - anon_sym_RPAREN, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, + ACTIONS(9699), 1, anon_sym_AMP_AMP, + ACTIONS(9701), 1, anon_sym_PIPE_PIPE, - STATE(6536), 9, + ACTIONS(9719), 1, + aux_sym_preproc_if_token2, + ACTIONS(9697), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + STATE(6467), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -742034,7 +738310,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [276105] = 15, + [272811] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -742055,16 +738331,16 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9339), 1, + ACTIONS(9320), 1, anon_sym_where, - STATE(6448), 1, + STATE(6404), 1, aux_sym__class_declaration_initializer_repeat4, - STATE(6641), 1, + STATE(6694), 1, sym_type_parameter_constraints_clause, - ACTIONS(9840), 2, + ACTIONS(9721), 2, anon_sym_SEMI, anon_sym_LBRACE, - STATE(6537), 9, + STATE(6468), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -742074,7 +738350,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [276160] = 15, + [272866] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -742095,16 +738371,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(7992), 1, - aux_sym_preproc_else_token1, - ACTIONS(7994), 1, - aux_sym_preproc_elif_token1, - ACTIONS(9842), 1, - aux_sym_preproc_if_token3, - STATE(7382), 2, - sym_preproc_else_in_enum_member_declaration, - sym_preproc_elif_in_enum_member_declaration, - STATE(6538), 9, + ACTIONS(9723), 5, + anon_sym_RPAREN, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + STATE(6469), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -742114,7 +738387,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [276215] = 15, + [272915] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -742135,16 +738408,16 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9339), 1, + ACTIONS(9320), 1, anon_sym_where, - STATE(6448), 1, + STATE(6404), 1, aux_sym__class_declaration_initializer_repeat4, - STATE(6641), 1, + STATE(6694), 1, sym_type_parameter_constraints_clause, - ACTIONS(9844), 2, + ACTIONS(9725), 2, anon_sym_SEMI, anon_sym_LBRACE, - STATE(6539), 9, + STATE(6470), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -742154,37 +738427,77 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [276270] = 15, - ACTIONS(9097), 1, + [272970] = 15, + ACTIONS(3), 1, aux_sym_preproc_region_token1, - ACTIONS(9099), 1, + ACTIONS(5), 1, aux_sym_preproc_endregion_token1, - ACTIONS(9101), 1, + ACTIONS(7), 1, aux_sym_preproc_line_token1, - ACTIONS(9103), 1, + ACTIONS(9), 1, aux_sym_preproc_pragma_token1, - ACTIONS(9105), 1, + ACTIONS(11), 1, aux_sym_preproc_nullable_token1, - ACTIONS(9107), 1, + ACTIONS(13), 1, aux_sym_preproc_error_token1, - ACTIONS(9109), 1, + ACTIONS(15), 1, aux_sym_preproc_warning_token1, - ACTIONS(9111), 1, + ACTIONS(17), 1, aux_sym_preproc_define_token1, - ACTIONS(9113), 1, + ACTIONS(19), 1, aux_sym_preproc_undef_token1, - ACTIONS(9115), 1, + ACTIONS(21), 1, sym_comment, - ACTIONS(9721), 1, + ACTIONS(9727), 1, + anon_sym_RPAREN, + ACTIONS(9731), 1, anon_sym_AMP_AMP, - ACTIONS(9723), 1, + ACTIONS(9733), 1, anon_sym_PIPE_PIPE, - ACTIONS(9846), 1, + ACTIONS(9729), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + STATE(6471), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + [273025] = 15, + ACTIONS(9077), 1, + aux_sym_preproc_region_token1, + ACTIONS(9079), 1, + aux_sym_preproc_endregion_token1, + ACTIONS(9081), 1, + aux_sym_preproc_line_token1, + ACTIONS(9083), 1, + aux_sym_preproc_pragma_token1, + ACTIONS(9085), 1, + aux_sym_preproc_nullable_token1, + ACTIONS(9087), 1, + aux_sym_preproc_error_token1, + ACTIONS(9089), 1, + aux_sym_preproc_warning_token1, + ACTIONS(9091), 1, + aux_sym_preproc_define_token1, + ACTIONS(9093), 1, + aux_sym_preproc_undef_token1, + ACTIONS(9095), 1, + sym_comment, + ACTIONS(9699), 1, + anon_sym_AMP_AMP, + ACTIONS(9701), 1, + anon_sym_PIPE_PIPE, + ACTIONS(9735), 1, aux_sym_preproc_if_token2, - ACTIONS(9719), 2, + ACTIONS(9697), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - STATE(6540), 9, + STATE(6472), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -742194,7 +738507,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [276325] = 16, + [273080] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -742215,17 +738528,16 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(5619), 1, - anon_sym_STAR, - ACTIONS(8916), 1, - anon_sym_LPAREN, - ACTIONS(9848), 1, + ACTIONS(9320), 1, + anon_sym_where, + STATE(6404), 1, + aux_sym__class_declaration_initializer_repeat4, + STATE(6694), 1, + sym_type_parameter_constraints_clause, + ACTIONS(9737), 2, + anon_sym_SEMI, anon_sym_LBRACE, - STATE(3884), 1, - sym_block, - STATE(7240), 1, - sym_parameter_list, - STATE(6541), 9, + STATE(6473), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -742235,35 +738547,37 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [276382] = 13, - ACTIONS(9097), 1, + [273135] = 15, + ACTIONS(3), 1, aux_sym_preproc_region_token1, - ACTIONS(9099), 1, + ACTIONS(5), 1, aux_sym_preproc_endregion_token1, - ACTIONS(9101), 1, + ACTIONS(7), 1, aux_sym_preproc_line_token1, - ACTIONS(9103), 1, + ACTIONS(9), 1, aux_sym_preproc_pragma_token1, - ACTIONS(9105), 1, + ACTIONS(11), 1, aux_sym_preproc_nullable_token1, - ACTIONS(9107), 1, + ACTIONS(13), 1, aux_sym_preproc_error_token1, - ACTIONS(9109), 1, + ACTIONS(15), 1, aux_sym_preproc_warning_token1, - ACTIONS(9111), 1, + ACTIONS(17), 1, aux_sym_preproc_define_token1, - ACTIONS(9113), 1, + ACTIONS(19), 1, aux_sym_preproc_undef_token1, - ACTIONS(9115), 1, + ACTIONS(21), 1, sym_comment, - ACTIONS(9852), 1, - aux_sym_preproc_if_token2, - ACTIONS(9850), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - STATE(6542), 9, + ACTIONS(9320), 1, + anon_sym_where, + STATE(6404), 1, + aux_sym__class_declaration_initializer_repeat4, + STATE(6694), 1, + sym_type_parameter_constraints_clause, + ACTIONS(9739), 2, + anon_sym_SEMI, + anon_sym_LBRACE, + STATE(6474), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -742273,7 +738587,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [276433] = 12, + [273190] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -742294,13 +738608,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9852), 5, - anon_sym_RPAREN, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - STATE(6543), 9, + ACTIONS(7912), 1, + anon_sym_DOT, + ACTIONS(9741), 4, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_where, + STATE(6475), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -742310,7 +738625,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [276482] = 16, + [273241] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -742331,17 +738646,16 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(5619), 1, - anon_sym_STAR, - ACTIONS(8916), 1, - anon_sym_LPAREN, - ACTIONS(9807), 1, + ACTIONS(9320), 1, + anon_sym_where, + STATE(6404), 1, + aux_sym__class_declaration_initializer_repeat4, + STATE(6694), 1, + sym_type_parameter_constraints_clause, + ACTIONS(9340), 2, + anon_sym_SEMI, anon_sym_LBRACE, - STATE(3431), 1, - sym_block, - STATE(7251), 1, - sym_parameter_list, - STATE(6544), 9, + STATE(6476), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -742351,37 +738665,34 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [276539] = 15, - ACTIONS(9097), 1, + [273296] = 13, + ACTIONS(3), 1, aux_sym_preproc_region_token1, - ACTIONS(9099), 1, + ACTIONS(5), 1, aux_sym_preproc_endregion_token1, - ACTIONS(9101), 1, + ACTIONS(7), 1, aux_sym_preproc_line_token1, - ACTIONS(9103), 1, + ACTIONS(9), 1, aux_sym_preproc_pragma_token1, - ACTIONS(9105), 1, + ACTIONS(11), 1, aux_sym_preproc_nullable_token1, - ACTIONS(9107), 1, + ACTIONS(13), 1, aux_sym_preproc_error_token1, - ACTIONS(9109), 1, + ACTIONS(15), 1, aux_sym_preproc_warning_token1, - ACTIONS(9111), 1, + ACTIONS(17), 1, aux_sym_preproc_define_token1, - ACTIONS(9113), 1, + ACTIONS(19), 1, aux_sym_preproc_undef_token1, - ACTIONS(9115), 1, - sym_comment, - ACTIONS(9721), 1, - anon_sym_AMP_AMP, - ACTIONS(9723), 1, - anon_sym_PIPE_PIPE, - ACTIONS(9854), 1, - aux_sym_preproc_if_token2, - ACTIONS(9719), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - STATE(6545), 9, + ACTIONS(21), 1, + sym_comment, + ACTIONS(9743), 1, + anon_sym_COMMA, + ACTIONS(9741), 3, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_where, + STATE(6477), 10, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -742391,37 +738702,38 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [276594] = 15, - ACTIONS(9097), 1, + aux_sym_record_base_repeat1, + [273347] = 15, + ACTIONS(9077), 1, aux_sym_preproc_region_token1, - ACTIONS(9099), 1, + ACTIONS(9079), 1, aux_sym_preproc_endregion_token1, - ACTIONS(9101), 1, + ACTIONS(9081), 1, aux_sym_preproc_line_token1, - ACTIONS(9103), 1, + ACTIONS(9083), 1, aux_sym_preproc_pragma_token1, - ACTIONS(9105), 1, + ACTIONS(9085), 1, aux_sym_preproc_nullable_token1, - ACTIONS(9107), 1, + ACTIONS(9087), 1, aux_sym_preproc_error_token1, - ACTIONS(9109), 1, + ACTIONS(9089), 1, aux_sym_preproc_warning_token1, - ACTIONS(9111), 1, + ACTIONS(9091), 1, aux_sym_preproc_define_token1, - ACTIONS(9113), 1, + ACTIONS(9093), 1, aux_sym_preproc_undef_token1, - ACTIONS(9115), 1, + ACTIONS(9095), 1, sym_comment, - ACTIONS(9721), 1, + ACTIONS(9699), 1, anon_sym_AMP_AMP, - ACTIONS(9723), 1, + ACTIONS(9701), 1, anon_sym_PIPE_PIPE, - ACTIONS(9856), 1, + ACTIONS(9746), 1, aux_sym_preproc_if_token2, - ACTIONS(9719), 2, + ACTIONS(9697), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - STATE(6546), 9, + STATE(6478), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -742431,37 +738743,38 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [276649] = 15, - ACTIONS(9097), 1, + [273402] = 16, + ACTIONS(3), 1, aux_sym_preproc_region_token1, - ACTIONS(9099), 1, + ACTIONS(5), 1, aux_sym_preproc_endregion_token1, - ACTIONS(9101), 1, + ACTIONS(7), 1, aux_sym_preproc_line_token1, - ACTIONS(9103), 1, + ACTIONS(9), 1, aux_sym_preproc_pragma_token1, - ACTIONS(9105), 1, + ACTIONS(11), 1, aux_sym_preproc_nullable_token1, - ACTIONS(9107), 1, + ACTIONS(13), 1, aux_sym_preproc_error_token1, - ACTIONS(9109), 1, + ACTIONS(15), 1, aux_sym_preproc_warning_token1, - ACTIONS(9111), 1, + ACTIONS(17), 1, aux_sym_preproc_define_token1, - ACTIONS(9113), 1, + ACTIONS(19), 1, aux_sym_preproc_undef_token1, - ACTIONS(9115), 1, + ACTIONS(21), 1, sym_comment, - ACTIONS(9721), 1, - anon_sym_AMP_AMP, - ACTIONS(9723), 1, - anon_sym_PIPE_PIPE, - ACTIONS(9858), 1, - aux_sym_preproc_if_token2, - ACTIONS(9719), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - STATE(6547), 9, + ACTIONS(9748), 1, + anon_sym_RBRACE, + ACTIONS(9750), 1, + anon_sym_case, + ACTIONS(9752), 1, + anon_sym_default, + STATE(6607), 1, + aux_sym_switch_body_repeat1, + STATE(6989), 1, + sym_switch_section, + STATE(6479), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -742471,37 +738784,37 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [276704] = 15, - ACTIONS(9097), 1, + [273459] = 15, + ACTIONS(3), 1, aux_sym_preproc_region_token1, - ACTIONS(9099), 1, + ACTIONS(5), 1, aux_sym_preproc_endregion_token1, - ACTIONS(9101), 1, + ACTIONS(7), 1, aux_sym_preproc_line_token1, - ACTIONS(9103), 1, + ACTIONS(9), 1, aux_sym_preproc_pragma_token1, - ACTIONS(9105), 1, + ACTIONS(11), 1, aux_sym_preproc_nullable_token1, - ACTIONS(9107), 1, + ACTIONS(13), 1, aux_sym_preproc_error_token1, - ACTIONS(9109), 1, + ACTIONS(15), 1, aux_sym_preproc_warning_token1, - ACTIONS(9111), 1, + ACTIONS(17), 1, aux_sym_preproc_define_token1, - ACTIONS(9113), 1, + ACTIONS(19), 1, aux_sym_preproc_undef_token1, - ACTIONS(9115), 1, + ACTIONS(21), 1, sym_comment, - ACTIONS(9721), 1, - anon_sym_AMP_AMP, - ACTIONS(9723), 1, - anon_sym_PIPE_PIPE, - ACTIONS(9860), 1, - aux_sym_preproc_if_token2, - ACTIONS(9719), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - STATE(6548), 9, + ACTIONS(9320), 1, + anon_sym_where, + STATE(6452), 1, + aux_sym__class_declaration_initializer_repeat4, + STATE(6694), 1, + sym_type_parameter_constraints_clause, + ACTIONS(9754), 2, + anon_sym_SEMI, + anon_sym_LBRACE, + STATE(6480), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -742511,7 +738824,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [276759] = 16, + [273514] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -742532,17 +738845,16 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9753), 1, - anon_sym_case, - ACTIONS(9755), 1, - anon_sym_default, - ACTIONS(9862), 1, - anon_sym_RBRACE, - STATE(6473), 1, - aux_sym_switch_body_repeat1, - STATE(6882), 1, - sym_switch_section, - STATE(6549), 9, + ACTIONS(9320), 1, + anon_sym_where, + STATE(6404), 1, + aux_sym__class_declaration_initializer_repeat4, + STATE(6694), 1, + sym_type_parameter_constraints_clause, + ACTIONS(9754), 2, + anon_sym_SEMI, + anon_sym_LBRACE, + STATE(6481), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -742552,35 +738864,35 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [276816] = 13, - ACTIONS(5016), 1, - aux_sym_preproc_if_token2, - ACTIONS(9097), 1, + [273569] = 13, + ACTIONS(9077), 1, aux_sym_preproc_region_token1, - ACTIONS(9099), 1, + ACTIONS(9079), 1, aux_sym_preproc_endregion_token1, - ACTIONS(9101), 1, + ACTIONS(9081), 1, aux_sym_preproc_line_token1, - ACTIONS(9103), 1, + ACTIONS(9083), 1, aux_sym_preproc_pragma_token1, - ACTIONS(9105), 1, + ACTIONS(9085), 1, aux_sym_preproc_nullable_token1, - ACTIONS(9107), 1, + ACTIONS(9087), 1, aux_sym_preproc_error_token1, - ACTIONS(9109), 1, + ACTIONS(9089), 1, aux_sym_preproc_warning_token1, - ACTIONS(9111), 1, + ACTIONS(9091), 1, aux_sym_preproc_define_token1, - ACTIONS(9113), 1, + ACTIONS(9093), 1, aux_sym_preproc_undef_token1, - ACTIONS(9115), 1, + ACTIONS(9095), 1, sym_comment, - ACTIONS(5018), 4, + ACTIONS(9758), 1, + aux_sym_preproc_if_token2, + ACTIONS(9756), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - STATE(6550), 9, + STATE(6482), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -742590,37 +738902,37 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [276867] = 15, - ACTIONS(9097), 1, + [273620] = 15, + ACTIONS(9077), 1, aux_sym_preproc_region_token1, - ACTIONS(9099), 1, + ACTIONS(9079), 1, aux_sym_preproc_endregion_token1, - ACTIONS(9101), 1, + ACTIONS(9081), 1, aux_sym_preproc_line_token1, - ACTIONS(9103), 1, + ACTIONS(9083), 1, aux_sym_preproc_pragma_token1, - ACTIONS(9105), 1, + ACTIONS(9085), 1, aux_sym_preproc_nullable_token1, - ACTIONS(9107), 1, + ACTIONS(9087), 1, aux_sym_preproc_error_token1, - ACTIONS(9109), 1, + ACTIONS(9089), 1, aux_sym_preproc_warning_token1, - ACTIONS(9111), 1, + ACTIONS(9091), 1, aux_sym_preproc_define_token1, - ACTIONS(9113), 1, + ACTIONS(9093), 1, aux_sym_preproc_undef_token1, - ACTIONS(9115), 1, + ACTIONS(9095), 1, sym_comment, - ACTIONS(9721), 1, + ACTIONS(9699), 1, anon_sym_AMP_AMP, - ACTIONS(9723), 1, + ACTIONS(9701), 1, anon_sym_PIPE_PIPE, - ACTIONS(9864), 1, + ACTIONS(9760), 1, aux_sym_preproc_if_token2, - ACTIONS(9719), 2, + ACTIONS(9697), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - STATE(6551), 9, + STATE(6483), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -742630,37 +738942,38 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [276922] = 15, - ACTIONS(9097), 1, + [273675] = 16, + ACTIONS(3), 1, aux_sym_preproc_region_token1, - ACTIONS(9099), 1, + ACTIONS(5), 1, aux_sym_preproc_endregion_token1, - ACTIONS(9101), 1, + ACTIONS(7), 1, aux_sym_preproc_line_token1, - ACTIONS(9103), 1, + ACTIONS(9), 1, aux_sym_preproc_pragma_token1, - ACTIONS(9105), 1, + ACTIONS(11), 1, aux_sym_preproc_nullable_token1, - ACTIONS(9107), 1, + ACTIONS(13), 1, aux_sym_preproc_error_token1, - ACTIONS(9109), 1, + ACTIONS(15), 1, aux_sym_preproc_warning_token1, - ACTIONS(9111), 1, + ACTIONS(17), 1, aux_sym_preproc_define_token1, - ACTIONS(9113), 1, + ACTIONS(19), 1, aux_sym_preproc_undef_token1, - ACTIONS(9115), 1, + ACTIONS(21), 1, sym_comment, - ACTIONS(9721), 1, - anon_sym_AMP_AMP, - ACTIONS(9723), 1, - anon_sym_PIPE_PIPE, - ACTIONS(9866), 1, - aux_sym_preproc_if_token2, - ACTIONS(9719), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - STATE(6552), 9, + ACTIONS(5575), 1, + anon_sym_STAR, + ACTIONS(8892), 1, + anon_sym_LPAREN, + ACTIONS(9762), 1, + anon_sym_LBRACE, + STATE(3456), 1, + sym_block, + STATE(7032), 1, + sym_parameter_list, + STATE(6484), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -742670,37 +738983,37 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [276977] = 15, - ACTIONS(9097), 1, + [273732] = 15, + ACTIONS(9077), 1, aux_sym_preproc_region_token1, - ACTIONS(9099), 1, + ACTIONS(9079), 1, aux_sym_preproc_endregion_token1, - ACTIONS(9101), 1, + ACTIONS(9081), 1, aux_sym_preproc_line_token1, - ACTIONS(9103), 1, + ACTIONS(9083), 1, aux_sym_preproc_pragma_token1, - ACTIONS(9105), 1, + ACTIONS(9085), 1, aux_sym_preproc_nullable_token1, - ACTIONS(9107), 1, + ACTIONS(9087), 1, aux_sym_preproc_error_token1, - ACTIONS(9109), 1, + ACTIONS(9089), 1, aux_sym_preproc_warning_token1, - ACTIONS(9111), 1, + ACTIONS(9091), 1, aux_sym_preproc_define_token1, - ACTIONS(9113), 1, + ACTIONS(9093), 1, aux_sym_preproc_undef_token1, - ACTIONS(9115), 1, + ACTIONS(9095), 1, sym_comment, - ACTIONS(9721), 1, + ACTIONS(9699), 1, anon_sym_AMP_AMP, - ACTIONS(9723), 1, + ACTIONS(9701), 1, anon_sym_PIPE_PIPE, - ACTIONS(9868), 1, + ACTIONS(9764), 1, aux_sym_preproc_if_token2, - ACTIONS(9719), 2, + ACTIONS(9697), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - STATE(6553), 9, + STATE(6485), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -742710,7 +739023,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [277032] = 14, + [273787] = 16, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -742731,15 +739044,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9834), 1, - anon_sym_COLON, - STATE(6737), 1, - sym_constructor_initializer, - ACTIONS(9870), 3, - anon_sym_SEMI, - anon_sym_LBRACE, + ACTIONS(3651), 1, anon_sym_EQ_GT, - STATE(6554), 9, + ACTIONS(8892), 1, + anon_sym_LPAREN, + ACTIONS(9318), 1, + anon_sym_LT, + STATE(6648), 1, + sym_parameter_list, + STATE(7180), 1, + sym_type_parameter_list, + STATE(6486), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -742749,38 +739064,37 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [277085] = 16, - ACTIONS(3), 1, + [273844] = 15, + ACTIONS(9077), 1, aux_sym_preproc_region_token1, - ACTIONS(5), 1, + ACTIONS(9079), 1, aux_sym_preproc_endregion_token1, - ACTIONS(7), 1, + ACTIONS(9081), 1, aux_sym_preproc_line_token1, - ACTIONS(9), 1, + ACTIONS(9083), 1, aux_sym_preproc_pragma_token1, - ACTIONS(11), 1, + ACTIONS(9085), 1, aux_sym_preproc_nullable_token1, - ACTIONS(13), 1, + ACTIONS(9087), 1, aux_sym_preproc_error_token1, - ACTIONS(15), 1, + ACTIONS(9089), 1, aux_sym_preproc_warning_token1, - ACTIONS(17), 1, + ACTIONS(9091), 1, aux_sym_preproc_define_token1, - ACTIONS(19), 1, + ACTIONS(9093), 1, aux_sym_preproc_undef_token1, - ACTIONS(21), 1, + ACTIONS(9095), 1, sym_comment, - ACTIONS(9711), 1, - anon_sym_and, - ACTIONS(9713), 1, - anon_sym_or, - ACTIONS(9872), 1, - anon_sym_COMMA, - ACTIONS(9874), 1, - anon_sym_RBRACK, - STATE(6792), 1, - aux_sym_list_pattern_repeat1, - STATE(6555), 9, + ACTIONS(9699), 1, + anon_sym_AMP_AMP, + ACTIONS(9701), 1, + anon_sym_PIPE_PIPE, + ACTIONS(9766), 1, + aux_sym_preproc_if_token2, + ACTIONS(9697), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + STATE(6487), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -742790,35 +739104,35 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [277142] = 13, - ACTIONS(9097), 1, + [273899] = 13, + ACTIONS(9077), 1, aux_sym_preproc_region_token1, - ACTIONS(9099), 1, + ACTIONS(9079), 1, aux_sym_preproc_endregion_token1, - ACTIONS(9101), 1, + ACTIONS(9081), 1, aux_sym_preproc_line_token1, - ACTIONS(9103), 1, + ACTIONS(9083), 1, aux_sym_preproc_pragma_token1, - ACTIONS(9105), 1, + ACTIONS(9085), 1, aux_sym_preproc_nullable_token1, - ACTIONS(9107), 1, + ACTIONS(9087), 1, aux_sym_preproc_error_token1, - ACTIONS(9109), 1, + ACTIONS(9089), 1, aux_sym_preproc_warning_token1, - ACTIONS(9111), 1, + ACTIONS(9091), 1, aux_sym_preproc_define_token1, - ACTIONS(9113), 1, + ACTIONS(9093), 1, aux_sym_preproc_undef_token1, - ACTIONS(9115), 1, + ACTIONS(9095), 1, sym_comment, - ACTIONS(9878), 1, + ACTIONS(9770), 1, aux_sym_preproc_if_token2, - ACTIONS(9876), 4, + ACTIONS(9768), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - STATE(6556), 9, + STATE(6488), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -742828,7 +739142,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [277193] = 15, + [273950] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -742849,16 +739163,16 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4705), 1, - aux_sym_preproc_else_token1, - ACTIONS(4707), 1, - aux_sym_preproc_elif_token1, - ACTIONS(9880), 1, - aux_sym_preproc_if_token3, - STATE(7750), 2, - sym_preproc_else_in_attribute_list, - sym_preproc_elif_in_attribute_list, - STATE(6557), 9, + ACTIONS(9320), 1, + anon_sym_where, + STATE(6404), 1, + aux_sym__class_declaration_initializer_repeat4, + STATE(6694), 1, + sym_type_parameter_constraints_clause, + ACTIONS(9772), 2, + anon_sym_SEMI, + anon_sym_LBRACE, + STATE(6489), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -742868,7 +739182,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [277248] = 13, + [274005] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -742889,14 +739203,16 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9729), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(9838), 3, - anon_sym_RPAREN, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - STATE(6558), 9, + ACTIONS(4671), 1, + aux_sym_preproc_else_token1, + ACTIONS(4673), 1, + aux_sym_preproc_elif_token1, + ACTIONS(8541), 1, + aux_sym_preproc_if_token3, + STATE(7477), 2, + sym_preproc_else_in_attribute_list, + sym_preproc_elif_in_attribute_list, + STATE(6490), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -742906,37 +739222,37 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [277299] = 15, - ACTIONS(9097), 1, + [274060] = 15, + ACTIONS(9077), 1, aux_sym_preproc_region_token1, - ACTIONS(9099), 1, + ACTIONS(9079), 1, aux_sym_preproc_endregion_token1, - ACTIONS(9101), 1, + ACTIONS(9081), 1, aux_sym_preproc_line_token1, - ACTIONS(9103), 1, + ACTIONS(9083), 1, aux_sym_preproc_pragma_token1, - ACTIONS(9105), 1, + ACTIONS(9085), 1, aux_sym_preproc_nullable_token1, - ACTIONS(9107), 1, + ACTIONS(9087), 1, aux_sym_preproc_error_token1, - ACTIONS(9109), 1, + ACTIONS(9089), 1, aux_sym_preproc_warning_token1, - ACTIONS(9111), 1, + ACTIONS(9091), 1, aux_sym_preproc_define_token1, - ACTIONS(9113), 1, + ACTIONS(9093), 1, aux_sym_preproc_undef_token1, - ACTIONS(9115), 1, + ACTIONS(9095), 1, sym_comment, - ACTIONS(9721), 1, + ACTIONS(9699), 1, anon_sym_AMP_AMP, - ACTIONS(9723), 1, + ACTIONS(9701), 1, anon_sym_PIPE_PIPE, - ACTIONS(9882), 1, + ACTIONS(9774), 1, aux_sym_preproc_if_token2, - ACTIONS(9719), 2, + ACTIONS(9697), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - STATE(6559), 9, + STATE(6491), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -742946,36 +739262,37 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [277354] = 14, - ACTIONS(3), 1, + [274115] = 15, + ACTIONS(9077), 1, aux_sym_preproc_region_token1, - ACTIONS(5), 1, + ACTIONS(9079), 1, aux_sym_preproc_endregion_token1, - ACTIONS(7), 1, + ACTIONS(9081), 1, aux_sym_preproc_line_token1, - ACTIONS(9), 1, + ACTIONS(9083), 1, aux_sym_preproc_pragma_token1, - ACTIONS(11), 1, + ACTIONS(9085), 1, aux_sym_preproc_nullable_token1, - ACTIONS(13), 1, + ACTIONS(9087), 1, aux_sym_preproc_error_token1, - ACTIONS(15), 1, + ACTIONS(9089), 1, aux_sym_preproc_warning_token1, - ACTIONS(17), 1, + ACTIONS(9091), 1, aux_sym_preproc_define_token1, - ACTIONS(19), 1, + ACTIONS(9093), 1, aux_sym_preproc_undef_token1, - ACTIONS(21), 1, + ACTIONS(9095), 1, sym_comment, - ACTIONS(9731), 1, + ACTIONS(9699), 1, anon_sym_AMP_AMP, - ACTIONS(9729), 2, + ACTIONS(9701), 1, + anon_sym_PIPE_PIPE, + ACTIONS(9776), 1, + aux_sym_preproc_if_token2, + ACTIONS(9697), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(9838), 2, - anon_sym_RPAREN, - anon_sym_PIPE_PIPE, - STATE(6560), 9, + STATE(6492), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -742985,37 +739302,37 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [277407] = 15, - ACTIONS(3), 1, + [274170] = 15, + ACTIONS(9077), 1, aux_sym_preproc_region_token1, - ACTIONS(5), 1, + ACTIONS(9079), 1, aux_sym_preproc_endregion_token1, - ACTIONS(7), 1, + ACTIONS(9081), 1, aux_sym_preproc_line_token1, - ACTIONS(9), 1, + ACTIONS(9083), 1, aux_sym_preproc_pragma_token1, - ACTIONS(11), 1, + ACTIONS(9085), 1, aux_sym_preproc_nullable_token1, - ACTIONS(13), 1, + ACTIONS(9087), 1, aux_sym_preproc_error_token1, - ACTIONS(15), 1, + ACTIONS(9089), 1, aux_sym_preproc_warning_token1, - ACTIONS(17), 1, + ACTIONS(9091), 1, aux_sym_preproc_define_token1, - ACTIONS(19), 1, + ACTIONS(9093), 1, aux_sym_preproc_undef_token1, - ACTIONS(21), 1, + ACTIONS(9095), 1, sym_comment, - ACTIONS(4705), 1, - aux_sym_preproc_else_token1, - ACTIONS(4707), 1, - aux_sym_preproc_elif_token1, - ACTIONS(8448), 1, - aux_sym_preproc_if_token3, - STATE(7328), 2, - sym_preproc_else_in_attribute_list, - sym_preproc_elif_in_attribute_list, - STATE(6561), 9, + ACTIONS(9699), 1, + anon_sym_AMP_AMP, + ACTIONS(9701), 1, + anon_sym_PIPE_PIPE, + ACTIONS(9778), 1, + aux_sym_preproc_if_token2, + ACTIONS(9697), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + STATE(6493), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -743025,38 +739342,37 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [277462] = 16, - ACTIONS(3), 1, + [274225] = 15, + ACTIONS(9077), 1, aux_sym_preproc_region_token1, - ACTIONS(5), 1, + ACTIONS(9079), 1, aux_sym_preproc_endregion_token1, - ACTIONS(7), 1, + ACTIONS(9081), 1, aux_sym_preproc_line_token1, - ACTIONS(9), 1, + ACTIONS(9083), 1, aux_sym_preproc_pragma_token1, - ACTIONS(11), 1, + ACTIONS(9085), 1, aux_sym_preproc_nullable_token1, - ACTIONS(13), 1, + ACTIONS(9087), 1, aux_sym_preproc_error_token1, - ACTIONS(15), 1, + ACTIONS(9089), 1, aux_sym_preproc_warning_token1, - ACTIONS(17), 1, + ACTIONS(9091), 1, aux_sym_preproc_define_token1, - ACTIONS(19), 1, + ACTIONS(9093), 1, aux_sym_preproc_undef_token1, - ACTIONS(21), 1, + ACTIONS(9095), 1, sym_comment, - ACTIONS(9753), 1, - anon_sym_case, - ACTIONS(9755), 1, - anon_sym_default, - ACTIONS(9884), 1, - anon_sym_RBRACE, - STATE(6535), 1, - aux_sym_switch_body_repeat1, - STATE(6882), 1, - sym_switch_section, - STATE(6562), 9, + ACTIONS(9699), 1, + anon_sym_AMP_AMP, + ACTIONS(9701), 1, + anon_sym_PIPE_PIPE, + ACTIONS(9780), 1, + aux_sym_preproc_if_token2, + ACTIONS(9697), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + STATE(6494), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -743066,37 +739382,37 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [277519] = 15, - ACTIONS(3), 1, + [274280] = 15, + ACTIONS(9077), 1, aux_sym_preproc_region_token1, - ACTIONS(5), 1, + ACTIONS(9079), 1, aux_sym_preproc_endregion_token1, - ACTIONS(7), 1, + ACTIONS(9081), 1, aux_sym_preproc_line_token1, - ACTIONS(9), 1, + ACTIONS(9083), 1, aux_sym_preproc_pragma_token1, - ACTIONS(11), 1, + ACTIONS(9085), 1, aux_sym_preproc_nullable_token1, - ACTIONS(13), 1, + ACTIONS(9087), 1, aux_sym_preproc_error_token1, - ACTIONS(15), 1, + ACTIONS(9089), 1, aux_sym_preproc_warning_token1, - ACTIONS(17), 1, + ACTIONS(9091), 1, aux_sym_preproc_define_token1, - ACTIONS(19), 1, + ACTIONS(9093), 1, aux_sym_preproc_undef_token1, - ACTIONS(21), 1, + ACTIONS(9095), 1, sym_comment, - ACTIONS(4705), 1, - aux_sym_preproc_else_token1, - ACTIONS(4707), 1, - aux_sym_preproc_elif_token1, - ACTIONS(8922), 1, - aux_sym_preproc_if_token3, - STATE(7378), 2, - sym_preproc_else_in_attribute_list, - sym_preproc_elif_in_attribute_list, - STATE(6563), 9, + ACTIONS(9699), 1, + anon_sym_AMP_AMP, + ACTIONS(9701), 1, + anon_sym_PIPE_PIPE, + ACTIONS(9782), 1, + aux_sym_preproc_if_token2, + ACTIONS(9697), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + STATE(6495), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -743106,34 +739422,35 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [277574] = 12, - ACTIONS(3), 1, + [274335] = 13, + ACTIONS(9077), 1, aux_sym_preproc_region_token1, - ACTIONS(5), 1, + ACTIONS(9079), 1, aux_sym_preproc_endregion_token1, - ACTIONS(7), 1, + ACTIONS(9081), 1, aux_sym_preproc_line_token1, - ACTIONS(9), 1, + ACTIONS(9083), 1, aux_sym_preproc_pragma_token1, - ACTIONS(11), 1, + ACTIONS(9085), 1, aux_sym_preproc_nullable_token1, - ACTIONS(13), 1, + ACTIONS(9087), 1, aux_sym_preproc_error_token1, - ACTIONS(15), 1, + ACTIONS(9089), 1, aux_sym_preproc_warning_token1, - ACTIONS(17), 1, + ACTIONS(9091), 1, aux_sym_preproc_define_token1, - ACTIONS(19), 1, + ACTIONS(9093), 1, aux_sym_preproc_undef_token1, - ACTIONS(21), 1, + ACTIONS(9095), 1, sym_comment, - ACTIONS(9737), 5, - anon_sym_RPAREN, + ACTIONS(9786), 1, + aux_sym_preproc_if_token2, + ACTIONS(9784), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - STATE(6564), 9, + STATE(6496), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -743143,7 +739460,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [277623] = 15, + [274386] = 16, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -743164,16 +739481,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4703), 1, - aux_sym_preproc_if_token3, - ACTIONS(4705), 1, - aux_sym_preproc_else_token1, - ACTIONS(4707), 1, - aux_sym_preproc_elif_token1, - STATE(7379), 2, - sym_preproc_else_in_attribute_list, - sym_preproc_elif_in_attribute_list, - STATE(6565), 9, + ACTIONS(5575), 1, + anon_sym_STAR, + ACTIONS(8892), 1, + anon_sym_LPAREN, + ACTIONS(9788), 1, + anon_sym_LBRACE, + STATE(4604), 1, + sym_block, + STATE(7136), 1, + sym_parameter_list, + STATE(6497), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -743183,36 +739501,36 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [277678] = 14, - ACTIONS(3), 1, + [274443] = 14, + ACTIONS(9077), 1, aux_sym_preproc_region_token1, - ACTIONS(5), 1, + ACTIONS(9079), 1, aux_sym_preproc_endregion_token1, - ACTIONS(7), 1, + ACTIONS(9081), 1, aux_sym_preproc_line_token1, - ACTIONS(9), 1, + ACTIONS(9083), 1, aux_sym_preproc_pragma_token1, - ACTIONS(11), 1, + ACTIONS(9085), 1, aux_sym_preproc_nullable_token1, - ACTIONS(13), 1, + ACTIONS(9087), 1, aux_sym_preproc_error_token1, - ACTIONS(15), 1, + ACTIONS(9089), 1, aux_sym_preproc_warning_token1, - ACTIONS(17), 1, + ACTIONS(9091), 1, aux_sym_preproc_define_token1, - ACTIONS(19), 1, + ACTIONS(9093), 1, aux_sym_preproc_undef_token1, - ACTIONS(21), 1, + ACTIONS(9095), 1, sym_comment, - ACTIONS(9454), 1, - anon_sym_COMMA, - STATE(6529), 1, - aux_sym_record_base_repeat1, - ACTIONS(9886), 3, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_where, - STATE(6566), 9, + ACTIONS(9786), 1, + aux_sym_preproc_if_token2, + ACTIONS(9697), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(9784), 2, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + STATE(6498), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -743222,37 +739540,37 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [277731] = 15, - ACTIONS(9097), 1, + [274496] = 15, + ACTIONS(9077), 1, aux_sym_preproc_region_token1, - ACTIONS(9099), 1, + ACTIONS(9079), 1, aux_sym_preproc_endregion_token1, - ACTIONS(9101), 1, + ACTIONS(9081), 1, aux_sym_preproc_line_token1, - ACTIONS(9103), 1, + ACTIONS(9083), 1, aux_sym_preproc_pragma_token1, - ACTIONS(9105), 1, + ACTIONS(9085), 1, aux_sym_preproc_nullable_token1, - ACTIONS(9107), 1, + ACTIONS(9087), 1, aux_sym_preproc_error_token1, - ACTIONS(9109), 1, + ACTIONS(9089), 1, aux_sym_preproc_warning_token1, - ACTIONS(9111), 1, + ACTIONS(9091), 1, aux_sym_preproc_define_token1, - ACTIONS(9113), 1, + ACTIONS(9093), 1, aux_sym_preproc_undef_token1, - ACTIONS(9115), 1, + ACTIONS(9095), 1, sym_comment, - ACTIONS(9721), 1, + ACTIONS(9699), 1, anon_sym_AMP_AMP, - ACTIONS(9723), 1, + ACTIONS(9701), 1, anon_sym_PIPE_PIPE, - ACTIONS(9888), 1, + ACTIONS(9790), 1, aux_sym_preproc_if_token2, - ACTIONS(9719), 2, + ACTIONS(9697), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - STATE(6567), 9, + STATE(6499), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -743262,34 +739580,37 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [277786] = 12, - ACTIONS(3), 1, + [274551] = 15, + ACTIONS(9077), 1, aux_sym_preproc_region_token1, - ACTIONS(5), 1, + ACTIONS(9079), 1, aux_sym_preproc_endregion_token1, - ACTIONS(7), 1, + ACTIONS(9081), 1, aux_sym_preproc_line_token1, - ACTIONS(9), 1, + ACTIONS(9083), 1, aux_sym_preproc_pragma_token1, - ACTIONS(11), 1, + ACTIONS(9085), 1, aux_sym_preproc_nullable_token1, - ACTIONS(13), 1, + ACTIONS(9087), 1, aux_sym_preproc_error_token1, - ACTIONS(15), 1, + ACTIONS(9089), 1, aux_sym_preproc_warning_token1, - ACTIONS(17), 1, + ACTIONS(9091), 1, aux_sym_preproc_define_token1, - ACTIONS(19), 1, + ACTIONS(9093), 1, aux_sym_preproc_undef_token1, - ACTIONS(21), 1, + ACTIONS(9095), 1, sym_comment, - ACTIONS(9670), 5, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_LBRACE, - anon_sym_where, - anon_sym_EQ_GT, - STATE(6568), 9, + ACTIONS(9699), 1, + anon_sym_AMP_AMP, + ACTIONS(9784), 1, + anon_sym_PIPE_PIPE, + ACTIONS(9786), 1, + aux_sym_preproc_if_token2, + ACTIONS(9697), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + STATE(6500), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -743299,34 +739620,37 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [277835] = 12, - ACTIONS(3), 1, + [274606] = 15, + ACTIONS(9077), 1, aux_sym_preproc_region_token1, - ACTIONS(5), 1, + ACTIONS(9079), 1, aux_sym_preproc_endregion_token1, - ACTIONS(7), 1, + ACTIONS(9081), 1, aux_sym_preproc_line_token1, - ACTIONS(9), 1, + ACTIONS(9083), 1, aux_sym_preproc_pragma_token1, - ACTIONS(11), 1, + ACTIONS(9085), 1, aux_sym_preproc_nullable_token1, - ACTIONS(13), 1, + ACTIONS(9087), 1, aux_sym_preproc_error_token1, - ACTIONS(15), 1, + ACTIONS(9089), 1, aux_sym_preproc_warning_token1, - ACTIONS(17), 1, + ACTIONS(9091), 1, aux_sym_preproc_define_token1, - ACTIONS(19), 1, + ACTIONS(9093), 1, aux_sym_preproc_undef_token1, - ACTIONS(21), 1, + ACTIONS(9095), 1, sym_comment, - ACTIONS(9878), 5, - anon_sym_RPAREN, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, + ACTIONS(9699), 1, anon_sym_AMP_AMP, + ACTIONS(9701), 1, anon_sym_PIPE_PIPE, - STATE(6569), 9, + ACTIONS(9792), 1, + aux_sym_preproc_if_token2, + ACTIONS(9697), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + STATE(6501), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -743336,7 +739660,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [277884] = 12, + [274661] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -743357,13 +739681,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9890), 5, + ACTIONS(9715), 1, + anon_sym_COLON, + STATE(6833), 1, + sym_constructor_initializer, + ACTIONS(9794), 3, anon_sym_SEMI, - anon_sym_COMMA, anon_sym_LBRACE, - anon_sym_where, anon_sym_EQ_GT, - STATE(6570), 9, + STATE(6502), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -743373,37 +739699,37 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [277933] = 15, - ACTIONS(9097), 1, + [274714] = 15, + ACTIONS(3), 1, aux_sym_preproc_region_token1, - ACTIONS(9099), 1, + ACTIONS(5), 1, aux_sym_preproc_endregion_token1, - ACTIONS(9101), 1, + ACTIONS(7), 1, aux_sym_preproc_line_token1, - ACTIONS(9103), 1, + ACTIONS(9), 1, aux_sym_preproc_pragma_token1, - ACTIONS(9105), 1, + ACTIONS(11), 1, aux_sym_preproc_nullable_token1, - ACTIONS(9107), 1, + ACTIONS(13), 1, aux_sym_preproc_error_token1, - ACTIONS(9109), 1, + ACTIONS(15), 1, aux_sym_preproc_warning_token1, - ACTIONS(9111), 1, + ACTIONS(17), 1, aux_sym_preproc_define_token1, - ACTIONS(9113), 1, + ACTIONS(19), 1, aux_sym_preproc_undef_token1, - ACTIONS(9115), 1, + ACTIONS(21), 1, sym_comment, - ACTIONS(9721), 1, - anon_sym_AMP_AMP, - ACTIONS(9723), 1, - anon_sym_PIPE_PIPE, - ACTIONS(9892), 1, - aux_sym_preproc_if_token2, - ACTIONS(9719), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - STATE(6571), 9, + ACTIONS(7912), 1, + anon_sym_DOT, + ACTIONS(9796), 1, + anon_sym_LPAREN, + STATE(7155), 1, + sym_attribute_argument_list, + ACTIONS(8866), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + STATE(6503), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -743413,7 +739739,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [277988] = 14, + [274769] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -743434,15 +739760,16 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(5264), 1, - anon_sym_LPAREN, - STATE(6413), 1, - sym_argument_list, - ACTIONS(9491), 3, + ACTIONS(5549), 1, + anon_sym_LBRACK, + ACTIONS(9800), 1, + anon_sym_EQ, + STATE(6874), 1, + sym_bracketed_argument_list, + ACTIONS(9798), 2, + anon_sym_SEMI, anon_sym_COMMA, - anon_sym_LBRACE, - anon_sym_where, - STATE(6572), 9, + STATE(6504), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -743452,37 +739779,37 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [278041] = 15, - ACTIONS(9097), 1, + [274824] = 15, + ACTIONS(3), 1, aux_sym_preproc_region_token1, - ACTIONS(9099), 1, + ACTIONS(5), 1, aux_sym_preproc_endregion_token1, - ACTIONS(9101), 1, + ACTIONS(7), 1, aux_sym_preproc_line_token1, - ACTIONS(9103), 1, + ACTIONS(9), 1, aux_sym_preproc_pragma_token1, - ACTIONS(9105), 1, + ACTIONS(11), 1, aux_sym_preproc_nullable_token1, - ACTIONS(9107), 1, + ACTIONS(13), 1, aux_sym_preproc_error_token1, - ACTIONS(9109), 1, + ACTIONS(15), 1, aux_sym_preproc_warning_token1, - ACTIONS(9111), 1, + ACTIONS(17), 1, aux_sym_preproc_define_token1, - ACTIONS(9113), 1, + ACTIONS(19), 1, aux_sym_preproc_undef_token1, - ACTIONS(9115), 1, + ACTIONS(21), 1, sym_comment, - ACTIONS(9721), 1, - anon_sym_AMP_AMP, - ACTIONS(9723), 1, - anon_sym_PIPE_PIPE, - ACTIONS(9894), 1, - aux_sym_preproc_if_token2, - ACTIONS(9719), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - STATE(6573), 9, + ACTIONS(9320), 1, + anon_sym_where, + STATE(6599), 1, + aux_sym__class_declaration_initializer_repeat4, + STATE(6694), 1, + sym_type_parameter_constraints_clause, + ACTIONS(9772), 2, + anon_sym_SEMI, + anon_sym_LBRACE, + STATE(6505), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -743492,37 +739819,37 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [278096] = 15, - ACTIONS(9097), 1, + [274879] = 15, + ACTIONS(9077), 1, aux_sym_preproc_region_token1, - ACTIONS(9099), 1, + ACTIONS(9079), 1, aux_sym_preproc_endregion_token1, - ACTIONS(9101), 1, + ACTIONS(9081), 1, aux_sym_preproc_line_token1, - ACTIONS(9103), 1, + ACTIONS(9083), 1, aux_sym_preproc_pragma_token1, - ACTIONS(9105), 1, + ACTIONS(9085), 1, aux_sym_preproc_nullable_token1, - ACTIONS(9107), 1, + ACTIONS(9087), 1, aux_sym_preproc_error_token1, - ACTIONS(9109), 1, + ACTIONS(9089), 1, aux_sym_preproc_warning_token1, - ACTIONS(9111), 1, + ACTIONS(9091), 1, aux_sym_preproc_define_token1, - ACTIONS(9113), 1, + ACTIONS(9093), 1, aux_sym_preproc_undef_token1, - ACTIONS(9115), 1, + ACTIONS(9095), 1, sym_comment, - ACTIONS(9721), 1, + ACTIONS(9699), 1, anon_sym_AMP_AMP, - ACTIONS(9723), 1, + ACTIONS(9701), 1, anon_sym_PIPE_PIPE, - ACTIONS(9896), 1, + ACTIONS(9802), 1, aux_sym_preproc_if_token2, - ACTIONS(9719), 2, + ACTIONS(9697), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - STATE(6574), 9, + STATE(6506), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -743532,37 +739859,37 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [278151] = 15, - ACTIONS(3), 1, + [274934] = 15, + ACTIONS(9077), 1, aux_sym_preproc_region_token1, - ACTIONS(5), 1, + ACTIONS(9079), 1, aux_sym_preproc_endregion_token1, - ACTIONS(7), 1, + ACTIONS(9081), 1, aux_sym_preproc_line_token1, - ACTIONS(9), 1, + ACTIONS(9083), 1, aux_sym_preproc_pragma_token1, - ACTIONS(11), 1, + ACTIONS(9085), 1, aux_sym_preproc_nullable_token1, - ACTIONS(13), 1, + ACTIONS(9087), 1, aux_sym_preproc_error_token1, - ACTIONS(15), 1, + ACTIONS(9089), 1, aux_sym_preproc_warning_token1, - ACTIONS(17), 1, + ACTIONS(9091), 1, aux_sym_preproc_define_token1, - ACTIONS(19), 1, + ACTIONS(9093), 1, aux_sym_preproc_undef_token1, - ACTIONS(21), 1, + ACTIONS(9095), 1, sym_comment, - ACTIONS(9339), 1, - anon_sym_where, - STATE(6448), 1, - aux_sym__class_declaration_initializer_repeat4, - STATE(6641), 1, - sym_type_parameter_constraints_clause, - ACTIONS(9898), 2, - anon_sym_SEMI, - anon_sym_LBRACE, - STATE(6575), 9, + ACTIONS(9699), 1, + anon_sym_AMP_AMP, + ACTIONS(9701), 1, + anon_sym_PIPE_PIPE, + ACTIONS(9804), 1, + aux_sym_preproc_if_token2, + ACTIONS(9697), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + STATE(6507), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -743572,37 +739899,37 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [278206] = 15, - ACTIONS(9097), 1, + [274989] = 15, + ACTIONS(9077), 1, aux_sym_preproc_region_token1, - ACTIONS(9099), 1, + ACTIONS(9079), 1, aux_sym_preproc_endregion_token1, - ACTIONS(9101), 1, + ACTIONS(9081), 1, aux_sym_preproc_line_token1, - ACTIONS(9103), 1, + ACTIONS(9083), 1, aux_sym_preproc_pragma_token1, - ACTIONS(9105), 1, + ACTIONS(9085), 1, aux_sym_preproc_nullable_token1, - ACTIONS(9107), 1, + ACTIONS(9087), 1, aux_sym_preproc_error_token1, - ACTIONS(9109), 1, + ACTIONS(9089), 1, aux_sym_preproc_warning_token1, - ACTIONS(9111), 1, + ACTIONS(9091), 1, aux_sym_preproc_define_token1, - ACTIONS(9113), 1, + ACTIONS(9093), 1, aux_sym_preproc_undef_token1, - ACTIONS(9115), 1, + ACTIONS(9095), 1, sym_comment, - ACTIONS(9721), 1, + ACTIONS(9699), 1, anon_sym_AMP_AMP, - ACTIONS(9723), 1, + ACTIONS(9701), 1, anon_sym_PIPE_PIPE, - ACTIONS(9900), 1, + ACTIONS(9806), 1, aux_sym_preproc_if_token2, - ACTIONS(9719), 2, + ACTIONS(9697), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - STATE(6576), 9, + STATE(6508), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -743612,37 +739939,37 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [278261] = 15, - ACTIONS(9097), 1, + [275044] = 15, + ACTIONS(9077), 1, aux_sym_preproc_region_token1, - ACTIONS(9099), 1, + ACTIONS(9079), 1, aux_sym_preproc_endregion_token1, - ACTIONS(9101), 1, + ACTIONS(9081), 1, aux_sym_preproc_line_token1, - ACTIONS(9103), 1, + ACTIONS(9083), 1, aux_sym_preproc_pragma_token1, - ACTIONS(9105), 1, + ACTIONS(9085), 1, aux_sym_preproc_nullable_token1, - ACTIONS(9107), 1, + ACTIONS(9087), 1, aux_sym_preproc_error_token1, - ACTIONS(9109), 1, + ACTIONS(9089), 1, aux_sym_preproc_warning_token1, - ACTIONS(9111), 1, + ACTIONS(9091), 1, aux_sym_preproc_define_token1, - ACTIONS(9113), 1, + ACTIONS(9093), 1, aux_sym_preproc_undef_token1, - ACTIONS(9115), 1, + ACTIONS(9095), 1, sym_comment, - ACTIONS(9721), 1, + ACTIONS(9699), 1, anon_sym_AMP_AMP, - ACTIONS(9723), 1, + ACTIONS(9701), 1, anon_sym_PIPE_PIPE, - ACTIONS(9902), 1, + ACTIONS(9808), 1, aux_sym_preproc_if_token2, - ACTIONS(9719), 2, + ACTIONS(9697), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - STATE(6577), 9, + STATE(6509), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -743652,7 +739979,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [278316] = 16, + [275099] = 16, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -743673,17 +740000,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(5619), 1, - anon_sym_STAR, - ACTIONS(8916), 1, - anon_sym_LPAREN, - ACTIONS(9848), 1, - anon_sym_LBRACE, - STATE(3703), 1, - sym_block, - STATE(7109), 1, - sym_parameter_list, - STATE(6578), 9, + ACTIONS(9750), 1, + anon_sym_case, + ACTIONS(9752), 1, + anon_sym_default, + ACTIONS(9810), 1, + anon_sym_RBRACE, + STATE(6556), 1, + aux_sym_switch_body_repeat1, + STATE(6989), 1, + sym_switch_section, + STATE(6510), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -743693,7 +740020,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [278373] = 15, + [275156] = 16, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -743714,16 +740041,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(6678), 1, - anon_sym_LBRACK, - ACTIONS(6680), 1, - anon_sym_STAR, - ACTIONS(9655), 1, - anon_sym_QMARK, - ACTIONS(4018), 2, - anon_sym_COMMA, - anon_sym_GT, - STATE(6579), 9, + ACTIONS(9812), 1, + anon_sym_EQ_GT, + ACTIONS(9814), 1, + anon_sym_when, + ACTIONS(9816), 1, + anon_sym_and, + ACTIONS(9818), 1, + anon_sym_or, + STATE(7574), 1, + sym_when_clause, + STATE(6511), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -743733,37 +740061,37 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [278428] = 15, - ACTIONS(9097), 1, + [275213] = 15, + ACTIONS(9077), 1, aux_sym_preproc_region_token1, - ACTIONS(9099), 1, + ACTIONS(9079), 1, aux_sym_preproc_endregion_token1, - ACTIONS(9101), 1, + ACTIONS(9081), 1, aux_sym_preproc_line_token1, - ACTIONS(9103), 1, + ACTIONS(9083), 1, aux_sym_preproc_pragma_token1, - ACTIONS(9105), 1, + ACTIONS(9085), 1, aux_sym_preproc_nullable_token1, - ACTIONS(9107), 1, + ACTIONS(9087), 1, aux_sym_preproc_error_token1, - ACTIONS(9109), 1, + ACTIONS(9089), 1, aux_sym_preproc_warning_token1, - ACTIONS(9111), 1, + ACTIONS(9091), 1, aux_sym_preproc_define_token1, - ACTIONS(9113), 1, + ACTIONS(9093), 1, aux_sym_preproc_undef_token1, - ACTIONS(9115), 1, + ACTIONS(9095), 1, sym_comment, - ACTIONS(9721), 1, + ACTIONS(9699), 1, anon_sym_AMP_AMP, - ACTIONS(9723), 1, + ACTIONS(9701), 1, anon_sym_PIPE_PIPE, - ACTIONS(9904), 1, + ACTIONS(9820), 1, aux_sym_preproc_if_token2, - ACTIONS(9719), 2, + ACTIONS(9697), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - STATE(6580), 9, + STATE(6512), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -743773,7 +740101,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [278483] = 15, + [275268] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -743794,16 +740122,16 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9339), 1, + ACTIONS(9320), 1, anon_sym_where, - STATE(6575), 1, + STATE(6404), 1, aux_sym__class_declaration_initializer_repeat4, - STATE(6641), 1, + STATE(6694), 1, sym_type_parameter_constraints_clause, - ACTIONS(9362), 2, + ACTIONS(9822), 2, anon_sym_SEMI, anon_sym_LBRACE, - STATE(6581), 9, + STATE(6513), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -743813,7 +740141,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [278538] = 14, + [275323] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -743834,15 +740162,16 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9834), 1, - anon_sym_COLON, - STATE(6738), 1, - sym_constructor_initializer, - ACTIONS(9906), 3, + ACTIONS(9320), 1, + anon_sym_where, + STATE(6404), 1, + aux_sym__class_declaration_initializer_repeat4, + STATE(6694), 1, + sym_type_parameter_constraints_clause, + ACTIONS(9824), 2, anon_sym_SEMI, anon_sym_LBRACE, - anon_sym_EQ_GT, - STATE(6582), 9, + STATE(6514), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -743852,7 +740181,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [278591] = 16, + [275378] = 16, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -743873,17 +740202,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(5619), 1, - anon_sym_STAR, - ACTIONS(8916), 1, - anon_sym_LPAREN, - ACTIONS(9775), 1, - anon_sym_LBRACE, - STATE(4548), 1, - sym_block, - STATE(7183), 1, - sym_parameter_list, - STATE(6583), 9, + ACTIONS(9826), 1, + anon_sym_COMMA, + ACTIONS(9828), 1, + anon_sym_RBRACK, + ACTIONS(9830), 1, + anon_sym_and, + ACTIONS(9832), 1, + anon_sym_or, + STATE(6953), 1, + aux_sym_list_pattern_repeat1, + STATE(6515), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -743893,7 +740222,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [278648] = 16, + [275435] = 16, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -743914,17 +740243,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(5617), 1, - anon_sym_LBRACE, - ACTIONS(8916), 1, - anon_sym_LPAREN, - ACTIONS(9908), 1, + ACTIONS(6601), 1, + anon_sym_LBRACK, + ACTIONS(6603), 1, anon_sym_STAR, - STATE(3118), 1, - sym_block, - STATE(7238), 1, - sym_parameter_list, - STATE(6584), 9, + ACTIONS(6705), 1, + anon_sym_QMARK, + ACTIONS(6889), 1, + anon_sym_DOT, + ACTIONS(9573), 1, + anon_sym_COMMA, + STATE(6516), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -743934,7 +740263,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [278705] = 16, + [275492] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -743955,17 +740284,16 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9711), 1, - anon_sym_and, - ACTIONS(9713), 1, - anon_sym_or, - ACTIONS(9910), 1, - anon_sym_COMMA, - ACTIONS(9912), 1, - anon_sym_RBRACK, - STATE(6902), 1, - aux_sym_list_pattern_repeat1, - STATE(6585), 9, + ACTIONS(9731), 1, + anon_sym_AMP_AMP, + ACTIONS(9733), 1, + anon_sym_PIPE_PIPE, + ACTIONS(9834), 1, + anon_sym_RPAREN, + ACTIONS(9729), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + STATE(6517), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -743975,37 +740303,35 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [278762] = 15, - ACTIONS(3), 1, + [275547] = 13, + ACTIONS(9077), 1, aux_sym_preproc_region_token1, - ACTIONS(5), 1, + ACTIONS(9079), 1, aux_sym_preproc_endregion_token1, - ACTIONS(7), 1, + ACTIONS(9081), 1, aux_sym_preproc_line_token1, - ACTIONS(9), 1, + ACTIONS(9083), 1, aux_sym_preproc_pragma_token1, - ACTIONS(11), 1, + ACTIONS(9085), 1, aux_sym_preproc_nullable_token1, - ACTIONS(13), 1, + ACTIONS(9087), 1, aux_sym_preproc_error_token1, - ACTIONS(15), 1, + ACTIONS(9089), 1, aux_sym_preproc_warning_token1, - ACTIONS(17), 1, + ACTIONS(9091), 1, aux_sym_preproc_define_token1, - ACTIONS(19), 1, + ACTIONS(9093), 1, aux_sym_preproc_undef_token1, - ACTIONS(21), 1, + ACTIONS(9095), 1, sym_comment, - ACTIONS(9339), 1, - anon_sym_where, - STATE(6496), 1, - aux_sym__class_declaration_initializer_repeat4, - STATE(6641), 1, - sym_type_parameter_constraints_clause, - ACTIONS(9360), 2, - anon_sym_SEMI, - anon_sym_LBRACE, - STATE(6586), 9, + ACTIONS(9723), 1, + aux_sym_preproc_if_token2, + ACTIONS(9836), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + STATE(6518), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -744015,7 +740341,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [278817] = 15, + [275598] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -744036,16 +740362,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9339), 1, - anon_sym_where, - STATE(6448), 1, - aux_sym__class_declaration_initializer_repeat4, - STATE(6641), 1, - sym_type_parameter_constraints_clause, - ACTIONS(9362), 2, + ACTIONS(9663), 5, anon_sym_SEMI, + anon_sym_COMMA, anon_sym_LBRACE, - STATE(6587), 9, + anon_sym_where, + anon_sym_EQ_GT, + STATE(6519), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -744055,7 +740378,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [278872] = 16, + [275647] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -744076,17 +740399,16 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9753), 1, - anon_sym_case, - ACTIONS(9755), 1, - anon_sym_default, - ACTIONS(9914), 1, - anon_sym_RBRACE, - STATE(6476), 1, - aux_sym_switch_body_repeat1, - STATE(6882), 1, - sym_switch_section, - STATE(6588), 9, + ACTIONS(9320), 1, + anon_sym_where, + STATE(6404), 1, + aux_sym__class_declaration_initializer_repeat4, + STATE(6694), 1, + sym_type_parameter_constraints_clause, + ACTIONS(9838), 2, + anon_sym_SEMI, + anon_sym_LBRACE, + STATE(6520), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -744096,7 +740418,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [278929] = 16, + [275702] = 16, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -744117,17 +740439,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9753), 1, + ACTIONS(9750), 1, anon_sym_case, - ACTIONS(9755), 1, + ACTIONS(9752), 1, anon_sym_default, - ACTIONS(9916), 1, + ACTIONS(9840), 1, anon_sym_RBRACE, - STATE(6482), 1, + STATE(6541), 1, aux_sym_switch_body_repeat1, - STATE(6882), 1, + STATE(6989), 1, sym_switch_section, - STATE(6589), 9, + STATE(6521), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -744137,7 +740459,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [278986] = 16, + [275759] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -744158,17 +740480,16 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9918), 1, - anon_sym_EQ_GT, - ACTIONS(9920), 1, - anon_sym_when, - ACTIONS(9922), 1, - anon_sym_and, - ACTIONS(9924), 1, - anon_sym_or, - STATE(7564), 1, - sym_when_clause, - STATE(6590), 9, + ACTIONS(9320), 1, + anon_sym_where, + STATE(6473), 1, + aux_sym__class_declaration_initializer_repeat4, + STATE(6694), 1, + sym_type_parameter_constraints_clause, + ACTIONS(9838), 2, + anon_sym_SEMI, + anon_sym_LBRACE, + STATE(6522), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -744178,7 +740499,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [279043] = 15, + [275814] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -744199,16 +740520,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9339), 1, - anon_sym_where, - STATE(6448), 1, - aux_sym__class_declaration_initializer_repeat4, - STATE(6641), 1, - sym_type_parameter_constraints_clause, - ACTIONS(9360), 2, + ACTIONS(9715), 1, + anon_sym_COLON, + STATE(6906), 1, + sym_constructor_initializer, + ACTIONS(9842), 3, anon_sym_SEMI, anon_sym_LBRACE, - STATE(6591), 9, + anon_sym_EQ_GT, + STATE(6523), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -744218,7 +740538,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [279098] = 13, + [275867] = 16, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -744239,92 +740559,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(3667), 1, - anon_sym_EQ_GT, - ACTIONS(3829), 4, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_and, - anon_sym_or, - 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, - [279149] = 13, - ACTIONS(9097), 1, - aux_sym_preproc_region_token1, - ACTIONS(9099), 1, - aux_sym_preproc_endregion_token1, - ACTIONS(9101), 1, - aux_sym_preproc_line_token1, - ACTIONS(9103), 1, - aux_sym_preproc_pragma_token1, - ACTIONS(9105), 1, - aux_sym_preproc_nullable_token1, - ACTIONS(9107), 1, - aux_sym_preproc_error_token1, - ACTIONS(9109), 1, - aux_sym_preproc_warning_token1, - ACTIONS(9111), 1, - aux_sym_preproc_define_token1, - ACTIONS(9113), 1, - aux_sym_preproc_undef_token1, - ACTIONS(9115), 1, - sym_comment, - ACTIONS(9838), 1, - aux_sym_preproc_if_token2, - ACTIONS(9926), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - STATE(6593), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - [279200] = 15, - ACTIONS(9097), 1, - aux_sym_preproc_region_token1, - ACTIONS(9099), 1, - aux_sym_preproc_endregion_token1, - ACTIONS(9101), 1, - aux_sym_preproc_line_token1, - ACTIONS(9103), 1, - aux_sym_preproc_pragma_token1, - ACTIONS(9105), 1, - aux_sym_preproc_nullable_token1, - ACTIONS(9107), 1, - aux_sym_preproc_error_token1, - ACTIONS(9109), 1, - aux_sym_preproc_warning_token1, - ACTIONS(9111), 1, - aux_sym_preproc_define_token1, - ACTIONS(9113), 1, - aux_sym_preproc_undef_token1, - ACTIONS(9115), 1, - sym_comment, - ACTIONS(9721), 1, - anon_sym_AMP_AMP, - ACTIONS(9723), 1, - anon_sym_PIPE_PIPE, - ACTIONS(9928), 1, - aux_sym_preproc_if_token2, - ACTIONS(9719), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - STATE(6594), 9, + ACTIONS(5575), 1, + anon_sym_STAR, + ACTIONS(8892), 1, + anon_sym_LPAREN, + ACTIONS(9844), 1, + anon_sym_LBRACE, + STATE(3848), 1, + sym_block, + STATE(7123), 1, + sym_parameter_list, + STATE(6524), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -744334,36 +740579,37 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [279255] = 14, - ACTIONS(9097), 1, + [275924] = 15, + ACTIONS(3), 1, aux_sym_preproc_region_token1, - ACTIONS(9099), 1, + ACTIONS(5), 1, aux_sym_preproc_endregion_token1, - ACTIONS(9101), 1, + ACTIONS(7), 1, aux_sym_preproc_line_token1, - ACTIONS(9103), 1, + ACTIONS(9), 1, aux_sym_preproc_pragma_token1, - ACTIONS(9105), 1, + ACTIONS(11), 1, aux_sym_preproc_nullable_token1, - ACTIONS(9107), 1, + ACTIONS(13), 1, aux_sym_preproc_error_token1, - ACTIONS(9109), 1, + ACTIONS(15), 1, aux_sym_preproc_warning_token1, - ACTIONS(9111), 1, + ACTIONS(17), 1, aux_sym_preproc_define_token1, - ACTIONS(9113), 1, + ACTIONS(19), 1, aux_sym_preproc_undef_token1, - ACTIONS(9115), 1, + ACTIONS(21), 1, sym_comment, - ACTIONS(9838), 1, - aux_sym_preproc_if_token2, - ACTIONS(9719), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(9926), 2, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - STATE(6595), 9, + ACTIONS(8070), 1, + aux_sym_preproc_else_token1, + ACTIONS(8072), 1, + aux_sym_preproc_elif_token1, + ACTIONS(9846), 1, + aux_sym_preproc_if_token3, + STATE(7469), 2, + sym_preproc_else_in_enum_member_declaration, + sym_preproc_elif_in_enum_member_declaration, + STATE(6525), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -744373,7 +740619,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [279308] = 16, + [275979] = 16, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -744394,17 +740640,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(5619), 1, - anon_sym_STAR, - ACTIONS(8916), 1, - anon_sym_LPAREN, ACTIONS(9830), 1, - anon_sym_LBRACE, - STATE(3022), 1, - sym_block, - STATE(7208), 1, - sym_parameter_list, - STATE(6596), 9, + anon_sym_and, + ACTIONS(9832), 1, + anon_sym_or, + ACTIONS(9848), 1, + anon_sym_COMMA, + ACTIONS(9850), 1, + anon_sym_RBRACK, + STATE(6891), 1, + aux_sym_list_pattern_repeat1, + STATE(6526), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -744414,37 +740660,34 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [279365] = 15, - ACTIONS(9097), 1, + [276036] = 12, + ACTIONS(3), 1, aux_sym_preproc_region_token1, - ACTIONS(9099), 1, + ACTIONS(5), 1, aux_sym_preproc_endregion_token1, - ACTIONS(9101), 1, + ACTIONS(7), 1, aux_sym_preproc_line_token1, - ACTIONS(9103), 1, + ACTIONS(9), 1, aux_sym_preproc_pragma_token1, - ACTIONS(9105), 1, + ACTIONS(11), 1, aux_sym_preproc_nullable_token1, - ACTIONS(9107), 1, + ACTIONS(13), 1, aux_sym_preproc_error_token1, - ACTIONS(9109), 1, + ACTIONS(15), 1, aux_sym_preproc_warning_token1, - ACTIONS(9111), 1, + ACTIONS(17), 1, aux_sym_preproc_define_token1, - ACTIONS(9113), 1, + ACTIONS(19), 1, aux_sym_preproc_undef_token1, - ACTIONS(9115), 1, + ACTIONS(21), 1, sym_comment, - ACTIONS(9721), 1, - anon_sym_AMP_AMP, - ACTIONS(9838), 1, - aux_sym_preproc_if_token2, - ACTIONS(9926), 1, - anon_sym_PIPE_PIPE, - ACTIONS(9719), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - STATE(6597), 9, + ACTIONS(9852), 5, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_where, + anon_sym_EQ_GT, + STATE(6527), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -744454,77 +740697,34 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [279420] = 15, - ACTIONS(9097), 1, + [276085] = 12, + ACTIONS(3), 1, aux_sym_preproc_region_token1, - ACTIONS(9099), 1, + ACTIONS(5), 1, aux_sym_preproc_endregion_token1, - ACTIONS(9101), 1, + ACTIONS(7), 1, aux_sym_preproc_line_token1, - ACTIONS(9103), 1, + ACTIONS(9), 1, aux_sym_preproc_pragma_token1, - ACTIONS(9105), 1, + ACTIONS(11), 1, aux_sym_preproc_nullable_token1, - ACTIONS(9107), 1, + ACTIONS(13), 1, aux_sym_preproc_error_token1, - ACTIONS(9109), 1, + ACTIONS(15), 1, aux_sym_preproc_warning_token1, - ACTIONS(9111), 1, + ACTIONS(17), 1, aux_sym_preproc_define_token1, - ACTIONS(9113), 1, + ACTIONS(19), 1, aux_sym_preproc_undef_token1, - ACTIONS(9115), 1, + ACTIONS(21), 1, sym_comment, - ACTIONS(9721), 1, - anon_sym_AMP_AMP, - ACTIONS(9723), 1, - anon_sym_PIPE_PIPE, - ACTIONS(9930), 1, - aux_sym_preproc_if_token2, - ACTIONS(9719), 2, + ACTIONS(9770), 5, + anon_sym_RPAREN, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - STATE(6598), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - [279475] = 15, - ACTIONS(9097), 1, - aux_sym_preproc_region_token1, - ACTIONS(9099), 1, - aux_sym_preproc_endregion_token1, - ACTIONS(9101), 1, - aux_sym_preproc_line_token1, - ACTIONS(9103), 1, - aux_sym_preproc_pragma_token1, - ACTIONS(9105), 1, - aux_sym_preproc_nullable_token1, - ACTIONS(9107), 1, - aux_sym_preproc_error_token1, - ACTIONS(9109), 1, - aux_sym_preproc_warning_token1, - ACTIONS(9111), 1, - aux_sym_preproc_define_token1, - ACTIONS(9113), 1, - aux_sym_preproc_undef_token1, - ACTIONS(9115), 1, - sym_comment, - ACTIONS(9721), 1, anon_sym_AMP_AMP, - ACTIONS(9723), 1, anon_sym_PIPE_PIPE, - ACTIONS(9932), 1, - aux_sym_preproc_if_token2, - ACTIONS(9719), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - STATE(6599), 9, + STATE(6528), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -744534,7 +740734,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [279530] = 16, + [276134] = 16, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -744555,17 +740755,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8577), 1, - anon_sym_COLON, - ACTIONS(9934), 1, - anon_sym_when, - ACTIONS(9936), 1, + ACTIONS(9830), 1, anon_sym_and, - ACTIONS(9938), 1, + ACTIONS(9832), 1, anon_sym_or, - STATE(7460), 1, - sym_when_clause, - STATE(6600), 9, + ACTIONS(9854), 1, + anon_sym_COMMA, + ACTIONS(9856), 1, + anon_sym_RBRACK, + STATE(6811), 1, + aux_sym_list_pattern_repeat1, + STATE(6529), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -744575,37 +740775,36 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [279587] = 15, - ACTIONS(9097), 1, + [276191] = 14, + ACTIONS(3), 1, aux_sym_preproc_region_token1, - ACTIONS(9099), 1, + ACTIONS(5), 1, aux_sym_preproc_endregion_token1, - ACTIONS(9101), 1, + ACTIONS(7), 1, aux_sym_preproc_line_token1, - ACTIONS(9103), 1, + ACTIONS(9), 1, aux_sym_preproc_pragma_token1, - ACTIONS(9105), 1, + ACTIONS(11), 1, aux_sym_preproc_nullable_token1, - ACTIONS(9107), 1, + ACTIONS(13), 1, aux_sym_preproc_error_token1, - ACTIONS(9109), 1, + ACTIONS(15), 1, aux_sym_preproc_warning_token1, - ACTIONS(9111), 1, + ACTIONS(17), 1, aux_sym_preproc_define_token1, - ACTIONS(9113), 1, + ACTIONS(19), 1, aux_sym_preproc_undef_token1, - ACTIONS(9115), 1, + ACTIONS(21), 1, sym_comment, - ACTIONS(9721), 1, - anon_sym_AMP_AMP, - ACTIONS(9723), 1, - anon_sym_PIPE_PIPE, - ACTIONS(9940), 1, - aux_sym_preproc_if_token2, - ACTIONS(9719), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - STATE(6601), 9, + ACTIONS(9455), 1, + anon_sym_COMMA, + STATE(6477), 1, + aux_sym_record_base_repeat1, + ACTIONS(9858), 3, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_where, + STATE(6530), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -744615,7 +740814,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [279642] = 15, + [276244] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -744636,16 +740835,16 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9339), 1, + ACTIONS(9320), 1, anon_sym_where, - STATE(6504), 1, + STATE(6404), 1, aux_sym__class_declaration_initializer_repeat4, - STATE(6641), 1, + STATE(6694), 1, sym_type_parameter_constraints_clause, - ACTIONS(9898), 2, + ACTIONS(9860), 2, anon_sym_SEMI, anon_sym_LBRACE, - STATE(6602), 9, + STATE(6531), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -744655,7 +740854,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [279697] = 15, + [276299] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -744676,16 +740875,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9339), 1, - anon_sym_where, - STATE(6478), 1, - aux_sym__class_declaration_initializer_repeat4, - STATE(6641), 1, - sym_type_parameter_constraints_clause, - ACTIONS(9844), 2, - anon_sym_SEMI, - anon_sym_LBRACE, - STATE(6603), 9, + ACTIONS(9786), 5, + anon_sym_RPAREN, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + STATE(6532), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -744695,7 +740891,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [279752] = 15, + [276348] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -744716,15 +740912,16 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9339), 1, + ACTIONS(9320), 1, anon_sym_where, - ACTIONS(9942), 1, - anon_sym_LBRACE, - STATE(6448), 1, + STATE(6404), 1, aux_sym__class_declaration_initializer_repeat4, - STATE(6641), 1, + STATE(6694), 1, sym_type_parameter_constraints_clause, - STATE(6604), 9, + ACTIONS(9862), 2, + anon_sym_SEMI, + anon_sym_LBRACE, + STATE(6533), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -744734,7 +740931,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [279806] = 15, + [276403] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -744755,15 +740952,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9339), 1, - anon_sym_where, - ACTIONS(9944), 1, - anon_sym_LBRACE, - STATE(6448), 1, - aux_sym__class_declaration_initializer_repeat4, - STATE(6641), 1, - sym_type_parameter_constraints_clause, - STATE(6605), 9, + ACTIONS(9729), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(9786), 3, + anon_sym_RPAREN, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + STATE(6534), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -744773,7 +740969,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [279860] = 15, + [276454] = 16, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -744794,15 +740990,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9339), 1, - anon_sym_where, - ACTIONS(9946), 1, + ACTIONS(5573), 1, anon_sym_LBRACE, - STATE(6448), 1, - aux_sym__class_declaration_initializer_repeat4, - STATE(6641), 1, - sym_type_parameter_constraints_clause, - STATE(6606), 9, + ACTIONS(5575), 1, + anon_sym_STAR, + ACTIONS(8892), 1, + anon_sym_LPAREN, + STATE(3087), 1, + sym_block, + STATE(7185), 1, + sym_parameter_list, + STATE(6535), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -744812,7 +741010,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [279914] = 15, + [276511] = 16, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -744833,15 +741031,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9948), 1, - anon_sym_COLON, - ACTIONS(9950), 1, + ACTIONS(5575), 1, + anon_sym_STAR, + ACTIONS(8892), 1, + anon_sym_LPAREN, + ACTIONS(9864), 1, anon_sym_LBRACE, - STATE(7069), 1, - sym_base_list, - STATE(7457), 1, - sym_enum_member_declaration_list, - STATE(6607), 9, + STATE(3048), 1, + sym_block, + STATE(7112), 1, + sym_parameter_list, + STATE(6536), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -744851,7 +741051,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [279968] = 15, + [276568] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -744872,15 +741072,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9310), 1, + ACTIONS(9866), 5, + anon_sym_SEMI, + anon_sym_COMMA, anon_sym_LBRACE, - ACTIONS(9314), 1, + anon_sym_where, anon_sym_EQ_GT, - STATE(2752), 1, - sym_accessor_list, - STATE(7332), 1, - sym_arrow_expression_clause, - STATE(6608), 9, + STATE(6537), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -744890,7 +741088,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [280022] = 13, + [276617] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -744911,13 +741109,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9952), 1, - anon_sym_COMMA, - ACTIONS(9452), 3, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_where, - STATE(6609), 9, + ACTIONS(9731), 1, + anon_sym_AMP_AMP, + ACTIONS(9729), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(9786), 2, + anon_sym_RPAREN, + anon_sym_PIPE_PIPE, + STATE(6538), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -744927,7 +741127,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [280072] = 15, + [276670] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -744948,15 +741148,16 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9339), 1, + ACTIONS(9320), 1, anon_sym_where, - ACTIONS(9954), 1, - anon_sym_LBRACE, - STATE(6448), 1, + STATE(6404), 1, aux_sym__class_declaration_initializer_repeat4, - STATE(6641), 1, + STATE(6694), 1, sym_type_parameter_constraints_clause, - STATE(6610), 9, + ACTIONS(9868), 2, + anon_sym_SEMI, + anon_sym_LBRACE, + STATE(6539), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -744966,7 +741167,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [280126] = 15, + [276725] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -744987,15 +741188,16 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(6678), 1, - anon_sym_LBRACK, - ACTIONS(6680), 1, - anon_sym_STAR, - ACTIONS(6716), 1, - anon_sym_QMARK, - ACTIONS(9653), 1, - anon_sym_COMMA, - STATE(6611), 9, + ACTIONS(9320), 1, + anon_sym_where, + STATE(6404), 1, + aux_sym__class_declaration_initializer_repeat4, + STATE(6694), 1, + sym_type_parameter_constraints_clause, + ACTIONS(9870), 2, + anon_sym_SEMI, + anon_sym_LBRACE, + STATE(6540), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -745005,7 +741207,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [280180] = 14, + [276780] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -745026,14 +741228,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9956), 1, - anon_sym_and, - ACTIONS(9958), 1, - anon_sym_or, - ACTIONS(6205), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - STATE(6612), 9, + ACTIONS(9872), 1, + anon_sym_RBRACE, + ACTIONS(9874), 1, + anon_sym_case, + ACTIONS(9877), 1, + anon_sym_default, + STATE(6989), 1, + sym_switch_section, + STATE(6541), 10, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -745043,7 +741246,8 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [280232] = 15, + aux_sym_switch_body_repeat1, + [276835] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -745064,15 +741268,16 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9310), 1, + ACTIONS(9320), 1, + anon_sym_where, + STATE(6404), 1, + aux_sym__class_declaration_initializer_repeat4, + STATE(6694), 1, + sym_type_parameter_constraints_clause, + ACTIONS(9354), 2, + anon_sym_SEMI, anon_sym_LBRACE, - ACTIONS(9314), 1, - anon_sym_EQ_GT, - STATE(2685), 1, - sym_accessor_list, - STATE(7659), 1, - sym_arrow_expression_clause, - STATE(6613), 9, + STATE(6542), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -745082,7 +741287,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [280286] = 15, + [276890] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -745103,15 +741308,16 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9339), 1, + ACTIONS(9320), 1, anon_sym_where, - ACTIONS(9960), 1, - anon_sym_LBRACE, - STATE(6641), 1, - sym_type_parameter_constraints_clause, - STATE(6714), 1, + STATE(6404), 1, aux_sym__class_declaration_initializer_repeat4, - STATE(6614), 9, + STATE(6694), 1, + sym_type_parameter_constraints_clause, + ACTIONS(9880), 2, + anon_sym_SEMI, + anon_sym_LBRACE, + STATE(6543), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -745121,33 +741327,37 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [280340] = 12, - ACTIONS(3), 1, + [276945] = 15, + ACTIONS(9077), 1, aux_sym_preproc_region_token1, - ACTIONS(5), 1, + ACTIONS(9079), 1, aux_sym_preproc_endregion_token1, - ACTIONS(7), 1, + ACTIONS(9081), 1, aux_sym_preproc_line_token1, - ACTIONS(9), 1, + ACTIONS(9083), 1, aux_sym_preproc_pragma_token1, - ACTIONS(11), 1, + ACTIONS(9085), 1, aux_sym_preproc_nullable_token1, - ACTIONS(13), 1, + ACTIONS(9087), 1, aux_sym_preproc_error_token1, - ACTIONS(15), 1, + ACTIONS(9089), 1, aux_sym_preproc_warning_token1, - ACTIONS(17), 1, + ACTIONS(9091), 1, aux_sym_preproc_define_token1, - ACTIONS(19), 1, + ACTIONS(9093), 1, aux_sym_preproc_undef_token1, - ACTIONS(21), 1, + ACTIONS(9095), 1, sym_comment, - ACTIONS(3996), 4, - anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_GT, - anon_sym_STAR, - STATE(6615), 9, + ACTIONS(9699), 1, + anon_sym_AMP_AMP, + ACTIONS(9701), 1, + anon_sym_PIPE_PIPE, + ACTIONS(9882), 1, + aux_sym_preproc_if_token2, + ACTIONS(9697), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + STATE(6544), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -745157,33 +741367,37 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [280388] = 12, - ACTIONS(3), 1, + [277000] = 15, + ACTIONS(9077), 1, aux_sym_preproc_region_token1, - ACTIONS(5), 1, + ACTIONS(9079), 1, aux_sym_preproc_endregion_token1, - ACTIONS(7), 1, + ACTIONS(9081), 1, aux_sym_preproc_line_token1, - ACTIONS(9), 1, + ACTIONS(9083), 1, aux_sym_preproc_pragma_token1, - ACTIONS(11), 1, + ACTIONS(9085), 1, aux_sym_preproc_nullable_token1, - ACTIONS(13), 1, + ACTIONS(9087), 1, aux_sym_preproc_error_token1, - ACTIONS(15), 1, + ACTIONS(9089), 1, aux_sym_preproc_warning_token1, - ACTIONS(17), 1, + ACTIONS(9091), 1, aux_sym_preproc_define_token1, - ACTIONS(19), 1, + ACTIONS(9093), 1, aux_sym_preproc_undef_token1, - ACTIONS(21), 1, + ACTIONS(9095), 1, sym_comment, - ACTIONS(9962), 4, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_where, - anon_sym_EQ_GT, - STATE(6616), 9, + ACTIONS(9699), 1, + anon_sym_AMP_AMP, + ACTIONS(9701), 1, + anon_sym_PIPE_PIPE, + ACTIONS(9884), 1, + aux_sym_preproc_if_token2, + ACTIONS(9697), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + STATE(6545), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -745193,36 +741407,37 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [280436] = 15, - ACTIONS(3), 1, + [277055] = 15, + ACTIONS(9077), 1, aux_sym_preproc_region_token1, - ACTIONS(5), 1, + ACTIONS(9079), 1, aux_sym_preproc_endregion_token1, - ACTIONS(7), 1, + ACTIONS(9081), 1, aux_sym_preproc_line_token1, - ACTIONS(9), 1, + ACTIONS(9083), 1, aux_sym_preproc_pragma_token1, - ACTIONS(11), 1, + ACTIONS(9085), 1, aux_sym_preproc_nullable_token1, - ACTIONS(13), 1, + ACTIONS(9087), 1, aux_sym_preproc_error_token1, - ACTIONS(15), 1, + ACTIONS(9089), 1, aux_sym_preproc_warning_token1, - ACTIONS(17), 1, + ACTIONS(9091), 1, aux_sym_preproc_define_token1, - ACTIONS(19), 1, + ACTIONS(9093), 1, aux_sym_preproc_undef_token1, - ACTIONS(21), 1, + ACTIONS(9095), 1, sym_comment, - ACTIONS(9948), 1, - anon_sym_COLON, - ACTIONS(9950), 1, - anon_sym_LBRACE, - STATE(7182), 1, - sym_base_list, - STATE(7442), 1, - sym_enum_member_declaration_list, - STATE(6617), 9, + ACTIONS(9699), 1, + anon_sym_AMP_AMP, + ACTIONS(9701), 1, + anon_sym_PIPE_PIPE, + ACTIONS(9886), 1, + aux_sym_preproc_if_token2, + ACTIONS(9697), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + STATE(6546), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -745232,7 +741447,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [280490] = 15, + [277110] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -745253,15 +741468,16 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9339), 1, + ACTIONS(9320), 1, anon_sym_where, - ACTIONS(9964), 1, - anon_sym_LBRACE, - STATE(6448), 1, + STATE(6514), 1, aux_sym__class_declaration_initializer_repeat4, - STATE(6641), 1, + STATE(6694), 1, sym_type_parameter_constraints_clause, - STATE(6618), 9, + ACTIONS(9888), 2, + anon_sym_SEMI, + anon_sym_LBRACE, + STATE(6547), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -745271,7 +741487,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [280544] = 15, + [277165] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -745292,15 +741508,16 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9339), 1, + ACTIONS(9320), 1, anon_sym_where, - ACTIONS(9966), 1, - anon_sym_SEMI, - STATE(6641), 1, - sym_type_parameter_constraints_clause, - STATE(6676), 1, + STATE(6404), 1, aux_sym__class_declaration_initializer_repeat4, - STATE(6619), 9, + STATE(6694), 1, + sym_type_parameter_constraints_clause, + ACTIONS(9888), 2, + anon_sym_SEMI, + anon_sym_LBRACE, + STATE(6548), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -745310,7 +741527,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [280598] = 15, + [277220] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -745331,15 +741548,16 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9968), 1, - anon_sym_LT, - ACTIONS(9970), 1, - anon_sym_unmanaged, - ACTIONS(9972), 1, - anon_sym_managed, - STATE(7343), 1, - sym_calling_convention, - STATE(6620), 9, + ACTIONS(9320), 1, + anon_sym_where, + STATE(6404), 1, + aux_sym__class_declaration_initializer_repeat4, + STATE(6694), 1, + sym_type_parameter_constraints_clause, + ACTIONS(9890), 2, + anon_sym_SEMI, + anon_sym_LBRACE, + STATE(6549), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -745349,7 +741567,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [280652] = 12, + [277275] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -745370,12 +741588,16 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(3128), 4, - anon_sym_while, - anon_sym_catch, - anon_sym_finally, - anon_sym_else, - STATE(6621), 9, + ACTIONS(8070), 1, + aux_sym_preproc_else_token1, + ACTIONS(8072), 1, + aux_sym_preproc_elif_token1, + ACTIONS(9892), 1, + aux_sym_preproc_if_token3, + STATE(7643), 2, + sym_preproc_else_in_enum_member_declaration, + sym_preproc_elif_in_enum_member_declaration, + STATE(6550), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -745385,7 +741607,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [280700] = 15, + [277330] = 16, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -745406,15 +741628,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9948), 1, - anon_sym_COLON, - ACTIONS(9950), 1, + ACTIONS(5575), 1, + anon_sym_STAR, + ACTIONS(8892), 1, + anon_sym_LPAREN, + ACTIONS(9864), 1, anon_sym_LBRACE, - STATE(7150), 1, - sym_base_list, - STATE(7498), 1, - sym_enum_member_declaration_list, - STATE(6622), 9, + STATE(2986), 1, + sym_block, + STATE(7192), 1, + sym_parameter_list, + STATE(6551), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -745424,7 +741648,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [280754] = 15, + [277387] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -745445,15 +741669,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9339), 1, - anon_sym_where, - ACTIONS(9974), 1, - anon_sym_SEMI, - STATE(6448), 1, - aux_sym__class_declaration_initializer_repeat4, - STATE(6641), 1, - sym_type_parameter_constraints_clause, - STATE(6623), 9, + ACTIONS(9758), 5, + anon_sym_RPAREN, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + STATE(6552), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -745463,7 +741685,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [280808] = 13, + [277436] = 16, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -745484,13 +741706,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9976), 1, - anon_sym_EQ, - ACTIONS(9668), 3, + ACTIONS(3963), 1, + anon_sym_GT, + ACTIONS(6601), 1, + anon_sym_LBRACK, + ACTIONS(6603), 1, + anon_sym_STAR, + ACTIONS(9573), 1, anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_RPAREN, - STATE(6624), 9, + ACTIONS(9575), 1, + anon_sym_QMARK, + STATE(6553), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -745500,36 +741726,37 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [280858] = 15, - ACTIONS(3), 1, + [277493] = 15, + ACTIONS(9077), 1, aux_sym_preproc_region_token1, - ACTIONS(5), 1, + ACTIONS(9079), 1, aux_sym_preproc_endregion_token1, - ACTIONS(7), 1, + ACTIONS(9081), 1, aux_sym_preproc_line_token1, - ACTIONS(9), 1, + ACTIONS(9083), 1, aux_sym_preproc_pragma_token1, - ACTIONS(11), 1, + ACTIONS(9085), 1, aux_sym_preproc_nullable_token1, - ACTIONS(13), 1, + ACTIONS(9087), 1, aux_sym_preproc_error_token1, - ACTIONS(15), 1, + ACTIONS(9089), 1, aux_sym_preproc_warning_token1, - ACTIONS(17), 1, + ACTIONS(9091), 1, aux_sym_preproc_define_token1, - ACTIONS(19), 1, + ACTIONS(9093), 1, aux_sym_preproc_undef_token1, - ACTIONS(21), 1, + ACTIONS(9095), 1, sym_comment, - ACTIONS(9339), 1, - anon_sym_where, - ACTIONS(9978), 1, - anon_sym_LBRACE, - STATE(6448), 1, - aux_sym__class_declaration_initializer_repeat4, - STATE(6641), 1, - sym_type_parameter_constraints_clause, - STATE(6625), 9, + ACTIONS(9699), 1, + anon_sym_AMP_AMP, + ACTIONS(9701), 1, + anon_sym_PIPE_PIPE, + ACTIONS(9894), 1, + aux_sym_preproc_if_token2, + ACTIONS(9697), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + STATE(6554), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -745539,7 +741766,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [280912] = 15, + [277548] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -745560,15 +741787,16 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8142), 1, - anon_sym_DOT, - ACTIONS(9335), 1, - anon_sym_LBRACE, - ACTIONS(9980), 1, + ACTIONS(9320), 1, + anon_sym_where, + STATE(6404), 1, + aux_sym__class_declaration_initializer_repeat4, + STATE(6694), 1, + sym_type_parameter_constraints_clause, + ACTIONS(9350), 2, anon_sym_SEMI, - STATE(7439), 1, - sym_declaration_list, - STATE(6626), 9, + anon_sym_LBRACE, + STATE(6555), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -745578,7 +741806,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [280966] = 15, + [277603] = 16, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -745599,15 +741827,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9948), 1, - anon_sym_COLON, - ACTIONS(9950), 1, - anon_sym_LBRACE, - STATE(7119), 1, - sym_base_list, - STATE(7616), 1, - sym_enum_member_declaration_list, - STATE(6627), 9, + ACTIONS(9750), 1, + anon_sym_case, + ACTIONS(9752), 1, + anon_sym_default, + ACTIONS(9896), 1, + anon_sym_RBRACE, + STATE(6541), 1, + aux_sym_switch_body_repeat1, + STATE(6989), 1, + sym_switch_section, + STATE(6556), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -745617,7 +741847,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [281020] = 15, + [277660] = 16, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -745638,15 +741868,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(3667), 1, - anon_sym_EQ_GT, - ACTIONS(9982), 1, - anon_sym_EQ, - ACTIONS(9984), 1, - anon_sym_COMMA, - ACTIONS(9987), 1, - anon_sym_RPAREN, - STATE(6628), 9, + ACTIONS(9750), 1, + anon_sym_case, + ACTIONS(9752), 1, + anon_sym_default, + ACTIONS(9898), 1, + anon_sym_RBRACE, + STATE(6570), 1, + aux_sym_switch_body_repeat1, + STATE(6989), 1, + sym_switch_section, + STATE(6557), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -745656,7 +741888,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [281074] = 15, + [277717] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -745677,15 +741909,16 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9948), 1, - anon_sym_COLON, - ACTIONS(9950), 1, + ACTIONS(9320), 1, + anon_sym_where, + STATE(6520), 1, + aux_sym__class_declaration_initializer_repeat4, + STATE(6694), 1, + sym_type_parameter_constraints_clause, + ACTIONS(9356), 2, + anon_sym_SEMI, anon_sym_LBRACE, - STATE(7062), 1, - sym_base_list, - STATE(7445), 1, - sym_enum_member_declaration_list, - STATE(6629), 9, + STATE(6558), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -745695,7 +741928,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [281128] = 12, + [277772] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -745716,12 +741949,16 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(3136), 4, - anon_sym_while, - anon_sym_catch, - anon_sym_finally, - anon_sym_else, - STATE(6630), 9, + ACTIONS(9320), 1, + anon_sym_where, + STATE(6404), 1, + aux_sym__class_declaration_initializer_repeat4, + STATE(6694), 1, + sym_type_parameter_constraints_clause, + ACTIONS(9356), 2, + anon_sym_SEMI, + anon_sym_LBRACE, + STATE(6559), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -745731,7 +741968,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [281176] = 15, + [277827] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -745752,15 +741989,16 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9339), 1, + ACTIONS(9320), 1, anon_sym_where, - ACTIONS(9960), 1, - anon_sym_LBRACE, - STATE(6448), 1, + STATE(6404), 1, aux_sym__class_declaration_initializer_repeat4, - STATE(6641), 1, + STATE(6694), 1, sym_type_parameter_constraints_clause, - STATE(6631), 9, + ACTIONS(9900), 2, + anon_sym_SEMI, + anon_sym_LBRACE, + STATE(6560), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -745770,7 +742008,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [281230] = 14, + [277882] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -745791,14 +742029,16 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9711), 1, - anon_sym_and, - ACTIONS(9713), 1, - anon_sym_or, - ACTIONS(1913), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - STATE(6632), 9, + ACTIONS(9320), 1, + anon_sym_where, + STATE(6531), 1, + aux_sym__class_declaration_initializer_repeat4, + STATE(6694), 1, + sym_type_parameter_constraints_clause, + ACTIONS(9900), 2, + anon_sym_SEMI, + anon_sym_LBRACE, + STATE(6561), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -745808,7 +742048,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [281282] = 15, + [277937] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -745829,15 +742069,16 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9339), 1, + ACTIONS(9320), 1, anon_sym_where, - ACTIONS(9989), 1, - anon_sym_LBRACE, - STATE(6625), 1, + STATE(6404), 1, aux_sym__class_declaration_initializer_repeat4, - STATE(6641), 1, + STATE(6694), 1, sym_type_parameter_constraints_clause, - STATE(6633), 9, + ACTIONS(9360), 2, + anon_sym_SEMI, + anon_sym_LBRACE, + STATE(6562), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -745847,7 +742088,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [281336] = 15, + [277992] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -745868,15 +742109,16 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9339), 1, + ACTIONS(9320), 1, anon_sym_where, - ACTIONS(9989), 1, - anon_sym_LBRACE, - STATE(6448), 1, + STATE(6404), 1, aux_sym__class_declaration_initializer_repeat4, - STATE(6641), 1, + STATE(6694), 1, sym_type_parameter_constraints_clause, - STATE(6634), 9, + ACTIONS(9902), 2, + anon_sym_SEMI, + anon_sym_LBRACE, + STATE(6563), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -745886,7 +742128,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [281390] = 15, + [278047] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -745907,15 +742149,16 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9948), 1, - anon_sym_COLON, - ACTIONS(9950), 1, + ACTIONS(9320), 1, + anon_sym_where, + STATE(6404), 1, + aux_sym__class_declaration_initializer_repeat4, + STATE(6694), 1, + sym_type_parameter_constraints_clause, + ACTIONS(9904), 2, + anon_sym_SEMI, anon_sym_LBRACE, - STATE(7130), 1, - sym_base_list, - STATE(7348), 1, - sym_enum_member_declaration_list, - STATE(6635), 9, + STATE(6564), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -745925,7 +742168,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [281444] = 15, + [278102] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -745946,15 +742189,16 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8916), 1, - anon_sym_LPAREN, - ACTIONS(9337), 1, - anon_sym_LT, - STATE(7107), 1, - sym_type_parameter_list, - STATE(7108), 1, - sym_parameter_list, - STATE(6636), 9, + ACTIONS(9320), 1, + anon_sym_where, + STATE(6404), 1, + aux_sym__class_declaration_initializer_repeat4, + STATE(6694), 1, + sym_type_parameter_constraints_clause, + ACTIONS(9906), 2, + anon_sym_SEMI, + anon_sym_LBRACE, + STATE(6565), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -745964,7 +742208,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [281498] = 15, + [278157] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -745985,15 +742229,16 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9310), 1, + ACTIONS(9320), 1, + anon_sym_where, + STATE(6468), 1, + aux_sym__class_declaration_initializer_repeat4, + STATE(6694), 1, + sym_type_parameter_constraints_clause, + ACTIONS(9906), 2, + anon_sym_SEMI, anon_sym_LBRACE, - ACTIONS(9314), 1, - anon_sym_EQ_GT, - STATE(2848), 1, - sym_accessor_list, - STATE(7641), 1, - sym_arrow_expression_clause, - STATE(6637), 9, + STATE(6566), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -746003,7 +742248,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [281552] = 12, + [278212] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -746024,12 +742269,16 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9991), 4, - sym_interpolation_end_quote, - sym_interpolation_open_brace, - sym_interpolation_string_content, - sym_escape_sequence, - STATE(6638), 9, + ACTIONS(9320), 1, + anon_sym_where, + STATE(6404), 1, + aux_sym__class_declaration_initializer_repeat4, + STATE(6694), 1, + sym_type_parameter_constraints_clause, + ACTIONS(9908), 2, + anon_sym_SEMI, + anon_sym_LBRACE, + STATE(6567), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -746039,7 +742288,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [281600] = 15, + [278267] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -746060,15 +742309,56 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9339), 1, - anon_sym_where, - ACTIONS(9374), 1, - anon_sym_LBRACE, - STATE(6448), 1, - aux_sym__class_declaration_initializer_repeat4, - STATE(6641), 1, - sym_type_parameter_constraints_clause, - STATE(6639), 9, + ACTIONS(4671), 1, + aux_sym_preproc_else_token1, + ACTIONS(4673), 1, + aux_sym_preproc_elif_token1, + ACTIONS(4691), 1, + aux_sym_preproc_if_token3, + STATE(7339), 2, + sym_preproc_else_in_attribute_list, + sym_preproc_elif_in_attribute_list, + STATE(6568), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + [278322] = 15, + ACTIONS(9077), 1, + aux_sym_preproc_region_token1, + ACTIONS(9079), 1, + aux_sym_preproc_endregion_token1, + ACTIONS(9081), 1, + aux_sym_preproc_line_token1, + ACTIONS(9083), 1, + aux_sym_preproc_pragma_token1, + ACTIONS(9085), 1, + aux_sym_preproc_nullable_token1, + ACTIONS(9087), 1, + aux_sym_preproc_error_token1, + ACTIONS(9089), 1, + aux_sym_preproc_warning_token1, + ACTIONS(9091), 1, + aux_sym_preproc_define_token1, + ACTIONS(9093), 1, + aux_sym_preproc_undef_token1, + ACTIONS(9095), 1, + sym_comment, + ACTIONS(9699), 1, + anon_sym_AMP_AMP, + ACTIONS(9701), 1, + anon_sym_PIPE_PIPE, + ACTIONS(9910), 1, + aux_sym_preproc_if_token2, + ACTIONS(9697), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + STATE(6569), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -746078,7 +742368,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [281654] = 13, + [278377] = 16, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -746099,13 +742389,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9993), 1, - anon_sym_EQ, - ACTIONS(9995), 3, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_RPAREN, - STATE(6640), 9, + ACTIONS(9750), 1, + anon_sym_case, + ACTIONS(9752), 1, + anon_sym_default, + ACTIONS(9912), 1, + anon_sym_RBRACE, + STATE(6541), 1, + aux_sym_switch_body_repeat1, + STATE(6989), 1, + sym_switch_section, + STATE(6570), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -746115,7 +742409,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [281704] = 12, + [278434] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -746136,12 +742430,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9997), 4, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_where, + ACTIONS(3651), 1, anon_sym_EQ_GT, - STATE(6641), 9, + ACTIONS(3809), 4, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_and, + anon_sym_or, + STATE(6571), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -746151,7 +742447,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [281752] = 13, + [278485] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -746172,13 +742468,16 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9999), 1, - anon_sym_EQ, - ACTIONS(10001), 3, - aux_sym_preproc_if_token3, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - STATE(6642), 9, + ACTIONS(9320), 1, + anon_sym_where, + STATE(6560), 1, + aux_sym__class_declaration_initializer_repeat4, + STATE(6694), 1, + sym_type_parameter_constraints_clause, + ACTIONS(9328), 2, + anon_sym_SEMI, + anon_sym_LBRACE, + STATE(6572), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -746188,33 +742487,37 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [281802] = 12, - ACTIONS(3), 1, + [278540] = 15, + ACTIONS(9077), 1, aux_sym_preproc_region_token1, - ACTIONS(5), 1, + ACTIONS(9079), 1, aux_sym_preproc_endregion_token1, - ACTIONS(7), 1, + ACTIONS(9081), 1, aux_sym_preproc_line_token1, - ACTIONS(9), 1, + ACTIONS(9083), 1, aux_sym_preproc_pragma_token1, - ACTIONS(11), 1, + ACTIONS(9085), 1, aux_sym_preproc_nullable_token1, - ACTIONS(13), 1, + ACTIONS(9087), 1, aux_sym_preproc_error_token1, - ACTIONS(15), 1, + ACTIONS(9089), 1, aux_sym_preproc_warning_token1, - ACTIONS(17), 1, + ACTIONS(9091), 1, aux_sym_preproc_define_token1, - ACTIONS(19), 1, + ACTIONS(9093), 1, aux_sym_preproc_undef_token1, - ACTIONS(21), 1, + ACTIONS(9095), 1, sym_comment, - ACTIONS(10003), 4, - sym_interpolation_end_quote, - sym_interpolation_open_brace, - sym_interpolation_string_content, - sym_escape_sequence, - STATE(6643), 9, + ACTIONS(9699), 1, + anon_sym_AMP_AMP, + ACTIONS(9701), 1, + anon_sym_PIPE_PIPE, + ACTIONS(9914), 1, + aux_sym_preproc_if_token2, + ACTIONS(9697), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + STATE(6573), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -746224,7 +742527,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [281850] = 15, + [278595] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -746245,15 +742548,16 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9339), 1, + ACTIONS(9320), 1, anon_sym_where, - ACTIONS(10005), 1, - anon_sym_LBRACE, - STATE(6641), 1, - sym_type_parameter_constraints_clause, - STATE(6673), 1, + STATE(6404), 1, aux_sym__class_declaration_initializer_repeat4, - STATE(6644), 9, + STATE(6694), 1, + sym_type_parameter_constraints_clause, + ACTIONS(9364), 2, + anon_sym_SEMI, + anon_sym_LBRACE, + STATE(6574), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -746263,7 +742567,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [281904] = 15, + [278650] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -746284,15 +742588,16 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9339), 1, + ACTIONS(9320), 1, anon_sym_where, - ACTIONS(10005), 1, - anon_sym_LBRACE, - STATE(6448), 1, + STATE(6404), 1, aux_sym__class_declaration_initializer_repeat4, - STATE(6641), 1, + STATE(6694), 1, sym_type_parameter_constraints_clause, - STATE(6645), 9, + ACTIONS(9328), 2, + anon_sym_SEMI, + anon_sym_LBRACE, + STATE(6575), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -746302,7 +742607,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [281958] = 15, + [278705] = 16, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -746323,15 +742628,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9339), 1, - anon_sym_where, - ACTIONS(10007), 1, - anon_sym_LBRACE, - STATE(6610), 1, - aux_sym__class_declaration_initializer_repeat4, - STATE(6641), 1, - sym_type_parameter_constraints_clause, - STATE(6646), 9, + ACTIONS(9830), 1, + anon_sym_and, + ACTIONS(9832), 1, + anon_sym_or, + ACTIONS(9916), 1, + anon_sym_COMMA, + ACTIONS(9918), 1, + anon_sym_RBRACK, + STATE(7010), 1, + aux_sym_list_pattern_repeat1, + STATE(6576), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -746341,7 +742648,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [282012] = 15, + [278762] = 16, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -746362,15 +742669,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9956), 1, + ACTIONS(9830), 1, anon_sym_and, - ACTIONS(9958), 1, + ACTIONS(9832), 1, anon_sym_or, - ACTIONS(10009), 1, + ACTIONS(9920), 1, anon_sym_COMMA, - ACTIONS(10011), 1, - anon_sym_RPAREN, - STATE(6647), 9, + ACTIONS(9922), 1, + anon_sym_RBRACK, + STATE(6946), 1, + aux_sym_list_pattern_repeat1, + STATE(6577), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -746380,7 +742689,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [282066] = 15, + [278819] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -746401,15 +742710,16 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4018), 1, - anon_sym_GT, - ACTIONS(6678), 1, + ACTIONS(5549), 1, anon_sym_LBRACK, - ACTIONS(9653), 1, + ACTIONS(9924), 1, + anon_sym_EQ, + STATE(7005), 1, + sym_bracketed_argument_list, + ACTIONS(9798), 2, anon_sym_COMMA, - ACTIONS(9655), 1, - anon_sym_QMARK, - STATE(6648), 9, + anon_sym_RPAREN, + STATE(6578), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -746419,7 +742729,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [282120] = 15, + [278874] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -746440,15 +742750,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9970), 1, - anon_sym_unmanaged, - ACTIONS(9972), 1, - anon_sym_managed, - ACTIONS(10013), 1, - anon_sym_LT, - STATE(7573), 1, - sym_calling_convention, - STATE(6649), 9, + ACTIONS(9830), 1, + anon_sym_and, + ACTIONS(6095), 4, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_or, + STATE(6579), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -746458,7 +742767,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [282174] = 15, + [278925] = 16, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -746479,15 +742788,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4018), 1, - anon_sym_GT, - ACTIONS(6678), 1, + ACTIONS(3963), 1, + anon_sym_LPAREN, + ACTIONS(6601), 1, anon_sym_LBRACK, - ACTIONS(6680), 1, + ACTIONS(6603), 1, anon_sym_STAR, - ACTIONS(9653), 1, - anon_sym_COMMA, - STATE(6650), 9, + ACTIONS(6705), 1, + anon_sym_QMARK, + ACTIONS(9926), 1, + anon_sym_DOT, + STATE(6580), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -746497,7 +742808,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [282228] = 14, + [278982] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -746518,14 +742829,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9936), 1, + ACTIONS(9830), 1, anon_sym_and, - ACTIONS(9938), 1, + ACTIONS(9832), 1, anon_sym_or, - ACTIONS(6205), 2, - anon_sym_COLON, - anon_sym_when, - STATE(6651), 9, + ACTIONS(6107), 3, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_RBRACE, + STATE(6581), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -746535,7 +742847,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [282280] = 15, + [279035] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -746556,15 +742868,16 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8916), 1, - anon_sym_LPAREN, - ACTIONS(9337), 1, - anon_sym_LT, - STATE(7076), 1, - sym_type_parameter_list, - STATE(7085), 1, - sym_parameter_list, - STATE(6652), 9, + ACTIONS(9320), 1, + anon_sym_where, + STATE(6474), 1, + aux_sym__class_declaration_initializer_repeat4, + STATE(6694), 1, + sym_type_parameter_constraints_clause, + ACTIONS(9928), 2, + anon_sym_SEMI, + anon_sym_LBRACE, + STATE(6582), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -746574,7 +742887,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [282334] = 12, + [279090] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -746595,12 +742908,16 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10015), 4, - sym_interpolation_end_quote, - sym_interpolation_open_brace, - sym_interpolation_string_content, - sym_escape_sequence, - STATE(6653), 9, + ACTIONS(9320), 1, + anon_sym_where, + STATE(6404), 1, + aux_sym__class_declaration_initializer_repeat4, + STATE(6694), 1, + sym_type_parameter_constraints_clause, + ACTIONS(9928), 2, + anon_sym_SEMI, + anon_sym_LBRACE, + STATE(6583), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -746610,7 +742927,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [282382] = 15, + [279145] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -746631,15 +742948,16 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9948), 1, - anon_sym_COLON, - ACTIONS(9950), 1, + ACTIONS(9320), 1, + anon_sym_where, + STATE(6404), 1, + aux_sym__class_declaration_initializer_repeat4, + STATE(6694), 1, + sym_type_parameter_constraints_clause, + ACTIONS(9930), 2, + anon_sym_SEMI, anon_sym_LBRACE, - STATE(7081), 1, - sym_base_list, - STATE(7586), 1, - sym_enum_member_declaration_list, - STATE(6654), 9, + STATE(6584), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -746649,7 +742967,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [282436] = 14, + [279200] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -746670,14 +742988,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(3667), 1, - anon_sym_EQ_GT, - ACTIONS(10017), 1, - anon_sym_EQ, - ACTIONS(10019), 2, + ACTIONS(9932), 5, + anon_sym_SEMI, anon_sym_COMMA, - anon_sym_RPAREN, - STATE(6655), 9, + anon_sym_LBRACE, + anon_sym_where, + anon_sym_EQ_GT, + STATE(6585), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -746687,7 +743004,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [282488] = 13, + [279249] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -746708,13 +743025,16 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10021), 1, - anon_sym_EQ, - ACTIONS(10023), 3, - aux_sym_preproc_if_token3, + ACTIONS(4671), 1, aux_sym_preproc_else_token1, + ACTIONS(4673), 1, aux_sym_preproc_elif_token1, - STATE(6656), 9, + ACTIONS(4897), 1, + aux_sym_preproc_if_token3, + STATE(7535), 2, + sym_preproc_else_in_attribute_list, + sym_preproc_elif_in_attribute_list, + STATE(6586), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -746724,7 +743044,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [282538] = 12, + [279304] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -746745,12 +743065,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(3981), 4, - anon_sym_LBRACK, + ACTIONS(9535), 1, anon_sym_COMMA, - anon_sym_GT, - anon_sym_STAR, - STATE(6657), 9, + STATE(6596), 1, + aux_sym_base_list_repeat1, + ACTIONS(9451), 3, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_where, + STATE(6587), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -746760,7 +743083,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [282586] = 14, + [279357] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -746781,14 +743104,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9600), 1, + ACTIONS(9535), 1, anon_sym_COMMA, - STATE(6664), 1, + STATE(6597), 1, aux_sym_base_list_repeat1, - ACTIONS(9496), 2, + ACTIONS(9451), 3, + anon_sym_SEMI, anon_sym_LBRACE, anon_sym_where, - STATE(6658), 9, + STATE(6588), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -746798,34 +743122,37 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [282638] = 13, - ACTIONS(3), 1, + [279410] = 15, + ACTIONS(9077), 1, aux_sym_preproc_region_token1, - ACTIONS(5), 1, + ACTIONS(9079), 1, aux_sym_preproc_endregion_token1, - ACTIONS(7), 1, + ACTIONS(9081), 1, aux_sym_preproc_line_token1, - ACTIONS(9), 1, + ACTIONS(9083), 1, aux_sym_preproc_pragma_token1, - ACTIONS(11), 1, + ACTIONS(9085), 1, aux_sym_preproc_nullable_token1, - ACTIONS(13), 1, + ACTIONS(9087), 1, aux_sym_preproc_error_token1, - ACTIONS(15), 1, + ACTIONS(9089), 1, aux_sym_preproc_warning_token1, - ACTIONS(17), 1, + ACTIONS(9091), 1, aux_sym_preproc_define_token1, - ACTIONS(19), 1, + ACTIONS(9093), 1, aux_sym_preproc_undef_token1, - ACTIONS(21), 1, + ACTIONS(9095), 1, sym_comment, - ACTIONS(9936), 1, - anon_sym_and, - ACTIONS(6067), 3, - anon_sym_COLON, - anon_sym_when, - anon_sym_or, - STATE(6659), 9, + ACTIONS(9699), 1, + anon_sym_AMP_AMP, + ACTIONS(9701), 1, + anon_sym_PIPE_PIPE, + ACTIONS(9934), 1, + aux_sym_preproc_if_token2, + ACTIONS(9697), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + STATE(6589), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -746835,7 +743162,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [282688] = 12, + [279465] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -746856,12 +743183,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10025), 4, + ACTIONS(9617), 5, anon_sym_SEMI, + anon_sym_COMMA, anon_sym_LBRACE, anon_sym_where, anon_sym_EQ_GT, - STATE(6660), 9, + STATE(6590), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -746871,7 +743199,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [282736] = 13, + [279514] = 16, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -746892,12 +743220,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10027), 1, - anon_sym_COMMA, - ACTIONS(10030), 2, - anon_sym_RBRACK, - anon_sym_RPAREN, - STATE(6661), 10, + ACTIONS(5575), 1, + anon_sym_STAR, + ACTIONS(8892), 1, + anon_sym_LPAREN, + ACTIONS(9936), 1, + anon_sym_LBRACE, + STATE(3230), 1, + sym_block, + STATE(7234), 1, + sym_parameter_list, + STATE(6591), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -746907,8 +743240,47 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - aux_sym_bracketed_parameter_list_repeat1, - [282786] = 15, + [279571] = 15, + ACTIONS(9077), 1, + aux_sym_preproc_region_token1, + ACTIONS(9079), 1, + aux_sym_preproc_endregion_token1, + ACTIONS(9081), 1, + aux_sym_preproc_line_token1, + ACTIONS(9083), 1, + aux_sym_preproc_pragma_token1, + ACTIONS(9085), 1, + aux_sym_preproc_nullable_token1, + ACTIONS(9087), 1, + aux_sym_preproc_error_token1, + ACTIONS(9089), 1, + aux_sym_preproc_warning_token1, + ACTIONS(9091), 1, + aux_sym_preproc_define_token1, + ACTIONS(9093), 1, + aux_sym_preproc_undef_token1, + ACTIONS(9095), 1, + sym_comment, + ACTIONS(9699), 1, + anon_sym_AMP_AMP, + ACTIONS(9701), 1, + anon_sym_PIPE_PIPE, + ACTIONS(9938), 1, + aux_sym_preproc_if_token2, + ACTIONS(9697), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + 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, + [279626] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -746929,15 +743301,16 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9970), 1, - anon_sym_unmanaged, - ACTIONS(9972), 1, - anon_sym_managed, - ACTIONS(10032), 1, - anon_sym_LT, - STATE(7608), 1, - sym_calling_convention, - STATE(6662), 9, + ACTIONS(9320), 1, + anon_sym_where, + STATE(6489), 1, + aux_sym__class_declaration_initializer_repeat4, + STATE(6694), 1, + sym_type_parameter_constraints_clause, + ACTIONS(9314), 2, + anon_sym_SEMI, + anon_sym_LBRACE, + STATE(6593), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -746947,7 +743320,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [282840] = 14, + [279681] = 16, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -746968,14 +743341,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9956), 1, - anon_sym_and, - ACTIONS(9958), 1, - anon_sym_or, - ACTIONS(10009), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - STATE(6663), 9, + ACTIONS(5575), 1, + anon_sym_STAR, + ACTIONS(8892), 1, + anon_sym_LPAREN, + ACTIONS(9788), 1, + anon_sym_LBRACE, + STATE(4582), 1, + sym_block, + STATE(7074), 1, + sym_parameter_list, + STATE(6594), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -746985,7 +743361,47 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [282892] = 13, + [279738] = 15, + ACTIONS(9077), 1, + aux_sym_preproc_region_token1, + ACTIONS(9079), 1, + aux_sym_preproc_endregion_token1, + ACTIONS(9081), 1, + aux_sym_preproc_line_token1, + ACTIONS(9083), 1, + aux_sym_preproc_pragma_token1, + ACTIONS(9085), 1, + aux_sym_preproc_nullable_token1, + ACTIONS(9087), 1, + aux_sym_preproc_error_token1, + ACTIONS(9089), 1, + aux_sym_preproc_warning_token1, + ACTIONS(9091), 1, + aux_sym_preproc_define_token1, + ACTIONS(9093), 1, + aux_sym_preproc_undef_token1, + ACTIONS(9095), 1, + sym_comment, + ACTIONS(9699), 1, + anon_sym_AMP_AMP, + ACTIONS(9701), 1, + anon_sym_PIPE_PIPE, + ACTIONS(9940), 1, + aux_sym_preproc_if_token2, + ACTIONS(9697), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + STATE(6595), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + [279793] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -747006,12 +743422,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10034), 1, + ACTIONS(9535), 1, anon_sym_COMMA, - ACTIONS(9491), 2, + STATE(6597), 1, + aux_sym_base_list_repeat1, + ACTIONS(9462), 3, + anon_sym_SEMI, anon_sym_LBRACE, anon_sym_where, - STATE(6664), 10, + STATE(6596), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -747021,8 +743440,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - aux_sym_base_list_repeat1, - [282942] = 15, + [279846] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -747043,15 +743461,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8142), 1, - anon_sym_DOT, - ACTIONS(9335), 1, - anon_sym_LBRACE, - ACTIONS(10037), 1, + ACTIONS(9942), 1, + anon_sym_COMMA, + ACTIONS(9457), 3, anon_sym_SEMI, - STATE(7431), 1, - sym_declaration_list, - STATE(6665), 9, + anon_sym_LBRACE, + anon_sym_where, + STATE(6597), 10, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -747061,7 +743477,8 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [282996] = 15, + aux_sym_base_list_repeat1, + [279897] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -747082,15 +743499,16 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8916), 1, - anon_sym_LPAREN, - ACTIONS(9337), 1, - anon_sym_LT, - STATE(7254), 1, - sym_type_parameter_list, - STATE(7263), 1, - sym_parameter_list, - STATE(6666), 9, + ACTIONS(9320), 1, + anon_sym_where, + STATE(6404), 1, + aux_sym__class_declaration_initializer_repeat4, + STATE(6694), 1, + sym_type_parameter_constraints_clause, + ACTIONS(9314), 2, + anon_sym_SEMI, + anon_sym_LBRACE, + STATE(6598), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -747100,7 +743518,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [283050] = 14, + [279952] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -747121,14 +743539,16 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9922), 1, - anon_sym_and, - ACTIONS(9924), 1, - anon_sym_or, - ACTIONS(6205), 2, - anon_sym_EQ_GT, - anon_sym_when, - STATE(6667), 9, + ACTIONS(9320), 1, + anon_sym_where, + STATE(6404), 1, + aux_sym__class_declaration_initializer_repeat4, + STATE(6694), 1, + sym_type_parameter_constraints_clause, + ACTIONS(9945), 2, + anon_sym_SEMI, + anon_sym_LBRACE, + STATE(6599), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -747138,7 +743558,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [283102] = 12, + [280007] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -747159,48 +743579,16 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4006), 4, + ACTIONS(5549), 1, anon_sym_LBRACK, + ACTIONS(9947), 1, + anon_sym_EQ, + STATE(6973), 1, + sym_bracketed_argument_list, + ACTIONS(9282), 2, anon_sym_COMMA, - anon_sym_GT, - anon_sym_STAR, - STATE(6668), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - [283150] = 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(10039), 1, - anon_sym_COMMA, - ACTIONS(7783), 2, anon_sym_RPAREN, - anon_sym_RBRACE, - STATE(6669), 10, + STATE(6600), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -747210,8 +743598,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - aux_sym__for_statement_conditions_repeat1, - [283200] = 12, + [280062] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -747232,12 +743619,16 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10042), 4, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_where, - anon_sym_EQ_GT, - STATE(6670), 9, + ACTIONS(6601), 1, + anon_sym_LBRACK, + ACTIONS(6603), 1, + anon_sym_STAR, + ACTIONS(9575), 1, + anon_sym_QMARK, + ACTIONS(3963), 2, + anon_sym_COMMA, + anon_sym_GT, + STATE(6601), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -747247,7 +743638,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [283248] = 15, + [280117] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -747268,15 +743659,16 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9970), 1, - anon_sym_unmanaged, - ACTIONS(9972), 1, - anon_sym_managed, - ACTIONS(10044), 1, - anon_sym_LT, - STATE(7582), 1, - sym_calling_convention, - STATE(6671), 9, + ACTIONS(4671), 1, + aux_sym_preproc_else_token1, + ACTIONS(4673), 1, + aux_sym_preproc_elif_token1, + ACTIONS(8908), 1, + aux_sym_preproc_if_token3, + STATE(7656), 2, + sym_preproc_else_in_attribute_list, + sym_preproc_elif_in_attribute_list, + STATE(6602), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -747286,7 +743678,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [283302] = 15, + [280172] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -747307,15 +743699,16 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9339), 1, - anon_sym_where, - ACTIONS(10007), 1, - anon_sym_LBRACE, - STATE(6448), 1, - aux_sym__class_declaration_initializer_repeat4, - STATE(6641), 1, - sym_type_parameter_constraints_clause, - STATE(6672), 9, + ACTIONS(4671), 1, + aux_sym_preproc_else_token1, + ACTIONS(4673), 1, + aux_sym_preproc_elif_token1, + ACTIONS(9949), 1, + aux_sym_preproc_if_token3, + STATE(7319), 2, + sym_preproc_else_in_attribute_list, + sym_preproc_elif_in_attribute_list, + STATE(6603), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -747325,36 +743718,37 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [283356] = 15, - ACTIONS(3), 1, + [280227] = 15, + ACTIONS(9077), 1, aux_sym_preproc_region_token1, - ACTIONS(5), 1, + ACTIONS(9079), 1, aux_sym_preproc_endregion_token1, - ACTIONS(7), 1, + ACTIONS(9081), 1, aux_sym_preproc_line_token1, - ACTIONS(9), 1, + ACTIONS(9083), 1, aux_sym_preproc_pragma_token1, - ACTIONS(11), 1, + ACTIONS(9085), 1, aux_sym_preproc_nullable_token1, - ACTIONS(13), 1, + ACTIONS(9087), 1, aux_sym_preproc_error_token1, - ACTIONS(15), 1, + ACTIONS(9089), 1, aux_sym_preproc_warning_token1, - ACTIONS(17), 1, + ACTIONS(9091), 1, aux_sym_preproc_define_token1, - ACTIONS(19), 1, + ACTIONS(9093), 1, aux_sym_preproc_undef_token1, - ACTIONS(21), 1, + ACTIONS(9095), 1, sym_comment, - ACTIONS(9339), 1, - anon_sym_where, - ACTIONS(10046), 1, - anon_sym_LBRACE, - STATE(6448), 1, - aux_sym__class_declaration_initializer_repeat4, - STATE(6641), 1, - sym_type_parameter_constraints_clause, - STATE(6673), 9, + ACTIONS(9699), 1, + anon_sym_AMP_AMP, + ACTIONS(9701), 1, + anon_sym_PIPE_PIPE, + ACTIONS(9951), 1, + aux_sym_preproc_if_token2, + ACTIONS(9697), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + STATE(6604), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -747364,7 +743758,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [283410] = 14, + [280282] = 16, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -747385,53 +743779,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9711), 1, - anon_sym_and, - ACTIONS(9713), 1, - anon_sym_or, - ACTIONS(10048), 2, - anon_sym_COMMA, + ACTIONS(9750), 1, + anon_sym_case, + ACTIONS(9752), 1, + anon_sym_default, + ACTIONS(9953), 1, anon_sym_RBRACE, - STATE(6674), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - [283462] = 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(9970), 1, - anon_sym_unmanaged, - ACTIONS(9972), 1, - anon_sym_managed, - ACTIONS(10050), 1, - anon_sym_LT, - STATE(7635), 1, - sym_calling_convention, - STATE(6675), 9, + STATE(6521), 1, + aux_sym_switch_body_repeat1, + STATE(6989), 1, + sym_switch_section, + STATE(6605), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -747441,7 +743799,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [283516] = 15, + [280339] = 16, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -747462,15 +743820,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9339), 1, - anon_sym_where, - ACTIONS(10052), 1, - anon_sym_SEMI, - STATE(6448), 1, - aux_sym__class_declaration_initializer_repeat4, - STATE(6641), 1, - sym_type_parameter_constraints_clause, - STATE(6676), 9, + ACTIONS(5573), 1, + anon_sym_LBRACE, + ACTIONS(8892), 1, + anon_sym_LPAREN, + ACTIONS(9955), 1, + anon_sym_STAR, + STATE(3082), 1, + sym_block, + STATE(7029), 1, + sym_parameter_list, + STATE(6606), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -747480,7 +743840,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [283570] = 15, + [280396] = 16, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -747501,15 +743861,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9956), 1, - anon_sym_and, - ACTIONS(9958), 1, - anon_sym_or, - ACTIONS(10009), 1, - anon_sym_COMMA, - ACTIONS(10054), 1, - anon_sym_RPAREN, - STATE(6677), 9, + ACTIONS(9750), 1, + anon_sym_case, + ACTIONS(9752), 1, + anon_sym_default, + ACTIONS(9957), 1, + anon_sym_RBRACE, + STATE(6541), 1, + aux_sym_switch_body_repeat1, + STATE(6989), 1, + sym_switch_section, + STATE(6607), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -747519,7 +743881,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [283624] = 12, + [280453] = 16, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -747540,12 +743902,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4014), 4, - anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_GT, + ACTIONS(5575), 1, anon_sym_STAR, - STATE(6678), 9, + ACTIONS(8892), 1, + anon_sym_LPAREN, + ACTIONS(9762), 1, + anon_sym_LBRACE, + STATE(3433), 1, + sym_block, + STATE(7098), 1, + sym_parameter_list, + STATE(6608), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -747555,7 +743922,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [283672] = 13, + [280510] = 16, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -747576,12 +743943,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10056), 1, - anon_sym_COMMA, - ACTIONS(10059), 2, - anon_sym_RBRACK, - anon_sym_GT, - STATE(6679), 10, + ACTIONS(5575), 1, + anon_sym_STAR, + ACTIONS(8892), 1, + anon_sym_LPAREN, + ACTIONS(9844), 1, + anon_sym_LBRACE, + STATE(3714), 1, + sym_block, + STATE(7178), 1, + sym_parameter_list, + STATE(6609), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -747591,8 +743963,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - aux_sym_type_argument_list_repeat1, - [283722] = 15, + [280567] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -747613,15 +743984,16 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9339), 1, + ACTIONS(9320), 1, anon_sym_where, - ACTIONS(10061), 1, - anon_sym_LBRACE, - STATE(6448), 1, + STATE(6404), 1, aux_sym__class_declaration_initializer_repeat4, - STATE(6641), 1, + STATE(6694), 1, sym_type_parameter_constraints_clause, - STATE(6680), 9, + ACTIONS(9959), 2, + anon_sym_SEMI, + anon_sym_LBRACE, + STATE(6610), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -747631,7 +744003,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [283776] = 15, + [280622] = 16, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -747652,15 +744024,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9970), 1, - anon_sym_unmanaged, - ACTIONS(9972), 1, - anon_sym_managed, - ACTIONS(10063), 1, - anon_sym_LT, - STATE(7651), 1, - sym_calling_convention, - STATE(6681), 9, + ACTIONS(5575), 1, + anon_sym_STAR, + ACTIONS(8892), 1, + anon_sym_LPAREN, + ACTIONS(9936), 1, + anon_sym_LBRACE, + STATE(3283), 1, + sym_block, + STATE(7059), 1, + sym_parameter_list, + STATE(6611), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -747670,7 +744044,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [283830] = 12, + [280679] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -747691,12 +744065,16 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(3973), 4, - anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_GT, - anon_sym_STAR, - STATE(6682), 9, + ACTIONS(9320), 1, + anon_sym_where, + STATE(6404), 1, + aux_sym__class_declaration_initializer_repeat4, + STATE(6694), 1, + sym_type_parameter_constraints_clause, + ACTIONS(9330), 2, + anon_sym_SEMI, + anon_sym_LBRACE, + STATE(6612), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -747706,7 +744084,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [283878] = 15, + [280734] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -747727,15 +744105,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9310), 1, + ACTIONS(9455), 1, + anon_sym_COMMA, + STATE(6477), 1, + aux_sym_record_base_repeat1, + ACTIONS(9961), 3, + anon_sym_SEMI, anon_sym_LBRACE, - ACTIONS(9314), 1, - anon_sym_EQ_GT, - STATE(2836), 1, - sym_accessor_list, - STATE(7456), 1, - sym_arrow_expression_clause, - STATE(6683), 9, + anon_sym_where, + STATE(6613), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -747745,7 +744123,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [283932] = 15, + [280787] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -747766,15 +744144,16 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9948), 1, - anon_sym_COLON, - ACTIONS(9950), 1, + ACTIONS(9320), 1, + anon_sym_where, + STATE(6549), 1, + aux_sym__class_declaration_initializer_repeat4, + STATE(6694), 1, + sym_type_parameter_constraints_clause, + ACTIONS(9862), 2, + anon_sym_SEMI, anon_sym_LBRACE, - STATE(7116), 1, - sym_base_list, - STATE(7506), 1, - sym_enum_member_declaration_list, - STATE(6684), 9, + STATE(6614), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -747784,7 +744163,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [283986] = 15, + [280842] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -747805,15 +744184,16 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9310), 1, + ACTIONS(9320), 1, + anon_sym_where, + STATE(6564), 1, + aux_sym__class_declaration_initializer_repeat4, + STATE(6694), 1, + sym_type_parameter_constraints_clause, + ACTIONS(9868), 2, + anon_sym_SEMI, anon_sym_LBRACE, - ACTIONS(9314), 1, - anon_sym_EQ_GT, - STATE(2811), 1, - sym_accessor_list, - STATE(7650), 1, - sym_arrow_expression_clause, - STATE(6685), 9, + STATE(6615), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -747823,7 +744203,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [284040] = 15, + [280897] = 16, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -747844,15 +744224,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9970), 1, - anon_sym_unmanaged, - ACTIONS(9972), 1, - anon_sym_managed, - ACTIONS(10065), 1, - anon_sym_LT, - STATE(7664), 1, - sym_calling_convention, - STATE(6686), 9, + ACTIONS(8360), 1, + anon_sym_COLON, + ACTIONS(9963), 1, + anon_sym_when, + ACTIONS(9965), 1, + anon_sym_and, + ACTIONS(9967), 1, + anon_sym_or, + STATE(7437), 1, + sym_when_clause, + STATE(6616), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -747862,7 +744244,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [284094] = 15, + [280954] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -747883,15 +744265,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9948), 1, - anon_sym_COLON, - ACTIONS(9950), 1, + ACTIONS(9286), 1, anon_sym_LBRACE, - STATE(7187), 1, - sym_base_list, - STATE(7451), 1, - sym_enum_member_declaration_list, - STATE(6687), 9, + ACTIONS(9290), 1, + anon_sym_EQ_GT, + STATE(2767), 1, + sym_accessor_list, + STATE(7350), 1, + sym_arrow_expression_clause, + STATE(6617), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -747901,7 +744283,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [284148] = 12, + [281008] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -747922,12 +744304,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(3132), 4, - anon_sym_while, - anon_sym_catch, - anon_sym_finally, - anon_sym_else, - STATE(6688), 9, + ACTIONS(9969), 1, + anon_sym_LT, + ACTIONS(9971), 1, + anon_sym_unmanaged, + ACTIONS(9973), 1, + anon_sym_managed, + STATE(7512), 1, + sym_calling_convention, + STATE(6618), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -747937,7 +744322,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [284196] = 15, + [281062] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -747958,15 +744343,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9970), 1, - anon_sym_unmanaged, - ACTIONS(9972), 1, - anon_sym_managed, - ACTIONS(10067), 1, - anon_sym_LT, - STATE(7676), 1, - sym_calling_convention, - STATE(6689), 9, + ACTIONS(3651), 1, + anon_sym_EQ_GT, + ACTIONS(9975), 3, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_RPAREN, + STATE(6619), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -747976,7 +744359,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [284250] = 15, + [281112] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -747997,15 +744380,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9310), 1, + ACTIONS(9286), 1, anon_sym_LBRACE, - ACTIONS(9314), 1, + ACTIONS(9290), 1, anon_sym_EQ_GT, - STATE(2728), 1, + STATE(2658), 1, sym_accessor_list, - STATE(7603), 1, + STATE(7305), 1, sym_arrow_expression_clause, - STATE(6690), 9, + STATE(6620), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -748015,7 +744398,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [284304] = 12, + [281166] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -748036,12 +744419,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10069), 4, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_where, - anon_sym_EQ_GT, - STATE(6691), 9, + ACTIONS(9977), 1, + anon_sym_EQ, + ACTIONS(9979), 3, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_RPAREN, + STATE(6621), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -748051,7 +744435,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [284352] = 13, + [281216] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -748072,13 +744456,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(3667), 1, + ACTIONS(9286), 1, + anon_sym_LBRACE, + ACTIONS(9290), 1, anon_sym_EQ_GT, - ACTIONS(10071), 3, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_RPAREN, - STATE(6692), 9, + STATE(2805), 1, + sym_accessor_list, + STATE(7444), 1, + sym_arrow_expression_clause, + STATE(6622), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -748088,7 +744474,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [284402] = 15, + [281270] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -748109,15 +744495,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9339), 1, - anon_sym_where, - ACTIONS(10073), 1, - anon_sym_SEMI, - STATE(6641), 1, - sym_type_parameter_constraints_clause, - STATE(6705), 1, - aux_sym__class_declaration_initializer_repeat4, - STATE(6693), 9, + ACTIONS(9981), 1, + anon_sym_COMMA, + ACTIONS(9983), 1, + anon_sym_RPAREN, + ACTIONS(9985), 1, + anon_sym_and, + ACTIONS(9987), 1, + anon_sym_or, + STATE(6623), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -748127,7 +744513,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [284456] = 14, + [281324] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -748148,14 +744534,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(6678), 1, + ACTIONS(6601), 1, anon_sym_LBRACK, - ACTIONS(9655), 1, + ACTIONS(6603), 1, + anon_sym_STAR, + ACTIONS(6705), 1, anon_sym_QMARK, - ACTIONS(4018), 2, + ACTIONS(9573), 1, anon_sym_COMMA, - anon_sym_GT, - STATE(6694), 9, + STATE(6624), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -748165,7 +744552,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [284508] = 15, + [281378] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -748186,15 +744573,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9956), 1, - anon_sym_and, - ACTIONS(9958), 1, - anon_sym_or, - ACTIONS(10009), 1, - anon_sym_COMMA, - ACTIONS(10075), 1, - anon_sym_RPAREN, - STATE(6695), 9, + ACTIONS(9989), 4, + sym_interpolation_end_quote, + sym_interpolation_open_brace, + sym_interpolation_string_content, + sym_escape_sequence, + STATE(6625), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -748204,7 +744588,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [284562] = 15, + [281426] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -748225,15 +744609,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9339), 1, - anon_sym_where, - ACTIONS(9392), 1, + ACTIONS(9991), 4, + anon_sym_SEMI, anon_sym_LBRACE, - STATE(6448), 1, - aux_sym__class_declaration_initializer_repeat4, - STATE(6641), 1, - sym_type_parameter_constraints_clause, - STATE(6696), 9, + anon_sym_where, + anon_sym_EQ_GT, + STATE(6626), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -748243,7 +744624,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [284616] = 12, + [281474] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -748264,12 +744645,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10077), 4, - sym_interpolation_end_quote, - sym_interpolation_open_brace, - sym_interpolation_string_content, - sym_escape_sequence, - STATE(6697), 9, + ACTIONS(3998), 4, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_GT, + anon_sym_STAR, + STATE(6627), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -748279,7 +744660,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [284664] = 14, + [281522] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -748300,14 +744681,51 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9600), 1, + ACTIONS(9993), 1, anon_sym_COMMA, - STATE(6658), 1, - aux_sym_base_list_repeat1, - ACTIONS(9537), 2, + ACTIONS(9996), 2, + anon_sym_RBRACK, + anon_sym_RPAREN, + STATE(6628), 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_bracketed_parameter_list_repeat1, + [281572] = 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(10000), 1, + anon_sym_COLON, + STATE(7160), 1, + sym_base_list, + ACTIONS(9998), 2, + anon_sym_SEMI, anon_sym_LBRACE, - anon_sym_where, - STATE(6698), 9, + STATE(6629), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -748317,7 +744735,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [284716] = 13, + [281624] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -748338,13 +744756,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9956), 1, - anon_sym_and, - ACTIONS(6067), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_or, - STATE(6699), 9, + ACTIONS(10002), 1, + anon_sym_SEMI, + ACTIONS(10004), 1, + anon_sym_LBRACE, + STATE(2001), 1, + sym__declaration_list_body, + STATE(7273), 1, + sym_declaration_list, + STATE(6630), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -748354,7 +744774,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [284766] = 15, + [281678] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -748375,15 +744795,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9339), 1, - anon_sym_where, - ACTIONS(9388), 1, + ACTIONS(10002), 1, + anon_sym_SEMI, + ACTIONS(10004), 1, anon_sym_LBRACE, - STATE(6448), 1, - aux_sym__class_declaration_initializer_repeat4, - STATE(6641), 1, - sym_type_parameter_constraints_clause, - STATE(6700), 9, + STATE(1980), 1, + sym__declaration_list_body, + STATE(7273), 1, + sym_declaration_list, + STATE(6631), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -748393,7 +744813,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [284820] = 14, + [281732] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -748414,14 +744834,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9600), 1, + ACTIONS(9985), 1, + anon_sym_and, + ACTIONS(6095), 3, anon_sym_COMMA, - STATE(6664), 1, - aux_sym_base_list_repeat1, - ACTIONS(9537), 2, - anon_sym_LBRACE, - anon_sym_where, - STATE(6701), 9, + anon_sym_RPAREN, + anon_sym_or, + STATE(6632), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -748431,7 +744850,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [284872] = 15, + [281782] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -748452,15 +744871,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9339), 1, - anon_sym_where, - ACTIONS(10079), 1, + ACTIONS(10002), 1, + anon_sym_SEMI, + ACTIONS(10004), 1, anon_sym_LBRACE, - STATE(6618), 1, - aux_sym__class_declaration_initializer_repeat4, - STATE(6641), 1, - sym_type_parameter_constraints_clause, - STATE(6702), 9, + STATE(1992), 1, + sym__declaration_list_body, + STATE(7273), 1, + sym_declaration_list, + STATE(6633), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -748470,7 +744889,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [284926] = 15, + [281836] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -748491,15 +744910,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9956), 1, - anon_sym_and, - ACTIONS(9958), 1, - anon_sym_or, - ACTIONS(10009), 1, - anon_sym_COMMA, - ACTIONS(10081), 1, - anon_sym_RPAREN, - STATE(6703), 9, + ACTIONS(9320), 1, + anon_sym_where, + ACTIONS(10006), 1, + anon_sym_SEMI, + STATE(6656), 1, + aux_sym__class_declaration_initializer_repeat4, + STATE(6694), 1, + sym_type_parameter_constraints_clause, + STATE(6634), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -748509,34 +744928,36 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [284980] = 13, - ACTIONS(9097), 1, + [281890] = 15, + ACTIONS(3), 1, aux_sym_preproc_region_token1, - ACTIONS(9099), 1, + ACTIONS(5), 1, aux_sym_preproc_endregion_token1, - ACTIONS(9101), 1, + ACTIONS(7), 1, aux_sym_preproc_line_token1, - ACTIONS(9103), 1, + ACTIONS(9), 1, aux_sym_preproc_pragma_token1, - ACTIONS(9105), 1, + ACTIONS(11), 1, aux_sym_preproc_nullable_token1, - ACTIONS(9107), 1, + ACTIONS(13), 1, aux_sym_preproc_error_token1, - ACTIONS(9109), 1, + ACTIONS(15), 1, aux_sym_preproc_warning_token1, - ACTIONS(9111), 1, + ACTIONS(17), 1, aux_sym_preproc_define_token1, - ACTIONS(9113), 1, + ACTIONS(19), 1, aux_sym_preproc_undef_token1, - ACTIONS(9115), 1, + ACTIONS(21), 1, sym_comment, - ACTIONS(10085), 1, - aux_sym_string_literal_content_token1, - ACTIONS(10083), 3, - anon_sym_DQUOTE, - aux_sym_string_literal_content_token2, - sym_escape_sequence, - STATE(6704), 9, + ACTIONS(10002), 1, + anon_sym_SEMI, + ACTIONS(10004), 1, + anon_sym_LBRACE, + STATE(1996), 1, + sym__declaration_list_body, + STATE(7273), 1, + sym_declaration_list, + STATE(6635), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -748546,7 +744967,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [285030] = 15, + [281944] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -748567,15 +744988,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9339), 1, - anon_sym_where, - ACTIONS(10087), 1, + ACTIONS(10008), 4, anon_sym_SEMI, - STATE(6448), 1, - aux_sym__class_declaration_initializer_repeat4, - STATE(6641), 1, - sym_type_parameter_constraints_clause, - STATE(6705), 9, + anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_where, + STATE(6636), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -748585,7 +745003,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [285084] = 15, + [281992] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -748606,15 +745024,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9956), 1, - anon_sym_and, - ACTIONS(9958), 1, - anon_sym_or, - ACTIONS(10009), 1, + ACTIONS(3651), 1, + anon_sym_EQ_GT, + ACTIONS(10010), 1, + anon_sym_EQ, + ACTIONS(10012), 1, anon_sym_COMMA, - ACTIONS(10089), 1, + ACTIONS(10015), 1, anon_sym_RPAREN, - STATE(6706), 9, + STATE(6637), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -748624,7 +745042,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [285138] = 15, + [282046] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -748645,15 +745063,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9339), 1, - anon_sym_where, - ACTIONS(10091), 1, - anon_sym_LBRACE, - STATE(6641), 1, - sym_type_parameter_constraints_clause, - STATE(6709), 1, - aux_sym__class_declaration_initializer_repeat4, - STATE(6707), 9, + ACTIONS(10017), 4, + sym_interpolation_end_quote, + sym_interpolation_open_brace, + sym_interpolation_string_content, + sym_escape_sequence, + STATE(6638), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -748663,7 +745078,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [285192] = 14, + [282094] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -748684,14 +745099,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10093), 1, + ACTIONS(8892), 1, anon_sym_LPAREN, - ACTIONS(10097), 1, - sym_integer_literal, - ACTIONS(10095), 2, - anon_sym_default, - anon_sym_hidden, - STATE(6708), 9, + ACTIONS(9318), 1, + anon_sym_LT, + STATE(7078), 1, + sym_type_parameter_list, + STATE(7082), 1, + sym_parameter_list, + STATE(6639), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -748701,7 +745117,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [285244] = 15, + [282148] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -748722,15 +745138,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9339), 1, - anon_sym_where, - ACTIONS(10099), 1, - anon_sym_LBRACE, - STATE(6448), 1, - aux_sym__class_declaration_initializer_repeat4, - STATE(6641), 1, - sym_type_parameter_constraints_clause, - STATE(6709), 9, + ACTIONS(3651), 1, + anon_sym_EQ_GT, + ACTIONS(9569), 1, + anon_sym_EQ, + ACTIONS(9571), 1, + anon_sym_RPAREN, + ACTIONS(10019), 1, + anon_sym_COMMA, + STATE(6640), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -748740,7 +745156,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [285298] = 15, + [282202] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -748761,15 +745177,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9339), 1, - anon_sym_where, - ACTIONS(9386), 1, + ACTIONS(10004), 1, anon_sym_LBRACE, - STATE(6448), 1, - aux_sym__class_declaration_initializer_repeat4, - STATE(6641), 1, - sym_type_parameter_constraints_clause, - STATE(6710), 9, + ACTIONS(10023), 1, + anon_sym_SEMI, + STATE(2073), 1, + sym__declaration_list_body, + STATE(7310), 1, + sym_declaration_list, + STATE(6641), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -748779,7 +745195,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [285352] = 13, + [282256] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -748800,13 +745216,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9922), 1, - anon_sym_and, - ACTIONS(6067), 3, + ACTIONS(10025), 4, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_where, anon_sym_EQ_GT, - anon_sym_when, - anon_sym_or, - STATE(6711), 9, + STATE(6642), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -748816,7 +745231,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [285402] = 15, + [282304] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -748837,15 +745252,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9339), 1, - anon_sym_where, - ACTIONS(10091), 1, - anon_sym_LBRACE, - STATE(6448), 1, - aux_sym__class_declaration_initializer_repeat4, - STATE(6641), 1, - sym_type_parameter_constraints_clause, - STATE(6712), 9, + ACTIONS(3651), 1, + anon_sym_EQ_GT, + ACTIONS(10027), 1, + anon_sym_EQ, + ACTIONS(10029), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + STATE(6643), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -748855,7 +745269,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [285456] = 15, + [282356] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -748876,15 +745290,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9339), 1, - anon_sym_where, - ACTIONS(10079), 1, + ACTIONS(10004), 1, anon_sym_LBRACE, - STATE(6448), 1, - aux_sym__class_declaration_initializer_repeat4, - STATE(6641), 1, - sym_type_parameter_constraints_clause, - STATE(6713), 9, + ACTIONS(10023), 1, + anon_sym_SEMI, + STATE(2076), 1, + sym__declaration_list_body, + STATE(7310), 1, + sym_declaration_list, + STATE(6644), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -748894,7 +745308,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [285510] = 15, + [282410] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -748915,15 +745329,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9339), 1, - anon_sym_where, - ACTIONS(10101), 1, - anon_sym_LBRACE, - STATE(6448), 1, - aux_sym__class_declaration_initializer_repeat4, - STATE(6641), 1, - sym_type_parameter_constraints_clause, - STATE(6714), 9, + ACTIONS(9981), 1, + anon_sym_COMMA, + ACTIONS(9985), 1, + anon_sym_and, + ACTIONS(9987), 1, + anon_sym_or, + ACTIONS(10031), 1, + anon_sym_RPAREN, + STATE(6645), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -748933,7 +745347,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [285564] = 15, + [282464] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -748954,15 +745368,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(3667), 1, - anon_sym_EQ_GT, - ACTIONS(9630), 1, + ACTIONS(10033), 1, anon_sym_EQ, - ACTIONS(9668), 1, - anon_sym_RPAREN, - ACTIONS(10103), 1, + ACTIONS(10029), 3, anon_sym_COMMA, - STATE(6715), 9, + anon_sym_RBRACK, + anon_sym_RPAREN, + STATE(6646), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -748972,7 +745384,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [285618] = 15, + [282514] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -748993,15 +745405,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(6678), 1, - anon_sym_LBRACK, - ACTIONS(6680), 1, - anon_sym_STAR, - ACTIONS(6716), 1, - anon_sym_QMARK, - ACTIONS(6911), 1, - anon_sym_DOT, - STATE(6716), 9, + ACTIONS(9816), 1, + anon_sym_and, + ACTIONS(9818), 1, + anon_sym_or, + ACTIONS(6107), 2, + anon_sym_EQ_GT, + anon_sym_when, + STATE(6647), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -749011,7 +745422,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [285672] = 14, + [282566] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -749032,14 +745443,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9711), 1, - anon_sym_and, - ACTIONS(9713), 1, - anon_sym_or, - ACTIONS(10009), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - STATE(6717), 9, + ACTIONS(10035), 4, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_where, + anon_sym_EQ_GT, + STATE(6648), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -749049,7 +745458,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [285724] = 13, + [282614] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -749070,13 +745479,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(5373), 2, - anon_sym_and, - anon_sym_or, - ACTIONS(5427), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - STATE(6718), 9, + ACTIONS(9320), 1, + anon_sym_where, + ACTIONS(10037), 1, + anon_sym_SEMI, + STATE(6404), 1, + aux_sym__class_declaration_initializer_repeat4, + STATE(6694), 1, + sym_type_parameter_constraints_clause, + STATE(6649), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -749086,7 +745497,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [285774] = 15, + [282668] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -749107,15 +745518,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9339), 1, - anon_sym_where, - ACTIONS(10107), 1, - anon_sym_SEMI, - STATE(6623), 1, - aux_sym__class_declaration_initializer_repeat4, - STATE(6641), 1, - sym_type_parameter_constraints_clause, - STATE(6719), 9, + ACTIONS(3953), 4, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_GT, + anon_sym_STAR, + STATE(6650), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -749125,7 +745533,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [285828] = 12, + [282716] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -749146,12 +745554,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10109), 4, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_where, - anon_sym_EQ_GT, - STATE(6720), 9, + ACTIONS(10039), 1, + anon_sym_LPAREN, + ACTIONS(10043), 1, + sym_integer_literal, + ACTIONS(10041), 2, + anon_sym_default, + anon_sym_hidden, + STATE(6651), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -749161,7 +745571,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [285876] = 12, + [282768] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -749182,12 +745592,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10111), 4, + ACTIONS(10000), 1, + anon_sym_COLON, + STATE(7103), 1, + sym_base_list, + ACTIONS(10045), 2, anon_sym_SEMI, anon_sym_LBRACE, - anon_sym_where, - anon_sym_EQ_GT, - STATE(6721), 9, + STATE(6652), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -749197,34 +745609,33 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [285924] = 13, - ACTIONS(9097), 1, + [282820] = 12, + ACTIONS(3), 1, aux_sym_preproc_region_token1, - ACTIONS(9099), 1, + ACTIONS(5), 1, aux_sym_preproc_endregion_token1, - ACTIONS(9101), 1, + ACTIONS(7), 1, aux_sym_preproc_line_token1, - ACTIONS(9103), 1, + ACTIONS(9), 1, aux_sym_preproc_pragma_token1, - ACTIONS(9105), 1, + ACTIONS(11), 1, aux_sym_preproc_nullable_token1, - ACTIONS(9107), 1, + ACTIONS(13), 1, aux_sym_preproc_error_token1, - ACTIONS(9109), 1, + ACTIONS(15), 1, aux_sym_preproc_warning_token1, - ACTIONS(9111), 1, + ACTIONS(17), 1, aux_sym_preproc_define_token1, - ACTIONS(9113), 1, + ACTIONS(19), 1, aux_sym_preproc_undef_token1, - ACTIONS(9115), 1, + ACTIONS(21), 1, sym_comment, - ACTIONS(10085), 1, - aux_sym_string_literal_content_token1, - ACTIONS(10083), 3, - anon_sym_DQUOTE, - aux_sym_string_literal_content_token2, - sym_escape_sequence, - STATE(6722), 9, + ACTIONS(3986), 4, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_GT, + anon_sym_STAR, + STATE(6653), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -749234,7 +745645,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [285974] = 15, + [282868] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -749255,15 +745666,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8916), 1, - anon_sym_LPAREN, - ACTIONS(9337), 1, + ACTIONS(9971), 1, + anon_sym_unmanaged, + ACTIONS(9973), 1, + anon_sym_managed, + ACTIONS(10047), 1, anon_sym_LT, - STATE(6660), 1, - sym_parameter_list, - STATE(7121), 1, - sym_type_parameter_list, - STATE(6723), 9, + STATE(7294), 1, + sym_calling_convention, + STATE(6654), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -749273,7 +745684,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [286028] = 12, + [282922] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -749294,12 +745705,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10113), 4, - sym_interpolation_end_quote, - sym_interpolation_open_brace, - sym_interpolation_string_content, - sym_escape_sequence, - STATE(6724), 9, + ACTIONS(9816), 1, + anon_sym_and, + ACTIONS(6095), 3, + anon_sym_EQ_GT, + anon_sym_when, + anon_sym_or, + STATE(6655), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -749309,7 +745721,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [286076] = 12, + [282972] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -749330,12 +745742,53 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10115), 4, + ACTIONS(9320), 1, + anon_sym_where, + ACTIONS(10049), 1, anon_sym_SEMI, + STATE(6404), 1, + aux_sym__class_declaration_initializer_repeat4, + STATE(6694), 1, + sym_type_parameter_constraints_clause, + STATE(6656), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + [283026] = 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(9830), 1, + anon_sym_and, + ACTIONS(9832), 1, + anon_sym_or, + ACTIONS(1893), 2, anon_sym_COMMA, - anon_sym_LBRACE, - anon_sym_where, - STATE(6725), 9, + anon_sym_RBRACK, + STATE(6657), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -749345,34 +745798,33 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [286124] = 13, - ACTIONS(9097), 1, + [283078] = 13, + ACTIONS(3), 1, aux_sym_preproc_region_token1, - ACTIONS(9099), 1, + ACTIONS(5), 1, aux_sym_preproc_endregion_token1, - ACTIONS(9101), 1, + ACTIONS(7), 1, aux_sym_preproc_line_token1, - ACTIONS(9103), 1, + ACTIONS(9), 1, aux_sym_preproc_pragma_token1, - ACTIONS(9105), 1, + ACTIONS(11), 1, aux_sym_preproc_nullable_token1, - ACTIONS(9107), 1, + ACTIONS(13), 1, aux_sym_preproc_error_token1, - ACTIONS(9109), 1, + ACTIONS(15), 1, aux_sym_preproc_warning_token1, - ACTIONS(9111), 1, + ACTIONS(17), 1, aux_sym_preproc_define_token1, - ACTIONS(9113), 1, + ACTIONS(19), 1, aux_sym_preproc_undef_token1, - ACTIONS(9115), 1, + ACTIONS(21), 1, sym_comment, - ACTIONS(10119), 1, - aux_sym_string_literal_content_token1, - ACTIONS(10117), 3, - anon_sym_DQUOTE, - aux_sym_string_literal_content_token2, - sym_escape_sequence, - STATE(6726), 9, + ACTIONS(10051), 1, + anon_sym_COMMA, + ACTIONS(7696), 2, + anon_sym_RPAREN, + anon_sym_RBRACE, + STATE(6658), 10, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -749382,7 +745834,8 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [286174] = 13, + aux_sym__for_statement_conditions_repeat1, + [283128] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -749403,13 +745856,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10121), 1, - anon_sym_EQ, - ACTIONS(10019), 3, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_RPAREN, - STATE(6727), 9, + ACTIONS(8892), 1, + anon_sym_LPAREN, + ACTIONS(9318), 1, + anon_sym_LT, + STATE(6626), 1, + sym_parameter_list, + STATE(7110), 1, + sym_type_parameter_list, + STATE(6659), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -749419,7 +745874,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [286224] = 14, + [283182] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -749440,14 +745895,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9956), 1, + ACTIONS(9985), 1, anon_sym_and, - ACTIONS(9958), 1, + ACTIONS(9987), 1, anon_sym_or, - ACTIONS(10048), 2, + ACTIONS(9981), 2, anon_sym_COMMA, anon_sym_RPAREN, - STATE(6728), 9, + STATE(6660), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -749457,7 +745912,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [286276] = 14, + [283234] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -749478,13 +745933,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8873), 1, - anon_sym_RBRACK, - ACTIONS(10123), 1, + ACTIONS(9647), 1, anon_sym_COMMA, - STATE(6955), 1, - aux_sym_global_attribute_repeat1, - STATE(6729), 9, + STATE(6669), 1, + aux_sym_base_list_repeat1, + ACTIONS(9451), 2, + anon_sym_SEMI, + anon_sym_LBRACE, + STATE(6661), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -749494,7 +745950,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [286327] = 14, + [283286] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -749515,13 +745971,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10125), 1, + ACTIONS(9647), 1, anon_sym_COMMA, - ACTIONS(10127), 1, - anon_sym_RBRACK, - STATE(6887), 1, - aux_sym_argument_list_repeat1, - STATE(6730), 9, + STATE(6670), 1, + aux_sym_base_list_repeat1, + ACTIONS(9451), 2, + anon_sym_SEMI, + anon_sym_LBRACE, + STATE(6662), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -749531,7 +745988,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [286378] = 14, + [283338] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -749552,13 +746009,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8883), 1, - anon_sym_RBRACK, - ACTIONS(10129), 1, + ACTIONS(9985), 1, + anon_sym_and, + ACTIONS(9987), 1, + anon_sym_or, + ACTIONS(10054), 2, anon_sym_COMMA, - STATE(6955), 1, - aux_sym_global_attribute_repeat1, - STATE(6731), 9, + anon_sym_RPAREN, + STATE(6663), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -749568,7 +746026,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [286429] = 14, + [283390] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -749589,13 +746047,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9335), 1, - anon_sym_LBRACE, - ACTIONS(10131), 1, - anon_sym_SEMI, - STATE(7394), 1, - sym_declaration_list, - STATE(6732), 9, + ACTIONS(9830), 1, + anon_sym_and, + ACTIONS(9832), 1, + anon_sym_or, + ACTIONS(10054), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + STATE(6664), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -749605,7 +746064,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [286480] = 13, + [283442] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -749626,11 +746085,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(7900), 1, - anon_sym_RBRACK, - ACTIONS(10133), 1, - anon_sym_COMMA, - STATE(6733), 10, + ACTIONS(6601), 1, + anon_sym_LBRACK, + ACTIONS(6603), 1, + anon_sym_STAR, + ACTIONS(6705), 1, + anon_sym_QMARK, + ACTIONS(6889), 1, + anon_sym_DOT, + STATE(6665), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -749640,8 +746103,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - aux_sym_array_rank_specifier_repeat1, - [286529] = 14, + [283496] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -749662,13 +746124,49 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10136), 1, - anon_sym_COMMA, - ACTIONS(10138), 1, - anon_sym_RBRACE, - STATE(6847), 1, - aux_sym_positional_pattern_clause_repeat1, - STATE(6734), 9, + ACTIONS(10056), 4, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_where, + anon_sym_EQ_GT, + STATE(6666), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + [283544] = 13, + ACTIONS(9077), 1, + aux_sym_preproc_region_token1, + ACTIONS(9079), 1, + aux_sym_preproc_endregion_token1, + ACTIONS(9081), 1, + aux_sym_preproc_line_token1, + ACTIONS(9083), 1, + aux_sym_preproc_pragma_token1, + ACTIONS(9085), 1, + aux_sym_preproc_nullable_token1, + ACTIONS(9087), 1, + aux_sym_preproc_error_token1, + ACTIONS(9089), 1, + aux_sym_preproc_warning_token1, + ACTIONS(9091), 1, + aux_sym_preproc_define_token1, + ACTIONS(9093), 1, + aux_sym_preproc_undef_token1, + ACTIONS(9095), 1, + sym_comment, + ACTIONS(10060), 1, + aux_sym_string_literal_content_token1, + ACTIONS(10058), 3, + anon_sym_DQUOTE, + aux_sym_string_literal_content_token2, + sym_escape_sequence, + STATE(6667), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -749678,7 +746176,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [286580] = 13, + [283594] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -749699,12 +746197,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10140), 1, - anon_sym_EQ, - ACTIONS(10023), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - STATE(6735), 9, + ACTIONS(3124), 4, + anon_sym_while, + anon_sym_catch, + anon_sym_finally, + anon_sym_else, + STATE(6668), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -749714,7 +746212,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [286629] = 14, + [283642] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -749735,13 +746233,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10142), 1, + ACTIONS(9647), 1, anon_sym_COMMA, - ACTIONS(10144), 1, - anon_sym_RBRACE, - STATE(6818), 1, - aux_sym_positional_pattern_clause_repeat1, - STATE(6736), 9, + STATE(6670), 1, + aux_sym_base_list_repeat1, + ACTIONS(9462), 2, + anon_sym_SEMI, + anon_sym_LBRACE, + STATE(6669), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -749751,7 +746250,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [286680] = 12, + [283694] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -749772,11 +746271,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10146), 3, + ACTIONS(10062), 1, + anon_sym_COMMA, + ACTIONS(9457), 2, anon_sym_SEMI, anon_sym_LBRACE, - anon_sym_EQ_GT, - STATE(6737), 9, + STATE(6670), 10, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -749786,7 +746286,8 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [286727] = 12, + aux_sym_base_list_repeat1, + [283744] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -749807,11 +746308,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10148), 3, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_EQ_GT, - STATE(6738), 9, + ACTIONS(3963), 1, + anon_sym_GT, + ACTIONS(6601), 1, + anon_sym_LBRACK, + ACTIONS(9573), 1, + anon_sym_COMMA, + ACTIONS(9575), 1, + anon_sym_QMARK, + STATE(6671), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -749821,7 +746326,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [286774] = 14, + [283798] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -749842,13 +746347,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(2697), 1, + ACTIONS(3963), 1, + anon_sym_GT, + ACTIONS(6601), 1, + anon_sym_LBRACK, + ACTIONS(6603), 1, + anon_sym_STAR, + ACTIONS(9573), 1, anon_sym_COMMA, - ACTIONS(7839), 1, - anon_sym_RBRACK, - STATE(6733), 1, - aux_sym_array_rank_specifier_repeat1, - STATE(6739), 9, + STATE(6672), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -749858,7 +746365,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [286825] = 14, + [283852] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -749879,13 +746386,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10150), 1, - anon_sym_COMMA, - ACTIONS(10152), 1, - anon_sym_RBRACK, - STATE(6746), 1, - aux_sym_argument_list_repeat1, - STATE(6740), 9, + ACTIONS(10000), 1, + anon_sym_COLON, + STATE(7186), 1, + sym_base_list, + ACTIONS(10065), 2, + anon_sym_SEMI, + anon_sym_LBRACE, + STATE(6673), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -749895,7 +746403,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [286876] = 14, + [283904] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -749916,13 +746424,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10154), 1, - anon_sym_COMMA, - ACTIONS(10156), 1, - anon_sym_RPAREN, - STATE(6927), 1, - aux_sym_parenthesized_variable_designation_repeat1, - STATE(6741), 9, + ACTIONS(3128), 4, + anon_sym_while, + anon_sym_catch, + anon_sym_finally, + anon_sym_else, + STATE(6674), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -749932,7 +746439,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [286927] = 14, + [283952] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -749953,13 +746460,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(2799), 1, - anon_sym_RBRACE, - ACTIONS(10158), 1, + ACTIONS(10067), 1, anon_sym_COMMA, - STATE(6809), 1, - aux_sym_anonymous_object_creation_expression_repeat1, - STATE(6742), 9, + ACTIONS(9453), 3, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_where, + STATE(6675), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -749969,7 +746476,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [286978] = 14, + [284002] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -749990,13 +746497,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10160), 1, - anon_sym_COMMA, - ACTIONS(10162), 1, - anon_sym_RPAREN, - STATE(6930), 1, - aux_sym_argument_list_repeat1, - STATE(6743), 9, + ACTIONS(3135), 4, + anon_sym_while, + anon_sym_catch, + anon_sym_finally, + anon_sym_else, + STATE(6676), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -750006,7 +746512,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [287029] = 14, + [284050] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -750027,13 +746533,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8883), 1, - anon_sym_RBRACK, - ACTIONS(10129), 1, + ACTIONS(10069), 1, + anon_sym_EQ, + ACTIONS(9571), 3, anon_sym_COMMA, - STATE(6956), 1, - aux_sym_global_attribute_repeat1, - STATE(6744), 9, + anon_sym_RBRACK, + anon_sym_RPAREN, + STATE(6677), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -750043,7 +746549,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [287080] = 14, + [284100] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -750064,13 +746570,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(2837), 1, - anon_sym_RBRACE, - ACTIONS(10164), 1, - anon_sym_COMMA, - STATE(6809), 1, - aux_sym_anonymous_object_creation_expression_repeat1, - STATE(6745), 9, + ACTIONS(8892), 1, + anon_sym_LPAREN, + ACTIONS(9318), 1, + anon_sym_LT, + STATE(7167), 1, + sym_type_parameter_list, + STATE(7168), 1, + sym_parameter_list, + STATE(6678), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -750080,7 +746588,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [287131] = 14, + [284154] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -750101,13 +746609,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(2685), 1, - anon_sym_RBRACK, - ACTIONS(10166), 1, - anon_sym_COMMA, - STATE(6962), 1, - aux_sym_argument_list_repeat1, - STATE(6746), 9, + ACTIONS(10004), 1, + anon_sym_LBRACE, + ACTIONS(10023), 1, + anon_sym_SEMI, + STATE(2056), 1, + sym__declaration_list_body, + STATE(7310), 1, + sym_declaration_list, + STATE(6679), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -750117,7 +746627,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [287182] = 14, + [284208] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -750138,13 +746648,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9335), 1, - anon_sym_LBRACE, - ACTIONS(10168), 1, - anon_sym_SEMI, - STATE(7634), 1, - sym_declaration_list, - STATE(6747), 9, + ACTIONS(9981), 1, + anon_sym_COMMA, + ACTIONS(9985), 1, + anon_sym_and, + ACTIONS(9987), 1, + anon_sym_or, + ACTIONS(10071), 1, + anon_sym_RPAREN, + STATE(6680), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -750154,7 +746666,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [287233] = 14, + [284262] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -750175,13 +746687,50 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10170), 1, + ACTIONS(10073), 1, anon_sym_COMMA, - ACTIONS(10172), 1, - anon_sym_RPAREN, - STATE(7004), 1, - aux_sym_tuple_type_repeat1, - STATE(6748), 9, + ACTIONS(10076), 2, + anon_sym_RBRACK, + anon_sym_GT, + STATE(6681), 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_type_argument_list_repeat1, + [284312] = 13, + ACTIONS(9077), 1, + aux_sym_preproc_region_token1, + ACTIONS(9079), 1, + aux_sym_preproc_endregion_token1, + ACTIONS(9081), 1, + aux_sym_preproc_line_token1, + ACTIONS(9083), 1, + aux_sym_preproc_pragma_token1, + ACTIONS(9085), 1, + aux_sym_preproc_nullable_token1, + ACTIONS(9087), 1, + aux_sym_preproc_error_token1, + ACTIONS(9089), 1, + aux_sym_preproc_warning_token1, + ACTIONS(9091), 1, + aux_sym_preproc_define_token1, + ACTIONS(9093), 1, + aux_sym_preproc_undef_token1, + ACTIONS(9095), 1, + sym_comment, + ACTIONS(10080), 1, + aux_sym_string_literal_content_token1, + ACTIONS(10078), 3, + anon_sym_DQUOTE, + aux_sym_string_literal_content_token2, + sym_escape_sequence, + STATE(6682), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -750191,7 +746740,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [287284] = 14, + [284362] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -750212,13 +746761,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10174), 1, - anon_sym_COMMA, - ACTIONS(10176), 1, - anon_sym_RPAREN, - STATE(6893), 1, - aux_sym_using_variable_declaration_repeat1, - STATE(6749), 9, + ACTIONS(9320), 1, + anon_sym_where, + ACTIONS(10082), 1, + anon_sym_SEMI, + STATE(6694), 1, + sym_type_parameter_constraints_clause, + STATE(6698), 1, + aux_sym__class_declaration_initializer_repeat4, + STATE(6683), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -750228,7 +746779,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [287335] = 14, + [284416] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -750249,13 +746800,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(2697), 1, - anon_sym_COMMA, - ACTIONS(7816), 1, - anon_sym_RBRACK, - STATE(6733), 1, - aux_sym_array_rank_specifier_repeat1, - STATE(6750), 9, + ACTIONS(7912), 1, + anon_sym_DOT, + ACTIONS(10004), 1, + anon_sym_LBRACE, + ACTIONS(10084), 1, + anon_sym_SEMI, + STATE(7355), 1, + sym_declaration_list, + STATE(6684), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -750265,7 +746818,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [287386] = 14, + [284470] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -750286,13 +746839,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(5026), 1, + ACTIONS(3957), 4, + anon_sym_LBRACK, anon_sym_COMMA, - ACTIONS(10178), 1, - anon_sym_RBRACK, - STATE(6782), 1, - aux_sym_type_argument_list_repeat1, - STATE(6751), 9, + anon_sym_GT, + anon_sym_STAR, + STATE(6685), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -750302,7 +746854,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [287437] = 14, + [284518] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -750323,13 +746875,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(6678), 1, - anon_sym_LBRACK, - ACTIONS(6716), 1, - anon_sym_QMARK, - ACTIONS(9653), 1, - anon_sym_COMMA, - STATE(6752), 9, + ACTIONS(10004), 1, + anon_sym_LBRACE, + ACTIONS(10023), 1, + anon_sym_SEMI, + STATE(2067), 1, + sym__declaration_list_body, + STATE(7310), 1, + sym_declaration_list, + STATE(6686), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -750339,7 +746893,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [287488] = 13, + [284572] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -750360,11 +746914,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10180), 1, + ACTIONS(9981), 1, anon_sym_COMMA, - ACTIONS(10183), 1, + ACTIONS(9985), 1, + anon_sym_and, + ACTIONS(9987), 1, + anon_sym_or, + ACTIONS(10086), 1, anon_sym_RPAREN, - STATE(6753), 10, + STATE(6687), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -750374,8 +746932,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - aux_sym_parenthesized_variable_designation_repeat1, - [287537] = 14, + [284626] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -750396,13 +746953,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10185), 1, + ACTIONS(9981), 1, anon_sym_COMMA, - ACTIONS(10187), 1, - anon_sym_RBRACK, - STATE(6833), 1, - aux_sym_argument_list_repeat1, - STATE(6754), 9, + ACTIONS(9985), 1, + anon_sym_and, + ACTIONS(9987), 1, + anon_sym_or, + ACTIONS(10088), 1, + anon_sym_RPAREN, + STATE(6688), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -750412,7 +746971,44 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [287588] = 14, + [284680] = 13, + ACTIONS(9077), 1, + aux_sym_preproc_region_token1, + ACTIONS(9079), 1, + aux_sym_preproc_endregion_token1, + ACTIONS(9081), 1, + aux_sym_preproc_line_token1, + ACTIONS(9083), 1, + aux_sym_preproc_pragma_token1, + ACTIONS(9085), 1, + aux_sym_preproc_nullable_token1, + ACTIONS(9087), 1, + aux_sym_preproc_error_token1, + ACTIONS(9089), 1, + aux_sym_preproc_warning_token1, + ACTIONS(9091), 1, + aux_sym_preproc_define_token1, + ACTIONS(9093), 1, + aux_sym_preproc_undef_token1, + ACTIONS(9095), 1, + sym_comment, + ACTIONS(10080), 1, + aux_sym_string_literal_content_token1, + ACTIONS(10078), 3, + anon_sym_DQUOTE, + aux_sym_string_literal_content_token2, + sym_escape_sequence, + STATE(6689), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + [284730] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -750433,13 +747029,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10189), 1, - anon_sym_COMMA, - ACTIONS(10191), 1, - anon_sym_RBRACE, - STATE(6869), 1, - aux_sym__with_body_repeat1, - STATE(6755), 9, + ACTIONS(9971), 1, + anon_sym_unmanaged, + ACTIONS(9973), 1, + anon_sym_managed, + ACTIONS(10090), 1, + anon_sym_LT, + STATE(7519), 1, + sym_calling_convention, + STATE(6690), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -750449,7 +747047,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [287639] = 14, + [284784] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -750470,13 +747068,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10193), 1, - anon_sym_COMMA, - ACTIONS(10195), 1, - anon_sym_GT, - STATE(6783), 1, - aux_sym_type_argument_list_repeat2, - STATE(6756), 9, + ACTIONS(10092), 4, + sym_interpolation_end_quote, + sym_interpolation_open_brace, + sym_interpolation_string_content, + sym_escape_sequence, + STATE(6691), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -750486,7 +747083,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [287690] = 14, + [284832] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -750507,13 +747104,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(5026), 1, - anon_sym_COMMA, - ACTIONS(10197), 1, - anon_sym_RBRACK, - STATE(6763), 1, - aux_sym_type_argument_list_repeat1, - STATE(6757), 9, + ACTIONS(9971), 1, + anon_sym_unmanaged, + ACTIONS(9973), 1, + anon_sym_managed, + ACTIONS(10094), 1, + anon_sym_LT, + STATE(7552), 1, + sym_calling_convention, + STATE(6692), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -750523,7 +747122,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [287741] = 14, + [284886] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -750544,13 +747143,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(5026), 1, - anon_sym_COMMA, - ACTIONS(10195), 1, - anon_sym_GT, - STATE(6679), 1, - aux_sym_type_argument_list_repeat1, - STATE(6758), 9, + ACTIONS(9965), 1, + anon_sym_and, + ACTIONS(9967), 1, + anon_sym_or, + ACTIONS(6107), 2, + anon_sym_COLON, + anon_sym_when, + STATE(6693), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -750560,7 +747160,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [287792] = 14, + [284938] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -750581,13 +747181,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(6678), 1, - anon_sym_LBRACK, - ACTIONS(6680), 1, - anon_sym_STAR, - ACTIONS(9653), 1, - anon_sym_COMMA, - STATE(6759), 9, + ACTIONS(10096), 4, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_where, + anon_sym_EQ_GT, + STATE(6694), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -750597,7 +747196,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [287843] = 14, + [284986] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -750618,13 +747217,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8857), 1, - anon_sym_RBRACK, - ACTIONS(10199), 1, - anon_sym_COMMA, - STATE(6955), 1, - aux_sym_global_attribute_repeat1, - STATE(6760), 9, + ACTIONS(9971), 1, + anon_sym_unmanaged, + ACTIONS(9973), 1, + anon_sym_managed, + ACTIONS(10098), 1, + anon_sym_LT, + STATE(7578), 1, + sym_calling_convention, + STATE(6695), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -750634,7 +747235,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [287894] = 12, + [285040] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -750655,11 +747256,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10201), 3, - sym_interpolation_end_quote, - sym_interpolation_open_brace, - sym_interpolation_string_content, - STATE(6761), 9, + ACTIONS(10004), 1, + anon_sym_LBRACE, + ACTIONS(10100), 1, + anon_sym_SEMI, + STATE(2721), 1, + sym__declaration_list_body, + STATE(7406), 1, + sym_declaration_list, + STATE(6696), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -750669,7 +747274,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [287941] = 14, + [285094] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -750690,13 +747295,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10193), 1, - anon_sym_COMMA, - ACTIONS(10203), 1, - anon_sym_GT, - STATE(6767), 1, - aux_sym_type_argument_list_repeat2, - STATE(6762), 9, + ACTIONS(10004), 1, + anon_sym_LBRACE, + ACTIONS(10100), 1, + anon_sym_SEMI, + STATE(2722), 1, + sym__declaration_list_body, + STATE(7406), 1, + sym_declaration_list, + STATE(6697), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -750706,7 +747313,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [287992] = 14, + [285148] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -750727,13 +747334,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(5026), 1, - anon_sym_COMMA, - ACTIONS(10205), 1, - anon_sym_RBRACK, - STATE(6679), 1, - aux_sym_type_argument_list_repeat1, - STATE(6763), 9, + ACTIONS(9320), 1, + anon_sym_where, + ACTIONS(10102), 1, + anon_sym_SEMI, + STATE(6404), 1, + aux_sym__class_declaration_initializer_repeat4, + STATE(6694), 1, + sym_type_parameter_constraints_clause, + STATE(6698), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -750743,7 +747352,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [288043] = 14, + [285202] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -750764,13 +747373,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(5026), 1, + ACTIONS(5408), 2, + anon_sym_and, + anon_sym_or, + ACTIONS(5434), 2, anon_sym_COMMA, - ACTIONS(10203), 1, - anon_sym_GT, - STATE(6679), 1, - aux_sym_type_argument_list_repeat1, - STATE(6764), 9, + anon_sym_RPAREN, + STATE(6699), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -750780,7 +747389,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [288094] = 14, + [285252] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -750801,13 +747410,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(2697), 1, - anon_sym_COMMA, - ACTIONS(10207), 1, - anon_sym_RBRACK, - STATE(6733), 1, - aux_sym_array_rank_specifier_repeat1, - STATE(6765), 9, + ACTIONS(9971), 1, + anon_sym_unmanaged, + ACTIONS(9973), 1, + anon_sym_managed, + ACTIONS(10104), 1, + anon_sym_LT, + STATE(7595), 1, + sym_calling_convention, + STATE(6700), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -750817,7 +747428,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [288145] = 12, + [285306] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -750838,11 +747449,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10209), 3, - anon_sym_SEMI, + ACTIONS(10004), 1, anon_sym_LBRACE, - anon_sym_EQ_GT, - STATE(6766), 9, + ACTIONS(10100), 1, + anon_sym_SEMI, + STATE(2724), 1, + sym__declaration_list_body, + STATE(7406), 1, + sym_declaration_list, + STATE(6701), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -750852,7 +747467,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [288192] = 14, + [285360] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -750873,13 +747488,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10193), 1, + ACTIONS(9830), 1, + anon_sym_and, + ACTIONS(9832), 1, + anon_sym_or, + ACTIONS(9981), 2, anon_sym_COMMA, - ACTIONS(10211), 1, - anon_sym_GT, - STATE(6863), 1, - aux_sym_type_argument_list_repeat2, - STATE(6767), 9, + anon_sym_RBRACE, + STATE(6702), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -750889,7 +747505,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [288243] = 14, + [285412] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -750910,13 +747526,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10160), 1, - anon_sym_COMMA, - ACTIONS(10213), 1, - anon_sym_RPAREN, - STATE(6930), 1, - aux_sym_argument_list_repeat1, - STATE(6768), 9, + ACTIONS(9320), 1, + anon_sym_where, + ACTIONS(10106), 1, + anon_sym_SEMI, + STATE(6649), 1, + aux_sym__class_declaration_initializer_repeat4, + STATE(6694), 1, + sym_type_parameter_constraints_clause, + STATE(6703), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -750926,7 +747544,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [288294] = 14, + [285466] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -750947,13 +747565,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(5293), 1, + ACTIONS(10004), 1, anon_sym_LBRACE, - ACTIONS(10215), 1, - anon_sym_LPAREN, - STATE(2020), 1, - sym_block, - STATE(6769), 9, + ACTIONS(10100), 1, + anon_sym_SEMI, + STATE(2726), 1, + sym__declaration_list_body, + STATE(7406), 1, + sym_declaration_list, + STATE(6704), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -750963,7 +747583,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [288345] = 14, + [285520] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -750984,13 +747604,15 @@ 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(10217), 1, - anon_sym_COMMA, - STATE(6809), 1, - aux_sym_anonymous_object_creation_expression_repeat1, - STATE(6770), 9, + ACTIONS(9971), 1, + anon_sym_unmanaged, + ACTIONS(9973), 1, + anon_sym_managed, + ACTIONS(10108), 1, + anon_sym_LT, + STATE(7608), 1, + sym_calling_convention, + STATE(6705), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -751000,34 +747622,35 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [288396] = 14, - ACTIONS(9097), 1, + [285574] = 14, + ACTIONS(3), 1, aux_sym_preproc_region_token1, - ACTIONS(9099), 1, + ACTIONS(5), 1, aux_sym_preproc_endregion_token1, - ACTIONS(9101), 1, + ACTIONS(7), 1, aux_sym_preproc_line_token1, - ACTIONS(9103), 1, + ACTIONS(9), 1, aux_sym_preproc_pragma_token1, - ACTIONS(9105), 1, + ACTIONS(11), 1, aux_sym_preproc_nullable_token1, - ACTIONS(9107), 1, + ACTIONS(13), 1, aux_sym_preproc_error_token1, - ACTIONS(9109), 1, + ACTIONS(15), 1, aux_sym_preproc_warning_token1, - ACTIONS(9111), 1, + ACTIONS(17), 1, aux_sym_preproc_define_token1, - ACTIONS(9113), 1, + ACTIONS(19), 1, aux_sym_preproc_undef_token1, - ACTIONS(9115), 1, + ACTIONS(21), 1, sym_comment, - ACTIONS(10219), 1, + ACTIONS(6601), 1, + anon_sym_LBRACK, + ACTIONS(9575), 1, + anon_sym_QMARK, + ACTIONS(3963), 2, anon_sym_COMMA, - ACTIONS(10221), 1, - aux_sym_preproc_if_token2, - STATE(6874), 1, - aux_sym_preproc_pragma_repeat1, - STATE(6771), 9, + anon_sym_GT, + STATE(6706), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -751037,7 +747660,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [288447] = 14, + [285626] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -751058,13 +747681,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8871), 1, - anon_sym_RBRACK, - ACTIONS(10223), 1, - anon_sym_COMMA, - STATE(6955), 1, - aux_sym_global_attribute_repeat1, - STATE(6772), 9, + ACTIONS(9971), 1, + anon_sym_unmanaged, + ACTIONS(9973), 1, + anon_sym_managed, + ACTIONS(10110), 1, + anon_sym_LT, + STATE(7620), 1, + sym_calling_convention, + STATE(6707), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -751074,7 +747699,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [288498] = 14, + [285680] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -751095,13 +747720,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(7580), 1, - anon_sym_COMMA, - ACTIONS(10225), 1, - anon_sym_RPAREN, - STATE(6669), 1, - aux_sym__for_statement_conditions_repeat1, - STATE(6773), 9, + ACTIONS(9286), 1, + anon_sym_LBRACE, + ACTIONS(9290), 1, + anon_sym_EQ_GT, + STATE(2778), 1, + sym_accessor_list, + STATE(7515), 1, + sym_arrow_expression_clause, + STATE(6708), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -751111,7 +747738,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [288549] = 14, + [285734] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -751132,13 +747759,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8871), 1, - anon_sym_RBRACK, - ACTIONS(10223), 1, - anon_sym_COMMA, - STATE(6856), 1, - aux_sym_global_attribute_repeat1, - STATE(6774), 9, + ACTIONS(10112), 4, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_where, + anon_sym_EQ_GT, + STATE(6709), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -751148,7 +747774,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [288600] = 14, + [285782] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -751169,13 +747795,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(2697), 1, - anon_sym_COMMA, - ACTIONS(10227), 1, - anon_sym_RBRACK, - STATE(6733), 1, - aux_sym_array_rank_specifier_repeat1, - STATE(6775), 9, + ACTIONS(7912), 1, + anon_sym_DOT, + ACTIONS(10004), 1, + anon_sym_LBRACE, + ACTIONS(10114), 1, + anon_sym_SEMI, + STATE(7299), 1, + sym_declaration_list, + STATE(6710), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -751185,7 +747813,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [288651] = 14, + [285836] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -751206,13 +747834,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(7580), 1, - anon_sym_COMMA, - ACTIONS(10229), 1, - anon_sym_RPAREN, - STATE(6669), 1, - aux_sym__for_statement_conditions_repeat1, - STATE(6776), 9, + ACTIONS(9965), 1, + anon_sym_and, + ACTIONS(6095), 3, + anon_sym_COLON, + anon_sym_when, + anon_sym_or, + STATE(6711), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -751222,7 +747850,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [288702] = 14, + [285886] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -751243,13 +747871,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10231), 1, - anon_sym_COMMA, - ACTIONS(10233), 1, - anon_sym_RBRACE, - STATE(6791), 1, - aux_sym__switch_expression_body_repeat1, - STATE(6777), 9, + ACTIONS(10116), 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, @@ -751259,7 +747886,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [288753] = 12, + [285934] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -751280,11 +747907,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10235), 3, - sym_interpolation_end_quote, - sym_interpolation_open_brace, - sym_interpolation_string_content, - STATE(6778), 9, + ACTIONS(10118), 4, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_where, + anon_sym_EQ_GT, + STATE(6713), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -751294,7 +747922,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [288800] = 14, + [285982] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -751315,13 +747943,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(2679), 1, - anon_sym_RBRACK, - ACTIONS(10237), 1, - anon_sym_COMMA, - STATE(6962), 1, - aux_sym_argument_list_repeat1, - STATE(6779), 9, + ACTIONS(10120), 1, + anon_sym_EQ, + ACTIONS(10122), 3, + aux_sym_preproc_if_token3, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + STATE(6714), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -751331,7 +747959,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [288851] = 14, + [286032] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -751352,13 +747980,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10189), 1, + ACTIONS(9985), 1, + anon_sym_and, + ACTIONS(9987), 1, + anon_sym_or, + ACTIONS(6107), 2, anon_sym_COMMA, - ACTIONS(10239), 1, - anon_sym_RBRACE, - STATE(6795), 1, - aux_sym__with_body_repeat1, - STATE(6780), 9, + anon_sym_RPAREN, + STATE(6715), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -751368,7 +747997,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [288902] = 14, + [286084] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -751389,13 +748018,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10160), 1, - anon_sym_COMMA, - ACTIONS(10241), 1, - anon_sym_RPAREN, - STATE(6930), 1, - aux_sym_argument_list_repeat1, - STATE(6781), 9, + ACTIONS(9286), 1, + anon_sym_LBRACE, + ACTIONS(9290), 1, + anon_sym_EQ_GT, + STATE(2703), 1, + sym_accessor_list, + STATE(7585), 1, + sym_arrow_expression_clause, + STATE(6716), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -751405,7 +748036,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [288953] = 14, + [286138] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -751426,13 +748057,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(5026), 1, - anon_sym_COMMA, - ACTIONS(10243), 1, - anon_sym_RBRACK, - STATE(6679), 1, - aux_sym_type_argument_list_repeat1, - STATE(6782), 9, + ACTIONS(10124), 1, + anon_sym_EQ, + ACTIONS(10126), 3, + aux_sym_preproc_if_token3, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + STATE(6717), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -751442,7 +748073,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [289004] = 14, + [286188] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -751463,13 +748094,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10193), 1, - anon_sym_COMMA, - ACTIONS(10245), 1, - anon_sym_GT, - STATE(6863), 1, - aux_sym_type_argument_list_repeat2, - STATE(6783), 9, + ACTIONS(8892), 1, + anon_sym_LPAREN, + ACTIONS(9318), 1, + anon_sym_LT, + STATE(7213), 1, + sym_type_parameter_list, + STATE(7217), 1, + sym_parameter_list, + STATE(6718), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -751479,7 +748112,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [289055] = 14, + [286242] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -751500,13 +748133,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10247), 1, + ACTIONS(3990), 4, + anon_sym_LBRACK, anon_sym_COMMA, - ACTIONS(10249), 1, - anon_sym_RBRACK, - STATE(6924), 1, - aux_sym_calling_convention_repeat1, - STATE(6784), 9, + anon_sym_GT, + anon_sym_STAR, + STATE(6719), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -751516,7 +748148,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [289106] = 14, + [286290] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -751537,13 +748169,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10193), 1, - anon_sym_COMMA, - ACTIONS(10251), 1, - anon_sym_GT, - STATE(6863), 1, - aux_sym_type_argument_list_repeat2, - STATE(6785), 9, + ACTIONS(10128), 4, + sym_interpolation_end_quote, + sym_interpolation_open_brace, + sym_interpolation_string_content, + sym_escape_sequence, + STATE(6720), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -751553,7 +748184,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [289157] = 14, + [286338] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -751574,13 +748205,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10170), 1, - anon_sym_COMMA, - ACTIONS(10253), 1, - anon_sym_RPAREN, - STATE(7004), 1, - aux_sym_tuple_type_repeat1, - STATE(6786), 9, + ACTIONS(9286), 1, + anon_sym_LBRACE, + ACTIONS(9290), 1, + anon_sym_EQ_GT, + STATE(2695), 1, + sym_accessor_list, + STATE(7599), 1, + sym_arrow_expression_clause, + STATE(6721), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -751590,7 +748223,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [289208] = 14, + [286392] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -751611,13 +748244,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8865), 1, - anon_sym_RBRACK, - ACTIONS(10255), 1, + ACTIONS(10130), 1, anon_sym_COMMA, - STATE(6955), 1, - aux_sym_global_attribute_repeat1, - STATE(6787), 9, + ACTIONS(10133), 1, + anon_sym_RPAREN, + STATE(6722), 10, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -751627,7 +748258,8 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [289259] = 13, + aux_sym_attribute_argument_list_repeat1, + [286441] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -751648,12 +748280,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10257), 1, - anon_sym_EQ, - ACTIONS(10259), 2, + ACTIONS(7628), 3, anon_sym_COMMA, + anon_sym_RBRACK, anon_sym_RPAREN, - STATE(6788), 9, + STATE(6723), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -751663,7 +748294,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [289308] = 14, + [286488] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -751684,13 +748315,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10261), 1, + ACTIONS(10135), 1, anon_sym_COMMA, - ACTIONS(10263), 1, - anon_sym_RPAREN, - STATE(6829), 1, - aux_sym_variable_declaration_repeat1, - STATE(6789), 9, + ACTIONS(10138), 1, + anon_sym_RBRACE, + STATE(6724), 10, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -751700,7 +748329,8 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [289359] = 13, + aux_sym_anonymous_object_creation_expression_repeat1, + [286537] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -751721,12 +748351,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10265), 1, - anon_sym_EQ, - ACTIONS(10267), 2, + ACTIONS(10140), 1, anon_sym_COMMA, + ACTIONS(10142), 1, anon_sym_RPAREN, - STATE(6790), 9, + STATE(6763), 1, + aux_sym_parenthesized_variable_designation_repeat1, + STATE(6725), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -751736,7 +748367,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [289408] = 14, + [286588] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -751757,13 +748388,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(2275), 1, - anon_sym_RBRACE, - ACTIONS(10269), 1, + ACTIONS(10144), 1, anon_sym_COMMA, - STATE(6895), 1, - aux_sym__switch_expression_body_repeat1, - STATE(6791), 9, + ACTIONS(10146), 1, + anon_sym_GT, + STATE(7007), 1, + aux_sym_type_argument_list_repeat2, + STATE(6726), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -751773,7 +748404,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [289459] = 14, + [286639] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -751794,13 +748425,12 @@ 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(10271), 1, + ACTIONS(10148), 1, + anon_sym_EQ, + ACTIONS(10126), 2, anon_sym_COMMA, - STATE(6945), 1, - aux_sym_list_pattern_repeat1, - STATE(6792), 9, + anon_sym_RBRACE, + STATE(6727), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -751810,7 +748440,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [289510] = 14, + [286688] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -751831,13 +748461,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10154), 1, + ACTIONS(10150), 1, anon_sym_COMMA, - ACTIONS(10273), 1, + ACTIONS(10153), 1, anon_sym_RPAREN, - STATE(6801), 1, - aux_sym_parenthesized_variable_designation_repeat1, - STATE(6793), 9, + STATE(6728), 10, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -751847,7 +748475,8 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [289561] = 14, + aux_sym_tuple_type_repeat1, + [286737] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -751868,13 +748497,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(5026), 1, + ACTIONS(2695), 1, anon_sym_COMMA, - ACTIONS(10275), 1, + ACTIONS(7700), 1, anon_sym_RBRACK, - STATE(6800), 1, - aux_sym_type_argument_list_repeat1, - STATE(6794), 9, + STATE(6822), 1, + aux_sym_array_rank_specifier_repeat1, + STATE(6729), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -751884,7 +748513,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [289612] = 14, + [286788] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -751905,13 +748534,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10189), 1, + ACTIONS(8870), 1, + anon_sym_RBRACK, + ACTIONS(10155), 1, anon_sym_COMMA, - ACTIONS(10277), 1, - anon_sym_RBRACE, - STATE(7025), 1, - aux_sym__with_body_repeat1, - STATE(6795), 9, + STATE(6981), 1, + aux_sym_global_attribute_repeat1, + STATE(6730), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -751921,7 +748550,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [289663] = 14, + [286839] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -751942,13 +748571,48 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8879), 1, - anon_sym_RBRACK, - ACTIONS(10279), 1, + ACTIONS(10157), 3, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_when, + STATE(6731), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + [286886] = 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(5168), 1, anon_sym_COMMA, - STATE(6955), 1, - aux_sym_global_attribute_repeat1, - STATE(6796), 9, + ACTIONS(10159), 1, + anon_sym_GT, + STATE(6681), 1, + aux_sym_type_argument_list_repeat1, + STATE(6732), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -751958,7 +748622,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [289714] = 14, + [286937] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -751979,13 +748643,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(2853), 1, - anon_sym_RBRACE, - ACTIONS(10281), 1, + ACTIONS(10161), 3, anon_sym_COMMA, - STATE(6669), 1, - aux_sym__for_statement_conditions_repeat1, - STATE(6797), 9, + anon_sym_RBRACK, + anon_sym_RPAREN, + STATE(6733), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -751995,7 +748657,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [289765] = 13, + [286984] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -752016,11 +748678,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10283), 1, + ACTIONS(2695), 1, anon_sym_COMMA, - ACTIONS(10286), 1, - anon_sym_RPAREN, - STATE(6798), 10, + ACTIONS(10163), 1, + anon_sym_RBRACK, + STATE(6822), 1, + aux_sym_array_rank_specifier_repeat1, + STATE(6734), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -752030,8 +748694,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - aux_sym_tuple_pattern_repeat1, - [289814] = 14, + [287035] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -752052,13 +748715,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8879), 1, - anon_sym_RBRACK, - ACTIONS(10279), 1, + ACTIONS(5168), 1, anon_sym_COMMA, - STATE(6729), 1, - aux_sym_global_attribute_repeat1, - STATE(6799), 9, + ACTIONS(10165), 1, + anon_sym_RBRACK, + STATE(6758), 1, + aux_sym_type_argument_list_repeat1, + STATE(6735), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -752068,7 +748731,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [289865] = 14, + [287086] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -752089,13 +748752,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(5026), 1, - anon_sym_COMMA, - ACTIONS(10288), 1, - anon_sym_RBRACK, - STATE(6679), 1, - aux_sym_type_argument_list_repeat1, - STATE(6800), 9, + ACTIONS(10167), 1, + anon_sym_SEMI, + ACTIONS(10169), 1, + anon_sym_LBRACE, + STATE(7679), 1, + sym_enum_member_declaration_list, + STATE(6736), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -752105,7 +748768,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [289916] = 14, + [287137] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -752126,13 +748789,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10154), 1, + ACTIONS(10171), 1, anon_sym_COMMA, - ACTIONS(10290), 1, + ACTIONS(10173), 1, anon_sym_RPAREN, - STATE(6753), 1, - aux_sym_parenthesized_variable_designation_repeat1, - STATE(6801), 9, + STATE(6728), 1, + aux_sym_tuple_type_repeat1, + STATE(6737), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -752142,7 +748805,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [289967] = 14, + [287188] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -752163,13 +748826,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10160), 1, + ACTIONS(10175), 1, anon_sym_COMMA, - ACTIONS(10292), 1, - anon_sym_RPAREN, - STATE(6860), 1, - aux_sym_argument_list_repeat1, - STATE(6802), 9, + ACTIONS(10177), 1, + anon_sym_RBRACE, + STATE(6813), 1, + aux_sym_positional_pattern_clause_repeat1, + STATE(6738), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -752179,7 +748842,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [290018] = 12, + [287239] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -752200,11 +748863,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(7831), 3, + ACTIONS(10179), 1, + anon_sym_EQ, + ACTIONS(10122), 2, anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_RPAREN, - STATE(6803), 9, + anon_sym_RBRACE, + STATE(6739), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -752214,7 +748878,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [290065] = 14, + [287288] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -752235,13 +748899,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10294), 1, + ACTIONS(10181), 1, anon_sym_COMMA, - ACTIONS(10296), 1, - anon_sym_RBRACE, - STATE(6861), 1, - aux_sym_anonymous_object_creation_expression_repeat1, - STATE(6804), 9, + ACTIONS(10183), 1, + anon_sym_RBRACK, + STATE(6783), 1, + aux_sym_global_attribute_repeat1, + STATE(6740), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -752251,7 +748915,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [290116] = 14, + [287339] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -752272,13 +748936,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(5617), 1, - anon_sym_LBRACE, - ACTIONS(10215), 1, - anon_sym_LPAREN, - STATE(7135), 1, - sym_block, - STATE(6805), 9, + ACTIONS(2695), 1, + anon_sym_COMMA, + ACTIONS(7775), 1, + anon_sym_RBRACK, + STATE(6822), 1, + aux_sym_array_rank_specifier_repeat1, + STATE(6741), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -752288,7 +748952,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [290167] = 12, + [287390] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -752309,11 +748973,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10298), 3, - anon_sym_disable, - anon_sym_restore, - anon_sym_enable, - STATE(6806), 9, + ACTIONS(10185), 1, + anon_sym_COMMA, + ACTIONS(10187), 1, + anon_sym_RPAREN, + STATE(6974), 1, + aux_sym_attribute_argument_list_repeat1, + STATE(6742), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -752323,7 +748989,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [290214] = 14, + [287441] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -752344,13 +749010,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(7747), 1, + ACTIONS(8837), 1, + anon_sym_RBRACK, + ACTIONS(10189), 1, anon_sym_COMMA, - ACTIONS(10300), 1, - anon_sym_SEMI, - STATE(6823), 1, - aux_sym__for_statement_conditions_repeat1, - STATE(6807), 9, + STATE(6981), 1, + aux_sym_global_attribute_repeat1, + STATE(6743), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -752360,7 +749026,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [290265] = 14, + [287492] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -752381,13 +749047,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(2265), 1, - anon_sym_RBRACE, - ACTIONS(10302), 1, + ACTIONS(6889), 1, + anon_sym_DOT, + ACTIONS(3978), 2, anon_sym_COMMA, - STATE(6895), 1, - aux_sym__switch_expression_body_repeat1, - STATE(6808), 9, + anon_sym_GT, + STATE(6744), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -752397,7 +749062,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [290316] = 13, + [287541] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -752418,11 +749083,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10304), 1, + ACTIONS(10191), 1, anon_sym_COMMA, - ACTIONS(10307), 1, - anon_sym_RBRACE, - STATE(6809), 10, + ACTIONS(10194), 1, + anon_sym_RPAREN, + STATE(6745), 10, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -752432,8 +749097,8 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - aux_sym_anonymous_object_creation_expression_repeat1, - [290365] = 14, + aux_sym_tuple_pattern_repeat1, + [287590] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -752454,13 +749119,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10309), 1, - anon_sym_COMMA, - ACTIONS(10311), 1, - anon_sym_RPAREN, - STATE(7014), 1, - aux_sym_tuple_pattern_repeat1, - STATE(6810), 9, + ACTIONS(10196), 3, + sym_interpolation_end_quote, + sym_interpolation_open_brace, + sym_interpolation_string_content, + STATE(6746), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -752470,7 +749133,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [290416] = 14, + [287637] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -752491,13 +749154,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10309), 1, + ACTIONS(10198), 1, anon_sym_COMMA, - ACTIONS(10313), 1, - anon_sym_RPAREN, - STATE(6798), 1, - aux_sym_tuple_pattern_repeat1, - STATE(6811), 9, + ACTIONS(10200), 1, + anon_sym_RBRACK, + STATE(7018), 1, + aux_sym_calling_convention_repeat1, + STATE(6747), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -752507,7 +749170,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [290467] = 14, + [287688] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -752528,13 +749191,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(2323), 1, - anon_sym_RBRACK, - ACTIONS(10315), 1, + ACTIONS(5168), 1, anon_sym_COMMA, - STATE(6945), 1, - aux_sym_list_pattern_repeat1, - STATE(6812), 9, + ACTIONS(10202), 1, + anon_sym_RBRACK, + STATE(6932), 1, + aux_sym_type_argument_list_repeat1, + STATE(6748), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -752544,7 +749207,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [290518] = 14, + [287739] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -752565,13 +749228,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10317), 1, + ACTIONS(5168), 1, anon_sym_COMMA, - ACTIONS(10319), 1, - anon_sym_RPAREN, - STATE(6661), 1, - aux_sym_bracketed_parameter_list_repeat1, - STATE(6813), 9, + ACTIONS(10204), 1, + anon_sym_RBRACK, + STATE(6881), 1, + aux_sym_type_argument_list_repeat1, + STATE(6749), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -752581,7 +749244,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [290569] = 14, + [287790] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -752602,13 +749265,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10321), 1, + ACTIONS(10206), 1, + anon_sym_EQ, + ACTIONS(10015), 2, anon_sym_COMMA, - ACTIONS(10323), 1, anon_sym_RPAREN, - STATE(6985), 1, - aux_sym_positional_pattern_clause_repeat1, - STATE(6814), 9, + STATE(6750), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -752618,7 +749280,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [290620] = 14, + [287839] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -752639,13 +749301,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8863), 1, - anon_sym_RBRACK, - ACTIONS(10325), 1, + ACTIONS(10208), 1, anon_sym_COMMA, - STATE(6955), 1, - aux_sym_global_attribute_repeat1, - STATE(6815), 9, + ACTIONS(10210), 1, + anon_sym_RBRACE, + STATE(6823), 1, + aux_sym__with_body_repeat1, + STATE(6751), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -752655,7 +749317,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [290671] = 14, + [287890] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -752676,13 +749338,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10317), 1, + ACTIONS(10212), 1, anon_sym_COMMA, - ACTIONS(10327), 1, - anon_sym_RPAREN, - STATE(6661), 1, - aux_sym_bracketed_parameter_list_repeat1, - STATE(6816), 9, + ACTIONS(10214), 1, + anon_sym_RBRACK, + STATE(6815), 1, + aux_sym_global_attribute_repeat1, + STATE(6752), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -752692,7 +749354,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [290722] = 14, + [287941] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -752713,13 +749375,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10160), 1, + ACTIONS(10216), 1, anon_sym_COMMA, - ACTIONS(10329), 1, - anon_sym_RPAREN, - STATE(6930), 1, + ACTIONS(10218), 1, + anon_sym_RBRACK, + STATE(6824), 1, aux_sym_argument_list_repeat1, - STATE(6817), 9, + STATE(6753), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -752729,7 +749391,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [290773] = 14, + [287992] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -752750,13 +749412,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(2249), 1, - anon_sym_RBRACE, - ACTIONS(10331), 1, - anon_sym_COMMA, - STATE(6855), 1, - aux_sym_positional_pattern_clause_repeat1, - STATE(6818), 9, + ACTIONS(10220), 3, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_when, + STATE(6754), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -752766,7 +749426,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [290824] = 14, + [288039] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -752787,13 +749447,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10154), 1, + ACTIONS(10222), 1, anon_sym_COMMA, - ACTIONS(10333), 1, + ACTIONS(10225), 1, anon_sym_RPAREN, - STATE(6994), 1, - aux_sym_parenthesized_variable_designation_repeat1, - STATE(6819), 9, + STATE(6755), 10, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -752803,7 +749461,45 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [290875] = 13, + aux_sym_using_variable_declaration_repeat1, + [288088] = 14, + ACTIONS(9077), 1, + aux_sym_preproc_region_token1, + ACTIONS(9079), 1, + aux_sym_preproc_endregion_token1, + ACTIONS(9081), 1, + aux_sym_preproc_line_token1, + ACTIONS(9083), 1, + aux_sym_preproc_pragma_token1, + ACTIONS(9085), 1, + aux_sym_preproc_nullable_token1, + ACTIONS(9087), 1, + aux_sym_preproc_error_token1, + ACTIONS(9089), 1, + aux_sym_preproc_warning_token1, + ACTIONS(9091), 1, + aux_sym_preproc_define_token1, + ACTIONS(9093), 1, + aux_sym_preproc_undef_token1, + ACTIONS(9095), 1, + sym_comment, + ACTIONS(10227), 1, + anon_sym_DQUOTE, + ACTIONS(10229), 1, + aux_sym_preproc_if_token2, + STATE(7562), 1, + sym_string_literal, + 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, + [288139] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -752824,12 +749520,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10335), 1, - anon_sym_EQ, - ACTIONS(10259), 2, - anon_sym_SEMI, + ACTIONS(10231), 1, anon_sym_COMMA, - STATE(6820), 9, + ACTIONS(10233), 1, + anon_sym_GT, + STATE(6773), 1, + aux_sym_type_parameter_list_repeat1, + STATE(6757), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -752839,7 +749536,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [290924] = 14, + [288190] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -752860,13 +749557,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10170), 1, + ACTIONS(5168), 1, anon_sym_COMMA, - ACTIONS(10337), 1, - anon_sym_RPAREN, - STATE(7004), 1, - aux_sym_tuple_type_repeat1, - STATE(6821), 9, + ACTIONS(10235), 1, + anon_sym_RBRACK, + STATE(6681), 1, + aux_sym_type_argument_list_repeat1, + STATE(6758), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -752876,7 +749573,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [290975] = 14, + [288241] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -752897,13 +749594,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10263), 1, - anon_sym_SEMI, - ACTIONS(10339), 1, + ACTIONS(10237), 1, anon_sym_COMMA, - STATE(6988), 1, - aux_sym_variable_declaration_repeat1, - STATE(6822), 9, + ACTIONS(10239), 1, + anon_sym_RPAREN, + STATE(6799), 1, + aux_sym_argument_list_repeat1, + STATE(6759), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -752913,7 +749610,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [291026] = 13, + [288292] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -752934,11 +749631,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(7783), 1, - anon_sym_SEMI, - ACTIONS(10341), 1, + ACTIONS(10241), 1, anon_sym_COMMA, - STATE(6823), 10, + ACTIONS(10243), 1, + anon_sym_RBRACE, + STATE(6869), 1, + aux_sym__switch_expression_body_repeat1, + STATE(6760), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -752948,8 +749647,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - aux_sym__for_statement_conditions_repeat1, - [291075] = 14, + [288343] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -752970,13 +749668,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(2697), 1, + ACTIONS(2779), 1, + anon_sym_RBRACE, + ACTIONS(10245), 1, anon_sym_COMMA, - ACTIONS(7671), 1, - anon_sym_RBRACK, - STATE(6733), 1, - aux_sym_array_rank_specifier_repeat1, - STATE(6824), 9, + STATE(6724), 1, + aux_sym_anonymous_object_creation_expression_repeat1, + STATE(6761), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -752986,7 +749684,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [291126] = 14, + [288394] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -753007,13 +749705,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9537), 1, - anon_sym_LBRACE, - ACTIONS(9828), 1, + ACTIONS(10144), 1, anon_sym_COMMA, - STATE(6920), 1, - aux_sym_base_list_repeat1, - STATE(6825), 9, + ACTIONS(10247), 1, + anon_sym_GT, + STATE(7007), 1, + aux_sym_type_argument_list_repeat2, + STATE(6762), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -753023,7 +749721,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [291177] = 14, + [288445] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -753044,13 +749742,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9537), 1, - anon_sym_LBRACE, - ACTIONS(9828), 1, + ACTIONS(10249), 1, anon_sym_COMMA, - STATE(6922), 1, - aux_sym_base_list_repeat1, - STATE(6826), 9, + ACTIONS(10252), 1, + anon_sym_RPAREN, + STATE(6763), 10, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -753060,7 +749756,8 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [291228] = 14, + aux_sym_parenthesized_variable_designation_repeat1, + [288494] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -753081,13 +749778,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(5026), 1, + ACTIONS(10254), 1, anon_sym_COMMA, - ACTIONS(10344), 1, - anon_sym_RBRACK, - STATE(6831), 1, - aux_sym_type_argument_list_repeat1, - STATE(6827), 9, + ACTIONS(10257), 1, + anon_sym_RBRACE, + STATE(6764), 10, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -753097,7 +749792,8 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [291279] = 14, + aux_sym_positional_pattern_clause_repeat1, + [288543] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -753118,13 +749814,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9668), 1, - anon_sym_RPAREN, - ACTIONS(9976), 1, - anon_sym_EQ, - ACTIONS(10346), 1, + ACTIONS(7622), 1, anon_sym_COMMA, - STATE(6828), 9, + ACTIONS(10259), 1, + anon_sym_RPAREN, + STATE(6658), 1, + aux_sym__for_statement_conditions_repeat1, + STATE(6765), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -753134,7 +749830,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [291330] = 13, + [288594] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -753155,11 +749851,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(10352), 1, - anon_sym_RPAREN, - STATE(6829), 10, + ACTIONS(10261), 3, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_when, + STATE(6766), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -753169,8 +749865,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - aux_sym_variable_declaration_repeat1, - [291379] = 13, + [288641] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -753191,12 +749886,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10354), 1, - anon_sym_EQ, - ACTIONS(10267), 2, - anon_sym_SEMI, + ACTIONS(8852), 1, + anon_sym_RBRACK, + ACTIONS(10263), 1, anon_sym_COMMA, - STATE(6830), 9, + STATE(6981), 1, + aux_sym_global_attribute_repeat1, + STATE(6767), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -753206,7 +749902,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [291428] = 14, + [288692] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -753227,13 +749923,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(5026), 1, + ACTIONS(10265), 1, anon_sym_COMMA, - ACTIONS(10356), 1, - anon_sym_RBRACK, - STATE(6679), 1, - aux_sym_type_argument_list_repeat1, - STATE(6831), 9, + ACTIONS(10268), 1, + anon_sym_RBRACE, + STATE(6768), 10, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -753243,7 +749937,8 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [291479] = 13, + aux_sym__switch_expression_body_repeat1, + [288741] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -753264,12 +749959,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(6911), 1, - anon_sym_DOT, - ACTIONS(3977), 2, + ACTIONS(10270), 1, anon_sym_COMMA, - anon_sym_GT, - STATE(6832), 9, + ACTIONS(10272), 1, + anon_sym_RPAREN, + STATE(6858), 1, + aux_sym_bracketed_parameter_list_repeat1, + STATE(6769), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -753279,7 +749975,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [291528] = 14, + [288792] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -753300,13 +749996,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(2667), 1, - anon_sym_RBRACK, - ACTIONS(10358), 1, + ACTIONS(10171), 1, anon_sym_COMMA, - STATE(6962), 1, - aux_sym_argument_list_repeat1, - STATE(6833), 9, + ACTIONS(10274), 1, + anon_sym_RPAREN, + STATE(6728), 1, + aux_sym_tuple_type_repeat1, + STATE(6770), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -753316,7 +750012,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [291579] = 14, + [288843] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -753337,13 +750033,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10170), 1, + ACTIONS(10276), 1, anon_sym_COMMA, - ACTIONS(10360), 1, + ACTIONS(10278), 1, anon_sym_RPAREN, - STATE(7004), 1, - aux_sym_tuple_type_repeat1, - STATE(6834), 9, + STATE(7023), 1, + aux_sym_variable_declaration_repeat1, + STATE(6771), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -753353,7 +750049,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [291630] = 14, + [288894] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -753374,13 +750070,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(2697), 1, + ACTIONS(10171), 1, anon_sym_COMMA, - ACTIONS(7679), 1, - anon_sym_RBRACK, - STATE(6733), 1, - aux_sym_array_rank_specifier_repeat1, - STATE(6835), 9, + ACTIONS(10280), 1, + anon_sym_RPAREN, + STATE(6728), 1, + aux_sym_tuple_type_repeat1, + STATE(6772), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -753390,7 +750086,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [291681] = 14, + [288945] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -753411,13 +750107,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(2269), 1, - anon_sym_RBRACE, - ACTIONS(10362), 1, + ACTIONS(10231), 1, anon_sym_COMMA, - STATE(6895), 1, - aux_sym__switch_expression_body_repeat1, - STATE(6836), 9, + ACTIONS(10282), 1, + anon_sym_GT, + STATE(6845), 1, + aux_sym_type_parameter_list_repeat1, + STATE(6773), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -753427,7 +750123,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [291732] = 14, + [288996] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -753448,13 +750144,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10170), 1, + ACTIONS(7622), 1, anon_sym_COMMA, - ACTIONS(10364), 1, + ACTIONS(10284), 1, anon_sym_RPAREN, - STATE(7004), 1, - aux_sym_tuple_type_repeat1, - STATE(6837), 9, + STATE(6658), 1, + aux_sym__for_statement_conditions_repeat1, + STATE(6774), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -753464,7 +750160,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [291783] = 14, + [289047] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -753485,13 +750181,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9310), 1, - anon_sym_LBRACE, - ACTIONS(10366), 1, - anon_sym_SEMI, - STATE(2666), 1, - sym_accessor_list, - STATE(6838), 9, + ACTIONS(10270), 1, + anon_sym_COMMA, + ACTIONS(10286), 1, + anon_sym_RBRACK, + STATE(6628), 1, + aux_sym_bracketed_parameter_list_repeat1, + STATE(6775), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -753501,7 +750197,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [291834] = 14, + [289098] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -753522,13 +750218,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(2311), 1, - anon_sym_RBRACK, - ACTIONS(10368), 1, + ACTIONS(10288), 1, anon_sym_COMMA, - STATE(6945), 1, - aux_sym_list_pattern_repeat1, - STATE(6839), 9, + ACTIONS(10290), 1, + anon_sym_RBRACK, + STATE(6995), 1, + aux_sym_global_attribute_repeat1, + STATE(6776), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -753538,7 +750234,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [291885] = 14, + [289149] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -753559,13 +750255,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(2697), 1, - anon_sym_COMMA, - ACTIONS(7741), 1, - anon_sym_RBRACK, - STATE(6733), 1, - aux_sym_array_rank_specifier_repeat1, - STATE(6840), 9, + ACTIONS(6601), 1, + anon_sym_LBRACK, + ACTIONS(6603), 1, + anon_sym_STAR, + ACTIONS(6705), 1, + anon_sym_QMARK, + STATE(6777), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -753575,7 +750271,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [291936] = 14, + [289200] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -753596,13 +750292,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10321), 1, - anon_sym_COMMA, - ACTIONS(10370), 1, - anon_sym_RPAREN, - STATE(6985), 1, - aux_sym_positional_pattern_clause_repeat1, - STATE(6841), 9, + ACTIONS(7912), 1, + anon_sym_DOT, + ACTIONS(10004), 1, + anon_sym_LBRACE, + STATE(7420), 1, + sym_declaration_list, + STATE(6778), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -753612,7 +750308,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [291987] = 14, + [289251] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -753633,13 +750329,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10193), 1, + ACTIONS(1893), 1, + anon_sym_RBRACK, + ACTIONS(10292), 1, anon_sym_COMMA, - ACTIONS(10372), 1, - anon_sym_GT, - STATE(6850), 1, - aux_sym_type_argument_list_repeat2, - STATE(6842), 9, + STATE(6779), 10, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -753649,7 +750343,8 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [292038] = 14, + aux_sym_list_pattern_repeat1, + [289300] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -753670,13 +750365,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(5026), 1, + ACTIONS(10257), 3, anon_sym_COMMA, - ACTIONS(10372), 1, - anon_sym_GT, - STATE(6679), 1, - aux_sym_type_argument_list_repeat1, - STATE(6843), 9, + anon_sym_RPAREN, + anon_sym_RBRACE, + STATE(6780), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -753686,7 +750379,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [292089] = 14, + [289347] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -753707,13 +750400,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(2697), 1, + ACTIONS(2695), 1, anon_sym_COMMA, - ACTIONS(10374), 1, + ACTIONS(7820), 1, anon_sym_RBRACK, - STATE(6733), 1, + STATE(6822), 1, aux_sym_array_rank_specifier_repeat1, - STATE(6844), 9, + STATE(6781), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -753723,7 +750416,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [292140] = 14, + [289398] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -753744,13 +750437,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(5026), 1, - anon_sym_COMMA, - ACTIONS(10376), 1, - anon_sym_RBRACK, - STATE(6848), 1, - aux_sym_type_argument_list_repeat1, - STATE(6845), 9, + ACTIONS(5255), 1, + anon_sym_LBRACE, + ACTIONS(10295), 1, + anon_sym_LPAREN, + STATE(1959), 1, + sym_block, + STATE(6782), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -753760,7 +750453,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [292191] = 14, + [289449] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -753781,13 +750474,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(2849), 1, - anon_sym_RBRACE, - ACTIONS(10378), 1, + ACTIONS(8868), 1, + anon_sym_RBRACK, + ACTIONS(10297), 1, anon_sym_COMMA, - STATE(6669), 1, - aux_sym__for_statement_conditions_repeat1, - STATE(6846), 9, + STATE(6981), 1, + aux_sym_global_attribute_repeat1, + STATE(6783), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -753797,7 +750490,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [292242] = 14, + [289500] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -753818,13 +750511,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(2271), 1, - anon_sym_RBRACE, - ACTIONS(10380), 1, + ACTIONS(10144), 1, anon_sym_COMMA, - STATE(6855), 1, - aux_sym_positional_pattern_clause_repeat1, - STATE(6847), 9, + ACTIONS(10299), 1, + anon_sym_GT, + STATE(6914), 1, + aux_sym_type_argument_list_repeat2, + STATE(6784), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -753834,7 +750527,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [292293] = 14, + [289551] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -753855,13 +750548,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(5026), 1, + ACTIONS(10270), 1, anon_sym_COMMA, - ACTIONS(10382), 1, - anon_sym_RBRACK, - STATE(6679), 1, - aux_sym_type_argument_list_repeat1, - STATE(6848), 9, + ACTIONS(10301), 1, + anon_sym_RPAREN, + STATE(7024), 1, + aux_sym_bracketed_parameter_list_repeat1, + STATE(6785), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -753871,7 +750564,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [292344] = 14, + [289602] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -753892,13 +750585,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10384), 1, + ACTIONS(2695), 1, anon_sym_COMMA, - ACTIONS(10386), 1, - anon_sym_RBRACE, - STATE(6892), 1, - aux_sym_anonymous_object_creation_expression_repeat1, - STATE(6849), 9, + ACTIONS(10303), 1, + anon_sym_RBRACK, + STATE(6822), 1, + aux_sym_array_rank_specifier_repeat1, + STATE(6786), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -753908,7 +750601,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [292395] = 14, + [289653] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -753929,13 +750622,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10193), 1, + ACTIONS(10305), 3, anon_sym_COMMA, - ACTIONS(10388), 1, - anon_sym_GT, - STATE(6863), 1, - aux_sym_type_argument_list_repeat2, - STATE(6850), 9, + anon_sym_RBRACK, + anon_sym_RPAREN, + STATE(6787), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -753945,7 +750636,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [292446] = 14, + [289700] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -753966,13 +750657,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10154), 1, + ACTIONS(10208), 1, anon_sym_COMMA, - ACTIONS(10390), 1, - anon_sym_RPAREN, - STATE(6954), 1, - aux_sym_parenthesized_variable_designation_repeat1, - STATE(6851), 9, + ACTIONS(10307), 1, + anon_sym_RBRACE, + STATE(6873), 1, + aux_sym__with_body_repeat1, + STATE(6788), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -753982,7 +750673,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [292497] = 14, + [289751] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -754003,13 +750694,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10193), 1, + ACTIONS(8823), 1, + anon_sym_RPAREN, + ACTIONS(10309), 1, anon_sym_COMMA, - ACTIONS(10392), 1, - anon_sym_GT, - STATE(6877), 1, - aux_sym_type_argument_list_repeat2, - STATE(6852), 9, + STATE(6921), 1, + aux_sym_tuple_pattern_repeat1, + STATE(6789), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -754019,7 +750710,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [292548] = 14, + [289802] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -754040,13 +750731,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(5026), 1, + ACTIONS(7622), 1, anon_sym_COMMA, - ACTIONS(10392), 1, - anon_sym_GT, - STATE(6679), 1, - aux_sym_type_argument_list_repeat1, - STATE(6853), 9, + ACTIONS(10311), 1, + anon_sym_RPAREN, + STATE(6658), 1, + aux_sym__for_statement_conditions_repeat1, + STATE(6790), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -754056,7 +750747,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [292599] = 14, + [289853] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -754077,13 +750768,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10189), 1, + ACTIONS(9571), 1, + anon_sym_RPAREN, + ACTIONS(10069), 1, + anon_sym_EQ, + ACTIONS(10313), 1, anon_sym_COMMA, - ACTIONS(10394), 1, - anon_sym_RBRACE, - STATE(7025), 1, - aux_sym__with_body_repeat1, - STATE(6854), 9, + STATE(6791), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -754093,7 +750784,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [292650] = 13, + [289904] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -754114,11 +750805,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10396), 1, + ACTIONS(10257), 1, + anon_sym_RPAREN, + ACTIONS(10316), 1, anon_sym_COMMA, - ACTIONS(10399), 1, - anon_sym_RBRACE, - STATE(6855), 10, + STATE(6792), 10, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -754129,7 +750820,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_define, sym_preproc_undef, aux_sym_positional_pattern_clause_repeat1, - [292699] = 14, + [289953] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -754150,13 +750841,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8861), 1, - anon_sym_RBRACK, - ACTIONS(10401), 1, + ACTIONS(10144), 1, anon_sym_COMMA, - STATE(6955), 1, - aux_sym_global_attribute_repeat1, - STATE(6856), 9, + ACTIONS(10319), 1, + anon_sym_GT, + STATE(6966), 1, + aux_sym_type_argument_list_repeat2, + STATE(6793), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -754166,7 +750857,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [292750] = 14, + [290004] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -754187,13 +750878,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8142), 1, - anon_sym_DOT, - ACTIONS(9335), 1, - anon_sym_LBRACE, - STATE(7661), 1, - sym_declaration_list, - STATE(6857), 9, + ACTIONS(7630), 3, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_RPAREN, + STATE(6794), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -754203,7 +750892,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [292801] = 14, + [290051] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -754224,13 +750913,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10193), 1, + ACTIONS(10321), 1, anon_sym_COMMA, - ACTIONS(10403), 1, - anon_sym_GT, - STATE(6785), 1, - aux_sym_type_argument_list_repeat2, - STATE(6858), 9, + ACTIONS(10323), 1, + anon_sym_RBRACE, + STATE(6945), 1, + aux_sym__switch_expression_body_repeat1, + STATE(6795), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -754240,7 +750929,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [292852] = 14, + [290102] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -754261,13 +750950,46 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10189), 1, + ACTIONS(10325), 3, + anon_sym_disable, + anon_sym_restore, + anon_sym_enable, + STATE(6796), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + [290149] = 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(10327), 1, anon_sym_COMMA, - ACTIONS(10405), 1, + ACTIONS(10330), 1, anon_sym_RBRACE, - STATE(6854), 1, - aux_sym__with_body_repeat1, - STATE(6859), 9, + STATE(6797), 10, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -754277,7 +750999,8 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [292903] = 14, + aux_sym_enum_member_declaration_list_repeat1, + [290198] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -754298,13 +751021,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10160), 1, + ACTIONS(7536), 3, anon_sym_COMMA, - ACTIONS(10407), 1, + anon_sym_RBRACK, anon_sym_RPAREN, - STATE(6930), 1, - aux_sym_argument_list_repeat1, - STATE(6860), 9, + STATE(6798), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -754314,7 +751035,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [292954] = 14, + [290245] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -754335,13 +751056,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(2771), 1, - anon_sym_RBRACE, - ACTIONS(10409), 1, + ACTIONS(10305), 1, + anon_sym_RPAREN, + ACTIONS(10332), 1, anon_sym_COMMA, - STATE(6809), 1, - aux_sym_anonymous_object_creation_expression_repeat1, - STATE(6861), 9, + STATE(6799), 10, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -754351,7 +751070,8 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [293005] = 14, + aux_sym_argument_list_repeat1, + [290294] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -754372,13 +751092,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(2697), 1, + ACTIONS(5168), 1, anon_sym_COMMA, - ACTIONS(7779), 1, - anon_sym_RBRACK, - STATE(6733), 1, - aux_sym_array_rank_specifier_repeat1, - STATE(6862), 9, + ACTIONS(10319), 1, + anon_sym_GT, + STATE(6681), 1, + aux_sym_type_argument_list_repeat1, + STATE(6800), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -754388,7 +751108,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [293056] = 13, + [290345] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -754409,11 +751129,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10411), 1, + ACTIONS(8848), 1, + anon_sym_RBRACK, + ACTIONS(10335), 1, anon_sym_COMMA, - ACTIONS(10414), 1, - anon_sym_GT, - STATE(6863), 10, + STATE(6981), 1, + aux_sym_global_attribute_repeat1, + STATE(6801), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -754423,8 +751145,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - aux_sym_type_argument_list_repeat2, - [293105] = 14, + [290396] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -754445,13 +751166,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(2923), 1, - anon_sym_RBRACE, - ACTIONS(10416), 1, + ACTIONS(7622), 1, anon_sym_COMMA, - STATE(6669), 1, + ACTIONS(10337), 1, + anon_sym_RPAREN, + STATE(6658), 1, aux_sym__for_statement_conditions_repeat1, - STATE(6864), 9, + STATE(6802), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -754461,7 +751182,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [293156] = 14, + [290447] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -754482,13 +751203,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(5274), 1, - anon_sym_LBRACE, - ACTIONS(10215), 1, - anon_sym_LPAREN, - STATE(1975), 1, - sym_block, - STATE(6865), 9, + ACTIONS(10270), 1, + anon_sym_COMMA, + ACTIONS(10339), 1, + anon_sym_RBRACK, + STATE(6628), 1, + aux_sym_bracketed_parameter_list_repeat1, + STATE(6803), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -754498,7 +751219,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [293207] = 14, + [290498] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -754519,13 +751240,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(7580), 1, + ACTIONS(8848), 1, + anon_sym_RBRACK, + ACTIONS(10335), 1, anon_sym_COMMA, - ACTIONS(10418), 1, - anon_sym_RPAREN, - STATE(6669), 1, - aux_sym__for_statement_conditions_repeat1, - STATE(6866), 9, + STATE(6767), 1, + aux_sym_global_attribute_repeat1, + STATE(6804), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -754535,7 +751256,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [293258] = 14, + [290549] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -754556,13 +751277,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(6956), 1, - anon_sym_COLON, - ACTIONS(10420), 1, - sym_interpolation_close_brace, - STATE(7697), 1, - sym_interpolation_format_clause, - STATE(6867), 9, + ACTIONS(10140), 1, + anon_sym_COMMA, + ACTIONS(10341), 1, + anon_sym_RPAREN, + STATE(6763), 1, + aux_sym_parenthesized_variable_designation_repeat1, + STATE(6805), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -754572,7 +751293,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [293309] = 14, + [290600] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -754593,13 +751314,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(5026), 1, + ACTIONS(10345), 1, + anon_sym_EQ, + ACTIONS(10343), 2, + anon_sym_SEMI, anon_sym_COMMA, - ACTIONS(10403), 1, - anon_sym_GT, - STATE(6679), 1, - aux_sym_type_argument_list_repeat1, - STATE(6868), 9, + STATE(6806), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -754609,7 +751329,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [293360] = 14, + [290649] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -754630,13 +751350,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10189), 1, + ACTIONS(10237), 1, anon_sym_COMMA, - ACTIONS(10422), 1, - anon_sym_RBRACE, - STATE(7025), 1, - aux_sym__with_body_repeat1, - STATE(6869), 9, + ACTIONS(10347), 1, + anon_sym_RPAREN, + STATE(6799), 1, + aux_sym_argument_list_repeat1, + STATE(6807), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -754646,7 +751366,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [293411] = 14, + [290700] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -754667,13 +751387,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(2697), 1, - anon_sym_COMMA, - ACTIONS(10424), 1, + ACTIONS(8872), 1, anon_sym_RBRACK, - STATE(6733), 1, - aux_sym_array_rank_specifier_repeat1, - STATE(6870), 9, + ACTIONS(10349), 1, + anon_sym_COMMA, + STATE(6981), 1, + aux_sym_global_attribute_repeat1, + STATE(6808), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -754683,7 +751403,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [293462] = 14, + [290751] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -754704,13 +751424,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10426), 1, + ACTIONS(2275), 1, + anon_sym_RBRACE, + ACTIONS(10351), 1, anon_sym_COMMA, - ACTIONS(10428), 1, - anon_sym_RBRACK, - STATE(6815), 1, - aux_sym_global_attribute_repeat1, - STATE(6871), 9, + STATE(6768), 1, + aux_sym__switch_expression_body_repeat1, + STATE(6809), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -754720,7 +751440,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [293513] = 14, + [290802] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -754741,13 +751461,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10430), 1, - anon_sym_COMMA, - ACTIONS(10432), 1, + ACTIONS(2235), 1, anon_sym_RBRACE, - STATE(6890), 1, + ACTIONS(10353), 1, + anon_sym_COMMA, + STATE(6768), 1, aux_sym__switch_expression_body_repeat1, - STATE(6872), 9, + STATE(6810), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -754757,7 +751477,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [293564] = 14, + [290853] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -754778,13 +751498,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10434), 1, + ACTIONS(2325), 1, + anon_sym_RBRACK, + ACTIONS(10355), 1, anon_sym_COMMA, - ACTIONS(10436), 1, - anon_sym_RBRACE, - STATE(6742), 1, - aux_sym_anonymous_object_creation_expression_repeat1, - STATE(6873), 9, + STATE(6779), 1, + aux_sym_list_pattern_repeat1, + STATE(6811), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -754794,32 +751514,34 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [293615] = 13, - ACTIONS(9097), 1, + [290904] = 14, + ACTIONS(3), 1, aux_sym_preproc_region_token1, - ACTIONS(9099), 1, + ACTIONS(5), 1, aux_sym_preproc_endregion_token1, - ACTIONS(9101), 1, + ACTIONS(7), 1, aux_sym_preproc_line_token1, - ACTIONS(9103), 1, + ACTIONS(9), 1, aux_sym_preproc_pragma_token1, - ACTIONS(9105), 1, + ACTIONS(11), 1, aux_sym_preproc_nullable_token1, - ACTIONS(9107), 1, + ACTIONS(13), 1, aux_sym_preproc_error_token1, - ACTIONS(9109), 1, + ACTIONS(15), 1, aux_sym_preproc_warning_token1, - ACTIONS(9111), 1, + ACTIONS(17), 1, aux_sym_preproc_define_token1, - ACTIONS(9113), 1, + ACTIONS(19), 1, aux_sym_preproc_undef_token1, - ACTIONS(9115), 1, + ACTIONS(21), 1, sym_comment, - ACTIONS(10438), 1, + ACTIONS(10357), 1, anon_sym_COMMA, - ACTIONS(10441), 1, - aux_sym_preproc_if_token2, - STATE(6874), 10, + ACTIONS(10359), 1, + anon_sym_RPAREN, + STATE(6792), 1, + aux_sym_positional_pattern_clause_repeat1, + STATE(6812), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -754829,8 +751551,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - aux_sym_preproc_pragma_repeat1, - [293664] = 14, + [290955] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -754851,13 +751572,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10189), 1, - anon_sym_COMMA, - ACTIONS(10443), 1, + ACTIONS(2133), 1, anon_sym_RBRACE, - STATE(6905), 1, - aux_sym__with_body_repeat1, - STATE(6875), 9, + ACTIONS(10361), 1, + anon_sym_COMMA, + STATE(6764), 1, + aux_sym_positional_pattern_clause_repeat1, + STATE(6813), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -754867,7 +751588,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [293715] = 14, + [291006] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -754888,13 +751609,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10193), 1, + ACTIONS(10237), 1, anon_sym_COMMA, - ACTIONS(10445), 1, - anon_sym_GT, - STATE(6908), 1, - aux_sym_type_argument_list_repeat2, - STATE(6876), 9, + ACTIONS(10363), 1, + anon_sym_RPAREN, + STATE(6799), 1, + aux_sym_argument_list_repeat1, + STATE(6814), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -754904,7 +751625,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [293766] = 14, + [291057] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -754925,13 +751646,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10193), 1, + ACTIONS(8839), 1, + anon_sym_RBRACK, + ACTIONS(10365), 1, anon_sym_COMMA, - ACTIONS(10447), 1, - anon_sym_GT, - STATE(6863), 1, - aux_sym_type_argument_list_repeat2, - STATE(6877), 9, + STATE(6981), 1, + aux_sym_global_attribute_repeat1, + STATE(6815), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -754941,7 +751662,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [293817] = 14, + [291108] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -754962,13 +751683,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(5026), 1, + ACTIONS(2827), 1, + anon_sym_RBRACE, + ACTIONS(10367), 1, anon_sym_COMMA, - ACTIONS(10445), 1, - anon_sym_GT, - STATE(6679), 1, - aux_sym_type_argument_list_repeat1, - STATE(6878), 9, + STATE(6724), 1, + aux_sym_anonymous_object_creation_expression_repeat1, + STATE(6816), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -754978,7 +751699,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [293868] = 13, + [291159] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -754999,11 +751720,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(8839), 1, anon_sym_RBRACK, - STATE(6879), 10, + ACTIONS(10365), 1, + anon_sym_COMMA, + STATE(6880), 1, + aux_sym_global_attribute_repeat1, + STATE(6817), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -755013,8 +751736,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - aux_sym_calling_convention_repeat1, - [293917] = 14, + [291210] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -755035,13 +751757,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10454), 1, + ACTIONS(10144), 1, anon_sym_COMMA, - ACTIONS(10456), 1, - anon_sym_RPAREN, - STATE(6907), 1, - aux_sym_attribute_argument_list_repeat1, - STATE(6880), 9, + ACTIONS(10369), 1, + anon_sym_GT, + STATE(6826), 1, + aux_sym_type_argument_list_repeat2, + STATE(6818), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -755051,7 +751773,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [293968] = 13, + [291261] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -755072,12 +751794,50 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10458), 1, - anon_sym_EQ, - ACTIONS(10001), 2, + ACTIONS(5168), 1, anon_sym_COMMA, - anon_sym_RBRACE, - STATE(6881), 9, + ACTIONS(10369), 1, + anon_sym_GT, + STATE(6681), 1, + aux_sym_type_argument_list_repeat1, + STATE(6819), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + [291312] = 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(10140), 1, + anon_sym_COMMA, + ACTIONS(10371), 1, + anon_sym_RPAREN, + STATE(6841), 1, + aux_sym_parenthesized_variable_designation_repeat1, + STATE(6820), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -755087,7 +751847,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [294017] = 12, + [291363] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -755108,11 +751868,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10460), 3, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_default, - STATE(6882), 9, + ACTIONS(10373), 1, + anon_sym_COMMA, + ACTIONS(10375), 1, + anon_sym_RBRACK, + STATE(6894), 1, + aux_sym_argument_list_repeat1, + STATE(6821), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -755122,7 +751884,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [294064] = 14, + [291414] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -755143,13 +751905,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(6678), 1, - anon_sym_LBRACK, - ACTIONS(6680), 1, - anon_sym_STAR, - ACTIONS(6716), 1, - anon_sym_QMARK, - STATE(6883), 9, + ACTIONS(8060), 1, + anon_sym_RBRACK, + ACTIONS(10377), 1, + anon_sym_COMMA, + STATE(6822), 10, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -755159,7 +751919,8 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [294115] = 14, + aux_sym_array_rank_specifier_repeat1, + [291463] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -755180,13 +751941,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10193), 1, + ACTIONS(10208), 1, anon_sym_COMMA, - ACTIONS(10462), 1, - anon_sym_GT, - STATE(6889), 1, - aux_sym_type_argument_list_repeat2, - STATE(6884), 9, + ACTIONS(10380), 1, + anon_sym_RBRACE, + STATE(6862), 1, + aux_sym__with_body_repeat1, + STATE(6823), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -755196,7 +751957,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [294166] = 14, + [291514] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -755217,13 +751978,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(5026), 1, + ACTIONS(2661), 1, + anon_sym_RBRACK, + ACTIONS(10382), 1, anon_sym_COMMA, - ACTIONS(10462), 1, - anon_sym_GT, - STATE(6679), 1, - aux_sym_type_argument_list_repeat1, - STATE(6885), 9, + STATE(6908), 1, + aux_sym_argument_list_repeat1, + STATE(6824), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -755233,7 +751994,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [294217] = 14, + [291565] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -755254,13 +752015,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(7580), 1, + ACTIONS(10237), 1, anon_sym_COMMA, - ACTIONS(10464), 1, + ACTIONS(10384), 1, anon_sym_RPAREN, - STATE(6669), 1, - aux_sym__for_statement_conditions_repeat1, - STATE(6886), 9, + STATE(6799), 1, + aux_sym_argument_list_repeat1, + STATE(6825), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -755270,7 +752031,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [294268] = 14, + [291616] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -755291,13 +752052,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(2683), 1, - anon_sym_RBRACK, - ACTIONS(10466), 1, + ACTIONS(10144), 1, anon_sym_COMMA, - STATE(6962), 1, - aux_sym_argument_list_repeat1, - STATE(6887), 9, + ACTIONS(10386), 1, + anon_sym_GT, + STATE(7007), 1, + aux_sym_type_argument_list_repeat2, + STATE(6826), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -755307,34 +752068,34 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [294319] = 14, - ACTIONS(3), 1, + [291667] = 14, + ACTIONS(9077), 1, aux_sym_preproc_region_token1, - ACTIONS(5), 1, + ACTIONS(9079), 1, aux_sym_preproc_endregion_token1, - ACTIONS(7), 1, + ACTIONS(9081), 1, aux_sym_preproc_line_token1, - ACTIONS(9), 1, + ACTIONS(9083), 1, aux_sym_preproc_pragma_token1, - ACTIONS(11), 1, + ACTIONS(9085), 1, aux_sym_preproc_nullable_token1, - ACTIONS(13), 1, + ACTIONS(9087), 1, aux_sym_preproc_error_token1, - ACTIONS(15), 1, + ACTIONS(9089), 1, aux_sym_preproc_warning_token1, - ACTIONS(17), 1, + ACTIONS(9091), 1, aux_sym_preproc_define_token1, - ACTIONS(19), 1, + ACTIONS(9093), 1, aux_sym_preproc_undef_token1, - ACTIONS(21), 1, + ACTIONS(9095), 1, sym_comment, - ACTIONS(7580), 1, + ACTIONS(10388), 1, anon_sym_COMMA, - ACTIONS(10468), 1, - anon_sym_RPAREN, - STATE(6669), 1, - aux_sym__for_statement_conditions_repeat1, - STATE(6888), 9, + ACTIONS(10390), 1, + aux_sym_preproc_if_token2, + STATE(6887), 1, + aux_sym_preproc_pragma_repeat1, + STATE(6827), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -755344,7 +752105,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [294370] = 14, + [291718] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -755365,13 +752126,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10193), 1, + ACTIONS(10171), 1, anon_sym_COMMA, - ACTIONS(10470), 1, - anon_sym_GT, - STATE(6863), 1, - aux_sym_type_argument_list_repeat2, - STATE(6889), 9, + ACTIONS(10392), 1, + anon_sym_RPAREN, + STATE(6728), 1, + aux_sym_tuple_type_repeat1, + STATE(6828), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -755381,7 +752142,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [294421] = 14, + [291769] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -755402,13 +752163,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(2267), 1, - anon_sym_RBRACE, - ACTIONS(10472), 1, - anon_sym_COMMA, - STATE(6895), 1, - aux_sym__switch_expression_body_repeat1, - STATE(6890), 9, + ACTIONS(9286), 1, + anon_sym_LBRACE, + ACTIONS(10394), 1, + anon_sym_SEMI, + STATE(2654), 1, + sym_accessor_list, + STATE(6829), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -755418,7 +752179,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [294472] = 13, + [291820] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -755439,12 +752200,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10474), 1, - anon_sym_EQ, - ACTIONS(9987), 2, + ACTIONS(2871), 1, + anon_sym_RBRACE, + ACTIONS(10396), 1, anon_sym_COMMA, - anon_sym_RPAREN, - STATE(6891), 9, + STATE(6658), 1, + aux_sym__for_statement_conditions_repeat1, + STATE(6830), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -755454,7 +752216,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [294521] = 14, + [291871] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -755475,13 +752237,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(2815), 1, - anon_sym_RBRACE, - ACTIONS(10476), 1, + ACTIONS(10237), 1, anon_sym_COMMA, - STATE(6809), 1, - aux_sym_anonymous_object_creation_expression_repeat1, - STATE(6892), 9, + ACTIONS(10398), 1, + anon_sym_RPAREN, + STATE(6883), 1, + aux_sym_argument_list_repeat1, + STATE(6831), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -755491,7 +752253,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [294572] = 13, + [291922] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -755512,11 +752274,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10478), 1, + ACTIONS(10400), 1, anon_sym_COMMA, - ACTIONS(10481), 1, - anon_sym_RPAREN, - STATE(6893), 10, + ACTIONS(10402), 1, + anon_sym_RBRACE, + STATE(6885), 1, + aux_sym_anonymous_object_creation_expression_repeat1, + STATE(6832), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -755526,8 +752290,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - aux_sym_using_variable_declaration_repeat1, - [294621] = 14, + [291973] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -755548,13 +752311,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(5026), 1, - anon_sym_COMMA, - ACTIONS(10483), 1, - anon_sym_RBRACK, - STATE(7033), 1, - aux_sym_type_argument_list_repeat1, - STATE(6894), 9, + ACTIONS(10404), 3, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_EQ_GT, + STATE(6833), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -755564,7 +752325,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [294672] = 13, + [292020] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -755585,11 +752346,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10485), 1, + ACTIONS(6601), 1, + anon_sym_LBRACK, + ACTIONS(6705), 1, + anon_sym_QMARK, + ACTIONS(9573), 1, anon_sym_COMMA, - ACTIONS(10488), 1, - anon_sym_RBRACE, - STATE(6895), 10, + STATE(6834), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -755599,8 +752362,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - aux_sym__switch_expression_body_repeat1, - [294721] = 14, + [292071] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -755621,13 +752383,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(2337), 1, - anon_sym_RBRACK, - ACTIONS(10490), 1, + ACTIONS(5168), 1, anon_sym_COMMA, - STATE(6945), 1, - aux_sym_list_pattern_repeat1, - STATE(6896), 9, + ACTIONS(10406), 1, + anon_sym_RBRACK, + STATE(6886), 1, + aux_sym_type_argument_list_repeat1, + STATE(6835), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -755637,7 +752399,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [294772] = 14, + [292122] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -755658,13 +752420,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10154), 1, + ACTIONS(6601), 1, + anon_sym_LBRACK, + ACTIONS(6603), 1, + anon_sym_STAR, + ACTIONS(9573), 1, anon_sym_COMMA, - ACTIONS(10492), 1, - anon_sym_RPAREN, - STATE(6918), 1, - aux_sym_parenthesized_variable_designation_repeat1, - STATE(6897), 9, + STATE(6836), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -755674,7 +752436,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [294823] = 14, + [292173] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -755695,13 +752457,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10494), 1, - sym_integer_literal, - ACTIONS(10496), 1, - anon_sym_DQUOTE, - STATE(7321), 1, - sym_string_literal, - STATE(6898), 9, + ACTIONS(5168), 1, + anon_sym_COMMA, + ACTIONS(10299), 1, + anon_sym_GT, + STATE(6681), 1, + aux_sym_type_argument_list_repeat1, + STATE(6837), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -755711,7 +752473,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [294874] = 14, + [292224] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -755732,13 +752494,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(2697), 1, + ACTIONS(10278), 1, + anon_sym_SEMI, + ACTIONS(10408), 1, anon_sym_COMMA, - ACTIONS(10498), 1, - anon_sym_RBRACK, - STATE(6733), 1, - aux_sym_array_rank_specifier_repeat1, - STATE(6899), 9, + STATE(6938), 1, + aux_sym_variable_declaration_repeat1, + STATE(6838), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -755748,7 +752510,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [294925] = 14, + [292275] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -755769,13 +752531,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10261), 1, - anon_sym_COMMA, - ACTIONS(10500), 1, - anon_sym_RPAREN, - STATE(6789), 1, - aux_sym_variable_declaration_repeat1, - STATE(6900), 9, + ACTIONS(2917), 1, + aux_sym_preproc_if_token3, + ACTIONS(2975), 1, + anon_sym_LBRACK, + STATE(7483), 1, + sym_attribute_list, + STATE(6839), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -755785,7 +752547,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [294976] = 12, + [292326] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -755806,11 +752568,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(7633), 3, - anon_sym_COMMA, + ACTIONS(8876), 1, anon_sym_RBRACK, - anon_sym_RPAREN, - STATE(6901), 9, + ACTIONS(10410), 1, + anon_sym_COMMA, + STATE(6981), 1, + aux_sym_global_attribute_repeat1, + STATE(6840), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -755820,7 +752584,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [295023] = 14, + [292377] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -755841,13 +752605,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(2333), 1, - anon_sym_RBRACK, - ACTIONS(10502), 1, + ACTIONS(10140), 1, anon_sym_COMMA, - STATE(6945), 1, - aux_sym_list_pattern_repeat1, - STATE(6902), 9, + ACTIONS(10412), 1, + anon_sym_RPAREN, + STATE(6763), 1, + aux_sym_parenthesized_variable_designation_repeat1, + STATE(6841), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -755857,32 +752621,33 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [295074] = 12, - ACTIONS(3), 1, + [292428] = 13, + ACTIONS(9077), 1, aux_sym_preproc_region_token1, - ACTIONS(5), 1, + ACTIONS(9079), 1, aux_sym_preproc_endregion_token1, - ACTIONS(7), 1, + ACTIONS(9081), 1, aux_sym_preproc_line_token1, - ACTIONS(9), 1, + ACTIONS(9083), 1, aux_sym_preproc_pragma_token1, - ACTIONS(11), 1, + ACTIONS(9085), 1, aux_sym_preproc_nullable_token1, - ACTIONS(13), 1, + ACTIONS(9087), 1, aux_sym_preproc_error_token1, - ACTIONS(15), 1, + ACTIONS(9089), 1, aux_sym_preproc_warning_token1, - ACTIONS(17), 1, + ACTIONS(9091), 1, aux_sym_preproc_define_token1, - ACTIONS(19), 1, + ACTIONS(9093), 1, aux_sym_preproc_undef_token1, - ACTIONS(21), 1, + ACTIONS(9095), 1, sym_comment, - ACTIONS(10504), 3, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_when, - STATE(6903), 9, + ACTIONS(10414), 1, + aux_sym_preproc_if_token2, + ACTIONS(10416), 2, + anon_sym_annotations, + anon_sym_warnings, + STATE(6842), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -755892,7 +752657,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [295121] = 14, + [292477] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -755913,13 +752678,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10506), 1, + ACTIONS(2683), 1, + anon_sym_RBRACK, + ACTIONS(10418), 1, anon_sym_COMMA, - ACTIONS(10508), 1, - anon_sym_RBRACE, - STATE(6910), 1, - aux_sym__switch_expression_body_repeat1, - STATE(6904), 9, + STATE(6908), 1, + aux_sym_argument_list_repeat1, + STATE(6843), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -755929,7 +752694,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [295172] = 14, + [292528] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -755950,13 +752715,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10189), 1, + ACTIONS(2695), 1, anon_sym_COMMA, - ACTIONS(10510), 1, - anon_sym_RBRACE, - STATE(7025), 1, - aux_sym__with_body_repeat1, - STATE(6905), 9, + ACTIONS(7785), 1, + anon_sym_RBRACK, + STATE(6822), 1, + aux_sym_array_rank_specifier_repeat1, + STATE(6844), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -755966,7 +752731,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [295223] = 14, + [292579] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -755987,13 +752752,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10189), 1, + ACTIONS(10420), 1, anon_sym_COMMA, - ACTIONS(10512), 1, - anon_sym_RBRACE, - STATE(6916), 1, - aux_sym__with_body_repeat1, - STATE(6906), 9, + ACTIONS(10423), 1, + anon_sym_GT, + STATE(6845), 10, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -756003,7 +752766,8 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [295274] = 13, + aux_sym_type_parameter_list_repeat1, + [292628] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -756024,11 +752788,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10514), 1, + ACTIONS(2789), 1, + anon_sym_RBRACE, + ACTIONS(10425), 1, anon_sym_COMMA, - ACTIONS(10517), 1, - anon_sym_RPAREN, - STATE(6907), 10, + STATE(6724), 1, + aux_sym_anonymous_object_creation_expression_repeat1, + STATE(6846), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -756038,8 +752804,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - aux_sym_attribute_argument_list_repeat1, - [295323] = 14, + [292679] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -756060,13 +752825,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10193), 1, + ACTIONS(10427), 3, anon_sym_COMMA, - ACTIONS(10519), 1, - anon_sym_GT, - STATE(6863), 1, - aux_sym_type_argument_list_repeat2, - STATE(6908), 9, + anon_sym_RBRACK, + anon_sym_RPAREN, + STATE(6847), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -756076,7 +752839,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [295374] = 14, + [292726] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -756097,13 +752860,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10521), 1, + ACTIONS(10144), 1, anon_sym_COMMA, - ACTIONS(10523), 1, - anon_sym_RBRACK, - STATE(6958), 1, - aux_sym_global_attribute_repeat1, - STATE(6909), 9, + ACTIONS(10429), 1, + anon_sym_GT, + STATE(6871), 1, + aux_sym_type_argument_list_repeat2, + STATE(6848), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -756113,7 +752876,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [295425] = 14, + [292777] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -756134,13 +752897,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(2209), 1, - anon_sym_RBRACE, - ACTIONS(10525), 1, + ACTIONS(5168), 1, anon_sym_COMMA, - STATE(6895), 1, - aux_sym__switch_expression_body_repeat1, - STATE(6910), 9, + ACTIONS(10429), 1, + anon_sym_GT, + STATE(6681), 1, + aux_sym_type_argument_list_repeat1, + STATE(6849), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -756150,7 +752913,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [295476] = 14, + [292828] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -756171,86 +752934,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10160), 1, + ACTIONS(10309), 1, anon_sym_COMMA, - ACTIONS(10527), 1, + ACTIONS(10431), 1, anon_sym_RPAREN, - STATE(6930), 1, - aux_sym_argument_list_repeat1, - STATE(6911), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - [295527] = 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(10529), 1, - anon_sym_COMMA, - ACTIONS(10532), 1, - anon_sym_GT, - STATE(6912), 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_type_parameter_list_repeat1, - [295576] = 14, - ACTIONS(9097), 1, - aux_sym_preproc_region_token1, - ACTIONS(9099), 1, - aux_sym_preproc_endregion_token1, - ACTIONS(9101), 1, - aux_sym_preproc_line_token1, - ACTIONS(9103), 1, - aux_sym_preproc_pragma_token1, - ACTIONS(9105), 1, - aux_sym_preproc_nullable_token1, - ACTIONS(9107), 1, - aux_sym_preproc_error_token1, - ACTIONS(9109), 1, - aux_sym_preproc_warning_token1, - ACTIONS(9111), 1, - aux_sym_preproc_define_token1, - ACTIONS(9113), 1, - aux_sym_preproc_undef_token1, - ACTIONS(9115), 1, - sym_comment, - ACTIONS(10534), 1, - anon_sym_DQUOTE, - ACTIONS(10536), 1, - aux_sym_preproc_if_token2, - STATE(7420), 1, - sym_string_literal, - STATE(6913), 9, + STATE(6745), 1, + aux_sym_tuple_pattern_repeat1, + STATE(6850), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -756260,7 +752950,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [295627] = 14, + [292879] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -756281,13 +752971,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10538), 1, + ACTIONS(2695), 1, anon_sym_COMMA, - ACTIONS(10540), 1, + ACTIONS(10433), 1, anon_sym_RBRACK, - STATE(6960), 1, - aux_sym_argument_list_repeat1, - STATE(6914), 9, + STATE(6822), 1, + aux_sym_array_rank_specifier_repeat1, + STATE(6851), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -756297,7 +752987,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [295678] = 14, + [292930] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -756318,13 +753008,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10193), 1, + ACTIONS(10435), 3, anon_sym_COMMA, - ACTIONS(10542), 1, - anon_sym_GT, - STATE(6933), 1, - aux_sym_type_argument_list_repeat2, - STATE(6915), 9, + anon_sym_RBRACK, + anon_sym_RPAREN, + STATE(6852), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -756334,7 +753022,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [295729] = 14, + [292977] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -756355,50 +753043,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10189), 1, + ACTIONS(10208), 1, anon_sym_COMMA, - ACTIONS(10544), 1, + ACTIONS(10437), 1, anon_sym_RBRACE, - STATE(7025), 1, + STATE(6970), 1, aux_sym__with_body_repeat1, - STATE(6916), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - [295780] = 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(5026), 1, - anon_sym_COMMA, - ACTIONS(10542), 1, - anon_sym_GT, - STATE(6679), 1, - aux_sym_type_argument_list_repeat1, - STATE(6917), 9, + STATE(6853), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -756408,7 +753059,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [295831] = 14, + [293028] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -756429,13 +753080,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10154), 1, + ACTIONS(10439), 3, anon_sym_COMMA, - ACTIONS(10546), 1, + anon_sym_RBRACK, anon_sym_RPAREN, - STATE(6753), 1, - aux_sym_parenthesized_variable_designation_repeat1, - STATE(6918), 9, + STATE(6854), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -756445,7 +753094,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [295882] = 13, + [293075] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -756466,11 +753115,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10548), 1, + ACTIONS(10441), 1, anon_sym_COMMA, - ACTIONS(10551), 1, - anon_sym_RBRACE, - STATE(6919), 10, + ACTIONS(10443), 1, + anon_sym_RBRACK, + STATE(7020), 1, + aux_sym_argument_list_repeat1, + STATE(6855), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -756480,8 +753131,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, - [295931] = 14, + [293126] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -756502,13 +753152,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9496), 1, - anon_sym_LBRACE, - ACTIONS(9828), 1, + ACTIONS(2913), 1, + anon_sym_RBRACE, + ACTIONS(10445), 1, anon_sym_COMMA, - STATE(6922), 1, - aux_sym_base_list_repeat1, - STATE(6920), 9, + STATE(6658), 1, + aux_sym__for_statement_conditions_repeat1, + STATE(6856), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -756518,7 +753168,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [295982] = 14, + [293177] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -756539,13 +753189,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10553), 1, - anon_sym_COMMA, - ACTIONS(10555), 1, - anon_sym_RBRACK, - STATE(7011), 1, - aux_sym_global_attribute_repeat1, - STATE(6921), 9, + ACTIONS(10447), 3, + sym_interpolation_end_quote, + sym_interpolation_open_brace, + sym_interpolation_string_content, + STATE(6857), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -756555,7 +753203,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [296033] = 13, + [293224] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -756576,11 +753224,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9491), 1, - anon_sym_LBRACE, - ACTIONS(10557), 1, + ACTIONS(10270), 1, anon_sym_COMMA, - STATE(6922), 10, + ACTIONS(10449), 1, + anon_sym_RPAREN, + STATE(6628), 1, + aux_sym_bracketed_parameter_list_repeat1, + STATE(6858), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -756590,8 +753240,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - aux_sym_base_list_repeat1, - [296082] = 14, + [293275] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -756612,13 +753261,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10560), 1, + ACTIONS(10198), 1, anon_sym_COMMA, - ACTIONS(10562), 1, + ACTIONS(10451), 1, anon_sym_RBRACK, - STATE(7015), 1, - aux_sym_argument_list_repeat1, - STATE(6923), 9, + STATE(6747), 1, + aux_sym_calling_convention_repeat1, + STATE(6859), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -756628,7 +753277,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [296133] = 14, + [293326] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -756649,13 +753298,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10247), 1, - anon_sym_COMMA, - ACTIONS(10564), 1, + ACTIONS(8876), 1, anon_sym_RBRACK, - STATE(6879), 1, - aux_sym_calling_convention_repeat1, - STATE(6924), 9, + ACTIONS(10410), 1, + anon_sym_COMMA, + STATE(6730), 1, + aux_sym_global_attribute_repeat1, + STATE(6860), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -756665,7 +753314,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [296184] = 12, + [293377] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -756686,11 +753335,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10566), 3, + ACTIONS(10237), 1, anon_sym_COMMA, - anon_sym_RBRACK, + ACTIONS(10453), 1, anon_sym_RPAREN, - STATE(6925), 9, + STATE(6814), 1, + aux_sym_argument_list_repeat1, + STATE(6861), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -756700,7 +753351,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [296231] = 14, + [293428] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -756721,13 +753372,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10189), 1, + ACTIONS(10455), 1, anon_sym_COMMA, - ACTIONS(10568), 1, + ACTIONS(10458), 1, anon_sym_RBRACE, - STATE(7025), 1, - aux_sym__with_body_repeat1, - STATE(6926), 9, + STATE(6862), 10, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -756737,7 +753386,8 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [296282] = 14, + aux_sym__with_body_repeat1, + [293477] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -756758,13 +753408,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10154), 1, + ACTIONS(2695), 1, anon_sym_COMMA, - ACTIONS(10570), 1, - anon_sym_RPAREN, - STATE(6753), 1, - aux_sym_parenthesized_variable_designation_repeat1, - STATE(6927), 9, + ACTIONS(10460), 1, + anon_sym_RBRACK, + STATE(6822), 1, + aux_sym_array_rank_specifier_repeat1, + STATE(6863), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -756774,7 +753424,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [296333] = 12, + [293528] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -756795,11 +753445,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10572), 3, - sym_interpolation_end_quote, - sym_interpolation_open_brace, - sym_interpolation_string_content, - STATE(6928), 9, + ACTIONS(5168), 1, + anon_sym_COMMA, + ACTIONS(10462), 1, + anon_sym_RBRACK, + STATE(6996), 1, + aux_sym_type_argument_list_repeat1, + STATE(6864), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -756809,7 +753461,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [296380] = 14, + [293579] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -756830,13 +753482,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(7580), 1, + ACTIONS(10237), 1, anon_sym_COMMA, - ACTIONS(10574), 1, + ACTIONS(10464), 1, anon_sym_RPAREN, - STATE(6669), 1, - aux_sym__for_statement_conditions_repeat1, - STATE(6929), 9, + STATE(6799), 1, + aux_sym_argument_list_repeat1, + STATE(6865), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -756846,7 +753498,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [296431] = 13, + [293630] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -756867,11 +753519,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10576), 1, - anon_sym_COMMA, - ACTIONS(10579), 1, + ACTIONS(3651), 1, + anon_sym_EQ_GT, + ACTIONS(9975), 1, anon_sym_RPAREN, - STATE(6930), 10, + ACTIONS(10466), 1, + anon_sym_COMMA, + STATE(6866), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -756881,8 +753535,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - aux_sym_argument_list_repeat1, - [296480] = 14, + [293681] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -756903,13 +753556,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10581), 1, + ACTIONS(10237), 1, anon_sym_COMMA, - ACTIONS(10583), 1, - anon_sym_RBRACK, - STATE(6772), 1, - aux_sym_global_attribute_repeat1, - STATE(6931), 9, + ACTIONS(10469), 1, + anon_sym_RPAREN, + STATE(6799), 1, + aux_sym_argument_list_repeat1, + STATE(6867), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -756919,7 +753572,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [296531] = 14, + [293732] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -756940,13 +753593,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10585), 1, + ACTIONS(10471), 1, anon_sym_COMMA, - ACTIONS(10587), 1, + ACTIONS(10473), 1, anon_sym_RBRACK, - STATE(6779), 1, + STATE(6967), 1, aux_sym_argument_list_repeat1, - STATE(6932), 9, + STATE(6868), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -756956,7 +753609,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [296582] = 14, + [293783] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -756977,13 +753630,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10193), 1, + ACTIONS(2155), 1, + anon_sym_RBRACE, + ACTIONS(10475), 1, anon_sym_COMMA, - ACTIONS(10589), 1, - anon_sym_GT, - STATE(6863), 1, - aux_sym_type_argument_list_repeat2, - STATE(6933), 9, + STATE(6768), 1, + aux_sym__switch_expression_body_repeat1, + STATE(6869), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -756993,7 +753646,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [296633] = 14, + [293834] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -757014,13 +753667,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10317), 1, + ACTIONS(10171), 1, anon_sym_COMMA, - ACTIONS(10591), 1, - anon_sym_RBRACK, - STATE(6661), 1, - aux_sym_bracketed_parameter_list_repeat1, - STATE(6934), 9, + ACTIONS(10477), 1, + anon_sym_RPAREN, + STATE(6728), 1, + aux_sym_tuple_type_repeat1, + STATE(6870), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -757030,34 +753683,34 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [296684] = 14, - ACTIONS(9097), 1, + [293885] = 14, + ACTIONS(3), 1, aux_sym_preproc_region_token1, - ACTIONS(9099), 1, + ACTIONS(5), 1, aux_sym_preproc_endregion_token1, - ACTIONS(9101), 1, + ACTIONS(7), 1, aux_sym_preproc_line_token1, - ACTIONS(9103), 1, + ACTIONS(9), 1, aux_sym_preproc_pragma_token1, - ACTIONS(9105), 1, + ACTIONS(11), 1, aux_sym_preproc_nullable_token1, - ACTIONS(9107), 1, + ACTIONS(13), 1, aux_sym_preproc_error_token1, - ACTIONS(9109), 1, + ACTIONS(15), 1, aux_sym_preproc_warning_token1, - ACTIONS(9111), 1, + ACTIONS(17), 1, aux_sym_preproc_define_token1, - ACTIONS(9113), 1, + ACTIONS(19), 1, aux_sym_preproc_undef_token1, - ACTIONS(9115), 1, + ACTIONS(21), 1, sym_comment, - ACTIONS(10219), 1, + ACTIONS(10144), 1, anon_sym_COMMA, - ACTIONS(10593), 1, - aux_sym_preproc_if_token2, - STATE(6771), 1, - aux_sym_preproc_pragma_repeat1, - STATE(6935), 9, + ACTIONS(10479), 1, + anon_sym_GT, + STATE(7007), 1, + aux_sym_type_argument_list_repeat2, + STATE(6871), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -757067,7 +753720,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [296735] = 14, + [293936] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -757088,13 +753741,13 @@ 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(10595), 1, - anon_sym_RBRACK, - STATE(6661), 1, - aux_sym_bracketed_parameter_list_repeat1, - STATE(6936), 9, + ACTIONS(5573), 1, + anon_sym_LBRACE, + ACTIONS(10295), 1, + anon_sym_LPAREN, + STATE(7062), 1, + sym_block, + STATE(6872), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -757104,7 +753757,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [296786] = 14, + [293987] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -757125,13 +753778,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10193), 1, + ACTIONS(10208), 1, anon_sym_COMMA, - ACTIONS(10597), 1, - anon_sym_GT, - STATE(6939), 1, - aux_sym_type_argument_list_repeat2, - STATE(6937), 9, + ACTIONS(10481), 1, + anon_sym_RBRACE, + STATE(6862), 1, + aux_sym__with_body_repeat1, + STATE(6873), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -757141,7 +753794,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [296837] = 14, + [294038] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -757162,13 +753815,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(5026), 1, + ACTIONS(10485), 1, + anon_sym_EQ, + ACTIONS(10483), 2, + anon_sym_SEMI, anon_sym_COMMA, - ACTIONS(10597), 1, - anon_sym_GT, - STATE(6679), 1, - aux_sym_type_argument_list_repeat1, - STATE(6938), 9, + STATE(6874), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -757178,7 +753830,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [296888] = 14, + [294087] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -757199,13 +753851,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10193), 1, + ACTIONS(2869), 1, + anon_sym_RBRACE, + ACTIONS(10487), 1, anon_sym_COMMA, - ACTIONS(10599), 1, - anon_sym_GT, - STATE(6863), 1, - aux_sym_type_argument_list_repeat2, - STATE(6939), 9, + STATE(6658), 1, + aux_sym__for_statement_conditions_repeat1, + STATE(6875), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -757215,7 +753867,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [296939] = 14, + [294138] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -757236,13 +753888,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10601), 1, + ACTIONS(10144), 1, anon_sym_COMMA, - ACTIONS(10603), 1, - anon_sym_RBRACE, - STATE(6808), 1, - aux_sym__switch_expression_body_repeat1, - STATE(6940), 9, + ACTIONS(10489), 1, + anon_sym_GT, + STATE(6888), 1, + aux_sym_type_argument_list_repeat2, + STATE(6876), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -757252,7 +753904,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [296990] = 14, + [294189] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -757273,13 +753925,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10160), 1, + ACTIONS(10144), 1, anon_sym_COMMA, - ACTIONS(10605), 1, - anon_sym_RPAREN, - STATE(6977), 1, - aux_sym_argument_list_repeat1, - STATE(6941), 9, + ACTIONS(10491), 1, + anon_sym_GT, + STATE(6922), 1, + aux_sym_type_argument_list_repeat2, + STATE(6877), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -757289,7 +753941,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [297041] = 14, + [294240] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -757310,13 +753962,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(2869), 1, - anon_sym_RBRACE, - ACTIONS(10607), 1, + ACTIONS(5168), 1, anon_sym_COMMA, - STATE(6669), 1, - aux_sym__for_statement_conditions_repeat1, - STATE(6942), 9, + ACTIONS(10491), 1, + anon_sym_GT, + STATE(6681), 1, + aux_sym_type_argument_list_repeat1, + STATE(6878), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -757326,7 +753978,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [297092] = 12, + [294291] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -757347,11 +753999,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10609), 3, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_when, - STATE(6943), 9, + ACTIONS(5168), 1, + anon_sym_COMMA, + ACTIONS(10489), 1, + anon_sym_GT, + STATE(6681), 1, + aux_sym_type_argument_list_repeat1, + STATE(6879), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -757361,7 +754015,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [297139] = 14, + [294342] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -757382,13 +754036,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10339), 1, + ACTIONS(8858), 1, + anon_sym_RBRACK, + ACTIONS(10493), 1, anon_sym_COMMA, - ACTIONS(10500), 1, - anon_sym_SEMI, - STATE(6822), 1, - aux_sym_variable_declaration_repeat1, - STATE(6944), 9, + STATE(6981), 1, + aux_sym_global_attribute_repeat1, + STATE(6880), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -757398,7 +754052,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [297190] = 13, + [294393] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -757419,11 +754073,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(1913), 1, - anon_sym_RBRACK, - ACTIONS(10611), 1, + ACTIONS(5168), 1, anon_sym_COMMA, - STATE(6945), 10, + ACTIONS(10495), 1, + anon_sym_RBRACK, + STATE(6681), 1, + aux_sym_type_argument_list_repeat1, + STATE(6881), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -757433,8 +754089,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - aux_sym_list_pattern_repeat1, - [297239] = 14, + [294444] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -757455,13 +754110,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(2697), 1, + ACTIONS(10497), 1, anon_sym_COMMA, - ACTIONS(10614), 1, + ACTIONS(10499), 1, anon_sym_RBRACK, - STATE(6733), 1, - aux_sym_array_rank_specifier_repeat1, - STATE(6946), 9, + STATE(7017), 1, + aux_sym_global_attribute_repeat1, + STATE(6882), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -757471,7 +754126,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [297290] = 14, + [294495] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -757492,13 +754147,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10160), 1, + ACTIONS(10237), 1, anon_sym_COMMA, - ACTIONS(10616), 1, + ACTIONS(10501), 1, anon_sym_RPAREN, - STATE(6743), 1, + STATE(6799), 1, aux_sym_argument_list_repeat1, - STATE(6947), 9, + STATE(6883), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -757508,7 +754163,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [297341] = 14, + [294546] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -757529,13 +754184,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10317), 1, + ACTIONS(2695), 1, anon_sym_COMMA, - ACTIONS(10618), 1, - anon_sym_RPAREN, - STATE(6813), 1, - aux_sym_bracketed_parameter_list_repeat1, - STATE(6948), 9, + ACTIONS(7795), 1, + anon_sym_RBRACK, + STATE(6822), 1, + aux_sym_array_rank_specifier_repeat1, + STATE(6884), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -757545,7 +754200,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [297392] = 14, + [294597] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -757566,13 +754221,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10174), 1, + ACTIONS(2787), 1, + anon_sym_RBRACE, + ACTIONS(10503), 1, anon_sym_COMMA, - ACTIONS(10620), 1, - anon_sym_RPAREN, - STATE(6749), 1, - aux_sym_using_variable_declaration_repeat1, - STATE(6949), 9, + STATE(6724), 1, + aux_sym_anonymous_object_creation_expression_repeat1, + STATE(6885), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -757582,7 +754237,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [297443] = 14, + [294648] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -757603,13 +754258,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10170), 1, + ACTIONS(5168), 1, anon_sym_COMMA, - ACTIONS(10622), 1, - anon_sym_RPAREN, - STATE(7004), 1, - aux_sym_tuple_type_repeat1, - STATE(6950), 9, + ACTIONS(10505), 1, + anon_sym_RBRACK, + STATE(6681), 1, + aux_sym_type_argument_list_repeat1, + STATE(6886), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -757619,34 +754274,34 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [297494] = 14, - ACTIONS(3), 1, + [294699] = 14, + ACTIONS(9077), 1, aux_sym_preproc_region_token1, - ACTIONS(5), 1, + ACTIONS(9079), 1, aux_sym_preproc_endregion_token1, - ACTIONS(7), 1, + ACTIONS(9081), 1, aux_sym_preproc_line_token1, - ACTIONS(9), 1, + ACTIONS(9083), 1, aux_sym_preproc_pragma_token1, - ACTIONS(11), 1, + ACTIONS(9085), 1, aux_sym_preproc_nullable_token1, - ACTIONS(13), 1, + ACTIONS(9087), 1, aux_sym_preproc_error_token1, - ACTIONS(15), 1, + ACTIONS(9089), 1, aux_sym_preproc_warning_token1, - ACTIONS(17), 1, + ACTIONS(9091), 1, aux_sym_preproc_define_token1, - ACTIONS(19), 1, + ACTIONS(9093), 1, aux_sym_preproc_undef_token1, - ACTIONS(21), 1, + ACTIONS(9095), 1, sym_comment, - ACTIONS(8847), 1, - anon_sym_RPAREN, - ACTIONS(10309), 1, + ACTIONS(10388), 1, anon_sym_COMMA, - STATE(6811), 1, - aux_sym_tuple_pattern_repeat1, - STATE(6951), 9, + ACTIONS(10507), 1, + aux_sym_preproc_if_token2, + STATE(6920), 1, + aux_sym_preproc_pragma_repeat1, + STATE(6887), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -757656,7 +754311,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [297545] = 14, + [294750] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -757677,49 +754332,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10624), 1, + ACTIONS(10144), 1, anon_sym_COMMA, - ACTIONS(10626), 1, - anon_sym_RBRACK, - STATE(6787), 1, - aux_sym_global_attribute_repeat1, - STATE(6952), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - [297596] = 13, - ACTIONS(9097), 1, - aux_sym_preproc_region_token1, - ACTIONS(9099), 1, - aux_sym_preproc_endregion_token1, - ACTIONS(9101), 1, - aux_sym_preproc_line_token1, - ACTIONS(9103), 1, - aux_sym_preproc_pragma_token1, - ACTIONS(9105), 1, - aux_sym_preproc_nullable_token1, - ACTIONS(9107), 1, - aux_sym_preproc_error_token1, - ACTIONS(9109), 1, - aux_sym_preproc_warning_token1, - ACTIONS(9111), 1, - aux_sym_preproc_define_token1, - ACTIONS(9113), 1, - aux_sym_preproc_undef_token1, - ACTIONS(9115), 1, - sym_comment, - ACTIONS(10628), 1, - aux_sym_preproc_if_token2, - ACTIONS(10630), 2, - anon_sym_annotations, - anon_sym_warnings, - STATE(6953), 9, + ACTIONS(10509), 1, + anon_sym_GT, + STATE(7007), 1, + aux_sym_type_argument_list_repeat2, + STATE(6888), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -757729,7 +754348,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [297645] = 14, + [294801] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -757750,13 +754369,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10154), 1, - anon_sym_COMMA, - ACTIONS(10632), 1, - anon_sym_RPAREN, - STATE(6753), 1, - aux_sym_parenthesized_variable_designation_repeat1, - STATE(6954), 9, + ACTIONS(9286), 1, + anon_sym_LBRACE, + ACTIONS(10511), 1, + anon_sym_SEMI, + STATE(2770), 1, + sym_accessor_list, + STATE(6889), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -757766,7 +754385,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [297696] = 13, + [294852] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -757787,11 +754406,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10634), 1, + ACTIONS(10237), 1, anon_sym_COMMA, - ACTIONS(10637), 1, - anon_sym_RBRACK, - STATE(6955), 10, + ACTIONS(10513), 1, + anon_sym_RPAREN, + STATE(6799), 1, + aux_sym_argument_list_repeat1, + STATE(6890), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -757801,8 +754422,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - aux_sym_global_attribute_repeat1, - [297745] = 14, + [294903] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -757823,13 +754443,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8869), 1, + ACTIONS(2335), 1, anon_sym_RBRACK, - ACTIONS(10639), 1, + ACTIONS(10515), 1, anon_sym_COMMA, - STATE(6955), 1, - aux_sym_global_attribute_repeat1, - STATE(6956), 9, + STATE(6779), 1, + aux_sym_list_pattern_repeat1, + STATE(6891), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -757839,7 +754459,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [297796] = 12, + [294954] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -757860,11 +754480,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10579), 3, + ACTIONS(10171), 1, anon_sym_COMMA, - anon_sym_RBRACK, + ACTIONS(10517), 1, anon_sym_RPAREN, - STATE(6957), 9, + STATE(6728), 1, + aux_sym_tuple_type_repeat1, + STATE(6892), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -757874,7 +754496,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [297843] = 14, + [295005] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -757895,13 +754517,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8867), 1, - anon_sym_RBRACK, - ACTIONS(10641), 1, + ACTIONS(10519), 1, anon_sym_COMMA, - STATE(6955), 1, - aux_sym_global_attribute_repeat1, - STATE(6958), 9, + ACTIONS(10521), 1, + anon_sym_RBRACE, + STATE(6846), 1, + aux_sym_anonymous_object_creation_expression_repeat1, + STATE(6893), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -757911,7 +754533,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [297894] = 14, + [295056] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -757932,13 +754554,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8867), 1, + ACTIONS(2659), 1, anon_sym_RBRACK, - ACTIONS(10641), 1, + ACTIONS(10523), 1, anon_sym_COMMA, - STATE(7003), 1, - aux_sym_global_attribute_repeat1, - STATE(6959), 9, + STATE(6908), 1, + aux_sym_argument_list_repeat1, + STATE(6894), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -757948,7 +754570,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [297945] = 14, + [295107] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -757969,13 +754591,87 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(2675), 1, + ACTIONS(2867), 1, + anon_sym_RBRACE, + ACTIONS(10525), 1, + anon_sym_COMMA, + STATE(6658), 1, + aux_sym__for_statement_conditions_repeat1, + STATE(6895), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + [295158] = 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(2695), 1, + anon_sym_COMMA, + ACTIONS(7540), 1, anon_sym_RBRACK, - ACTIONS(10643), 1, + STATE(6822), 1, + aux_sym_array_rank_specifier_repeat1, + STATE(6896), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + [295209] = 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(2785), 1, + anon_sym_RBRACE, + ACTIONS(10527), 1, anon_sym_COMMA, - STATE(6962), 1, - aux_sym_argument_list_repeat1, - STATE(6960), 9, + STATE(6724), 1, + aux_sym_anonymous_object_creation_expression_repeat1, + STATE(6897), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -757985,7 +754681,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [297996] = 14, + [295260] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -758006,13 +754702,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10160), 1, + ACTIONS(10208), 1, anon_sym_COMMA, - ACTIONS(10645), 1, - anon_sym_RPAREN, - STATE(6930), 1, - aux_sym_argument_list_repeat1, - STATE(6961), 9, + ACTIONS(10529), 1, + anon_sym_RBRACE, + STATE(6998), 1, + aux_sym__with_body_repeat1, + STATE(6898), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -758022,7 +754718,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [298047] = 13, + [295311] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -758043,11 +754739,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10579), 1, - anon_sym_RBRACK, - ACTIONS(10647), 1, + ACTIONS(10357), 1, anon_sym_COMMA, - STATE(6962), 10, + ACTIONS(10531), 1, + anon_sym_RPAREN, + STATE(6792), 1, + aux_sym_positional_pattern_clause_repeat1, + STATE(6899), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -758057,8 +754755,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - aux_sym_argument_list_repeat1, - [298096] = 14, + [295362] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -758079,13 +754776,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10454), 1, + ACTIONS(10237), 1, anon_sym_COMMA, - ACTIONS(10650), 1, + ACTIONS(10533), 1, anon_sym_RPAREN, - STATE(6880), 1, - aux_sym_attribute_argument_list_repeat1, - STATE(6963), 9, + STATE(6799), 1, + aux_sym_argument_list_repeat1, + STATE(6900), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -758095,7 +754792,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [298147] = 12, + [295413] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -758116,11 +754813,48 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10399), 3, + ACTIONS(2695), 1, anon_sym_COMMA, + ACTIONS(10535), 1, + anon_sym_RBRACK, + STATE(6822), 1, + aux_sym_array_rank_specifier_repeat1, + STATE(6901), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + [295464] = 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(7839), 3, + anon_sym_COMMA, + anon_sym_RBRACK, anon_sym_RPAREN, - anon_sym_RBRACE, - STATE(6964), 9, + STATE(6902), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -758130,7 +754864,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [298194] = 14, + [295511] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -758151,13 +754885,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10652), 1, + ACTIONS(10537), 1, anon_sym_COMMA, - ACTIONS(10654), 1, + ACTIONS(10539), 1, anon_sym_RBRACE, - STATE(6836), 1, + STATE(7006), 1, aux_sym__switch_expression_body_repeat1, - STATE(6965), 9, + STATE(6903), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -758167,7 +754901,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [298245] = 14, + [295562] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -758188,13 +754922,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10170), 1, + ACTIONS(10171), 1, anon_sym_COMMA, - ACTIONS(10656), 1, + ACTIONS(10541), 1, anon_sym_RPAREN, - STATE(7004), 1, + STATE(6728), 1, aux_sym_tuple_type_repeat1, - STATE(6966), 9, + STATE(6904), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -758204,7 +754938,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [298296] = 14, + [295613] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -758225,13 +754959,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(2925), 1, - anon_sym_RBRACE, - ACTIONS(10658), 1, + ACTIONS(10543), 1, anon_sym_COMMA, - STATE(6669), 1, - aux_sym__for_statement_conditions_repeat1, - STATE(6967), 9, + ACTIONS(10545), 1, + anon_sym_RBRACE, + STATE(6935), 1, + aux_sym__switch_expression_body_repeat1, + STATE(6905), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -758241,7 +754975,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [298347] = 14, + [295664] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -758262,13 +754996,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10160), 1, - anon_sym_COMMA, - ACTIONS(10660), 1, - anon_sym_RPAREN, - STATE(7008), 1, - aux_sym_argument_list_repeat1, - STATE(6968), 9, + ACTIONS(10547), 3, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_EQ_GT, + STATE(6906), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -758278,7 +755010,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [298398] = 14, + [295711] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -758299,13 +755031,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10662), 1, + ACTIONS(2695), 1, anon_sym_COMMA, - ACTIONS(10664), 1, - anon_sym_RBRACE, - STATE(7009), 1, - aux_sym_anonymous_object_creation_expression_repeat1, - STATE(6969), 9, + ACTIONS(7644), 1, + anon_sym_RBRACK, + STATE(6822), 1, + aux_sym_array_rank_specifier_repeat1, + STATE(6907), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -758315,7 +755047,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [298449] = 14, + [295762] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -758336,13 +755068,49 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10666), 1, + ACTIONS(10305), 1, + anon_sym_RBRACK, + ACTIONS(10549), 1, anon_sym_COMMA, - ACTIONS(10668), 1, + STATE(6908), 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_argument_list_repeat1, + [295811] = 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(2863), 1, anon_sym_RBRACE, - STATE(6745), 1, - aux_sym_anonymous_object_creation_expression_repeat1, - STATE(6970), 9, + ACTIONS(10552), 1, + anon_sym_COMMA, + STATE(6658), 1, + aux_sym__for_statement_conditions_repeat1, + STATE(6909), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -758352,7 +755120,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [298500] = 14, + [295862] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -758373,13 +755141,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10670), 1, + ACTIONS(10554), 3, anon_sym_COMMA, - ACTIONS(10672), 1, + anon_sym_RBRACK, anon_sym_GT, - STATE(6912), 1, - aux_sym_type_parameter_list_repeat1, - STATE(6971), 9, + STATE(6910), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -758389,7 +755155,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [298551] = 12, + [295909] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -758410,11 +755176,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10352), 3, - anon_sym_SEMI, + ACTIONS(2695), 1, anon_sym_COMMA, - anon_sym_RPAREN, - STATE(6972), 9, + ACTIONS(10556), 1, + anon_sym_RBRACK, + STATE(6822), 1, + aux_sym_array_rank_specifier_repeat1, + STATE(6911), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -758424,7 +755192,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [298598] = 14, + [295960] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -758445,13 +755213,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10674), 1, - anon_sym_COMMA, - ACTIONS(10676), 1, - anon_sym_RBRACE, - STATE(7032), 1, - aux_sym_enum_member_declaration_list_repeat1, - STATE(6973), 9, + ACTIONS(5859), 1, + anon_sym_LBRACE, + ACTIONS(10295), 1, + anon_sym_LPAREN, + STATE(2102), 1, + sym_block, + STATE(6912), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -758461,7 +755229,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [298649] = 12, + [296011] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -758482,11 +755250,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(7837), 3, + ACTIONS(10237), 1, anon_sym_COMMA, - anon_sym_RBRACK, + ACTIONS(10558), 1, anon_sym_RPAREN, - STATE(6974), 9, + STATE(6759), 1, + aux_sym_argument_list_repeat1, + STATE(6913), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -758496,7 +755266,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [298696] = 14, + [296062] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -758517,13 +755287,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9310), 1, - anon_sym_LBRACE, - ACTIONS(10678), 1, - anon_sym_SEMI, - STATE(2830), 1, - sym_accessor_list, - STATE(6975), 9, + ACTIONS(10144), 1, + anon_sym_COMMA, + ACTIONS(10560), 1, + anon_sym_GT, + STATE(7007), 1, + aux_sym_type_argument_list_repeat2, + STATE(6914), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -758533,7 +755303,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [298747] = 14, + [296113] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -758554,13 +755324,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9335), 1, - anon_sym_LBRACE, - ACTIONS(10680), 1, - anon_sym_SEMI, - STATE(7643), 1, - sym_declaration_list, - STATE(6976), 9, + ACTIONS(10562), 1, + anon_sym_COMMA, + ACTIONS(10564), 1, + anon_sym_RPAREN, + STATE(6990), 1, + aux_sym_using_variable_declaration_repeat1, + STATE(6915), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -758570,7 +755340,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [298798] = 14, + [296164] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -758591,13 +755361,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10160), 1, + ACTIONS(10566), 1, anon_sym_COMMA, - ACTIONS(10682), 1, - anon_sym_RPAREN, - STATE(6930), 1, - aux_sym_argument_list_repeat1, - STATE(6977), 9, + ACTIONS(10568), 1, + anon_sym_RBRACE, + STATE(6761), 1, + aux_sym_anonymous_object_creation_expression_repeat1, + STATE(6916), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -758607,7 +755377,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [298849] = 14, + [296215] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -758628,13 +755398,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(2697), 1, + ACTIONS(10570), 1, anon_sym_COMMA, - ACTIONS(7705), 1, - anon_sym_RBRACK, - STATE(6733), 1, - aux_sym_array_rank_specifier_repeat1, - STATE(6978), 9, + ACTIONS(10572), 1, + anon_sym_RBRACE, + STATE(6982), 1, + aux_sym_anonymous_object_creation_expression_repeat1, + STATE(6917), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -758644,7 +755414,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [298900] = 14, + [296266] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -758665,13 +755435,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(2697), 1, + ACTIONS(10144), 1, anon_sym_COMMA, - ACTIONS(7691), 1, - anon_sym_RBRACK, - STATE(6733), 1, - aux_sym_array_rank_specifier_repeat1, - STATE(6979), 9, + ACTIONS(10574), 1, + anon_sym_GT, + STATE(7007), 1, + aux_sym_type_argument_list_repeat2, + STATE(6918), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -758681,7 +755451,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [298951] = 14, + [296317] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -758702,13 +755472,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10670), 1, + ACTIONS(10208), 1, anon_sym_COMMA, - ACTIONS(10684), 1, - anon_sym_GT, - STATE(6971), 1, - aux_sym_type_parameter_list_repeat1, - STATE(6980), 9, + ACTIONS(10576), 1, + anon_sym_RBRACE, + STATE(6958), 1, + aux_sym__with_body_repeat1, + STATE(6919), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -758718,34 +755488,32 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [299002] = 14, - ACTIONS(3), 1, + [296368] = 13, + ACTIONS(9077), 1, aux_sym_preproc_region_token1, - ACTIONS(5), 1, + ACTIONS(9079), 1, aux_sym_preproc_endregion_token1, - ACTIONS(7), 1, + ACTIONS(9081), 1, aux_sym_preproc_line_token1, - ACTIONS(9), 1, + ACTIONS(9083), 1, aux_sym_preproc_pragma_token1, - ACTIONS(11), 1, + ACTIONS(9085), 1, aux_sym_preproc_nullable_token1, - ACTIONS(13), 1, + ACTIONS(9087), 1, aux_sym_preproc_error_token1, - ACTIONS(15), 1, + ACTIONS(9089), 1, aux_sym_preproc_warning_token1, - ACTIONS(17), 1, + ACTIONS(9091), 1, aux_sym_preproc_define_token1, - ACTIONS(19), 1, + ACTIONS(9093), 1, aux_sym_preproc_undef_token1, - ACTIONS(21), 1, + ACTIONS(9095), 1, sym_comment, - ACTIONS(10193), 1, + ACTIONS(10578), 1, anon_sym_COMMA, - ACTIONS(10686), 1, - anon_sym_GT, - STATE(6984), 1, - aux_sym_type_argument_list_repeat2, - STATE(6981), 9, + ACTIONS(10581), 1, + aux_sym_preproc_if_token2, + STATE(6920), 10, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -758755,7 +755523,8 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [299053] = 14, + aux_sym_preproc_pragma_repeat1, + [296417] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -758776,13 +755545,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(5026), 1, + ACTIONS(10309), 1, anon_sym_COMMA, - ACTIONS(10686), 1, - anon_sym_GT, - STATE(6679), 1, - aux_sym_type_argument_list_repeat1, - STATE(6982), 9, + ACTIONS(10583), 1, + anon_sym_RPAREN, + STATE(6745), 1, + aux_sym_tuple_pattern_repeat1, + STATE(6921), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -758792,7 +755561,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [299104] = 12, + [296468] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -758813,11 +755582,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10688), 3, + ACTIONS(10144), 1, anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_RPAREN, - STATE(6983), 9, + ACTIONS(10585), 1, + anon_sym_GT, + STATE(7007), 1, + aux_sym_type_argument_list_repeat2, + STATE(6922), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -758827,7 +755598,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [299151] = 14, + [296519] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -758848,13 +755619,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10193), 1, + ACTIONS(2177), 1, + anon_sym_RBRACE, + ACTIONS(10587), 1, anon_sym_COMMA, - ACTIONS(10690), 1, - anon_sym_GT, - STATE(6863), 1, - aux_sym_type_argument_list_repeat2, - STATE(6984), 9, + STATE(6764), 1, + aux_sym_positional_pattern_clause_repeat1, + STATE(6923), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -758864,7 +755635,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [299202] = 13, + [296570] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -758885,11 +755656,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10399), 1, - anon_sym_RPAREN, - ACTIONS(10692), 1, + ACTIONS(10171), 1, anon_sym_COMMA, - STATE(6985), 10, + ACTIONS(10589), 1, + anon_sym_RPAREN, + STATE(6728), 1, + aux_sym_tuple_type_repeat1, + STATE(6924), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -758899,8 +755672,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - aux_sym_positional_pattern_clause_repeat1, - [299251] = 12, + [296621] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -758921,11 +755693,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10695), 3, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_RPAREN, - STATE(6986), 9, + ACTIONS(10591), 3, + sym_interpolation_end_quote, + sym_interpolation_open_brace, + sym_interpolation_string_content, + STATE(6925), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -758935,7 +755707,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [299298] = 12, + [296668] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -758956,11 +755728,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10697), 3, + ACTIONS(10144), 1, anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_RPAREN, - STATE(6987), 9, + ACTIONS(10593), 1, + anon_sym_GT, + STATE(6931), 1, + aux_sym_type_argument_list_repeat2, + STATE(6926), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -758970,7 +755744,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [299345] = 13, + [296719] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -758991,11 +755765,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10352), 1, - anon_sym_SEMI, - ACTIONS(10699), 1, + ACTIONS(5168), 1, anon_sym_COMMA, - STATE(6988), 10, + ACTIONS(10593), 1, + anon_sym_GT, + STATE(6681), 1, + aux_sym_type_argument_list_repeat1, + STATE(6927), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -759005,8 +755781,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - aux_sym_variable_declaration_repeat1, - [299394] = 14, + [296770] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -759027,13 +755802,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10702), 1, + ACTIONS(10144), 1, anon_sym_COMMA, - ACTIONS(10704), 1, - anon_sym_RBRACK, - STATE(6731), 1, - aux_sym_global_attribute_repeat1, - STATE(6989), 9, + ACTIONS(10595), 1, + anon_sym_GT, + STATE(6963), 1, + aux_sym_type_argument_list_repeat2, + STATE(6928), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -759043,7 +755818,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [299445] = 12, + [296821] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -759064,11 +755839,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10706), 3, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_EQ_GT, - STATE(6990), 9, + ACTIONS(5168), 1, + anon_sym_COMMA, + ACTIONS(10595), 1, + anon_sym_GT, + STATE(6681), 1, + aux_sym_type_argument_list_repeat1, + STATE(6929), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -759078,7 +755855,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [299492] = 14, + [296872] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -759099,13 +755876,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9310), 1, - anon_sym_LBRACE, - ACTIONS(10708), 1, - anon_sym_SEMI, - STATE(2717), 1, - sym_accessor_list, - STATE(6991), 9, + ACTIONS(10140), 1, + anon_sym_COMMA, + ACTIONS(10597), 1, + anon_sym_RPAREN, + STATE(6805), 1, + aux_sym_parenthesized_variable_designation_repeat1, + STATE(6930), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -759115,7 +755892,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [299543] = 14, + [296923] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -759136,13 +755913,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10193), 1, + ACTIONS(10144), 1, anon_sym_COMMA, - ACTIONS(10710), 1, + ACTIONS(10599), 1, anon_sym_GT, - STATE(6995), 1, + STATE(7007), 1, aux_sym_type_argument_list_repeat2, - STATE(6992), 9, + STATE(6931), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -759152,7 +755929,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [299594] = 14, + [296974] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -759173,13 +755950,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(5026), 1, + ACTIONS(5168), 1, anon_sym_COMMA, - ACTIONS(10710), 1, - anon_sym_GT, - STATE(6679), 1, + ACTIONS(10601), 1, + anon_sym_RBRACK, + STATE(6681), 1, aux_sym_type_argument_list_repeat1, - STATE(6993), 9, + STATE(6932), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -759189,7 +755966,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [299645] = 14, + [297025] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -759210,13 +755987,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10154), 1, + ACTIONS(10603), 1, anon_sym_COMMA, - ACTIONS(10712), 1, - anon_sym_RPAREN, - STATE(6753), 1, - aux_sym_parenthesized_variable_designation_repeat1, - STATE(6994), 9, + ACTIONS(10605), 1, + anon_sym_RBRACE, + STATE(6809), 1, + aux_sym__switch_expression_body_repeat1, + STATE(6933), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -759226,7 +756003,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [299696] = 14, + [297076] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -759247,13 +756024,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10193), 1, + ACTIONS(2695), 1, anon_sym_COMMA, - ACTIONS(10714), 1, - anon_sym_GT, - STATE(6863), 1, - aux_sym_type_argument_list_repeat2, - STATE(6995), 9, + ACTIONS(10607), 1, + anon_sym_RBRACK, + STATE(6822), 1, + aux_sym_array_rank_specifier_repeat1, + STATE(6934), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -759263,7 +756040,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [299747] = 14, + [297127] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -759284,13 +756061,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10317), 1, + ACTIONS(2255), 1, + anon_sym_RBRACE, + ACTIONS(10609), 1, anon_sym_COMMA, - ACTIONS(10716), 1, - anon_sym_RPAREN, - STATE(6816), 1, - aux_sym_bracketed_parameter_list_repeat1, - STATE(6996), 9, + STATE(6768), 1, + aux_sym__switch_expression_body_repeat1, + STATE(6935), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -759300,7 +756077,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [299798] = 14, + [297178] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -759321,13 +756098,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10317), 1, + ACTIONS(7696), 1, + anon_sym_SEMI, + ACTIONS(10611), 1, anon_sym_COMMA, - ACTIONS(10718), 1, - anon_sym_RBRACK, - STATE(6934), 1, - aux_sym_bracketed_parameter_list_repeat1, - STATE(6997), 9, + STATE(6936), 10, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -759337,7 +756112,8 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [299849] = 14, + aux_sym__for_statement_conditions_repeat1, + [297227] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -759358,13 +756134,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10317), 1, + ACTIONS(10270), 1, anon_sym_COMMA, - ACTIONS(10720), 1, + ACTIONS(10614), 1, anon_sym_RBRACK, - STATE(6936), 1, + STATE(6775), 1, aux_sym_bracketed_parameter_list_repeat1, - STATE(6998), 9, + STATE(6937), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -759374,7 +756150,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [299900] = 14, + [297278] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -759395,13 +756171,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10193), 1, + ACTIONS(10408), 1, anon_sym_COMMA, - ACTIONS(10722), 1, - anon_sym_GT, - STATE(7030), 1, - aux_sym_type_argument_list_repeat2, - STATE(6999), 9, + ACTIONS(10616), 1, + anon_sym_SEMI, + STATE(6950), 1, + aux_sym_variable_declaration_repeat1, + STATE(6938), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -759411,7 +756187,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [299951] = 14, + [297329] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -759432,13 +756208,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(5026), 1, + ACTIONS(5168), 1, anon_sym_COMMA, - ACTIONS(10722), 1, - anon_sym_GT, - STATE(6679), 1, + ACTIONS(10618), 1, + anon_sym_RBRACK, + STATE(6681), 1, aux_sym_type_argument_list_repeat1, - STATE(7000), 9, + STATE(6939), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -759448,7 +756224,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [300002] = 14, + [297380] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -759469,13 +756245,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(3667), 1, - anon_sym_EQ_GT, - ACTIONS(10071), 1, - anon_sym_RPAREN, - ACTIONS(10724), 1, + ACTIONS(10270), 1, anon_sym_COMMA, - STATE(7001), 9, + ACTIONS(10620), 1, + anon_sym_RBRACK, + STATE(6803), 1, + aux_sym_bracketed_parameter_list_repeat1, + STATE(6940), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -759485,7 +756261,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [300053] = 14, + [297431] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -759506,13 +756282,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(5771), 1, - anon_sym_LBRACE, - ACTIONS(10215), 1, - anon_sym_LPAREN, - STATE(2096), 1, - sym_block, - STATE(7002), 9, + ACTIONS(10622), 1, + anon_sym_COMMA, + ACTIONS(10624), 1, + anon_sym_RBRACK, + STATE(7025), 1, + aux_sym_argument_list_repeat1, + STATE(6941), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -759522,7 +756298,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [300104] = 14, + [297482] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -759543,13 +756319,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8885), 1, - anon_sym_RBRACK, - ACTIONS(10727), 1, + ACTIONS(10626), 3, + anon_sym_SEMI, anon_sym_COMMA, - STATE(6955), 1, - aux_sym_global_attribute_repeat1, - STATE(7003), 9, + anon_sym_RPAREN, + STATE(6942), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -759559,7 +756333,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [300155] = 13, + [297529] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -759580,11 +756354,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10729), 1, + ACTIONS(10208), 1, anon_sym_COMMA, - ACTIONS(10732), 1, - anon_sym_RPAREN, - STATE(7004), 10, + ACTIONS(10628), 1, + anon_sym_RBRACE, + STATE(7019), 1, + aux_sym__with_body_repeat1, + STATE(6943), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -759594,8 +756370,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - aux_sym_tuple_type_repeat1, - [300204] = 14, + [297580] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -759616,13 +756391,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10193), 1, + ACTIONS(10237), 1, anon_sym_COMMA, - ACTIONS(10734), 1, - anon_sym_GT, - STATE(7007), 1, - aux_sym_type_argument_list_repeat2, - STATE(7005), 9, + ACTIONS(10630), 1, + anon_sym_RPAREN, + STATE(6865), 1, + aux_sym_argument_list_repeat1, + STATE(6944), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -759632,7 +756407,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [300255] = 14, + [297631] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -759653,13 +756428,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(5026), 1, + ACTIONS(2153), 1, + anon_sym_RBRACE, + ACTIONS(10632), 1, anon_sym_COMMA, - ACTIONS(10734), 1, - anon_sym_GT, - STATE(6679), 1, - aux_sym_type_argument_list_repeat1, - STATE(7006), 9, + STATE(6768), 1, + aux_sym__switch_expression_body_repeat1, + STATE(6945), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -759669,7 +756444,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [300306] = 14, + [297682] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -759690,13 +756465,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10193), 1, + ACTIONS(2319), 1, + anon_sym_RBRACK, + ACTIONS(10634), 1, anon_sym_COMMA, - ACTIONS(10736), 1, - anon_sym_GT, - STATE(6863), 1, - aux_sym_type_argument_list_repeat2, - STATE(7007), 9, + STATE(6779), 1, + aux_sym_list_pattern_repeat1, + STATE(6946), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -759706,7 +756481,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [300357] = 14, + [297733] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -759727,13 +756502,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10160), 1, + ACTIONS(10140), 1, anon_sym_COMMA, - ACTIONS(10738), 1, + ACTIONS(10636), 1, anon_sym_RPAREN, - STATE(6930), 1, - aux_sym_argument_list_repeat1, - STATE(7008), 9, + STATE(6975), 1, + aux_sym_parenthesized_variable_designation_repeat1, + STATE(6947), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -759743,7 +756518,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [300408] = 14, + [297784] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -759764,48 +756539,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(2805), 1, - anon_sym_RBRACE, - ACTIONS(10740), 1, + ACTIONS(7622), 1, anon_sym_COMMA, - STATE(6809), 1, - aux_sym_anonymous_object_creation_expression_repeat1, - STATE(7009), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - [300459] = 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(10742), 3, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_when, - STATE(7010), 9, + ACTIONS(10638), 1, + anon_sym_RPAREN, + STATE(6658), 1, + aux_sym__for_statement_conditions_repeat1, + STATE(6948), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -759815,7 +756555,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [300506] = 14, + [297835] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -759836,13 +756576,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8891), 1, - anon_sym_RBRACK, - ACTIONS(10744), 1, - anon_sym_COMMA, - STATE(6955), 1, - aux_sym_global_attribute_repeat1, - STATE(7011), 9, + ACTIONS(6707), 1, + anon_sym_COLON, + ACTIONS(10640), 1, + sym_interpolation_close_brace, + STATE(7280), 1, + sym_interpolation_format_clause, + STATE(6949), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -759852,7 +756592,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [300557] = 14, + [297886] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -759873,13 +756613,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8891), 1, - anon_sym_RBRACK, - ACTIONS(10744), 1, + ACTIONS(10626), 1, + anon_sym_SEMI, + ACTIONS(10642), 1, anon_sym_COMMA, - STATE(6760), 1, - aux_sym_global_attribute_repeat1, - STATE(7012), 9, + STATE(6950), 10, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -759889,7 +756627,8 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [300608] = 14, + aux_sym_variable_declaration_repeat1, + [297935] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -759910,13 +756649,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(2697), 1, - anon_sym_COMMA, - ACTIONS(10746), 1, - anon_sym_RBRACK, - STATE(6733), 1, - aux_sym_array_rank_specifier_repeat1, - STATE(7013), 9, + ACTIONS(10645), 3, + sym_interpolation_end_quote, + sym_interpolation_open_brace, + sym_interpolation_string_content, + STATE(6951), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -759926,7 +756663,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [300659] = 14, + [297982] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -759947,13 +756684,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10309), 1, + ACTIONS(8782), 1, + anon_sym_RBRACE, + ACTIONS(10647), 1, anon_sym_COMMA, - ACTIONS(10748), 1, - anon_sym_RPAREN, - STATE(6798), 1, - aux_sym_tuple_pattern_repeat1, - STATE(7014), 9, + STATE(6797), 1, + aux_sym_enum_member_declaration_list_repeat1, + STATE(6952), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -759963,7 +756700,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [300710] = 14, + [298033] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -759984,87 +756721,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(2665), 1, + ACTIONS(2303), 1, anon_sym_RBRACK, - ACTIONS(10750), 1, - anon_sym_COMMA, - STATE(6962), 1, - aux_sym_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, - [300761] = 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(10160), 1, + ACTIONS(10649), 1, anon_sym_COMMA, - ACTIONS(10752), 1, - anon_sym_RPAREN, - STATE(6930), 1, - aux_sym_argument_list_repeat1, - STATE(7016), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - [300812] = 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(2889), 1, - aux_sym_preproc_if_token3, - ACTIONS(2977), 1, - anon_sym_LBRACK, - STATE(7518), 1, - sym_attribute_list, - STATE(7017), 9, + STATE(6779), 1, + aux_sym_list_pattern_repeat1, + STATE(6953), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -760074,7 +756737,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [300863] = 14, + [298084] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -760095,13 +756758,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10754), 1, + ACTIONS(7558), 1, anon_sym_COMMA, - ACTIONS(10756), 1, - anon_sym_RBRACE, - STATE(7035), 1, - aux_sym__switch_expression_body_repeat1, - STATE(7018), 9, + ACTIONS(10651), 1, + anon_sym_SEMI, + STATE(6936), 1, + aux_sym__for_statement_conditions_repeat1, + STATE(6954), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -760111,7 +756774,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [300914] = 14, + [298135] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -760132,13 +756795,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(2697), 1, - anon_sym_COMMA, - ACTIONS(10758), 1, - anon_sym_RBRACK, - STATE(6733), 1, - aux_sym_array_rank_specifier_repeat1, - STATE(7019), 9, + ACTIONS(10169), 1, + anon_sym_LBRACE, + ACTIONS(10653), 1, + anon_sym_SEMI, + STATE(7407), 1, + sym_enum_member_declaration_list, + STATE(6955), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -760148,7 +756811,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [300965] = 14, + [298186] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -760169,13 +756832,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10193), 1, + ACTIONS(10144), 1, anon_sym_COMMA, - ACTIONS(10760), 1, + ACTIONS(10655), 1, anon_sym_GT, - STATE(7024), 1, + STATE(6964), 1, aux_sym_type_argument_list_repeat2, - STATE(7020), 9, + STATE(6956), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -760185,7 +756848,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [301016] = 12, + [298237] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -760206,11 +756869,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(7546), 3, + ACTIONS(5168), 1, anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_RPAREN, - STATE(7021), 9, + ACTIONS(10655), 1, + anon_sym_GT, + STATE(6681), 1, + aux_sym_type_argument_list_repeat1, + STATE(6957), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -760220,7 +756885,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [301063] = 14, + [298288] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -760241,13 +756906,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(5026), 1, + ACTIONS(10208), 1, anon_sym_COMMA, - ACTIONS(10760), 1, - anon_sym_GT, - STATE(6679), 1, - aux_sym_type_argument_list_repeat1, - STATE(7022), 9, + ACTIONS(10657), 1, + anon_sym_RBRACE, + STATE(6862), 1, + aux_sym__with_body_repeat1, + STATE(6958), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -760257,7 +756922,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [301114] = 14, + [298339] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -760278,13 +756943,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10170), 1, + ACTIONS(10659), 1, anon_sym_COMMA, - ACTIONS(10762), 1, - anon_sym_RPAREN, - STATE(7004), 1, - aux_sym_tuple_type_repeat1, - STATE(7023), 9, + ACTIONS(10661), 1, + anon_sym_RBRACE, + STATE(6816), 1, + aux_sym_anonymous_object_creation_expression_repeat1, + STATE(6959), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -760294,7 +756959,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [301165] = 14, + [298390] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -760315,13 +756980,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10193), 1, - anon_sym_COMMA, - ACTIONS(10764), 1, - anon_sym_GT, - STATE(6863), 1, - aux_sym_type_argument_list_repeat2, - STATE(7024), 9, + ACTIONS(5234), 1, + anon_sym_LBRACE, + ACTIONS(10295), 1, + anon_sym_LPAREN, + STATE(2016), 1, + sym_block, + STATE(6960), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -760331,7 +756996,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [301216] = 13, + [298441] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -760352,11 +757017,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10766), 1, + ACTIONS(10140), 1, anon_sym_COMMA, - ACTIONS(10769), 1, - anon_sym_RBRACE, - STATE(7025), 10, + ACTIONS(10663), 1, + anon_sym_RPAREN, + STATE(7013), 1, + aux_sym_parenthesized_variable_designation_repeat1, + STATE(6961), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -760366,8 +757033,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - aux_sym__with_body_repeat1, - [301265] = 14, + [298492] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -760388,13 +757054,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(2883), 1, - anon_sym_RBRACE, - ACTIONS(10771), 1, - anon_sym_COMMA, - STATE(6669), 1, - aux_sym__for_statement_conditions_repeat1, - STATE(7026), 9, + ACTIONS(9286), 1, + anon_sym_LBRACE, + ACTIONS(10665), 1, + anon_sym_SEMI, + STATE(2734), 1, + sym_accessor_list, + STATE(6962), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -760404,7 +757070,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [301316] = 14, + [298543] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -760425,13 +757091,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10160), 1, + ACTIONS(10144), 1, anon_sym_COMMA, - ACTIONS(10773), 1, - anon_sym_RPAREN, - STATE(6768), 1, - aux_sym_argument_list_repeat1, - STATE(7027), 9, + ACTIONS(10667), 1, + anon_sym_GT, + STATE(7007), 1, + aux_sym_type_argument_list_repeat2, + STATE(6963), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -760441,7 +757107,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [301367] = 14, + [298594] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -760462,13 +757128,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10189), 1, + ACTIONS(10144), 1, anon_sym_COMMA, - ACTIONS(10775), 1, - anon_sym_RBRACE, - STATE(6926), 1, - aux_sym__with_body_repeat1, - STATE(7028), 9, + ACTIONS(10669), 1, + anon_sym_GT, + STATE(7007), 1, + aux_sym_type_argument_list_repeat2, + STATE(6964), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -760478,7 +757144,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [301418] = 12, + [298645] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -760499,11 +757165,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10777), 3, + ACTIONS(10671), 1, anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_GT, - STATE(7029), 9, + ACTIONS(10673), 1, + anon_sym_RBRACE, + STATE(6923), 1, + aux_sym_positional_pattern_clause_repeat1, + STATE(6965), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -760513,7 +757181,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [301465] = 14, + [298696] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -760534,13 +757202,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10193), 1, + ACTIONS(10144), 1, anon_sym_COMMA, - ACTIONS(10779), 1, + ACTIONS(10675), 1, anon_sym_GT, - STATE(6863), 1, + STATE(7007), 1, aux_sym_type_argument_list_repeat2, - STATE(7030), 9, + STATE(6966), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -760550,7 +757218,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [301516] = 14, + [298747] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -760571,13 +757239,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10781), 1, + ACTIONS(2667), 1, + anon_sym_RBRACK, + ACTIONS(10677), 1, anon_sym_COMMA, - ACTIONS(10783), 1, - anon_sym_RBRACE, - STATE(6770), 1, - aux_sym_anonymous_object_creation_expression_repeat1, - STATE(7031), 9, + STATE(6908), 1, + aux_sym_argument_list_repeat1, + STATE(6967), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -760587,7 +757255,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [301567] = 14, + [298798] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -760608,13 +757276,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8808), 1, - anon_sym_RBRACE, - ACTIONS(10785), 1, - anon_sym_COMMA, - STATE(6919), 1, - aux_sym_enum_member_declaration_list_repeat1, - STATE(7032), 9, + ACTIONS(10169), 1, + anon_sym_LBRACE, + ACTIONS(10679), 1, + anon_sym_SEMI, + STATE(7274), 1, + sym_enum_member_declaration_list, + STATE(6968), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -760624,7 +757292,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [301618] = 14, + [298849] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -760645,13 +757313,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(5026), 1, + ACTIONS(10681), 1, anon_sym_COMMA, - ACTIONS(10787), 1, - anon_sym_RBRACK, - STATE(6679), 1, - aux_sym_type_argument_list_repeat1, - STATE(7033), 9, + ACTIONS(10683), 1, + anon_sym_RBRACE, + STATE(6952), 1, + aux_sym_enum_member_declaration_list_repeat1, + STATE(6969), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -760661,7 +757329,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [301669] = 12, + [298900] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -760682,11 +757350,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10789), 3, - sym_interpolation_end_quote, - sym_interpolation_open_brace, - sym_interpolation_string_content, - STATE(7034), 9, + ACTIONS(10208), 1, + anon_sym_COMMA, + ACTIONS(10685), 1, + anon_sym_RBRACE, + STATE(6862), 1, + aux_sym__with_body_repeat1, + STATE(6970), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -760696,7 +757366,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [301716] = 14, + [298951] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -760717,13 +757387,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(2137), 1, - anon_sym_RBRACE, - ACTIONS(10791), 1, + ACTIONS(2695), 1, anon_sym_COMMA, - STATE(6895), 1, - aux_sym__switch_expression_body_repeat1, - STATE(7035), 9, + ACTIONS(7534), 1, + anon_sym_RBRACK, + STATE(6822), 1, + aux_sym_array_rank_specifier_repeat1, + STATE(6971), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -760733,7 +757403,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [301767] = 14, + [299002] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -760754,13 +757424,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10793), 1, + ACTIONS(2695), 1, anon_sym_COMMA, - ACTIONS(10795), 1, + ACTIONS(10687), 1, anon_sym_RBRACK, - STATE(6796), 1, - aux_sym_global_attribute_repeat1, - STATE(7036), 9, + STATE(6822), 1, + aux_sym_array_rank_specifier_repeat1, + STATE(6972), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -760770,7 +757440,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [301818] = 12, + [299053] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -760791,45 +757461,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10797), 3, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_when, - STATE(7037), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - [301865] = 12, - ACTIONS(9097), 1, - aux_sym_preproc_region_token1, - ACTIONS(9099), 1, - aux_sym_preproc_endregion_token1, - ACTIONS(9101), 1, - aux_sym_preproc_line_token1, - ACTIONS(9103), 1, - aux_sym_preproc_pragma_token1, - ACTIONS(9105), 1, - aux_sym_preproc_nullable_token1, - ACTIONS(9107), 1, - aux_sym_preproc_error_token1, - ACTIONS(9109), 1, - aux_sym_preproc_warning_token1, - ACTIONS(9111), 1, - aux_sym_preproc_define_token1, - ACTIONS(9113), 1, - aux_sym_preproc_undef_token1, - ACTIONS(9115), 1, - sym_comment, - ACTIONS(10799), 2, - sym_character_literal_content, - sym_escape_sequence, - STATE(7038), 9, + ACTIONS(10689), 1, + anon_sym_EQ, + ACTIONS(10343), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + STATE(6973), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -760839,7 +757476,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [301911] = 13, + [299102] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -760860,11 +757497,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10170), 1, + ACTIONS(10185), 1, anon_sym_COMMA, - STATE(6966), 1, - aux_sym_tuple_type_repeat1, - STATE(7039), 9, + ACTIONS(10691), 1, + anon_sym_RPAREN, + STATE(6722), 1, + aux_sym_attribute_argument_list_repeat1, + STATE(6974), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -760874,7 +757513,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [301959] = 13, + [299153] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -760895,11 +757534,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9335), 1, - anon_sym_LBRACE, - STATE(7672), 1, - sym_declaration_list, - STATE(7040), 9, + ACTIONS(10140), 1, + anon_sym_COMMA, + ACTIONS(10693), 1, + anon_sym_RPAREN, + STATE(6763), 1, + aux_sym_parenthesized_variable_designation_repeat1, + STATE(6975), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -760909,7 +757550,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [302007] = 12, + [299204] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -760930,10 +757571,13 @@ 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, - STATE(7041), 9, + ACTIONS(10695), 1, + sym_integer_literal, + ACTIONS(10697), 1, + anon_sym_DQUOTE, + STATE(7283), 1, + sym_string_literal, + STATE(6976), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -760943,7 +757587,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [302053] = 13, + [299255] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -760964,11 +757608,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(5771), 1, - anon_sym_LBRACE, - STATE(2124), 1, - sym_block, - STATE(7042), 9, + ACTIONS(8874), 1, + anon_sym_RBRACK, + ACTIONS(10699), 1, + anon_sym_COMMA, + STATE(6981), 1, + aux_sym_global_attribute_repeat1, + STATE(6977), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -760978,7 +757624,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [302101] = 13, + [299306] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -760999,11 +757645,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10801), 1, - anon_sym_LPAREN, - STATE(76), 1, - sym__for_statement_conditions, - STATE(7043), 9, + ACTIONS(10237), 1, + anon_sym_COMMA, + ACTIONS(10701), 1, + anon_sym_RPAREN, + STATE(6799), 1, + aux_sym_argument_list_repeat1, + STATE(6978), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -761013,7 +757661,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [302149] = 13, + [299357] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -761034,11 +757682,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10803), 1, - anon_sym_LBRACE, - STATE(2993), 1, - sym__switch_expression_body, - STATE(7044), 9, + ACTIONS(10703), 1, + anon_sym_COMMA, + ACTIONS(10705), 1, + anon_sym_RBRACE, + STATE(6897), 1, + aux_sym_anonymous_object_creation_expression_repeat1, + STATE(6979), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -761048,7 +757698,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [302197] = 13, + [299408] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -761069,11 +757719,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9335), 1, - anon_sym_LBRACE, - STATE(7499), 1, - sym_declaration_list, - STATE(7045), 9, + ACTIONS(10309), 1, + anon_sym_COMMA, + ACTIONS(10707), 1, + anon_sym_RPAREN, + STATE(6850), 1, + aux_sym_tuple_pattern_repeat1, + STATE(6980), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -761083,7 +757735,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [302245] = 12, + [299459] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -761104,10 +757756,11 @@ 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, - STATE(7046), 9, + ACTIONS(10709), 1, + anon_sym_COMMA, + ACTIONS(10712), 1, + anon_sym_RBRACK, + STATE(6981), 10, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -761117,7 +757770,8 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [302291] = 12, + aux_sym_global_attribute_repeat1, + [299508] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -761138,10 +757792,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(3977), 2, + ACTIONS(2805), 1, + anon_sym_RBRACE, + ACTIONS(10714), 1, anon_sym_COMMA, - anon_sym_GT, - STATE(7047), 9, + STATE(6724), 1, + aux_sym_anonymous_object_creation_expression_repeat1, + STATE(6982), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -761151,7 +757808,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [302337] = 12, + [299559] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -761172,10 +757829,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4002), 2, + ACTIONS(10144), 1, anon_sym_COMMA, + ACTIONS(10716), 1, anon_sym_GT, - STATE(7048), 9, + STATE(6991), 1, + aux_sym_type_argument_list_repeat2, + STATE(6983), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -761185,7 +757845,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [302383] = 13, + [299610] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -761206,11 +757866,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10321), 1, + ACTIONS(10144), 1, anon_sym_COMMA, - STATE(6841), 1, - aux_sym_positional_pattern_clause_repeat1, - STATE(7049), 9, + ACTIONS(10718), 1, + anon_sym_GT, + STATE(6997), 1, + aux_sym_type_argument_list_repeat2, + STATE(6984), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -761220,7 +757882,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [302431] = 13, + [299661] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -761241,11 +757903,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10805), 1, - anon_sym_LPAREN, - STATE(7226), 1, - sym_tuple_expression, - STATE(7050), 9, + ACTIONS(5168), 1, + anon_sym_COMMA, + ACTIONS(10716), 1, + anon_sym_GT, + STATE(6681), 1, + aux_sym_type_argument_list_repeat1, + STATE(6985), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -761255,7 +757919,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [302479] = 13, + [299712] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -761276,11 +757940,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(5617), 1, - anon_sym_LBRACE, - STATE(6357), 1, - sym_block, - STATE(7051), 9, + ACTIONS(5168), 1, + anon_sym_COMMA, + ACTIONS(10718), 1, + anon_sym_GT, + STATE(6681), 1, + aux_sym_type_argument_list_repeat1, + STATE(6986), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -761290,7 +757956,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [302527] = 12, + [299763] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -761311,10 +757977,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10807), 2, - anon_sym_SEMI, - anon_sym_where, - STATE(7052), 9, + ACTIONS(10144), 1, + anon_sym_COMMA, + ACTIONS(10720), 1, + anon_sym_GT, + STATE(6726), 1, + aux_sym_type_argument_list_repeat2, + STATE(6987), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -761324,7 +757993,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [302573] = 13, + [299814] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -761345,45 +758014,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8142), 1, - anon_sym_DOT, - ACTIONS(10809), 1, + ACTIONS(10722), 3, anon_sym_SEMI, - STATE(7053), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - [302621] = 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(3281), 2, - anon_sym_while, - anon_sym_else, - STATE(7054), 9, + anon_sym_LBRACE, + anon_sym_EQ_GT, + STATE(6988), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -761393,7 +758028,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [302667] = 12, + [299861] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -761414,10 +758049,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(3151), 2, - anon_sym_while, - anon_sym_else, - STATE(7055), 9, + ACTIONS(10724), 3, + anon_sym_RBRACE, + anon_sym_case, + anon_sym_default, + STATE(6989), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -761427,7 +758063,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [302713] = 13, + [299908] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -761448,11 +758084,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10811), 1, - anon_sym_LBRACE, - STATE(2132), 1, - sym_switch_body, - STATE(7056), 9, + ACTIONS(10562), 1, + anon_sym_COMMA, + ACTIONS(10726), 1, + anon_sym_RPAREN, + STATE(6755), 1, + aux_sym_using_variable_declaration_repeat1, + STATE(6990), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -761462,7 +758100,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [302761] = 13, + [299959] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -761483,11 +758121,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(1633), 1, - anon_sym_LBRACE, - STATE(3714), 1, - sym_initializer_expression, - STATE(7057), 9, + ACTIONS(10144), 1, + anon_sym_COMMA, + ACTIONS(10728), 1, + anon_sym_GT, + STATE(7007), 1, + aux_sym_type_argument_list_repeat2, + STATE(6991), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -761497,7 +758137,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [302809] = 12, + [300010] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -761518,10 +758158,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(3211), 2, - anon_sym_while, - anon_sym_else, - STATE(7058), 9, + ACTIONS(10144), 1, + anon_sym_COMMA, + ACTIONS(10159), 1, + anon_sym_GT, + STATE(6762), 1, + aux_sym_type_argument_list_repeat2, + STATE(6992), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -761531,7 +758174,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [302855] = 12, + [300061] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -761552,10 +758195,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10813), 2, - anon_sym_this, - anon_sym_base, - STATE(7059), 9, + ACTIONS(8874), 1, + anon_sym_RBRACK, + ACTIONS(10699), 1, + anon_sym_COMMA, + STATE(6743), 1, + aux_sym_global_attribute_repeat1, + STATE(6993), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -761565,7 +758211,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [302901] = 12, + [300112] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -761586,44 +758232,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(3253), 2, - anon_sym_while, - anon_sym_else, - STATE(7060), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - [302947] = 12, - ACTIONS(9097), 1, - aux_sym_preproc_region_token1, - ACTIONS(9099), 1, - aux_sym_preproc_endregion_token1, - ACTIONS(9101), 1, - aux_sym_preproc_line_token1, - ACTIONS(9103), 1, - aux_sym_preproc_pragma_token1, - ACTIONS(9105), 1, - aux_sym_preproc_nullable_token1, - ACTIONS(9107), 1, - aux_sym_preproc_error_token1, - ACTIONS(9109), 1, - aux_sym_preproc_warning_token1, - ACTIONS(9111), 1, - aux_sym_preproc_define_token1, - ACTIONS(9113), 1, - aux_sym_preproc_undef_token1, - ACTIONS(9115), 1, - sym_comment, - ACTIONS(10815), 2, - sym_character_literal_content, - sym_escape_sequence, - STATE(7061), 9, + ACTIONS(10730), 1, + anon_sym_COMMA, + ACTIONS(10732), 1, + anon_sym_RBRACE, + STATE(6810), 1, + aux_sym__switch_expression_body_repeat1, + STATE(6994), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -761633,7 +758248,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [302993] = 13, + [300163] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -761654,11 +758269,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9950), 1, - anon_sym_LBRACE, - STATE(7572), 1, - sym_enum_member_declaration_list, - STATE(7062), 9, + ACTIONS(8862), 1, + anon_sym_RBRACK, + ACTIONS(10734), 1, + anon_sym_COMMA, + STATE(6981), 1, + aux_sym_global_attribute_repeat1, + STATE(6995), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -761668,7 +758285,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [303041] = 13, + [300214] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -761689,11 +758306,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10817), 1, - anon_sym_LBRACK, - STATE(6690), 1, - sym_bracketed_parameter_list, - STATE(7063), 9, + ACTIONS(5168), 1, + anon_sym_COMMA, + ACTIONS(10736), 1, + anon_sym_RBRACK, + STATE(6681), 1, + aux_sym_type_argument_list_repeat1, + STATE(6996), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -761703,7 +758322,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [303089] = 13, + [300265] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -761724,45 +758343,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8916), 1, - anon_sym_LPAREN, - STATE(6396), 1, - sym_parameter_list, - STATE(7064), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - [303137] = 12, - ACTIONS(9097), 1, - aux_sym_preproc_region_token1, - ACTIONS(9099), 1, - aux_sym_preproc_endregion_token1, - ACTIONS(9101), 1, - aux_sym_preproc_line_token1, - ACTIONS(9103), 1, - aux_sym_preproc_pragma_token1, - ACTIONS(9105), 1, - aux_sym_preproc_nullable_token1, - ACTIONS(9107), 1, - aux_sym_preproc_error_token1, - ACTIONS(9109), 1, - aux_sym_preproc_warning_token1, - ACTIONS(9111), 1, - aux_sym_preproc_define_token1, - ACTIONS(9113), 1, - aux_sym_preproc_undef_token1, - ACTIONS(9115), 1, - sym_comment, - ACTIONS(10819), 2, - sym_character_literal_content, - sym_escape_sequence, - STATE(7065), 9, + ACTIONS(10144), 1, + anon_sym_COMMA, + ACTIONS(10738), 1, + anon_sym_GT, + STATE(7007), 1, + aux_sym_type_argument_list_repeat2, + STATE(6997), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -761772,7 +758359,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [303183] = 12, + [300316] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -761793,10 +758380,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(3269), 2, - anon_sym_while, - anon_sym_else, - STATE(7066), 9, + ACTIONS(10208), 1, + anon_sym_COMMA, + ACTIONS(10740), 1, + anon_sym_RBRACE, + STATE(6862), 1, + aux_sym__with_body_repeat1, + STATE(6998), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -761806,7 +758396,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [303229] = 13, + [300367] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -761827,11 +758417,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(1397), 1, - anon_sym_LBRACE, - STATE(4665), 1, - sym_initializer_expression, - STATE(7067), 9, + ACTIONS(10144), 1, + anon_sym_COMMA, + ACTIONS(10742), 1, + anon_sym_GT, + STATE(6918), 1, + aux_sym_type_argument_list_repeat2, + STATE(6999), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -761841,7 +758433,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [303277] = 13, + [300418] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -761862,11 +758454,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10170), 1, + ACTIONS(5168), 1, anon_sym_COMMA, - STATE(6837), 1, - aux_sym_tuple_type_repeat1, - STATE(7068), 9, + ACTIONS(10720), 1, + anon_sym_GT, + STATE(6681), 1, + aux_sym_type_argument_list_repeat1, + STATE(7000), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -761876,7 +758470,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [303325] = 13, + [300469] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -761897,11 +758491,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9950), 1, + ACTIONS(10744), 3, + anon_sym_LPAREN, anon_sym_LBRACE, - STATE(7327), 1, - sym_enum_member_declaration_list, - STATE(7069), 9, + anon_sym_when, + STATE(7001), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -761911,7 +758505,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [303373] = 12, + [300516] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -761932,45 +758526,13 @@ 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(7070), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - [303419] = 13, - ACTIONS(9097), 1, - aux_sym_preproc_region_token1, - ACTIONS(9099), 1, - aux_sym_preproc_endregion_token1, - ACTIONS(9101), 1, - aux_sym_preproc_line_token1, - ACTIONS(9103), 1, - aux_sym_preproc_pragma_token1, - ACTIONS(9105), 1, - aux_sym_preproc_nullable_token1, - ACTIONS(9107), 1, - aux_sym_preproc_error_token1, - ACTIONS(9109), 1, - aux_sym_preproc_warning_token1, - ACTIONS(9111), 1, - aux_sym_preproc_define_token1, - ACTIONS(9113), 1, - aux_sym_preproc_undef_token1, - ACTIONS(9115), 1, - sym_comment, - ACTIONS(10821), 1, - aux_sym_preproc_if_token2, - ACTIONS(10823), 1, - sym_preproc_arg, - STATE(7071), 9, + ACTIONS(2879), 1, + anon_sym_RBRACE, + ACTIONS(10746), 1, + anon_sym_COMMA, + STATE(6658), 1, + aux_sym__for_statement_conditions_repeat1, + STATE(7002), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -761980,7 +758542,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [303467] = 13, + [300567] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -762001,11 +758563,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8916), 1, - anon_sym_LPAREN, - STATE(6301), 1, - sym_parameter_list, - STATE(7072), 9, + ACTIONS(7622), 1, + anon_sym_COMMA, + ACTIONS(10748), 1, + anon_sym_RPAREN, + STATE(6658), 1, + aux_sym__for_statement_conditions_repeat1, + STATE(7003), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -762015,7 +758579,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [303515] = 13, + [300618] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -762036,11 +758600,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(1159), 1, - anon_sym_LBRACE, - STATE(3321), 1, - sym_initializer_expression, - STATE(7073), 9, + ACTIONS(5168), 1, + anon_sym_COMMA, + ACTIONS(10742), 1, + anon_sym_GT, + STATE(6681), 1, + aux_sym_type_argument_list_repeat1, + STATE(7004), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -762050,7 +758616,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [303563] = 12, + [300669] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -762071,10 +758637,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10825), 2, + ACTIONS(10750), 1, + anon_sym_EQ, + ACTIONS(10483), 2, anon_sym_COMMA, - anon_sym_RBRACE, - STATE(7074), 9, + anon_sym_RPAREN, + STATE(7005), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -762084,7 +758652,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [303609] = 13, + [300718] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -762105,11 +758673,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8916), 1, - anon_sym_LPAREN, - STATE(6421), 1, - sym_parameter_list, - STATE(7075), 9, + ACTIONS(2179), 1, + anon_sym_RBRACE, + ACTIONS(10752), 1, + anon_sym_COMMA, + STATE(6768), 1, + aux_sym__switch_expression_body_repeat1, + STATE(7006), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -762119,7 +758689,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [303657] = 13, + [300769] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -762140,11 +758710,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8916), 1, - anon_sym_LPAREN, - STATE(7052), 1, - sym_parameter_list, - STATE(7076), 9, + ACTIONS(10754), 1, + anon_sym_COMMA, + ACTIONS(10757), 1, + anon_sym_GT, + STATE(7007), 10, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -762154,7 +758724,8 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [303705] = 13, + aux_sym_type_argument_list_repeat2, + [300818] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -762175,11 +758746,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9830), 1, - anon_sym_LBRACE, - STATE(3016), 1, - sym_block, - STATE(7077), 9, + ACTIONS(5168), 1, + anon_sym_COMMA, + ACTIONS(10759), 1, + anon_sym_RBRACK, + STATE(6939), 1, + aux_sym_type_argument_list_repeat1, + STATE(7008), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -762189,7 +758762,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [303753] = 13, + [300869] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -762210,11 +758783,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8142), 1, - anon_sym_DOT, - ACTIONS(10827), 1, - anon_sym_SEMI, - STATE(7078), 9, + ACTIONS(10761), 1, + anon_sym_COMMA, + ACTIONS(10763), 1, + anon_sym_RBRACK, + STATE(6977), 1, + aux_sym_global_attribute_repeat1, + STATE(7009), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -762224,7 +758799,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [303801] = 13, + [300920] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -762245,11 +758820,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(1159), 1, - anon_sym_LBRACE, - STATE(3330), 1, - sym_initializer_expression, - STATE(7079), 9, + ACTIONS(2337), 1, + anon_sym_RBRACK, + ACTIONS(10765), 1, + anon_sym_COMMA, + STATE(6779), 1, + aux_sym_list_pattern_repeat1, + STATE(7010), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -762259,7 +758836,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [303849] = 12, + [300971] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -762280,10 +758857,13 @@ 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, - STATE(7080), 9, + ACTIONS(10767), 1, + anon_sym_COMMA, + ACTIONS(10769), 1, + anon_sym_RBRACK, + STATE(6840), 1, + aux_sym_global_attribute_repeat1, + STATE(7011), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -762293,7 +758873,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [303895] = 13, + [301022] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -762314,11 +758894,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9950), 1, - anon_sym_LBRACE, - STATE(7532), 1, - sym_enum_member_declaration_list, - STATE(7081), 9, + ACTIONS(10140), 1, + anon_sym_COMMA, + ACTIONS(10771), 1, + anon_sym_RPAREN, + STATE(6725), 1, + aux_sym_parenthesized_variable_designation_repeat1, + STATE(7012), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -762328,7 +758910,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [303943] = 13, + [301073] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -762349,11 +758931,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8916), 1, - anon_sym_LPAREN, - STATE(6405), 1, - sym_parameter_list, - STATE(7082), 9, + ACTIONS(10140), 1, + anon_sym_COMMA, + ACTIONS(10773), 1, + anon_sym_RPAREN, + STATE(6763), 1, + aux_sym_parenthesized_variable_designation_repeat1, + STATE(7013), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -762363,7 +758947,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [303991] = 13, + [301124] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -762384,11 +758968,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(1397), 1, - anon_sym_LBRACE, - STATE(4637), 1, - sym_initializer_expression, - STATE(7083), 9, + ACTIONS(10775), 1, + anon_sym_COMMA, + ACTIONS(10777), 1, + anon_sym_RBRACK, + STATE(6801), 1, + aux_sym_global_attribute_repeat1, + STATE(7014), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -762398,7 +758984,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [304039] = 12, + [301175] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -762419,10 +759005,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(3179), 2, - anon_sym_while, - anon_sym_else, - STATE(7084), 9, + ACTIONS(10779), 1, + anon_sym_COMMA, + ACTIONS(10781), 1, + anon_sym_RBRACK, + STATE(6843), 1, + aux_sym_argument_list_repeat1, + STATE(7015), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -762432,7 +759021,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [304085] = 12, + [301226] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -762453,10 +759042,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10829), 2, + ACTIONS(10783), 3, anon_sym_SEMI, - anon_sym_where, - STATE(7085), 9, + anon_sym_LBRACE, + anon_sym_EQ_GT, + STATE(7016), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -762466,7 +759056,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [304131] = 12, + [301273] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -762487,10 +759077,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(3261), 2, - anon_sym_while, - anon_sym_else, - STATE(7086), 9, + ACTIONS(8864), 1, + anon_sym_RBRACK, + ACTIONS(10785), 1, + anon_sym_COMMA, + STATE(6981), 1, + aux_sym_global_attribute_repeat1, + STATE(7017), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -762500,7 +759093,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [304177] = 12, + [301324] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -762521,10 +759114,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(3155), 2, - anon_sym_while, - anon_sym_else, - STATE(7087), 9, + ACTIONS(10787), 1, + anon_sym_COMMA, + ACTIONS(10790), 1, + anon_sym_RBRACK, + STATE(7018), 10, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -762534,7 +759128,8 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [304223] = 12, + aux_sym_calling_convention_repeat1, + [301373] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -762555,10 +759150,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(3221), 2, - anon_sym_while, - anon_sym_else, - STATE(7088), 9, + ACTIONS(10208), 1, + anon_sym_COMMA, + ACTIONS(10792), 1, + anon_sym_RBRACE, + STATE(6862), 1, + aux_sym__with_body_repeat1, + STATE(7019), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -762568,7 +759166,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [304269] = 12, + [301424] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -762589,10 +759187,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(3225), 2, - anon_sym_while, - anon_sym_else, - STATE(7089), 9, + ACTIONS(2671), 1, + anon_sym_RBRACK, + ACTIONS(10794), 1, + anon_sym_COMMA, + STATE(6908), 1, + aux_sym_argument_list_repeat1, + STATE(7020), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -762602,7 +759203,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [304315] = 12, + [301475] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -762623,10 +759224,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(3159), 2, - anon_sym_while, - anon_sym_else, - STATE(7090), 9, + ACTIONS(8862), 1, + anon_sym_RBRACK, + ACTIONS(10734), 1, + anon_sym_COMMA, + STATE(6808), 1, + aux_sym_global_attribute_repeat1, + STATE(7021), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -762636,7 +759240,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [304361] = 13, + [301526] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -762657,11 +759261,11 @@ 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(7178), 1, - sym_string_literal, - STATE(7091), 9, + ACTIONS(10626), 1, + anon_sym_RPAREN, + ACTIONS(10796), 1, + anon_sym_COMMA, + STATE(7022), 10, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -762671,7 +759275,8 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [304409] = 13, + aux_sym_variable_declaration_repeat1, + [301575] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -762692,11 +759297,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9715), 1, - anon_sym_LBRACE, - STATE(3279), 1, - sym_block, - STATE(7092), 9, + ACTIONS(10276), 1, + anon_sym_COMMA, + ACTIONS(10616), 1, + anon_sym_RPAREN, + STATE(7022), 1, + aux_sym_variable_declaration_repeat1, + STATE(7023), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -762706,7 +759313,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [304457] = 12, + [301626] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -762727,10 +759334,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10831), 2, + ACTIONS(10270), 1, anon_sym_COMMA, - anon_sym_RBRACE, - STATE(7093), 9, + ACTIONS(10799), 1, + anon_sym_RPAREN, + STATE(6628), 1, + aux_sym_bracketed_parameter_list_repeat1, + STATE(7024), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -762740,7 +759350,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [304503] = 13, + [301677] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -762761,11 +759371,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10170), 1, + ACTIONS(2663), 1, + anon_sym_RBRACK, + ACTIONS(10801), 1, anon_sym_COMMA, - STATE(6748), 1, - aux_sym_tuple_type_repeat1, - STATE(7094), 9, + STATE(6908), 1, + aux_sym_argument_list_repeat1, + STATE(7025), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -762775,7 +759387,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [304551] = 12, + [301728] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -762796,10 +759408,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(3241), 2, - anon_sym_while, - anon_sym_else, - STATE(7095), 9, + ACTIONS(10237), 1, + anon_sym_COMMA, + ACTIONS(10803), 1, + anon_sym_RPAREN, + STATE(6807), 1, + aux_sym_argument_list_repeat1, + STATE(7026), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -762809,7 +759424,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [304597] = 13, + [301779] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -762830,115 +759445,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(1247), 1, + ACTIONS(1311), 1, anon_sym_LBRACE, - STATE(3045), 1, + STATE(3424), 1, sym_initializer_expression, - STATE(7096), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - [304645] = 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(8916), 1, - anon_sym_LPAREN, - STATE(6423), 1, - sym_parameter_list, - 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, - [304693] = 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(8916), 1, - anon_sym_LPAREN, - STATE(6428), 1, - sym_parameter_list, - STATE(7098), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - [304741] = 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(10414), 2, - anon_sym_COMMA, - anon_sym_GT, - STATE(7099), 9, + STATE(7027), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -762948,7 +759459,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [304787] = 13, + [301827] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -762969,11 +759480,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10833), 1, - anon_sym_LBRACE, - STATE(7089), 1, - sym_switch_body, - STATE(7100), 9, + ACTIONS(10805), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + STATE(7028), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -762983,7 +759493,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [304835] = 13, + [301873] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -763004,11 +759514,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10835), 1, - anon_sym_LBRACK, - STATE(3264), 1, - sym_array_rank_specifier, - STATE(7101), 9, + ACTIONS(5573), 1, + anon_sym_LBRACE, + STATE(3089), 1, + sym_block, + STATE(7029), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -763018,7 +759528,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [304883] = 12, + [301921] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -763039,10 +759549,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10837), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - STATE(7102), 9, + ACTIONS(8892), 1, + anon_sym_LPAREN, + STATE(6441), 1, + sym_parameter_list, + STATE(7030), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -763052,7 +759563,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [304929] = 13, + [301969] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -763073,11 +759584,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10839), 1, - anon_sym_LBRACK, - STATE(2386), 1, - sym_array_rank_specifier, - STATE(7103), 9, + ACTIONS(1481), 1, + anon_sym_LBRACE, + STATE(3063), 1, + sym_initializer_expression, + STATE(7031), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -763087,7 +759598,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [304977] = 12, + [302017] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -763108,10 +759619,11 @@ 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, - STATE(7104), 9, + ACTIONS(9762), 1, + anon_sym_LBRACE, + STATE(3448), 1, + sym_block, + STATE(7032), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -763121,32 +759633,31 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [305023] = 13, - ACTIONS(3), 1, + [302065] = 12, + ACTIONS(9077), 1, aux_sym_preproc_region_token1, - ACTIONS(5), 1, + ACTIONS(9079), 1, aux_sym_preproc_endregion_token1, - ACTIONS(7), 1, + ACTIONS(9081), 1, aux_sym_preproc_line_token1, - ACTIONS(9), 1, + ACTIONS(9083), 1, aux_sym_preproc_pragma_token1, - ACTIONS(11), 1, + ACTIONS(9085), 1, aux_sym_preproc_nullable_token1, - ACTIONS(13), 1, + ACTIONS(9087), 1, aux_sym_preproc_error_token1, - ACTIONS(15), 1, + ACTIONS(9089), 1, aux_sym_preproc_warning_token1, - ACTIONS(17), 1, + ACTIONS(9091), 1, aux_sym_preproc_define_token1, - ACTIONS(19), 1, + ACTIONS(9093), 1, aux_sym_preproc_undef_token1, - ACTIONS(21), 1, + ACTIONS(9095), 1, sym_comment, - ACTIONS(3215), 1, - anon_sym_while, - ACTIONS(10841), 1, - anon_sym_else, - STATE(7105), 9, + ACTIONS(10807), 2, + sym_character_literal_content, + sym_escape_sequence, + STATE(7033), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -763156,7 +759667,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [305071] = 13, + [302111] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -763177,11 +759688,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10170), 1, - anon_sym_COMMA, - STATE(6834), 1, - aux_sym_tuple_type_repeat1, - STATE(7106), 9, + ACTIONS(10809), 1, + anon_sym_LBRACE, + STATE(2111), 1, + sym_switch_body, + STATE(7034), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -763191,7 +759702,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [305119] = 13, + [302159] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -763212,11 +759723,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8916), 1, - anon_sym_LPAREN, - STATE(7120), 1, - sym_parameter_list, - STATE(7107), 9, + ACTIONS(3963), 2, + anon_sym_COMMA, + anon_sym_GT, + STATE(7035), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -763226,7 +759736,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [305167] = 12, + [302205] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -763247,10 +759757,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10843), 2, - anon_sym_SEMI, - anon_sym_where, - STATE(7108), 9, + ACTIONS(5255), 1, + anon_sym_LBRACE, + STATE(1940), 1, + sym_block, + STATE(7036), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -763260,7 +759771,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [305213] = 13, + [302253] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -763281,11 +759792,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9848), 1, - anon_sym_LBRACE, - STATE(3729), 1, - sym_block, - STATE(7109), 9, + ACTIONS(10171), 1, + anon_sym_COMMA, + STATE(6924), 1, + aux_sym_tuple_type_repeat1, + STATE(7037), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -763295,7 +759806,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [305261] = 12, + [302301] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -763316,10 +759827,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4010), 2, - anon_sym_COMMA, - anon_sym_GT, - STATE(7110), 9, + ACTIONS(3235), 2, + anon_sym_while, + anon_sym_else, + STATE(7038), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -763329,7 +759840,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [305307] = 13, + [302347] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -763350,11 +759861,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10801), 1, - anon_sym_LPAREN, - STATE(92), 1, - sym__for_statement_conditions, - STATE(7111), 9, + ACTIONS(3207), 2, + anon_sym_while, + anon_sym_else, + STATE(7039), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -763364,32 +759874,32 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [305355] = 13, - ACTIONS(3), 1, + [302393] = 13, + ACTIONS(9077), 1, aux_sym_preproc_region_token1, - ACTIONS(5), 1, + ACTIONS(9079), 1, aux_sym_preproc_endregion_token1, - ACTIONS(7), 1, + ACTIONS(9081), 1, aux_sym_preproc_line_token1, - ACTIONS(9), 1, + ACTIONS(9083), 1, aux_sym_preproc_pragma_token1, - ACTIONS(11), 1, + ACTIONS(9085), 1, aux_sym_preproc_nullable_token1, - ACTIONS(13), 1, + ACTIONS(9087), 1, aux_sym_preproc_error_token1, - ACTIONS(15), 1, + ACTIONS(9089), 1, aux_sym_preproc_warning_token1, - ACTIONS(17), 1, + ACTIONS(9091), 1, aux_sym_preproc_define_token1, - ACTIONS(19), 1, + ACTIONS(9093), 1, aux_sym_preproc_undef_token1, - ACTIONS(21), 1, + ACTIONS(9095), 1, sym_comment, - ACTIONS(5274), 1, - anon_sym_LBRACE, - STATE(1914), 1, - sym_block, - STATE(7112), 9, + ACTIONS(10811), 1, + aux_sym_preproc_if_token2, + ACTIONS(10813), 1, + sym_preproc_arg, + STATE(7040), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -763399,7 +759909,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [305403] = 13, + [302441] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -763420,11 +759930,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(5293), 1, - anon_sym_LBRACE, - STATE(1921), 1, - sym_block, - STATE(7113), 9, + ACTIONS(8892), 1, + anon_sym_LPAREN, + STATE(6449), 1, + sym_parameter_list, + STATE(7041), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -763434,7 +759944,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [305451] = 12, + [302489] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -763455,10 +759965,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(3229), 2, - anon_sym_while, - anon_sym_else, - STATE(7114), 9, + ACTIONS(10815), 2, + anon_sym_COMMA, + anon_sym_GT, + STATE(7042), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -763468,7 +759978,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [305497] = 13, + [302535] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -763489,11 +759999,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8142), 1, - anon_sym_DOT, - ACTIONS(10845), 1, - anon_sym_SEMI, - STATE(7115), 9, + ACTIONS(3275), 2, + anon_sym_while, + anon_sym_else, + STATE(7043), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -763503,32 +760012,32 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [305545] = 13, - ACTIONS(3), 1, + [302581] = 13, + ACTIONS(9077), 1, aux_sym_preproc_region_token1, - ACTIONS(5), 1, + ACTIONS(9079), 1, aux_sym_preproc_endregion_token1, - ACTIONS(7), 1, + ACTIONS(9081), 1, aux_sym_preproc_line_token1, - ACTIONS(9), 1, + ACTIONS(9083), 1, aux_sym_preproc_pragma_token1, - ACTIONS(11), 1, + ACTIONS(9085), 1, aux_sym_preproc_nullable_token1, - ACTIONS(13), 1, + ACTIONS(9087), 1, aux_sym_preproc_error_token1, - ACTIONS(15), 1, + ACTIONS(9089), 1, aux_sym_preproc_warning_token1, - ACTIONS(17), 1, + ACTIONS(9091), 1, aux_sym_preproc_define_token1, - ACTIONS(19), 1, + ACTIONS(9093), 1, aux_sym_preproc_undef_token1, - ACTIONS(21), 1, + ACTIONS(9095), 1, sym_comment, - ACTIONS(9950), 1, - anon_sym_LBRACE, - STATE(7732), 1, - sym_enum_member_declaration_list, - STATE(7116), 9, + ACTIONS(10817), 1, + aux_sym_preproc_if_token2, + ACTIONS(10819), 1, + sym_preproc_arg, + STATE(7044), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -763538,7 +760047,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [305593] = 13, + [302629] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -763559,11 +760068,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10847), 1, - anon_sym_LBRACE, - STATE(1951), 1, - sym_switch_body, - STATE(7117), 9, + ACTIONS(10357), 1, + anon_sym_COMMA, + STATE(6812), 1, + aux_sym_positional_pattern_clause_repeat1, + STATE(7045), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -763573,7 +760082,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [305641] = 12, + [302677] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -763594,10 +760103,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(7118), 9, + ACTIONS(7912), 1, + anon_sym_DOT, + ACTIONS(10821), 1, + anon_sym_SEMI, + STATE(7046), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -763607,7 +760117,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [305687] = 13, + [302725] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -763628,11 +760138,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9950), 1, - anon_sym_LBRACE, - STATE(7336), 1, - sym_enum_member_declaration_list, - STATE(7119), 9, + ACTIONS(3287), 2, + anon_sym_while, + anon_sym_else, + STATE(7047), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -763642,7 +760151,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [305735] = 12, + [302771] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -763663,10 +760172,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10849), 2, - anon_sym_SEMI, - anon_sym_where, - STATE(7120), 9, + ACTIONS(10823), 1, + anon_sym_LBRACK, + STATE(6617), 1, + sym_bracketed_parameter_list, + STATE(7048), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -763676,7 +760186,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [305781] = 13, + [302819] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -763697,11 +760207,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8916), 1, - anon_sym_LPAREN, - STATE(6721), 1, - sym_parameter_list, - STATE(7121), 9, + ACTIONS(3295), 2, + anon_sym_while, + anon_sym_else, + STATE(7049), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -763711,7 +760220,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [305829] = 13, + [302865] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -763732,11 +760241,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10851), 1, - anon_sym_LBRACK, - STATE(2926), 1, - sym_array_rank_specifier, - STATE(7122), 9, + ACTIONS(10825), 1, + anon_sym_LBRACE, + STATE(3839), 1, + sym__switch_expression_body, + STATE(7050), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -763746,7 +760255,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [305877] = 12, + [302913] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -763767,10 +760276,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10488), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - STATE(7123), 9, + ACTIONS(8892), 1, + anon_sym_LPAREN, + STATE(6434), 1, + sym_parameter_list, + STATE(7051), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -763780,32 +760290,32 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [305923] = 13, - ACTIONS(9097), 1, + [302961] = 13, + ACTIONS(3), 1, aux_sym_preproc_region_token1, - ACTIONS(9099), 1, + ACTIONS(5), 1, aux_sym_preproc_endregion_token1, - ACTIONS(9101), 1, + ACTIONS(7), 1, aux_sym_preproc_line_token1, - ACTIONS(9103), 1, + ACTIONS(9), 1, aux_sym_preproc_pragma_token1, - ACTIONS(9105), 1, + ACTIONS(11), 1, aux_sym_preproc_nullable_token1, - ACTIONS(9107), 1, + ACTIONS(13), 1, aux_sym_preproc_error_token1, - ACTIONS(9109), 1, + ACTIONS(15), 1, aux_sym_preproc_warning_token1, - ACTIONS(9111), 1, + ACTIONS(17), 1, aux_sym_preproc_define_token1, - ACTIONS(9113), 1, + ACTIONS(19), 1, aux_sym_preproc_undef_token1, - ACTIONS(9115), 1, + ACTIONS(21), 1, sym_comment, - ACTIONS(10441), 1, - aux_sym_preproc_if_token2, - ACTIONS(10853), 1, - anon_sym_COMMA, - STATE(7124), 9, + ACTIONS(8892), 1, + anon_sym_LPAREN, + STATE(6289), 1, + sym_parameter_list, + STATE(7052), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -763815,7 +760325,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [305971] = 12, + [303009] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -763836,10 +760346,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10855), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - STATE(7125), 9, + ACTIONS(8892), 1, + anon_sym_LPAREN, + STATE(6422), 1, + sym_parameter_list, + STATE(7053), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -763849,7 +760360,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [306017] = 12, + [303057] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -763870,10 +760381,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(3237), 2, + ACTIONS(3219), 2, anon_sym_while, anon_sym_else, - STATE(7126), 9, + STATE(7054), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -763883,7 +760394,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [306063] = 12, + [303103] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -763904,10 +760415,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10857), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - STATE(7127), 9, + ACTIONS(1395), 1, + anon_sym_LBRACE, + STATE(4621), 1, + sym_initializer_expression, + STATE(7055), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -763917,7 +760429,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [306109] = 13, + [303151] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -763938,11 +760450,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10817), 1, + ACTIONS(10827), 1, anon_sym_LBRACK, - STATE(6637), 1, - sym_bracketed_parameter_list, - STATE(7128), 9, + STATE(4348), 1, + sym_array_rank_specifier, + STATE(7056), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -763952,7 +760464,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [306157] = 12, + [303199] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -763973,10 +760485,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(3167), 2, + ACTIONS(3227), 2, anon_sym_while, anon_sym_else, - STATE(7129), 9, + STATE(7057), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -763986,7 +760498,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [306203] = 13, + [303245] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -764007,11 +760519,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9950), 1, - anon_sym_LBRACE, - STATE(7389), 1, - sym_enum_member_declaration_list, - STATE(7130), 9, + ACTIONS(10171), 1, + anon_sym_COMMA, + STATE(6772), 1, + aux_sym_tuple_type_repeat1, + STATE(7058), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -764021,7 +760533,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [306251] = 13, + [303293] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -764042,11 +760554,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9715), 1, + ACTIONS(9936), 1, anon_sym_LBRACE, - STATE(3352), 1, + STATE(3313), 1, sym_block, - STATE(7131), 9, + STATE(7059), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -764056,7 +760568,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [306299] = 12, + [303341] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -764077,10 +760589,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_RBRACK, - STATE(7132), 9, + ACTIONS(1155), 1, + anon_sym_LBRACE, + STATE(3291), 1, + sym_initializer_expression, + STATE(7060), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -764090,7 +760603,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [306345] = 13, + [303389] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -764111,11 +760624,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8916), 1, - anon_sym_LPAREN, - STATE(6383), 1, - sym_parameter_list, - STATE(7133), 9, + ACTIONS(10829), 1, + anon_sym_LBRACK, + STATE(2915), 1, + sym_array_rank_specifier, + STATE(7061), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -764125,7 +760638,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [306393] = 13, + [303437] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -764146,11 +760659,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8916), 1, - anon_sym_LPAREN, - STATE(6315), 1, - sym_parameter_list, - STATE(7134), 9, + ACTIONS(3247), 2, + anon_sym_while, + anon_sym_else, + STATE(7062), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -764160,7 +760672,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [306441] = 12, + [303483] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -764181,10 +760693,11 @@ 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, - STATE(7135), 9, + ACTIONS(10823), 1, + anon_sym_LBRACK, + STATE(6721), 1, + sym_bracketed_parameter_list, + STATE(7063), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -764194,7 +760707,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [306487] = 13, + [303531] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -764215,11 +760728,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10801), 1, - anon_sym_LPAREN, - STATE(69), 1, - sym__for_statement_conditions, - STATE(7136), 9, + ACTIONS(10831), 2, + anon_sym_SEMI, + anon_sym_where, + STATE(7064), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -764229,7 +760741,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [306535] = 13, + [303577] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -764250,11 +760762,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10859), 1, - anon_sym_LBRACE, - STATE(2996), 1, - sym__with_body, - STATE(7137), 9, + ACTIONS(10697), 1, + anon_sym_DQUOTE, + STATE(7284), 1, + sym_string_literal, + STATE(7065), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -764264,7 +760776,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [306583] = 13, + [303625] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -764285,11 +760797,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(1159), 1, - anon_sym_LBRACE, - STATE(3229), 1, - sym_initializer_expression, - STATE(7138), 9, + ACTIONS(8892), 1, + anon_sym_LPAREN, + STATE(6311), 1, + sym_parameter_list, + STATE(7066), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -764299,7 +760811,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [306631] = 13, + [303673] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -764320,11 +760832,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(6678), 1, - anon_sym_LBRACK, - ACTIONS(6680), 1, - anon_sym_STAR, - STATE(7139), 9, + ACTIONS(10833), 1, + anon_sym_LPAREN, + STATE(77), 1, + sym__for_statement_conditions, + STATE(7067), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -764334,7 +760846,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [306679] = 12, + [303721] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -764355,10 +760867,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10481), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - STATE(7140), 9, + ACTIONS(3255), 2, + anon_sym_while, + anon_sym_else, + STATE(7068), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -764368,7 +760880,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [306725] = 12, + [303767] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -764389,10 +760901,11 @@ 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, - STATE(7141), 9, + ACTIONS(10171), 1, + anon_sym_COMMA, + STATE(6892), 1, + aux_sym_tuple_type_repeat1, + STATE(7069), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -764402,7 +760915,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [306771] = 13, + [303815] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -764423,11 +760936,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(5293), 1, + ACTIONS(5573), 1, anon_sym_LBRACE, - STATE(2029), 1, + STATE(6335), 1, sym_block, - STATE(7142), 9, + STATE(7070), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -764437,7 +760950,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [306819] = 13, + [303863] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -764458,11 +760971,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10160), 1, + ACTIONS(10757), 2, anon_sym_COMMA, - STATE(6911), 1, - aux_sym_argument_list_repeat1, - STATE(7143), 9, + anon_sym_GT, + STATE(7071), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -764472,7 +760984,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [306867] = 12, + [303909] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -764493,10 +761005,11 @@ 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(7144), 9, + ACTIONS(1155), 1, + anon_sym_LBRACE, + STATE(3319), 1, + sym_initializer_expression, + STATE(7072), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -764506,7 +761019,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [306913] = 13, + [303957] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -764527,11 +761040,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10861), 1, - anon_sym_on, - STATE(6286), 1, - sym__join_body, - STATE(7145), 9, + ACTIONS(145), 1, + anon_sym_DQUOTE, + STATE(7220), 1, + sym_string_literal, + STATE(7073), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -764541,7 +761054,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [306961] = 13, + [304005] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -764562,11 +761075,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10170), 1, - anon_sym_COMMA, - STATE(6950), 1, - aux_sym_tuple_type_repeat1, - STATE(7146), 9, + ACTIONS(9788), 1, + anon_sym_LBRACE, + STATE(4592), 1, + sym_block, + STATE(7074), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -764576,7 +761089,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [307009] = 13, + [304053] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -764597,11 +761110,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10817), 1, - anon_sym_LBRACK, - STATE(6608), 1, - sym_bracketed_parameter_list, - STATE(7147), 9, + ACTIONS(10835), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + STATE(7075), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -764611,7 +761123,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [307057] = 13, + [304099] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -764632,11 +761144,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10496), 1, - anon_sym_DQUOTE, - STATE(7322), 1, - sym_string_literal, - STATE(7148), 9, + ACTIONS(10837), 1, + anon_sym_LBRACE, + STATE(3684), 1, + sym__with_body, + STATE(7076), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -764646,7 +761158,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [307105] = 12, + [304147] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -764667,10 +761179,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(3249), 2, + ACTIONS(3299), 2, anon_sym_while, anon_sym_else, - STATE(7149), 9, + STATE(7077), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -764680,7 +761192,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [307151] = 13, + [304193] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -764701,11 +761213,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9950), 1, - anon_sym_LBRACE, - STATE(7476), 1, - sym_enum_member_declaration_list, - STATE(7150), 9, + ACTIONS(8892), 1, + anon_sym_LPAREN, + STATE(7194), 1, + sym_parameter_list, + STATE(7078), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -764715,7 +761227,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [307199] = 12, + [304241] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -764736,10 +761248,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10517), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - STATE(7151), 9, + ACTIONS(3307), 2, + anon_sym_while, + anon_sym_else, + STATE(7079), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -764749,7 +761261,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [307245] = 12, + [304287] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -764770,10 +761282,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10863), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - STATE(7152), 9, + ACTIONS(8892), 1, + anon_sym_LPAREN, + STATE(6713), 1, + sym_parameter_list, + STATE(7080), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -764783,7 +761296,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [307291] = 12, + [304335] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -764804,10 +761317,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(3265), 2, - anon_sym_while, - anon_sym_else, - STATE(7153), 9, + ACTIONS(10839), 1, + anon_sym_LBRACK, + STATE(2831), 1, + sym_array_rank_specifier, + STATE(7081), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -764817,7 +761331,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [307337] = 12, + [304383] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -764838,10 +761352,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10865), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - STATE(7154), 9, + ACTIONS(10841), 2, + anon_sym_SEMI, + anon_sym_where, + STATE(7082), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -764851,7 +761365,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [307383] = 13, + [304429] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -764872,11 +761386,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10867), 1, + ACTIONS(10843), 1, anon_sym_LBRACK, - STATE(4351), 1, + STATE(2406), 1, sym_array_rank_specifier, - STATE(7155), 9, + STATE(7083), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -764886,7 +761400,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [307431] = 13, + [304477] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -764907,11 +761421,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(3667), 1, - anon_sym_EQ_GT, - ACTIONS(10869), 1, - anon_sym_in, - STATE(7156), 9, + ACTIONS(3211), 2, + anon_sym_while, + anon_sym_else, + STATE(7084), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -764921,7 +761434,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [307479] = 13, + [304523] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -764942,11 +761455,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10817), 1, - anon_sym_LBRACK, - STATE(6683), 1, - sym_bracketed_parameter_list, - STATE(7157), 9, + ACTIONS(10845), 1, + anon_sym_LBRACE, + STATE(3092), 1, + sym__with_body, + STATE(7085), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -764956,7 +761469,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [307527] = 12, + [304571] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -764977,10 +761490,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(3097), 2, + ACTIONS(3171), 2, anon_sym_while, anon_sym_else, - STATE(7158), 9, + STATE(7086), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -764990,7 +761503,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [307573] = 12, + [304617] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -765011,10 +761524,10 @@ 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, - STATE(7159), 9, + ACTIONS(10153), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + STATE(7087), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -765024,7 +761537,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [307619] = 12, + [304663] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -765045,10 +761558,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10532), 2, + ACTIONS(10138), 2, anon_sym_COMMA, - anon_sym_GT, - STATE(7160), 9, + anon_sym_RBRACE, + STATE(7088), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -765058,7 +761571,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [307665] = 12, + [304709] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -765079,10 +761592,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10871), 2, - anon_sym_COMMA, - anon_sym_GT, - STATE(7161), 9, + ACTIONS(7912), 1, + anon_sym_DOT, + ACTIONS(10847), 1, + anon_sym_SEMI, + STATE(7089), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -765092,7 +761606,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [307711] = 13, + [304757] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -765113,11 +761627,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10873), 1, - anon_sym_LBRACK, - STATE(4279), 1, - sym_array_rank_specifier, - STATE(7162), 9, + ACTIONS(3321), 2, + anon_sym_while, + anon_sym_else, + STATE(7090), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -765127,32 +761640,31 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [307759] = 13, - ACTIONS(9097), 1, + [304803] = 12, + ACTIONS(3), 1, aux_sym_preproc_region_token1, - ACTIONS(9099), 1, + ACTIONS(5), 1, aux_sym_preproc_endregion_token1, - ACTIONS(9101), 1, + ACTIONS(7), 1, aux_sym_preproc_line_token1, - ACTIONS(9103), 1, + ACTIONS(9), 1, aux_sym_preproc_pragma_token1, - ACTIONS(9105), 1, + ACTIONS(11), 1, aux_sym_preproc_nullable_token1, - ACTIONS(9107), 1, + ACTIONS(13), 1, aux_sym_preproc_error_token1, - ACTIONS(9109), 1, + ACTIONS(15), 1, aux_sym_preproc_warning_token1, - ACTIONS(9111), 1, + ACTIONS(17), 1, aux_sym_preproc_define_token1, - ACTIONS(9113), 1, + ACTIONS(19), 1, aux_sym_preproc_undef_token1, - ACTIONS(9115), 1, + ACTIONS(21), 1, sym_comment, - ACTIONS(10875), 1, - aux_sym_preproc_if_token2, - ACTIONS(10877), 1, - sym_preproc_arg, - STATE(7163), 9, + ACTIONS(10849), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + STATE(7091), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -765162,7 +761674,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [307807] = 12, + [304849] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -765183,10 +761695,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10551), 2, + ACTIONS(10330), 2, anon_sym_COMMA, anon_sym_RBRACE, - STATE(7164), 9, + STATE(7092), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -765196,7 +761708,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [307853] = 13, + [304895] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -765217,11 +761729,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9807), 1, + ACTIONS(10851), 1, anon_sym_LBRACE, - STATE(3364), 1, - sym_block, - STATE(7165), 9, + STATE(1960), 1, + sym_switch_body, + STATE(7093), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -765231,7 +761743,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [307901] = 12, + [304943] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -765252,10 +761764,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(3191), 2, + ACTIONS(3175), 2, anon_sym_while, anon_sym_else, - STATE(7166), 9, + STATE(7094), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -765265,7 +761777,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [307947] = 13, + [304989] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -765286,11 +761798,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(1487), 1, - anon_sym_LBRACE, - STATE(3091), 1, - sym_initializer_expression, - STATE(7167), 9, + ACTIONS(10853), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + STATE(7095), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -765300,7 +761811,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [307995] = 13, + [305035] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -765321,11 +761832,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10817), 1, - anon_sym_LBRACK, - STATE(6685), 1, - sym_bracketed_parameter_list, - STATE(7168), 9, + ACTIONS(3147), 2, + anon_sym_while, + anon_sym_else, + STATE(7096), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -765335,7 +761845,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [308043] = 12, + [305081] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -765356,10 +761866,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10879), 2, - anon_sym_SEMI, - anon_sym_where, - STATE(7169), 9, + ACTIONS(3163), 2, + anon_sym_while, + anon_sym_else, + STATE(7097), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -765369,7 +761879,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [308089] = 12, + [305127] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -765390,10 +761900,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(7170), 9, + ACTIONS(9762), 1, + anon_sym_LBRACE, + STATE(3415), 1, + sym_block, + STATE(7098), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -765403,7 +761914,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [308135] = 12, + [305175] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -765424,10 +761935,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(3163), 2, - anon_sym_while, - anon_sym_else, - STATE(7171), 9, + ACTIONS(10855), 1, + anon_sym_LBRACE, + STATE(4599), 1, + sym__switch_expression_body, + STATE(7099), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -765437,7 +761949,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [308181] = 13, + [305223] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -765458,11 +761970,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10881), 1, - anon_sym_LPAREN, - STATE(7190), 1, - sym_tuple_expression, - STATE(7172), 9, + ACTIONS(10857), 2, + anon_sym_LBRACE, + anon_sym_EQ_GT, + STATE(7100), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -765472,7 +761983,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [308229] = 13, + [305269] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -765493,11 +762004,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8916), 1, + ACTIONS(8892), 1, anon_sym_LPAREN, - STATE(6691), 1, + STATE(6303), 1, sym_parameter_list, - STATE(7173), 9, + STATE(7101), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -765507,7 +762018,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [308277] = 13, + [305317] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -765528,11 +762039,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10160), 1, + ACTIONS(3978), 2, anon_sym_COMMA, - STATE(6961), 1, - aux_sym_argument_list_repeat1, - STATE(7174), 9, + anon_sym_GT, + STATE(7102), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -765542,7 +762052,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [308325] = 13, + [305363] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -765563,11 +762073,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10883), 1, + ACTIONS(10859), 2, + anon_sym_SEMI, anon_sym_LBRACE, - STATE(3395), 1, - sym__switch_expression_body, - STATE(7175), 9, + STATE(7103), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -765577,7 +762086,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [308373] = 13, + [305409] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -765598,11 +762107,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(5617), 1, - anon_sym_LBRACE, - STATE(3101), 1, - sym_block, - STATE(7176), 9, + ACTIONS(10861), 1, + anon_sym_LPAREN, + STATE(7121), 1, + sym_tuple_expression, + STATE(7104), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -765612,7 +762121,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [308421] = 12, + [305457] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -765633,10 +762142,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10885), 2, - anon_sym_LBRACE, - anon_sym_EQ_GT, - STATE(7177), 9, + ACTIONS(10863), 1, + anon_sym_LPAREN, + STATE(7114), 1, + sym_tuple_expression, + STATE(7105), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -765646,7 +762156,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [308467] = 13, + [305505] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -765667,11 +762177,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10496), 1, - anon_sym_DQUOTE, - STATE(7513), 1, - sym_string_literal, - STATE(7178), 9, + ACTIONS(8892), 1, + anon_sym_LPAREN, + STATE(6393), 1, + sym_parameter_list, + STATE(7106), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -765681,7 +762191,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [308515] = 13, + [305553] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -765702,11 +762212,44 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10887), 1, - anon_sym_LBRACE, - STATE(3698), 1, - sym__switch_expression_body, - STATE(7179), 9, + ACTIONS(3994), 2, + anon_sym_COMMA, + anon_sym_GT, + STATE(7107), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + [305599] = 12, + ACTIONS(9077), 1, + aux_sym_preproc_region_token1, + ACTIONS(9079), 1, + aux_sym_preproc_endregion_token1, + ACTIONS(9081), 1, + aux_sym_preproc_line_token1, + ACTIONS(9083), 1, + aux_sym_preproc_pragma_token1, + ACTIONS(9085), 1, + aux_sym_preproc_nullable_token1, + ACTIONS(9087), 1, + aux_sym_preproc_error_token1, + ACTIONS(9089), 1, + aux_sym_preproc_warning_token1, + ACTIONS(9091), 1, + aux_sym_preproc_define_token1, + ACTIONS(9093), 1, + aux_sym_preproc_undef_token1, + ACTIONS(9095), 1, + sym_comment, + ACTIONS(10865), 2, + sym_character_literal_content, + sym_escape_sequence, + STATE(7108), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -765716,7 +762259,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [308563] = 13, + [305645] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -765737,11 +762280,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(1633), 1, - anon_sym_LBRACE, - STATE(3708), 1, - sym_initializer_expression, - STATE(7180), 9, + ACTIONS(4002), 2, + anon_sym_COMMA, + anon_sym_GT, + STATE(7109), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -765751,7 +762293,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [308611] = 13, + [305691] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -765772,11 +762314,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10889), 1, - anon_sym_LBRACE, - STATE(3429), 1, - sym__with_body, - STATE(7181), 9, + ACTIONS(8892), 1, + anon_sym_LPAREN, + STATE(6709), 1, + sym_parameter_list, + STATE(7110), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -765786,7 +762328,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [308659] = 13, + [305739] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -765807,11 +762349,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9950), 1, - anon_sym_LBRACE, - STATE(7585), 1, - sym_enum_member_declaration_list, - STATE(7182), 9, + ACTIONS(10867), 2, + anon_sym_COMMA, + anon_sym_GT, + STATE(7111), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -765821,7 +762362,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [308707] = 13, + [305785] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -765842,11 +762383,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9775), 1, + ACTIONS(9864), 1, anon_sym_LBRACE, - STATE(4641), 1, + STATE(2967), 1, sym_block, - STATE(7183), 9, + STATE(7112), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -765856,7 +762397,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [308755] = 13, + [305833] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -765877,11 +762418,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10891), 1, - anon_sym_warning, - ACTIONS(10893), 1, - anon_sym_checksum, - STATE(7184), 9, + ACTIONS(10268), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + STATE(7113), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -765891,7 +762431,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [308803] = 13, + [305879] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -765912,11 +762452,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8916), 1, - anon_sym_LPAREN, - STATE(6439), 1, - sym_parameter_list, - STATE(7185), 9, + ACTIONS(10869), 1, + anon_sym_LBRACE, + STATE(7171), 1, + sym_switch_body, + STATE(7114), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -765926,32 +762466,32 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [308851] = 13, - ACTIONS(3), 1, + [305927] = 13, + ACTIONS(9077), 1, aux_sym_preproc_region_token1, - ACTIONS(5), 1, + ACTIONS(9079), 1, aux_sym_preproc_endregion_token1, - ACTIONS(7), 1, + ACTIONS(9081), 1, aux_sym_preproc_line_token1, - ACTIONS(9), 1, + ACTIONS(9083), 1, aux_sym_preproc_pragma_token1, - ACTIONS(11), 1, + ACTIONS(9085), 1, aux_sym_preproc_nullable_token1, - ACTIONS(13), 1, + ACTIONS(9087), 1, aux_sym_preproc_error_token1, - ACTIONS(15), 1, + ACTIONS(9089), 1, aux_sym_preproc_warning_token1, - ACTIONS(17), 1, + ACTIONS(9091), 1, aux_sym_preproc_define_token1, - ACTIONS(19), 1, + ACTIONS(9093), 1, aux_sym_preproc_undef_token1, - ACTIONS(21), 1, + ACTIONS(9095), 1, sym_comment, - ACTIONS(9335), 1, - anon_sym_LBRACE, - STATE(7505), 1, - sym_declaration_list, - STATE(7186), 9, + ACTIONS(10581), 1, + aux_sym_preproc_if_token2, + ACTIONS(10871), 1, + anon_sym_COMMA, + STATE(7115), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -765961,7 +762501,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [308899] = 13, + [305975] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -765982,11 +762522,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9950), 1, - anon_sym_LBRACE, - STATE(7432), 1, - sym_enum_member_declaration_list, - STATE(7187), 9, + ACTIONS(10237), 1, + anon_sym_COMMA, + STATE(6825), 1, + aux_sym_argument_list_repeat1, + STATE(7116), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -765996,7 +762536,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [308947] = 12, + [306023] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -766017,10 +762557,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10895), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - STATE(7188), 9, + ACTIONS(3231), 2, + anon_sym_while, + anon_sym_else, + STATE(7117), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -766030,7 +762570,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [308993] = 13, + [306069] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -766051,11 +762591,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10160), 1, + ACTIONS(10171), 1, anon_sym_COMMA, - STATE(7016), 1, - aux_sym_argument_list_repeat1, - STATE(7189), 9, + STATE(6828), 1, + aux_sym_tuple_type_repeat1, + STATE(7118), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -766065,7 +762605,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [309041] = 13, + [306117] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -766086,11 +762626,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10847), 1, + ACTIONS(1155), 1, anon_sym_LBRACE, - STATE(1961), 1, - sym_switch_body, - STATE(7190), 9, + STATE(3286), 1, + sym_initializer_expression, + STATE(7119), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -766100,7 +762640,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [309089] = 12, + [306165] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -766121,10 +762661,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10897), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - STATE(7191), 9, + ACTIONS(10873), 1, + anon_sym_LPAREN, + STATE(7034), 1, + sym_tuple_expression, + STATE(7120), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -766134,7 +762675,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [309135] = 13, + [306213] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -766155,11 +762696,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10170), 1, - anon_sym_COMMA, - STATE(7023), 1, - aux_sym_tuple_type_repeat1, - STATE(7192), 9, + ACTIONS(10875), 1, + anon_sym_LBRACE, + STATE(2010), 1, + sym_switch_body, + STATE(7121), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -766169,32 +762710,31 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [309183] = 13, - ACTIONS(4879), 1, - aux_sym_preproc_if_token2, - ACTIONS(9097), 1, + [306261] = 12, + ACTIONS(3), 1, aux_sym_preproc_region_token1, - ACTIONS(9099), 1, + ACTIONS(5), 1, aux_sym_preproc_endregion_token1, - ACTIONS(9101), 1, + ACTIONS(7), 1, aux_sym_preproc_line_token1, - ACTIONS(9103), 1, + ACTIONS(9), 1, aux_sym_preproc_pragma_token1, - ACTIONS(9105), 1, + ACTIONS(11), 1, aux_sym_preproc_nullable_token1, - ACTIONS(9107), 1, + ACTIONS(13), 1, aux_sym_preproc_error_token1, - ACTIONS(9109), 1, + ACTIONS(15), 1, aux_sym_preproc_warning_token1, - ACTIONS(9111), 1, + ACTIONS(17), 1, aux_sym_preproc_define_token1, - ACTIONS(9113), 1, + ACTIONS(19), 1, aux_sym_preproc_undef_token1, - ACTIONS(9115), 1, + ACTIONS(21), 1, sym_comment, - ACTIONS(10899), 1, - sym_string_literal_encoding, - STATE(7193), 9, + ACTIONS(10225), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + STATE(7122), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -766204,7 +762744,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [309231] = 13, + [306307] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -766225,11 +762765,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8916), 1, - anon_sym_LPAREN, - STATE(6324), 1, - sym_parameter_list, - STATE(7194), 9, + ACTIONS(9844), 1, + anon_sym_LBRACE, + STATE(3758), 1, + sym_block, + STATE(7123), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -766239,7 +762779,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [309279] = 13, + [306355] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -766260,11 +762800,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8142), 1, - anon_sym_DOT, - ACTIONS(10901), 1, - anon_sym_SEMI, - STATE(7195), 9, + ACTIONS(3651), 1, + anon_sym_EQ_GT, + ACTIONS(10877), 1, + anon_sym_in, + STATE(7124), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -766274,7 +762814,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [309327] = 12, + [306403] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -766295,10 +762835,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10903), 2, - anon_sym_COMMA, - anon_sym_GT, - STATE(7196), 9, + ACTIONS(7912), 1, + anon_sym_DOT, + ACTIONS(10879), 1, + anon_sym_SEMI, + STATE(7125), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -766308,7 +762849,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [309373] = 13, + [306451] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -766329,11 +762870,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10905), 1, - anon_sym_LPAREN, - STATE(7214), 1, - sym_tuple_expression, - STATE(7197), 9, + ACTIONS(10881), 2, + anon_sym_LBRACE, + anon_sym_EQ_GT, + STATE(7126), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -766343,31 +762883,31 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [309421] = 12, - ACTIONS(3), 1, + [306497] = 12, + ACTIONS(9077), 1, aux_sym_preproc_region_token1, - ACTIONS(5), 1, + ACTIONS(9079), 1, aux_sym_preproc_endregion_token1, - ACTIONS(7), 1, + ACTIONS(9081), 1, aux_sym_preproc_line_token1, - ACTIONS(9), 1, + ACTIONS(9083), 1, aux_sym_preproc_pragma_token1, - ACTIONS(11), 1, + ACTIONS(9085), 1, aux_sym_preproc_nullable_token1, - ACTIONS(13), 1, + ACTIONS(9087), 1, aux_sym_preproc_error_token1, - ACTIONS(15), 1, + ACTIONS(9089), 1, aux_sym_preproc_warning_token1, - ACTIONS(17), 1, + ACTIONS(9091), 1, aux_sym_preproc_define_token1, - ACTIONS(19), 1, + ACTIONS(9093), 1, aux_sym_preproc_undef_token1, - ACTIONS(21), 1, + ACTIONS(9095), 1, sym_comment, - ACTIONS(3293), 2, - anon_sym_while, - anon_sym_else, - STATE(7198), 9, + ACTIONS(10883), 2, + sym_character_literal_content, + sym_escape_sequence, + STATE(7127), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -766377,7 +762917,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [309467] = 12, + [306543] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -766398,10 +762938,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10907), 2, - anon_sym_disable, - anon_sym_restore, - STATE(7199), 9, + ACTIONS(3243), 2, + anon_sym_while, + anon_sym_else, + STATE(7128), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -766411,7 +762951,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [309513] = 12, + [306589] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -766432,10 +762972,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, - STATE(7200), 9, + ACTIONS(10133), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + STATE(7129), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -766445,7 +762985,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [309559] = 13, + [306635] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -766466,11 +763006,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4018), 1, - anon_sym_GT, - ACTIONS(9653), 1, - anon_sym_COMMA, - STATE(7201), 9, + ACTIONS(10885), 1, + anon_sym_LBRACE, + STATE(2974), 1, + sym__switch_expression_body, + STATE(7130), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -766480,7 +763020,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [309607] = 13, + [306683] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -766501,11 +763041,10 @@ 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(7091), 1, - sym_string_literal, - STATE(7202), 9, + ACTIONS(10887), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + STATE(7131), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -766515,7 +763054,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [309655] = 12, + [306729] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -766536,10 +763075,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10909), 2, - anon_sym_LBRACE, - anon_sym_EQ_GT, - STATE(7203), 9, + ACTIONS(7912), 1, + anon_sym_DOT, + ACTIONS(10889), 1, + anon_sym_SEMI, + STATE(7132), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -766549,7 +763089,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [309701] = 12, + [306777] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -766570,10 +763110,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10637), 2, + ACTIONS(10237), 1, anon_sym_COMMA, - anon_sym_RBRACK, - STATE(7204), 9, + STATE(6890), 1, + aux_sym_argument_list_repeat1, + STATE(7133), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -766583,7 +763124,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [309747] = 12, + [306825] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -766604,10 +763145,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10911), 2, + ACTIONS(10891), 1, anon_sym_LBRACE, - anon_sym_EQ_GT, - STATE(7205), 9, + STATE(2983), 1, + sym__with_body, + STATE(7134), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -766617,31 +763159,32 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [309793] = 12, - ACTIONS(9097), 1, + [306873] = 13, + ACTIONS(4891), 1, + aux_sym_preproc_if_token2, + ACTIONS(9077), 1, aux_sym_preproc_region_token1, - ACTIONS(9099), 1, + ACTIONS(9079), 1, aux_sym_preproc_endregion_token1, - ACTIONS(9101), 1, + ACTIONS(9081), 1, aux_sym_preproc_line_token1, - ACTIONS(9103), 1, + ACTIONS(9083), 1, aux_sym_preproc_pragma_token1, - ACTIONS(9105), 1, + ACTIONS(9085), 1, aux_sym_preproc_nullable_token1, - ACTIONS(9107), 1, + ACTIONS(9087), 1, aux_sym_preproc_error_token1, - ACTIONS(9109), 1, + ACTIONS(9089), 1, aux_sym_preproc_warning_token1, - ACTIONS(9111), 1, + ACTIONS(9091), 1, aux_sym_preproc_define_token1, - ACTIONS(9113), 1, + ACTIONS(9093), 1, aux_sym_preproc_undef_token1, - ACTIONS(9115), 1, + ACTIONS(9095), 1, sym_comment, - ACTIONS(10913), 2, - sym_character_literal_content, - sym_escape_sequence, - STATE(7206), 9, + ACTIONS(10893), 1, + sym_string_literal_encoding, + STATE(7135), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -766651,7 +763194,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [309839] = 13, + [306921] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -766672,11 +763215,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(1487), 1, + ACTIONS(9788), 1, anon_sym_LBRACE, - STATE(3097), 1, - sym_initializer_expression, - STATE(7207), 9, + STATE(4649), 1, + sym_block, + STATE(7136), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -766686,7 +763229,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [309887] = 13, + [306969] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -766707,11 +763250,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9830), 1, + ACTIONS(1661), 1, anon_sym_LBRACE, - STATE(3050), 1, - sym_block, - STATE(7208), 9, + STATE(3708), 1, + sym_initializer_expression, + STATE(7137), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -766721,7 +763264,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [309935] = 13, + [307017] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -766742,11 +763285,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9335), 1, - anon_sym_LBRACE, - STATE(7580), 1, - sym_declaration_list, - STATE(7209), 9, + ACTIONS(10712), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + STATE(7138), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -766756,7 +763298,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [309983] = 12, + [307063] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -766777,10 +763319,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10915), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - STATE(7210), 9, + ACTIONS(10823), 1, + anon_sym_LBRACK, + STATE(6620), 1, + sym_bracketed_parameter_list, + STATE(7139), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -766790,7 +763333,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [310029] = 13, + [307111] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -766811,11 +763354,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9335), 1, + ACTIONS(10809), 1, anon_sym_LBRACE, - STATE(7601), 1, - sym_declaration_list, - STATE(7211), 9, + STATE(2095), 1, + sym_switch_body, + STATE(7140), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -766825,7 +763368,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [310077] = 12, + [307159] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -766846,10 +763389,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(3245), 2, - anon_sym_while, - anon_sym_else, - STATE(7212), 9, + ACTIONS(7912), 1, + anon_sym_DOT, + ACTIONS(10895), 1, + anon_sym_SEMI, + STATE(7141), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -766859,7 +763403,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [310123] = 13, + [307207] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -766880,11 +763424,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10917), 1, - anon_sym_LBRACE, - STATE(3304), 1, - sym__switch_expression_body, - STATE(7213), 9, + ACTIONS(10423), 2, + anon_sym_COMMA, + anon_sym_GT, + STATE(7142), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -766894,7 +763437,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [310171] = 13, + [307253] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -766915,11 +763458,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10833), 1, - anon_sym_LBRACE, - STATE(7086), 1, - sym_switch_body, - STATE(7214), 9, + ACTIONS(7912), 1, + anon_sym_DOT, + ACTIONS(10897), 1, + anon_sym_SEMI, + STATE(7143), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -766929,7 +763472,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [310219] = 13, + [307301] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -766950,11 +763493,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(5274), 1, + ACTIONS(1395), 1, anon_sym_LBRACE, - STATE(1943), 1, - sym_block, - STATE(7215), 9, + STATE(4653), 1, + sym_initializer_expression, + STATE(7144), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -766964,7 +763507,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [310267] = 13, + [307349] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -766985,11 +763528,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(1313), 1, - anon_sym_LBRACE, - STATE(3452), 1, - sym_initializer_expression, - STATE(7216), 9, + ACTIONS(10899), 2, + anon_sym_COMMA, + anon_sym_GT, + STATE(7145), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -766999,7 +763541,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [310315] = 13, + [307395] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -767020,11 +763562,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8916), 1, - anon_sym_LPAREN, - STATE(6294), 1, - sym_parameter_list, - STATE(7217), 9, + ACTIONS(10901), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + STATE(7146), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -767034,7 +763575,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [310363] = 13, + [307441] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -767055,11 +763596,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(1247), 1, + ACTIONS(10851), 1, anon_sym_LBRACE, - STATE(3051), 1, - sym_initializer_expression, - STATE(7218), 9, + STATE(1929), 1, + sym_switch_body, + STATE(7147), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -767069,7 +763610,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [310411] = 13, + [307489] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -767090,11 +763631,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(1313), 1, + ACTIONS(10903), 1, anon_sym_LBRACE, - STATE(3464), 1, - sym_initializer_expression, - STATE(7219), 9, + STATE(3438), 1, + sym__switch_expression_body, + STATE(7148), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -767104,7 +763645,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [310459] = 13, + [307537] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -767125,11 +763666,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10919), 1, + ACTIONS(10905), 1, anon_sym_LBRACE, - STATE(4772), 1, + STATE(3080), 1, sym__switch_expression_body, - STATE(7220), 9, + STATE(7149), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -767139,7 +763680,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [310507] = 12, + [307585] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -767160,10 +763701,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(3147), 2, - anon_sym_while, - anon_sym_else, - STATE(7221), 9, + ACTIONS(8892), 1, + anon_sym_LPAREN, + STATE(6410), 1, + sym_parameter_list, + STATE(7150), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -767173,7 +763715,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [310553] = 13, + [307633] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -767194,11 +763736,45 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10811), 1, + ACTIONS(10458), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + STATE(7151), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + [307679] = 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(10907), 1, anon_sym_LBRACE, - STATE(2112), 1, - sym_switch_body, - STATE(7222), 9, + STATE(4601), 1, + sym__with_body, + STATE(7152), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -767208,7 +763784,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [310601] = 13, + [307727] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -767229,11 +763805,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10921), 1, + ACTIONS(1245), 1, anon_sym_LBRACE, - STATE(3081), 1, - sym__switch_expression_body, - STATE(7223), 9, + STATE(2991), 1, + sym_initializer_expression, + STATE(7153), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -767243,7 +763819,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [310649] = 13, + [307775] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -767264,11 +763840,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(3667), 1, - anon_sym_EQ_GT, - ACTIONS(10923), 1, - anon_sym_in, - STATE(7224), 9, + ACTIONS(10237), 1, + anon_sym_COMMA, + STATE(6867), 1, + aux_sym_argument_list_repeat1, + STATE(7154), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -767278,7 +763854,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [310697] = 13, + [307823] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -767299,11 +763875,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10925), 1, - anon_sym_LBRACE, - STATE(3078), 1, - sym__with_body, - STATE(7225), 9, + ACTIONS(10909), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + STATE(7155), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -767313,7 +763888,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [310745] = 13, + [307869] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -767334,11 +763909,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10927), 1, - anon_sym_LBRACE, - STATE(2011), 1, - sym_switch_body, - STATE(7226), 9, + ACTIONS(3963), 1, + anon_sym_GT, + ACTIONS(9573), 1, + anon_sym_COMMA, + STATE(7156), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -767348,7 +763923,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [310793] = 12, + [307917] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -767369,10 +763944,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10929), 2, + ACTIONS(10911), 2, anon_sym_COMMA, anon_sym_RPAREN, - STATE(7227), 9, + STATE(7157), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -767382,7 +763957,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [310839] = 13, + [307963] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -767403,11 +763978,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10931), 1, - anon_sym_LBRACK, - ACTIONS(10933), 1, - anon_sym_LT, - STATE(7228), 9, + ACTIONS(3279), 2, + anon_sym_while, + anon_sym_else, + STATE(7158), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -767417,7 +763991,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [310887] = 13, + [308009] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -767438,11 +764012,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9335), 1, + ACTIONS(10913), 1, anon_sym_LBRACE, - STATE(7459), 1, - sym_declaration_list, - STATE(7229), 9, + STATE(3453), 1, + sym__with_body, + STATE(7159), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -767452,7 +764026,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [310935] = 12, + [308057] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -767473,10 +764047,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10935), 2, - anon_sym_COMMA, - anon_sym_GT, - STATE(7230), 9, + ACTIONS(10915), 2, + anon_sym_SEMI, + anon_sym_LBRACE, + STATE(7160), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -767486,7 +764060,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [310981] = 12, + [308103] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -767507,10 +764081,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(3277), 2, - anon_sym_while, - anon_sym_else, - STATE(7231), 9, + ACTIONS(10833), 1, + anon_sym_LPAREN, + STATE(95), 1, + sym__for_statement_conditions, + STATE(7161), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -767520,32 +764095,31 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [311027] = 13, - ACTIONS(4892), 1, - aux_sym_preproc_if_token2, - ACTIONS(9097), 1, + [308151] = 12, + ACTIONS(3), 1, aux_sym_preproc_region_token1, - ACTIONS(9099), 1, + ACTIONS(5), 1, aux_sym_preproc_endregion_token1, - ACTIONS(9101), 1, + ACTIONS(7), 1, aux_sym_preproc_line_token1, - ACTIONS(9103), 1, + ACTIONS(9), 1, aux_sym_preproc_pragma_token1, - ACTIONS(9105), 1, + ACTIONS(11), 1, aux_sym_preproc_nullable_token1, - ACTIONS(9107), 1, + ACTIONS(13), 1, aux_sym_preproc_error_token1, - ACTIONS(9109), 1, + ACTIONS(15), 1, aux_sym_preproc_warning_token1, - ACTIONS(9111), 1, + ACTIONS(17), 1, aux_sym_preproc_define_token1, - ACTIONS(9113), 1, + ACTIONS(19), 1, aux_sym_preproc_undef_token1, - ACTIONS(9115), 1, + ACTIONS(21), 1, sym_comment, - ACTIONS(10937), 1, - sym_string_literal_encoding, - STATE(7232), 9, + ACTIONS(10917), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + STATE(7162), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -767555,7 +764129,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [311075] = 13, + [308197] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -767576,11 +764150,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10939), 1, + ACTIONS(5573), 1, anon_sym_LBRACE, - STATE(4809), 1, - sym__with_body, - STATE(7233), 9, + STATE(7176), 1, + sym_block, + STATE(7163), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -767590,7 +764164,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [311123] = 12, + [308245] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -767611,10 +764185,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10307), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - STATE(7234), 9, + ACTIONS(1245), 1, + anon_sym_LBRACE, + STATE(3002), 1, + sym_initializer_expression, + STATE(7164), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -767624,7 +764199,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [311169] = 13, + [308293] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -767645,11 +764220,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10321), 1, - anon_sym_COMMA, - STATE(6814), 1, - aux_sym_positional_pattern_clause_repeat1, - STATE(7235), 9, + ACTIONS(10919), 1, + anon_sym_LBRACK, + STATE(3156), 1, + sym_array_rank_specifier, + STATE(7165), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -767659,7 +764234,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [311217] = 13, + [308341] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -767680,11 +764255,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10941), 1, - anon_sym_LBRACE, - STATE(3700), 1, - sym__with_body, - STATE(7236), 9, + ACTIONS(10171), 1, + anon_sym_COMMA, + STATE(6737), 1, + aux_sym_tuple_type_repeat1, + STATE(7166), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -767694,7 +764269,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [311265] = 13, + [308389] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -767715,11 +764290,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10943), 1, - anon_sym_LBRACE, - STATE(3315), 1, - sym__with_body, - STATE(7237), 9, + ACTIONS(8892), 1, + anon_sym_LPAREN, + STATE(7064), 1, + sym_parameter_list, + STATE(7167), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -767729,7 +764304,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [311313] = 13, + [308437] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -767750,11 +764325,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(5617), 1, - anon_sym_LBRACE, - STATE(3116), 1, - sym_block, - STATE(7238), 9, + ACTIONS(10921), 2, + anon_sym_SEMI, + anon_sym_where, + STATE(7168), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -767764,7 +764338,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [311361] = 13, + [308483] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -767785,11 +764359,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8142), 1, - anon_sym_DOT, - ACTIONS(10945), 1, - anon_sym_SEMI, - STATE(7239), 9, + ACTIONS(3303), 2, + anon_sym_while, + anon_sym_else, + STATE(7169), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -767799,7 +764372,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [311409] = 13, + [308529] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -767820,11 +764393,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9848), 1, - anon_sym_LBRACE, - STATE(3895), 1, - sym_block, - STATE(7240), 9, + ACTIONS(3215), 2, + anon_sym_while, + anon_sym_else, + STATE(7170), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -767834,7 +764406,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [311457] = 13, + [308575] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -767855,11 +764427,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8916), 1, - anon_sym_LPAREN, - STATE(6616), 1, - sym_parameter_list, - STATE(7241), 9, + ACTIONS(3251), 2, + anon_sym_while, + anon_sym_else, + STATE(7171), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -767869,7 +764440,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [311505] = 13, + [308621] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -767890,11 +764461,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8142), 1, - anon_sym_DOT, - ACTIONS(10947), 1, - anon_sym_SEMI, - STATE(7242), 9, + ACTIONS(3187), 2, + anon_sym_while, + anon_sym_else, + STATE(7172), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -767904,7 +764474,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [311553] = 13, + [308667] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -767925,11 +764495,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10949), 1, - anon_sym_LBRACK, - STATE(2777), 1, - sym_array_rank_specifier, - STATE(7243), 9, + ACTIONS(3101), 2, + anon_sym_while, + anon_sym_else, + STATE(7173), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -767939,7 +764508,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [311601] = 13, + [308713] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -767960,11 +764529,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8916), 1, - anon_sym_LPAREN, - STATE(6433), 1, - sym_parameter_list, - STATE(7244), 9, + ACTIONS(10923), 2, + anon_sym_SEMI, + anon_sym_where, + STATE(7174), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -767974,7 +764542,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [311649] = 13, + [308759] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -767995,11 +764563,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8916), 1, - anon_sym_LPAREN, - STATE(6404), 1, - sym_parameter_list, - STATE(7245), 9, + ACTIONS(3239), 2, + anon_sym_while, + anon_sym_else, + STATE(7175), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -768009,7 +764576,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [311697] = 12, + [308805] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -768030,10 +764597,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10951), 2, - anon_sym_LBRACE, - anon_sym_EQ_GT, - STATE(7246), 9, + ACTIONS(3183), 2, + anon_sym_while, + anon_sym_else, + STATE(7176), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -768043,7 +764610,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [311743] = 13, + [308851] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -768064,11 +764631,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10160), 1, + ACTIONS(10925), 2, anon_sym_COMMA, - STATE(6781), 1, - aux_sym_argument_list_repeat1, - STATE(7247), 9, + anon_sym_RPAREN, + STATE(7177), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -768078,7 +764644,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [311791] = 13, + [308897] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -768099,11 +764665,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8916), 1, - anon_sym_LPAREN, - STATE(6458), 1, - sym_parameter_list, - STATE(7248), 9, + ACTIONS(9844), 1, + anon_sym_LBRACE, + STATE(3811), 1, + sym_block, + STATE(7178), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -768113,7 +764679,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [311839] = 12, + [308945] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -768134,10 +764700,11 @@ 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, - STATE(7249), 9, + ACTIONS(5234), 1, + anon_sym_LBRACE, + STATE(1921), 1, + sym_block, + STATE(7179), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -768147,7 +764714,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [311885] = 13, + [308993] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -768168,11 +764735,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8142), 1, - anon_sym_DOT, - ACTIONS(10953), 1, - anon_sym_SEMI, - STATE(7250), 9, + ACTIONS(8892), 1, + anon_sym_LPAREN, + STATE(6666), 1, + sym_parameter_list, + STATE(7180), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -768182,7 +764749,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [311933] = 13, + [309041] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -768203,11 +764770,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9807), 1, + ACTIONS(1481), 1, anon_sym_LBRACE, - STATE(3503), 1, - sym_block, - STATE(7251), 9, + STATE(3064), 1, + sym_initializer_expression, + STATE(7181), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -768217,7 +764784,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [311981] = 12, + [309089] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -768238,10 +764805,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(3207), 2, + ACTIONS(3191), 2, anon_sym_while, anon_sym_else, - STATE(7252), 9, + STATE(7182), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -768251,7 +764818,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [312027] = 12, + [309135] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -768272,10 +764839,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10732), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - STATE(7253), 9, + ACTIONS(10927), 1, + anon_sym_on, + STATE(6294), 1, + sym__join_body, + STATE(7183), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -768285,7 +764853,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [312073] = 13, + [309183] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -768306,11 +764874,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8916), 1, - anon_sym_LPAREN, - STATE(7169), 1, - sym_parameter_list, - STATE(7254), 9, + ACTIONS(3199), 2, + anon_sym_while, + anon_sym_else, + STATE(7184), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -768320,7 +764887,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [312121] = 13, + [309229] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -768341,11 +764908,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10170), 1, - anon_sym_COMMA, - STATE(6786), 1, - aux_sym_tuple_type_repeat1, - STATE(7255), 9, + ACTIONS(5573), 1, + anon_sym_LBRACE, + STATE(3097), 1, + sym_block, + STATE(7185), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -768355,7 +764922,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [312169] = 13, + [309277] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -768376,11 +764943,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8916), 1, - anon_sym_LPAREN, - STATE(6289), 1, - sym_parameter_list, - STATE(7256), 9, + ACTIONS(10929), 2, + anon_sym_SEMI, + anon_sym_LBRACE, + STATE(7186), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -768390,7 +764956,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [312217] = 13, + [309323] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -768411,11 +764977,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(5617), 1, - anon_sym_LBRACE, - STATE(7141), 1, - sym_block, - STATE(7257), 9, + ACTIONS(3195), 2, + anon_sym_while, + anon_sym_else, + STATE(7187), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -768425,7 +764990,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [312265] = 12, + [309369] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -768446,10 +765011,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(3289), 2, - anon_sym_while, - anon_sym_else, - STATE(7258), 9, + ACTIONS(1661), 1, + anon_sym_LBRACE, + STATE(3859), 1, + sym_initializer_expression, + STATE(7188), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -768459,7 +765025,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [312311] = 13, + [309417] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -768480,11 +765046,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10955), 1, + ACTIONS(6601), 1, anon_sym_LBRACK, - STATE(3172), 1, - sym_array_rank_specifier, - STATE(7259), 9, + ACTIONS(6603), 1, + anon_sym_STAR, + STATE(7189), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -768494,7 +765060,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [312359] = 13, + [309465] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -768515,11 +765081,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8916), 1, - anon_sym_LPAREN, - STATE(6308), 1, - sym_parameter_list, - STATE(7260), 9, + ACTIONS(5234), 1, + anon_sym_LBRACE, + STATE(2030), 1, + sym_block, + STATE(7190), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -768529,7 +765095,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [312407] = 13, + [309513] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -768550,11 +765116,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(1313), 1, - anon_sym_LBRACE, - STATE(3505), 1, - sym_initializer_expression, - STATE(7261), 9, + ACTIONS(3223), 2, + anon_sym_while, + anon_sym_else, + STATE(7191), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -768564,7 +765129,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [312455] = 13, + [309559] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -768585,11 +765150,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10801), 1, - anon_sym_LPAREN, - STATE(96), 1, - sym__for_statement_conditions, - STATE(7262), 9, + ACTIONS(9864), 1, + anon_sym_LBRACE, + STATE(3011), 1, + sym_block, + STATE(7192), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -768599,7 +765164,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [312503] = 12, + [309607] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -768620,10 +765185,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10957), 2, + ACTIONS(7912), 1, + anon_sym_DOT, + ACTIONS(10931), 1, anon_sym_SEMI, - anon_sym_where, - STATE(7263), 9, + STATE(7193), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -768633,7 +765199,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [312549] = 13, + [309655] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -768654,11 +765220,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(5771), 1, - anon_sym_LBRACE, - STATE(2015), 1, - sym_block, - STATE(7264), 9, + ACTIONS(10933), 2, + anon_sym_SEMI, + anon_sym_where, + STATE(7194), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -768668,7 +765233,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [312597] = 13, + [309701] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -768689,11 +765254,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(1247), 1, - anon_sym_LBRACE, - STATE(2973), 1, - sym_initializer_expression, - STATE(7265), 9, + ACTIONS(10935), 1, + anon_sym_LPAREN, + STATE(7093), 1, + sym_tuple_expression, + STATE(7195), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -768703,7 +765268,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [312645] = 12, + [309749] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -768724,10 +765289,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4018), 2, - anon_sym_COMMA, - anon_sym_GT, - STATE(7266), 9, + ACTIONS(8892), 1, + anon_sym_LPAREN, + STATE(6276), 1, + sym_parameter_list, + STATE(7196), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -768737,32 +765303,31 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [312691] = 13, - ACTIONS(3), 1, + [309797] = 12, + ACTIONS(9077), 1, aux_sym_preproc_region_token1, - ACTIONS(5), 1, + ACTIONS(9079), 1, aux_sym_preproc_endregion_token1, - ACTIONS(7), 1, + ACTIONS(9081), 1, aux_sym_preproc_line_token1, - ACTIONS(9), 1, + ACTIONS(9083), 1, aux_sym_preproc_pragma_token1, - ACTIONS(11), 1, + ACTIONS(9085), 1, aux_sym_preproc_nullable_token1, - ACTIONS(13), 1, + ACTIONS(9087), 1, aux_sym_preproc_error_token1, - ACTIONS(15), 1, + ACTIONS(9089), 1, aux_sym_preproc_warning_token1, - ACTIONS(17), 1, + ACTIONS(9091), 1, aux_sym_preproc_define_token1, - ACTIONS(19), 1, + ACTIONS(9093), 1, aux_sym_preproc_undef_token1, - ACTIONS(21), 1, + ACTIONS(9095), 1, sym_comment, - ACTIONS(10959), 1, - anon_sym_LBRACK, - STATE(2989), 1, - sym_array_rank_specifier, - STATE(7267), 9, + ACTIONS(10937), 2, + sym_character_literal_content, + sym_escape_sequence, + STATE(7197), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -768772,7 +765337,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [312739] = 12, + [309843] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -768793,10 +765358,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10769), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - STATE(7268), 9, + ACTIONS(1245), 1, + anon_sym_LBRACE, + STATE(3013), 1, + sym_initializer_expression, + STATE(7198), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -768806,7 +765372,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [312785] = 13, + [309891] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -768827,11 +765393,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(1633), 1, + ACTIONS(10869), 1, anon_sym_LBRACE, - STATE(3735), 1, - sym_initializer_expression, - STATE(7269), 9, + STATE(7231), 1, + sym_switch_body, + STATE(7199), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -768841,7 +765407,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [312833] = 12, + [309939] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -768862,10 +765428,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(3257), 2, - anon_sym_while, - anon_sym_else, - STATE(7270), 9, + ACTIONS(10939), 2, + anon_sym_disable, + anon_sym_restore, + STATE(7200), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -768875,7 +765441,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [312879] = 13, + [309985] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -768896,11 +765462,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8916), 1, - anon_sym_LPAREN, - STATE(6406), 1, - sym_parameter_list, - STATE(7271), 9, + ACTIONS(10237), 1, + anon_sym_COMMA, + STATE(6978), 1, + aux_sym_argument_list_repeat1, + STATE(7201), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -768910,7 +765476,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [312927] = 13, + [310033] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -768931,11 +765497,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8916), 1, - anon_sym_LPAREN, - STATE(6409), 1, - sym_parameter_list, - STATE(7272), 9, + ACTIONS(10171), 1, + anon_sym_COMMA, + STATE(6770), 1, + aux_sym_tuple_type_repeat1, + STATE(7202), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -768945,7 +765511,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [312975] = 13, + [310081] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -768966,11 +765532,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10160), 1, - anon_sym_COMMA, - STATE(6817), 1, - aux_sym_argument_list_repeat1, - STATE(7273), 9, + ACTIONS(8892), 1, + anon_sym_LPAREN, + STATE(6390), 1, + sym_parameter_list, + STATE(7203), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -768980,7 +765546,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [313023] = 12, + [310129] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -769001,10 +765567,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(3233), 2, - anon_sym_while, - anon_sym_else, - STATE(7274), 9, + ACTIONS(145), 1, + anon_sym_DQUOTE, + STATE(7073), 1, + sym_string_literal, + STATE(7204), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -769014,7 +765581,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [313069] = 13, + [310177] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -769035,11 +765602,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10961), 1, - anon_sym_LPAREN, - STATE(7222), 1, - sym_tuple_expression, - STATE(7275), 9, + ACTIONS(3259), 2, + anon_sym_while, + anon_sym_else, + STATE(7205), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -769049,7 +765615,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [313117] = 13, + [310223] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -769070,11 +765636,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(1397), 1, - anon_sym_LBRACE, - STATE(4833), 1, - sym_initializer_expression, - STATE(7276), 9, + ACTIONS(10941), 1, + anon_sym_LBRACK, + ACTIONS(10943), 1, + anon_sym_LT, + STATE(7206), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -769084,7 +765650,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [313165] = 13, + [310271] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -769105,11 +765671,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10817), 1, - anon_sym_LBRACK, - STATE(6613), 1, - sym_bracketed_parameter_list, - STATE(7277), 9, + ACTIONS(8892), 1, + anon_sym_LPAREN, + STATE(6284), 1, + sym_parameter_list, + STATE(7207), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -769119,7 +765685,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [313213] = 13, + [310319] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -769140,45 +765706,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(1487), 1, - anon_sym_LBRACE, - STATE(3073), 1, - sym_initializer_expression, - STATE(7278), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - [313261] = 12, - ACTIONS(9097), 1, - aux_sym_preproc_region_token1, - ACTIONS(9099), 1, - aux_sym_preproc_endregion_token1, - ACTIONS(9101), 1, - aux_sym_preproc_line_token1, - ACTIONS(9103), 1, - aux_sym_preproc_pragma_token1, - ACTIONS(9105), 1, - aux_sym_preproc_nullable_token1, - ACTIONS(9107), 1, - aux_sym_preproc_error_token1, - ACTIONS(9109), 1, - aux_sym_preproc_warning_token1, - ACTIONS(9111), 1, - aux_sym_preproc_define_token1, - ACTIONS(9113), 1, - aux_sym_preproc_undef_token1, - ACTIONS(9115), 1, - sym_comment, - ACTIONS(10963), 2, - sym_character_literal_content, - sym_escape_sequence, - STATE(7279), 9, + ACTIONS(10945), 1, + anon_sym_LBRACK, + STATE(3217), 1, + sym_array_rank_specifier, + STATE(7208), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -769188,7 +765720,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [313307] = 13, + [310367] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -769209,11 +765741,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9775), 1, - anon_sym_LBRACE, - STATE(4620), 1, - sym_block, - STATE(7280), 9, + ACTIONS(3159), 2, + anon_sym_while, + anon_sym_else, + STATE(7209), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -769223,7 +765754,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [313355] = 13, + [310413] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -769244,11 +765775,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(5264), 1, - anon_sym_LPAREN, - STATE(6990), 1, - sym_argument_list, - STATE(7281), 9, + ACTIONS(5255), 1, + anon_sym_LBRACE, + STATE(1913), 1, + sym_block, + STATE(7210), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -769258,7 +765789,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [313403] = 12, + [310461] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -769279,10 +765810,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(3273), 2, + ACTIONS(3167), 2, anon_sym_while, anon_sym_else, - STATE(7282), 9, + STATE(7211), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -769292,7 +765823,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [313449] = 13, + [310507] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -769313,11 +765844,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10170), 1, - anon_sym_COMMA, - STATE(6821), 1, - aux_sym_tuple_type_repeat1, - STATE(7283), 9, + ACTIONS(1311), 1, + anon_sym_LBRACE, + STATE(3473), 1, + sym_initializer_expression, + STATE(7212), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -769327,7 +765858,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [313497] = 13, + [310555] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -769348,11 +765879,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8916), 1, + ACTIONS(8892), 1, anon_sym_LPAREN, - STATE(6394), 1, + STATE(7174), 1, sym_parameter_list, - STATE(7284), 9, + STATE(7213), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -769362,7 +765893,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [313545] = 13, + [310603] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -769383,45 +765914,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10927), 1, - anon_sym_LBRACE, - STATE(2041), 1, - sym_switch_body, - STATE(7285), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - [313593] = 12, - ACTIONS(9097), 1, - aux_sym_preproc_region_token1, - ACTIONS(9099), 1, - aux_sym_preproc_endregion_token1, - ACTIONS(9101), 1, - aux_sym_preproc_line_token1, - ACTIONS(9103), 1, - aux_sym_preproc_pragma_token1, - ACTIONS(9105), 1, - aux_sym_preproc_nullable_token1, - ACTIONS(9107), 1, - aux_sym_preproc_error_token1, - ACTIONS(9109), 1, - aux_sym_preproc_warning_token1, - ACTIONS(9111), 1, - aux_sym_preproc_define_token1, - ACTIONS(9113), 1, - aux_sym_preproc_undef_token1, - ACTIONS(9115), 1, - sym_comment, - ACTIONS(10965), 2, - sym_character_literal_content, - sym_escape_sequence, - STATE(7286), 9, + ACTIONS(10833), 1, + anon_sym_LPAREN, + STATE(96), 1, + sym__for_statement_conditions, + STATE(7214), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -769431,7 +765928,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [313639] = 13, + [310651] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -769452,11 +765949,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8916), 1, + ACTIONS(8892), 1, anon_sym_LPAREN, - STATE(6416), 1, + STATE(6392), 1, sym_parameter_list, - STATE(7287), 9, + STATE(7215), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -769466,7 +765963,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [313687] = 13, + [310699] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -769487,11 +765984,115 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8916), 1, + ACTIONS(5859), 1, + anon_sym_LBRACE, + STATE(2035), 1, + sym_block, + STATE(7216), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + [310747] = 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(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, + [310793] = 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(1311), 1, + anon_sym_LBRACE, + STATE(3486), 1, + sym_initializer_expression, + STATE(7218), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + [310841] = 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(8892), 1, anon_sym_LPAREN, - STATE(6402), 1, + STATE(6396), 1, sym_parameter_list, - STATE(7288), 9, + STATE(7219), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -769501,7 +766102,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [313735] = 12, + [310889] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -769522,10 +766123,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10967), 2, - anon_sym_LBRACE, - anon_sym_EQ_GT, - STATE(7289), 9, + ACTIONS(10697), 1, + anon_sym_DQUOTE, + STATE(7560), 1, + sym_string_literal, + STATE(7220), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -769535,7 +766137,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [313781] = 12, + [310937] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -769556,9 +766158,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9908), 1, - anon_sym_STAR, - STATE(7290), 9, + ACTIONS(3263), 2, + anon_sym_while, + anon_sym_else, + STATE(7221), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -769568,7 +766171,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [313826] = 12, + [310983] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -769589,9 +766192,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10969), 1, - aux_sym_preproc_if_token3, - STATE(7291), 9, + ACTIONS(10949), 1, + anon_sym_warning, + ACTIONS(10951), 1, + anon_sym_checksum, + STATE(7222), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -769601,7 +766206,41 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [313871] = 12, + [311031] = 12, + ACTIONS(9077), 1, + aux_sym_preproc_region_token1, + ACTIONS(9079), 1, + aux_sym_preproc_endregion_token1, + ACTIONS(9081), 1, + aux_sym_preproc_line_token1, + ACTIONS(9083), 1, + aux_sym_preproc_pragma_token1, + ACTIONS(9085), 1, + aux_sym_preproc_nullable_token1, + ACTIONS(9087), 1, + aux_sym_preproc_error_token1, + ACTIONS(9089), 1, + aux_sym_preproc_warning_token1, + ACTIONS(9091), 1, + aux_sym_preproc_define_token1, + ACTIONS(9093), 1, + aux_sym_preproc_undef_token1, + ACTIONS(9095), 1, + sym_comment, + ACTIONS(10953), 2, + sym_character_literal_content, + sym_escape_sequence, + STATE(7223), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + [311077] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -769622,9 +766261,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10971), 1, - sym_integer_literal, - STATE(7292), 9, + ACTIONS(8892), 1, + anon_sym_LPAREN, + STATE(6395), 1, + sym_parameter_list, + STATE(7224), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -769634,7 +766275,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [313916] = 12, + [311125] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -769655,9 +766296,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10603), 1, - anon_sym_RBRACE, - STATE(7293), 9, + ACTIONS(10955), 2, + anon_sym_LBRACE, + anon_sym_EQ_GT, + STATE(7225), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -769667,7 +766309,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [313961] = 12, + [311171] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -769688,9 +766330,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10973), 1, - anon_sym_RPAREN, - STATE(7294), 9, + ACTIONS(3651), 1, + anon_sym_EQ_GT, + ACTIONS(10957), 1, + anon_sym_in, + STATE(7226), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -769700,7 +766344,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [314006] = 12, + [311219] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -769721,9 +766365,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10975), 1, - anon_sym_RPAREN, - STATE(7295), 9, + ACTIONS(5859), 1, + anon_sym_LBRACE, + STATE(2130), 1, + sym_block, + STATE(7227), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -769733,7 +766379,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [314051] = 12, + [311267] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -769754,9 +766400,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10144), 1, - anon_sym_RBRACE, - STATE(7296), 9, + ACTIONS(10959), 2, + anon_sym_this, + anon_sym_base, + STATE(7228), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -769766,7 +766413,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [314096] = 12, + [311313] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -769787,9 +766434,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10977), 1, - anon_sym_COMMA, - STATE(7297), 9, + ACTIONS(3267), 2, + anon_sym_while, + anon_sym_else, + STATE(7229), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -769799,7 +766447,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [314141] = 12, + [311359] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -769820,9 +766468,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10979), 1, - anon_sym_RPAREN, - STATE(7298), 9, + ACTIONS(3271), 2, + anon_sym_while, + anon_sym_else, + STATE(7230), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -769832,7 +766481,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [314186] = 12, + [311405] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -769853,9 +766502,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10981), 1, - aux_sym_preproc_if_token3, - STATE(7299), 9, + ACTIONS(3143), 2, + anon_sym_while, + anon_sym_else, + STATE(7231), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -769865,7 +766515,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [314231] = 12, + [311451] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -769886,9 +766536,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10233), 1, - anon_sym_RBRACE, - STATE(7300), 9, + ACTIONS(3283), 2, + anon_sym_while, + anon_sym_else, + STATE(7232), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -769898,7 +766549,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [314276] = 12, + [311497] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -769919,9 +766570,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10983), 1, - sym__optional_semi, - STATE(7301), 9, + ACTIONS(10961), 1, + anon_sym_LBRACK, + STATE(4325), 1, + sym_array_rank_specifier, + STATE(7233), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -769931,7 +766584,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [314321] = 12, + [311545] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -769952,9 +766605,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10985), 1, - anon_sym_LPAREN, - STATE(7302), 9, + ACTIONS(9936), 1, + anon_sym_LBRACE, + STATE(3253), 1, + sym_block, + STATE(7234), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -769964,7 +766619,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [314366] = 12, + [311593] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -769985,9 +766640,46 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10987), 1, + ACTIONS(8892), 1, anon_sym_LPAREN, - STATE(7303), 9, + STATE(6282), 1, + sym_parameter_list, + STATE(7235), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + [311641] = 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(10963), 1, + anon_sym_LBRACK, + STATE(3015), 1, + sym_array_rank_specifier, + STATE(7236), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -769997,7 +766689,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [314411] = 12, + [311689] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -770018,9 +766710,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10989), 1, - anon_sym_LPAREN, - STATE(7304), 9, + ACTIONS(3291), 2, + anon_sym_while, + anon_sym_else, + STATE(7237), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -770030,7 +766723,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [314456] = 12, + [311735] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -770051,9 +766744,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10991), 1, - anon_sym_SEMI, - STATE(7305), 9, + ACTIONS(1481), 1, + anon_sym_LBRACE, + STATE(3103), 1, + sym_initializer_expression, + STATE(7238), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -770063,30 +766758,31 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [314501] = 12, - ACTIONS(3), 1, + [311783] = 12, + ACTIONS(9077), 1, aux_sym_preproc_region_token1, - ACTIONS(5), 1, + ACTIONS(9079), 1, aux_sym_preproc_endregion_token1, - ACTIONS(7), 1, + ACTIONS(9081), 1, aux_sym_preproc_line_token1, - ACTIONS(9), 1, + ACTIONS(9083), 1, aux_sym_preproc_pragma_token1, - ACTIONS(11), 1, + ACTIONS(9085), 1, aux_sym_preproc_nullable_token1, - ACTIONS(13), 1, + ACTIONS(9087), 1, aux_sym_preproc_error_token1, - ACTIONS(15), 1, + ACTIONS(9089), 1, aux_sym_preproc_warning_token1, - ACTIONS(17), 1, + ACTIONS(9091), 1, aux_sym_preproc_define_token1, - ACTIONS(19), 1, + ACTIONS(9093), 1, aux_sym_preproc_undef_token1, - ACTIONS(21), 1, + ACTIONS(9095), 1, sym_comment, - ACTIONS(10993), 1, - anon_sym_LPAREN, - STATE(7306), 9, + ACTIONS(10965), 2, + sym_character_literal_content, + sym_escape_sequence, + STATE(7239), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -770096,7 +766792,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [314546] = 12, + [311829] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -770117,9 +766813,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10995), 1, + ACTIONS(8892), 1, anon_sym_LPAREN, - STATE(7307), 9, + STATE(6386), 1, + sym_parameter_list, + STATE(7240), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -770129,7 +766827,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [314591] = 12, + [311877] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -770150,9 +766848,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10997), 1, - anon_sym_LPAREN, - STATE(7308), 9, + ACTIONS(10875), 1, + anon_sym_LBRACE, + STATE(2034), 1, + sym_switch_body, + STATE(7241), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -770162,7 +766862,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [314636] = 12, + [311925] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -770183,9 +766883,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10999), 1, - anon_sym_LPAREN, - STATE(7309), 9, + ACTIONS(3315), 1, + anon_sym_while, + ACTIONS(10967), 1, + anon_sym_else, + STATE(7242), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -770195,7 +766897,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [314681] = 12, + [311973] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -770216,9 +766918,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11001), 1, - anon_sym_RPAREN, - STATE(7310), 9, + ACTIONS(8892), 1, + anon_sym_LPAREN, + STATE(6403), 1, + sym_parameter_list, + STATE(7243), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -770228,7 +766932,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [314726] = 12, + [312021] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -770249,9 +766953,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11003), 1, - anon_sym_EQ_GT, - STATE(7311), 9, + ACTIONS(10237), 1, + anon_sym_COMMA, + STATE(6900), 1, + aux_sym_argument_list_repeat1, + STATE(7244), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -770261,7 +766967,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [314771] = 12, + [312069] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -770282,9 +766988,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11005), 1, - anon_sym_COLON, - STATE(7312), 9, + ACTIONS(10357), 1, + anon_sym_COMMA, + STATE(6899), 1, + aux_sym_positional_pattern_clause_repeat1, + STATE(7245), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -770294,7 +767002,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [314816] = 12, + [312117] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -770315,9 +767023,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11007), 1, - anon_sym_EQ, - STATE(7313), 9, + ACTIONS(10171), 1, + anon_sym_COMMA, + STATE(6904), 1, + aux_sym_tuple_type_repeat1, + STATE(7246), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -770327,30 +767037,32 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [314861] = 12, - ACTIONS(3), 1, + [312165] = 13, + ACTIONS(4874), 1, + aux_sym_preproc_if_token2, + ACTIONS(9077), 1, aux_sym_preproc_region_token1, - ACTIONS(5), 1, + ACTIONS(9079), 1, aux_sym_preproc_endregion_token1, - ACTIONS(7), 1, + ACTIONS(9081), 1, aux_sym_preproc_line_token1, - ACTIONS(9), 1, + ACTIONS(9083), 1, aux_sym_preproc_pragma_token1, - ACTIONS(11), 1, + ACTIONS(9085), 1, aux_sym_preproc_nullable_token1, - ACTIONS(13), 1, + ACTIONS(9087), 1, aux_sym_preproc_error_token1, - ACTIONS(15), 1, + ACTIONS(9089), 1, aux_sym_preproc_warning_token1, - ACTIONS(17), 1, + ACTIONS(9091), 1, aux_sym_preproc_define_token1, - ACTIONS(19), 1, + ACTIONS(9093), 1, aux_sym_preproc_undef_token1, - ACTIONS(21), 1, + ACTIONS(9095), 1, sym_comment, - ACTIONS(11009), 1, - anon_sym_LPAREN, - STATE(7314), 9, + ACTIONS(10969), 1, + sym_string_literal_encoding, + STATE(7247), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -770360,7 +767072,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [314906] = 12, + [312213] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -770381,9 +767093,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8718), 1, - anon_sym_RPAREN, - STATE(7315), 9, + ACTIONS(10971), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + STATE(7248), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -770393,7 +767106,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [314951] = 12, + [312259] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -770414,9 +767127,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11011), 1, - anon_sym_EQ_GT, - STATE(7316), 9, + ACTIONS(10790), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + STATE(7249), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -770426,7 +767140,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [314996] = 12, + [312305] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -770447,9 +767161,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11013), 1, - aux_sym_preproc_if_token3, - STATE(7317), 9, + ACTIONS(10833), 1, + anon_sym_LPAREN, + STATE(62), 1, + sym__for_statement_conditions, + STATE(7250), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -770459,7 +767175,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [315041] = 12, + [312353] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -770480,9 +767196,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11015), 1, - anon_sym_GT, - STATE(7318), 9, + ACTIONS(10973), 1, + anon_sym_LBRACE, + STATE(3268), 1, + sym__switch_expression_body, + STATE(7251), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -770492,7 +767210,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [315086] = 12, + [312401] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -770513,9 +767231,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11017), 1, - anon_sym_RBRACE, - STATE(7319), 9, + ACTIONS(8892), 1, + anon_sym_LPAREN, + STATE(6402), 1, + sym_parameter_list, + STATE(7252), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -770525,7 +767245,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [315131] = 12, + [312449] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -770546,9 +767266,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11019), 1, + ACTIONS(10975), 2, + anon_sym_LBRACE, anon_sym_EQ_GT, - STATE(7320), 9, + STATE(7253), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -770558,30 +767279,32 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [315176] = 12, - ACTIONS(9097), 1, + [312495] = 13, + ACTIONS(3), 1, aux_sym_preproc_region_token1, - ACTIONS(9099), 1, + ACTIONS(5), 1, aux_sym_preproc_endregion_token1, - ACTIONS(9101), 1, + ACTIONS(7), 1, aux_sym_preproc_line_token1, - ACTIONS(9103), 1, + ACTIONS(9), 1, aux_sym_preproc_pragma_token1, - ACTIONS(9105), 1, + ACTIONS(11), 1, aux_sym_preproc_nullable_token1, - ACTIONS(9107), 1, + ACTIONS(13), 1, aux_sym_preproc_error_token1, - ACTIONS(9109), 1, + ACTIONS(15), 1, aux_sym_preproc_warning_token1, - ACTIONS(9111), 1, + ACTIONS(17), 1, aux_sym_preproc_define_token1, - ACTIONS(9113), 1, + ACTIONS(19), 1, aux_sym_preproc_undef_token1, - ACTIONS(9115), 1, + ACTIONS(21), 1, sym_comment, - ACTIONS(11021), 1, - aux_sym_preproc_if_token2, - STATE(7321), 9, + ACTIONS(10823), 1, + anon_sym_LBRACK, + STATE(6622), 1, + sym_bracketed_parameter_list, + STATE(7254), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -770591,30 +767314,31 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [315221] = 12, - ACTIONS(9097), 1, + [312543] = 12, + ACTIONS(3), 1, aux_sym_preproc_region_token1, - ACTIONS(9099), 1, + ACTIONS(5), 1, aux_sym_preproc_endregion_token1, - ACTIONS(9101), 1, + ACTIONS(7), 1, aux_sym_preproc_line_token1, - ACTIONS(9103), 1, + ACTIONS(9), 1, aux_sym_preproc_pragma_token1, - ACTIONS(9105), 1, + ACTIONS(11), 1, aux_sym_preproc_nullable_token1, - ACTIONS(9107), 1, + ACTIONS(13), 1, aux_sym_preproc_error_token1, - ACTIONS(9109), 1, + ACTIONS(15), 1, aux_sym_preproc_warning_token1, - ACTIONS(9111), 1, + ACTIONS(17), 1, aux_sym_preproc_define_token1, - ACTIONS(9113), 1, + ACTIONS(19), 1, aux_sym_preproc_undef_token1, - ACTIONS(9115), 1, + ACTIONS(21), 1, sym_comment, - ACTIONS(11023), 1, - aux_sym_preproc_if_token2, - STATE(7322), 9, + ACTIONS(3179), 2, + anon_sym_while, + anon_sym_else, + STATE(7255), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -770624,7 +767348,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [315266] = 12, + [312589] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -770645,9 +767369,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11025), 1, - anon_sym_EQ_GT, - STATE(7323), 9, + ACTIONS(10823), 1, + anon_sym_LBRACK, + STATE(6716), 1, + sym_bracketed_parameter_list, + STATE(7256), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -770657,7 +767383,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [315311] = 12, + [312637] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -770678,9 +767404,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11027), 1, + ACTIONS(8892), 1, anon_sym_LPAREN, - STATE(7324), 9, + STATE(6413), 1, + sym_parameter_list, + STATE(7257), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -770690,7 +767418,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [315356] = 12, + [312685] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -770711,9 +767439,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11029), 1, - anon_sym_LPAREN, - STATE(7325), 9, + ACTIONS(10977), 1, + anon_sym_LBRACE, + STATE(3278), 1, + sym__with_body, + STATE(7258), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -770723,7 +767453,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [315401] = 12, + [312733] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -770744,9 +767474,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11031), 1, - sym__optional_semi, - STATE(7326), 9, + ACTIONS(10823), 1, + anon_sym_LBRACK, + STATE(6708), 1, + sym_bracketed_parameter_list, + STATE(7259), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -770756,7 +767488,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [315446] = 12, + [312781] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -770777,9 +767509,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11033), 1, - sym__optional_semi, - STATE(7327), 9, + ACTIONS(3203), 2, + anon_sym_while, + anon_sym_else, + STATE(7260), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -770789,7 +767522,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [315491] = 12, + [312827] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -770810,9 +767543,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11035), 1, - aux_sym_preproc_if_token3, - STATE(7328), 9, + ACTIONS(10979), 2, + anon_sym_LBRACE, + anon_sym_EQ_GT, + STATE(7261), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -770822,7 +767556,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [315536] = 12, + [312873] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -770843,9 +767577,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10508), 1, - anon_sym_RBRACE, - STATE(7329), 9, + ACTIONS(1661), 1, + anon_sym_LBRACE, + STATE(3872), 1, + sym_initializer_expression, + STATE(7262), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -770855,7 +767591,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [315581] = 12, + [312921] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -770876,9 +767612,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11037), 1, - aux_sym_preproc_if_token3, - STATE(7330), 9, + ACTIONS(1395), 1, + anon_sym_LBRACE, + STATE(4609), 1, + sym_initializer_expression, + STATE(7263), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -770888,7 +767626,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [315626] = 12, + [312969] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -770909,9 +767647,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11039), 1, - anon_sym_GT, - STATE(7331), 9, + ACTIONS(5257), 1, + anon_sym_LPAREN, + STATE(6988), 1, + sym_argument_list, + STATE(7264), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -770921,7 +767661,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [315671] = 12, + [313017] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -770942,9 +767682,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11041), 1, - anon_sym_SEMI, - STATE(7332), 9, + ACTIONS(8892), 1, + anon_sym_LPAREN, + STATE(6414), 1, + sym_parameter_list, + STATE(7265), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -770954,7 +767696,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [315716] = 12, + [313065] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -770975,9 +767717,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11043), 1, - anon_sym_STAR, - STATE(7333), 9, + ACTIONS(10171), 1, + anon_sym_COMMA, + STATE(6870), 1, + aux_sym_tuple_type_repeat1, + STATE(7266), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -770987,7 +767731,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [315761] = 12, + [313113] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -771008,9 +767752,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11045), 1, - anon_sym_EQ_GT, - STATE(7334), 9, + ACTIONS(10177), 1, + anon_sym_RBRACE, + STATE(7267), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -771020,7 +767764,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [315806] = 12, + [313158] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -771041,9 +767785,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11047), 1, - sym_raw_string_end, - STATE(7335), 9, + ACTIONS(10243), 1, + anon_sym_RBRACE, + STATE(7268), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -771053,7 +767797,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [315851] = 12, + [313203] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -771074,9 +767818,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11049), 1, - sym__optional_semi, - STATE(7336), 9, + ACTIONS(10981), 1, + sym_raw_string_end, + STATE(7269), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -771086,7 +767830,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [315896] = 12, + [313248] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -771107,9 +767851,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11051), 1, - anon_sym_EQ_GT, - STATE(7337), 9, + ACTIONS(10983), 1, + sym_interpolation_close_brace, + STATE(7270), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -771119,7 +767863,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [315941] = 12, + [313293] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -771140,9 +767884,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11053), 1, - anon_sym_SEMI, - STATE(7338), 9, + ACTIONS(10985), 1, + anon_sym_SQUOTE, + STATE(7271), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -771152,30 +767896,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [315986] = 12, - ACTIONS(3), 1, + [313338] = 12, + ACTIONS(9077), 1, aux_sym_preproc_region_token1, - ACTIONS(5), 1, + ACTIONS(9079), 1, aux_sym_preproc_endregion_token1, - ACTIONS(7), 1, + ACTIONS(9081), 1, aux_sym_preproc_line_token1, - ACTIONS(9), 1, + ACTIONS(9083), 1, aux_sym_preproc_pragma_token1, - ACTIONS(11), 1, + ACTIONS(9085), 1, aux_sym_preproc_nullable_token1, - ACTIONS(13), 1, + ACTIONS(9087), 1, aux_sym_preproc_error_token1, - ACTIONS(15), 1, + ACTIONS(9089), 1, aux_sym_preproc_warning_token1, - ACTIONS(17), 1, + ACTIONS(9091), 1, aux_sym_preproc_define_token1, - ACTIONS(19), 1, + ACTIONS(9093), 1, aux_sym_preproc_undef_token1, - ACTIONS(21), 1, + ACTIONS(9095), 1, sym_comment, - ACTIONS(11055), 1, - anon_sym_SEMI, - STATE(7339), 9, + ACTIONS(10987), 1, + sym_preproc_arg, + STATE(7272), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -771185,7 +767929,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [316031] = 12, + [313383] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -771206,9 +767950,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9643), 1, - anon_sym_EQ, - STATE(7340), 9, + ACTIONS(10989), 1, + sym__optional_semi, + STATE(7273), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -771218,7 +767962,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [316076] = 12, + [313428] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -771239,9 +767983,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11057), 1, - anon_sym_EQ_GT, - STATE(7341), 9, + ACTIONS(10991), 1, + sym__optional_semi, + STATE(7274), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -771251,7 +767995,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [316121] = 12, + [313473] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -771272,9 +768016,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11059), 1, - sym_raw_string_end, - STATE(7342), 9, + ACTIONS(10993), 1, + anon_sym_SEMI, + STATE(7275), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -771284,7 +768028,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [316166] = 12, + [313518] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -771305,9 +768049,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11061), 1, - anon_sym_LT, - STATE(7343), 9, + ACTIONS(10995), 1, + anon_sym_EQ_GT, + STATE(7276), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -771317,7 +768061,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [316211] = 12, + [313563] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -771338,9 +768082,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11063), 1, - anon_sym_SEMI, - STATE(7344), 9, + ACTIONS(10997), 1, + anon_sym_RBRACK, + STATE(7277), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -771350,7 +768094,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [316256] = 12, + [313608] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -771371,9 +768115,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10420), 1, - sym_interpolation_close_brace, - STATE(7345), 9, + ACTIONS(10999), 1, + anon_sym_SEMI, + STATE(7278), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -771383,7 +768127,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [316301] = 12, + [313653] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -771404,9 +768148,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11065), 1, - sym_raw_string_end, - STATE(7346), 9, + ACTIONS(11001), 1, + anon_sym_SEMI, + STATE(7279), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -771416,7 +768160,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [316346] = 12, + [313698] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -771437,9 +768181,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11067), 1, - anon_sym_SEMI, - STATE(7347), 9, + ACTIONS(11003), 1, + sym_interpolation_close_brace, + STATE(7280), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -771449,7 +768193,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [316391] = 12, + [313743] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -771470,9 +768214,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11069), 1, - sym__optional_semi, - STATE(7348), 9, + ACTIONS(11005), 1, + anon_sym_SEMI, + STATE(7281), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -771482,7 +768226,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [316436] = 12, + [313788] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -771503,9 +768247,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11071), 1, - anon_sym_SEMI, - STATE(7349), 9, + ACTIONS(7642), 1, + anon_sym_RBRACE, + STATE(7282), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -771515,30 +768259,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [316481] = 12, - ACTIONS(3), 1, + [313833] = 12, + ACTIONS(9077), 1, aux_sym_preproc_region_token1, - ACTIONS(5), 1, + ACTIONS(9079), 1, aux_sym_preproc_endregion_token1, - ACTIONS(7), 1, + ACTIONS(9081), 1, aux_sym_preproc_line_token1, - ACTIONS(9), 1, + ACTIONS(9083), 1, aux_sym_preproc_pragma_token1, - ACTIONS(11), 1, + ACTIONS(9085), 1, aux_sym_preproc_nullable_token1, - ACTIONS(13), 1, + ACTIONS(9087), 1, aux_sym_preproc_error_token1, - ACTIONS(15), 1, + ACTIONS(9089), 1, aux_sym_preproc_warning_token1, - ACTIONS(17), 1, + ACTIONS(9091), 1, aux_sym_preproc_define_token1, - ACTIONS(19), 1, + ACTIONS(9093), 1, aux_sym_preproc_undef_token1, - ACTIONS(21), 1, + ACTIONS(9095), 1, sym_comment, - ACTIONS(11073), 1, - anon_sym_RPAREN, - STATE(7350), 9, + ACTIONS(11007), 1, + aux_sym_preproc_if_token2, + STATE(7283), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -771548,30 +768292,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [316526] = 12, - ACTIONS(3), 1, + [313878] = 12, + ACTIONS(9077), 1, aux_sym_preproc_region_token1, - ACTIONS(5), 1, + ACTIONS(9079), 1, aux_sym_preproc_endregion_token1, - ACTIONS(7), 1, + ACTIONS(9081), 1, aux_sym_preproc_line_token1, - ACTIONS(9), 1, + ACTIONS(9083), 1, aux_sym_preproc_pragma_token1, - ACTIONS(11), 1, + ACTIONS(9085), 1, aux_sym_preproc_nullable_token1, - ACTIONS(13), 1, + ACTIONS(9087), 1, aux_sym_preproc_error_token1, - ACTIONS(15), 1, + ACTIONS(9089), 1, aux_sym_preproc_warning_token1, - ACTIONS(17), 1, + ACTIONS(9091), 1, aux_sym_preproc_define_token1, - ACTIONS(19), 1, + ACTIONS(9093), 1, aux_sym_preproc_undef_token1, - ACTIONS(21), 1, + ACTIONS(9095), 1, sym_comment, - ACTIONS(11075), 1, - anon_sym_RPAREN, - STATE(7351), 9, + ACTIONS(11009), 1, + aux_sym_preproc_if_token2, + STATE(7284), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -771581,7 +768325,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [316571] = 12, + [313923] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -771602,9 +768346,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11077), 1, - anon_sym_EQ, - STATE(7352), 9, + ACTIONS(3651), 1, + anon_sym_EQ_GT, + STATE(7285), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -771614,7 +768358,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [316616] = 12, + [313968] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -771635,9 +768379,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11079), 1, - anon_sym_GT, - STATE(7353), 9, + ACTIONS(10877), 1, + anon_sym_in, + STATE(7286), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -771647,7 +768391,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [316661] = 12, + [314013] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -771668,9 +768412,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11081), 1, - anon_sym_GT, - STATE(7354), 9, + ACTIONS(11011), 1, + anon_sym_SEMI, + STATE(7287), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -771680,7 +768424,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [316706] = 12, + [314058] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -771701,9 +768445,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9689), 1, - anon_sym_EQ, - STATE(7355), 9, + ACTIONS(11013), 1, + anon_sym_GT, + STATE(7288), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -771713,7 +768457,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [316751] = 12, + [314103] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -771734,9 +768478,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11083), 1, - anon_sym_RPAREN, - STATE(7356), 9, + ACTIONS(11015), 1, + anon_sym_SEMI, + STATE(7289), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -771746,7 +768490,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [316796] = 12, + [314148] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -771767,9 +768511,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11085), 1, - aux_sym_preproc_if_token3, - STATE(7357), 9, + ACTIONS(11017), 1, + anon_sym_SEMI, + STATE(7290), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -771779,7 +768523,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [316841] = 12, + [314193] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -771800,9 +768544,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11087), 1, - aux_sym_preproc_if_token3, - STATE(7358), 9, + ACTIONS(9687), 1, + anon_sym_EQ, + STATE(7291), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -771812,7 +768556,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [316886] = 12, + [314238] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -771833,9 +768577,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11089), 1, - aux_sym_preproc_if_token3, - STATE(7359), 9, + ACTIONS(7556), 1, + anon_sym_SEMI, + STATE(7292), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -771845,7 +768589,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [316931] = 12, + [314283] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -771866,9 +768610,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11091), 1, - aux_sym_preproc_if_token3, - STATE(7360), 9, + ACTIONS(11019), 1, + anon_sym_RBRACK, + STATE(7293), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -771878,7 +768622,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [316976] = 12, + [314328] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -771899,9 +768643,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11093), 1, - aux_sym_preproc_if_token3, - STATE(7361), 9, + ACTIONS(11021), 1, + anon_sym_LT, + STATE(7294), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -771911,7 +768655,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [317021] = 12, + [314373] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -771932,9 +768676,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11095), 1, - anon_sym_EQ_GT, - STATE(7362), 9, + ACTIONS(11023), 1, + anon_sym_SEMI, + STATE(7295), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -771944,7 +768688,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [317066] = 12, + [314418] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -771965,42 +768709,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11097), 1, - anon_sym_SEMI, - STATE(7363), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - [317111] = 12, - ACTIONS(9097), 1, - aux_sym_preproc_region_token1, - ACTIONS(9099), 1, - aux_sym_preproc_endregion_token1, - ACTIONS(9101), 1, - aux_sym_preproc_line_token1, - ACTIONS(9103), 1, - aux_sym_preproc_pragma_token1, - ACTIONS(9105), 1, - aux_sym_preproc_nullable_token1, - ACTIONS(9107), 1, - aux_sym_preproc_error_token1, - ACTIONS(9109), 1, - aux_sym_preproc_warning_token1, - ACTIONS(9111), 1, - aux_sym_preproc_define_token1, - ACTIONS(9113), 1, - aux_sym_preproc_undef_token1, - ACTIONS(9115), 1, - sym_comment, - ACTIONS(10536), 1, - aux_sym_preproc_if_token2, - STATE(7364), 9, + ACTIONS(11025), 1, + anon_sym_EQ_GT, + STATE(7296), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -772010,7 +768721,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [317156] = 12, + [314463] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -772031,9 +768742,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11099), 1, - anon_sym_GT, - STATE(7365), 9, + ACTIONS(11027), 1, + anon_sym_RPAREN, + STATE(7297), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -772043,7 +768754,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [317201] = 12, + [314508] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -772064,9 +768775,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11101), 1, - anon_sym_COLON, - STATE(7366), 9, + ACTIONS(11029), 1, + anon_sym_in, + STATE(7298), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -772076,7 +768787,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [317246] = 12, + [314553] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -772097,9 +768808,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11103), 1, - anon_sym_SEMI, - STATE(7367), 9, + ACTIONS(11031), 1, + sym__optional_semi, + STATE(7299), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -772109,7 +768820,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [317291] = 12, + [314598] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -772130,9 +768841,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11105), 1, - anon_sym_SQUOTE, - STATE(7368), 9, + ACTIONS(11033), 1, + anon_sym_COLON, + STATE(7300), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -772142,7 +768853,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [317336] = 12, + [314643] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -772163,9 +768874,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11107), 1, - sym__optional_semi, - STATE(7369), 9, + ACTIONS(10605), 1, + anon_sym_RBRACE, + STATE(7301), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -772175,7 +768886,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [317381] = 12, + [314688] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -772196,9 +768907,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11109), 1, - sym_interpolation_start_quote, - STATE(7370), 9, + ACTIONS(11035), 1, + anon_sym_EQ, + STATE(7302), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -772208,7 +768919,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [317426] = 12, + [314733] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -772229,9 +768940,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11111), 1, - anon_sym_SEMI, - STATE(7371), 9, + ACTIONS(11037), 1, + anon_sym_RPAREN, + STATE(7303), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -772241,7 +768952,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [317471] = 12, + [314778] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -772262,9 +768973,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11113), 1, - anon_sym_GT, - STATE(7372), 9, + ACTIONS(11039), 1, + anon_sym_EQ_GT, + STATE(7304), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -772274,7 +768985,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [317516] = 12, + [314823] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -772295,9 +769006,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11115), 1, + ACTIONS(11041), 1, anon_sym_SEMI, - STATE(7373), 9, + STATE(7305), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -772307,7 +769018,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [317561] = 12, + [314868] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -772328,9 +769039,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11117), 1, - sym_interpolation_start_quote, - STATE(7374), 9, + ACTIONS(11043), 1, + aux_sym_preproc_if_token3, + STATE(7306), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -772340,7 +769051,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [317606] = 12, + [314913] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -772361,9 +769072,42 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11119), 1, + ACTIONS(11045), 1, + anon_sym_RPAREN, + STATE(7307), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + [314958] = 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(11047), 1, anon_sym_SEMI, - STATE(7375), 9, + STATE(7308), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -772373,7 +769117,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [317651] = 12, + [315003] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -772394,9 +769138,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11121), 1, - anon_sym_RPAREN, - STATE(7376), 9, + ACTIONS(11049), 1, + anon_sym_EQ_GT, + STATE(7309), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -772406,7 +769150,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [317696] = 12, + [315048] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -772427,9 +769171,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11123), 1, - anon_sym_SEMI, - STATE(7377), 9, + ACTIONS(11051), 1, + sym__optional_semi, + STATE(7310), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -772439,7 +769183,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [317741] = 12, + [315093] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -772460,9 +769204,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11125), 1, - aux_sym_preproc_if_token3, - STATE(7378), 9, + ACTIONS(11053), 1, + anon_sym_SEMI, + STATE(7311), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -772472,7 +769216,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [317786] = 12, + [315138] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -772493,9 +769237,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11127), 1, - aux_sym_preproc_if_token3, - STATE(7379), 9, + ACTIONS(11055), 1, + anon_sym_SEMI, + STATE(7312), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -772505,7 +769249,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [317831] = 12, + [315183] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -772526,9 +769270,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(7663), 1, - anon_sym_RBRACE, - STATE(7380), 9, + ACTIONS(11057), 1, + sym__optional_semi, + STATE(7313), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -772538,7 +769282,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [317876] = 12, + [315228] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -772559,9 +769303,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11129), 1, - anon_sym_EQ_GT, - STATE(7381), 9, + ACTIONS(11059), 1, + anon_sym_GT, + STATE(7314), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -772571,7 +769315,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [317921] = 12, + [315273] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -772592,9 +769336,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11131), 1, - aux_sym_preproc_if_token3, - STATE(7382), 9, + ACTIONS(11061), 1, + anon_sym_GT, + STATE(7315), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -772604,7 +769348,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [317966] = 12, + [315318] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -772625,9 +769369,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11133), 1, - aux_sym_preproc_if_token3, - STATE(7383), 9, + ACTIONS(11063), 1, + sym__optional_semi, + STATE(7316), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -772637,7 +769381,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [318011] = 12, + [315363] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -772658,9 +769402,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(7384), 9, + ACTIONS(11065), 1, + anon_sym_RPAREN, + STATE(7317), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -772670,7 +769414,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [318056] = 12, + [315408] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -772691,9 +769435,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11137), 1, - sym__optional_semi, - STATE(7385), 9, + ACTIONS(8214), 1, + anon_sym_RPAREN, + STATE(7318), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -772703,7 +769447,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [318101] = 12, + [315453] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -772724,9 +769468,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11139), 1, - anon_sym_GT, - STATE(7386), 9, + ACTIONS(11067), 1, + aux_sym_preproc_if_token3, + STATE(7319), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -772736,7 +769480,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [318146] = 12, + [315498] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -772757,9 +769501,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11141), 1, - sym__optional_semi, - STATE(7387), 9, + ACTIONS(10572), 1, + anon_sym_RBRACE, + STATE(7320), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -772769,7 +769513,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [318191] = 12, + [315543] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -772790,9 +769534,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11143), 1, - anon_sym_in, - STATE(7388), 9, + ACTIONS(11069), 1, + aux_sym_preproc_if_token3, + STATE(7321), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -772802,7 +769546,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [318236] = 12, + [315588] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -772823,9 +769567,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11145), 1, - sym__optional_semi, - STATE(7389), 9, + ACTIONS(11071), 1, + sym_integer_literal, + STATE(7322), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -772835,7 +769579,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [318281] = 12, + [315633] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -772856,9 +769600,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(7607), 1, - anon_sym_RBRACE, - STATE(7390), 9, + ACTIONS(11073), 1, + anon_sym_EQ_GT, + STATE(7323), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -772868,7 +769612,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [318326] = 12, + [315678] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -772889,9 +769633,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11147), 1, - aux_sym_preproc_if_token3, - STATE(7391), 9, + ACTIONS(11075), 1, + anon_sym_EQ_GT, + STATE(7324), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -772901,7 +769645,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [318371] = 12, + [315723] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -772922,9 +769666,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8388), 1, - anon_sym_RPAREN, - STATE(7392), 9, + ACTIONS(11077), 1, + anon_sym_SEMI, + STATE(7325), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -772934,7 +769678,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [318416] = 12, + [315768] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -772955,9 +769699,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11149), 1, - anon_sym_EQ_GT, - STATE(7393), 9, + ACTIONS(11079), 1, + anon_sym_SEMI, + STATE(7326), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -772967,7 +769711,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [318461] = 12, + [315813] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -772988,9 +769732,42 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11151), 1, - sym__optional_semi, - STATE(7394), 9, + ACTIONS(8364), 1, + anon_sym_RPAREN, + STATE(7327), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + [315858] = 12, + ACTIONS(9077), 1, + aux_sym_preproc_region_token1, + ACTIONS(9079), 1, + aux_sym_preproc_endregion_token1, + ACTIONS(9081), 1, + aux_sym_preproc_line_token1, + ACTIONS(9083), 1, + aux_sym_preproc_pragma_token1, + ACTIONS(9085), 1, + aux_sym_preproc_nullable_token1, + ACTIONS(9087), 1, + aux_sym_preproc_error_token1, + ACTIONS(9089), 1, + aux_sym_preproc_warning_token1, + ACTIONS(9091), 1, + aux_sym_preproc_define_token1, + ACTIONS(9093), 1, + aux_sym_preproc_undef_token1, + ACTIONS(9095), 1, + sym_comment, + ACTIONS(11081), 1, + aux_sym_preproc_if_token2, + STATE(7328), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -773000,7 +769777,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [318506] = 12, + [315903] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -773021,9 +769798,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11153), 1, - aux_sym_preproc_if_token3, - STATE(7395), 9, + ACTIONS(11083), 1, + anon_sym_SEMI, + STATE(7329), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -773033,7 +769810,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [318551] = 12, + [315948] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -773054,9 +769831,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11155), 1, - sym_interpolation_start_quote, - STATE(7396), 9, + ACTIONS(11085), 1, + anon_sym_EQ_GT, + STATE(7330), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -773066,7 +769843,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [318596] = 12, + [315993] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -773087,9 +769864,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11157), 1, - sym_interpolation_start_quote, - STATE(7397), 9, + ACTIONS(8631), 1, + anon_sym_RPAREN, + STATE(7331), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -773099,7 +769876,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [318641] = 12, + [316038] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -773120,9 +769897,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11159), 1, - anon_sym_LT, - STATE(7398), 9, + ACTIONS(11087), 1, + anon_sym_SEMI, + STATE(7332), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -773132,7 +769909,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [318686] = 12, + [316083] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -773153,9 +769930,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11161), 1, - sym_interpolation_start_quote, - STATE(7399), 9, + ACTIONS(11089), 1, + anon_sym_SEMI, + STATE(7333), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -773165,7 +769942,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [318731] = 12, + [316128] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -773186,9 +769963,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11163), 1, - anon_sym_GT, - STATE(7400), 9, + ACTIONS(11091), 1, + anon_sym_SEMI, + STATE(7334), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -773198,7 +769975,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [318776] = 12, + [316173] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -773219,9 +769996,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(7401), 9, + ACTIONS(11093), 1, + anon_sym_GT, + STATE(7335), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -773231,7 +770008,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [318821] = 12, + [316218] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -773252,9 +770029,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8573), 1, - anon_sym_RPAREN, - STATE(7402), 9, + ACTIONS(11095), 1, + aux_sym_preproc_if_token3, + STATE(7336), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -773264,7 +770041,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [318866] = 12, + [316263] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -773285,9 +770062,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11167), 1, - sym_raw_string_content, - STATE(7403), 9, + ACTIONS(11097), 1, + anon_sym_SEMI, + STATE(7337), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -773297,7 +770074,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [318911] = 12, + [316308] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -773318,9 +770095,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(7404), 9, + ACTIONS(11099), 1, + anon_sym_LPAREN, + STATE(7338), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -773330,7 +770107,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [318956] = 12, + [316353] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -773351,9 +770128,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11171), 1, - sym_interpolation_start_quote, - STATE(7405), 9, + ACTIONS(11101), 1, + aux_sym_preproc_if_token3, + STATE(7339), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -773363,7 +770140,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [319001] = 12, + [316398] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -773384,9 +770161,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11173), 1, - sym_raw_string_content, - STATE(7406), 9, + ACTIONS(11103), 1, + anon_sym_LPAREN, + STATE(7340), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -773396,7 +770173,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [319046] = 12, + [316443] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -773417,9 +770194,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11175), 1, - anon_sym_EQ_GT, - STATE(7407), 9, + ACTIONS(11105), 1, + anon_sym_SEMI, + STATE(7341), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -773429,7 +770206,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [319091] = 12, + [316488] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -773450,9 +770227,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11177), 1, - anon_sym_COLON, - STATE(7408), 9, + ACTIONS(11107), 1, + anon_sym_RPAREN, + STATE(7342), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -773462,7 +770239,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [319136] = 12, + [316533] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -773483,9 +770260,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11179), 1, - anon_sym_SQUOTE, - STATE(7409), 9, + ACTIONS(9590), 1, + anon_sym_EQ, + STATE(7343), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -773495,7 +770272,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [319181] = 12, + [316578] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -773516,9 +770293,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11181), 1, - anon_sym_RPAREN, - STATE(7410), 9, + ACTIONS(11109), 1, + anon_sym_LPAREN, + STATE(7344), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -773528,7 +770305,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [319226] = 12, + [316623] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -773549,9 +770326,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11183), 1, - anon_sym_LPAREN, - STATE(7411), 9, + ACTIONS(11111), 1, + sym_raw_string_end, + STATE(7345), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -773561,7 +770338,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [319271] = 12, + [316668] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -773582,9 +770359,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11185), 1, - anon_sym_SEMI, - STATE(7412), 9, + ACTIONS(11113), 1, + aux_sym_preproc_if_token3, + STATE(7346), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -773594,7 +770371,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [319316] = 12, + [316713] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -773615,9 +770392,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11187), 1, - anon_sym_STAR, - STATE(7413), 9, + ACTIONS(11115), 1, + aux_sym_preproc_if_token3, + STATE(7347), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -773627,7 +770404,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [319361] = 12, + [316758] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -773648,9 +770425,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11189), 1, - anon_sym_RPAREN, - STATE(7414), 9, + ACTIONS(11117), 1, + anon_sym_LT, + STATE(7348), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -773660,7 +770437,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [319406] = 12, + [316803] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -773681,9 +770458,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(7415), 9, + ACTIONS(11119), 1, + aux_sym_preproc_if_token3, + STATE(7349), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -773693,7 +770470,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [319451] = 12, + [316848] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -773714,9 +770491,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8464), 1, - anon_sym_RPAREN, - STATE(7416), 9, + ACTIONS(11121), 1, + anon_sym_SEMI, + STATE(7350), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -773726,7 +770503,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [319496] = 12, + [316893] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -773747,9 +770524,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11193), 1, - aux_sym_preproc_if_token3, - STATE(7417), 9, + ACTIONS(11123), 1, + anon_sym_GT, + STATE(7351), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -773759,7 +770536,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [319541] = 12, + [316938] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -773780,9 +770557,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11195), 1, - anon_sym_SEMI, - STATE(7418), 9, + ACTIONS(11125), 1, + anon_sym_SQUOTE, + STATE(7352), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -773792,7 +770569,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [319586] = 12, + [316983] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -773813,9 +770590,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11197), 1, - anon_sym_RPAREN, - STATE(7419), 9, + ACTIONS(11127), 1, + anon_sym_DOT, + STATE(7353), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -773825,30 +770602,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [319631] = 12, - ACTIONS(9097), 1, + [317028] = 12, + ACTIONS(3), 1, aux_sym_preproc_region_token1, - ACTIONS(9099), 1, + ACTIONS(5), 1, aux_sym_preproc_endregion_token1, - ACTIONS(9101), 1, + ACTIONS(7), 1, aux_sym_preproc_line_token1, - ACTIONS(9103), 1, + ACTIONS(9), 1, aux_sym_preproc_pragma_token1, - ACTIONS(9105), 1, + ACTIONS(11), 1, aux_sym_preproc_nullable_token1, - ACTIONS(9107), 1, + ACTIONS(13), 1, aux_sym_preproc_error_token1, - ACTIONS(9109), 1, + ACTIONS(15), 1, aux_sym_preproc_warning_token1, - ACTIONS(9111), 1, + ACTIONS(17), 1, aux_sym_preproc_define_token1, - ACTIONS(9113), 1, + ACTIONS(19), 1, aux_sym_preproc_undef_token1, - ACTIONS(9115), 1, + ACTIONS(21), 1, sym_comment, - ACTIONS(11199), 1, - aux_sym_preproc_if_token2, - STATE(7420), 9, + ACTIONS(8581), 1, + anon_sym_RPAREN, + STATE(7354), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -773858,7 +770635,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [319676] = 12, + [317073] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -773879,9 +770656,42 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11201), 1, - anon_sym_LPAREN, - STATE(7421), 9, + ACTIONS(11129), 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, + [317118] = 12, + ACTIONS(5184), 1, + aux_sym_preproc_if_token2, + ACTIONS(9077), 1, + aux_sym_preproc_region_token1, + ACTIONS(9079), 1, + aux_sym_preproc_endregion_token1, + ACTIONS(9081), 1, + aux_sym_preproc_line_token1, + ACTIONS(9083), 1, + aux_sym_preproc_pragma_token1, + ACTIONS(9085), 1, + aux_sym_preproc_nullable_token1, + ACTIONS(9087), 1, + aux_sym_preproc_error_token1, + ACTIONS(9089), 1, + aux_sym_preproc_warning_token1, + ACTIONS(9091), 1, + aux_sym_preproc_define_token1, + ACTIONS(9093), 1, + aux_sym_preproc_undef_token1, + ACTIONS(9095), 1, + sym_comment, + STATE(7356), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -773891,7 +770701,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [319721] = 12, + [317163] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -773912,9 +770722,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11203), 1, - aux_sym_preproc_if_token3, - STATE(7422), 9, + ACTIONS(11131), 1, + anon_sym_STAR, + STATE(7357), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -773924,7 +770734,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [319766] = 12, + [317208] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -773945,9 +770755,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11205), 1, - anon_sym_RPAREN, - STATE(7423), 9, + ACTIONS(10673), 1, + anon_sym_RBRACE, + STATE(7358), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -773957,7 +770767,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [319811] = 12, + [317253] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -773978,9 +770788,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11207), 1, - anon_sym_GT, - STATE(7424), 9, + ACTIONS(11133), 1, + anon_sym_RPAREN, + STATE(7359), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -773990,7 +770800,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [319856] = 12, + [317298] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -774011,9 +770821,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11209), 1, - anon_sym_LPAREN, - STATE(7425), 9, + ACTIONS(10705), 1, + anon_sym_RBRACE, + STATE(7360), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -774023,7 +770833,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [319901] = 12, + [317343] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -774044,9 +770854,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11211), 1, - anon_sym_SEMI, - STATE(7426), 9, + ACTIONS(10402), 1, + anon_sym_RBRACE, + STATE(7361), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -774056,7 +770866,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [319946] = 12, + [317388] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -774077,9 +770887,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11213), 1, - anon_sym_SEMI, - STATE(7427), 9, + ACTIONS(11135), 1, + sym__optional_semi, + STATE(7362), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -774089,7 +770899,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [319991] = 12, + [317433] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -774110,9 +770920,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11215), 1, + ACTIONS(11137), 1, anon_sym_EQ_GT, - STATE(7428), 9, + STATE(7363), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -774122,7 +770932,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [320036] = 12, + [317478] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -774143,9 +770953,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11217), 1, - sym__optional_semi, - STATE(7429), 9, + ACTIONS(11139), 1, + anon_sym_GT, + STATE(7364), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -774155,7 +770965,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [320081] = 12, + [317523] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -774176,9 +770986,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11219), 1, - anon_sym_GT, - STATE(7430), 9, + ACTIONS(10323), 1, + anon_sym_RBRACE, + STATE(7365), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -774188,7 +770998,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [320126] = 12, + [317568] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -774209,9 +771019,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11221), 1, - sym__optional_semi, - STATE(7431), 9, + ACTIONS(11141), 1, + anon_sym_SEMI, + STATE(7366), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -774221,7 +771031,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [320171] = 12, + [317613] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -774242,9 +771052,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11223), 1, - sym__optional_semi, - STATE(7432), 9, + ACTIONS(11143), 1, + anon_sym_EQ_GT, + STATE(7367), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -774254,30 +771064,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [320216] = 12, - ACTIONS(9097), 1, + [317658] = 12, + ACTIONS(3), 1, aux_sym_preproc_region_token1, - ACTIONS(9099), 1, + ACTIONS(5), 1, aux_sym_preproc_endregion_token1, - ACTIONS(9101), 1, + ACTIONS(7), 1, aux_sym_preproc_line_token1, - ACTIONS(9103), 1, + ACTIONS(9), 1, aux_sym_preproc_pragma_token1, - ACTIONS(9105), 1, + ACTIONS(11), 1, aux_sym_preproc_nullable_token1, - ACTIONS(9107), 1, + ACTIONS(13), 1, aux_sym_preproc_error_token1, - ACTIONS(9109), 1, + ACTIONS(15), 1, aux_sym_preproc_warning_token1, - ACTIONS(9111), 1, + ACTIONS(17), 1, aux_sym_preproc_define_token1, - ACTIONS(9113), 1, + ACTIONS(19), 1, aux_sym_preproc_undef_token1, - ACTIONS(9115), 1, + ACTIONS(21), 1, sym_comment, - ACTIONS(11225), 1, - aux_sym_preproc_if_token2, - STATE(7433), 9, + ACTIONS(10732), 1, + anon_sym_RBRACE, + STATE(7368), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -774287,7 +771097,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [320261] = 12, + [317703] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -774308,9 +771118,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11227), 1, - sym_integer_literal, - STATE(7434), 9, + ACTIONS(11145), 1, + anon_sym_DOT, + STATE(7369), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -774320,7 +771130,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [320306] = 12, + [317748] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -774341,9 +771151,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11229), 1, + ACTIONS(11147), 1, anon_sym_SEMI, - STATE(7435), 9, + STATE(7370), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -774353,7 +771163,40 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [320351] = 12, + [317793] = 12, + ACTIONS(9077), 1, + aux_sym_preproc_region_token1, + ACTIONS(9079), 1, + aux_sym_preproc_endregion_token1, + ACTIONS(9081), 1, + aux_sym_preproc_line_token1, + ACTIONS(9083), 1, + aux_sym_preproc_pragma_token1, + ACTIONS(9085), 1, + aux_sym_preproc_nullable_token1, + ACTIONS(9087), 1, + aux_sym_preproc_error_token1, + ACTIONS(9089), 1, + aux_sym_preproc_warning_token1, + ACTIONS(9091), 1, + aux_sym_preproc_define_token1, + ACTIONS(9093), 1, + aux_sym_preproc_undef_token1, + ACTIONS(9095), 1, + sym_comment, + ACTIONS(10229), 1, + aux_sym_preproc_if_token2, + STATE(7371), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + [317838] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -774374,9 +771217,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11231), 1, - aux_sym_preproc_if_token3, - STATE(7436), 9, + ACTIONS(11149), 1, + anon_sym_SEMI, + STATE(7372), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -774386,7 +771229,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [320396] = 12, + [317883] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -774407,9 +771250,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11233), 1, - anon_sym_SEMI, - STATE(7437), 9, + ACTIONS(11151), 1, + anon_sym_GT, + STATE(7373), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -774419,7 +771262,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [320441] = 12, + [317928] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -774440,9 +771283,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(7814), 1, - anon_sym_RBRACE, - STATE(7438), 9, + ACTIONS(11153), 1, + anon_sym_EQ_GT, + STATE(7374), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -774452,7 +771295,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [320486] = 12, + [317973] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -774473,9 +771316,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11235), 1, - sym__optional_semi, - STATE(7439), 9, + ACTIONS(8374), 1, + anon_sym_RPAREN, + STATE(7375), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -774485,7 +771328,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [320531] = 12, + [318018] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -774506,9 +771349,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11237), 1, - aux_sym_preproc_if_token3, - STATE(7440), 9, + ACTIONS(11155), 1, + anon_sym_LPAREN, + STATE(7376), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -774518,7 +771361,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [320576] = 12, + [318063] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -774539,9 +771382,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11239), 1, - anon_sym_DOT, - STATE(7441), 9, + ACTIONS(11157), 1, + anon_sym_COMMA, + STATE(7377), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -774551,7 +771394,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [320621] = 12, + [318108] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -774572,9 +771415,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11241), 1, - sym__optional_semi, - STATE(7442), 9, + ACTIONS(11159), 1, + anon_sym_EQ_GT, + STATE(7378), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -774584,7 +771427,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [320666] = 12, + [318153] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -774605,9 +771448,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11243), 1, - anon_sym_SEMI, - STATE(7443), 9, + ACTIONS(11161), 1, + anon_sym_RPAREN, + STATE(7379), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -774617,7 +771460,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [320711] = 12, + [318198] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -774638,9 +771481,9 @@ 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, - STATE(7444), 9, + ACTIONS(11163), 1, + aux_sym_preproc_if_token3, + STATE(7380), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -774650,7 +771493,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [320756] = 12, + [318243] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -774671,9 +771514,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11247), 1, - sym__optional_semi, - STATE(7445), 9, + ACTIONS(7789), 1, + anon_sym_RBRACE, + STATE(7381), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -774683,7 +771526,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [320801] = 12, + [318288] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -774704,9 +771547,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11249), 1, - anon_sym_STAR, - STATE(7446), 9, + ACTIONS(11165), 1, + aux_sym_preproc_if_token3, + STATE(7382), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -774716,7 +771559,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [320846] = 12, + [318333] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -774737,9 +771580,9 @@ 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, - STATE(7447), 9, + ACTIONS(11167), 1, + anon_sym_SEMI, + STATE(7383), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -774749,7 +771592,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [320891] = 12, + [318378] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -774770,9 +771613,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11253), 1, + ACTIONS(11169), 1, anon_sym_EQ_GT, - STATE(7448), 9, + STATE(7384), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -774782,7 +771625,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [320936] = 12, + [318423] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -774803,9 +771646,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11255), 1, - anon_sym_SEMI, - STATE(7449), 9, + ACTIONS(11171), 1, + anon_sym_RPAREN, + STATE(7385), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -774815,7 +771658,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [320981] = 12, + [318468] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -774836,9 +771679,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10215), 1, - anon_sym_LPAREN, - STATE(7450), 9, + ACTIONS(11173), 1, + anon_sym_RPAREN, + STATE(7386), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -774848,7 +771691,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [321026] = 12, + [318513] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -774869,9 +771712,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11257), 1, - sym__optional_semi, - STATE(7451), 9, + ACTIONS(11175), 1, + anon_sym_COMMA, + STATE(7387), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -774881,7 +771724,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [321071] = 12, + [318558] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -774902,9 +771745,9 @@ 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, - STATE(7452), 9, + ACTIONS(11177), 1, + aux_sym_preproc_if_token3, + STATE(7388), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -774914,7 +771757,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [321116] = 12, + [318603] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -774935,9 +771778,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11261), 1, - anon_sym_RBRACK, - STATE(7453), 9, + ACTIONS(11179), 1, + aux_sym_preproc_if_token3, + STATE(7389), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -774947,7 +771790,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [321161] = 12, + [318648] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -774968,9 +771811,42 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11263), 1, - anon_sym_SEMI, - STATE(7454), 9, + ACTIONS(11181), 1, + aux_sym_preproc_if_token3, + STATE(7390), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + [318693] = 12, + ACTIONS(9077), 1, + aux_sym_preproc_region_token1, + ACTIONS(9079), 1, + aux_sym_preproc_endregion_token1, + ACTIONS(9081), 1, + aux_sym_preproc_line_token1, + ACTIONS(9083), 1, + aux_sym_preproc_pragma_token1, + ACTIONS(9085), 1, + aux_sym_preproc_nullable_token1, + ACTIONS(9087), 1, + aux_sym_preproc_error_token1, + ACTIONS(9089), 1, + aux_sym_preproc_warning_token1, + ACTIONS(9091), 1, + aux_sym_preproc_define_token1, + ACTIONS(9093), 1, + aux_sym_preproc_undef_token1, + ACTIONS(9095), 1, + sym_comment, + ACTIONS(11183), 1, + aux_sym_preproc_if_token2, + STATE(7391), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -774980,7 +771856,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [321206] = 12, + [318738] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -775001,9 +771877,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11265), 1, - anon_sym_LPAREN, - STATE(7455), 9, + ACTIONS(11185), 1, + aux_sym_preproc_if_token3, + STATE(7392), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -775013,7 +771889,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [321251] = 12, + [318783] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -775034,9 +771910,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11267), 1, - anon_sym_SEMI, - STATE(7456), 9, + ACTIONS(11187), 1, + anon_sym_EQ, + STATE(7393), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -775046,7 +771922,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [321296] = 12, + [318828] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -775067,9 +771943,75 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11269), 1, - sym__optional_semi, - STATE(7457), 9, + ACTIONS(11189), 1, + anon_sym_GT, + STATE(7394), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + [318873] = 12, + ACTIONS(9077), 1, + aux_sym_preproc_region_token1, + ACTIONS(9079), 1, + aux_sym_preproc_endregion_token1, + ACTIONS(9081), 1, + aux_sym_preproc_line_token1, + ACTIONS(9083), 1, + aux_sym_preproc_pragma_token1, + ACTIONS(9085), 1, + aux_sym_preproc_nullable_token1, + ACTIONS(9087), 1, + aux_sym_preproc_error_token1, + ACTIONS(9089), 1, + aux_sym_preproc_warning_token1, + ACTIONS(9091), 1, + aux_sym_preproc_define_token1, + ACTIONS(9093), 1, + aux_sym_preproc_undef_token1, + ACTIONS(9095), 1, + sym_comment, + ACTIONS(11191), 1, + sym_preproc_arg, + STATE(7395), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + [318918] = 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(11193), 1, + anon_sym_LPAREN, + STATE(7396), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -775079,7 +772021,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [321341] = 12, + [318963] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -775100,9 +772042,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11271), 1, + ACTIONS(11195), 1, anon_sym_SEMI, - STATE(7458), 9, + STATE(7397), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -775112,7 +772054,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [321386] = 12, + [319008] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -775133,9 +772075,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11273), 1, - sym__optional_semi, - STATE(7459), 9, + ACTIONS(11197), 1, + anon_sym_SEMI, + STATE(7398), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -775145,7 +772087,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [321431] = 12, + [319053] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -775166,9 +772108,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11275), 1, - anon_sym_COLON, - STATE(7460), 9, + ACTIONS(11199), 1, + anon_sym_EQ_GT, + STATE(7399), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -775178,7 +772120,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [321476] = 12, + [319098] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -775199,9 +772141,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(7629), 1, - anon_sym_RBRACE, - STATE(7461), 9, + ACTIONS(11201), 1, + anon_sym_STAR, + STATE(7400), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -775211,7 +772153,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [321521] = 12, + [319143] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -775232,9 +772174,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11277), 1, - sym__optional_semi, - STATE(7462), 9, + ACTIONS(11203), 1, + anon_sym_STAR, + STATE(7401), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -775244,30 +772186,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [321566] = 12, - ACTIONS(3), 1, + [319188] = 12, + ACTIONS(9077), 1, aux_sym_preproc_region_token1, - ACTIONS(5), 1, + ACTIONS(9079), 1, aux_sym_preproc_endregion_token1, - ACTIONS(7), 1, + ACTIONS(9081), 1, aux_sym_preproc_line_token1, - ACTIONS(9), 1, + ACTIONS(9083), 1, aux_sym_preproc_pragma_token1, - ACTIONS(11), 1, + ACTIONS(9085), 1, aux_sym_preproc_nullable_token1, - ACTIONS(13), 1, + ACTIONS(9087), 1, aux_sym_preproc_error_token1, - ACTIONS(15), 1, + ACTIONS(9089), 1, aux_sym_preproc_warning_token1, - ACTIONS(17), 1, + ACTIONS(9091), 1, aux_sym_preproc_define_token1, - ACTIONS(19), 1, + ACTIONS(9093), 1, aux_sym_preproc_undef_token1, - ACTIONS(21), 1, + ACTIONS(9095), 1, sym_comment, - ACTIONS(11279), 1, - anon_sym_RPAREN, - STATE(7463), 9, + ACTIONS(11205), 1, + sym_preproc_arg, + STATE(7402), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -775277,7 +772219,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [321611] = 12, + [319233] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -775298,9 +772240,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11281), 1, - sym__optional_semi, - STATE(7464), 9, + ACTIONS(11207), 1, + anon_sym_RBRACE, + STATE(7403), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -775310,7 +772252,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [321656] = 12, + [319278] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -775331,9 +772273,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11283), 1, - sym_interpolation_start_quote, - STATE(7465), 9, + ACTIONS(11209), 1, + anon_sym_EQ_GT, + STATE(7404), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -775343,7 +772285,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [321701] = 12, + [319323] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -775364,9 +772306,9 @@ 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, - STATE(7466), 9, + ACTIONS(11211), 1, + anon_sym_EQ_GT, + STATE(7405), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -775376,7 +772318,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [321746] = 12, + [319368] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -775397,9 +772339,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11287), 1, - anon_sym_EQ, - STATE(7467), 9, + ACTIONS(11213), 1, + sym__optional_semi, + STATE(7406), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -775409,7 +772351,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [321791] = 12, + [319413] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -775430,9 +772372,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11289), 1, - anon_sym_EQ_GT, - STATE(7468), 9, + ACTIONS(11215), 1, + sym__optional_semi, + STATE(7407), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -775442,7 +772384,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [321836] = 12, + [319458] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -775463,9 +772405,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11291), 1, - anon_sym_GT, - STATE(7469), 9, + ACTIONS(11217), 1, + anon_sym_COMMA, + STATE(7408), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -775475,7 +772417,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [321881] = 12, + [319503] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -775496,9 +772438,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11293), 1, - anon_sym_SEMI, - STATE(7470), 9, + ACTIONS(11219), 1, + anon_sym_while, + STATE(7409), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -775508,7 +772450,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [321926] = 12, + [319548] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -775529,9 +772471,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10869), 1, - anon_sym_in, - STATE(7471), 9, + ACTIONS(11221), 1, + anon_sym_SEMI, + STATE(7410), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -775541,7 +772483,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [321971] = 12, + [319593] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -775562,9 +772504,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10386), 1, - anon_sym_RBRACE, - STATE(7472), 9, + ACTIONS(11223), 1, + anon_sym_LPAREN, + STATE(7411), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -775574,7 +772516,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [322016] = 12, + [319638] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -775595,9 +772537,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11295), 1, + ACTIONS(11225), 1, anon_sym_EQ_GT, - STATE(7473), 9, + STATE(7412), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -775607,7 +772549,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [322061] = 12, + [319683] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -775628,9 +772570,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11297), 1, - anon_sym_SEMI, - STATE(7474), 9, + ACTIONS(11227), 1, + aux_sym_preproc_if_token3, + STATE(7413), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -775640,7 +772582,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [322106] = 12, + [319728] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -775661,9 +772603,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11299), 1, - anon_sym_SEMI, - STATE(7475), 9, + ACTIONS(10683), 1, + anon_sym_RBRACE, + STATE(7414), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -775673,7 +772615,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [322151] = 12, + [319773] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -775694,9 +772636,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11301), 1, - sym__optional_semi, - STATE(7476), 9, + ACTIONS(11229), 1, + ts_builtin_sym_end, + STATE(7415), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -775706,7 +772648,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [322196] = 12, + [319818] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -775727,9 +772669,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11303), 1, - sym__optional_semi, - STATE(7477), 9, + ACTIONS(11231), 1, + anon_sym_EQ_GT, + STATE(7416), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -775739,7 +772681,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [322241] = 12, + [319863] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -775760,9 +772702,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11305), 1, - anon_sym_EQ_GT, - STATE(7478), 9, + ACTIONS(11233), 1, + aux_sym_preproc_if_token3, + STATE(7417), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -775772,7 +772714,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [322286] = 12, + [319908] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -775793,9 +772735,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11307), 1, - anon_sym_SEMI, - STATE(7479), 9, + ACTIONS(11235), 1, + anon_sym_EQ_GT, + STATE(7418), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -775805,7 +772747,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [322331] = 12, + [319953] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -775826,42 +772768,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11309), 1, - anon_sym_SQUOTE, - STATE(7480), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - [322376] = 12, - ACTIONS(9097), 1, - aux_sym_preproc_region_token1, - ACTIONS(9099), 1, - aux_sym_preproc_endregion_token1, - ACTIONS(9101), 1, - aux_sym_preproc_line_token1, - ACTIONS(9103), 1, - aux_sym_preproc_pragma_token1, - ACTIONS(9105), 1, - aux_sym_preproc_nullable_token1, - ACTIONS(9107), 1, - aux_sym_preproc_error_token1, - ACTIONS(9109), 1, - aux_sym_preproc_warning_token1, - ACTIONS(9111), 1, - aux_sym_preproc_define_token1, - ACTIONS(9113), 1, - aux_sym_preproc_undef_token1, - ACTIONS(9115), 1, - sym_comment, - ACTIONS(11311), 1, - aux_sym_preproc_if_token2, - STATE(7481), 9, + ACTIONS(11237), 1, + anon_sym_SEMI, + STATE(7419), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -775871,7 +772780,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [322421] = 12, + [319998] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -775892,9 +772801,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11313), 1, - anon_sym_EQ, - STATE(7482), 9, + ACTIONS(11239), 1, + sym__optional_semi, + STATE(7420), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -775904,7 +772813,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [322466] = 12, + [320043] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -775925,9 +772834,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11315), 1, - aux_sym_preproc_if_token3, - STATE(7483), 9, + ACTIONS(11241), 1, + anon_sym_STAR, + STATE(7421), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -775937,7 +772846,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [322511] = 12, + [320088] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -775958,9 +772867,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11317), 1, - anon_sym_SEMI, - STATE(7484), 9, + ACTIONS(11243), 1, + sym__optional_semi, + STATE(7422), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -775970,7 +772879,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [322556] = 12, + [320133] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -775991,9 +772900,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(7789), 1, - anon_sym_RBRACE, - STATE(7485), 9, + ACTIONS(11245), 1, + anon_sym_EQ_GT, + STATE(7423), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -776003,7 +772912,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [322601] = 12, + [320178] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -776024,9 +772933,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11319), 1, - anon_sym_COLON, - STATE(7486), 9, + ACTIONS(11247), 1, + anon_sym_RPAREN, + STATE(7424), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -776036,7 +772945,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [322646] = 12, + [320223] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -776057,9 +772966,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11321), 1, - aux_sym_preproc_if_token3, - STATE(7487), 9, + ACTIONS(11249), 1, + anon_sym_EQ_GT, + STATE(7425), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -776069,7 +772978,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [322691] = 12, + [320268] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -776090,9 +772999,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11323), 1, + ACTIONS(11251), 1, anon_sym_SEMI, - STATE(7488), 9, + STATE(7426), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -776102,7 +773011,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [322736] = 12, + [320313] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -776123,42 +773032,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11325), 1, + ACTIONS(11253), 1, anon_sym_EQ_GT, - STATE(7489), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - [322781] = 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(10654), 1, - anon_sym_RBRACE, - STATE(7490), 9, + STATE(7427), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -776168,7 +773044,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [322826] = 12, + [320358] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -776189,9 +773065,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11327), 1, - sym_interpolation_start_quote, - STATE(7491), 9, + ACTIONS(11255), 1, + anon_sym_EQ_GT, + STATE(7428), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -776201,7 +773077,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [322871] = 12, + [320403] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -776222,9 +773098,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11329), 1, - aux_sym_preproc_if_token3, - STATE(7492), 9, + ACTIONS(11257), 1, + anon_sym_RPAREN, + STATE(7429), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -776234,7 +773110,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [322916] = 12, + [320448] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -776255,9 +773131,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11331), 1, - anon_sym_EQ_GT, - STATE(7493), 9, + ACTIONS(11259), 1, + anon_sym_SEMI, + STATE(7430), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -776267,7 +773143,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [322961] = 12, + [320493] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -776288,9 +773164,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11333), 1, - aux_sym_preproc_if_token3, - STATE(7494), 9, + ACTIONS(11261), 1, + sym__optional_semi, + STATE(7431), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -776300,7 +773176,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [323006] = 12, + [320538] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -776321,9 +773197,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11335), 1, - sym__optional_semi, - STATE(7495), 9, + ACTIONS(11263), 1, + sym_interpolation_start_quote, + STATE(7432), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -776333,7 +773209,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [323051] = 12, + [320583] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -776354,9 +773230,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11337), 1, - sym__optional_semi, - STATE(7496), 9, + ACTIONS(7215), 1, + anon_sym_RBRACE, + STATE(7433), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -776366,7 +773242,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [323096] = 12, + [320628] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -776387,9 +773263,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(7497), 9, + ACTIONS(11265), 1, + sym_interpolation_start_quote, + STATE(7434), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -776399,7 +773275,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [323141] = 12, + [320673] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -776420,9 +773296,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11341), 1, - sym__optional_semi, - STATE(7498), 9, + ACTIONS(11267), 1, + sym_interpolation_start_quote, + STATE(7435), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -776432,7 +773308,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [323186] = 12, + [320718] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -776453,9 +773329,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11343), 1, - sym__optional_semi, - STATE(7499), 9, + ACTIONS(11269), 1, + sym_raw_string_content, + STATE(7436), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -776465,7 +773341,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [323231] = 12, + [320763] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -776486,9 +773362,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(7500), 9, + ACTIONS(11271), 1, + anon_sym_COLON, + STATE(7437), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -776498,7 +773374,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [323276] = 12, + [320808] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -776519,9 +773395,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11347), 1, - anon_sym_SEMI, - STATE(7501), 9, + ACTIONS(11273), 1, + sym_raw_string_content, + STATE(7438), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -776531,7 +773407,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [323321] = 12, + [320853] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -776552,9 +773428,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11349), 1, - anon_sym_RBRACK, - STATE(7502), 9, + ACTIONS(11275), 1, + anon_sym_SEMI, + STATE(7439), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -776564,7 +773440,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [323366] = 12, + [320898] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -776585,9 +773461,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11351), 1, + ACTIONS(11277), 1, anon_sym_SEMI, - STATE(7503), 9, + STATE(7440), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -776597,7 +773473,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [323411] = 12, + [320943] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -776618,9 +773494,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11353), 1, - sym_raw_string_end, - STATE(7504), 9, + ACTIONS(11279), 1, + anon_sym_RBRACK, + STATE(7441), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -776630,7 +773506,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [323456] = 12, + [320988] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -776651,9 +773527,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11355), 1, - sym__optional_semi, - STATE(7505), 9, + ACTIONS(11281), 1, + anon_sym_RPAREN, + STATE(7442), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -776663,7 +773539,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [323501] = 12, + [321033] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -776684,9 +773560,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11357), 1, - sym__optional_semi, - STATE(7506), 9, + ACTIONS(11283), 1, + aux_sym_preproc_if_token3, + STATE(7443), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -776696,7 +773572,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [323546] = 12, + [321078] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -776717,9 +773593,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11359), 1, - anon_sym_EQ_GT, - STATE(7507), 9, + ACTIONS(11285), 1, + anon_sym_SEMI, + STATE(7444), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -776729,7 +773605,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [323591] = 12, + [321123] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -776750,9 +773626,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11361), 1, - anon_sym_GT, - STATE(7508), 9, + ACTIONS(11287), 1, + anon_sym_SEMI, + STATE(7445), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -776762,7 +773638,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [323636] = 12, + [321168] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -776783,9 +773659,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(7509), 9, + ACTIONS(11289), 1, + anon_sym_EQ_GT, + STATE(7446), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -776795,7 +773671,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [323681] = 12, + [321213] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -776816,9 +773692,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10668), 1, - anon_sym_RBRACE, - STATE(7510), 9, + ACTIONS(11291), 1, + anon_sym_SEMI, + STATE(7447), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -776828,7 +773704,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [323726] = 12, + [321258] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -776849,9 +773725,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(7511), 9, + ACTIONS(9573), 1, + anon_sym_COMMA, + STATE(7448), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -776861,7 +773737,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [323771] = 12, + [321303] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -776882,9 +773758,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11367), 1, - sym__optional_semi, - STATE(7512), 9, + ACTIONS(11293), 1, + sym_interpolation_start_quote, + STATE(7449), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -776894,30 +773770,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [323816] = 12, - ACTIONS(9097), 1, + [321348] = 12, + ACTIONS(3), 1, aux_sym_preproc_region_token1, - ACTIONS(9099), 1, + ACTIONS(5), 1, aux_sym_preproc_endregion_token1, - ACTIONS(9101), 1, + ACTIONS(7), 1, aux_sym_preproc_line_token1, - ACTIONS(9103), 1, + ACTIONS(9), 1, aux_sym_preproc_pragma_token1, - ACTIONS(9105), 1, + ACTIONS(11), 1, aux_sym_preproc_nullable_token1, - ACTIONS(9107), 1, + ACTIONS(13), 1, aux_sym_preproc_error_token1, - ACTIONS(9109), 1, + ACTIONS(15), 1, aux_sym_preproc_warning_token1, - ACTIONS(9111), 1, + ACTIONS(17), 1, aux_sym_preproc_define_token1, - ACTIONS(9113), 1, + ACTIONS(19), 1, aux_sym_preproc_undef_token1, - ACTIONS(9115), 1, + ACTIONS(21), 1, sym_comment, - ACTIONS(10221), 1, - aux_sym_preproc_if_token2, - STATE(7513), 9, + ACTIONS(10521), 1, + anon_sym_RBRACE, + STATE(7450), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -776927,7 +773803,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [323861] = 12, + [321393] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -776948,9 +773824,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11369), 1, + ACTIONS(11295), 1, anon_sym_GT, - STATE(7514), 9, + STATE(7451), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -776960,7 +773836,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [323906] = 12, + [321438] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -776981,9 +773857,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10676), 1, + ACTIONS(7835), 1, anon_sym_RBRACE, - STATE(7515), 9, + STATE(7452), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -776993,7 +773869,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [323951] = 12, + [321483] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -777014,9 +773890,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11371), 1, + ACTIONS(11297), 1, anon_sym_EQ_GT, - STATE(7516), 9, + STATE(7453), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -777026,7 +773902,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [323996] = 12, + [321528] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -777047,9 +773923,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11373), 1, - anon_sym_SEMI, - STATE(7517), 9, + ACTIONS(11299), 1, + anon_sym_GT, + STATE(7454), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -777059,7 +773935,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [324041] = 12, + [321573] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -777080,9 +773956,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4885), 1, - aux_sym_preproc_if_token3, - STATE(7518), 9, + ACTIONS(11301), 1, + anon_sym_EQ_GT, + STATE(7455), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -777092,7 +773968,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [324086] = 12, + [321618] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -777113,9 +773989,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10432), 1, - anon_sym_RBRACE, - STATE(7519), 9, + ACTIONS(11303), 1, + anon_sym_EQ_GT, + STATE(7456), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -777125,30 +774001,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [324131] = 12, - ACTIONS(9097), 1, + [321663] = 12, + ACTIONS(3), 1, aux_sym_preproc_region_token1, - ACTIONS(9099), 1, + ACTIONS(5), 1, aux_sym_preproc_endregion_token1, - ACTIONS(9101), 1, + ACTIONS(7), 1, aux_sym_preproc_line_token1, - ACTIONS(9103), 1, + ACTIONS(9), 1, aux_sym_preproc_pragma_token1, - ACTIONS(9105), 1, + ACTIONS(11), 1, aux_sym_preproc_nullable_token1, - ACTIONS(9107), 1, + ACTIONS(13), 1, aux_sym_preproc_error_token1, - ACTIONS(9109), 1, + ACTIONS(15), 1, aux_sym_preproc_warning_token1, - ACTIONS(9111), 1, + ACTIONS(17), 1, aux_sym_preproc_define_token1, - ACTIONS(9113), 1, + ACTIONS(19), 1, aux_sym_preproc_undef_token1, - ACTIONS(9115), 1, + ACTIONS(21), 1, sym_comment, - ACTIONS(11375), 1, - aux_sym_preproc_if_token2, - STATE(7520), 9, + ACTIONS(11305), 1, + sym_integer_literal, + STATE(7457), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -777158,7 +774034,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [324176] = 12, + [321708] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -777179,9 +774055,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11377), 1, - ts_builtin_sym_end, - STATE(7521), 9, + ACTIONS(11307), 1, + anon_sym_EQ_GT, + STATE(7458), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -777191,7 +774067,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [324221] = 12, + [321753] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -777212,9 +774088,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11379), 1, - anon_sym_EQ_GT, - STATE(7522), 9, + ACTIONS(11309), 1, + aux_sym_preproc_if_token3, + STATE(7459), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -777224,7 +774100,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [324266] = 12, + [321798] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -777245,9 +774121,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11381), 1, + ACTIONS(11311), 1, anon_sym_EQ_GT, - STATE(7523), 9, + STATE(7460), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -777257,7 +774133,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [324311] = 12, + [321843] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -777278,9 +774154,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11383), 1, - anon_sym_RPAREN, - STATE(7524), 9, + ACTIONS(11313), 1, + anon_sym_LPAREN, + STATE(7461), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -777290,7 +774166,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [324356] = 12, + [321888] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -777311,9 +774187,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(7525), 9, + ACTIONS(11315), 1, + anon_sym_RPAREN, + STATE(7462), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -777323,7 +774199,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [324401] = 12, + [321933] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -777344,9 +774220,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11387), 1, + ACTIONS(8667), 1, anon_sym_RPAREN, - STATE(7526), 9, + STATE(7463), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -777356,7 +774232,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [324446] = 12, + [321978] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -777377,9 +774253,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11389), 1, - anon_sym_EQ_GT, - STATE(7527), 9, + ACTIONS(11317), 1, + anon_sym_RPAREN, + STATE(7464), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -777389,7 +774265,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [324491] = 12, + [322023] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -777410,9 +774286,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10664), 1, - anon_sym_RBRACE, - STATE(7528), 9, + ACTIONS(11319), 1, + anon_sym_SEMI, + STATE(7465), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -777422,7 +774298,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [324536] = 12, + [322068] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -777443,9 +774319,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11391), 1, - anon_sym_EQ_GT, - STATE(7529), 9, + ACTIONS(11321), 1, + anon_sym_GT, + STATE(7466), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -777455,7 +774331,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [324581] = 12, + [322113] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -777476,9 +774352,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11393), 1, - anon_sym_EQ_GT, - STATE(7530), 9, + ACTIONS(11323), 1, + anon_sym_SEMI, + STATE(7467), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -777488,7 +774364,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [324626] = 12, + [322158] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -777509,9 +774385,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11395), 1, - anon_sym_EQ_GT, - STATE(7531), 9, + ACTIONS(11325), 1, + anon_sym_SEMI, + STATE(7468), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -777521,7 +774397,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [324671] = 12, + [322203] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -777542,9 +774418,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11397), 1, - sym__optional_semi, - STATE(7532), 9, + ACTIONS(11327), 1, + aux_sym_preproc_if_token3, + STATE(7469), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -777554,7 +774430,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [324716] = 12, + [322248] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -777575,9 +774451,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11399), 1, + ACTIONS(11329), 1, anon_sym_EQ_GT, - STATE(7533), 9, + STATE(7470), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -777587,7 +774463,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [324761] = 12, + [322293] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -777608,9 +774484,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11401), 1, - anon_sym_while, - STATE(7534), 9, + ACTIONS(10539), 1, + anon_sym_RBRACE, + STATE(7471), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -777620,7 +774496,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [324806] = 12, + [322338] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -777641,9 +774517,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11403), 1, - anon_sym_RPAREN, - STATE(7535), 9, + ACTIONS(11331), 1, + sym_interpolation_start_quote, + STATE(7472), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -777653,7 +774529,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [324851] = 12, + [322383] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -777674,9 +774550,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(7536), 9, + ACTIONS(11333), 1, + anon_sym_RPAREN, + STATE(7473), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -777686,7 +774562,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [324896] = 12, + [322428] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -777707,9 +774583,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11407), 1, - anon_sym_RPAREN, - STATE(7537), 9, + ACTIONS(11335), 1, + aux_sym_preproc_if_token3, + STATE(7474), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -777719,7 +774595,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [324941] = 12, + [322473] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -777740,9 +774616,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11409), 1, + ACTIONS(11337), 1, anon_sym_EQ_GT, - STATE(7538), 9, + STATE(7475), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -777752,7 +774628,40 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [324986] = 12, + [322518] = 12, + ACTIONS(9077), 1, + aux_sym_preproc_region_token1, + ACTIONS(9079), 1, + aux_sym_preproc_endregion_token1, + ACTIONS(9081), 1, + aux_sym_preproc_line_token1, + ACTIONS(9083), 1, + aux_sym_preproc_pragma_token1, + ACTIONS(9085), 1, + aux_sym_preproc_nullable_token1, + ACTIONS(9087), 1, + aux_sym_preproc_error_token1, + ACTIONS(9089), 1, + aux_sym_preproc_warning_token1, + ACTIONS(9091), 1, + aux_sym_preproc_define_token1, + ACTIONS(9093), 1, + aux_sym_preproc_undef_token1, + ACTIONS(9095), 1, + sym_comment, + ACTIONS(11339), 1, + sym_preproc_arg, + STATE(7476), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + [322563] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -777773,9 +774682,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(7280), 1, - anon_sym_RBRACE, - STATE(7539), 9, + ACTIONS(11341), 1, + aux_sym_preproc_if_token3, + STATE(7477), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -777785,7 +774694,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [325031] = 12, + [322608] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -777806,9 +774715,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11411), 1, - sym__optional_semi, - STATE(7540), 9, + ACTIONS(11343), 1, + aux_sym_preproc_if_token3, + STATE(7478), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -777818,7 +774727,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [325076] = 12, + [322653] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -777839,9 +774748,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11413), 1, - anon_sym_RPAREN, - STATE(7541), 9, + ACTIONS(11345), 1, + aux_sym_preproc_if_token3, + STATE(7479), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -777851,7 +774760,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [325121] = 12, + [322698] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -777872,9 +774781,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10923), 1, - anon_sym_in, - STATE(7542), 9, + ACTIONS(11347), 1, + aux_sym_preproc_if_token3, + STATE(7480), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -777884,7 +774793,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [325166] = 12, + [322743] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -777905,9 +774814,42 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10296), 1, - anon_sym_RBRACE, - STATE(7543), 9, + ACTIONS(11349), 1, + aux_sym_preproc_if_token3, + STATE(7481), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + [322788] = 12, + ACTIONS(9077), 1, + aux_sym_preproc_region_token1, + ACTIONS(9079), 1, + aux_sym_preproc_endregion_token1, + ACTIONS(9081), 1, + aux_sym_preproc_line_token1, + ACTIONS(9083), 1, + aux_sym_preproc_pragma_token1, + ACTIONS(9085), 1, + aux_sym_preproc_nullable_token1, + ACTIONS(9087), 1, + aux_sym_preproc_error_token1, + ACTIONS(9089), 1, + aux_sym_preproc_warning_token1, + ACTIONS(9091), 1, + aux_sym_preproc_define_token1, + ACTIONS(9093), 1, + aux_sym_preproc_undef_token1, + ACTIONS(9095), 1, + sym_comment, + ACTIONS(11351), 1, + aux_sym_preproc_if_token2, + STATE(7482), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -777917,7 +774859,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [325211] = 12, + [322833] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -777938,9 +774880,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11415), 1, - anon_sym_GT, - STATE(7544), 9, + ACTIONS(4867), 1, + aux_sym_preproc_if_token3, + STATE(7483), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -777950,7 +774892,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [325256] = 12, + [322878] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -777971,9 +774913,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11417), 1, - anon_sym_STAR, - STATE(7545), 9, + ACTIONS(11353), 1, + aux_sym_preproc_if_token3, + STATE(7484), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -777983,7 +774925,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [325301] = 12, + [322923] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -778004,9 +774946,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11419), 1, - anon_sym_STAR, - STATE(7546), 9, + ACTIONS(11355), 1, + anon_sym_EQ_GT, + STATE(7485), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -778016,7 +774958,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [325346] = 12, + [322968] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -778037,9 +774979,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(7547), 9, + ACTIONS(10545), 1, + anon_sym_RBRACE, + STATE(7486), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -778049,7 +774991,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [325391] = 12, + [323013] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -778070,9 +775012,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11423), 1, - anon_sym_SEMI, - STATE(7548), 9, + ACTIONS(11357), 1, + anon_sym_EQ_GT, + STATE(7487), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -778082,7 +775024,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [325436] = 12, + [323058] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -778103,9 +775045,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11425), 1, - anon_sym_EQ_GT, - STATE(7549), 9, + ACTIONS(11359), 1, + anon_sym_RBRACK, + STATE(7488), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -778115,7 +775057,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [325481] = 12, + [323103] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -778136,9 +775078,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11427), 1, - anon_sym_DASH, - STATE(7550), 9, + ACTIONS(11361), 1, + anon_sym_SEMI, + STATE(7489), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -778148,7 +775090,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [325526] = 12, + [323148] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -778169,9 +775111,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10436), 1, + ACTIONS(11363), 1, anon_sym_RBRACE, - STATE(7551), 9, + STATE(7490), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -778181,7 +775123,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [325571] = 12, + [323193] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -778202,9 +775144,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11429), 1, + ACTIONS(11365), 1, anon_sym_EQ_GT, - STATE(7552), 9, + STATE(7491), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -778214,7 +775156,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [325616] = 12, + [323238] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -778235,9 +775177,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11431), 1, - aux_sym_preproc_if_token3, - STATE(7553), 9, + ACTIONS(11367), 1, + anon_sym_RBRACK, + STATE(7492), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -778247,7 +775189,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [325661] = 12, + [323283] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -778268,9 +775210,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11433), 1, - anon_sym_LPAREN, - STATE(7554), 9, + ACTIONS(11369), 1, + anon_sym_SEMI, + STATE(7493), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -778280,7 +775222,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [325706] = 12, + [323328] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -778301,9 +775243,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11435), 1, - anon_sym_LPAREN, - STATE(7555), 9, + ACTIONS(11371), 1, + aux_sym_preproc_if_token3, + STATE(7494), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -778313,7 +775255,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [325751] = 12, + [323373] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -778334,9 +775276,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11437), 1, - anon_sym_LPAREN, - STATE(7556), 9, + ACTIONS(11373), 1, + anon_sym_RPAREN, + STATE(7495), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -778346,7 +775288,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [325796] = 12, + [323418] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -778367,9 +775309,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11439), 1, - anon_sym_LPAREN, - STATE(7557), 9, + ACTIONS(11375), 1, + anon_sym_EQ_GT, + STATE(7496), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -778379,7 +775321,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [325841] = 12, + [323463] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -778400,9 +775342,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11441), 1, - anon_sym_LPAREN, - STATE(7558), 9, + ACTIONS(11377), 1, + anon_sym_SEMI, + STATE(7497), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -778412,7 +775354,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [325886] = 12, + [323508] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -778433,9 +775375,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11443), 1, - anon_sym_LPAREN, - STATE(7559), 9, + ACTIONS(10943), 1, + anon_sym_LT, + STATE(7498), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -778445,7 +775387,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [325931] = 12, + [323553] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -778466,9 +775408,42 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9653), 1, + ACTIONS(11379), 1, + aux_sym_preproc_if_token3, + STATE(7499), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + [323598] = 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(11381), 1, anon_sym_COMMA, - STATE(7560), 9, + STATE(7500), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -778478,7 +775453,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [325976] = 12, + [323643] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -778499,9 +775474,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11445), 1, + ACTIONS(11383), 1, anon_sym_LPAREN, - STATE(7561), 9, + STATE(7501), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -778511,7 +775486,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [326021] = 12, + [323688] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -778532,9 +775507,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11447), 1, - anon_sym_RBRACE, - STATE(7562), 9, + ACTIONS(11385), 1, + anon_sym_LPAREN, + STATE(7502), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -778544,7 +775519,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [326066] = 12, + [323733] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -778565,9 +775540,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11449), 1, - anon_sym_EQ_GT, - STATE(7563), 9, + ACTIONS(11387), 1, + anon_sym_LPAREN, + STATE(7503), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -778577,7 +775552,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [326111] = 12, + [323778] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -778598,9 +775573,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11451), 1, - anon_sym_EQ_GT, - STATE(7564), 9, + ACTIONS(11389), 1, + anon_sym_LPAREN, + STATE(7504), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -778610,7 +775585,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [326156] = 12, + [323823] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -778631,9 +775606,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10933), 1, - anon_sym_LT, - STATE(7565), 9, + ACTIONS(11391), 1, + anon_sym_LPAREN, + STATE(7505), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -778643,30 +775618,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [326201] = 12, - ACTIONS(5152), 1, - aux_sym_preproc_if_token2, - ACTIONS(9097), 1, + [323868] = 12, + ACTIONS(3), 1, aux_sym_preproc_region_token1, - ACTIONS(9099), 1, + ACTIONS(5), 1, aux_sym_preproc_endregion_token1, - ACTIONS(9101), 1, + ACTIONS(7), 1, aux_sym_preproc_line_token1, - ACTIONS(9103), 1, + ACTIONS(9), 1, aux_sym_preproc_pragma_token1, - ACTIONS(9105), 1, + ACTIONS(11), 1, aux_sym_preproc_nullable_token1, - ACTIONS(9107), 1, + ACTIONS(13), 1, aux_sym_preproc_error_token1, - ACTIONS(9109), 1, + ACTIONS(15), 1, aux_sym_preproc_warning_token1, - ACTIONS(9111), 1, + ACTIONS(17), 1, aux_sym_preproc_define_token1, - ACTIONS(9113), 1, + ACTIONS(19), 1, aux_sym_preproc_undef_token1, - ACTIONS(9115), 1, + ACTIONS(21), 1, sym_comment, - STATE(7566), 9, + ACTIONS(11393), 1, + anon_sym_LPAREN, + STATE(7506), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -778676,7 +775651,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [326246] = 12, + [323913] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -778697,9 +775672,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11453), 1, + ACTIONS(11395), 1, anon_sym_LPAREN, - STATE(7567), 9, + STATE(7507), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -778709,7 +775684,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [326291] = 12, + [323958] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -778730,9 +775705,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(7568), 9, + ACTIONS(11397), 1, + anon_sym_STAR, + STATE(7508), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -778742,7 +775717,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [326336] = 12, + [324003] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -778763,9 +775738,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11457), 1, - anon_sym_SQUOTE, - STATE(7569), 9, + ACTIONS(11399), 1, + anon_sym_LPAREN, + STATE(7509), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -778775,7 +775750,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [326381] = 12, + [324048] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -778796,9 +775771,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11459), 1, - anon_sym_SEMI, - STATE(7570), 9, + ACTIONS(11401), 1, + anon_sym_RBRACE, + STATE(7510), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -778808,30 +775783,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [326426] = 12, - ACTIONS(3), 1, + [324093] = 12, + ACTIONS(9077), 1, aux_sym_preproc_region_token1, - ACTIONS(5), 1, + ACTIONS(9079), 1, aux_sym_preproc_endregion_token1, - ACTIONS(7), 1, + ACTIONS(9081), 1, aux_sym_preproc_line_token1, - ACTIONS(9), 1, + ACTIONS(9083), 1, aux_sym_preproc_pragma_token1, - ACTIONS(11), 1, + ACTIONS(9085), 1, aux_sym_preproc_nullable_token1, - ACTIONS(13), 1, + ACTIONS(9087), 1, aux_sym_preproc_error_token1, - ACTIONS(15), 1, + ACTIONS(9089), 1, aux_sym_preproc_warning_token1, - ACTIONS(17), 1, + ACTIONS(9091), 1, aux_sym_preproc_define_token1, - ACTIONS(19), 1, + ACTIONS(9093), 1, aux_sym_preproc_undef_token1, - ACTIONS(21), 1, + ACTIONS(9095), 1, sym_comment, - ACTIONS(9641), 1, - anon_sym_EQ, - STATE(7571), 9, + ACTIONS(11403), 1, + aux_sym_preproc_if_token2, + STATE(7511), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -778841,7 +775816,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [326471] = 12, + [324138] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -778862,9 +775837,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11461), 1, - sym__optional_semi, - STATE(7572), 9, + ACTIONS(11405), 1, + anon_sym_LT, + STATE(7512), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -778874,7 +775849,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [326516] = 12, + [324183] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -778895,9 +775870,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11463), 1, - anon_sym_LT, - STATE(7573), 9, + ACTIONS(11407), 1, + anon_sym_SQUOTE, + STATE(7513), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -778907,7 +775882,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [326561] = 12, + [324228] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -778928,9 +775903,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11465), 1, - anon_sym_COMMA, - STATE(7574), 9, + ACTIONS(11409), 1, + sym_integer_literal, + STATE(7514), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -778940,7 +775915,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [326606] = 12, + [324273] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -778961,9 +775936,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11467), 1, - anon_sym_EQ_GT, - STATE(7575), 9, + ACTIONS(11411), 1, + anon_sym_SEMI, + STATE(7515), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -778973,7 +775948,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [326651] = 12, + [324318] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -778994,9 +775969,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11469), 1, - sym__optional_semi, - STATE(7576), 9, + ACTIONS(11413), 1, + anon_sym_EQ_GT, + STATE(7516), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -779006,7 +775981,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [326696] = 12, + [324363] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -779027,9 +776002,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11471), 1, + ACTIONS(9639), 1, anon_sym_EQ, - STATE(7577), 9, + STATE(7517), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -779039,30 +776014,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [326741] = 12, - ACTIONS(9097), 1, + [324408] = 12, + ACTIONS(3), 1, aux_sym_preproc_region_token1, - ACTIONS(9099), 1, + ACTIONS(5), 1, aux_sym_preproc_endregion_token1, - ACTIONS(9101), 1, + ACTIONS(7), 1, aux_sym_preproc_line_token1, - ACTIONS(9103), 1, + ACTIONS(9), 1, aux_sym_preproc_pragma_token1, - ACTIONS(9105), 1, + ACTIONS(11), 1, aux_sym_preproc_nullable_token1, - ACTIONS(9107), 1, + ACTIONS(13), 1, aux_sym_preproc_error_token1, - ACTIONS(9109), 1, + ACTIONS(15), 1, aux_sym_preproc_warning_token1, - ACTIONS(9111), 1, + ACTIONS(17), 1, aux_sym_preproc_define_token1, - ACTIONS(9113), 1, + ACTIONS(19), 1, aux_sym_preproc_undef_token1, - ACTIONS(9115), 1, + ACTIONS(21), 1, sym_comment, - ACTIONS(11473), 1, - sym_preproc_arg, - STATE(7578), 9, + ACTIONS(11415), 1, + sym_interpolation_start_quote, + STATE(7518), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -779072,7 +776047,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [326786] = 12, + [324453] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -779093,9 +776068,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11475), 1, - anon_sym_SEMI, - STATE(7579), 9, + ACTIONS(11417), 1, + anon_sym_LT, + STATE(7519), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -779105,7 +776080,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [326831] = 12, + [324498] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -779126,9 +776101,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11477), 1, - sym__optional_semi, - STATE(7580), 9, + ACTIONS(11419), 1, + anon_sym_EQ_GT, + STATE(7520), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -779138,7 +776113,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [326876] = 12, + [324543] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -779159,9 +776134,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11479), 1, - anon_sym_in, - STATE(7581), 9, + ACTIONS(11421), 1, + anon_sym_SEMI, + STATE(7521), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -779171,7 +776146,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [326921] = 12, + [324588] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -779192,9 +776167,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11481), 1, - anon_sym_LT, - STATE(7582), 9, + ACTIONS(11423), 1, + anon_sym_EQ, + STATE(7522), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -779204,7 +776179,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [326966] = 12, + [324633] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -779225,9 +776200,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11483), 1, - anon_sym_COMMA, - STATE(7583), 9, + ACTIONS(11425), 1, + anon_sym_SEMI, + STATE(7523), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -779237,7 +776212,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [327011] = 12, + [324678] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -779258,9 +776233,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11485), 1, - sym__optional_semi, - STATE(7584), 9, + ACTIONS(11427), 1, + aux_sym_preproc_if_token3, + STATE(7524), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -779270,7 +776245,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [327056] = 12, + [324723] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -779291,9 +776266,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11487), 1, - sym__optional_semi, - STATE(7585), 9, + ACTIONS(10957), 1, + anon_sym_in, + STATE(7525), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -779303,7 +776278,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [327101] = 12, + [324768] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -779324,9 +776299,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11489), 1, - sym__optional_semi, - STATE(7586), 9, + ACTIONS(11429), 1, + sym_interpolation_start_quote, + STATE(7526), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -779336,7 +776311,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [327146] = 12, + [324813] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -779357,9 +776332,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11491), 1, + ACTIONS(11431), 1, anon_sym_EQ_GT, - STATE(7587), 9, + STATE(7527), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -779369,30 +776344,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [327191] = 12, - ACTIONS(9097), 1, + [324858] = 12, + ACTIONS(3), 1, aux_sym_preproc_region_token1, - ACTIONS(9099), 1, + ACTIONS(5), 1, aux_sym_preproc_endregion_token1, - ACTIONS(9101), 1, + ACTIONS(7), 1, aux_sym_preproc_line_token1, - ACTIONS(9103), 1, + ACTIONS(9), 1, aux_sym_preproc_pragma_token1, - ACTIONS(9105), 1, + ACTIONS(11), 1, aux_sym_preproc_nullable_token1, - ACTIONS(9107), 1, + ACTIONS(13), 1, aux_sym_preproc_error_token1, - ACTIONS(9109), 1, + ACTIONS(15), 1, aux_sym_preproc_warning_token1, - ACTIONS(9111), 1, + ACTIONS(17), 1, aux_sym_preproc_define_token1, - ACTIONS(9113), 1, + ACTIONS(19), 1, aux_sym_preproc_undef_token1, - ACTIONS(9115), 1, + ACTIONS(21), 1, sym_comment, - ACTIONS(11493), 1, - sym_preproc_arg, - STATE(7588), 9, + ACTIONS(11433), 1, + anon_sym_GT, + STATE(7528), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -779402,7 +776377,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [327236] = 12, + [324903] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -779423,9 +776398,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11495), 1, - anon_sym_LPAREN, - STATE(7589), 9, + ACTIONS(11435), 1, + anon_sym_RPAREN, + STATE(7529), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -779435,7 +776410,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [327281] = 12, + [324948] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -779456,9 +776431,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11497), 1, - anon_sym_GT, - STATE(7590), 9, + ACTIONS(11437), 1, + anon_sym_RPAREN, + STATE(7530), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -779468,7 +776443,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [327326] = 12, + [324993] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -779489,9 +776464,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11499), 1, - anon_sym_LPAREN, - STATE(7591), 9, + ACTIONS(11439), 1, + anon_sym_EQ_GT, + STATE(7531), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -779501,7 +776476,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [327371] = 12, + [325038] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -779522,9 +776497,42 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11501), 1, - anon_sym_LPAREN, - STATE(7592), 9, + ACTIONS(11441), 1, + anon_sym_SEMI, + STATE(7532), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + [325083] = 12, + ACTIONS(9077), 1, + aux_sym_preproc_region_token1, + ACTIONS(9079), 1, + aux_sym_preproc_endregion_token1, + ACTIONS(9081), 1, + aux_sym_preproc_line_token1, + ACTIONS(9083), 1, + aux_sym_preproc_pragma_token1, + ACTIONS(9085), 1, + aux_sym_preproc_nullable_token1, + ACTIONS(9087), 1, + aux_sym_preproc_error_token1, + ACTIONS(9089), 1, + aux_sym_preproc_warning_token1, + ACTIONS(9091), 1, + aux_sym_preproc_define_token1, + ACTIONS(9093), 1, + aux_sym_preproc_undef_token1, + ACTIONS(9095), 1, + sym_comment, + ACTIONS(11443), 1, + aux_sym_preproc_if_token2, + STATE(7533), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -779534,7 +776542,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [327416] = 12, + [325128] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -779555,9 +776563,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11503), 1, - anon_sym_LPAREN, - STATE(7593), 9, + ACTIONS(11445), 1, + anon_sym_GT, + STATE(7534), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -779567,7 +776575,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [327461] = 12, + [325173] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -779588,9 +776596,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11505), 1, - anon_sym_LPAREN, - STATE(7594), 9, + ACTIONS(11447), 1, + aux_sym_preproc_if_token3, + STATE(7535), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -779600,7 +776608,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [327506] = 12, + [325218] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -779621,9 +776629,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11507), 1, + ACTIONS(11449), 1, anon_sym_LPAREN, - STATE(7595), 9, + STATE(7536), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -779633,7 +776641,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [327551] = 12, + [325263] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -779654,9 +776662,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11509), 1, + ACTIONS(11451), 1, anon_sym_LPAREN, - STATE(7596), 9, + STATE(7537), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -779666,7 +776674,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [327596] = 12, + [325308] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -779687,9 +776695,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11511), 1, + ACTIONS(11453), 1, anon_sym_LPAREN, - STATE(7597), 9, + STATE(7538), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -779699,7 +776707,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [327641] = 12, + [325353] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -779720,9 +776728,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11513), 1, - anon_sym_EQ_GT, - STATE(7598), 9, + ACTIONS(11455), 1, + anon_sym_LPAREN, + STATE(7539), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -779732,7 +776740,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [327686] = 12, + [325398] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -779753,9 +776761,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11515), 1, + ACTIONS(11457), 1, anon_sym_LPAREN, - STATE(7599), 9, + STATE(7540), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -779765,7 +776773,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [327731] = 12, + [325443] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -779786,9 +776794,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11517), 1, - anon_sym_DOT, - STATE(7600), 9, + ACTIONS(11459), 1, + anon_sym_LPAREN, + STATE(7541), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -779798,7 +776806,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [327776] = 12, + [325488] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -779819,9 +776827,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11519), 1, - sym__optional_semi, - STATE(7601), 9, + ACTIONS(11461), 1, + anon_sym_LPAREN, + STATE(7542), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -779831,30 +776839,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [327821] = 12, - ACTIONS(9097), 1, + [325533] = 12, + ACTIONS(3), 1, aux_sym_preproc_region_token1, - ACTIONS(9099), 1, + ACTIONS(5), 1, aux_sym_preproc_endregion_token1, - ACTIONS(9101), 1, + ACTIONS(7), 1, aux_sym_preproc_line_token1, - ACTIONS(9103), 1, + ACTIONS(9), 1, aux_sym_preproc_pragma_token1, - ACTIONS(9105), 1, + ACTIONS(11), 1, aux_sym_preproc_nullable_token1, - ACTIONS(9107), 1, + ACTIONS(13), 1, aux_sym_preproc_error_token1, - ACTIONS(9109), 1, + ACTIONS(15), 1, aux_sym_preproc_warning_token1, - ACTIONS(9111), 1, + ACTIONS(17), 1, aux_sym_preproc_define_token1, - ACTIONS(9113), 1, + ACTIONS(19), 1, aux_sym_preproc_undef_token1, - ACTIONS(9115), 1, + ACTIONS(21), 1, sym_comment, - ACTIONS(11521), 1, - aux_sym_preproc_if_token2, - STATE(7602), 9, + ACTIONS(10568), 1, + anon_sym_RBRACE, + STATE(7543), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -779864,7 +776872,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [327866] = 12, + [325578] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -779885,9 +776893,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11523), 1, - anon_sym_SEMI, - STATE(7603), 9, + ACTIONS(11463), 1, + anon_sym_LPAREN, + STATE(7544), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -779897,7 +776905,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [327911] = 12, + [325623] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -779918,9 +776926,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(7604), 9, + ACTIONS(11465), 1, + anon_sym_SEMI, + STATE(7545), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -779930,7 +776938,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [327956] = 12, + [325668] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -779951,9 +776959,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11527), 1, - anon_sym_RBRACE, - STATE(7605), 9, + ACTIONS(11467), 1, + anon_sym_SEMI, + STATE(7546), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -779963,7 +776971,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [328001] = 12, + [325713] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -779984,9 +776992,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11529), 1, - sym__optional_semi, - STATE(7606), 9, + ACTIONS(11469), 1, + aux_sym_preproc_if_token3, + STATE(7547), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -779996,7 +777004,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [328046] = 12, + [325758] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -780017,9 +777025,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11531), 1, - anon_sym_SEMI, - STATE(7607), 9, + ACTIONS(11471), 1, + aux_sym_preproc_if_token3, + STATE(7548), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -780029,7 +777037,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [328091] = 12, + [325803] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -780050,9 +777058,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11533), 1, - anon_sym_LT, - STATE(7608), 9, + ACTIONS(11473), 1, + sym_interpolation_start_quote, + STATE(7549), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -780062,7 +777070,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [328136] = 12, + [325848] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -780083,9 +777091,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11535), 1, - anon_sym_GT, - STATE(7609), 9, + ACTIONS(11475), 1, + sym_interpolation_start_quote, + STATE(7550), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -780095,7 +777103,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [328181] = 12, + [325893] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -780116,9 +777124,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11537), 1, - sym__optional_semi, - STATE(7610), 9, + ACTIONS(11477), 1, + anon_sym_STAR, + STATE(7551), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -780128,7 +777136,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [328226] = 12, + [325938] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -780149,9 +777157,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11539), 1, - anon_sym_SQUOTE, - STATE(7611), 9, + ACTIONS(11479), 1, + anon_sym_LT, + STATE(7552), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -780161,7 +777169,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [328271] = 12, + [325983] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -780182,9 +777190,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11541), 1, - anon_sym_SEMI, - STATE(7612), 9, + ACTIONS(11481), 1, + sym_raw_string_content, + STATE(7553), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -780194,7 +777202,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [328316] = 12, + [326028] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -780215,9 +777223,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11543), 1, - anon_sym_SEMI, - STATE(7613), 9, + ACTIONS(11483), 1, + sym_interpolation_start_quote, + STATE(7554), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -780227,7 +777235,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [328361] = 12, + [326073] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -780248,9 +777256,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8356), 1, + ACTIONS(11485), 1, anon_sym_RPAREN, - STATE(7614), 9, + STATE(7555), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -780260,7 +777268,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [328406] = 12, + [326118] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -780281,9 +777289,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8555), 1, - anon_sym_RPAREN, - STATE(7615), 9, + ACTIONS(11487), 1, + sym_raw_string_end, + STATE(7556), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -780293,7 +777301,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [328451] = 12, + [326163] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -780314,9 +777322,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11545), 1, - sym__optional_semi, - STATE(7616), 9, + ACTIONS(11489), 1, + anon_sym_EQ_GT, + STATE(7557), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -780326,7 +777334,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [328496] = 12, + [326208] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -780347,9 +777355,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11547), 1, + ACTIONS(11491), 1, anon_sym_RPAREN, - STATE(7617), 9, + STATE(7558), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -780359,7 +777367,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [328541] = 12, + [326253] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -780380,9 +777388,42 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11549), 1, - anon_sym_SEMI, - STATE(7618), 9, + ACTIONS(11493), 1, + anon_sym_RPAREN, + STATE(7559), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + [326298] = 12, + ACTIONS(9077), 1, + aux_sym_preproc_region_token1, + ACTIONS(9079), 1, + aux_sym_preproc_endregion_token1, + ACTIONS(9081), 1, + aux_sym_preproc_line_token1, + ACTIONS(9083), 1, + aux_sym_preproc_pragma_token1, + ACTIONS(9085), 1, + aux_sym_preproc_nullable_token1, + ACTIONS(9087), 1, + aux_sym_preproc_error_token1, + ACTIONS(9089), 1, + aux_sym_preproc_warning_token1, + ACTIONS(9091), 1, + aux_sym_preproc_define_token1, + ACTIONS(9093), 1, + aux_sym_preproc_undef_token1, + ACTIONS(9095), 1, + sym_comment, + ACTIONS(10507), 1, + aux_sym_preproc_if_token2, + STATE(7560), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -780392,7 +777433,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [328586] = 12, + [326343] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -780413,9 +777454,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11551), 1, + ACTIONS(11495), 1, anon_sym_EQ_GT, - STATE(7619), 9, + STATE(7561), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -780425,30 +777466,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [328631] = 12, - ACTIONS(3), 1, + [326388] = 12, + ACTIONS(9077), 1, aux_sym_preproc_region_token1, - ACTIONS(5), 1, + ACTIONS(9079), 1, aux_sym_preproc_endregion_token1, - ACTIONS(7), 1, + ACTIONS(9081), 1, aux_sym_preproc_line_token1, - ACTIONS(9), 1, + ACTIONS(9083), 1, aux_sym_preproc_pragma_token1, - ACTIONS(11), 1, + ACTIONS(9085), 1, aux_sym_preproc_nullable_token1, - ACTIONS(13), 1, + ACTIONS(9087), 1, aux_sym_preproc_error_token1, - ACTIONS(15), 1, + ACTIONS(9089), 1, aux_sym_preproc_warning_token1, - ACTIONS(17), 1, + ACTIONS(9091), 1, aux_sym_preproc_define_token1, - ACTIONS(19), 1, + ACTIONS(9093), 1, aux_sym_preproc_undef_token1, - ACTIONS(21), 1, + ACTIONS(9095), 1, sym_comment, - ACTIONS(11553), 1, - sym_interpolation_close_brace, - STATE(7620), 9, + ACTIONS(11497), 1, + aux_sym_preproc_if_token2, + STATE(7562), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -780458,7 +777499,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [328676] = 12, + [326433] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -780479,9 +777520,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11555), 1, - anon_sym_LPAREN, - STATE(7621), 9, + ACTIONS(11499), 1, + sym__optional_semi, + STATE(7563), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -780491,30 +777532,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [328721] = 12, - ACTIONS(3), 1, + [326478] = 12, + ACTIONS(9077), 1, aux_sym_preproc_region_token1, - ACTIONS(5), 1, + ACTIONS(9079), 1, aux_sym_preproc_endregion_token1, - ACTIONS(7), 1, + ACTIONS(9081), 1, aux_sym_preproc_line_token1, - ACTIONS(9), 1, + ACTIONS(9083), 1, aux_sym_preproc_pragma_token1, - ACTIONS(11), 1, + ACTIONS(9085), 1, aux_sym_preproc_nullable_token1, - ACTIONS(13), 1, + ACTIONS(9087), 1, aux_sym_preproc_error_token1, - ACTIONS(15), 1, + ACTIONS(9089), 1, aux_sym_preproc_warning_token1, - ACTIONS(17), 1, + ACTIONS(9091), 1, aux_sym_preproc_define_token1, - ACTIONS(19), 1, + ACTIONS(9093), 1, aux_sym_preproc_undef_token1, - ACTIONS(21), 1, + ACTIONS(9095), 1, sym_comment, - ACTIONS(11557), 1, - anon_sym_LPAREN, - STATE(7622), 9, + ACTIONS(11501), 1, + aux_sym_interpolation_format_clause_token1, + STATE(7564), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -780524,7 +777565,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [328766] = 12, + [326523] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -780545,9 +777586,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11559), 1, - anon_sym_LPAREN, - STATE(7623), 9, + ACTIONS(11503), 1, + aux_sym_preproc_if_token3, + STATE(7565), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -780557,7 +777598,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [328811] = 12, + [326568] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -780578,9 +777619,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11561), 1, + ACTIONS(11505), 1, anon_sym_LPAREN, - STATE(7624), 9, + STATE(7566), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -780590,7 +777631,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [328856] = 12, + [326613] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -780611,9 +777652,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11563), 1, + ACTIONS(11507), 1, anon_sym_LPAREN, - STATE(7625), 9, + STATE(7567), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -780623,7 +777664,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [328901] = 12, + [326658] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -780644,9 +777685,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(3667), 1, - anon_sym_EQ_GT, - STATE(7626), 9, + ACTIONS(11509), 1, + anon_sym_LPAREN, + STATE(7568), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -780656,7 +777697,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [328946] = 12, + [326703] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -780677,9 +777718,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11565), 1, + ACTIONS(11511), 1, anon_sym_LPAREN, - STATE(7627), 9, + STATE(7569), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -780689,7 +777730,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [328991] = 12, + [326748] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -780710,9 +777751,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8728), 1, - anon_sym_RPAREN, - STATE(7628), 9, + ACTIONS(11513), 1, + anon_sym_in, + STATE(7570), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -780722,7 +777763,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [329036] = 12, + [326793] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -780743,9 +777784,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11567), 1, - sym_interpolation_start_quote, - STATE(7629), 9, + ACTIONS(11515), 1, + anon_sym_LPAREN, + STATE(7571), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -780755,7 +777796,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [329081] = 12, + [326838] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -780776,9 +777817,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11569), 1, - sym_interpolation_start_quote, - STATE(7630), 9, + ACTIONS(11517), 1, + anon_sym_SEMI, + STATE(7572), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -780788,7 +777829,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [329126] = 12, + [326883] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -780809,9 +777850,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11571), 1, - sym__optional_semi, - STATE(7631), 9, + ACTIONS(11519), 1, + anon_sym_SEMI, + STATE(7573), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -780821,7 +777862,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [329171] = 12, + [326928] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -780842,9 +777883,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11573), 1, - anon_sym_RBRACK, - STATE(7632), 9, + ACTIONS(11521), 1, + anon_sym_EQ_GT, + STATE(7574), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -780854,7 +777895,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [329216] = 12, + [326973] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -780875,9 +777916,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11575), 1, - anon_sym_RPAREN, - STATE(7633), 9, + ACTIONS(11523), 1, + anon_sym_GT, + STATE(7575), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -780887,7 +777928,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [329261] = 12, + [327018] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -780908,9 +777949,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11577), 1, - sym__optional_semi, - STATE(7634), 9, + ACTIONS(11525), 1, + sym_interpolation_start_quote, + STATE(7576), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -780920,7 +777961,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [329306] = 12, + [327063] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -780941,9 +777982,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11579), 1, - anon_sym_LT, - STATE(7635), 9, + ACTIONS(11527), 1, + sym_raw_string_content, + STATE(7577), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -780953,7 +777994,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [329351] = 12, + [327108] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -780974,9 +778015,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11581), 1, - anon_sym_EQ_GT, - STATE(7636), 9, + ACTIONS(11529), 1, + anon_sym_LT, + STATE(7578), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -780986,7 +778027,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [329396] = 12, + [327153] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -781007,9 +778048,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11583), 1, - anon_sym_LPAREN, - STATE(7637), 9, + ACTIONS(5575), 1, + anon_sym_STAR, + STATE(7579), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -781019,7 +778060,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [329441] = 12, + [327198] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -781040,42 +778081,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11585), 1, - anon_sym_SEMI, - STATE(7638), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - [329486] = 12, - ACTIONS(9097), 1, - aux_sym_preproc_region_token1, - ACTIONS(9099), 1, - aux_sym_preproc_endregion_token1, - ACTIONS(9101), 1, - aux_sym_preproc_line_token1, - ACTIONS(9103), 1, - aux_sym_preproc_pragma_token1, - ACTIONS(9105), 1, - aux_sym_preproc_nullable_token1, - ACTIONS(9107), 1, - aux_sym_preproc_error_token1, - ACTIONS(9109), 1, - aux_sym_preproc_warning_token1, - ACTIONS(9111), 1, - aux_sym_preproc_define_token1, - ACTIONS(9113), 1, - aux_sym_preproc_undef_token1, - ACTIONS(9115), 1, - sym_comment, - ACTIONS(11587), 1, - aux_sym_interpolation_format_clause_token1, - STATE(7639), 9, + ACTIONS(11531), 1, + anon_sym_RPAREN, + STATE(7580), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -781085,7 +778093,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [329531] = 12, + [327243] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -781106,9 +778114,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11589), 1, - anon_sym_EQ_GT, - STATE(7640), 9, + ACTIONS(11533), 1, + aux_sym_preproc_if_token3, + STATE(7581), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -781118,7 +778126,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [329576] = 12, + [327288] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -781139,9 +778147,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11591), 1, - anon_sym_SEMI, - STATE(7641), 9, + ACTIONS(11535), 1, + aux_sym_preproc_if_token3, + STATE(7582), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -781151,7 +778159,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [329621] = 12, + [327333] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -781172,9 +778180,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11593), 1, - anon_sym_LT, - STATE(7642), 9, + ACTIONS(8716), 1, + anon_sym_RPAREN, + STATE(7583), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -781184,7 +778192,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [329666] = 12, + [327378] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -781205,9 +778213,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11595), 1, - sym__optional_semi, - STATE(7643), 9, + ACTIONS(11537), 1, + anon_sym_RPAREN, + STATE(7584), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -781217,7 +778225,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [329711] = 12, + [327423] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -781238,9 +778246,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11597), 1, - anon_sym_LPAREN, - STATE(7644), 9, + ACTIONS(11539), 1, + anon_sym_SEMI, + STATE(7585), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -781250,7 +778258,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [329756] = 12, + [327468] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -781271,9 +778279,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11599), 1, - anon_sym_LPAREN, - STATE(7645), 9, + ACTIONS(11541), 1, + anon_sym_GT, + STATE(7586), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -781283,7 +778291,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [329801] = 12, + [327513] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -781304,9 +778312,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11601), 1, + ACTIONS(11543), 1, anon_sym_LPAREN, - STATE(7646), 9, + STATE(7587), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -781316,7 +778324,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [329846] = 12, + [327558] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -781337,9 +778345,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11603), 1, - anon_sym_SEMI, - STATE(7647), 9, + ACTIONS(11545), 1, + anon_sym_LPAREN, + STATE(7588), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -781349,7 +778357,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [329891] = 12, + [327603] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -781370,42 +778378,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11605), 1, - anon_sym_COLON, - STATE(7648), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - [329936] = 12, - ACTIONS(9097), 1, - aux_sym_preproc_region_token1, - ACTIONS(9099), 1, - aux_sym_preproc_endregion_token1, - ACTIONS(9101), 1, - aux_sym_preproc_line_token1, - ACTIONS(9103), 1, - aux_sym_preproc_pragma_token1, - ACTIONS(9105), 1, - aux_sym_preproc_nullable_token1, - ACTIONS(9107), 1, - aux_sym_preproc_error_token1, - ACTIONS(9109), 1, - aux_sym_preproc_warning_token1, - ACTIONS(9111), 1, - aux_sym_preproc_define_token1, - ACTIONS(9113), 1, - aux_sym_preproc_undef_token1, - ACTIONS(9115), 1, - sym_comment, - ACTIONS(11607), 1, - aux_sym_preproc_if_token2, - STATE(7649), 9, + ACTIONS(11547), 1, + anon_sym_LPAREN, + STATE(7589), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -781415,7 +778390,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [329981] = 12, + [327648] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -781436,9 +778411,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11609), 1, - anon_sym_SEMI, - STATE(7650), 9, + ACTIONS(7704), 1, + anon_sym_RBRACE, + STATE(7590), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -781448,7 +778423,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [330026] = 12, + [327693] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -781469,9 +778444,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11611), 1, - anon_sym_LT, - STATE(7651), 9, + ACTIONS(10640), 1, + sym_interpolation_close_brace, + STATE(7591), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -781481,7 +778456,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [330071] = 12, + [327738] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -781502,9 +778477,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10138), 1, - anon_sym_RBRACE, - STATE(7652), 9, + ACTIONS(11549), 1, + anon_sym_EQ_GT, + STATE(7592), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -781514,7 +778489,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [330116] = 12, + [327783] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -781535,9 +778510,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11613), 1, - anon_sym_EQ_GT, - STATE(7653), 9, + ACTIONS(11551), 1, + anon_sym_SEMI, + STATE(7593), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -781547,7 +778522,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [330161] = 12, + [327828] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -781568,42 +778543,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11615), 1, - sym_interpolation_start_quote, - STATE(7654), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - [330206] = 12, - ACTIONS(9097), 1, - aux_sym_preproc_region_token1, - ACTIONS(9099), 1, - aux_sym_preproc_endregion_token1, - ACTIONS(9101), 1, - aux_sym_preproc_line_token1, - ACTIONS(9103), 1, - aux_sym_preproc_pragma_token1, - ACTIONS(9105), 1, - aux_sym_preproc_nullable_token1, - ACTIONS(9107), 1, - aux_sym_preproc_error_token1, - ACTIONS(9109), 1, - aux_sym_preproc_warning_token1, - ACTIONS(9111), 1, - aux_sym_preproc_define_token1, - ACTIONS(9113), 1, - aux_sym_preproc_undef_token1, - ACTIONS(9115), 1, - sym_comment, - ACTIONS(11617), 1, - sym_preproc_arg, - STATE(7655), 9, + ACTIONS(11553), 1, + aux_sym_preproc_if_token3, + STATE(7594), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -781613,7 +778555,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [330251] = 12, + [327873] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -781634,9 +778576,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11619), 1, - anon_sym_RBRACK, - STATE(7656), 9, + ACTIONS(11555), 1, + anon_sym_LT, + STATE(7595), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -781646,7 +778588,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [330296] = 12, + [327918] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -781667,9 +778609,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11621), 1, - anon_sym_SEMI, - STATE(7657), 9, + ACTIONS(11557), 1, + anon_sym_GT, + STATE(7596), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -781679,7 +778621,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [330341] = 12, + [327963] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -781700,9 +778642,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11623), 1, + ACTIONS(11559), 1, anon_sym_GT, - STATE(7658), 9, + STATE(7597), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -781712,7 +778654,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [330386] = 12, + [328008] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -781733,9 +778675,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11625), 1, - anon_sym_SEMI, - STATE(7659), 9, + ACTIONS(11561), 1, + aux_sym_preproc_if_token3, + STATE(7598), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -781745,7 +778687,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [330431] = 12, + [328053] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -781766,9 +778708,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11627), 1, - sym_raw_string_content, - STATE(7660), 9, + ACTIONS(11563), 1, + anon_sym_SEMI, + STATE(7599), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -781778,7 +778720,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [330476] = 12, + [328098] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -781799,9 +778741,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11629), 1, - sym__optional_semi, - STATE(7661), 9, + ACTIONS(11565), 1, + anon_sym_GT, + STATE(7600), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -781811,7 +778753,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [330521] = 12, + [328143] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -781832,9 +778774,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11631), 1, - anon_sym_STAR, - STATE(7662), 9, + ACTIONS(11567), 1, + anon_sym_SEMI, + STATE(7601), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -781844,7 +778786,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [330566] = 12, + [328188] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -781865,9 +778807,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(5619), 1, - anon_sym_STAR, - STATE(7663), 9, + ACTIONS(11569), 1, + anon_sym_LPAREN, + STATE(7602), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -781877,7 +778819,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [330611] = 12, + [328233] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -781898,9 +778840,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(7664), 9, + ACTIONS(11571), 1, + anon_sym_SEMI, + STATE(7603), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -781910,7 +778852,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [330656] = 12, + [328278] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -781931,9 +778873,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11635), 1, - anon_sym_SEMI, - STATE(7665), 9, + ACTIONS(11573), 1, + aux_sym_preproc_if_token3, + STATE(7604), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -781943,7 +778885,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [330701] = 12, + [328323] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -781964,9 +778906,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11637), 1, + ACTIONS(11575), 1, anon_sym_GT, - STATE(7666), 9, + STATE(7605), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -781976,7 +778918,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [330746] = 12, + [328368] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -781997,9 +778939,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11639), 1, - anon_sym_RPAREN, - STATE(7667), 9, + ACTIONS(11577), 1, + anon_sym_SEMI, + STATE(7606), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -782009,7 +778951,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [330791] = 12, + [328413] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -782030,9 +778972,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11641), 1, + ACTIONS(11579), 1, anon_sym_SEMI, - STATE(7668), 9, + STATE(7607), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -782042,7 +778984,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [330836] = 12, + [328458] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -782063,9 +779005,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8354), 1, - anon_sym_RPAREN, - STATE(7669), 9, + ACTIONS(11581), 1, + anon_sym_LT, + STATE(7608), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -782075,7 +779017,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [330881] = 12, + [328503] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -782096,9 +779038,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11643), 1, - anon_sym_SEMI, - STATE(7670), 9, + ACTIONS(11583), 1, + anon_sym_EQ_GT, + STATE(7609), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -782108,7 +779050,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [330926] = 12, + [328548] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -782129,9 +779071,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11645), 1, + ACTIONS(11585), 1, anon_sym_SEMI, - STATE(7671), 9, + STATE(7610), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -782141,7 +779083,40 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [330971] = 12, + [328593] = 12, + ACTIONS(4874), 1, + aux_sym_preproc_if_token2, + ACTIONS(9077), 1, + aux_sym_preproc_region_token1, + ACTIONS(9079), 1, + aux_sym_preproc_endregion_token1, + ACTIONS(9081), 1, + aux_sym_preproc_line_token1, + ACTIONS(9083), 1, + aux_sym_preproc_pragma_token1, + ACTIONS(9085), 1, + aux_sym_preproc_nullable_token1, + ACTIONS(9087), 1, + aux_sym_preproc_error_token1, + ACTIONS(9089), 1, + aux_sym_preproc_warning_token1, + ACTIONS(9091), 1, + aux_sym_preproc_define_token1, + ACTIONS(9093), 1, + aux_sym_preproc_undef_token1, + ACTIONS(9095), 1, + sym_comment, + STATE(7611), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + [328638] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -782162,9 +779137,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11647), 1, - sym__optional_semi, - STATE(7672), 9, + ACTIONS(11587), 1, + anon_sym_SQUOTE, + STATE(7612), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -782174,7 +779149,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [331016] = 12, + [328683] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -782195,9 +779170,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11649), 1, + ACTIONS(11589), 1, aux_sym_preproc_if_token3, - STATE(7673), 9, + STATE(7613), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -782207,7 +779182,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [331061] = 12, + [328728] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -782228,9 +779203,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11651), 1, + ACTIONS(11591), 1, anon_sym_EQ_GT, - STATE(7674), 9, + STATE(7614), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -782240,7 +779215,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [331106] = 12, + [328773] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -782261,9 +779236,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11653), 1, - anon_sym_LPAREN, - STATE(7675), 9, + ACTIONS(11593), 1, + anon_sym_EQ_GT, + STATE(7615), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -782273,7 +779248,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [331151] = 12, + [328818] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -782294,9 +779269,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11655), 1, - anon_sym_LT, - STATE(7676), 9, + ACTIONS(11595), 1, + anon_sym_GT, + STATE(7616), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -782306,7 +779281,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [331196] = 12, + [328863] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -782327,9 +779302,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11657), 1, - aux_sym_preproc_if_token3, - STATE(7677), 9, + ACTIONS(11597), 1, + sym_interpolation_start_quote, + STATE(7617), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -782339,7 +779314,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [331241] = 12, + [328908] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -782360,9 +779335,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11659), 1, - aux_sym_preproc_if_token3, - STATE(7678), 9, + ACTIONS(11599), 1, + anon_sym_SQUOTE, + STATE(7618), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -782372,7 +779347,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [331286] = 12, + [328953] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -782393,9 +779368,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11661), 1, - anon_sym_SEMI, - STATE(7679), 9, + ACTIONS(11601), 1, + sym_interpolation_start_quote, + STATE(7619), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -782405,7 +779380,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [331331] = 12, + [328998] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -782426,9 +779401,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(7745), 1, - anon_sym_SEMI, - STATE(7680), 9, + ACTIONS(11603), 1, + anon_sym_LT, + STATE(7620), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -782438,30 +779413,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [331376] = 12, - ACTIONS(9097), 1, + [329043] = 12, + ACTIONS(3), 1, aux_sym_preproc_region_token1, - ACTIONS(9099), 1, + ACTIONS(5), 1, aux_sym_preproc_endregion_token1, - ACTIONS(9101), 1, + ACTIONS(7), 1, aux_sym_preproc_line_token1, - ACTIONS(9103), 1, + ACTIONS(9), 1, aux_sym_preproc_pragma_token1, - ACTIONS(9105), 1, + ACTIONS(11), 1, aux_sym_preproc_nullable_token1, - ACTIONS(9107), 1, + ACTIONS(13), 1, aux_sym_preproc_error_token1, - ACTIONS(9109), 1, + ACTIONS(15), 1, aux_sym_preproc_warning_token1, - ACTIONS(9111), 1, + ACTIONS(17), 1, aux_sym_preproc_define_token1, - ACTIONS(9113), 1, + ACTIONS(19), 1, aux_sym_preproc_undef_token1, - ACTIONS(9115), 1, + ACTIONS(21), 1, sym_comment, - ACTIONS(11663), 1, - sym_preproc_arg, - STATE(7681), 9, + ACTIONS(11605), 1, + sym_interpolation_start_quote, + STATE(7621), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -782471,7 +779446,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [331421] = 12, + [329088] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -782492,9 +779467,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11665), 1, - aux_sym_preproc_if_token3, - STATE(7682), 9, + ACTIONS(11607), 1, + anon_sym_STAR, + STATE(7622), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -782504,7 +779479,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [331466] = 12, + [329133] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -782525,9 +779500,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11667), 1, - aux_sym_preproc_if_token3, - STATE(7683), 9, + ACTIONS(11609), 1, + sym_raw_string_content, + STATE(7623), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -782537,7 +779512,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [331511] = 12, + [329178] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -782558,9 +779533,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11669), 1, - anon_sym_EQ_GT, - STATE(7684), 9, + ACTIONS(11611), 1, + anon_sym_SQUOTE, + STATE(7624), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -782570,7 +779545,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [331556] = 12, + [329223] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -782591,9 +779566,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11671), 1, - anon_sym_SEMI, - STATE(7685), 9, + ACTIONS(11613), 1, + anon_sym_LPAREN, + STATE(7625), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -782603,7 +779578,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [331601] = 12, + [329268] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -782624,9 +779599,75 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11673), 1, - anon_sym_SEMI, - STATE(7686), 9, + ACTIONS(7754), 1, + anon_sym_RBRACE, + STATE(7626), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + [329313] = 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(11615), 1, + anon_sym_EQ_GT, + STATE(7627), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + [329358] = 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(11617), 1, + anon_sym_LPAREN, + STATE(7628), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -782636,7 +779677,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [331646] = 12, + [329403] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -782657,9 +779698,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11675), 1, - sym__optional_semi, - STATE(7687), 9, + ACTIONS(11619), 1, + anon_sym_GT, + STATE(7629), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -782669,7 +779710,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [331691] = 12, + [329448] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -782690,9 +779731,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11677), 1, - anon_sym_GT, - STATE(7688), 9, + ACTIONS(11621), 1, + anon_sym_COLON, + STATE(7630), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -782702,7 +779743,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [331736] = 12, + [329493] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -782723,9 +779764,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11679), 1, - anon_sym_SEMI, - STATE(7689), 9, + ACTIONS(11623), 1, + anon_sym_COLON, + STATE(7631), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -782735,7 +779776,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [331781] = 12, + [329538] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -782756,9 +779797,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11681), 1, - anon_sym_RPAREN, - STATE(7690), 9, + ACTIONS(11625), 1, + anon_sym_EQ_GT, + STATE(7632), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -782768,7 +779809,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [331826] = 12, + [329583] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -782789,9 +779830,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11683), 1, - sym__optional_semi, - STATE(7691), 9, + ACTIONS(11627), 1, + anon_sym_EQ_GT, + STATE(7633), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -782801,7 +779842,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [331871] = 12, + [329628] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -782822,9 +779863,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11685), 1, - anon_sym_LPAREN, - STATE(7692), 9, + ACTIONS(11629), 1, + anon_sym_SEMI, + STATE(7634), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -782834,7 +779875,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [331916] = 12, + [329673] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -782855,9 +779896,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11687), 1, - anon_sym_STAR, - STATE(7693), 9, + ACTIONS(11631), 1, + anon_sym_LPAREN, + STATE(7635), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -782867,30 +779908,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [331961] = 12, - ACTIONS(3), 1, + [329718] = 12, + ACTIONS(9077), 1, aux_sym_preproc_region_token1, - ACTIONS(5), 1, + ACTIONS(9079), 1, aux_sym_preproc_endregion_token1, - ACTIONS(7), 1, + ACTIONS(9081), 1, aux_sym_preproc_line_token1, - ACTIONS(9), 1, + ACTIONS(9083), 1, aux_sym_preproc_pragma_token1, - ACTIONS(11), 1, + ACTIONS(9085), 1, aux_sym_preproc_nullable_token1, - ACTIONS(13), 1, + ACTIONS(9087), 1, aux_sym_preproc_error_token1, - ACTIONS(15), 1, + ACTIONS(9089), 1, aux_sym_preproc_warning_token1, - ACTIONS(17), 1, + ACTIONS(9091), 1, aux_sym_preproc_define_token1, - ACTIONS(19), 1, + ACTIONS(9093), 1, aux_sym_preproc_undef_token1, - ACTIONS(21), 1, + ACTIONS(9095), 1, sym_comment, - ACTIONS(11689), 1, - anon_sym_RPAREN, - STATE(7694), 9, + ACTIONS(11633), 1, + aux_sym_preproc_if_token2, + STATE(7636), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -782900,7 +779941,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [332006] = 12, + [329763] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -782921,9 +779962,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11691), 1, + ACTIONS(11635), 1, anon_sym_EQ_GT, - STATE(7695), 9, + STATE(7637), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -782933,7 +779974,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [332051] = 12, + [329808] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -782954,9 +779995,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10756), 1, - anon_sym_RBRACE, - STATE(7696), 9, + ACTIONS(11637), 1, + anon_sym_SEMI, + STATE(7638), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -782966,7 +780007,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [332096] = 12, + [329853] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -782987,9 +780028,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11693), 1, - sym_interpolation_close_brace, - STATE(7697), 9, + ACTIONS(11639), 1, + anon_sym_EQ_GT, + STATE(7639), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -782999,7 +780040,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [332141] = 12, + [329898] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -783020,9 +780061,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11695), 1, - anon_sym_RBRACK, - STATE(7698), 9, + ACTIONS(11641), 1, + anon_sym_STAR, + STATE(7640), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -783032,7 +780073,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [332186] = 12, + [329943] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -783053,9 +780094,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11697), 1, - anon_sym_SEMI, - STATE(7699), 9, + ACTIONS(11643), 1, + anon_sym_DASH, + STATE(7641), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -783065,7 +780106,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [332231] = 12, + [329988] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -783086,9 +780127,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11699), 1, - sym__optional_semi, - STATE(7700), 9, + ACTIONS(11645), 1, + anon_sym_SEMI, + STATE(7642), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -783098,7 +780139,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [332276] = 12, + [330033] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -783119,9 +780160,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11701), 1, - anon_sym_EQ_GT, - STATE(7701), 9, + ACTIONS(11647), 1, + aux_sym_preproc_if_token3, + STATE(7643), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -783131,7 +780172,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [332321] = 12, + [330078] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -783152,9 +780193,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11703), 1, + ACTIONS(11649), 1, anon_sym_RPAREN, - STATE(7702), 9, + STATE(7644), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -783164,7 +780205,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [332366] = 12, + [330123] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -783185,9 +780226,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11705), 1, + ACTIONS(11651), 1, anon_sym_EQ_GT, - STATE(7703), 9, + STATE(7645), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -783197,7 +780238,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [332411] = 12, + [330168] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -783218,9 +780259,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11707), 1, - anon_sym_STAR, - STATE(7704), 9, + ACTIONS(11653), 1, + aux_sym_preproc_if_token3, + STATE(7646), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -783230,7 +780271,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [332456] = 12, + [330213] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -783251,9 +780292,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11709), 1, - aux_sym_preproc_if_token3, - STATE(7705), 9, + ACTIONS(11655), 1, + anon_sym_STAR, + STATE(7647), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -783263,7 +780304,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [332501] = 12, + [330258] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -783284,9 +780325,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11711), 1, - anon_sym_LPAREN, - STATE(7706), 9, + ACTIONS(11657), 1, + anon_sym_RPAREN, + STATE(7648), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -783296,7 +780337,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [332546] = 12, + [330303] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -783317,9 +780358,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11713), 1, - anon_sym_RPAREN, - STATE(7707), 9, + ACTIONS(11659), 1, + anon_sym_SEMI, + STATE(7649), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -783329,7 +780370,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [332591] = 12, + [330348] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -783350,9 +780391,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11715), 1, - anon_sym_SEMI, - STATE(7708), 9, + ACTIONS(11661), 1, + anon_sym_EQ_GT, + STATE(7650), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -783362,7 +780403,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [332636] = 12, + [330393] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -783383,9 +780424,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11717), 1, - anon_sym_SEMI, - STATE(7709), 9, + ACTIONS(11663), 1, + sym_interpolation_start_quote, + STATE(7651), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -783395,7 +780436,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [332681] = 12, + [330438] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -783416,9 +780457,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11719), 1, - anon_sym_COMMA, - STATE(7710), 9, + ACTIONS(11665), 1, + anon_sym_LPAREN, + STATE(7652), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -783428,7 +780469,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [332726] = 12, + [330483] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -783449,9 +780490,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11721), 1, + ACTIONS(11667), 1, anon_sym_LPAREN, - STATE(7711), 9, + STATE(7653), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -783461,7 +780502,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [332771] = 12, + [330528] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -783482,9 +780523,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11723), 1, - sym_integer_literal, - STATE(7712), 9, + ACTIONS(11669), 1, + anon_sym_LPAREN, + STATE(7654), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -783494,7 +780535,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [332816] = 12, + [330573] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -783515,9 +780556,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11725), 1, - anon_sym_GT, - STATE(7713), 9, + ACTIONS(11671), 1, + anon_sym_RBRACK, + STATE(7655), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -783527,7 +780568,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [332861] = 12, + [330618] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -783548,9 +780589,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11727), 1, + ACTIONS(11673), 1, aux_sym_preproc_if_token3, - STATE(7714), 9, + STATE(7656), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -783560,7 +780601,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [332906] = 12, + [330663] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -783581,9 +780622,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11729), 1, - anon_sym_RBRACE, - STATE(7715), 9, + ACTIONS(11675), 1, + aux_sym_preproc_if_token3, + STATE(7657), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -783593,30 +780634,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [332951] = 12, - ACTIONS(4892), 1, - aux_sym_preproc_if_token2, - ACTIONS(9097), 1, + [330708] = 12, + ACTIONS(3), 1, aux_sym_preproc_region_token1, - ACTIONS(9099), 1, + ACTIONS(5), 1, aux_sym_preproc_endregion_token1, - ACTIONS(9101), 1, + ACTIONS(7), 1, aux_sym_preproc_line_token1, - ACTIONS(9103), 1, + ACTIONS(9), 1, aux_sym_preproc_pragma_token1, - ACTIONS(9105), 1, + ACTIONS(11), 1, aux_sym_preproc_nullable_token1, - ACTIONS(9107), 1, + ACTIONS(13), 1, aux_sym_preproc_error_token1, - ACTIONS(9109), 1, + ACTIONS(15), 1, aux_sym_preproc_warning_token1, - ACTIONS(9111), 1, + ACTIONS(17), 1, aux_sym_preproc_define_token1, - ACTIONS(9113), 1, + ACTIONS(19), 1, aux_sym_preproc_undef_token1, - ACTIONS(9115), 1, + ACTIONS(21), 1, sym_comment, - STATE(7716), 9, + ACTIONS(11677), 1, + anon_sym_EQ_GT, + STATE(7658), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -783626,7 +780667,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [332996] = 12, + [330753] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -783647,9 +780688,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11731), 1, - anon_sym_STAR, - STATE(7717), 9, + ACTIONS(11679), 1, + anon_sym_RPAREN, + STATE(7659), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -783659,7 +780700,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [333041] = 12, + [330798] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -783680,9 +780721,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11733), 1, - anon_sym_SEMI, - STATE(7718), 9, + ACTIONS(11681), 1, + aux_sym_preproc_if_token3, + STATE(7660), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -783692,7 +780733,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [333086] = 12, + [330843] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -783713,9 +780754,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11735), 1, - anon_sym_RPAREN, - STATE(7719), 9, + ACTIONS(11683), 1, + anon_sym_LPAREN, + STATE(7661), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -783725,7 +780766,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [333131] = 12, + [330888] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -783746,9 +780787,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11737), 1, - anon_sym_RPAREN, - STATE(7720), 9, + ACTIONS(11685), 1, + sym_raw_string_end, + STATE(7662), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -783758,7 +780799,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [333176] = 12, + [330933] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -783779,9 +780820,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11739), 1, - anon_sym_EQ_GT, - STATE(7721), 9, + ACTIONS(10295), 1, + anon_sym_LPAREN, + STATE(7663), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -783791,7 +780832,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [333221] = 12, + [330978] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -783812,9 +780853,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11741), 1, - anon_sym_EQ_GT, - STATE(7722), 9, + ACTIONS(11687), 1, + anon_sym_SEMI, + STATE(7664), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -783824,7 +780865,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [333266] = 12, + [331023] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -783845,9 +780886,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11743), 1, - anon_sym_GT, - STATE(7723), 9, + ACTIONS(11689), 1, + anon_sym_COLON, + STATE(7665), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -783857,7 +780898,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [333311] = 12, + [331068] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -783878,9 +780919,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11745), 1, - sym_interpolation_start_quote, - STATE(7724), 9, + ACTIONS(11691), 1, + anon_sym_LPAREN, + STATE(7666), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -783890,7 +780931,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [333356] = 12, + [331113] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -783911,9 +780952,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11747), 1, - sym_interpolation_start_quote, - STATE(7725), 9, + ACTIONS(11693), 1, + anon_sym_SEMI, + STATE(7667), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -783923,7 +780964,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [333401] = 12, + [331158] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -783944,9 +780985,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11749), 1, + ACTIONS(11695), 1, anon_sym_EQ_GT, - STATE(7726), 9, + STATE(7668), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -783956,7 +780997,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [333446] = 12, + [331203] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -783977,9 +781018,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11751), 1, - aux_sym_preproc_if_token3, - STATE(7727), 9, + ACTIONS(11697), 1, + anon_sym_LPAREN, + STATE(7669), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -783989,7 +781030,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [333491] = 12, + [331248] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -784010,9 +781051,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11753), 1, - sym_interpolation_start_quote, - STATE(7728), 9, + ACTIONS(11699), 1, + anon_sym_GT, + STATE(7670), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -784022,7 +781063,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [333536] = 12, + [331293] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -784043,9 +781084,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11755), 1, - anon_sym_SQUOTE, - STATE(7729), 9, + ACTIONS(11701), 1, + anon_sym_LPAREN, + STATE(7671), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -784055,7 +781096,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [333581] = 12, + [331338] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -784076,9 +781117,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11757), 1, - anon_sym_RPAREN, - STATE(7730), 9, + ACTIONS(11703), 1, + anon_sym_LPAREN, + STATE(7672), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -784088,7 +781129,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [333626] = 12, + [331383] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -784109,9 +781150,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11759), 1, - sym_raw_string_content, - STATE(7731), 9, + ACTIONS(11705), 1, + anon_sym_LPAREN, + STATE(7673), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -784121,30 +781162,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [333671] = 12, - ACTIONS(3), 1, + [331428] = 12, + ACTIONS(9077), 1, aux_sym_preproc_region_token1, - ACTIONS(5), 1, + ACTIONS(9079), 1, aux_sym_preproc_endregion_token1, - ACTIONS(7), 1, + ACTIONS(9081), 1, aux_sym_preproc_line_token1, - ACTIONS(9), 1, + ACTIONS(9083), 1, aux_sym_preproc_pragma_token1, - ACTIONS(11), 1, + ACTIONS(9085), 1, aux_sym_preproc_nullable_token1, - ACTIONS(13), 1, + ACTIONS(9087), 1, aux_sym_preproc_error_token1, - ACTIONS(15), 1, + ACTIONS(9089), 1, aux_sym_preproc_warning_token1, - ACTIONS(17), 1, + ACTIONS(9091), 1, aux_sym_preproc_define_token1, - ACTIONS(19), 1, + ACTIONS(9093), 1, aux_sym_preproc_undef_token1, - ACTIONS(21), 1, + ACTIONS(9095), 1, sym_comment, - ACTIONS(11761), 1, - sym__optional_semi, - STATE(7732), 9, + ACTIONS(11707), 1, + aux_sym_preproc_if_token2, + STATE(7674), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -784154,7 +781195,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [333716] = 12, + [331473] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -784175,9 +781216,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10783), 1, - anon_sym_RBRACE, - STATE(7733), 9, + ACTIONS(11709), 1, + aux_sym_preproc_if_token3, + STATE(7675), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -784187,7 +781228,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [333761] = 12, + [331518] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -784208,9 +781249,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11763), 1, - anon_sym_SEMI, - STATE(7734), 9, + ACTIONS(11711), 1, + anon_sym_COLON, + STATE(7676), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -784220,7 +781261,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [333806] = 12, + [331563] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -784241,9 +781282,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11765), 1, - aux_sym_preproc_if_token3, - STATE(7735), 9, + ACTIONS(11713), 1, + anon_sym_EQ, + STATE(7677), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -784253,7 +781294,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [333851] = 12, + [331608] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -784274,9 +781315,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11767), 1, - sym_integer_literal, - STATE(7736), 9, + ACTIONS(11715), 1, + anon_sym_GT, + STATE(7678), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -784286,7 +781327,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [333896] = 12, + [331653] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -784307,9 +781348,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11769), 1, - anon_sym_GT, - STATE(7737), 9, + ACTIONS(11717), 1, + sym__optional_semi, + STATE(7679), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -784319,7 +781360,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [333941] = 12, + [331698] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -784340,9 +781381,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11771), 1, - anon_sym_RBRACK, - STATE(7738), 9, + ACTIONS(11719), 1, + sym_integer_literal, + STATE(7680), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -784352,7 +781393,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [333986] = 12, + [331743] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -784373,9 +781414,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11773), 1, - sym_raw_string_end, - STATE(7739), 9, + ACTIONS(11721), 1, + anon_sym_EQ_GT, + STATE(7681), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -784385,7 +781426,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [334031] = 12, + [331788] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -784406,9 +781447,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11775), 1, - sym_interpolation_start_quote, - STATE(7740), 9, + ACTIONS(11723), 1, + anon_sym_LPAREN, + STATE(7682), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -784418,7 +781459,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [334076] = 12, + [331833] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -784439,9 +781480,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11777), 1, - aux_sym_preproc_if_token3, - STATE(7741), 9, + ACTIONS(8344), 1, + anon_sym_RPAREN, + STATE(7683), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -784451,7 +781492,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [334121] = 12, + [331878] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -784472,9 +781513,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11779), 1, - anon_sym_SEMI, - STATE(7742), 9, + ACTIONS(11725), 1, + anon_sym_RBRACE, + STATE(7684), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -784484,7 +781525,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [334166] = 12, + [331923] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -784505,9 +781546,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11781), 1, - anon_sym_COMMA, - STATE(7743), 9, + ACTIONS(11727), 1, + anon_sym_EQ_GT, + STATE(7685), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -784517,7 +781558,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [334211] = 12, + [331968] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -784538,9 +781579,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11783), 1, - aux_sym_preproc_if_token3, - STATE(7744), 9, + ACTIONS(11729), 1, + anon_sym_LT, + STATE(7686), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -784550,7 +781591,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [334256] = 12, + [332013] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -784571,9 +781612,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11785), 1, + ACTIONS(11731), 1, anon_sym_STAR, - STATE(7745), 9, + STATE(7687), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -784583,7 +781624,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [334301] = 12, + [332058] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -784604,9 +781645,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11787), 1, + ACTIONS(11733), 1, anon_sym_RPAREN, - STATE(7746), 9, + STATE(7688), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -784616,7 +781657,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [334346] = 12, + [332103] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -784637,9 +781678,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11789), 1, - aux_sym_preproc_if_token3, - STATE(7747), 9, + ACTIONS(11735), 1, + anon_sym_LPAREN, + STATE(7689), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -784649,7 +781690,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [334391] = 12, + [332148] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -784670,9 +781711,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11791), 1, + ACTIONS(11737), 1, anon_sym_LPAREN, - STATE(7748), 9, + STATE(7690), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -784682,7 +781723,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [334436] = 12, + [332193] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -784703,9 +781744,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11793), 1, + ACTIONS(11739), 1, anon_sym_STAR, - STATE(7749), 9, + STATE(7691), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -784715,7 +781756,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [334481] = 12, + [332238] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -784736,9 +781777,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11795), 1, - aux_sym_preproc_if_token3, - STATE(7750), 9, + ACTIONS(11741), 1, + anon_sym_RPAREN, + STATE(7692), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -784748,7 +781789,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [334526] = 12, + [332283] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -784769,9 +781810,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11797), 1, - aux_sym_preproc_if_token3, - STATE(7751), 9, + ACTIONS(10661), 1, + anon_sym_RBRACE, + STATE(7693), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -784781,7 +781822,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [334571] = 12, + [332328] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -784802,9 +781843,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11799), 1, + ACTIONS(11743), 1, anon_sym_LPAREN, - STATE(7752), 9, + STATE(7694), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -784814,7 +781855,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [334616] = 12, + [332373] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -784835,9 +781876,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11801), 1, + ACTIONS(11745), 1, anon_sym_STAR, - STATE(7753), 9, + STATE(7695), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -784847,7 +781888,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [334661] = 12, + [332418] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -784868,9 +781909,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11803), 1, + ACTIONS(11747), 1, anon_sym_LPAREN, - STATE(7754), 9, + STATE(7696), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -784880,7 +781921,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [334706] = 12, + [332463] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -784901,9 +781942,9 @@ 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(7755), 9, + ACTIONS(11749), 1, + anon_sym_COMMA, + STATE(7697), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -784913,7 +781954,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [334751] = 12, + [332508] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -784934,9 +781975,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11807), 1, + ACTIONS(11751), 1, anon_sym_STAR, - STATE(7756), 9, + STATE(7698), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -784946,7 +781987,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [334796] = 12, + [332553] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -784967,9 +782008,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11809), 1, + ACTIONS(11753), 1, anon_sym_SEMI, - STATE(7757), 9, + STATE(7699), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -784979,7 +782020,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [334841] = 12, + [332598] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -785000,9 +782041,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11811), 1, + ACTIONS(11755), 1, anon_sym_STAR, - STATE(7758), 9, + STATE(7700), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -785012,7 +782053,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [334886] = 12, + [332643] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -785033,9 +782074,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11813), 1, - anon_sym_SEMI, - STATE(7759), 9, + ACTIONS(9955), 1, + anon_sym_STAR, + STATE(7701), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -785045,7 +782086,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [334931] = 12, + [332688] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -785066,9 +782107,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11815), 1, - aux_sym_preproc_if_token3, - STATE(7760), 9, + ACTIONS(11757), 1, + anon_sym_GT, + STATE(7702), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -785078,7 +782119,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [334976] = 12, + [332733] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -785099,9 +782140,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11817), 1, + ACTIONS(11759), 1, anon_sym_LPAREN, - STATE(7761), 9, + STATE(7703), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -785111,7 +782152,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [335021] = 12, + [332778] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -785132,9 +782173,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11819), 1, + ACTIONS(11761), 1, anon_sym_while, - STATE(7762), 9, + STATE(7704), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -785144,7 +782185,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [335066] = 12, + [332823] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -785165,9 +782206,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11821), 1, - aux_sym_preproc_if_token3, - STATE(7763), 9, + ACTIONS(11763), 1, + anon_sym_RPAREN, + STATE(7705), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -785177,30 +782218,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [335111] = 12, - ACTIONS(9097), 1, + [332868] = 12, + ACTIONS(3), 1, aux_sym_preproc_region_token1, - ACTIONS(9099), 1, + ACTIONS(5), 1, aux_sym_preproc_endregion_token1, - ACTIONS(9101), 1, + ACTIONS(7), 1, aux_sym_preproc_line_token1, - ACTIONS(9103), 1, + ACTIONS(9), 1, aux_sym_preproc_pragma_token1, - ACTIONS(9105), 1, + ACTIONS(11), 1, aux_sym_preproc_nullable_token1, - ACTIONS(9107), 1, + ACTIONS(13), 1, aux_sym_preproc_error_token1, - ACTIONS(9109), 1, + ACTIONS(15), 1, aux_sym_preproc_warning_token1, - ACTIONS(9111), 1, + ACTIONS(17), 1, aux_sym_preproc_define_token1, - ACTIONS(9113), 1, + ACTIONS(19), 1, aux_sym_preproc_undef_token1, - ACTIONS(9115), 1, + ACTIONS(21), 1, sym_comment, - ACTIONS(11823), 1, - aux_sym_preproc_if_token2, - STATE(7764), 9, + ACTIONS(11765), 1, + anon_sym_EQ_GT, + STATE(7706), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -785210,7 +782251,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [335156] = 12, + [332913] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -785231,9 +782272,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11825), 1, - anon_sym_EQ_GT, - STATE(7765), 9, + ACTIONS(11767), 1, + anon_sym_EQ, + STATE(7707), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -785243,7 +782284,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [335201] = 12, + [332958] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -785264,9 +782305,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11827), 1, + ACTIONS(11769), 1, anon_sym_LPAREN, - STATE(7766), 9, + STATE(7708), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -785276,7 +782317,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [335246] = 12, + [333003] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -785297,9 +782338,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11829), 1, + ACTIONS(11771), 1, anon_sym_while, - STATE(7767), 9, + STATE(7709), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -785309,7 +782350,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [335291] = 12, + [333048] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -785330,9 +782371,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11831), 1, + ACTIONS(11773), 1, anon_sym_LPAREN, - STATE(7768), 9, + STATE(7710), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -785342,7 +782383,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [335336] = 12, + [333093] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -785363,9 +782404,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11833), 1, + ACTIONS(11775), 1, anon_sym_while, - STATE(7769), 9, + STATE(7711), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -785375,7 +782416,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [335381] = 12, + [333138] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -785396,9 +782437,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11835), 1, + ACTIONS(11777), 1, anon_sym_LPAREN, - STATE(7770), 9, + STATE(7712), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -785408,7 +782449,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [335426] = 12, + [333183] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -785429,9 +782470,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11837), 1, + ACTIONS(11779), 1, anon_sym_LPAREN, - STATE(7771), 9, + STATE(7713), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -785441,7 +782482,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [335471] = 12, + [333228] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -785462,9 +782503,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11839), 1, - anon_sym_EQ_GT, - STATE(7772), 9, + ACTIONS(11781), 1, + sym_raw_string_end, + STATE(7714), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -785474,7 +782515,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [335516] = 12, + [333273] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -785495,42 +782536,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11841), 1, - anon_sym_EQ_GT, - STATE(7773), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - [335561] = 12, - ACTIONS(9097), 1, - aux_sym_preproc_region_token1, - ACTIONS(9099), 1, - aux_sym_preproc_endregion_token1, - ACTIONS(9101), 1, - aux_sym_preproc_line_token1, - ACTIONS(9103), 1, - aux_sym_preproc_pragma_token1, - ACTIONS(9105), 1, - aux_sym_preproc_nullable_token1, - ACTIONS(9107), 1, - aux_sym_preproc_error_token1, - ACTIONS(9109), 1, - aux_sym_preproc_warning_token1, - ACTIONS(9111), 1, - aux_sym_preproc_define_token1, - ACTIONS(9113), 1, - aux_sym_preproc_undef_token1, - ACTIONS(9115), 1, - sym_comment, - ACTIONS(11843), 1, - aux_sym_preproc_if_token2, - STATE(7774), 9, + ACTIONS(11783), 1, + anon_sym_SEMI, + STATE(7715), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -785540,7 +782548,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [335606] = 12, + [333318] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -785561,9 +782569,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11845), 1, - anon_sym_LPAREN, - STATE(7775), 9, + ACTIONS(11785), 1, + anon_sym_EQ_GT, + STATE(7716), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -785573,9648 +782581,9570 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [335651] = 1, - ACTIONS(11847), 1, + [333363] = 1, + ACTIONS(11787), 1, ts_builtin_sym_end, - [335655] = 1, - ACTIONS(11849), 1, + [333367] = 1, + ACTIONS(11789), 1, ts_builtin_sym_end, - [335659] = 1, - ACTIONS(11851), 1, + [333371] = 1, + ACTIONS(11791), 1, ts_builtin_sym_end, - [335663] = 1, - ACTIONS(11853), 1, + [333375] = 1, + ACTIONS(11793), 1, ts_builtin_sym_end, - [335667] = 1, - ACTIONS(11855), 1, + [333379] = 1, + ACTIONS(11795), 1, ts_builtin_sym_end, - [335671] = 1, - ACTIONS(11857), 1, + [333383] = 1, + ACTIONS(11797), 1, ts_builtin_sym_end, - [335675] = 1, - ACTIONS(11859), 1, + [333387] = 1, + ACTIONS(11799), 1, ts_builtin_sym_end, - [335679] = 1, - ACTIONS(11861), 1, + [333391] = 1, + ACTIONS(11801), 1, ts_builtin_sym_end, - [335683] = 1, - ACTIONS(11863), 1, + [333395] = 1, + ACTIONS(11803), 1, ts_builtin_sym_end, - [335687] = 1, - ACTIONS(11865), 1, + [333399] = 1, + ACTIONS(11805), 1, ts_builtin_sym_end, - [335691] = 1, - ACTIONS(11867), 1, + [333403] = 1, + ACTIONS(11807), 1, ts_builtin_sym_end, - [335695] = 1, - ACTIONS(11869), 1, + [333407] = 1, + ACTIONS(11809), 1, ts_builtin_sym_end, - [335699] = 1, - ACTIONS(11871), 1, + [333411] = 1, + ACTIONS(11811), 1, ts_builtin_sym_end, - [335703] = 1, - ACTIONS(11873), 1, + [333415] = 1, + ACTIONS(11813), 1, ts_builtin_sym_end, - [335707] = 1, - ACTIONS(11875), 1, + [333419] = 1, + ACTIONS(11815), 1, ts_builtin_sym_end, - [335711] = 1, - ACTIONS(11877), 1, + [333423] = 1, + ACTIONS(11817), 1, ts_builtin_sym_end, - [335715] = 1, - ACTIONS(11879), 1, + [333427] = 1, + ACTIONS(11819), 1, ts_builtin_sym_end, }; static const uint32_t ts_small_parse_table_map[] = { - [SMALL_STATE(3900)] = 0, - [SMALL_STATE(3901)] = 127, - [SMALL_STATE(3902)] = 254, - [SMALL_STATE(3903)] = 381, - [SMALL_STATE(3904)] = 508, - [SMALL_STATE(3905)] = 635, - [SMALL_STATE(3906)] = 762, - [SMALL_STATE(3907)] = 889, - [SMALL_STATE(3908)] = 984, - [SMALL_STATE(3909)] = 1111, - [SMALL_STATE(3910)] = 1238, - [SMALL_STATE(3911)] = 1361, - [SMALL_STATE(3912)] = 1478, - [SMALL_STATE(3913)] = 1591, - [SMALL_STATE(3914)] = 1726, - [SMALL_STATE(3915)] = 1863, - [SMALL_STATE(3916)] = 1996, - [SMALL_STATE(3917)] = 2115, - [SMALL_STATE(3918)] = 2246, - [SMALL_STATE(3919)] = 2385, - [SMALL_STATE(3920)] = 2526, - [SMALL_STATE(3921)] = 2671, - [SMALL_STATE(3922)] = 2766, - [SMALL_STATE(3923)] = 2893, - [SMALL_STATE(3924)] = 2988, - [SMALL_STATE(3925)] = 3083, - [SMALL_STATE(3926)] = 3210, - [SMALL_STATE(3927)] = 3337, - [SMALL_STATE(3928)] = 3430, - [SMALL_STATE(3929)] = 3525, - [SMALL_STATE(3930)] = 3652, - [SMALL_STATE(3931)] = 3779, - [SMALL_STATE(3932)] = 3906, - [SMALL_STATE(3933)] = 4033, - [SMALL_STATE(3934)] = 4160, - [SMALL_STATE(3935)] = 4287, - [SMALL_STATE(3936)] = 4414, - [SMALL_STATE(3937)] = 4541, - [SMALL_STATE(3938)] = 4668, - [SMALL_STATE(3939)] = 4795, - [SMALL_STATE(3940)] = 4922, - [SMALL_STATE(3941)] = 5049, - [SMALL_STATE(3942)] = 5176, - [SMALL_STATE(3943)] = 5303, - [SMALL_STATE(3944)] = 5430, - [SMALL_STATE(3945)] = 5557, - [SMALL_STATE(3946)] = 5684, - [SMALL_STATE(3947)] = 5811, - [SMALL_STATE(3948)] = 5938, - [SMALL_STATE(3949)] = 6065, - [SMALL_STATE(3950)] = 6192, - [SMALL_STATE(3951)] = 6319, - [SMALL_STATE(3952)] = 6446, - [SMALL_STATE(3953)] = 6573, - [SMALL_STATE(3954)] = 6700, - [SMALL_STATE(3955)] = 6827, - [SMALL_STATE(3956)] = 6954, - [SMALL_STATE(3957)] = 7081, - [SMALL_STATE(3958)] = 7208, - [SMALL_STATE(3959)] = 7335, - [SMALL_STATE(3960)] = 7462, - [SMALL_STATE(3961)] = 7589, - [SMALL_STATE(3962)] = 7716, - [SMALL_STATE(3963)] = 7843, - [SMALL_STATE(3964)] = 7970, - [SMALL_STATE(3965)] = 8097, - [SMALL_STATE(3966)] = 8224, - [SMALL_STATE(3967)] = 8323, - [SMALL_STATE(3968)] = 8450, - [SMALL_STATE(3969)] = 8577, - [SMALL_STATE(3970)] = 8670, - [SMALL_STATE(3971)] = 8797, - [SMALL_STATE(3972)] = 8924, - [SMALL_STATE(3973)] = 9051, - [SMALL_STATE(3974)] = 9178, - [SMALL_STATE(3975)] = 9305, - [SMALL_STATE(3976)] = 9432, - [SMALL_STATE(3977)] = 9559, - [SMALL_STATE(3978)] = 9704, - [SMALL_STATE(3979)] = 9831, - [SMALL_STATE(3980)] = 9930, - [SMALL_STATE(3981)] = 10057, - [SMALL_STATE(3982)] = 10152, - [SMALL_STATE(3983)] = 10279, - [SMALL_STATE(3984)] = 10406, - [SMALL_STATE(3985)] = 10533, - [SMALL_STATE(3986)] = 10660, - [SMALL_STATE(3987)] = 10787, - [SMALL_STATE(3988)] = 10914, - [SMALL_STATE(3989)] = 11041, - [SMALL_STATE(3990)] = 11188, - [SMALL_STATE(3991)] = 11281, - [SMALL_STATE(3992)] = 11376, - [SMALL_STATE(3993)] = 11503, - [SMALL_STATE(3994)] = 11612, - [SMALL_STATE(3995)] = 11739, - [SMALL_STATE(3996)] = 11886, - [SMALL_STATE(3997)] = 12033, - [SMALL_STATE(3998)] = 12180, - [SMALL_STATE(3999)] = 12327, - [SMALL_STATE(4000)] = 12462, - [SMALL_STATE(4001)] = 12599, - [SMALL_STATE(4002)] = 12732, - [SMALL_STATE(4003)] = 12863, - [SMALL_STATE(4004)] = 13002, - [SMALL_STATE(4005)] = 13143, - [SMALL_STATE(4006)] = 13288, - [SMALL_STATE(4007)] = 13383, - [SMALL_STATE(4008)] = 13510, - [SMALL_STATE(4009)] = 13637, - [SMALL_STATE(4010)] = 13764, - [SMALL_STATE(4011)] = 13891, - [SMALL_STATE(4012)] = 14018, - [SMALL_STATE(4013)] = 14145, - [SMALL_STATE(4014)] = 14272, - [SMALL_STATE(4015)] = 14399, - [SMALL_STATE(4016)] = 14526, - [SMALL_STATE(4017)] = 14653, - [SMALL_STATE(4018)] = 14780, - [SMALL_STATE(4019)] = 14907, - [SMALL_STATE(4020)] = 15034, - [SMALL_STATE(4021)] = 15161, - [SMALL_STATE(4022)] = 15288, - [SMALL_STATE(4023)] = 15433, - [SMALL_STATE(4024)] = 15560, - [SMALL_STATE(4025)] = 15687, - [SMALL_STATE(4026)] = 15814, - [SMALL_STATE(4027)] = 15959, - [SMALL_STATE(4028)] = 16086, - [SMALL_STATE(4029)] = 16213, - [SMALL_STATE(4030)] = 16360, - [SMALL_STATE(4031)] = 16507, - [SMALL_STATE(4032)] = 16654, - [SMALL_STATE(4033)] = 16781, - [SMALL_STATE(4034)] = 16892, - [SMALL_STATE(4035)] = 17019, - [SMALL_STATE(4036)] = 17146, - [SMALL_STATE(4037)] = 17293, - [SMALL_STATE(4038)] = 17420, - [SMALL_STATE(4039)] = 17547, - [SMALL_STATE(4040)] = 17674, - [SMALL_STATE(4041)] = 17801, - [SMALL_STATE(4042)] = 17896, - [SMALL_STATE(4043)] = 17991, - [SMALL_STATE(4044)] = 18118, - [SMALL_STATE(4045)] = 18245, - [SMALL_STATE(4046)] = 18390, - [SMALL_STATE(4047)] = 18517, - [SMALL_STATE(4048)] = 18662, - [SMALL_STATE(4049)] = 18771, - [SMALL_STATE(4050)] = 18898, - [SMALL_STATE(4051)] = 19007, - [SMALL_STATE(4052)] = 19130, - [SMALL_STATE(4053)] = 19247, - [SMALL_STATE(4054)] = 19360, - [SMALL_STATE(4055)] = 19479, - [SMALL_STATE(4056)] = 19574, - [SMALL_STATE(4057)] = 19669, - [SMALL_STATE(4058)] = 19778, - [SMALL_STATE(4059)] = 19905, - [SMALL_STATE(4060)] = 20032, - [SMALL_STATE(4061)] = 20159, - [SMALL_STATE(4062)] = 20286, - [SMALL_STATE(4063)] = 20413, - [SMALL_STATE(4064)] = 20503, - [SMALL_STATE(4065)] = 20649, - [SMALL_STATE(4066)] = 20755, - [SMALL_STATE(4067)] = 20847, - [SMALL_STATE(4068)] = 20953, - [SMALL_STATE(4069)] = 21097, - [SMALL_STATE(4070)] = 21187, - [SMALL_STATE(4071)] = 21331, - [SMALL_STATE(4072)] = 21453, - [SMALL_STATE(4073)] = 21569, - [SMALL_STATE(4074)] = 21681, - [SMALL_STATE(4075)] = 21815, - [SMALL_STATE(4076)] = 21951, - [SMALL_STATE(4077)] = 22083, - [SMALL_STATE(4078)] = 22201, - [SMALL_STATE(4079)] = 22331, - [SMALL_STATE(4080)] = 22469, - [SMALL_STATE(4081)] = 22609, - [SMALL_STATE(4082)] = 22753, - [SMALL_STATE(4083)] = 22897, - [SMALL_STATE(4084)] = 23007, - [SMALL_STATE(4085)] = 23151, - [SMALL_STATE(4086)] = 23245, - [SMALL_STATE(4087)] = 23339, - [SMALL_STATE(4088)] = 23435, - [SMALL_STATE(4089)] = 23581, - [SMALL_STATE(4090)] = 23689, - [SMALL_STATE(4091)] = 23833, - [SMALL_STATE(4092)] = 23923, - [SMALL_STATE(4093)] = 24069, - [SMALL_STATE(4094)] = 24177, - [SMALL_STATE(4095)] = 24285, - [SMALL_STATE(4096)] = 24429, - [SMALL_STATE(4097)] = 24519, - [SMALL_STATE(4098)] = 24641, - [SMALL_STATE(4099)] = 24757, - [SMALL_STATE(4100)] = 24903, - [SMALL_STATE(4101)] = 25047, - [SMALL_STATE(4102)] = 25165, - [SMALL_STATE(4103)] = 25311, - [SMALL_STATE(4104)] = 25445, - [SMALL_STATE(4105)] = 25581, - [SMALL_STATE(4106)] = 25727, - [SMALL_STATE(4107)] = 25819, - [SMALL_STATE(4108)] = 25909, - [SMALL_STATE(4109)] = 26007, - [SMALL_STATE(4110)] = 26097, - [SMALL_STATE(4111)] = 26189, - [SMALL_STATE(4112)] = 26321, - [SMALL_STATE(4113)] = 26451, - [SMALL_STATE(4114)] = 26545, - [SMALL_STATE(4115)] = 26639, - [SMALL_STATE(4116)] = 26731, - [SMALL_STATE(4117)] = 26825, - [SMALL_STATE(4118)] = 26933, - [SMALL_STATE(4119)] = 27023, - [SMALL_STATE(4120)] = 27161, - [SMALL_STATE(4121)] = 27301, - [SMALL_STATE(4122)] = 27445, - [SMALL_STATE(4123)] = 27539, - [SMALL_STATE(4124)] = 27645, - [SMALL_STATE(4125)] = 27757, - [SMALL_STATE(4126)] = 27900, - [SMALL_STATE(4127)] = 27989, - [SMALL_STATE(4128)] = 28082, - [SMALL_STATE(4129)] = 28175, - [SMALL_STATE(4130)] = 28264, - [SMALL_STATE(4131)] = 28353, - [SMALL_STATE(4132)] = 28442, - [SMALL_STATE(4133)] = 28531, - [SMALL_STATE(4134)] = 28620, - [SMALL_STATE(4135)] = 28727, - [SMALL_STATE(4136)] = 28816, - [SMALL_STATE(4137)] = 28905, - [SMALL_STATE(4138)] = 28994, - [SMALL_STATE(4139)] = 29083, - [SMALL_STATE(4140)] = 29172, - [SMALL_STATE(4141)] = 29265, - [SMALL_STATE(4142)] = 29354, - [SMALL_STATE(4143)] = 29445, - [SMALL_STATE(4144)] = 29534, - [SMALL_STATE(4145)] = 29627, - [SMALL_STATE(4146)] = 29770, - [SMALL_STATE(4147)] = 29913, - [SMALL_STATE(4148)] = 30002, - [SMALL_STATE(4149)] = 30095, - [SMALL_STATE(4150)] = 30184, - [SMALL_STATE(4151)] = 30273, - [SMALL_STATE(4152)] = 30388, - [SMALL_STATE(4153)] = 30477, - [SMALL_STATE(4154)] = 30588, - [SMALL_STATE(4155)] = 30721, - [SMALL_STATE(4156)] = 30856, - [SMALL_STATE(4157)] = 30987, - [SMALL_STATE(4158)] = 31130, - [SMALL_STATE(4159)] = 31241, - [SMALL_STATE(4160)] = 31358, - [SMALL_STATE(4161)] = 31487, - [SMALL_STATE(4162)] = 31576, - [SMALL_STATE(4163)] = 31665, - [SMALL_STATE(4164)] = 31758, - [SMALL_STATE(4165)] = 31901, - [SMALL_STATE(4166)] = 32038, - [SMALL_STATE(4167)] = 32181, - [SMALL_STATE(4168)] = 32288, - [SMALL_STATE(4169)] = 32431, - [SMALL_STATE(4170)] = 32570, - [SMALL_STATE(4171)] = 32661, - [SMALL_STATE(4172)] = 32768, - [SMALL_STATE(4173)] = 32861, - [SMALL_STATE(4174)] = 32950, - [SMALL_STATE(4175)] = 33093, - [SMALL_STATE(4176)] = 33182, - [SMALL_STATE(4177)] = 33275, - [SMALL_STATE(4178)] = 33364, - [SMALL_STATE(4179)] = 33507, - [SMALL_STATE(4180)] = 33628, - [SMALL_STATE(4181)] = 33770, - [SMALL_STATE(4182)] = 33890, - [SMALL_STATE(4183)] = 34004, - [SMALL_STATE(4184)] = 34136, - [SMALL_STATE(4185)] = 34270, - [SMALL_STATE(4186)] = 34400, - [SMALL_STATE(4187)] = 34516, - [SMALL_STATE(4188)] = 34644, - [SMALL_STATE(4189)] = 34780, - [SMALL_STATE(4190)] = 34886, - [SMALL_STATE(4191)] = 35028, - [SMALL_STATE(4192)] = 35170, - [SMALL_STATE(4193)] = 35308, - [SMALL_STATE(4194)] = 35450, - [SMALL_STATE(4195)] = 35592, - [SMALL_STATE(4196)] = 35734, - [SMALL_STATE(4197)] = 35876, - [SMALL_STATE(4198)] = 35996, - [SMALL_STATE(4199)] = 36110, - [SMALL_STATE(4200)] = 36220, - [SMALL_STATE(4201)] = 36352, - [SMALL_STATE(4202)] = 36486, - [SMALL_STATE(4203)] = 36616, - [SMALL_STATE(4204)] = 36732, - [SMALL_STATE(4205)] = 36860, - [SMALL_STATE(4206)] = 36996, - [SMALL_STATE(4207)] = 37134, - [SMALL_STATE(4208)] = 37276, - [SMALL_STATE(4209)] = 37418, - [SMALL_STATE(4210)] = 37560, - [SMALL_STATE(4211)] = 37702, - [SMALL_STATE(4212)] = 37844, - [SMALL_STATE(4213)] = 37986, - [SMALL_STATE(4214)] = 38078, - [SMALL_STATE(4215)] = 38170, - [SMALL_STATE(4216)] = 38264, - [SMALL_STATE(4217)] = 38356, - [SMALL_STATE(4218)] = 38498, - [SMALL_STATE(4219)] = 38640, - [SMALL_STATE(4220)] = 38732, - [SMALL_STATE(4221)] = 38820, - [SMALL_STATE(4222)] = 38916, - [SMALL_STATE(4223)] = 39058, - [SMALL_STATE(4224)] = 39148, - [SMALL_STATE(4225)] = 39290, - [SMALL_STATE(4226)] = 39382, - [SMALL_STATE(4227)] = 39524, - [SMALL_STATE(4228)] = 39634, - [SMALL_STATE(4229)] = 39776, - [SMALL_STATE(4230)] = 39918, - [SMALL_STATE(4231)] = 40060, - [SMALL_STATE(4232)] = 40166, - [SMALL_STATE(4233)] = 40286, - [SMALL_STATE(4234)] = 40392, - [SMALL_STATE(4235)] = 40498, - [SMALL_STATE(4236)] = 40590, - [SMALL_STATE(4237)] = 40682, - [SMALL_STATE(4238)] = 40772, - [SMALL_STATE(4239)] = 40864, - [SMALL_STATE(4240)] = 40970, - [SMALL_STATE(4241)] = 41090, - [SMALL_STATE(4242)] = 41196, - [SMALL_STATE(4243)] = 41310, - [SMALL_STATE(4244)] = 41420, - [SMALL_STATE(4245)] = 41562, - [SMALL_STATE(4246)] = 41694, - [SMALL_STATE(4247)] = 41828, - [SMALL_STATE(4248)] = 41958, - [SMALL_STATE(4249)] = 42074, - [SMALL_STATE(4250)] = 42202, - [SMALL_STATE(4251)] = 42344, - [SMALL_STATE(4252)] = 42480, - [SMALL_STATE(4253)] = 42618, - [SMALL_STATE(4254)] = 42760, - [SMALL_STATE(4255)] = 42852, - [SMALL_STATE(4256)] = 42994, - [SMALL_STATE(4257)] = 43136, - [SMALL_STATE(4258)] = 43277, - [SMALL_STATE(4259)] = 43396, - [SMALL_STATE(4260)] = 43487, - [SMALL_STATE(4261)] = 43628, - [SMALL_STATE(4262)] = 43769, - [SMALL_STATE(4263)] = 43872, - [SMALL_STATE(4264)] = 43967, - [SMALL_STATE(4265)] = 44072, - [SMALL_STATE(4266)] = 44175, - [SMALL_STATE(4267)] = 44268, - [SMALL_STATE(4268)] = 44381, - [SMALL_STATE(4269)] = 44522, - [SMALL_STATE(4270)] = 44663, - [SMALL_STATE(4271)] = 44768, - [SMALL_STATE(4272)] = 44909, - [SMALL_STATE(4273)] = 45024, - [SMALL_STATE(4274)] = 45165, - [SMALL_STATE(4275)] = 45280, - [SMALL_STATE(4276)] = 45421, - [SMALL_STATE(4277)] = 45530, - [SMALL_STATE(4278)] = 45661, - [SMALL_STATE(4279)] = 45802, - [SMALL_STATE(4280)] = 45889, - [SMALL_STATE(4281)] = 46030, - [SMALL_STATE(4282)] = 46163, - [SMALL_STATE(4283)] = 46304, - [SMALL_STATE(4284)] = 46433, - [SMALL_STATE(4285)] = 46574, - [SMALL_STATE(4286)] = 46665, - [SMALL_STATE(4287)] = 46806, - [SMALL_STATE(4288)] = 46937, - [SMALL_STATE(4289)] = 47070, - [SMALL_STATE(4290)] = 47199, - [SMALL_STATE(4291)] = 47304, - [SMALL_STATE(4292)] = 47419, - [SMALL_STATE(4293)] = 47512, - [SMALL_STATE(4294)] = 47639, - [SMALL_STATE(4295)] = 47730, - [SMALL_STATE(4296)] = 47835, - [SMALL_STATE(4297)] = 47922, - [SMALL_STATE(4298)] = 48009, - [SMALL_STATE(4299)] = 48128, - [SMALL_STATE(4300)] = 48241, - [SMALL_STATE(4301)] = 48350, - [SMALL_STATE(4302)] = 48465, - [SMALL_STATE(4303)] = 48592, - [SMALL_STATE(4304)] = 48697, - [SMALL_STATE(4305)] = 48832, - [SMALL_STATE(4306)] = 48973, - [SMALL_STATE(4307)] = 49110, - [SMALL_STATE(4308)] = 49247, - [SMALL_STATE(4309)] = 49388, - [SMALL_STATE(4310)] = 49529, - [SMALL_STATE(4311)] = 49670, - [SMALL_STATE(4312)] = 49775, - [SMALL_STATE(4313)] = 49864, - [SMALL_STATE(4314)] = 50005, - [SMALL_STATE(4315)] = 50096, - [SMALL_STATE(4316)] = 50237, - [SMALL_STATE(4317)] = 50324, - [SMALL_STATE(4318)] = 50465, - [SMALL_STATE(4319)] = 50574, - [SMALL_STATE(4320)] = 50715, - [SMALL_STATE(4321)] = 50820, - [SMALL_STATE(4322)] = 50907, - [SMALL_STATE(4323)] = 50994, - [SMALL_STATE(4324)] = 51081, - [SMALL_STATE(4325)] = 51200, - [SMALL_STATE(4326)] = 51313, - [SMALL_STATE(4327)] = 51454, - [SMALL_STATE(4328)] = 51557, - [SMALL_STATE(4329)] = 51688, - [SMALL_STATE(4330)] = 51821, - [SMALL_STATE(4331)] = 51908, - [SMALL_STATE(4332)] = 52037, - [SMALL_STATE(4333)] = 52152, - [SMALL_STATE(4334)] = 52267, - [SMALL_STATE(4335)] = 52394, - [SMALL_STATE(4336)] = 52499, - [SMALL_STATE(4337)] = 52614, - [SMALL_STATE(4338)] = 52749, - [SMALL_STATE(4339)] = 52864, - [SMALL_STATE(4340)] = 52959, - [SMALL_STATE(4341)] = 53074, - [SMALL_STATE(4342)] = 53165, - [SMALL_STATE(4343)] = 53256, - [SMALL_STATE(4344)] = 53347, - [SMALL_STATE(4345)] = 53436, - [SMALL_STATE(4346)] = 53527, - [SMALL_STATE(4347)] = 53664, - [SMALL_STATE(4348)] = 53805, - [SMALL_STATE(4349)] = 53940, - [SMALL_STATE(4350)] = 54080, - [SMALL_STATE(4351)] = 54168, - [SMALL_STATE(4352)] = 54254, - [SMALL_STATE(4353)] = 54372, - [SMALL_STATE(4354)] = 54484, - [SMALL_STATE(4355)] = 54598, - [SMALL_STATE(4356)] = 54686, - [SMALL_STATE(4357)] = 54772, - [SMALL_STATE(4358)] = 54918, - [SMALL_STATE(4359)] = 55022, - [SMALL_STATE(4360)] = 55136, - [SMALL_STATE(4361)] = 55222, - [SMALL_STATE(4362)] = 55308, - [SMALL_STATE(4363)] = 55396, - [SMALL_STATE(4364)] = 55508, - [SMALL_STATE(4365)] = 55594, - [SMALL_STATE(4366)] = 55680, - [SMALL_STATE(4367)] = 55766, - [SMALL_STATE(4368)] = 55852, - [SMALL_STATE(4369)] = 55938, - [SMALL_STATE(4370)] = 56028, - [SMALL_STATE(4371)] = 56118, - [SMALL_STATE(4372)] = 56258, - [SMALL_STATE(4373)] = 56372, - [SMALL_STATE(4374)] = 56464, - [SMALL_STATE(4375)] = 56550, - [SMALL_STATE(4376)] = 56684, - [SMALL_STATE(4377)] = 56824, - [SMALL_STATE(4378)] = 56970, - [SMALL_STATE(4379)] = 57106, - [SMALL_STATE(4380)] = 57246, - [SMALL_STATE(4381)] = 57386, - [SMALL_STATE(4382)] = 57474, - [SMALL_STATE(4383)] = 57562, - [SMALL_STATE(4384)] = 57648, - [SMALL_STATE(4385)] = 57788, - [SMALL_STATE(4386)] = 57874, - [SMALL_STATE(4387)] = 57960, - [SMALL_STATE(4388)] = 58106, - [SMALL_STATE(4389)] = 58252, - [SMALL_STATE(4390)] = 58338, - [SMALL_STATE(4391)] = 58432, - [SMALL_STATE(4392)] = 58522, - [SMALL_STATE(4393)] = 58662, - [SMALL_STATE(4394)] = 58752, - [SMALL_STATE(4395)] = 58892, - [SMALL_STATE(4396)] = 58984, - [SMALL_STATE(4397)] = 59070, - [SMALL_STATE(4398)] = 59158, - [SMALL_STATE(4399)] = 59244, - [SMALL_STATE(4400)] = 59390, - [SMALL_STATE(4401)] = 59536, - [SMALL_STATE(4402)] = 59676, - [SMALL_STATE(4403)] = 59780, - [SMALL_STATE(4404)] = 59866, - [SMALL_STATE(4405)] = 59956, - [SMALL_STATE(4406)] = 60060, - [SMALL_STATE(4407)] = 60164, - [SMALL_STATE(4408)] = 60254, - [SMALL_STATE(4409)] = 60340, - [SMALL_STATE(4410)] = 60444, - [SMALL_STATE(4411)] = 60530, - [SMALL_STATE(4412)] = 60648, - [SMALL_STATE(4413)] = 60760, - [SMALL_STATE(4414)] = 60868, - [SMALL_STATE(4415)] = 60982, - [SMALL_STATE(4416)] = 61122, - [SMALL_STATE(4417)] = 61210, - [SMALL_STATE(4418)] = 61296, - [SMALL_STATE(4419)] = 61382, - [SMALL_STATE(4420)] = 61470, - [SMALL_STATE(4421)] = 61558, - [SMALL_STATE(4422)] = 61698, - [SMALL_STATE(4423)] = 61784, - [SMALL_STATE(4424)] = 61924, - [SMALL_STATE(4425)] = 62010, - [SMALL_STATE(4426)] = 62114, - [SMALL_STATE(4427)] = 62200, - [SMALL_STATE(4428)] = 62340, - [SMALL_STATE(4429)] = 62470, - [SMALL_STATE(4430)] = 62560, - [SMALL_STATE(4431)] = 62688, - [SMALL_STATE(4432)] = 62828, - [SMALL_STATE(4433)] = 62968, - [SMALL_STATE(4434)] = 63094, - [SMALL_STATE(4435)] = 63234, - [SMALL_STATE(4436)] = 63374, - [SMALL_STATE(4437)] = 63514, - [SMALL_STATE(4438)] = 63644, - [SMALL_STATE(4439)] = 63776, - [SMALL_STATE(4440)] = 63904, - [SMALL_STATE(4441)] = 64030, - [SMALL_STATE(4442)] = 64164, - [SMALL_STATE(4443)] = 64300, - [SMALL_STATE(4444)] = 64440, - [SMALL_STATE(4445)] = 64580, - [SMALL_STATE(4446)] = 64710, - [SMALL_STATE(4447)] = 64842, - [SMALL_STATE(4448)] = 64970, - [SMALL_STATE(4449)] = 65096, - [SMALL_STATE(4450)] = 65230, - [SMALL_STATE(4451)] = 65366, - [SMALL_STATE(4452)] = 65506, - [SMALL_STATE(4453)] = 65646, - [SMALL_STATE(4454)] = 65786, - [SMALL_STATE(4455)] = 65872, - [SMALL_STATE(4456)] = 66012, - [SMALL_STATE(4457)] = 66146, - [SMALL_STATE(4458)] = 66282, - [SMALL_STATE(4459)] = 66422, - [SMALL_STATE(4460)] = 66526, - [SMALL_STATE(4461)] = 66666, - [SMALL_STATE(4462)] = 66806, - [SMALL_STATE(4463)] = 66910, - [SMALL_STATE(4464)] = 67018, - [SMALL_STATE(4465)] = 67104, - [SMALL_STATE(4466)] = 67194, - [SMALL_STATE(4467)] = 67334, - [SMALL_STATE(4468)] = 67424, - [SMALL_STATE(4469)] = 67570, - [SMALL_STATE(4470)] = 67662, - [SMALL_STATE(4471)] = 67766, - [SMALL_STATE(4472)] = 67884, - [SMALL_STATE(4473)] = 67996, - [SMALL_STATE(4474)] = 68104, - [SMALL_STATE(4475)] = 68218, - [SMALL_STATE(4476)] = 68358, - [SMALL_STATE(4477)] = 68498, - [SMALL_STATE(4478)] = 68638, - [SMALL_STATE(4479)] = 68732, - [SMALL_STATE(4480)] = 68872, - [SMALL_STATE(4481)] = 69012, - [SMALL_STATE(4482)] = 69130, - [SMALL_STATE(4483)] = 69242, - [SMALL_STATE(4484)] = 69346, - [SMALL_STATE(4485)] = 69454, - [SMALL_STATE(4486)] = 69584, - [SMALL_STATE(4487)] = 69716, - [SMALL_STATE(4488)] = 69844, - [SMALL_STATE(4489)] = 69992, - [SMALL_STATE(4490)] = 70106, - [SMALL_STATE(4491)] = 70232, - [SMALL_STATE(4492)] = 70326, - [SMALL_STATE(4493)] = 70416, - [SMALL_STATE(4494)] = 70506, - [SMALL_STATE(4495)] = 70596, - [SMALL_STATE(4496)] = 70684, - [SMALL_STATE(4497)] = 70816, - [SMALL_STATE(4498)] = 70929, - [SMALL_STATE(4499)] = 71062, - [SMALL_STATE(4500)] = 71197, - [SMALL_STATE(4501)] = 71336, - [SMALL_STATE(4502)] = 71475, - [SMALL_STATE(4503)] = 71614, - [SMALL_STATE(4504)] = 71753, - [SMALL_STATE(4505)] = 71888, - [SMALL_STATE(4506)] = 71973, - [SMALL_STATE(4507)] = 72058, - [SMALL_STATE(4508)] = 72197, - [SMALL_STATE(4509)] = 72282, - [SMALL_STATE(4510)] = 72421, - [SMALL_STATE(4511)] = 72506, - [SMALL_STATE(4512)] = 72591, - [SMALL_STATE(4513)] = 72676, - [SMALL_STATE(4514)] = 72761, - [SMALL_STATE(4515)] = 72900, - [SMALL_STATE(4516)] = 72985, - [SMALL_STATE(4517)] = 73070, - [SMALL_STATE(4518)] = 73155, - [SMALL_STATE(4519)] = 73240, - [SMALL_STATE(4520)] = 73325, - [SMALL_STATE(4521)] = 73442, - [SMALL_STATE(4522)] = 73553, - [SMALL_STATE(4523)] = 73666, - [SMALL_STATE(4524)] = 73769, - [SMALL_STATE(4525)] = 73908, - [SMALL_STATE(4526)] = 73995, - [SMALL_STATE(4527)] = 74134, - [SMALL_STATE(4528)] = 74273, - [SMALL_STATE(4529)] = 74360, - [SMALL_STATE(4530)] = 74445, - [SMALL_STATE(4531)] = 74530, - [SMALL_STATE(4532)] = 74617, - [SMALL_STATE(4533)] = 74734, - [SMALL_STATE(4534)] = 74845, - [SMALL_STATE(4535)] = 74958, - [SMALL_STATE(4536)] = 75061, - [SMALL_STATE(4537)] = 75146, - [SMALL_STATE(4538)] = 75231, - [SMALL_STATE(4539)] = 75370, - [SMALL_STATE(4540)] = 75497, - [SMALL_STATE(4541)] = 75610, - [SMALL_STATE(4542)] = 75695, - [SMALL_STATE(4543)] = 75780, - [SMALL_STATE(4544)] = 75865, - [SMALL_STATE(4545)] = 75952, - [SMALL_STATE(4546)] = 76039, - [SMALL_STATE(4547)] = 76124, - [SMALL_STATE(4548)] = 76237, - [SMALL_STATE(4549)] = 76322, - [SMALL_STATE(4550)] = 76425, - [SMALL_STATE(4551)] = 76510, - [SMALL_STATE(4552)] = 76635, - [SMALL_STATE(4553)] = 76720, - [SMALL_STATE(4554)] = 76805, - [SMALL_STATE(4555)] = 76908, - [SMALL_STATE(4556)] = 77009, - [SMALL_STATE(4557)] = 77142, - [SMALL_STATE(4558)] = 77277, - [SMALL_STATE(4559)] = 77394, - [SMALL_STATE(4560)] = 77483, - [SMALL_STATE(4561)] = 77594, - [SMALL_STATE(4562)] = 77701, - [SMALL_STATE(4563)] = 77830, - [SMALL_STATE(4564)] = 77961, - [SMALL_STATE(4565)] = 78088, - [SMALL_STATE(4566)] = 78201, - [SMALL_STATE(4567)] = 78326, - [SMALL_STATE(4568)] = 78429, - [SMALL_STATE(4569)] = 78562, - [SMALL_STATE(4570)] = 78697, - [SMALL_STATE(4571)] = 78836, - [SMALL_STATE(4572)] = 78975, - [SMALL_STATE(4573)] = 79114, - [SMALL_STATE(4574)] = 79199, - [SMALL_STATE(4575)] = 79284, - [SMALL_STATE(4576)] = 79423, - [SMALL_STATE(4577)] = 79508, - [SMALL_STATE(4578)] = 79647, - [SMALL_STATE(4579)] = 79732, - [SMALL_STATE(4580)] = 79871, - [SMALL_STATE(4581)] = 79988, - [SMALL_STATE(4582)] = 80127, - [SMALL_STATE(4583)] = 80212, - [SMALL_STATE(4584)] = 80297, - [SMALL_STATE(4585)] = 80382, - [SMALL_STATE(4586)] = 80485, - [SMALL_STATE(4587)] = 80570, - [SMALL_STATE(4588)] = 80687, - [SMALL_STATE(4589)] = 80798, - [SMALL_STATE(4590)] = 80927, - [SMALL_STATE(4591)] = 81066, - [SMALL_STATE(4592)] = 81151, - [SMALL_STATE(4593)] = 81236, - [SMALL_STATE(4594)] = 81375, - [SMALL_STATE(4595)] = 81464, - [SMALL_STATE(4596)] = 81553, - [SMALL_STATE(4597)] = 81684, - [SMALL_STATE(4598)] = 81811, - [SMALL_STATE(4599)] = 81896, - [SMALL_STATE(4600)] = 81983, - [SMALL_STATE(4601)] = 82072, - [SMALL_STATE(4602)] = 82185, - [SMALL_STATE(4603)] = 82324, - [SMALL_STATE(4604)] = 82449, - [SMALL_STATE(4605)] = 82582, - [SMALL_STATE(4606)] = 82717, - [SMALL_STATE(4607)] = 82856, - [SMALL_STATE(4608)] = 83001, - [SMALL_STATE(4609)] = 83086, - [SMALL_STATE(4610)] = 83225, - [SMALL_STATE(4611)] = 83328, - [SMALL_STATE(4612)] = 83413, - [SMALL_STATE(4613)] = 83498, - [SMALL_STATE(4614)] = 83583, - [SMALL_STATE(4615)] = 83676, - [SMALL_STATE(4616)] = 83761, - [SMALL_STATE(4617)] = 83878, - [SMALL_STATE(4618)] = 83963, - [SMALL_STATE(4619)] = 84102, - [SMALL_STATE(4620)] = 84219, - [SMALL_STATE(4621)] = 84304, - [SMALL_STATE(4622)] = 84415, - [SMALL_STATE(4623)] = 84500, - [SMALL_STATE(4624)] = 84613, - [SMALL_STATE(4625)] = 84702, - [SMALL_STATE(4626)] = 84787, - [SMALL_STATE(4627)] = 84876, - [SMALL_STATE(4628)] = 85015, - [SMALL_STATE(4629)] = 85100, - [SMALL_STATE(4630)] = 85185, - [SMALL_STATE(4631)] = 85324, - [SMALL_STATE(4632)] = 85409, - [SMALL_STATE(4633)] = 85494, - [SMALL_STATE(4634)] = 85579, - [SMALL_STATE(4635)] = 85664, - [SMALL_STATE(4636)] = 85775, - [SMALL_STATE(4637)] = 85876, - [SMALL_STATE(4638)] = 85961, - [SMALL_STATE(4639)] = 86046, - [SMALL_STATE(4640)] = 86131, - [SMALL_STATE(4641)] = 86216, - [SMALL_STATE(4642)] = 86301, - [SMALL_STATE(4643)] = 86386, - [SMALL_STATE(4644)] = 86471, - [SMALL_STATE(4645)] = 86556, - [SMALL_STATE(4646)] = 86641, - [SMALL_STATE(4647)] = 86726, - [SMALL_STATE(4648)] = 86811, - [SMALL_STATE(4649)] = 86918, - [SMALL_STATE(4650)] = 87003, - [SMALL_STATE(4651)] = 87142, - [SMALL_STATE(4652)] = 87227, - [SMALL_STATE(4653)] = 87312, - [SMALL_STATE(4654)] = 87419, - [SMALL_STATE(4655)] = 87510, - [SMALL_STATE(4656)] = 87649, - [SMALL_STATE(4657)] = 87788, - [SMALL_STATE(4658)] = 87873, - [SMALL_STATE(4659)] = 87958, - [SMALL_STATE(4660)] = 88097, - [SMALL_STATE(4661)] = 88236, - [SMALL_STATE(4662)] = 88375, - [SMALL_STATE(4663)] = 88514, - [SMALL_STATE(4664)] = 88653, - [SMALL_STATE(4665)] = 88792, - [SMALL_STATE(4666)] = 88877, - [SMALL_STATE(4667)] = 88964, - [SMALL_STATE(4668)] = 89103, - [SMALL_STATE(4669)] = 89188, - [SMALL_STATE(4670)] = 89317, - [SMALL_STATE(4671)] = 89456, - [SMALL_STATE(4672)] = 89559, - [SMALL_STATE(4673)] = 89690, - [SMALL_STATE(4674)] = 89793, - [SMALL_STATE(4675)] = 89920, - [SMALL_STATE(4676)] = 90045, - [SMALL_STATE(4677)] = 90148, - [SMALL_STATE(4678)] = 90281, - [SMALL_STATE(4679)] = 90416, - [SMALL_STATE(4680)] = 90501, - [SMALL_STATE(4681)] = 90640, - [SMALL_STATE(4682)] = 90779, - [SMALL_STATE(4683)] = 90918, - [SMALL_STATE(4684)] = 91057, - [SMALL_STATE(4685)] = 91196, - [SMALL_STATE(4686)] = 91303, - [SMALL_STATE(4687)] = 91388, - [SMALL_STATE(4688)] = 91473, - [SMALL_STATE(4689)] = 91612, - [SMALL_STATE(4690)] = 91715, - [SMALL_STATE(4691)] = 91818, - [SMALL_STATE(4692)] = 91957, - [SMALL_STATE(4693)] = 92086, - [SMALL_STATE(4694)] = 92217, - [SMALL_STATE(4695)] = 92344, - [SMALL_STATE(4696)] = 92469, - [SMALL_STATE(4697)] = 92602, - [SMALL_STATE(4698)] = 92737, - [SMALL_STATE(4699)] = 92876, - [SMALL_STATE(4700)] = 93015, - [SMALL_STATE(4701)] = 93154, - [SMALL_STATE(4702)] = 93293, - [SMALL_STATE(4703)] = 93432, - [SMALL_STATE(4704)] = 93533, - [SMALL_STATE(4705)] = 93672, - [SMALL_STATE(4706)] = 93811, - [SMALL_STATE(4707)] = 93928, - [SMALL_STATE(4708)] = 94013, - [SMALL_STATE(4709)] = 94152, - [SMALL_STATE(4710)] = 94263, - [SMALL_STATE(4711)] = 94376, - [SMALL_STATE(4712)] = 94515, - [SMALL_STATE(4713)] = 94654, - [SMALL_STATE(4714)] = 94793, - [SMALL_STATE(4715)] = 94896, - [SMALL_STATE(4716)] = 94981, - [SMALL_STATE(4717)] = 95088, - [SMALL_STATE(4718)] = 95227, - [SMALL_STATE(4719)] = 95356, - [SMALL_STATE(4720)] = 95487, - [SMALL_STATE(4721)] = 95614, - [SMALL_STATE(4722)] = 95739, - [SMALL_STATE(4723)] = 95872, - [SMALL_STATE(4724)] = 96007, - [SMALL_STATE(4725)] = 96146, - [SMALL_STATE(4726)] = 96285, - [SMALL_STATE(4727)] = 96424, - [SMALL_STATE(4728)] = 96563, - [SMALL_STATE(4729)] = 96702, - [SMALL_STATE(4730)] = 96841, - [SMALL_STATE(4731)] = 96926, - [SMALL_STATE(4732)] = 97055, - [SMALL_STATE(4733)] = 97186, - [SMALL_STATE(4734)] = 97293, - [SMALL_STATE(4735)] = 97432, - [SMALL_STATE(4736)] = 97571, - [SMALL_STATE(4737)] = 97710, - [SMALL_STATE(4738)] = 97813, - [SMALL_STATE(4739)] = 97916, - [SMALL_STATE(4740)] = 98023, - [SMALL_STATE(4741)] = 98150, - [SMALL_STATE(4742)] = 98289, - [SMALL_STATE(4743)] = 98378, - [SMALL_STATE(4744)] = 98503, - [SMALL_STATE(4745)] = 98592, - [SMALL_STATE(4746)] = 98731, - [SMALL_STATE(4747)] = 98860, - [SMALL_STATE(4748)] = 98999, - [SMALL_STATE(4749)] = 99102, - [SMALL_STATE(4750)] = 99209, - [SMALL_STATE(4751)] = 99322, - [SMALL_STATE(4752)] = 99461, - [SMALL_STATE(4753)] = 99564, - [SMALL_STATE(4754)] = 99697, - [SMALL_STATE(4755)] = 99832, - [SMALL_STATE(4756)] = 99971, - [SMALL_STATE(4757)] = 100074, - [SMALL_STATE(4758)] = 100159, - [SMALL_STATE(4759)] = 100262, - [SMALL_STATE(4760)] = 100401, - [SMALL_STATE(4761)] = 100490, - [SMALL_STATE(4762)] = 100575, - [SMALL_STATE(4763)] = 100660, - [SMALL_STATE(4764)] = 100799, - [SMALL_STATE(4765)] = 100884, - [SMALL_STATE(4766)] = 101023, - [SMALL_STATE(4767)] = 101134, - [SMALL_STATE(4768)] = 101251, - [SMALL_STATE(4769)] = 101362, - [SMALL_STATE(4770)] = 101451, - [SMALL_STATE(4771)] = 101582, - [SMALL_STATE(4772)] = 101711, - [SMALL_STATE(4773)] = 101796, - [SMALL_STATE(4774)] = 101927, - [SMALL_STATE(4775)] = 102054, - [SMALL_STATE(4776)] = 102167, - [SMALL_STATE(4777)] = 102292, - [SMALL_STATE(4778)] = 102377, - [SMALL_STATE(4779)] = 102510, - [SMALL_STATE(4780)] = 102595, - [SMALL_STATE(4781)] = 102680, - [SMALL_STATE(4782)] = 102769, - [SMALL_STATE(4783)] = 102858, - [SMALL_STATE(4784)] = 102947, - [SMALL_STATE(4785)] = 103034, - [SMALL_STATE(4786)] = 103123, - [SMALL_STATE(4787)] = 103208, - [SMALL_STATE(4788)] = 103335, - [SMALL_STATE(4789)] = 103460, - [SMALL_STATE(4790)] = 103593, - [SMALL_STATE(4791)] = 103734, - [SMALL_STATE(4792)] = 103869, - [SMALL_STATE(4793)] = 104010, - [SMALL_STATE(4794)] = 104127, - [SMALL_STATE(4795)] = 104238, - [SMALL_STATE(4796)] = 104345, - [SMALL_STATE(4797)] = 104474, - [SMALL_STATE(4798)] = 104605, - [SMALL_STATE(4799)] = 104732, - [SMALL_STATE(4800)] = 104845, - [SMALL_STATE(4801)] = 104970, - [SMALL_STATE(4802)] = 105073, - [SMALL_STATE(4803)] = 105206, - [SMALL_STATE(4804)] = 105341, - [SMALL_STATE(4805)] = 105480, - [SMALL_STATE(4806)] = 105621, - [SMALL_STATE(4807)] = 105762, - [SMALL_STATE(4808)] = 105903, - [SMALL_STATE(4809)] = 106044, - [SMALL_STATE(4810)] = 106129, - [SMALL_STATE(4811)] = 106246, - [SMALL_STATE(4812)] = 106385, - [SMALL_STATE(4813)] = 106470, - [SMALL_STATE(4814)] = 106581, - [SMALL_STATE(4815)] = 106666, - [SMALL_STATE(4816)] = 106751, - [SMALL_STATE(4817)] = 106836, - [SMALL_STATE(4818)] = 106921, - [SMALL_STATE(4819)] = 107022, - [SMALL_STATE(4820)] = 107125, - [SMALL_STATE(4821)] = 107226, - [SMALL_STATE(4822)] = 107311, - [SMALL_STATE(4823)] = 107418, - [SMALL_STATE(4824)] = 107557, - [SMALL_STATE(4825)] = 107686, - [SMALL_STATE(4826)] = 107793, - [SMALL_STATE(4827)] = 107882, - [SMALL_STATE(4828)] = 107971, - [SMALL_STATE(4829)] = 108060, - [SMALL_STATE(4830)] = 108147, - [SMALL_STATE(4831)] = 108236, - [SMALL_STATE(4832)] = 108321, - [SMALL_STATE(4833)] = 108452, - [SMALL_STATE(4834)] = 108537, - [SMALL_STATE(4835)] = 108666, - [SMALL_STATE(4836)] = 108797, - [SMALL_STATE(4837)] = 108924, - [SMALL_STATE(4838)] = 109037, - [SMALL_STATE(4839)] = 109162, - [SMALL_STATE(4840)] = 109303, - [SMALL_STATE(4841)] = 109444, - [SMALL_STATE(4842)] = 109585, - [SMALL_STATE(4843)] = 109688, - [SMALL_STATE(4844)] = 109827, - [SMALL_STATE(4845)] = 109915, - [SMALL_STATE(4846)] = 110047, - [SMALL_STATE(4847)] = 110185, - [SMALL_STATE(4848)] = 110287, - [SMALL_STATE(4849)] = 110425, - [SMALL_STATE(4850)] = 110563, - [SMALL_STATE(4851)] = 110679, - [SMALL_STATE(4852)] = 110817, - [SMALL_STATE(4853)] = 110927, - [SMALL_STATE(4854)] = 111065, - [SMALL_STATE(4855)] = 111203, - [SMALL_STATE(4856)] = 111343, - [SMALL_STATE(4857)] = 111481, - [SMALL_STATE(4858)] = 111619, - [SMALL_STATE(4859)] = 111747, - [SMALL_STATE(4860)] = 111877, - [SMALL_STATE(4861)] = 112003, - [SMALL_STATE(4862)] = 112115, - [SMALL_STATE(4863)] = 112231, - [SMALL_STATE(4864)] = 112355, - [SMALL_STATE(4865)] = 112487, - [SMALL_STATE(4866)] = 112621, - [SMALL_STATE(4867)] = 112759, - [SMALL_STATE(4868)] = 112901, - [SMALL_STATE(4869)] = 113039, - [SMALL_STATE(4870)] = 113181, - [SMALL_STATE(4871)] = 113293, - [SMALL_STATE(4872)] = 113431, - [SMALL_STATE(4873)] = 113547, - [SMALL_STATE(4874)] = 113689, - [SMALL_STATE(4875)] = 113799, - [SMALL_STATE(4876)] = 113927, - [SMALL_STATE(4877)] = 114057, - [SMALL_STATE(4878)] = 114183, - [SMALL_STATE(4879)] = 114321, - [SMALL_STATE(4880)] = 114459, - [SMALL_STATE(4881)] = 114601, - [SMALL_STATE(4882)] = 114713, - [SMALL_STATE(4883)] = 114837, - [SMALL_STATE(4884)] = 114969, - [SMALL_STATE(4885)] = 115107, - [SMALL_STATE(4886)] = 115241, - [SMALL_STATE(4887)] = 115379, - [SMALL_STATE(4888)] = 115489, - [SMALL_STATE(4889)] = 115617, - [SMALL_STATE(4890)] = 115755, - [SMALL_STATE(4891)] = 115893, - [SMALL_STATE(4892)] = 115995, - [SMALL_STATE(4893)] = 116133, - [SMALL_STATE(4894)] = 116271, - [SMALL_STATE(4895)] = 116409, - [SMALL_STATE(4896)] = 116547, - [SMALL_STATE(4897)] = 116685, - [SMALL_STATE(4898)] = 116815, - [SMALL_STATE(4899)] = 116927, - [SMALL_STATE(4900)] = 117053, - [SMALL_STATE(4901)] = 117191, - [SMALL_STATE(4902)] = 117329, - [SMALL_STATE(4903)] = 117471, - [SMALL_STATE(4904)] = 117609, - [SMALL_STATE(4905)] = 117721, - [SMALL_STATE(4906)] = 117823, - [SMALL_STATE(4907)] = 117935, - [SMALL_STATE(4908)] = 118077, - [SMALL_STATE(4909)] = 118215, - [SMALL_STATE(4910)] = 118353, - [SMALL_STATE(4911)] = 118491, - [SMALL_STATE(4912)] = 118603, - [SMALL_STATE(4913)] = 118689, - [SMALL_STATE(4914)] = 118827, - [SMALL_STATE(4915)] = 118919, - [SMALL_STATE(4916)] = 119057, - [SMALL_STATE(4917)] = 119191, - [SMALL_STATE(4918)] = 119333, - [SMALL_STATE(4919)] = 119473, - [SMALL_STATE(4920)] = 119585, - [SMALL_STATE(4921)] = 119723, - [SMALL_STATE(4922)] = 119865, - [SMALL_STATE(4923)] = 119977, - [SMALL_STATE(4924)] = 120089, - [SMALL_STATE(4925)] = 120201, - [SMALL_STATE(4926)] = 120343, - [SMALL_STATE(4927)] = 120481, - [SMALL_STATE(4928)] = 120623, - [SMALL_STATE(4929)] = 120725, - [SMALL_STATE(4930)] = 120841, - [SMALL_STATE(4931)] = 120979, - [SMALL_STATE(4932)] = 121121, - [SMALL_STATE(4933)] = 121231, - [SMALL_STATE(4934)] = 121333, - [SMALL_STATE(4935)] = 121461, - [SMALL_STATE(4936)] = 121591, - [SMALL_STATE(4937)] = 121703, - [SMALL_STATE(4938)] = 121815, - [SMALL_STATE(4939)] = 121941, - [SMALL_STATE(4940)] = 122053, - [SMALL_STATE(4941)] = 122177, - [SMALL_STATE(4942)] = 122309, - [SMALL_STATE(4943)] = 122443, - [SMALL_STATE(4944)] = 122583, - [SMALL_STATE(4945)] = 122699, - [SMALL_STATE(4946)] = 122809, - [SMALL_STATE(4947)] = 122915, - [SMALL_STATE(4948)] = 123043, - [SMALL_STATE(4949)] = 123173, - [SMALL_STATE(4950)] = 123299, - [SMALL_STATE(4951)] = 123411, - [SMALL_STATE(4952)] = 123535, - [SMALL_STATE(4953)] = 123673, - [SMALL_STATE(4954)] = 123759, - [SMALL_STATE(4955)] = 123891, - [SMALL_STATE(4956)] = 124003, - [SMALL_STATE(4957)] = 124115, - [SMALL_STATE(4958)] = 124253, - [SMALL_STATE(4959)] = 124387, - [SMALL_STATE(4960)] = 124529, - [SMALL_STATE(4961)] = 124667, - [SMALL_STATE(4962)] = 124805, - [SMALL_STATE(4963)] = 124947, - [SMALL_STATE(4964)] = 125049, - [SMALL_STATE(4965)] = 125187, - [SMALL_STATE(4966)] = 125275, - [SMALL_STATE(4967)] = 125413, - [SMALL_STATE(4968)] = 125551, - [SMALL_STATE(4969)] = 125689, - [SMALL_STATE(4970)] = 125827, - [SMALL_STATE(4971)] = 125939, - [SMALL_STATE(4972)] = 126077, - [SMALL_STATE(4973)] = 126183, - [SMALL_STATE(4974)] = 126299, - [SMALL_STATE(4975)] = 126437, - [SMALL_STATE(4976)] = 126575, - [SMALL_STATE(4977)] = 126677, - [SMALL_STATE(4978)] = 126765, - [SMALL_STATE(4979)] = 126889, - [SMALL_STATE(4980)] = 127021, - [SMALL_STATE(4981)] = 127155, - [SMALL_STATE(4982)] = 127265, - [SMALL_STATE(4983)] = 127377, - [SMALL_STATE(4984)] = 127515, - [SMALL_STATE(4985)] = 127653, - [SMALL_STATE(4986)] = 127759, - [SMALL_STATE(4987)] = 127861, - [SMALL_STATE(4988)] = 127967, - [SMALL_STATE(4989)] = 128069, - [SMALL_STATE(4990)] = 128197, - [SMALL_STATE(4991)] = 128327, - [SMALL_STATE(4992)] = 128453, - [SMALL_STATE(4993)] = 128565, - [SMALL_STATE(4994)] = 128653, - [SMALL_STATE(4995)] = 128739, - [SMALL_STATE(4996)] = 128863, - [SMALL_STATE(4997)] = 128975, - [SMALL_STATE(4998)] = 129081, - [SMALL_STATE(4999)] = 129183, - [SMALL_STATE(5000)] = 129285, - [SMALL_STATE(5001)] = 129417, - [SMALL_STATE(5002)] = 129529, - [SMALL_STATE(5003)] = 129667, - [SMALL_STATE(5004)] = 129773, - [SMALL_STATE(5005)] = 129907, - [SMALL_STATE(5006)] = 130009, - [SMALL_STATE(5007)] = 130147, - [SMALL_STATE(5008)] = 130259, - [SMALL_STATE(5009)] = 130397, - [SMALL_STATE(5010)] = 130503, - [SMALL_STATE(5011)] = 130605, - [SMALL_STATE(5012)] = 130707, - [SMALL_STATE(5013)] = 130845, - [SMALL_STATE(5014)] = 130957, - [SMALL_STATE(5015)] = 131095, - [SMALL_STATE(5016)] = 131237, - [SMALL_STATE(5017)] = 131375, - [SMALL_STATE(5018)] = 131513, - [SMALL_STATE(5019)] = 131601, - [SMALL_STATE(5020)] = 131739, - [SMALL_STATE(5021)] = 131881, - [SMALL_STATE(5022)] = 132023, - [SMALL_STATE(5023)] = 132135, - [SMALL_STATE(5024)] = 132227, - [SMALL_STATE(5025)] = 132313, - [SMALL_STATE(5026)] = 132415, - [SMALL_STATE(5027)] = 132553, - [SMALL_STATE(5028)] = 132691, - [SMALL_STATE(5029)] = 132797, - [SMALL_STATE(5030)] = 132909, - [SMALL_STATE(5031)] = 133011, - [SMALL_STATE(5032)] = 133127, - [SMALL_STATE(5033)] = 133237, - [SMALL_STATE(5034)] = 133375, - [SMALL_STATE(5035)] = 133503, - [SMALL_STATE(5036)] = 133633, - [SMALL_STATE(5037)] = 133759, - [SMALL_STATE(5038)] = 133871, - [SMALL_STATE(5039)] = 133973, - [SMALL_STATE(5040)] = 134097, - [SMALL_STATE(5041)] = 134239, - [SMALL_STATE(5042)] = 134371, - [SMALL_STATE(5043)] = 134505, - [SMALL_STATE(5044)] = 134643, - [SMALL_STATE(5045)] = 134785, - [SMALL_STATE(5046)] = 134923, - [SMALL_STATE(5047)] = 135035, - [SMALL_STATE(5048)] = 135177, - [SMALL_STATE(5049)] = 135319, - [SMALL_STATE(5050)] = 135457, - [SMALL_STATE(5051)] = 135543, - [SMALL_STATE(5052)] = 135631, - [SMALL_STATE(5053)] = 135715, - [SMALL_STATE(5054)] = 135827, - [SMALL_STATE(5055)] = 135965, - [SMALL_STATE(5056)] = 136103, - [SMALL_STATE(5057)] = 136219, - [SMALL_STATE(5058)] = 136307, - [SMALL_STATE(5059)] = 136395, - [SMALL_STATE(5060)] = 136507, - [SMALL_STATE(5061)] = 136617, - [SMALL_STATE(5062)] = 136755, - [SMALL_STATE(5063)] = 136867, - [SMALL_STATE(5064)] = 136995, - [SMALL_STATE(5065)] = 137125, - [SMALL_STATE(5066)] = 137235, - [SMALL_STATE(5067)] = 137347, - [SMALL_STATE(5068)] = 137485, - [SMALL_STATE(5069)] = 137611, - [SMALL_STATE(5070)] = 137723, - [SMALL_STATE(5071)] = 137865, - [SMALL_STATE(5072)] = 137981, - [SMALL_STATE(5073)] = 138105, - [SMALL_STATE(5074)] = 138215, - [SMALL_STATE(5075)] = 138347, - [SMALL_STATE(5076)] = 138453, - [SMALL_STATE(5077)] = 138587, - [SMALL_STATE(5078)] = 138725, - [SMALL_STATE(5079)] = 138853, - [SMALL_STATE(5080)] = 138941, - [SMALL_STATE(5081)] = 139029, - [SMALL_STATE(5082)] = 139117, - [SMALL_STATE(5083)] = 139203, - [SMALL_STATE(5084)] = 139291, - [SMALL_STATE(5085)] = 139379, - [SMALL_STATE(5086)] = 139467, - [SMALL_STATE(5087)] = 139555, - [SMALL_STATE(5088)] = 139641, - [SMALL_STATE(5089)] = 139729, - [SMALL_STATE(5090)] = 139859, - [SMALL_STATE(5091)] = 139947, - [SMALL_STATE(5092)] = 140035, - [SMALL_STATE(5093)] = 140123, - [SMALL_STATE(5094)] = 140209, - [SMALL_STATE(5095)] = 140297, - [SMALL_STATE(5096)] = 140435, - [SMALL_STATE(5097)] = 140561, - [SMALL_STATE(5098)] = 140649, - [SMALL_STATE(5099)] = 140737, - [SMALL_STATE(5100)] = 140825, - [SMALL_STATE(5101)] = 140911, - [SMALL_STATE(5102)] = 140999, - [SMALL_STATE(5103)] = 141111, - [SMALL_STATE(5104)] = 141235, - [SMALL_STATE(5105)] = 141373, - [SMALL_STATE(5106)] = 141511, - [SMALL_STATE(5107)] = 141649, - [SMALL_STATE(5108)] = 141761, - [SMALL_STATE(5109)] = 141849, - [SMALL_STATE(5110)] = 141951, - [SMALL_STATE(5111)] = 142039, - [SMALL_STATE(5112)] = 142177, - [SMALL_STATE(5113)] = 142263, - [SMALL_STATE(5114)] = 142351, - [SMALL_STATE(5115)] = 142489, - [SMALL_STATE(5116)] = 142627, - [SMALL_STATE(5117)] = 142729, - [SMALL_STATE(5118)] = 142817, - [SMALL_STATE(5119)] = 142950, - [SMALL_STATE(5120)] = 143087, - [SMALL_STATE(5121)] = 143188, - [SMALL_STATE(5122)] = 143287, - [SMALL_STATE(5123)] = 143372, - [SMALL_STATE(5124)] = 143509, - [SMALL_STATE(5125)] = 143648, - [SMALL_STATE(5126)] = 143785, - [SMALL_STATE(5127)] = 143922, - [SMALL_STATE(5128)] = 144009, - [SMALL_STATE(5129)] = 144146, - [SMALL_STATE(5130)] = 144233, - [SMALL_STATE(5131)] = 144340, - [SMALL_STATE(5132)] = 144439, - [SMALL_STATE(5133)] = 144538, - [SMALL_STATE(5134)] = 144675, - [SMALL_STATE(5135)] = 144780, - [SMALL_STATE(5136)] = 144879, - [SMALL_STATE(5137)] = 144978, - [SMALL_STATE(5138)] = 145077, - [SMALL_STATE(5139)] = 145214, - [SMALL_STATE(5140)] = 145351, - [SMALL_STATE(5141)] = 145482, - [SMALL_STATE(5142)] = 145567, - [SMALL_STATE(5143)] = 145704, - [SMALL_STATE(5144)] = 145841, - [SMALL_STATE(5145)] = 145978, - [SMALL_STATE(5146)] = 146077, - [SMALL_STATE(5147)] = 146164, - [SMALL_STATE(5148)] = 146265, - [SMALL_STATE(5149)] = 146366, - [SMALL_STATE(5150)] = 146465, - [SMALL_STATE(5151)] = 146602, - [SMALL_STATE(5152)] = 146739, - [SMALL_STATE(5153)] = 146876, - [SMALL_STATE(5154)] = 147015, - [SMALL_STATE(5155)] = 147102, - [SMALL_STATE(5156)] = 147187, - [SMALL_STATE(5157)] = 147324, - [SMALL_STATE(5158)] = 147411, - [SMALL_STATE(5159)] = 147496, - [SMALL_STATE(5160)] = 147595, - [SMALL_STATE(5161)] = 147688, - [SMALL_STATE(5162)] = 147799, - [SMALL_STATE(5163)] = 147908, - [SMALL_STATE(5164)] = 148013, - [SMALL_STATE(5165)] = 148152, - [SMALL_STATE(5166)] = 148253, - [SMALL_STATE(5167)] = 148392, - [SMALL_STATE(5168)] = 148529, - [SMALL_STATE(5169)] = 148668, - [SMALL_STATE(5170)] = 148807, - [SMALL_STATE(5171)] = 148944, - [SMALL_STATE(5172)] = 149081, - [SMALL_STATE(5173)] = 149220, - [SMALL_STATE(5174)] = 149319, - [SMALL_STATE(5175)] = 149418, - [SMALL_STATE(5176)] = 149521, - [SMALL_STATE(5177)] = 149630, - [SMALL_STATE(5178)] = 149717, - [SMALL_STATE(5179)] = 149832, - [SMALL_STATE(5180)] = 149941, - [SMALL_STATE(5181)] = 150046, - [SMALL_STATE(5182)] = 150173, - [SMALL_STATE(5183)] = 150302, - [SMALL_STATE(5184)] = 150427, - [SMALL_STATE(5185)] = 150538, - [SMALL_STATE(5186)] = 150661, - [SMALL_STATE(5187)] = 150792, - [SMALL_STATE(5188)] = 150925, - [SMALL_STATE(5189)] = 151062, - [SMALL_STATE(5190)] = 151199, - [SMALL_STATE(5191)] = 151336, - [SMALL_STATE(5192)] = 151435, - [SMALL_STATE(5193)] = 151558, - [SMALL_STATE(5194)] = 151695, - [SMALL_STATE(5195)] = 151832, - [SMALL_STATE(5196)] = 151961, - [SMALL_STATE(5197)] = 152060, - [SMALL_STATE(5198)] = 152159, - [SMALL_STATE(5199)] = 152296, - [SMALL_STATE(5200)] = 152433, - [SMALL_STATE(5201)] = 152558, - [SMALL_STATE(5202)] = 152643, - [SMALL_STATE(5203)] = 152780, - [SMALL_STATE(5204)] = 152889, - [SMALL_STATE(5205)] = 153004, - [SMALL_STATE(5206)] = 153091, - [SMALL_STATE(5207)] = 153228, - [SMALL_STATE(5208)] = 153357, - [SMALL_STATE(5209)] = 153494, - [SMALL_STATE(5210)] = 153609, - [SMALL_STATE(5211)] = 153694, - [SMALL_STATE(5212)] = 153793, - [SMALL_STATE(5213)] = 153880, - [SMALL_STATE(5214)] = 153979, - [SMALL_STATE(5215)] = 154078, - [SMALL_STATE(5216)] = 154215, - [SMALL_STATE(5217)] = 154314, - [SMALL_STATE(5218)] = 154415, - [SMALL_STATE(5219)] = 154552, - [SMALL_STATE(5220)] = 154661, - [SMALL_STATE(5221)] = 154766, - [SMALL_STATE(5222)] = 154871, - [SMALL_STATE(5223)] = 154980, - [SMALL_STATE(5224)] = 155067, - [SMALL_STATE(5225)] = 155168, - [SMALL_STATE(5226)] = 155295, - [SMALL_STATE(5227)] = 155432, - [SMALL_STATE(5228)] = 155569, - [SMALL_STATE(5229)] = 155654, - [SMALL_STATE(5230)] = 155765, - [SMALL_STATE(5231)] = 155864, - [SMALL_STATE(5232)] = 155955, - [SMALL_STATE(5233)] = 156040, - [SMALL_STATE(5234)] = 156127, - [SMALL_STATE(5235)] = 156266, - [SMALL_STATE(5236)] = 156397, - [SMALL_STATE(5237)] = 156534, - [SMALL_STATE(5238)] = 156661, - [SMALL_STATE(5239)] = 156798, - [SMALL_STATE(5240)] = 156897, - [SMALL_STATE(5241)] = 156996, - [SMALL_STATE(5242)] = 157119, - [SMALL_STATE(5243)] = 157218, - [SMALL_STATE(5244)] = 157317, - [SMALL_STATE(5245)] = 157416, - [SMALL_STATE(5246)] = 157515, - [SMALL_STATE(5247)] = 157652, - [SMALL_STATE(5248)] = 157737, - [SMALL_STATE(5249)] = 157874, - [SMALL_STATE(5250)] = 157975, - [SMALL_STATE(5251)] = 158112, - [SMALL_STATE(5252)] = 158211, - [SMALL_STATE(5253)] = 158310, - [SMALL_STATE(5254)] = 158447, - [SMALL_STATE(5255)] = 158546, - [SMALL_STATE(5256)] = 158679, - [SMALL_STATE(5257)] = 158816, - [SMALL_STATE(5258)] = 158915, - [SMALL_STATE(5259)] = 159002, - [SMALL_STATE(5260)] = 159089, - [SMALL_STATE(5261)] = 159226, - [SMALL_STATE(5262)] = 159351, - [SMALL_STATE(5263)] = 159488, - [SMALL_STATE(5264)] = 159587, - [SMALL_STATE(5265)] = 159686, - [SMALL_STATE(5266)] = 159785, - [SMALL_STATE(5267)] = 159886, - [SMALL_STATE(5268)] = 159985, - [SMALL_STATE(5269)] = 160114, - [SMALL_STATE(5270)] = 160253, - [SMALL_STATE(5271)] = 160390, - [SMALL_STATE(5272)] = 160527, - [SMALL_STATE(5273)] = 160626, - [SMALL_STATE(5274)] = 160763, - [SMALL_STATE(5275)] = 160874, - [SMALL_STATE(5276)] = 160973, - [SMALL_STATE(5277)] = 161110, - [SMALL_STATE(5278)] = 161235, - [SMALL_STATE(5279)] = 161362, - [SMALL_STATE(5280)] = 161465, - [SMALL_STATE(5281)] = 161580, - [SMALL_STATE(5282)] = 161665, - [SMALL_STATE(5283)] = 161776, - [SMALL_STATE(5284)] = 161913, - [SMALL_STATE(5285)] = 162036, - [SMALL_STATE(5286)] = 162173, - [SMALL_STATE(5287)] = 162282, - [SMALL_STATE(5288)] = 162383, - [SMALL_STATE(5289)] = 162514, - [SMALL_STATE(5290)] = 162647, - [SMALL_STATE(5291)] = 162784, - [SMALL_STATE(5292)] = 162921, - [SMALL_STATE(5293)] = 163058, - [SMALL_STATE(5294)] = 163173, - [SMALL_STATE(5295)] = 163300, - [SMALL_STATE(5296)] = 163399, - [SMALL_STATE(5297)] = 163498, - [SMALL_STATE(5298)] = 163627, - [SMALL_STATE(5299)] = 163766, - [SMALL_STATE(5300)] = 163905, - [SMALL_STATE(5301)] = 164042, - [SMALL_STATE(5302)] = 164167, - [SMALL_STATE(5303)] = 164252, - [SMALL_STATE(5304)] = 164375, - [SMALL_STATE(5305)] = 164506, - [SMALL_STATE(5306)] = 164645, - [SMALL_STATE(5307)] = 164746, - [SMALL_STATE(5308)] = 164879, - [SMALL_STATE(5309)] = 165016, - [SMALL_STATE(5310)] = 165115, - [SMALL_STATE(5311)] = 165252, - [SMALL_STATE(5312)] = 165361, - [SMALL_STATE(5313)] = 165454, - [SMALL_STATE(5314)] = 165591, - [SMALL_STATE(5315)] = 165690, - [SMALL_STATE(5316)] = 165777, - [SMALL_STATE(5317)] = 165914, - [SMALL_STATE(5318)] = 165999, - [SMALL_STATE(5319)] = 166098, - [SMALL_STATE(5320)] = 166197, - [SMALL_STATE(5321)] = 166296, - [SMALL_STATE(5322)] = 166383, - [SMALL_STATE(5323)] = 166520, - [SMALL_STATE(5324)] = 166656, - [SMALL_STATE(5325)] = 166792, - [SMALL_STATE(5326)] = 166928, - [SMALL_STATE(5327)] = 167064, - [SMALL_STATE(5328)] = 167200, - [SMALL_STATE(5329)] = 167336, - [SMALL_STATE(5330)] = 167472, - [SMALL_STATE(5331)] = 167608, - [SMALL_STATE(5332)] = 167744, - [SMALL_STATE(5333)] = 167880, - [SMALL_STATE(5334)] = 167964, - [SMALL_STATE(5335)] = 168100, - [SMALL_STATE(5336)] = 168236, - [SMALL_STATE(5337)] = 168372, - [SMALL_STATE(5338)] = 168508, - [SMALL_STATE(5339)] = 168644, - [SMALL_STATE(5340)] = 168780, - [SMALL_STATE(5341)] = 168916, - [SMALL_STATE(5342)] = 169030, - [SMALL_STATE(5343)] = 169166, - [SMALL_STATE(5344)] = 169274, - [SMALL_STATE(5345)] = 169378, - [SMALL_STATE(5346)] = 169504, - [SMALL_STATE(5347)] = 169588, - [SMALL_STATE(5348)] = 169716, - [SMALL_STATE(5349)] = 169840, - [SMALL_STATE(5350)] = 169950, - [SMALL_STATE(5351)] = 170086, - [SMALL_STATE(5352)] = 170208, - [SMALL_STATE(5353)] = 170308, - [SMALL_STATE(5354)] = 170438, - [SMALL_STATE(5355)] = 170570, - [SMALL_STATE(5356)] = 170706, - [SMALL_STATE(5357)] = 170842, - [SMALL_STATE(5358)] = 170978, - [SMALL_STATE(5359)] = 171114, - [SMALL_STATE(5360)] = 171250, - [SMALL_STATE(5361)] = 171386, - [SMALL_STATE(5362)] = 171522, - [SMALL_STATE(5363)] = 171658, - [SMALL_STATE(5364)] = 171762, - [SMALL_STATE(5365)] = 171898, - [SMALL_STATE(5366)] = 172034, - [SMALL_STATE(5367)] = 172170, - [SMALL_STATE(5368)] = 172306, - [SMALL_STATE(5369)] = 172442, - [SMALL_STATE(5370)] = 172526, - [SMALL_STATE(5371)] = 172662, - [SMALL_STATE(5372)] = 172798, - [SMALL_STATE(5373)] = 172934, - [SMALL_STATE(5374)] = 173070, - [SMALL_STATE(5375)] = 173206, - [SMALL_STATE(5376)] = 173342, - [SMALL_STATE(5377)] = 173478, - [SMALL_STATE(5378)] = 173614, - [SMALL_STATE(5379)] = 173750, - [SMALL_STATE(5380)] = 173886, - [SMALL_STATE(5381)] = 174022, - [SMALL_STATE(5382)] = 174158, - [SMALL_STATE(5383)] = 174294, - [SMALL_STATE(5384)] = 174430, - [SMALL_STATE(5385)] = 174566, - [SMALL_STATE(5386)] = 174702, - [SMALL_STATE(5387)] = 174838, - [SMALL_STATE(5388)] = 174922, - [SMALL_STATE(5389)] = 175058, - [SMALL_STATE(5390)] = 175172, - [SMALL_STATE(5391)] = 175308, - [SMALL_STATE(5392)] = 175416, - [SMALL_STATE(5393)] = 175520, - [SMALL_STATE(5394)] = 175646, - [SMALL_STATE(5395)] = 175774, - [SMALL_STATE(5396)] = 175898, - [SMALL_STATE(5397)] = 176008, - [SMALL_STATE(5398)] = 176130, - [SMALL_STATE(5399)] = 176230, - [SMALL_STATE(5400)] = 176360, - [SMALL_STATE(5401)] = 176496, - [SMALL_STATE(5402)] = 176628, - [SMALL_STATE(5403)] = 176764, - [SMALL_STATE(5404)] = 176900, - [SMALL_STATE(5405)] = 177036, - [SMALL_STATE(5406)] = 177172, - [SMALL_STATE(5407)] = 177308, - [SMALL_STATE(5408)] = 177444, - [SMALL_STATE(5409)] = 177580, - [SMALL_STATE(5410)] = 177716, - [SMALL_STATE(5411)] = 177852, - [SMALL_STATE(5412)] = 177988, - [SMALL_STATE(5413)] = 178124, - [SMALL_STATE(5414)] = 178260, - [SMALL_STATE(5415)] = 178396, - [SMALL_STATE(5416)] = 178532, - [SMALL_STATE(5417)] = 178668, - [SMALL_STATE(5418)] = 178804, - [SMALL_STATE(5419)] = 178940, - [SMALL_STATE(5420)] = 179076, - [SMALL_STATE(5421)] = 179166, - [SMALL_STATE(5422)] = 179252, - [SMALL_STATE(5423)] = 179342, - [SMALL_STATE(5424)] = 179478, - [SMALL_STATE(5425)] = 179614, - [SMALL_STATE(5426)] = 179750, - [SMALL_STATE(5427)] = 179886, - [SMALL_STATE(5428)] = 180022, - [SMALL_STATE(5429)] = 180108, - [SMALL_STATE(5430)] = 180244, - [SMALL_STATE(5431)] = 180380, - [SMALL_STATE(5432)] = 180466, - [SMALL_STATE(5433)] = 180548, - [SMALL_STATE(5434)] = 180684, - [SMALL_STATE(5435)] = 180788, - [SMALL_STATE(5436)] = 180902, - [SMALL_STATE(5437)] = 181038, - [SMALL_STATE(5438)] = 181146, - [SMALL_STATE(5439)] = 181250, - [SMALL_STATE(5440)] = 181376, - [SMALL_STATE(5441)] = 181504, - [SMALL_STATE(5442)] = 181628, - [SMALL_STATE(5443)] = 181738, - [SMALL_STATE(5444)] = 181860, - [SMALL_STATE(5445)] = 181960, - [SMALL_STATE(5446)] = 182090, - [SMALL_STATE(5447)] = 182222, - [SMALL_STATE(5448)] = 182358, - [SMALL_STATE(5449)] = 182494, - [SMALL_STATE(5450)] = 182630, - [SMALL_STATE(5451)] = 182766, - [SMALL_STATE(5452)] = 182902, - [SMALL_STATE(5453)] = 183038, - [SMALL_STATE(5454)] = 183174, - [SMALL_STATE(5455)] = 183310, - [SMALL_STATE(5456)] = 183446, - [SMALL_STATE(5457)] = 183560, - [SMALL_STATE(5458)] = 183696, - [SMALL_STATE(5459)] = 183804, - [SMALL_STATE(5460)] = 183908, - [SMALL_STATE(5461)] = 184034, - [SMALL_STATE(5462)] = 184162, - [SMALL_STATE(5463)] = 184286, - [SMALL_STATE(5464)] = 184422, - [SMALL_STATE(5465)] = 184508, - [SMALL_STATE(5466)] = 184644, - [SMALL_STATE(5467)] = 184730, - [SMALL_STATE(5468)] = 184816, - [SMALL_STATE(5469)] = 184952, - [SMALL_STATE(5470)] = 185062, - [SMALL_STATE(5471)] = 185184, - [SMALL_STATE(5472)] = 185270, - [SMALL_STATE(5473)] = 185354, - [SMALL_STATE(5474)] = 185440, - [SMALL_STATE(5475)] = 185576, - [SMALL_STATE(5476)] = 185712, - [SMALL_STATE(5477)] = 185812, - [SMALL_STATE(5478)] = 185942, - [SMALL_STATE(5479)] = 186074, - [SMALL_STATE(5480)] = 186210, - [SMALL_STATE(5481)] = 186294, - [SMALL_STATE(5482)] = 186408, - [SMALL_STATE(5483)] = 186544, - [SMALL_STATE(5484)] = 186680, - [SMALL_STATE(5485)] = 186788, - [SMALL_STATE(5486)] = 186892, - [SMALL_STATE(5487)] = 187018, - [SMALL_STATE(5488)] = 187146, - [SMALL_STATE(5489)] = 187270, - [SMALL_STATE(5490)] = 187380, - [SMALL_STATE(5491)] = 187502, - [SMALL_STATE(5492)] = 187602, - [SMALL_STATE(5493)] = 187732, - [SMALL_STATE(5494)] = 187864, - [SMALL_STATE(5495)] = 188000, - [SMALL_STATE(5496)] = 188136, - [SMALL_STATE(5497)] = 188236, - [SMALL_STATE(5498)] = 188372, - [SMALL_STATE(5499)] = 188508, - [SMALL_STATE(5500)] = 188644, - [SMALL_STATE(5501)] = 188730, - [SMALL_STATE(5502)] = 188866, - [SMALL_STATE(5503)] = 189002, - [SMALL_STATE(5504)] = 189138, - [SMALL_STATE(5505)] = 189274, - [SMALL_STATE(5506)] = 189410, - [SMALL_STATE(5507)] = 189496, - [SMALL_STATE(5508)] = 189632, - [SMALL_STATE(5509)] = 189768, - [SMALL_STATE(5510)] = 189904, - [SMALL_STATE(5511)] = 190040, - [SMALL_STATE(5512)] = 190126, - [SMALL_STATE(5513)] = 190262, - [SMALL_STATE(5514)] = 190398, - [SMALL_STATE(5515)] = 190534, - [SMALL_STATE(5516)] = 190634, - [SMALL_STATE(5517)] = 190718, - [SMALL_STATE(5518)] = 190854, - [SMALL_STATE(5519)] = 190990, - [SMALL_STATE(5520)] = 191094, - [SMALL_STATE(5521)] = 191230, - [SMALL_STATE(5522)] = 191366, - [SMALL_STATE(5523)] = 191502, - [SMALL_STATE(5524)] = 191638, - [SMALL_STATE(5525)] = 191722, - [SMALL_STATE(5526)] = 191858, - [SMALL_STATE(5527)] = 191994, - [SMALL_STATE(5528)] = 192130, - [SMALL_STATE(5529)] = 192216, - [SMALL_STATE(5530)] = 192352, - [SMALL_STATE(5531)] = 192438, - [SMALL_STATE(5532)] = 192520, - [SMALL_STATE(5533)] = 192656, - [SMALL_STATE(5534)] = 192792, - [SMALL_STATE(5535)] = 192892, - [SMALL_STATE(5536)] = 193028, - [SMALL_STATE(5537)] = 193114, - [SMALL_STATE(5538)] = 193250, - [SMALL_STATE(5539)] = 193336, - [SMALL_STATE(5540)] = 193472, - [SMALL_STATE(5541)] = 193608, - [SMALL_STATE(5542)] = 193744, - [SMALL_STATE(5543)] = 193844, - [SMALL_STATE(5544)] = 193980, - [SMALL_STATE(5545)] = 194116, - [SMALL_STATE(5546)] = 194252, - [SMALL_STATE(5547)] = 194352, - [SMALL_STATE(5548)] = 194488, - [SMALL_STATE(5549)] = 194624, - [SMALL_STATE(5550)] = 194706, - [SMALL_STATE(5551)] = 194842, - [SMALL_STATE(5552)] = 194978, - [SMALL_STATE(5553)] = 195114, - [SMALL_STATE(5554)] = 195250, - [SMALL_STATE(5555)] = 195386, - [SMALL_STATE(5556)] = 195522, - [SMALL_STATE(5557)] = 195658, - [SMALL_STATE(5558)] = 195794, - [SMALL_STATE(5559)] = 195930, - [SMALL_STATE(5560)] = 196066, - [SMALL_STATE(5561)] = 196150, - [SMALL_STATE(5562)] = 196286, - [SMALL_STATE(5563)] = 196422, - [SMALL_STATE(5564)] = 196558, - [SMALL_STATE(5565)] = 196694, - [SMALL_STATE(5566)] = 196776, - [SMALL_STATE(5567)] = 196912, - [SMALL_STATE(5568)] = 196994, - [SMALL_STATE(5569)] = 197082, - [SMALL_STATE(5570)] = 197218, - [SMALL_STATE(5571)] = 197332, - [SMALL_STATE(5572)] = 197440, - [SMALL_STATE(5573)] = 197544, - [SMALL_STATE(5574)] = 197654, - [SMALL_STATE(5575)] = 197754, - [SMALL_STATE(5576)] = 197890, - [SMALL_STATE(5577)] = 197972, - [SMALL_STATE(5578)] = 198054, - [SMALL_STATE(5579)] = 198190, - [SMALL_STATE(5580)] = 198326, - [SMALL_STATE(5581)] = 198424, - [SMALL_STATE(5582)] = 198560, - [SMALL_STATE(5583)] = 198696, - [SMALL_STATE(5584)] = 198780, - [SMALL_STATE(5585)] = 198916, - [SMALL_STATE(5586)] = 199052, - [SMALL_STATE(5587)] = 199188, - [SMALL_STATE(5588)] = 199324, - [SMALL_STATE(5589)] = 199460, - [SMALL_STATE(5590)] = 199596, - [SMALL_STATE(5591)] = 199732, - [SMALL_STATE(5592)] = 199868, - [SMALL_STATE(5593)] = 200004, - [SMALL_STATE(5594)] = 200140, - [SMALL_STATE(5595)] = 200276, - [SMALL_STATE(5596)] = 200412, - [SMALL_STATE(5597)] = 200548, - [SMALL_STATE(5598)] = 200632, - [SMALL_STATE(5599)] = 200768, - [SMALL_STATE(5600)] = 200854, - [SMALL_STATE(5601)] = 200940, - [SMALL_STATE(5602)] = 201024, - [SMALL_STATE(5603)] = 201110, - [SMALL_STATE(5604)] = 201246, - [SMALL_STATE(5605)] = 201382, - [SMALL_STATE(5606)] = 201518, - [SMALL_STATE(5607)] = 201654, - [SMALL_STATE(5608)] = 201790, - [SMALL_STATE(5609)] = 201926, - [SMALL_STATE(5610)] = 202062, - [SMALL_STATE(5611)] = 202148, - [SMALL_STATE(5612)] = 202234, - [SMALL_STATE(5613)] = 202318, - [SMALL_STATE(5614)] = 202404, - [SMALL_STATE(5615)] = 202490, - [SMALL_STATE(5616)] = 202626, - [SMALL_STATE(5617)] = 202762, - [SMALL_STATE(5618)] = 202898, - [SMALL_STATE(5619)] = 203034, - [SMALL_STATE(5620)] = 203120, - [SMALL_STATE(5621)] = 203206, - [SMALL_STATE(5622)] = 203290, - [SMALL_STATE(5623)] = 203376, - [SMALL_STATE(5624)] = 203462, - [SMALL_STATE(5625)] = 203598, - [SMALL_STATE(5626)] = 203680, - [SMALL_STATE(5627)] = 203816, - [SMALL_STATE(5628)] = 203902, - [SMALL_STATE(5629)] = 204038, - [SMALL_STATE(5630)] = 204174, - [SMALL_STATE(5631)] = 204260, - [SMALL_STATE(5632)] = 204396, - [SMALL_STATE(5633)] = 204532, - [SMALL_STATE(5634)] = 204668, - [SMALL_STATE(5635)] = 204760, - [SMALL_STATE(5636)] = 204844, - [SMALL_STATE(5637)] = 204928, - [SMALL_STATE(5638)] = 205028, - [SMALL_STATE(5639)] = 205164, - [SMALL_STATE(5640)] = 205300, - [SMALL_STATE(5641)] = 205436, - [SMALL_STATE(5642)] = 205522, - [SMALL_STATE(5643)] = 205608, - [SMALL_STATE(5644)] = 205692, - [SMALL_STATE(5645)] = 205778, - [SMALL_STATE(5646)] = 205914, - [SMALL_STATE(5647)] = 206040, - [SMALL_STATE(5648)] = 206168, - [SMALL_STATE(5649)] = 206292, - [SMALL_STATE(5650)] = 206414, - [SMALL_STATE(5651)] = 206544, - [SMALL_STATE(5652)] = 206676, - [SMALL_STATE(5653)] = 206812, - [SMALL_STATE(5654)] = 206948, - [SMALL_STATE(5655)] = 207084, - [SMALL_STATE(5656)] = 207220, - [SMALL_STATE(5657)] = 207356, - [SMALL_STATE(5658)] = 207492, - [SMALL_STATE(5659)] = 207628, - [SMALL_STATE(5660)] = 207764, - [SMALL_STATE(5661)] = 207850, - [SMALL_STATE(5662)] = 207934, - [SMALL_STATE(5663)] = 208067, - [SMALL_STATE(5664)] = 208150, - [SMALL_STATE(5665)] = 208243, - [SMALL_STATE(5666)] = 208334, - [SMALL_STATE(5667)] = 208467, - [SMALL_STATE(5668)] = 208600, - [SMALL_STATE(5669)] = 208733, - [SMALL_STATE(5670)] = 208866, - [SMALL_STATE(5671)] = 208967, - [SMALL_STATE(5672)] = 209100, - [SMALL_STATE(5673)] = 209233, - [SMALL_STATE(5674)] = 209324, - [SMALL_STATE(5675)] = 209457, - [SMALL_STATE(5676)] = 209554, - [SMALL_STATE(5677)] = 209645, - [SMALL_STATE(5678)] = 209778, - [SMALL_STATE(5679)] = 209911, - [SMALL_STATE(5680)] = 210044, - [SMALL_STATE(5681)] = 210177, - [SMALL_STATE(5682)] = 210310, - [SMALL_STATE(5683)] = 210407, - [SMALL_STATE(5684)] = 210540, - [SMALL_STATE(5685)] = 210673, - [SMALL_STATE(5686)] = 210806, - [SMALL_STATE(5687)] = 210907, - [SMALL_STATE(5688)] = 211040, - [SMALL_STATE(5689)] = 211173, - [SMALL_STATE(5690)] = 211306, - [SMALL_STATE(5691)] = 211439, - [SMALL_STATE(5692)] = 211536, - [SMALL_STATE(5693)] = 211669, - [SMALL_STATE(5694)] = 211802, - [SMALL_STATE(5695)] = 211899, - [SMALL_STATE(5696)] = 212032, - [SMALL_STATE(5697)] = 212165, - [SMALL_STATE(5698)] = 212298, - [SMALL_STATE(5699)] = 212431, - [SMALL_STATE(5700)] = 212564, - [SMALL_STATE(5701)] = 212697, - [SMALL_STATE(5702)] = 212830, - [SMALL_STATE(5703)] = 212963, - [SMALL_STATE(5704)] = 213054, - [SMALL_STATE(5705)] = 213143, - [SMALL_STATE(5706)] = 213276, - [SMALL_STATE(5707)] = 213377, - [SMALL_STATE(5708)] = 213468, - [SMALL_STATE(5709)] = 213601, - [SMALL_STATE(5710)] = 213692, - [SMALL_STATE(5711)] = 213825, - [SMALL_STATE(5712)] = 213915, - [SMALL_STATE(5713)] = 214013, - [SMALL_STATE(5714)] = 214103, - [SMALL_STATE(5715)] = 214199, - [SMALL_STATE(5716)] = 214289, - [SMALL_STATE(5717)] = 214387, - [SMALL_STATE(5718)] = 214477, - [SMALL_STATE(5719)] = 214567, - [SMALL_STATE(5720)] = 214649, - [SMALL_STATE(5721)] = 214747, - [SMALL_STATE(5722)] = 214841, - [SMALL_STATE(5723)] = 214939, - [SMALL_STATE(5724)] = 215029, - [SMALL_STATE(5725)] = 215125, - [SMALL_STATE(5726)] = 215223, - [SMALL_STATE(5727)] = 215321, - [SMALL_STATE(5728)] = 215417, - [SMALL_STATE(5729)] = 215507, - [SMALL_STATE(5730)] = 215589, - [SMALL_STATE(5731)] = 215679, - [SMALL_STATE(5732)] = 215777, - [SMALL_STATE(5733)] = 215867, - [SMALL_STATE(5734)] = 215964, - [SMALL_STATE(5735)] = 216059, - [SMALL_STATE(5736)] = 216154, - [SMALL_STATE(5737)] = 216249, - [SMALL_STATE(5738)] = 216342, - [SMALL_STATE(5739)] = 216429, - [SMALL_STATE(5740)] = 216516, - [SMALL_STATE(5741)] = 216597, - [SMALL_STATE(5742)] = 216688, - [SMALL_STATE(5743)] = 216783, - [SMALL_STATE(5744)] = 216876, - [SMALL_STATE(5745)] = 216971, - [SMALL_STATE(5746)] = 217062, - [SMALL_STATE(5747)] = 217157, - [SMALL_STATE(5748)] = 217248, - [SMALL_STATE(5749)] = 217341, - [SMALL_STATE(5750)] = 217432, - [SMALL_STATE(5751)] = 217525, - [SMALL_STATE(5752)] = 217620, - [SMALL_STATE(5753)] = 217705, - [SMALL_STATE(5754)] = 217800, - [SMALL_STATE(5755)] = 217895, - [SMALL_STATE(5756)] = 217988, - [SMALL_STATE(5757)] = 218083, - [SMALL_STATE(5758)] = 218176, - [SMALL_STATE(5759)] = 218275, - [SMALL_STATE(5760)] = 218362, - [SMALL_STATE(5761)] = 218454, - [SMALL_STATE(5762)] = 218546, - [SMALL_STATE(5763)] = 218638, - [SMALL_STATE(5764)] = 218724, - [SMALL_STATE(5765)] = 218816, - [SMALL_STATE(5766)] = 218908, - [SMALL_STATE(5767)] = 219000, - [SMALL_STATE(5768)] = 219092, - [SMALL_STATE(5769)] = 219172, - [SMALL_STATE(5770)] = 219264, - [SMALL_STATE(5771)] = 219356, - [SMALL_STATE(5772)] = 219448, - [SMALL_STATE(5773)] = 219540, - [SMALL_STATE(5774)] = 219632, - [SMALL_STATE(5775)] = 219724, - [SMALL_STATE(5776)] = 219816, - [SMALL_STATE(5777)] = 219908, - [SMALL_STATE(5778)] = 220000, - [SMALL_STATE(5779)] = 220092, - [SMALL_STATE(5780)] = 220184, - [SMALL_STATE(5781)] = 220276, - [SMALL_STATE(5782)] = 220356, - [SMALL_STATE(5783)] = 220448, - [SMALL_STATE(5784)] = 220531, - [SMALL_STATE(5785)] = 220620, - [SMALL_STATE(5786)] = 220705, - [SMALL_STATE(5787)] = 220796, - [SMALL_STATE(5788)] = 220885, - [SMALL_STATE(5789)] = 220966, - [SMALL_STATE(5790)] = 221051, - [SMALL_STATE(5791)] = 221128, - [SMALL_STATE(5792)] = 221217, - [SMALL_STATE(5793)] = 221306, - [SMALL_STATE(5794)] = 221395, - [SMALL_STATE(5795)] = 221484, - [SMALL_STATE(5796)] = 221573, - [SMALL_STATE(5797)] = 221662, - [SMALL_STATE(5798)] = 221751, - [SMALL_STATE(5799)] = 221842, - [SMALL_STATE(5800)] = 221932, - [SMALL_STATE(5801)] = 222022, - [SMALL_STATE(5802)] = 222112, - [SMALL_STATE(5803)] = 222202, - [SMALL_STATE(5804)] = 222292, - [SMALL_STATE(5805)] = 222382, - [SMALL_STATE(5806)] = 222466, - [SMALL_STATE(5807)] = 222556, - [SMALL_STATE(5808)] = 222646, - [SMALL_STATE(5809)] = 222722, - [SMALL_STATE(5810)] = 222812, - [SMALL_STATE(5811)] = 222902, - [SMALL_STATE(5812)] = 222992, - [SMALL_STATE(5813)] = 223076, - [SMALL_STATE(5814)] = 223166, - [SMALL_STATE(5815)] = 223242, - [SMALL_STATE(5816)] = 223332, - [SMALL_STATE(5817)] = 223422, - [SMALL_STATE(5818)] = 223512, - [SMALL_STATE(5819)] = 223602, - [SMALL_STATE(5820)] = 223692, - [SMALL_STATE(5821)] = 223782, - [SMALL_STATE(5822)] = 223872, - [SMALL_STATE(5823)] = 223962, - [SMALL_STATE(5824)] = 224052, - [SMALL_STATE(5825)] = 224142, - [SMALL_STATE(5826)] = 224232, - [SMALL_STATE(5827)] = 224322, - [SMALL_STATE(5828)] = 224412, - [SMALL_STATE(5829)] = 224488, - [SMALL_STATE(5830)] = 224578, - [SMALL_STATE(5831)] = 224668, - [SMALL_STATE(5832)] = 224758, - [SMALL_STATE(5833)] = 224848, - [SMALL_STATE(5834)] = 224938, - [SMALL_STATE(5835)] = 225028, - [SMALL_STATE(5836)] = 225118, - [SMALL_STATE(5837)] = 225204, - [SMALL_STATE(5838)] = 225294, - [SMALL_STATE(5839)] = 225384, - [SMALL_STATE(5840)] = 225462, - [SMALL_STATE(5841)] = 225552, - [SMALL_STATE(5842)] = 225642, - [SMALL_STATE(5843)] = 225732, - [SMALL_STATE(5844)] = 225818, - [SMALL_STATE(5845)] = 225908, - [SMALL_STATE(5846)] = 225994, - [SMALL_STATE(5847)] = 226080, - [SMALL_STATE(5848)] = 226170, - [SMALL_STATE(5849)] = 226260, - [SMALL_STATE(5850)] = 226350, - [SMALL_STATE(5851)] = 226440, - [SMALL_STATE(5852)] = 226516, - [SMALL_STATE(5853)] = 226606, - [SMALL_STATE(5854)] = 226696, - [SMALL_STATE(5855)] = 226786, - [SMALL_STATE(5856)] = 226876, - [SMALL_STATE(5857)] = 226966, - [SMALL_STATE(5858)] = 227056, - [SMALL_STATE(5859)] = 227146, - [SMALL_STATE(5860)] = 227236, - [SMALL_STATE(5861)] = 227326, - [SMALL_STATE(5862)] = 227416, - [SMALL_STATE(5863)] = 227506, - [SMALL_STATE(5864)] = 227584, - [SMALL_STATE(5865)] = 227674, - [SMALL_STATE(5866)] = 227764, - [SMALL_STATE(5867)] = 227854, - [SMALL_STATE(5868)] = 227944, - [SMALL_STATE(5869)] = 228034, - [SMALL_STATE(5870)] = 228120, - [SMALL_STATE(5871)] = 228210, - [SMALL_STATE(5872)] = 228295, - [SMALL_STATE(5873)] = 228380, - [SMALL_STATE(5874)] = 228465, - [SMALL_STATE(5875)] = 228552, - [SMALL_STATE(5876)] = 228637, - [SMALL_STATE(5877)] = 228722, - [SMALL_STATE(5878)] = 228807, - [SMALL_STATE(5879)] = 228892, - [SMALL_STATE(5880)] = 228977, - [SMALL_STATE(5881)] = 229060, - [SMALL_STATE(5882)] = 229143, - [SMALL_STATE(5883)] = 229226, - [SMALL_STATE(5884)] = 229311, - [SMALL_STATE(5885)] = 229386, - [SMALL_STATE(5886)] = 229471, - [SMALL_STATE(5887)] = 229556, - [SMALL_STATE(5888)] = 229641, - [SMALL_STATE(5889)] = 229726, - [SMALL_STATE(5890)] = 229811, - [SMALL_STATE(5891)] = 229896, - [SMALL_STATE(5892)] = 229981, - [SMALL_STATE(5893)] = 230066, - [SMALL_STATE(5894)] = 230151, - [SMALL_STATE(5895)] = 230232, - [SMALL_STATE(5896)] = 230319, - [SMALL_STATE(5897)] = 230404, - [SMALL_STATE(5898)] = 230489, - [SMALL_STATE(5899)] = 230574, - [SMALL_STATE(5900)] = 230649, - [SMALL_STATE(5901)] = 230736, - [SMALL_STATE(5902)] = 230819, - [SMALL_STATE(5903)] = 230894, - [SMALL_STATE(5904)] = 230975, - [SMALL_STATE(5905)] = 231060, - [SMALL_STATE(5906)] = 231145, - [SMALL_STATE(5907)] = 231230, - [SMALL_STATE(5908)] = 231315, - [SMALL_STATE(5909)] = 231402, - [SMALL_STATE(5910)] = 231487, - [SMALL_STATE(5911)] = 231572, - [SMALL_STATE(5912)] = 231657, - [SMALL_STATE(5913)] = 231741, - [SMALL_STATE(5914)] = 231825, - [SMALL_STATE(5915)] = 231909, - [SMALL_STATE(5916)] = 231993, - [SMALL_STATE(5917)] = 232077, - [SMALL_STATE(5918)] = 232161, - [SMALL_STATE(5919)] = 232245, - [SMALL_STATE(5920)] = 232329, - [SMALL_STATE(5921)] = 232413, - [SMALL_STATE(5922)] = 232497, - [SMALL_STATE(5923)] = 232581, - [SMALL_STATE(5924)] = 232665, - [SMALL_STATE(5925)] = 232749, - [SMALL_STATE(5926)] = 232830, - [SMALL_STATE(5927)] = 232911, - [SMALL_STATE(5928)] = 232992, - [SMALL_STATE(5929)] = 233073, - [SMALL_STATE(5930)] = 233154, - [SMALL_STATE(5931)] = 233235, - [SMALL_STATE(5932)] = 233316, - [SMALL_STATE(5933)] = 233397, - [SMALL_STATE(5934)] = 233478, - [SMALL_STATE(5935)] = 233551, - [SMALL_STATE(5936)] = 233632, - [SMALL_STATE(5937)] = 233713, - [SMALL_STATE(5938)] = 233794, - [SMALL_STATE(5939)] = 233875, - [SMALL_STATE(5940)] = 233956, - [SMALL_STATE(5941)] = 234037, - [SMALL_STATE(5942)] = 234118, - [SMALL_STATE(5943)] = 234199, - [SMALL_STATE(5944)] = 234280, - [SMALL_STATE(5945)] = 234361, - [SMALL_STATE(5946)] = 234442, - [SMALL_STATE(5947)] = 234521, - [SMALL_STATE(5948)] = 234600, - [SMALL_STATE(5949)] = 234681, - [SMALL_STATE(5950)] = 234762, - [SMALL_STATE(5951)] = 234841, - [SMALL_STATE(5952)] = 234922, - [SMALL_STATE(5953)] = 235001, - [SMALL_STATE(5954)] = 235082, - [SMALL_STATE(5955)] = 235163, - [SMALL_STATE(5956)] = 235244, - [SMALL_STATE(5957)] = 235325, - [SMALL_STATE(5958)] = 235406, - [SMALL_STATE(5959)] = 235487, - [SMALL_STATE(5960)] = 235568, - [SMALL_STATE(5961)] = 235649, - [SMALL_STATE(5962)] = 235730, - [SMALL_STATE(5963)] = 235811, - [SMALL_STATE(5964)] = 235892, - [SMALL_STATE(5965)] = 235973, - [SMALL_STATE(5966)] = 236054, - [SMALL_STATE(5967)] = 236135, - [SMALL_STATE(5968)] = 236216, - [SMALL_STATE(5969)] = 236297, - [SMALL_STATE(5970)] = 236378, - [SMALL_STATE(5971)] = 236459, - [SMALL_STATE(5972)] = 236540, - [SMALL_STATE(5973)] = 236621, - [SMALL_STATE(5974)] = 236702, - [SMALL_STATE(5975)] = 236783, - [SMALL_STATE(5976)] = 236864, - [SMALL_STATE(5977)] = 236945, - [SMALL_STATE(5978)] = 237026, - [SMALL_STATE(5979)] = 237107, - [SMALL_STATE(5980)] = 237188, - [SMALL_STATE(5981)] = 237269, - [SMALL_STATE(5982)] = 237350, - [SMALL_STATE(5983)] = 237431, - [SMALL_STATE(5984)] = 237512, - [SMALL_STATE(5985)] = 237593, - [SMALL_STATE(5986)] = 237674, - [SMALL_STATE(5987)] = 237747, - [SMALL_STATE(5988)] = 237828, - [SMALL_STATE(5989)] = 237901, - [SMALL_STATE(5990)] = 237982, - [SMALL_STATE(5991)] = 238063, - [SMALL_STATE(5992)] = 238144, - [SMALL_STATE(5993)] = 238225, - [SMALL_STATE(5994)] = 238306, - [SMALL_STATE(5995)] = 238387, - [SMALL_STATE(5996)] = 238468, - [SMALL_STATE(5997)] = 238549, - [SMALL_STATE(5998)] = 238630, - [SMALL_STATE(5999)] = 238711, - [SMALL_STATE(6000)] = 238792, - [SMALL_STATE(6001)] = 238873, - [SMALL_STATE(6002)] = 238954, - [SMALL_STATE(6003)] = 239035, - [SMALL_STATE(6004)] = 239116, - [SMALL_STATE(6005)] = 239197, - [SMALL_STATE(6006)] = 239278, - [SMALL_STATE(6007)] = 239359, - [SMALL_STATE(6008)] = 239440, - [SMALL_STATE(6009)] = 239521, - [SMALL_STATE(6010)] = 239602, - [SMALL_STATE(6011)] = 239683, - [SMALL_STATE(6012)] = 239764, - [SMALL_STATE(6013)] = 239845, - [SMALL_STATE(6014)] = 239926, - [SMALL_STATE(6015)] = 240007, - [SMALL_STATE(6016)] = 240088, - [SMALL_STATE(6017)] = 240169, - [SMALL_STATE(6018)] = 240248, - [SMALL_STATE(6019)] = 240329, - [SMALL_STATE(6020)] = 240410, - [SMALL_STATE(6021)] = 240491, - [SMALL_STATE(6022)] = 240572, - [SMALL_STATE(6023)] = 240653, - [SMALL_STATE(6024)] = 240734, - [SMALL_STATE(6025)] = 240815, - [SMALL_STATE(6026)] = 240896, - [SMALL_STATE(6027)] = 240977, - [SMALL_STATE(6028)] = 241058, - [SMALL_STATE(6029)] = 241139, - [SMALL_STATE(6030)] = 241220, - [SMALL_STATE(6031)] = 241301, - [SMALL_STATE(6032)] = 241382, - [SMALL_STATE(6033)] = 241463, - [SMALL_STATE(6034)] = 241544, - [SMALL_STATE(6035)] = 241625, - [SMALL_STATE(6036)] = 241704, - [SMALL_STATE(6037)] = 241785, - [SMALL_STATE(6038)] = 241864, - [SMALL_STATE(6039)] = 241945, - [SMALL_STATE(6040)] = 242026, - [SMALL_STATE(6041)] = 242107, - [SMALL_STATE(6042)] = 242180, - [SMALL_STATE(6043)] = 242261, - [SMALL_STATE(6044)] = 242342, - [SMALL_STATE(6045)] = 242423, - [SMALL_STATE(6046)] = 242504, - [SMALL_STATE(6047)] = 242585, - [SMALL_STATE(6048)] = 242666, - [SMALL_STATE(6049)] = 242741, - [SMALL_STATE(6050)] = 242822, - [SMALL_STATE(6051)] = 242895, - [SMALL_STATE(6052)] = 242968, - [SMALL_STATE(6053)] = 243047, - [SMALL_STATE(6054)] = 243128, - [SMALL_STATE(6055)] = 243209, - [SMALL_STATE(6056)] = 243290, - [SMALL_STATE(6057)] = 243371, - [SMALL_STATE(6058)] = 243452, - [SMALL_STATE(6059)] = 243530, - [SMALL_STATE(6060)] = 243608, - [SMALL_STATE(6061)] = 243686, - [SMALL_STATE(6062)] = 243760, - [SMALL_STATE(6063)] = 243832, - [SMALL_STATE(6064)] = 243910, - [SMALL_STATE(6065)] = 243988, - [SMALL_STATE(6066)] = 244063, - [SMALL_STATE(6067)] = 244138, - [SMALL_STATE(6068)] = 244213, - [SMALL_STATE(6069)] = 244288, - [SMALL_STATE(6070)] = 244363, - [SMALL_STATE(6071)] = 244438, - [SMALL_STATE(6072)] = 244513, - [SMALL_STATE(6073)] = 244588, - [SMALL_STATE(6074)] = 244663, - [SMALL_STATE(6075)] = 244738, - [SMALL_STATE(6076)] = 244813, - [SMALL_STATE(6077)] = 244888, - [SMALL_STATE(6078)] = 244963, - [SMALL_STATE(6079)] = 245038, - [SMALL_STATE(6080)] = 245113, - [SMALL_STATE(6081)] = 245188, - [SMALL_STATE(6082)] = 245263, - [SMALL_STATE(6083)] = 245338, - [SMALL_STATE(6084)] = 245413, - [SMALL_STATE(6085)] = 245488, - [SMALL_STATE(6086)] = 245557, - [SMALL_STATE(6087)] = 245632, - [SMALL_STATE(6088)] = 245707, - [SMALL_STATE(6089)] = 245782, - [SMALL_STATE(6090)] = 245857, - [SMALL_STATE(6091)] = 245932, - [SMALL_STATE(6092)] = 246007, - [SMALL_STATE(6093)] = 246082, - [SMALL_STATE(6094)] = 246157, - [SMALL_STATE(6095)] = 246232, - [SMALL_STATE(6096)] = 246307, - [SMALL_STATE(6097)] = 246382, - [SMALL_STATE(6098)] = 246457, - [SMALL_STATE(6099)] = 246532, - [SMALL_STATE(6100)] = 246607, - [SMALL_STATE(6101)] = 246682, - [SMALL_STATE(6102)] = 246757, - [SMALL_STATE(6103)] = 246832, - [SMALL_STATE(6104)] = 246907, - [SMALL_STATE(6105)] = 246982, - [SMALL_STATE(6106)] = 247057, - [SMALL_STATE(6107)] = 247132, - [SMALL_STATE(6108)] = 247207, - [SMALL_STATE(6109)] = 247282, - [SMALL_STATE(6110)] = 247357, - [SMALL_STATE(6111)] = 247432, - [SMALL_STATE(6112)] = 247507, - [SMALL_STATE(6113)] = 247582, - [SMALL_STATE(6114)] = 247657, - [SMALL_STATE(6115)] = 247732, - [SMALL_STATE(6116)] = 247807, - [SMALL_STATE(6117)] = 247882, - [SMALL_STATE(6118)] = 247957, - [SMALL_STATE(6119)] = 248032, - [SMALL_STATE(6120)] = 248107, - [SMALL_STATE(6121)] = 248182, - [SMALL_STATE(6122)] = 248257, - [SMALL_STATE(6123)] = 248332, - [SMALL_STATE(6124)] = 248407, - [SMALL_STATE(6125)] = 248482, - [SMALL_STATE(6126)] = 248557, - [SMALL_STATE(6127)] = 248632, - [SMALL_STATE(6128)] = 248707, - [SMALL_STATE(6129)] = 248782, - [SMALL_STATE(6130)] = 248857, - [SMALL_STATE(6131)] = 248932, - [SMALL_STATE(6132)] = 249007, - [SMALL_STATE(6133)] = 249079, - [SMALL_STATE(6134)] = 249151, - [SMALL_STATE(6135)] = 249223, - [SMALL_STATE(6136)] = 249295, - [SMALL_STATE(6137)] = 249367, - [SMALL_STATE(6138)] = 249439, - [SMALL_STATE(6139)] = 249508, - [SMALL_STATE(6140)] = 249577, - [SMALL_STATE(6141)] = 249644, - [SMALL_STATE(6142)] = 249713, - [SMALL_STATE(6143)] = 249782, - [SMALL_STATE(6144)] = 249851, - [SMALL_STATE(6145)] = 249920, - [SMALL_STATE(6146)] = 250006, - [SMALL_STATE(6147)] = 250092, - [SMALL_STATE(6148)] = 250178, - [SMALL_STATE(6149)] = 250264, - [SMALL_STATE(6150)] = 250350, - [SMALL_STATE(6151)] = 250436, - [SMALL_STATE(6152)] = 250522, - [SMALL_STATE(6153)] = 250608, - [SMALL_STATE(6154)] = 250694, - [SMALL_STATE(6155)] = 250780, - [SMALL_STATE(6156)] = 250866, - [SMALL_STATE(6157)] = 250952, - [SMALL_STATE(6158)] = 251038, - [SMALL_STATE(6159)] = 251124, - [SMALL_STATE(6160)] = 251210, - [SMALL_STATE(6161)] = 251296, - [SMALL_STATE(6162)] = 251382, - [SMALL_STATE(6163)] = 251468, - [SMALL_STATE(6164)] = 251554, - [SMALL_STATE(6165)] = 251640, - [SMALL_STATE(6166)] = 251726, - [SMALL_STATE(6167)] = 251812, - [SMALL_STATE(6168)] = 251898, - [SMALL_STATE(6169)] = 251984, - [SMALL_STATE(6170)] = 252070, - [SMALL_STATE(6171)] = 252156, - [SMALL_STATE(6172)] = 252242, - [SMALL_STATE(6173)] = 252328, - [SMALL_STATE(6174)] = 252414, - [SMALL_STATE(6175)] = 252500, - [SMALL_STATE(6176)] = 252586, - [SMALL_STATE(6177)] = 252672, - [SMALL_STATE(6178)] = 252758, - [SMALL_STATE(6179)] = 252844, - [SMALL_STATE(6180)] = 252930, - [SMALL_STATE(6181)] = 253016, - [SMALL_STATE(6182)] = 253102, - [SMALL_STATE(6183)] = 253188, - [SMALL_STATE(6184)] = 253274, - [SMALL_STATE(6185)] = 253360, - [SMALL_STATE(6186)] = 253443, - [SMALL_STATE(6187)] = 253526, - [SMALL_STATE(6188)] = 253609, - [SMALL_STATE(6189)] = 253692, - [SMALL_STATE(6190)] = 253775, - [SMALL_STATE(6191)] = 253858, - [SMALL_STATE(6192)] = 253941, - [SMALL_STATE(6193)] = 254024, - [SMALL_STATE(6194)] = 254107, - [SMALL_STATE(6195)] = 254190, - [SMALL_STATE(6196)] = 254273, - [SMALL_STATE(6197)] = 254356, - [SMALL_STATE(6198)] = 254439, - [SMALL_STATE(6199)] = 254522, - [SMALL_STATE(6200)] = 254605, - [SMALL_STATE(6201)] = 254688, - [SMALL_STATE(6202)] = 254771, - [SMALL_STATE(6203)] = 254854, - [SMALL_STATE(6204)] = 254937, - [SMALL_STATE(6205)] = 255020, - [SMALL_STATE(6206)] = 255103, - [SMALL_STATE(6207)] = 255186, - [SMALL_STATE(6208)] = 255269, - [SMALL_STATE(6209)] = 255352, - [SMALL_STATE(6210)] = 255435, - [SMALL_STATE(6211)] = 255518, - [SMALL_STATE(6212)] = 255601, - [SMALL_STATE(6213)] = 255684, - [SMALL_STATE(6214)] = 255767, - [SMALL_STATE(6215)] = 255850, - [SMALL_STATE(6216)] = 255933, - [SMALL_STATE(6217)] = 256016, - [SMALL_STATE(6218)] = 256099, - [SMALL_STATE(6219)] = 256182, - [SMALL_STATE(6220)] = 256265, - [SMALL_STATE(6221)] = 256348, - [SMALL_STATE(6222)] = 256431, - [SMALL_STATE(6223)] = 256514, - [SMALL_STATE(6224)] = 256597, - [SMALL_STATE(6225)] = 256680, - [SMALL_STATE(6226)] = 256763, - [SMALL_STATE(6227)] = 256846, - [SMALL_STATE(6228)] = 256929, - [SMALL_STATE(6229)] = 257012, - [SMALL_STATE(6230)] = 257095, - [SMALL_STATE(6231)] = 257178, - [SMALL_STATE(6232)] = 257261, - [SMALL_STATE(6233)] = 257344, - [SMALL_STATE(6234)] = 257427, - [SMALL_STATE(6235)] = 257510, - [SMALL_STATE(6236)] = 257593, - [SMALL_STATE(6237)] = 257676, - [SMALL_STATE(6238)] = 257759, - [SMALL_STATE(6239)] = 257842, - [SMALL_STATE(6240)] = 257925, - [SMALL_STATE(6241)] = 258008, - [SMALL_STATE(6242)] = 258091, - [SMALL_STATE(6243)] = 258174, - [SMALL_STATE(6244)] = 258257, - [SMALL_STATE(6245)] = 258340, - [SMALL_STATE(6246)] = 258423, - [SMALL_STATE(6247)] = 258506, - [SMALL_STATE(6248)] = 258589, - [SMALL_STATE(6249)] = 258672, - [SMALL_STATE(6250)] = 258755, - [SMALL_STATE(6251)] = 258838, - [SMALL_STATE(6252)] = 258926, - [SMALL_STATE(6253)] = 259014, - [SMALL_STATE(6254)] = 259102, - [SMALL_STATE(6255)] = 259174, - [SMALL_STATE(6256)] = 259248, - [SMALL_STATE(6257)] = 259322, - [SMALL_STATE(6258)] = 259396, - [SMALL_STATE(6259)] = 259470, - [SMALL_STATE(6260)] = 259544, - [SMALL_STATE(6261)] = 259608, - [SMALL_STATE(6262)] = 259682, - [SMALL_STATE(6263)] = 259756, - [SMALL_STATE(6264)] = 259830, - [SMALL_STATE(6265)] = 259904, - [SMALL_STATE(6266)] = 259978, - [SMALL_STATE(6267)] = 260052, - [SMALL_STATE(6268)] = 260126, - [SMALL_STATE(6269)] = 260200, - [SMALL_STATE(6270)] = 260274, - [SMALL_STATE(6271)] = 260349, - [SMALL_STATE(6272)] = 260424, - [SMALL_STATE(6273)] = 260495, - [SMALL_STATE(6274)] = 260566, - [SMALL_STATE(6275)] = 260641, - [SMALL_STATE(6276)] = 260698, - [SMALL_STATE(6277)] = 260769, - [SMALL_STATE(6278)] = 260828, - [SMALL_STATE(6279)] = 260887, - [SMALL_STATE(6280)] = 260958, - [SMALL_STATE(6281)] = 261029, - [SMALL_STATE(6282)] = 261100, - [SMALL_STATE(6283)] = 261171, - [SMALL_STATE(6284)] = 261242, - [SMALL_STATE(6285)] = 261304, - [SMALL_STATE(6286)] = 261374, - [SMALL_STATE(6287)] = 261431, - [SMALL_STATE(6288)] = 261500, - [SMALL_STATE(6289)] = 261569, - [SMALL_STATE(6290)] = 261638, - [SMALL_STATE(6291)] = 261707, - [SMALL_STATE(6292)] = 261776, - [SMALL_STATE(6293)] = 261845, - [SMALL_STATE(6294)] = 261914, - [SMALL_STATE(6295)] = 261983, - [SMALL_STATE(6296)] = 262052, - [SMALL_STATE(6297)] = 262107, - [SMALL_STATE(6298)] = 262166, - [SMALL_STATE(6299)] = 262235, - [SMALL_STATE(6300)] = 262304, - [SMALL_STATE(6301)] = 262373, - [SMALL_STATE(6302)] = 262442, - [SMALL_STATE(6303)] = 262511, - [SMALL_STATE(6304)] = 262580, - [SMALL_STATE(6305)] = 262649, - [SMALL_STATE(6306)] = 262706, - [SMALL_STATE(6307)] = 262763, - [SMALL_STATE(6308)] = 262832, - [SMALL_STATE(6309)] = 262901, - [SMALL_STATE(6310)] = 262970, - [SMALL_STATE(6311)] = 263037, - [SMALL_STATE(6312)] = 263106, - [SMALL_STATE(6313)] = 263175, - [SMALL_STATE(6314)] = 263244, - [SMALL_STATE(6315)] = 263313, - [SMALL_STATE(6316)] = 263382, - [SMALL_STATE(6317)] = 263451, - [SMALL_STATE(6318)] = 263520, - [SMALL_STATE(6319)] = 263581, - [SMALL_STATE(6320)] = 263642, - [SMALL_STATE(6321)] = 263711, - [SMALL_STATE(6322)] = 263780, - [SMALL_STATE(6323)] = 263849, - [SMALL_STATE(6324)] = 263910, - [SMALL_STATE(6325)] = 263979, - [SMALL_STATE(6326)] = 264048, - [SMALL_STATE(6327)] = 264117, - [SMALL_STATE(6328)] = 264183, - [SMALL_STATE(6329)] = 264245, - [SMALL_STATE(6330)] = 264297, - [SMALL_STATE(6331)] = 264363, - [SMALL_STATE(6332)] = 264419, - [SMALL_STATE(6333)] = 264479, - [SMALL_STATE(6334)] = 264545, - [SMALL_STATE(6335)] = 264611, - [SMALL_STATE(6336)] = 264663, - [SMALL_STATE(6337)] = 264729, - [SMALL_STATE(6338)] = 264795, - [SMALL_STATE(6339)] = 264856, - [SMALL_STATE(6340)] = 264917, - [SMALL_STATE(6341)] = 264978, - [SMALL_STATE(6342)] = 265039, - [SMALL_STATE(6343)] = 265100, - [SMALL_STATE(6344)] = 265161, - [SMALL_STATE(6345)] = 265222, - [SMALL_STATE(6346)] = 265273, - [SMALL_STATE(6347)] = 265334, - [SMALL_STATE(6348)] = 265395, - [SMALL_STATE(6349)] = 265456, - [SMALL_STATE(6350)] = 265511, - [SMALL_STATE(6351)] = 265566, - [SMALL_STATE(6352)] = 265617, - [SMALL_STATE(6353)] = 265678, - [SMALL_STATE(6354)] = 265731, - [SMALL_STATE(6355)] = 265792, - [SMALL_STATE(6356)] = 265843, - [SMALL_STATE(6357)] = 265896, - [SMALL_STATE(6358)] = 265957, - [SMALL_STATE(6359)] = 266018, - [SMALL_STATE(6360)] = 266077, - [SMALL_STATE(6361)] = 266138, - [SMALL_STATE(6362)] = 266189, - [SMALL_STATE(6363)] = 266250, - [SMALL_STATE(6364)] = 266301, - [SMALL_STATE(6365)] = 266362, - [SMALL_STATE(6366)] = 266423, - [SMALL_STATE(6367)] = 266474, - [SMALL_STATE(6368)] = 266525, - [SMALL_STATE(6369)] = 266586, - [SMALL_STATE(6370)] = 266647, - [SMALL_STATE(6371)] = 266698, - [SMALL_STATE(6372)] = 266753, - [SMALL_STATE(6373)] = 266808, - [SMALL_STATE(6374)] = 266859, - [SMALL_STATE(6375)] = 266920, - [SMALL_STATE(6376)] = 266981, - [SMALL_STATE(6377)] = 267042, - [SMALL_STATE(6378)] = 267103, - [SMALL_STATE(6379)] = 267164, - [SMALL_STATE(6380)] = 267225, - [SMALL_STATE(6381)] = 267285, - [SMALL_STATE(6382)] = 267343, - [SMALL_STATE(6383)] = 267393, - [SMALL_STATE(6384)] = 267453, - [SMALL_STATE(6385)] = 267513, - [SMALL_STATE(6386)] = 267569, - [SMALL_STATE(6387)] = 267629, - [SMALL_STATE(6388)] = 267689, - [SMALL_STATE(6389)] = 267745, - [SMALL_STATE(6390)] = 267805, - [SMALL_STATE(6391)] = 267865, - [SMALL_STATE(6392)] = 267925, - [SMALL_STATE(6393)] = 267985, - [SMALL_STATE(6394)] = 268045, - [SMALL_STATE(6395)] = 268105, - [SMALL_STATE(6396)] = 268163, - [SMALL_STATE(6397)] = 268223, - [SMALL_STATE(6398)] = 268283, - [SMALL_STATE(6399)] = 268343, - [SMALL_STATE(6400)] = 268401, - [SMALL_STATE(6401)] = 268461, - [SMALL_STATE(6402)] = 268519, - [SMALL_STATE(6403)] = 268579, - [SMALL_STATE(6404)] = 268629, - [SMALL_STATE(6405)] = 268689, - [SMALL_STATE(6406)] = 268749, - [SMALL_STATE(6407)] = 268809, - [SMALL_STATE(6408)] = 268869, - [SMALL_STATE(6409)] = 268929, - [SMALL_STATE(6410)] = 268989, - [SMALL_STATE(6411)] = 269049, - [SMALL_STATE(6412)] = 269109, - [SMALL_STATE(6413)] = 269163, - [SMALL_STATE(6414)] = 269213, - [SMALL_STATE(6415)] = 269273, - [SMALL_STATE(6416)] = 269327, - [SMALL_STATE(6417)] = 269387, - [SMALL_STATE(6418)] = 269445, - [SMALL_STATE(6419)] = 269505, - [SMALL_STATE(6420)] = 269565, - [SMALL_STATE(6421)] = 269623, - [SMALL_STATE(6422)] = 269683, - [SMALL_STATE(6423)] = 269741, - [SMALL_STATE(6424)] = 269801, - [SMALL_STATE(6425)] = 269861, - [SMALL_STATE(6426)] = 269921, - [SMALL_STATE(6427)] = 269981, - [SMALL_STATE(6428)] = 270035, - [SMALL_STATE(6429)] = 270095, - [SMALL_STATE(6430)] = 270155, - [SMALL_STATE(6431)] = 270215, - [SMALL_STATE(6432)] = 270265, - [SMALL_STATE(6433)] = 270317, - [SMALL_STATE(6434)] = 270377, - [SMALL_STATE(6435)] = 270427, - [SMALL_STATE(6436)] = 270477, - [SMALL_STATE(6437)] = 270529, - [SMALL_STATE(6438)] = 270585, - [SMALL_STATE(6439)] = 270637, - [SMALL_STATE(6440)] = 270697, - [SMALL_STATE(6441)] = 270757, - [SMALL_STATE(6442)] = 270811, - [SMALL_STATE(6443)] = 270871, - [SMALL_STATE(6444)] = 270931, - [SMALL_STATE(6445)] = 270981, - [SMALL_STATE(6446)] = 271041, - [SMALL_STATE(6447)] = 271101, - [SMALL_STATE(6448)] = 271161, - [SMALL_STATE(6449)] = 271215, - [SMALL_STATE(6450)] = 271275, - [SMALL_STATE(6451)] = 271333, - [SMALL_STATE(6452)] = 271393, - [SMALL_STATE(6453)] = 271445, - [SMALL_STATE(6454)] = 271503, - [SMALL_STATE(6455)] = 271553, - [SMALL_STATE(6456)] = 271613, - [SMALL_STATE(6457)] = 271673, - [SMALL_STATE(6458)] = 271733, - [SMALL_STATE(6459)] = 271793, - [SMALL_STATE(6460)] = 271853, - [SMALL_STATE(6461)] = 271913, - [SMALL_STATE(6462)] = 271973, - [SMALL_STATE(6463)] = 272033, - [SMALL_STATE(6464)] = 272091, - [SMALL_STATE(6465)] = 272151, - [SMALL_STATE(6466)] = 272208, - [SMALL_STATE(6467)] = 272265, - [SMALL_STATE(6468)] = 272322, - [SMALL_STATE(6469)] = 272371, - [SMALL_STATE(6470)] = 272426, - [SMALL_STATE(6471)] = 272483, - [SMALL_STATE(6472)] = 272538, - [SMALL_STATE(6473)] = 272589, - [SMALL_STATE(6474)] = 272644, - [SMALL_STATE(6475)] = 272701, - [SMALL_STATE(6476)] = 272758, - [SMALL_STATE(6477)] = 272815, - [SMALL_STATE(6478)] = 272870, - [SMALL_STATE(6479)] = 272925, - [SMALL_STATE(6480)] = 272980, - [SMALL_STATE(6481)] = 273037, - [SMALL_STATE(6482)] = 273094, - [SMALL_STATE(6483)] = 273151, - [SMALL_STATE(6484)] = 273206, - [SMALL_STATE(6485)] = 273261, - [SMALL_STATE(6486)] = 273316, - [SMALL_STATE(6487)] = 273371, - [SMALL_STATE(6488)] = 273426, - [SMALL_STATE(6489)] = 273481, - [SMALL_STATE(6490)] = 273538, - [SMALL_STATE(6491)] = 273595, - [SMALL_STATE(6492)] = 273650, - [SMALL_STATE(6493)] = 273705, - [SMALL_STATE(6494)] = 273758, - [SMALL_STATE(6495)] = 273813, - [SMALL_STATE(6496)] = 273870, - [SMALL_STATE(6497)] = 273925, - [SMALL_STATE(6498)] = 273976, - [SMALL_STATE(6499)] = 274031, - [SMALL_STATE(6500)] = 274086, - [SMALL_STATE(6501)] = 274141, - [SMALL_STATE(6502)] = 274194, - [SMALL_STATE(6503)] = 274249, - [SMALL_STATE(6504)] = 274304, - [SMALL_STATE(6505)] = 274359, - [SMALL_STATE(6506)] = 274408, - [SMALL_STATE(6507)] = 274463, - [SMALL_STATE(6508)] = 274520, - [SMALL_STATE(6509)] = 274575, - [SMALL_STATE(6510)] = 274630, - [SMALL_STATE(6511)] = 274687, - [SMALL_STATE(6512)] = 274742, - [SMALL_STATE(6513)] = 274793, - [SMALL_STATE(6514)] = 274842, - [SMALL_STATE(6515)] = 274891, - [SMALL_STATE(6516)] = 274948, - [SMALL_STATE(6517)] = 275005, - [SMALL_STATE(6518)] = 275062, - [SMALL_STATE(6519)] = 275119, - [SMALL_STATE(6520)] = 275174, - [SMALL_STATE(6521)] = 275229, - [SMALL_STATE(6522)] = 275284, - [SMALL_STATE(6523)] = 275339, - [SMALL_STATE(6524)] = 275396, - [SMALL_STATE(6525)] = 275451, - [SMALL_STATE(6526)] = 275506, - [SMALL_STATE(6527)] = 275561, - [SMALL_STATE(6528)] = 275618, - [SMALL_STATE(6529)] = 275669, - [SMALL_STATE(6530)] = 275720, - [SMALL_STATE(6531)] = 275775, - [SMALL_STATE(6532)] = 275832, - [SMALL_STATE(6533)] = 275889, - [SMALL_STATE(6534)] = 275942, - [SMALL_STATE(6535)] = 275999, - [SMALL_STATE(6536)] = 276056, - [SMALL_STATE(6537)] = 276105, - [SMALL_STATE(6538)] = 276160, - [SMALL_STATE(6539)] = 276215, - [SMALL_STATE(6540)] = 276270, - [SMALL_STATE(6541)] = 276325, - [SMALL_STATE(6542)] = 276382, - [SMALL_STATE(6543)] = 276433, - [SMALL_STATE(6544)] = 276482, - [SMALL_STATE(6545)] = 276539, - [SMALL_STATE(6546)] = 276594, - [SMALL_STATE(6547)] = 276649, - [SMALL_STATE(6548)] = 276704, - [SMALL_STATE(6549)] = 276759, - [SMALL_STATE(6550)] = 276816, - [SMALL_STATE(6551)] = 276867, - [SMALL_STATE(6552)] = 276922, - [SMALL_STATE(6553)] = 276977, - [SMALL_STATE(6554)] = 277032, - [SMALL_STATE(6555)] = 277085, - [SMALL_STATE(6556)] = 277142, - [SMALL_STATE(6557)] = 277193, - [SMALL_STATE(6558)] = 277248, - [SMALL_STATE(6559)] = 277299, - [SMALL_STATE(6560)] = 277354, - [SMALL_STATE(6561)] = 277407, - [SMALL_STATE(6562)] = 277462, - [SMALL_STATE(6563)] = 277519, - [SMALL_STATE(6564)] = 277574, - [SMALL_STATE(6565)] = 277623, - [SMALL_STATE(6566)] = 277678, - [SMALL_STATE(6567)] = 277731, - [SMALL_STATE(6568)] = 277786, - [SMALL_STATE(6569)] = 277835, - [SMALL_STATE(6570)] = 277884, - [SMALL_STATE(6571)] = 277933, - [SMALL_STATE(6572)] = 277988, - [SMALL_STATE(6573)] = 278041, - [SMALL_STATE(6574)] = 278096, - [SMALL_STATE(6575)] = 278151, - [SMALL_STATE(6576)] = 278206, - [SMALL_STATE(6577)] = 278261, - [SMALL_STATE(6578)] = 278316, - [SMALL_STATE(6579)] = 278373, - [SMALL_STATE(6580)] = 278428, - [SMALL_STATE(6581)] = 278483, - [SMALL_STATE(6582)] = 278538, - [SMALL_STATE(6583)] = 278591, - [SMALL_STATE(6584)] = 278648, - [SMALL_STATE(6585)] = 278705, - [SMALL_STATE(6586)] = 278762, - [SMALL_STATE(6587)] = 278817, - [SMALL_STATE(6588)] = 278872, - [SMALL_STATE(6589)] = 278929, - [SMALL_STATE(6590)] = 278986, - [SMALL_STATE(6591)] = 279043, - [SMALL_STATE(6592)] = 279098, - [SMALL_STATE(6593)] = 279149, - [SMALL_STATE(6594)] = 279200, - [SMALL_STATE(6595)] = 279255, - [SMALL_STATE(6596)] = 279308, - [SMALL_STATE(6597)] = 279365, - [SMALL_STATE(6598)] = 279420, - [SMALL_STATE(6599)] = 279475, - [SMALL_STATE(6600)] = 279530, - [SMALL_STATE(6601)] = 279587, - [SMALL_STATE(6602)] = 279642, - [SMALL_STATE(6603)] = 279697, - [SMALL_STATE(6604)] = 279752, - [SMALL_STATE(6605)] = 279806, - [SMALL_STATE(6606)] = 279860, - [SMALL_STATE(6607)] = 279914, - [SMALL_STATE(6608)] = 279968, - [SMALL_STATE(6609)] = 280022, - [SMALL_STATE(6610)] = 280072, - [SMALL_STATE(6611)] = 280126, - [SMALL_STATE(6612)] = 280180, - [SMALL_STATE(6613)] = 280232, - [SMALL_STATE(6614)] = 280286, - [SMALL_STATE(6615)] = 280340, - [SMALL_STATE(6616)] = 280388, - [SMALL_STATE(6617)] = 280436, - [SMALL_STATE(6618)] = 280490, - [SMALL_STATE(6619)] = 280544, - [SMALL_STATE(6620)] = 280598, - [SMALL_STATE(6621)] = 280652, - [SMALL_STATE(6622)] = 280700, - [SMALL_STATE(6623)] = 280754, - [SMALL_STATE(6624)] = 280808, - [SMALL_STATE(6625)] = 280858, - [SMALL_STATE(6626)] = 280912, - [SMALL_STATE(6627)] = 280966, - [SMALL_STATE(6628)] = 281020, - [SMALL_STATE(6629)] = 281074, - [SMALL_STATE(6630)] = 281128, - [SMALL_STATE(6631)] = 281176, - [SMALL_STATE(6632)] = 281230, - [SMALL_STATE(6633)] = 281282, - [SMALL_STATE(6634)] = 281336, - [SMALL_STATE(6635)] = 281390, - [SMALL_STATE(6636)] = 281444, - [SMALL_STATE(6637)] = 281498, - [SMALL_STATE(6638)] = 281552, - [SMALL_STATE(6639)] = 281600, - [SMALL_STATE(6640)] = 281654, - [SMALL_STATE(6641)] = 281704, - [SMALL_STATE(6642)] = 281752, - [SMALL_STATE(6643)] = 281802, - [SMALL_STATE(6644)] = 281850, - [SMALL_STATE(6645)] = 281904, - [SMALL_STATE(6646)] = 281958, - [SMALL_STATE(6647)] = 282012, - [SMALL_STATE(6648)] = 282066, - [SMALL_STATE(6649)] = 282120, - [SMALL_STATE(6650)] = 282174, - [SMALL_STATE(6651)] = 282228, - [SMALL_STATE(6652)] = 282280, - [SMALL_STATE(6653)] = 282334, - [SMALL_STATE(6654)] = 282382, - [SMALL_STATE(6655)] = 282436, - [SMALL_STATE(6656)] = 282488, - [SMALL_STATE(6657)] = 282538, - [SMALL_STATE(6658)] = 282586, - [SMALL_STATE(6659)] = 282638, - [SMALL_STATE(6660)] = 282688, - [SMALL_STATE(6661)] = 282736, - [SMALL_STATE(6662)] = 282786, - [SMALL_STATE(6663)] = 282840, - [SMALL_STATE(6664)] = 282892, - [SMALL_STATE(6665)] = 282942, - [SMALL_STATE(6666)] = 282996, - [SMALL_STATE(6667)] = 283050, - [SMALL_STATE(6668)] = 283102, - [SMALL_STATE(6669)] = 283150, - [SMALL_STATE(6670)] = 283200, - [SMALL_STATE(6671)] = 283248, - [SMALL_STATE(6672)] = 283302, - [SMALL_STATE(6673)] = 283356, - [SMALL_STATE(6674)] = 283410, - [SMALL_STATE(6675)] = 283462, - [SMALL_STATE(6676)] = 283516, - [SMALL_STATE(6677)] = 283570, - [SMALL_STATE(6678)] = 283624, - [SMALL_STATE(6679)] = 283672, - [SMALL_STATE(6680)] = 283722, - [SMALL_STATE(6681)] = 283776, - [SMALL_STATE(6682)] = 283830, - [SMALL_STATE(6683)] = 283878, - [SMALL_STATE(6684)] = 283932, - [SMALL_STATE(6685)] = 283986, - [SMALL_STATE(6686)] = 284040, - [SMALL_STATE(6687)] = 284094, - [SMALL_STATE(6688)] = 284148, - [SMALL_STATE(6689)] = 284196, - [SMALL_STATE(6690)] = 284250, - [SMALL_STATE(6691)] = 284304, - [SMALL_STATE(6692)] = 284352, - [SMALL_STATE(6693)] = 284402, - [SMALL_STATE(6694)] = 284456, - [SMALL_STATE(6695)] = 284508, - [SMALL_STATE(6696)] = 284562, - [SMALL_STATE(6697)] = 284616, - [SMALL_STATE(6698)] = 284664, - [SMALL_STATE(6699)] = 284716, - [SMALL_STATE(6700)] = 284766, - [SMALL_STATE(6701)] = 284820, - [SMALL_STATE(6702)] = 284872, - [SMALL_STATE(6703)] = 284926, - [SMALL_STATE(6704)] = 284980, - [SMALL_STATE(6705)] = 285030, - [SMALL_STATE(6706)] = 285084, - [SMALL_STATE(6707)] = 285138, - [SMALL_STATE(6708)] = 285192, - [SMALL_STATE(6709)] = 285244, - [SMALL_STATE(6710)] = 285298, - [SMALL_STATE(6711)] = 285352, - [SMALL_STATE(6712)] = 285402, - [SMALL_STATE(6713)] = 285456, - [SMALL_STATE(6714)] = 285510, - [SMALL_STATE(6715)] = 285564, - [SMALL_STATE(6716)] = 285618, - [SMALL_STATE(6717)] = 285672, - [SMALL_STATE(6718)] = 285724, - [SMALL_STATE(6719)] = 285774, - [SMALL_STATE(6720)] = 285828, - [SMALL_STATE(6721)] = 285876, - [SMALL_STATE(6722)] = 285924, - [SMALL_STATE(6723)] = 285974, - [SMALL_STATE(6724)] = 286028, - [SMALL_STATE(6725)] = 286076, - [SMALL_STATE(6726)] = 286124, - [SMALL_STATE(6727)] = 286174, - [SMALL_STATE(6728)] = 286224, - [SMALL_STATE(6729)] = 286276, - [SMALL_STATE(6730)] = 286327, - [SMALL_STATE(6731)] = 286378, - [SMALL_STATE(6732)] = 286429, - [SMALL_STATE(6733)] = 286480, - [SMALL_STATE(6734)] = 286529, - [SMALL_STATE(6735)] = 286580, - [SMALL_STATE(6736)] = 286629, - [SMALL_STATE(6737)] = 286680, - [SMALL_STATE(6738)] = 286727, - [SMALL_STATE(6739)] = 286774, - [SMALL_STATE(6740)] = 286825, - [SMALL_STATE(6741)] = 286876, - [SMALL_STATE(6742)] = 286927, - [SMALL_STATE(6743)] = 286978, - [SMALL_STATE(6744)] = 287029, - [SMALL_STATE(6745)] = 287080, - [SMALL_STATE(6746)] = 287131, - [SMALL_STATE(6747)] = 287182, - [SMALL_STATE(6748)] = 287233, - [SMALL_STATE(6749)] = 287284, - [SMALL_STATE(6750)] = 287335, - [SMALL_STATE(6751)] = 287386, - [SMALL_STATE(6752)] = 287437, - [SMALL_STATE(6753)] = 287488, - [SMALL_STATE(6754)] = 287537, - [SMALL_STATE(6755)] = 287588, - [SMALL_STATE(6756)] = 287639, - [SMALL_STATE(6757)] = 287690, - [SMALL_STATE(6758)] = 287741, - [SMALL_STATE(6759)] = 287792, - [SMALL_STATE(6760)] = 287843, - [SMALL_STATE(6761)] = 287894, - [SMALL_STATE(6762)] = 287941, - [SMALL_STATE(6763)] = 287992, - [SMALL_STATE(6764)] = 288043, - [SMALL_STATE(6765)] = 288094, - [SMALL_STATE(6766)] = 288145, - [SMALL_STATE(6767)] = 288192, - [SMALL_STATE(6768)] = 288243, - [SMALL_STATE(6769)] = 288294, - [SMALL_STATE(6770)] = 288345, - [SMALL_STATE(6771)] = 288396, - [SMALL_STATE(6772)] = 288447, - [SMALL_STATE(6773)] = 288498, - [SMALL_STATE(6774)] = 288549, - [SMALL_STATE(6775)] = 288600, - [SMALL_STATE(6776)] = 288651, - [SMALL_STATE(6777)] = 288702, - [SMALL_STATE(6778)] = 288753, - [SMALL_STATE(6779)] = 288800, - [SMALL_STATE(6780)] = 288851, - [SMALL_STATE(6781)] = 288902, - [SMALL_STATE(6782)] = 288953, - [SMALL_STATE(6783)] = 289004, - [SMALL_STATE(6784)] = 289055, - [SMALL_STATE(6785)] = 289106, - [SMALL_STATE(6786)] = 289157, - [SMALL_STATE(6787)] = 289208, - [SMALL_STATE(6788)] = 289259, - [SMALL_STATE(6789)] = 289308, - [SMALL_STATE(6790)] = 289359, - [SMALL_STATE(6791)] = 289408, - [SMALL_STATE(6792)] = 289459, - [SMALL_STATE(6793)] = 289510, - [SMALL_STATE(6794)] = 289561, - [SMALL_STATE(6795)] = 289612, - [SMALL_STATE(6796)] = 289663, - [SMALL_STATE(6797)] = 289714, - [SMALL_STATE(6798)] = 289765, - [SMALL_STATE(6799)] = 289814, - [SMALL_STATE(6800)] = 289865, - [SMALL_STATE(6801)] = 289916, - [SMALL_STATE(6802)] = 289967, - [SMALL_STATE(6803)] = 290018, - [SMALL_STATE(6804)] = 290065, - [SMALL_STATE(6805)] = 290116, - [SMALL_STATE(6806)] = 290167, - [SMALL_STATE(6807)] = 290214, - [SMALL_STATE(6808)] = 290265, - [SMALL_STATE(6809)] = 290316, - [SMALL_STATE(6810)] = 290365, - [SMALL_STATE(6811)] = 290416, - [SMALL_STATE(6812)] = 290467, - [SMALL_STATE(6813)] = 290518, - [SMALL_STATE(6814)] = 290569, - [SMALL_STATE(6815)] = 290620, - [SMALL_STATE(6816)] = 290671, - [SMALL_STATE(6817)] = 290722, - [SMALL_STATE(6818)] = 290773, - [SMALL_STATE(6819)] = 290824, - [SMALL_STATE(6820)] = 290875, - [SMALL_STATE(6821)] = 290924, - [SMALL_STATE(6822)] = 290975, - [SMALL_STATE(6823)] = 291026, - [SMALL_STATE(6824)] = 291075, - [SMALL_STATE(6825)] = 291126, - [SMALL_STATE(6826)] = 291177, - [SMALL_STATE(6827)] = 291228, - [SMALL_STATE(6828)] = 291279, - [SMALL_STATE(6829)] = 291330, - [SMALL_STATE(6830)] = 291379, - [SMALL_STATE(6831)] = 291428, - [SMALL_STATE(6832)] = 291479, - [SMALL_STATE(6833)] = 291528, - [SMALL_STATE(6834)] = 291579, - [SMALL_STATE(6835)] = 291630, - [SMALL_STATE(6836)] = 291681, - [SMALL_STATE(6837)] = 291732, - [SMALL_STATE(6838)] = 291783, - [SMALL_STATE(6839)] = 291834, - [SMALL_STATE(6840)] = 291885, - [SMALL_STATE(6841)] = 291936, - [SMALL_STATE(6842)] = 291987, - [SMALL_STATE(6843)] = 292038, - [SMALL_STATE(6844)] = 292089, - [SMALL_STATE(6845)] = 292140, - [SMALL_STATE(6846)] = 292191, - [SMALL_STATE(6847)] = 292242, - [SMALL_STATE(6848)] = 292293, - [SMALL_STATE(6849)] = 292344, - [SMALL_STATE(6850)] = 292395, - [SMALL_STATE(6851)] = 292446, - [SMALL_STATE(6852)] = 292497, - [SMALL_STATE(6853)] = 292548, - [SMALL_STATE(6854)] = 292599, - [SMALL_STATE(6855)] = 292650, - [SMALL_STATE(6856)] = 292699, - [SMALL_STATE(6857)] = 292750, - [SMALL_STATE(6858)] = 292801, - [SMALL_STATE(6859)] = 292852, - [SMALL_STATE(6860)] = 292903, - [SMALL_STATE(6861)] = 292954, - [SMALL_STATE(6862)] = 293005, - [SMALL_STATE(6863)] = 293056, - [SMALL_STATE(6864)] = 293105, - [SMALL_STATE(6865)] = 293156, - [SMALL_STATE(6866)] = 293207, - [SMALL_STATE(6867)] = 293258, - [SMALL_STATE(6868)] = 293309, - [SMALL_STATE(6869)] = 293360, - [SMALL_STATE(6870)] = 293411, - [SMALL_STATE(6871)] = 293462, - [SMALL_STATE(6872)] = 293513, - [SMALL_STATE(6873)] = 293564, - [SMALL_STATE(6874)] = 293615, - [SMALL_STATE(6875)] = 293664, - [SMALL_STATE(6876)] = 293715, - [SMALL_STATE(6877)] = 293766, - [SMALL_STATE(6878)] = 293817, - [SMALL_STATE(6879)] = 293868, - [SMALL_STATE(6880)] = 293917, - [SMALL_STATE(6881)] = 293968, - [SMALL_STATE(6882)] = 294017, - [SMALL_STATE(6883)] = 294064, - [SMALL_STATE(6884)] = 294115, - [SMALL_STATE(6885)] = 294166, - [SMALL_STATE(6886)] = 294217, - [SMALL_STATE(6887)] = 294268, - [SMALL_STATE(6888)] = 294319, - [SMALL_STATE(6889)] = 294370, - [SMALL_STATE(6890)] = 294421, - [SMALL_STATE(6891)] = 294472, - [SMALL_STATE(6892)] = 294521, - [SMALL_STATE(6893)] = 294572, - [SMALL_STATE(6894)] = 294621, - [SMALL_STATE(6895)] = 294672, - [SMALL_STATE(6896)] = 294721, - [SMALL_STATE(6897)] = 294772, - [SMALL_STATE(6898)] = 294823, - [SMALL_STATE(6899)] = 294874, - [SMALL_STATE(6900)] = 294925, - [SMALL_STATE(6901)] = 294976, - [SMALL_STATE(6902)] = 295023, - [SMALL_STATE(6903)] = 295074, - [SMALL_STATE(6904)] = 295121, - [SMALL_STATE(6905)] = 295172, - [SMALL_STATE(6906)] = 295223, - [SMALL_STATE(6907)] = 295274, - [SMALL_STATE(6908)] = 295323, - [SMALL_STATE(6909)] = 295374, - [SMALL_STATE(6910)] = 295425, - [SMALL_STATE(6911)] = 295476, - [SMALL_STATE(6912)] = 295527, - [SMALL_STATE(6913)] = 295576, - [SMALL_STATE(6914)] = 295627, - [SMALL_STATE(6915)] = 295678, - [SMALL_STATE(6916)] = 295729, - [SMALL_STATE(6917)] = 295780, - [SMALL_STATE(6918)] = 295831, - [SMALL_STATE(6919)] = 295882, - [SMALL_STATE(6920)] = 295931, - [SMALL_STATE(6921)] = 295982, - [SMALL_STATE(6922)] = 296033, - [SMALL_STATE(6923)] = 296082, - [SMALL_STATE(6924)] = 296133, - [SMALL_STATE(6925)] = 296184, - [SMALL_STATE(6926)] = 296231, - [SMALL_STATE(6927)] = 296282, - [SMALL_STATE(6928)] = 296333, - [SMALL_STATE(6929)] = 296380, - [SMALL_STATE(6930)] = 296431, - [SMALL_STATE(6931)] = 296480, - [SMALL_STATE(6932)] = 296531, - [SMALL_STATE(6933)] = 296582, - [SMALL_STATE(6934)] = 296633, - [SMALL_STATE(6935)] = 296684, - [SMALL_STATE(6936)] = 296735, - [SMALL_STATE(6937)] = 296786, - [SMALL_STATE(6938)] = 296837, - [SMALL_STATE(6939)] = 296888, - [SMALL_STATE(6940)] = 296939, - [SMALL_STATE(6941)] = 296990, - [SMALL_STATE(6942)] = 297041, - [SMALL_STATE(6943)] = 297092, - [SMALL_STATE(6944)] = 297139, - [SMALL_STATE(6945)] = 297190, - [SMALL_STATE(6946)] = 297239, - [SMALL_STATE(6947)] = 297290, - [SMALL_STATE(6948)] = 297341, - [SMALL_STATE(6949)] = 297392, - [SMALL_STATE(6950)] = 297443, - [SMALL_STATE(6951)] = 297494, - [SMALL_STATE(6952)] = 297545, - [SMALL_STATE(6953)] = 297596, - [SMALL_STATE(6954)] = 297645, - [SMALL_STATE(6955)] = 297696, - [SMALL_STATE(6956)] = 297745, - [SMALL_STATE(6957)] = 297796, - [SMALL_STATE(6958)] = 297843, - [SMALL_STATE(6959)] = 297894, - [SMALL_STATE(6960)] = 297945, - [SMALL_STATE(6961)] = 297996, - [SMALL_STATE(6962)] = 298047, - [SMALL_STATE(6963)] = 298096, - [SMALL_STATE(6964)] = 298147, - [SMALL_STATE(6965)] = 298194, - [SMALL_STATE(6966)] = 298245, - [SMALL_STATE(6967)] = 298296, - [SMALL_STATE(6968)] = 298347, - [SMALL_STATE(6969)] = 298398, - [SMALL_STATE(6970)] = 298449, - [SMALL_STATE(6971)] = 298500, - [SMALL_STATE(6972)] = 298551, - [SMALL_STATE(6973)] = 298598, - [SMALL_STATE(6974)] = 298649, - [SMALL_STATE(6975)] = 298696, - [SMALL_STATE(6976)] = 298747, - [SMALL_STATE(6977)] = 298798, - [SMALL_STATE(6978)] = 298849, - [SMALL_STATE(6979)] = 298900, - [SMALL_STATE(6980)] = 298951, - [SMALL_STATE(6981)] = 299002, - [SMALL_STATE(6982)] = 299053, - [SMALL_STATE(6983)] = 299104, - [SMALL_STATE(6984)] = 299151, - [SMALL_STATE(6985)] = 299202, - [SMALL_STATE(6986)] = 299251, - [SMALL_STATE(6987)] = 299298, - [SMALL_STATE(6988)] = 299345, - [SMALL_STATE(6989)] = 299394, - [SMALL_STATE(6990)] = 299445, - [SMALL_STATE(6991)] = 299492, - [SMALL_STATE(6992)] = 299543, - [SMALL_STATE(6993)] = 299594, - [SMALL_STATE(6994)] = 299645, - [SMALL_STATE(6995)] = 299696, - [SMALL_STATE(6996)] = 299747, - [SMALL_STATE(6997)] = 299798, - [SMALL_STATE(6998)] = 299849, - [SMALL_STATE(6999)] = 299900, - [SMALL_STATE(7000)] = 299951, - [SMALL_STATE(7001)] = 300002, - [SMALL_STATE(7002)] = 300053, - [SMALL_STATE(7003)] = 300104, - [SMALL_STATE(7004)] = 300155, - [SMALL_STATE(7005)] = 300204, - [SMALL_STATE(7006)] = 300255, - [SMALL_STATE(7007)] = 300306, - [SMALL_STATE(7008)] = 300357, - [SMALL_STATE(7009)] = 300408, - [SMALL_STATE(7010)] = 300459, - [SMALL_STATE(7011)] = 300506, - [SMALL_STATE(7012)] = 300557, - [SMALL_STATE(7013)] = 300608, - [SMALL_STATE(7014)] = 300659, - [SMALL_STATE(7015)] = 300710, - [SMALL_STATE(7016)] = 300761, - [SMALL_STATE(7017)] = 300812, - [SMALL_STATE(7018)] = 300863, - [SMALL_STATE(7019)] = 300914, - [SMALL_STATE(7020)] = 300965, - [SMALL_STATE(7021)] = 301016, - [SMALL_STATE(7022)] = 301063, - [SMALL_STATE(7023)] = 301114, - [SMALL_STATE(7024)] = 301165, - [SMALL_STATE(7025)] = 301216, - [SMALL_STATE(7026)] = 301265, - [SMALL_STATE(7027)] = 301316, - [SMALL_STATE(7028)] = 301367, - [SMALL_STATE(7029)] = 301418, - [SMALL_STATE(7030)] = 301465, - [SMALL_STATE(7031)] = 301516, - [SMALL_STATE(7032)] = 301567, - [SMALL_STATE(7033)] = 301618, - [SMALL_STATE(7034)] = 301669, - [SMALL_STATE(7035)] = 301716, - [SMALL_STATE(7036)] = 301767, - [SMALL_STATE(7037)] = 301818, - [SMALL_STATE(7038)] = 301865, - [SMALL_STATE(7039)] = 301911, - [SMALL_STATE(7040)] = 301959, - [SMALL_STATE(7041)] = 302007, - [SMALL_STATE(7042)] = 302053, - [SMALL_STATE(7043)] = 302101, - [SMALL_STATE(7044)] = 302149, - [SMALL_STATE(7045)] = 302197, - [SMALL_STATE(7046)] = 302245, - [SMALL_STATE(7047)] = 302291, - [SMALL_STATE(7048)] = 302337, - [SMALL_STATE(7049)] = 302383, - [SMALL_STATE(7050)] = 302431, - [SMALL_STATE(7051)] = 302479, - [SMALL_STATE(7052)] = 302527, - [SMALL_STATE(7053)] = 302573, - [SMALL_STATE(7054)] = 302621, - [SMALL_STATE(7055)] = 302667, - [SMALL_STATE(7056)] = 302713, - [SMALL_STATE(7057)] = 302761, - [SMALL_STATE(7058)] = 302809, - [SMALL_STATE(7059)] = 302855, - [SMALL_STATE(7060)] = 302901, - [SMALL_STATE(7061)] = 302947, - [SMALL_STATE(7062)] = 302993, - [SMALL_STATE(7063)] = 303041, - [SMALL_STATE(7064)] = 303089, - [SMALL_STATE(7065)] = 303137, - [SMALL_STATE(7066)] = 303183, - [SMALL_STATE(7067)] = 303229, - [SMALL_STATE(7068)] = 303277, - [SMALL_STATE(7069)] = 303325, - [SMALL_STATE(7070)] = 303373, - [SMALL_STATE(7071)] = 303419, - [SMALL_STATE(7072)] = 303467, - [SMALL_STATE(7073)] = 303515, - [SMALL_STATE(7074)] = 303563, - [SMALL_STATE(7075)] = 303609, - [SMALL_STATE(7076)] = 303657, - [SMALL_STATE(7077)] = 303705, - [SMALL_STATE(7078)] = 303753, - [SMALL_STATE(7079)] = 303801, - [SMALL_STATE(7080)] = 303849, - [SMALL_STATE(7081)] = 303895, - [SMALL_STATE(7082)] = 303943, - [SMALL_STATE(7083)] = 303991, - [SMALL_STATE(7084)] = 304039, - [SMALL_STATE(7085)] = 304085, - [SMALL_STATE(7086)] = 304131, - [SMALL_STATE(7087)] = 304177, - [SMALL_STATE(7088)] = 304223, - [SMALL_STATE(7089)] = 304269, - [SMALL_STATE(7090)] = 304315, - [SMALL_STATE(7091)] = 304361, - [SMALL_STATE(7092)] = 304409, - [SMALL_STATE(7093)] = 304457, - [SMALL_STATE(7094)] = 304503, - [SMALL_STATE(7095)] = 304551, - [SMALL_STATE(7096)] = 304597, - [SMALL_STATE(7097)] = 304645, - [SMALL_STATE(7098)] = 304693, - [SMALL_STATE(7099)] = 304741, - [SMALL_STATE(7100)] = 304787, - [SMALL_STATE(7101)] = 304835, - [SMALL_STATE(7102)] = 304883, - [SMALL_STATE(7103)] = 304929, - [SMALL_STATE(7104)] = 304977, - [SMALL_STATE(7105)] = 305023, - [SMALL_STATE(7106)] = 305071, - [SMALL_STATE(7107)] = 305119, - [SMALL_STATE(7108)] = 305167, - [SMALL_STATE(7109)] = 305213, - [SMALL_STATE(7110)] = 305261, - [SMALL_STATE(7111)] = 305307, - [SMALL_STATE(7112)] = 305355, - [SMALL_STATE(7113)] = 305403, - [SMALL_STATE(7114)] = 305451, - [SMALL_STATE(7115)] = 305497, - [SMALL_STATE(7116)] = 305545, - [SMALL_STATE(7117)] = 305593, - [SMALL_STATE(7118)] = 305641, - [SMALL_STATE(7119)] = 305687, - [SMALL_STATE(7120)] = 305735, - [SMALL_STATE(7121)] = 305781, - [SMALL_STATE(7122)] = 305829, - [SMALL_STATE(7123)] = 305877, - [SMALL_STATE(7124)] = 305923, - [SMALL_STATE(7125)] = 305971, - [SMALL_STATE(7126)] = 306017, - [SMALL_STATE(7127)] = 306063, - [SMALL_STATE(7128)] = 306109, - [SMALL_STATE(7129)] = 306157, - [SMALL_STATE(7130)] = 306203, - [SMALL_STATE(7131)] = 306251, - [SMALL_STATE(7132)] = 306299, - [SMALL_STATE(7133)] = 306345, - [SMALL_STATE(7134)] = 306393, - [SMALL_STATE(7135)] = 306441, - [SMALL_STATE(7136)] = 306487, - [SMALL_STATE(7137)] = 306535, - [SMALL_STATE(7138)] = 306583, - [SMALL_STATE(7139)] = 306631, - [SMALL_STATE(7140)] = 306679, - [SMALL_STATE(7141)] = 306725, - [SMALL_STATE(7142)] = 306771, - [SMALL_STATE(7143)] = 306819, - [SMALL_STATE(7144)] = 306867, - [SMALL_STATE(7145)] = 306913, - [SMALL_STATE(7146)] = 306961, - [SMALL_STATE(7147)] = 307009, - [SMALL_STATE(7148)] = 307057, - [SMALL_STATE(7149)] = 307105, - [SMALL_STATE(7150)] = 307151, - [SMALL_STATE(7151)] = 307199, - [SMALL_STATE(7152)] = 307245, - [SMALL_STATE(7153)] = 307291, - [SMALL_STATE(7154)] = 307337, - [SMALL_STATE(7155)] = 307383, - [SMALL_STATE(7156)] = 307431, - [SMALL_STATE(7157)] = 307479, - [SMALL_STATE(7158)] = 307527, - [SMALL_STATE(7159)] = 307573, - [SMALL_STATE(7160)] = 307619, - [SMALL_STATE(7161)] = 307665, - [SMALL_STATE(7162)] = 307711, - [SMALL_STATE(7163)] = 307759, - [SMALL_STATE(7164)] = 307807, - [SMALL_STATE(7165)] = 307853, - [SMALL_STATE(7166)] = 307901, - [SMALL_STATE(7167)] = 307947, - [SMALL_STATE(7168)] = 307995, - [SMALL_STATE(7169)] = 308043, - [SMALL_STATE(7170)] = 308089, - [SMALL_STATE(7171)] = 308135, - [SMALL_STATE(7172)] = 308181, - [SMALL_STATE(7173)] = 308229, - [SMALL_STATE(7174)] = 308277, - [SMALL_STATE(7175)] = 308325, - [SMALL_STATE(7176)] = 308373, - [SMALL_STATE(7177)] = 308421, - [SMALL_STATE(7178)] = 308467, - [SMALL_STATE(7179)] = 308515, - [SMALL_STATE(7180)] = 308563, - [SMALL_STATE(7181)] = 308611, - [SMALL_STATE(7182)] = 308659, - [SMALL_STATE(7183)] = 308707, - [SMALL_STATE(7184)] = 308755, - [SMALL_STATE(7185)] = 308803, - [SMALL_STATE(7186)] = 308851, - [SMALL_STATE(7187)] = 308899, - [SMALL_STATE(7188)] = 308947, - [SMALL_STATE(7189)] = 308993, - [SMALL_STATE(7190)] = 309041, - [SMALL_STATE(7191)] = 309089, - [SMALL_STATE(7192)] = 309135, - [SMALL_STATE(7193)] = 309183, - [SMALL_STATE(7194)] = 309231, - [SMALL_STATE(7195)] = 309279, - [SMALL_STATE(7196)] = 309327, - [SMALL_STATE(7197)] = 309373, - [SMALL_STATE(7198)] = 309421, - [SMALL_STATE(7199)] = 309467, - [SMALL_STATE(7200)] = 309513, - [SMALL_STATE(7201)] = 309559, - [SMALL_STATE(7202)] = 309607, - [SMALL_STATE(7203)] = 309655, - [SMALL_STATE(7204)] = 309701, - [SMALL_STATE(7205)] = 309747, - [SMALL_STATE(7206)] = 309793, - [SMALL_STATE(7207)] = 309839, - [SMALL_STATE(7208)] = 309887, - [SMALL_STATE(7209)] = 309935, - [SMALL_STATE(7210)] = 309983, - [SMALL_STATE(7211)] = 310029, - [SMALL_STATE(7212)] = 310077, - [SMALL_STATE(7213)] = 310123, - [SMALL_STATE(7214)] = 310171, - [SMALL_STATE(7215)] = 310219, - [SMALL_STATE(7216)] = 310267, - [SMALL_STATE(7217)] = 310315, - [SMALL_STATE(7218)] = 310363, - [SMALL_STATE(7219)] = 310411, - [SMALL_STATE(7220)] = 310459, - [SMALL_STATE(7221)] = 310507, - [SMALL_STATE(7222)] = 310553, - [SMALL_STATE(7223)] = 310601, - [SMALL_STATE(7224)] = 310649, - [SMALL_STATE(7225)] = 310697, - [SMALL_STATE(7226)] = 310745, - [SMALL_STATE(7227)] = 310793, - [SMALL_STATE(7228)] = 310839, - [SMALL_STATE(7229)] = 310887, - [SMALL_STATE(7230)] = 310935, - [SMALL_STATE(7231)] = 310981, - [SMALL_STATE(7232)] = 311027, - [SMALL_STATE(7233)] = 311075, - [SMALL_STATE(7234)] = 311123, - [SMALL_STATE(7235)] = 311169, - [SMALL_STATE(7236)] = 311217, - [SMALL_STATE(7237)] = 311265, - [SMALL_STATE(7238)] = 311313, - [SMALL_STATE(7239)] = 311361, - [SMALL_STATE(7240)] = 311409, - [SMALL_STATE(7241)] = 311457, - [SMALL_STATE(7242)] = 311505, - [SMALL_STATE(7243)] = 311553, - [SMALL_STATE(7244)] = 311601, - [SMALL_STATE(7245)] = 311649, - [SMALL_STATE(7246)] = 311697, - [SMALL_STATE(7247)] = 311743, - [SMALL_STATE(7248)] = 311791, - [SMALL_STATE(7249)] = 311839, - [SMALL_STATE(7250)] = 311885, - [SMALL_STATE(7251)] = 311933, - [SMALL_STATE(7252)] = 311981, - [SMALL_STATE(7253)] = 312027, - [SMALL_STATE(7254)] = 312073, - [SMALL_STATE(7255)] = 312121, - [SMALL_STATE(7256)] = 312169, - [SMALL_STATE(7257)] = 312217, - [SMALL_STATE(7258)] = 312265, - [SMALL_STATE(7259)] = 312311, - [SMALL_STATE(7260)] = 312359, - [SMALL_STATE(7261)] = 312407, - [SMALL_STATE(7262)] = 312455, - [SMALL_STATE(7263)] = 312503, - [SMALL_STATE(7264)] = 312549, - [SMALL_STATE(7265)] = 312597, - [SMALL_STATE(7266)] = 312645, - [SMALL_STATE(7267)] = 312691, - [SMALL_STATE(7268)] = 312739, - [SMALL_STATE(7269)] = 312785, - [SMALL_STATE(7270)] = 312833, - [SMALL_STATE(7271)] = 312879, - [SMALL_STATE(7272)] = 312927, - [SMALL_STATE(7273)] = 312975, - [SMALL_STATE(7274)] = 313023, - [SMALL_STATE(7275)] = 313069, - [SMALL_STATE(7276)] = 313117, - [SMALL_STATE(7277)] = 313165, - [SMALL_STATE(7278)] = 313213, - [SMALL_STATE(7279)] = 313261, - [SMALL_STATE(7280)] = 313307, - [SMALL_STATE(7281)] = 313355, - [SMALL_STATE(7282)] = 313403, - [SMALL_STATE(7283)] = 313449, - [SMALL_STATE(7284)] = 313497, - [SMALL_STATE(7285)] = 313545, - [SMALL_STATE(7286)] = 313593, - [SMALL_STATE(7287)] = 313639, - [SMALL_STATE(7288)] = 313687, - [SMALL_STATE(7289)] = 313735, - [SMALL_STATE(7290)] = 313781, - [SMALL_STATE(7291)] = 313826, - [SMALL_STATE(7292)] = 313871, - [SMALL_STATE(7293)] = 313916, - [SMALL_STATE(7294)] = 313961, - [SMALL_STATE(7295)] = 314006, - [SMALL_STATE(7296)] = 314051, - [SMALL_STATE(7297)] = 314096, - [SMALL_STATE(7298)] = 314141, - [SMALL_STATE(7299)] = 314186, - [SMALL_STATE(7300)] = 314231, - [SMALL_STATE(7301)] = 314276, - [SMALL_STATE(7302)] = 314321, - [SMALL_STATE(7303)] = 314366, - [SMALL_STATE(7304)] = 314411, - [SMALL_STATE(7305)] = 314456, - [SMALL_STATE(7306)] = 314501, - [SMALL_STATE(7307)] = 314546, - [SMALL_STATE(7308)] = 314591, - [SMALL_STATE(7309)] = 314636, - [SMALL_STATE(7310)] = 314681, - [SMALL_STATE(7311)] = 314726, - [SMALL_STATE(7312)] = 314771, - [SMALL_STATE(7313)] = 314816, - [SMALL_STATE(7314)] = 314861, - [SMALL_STATE(7315)] = 314906, - [SMALL_STATE(7316)] = 314951, - [SMALL_STATE(7317)] = 314996, - [SMALL_STATE(7318)] = 315041, - [SMALL_STATE(7319)] = 315086, - [SMALL_STATE(7320)] = 315131, - [SMALL_STATE(7321)] = 315176, - [SMALL_STATE(7322)] = 315221, - [SMALL_STATE(7323)] = 315266, - [SMALL_STATE(7324)] = 315311, - [SMALL_STATE(7325)] = 315356, - [SMALL_STATE(7326)] = 315401, - [SMALL_STATE(7327)] = 315446, - [SMALL_STATE(7328)] = 315491, - [SMALL_STATE(7329)] = 315536, - [SMALL_STATE(7330)] = 315581, - [SMALL_STATE(7331)] = 315626, - [SMALL_STATE(7332)] = 315671, - [SMALL_STATE(7333)] = 315716, - [SMALL_STATE(7334)] = 315761, - [SMALL_STATE(7335)] = 315806, - [SMALL_STATE(7336)] = 315851, - [SMALL_STATE(7337)] = 315896, - [SMALL_STATE(7338)] = 315941, - [SMALL_STATE(7339)] = 315986, - [SMALL_STATE(7340)] = 316031, - [SMALL_STATE(7341)] = 316076, - [SMALL_STATE(7342)] = 316121, - [SMALL_STATE(7343)] = 316166, - [SMALL_STATE(7344)] = 316211, - [SMALL_STATE(7345)] = 316256, - [SMALL_STATE(7346)] = 316301, - [SMALL_STATE(7347)] = 316346, - [SMALL_STATE(7348)] = 316391, - [SMALL_STATE(7349)] = 316436, - [SMALL_STATE(7350)] = 316481, - [SMALL_STATE(7351)] = 316526, - [SMALL_STATE(7352)] = 316571, - [SMALL_STATE(7353)] = 316616, - [SMALL_STATE(7354)] = 316661, - [SMALL_STATE(7355)] = 316706, - [SMALL_STATE(7356)] = 316751, - [SMALL_STATE(7357)] = 316796, - [SMALL_STATE(7358)] = 316841, - [SMALL_STATE(7359)] = 316886, - [SMALL_STATE(7360)] = 316931, - [SMALL_STATE(7361)] = 316976, - [SMALL_STATE(7362)] = 317021, - [SMALL_STATE(7363)] = 317066, - [SMALL_STATE(7364)] = 317111, - [SMALL_STATE(7365)] = 317156, - [SMALL_STATE(7366)] = 317201, - [SMALL_STATE(7367)] = 317246, - [SMALL_STATE(7368)] = 317291, - [SMALL_STATE(7369)] = 317336, - [SMALL_STATE(7370)] = 317381, - [SMALL_STATE(7371)] = 317426, - [SMALL_STATE(7372)] = 317471, - [SMALL_STATE(7373)] = 317516, - [SMALL_STATE(7374)] = 317561, - [SMALL_STATE(7375)] = 317606, - [SMALL_STATE(7376)] = 317651, - [SMALL_STATE(7377)] = 317696, - [SMALL_STATE(7378)] = 317741, - [SMALL_STATE(7379)] = 317786, - [SMALL_STATE(7380)] = 317831, - [SMALL_STATE(7381)] = 317876, - [SMALL_STATE(7382)] = 317921, - [SMALL_STATE(7383)] = 317966, - [SMALL_STATE(7384)] = 318011, - [SMALL_STATE(7385)] = 318056, - [SMALL_STATE(7386)] = 318101, - [SMALL_STATE(7387)] = 318146, - [SMALL_STATE(7388)] = 318191, - [SMALL_STATE(7389)] = 318236, - [SMALL_STATE(7390)] = 318281, - [SMALL_STATE(7391)] = 318326, - [SMALL_STATE(7392)] = 318371, - [SMALL_STATE(7393)] = 318416, - [SMALL_STATE(7394)] = 318461, - [SMALL_STATE(7395)] = 318506, - [SMALL_STATE(7396)] = 318551, - [SMALL_STATE(7397)] = 318596, - [SMALL_STATE(7398)] = 318641, - [SMALL_STATE(7399)] = 318686, - [SMALL_STATE(7400)] = 318731, - [SMALL_STATE(7401)] = 318776, - [SMALL_STATE(7402)] = 318821, - [SMALL_STATE(7403)] = 318866, - [SMALL_STATE(7404)] = 318911, - [SMALL_STATE(7405)] = 318956, - [SMALL_STATE(7406)] = 319001, - [SMALL_STATE(7407)] = 319046, - [SMALL_STATE(7408)] = 319091, - [SMALL_STATE(7409)] = 319136, - [SMALL_STATE(7410)] = 319181, - [SMALL_STATE(7411)] = 319226, - [SMALL_STATE(7412)] = 319271, - [SMALL_STATE(7413)] = 319316, - [SMALL_STATE(7414)] = 319361, - [SMALL_STATE(7415)] = 319406, - [SMALL_STATE(7416)] = 319451, - [SMALL_STATE(7417)] = 319496, - [SMALL_STATE(7418)] = 319541, - [SMALL_STATE(7419)] = 319586, - [SMALL_STATE(7420)] = 319631, - [SMALL_STATE(7421)] = 319676, - [SMALL_STATE(7422)] = 319721, - [SMALL_STATE(7423)] = 319766, - [SMALL_STATE(7424)] = 319811, - [SMALL_STATE(7425)] = 319856, - [SMALL_STATE(7426)] = 319901, - [SMALL_STATE(7427)] = 319946, - [SMALL_STATE(7428)] = 319991, - [SMALL_STATE(7429)] = 320036, - [SMALL_STATE(7430)] = 320081, - [SMALL_STATE(7431)] = 320126, - [SMALL_STATE(7432)] = 320171, - [SMALL_STATE(7433)] = 320216, - [SMALL_STATE(7434)] = 320261, - [SMALL_STATE(7435)] = 320306, - [SMALL_STATE(7436)] = 320351, - [SMALL_STATE(7437)] = 320396, - [SMALL_STATE(7438)] = 320441, - [SMALL_STATE(7439)] = 320486, - [SMALL_STATE(7440)] = 320531, - [SMALL_STATE(7441)] = 320576, - [SMALL_STATE(7442)] = 320621, - [SMALL_STATE(7443)] = 320666, - [SMALL_STATE(7444)] = 320711, - [SMALL_STATE(7445)] = 320756, - [SMALL_STATE(7446)] = 320801, - [SMALL_STATE(7447)] = 320846, - [SMALL_STATE(7448)] = 320891, - [SMALL_STATE(7449)] = 320936, - [SMALL_STATE(7450)] = 320981, - [SMALL_STATE(7451)] = 321026, - [SMALL_STATE(7452)] = 321071, - [SMALL_STATE(7453)] = 321116, - [SMALL_STATE(7454)] = 321161, - [SMALL_STATE(7455)] = 321206, - [SMALL_STATE(7456)] = 321251, - [SMALL_STATE(7457)] = 321296, - [SMALL_STATE(7458)] = 321341, - [SMALL_STATE(7459)] = 321386, - [SMALL_STATE(7460)] = 321431, - [SMALL_STATE(7461)] = 321476, - [SMALL_STATE(7462)] = 321521, - [SMALL_STATE(7463)] = 321566, - [SMALL_STATE(7464)] = 321611, - [SMALL_STATE(7465)] = 321656, - [SMALL_STATE(7466)] = 321701, - [SMALL_STATE(7467)] = 321746, - [SMALL_STATE(7468)] = 321791, - [SMALL_STATE(7469)] = 321836, - [SMALL_STATE(7470)] = 321881, - [SMALL_STATE(7471)] = 321926, - [SMALL_STATE(7472)] = 321971, - [SMALL_STATE(7473)] = 322016, - [SMALL_STATE(7474)] = 322061, - [SMALL_STATE(7475)] = 322106, - [SMALL_STATE(7476)] = 322151, - [SMALL_STATE(7477)] = 322196, - [SMALL_STATE(7478)] = 322241, - [SMALL_STATE(7479)] = 322286, - [SMALL_STATE(7480)] = 322331, - [SMALL_STATE(7481)] = 322376, - [SMALL_STATE(7482)] = 322421, - [SMALL_STATE(7483)] = 322466, - [SMALL_STATE(7484)] = 322511, - [SMALL_STATE(7485)] = 322556, - [SMALL_STATE(7486)] = 322601, - [SMALL_STATE(7487)] = 322646, - [SMALL_STATE(7488)] = 322691, - [SMALL_STATE(7489)] = 322736, - [SMALL_STATE(7490)] = 322781, - [SMALL_STATE(7491)] = 322826, - [SMALL_STATE(7492)] = 322871, - [SMALL_STATE(7493)] = 322916, - [SMALL_STATE(7494)] = 322961, - [SMALL_STATE(7495)] = 323006, - [SMALL_STATE(7496)] = 323051, - [SMALL_STATE(7497)] = 323096, - [SMALL_STATE(7498)] = 323141, - [SMALL_STATE(7499)] = 323186, - [SMALL_STATE(7500)] = 323231, - [SMALL_STATE(7501)] = 323276, - [SMALL_STATE(7502)] = 323321, - [SMALL_STATE(7503)] = 323366, - [SMALL_STATE(7504)] = 323411, - [SMALL_STATE(7505)] = 323456, - [SMALL_STATE(7506)] = 323501, - [SMALL_STATE(7507)] = 323546, - [SMALL_STATE(7508)] = 323591, - [SMALL_STATE(7509)] = 323636, - [SMALL_STATE(7510)] = 323681, - [SMALL_STATE(7511)] = 323726, - [SMALL_STATE(7512)] = 323771, - [SMALL_STATE(7513)] = 323816, - [SMALL_STATE(7514)] = 323861, - [SMALL_STATE(7515)] = 323906, - [SMALL_STATE(7516)] = 323951, - [SMALL_STATE(7517)] = 323996, - [SMALL_STATE(7518)] = 324041, - [SMALL_STATE(7519)] = 324086, - [SMALL_STATE(7520)] = 324131, - [SMALL_STATE(7521)] = 324176, - [SMALL_STATE(7522)] = 324221, - [SMALL_STATE(7523)] = 324266, - [SMALL_STATE(7524)] = 324311, - [SMALL_STATE(7525)] = 324356, - [SMALL_STATE(7526)] = 324401, - [SMALL_STATE(7527)] = 324446, - [SMALL_STATE(7528)] = 324491, - [SMALL_STATE(7529)] = 324536, - [SMALL_STATE(7530)] = 324581, - [SMALL_STATE(7531)] = 324626, - [SMALL_STATE(7532)] = 324671, - [SMALL_STATE(7533)] = 324716, - [SMALL_STATE(7534)] = 324761, - [SMALL_STATE(7535)] = 324806, - [SMALL_STATE(7536)] = 324851, - [SMALL_STATE(7537)] = 324896, - [SMALL_STATE(7538)] = 324941, - [SMALL_STATE(7539)] = 324986, - [SMALL_STATE(7540)] = 325031, - [SMALL_STATE(7541)] = 325076, - [SMALL_STATE(7542)] = 325121, - [SMALL_STATE(7543)] = 325166, - [SMALL_STATE(7544)] = 325211, - [SMALL_STATE(7545)] = 325256, - [SMALL_STATE(7546)] = 325301, - [SMALL_STATE(7547)] = 325346, - [SMALL_STATE(7548)] = 325391, - [SMALL_STATE(7549)] = 325436, - [SMALL_STATE(7550)] = 325481, - [SMALL_STATE(7551)] = 325526, - [SMALL_STATE(7552)] = 325571, - [SMALL_STATE(7553)] = 325616, - [SMALL_STATE(7554)] = 325661, - [SMALL_STATE(7555)] = 325706, - [SMALL_STATE(7556)] = 325751, - [SMALL_STATE(7557)] = 325796, - [SMALL_STATE(7558)] = 325841, - [SMALL_STATE(7559)] = 325886, - [SMALL_STATE(7560)] = 325931, - [SMALL_STATE(7561)] = 325976, - [SMALL_STATE(7562)] = 326021, - [SMALL_STATE(7563)] = 326066, - [SMALL_STATE(7564)] = 326111, - [SMALL_STATE(7565)] = 326156, - [SMALL_STATE(7566)] = 326201, - [SMALL_STATE(7567)] = 326246, - [SMALL_STATE(7568)] = 326291, - [SMALL_STATE(7569)] = 326336, - [SMALL_STATE(7570)] = 326381, - [SMALL_STATE(7571)] = 326426, - [SMALL_STATE(7572)] = 326471, - [SMALL_STATE(7573)] = 326516, - [SMALL_STATE(7574)] = 326561, - [SMALL_STATE(7575)] = 326606, - [SMALL_STATE(7576)] = 326651, - [SMALL_STATE(7577)] = 326696, - [SMALL_STATE(7578)] = 326741, - [SMALL_STATE(7579)] = 326786, - [SMALL_STATE(7580)] = 326831, - [SMALL_STATE(7581)] = 326876, - [SMALL_STATE(7582)] = 326921, - [SMALL_STATE(7583)] = 326966, - [SMALL_STATE(7584)] = 327011, - [SMALL_STATE(7585)] = 327056, - [SMALL_STATE(7586)] = 327101, - [SMALL_STATE(7587)] = 327146, - [SMALL_STATE(7588)] = 327191, - [SMALL_STATE(7589)] = 327236, - [SMALL_STATE(7590)] = 327281, - [SMALL_STATE(7591)] = 327326, - [SMALL_STATE(7592)] = 327371, - [SMALL_STATE(7593)] = 327416, - [SMALL_STATE(7594)] = 327461, - [SMALL_STATE(7595)] = 327506, - [SMALL_STATE(7596)] = 327551, - [SMALL_STATE(7597)] = 327596, - [SMALL_STATE(7598)] = 327641, - [SMALL_STATE(7599)] = 327686, - [SMALL_STATE(7600)] = 327731, - [SMALL_STATE(7601)] = 327776, - [SMALL_STATE(7602)] = 327821, - [SMALL_STATE(7603)] = 327866, - [SMALL_STATE(7604)] = 327911, - [SMALL_STATE(7605)] = 327956, - [SMALL_STATE(7606)] = 328001, - [SMALL_STATE(7607)] = 328046, - [SMALL_STATE(7608)] = 328091, - [SMALL_STATE(7609)] = 328136, - [SMALL_STATE(7610)] = 328181, - [SMALL_STATE(7611)] = 328226, - [SMALL_STATE(7612)] = 328271, - [SMALL_STATE(7613)] = 328316, - [SMALL_STATE(7614)] = 328361, - [SMALL_STATE(7615)] = 328406, - [SMALL_STATE(7616)] = 328451, - [SMALL_STATE(7617)] = 328496, - [SMALL_STATE(7618)] = 328541, - [SMALL_STATE(7619)] = 328586, - [SMALL_STATE(7620)] = 328631, - [SMALL_STATE(7621)] = 328676, - [SMALL_STATE(7622)] = 328721, - [SMALL_STATE(7623)] = 328766, - [SMALL_STATE(7624)] = 328811, - [SMALL_STATE(7625)] = 328856, - [SMALL_STATE(7626)] = 328901, - [SMALL_STATE(7627)] = 328946, - [SMALL_STATE(7628)] = 328991, - [SMALL_STATE(7629)] = 329036, - [SMALL_STATE(7630)] = 329081, - [SMALL_STATE(7631)] = 329126, - [SMALL_STATE(7632)] = 329171, - [SMALL_STATE(7633)] = 329216, - [SMALL_STATE(7634)] = 329261, - [SMALL_STATE(7635)] = 329306, - [SMALL_STATE(7636)] = 329351, - [SMALL_STATE(7637)] = 329396, - [SMALL_STATE(7638)] = 329441, - [SMALL_STATE(7639)] = 329486, - [SMALL_STATE(7640)] = 329531, - [SMALL_STATE(7641)] = 329576, - [SMALL_STATE(7642)] = 329621, - [SMALL_STATE(7643)] = 329666, - [SMALL_STATE(7644)] = 329711, - [SMALL_STATE(7645)] = 329756, - [SMALL_STATE(7646)] = 329801, - [SMALL_STATE(7647)] = 329846, - [SMALL_STATE(7648)] = 329891, - [SMALL_STATE(7649)] = 329936, - [SMALL_STATE(7650)] = 329981, - [SMALL_STATE(7651)] = 330026, - [SMALL_STATE(7652)] = 330071, - [SMALL_STATE(7653)] = 330116, - [SMALL_STATE(7654)] = 330161, - [SMALL_STATE(7655)] = 330206, - [SMALL_STATE(7656)] = 330251, - [SMALL_STATE(7657)] = 330296, - [SMALL_STATE(7658)] = 330341, - [SMALL_STATE(7659)] = 330386, - [SMALL_STATE(7660)] = 330431, - [SMALL_STATE(7661)] = 330476, - [SMALL_STATE(7662)] = 330521, - [SMALL_STATE(7663)] = 330566, - [SMALL_STATE(7664)] = 330611, - [SMALL_STATE(7665)] = 330656, - [SMALL_STATE(7666)] = 330701, - [SMALL_STATE(7667)] = 330746, - [SMALL_STATE(7668)] = 330791, - [SMALL_STATE(7669)] = 330836, - [SMALL_STATE(7670)] = 330881, - [SMALL_STATE(7671)] = 330926, - [SMALL_STATE(7672)] = 330971, - [SMALL_STATE(7673)] = 331016, - [SMALL_STATE(7674)] = 331061, - [SMALL_STATE(7675)] = 331106, - [SMALL_STATE(7676)] = 331151, - [SMALL_STATE(7677)] = 331196, - [SMALL_STATE(7678)] = 331241, - [SMALL_STATE(7679)] = 331286, - [SMALL_STATE(7680)] = 331331, - [SMALL_STATE(7681)] = 331376, - [SMALL_STATE(7682)] = 331421, - [SMALL_STATE(7683)] = 331466, - [SMALL_STATE(7684)] = 331511, - [SMALL_STATE(7685)] = 331556, - [SMALL_STATE(7686)] = 331601, - [SMALL_STATE(7687)] = 331646, - [SMALL_STATE(7688)] = 331691, - [SMALL_STATE(7689)] = 331736, - [SMALL_STATE(7690)] = 331781, - [SMALL_STATE(7691)] = 331826, - [SMALL_STATE(7692)] = 331871, - [SMALL_STATE(7693)] = 331916, - [SMALL_STATE(7694)] = 331961, - [SMALL_STATE(7695)] = 332006, - [SMALL_STATE(7696)] = 332051, - [SMALL_STATE(7697)] = 332096, - [SMALL_STATE(7698)] = 332141, - [SMALL_STATE(7699)] = 332186, - [SMALL_STATE(7700)] = 332231, - [SMALL_STATE(7701)] = 332276, - [SMALL_STATE(7702)] = 332321, - [SMALL_STATE(7703)] = 332366, - [SMALL_STATE(7704)] = 332411, - [SMALL_STATE(7705)] = 332456, - [SMALL_STATE(7706)] = 332501, - [SMALL_STATE(7707)] = 332546, - [SMALL_STATE(7708)] = 332591, - [SMALL_STATE(7709)] = 332636, - [SMALL_STATE(7710)] = 332681, - [SMALL_STATE(7711)] = 332726, - [SMALL_STATE(7712)] = 332771, - [SMALL_STATE(7713)] = 332816, - [SMALL_STATE(7714)] = 332861, - [SMALL_STATE(7715)] = 332906, - [SMALL_STATE(7716)] = 332951, - [SMALL_STATE(7717)] = 332996, - [SMALL_STATE(7718)] = 333041, - [SMALL_STATE(7719)] = 333086, - [SMALL_STATE(7720)] = 333131, - [SMALL_STATE(7721)] = 333176, - [SMALL_STATE(7722)] = 333221, - [SMALL_STATE(7723)] = 333266, - [SMALL_STATE(7724)] = 333311, - [SMALL_STATE(7725)] = 333356, - [SMALL_STATE(7726)] = 333401, - [SMALL_STATE(7727)] = 333446, - [SMALL_STATE(7728)] = 333491, - [SMALL_STATE(7729)] = 333536, - [SMALL_STATE(7730)] = 333581, - [SMALL_STATE(7731)] = 333626, - [SMALL_STATE(7732)] = 333671, - [SMALL_STATE(7733)] = 333716, - [SMALL_STATE(7734)] = 333761, - [SMALL_STATE(7735)] = 333806, - [SMALL_STATE(7736)] = 333851, - [SMALL_STATE(7737)] = 333896, - [SMALL_STATE(7738)] = 333941, - [SMALL_STATE(7739)] = 333986, - [SMALL_STATE(7740)] = 334031, - [SMALL_STATE(7741)] = 334076, - [SMALL_STATE(7742)] = 334121, - [SMALL_STATE(7743)] = 334166, - [SMALL_STATE(7744)] = 334211, - [SMALL_STATE(7745)] = 334256, - [SMALL_STATE(7746)] = 334301, - [SMALL_STATE(7747)] = 334346, - [SMALL_STATE(7748)] = 334391, - [SMALL_STATE(7749)] = 334436, - [SMALL_STATE(7750)] = 334481, - [SMALL_STATE(7751)] = 334526, - [SMALL_STATE(7752)] = 334571, - [SMALL_STATE(7753)] = 334616, - [SMALL_STATE(7754)] = 334661, - [SMALL_STATE(7755)] = 334706, - [SMALL_STATE(7756)] = 334751, - [SMALL_STATE(7757)] = 334796, - [SMALL_STATE(7758)] = 334841, - [SMALL_STATE(7759)] = 334886, - [SMALL_STATE(7760)] = 334931, - [SMALL_STATE(7761)] = 334976, - [SMALL_STATE(7762)] = 335021, - [SMALL_STATE(7763)] = 335066, - [SMALL_STATE(7764)] = 335111, - [SMALL_STATE(7765)] = 335156, - [SMALL_STATE(7766)] = 335201, - [SMALL_STATE(7767)] = 335246, - [SMALL_STATE(7768)] = 335291, - [SMALL_STATE(7769)] = 335336, - [SMALL_STATE(7770)] = 335381, - [SMALL_STATE(7771)] = 335426, - [SMALL_STATE(7772)] = 335471, - [SMALL_STATE(7773)] = 335516, - [SMALL_STATE(7774)] = 335561, - [SMALL_STATE(7775)] = 335606, - [SMALL_STATE(7776)] = 335651, - [SMALL_STATE(7777)] = 335655, - [SMALL_STATE(7778)] = 335659, - [SMALL_STATE(7779)] = 335663, - [SMALL_STATE(7780)] = 335667, - [SMALL_STATE(7781)] = 335671, - [SMALL_STATE(7782)] = 335675, - [SMALL_STATE(7783)] = 335679, - [SMALL_STATE(7784)] = 335683, - [SMALL_STATE(7785)] = 335687, - [SMALL_STATE(7786)] = 335691, - [SMALL_STATE(7787)] = 335695, - [SMALL_STATE(7788)] = 335699, - [SMALL_STATE(7789)] = 335703, - [SMALL_STATE(7790)] = 335707, - [SMALL_STATE(7791)] = 335711, - [SMALL_STATE(7792)] = 335715, + [SMALL_STATE(3889)] = 0, + [SMALL_STATE(3890)] = 137, + [SMALL_STATE(3891)] = 264, + [SMALL_STATE(3892)] = 357, + [SMALL_STATE(3893)] = 484, + [SMALL_STATE(3894)] = 611, + [SMALL_STATE(3895)] = 706, + [SMALL_STATE(3896)] = 833, + [SMALL_STATE(3897)] = 960, + [SMALL_STATE(3898)] = 1055, + [SMALL_STATE(3899)] = 1182, + [SMALL_STATE(3900)] = 1309, + [SMALL_STATE(3901)] = 1436, + [SMALL_STATE(3902)] = 1563, + [SMALL_STATE(3903)] = 1658, + [SMALL_STATE(3904)] = 1785, + [SMALL_STATE(3905)] = 1912, + [SMALL_STATE(3906)] = 2039, + [SMALL_STATE(3907)] = 2162, + [SMALL_STATE(3908)] = 2289, + [SMALL_STATE(3909)] = 2406, + [SMALL_STATE(3910)] = 2519, + [SMALL_STATE(3911)] = 2654, + [SMALL_STATE(3912)] = 2781, + [SMALL_STATE(3913)] = 2914, + [SMALL_STATE(3914)] = 3033, + [SMALL_STATE(3915)] = 3164, + [SMALL_STATE(3916)] = 3291, + [SMALL_STATE(3917)] = 3430, + [SMALL_STATE(3918)] = 3571, + [SMALL_STATE(3919)] = 3716, + [SMALL_STATE(3920)] = 3843, + [SMALL_STATE(3921)] = 3970, + [SMALL_STATE(3922)] = 4117, + [SMALL_STATE(3923)] = 4264, + [SMALL_STATE(3924)] = 4411, + [SMALL_STATE(3925)] = 4538, + [SMALL_STATE(3926)] = 4633, + [SMALL_STATE(3927)] = 4728, + [SMALL_STATE(3928)] = 4855, + [SMALL_STATE(3929)] = 4982, + [SMALL_STATE(3930)] = 5091, + [SMALL_STATE(3931)] = 5200, + [SMALL_STATE(3932)] = 5327, + [SMALL_STATE(3933)] = 5454, + [SMALL_STATE(3934)] = 5581, + [SMALL_STATE(3935)] = 5708, + [SMALL_STATE(3936)] = 5835, + [SMALL_STATE(3937)] = 5982, + [SMALL_STATE(3938)] = 6109, + [SMALL_STATE(3939)] = 6236, + [SMALL_STATE(3940)] = 6331, + [SMALL_STATE(3941)] = 6476, + [SMALL_STATE(3942)] = 6603, + [SMALL_STATE(3943)] = 6730, + [SMALL_STATE(3944)] = 6875, + [SMALL_STATE(3945)] = 7002, + [SMALL_STATE(3946)] = 7147, + [SMALL_STATE(3947)] = 7274, + [SMALL_STATE(3948)] = 7385, + [SMALL_STATE(3949)] = 7478, + [SMALL_STATE(3950)] = 7605, + [SMALL_STATE(3951)] = 7732, + [SMALL_STATE(3952)] = 7859, + [SMALL_STATE(3953)] = 7986, + [SMALL_STATE(3954)] = 8113, + [SMALL_STATE(3955)] = 8240, + [SMALL_STATE(3956)] = 8367, + [SMALL_STATE(3957)] = 8494, + [SMALL_STATE(3958)] = 8621, + [SMALL_STATE(3959)] = 8716, + [SMALL_STATE(3960)] = 8843, + [SMALL_STATE(3961)] = 8970, + [SMALL_STATE(3962)] = 9117, + [SMALL_STATE(3963)] = 9264, + [SMALL_STATE(3964)] = 9391, + [SMALL_STATE(3965)] = 9538, + [SMALL_STATE(3966)] = 9685, + [SMALL_STATE(3967)] = 9820, + [SMALL_STATE(3968)] = 9947, + [SMALL_STATE(3969)] = 10084, + [SMALL_STATE(3970)] = 10211, + [SMALL_STATE(3971)] = 10342, + [SMALL_STATE(3972)] = 10481, + [SMALL_STATE(3973)] = 10574, + [SMALL_STATE(3974)] = 10701, + [SMALL_STATE(3975)] = 10828, + [SMALL_STATE(3976)] = 10923, + [SMALL_STATE(3977)] = 11050, + [SMALL_STATE(3978)] = 11191, + [SMALL_STATE(3979)] = 11336, + [SMALL_STATE(3980)] = 11463, + [SMALL_STATE(3981)] = 11590, + [SMALL_STATE(3982)] = 11717, + [SMALL_STATE(3983)] = 11816, + [SMALL_STATE(3984)] = 11943, + [SMALL_STATE(3985)] = 12070, + [SMALL_STATE(3986)] = 12197, + [SMALL_STATE(3987)] = 12292, + [SMALL_STATE(3988)] = 12419, + [SMALL_STATE(3989)] = 12564, + [SMALL_STATE(3990)] = 12691, + [SMALL_STATE(3991)] = 12818, + [SMALL_STATE(3992)] = 12945, + [SMALL_STATE(3993)] = 13072, + [SMALL_STATE(3994)] = 13199, + [SMALL_STATE(3995)] = 13326, + [SMALL_STATE(3996)] = 13435, + [SMALL_STATE(3997)] = 13562, + [SMALL_STATE(3998)] = 13689, + [SMALL_STATE(3999)] = 13816, + [SMALL_STATE(4000)] = 13939, + [SMALL_STATE(4001)] = 14056, + [SMALL_STATE(4002)] = 14169, + [SMALL_STATE(4003)] = 14288, + [SMALL_STATE(4004)] = 14383, + [SMALL_STATE(4005)] = 14478, + [SMALL_STATE(4006)] = 14605, + [SMALL_STATE(4007)] = 14732, + [SMALL_STATE(4008)] = 14859, + [SMALL_STATE(4009)] = 14986, + [SMALL_STATE(4010)] = 15113, + [SMALL_STATE(4011)] = 15240, + [SMALL_STATE(4012)] = 15367, + [SMALL_STATE(4013)] = 15476, + [SMALL_STATE(4014)] = 15603, + [SMALL_STATE(4015)] = 15730, + [SMALL_STATE(4016)] = 15857, + [SMALL_STATE(4017)] = 15984, + [SMALL_STATE(4018)] = 16111, + [SMALL_STATE(4019)] = 16238, + [SMALL_STATE(4020)] = 16385, + [SMALL_STATE(4021)] = 16512, + [SMALL_STATE(4022)] = 16639, + [SMALL_STATE(4023)] = 16766, + [SMALL_STATE(4024)] = 16861, + [SMALL_STATE(4025)] = 16988, + [SMALL_STATE(4026)] = 17115, + [SMALL_STATE(4027)] = 17242, + [SMALL_STATE(4028)] = 17369, + [SMALL_STATE(4029)] = 17496, + [SMALL_STATE(4030)] = 17623, + [SMALL_STATE(4031)] = 17750, + [SMALL_STATE(4032)] = 17877, + [SMALL_STATE(4033)] = 18004, + [SMALL_STATE(4034)] = 18131, + [SMALL_STATE(4035)] = 18258, + [SMALL_STATE(4036)] = 18385, + [SMALL_STATE(4037)] = 18512, + [SMALL_STATE(4038)] = 18611, + [SMALL_STATE(4039)] = 18738, + [SMALL_STATE(4040)] = 18865, + [SMALL_STATE(4041)] = 18992, + [SMALL_STATE(4042)] = 19119, + [SMALL_STATE(4043)] = 19246, + [SMALL_STATE(4044)] = 19373, + [SMALL_STATE(4045)] = 19500, + [SMALL_STATE(4046)] = 19627, + [SMALL_STATE(4047)] = 19754, + [SMALL_STATE(4048)] = 19881, + [SMALL_STATE(4049)] = 20026, + [SMALL_STATE(4050)] = 20153, + [SMALL_STATE(4051)] = 20280, + [SMALL_STATE(4052)] = 20413, + [SMALL_STATE(4053)] = 20557, + [SMALL_STATE(4054)] = 20647, + [SMALL_STATE(4055)] = 20737, + [SMALL_STATE(4056)] = 20883, + [SMALL_STATE(4057)] = 20977, + [SMALL_STATE(4058)] = 21071, + [SMALL_STATE(4059)] = 21163, + [SMALL_STATE(4060)] = 21257, + [SMALL_STATE(4061)] = 21355, + [SMALL_STATE(4062)] = 21493, + [SMALL_STATE(4063)] = 21609, + [SMALL_STATE(4064)] = 21717, + [SMALL_STATE(4065)] = 21847, + [SMALL_STATE(4066)] = 21981, + [SMALL_STATE(4067)] = 22125, + [SMALL_STATE(4068)] = 22231, + [SMALL_STATE(4069)] = 22321, + [SMALL_STATE(4070)] = 22457, + [SMALL_STATE(4071)] = 22603, + [SMALL_STATE(4072)] = 22711, + [SMALL_STATE(4073)] = 22851, + [SMALL_STATE(4074)] = 22941, + [SMALL_STATE(4075)] = 23087, + [SMALL_STATE(4076)] = 23199, + [SMALL_STATE(4077)] = 23289, + [SMALL_STATE(4078)] = 23381, + [SMALL_STATE(4079)] = 23525, + [SMALL_STATE(4080)] = 23661, + [SMALL_STATE(4081)] = 23793, + [SMALL_STATE(4082)] = 23889, + [SMALL_STATE(4083)] = 24007, + [SMALL_STATE(4084)] = 24099, + [SMALL_STATE(4085)] = 24229, + [SMALL_STATE(4086)] = 24323, + [SMALL_STATE(4087)] = 24467, + [SMALL_STATE(4088)] = 24589, + [SMALL_STATE(4089)] = 24733, + [SMALL_STATE(4090)] = 24877, + [SMALL_STATE(4091)] = 24985, + [SMALL_STATE(4092)] = 25101, + [SMALL_STATE(4093)] = 25213, + [SMALL_STATE(4094)] = 25303, + [SMALL_STATE(4095)] = 25421, + [SMALL_STATE(4096)] = 25527, + [SMALL_STATE(4097)] = 25671, + [SMALL_STATE(4098)] = 25809, + [SMALL_STATE(4099)] = 25917, + [SMALL_STATE(4100)] = 26039, + [SMALL_STATE(4101)] = 26185, + [SMALL_STATE(4102)] = 26277, + [SMALL_STATE(4103)] = 26423, + [SMALL_STATE(4104)] = 26563, + [SMALL_STATE(4105)] = 26707, + [SMALL_STATE(4106)] = 26851, + [SMALL_STATE(4107)] = 26961, + [SMALL_STATE(4108)] = 27095, + [SMALL_STATE(4109)] = 27189, + [SMALL_STATE(4110)] = 27321, + [SMALL_STATE(4111)] = 27411, + [SMALL_STATE(4112)] = 27517, + [SMALL_STATE(4113)] = 27663, + [SMALL_STATE(4114)] = 27775, + [SMALL_STATE(4115)] = 27869, + [SMALL_STATE(4116)] = 27962, + [SMALL_STATE(4117)] = 28051, + [SMALL_STATE(4118)] = 28186, + [SMALL_STATE(4119)] = 28323, + [SMALL_STATE(4120)] = 28440, + [SMALL_STATE(4121)] = 28579, + [SMALL_STATE(4122)] = 28668, + [SMALL_STATE(4123)] = 28811, + [SMALL_STATE(4124)] = 28902, + [SMALL_STATE(4125)] = 29033, + [SMALL_STATE(4126)] = 29122, + [SMALL_STATE(4127)] = 29211, + [SMALL_STATE(4128)] = 29300, + [SMALL_STATE(4129)] = 29393, + [SMALL_STATE(4130)] = 29486, + [SMALL_STATE(4131)] = 29575, + [SMALL_STATE(4132)] = 29664, + [SMALL_STATE(4133)] = 29757, + [SMALL_STATE(4134)] = 29846, + [SMALL_STATE(4135)] = 29989, + [SMALL_STATE(4136)] = 30096, + [SMALL_STATE(4137)] = 30239, + [SMALL_STATE(4138)] = 30382, + [SMALL_STATE(4139)] = 30473, + [SMALL_STATE(4140)] = 30562, + [SMALL_STATE(4141)] = 30651, + [SMALL_STATE(4142)] = 30794, + [SMALL_STATE(4143)] = 30887, + [SMALL_STATE(4144)] = 30980, + [SMALL_STATE(4145)] = 31109, + [SMALL_STATE(4146)] = 31198, + [SMALL_STATE(4147)] = 31287, + [SMALL_STATE(4148)] = 31376, + [SMALL_STATE(4149)] = 31469, + [SMALL_STATE(4150)] = 31576, + [SMALL_STATE(4151)] = 31665, + [SMALL_STATE(4152)] = 31808, + [SMALL_STATE(4153)] = 31897, + [SMALL_STATE(4154)] = 31986, + [SMALL_STATE(4155)] = 32075, + [SMALL_STATE(4156)] = 32218, + [SMALL_STATE(4157)] = 32361, + [SMALL_STATE(4158)] = 32468, + [SMALL_STATE(4159)] = 32557, + [SMALL_STATE(4160)] = 32646, + [SMALL_STATE(4161)] = 32739, + [SMALL_STATE(4162)] = 32828, + [SMALL_STATE(4163)] = 32917, + [SMALL_STATE(4164)] = 33006, + [SMALL_STATE(4165)] = 33127, + [SMALL_STATE(4166)] = 33242, + [SMALL_STATE(4167)] = 33353, + [SMALL_STATE(4168)] = 33486, + [SMALL_STATE(4169)] = 33629, + [SMALL_STATE(4170)] = 33761, + [SMALL_STATE(4171)] = 33893, + [SMALL_STATE(4172)] = 34021, + [SMALL_STATE(4173)] = 34163, + [SMALL_STATE(4174)] = 34305, + [SMALL_STATE(4175)] = 34411, + [SMALL_STATE(4176)] = 34531, + [SMALL_STATE(4177)] = 34645, + [SMALL_STATE(4178)] = 34781, + [SMALL_STATE(4179)] = 34923, + [SMALL_STATE(4180)] = 35033, + [SMALL_STATE(4181)] = 35171, + [SMALL_STATE(4182)] = 35313, + [SMALL_STATE(4183)] = 35455, + [SMALL_STATE(4184)] = 35593, + [SMALL_STATE(4185)] = 35727, + [SMALL_STATE(4186)] = 35869, + [SMALL_STATE(4187)] = 36011, + [SMALL_STATE(4188)] = 36131, + [SMALL_STATE(4189)] = 36263, + [SMALL_STATE(4190)] = 36405, + [SMALL_STATE(4191)] = 36525, + [SMALL_STATE(4192)] = 36639, + [SMALL_STATE(4193)] = 36781, + [SMALL_STATE(4194)] = 36887, + [SMALL_STATE(4195)] = 36981, + [SMALL_STATE(4196)] = 37123, + [SMALL_STATE(4197)] = 37265, + [SMALL_STATE(4198)] = 37407, + [SMALL_STATE(4199)] = 37517, + [SMALL_STATE(4200)] = 37607, + [SMALL_STATE(4201)] = 37713, + [SMALL_STATE(4202)] = 37805, + [SMALL_STATE(4203)] = 37897, + [SMALL_STATE(4204)] = 37989, + [SMALL_STATE(4205)] = 38119, + [SMALL_STATE(4206)] = 38261, + [SMALL_STATE(4207)] = 38353, + [SMALL_STATE(4208)] = 38495, + [SMALL_STATE(4209)] = 38637, + [SMALL_STATE(4210)] = 38747, + [SMALL_STATE(4211)] = 38881, + [SMALL_STATE(4212)] = 39011, + [SMALL_STATE(4213)] = 39127, + [SMALL_STATE(4214)] = 39261, + [SMALL_STATE(4215)] = 39377, + [SMALL_STATE(4216)] = 39469, + [SMALL_STATE(4217)] = 39561, + [SMALL_STATE(4218)] = 39703, + [SMALL_STATE(4219)] = 39833, + [SMALL_STATE(4220)] = 39949, + [SMALL_STATE(4221)] = 40091, + [SMALL_STATE(4222)] = 40183, + [SMALL_STATE(4223)] = 40311, + [SMALL_STATE(4224)] = 40417, + [SMALL_STATE(4225)] = 40507, + [SMALL_STATE(4226)] = 40599, + [SMALL_STATE(4227)] = 40741, + [SMALL_STATE(4228)] = 40877, + [SMALL_STATE(4229)] = 41005, + [SMALL_STATE(4230)] = 41101, + [SMALL_STATE(4231)] = 41207, + [SMALL_STATE(4232)] = 41343, + [SMALL_STATE(4233)] = 41485, + [SMALL_STATE(4234)] = 41577, + [SMALL_STATE(4235)] = 41715, + [SMALL_STATE(4236)] = 41857, + [SMALL_STATE(4237)] = 41999, + [SMALL_STATE(4238)] = 42119, + [SMALL_STATE(4239)] = 42261, + [SMALL_STATE(4240)] = 42375, + [SMALL_STATE(4241)] = 42517, + [SMALL_STATE(4242)] = 42659, + [SMALL_STATE(4243)] = 42747, + [SMALL_STATE(4244)] = 42889, + [SMALL_STATE(4245)] = 43031, + [SMALL_STATE(4246)] = 43137, + [SMALL_STATE(4247)] = 43252, + [SMALL_STATE(4248)] = 43393, + [SMALL_STATE(4249)] = 43508, + [SMALL_STATE(4250)] = 43599, + [SMALL_STATE(4251)] = 43708, + [SMALL_STATE(4252)] = 43849, + [SMALL_STATE(4253)] = 43968, + [SMALL_STATE(4254)] = 44109, + [SMALL_STATE(4255)] = 44222, + [SMALL_STATE(4256)] = 44327, + [SMALL_STATE(4257)] = 44458, + [SMALL_STATE(4258)] = 44563, + [SMALL_STATE(4259)] = 44696, + [SMALL_STATE(4260)] = 44825, + [SMALL_STATE(4261)] = 44966, + [SMALL_STATE(4262)] = 45081, + [SMALL_STATE(4263)] = 45208, + [SMALL_STATE(4264)] = 45343, + [SMALL_STATE(4265)] = 45480, + [SMALL_STATE(4266)] = 45621, + [SMALL_STATE(4267)] = 45740, + [SMALL_STATE(4268)] = 45853, + [SMALL_STATE(4269)] = 45962, + [SMALL_STATE(4270)] = 46077, + [SMALL_STATE(4271)] = 46180, + [SMALL_STATE(4272)] = 46273, + [SMALL_STATE(4273)] = 46388, + [SMALL_STATE(4274)] = 46529, + [SMALL_STATE(4275)] = 46634, + [SMALL_STATE(4276)] = 46723, + [SMALL_STATE(4277)] = 46838, + [SMALL_STATE(4278)] = 46957, + [SMALL_STATE(4279)] = 47052, + [SMALL_STATE(4280)] = 47139, + [SMALL_STATE(4281)] = 47252, + [SMALL_STATE(4282)] = 47361, + [SMALL_STATE(4283)] = 47492, + [SMALL_STATE(4284)] = 47625, + [SMALL_STATE(4285)] = 47754, + [SMALL_STATE(4286)] = 47869, + [SMALL_STATE(4287)] = 47984, + [SMALL_STATE(4288)] = 48111, + [SMALL_STATE(4289)] = 48246, + [SMALL_STATE(4290)] = 48383, + [SMALL_STATE(4291)] = 48524, + [SMALL_STATE(4292)] = 48619, + [SMALL_STATE(4293)] = 48706, + [SMALL_STATE(4294)] = 48793, + [SMALL_STATE(4295)] = 48896, + [SMALL_STATE(4296)] = 48983, + [SMALL_STATE(4297)] = 49124, + [SMALL_STATE(4298)] = 49215, + [SMALL_STATE(4299)] = 49330, + [SMALL_STATE(4300)] = 49471, + [SMALL_STATE(4301)] = 49612, + [SMALL_STATE(4302)] = 49753, + [SMALL_STATE(4303)] = 49894, + [SMALL_STATE(4304)] = 50035, + [SMALL_STATE(4305)] = 50176, + [SMALL_STATE(4306)] = 50267, + [SMALL_STATE(4307)] = 50408, + [SMALL_STATE(4308)] = 50495, + [SMALL_STATE(4309)] = 50636, + [SMALL_STATE(4310)] = 50727, + [SMALL_STATE(4311)] = 50818, + [SMALL_STATE(4312)] = 50909, + [SMALL_STATE(4313)] = 50998, + [SMALL_STATE(4314)] = 51089, + [SMALL_STATE(4315)] = 51176, + [SMALL_STATE(4316)] = 51267, + [SMALL_STATE(4317)] = 51408, + [SMALL_STATE(4318)] = 51539, + [SMALL_STATE(4319)] = 51672, + [SMALL_STATE(4320)] = 51777, + [SMALL_STATE(4321)] = 51882, + [SMALL_STATE(4322)] = 52011, + [SMALL_STATE(4323)] = 52138, + [SMALL_STATE(4324)] = 52243, + [SMALL_STATE(4325)] = 52348, + [SMALL_STATE(4326)] = 52435, + [SMALL_STATE(4327)] = 52570, + [SMALL_STATE(4328)] = 52707, + [SMALL_STATE(4329)] = 52794, + [SMALL_STATE(4330)] = 52935, + [SMALL_STATE(4331)] = 53076, + [SMALL_STATE(4332)] = 53217, + [SMALL_STATE(4333)] = 53358, + [SMALL_STATE(4334)] = 53499, + [SMALL_STATE(4335)] = 53592, + [SMALL_STATE(4336)] = 53733, + [SMALL_STATE(4337)] = 53836, + [SMALL_STATE(4338)] = 53941, + [SMALL_STATE(4339)] = 54089, + [SMALL_STATE(4340)] = 54175, + [SMALL_STATE(4341)] = 54261, + [SMALL_STATE(4342)] = 54347, + [SMALL_STATE(4343)] = 54433, + [SMALL_STATE(4344)] = 54521, + [SMALL_STATE(4345)] = 54635, + [SMALL_STATE(4346)] = 54771, + [SMALL_STATE(4347)] = 54917, + [SMALL_STATE(4348)] = 55029, + [SMALL_STATE(4349)] = 55115, + [SMALL_STATE(4350)] = 55219, + [SMALL_STATE(4351)] = 55327, + [SMALL_STATE(4352)] = 55435, + [SMALL_STATE(4353)] = 55539, + [SMALL_STATE(4354)] = 55625, + [SMALL_STATE(4355)] = 55771, + [SMALL_STATE(4356)] = 55857, + [SMALL_STATE(4357)] = 55949, + [SMALL_STATE(4358)] = 56035, + [SMALL_STATE(4359)] = 56149, + [SMALL_STATE(4360)] = 56281, + [SMALL_STATE(4361)] = 56421, + [SMALL_STATE(4362)] = 56551, + [SMALL_STATE(4363)] = 56691, + [SMALL_STATE(4364)] = 56831, + [SMALL_STATE(4365)] = 56965, + [SMALL_STATE(4366)] = 57051, + [SMALL_STATE(4367)] = 57137, + [SMALL_STATE(4368)] = 57263, + [SMALL_STATE(4369)] = 57403, + [SMALL_STATE(4370)] = 57497, + [SMALL_STATE(4371)] = 57589, + [SMALL_STATE(4372)] = 57729, + [SMALL_STATE(4373)] = 57815, + [SMALL_STATE(4374)] = 57905, + [SMALL_STATE(4375)] = 58051, + [SMALL_STATE(4376)] = 58185, + [SMALL_STATE(4377)] = 58325, + [SMALL_STATE(4378)] = 58429, + [SMALL_STATE(4379)] = 58515, + [SMALL_STATE(4380)] = 58633, + [SMALL_STATE(4381)] = 58769, + [SMALL_STATE(4382)] = 58883, + [SMALL_STATE(4383)] = 58987, + [SMALL_STATE(4384)] = 59127, + [SMALL_STATE(4385)] = 59267, + [SMALL_STATE(4386)] = 59353, + [SMALL_STATE(4387)] = 59471, + [SMALL_STATE(4388)] = 59583, + [SMALL_STATE(4389)] = 59673, + [SMALL_STATE(4390)] = 59761, + [SMALL_STATE(4391)] = 59873, + [SMALL_STATE(4392)] = 60003, + [SMALL_STATE(4393)] = 60117, + [SMALL_STATE(4394)] = 60243, + [SMALL_STATE(4395)] = 60329, + [SMALL_STATE(4396)] = 60437, + [SMALL_STATE(4397)] = 60551, + [SMALL_STATE(4398)] = 60691, + [SMALL_STATE(4399)] = 60819, + [SMALL_STATE(4400)] = 60945, + [SMALL_STATE(4401)] = 61049, + [SMALL_STATE(4402)] = 61189, + [SMALL_STATE(4403)] = 61329, + [SMALL_STATE(4404)] = 61417, + [SMALL_STATE(4405)] = 61557, + [SMALL_STATE(4406)] = 61661, + [SMALL_STATE(4407)] = 61747, + [SMALL_STATE(4408)] = 61887, + [SMALL_STATE(4409)] = 61991, + [SMALL_STATE(4410)] = 62085, + [SMALL_STATE(4411)] = 62171, + [SMALL_STATE(4412)] = 62311, + [SMALL_STATE(4413)] = 62451, + [SMALL_STATE(4414)] = 62591, + [SMALL_STATE(4415)] = 62719, + [SMALL_STATE(4416)] = 62859, + [SMALL_STATE(4417)] = 62999, + [SMALL_STATE(4418)] = 63129, + [SMALL_STATE(4419)] = 63217, + [SMALL_STATE(4420)] = 63345, + [SMALL_STATE(4421)] = 63471, + [SMALL_STATE(4422)] = 63617, + [SMALL_STATE(4423)] = 63751, + [SMALL_STATE(4424)] = 63891, + [SMALL_STATE(4425)] = 64031, + [SMALL_STATE(4426)] = 64167, + [SMALL_STATE(4427)] = 64271, + [SMALL_STATE(4428)] = 64411, + [SMALL_STATE(4429)] = 64551, + [SMALL_STATE(4430)] = 64691, + [SMALL_STATE(4431)] = 64777, + [SMALL_STATE(4432)] = 64891, + [SMALL_STATE(4433)] = 64977, + [SMALL_STATE(4434)] = 65095, + [SMALL_STATE(4435)] = 65225, + [SMALL_STATE(4436)] = 65365, + [SMALL_STATE(4437)] = 65451, + [SMALL_STATE(4438)] = 65537, + [SMALL_STATE(4439)] = 65683, + [SMALL_STATE(4440)] = 65787, + [SMALL_STATE(4441)] = 65915, + [SMALL_STATE(4442)] = 66055, + [SMALL_STATE(4443)] = 66191, + [SMALL_STATE(4444)] = 66277, + [SMALL_STATE(4445)] = 66417, + [SMALL_STATE(4446)] = 66557, + [SMALL_STATE(4447)] = 66643, + [SMALL_STATE(4448)] = 66789, + [SMALL_STATE(4449)] = 66877, + [SMALL_STATE(4450)] = 66985, + [SMALL_STATE(4451)] = 67125, + [SMALL_STATE(4452)] = 67219, + [SMALL_STATE(4453)] = 67359, + [SMALL_STATE(4454)] = 67491, + [SMALL_STATE(4455)] = 67631, + [SMALL_STATE(4456)] = 67749, + [SMALL_STATE(4457)] = 67895, + [SMALL_STATE(4458)] = 67985, + [SMALL_STATE(4459)] = 68119, + [SMALL_STATE(4460)] = 68205, + [SMALL_STATE(4461)] = 68291, + [SMALL_STATE(4462)] = 68403, + [SMALL_STATE(4463)] = 68489, + [SMALL_STATE(4464)] = 68577, + [SMALL_STATE(4465)] = 68717, + [SMALL_STATE(4466)] = 68807, + [SMALL_STATE(4467)] = 68897, + [SMALL_STATE(4468)] = 68987, + [SMALL_STATE(4469)] = 69075, + [SMALL_STATE(4470)] = 69165, + [SMALL_STATE(4471)] = 69255, + [SMALL_STATE(4472)] = 69343, + [SMALL_STATE(4473)] = 69455, + [SMALL_STATE(4474)] = 69543, + [SMALL_STATE(4475)] = 69683, + [SMALL_STATE(4476)] = 69787, + [SMALL_STATE(4477)] = 69877, + [SMALL_STATE(4478)] = 69967, + [SMALL_STATE(4479)] = 70107, + [SMALL_STATE(4480)] = 70197, + [SMALL_STATE(4481)] = 70329, + [SMALL_STATE(4482)] = 70419, + [SMALL_STATE(4483)] = 70507, + [SMALL_STATE(4484)] = 70593, + [SMALL_STATE(4485)] = 70685, + [SMALL_STATE(4486)] = 70817, + [SMALL_STATE(4487)] = 70934, + [SMALL_STATE(4488)] = 71019, + [SMALL_STATE(4489)] = 71158, + [SMALL_STATE(4490)] = 71287, + [SMALL_STATE(4491)] = 71418, + [SMALL_STATE(4492)] = 71545, + [SMALL_STATE(4493)] = 71670, + [SMALL_STATE(4494)] = 71773, + [SMALL_STATE(4495)] = 71906, + [SMALL_STATE(4496)] = 72041, + [SMALL_STATE(4497)] = 72180, + [SMALL_STATE(4498)] = 72319, + [SMALL_STATE(4499)] = 72458, + [SMALL_STATE(4500)] = 72597, + [SMALL_STATE(4501)] = 72736, + [SMALL_STATE(4502)] = 72865, + [SMALL_STATE(4503)] = 72996, + [SMALL_STATE(4504)] = 73123, + [SMALL_STATE(4505)] = 73248, + [SMALL_STATE(4506)] = 73381, + [SMALL_STATE(4507)] = 73516, + [SMALL_STATE(4508)] = 73655, + [SMALL_STATE(4509)] = 73796, + [SMALL_STATE(4510)] = 73883, + [SMALL_STATE(4511)] = 73970, + [SMALL_STATE(4512)] = 74071, + [SMALL_STATE(4513)] = 74160, + [SMALL_STATE(4514)] = 74299, + [SMALL_STATE(4515)] = 74412, + [SMALL_STATE(4516)] = 74529, + [SMALL_STATE(4517)] = 74640, + [SMALL_STATE(4518)] = 74753, + [SMALL_STATE(4519)] = 74838, + [SMALL_STATE(4520)] = 74939, + [SMALL_STATE(4521)] = 75056, + [SMALL_STATE(4522)] = 75167, + [SMALL_STATE(4523)] = 75296, + [SMALL_STATE(4524)] = 75427, + [SMALL_STATE(4525)] = 75554, + [SMALL_STATE(4526)] = 75667, + [SMALL_STATE(4527)] = 75792, + [SMALL_STATE(4528)] = 75925, + [SMALL_STATE(4529)] = 76060, + [SMALL_STATE(4530)] = 76199, + [SMALL_STATE(4531)] = 76338, + [SMALL_STATE(4532)] = 76441, + [SMALL_STATE(4533)] = 76580, + [SMALL_STATE(4534)] = 76719, + [SMALL_STATE(4535)] = 76858, + [SMALL_STATE(4536)] = 76997, + [SMALL_STATE(4537)] = 77100, + [SMALL_STATE(4538)] = 77185, + [SMALL_STATE(4539)] = 77286, + [SMALL_STATE(4540)] = 77371, + [SMALL_STATE(4541)] = 77456, + [SMALL_STATE(4542)] = 77549, + [SMALL_STATE(4543)] = 77640, + [SMALL_STATE(4544)] = 77757, + [SMALL_STATE(4545)] = 77868, + [SMALL_STATE(4546)] = 77981, + [SMALL_STATE(4547)] = 78084, + [SMALL_STATE(4548)] = 78169, + [SMALL_STATE(4549)] = 78254, + [SMALL_STATE(4550)] = 78371, + [SMALL_STATE(4551)] = 78482, + [SMALL_STATE(4552)] = 78589, + [SMALL_STATE(4553)] = 78718, + [SMALL_STATE(4554)] = 78849, + [SMALL_STATE(4555)] = 78976, + [SMALL_STATE(4556)] = 79089, + [SMALL_STATE(4557)] = 79214, + [SMALL_STATE(4558)] = 79317, + [SMALL_STATE(4559)] = 79450, + [SMALL_STATE(4560)] = 79585, + [SMALL_STATE(4561)] = 79724, + [SMALL_STATE(4562)] = 79863, + [SMALL_STATE(4563)] = 80002, + [SMALL_STATE(4564)] = 80147, + [SMALL_STATE(4565)] = 80236, + [SMALL_STATE(4566)] = 80321, + [SMALL_STATE(4567)] = 80406, + [SMALL_STATE(4568)] = 80523, + [SMALL_STATE(4569)] = 80634, + [SMALL_STATE(4570)] = 80747, + [SMALL_STATE(4571)] = 80850, + [SMALL_STATE(4572)] = 80989, + [SMALL_STATE(4573)] = 81074, + [SMALL_STATE(4574)] = 81159, + [SMALL_STATE(4575)] = 81246, + [SMALL_STATE(4576)] = 81331, + [SMALL_STATE(4577)] = 81448, + [SMALL_STATE(4578)] = 81559, + [SMALL_STATE(4579)] = 81672, + [SMALL_STATE(4580)] = 81775, + [SMALL_STATE(4581)] = 81860, + [SMALL_STATE(4582)] = 81945, + [SMALL_STATE(4583)] = 82030, + [SMALL_STATE(4584)] = 82115, + [SMALL_STATE(4585)] = 82200, + [SMALL_STATE(4586)] = 82285, + [SMALL_STATE(4587)] = 82370, + [SMALL_STATE(4588)] = 82455, + [SMALL_STATE(4589)] = 82540, + [SMALL_STATE(4590)] = 82625, + [SMALL_STATE(4591)] = 82710, + [SMALL_STATE(4592)] = 82795, + [SMALL_STATE(4593)] = 82880, + [SMALL_STATE(4594)] = 82965, + [SMALL_STATE(4595)] = 83050, + [SMALL_STATE(4596)] = 83135, + [SMALL_STATE(4597)] = 83220, + [SMALL_STATE(4598)] = 83305, + [SMALL_STATE(4599)] = 83390, + [SMALL_STATE(4600)] = 83475, + [SMALL_STATE(4601)] = 83560, + [SMALL_STATE(4602)] = 83645, + [SMALL_STATE(4603)] = 83784, + [SMALL_STATE(4604)] = 83869, + [SMALL_STATE(4605)] = 83954, + [SMALL_STATE(4606)] = 84039, + [SMALL_STATE(4607)] = 84124, + [SMALL_STATE(4608)] = 84209, + [SMALL_STATE(4609)] = 84294, + [SMALL_STATE(4610)] = 84379, + [SMALL_STATE(4611)] = 84464, + [SMALL_STATE(4612)] = 84549, + [SMALL_STATE(4613)] = 84634, + [SMALL_STATE(4614)] = 84719, + [SMALL_STATE(4615)] = 84820, + [SMALL_STATE(4616)] = 84959, + [SMALL_STATE(4617)] = 85062, + [SMALL_STATE(4618)] = 85147, + [SMALL_STATE(4619)] = 85286, + [SMALL_STATE(4620)] = 85375, + [SMALL_STATE(4621)] = 85464, + [SMALL_STATE(4622)] = 85549, + [SMALL_STATE(4623)] = 85634, + [SMALL_STATE(4624)] = 85721, + [SMALL_STATE(4625)] = 85810, + [SMALL_STATE(4626)] = 85927, + [SMALL_STATE(4627)] = 86038, + [SMALL_STATE(4628)] = 86145, + [SMALL_STATE(4629)] = 86274, + [SMALL_STATE(4630)] = 86405, + [SMALL_STATE(4631)] = 86532, + [SMALL_STATE(4632)] = 86645, + [SMALL_STATE(4633)] = 86770, + [SMALL_STATE(4634)] = 86855, + [SMALL_STATE(4635)] = 86958, + [SMALL_STATE(4636)] = 87091, + [SMALL_STATE(4637)] = 87226, + [SMALL_STATE(4638)] = 87365, + [SMALL_STATE(4639)] = 87450, + [SMALL_STATE(4640)] = 87535, + [SMALL_STATE(4641)] = 87648, + [SMALL_STATE(4642)] = 87733, + [SMALL_STATE(4643)] = 87818, + [SMALL_STATE(4644)] = 87957, + [SMALL_STATE(4645)] = 88096, + [SMALL_STATE(4646)] = 88199, + [SMALL_STATE(4647)] = 88284, + [SMALL_STATE(4648)] = 88373, + [SMALL_STATE(4649)] = 88462, + [SMALL_STATE(4650)] = 88547, + [SMALL_STATE(4651)] = 88686, + [SMALL_STATE(4652)] = 88825, + [SMALL_STATE(4653)] = 88910, + [SMALL_STATE(4654)] = 88995, + [SMALL_STATE(4655)] = 89080, + [SMALL_STATE(4656)] = 89165, + [SMALL_STATE(4657)] = 89250, + [SMALL_STATE(4658)] = 89335, + [SMALL_STATE(4659)] = 89420, + [SMALL_STATE(4660)] = 89559, + [SMALL_STATE(4661)] = 89644, + [SMALL_STATE(4662)] = 89729, + [SMALL_STATE(4663)] = 89814, + [SMALL_STATE(4664)] = 89899, + [SMALL_STATE(4665)] = 89984, + [SMALL_STATE(4666)] = 90069, + [SMALL_STATE(4667)] = 90154, + [SMALL_STATE(4668)] = 90239, + [SMALL_STATE(4669)] = 90346, + [SMALL_STATE(4670)] = 90433, + [SMALL_STATE(4671)] = 90518, + [SMALL_STATE(4672)] = 90657, + [SMALL_STATE(4673)] = 90796, + [SMALL_STATE(4674)] = 90935, + [SMALL_STATE(4675)] = 91074, + [SMALL_STATE(4676)] = 91213, + [SMALL_STATE(4677)] = 91352, + [SMALL_STATE(4678)] = 91491, + [SMALL_STATE(4679)] = 91578, + [SMALL_STATE(4680)] = 91717, + [SMALL_STATE(4681)] = 91820, + [SMALL_STATE(4682)] = 91959, + [SMALL_STATE(4683)] = 92098, + [SMALL_STATE(4684)] = 92201, + [SMALL_STATE(4685)] = 92340, + [SMALL_STATE(4686)] = 92479, + [SMALL_STATE(4687)] = 92618, + [SMALL_STATE(4688)] = 92725, + [SMALL_STATE(4689)] = 92864, + [SMALL_STATE(4690)] = 93003, + [SMALL_STATE(4691)] = 93142, + [SMALL_STATE(4692)] = 93245, + [SMALL_STATE(4693)] = 93384, + [SMALL_STATE(4694)] = 93513, + [SMALL_STATE(4695)] = 93644, + [SMALL_STATE(4696)] = 93771, + [SMALL_STATE(4697)] = 93896, + [SMALL_STATE(4698)] = 94029, + [SMALL_STATE(4699)] = 94164, + [SMALL_STATE(4700)] = 94303, + [SMALL_STATE(4701)] = 94442, + [SMALL_STATE(4702)] = 94581, + [SMALL_STATE(4703)] = 94720, + [SMALL_STATE(4704)] = 94859, + [SMALL_STATE(4705)] = 94976, + [SMALL_STATE(4706)] = 95087, + [SMALL_STATE(4707)] = 95194, + [SMALL_STATE(4708)] = 95307, + [SMALL_STATE(4709)] = 95392, + [SMALL_STATE(4710)] = 95477, + [SMALL_STATE(4711)] = 95616, + [SMALL_STATE(4712)] = 95755, + [SMALL_STATE(4713)] = 95894, + [SMALL_STATE(4714)] = 96033, + [SMALL_STATE(4715)] = 96140, + [SMALL_STATE(4716)] = 96279, + [SMALL_STATE(4717)] = 96408, + [SMALL_STATE(4718)] = 96539, + [SMALL_STATE(4719)] = 96666, + [SMALL_STATE(4720)] = 96791, + [SMALL_STATE(4721)] = 96924, + [SMALL_STATE(4722)] = 97059, + [SMALL_STATE(4723)] = 97198, + [SMALL_STATE(4724)] = 97337, + [SMALL_STATE(4725)] = 97476, + [SMALL_STATE(4726)] = 97615, + [SMALL_STATE(4727)] = 97754, + [SMALL_STATE(4728)] = 97839, + [SMALL_STATE(4729)] = 97978, + [SMALL_STATE(4730)] = 98085, + [SMALL_STATE(4731)] = 98224, + [SMALL_STATE(4732)] = 98363, + [SMALL_STATE(4733)] = 98502, + [SMALL_STATE(4734)] = 98605, + [SMALL_STATE(4735)] = 98708, + [SMALL_STATE(4736)] = 98815, + [SMALL_STATE(4737)] = 98954, + [SMALL_STATE(4738)] = 99083, + [SMALL_STATE(4739)] = 99214, + [SMALL_STATE(4740)] = 99341, + [SMALL_STATE(4741)] = 99466, + [SMALL_STATE(4742)] = 99599, + [SMALL_STATE(4743)] = 99734, + [SMALL_STATE(4744)] = 99873, + [SMALL_STATE(4745)] = 100012, + [SMALL_STATE(4746)] = 100101, + [SMALL_STATE(4747)] = 100240, + [SMALL_STATE(4748)] = 100329, + [SMALL_STATE(4749)] = 100468, + [SMALL_STATE(4750)] = 100555, + [SMALL_STATE(4751)] = 100694, + [SMALL_STATE(4752)] = 100833, + [SMALL_STATE(4753)] = 100936, + [SMALL_STATE(4754)] = 101043, + [SMALL_STATE(4755)] = 101182, + [SMALL_STATE(4756)] = 101285, + [SMALL_STATE(4757)] = 101388, + [SMALL_STATE(4758)] = 101491, + [SMALL_STATE(4759)] = 101576, + [SMALL_STATE(4760)] = 101661, + [SMALL_STATE(4761)] = 101746, + [SMALL_STATE(4762)] = 101831, + [SMALL_STATE(4763)] = 101920, + [SMALL_STATE(4764)] = 102005, + [SMALL_STATE(4765)] = 102090, + [SMALL_STATE(4766)] = 102175, + [SMALL_STATE(4767)] = 102260, + [SMALL_STATE(4768)] = 102361, + [SMALL_STATE(4769)] = 102450, + [SMALL_STATE(4770)] = 102539, + [SMALL_STATE(4771)] = 102628, + [SMALL_STATE(4772)] = 102715, + [SMALL_STATE(4773)] = 102804, + [SMALL_STATE(4774)] = 102945, + [SMALL_STATE(4775)] = 103062, + [SMALL_STATE(4776)] = 103173, + [SMALL_STATE(4777)] = 103280, + [SMALL_STATE(4778)] = 103409, + [SMALL_STATE(4779)] = 103540, + [SMALL_STATE(4780)] = 103667, + [SMALL_STATE(4781)] = 103780, + [SMALL_STATE(4782)] = 103905, + [SMALL_STATE(4783)] = 104008, + [SMALL_STATE(4784)] = 104141, + [SMALL_STATE(4785)] = 104276, + [SMALL_STATE(4786)] = 104415, + [SMALL_STATE(4787)] = 104556, + [SMALL_STATE(4788)] = 104697, + [SMALL_STATE(4789)] = 104808, + [SMALL_STATE(4790)] = 104915, + [SMALL_STATE(4791)] = 105044, + [SMALL_STATE(4792)] = 105185, + [SMALL_STATE(4793)] = 105326, + [SMALL_STATE(4794)] = 105457, + [SMALL_STATE(4795)] = 105584, + [SMALL_STATE(4796)] = 105697, + [SMALL_STATE(4797)] = 105822, + [SMALL_STATE(4798)] = 105925, + [SMALL_STATE(4799)] = 106058, + [SMALL_STATE(4800)] = 106193, + [SMALL_STATE(4801)] = 106332, + [SMALL_STATE(4802)] = 106471, + [SMALL_STATE(4803)] = 106610, + [SMALL_STATE(4804)] = 106699, + [SMALL_STATE(4805)] = 106788, + [SMALL_STATE(4806)] = 106877, + [SMALL_STATE(4807)] = 106964, + [SMALL_STATE(4808)] = 107053, + [SMALL_STATE(4809)] = 107138, + [SMALL_STATE(4810)] = 107223, + [SMALL_STATE(4811)] = 107308, + [SMALL_STATE(4812)] = 107393, + [SMALL_STATE(4813)] = 107478, + [SMALL_STATE(4814)] = 107563, + [SMALL_STATE(4815)] = 107648, + [SMALL_STATE(4816)] = 107765, + [SMALL_STATE(4817)] = 107876, + [SMALL_STATE(4818)] = 108005, + [SMALL_STATE(4819)] = 108136, + [SMALL_STATE(4820)] = 108263, + [SMALL_STATE(4821)] = 108376, + [SMALL_STATE(4822)] = 108501, + [SMALL_STATE(4823)] = 108642, + [SMALL_STATE(4824)] = 108783, + [SMALL_STATE(4825)] = 108924, + [SMALL_STATE(4826)] = 109057, + [SMALL_STATE(4827)] = 109160, + [SMALL_STATE(4828)] = 109295, + [SMALL_STATE(4829)] = 109434, + [SMALL_STATE(4830)] = 109519, + [SMALL_STATE(4831)] = 109604, + [SMALL_STATE(4832)] = 109689, + [SMALL_STATE(4833)] = 109828, + [SMALL_STATE(4834)] = 109966, + [SMALL_STATE(4835)] = 110104, + [SMALL_STATE(4836)] = 110216, + [SMALL_STATE(4837)] = 110332, + [SMALL_STATE(4838)] = 110444, + [SMALL_STATE(4839)] = 110556, + [SMALL_STATE(4840)] = 110668, + [SMALL_STATE(4841)] = 110754, + [SMALL_STATE(4842)] = 110842, + [SMALL_STATE(4843)] = 110952, + [SMALL_STATE(4844)] = 111068, + [SMALL_STATE(4845)] = 111178, + [SMALL_STATE(4846)] = 111306, + [SMALL_STATE(4847)] = 111444, + [SMALL_STATE(4848)] = 111574, + [SMALL_STATE(4849)] = 111712, + [SMALL_STATE(4850)] = 111838, + [SMALL_STATE(4851)] = 111976, + [SMALL_STATE(4852)] = 112114, + [SMALL_STATE(4853)] = 112226, + [SMALL_STATE(4854)] = 112328, + [SMALL_STATE(4855)] = 112466, + [SMALL_STATE(4856)] = 112604, + [SMALL_STATE(4857)] = 112728, + [SMALL_STATE(4858)] = 112866, + [SMALL_STATE(4859)] = 113004, + [SMALL_STATE(4860)] = 113136, + [SMALL_STATE(4861)] = 113270, + [SMALL_STATE(4862)] = 113408, + [SMALL_STATE(4863)] = 113492, + [SMALL_STATE(4864)] = 113598, + [SMALL_STATE(4865)] = 113726, + [SMALL_STATE(4866)] = 113864, + [SMALL_STATE(4867)] = 113966, + [SMALL_STATE(4868)] = 114104, + [SMALL_STATE(4869)] = 114242, + [SMALL_STATE(4870)] = 114384, + [SMALL_STATE(4871)] = 114522, + [SMALL_STATE(4872)] = 114664, + [SMALL_STATE(4873)] = 114802, + [SMALL_STATE(4874)] = 114942, + [SMALL_STATE(4875)] = 115080, + [SMALL_STATE(4876)] = 115210, + [SMALL_STATE(4877)] = 115336, + [SMALL_STATE(4878)] = 115448, + [SMALL_STATE(4879)] = 115572, + [SMALL_STATE(4880)] = 115704, + [SMALL_STATE(4881)] = 115790, + [SMALL_STATE(4882)] = 115924, + [SMALL_STATE(4883)] = 116066, + [SMALL_STATE(4884)] = 116178, + [SMALL_STATE(4885)] = 116294, + [SMALL_STATE(4886)] = 116436, + [SMALL_STATE(4887)] = 116574, + [SMALL_STATE(4888)] = 116712, + [SMALL_STATE(4889)] = 116822, + [SMALL_STATE(4890)] = 116960, + [SMALL_STATE(4891)] = 117072, + [SMALL_STATE(4892)] = 117200, + [SMALL_STATE(4893)] = 117330, + [SMALL_STATE(4894)] = 117456, + [SMALL_STATE(4895)] = 117568, + [SMALL_STATE(4896)] = 117692, + [SMALL_STATE(4897)] = 117824, + [SMALL_STATE(4898)] = 117912, + [SMALL_STATE(4899)] = 118046, + [SMALL_STATE(4900)] = 118184, + [SMALL_STATE(4901)] = 118322, + [SMALL_STATE(4902)] = 118424, + [SMALL_STATE(4903)] = 118566, + [SMALL_STATE(4904)] = 118708, + [SMALL_STATE(4905)] = 118846, + [SMALL_STATE(4906)] = 118984, + [SMALL_STATE(4907)] = 119122, + [SMALL_STATE(4908)] = 119260, + [SMALL_STATE(4909)] = 119398, + [SMALL_STATE(4910)] = 119536, + [SMALL_STATE(4911)] = 119674, + [SMALL_STATE(4912)] = 119812, + [SMALL_STATE(4913)] = 119950, + [SMALL_STATE(4914)] = 120062, + [SMALL_STATE(4915)] = 120200, + [SMALL_STATE(4916)] = 120338, + [SMALL_STATE(4917)] = 120462, + [SMALL_STATE(4918)] = 120604, + [SMALL_STATE(4919)] = 120746, + [SMALL_STATE(4920)] = 120848, + [SMALL_STATE(4921)] = 120986, + [SMALL_STATE(4922)] = 121088, + [SMALL_STATE(4923)] = 121190, + [SMALL_STATE(4924)] = 121328, + [SMALL_STATE(4925)] = 121440, + [SMALL_STATE(4926)] = 121572, + [SMALL_STATE(4927)] = 121684, + [SMALL_STATE(4928)] = 121786, + [SMALL_STATE(4929)] = 121902, + [SMALL_STATE(4930)] = 122012, + [SMALL_STATE(4931)] = 122140, + [SMALL_STATE(4932)] = 122270, + [SMALL_STATE(4933)] = 122396, + [SMALL_STATE(4934)] = 122508, + [SMALL_STATE(4935)] = 122632, + [SMALL_STATE(4936)] = 122764, + [SMALL_STATE(4937)] = 122898, + [SMALL_STATE(4938)] = 123036, + [SMALL_STATE(4939)] = 123178, + [SMALL_STATE(4940)] = 123312, + [SMALL_STATE(4941)] = 123450, + [SMALL_STATE(4942)] = 123552, + [SMALL_STATE(4943)] = 123690, + [SMALL_STATE(4944)] = 123778, + [SMALL_STATE(4945)] = 123880, + [SMALL_STATE(4946)] = 124018, + [SMALL_STATE(4947)] = 124130, + [SMALL_STATE(4948)] = 124268, + [SMALL_STATE(4949)] = 124406, + [SMALL_STATE(4950)] = 124544, + [SMALL_STATE(4951)] = 124682, + [SMALL_STATE(4952)] = 124792, + [SMALL_STATE(4953)] = 124880, + [SMALL_STATE(4954)] = 125022, + [SMALL_STATE(4955)] = 125160, + [SMALL_STATE(4956)] = 125276, + [SMALL_STATE(4957)] = 125414, + [SMALL_STATE(4958)] = 125526, + [SMALL_STATE(4959)] = 125668, + [SMALL_STATE(4960)] = 125784, + [SMALL_STATE(4961)] = 125894, + [SMALL_STATE(4962)] = 126000, + [SMALL_STATE(4963)] = 126128, + [SMALL_STATE(4964)] = 126258, + [SMALL_STATE(4965)] = 126400, + [SMALL_STATE(4966)] = 126516, + [SMALL_STATE(4967)] = 126628, + [SMALL_STATE(4968)] = 126766, + [SMALL_STATE(4969)] = 126876, + [SMALL_STATE(4970)] = 127004, + [SMALL_STATE(4971)] = 127134, + [SMALL_STATE(4972)] = 127240, + [SMALL_STATE(4973)] = 127366, + [SMALL_STATE(4974)] = 127478, + [SMALL_STATE(4975)] = 127580, + [SMALL_STATE(4976)] = 127668, + [SMALL_STATE(4977)] = 127792, + [SMALL_STATE(4978)] = 127924, + [SMALL_STATE(4979)] = 128058, + [SMALL_STATE(4980)] = 128196, + [SMALL_STATE(4981)] = 128308, + [SMALL_STATE(4982)] = 128446, + [SMALL_STATE(4983)] = 128552, + [SMALL_STATE(4984)] = 128654, + [SMALL_STATE(4985)] = 128786, + [SMALL_STATE(4986)] = 128920, + [SMALL_STATE(4987)] = 129026, + [SMALL_STATE(4988)] = 129128, + [SMALL_STATE(4989)] = 129230, + [SMALL_STATE(4990)] = 129342, + [SMALL_STATE(4991)] = 129480, + [SMALL_STATE(4992)] = 129586, + [SMALL_STATE(4993)] = 129688, + [SMALL_STATE(4994)] = 129800, + [SMALL_STATE(4995)] = 129938, + [SMALL_STATE(4996)] = 130044, + [SMALL_STATE(4997)] = 130146, + [SMALL_STATE(4998)] = 130284, + [SMALL_STATE(4999)] = 130426, + [SMALL_STATE(5000)] = 130564, + [SMALL_STATE(5001)] = 130702, + [SMALL_STATE(5002)] = 130840, + [SMALL_STATE(5003)] = 130978, + [SMALL_STATE(5004)] = 131104, + [SMALL_STATE(5005)] = 131216, + [SMALL_STATE(5006)] = 131304, + [SMALL_STATE(5007)] = 131416, + [SMALL_STATE(5008)] = 131528, + [SMALL_STATE(5009)] = 131652, + [SMALL_STATE(5010)] = 131764, + [SMALL_STATE(5011)] = 131870, + [SMALL_STATE(5012)] = 131972, + [SMALL_STATE(5013)] = 132114, + [SMALL_STATE(5014)] = 132226, + [SMALL_STATE(5015)] = 132338, + [SMALL_STATE(5016)] = 132450, + [SMALL_STATE(5017)] = 132562, + [SMALL_STATE(5018)] = 132664, + [SMALL_STATE(5019)] = 132806, + [SMALL_STATE(5020)] = 132944, + [SMALL_STATE(5021)] = 133032, + [SMALL_STATE(5022)] = 133174, + [SMALL_STATE(5023)] = 133262, + [SMALL_STATE(5024)] = 133378, + [SMALL_STATE(5025)] = 133518, + [SMALL_STATE(5026)] = 133628, + [SMALL_STATE(5027)] = 133756, + [SMALL_STATE(5028)] = 133886, + [SMALL_STATE(5029)] = 134012, + [SMALL_STATE(5030)] = 134124, + [SMALL_STATE(5031)] = 134248, + [SMALL_STATE(5032)] = 134380, + [SMALL_STATE(5033)] = 134514, + [SMALL_STATE(5034)] = 134652, + [SMALL_STATE(5035)] = 134754, + [SMALL_STATE(5036)] = 134892, + [SMALL_STATE(5037)] = 135032, + [SMALL_STATE(5038)] = 135170, + [SMALL_STATE(5039)] = 135272, + [SMALL_STATE(5040)] = 135410, + [SMALL_STATE(5041)] = 135548, + [SMALL_STATE(5042)] = 135686, + [SMALL_STATE(5043)] = 135824, + [SMALL_STATE(5044)] = 135962, + [SMALL_STATE(5045)] = 136094, + [SMALL_STATE(5046)] = 136206, + [SMALL_STATE(5047)] = 136340, + [SMALL_STATE(5048)] = 136482, + [SMALL_STATE(5049)] = 136594, + [SMALL_STATE(5050)] = 136706, + [SMALL_STATE(5051)] = 136844, + [SMALL_STATE(5052)] = 136982, + [SMALL_STATE(5053)] = 137124, + [SMALL_STATE(5054)] = 137210, + [SMALL_STATE(5055)] = 137322, + [SMALL_STATE(5056)] = 137408, + [SMALL_STATE(5057)] = 137496, + [SMALL_STATE(5058)] = 137584, + [SMALL_STATE(5059)] = 137672, + [SMALL_STATE(5060)] = 137758, + [SMALL_STATE(5061)] = 137846, + [SMALL_STATE(5062)] = 137934, + [SMALL_STATE(5063)] = 138022, + [SMALL_STATE(5064)] = 138110, + [SMALL_STATE(5065)] = 138196, + [SMALL_STATE(5066)] = 138284, + [SMALL_STATE(5067)] = 138372, + [SMALL_STATE(5068)] = 138460, + [SMALL_STATE(5069)] = 138548, + [SMALL_STATE(5070)] = 138634, + [SMALL_STATE(5071)] = 138722, + [SMALL_STATE(5072)] = 138832, + [SMALL_STATE(5073)] = 138974, + [SMALL_STATE(5074)] = 139116, + [SMALL_STATE(5075)] = 139204, + [SMALL_STATE(5076)] = 139292, + [SMALL_STATE(5077)] = 139380, + [SMALL_STATE(5078)] = 139466, + [SMALL_STATE(5079)] = 139554, + [SMALL_STATE(5080)] = 139692, + [SMALL_STATE(5081)] = 139784, + [SMALL_STATE(5082)] = 139922, + [SMALL_STATE(5083)] = 140014, + [SMALL_STATE(5084)] = 140152, + [SMALL_STATE(5085)] = 140238, + [SMALL_STATE(5086)] = 140376, + [SMALL_STATE(5087)] = 140514, + [SMALL_STATE(5088)] = 140620, + [SMALL_STATE(5089)] = 140748, + [SMALL_STATE(5090)] = 140878, + [SMALL_STATE(5091)] = 141020, + [SMALL_STATE(5092)] = 141108, + [SMALL_STATE(5093)] = 141234, + [SMALL_STATE(5094)] = 141322, + [SMALL_STATE(5095)] = 141410, + [SMALL_STATE(5096)] = 141548, + [SMALL_STATE(5097)] = 141634, + [SMALL_STATE(5098)] = 141722, + [SMALL_STATE(5099)] = 141860, + [SMALL_STATE(5100)] = 141976, + [SMALL_STATE(5101)] = 142086, + [SMALL_STATE(5102)] = 142214, + [SMALL_STATE(5103)] = 142344, + [SMALL_STATE(5104)] = 142470, + [SMALL_STATE(5105)] = 142582, + [SMALL_STATE(5106)] = 142706, + [SMALL_STATE(5107)] = 142818, + [SMALL_STATE(5108)] = 142917, + [SMALL_STATE(5109)] = 143002, + [SMALL_STATE(5110)] = 143139, + [SMALL_STATE(5111)] = 143226, + [SMALL_STATE(5112)] = 143325, + [SMALL_STATE(5113)] = 143412, + [SMALL_STATE(5114)] = 143511, + [SMALL_STATE(5115)] = 143648, + [SMALL_STATE(5116)] = 143749, + [SMALL_STATE(5117)] = 143886, + [SMALL_STATE(5118)] = 144023, + [SMALL_STATE(5119)] = 144160, + [SMALL_STATE(5120)] = 144259, + [SMALL_STATE(5121)] = 144374, + [SMALL_STATE(5122)] = 144483, + [SMALL_STATE(5123)] = 144588, + [SMALL_STATE(5124)] = 144715, + [SMALL_STATE(5125)] = 144844, + [SMALL_STATE(5126)] = 144969, + [SMALL_STATE(5127)] = 145068, + [SMALL_STATE(5128)] = 145167, + [SMALL_STATE(5129)] = 145278, + [SMALL_STATE(5130)] = 145401, + [SMALL_STATE(5131)] = 145486, + [SMALL_STATE(5132)] = 145617, + [SMALL_STATE(5133)] = 145750, + [SMALL_STATE(5134)] = 145887, + [SMALL_STATE(5135)] = 145972, + [SMALL_STATE(5136)] = 146075, + [SMALL_STATE(5137)] = 146212, + [SMALL_STATE(5138)] = 146311, + [SMALL_STATE(5139)] = 146396, + [SMALL_STATE(5140)] = 146483, + [SMALL_STATE(5141)] = 146574, + [SMALL_STATE(5142)] = 146659, + [SMALL_STATE(5143)] = 146758, + [SMALL_STATE(5144)] = 146897, + [SMALL_STATE(5145)] = 147034, + [SMALL_STATE(5146)] = 147171, + [SMALL_STATE(5147)] = 147308, + [SMALL_STATE(5148)] = 147445, + [SMALL_STATE(5149)] = 147582, + [SMALL_STATE(5150)] = 147719, + [SMALL_STATE(5151)] = 147818, + [SMALL_STATE(5152)] = 147955, + [SMALL_STATE(5153)] = 148048, + [SMALL_STATE(5154)] = 148185, + [SMALL_STATE(5155)] = 148288, + [SMALL_STATE(5156)] = 148397, + [SMALL_STATE(5157)] = 148534, + [SMALL_STATE(5158)] = 148671, + [SMALL_STATE(5159)] = 148770, + [SMALL_STATE(5160)] = 148869, + [SMALL_STATE(5161)] = 148968, + [SMALL_STATE(5162)] = 149105, + [SMALL_STATE(5163)] = 149192, + [SMALL_STATE(5164)] = 149291, + [SMALL_STATE(5165)] = 149428, + [SMALL_STATE(5166)] = 149529, + [SMALL_STATE(5167)] = 149666, + [SMALL_STATE(5168)] = 149803, + [SMALL_STATE(5169)] = 149940, + [SMALL_STATE(5170)] = 150049, + [SMALL_STATE(5171)] = 150164, + [SMALL_STATE(5172)] = 150301, + [SMALL_STATE(5173)] = 150410, + [SMALL_STATE(5174)] = 150515, + [SMALL_STATE(5175)] = 150642, + [SMALL_STATE(5176)] = 150771, + [SMALL_STATE(5177)] = 150896, + [SMALL_STATE(5178)] = 151007, + [SMALL_STATE(5179)] = 151130, + [SMALL_STATE(5180)] = 151261, + [SMALL_STATE(5181)] = 151394, + [SMALL_STATE(5182)] = 151531, + [SMALL_STATE(5183)] = 151624, + [SMALL_STATE(5184)] = 151761, + [SMALL_STATE(5185)] = 151898, + [SMALL_STATE(5186)] = 152035, + [SMALL_STATE(5187)] = 152174, + [SMALL_STATE(5188)] = 152313, + [SMALL_STATE(5189)] = 152400, + [SMALL_STATE(5190)] = 152499, + [SMALL_STATE(5191)] = 152636, + [SMALL_STATE(5192)] = 152735, + [SMALL_STATE(5193)] = 152822, + [SMALL_STATE(5194)] = 152909, + [SMALL_STATE(5195)] = 153046, + [SMALL_STATE(5196)] = 153183, + [SMALL_STATE(5197)] = 153320, + [SMALL_STATE(5198)] = 153429, + [SMALL_STATE(5199)] = 153530, + [SMALL_STATE(5200)] = 153669, + [SMALL_STATE(5201)] = 153806, + [SMALL_STATE(5202)] = 153943, + [SMALL_STATE(5203)] = 154080, + [SMALL_STATE(5204)] = 154217, + [SMALL_STATE(5205)] = 154316, + [SMALL_STATE(5206)] = 154453, + [SMALL_STATE(5207)] = 154554, + [SMALL_STATE(5208)] = 154691, + [SMALL_STATE(5209)] = 154778, + [SMALL_STATE(5210)] = 154893, + [SMALL_STATE(5211)] = 155002, + [SMALL_STATE(5212)] = 155107, + [SMALL_STATE(5213)] = 155234, + [SMALL_STATE(5214)] = 155363, + [SMALL_STATE(5215)] = 155488, + [SMALL_STATE(5216)] = 155599, + [SMALL_STATE(5217)] = 155722, + [SMALL_STATE(5218)] = 155853, + [SMALL_STATE(5219)] = 155986, + [SMALL_STATE(5220)] = 156085, + [SMALL_STATE(5221)] = 156222, + [SMALL_STATE(5222)] = 156361, + [SMALL_STATE(5223)] = 156498, + [SMALL_STATE(5224)] = 156635, + [SMALL_STATE(5225)] = 156762, + [SMALL_STATE(5226)] = 156899, + [SMALL_STATE(5227)] = 157000, + [SMALL_STATE(5228)] = 157129, + [SMALL_STATE(5229)] = 157254, + [SMALL_STATE(5230)] = 157377, + [SMALL_STATE(5231)] = 157508, + [SMALL_STATE(5232)] = 157595, + [SMALL_STATE(5233)] = 157728, + [SMALL_STATE(5234)] = 157865, + [SMALL_STATE(5235)] = 157964, + [SMALL_STATE(5236)] = 158101, + [SMALL_STATE(5237)] = 158238, + [SMALL_STATE(5238)] = 158345, + [SMALL_STATE(5239)] = 158430, + [SMALL_STATE(5240)] = 158515, + [SMALL_STATE(5241)] = 158652, + [SMALL_STATE(5242)] = 158789, + [SMALL_STATE(5243)] = 158926, + [SMALL_STATE(5244)] = 159063, + [SMALL_STATE(5245)] = 159164, + [SMALL_STATE(5246)] = 159265, + [SMALL_STATE(5247)] = 159402, + [SMALL_STATE(5248)] = 159539, + [SMALL_STATE(5249)] = 159624, + [SMALL_STATE(5250)] = 159709, + [SMALL_STATE(5251)] = 159810, + [SMALL_STATE(5252)] = 159925, + [SMALL_STATE(5253)] = 160024, + [SMALL_STATE(5254)] = 160133, + [SMALL_STATE(5255)] = 160238, + [SMALL_STATE(5256)] = 160349, + [SMALL_STATE(5257)] = 160436, + [SMALL_STATE(5258)] = 160521, + [SMALL_STATE(5259)] = 160608, + [SMALL_STATE(5260)] = 160707, + [SMALL_STATE(5261)] = 160844, + [SMALL_STATE(5262)] = 160943, + [SMALL_STATE(5263)] = 161080, + [SMALL_STATE(5264)] = 161179, + [SMALL_STATE(5265)] = 161278, + [SMALL_STATE(5266)] = 161377, + [SMALL_STATE(5267)] = 161476, + [SMALL_STATE(5268)] = 161563, + [SMALL_STATE(5269)] = 161662, + [SMALL_STATE(5270)] = 161801, + [SMALL_STATE(5271)] = 161902, + [SMALL_STATE(5272)] = 162041, + [SMALL_STATE(5273)] = 162180, + [SMALL_STATE(5274)] = 162319, + [SMALL_STATE(5275)] = 162434, + [SMALL_STATE(5276)] = 162543, + [SMALL_STATE(5277)] = 162648, + [SMALL_STATE(5278)] = 162775, + [SMALL_STATE(5279)] = 162904, + [SMALL_STATE(5280)] = 163029, + [SMALL_STATE(5281)] = 163140, + [SMALL_STATE(5282)] = 163263, + [SMALL_STATE(5283)] = 163394, + [SMALL_STATE(5284)] = 163527, + [SMALL_STATE(5285)] = 163664, + [SMALL_STATE(5286)] = 163763, + [SMALL_STATE(5287)] = 163862, + [SMALL_STATE(5288)] = 163947, + [SMALL_STATE(5289)] = 164034, + [SMALL_STATE(5290)] = 164171, + [SMALL_STATE(5291)] = 164256, + [SMALL_STATE(5292)] = 164355, + [SMALL_STATE(5293)] = 164454, + [SMALL_STATE(5294)] = 164553, + [SMALL_STATE(5295)] = 164652, + [SMALL_STATE(5296)] = 164751, + [SMALL_STATE(5297)] = 164850, + [SMALL_STATE(5298)] = 164949, + [SMALL_STATE(5299)] = 165048, + [SMALL_STATE(5300)] = 165147, + [SMALL_STATE(5301)] = 165284, + [SMALL_STATE(5302)] = 165383, + [SMALL_STATE(5303)] = 165482, + [SMALL_STATE(5304)] = 165581, + [SMALL_STATE(5305)] = 165720, + [SMALL_STATE(5306)] = 165859, + [SMALL_STATE(5307)] = 165998, + [SMALL_STATE(5308)] = 166099, + [SMALL_STATE(5309)] = 166182, + [SMALL_STATE(5310)] = 166265, + [SMALL_STATE(5311)] = 166352, + [SMALL_STATE(5312)] = 166451, + [SMALL_STATE(5313)] = 166550, + [SMALL_STATE(5314)] = 166687, + [SMALL_STATE(5315)] = 166813, + [SMALL_STATE(5316)] = 166897, + [SMALL_STATE(5317)] = 167033, + [SMALL_STATE(5318)] = 167169, + [SMALL_STATE(5319)] = 167305, + [SMALL_STATE(5320)] = 167409, + [SMALL_STATE(5321)] = 167545, + [SMALL_STATE(5322)] = 167681, + [SMALL_STATE(5323)] = 167817, + [SMALL_STATE(5324)] = 167953, + [SMALL_STATE(5325)] = 168089, + [SMALL_STATE(5326)] = 168225, + [SMALL_STATE(5327)] = 168361, + [SMALL_STATE(5328)] = 168497, + [SMALL_STATE(5329)] = 168633, + [SMALL_STATE(5330)] = 168719, + [SMALL_STATE(5331)] = 168855, + [SMALL_STATE(5332)] = 168991, + [SMALL_STATE(5333)] = 169127, + [SMALL_STATE(5334)] = 169263, + [SMALL_STATE(5335)] = 169399, + [SMALL_STATE(5336)] = 169535, + [SMALL_STATE(5337)] = 169671, + [SMALL_STATE(5338)] = 169755, + [SMALL_STATE(5339)] = 169891, + [SMALL_STATE(5340)] = 170027, + [SMALL_STATE(5341)] = 170163, + [SMALL_STATE(5342)] = 170299, + [SMALL_STATE(5343)] = 170425, + [SMALL_STATE(5344)] = 170553, + [SMALL_STATE(5345)] = 170677, + [SMALL_STATE(5346)] = 170799, + [SMALL_STATE(5347)] = 170929, + [SMALL_STATE(5348)] = 171061, + [SMALL_STATE(5349)] = 171197, + [SMALL_STATE(5350)] = 171333, + [SMALL_STATE(5351)] = 171469, + [SMALL_STATE(5352)] = 171605, + [SMALL_STATE(5353)] = 171741, + [SMALL_STATE(5354)] = 171877, + [SMALL_STATE(5355)] = 172013, + [SMALL_STATE(5356)] = 172117, + [SMALL_STATE(5357)] = 172215, + [SMALL_STATE(5358)] = 172351, + [SMALL_STATE(5359)] = 172487, + [SMALL_STATE(5360)] = 172623, + [SMALL_STATE(5361)] = 172759, + [SMALL_STATE(5362)] = 172895, + [SMALL_STATE(5363)] = 173031, + [SMALL_STATE(5364)] = 173167, + [SMALL_STATE(5365)] = 173303, + [SMALL_STATE(5366)] = 173439, + [SMALL_STATE(5367)] = 173575, + [SMALL_STATE(5368)] = 173711, + [SMALL_STATE(5369)] = 173847, + [SMALL_STATE(5370)] = 173961, + [SMALL_STATE(5371)] = 174097, + [SMALL_STATE(5372)] = 174205, + [SMALL_STATE(5373)] = 174309, + [SMALL_STATE(5374)] = 174435, + [SMALL_STATE(5375)] = 174521, + [SMALL_STATE(5376)] = 174649, + [SMALL_STATE(5377)] = 174773, + [SMALL_STATE(5378)] = 174909, + [SMALL_STATE(5379)] = 175019, + [SMALL_STATE(5380)] = 175141, + [SMALL_STATE(5381)] = 175277, + [SMALL_STATE(5382)] = 175413, + [SMALL_STATE(5383)] = 175513, + [SMALL_STATE(5384)] = 175643, + [SMALL_STATE(5385)] = 175775, + [SMALL_STATE(5386)] = 175911, + [SMALL_STATE(5387)] = 176047, + [SMALL_STATE(5388)] = 176183, + [SMALL_STATE(5389)] = 176319, + [SMALL_STATE(5390)] = 176403, + [SMALL_STATE(5391)] = 176487, + [SMALL_STATE(5392)] = 176573, + [SMALL_STATE(5393)] = 176709, + [SMALL_STATE(5394)] = 176845, + [SMALL_STATE(5395)] = 176929, + [SMALL_STATE(5396)] = 177065, + [SMALL_STATE(5397)] = 177201, + [SMALL_STATE(5398)] = 177289, + [SMALL_STATE(5399)] = 177425, + [SMALL_STATE(5400)] = 177561, + [SMALL_STATE(5401)] = 177697, + [SMALL_STATE(5402)] = 177781, + [SMALL_STATE(5403)] = 177917, + [SMALL_STATE(5404)] = 178053, + [SMALL_STATE(5405)] = 178189, + [SMALL_STATE(5406)] = 178325, + [SMALL_STATE(5407)] = 178461, + [SMALL_STATE(5408)] = 178575, + [SMALL_STATE(5409)] = 178711, + [SMALL_STATE(5410)] = 178847, + [SMALL_STATE(5411)] = 178955, + [SMALL_STATE(5412)] = 179091, + [SMALL_STATE(5413)] = 179227, + [SMALL_STATE(5414)] = 179363, + [SMALL_STATE(5415)] = 179467, + [SMALL_STATE(5416)] = 179581, + [SMALL_STATE(5417)] = 179709, + [SMALL_STATE(5418)] = 179833, + [SMALL_STATE(5419)] = 179943, + [SMALL_STATE(5420)] = 180079, + [SMALL_STATE(5421)] = 180215, + [SMALL_STATE(5422)] = 180351, + [SMALL_STATE(5423)] = 180487, + [SMALL_STATE(5424)] = 180623, + [SMALL_STATE(5425)] = 180759, + [SMALL_STATE(5426)] = 180895, + [SMALL_STATE(5427)] = 181017, + [SMALL_STATE(5428)] = 181153, + [SMALL_STATE(5429)] = 181253, + [SMALL_STATE(5430)] = 181383, + [SMALL_STATE(5431)] = 181515, + [SMALL_STATE(5432)] = 181651, + [SMALL_STATE(5433)] = 181787, + [SMALL_STATE(5434)] = 181873, + [SMALL_STATE(5435)] = 182009, + [SMALL_STATE(5436)] = 182145, + [SMALL_STATE(5437)] = 182231, + [SMALL_STATE(5438)] = 182367, + [SMALL_STATE(5439)] = 182503, + [SMALL_STATE(5440)] = 182607, + [SMALL_STATE(5441)] = 182743, + [SMALL_STATE(5442)] = 182879, + [SMALL_STATE(5443)] = 183015, + [SMALL_STATE(5444)] = 183151, + [SMALL_STATE(5445)] = 183287, + [SMALL_STATE(5446)] = 183423, + [SMALL_STATE(5447)] = 183549, + [SMALL_STATE(5448)] = 183677, + [SMALL_STATE(5449)] = 183813, + [SMALL_STATE(5450)] = 183949, + [SMALL_STATE(5451)] = 184073, + [SMALL_STATE(5452)] = 184209, + [SMALL_STATE(5453)] = 184345, + [SMALL_STATE(5454)] = 184481, + [SMALL_STATE(5455)] = 184617, + [SMALL_STATE(5456)] = 184753, + [SMALL_STATE(5457)] = 184889, + [SMALL_STATE(5458)] = 185025, + [SMALL_STATE(5459)] = 185111, + [SMALL_STATE(5460)] = 185247, + [SMALL_STATE(5461)] = 185383, + [SMALL_STATE(5462)] = 185469, + [SMALL_STATE(5463)] = 185555, + [SMALL_STATE(5464)] = 185691, + [SMALL_STATE(5465)] = 185801, + [SMALL_STATE(5466)] = 185937, + [SMALL_STATE(5467)] = 186023, + [SMALL_STATE(5468)] = 186107, + [SMALL_STATE(5469)] = 186193, + [SMALL_STATE(5470)] = 186329, + [SMALL_STATE(5471)] = 186465, + [SMALL_STATE(5472)] = 186587, + [SMALL_STATE(5473)] = 186687, + [SMALL_STATE(5474)] = 186817, + [SMALL_STATE(5475)] = 186949, + [SMALL_STATE(5476)] = 187085, + [SMALL_STATE(5477)] = 187221, + [SMALL_STATE(5478)] = 187357, + [SMALL_STATE(5479)] = 187493, + [SMALL_STATE(5480)] = 187629, + [SMALL_STATE(5481)] = 187719, + [SMALL_STATE(5482)] = 187827, + [SMALL_STATE(5483)] = 187963, + [SMALL_STATE(5484)] = 188063, + [SMALL_STATE(5485)] = 188199, + [SMALL_STATE(5486)] = 188335, + [SMALL_STATE(5487)] = 188471, + [SMALL_STATE(5488)] = 188557, + [SMALL_STATE(5489)] = 188693, + [SMALL_STATE(5490)] = 188829, + [SMALL_STATE(5491)] = 188913, + [SMALL_STATE(5492)] = 188999, + [SMALL_STATE(5493)] = 189135, + [SMALL_STATE(5494)] = 189271, + [SMALL_STATE(5495)] = 189407, + [SMALL_STATE(5496)] = 189543, + [SMALL_STATE(5497)] = 189679, + [SMALL_STATE(5498)] = 189815, + [SMALL_STATE(5499)] = 189915, + [SMALL_STATE(5500)] = 190051, + [SMALL_STATE(5501)] = 190187, + [SMALL_STATE(5502)] = 190323, + [SMALL_STATE(5503)] = 190459, + [SMALL_STATE(5504)] = 190595, + [SMALL_STATE(5505)] = 190679, + [SMALL_STATE(5506)] = 190815, + [SMALL_STATE(5507)] = 190951, + [SMALL_STATE(5508)] = 191037, + [SMALL_STATE(5509)] = 191173, + [SMALL_STATE(5510)] = 191309, + [SMALL_STATE(5511)] = 191395, + [SMALL_STATE(5512)] = 191531, + [SMALL_STATE(5513)] = 191667, + [SMALL_STATE(5514)] = 191767, + [SMALL_STATE(5515)] = 191903, + [SMALL_STATE(5516)] = 191989, + [SMALL_STATE(5517)] = 192125, + [SMALL_STATE(5518)] = 192211, + [SMALL_STATE(5519)] = 192347, + [SMALL_STATE(5520)] = 192447, + [SMALL_STATE(5521)] = 192583, + [SMALL_STATE(5522)] = 192719, + [SMALL_STATE(5523)] = 192855, + [SMALL_STATE(5524)] = 192991, + [SMALL_STATE(5525)] = 193127, + [SMALL_STATE(5526)] = 193227, + [SMALL_STATE(5527)] = 193363, + [SMALL_STATE(5528)] = 193499, + [SMALL_STATE(5529)] = 193591, + [SMALL_STATE(5530)] = 193727, + [SMALL_STATE(5531)] = 193863, + [SMALL_STATE(5532)] = 193999, + [SMALL_STATE(5533)] = 194135, + [SMALL_STATE(5534)] = 194271, + [SMALL_STATE(5535)] = 194407, + [SMALL_STATE(5536)] = 194543, + [SMALL_STATE(5537)] = 194627, + [SMALL_STATE(5538)] = 194763, + [SMALL_STATE(5539)] = 194899, + [SMALL_STATE(5540)] = 195035, + [SMALL_STATE(5541)] = 195171, + [SMALL_STATE(5542)] = 195307, + [SMALL_STATE(5543)] = 195443, + [SMALL_STATE(5544)] = 195527, + [SMALL_STATE(5545)] = 195663, + [SMALL_STATE(5546)] = 195777, + [SMALL_STATE(5547)] = 195885, + [SMALL_STATE(5548)] = 195989, + [SMALL_STATE(5549)] = 196099, + [SMALL_STATE(5550)] = 196199, + [SMALL_STATE(5551)] = 196281, + [SMALL_STATE(5552)] = 196417, + [SMALL_STATE(5553)] = 196553, + [SMALL_STATE(5554)] = 196635, + [SMALL_STATE(5555)] = 196719, + [SMALL_STATE(5556)] = 196855, + [SMALL_STATE(5557)] = 196991, + [SMALL_STATE(5558)] = 197127, + [SMALL_STATE(5559)] = 197263, + [SMALL_STATE(5560)] = 197399, + [SMALL_STATE(5561)] = 197535, + [SMALL_STATE(5562)] = 197671, + [SMALL_STATE(5563)] = 197807, + [SMALL_STATE(5564)] = 197943, + [SMALL_STATE(5565)] = 198079, + [SMALL_STATE(5566)] = 198161, + [SMALL_STATE(5567)] = 198297, + [SMALL_STATE(5568)] = 198411, + [SMALL_STATE(5569)] = 198547, + [SMALL_STATE(5570)] = 198683, + [SMALL_STATE(5571)] = 198791, + [SMALL_STATE(5572)] = 198895, + [SMALL_STATE(5573)] = 199021, + [SMALL_STATE(5574)] = 199149, + [SMALL_STATE(5575)] = 199273, + [SMALL_STATE(5576)] = 199383, + [SMALL_STATE(5577)] = 199505, + [SMALL_STATE(5578)] = 199605, + [SMALL_STATE(5579)] = 199735, + [SMALL_STATE(5580)] = 199871, + [SMALL_STATE(5581)] = 200003, + [SMALL_STATE(5582)] = 200139, + [SMALL_STATE(5583)] = 200275, + [SMALL_STATE(5584)] = 200357, + [SMALL_STATE(5585)] = 200493, + [SMALL_STATE(5586)] = 200629, + [SMALL_STATE(5587)] = 200711, + [SMALL_STATE(5588)] = 200847, + [SMALL_STATE(5589)] = 200983, + [SMALL_STATE(5590)] = 201119, + [SMALL_STATE(5591)] = 201255, + [SMALL_STATE(5592)] = 201391, + [SMALL_STATE(5593)] = 201527, + [SMALL_STATE(5594)] = 201613, + [SMALL_STATE(5595)] = 201699, + [SMALL_STATE(5596)] = 201783, + [SMALL_STATE(5597)] = 201869, + [SMALL_STATE(5598)] = 202005, + [SMALL_STATE(5599)] = 202141, + [SMALL_STATE(5600)] = 202277, + [SMALL_STATE(5601)] = 202413, + [SMALL_STATE(5602)] = 202499, + [SMALL_STATE(5603)] = 202585, + [SMALL_STATE(5604)] = 202669, + [SMALL_STATE(5605)] = 202755, + [SMALL_STATE(5606)] = 202841, + [SMALL_STATE(5607)] = 202977, + [SMALL_STATE(5608)] = 203067, + [SMALL_STATE(5609)] = 203149, + [SMALL_STATE(5610)] = 203235, + [SMALL_STATE(5611)] = 203321, + [SMALL_STATE(5612)] = 203405, + [SMALL_STATE(5613)] = 203491, + [SMALL_STATE(5614)] = 203575, + [SMALL_STATE(5615)] = 203661, + [SMALL_STATE(5616)] = 203797, + [SMALL_STATE(5617)] = 203881, + [SMALL_STATE(5618)] = 204017, + [SMALL_STATE(5619)] = 204153, + [SMALL_STATE(5620)] = 204239, + [SMALL_STATE(5621)] = 204375, + [SMALL_STATE(5622)] = 204461, + [SMALL_STATE(5623)] = 204597, + [SMALL_STATE(5624)] = 204733, + [SMALL_STATE(5625)] = 204869, + [SMALL_STATE(5626)] = 205005, + [SMALL_STATE(5627)] = 205141, + [SMALL_STATE(5628)] = 205255, + [SMALL_STATE(5629)] = 205391, + [SMALL_STATE(5630)] = 205499, + [SMALL_STATE(5631)] = 205603, + [SMALL_STATE(5632)] = 205729, + [SMALL_STATE(5633)] = 205857, + [SMALL_STATE(5634)] = 205981, + [SMALL_STATE(5635)] = 206085, + [SMALL_STATE(5636)] = 206221, + [SMALL_STATE(5637)] = 206321, + [SMALL_STATE(5638)] = 206457, + [SMALL_STATE(5639)] = 206567, + [SMALL_STATE(5640)] = 206703, + [SMALL_STATE(5641)] = 206789, + [SMALL_STATE(5642)] = 206875, + [SMALL_STATE(5643)] = 206959, + [SMALL_STATE(5644)] = 207045, + [SMALL_STATE(5645)] = 207167, + [SMALL_STATE(5646)] = 207267, + [SMALL_STATE(5647)] = 207397, + [SMALL_STATE(5648)] = 207529, + [SMALL_STATE(5649)] = 207665, + [SMALL_STATE(5650)] = 207801, + [SMALL_STATE(5651)] = 207937, + [SMALL_STATE(5652)] = 208070, + [SMALL_STATE(5653)] = 208203, + [SMALL_STATE(5654)] = 208336, + [SMALL_STATE(5655)] = 208469, + [SMALL_STATE(5656)] = 208602, + [SMALL_STATE(5657)] = 208735, + [SMALL_STATE(5658)] = 208868, + [SMALL_STATE(5659)] = 209001, + [SMALL_STATE(5660)] = 209134, + [SMALL_STATE(5661)] = 209267, + [SMALL_STATE(5662)] = 209400, + [SMALL_STATE(5663)] = 209533, + [SMALL_STATE(5664)] = 209624, + [SMALL_STATE(5665)] = 209757, + [SMALL_STATE(5666)] = 209890, + [SMALL_STATE(5667)] = 209987, + [SMALL_STATE(5668)] = 210088, + [SMALL_STATE(5669)] = 210221, + [SMALL_STATE(5670)] = 210354, + [SMALL_STATE(5671)] = 210487, + [SMALL_STATE(5672)] = 210620, + [SMALL_STATE(5673)] = 210711, + [SMALL_STATE(5674)] = 210844, + [SMALL_STATE(5675)] = 210941, + [SMALL_STATE(5676)] = 211032, + [SMALL_STATE(5677)] = 211123, + [SMALL_STATE(5678)] = 211256, + [SMALL_STATE(5679)] = 211389, + [SMALL_STATE(5680)] = 211522, + [SMALL_STATE(5681)] = 211655, + [SMALL_STATE(5682)] = 211788, + [SMALL_STATE(5683)] = 211921, + [SMALL_STATE(5684)] = 212054, + [SMALL_STATE(5685)] = 212187, + [SMALL_STATE(5686)] = 212278, + [SMALL_STATE(5687)] = 212411, + [SMALL_STATE(5688)] = 212544, + [SMALL_STATE(5689)] = 212637, + [SMALL_STATE(5690)] = 212738, + [SMALL_STATE(5691)] = 212871, + [SMALL_STATE(5692)] = 212968, + [SMALL_STATE(5693)] = 213065, + [SMALL_STATE(5694)] = 213154, + [SMALL_STATE(5695)] = 213255, + [SMALL_STATE(5696)] = 213346, + [SMALL_STATE(5697)] = 213479, + [SMALL_STATE(5698)] = 213612, + [SMALL_STATE(5699)] = 213695, + [SMALL_STATE(5700)] = 213828, + [SMALL_STATE(5701)] = 213924, + [SMALL_STATE(5702)] = 214020, + [SMALL_STATE(5703)] = 214118, + [SMALL_STATE(5704)] = 214216, + [SMALL_STATE(5705)] = 214306, + [SMALL_STATE(5706)] = 214396, + [SMALL_STATE(5707)] = 214486, + [SMALL_STATE(5708)] = 214584, + [SMALL_STATE(5709)] = 214666, + [SMALL_STATE(5710)] = 214760, + [SMALL_STATE(5711)] = 214850, + [SMALL_STATE(5712)] = 214932, + [SMALL_STATE(5713)] = 215030, + [SMALL_STATE(5714)] = 215128, + [SMALL_STATE(5715)] = 215224, + [SMALL_STATE(5716)] = 215322, + [SMALL_STATE(5717)] = 215412, + [SMALL_STATE(5718)] = 215502, + [SMALL_STATE(5719)] = 215600, + [SMALL_STATE(5720)] = 215690, + [SMALL_STATE(5721)] = 215780, + [SMALL_STATE(5722)] = 215870, + [SMALL_STATE(5723)] = 215965, + [SMALL_STATE(5724)] = 216060, + [SMALL_STATE(5725)] = 216159, + [SMALL_STATE(5726)] = 216252, + [SMALL_STATE(5727)] = 216347, + [SMALL_STATE(5728)] = 216440, + [SMALL_STATE(5729)] = 216533, + [SMALL_STATE(5730)] = 216624, + [SMALL_STATE(5731)] = 216719, + [SMALL_STATE(5732)] = 216812, + [SMALL_STATE(5733)] = 216899, + [SMALL_STATE(5734)] = 216992, + [SMALL_STATE(5735)] = 217087, + [SMALL_STATE(5736)] = 217182, + [SMALL_STATE(5737)] = 217269, + [SMALL_STATE(5738)] = 217364, + [SMALL_STATE(5739)] = 217449, + [SMALL_STATE(5740)] = 217530, + [SMALL_STATE(5741)] = 217617, + [SMALL_STATE(5742)] = 217708, + [SMALL_STATE(5743)] = 217803, + [SMALL_STATE(5744)] = 217900, + [SMALL_STATE(5745)] = 217995, + [SMALL_STATE(5746)] = 218086, + [SMALL_STATE(5747)] = 218177, + [SMALL_STATE(5748)] = 218270, + [SMALL_STATE(5749)] = 218365, + [SMALL_STATE(5750)] = 218457, + [SMALL_STATE(5751)] = 218549, + [SMALL_STATE(5752)] = 218641, + [SMALL_STATE(5753)] = 218733, + [SMALL_STATE(5754)] = 218813, + [SMALL_STATE(5755)] = 218905, + [SMALL_STATE(5756)] = 218997, + [SMALL_STATE(5757)] = 219089, + [SMALL_STATE(5758)] = 219181, + [SMALL_STATE(5759)] = 219273, + [SMALL_STATE(5760)] = 219365, + [SMALL_STATE(5761)] = 219457, + [SMALL_STATE(5762)] = 219549, + [SMALL_STATE(5763)] = 219641, + [SMALL_STATE(5764)] = 219733, + [SMALL_STATE(5765)] = 219819, + [SMALL_STATE(5766)] = 219911, + [SMALL_STATE(5767)] = 220003, + [SMALL_STATE(5768)] = 220095, + [SMALL_STATE(5769)] = 220187, + [SMALL_STATE(5770)] = 220279, + [SMALL_STATE(5771)] = 220359, + [SMALL_STATE(5772)] = 220451, + [SMALL_STATE(5773)] = 220540, + [SMALL_STATE(5774)] = 220625, + [SMALL_STATE(5775)] = 220714, + [SMALL_STATE(5776)] = 220795, + [SMALL_STATE(5777)] = 220886, + [SMALL_STATE(5778)] = 220975, + [SMALL_STATE(5779)] = 221064, + [SMALL_STATE(5780)] = 221153, + [SMALL_STATE(5781)] = 221242, + [SMALL_STATE(5782)] = 221331, + [SMALL_STATE(5783)] = 221408, + [SMALL_STATE(5784)] = 221499, + [SMALL_STATE(5785)] = 221588, + [SMALL_STATE(5786)] = 221673, + [SMALL_STATE(5787)] = 221762, + [SMALL_STATE(5788)] = 221845, + [SMALL_STATE(5789)] = 221931, + [SMALL_STATE(5790)] = 222021, + [SMALL_STATE(5791)] = 222111, + [SMALL_STATE(5792)] = 222187, + [SMALL_STATE(5793)] = 222277, + [SMALL_STATE(5794)] = 222367, + [SMALL_STATE(5795)] = 222457, + [SMALL_STATE(5796)] = 222547, + [SMALL_STATE(5797)] = 222637, + [SMALL_STATE(5798)] = 222723, + [SMALL_STATE(5799)] = 222813, + [SMALL_STATE(5800)] = 222903, + [SMALL_STATE(5801)] = 222993, + [SMALL_STATE(5802)] = 223083, + [SMALL_STATE(5803)] = 223173, + [SMALL_STATE(5804)] = 223257, + [SMALL_STATE(5805)] = 223347, + [SMALL_STATE(5806)] = 223437, + [SMALL_STATE(5807)] = 223527, + [SMALL_STATE(5808)] = 223617, + [SMALL_STATE(5809)] = 223707, + [SMALL_STATE(5810)] = 223797, + [SMALL_STATE(5811)] = 223887, + [SMALL_STATE(5812)] = 223977, + [SMALL_STATE(5813)] = 224067, + [SMALL_STATE(5814)] = 224157, + [SMALL_STATE(5815)] = 224247, + [SMALL_STATE(5816)] = 224337, + [SMALL_STATE(5817)] = 224427, + [SMALL_STATE(5818)] = 224517, + [SMALL_STATE(5819)] = 224595, + [SMALL_STATE(5820)] = 224685, + [SMALL_STATE(5821)] = 224771, + [SMALL_STATE(5822)] = 224861, + [SMALL_STATE(5823)] = 224951, + [SMALL_STATE(5824)] = 225041, + [SMALL_STATE(5825)] = 225131, + [SMALL_STATE(5826)] = 225207, + [SMALL_STATE(5827)] = 225297, + [SMALL_STATE(5828)] = 225387, + [SMALL_STATE(5829)] = 225465, + [SMALL_STATE(5830)] = 225555, + [SMALL_STATE(5831)] = 225645, + [SMALL_STATE(5832)] = 225721, + [SMALL_STATE(5833)] = 225811, + [SMALL_STATE(5834)] = 225901, + [SMALL_STATE(5835)] = 225991, + [SMALL_STATE(5836)] = 226081, + [SMALL_STATE(5837)] = 226171, + [SMALL_STATE(5838)] = 226261, + [SMALL_STATE(5839)] = 226351, + [SMALL_STATE(5840)] = 226441, + [SMALL_STATE(5841)] = 226531, + [SMALL_STATE(5842)] = 226621, + [SMALL_STATE(5843)] = 226711, + [SMALL_STATE(5844)] = 226801, + [SMALL_STATE(5845)] = 226891, + [SMALL_STATE(5846)] = 226981, + [SMALL_STATE(5847)] = 227067, + [SMALL_STATE(5848)] = 227157, + [SMALL_STATE(5849)] = 227247, + [SMALL_STATE(5850)] = 227337, + [SMALL_STATE(5851)] = 227421, + [SMALL_STATE(5852)] = 227511, + [SMALL_STATE(5853)] = 227587, + [SMALL_STATE(5854)] = 227677, + [SMALL_STATE(5855)] = 227767, + [SMALL_STATE(5856)] = 227857, + [SMALL_STATE(5857)] = 227947, + [SMALL_STATE(5858)] = 228037, + [SMALL_STATE(5859)] = 228127, + [SMALL_STATE(5860)] = 228213, + [SMALL_STATE(5861)] = 228298, + [SMALL_STATE(5862)] = 228381, + [SMALL_STATE(5863)] = 228466, + [SMALL_STATE(5864)] = 228549, + [SMALL_STATE(5865)] = 228634, + [SMALL_STATE(5866)] = 228719, + [SMALL_STATE(5867)] = 228800, + [SMALL_STATE(5868)] = 228885, + [SMALL_STATE(5869)] = 228970, + [SMALL_STATE(5870)] = 229055, + [SMALL_STATE(5871)] = 229140, + [SMALL_STATE(5872)] = 229227, + [SMALL_STATE(5873)] = 229312, + [SMALL_STATE(5874)] = 229397, + [SMALL_STATE(5875)] = 229478, + [SMALL_STATE(5876)] = 229563, + [SMALL_STATE(5877)] = 229650, + [SMALL_STATE(5878)] = 229735, + [SMALL_STATE(5879)] = 229810, + [SMALL_STATE(5880)] = 229895, + [SMALL_STATE(5881)] = 229978, + [SMALL_STATE(5882)] = 230063, + [SMALL_STATE(5883)] = 230148, + [SMALL_STATE(5884)] = 230233, + [SMALL_STATE(5885)] = 230320, + [SMALL_STATE(5886)] = 230405, + [SMALL_STATE(5887)] = 230480, + [SMALL_STATE(5888)] = 230565, + [SMALL_STATE(5889)] = 230650, + [SMALL_STATE(5890)] = 230735, + [SMALL_STATE(5891)] = 230820, + [SMALL_STATE(5892)] = 230903, + [SMALL_STATE(5893)] = 230990, + [SMALL_STATE(5894)] = 231075, + [SMALL_STATE(5895)] = 231160, + [SMALL_STATE(5896)] = 231245, + [SMALL_STATE(5897)] = 231330, + [SMALL_STATE(5898)] = 231415, + [SMALL_STATE(5899)] = 231490, + [SMALL_STATE(5900)] = 231575, + [SMALL_STATE(5901)] = 231660, + [SMALL_STATE(5902)] = 231744, + [SMALL_STATE(5903)] = 231828, + [SMALL_STATE(5904)] = 231912, + [SMALL_STATE(5905)] = 231996, + [SMALL_STATE(5906)] = 232080, + [SMALL_STATE(5907)] = 232164, + [SMALL_STATE(5908)] = 232248, + [SMALL_STATE(5909)] = 232332, + [SMALL_STATE(5910)] = 232416, + [SMALL_STATE(5911)] = 232500, + [SMALL_STATE(5912)] = 232584, + [SMALL_STATE(5913)] = 232668, + [SMALL_STATE(5914)] = 232752, + [SMALL_STATE(5915)] = 232825, + [SMALL_STATE(5916)] = 232906, + [SMALL_STATE(5917)] = 232987, + [SMALL_STATE(5918)] = 233068, + [SMALL_STATE(5919)] = 233149, + [SMALL_STATE(5920)] = 233230, + [SMALL_STATE(5921)] = 233311, + [SMALL_STATE(5922)] = 233392, + [SMALL_STATE(5923)] = 233473, + [SMALL_STATE(5924)] = 233554, + [SMALL_STATE(5925)] = 233635, + [SMALL_STATE(5926)] = 233716, + [SMALL_STATE(5927)] = 233797, + [SMALL_STATE(5928)] = 233878, + [SMALL_STATE(5929)] = 233959, + [SMALL_STATE(5930)] = 234040, + [SMALL_STATE(5931)] = 234121, + [SMALL_STATE(5932)] = 234202, + [SMALL_STATE(5933)] = 234283, + [SMALL_STATE(5934)] = 234364, + [SMALL_STATE(5935)] = 234445, + [SMALL_STATE(5936)] = 234526, + [SMALL_STATE(5937)] = 234607, + [SMALL_STATE(5938)] = 234688, + [SMALL_STATE(5939)] = 234769, + [SMALL_STATE(5940)] = 234850, + [SMALL_STATE(5941)] = 234931, + [SMALL_STATE(5942)] = 235012, + [SMALL_STATE(5943)] = 235093, + [SMALL_STATE(5944)] = 235174, + [SMALL_STATE(5945)] = 235255, + [SMALL_STATE(5946)] = 235336, + [SMALL_STATE(5947)] = 235417, + [SMALL_STATE(5948)] = 235498, + [SMALL_STATE(5949)] = 235579, + [SMALL_STATE(5950)] = 235660, + [SMALL_STATE(5951)] = 235741, + [SMALL_STATE(5952)] = 235822, + [SMALL_STATE(5953)] = 235903, + [SMALL_STATE(5954)] = 235984, + [SMALL_STATE(5955)] = 236065, + [SMALL_STATE(5956)] = 236146, + [SMALL_STATE(5957)] = 236227, + [SMALL_STATE(5958)] = 236308, + [SMALL_STATE(5959)] = 236389, + [SMALL_STATE(5960)] = 236470, + [SMALL_STATE(5961)] = 236549, + [SMALL_STATE(5962)] = 236622, + [SMALL_STATE(5963)] = 236703, + [SMALL_STATE(5964)] = 236784, + [SMALL_STATE(5965)] = 236865, + [SMALL_STATE(5966)] = 236946, + [SMALL_STATE(5967)] = 237021, + [SMALL_STATE(5968)] = 237094, + [SMALL_STATE(5969)] = 237175, + [SMALL_STATE(5970)] = 237256, + [SMALL_STATE(5971)] = 237337, + [SMALL_STATE(5972)] = 237418, + [SMALL_STATE(5973)] = 237499, + [SMALL_STATE(5974)] = 237580, + [SMALL_STATE(5975)] = 237661, + [SMALL_STATE(5976)] = 237742, + [SMALL_STATE(5977)] = 237823, + [SMALL_STATE(5978)] = 237904, + [SMALL_STATE(5979)] = 237985, + [SMALL_STATE(5980)] = 238058, + [SMALL_STATE(5981)] = 238137, + [SMALL_STATE(5982)] = 238218, + [SMALL_STATE(5983)] = 238299, + [SMALL_STATE(5984)] = 238380, + [SMALL_STATE(5985)] = 238461, + [SMALL_STATE(5986)] = 238542, + [SMALL_STATE(5987)] = 238623, + [SMALL_STATE(5988)] = 238704, + [SMALL_STATE(5989)] = 238783, + [SMALL_STATE(5990)] = 238864, + [SMALL_STATE(5991)] = 238943, + [SMALL_STATE(5992)] = 239024, + [SMALL_STATE(5993)] = 239105, + [SMALL_STATE(5994)] = 239186, + [SMALL_STATE(5995)] = 239267, + [SMALL_STATE(5996)] = 239348, + [SMALL_STATE(5997)] = 239429, + [SMALL_STATE(5998)] = 239510, + [SMALL_STATE(5999)] = 239591, + [SMALL_STATE(6000)] = 239672, + [SMALL_STATE(6001)] = 239753, + [SMALL_STATE(6002)] = 239834, + [SMALL_STATE(6003)] = 239915, + [SMALL_STATE(6004)] = 239996, + [SMALL_STATE(6005)] = 240077, + [SMALL_STATE(6006)] = 240158, + [SMALL_STATE(6007)] = 240239, + [SMALL_STATE(6008)] = 240320, + [SMALL_STATE(6009)] = 240401, + [SMALL_STATE(6010)] = 240482, + [SMALL_STATE(6011)] = 240563, + [SMALL_STATE(6012)] = 240644, + [SMALL_STATE(6013)] = 240725, + [SMALL_STATE(6014)] = 240806, + [SMALL_STATE(6015)] = 240887, + [SMALL_STATE(6016)] = 240968, + [SMALL_STATE(6017)] = 241049, + [SMALL_STATE(6018)] = 241130, + [SMALL_STATE(6019)] = 241203, + [SMALL_STATE(6020)] = 241284, + [SMALL_STATE(6021)] = 241357, + [SMALL_STATE(6022)] = 241438, + [SMALL_STATE(6023)] = 241519, + [SMALL_STATE(6024)] = 241598, + [SMALL_STATE(6025)] = 241677, + [SMALL_STATE(6026)] = 241758, + [SMALL_STATE(6027)] = 241839, + [SMALL_STATE(6028)] = 241920, + [SMALL_STATE(6029)] = 242001, + [SMALL_STATE(6030)] = 242082, + [SMALL_STATE(6031)] = 242163, + [SMALL_STATE(6032)] = 242242, + [SMALL_STATE(6033)] = 242323, + [SMALL_STATE(6034)] = 242404, + [SMALL_STATE(6035)] = 242485, + [SMALL_STATE(6036)] = 242566, + [SMALL_STATE(6037)] = 242647, + [SMALL_STATE(6038)] = 242728, + [SMALL_STATE(6039)] = 242809, + [SMALL_STATE(6040)] = 242890, + [SMALL_STATE(6041)] = 242971, + [SMALL_STATE(6042)] = 243050, + [SMALL_STATE(6043)] = 243131, + [SMALL_STATE(6044)] = 243212, + [SMALL_STATE(6045)] = 243293, + [SMALL_STATE(6046)] = 243374, + [SMALL_STATE(6047)] = 243455, + [SMALL_STATE(6048)] = 243533, + [SMALL_STATE(6049)] = 243611, + [SMALL_STATE(6050)] = 243689, + [SMALL_STATE(6051)] = 243767, + [SMALL_STATE(6052)] = 243839, + [SMALL_STATE(6053)] = 243913, + [SMALL_STATE(6054)] = 243991, + [SMALL_STATE(6055)] = 244066, + [SMALL_STATE(6056)] = 244141, + [SMALL_STATE(6057)] = 244216, + [SMALL_STATE(6058)] = 244291, + [SMALL_STATE(6059)] = 244366, + [SMALL_STATE(6060)] = 244441, + [SMALL_STATE(6061)] = 244516, + [SMALL_STATE(6062)] = 244591, + [SMALL_STATE(6063)] = 244666, + [SMALL_STATE(6064)] = 244741, + [SMALL_STATE(6065)] = 244816, + [SMALL_STATE(6066)] = 244891, + [SMALL_STATE(6067)] = 244966, + [SMALL_STATE(6068)] = 245041, + [SMALL_STATE(6069)] = 245116, + [SMALL_STATE(6070)] = 245191, + [SMALL_STATE(6071)] = 245266, + [SMALL_STATE(6072)] = 245341, + [SMALL_STATE(6073)] = 245416, + [SMALL_STATE(6074)] = 245491, + [SMALL_STATE(6075)] = 245566, + [SMALL_STATE(6076)] = 245641, + [SMALL_STATE(6077)] = 245716, + [SMALL_STATE(6078)] = 245791, + [SMALL_STATE(6079)] = 245860, + [SMALL_STATE(6080)] = 245935, + [SMALL_STATE(6081)] = 246010, + [SMALL_STATE(6082)] = 246085, + [SMALL_STATE(6083)] = 246160, + [SMALL_STATE(6084)] = 246235, + [SMALL_STATE(6085)] = 246310, + [SMALL_STATE(6086)] = 246385, + [SMALL_STATE(6087)] = 246460, + [SMALL_STATE(6088)] = 246535, + [SMALL_STATE(6089)] = 246610, + [SMALL_STATE(6090)] = 246685, + [SMALL_STATE(6091)] = 246760, + [SMALL_STATE(6092)] = 246835, + [SMALL_STATE(6093)] = 246910, + [SMALL_STATE(6094)] = 246985, + [SMALL_STATE(6095)] = 247060, + [SMALL_STATE(6096)] = 247135, + [SMALL_STATE(6097)] = 247210, + [SMALL_STATE(6098)] = 247285, + [SMALL_STATE(6099)] = 247360, + [SMALL_STATE(6100)] = 247435, + [SMALL_STATE(6101)] = 247510, + [SMALL_STATE(6102)] = 247585, + [SMALL_STATE(6103)] = 247660, + [SMALL_STATE(6104)] = 247735, + [SMALL_STATE(6105)] = 247810, + [SMALL_STATE(6106)] = 247885, + [SMALL_STATE(6107)] = 247960, + [SMALL_STATE(6108)] = 248035, + [SMALL_STATE(6109)] = 248110, + [SMALL_STATE(6110)] = 248185, + [SMALL_STATE(6111)] = 248260, + [SMALL_STATE(6112)] = 248335, + [SMALL_STATE(6113)] = 248410, + [SMALL_STATE(6114)] = 248485, + [SMALL_STATE(6115)] = 248560, + [SMALL_STATE(6116)] = 248632, + [SMALL_STATE(6117)] = 248704, + [SMALL_STATE(6118)] = 248776, + [SMALL_STATE(6119)] = 248848, + [SMALL_STATE(6120)] = 248920, + [SMALL_STATE(6121)] = 248992, + [SMALL_STATE(6122)] = 249061, + [SMALL_STATE(6123)] = 249130, + [SMALL_STATE(6124)] = 249199, + [SMALL_STATE(6125)] = 249266, + [SMALL_STATE(6126)] = 249335, + [SMALL_STATE(6127)] = 249404, + [SMALL_STATE(6128)] = 249473, + [SMALL_STATE(6129)] = 249559, + [SMALL_STATE(6130)] = 249645, + [SMALL_STATE(6131)] = 249731, + [SMALL_STATE(6132)] = 249817, + [SMALL_STATE(6133)] = 249903, + [SMALL_STATE(6134)] = 249989, + [SMALL_STATE(6135)] = 250075, + [SMALL_STATE(6136)] = 250161, + [SMALL_STATE(6137)] = 250247, + [SMALL_STATE(6138)] = 250333, + [SMALL_STATE(6139)] = 250419, + [SMALL_STATE(6140)] = 250505, + [SMALL_STATE(6141)] = 250591, + [SMALL_STATE(6142)] = 250677, + [SMALL_STATE(6143)] = 250763, + [SMALL_STATE(6144)] = 250849, + [SMALL_STATE(6145)] = 250935, + [SMALL_STATE(6146)] = 251021, + [SMALL_STATE(6147)] = 251107, + [SMALL_STATE(6148)] = 251193, + [SMALL_STATE(6149)] = 251279, + [SMALL_STATE(6150)] = 251365, + [SMALL_STATE(6151)] = 251451, + [SMALL_STATE(6152)] = 251537, + [SMALL_STATE(6153)] = 251623, + [SMALL_STATE(6154)] = 251709, + [SMALL_STATE(6155)] = 251795, + [SMALL_STATE(6156)] = 251881, + [SMALL_STATE(6157)] = 251967, + [SMALL_STATE(6158)] = 252053, + [SMALL_STATE(6159)] = 252139, + [SMALL_STATE(6160)] = 252225, + [SMALL_STATE(6161)] = 252311, + [SMALL_STATE(6162)] = 252397, + [SMALL_STATE(6163)] = 252483, + [SMALL_STATE(6164)] = 252569, + [SMALL_STATE(6165)] = 252655, + [SMALL_STATE(6166)] = 252741, + [SMALL_STATE(6167)] = 252827, + [SMALL_STATE(6168)] = 252913, + [SMALL_STATE(6169)] = 252996, + [SMALL_STATE(6170)] = 253079, + [SMALL_STATE(6171)] = 253162, + [SMALL_STATE(6172)] = 253245, + [SMALL_STATE(6173)] = 253328, + [SMALL_STATE(6174)] = 253411, + [SMALL_STATE(6175)] = 253494, + [SMALL_STATE(6176)] = 253577, + [SMALL_STATE(6177)] = 253660, + [SMALL_STATE(6178)] = 253743, + [SMALL_STATE(6179)] = 253826, + [SMALL_STATE(6180)] = 253909, + [SMALL_STATE(6181)] = 253992, + [SMALL_STATE(6182)] = 254075, + [SMALL_STATE(6183)] = 254158, + [SMALL_STATE(6184)] = 254241, + [SMALL_STATE(6185)] = 254324, + [SMALL_STATE(6186)] = 254407, + [SMALL_STATE(6187)] = 254490, + [SMALL_STATE(6188)] = 254573, + [SMALL_STATE(6189)] = 254656, + [SMALL_STATE(6190)] = 254739, + [SMALL_STATE(6191)] = 254822, + [SMALL_STATE(6192)] = 254905, + [SMALL_STATE(6193)] = 254988, + [SMALL_STATE(6194)] = 255071, + [SMALL_STATE(6195)] = 255154, + [SMALL_STATE(6196)] = 255237, + [SMALL_STATE(6197)] = 255320, + [SMALL_STATE(6198)] = 255403, + [SMALL_STATE(6199)] = 255486, + [SMALL_STATE(6200)] = 255569, + [SMALL_STATE(6201)] = 255652, + [SMALL_STATE(6202)] = 255735, + [SMALL_STATE(6203)] = 255818, + [SMALL_STATE(6204)] = 255901, + [SMALL_STATE(6205)] = 255984, + [SMALL_STATE(6206)] = 256067, + [SMALL_STATE(6207)] = 256150, + [SMALL_STATE(6208)] = 256233, + [SMALL_STATE(6209)] = 256316, + [SMALL_STATE(6210)] = 256399, + [SMALL_STATE(6211)] = 256482, + [SMALL_STATE(6212)] = 256565, + [SMALL_STATE(6213)] = 256648, + [SMALL_STATE(6214)] = 256731, + [SMALL_STATE(6215)] = 256814, + [SMALL_STATE(6216)] = 256897, + [SMALL_STATE(6217)] = 256980, + [SMALL_STATE(6218)] = 257063, + [SMALL_STATE(6219)] = 257146, + [SMALL_STATE(6220)] = 257229, + [SMALL_STATE(6221)] = 257312, + [SMALL_STATE(6222)] = 257395, + [SMALL_STATE(6223)] = 257478, + [SMALL_STATE(6224)] = 257561, + [SMALL_STATE(6225)] = 257644, + [SMALL_STATE(6226)] = 257727, + [SMALL_STATE(6227)] = 257810, + [SMALL_STATE(6228)] = 257893, + [SMALL_STATE(6229)] = 257976, + [SMALL_STATE(6230)] = 258059, + [SMALL_STATE(6231)] = 258142, + [SMALL_STATE(6232)] = 258225, + [SMALL_STATE(6233)] = 258308, + [SMALL_STATE(6234)] = 258391, + [SMALL_STATE(6235)] = 258479, + [SMALL_STATE(6236)] = 258567, + [SMALL_STATE(6237)] = 258655, + [SMALL_STATE(6238)] = 258727, + [SMALL_STATE(6239)] = 258792, + [SMALL_STATE(6240)] = 258866, + [SMALL_STATE(6241)] = 258940, + [SMALL_STATE(6242)] = 259012, + [SMALL_STATE(6243)] = 259086, + [SMALL_STATE(6244)] = 259158, + [SMALL_STATE(6245)] = 259232, + [SMALL_STATE(6246)] = 259304, + [SMALL_STATE(6247)] = 259376, + [SMALL_STATE(6248)] = 259450, + [SMALL_STATE(6249)] = 259522, + [SMALL_STATE(6250)] = 259594, + [SMALL_STATE(6251)] = 259668, + [SMALL_STATE(6252)] = 259740, + [SMALL_STATE(6253)] = 259814, + [SMALL_STATE(6254)] = 259886, + [SMALL_STATE(6255)] = 259958, + [SMALL_STATE(6256)] = 260030, + [SMALL_STATE(6257)] = 260104, + [SMALL_STATE(6258)] = 260176, + [SMALL_STATE(6259)] = 260248, + [SMALL_STATE(6260)] = 260320, + [SMALL_STATE(6261)] = 260380, + [SMALL_STATE(6262)] = 260452, + [SMALL_STATE(6263)] = 260512, + [SMALL_STATE(6264)] = 260587, + [SMALL_STATE(6265)] = 260650, + [SMALL_STATE(6266)] = 260707, + [SMALL_STATE(6267)] = 260782, + [SMALL_STATE(6268)] = 260857, + [SMALL_STATE(6269)] = 260919, + [SMALL_STATE(6270)] = 260981, + [SMALL_STATE(6271)] = 261051, + [SMALL_STATE(6272)] = 261120, + [SMALL_STATE(6273)] = 261177, + [SMALL_STATE(6274)] = 261246, + [SMALL_STATE(6275)] = 261313, + [SMALL_STATE(6276)] = 261374, + [SMALL_STATE(6277)] = 261443, + [SMALL_STATE(6278)] = 261510, + [SMALL_STATE(6279)] = 261579, + [SMALL_STATE(6280)] = 261648, + [SMALL_STATE(6281)] = 261717, + [SMALL_STATE(6282)] = 261786, + [SMALL_STATE(6283)] = 261855, + [SMALL_STATE(6284)] = 261924, + [SMALL_STATE(6285)] = 261993, + [SMALL_STATE(6286)] = 262062, + [SMALL_STATE(6287)] = 262123, + [SMALL_STATE(6288)] = 262192, + [SMALL_STATE(6289)] = 262261, + [SMALL_STATE(6290)] = 262330, + [SMALL_STATE(6291)] = 262399, + [SMALL_STATE(6292)] = 262468, + [SMALL_STATE(6293)] = 262537, + [SMALL_STATE(6294)] = 262606, + [SMALL_STATE(6295)] = 262663, + [SMALL_STATE(6296)] = 262720, + [SMALL_STATE(6297)] = 262789, + [SMALL_STATE(6298)] = 262858, + [SMALL_STATE(6299)] = 262917, + [SMALL_STATE(6300)] = 262974, + [SMALL_STATE(6301)] = 263041, + [SMALL_STATE(6302)] = 263110, + [SMALL_STATE(6303)] = 263165, + [SMALL_STATE(6304)] = 263234, + [SMALL_STATE(6305)] = 263303, + [SMALL_STATE(6306)] = 263372, + [SMALL_STATE(6307)] = 263441, + [SMALL_STATE(6308)] = 263510, + [SMALL_STATE(6309)] = 263577, + [SMALL_STATE(6310)] = 263646, + [SMALL_STATE(6311)] = 263715, + [SMALL_STATE(6312)] = 263784, + [SMALL_STATE(6313)] = 263853, + [SMALL_STATE(6314)] = 263922, + [SMALL_STATE(6315)] = 263991, + [SMALL_STATE(6316)] = 264045, + [SMALL_STATE(6317)] = 264101, + [SMALL_STATE(6318)] = 264163, + [SMALL_STATE(6319)] = 264219, + [SMALL_STATE(6320)] = 264275, + [SMALL_STATE(6321)] = 264341, + [SMALL_STATE(6322)] = 264397, + [SMALL_STATE(6323)] = 264463, + [SMALL_STATE(6324)] = 264515, + [SMALL_STATE(6325)] = 264569, + [SMALL_STATE(6326)] = 264635, + [SMALL_STATE(6327)] = 264687, + [SMALL_STATE(6328)] = 264748, + [SMALL_STATE(6329)] = 264799, + [SMALL_STATE(6330)] = 264850, + [SMALL_STATE(6331)] = 264901, + [SMALL_STATE(6332)] = 264960, + [SMALL_STATE(6333)] = 265021, + [SMALL_STATE(6334)] = 265072, + [SMALL_STATE(6335)] = 265123, + [SMALL_STATE(6336)] = 265184, + [SMALL_STATE(6337)] = 265245, + [SMALL_STATE(6338)] = 265306, + [SMALL_STATE(6339)] = 265367, + [SMALL_STATE(6340)] = 265428, + [SMALL_STATE(6341)] = 265489, + [SMALL_STATE(6342)] = 265550, + [SMALL_STATE(6343)] = 265611, + [SMALL_STATE(6344)] = 265672, + [SMALL_STATE(6345)] = 265733, + [SMALL_STATE(6346)] = 265794, + [SMALL_STATE(6347)] = 265855, + [SMALL_STATE(6348)] = 265916, + [SMALL_STATE(6349)] = 265967, + [SMALL_STATE(6350)] = 266028, + [SMALL_STATE(6351)] = 266079, + [SMALL_STATE(6352)] = 266130, + [SMALL_STATE(6353)] = 266191, + [SMALL_STATE(6354)] = 266252, + [SMALL_STATE(6355)] = 266313, + [SMALL_STATE(6356)] = 266374, + [SMALL_STATE(6357)] = 266435, + [SMALL_STATE(6358)] = 266496, + [SMALL_STATE(6359)] = 266557, + [SMALL_STATE(6360)] = 266616, + [SMALL_STATE(6361)] = 266677, + [SMALL_STATE(6362)] = 266728, + [SMALL_STATE(6363)] = 266789, + [SMALL_STATE(6364)] = 266840, + [SMALL_STATE(6365)] = 266901, + [SMALL_STATE(6366)] = 266962, + [SMALL_STATE(6367)] = 267023, + [SMALL_STATE(6368)] = 267084, + [SMALL_STATE(6369)] = 267144, + [SMALL_STATE(6370)] = 267204, + [SMALL_STATE(6371)] = 267264, + [SMALL_STATE(6372)] = 267324, + [SMALL_STATE(6373)] = 267384, + [SMALL_STATE(6374)] = 267444, + [SMALL_STATE(6375)] = 267504, + [SMALL_STATE(6376)] = 267564, + [SMALL_STATE(6377)] = 267624, + [SMALL_STATE(6378)] = 267684, + [SMALL_STATE(6379)] = 267734, + [SMALL_STATE(6380)] = 267794, + [SMALL_STATE(6381)] = 267850, + [SMALL_STATE(6382)] = 267910, + [SMALL_STATE(6383)] = 267964, + [SMALL_STATE(6384)] = 268022, + [SMALL_STATE(6385)] = 268082, + [SMALL_STATE(6386)] = 268140, + [SMALL_STATE(6387)] = 268200, + [SMALL_STATE(6388)] = 268250, + [SMALL_STATE(6389)] = 268304, + [SMALL_STATE(6390)] = 268362, + [SMALL_STATE(6391)] = 268422, + [SMALL_STATE(6392)] = 268478, + [SMALL_STATE(6393)] = 268538, + [SMALL_STATE(6394)] = 268598, + [SMALL_STATE(6395)] = 268658, + [SMALL_STATE(6396)] = 268718, + [SMALL_STATE(6397)] = 268778, + [SMALL_STATE(6398)] = 268838, + [SMALL_STATE(6399)] = 268898, + [SMALL_STATE(6400)] = 268958, + [SMALL_STATE(6401)] = 269016, + [SMALL_STATE(6402)] = 269076, + [SMALL_STATE(6403)] = 269136, + [SMALL_STATE(6404)] = 269196, + [SMALL_STATE(6405)] = 269250, + [SMALL_STATE(6406)] = 269308, + [SMALL_STATE(6407)] = 269360, + [SMALL_STATE(6408)] = 269418, + [SMALL_STATE(6409)] = 269478, + [SMALL_STATE(6410)] = 269538, + [SMALL_STATE(6411)] = 269598, + [SMALL_STATE(6412)] = 269658, + [SMALL_STATE(6413)] = 269718, + [SMALL_STATE(6414)] = 269778, + [SMALL_STATE(6415)] = 269838, + [SMALL_STATE(6416)] = 269896, + [SMALL_STATE(6417)] = 269956, + [SMALL_STATE(6418)] = 270006, + [SMALL_STATE(6419)] = 270056, + [SMALL_STATE(6420)] = 270114, + [SMALL_STATE(6421)] = 270174, + [SMALL_STATE(6422)] = 270234, + [SMALL_STATE(6423)] = 270294, + [SMALL_STATE(6424)] = 270354, + [SMALL_STATE(6425)] = 270408, + [SMALL_STATE(6426)] = 270468, + [SMALL_STATE(6427)] = 270528, + [SMALL_STATE(6428)] = 270588, + [SMALL_STATE(6429)] = 270648, + [SMALL_STATE(6430)] = 270698, + [SMALL_STATE(6431)] = 270752, + [SMALL_STATE(6432)] = 270812, + [SMALL_STATE(6433)] = 270864, + [SMALL_STATE(6434)] = 270924, + [SMALL_STATE(6435)] = 270984, + [SMALL_STATE(6436)] = 271040, + [SMALL_STATE(6437)] = 271092, + [SMALL_STATE(6438)] = 271152, + [SMALL_STATE(6439)] = 271212, + [SMALL_STATE(6440)] = 271262, + [SMALL_STATE(6441)] = 271320, + [SMALL_STATE(6442)] = 271380, + [SMALL_STATE(6443)] = 271434, + [SMALL_STATE(6444)] = 271486, + [SMALL_STATE(6445)] = 271546, + [SMALL_STATE(6446)] = 271604, + [SMALL_STATE(6447)] = 271664, + [SMALL_STATE(6448)] = 271714, + [SMALL_STATE(6449)] = 271764, + [SMALL_STATE(6450)] = 271824, + [SMALL_STATE(6451)] = 271884, + [SMALL_STATE(6452)] = 271939, + [SMALL_STATE(6453)] = 271994, + [SMALL_STATE(6454)] = 272051, + [SMALL_STATE(6455)] = 272106, + [SMALL_STATE(6456)] = 272161, + [SMALL_STATE(6457)] = 272216, + [SMALL_STATE(6458)] = 272271, + [SMALL_STATE(6459)] = 272326, + [SMALL_STATE(6460)] = 272381, + [SMALL_STATE(6461)] = 272436, + [SMALL_STATE(6462)] = 272487, + [SMALL_STATE(6463)] = 272542, + [SMALL_STATE(6464)] = 272597, + [SMALL_STATE(6465)] = 272650, + [SMALL_STATE(6466)] = 272701, + [SMALL_STATE(6467)] = 272756, + [SMALL_STATE(6468)] = 272811, + [SMALL_STATE(6469)] = 272866, + [SMALL_STATE(6470)] = 272915, + [SMALL_STATE(6471)] = 272970, + [SMALL_STATE(6472)] = 273025, + [SMALL_STATE(6473)] = 273080, + [SMALL_STATE(6474)] = 273135, + [SMALL_STATE(6475)] = 273190, + [SMALL_STATE(6476)] = 273241, + [SMALL_STATE(6477)] = 273296, + [SMALL_STATE(6478)] = 273347, + [SMALL_STATE(6479)] = 273402, + [SMALL_STATE(6480)] = 273459, + [SMALL_STATE(6481)] = 273514, + [SMALL_STATE(6482)] = 273569, + [SMALL_STATE(6483)] = 273620, + [SMALL_STATE(6484)] = 273675, + [SMALL_STATE(6485)] = 273732, + [SMALL_STATE(6486)] = 273787, + [SMALL_STATE(6487)] = 273844, + [SMALL_STATE(6488)] = 273899, + [SMALL_STATE(6489)] = 273950, + [SMALL_STATE(6490)] = 274005, + [SMALL_STATE(6491)] = 274060, + [SMALL_STATE(6492)] = 274115, + [SMALL_STATE(6493)] = 274170, + [SMALL_STATE(6494)] = 274225, + [SMALL_STATE(6495)] = 274280, + [SMALL_STATE(6496)] = 274335, + [SMALL_STATE(6497)] = 274386, + [SMALL_STATE(6498)] = 274443, + [SMALL_STATE(6499)] = 274496, + [SMALL_STATE(6500)] = 274551, + [SMALL_STATE(6501)] = 274606, + [SMALL_STATE(6502)] = 274661, + [SMALL_STATE(6503)] = 274714, + [SMALL_STATE(6504)] = 274769, + [SMALL_STATE(6505)] = 274824, + [SMALL_STATE(6506)] = 274879, + [SMALL_STATE(6507)] = 274934, + [SMALL_STATE(6508)] = 274989, + [SMALL_STATE(6509)] = 275044, + [SMALL_STATE(6510)] = 275099, + [SMALL_STATE(6511)] = 275156, + [SMALL_STATE(6512)] = 275213, + [SMALL_STATE(6513)] = 275268, + [SMALL_STATE(6514)] = 275323, + [SMALL_STATE(6515)] = 275378, + [SMALL_STATE(6516)] = 275435, + [SMALL_STATE(6517)] = 275492, + [SMALL_STATE(6518)] = 275547, + [SMALL_STATE(6519)] = 275598, + [SMALL_STATE(6520)] = 275647, + [SMALL_STATE(6521)] = 275702, + [SMALL_STATE(6522)] = 275759, + [SMALL_STATE(6523)] = 275814, + [SMALL_STATE(6524)] = 275867, + [SMALL_STATE(6525)] = 275924, + [SMALL_STATE(6526)] = 275979, + [SMALL_STATE(6527)] = 276036, + [SMALL_STATE(6528)] = 276085, + [SMALL_STATE(6529)] = 276134, + [SMALL_STATE(6530)] = 276191, + [SMALL_STATE(6531)] = 276244, + [SMALL_STATE(6532)] = 276299, + [SMALL_STATE(6533)] = 276348, + [SMALL_STATE(6534)] = 276403, + [SMALL_STATE(6535)] = 276454, + [SMALL_STATE(6536)] = 276511, + [SMALL_STATE(6537)] = 276568, + [SMALL_STATE(6538)] = 276617, + [SMALL_STATE(6539)] = 276670, + [SMALL_STATE(6540)] = 276725, + [SMALL_STATE(6541)] = 276780, + [SMALL_STATE(6542)] = 276835, + [SMALL_STATE(6543)] = 276890, + [SMALL_STATE(6544)] = 276945, + [SMALL_STATE(6545)] = 277000, + [SMALL_STATE(6546)] = 277055, + [SMALL_STATE(6547)] = 277110, + [SMALL_STATE(6548)] = 277165, + [SMALL_STATE(6549)] = 277220, + [SMALL_STATE(6550)] = 277275, + [SMALL_STATE(6551)] = 277330, + [SMALL_STATE(6552)] = 277387, + [SMALL_STATE(6553)] = 277436, + [SMALL_STATE(6554)] = 277493, + [SMALL_STATE(6555)] = 277548, + [SMALL_STATE(6556)] = 277603, + [SMALL_STATE(6557)] = 277660, + [SMALL_STATE(6558)] = 277717, + [SMALL_STATE(6559)] = 277772, + [SMALL_STATE(6560)] = 277827, + [SMALL_STATE(6561)] = 277882, + [SMALL_STATE(6562)] = 277937, + [SMALL_STATE(6563)] = 277992, + [SMALL_STATE(6564)] = 278047, + [SMALL_STATE(6565)] = 278102, + [SMALL_STATE(6566)] = 278157, + [SMALL_STATE(6567)] = 278212, + [SMALL_STATE(6568)] = 278267, + [SMALL_STATE(6569)] = 278322, + [SMALL_STATE(6570)] = 278377, + [SMALL_STATE(6571)] = 278434, + [SMALL_STATE(6572)] = 278485, + [SMALL_STATE(6573)] = 278540, + [SMALL_STATE(6574)] = 278595, + [SMALL_STATE(6575)] = 278650, + [SMALL_STATE(6576)] = 278705, + [SMALL_STATE(6577)] = 278762, + [SMALL_STATE(6578)] = 278819, + [SMALL_STATE(6579)] = 278874, + [SMALL_STATE(6580)] = 278925, + [SMALL_STATE(6581)] = 278982, + [SMALL_STATE(6582)] = 279035, + [SMALL_STATE(6583)] = 279090, + [SMALL_STATE(6584)] = 279145, + [SMALL_STATE(6585)] = 279200, + [SMALL_STATE(6586)] = 279249, + [SMALL_STATE(6587)] = 279304, + [SMALL_STATE(6588)] = 279357, + [SMALL_STATE(6589)] = 279410, + [SMALL_STATE(6590)] = 279465, + [SMALL_STATE(6591)] = 279514, + [SMALL_STATE(6592)] = 279571, + [SMALL_STATE(6593)] = 279626, + [SMALL_STATE(6594)] = 279681, + [SMALL_STATE(6595)] = 279738, + [SMALL_STATE(6596)] = 279793, + [SMALL_STATE(6597)] = 279846, + [SMALL_STATE(6598)] = 279897, + [SMALL_STATE(6599)] = 279952, + [SMALL_STATE(6600)] = 280007, + [SMALL_STATE(6601)] = 280062, + [SMALL_STATE(6602)] = 280117, + [SMALL_STATE(6603)] = 280172, + [SMALL_STATE(6604)] = 280227, + [SMALL_STATE(6605)] = 280282, + [SMALL_STATE(6606)] = 280339, + [SMALL_STATE(6607)] = 280396, + [SMALL_STATE(6608)] = 280453, + [SMALL_STATE(6609)] = 280510, + [SMALL_STATE(6610)] = 280567, + [SMALL_STATE(6611)] = 280622, + [SMALL_STATE(6612)] = 280679, + [SMALL_STATE(6613)] = 280734, + [SMALL_STATE(6614)] = 280787, + [SMALL_STATE(6615)] = 280842, + [SMALL_STATE(6616)] = 280897, + [SMALL_STATE(6617)] = 280954, + [SMALL_STATE(6618)] = 281008, + [SMALL_STATE(6619)] = 281062, + [SMALL_STATE(6620)] = 281112, + [SMALL_STATE(6621)] = 281166, + [SMALL_STATE(6622)] = 281216, + [SMALL_STATE(6623)] = 281270, + [SMALL_STATE(6624)] = 281324, + [SMALL_STATE(6625)] = 281378, + [SMALL_STATE(6626)] = 281426, + [SMALL_STATE(6627)] = 281474, + [SMALL_STATE(6628)] = 281522, + [SMALL_STATE(6629)] = 281572, + [SMALL_STATE(6630)] = 281624, + [SMALL_STATE(6631)] = 281678, + [SMALL_STATE(6632)] = 281732, + [SMALL_STATE(6633)] = 281782, + [SMALL_STATE(6634)] = 281836, + [SMALL_STATE(6635)] = 281890, + [SMALL_STATE(6636)] = 281944, + [SMALL_STATE(6637)] = 281992, + [SMALL_STATE(6638)] = 282046, + [SMALL_STATE(6639)] = 282094, + [SMALL_STATE(6640)] = 282148, + [SMALL_STATE(6641)] = 282202, + [SMALL_STATE(6642)] = 282256, + [SMALL_STATE(6643)] = 282304, + [SMALL_STATE(6644)] = 282356, + [SMALL_STATE(6645)] = 282410, + [SMALL_STATE(6646)] = 282464, + [SMALL_STATE(6647)] = 282514, + [SMALL_STATE(6648)] = 282566, + [SMALL_STATE(6649)] = 282614, + [SMALL_STATE(6650)] = 282668, + [SMALL_STATE(6651)] = 282716, + [SMALL_STATE(6652)] = 282768, + [SMALL_STATE(6653)] = 282820, + [SMALL_STATE(6654)] = 282868, + [SMALL_STATE(6655)] = 282922, + [SMALL_STATE(6656)] = 282972, + [SMALL_STATE(6657)] = 283026, + [SMALL_STATE(6658)] = 283078, + [SMALL_STATE(6659)] = 283128, + [SMALL_STATE(6660)] = 283182, + [SMALL_STATE(6661)] = 283234, + [SMALL_STATE(6662)] = 283286, + [SMALL_STATE(6663)] = 283338, + [SMALL_STATE(6664)] = 283390, + [SMALL_STATE(6665)] = 283442, + [SMALL_STATE(6666)] = 283496, + [SMALL_STATE(6667)] = 283544, + [SMALL_STATE(6668)] = 283594, + [SMALL_STATE(6669)] = 283642, + [SMALL_STATE(6670)] = 283694, + [SMALL_STATE(6671)] = 283744, + [SMALL_STATE(6672)] = 283798, + [SMALL_STATE(6673)] = 283852, + [SMALL_STATE(6674)] = 283904, + [SMALL_STATE(6675)] = 283952, + [SMALL_STATE(6676)] = 284002, + [SMALL_STATE(6677)] = 284050, + [SMALL_STATE(6678)] = 284100, + [SMALL_STATE(6679)] = 284154, + [SMALL_STATE(6680)] = 284208, + [SMALL_STATE(6681)] = 284262, + [SMALL_STATE(6682)] = 284312, + [SMALL_STATE(6683)] = 284362, + [SMALL_STATE(6684)] = 284416, + [SMALL_STATE(6685)] = 284470, + [SMALL_STATE(6686)] = 284518, + [SMALL_STATE(6687)] = 284572, + [SMALL_STATE(6688)] = 284626, + [SMALL_STATE(6689)] = 284680, + [SMALL_STATE(6690)] = 284730, + [SMALL_STATE(6691)] = 284784, + [SMALL_STATE(6692)] = 284832, + [SMALL_STATE(6693)] = 284886, + [SMALL_STATE(6694)] = 284938, + [SMALL_STATE(6695)] = 284986, + [SMALL_STATE(6696)] = 285040, + [SMALL_STATE(6697)] = 285094, + [SMALL_STATE(6698)] = 285148, + [SMALL_STATE(6699)] = 285202, + [SMALL_STATE(6700)] = 285252, + [SMALL_STATE(6701)] = 285306, + [SMALL_STATE(6702)] = 285360, + [SMALL_STATE(6703)] = 285412, + [SMALL_STATE(6704)] = 285466, + [SMALL_STATE(6705)] = 285520, + [SMALL_STATE(6706)] = 285574, + [SMALL_STATE(6707)] = 285626, + [SMALL_STATE(6708)] = 285680, + [SMALL_STATE(6709)] = 285734, + [SMALL_STATE(6710)] = 285782, + [SMALL_STATE(6711)] = 285836, + [SMALL_STATE(6712)] = 285886, + [SMALL_STATE(6713)] = 285934, + [SMALL_STATE(6714)] = 285982, + [SMALL_STATE(6715)] = 286032, + [SMALL_STATE(6716)] = 286084, + [SMALL_STATE(6717)] = 286138, + [SMALL_STATE(6718)] = 286188, + [SMALL_STATE(6719)] = 286242, + [SMALL_STATE(6720)] = 286290, + [SMALL_STATE(6721)] = 286338, + [SMALL_STATE(6722)] = 286392, + [SMALL_STATE(6723)] = 286441, + [SMALL_STATE(6724)] = 286488, + [SMALL_STATE(6725)] = 286537, + [SMALL_STATE(6726)] = 286588, + [SMALL_STATE(6727)] = 286639, + [SMALL_STATE(6728)] = 286688, + [SMALL_STATE(6729)] = 286737, + [SMALL_STATE(6730)] = 286788, + [SMALL_STATE(6731)] = 286839, + [SMALL_STATE(6732)] = 286886, + [SMALL_STATE(6733)] = 286937, + [SMALL_STATE(6734)] = 286984, + [SMALL_STATE(6735)] = 287035, + [SMALL_STATE(6736)] = 287086, + [SMALL_STATE(6737)] = 287137, + [SMALL_STATE(6738)] = 287188, + [SMALL_STATE(6739)] = 287239, + [SMALL_STATE(6740)] = 287288, + [SMALL_STATE(6741)] = 287339, + [SMALL_STATE(6742)] = 287390, + [SMALL_STATE(6743)] = 287441, + [SMALL_STATE(6744)] = 287492, + [SMALL_STATE(6745)] = 287541, + [SMALL_STATE(6746)] = 287590, + [SMALL_STATE(6747)] = 287637, + [SMALL_STATE(6748)] = 287688, + [SMALL_STATE(6749)] = 287739, + [SMALL_STATE(6750)] = 287790, + [SMALL_STATE(6751)] = 287839, + [SMALL_STATE(6752)] = 287890, + [SMALL_STATE(6753)] = 287941, + [SMALL_STATE(6754)] = 287992, + [SMALL_STATE(6755)] = 288039, + [SMALL_STATE(6756)] = 288088, + [SMALL_STATE(6757)] = 288139, + [SMALL_STATE(6758)] = 288190, + [SMALL_STATE(6759)] = 288241, + [SMALL_STATE(6760)] = 288292, + [SMALL_STATE(6761)] = 288343, + [SMALL_STATE(6762)] = 288394, + [SMALL_STATE(6763)] = 288445, + [SMALL_STATE(6764)] = 288494, + [SMALL_STATE(6765)] = 288543, + [SMALL_STATE(6766)] = 288594, + [SMALL_STATE(6767)] = 288641, + [SMALL_STATE(6768)] = 288692, + [SMALL_STATE(6769)] = 288741, + [SMALL_STATE(6770)] = 288792, + [SMALL_STATE(6771)] = 288843, + [SMALL_STATE(6772)] = 288894, + [SMALL_STATE(6773)] = 288945, + [SMALL_STATE(6774)] = 288996, + [SMALL_STATE(6775)] = 289047, + [SMALL_STATE(6776)] = 289098, + [SMALL_STATE(6777)] = 289149, + [SMALL_STATE(6778)] = 289200, + [SMALL_STATE(6779)] = 289251, + [SMALL_STATE(6780)] = 289300, + [SMALL_STATE(6781)] = 289347, + [SMALL_STATE(6782)] = 289398, + [SMALL_STATE(6783)] = 289449, + [SMALL_STATE(6784)] = 289500, + [SMALL_STATE(6785)] = 289551, + [SMALL_STATE(6786)] = 289602, + [SMALL_STATE(6787)] = 289653, + [SMALL_STATE(6788)] = 289700, + [SMALL_STATE(6789)] = 289751, + [SMALL_STATE(6790)] = 289802, + [SMALL_STATE(6791)] = 289853, + [SMALL_STATE(6792)] = 289904, + [SMALL_STATE(6793)] = 289953, + [SMALL_STATE(6794)] = 290004, + [SMALL_STATE(6795)] = 290051, + [SMALL_STATE(6796)] = 290102, + [SMALL_STATE(6797)] = 290149, + [SMALL_STATE(6798)] = 290198, + [SMALL_STATE(6799)] = 290245, + [SMALL_STATE(6800)] = 290294, + [SMALL_STATE(6801)] = 290345, + [SMALL_STATE(6802)] = 290396, + [SMALL_STATE(6803)] = 290447, + [SMALL_STATE(6804)] = 290498, + [SMALL_STATE(6805)] = 290549, + [SMALL_STATE(6806)] = 290600, + [SMALL_STATE(6807)] = 290649, + [SMALL_STATE(6808)] = 290700, + [SMALL_STATE(6809)] = 290751, + [SMALL_STATE(6810)] = 290802, + [SMALL_STATE(6811)] = 290853, + [SMALL_STATE(6812)] = 290904, + [SMALL_STATE(6813)] = 290955, + [SMALL_STATE(6814)] = 291006, + [SMALL_STATE(6815)] = 291057, + [SMALL_STATE(6816)] = 291108, + [SMALL_STATE(6817)] = 291159, + [SMALL_STATE(6818)] = 291210, + [SMALL_STATE(6819)] = 291261, + [SMALL_STATE(6820)] = 291312, + [SMALL_STATE(6821)] = 291363, + [SMALL_STATE(6822)] = 291414, + [SMALL_STATE(6823)] = 291463, + [SMALL_STATE(6824)] = 291514, + [SMALL_STATE(6825)] = 291565, + [SMALL_STATE(6826)] = 291616, + [SMALL_STATE(6827)] = 291667, + [SMALL_STATE(6828)] = 291718, + [SMALL_STATE(6829)] = 291769, + [SMALL_STATE(6830)] = 291820, + [SMALL_STATE(6831)] = 291871, + [SMALL_STATE(6832)] = 291922, + [SMALL_STATE(6833)] = 291973, + [SMALL_STATE(6834)] = 292020, + [SMALL_STATE(6835)] = 292071, + [SMALL_STATE(6836)] = 292122, + [SMALL_STATE(6837)] = 292173, + [SMALL_STATE(6838)] = 292224, + [SMALL_STATE(6839)] = 292275, + [SMALL_STATE(6840)] = 292326, + [SMALL_STATE(6841)] = 292377, + [SMALL_STATE(6842)] = 292428, + [SMALL_STATE(6843)] = 292477, + [SMALL_STATE(6844)] = 292528, + [SMALL_STATE(6845)] = 292579, + [SMALL_STATE(6846)] = 292628, + [SMALL_STATE(6847)] = 292679, + [SMALL_STATE(6848)] = 292726, + [SMALL_STATE(6849)] = 292777, + [SMALL_STATE(6850)] = 292828, + [SMALL_STATE(6851)] = 292879, + [SMALL_STATE(6852)] = 292930, + [SMALL_STATE(6853)] = 292977, + [SMALL_STATE(6854)] = 293028, + [SMALL_STATE(6855)] = 293075, + [SMALL_STATE(6856)] = 293126, + [SMALL_STATE(6857)] = 293177, + [SMALL_STATE(6858)] = 293224, + [SMALL_STATE(6859)] = 293275, + [SMALL_STATE(6860)] = 293326, + [SMALL_STATE(6861)] = 293377, + [SMALL_STATE(6862)] = 293428, + [SMALL_STATE(6863)] = 293477, + [SMALL_STATE(6864)] = 293528, + [SMALL_STATE(6865)] = 293579, + [SMALL_STATE(6866)] = 293630, + [SMALL_STATE(6867)] = 293681, + [SMALL_STATE(6868)] = 293732, + [SMALL_STATE(6869)] = 293783, + [SMALL_STATE(6870)] = 293834, + [SMALL_STATE(6871)] = 293885, + [SMALL_STATE(6872)] = 293936, + [SMALL_STATE(6873)] = 293987, + [SMALL_STATE(6874)] = 294038, + [SMALL_STATE(6875)] = 294087, + [SMALL_STATE(6876)] = 294138, + [SMALL_STATE(6877)] = 294189, + [SMALL_STATE(6878)] = 294240, + [SMALL_STATE(6879)] = 294291, + [SMALL_STATE(6880)] = 294342, + [SMALL_STATE(6881)] = 294393, + [SMALL_STATE(6882)] = 294444, + [SMALL_STATE(6883)] = 294495, + [SMALL_STATE(6884)] = 294546, + [SMALL_STATE(6885)] = 294597, + [SMALL_STATE(6886)] = 294648, + [SMALL_STATE(6887)] = 294699, + [SMALL_STATE(6888)] = 294750, + [SMALL_STATE(6889)] = 294801, + [SMALL_STATE(6890)] = 294852, + [SMALL_STATE(6891)] = 294903, + [SMALL_STATE(6892)] = 294954, + [SMALL_STATE(6893)] = 295005, + [SMALL_STATE(6894)] = 295056, + [SMALL_STATE(6895)] = 295107, + [SMALL_STATE(6896)] = 295158, + [SMALL_STATE(6897)] = 295209, + [SMALL_STATE(6898)] = 295260, + [SMALL_STATE(6899)] = 295311, + [SMALL_STATE(6900)] = 295362, + [SMALL_STATE(6901)] = 295413, + [SMALL_STATE(6902)] = 295464, + [SMALL_STATE(6903)] = 295511, + [SMALL_STATE(6904)] = 295562, + [SMALL_STATE(6905)] = 295613, + [SMALL_STATE(6906)] = 295664, + [SMALL_STATE(6907)] = 295711, + [SMALL_STATE(6908)] = 295762, + [SMALL_STATE(6909)] = 295811, + [SMALL_STATE(6910)] = 295862, + [SMALL_STATE(6911)] = 295909, + [SMALL_STATE(6912)] = 295960, + [SMALL_STATE(6913)] = 296011, + [SMALL_STATE(6914)] = 296062, + [SMALL_STATE(6915)] = 296113, + [SMALL_STATE(6916)] = 296164, + [SMALL_STATE(6917)] = 296215, + [SMALL_STATE(6918)] = 296266, + [SMALL_STATE(6919)] = 296317, + [SMALL_STATE(6920)] = 296368, + [SMALL_STATE(6921)] = 296417, + [SMALL_STATE(6922)] = 296468, + [SMALL_STATE(6923)] = 296519, + [SMALL_STATE(6924)] = 296570, + [SMALL_STATE(6925)] = 296621, + [SMALL_STATE(6926)] = 296668, + [SMALL_STATE(6927)] = 296719, + [SMALL_STATE(6928)] = 296770, + [SMALL_STATE(6929)] = 296821, + [SMALL_STATE(6930)] = 296872, + [SMALL_STATE(6931)] = 296923, + [SMALL_STATE(6932)] = 296974, + [SMALL_STATE(6933)] = 297025, + [SMALL_STATE(6934)] = 297076, + [SMALL_STATE(6935)] = 297127, + [SMALL_STATE(6936)] = 297178, + [SMALL_STATE(6937)] = 297227, + [SMALL_STATE(6938)] = 297278, + [SMALL_STATE(6939)] = 297329, + [SMALL_STATE(6940)] = 297380, + [SMALL_STATE(6941)] = 297431, + [SMALL_STATE(6942)] = 297482, + [SMALL_STATE(6943)] = 297529, + [SMALL_STATE(6944)] = 297580, + [SMALL_STATE(6945)] = 297631, + [SMALL_STATE(6946)] = 297682, + [SMALL_STATE(6947)] = 297733, + [SMALL_STATE(6948)] = 297784, + [SMALL_STATE(6949)] = 297835, + [SMALL_STATE(6950)] = 297886, + [SMALL_STATE(6951)] = 297935, + [SMALL_STATE(6952)] = 297982, + [SMALL_STATE(6953)] = 298033, + [SMALL_STATE(6954)] = 298084, + [SMALL_STATE(6955)] = 298135, + [SMALL_STATE(6956)] = 298186, + [SMALL_STATE(6957)] = 298237, + [SMALL_STATE(6958)] = 298288, + [SMALL_STATE(6959)] = 298339, + [SMALL_STATE(6960)] = 298390, + [SMALL_STATE(6961)] = 298441, + [SMALL_STATE(6962)] = 298492, + [SMALL_STATE(6963)] = 298543, + [SMALL_STATE(6964)] = 298594, + [SMALL_STATE(6965)] = 298645, + [SMALL_STATE(6966)] = 298696, + [SMALL_STATE(6967)] = 298747, + [SMALL_STATE(6968)] = 298798, + [SMALL_STATE(6969)] = 298849, + [SMALL_STATE(6970)] = 298900, + [SMALL_STATE(6971)] = 298951, + [SMALL_STATE(6972)] = 299002, + [SMALL_STATE(6973)] = 299053, + [SMALL_STATE(6974)] = 299102, + [SMALL_STATE(6975)] = 299153, + [SMALL_STATE(6976)] = 299204, + [SMALL_STATE(6977)] = 299255, + [SMALL_STATE(6978)] = 299306, + [SMALL_STATE(6979)] = 299357, + [SMALL_STATE(6980)] = 299408, + [SMALL_STATE(6981)] = 299459, + [SMALL_STATE(6982)] = 299508, + [SMALL_STATE(6983)] = 299559, + [SMALL_STATE(6984)] = 299610, + [SMALL_STATE(6985)] = 299661, + [SMALL_STATE(6986)] = 299712, + [SMALL_STATE(6987)] = 299763, + [SMALL_STATE(6988)] = 299814, + [SMALL_STATE(6989)] = 299861, + [SMALL_STATE(6990)] = 299908, + [SMALL_STATE(6991)] = 299959, + [SMALL_STATE(6992)] = 300010, + [SMALL_STATE(6993)] = 300061, + [SMALL_STATE(6994)] = 300112, + [SMALL_STATE(6995)] = 300163, + [SMALL_STATE(6996)] = 300214, + [SMALL_STATE(6997)] = 300265, + [SMALL_STATE(6998)] = 300316, + [SMALL_STATE(6999)] = 300367, + [SMALL_STATE(7000)] = 300418, + [SMALL_STATE(7001)] = 300469, + [SMALL_STATE(7002)] = 300516, + [SMALL_STATE(7003)] = 300567, + [SMALL_STATE(7004)] = 300618, + [SMALL_STATE(7005)] = 300669, + [SMALL_STATE(7006)] = 300718, + [SMALL_STATE(7007)] = 300769, + [SMALL_STATE(7008)] = 300818, + [SMALL_STATE(7009)] = 300869, + [SMALL_STATE(7010)] = 300920, + [SMALL_STATE(7011)] = 300971, + [SMALL_STATE(7012)] = 301022, + [SMALL_STATE(7013)] = 301073, + [SMALL_STATE(7014)] = 301124, + [SMALL_STATE(7015)] = 301175, + [SMALL_STATE(7016)] = 301226, + [SMALL_STATE(7017)] = 301273, + [SMALL_STATE(7018)] = 301324, + [SMALL_STATE(7019)] = 301373, + [SMALL_STATE(7020)] = 301424, + [SMALL_STATE(7021)] = 301475, + [SMALL_STATE(7022)] = 301526, + [SMALL_STATE(7023)] = 301575, + [SMALL_STATE(7024)] = 301626, + [SMALL_STATE(7025)] = 301677, + [SMALL_STATE(7026)] = 301728, + [SMALL_STATE(7027)] = 301779, + [SMALL_STATE(7028)] = 301827, + [SMALL_STATE(7029)] = 301873, + [SMALL_STATE(7030)] = 301921, + [SMALL_STATE(7031)] = 301969, + [SMALL_STATE(7032)] = 302017, + [SMALL_STATE(7033)] = 302065, + [SMALL_STATE(7034)] = 302111, + [SMALL_STATE(7035)] = 302159, + [SMALL_STATE(7036)] = 302205, + [SMALL_STATE(7037)] = 302253, + [SMALL_STATE(7038)] = 302301, + [SMALL_STATE(7039)] = 302347, + [SMALL_STATE(7040)] = 302393, + [SMALL_STATE(7041)] = 302441, + [SMALL_STATE(7042)] = 302489, + [SMALL_STATE(7043)] = 302535, + [SMALL_STATE(7044)] = 302581, + [SMALL_STATE(7045)] = 302629, + [SMALL_STATE(7046)] = 302677, + [SMALL_STATE(7047)] = 302725, + [SMALL_STATE(7048)] = 302771, + [SMALL_STATE(7049)] = 302819, + [SMALL_STATE(7050)] = 302865, + [SMALL_STATE(7051)] = 302913, + [SMALL_STATE(7052)] = 302961, + [SMALL_STATE(7053)] = 303009, + [SMALL_STATE(7054)] = 303057, + [SMALL_STATE(7055)] = 303103, + [SMALL_STATE(7056)] = 303151, + [SMALL_STATE(7057)] = 303199, + [SMALL_STATE(7058)] = 303245, + [SMALL_STATE(7059)] = 303293, + [SMALL_STATE(7060)] = 303341, + [SMALL_STATE(7061)] = 303389, + [SMALL_STATE(7062)] = 303437, + [SMALL_STATE(7063)] = 303483, + [SMALL_STATE(7064)] = 303531, + [SMALL_STATE(7065)] = 303577, + [SMALL_STATE(7066)] = 303625, + [SMALL_STATE(7067)] = 303673, + [SMALL_STATE(7068)] = 303721, + [SMALL_STATE(7069)] = 303767, + [SMALL_STATE(7070)] = 303815, + [SMALL_STATE(7071)] = 303863, + [SMALL_STATE(7072)] = 303909, + [SMALL_STATE(7073)] = 303957, + [SMALL_STATE(7074)] = 304005, + [SMALL_STATE(7075)] = 304053, + [SMALL_STATE(7076)] = 304099, + [SMALL_STATE(7077)] = 304147, + [SMALL_STATE(7078)] = 304193, + [SMALL_STATE(7079)] = 304241, + [SMALL_STATE(7080)] = 304287, + [SMALL_STATE(7081)] = 304335, + [SMALL_STATE(7082)] = 304383, + [SMALL_STATE(7083)] = 304429, + [SMALL_STATE(7084)] = 304477, + [SMALL_STATE(7085)] = 304523, + [SMALL_STATE(7086)] = 304571, + [SMALL_STATE(7087)] = 304617, + [SMALL_STATE(7088)] = 304663, + [SMALL_STATE(7089)] = 304709, + [SMALL_STATE(7090)] = 304757, + [SMALL_STATE(7091)] = 304803, + [SMALL_STATE(7092)] = 304849, + [SMALL_STATE(7093)] = 304895, + [SMALL_STATE(7094)] = 304943, + [SMALL_STATE(7095)] = 304989, + [SMALL_STATE(7096)] = 305035, + [SMALL_STATE(7097)] = 305081, + [SMALL_STATE(7098)] = 305127, + [SMALL_STATE(7099)] = 305175, + [SMALL_STATE(7100)] = 305223, + [SMALL_STATE(7101)] = 305269, + [SMALL_STATE(7102)] = 305317, + [SMALL_STATE(7103)] = 305363, + [SMALL_STATE(7104)] = 305409, + [SMALL_STATE(7105)] = 305457, + [SMALL_STATE(7106)] = 305505, + [SMALL_STATE(7107)] = 305553, + [SMALL_STATE(7108)] = 305599, + [SMALL_STATE(7109)] = 305645, + [SMALL_STATE(7110)] = 305691, + [SMALL_STATE(7111)] = 305739, + [SMALL_STATE(7112)] = 305785, + [SMALL_STATE(7113)] = 305833, + [SMALL_STATE(7114)] = 305879, + [SMALL_STATE(7115)] = 305927, + [SMALL_STATE(7116)] = 305975, + [SMALL_STATE(7117)] = 306023, + [SMALL_STATE(7118)] = 306069, + [SMALL_STATE(7119)] = 306117, + [SMALL_STATE(7120)] = 306165, + [SMALL_STATE(7121)] = 306213, + [SMALL_STATE(7122)] = 306261, + [SMALL_STATE(7123)] = 306307, + [SMALL_STATE(7124)] = 306355, + [SMALL_STATE(7125)] = 306403, + [SMALL_STATE(7126)] = 306451, + [SMALL_STATE(7127)] = 306497, + [SMALL_STATE(7128)] = 306543, + [SMALL_STATE(7129)] = 306589, + [SMALL_STATE(7130)] = 306635, + [SMALL_STATE(7131)] = 306683, + [SMALL_STATE(7132)] = 306729, + [SMALL_STATE(7133)] = 306777, + [SMALL_STATE(7134)] = 306825, + [SMALL_STATE(7135)] = 306873, + [SMALL_STATE(7136)] = 306921, + [SMALL_STATE(7137)] = 306969, + [SMALL_STATE(7138)] = 307017, + [SMALL_STATE(7139)] = 307063, + [SMALL_STATE(7140)] = 307111, + [SMALL_STATE(7141)] = 307159, + [SMALL_STATE(7142)] = 307207, + [SMALL_STATE(7143)] = 307253, + [SMALL_STATE(7144)] = 307301, + [SMALL_STATE(7145)] = 307349, + [SMALL_STATE(7146)] = 307395, + [SMALL_STATE(7147)] = 307441, + [SMALL_STATE(7148)] = 307489, + [SMALL_STATE(7149)] = 307537, + [SMALL_STATE(7150)] = 307585, + [SMALL_STATE(7151)] = 307633, + [SMALL_STATE(7152)] = 307679, + [SMALL_STATE(7153)] = 307727, + [SMALL_STATE(7154)] = 307775, + [SMALL_STATE(7155)] = 307823, + [SMALL_STATE(7156)] = 307869, + [SMALL_STATE(7157)] = 307917, + [SMALL_STATE(7158)] = 307963, + [SMALL_STATE(7159)] = 308009, + [SMALL_STATE(7160)] = 308057, + [SMALL_STATE(7161)] = 308103, + [SMALL_STATE(7162)] = 308151, + [SMALL_STATE(7163)] = 308197, + [SMALL_STATE(7164)] = 308245, + [SMALL_STATE(7165)] = 308293, + [SMALL_STATE(7166)] = 308341, + [SMALL_STATE(7167)] = 308389, + [SMALL_STATE(7168)] = 308437, + [SMALL_STATE(7169)] = 308483, + [SMALL_STATE(7170)] = 308529, + [SMALL_STATE(7171)] = 308575, + [SMALL_STATE(7172)] = 308621, + [SMALL_STATE(7173)] = 308667, + [SMALL_STATE(7174)] = 308713, + [SMALL_STATE(7175)] = 308759, + [SMALL_STATE(7176)] = 308805, + [SMALL_STATE(7177)] = 308851, + [SMALL_STATE(7178)] = 308897, + [SMALL_STATE(7179)] = 308945, + [SMALL_STATE(7180)] = 308993, + [SMALL_STATE(7181)] = 309041, + [SMALL_STATE(7182)] = 309089, + [SMALL_STATE(7183)] = 309135, + [SMALL_STATE(7184)] = 309183, + [SMALL_STATE(7185)] = 309229, + [SMALL_STATE(7186)] = 309277, + [SMALL_STATE(7187)] = 309323, + [SMALL_STATE(7188)] = 309369, + [SMALL_STATE(7189)] = 309417, + [SMALL_STATE(7190)] = 309465, + [SMALL_STATE(7191)] = 309513, + [SMALL_STATE(7192)] = 309559, + [SMALL_STATE(7193)] = 309607, + [SMALL_STATE(7194)] = 309655, + [SMALL_STATE(7195)] = 309701, + [SMALL_STATE(7196)] = 309749, + [SMALL_STATE(7197)] = 309797, + [SMALL_STATE(7198)] = 309843, + [SMALL_STATE(7199)] = 309891, + [SMALL_STATE(7200)] = 309939, + [SMALL_STATE(7201)] = 309985, + [SMALL_STATE(7202)] = 310033, + [SMALL_STATE(7203)] = 310081, + [SMALL_STATE(7204)] = 310129, + [SMALL_STATE(7205)] = 310177, + [SMALL_STATE(7206)] = 310223, + [SMALL_STATE(7207)] = 310271, + [SMALL_STATE(7208)] = 310319, + [SMALL_STATE(7209)] = 310367, + [SMALL_STATE(7210)] = 310413, + [SMALL_STATE(7211)] = 310461, + [SMALL_STATE(7212)] = 310507, + [SMALL_STATE(7213)] = 310555, + [SMALL_STATE(7214)] = 310603, + [SMALL_STATE(7215)] = 310651, + [SMALL_STATE(7216)] = 310699, + [SMALL_STATE(7217)] = 310747, + [SMALL_STATE(7218)] = 310793, + [SMALL_STATE(7219)] = 310841, + [SMALL_STATE(7220)] = 310889, + [SMALL_STATE(7221)] = 310937, + [SMALL_STATE(7222)] = 310983, + [SMALL_STATE(7223)] = 311031, + [SMALL_STATE(7224)] = 311077, + [SMALL_STATE(7225)] = 311125, + [SMALL_STATE(7226)] = 311171, + [SMALL_STATE(7227)] = 311219, + [SMALL_STATE(7228)] = 311267, + [SMALL_STATE(7229)] = 311313, + [SMALL_STATE(7230)] = 311359, + [SMALL_STATE(7231)] = 311405, + [SMALL_STATE(7232)] = 311451, + [SMALL_STATE(7233)] = 311497, + [SMALL_STATE(7234)] = 311545, + [SMALL_STATE(7235)] = 311593, + [SMALL_STATE(7236)] = 311641, + [SMALL_STATE(7237)] = 311689, + [SMALL_STATE(7238)] = 311735, + [SMALL_STATE(7239)] = 311783, + [SMALL_STATE(7240)] = 311829, + [SMALL_STATE(7241)] = 311877, + [SMALL_STATE(7242)] = 311925, + [SMALL_STATE(7243)] = 311973, + [SMALL_STATE(7244)] = 312021, + [SMALL_STATE(7245)] = 312069, + [SMALL_STATE(7246)] = 312117, + [SMALL_STATE(7247)] = 312165, + [SMALL_STATE(7248)] = 312213, + [SMALL_STATE(7249)] = 312259, + [SMALL_STATE(7250)] = 312305, + [SMALL_STATE(7251)] = 312353, + [SMALL_STATE(7252)] = 312401, + [SMALL_STATE(7253)] = 312449, + [SMALL_STATE(7254)] = 312495, + [SMALL_STATE(7255)] = 312543, + [SMALL_STATE(7256)] = 312589, + [SMALL_STATE(7257)] = 312637, + [SMALL_STATE(7258)] = 312685, + [SMALL_STATE(7259)] = 312733, + [SMALL_STATE(7260)] = 312781, + [SMALL_STATE(7261)] = 312827, + [SMALL_STATE(7262)] = 312873, + [SMALL_STATE(7263)] = 312921, + [SMALL_STATE(7264)] = 312969, + [SMALL_STATE(7265)] = 313017, + [SMALL_STATE(7266)] = 313065, + [SMALL_STATE(7267)] = 313113, + [SMALL_STATE(7268)] = 313158, + [SMALL_STATE(7269)] = 313203, + [SMALL_STATE(7270)] = 313248, + [SMALL_STATE(7271)] = 313293, + [SMALL_STATE(7272)] = 313338, + [SMALL_STATE(7273)] = 313383, + [SMALL_STATE(7274)] = 313428, + [SMALL_STATE(7275)] = 313473, + [SMALL_STATE(7276)] = 313518, + [SMALL_STATE(7277)] = 313563, + [SMALL_STATE(7278)] = 313608, + [SMALL_STATE(7279)] = 313653, + [SMALL_STATE(7280)] = 313698, + [SMALL_STATE(7281)] = 313743, + [SMALL_STATE(7282)] = 313788, + [SMALL_STATE(7283)] = 313833, + [SMALL_STATE(7284)] = 313878, + [SMALL_STATE(7285)] = 313923, + [SMALL_STATE(7286)] = 313968, + [SMALL_STATE(7287)] = 314013, + [SMALL_STATE(7288)] = 314058, + [SMALL_STATE(7289)] = 314103, + [SMALL_STATE(7290)] = 314148, + [SMALL_STATE(7291)] = 314193, + [SMALL_STATE(7292)] = 314238, + [SMALL_STATE(7293)] = 314283, + [SMALL_STATE(7294)] = 314328, + [SMALL_STATE(7295)] = 314373, + [SMALL_STATE(7296)] = 314418, + [SMALL_STATE(7297)] = 314463, + [SMALL_STATE(7298)] = 314508, + [SMALL_STATE(7299)] = 314553, + [SMALL_STATE(7300)] = 314598, + [SMALL_STATE(7301)] = 314643, + [SMALL_STATE(7302)] = 314688, + [SMALL_STATE(7303)] = 314733, + [SMALL_STATE(7304)] = 314778, + [SMALL_STATE(7305)] = 314823, + [SMALL_STATE(7306)] = 314868, + [SMALL_STATE(7307)] = 314913, + [SMALL_STATE(7308)] = 314958, + [SMALL_STATE(7309)] = 315003, + [SMALL_STATE(7310)] = 315048, + [SMALL_STATE(7311)] = 315093, + [SMALL_STATE(7312)] = 315138, + [SMALL_STATE(7313)] = 315183, + [SMALL_STATE(7314)] = 315228, + [SMALL_STATE(7315)] = 315273, + [SMALL_STATE(7316)] = 315318, + [SMALL_STATE(7317)] = 315363, + [SMALL_STATE(7318)] = 315408, + [SMALL_STATE(7319)] = 315453, + [SMALL_STATE(7320)] = 315498, + [SMALL_STATE(7321)] = 315543, + [SMALL_STATE(7322)] = 315588, + [SMALL_STATE(7323)] = 315633, + [SMALL_STATE(7324)] = 315678, + [SMALL_STATE(7325)] = 315723, + [SMALL_STATE(7326)] = 315768, + [SMALL_STATE(7327)] = 315813, + [SMALL_STATE(7328)] = 315858, + [SMALL_STATE(7329)] = 315903, + [SMALL_STATE(7330)] = 315948, + [SMALL_STATE(7331)] = 315993, + [SMALL_STATE(7332)] = 316038, + [SMALL_STATE(7333)] = 316083, + [SMALL_STATE(7334)] = 316128, + [SMALL_STATE(7335)] = 316173, + [SMALL_STATE(7336)] = 316218, + [SMALL_STATE(7337)] = 316263, + [SMALL_STATE(7338)] = 316308, + [SMALL_STATE(7339)] = 316353, + [SMALL_STATE(7340)] = 316398, + [SMALL_STATE(7341)] = 316443, + [SMALL_STATE(7342)] = 316488, + [SMALL_STATE(7343)] = 316533, + [SMALL_STATE(7344)] = 316578, + [SMALL_STATE(7345)] = 316623, + [SMALL_STATE(7346)] = 316668, + [SMALL_STATE(7347)] = 316713, + [SMALL_STATE(7348)] = 316758, + [SMALL_STATE(7349)] = 316803, + [SMALL_STATE(7350)] = 316848, + [SMALL_STATE(7351)] = 316893, + [SMALL_STATE(7352)] = 316938, + [SMALL_STATE(7353)] = 316983, + [SMALL_STATE(7354)] = 317028, + [SMALL_STATE(7355)] = 317073, + [SMALL_STATE(7356)] = 317118, + [SMALL_STATE(7357)] = 317163, + [SMALL_STATE(7358)] = 317208, + [SMALL_STATE(7359)] = 317253, + [SMALL_STATE(7360)] = 317298, + [SMALL_STATE(7361)] = 317343, + [SMALL_STATE(7362)] = 317388, + [SMALL_STATE(7363)] = 317433, + [SMALL_STATE(7364)] = 317478, + [SMALL_STATE(7365)] = 317523, + [SMALL_STATE(7366)] = 317568, + [SMALL_STATE(7367)] = 317613, + [SMALL_STATE(7368)] = 317658, + [SMALL_STATE(7369)] = 317703, + [SMALL_STATE(7370)] = 317748, + [SMALL_STATE(7371)] = 317793, + [SMALL_STATE(7372)] = 317838, + [SMALL_STATE(7373)] = 317883, + [SMALL_STATE(7374)] = 317928, + [SMALL_STATE(7375)] = 317973, + [SMALL_STATE(7376)] = 318018, + [SMALL_STATE(7377)] = 318063, + [SMALL_STATE(7378)] = 318108, + [SMALL_STATE(7379)] = 318153, + [SMALL_STATE(7380)] = 318198, + [SMALL_STATE(7381)] = 318243, + [SMALL_STATE(7382)] = 318288, + [SMALL_STATE(7383)] = 318333, + [SMALL_STATE(7384)] = 318378, + [SMALL_STATE(7385)] = 318423, + [SMALL_STATE(7386)] = 318468, + [SMALL_STATE(7387)] = 318513, + [SMALL_STATE(7388)] = 318558, + [SMALL_STATE(7389)] = 318603, + [SMALL_STATE(7390)] = 318648, + [SMALL_STATE(7391)] = 318693, + [SMALL_STATE(7392)] = 318738, + [SMALL_STATE(7393)] = 318783, + [SMALL_STATE(7394)] = 318828, + [SMALL_STATE(7395)] = 318873, + [SMALL_STATE(7396)] = 318918, + [SMALL_STATE(7397)] = 318963, + [SMALL_STATE(7398)] = 319008, + [SMALL_STATE(7399)] = 319053, + [SMALL_STATE(7400)] = 319098, + [SMALL_STATE(7401)] = 319143, + [SMALL_STATE(7402)] = 319188, + [SMALL_STATE(7403)] = 319233, + [SMALL_STATE(7404)] = 319278, + [SMALL_STATE(7405)] = 319323, + [SMALL_STATE(7406)] = 319368, + [SMALL_STATE(7407)] = 319413, + [SMALL_STATE(7408)] = 319458, + [SMALL_STATE(7409)] = 319503, + [SMALL_STATE(7410)] = 319548, + [SMALL_STATE(7411)] = 319593, + [SMALL_STATE(7412)] = 319638, + [SMALL_STATE(7413)] = 319683, + [SMALL_STATE(7414)] = 319728, + [SMALL_STATE(7415)] = 319773, + [SMALL_STATE(7416)] = 319818, + [SMALL_STATE(7417)] = 319863, + [SMALL_STATE(7418)] = 319908, + [SMALL_STATE(7419)] = 319953, + [SMALL_STATE(7420)] = 319998, + [SMALL_STATE(7421)] = 320043, + [SMALL_STATE(7422)] = 320088, + [SMALL_STATE(7423)] = 320133, + [SMALL_STATE(7424)] = 320178, + [SMALL_STATE(7425)] = 320223, + [SMALL_STATE(7426)] = 320268, + [SMALL_STATE(7427)] = 320313, + [SMALL_STATE(7428)] = 320358, + [SMALL_STATE(7429)] = 320403, + [SMALL_STATE(7430)] = 320448, + [SMALL_STATE(7431)] = 320493, + [SMALL_STATE(7432)] = 320538, + [SMALL_STATE(7433)] = 320583, + [SMALL_STATE(7434)] = 320628, + [SMALL_STATE(7435)] = 320673, + [SMALL_STATE(7436)] = 320718, + [SMALL_STATE(7437)] = 320763, + [SMALL_STATE(7438)] = 320808, + [SMALL_STATE(7439)] = 320853, + [SMALL_STATE(7440)] = 320898, + [SMALL_STATE(7441)] = 320943, + [SMALL_STATE(7442)] = 320988, + [SMALL_STATE(7443)] = 321033, + [SMALL_STATE(7444)] = 321078, + [SMALL_STATE(7445)] = 321123, + [SMALL_STATE(7446)] = 321168, + [SMALL_STATE(7447)] = 321213, + [SMALL_STATE(7448)] = 321258, + [SMALL_STATE(7449)] = 321303, + [SMALL_STATE(7450)] = 321348, + [SMALL_STATE(7451)] = 321393, + [SMALL_STATE(7452)] = 321438, + [SMALL_STATE(7453)] = 321483, + [SMALL_STATE(7454)] = 321528, + [SMALL_STATE(7455)] = 321573, + [SMALL_STATE(7456)] = 321618, + [SMALL_STATE(7457)] = 321663, + [SMALL_STATE(7458)] = 321708, + [SMALL_STATE(7459)] = 321753, + [SMALL_STATE(7460)] = 321798, + [SMALL_STATE(7461)] = 321843, + [SMALL_STATE(7462)] = 321888, + [SMALL_STATE(7463)] = 321933, + [SMALL_STATE(7464)] = 321978, + [SMALL_STATE(7465)] = 322023, + [SMALL_STATE(7466)] = 322068, + [SMALL_STATE(7467)] = 322113, + [SMALL_STATE(7468)] = 322158, + [SMALL_STATE(7469)] = 322203, + [SMALL_STATE(7470)] = 322248, + [SMALL_STATE(7471)] = 322293, + [SMALL_STATE(7472)] = 322338, + [SMALL_STATE(7473)] = 322383, + [SMALL_STATE(7474)] = 322428, + [SMALL_STATE(7475)] = 322473, + [SMALL_STATE(7476)] = 322518, + [SMALL_STATE(7477)] = 322563, + [SMALL_STATE(7478)] = 322608, + [SMALL_STATE(7479)] = 322653, + [SMALL_STATE(7480)] = 322698, + [SMALL_STATE(7481)] = 322743, + [SMALL_STATE(7482)] = 322788, + [SMALL_STATE(7483)] = 322833, + [SMALL_STATE(7484)] = 322878, + [SMALL_STATE(7485)] = 322923, + [SMALL_STATE(7486)] = 322968, + [SMALL_STATE(7487)] = 323013, + [SMALL_STATE(7488)] = 323058, + [SMALL_STATE(7489)] = 323103, + [SMALL_STATE(7490)] = 323148, + [SMALL_STATE(7491)] = 323193, + [SMALL_STATE(7492)] = 323238, + [SMALL_STATE(7493)] = 323283, + [SMALL_STATE(7494)] = 323328, + [SMALL_STATE(7495)] = 323373, + [SMALL_STATE(7496)] = 323418, + [SMALL_STATE(7497)] = 323463, + [SMALL_STATE(7498)] = 323508, + [SMALL_STATE(7499)] = 323553, + [SMALL_STATE(7500)] = 323598, + [SMALL_STATE(7501)] = 323643, + [SMALL_STATE(7502)] = 323688, + [SMALL_STATE(7503)] = 323733, + [SMALL_STATE(7504)] = 323778, + [SMALL_STATE(7505)] = 323823, + [SMALL_STATE(7506)] = 323868, + [SMALL_STATE(7507)] = 323913, + [SMALL_STATE(7508)] = 323958, + [SMALL_STATE(7509)] = 324003, + [SMALL_STATE(7510)] = 324048, + [SMALL_STATE(7511)] = 324093, + [SMALL_STATE(7512)] = 324138, + [SMALL_STATE(7513)] = 324183, + [SMALL_STATE(7514)] = 324228, + [SMALL_STATE(7515)] = 324273, + [SMALL_STATE(7516)] = 324318, + [SMALL_STATE(7517)] = 324363, + [SMALL_STATE(7518)] = 324408, + [SMALL_STATE(7519)] = 324453, + [SMALL_STATE(7520)] = 324498, + [SMALL_STATE(7521)] = 324543, + [SMALL_STATE(7522)] = 324588, + [SMALL_STATE(7523)] = 324633, + [SMALL_STATE(7524)] = 324678, + [SMALL_STATE(7525)] = 324723, + [SMALL_STATE(7526)] = 324768, + [SMALL_STATE(7527)] = 324813, + [SMALL_STATE(7528)] = 324858, + [SMALL_STATE(7529)] = 324903, + [SMALL_STATE(7530)] = 324948, + [SMALL_STATE(7531)] = 324993, + [SMALL_STATE(7532)] = 325038, + [SMALL_STATE(7533)] = 325083, + [SMALL_STATE(7534)] = 325128, + [SMALL_STATE(7535)] = 325173, + [SMALL_STATE(7536)] = 325218, + [SMALL_STATE(7537)] = 325263, + [SMALL_STATE(7538)] = 325308, + [SMALL_STATE(7539)] = 325353, + [SMALL_STATE(7540)] = 325398, + [SMALL_STATE(7541)] = 325443, + [SMALL_STATE(7542)] = 325488, + [SMALL_STATE(7543)] = 325533, + [SMALL_STATE(7544)] = 325578, + [SMALL_STATE(7545)] = 325623, + [SMALL_STATE(7546)] = 325668, + [SMALL_STATE(7547)] = 325713, + [SMALL_STATE(7548)] = 325758, + [SMALL_STATE(7549)] = 325803, + [SMALL_STATE(7550)] = 325848, + [SMALL_STATE(7551)] = 325893, + [SMALL_STATE(7552)] = 325938, + [SMALL_STATE(7553)] = 325983, + [SMALL_STATE(7554)] = 326028, + [SMALL_STATE(7555)] = 326073, + [SMALL_STATE(7556)] = 326118, + [SMALL_STATE(7557)] = 326163, + [SMALL_STATE(7558)] = 326208, + [SMALL_STATE(7559)] = 326253, + [SMALL_STATE(7560)] = 326298, + [SMALL_STATE(7561)] = 326343, + [SMALL_STATE(7562)] = 326388, + [SMALL_STATE(7563)] = 326433, + [SMALL_STATE(7564)] = 326478, + [SMALL_STATE(7565)] = 326523, + [SMALL_STATE(7566)] = 326568, + [SMALL_STATE(7567)] = 326613, + [SMALL_STATE(7568)] = 326658, + [SMALL_STATE(7569)] = 326703, + [SMALL_STATE(7570)] = 326748, + [SMALL_STATE(7571)] = 326793, + [SMALL_STATE(7572)] = 326838, + [SMALL_STATE(7573)] = 326883, + [SMALL_STATE(7574)] = 326928, + [SMALL_STATE(7575)] = 326973, + [SMALL_STATE(7576)] = 327018, + [SMALL_STATE(7577)] = 327063, + [SMALL_STATE(7578)] = 327108, + [SMALL_STATE(7579)] = 327153, + [SMALL_STATE(7580)] = 327198, + [SMALL_STATE(7581)] = 327243, + [SMALL_STATE(7582)] = 327288, + [SMALL_STATE(7583)] = 327333, + [SMALL_STATE(7584)] = 327378, + [SMALL_STATE(7585)] = 327423, + [SMALL_STATE(7586)] = 327468, + [SMALL_STATE(7587)] = 327513, + [SMALL_STATE(7588)] = 327558, + [SMALL_STATE(7589)] = 327603, + [SMALL_STATE(7590)] = 327648, + [SMALL_STATE(7591)] = 327693, + [SMALL_STATE(7592)] = 327738, + [SMALL_STATE(7593)] = 327783, + [SMALL_STATE(7594)] = 327828, + [SMALL_STATE(7595)] = 327873, + [SMALL_STATE(7596)] = 327918, + [SMALL_STATE(7597)] = 327963, + [SMALL_STATE(7598)] = 328008, + [SMALL_STATE(7599)] = 328053, + [SMALL_STATE(7600)] = 328098, + [SMALL_STATE(7601)] = 328143, + [SMALL_STATE(7602)] = 328188, + [SMALL_STATE(7603)] = 328233, + [SMALL_STATE(7604)] = 328278, + [SMALL_STATE(7605)] = 328323, + [SMALL_STATE(7606)] = 328368, + [SMALL_STATE(7607)] = 328413, + [SMALL_STATE(7608)] = 328458, + [SMALL_STATE(7609)] = 328503, + [SMALL_STATE(7610)] = 328548, + [SMALL_STATE(7611)] = 328593, + [SMALL_STATE(7612)] = 328638, + [SMALL_STATE(7613)] = 328683, + [SMALL_STATE(7614)] = 328728, + [SMALL_STATE(7615)] = 328773, + [SMALL_STATE(7616)] = 328818, + [SMALL_STATE(7617)] = 328863, + [SMALL_STATE(7618)] = 328908, + [SMALL_STATE(7619)] = 328953, + [SMALL_STATE(7620)] = 328998, + [SMALL_STATE(7621)] = 329043, + [SMALL_STATE(7622)] = 329088, + [SMALL_STATE(7623)] = 329133, + [SMALL_STATE(7624)] = 329178, + [SMALL_STATE(7625)] = 329223, + [SMALL_STATE(7626)] = 329268, + [SMALL_STATE(7627)] = 329313, + [SMALL_STATE(7628)] = 329358, + [SMALL_STATE(7629)] = 329403, + [SMALL_STATE(7630)] = 329448, + [SMALL_STATE(7631)] = 329493, + [SMALL_STATE(7632)] = 329538, + [SMALL_STATE(7633)] = 329583, + [SMALL_STATE(7634)] = 329628, + [SMALL_STATE(7635)] = 329673, + [SMALL_STATE(7636)] = 329718, + [SMALL_STATE(7637)] = 329763, + [SMALL_STATE(7638)] = 329808, + [SMALL_STATE(7639)] = 329853, + [SMALL_STATE(7640)] = 329898, + [SMALL_STATE(7641)] = 329943, + [SMALL_STATE(7642)] = 329988, + [SMALL_STATE(7643)] = 330033, + [SMALL_STATE(7644)] = 330078, + [SMALL_STATE(7645)] = 330123, + [SMALL_STATE(7646)] = 330168, + [SMALL_STATE(7647)] = 330213, + [SMALL_STATE(7648)] = 330258, + [SMALL_STATE(7649)] = 330303, + [SMALL_STATE(7650)] = 330348, + [SMALL_STATE(7651)] = 330393, + [SMALL_STATE(7652)] = 330438, + [SMALL_STATE(7653)] = 330483, + [SMALL_STATE(7654)] = 330528, + [SMALL_STATE(7655)] = 330573, + [SMALL_STATE(7656)] = 330618, + [SMALL_STATE(7657)] = 330663, + [SMALL_STATE(7658)] = 330708, + [SMALL_STATE(7659)] = 330753, + [SMALL_STATE(7660)] = 330798, + [SMALL_STATE(7661)] = 330843, + [SMALL_STATE(7662)] = 330888, + [SMALL_STATE(7663)] = 330933, + [SMALL_STATE(7664)] = 330978, + [SMALL_STATE(7665)] = 331023, + [SMALL_STATE(7666)] = 331068, + [SMALL_STATE(7667)] = 331113, + [SMALL_STATE(7668)] = 331158, + [SMALL_STATE(7669)] = 331203, + [SMALL_STATE(7670)] = 331248, + [SMALL_STATE(7671)] = 331293, + [SMALL_STATE(7672)] = 331338, + [SMALL_STATE(7673)] = 331383, + [SMALL_STATE(7674)] = 331428, + [SMALL_STATE(7675)] = 331473, + [SMALL_STATE(7676)] = 331518, + [SMALL_STATE(7677)] = 331563, + [SMALL_STATE(7678)] = 331608, + [SMALL_STATE(7679)] = 331653, + [SMALL_STATE(7680)] = 331698, + [SMALL_STATE(7681)] = 331743, + [SMALL_STATE(7682)] = 331788, + [SMALL_STATE(7683)] = 331833, + [SMALL_STATE(7684)] = 331878, + [SMALL_STATE(7685)] = 331923, + [SMALL_STATE(7686)] = 331968, + [SMALL_STATE(7687)] = 332013, + [SMALL_STATE(7688)] = 332058, + [SMALL_STATE(7689)] = 332103, + [SMALL_STATE(7690)] = 332148, + [SMALL_STATE(7691)] = 332193, + [SMALL_STATE(7692)] = 332238, + [SMALL_STATE(7693)] = 332283, + [SMALL_STATE(7694)] = 332328, + [SMALL_STATE(7695)] = 332373, + [SMALL_STATE(7696)] = 332418, + [SMALL_STATE(7697)] = 332463, + [SMALL_STATE(7698)] = 332508, + [SMALL_STATE(7699)] = 332553, + [SMALL_STATE(7700)] = 332598, + [SMALL_STATE(7701)] = 332643, + [SMALL_STATE(7702)] = 332688, + [SMALL_STATE(7703)] = 332733, + [SMALL_STATE(7704)] = 332778, + [SMALL_STATE(7705)] = 332823, + [SMALL_STATE(7706)] = 332868, + [SMALL_STATE(7707)] = 332913, + [SMALL_STATE(7708)] = 332958, + [SMALL_STATE(7709)] = 333003, + [SMALL_STATE(7710)] = 333048, + [SMALL_STATE(7711)] = 333093, + [SMALL_STATE(7712)] = 333138, + [SMALL_STATE(7713)] = 333183, + [SMALL_STATE(7714)] = 333228, + [SMALL_STATE(7715)] = 333273, + [SMALL_STATE(7716)] = 333318, + [SMALL_STATE(7717)] = 333363, + [SMALL_STATE(7718)] = 333367, + [SMALL_STATE(7719)] = 333371, + [SMALL_STATE(7720)] = 333375, + [SMALL_STATE(7721)] = 333379, + [SMALL_STATE(7722)] = 333383, + [SMALL_STATE(7723)] = 333387, + [SMALL_STATE(7724)] = 333391, + [SMALL_STATE(7725)] = 333395, + [SMALL_STATE(7726)] = 333399, + [SMALL_STATE(7727)] = 333403, + [SMALL_STATE(7728)] = 333407, + [SMALL_STATE(7729)] = 333411, + [SMALL_STATE(7730)] = 333415, + [SMALL_STATE(7731)] = 333419, + [SMALL_STATE(7732)] = 333423, + [SMALL_STATE(7733)] = 333427, }; 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(7163), - [5] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7071), - [7] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6708), - [9] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7184), - [11] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6806), - [13] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7578), - [15] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7681), - [17] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7588), - [19] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7655), + [3] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7040), + [5] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7044), + [7] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6651), + [9] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7222), + [11] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6796), + [13] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7402), + [15] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7272), + [17] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7395), + [19] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7476), [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(2175), - [27] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3294), - [29] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2174), - [31] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2046), - [33] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2351), - [35] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2498), - [37] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3143), - [39] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3269), + [25] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2168), + [27] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3330), + [29] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2169), + [31] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2029), + [33] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2333), + [35] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2513), + [37] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3121), + [39] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3337), [41] = {.entry = {.count = 1, .reusable = true}}, SHIFT(445), - [43] = {.entry = {.count = 1, .reusable = true}}, SHIFT(510), - [45] = {.entry = {.count = 1, .reusable = false}}, SHIFT(729), - [47] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5836), - [49] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6093), - [51] = {.entry = {.count = 1, .reusable = false}}, SHIFT(580), - [53] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6094), - [55] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6078), - [57] = {.entry = {.count = 1, .reusable = true}}, SHIFT(38), - [59] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6090), - [61] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3539), - [63] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5947), - [65] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3128), - [67] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2093), - [69] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3353), - [71] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2365), - [73] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6769), - [75] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1721), - [77] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3421), - [79] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1721), - [81] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1798), - [83] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2484), - [85] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2167), - [87] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3080), - [89] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2195), - [91] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4614), - [93] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7344), - [95] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7474), - [97] = {.entry = {.count = 1, .reusable = false}}, SHIFT(71), - [99] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7675), - [101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7136), - [103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7325), - [105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2293), - [107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7050), - [109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3465), - [111] = {.entry = {.count = 1, .reusable = false}}, SHIFT(792), - [113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7113), - [115] = {.entry = {.count = 1, .reusable = false}}, SHIFT(296), - [117] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7589), - [119] = {.entry = {.count = 1, .reusable = false}}, SHIFT(592), - [121] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7754), - [123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(177), - [125] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2017), - [127] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4333), - [129] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7567), - [131] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7706), - [133] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7411), - [135] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7455), - [137] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7692), - [139] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3437), - [141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7061), - [143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3437), - [145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6411), - [147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5211), + [43] = {.entry = {.count = 1, .reusable = true}}, SHIFT(500), + [45] = {.entry = {.count = 1, .reusable = false}}, SHIFT(715), + [47] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5846), + [49] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6113), + [51] = {.entry = {.count = 1, .reusable = false}}, SHIFT(646), + [53] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6059), + [55] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6066), + [57] = {.entry = {.count = 1, .reusable = true}}, SHIFT(34), + [59] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6076), + [61] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3519), + [63] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6023), + [65] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3117), + [67] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2087), + [69] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3341), + [71] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2355), + [73] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6960), + [75] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1175), + [77] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3366), + [79] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1175), + [81] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1605), + [83] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2472), + [85] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2161), + [87] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3102), + [89] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2189), + [91] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4541), + [93] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7311), + [95] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7439), + [97] = {.entry = {.count = 1, .reusable = false}}, SHIFT(102), + [99] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7344), + [101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7250), + [103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7411), + [105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2292), + [107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7104), + [109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3483), + [111] = {.entry = {.count = 1, .reusable = false}}, SHIFT(822), + [113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7179), + [115] = {.entry = {.count = 1, .reusable = false}}, SHIFT(286), + [117] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7625), + [119] = {.entry = {.count = 1, .reusable = false}}, SHIFT(638), + [121] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7376), + [123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(169), + [125] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2037), + [127] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4248), + [129] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7696), + [131] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7602), + [133] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7689), + [135] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7628), + [137] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7396), + [139] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3475), + [141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7223), + [143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3475), + [145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6369), + [147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5234), [149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15), - [151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7465), - [153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7740), - [155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7491), - [157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7755), - [159] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3359), - [161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1960), - [163] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2257), - [165] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2491), - [167] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3137), + [151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7549), + [153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7554), + [155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7651), + [157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7438), + [159] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3302), + [161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1944), + [163] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2267), + [165] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2483), + [167] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3129), [169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(444), - [171] = {.entry = {.count = 1, .reusable = false}}, SHIFT(751), - [173] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5843), - [175] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6092), - [177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(31), - [179] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3300), - [181] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6865), - [183] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7449), - [185] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7454), - [187] = {.entry = {.count = 1, .reusable = false}}, SHIFT(103), - [189] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7591), - [191] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7111), - [193] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7592), - [195] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2244), - [197] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7172), - [199] = {.entry = {.count = 1, .reusable = false}}, SHIFT(788), - [201] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7112), - [203] = {.entry = {.count = 1, .reusable = false}}, SHIFT(294), - [205] = {.entry = {.count = 1, .reusable = false}}, SHIFT(593), - [207] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7593), - [209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5251), - [211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1903), - [213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22), - [215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5137), - [217] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_top_level, 3, 0, 57), - [219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1905), - [221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2205), - [223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1902), - [225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(21), - [227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5121), - [229] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_top_level, 4, 0, 57), - [231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2137), - [233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1954), - [235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7126), - [237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2048), - [239] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_compilation_unit, 1, 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(2175), - [246] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compilation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(3294), - [249] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compilation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(2174), - [252] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compilation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(2046), - [255] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compilation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(2351), - [258] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compilation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(2498), - [261] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compilation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(3143), - [264] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compilation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(3269), - [267] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compilation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(445), - [270] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compilation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(510), - [273] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compilation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(729), - [276] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compilation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(5836), - [279] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compilation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(6093), - [282] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compilation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(580), - [285] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compilation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(6094), - [288] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compilation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(6078), - [291] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compilation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(38), - [294] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compilation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(6090), - [297] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compilation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(3539), - [300] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compilation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(5947), - [303] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compilation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(3128), - [306] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compilation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(2093), - [309] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compilation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(3353), - [312] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compilation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(2365), - [315] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compilation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(6769), - [318] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compilation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(1721), - [321] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compilation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(3421), - [324] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compilation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(1721), - [327] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compilation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(1798), - [330] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compilation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(2484), - [333] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compilation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(2167), - [336] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compilation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(3080), - [339] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compilation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(2195), - [342] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compilation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(4614), - [345] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compilation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(7344), - [348] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compilation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(7474), - [351] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compilation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(71), - [354] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compilation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(7675), - [357] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compilation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(7136), - [360] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compilation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(7325), - [363] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compilation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(2293), - [366] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compilation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(7050), - [369] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compilation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(3465), - [372] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compilation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(792), - [375] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compilation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(7113), - [378] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compilation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(296), - [381] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compilation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(7589), - [384] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compilation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(592), - [387] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compilation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(7754), - [390] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compilation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(177), - [393] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compilation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(2017), - [396] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compilation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(4333), - [399] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compilation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(7567), - [402] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compilation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(7706), - [405] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compilation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(7411), - [408] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compilation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(7455), - [411] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compilation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(7692), - [414] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compilation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(3437), - [417] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compilation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(7061), - [420] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compilation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(3437), - [423] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compilation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(6411), - [426] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compilation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(5211), - [429] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compilation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(7465), - [432] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compilation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(7740), - [435] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compilation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(7491), - [438] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compilation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(7755), - [441] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_top_level_repeat1, 2, 0, 0), SHIFT_REPEAT(2175), - [444] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_top_level_repeat1, 2, 0, 0), SHIFT_REPEAT(3359), - [447] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_top_level_repeat1, 2, 0, 0), SHIFT_REPEAT(2174), - [450] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_top_level_repeat1, 2, 0, 0), SHIFT_REPEAT(1960), - [453] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_top_level_repeat1, 2, 0, 0), SHIFT_REPEAT(2257), - [456] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_top_level_repeat1, 2, 0, 0), SHIFT_REPEAT(2491), - [459] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_top_level_repeat1, 2, 0, 0), SHIFT_REPEAT(3137), - [462] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_top_level_repeat1, 2, 0, 0), SHIFT_REPEAT(3269), + [171] = {.entry = {.count = 1, .reusable = false}}, SHIFT(735), + [173] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5797), + [175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(33), + [177] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3305), + [179] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6782), + [181] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7332), + [183] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7333), + [185] = {.entry = {.count = 1, .reusable = false}}, SHIFT(104), + [187] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7536), + [189] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7161), + [191] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7537), + [193] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2240), + [195] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7195), + [197] = {.entry = {.count = 1, .reusable = false}}, SHIFT(820), + [199] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7210), + [201] = {.entry = {.count = 1, .reusable = false}}, SHIFT(287), + [203] = {.entry = {.count = 1, .reusable = false}}, SHIFT(639), + [205] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7538), + [207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5107), + [209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1904), + [211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(20), + [213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5163), + [215] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_top_level, 3, 0, 56), + [217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2197), + [219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1902), + [221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1905), + [223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2041), + [225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22), + [227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5127), + [229] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_top_level, 4, 0, 56), + [231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7260), + [233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2124), + [235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1945), + [237] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_compilation_unit, 1, 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(2168), + [244] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compilation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(3330), + [247] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compilation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(2169), + [250] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compilation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(2029), + [253] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compilation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(2333), + [256] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compilation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(2513), + [259] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compilation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(3121), + [262] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compilation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(3337), + [265] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compilation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(445), + [268] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compilation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(500), + [271] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compilation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(715), + [274] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compilation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(5846), + [277] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compilation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(6113), + [280] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compilation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(646), + [283] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compilation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(6059), + [286] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compilation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(6066), + [289] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compilation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(34), + [292] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compilation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(6076), + [295] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compilation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(3519), + [298] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compilation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(6023), + [301] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compilation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(3117), + [304] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compilation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(2087), + [307] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compilation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(3341), + [310] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compilation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(2355), + [313] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compilation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(6960), + [316] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compilation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(1175), + [319] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compilation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(3366), + [322] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compilation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(1175), + [325] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compilation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(1605), + [328] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compilation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(2472), + [331] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compilation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(2161), + [334] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compilation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(3102), + [337] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compilation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(2189), + [340] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compilation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(4541), + [343] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compilation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(7311), + [346] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compilation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(7439), + [349] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compilation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(102), + [352] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compilation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(7344), + [355] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compilation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(7250), + [358] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compilation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(7411), + [361] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compilation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(2292), + [364] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compilation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(7104), + [367] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compilation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(3483), + [370] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compilation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(822), + [373] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compilation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(7179), + [376] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compilation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(286), + [379] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compilation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(7625), + [382] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compilation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(638), + [385] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compilation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(7376), + [388] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compilation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(169), + [391] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compilation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(2037), + [394] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compilation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(4248), + [397] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compilation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(7696), + [400] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compilation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(7602), + [403] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compilation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(7689), + [406] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compilation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(7628), + [409] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compilation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(7396), + [412] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compilation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(3475), + [415] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compilation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(7223), + [418] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compilation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(3475), + [421] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compilation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(6369), + [424] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compilation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(5234), + [427] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compilation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(7549), + [430] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compilation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(7554), + [433] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compilation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(7651), + [436] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compilation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(7438), + [439] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_compilation_unit, 2, 0, 0), + [441] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_top_level_repeat1, 2, 0, 0), SHIFT_REPEAT(2168), + [444] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_top_level_repeat1, 2, 0, 0), SHIFT_REPEAT(3302), + [447] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_top_level_repeat1, 2, 0, 0), SHIFT_REPEAT(2169), + [450] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_top_level_repeat1, 2, 0, 0), SHIFT_REPEAT(1944), + [453] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_top_level_repeat1, 2, 0, 0), SHIFT_REPEAT(2267), + [456] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_top_level_repeat1, 2, 0, 0), SHIFT_REPEAT(2483), + [459] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_top_level_repeat1, 2, 0, 0), SHIFT_REPEAT(3129), + [462] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_top_level_repeat1, 2, 0, 0), SHIFT_REPEAT(3337), [465] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_top_level_repeat1, 2, 0, 0), SHIFT_REPEAT(444), - [468] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_top_level_repeat1, 2, 0, 0), SHIFT_REPEAT(510), - [471] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_top_level_repeat1, 2, 0, 0), SHIFT_REPEAT(751), - [474] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_top_level_repeat1, 2, 0, 0), SHIFT_REPEAT(5843), - [477] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_top_level_repeat1, 2, 0, 0), SHIFT_REPEAT(6093), - [480] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_top_level_repeat1, 2, 0, 0), SHIFT_REPEAT(580), - [483] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_top_level_repeat1, 2, 0, 0), SHIFT_REPEAT(6094), - [486] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_top_level_repeat1, 2, 0, 0), SHIFT_REPEAT(6092), - [489] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_top_level_repeat1, 2, 0, 0), SHIFT_REPEAT(31), - [492] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_top_level_repeat1, 2, 0, 0), SHIFT_REPEAT(6090), - [495] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_top_level_repeat1, 2, 0, 0), SHIFT_REPEAT(3539), - [498] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_top_level_repeat1, 2, 0, 0), SHIFT_REPEAT(5947), - [501] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_top_level_repeat1, 2, 0, 0), SHIFT_REPEAT(3128), - [504] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_top_level_repeat1, 2, 0, 0), SHIFT_REPEAT(2093), - [507] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_top_level_repeat1, 2, 0, 0), SHIFT_REPEAT(3300), - [510] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_top_level_repeat1, 2, 0, 0), SHIFT_REPEAT(2365), - [513] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_top_level_repeat1, 2, 0, 0), SHIFT_REPEAT(6865), - [516] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_top_level_repeat1, 2, 0, 0), SHIFT_REPEAT(1721), - [519] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_top_level_repeat1, 2, 0, 0), SHIFT_REPEAT(3421), - [522] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_top_level_repeat1, 2, 0, 0), SHIFT_REPEAT(1721), - [525] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_top_level_repeat1, 2, 0, 0), SHIFT_REPEAT(1798), - [528] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_top_level_repeat1, 2, 0, 0), SHIFT_REPEAT(2484), - [531] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_top_level_repeat1, 2, 0, 0), SHIFT_REPEAT(2167), - [534] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_top_level_repeat1, 2, 0, 0), SHIFT_REPEAT(3080), - [537] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_top_level_repeat1, 2, 0, 0), SHIFT_REPEAT(2195), - [540] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_top_level_repeat1, 2, 0, 0), SHIFT_REPEAT(4614), - [543] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_top_level_repeat1, 2, 0, 0), SHIFT_REPEAT(7449), - [546] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_top_level_repeat1, 2, 0, 0), SHIFT_REPEAT(7454), - [549] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_top_level_repeat1, 2, 0, 0), SHIFT_REPEAT(103), - [552] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_top_level_repeat1, 2, 0, 0), SHIFT_REPEAT(7591), - [555] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_top_level_repeat1, 2, 0, 0), SHIFT_REPEAT(7111), - [558] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_top_level_repeat1, 2, 0, 0), SHIFT_REPEAT(7592), - [561] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_top_level_repeat1, 2, 0, 0), SHIFT_REPEAT(2244), - [564] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_top_level_repeat1, 2, 0, 0), SHIFT_REPEAT(7172), - [567] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_top_level_repeat1, 2, 0, 0), SHIFT_REPEAT(3465), - [570] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_top_level_repeat1, 2, 0, 0), SHIFT_REPEAT(788), - [573] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_top_level_repeat1, 2, 0, 0), SHIFT_REPEAT(7112), - [576] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_top_level_repeat1, 2, 0, 0), SHIFT_REPEAT(294), - [579] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_top_level_repeat1, 2, 0, 0), SHIFT_REPEAT(7589), - [582] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_top_level_repeat1, 2, 0, 0), SHIFT_REPEAT(593), - [585] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_top_level_repeat1, 2, 0, 0), SHIFT_REPEAT(7593), - [588] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_top_level_repeat1, 2, 0, 0), SHIFT_REPEAT(177), - [591] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_top_level_repeat1, 2, 0, 0), SHIFT_REPEAT(2017), - [594] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_top_level_repeat1, 2, 0, 0), SHIFT_REPEAT(4333), - [597] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_top_level_repeat1, 2, 0, 0), SHIFT_REPEAT(7567), - [600] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_top_level_repeat1, 2, 0, 0), SHIFT_REPEAT(7706), - [603] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_top_level_repeat1, 2, 0, 0), SHIFT_REPEAT(7411), - [606] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_top_level_repeat1, 2, 0, 0), SHIFT_REPEAT(7455), - [609] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_top_level_repeat1, 2, 0, 0), SHIFT_REPEAT(7692), - [612] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_top_level_repeat1, 2, 0, 0), SHIFT_REPEAT(3437), - [615] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_top_level_repeat1, 2, 0, 0), SHIFT_REPEAT(7061), - [618] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_top_level_repeat1, 2, 0, 0), SHIFT_REPEAT(3437), - [621] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_top_level_repeat1, 2, 0, 0), SHIFT_REPEAT(6411), - [624] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_top_level_repeat1, 2, 0, 0), SHIFT_REPEAT(5251), + [468] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_top_level_repeat1, 2, 0, 0), SHIFT_REPEAT(500), + [471] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_top_level_repeat1, 2, 0, 0), SHIFT_REPEAT(735), + [474] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_top_level_repeat1, 2, 0, 0), SHIFT_REPEAT(5797), + [477] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_top_level_repeat1, 2, 0, 0), SHIFT_REPEAT(6113), + [480] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_top_level_repeat1, 2, 0, 0), SHIFT_REPEAT(646), + [483] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_top_level_repeat1, 2, 0, 0), SHIFT_REPEAT(6059), + [486] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_top_level_repeat1, 2, 0, 0), SHIFT_REPEAT(6066), + [489] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_top_level_repeat1, 2, 0, 0), SHIFT_REPEAT(33), + [492] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_top_level_repeat1, 2, 0, 0), SHIFT_REPEAT(6076), + [495] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_top_level_repeat1, 2, 0, 0), SHIFT_REPEAT(3519), + [498] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_top_level_repeat1, 2, 0, 0), SHIFT_REPEAT(6023), + [501] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_top_level_repeat1, 2, 0, 0), SHIFT_REPEAT(3117), + [504] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_top_level_repeat1, 2, 0, 0), SHIFT_REPEAT(2087), + [507] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_top_level_repeat1, 2, 0, 0), SHIFT_REPEAT(3305), + [510] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_top_level_repeat1, 2, 0, 0), SHIFT_REPEAT(2355), + [513] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_top_level_repeat1, 2, 0, 0), SHIFT_REPEAT(6782), + [516] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_top_level_repeat1, 2, 0, 0), SHIFT_REPEAT(1175), + [519] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_top_level_repeat1, 2, 0, 0), SHIFT_REPEAT(3366), + [522] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_top_level_repeat1, 2, 0, 0), SHIFT_REPEAT(1175), + [525] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_top_level_repeat1, 2, 0, 0), SHIFT_REPEAT(1605), + [528] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_top_level_repeat1, 2, 0, 0), SHIFT_REPEAT(2472), + [531] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_top_level_repeat1, 2, 0, 0), SHIFT_REPEAT(2161), + [534] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_top_level_repeat1, 2, 0, 0), SHIFT_REPEAT(3102), + [537] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_top_level_repeat1, 2, 0, 0), SHIFT_REPEAT(2189), + [540] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_top_level_repeat1, 2, 0, 0), SHIFT_REPEAT(4541), + [543] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_top_level_repeat1, 2, 0, 0), SHIFT_REPEAT(7332), + [546] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_top_level_repeat1, 2, 0, 0), SHIFT_REPEAT(7333), + [549] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_top_level_repeat1, 2, 0, 0), SHIFT_REPEAT(104), + [552] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_top_level_repeat1, 2, 0, 0), SHIFT_REPEAT(7536), + [555] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_top_level_repeat1, 2, 0, 0), SHIFT_REPEAT(7161), + [558] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_top_level_repeat1, 2, 0, 0), SHIFT_REPEAT(7537), + [561] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_top_level_repeat1, 2, 0, 0), SHIFT_REPEAT(2240), + [564] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_top_level_repeat1, 2, 0, 0), SHIFT_REPEAT(7195), + [567] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_top_level_repeat1, 2, 0, 0), SHIFT_REPEAT(3483), + [570] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_top_level_repeat1, 2, 0, 0), SHIFT_REPEAT(820), + [573] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_top_level_repeat1, 2, 0, 0), SHIFT_REPEAT(7210), + [576] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_top_level_repeat1, 2, 0, 0), SHIFT_REPEAT(287), + [579] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_top_level_repeat1, 2, 0, 0), SHIFT_REPEAT(7625), + [582] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_top_level_repeat1, 2, 0, 0), SHIFT_REPEAT(639), + [585] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_top_level_repeat1, 2, 0, 0), SHIFT_REPEAT(7538), + [588] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_top_level_repeat1, 2, 0, 0), SHIFT_REPEAT(169), + [591] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_top_level_repeat1, 2, 0, 0), SHIFT_REPEAT(2037), + [594] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_top_level_repeat1, 2, 0, 0), SHIFT_REPEAT(4248), + [597] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_top_level_repeat1, 2, 0, 0), SHIFT_REPEAT(7696), + [600] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_top_level_repeat1, 2, 0, 0), SHIFT_REPEAT(7602), + [603] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_top_level_repeat1, 2, 0, 0), SHIFT_REPEAT(7689), + [606] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_top_level_repeat1, 2, 0, 0), SHIFT_REPEAT(7628), + [609] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_top_level_repeat1, 2, 0, 0), SHIFT_REPEAT(7396), + [612] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_top_level_repeat1, 2, 0, 0), SHIFT_REPEAT(3475), + [615] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_top_level_repeat1, 2, 0, 0), SHIFT_REPEAT(7223), + [618] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_top_level_repeat1, 2, 0, 0), SHIFT_REPEAT(3475), + [621] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_top_level_repeat1, 2, 0, 0), SHIFT_REPEAT(6369), + [624] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_top_level_repeat1, 2, 0, 0), SHIFT_REPEAT(5107), [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(7465), - [632] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_top_level_repeat1, 2, 0, 0), SHIFT_REPEAT(7740), - [635] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_top_level_repeat1, 2, 0, 0), SHIFT_REPEAT(7491), - [638] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_top_level_repeat1, 2, 0, 0), SHIFT_REPEAT(7755), - [641] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_compilation_unit, 2, 0, 0), + [629] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_top_level_repeat1, 2, 0, 0), SHIFT_REPEAT(7549), + [632] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_top_level_repeat1, 2, 0, 0), SHIFT_REPEAT(7554), + [635] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_top_level_repeat1, 2, 0, 0), SHIFT_REPEAT(7651), + [638] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_top_level_repeat1, 2, 0, 0), SHIFT_REPEAT(7438), + [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 = true}}, REDUCE(sym_preproc_else_in_top_level, 1, 0, 0), - [647] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3870), - [649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2109), - [651] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2549), - [653] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3599), - [655] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3869), - [657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(447), - [659] = {.entry = {.count = 1, .reusable = false}}, SHIFT(784), - [661] = {.entry = {.count = 1, .reusable = false}}, SHIFT(790), - [663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(29), - [665] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_section, 3, 0, 0), - [667] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6515), - [669] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2140), - [671] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3871), - [673] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2546), - [675] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7002), - [677] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7665), - [679] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7671), - [681] = {.entry = {.count = 1, .reusable = false}}, SHIFT(104), - [683] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7302), - [685] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7262), - [687] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7303), - [689] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2275), - [691] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7275), - [693] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_section, 3, 0, 0), - [695] = {.entry = {.count = 1, .reusable = false}}, SHIFT(825), - [697] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7264), - [699] = {.entry = {.count = 1, .reusable = false}}, SHIFT(291), - [701] = {.entry = {.count = 1, .reusable = false}}, SHIFT(649), - [703] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7304), - [705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5135), - [707] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_section, 4, 0, 0), - [709] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_section, 4, 0, 0), - [711] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(2175), - [714] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(3870), - [717] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(2174), - [720] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(2109), - [723] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(2549), - [726] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(3599), - [729] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(3869), - [732] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(447), - [735] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(510), - [738] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(784), - [741] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(790), - [744] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(29), - [747] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), - [749] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(6515), - [752] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(2140), - [755] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(3871), - [758] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(2546), - [761] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(7002), - [764] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(1721), - [767] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(3421), - [770] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(1721), - [773] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(1798), - [776] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(2484), - [779] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(2167), - [782] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(3080), - [785] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(2195), - [788] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(4614), - [791] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(7665), - [794] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(7671), - [797] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(104), - [800] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(7302), - [803] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(7262), - [806] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(7303), - [809] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(2275), - [812] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(7275), - [815] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), - [817] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(3465), - [820] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(825), - [823] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(7264), - [826] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(291), - [829] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(7589), - [832] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(649), - [835] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(7304), - [838] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(177), - [841] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(2017), - [844] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(4333), - [847] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(7567), - [850] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(7706), - [853] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(7411), - [856] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(7455), - [859] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(7692), - [862] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(3437), - [865] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(7061), - [868] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(3437), - [871] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(6411), - [874] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(5135), - [877] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(7465), - [880] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(7740), - [883] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(7491), - [886] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(7755), - [889] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_section, 5, 0, 0), - [891] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_section, 5, 0, 0), - [893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7539), - [895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(494), - [897] = {.entry = {.count = 1, .reusable = false}}, SHIFT(816), - [899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1906), - [901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1283), - [903] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1283), - [905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1704), - [907] = {.entry = {.count = 1, .reusable = false}}, SHIFT(785), - [909] = {.entry = {.count = 1, .reusable = false}}, SHIFT(292), - [911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(162), - [913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5663), - [915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1901), - [917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3089), - [919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7461), - [921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3826), - [923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7485), - [925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3004), - [927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7438), - [929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4622), - [931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7390), - [933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3494), - [935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7380), - [937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3240), - [939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1904), - [941] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_section, 2, 0, 0), - [943] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_section, 2, 0, 0), - [945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3441), - [947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3249), - [949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2892), - [951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2091), - [953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2090), - [955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2882), - [957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2820), - [959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1927), - [961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3816), - [963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2842), - [965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3017), - [967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3829), - [969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1955), - [971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4578), - [973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3021), - [975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1944), - [977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1928), - [979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4634), - [981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3415), - [983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3420), - [985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3445), - [987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3248), - [989] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2545), - [991] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3627), - [993] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3891), - [995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5263), - [997] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2538), - [999] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3603), - [1001] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3833), - [1003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5295), - [1005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7270), - [1007] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2550), - [1009] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3572), - [1011] = {.entry = {.count = 1, .reusable = false}}, SHIFT(769), - [1013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(30), - [1015] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3874), - [1017] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6805), - [1019] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7734), - [1021] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7373), - [1023] = {.entry = {.count = 1, .reusable = false}}, SHIFT(78), - [1025] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7775), - [1027] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7043), - [1029] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7554), - [1031] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2307), - [1033] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7197), - [1035] = {.entry = {.count = 1, .reusable = false}}, SHIFT(771), - [1037] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7051), - [1039] = {.entry = {.count = 1, .reusable = false}}, SHIFT(299), - [1041] = {.entry = {.count = 1, .reusable = false}}, SHIFT(584), - [1043] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7555), - [1045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5239), - [1047] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5902), - [1049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(107), - [1051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4149), - [1053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(131), - [1055] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7486), - [1057] = {.entry = {.count = 1, .reusable = false}}, SHIFT(614), - [1059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(241), - [1061] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3564), - [1063] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1842), - [1065] = {.entry = {.count = 1, .reusable = false}}, SHIFT(699), - [1067] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7450), - [1069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1288), - [1071] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1288), - [1073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1842), - [1075] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2168), - [1077] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2192), - [1079] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1409), - [1081] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1413), - [1083] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3486), - [1085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(181), - [1087] = {.entry = {.count = 1, .reusable = false}}, SHIFT(417), - [1089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5197), - [1091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3462), - [1093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(169), - [1095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(108), - [1097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2393), - [1099] = {.entry = {.count = 1, .reusable = false}}, SHIFT(552), - [1101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3625), - [1103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5790), - [1105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(561), - [1107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1382), - [1109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1382), - [1111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1145), - [1113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2216), - [1115] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2166), - [1117] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4359), - [1119] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1146), - [1121] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1147), - [1123] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6718), - [1125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(165), - [1127] = {.entry = {.count = 1, .reusable = false}}, SHIFT(397), - [1129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5788), - [1131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3777), - [1133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(190), - [1135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3337), - [1137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(191), - [1139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4730), - [1141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(192), - [1143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(135), - [1145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2394), - [1147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2865), - [1149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2638), - [1151] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_expression, 1, 0, 0), - [1153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(449), - [1155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(474), - [1157] = {.entry = {.count = 1, .reusable = false}}, SHIFT(781), - [1159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(605), - [1161] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6466), - [1163] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3640), - [1165] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range_expression, 1, 0, 0), - [1167] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7646), - [1169] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1438), - [1171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1438), - [1173] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3344), - [1175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1437), - [1177] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2609), - [1179] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3228), - [1181] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5882), - [1183] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3275), - [1185] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1573), - [1187] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1576), - [1189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(124), - [1191] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4274), - [1193] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7622), - [1195] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7623), - [1197] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7644), - [1199] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7645), - [1201] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7771), - [1203] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3278), - [1205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7065), - [1207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3278), - [1209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6447), - [1211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5320), - [1213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7724), - [1215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7725), - [1217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7728), - [1219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7731), - [1221] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_expression, 2, 0, 0), - [1223] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range_expression, 2, 0, 0), - [1225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(109), - [1227] = {.entry = {.count = 1, .reusable = false}}, SHIFT(575), - [1229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1469), - [1231] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2201), - [1233] = {.entry = {.count = 1, .reusable = false}}, SHIFT(955), - [1235] = {.entry = {.count = 1, .reusable = false}}, SHIFT(956), - [1237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(243), - [1239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2864), - [1241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(452), - [1243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(456), - [1245] = {.entry = {.count = 1, .reusable = false}}, SHIFT(726), - [1247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(585), - [1249] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6596), - [1251] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3613), - [1253] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7561), - [1255] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1224), - [1257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1224), - [1259] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3024), - [1261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1045), - [1263] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2423), - [1265] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3006), - [1267] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5901), - [1269] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3009), - [1271] = {.entry = {.count = 1, .reusable = false}}, SHIFT(984), - [1273] = {.entry = {.count = 1, .reusable = false}}, SHIFT(986), - [1275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(148), - [1277] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4340), - [1279] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7306), - [1281] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7307), - [1283] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7558), - [1285] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7559), - [1287] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7766), - [1289] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3011), - [1291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7206), - [1293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3011), - [1295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6457), - [1297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5318), - [1299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7629), - [1301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7630), - [1303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7654), - [1305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7660), - [1307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(448), - [1309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(462), - [1311] = {.entry = {.count = 1, .reusable = false}}, SHIFT(754), - [1313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(601), - [1315] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6516), - [1317] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3612), - [1319] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7627), - [1321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1289), - [1323] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2747), - [1325] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3362), - [1327] = {.entry = {.count = 1, .reusable = false}}, SHIFT(924), - [1329] = {.entry = {.count = 1, .reusable = false}}, SHIFT(940), - [1331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(150), - [1333] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4336), - [1335] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7624), - [1337] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7625), - [1339] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7770), - [1341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5319), - [1343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(458), - [1345] = {.entry = {.count = 1, .reusable = false}}, SHIFT(768), - [1347] = {.entry = {.count = 1, .reusable = false}}, SHIFT(835), - [1349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(835), - [1351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1225), - [1353] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1420), - [1355] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1423), - [1357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(151), - [1359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(465), - [1361] = {.entry = {.count = 1, .reusable = false}}, SHIFT(786), - [1363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1393), - [1365] = {.entry = {.count = 1, .reusable = false}}, SHIFT(920), - [1367] = {.entry = {.count = 1, .reusable = false}}, SHIFT(921), - [1369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(152), - [1371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(480), - [1373] = {.entry = {.count = 1, .reusable = false}}, SHIFT(750), - [1375] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1442), - [1377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1442), - [1379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1443), - [1381] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1845), - [1383] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1847), - [1385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(155), - [1387] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2240), - [1389] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2239), - [1391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(446), - [1393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(489), - [1395] = {.entry = {.count = 1, .reusable = false}}, SHIFT(744), - [1397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(594), - [1399] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6583), - [1401] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3621), - [1403] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7599), - [1405] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1803), - [1407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1803), - [1409] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4686), - [1411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1899), - [1413] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3175), - [1415] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2176), - [1417] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4529), - [1419] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2265), - [1421] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5880), - [1423] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4531), - [1425] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1592), - [1427] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1593), - [1429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(160), - [1431] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2142), - [1433] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4338), - [1435] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7594), - [1437] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7595), - [1439] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7596), - [1441] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7597), - [1443] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7768), - [1445] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4536), - [1447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7279), - [1449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4536), - [1451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6414), - [1453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5240), - [1455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7396), - [1457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7397), - [1459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7399), - [1461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7403), - [1463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(478), - [1465] = {.entry = {.count = 1, .reusable = false}}, SHIFT(737), - [1467] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3639), - [1469] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1750), - [1471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1750), - [1473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1220), - [1475] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1544), - [1477] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1545), - [1479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(158), - [1481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(450), - [1483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(506), - [1485] = {.entry = {.count = 1, .reusable = false}}, SHIFT(689), - [1487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(607), - [1489] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1414), - [1491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1414), - [1493] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1703), - [1495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1703), - [1497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(499), - [1499] = {.entry = {.count = 1, .reusable = false}}, SHIFT(821), - [1501] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3586), - [1503] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1712), - [1505] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1713), - [1507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(166), - [1509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(463), - [1511] = {.entry = {.count = 1, .reusable = false}}, SHIFT(709), - [1513] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1407), - [1515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1407), - [1517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1334), - [1519] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1335), - [1521] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1357), - [1523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(167), - [1525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(479), - [1527] = {.entry = {.count = 1, .reusable = false}}, SHIFT(763), - [1529] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3596), - [1531] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1444), - [1533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1444), - [1535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1441), - [1537] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1042), - [1539] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1043), - [1541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(170), - [1543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(490), - [1545] = {.entry = {.count = 1, .reusable = false}}, SHIFT(721), - [1547] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1458), - [1549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1458), - [1551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1459), - [1553] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1375), - [1555] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1376), - [1557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(171), - [1559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(484), - [1561] = {.entry = {.count = 1, .reusable = false}}, SHIFT(787), - [1563] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1456), - [1565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1456), - [1567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1449), - [1569] = {.entry = {.count = 1, .reusable = false}}, SHIFT(926), - [1571] = {.entry = {.count = 1, .reusable = false}}, SHIFT(927), - [1573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(173), - [1575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(501), - [1577] = {.entry = {.count = 1, .reusable = false}}, SHIFT(755), - [1579] = {.entry = {.count = 1, .reusable = false}}, SHIFT(841), - [1581] = {.entry = {.count = 1, .reusable = false}}, SHIFT(842), - [1583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(183), - [1585] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1468), - [1587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1468), - [1589] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1329), - [1591] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1331), - [1593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(493), - [1595] = {.entry = {.count = 1, .reusable = false}}, SHIFT(707), - [1597] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1466), - [1599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1466), - [1601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1465), - [1603] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1269), - [1605] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1270), - [1607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(178), - [1609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(464), - [1611] = {.entry = {.count = 1, .reusable = false}}, SHIFT(749), - [1613] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3644), - [1615] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1333), - [1617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1333), - [1619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1383), - [1621] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1807), - [1623] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1814), - [1625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(179), - [1627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(451), - [1629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(476), - [1631] = {.entry = {.count = 1, .reusable = false}}, SHIFT(734), - [1633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(651), - [1635] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6541), - [1637] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3551), - [1639] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7314), - [1641] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1626), - [1643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1626), - [1645] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3755), - [1647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(836), - [1649] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2913), - [1651] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3873), - [1653] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5881), - [1655] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3875), - [1657] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1510), - [1659] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1511), - [1661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(194), - [1663] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4272), - [1665] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7556), - [1667] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7557), - [1669] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7308), - [1671] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7309), - [1673] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7761), - [1675] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3877), - [1677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7038), - [1679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3877), - [1681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6451), - [1683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5296), - [1685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7370), - [1687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7374), - [1689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7405), - [1691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7406), - [1693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(472), - [1695] = {.entry = {.count = 1, .reusable = false}}, SHIFT(738), - [1697] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3615), - [1699] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1616), - [1701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1616), - [1703] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1552), - [1705] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1553), - [1707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(184), - [1709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5264), - [1711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(471), - [1713] = {.entry = {.count = 1, .reusable = false}}, SHIFT(670), - [1715] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1392), - [1717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1392), - [1719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1431), - [1721] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1020), - [1723] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1021), - [1725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(186), - [1727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(488), - [1729] = {.entry = {.count = 1, .reusable = false}}, SHIFT(741), - [1731] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3619), - [1733] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1631), - [1735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1631), - [1737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1422), - [1739] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1574), - [1741] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1575), - [1743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(198), - [1745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(457), - [1747] = {.entry = {.count = 1, .reusable = false}}, SHIFT(742), - [1749] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1204), - [1751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1204), - [1753] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1327), - [1755] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1332), - [1757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(188), - [1759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(498), - [1761] = {.entry = {.count = 1, .reusable = false}}, SHIFT(799), - [1763] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1836), - [1765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1836), - [1767] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1778), - [1769] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1779), - [1771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(196), - [1773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5272), - [1775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(470), - [1777] = {.entry = {.count = 1, .reusable = false}}, SHIFT(748), - [1779] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1898), - [1781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1898), - [1783] = {.entry = {.count = 1, .reusable = false}}, SHIFT(832), - [1785] = {.entry = {.count = 1, .reusable = false}}, SHIFT(833), - [1787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(199), - [1789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(473), - [1791] = {.entry = {.count = 1, .reusable = false}}, SHIFT(687), - [1793] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1400), - [1795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1400), - [1797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1433), - [1799] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1119), - [1801] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1120), - [1803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(200), - [1805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(477), - [1807] = {.entry = {.count = 1, .reusable = false}}, SHIFT(697), - [1809] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3620), - [1811] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1434), - [1813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1434), - [1815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1439), - [1817] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1200), - [1819] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1201), - [1821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(204), - [1823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(492), - [1825] = {.entry = {.count = 1, .reusable = false}}, SHIFT(698), - [1827] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3578), - [1829] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1464), - [1831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1464), - [1833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1463), - [1835] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1206), - [1837] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1207), - [1839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(205), - [1841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(497), - [1843] = {.entry = {.count = 1, .reusable = false}}, SHIFT(805), - [1845] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3628), - [1847] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1835), - [1849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1835), - [1851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1401), - [1853] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1810), - [1855] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1811), - [1857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(219), - [1859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(511), - [1861] = {.entry = {.count = 1, .reusable = false}}, SHIFT(671), - [1863] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3589), - [1865] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1454), - [1867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1454), - [1869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1457), - [1871] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1025), - [1873] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1026), - [1875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(207), - [1877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(487), - [1879] = {.entry = {.count = 1, .reusable = false}}, SHIFT(713), - [1881] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3622), - [1883] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1450), - [1885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1450), - [1887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1455), - [1889] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1325), - [1891] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1326), - [1893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(209), - [1895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(486), - [1897] = {.entry = {.count = 1, .reusable = false}}, SHIFT(706), - [1899] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3641), - [1901] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1446), - [1903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1446), - [1905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1453), - [1907] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1263), - [1909] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1264), - [1911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(214), - [1913] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_list_pattern_repeat1, 2, 0, 0), - [1915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(491), - [1917] = {.entry = {.count = 1, .reusable = false}}, SHIFT(688), - [1919] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3563), - [1921] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1462), - [1923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1462), - [1925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1461), - [1927] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1125), - [1929] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1126), - [1931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(215), - [1933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(475), - [1935] = {.entry = {.count = 1, .reusable = false}}, SHIFT(733), - [1937] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3576), - [1939] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1623), - [1941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1623), - [1943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1286), - [1945] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1492), - [1947] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1493), - [1949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(220), - [1951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7605), - [1953] = {.entry = {.count = 1, .reusable = false}}, SHIFT(820), - [1955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2442), - [1957] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_default_expression, 4, 0, 26), - [1959] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_default_expression, 4, 0, 26), - [1961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(455), - [1963] = {.entry = {.count = 1, .reusable = false}}, SHIFT(714), - [1965] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1044), - [1967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1044), - [1969] = {.entry = {.count = 1, .reusable = false}}, SHIFT(839), - [1971] = {.entry = {.count = 1, .reusable = false}}, SHIFT(844), - [1973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(225), - [1975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7166), - [1977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(495), - [1979] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_default_expression, 1, 0, 0), - [1981] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_default_expression, 1, 0, 0), - [1983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7293), - [1985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(116), - [1987] = {.entry = {.count = 1, .reusable = false}}, SHIFT(770), - [1989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3099), - [1991] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1627), - [1993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1627), - [1995] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2220), - [1997] = {.entry = {.count = 1, .reusable = false}}, SHIFT(383), - [1999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7562), - [2001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2886), - [2003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1941), - [2005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2014), - [2007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7300), - [2009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4552), - [2011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7319), - [2013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2858), - [2015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(502), - [2017] = {.entry = {.count = 1, .reusable = false}}, SHIFT(801), - [2019] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1657), - [2021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1657), - [2023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7696), - [2025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3473), - [2027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7329), - [2029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3339), - [2031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(485), - [2033] = {.entry = {.count = 1, .reusable = false}}, SHIFT(694), - [2035] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1460), - [2037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1460), - [2039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1451), - [2041] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1183), - [2043] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1184), - [2045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(235), - [2047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(508), - [2049] = {.entry = {.count = 1, .reusable = false}}, SHIFT(715), - [2051] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1440), - [2053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1440), - [2055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1435), - [2057] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1336), - [2059] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1337), - [2061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(237), - [2063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2115), - [2065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7490), - [2067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3721), - [2069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7715), - [2071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2593), - [2073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7652), - [2075] = {.entry = {.count = 1, .reusable = false}}, SHIFT(719), - [2077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2850), - [2079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(468), - [2081] = {.entry = {.count = 1, .reusable = false}}, SHIFT(677), - [2083] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1432), - [2085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1432), - [2087] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1139), - [2089] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1170), - [2091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(244), - [2093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(454), - [2095] = {.entry = {.count = 1, .reusable = false}}, SHIFT(800), - [2097] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1633), - [2099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1633), - [2101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1612), - [2103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1613), - [2105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(246), - [2107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5136), - [2109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7296), - [2111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2422), - [2113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(496), - [2115] = {.entry = {.count = 1, .reusable = false}}, SHIFT(796), - [2117] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1834), - [2119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1834), - [2121] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1756), - [2123] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1757), - [2125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(249), - [2127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5252), - [2129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7519), - [2131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2987), - [2133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2432), - [2135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3104), - [2137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3428), - [2139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3451), - [2141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(482), - [2143] = {.entry = {.count = 1, .reusable = false}}, SHIFT(823), - [2145] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3609), - [2147] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1448), - [2149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1448), - [2151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1445), - [2153] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1001), - [2155] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1002), - [2157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(256), - [2159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(453), - [2161] = {.entry = {.count = 1, .reusable = false}}, SHIFT(700), - [2163] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3562), - [2165] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1427), - [2167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1427), - [2169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1408), - [2171] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1227), - [2173] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1228), + [645] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3821), + [647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2126), + [649] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2538), + [651] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3627), + [653] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3820), + [655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(448), + [657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7381), + [659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(494), + [661] = {.entry = {.count = 1, .reusable = false}}, SHIFT(791), + [663] = {.entry = {.count = 1, .reusable = false}}, SHIFT(669), + [665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(32), + [667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3766), + [669] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6453), + [671] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2135), + [673] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3823), + [675] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2531), + [677] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6912), + [679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(973), + [681] = {.entry = {.count = 1, .reusable = false}}, SHIFT(973), + [683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(830), + [685] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7532), + [687] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7545), + [689] = {.entry = {.count = 1, .reusable = false}}, SHIFT(103), + [691] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7652), + [693] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7214), + [695] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7653), + [697] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2253), + [699] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7120), + [701] = {.entry = {.count = 1, .reusable = false}}, SHIFT(799), + [703] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7216), + [705] = {.entry = {.count = 1, .reusable = false}}, SHIFT(288), + [707] = {.entry = {.count = 1, .reusable = false}}, SHIFT(660), + [709] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7661), + [711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(161), + [713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5265), + [715] = {.entry = {.count = 1, .reusable = false}}, SHIFT(716), + [717] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_section, 2, 0, 0), + [719] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_section, 2, 0, 0), + [721] = {.entry = {.count = 1, .reusable = false}}, SHIFT(738), + [723] = {.entry = {.count = 1, .reusable = false}}, SHIFT(300), + [725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7433), + [727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5698), + [729] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_section, 4, 0, 0), + [731] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_section, 4, 0, 0), + [733] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(2168), + [736] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(3821), + [739] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(2169), + [742] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(2126), + [745] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(2538), + [748] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(3627), + [751] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(3820), + [754] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(448), + [757] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(500), + [760] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(791), + [763] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(716), + [766] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(32), + [769] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), + [771] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(6453), + [774] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(2135), + [777] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(3823), + [780] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(2531), + [783] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(6912), + [786] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(1175), + [789] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(3366), + [792] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(1175), + [795] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(1605), + [798] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(2472), + [801] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(2161), + [804] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(3102), + [807] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(2189), + [810] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(4541), + [813] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(7532), + [816] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(7545), + [819] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(103), + [822] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(7652), + [825] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(7214), + [828] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(7653), + [831] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(2253), + [834] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(7120), + [837] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), + [839] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(3483), + [842] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(738), + [845] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(7216), + [848] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(300), + [851] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(7625), + [854] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(660), + [857] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(7661), + [860] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(169), + [863] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(2037), + [866] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(4248), + [869] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(7696), + [872] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(7602), + [875] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(7689), + [878] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(7628), + [881] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(7396), + [884] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(3475), + [887] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(7223), + [890] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(3475), + [893] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(6369), + [896] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(5265), + [899] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(7549), + [902] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(7554), + [905] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(7651), + [908] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(7438), + [911] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_section, 3, 0, 0), + [913] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_section, 3, 0, 0), + [915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3091), + [917] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_section, 5, 0, 0), + [919] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_section, 5, 0, 0), + [921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1906), + [923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1901), + [925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1903), + [927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7626), + [929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2981), + [931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7282), + [933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4537), + [935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7452), + [937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3412), + [939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7590), + [941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3235), + [943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2865), + [945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3244), + [947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2086), + [949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1949), + [951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1932), + [953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2084), + [955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2878), + [957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2749), + [959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1928), + [961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3731), + [963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2667), + [965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2994), + [967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3787), + [969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4518), + [971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2995), + [973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1924), + [975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4540), + [977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3464), + [979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3465), + [981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3428), + [983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3350), + [985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3243), + [987] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2534), + [989] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3628), + [991] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3710), + [993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5302), + [995] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2518), + [997] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3624), + [999] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3856), + [1001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5296), + [1003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7184), + [1005] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2533), + [1007] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3632), + [1009] = {.entry = {.count = 1, .reusable = false}}, SHIFT(691), + [1011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(25), + [1013] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3813), + [1015] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6872), + [1017] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7287), + [1019] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7290), + [1021] = {.entry = {.count = 1, .reusable = false}}, SHIFT(75), + [1023] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7501), + [1025] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7067), + [1027] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7502), + [1029] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2301), + [1031] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7105), + [1033] = {.entry = {.count = 1, .reusable = false}}, SHIFT(714), + [1035] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7070), + [1037] = {.entry = {.count = 1, .reusable = false}}, SHIFT(295), + [1039] = {.entry = {.count = 1, .reusable = false}}, SHIFT(582), + [1041] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7503), + [1043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5291), + [1045] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5878), + [1047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(108), + [1049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3343), + [1051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(129), + [1053] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7300), + [1055] = {.entry = {.count = 1, .reusable = false}}, SHIFT(634), + [1057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(232), + [1059] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3544), + [1061] = {.entry = {.count = 1, .reusable = false}}, SHIFT(861), + [1063] = {.entry = {.count = 1, .reusable = false}}, SHIFT(694), + [1065] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7663), + [1067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1449), + [1069] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1449), + [1071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(861), + [1073] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2162), + [1075] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2182), + [1077] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1177), + [1079] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1180), + [1081] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3429), + [1083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(193), + [1085] = {.entry = {.count = 1, .reusable = false}}, SHIFT(434), + [1087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5259), + [1089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(109), + [1091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5775), + [1093] = {.entry = {.count = 1, .reusable = false}}, SHIFT(551), + [1095] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3562), + [1097] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5782), + [1099] = {.entry = {.count = 1, .reusable = false}}, SHIFT(548), + [1101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1536), + [1103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1536), + [1105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1320), + [1107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2211), + [1109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2159), + [1111] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4431), + [1113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1321), + [1115] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1322), + [1117] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6699), + [1119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(163), + [1121] = {.entry = {.count = 1, .reusable = false}}, SHIFT(412), + [1123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3474), + [1125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(176), + [1127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2389), + [1129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4163), + [1131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(203), + [1133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3857), + [1135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(192), + [1137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4759), + [1139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(194), + [1141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(134), + [1143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2381), + [1145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2612), + [1147] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_expression, 2, 0, 0), + [1149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(446), + [1151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(473), + [1153] = {.entry = {.count = 1, .reusable = false}}, SHIFT(757), + [1155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(620), + [1157] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6591), + [1159] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3603), + [1161] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range_expression, 2, 0, 0), + [1163] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7589), + [1165] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1573), + [1167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1573), + [1169] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3225), + [1171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1572), + [1173] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2602), + [1175] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3236), + [1177] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5863), + [1179] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3269), + [1181] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1777), + [1183] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1778), + [1185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(132), + [1187] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4246), + [1189] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7566), + [1191] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7567), + [1193] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7587), + [1195] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7588), + [1197] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7713), + [1199] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3272), + [1201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7033), + [1203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3272), + [1205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6450), + [1207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5219), + [1209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7617), + [1211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7619), + [1213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7621), + [1215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7623), + [1217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2859), + [1219] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_expression, 1, 0, 0), + [1221] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range_expression, 1, 0, 0), + [1223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(107), + [1225] = {.entry = {.count = 1, .reusable = false}}, SHIFT(575), + [1227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1603), + [1229] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2192), + [1231] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1158), + [1233] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1159), + [1235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(239), + [1237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2855), + [1239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(450), + [1241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(455), + [1243] = {.entry = {.count = 1, .reusable = false}}, SHIFT(817), + [1245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(583), + [1247] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6536), + [1249] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3618), + [1251] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7509), + [1253] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1392), + [1255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1392), + [1257] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3029), + [1259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1235), + [1261] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2415), + [1263] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3035), + [1265] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5880), + [1267] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3036), + [1269] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1410), + [1271] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1412), + [1273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(147), + [1275] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4276), + [1277] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7669), + [1279] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7671), + [1281] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7506), + [1283] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7507), + [1285] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7708), + [1287] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3037), + [1289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7108), + [1291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3037), + [1293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6373), + [1295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5311), + [1297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7449), + [1299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7472), + [1301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7576), + [1303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7577), + [1305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(452), + [1307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(461), + [1309] = {.entry = {.count = 1, .reusable = false}}, SHIFT(805), + [1311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(584), + [1313] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6608), + [1315] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3552), + [1317] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7571), + [1319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1450), + [1321] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2815), + [1323] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3462), + [1325] = {.entry = {.count = 1, .reusable = false}}, SHIFT(934), + [1327] = {.entry = {.count = 1, .reusable = false}}, SHIFT(935), + [1329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(149), + [1331] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4298), + [1333] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7568), + [1335] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7569), + [1337] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7712), + [1339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5312), + [1341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(479), + [1343] = {.entry = {.count = 1, .reusable = false}}, SHIFT(733), + [1345] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1577), + [1347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1577), + [1349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1578), + [1351] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1046), + [1353] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1047), + [1355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(151), + [1357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(464), + [1359] = {.entry = {.count = 1, .reusable = false}}, SHIFT(796), + [1361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1542), + [1363] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1134), + [1365] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1135), + [1367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(154), + [1369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(457), + [1371] = {.entry = {.count = 1, .reusable = false}}, SHIFT(724), + [1373] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1065), + [1375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1065), + [1377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1393), + [1379] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1747), + [1381] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1748), + [1383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(153), + [1385] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2229), + [1387] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2226), + [1389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(451), + [1391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(489), + [1393] = {.entry = {.count = 1, .reusable = false}}, SHIFT(806), + [1395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(640), + [1397] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6594), + [1399] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3625), + [1401] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7544), + [1403] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1851), + [1405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1851), + [1407] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4670), + [1409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(879), + [1411] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3144), + [1413] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2177), + [1415] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4573), + [1417] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2244), + [1419] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5861), + [1421] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4574), + [1423] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1702), + [1425] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1703), + [1427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(157), + [1429] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2136), + [1431] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4272), + [1433] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7539), + [1435] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7540), + [1437] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7541), + [1439] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7542), + [1441] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7710), + [1443] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4575), + [1445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7239), + [1447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4575), + [1449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6411), + [1451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5292), + [1453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7432), + [1455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7434), + [1457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7435), + [1459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7436), + [1461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(477), + [1463] = {.entry = {.count = 1, .reusable = false}}, SHIFT(785), + [1465] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3569), + [1467] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1813), + [1469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1813), + [1471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1068), + [1473] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1659), + [1475] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1660), + [1477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(158), + [1479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(449), + [1481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(589), + [1483] = {.entry = {.count = 1, .reusable = false}}, SHIFT(829), + [1485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(829), + [1487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(505), + [1489] = {.entry = {.count = 1, .reusable = false}}, SHIFT(746), + [1491] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1555), + [1493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1555), + [1495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(462), + [1497] = {.entry = {.count = 1, .reusable = false}}, SHIFT(764), + [1499] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1551), + [1501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1551), + [1503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1498), + [1505] = {.entry = {.count = 1, .reusable = false}}, SHIFT(898), + [1507] = {.entry = {.count = 1, .reusable = false}}, SHIFT(899), + [1509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(165), + [1511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(499), + [1513] = {.entry = {.count = 1, .reusable = false}}, SHIFT(740), + [1515] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3597), + [1517] = {.entry = {.count = 1, .reusable = false}}, SHIFT(833), + [1519] = {.entry = {.count = 1, .reusable = false}}, SHIFT(834), + [1521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(168), + [1523] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1602), + [1525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1602), + [1527] = {.entry = {.count = 1, .reusable = false}}, SHIFT(976), + [1529] = {.entry = {.count = 1, .reusable = false}}, SHIFT(977), + [1531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(483), + [1533] = {.entry = {.count = 1, .reusable = false}}, SHIFT(808), + [1535] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3593), + [1537] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1591), + [1539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1591), + [1541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1584), + [1543] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1140), + [1545] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1141), + [1547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(197), + [1549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(493), + [1551] = {.entry = {.count = 1, .reusable = false}}, SHIFT(813), + [1553] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1601), + [1555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1601), + [1557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1600), + [1559] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1433), + [1561] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1900), + [1563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(171), + [1565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(469), + [1567] = {.entry = {.count = 1, .reusable = false}}, SHIFT(789), + [1569] = {.entry = {.count = 1, .reusable = false}}, SHIFT(878), + [1571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(878), + [1573] = {.entry = {.count = 1, .reusable = false}}, SHIFT(917), + [1575] = {.entry = {.count = 1, .reusable = false}}, SHIFT(918), + [1577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(174), + [1579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(463), + [1581] = {.entry = {.count = 1, .reusable = false}}, SHIFT(731), + [1583] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3604), + [1585] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1497), + [1587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1497), + [1589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1537), + [1591] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1041), + [1593] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1042), + [1595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(202), + [1597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(478), + [1599] = {.entry = {.count = 1, .reusable = false}}, SHIFT(711), + [1601] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1579), + [1603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1579), + [1605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1576), + [1607] = {.entry = {.count = 1, .reusable = false}}, SHIFT(953), + [1609] = {.entry = {.count = 1, .reusable = false}}, SHIFT(954), + [1611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(178), + [1613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(490), + [1615] = {.entry = {.count = 1, .reusable = false}}, SHIFT(790), + [1617] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1593), + [1619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1593), + [1621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1594), + [1623] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1532), + [1625] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1533), + [1627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(180), + [1629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(453), + [1631] = {.entry = {.count = 1, .reusable = false}}, SHIFT(745), + [1633] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1069), + [1635] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1070), + [1637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(182), + [1639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(470), + [1641] = {.entry = {.count = 1, .reusable = false}}, SHIFT(678), + [1643] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1541), + [1645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1541), + [1647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1566), + [1649] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1214), + [1651] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1215), + [1653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(183), + [1655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(447), + [1657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(475), + [1659] = {.entry = {.count = 1, .reusable = false}}, SHIFT(756), + [1661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(664), + [1663] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6609), + [1665] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3601), + [1667] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7682), + [1669] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1733), + [1671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1733), + [1673] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3844), + [1675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1066), + [1677] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2906), + [1679] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3836), + [1681] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5891), + [1683] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3840), + [1685] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1631), + [1687] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1632), + [1689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(196), + [1691] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4285), + [1693] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7504), + [1695] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7505), + [1697] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7672), + [1699] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7673), + [1701] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7703), + [1703] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3843), + [1705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7197), + [1707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3843), + [1709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6446), + [1711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5303), + [1713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7518), + [1715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7526), + [1717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7550), + [1719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7553), + [1721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(472), + [1723] = {.entry = {.count = 1, .reusable = false}}, SHIFT(741), + [1725] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1545), + [1727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1545), + [1729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1568), + [1731] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1295), + [1733] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1296), + [1735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(187), + [1737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(471), + [1739] = {.entry = {.count = 1, .reusable = false}}, SHIFT(786), + [1741] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3547), + [1743] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1725), + [1745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1725), + [1747] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1664), + [1749] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1665), + [1751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(188), + [1753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5297), + [1755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(487), + [1757] = {.entry = {.count = 1, .reusable = false}}, SHIFT(800), + [1759] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3620), + [1761] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1735), + [1763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1735), + [1765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1560), + [1767] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1684), + [1769] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1685), + [1771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(200), + [1773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(456), + [1775] = {.entry = {.count = 1, .reusable = false}}, SHIFT(699), + [1777] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1067), + [1779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1067), + [1781] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1674), + [1783] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1679), + [1785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(195), + [1787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(498), + [1789] = {.entry = {.count = 1, .reusable = false}}, SHIFT(770), + [1791] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1876), + [1793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1876), + [1795] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1833), + [1797] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1834), + [1799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(198), + [1801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5299), + [1803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(485), + [1805] = {.entry = {.count = 1, .reusable = false}}, SHIFT(812), + [1807] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3561), + [1809] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1581), + [1811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1581), + [1813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1588), + [1815] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1429), + [1817] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1430), + [1819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(204), + [1821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(491), + [1823] = {.entry = {.count = 1, .reusable = false}}, SHIFT(742), + [1825] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3580), + [1827] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1597), + [1829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1597), + [1831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1596), + [1833] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1302), + [1835] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1303), + [1837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(205), + [1839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(476), + [1841] = {.entry = {.count = 1, .reusable = false}}, SHIFT(778), + [1843] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3573), + [1845] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1569), + [1847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1569), + [1849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1574), + [1851] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1371), + [1853] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1372), + [1855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(207), + [1857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(492), + [1859] = {.entry = {.count = 1, .reusable = false}}, SHIFT(782), + [1861] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3591), + [1863] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1599), + [1865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1599), + [1867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1598), + [1869] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1376), + [1871] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1377), + [1873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(209), + [1875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(486), + [1877] = {.entry = {.count = 1, .reusable = false}}, SHIFT(670), + [1879] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3574), + [1881] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1585), + [1883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1585), + [1885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1590), + [1887] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1490), + [1889] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1491), + [1891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(212), + [1893] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_list_pattern_repeat1, 2, 0, 0), + [1895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(474), + [1897] = {.entry = {.count = 1, .reusable = false}}, SHIFT(753), + [1899] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3541), + [1901] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1731), + [1903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1731), + [1905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(974), + [1907] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1615), + [1909] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1616), + [1911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(218), + [1913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(488), + [1915] = {.entry = {.count = 1, .reusable = false}}, SHIFT(680), + [1917] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3545), + [1919] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1589), + [1921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1589), + [1923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1592), + [1925] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1218), + [1927] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1219), + [1929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(216), + [1931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(497), + [1933] = {.entry = {.count = 1, .reusable = false}}, SHIFT(780), + [1935] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3556), + [1937] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1875), + [1939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1875), + [1941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1546), + [1943] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1855), + [1945] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1856), + [1947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(220), + [1949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(484), + [1951] = {.entry = {.count = 1, .reusable = false}}, SHIFT(768), + [1953] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1595), + [1955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1595), + [1957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1586), + [1959] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1353), + [1961] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1354), + [1963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(240), + [1965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(508), + [1967] = {.entry = {.count = 1, .reusable = false}}, SHIFT(684), + [1969] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1575), + [1971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1575), + [1973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1570), + [1975] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1500), + [1977] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1501), + [1979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(222), + [1981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7510), + [1983] = {.entry = {.count = 1, .reusable = false}}, SHIFT(760), + [1985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2839), + [1987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7368), + [1989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(122), + [1991] = {.entry = {.count = 1, .reusable = false}}, SHIFT(815), + [1993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3883), + [1995] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1002), + [1997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1002), + [1999] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2208), + [2001] = {.entry = {.count = 1, .reusable = false}}, SHIFT(328), + [2003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7358), + [2005] = {.entry = {.count = 1, .reusable = false}}, SHIFT(707), + [2007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2414), + [2009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(501), + [2011] = {.entry = {.count = 1, .reusable = false}}, SHIFT(675), + [2013] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1746), + [2015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1746), + [2017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7365), + [2019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3496), + [2021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7268), + [2023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3071), + [2025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2053), + [2027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(510), + [2029] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_default_expression, 1, 0, 0), + [2031] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_default_expression, 1, 0, 0), + [2033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7175), + [2035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7403), + [2037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2559), + [2039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7684), + [2041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2436), + [2043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(467), + [2045] = {.entry = {.count = 1, .reusable = false}}, SHIFT(754), + [2047] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1567), + [2049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1567), + [2051] = {.entry = {.count = 1, .reusable = false}}, SHIFT(892), + [2053] = {.entry = {.count = 1, .reusable = false}}, SHIFT(893), + [2055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(234), + [2057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7486), + [2059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3009), + [2061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(454), + [2063] = {.entry = {.count = 1, .reusable = false}}, SHIFT(708), + [2065] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1234), + [2067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1234), + [2069] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1239), + [2071] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1247), + [2073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(236), + [2075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7490), + [2077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2861), + [2079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2116), + [2081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(481), + [2083] = {.entry = {.count = 1, .reusable = false}}, SHIFT(771), + [2085] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1736), + [2087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1736), + [2089] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1722), + [2091] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1723), + [2093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(242), + [2095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5266), + [2097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7471), + [2099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4642), + [2101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(496), + [2103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(763), + [2105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1874), + [2107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1874), + [2109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1816), + [2111] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1817), + [2113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(245), + [2115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5294), + [2117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7267), + [2119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2845), + [2121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7301), + [2123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3306), + [2125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1957), + [2127] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_default_expression, 4, 0, 27), + [2129] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_default_expression, 4, 0, 27), + [2131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3096), + [2133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2844), + [2135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(507), + [2137] = {.entry = {.count = 1, .reusable = false}}, SHIFT(816), + [2139] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3592), + [2141] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1565), + [2143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1565), + [2145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1556), + [2147] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1451), + [2149] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1452), + [2151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(259), + [2153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3378), + [2155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3061), + [2157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3505), + [2159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(511), + [2161] = {.entry = {.count = 1, .reusable = false}}, SHIFT(803), + [2163] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3610), + [2165] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1583), + [2167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1583), + [2169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1580), + [2171] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1196), + [2173] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1197), [2175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(258), - [2177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(503), - [2179] = {.entry = {.count = 1, .reusable = false}}, SHIFT(673), - [2181] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3553), - [2183] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1144), - [2185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1144), - [2187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(950), - [2189] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1049), - [2191] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1050), - [2193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(271), - [2195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(467), - [2197] = {.entry = {.count = 1, .reusable = false}}, SHIFT(745), - [2199] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1421), - [2201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1421), - [2203] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1696), - [2205] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1697), - [2207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(260), - [2209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3241), - [2211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3243), - [2213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(483), - [2215] = {.entry = {.count = 1, .reusable = false}}, SHIFT(684), - [2217] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3633), - [2219] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1452), - [2221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1452), - [2223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1447), - [2225] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1101), - [2227] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1102), - [2229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(263), - [2231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(507), - [2233] = {.entry = {.count = 1, .reusable = false}}, SHIFT(708), - [2235] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3594), - [2237] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1430), - [2239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1430), - [2241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1415), - [2243] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1290), - [2245] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1291), - [2247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(265), - [2249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2448), - [2251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(500), - [2253] = {.entry = {.count = 1, .reusable = false}}, SHIFT(818), - [2255] = {.entry = {.count = 1, .reusable = false}}, SHIFT(949), - [2257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(949), - [2259] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1244), - [2261] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1267), - [2263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(269), - [2265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3107), - [2267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3031), - [2269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3751), - [2271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2854), - [2273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3754), - [2275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4651), - [2277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2856), - [2279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4679), - [2281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(469), - [2283] = {.entry = {.count = 1, .reusable = false}}, SHIFT(774), - [2285] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3647), - [2287] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1436), - [2289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1436), - [2291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1428), - [2293] = {.entry = {.count = 1, .reusable = false}}, SHIFT(900), - [2295] = {.entry = {.count = 1, .reusable = false}}, SHIFT(901), - [2297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(281), - [2299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3063), - [2301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3797), - [2303] = {.entry = {.count = 1, .reusable = false}}, SHIFT(692), - [2305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(212), - [2307] = {.entry = {.count = 1, .reusable = false}}, SHIFT(723), - [2309] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2172), - [2311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4137), - [2313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4518), - [2315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4129), - [2317] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2540), - [2319] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2533), - [2321] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7324), - [2323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3477), - [2325] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2531), - [2327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3308), - [2329] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2544), - [2331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3335), - [2333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4515), - [2335] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2524), - [2337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3794), - [2339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3397), - [2341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(112), - [2343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(118), - [2345] = {.entry = {.count = 1, .reusable = false}}, SHIFT(776), - [2347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(231), - [2349] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6584), - [2351] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1406), - [2353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1406), - [2355] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2173), - [2357] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2200), - [2359] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2785), - [2361] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4631), - [2363] = {.entry = {.count = 1, .reusable = false}}, SHIFT(344), - [2365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(111), - [2367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(127), - [2369] = {.entry = {.count = 1, .reusable = false}}, SHIFT(756), - [2371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(221), - [2373] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1006), - [2375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1006), - [2377] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2165), - [2379] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2169), - [2381] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2374), - [2383] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3295), - [2385] = {.entry = {.count = 1, .reusable = false}}, SHIFT(431), - [2387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(119), - [2389] = {.entry = {.count = 1, .reusable = false}}, SHIFT(752), - [2391] = {.entry = {.count = 1, .reusable = false}}, SHIFT(827), - [2393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(827), - [2395] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2170), - [2397] = {.entry = {.count = 1, .reusable = false}}, SHIFT(432), - [2399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(138), - [2401] = {.entry = {.count = 1, .reusable = false}}, SHIFT(722), - [2403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(227), - [2405] = {.entry = {.count = 1, .reusable = false}}, SHIFT(875), - [2407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(875), - [2409] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2178), - [2411] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2213), - [2413] = {.entry = {.count = 1, .reusable = false}}, SHIFT(400), - [2415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(110), - [2417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(113), - [2419] = {.entry = {.count = 1, .reusable = false}}, SHIFT(902), - [2421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(902), - [2423] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2210), - [2425] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2863), - [2427] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3774), - [2429] = {.entry = {.count = 1, .reusable = false}}, SHIFT(325), - [2431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(133), - [2433] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2171), - [2435] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2405), - [2437] = {.entry = {.count = 1, .reusable = false}}, SHIFT(388), - [2439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(139), - [2441] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1078), - [2443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1078), - [2445] = {.entry = {.count = 1, .reusable = false}}, SHIFT(310), - [2447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(130), - [2449] = {.entry = {.count = 1, .reusable = false}}, SHIFT(725), - [2451] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1262), - [2453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1262), - [2455] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2221), - [2457] = {.entry = {.count = 1, .reusable = false}}, SHIFT(442), - [2459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(122), - [2461] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1710), - [2463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1710), - [2465] = {.entry = {.count = 1, .reusable = false}}, SHIFT(326), - [2467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(126), - [2469] = {.entry = {.count = 1, .reusable = false}}, SHIFT(906), - [2471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(906), - [2473] = {.entry = {.count = 1, .reusable = false}}, SHIFT(358), - [2475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(106), - [2477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(123), - [2479] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1652), - [2481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1652), - [2483] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2223), - [2485] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2894), - [2487] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4132), - [2489] = {.entry = {.count = 1, .reusable = false}}, SHIFT(318), - [2491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(128), - [2493] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1105), - [2495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1105), - [2497] = {.entry = {.count = 1, .reusable = false}}, SHIFT(321), - [2499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(132), + [2177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2418), + [2179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4664), + [2181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2846), + [2183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3818), + [2185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(495), + [2187] = {.entry = {.count = 1, .reusable = false}}, SHIFT(788), + [2189] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1156), + [2191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1156), + [2193] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1073), + [2195] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1074), + [2197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(265), + [2199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(506), + [2201] = {.entry = {.count = 1, .reusable = false}}, SHIFT(787), + [2203] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3582), + [2205] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1563), + [2207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1563), + [2209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1552), + [2211] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1394), + [2213] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1395), + [2215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(267), + [2217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(468), + [2219] = {.entry = {.count = 1, .reusable = false}}, SHIFT(677), + [2221] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3622), + [2223] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1571), + [2225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1571), + [2227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1564), + [2229] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1115), + [2231] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1116), + [2233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(269), + [2235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3780), + [2237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(502), + [2239] = {.entry = {.count = 1, .reusable = false}}, SHIFT(693), + [2241] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3586), + [2243] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1319), + [2245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1319), + [2247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1157), + [2249] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1236), + [2251] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1237), + [2253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(282), + [2255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3025), + [2257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4667), + [2259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3027), + [2261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(466), + [2263] = {.entry = {.count = 1, .reusable = false}}, SHIFT(717), + [2265] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1559), + [2267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1559), + [2269] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1024), + [2271] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1025), + [2273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(275), + [2275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3334), + [2277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3342), + [2279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2446), + [2281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(482), + [2283] = {.entry = {.count = 1, .reusable = false}}, SHIFT(732), + [2285] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3636), + [2287] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1587), + [2289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1587), + [2291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1582), + [2293] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1276), + [2295] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1277), + [2297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(283), + [2299] = {.entry = {.count = 1, .reusable = false}}, SHIFT(671), + [2301] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2166), + [2303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4829), + [2305] = {.entry = {.count = 1, .reusable = false}}, SHIFT(759), + [2307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(214), + [2309] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2530), + [2311] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2516), + [2313] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7461), + [2315] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2524), + [2317] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2537), + [2319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3722), + [2321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4617), + [2323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3727), + [2325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4127), + [2327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3416), + [2329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3316), + [2331] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2520), + [2333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4133), + [2335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3425), + [2337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3303), + [2339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(140), + [2341] = {.entry = {.count = 1, .reusable = false}}, SHIFT(676), + [2343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(233), + [2345] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1413), + [2347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1413), + [2349] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2160), + [2351] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2165), + [2353] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2371), + [2355] = {.entry = {.count = 1, .reusable = false}}, SHIFT(302), + [2357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(106), + [2359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(124), + [2361] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1199), + [2363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1199), + [2365] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2163), + [2367] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2407), + [2369] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3311), + [2371] = {.entry = {.count = 1, .reusable = false}}, SHIFT(303), + [2373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(113), + [2375] = {.entry = {.count = 1, .reusable = false}}, SHIFT(307), + [2377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(138), + [2379] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1254), + [2381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1254), + [2383] = {.entry = {.count = 1, .reusable = false}}, SHIFT(312), + [2385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(115), + [2387] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1661), + [2389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1661), + [2391] = {.entry = {.count = 1, .reusable = false}}, SHIFT(316), + [2393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(121), + [2395] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1027), + [2397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1027), + [2399] = {.entry = {.count = 1, .reusable = false}}, SHIFT(415), + [2401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(112), + [2403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(114), + [2405] = {.entry = {.count = 1, .reusable = false}}, SHIFT(743), + [2407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(223), + [2409] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6606), + [2411] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1737), + [2413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1737), + [2415] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2167), + [2417] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2190), + [2419] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2691), + [2421] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4727), + [2423] = {.entry = {.count = 1, .reusable = false}}, SHIFT(388), + [2425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(137), + [2427] = {.entry = {.count = 1, .reusable = false}}, SHIFT(821), + [2429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(238), + [2431] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1089), + [2433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1089), + [2435] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2172), + [2437] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2205), + [2439] = {.entry = {.count = 1, .reusable = false}}, SHIFT(320), + [2441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(131), + [2443] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1540), + [2445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1540), + [2447] = {.entry = {.count = 1, .reusable = false}}, SHIFT(443), + [2449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(110), + [2451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(128), + [2453] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1160), + [2455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1160), + [2457] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2218), + [2459] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2881), + [2461] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4146), + [2463] = {.entry = {.count = 1, .reusable = false}}, SHIFT(363), + [2465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(125), + [2467] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1280), + [2469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1280), + [2471] = {.entry = {.count = 1, .reusable = false}}, SHIFT(323), + [2473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(111), + [2475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(120), + [2477] = {.entry = {.count = 1, .reusable = false}}, SHIFT(896), + [2479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(896), + [2481] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2200), + [2483] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2851), + [2485] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3801), + [2487] = {.entry = {.count = 1, .reusable = false}}, SHIFT(337), + [2489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(144), + [2491] = {.entry = {.count = 1, .reusable = false}}, SHIFT(932), + [2493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(932), + [2495] = {.entry = {.count = 1, .reusable = false}}, SHIFT(347), + [2497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(130), + [2499] = {.entry = {.count = 1, .reusable = false}}, SHIFT(698), [2501] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2217), - [2503] = {.entry = {.count = 1, .reusable = false}}, SHIFT(352), - [2505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(141), - [2507] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1246), - [2509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1246), - [2511] = {.entry = {.count = 1, .reusable = false}}, SHIFT(330), - [2513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(117), - [2515] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1149), - [2517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1149), - [2519] = {.entry = {.count = 1, .reusable = false}}, SHIFT(338), - [2521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(129), - [2523] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1186), - [2525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1186), - [2527] = {.entry = {.count = 1, .reusable = false}}, SHIFT(339), - [2529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(140), - [2531] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1166), - [2533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1166), - [2535] = {.entry = {.count = 1, .reusable = false}}, SHIFT(405), - [2537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(142), - [2539] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1308), - [2541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1308), - [2543] = {.entry = {.count = 1, .reusable = false}}, SHIFT(348), - [2545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(120), - [2547] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1529), - [2549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1529), - [2551] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2219), - [2553] = {.entry = {.count = 1, .reusable = false}}, SHIFT(355), - [2555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(143), - [2557] = {.entry = {.count = 1, .reusable = false}}, SHIFT(361), - [2559] = {.entry = {.count = 1, .reusable = false}}, SHIFT(682), - [2561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(115), - [2563] = {.entry = {.count = 1, .reusable = false}}, SHIFT(834), - [2565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(834), - [2567] = {.entry = {.count = 1, .reusable = false}}, SHIFT(443), - [2569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(114), - [2571] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1487), - [2573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1487), - [2575] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2211), - [2577] = {.entry = {.count = 1, .reusable = false}}, SHIFT(372), - [2579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(137), - [2581] = {.entry = {.count = 1, .reusable = false}}, SHIFT(978), - [2583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(978), - [2585] = {.entry = {.count = 1, .reusable = false}}, SHIFT(392), - [2587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(136), - [2589] = {.entry = {.count = 1, .reusable = false}}, SHIFT(826), - [2591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(826), - [2593] = {.entry = {.count = 1, .reusable = false}}, SHIFT(439), - [2595] = {.entry = {.count = 1, .reusable = false}}, SHIFT(668), - [2597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(121), - [2599] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1292), - [2601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1292), - [2603] = {.entry = {.count = 1, .reusable = false}}, SHIFT(427), - [2605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(125), - [2607] = {.entry = {.count = 1, .reusable = false}}, SHIFT(905), - [2609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(905), - [2611] = {.entry = {.count = 1, .reusable = false}}, SHIFT(435), - [2613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(134), - [2615] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1761), - [2617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1761), - [2619] = {.entry = {.count = 1, .reusable = false}}, SHIFT(421), - [2621] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7312), - [2623] = {.entry = {.count = 1, .reusable = false}}, SHIFT(596), - [2625] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7366), - [2627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6361), - [2629] = {.entry = {.count = 1, .reusable = false}}, SHIFT(558), - [2631] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2227), - [2633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2218), - [2635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(767), - [2637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5309), - [2639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2586), - [2641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2525), - [2643] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_attribute_list, 3, 0, 57), - [2645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2955), - [2647] = {.entry = {.count = 1, .reusable = false}}, SHIFT(583), - [2649] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2297), - [2651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3222), - [2653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3659), - [2655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3192), - [2657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4418), - [2659] = {.entry = {.count = 1, .reusable = false}}, SHIFT(650), - [2661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2672), - [2663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2450), - [2665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3188), - [2667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2618), - [2669] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_expression, 3, 0, 57), - [2671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(789), - [2673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5267), - [2675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2665), - [2677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2872), - [2679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2440), - [2681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2619), - [2683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2871), - [2685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2460), - [2687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3169), - [2689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2478), - [2691] = {.entry = {.count = 1, .reusable = false}}, SHIFT(703), - [2693] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__parameter_type_with_modifiers_repeat1, 1, 0, 1), - [2695] = {.entry = {.count = 1, .reusable = false}}, SHIFT(711), - [2697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(591), - [2699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3036), - [2701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2940), - [2703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7543), - [2705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3052), - [2707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4321), - [2709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7551), - [2711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3108), - [2713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7528), - [2715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3368), - [2717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4356), - [2719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2658), - [2721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7733), - [2723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4642), - [2725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3185), - [2727] = {.entry = {.count = 1, .reusable = false}}, SHIFT(599), - [2729] = {.entry = {.count = 1, .reusable = false}}, SHIFT(775), - [2731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3276), + [2503] = {.entry = {.count = 1, .reusable = false}}, SHIFT(402), + [2505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(127), + [2507] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1428), + [2509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1428), + [2511] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2215), + [2513] = {.entry = {.count = 1, .reusable = false}}, SHIFT(358), + [2515] = {.entry = {.count = 1, .reusable = false}}, SHIFT(726), + [2517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(126), + [2519] = {.entry = {.count = 1, .reusable = false}}, SHIFT(727), + [2521] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1356), + [2523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1356), + [2525] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2164), + [2527] = {.entry = {.count = 1, .reusable = false}}, SHIFT(341), + [2529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(117), + [2531] = {.entry = {.count = 1, .reusable = false}}, SHIFT(915), + [2533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(915), + [2535] = {.entry = {.count = 1, .reusable = false}}, SHIFT(344), + [2537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(139), + [2539] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1338), + [2541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1338), + [2543] = {.entry = {.count = 1, .reusable = false}}, SHIFT(422), + [2545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(141), + [2547] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1473), + [2549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1473), + [2551] = {.entry = {.count = 1, .reusable = false}}, SHIFT(351), + [2553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(135), + [2555] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1517), + [2557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1517), + [2559] = {.entry = {.count = 1, .reusable = false}}, SHIFT(355), + [2561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(123), + [2563] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1120), + [2565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1120), + [2567] = {.entry = {.count = 1, .reusable = false}}, SHIFT(419), + [2569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(142), + [2571] = {.entry = {.count = 1, .reusable = false}}, SHIFT(366), + [2573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(119), + [2575] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1323), + [2577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1323), + [2579] = {.entry = {.count = 1, .reusable = false}}, SHIFT(374), + [2581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(143), + [2583] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1614), + [2585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1614), + [2587] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2203), + [2589] = {.entry = {.count = 1, .reusable = false}}, SHIFT(378), + [2591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(136), + [2593] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1176), + [2595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1176), + [2597] = {.entry = {.count = 1, .reusable = false}}, SHIFT(429), + [2599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(118), + [2601] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1775), + [2603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1775), + [2605] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2222), + [2607] = {.entry = {.count = 1, .reusable = false}}, SHIFT(408), + [2609] = {.entry = {.count = 1, .reusable = false}}, SHIFT(752), + [2611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(133), + [2613] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1819), + [2615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1819), + [2617] = {.entry = {.count = 1, .reusable = false}}, SHIFT(430), + [2619] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7676), + [2621] = {.entry = {.count = 1, .reusable = false}}, SHIFT(587), + [2623] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7630), + [2625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6363), + [2627] = {.entry = {.count = 1, .reusable = false}}, SHIFT(552), + [2629] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2216), + [2631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2581), + [2633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(783), + [2635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5301), + [2637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2210), + [2639] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_attribute_list, 3, 0, 56), + [2641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2519), + [2643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3202), + [2645] = {.entry = {.count = 1, .reusable = false}}, SHIFT(580), + [2647] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2305), + [2649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3209), + [2651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2920), + [2653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4366), + [2655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3644), + [2657] = {.entry = {.count = 1, .reusable = false}}, SHIFT(662), + [2659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2748), + [2661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2423), + [2663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2609), + [2665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3187), + [2667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3178), + [2669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2610), + [2671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2475), + [2673] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_expression, 3, 0, 56), + [2675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(681), + [2677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5126), + [2679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2477), + [2681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2762), + [2683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2879), + [2685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2885), + [2687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2425), + [2689] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__parameter_type_with_modifiers_repeat1, 1, 0, 1), + [2691] = {.entry = {.count = 1, .reusable = false}}, SHIFT(801), + [2693] = {.entry = {.count = 1, .reusable = false}}, SHIFT(718), + [2695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(579), + [2697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3161), + [2699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7450), + [2701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3812), + [2703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2392), + [2705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7360), + [2707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3094), + [2709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7320), + [2711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3254), + [2713] = {.entry = {.count = 1, .reusable = false}}, SHIFT(591), + [2715] = {.entry = {.count = 1, .reusable = false}}, SHIFT(696), + [2717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7543), + [2719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3417), + [2721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7693), + [2723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4593), + [2725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2687), + [2727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3228), + [2729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2924), + [2731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4340), [2733] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__parameter_type_with_modifiers_repeat1, 1, 0, 1), - [2735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7510), - [2737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3896), - [2739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2407), - [2741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7472), - [2743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3281), - [2745] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6019), - [2747] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6084), - [2749] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3949), - [2751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7210), - [2753] = {.entry = {.count = 1, .reusable = false}}, SHIFT(793), - [2755] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2207), - [2757] = {.entry = {.count = 1, .reusable = false}}, SHIFT(718), - [2759] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3934), - [2761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7058), - [2763] = {.entry = {.count = 1, .reusable = false}}, SHIFT(817), - [2765] = {.entry = {.count = 1, .reusable = false}}, SHIFT(224), - [2767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3046), - [2769] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5991), - [2771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3064), - [2773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2999), - [2775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(758), - [2777] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_array_rank_specifier_repeat1, 1, 0, 0), - [2779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2025), - [2781] = {.entry = {.count = 1, .reusable = false}}, SHIFT(762), - [2783] = {.entry = {.count = 1, .reusable = false}}, SHIFT(229), - [2785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1947), - [2787] = {.entry = {.count = 1, .reusable = false}}, SHIFT(757), - [2789] = {.entry = {.count = 1, .reusable = false}}, SHIFT(228), - [2791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4615), - [2793] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5928), - [2795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4647), - [2797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4629), - [2799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3103), - [2801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3468), - [2803] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6003), - [2805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3509), - [2807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3516), - [2809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3272), - [2811] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6045), - [2813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3083), - [2815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3230), - [2817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3237), - [2819] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5989), - [2821] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6056), - [2823] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5956), - [2825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3082), - [2827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2100), - [2829] = {.entry = {.count = 1, .reusable = false}}, SHIFT(791), - [2831] = {.entry = {.count = 1, .reusable = false}}, SHIFT(238), - [2833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3892), - [2835] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5978), - [2837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3737), - [2839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3748), - [2841] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4058), - [2843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(37), - [2845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(34), - [2847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(32), - [2849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3320), - [2851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3354), - [2853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3001), - [2855] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3978), - [2857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(36), - [2859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3027), - [2861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(35), - [2863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(504), - [2865] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3942), - [2867] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2288), - [2869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3070), - [2871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2052), - [2873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(33), - [2875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1965), - [2877] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4043), - [2879] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2185), - [2881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(811), - [2883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4821), - [2885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4628), - [2887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2143), - [2889] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_else_in_attribute_list, 1, 0, 0), - [2891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7282), - [2893] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2283), - [2895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7055), - [2897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(509), - [2899] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3976), - [2901] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2232), - [2903] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2712), - [2905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3117), - [2907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2151), - [2909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2164), - [2911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(810), - [2913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2127), - [2915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2099), - [2917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1930), - [2919] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_else_in_expression, 1, 0, 0), - [2921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2024), - [2923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3707), - [2925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3450), - [2927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2160), - [2929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2161), - [2931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2146), - [2933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3734), - [2935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(782), - [2937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3504), - [2939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(459), - [2941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(460), - [2943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(461), - [2945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(466), - [2947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(505), - [2949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(481), - [2951] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 2, 0, 0), - [2953] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 2, 0, 0), - [2955] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_initializer_expression, 2, 0, 0), - [2957] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_initializer_expression, 2, 0, 0), - [2959] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_top_level, 4, 0, 57), - [2961] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_top_level, 4, 0, 57), - [2963] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_expression, 4, 0, 57), - [2965] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_expression, 4, 0, 57), - [2967] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3691), - [2969] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3123), - [2971] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3666), - [2973] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5740), - [2975] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5746), - [2977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4818), - [2979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3868), - [2981] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3858), - [2983] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5869), - [2985] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3668), - [2987] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6098), - [2989] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3860), - [2991] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2782), - [2993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6126), - [2995] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5724), - [2997] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3872), - [2999] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4041), - [3001] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4292), - [3003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5275), - [3005] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif, 3, 0, 57), - [3007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1919), - [3009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5174), - [3011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2741), - [3013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1915), - [3015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5257), - [3017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2833), - [3019] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif, 4, 0, 57), - [3021] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3691), - [3024] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3123), - [3027] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3666), - [3030] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(5740), - [3033] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(5746), - [3036] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3128), - [3039] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(4818), - [3042] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3868), - [3045] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3858), - [3048] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(5869), - [3051] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(6093), - [3054] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3668), - [3057] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(6094), - [3060] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(6098), - [3063] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), - [3065] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(6090), - [3068] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3860), - [3071] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(5947), - [3074] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(2782), - [3077] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(6126), - [3080] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(5724), - [3083] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3872), - [3086] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(4041), - [3089] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(4292), - [3092] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(5275), - [3095] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_statement, 3, 0, 9), - [3097] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 3, 0, 9), - [3099] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6365), - [3101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7215), - [3103] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_statement, 2, 0, 9), - [3105] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 2, 0, 9), - [3107] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_else, 1, 0, 0), - [3109] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_try_statement_repeat1, 2, 0, 0), - [3111] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_try_statement_repeat1, 2, 0, 0), - [3113] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_try_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(6365), - [3116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7584), - [3118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7700), - [3120] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_else, 2, 0, 0), - [3122] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6339), - [3124] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7142), - [3126] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_catch_clause, 3, 0, 75), - [3128] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_catch_clause, 3, 0, 75), - [3130] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_try_statement_repeat1, 1, 0, 0), - [3132] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_try_statement_repeat1, 1, 0, 0), - [3134] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_catch_clause, 2, 0, 9), - [3136] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_catch_clause, 2, 0, 9), - [3138] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_try_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(6339), - [3141] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 3, 0, 0), - [3143] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 3, 0, 0), - [3145] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_local_function_statement, 3, 0, 39), - [3147] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_local_function_statement, 3, 0, 39), - [3149] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_throw_statement, 2, 0, 0), - [3151] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_throw_statement, 2, 0, 0), - [3153] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_throw_statement, 3, 0, 0), - [3155] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_throw_statement, 3, 0, 0), - [3157] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_body, 3, 0, 0), - [3159] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_body, 3, 0, 0), - [3161] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 7, 0, 121), - [3163] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 7, 0, 121), - [3165] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_local_function_statement, 2, 0, 16), - [3167] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_local_function_statement, 2, 0, 16), - [3169] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_fixed_statement, 5, 0, 0), - [3171] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_fixed_statement, 5, 0, 0), - [3173] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_local_declaration_statement, 3, 0, 0), - [3175] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_local_declaration_statement, 3, 0, 0), - [3177] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 5, 0, 73), - [3179] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 5, 0, 73), - [3181] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_yield_statement, 4, 0, 0), - [3183] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_yield_statement, 4, 0, 0), - [3185] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_local_declaration_statement, 5, 0, 0), - [3187] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_local_declaration_statement, 5, 0, 0), - [3189] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_goto_statement, 3, 0, 0), - [3191] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_goto_statement, 3, 0, 0), - [3193] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__function_body, 2, 0, 15), - [3195] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__function_body, 2, 0, 15), - [3197] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_finally_clause, 2, 0, 0), - [3199] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_finally_clause, 2, 0, 0), - [3201] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_statement, 4, 0, 9), - [3203] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 4, 0, 9), - [3205] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_return_statement, 3, 0, 0), - [3207] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_statement, 3, 0, 0), + [2735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7361), + [2737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2968), + [2739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4295), + [2741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3049), + [2743] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_array_rank_specifier_repeat1, 1, 0, 0), + [2745] = {.entry = {.count = 1, .reusable = false}}, SHIFT(689), + [2747] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4009), + [2749] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2204), + [2751] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6039), + [2753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7084), + [2755] = {.entry = {.count = 1, .reusable = false}}, SHIFT(682), + [2757] = {.entry = {.count = 1, .reusable = false}}, SHIFT(231), + [2759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2963), + [2761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3408), + [2763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(722), + [2765] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6032), + [2767] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3980), + [2769] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6010), + [2771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3057), + [2773] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5933), + [2775] = {.entry = {.count = 1, .reusable = false}}, SHIFT(683), + [2777] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5925), + [2779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3434), + [2781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7162), + [2783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3485), + [2785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3083), + [2787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3014), + [2789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3726), + [2791] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5953), + [2793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3022), + [2795] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5935), + [2797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3773), + [2799] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6027), + [2801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3246), + [2803] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5944), + [2805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3324), + [2807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3331), + [2809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2051), + [2811] = {.entry = {.count = 1, .reusable = false}}, SHIFT(744), + [2813] = {.entry = {.count = 1, .reusable = false}}, SHIFT(230), + [2815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1950), + [2817] = {.entry = {.count = 1, .reusable = false}}, SHIFT(751), + [2819] = {.entry = {.count = 1, .reusable = false}}, SHIFT(249), + [2821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4589), + [2823] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6091), + [2825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3090), + [2827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4654), + [2829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4661), + [2831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2107), + [2833] = {.entry = {.count = 1, .reusable = false}}, SHIFT(723), + [2835] = {.entry = {.count = 1, .reusable = false}}, SHIFT(241), + [2837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3803), + [2839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(36), + [2841] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3991), + [2843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(39), + [2845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(38), + [2847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2149), + [2849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(503), + [2851] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3944), + [2853] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2180), + [2855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(30), + [2857] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_else_in_expression, 1, 0, 0), + [2859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(802), + [2861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7057), + [2863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3470), + [2865] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2276), + [2867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3085), + [2869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3858), + [2871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2990), + [2873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23), + [2875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3105), + [2877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3390), + [2879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3285), + [2881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7079), + [2883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2045), + [2885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3315), + [2887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(37), + [2889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(747), + [2891] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3960), + [2893] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3967), + [2895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1954), + [2897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2106), + [2899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(509), + [2901] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3954), + [2903] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2227), + [2905] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2696), + [2907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2155), + [2909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2144), + [2911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3775), + [2913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4608), + [2915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3012), + [2917] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_else_in_attribute_list, 1, 0, 0), + [2919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2090), + [2921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4652), + [2923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2145), + [2925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2139), + [2927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(674), + [2929] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2272), + [2931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2138), + [2933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1975), + [2935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2039), + [2937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(460), + [2939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(504), + [2941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(458), + [2943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(459), + [2945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(465), + [2947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(480), + [2949] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 2, 0, 0), + [2951] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 2, 0, 0), + [2953] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_initializer_expression, 2, 0, 0), + [2955] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_initializer_expression, 2, 0, 0), + [2957] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_top_level, 4, 0, 56), + [2959] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_top_level, 4, 0, 56), + [2961] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_expression, 4, 0, 56), + [2963] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_expression, 4, 0, 56), + [2965] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3654), + [2967] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3108), + [2969] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3670), + [2971] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5739), + [2973] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5742), + [2975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4538), + [2977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3747), + [2979] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3735), + [2981] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5820), + [2983] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3676), + [2985] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3742), + [2987] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2689), + [2989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6088), + [2991] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5701), + [2993] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3835), + [2995] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3986), + [2997] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4334), + [2999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5285), + [3001] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif, 3, 0, 56), + [3003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1915), + [3005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5204), + [3007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2702), + [3009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2775), + [3011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1917), + [3013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5111), + [3015] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif, 4, 0, 56), + [3017] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3654), + [3020] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3108), + [3023] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3670), + [3026] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(5739), + [3029] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(5742), + [3032] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3117), + [3035] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(4538), + [3038] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3747), + [3041] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3735), + [3044] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(5820), + [3047] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(6113), + [3050] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3676), + [3053] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(6059), + [3056] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(6066), + [3059] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), + [3061] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(6076), + [3064] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3742), + [3067] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(6023), + [3070] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(2689), + [3073] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(6088), + [3076] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(5701), + [3079] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3835), + [3082] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3986), + [3085] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(4334), + [3088] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(5285), + [3091] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_statement, 2, 0, 9), + [3093] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 2, 0, 9), + [3095] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6366), + [3097] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7036), + [3099] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_statement, 3, 0, 9), + [3101] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 3, 0, 9), + [3103] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_else, 1, 0, 0), + [3105] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_else, 2, 0, 0), + [3107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7316), + [3109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7313), + [3111] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_try_statement_repeat1, 2, 0, 0), + [3113] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_try_statement_repeat1, 2, 0, 0), + [3115] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_try_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(6366), + [3118] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6340), + [3120] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7190), + [3122] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_catch_clause, 2, 0, 9), + [3124] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_catch_clause, 2, 0, 9), + [3126] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_try_statement_repeat1, 1, 0, 0), + [3128] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_try_statement_repeat1, 1, 0, 0), + [3130] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_try_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(6340), + [3133] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_catch_clause, 3, 0, 72), + [3135] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_catch_clause, 3, 0, 72), + [3137] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 3, 0, 0), + [3139] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 3, 0, 0), + [3141] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_statement, 5, 0, 71), + [3143] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_statement, 5, 0, 71), + [3145] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_foreach_statement, 2, 0, 16), + [3147] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_foreach_statement, 2, 0, 16), + [3149] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__function_body, 1, 0, 0), + [3151] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__function_body, 1, 0, 0), + [3153] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__function_body, 1, 0, 17), + [3155] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__function_body, 1, 0, 17), + [3157] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_labeled_statement, 3, 0, 0), + [3159] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_labeled_statement, 3, 0, 0), + [3161] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_local_function_statement, 2, 0, 18), + [3163] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_local_function_statement, 2, 0, 18), + [3165] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_local_declaration_statement, 4, 0, 0), + [3167] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_local_declaration_statement, 4, 0, 0), + [3169] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_yield_statement, 4, 0, 0), + [3171] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_yield_statement, 4, 0, 0), + [3173] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_body, 2, 0, 0), + [3175] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_body, 2, 0, 0), + [3177] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_top_level, 5, 0, 74), + [3179] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_top_level, 5, 0, 74), + [3181] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_finally_clause, 2, 0, 0), + [3183] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_finally_clause, 2, 0, 0), + [3185] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_throw_statement, 3, 0, 0), + [3187] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_throw_statement, 3, 0, 0), + [3189] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_statement, 4, 0, 9), + [3191] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 4, 0, 9), + [3193] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_goto_statement, 4, 0, 0), + [3195] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_goto_statement, 4, 0, 0), + [3197] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_empty_statement, 1, 0, 0), + [3199] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_empty_statement, 1, 0, 0), + [3201] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_top_level, 5, 0, 56), + [3203] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_top_level, 5, 0, 56), + [3205] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_statement, 1, 0, 0), + [3207] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_statement, 1, 0, 0), [3209] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_goto_statement, 2, 0, 0), [3211] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_goto_statement, 2, 0, 0), - [3213] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 5, 0, 76), - [3215] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 5, 0, 76), - [3217] = {.entry = {.count = 1, .reusable = false}}, SHIFT(65), - [3219] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lock_statement, 5, 0, 0), - [3221] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lock_statement, 5, 0, 0), - [3223] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_statement, 5, 0, 74), - [3225] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_statement, 5, 0, 74), - [3227] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_top_level, 5, 0, 77), - [3229] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_top_level, 5, 0, 77), - [3231] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_continue_statement, 2, 0, 0), - [3233] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_continue_statement, 2, 0, 0), - [3235] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_top_level, 5, 0, 57), - [3237] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_top_level, 5, 0, 57), - [3239] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_local_declaration_statement, 2, 0, 0), - [3241] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_local_declaration_statement, 2, 0, 0), - [3243] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_labeled_statement, 3, 0, 0), - [3245] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_labeled_statement, 3, 0, 0), - [3247] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_using_statement, 6, 0, 95), - [3249] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_using_statement, 6, 0, 95), - [3251] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_body, 2, 0, 0), - [3253] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_body, 2, 0, 0), - [3255] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_empty_statement, 1, 0, 0), - [3257] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_empty_statement, 1, 0, 0), - [3259] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_statement, 3, 0, 32), - [3261] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_statement, 3, 0, 32), - [3263] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_goto_statement, 4, 0, 0), - [3265] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_goto_statement, 4, 0, 0), - [3267] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_using_statement, 5, 0, 68), - [3269] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_using_statement, 5, 0, 68), - [3271] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_return_statement, 2, 0, 0), - [3273] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_statement, 2, 0, 0), - [3275] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_local_declaration_statement, 4, 0, 0), - [3277] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_local_declaration_statement, 4, 0, 0), - [3279] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_statement, 1, 0, 0), - [3281] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_statement, 1, 0, 0), - [3283] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_top_level, 6, 0, 98), - [3285] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_top_level, 6, 0, 98), - [3287] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unsafe_statement, 2, 0, 0), - [3289] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unsafe_statement, 2, 0, 0), - [3291] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression_statement, 2, 0, 0), - [3293] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_statement, 2, 0, 0), - [3295] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_do_statement, 7, 0, 113), - [3297] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_do_statement, 7, 0, 113), - [3299] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_foreach_statement, 2, 0, 14), - [3301] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_foreach_statement, 2, 0, 14), - [3303] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 3, 0, 31), - [3305] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 3, 0, 31), - [3307] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_checked_statement, 2, 0, 0), - [3309] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_checked_statement, 2, 0, 0), - [3311] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__function_body, 1, 0, 0), - [3313] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__function_body, 1, 0, 0), - [3315] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__function_body, 1, 0, 15), - [3317] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__function_body, 1, 0, 15), - [3319] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_yield_statement, 3, 0, 0), - [3321] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_yield_statement, 3, 0, 0), - [3323] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_break_statement, 2, 0, 0), - [3325] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_break_statement, 2, 0, 0), - [3327] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_declaration, 6, 0, 85), - [3329] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_declaration, 6, 0, 85), - [3331] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_using_directive, 5, 0, 8), - [3333] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_using_directive, 5, 0, 8), - [3335] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_declaration, 1, 0, 0), - [3337] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_declaration, 1, 0, 0), - [3339] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extern_alias_directive, 4, 0, 25), - [3341] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extern_alias_directive, 4, 0, 25), - [3343] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_declaration, 5, 0, 54), - [3345] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_declaration, 5, 0, 54), - [3347] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_declaration, 3, 0, 35), - [3349] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_declaration, 3, 0, 35), - [3351] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_declaration, 5, 0, 64), - [3353] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_declaration, 5, 0, 64), - [3355] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_declaration, 3, 0, 36), - [3357] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_declaration, 3, 0, 36), - [3359] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_using_directive, 6, 0, 25), - [3361] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_using_directive, 6, 0, 25), - [3363] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_namespace_declaration, 4, 0, 24), - [3365] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_namespace_declaration, 4, 0, 24), - [3367] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_delegate_declaration, 3, 0, 11), - [3369] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_delegate_declaration, 3, 0, 11), - [3371] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_declaration, 6, 0, 87), - [3373] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_declaration, 6, 0, 87), - [3375] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_using_directive, 4, 0, 0), - [3377] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_using_directive, 4, 0, 0), + [3213] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_yield_statement, 3, 0, 0), + [3215] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_yield_statement, 3, 0, 0), + [3217] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unsafe_statement, 2, 0, 0), + [3219] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unsafe_statement, 2, 0, 0), + [3221] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_local_function_statement, 3, 0, 38), + [3223] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_local_function_statement, 3, 0, 38), + [3225] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_return_statement, 2, 0, 0), + [3227] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_statement, 2, 0, 0), + [3229] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression_statement, 2, 0, 0), + [3231] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_statement, 2, 0, 0), + [3233] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_using_statement, 6, 0, 90), + [3235] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_using_statement, 6, 0, 90), + [3237] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_goto_statement, 3, 0, 0), + [3239] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_goto_statement, 3, 0, 0), + [3241] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_local_declaration_statement, 3, 0, 0), + [3243] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_local_declaration_statement, 3, 0, 0), + [3245] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_checked_statement, 2, 0, 0), + [3247] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_checked_statement, 2, 0, 0), + [3249] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_statement, 3, 0, 33), + [3251] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_statement, 3, 0, 33), + [3253] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_break_statement, 2, 0, 0), + [3255] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_break_statement, 2, 0, 0), + [3257] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_using_statement, 5, 0, 66), + [3259] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_using_statement, 5, 0, 66), + [3261] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_fixed_statement, 5, 0, 0), + [3263] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_fixed_statement, 5, 0, 0), + [3265] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 5, 0, 70), + [3267] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 5, 0, 70), + [3269] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lock_statement, 5, 0, 0), + [3271] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lock_statement, 5, 0, 0), + [3273] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_top_level, 6, 0, 93), + [3275] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_top_level, 6, 0, 93), + [3277] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_return_statement, 3, 0, 0), + [3279] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_statement, 3, 0, 0), + [3281] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_body, 3, 0, 0), + [3283] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_body, 3, 0, 0), + [3285] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_do_statement, 7, 0, 106), + [3287] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_do_statement, 7, 0, 106), + [3289] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_local_declaration_statement, 5, 0, 0), + [3291] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_local_declaration_statement, 5, 0, 0), + [3293] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 7, 0, 114), + [3295] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 7, 0, 114), + [3297] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_continue_statement, 2, 0, 0), + [3299] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_continue_statement, 2, 0, 0), + [3301] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 3, 0, 32), + [3303] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 3, 0, 32), + [3305] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_throw_statement, 2, 0, 0), + [3307] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_throw_statement, 2, 0, 0), + [3309] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__function_body, 2, 0, 17), + [3311] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__function_body, 2, 0, 17), + [3313] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 5, 0, 73), + [3315] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 5, 0, 73), + [3317] = {.entry = {.count = 1, .reusable = false}}, SHIFT(66), + [3319] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_local_declaration_statement, 2, 0, 0), + [3321] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_local_declaration_statement, 2, 0, 0), + [3323] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_declaration, 2, 0, 10), + [3325] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_declaration, 2, 0, 10), + [3327] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_declaration, 1, 0, 0), + [3329] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_declaration, 1, 0, 0), + [3331] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__declaration_list_body, 2, 0, 17), + [3333] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__declaration_list_body, 2, 0, 17), + [3335] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_using_directive, 4, 0, 0), + [3337] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_using_directive, 4, 0, 0), + [3339] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_using_directive, 5, 0, 0), + [3341] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_using_directive, 5, 0, 0), + [3343] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_declaration, 3, 0, 35), + [3345] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_declaration, 3, 0, 35), + [3347] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_delegate_declaration, 3, 0, 13), + [3349] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_delegate_declaration, 3, 0, 13), + [3351] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_global_attribute, 6, 0, 0), + [3353] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_global_attribute, 6, 0, 0), + [3355] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_namespace_declaration, 4, 0, 53), + [3357] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_namespace_declaration, 4, 0, 53), + [3359] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_delegate_declaration, 2, 0, 13), + [3361] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_delegate_declaration, 2, 0, 13), + [3363] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_using_directive, 5, 0, 7), + [3365] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_using_directive, 5, 0, 7), + [3367] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_top_level_repeat1, 1, 0, 0), + [3369] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_top_level_repeat1, 1, 0, 0), + [3371] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_declaration, 2, 0, 12), + [3373] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_declaration, 2, 0, 12), + [3375] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_global_attribute, 5, 0, 0), + [3377] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_global_attribute, 5, 0, 0), [3379] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_global_attribute, 7, 0, 0), [3381] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_global_attribute, 7, 0, 0), - [3383] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_top_level_repeat1, 1, 0, 0), - [3385] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_top_level_repeat1, 1, 0, 0), - [3387] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_declaration, 4, 0, 24), - [3389] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_declaration, 4, 0, 24), - [3391] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_declaration, 3, 0, 34), - [3393] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_declaration, 3, 0, 34), - [3395] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_using_directive, 3, 0, 0), - [3397] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_using_directive, 3, 0, 0), - [3399] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_delegate_declaration, 2, 0, 11), - [3401] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_delegate_declaration, 2, 0, 11), - [3403] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_file_scoped_namespace_declaration, 3, 0, 8), - [3405] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_file_scoped_namespace_declaration, 3, 0, 8), - [3407] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_using_directive, 7, 0, 65), - [3409] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_using_directive, 7, 0, 65), - [3411] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_global_attribute, 5, 0, 0), - [3413] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_global_attribute, 5, 0, 0), - [3415] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 2, 0, 10), - [3417] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 2, 0, 10), - [3419] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_declaration, 3, 0, 34), - [3421] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_declaration, 3, 0, 34), - [3423] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_declaration, 7, 0, 109), - [3425] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_declaration, 7, 0, 109), - [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_global_attribute, 6, 0, 0), - [3433] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_global_attribute, 6, 0, 0), - [3435] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6352), - [3437] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7042), - [3439] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__reserved_identifier, 1, 0, 0), SHIFT(3691), - [3442] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__reserved_identifier, 1, 0, 0), SHIFT(3666), - [3445] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__reserved_identifier, 1, 0, 0), - [3447] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__reserved_identifier, 1, 0, 0), - [3449] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__reserved_identifier, 1, 0, 0), SHIFT(3868), - [3452] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3739), - [3454] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7663), - [3456] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__reserved_identifier, 1, 0, 0), SHIFT(3872), - [3459] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__reserved_identifier, 1, 0, 0), SHIFT(4041), - [3462] = {.entry = {.count = 1, .reusable = false}}, SHIFT(77), - [3464] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__top_level_item, 1, 0, 0), - [3466] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__top_level_item, 1, 0, 0), - [3468] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_compilation_unit_repeat1, 1, 0, 0), - [3470] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_compilation_unit_repeat1, 1, 0, 0), - [3472] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_try_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(6352), - [3475] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_global_statement, 1, 0, 0), - [3477] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_global_statement, 1, 0, 0), - [3479] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_modifier, 1, 0, 0), REDUCE(sym__reserved_identifier, 1, 0, 0), - [3482] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_modifier, 1, 0, 0), - [3484] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_modifier, 1, 0, 0), REDUCE(sym__reserved_identifier, 1, 0, 0), - [3487] = {.entry = {.count = 1, .reusable = false}}, SHIFT(72), - [3489] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 1, 0, 0), - [3491] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_block_repeat1, 1, 0, 0), - [3493] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__for_statement_conditions, 7, 0, 145), - [3495] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_statement_conditions, 7, 0, 145), - [3497] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__for_statement_conditions, 8, 0, 172), - [3499] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_statement_conditions, 8, 0, 172), - [3501] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__for_statement_conditions, 7, 0, 144), - [3503] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_statement_conditions, 7, 0, 144), - [3505] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__for_statement_conditions, 4, 0, 0), - [3507] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_statement_conditions, 4, 0, 0), - [3509] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__for_statement_conditions, 7, 0, 141), - [3511] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_statement_conditions, 7, 0, 141), - [3513] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__for_statement_conditions, 9, 0, 193), - [3515] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_statement_conditions, 9, 0, 193), - [3517] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__for_statement_conditions, 8, 0, 170), - [3519] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_statement_conditions, 8, 0, 170), - [3521] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__for_statement_conditions, 5, 0, 92), - [3523] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_statement_conditions, 5, 0, 92), - [3525] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__for_statement_conditions, 5, 0, 93), - [3527] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_statement_conditions, 5, 0, 93), - [3529] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__for_statement_conditions, 7, 0, 142), - [3531] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_statement_conditions, 7, 0, 142), - [3533] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__foreach_statement_initializer, 6, 0, 96), - [3535] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__foreach_statement_initializer, 6, 0, 96), - [3537] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__foreach_statement_initializer, 8, 0, 146), - [3539] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__foreach_statement_initializer, 8, 0, 146), - [3541] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__for_statement_conditions, 8, 0, 171), - [3543] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_statement_conditions, 8, 0, 171), - [3545] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__for_statement_conditions, 7, 0, 143), - [3547] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_statement_conditions, 7, 0, 143), - [3549] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__for_statement_conditions, 6, 0, 114), - [3551] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_statement_conditions, 6, 0, 114), - [3553] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__for_statement_conditions, 6, 0, 115), - [3555] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_statement_conditions, 6, 0, 115), - [3557] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__for_statement_conditions, 6, 0, 116), - [3559] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_statement_conditions, 6, 0, 116), - [3561] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__for_statement_conditions, 6, 0, 117), - [3563] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_statement_conditions, 6, 0, 117), - [3565] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__for_statement_conditions, 6, 0, 118), - [3567] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_statement_conditions, 6, 0, 118), - [3569] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__foreach_statement_initializer, 7, 0, 119), - [3571] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__foreach_statement_initializer, 7, 0, 119), - [3573] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__foreach_statement_initializer, 7, 0, 120), - [3575] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__foreach_statement_initializer, 7, 0, 120), - [3577] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__for_statement_conditions, 5, 0, 94), - [3579] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_statement_conditions, 5, 0, 94), - [3581] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__reserved_identifier, 1, 0, 0), SHIFT(2361), - [3584] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__reserved_identifier, 1, 0, 0), SHIFT(2364), - [3587] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3758), - [3589] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym__reserved_identifier, 1, 0, 0), REDUCE(aux_sym__parameter_type_with_modifiers_repeat1, 1, 0, 1), SHIFT(2175), - [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(2174), - [3597] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__reserved_identifier, 1, 0, 0), REDUCE(aux_sym__parameter_type_with_modifiers_repeat1, 1, 0, 1), - [3600] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__reserved_identifier, 1, 0, 0), SHIFT(2175), - [3603] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__reserved_identifier, 1, 0, 0), SHIFT(2174), - [3606] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3773), - [3608] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_implicit_type, 1, 1, 0), REDUCE(sym__reserved_identifier, 1, 0, 0), SHIFT(3177), - [3612] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_implicit_type, 1, 1, 0), REDUCE(sym__reserved_identifier, 1, 0, 0), SHIFT(3174), - [3616] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_implicit_type, 1, 1, 0), REDUCE(sym__reserved_identifier, 1, 0, 0), - [3619] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_implicit_type, 1, 1, 0), REDUCE(sym__reserved_identifier, 1, 0, 0), - [3622] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_implicit_type, 1, 1, 0), REDUCE(sym__reserved_identifier, 1, 0, 0), SHIFT(5838), - [3626] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_implicit_type, 1, 1, 0), REDUCE(sym__reserved_identifier, 1, 0, 0), SHIFT(3340), - [3630] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3879), - [3632] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_implicit_type, 1, 1, 0), REDUCE(sym__reserved_identifier, 1, 0, 0), SHIFT(5860), - [3636] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_implicit_type, 1, 1, 0), REDUCE(sym__reserved_identifier, 1, 0, 0), SHIFT(3463), - [3640] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3898), - [3642] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__reserved_identifier, 1, 0, 0), SHIFT(2627), - [3645] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__reserved_identifier, 1, 0, 0), SHIFT(2626), - [3648] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3805), - [3650] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_identifier, 1, 0, 0), - [3652] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_identifier, 1, 0, 0), - [3654] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_argument_list, 4, 0, 0), - [3656] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_argument_list, 4, 0, 0), - [3658] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3830), - [3660] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__simple_name, 1, 0, 0), - [3662] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__simple_name, 1, 0, 0), - [3664] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__simple_name, 1, 0, 0), SHIFT(3573), - [3667] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__lambda_parameters, 1, 0, 4), - [3669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5979), - [3671] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_argument_list, 3, 0, 0), - [3673] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_argument_list, 3, 0, 0), - [3675] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_argument_list, 2, 0, 0), - [3677] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_argument_list, 2, 0, 0), - [3679] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_name, 2, 0, 0), - [3681] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_name, 2, 0, 0), - [3683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5931), - [3685] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_qualified_name, 3, 0, 37), - [3687] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_qualified_name, 3, 0, 37), - [3689] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_member_access_expression, 3, 0, 30), - [3691] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_qualified_name, 3, 0, 37), REDUCE(sym_member_access_expression, 3, 0, 30), - [3694] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_qualified_name, 3, 0, 37), REDUCE(sym_member_access_expression, 3, 0, 30), - [3697] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_member_access_expression, 3, 0, 30), - [3699] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__name, 1, 0, 0), - [3701] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__name, 1, 0, 0), REDUCE(sym_constant_pattern, 1, 0, 0), - [3704] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lvalue_expression, 1, 0, 0), - [3706] = {.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), - [3710] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__name, 1, 0, 0), - [3712] = {.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), - [3716] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__name, 1, 0, 0), REDUCE(sym_constant_pattern, 1, 0, 0), - [3719] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lvalue_expression, 1, 0, 0), - [3721] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__name, 1, 0, 0), REDUCE(sym_lvalue_expression, 1, 0, 0), - [3724] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__name, 1, 0, 0), REDUCE(sym_lvalue_expression, 1, 0, 0), - [3727] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_implicit_type, 1, 1, 0), REDUCE(sym__reserved_identifier, 1, 0, 0), SHIFT(2571), - [3731] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_implicit_type, 1, 1, 0), REDUCE(sym__reserved_identifier, 1, 0, 0), SHIFT(2578), - [3735] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3124), - [3737] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3761), - [3739] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6113), - [3741] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3694), - [3743] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6127), - [3745] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6130), - [3747] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3778), - [3749] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5952), - [3751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6118), - [3753] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5727), - [3755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5132), - [3757] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_implicit_type, 1, 1, 0), REDUCE(sym__reserved_identifier, 1, 0, 0), SHIFT(4323), - [3761] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_implicit_type, 1, 1, 0), REDUCE(sym__reserved_identifier, 1, 0, 0), SHIFT(4322), - [3765] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_implicit_type, 1, 1, 0), REDUCE(sym__reserved_identifier, 1, 0, 0), SHIFT(5847), - [3769] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_implicit_type, 1, 1, 0), REDUCE(sym__reserved_identifier, 1, 0, 0), SHIFT(4761), - [3773] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3149), - [3775] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3148), - [3777] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3810), - [3779] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__reserved_identifier, 1, 0, 0), SHIFT(3148), - [3782] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_attribute_list, 4, 0, 57), - [3784] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_attribute_list, 4, 0, 57), - [3786] = {.entry = {.count = 1, .reusable = false}}, SHIFT(573), - [3788] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3225), - [3790] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3221), - [3792] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3727), - [3794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2867), - [3796] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6120), - [3798] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_implicit_type, 1, 1, 0), REDUCE(sym__reserved_identifier, 1, 0, 0), SHIFT(2361), - [3802] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_implicit_type, 1, 1, 0), REDUCE(sym__reserved_identifier, 1, 0, 0), SHIFT(2364), - [3806] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_implicit_type, 1, 1, 0), REDUCE(sym__reserved_identifier, 1, 0, 0), SHIFT(5853), - [3810] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_implicit_type, 1, 1, 0), REDUCE(sym__reserved_identifier, 1, 0, 0), SHIFT(3779), - [3814] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_implicit_type, 1, 1, 0), REDUCE(sym__reserved_identifier, 1, 0, 0), SHIFT(3225), - [3818] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_implicit_type, 1, 1, 0), REDUCE(sym__reserved_identifier, 1, 0, 0), SHIFT(3221), - [3822] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6112), - [3824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6001), - [3826] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__simple_name, 1, 0, 0), SHIFT(873), - [3829] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__variable_designation, 1, 0, 5), - [3831] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_lvalue_expression, 1, 0, 0), REDUCE(aux_sym__parameter_type_with_modifiers_repeat1, 1, 0, 1), - [3834] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_implicit_type, 1, 1, 0), REDUCE(sym__reserved_identifier, 1, 0, 0), SHIFT(2904), - [3838] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_implicit_type, 1, 1, 0), REDUCE(sym__reserved_identifier, 1, 0, 0), SHIFT(2903), - [3842] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_implicit_type, 1, 1, 0), REDUCE(sym__reserved_identifier, 1, 0, 0), SHIFT(5815), - [3846] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_implicit_type, 1, 1, 0), REDUCE(sym__reserved_identifier, 1, 0, 0), SHIFT(4173), - [3850] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_parameter, 1, 0, 5), REDUCE(sym__simple_name, 1, 0, 0), - [3853] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_implicit_type, 1, 1, 0), REDUCE(sym__reserved_identifier, 1, 0, 0), SHIFT(2945), - [3857] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_implicit_type, 1, 1, 0), REDUCE(sym__reserved_identifier, 1, 0, 0), SHIFT(2943), - [3861] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2904), - [3863] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2903), - [3865] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3799), - [3867] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__reserved_identifier, 1, 0, 0), SHIFT(2903), - [3870] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__simple_name, 1, 0, 0), SHIFT(3614), - [3873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5937), - [3875] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3177), - [3877] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3174), - [3879] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_pattern, 1, 0, 6), - [3881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(248), - [3883] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_pattern, 1, 0, 6), - [3885] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3340), - [3887] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2945), - [3889] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2943), - [3891] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3882), - [3893] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_is_expression, 3, 0, 40), - [3895] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_is_expression, 3, 0, 40), - [3897] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3463), - [3899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5984), - [3901] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1662), - [3903] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7458), - [3905] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_recursive_pattern, 1, 0, 0), - [3907] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_recursive_pattern, 1, 0, 0), - [3909] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5736), - [3911] = {.entry = {.count = 1, .reusable = false}}, SHIFT(94), - [3913] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_recursive_pattern, 2, 0, 6), - [3915] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_recursive_pattern, 2, 0, 6), - [3917] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1477), - [3919] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7470), - [3921] = {.entry = {.count = 1, .reusable = false}}, SHIFT(97), - [3923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4555), - [3925] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3119), - [3927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5244), - [3929] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1682), - [3931] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3809), - [3933] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6111), - [3935] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3685), - [3937] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6106), - [3939] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6065), - [3941] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6117), - [3943] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3883), - [3945] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5946), - [3947] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5714), - [3949] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ref_type, 2, 0, 7), - [3951] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ref_type, 2, 0, 7), - [3953] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1888), - [3955] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7484), - [3957] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_recursive_pattern, 2, 0, 0), - [3959] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_recursive_pattern, 2, 0, 0), - [3961] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_recursive_pattern, 3, 0, 6), - [3963] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_recursive_pattern, 3, 0, 6), - [3965] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1642), - [3967] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7517), - [3969] = {.entry = {.count = 1, .reusable = false}}, SHIFT(958), - [3971] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pointer_type, 2, 0, 6), - [3973] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_type, 2, 0, 6), - [3975] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__scoped_base_type, 1, 0, 0), - [3977] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__scoped_base_type, 1, 0, 0), - [3979] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_pointer_type, 6, 0, 91), - [3981] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_pointer_type, 6, 0, 91), - [3983] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4297), - [3985] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4296), - [3987] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3736), - [3989] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__reserved_identifier, 1, 0, 0), SHIFT(4296), - [3992] = {.entry = {.count = 1, .reusable = false}}, SHIFT(81), - [3994] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_pointer_type, 5, 0, 71), - [3996] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_pointer_type, 5, 0, 71), - [3998] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3813), - [4000] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_type, 2, 0, 7), - [4002] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type, 2, 0, 7), - [4004] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_nullable_type, 2, 0, 6), - [4006] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_nullable_type, 2, 0, 6), - [4008] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ref_type, 3, 0, 26), - [4010] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ref_type, 3, 0, 26), - [4012] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_pointer_type, 7, 0, 112), - [4014] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_pointer_type, 7, 0, 112), - [4016] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type, 1, 0, 0), - [4018] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type, 1, 0, 0), - [4020] = {.entry = {.count = 1, .reusable = false}}, SHIFT(84), - [4022] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5744), - [4024] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3876), - [4026] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3818), - [4028] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3763), - [4030] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__reserved_identifier, 1, 0, 0), SHIFT(3221), - [4033] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__simple_name, 1, 0, 0), SHIFT(3565), - [4036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6894), - [4038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(527), - [4040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(567), - [4042] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7704), - [4044] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2235), - [4046] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2920), - [4048] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3058), - [4050] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4323), - [4052] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4322), - [4054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(242), - [4056] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4761), - [4058] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2361), - [4060] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2364), - [4062] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3719), - [4064] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3854), - [4066] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_type, 1, 0, 0), REDUCE(sym__array_base_type, 1, 0, 0), - [4069] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type, 1, 0, 0), SHIFT(2341), - [4072] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_type, 1, 0, 0), REDUCE(sym__pointer_base_type, 1, 0, 0), - [4075] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5945), - [4077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5945), - [4079] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__simple_name, 1, 0, 0), SHIFT(3606), - [4082] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type, 2, 0, 13), - [4084] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type, 2, 0, 13), - [4086] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6116), - [4088] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3018), - [4090] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_positional_pattern_clause, 2, 0, 0), - [4092] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_positional_pattern_clause, 2, 0, 0), - [4094] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_list, 2, 0, 0), - [4096] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6066), - [4098] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3762), - [4100] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5925), - [4102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5925), - [4104] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_rank_specifier, 2, 0, 0), - [4106] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_rank_specifier, 2, 0, 0), - [4108] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_rank_specifier, 4, 0, 0), - [4110] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_rank_specifier, 4, 0, 0), - [4112] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_alias_qualified_name, 3, 0, 45), - [4114] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_alias_qualified_name, 3, 0, 45), - [4116] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_positional_pattern_clause, 4, 0, 0), - [4118] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_positional_pattern_clause, 4, 0, 0), - [4120] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_type, 4, 0, 0), - [4122] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_type, 4, 0, 0), - [4124] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_rank_specifier, 3, 0, 0), - [4126] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_rank_specifier, 3, 0, 0), - [4128] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_expression, 4, 0, 0), - [4130] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_expression, 4, 0, 0), - [4132] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6008), - [4134] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lvalue_expression, 1, 0, 2), - [4136] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lvalue_expression, 1, 0, 2), - [4138] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6055), - [4140] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_property_pattern_clause, 2, 0, 0), - [4142] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_pattern_clause, 2, 0, 0), - [4144] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parenthesized_lvalue_expression, 3, 0, 0), - [4146] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__parenthesized_lvalue_expression, 3, 0, 0), - [4148] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_conditional_access_expression, 3, 0, 41), - [4150] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_conditional_access_expression, 3, 0, 41), - [4152] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5958), - [4154] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_property_pattern_clause, 3, 0, 0), - [4156] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_pattern_clause, 3, 0, 0), - [4158] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3815), - [4160] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_property_pattern_clause, 5, 0, 0), - [4162] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_pattern_clause, 5, 0, 0), - [4164] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_element_access_expression, 2, 0, 18), - [4166] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_element_access_expression, 2, 0, 18), - [4168] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3712), - [4170] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__reserved_identifier, 1, 0, 0), SHIFT(2943), - [4173] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3822), - [4175] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3823), - [4177] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3824), - [4179] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_bracketed_argument_list, 4, 0, 0), - [4181] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_bracketed_argument_list, 4, 0, 0), - [4183] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3825), - [4185] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3827), - [4187] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_bracketed_argument_list, 3, 0, 0), - [4189] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_bracketed_argument_list, 3, 0, 0), - [4191] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__pointer_indirection_expression, 2, 0, 0), - [4193] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__pointer_indirection_expression, 2, 0, 0), - [4195] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_property_pattern_clause, 4, 0, 0), - [4197] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_pattern_clause, 4, 0, 0), - [4199] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_bracketed_argument_list, 5, 0, 0), - [4201] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_bracketed_argument_list, 5, 0, 0), - [4203] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3783), - [4205] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6018), - [4207] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3779), - [4209] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4173), - [4211] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3634), - [4213] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3738), - [4215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(635), - [4217] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3760), - [4219] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3611), - [4221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(582), - [4223] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3800), - [4225] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3801), - [4227] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3776), - [4229] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3820), - [4231] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3821), - [4233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(628), - [4235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(636), - [4237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(618), - [4239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(587), - [4241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(616), - [4243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(626), - [4245] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3208), - [4247] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__simple_name, 1, 0, 0), SHIFT(3617), - [4250] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__simple_name, 1, 0, 0), SHIFT(3600), - [4253] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_initializer_expression, 3, 0, 0), - [4255] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_initializer_expression, 3, 0, 0), - [4257] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_property_declaration, 5, 0, 134), - [4259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1151), - [4261] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_declaration, 5, 0, 134), - [4263] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_property_declaration, 3, 0, 78), - [4265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1876), - [4267] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_declaration, 3, 0, 78), - [4269] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5941), - [4271] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constant_pattern, 1, 0, 0), - [4273] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_constant_pattern, 1, 0, 0), REDUCE(sym_lvalue_expression, 1, 0, 0), - [4276] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_constant_pattern, 1, 0, 0), REDUCE(sym_lvalue_expression, 1, 0, 0), - [4279] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constant_pattern, 1, 0, 0), - [4281] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5982), - [4283] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5975), - [4285] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6022), - [4287] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_property_declaration, 6, 0, 156), - [4289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1202), - [4291] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_declaration, 6, 0, 156), - [4293] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__simple_name, 1, 0, 0), SHIFT(3601), - [4296] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_property_declaration, 4, 0, 102), - [4298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(977), - [4300] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_declaration, 4, 0, 102), - [4302] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_accessor_list, 2, 0, 0), - [4304] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_accessor_list, 2, 0, 0), - [4306] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_property_declaration, 4, 0, 99), - [4308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(988), - [4310] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_declaration, 4, 0, 99), - [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 = false}}, REDUCE(sym_property_declaration, 5, 0, 124), - [4318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1143), - [4320] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_declaration, 5, 0, 124), - [4322] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_property_declaration, 6, 0, 162), - [4324] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_declaration, 6, 0, 162), - [4326] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_declaration, 8, 0, 201), - [4328] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration, 8, 0, 201), - [4330] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_property_declaration, 8, 0, 202), - [4332] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_declaration, 8, 0, 202), - [4334] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_operator_declaration, 9, 0, 203), - [4336] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_operator_declaration, 9, 0, 203), - [4338] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_event_field_declaration, 3, 1, 0), - [4340] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_event_field_declaration, 3, 1, 0), - [4342] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_declaration, 9, 0, 204), - [4344] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration, 9, 0, 204), - [4346] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_event_declaration, 7, 0, 184), - [4348] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_event_declaration, 7, 0, 184), - [4350] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_property_declaration, 9, 0, 205), - [4352] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_declaration, 9, 0, 205), - [4354] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_conversion_operator_declaration, 7, 0, 185), - [4356] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_conversion_operator_declaration, 7, 0, 185), - [4358] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration, 3, 0, 0), - [4360] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 3, 0, 0), - [4362] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_operator_declaration, 7, 0, 186), - [4364] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_operator_declaration, 7, 0, 186), - [4366] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_indexer_declaration, 7, 0, 187), - [4368] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_indexer_declaration, 7, 0, 187), - [4370] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_indexer_declaration, 7, 0, 188), - [4372] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_indexer_declaration, 7, 0, 188), - [4374] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if, 6, 0, 98), - [4376] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if, 6, 0, 98), - [4378] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_operator_declaration, 6, 0, 147), - [4380] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_operator_declaration, 6, 0, 147), - [4382] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_declaration, 5, 0, 136), - [4384] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration, 5, 0, 136), - [4386] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_declaration, 7, 0, 189), - [4388] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration, 7, 0, 189), - [4390] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_indexer_declaration, 6, 0, 148), - [4392] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_indexer_declaration, 6, 0, 148), - [4394] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_declaration, 6, 0, 149), - [4396] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration, 6, 0, 149), - [4398] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_declaration, 6, 0, 150), - [4400] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration, 6, 0, 150), - [4402] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_declaration, 6, 0, 152), - [4404] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration, 6, 0, 152), - [4406] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_property_declaration, 6, 0, 153), - [4408] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_declaration, 6, 0, 153), - [4410] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_event_field_declaration, 5, 1, 0), - [4412] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_event_field_declaration, 5, 1, 0), - [4414] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type, 1, 0, 0), SHIFT(2802), - [4417] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_destructor_declaration, 6, 0, 154), - [4419] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_destructor_declaration, 6, 0, 154), - [4421] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_event_declaration, 6, 0, 155), - [4423] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_event_declaration, 6, 0, 155), - [4425] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_property_declaration, 7, 0, 190), - [4427] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_declaration, 7, 0, 190), - [4429] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_event_declaration, 6, 0, 156), - [4431] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_event_declaration, 6, 0, 156), - [4433] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_conversion_operator_declaration, 6, 0, 157), - [4435] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_conversion_operator_declaration, 6, 0, 157), - [4437] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_operator_declaration, 6, 0, 158), - [4439] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_operator_declaration, 6, 0, 158), - [4441] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5951), - [4443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6023), - [4445] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_indexer_declaration, 6, 0, 159), - [4447] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_indexer_declaration, 6, 0, 159), - [4449] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_indexer_declaration, 6, 0, 160), - [4451] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_indexer_declaration, 6, 0, 160), - [4453] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_declaration, 6, 0, 161), - [4455] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration, 6, 0, 161), - [4457] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_event_declaration, 4, 0, 49), - [4459] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_event_declaration, 4, 0, 49), - [4461] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_event_declaration, 4, 0, 99), - [4463] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_event_declaration, 4, 0, 99), - [4465] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_destructor_declaration, 4, 0, 100), - [4467] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_destructor_declaration, 4, 0, 100), - [4469] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if, 4, 0, 57), - [4471] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if, 4, 0, 57), - [4473] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_declaration, 7, 0, 191), - [4475] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration, 7, 0, 191), - [4477] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_declaration, 6, 0, 163), - [4479] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration, 6, 0, 163), - [4481] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_declaration, 6, 0, 164), - [4483] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration, 6, 0, 164), - [4485] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_event_declaration, 6, 0, 165), - [4487] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_event_declaration, 6, 0, 165), - [4489] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_event_declaration, 6, 0, 166), - [4491] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_event_declaration, 6, 0, 166), - [4493] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_indexer_declaration, 6, 0, 167), - [4495] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_indexer_declaration, 6, 0, 167), - [4497] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_declaration, 7, 0, 181), - [4499] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration, 7, 0, 181), - [4501] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_declaration, 7, 0, 192), - [4503] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration, 7, 0, 192), - [4505] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6011), - [4507] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_property_declaration, 7, 0, 182), - [4509] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_declaration, 7, 0, 182), - [4511] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_declaration, 6, 0, 168), - [4513] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration, 6, 0, 168), - [4515] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5966), - [4517] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_property_declaration, 6, 0, 169), - [4519] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_declaration, 6, 0, 169), - [4521] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_operator_declaration, 8, 0, 194), - [4523] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_operator_declaration, 8, 0, 194), - [4525] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration, 1, 0, 0), - [4527] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration, 1, 0, 0), - [4529] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 1, 0, 0), - [4531] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 1, 0, 0), - [4533] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6023), - [4535] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_property_declaration, 5, 0, 137), - [4537] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_declaration, 5, 0, 137), - [4539] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_declaration, 8, 0, 195), - [4541] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration, 8, 0, 195), - [4543] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_property_declaration, 8, 0, 196), - [4545] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_declaration, 8, 0, 196), - [4547] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constructor_declaration, 2, 0, 58), - [4549] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constructor_declaration, 2, 0, 58), - [4551] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration, 2, 0, 0), - [4553] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 2, 0, 0), - [4555] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6049), - [4557] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_operator_declaration, 7, 0, 173), - [4559] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_operator_declaration, 7, 0, 173), - [4561] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_indexer_declaration, 4, 0, 101), - [4563] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_indexer_declaration, 4, 0, 101), - [4565] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_operator_declaration, 8, 0, 197), - [4567] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_operator_declaration, 8, 0, 197), - [4569] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_indexer_declaration, 8, 0, 198), - [4571] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_indexer_declaration, 8, 0, 198), - [4573] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_declaration, 4, 0, 103), - [4575] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration, 4, 0, 103), - [4577] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_property_declaration, 4, 0, 104), - [4579] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_declaration, 4, 0, 104), - [4581] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_event_field_declaration, 4, 1, 0), - [4583] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_event_field_declaration, 4, 1, 0), - [4585] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_declaration, 8, 0, 199), - [4587] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration, 8, 0, 199), - [4589] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration, 4, 0, 0), - [4591] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 4, 0, 0), - [4593] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_declaration, 7, 0, 174), - [4595] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration, 7, 0, 174), - [4597] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_property_declaration, 7, 0, 175), - [4599] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_declaration, 7, 0, 175), - [4601] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_operator_declaration, 7, 0, 177), - [4603] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_operator_declaration, 7, 0, 177), - [4605] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_indexer_declaration, 7, 0, 178), - [4607] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_indexer_declaration, 7, 0, 178), - [4609] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_declaration, 7, 0, 179), - [4611] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration, 7, 0, 179), - [4613] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_destructor_declaration, 5, 0, 122), - [4615] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_destructor_declaration, 5, 0, 122), - [4617] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_event_declaration, 5, 0, 123), - [4619] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_event_declaration, 5, 0, 123), - [4621] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_event_declaration, 5, 0, 124), - [4623] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_event_declaration, 5, 0, 124), - [4625] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_conversion_operator_declaration, 5, 0, 125), - [4627] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_conversion_operator_declaration, 5, 0, 125), - [4629] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if, 5, 0, 77), - [4631] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if, 5, 0, 77), - [4633] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if, 5, 0, 57), - [4635] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if, 5, 0, 57), - [4637] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_operator_declaration, 5, 0, 126), - [4639] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_operator_declaration, 5, 0, 126), - [4641] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_indexer_declaration, 5, 0, 127), - [4643] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_indexer_declaration, 5, 0, 127), - [4645] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_indexer_declaration, 5, 0, 128), - [4647] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_indexer_declaration, 5, 0, 128), - [4649] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_declaration, 7, 0, 180), - [4651] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration, 7, 0, 180), - [4653] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_declaration, 8, 0, 200), - [4655] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration, 8, 0, 200), - [4657] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_declaration, 5, 0, 129), - [4659] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration, 5, 0, 129), - [4661] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_property_declaration, 5, 0, 130), - [4663] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_declaration, 5, 0, 130), - [4665] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_declaration, 5, 0, 132), - [4667] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration, 5, 0, 132), - [4669] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_declaration, 5, 0, 133), - [4671] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration, 5, 0, 133), - [4673] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_event_declaration, 5, 0, 69), - [4675] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_event_declaration, 5, 0, 69), - [4677] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_event_declaration, 7, 0, 183), - [4679] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_event_declaration, 7, 0, 183), - [4681] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_event_declaration, 5, 0, 134), - [4683] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_event_declaration, 5, 0, 134), - [4685] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_indexer_declaration, 5, 0, 135), - [4687] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_indexer_declaration, 5, 0, 135), - [4689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4636), - [4691] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3540), - [4693] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3419), - [4695] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4372), - [4697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5145), - [4699] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__attribute_list, 1, 0, 0), - [4701] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__attribute_list, 1, 0, 0), - [4703] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_attribute_list, 4, 0, 57), - [4705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7017), - [4707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5243), - [4709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3581), - [4711] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3454), - [4713] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6810), - [4715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2972), - [4717] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5997), - [4719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5957), - [4721] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__class_declaration_initializer_repeat1, 2, 0, 0), - [4723] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__class_declaration_initializer_repeat1, 2, 0, 0), SHIFT_REPEAT(4818), - [4726] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__class_declaration_initializer_repeat1, 2, 0, 0), - [4728] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__class_declaration_initializer_repeat1, 2, 0, 0), SHIFT_REPEAT(5132), - [4731] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5965), - [4733] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5957), - [4735] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5967), - [4737] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4214), - [4739] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5955), - [4741] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6000), - [4743] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5939), - [4745] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attribute_list, 6, 0, 0), - [4747] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute_list, 6, 0, 0), - [4749] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attribute_list, 3, 0, 0), - [4751] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute_list, 3, 0, 0), - [4753] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5973), - [4755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6028), - [4757] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attribute_list, 4, 0, 0), - [4759] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute_list, 4, 0, 0), - [4761] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attribute_list, 5, 0, 0), - [4763] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute_list, 5, 0, 0), - [4765] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_accessor_list_repeat1, 2, 0, 0), SHIFT_REPEAT(2175), - [4768] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_accessor_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3665), - [4771] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_accessor_list_repeat1, 2, 0, 0), SHIFT_REPEAT(2174), - [4774] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_accessor_list_repeat1, 2, 0, 0), SHIFT_REPEAT(4703), - [4777] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_accessor_list_repeat1, 2, 0, 0), - [4779] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_accessor_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3506), - [4782] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_accessor_list_repeat1, 2, 0, 0), SHIFT_REPEAT(6442), - [4785] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_accessor_list_repeat1, 2, 0, 0), SHIFT_REPEAT(5265), - [4788] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6057), - [4790] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5949), - [4792] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5959), - [4794] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6004), - [4796] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5977), - [4798] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6007), - [4800] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5987), - [4802] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_creation_expression, 2, 0, 7), - [4804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(534), - [4806] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_creation_expression, 2, 0, 7), - [4808] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6028), - [4810] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3665), - [4812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4703), - [4814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2653), - [4816] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3506), - [4818] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6442), - [4820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5265), - [4822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7246), - [4824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2648), - [4826] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__simple_name, 1, 0, 0), SHIFT(3583), - [4829] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_implicit_object_creation_expression, 2, 0, 0), - [4831] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_implicit_object_creation_expression, 2, 0, 0), - [4833] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_prefix_unary_expression, 2, 0, 0), - [4835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(560), - [4837] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_prefix_unary_expression, 2, 0, 0), - [4839] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3032), - [4841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3032), - [4843] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_await_expression, 2, 0, 0), - [4845] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_await_expression, 2, 0, 0), - [4847] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stackalloc_expression, 2, 0, 7), - [4849] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__array_base_type, 1, 0, 0), REDUCE(sym_stackalloc_expression, 2, 0, 7), - [4852] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_stackalloc_expression, 2, 0, 7), - [4854] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cast_expression, 4, 1, 53), - [4856] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cast_expression, 4, 1, 53), - [4858] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1577), - [4860] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression, 1, 0, 0), - [4862] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression, 1, 0, 0), - [4864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1577), - [4866] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_creation_expression, 3, 0, 28), - [4868] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_creation_expression, 3, 0, 28), - [4870] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 3, 0, 0), - [4872] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 3, 0, 0), - [4874] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__simple_name, 1, 0, 0), SHIFT(3635), - [4877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6038), - [4879] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string_literal, 2, 0, 0), - [4881] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string_literal, 2, 0, 0), - [4883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2995), - [4885] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_else_in_attribute_list, 2, 0, 0), - [4887] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type, 1, 0, 0), SHIFT(2925), - [4890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3555), - [4892] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string_literal, 3, 0, 0), - [4894] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string_literal, 3, 0, 0), - [4896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3044), - [4898] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1524), - [4900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1524), - [4902] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_raw_string_literal, 3, 0, 0), - [4904] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_raw_string_literal, 3, 0, 0), - [4906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3030), - [4908] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 2, 0, 0), - [4910] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 2, 0, 0), - [4912] = {.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, 7), - [4916] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_type, 1, 0, 0), REDUCE(sym_array_creation_expression, 2, 17, 7), - [4919] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_type, 1, 0, 0), SHIFT(607), - [4922] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type, 1, 0, 0), REDUCE(sym_array_creation_expression, 2, 17, 7), - [4925] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_type, 1, 0, 0), REDUCE(sym_array_creation_expression, 2, 17, 7), SHIFT(2968), - [4929] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 4, 0, 0), - [4931] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 4, 0, 0), - [4933] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_as_expression, 3, 0, 40), - [4935] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_as_expression, 3, 0, 40), - [4937] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_creation_expression, 4, 0, 56), - [4939] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_creation_expression, 4, 0, 56), - [4941] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_checked_expression, 4, 0, 0), - [4943] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_checked_expression, 4, 0, 0), - [4945] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__switch_expression_body, 3, 0, 0), - [4947] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__switch_expression_body, 3, 0, 0), - [4949] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__select_or_group_clause, 1, 0, 0), - [4951] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__select_or_group_clause, 1, 0, 0), - [4953] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_attribute_list, 5, 0, 57), - [4955] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_attribute_list, 5, 0, 57), - [4957] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_implicit_stackalloc_expression, 4, 0, 0), - [4959] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_implicit_stackalloc_expression, 4, 0, 0), - [4961] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sizeof_expression, 4, 0, 26), - [4963] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sizeof_expression, 4, 0, 26), - [4965] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_expression, 5, 0, 57), - [4967] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_expression, 5, 0, 57), - [4969] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_typeof_expression, 4, 0, 26), - [4971] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_typeof_expression, 4, 0, 26), - [4973] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_attribute_list, 5, 0, 77), - [4975] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_attribute_list, 5, 0, 77), - [4977] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_makeref_expression, 4, 0, 0), - [4979] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_makeref_expression, 4, 0, 0), - [4981] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reftype_expression, 4, 0, 0), - [4983] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_reftype_expression, 4, 0, 0), - [4985] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__query_body_repeat2, 3, 0, 0), - [4987] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__query_body_repeat2, 3, 0, 0), - [4989] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_member_binding_expression, 2, 0, 8), - [4991] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_member_binding_expression, 2, 0, 8), - [4993] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1249), - [4995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1249), - [4997] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__switch_expression_body, 2, 0, 0), - [4999] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__switch_expression_body, 2, 0, 0), - [5001] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__with_body, 3, 0, 0), - [5003] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__with_body, 3, 0, 0), - [5005] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__class_declaration_initializer_repeat1, 1, 0, 0), - [5007] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__class_declaration_initializer_repeat1, 1, 0, 0), - [5009] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type, 1, 0, 0), SHIFT(2968), - [5012] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_expression, 3, 0, 0), - [5014] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_expression, 3, 0, 0), - [5016] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_character_literal, 3, 0, 0), - [5018] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_character_literal, 3, 0, 0), - [5020] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_expression, 3, 0, 0), - [5022] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_with_expression, 3, 0, 0), - [5024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4820), - [5026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7029), - [5028] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3793), - [5030] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7745), - [5032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2182), - [5034] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6077), - [5036] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4264), - [5038] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6579), - [5040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5254), - [5042] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_object_creation_expression, 6, 0, 0), - [5044] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anonymous_object_creation_expression, 6, 0, 0), - [5046] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_method_expression, 3, 0, 0), - [5048] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anonymous_method_expression, 3, 0, 0), - [5050] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_initializer_expression, 4, 0, 0), - [5052] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_initializer_expression, 4, 0, 0), - [5054] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_non_lvalue_expression, 1, 0, 0), - [5056] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_non_lvalue_expression, 1, 0, 0), - [5058] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interpolated_string_expression, 4, 0, 0), - [5060] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interpolated_string_expression, 4, 0, 0), - [5062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3980), - [5064] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__with_body, 2, 0, 0), - [5066] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__with_body, 2, 0, 0), - [5068] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_literal, 1, 0, 0), - [5070] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_literal, 1, 0, 0), - [5072] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_expression, 3, 0, 44), - [5074] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lambda_expression, 3, 0, 44), - [5076] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interpolated_string_expression, 4, 0, 48), - [5078] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interpolated_string_expression, 4, 0, 48), - [5080] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_method_expression, 4, 0, 47), - [5082] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anonymous_method_expression, 4, 0, 47), - [5084] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_modifier, 1, 0, 0), - [5086] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_refvalue_expression, 6, 0, 97), - [5088] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_refvalue_expression, 6, 0, 97), - [5090] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression_statement_expression, 1, 0, 0), - [5092] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression_statement_expression, 1, 0, 0), - [5094] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_method_expression, 2, 0, 0), - [5096] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anonymous_method_expression, 2, 0, 0), - [5098] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1656), - [5100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1656), - [5102] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_boolean_literal, 1, 0, 0), - [5104] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_boolean_literal, 1, 0, 0), - [5106] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_expression, 6, 0, 98), - [5108] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_expression, 6, 0, 98), - [5110] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_initializer_expression, 5, 0, 0), - [5112] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_initializer_expression, 5, 0, 0), - [5114] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_raw_string_literal, 4, 0, 0), - [5116] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_raw_string_literal, 4, 0, 0), - [5118] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__switch_expression_body, 4, 0, 0), - [5120] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__switch_expression_body, 4, 0, 0), - [5122] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_postfix_unary_expression, 2, 0, 0), - [5124] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_postfix_unary_expression, 2, 0, 0), - [5126] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__with_body, 4, 0, 0), - [5128] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__with_body, 4, 0, 0), - [5130] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_attribute_list, 6, 0, 98), - [5132] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_attribute_list, 6, 0, 98), - [5134] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_invocation_expression, 2, 0, 17), - [5136] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_invocation_expression, 2, 0, 17), - [5138] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_query_expression, 2, 0, 0), - [5140] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_query_expression, 2, 0, 0), - [5142] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interpolated_string_expression, 3, 0, 0), - [5144] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interpolated_string_expression, 3, 0, 0), - [5146] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interpolated_string_expression, 3, 0, 21), - [5148] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interpolated_string_expression, 3, 0, 21), - [5150] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6424), - [5152] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string_literal, 4, 0, 0), - [5154] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string_literal, 4, 0, 0), - [5156] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_implicit_array_creation_expression, 5, 0, 0), - [5158] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_implicit_array_creation_expression, 5, 0, 0), - [5160] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_expression, 3, 0, 0), - [5162] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_expression, 3, 0, 0), - [5164] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__query_body_repeat2, 4, 0, 0), - [5166] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__query_body_repeat2, 4, 0, 0), - [5168] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_method_expression, 3, 0, 19), - [5170] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anonymous_method_expression, 3, 0, 19), - [5172] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_implicit_array_creation_expression, 4, 0, 0), - [5174] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_implicit_array_creation_expression, 4, 0, 0), - [5176] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_object_creation_expression, 3, 0, 0), - [5178] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anonymous_object_creation_expression, 3, 0, 0), - [5180] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_implicit_object_creation_expression, 3, 0, 0), - [5182] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_implicit_object_creation_expression, 3, 0, 0), - [5184] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_creation_expression, 3, 0, 29), - [5186] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_creation_expression, 3, 0, 29), - [5188] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_creation_expression, 3, 17, 7), - [5190] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_creation_expression, 3, 17, 7), - [5192] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_expression, 5, 0, 77), - [5194] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_expression, 5, 0, 77), - [5196] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stackalloc_expression, 3, 0, 7), - [5198] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_stackalloc_expression, 3, 0, 7), - [5200] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_conditional_access_expression, 3, 0, 42), - [5202] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_conditional_access_expression, 3, 0, 42), - [5204] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__switch_expression_body, 5, 0, 0), - [5206] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__switch_expression_body, 5, 0, 0), - [5208] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_object_creation_expression, 5, 0, 0), - [5210] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anonymous_object_creation_expression, 5, 0, 0), - [5212] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_object_creation_expression, 4, 0, 0), - [5214] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anonymous_object_creation_expression, 4, 0, 0), - [5216] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6046), - [5218] = {.entry = {.count = 1, .reusable = false}}, SHIFT(881), - [5220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(881), - [5222] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__class_declaration_initializer_repeat2, 2, 0, 0), - [5224] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__class_declaration_initializer_repeat2, 2, 0, 0), SHIFT_REPEAT(3128), - [5227] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__class_declaration_initializer_repeat2, 2, 0, 0), - [5229] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1813), - [5231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1813), - [5233] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1084), - [5235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1084), - [5237] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1506), - [5239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1506), - [5241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6081), - [5243] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1705), - [5245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1705), - [5247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(530), - [5249] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__simple_name, 1, 0, 0), SHIFT(3623), - [5252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5929), - [5254] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__class_declaration_initializer_repeat2, 1, 0, 0), - [5256] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__class_declaration_initializer_repeat2, 1, 0, 0), - [5258] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__class_declaration_initializer_repeat1, 2, 0, 0), SHIFT_REPEAT(4703), - [5261] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__class_declaration_initializer_repeat1, 2, 0, 0), SHIFT_REPEAT(5265), - [5264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(542), - [5266] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1398), - [5268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1398), - [5270] = {.entry = {.count = 1, .reusable = false}}, SHIFT(982), - [5272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(982), - [5274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(56), - [5276] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_type, 1, 0, 0), SHIFT(605), - [5279] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_type, 1, 0, 0), REDUCE(sym_array_creation_expression, 2, 17, 7), SHIFT(3170), - [5283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(548), - [5285] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3244), - [5287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3244), - [5289] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1624), - [5291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1624), - [5293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(52), - [5295] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__simple_name, 1, 0, 0), SHIFT(3570), - [5298] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1502), - [5300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1502), - [5302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(557), - [5304] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3386), - [5306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3386), - [5308] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1596), - [5310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1596), - [5312] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__simple_name, 1, 0, 0), SHIFT(3593), - [5315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6021), - [5317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3319), - [5319] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5930), - [5321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3334), - [5323] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__class_declaration_initializer_repeat1, 2, 0, 0), SHIFT_REPEAT(4555), - [5326] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__class_declaration_initializer_repeat1, 2, 0, 0), SHIFT_REPEAT(5244), - [5329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3293), - [5331] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type, 1, 0, 0), SHIFT(3170), - [5334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3290), - [5336] = {.entry = {.count = 1, .reusable = false}}, SHIFT(923), - [5338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(923), - [5340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3313), - [5342] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_recursive_pattern, 3, 0, 84), - [5344] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_recursive_pattern, 3, 0, 84), - [5346] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_and_pattern, 3, 0, 40), - [5348] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_and_pattern, 3, 0, 40), - [5350] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_recursive_pattern, 3, 0, 80), - [5352] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_recursive_pattern, 3, 0, 80), - [5354] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_is_pattern_expression, 3, 0, 43), - [5356] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_is_pattern_expression, 3, 0, 43), - [5358] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type, 1, 0, 0), SHIFT(3263), - [5361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6027), - [5363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3371), - [5365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4021), - [5367] = {.entry = {.count = 1, .reusable = false}}, SHIFT(939), - [5369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(939), - [5371] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6095), - [5373] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pattern, 1, 0, 0), - [5375] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pattern, 1, 0, 0), - [5377] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_variable_designation, 2, 0, 0), - [5379] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_variable_designation, 2, 0, 0), - [5381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3862), - [5383] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_pattern, 4, 0, 0), - [5385] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_pattern, 4, 0, 0), - [5387] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_variable_designation, 3, 0, 61), - [5389] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_variable_designation, 3, 0, 61), - [5391] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_constant_pattern, 1, 0, 0), REDUCE(sym_non_lvalue_expression, 1, 0, 0), - [5394] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_constant_pattern, 1, 0, 0), REDUCE(sym_non_lvalue_expression, 1, 0, 0), - [5397] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_constant_pattern, 1, 0, 0), REDUCE(sym__expression_statement_expression, 1, 0, 0), - [5400] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_constant_pattern, 1, 0, 0), REDUCE(sym__expression_statement_expression, 1, 0, 0), - [5403] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1548), - [5405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1548), - [5407] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_recursive_pattern, 4, 0, 106), - [5409] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_recursive_pattern, 4, 0, 106), - [5411] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1800), - [5413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1800), - [5415] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_pattern, 5, 0, 0), - [5417] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_pattern, 5, 0, 0), - [5419] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_pattern, 2, 0, 0), - [5421] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_pattern, 2, 0, 0), - [5423] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_variable_designation, 4, 0, 138), - [5425] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_variable_designation, 4, 0, 138), - [5427] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__variable_designation, 1, 0, 0), - [5429] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__variable_designation, 1, 0, 0), - [5431] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__variable_designation, 1, 0, 5), - [5433] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_var_pattern, 2, 0, 61), - [5435] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_var_pattern, 2, 0, 61), - [5437] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration_pattern, 2, 0, 62), - [5439] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration_pattern, 2, 0, 62), - [5441] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1123), - [5443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1123), - [5445] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_recursive_pattern, 2, 0, 61), - [5447] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_recursive_pattern, 2, 0, 61), - [5449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3836), - [5451] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6389), - [5453] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_type, 1, 0, 0), SHIFT(601), - [5456] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_type, 1, 0, 0), REDUCE(sym_array_creation_expression, 2, 17, 7), SHIFT(3263), - [5460] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_pattern, 3, 0, 0), - [5462] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_pattern, 3, 0, 0), - [5464] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_pattern, 3, 0, 0), - [5466] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_pattern, 3, 0, 0), - [5468] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6087), - [5470] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6490), - [5472] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3690), - [5474] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4232), - [5476] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4290), - [5478] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6474), - [5480] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6470), - [5482] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1788), - [5484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1788), - [5486] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_accessor_declaration, 3, 0, 151), - [5488] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_accessor_declaration, 3, 0, 151), - [5490] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6578), - [5492] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6544), - [5494] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1023), - [5496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1023), - [5498] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1038), - [5500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1038), - [5502] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6510), - [5504] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1138), - [5506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1138), - [5508] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1219), - [5510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1219), - [5512] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1162), - [5514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1162), - [5516] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1282), - [5518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1282), - [5520] = {.entry = {.count = 1, .reusable = false}}, SHIFT(885), - [5522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(885), - [5524] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6532), - [5526] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5985), - [5528] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6438), - [5530] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3812), - [5532] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6568), - [5534] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7421), - [5536] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6275), - [5538] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4083), - [5540] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1801), - [5542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1801), - [5544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4020), - [5546] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_accessor_list_repeat1, 1, 0, 0), - [5548] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_accessor_list_repeat1, 1, 0, 0), - [5550] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_type, 1, 0, 0), SHIFT(585), - [5553] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_type, 1, 0, 0), REDUCE(sym_array_creation_expression, 2, 17, 7), SHIFT(2925), - [5557] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_accessor_declaration, 4, 0, 176), - [5559] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_accessor_declaration, 4, 0, 176), - [5561] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1840), - [5563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1840), - [5565] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1792), - [5567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1792), - [5569] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_accessor_declaration, 2, 0, 131), - [5571] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_accessor_declaration, 2, 0, 131), - [5573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(551), - [5575] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1570), - [5577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1570), - [5579] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6032), - [5581] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1566), - [5583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1566), - [5585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2476), - [5587] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1203), - [5589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1203), - [5591] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1399), - [5593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1399), - [5595] = {.entry = {.count = 1, .reusable = false}}, SHIFT(864), - [5597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(864), - [5599] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1266), - [5601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1266), - [5603] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3819), - [5605] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5884), - [5607] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4459), - [5609] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1328), - [5611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1328), - [5613] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1378), - [5615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1378), - [5617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(42), - [5619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6671), - [5621] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__class_declaration_initializer_repeat2, 2, 0, 0), SHIFT_REPEAT(3665), - [5624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(545), - [5626] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1122), - [5628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1122), - [5630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6751), - [5632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(526), - [5634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(576), - [5636] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2370), - [5638] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2367), - [5640] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2380), - [5642] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1185), - [5644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1185), - [5646] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2493), - [5648] = {.entry = {.count = 1, .reusable = false}}, SHIFT(904), - [5650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(904), - [5652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2840), - [5654] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1004), - [5656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1004), - [5658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(562), - [5660] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_binary_expression, 3, 0, 40), - [5662] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1580), - [5664] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_binary_expression, 3, 0, 40), - [5666] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3885), - [5668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3885), - [5670] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1581), - [5672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1582), - [5674] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1582), - [5676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1583), - [5678] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1585), - [5680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1586), - [5682] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1586), - [5684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1587), - [5686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1580), - [5688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7179), - [5690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(187), - [5692] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3954), - [5694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(413), - [5696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7236), - [5698] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2512), - [5700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6845), - [5702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(528), - [5704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(578), - [5706] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7758), - [5708] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2441), - [5710] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3133), - [5712] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3209), - [5714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2399), - [5716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4422), - [5718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3212), - [5720] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_type, 1, 0, 0), SHIFT(651), - [5723] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_type, 1, 0, 0), REDUCE(sym_array_creation_expression, 2, 17, 7), SHIFT(2341), - [5727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(523), - [5729] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2434), - [5731] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_expression, 3, 0, 0), - [5733] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range_expression, 3, 0, 0), - [5735] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2443), - [5737] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3518), - [5739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2931), - [5741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2912), - [5743] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2439), - [5745] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_select_clause, 2, 0, 0), - [5747] = {.entry = {.count = 1, .reusable = false}}, SHIFT(629), - [5749] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1584), - [5751] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_select_clause, 2, 0, 0), - [5753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1588), - [5755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1589), - [5757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1590), - [5759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3252), - [5761] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2503), - [5763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2424), - [5765] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2354), - [5767] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_group_clause, 4, 0, 0), - [5769] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_group_clause, 4, 0, 0), - [5771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(44), - [5773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2724), - [5775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2670), - [5777] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_relational_pattern, 2, 0, 0), - [5779] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_relational_pattern, 2, 0, 0), - [5781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2427), - [5783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4069), - [5785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6757), - [5787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(525), - [5789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(565), - [5791] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7749), - [5793] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2514), - [5795] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2901), - [5797] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2944), - [5799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3214), - [5801] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_modifier, 1, 0, 0), REDUCE(aux_sym_using_directive_repeat1, 1, 0, 0), SHIFT(2175), - [5805] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_modifier, 1, 0, 0), REDUCE(aux_sym_using_directive_repeat1, 1, 0, 0), SHIFT(2174), - [5809] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_modifier, 1, 0, 0), REDUCE(aux_sym_using_directive_repeat1, 1, 0, 0), - [5812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6827), - [5814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(524), - [5816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(568), - [5818] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7756), - [5820] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2208), - [5822] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3195), - [5824] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3258), - [5826] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2224), - [5828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2272), - [5830] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2371), - [5832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2615), - [5834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2639), - [5836] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2403), - [5838] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2431), - [5840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6794), - [5842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(529), - [5844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(571), - [5846] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7753), - [5848] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2320), - [5850] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4312), - [5852] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4469), - [5854] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2438), - [5856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3187), - [5858] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_throw_expression, 2, 0, 0), - [5860] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_throw_expression, 2, 0, 0), - [5862] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2353), - [5864] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment_expression, 3, 0, 40), - [5866] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_assignment_expression, 3, 0, 40), - [5868] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2451), - [5870] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1103), - [5872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1103), - [5874] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2517), - [5876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2984), - [5878] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1759), - [5880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1759), - [5882] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_conditional_expression, 5, 0, 83), - [5884] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_conditional_expression, 5, 0, 83), - [5886] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2337), - [5888] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2203), - [5890] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2436), - [5892] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__class_declaration_initializer_repeat2, 2, 0, 0), SHIFT_REPEAT(3870), - [5895] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2355), - [5897] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2504), - [5899] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ref_expression, 2, 0, 0), - [5901] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ref_expression, 2, 0, 0), - [5903] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1532), - [5905] = {.entry = {.count = 1, .reusable = false}}, SHIFT(655), - [5907] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1533), - [5909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1534), - [5911] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1534), - [5913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1535), - [5915] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1536), - [5917] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1537), - [5919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1538), - [5921] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1538), - [5923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1539), - [5925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1532), - [5927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(182), - [5929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1540), - [5931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1541), - [5933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1542), - [5935] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3945), - [5937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(307), - [5939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3706), - [5941] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1242), - [5943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1242), - [5945] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1070), - [5947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1070), - [5949] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__query_body_repeat2, 2, 0, 0), - [5951] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__query_body_repeat2, 2, 0, 0), - [5953] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__query_body_repeat2, 2, 0, 0), SHIFT_REPEAT(6075), - [5956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3772), + [3383] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extern_alias_directive, 4, 0, 26), + [3385] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extern_alias_directive, 4, 0, 26), + [3387] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_declaration, 2, 0, 10), + [3389] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_declaration, 2, 0, 10), + [3391] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_declaration, 2, 0, 11), + [3393] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_declaration, 2, 0, 11), + [3395] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__declaration_list_body, 1, 0, 0), + [3397] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__declaration_list_body, 1, 0, 0), + [3399] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_using_directive, 6, 0, 26), + [3401] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_using_directive, 6, 0, 26), + [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_using_directive, 7, 0, 63), + [3409] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_using_directive, 7, 0, 63), + [3411] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_using_directive, 3, 0, 0), + [3413] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_using_directive, 3, 0, 0), + [3415] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_file_scoped_namespace_declaration, 3, 0, 7), + [3417] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_file_scoped_namespace_declaration, 3, 0, 7), + [3419] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6349), + [3421] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7227), + [3423] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__reserved_identifier, 1, 0, 0), SHIFT(3654), + [3426] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__reserved_identifier, 1, 0, 0), SHIFT(3670), + [3429] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__reserved_identifier, 1, 0, 0), + [3431] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__reserved_identifier, 1, 0, 0), + [3433] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__reserved_identifier, 1, 0, 0), SHIFT(3747), + [3436] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3755), + [3438] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7579), + [3440] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__reserved_identifier, 1, 0, 0), SHIFT(3835), + [3443] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__reserved_identifier, 1, 0, 0), SHIFT(3986), + [3446] = {.entry = {.count = 1, .reusable = false}}, SHIFT(78), + [3448] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_compilation_unit_repeat1, 1, 0, 0), + [3450] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_compilation_unit_repeat1, 1, 0, 0), + [3452] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__top_level_item, 1, 0, 0), + [3454] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__top_level_item, 1, 0, 0), + [3456] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_global_statement, 1, 0, 0), + [3458] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_global_statement, 1, 0, 0), + [3460] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_try_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(6349), + [3463] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_modifier, 1, 0, 0), REDUCE(sym__reserved_identifier, 1, 0, 0), + [3466] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_modifier, 1, 0, 0), + [3468] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_modifier, 1, 0, 0), REDUCE(sym__reserved_identifier, 1, 0, 0), + [3471] = {.entry = {.count = 1, .reusable = false}}, SHIFT(73), + [3473] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 1, 0, 0), + [3475] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_block_repeat1, 1, 0, 0), + [3477] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__for_statement_conditions, 7, 0, 134), + [3479] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_statement_conditions, 7, 0, 134), + [3481] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__for_statement_conditions, 6, 0, 110), + [3483] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_statement_conditions, 6, 0, 110), + [3485] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__for_statement_conditions, 5, 0, 89), + [3487] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_statement_conditions, 5, 0, 89), + [3489] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__for_statement_conditions, 7, 0, 133), + [3491] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_statement_conditions, 7, 0, 133), + [3493] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__foreach_statement_initializer, 8, 0, 138), + [3495] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__foreach_statement_initializer, 8, 0, 138), + [3497] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__for_statement_conditions, 7, 0, 135), + [3499] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_statement_conditions, 7, 0, 135), + [3501] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__for_statement_conditions, 7, 0, 136), + [3503] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_statement_conditions, 7, 0, 136), + [3505] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__for_statement_conditions, 7, 0, 137), + [3507] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_statement_conditions, 7, 0, 137), + [3509] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__for_statement_conditions, 5, 0, 88), + [3511] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_statement_conditions, 5, 0, 88), + [3513] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__for_statement_conditions, 5, 0, 87), + [3515] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_statement_conditions, 5, 0, 87), + [3517] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__for_statement_conditions, 6, 0, 109), + [3519] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_statement_conditions, 6, 0, 109), + [3521] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__for_statement_conditions, 6, 0, 107), + [3523] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_statement_conditions, 6, 0, 107), + [3525] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__for_statement_conditions, 6, 0, 111), + [3527] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_statement_conditions, 6, 0, 111), + [3529] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__foreach_statement_initializer, 7, 0, 112), + [3531] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__foreach_statement_initializer, 7, 0, 112), + [3533] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__foreach_statement_initializer, 7, 0, 113), + [3535] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__foreach_statement_initializer, 7, 0, 113), + [3537] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__for_statement_conditions, 8, 0, 163), + [3539] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_statement_conditions, 8, 0, 163), + [3541] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__for_statement_conditions, 6, 0, 108), + [3543] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_statement_conditions, 6, 0, 108), + [3545] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__foreach_statement_initializer, 6, 0, 91), + [3547] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__foreach_statement_initializer, 6, 0, 91), + [3549] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__for_statement_conditions, 4, 0, 0), + [3551] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_statement_conditions, 4, 0, 0), + [3553] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__for_statement_conditions, 8, 0, 162), + [3555] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_statement_conditions, 8, 0, 162), + [3557] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__for_statement_conditions, 9, 0, 185), + [3559] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_statement_conditions, 9, 0, 185), + [3561] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__for_statement_conditions, 8, 0, 164), + [3563] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_statement_conditions, 8, 0, 164), + [3565] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym__reserved_identifier, 1, 0, 0), REDUCE(aux_sym__parameter_type_with_modifiers_repeat1, 1, 0, 1), SHIFT(2168), + [3569] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym__reserved_identifier, 1, 0, 0), REDUCE(aux_sym__parameter_type_with_modifiers_repeat1, 1, 0, 1), SHIFT(2169), + [3573] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__reserved_identifier, 1, 0, 0), REDUCE(aux_sym__parameter_type_with_modifiers_repeat1, 1, 0, 1), + [3576] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__reserved_identifier, 1, 0, 0), SHIFT(2354), + [3579] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__reserved_identifier, 1, 0, 0), SHIFT(2350), + [3582] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3734), + [3584] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__reserved_identifier, 1, 0, 0), SHIFT(2168), + [3587] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__reserved_identifier, 1, 0, 0), SHIFT(2169), + [3590] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3721), + [3592] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_implicit_type, 1, 1, 0), REDUCE(sym__reserved_identifier, 1, 0, 0), SHIFT(3199), + [3596] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_implicit_type, 1, 1, 0), REDUCE(sym__reserved_identifier, 1, 0, 0), SHIFT(3198), + [3600] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_implicit_type, 1, 1, 0), REDUCE(sym__reserved_identifier, 1, 0, 0), + [3603] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_implicit_type, 1, 1, 0), REDUCE(sym__reserved_identifier, 1, 0, 0), + [3606] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_implicit_type, 1, 1, 0), REDUCE(sym__reserved_identifier, 1, 0, 0), SHIFT(5835), + [3610] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_implicit_type, 1, 1, 0), REDUCE(sym__reserved_identifier, 1, 0, 0), SHIFT(3344), + [3614] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3825), + [3616] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_implicit_type, 1, 1, 0), REDUCE(sym__reserved_identifier, 1, 0, 0), SHIFT(5854), + [3620] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_implicit_type, 1, 1, 0), REDUCE(sym__reserved_identifier, 1, 0, 0), SHIFT(3352), + [3624] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3838), + [3626] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__reserved_identifier, 1, 0, 0), SHIFT(2620), + [3629] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__reserved_identifier, 1, 0, 0), SHIFT(2619), + [3632] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3713), + [3634] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_identifier, 1, 0, 0), + [3636] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_identifier, 1, 0, 0), + [3638] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__simple_name, 1, 0, 0), + [3640] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__simple_name, 1, 0, 0), + [3642] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_name, 2, 0, 0), + [3644] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_name, 2, 0, 0), + [3646] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3700), + [3648] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__simple_name, 1, 0, 0), SHIFT(3567), + [3651] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__lambda_parameters, 1, 0, 4), + [3653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5992), + [3655] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_argument_list, 2, 0, 0), + [3657] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_argument_list, 2, 0, 0), + [3659] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_argument_list, 3, 0, 0), + [3661] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_argument_list, 3, 0, 0), + [3663] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_argument_list, 4, 0, 0), + [3665] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_argument_list, 4, 0, 0), + [3667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6009), + [3669] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_qualified_name, 3, 0, 36), + [3671] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_member_access_expression, 3, 0, 31), + [3673] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_member_access_expression, 3, 0, 31), + [3675] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_qualified_name, 3, 0, 36), REDUCE(sym_member_access_expression, 3, 0, 31), + [3678] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_qualified_name, 3, 0, 36), + [3680] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_qualified_name, 3, 0, 36), REDUCE(sym_member_access_expression, 3, 0, 31), + [3683] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_implicit_type, 1, 1, 0), REDUCE(sym__reserved_identifier, 1, 0, 0), SHIFT(2565), + [3687] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_implicit_type, 1, 1, 0), REDUCE(sym__reserved_identifier, 1, 0, 0), SHIFT(2592), + [3691] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__name, 1, 0, 0), + [3693] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__name, 1, 0, 0), REDUCE(sym_constant_pattern, 1, 0, 0), + [3696] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lvalue_expression, 1, 0, 0), + [3698] = {.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), + [3702] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__name, 1, 0, 0), + [3704] = {.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), + [3708] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__name, 1, 0, 0), REDUCE(sym_constant_pattern, 1, 0, 0), + [3711] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lvalue_expression, 1, 0, 0), + [3713] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__name, 1, 0, 0), REDUCE(sym_lvalue_expression, 1, 0, 0), + [3716] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__name, 1, 0, 0), REDUCE(sym_lvalue_expression, 1, 0, 0), + [3719] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_implicit_type, 1, 1, 0), REDUCE(sym__reserved_identifier, 1, 0, 0), SHIFT(4328), + [3723] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_implicit_type, 1, 1, 0), REDUCE(sym__reserved_identifier, 1, 0, 0), SHIFT(4307), + [3727] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_implicit_type, 1, 1, 0), REDUCE(sym__reserved_identifier, 1, 0, 0), SHIFT(5813), + [3731] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_implicit_type, 1, 1, 0), REDUCE(sym__reserved_identifier, 1, 0, 0), SHIFT(4760), + [3735] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3111), + [3737] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3748), + [3739] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6087), + [3741] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3639), + [3743] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6090), + [3745] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6058), + [3747] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3779), + [3749] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5990), + [3751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6065), + [3753] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5714), + [3755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5150), + [3757] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_attribute_list, 4, 0, 56), + [3759] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_attribute_list, 4, 0, 56), + [3761] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3120), + [3763] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3122), + [3765] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3746), + [3767] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__reserved_identifier, 1, 0, 0), SHIFT(3122), + [3770] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_implicit_type, 1, 1, 0), REDUCE(sym__reserved_identifier, 1, 0, 0), SHIFT(2354), + [3774] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_implicit_type, 1, 1, 0), REDUCE(sym__reserved_identifier, 1, 0, 0), SHIFT(2350), + [3778] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_implicit_type, 1, 1, 0), REDUCE(sym__reserved_identifier, 1, 0, 0), SHIFT(5841), + [3782] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_implicit_type, 1, 1, 0), REDUCE(sym__reserved_identifier, 1, 0, 0), SHIFT(3688), + [3786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2854), + [3788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6004), + [3790] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_implicit_type, 1, 1, 0), REDUCE(sym__reserved_identifier, 1, 0, 0), SHIFT(3205), + [3794] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_implicit_type, 1, 1, 0), REDUCE(sym__reserved_identifier, 1, 0, 0), SHIFT(3204), + [3798] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3205), + [3800] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3204), + [3802] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3723), + [3804] = {.entry = {.count = 1, .reusable = false}}, SHIFT(568), + [3806] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__simple_name, 1, 0, 0), SHIFT(1213), + [3809] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__variable_designation, 1, 0, 5), + [3811] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_lvalue_expression, 1, 0, 0), REDUCE(aux_sym__parameter_type_with_modifiers_repeat1, 1, 0, 1), + [3814] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2900), + [3816] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2898), + [3818] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3738), + [3820] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__reserved_identifier, 1, 0, 0), SHIFT(2898), + [3823] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_implicit_type, 1, 1, 0), REDUCE(sym__reserved_identifier, 1, 0, 0), SHIFT(2916), + [3827] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_implicit_type, 1, 1, 0), REDUCE(sym__reserved_identifier, 1, 0, 0), SHIFT(2930), + [3831] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_implicit_type, 1, 1, 0), REDUCE(sym__reserved_identifier, 1, 0, 0), SHIFT(5821), + [3835] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_implicit_type, 1, 1, 0), REDUCE(sym__reserved_identifier, 1, 0, 0), SHIFT(4116), + [3839] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__simple_name, 1, 0, 0), SHIFT(3557), + [3842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5921), + [3844] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_parameter, 1, 0, 5), REDUCE(sym__simple_name, 1, 0, 0), + [3847] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_implicit_type, 1, 1, 0), REDUCE(sym__reserved_identifier, 1, 0, 0), SHIFT(2900), + [3851] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_implicit_type, 1, 1, 0), REDUCE(sym__reserved_identifier, 1, 0, 0), SHIFT(2898), + [3855] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3199), + [3857] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3198), + [3859] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_is_expression, 3, 0, 39), + [3861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(226), + [3863] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_is_expression, 3, 0, 39), + [3865] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3344), + [3867] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_pattern, 1, 0, 6), + [3869] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_pattern, 1, 0, 6), + [3871] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2916), + [3873] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2930), + [3875] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3690), + [3877] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3352), + [3879] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1752), + [3881] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7410), + [3883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6044), + [3885] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_recursive_pattern, 2, 0, 6), + [3887] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_recursive_pattern, 2, 0, 6), + [3889] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1609), + [3891] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7419), + [3893] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_recursive_pattern, 1, 0, 0), + [3895] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_recursive_pattern, 1, 0, 0), + [3897] = {.entry = {.count = 1, .reusable = false}}, SHIFT(97), + [3899] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5735), + [3901] = {.entry = {.count = 1, .reusable = false}}, SHIFT(101), + [3903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4767), + [3905] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3113), + [3907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5293), + [3909] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ref_type, 2, 0, 8), + [3911] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ref_type, 2, 0, 8), + [3913] = {.entry = {.count = 1, .reusable = false}}, SHIFT(870), + [3915] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3754), + [3917] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6092), + [3919] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3663), + [3921] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6103), + [3923] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6093), + [3925] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6096), + [3927] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3739), + [3929] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6031), + [3931] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5700), + [3933] = {.entry = {.count = 1, .reusable = false}}, SHIFT(835), + [3935] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7325), + [3937] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1849), + [3939] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_recursive_pattern, 2, 0, 0), + [3941] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_recursive_pattern, 2, 0, 0), + [3943] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1741), + [3945] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7642), + [3947] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_recursive_pattern, 3, 0, 6), + [3949] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_recursive_pattern, 3, 0, 6), + [3951] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_nullable_type, 2, 0, 6), + [3953] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_nullable_type, 2, 0, 6), + [3955] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pointer_type, 2, 0, 6), + [3957] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_type, 2, 0, 6), + [3959] = {.entry = {.count = 1, .reusable = false}}, SHIFT(81), + [3961] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type, 1, 0, 0), + [3963] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type, 1, 0, 0), + [3965] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4314), + [3967] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4293), + [3969] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3763), + [3971] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__reserved_identifier, 1, 0, 0), SHIFT(4293), + [3974] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3705), + [3976] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__scoped_base_type, 1, 0, 0), + [3978] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__scoped_base_type, 1, 0, 0), + [3980] = {.entry = {.count = 1, .reusable = false}}, SHIFT(67), + [3982] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5748), + [3984] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_pointer_type, 7, 0, 105), + [3986] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_pointer_type, 7, 0, 105), + [3988] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_pointer_type, 6, 0, 86), + [3990] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_pointer_type, 6, 0, 86), + [3992] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_type, 2, 0, 8), + [3994] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type, 2, 0, 8), + [3996] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_pointer_type, 5, 0, 68), + [3998] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_pointer_type, 5, 0, 68), + [4000] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ref_type, 3, 0, 27), + [4002] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ref_type, 3, 0, 27), + [4004] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__simple_name, 1, 0, 0), SHIFT(3635), + [4007] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3817), + [4009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6748), + [4011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(529), + [4013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(566), + [4015] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7647), + [4017] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2233), + [4019] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2912), + [4021] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2980), + [4023] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3795), + [4025] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3809), + [4027] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__reserved_identifier, 1, 0, 0), SHIFT(3204), + [4030] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__simple_name, 1, 0, 0), SHIFT(3595), + [4033] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_type, 1, 0, 0), REDUCE(sym__array_base_type, 1, 0, 0), + [4036] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type, 1, 0, 0), SHIFT(2309), + [4039] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_type, 1, 0, 0), REDUCE(sym__pointer_base_type, 1, 0, 0), + [4042] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5976), + [4044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5976), + [4046] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4328), + [4048] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4307), + [4050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(247), + [4052] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4760), + [4054] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_positional_pattern_clause, 4, 0, 0), + [4056] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_positional_pattern_clause, 4, 0, 0), + [4058] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_alias_qualified_name, 3, 0, 44), + [4060] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_alias_qualified_name, 3, 0, 44), + [4062] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_positional_pattern_clause, 2, 0, 0), + [4064] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_positional_pattern_clause, 2, 0, 0), + [4066] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_list, 2, 0, 0), + [4068] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3028), + [4070] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_rank_specifier, 3, 0, 0), + [4072] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_rank_specifier, 3, 0, 0), + [4074] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_rank_specifier, 2, 0, 0), + [4076] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_rank_specifier, 2, 0, 0), + [4078] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3744), + [4080] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2354), + [4082] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2350), + [4084] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3759), + [4086] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3805), + [4088] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type, 2, 0, 15), + [4090] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type, 2, 0, 15), + [4092] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5926), + [4094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5926), + [4096] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_type, 4, 0, 0), + [4098] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_type, 4, 0, 0), + [4100] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_rank_specifier, 4, 0, 0), + [4102] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_rank_specifier, 4, 0, 0), + [4104] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5973), + [4106] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5995), + [4108] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_property_pattern_clause, 3, 0, 0), + [4110] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_pattern_clause, 3, 0, 0), + [4112] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_property_pattern_clause, 2, 0, 0), + [4114] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_pattern_clause, 2, 0, 0), + [4116] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lvalue_expression, 1, 0, 2), + [4118] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lvalue_expression, 1, 0, 2), + [4120] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__pointer_indirection_expression, 2, 0, 0), + [4122] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__pointer_indirection_expression, 2, 0, 0), + [4124] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_property_pattern_clause, 4, 0, 0), + [4126] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_pattern_clause, 4, 0, 0), + [4128] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_element_access_expression, 2, 0, 20), + [4130] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_element_access_expression, 2, 0, 20), + [4132] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_bracketed_argument_list, 3, 0, 0), + [4134] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_bracketed_argument_list, 3, 0, 0), + [4136] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parenthesized_lvalue_expression, 3, 0, 0), + [4138] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__parenthesized_lvalue_expression, 3, 0, 0), + [4140] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_bracketed_argument_list, 4, 0, 0), + [4142] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_bracketed_argument_list, 4, 0, 0), + [4144] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_expression, 4, 0, 0), + [4146] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_expression, 4, 0, 0), + [4148] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_bracketed_argument_list, 5, 0, 0), + [4150] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_bracketed_argument_list, 5, 0, 0), + [4152] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_conditional_access_expression, 3, 0, 40), + [4154] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_conditional_access_expression, 3, 0, 40), + [4156] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6019), + [4158] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6005), + [4160] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3887), + [4162] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__reserved_identifier, 1, 0, 0), SHIFT(2930), + [4165] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3750), + [4167] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3770), + [4169] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3842), + [4171] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3853), + [4173] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3861), + [4175] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3869), + [4177] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3884), + [4179] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_property_pattern_clause, 5, 0, 0), + [4181] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_pattern_clause, 5, 0, 0), + [4183] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3688), + [4185] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3804), + [4187] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4116), + [4189] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3630), + [4191] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3730), + [4193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(619), + [4195] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3797), + [4197] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3743), + [4199] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3798), + [4201] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3822), + [4203] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3833), + [4205] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3587), + [4207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(641), + [4209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(611), + [4211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(621), + [4213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(637), + [4215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(609), + [4217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(594), + [4219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(592), + [4221] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3141), + [4223] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__simple_name, 1, 0, 0), SHIFT(3614), + [4226] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_initializer_expression, 3, 0, 0), + [4228] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_initializer_expression, 3, 0, 0), + [4230] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__simple_name, 1, 0, 0), SHIFT(3542), + [4233] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_property_declaration, 6, 0, 148), + [4235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1064), + [4237] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_declaration, 6, 0, 148), + [4239] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6026), + [4241] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constant_pattern, 1, 0, 0), + [4243] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_constant_pattern, 1, 0, 0), REDUCE(sym_lvalue_expression, 1, 0, 0), + [4246] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_constant_pattern, 1, 0, 0), REDUCE(sym_lvalue_expression, 1, 0, 0), + [4249] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constant_pattern, 1, 0, 0), + [4251] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5998), + [4253] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5985), + [4255] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6008), + [4257] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_property_declaration, 4, 0, 97), + [4259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1021), + [4261] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_declaration, 4, 0, 97), + [4263] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_property_declaration, 4, 0, 94), + [4265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1022), + [4267] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_declaration, 4, 0, 94), + [4269] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_property_declaration, 3, 0, 75), + [4271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(980), + [4273] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_declaration, 3, 0, 75), + [4275] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_accessor_list, 3, 0, 0), + [4277] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_accessor_list, 3, 0, 0), + [4279] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_property_declaration, 5, 0, 117), + [4281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1056), + [4283] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_declaration, 5, 0, 117), + [4285] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_property_declaration, 5, 0, 127), + [4287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1061), + [4289] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_declaration, 5, 0, 127), + [4291] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__simple_name, 1, 0, 0), SHIFT(3546), + [4294] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_accessor_list, 2, 0, 0), + [4296] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_accessor_list, 2, 0, 0), + [4298] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type, 1, 0, 0), SHIFT(2716), + [4301] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5923), + [4303] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_declaration, 7, 0, 171), + [4305] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration, 7, 0, 171), + [4307] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_declaration, 7, 0, 172), + [4309] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration, 7, 0, 172), + [4311] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_declaration, 7, 0, 173), + [4313] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration, 7, 0, 173), + [4315] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_property_declaration, 7, 0, 174), + [4317] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_declaration, 7, 0, 174), + [4319] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_event_declaration, 7, 0, 175), + [4321] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_event_declaration, 7, 0, 175), + [4323] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_event_declaration, 7, 0, 176), + [4325] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_event_declaration, 7, 0, 176), + [4327] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_conversion_operator_declaration, 7, 0, 177), + [4329] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_conversion_operator_declaration, 7, 0, 177), + [4331] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_operator_declaration, 7, 0, 178), + [4333] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_operator_declaration, 7, 0, 178), + [4335] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_indexer_declaration, 7, 0, 179), + [4337] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_indexer_declaration, 7, 0, 179), + [4339] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_indexer_declaration, 7, 0, 180), + [4341] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_indexer_declaration, 7, 0, 180), + [4343] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_declaration, 7, 0, 181), + [4345] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration, 7, 0, 181), + [4347] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_property_declaration, 7, 0, 182), + [4349] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_declaration, 7, 0, 182), + [4351] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_declaration, 7, 0, 183), + [4353] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration, 7, 0, 183), + [4355] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_declaration, 6, 0, 155), + [4357] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration, 6, 0, 155), + [4359] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_declaration, 7, 0, 184), + [4361] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration, 7, 0, 184), + [4363] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_operator_declaration, 8, 0, 186), + [4365] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_operator_declaration, 8, 0, 186), + [4367] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_declaration, 8, 0, 187), + [4369] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration, 8, 0, 187), + [4371] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_property_declaration, 8, 0, 188), + [4373] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_declaration, 8, 0, 188), + [4375] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_operator_declaration, 8, 0, 189), + [4377] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_operator_declaration, 8, 0, 189), + [4379] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_indexer_declaration, 8, 0, 190), + [4381] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_indexer_declaration, 8, 0, 190), + [4383] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_declaration, 8, 0, 191), + [4385] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration, 8, 0, 191), + [4387] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_declaration, 8, 0, 192), + [4389] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration, 8, 0, 192), + [4391] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_declaration, 8, 0, 193), + [4393] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration, 8, 0, 193), + [4395] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_destructor_declaration, 6, 0, 146), + [4397] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_destructor_declaration, 6, 0, 146), + [4399] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_property_declaration, 8, 0, 194), + [4401] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_declaration, 8, 0, 194), + [4403] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_declaration, 6, 0, 156), + [4405] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration, 6, 0, 156), + [4407] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_operator_declaration, 9, 0, 195), + [4409] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_operator_declaration, 9, 0, 195), + [4411] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_declaration, 9, 0, 196), + [4413] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration, 9, 0, 196), + [4415] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_property_declaration, 9, 0, 197), + [4417] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_declaration, 9, 0, 197), + [4419] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_event_declaration, 6, 0, 157), + [4421] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_event_declaration, 6, 0, 157), + [4423] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_event_field_declaration, 3, 1, 0), + [4425] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_event_field_declaration, 3, 1, 0), + [4427] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5956), + [4429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5956), + [4431] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_event_declaration, 4, 0, 48), + [4433] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_event_declaration, 4, 0, 48), + [4435] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_event_declaration, 6, 0, 158), + [4437] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_event_declaration, 6, 0, 158), + [4439] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_event_declaration, 4, 0, 94), + [4441] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_event_declaration, 4, 0, 94), + [4443] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_indexer_declaration, 6, 0, 159), + [4445] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_indexer_declaration, 6, 0, 159), + [4447] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_destructor_declaration, 4, 0, 95), + [4449] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_destructor_declaration, 4, 0, 95), + [4451] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if, 4, 0, 56), + [4453] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if, 4, 0, 56), + [4455] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_indexer_declaration, 4, 0, 96), + [4457] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_indexer_declaration, 4, 0, 96), + [4459] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_event_declaration, 6, 0, 147), + [4461] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_event_declaration, 6, 0, 147), + [4463] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5993), + [4465] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_declaration, 6, 0, 160), + [4467] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration, 6, 0, 160), + [4469] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constructor_declaration, 2, 0, 57), + [4471] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constructor_declaration, 2, 0, 57), + [4473] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration, 2, 0, 0), + [4475] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 2, 0, 0), + [4477] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6043), + [4479] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_declaration, 4, 0, 98), + [4481] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration, 4, 0, 98), + [4483] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_property_declaration, 4, 0, 99), + [4485] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_declaration, 4, 0, 99), + [4487] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_event_field_declaration, 4, 1, 0), + [4489] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_event_field_declaration, 4, 1, 0), + [4491] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_event_declaration, 6, 0, 148), + [4493] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_event_declaration, 6, 0, 148), + [4495] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_property_declaration, 6, 0, 161), + [4497] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_declaration, 6, 0, 161), + [4499] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_property_declaration, 6, 0, 145), + [4501] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_declaration, 6, 0, 145), + [4503] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_conversion_operator_declaration, 6, 0, 149), + [4505] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_conversion_operator_declaration, 6, 0, 149), + [4507] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_operator_declaration, 6, 0, 150), + [4509] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_operator_declaration, 6, 0, 150), + [4511] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration, 1, 0, 0), + [4513] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration, 1, 0, 0), + [4515] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_indexer_declaration, 6, 0, 151), + [4517] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_indexer_declaration, 6, 0, 151), + [4519] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_destructor_declaration, 5, 0, 115), + [4521] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_destructor_declaration, 5, 0, 115), + [4523] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_event_declaration, 5, 0, 116), + [4525] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_event_declaration, 5, 0, 116), + [4527] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_indexer_declaration, 6, 0, 152), + [4529] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_indexer_declaration, 6, 0, 152), + [4531] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration, 3, 0, 0), + [4533] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 3, 0, 0), + [4535] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_event_declaration, 5, 0, 117), + [4537] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_event_declaration, 5, 0, 117), + [4539] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_conversion_operator_declaration, 5, 0, 118), + [4541] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_conversion_operator_declaration, 5, 0, 118), + [4543] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 1, 0, 0), + [4545] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 1, 0, 0), + [4547] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if, 5, 0, 74), + [4549] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if, 5, 0, 74), + [4551] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if, 5, 0, 56), + [4553] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if, 5, 0, 56), + [4555] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_operator_declaration, 5, 0, 119), + [4557] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_operator_declaration, 5, 0, 119), + [4559] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_indexer_declaration, 5, 0, 120), + [4561] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_indexer_declaration, 5, 0, 120), + [4563] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_indexer_declaration, 5, 0, 121), + [4565] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_indexer_declaration, 5, 0, 121), + [4567] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_operator_declaration, 7, 0, 165), + [4569] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_operator_declaration, 7, 0, 165), + [4571] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_declaration, 6, 0, 153), + [4573] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration, 6, 0, 153), + [4575] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_declaration, 5, 0, 122), + [4577] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration, 5, 0, 122), + [4579] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_property_declaration, 5, 0, 123), + [4581] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_declaration, 5, 0, 123), + [4583] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_declaration, 7, 0, 166), + [4585] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration, 7, 0, 166), + [4587] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_declaration, 5, 0, 125), + [4589] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration, 5, 0, 125), + [4591] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_declaration, 5, 0, 126), + [4593] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration, 5, 0, 126), + [4595] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_event_declaration, 5, 0, 67), + [4597] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_event_declaration, 5, 0, 67), + [4599] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_property_declaration, 7, 0, 167), + [4601] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_declaration, 7, 0, 167), + [4603] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_property_declaration, 6, 0, 154), + [4605] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_declaration, 6, 0, 154), + [4607] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_event_declaration, 5, 0, 127), + [4609] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_event_declaration, 5, 0, 127), + [4611] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_indexer_declaration, 5, 0, 128), + [4613] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_indexer_declaration, 5, 0, 128), + [4615] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_declaration, 5, 0, 129), + [4617] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration, 5, 0, 129), + [4619] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_property_declaration, 5, 0, 130), + [4621] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_declaration, 5, 0, 130), + [4623] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_event_field_declaration, 5, 1, 0), + [4625] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_event_field_declaration, 5, 1, 0), + [4627] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_operator_declaration, 7, 0, 169), + [4629] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_operator_declaration, 7, 0, 169), + [4631] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5977), + [4633] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if, 6, 0, 93), + [4635] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if, 6, 0, 93), + [4637] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_operator_declaration, 6, 0, 139), + [4639] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_operator_declaration, 6, 0, 139), + [4641] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_indexer_declaration, 6, 0, 140), + [4643] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_indexer_declaration, 6, 0, 140), + [4645] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_declaration, 6, 0, 141), + [4647] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration, 6, 0, 141), + [4649] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_indexer_declaration, 7, 0, 170), + [4651] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_indexer_declaration, 7, 0, 170), + [4653] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_declaration, 6, 0, 142), + [4655] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration, 6, 0, 142), + [4657] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_declaration, 6, 0, 144), + [4659] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration, 6, 0, 144), + [4661] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration, 4, 0, 0), + [4663] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 4, 0, 0), + [4665] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__attribute_list, 1, 0, 0), + [4667] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__attribute_list, 1, 0, 0), + [4669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2982), + [4671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6839), + [4673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5113), + [4675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4614), + [4677] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3533), + [4679] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3369), + [4681] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4344), + [4683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5268), + [4685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3619), + [4687] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3389), + [4689] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6980), + [4691] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_attribute_list, 4, 0, 56), + [4693] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6014), + [4695] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5950), + [4697] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5968), + [4699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5968), + [4701] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6002), + [4703] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5972), + [4705] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4233), + [4707] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5954), + [4709] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5963), + [4711] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__class_declaration_initializer_repeat1, 2, 0, 0), + [4713] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__class_declaration_initializer_repeat1, 2, 0, 0), SHIFT_REPEAT(4538), + [4716] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__class_declaration_initializer_repeat1, 2, 0, 0), + [4718] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__class_declaration_initializer_repeat1, 2, 0, 0), SHIFT_REPEAT(5150), + [4721] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attribute_list, 5, 0, 0), + [4723] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute_list, 5, 0, 0), + [4725] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6013), + [4727] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5981), + [4729] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6034), + [4731] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3646), + [4733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4519), + [4735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2637), + [4737] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3503), + [4739] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6408), + [4741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5298), + [4743] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attribute_list, 4, 0, 0), + [4745] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute_list, 4, 0, 0), + [4747] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attribute_list, 3, 0, 0), + [4749] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute_list, 3, 0, 0), + [4751] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_creation_expression, 2, 0, 8), + [4753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(539), + [4755] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_creation_expression, 2, 0, 8), + [4757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2646), + [4759] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5946), + [4761] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attribute_list, 6, 0, 0), + [4763] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute_list, 6, 0, 0), + [4765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7225), + [4767] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5952), + [4769] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_accessor_list_repeat1, 2, 0, 0), SHIFT_REPEAT(2168), + [4772] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_accessor_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3646), + [4775] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_accessor_list_repeat1, 2, 0, 0), SHIFT_REPEAT(2169), + [4778] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_accessor_list_repeat1, 2, 0, 0), SHIFT_REPEAT(4519), + [4781] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_accessor_list_repeat1, 2, 0, 0), + [4783] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_accessor_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3503), + [4786] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_accessor_list_repeat1, 2, 0, 0), SHIFT_REPEAT(6408), + [4789] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_accessor_list_repeat1, 2, 0, 0), SHIFT_REPEAT(5298), + [4792] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5965), + [4794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5965), + [4796] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6000), + [4798] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6035), + [4800] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6038), + [4802] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stackalloc_expression, 2, 0, 8), + [4804] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__array_base_type, 1, 0, 0), REDUCE(sym_stackalloc_expression, 2, 0, 8), + [4807] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_stackalloc_expression, 2, 0, 8), + [4809] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1687), + [4811] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression, 1, 0, 0), + [4813] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression, 1, 0, 0), + [4815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1687), + [4817] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_await_expression, 2, 0, 0), + [4819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(550), + [4821] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_await_expression, 2, 0, 0), + [4823] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2956), + [4825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2956), + [4827] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_creation_expression, 3, 0, 29), + [4829] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_creation_expression, 3, 0, 29), + [4831] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_implicit_object_creation_expression, 2, 0, 0), + [4833] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_implicit_object_creation_expression, 2, 0, 0), + [4835] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__simple_name, 1, 0, 0), SHIFT(3579), + [4838] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_prefix_unary_expression, 2, 0, 0), + [4840] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_prefix_unary_expression, 2, 0, 0), + [4842] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cast_expression, 4, 1, 52), + [4844] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cast_expression, 4, 1, 52), + [4846] = {.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), + [4850] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_type, 1, 0, 0), REDUCE(sym_array_creation_expression, 2, 17, 8), + [4853] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_type, 1, 0, 0), SHIFT(589), + [4856] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type, 1, 0, 0), REDUCE(sym_array_creation_expression, 2, 17, 8), + [4859] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_type, 1, 0, 0), REDUCE(sym_array_creation_expression, 2, 17, 8), SHIFT(3004), + [4863] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 2, 0, 0), + [4865] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 2, 0, 0), + [4867] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_else_in_attribute_list, 2, 0, 0), + [4869] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__simple_name, 1, 0, 0), SHIFT(3572), + [4872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5920), + [4874] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string_literal, 3, 0, 0), + [4876] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string_literal, 3, 0, 0), + [4878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3054), + [4880] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 3, 0, 0), + [4882] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 3, 0, 0), + [4884] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type, 1, 0, 0), SHIFT(2921), + [4887] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 4, 0, 0), + [4889] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 4, 0, 0), + [4891] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string_literal, 2, 0, 0), + [4893] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string_literal, 2, 0, 0), + [4895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3042), + [4897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3621), + [4899] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1644), + [4901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1644), + [4903] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_raw_string_literal, 3, 0, 0), + [4905] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_raw_string_literal, 3, 0, 0), + [4907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2989), + [4909] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__class_declaration_initializer_repeat1, 1, 0, 0), + [4911] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__class_declaration_initializer_repeat1, 1, 0, 0), + [4913] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1791), + [4915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1791), + [4917] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_postfix_unary_expression, 2, 0, 0), + [4919] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_postfix_unary_expression, 2, 0, 0), + [4921] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__query_body_repeat2, 4, 0, 0), + [4923] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__query_body_repeat2, 4, 0, 0), + [4925] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_invocation_expression, 2, 0, 19), + [4927] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_invocation_expression, 2, 0, 19), + [4929] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__select_or_group_clause, 1, 0, 0), + [4931] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__select_or_group_clause, 1, 0, 0), + [4933] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_query_expression, 2, 0, 0), + [4935] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_query_expression, 2, 0, 0), + [4937] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interpolated_string_expression, 3, 0, 0), + [4939] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interpolated_string_expression, 3, 0, 0), + [4941] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interpolated_string_expression, 3, 0, 23), + [4943] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interpolated_string_expression, 3, 0, 23), + [4945] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_expression, 3, 0, 0), + [4947] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_expression, 3, 0, 0), + [4949] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_method_expression, 3, 0, 21), + [4951] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anonymous_method_expression, 3, 0, 21), + [4953] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_object_creation_expression, 3, 0, 0), + [4955] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anonymous_object_creation_expression, 3, 0, 0), + [4957] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_implicit_object_creation_expression, 3, 0, 0), + [4959] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_implicit_object_creation_expression, 3, 0, 0), + [4961] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_creation_expression, 3, 0, 30), + [4963] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_creation_expression, 3, 0, 30), + [4965] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_creation_expression, 3, 17, 8), + [4967] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_creation_expression, 3, 17, 8), + [4969] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stackalloc_expression, 3, 0, 8), + [4971] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_stackalloc_expression, 3, 0, 8), + [4973] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_conditional_access_expression, 3, 0, 41), + [4975] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_conditional_access_expression, 3, 0, 41), + [4977] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_expression, 3, 0, 0), + [4979] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_expression, 3, 0, 0), + [4981] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_as_expression, 3, 0, 39), + [4983] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_as_expression, 3, 0, 39), + [4985] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type, 1, 0, 0), SHIFT(3004), + [4988] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_attribute_list, 5, 0, 56), + [4990] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_attribute_list, 5, 0, 56), + [4992] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_expression, 3, 0, 0), + [4994] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_with_expression, 3, 0, 0), + [4996] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_expression, 3, 0, 43), + [4998] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lambda_expression, 3, 0, 43), + [5000] = {.entry = {.count = 1, .reusable = false}}, SHIFT(895), + [5002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(895), + [5004] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_method_expression, 3, 0, 0), + [5006] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anonymous_method_expression, 3, 0, 0), + [5008] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interpolated_string_expression, 4, 0, 0), + [5010] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interpolated_string_expression, 4, 0, 0), + [5012] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interpolated_string_expression, 4, 0, 47), + [5014] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interpolated_string_expression, 4, 0, 47), + [5016] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_raw_string_literal, 4, 0, 0), + [5018] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_raw_string_literal, 4, 0, 0), + [5020] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_initializer_expression, 4, 0, 0), + [5022] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_initializer_expression, 4, 0, 0), + [5024] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_implicit_array_creation_expression, 4, 0, 0), + [5026] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_implicit_array_creation_expression, 4, 0, 0), + [5028] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_object_creation_expression, 4, 0, 0), + [5030] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anonymous_object_creation_expression, 4, 0, 0), + [5032] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_creation_expression, 4, 0, 55), + [5034] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_creation_expression, 4, 0, 55), + [5036] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_checked_expression, 4, 0, 0), + [5038] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_checked_expression, 4, 0, 0), + [5040] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__query_body_repeat2, 3, 0, 0), + [5042] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__query_body_repeat2, 3, 0, 0), + [5044] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_implicit_stackalloc_expression, 4, 0, 0), + [5046] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_implicit_stackalloc_expression, 4, 0, 0), + [5048] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sizeof_expression, 4, 0, 27), + [5050] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sizeof_expression, 4, 0, 27), + [5052] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_typeof_expression, 4, 0, 27), + [5054] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_typeof_expression, 4, 0, 27), + [5056] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_makeref_expression, 4, 0, 0), + [5058] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_makeref_expression, 4, 0, 0), + [5060] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_member_binding_expression, 2, 0, 7), + [5062] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_member_binding_expression, 2, 0, 7), + [5064] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__switch_expression_body, 2, 0, 0), + [5066] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__switch_expression_body, 2, 0, 0), + [5068] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__with_body, 2, 0, 0), + [5070] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__with_body, 2, 0, 0), + [5072] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_method_expression, 4, 0, 46), + [5074] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anonymous_method_expression, 4, 0, 46), + [5076] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_initializer_expression, 5, 0, 0), + [5078] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_initializer_expression, 5, 0, 0), + [5080] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_implicit_array_creation_expression, 5, 0, 0), + [5082] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_implicit_array_creation_expression, 5, 0, 0), + [5084] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_object_creation_expression, 5, 0, 0), + [5086] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anonymous_object_creation_expression, 5, 0, 0), + [5088] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_expression, 5, 0, 56), + [5090] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_expression, 5, 0, 56), + [5092] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_expression, 5, 0, 74), + [5094] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_expression, 5, 0, 74), + [5096] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__switch_expression_body, 3, 0, 0), + [5098] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__switch_expression_body, 3, 0, 0), + [5100] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__with_body, 3, 0, 0), + [5102] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__with_body, 3, 0, 0), + [5104] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_object_creation_expression, 6, 0, 0), + [5106] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anonymous_object_creation_expression, 6, 0, 0), + [5108] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_refvalue_expression, 6, 0, 92), + [5110] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_refvalue_expression, 6, 0, 92), + [5112] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_expression, 6, 0, 93), + [5114] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_expression, 6, 0, 93), + [5116] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__switch_expression_body, 4, 0, 0), + [5118] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__switch_expression_body, 4, 0, 0), + [5120] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__with_body, 4, 0, 0), + [5122] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__with_body, 4, 0, 0), + [5124] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__switch_expression_body, 5, 0, 0), + [5126] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__switch_expression_body, 5, 0, 0), + [5128] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_modifier, 1, 0, 0), + [5130] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_boolean_literal, 1, 0, 0), + [5132] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_boolean_literal, 1, 0, 0), + [5134] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_attribute_list, 5, 0, 74), + [5136] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_attribute_list, 5, 0, 74), + [5138] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_attribute_list, 6, 0, 93), + [5140] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_attribute_list, 6, 0, 93), + [5142] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_non_lvalue_expression, 1, 0, 0), + [5144] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_non_lvalue_expression, 1, 0, 0), + [5146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3992), + [5148] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_literal, 1, 0, 0), + [5150] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_literal, 1, 0, 0), + [5152] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_character_literal, 3, 0, 0), + [5154] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_character_literal, 3, 0, 0), + [5156] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression_statement_expression, 1, 0, 0), + [5158] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression_statement_expression, 1, 0, 0), + [5160] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6427), + [5162] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_method_expression, 2, 0, 0), + [5164] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anonymous_method_expression, 2, 0, 0), + [5166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4511), + [5168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6910), + [5170] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3778), + [5172] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7687), + [5174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2174), + [5176] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6061), + [5178] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4320), + [5180] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6601), + [5182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5295), + [5184] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string_literal, 4, 0, 0), + [5186] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string_literal, 4, 0, 0), + [5188] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reftype_expression, 4, 0, 0), + [5190] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_reftype_expression, 4, 0, 0), + [5192] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__class_declaration_initializer_repeat2, 2, 0, 0), + [5194] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__class_declaration_initializer_repeat2, 2, 0, 0), SHIFT_REPEAT(3117), + [5197] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__class_declaration_initializer_repeat2, 2, 0, 0), + [5199] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1301), + [5201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1301), + [5203] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5983), + [5205] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1857), + [5207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1857), + [5209] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1499), + [5211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1499), + [5213] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1628), + [5215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1628), + [5217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6108), + [5219] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__class_declaration_initializer_repeat2, 1, 0, 0), + [5221] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__class_declaration_initializer_repeat2, 1, 0, 0), + [5223] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1026), + [5225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1026), + [5227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(530), + [5229] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__simple_name, 1, 0, 0), SHIFT(3615), + [5232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5969), + [5234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(43), + [5236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(561), + [5238] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3282), + [5240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3282), + [5242] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__simple_name, 1, 0, 0), SHIFT(3596), + [5245] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1060), + [5247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1060), + [5249] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__class_declaration_initializer_repeat1, 2, 0, 0), SHIFT_REPEAT(4519), + [5252] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__class_declaration_initializer_repeat1, 2, 0, 0), SHIFT_REPEAT(5298), + [5255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(55), + [5257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(547), + [5259] = {.entry = {.count = 1, .reusable = false}}, SHIFT(947), + [5261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(947), + [5263] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1117), + [5265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1117), + [5267] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_type, 1, 0, 0), SHIFT(620), + [5270] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_type, 1, 0, 0), REDUCE(sym_array_creation_expression, 2, 17, 8), SHIFT(3155), + [5274] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__simple_name, 1, 0, 0), SHIFT(3637), + [5277] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type, 1, 0, 0), SHIFT(3155), + [5280] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5975), + [5282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3263), + [5284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6007), + [5286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3318), + [5288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3299), + [5290] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1706), + [5292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1706), + [5294] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__class_declaration_initializer_repeat1, 2, 0, 0), SHIFT_REPEAT(4767), + [5297] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__class_declaration_initializer_repeat1, 2, 0, 0), SHIFT_REPEAT(5293), + [5300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(553), + [5302] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3432), + [5304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3432), + [5306] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1137), + [5308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1137), + [5310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3322), + [5312] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1770), + [5314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1770), + [5316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3280), + [5318] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_variable_designation, 4, 0, 131), + [5320] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_variable_designation, 4, 0, 131), + [5322] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_recursive_pattern, 2, 0, 60), + [5324] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_recursive_pattern, 2, 0, 60), + [5326] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type, 1, 0, 0), SHIFT(3288), + [5329] = {.entry = {.count = 1, .reusable = false}}, SHIFT(913), + [5331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(913), + [5333] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_type, 1, 0, 0), SHIFT(584), + [5336] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_type, 1, 0, 0), REDUCE(sym_array_creation_expression, 2, 17, 8), SHIFT(3288), + [5340] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6444), + [5342] = {.entry = {.count = 1, .reusable = false}}, SHIFT(966), + [5344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(966), + [5346] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_pattern, 3, 0, 0), + [5348] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_pattern, 3, 0, 0), + [5350] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_pattern, 3, 0, 0), + [5352] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_pattern, 3, 0, 0), + [5354] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_variable_designation, 2, 0, 0), + [5356] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_variable_designation, 2, 0, 0), + [5358] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_is_pattern_expression, 3, 0, 42), + [5360] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_is_pattern_expression, 3, 0, 42), + [5362] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_recursive_pattern, 3, 0, 82), + [5364] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_recursive_pattern, 3, 0, 82), + [5366] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_and_pattern, 3, 0, 39), + [5368] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_and_pattern, 3, 0, 39), + [5370] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_recursive_pattern, 3, 0, 78), + [5372] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_recursive_pattern, 3, 0, 78), + [5374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3898), + [5376] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_constant_pattern, 1, 0, 0), REDUCE(sym_non_lvalue_expression, 1, 0, 0), + [5379] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_constant_pattern, 1, 0, 0), REDUCE(sym_non_lvalue_expression, 1, 0, 0), + [5382] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_constant_pattern, 1, 0, 0), REDUCE(sym__expression_statement_expression, 1, 0, 0), + [5385] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_constant_pattern, 1, 0, 0), REDUCE(sym__expression_statement_expression, 1, 0, 0), + [5388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3440), + [5390] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1153), + [5392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1153), + [5394] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6077), + [5396] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_pattern, 4, 0, 0), + [5398] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_pattern, 4, 0, 0), + [5400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3768), + [5402] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_variable_designation, 3, 0, 60), + [5404] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_variable_designation, 3, 0, 60), + [5406] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__variable_designation, 1, 0, 5), + [5408] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pattern, 1, 0, 0), + [5410] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pattern, 1, 0, 0), + [5412] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1662), + [5414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1662), + [5416] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_recursive_pattern, 4, 0, 102), + [5418] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_recursive_pattern, 4, 0, 102), + [5420] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_pattern, 5, 0, 0), + [5422] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_pattern, 5, 0, 0), + [5424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6046), + [5426] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6055), + [5428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3729), + [5430] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_pattern, 2, 0, 0), + [5432] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_pattern, 2, 0, 0), + [5434] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__variable_designation, 1, 0, 0), + [5436] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__variable_designation, 1, 0, 0), + [5438] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_var_pattern, 2, 0, 60), + [5440] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_var_pattern, 2, 0, 60), + [5442] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration_pattern, 2, 0, 61), + [5444] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration_pattern, 2, 0, 61), + [5446] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1216), + [5448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1216), + [5450] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3659), + [5452] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4187), + [5454] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4255), + [5456] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6553), + [5458] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1023), + [5460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1023), + [5462] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_accessor_declaration, 4, 0, 168), + [5464] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_accessor_declaration, 4, 0, 168), + [5466] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6484), + [5468] = {.entry = {.count = 1, .reusable = false}}, SHIFT(930), + [5470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(930), + [5472] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_accessor_declaration, 3, 0, 143), + [5474] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_accessor_declaration, 3, 0, 143), + [5476] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1231), + [5478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1231), + [5480] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6611), + [5482] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1315), + [5484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1315), + [5486] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1389), + [5488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1389), + [5490] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1335), + [5492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1335), + [5494] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1446), + [5496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1446), + [5498] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6432), + [5500] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3760), + [5502] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6519), + [5504] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7340), + [5506] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6265), + [5508] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4106), + [5510] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_accessor_declaration, 2, 0, 124), + [5512] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_accessor_declaration, 2, 0, 124), + [5514] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_accessor_list_repeat1, 1, 0, 0), + [5516] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_accessor_list_repeat1, 1, 0, 0), + [5518] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6551), + [5520] = {.entry = {.count = 1, .reusable = false}}, SHIFT(851), + [5522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(851), + [5524] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6524), + [5526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3998), + [5528] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1044), + [5530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1044), + [5532] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6045), + [5534] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6535), + [5536] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_type, 1, 0, 0), SHIFT(583), + [5539] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_type, 1, 0, 0), REDUCE(sym_array_creation_expression, 2, 17, 8), SHIFT(2921), + [5543] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6497), + [5545] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1846), + [5547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1846), + [5549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(562), + [5551] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1373), + [5553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1373), + [5555] = {.entry = {.count = 1, .reusable = false}}, SHIFT(996), + [5557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(996), + [5559] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5991), + [5561] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1431), + [5563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1431), + [5565] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1493), + [5567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1493), + [5569] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1534), + [5571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1534), + [5573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(40), + [5575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6618), + [5577] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3800), + [5579] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5886), + [5581] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4439), + [5583] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1678), + [5585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1678), + [5587] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1086), + [5589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1086), + [5591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(545), + [5593] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__class_declaration_initializer_repeat2, 2, 0, 0), SHIFT_REPEAT(3646), + [5596] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1732), + [5598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1732), + [5600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2458), + [5602] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1299), + [5604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1299), + [5606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2607), + [5608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(527), + [5610] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2430), + [5612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2704), + [5614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2421), + [5616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6735), + [5618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(523), + [5620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(567), + [5622] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7700), + [5624] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2443), + [5626] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3135), + [5628] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3149), + [5630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2771), + [5632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7008), + [5634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(524), + [5636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(569), + [5638] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7698), + [5640] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2393), + [5642] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3201), + [5644] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3308), + [5646] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1355), + [5648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1355), + [5650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(555), + [5652] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_conditional_expression, 5, 0, 81), + [5654] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1690), + [5656] = {.entry = {.count = 1, .reusable = false}}, SHIFT(613), + [5658] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3757), + [5660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3757), + [5662] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1691), + [5664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1692), + [5666] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1692), + [5668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1693), + [5670] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1694), + [5672] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1695), + [5674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1696), + [5676] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1696), + [5678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1697), + [5680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1690), + [5682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7050), + [5684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(190), + [5686] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_conditional_expression, 5, 0, 81), + [5688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1698), + [5690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1699), + [5692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1700), + [5694] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3984), + [5696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(440), + [5698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7076), + [5700] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2206), + [5702] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_type, 1, 0, 0), SHIFT(664), + [5705] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_type, 1, 0, 0), REDUCE(sym_array_creation_expression, 2, 17, 8), SHIFT(2309), + [5709] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_throw_expression, 2, 0, 0), + [5711] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_throw_expression, 2, 0, 0), + [5713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6749), + [5715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(525), + [5717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(576), + [5719] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7691), + [5721] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2438), + [5723] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2891), + [5725] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2943), + [5727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2246), + [5729] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2441), + [5731] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2348), + [5733] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_select_clause, 2, 0, 0), + [5735] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_select_clause, 2, 0, 0), + [5737] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_binary_expression, 3, 0, 39), + [5739] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_binary_expression, 3, 0, 39), + [5741] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_expression, 3, 0, 0), + [5743] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range_expression, 3, 0, 0), + [5745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6835), + [5747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(526), + [5749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(570), + [5751] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7695), + [5753] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2329), + [5755] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4275), + [5757] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4484), + [5759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2999), + [5761] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2440), + [5763] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2442), + [5765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2948), + [5767] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2444), + [5769] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2490), + [5771] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__class_declaration_initializer_repeat2, 2, 0, 0), SHIFT_REPEAT(3821), + [5774] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2487), + [5776] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_modifier, 1, 0, 0), REDUCE(aux_sym_using_directive_repeat1, 1, 0, 0), SHIFT(2168), + [5780] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_modifier, 1, 0, 0), REDUCE(aux_sym_using_directive_repeat1, 1, 0, 0), SHIFT(2169), + [5784] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_modifier, 1, 0, 0), REDUCE(aux_sym_using_directive_repeat1, 1, 0, 0), + [5787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4372), + [5789] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2445), + [5791] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2491), + [5793] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2357), + [5795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2433), + [5797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3162), + [5799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2903), + [5801] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ref_expression, 2, 0, 0), + [5803] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ref_expression, 2, 0, 0), + [5805] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1118), + [5807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1118), + [5809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6864), + [5811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(528), + [5813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(564), + [5815] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2400), + [5817] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2360), + [5819] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2377), + [5821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2665), + [5823] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2199), + [5825] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2358), + [5827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3142), + [5829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4110), + [5831] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2500), + [5833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2629), + [5835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3189), + [5837] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1198), + [5839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1198), + [5841] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2214), + [5843] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3508), + [5845] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2405), + [5847] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2479), + [5849] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment_expression, 3, 0, 39), + [5851] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_assignment_expression, 3, 0, 39), + [5853] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2318), + [5855] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_group_clause, 4, 0, 0), + [5857] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_group_clause, 4, 0, 0), + [5859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(45), + [5861] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1818), + [5863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1818), + [5865] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_relational_pattern, 2, 0, 0), + [5867] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_relational_pattern, 2, 0, 0), + [5869] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1279), + [5871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1279), + [5873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2385), + [5875] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2502), + [5877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3248), + [5879] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__query_body, 2, 0, 0), + [5881] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__query_body, 2, 0, 0), + [5883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6089), + [5885] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1724), + [5887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1724), + [5889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3851), + [5891] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1408), + [5893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1408), + [5895] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1647), + [5897] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1648), + [5899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1649), + [5901] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1649), + [5903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1650), + [5905] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1652), + [5907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1653), + [5909] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1653), + [5911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1654), + [5913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1647), + [5915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(186), + [5917] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4045), + [5919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(400), + [5921] = {.entry = {.count = 1, .reusable = false}}, SHIFT(648), + [5923] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1651), + [5925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1655), + [5927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1656), + [5929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1657), + [5931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3852), + [5933] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__query_body, 1, 0, 0), + [5935] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__query_body, 1, 0, 0), + [5937] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3785), + [5939] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3907), + [5941] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1172), + [5943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1172), + [5945] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1468), + [5947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1468), + [5949] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6060), + [5951] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__query_body_repeat2, 2, 0, 0), + [5953] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__query_body_repeat2, 2, 0, 0), + [5955] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__query_body_repeat2, 2, 0, 0), SHIFT_REPEAT(6089), [5958] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__query_body, 3, 0, 0), [5960] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__query_body, 3, 0, 0), - [5962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6075), - [5964] = {.entry = {.count = 1, .reusable = false}}, SHIFT(973), - [5966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(973), - [5968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3775), - [5970] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_pointer_type_repeat1, 2, 0, 0), SHIFT_REPEAT(3691), - [5973] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_pointer_type_repeat1, 2, 0, 0), SHIFT_REPEAT(3666), - [5976] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_pointer_type_repeat1, 2, 0, 0), SHIFT_REPEAT(3868), - [5979] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_pointer_type_repeat1, 2, 0, 0), SHIFT_REPEAT(4232), - [5982] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_pointer_type_repeat1, 2, 0, 0), SHIFT_REPEAT(7663), - [5985] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_pointer_type_repeat1, 2, 0, 0), SHIFT_REPEAT(4214), - [5988] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_pointer_type_repeat1, 2, 0, 0), SHIFT_REPEAT(6611), - [5991] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1352), - [5993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1352), - [5995] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1305), - [5997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1305), - [5999] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__query_body, 1, 0, 0), - [6001] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__query_body, 1, 0, 0), - [6003] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__query_body, 2, 0, 0), - [6005] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__query_body, 2, 0, 0), - [6007] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6099), - [6009] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1615), - [6011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1615), - [6013] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3817), - [6015] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3943), - [6017] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1402), - [6019] = {.entry = {.count = 1, .reusable = false}}, SHIFT(619), - [6021] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1572), - [6023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1578), - [6025] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1578), - [6027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1595), - [6029] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1629), - [6031] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1636), - [6033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1646), - [6035] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1646), - [6037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1654), - [6039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1402), - [6041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(245), - [6043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1668), - [6045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1693), - [6047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1695), - [6049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(415), - [6051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3832), - [6053] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4040), - [6055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3861), - [6057] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3994), - [6059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3865), - [6061] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3939), - [6063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3864), - [6065] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4032), - [6067] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_or_pattern, 3, 0, 40), - [6069] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_or_pattern, 3, 0, 40), - [6071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(429), - [6073] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3756), - [6075] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4009), - [6077] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4462), - [6079] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5583), - [6081] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2202), - [6083] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3957), - [6085] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3964), - [6087] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4044), - [6089] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4038), - [6091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3863), - [6093] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3905), - [6095] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4060), - [6097] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3903), - [6099] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3902), - [6101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3922), - [6103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3802), - [6105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3908), - [6107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4134), - [6109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2627), - [6111] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2626), - [6113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3866), - [6115] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7290), - [6117] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2304), - [6119] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2629), - [6121] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2769), - [6123] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1619), - [6125] = {.entry = {.count = 1, .reusable = false}}, SHIFT(612), - [6127] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1620), - [6129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1621), - [6131] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1621), - [6133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1625), - [6135] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1632), - [6137] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1634), - [6139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1635), - [6141] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1635), - [6143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1637), - [6145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1619), - [6147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7213), - [6149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(144), - [6151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1647), - [6153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1649), - [6155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1650), - [6157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3961), - [6159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(335), - [6161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7237), - [6163] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3808), - [6165] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3926), - [6167] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4158), - [6169] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6277), - [6171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3867), - [6173] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3932), - [6175] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3935), - [6177] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3937), - [6179] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3759), - [6181] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3940), - [6183] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3946), - [6185] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3948), - [6187] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3900), - [6189] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3953), - [6191] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3955), - [6193] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3958), - [6195] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3960), - [6197] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3962), - [6199] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3965), - [6201] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4033), - [6203] = {.entry = {.count = 1, .reusable = false}}, SHIFT(430), - [6205] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_negated_pattern, 2, 0, 0), - [6207] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_negated_pattern, 2, 0, 0), - [6209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5996), - [6211] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3992), - [6213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3831), - [6215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3695), - [6217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4008), - [6219] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4062), - [6221] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2281), - [6223] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4046), - [6225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6068), - [6227] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1047), - [6229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1052), - [6231] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1052), - [6233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1065), - [6235] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1065), - [6237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(223), - [6239] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1046), - [6241] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1055), - [6243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1069), - [6245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1046), - [6247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(334), - [6249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1053), - [6251] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1054), - [6253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1076), - [6255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1077), - [6257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1079), - [6259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6128), - [6261] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__query_body_repeat2, 2, 0, 0), SHIFT_REPEAT(6068), - [6264] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__query_body_repeat2, 2, 0, 0), SHIFT_REPEAT(6128), - [6267] = {.entry = {.count = 1, .reusable = false}}, SHIFT(586), - [6269] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1816), - [6271] = {.entry = {.count = 1, .reusable = false}}, SHIFT(657), - [6273] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1817), - [6275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1818), - [6277] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1818), - [6279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1819), - [6281] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1820), - [6283] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1821), - [6285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1822), - [6287] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1822), - [6289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1823), - [6291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1816), - [6293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7044), - [6295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(206), - [6297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1824), - [6299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1825), - [6301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1826), - [6303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3944), - [6305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(381), - [6307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7137), - [6309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(329), - [6311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3608), - [6313] = {.entry = {.count = 1, .reusable = false}}, SHIFT(336), - [6315] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__ordering, 1, 0, 0), - [6317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6329), - [6319] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1512), - [6321] = {.entry = {.count = 1, .reusable = false}}, SHIFT(667), - [6323] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1513), - [6325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1514), - [6327] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1514), - [6329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1515), - [6331] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1516), - [6333] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1517), - [6335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1518), - [6337] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1518), - [6339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1519), - [6341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1512), - [6343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7223), - [6345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(218), - [6347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1521), - [6349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1522), - [6351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1523), - [6353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3933), - [6355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(351), - [6357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7225), - [6359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(342), - [6361] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1347), - [6363] = {.entry = {.count = 1, .reusable = false}}, SHIFT(595), - [6365] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1351), - [6367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1356), - [6369] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1356), - [6371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1372), - [6373] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1374), - [6375] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1377), - [6377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1384), - [6379] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1384), - [6381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1385), - [6383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1347), - [6385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(147), - [6387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1388), - [6389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1391), - [6391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1394), - [6393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3901), - [6395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(412), - [6397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(343), - [6399] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5938), - [6401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6110), - [6403] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__query_body_repeat2, 2, 0, 0), SHIFT_REPEAT(6110), - [6406] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1714), - [6408] = {.entry = {.count = 1, .reusable = false}}, SHIFT(620), - [6410] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1715), - [6412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1718), - [6414] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1718), - [6416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1724), - [6418] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1730), - [6420] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1744), - [6422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1760), - [6424] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1760), - [6426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1776), - [6428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1714), - [6430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(266), - [6432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1793), - [6434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1797), - [6436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1799), - [6438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(410), - [6440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6122), - [6442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(356), - [6444] = {.entry = {.count = 1, .reusable = false}}, SHIFT(357), - [6446] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__join_body, 4, 0, 0), - [6448] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__query_body_repeat2, 2, 0, 0), SHIFT_REPEAT(6122), - [6451] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1223), - [6453] = {.entry = {.count = 1, .reusable = false}}, SHIFT(622), - [6455] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1226), - [6457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1231), - [6459] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1231), - [6461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1287), - [6463] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1311), - [6465] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1658), - [6467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1707), - [6469] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1707), - [6471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1828), - [6473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1223), - [6475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7175), - [6477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(149), - [6479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(837), - [6481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(887), - [6483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(945), - [6485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3929), - [6487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(308), - [6489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7181), - [6491] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1051), - [6493] = {.entry = {.count = 1, .reusable = false}}, SHIFT(613), - [6495] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1057), - [6497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1072), - [6499] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1072), - [6501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1075), - [6503] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1080), - [6505] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1081), - [6507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1082), - [6509] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1082), - [6511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1086), - [6513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1051), - [6515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(156), - [6517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1087), - [6519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1104), - [6521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1121), - [6523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(364), - [6525] = {.entry = {.count = 1, .reusable = false}}, SHIFT(848), - [6527] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_from_clause, 5, 0, 49), - [6529] = {.entry = {.count = 1, .reusable = false}}, SHIFT(617), - [6531] = {.entry = {.count = 1, .reusable = false}}, SHIFT(849), - [6533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(859), - [6535] = {.entry = {.count = 1, .reusable = false}}, SHIFT(859), - [6537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(863), - [6539] = {.entry = {.count = 1, .reusable = false}}, SHIFT(867), - [6541] = {.entry = {.count = 1, .reusable = false}}, SHIFT(870), - [6543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(871), - [6545] = {.entry = {.count = 1, .reusable = false}}, SHIFT(871), - [6547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(872), - [6549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(848), - [6551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(273), - [6553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(874), - [6555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(876), - [6557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(877), - [6559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(375), - [6561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(319), - [6563] = {.entry = {.count = 1, .reusable = false}}, SHIFT(320), - [6565] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__simple_name, 1, 0, 0), SHIFT(3569), - [6568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5968), - [6570] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_clause, 4, 0, 0), - [6572] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_from_clause, 4, 0, 8), - [6574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(531), - [6576] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6611), - [6578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6083), - [6580] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__query_body_repeat2, 2, 0, 0), SHIFT_REPEAT(6083), - [6583] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_clause, 2, 0, 0), - [6585] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1339), - [6587] = {.entry = {.count = 1, .reusable = false}}, SHIFT(606), - [6589] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1354), - [6591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1360), - [6593] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1360), - [6595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1379), - [6597] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1381), - [6599] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1390), - [6601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1525), - [6603] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1525), - [6605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1567), - [6607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1339), - [6609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(153), - [6611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1597), - [6613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1611), - [6615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1614), - [6617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(368), - [6619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(554), - [6621] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1599), - [6623] = {.entry = {.count = 1, .reusable = false}}, SHIFT(631), - [6625] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4576), - [6627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4576), - [6629] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1600), - [6631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1601), - [6633] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1601), - [6635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1602), - [6637] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1603), - [6639] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1604), - [6641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1605), - [6643] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1605), - [6645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1606), - [6647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1599), - [6649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7220), - [6651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(157), - [6653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1607), - [6655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1608), - [6657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1609), - [6659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3959), - [6661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(414), - [6663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7233), - [6665] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_type, 1, 0, 0), SHIFT(594), - [6668] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_type, 1, 0, 0), REDUCE(sym_array_creation_expression, 2, 17, 7), SHIFT(4386), - [6672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7632), - [6674] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6883), - [6676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7453), - [6678] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__array_base_type, 1, 0, 0), - [6680] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__pointer_base_type, 1, 0, 0), - [6682] = {.entry = {.count = 1, .reusable = false}}, SHIFT(888), - [6684] = {.entry = {.count = 1, .reusable = false}}, SHIFT(611), - [6686] = {.entry = {.count = 1, .reusable = false}}, SHIFT(889), - [6688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(890), - [6690] = {.entry = {.count = 1, .reusable = false}}, SHIFT(890), - [6692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(891), - [6694] = {.entry = {.count = 1, .reusable = false}}, SHIFT(892), - [6696] = {.entry = {.count = 1, .reusable = false}}, SHIFT(893), - [6698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(894), - [6700] = {.entry = {.count = 1, .reusable = false}}, SHIFT(894), - [6702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(895), - [6704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(888), - [6706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(154), - [6708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(896), - [6710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(897), - [6712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(898), - [6714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(346), - [6716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2341), - [6718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7698), - [6720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7738), - [6722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7502), - [6724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7656), - [6726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6105), - [6728] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__query_body_repeat2, 2, 0, 0), SHIFT_REPEAT(6105), - [6731] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1554), - [6733] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1555), - [6735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1556), - [6737] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1556), - [6739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1557), - [6741] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1558), - [6743] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1559), - [6745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1560), - [6747] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1560), - [6749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1561), - [6751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1554), - [6753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(159), - [6755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1563), - [6757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1564), - [6759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1565), - [6761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3909), - [6763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(302), - [6765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4574), - [6767] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1028), - [6769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1029), - [6771] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1029), - [6773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1033), - [6775] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1033), - [6777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(174), - [6779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4715), - [6781] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1416), - [6783] = {.entry = {.count = 1, .reusable = false}}, SHIFT(615), - [6785] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1488), - [6787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1698), - [6789] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1698), - [6791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1700), - [6793] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1708), - [6795] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1709), - [6797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1716), - [6799] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1716), - [6801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1717), - [6803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1416), - [6805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(176), - [6807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1722), - [6809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1754), - [6811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1777), - [6813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3930), - [6815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(367), - [6817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3231), - [6819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(203), - [6821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(433), - [6823] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2571), - [6825] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2578), - [6827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(145), - [6829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3573), - [6831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(434), - [6833] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1849), - [6835] = {.entry = {.count = 1, .reusable = false}}, SHIFT(624), - [6837] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1851), - [6839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1852), - [6841] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1852), - [6843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1857), - [6845] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1861), - [6847] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1865), - [6849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1867), - [6851] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1867), - [6853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1871), - [6855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1849), - [6857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1889), - [6859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1890), - [6861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1896), - [6863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3967), - [6865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(317), - [6867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5992), - [6869] = {.entry = {.count = 1, .reusable = false}}, SHIFT(838), - [6871] = {.entry = {.count = 1, .reusable = false}}, SHIFT(840), - [6873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(843), - [6875] = {.entry = {.count = 1, .reusable = false}}, SHIFT(843), - [6877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(845), - [6879] = {.entry = {.count = 1, .reusable = false}}, SHIFT(847), - [6881] = {.entry = {.count = 1, .reusable = false}}, SHIFT(851), - [6883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(866), - [6885] = {.entry = {.count = 1, .reusable = false}}, SHIFT(866), - [6887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(869), - [6889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(838), - [6891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(168), - [6893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(304), - [6895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3113), - [6897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(878), - [6899] = {.entry = {.count = 1, .reusable = false}}, SHIFT(656), - [6901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(879), - [6903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(880), - [6905] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6042), - [6907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3740), - [6909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2975), - [6911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5936), - [6913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(395), - [6915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(396), - [6917] = {.entry = {.count = 1, .reusable = false}}, SHIFT(610), - [6919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6044), - [6921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4817), - [6923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4542), - [6925] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_expression, 4, 0, 57), - [6927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6076), - [6929] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1027), - [6931] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1032), - [6933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1034), - [6935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1027), - [6937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(378), - [6939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1030), - [6941] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1031), - [6943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1035), - [6945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1036), - [6947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1037), - [6949] = {.entry = {.count = 1, .reusable = false}}, SHIFT(625), - [6951] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type, 1, 0, 0), SHIFT(4386), - [6954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3512), - [6956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7639), - [6958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1667), - [6960] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1429), - [6962] = {.entry = {.count = 1, .reusable = false}}, SHIFT(602), - [6964] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1467), - [6966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1470), - [6968] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1470), - [6970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1471), - [6972] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1473), - [6974] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1482), - [6976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1485), - [6978] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1485), - [6980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1486), - [6982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1429), - [6984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(195), - [6986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1489), - [6988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1490), - [6990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1491), - [6992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(377), - [6994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6653), - [6996] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__class_declaration_initializer_repeat1, 2, 0, 0), SHIFT_REPEAT(4636), - [6999] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__class_declaration_initializer_repeat1, 2, 0, 0), SHIFT_REPEAT(5145), - [7002] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__query_body_repeat2, 2, 0, 0), SHIFT_REPEAT(6076), - [7005] = {.entry = {.count = 1, .reusable = false}}, SHIFT(947), - [7007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(951), - [7009] = {.entry = {.count = 1, .reusable = false}}, SHIFT(951), - [7011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(202), - [7013] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1150), - [7015] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1152), - [7017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1153), - [7019] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1153), - [7021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1154), - [7023] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1155), - [7025] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1156), - [7027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1157), - [7029] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1157), - [7031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1158), - [7033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1150), - [7035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(161), - [7037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4039), - [7039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(403), - [7041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1159), - [7043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1160), - [7045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1161), - [7047] = {.entry = {.count = 1, .reusable = false}}, SHIFT(654), - [7049] = {.entry = {.count = 1, .reusable = false}}, SHIFT(989), - [7051] = {.entry = {.count = 1, .reusable = false}}, SHIFT(623), - [7053] = {.entry = {.count = 1, .reusable = false}}, SHIFT(990), - [7055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(991), - [7057] = {.entry = {.count = 1, .reusable = false}}, SHIFT(991), - [7059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(992), - [7061] = {.entry = {.count = 1, .reusable = false}}, SHIFT(993), - [7063] = {.entry = {.count = 1, .reusable = false}}, SHIFT(994), - [7065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(995), - [7067] = {.entry = {.count = 1, .reusable = false}}, SHIFT(995), - [7069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(996), - [7071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(989), - [7073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(193), - [7075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(997), - [7077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(998), - [7079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(999), + [5962] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_pointer_type_repeat1, 2, 0, 0), SHIFT_REPEAT(3654), + [5965] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_pointer_type_repeat1, 2, 0, 0), SHIFT_REPEAT(3670), + [5968] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_pointer_type_repeat1, 2, 0, 0), SHIFT_REPEAT(3747), + [5971] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_pointer_type_repeat1, 2, 0, 0), SHIFT_REPEAT(4187), + [5974] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_pointer_type_repeat1, 2, 0, 0), SHIFT_REPEAT(7579), + [5977] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_pointer_type_repeat1, 2, 0, 0), SHIFT_REPEAT(4233), + [5980] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_pointer_type_repeat1, 2, 0, 0), SHIFT_REPEAT(6624), + [5983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3783), + [5985] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1251), + [5987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1251), + [5989] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1514), + [5991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1514), + [5993] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1779), + [5995] = {.entry = {.count = 1, .reusable = false}}, SHIFT(663), + [5997] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1780), + [5999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1781), + [6001] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1781), + [6003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1782), + [6005] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1783), + [6007] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1784), + [6009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1785), + [6011] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1785), + [6013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1786), + [6015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1779), + [6017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7251), + [6019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(116), + [6021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1788), + [6023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1789), + [6025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1790), + [6027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4028), + [6029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(336), + [6031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7258), + [6033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3706), + [6035] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3949), + [6037] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3888), + [6039] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5389), + [6041] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3947), + [6043] = {.entry = {.count = 1, .reusable = false}}, SHIFT(900), + [6045] = {.entry = {.count = 1, .reusable = false}}, SHIFT(601), + [6047] = {.entry = {.count = 1, .reusable = false}}, SHIFT(901), + [6049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(902), + [6051] = {.entry = {.count = 1, .reusable = false}}, SHIFT(902), + [6053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(903), + [6055] = {.entry = {.count = 1, .reusable = false}}, SHIFT(904), + [6057] = {.entry = {.count = 1, .reusable = false}}, SHIFT(905), + [6059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(906), + [6061] = {.entry = {.count = 1, .reusable = false}}, SHIFT(906), + [6063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(907), + [6065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(900), + [6067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(237), + [6069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(909), + [6071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(910), + [6073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(911), + [6075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(327), + [6077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3782), + [6079] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4017), + [6081] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2620), + [6083] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2619), + [6085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3789), + [6087] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7701), + [6089] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2295), + [6091] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2622), + [6093] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2825), + [6095] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_or_pattern, 3, 0, 39), + [6097] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_or_pattern, 3, 0, 39), + [6099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(338), + [6101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3788), + [6103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4040), + [6105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(339), + [6107] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_negated_pattern, 2, 0, 0), + [6109] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_negated_pattern, 2, 0, 0), + [6111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3762), + [6113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2198), + [6115] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3737), + [6117] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3905), + [6119] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4113), + [6121] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6262), + [6123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3772), + [6125] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3933), + [6127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5959), + [6129] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3953), + [6131] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3952), + [6133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3792), + [6135] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3957), + [6137] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3941), + [6139] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3756), + [6141] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4008), + [6143] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4382), + [6145] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4047), + [6147] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4011), + [6149] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4031), + [6151] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4044), + [6153] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3903), + [6155] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3927), + [6157] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3932), + [6159] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3934), + [6161] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3935), + [6163] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3956), + [6165] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3946), + [6167] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3983), + [6169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3761), + [6171] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3899), + [6173] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3963), + [6175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3703), + [6177] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2283), + [6179] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3981), + [6181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4014), + [6183] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3993), + [6185] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4013), + [6187] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4025), + [6189] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4034), + [6191] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3873), + [6193] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3955), + [6195] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4149), + [6197] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4046), + [6199] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4050), + [6201] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1453), + [6203] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1455), + [6205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1463), + [6207] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1463), + [6209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1467), + [6211] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1472), + [6213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1476), + [6215] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1476), + [6217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1488), + [6219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1453), + [6221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(250), + [6223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(428), + [6225] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__query_body_repeat2, 2, 0, 0), SHIFT_REPEAT(6079), + [6228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6079), + [6230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3609), + [6232] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1470), + [6234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1492), + [6236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1494), + [6238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1496), + [6240] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1859), + [6242] = {.entry = {.count = 1, .reusable = false}}, SHIFT(651), + [6244] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1860), + [6246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1861), + [6248] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1861), + [6250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1862), + [6252] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1863), + [6254] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1864), + [6256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1865), + [6258] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1865), + [6260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1866), + [6262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1859), + [6264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7130), + [6266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(219), + [6268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1867), + [6270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1868), + [6272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1869), + [6274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3920), + [6276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(389), + [6278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7134), + [6280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6109), + [6282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(376), + [6284] = {.entry = {.count = 1, .reusable = false}}, SHIFT(377), + [6286] = {.entry = {.count = 1, .reusable = false}}, SHIFT(590), + [6288] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__query_body_repeat2, 2, 0, 0), SHIFT_REPEAT(6109), + [6291] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__ordering, 1, 0, 0), + [6293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6323), + [6295] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1682), + [6297] = {.entry = {.count = 1, .reusable = false}}, SHIFT(645), + [6299] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1683), + [6301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1686), + [6303] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1686), + [6305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1688), + [6307] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1704), + [6309] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1705), + [6311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1707), + [6313] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1707), + [6315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1721), + [6317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1682), + [6319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(148), + [6321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1726), + [6323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1728), + [6325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1729), + [6327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3919), + [6329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(321), + [6331] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1633), + [6333] = {.entry = {.count = 1, .reusable = false}}, SHIFT(610), + [6335] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1634), + [6337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1635), + [6339] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1635), + [6341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1636), + [6343] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1637), + [6345] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1638), + [6347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1639), + [6349] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1639), + [6351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1640), + [6353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1633), + [6355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7149), + [6357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(215), + [6359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1641), + [6361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1642), + [6363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1643), + [6365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4007), + [6367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(354), + [6369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7085), + [6371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6110), + [6373] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__query_body_repeat2, 2, 0, 0), SHIFT_REPEAT(6110), + [6376] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5928), + [6378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(383), + [6380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(385), + [6382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6069), + [6384] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1029), + [6386] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1030), + [6388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1031), + [6390] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1031), + [6392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1032), + [6394] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1034), + [6396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1035), + [6398] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1035), + [6400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1036), + [6402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1029), + [6404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(276), + [6406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(439), + [6408] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1033), + [6410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1037), + [6412] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__join_body, 4, 0, 0), + [6414] = {.entry = {.count = 1, .reusable = false}}, SHIFT(602), + [6416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1038), + [6418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1039), + [6420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(410), + [6422] = {.entry = {.count = 1, .reusable = false}}, SHIFT(411), + [6424] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__query_body_repeat2, 2, 0, 0), SHIFT_REPEAT(6069), + [6427] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1256), + [6429] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1258), + [6431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1259), + [6433] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1259), + [6435] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1273), + [6437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1275), + [6439] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1275), + [6441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1278), + [6443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1256), + [6445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(266), + [6447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(322), + [6449] = {.entry = {.count = 1, .reusable = false}}, SHIFT(955), + [6451] = {.entry = {.count = 1, .reusable = false}}, SHIFT(956), + [6453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(957), + [6455] = {.entry = {.count = 1, .reusable = false}}, SHIFT(957), + [6457] = {.entry = {.count = 1, .reusable = false}}, SHIFT(960), + [6459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(961), + [6461] = {.entry = {.count = 1, .reusable = false}}, SHIFT(961), + [6463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(962), + [6465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(955), + [6467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(156), + [6469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(369), + [6471] = {.entry = {.count = 1, .reusable = false}}, SHIFT(880), + [6473] = {.entry = {.count = 1, .reusable = false}}, SHIFT(605), + [6475] = {.entry = {.count = 1, .reusable = false}}, SHIFT(881), + [6477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(882), + [6479] = {.entry = {.count = 1, .reusable = false}}, SHIFT(882), + [6481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(883), + [6483] = {.entry = {.count = 1, .reusable = false}}, SHIFT(884), + [6485] = {.entry = {.count = 1, .reusable = false}}, SHIFT(885), + [6487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(886), + [6489] = {.entry = {.count = 1, .reusable = false}}, SHIFT(886), + [6491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(887), + [6493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(880), + [6495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7148), + [6497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(150), + [6499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(888), + [6501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(889), + [6503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(890), + [6505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3931), + [6507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(308), + [6509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7159), + [6511] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_from_clause, 5, 0, 48), + [6513] = {.entry = {.count = 1, .reusable = false}}, SHIFT(593), + [6515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1260), + [6517] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1261), + [6519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1294), + [6521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1297), + [6523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1298), + [6525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(958), + [6527] = {.entry = {.count = 1, .reusable = false}}, SHIFT(959), + [6529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(963), + [6531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(964), + [6533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(965), + [6535] = {.entry = {.count = 1, .reusable = false}}, SHIFT(581), + [6537] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6624), + [6539] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__simple_name, 1, 0, 0), SHIFT(3590), + [6542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5934), + [6544] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_from_clause, 4, 0, 7), + [6546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(364), + [6548] = {.entry = {.count = 1, .reusable = false}}, SHIFT(370), + [6550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6111), + [6552] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_clause, 2, 0, 0), + [6554] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__query_body_repeat2, 2, 0, 0), SHIFT_REPEAT(6111), + [6557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(533), + [6559] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_clause, 4, 0, 0), + [6561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7492), + [6563] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6777), + [6565] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1090), + [6567] = {.entry = {.count = 1, .reusable = false}}, SHIFT(625), + [6569] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1091), + [6571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1093), + [6573] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1093), + [6575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1094), + [6577] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1096), + [6579] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1097), + [6581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1098), + [6583] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1098), + [6585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1099), + [6587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1090), + [6589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(155), + [6591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1100), + [6593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1112), + [6595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1114), + [6597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(427), + [6599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7277), + [6601] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__array_base_type, 1, 0, 0), + [6603] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__pointer_base_type, 1, 0, 0), + [6605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(152), + [6607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(549), + [6609] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1709), + [6611] = {.entry = {.count = 1, .reusable = false}}, SHIFT(615), + [6613] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4583), + [6615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4583), + [6617] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1710), + [6619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1711), + [6621] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1711), + [6623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1712), + [6625] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1713), + [6627] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1714), + [6629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1715), + [6631] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1715), + [6633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1716), + [6635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1709), + [6637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7099), + [6639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(160), + [6641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1717), + [6643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1718), + [6645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1719), + [6647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4016), + [6649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(442), + [6651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7152), + [6653] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1102), + [6655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1103), + [6657] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1103), + [6659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1107), + [6661] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1107), + [6663] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1101), + [6665] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1106), + [6667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1108), + [6669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1101), + [6671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(349), + [6673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1104), + [6675] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1105), + [6677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1109), + [6679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1110), + [6681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1111), + [6683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7488), + [6685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7293), + [6687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7441), + [6689] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_type, 1, 0, 0), SHIFT(640), + [6692] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_type, 1, 0, 0), REDUCE(sym_array_creation_expression, 2, 17, 8), SHIFT(4355), + [6696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7655), + [6698] = {.entry = {.count = 1, .reusable = false}}, SHIFT(652), + [6700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6098), + [6702] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__query_body_repeat2, 2, 0, 0), SHIFT_REPEAT(6098), + [6705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2309), + [6707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7564), + [6709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(862), + [6711] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1756), + [6713] = {.entry = {.count = 1, .reusable = false}}, SHIFT(588), + [6715] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1757), + [6717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1758), + [6719] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1758), + [6721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1759), + [6723] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1760), + [6725] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1761), + [6727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1762), + [6729] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1762), + [6731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1763), + [6733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1756), + [6735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(201), + [6737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1767), + [6739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1768), + [6741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1769), + [6743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4032), + [6745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(319), + [6747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6691), + [6749] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1048), + [6751] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1049), + [6753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1050), + [6755] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1050), + [6757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1051), + [6759] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1052), + [6761] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1053), + [6763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1054), + [6765] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1054), + [6767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1055), + [6769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1048), + [6771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(179), + [6773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1057), + [6775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4049), + [6777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(362), + [6779] = {.entry = {.count = 1, .reusable = false}}, SHIFT(975), + [6781] = {.entry = {.count = 1, .reusable = false}}, SHIFT(644), + [6783] = {.entry = {.count = 1, .reusable = false}}, SHIFT(979), + [6785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(983), + [6787] = {.entry = {.count = 1, .reusable = false}}, SHIFT(983), + [6789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(991), + [6791] = {.entry = {.count = 1, .reusable = false}}, SHIFT(995), + [6793] = {.entry = {.count = 1, .reusable = false}}, SHIFT(998), + [6795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1001), + [6797] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1001), + [6799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1003), + [6801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(975), + [6803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(173), + [6805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1005), + [6807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1007), + [6809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1008), + [6811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4035), + [6813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(317), + [6815] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_expression, 4, 0, 56), + [6817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(166), + [6819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(170), + [6821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3325), + [6823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5994), + [6825] = {.entry = {.count = 1, .reusable = false}}, SHIFT(920), + [6827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(921), + [6829] = {.entry = {.count = 1, .reusable = false}}, SHIFT(921), + [6831] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1666), + [6833] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1667), + [6835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1668), + [6837] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1668), + [6839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1669), + [6841] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1671), + [6843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1672), + [6845] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1672), + [6847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1673), + [6849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1666), + [6851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(159), + [6853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(405), + [6855] = {.entry = {.count = 1, .reusable = false}}, SHIFT(607), + [6857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1058), + [6859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1059), + [6861] = {.entry = {.count = 1, .reusable = false}}, SHIFT(919), + [6863] = {.entry = {.count = 1, .reusable = false}}, SHIFT(924), + [6865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(925), + [6867] = {.entry = {.count = 1, .reusable = false}}, SHIFT(925), + [6869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(926), + [6871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(919), + [6873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(397), + [6875] = {.entry = {.count = 1, .reusable = false}}, SHIFT(642), + [6877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(922), + [6879] = {.entry = {.count = 1, .reusable = false}}, SHIFT(923), + [6881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(927), + [6883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(928), + [6885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(929), + [6887] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1670), + [6889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5948), + [6891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3567), + [6893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5997), + [6895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3062), + [6897] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1220), + [6899] = {.entry = {.count = 1, .reusable = false}}, SHIFT(608), + [6901] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1221), + [6903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1222), + [6905] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1222), + [6907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1223), + [6909] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1224), + [6911] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1225), + [6913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1226), + [6915] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1226), + [6917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1227), + [6919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1220), + [6921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1228), + [6923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1229), + [6925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1230), + [6927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(386), + [6929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1675), + [6931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(311), + [6933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(315), + [6935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(345), + [6937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1676), + [6939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1677), + [6941] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__class_declaration_initializer_repeat1, 2, 0, 0), SHIFT_REPEAT(4614), + [6944] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__class_declaration_initializer_repeat1, 2, 0, 0), SHIFT_REPEAT(5268), + [6947] = {.entry = {.count = 1, .reusable = false}}, SHIFT(649), + [6949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3451), + [6951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3736), + [6953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4655), + [6955] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5941), + [6957] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type, 1, 0, 0), SHIFT(4355), + [6960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3016), + [6962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6084), + [6964] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__query_body_repeat2, 2, 0, 0), SHIFT_REPEAT(6084), + [6967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4758), + [6969] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2565), + [6971] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2592), + [6973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(145), + [6975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4709), + [6977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(346), + [6979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4607), + [6981] = {.entry = {.count = 1, .reusable = false}}, SHIFT(984), + [6983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(985), + [6985] = {.entry = {.count = 1, .reusable = false}}, SHIFT(985), + [6987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(989), + [6989] = {.entry = {.count = 1, .reusable = false}}, SHIFT(989), + [6991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(167), + [6993] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1009), + [6995] = {.entry = {.count = 1, .reusable = false}}, SHIFT(616), + [6997] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1010), + [6999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1011), + [7001] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1011), + [7003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1012), + [7005] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1013), + [7007] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1014), + [7009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1015), + [7011] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1015), + [7013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1016), + [7015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1009), + [7017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(177), + [7019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1017), + [7021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1018), + [7023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1019), + [7025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4030), + [7027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(330), + [7029] = {.entry = {.count = 1, .reusable = false}}, SHIFT(936), + [7031] = {.entry = {.count = 1, .reusable = false}}, SHIFT(937), + [7033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(938), + [7035] = {.entry = {.count = 1, .reusable = false}}, SHIFT(938), + [7037] = {.entry = {.count = 1, .reusable = false}}, SHIFT(941), + [7039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(942), + [7041] = {.entry = {.count = 1, .reusable = false}}, SHIFT(942), + [7043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(943), + [7045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(936), + [7047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(175), + [7049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(329), + [7051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(939), + [7053] = {.entry = {.count = 1, .reusable = false}}, SHIFT(940), + [7055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(944), + [7057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(945), + [7059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(946), + [7061] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1142), + [7063] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1143), + [7065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1144), + [7067] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1144), + [7069] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1147), + [7071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1148), + [7073] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1148), + [7075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1149), + [7077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1142), + [7079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(217), [7081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3938), - [7083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(371), - [7085] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1271), - [7087] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1272), - [7089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1273), - [7091] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1273), - [7093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1274), - [7095] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1275), - [7097] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1276), - [7099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1277), - [7101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1277), - [7103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1278), - [7105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1271), - [7107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(180), - [7109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1279), - [7111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(313), - [7113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1280), - [7115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1281), - [7117] = {.entry = {.count = 1, .reusable = false}}, SHIFT(645), - [7119] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1209), - [7121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1210), - [7123] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1210), - [7125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1214), - [7127] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1214), - [7129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(216), - [7131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(436), - [7133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(416), - [7135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4016), - [7137] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1723), - [7139] = {.entry = {.count = 1, .reusable = false}}, SHIFT(653), - [7141] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1725), - [7143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1726), - [7145] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1726), - [7147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1727), - [7149] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1728), - [7151] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1738), - [7153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1746), - [7155] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1746), - [7157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1751), - [7159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1723), - [7161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(164), - [7163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1755), - [7165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1758), - [7167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1763), - [7169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(393), - [7171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6048), - [7173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5758), - [7175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5159), - [7177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(208), - [7179] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1418), - [7181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1425), - [7183] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1425), - [7185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1507), - [7187] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1507), - [7189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(163), - [7191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(426), - [7193] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1900), - [7195] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1484), - [7197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1520), - [7199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1900), - [7201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1472), - [7203] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1481), - [7205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1531), - [7207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1546), - [7209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1549), - [7211] = {.entry = {.count = 1, .reusable = false}}, SHIFT(946), - [7213] = {.entry = {.count = 1, .reusable = false}}, SHIFT(621), - [7215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(953), - [7217] = {.entry = {.count = 1, .reusable = false}}, SHIFT(954), - [7219] = {.entry = {.count = 1, .reusable = false}}, SHIFT(957), - [7221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(961), - [7223] = {.entry = {.count = 1, .reusable = false}}, SHIFT(961), - [7225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(975), - [7227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(946), - [7229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(979), - [7231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(980), - [7233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(981), - [7235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(418), - [7237] = {.entry = {.count = 1, .reusable = false}}, SHIFT(658), - [7239] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1670), - [7241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1676), - [7243] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1676), - [7245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1680), - [7247] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1680), - [7249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(189), - [7251] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1669), - [7253] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1679), - [7255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1681), - [7257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1669), - [7259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(327), - [7261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6123), - [7263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1677), - [7265] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__query_body_repeat2, 2, 0, 0), SHIFT_REPEAT(6123), - [7268] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1678), - [7270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1686), - [7272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1687), - [7274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1688), - [7276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(324), - [7278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(727), - [7280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3114), - [7282] = {.entry = {.count = 1, .reusable = false}}, SHIFT(929), - [7284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(930), - [7286] = {.entry = {.count = 1, .reusable = false}}, SHIFT(930), - [7288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(934), - [7290] = {.entry = {.count = 1, .reusable = false}}, SHIFT(934), - [7292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(437), - [7294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6036), - [7296] = {.entry = {.count = 1, .reusable = false}}, SHIFT(928), - [7298] = {.entry = {.count = 1, .reusable = false}}, SHIFT(634), - [7300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(931), - [7302] = {.entry = {.count = 1, .reusable = false}}, SHIFT(932), - [7304] = {.entry = {.count = 1, .reusable = false}}, SHIFT(933), - [7306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(935), - [7308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(928), - [7310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(936), - [7312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(937), - [7314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(938), - [7316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3973), - [7318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(384), - [7320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(406), - [7322] = {.entry = {.count = 1, .reusable = false}}, SHIFT(632), - [7324] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1127), - [7326] = {.entry = {.count = 1, .reusable = false}}, SHIFT(639), - [7328] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1128), - [7330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1129), - [7332] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1129), - [7334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1130), - [7336] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1131), - [7338] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1132), - [7340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1133), - [7342] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1133), - [7344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1134), - [7346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1127), - [7348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(217), - [7350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1135), - [7352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1136), - [7354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1137), - [7356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3974), - [7358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(386), - [7360] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1208), - [7362] = {.entry = {.count = 1, .reusable = false}}, SHIFT(642), - [7364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1211), - [7366] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1212), - [7368] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1213), - [7370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1215), - [7372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1208), - [7374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1216), - [7376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1217), - [7378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1218), - [7380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3975), - [7382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(389), - [7384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(407), - [7386] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_enum_member_declaration, 3, 0, 57), - [7388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6074), - [7390] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__query_body_repeat2, 2, 0, 0), SHIFT_REPEAT(6074), - [7393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1931), - [7395] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1780), - [7397] = {.entry = {.count = 1, .reusable = false}}, SHIFT(666), - [7399] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1781), - [7401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1782), - [7403] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1782), - [7405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1783), - [7407] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1784), - [7409] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1785), - [7411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1786), - [7413] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1786), - [7415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1787), - [7417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1780), - [7419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(197), - [7421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1789), - [7423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1790), - [7425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1791), - [7427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(428), - [7429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6070), - [7431] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__query_body_repeat2, 2, 0, 0), SHIFT_REPEAT(6070), - [7434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6125), - [7436] = {.entry = {.count = 1, .reusable = false}}, SHIFT(850), - [7438] = {.entry = {.count = 1, .reusable = false}}, SHIFT(852), - [7440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(853), - [7442] = {.entry = {.count = 1, .reusable = false}}, SHIFT(853), - [7444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(854), - [7446] = {.entry = {.count = 1, .reusable = false}}, SHIFT(855), - [7448] = {.entry = {.count = 1, .reusable = false}}, SHIFT(856), - [7450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(857), - [7452] = {.entry = {.count = 1, .reusable = false}}, SHIFT(857), - [7454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(858), - [7456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(850), - [7458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(175), - [7460] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1312), - [7462] = {.entry = {.count = 1, .reusable = false}}, SHIFT(646), - [7464] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1313), - [7466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1314), - [7468] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1314), - [7470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1315), - [7472] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1316), - [7474] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1317), - [7476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1318), - [7478] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1318), - [7480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1319), - [7482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1312), - [7484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(210), - [7486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1320), - [7488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1321), - [7490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1322), - [7492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3972), - [7494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(390), - [7496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(185), - [7498] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1494), - [7500] = {.entry = {.count = 1, .reusable = false}}, SHIFT(638), - [7502] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1495), - [7504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1496), - [7506] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1496), - [7508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1497), - [7510] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1498), - [7512] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1499), - [7514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1500), - [7516] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1500), - [7518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1501), - [7520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1494), - [7522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1503), - [7524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1504), - [7526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1505), - [7528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4007), - [7530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(376), - [7532] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1089), - [7534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1090), - [7536] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1090), - [7538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1094), - [7540] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1094), - [7542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(201), - [7544] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_member_declaration, 3, 0, 90), - [7546] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument, 2, 0, 0), - [7548] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1088), - [7550] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1093), - [7552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1095), - [7554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1088), - [7556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(379), - [7558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1091), - [7560] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1172), - [7562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1173), - [7564] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1173), - [7566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1177), - [7568] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1177), - [7570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(213), - [7572] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1092), - [7574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1096), - [7576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1097), - [7578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1098), - [7580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1850), - [7582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2158), - [7584] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_member_declaration, 4, 0, 111), - [7586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2159), - [7588] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_tuple_element, 1, 0, 6), REDUCE(sym_type_pattern, 1, 0, 6), - [7591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1610), - [7593] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1362), - [7595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1363), - [7597] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1363), - [7599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1367), - [7601] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1367), - [7603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(172), - [7605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(807), - [7607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3514), - [7609] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1361), - [7611] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1366), - [7613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1368), - [7615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1361), - [7617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(391), - [7619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1364), - [7621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(860), - [7623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(861), - [7625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(862), - [7627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(802), - [7629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3894), - [7631] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1365), - [7633] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument, 4, 0, 5), - [7635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1369), - [7637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1370), - [7639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1371), - [7641] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1171), - [7643] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1176), - [7645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1178), - [7647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1171), - [7649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3963), - [7651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(385), - [7653] = {.entry = {.count = 1, .reusable = false}}, SHIFT(647), - [7655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1174), - [7657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(828), - [7659] = {.entry = {.count = 1, .reusable = false}}, SHIFT(660), - [7661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(676), - [7663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3227), - [7665] = {.entry = {.count = 1, .reusable = false}}, SHIFT(633), - [7667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1140), - [7669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1691), - [7671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2416), - [7673] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 4, 0, 22), - [7675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1221), - [7677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(345), - [7679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3155), - [7681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1040), - [7683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2144), - [7685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1591), - [7687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1284), - [7689] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 4, 0, 8), - [7691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3008), - [7693] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1251), - [7695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1252), - [7697] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1252), - [7699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1256), - [7701] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1256), - [7703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(211), - [7705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4367), - [7707] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1250), - [7709] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1255), - [7711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1257), - [7713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1250), - [7715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3971), - [7717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(387), - [7719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1253), - [7721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1543), - [7723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(899), - [7725] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1254), - [7727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1258), - [7729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2113), - [7731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1259), - [7733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1260), - [7735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(340), - [7737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1568), - [7739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1000), - [7741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4316), - [7743] = {.entry = {.count = 1, .reusable = false}}, SHIFT(644), - [7745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(813), - [7747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1003), - [7749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6107), - [7751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1099), - [7753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(341), - [7755] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1175), - [7757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1179), - [7759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1182), - [7761] = {.entry = {.count = 1, .reusable = false}}, SHIFT(641), - [7763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1180), - [7765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1181), - [7767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(360), - [7769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(365), - [7771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1261), - [7773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1323), - [7775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1373), - [7777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1022), - [7779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3288), - [7781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(347), - [7783] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__for_statement_conditions_repeat1, 2, 0, 0), - [7785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2150), - [7787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(679), - [7789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3049), - [7791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1508), - [7793] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6030), - [7795] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 6, 0, 69), - [7797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1526), - [7799] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_conversion_operator_declaration_repeat1, 2, 0, 0), SHIFT_REPEAT(2175), - [7802] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_conversion_operator_declaration_repeat1, 2, 0, 0), SHIFT_REPEAT(2174), - [7805] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_conversion_operator_declaration_repeat1, 2, 0, 0), - [7807] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_conversion_operator_declaration_repeat1, 2, 0, 0), - [7809] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_conversion_operator_declaration_repeat1, 2, 0, 0), SHIFT_REPEAT(5884), - [7812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(760), - [7814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4640), - [7816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2668), - [7818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(941), - [7820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2156), - [7822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2145), - [7824] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__query_body_repeat2, 2, 0, 0), SHIFT_REPEAT(6107), - [7827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1827), - [7829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1142), - [7831] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument, 1, 0, 0), - [7833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1794), - [7835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1648), - [7837] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument, 3, 0, 5), - [7839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2951), - [7841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6079), - [7843] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__query_body_repeat2, 2, 0, 0), SHIFT_REPEAT(6079), - [7846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6082), - [7848] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__query_body_repeat2, 2, 0, 0), SHIFT_REPEAT(6082), - [7851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6086), - [7853] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__query_body_repeat2, 2, 0, 0), SHIFT_REPEAT(6086), - [7856] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 3, 0, 5), - [7858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6089), - [7860] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__query_body_repeat2, 2, 0, 0), SHIFT_REPEAT(6089), - [7863] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 5, 0, 49), - [7865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1666), - [7867] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__query_body_repeat2, 2, 0, 0), SHIFT_REPEAT(6125), - [7870] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1008), - [7872] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1009), - [7874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1010), - [7876] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1010), - [7878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1011), - [7880] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1012), - [7882] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1013), - [7884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1014), - [7886] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1014), - [7888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1015), - [7890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1008), - [7892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(257), - [7894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1016), - [7896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3968), - [7898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(370), - [7900] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_array_rank_specifier_repeat1, 2, 0, 0), - [7902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(264), - [7904] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6452), - [7906] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6432), - [7908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5213), - [7910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5214), - [7912] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6512), - [7914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7286), - [7916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6542), - [7918] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1188), - [7920] = {.entry = {.count = 1, .reusable = false}}, SHIFT(643), - [7922] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1189), - [7924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1190), - [7926] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1190), - [7928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1191), - [7930] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1192), - [7932] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1193), - [7934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1194), - [7936] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1194), - [7938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1195), - [7940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1188), - [7942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(236), - [7944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1196), - [7946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1197), - [7948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1198), - [7950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(425), - [7952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7117), - [7954] = {.entry = {.count = 1, .reusable = false}}, SHIFT(908), - [7956] = {.entry = {.count = 1, .reusable = false}}, SHIFT(630), - [7958] = {.entry = {.count = 1, .reusable = false}}, SHIFT(909), - [7960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(910), - [7962] = {.entry = {.count = 1, .reusable = false}}, SHIFT(910), - [7964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(911), - [7966] = {.entry = {.count = 1, .reusable = false}}, SHIFT(912), - [7968] = {.entry = {.count = 1, .reusable = false}}, SHIFT(913), - [7970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(914), - [7972] = {.entry = {.count = 1, .reusable = false}}, SHIFT(914), - [7974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(915), - [7976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(908), - [7978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(282), - [7980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(916), - [7982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(917), - [7984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(918), - [7986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3956), - [7988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(314), - [7990] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declarator, 3, 0, 5), - [7992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5733), - [7994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5191), - [7996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5245), - [7998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5216), - [8000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6543), - [8002] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declarator, 4, 0, 0), - [8004] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declarator, 4, 0, 5), - [8006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(328), - [8008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(333), - [8010] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_expression_arm, 3, 0, 0), - [8012] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__anonymous_object_member_declarator, 1, 0, 0), - [8014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7285), - [8016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(380), - [8018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(303), - [8020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(353), - [8022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(322), - [8024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(323), - [8026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1971), - [8028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6020), - [8030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(146), - [8032] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1764), - [8034] = {.entry = {.count = 1, .reusable = false}}, SHIFT(665), - [8036] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1765), - [8038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1766), - [8040] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1766), - [8042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1767), - [8044] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1768), - [8046] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1769), - [8048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1770), - [8050] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1770), - [8052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1771), - [8054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1764), - [8056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(250), - [8058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1772), - [8060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1773), - [8062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1774), - [8064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(424), - [8066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7100), - [8068] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1107), - [8070] = {.entry = {.count = 1, .reusable = false}}, SHIFT(640), - [8072] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1108), - [8074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1109), - [8076] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1109), - [8078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1110), - [8080] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1111), - [8082] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1112), - [8084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1113), - [8086] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1113), - [8088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1114), - [8090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1107), - [8092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1115), - [8094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1116), - [8096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1117), - [8098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3970), - [8100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(373), - [8102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5860), - [8104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(438), - [8106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(404), - [8108] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_initializer, 3, 0, 0), - [8110] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interpolation_alignment_clause, 2, 0, 0), - [8112] = {.entry = {.count = 1, .reusable = false}}, SHIFT(637), - [8114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1017), - [8116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1018), - [8118] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_using_variable_declarator, 3, 0, 5), - [8120] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declarator, 3, 0, 0), - [8122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(422), - [8124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(423), - [8126] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute_argument, 1, 0, 0), - [8128] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6043), - [8130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(354), - [8132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7056), - [8134] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_expression_arm, 4, 0, 0), - [8136] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__anonymous_object_member_declarator, 3, 0, 0), - [8138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(362), - [8140] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute_argument, 3, 0, 0), - [8142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6006), - [8144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5940), - [8146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(363), - [8148] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1056), - [8150] = {.entry = {.count = 1, .reusable = false}}, SHIFT(661), - [8152] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1058), - [8154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1059), - [8156] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1059), - [8158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1060), - [8160] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1061), - [8162] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1062), - [8164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1063), - [8166] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1063), - [8168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1064), - [8170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1056), - [8172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(259), - [8174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1066), - [8176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1067), - [8178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1068), - [8180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1809), - [8182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4028), - [8184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(309), - [8186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1939), - [8188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1962), - [8190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(63), - [8192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4530), - [8194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7426), - [8196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4537), - [8198] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1729), - [8200] = {.entry = {.count = 1, .reusable = false}}, SHIFT(627), - [8202] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1731), - [8204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1732), - [8206] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1732), - [8208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1733), - [8210] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1734), - [8212] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1735), - [8214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1736), - [8216] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1736), - [8218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1737), - [8220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1729), - [8222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(247), - [8224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1739), - [8226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1740), - [8228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1741), - [8230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(411), - [8232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(394), - [8234] = {.entry = {.count = 1, .reusable = false}}, SHIFT(652), - [8236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(232), - [8238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(374), - [8240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1229), - [8242] = {.entry = {.count = 1, .reusable = false}}, SHIFT(960), - [8244] = {.entry = {.count = 1, .reusable = false}}, SHIFT(962), - [8246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(963), - [8248] = {.entry = {.count = 1, .reusable = false}}, SHIFT(963), - [8250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(964), - [8252] = {.entry = {.count = 1, .reusable = false}}, SHIFT(965), - [8254] = {.entry = {.count = 1, .reusable = false}}, SHIFT(966), - [8256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(967), - [8258] = {.entry = {.count = 1, .reusable = false}}, SHIFT(967), - [8260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(968), - [8262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(960), - [8264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(969), - [8266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(970), - [8268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(971), - [8270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3470), - [8272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2027), - [8274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1005), - [8276] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1230), - [8278] = {.entry = {.count = 1, .reusable = false}}, SHIFT(662), - [8280] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1232), - [8282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1233), - [8284] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1233), - [8286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1234), - [8288] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1235), - [8290] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1236), - [8292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1237), - [8294] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1237), - [8296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1238), - [8298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1230), - [8300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(268), - [8302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1239), - [8304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1240), - [8306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1241), - [8308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3950), - [8310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(359), - [8312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3460), - [8314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3466), - [8316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3471), - [8318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2108), - [8320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1411), - [8322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(349), - [8324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2154), - [8326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1165), - [8328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2030), - [8330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(83), - [8332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3711), - [8334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(80), - [8336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5914), - [8338] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6137), - [8340] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7147), - [8342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3093), - [8344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3094), - [8346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3931), - [8348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(67), - [8350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(311), - [8352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2121), - [8354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(82), - [8356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(64), - [8358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2126), - [8360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1509), - [8362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2710), - [8364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2967), - [8366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(86), - [8368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(87), - [8370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7041), - [8372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2053), - [8374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(401), - [8376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7153), - [8378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(830), - [8380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1528), - [8382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(88), - [8384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2980), - [8386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2981), - [8388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(66), - [8390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1048), - [8392] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1293), - [8394] = {.entry = {.count = 1, .reusable = false}}, SHIFT(663), - [8396] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1295), - [8398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1296), - [8400] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1296), - [8402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1297), - [8404] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1298), - [8406] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1299), - [8408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1300), - [8410] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1300), - [8412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1301), - [8414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1293), - [8416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(270), - [8418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1302), - [8420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1303), - [8422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1304), - [8424] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__join_header, 3, 0, 0), - [8426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3952), - [8428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(369), - [8430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(952), - [8432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1550), - [8434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1569), - [8436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1702), - [8438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(68), - [8440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1579), - [8442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1598), - [8444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(440), - [8446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(441), - [8448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5531), - [8450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3717), - [8452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3718), - [8454] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_when_clause, 2, 0, 0), - [8456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1651), - [8458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(408), - [8460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(409), - [8462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1653), - [8464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(89), - [8466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7377), - [8468] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6136), - [8470] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7168), - [8472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1844), - [8474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1829), - [8476] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1338), - [8478] = {.entry = {.count = 1, .reusable = false}}, SHIFT(579), - [8480] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1340), - [8482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1341), - [8484] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1341), - [8486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1342), - [8488] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1343), - [8490] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1344), - [8492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1345), - [8494] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1345), - [8496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1346), - [8498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1338), - [8500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(239), - [8502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1348), - [8504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1349), - [8506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1350), - [8508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(382), - [8510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3326), - [8512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3332), - [8514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3333), - [8516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1547), - [8518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(882), - [8520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(402), - [8522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(884), - [8524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6124), - [8526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2823), - [8528] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__query_body_repeat2, 2, 0, 0), SHIFT_REPEAT(6124), - [8531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7501), - [8533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7412), - [8535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2012), - [8537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(925), - [8539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(983), - [8541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(312), - [8543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(985), - [8545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(765), - [8547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6903), - [8549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2162), - [8551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2163), - [8553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2765), - [8555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(101), - [8557] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arrow_expression_clause, 2, 0, 0), - [8559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(331), - [8561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(780), - [8563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1083), - [8565] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6133), - [8567] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7128), - [8569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1085), - [8571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(809), - [8573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(73), - [8575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1711), - [8577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23), - [8579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1396), - [8581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1167), - [8583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(332), - [8585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1169), - [8587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1294), - [8589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1247), - [8591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(350), - [8593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1248), - [8595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(907), - [8597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2798), - [8599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1309), - [8601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1310), - [8603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1358), - [8605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1359), - [8607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1389), - [8609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(922), - [8611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1397), - [8613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1622), - [8615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1405), - [8617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1412), - [8619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1419), - [8621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1426), - [8623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2657), - [8625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4639), - [8627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2669), - [8629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1638), - [8631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1024), - [8633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1946), - [8635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3986), - [8637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1124), - [8639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1671), - [8641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1205), - [8643] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_attribute, 1, 0, 5), REDUCE(sym_type, 1, 0, 0), - [8646] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_type, 1, 0, 0), SHIFT(581), - [8649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1148), - [8651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(829), - [8653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1007), - [8655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1106), - [8657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(943), - [8659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1187), - [8661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1753), - [8663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1268), - [8665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1762), - [8667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1330), - [8669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1815), - [8671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1796), - [8673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1041), - [8675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3893), - [8677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1380), - [8679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6091), - [8681] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__query_body_repeat2, 2, 0, 0), SHIFT_REPEAT(6091), - [8684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1832), - [8686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1141), - [8688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1222), - [8690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4014), - [8692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1701), - [8694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1285), - [8696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3076), - [8698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6121), - [8700] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__query_body_repeat2, 2, 0, 0), SHIFT_REPEAT(6121), - [8703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4019), - [8705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(79), - [8707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7252), - [8709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2153), - [8711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6071), - [8713] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__query_body_repeat2, 2, 0, 0), SHIFT_REPEAT(6071), - [8716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4025), - [8718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(62), - [8720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4027), - [8722] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_else_in_expression, 2, 0, 0), - [8724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7087), - [8726] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__join_header, 4, 0, 6), - [8728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(95), - [8730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5971), - [8732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2106), - [8734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3271), - [8736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1748), - [8738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1749), - [8740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6108), - [8742] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__query_body_repeat2, 2, 0, 0), SHIFT_REPEAT(6108), - [8745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1859), - [8747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4598), - [8749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1868), - [8751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(99), - [8753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(100), - [8755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(105), - [8757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3047), - [8759] = {.entry = {.count = 1, .reusable = false}}, SHIFT(944), - [8761] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 2, 0, 8), - [8763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5944), - [8765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5963), - [8767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5935), - [8769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7515), - [8771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7512), - [8773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5196), - [8775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6025), - [8777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5972), - [8779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5998), - [8781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5953), - [8783] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__simple_name, 1, 0, 0), SHIFT(2875), - [8786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5932), - [8788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(944), - [8790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2043), - [8792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(873), - [8794] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_parameter, 1, 0, 5), SHIFT(5918), - [8797] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_parameter, 1, 0, 5), SHIFT(6382), - [8800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6013), - [8802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7495), - [8804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7198), - [8806] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 1, 0, 5), - [8808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7385), - [8810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6039), - [8812] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_else_in_enum_member_declaration, 1, 0, 0), - [8814] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6052), - [8816] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6085), - [8818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5999), - [8820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4012), - [8822] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5754), - [8824] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_explicit_interface_specifier, 2, 0, 0), SHIFT(2175), - [8827] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_explicit_interface_specifier, 2, 0, 0), SHIFT(2174), - [8830] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_explicit_interface_specifier, 2, 0, 0), - [8832] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_explicit_interface_specifier, 2, 0, 0), - [8834] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6017), - [8836] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_explicit_interface_specifier, 2, 0, 0), SHIFT(3691), - [8839] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_explicit_interface_specifier, 2, 0, 0), SHIFT(3666), - [8842] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6035), - [8844] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__simple_name, 1, 0, 0), SHIFT(5918), - [8847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6382), - [8849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5964), - [8851] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6037), - [8853] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6096), - [8855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3925), - [8857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5828), - [8859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3547), - [8861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3642), - [8863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2006), - [8865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2077), - [8867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3523), - [8869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2879), - [8871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3646), - [8873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4638), - [8875] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 1, 0, 5), - [8877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2086), - [8879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4633), - [8881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2874), - [8883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2878), - [8885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3546), - [8887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1993), - [8889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3584), - [8891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5808), - [8893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5851), - [8895] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__parameter_type_with_modifiers_repeat1, 2, 0, 0), - [8897] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__parameter_type_with_modifiers_repeat1, 2, 0, 0), - [8899] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parameter_type_with_modifiers_repeat1, 2, 0, 0), SHIFT_REPEAT(5790), - [8902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4757), - [8904] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__class_declaration_initializer_repeat1, 2, 0, 0), SHIFT_REPEAT(4820), - [8907] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__class_declaration_initializer_repeat1, 2, 0, 0), SHIFT_REPEAT(5254), - [8910] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1551), - [8912] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1655), - [8914] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_element, 1, 0, 6), - [8916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2875), - [8918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1355), - [8920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1074), - [8922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5988), - [8924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2857), - [8926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1019), - [8928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1118), - [8930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1199), - [8932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4138), - [8934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1802), - [8936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1404), - [8938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(222), - [8940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1775), - [8942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1100), - [8944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1164), - [8946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1307), - [8948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3299), - [8950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6005), - [8952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1843), - [8954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(987), - [8956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4508), - [8958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(919), - [8960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1804), - [8962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3788), - [8964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(886), - [8966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(831), - [8968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1245), - [8970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1527), - [8972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3490), - [8974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1745), - [8976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1594), - [8978] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__lambda_expression_init_repeat1, 2, 0, 0), - [8980] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__lambda_expression_init_repeat1, 2, 0, 0), SHIFT_REPEAT(5902), - [8983] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__lambda_expression_init_repeat1, 2, 0, 0), - [8985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(868), - [8987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(903), - [8989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(976), - [8991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5960), - [8993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5994), - [8995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5962), - [8997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5993), - [8999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5926), - [9001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2078), - [9003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5976), - [9005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6034), - [9007] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_conversion_operator_declaration_repeat1, 1, 0, 0), - [9009] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_conversion_operator_declaration_repeat1, 1, 0, 0), - [9011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5943), - [9013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5969), - [9015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6009), - [9017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5954), - [9019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5974), - [9021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6047), - [9023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6033), - [9025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5933), - [9027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5942), - [9029] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7132), - [9031] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_function_pointer_type_repeat1, 2, 0, 0), - [9033] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_function_pointer_type_repeat1, 2, 0, 0), - [9035] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__lambda_expression_init_repeat1, 1, 0, 1), - [9037] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__lambda_expression_init_repeat1, 1, 0, 1), - [9039] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6784), - [9041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5983), - [9043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6053), - [9045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6012), - [9047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1997), - [9049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6016), - [9051] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7188), - [9053] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2241), - [9055] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2245), - [9057] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2849), - [9059] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2757), - [9061] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2645), - [9063] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2644), - [9065] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6101), - [9067] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6073), - [9069] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6134), - [9071] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7157), - [9073] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2254), - [9075] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2253), - [9077] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6129), - [9079] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6132), - [9081] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7277), - [9083] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5567), - [9085] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5565), - [9087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4608), - [9089] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2643), - [9091] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2601), - [9093] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6935), - [9095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7780), - [9097] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7163), - [9099] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7071), - [9101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6708), - [9103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7184), - [9105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6806), - [9107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7578), - [9109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7681), - [9111] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7588), - [9113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7655), - [9115] = {.entry = {.count = 1, .reusable = false}}, SHIFT_EXTRA(), - [9117] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6135), - [9119] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7063), - [9121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3348), - [9123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3728), - [9125] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_using_directive_repeat1, 1, 0, 0), SHIFT(2175), - [9128] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_using_directive_repeat1, 1, 0, 0), SHIFT(2174), - [9131] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_using_directive_repeat1, 1, 0, 0), - [9133] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3189), - [9135] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3186), - [9137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3502), - [9139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3068), - [9141] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2453), - [9143] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2449), - [9145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3010), - [9147] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_enum_member_declaration, 4, 0, 57), - [9149] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_using_directive_repeat1, 2, 0, 0), - [9151] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_using_directive_repeat1, 2, 0, 0), SHIFT_REPEAT(6085), - [9154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7124), - [9156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6943), - [9158] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7064), - [9160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6142), - [9162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7064), - [9164] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7082), - [9166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6139), - [9168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7082), - [9170] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7244), - [9172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6141), - [9174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7244), - [9176] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7248), - [9178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6143), - [9180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7248), - [9182] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7098), - [9184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6138), - [9186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7098), - [9188] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7272), - [9190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6144), - [9192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7272), - [9194] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attribute_target_specifier, 2, 0, 0), - [9196] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7185), - [9198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7185), - [9200] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7133), - [9202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7133), - [9204] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7288), - [9206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7288), - [9208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1806), - [9210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3936), - [9212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3757), - [9214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6114), - [9216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(814), - [9218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1846), - [9220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1571), - [9222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1870), - [9224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1243), - [9226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1866), - [9228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1163), - [9230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1897), - [9232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1743), - [9234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1880), - [9236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1808), - [9238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1858), - [9240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(974), - [9242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1860), - [9244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1864), - [9246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1879), - [9248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1395), - [9250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1875), - [9252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1387), - [9254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1837), - [9256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1752), - [9258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1873), - [9260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1306), - [9262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1742), - [9264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1795), - [9266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1885), - [9268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1424), - [9270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1882), - [9272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1403), - [9274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1884), - [9276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1417), - [9278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1883), - [9280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1410), - [9282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1853), - [9284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(865), - [9286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1483), - [9288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1628), - [9290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1874), - [9292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1353), - [9294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1862), - [9296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1071), - [9298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1877), - [9300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1831), - [9302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1881), - [9304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1618), - [9306] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declarator, 1, 0, 5), - [9308] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1694), - [9310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2897), - [9312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2998), - [9314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1265), - [9316] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__query_body_repeat1, 2, 0, 0), SHIFT_REPEAT(1806), - [9319] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__query_body_repeat1, 2, 0, 0), SHIFT_REPEAT(3936), - [9322] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__query_body_repeat1, 2, 0, 0), SHIFT_REPEAT(3757), - [9325] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__query_body_repeat1, 2, 0, 0), SHIFT_REPEAT(6114), - [9328] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__query_body_repeat1, 2, 0, 0), SHIFT_REPEAT(814), - [9331] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__query_body_repeat1, 2, 0, 0), - [9333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3941), - [9335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1918), - [9337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5722), - [9339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6102), - [9341] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__record_declaration_initializer, 5, 0, 65), - [9343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5784), - [9345] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__record_declaration_initializer, 5, 0, 88), - [9347] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__record_declaration_initializer, 4, 0, 65), - [9349] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__simple_name, 1, 0, 0), SHIFT(3608), - [9352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6029), - [9354] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__record_declaration_initializer, 6, 0, 88), - [9356] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__record_declaration_initializer, 3, 0, 25), - [9358] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__record_declaration_initializer, 2, 0, 8), - [9360] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__record_declaration_initializer, 4, 0, 25), - [9362] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__record_declaration_initializer, 3, 0, 8), - [9364] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_variable_declarator, 1, 0, 5), SHIFT(2750), - [9367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1694), - [9369] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_variable_declarator, 1, 0, 5), SHIFT(2733), - [9372] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__struct_declaration_initializer, 4, 0, 65), - [9374] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__struct_declaration_initializer, 6, 0, 88), - [9376] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_variable_declarator, 1, 0, 5), SHIFT(2845), - [9379] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_type_parameter_constraint, 1, 0, 0), REDUCE(sym__reserved_identifier, 1, 0, 0), - [9382] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__struct_declaration_initializer, 5, 0, 88), - [9384] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__struct_declaration_initializer, 3, 0, 25), - [9386] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__struct_declaration_initializer, 3, 0, 8), - [9388] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__struct_declaration_initializer, 4, 0, 25), - [9390] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__struct_declaration_initializer, 2, 0, 8), - [9392] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__struct_declaration_initializer, 5, 0, 65), - [9394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5970), - [9396] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_join_clause, 3, 0, 63), - [9398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6115), - [9400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2577), - [9402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(46), - [9404] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_order_by_clause_repeat1, 2, 0, 0), SHIFT_REPEAT(739), - [9407] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_order_by_clause_repeat1, 2, 0, 0), - [9409] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__record_declaration_initializer_repeat1, 2, 0, 0), - [9411] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__record_declaration_initializer_repeat1, 2, 0, 0), SHIFT_REPEAT(2875), - [9414] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__record_declaration_initializer_repeat1, 2, 0, 0), SHIFT_REPEAT(5722), - [9417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1976), - [9419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(739), - [9421] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_order_by_clause, 3, 0, 0), - [9423] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_order_by_clause, 2, 0, 0), - [9425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2033), - [9427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2103), - [9429] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__simple_name, 1, 0, 0), SHIFT(3573), - [9432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5927), - [9434] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__class_declaration_initializer_repeat3, 2, 0, 0), SHIFT_REPEAT(3941), - [9437] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__class_declaration_initializer_repeat3, 2, 0, 0), SHIFT_REPEAT(2875), - [9440] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__class_declaration_initializer_repeat3, 2, 0, 0), - [9442] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__class_declaration_initializer_repeat3, 2, 0, 0), SHIFT_REPEAT(5722), - [9445] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_type_parameter, 1, 0, 5), REDUCE(sym__simple_name, 1, 0, 0), - [9448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3947), - [9450] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__interface_declaration_initializer, 2, 0, 8), - [9452] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_base, 2, 0, 0), - [9454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5846), - [9456] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__ordering, 2, 0, 0), - [9458] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__interface_declaration_initializer, 3, 0, 25), - [9460] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_base_list, 2, 0, 0), - [9462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3906), - [9464] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_base_list, 2, 0, 0), SHIFT(542), - [9467] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__interface_declaration_initializer, 4, 0, 65), - [9469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6643), - [9471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3435), - [9473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1895), - [9475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4059), - [9477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7637), - [9479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4612), - [9481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3582), - [9483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5432), - [9485] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_list, 3, 0, 0), - [9487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3007), - [9489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3266), - [9491] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_base_list_repeat1, 2, 0, 0), - [9493] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_base_list_repeat1, 2, 0, 0), SHIFT_REPEAT(542), - [9496] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_base_list, 4, 0, 0), - [9498] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_list, 3, 0, 23), - [9500] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_base_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3906), - [9503] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__query_clause, 1, 0, 0), - [9505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5981), - [9507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6344), - [9509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7257), - [9511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3889), - [9513] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_interpolated_string_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(6643), - [9516] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_interpolated_string_expression_repeat1, 2, 0, 0), - [9518] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_interpolated_string_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(1895), - [9521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3305), - [9523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3373), - [9525] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__query_body_repeat1, 1, 0, 0), - [9527] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_list, 4, 0, 50), - [9529] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_list, 4, 0, 52), - [9531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6050), - [9533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3003), - [9535] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_join_clause, 4, 0, 63), - [9537] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_base_list, 3, 0, 0), - [9539] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_join_into_clause, 2, 0, 0), - [9541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3039), - [9543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3704), - [9545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3545), - [9547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4815), - [9549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4816), - [9551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6761), - [9553] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_string_literal_repeat1, 2, 0, 0), - [9555] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_literal_repeat1, 2, 0, 0), SHIFT_REPEAT(6704), - [9558] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_literal_repeat1, 2, 0, 0), SHIFT_REPEAT(6722), - [9561] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_literal_repeat1, 2, 0, 0), SHIFT_REPEAT(6726), - [9564] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_pattern, 3, 0, 8), - [9566] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3667), - [9568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6704), - [9570] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6722), - [9572] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6726), - [9574] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_base, 4, 0, 0), - [9576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6928), - [9578] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4355), - [9580] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_catch_clause_repeat1, 2, 0, 0), SHIFT_REPEAT(4059), - [9583] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_catch_clause_repeat1, 2, 0, 0), - [9585] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_catch_clause_repeat1, 2, 0, 0), SHIFT_REPEAT(7637), - [9588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3426), - [9590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(40), - [9592] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2941), - [9594] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3198), - [9596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3380), - [9598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3890), - [9600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3951), - [9602] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__interface_declaration_initializer, 4, 0, 66), - [9604] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_interpolated_string_expression_repeat2, 2, 0, 0), - [9606] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_interpolated_string_expression_repeat2, 2, 0, 0), SHIFT_REPEAT(1895), - [9609] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_interpolated_string_expression_repeat2, 2, 0, 0), SHIFT_REPEAT(6928), - [9612] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3179), - [9614] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_interpolated_string_expression_repeat3, 2, 0, 0), - [9616] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_interpolated_string_expression_repeat3, 2, 0, 0), SHIFT_REPEAT(1895), - [9619] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_interpolated_string_expression_repeat3, 2, 0, 0), SHIFT_REPEAT(6761), - [9622] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_pattern, 4, 0, 80), - [9624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3311), - [9626] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__interface_declaration_initializer, 3, 0, 27), - [9628] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3220), - [9630] = {.entry = {.count = 1, .reusable = false}}, SHIFT(942), - [9632] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_base_list_repeat1, 3, 0, 0), - [9634] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4350), - [9636] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_try_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(6344), - [9639] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__interface_declaration_initializer, 5, 0, 89), - [9641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4013), - [9643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3985), - [9645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3267), - [9647] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter_constraints_clause, 5, 0, 0), - [9649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3475), - [9651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3433), - [9653] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__ref_base_type, 1, 0, 0), - [9655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6668), - [9657] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_pattern, 4, 0, 82), - [9659] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter_list, 3, 0, 0), - [9661] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_pattern, 3, 0, 0), - [9663] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_parameter_constraints_clause_repeat1, 2, 0, 0), - [9665] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_parameter_constraints_clause_repeat1, 2, 0, 0), SHIFT_REPEAT(3475), - [9668] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 2, 0, 22), - [9670] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter_constraint, 1, 0, 0), - [9672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6468), - [9674] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7193), - [9676] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter_constraints_clause, 4, 0, 0), - [9678] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__record_declaration_initializer_repeat1, 1, 0, 0), - [9680] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3203), - [9682] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__class_declaration_initializer_repeat4, 2, 0, 0), - [9684] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__class_declaration_initializer_repeat4, 2, 0, 0), SHIFT_REPEAT(6102), - [9687] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3660), - [9689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4049), - [9691] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter_list, 4, 0, 0), - [9693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3040), - [9695] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2928), - [9697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4613), - [9699] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7232), - [9701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3705), - [9703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3984), - [9705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3015), - [9707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(300), - [9709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3786), - [9711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(315), - [9713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(316), - [9715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(61), - [9717] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter_constraint, 2, 0, 0), - [9719] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5314), - [9721] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5230), - [9723] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5242), - [9725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(514), - [9727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6556), - [9729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5131), - [9731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5173), - [9733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5149), - [9735] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_unary_expression, 2, 0, 33), - [9737] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_unary_expression, 2, 0, 33), - [9739] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_switch_body_repeat1, 2, 0, 0), - [9741] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_switch_body_repeat1, 2, 0, 0), SHIFT_REPEAT(366), - [9744] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_switch_body_repeat1, 2, 0, 0), SHIFT_REPEAT(7648), - [9747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(287), - [9749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4133), - [9751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2133), - [9753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(366), - [9755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7648), - [9757] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__record_declaration_initializer, 8, 0, 88), - [9759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5130), - [9761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(293), - [9763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3361), - [9765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7090), - [9767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5), - [9769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1812), - [9771] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declarator, 1, 0, 0), - [9773] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__record_declaration_initializer, 6, 0, 65), - [9775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(53), - [9777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1830), - [9779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(513), - [9781] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__record_declaration_initializer, 5, 0, 25), - [9783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3), - [9785] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_enum_member_declaration, 4, 0, 57), - [9787] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_base, 3, 0, 0), - [9789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(521), - [9791] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__record_declaration_initializer, 5, 0, 8), - [9793] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__class_declaration_initializer_repeat3, 1, 0, 0), - [9795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2), - [9797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1959), - [9799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(517), - [9801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6343), - [9803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(518), - [9805] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constructor_constraint, 3, 0, 0), - [9807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(58), - [9809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5745), - [9811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(581), - [9813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1908), - [9815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1690), - [9817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6369), - [9819] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__record_declaration_initializer, 6, 0, 25), - [9821] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_record_base_repeat1, 2, 0, 0), - [9823] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_base_repeat1, 2, 0, 0), SHIFT_REPEAT(5846), - [9826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6569), - [9828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4061), - [9830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(50), - [9832] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__constructor_declaration_initializer, 2, 0, 59), - [9834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7059), - [9836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2042), - [9838] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_binary_expression, 3, 0, 40), - [9840] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__record_declaration_initializer, 7, 0, 65), - [9842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7074), - [9844] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__record_declaration_initializer, 7, 0, 88), - [9846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6), - [9848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(48), - [9850] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__preproc_expression, 1, 0, 0), - [9852] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__preproc_expression, 1, 0, 0), - [9854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(515), - [9856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4750), - [9858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4), - [9860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6341), - [9862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1932), - [9864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6347), - [9866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(537), - [9868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9), - [9870] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__constructor_declaration_initializer, 3, 0, 79), - [9872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(295), - [9874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3357), - [9876] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_parenthesized_expression, 3, 0, 0), - [9878] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_parenthesized_expression, 3, 0, 0), - [9880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3549), - [9882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(519), - [9884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2028), - [9886] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_base, 5, 0, 0), - [9888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(522), - [9890] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter_constraint, 1, 0, 6), - [9892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1909), - [9894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(512), - [9896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4547), - [9898] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__record_declaration_initializer, 4, 0, 8), - [9900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7), - [9902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(520), - [9904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6368), - [9906] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__constructor_declaration_initializer, 4, 0, 105), - [9908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6686), - [9910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(298), - [9912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4505), - [9914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2122), - [9916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7060), - [9918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1719), - [9920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1720), - [9922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(419), - [9924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(420), - [9926] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_binary_expression, 3, 0, 40), - [9928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1907), - [9930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8), - [9932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(516), - [9934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1872), - [9936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(305), - [9938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(306), - [9940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6378), - [9942] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__struct_declaration_initializer, 7, 0, 88), - [9944] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__struct_declaration_initializer, 6, 0, 65), - [9946] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__struct_declaration_initializer, 4, 0, 8), - [9948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4037), - [9950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5686), - [9952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5845), - [9954] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__interface_declaration_initializer, 7, 0, 89), - [9956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(398), - [9958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(399), - [9960] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__interface_declaration_initializer, 4, 0, 25), - [9962] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__local_function_declaration, 5, 0, 72), - [9964] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__interface_declaration_initializer, 6, 0, 66), - [9966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2081), - [9968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3416), - [9970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7228), - [9972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7565), - [9974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1990), - [9976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(942), - [9978] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__interface_declaration_initializer, 4, 0, 8), - [9980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1999), - [9982] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1672), - [9984] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_using_variable_declarator, 1, 0, 5), REDUCE(sym_tuple_element, 2, 0, 22), - [9987] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_using_variable_declarator, 1, 0, 5), - [9989] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__interface_declaration_initializer, 3, 0, 8), - [9991] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_interpolated_string_expression_repeat1, 1, 0, 0), - [9993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1839), - [9995] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 4, 0, 69), - [9997] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__class_declaration_initializer_repeat4, 1, 0, 0), - [9999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1869), - [10001] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_member_declaration, 1, 0, 5), - [10003] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__interpolated_string_content, 1, 0, 0), - [10005] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__interface_declaration_initializer, 5, 0, 65), - [10007] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__interface_declaration_initializer, 6, 0, 89), - [10009] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subpattern, 1, 0, 0), - [10011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3358), - [10013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3476), - [10015] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interpolation, 3, 0, 0), - [10017] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1689), - [10019] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 3, 0, 49), - [10021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1886), - [10023] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_member_declaration, 2, 0, 8), - [10025] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__local_function_declaration, 5, 0, 86), - [10027] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_bracketed_parameter_list_repeat1, 2, 0, 51), SHIFT_REPEAT(2906), - [10030] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_bracketed_parameter_list_repeat1, 2, 0, 51), - [10032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3372), - [10034] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_base_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3951), - [10037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2082), - [10039] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__for_statement_conditions_repeat1, 2, 0, 0), SHIFT_REPEAT(1850), - [10042] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__local_function_declaration, 4, 0, 55), - [10044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3501), - [10046] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__interface_declaration_initializer, 6, 0, 65), - [10048] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subpattern, 3, 0, 0), - [10050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3387), - [10052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2070), - [10054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3787), - [10056] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_argument_list_repeat1, 2, 0, 0), SHIFT_REPEAT(7029), - [10059] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_argument_list_repeat1, 2, 0, 0), - [10061] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__struct_declaration_initializer, 5, 0, 25), - [10063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3398), - [10065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3403), - [10067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3409), - [10069] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__local_function_declaration, 4, 0, 60), - [10071] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration_expression, 2, 1, 22), - [10073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2760), - [10075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3444), - [10077] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interpolation, 4, 0, 0), - [10079] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__interface_declaration_initializer, 5, 0, 66), - [10081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4135), - [10083] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string_literal_content, 1, 0, 0), - [10085] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string_literal_content, 1, 0, 0), - [10087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2678), - [10089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4506), - [10091] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__interface_declaration_initializer, 4, 0, 27), - [10093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7292), - [10095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7364), - [10097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6913), - [10099] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__interface_declaration_initializer, 5, 0, 27), - [10101] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__interface_declaration_initializer, 5, 0, 25), - [10103] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_parameter, 2, 0, 22), REDUCE(sym_tuple_element, 2, 0, 22), REDUCE(sym_declaration_expression, 2, 1, 22), - [10107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1998), - [10109] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__local_function_declaration, 3, 0, 38), - [10111] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__local_function_declaration, 6, 0, 108), - [10113] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interpolation, 5, 0, 0), - [10115] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_primary_constructor_base_type, 2, 0, 6), - [10117] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_string_literal_repeat1, 1, 0, 0), - [10119] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_string_literal_repeat1, 1, 0, 0), - [10121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1689), - [10123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5782), - [10125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(543), - [10127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2893), - [10129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5767), - [10131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7496), - [10133] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_array_rank_specifier_repeat1, 2, 0, 0), SHIFT_REPEAT(591), - [10136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(276), - [10138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2853), - [10140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1841), - [10142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(267), - [10144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2430), - [10146] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__constructor_declaration_initializer, 4, 0, 79), - [10148] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__constructor_declaration_initializer, 5, 0, 105), - [10150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(544), - [10152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2455), - [10154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5895), - [10156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4516), - [10158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(648), - [10160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(555), - [10162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2959), - [10164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(664), - [10166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(547), - [10168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7610), - [10170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3814), - [10172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2667), - [10174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6058), - [10176] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_using_variable_declaration, 3, 0, 6), - [10178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7180), - [10180] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_parenthesized_variable_designation_repeat1, 2, 0, 81), SHIFT_REPEAT(5895), - [10183] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_parenthesized_variable_designation_repeat1, 2, 0, 81), - [10185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(536), - [10187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2614), - [10189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6059), - [10191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3743), - [10193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3988), - [10195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2697), - [10197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7218), - [10199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5780), - [10201] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__interpolated_raw_string_content, 1, 0, 0), - [10203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2932), - [10205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7096), - [10207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2673), - [10209] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__constructor_declaration_initializer, 3, 0, 59), - [10211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2918), - [10213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4361), - [10215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1039), - [10217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(598), - [10219] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6063), - [10221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7779), - [10223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5762), - [10225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2149), - [10227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2953), - [10229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2155), - [10231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(278), - [10233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4592), - [10235] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_interpolated_string_expression_repeat3, 1, 0, 0), - [10237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(533), - [10239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4617), - [10241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2898), - [10243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7269), - [10245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2729), - [10247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5894), - [10249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7398), - [10251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4118), - [10253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2415), - [10255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5772), - [10257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1854), - [10259] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declarator, 2, 0, 0), - [10261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5924), - [10263] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declaration, 3, 0, 6), - [10265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1856), - [10267] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declarator, 2, 0, 5), - [10269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(280), - [10271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(297), - [10273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3309), - [10275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7276), - [10277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4657), - [10279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5770), - [10281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(690), - [10283] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_pattern_repeat1, 2, 0, 81), SHIFT_REPEAT(5918), - [10286] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_tuple_pattern_repeat1, 2, 0, 81), - [10288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7083), - [10290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3338), - [10292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3663), - [10294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(588), - [10296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3065), - [10298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6953), - [10300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(783), - [10302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(253), - [10304] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_anonymous_object_creation_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(808), - [10307] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_anonymous_object_creation_expression_repeat1, 2, 0, 0), - [10309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5918), - [10311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6435), - [10313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6431), - [10315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(301), - [10317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2906), - [10319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6366), - [10321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(286), - [10323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2414), - [10325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5777), - [10327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6367), - [10329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2628), - [10331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(252), - [10333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3480), - [10335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1324), - [10337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4220), - [10339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5917), - [10341] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__for_statement_conditions_repeat1, 2, 0, 0), SHIFT_REPEAT(1003), - [10344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7216), - [10346] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_parameter, 2, 0, 22), REDUCE(sym_tuple_element, 2, 0, 22), - [10349] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_variable_declaration_repeat1, 2, 0, 0), SHIFT_REPEAT(5924), - [10352] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_variable_declaration_repeat1, 2, 0, 0), - [10354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1386), - [10356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7261), - [10358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(541), - [10360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3154), - [10362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(277), - [10364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3287), - [10366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2846), - [10368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(290), - [10370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2702), - [10372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4424), - [10374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3166), - [10376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7073), - [10378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(678), - [10380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(279), - [10382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7138), - [10384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(608), - [10386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3322), - [10388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4426), - [10390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4131), - [10392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2997), - [10394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3110), - [10396] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_positional_pattern_clause_repeat1, 2, 0, 0), SHIFT_REPEAT(285), - [10399] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_positional_pattern_clause_repeat1, 2, 0, 0), - [10401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5778), - [10403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4091), - [10405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3105), - [10407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3651), - [10409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(589), - [10411] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_argument_list_repeat2, 2, 0, 0), SHIFT_REPEAT(3988), - [10414] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_argument_list_repeat2, 2, 0, 0), - [10416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(812), - [10418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2148), - [10420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6697), - [10422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3752), - [10424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2411), - [10426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5764), - [10428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2001), - [10430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(274), - [10432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2970), - [10434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(600), - [10436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3074), - [10438] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_pragma_repeat1, 2, 0, 0), SHIFT_REPEAT(6063), - [10441] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_preproc_pragma_repeat1, 2, 0, 0), - [10443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2988), - [10445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2401), - [10447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3002), - [10449] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_calling_convention_repeat1, 2, 0, 0), SHIFT_REPEAT(5894), - [10452] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_calling_convention_repeat1, 2, 0, 0), - [10454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(772), - [10456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7152), - [10458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1692), - [10460] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_switch_body_repeat1, 1, 0, 0), - [10462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3254), - [10464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2147), - [10466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(539), - [10468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2152), - [10470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3256), - [10472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(283), - [10474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1672), - [10476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(609), - [10478] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_using_variable_declaration_repeat1, 2, 0, 0), SHIFT_REPEAT(6058), - [10481] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_using_variable_declaration_repeat1, 2, 0, 0), - [10483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7278), - [10485] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__switch_expression_body_repeat1, 2, 0, 0), SHIFT_REPEAT(288), - [10488] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__switch_expression_body_repeat1, 2, 0, 0), - [10490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(284), - [10492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3795), - [10494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7148), - [10496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6440), - [10498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3297), - [10500] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declaration, 2, 0, 6), - [10502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(289), - [10504] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_catch_filter_clause, 4, 0, 0), - [10506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(261), - [10508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3233), - [10510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3033), - [10512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3235), - [10514] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attribute_argument_list_repeat1, 2, 0, 0), SHIFT_REPEAT(772), - [10517] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_attribute_argument_list_repeat1, 2, 0, 0), - [10519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2402), - [10521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5766), - [10523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3538), - [10525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(262), - [10527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2418), - [10529] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_parameter_list_repeat1, 2, 0, 0), SHIFT_REPEAT(5716), - [10532] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_parameter_list_repeat1, 2, 0, 0), - [10534] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6440), - [10536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7792), - [10538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(538), - [10540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2827), - [10542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2180), - [10544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3242), - [10546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3798), - [10548] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_member_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(5753), - [10551] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_enum_member_declaration_list_repeat1, 2, 0, 0), - [10553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5779), - [10555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5814), - [10557] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_base_list_repeat1, 2, 0, 0), SHIFT_REPEAT(4061), - [10560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(535), - [10562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3210), - [10564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7642), - [10566] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameter_array, 4, 0, 69), - [10568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3448), - [10570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4519), - [10572] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__interpolated_verbatim_string_content, 1, 0, 0), - [10574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2157), - [10576] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_argument_list_repeat1, 2, 0, 0), SHIFT_REPEAT(555), - [10579] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_argument_list_repeat1, 2, 0, 0), - [10581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5769), - [10583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3560), - [10585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(540), - [10587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2445), - [10589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2177), - [10591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7203), - [10593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7776), - [10595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7205), - [10597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2454), - [10599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2435), - [10601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(272), - [10603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3086), - [10605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3211), - [10607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(779), - [10609] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_catch_declaration, 3, 0, 7), - [10611] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(337), - [10614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3028), - [10616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2919), - [10618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6345), - [10620] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_using_variable_declaration, 2, 0, 6), - [10622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3013), - [10624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5765), - [10626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2062), - [10628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7791), - [10630] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7433), - [10632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4175), - [10634] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_global_attribute_repeat1, 2, 0, 0), SHIFT_REPEAT(5796), - [10637] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_global_attribute_repeat1, 2, 0, 0), - [10639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5774), - [10641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5776), - [10643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(532), - [10645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2605), - [10647] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_argument_list_repeat1, 2, 0, 0), SHIFT_REPEAT(559), - [10650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7125), - [10652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(275), - [10654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3742), - [10656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4366), - [10658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(815), - [10660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3171), - [10662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(603), - [10664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3456), - [10666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(659), - [10668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3709), - [10670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5716), - [10672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6454), - [10674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5731), - [10676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7606), - [10678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2829), - [10680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7631), - [10682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3215), - [10684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6434), - [10686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3159), - [10688] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameter_array, 3, 0, 49), - [10690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3180), - [10692] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_positional_pattern_clause_repeat1, 2, 0, 0), SHIFT_REPEAT(286), - [10695] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_bracketed_parameter_list_repeat1, 2, 0, 0), - [10697] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_bracketed_parameter_list_repeat1, 2, 0, 23), - [10699] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_variable_declaration_repeat1, 2, 0, 0), SHIFT_REPEAT(5917), - [10702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5775), - [10704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2876), - [10706] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constructor_initializer, 3, 0, 0), - [10708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2714), - [10710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2725), - [10712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3447), - [10714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2726), - [10716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6351), - [10718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7289), - [10720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7177), - [10722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2273), - [10724] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_tuple_element, 2, 0, 22), REDUCE(sym_declaration_expression, 2, 1, 22), - [10727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5761), - [10729] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_type_repeat1, 2, 0, 0), SHIFT_REPEAT(3814), - [10732] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_tuple_type_repeat1, 2, 0, 0), - [10734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3196), - [10736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3201), - [10738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3223), - [10740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(604), - [10742] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_catch_clause_repeat1, 1, 0, 0), - [10744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5760), - [10746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4368), - [10748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6403), - [10750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(546), - [10752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3190), - [10754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(254), - [10756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3515), - [10758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4330), - [10760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2640), - [10762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2950), - [10764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2641), - [10766] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__with_body_repeat1, 2, 0, 0), SHIFT_REPEAT(6059), - [10769] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__with_body_repeat1, 2, 0, 0), - [10771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(764), - [10773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4396), - [10775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3417), - [10777] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_argument_list_repeat1, 1, 0, 0), - [10779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2274), - [10781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(597), - [10783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4582), - [10785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5726), - [10787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7207), - [10789] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_interpolated_string_expression_repeat2, 1, 0, 0), - [10791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(255), - [10793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5773), - [10795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4831), - [10797] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_catch_declaration, 4, 0, 49), - [10799] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7480), - [10801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(590), - [10803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(251), - [10805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(553), - [10807] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__delegate_declaration_initializer, 7, 0, 140), - [10809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2803), - [10811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6588), - [10813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7281), - [10815] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7368), - [10817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2896), - [10819] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7611), - [10821] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7781), - [10823] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7774), - [10825] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_enum_member_declaration, 5, 0, 57), - [10827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2005), - [10829] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__delegate_declaration_initializer, 6, 0, 110), - [10831] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_enum_member_declaration, 6, 0, 98), - [10833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6589), - [10835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(574), - [10837] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 2, 0, 5), - [10839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(577), - [10841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(90), - [10843] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__delegate_declaration_initializer, 5, 0, 86), - [10845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2675), - [10847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6507), - [10849] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__delegate_declaration_initializer, 6, 0, 108), - [10851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(564), - [10853] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_preproc_pragma_repeat1, 2, 0, 0), - [10855] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute_argument_list, 3, 0, 0), - [10857] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_enum_member_declaration, 5, 0, 77), - [10859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6040), - [10861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1530), - [10863] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute_argument_list, 4, 0, 0), - [10865] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_element, 2, 0, 22), - [10867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(569), - [10869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1706), - [10871] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter, 3, 0, 25), - [10873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(566), - [10875] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7789), - [10877] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7602), - [10879] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__delegate_declaration_initializer, 5, 0, 72), - [10881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(550), - [10883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(233), - [10885] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_bracketed_parameter_list, 3, 0, 23), - [10887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(240), - [10889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6024), - [10891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7199), - [10893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7202), - [10895] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_tuple_pattern_repeat1, 2, 0, 0), - [10897] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_tuple_pattern_repeat1, 2, 0, 8), - [10899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7716), - [10901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2060), - [10903] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter, 2, 0, 8), - [10905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(549), - [10907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6002), - [10909] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_bracketed_parameter_list, 4, 0, 50), - [10911] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_bracketed_parameter_list, 4, 0, 52), - [10913] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7569), - [10915] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute_argument_list, 2, 0, 0), - [10917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(234), - [10919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(230), - [10921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(226), - [10923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1863), - [10925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6026), - [10927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6562), - [10929] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_parenthesized_variable_designation_repeat1, 2, 0, 61), - [10931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5903), - [10933] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_calling_convention, 1, 0, 0), - [10935] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter, 1, 0, 5), - [10937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7566), - [10939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5980), - [10941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6015), - [10943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6014), - [10945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2057), - [10947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2758), - [10949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(570), - [10951] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_bracketed_parameter_list, 2, 0, 0), - [10953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1992), - [10955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(572), - [10957] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__delegate_declaration_initializer, 4, 0, 55), - [10959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(563), - [10961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(556), - [10963] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7409), - [10965] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7729), - [10967] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_bracketed_parameter_list, 3, 0, 0), - [10969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6041), - [10971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7743), - [10973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3749), - [10975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6513), - [10977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7736), - [10979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6898), - [10981] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_enum_member_declaration, 5, 0, 98), - [10983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2002), - [10985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1475), - [10987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1476), - [10989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1478), - [10991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2705), - [10993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3982), - [10995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3983), - [10997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1479), - [10999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1480), - [11001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4611), - [11003] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__lambda_parameters, 1, 0, 0), - [11005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5793), - [11007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1562), - [11009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1474), - [11011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(740), - [11013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3232), - [11015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2318), - [11017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2851), - [11019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(731), - [11021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7783), - [11023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7788), - [11025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(691), - [11027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1617), - [11029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1805), - [11031] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__class_declaration_initializer, 3, 0, 24), - [11033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1984), - [11035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5625), - [11037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3750), - [11039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6615), - [11041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2684), - [11043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4389), - [11045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(669), - [11047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4397), - [11049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1980), - [11051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(724), - [11053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2116), - [11055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1937), - [11057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(743), - [11059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3650), - [11061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3423), - [11063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2021), - [11065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3226), - [11067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2018), - [11069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1991), - [11071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2000), - [11073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4652), - [11075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2974), - [11077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3987), - [11079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2737), - [11081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3298), - [11083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3238), - [11085] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_top_level, 4, 0, 77), - [11087] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_expression, 4, 0, 77), - [11089] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_attribute_list, 4, 0, 77), - [11091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3239), - [11093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5549), - [11095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(675), - [11097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2031), - [11099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6678), - [11101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5797), - [11103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7095), - [11105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3414), - [11107] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__class_declaration_initializer, 6, 0, 109), - [11109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6358), - [11111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2818), - [11113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2957), - [11115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7274), - [11117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6445), - [11119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7249), - [11121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4644), - [11123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7170), - [11125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5986), - [11127] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_attribute_list, 5, 0, 98), - [11129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(777), - [11131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7093), - [11133] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_expression, 5, 0, 98), - [11135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(720), - [11137] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_member_declaration_list, 4, 0, 0), - [11139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3301), - [11141] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__class_declaration_initializer, 5, 0, 85), - [11143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1168), - [11145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2004), - [11147] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_top_level, 5, 0, 98), - [11149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(683), - [11151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2681), - [11153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4649), - [11155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6340), - [11157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6419), - [11159] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_calling_convention, 4, 0, 0), - [11161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6459), - [11163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2344), - [11165] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__lambda_expression_init, 3, 0, 46), - [11167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7335), - [11169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2745), - [11171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6393), - [11173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7342), - [11175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(736), - [11177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3459), - [11179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4573), - [11181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(102), - [11183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(948), - [11185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2054), - [11187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2315), - [11189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3442), - [11191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(686), - [11193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2688), - [11195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3393), - [11197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3443), - [11199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7777), - [11201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7295), - [11203] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif, 4, 0, 77), - [11205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2977), - [11207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3059), - [11209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7712), - [11211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2123), - [11213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7104), - [11215] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__lambda_expression_init, 3, 0, 47), - [11217] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__class_declaration_initializer, 4, 0, 64), - [11219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3160), - [11221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2066), - [11223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2083), - [11225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7784), - [11227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7730), - [11229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2044), - [11231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1969), - [11233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2815), - [11235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1989), - [11237] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_else_in_enum_member_declaration, 2, 0, 0), - [11239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5878), - [11241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2067), - [11243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2680), - [11245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(759), - [11247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2699), - [11249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6682), - [11251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2095), - [11253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(702), - [11255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1979), - [11257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2075), - [11259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(716), - [11261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7079), - [11263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1953), - [11265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(972), - [11267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2694), - [11269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1995), - [11271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1978), - [11273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2674), - [11275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(25), - [11277] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__class_declaration_initializer, 6, 0, 107), - [11279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7037), - [11281] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__class_declaration_initializer, 7, 0, 139), - [11283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6338), - [11285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7114), - [11287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3904), - [11289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(704), - [11291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2336), - [11293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2111), - [11295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(822), - [11297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2022), - [11299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2119), - [11301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2682), - [11303] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__class_declaration_initializer, 5, 0, 87), - [11305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(696), - [11307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1983), - [11309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3771), - [11311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7787), - [11313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1833), - [11315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3057), - [11317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2010), - [11319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6140), - [11321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2136), - [11323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2061), - [11325] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__lambda_expression_init, 2, 0, 19), - [11327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6429), - [11329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3559), - [11331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(693), - [11333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7127), - [11335] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_member_declaration_list, 5, 0, 0), - [11337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2679), - [11339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2677), - [11341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2780), - [11343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2058), - [11345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2960), - [11347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1972), - [11349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7067), - [11351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1942), - [11353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3268), - [11355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2068), - [11357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2084), - [11359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(795), - [11361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2706), - [11363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3741), - [11365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(710), - [11367] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_member_declaration_list, 2, 0, 0), - [11369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3182), - [11371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(746), - [11373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7070), - [11375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7782), - [11377] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), - [11379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(804), - [11381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(705), - [11383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4553), - [11385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1956), - [11387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(85), - [11389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(797), - [11391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(695), - [11393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(819), - [11395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(753), - [11397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2708), - [11399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(766), - [11401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7621), - [11403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3323), - [11405] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__lambda_expression_init, 2, 0, 12), - [11407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3328), - [11409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(728), - [11411] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__class_declaration_initializer, 4, 0, 54), - [11413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3329), - [11415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3183), - [11417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2927), - [11419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3265), - [11421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(674), - [11423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2087), - [11425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(717), - [11427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7425), - [11429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(735), - [11431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4546), - [11433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1641), - [11435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1643), - [11437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4010), - [11439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4011), - [11441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1644), - [11443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1645), - [11445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1639), - [11447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2873), - [11449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(730), - [11451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1878), - [11453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4034), - [11455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2700), - [11457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2994), - [11459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2023), - [11461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2703), - [11463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3483), - [11465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5899), - [11467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(798), - [11469] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__class_declaration_initializer, 5, 0, 70), - [11471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4015), - [11473] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7520), - [11475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2715), - [11477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2003), - [11479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1838), - [11481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3370), - [11483] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_pointer_parameter, 1, 0, 6), - [11485] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration_list, 3, 0, 0), - [11487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2064), - [11489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2704), - [11491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(803), - [11493] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7481), - [11495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(846), - [11497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4454), - [11499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1660), - [11501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1661), - [11503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1663), - [11505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4017), - [11507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4018), - [11509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1664), - [11511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1665), - [11513] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__lambda_expression_init, 1, 0, 3), - [11515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1659), - [11517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5741), - [11519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1985), - [11521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7786), - [11523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2825), - [11525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2832), - [11527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2428), - [11529] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_member_declaration_list, 3, 0, 0), - [11531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1981), - [11533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3375), - [11535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2952), - [11537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1987), - [11539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3292), - [11541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2806), - [11543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2772), - [11545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1986), - [11547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3713), - [11549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2076), - [11551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(712), - [11553] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interpolation_format_clause, 2, 0, 0), - [11555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(959), - [11557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4023), - [11559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4024), - [11561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1674), - [11563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1675), - [11565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1673), - [11567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6374), - [11569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6446), - [11571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2071), - [11573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7057), - [11575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3085), - [11577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1996), - [11579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3389), - [11581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(778), - [11583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1699), - [11585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1988), - [11587] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7620), - [11589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(773), - [11591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2727), - [11593] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_calling_convention, 5, 0, 0), - [11595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2073), - [11597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1684), - [11599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1685), - [11601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1683), - [11603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2816), - [11605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(39), - [11607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7785), - [11609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2835), - [11611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3400), - [11613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(761), - [11615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6455), - [11617] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7649), - [11619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7265), - [11621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1966), - [11623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6657), - [11625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2813), - [11627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7739), - [11629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2779), - [11631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3207), - [11633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3405), - [11635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2097), - [11637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4360), - [11639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3019), - [11641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2655), - [11643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2596), - [11645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2098), - [11647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2676), - [11649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3587), - [11651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(672), - [11653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1630), - [11655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3411), - [11657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3025), - [11659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7159), - [11661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1940), - [11663] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7764), - [11665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3513), - [11667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3550), - [11669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(701), - [11671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2841), - [11673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2796), - [11675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2756), - [11677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2965), - [11679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2101), - [11681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3715), - [11683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2080), - [11685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1073), - [11687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2991), - [11689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3716), - [11691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(747), - [11693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6724), - [11695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7167), - [11697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2085), - [11699] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration_list, 2, 0, 0), - [11701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(794), - [11703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3005), - [11705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(680), - [11707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6620), - [11709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3034), - [11711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4035), - [11713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3418), - [11715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2049), - [11717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7231), - [11719] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_pointer_parameter, 2, 0, 7), - [11721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1747), - [11723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7297), - [11725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2969), - [11727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3102), - [11729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2594), - [11731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2804), - [11733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2711), - [11735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(74), - [11737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(98), - [11739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(732), - [11741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(681), - [11743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3296), - [11745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6348), - [11747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6425), - [11749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(824), - [11751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2051), - [11753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6426), - [11755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6550), - [11757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7550), - [11759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7346), - [11761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2074), - [11763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7200), - [11765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2047), - [11767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7298), - [11769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4408), - [11771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7219), - [11773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2954), - [11775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6386), - [11777] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_enum_member_declaration, 4, 0, 77), - [11779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2107), - [11781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7434), - [11783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3115), - [11785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6649), - [11787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3369), - [11789] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif, 5, 0, 98), - [11791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1848), - [11793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6662), - [11795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3528), - [11797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3427), - [11799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1855), - [11801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6675), - [11803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(883), - [11805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7504), - [11807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6681), - [11809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2660), - [11811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6689), - [11813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2134), - [11815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2978), - [11817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1887), - [11819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7711), - [11821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1952), - [11823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7778), - [11825] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__lambda_expression_init, 4, 0, 67), - [11827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1891), - [11829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7748), - [11831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1892), - [11833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7752), - [11835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1893), - [11837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1894), - [11839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(685), - [11841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(806), - [11843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7790), - [11845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1640), - [11847] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_pragma, 5, 0, 0), - [11849] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_line, 4, 0, 0), - [11851] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_warning, 3, 0, 0), - [11853] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_pragma, 6, 0, 0), - [11855] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_pragma, 4, 0, 0), - [11857] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_endregion, 2, 0, 0), - [11859] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_error, 3, 0, 0), - [11861] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_line, 14, 0, 0), - [11863] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_nullable, 4, 0, 0), - [11865] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_undef, 3, 0, 0), - [11867] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_region, 3, 0, 20), - [11869] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_define, 3, 0, 0), - [11871] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_line, 15, 0, 0), - [11873] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_region, 2, 0, 0), - [11875] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_endregion, 3, 0, 20), - [11877] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_nullable, 3, 0, 0), - [11879] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_line, 3, 0, 0), + [7083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(392), + [7085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1145), + [7087] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1146), + [7089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1150), + [7091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1151), + [7093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1152), + [7095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1941), + [7097] = {.entry = {.count = 1, .reusable = false}}, SHIFT(982), + [7099] = {.entry = {.count = 1, .reusable = false}}, SHIFT(653), + [7101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(986), + [7103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(987), + [7105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(988), + [7107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(990), + [7109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(982), + [7111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(992), + [7113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(993), + [7115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(994), + [7117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(426), + [7119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(438), + [7121] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_enum_member_declaration, 3, 0, 56), + [7123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5724), + [7125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5252), + [7127] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1185), + [7129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1186), + [7131] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1186), + [7133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1190), + [7135] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1190), + [7137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(184), + [7139] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1184), + [7141] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1189), + [7143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1191), + [7145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1184), + [7147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(379), + [7149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1187), + [7151] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1188), + [7153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1192), + [7155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1193), + [7157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1194), + [7159] = {.entry = {.count = 1, .reusable = false}}, SHIFT(606), + [7161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5918), + [7163] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1305), + [7165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1306), + [7167] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1306), + [7169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1310), + [7171] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1310), + [7173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(206), + [7175] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1325), + [7177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1326), + [7179] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1326), + [7181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1330), + [7183] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1330), + [7185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(164), + [7187] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1324), + [7189] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1329), + [7191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1331), + [7193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1324), + [7195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3951), + [7197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(418), + [7199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1327), + [7201] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1328), + [7203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1332), + [7205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1333), + [7207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1334), + [7209] = {.entry = {.count = 1, .reusable = false}}, SHIFT(647), + [7211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(326), + [7213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(700), + [7215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3075), + [7217] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1379), + [7219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1380), + [7221] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1380), + [7223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1384), + [7225] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1384), + [7227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(210), + [7229] = {.entry = {.count = 1, .reusable = false}}, SHIFT(840), + [7231] = {.entry = {.count = 1, .reusable = false}}, SHIFT(643), + [7233] = {.entry = {.count = 1, .reusable = false}}, SHIFT(841), + [7235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(842), + [7237] = {.entry = {.count = 1, .reusable = false}}, SHIFT(842), + [7239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(843), + [7241] = {.entry = {.count = 1, .reusable = false}}, SHIFT(844), + [7243] = {.entry = {.count = 1, .reusable = false}}, SHIFT(845), + [7245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(846), + [7247] = {.entry = {.count = 1, .reusable = false}}, SHIFT(846), + [7249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(847), + [7251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(840), + [7253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(162), + [7255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(848), + [7257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(849), + [7259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(850), + [7261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(404), + [7263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4038), + [7265] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1436), + [7267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1437), + [7269] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1437), + [7271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1441), + [7273] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1441), + [7275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(172), + [7277] = {.entry = {.count = 1, .reusable = false}}, SHIFT(603), + [7279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6083), + [7281] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__query_body_repeat2, 2, 0, 0), SHIFT_REPEAT(6083), + [7284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5966), + [7286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(348), + [7288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(350), + [7290] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1435), + [7292] = {.entry = {.count = 1, .reusable = false}}, SHIFT(631), + [7294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1438), + [7296] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1439), + [7298] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1440), + [7300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1442), + [7302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1435), + [7304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1443), + [7306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1444), + [7308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1445), + [7310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(406), + [7312] = {.entry = {.count = 1, .reusable = false}}, SHIFT(618), + [7314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(423), + [7316] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1304), + [7318] = {.entry = {.count = 1, .reusable = false}}, SHIFT(624), + [7320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1307), + [7322] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1308), + [7324] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1309), + [7326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1311), + [7328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1304), + [7330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1312), + [7332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1313), + [7334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1314), + [7336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3959), + [7338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(395), + [7340] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1378), + [7342] = {.entry = {.count = 1, .reusable = false}}, SHIFT(628), + [7344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1381), + [7346] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1382), + [7348] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1383), + [7350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1385), + [7352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1378), + [7354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1386), + [7356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1387), + [7358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1388), + [7360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3989), + [7362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(398), + [7364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(424), + [7366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6104), + [7368] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__query_body_repeat2, 2, 0, 0), SHIFT_REPEAT(6104), + [7371] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1835), + [7373] = {.entry = {.count = 1, .reusable = false}}, SHIFT(666), + [7375] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1836), + [7377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1837), + [7379] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1837), + [7381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1838), + [7383] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1839), + [7385] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1840), + [7387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1841), + [7389] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1841), + [7391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1842), + [7393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1835), + [7395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(199), + [7397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1843), + [7399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1844), + [7401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1845), + [7403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(436), + [7405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6073), + [7407] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__query_body_repeat2, 2, 0, 0), SHIFT_REPEAT(6073), + [7410] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1520), + [7412] = {.entry = {.count = 1, .reusable = false}}, SHIFT(633), + [7414] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1521), + [7416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1522), + [7418] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1522), + [7420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1523), + [7422] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1524), + [7424] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1525), + [7426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1526), + [7428] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1526), + [7430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1527), + [7432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1520), + [7434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(181), + [7436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1528), + [7438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1529), + [7440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1530), + [7442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(401), + [7444] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1617), + [7446] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1618), + [7448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1619), + [7450] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1619), + [7452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1620), + [7454] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1621), + [7456] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1622), + [7458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1623), + [7460] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1623), + [7462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1624), + [7464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1617), + [7466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(189), + [7468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1625), + [7470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1626), + [7472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1627), + [7474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3990), + [7476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(384), + [7478] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_tuple_element, 1, 0, 6), REDUCE(sym_type_pattern, 1, 0, 6), + [7481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1138), + [7483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1870), + [7485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1645), + [7487] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__query_body_repeat2, 2, 0, 0), SHIFT_REPEAT(6071), + [7490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6071), + [7492] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1342), + [7494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1343), + [7496] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1343), + [7498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1347), + [7500] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1347), + [7502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(208), + [7504] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1341), + [7506] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1346), + [7508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1348), + [7510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1341), + [7512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4039), + [7514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(393), + [7516] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_member_declaration, 3, 0, 77), + [7518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1344), + [7520] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_member_declaration, 4, 0, 101), + [7522] = {.entry = {.count = 1, .reusable = false}}, SHIFT(623), + [7524] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1345), + [7526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1349), + [7528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1350), + [7530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1351), + [7532] = {.entry = {.count = 1, .reusable = false}}, SHIFT(667), + [7534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4342), + [7536] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument, 2, 0, 0), + [7538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(420), + [7540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3166), + [7542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1701), + [7544] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1417), + [7546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1418), + [7548] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1418), + [7550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1422), + [7552] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1422), + [7554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(211), + [7556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(688), + [7558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1852), + [7560] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1075), + [7562] = {.entry = {.count = 1, .reusable = false}}, SHIFT(655), + [7564] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1076), + [7566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1077), + [7568] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1077), + [7570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1078), + [7572] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1079), + [7574] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1080), + [7576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1081), + [7578] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1081), + [7580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1082), + [7582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1075), + [7584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(185), + [7586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1083), + [7588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1084), + [7590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1085), + [7592] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 5, 0, 48), + [7594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1020), + [7596] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1416), + [7598] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1421), + [7600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1423), + [7602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1416), + [7604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3994), + [7606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(396), + [7608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1419), + [7610] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1420), + [7612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(421), + [7614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1424), + [7616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1425), + [7618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1426), + [7620] = {.entry = {.count = 1, .reusable = false}}, SHIFT(630), + [7622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(864), + [7624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2153), + [7626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2147), + [7628] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument, 4, 0, 5), + [7630] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument, 3, 0, 5), + [7632] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 4, 0, 24), + [7634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1680), + [7636] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 4, 0, 7), + [7638] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 3, 0, 5), + [7640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(774), + [7642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4591), + [7644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4292), + [7646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1113), + [7648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1154), + [7650] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1478), + [7652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1479), + [7654] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1479), + [7656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1483), + [7658] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1483), + [7660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(213), + [7662] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1477), + [7664] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1482), + [7666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1484), + [7668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1477), + [7670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3896), + [7672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(399), + [7674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1480), + [7676] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1481), + [7678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1485), + [7680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1486), + [7682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1487), + [7684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2146), + [7686] = {.entry = {.count = 1, .reusable = false}}, SHIFT(632), + [7688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(391), + [7690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(394), + [7692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1195), + [7694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2142), + [7696] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__for_statement_conditions_repeat1, 2, 0, 0), + [7698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1720), + [7700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2919), + [7702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(713), + [7704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3252), + [7706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1274), + [7708] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1262), + [7710] = {.entry = {.count = 1, .reusable = false}}, SHIFT(617), + [7712] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1263), + [7714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1264), + [7716] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1264), + [7718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1265), + [7720] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1266), + [7722] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1267), + [7724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1268), + [7726] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1268), + [7728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1269), + [7730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1262), + [7732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(191), + [7734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1270), + [7736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1271), + [7738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1272), + [7740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(387), + [7742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(342), + [7744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(343), + [7746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1352), + [7748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1489), + [7750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1531), + [7752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(704), + [7754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2966), + [7756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1062), + [7758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1629), + [7760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1316), + [7762] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_conversion_operator_declaration_repeat1, 2, 0, 0), SHIFT_REPEAT(2168), + [7765] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_conversion_operator_declaration_repeat1, 2, 0, 0), SHIFT_REPEAT(2169), + [7768] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_conversion_operator_declaration_repeat1, 2, 0, 0), + [7770] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_conversion_operator_declaration_repeat1, 2, 0, 0), + [7772] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_conversion_operator_declaration_repeat1, 2, 0, 0), SHIFT_REPEAT(5886), + [7775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3274), + [7777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1390), + [7779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1232), + [7781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1447), + [7783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(967), + [7785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2388), + [7787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(702), + [7789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3810), + [7791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2112), + [7793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(891), + [7795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3007), + [7797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1847), + [7799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1658), + [7801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2158), + [7803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1793), + [7805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6100), + [7807] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__query_body_repeat2, 2, 0, 0), SHIFT_REPEAT(6100), + [7810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6106), + [7812] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__query_body_repeat2, 2, 0, 0), SHIFT_REPEAT(6106), + [7815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6112), + [7817] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__query_body_repeat2, 2, 0, 0), SHIFT_REPEAT(6112), + [7820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2754), + [7822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2143), + [7824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6056), + [7826] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__query_body_repeat2, 2, 0, 0), SHIFT_REPEAT(6056), + [7829] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6030), + [7831] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 6, 0, 67), + [7833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(692), + [7835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3414), + [7837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6062), + [7839] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument, 1, 0, 0), + [7841] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__query_body_repeat2, 2, 0, 0), SHIFT_REPEAT(6062), + [7844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1427), + [7846] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6436), + [7848] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6443), + [7850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5189), + [7852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5286), + [7854] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6465), + [7856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7127), + [7858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6482), + [7860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(416), + [7862] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__anonymous_object_member_declarator, 3, 0, 0), + [7864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(403), + [7866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(407), + [7868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(417), + [7870] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1201), + [7872] = {.entry = {.count = 1, .reusable = false}}, SHIFT(622), + [7874] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1202), + [7876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1203), + [7878] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1203), + [7880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1204), + [7882] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1205), + [7884] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1206), + [7886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1207), + [7888] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1207), + [7890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1208), + [7892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1201), + [7894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(260), + [7896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1209), + [7898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1210), + [7900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1211), + [7902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3911), + [7904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(375), + [7906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5142), + [7908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5119), + [7910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6552), + [7912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5955), + [7914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1955), + [7916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5854), + [7918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(324), + [7920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(325), + [7922] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5919), + [7924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7140), + [7926] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declarator, 3, 0, 0), + [7928] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declarator, 3, 0, 5), + [7930] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declarator, 4, 0, 0), + [7932] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declarator, 4, 0, 5), + [7934] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1358), + [7936] = {.entry = {.count = 1, .reusable = false}}, SHIFT(629), + [7938] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1359), + [7940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1360), + [7942] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1360), + [7944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1361), + [7946] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1362), + [7948] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1363), + [7950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1364), + [7952] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1364), + [7954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1365), + [7956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1358), + [7958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(221), + [7960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1366), + [7962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1367), + [7964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1368), + [7966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(334), + [7968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5996), + [7970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(359), + [7972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(360), + [7974] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1282), + [7976] = {.entry = {.count = 1, .reusable = false}}, SHIFT(626), + [7978] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1283), + [7980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1284), + [7982] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1284), + [7984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1285), + [7986] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1286), + [7988] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1287), + [7990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1288), + [7992] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1288), + [7994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1289), + [7996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1282), + [7998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(281), + [8000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1290), + [8002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1291), + [8004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1292), + [8006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3937), + [8008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(380), + [8010] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__anonymous_object_member_declarator, 1, 0, 0), + [8012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5971), + [8014] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interpolation_alignment_clause, 2, 0, 0), + [8016] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_using_variable_declarator, 3, 0, 5), + [8018] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute_argument, 3, 0, 0), + [8020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7199), + [8022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7241), + [8024] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1122), + [8026] = {.entry = {.count = 1, .reusable = false}}, SHIFT(614), + [8028] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1123), + [8030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1124), + [8032] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1124), + [8034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1125), + [8036] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1126), + [8038] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1127), + [8040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1128), + [8042] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1128), + [8044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1129), + [8046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1122), + [8048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(280), + [8050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1130), + [8052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1131), + [8054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1132), + [8056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3997), + [8058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(318), + [8060] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_array_rank_specifier_repeat1, 2, 0, 0), + [8062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(146), + [8064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7147), + [8066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(304), + [8068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(305), + [8070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5743), + [8072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5191), + [8074] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_expression_arm, 4, 0, 0), + [8076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(367), + [8078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(368), + [8080] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_expression_arm, 3, 0, 0), + [8082] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1821), + [8084] = {.entry = {.count = 1, .reusable = false}}, SHIFT(665), + [8086] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1822), + [8088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1823), + [8090] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1823), + [8092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1824), + [8094] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1825), + [8096] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1826), + [8098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1827), + [8100] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1827), + [8102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1828), + [8104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1821), + [8106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(246), + [8108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1829), + [8110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1830), + [8112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1831), + [8114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(433), + [8116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(431), + [8118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(432), + [8120] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_initializer, 3, 0, 0), + [8122] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute_argument, 1, 0, 0), + [8124] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1502), + [8126] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1503), + [8128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1504), + [8130] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1504), + [8132] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1507), + [8134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1508), + [8136] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1508), + [8138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1509), + [8140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1502), + [8142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(225), + [8144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(390), + [8146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3419), + [8148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(968), + [8150] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1161), + [8152] = {.entry = {.count = 1, .reusable = false}}, SHIFT(586), + [8154] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1162), + [8156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1163), + [8158] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1163), + [8160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1164), + [8162] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1165), + [8164] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1166), + [8166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1167), + [8168] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1167), + [8170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1168), + [8172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1161), + [8174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(227), + [8176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1169), + [8178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1170), + [8180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1171), + [8182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(441), + [8184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1063), + [8186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1200), + [8188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(254), + [8190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1281), + [8192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1155), + [8194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1357), + [8196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1432), + [8198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1495), + [8200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1233), + [8202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1535), + [8204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6095), + [8206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1317), + [8208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1391), + [8210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1448), + [8212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(798), + [8214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(74), + [8216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2007), + [8218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3863), + [8220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(313), + [8222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(68), + [8224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(69), + [8226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2127), + [8228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(868), + [8230] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1795), + [8232] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1797), + [8234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1798), + [8236] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1798), + [8238] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1801), + [8240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1802), + [8242] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1802), + [8244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1803), + [8246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1795), + [8248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(243), + [8250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(425), + [8252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1799), + [8254] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1800), + [8256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1804), + [8258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1805), + [8260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1806), + [8262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2099), + [8264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(71), + [8266] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1238), + [8268] = {.entry = {.count = 1, .reusable = false}}, SHIFT(656), + [8270] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1240), + [8272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1241), + [8274] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1241), + [8276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1242), + [8278] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1243), + [8280] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1244), + [8282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1245), + [8284] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1245), + [8286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1246), + [8288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1238), + [8290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(271), + [8292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1248), + [8294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1249), + [8296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1250), + [8298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(871), + [8300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3895), + [8302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(372), + [8304] = {.entry = {.count = 1, .reusable = false}}, SHIFT(627), + [8306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3876), + [8308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3877), + [8310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5910), + [8312] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6119), + [8314] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7063), + [8316] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_attribute, 1, 0, 5), REDUCE(sym_type, 1, 0, 0), + [8319] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_type, 1, 0, 0), SHIFT(596), + [8322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(64), + [8324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(819), + [8326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7546), + [8328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1179), + [8330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(409), + [8332] = {.entry = {.count = 1, .reusable = false}}, SHIFT(661), + [8334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1505), + [8336] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1506), + [8338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1510), + [8340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1511), + [8342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1512), + [8344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(70), + [8346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3290), + [8348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3295), + [8350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3298), + [8352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1776), + [8354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(356), + [8356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(357), + [8358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1183), + [8360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(29), + [8362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(908), + [8364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(72), + [8366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4590), + [8368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1968), + [8370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(332), + [8372] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_when_clause, 2, 0, 0), + [8374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(65), + [8376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1630), + [8378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(435), + [8380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4638), + [8382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2154), + [8384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4639), + [8386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1139), + [8388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1646), + [8390] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1397), + [8392] = {.entry = {.count = 1, .reusable = false}}, SHIFT(657), + [8394] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1398), + [8396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1399), + [8398] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1399), + [8400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1400), + [8402] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1401), + [8404] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1402), + [8406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1403), + [8408] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1403), + [8410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1404), + [8412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1397), + [8414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(268), + [8416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1405), + [8418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1406), + [8420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1407), + [8422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1000), + [8424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3942), + [8426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(365), + [8428] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1454), + [8430] = {.entry = {.count = 1, .reusable = false}}, SHIFT(659), + [8432] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1456), + [8434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1457), + [8436] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1457), + [8438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1458), + [8440] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1459), + [8442] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1460), + [8444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1461), + [8446] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1461), + [8448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1462), + [8450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1454), + [8452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1464), + [8454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1465), + [8456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1466), + [8458] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__join_header, 3, 0, 0), + [8460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3976), + [8462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(373), + [8464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3069), + [8466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1663), + [8468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(83), + [8470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1681), + [8472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1689), + [8474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1708), + [8476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2801), + [8478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1004), + [8480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(381), + [8482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(382), + [8484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1006), + [8486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(84), + [8488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7606), + [8490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(860), + [8492] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6117), + [8494] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7254), + [8496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2024), + [8498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2652), + [8500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2012), + [8502] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_else_in_expression, 2, 0, 0), + [8504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(750), + [8506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1604), + [8508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6754), + [8510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2150), + [8512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2151), + [8514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(828), + [8516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2738), + [8518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1092), + [8520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(437), + [8522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1095), + [8524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(839), + [8526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6072), + [8528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2052), + [8530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(951), + [8532] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__query_body_repeat2, 2, 0, 0), SHIFT_REPEAT(6072), + [8535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(87), + [8537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7426), + [8539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1045), + [8541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5550), + [8543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3067), + [8545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3076), + [8547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1178), + [8549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(314), + [8551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1181), + [8553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3950), + [8555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(352), + [8557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7372), + [8559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1028), + [8561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2668), + [8563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1255), + [8565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2677), + [8567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1257), + [8569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1375), + [8571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(897), + [8573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(100), + [8575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1339), + [8577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(333), + [8579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1340), + [8581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(79), + [8583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2141), + [8585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1414), + [8587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(353), + [8589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1415), + [8591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1474), + [8593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1475), + [8595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1121), + [8597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2682), + [8599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1518), + [8601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1519), + [8603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6029), + [8605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1539), + [8607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1544), + [8609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1730), + [8611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1549), + [8613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1554), + [8615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1558), + [8617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1562), + [8619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3806), + [8621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7158), + [8623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7172), + [8625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(933), + [8627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3296), + [8629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3969), + [8631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(82), + [8633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2088), + [8635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2996), + [8637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1217), + [8639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(63), + [8641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(86), + [8643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(88), + [8645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7086), + [8647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7187), + [8649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(89), + [8651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3006), + [8653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3055), + [8655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1937), + [8657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1370), + [8659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(916), + [8661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1815), + [8663] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__join_header, 4, 0, 6), + [8665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1820), + [8667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(91), + [8669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1858), + [8671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1848), + [8673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1854), + [8675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6067), + [8677] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__query_body_repeat2, 2, 0, 0), SHIFT_REPEAT(6067), + [8680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1872), + [8682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1300), + [8684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1943), + [8686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4027), + [8688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6094), + [8690] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__query_body_repeat2, 2, 0, 0), SHIFT_REPEAT(6094), + [8693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3890), + [8695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6080), + [8697] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__query_body_repeat2, 2, 0, 0), SHIFT_REPEAT(6080), + [8700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2964), + [8702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3904), + [8704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2103), + [8706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3915), + [8708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3482), + [8710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3490), + [8712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3491), + [8714] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arrow_expression_clause, 2, 0, 0), + [8716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(98), + [8718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1745), + [8720] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6118), + [8722] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7256), + [8724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1796), + [8726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1811), + [8728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1812), + [8730] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__query_body_repeat2, 2, 0, 0), SHIFT_REPEAT(6095), + [8733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4612), + [8735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6042), + [8737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5930), + [8739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6033), + [8741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6022), + [8743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5924), + [8745] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1794), + [8747] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 2, 0, 7), + [8749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7414), + [8751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7362), + [8753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5137), + [8755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5984), + [8757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5982), + [8759] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__simple_name, 1, 0, 0), SHIFT(2876), + [8762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5937), + [8764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2046), + [8766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1213), + [8768] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_parameter, 1, 0, 5), SHIFT(5908), + [8771] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_parameter, 1, 0, 5), SHIFT(6418), + [8774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6016), + [8776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7117), + [8778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7563), + [8780] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 1, 0, 5), + [8782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7422), + [8784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6012), + [8786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1794), + [8788] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_else_in_enum_member_declaration, 1, 0, 0), + [8790] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6078), + [8792] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6024), + [8794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3928), + [8796] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6099), + [8798] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6041), + [8800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5964), + [8802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6040), + [8804] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5726), + [8806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4022), + [8808] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_explicit_interface_specifier, 2, 0, 0), SHIFT(3654), + [8811] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_explicit_interface_specifier, 2, 0, 0), SHIFT(3670), + [8814] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_explicit_interface_specifier, 2, 0, 0), + [8816] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_explicit_interface_specifier, 2, 0, 0), + [8818] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5988), + [8820] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__simple_name, 1, 0, 0), SHIFT(5908), + [8823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6418), + [8825] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_explicit_interface_specifier, 2, 0, 0), SHIFT(2168), + [8828] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_explicit_interface_specifier, 2, 0, 0), SHIFT(2169), + [8831] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5980), + [8833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3522), + [8835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2874), + [8837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2860), + [8839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3550), + [8841] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__parameter_type_with_modifiers_repeat1, 2, 0, 0), + [8843] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__parameter_type_with_modifiers_repeat1, 2, 0, 0), + [8845] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parameter_type_with_modifiers_repeat1, 2, 0, 0), SHIFT_REPEAT(5782), + [8848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4547), + [8850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2059), + [8852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4566), + [8854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5852), + [8856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4572), + [8858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3629), + [8860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1994), + [8862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5791), + [8864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2071), + [8866] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 1, 0, 5), + [8868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1987), + [8870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3524), + [8872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5831), + [8874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2868), + [8876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3530), + [8878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3588), + [8880] = {.entry = {.count = 1, .reusable = false}}, SHIFT(856), + [8882] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1396), + [8884] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__class_declaration_initializer_repeat1, 2, 0, 0), SHIFT_REPEAT(4511), + [8887] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__class_declaration_initializer_repeat1, 2, 0, 0), SHIFT_REPEAT(5295), + [8890] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_element, 1, 0, 6), + [8892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2876), + [8894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(914), + [8896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1212), + [8898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1337), + [8900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1369), + [8902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1133), + [8904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1411), + [8906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1471), + [8908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5967), + [8910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(999), + [8912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2847), + [8914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1516), + [8916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(854), + [8918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1513), + [8920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(949), + [8922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1774), + [8924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4810), + [8926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(251), + [8928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6006), + [8930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4150), + [8932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1293), + [8934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(931), + [8936] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__lambda_expression_init_repeat1, 2, 0, 0), + [8938] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__lambda_expression_init_repeat1, 2, 0, 0), SHIFT_REPEAT(5878), + [8941] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__lambda_expression_init_repeat1, 2, 0, 0), + [8943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1734), + [8945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1088), + [8947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3245), + [8949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1832), + [8951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3709), + [8953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1182), + [8955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1318), + [8957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1174), + [8959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1040), + [8961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3410), + [8963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1809), + [8965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1253), + [8967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5916), + [8969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6036), + [8971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2003), + [8973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5922), + [8975] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6859), + [8977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5915), + [8979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5957), + [8981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5947), + [8983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5942), + [8985] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7249), + [8987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5986), + [8989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5936), + [8991] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__lambda_expression_init_repeat1, 1, 0, 1), + [8993] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__lambda_expression_init_repeat1, 1, 0, 1), + [8995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6003), + [8997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5951), + [8999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5974), + [9001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6028), + [9003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5938), + [9005] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_conversion_operator_declaration_repeat1, 1, 0, 0), + [9007] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_conversion_operator_declaration_repeat1, 1, 0, 0), + [9009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2078), + [9011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5999), + [9013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6037), + [9015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5932), + [9017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5962), + [9019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5917), + [9021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5949), + [9023] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_function_pointer_type_repeat1, 2, 0, 0), + [9025] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_function_pointer_type_repeat1, 2, 0, 0), + [9027] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7157), + [9029] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2234), + [9031] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2241), + [9033] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2745), + [9035] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2743), + [9037] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2252), + [9039] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2245), + [9041] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2639), + [9043] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2638), + [9045] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6115), + [9047] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7048), + [9049] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6116), + [9051] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7139), + [9053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3310), + [9055] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3174), + [9057] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3173), + [9059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3010), + [9061] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5309), + [9063] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5308), + [9065] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2439), + [9067] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2437), + [9069] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_enum_member_declaration, 4, 0, 56), + [9071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3769), + [9073] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6827), + [9075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7730), + [9077] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7040), + [9079] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7044), + [9081] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6651), + [9083] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7222), + [9085] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6796), + [9087] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7402), + [9089] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7272), + [9091] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7395), + [9093] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7476), + [9095] = {.entry = {.count = 1, .reusable = false}}, SHIFT_EXTRA(), + [9097] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_using_directive_repeat1, 1, 0, 0), SHIFT(2168), + [9100] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_using_directive_repeat1, 1, 0, 0), SHIFT(2169), + [9103] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_using_directive_repeat1, 1, 0, 0), + [9105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6120), + [9107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7259), + [9109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4646), + [9111] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6074), + [9113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2636), + [9115] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2635), + [9117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3361), + [9119] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6086), + [9121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3093), + [9123] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6064), + [9125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6766), + [9127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7115), + [9129] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_using_directive_repeat1, 2, 0, 0), + [9131] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_using_directive_repeat1, 2, 0, 0), SHIFT_REPEAT(6078), + [9134] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7051), + [9136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6121), + [9138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7051), + [9140] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7053), + [9142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6123), + [9144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7053), + [9146] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7041), + [9148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6126), + [9150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7041), + [9152] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7219), + [9154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6122), + [9156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7219), + [9158] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7243), + [9160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6125), + [9162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7243), + [9164] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7224), + [9166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6127), + [9168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7224), + [9170] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7257), + [9172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7257), + [9174] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7106), + [9176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7106), + [9178] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attribute_target_specifier, 2, 0, 0), + [9180] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7252), + [9182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7252), + [9184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1043), + [9186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3987), + [9188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3701), + [9190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6102), + [9192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(695), + [9194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1893), + [9196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1548), + [9198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1887), + [9200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1515), + [9202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1890), + [9204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1543), + [9206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1895), + [9208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1557), + [9210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1613), + [9212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1119), + [9214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1071), + [9216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1072), + [9218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1891), + [9220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1853), + [9222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1889), + [9224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1871), + [9226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1434), + [9228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1808), + [9230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1892), + [9232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1727), + [9234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1883), + [9236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1252), + [9238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1884), + [9240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1336), + [9242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1885), + [9244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1409), + [9246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(826), + [9248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1561), + [9250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1888), + [9252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1538), + [9254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1886), + [9256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1469), + [9258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1807), + [9260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(852), + [9262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1882), + [9264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1173), + [9266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1880), + [9268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1087), + [9270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1878), + [9272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(997), + [9274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1877), + [9276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1814), + [9278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1894), + [9280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1553), + [9282] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declarator, 1, 0, 5), + [9284] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1550), + [9286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2872), + [9288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3050), + [9290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(969), + [9292] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__query_body_repeat1, 2, 0, 0), SHIFT_REPEAT(1043), + [9295] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__query_body_repeat1, 2, 0, 0), SHIFT_REPEAT(3987), + [9298] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__query_body_repeat1, 2, 0, 0), SHIFT_REPEAT(3701), + [9301] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__query_body_repeat1, 2, 0, 0), SHIFT_REPEAT(6102), + [9304] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__query_body_repeat1, 2, 0, 0), SHIFT_REPEAT(695), + [9307] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__query_body_repeat1, 2, 0, 0), + [9309] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__simple_name, 1, 0, 0), SHIFT(3609), + [9312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6001), + [9314] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__record_declaration_initializer, 6, 0, 84), + [9316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5786), + [9318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5702), + [9320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6081), + [9322] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__record_declaration_initializer, 3, 0, 26), + [9324] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__class_declaration_initializer, 2, 0, 7), + [9326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4021), + [9328] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__record_declaration_initializer, 3, 0, 7), + [9330] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__struct_declaration_initializer, 5, 0, 63), + [9332] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__record_declaration_initializer, 5, 0, 63), + [9334] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__class_declaration_initializer, 5, 0, 63), + [9336] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__struct_declaration_initializer, 5, 0, 84), + [9338] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__record_declaration_initializer, 5, 0, 84), + [9340] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__class_declaration_initializer, 4, 0, 26), + [9342] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__struct_declaration_initializer, 4, 0, 63), + [9344] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__record_declaration_initializer, 4, 0, 63), + [9346] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__class_declaration_initializer, 4, 0, 63), + [9348] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__record_declaration_initializer, 2, 0, 7), + [9350] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__class_declaration_initializer, 3, 0, 7), + [9352] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__struct_declaration_initializer, 3, 0, 26), + [9354] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__struct_declaration_initializer, 4, 0, 26), + [9356] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__record_declaration_initializer, 4, 0, 26), + [9358] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__class_declaration_initializer, 3, 0, 26), + [9360] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__struct_declaration_initializer, 3, 0, 7), + [9362] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__struct_declaration_initializer, 2, 0, 7), + [9364] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__struct_declaration_initializer, 6, 0, 84), + [9366] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_variable_declarator, 1, 0, 5), SHIFT(2800), + [9369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1550), + [9371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6021), + [9373] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_type_parameter_constraint, 1, 0, 0), REDUCE(sym__reserved_identifier, 1, 0, 0), + [9376] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_variable_declarator, 1, 0, 5), SHIFT(2692), + [9379] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_variable_declarator, 1, 0, 5), SHIFT(2685), + [9382] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__simple_name, 1, 0, 0), SHIFT(3567), + [9385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5939), + [9387] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__class_declaration_initializer_repeat3, 2, 0, 0), + [9389] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__class_declaration_initializer_repeat3, 2, 0, 0), SHIFT_REPEAT(4021), + [9392] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__class_declaration_initializer_repeat3, 2, 0, 0), SHIFT_REPEAT(2876), + [9395] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__class_declaration_initializer_repeat3, 2, 0, 0), SHIFT_REPEAT(5702), + [9398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2570), + [9400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(47), + [9402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(769), + [9404] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_order_by_clause, 2, 0, 0), + [9406] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__interface_declaration_initializer, 2, 0, 7), + [9408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3893), + [9410] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_type_parameter, 1, 0, 5), REDUCE(sym__simple_name, 1, 0, 0), + [9413] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_base_list, 2, 0, 0), + [9415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4033), + [9417] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_base_list, 2, 0, 0), SHIFT(547), + [9420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2008), + [9422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1931), + [9424] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_join_clause, 3, 0, 62), + [9426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6107), + [9428] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_order_by_clause, 3, 0, 0), + [9430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2122), + [9432] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__record_declaration_initializer_repeat1, 2, 0, 0), + [9434] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__record_declaration_initializer_repeat1, 2, 0, 0), SHIFT_REPEAT(2876), + [9437] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__record_declaration_initializer_repeat1, 2, 0, 0), SHIFT_REPEAT(5702), + [9440] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__interface_declaration_initializer, 3, 0, 26), + [9442] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_order_by_clause_repeat1, 2, 0, 0), SHIFT_REPEAT(769), + [9445] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_order_by_clause_repeat1, 2, 0, 0), + [9447] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__interface_declaration_initializer, 4, 0, 63), + [9449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5940), + [9451] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_base_list, 3, 0, 0), + [9453] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_base, 2, 0, 0), + [9455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5859), + [9457] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_base_list_repeat1, 2, 0, 0), + [9459] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_base_list_repeat1, 2, 0, 0), SHIFT_REPEAT(547), + [9462] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_base_list, 4, 0, 0), + [9464] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__ordering, 2, 0, 0), + [9466] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_base_list_repeat1, 2, 0, 0), SHIFT_REPEAT(4033), + [9469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6720), + [9471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3794), + [9473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1136), + [9475] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_join_clause, 4, 0, 62), + [9477] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_list, 3, 0, 0), + [9479] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_list, 3, 0, 25), + [9481] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_interpolated_string_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(6720), + [9484] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_interpolated_string_expression_repeat1, 2, 0, 0), + [9486] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_interpolated_string_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(1136), + [9489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3521), + [9491] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_list, 4, 0, 49), + [9493] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_list, 4, 0, 51), + [9495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6345), + [9497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7163), + [9499] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__interface_declaration_initializer, 4, 0, 64), + [9501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5565), + [9503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2951), + [9505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4587), + [9507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3979), + [9509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7666), + [9511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2987), + [9513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3320), + [9515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3849), + [9517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3292), + [9519] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__query_clause, 1, 0, 0), + [9521] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_join_into_clause, 2, 0, 0), + [9523] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__query_body_repeat1, 1, 0, 0), + [9525] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__interface_declaration_initializer, 5, 0, 85), + [9527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3351), + [9529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3578), + [9531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6018), + [9533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3487), + [9535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3924), + [9537] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_base_list_repeat1, 3, 0, 0), + [9539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2961), + [9541] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__interface_declaration_initializer, 3, 0, 28), + [9543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4605), + [9545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6746), + [9547] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3183), + [9549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6689), + [9551] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6682), + [9553] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6667), + [9555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2988), + [9557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6857), + [9559] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2937), + [9561] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3211), + [9563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3850), + [9565] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__class_declaration_initializer_repeat3, 1, 0, 0), + [9567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3321), + [9569] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1792), + [9571] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 2, 0, 24), + [9573] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__ref_base_type, 1, 0, 0), + [9575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6650), + [9577] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_try_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(6345), + [9580] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_interpolated_string_expression_repeat2, 2, 0, 0), + [9582] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_interpolated_string_expression_repeat2, 2, 0, 0), SHIFT_REPEAT(1136), + [9585] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_interpolated_string_expression_repeat2, 2, 0, 0), SHIFT_REPEAT(6746), + [9588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4588), + [9590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4005), + [9592] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter_list, 4, 0, 0), + [9594] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_base, 4, 0, 0), + [9596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4606), + [9598] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3648), + [9600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3498), + [9602] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7247), + [9604] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__class_declaration_initializer_repeat4, 2, 0, 0), + [9606] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__class_declaration_initializer_repeat4, 2, 0, 0), SHIFT_REPEAT(6081), + [9609] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_interpolated_string_expression_repeat3, 2, 0, 0), + [9611] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_interpolated_string_expression_repeat3, 2, 0, 0), SHIFT_REPEAT(1136), + [9614] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_interpolated_string_expression_repeat3, 2, 0, 0), SHIFT_REPEAT(6857), + [9617] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_parameter_constraints_clause_repeat1, 2, 0, 0), + [9619] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_parameter_constraints_clause_repeat1, 2, 0, 0), SHIFT_REPEAT(3409), + [9622] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_string_literal_repeat1, 2, 0, 0), + [9624] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_literal_repeat1, 2, 0, 0), SHIFT_REPEAT(6689), + [9627] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_literal_repeat1, 2, 0, 0), SHIFT_REPEAT(6682), + [9630] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_literal_repeat1, 2, 0, 0), SHIFT_REPEAT(6667), + [9633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3363), + [9635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(59), + [9637] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4473), + [9639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4024), + [9641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3799), + [9643] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_pattern, 3, 0, 0), + [9645] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_pattern, 3, 0, 7), + [9647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4036), + [9649] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7135), + [9651] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4471), + [9653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3365), + [9655] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3186), + [9657] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__record_declaration_initializer_repeat1, 1, 0, 0), + [9659] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter_constraints_clause, 5, 0, 0), + [9661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3409), + [9663] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter_constraint, 1, 0, 0), + [9665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6537), + [9667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3293), + [9669] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_catch_clause_repeat1, 2, 0, 0), SHIFT_REPEAT(3979), + [9672] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_catch_clause_repeat1, 2, 0, 0), + [9674] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_catch_clause_repeat1, 2, 0, 0), SHIFT_REPEAT(7666), + [9677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2962), + [9679] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2928), + [9681] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter_list, 3, 0, 0), + [9683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4026), + [9685] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter_constraints_clause, 4, 0, 0), + [9687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4041), + [9689] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3672), + [9691] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_pattern, 4, 0, 78), + [9693] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_pattern, 4, 0, 80), + [9695] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3176), + [9697] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5261), + [9699] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5263), + [9701] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5264), + [9703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(521), + [9705] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__interface_declaration_initializer, 5, 0, 26), + [9707] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__interface_declaration_initializer, 5, 0, 63), + [9709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(515), + [9711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4), + [9713] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__constructor_declaration_initializer, 2, 0, 58), + [9715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7228), + [9717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6337), + [9719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(519), + [9721] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__record_declaration_initializer, 7, 0, 63), + [9723] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_unary_expression, 2, 0, 34), + [9725] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__struct_declaration_initializer, 7, 0, 84), + [9727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6528), + [9729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5158), + [9731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5159), + [9733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5160), + [9735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6355), + [9737] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__record_declaration_initializer, 6, 0, 26), + [9739] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__interface_declaration_initializer, 7, 0, 85), + [9741] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_record_base_repeat1, 2, 0, 0), + [9743] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_base_repeat1, 2, 0, 0), SHIFT_REPEAT(5859), + [9746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4640), + [9748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2025), + [9750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(340), + [9752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7631), + [9754] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__interface_declaration_initializer, 4, 0, 26), + [9756] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__preproc_expression, 1, 0, 0), + [9758] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__preproc_expression, 1, 0, 0), + [9760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4514), + [9762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(57), + [9764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6338), + [9766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2), + [9768] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_parenthesized_expression, 3, 0, 0), + [9770] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_parenthesized_expression, 3, 0, 0), + [9772] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__record_declaration_initializer, 7, 0, 84), + [9774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6356), + [9776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(540), + [9778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12), + [9780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5), + [9782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(516), + [9784] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_binary_expression, 3, 0, 39), + [9786] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_binary_expression, 3, 0, 39), + [9788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(53), + [9790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6357), + [9792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(517), + [9794] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__constructor_declaration_initializer, 3, 0, 76), + [9796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(596), + [9798] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declarator, 1, 0, 0), + [9800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1547), + [9802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7), + [9804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(514), + [9806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6332), + [9808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1907), + [9810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1938), + [9812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(950), + [9814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(952), + [9816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(361), + [9818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(371), + [9820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(518), + [9822] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__struct_declaration_initializer, 5, 0, 26), + [9824] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__interface_declaration_initializer, 5, 0, 28), + [9826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(285), + [9828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4808), + [9830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(306), + [9832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(309), + [9834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6488), + [9836] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_unary_expression, 2, 0, 34), + [9838] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__record_declaration_initializer, 5, 0, 26), + [9840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2096), + [9842] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__constructor_declaration_initializer, 4, 0, 100), + [9844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(49), + [9846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7075), + [9848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(299), + [9850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3362), + [9852] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter_constraint, 1, 0, 6), + [9854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(292), + [9856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4125), + [9858] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_base, 3, 0, 0), + [9860] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__record_declaration_initializer, 5, 0, 7), + [9862] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__interface_declaration_initializer, 3, 0, 7), + [9864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(51), + [9866] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter_constraint, 2, 0, 0), + [9868] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__interface_declaration_initializer, 5, 0, 64), + [9870] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__class_declaration_initializer, 4, 0, 7), + [9872] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_switch_body_repeat1, 2, 0, 0), + [9874] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_switch_body_repeat1, 2, 0, 0), SHIFT_REPEAT(340), + [9877] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_switch_body_repeat1, 2, 0, 0), SHIFT_REPEAT(7631), + [9880] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__struct_declaration_initializer, 4, 0, 7), + [9882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5237), + [9884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8), + [9886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(520), + [9888] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__interface_declaration_initializer, 4, 0, 28), + [9890] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__interface_declaration_initializer, 4, 0, 7), + [9892] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_enum_member_declaration, 4, 0, 56), + [9894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3), + [9896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1969), + [9898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7094), + [9900] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__record_declaration_initializer, 4, 0, 7), + [9902] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__struct_declaration_initializer, 6, 0, 63), + [9904] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__interface_declaration_initializer, 6, 0, 64), + [9906] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__record_declaration_initializer, 6, 0, 63), + [9908] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__class_declaration_initializer, 6, 0, 63), + [9910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1908), + [9912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7232), + [9914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6), + [9916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(301), + [9918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3237), + [9920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(289), + [9922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3704), + [9924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(857), + [9926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5741), + [9928] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__interface_declaration_initializer, 6, 0, 85), + [9930] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__interface_declaration_initializer, 6, 0, 63), + [9932] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constructor_constraint, 3, 0, 0), + [9934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(513), + [9936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(61), + [9938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1911), + [9940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(522), + [9942] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_base_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3924), + [9945] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__record_declaration_initializer, 8, 0, 84), + [9947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(858), + [9949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3531), + [9951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(512), + [9953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2128), + [9955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6705), + [9957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2036), + [9959] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__class_declaration_initializer, 5, 0, 26), + [9961] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_base, 5, 0, 0), + [9963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(874), + [9965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(331), + [9967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(335), + [9969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3437), + [9971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7206), + [9973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7498), + [9975] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration_expression, 2, 1, 24), + [9977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(972), + [9979] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 4, 0, 67), + [9981] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subpattern, 1, 0, 0), + [9983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4809), + [9985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(413), + [9987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(414), + [9989] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_interpolated_string_expression_repeat1, 1, 0, 0), + [9991] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__local_function_declaration, 5, 0, 83), + [9993] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_bracketed_parameter_list_repeat1, 2, 0, 50), SHIFT_REPEAT(2897), + [9996] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_bracketed_parameter_list_repeat1, 2, 0, 50), + [9998] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__enum_declaration_initializer, 3, 0, 26), + [10000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4015), + [10002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1999), + [10004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1919), + [10006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1989), + [10008] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_primary_constructor_base_type, 2, 0, 6), + [10010] = {.entry = {.count = 1, .reusable = false}}, SHIFT(863), + [10012] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_using_variable_declarator, 1, 0, 5), REDUCE(sym_tuple_element, 2, 0, 24), + [10015] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_using_variable_declarator, 1, 0, 5), + [10017] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interpolation, 4, 0, 0), + [10019] = {.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), + [10023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2061), + [10025] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__local_function_declaration, 3, 0, 37), + [10027] = {.entry = {.count = 1, .reusable = false}}, SHIFT(872), + [10029] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 3, 0, 48), + [10031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4126), + [10033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(872), + [10035] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__local_function_declaration, 4, 0, 54), + [10037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2820), + [10039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7322), + [10041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7371), + [10043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6756), + [10045] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__enum_declaration_initializer, 4, 0, 63), + [10047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3463), + [10049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1986), + [10051] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__for_statement_conditions_repeat1, 2, 0, 0), SHIFT_REPEAT(864), + [10054] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subpattern, 3, 0, 0), + [10056] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__local_function_declaration, 5, 0, 69), + [10058] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_string_literal_repeat1, 1, 0, 0), + [10060] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_string_literal_repeat1, 1, 0, 0), + [10062] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_base_list_repeat1, 2, 0, 0), SHIFT_REPEAT(4036), + [10065] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__enum_declaration_initializer, 2, 0, 7), + [10067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5788), + [10069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1792), + [10071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3450), + [10073] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_argument_list_repeat1, 2, 0, 0), SHIFT_REPEAT(6910), + [10076] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_argument_list_repeat1, 2, 0, 0), + [10078] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string_literal_content, 1, 0, 0), + [10080] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string_literal_content, 1, 0, 0), + [10082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2057), + [10084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2004), + [10086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3707), + [10088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3238), + [10090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3469), + [10092] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interpolation, 3, 0, 0), + [10094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3354), + [10096] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__class_declaration_initializer_repeat4, 1, 0, 0), + [10098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3370), + [10100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2718), + [10102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2055), + [10104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3382), + [10106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2725), + [10108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3391), + [10110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3399), + [10112] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__local_function_declaration, 6, 0, 103), + [10114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2063), + [10116] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interpolation, 5, 0, 0), + [10118] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__local_function_declaration, 4, 0, 59), + [10120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(873), + [10122] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_member_declaration, 2, 0, 7), + [10124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(865), + [10126] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_member_declaration, 1, 0, 5), + [10128] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__interpolated_string_content, 1, 0, 0), + [10130] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attribute_argument_list_repeat1, 2, 0, 0), SHIFT_REPEAT(784), + [10133] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_attribute_argument_list_repeat1, 2, 0, 0), + [10135] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_anonymous_object_creation_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(749), + [10138] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_anonymous_object_creation_expression_repeat1, 2, 0, 0), + [10140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5892), + [10142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3219), + [10144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3985), + [10146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2176), + [10148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(836), + [10150] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_type_repeat1, 2, 0, 0), SHIFT_REPEAT(3695), + [10153] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_tuple_type_repeat1, 2, 0, 0), + [10155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5749), + [10157] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_catch_declaration, 4, 0, 48), + [10159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4053), + [10161] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameter_array, 4, 0, 67), + [10163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4279), + [10165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7119), + [10167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2054), + [10169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5694), + [10171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3695), + [10173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4242), + [10175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(253), + [10177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2842), + [10179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(948), + [10181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5765), + [10183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1993), + [10185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(784), + [10187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7028), + [10189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5750), + [10191] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_pattern_repeat1, 2, 0, 79), SHIFT_REPEAT(5908), + [10194] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_tuple_pattern_repeat1, 2, 0, 79), + [10196] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__interpolated_verbatim_string_content, 1, 0, 0), + [10198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5874), + [10200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7686), + [10202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7031), + [10204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7153), + [10206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(863), + [10208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6048), + [10210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3764), + [10212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5752), + [10214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3568), + [10216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(532), + [10218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2420), + [10220] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_catch_filter_clause, 4, 0, 0), + [10222] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_using_variable_declaration_repeat1, 2, 0, 0), SHIFT_REPEAT(6049), + [10225] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_using_variable_declaration_repeat1, 2, 0, 0), + [10227] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6420), + [10229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7720), + [10231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5715), + [10233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6439), + [10235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7072), + [10237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(558), + [10239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3175), + [10241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(256), + [10243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3059), + [10245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(597), + [10247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4093), + [10249] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_parenthesized_variable_designation_repeat1, 2, 0, 79), SHIFT_REPEAT(5892), + [10252] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_parenthesized_variable_designation_repeat1, 2, 0, 79), + [10254] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_positional_pattern_clause_repeat1, 2, 0, 0), SHIFT_REPEAT(297), + [10257] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_positional_pattern_clause_repeat1, 2, 0, 0), + [10259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2156), + [10261] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_catch_declaration, 3, 0, 8), + [10263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5758), + [10265] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__switch_expression_body_repeat1, 2, 0, 0), SHIFT_REPEAT(298), + [10268] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__switch_expression_body_repeat1, 2, 0, 0), + [10270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2897), + [10272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6329), + [10274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2918), + [10276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5905), + [10278] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declaration, 2, 0, 6), + [10280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2752), + [10282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6387), + [10284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2152), + [10286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7253), + [10288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5761), + [10290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5825), + [10292] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(310), + [10295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1787), + [10297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5760), + [10299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2399), + [10301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6330), + [10303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4430), + [10305] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_argument_list_repeat1, 2, 0, 0), + [10307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3329), + [10309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5908), + [10311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2157), + [10313] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_parameter, 2, 0, 24), REDUCE(sym_tuple_element, 2, 0, 24), + [10316] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_positional_pattern_clause_repeat1, 2, 0, 0), SHIFT_REPEAT(284), + [10319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2798), + [10321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(255), + [10323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3466), + [10325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6842), + [10327] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_member_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(5737), + [10330] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_enum_member_declaration_list_repeat1, 2, 0, 0), + [10332] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_argument_list_repeat1, 2, 0, 0), SHIFT_REPEAT(558), + [10335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5756), + [10337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2140), + [10339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7261), + [10341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3444), + [10343] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declarator, 2, 0, 5), + [10345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(838), + [10347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2936), + [10349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5757), + [10351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(278), + [10353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(264), + [10355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(296), + [10357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(284), + [10359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2789), + [10361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(263), + [10363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4394), + [10365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5759), + [10367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(658), + [10369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2434), + [10371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4130), + [10373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(531), + [10375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2650), + [10377] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_array_rank_specifier_repeat1, 2, 0, 0), SHIFT_REPEAT(579), + [10380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3807), + [10382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(546), + [10384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2887), + [10386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2435), + [10388] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6050), + [10390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7723), + [10392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2408), + [10394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2653), + [10396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(777), + [10398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3652), + [10400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(599), + [10402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2992), + [10404] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__constructor_declaration_initializer, 4, 0, 76), + [10406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7263), + [10408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5912), + [10410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5766), + [10412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4140), + [10414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7729), + [10416] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7391), + [10418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(544), + [10420] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_parameter_list_repeat1, 2, 0, 0), SHIFT_REPEAT(5715), + [10423] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_parameter_list_repeat1, 2, 0, 0), + [10425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(612), + [10427] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameter_array, 3, 0, 48), + [10429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2914), + [10431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6447), + [10433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2764), + [10435] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_bracketed_parameter_list_repeat1, 2, 0, 0), + [10437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3458), + [10439] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_bracketed_parameter_list_repeat1, 2, 0, 25), + [10441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(538), + [10443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2453), + [10445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(795), + [10447] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__interpolated_raw_string_content, 1, 0, 0), + [10449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6333), + [10451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7348), + [10453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4357), + [10455] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__with_body_repeat1, 2, 0, 0), SHIFT_REPEAT(6048), + [10458] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__with_body_repeat1, 2, 0, 0), + [10460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2939), + [10462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7188), + [10464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3215), + [10466] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_tuple_element, 2, 0, 24), REDUCE(sym_declaration_expression, 2, 1, 24), + [10469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2424), + [10471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(536), + [10473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3210), + [10475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(252), + [10477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3053), + [10479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2935), + [10481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3335), + [10483] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declarator, 2, 0, 0), + [10485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(837), + [10487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(773), + [10489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3167), + [10491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3020), + [10493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5771), + [10495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7198), + [10497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5762), + [10499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2074), + [10501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3642), + [10503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(604), + [10505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7144), + [10507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7722), + [10509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3170), + [10511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2766), + [10513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2630), + [10515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(293), + [10517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3165), + [10519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(600), + [10521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3860), + [10523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(542), + [10525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(709), + [10527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(650), + [10529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3088), + [10531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2374), + [10533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2597), + [10535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2409), + [10537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(262), + [10539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4657), + [10541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4483), + [10543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(272), + [10545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3019), + [10547] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__constructor_declaration_initializer, 5, 0, 100), + [10549] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_argument_list_repeat1, 2, 0, 0), SHIFT_REPEAT(557), + [10552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(712), + [10554] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_argument_list_repeat1, 1, 0, 0), + [10556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3294), + [10558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3213), + [10560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2365), + [10562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6049), + [10564] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_using_variable_declaration, 2, 0, 6), + [10566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(595), + [10568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3478), + [10570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(635), + [10572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3287), + [10574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2251), + [10576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3021), + [10578] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_pragma_repeat1, 2, 0, 0), SHIFT_REPEAT(6050), + [10581] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_preproc_pragma_repeat1, 2, 0, 0), + [10583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6448), + [10585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3032), + [10587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(279), + [10589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3273), + [10591] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_interpolated_string_expression_repeat2, 1, 0, 0), + [10593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2708), + [10595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4378), + [10597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3459), + [10599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2709), + [10601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7181), + [10603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(277), + [10605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3328), + [10607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3169), + [10609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(274), + [10611] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__for_statement_conditions_repeat1, 2, 0, 0), SHIFT_REPEAT(1852), + [10614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7100), + [10616] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declaration, 3, 0, 6), + [10618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7027), + [10620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7126), + [10622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(534), + [10624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2606), + [10626] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_variable_declaration_repeat1, 2, 0, 0), + [10628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4658), + [10630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3181), + [10632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(257), + [10634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(291), + [10636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3724), + [10638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2148), + [10640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6638), + [10642] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_variable_declaration_repeat1, 2, 0, 0), SHIFT_REPEAT(5912), + [10645] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_interpolated_string_expression_repeat3, 1, 0, 0), + [10647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5713), + [10649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(290), + [10651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(810), + [10653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2723), + [10655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3190), + [10657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3026), + [10659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(654), + [10661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4610), + [10663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4830), + [10665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2705), + [10667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4446), + [10669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3191), + [10671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(261), + [10673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2413), + [10675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2811), + [10677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(535), + [10679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1997), + [10681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5718), + [10683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7431), + [10685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3467), + [10687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2954), + [10689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(867), + [10691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7131), + [10693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3728), + [10695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7065), + [10697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6420), + [10699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5751), + [10701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3179), + [10703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(598), + [10705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3101), + [10707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6417), + [10709] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_global_attribute_repeat1, 2, 0, 0), SHIFT_REPEAT(5778), + [10712] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_global_attribute_repeat1, 2, 0, 0), + [10714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(636), + [10716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2631), + [10718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3250), + [10720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2175), + [10722] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constructor_initializer, 3, 0, 0), + [10724] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_switch_body_repeat1, 1, 0, 0), + [10726] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_using_variable_declaration, 3, 0, 6), + [10728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2632), + [10730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(270), + [10732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3745), + [10734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5767), + [10736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7137), + [10738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3251), + [10740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3060), + [10742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2248), + [10744] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_catch_clause_repeat1, 1, 0, 0), + [10746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(719), + [10748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2137), + [10750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(866), + [10752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(273), + [10754] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_argument_list_repeat2, 2, 0, 0), SHIFT_REPEAT(3985), + [10757] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_argument_list_repeat2, 2, 0, 0), + [10759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7212), + [10761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5768), + [10763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2869), + [10765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(294), + [10767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5769), + [10769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3515), + [10771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3307), + [10773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4487), + [10775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5754), + [10777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4539), + [10779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(543), + [10781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2866), + [10783] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__constructor_declaration_initializer, 3, 0, 58), + [10785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5755), + [10787] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_calling_convention_repeat1, 2, 0, 0), SHIFT_REPEAT(5874), + [10790] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_calling_convention_repeat1, 2, 0, 0), + [10792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4665), + [10794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(541), + [10796] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_variable_declaration_repeat1, 2, 0, 0), SHIFT_REPEAT(5905), + [10799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6334), + [10801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(537), + [10803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2929), + [10805] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute_argument_list, 3, 0, 0), + [10807] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7618), + [10809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6605), + [10811] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7728), + [10813] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7674), + [10815] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter, 2, 0, 7), + [10817] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7732), + [10819] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7328), + [10821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2062), + [10823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2875), + [10825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(224), + [10827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(574), + [10829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(573), + [10831] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__delegate_declaration_initializer, 5, 0, 69), + [10833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(585), + [10835] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_enum_member_declaration, 5, 0, 56), + [10837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5970), + [10839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(571), + [10841] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__delegate_declaration_initializer, 5, 0, 83), + [10843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(565), + [10845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6025), + [10847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2069), + [10849] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_element, 2, 0, 24), + [10851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6510), + [10853] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_parenthesized_variable_designation_repeat1, 2, 0, 60), + [10855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(244), + [10857] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_bracketed_parameter_list, 3, 0, 0), + [10859] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__enum_declaration_initializer, 5, 0, 63), + [10861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(559), + [10863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(554), + [10865] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7271), + [10867] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter, 1, 0, 5), + [10869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6557), + [10871] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_preproc_pragma_repeat1, 2, 0, 0), + [10873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(560), + [10875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6479), + [10877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(978), + [10879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2690), + [10881] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_bracketed_parameter_list, 3, 0, 25), + [10883] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7352), + [10885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(235), + [10887] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute_argument_list, 4, 0, 0), + [10889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2826), + [10891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5958), + [10893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7611), + [10895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2799), + [10897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1983), + [10899] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter, 3, 0, 26), + [10901] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_enum_member_declaration, 6, 0, 93), + [10903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(228), + [10905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(229), + [10907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5989), + [10909] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 2, 0, 5), + [10911] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_tuple_pattern_repeat1, 2, 0, 0), + [10913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6011), + [10915] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__enum_declaration_initializer, 4, 0, 26), + [10917] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute_argument_list, 2, 0, 0), + [10919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(563), + [10921] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__delegate_declaration_initializer, 4, 0, 54), + [10923] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__delegate_declaration_initializer, 7, 0, 132), + [10925] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_tuple_pattern_repeat1, 2, 0, 7), + [10927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(855), + [10929] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__enum_declaration_initializer, 3, 0, 7), + [10931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1984), + [10933] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__delegate_declaration_initializer, 6, 0, 103), + [10935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(556), + [10937] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7513), + [10939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5978), + [10941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5866), + [10943] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_calling_convention, 1, 0, 0), + [10945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(572), + [10947] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__delegate_declaration_initializer, 6, 0, 104), + [10949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7200), + [10951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7204), + [10953] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7612), + [10955] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_bracketed_parameter_list, 2, 0, 0), + [10957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(912), + [10959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7264), + [10961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(577), + [10963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(578), + [10965] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7624), + [10967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(92), + [10969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7356), + [10971] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_enum_member_declaration, 5, 0, 74), + [10973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(248), + [10975] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_bracketed_parameter_list, 4, 0, 49), + [10977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5931), + [10979] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_bracketed_parameter_list, 4, 0, 51), + [10981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3200), + [10983] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interpolation_format_clause, 2, 0, 0), + [10985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3041), + [10987] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7511), + [10989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1982), + [10991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1985), + [10993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3506), + [10995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(793), + [10997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7238), + [10999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2586), + [11001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1995), + [11003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6712), + [11005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2058), + [11007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7724), + [11009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7717), + [11011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7068), + [11013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3284), + [11015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2788), + [11017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7077), + [11019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7164), + [11021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3405), + [11023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2072), + [11025] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__lambda_expression_init, 3, 0, 46), + [11027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4613), + [11029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(971), + [11031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2081), + [11033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6124), + [11035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3892), + [11037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4633), + [11039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(794), + [11041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2671), + [11043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3460), + [11045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(105), + [11047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1958), + [11049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(687), + [11051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2080), + [11053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2014), + [11055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2060), + [11057] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration_list, 2, 0, 0), + [11059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3038), + [11061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4365), + [11063] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration_list, 3, 0, 0), + [11065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3504), + [11067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3529), + [11069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3368), + [11071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7697), + [11073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(703), + [11075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(730), + [11077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2033), + [11079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2123), + [11081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7721), + [11083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2688), + [11085] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__lambda_expression_init, 3, 0, 45), + [11087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1961), + [11089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1973), + [11091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7211), + [11093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2931), + [11095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3537), + [11097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2113), + [11099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1850), + [11101] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_attribute_list, 5, 0, 93), + [11103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7584), + [11105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2660), + [11107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3077), + [11109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1873), + [11111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4482), + [11113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2121), + [11115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3740), + [11117] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_calling_convention, 4, 0, 0), + [11119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5553), + [11121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2835), + [11123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2334), + [11125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6461), + [11127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5899), + [11129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1988), + [11131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2311), + [11133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(85), + [11135] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_member_declaration_list, 2, 0, 0), + [11137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(710), + [11139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2342), + [11141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2838), + [11143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(824), + [11145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5746), + [11147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2049), + [11149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2042), + [11151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4432), + [11153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(814), + [11155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(869), + [11157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5898), + [11159] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__lambda_expression_init, 2, 0, 14), + [11161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3866), + [11163] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_attribute_list, 4, 0, 74), + [11165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3033), + [11167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1971), + [11169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(721), + [11171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3874), + [11173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3875), + [11175] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_pointer_parameter, 1, 0, 6), + [11177] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_expression, 5, 0, 93), + [11179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1939), + [11181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4656), + [11183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7725), + [11185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5979), + [11187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3996), + [11189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4459), + [11191] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7533), + [11193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(877), + [11195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7090), + [11197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2044), + [11199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(762), + [11201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2737), + [11203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3157), + [11205] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7482), + [11207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2569), + [11209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(701), + [11211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(748), + [11213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2818), + [11215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2819), + [11217] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_pointer_parameter, 2, 0, 8), + [11219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7338), + [11221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1951), + [11223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(832), + [11225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(765), + [11227] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_top_level, 5, 0, 93), + [11229] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), + [11231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(668), + [11233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3078), + [11235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(737), + [11237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2110), + [11239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2828), + [11241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6685), + [11243] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_member_declaration_list, 4, 0, 0), + [11245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(775), + [11247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3376), + [11249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(809), + [11251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1970), + [11253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(781), + [11255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(772), + [11257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(80), + [11259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2728), + [11261] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_member_declaration_list, 3, 0, 0), + [11263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6339), + [11265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6426), + [11267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6384), + [11269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7345), + [11271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(27), + [11273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7714), + [11275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2019), + [11277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2750), + [11279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7262), + [11281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6731), + [11283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2827), + [11285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2758), + [11287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1990), + [11289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(776), + [11291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2807), + [11293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6362), + [11295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6627), + [11297] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__lambda_expression_init, 4, 0, 65), + [11299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3297), + [11301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(767), + [11303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(797), + [11305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7462), + [11307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(761), + [11309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2017), + [11311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(706), + [11313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1374), + [11315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7641), + [11317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4622), + [11319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2768), + [11321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3046), + [11323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7237), + [11325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2117), + [11327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7146), + [11329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(779), + [11331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6368), + [11333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3776), + [11335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7255), + [11337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(766), + [11339] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7636), + [11341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5586), + [11343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3017), + [11345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3558), + [11347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7248), + [11349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3777), + [11351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7719), + [11353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2089), + [11355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(736), + [11357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(725), + [11359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7055), + [11361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2735), + [11363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2870), + [11365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(804), + [11367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7060), + [11369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2730), + [11371] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_enum_member_declaration, 4, 0, 74), + [11373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3332), + [11375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(825), + [11377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2808), + [11379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3333), + [11381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7514), + [11383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1739), + [11385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1740), + [11387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1742), + [11389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4018), + [11391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4020), + [11393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1743), + [11395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1744), + [11397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3218), + [11399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1738), + [11401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2840), + [11403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7731), + [11405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3380), + [11407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3781), + [11409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7705), + [11411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2833), + [11413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(739), + [11415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6327), + [11417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3479), + [11419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(673), + [11421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2813), + [11423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4029), + [11425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2000), + [11427] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif, 5, 0, 93), + [11429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6409), + [11431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(823), + [11433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6719), + [11435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3005), + [11437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3023), + [11439] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__lambda_parameters, 1, 0, 0), + [11441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2104), + [11443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7718), + [11445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2952), + [11447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3594), + [11449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1750), + [11451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1751), + [11453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1753), + [11455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4042), + [11457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4043), + [11459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1754), + [11461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1755), + [11463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1749), + [11465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2105), + [11467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2091), + [11469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3024), + [11471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7043), + [11473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6358), + [11475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6416), + [11477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4353), + [11479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3358), + [11481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7556), + [11483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6372), + [11485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3336), + [11487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3641), + [11489] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__lambda_expression_init, 1, 0, 3), + [11491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3338), + [11493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3339), + [11495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(686), + [11497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7727), + [11499] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_member_declaration_list, 5, 0, 0), + [11501] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7270), + [11503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2774), + [11505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3900), + [11507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3901), + [11509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1765), + [11511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1766), + [11513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(831), + [11515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1764), + [11517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2802), + [11519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7128), + [11521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(981), + [11523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3168), + [11525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6437), + [11527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7662), + [11529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3372), + [11531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2998), + [11533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2022), + [11535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3074), + [11537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6585), + [11539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2777), + [11541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2803), + [11543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1772), + [11545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1773), + [11547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1771), + [11549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(720), + [11551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2002), + [11553] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_expression, 4, 0, 74), + [11555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3384), + [11557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3171), + [11559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3300), + [11561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3031), + [11563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2657), + [11565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3172), + [11567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1936), + [11569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3974), + [11571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2070), + [11573] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_else_in_enum_member_declaration, 2, 0, 0), + [11575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6653), + [11577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7047), + [11579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2108), + [11581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3393), + [11583] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__lambda_expression_init, 2, 0, 21), + [11585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2005), + [11587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3441), + [11589] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_top_level, 4, 0, 74), + [11591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(758), + [11593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(685), + [11595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2337), + [11597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6347), + [11599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3262), + [11601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6412), + [11603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3401), + [11605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6433), + [11607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3018), + [11609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7269), + [11611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4708), + [11613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(853), + [11615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(697), + [11617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(876), + [11619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2947), + [11621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5777), + [11623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24), + [11625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(672), + [11627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(690), + [11629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2782), + [11631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7680), + [11633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7733), + [11635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(728), + [11637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2711), + [11639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(811), + [11641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2945), + [11643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7635), + [11645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7170), + [11647] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_enum_member_declaration, 5, 0, 93), + [11649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4662), + [11651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(755), + [11653] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif, 4, 0, 74), + [11655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6654), + [11657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3457), + [11659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1978), + [11661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(679), + [11663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6399), + [11665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1607), + [11667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1608), + [11669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1810), + [11671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7218), + [11673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5914), + [11675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4663), + [11677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(818), + [11679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3388), + [11681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1967), + [11683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1610), + [11685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2949), + [11687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2101), + [11689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3427), + [11691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(894), + [11693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2040), + [11695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(705), + [11697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4006), + [11699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2812), + [11701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4010), + [11703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1611), + [11705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1612), + [11707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7726), + [11709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3326), + [11711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5779), + [11713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(859), + [11715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2814), + [11717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2068), + [11719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7500), + [11721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(734), + [11723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1606), + [11725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2412), + [11727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(729), + [11729] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_calling_convention, 5, 0, 0), + [11731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6690), + [11733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(99), + [11735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(875), + [11737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1879), + [11739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6692), + [11741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3003), + [11743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1881), + [11745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6695), + [11747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3973), + [11749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7457), + [11751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6700), + [11753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1976), + [11755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6707), + [11757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2911), + [11759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1896), + [11761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7654), + [11763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6976), + [11765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(792), + [11767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(970), + [11769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1897), + [11771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7690), + [11773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1898), + [11775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7694), + [11777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1899), + [11779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(827), + [11781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3277), + [11783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2006), + [11785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(807), + [11787] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_line, 15, 0, 0), + [11789] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_define, 3, 0, 0), + [11791] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_error, 3, 0, 0), + [11793] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_line, 3, 0, 0), + [11795] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_endregion, 3, 0, 22), + [11797] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_pragma, 6, 0, 0), + [11799] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_pragma, 5, 0, 0), + [11801] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_line, 14, 0, 0), + [11803] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_nullable, 4, 0, 0), + [11805] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_region, 3, 0, 22), + [11807] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_line, 4, 0, 0), + [11809] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_region, 2, 0, 0), + [11811] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_nullable, 3, 0, 0), + [11813] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_pragma, 4, 0, 0), + [11815] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_warning, 3, 0, 0), + [11817] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_endregion, 2, 0, 0), + [11819] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_undef, 3, 0, 0), }; enum ts_external_scanner_symbol_identifiers { @@ -795284,10 +792214,10 @@ static const bool ts_external_scanner_states[10][EXTERNAL_TOKEN_COUNT] = { [ts_external_token_interpolation_string_content] = true, }, [6] = { - [ts_external_token__optional_semi] = true, + [ts_external_token_raw_string_end] = true, }, [7] = { - [ts_external_token_raw_string_end] = true, + [ts_external_token__optional_semi] = true, }, [8] = { [ts_external_token_interpolation_start_quote] = true, diff --git a/src/tree_sitter/array.h b/src/tree_sitter/array.h index 15a3b23..a17a574 100644 --- a/src/tree_sitter/array.h +++ b/src/tree_sitter/array.h @@ -14,6 +14,7 @@ extern "C" { #include #ifdef _MSC_VER +#pragma warning(push) #pragma warning(disable : 4101) #elif defined(__GNUC__) || defined(__clang__) #pragma GCC diagnostic push @@ -278,7 +279,7 @@ static inline void _array__splice(Array *self, size_t element_size, #define _compare_int(a, b) ((int)*(a) - (int)(b)) #ifdef _MSC_VER -#pragma warning(default : 4101) +#pragma warning(pop) #elif defined(__GNUC__) || defined(__clang__) #pragma GCC diagnostic pop #endif diff --git a/test/corpus/classes.txt b/test/corpus/classes.txt index 63d19ac..1e1c600 100644 --- a/test/corpus/classes.txt +++ b/test/corpus/classes.txt @@ -85,6 +85,10 @@ file class A {} class Baz(int a, int b) : Bar(a, b) { } +public class NoBody; + +private class NoBodyPrimary(int a, int b); + -------------------------------------------------------------------------------- (compilation_unit @@ -397,4 +401,20 @@ class Baz(int a, int b) : Bar(a, b) { } (identifier)) (argument (identifier)))) - body: (declaration_list))) + body: (declaration_list)) + (class_declaration + (modifier) + name: (identifier) + ) + (class_declaration + (modifier) + name: (identifier) + (parameter_list + (parameter + type: (predefined_type) + name: (identifier)) + (parameter + type: (predefined_type) + name: (identifier))) + )) + diff --git a/test/corpus/enums.txt b/test/corpus/enums.txt index 1fb7389..1acdaf4 100644 --- a/test/corpus/enums.txt +++ b/test/corpus/enums.txt @@ -4,6 +4,8 @@ global enum with one option enum A: byte { One, Two = 2, Three = 0x03 } +enum NoBody; + -------------------------------------------------------------------------------- (compilation_unit @@ -19,4 +21,6 @@ enum A: byte { One, Two = 2, Three = 0x03 } value: (integer_literal)) (enum_member_declaration name: (identifier) - value: (integer_literal))))) + value: (integer_literal)))) +(enum_declaration + name: (identifier))) diff --git a/test/corpus/interfaces.txt b/test/corpus/interfaces.txt index 9103e00..652aa66 100644 --- a/test/corpus/interfaces.txt +++ b/test/corpus/interfaces.txt @@ -42,6 +42,8 @@ public interface IGetNext where T : IGetNext static abstract T operator ++(T other); } +private interface NoBody; + -------------------------------------------------------------------------------- (compilation_unit @@ -204,4 +206,8 @@ public interface IGetNext where T : IGetNext parameters: (parameter_list (parameter type: (identifier) - name: (identifier))))))) + name: (identifier)))))) + (interface_declaration + (modifier) + name: (identifier))) + diff --git a/test/corpus/records.txt b/test/corpus/records.txt index 023ab54..504f241 100644 --- a/test/corpus/records.txt +++ b/test/corpus/records.txt @@ -35,6 +35,8 @@ public record Person { }; public record struct Person2 { }; +record NoBody; + -------------------------------------------------------------------------------- (compilation_unit @@ -187,4 +189,6 @@ public record struct Person2 { }; (record_declaration (modifier) name: (identifier) - body: (declaration_list))) + body: (declaration_list)) + (record_declaration + name: (identifier))) \ No newline at end of file diff --git a/test/corpus/structs.txt b/test/corpus/structs.txt index cf76672..f2f777b 100644 --- a/test/corpus/structs.txt +++ b/test/corpus/structs.txt @@ -12,6 +12,9 @@ private struct F where T1 : I1, I2, new() where T2 : I2 { } ref struct Test { } +struct NoBody; + +private struct NoBodyWithPrimary(int g); -------------------------------------------------------------------------------- (compilation_unit @@ -66,4 +69,13 @@ ref struct Test { } body: (declaration_list)) (struct_declaration name: (identifier) - body: (declaration_list))) + body: (declaration_list)) + (struct_declaration + name: (identifier)) + (struct_declaration + (modifier) + name: (identifier) + (parameter_list + (parameter + type: (predefined_type) + name: (identifier)))))